From e96c49584b8b713cc7593f19dc38a7eb2c1d37da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Tue, 18 Aug 2026 18:43:17 +0800 Subject: [PATCH 01/33] feat(execd): custom-policy + drift e2e and ebpf bare smoke (OSEP-0018 R-q, R-s, R-j/R-c) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit R-q: isolation.custom.toml ([seccomp] deny chmod family + keep_capabilities CAP_NET_RAW) + TestHardeningCustomPolicyE2E — denied syscall EACCES in /command, CapEff/CapBnd=0x2000 via ambient raise, docker phase 3 (ceiling keeps NET_RAW) + k8s ConfigMap second key. R-s: TestHardeningDriftE2E — hardened TOML with execd_run_as_init=false reports init_mode=none + layers degraded with EXECD_INIT guidance while /command still runs the floor; docker phase 4. R-d: marked declined (server-config-driven surface, Python covers the shared path). R-j/R-c: scripts/execd-ebpf-smoke.sh — bare-container smoke running /execd-ebpf with CAP_BPF/CAP_PERFMON/CAP_SYSLOG + tracefs mount, generates exec/connect/privilege events via docker exec and asserts the JSONL audit file; prechecks BTF/cgroup-v2/tracefs so it doubles as the 5.10 empirical validation. Also: _hardening_report cache is per-sandbox (multiple classes share one k8s pytest invocation). --- .../execd/configs/isolation.custom.toml | 29 +++ oseps/0018-execd-as-sandbox-init.md | 13 +- scripts/execd-ebpf-smoke.sh | 175 ++++++++++++++++++ scripts/python-execd-hardening-e2e.sh | 33 +++- scripts/python-k8s-execd-init-e2e.sh | 6 +- .../python/tests/test_execd_hardening_e2e.py | 167 ++++++++++++++++- 6 files changed, 407 insertions(+), 16 deletions(-) create mode 100644 components/execd/configs/isolation.custom.toml create mode 100755 scripts/execd-ebpf-smoke.sh diff --git a/components/execd/configs/isolation.custom.toml b/components/execd/configs/isolation.custom.toml new file mode 100644 index 000000000..786e684ab --- /dev/null +++ b/components/execd/configs/isolation.custom.toml @@ -0,0 +1,29 @@ +# Copyright 2026 Alibaba Group Holding Ltd. +# +# 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. + +# Custom-policy hardening configuration for the execd-as-init e2e (OSEP-0018, +# R-q): a [seccomp] deny override (which REPLACES the built-in denylist) plus +# keep_capabilities. Proves both overrides reach the workload: +# - the denied syscall family (chmod/fchmodat/fchmodat2; glibc coreutils +# chmod uses fchmodat, busybox uses chmod) fails with EACCES in /command +# - CAP_NET_RAW (bit 13) is raised in the ambient set and survives execve, +# so the workload reports CapEff=0x2000 +# Landlock stays off: this variant is about the seccomp/caps overrides only. + +[hardening] +enabled = true +keep_capabilities = ["CAP_NET_RAW"] + +[seccomp] +deny = ["chmod", "fchmodat", "fchmodat2"] diff --git a/oseps/0018-execd-as-sandbox-init.md b/oseps/0018-execd-as-sandbox-init.md index c8e0ec00c..a36a19f21 100644 --- a/oseps/0018-execd-as-sandbox-init.md +++ b/oseps/0018-execd-as-sandbox-init.md @@ -39,9 +39,10 @@ status: implementing > Updated 2026-08-18. Status: **implementing** — the phased rollout below is > implemented on branch `feat/execd-init-mode` (Phases 1–5 plus the server > switch); remaining items are the trusted stop channel (§3), kernel-5.10 -> empirical validation, cross-language e2e, and the default-on rollout (see +> empirical validation, the eBPF audit e2e, and the default-on rollout (see > the Remaining work table below). R-i (server-path hardening e2e, docker -> bridge) landed in PR #1554. +> bridge) landed in PR #1554; R-q (custom seccomp/caps e2e) and R-s +> (EXECD_INIT drift pin) landed in the hardening e2e. | Phase | Scope | Status | |---|---|---| @@ -79,7 +80,7 @@ status: implementing | R-a | Trusted out-of-band stop channel (§3, R2) | **Open — biggest remaining item, separate PR.** Any SIGTERM (incl. in-namespace `kill 1`) still stops the sandbox (same as pre-OSEP behavior); `kill -9 1` is inert. Target: authenticated channel unreachable from the workload; then point the K8s Restart recycle at it instead of `kill 1` (`restart_default.go`; current SIGTERM semantics confirmed compatible, comment added) | | R-b | Pool pod-level PID 1 | **Declined follow-up.** Pool sandboxes run execd as task-level subreaper (Phase 5): the per-child floor holds without PID 1; the lost signal shield is no regression (pool exposure equals the pre-OSEP era; task-executor owns pod reaping). Operators wanting full PID 1 configure the Pool template command manually (`bootstrap.sh` + keepalive + `EXECD_INIT=1`); server auto-injection out of scope | | R-c | Kernel-5.10 eBPF empirical validation | Open. The 5.10–5.15 exec-hook fallback (inline `filename[1024]`, `__data_loc` argv) is derived from the tracepoint definition, not boot-tested; worst case the hook degrades (fail-open). Needs a real 5.10 node with BTF + `CAP_BPF` | -| R-d | Cross-language SDK e2e | Python covered (docker-bridge + k8s nightly: PID 1, reaping, kill-9 inert, `/proc/1/environ` denial, capabilities endpoint). JS/Go/C#/Java/Kotlin init-mode e2e not written | +| R-d | Cross-language SDK e2e | **Declined follow-up.** Python covers the init-mode/hardening surface (docker-bridge + k8s nightly: PID 1, reaping, kill-9 inert, `/proc/1/environ` denial, capabilities endpoint). The execd-init surface is server-config-driven, so a passing Python suite exercises the same server → sandbox → execd path every SDK talks to; the remaining per-language value (SDK transport of the `hardening` model) is low. Cancel cross-language init-mode e2e | | R-e | `execd-ebpf` server-side selection | **Deferred.** The default image ships both binaries (`/execd` + `/execd-ebpf`); choosing which runs (`EXECD` env, `runtime.execd_binary`) is not wired into the server or the Docker/K8s distribution paths. Tracked in `components/execd/README.md` "Known issue / TODO" | | R-f | Default-on rollout | `runtime.execd_run_as_init` and `[hardening] enabled` default `false` by design; flip after N releases of validation (owner decision), record in release notes | | R-g | `OPENSANDBOX_ID` reserved-env override (Codex round 7) | **Deferred.** Docker env builder appends `OPENSANDBOX_ID` after user env (pre-existing pattern); harden reserved-key filtering first if a duplicate-key spoofing path is demonstrated | @@ -92,12 +93,14 @@ status: implementing | R-n | PTY path under hardening — zero coverage | **Implemented** — Go integration test `TestHardeningPTYSessions` (`hardening_linux_test.go`, runs in the execd `test` CI job): StartPTY + StartPipe both launch through the launcher with the reaper active and assert the session shell reports Seccomp=2 / NoNewPrivs=1 / CapEff=0 (root) / `EXECD_ACCESS_TOKEN` stripped. Container-level `/pty` WS case dropped: the alpine execd image has no WS client, and the pty fd / `setsid` / `Setctty` survival across the launcher's `execve` is covered by the integration test | | R-o | Isolated session (bwrap) + init-mode reaper combination | **Implemented** — (1) Go integration test `TestIsolatedSessionWithInitReaper` (`isolated_session_initmode_linux_test.go`, `linux && bwrap`, run as root in the `bwrap-smoke` CI job): full bwrap lifecycle (create/run/exit-code/delete) under reaper dispatch, plus a delete racing a running workload to exercise the pre-reap barrier's PGID-reuse serialization with the reaper's WNOWAIT-observe → consume path. (2) Python e2e `TestIsolatedSessionHardeningE2E` (docker bridge, runs in the hardening e2e job's phase 1): bwrap sessions under init mode + the floor — capabilities available, session workload carries bwrap's seccomp/NNP floor + credential env strip, PID-namespace isolation, state persistence, delete-while-busy teardown, hardening report intact around sessions | | R-p | `/code` (Jupyter kernels) under init/hardening e2e | **Declined follow-up.** Not validated at e2e level; kernels inherit the reduced Jupyter entrypoint by construction, and `test_execd_init_e2e.py` covers Jupyter startup under PID 1 via the ready check. Revisit if the code-interpreter entrypoint changes | -| R-q | Custom `[seccomp] deny` + `keep_capabilities` e2e | **Open (low).** Only Go unit tests cover the reserved-`execve` rejection (`TestHardeningRejectsReservedExecve`) and the ambient-raise path (`TestHardeningKeepCapabilities`). No e2e runs a hardened sandbox with a custom deny list + `keep_capabilities`: plan a TOML variant (e.g. deny `chmod`, `keep_capabilities=["CAP_NET_RAW"]`) in the hardening e2e asserting the denied syscall fails in `/command` and the workload shows CapEff=0x2000 | +| R-q | Custom `[seccomp] deny` + `keep_capabilities` e2e | **Implemented** — `TestHardeningCustomPolicyE2E` (hardening e2e, docker phase 3 + k8s nightly): `configs/isolation.custom.toml` (`deny = ["chmod","fchmodat","fchmodat2"]` — replaces the built-in denylist — + `keep_capabilities=["CAP_NET_RAW"]`) asserts the denied syscall fails with EACCES in `/command`, the workload shows `CapEff=0x2000`/`CapBnd=0x2000` (ambient raise survives execve), non-denied syscalls keep working, and the endpoint reports the overrides active with landlock `disabled`. Docker phase-3 ceiling keeps `CAP_NET_RAW` so the ambient raise can succeed; k8s delivers the TOML as a second ConfigMap key (`isolation.custom.toml`), selected per-request env | | R-r | e2e consumes the SDK `hardening` model instead of a raw HTTP probe | **Implemented** — `_hardening_report` now reads `sandbox.isolation.capabilities().hardening` (`HardeningStatus` model) instead of a `/command` urllib JSON probe, pinning the spec → SDK → implementation alignment of the hardening object | -| R-s | `EXECD_INIT` ↔ TOML drift pin (init off, hardening on) | **Open (low).** The "hardening enabled but execd is not the init → layers degraded" state is only pinned in Go (`TestHardeningReportDegradesWithoutInitMode`); no Python e2e asserts the endpoint reports `init_mode: none` + degraded layers with `[hardening] enabled` but `execd_run_as_init = false`. Complements R-m's default-off pin | +| R-s | `EXECD_INIT` ↔ TOML drift pin (init off, hardening on) | **Implemented** — `TestHardeningDriftE2E` (hardening e2e, docker phase 4): hardened TOML with `runtime.execd_run_as_init = false` asserts the endpoint reports `init_mode: none`, `signal_shield: false`, and cap_drop/seccomp/landlock all `degraded` with `EXECD_INIT` guidance (ebpf stays `disabled`), while execd-spawned `/command` still runs through the floor (CapEff=0, seccomp, NNP) — fail-open but honest. k8s drift needs a second server with init off; docker-only (Go test `TestHardeningReportDegradesWithoutInitMode` covers the same at unit level) | | R-t | Reaper sweep backstop (lost/coalesced SIGCHLD) | **Implemented** — `TestReaperSweepBackstop` (`initmode_linux_test.go`): the reaper's `signal.Notify` subscription stays registered (blocking the Go runtime's auto-reap) while the run loop is severed from it, so only the sweep ticker can reap an exiting child; asserts the child is drained within the ticker budget | | R-u | Runtime-initiated container stop (external SIGTERM) at SDK/e2e level | **Open (low).** Only `components/execd/tests/init_container.sh` (docker stop) covers the graceful-shutdown path; no SDK-level e2e asserts the entrypoint receives SIGTERM and the sandbox exits with its status when the runtime stops the container. Adjacent to R-k's signal-forwarding breadth | +Closed this round (2026-08-18): R-q (custom `[seccomp] deny` + `keep_capabilities` e2e, docker phase 3 + k8s ConfigMap key) and R-s (EXECD_INIT↔TOML drift pin, docker phase 4) landed in the hardening e2e; the `_hardening_report` cache is now per-sandbox so multiple classes share one pytest invocation on k8s safely. + Closed this round (2026-08-12): CI green for all execd-init jobs; `/proc/1/environ` e2e assertion (`test_workload_cannot_read_execd_environ`); hardening report degrades honestly when hardening is on without init topology; launcher aborts on diff --git a/scripts/execd-ebpf-smoke.sh b/scripts/execd-ebpf-smoke.sh new file mode 100755 index 000000000..5ecaa601c --- /dev/null +++ b/scripts/execd-ebpf-smoke.sh @@ -0,0 +1,175 @@ +#!/bin/bash +# Copyright 2026 Alibaba Group Holding Ltd. +# +# 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. + +# execd-ebpf bare-container smoke test (OSEP-0018 R-j, R-c). +# +# Runs the execd-ebpf observation variant in a bare container on THIS +# machine's kernel — no server, no SDK — generates exec / connect / +# privilege events via `docker exec` (same cgroup, so the sandbox-cgroup +# filter passes), and asserts they land in the rotating JSONL audit file. +# +# This is the empirical validation the OSEP calls out as missing: +# - the BPF hooks (sched_process_exec, inet_sock_set_state, +# commit_creds) attach on the actual host kernel, incl. the 5.10-5.15 +# inline-filename fallback in audit.bpf.c +# - the cgroup filter scopes events to the sandbox cgroup +# - ringbuf decode -> JSONL envelope (ts/event/sandbox_id/pid/comm) +# +# Required host preconditions (checked below): +# - kernel >= 5.8 with BTF: /sys/kernel/btf/vmlinux +# - cgroup v2: 0:: in /proc/self/cgroup +# - tracefs: /sys/kernel/tracing (or debugfs) +# - Docker available on the host +# +# Container privileges (the minimal set; --privileged also works): +# --cap-add=CAP_BPF --cap-add=CAP_PERFMON --cap-add=CAP_SYSLOG +# -v /sys/kernel/tracing:/sys/kernel/tracing:ro +# +# Usage: bash scripts/execd-ebpf-smoke.sh [--image opensandbox/execd:local] [--build] + +set -euo pipefail + +IMAGE="opensandbox/execd:local" +BUILD=0 +while [ $# -gt 0 ]; do + case "$1" in + --image) IMAGE="$2"; shift 2 ;; + --build) BUILD=1; shift ;; + *) echo "usage: $0 [--image IMG] [--build]" >&2; exit 2 ;; + esac +done + +REPO_ROOT="$(cd "$(dirname "$0")/.." && pwd)" +WORKDIR="$(mktemp -d /tmp/execd-ebpf-smoke.XXXXXX)" +CTR_NAME="execd-ebpf-smoke-$RANDOM" +AUDIT_FILE="/var/log/opensandbox/ebpf-audit.jsonl" +cleanup() { + docker rm -f "${CTR_NAME}" >/dev/null 2>&1 || true + rm -rf "${WORKDIR}" +} +trap cleanup EXIT + +echo "== host preconditions ==" +[ -e /sys/kernel/btf/vmlinux ] || { + echo "FAIL: no /sys/kernel/btf/vmlinux — kernel has no BTF; eBPF CO-RE cannot load" >&2 + exit 1 +} +grep -q '^0::' /proc/self/cgroup || { + echo "FAIL: no cgroup v2 hierarchy in /proc/self/cgroup" >&2 + exit 1 +} +TRACEFS="" +for p in /sys/kernel/tracing /sys/kernel/debug/tracing; do + if [ -e "$p/events" ]; then TRACEFS="$p"; break; fi +done +[ -n "$TRACEFS" ] || { + echo "FAIL: no tracefs events dir (/sys/kernel/tracing or debugfs)" >&2 + exit 1 +} +echo "OK: BTF present, cgroup v2, tracefs at $TRACEFS" + +if [ "${BUILD}" = "1" ]; then + docker build -t "${IMAGE}" -f components/execd/Dockerfile "${REPO_ROOT}" +fi + +# Minimal isolation TOML: only the eBPF section, audit file in a host dir. +mkdir -p "${WORKDIR}/audit" +cat > "${WORKDIR}/ebpf.toml" </dev/null + +echo "== waiting for the capabilities endpoint ==" +for _ in $(seq 1 30); do + if docker exec "${CTR_NAME}" wget -qO- http://127.0.0.1:44772/v1/isolated/capabilities > "${WORKDIR}/caps.json" 2>/dev/null; then + break + fi + sleep 1 +done +[ -s "${WORKDIR}/caps.json" ] || { + echo "FAIL: capabilities endpoint never came up" >&2 + docker logs "${CTR_NAME}" 2>&1 | tail -30 >&2 || true + exit 1 +} + +echo "== hardening/ebpf report ==" +python3 - "${WORKDIR}/caps.json" <<'PY' || exit 1 +import json, sys +caps = json.load(open(sys.argv[1])) +ebpf = (caps.get("hardening") or {}).get("ebpf") or {} +state = ebpf.get("state", "missing") +print(f"ebpf state: {state}") +if ebpf.get("message"): + print(f"ebpf message: {ebpf['message']}") +# Fail-open means "degraded/unsupported" still boots execd, but the audit +# hooks did NOT attach — nothing will be written. The smoke must see active. +if state != "active": + sys.exit(f"FAIL: ebpf state = {state}, want active (hooks did not attach)") +PY + +echo "== generating events inside the sandbox cgroup ==" +docker exec "${CTR_NAME}" sh -c 'sleep 0.05; echo exec-event-ok >/dev/null' >/dev/null +docker exec "${CTR_NAME}" wget -qO- http://example.com/ >/dev/null 2>&1 || true +# Privilege event: busybox su setuids -> commit_creds fires. +docker exec "${CTR_NAME}" su nobody -s /bin/sh -c 'true' >/dev/null 2>&1 || true + +# Give the ringbuf consumer a moment to drain. +sleep 2 + +echo "== audit file ==" +[ -s "${WORKDIR}/audit/ebpf-audit.jsonl" ] || { + echo "FAIL: audit file empty/missing — hooks attached but no events decoded" >&2 + docker logs "${CTR_NAME}" 2>&1 | tail -30 >&2 || true + exit 1 +} +wc -l "${WORKDIR}/audit/ebpf-audit.jsonl" +python3 - "${WORKDIR}/audit/ebpf-audit.jsonl" <<'PY' || exit 1 +import json, sys +kinds, ok = {"exec": 0, "connect": 0, "privilege": 0}, True +for line in open(sys.argv[1]): + ev = json.loads(line) + kinds[ev.get("event", "?")] = kinds.get(ev.get("event", "?"), 0) + 1 + assert ev.get("sandbox_id") == "smoke-sbx-0001", ev + assert "pid" in ev and "comm" in ev and "ts" in ev, ev +print("event counts:", kinds) +for want in ("exec", "connect"): + if kinds[want] == 0: + print(f"FAIL: no {want} events", file=sys.stderr) + ok = False +if kinds["privilege"] == 0: + # The hook attach is already validated by state=active above; the event + # itself needs a setuid transition, which is harder to provoke reliably + # in a bare busybox container — warn, do not fail. + print("WARN: no privilege events (setuid transition not provoked)") +sys.exit(0 if ok else 1) +PY + +echo "PASS: execd-ebpf smoke (state=active, exec+connect events decoded)" diff --git a/scripts/python-execd-hardening-e2e.sh b/scripts/python-execd-hardening-e2e.sh index 8bde5e16c..49ae9397c 100644 --- a/scripts/python-execd-hardening-e2e.sh +++ b/scripts/python-execd-hardening-e2e.sh @@ -24,6 +24,12 @@ # Phase 2: fail-open degradation — same server with CAP_SETPCAP dropped from # the container ceiling; cap_drop must report degraded while the # rest of the floor stays active. +# Phase 3: custom-policy overrides (R-q) — a [seccomp] deny override + +# keep_capabilities=["CAP_NET_RAW"]; the ceiling keeps NET_RAW so +# the ambient raise can succeed. +# Phase 4: EXECD_INIT <-> TOML drift pin (R-s) — the hardened TOML with +# execd_run_as_init = false; the endpoint must report init_mode=none +# and degrade the enabled layers. # # Usage: bash scripts/python-execd-hardening-e2e.sh @@ -80,10 +86,13 @@ docker pull opensandbox/code-interpreter:${TAG:-latest} mkdir -p /tmp/opensandbox-e2e/workspace /tmp/opensandbox-e2e/logs chmod 0777 /tmp/opensandbox-e2e/workspace cp components/execd/configs/isolation.hardened.toml /tmp/opensandbox-e2e/isolation.hardened.toml +cp components/execd/configs/isolation.custom.toml /tmp/opensandbox-e2e/isolation.custom.toml echo "-------- EXECD HARDENING E2E test logs for execd --------" > /tmp/opensandbox-e2e/logs/execd.log write_server_config() { local drop_capabilities="$1" + local toml_file="${2:-isolation.hardened.toml}" + local run_as_init="${3:-true}" cat < ~/.sandbox.toml [server] host = "127.0.0.1" @@ -94,7 +103,7 @@ level = "INFO" [runtime] type = "docker" execd_image = "opensandbox/execd:local" -execd_run_as_init = true +execd_run_as_init = ${run_as_init} [egress] image = "opensandbox/egress:local" mode = "dns+nft" @@ -110,7 +119,7 @@ seccomp_profile = "unconfined" sandbox_env = { EXECD_ISOLATION_CONFIG = "/etc/opensandbox/isolation.toml" } sandbox_binds = [ "/tmp/opensandbox-e2e/workspace:/workspace", - "/tmp/opensandbox-e2e/isolation.hardened.toml:/etc/opensandbox/isolation.toml", + "/tmp/opensandbox-e2e/${toml_file}:/etc/opensandbox/isolation.toml", ] drop_capabilities = ${drop_capabilities} [storage] @@ -134,4 +143,22 @@ run_server OPENSANDBOX_HARDENING_DEGRADATION=true run_pytest "TestHardeningDegradationE2E" stop_server -echo "Execd hardening E2E PASSED (phase 1: floor, phase 2: degradation)" +# --------------------------------------------------------------------------- +# Phase 3: custom-policy overrides (R-q) — [seccomp] deny + keep_capabilities. +# The ceiling must KEEP CAP_NET_RAW (not in the drop list) so the launcher's +# ambient raise can succeed; the custom TOML replaces the hardened one. +# --------------------------------------------------------------------------- +write_server_config '["AUDIT_WRITE", "MKNOD", "NET_ADMIN", "SYS_ADMIN", "SYS_MODULE", "SYS_PTRACE", "SYS_TIME", "SYS_TTY_CONFIG"]' isolation.custom.toml +run_server +run_pytest "TestHardeningCustomPolicyE2E" +stop_server + +# --------------------------------------------------------------------------- +# Phase 4: EXECD_INIT <-> TOML drift (R-s) — hardened TOML with init off. +# --------------------------------------------------------------------------- +write_server_config '["AUDIT_WRITE", "MKNOD", "NET_ADMIN", "NET_RAW", "SYS_ADMIN", "SYS_MODULE", "SYS_PTRACE", "SYS_TIME", "SYS_TTY_CONFIG"]' isolation.hardened.toml false +run_server +OPENSANDBOX_HARDENING_DRIFT=true run_pytest "TestHardeningDriftE2E" +stop_server + +echo "Execd hardening E2E PASSED (phase 1: floor, phase 2: degradation, phase 3: custom policy, phase 4: drift)" diff --git a/scripts/python-k8s-execd-init-e2e.sh b/scripts/python-k8s-execd-init-e2e.sh index 97caea6aa..3ed22ad51 100755 --- a/scripts/python-k8s-execd-init-e2e.sh +++ b/scripts/python-k8s-execd-init-e2e.sh @@ -53,10 +53,12 @@ k8s_e2e_kind_load_runtime_images k8s_e2e_apply_pvc_and_seed # The hardened isolation TOML travels to sandboxes via a ConfigMap mounted by # the e2e batchsandbox template (optional: true), and the hardening e2e points -# EXECD_ISOLATION_CONFIG at it per request. No server config needed. +# EXECD_ISOLATION_CONFIG at it per request. The custom-policy TOML (R-q) is a +# second key in the same ConfigMap. No server config needed. kubectl create configmap opensandbox-e2e-execd-isolation \ --namespace "${E2E_NAMESPACE}" \ --from-file=isolation.hardened.toml="${REPO_ROOT}/components/execd/configs/isolation.hardened.toml" \ + --from-file=isolation.custom.toml="${REPO_ROOT}/components/execd/configs/isolation.custom.toml" \ --dry-run=client -o yaml | kubectl apply -f - k8s_e2e_write_server_helm_values k8s_e2e_helm_install_server @@ -96,4 +98,4 @@ make generate-api cd "${REPO_ROOT}/tests/python" uv sync --all-extras --refresh uv run pytest tests/test_execd_init_e2e.py -v -uv run pytest tests/test_execd_hardening_e2e.py -v -k "TestHardeningE2E" +uv run pytest tests/test_execd_hardening_e2e.py -v -k "TestHardeningE2E or TestHardeningCustomPolicyE2E" diff --git a/tests/python/tests/test_execd_hardening_e2e.py b/tests/python/tests/test_execd_hardening_e2e.py index 045d9fd07..743e4df14 100644 --- a/tests/python/tests/test_execd_hardening_e2e.py +++ b/tests/python/tests/test_execd_hardening_e2e.py @@ -61,6 +61,17 @@ (OSEP-0018 R-o): sessions run with the bwrap namespace + seccomp/NNP floor and the credential env strip, and the hardening report stays intact around session create/run/delete. + +A fourth class (R-q) runs a custom-policy TOML variant +(configs/isolation.custom.toml): a `[seccomp] deny` override (chmod family, +which REPLACES the built-in denylist) + `keep_capabilities=["CAP_NET_RAW"]`. +It asserts the denied syscall fails with EACCES in /command while the kept +capability is raised in the ambient set and survives execve (CapEff=0x2000). + +A fifth class (R-s) pins the EXECD_INIT <-> TOML drift state: the hardened +TOML with `runtime.execd_run_as_init = false` must report init_mode=none and +degrade the enabled layers (with EXECD_INIT guidance), while execd-spawned +/command still runs through the floor. """ import logging @@ -108,6 +119,10 @@ # ConfigMap, mounted by the e2e batchsandbox template at this path. K8S_EXECD_ISOLATION_CONFIG = "/etc/opensandbox/execd-isolation/isolation.hardened.toml" +# Kubernetes: the custom-policy TOML (R-q) is a second key in the same +# ConfigMap, so it lands next to the hardened one without a template change. +K8S_EXECD_CUSTOM_CONFIG = "/etc/opensandbox/execd-isolation/isolation.custom.toml" + # Kubernetes: the e2e PVC is backed by a hostPath PV on the kind node. The PV # used to live under the node's /tmp, which is a noexec tmpfs, so every mount # of the PVC was not executable (writes/reads fine, exec EACCES regardless of @@ -142,22 +157,36 @@ def _hardened_sandbox_options() -> dict: ], } -_HARDENING_REPORT: HardeningStatus | None = None + +def _custom_policy_sandbox_options() -> dict: + """Sandbox create kwargs that point execd at the custom-policy TOML + (R-q). Docker: the phase-3 server config binds it at the default path, so + no request args are needed. Kubernetes: point the request env at the + second ConfigMap key (no workspace mount needed — no Landlock here). + """ + if not is_kubernetes_runtime(): + return {} + return { + "env": {"EXECD_ISOLATION_CONFIG": K8S_EXECD_CUSTOM_CONFIG}, + } + +_HARDENING_REPORT: dict[str, HardeningStatus] = {} def _hardening_report(sandbox: SandboxSync, refresh: bool = False) -> HardeningStatus: - """Probe execd's capabilities endpoint via the SDK model and cache. + """Probe execd's capabilities endpoint via the SDK model and cache per + sandbox (multiple sandbox classes share one pytest invocation on k8s, so + a process-global cache would leak one sandbox's report into another). ``refresh=True`` forces a live probe (used where the assertion must observe the endpoint AFTER a state change, e.g. session teardown). Consuming ``IsolatedCapabilities.hardening`` also pins the spec -> SDK -> implementation alignment of the hardening object (OSEP-0018 R-r).""" - global _HARDENING_REPORT - if _HARDENING_REPORT is None or refresh: + if refresh or sandbox.id not in _HARDENING_REPORT: caps = sandbox.isolation.capabilities() if caps.hardening is None: pytest.fail("capabilities endpoint returned no hardening object") - _HARDENING_REPORT = caps.hardening - return _HARDENING_REPORT + _HARDENING_REPORT[sandbox.id] = caps.hardening + return _HARDENING_REPORT[sandbox.id] def _landlock_state(sandbox: SandboxSync) -> str: @@ -402,6 +431,132 @@ def test_floor_still_applies_without_setpcap(self, sandbox) -> None: assert status["CapBnd"] != "0000000000000000", status +class TestHardeningCustomPolicyE2E: + """Custom `[seccomp] deny` override + `keep_capabilities` (OSEP-0018 R-q). + + The sandbox runs with configs/isolation.custom.toml: hardening enabled, + a `[seccomp] deny` override (chmod/fchmodat/fchmodat2 — REPLACES the + built-in denylist) and keep_capabilities=["CAP_NET_RAW"]. Proves: + + - the custom deny list reaches the workload: the denied syscall fails + with EACCES in /command + - keep_capabilities are raised in the ambient set and survive execve: + /command shows CapEff=0000000000002000 (CAP_NET_RAW = bit 13) with the + bounding set trimmed to the kept caps + - the capabilities endpoint reports the overrides as active + """ + + @pytest.fixture(scope="module", autouse=True) + def sandbox(self): + # Keep the entrypoint trivial: it also runs through the launcher with + # the same policy, and the deny list (chmod family) must not break it. + sbx = _create_sandbox( + entrypoint=["sh", "-c", "while :; do sleep 1; done"], + tag="execd-hardening-custom-policy-e2e", + **_custom_policy_sandbox_options(), + ) + logger.info("✓ custom-policy sandbox created: %s", sbx.id) + yield sbx + _destroy(sbx) + + def test_capabilities_endpoint_reports_custom_policy(self, sandbox) -> None: + report = _hardening_report(sandbox) + assert report.init_mode == "pid1", f"init_mode = {report.init_mode}" + assert report.cap_drop is not None and report.cap_drop.state == "active", ( + report.cap_drop + ) + assert report.seccomp is not None and report.seccomp.state == "active", ( + report.seccomp + ) + # The custom TOML has no [landlock] section: it must stay disabled, + # not be dragged into the active state. + assert report.landlock is not None and report.landlock.state == "disabled", ( + report.landlock + ) + + def test_denied_syscall_fails_in_command(self, sandbox) -> None: + # The custom deny list replaces the built-in one; chmod family must + # fail with EACCES while the shell itself keeps running. + result = sandbox.commands.run( + "echo x > /tmp/rq-probe && chmod 755 /tmp/rq-probe" + ) + assert result.error is not None, "chmod must be denied by the custom deny list" + stderr = "".join(msg.text for msg in result.logs.stderr) + assert "Permission denied" in stderr or "Operation not permitted" in stderr, stderr + + def test_kept_capability_survives_execve(self, sandbox) -> None: + # CAP_NET_RAW (bit 13) raised in the ambient set: CapEff=0x2000 in + # /command, and the bounding set is trimmed to exactly the kept caps. + status = _status_fields(sandbox, ["CapEff", "CapBnd", "Seccomp", "NoNewPrivs"]) + assert status["CapEff"] == "0000000000002000", status + assert status["CapBnd"] == "0000000000002000", status + assert status["Seccomp"] == "2", status + assert status["NoNewPrivs"] == "1", status + + def test_other_syscalls_still_work(self, sandbox) -> None: + # The custom deny list is a deny-override, not a lockdown: non-denied + # syscalls keep working in the same session. + out = _run_command(sandbox, "echo custom-deny-ok") + assert "custom-deny-ok" in out, out + + +@pytest.mark.skipif( + os.environ.get("OPENSANDBOX_HARDENING_DRIFT") != "true", + reason="requires the drift server (hardened TOML with execd_run_as_init = " + "false); run via scripts/python-execd-hardening-e2e.sh phase 4", +) +@pytest.mark.skipif( + is_kubernetes_runtime(), + reason="drift needs a second server deployment with execd_run_as_init = " + "false (the k8s e2e server runs with it on); docker-only", +) +class TestHardeningDriftE2E: + """EXECD_INIT <-> TOML drift pin (OSEP-0018 R-s). + + `[hardening] enabled` with `runtime.execd_run_as_init = false`: the + hardening endpoint must report init_mode=none and degrade the enabled + layers with EXECD_INIT guidance (the image entrypoint is not wrapped), + while execd-spawned /command still runs through the floor. + """ + + @pytest.fixture(scope="module", autouse=True) + def sandbox(self): + sbx = _create_sandbox( + entrypoint=["sh", "-c", "while :; do sleep 1; done"], + tag="execd-hardening-drift-e2e", + ) + logger.info("✓ drift sandbox created: %s", sbx.id) + yield sbx + _destroy(sbx) + + def test_init_mode_none_and_layers_degraded(self, sandbox) -> None: + report = _hardening_report(sandbox) + assert report.init_mode == "none", f"init_mode = {report.init_mode}" + assert report.signal_shield is False + for layer, name in ( + (report.cap_drop, "cap_drop"), + (report.seccomp, "seccomp"), + (report.landlock, "landlock"), + ): + assert layer is not None, name + assert layer.state == "degraded", f"{name} state = {layer.state}" + assert layer.message is not None and "EXECD_INIT" in layer.message, ( + layer.message + ) + assert report.ebpf is not None and report.ebpf.state == "disabled", ( + report.ebpf + ) + + def test_command_still_runs_through_floor(self, sandbox) -> None: + # Fail-open but honest: without init mode the image entrypoint is not + # wrapped, but execd-spawned /command still goes through the launcher + # — the endpoint says degraded rather than pretending full coverage. + status = _status_fields(sandbox, ["CapEff", "Seccomp", "NoNewPrivs"]) + assert status["CapEff"] == "0000000000000000", status + assert status["Seccomp"] == "2", status + assert status["NoNewPrivs"] == "1", status + + class TestIsolatedSessionHardeningE2E: """bwrap isolated sessions under init mode + the hardening floor (OSEP-0018 R-o). From b701a2900b78f75a7e83e0894769ff97616b5bab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Tue, 18 Aug 2026 18:47:16 +0800 Subject: [PATCH 02/33] docs(osep-0018): decline R-a trusted stop channel; keep kill 1 SIGTERM contract Decision: no out-of-band stop endpoint or credential channel. In-namespace SIGTERM keeps stopping the sandbox (same as pre-OSEP), kill -9 1 stays inert via the PID 1 shield (the property R2 is really about), and the K8s Restart recycle keeps DefaultRestartCommand=[kill,1]. External runtime SIGTERM still forwards for graceful shutdown. R2 downgraded to a documented non-goal; test comment synced. --- oseps/0018-execd-as-sandbox-init.md | 14 ++++++++------ tests/python/tests/test_execd_init_e2e.py | 10 +++++----- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/oseps/0018-execd-as-sandbox-init.md b/oseps/0018-execd-as-sandbox-init.md index a36a19f21..c0b336893 100644 --- a/oseps/0018-execd-as-sandbox-init.md +++ b/oseps/0018-execd-as-sandbox-init.md @@ -38,11 +38,13 @@ status: implementing > Updated 2026-08-18. Status: **implementing** — the phased rollout below is > implemented on branch `feat/execd-init-mode` (Phases 1–5 plus the server -> switch); remaining items are the trusted stop channel (§3), kernel-5.10 -> empirical validation, the eBPF audit e2e, and the default-on rollout (see -> the Remaining work table below). R-i (server-path hardening e2e, docker -> bridge) landed in PR #1554; R-q (custom seccomp/caps e2e) and R-s -> (EXECD_INIT drift pin) landed in the hardening e2e. +> switch); remaining items are kernel-5.10 empirical validation (smoke +> script ready), the eBPF audit e2e, and the default-on rollout (see +> the Remaining work table below). R-a (trusted stop channel) declined +> 2026-08-18 — the `kill 1` SIGTERM contract is kept as-is. R-i +> (server-path hardening e2e, docker bridge) landed in PR #1554; R-q +> (custom seccomp/caps e2e) and R-s (EXECD_INIT drift pin) landed in the +> hardening e2e. | Phase | Scope | Status | |---|---|---| @@ -77,7 +79,7 @@ status: implementing | # | Item | Status / plan | |---|---|---| -| R-a | Trusted out-of-band stop channel (§3, R2) | **Open — biggest remaining item, separate PR.** Any SIGTERM (incl. in-namespace `kill 1`) still stops the sandbox (same as pre-OSEP behavior); `kill -9 1` is inert. Target: authenticated channel unreachable from the workload; then point the K8s Restart recycle at it instead of `kill 1` (`restart_default.go`; current SIGTERM semantics confirmed compatible, comment added) | +| R-a | Trusted out-of-band stop channel (§3, R2) | **Declined follow-up.** Decision (2026-08-18): keep the current `kill 1` SIGTERM contract — in-namespace SIGTERM stops the sandbox exactly as in the pre-OSEP era (accepted exposure; no regression), and `kill -9 1` stays inert via the PID 1 signal shield, which is the property R2 is really about. No stop endpoint, no credential channel: the K8s Restart recycle keeps `DefaultRestartCommand = ["kill", "1"]` (`restart_default.go` comment stays accurate under the kept semantics). External (out-of-namespace) runtime SIGTERM still forwards to the entrypoint for graceful shutdown (§2/Open question 2). R2 is downgraded from a must-have to a documented non-goal for this revision | | R-b | Pool pod-level PID 1 | **Declined follow-up.** Pool sandboxes run execd as task-level subreaper (Phase 5): the per-child floor holds without PID 1; the lost signal shield is no regression (pool exposure equals the pre-OSEP era; task-executor owns pod reaping). Operators wanting full PID 1 configure the Pool template command manually (`bootstrap.sh` + keepalive + `EXECD_INIT=1`); server auto-injection out of scope | | R-c | Kernel-5.10 eBPF empirical validation | Open. The 5.10–5.15 exec-hook fallback (inline `filename[1024]`, `__data_loc` argv) is derived from the tracepoint definition, not boot-tested; worst case the hook degrades (fail-open). Needs a real 5.10 node with BTF + `CAP_BPF` | | R-d | Cross-language SDK e2e | **Declined follow-up.** Python covers the init-mode/hardening surface (docker-bridge + k8s nightly: PID 1, reaping, kill-9 inert, `/proc/1/environ` denial, capabilities endpoint). The execd-init surface is server-config-driven, so a passing Python suite exercises the same server → sandbox → execd path every SDK talks to; the remaining per-language value (SDK transport of the `hardening` model) is low. Cancel cross-language init-mode e2e | diff --git a/tests/python/tests/test_execd_init_e2e.py b/tests/python/tests/test_execd_init_e2e.py index fab19f2cb..818ab54fc 100644 --- a/tests/python/tests/test_execd_init_e2e.py +++ b/tests/python/tests/test_execd_init_e2e.py @@ -225,11 +225,11 @@ def test_entrypoint_exit_code_propagates(self) -> None: _destroy(sbx) def test_in_namespace_sigterm_kill1_stops_sandbox(self, kill1_sandbox) -> None: - # Interim-behavior pin (OSEP-0018 §3, R-a): today an in-namespace - # `kill 1` SIGTERM reaches execd's forwarding loop and stops the - # sandbox, matching the pre-OSEP bootstrap behavior. Once the trusted - # out-of-band stop channel lands, execd must ignore in-namespace - # SIGTERM and this test flips to asserting the sandbox stays Running. + # Behavior pin (OSEP-0018 §3, R-a): an in-namespace `kill 1` SIGTERM + # reaches execd's forwarding loop and stops the sandbox, matching the + # pre-OSEP bootstrap behavior. The trusted out-of-band stop channel + # was declined (2026-08-18): this SIGTERM contract is kept as-is, and + # `kill -9 1` stays inert via the PID 1 signal shield. try: kill1_sandbox.commands.run( "kill 1; sleep 5; echo alive", opts=RunCommandOpts() From 938defb975c25848fde72dd22488435196b276c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Tue, 18 Aug 2026 18:58:59 +0800 Subject: [PATCH 03/33] test(execd): close R-l(b)/R-m/R-u e2e gaps (OSEP-0018) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit R-l(b): tests/python/tests/test_execd_k8s_restart_recycle_e2e.py — Pool whose pod template runs execd as PID 1 (bootstrap.sh + EXECD_INIT=1 + EXECD=/execd + keepalive) with the Restart recycle strategy; releasing the BatchSandbox pod-execs kill 1, execd forwards SIGTERM and exits, kubelet restarts the container (restartCount increases), pod survives and execd is PID 1 again. Verifies the restart_default.go 'contract compatible' comment e2e. Wired into scripts/python-k8s-execd-init-e2e.sh (exports E2E_NAMESPACE/EXECD_IMG + runs the new file). R-m: TestHardeningDefaultOffE2E (hardening e2e, docker phase 5) — plain server, no isolation TOML, init off: endpoint reports init_mode=none, signal_shield=false, every layer disabled, workload unaffected (ceiling caps, Seccomp=0, NoNewPrivs=0). write_server_config gained an inject_toml switch. Plus test_sustained_fork_heavy_mix_keeps_process_table_ bounded: ~30s of interleaved /command churn + background sleepers, bounded zombie-free process table throughout. R-u: test_runtime_stop_forwards_sigterm_and_propagates_exit_code (init e2e, docker bridge): entrypoint traps TERM (marker + exit 7), container located via opensandbox.io/id label, docker stop -> sandbox Failed with 'exited with code 7' and marker present (docker cp from the stopped container). --- oseps/0018-execd-as-sandbox-init.md | 11 +- scripts/python-execd-hardening-e2e.sh | 26 ++- scripts/python-k8s-execd-init-e2e.sh | 3 + .../python/tests/test_execd_hardening_e2e.py | 54 +++++ tests/python/tests/test_execd_init_e2e.py | 110 ++++++++++ .../test_execd_k8s_restart_recycle_e2e.py | 203 ++++++++++++++++++ 6 files changed, 399 insertions(+), 8 deletions(-) create mode 100644 tests/python/tests/test_execd_k8s_restart_recycle_e2e.py diff --git a/oseps/0018-execd-as-sandbox-init.md b/oseps/0018-execd-as-sandbox-init.md index c0b336893..59b0ab7c9 100644 --- a/oseps/0018-execd-as-sandbox-init.md +++ b/oseps/0018-execd-as-sandbox-init.md @@ -43,8 +43,9 @@ status: implementing > the Remaining work table below). R-a (trusted stop channel) declined > 2026-08-18 — the `kill 1` SIGTERM contract is kept as-is. R-i > (server-path hardening e2e, docker bridge) landed in PR #1554; R-q -> (custom seccomp/caps e2e) and R-s (EXECD_INIT drift pin) landed in the -> hardening e2e. +> (custom seccomp/caps e2e), R-s (EXECD_INIT drift pin), R-l(b) (K8s +> Restart recycle e2e), R-m (default-off + sustained fork-heavy) and R-u +> (runtime-initiated stop e2e) landed in the init/hardening e2e suites. | Phase | Scope | Status | |---|---|---| @@ -90,8 +91,8 @@ status: implementing | R-i | Server-path hardening e2e (Python) | **Implemented (docker bridge + k8s)** — `tests/python/tests/test_execd_hardening_e2e.py` + `scripts/python-execd-hardening-e2e.sh` + CI job `python-execd-hardening-e2e` (PR #1554), extended to the Kubernetes path in the execd-init k8s nightly. **Docker**: the hardened isolation TOML (`components/execd/configs/isolation.hardened.toml`) is injected into every sandbox via a config-level bind mount + `EXECD_ISOLATION_CONFIG` (`[docker] sandbox_env`); the workspace bind additionally exercises the launcher's mount expansion. **Kubernetes** (no server config change): the TOML travels in a ConfigMap (`opensandbox-e2e-execd-isolation`) mounted by the e2e `batchsandbox_template_file` (added `execd-isolation` volume + mount, `optional: true`, merged by the existing template-extras path), the test points `EXECD_ISOLATION_CONFIG` at it per request env, and the workspace PVC is mounted at `/mnt/workspace-exec` via request volumes so the Landlock bind-mount expansion is still exercised. k8s root-cause note: the e2e PVC's hostPath PV used to live under the kind node's `/tmp`, which is a **noexec tmpfs** — every PVC mount was therefore non-executable (writes/reads fine, exec EACCES regardless of Landlock, pod spec and CR were always correct); the e2e harness now places the PV on the node rootfs (`/var/opensandbox-e2e`, `scripts/common/kubernetes-e2e.sh`). The entrypoint dump goes to `/workspace` (writable in both runtimes) and is read back via the SDK files API on k8s. Covers: reduced caps/seccomp/NNP + env strip on entrypoint and `/command`, Landlock (`/tmp` writable, `/etc/passwd` read-only, workspace mount write+exec; skipped when the kernel reports `unsupported`, per §6 fail-open), capabilities endpoint layer states, and the missing-`CAP_SETPCAP` degradation (phase 2, docker only — k8s degradation still open: the k8s container ceiling caps are not tuned in the e2e) | | R-j | eBPF JSONL audit e2e | **Open.** No container/e2e test runs the `execd-ebpf` variant with `[ebpf] enabled` and asserts exec/connect/privilege events land in the rotating audit file; only event-decoding unit tests exist — the `commit_creds` privilege hook has never been validated on a real kernel (ties into R-c/R-e) | | R-k | Python e2e signal-forwarding breadth | **Implemented** — `test_application_signals_forwarded_to_entrypoint` now sends HUP/USR1/USR2/WINCH to PID 1 and asserts every trap marker fires in the entrypoint (SIGTERM graceful shutdown covered by `tests/init_container.sh`) | -| R-l | K8s init-mode e2e depth | **Partially addressed.** The k8s nightly runs the same Python file with two k8s-path adaptations: `test_entrypoint_exit_code_propagates` skips on k8s (BatchSandbox stays Pending after pod completion and does not surface the container exit code — verified empirically on the nightly), and the `kill 1` pin asserts execd becomes unreachable instead of a lifecycle state transition. Still open: no Pool + `EXECD_INIT` subreaper-report case (R-b); no K8s Restart recycle (`kill 1`) against an init-mode pod — the `restart_default.go` "contract compatible" comment is unverified e2e | -| R-m | Default-off assertion + sustained fork-heavy | **Open (low).** No explicit e2e pin that with init/hardening off the capabilities endpoint reports `init_mode: none` and layers `disabled`; the fork-heavy e2e loop is 20×5 short-lived children — a long-running mix of `/command` churn + background sleepers would closer match OSEP §Test-Plan | +| R-l | K8s init-mode e2e depth | **Implemented.** The k8s nightly runs the Python init suite with two k8s-path adaptations (`test_entrypoint_exit_code_propagates` skips — BatchSandbox does not surface the container exit code; the `kill 1` pin asserts execd becomes unreachable instead of a lifecycle transition). Added: `test_execd_k8s_restart_recycle_e2e.py` (k8s nightly) — a Pool whose pod template runs execd as PID 1 (`bootstrap.sh` + `EXECD_INIT=1` + `EXECD=/execd` + keepalive) with the Restart recycle strategy; releasing the BatchSandbox pod-execs `kill 1`, execd forwards SIGTERM and exits, the kubelet restarts the container (restartCount increases), the pod survives and execd is PID 1 again — the `restart_default.go` "contract compatible" comment is now verified e2e. The Pool + `EXECD_INIT` subreaper report case (R-b) remains declined with the Pool path | +| R-m | Default-off assertion + sustained fork-heavy | **Implemented.** `TestHardeningDefaultOffE2E` (hardening e2e, docker phase 5): plain server (no isolation TOML, `execd_run_as_init = false`) asserts the endpoint reports `init_mode: none`, `signal_shield: false`, every layer `disabled` with a message, and the workload is unaffected (ceiling caps, Seccomp=0, NoNewPrivs=0). `test_sustained_fork_heavy_mix_keeps_process_table_bounded` (init e2e, both runtimes) sustains ~30s of interleaved `/command` churn + background sleepers and asserts a bounded, zombie-free process table throughout | | R-n | PTY path under hardening — zero coverage | **Implemented** — Go integration test `TestHardeningPTYSessions` (`hardening_linux_test.go`, runs in the execd `test` CI job): StartPTY + StartPipe both launch through the launcher with the reaper active and assert the session shell reports Seccomp=2 / NoNewPrivs=1 / CapEff=0 (root) / `EXECD_ACCESS_TOKEN` stripped. Container-level `/pty` WS case dropped: the alpine execd image has no WS client, and the pty fd / `setsid` / `Setctty` survival across the launcher's `execve` is covered by the integration test | | R-o | Isolated session (bwrap) + init-mode reaper combination | **Implemented** — (1) Go integration test `TestIsolatedSessionWithInitReaper` (`isolated_session_initmode_linux_test.go`, `linux && bwrap`, run as root in the `bwrap-smoke` CI job): full bwrap lifecycle (create/run/exit-code/delete) under reaper dispatch, plus a delete racing a running workload to exercise the pre-reap barrier's PGID-reuse serialization with the reaper's WNOWAIT-observe → consume path. (2) Python e2e `TestIsolatedSessionHardeningE2E` (docker bridge, runs in the hardening e2e job's phase 1): bwrap sessions under init mode + the floor — capabilities available, session workload carries bwrap's seccomp/NNP floor + credential env strip, PID-namespace isolation, state persistence, delete-while-busy teardown, hardening report intact around sessions | | R-p | `/code` (Jupyter kernels) under init/hardening e2e | **Declined follow-up.** Not validated at e2e level; kernels inherit the reduced Jupyter entrypoint by construction, and `test_execd_init_e2e.py` covers Jupyter startup under PID 1 via the ready check. Revisit if the code-interpreter entrypoint changes | @@ -99,7 +100,7 @@ status: implementing | R-r | e2e consumes the SDK `hardening` model instead of a raw HTTP probe | **Implemented** — `_hardening_report` now reads `sandbox.isolation.capabilities().hardening` (`HardeningStatus` model) instead of a `/command` urllib JSON probe, pinning the spec → SDK → implementation alignment of the hardening object | | R-s | `EXECD_INIT` ↔ TOML drift pin (init off, hardening on) | **Implemented** — `TestHardeningDriftE2E` (hardening e2e, docker phase 4): hardened TOML with `runtime.execd_run_as_init = false` asserts the endpoint reports `init_mode: none`, `signal_shield: false`, and cap_drop/seccomp/landlock all `degraded` with `EXECD_INIT` guidance (ebpf stays `disabled`), while execd-spawned `/command` still runs through the floor (CapEff=0, seccomp, NNP) — fail-open but honest. k8s drift needs a second server with init off; docker-only (Go test `TestHardeningReportDegradesWithoutInitMode` covers the same at unit level) | | R-t | Reaper sweep backstop (lost/coalesced SIGCHLD) | **Implemented** — `TestReaperSweepBackstop` (`initmode_linux_test.go`): the reaper's `signal.Notify` subscription stays registered (blocking the Go runtime's auto-reap) while the run loop is severed from it, so only the sweep ticker can reap an exiting child; asserts the child is drained within the ticker budget | -| R-u | Runtime-initiated container stop (external SIGTERM) at SDK/e2e level | **Open (low).** Only `components/execd/tests/init_container.sh` (docker stop) covers the graceful-shutdown path; no SDK-level e2e asserts the entrypoint receives SIGTERM and the sandbox exits with its status when the runtime stops the container. Adjacent to R-k's signal-forwarding breadth | +| R-u | Runtime-initiated container stop (external SIGTERM) at SDK/e2e level | **Implemented.** `test_runtime_stop_forwards_sigterm_and_propagates_exit_code` (init e2e, docker bridge): creates a sandbox whose entrypoint traps TERM (marker + exit 7), locates the container via the `opensandbox.io/id` label, `docker stop`s it, and asserts the sandbox ends `Failed` with "exited with code 7" while the marker in the exited container's layer proves the entrypoint received SIGTERM — the runtime-stop graceful-shutdown path at SDK level, complementing `init_container.sh` | Closed this round (2026-08-18): R-q (custom `[seccomp] deny` + `keep_capabilities` e2e, docker phase 3 + k8s ConfigMap key) and R-s (EXECD_INIT↔TOML drift pin, docker phase 4) landed in the hardening e2e; the `_hardening_report` cache is now per-sandbox so multiple classes share one pytest invocation on k8s safely. diff --git a/scripts/python-execd-hardening-e2e.sh b/scripts/python-execd-hardening-e2e.sh index 49ae9397c..262355275 100644 --- a/scripts/python-execd-hardening-e2e.sh +++ b/scripts/python-execd-hardening-e2e.sh @@ -30,6 +30,9 @@ # Phase 4: EXECD_INIT <-> TOML drift pin (R-s) — the hardened TOML with # execd_run_as_init = false; the endpoint must report init_mode=none # and degrade the enabled layers. +# Phase 5: default-off pin (R-m) — plain server, no isolation TOML, init off; +# the endpoint must report init_mode=none with every layer disabled +# and the workload must be unaffected (no floor applied). # # Usage: bash scripts/python-execd-hardening-e2e.sh @@ -93,6 +96,13 @@ write_server_config() { local drop_capabilities="$1" local toml_file="${2:-isolation.hardened.toml}" local run_as_init="${3:-true}" + local inject_toml="${4:-true}" + local sandbox_env_line="" + local toml_bind_line="" + if [ "${inject_toml}" = "true" ]; then + sandbox_env_line='sandbox_env = { EXECD_ISOLATION_CONFIG = "/etc/opensandbox/isolation.toml" }' + toml_bind_line=" \"/tmp/opensandbox-e2e/${toml_file}:/etc/opensandbox/isolation.toml\"," + fi cat < ~/.sandbox.toml [server] host = "127.0.0.1" @@ -116,10 +126,10 @@ network_mode = "bridge" # the opensandbox-launcher. no_new_privileges = false seccomp_profile = "unconfined" -sandbox_env = { EXECD_ISOLATION_CONFIG = "/etc/opensandbox/isolation.toml" } +${sandbox_env_line} sandbox_binds = [ "/tmp/opensandbox-e2e/workspace:/workspace", - "/tmp/opensandbox-e2e/${toml_file}:/etc/opensandbox/isolation.toml", +${toml_bind_line} ] drop_capabilities = ${drop_capabilities} [storage] @@ -161,4 +171,14 @@ run_server OPENSANDBOX_HARDENING_DRIFT=true run_pytest "TestHardeningDriftE2E" stop_server -echo "Execd hardening E2E PASSED (phase 1: floor, phase 2: degradation, phase 3: custom policy, phase 4: drift)" +# --------------------------------------------------------------------------- +# Phase 5: default-off pin (R-m) — plain server, no TOML, init off. The +# endpoint must report init_mode=none with every layer disabled, and the +# workload must be unaffected (no floor applied). +# --------------------------------------------------------------------------- +write_server_config '["AUDIT_WRITE", "MKNOD", "NET_ADMIN", "NET_RAW", "SYS_ADMIN", "SYS_MODULE", "SYS_PTRACE", "SYS_TIME", "SYS_TTY_CONFIG"]' isolation.hardened.toml false false +run_server +OPENSANDBOX_HARDENING_DEFAULT_OFF=true run_pytest "TestHardeningDefaultOffE2E" +stop_server + +echo "Execd hardening E2E PASSED (phase 1: floor, phase 2: degradation, phase 3: custom policy, phase 4: drift, phase 5: default-off)" diff --git a/scripts/python-k8s-execd-init-e2e.sh b/scripts/python-k8s-execd-init-e2e.sh index 3ed22ad51..464a4650d 100755 --- a/scripts/python-k8s-execd-init-e2e.sh +++ b/scripts/python-k8s-execd-init-e2e.sh @@ -90,6 +90,8 @@ export OPENSANDBOX_SANDBOX_DEFAULT_IMAGE="${SANDBOX_TEST_IMAGE}" export OPENSANDBOX_E2E_RUNTIME="kubernetes" export OPENSANDBOX_TEST_USE_SERVER_PROXY="true" export OPENSANDBOX_TEST_PVC_NAME="${PVC_NAME}" +export OPENSANDBOX_E2E_NAMESPACE="${E2E_NAMESPACE}" +export OPENSANDBOX_EXECD_IMAGE="${EXECD_IMG}" k8s_e2e_export_sandbox_resource_env @@ -99,3 +101,4 @@ cd "${REPO_ROOT}/tests/python" uv sync --all-extras --refresh uv run pytest tests/test_execd_init_e2e.py -v uv run pytest tests/test_execd_hardening_e2e.py -v -k "TestHardeningE2E or TestHardeningCustomPolicyE2E" +uv run pytest tests/test_execd_k8s_restart_recycle_e2e.py -v diff --git a/tests/python/tests/test_execd_hardening_e2e.py b/tests/python/tests/test_execd_hardening_e2e.py index 743e4df14..dcca4bdb6 100644 --- a/tests/python/tests/test_execd_hardening_e2e.py +++ b/tests/python/tests/test_execd_hardening_e2e.py @@ -557,6 +557,60 @@ def test_command_still_runs_through_floor(self, sandbox) -> None: assert status["NoNewPrivs"] == "1", status +@pytest.mark.skipif( + os.environ.get("OPENSANDBOX_HARDENING_DEFAULT_OFF") != "true", + reason="requires the plain server (no isolation TOML, execd_run_as_init = " + "false); run via scripts/python-execd-hardening-e2e.sh phase 5", +) +@pytest.mark.skipif( + is_kubernetes_runtime(), + reason="default-off needs a plain server (the k8s e2e server runs with " + "execd_run_as_init = true and the hardened TOML); docker-only", +) +class TestHardeningDefaultOffE2E: + """Default-off pin (OSEP-0018 R-m). + + With no isolation TOML and no EXECD_INIT, execd must be exactly the + pre-OSEP binary: the capabilities endpoint reports init_mode=none with + every layer disabled (no drift, no fabricated states), and the workload + is unaffected — /command runs with the container ceiling caps and no + seccomp floor. + """ + + @pytest.fixture(scope="module", autouse=True) + def sandbox(self): + sbx = _create_sandbox( + entrypoint=["sh", "-c", "while :; do sleep 1; done"], + tag="execd-hardening-default-off-e2e", + ) + logger.info("✓ default-off sandbox created: %s", sbx.id) + yield sbx + _destroy(sbx) + + def test_all_layers_disabled_without_config(self, sandbox) -> None: + report = _hardening_report(sandbox) + assert report.init_mode == "none", f"init_mode = {report.init_mode}" + assert report.signal_shield is False + for layer, name in ( + (report.cap_drop, "cap_drop"), + (report.seccomp, "seccomp"), + (report.landlock, "landlock"), + (report.ebpf, "ebpf"), + ): + assert layer is not None, name + assert layer.state == "disabled", f"{name} state = {layer.state}" + assert layer.message is not None, f"{name} message missing" + + def test_workload_unaffected_without_hardening(self, sandbox) -> None: + # No floor: the workload keeps the container ceiling (cap_drop list + # still removes the dangerous caps from the ceiling, but nothing the + # launcher would subtract on top of that) and no seccomp filter. + status = _status_fields(sandbox, ["CapEff", "Seccomp", "NoNewPrivs"]) + assert status["CapEff"] != "0000000000000000", status + assert status["Seccomp"] == "0", status + assert status["NoNewPrivs"] == "0", status + + class TestIsolatedSessionHardeningE2E: """bwrap isolated sessions under init mode + the hardening floor (OSEP-0018 R-o). diff --git a/tests/python/tests/test_execd_init_e2e.py b/tests/python/tests/test_execd_init_e2e.py index 818ab54fc..779ebeae1 100644 --- a/tests/python/tests/test_execd_init_e2e.py +++ b/tests/python/tests/test_execd_init_e2e.py @@ -40,6 +40,9 @@ import json import logging +import os +import subprocess +import tempfile import time from datetime import timedelta @@ -285,6 +288,36 @@ def test_fork_heavy_keeps_process_table_bounded(self, sandbox) -> None: total = _process_count(sandbox) assert total <= baseline + 10, f"process table grew: {baseline} -> {total}" + def test_sustained_fork_heavy_mix_keeps_process_table_bounded(self, sandbox) -> None: + # OSEP-0018 §Test-Plan shape: a long-running mix of /command churn + # interleaved with background sleepers, sustained over ~30s, must + # keep the process table bounded and zombie-free throughout. This + # closes the R-m gap (the short 20x5 loop above is the minimal + # form; this is the sustained variant). + baseline = _process_count(sandbox) + deadline = time.monotonic() + 30 + round_n = 0 + while time.monotonic() < deadline: + round_n += 1 + # /command churn: short-lived orphans in a tight loop. + _run_command(sandbox, "for i in $(seq 1 8); do ( sleep 0.05 ) & done") + # Every few rounds spawn a long background sleeper that stays + # alive across rounds (reparented to PID 1, must not zombie). + if round_n % 3 == 0: + _run_command(sandbox, "sleep 10 &") + time.sleep(0.2) + zombies = _zombie_count(sandbox) + assert zombies == 0, ( + f"zombies under pid 1 after round {round_n}: {zombies}" + ) + time.sleep(1) + zombies = _zombie_count(sandbox) + assert zombies == 0, f"zombies under pid 1 at end: {zombies}" + total = _process_count(sandbox) + assert total <= baseline + 12, ( + f"process table grew over sustained churn: {baseline} -> {total}" + ) + def test_hardening_reports_pid1(self, sandbox) -> None: # execd's /command SSE output strips newlines, so the probe emits a # single JSON object instead of multi-line prints. @@ -298,3 +331,80 @@ def test_hardening_reports_pid1(self, sandbox) -> None: assert report["signal_shield"] is True, ( f"hardening.signal_shield = {report['signal_shield']}" ) + + @pytest.mark.skipif( + is_kubernetes_runtime(), + reason="runtime-initiated container stop (docker stop) is a docker-bridge " + "scenario (OSEP-0018 R-u); the k8s path does not surface the container " + "exit code", + ) + def test_runtime_stop_forwards_sigterm_and_propagates_exit_code(self) -> None: + # OSEP-0018 R-u: when the RUNTIME stops the container (docker stop), + # execd must forward SIGTERM to the entrypoint and the sandbox must + # end with the entrypoint's status. The entrypoint traps TERM, writes + # a marker, and exits 7 — the sandbox must report "exited with code 7" + # and the marker must be present, proving the workload saw the signal. + marker = "/tmp/runtime-stop-mark-$OPENSANDBOX_ID.txt" + sbx = _create_sandbox( + entrypoint=[ + "sh", + "-c", + f"trap 'echo sigterm-received > {marker}; exit 7' TERM; " + f"while :; do sleep 1; done", + ], + tag="execd-init-e2e-runtime-stop", + ) + try: + # Locate the sandbox container by its opensandbox label. + out = subprocess.run( + [ + "docker", "ps", "-aq", + "--filter", f"label=opensandbox.io/id={sbx.id}", + ], + check=True, capture_output=True, text=True, + ).stdout.strip() + container_id = out.splitlines()[-1] if out else "" + assert container_id, f"no docker container for sandbox {sbx.id}" + + # Runtime stop: docker stop sends SIGTERM to PID 1 (execd), which + # forwards it to the entrypoint; execd then exits with the + # entrypoint's status so the container exits 7. + subprocess.run( + ["docker", "stop", "-t", "10", container_id], + check=True, capture_output=True, text=True, + ) + subprocess.run( + ["docker", "wait", container_id], + check=True, capture_output=True, text=True, + ) + + # Sandbox must end in the failed/terminated state with code 7. + deadline = time.monotonic() + 45 + state = None + while time.monotonic() < deadline: + state = sbx.get_info().status.state + if state in {"Failed", "Terminated"}: + break + time.sleep(2) + if state not in {"Failed", "Terminated"}: + pytest.fail(f"runtime-stop sandbox stuck in state {state}") + info = sbx.get_info() + assert info.status.state == "Failed", info.status + assert info.status.message and "exited with code 7" in info.status.message, ( + info.status.message + ) + + # The entrypoint must have actually received SIGTERM (marker). + # The container is stopped, so `docker cp` the marker out of its + # filesystem (docker exec cannot run in a stopped container). + with tempfile.TemporaryDirectory() as tmpdir: + marker_path = os.path.join(tmpdir, "runtime-stop-marker") + subprocess.run( + ["docker", "cp", f"{container_id}:{marker}", marker_path], + check=True, capture_output=True, text=True, + ) + with open(marker_path, encoding="utf-8") as f: + marker_content = f.read() + assert "sigterm-received" in marker_content, marker_content + finally: + _destroy(sbx) diff --git a/tests/python/tests/test_execd_k8s_restart_recycle_e2e.py b/tests/python/tests/test_execd_k8s_restart_recycle_e2e.py new file mode 100644 index 000000000..8b2ec4bb7 --- /dev/null +++ b/tests/python/tests/test_execd_k8s_restart_recycle_e2e.py @@ -0,0 +1,203 @@ +# +# Copyright 2026 Alibaba Group Holding Ltd. +# +# 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. +# +""" +K8s Restart-recycle e2e against an init-mode execd pod (OSEP-0018 R-l(b)). + +Verifies the ``restart_default.go`` "contract compatible" claim end to end: +a Pool whose pod template runs execd as PID 1 (``bootstrap.sh`` + +``EXECD_INIT=1`` + keepalive) uses the Restart recycle strategy; when the +BatchSandbox is released, the controller pod-execs ``kill 1`` inside the +container, execd forwards SIGTERM to the workload and exits, and the +kubelet restarts the container (restartCount increases) while the pod stays +alive — the pool keeps working for the next allocation. + +Requires a Kind cluster with the controller and the execd image loaded +(scripts/python-k8s-execd-init-e2e.sh), plus kubectl on PATH. +""" + +import logging +import os +import subprocess +import time + +import pytest + +from tests.base_e2e_test import is_kubernetes_runtime + +logger = logging.getLogger(__name__) + +E2E_NAMESPACE = os.getenv("OPENSANDBOX_E2E_NAMESPACE", "opensandbox-e2e") +EXECD_IMG = os.getenv("OPENSANDBOX_EXECD_IMAGE", "opensandbox/execd:e2e-local") + +POOL_NAME = "execd-init-restart-recycle" +BS_NAME = "execd-init-restart-recycle-bs" + + +def _kubectl(*args: str, timeout: int = 60, input: str | None = None) -> str: + out = subprocess.run( + ["kubectl", *args], + check=True, capture_output=True, text=True, timeout=timeout, input=input, + ) + return out.stdout.strip() + + +@pytest.mark.skipif( + not is_kubernetes_runtime(), + reason="Pool + Restart recycle requires the Kubernetes runtime", +) +class TestExecdK8sRestartRecycleE2E: + @pytest.fixture(scope="class", autouse=True) + def pool(self): + """Pool whose pod template runs execd as PID 1 with a keepalive, and + a Restart recycle strategy.""" + pool_yaml = f"""apiVersion: sandbox.opensandbox.io/v1alpha1 +kind: Pool +metadata: + name: {POOL_NAME} + namespace: {E2E_NAMESPACE} +spec: + template: + spec: + containers: + - name: sandbox-container + image: {EXECD_IMG} + command: ["/bootstrap.sh", "sleep", "3600"] + env: + - name: EXECD_INIT + value: "1" + # The execd image keeps the binary at /execd (no execd-installer + # on the Pool path); bootstrap.sh defaults to + # /opt/opensandbox/execd, so point it at the real path. + - name: EXECD + value: "/execd" + - name: OPENSANDBOX_ID + value: "restart-recycle-sbx" + capacitySpec: + bufferMax: 2 + bufferMin: 1 + poolMax: 2 + poolMin: 1 + recycleStrategy: + type: Restart +""" + _kubectl("apply", "-f", "-", input=pool_yaml) + try: + self._wait_pool_pods() + yield + finally: + _kubectl("delete", "pool", POOL_NAME, "-n", E2E_NAMESPACE, "--ignore-not-found=true", timeout=120) + + def _wait_pool_pods(self, timeout: int = 180) -> list[str]: + deadline = time.monotonic() + timeout + pods: list[str] = [] + while time.monotonic() < deadline: + pods = _kubectl( + "get", "pods", + "-n", E2E_NAMESPACE, + "-l", f"sandbox.opensandbox.io/pool-name={POOL_NAME}", + "-o", "jsonpath={.items[*].metadata.name}", + ).split() + running = self._pod_phase(pods) + if pods and running: + return pods + time.sleep(3) + pytest.fail(f"pool pods did not become Running: {pods}") + + def _pod_phase(self, pods: list[str]) -> bool: + for name in pods: + phase = _kubectl( + "get", "pod", name, "-n", E2E_NAMESPACE, + "-o", "jsonpath={.status.phase}", + ) + if phase != "Running": + return False + return bool(pods) + + def _container_restart_count(self, pod: str) -> int: + out = _kubectl( + "get", "pod", pod, "-n", E2E_NAMESPACE, + "-o", "jsonpath={.status.containerStatuses[0].restartCount}", + ) + return int(out or 0) + + def test_pool_pod_runs_execd_as_pid1(self, pool) -> None: + pod = self._wait_pool_pods()[0] + comm = _kubectl( + "exec", pod, "-n", E2E_NAMESPACE, "-c", "sandbox-container", + "--", "cat", "/proc/1/comm", + ).strip() + assert comm == "execd", f"pool pod PID 1 = {comm}, want execd" + + def test_restart_recycle_restarts_container_via_kill1(self, pool) -> None: + pod = self._wait_pool_pods()[0] + before = self._container_restart_count(pod) + + # Allocate a BatchSandbox from the pool, then release it — the + # controller runs the Restart recycle (pod exec `kill 1`). + bs_yaml = f"""apiVersion: sandbox.opensandbox.io/v1alpha1 +kind: BatchSandbox +metadata: + name: {BS_NAME} + namespace: {E2E_NAMESPACE} +spec: + replicas: 1 + poolRef: {POOL_NAME} +""" + _kubectl("apply", "-f", "-", input=bs_yaml) + try: + # Wait for allocation to land on the pool pod. + deadline = time.monotonic() + 120 + while time.monotonic() < deadline: + alloc = _kubectl( + "get", "batchsandbox", BS_NAME, "-n", E2E_NAMESPACE, + "-o", "jsonpath={.metadata.annotations.sandbox\\.opensandbox\\.io/alloc-status}", + ) + if alloc: + break + time.sleep(3) + else: + pytest.fail("BatchSandbox never allocated from the pool") + + _kubectl("delete", "batchsandbox", BS_NAME, "-n", E2E_NAMESPACE, timeout=120) + + # The recycle pod-execs `kill 1`: init-mode execd forwards SIGTERM + # to the keepalive and exits, the kubelet restarts the container. + deadline = time.monotonic() + 180 + while time.monotonic() < deadline: + if self._container_restart_count(pod) > before: + break + time.sleep(3) + else: + pytest.fail( + f"container restartCount did not increase after Restart " + f"recycle (before={before}, pod={pod})" + ) + # Pod must survive the recycle and come back Running with execd + # as PID 1 again — the pool stays usable. + deadline = time.monotonic() + 120 + while time.monotonic() < deadline: + if self._pod_phase([pod]) and self._container_restart_count(pod) > before: + break + time.sleep(3) + else: + pytest.fail(f"pod {pod} did not return Running after recycle") + comm = _kubectl( + "exec", pod, "-n", E2E_NAMESPACE, "-c", "sandbox-container", + "--", "cat", "/proc/1/comm", + ).strip() + assert comm == "execd", f"post-recycle PID 1 = {comm}, want execd" + finally: + _kubectl("delete", "batchsandbox", BS_NAME, "-n", E2E_NAMESPACE, "--ignore-not-found=true", timeout=120) From 6fe0f517297d3c802748ea4ce447b4117b2f515b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Tue, 18 Aug 2026 19:52:42 +0800 Subject: [PATCH 04/33] fix(e2e): runtime-stop marker path must not use $OPENSANDBOX_ID docker cp runs on the host where the variable is not expanded, so the literal $OPENSANDBOX_ID path never matched the file the container-side shell created. Use a fixed marker path (per-container layer, no collision). --- tests/python/tests/test_execd_init_e2e.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/python/tests/test_execd_init_e2e.py b/tests/python/tests/test_execd_init_e2e.py index 779ebeae1..74e87d2a8 100644 --- a/tests/python/tests/test_execd_init_e2e.py +++ b/tests/python/tests/test_execd_init_e2e.py @@ -344,7 +344,11 @@ def test_runtime_stop_forwards_sigterm_and_propagates_exit_code(self) -> None: # end with the entrypoint's status. The entrypoint traps TERM, writes # a marker, and exits 7 — the sandbox must report "exited with code 7" # and the marker must be present, proving the workload saw the signal. - marker = "/tmp/runtime-stop-mark-$OPENSANDBOX_ID.txt" + # Fixed path (not $OPENSANDBOX_ID): docker cp runs on the host where + # the variable is not expanded — a literal $... path would not match + # the file the container-side shell created. Each container has its + # own layer, so a fixed path cannot collide. + marker = "/tmp/runtime-stop-marker.txt" sbx = _create_sandbox( entrypoint=[ "sh", From c36c1b1512645b63cda55ba01b84259cf041bc6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Tue, 18 Aug 2026 20:10:10 +0800 Subject: [PATCH 05/33] ci(execd): wire eBPF bare-container smoke into the smoke job (OSEP-0018 R-j/R-c) execd-test.yml smoke job gains a self-hosted matrix leg; the eBPF smoke step (scripts/execd-ebpf-smoke.sh --build, linux-only) runs on both ubuntu-latest (stock CI kernel) and self-hosted (the 5.10 empirical validation of the inline-filename exec-hook fallback). Host prerequisites (BTF, cgroup v2, tracefs) are prechecked by the script; container gets CAP_BPF/CAP_PERFMON/CAP_SYSLOG. detect-changes execd matcher now covers scripts/execd-ebpf-smoke.sh. --- .github/workflows/detect-changes.yml | 3 ++- .github/workflows/execd-test.yml | 15 ++++++++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.github/workflows/detect-changes.yml b/.github/workflows/detect-changes.yml index 159423efa..029816a60 100644 --- a/.github/workflows/detect-changes.yml +++ b/.github/workflows/detect-changes.yml @@ -89,7 +89,8 @@ jobs: execd: (path) => workflowChanged(path, "execd-test.yml") || path.startsWith("components/execd/") || - path.startsWith("components/internal/"), + path.startsWith("components/internal/") || + path === "scripts/execd-ebpf-smoke.sh", nodeagent: (path) => workflowChanged(path, "nodeagent-test.yml") || path.startsWith("components/nodeagent/") || diff --git a/.github/workflows/execd-test.yml b/.github/workflows/execd-test.yml index 37a3649bb..289f40942 100644 --- a/.github/workflows/execd-test.yml +++ b/.github/workflows/execd-test.yml @@ -84,7 +84,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest, windows-latest, self-hosted] runs-on: ${{ matrix.os }} defaults: run: @@ -143,6 +143,19 @@ jobs: chmod +x components/execd/tests/init_container.sh bash components/execd/tests/init_container.sh + - name: Execd eBPF bare-container smoke (OSEP-0018 R-j/R-c) + if: matrix.os != 'windows-latest' + shell: bash + timeout-minutes: 30 + run: | + # Runs the execd-ebpf variant in a bare container against THIS + # runner's kernel and asserts exec/connect/privilege events land in + # the JSONL audit file. GitHub-hosted ubuntu validates the stock CI + # kernel; the self-hosted leg is the 5.10 empirical validation + # (inline-filename exec-hook fallback). Host prerequisites (BTF, + # cgroup v2, tracefs) are prechecked by the script. + bash scripts/execd-ebpf-smoke.sh --build + - name: Show logs if: always() run: | From 2d31232f3646e729002f08b4c4b8f9371779ed06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Tue, 18 Aug 2026 20:10:26 +0800 Subject: [PATCH 06/33] ci(execd): drop OSEP reference from eBPF smoke step name --- .github/workflows/execd-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/execd-test.yml b/.github/workflows/execd-test.yml index 289f40942..c6aff7faa 100644 --- a/.github/workflows/execd-test.yml +++ b/.github/workflows/execd-test.yml @@ -143,7 +143,7 @@ jobs: chmod +x components/execd/tests/init_container.sh bash components/execd/tests/init_container.sh - - name: Execd eBPF bare-container smoke (OSEP-0018 R-j/R-c) + - name: Execd eBPF bare-container smoke if: matrix.os != 'windows-latest' shell: bash timeout-minutes: 30 From 94fe1bb563aa0d584816ff66dbba3ff4df8f531c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Tue, 18 Aug 2026 20:14:10 +0800 Subject: [PATCH 07/33] test(execd): drop inline OSEP-0018 references from comments Keep a single OSEP-0018 mention in each file header as a topic marker; remove the per-test / per-step R-* tag noise from comments, docstrings, skip reasons and workflow step names. --- .github/workflows/execd-test.yml | 8 +-- .../execd/configs/isolation.custom.toml | 4 +- scripts/execd-ebpf-smoke.sh | 2 +- scripts/python-execd-hardening-e2e.sh | 2 +- .../python/tests/test_execd_hardening_e2e.py | 32 ++++++----- tests/python/tests/test_execd_init_e2e.py | 56 +++++++++---------- .../test_execd_k8s_restart_recycle_e2e.py | 2 +- 7 files changed, 52 insertions(+), 54 deletions(-) diff --git a/.github/workflows/execd-test.yml b/.github/workflows/execd-test.yml index c6aff7faa..d8516a4ef 100644 --- a/.github/workflows/execd-test.yml +++ b/.github/workflows/execd-test.yml @@ -135,7 +135,7 @@ jobs: chmod +x components/execd/tests/smoke_bwrap.sh bash components/execd/tests/smoke_bwrap.sh - - name: Init-mode container regression (OSEP-0018) + - name: Init-mode container regression if: matrix.os == 'ubuntu-latest' shell: bash timeout-minutes: 30 @@ -253,9 +253,9 @@ jobs: - name: Run isolated session init-mode reaper integration test working-directory: components/execd run: | - # bwrap lifecycle under init-mode reaper dispatch (OSEP-0018 R-o): - # the pre-reap barrier must serialize process-group teardown with - # the reaper's observe/consume while execd owns wait4. + # bwrap lifecycle under init-mode reaper dispatch: the pre-reap + # barrier must serialize process-group teardown with the reaper's + # observe/consume while execd owns wait4. sudo -E env "PATH=$PATH" go test \ -tags="linux,bwrap" -v -count=1 -timeout=3m \ -run '^TestIsolatedSessionWithInitReaper$' \ diff --git a/components/execd/configs/isolation.custom.toml b/components/execd/configs/isolation.custom.toml index 786e684ab..697dc22c6 100644 --- a/components/execd/configs/isolation.custom.toml +++ b/components/execd/configs/isolation.custom.toml @@ -12,8 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -# Custom-policy hardening configuration for the execd-as-init e2e (OSEP-0018, -# R-q): a [seccomp] deny override (which REPLACES the built-in denylist) plus +# Custom-policy hardening configuration for the execd-as-init e2e: a +# [seccomp] deny override (which REPLACES the built-in denylist) plus # keep_capabilities. Proves both overrides reach the workload: # - the denied syscall family (chmod/fchmodat/fchmodat2; glibc coreutils # chmod uses fchmodat, busybox uses chmod) fails with EACCES in /command diff --git a/scripts/execd-ebpf-smoke.sh b/scripts/execd-ebpf-smoke.sh index 5ecaa601c..0a596333d 100755 --- a/scripts/execd-ebpf-smoke.sh +++ b/scripts/execd-ebpf-smoke.sh @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -# execd-ebpf bare-container smoke test (OSEP-0018 R-j, R-c). +# execd-ebpf bare-container smoke test. # # Runs the execd-ebpf observation variant in a bare container on THIS # machine's kernel — no server, no SDK — generates exec / connect / diff --git a/scripts/python-execd-hardening-e2e.sh b/scripts/python-execd-hardening-e2e.sh index 262355275..a604ef4e3 100644 --- a/scripts/python-execd-hardening-e2e.sh +++ b/scripts/python-execd-hardening-e2e.sh @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -# Runs the server-path hardening E2E (OSEP-0018, R-i) against a local +# Runs the server-path hardening E2E (execd-as-init, OSEP-0018) against a local # Docker-bridge server with runtime.execd_run_as_init = true. The hardened # isolation TOML (hardening + landlock) is injected into every sandbox via # a config-level bind mount + EXECD_ISOLATION_CONFIG, so the whole diff --git a/tests/python/tests/test_execd_hardening_e2e.py b/tests/python/tests/test_execd_hardening_e2e.py index dcca4bdb6..eb73c0e23 100644 --- a/tests/python/tests/test_execd_hardening_e2e.py +++ b/tests/python/tests/test_execd_hardening_e2e.py @@ -14,7 +14,7 @@ # limitations under the License. # """ -E2E tests for the server-path hardening floor (OSEP-0018 R-i). +E2E tests for the server-path hardening floor (execd-as-init, OSEP-0018). Requires a server running with ``runtime.execd_run_as_init = true``. Docker bridge (scripts/python-execd-hardening-e2e.sh) injects the hardened TOML via @@ -57,21 +57,24 @@ NOT trimmed (fail-open: workloads keep the container ceiling's bounding set) -A third class covers bwrap isolated sessions under init mode + the floor -(OSEP-0018 R-o): sessions run with the bwrap namespace + seccomp/NNP floor -and the credential env strip, and the hardening report stays intact around +A third class covers bwrap isolated sessions under init mode + the floor: +sessions run with the bwrap namespace + seccomp/NNP floor and the +credential env strip, and the hardening report stays intact around session create/run/delete. -A fourth class (R-q) runs a custom-policy TOML variant +A fourth class runs a custom-policy TOML variant (configs/isolation.custom.toml): a `[seccomp] deny` override (chmod family, which REPLACES the built-in denylist) + `keep_capabilities=["CAP_NET_RAW"]`. It asserts the denied syscall fails with EACCES in /command while the kept capability is raised in the ambient set and survives execve (CapEff=0x2000). -A fifth class (R-s) pins the EXECD_INIT <-> TOML drift state: the hardened +A fifth class pins the EXECD_INIT <-> TOML drift state: the hardened TOML with `runtime.execd_run_as_init = false` must report init_mode=none and degrade the enabled layers (with EXECD_INIT guidance), while execd-spawned /command still runs through the floor. + +A sixth class pins the default-off state: with no isolation TOML and no +EXECD_INIT, every layer reports disabled and the workload is unaffected. """ import logging @@ -180,7 +183,7 @@ def _hardening_report(sandbox: SandboxSync, refresh: bool = False) -> HardeningS ``refresh=True`` forces a live probe (used where the assertion must observe the endpoint AFTER a state change, e.g. session teardown). Consuming ``IsolatedCapabilities.hardening`` also pins the spec -> SDK - -> implementation alignment of the hardening object (OSEP-0018 R-r).""" + -> implementation alignment of the hardening object.""" if refresh or sandbox.id not in _HARDENING_REPORT: caps = sandbox.isolation.capabilities() if caps.hardening is None: @@ -200,7 +203,7 @@ def _status_fields(sandbox: SandboxSync, fields: list[str]) -> dict: Two constraints: (1) the read happens with the shell's own read loop, NOT with forked helpers — under Landlock the ruleset only grants the - launcher's own /proc/ (documented OSEP-0018 limitation), so a + launcher's own /proc/ (a documented limitation), so a forked grep/cat would get EACCES on its own /proc/self; (2) execd's /command SSE output strips newlines, so the values must come out as a single line (space-separated key=value pairs). @@ -269,7 +272,7 @@ def sandbox(self): # reflects exactly the launcher-applied floor. The status is read # with the shell's own loop, NOT `cat`: under Landlock a forked # descendant resolves its own /proc/, which the inherited - # ruleset does not grant (documented OSEP-0018 limitation), so a + # ruleset does not grant (a documented limitation), so a # forked helper would get EACCES. sbx = _create_sandbox( entrypoint=[ @@ -367,7 +370,7 @@ def test_workspace_bind_mount_writable_and_executable(self, sandbox) -> None: # k8s regression probe: confirm the PVC mount is really present # and executable. /proc must be read with the shell's own loop: # the Landlock /proc/self rule pins the launcher's pid, so forked - # helpers get EACCES on their own procfs (documented OSEP-0018 + # helpers get EACCES on their own procfs (a documented # limitation). diag = _run_command( sandbox, @@ -432,7 +435,7 @@ def test_floor_still_applies_without_setpcap(self, sandbox) -> None: class TestHardeningCustomPolicyE2E: - """Custom `[seccomp] deny` override + `keep_capabilities` (OSEP-0018 R-q). + """Custom `[seccomp] deny` override + `keep_capabilities`. The sandbox runs with configs/isolation.custom.toml: hardening enabled, a `[seccomp] deny` override (chmod/fchmodat/fchmodat2 — REPLACES the @@ -511,7 +514,7 @@ def test_other_syscalls_still_work(self, sandbox) -> None: "false (the k8s e2e server runs with it on); docker-only", ) class TestHardeningDriftE2E: - """EXECD_INIT <-> TOML drift pin (OSEP-0018 R-s). + """EXECD_INIT <-> TOML drift pin. `[hardening] enabled` with `runtime.execd_run_as_init = false`: the hardening endpoint must report init_mode=none and degrade the enabled @@ -568,7 +571,7 @@ def test_command_still_runs_through_floor(self, sandbox) -> None: "execd_run_as_init = true and the hardened TOML); docker-only", ) class TestHardeningDefaultOffE2E: - """Default-off pin (OSEP-0018 R-m). + """Default-off pin. With no isolation TOML and no EXECD_INIT, execd must be exactly the pre-OSEP binary: the capabilities endpoint reports init_mode=none with @@ -612,8 +615,7 @@ def test_workload_unaffected_without_hardening(self, sandbox) -> None: class TestIsolatedSessionHardeningE2E: - """bwrap isolated sessions under init mode + the hardening floor - (OSEP-0018 R-o). + """bwrap isolated sessions under init mode + the hardening floor. The sandbox runs with ``[hardening]``/``[landlock]`` enabled and execd as PID 1, so the whole server -> sandbox -> execd -> launcher -> bwrap chain diff --git a/tests/python/tests/test_execd_init_e2e.py b/tests/python/tests/test_execd_init_e2e.py index 74e87d2a8..6effda0c0 100644 --- a/tests/python/tests/test_execd_init_e2e.py +++ b/tests/python/tests/test_execd_init_e2e.py @@ -27,11 +27,10 @@ - application signals (HUP/USR1/USR2/WINCH) are forwarded to the entrypoint - the entrypoint's exit code propagates to the container/runtime (docker bridge; on Kubernetes the test skips — BatchSandbox does not surface the - container exit code or a terminal lifecycle state, OSEP-0018 R-l) -- an in-namespace ``kill 1`` (SIGTERM) still stops the sandbox — interim - behavior pin for OSEP-0018 §3 (R-a: trusted out-of-band stop channel); - on Kubernetes the pin asserts execd becomes unreachable instead of a - lifecycle state transition + container exit code or a terminal lifecycle state) +- an in-namespace ``kill 1`` (SIGTERM) still stops the sandbox — behavior + pin for the trusted out-of-band stop channel; on Kubernetes the pin + asserts execd becomes unreachable instead of a lifecycle state transition - the workload cannot read execd's environment (``/proc/1/environ`` denied by non-dumpable, independent of Landlock) - ``GET /v1/isolated/capabilities`` reports ``hardening.init_mode = pid1`` @@ -194,16 +193,15 @@ def test_application_signals_forwarded_to_entrypoint(self, signal_sandbox) -> No def test_entrypoint_exit_code_propagates(self) -> None: # When the user entrypoint exits, execd exits with the same status so - # Docker/kubelet observe it (OSEP-0018 §2 "entrypoint owns the - # container lifecycle"). The sleep gives the sandbox time to become - # ready before the entrypoint exits. + # Docker/kubelet observe it ("entrypoint owns the container + # lifecycle"). The sleep gives the sandbox time to become ready + # before the entrypoint exits. if is_kubernetes_runtime(): # BatchSandbox stays Pending after the pod completes and does not - # surface the container exit code (OSEP-0018 R-l): the lifecycle - # state-transition assertion below is docker-runtime-specific. + # surface the container exit code: the lifecycle state-transition + # assertion below is docker-runtime-specific. pytest.skip( - "BatchSandbox does not surface the container exit code " - "(OSEP-0018 R-l)" + "BatchSandbox does not surface the container exit code" ) sbx = _create_sandbox( entrypoint=["sh", "-c", "sleep 20; exit 42"], @@ -228,11 +226,11 @@ def test_entrypoint_exit_code_propagates(self) -> None: _destroy(sbx) def test_in_namespace_sigterm_kill1_stops_sandbox(self, kill1_sandbox) -> None: - # Behavior pin (OSEP-0018 §3, R-a): an in-namespace `kill 1` SIGTERM - # reaches execd's forwarding loop and stops the sandbox, matching the - # pre-OSEP bootstrap behavior. The trusted out-of-band stop channel - # was declined (2026-08-18): this SIGTERM contract is kept as-is, and - # `kill -9 1` stays inert via the PID 1 signal shield. + # Behavior pin: an in-namespace `kill 1` SIGTERM reaches execd's + # forwarding loop and stops the sandbox, matching the pre-OSEP + # bootstrap behavior. The trusted out-of-band stop channel was + # declined: this SIGTERM contract is kept as-is, and `kill -9 1` + # stays inert via the PID 1 signal shield. try: kill1_sandbox.commands.run( "kill 1; sleep 5; echo alive", opts=RunCommandOpts() @@ -254,8 +252,8 @@ def test_in_namespace_sigterm_kill1_stops_sandbox(self, kill1_sandbox) -> None: def _assert_execd_unreachable(self, kill1_sandbox) -> None: """k8s leg of the kill-1 pin: the pod exits after ``kill 1`` but BatchSandbox stays Pending (it never transitions to a terminal - lifecycle state — OSEP-0018 R-l), so assert the observable effect - instead: execd is gone and the sandbox is unusable. + lifecycle state), so assert the observable effect instead: execd is + gone and the sandbox is unusable. """ deadline = time.monotonic() + 45 while time.monotonic() < deadline: @@ -289,11 +287,10 @@ def test_fork_heavy_keeps_process_table_bounded(self, sandbox) -> None: assert total <= baseline + 10, f"process table grew: {baseline} -> {total}" def test_sustained_fork_heavy_mix_keeps_process_table_bounded(self, sandbox) -> None: - # OSEP-0018 §Test-Plan shape: a long-running mix of /command churn - # interleaved with background sleepers, sustained over ~30s, must - # keep the process table bounded and zombie-free throughout. This - # closes the R-m gap (the short 20x5 loop above is the minimal - # form; this is the sustained variant). + # Long-running mix of /command churn interleaved with background + # sleepers, sustained over ~30s, must keep the process table bounded + # and zombie-free throughout. This closes the gap left by the short + # 20x5 loop above (the minimal form; this is the sustained variant). baseline = _process_count(sandbox) deadline = time.monotonic() + 30 round_n = 0 @@ -335,14 +332,13 @@ def test_hardening_reports_pid1(self, sandbox) -> None: @pytest.mark.skipif( is_kubernetes_runtime(), reason="runtime-initiated container stop (docker stop) is a docker-bridge " - "scenario (OSEP-0018 R-u); the k8s path does not surface the container " - "exit code", + "scenario; the k8s path does not surface the container exit code", ) def test_runtime_stop_forwards_sigterm_and_propagates_exit_code(self) -> None: - # OSEP-0018 R-u: when the RUNTIME stops the container (docker stop), - # execd must forward SIGTERM to the entrypoint and the sandbox must - # end with the entrypoint's status. The entrypoint traps TERM, writes - # a marker, and exits 7 — the sandbox must report "exited with code 7" + # When the RUNTIME stops the container (docker stop), execd must + # forward SIGTERM to the entrypoint and the sandbox must end with + # the entrypoint's status. The entrypoint traps TERM, writes a + # marker, and exits 7 — the sandbox must report "exited with code 7" # and the marker must be present, proving the workload saw the signal. # Fixed path (not $OPENSANDBOX_ID): docker cp runs on the host where # the variable is not expanded — a literal $... path would not match diff --git a/tests/python/tests/test_execd_k8s_restart_recycle_e2e.py b/tests/python/tests/test_execd_k8s_restart_recycle_e2e.py index 8b2ec4bb7..c849903a9 100644 --- a/tests/python/tests/test_execd_k8s_restart_recycle_e2e.py +++ b/tests/python/tests/test_execd_k8s_restart_recycle_e2e.py @@ -14,7 +14,7 @@ # limitations under the License. # """ -K8s Restart-recycle e2e against an init-mode execd pod (OSEP-0018 R-l(b)). +K8s Restart-recycle e2e against an init-mode execd pod (OSEP-0018). Verifies the ``restart_default.go`` "contract compatible" claim end to end: a Pool whose pod template runs execd as PID 1 (``bootstrap.sh`` + From 94018117d3bf8a265b5daff7a95ef3f275379199 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Tue, 18 Aug 2026 20:36:53 +0800 Subject: [PATCH 08/33] =?UTF-8?q?fix(ebpf):=20load=20each=20audit=20hook?= =?UTF-8?q?=20independently=20=E2=80=94=20fail-open=20per=20layer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On 5.10 kernels the on_commit_creds kprobe fails CO-RE loading ('bad CO-RE relocation: invalid func unknown#...'), and LoadAndAssign atomically loaded all three programs, so exec/connect hooks died with it and the observer reported degraded with zero events. Load each program individually (shared events ringbuf via MapReplacements), skip hooks the kernel rejects, and keep auditing with the rest; the capabilities endpoint stays active and lists the missing hooks in the message. Smoke assertions unchanged (exec+connect events still mandatory). --- components/execd/pkg/ebpf/audit.go | 202 +++++++++++++++++++++-------- scripts/execd-ebpf-smoke.sh | 19 ++- 2 files changed, 158 insertions(+), 63 deletions(-) diff --git a/components/execd/pkg/ebpf/audit.go b/components/execd/pkg/ebpf/audit.go index a6338f586..12fe373b6 100644 --- a/components/execd/pkg/ebpf/audit.go +++ b/components/execd/pkg/ebpf/audit.go @@ -92,7 +92,8 @@ type Observer struct { sandboxID string kinds map[string]bool reader *ringbuf.Reader - objs *auditObjects + events *ebpf.Map + progs []*ebpf.Program links []link.Link closed chan struct{} closeOnce sync.Once @@ -127,31 +128,32 @@ func Init(cfg *isolation.EbpfConfig, sandboxID string) (state, message string) { return "degraded", fmt.Sprintf("eBPF observation cannot scope to the sandbox cgroup: %v", err) } - observer, err := newObserver(cfg, sandboxID, cgroupID) + observer, missing, err := newObserver(cfg, sandboxID, cgroupID) if err != nil { return "degraded", fmt.Sprintf("eBPF observation failed to start: %v", err) } observer.start() - return "active", fmt.Sprintf("eBPF observation active (cgroup %d, audit file %s)", cgroupID, observer.logger.Filename) + msg := fmt.Sprintf("eBPF observation active (cgroup %d, audit file %s)", cgroupID, observer.logger.Filename) + if len(missing) > 0 { + // Fail-open per layer: hooks the kernel could not load/attach are + // skipped, the remaining ones keep auditing. + msg += fmt.Sprintf("; hooks not active: %v", missing) + } + return "active", msg } -func newObserver(cfg *isolation.EbpfConfig, sandboxID string, cgroupID uint64) (*Observer, error) { +func newObserver(cfg *isolation.EbpfConfig, sandboxID string, cgroupID uint64) (*Observer, []string, error) { _ = rlimit.RemoveMemlock() spec, err := loadAudit() if err != nil { - return nil, fmt.Errorf("load audit programs: %w", err) + return nil, nil, fmt.Errorf("load audit programs: %w", err) } // Pin the cgroup filter; events outside the sandbox are dropped. if err := spec.RewriteConstants(map[string]interface{}{ "target_cgroup": cgroupID, }); err != nil { - return nil, fmt.Errorf("set audit cgroup filter: %w", err) - } - - var objs auditObjects - if err := spec.LoadAndAssign(&objs, nil); err != nil { - return nil, fmt.Errorf("assign audit programs: %w", err) + return nil, nil, fmt.Errorf("set audit cgroup filter: %w", err) } auditFile := cfg.AuditFile @@ -159,8 +161,7 @@ func newObserver(cfg *isolation.EbpfConfig, sandboxID string, cgroupID uint64) ( auditFile = defaultAuditFile } if err := os.MkdirAll(dirOf(auditFile), 0o755); err != nil { - objs.Close() - return nil, fmt.Errorf("create audit dir: %w", err) + return nil, nil, fmt.Errorf("create audit dir: %w", err) } logger := &lumberjack.Logger{ Filename: auditFile, @@ -169,37 +170,64 @@ func newObserver(cfg *isolation.EbpfConfig, sandboxID string, cgroupID uint64) ( MaxAge: 7, // days } - var links []link.Link - attached := map[string]bool{} - attach := func(kind string, prog *ebpf.Program, attachFn func() (link.Link, error)) { - if prog == nil { - return - } - l, err := attachFn() - if err != nil { - log.Warn("ebpf: attach %s: %v", kind, err) - return - } - links = append(links, l) - attached[kind] = true - } - attach("exec", objs.OnExec, func() (link.Link, error) { - return link.Tracepoint("sched", "sched_process_exec", objs.OnExec, nil) - }) - attach("connect", objs.OnConnect, func() (link.Link, error) { - return link.Tracepoint("sock", "inet_sock_set_state", objs.OnConnect, nil) - }) - attach("privilege", objs.OnCommitCreds, func() (link.Link, error) { - return link.Kprobe("commit_creds", objs.OnCommitCreds, nil) - }) - - reader, err := ringbuf.NewReader(objs.Events) + // Load the shared ringbuf map once; every hook writes into it. + eventsMap, err := ebpf.NewMap(spec.Maps["events"]) if err != nil { - for _, l := range links { - _ = l.Close() + return nil, nil, fmt.Errorf("create events ringbuf: %w", err) + } + + // Each hook is loaded and attached independently (fail-open per layer, + // OSEP-0018 §6): a kernel that cannot load one program (e.g. a kprobe + // CO-RE relocation on an old kernel) only degrades that hook; the rest + // keep auditing. + type hookDef struct { + kind string + prog string + load func(*ebpf.CollectionSpec) (*ebpf.Program, error) + attach func(*ebpf.Program) (link.Link, error) + } + withSharedEvents := func(target any) func(*ebpf.CollectionSpec) (*ebpf.Program, error) { + return func(sub *ebpf.CollectionSpec) (*ebpf.Program, error) { + if err := sub.LoadAndAssign(target, &ebpf.CollectionOptions{ + MapReplacements: map[string]*ebpf.Map{"events": eventsMap}, + }); err != nil { + return nil, err + } + prog := programFromTarget(target) + return prog, nil } - objs.Close() - return nil, fmt.Errorf("ringbuf reader: %w", err) + } + hooks := []hookDef{ + { + kind: "exec", + prog: "on_exec", + load: withSharedEvents(&struct { + OnExec *ebpf.Program `ebpf:"on_exec"` + }{}), + attach: func(p *ebpf.Program) (link.Link, error) { + return link.Tracepoint("sched", "sched_process_exec", p, nil) + }, + }, + { + kind: "connect", + prog: "on_connect", + load: withSharedEvents(&struct { + OnConnect *ebpf.Program `ebpf:"on_connect"` + }{}), + attach: func(p *ebpf.Program) (link.Link, error) { + return link.Tracepoint("sock", "inet_sock_set_state", p, nil) + }, + }, + { + kind: "privilege", + prog: "on_commit_creds", + load: withSharedEvents(&struct { + OnCommitCreds *ebpf.Program `ebpf:"on_commit_creds"` + }{}), + attach: func(p *ebpf.Program) (link.Link, error) { + return link.Kprobe("commit_creds", p, nil) + }, + }, } kinds := map[string]bool{} @@ -211,18 +239,55 @@ func newObserver(cfg *isolation.EbpfConfig, sandboxID string, cgroupID uint64) ( kinds[kind] = true } } - for kind := range kinds { - if !attached[kind] { - // Release every already-attached hook and the ringbuf reader so - // partially attached programs do not stay live after the - // degraded report. - for _, l := range links { - _ = l.Close() + + var links []link.Link + var progs []*ebpf.Program + var missing []string + for _, h := range hooks { + if !kinds[h.kind] { + continue + } + sub := spec.Copy() + for name := range sub.Programs { + if name != h.prog { + delete(sub.Programs, name) } - reader.Close() - objs.Close() - return nil, fmt.Errorf("requested observer hook %q could not be attached", kind) } + prog, err := h.load(sub) + if err != nil { + log.Warn("ebpf: load %s hook: %v", h.kind, err) + missing = append(missing, h.kind) + continue + } + progs = append(progs, prog) + l, err := h.attach(prog) + if err != nil { + log.Warn("ebpf: attach %s: %v", h.kind, err) + _ = prog.Close() + missing = append(missing, h.kind) + continue + } + links = append(links, l) + } + + if len(links) == 0 { + eventsMap.Close() + for _, p := range progs { + _ = p.Close() + } + return nil, nil, fmt.Errorf("no observer hooks could be loaded/attached (missing: %v)", missing) + } + + reader, err := ringbuf.NewReader(eventsMap) + if err != nil { + for _, l := range links { + _ = l.Close() + } + for _, p := range progs { + _ = p.Close() + } + eventsMap.Close() + return nil, nil, fmt.Errorf("ringbuf reader: %w", err) } return &Observer{ @@ -230,10 +295,32 @@ func newObserver(cfg *isolation.EbpfConfig, sandboxID string, cgroupID uint64) ( sandboxID: sandboxID, kinds: kinds, reader: reader, - objs: &objs, + events: eventsMap, + progs: progs, links: links, closed: make(chan struct{}), - }, nil + }, missing, nil +} + +// programFromTarget extracts the loaded *ebpf.Program from a single-field +// load target (the anonymous structs in newObserver). +func programFromTarget(target any) *ebpf.Program { + switch v := target.(type) { + case *struct { + OnExec *ebpf.Program `ebpf:"on_exec"` + }: + return v.OnExec + case *struct { + OnConnect *ebpf.Program `ebpf:"on_connect"` + }: + return v.OnConnect + case *struct { + OnCommitCreds *ebpf.Program `ebpf:"on_commit_creds"` + }: + return v.OnCommitCreds + default: + panic(fmt.Sprintf("unexpected load target %T", target)) + } } func (o *Observer) start() { @@ -261,8 +348,11 @@ func (o *Observer) Close() { for _, l := range o.links { _ = l.Close() } - if o.objs != nil { - o.objs.Close() + for _, p := range o.progs { + _ = p.Close() + } + if o.events != nil { + _ = o.events.Close() } _ = o.logger.Close() }) diff --git a/scripts/execd-ebpf-smoke.sh b/scripts/execd-ebpf-smoke.sh index 0a596333d..1042a3d72 100755 --- a/scripts/execd-ebpf-smoke.sh +++ b/scripts/execd-ebpf-smoke.sh @@ -126,11 +126,15 @@ import json, sys caps = json.load(open(sys.argv[1])) ebpf = (caps.get("hardening") or {}).get("ebpf") or {} state = ebpf.get("state", "missing") +message = ebpf.get("message", "") print(f"ebpf state: {state}") -if ebpf.get("message"): - print(f"ebpf message: {ebpf['message']}") -# Fail-open means "degraded/unsupported" still boots execd, but the audit -# hooks did NOT attach — nothing will be written. The smoke must see active. +if message: + print(f"ebpf message: {message}") +# Fail-open: "degraded/unsupported" still boots execd, but no hooks attached +# — nothing will be written. The smoke must see active. A per-hook degrade +# (e.g. the commit_creds kprobe CO-RE load failing on a 5.10 kernel) keeps +# the state active and reports the missing hooks in the message; the audit +# assertions below then still require exec+connect events. if state != "active": sys.exit(f"FAIL: ebpf state = {state}, want active (hooks did not attach)") PY @@ -165,9 +169,10 @@ for want in ("exec", "connect"): print(f"FAIL: no {want} events", file=sys.stderr) ok = False if kinds["privilege"] == 0: - # The hook attach is already validated by state=active above; the event - # itself needs a setuid transition, which is harder to provoke reliably - # in a bare busybox container — warn, do not fail. + # The hook attach is validated by state=active (or the per-hook degrade + # reported in the message); the event itself needs a setuid transition, + # which is harder to provoke reliably in a bare busybox container — + # warn, do not fail. print("WARN: no privilege events (setuid transition not provoked)") sys.exit(0 if ok else 1) PY From b73f23189e92c0db1ab19ec2fb81e732cc57fb69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Tue, 18 Aug 2026 20:48:30 +0800 Subject: [PATCH 09/33] fix(e2e): smoke audit file must be readable by the host runner The container (root) creates the JSONL audit file with root-only perms, so the non-root host runner got Permission denied when asserting on it. Pre- create the file with 0666 (lumberjack appends in place). Also exec an external /bin/sleep so sched_process_exec actually fires (shell builtins don't exec). --- scripts/execd-ebpf-smoke.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/execd-ebpf-smoke.sh b/scripts/execd-ebpf-smoke.sh index 1042a3d72..e09c00ce2 100755 --- a/scripts/execd-ebpf-smoke.sh +++ b/scripts/execd-ebpf-smoke.sh @@ -86,6 +86,11 @@ fi # Minimal isolation TOML: only the eBPF section, audit file in a host dir. mkdir -p "${WORKDIR}/audit" +# Pre-create the audit file writable by the container (root) and readable by +# the host runner (non-root): lumberjack appends in place, so the file stays +# world-readable and the runner can assert on it after the container stops. +: > "${WORKDIR}/audit/ebpf-audit.jsonl" +chmod 0666 "${WORKDIR}/audit/ebpf-audit.jsonl" cat > "${WORKDIR}/ebpf.toml" </dev/null' >/dev/null +docker exec "${CTR_NAME}" sh -c '/bin/sleep 0.05; echo exec-event-ok >/dev/null' >/dev/null docker exec "${CTR_NAME}" wget -qO- http://example.com/ >/dev/null 2>&1 || true # Privilege event: busybox su setuids -> commit_creds fires. docker exec "${CTR_NAME}" su nobody -s /bin/sh -c 'true' >/dev/null 2>&1 || true From f2890dc74ca875291cdf0ba3f21897357d607a63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Tue, 18 Aug 2026 21:28:49 +0800 Subject: [PATCH 10/33] fix(e2e): smoke dumps container logs on partial hook degrade MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When the capabilities message reports 'hooks not active' (e.g. the commit_creds kprobe failing on a given kernel), dump the container's execd log so the exact load/attach error is captured in CI — previously the smoke only printed container logs on hard failure, so the ubuntu-latest leg's privilege-hook error was invisible (issue #1563). --- scripts/execd-ebpf-smoke.sh | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/scripts/execd-ebpf-smoke.sh b/scripts/execd-ebpf-smoke.sh index e09c00ce2..044cdff6b 100755 --- a/scripts/execd-ebpf-smoke.sh +++ b/scripts/execd-ebpf-smoke.sh @@ -126,7 +126,7 @@ done } echo "== hardening/ebpf report ==" -python3 - "${WORKDIR}/caps.json" <<'PY' || exit 1 +python3 - "${WORKDIR}/caps.json" <<'PY' import json, sys caps = json.load(open(sys.argv[1])) ebpf = (caps.get("hardening") or {}).get("ebpf") or {} @@ -137,12 +137,25 @@ if message: print(f"ebpf message: {message}") # Fail-open: "degraded/unsupported" still boots execd, but no hooks attached # — nothing will be written. The smoke must see active. A per-hook degrade -# (e.g. the commit_creds kprobe CO-RE load failing on a 5.10 kernel) keeps -# the state active and reports the missing hooks in the message; the audit -# assertions below then still require exec+connect events. +# (e.g. the commit_creds kprobe failing on a given kernel) keeps the state +# active and reports the missing hooks in the message; the audit assertions +# below then still require exec+connect events. if state != "active": - sys.exit(f"FAIL: ebpf state = {state}, want active (hooks did not attach)") + print(f"FAIL: ebpf state = {state}, want active (hooks did not attach)", file=sys.stderr) + sys.exit(1) +if "hooks not active" in message: + # Partial hook degrade: keep the smoke running (exec+connect must still + # flow), but flag the container-log dump below. + sys.exit(2) PY +report_rc=$? +if [ "${report_rc}" -eq 1 ]; then + exit 1 +fi +if [ "${report_rc}" -eq 2 ]; then + echo "NOTE: hooks degraded — dumping container logs for the load/attach error" + docker logs "${CTR_NAME}" 2>&1 | grep -E "ebpf|hardening" | head -20 || true +fi echo "== generating events inside the sandbox cgroup ==" docker exec "${CTR_NAME}" sh -c '/bin/sleep 0.05; echo exec-event-ok >/dev/null' >/dev/null From ec6829e9b4be694d6894eb3713588070af733b59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Tue, 18 Aug 2026 21:36:03 +0800 Subject: [PATCH 11/33] fix(e2e): capture report probe exit code under set -euo pipefail The python3 report probe runs under set -e, so a non-zero exit (2 for a partial hook degrade) aborted the smoke before the container-log dump and the audit assertions. Wrap it in set +e/set -e so the exit code is captured and the smoke continues to assert exec+connect events. --- scripts/execd-ebpf-smoke.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/execd-ebpf-smoke.sh b/scripts/execd-ebpf-smoke.sh index 044cdff6b..4bb44f4f2 100755 --- a/scripts/execd-ebpf-smoke.sh +++ b/scripts/execd-ebpf-smoke.sh @@ -126,6 +126,7 @@ done } echo "== hardening/ebpf report ==" +set +e python3 - "${WORKDIR}/caps.json" <<'PY' import json, sys caps = json.load(open(sys.argv[1])) @@ -149,6 +150,7 @@ if "hooks not active" in message: sys.exit(2) PY report_rc=$? +set -e if [ "${report_rc}" -eq 1 ]; then exit 1 fi From 4af1bd17a2d874bef80ded38825649e3d7bc4521 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 09:33:54 +0800 Subject: [PATCH 12/33] fix(e2e): smoke dumps full container log on hook degrade The cilium verifier error truncates at 4 omitted lines, hiding the exact CO-RE relocation that poisons on_commit_creds; dump the full container log so the fix can target the real field. --- scripts/execd-ebpf-smoke.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/execd-ebpf-smoke.sh b/scripts/execd-ebpf-smoke.sh index 4bb44f4f2..5529f3a9b 100755 --- a/scripts/execd-ebpf-smoke.sh +++ b/scripts/execd-ebpf-smoke.sh @@ -156,7 +156,7 @@ if [ "${report_rc}" -eq 1 ]; then fi if [ "${report_rc}" -eq 2 ]; then echo "NOTE: hooks degraded — dumping container logs for the load/attach error" - docker logs "${CTR_NAME}" 2>&1 | grep -E "ebpf|hardening" | head -20 || true + docker logs "${CTR_NAME}" 2>&1 | tail -60 || true fi echo "== generating events inside the sandbox cgroup ==" From 33092aac69f0d7069ef80932a875ea1afd676864 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 10:27:03 +0800 Subject: [PATCH 13/33] ci(ebpf): add per-arch bytecode regeneration + freshness check Root cause of the privilege-hook CO-RE load failure on x86_64 (issue #1563): the committed audit_bpfel.o embeds pt_regs relocations from an arm64 vmlinux.h (BPF_KPROBE expands to user_pt_regs[0:0:0] = regs[0], which x86_64 targets do not have), so the kernel poisons the relocation. Add 'make generate-ebpf' (dump the BUILD HOST's own vmlinux.h + bpf2go -target amd64 -target arm64) and a CI freshness check that regenerates on the ubuntu-latest runner and fails if the committed bytecode drifts. The correct x86_64 bytecode will be produced by this CI step and committed separately. --- .github/workflows/execd-test.yml | 11 +++++++++++ components/execd/Makefile | 34 ++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) diff --git a/.github/workflows/execd-test.yml b/.github/workflows/execd-test.yml index d8516a4ef..c9230ae6f 100644 --- a/.github/workflows/execd-test.yml +++ b/.github/workflows/execd-test.yml @@ -60,6 +60,17 @@ jobs: run: | CGO_ENABLED=1 go test -tags ebpf -count=1 ./pkg/ebpf/ + - name: Check execd-ebpf bytecode is up to date + if: runner.os == 'Linux' + working-directory: components/execd + run: | + sudo apt-get update -qq && sudo apt-get install -y -qq linux-tools-generic >/dev/null + make generate-ebpf + git diff --exit-code --stat -- pkg/ebpf/ || { + echo "pkg/ebpf/audit_bpf*.o are out of date — run 'make generate-ebpf' on the matching architecture and commit the regenerated bytecode" >&2 + exit 1 + } + - name: Calculate coverage and generate summary working-directory: components/execd id: coverage diff --git a/components/execd/Makefile b/components/execd/Makefile index ebbcf3dac..70bb998bc 100644 --- a/components/execd/Makefile +++ b/components/execd/Makefile @@ -158,6 +158,40 @@ build-ebpf: ## Build the execd-ebpf observation variant (CGO + cilium/ebpf). CGO_ENABLED=1 go build -tags ebpf $(GO_BUILD_FLAGS) -ldflags "$(GO_LDFLAGS)" -o bin/execd-ebpf main.go @echo "built bin/execd-ebpf" +# Regenerate the CO-RE audit bytecode (pkg/ebpf/audit_bpf*.o) on a Linux host. +# +# The BPF source (prog/audit.bpf.c) is compiled per target architecture with +# bpf2go; each architecture's vmlinux.h is dumped from the BUILD HOST's own +# /sys/kernel/btf/vmlinux, so the bytecode's pt_regs layout matches the +# architecture it runs on (a vmlinux.h from the wrong arch — e.g. an arm64 +# dump shipped to x86_64 hosts — poisons the BPF_KPROBE parameter relocations, +# issue #1563). Run on an x86_64 and an arm64 Linux host and commit the +# regenerated .o files: +# +# make generate-ebpf ARCHS="amd64 arm64" +# +# Requires clang with the bpf target (linux-tools/clang on Ubuntu) and +# bpftool (linux-tools-generic). The generated Go bindings embed the .o, so +# the .c and vmlinux.h must be in sync with what is committed. +.PHONY: generate-ebpf +generate-ebpf: ## Regenerate pkg/ebpf/audit_bpf*.o from prog/audit.bpf.c (Linux + clang + bpftool). + @if [ "$$(uname -s 2>/dev/null || echo non-linux)" != "Linux" ]; then \ + echo "generate-ebpf requires Linux (dump /sys/kernel/btf/vmlinux)" >&2; \ + exit 1; \ + fi + @command -v clang >/dev/null || { echo "clang not found" >&2; exit 1; } + @command -v bpftool >/dev/null || { echo "bpftool not found (install linux-tools-generic)" >&2; exit 1; } + @mkdir -p pkg/ebpf/prog + bpftool btf dump file /sys/kernel/btf/vmlinux format c > pkg/ebpf/prog/vmlinux.h + @cd pkg/ebpf && go run github.com/cilium/ebpf/cmd/bpf2go@v0.16.0 \ + -cc clang -no-strip \ + -cflags "-Iprog -I$(shell go env GOMODCACHE)/github.com/cilium/ebpf@v0.16.0/btf/testdata" \ + -target amd64 -target arm64 \ + -go-package ebpf -output-dir . \ + audit prog/audit.bpf.c + @rm -f pkg/ebpf/prog/vmlinux.h + @echo "regenerated pkg/ebpf/audit_bpf*.o; commit them together with any audit.bpf.c changes" + .PHONY: test-integration test-integration: ## Run integration tests (Linux + bwrap required). go test -v -tags="linux,bwrap" -run Integration ./pkg/runtime/bwrap_test/ From 49f2cae964599c1f21ca2bbfc7f6d62f77970402 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 10:33:21 +0800 Subject: [PATCH 14/33] ci(ebpf): fetch per-arch vmlinux.h via CI artifact for bytecode regeneration The Dockerfile ebpf-builder stage cross-compiles in a container without access to the host BTF, so the per-arch vmlinux.h must be committed (one per TARGETARCH) rather than dumped at image build time. This step dumps the runner's own vmlinux.h (x86_64 on ubuntu-latest) as an artifact so it can be committed, and keeps the bytecode freshness check. --- .github/workflows/execd-test.yml | 10 +++++++++- components/execd/Makefile | 4 +++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/execd-test.yml b/.github/workflows/execd-test.yml index c9230ae6f..bae5b3a2a 100644 --- a/.github/workflows/execd-test.yml +++ b/.github/workflows/execd-test.yml @@ -65,12 +65,20 @@ jobs: working-directory: components/execd run: | sudo apt-get update -qq && sudo apt-get install -y -qq linux-tools-generic >/dev/null - make generate-ebpf + make generate-ebpf VMLINUX_KEEP=/tmp/ebpf-dump git diff --exit-code --stat -- pkg/ebpf/ || { echo "pkg/ebpf/audit_bpf*.o are out of date — run 'make generate-ebpf' on the matching architecture and commit the regenerated bytecode" >&2 exit 1 } + - name: Upload per-arch vmlinux.h (for bytecode regeneration) + if: runner.os == 'Linux' && always() + uses: actions/upload-artifact@v7 + with: + name: vmlinux-${{ runner.arch }} + path: /tmp/ebpf-dump/vmlinux.h + if-no-files-found: ignore + - name: Calculate coverage and generate summary working-directory: components/execd id: coverage diff --git a/components/execd/Makefile b/components/execd/Makefile index 70bb998bc..05686a0b4 100644 --- a/components/execd/Makefile +++ b/components/execd/Makefile @@ -149,7 +149,7 @@ build: vet build-session-gate build-launcher ## Build execd and the Linux native go build $(GO_BUILD_FLAGS) -ldflags "$(GO_LDFLAGS)" -o bin/execd main.go .PHONY: build-ebpf -build-ebpf: ## Build the execd-ebpf observation variant (CGO + cilium/ebpf). +build-ebpf: generate-ebpf ## Build the execd-ebpf observation variant (CGO + cilium/ebpf). @if [ "$$(uname -s 2>/dev/null || echo non-linux)" != "Linux" ]; then \ echo "execd-ebpf requires Linux (BPF attachable host)" >&2; \ exit 1; \ @@ -182,7 +182,9 @@ generate-ebpf: ## Regenerate pkg/ebpf/audit_bpf*.o from prog/audit.bpf.c (Linux @command -v clang >/dev/null || { echo "clang not found" >&2; exit 1; } @command -v bpftool >/dev/null || { echo "bpftool not found (install linux-tools-generic)" >&2; exit 1; } @mkdir -p pkg/ebpf/prog + @if [ -n "$(VMLINUX_KEEP)" ]; then mkdir -p "$(VMLINUX_KEEP)"; fi bpftool btf dump file /sys/kernel/btf/vmlinux format c > pkg/ebpf/prog/vmlinux.h + @if [ -n "$(VMLINUX_KEEP)" ]; then cp pkg/ebpf/prog/vmlinux.h "$(VMLINUX_KEEP)/vmlinux.h"; fi @cd pkg/ebpf && go run github.com/cilium/ebpf/cmd/bpf2go@v0.16.0 \ -cc clang -no-strip \ -cflags "-Iprog -I$(shell go env GOMODCACHE)/github.com/cilium/ebpf@v0.16.0/btf/testdata" \ From bb65082a6553a171cfcfb9461b63b35b854b5487 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 10:44:39 +0800 Subject: [PATCH 15/33] ci(ebpf): use the bpftool package instead of linux-tools-generic The ubuntu runner's kernel (6.17) is newer than linux-tools-generic's build, so the meta-package fails to provide bpftool. The standalone 'bpftool' package tracks the runner kernel. --- .github/workflows/execd-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/execd-test.yml b/.github/workflows/execd-test.yml index bae5b3a2a..256d32e2c 100644 --- a/.github/workflows/execd-test.yml +++ b/.github/workflows/execd-test.yml @@ -64,7 +64,7 @@ jobs: if: runner.os == 'Linux' working-directory: components/execd run: | - sudo apt-get update -qq && sudo apt-get install -y -qq linux-tools-generic >/dev/null + sudo apt-get update -qq && sudo apt-get install -y -qq bpftool >/dev/null make generate-ebpf VMLINUX_KEEP=/tmp/ebpf-dump git diff --exit-code --stat -- pkg/ebpf/ || { echo "pkg/ebpf/audit_bpf*.o are out of date — run 'make generate-ebpf' on the matching architecture and commit the regenerated bytecode" >&2 From 3a6711162b36e0dc994b0e13a666fb8639ce9895 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 10:54:00 +0800 Subject: [PATCH 16/33] ci(ebpf): simplify to one-shot vmlinux.h dump for committing Drop the in-CI bytecode regeneration (the ebpf-builder Dockerfile stage will regenerate per TARGETARCH from committed prog/vmlinux-.h); this step only fetches the runner's x86_64 vmlinux.h as an artifact so it can be committed once. --- .github/workflows/execd-test.yml | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/.github/workflows/execd-test.yml b/.github/workflows/execd-test.yml index 256d32e2c..33dad3ba2 100644 --- a/.github/workflows/execd-test.yml +++ b/.github/workflows/execd-test.yml @@ -60,16 +60,30 @@ jobs: run: | CGO_ENABLED=1 go test -tags ebpf -count=1 ./pkg/ebpf/ - - name: Check execd-ebpf bytecode is up to date + - name: Dump runner vmlinux.h (per-arch source for ebpf bytecode) if: runner.os == 'Linux' - working-directory: components/execd run: | - sudo apt-get update -qq && sudo apt-get install -y -qq bpftool >/dev/null - make generate-ebpf VMLINUX_KEEP=/tmp/ebpf-dump - git diff --exit-code --stat -- pkg/ebpf/ || { - echo "pkg/ebpf/audit_bpf*.o are out of date — run 'make generate-ebpf' on the matching architecture and commit the regenerated bytecode" >&2 - exit 1 - } + # One-shot fetch of the runner's kernel BTF as a C header. The + # Dockerfile ebpf-builder stage regenerates the CO-RE bytecode per + # TARGETARCH from committed prog/vmlinux-.h; this step is + # only used to obtain a fresh copy for committing. + docker run --rm --privileged \ + -v /sys/kernel/btf:/sys/kernel/btf:ro \ + -v /tmp/ebpf-dump:/out ubuntu:24.04 bash -c ' + apt-get update -qq >/dev/null 2>&1 && apt-get install -y -qq linux-tools-generic >/dev/null 2>&1 + BPFT=$(ls /usr/lib/linux-tools/*/bpftool 2>/dev/null | head -1) + [ -n "$BPFT" ] || { echo "no bpftool in container" >&2; exit 1; } + $BPFT btf dump file /sys/kernel/btf/vmlinux format c > /out/vmlinux.h + ' + test -s /tmp/ebpf-dump/vmlinux.h + + - name: Upload per-arch vmlinux.h (for bytecode regeneration) + if: runner.os == 'Linux' && always() + uses: actions/upload-artifact@v7 + with: + name: vmlinux-${{ runner.arch }} + path: /tmp/ebpf-dump/vmlinux.h + if-no-files-found: ignore - name: Upload per-arch vmlinux.h (for bytecode regeneration) if: runner.os == 'Linux' && always() From 5de41f495ae72977e72b8a991158fc3504702225 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 10:55:43 +0800 Subject: [PATCH 17/33] feat(ebpf): generate CO-RE bytecode per TARGETARCH in the build flow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Root cause (issue #1563): the committed audit_bpfel.o embedded pt_regs relocations from an arm64 vmlinux.h, so BPF_KPROBE's user_pt_regs[0:0:0] (=regs[0]) poisoned on x86_64. The bytecode must be compiled per architecture. - Dockerfile ebpf-builder: ARG TARGETARCH selects prog/vmlinux-.h, bpf2go regenerates the bytecode for that arch, then go build -tags ebpf. This works for the buildx --platform linux/amd64,linux/arm64 publish flow and for local docker builds — no host kernel BTF needed. - Makefile: build-ebpf -> generate-ebpf ARCH=$(go env GOARCH) using the committed per-arch vmlinux.h; local builds regenerate their own arch. - prog/vmlinux-arm64.h: committed (dumped from an arm64 host). - prog/vmlinux-x86_64.h: fetched via a temporary CI step, to be committed once the artifact is downloaded. - Removed the CI dump/freshness steps (bytecode is a build artifact now). --- .github/workflows/execd-test.yml | 18 +- components/execd/Dockerfile | 23 + components/execd/Makefile | 49 +- .../execd/pkg/ebpf/prog/vmlinux-arm64.h | 152124 +++++++++++++++ 4 files changed, 152176 insertions(+), 38 deletions(-) create mode 100644 components/execd/pkg/ebpf/prog/vmlinux-arm64.h diff --git a/.github/workflows/execd-test.yml b/.github/workflows/execd-test.yml index 33dad3ba2..6ba814c20 100644 --- a/.github/workflows/execd-test.yml +++ b/.github/workflows/execd-test.yml @@ -60,29 +60,25 @@ jobs: run: | CGO_ENABLED=1 go test -tags ebpf -count=1 ./pkg/ebpf/ - - name: Dump runner vmlinux.h (per-arch source for ebpf bytecode) + - name: TEMP fetch x86_64 vmlinux.h (one-shot, remove after committing) if: runner.os == 'Linux' run: | - # One-shot fetch of the runner's kernel BTF as a C header. The - # Dockerfile ebpf-builder stage regenerates the CO-RE bytecode per - # TARGETARCH from committed prog/vmlinux-.h; this step is - # only used to obtain a fresh copy for committing. docker run --rm --privileged \ -v /sys/kernel/btf:/sys/kernel/btf:ro \ -v /tmp/ebpf-dump:/out ubuntu:24.04 bash -c ' apt-get update -qq >/dev/null 2>&1 && apt-get install -y -qq linux-tools-generic >/dev/null 2>&1 BPFT=$(ls /usr/lib/linux-tools/*/bpftool 2>/dev/null | head -1) - [ -n "$BPFT" ] || { echo "no bpftool in container" >&2; exit 1; } - $BPFT btf dump file /sys/kernel/btf/vmlinux format c > /out/vmlinux.h + [ -n "$BPFT" ] || { echo "no bpftool" >&2; exit 1; } + $BPFT btf dump file /sys/kernel/btf/vmlinux format c > /out/vmlinux-x86_64.h ' - test -s /tmp/ebpf-dump/vmlinux.h + test -s /tmp/ebpf-dump/vmlinux-x86_64.h - - name: Upload per-arch vmlinux.h (for bytecode regeneration) + - name: Upload x86_64 vmlinux.h (one-shot) if: runner.os == 'Linux' && always() uses: actions/upload-artifact@v7 with: - name: vmlinux-${{ runner.arch }} - path: /tmp/ebpf-dump/vmlinux.h + name: vmlinux-x86_64 + path: /tmp/ebpf-dump/vmlinux-x86_64.h if-no-files-found: ignore - name: Upload per-arch vmlinux.h (for bytecode regeneration) diff --git a/components/execd/Dockerfile b/components/execd/Dockerfile index 97e7d1ebb..491166913 100644 --- a/components/execd/Dockerfile +++ b/components/execd/Dockerfile @@ -102,10 +102,17 @@ RUN rm /usr/lib/libcap.so /usr/lib/libcap.so.2 && \ # defaulting to /opt/opensandbox/execd). The variant attaches # exec/connect/privilege audit hooks and needs CAP_BPF + CAP_PERFMON in the # container ceiling. +# +# The CO-RE audit bytecode is REGENERATED here per TARGETARCH from the +# committed per-arch vmlinux.h (prog/vmlinux-.h). The BPF_KPROBE +# parameter relocations are architecture-specific (issue #1563): a vmlinux.h +# from the wrong arch poisons them, so each platform's bytecode is compiled +# against its own header at image build time. FROM golang:1.25.9 AS ebpf-builder ARG VERSION=dev ARG GIT_COMMIT=unknown ARG BUILD_TIME=unknown +ARG TARGETARCH RUN apt-get update && apt-get install -y --no-install-recommends clang WORKDIR /build COPY components/internal/go.mod components/internal/go.sum ./components/internal/ @@ -115,6 +122,22 @@ RUN cd components/execd && go mod download COPY components/internal ./components/internal COPY components/execd ./components/execd WORKDIR /build/components/execd +# Select the per-arch vmlinux.h and generate the CO-RE bytecode for this +# TARGETARCH (bpf2go embeds it into audit_bpf_.go, picked up by the +# Go build tags). Requires clang's bpf target only — no host kernel BTF. +RUN case "${TARGETARCH}" in \ + amd64) VMLINUX=prog/vmlinux-x86_64.h ;; \ + arm64) VMLINUX=prog/vmlinux-arm64.h ;; \ + *) echo "unsupported TARGETARCH=${TARGETARCH}" >&2; exit 1 ;; \ + esac \ + && cp "$VMLINUX" prog/vmlinux.h \ + && go run github.com/cilium/ebpf/cmd/bpf2go@v0.16.0 \ + -cc clang -no-strip \ + -cflags "-Iprog -I$(go env GOMODCACHE)/github.com/cilium/ebpf@v0.16.0/btf/testdata" \ + -target "${TARGETARCH}" \ + -go-package ebpf -output-dir pkg/ebpf \ + audit prog/audit.bpf.c \ + && rm -f prog/vmlinux.h # cilium/ebpf is pure Go, so the variant builds fully static. RUN CGO_ENABLED=0 go build -tags ebpf -trimpath -buildvcs=false \ -ldflags "-buildid= -B none \ diff --git a/components/execd/Makefile b/components/execd/Makefile index 05686a0b4..bc0637d6c 100644 --- a/components/execd/Makefile +++ b/components/execd/Makefile @@ -149,50 +149,45 @@ build: vet build-session-gate build-launcher ## Build execd and the Linux native go build $(GO_BUILD_FLAGS) -ldflags "$(GO_LDFLAGS)" -o bin/execd main.go .PHONY: build-ebpf -build-ebpf: generate-ebpf ## Build the execd-ebpf observation variant (CGO + cilium/ebpf). +build-ebpf: ## Build the execd-ebpf observation variant (CGO + cilium/ebpf). @if [ "$$(uname -s 2>/dev/null || echo non-linux)" != "Linux" ]; then \ echo "execd-ebpf requires Linux (BPF attachable host)" >&2; \ exit 1; \ fi @mkdir -p bin + $(MAKE) generate-ebpf ARCH=$(shell go env GOARCH) CGO_ENABLED=1 go build -tags ebpf $(GO_BUILD_FLAGS) -ldflags "$(GO_LDFLAGS)" -o bin/execd-ebpf main.go @echo "built bin/execd-ebpf" -# Regenerate the CO-RE audit bytecode (pkg/ebpf/audit_bpf*.o) on a Linux host. +# Regenerate the CO-RE audit bytecode for one architecture from the committed +# per-arch vmlinux.h (pkg/ebpf/prog/vmlinux-.h). The vmlinux.h files are +# committed so the bytecode can be regenerated anywhere (local make, CI, or +# inside the Dockerfile ebpf-builder stage) without access to a host kernel +# BTF — a vmlinux.h from the wrong arch (e.g. an arm64 dump shipped to x86_64) +# poisons the BPF_KPROBE parameter relocations (issue #1563). # -# The BPF source (prog/audit.bpf.c) is compiled per target architecture with -# bpf2go; each architecture's vmlinux.h is dumped from the BUILD HOST's own -# /sys/kernel/btf/vmlinux, so the bytecode's pt_regs layout matches the -# architecture it runs on (a vmlinux.h from the wrong arch — e.g. an arm64 -# dump shipped to x86_64 hosts — poisons the BPF_KPROBE parameter relocations, -# issue #1563). Run on an x86_64 and an arm64 Linux host and commit the -# regenerated .o files: +# make generate-ebpf ARCH=amd64 # or arm64; defaults to GOARCH # -# make generate-ebpf ARCHS="amd64 arm64" -# -# Requires clang with the bpf target (linux-tools/clang on Ubuntu) and -# bpftool (linux-tools-generic). The generated Go bindings embed the .o, so -# the .c and vmlinux.h must be in sync with what is committed. +# Requires clang with the bpf target. bpf2go writes audit_bpf_.{go,o}; +# the Go build picks the right one via build tags. .PHONY: generate-ebpf -generate-ebpf: ## Regenerate pkg/ebpf/audit_bpf*.o from prog/audit.bpf.c (Linux + clang + bpftool). - @if [ "$$(uname -s 2>/dev/null || echo non-linux)" != "Linux" ]; then \ - echo "generate-ebpf requires Linux (dump /sys/kernel/btf/vmlinux)" >&2; \ - exit 1; \ - fi - @command -v clang >/dev/null || { echo "clang not found" >&2; exit 1; } - @command -v bpftool >/dev/null || { echo "bpftool not found (install linux-tools-generic)" >&2; exit 1; } - @mkdir -p pkg/ebpf/prog - @if [ -n "$(VMLINUX_KEEP)" ]; then mkdir -p "$(VMLINUX_KEEP)"; fi - bpftool btf dump file /sys/kernel/btf/vmlinux format c > pkg/ebpf/prog/vmlinux.h - @if [ -n "$(VMLINUX_KEEP)" ]; then cp pkg/ebpf/prog/vmlinux.h "$(VMLINUX_KEEP)/vmlinux.h"; fi +generate-ebpf: + @ARCH ?= $(shell go env GOARCH) + @case "$(ARCH)" in \ + amd64) VMLINUX=pkg/ebpf/prog/vmlinux-x86_64.h ;; \ + arm64) VMLINUX=pkg/ebpf/prog/vmlinux-arm64.h ;; \ + *) echo "generate-ebpf: unsupported ARCH=$(ARCH) (amd64|arm64)" >&2; exit 1 ;; \ + esac + @test -f "$(VMLINUX)" || { echo "missing $(VMLINUX) — commit the per-arch vmlinux.h first" >&2; exit 1; } + @cp "$(VMLINUX)" pkg/ebpf/prog/vmlinux.h @cd pkg/ebpf && go run github.com/cilium/ebpf/cmd/bpf2go@v0.16.0 \ -cc clang -no-strip \ -cflags "-Iprog -I$(shell go env GOMODCACHE)/github.com/cilium/ebpf@v0.16.0/btf/testdata" \ - -target amd64 -target arm64 \ + -target $(ARCH) \ -go-package ebpf -output-dir . \ audit prog/audit.bpf.c @rm -f pkg/ebpf/prog/vmlinux.h - @echo "regenerated pkg/ebpf/audit_bpf*.o; commit them together with any audit.bpf.c changes" + @echo "regenerated pkg/ebpf/audit_bpf_$(ARCH).{go,o}" .PHONY: test-integration test-integration: ## Run integration tests (Linux + bwrap required). diff --git a/components/execd/pkg/ebpf/prog/vmlinux-arm64.h b/components/execd/pkg/ebpf/prog/vmlinux-arm64.h new file mode 100644 index 000000000..362803d69 --- /dev/null +++ b/components/execd/pkg/ebpf/prog/vmlinux-arm64.h @@ -0,0 +1,152124 @@ +#ifndef __VMLINUX_H__ +#define __VMLINUX_H__ + +#ifndef BPF_NO_PRESERVE_ACCESS_INDEX +#pragma clang attribute push (__attribute__((preserve_access_index)), apply_to = record) +#endif + +typedef unsigned char __u8; + +typedef short unsigned int __u16; + +typedef int __s32; + +typedef unsigned int __u32; + +typedef long long int __s64; + +typedef long long unsigned int __u64; + +typedef __u8 u8; + +typedef __u16 u16; + +typedef __s32 s32; + +typedef __u32 u32; + +typedef __s64 s64; + +typedef __u64 u64; + +enum { + false = 0, + true = 1, +}; + +typedef long int __kernel_long_t; + +typedef long unsigned int __kernel_ulong_t; + +typedef int __kernel_pid_t; + +typedef unsigned int __kernel_uid32_t; + +typedef __kernel_ulong_t __kernel_size_t; + +typedef long long int __kernel_time64_t; + +typedef __kernel_long_t __kernel_clock_t; + +typedef int __kernel_timer_t; + +typedef int __kernel_clockid_t; + +typedef __kernel_pid_t pid_t; + +typedef __kernel_clockid_t clockid_t; + +typedef _Bool bool; + +typedef __kernel_uid32_t uid_t; + +typedef __kernel_size_t size_t; + +typedef s64 ktime_t; + +typedef struct { + int counter; +} atomic_t; + +typedef struct { + s64 counter; +} atomic64_t; + +struct list_head { + struct list_head *next; + struct list_head *prev; +}; + +struct hlist_node { + struct hlist_node *next; + struct hlist_node **pprev; +}; + +struct callback_head { + struct callback_head *next; + void (*func)(struct callback_head *); +}; + +struct obs_kernel_param { + const char *str; + int (*setup_func)(char *); + int early; +}; + +typedef atomic64_t atomic_long_t; + +struct __kernel_timespec { + __kernel_time64_t tv_sec; + long long int tv_nsec; +}; + +struct qspinlock { + union { + atomic_t val; + struct { + u8 locked; + u8 pending; + }; + struct { + u16 locked_pending; + u16 tail; + }; + }; +}; + +typedef struct qspinlock arch_spinlock_t; + +struct raw_spinlock { + arch_spinlock_t raw_lock; +}; + +typedef struct raw_spinlock raw_spinlock_t; + +struct cpumask { + long unsigned int bits[1]; +}; + +typedef struct cpumask cpumask_t; + +enum timespec_type { + TT_NONE = 0, + TT_NATIVE = 1, + TT_COMPAT = 2, +}; + +typedef s32 old_time32_t; + +struct old_timespec32 { + old_time32_t tv_sec; + s32 tv_nsec; +}; + +struct pollfd; + +struct restart_block { + long unsigned int arch_data; + long int (*fn)(struct restart_block *); + union { + struct { + u32 *uaddr; + u32 val; + u32 flags; + u32 bitset; + u64 time; + u32 *uaddr2; + } futex; + struct { + clockid_t clockid; + enum timespec_type type; + union { + struct __kernel_timespec *rmtp; + struct old_timespec32 *compat_rmtp; + }; + u64 expires; + } nanosleep; + struct { + struct pollfd *ufds; + int nfds; + int has_timeout; + long unsigned int tv_sec; + long unsigned int tv_nsec; + } poll; + }; +}; + +struct thread_info { + long unsigned int flags; + union { + u64 preempt_count; + struct { + u32 count; + u32 need_resched; + } preempt; + }; + u32 cpu; +}; + +struct llist_node; + +struct llist_head { + struct llist_node *first; +}; + +struct llist_node { + struct llist_node *next; +}; + +struct __call_single_node { + struct llist_node llist; + union { + unsigned int u_flags; + atomic_t a_flags; + }; + u16 src; + u16 dst; +}; + +struct refcount_struct { + atomic_t refs; +}; + +typedef struct refcount_struct refcount_t; + +struct load_weight { + long unsigned int weight; + u32 inv_weight; +}; + +struct rb_node { + long unsigned int __rb_parent_color; + struct rb_node *rb_right; + struct rb_node *rb_left; +}; + +struct sched_avg { + u64 last_update_time; + u64 load_sum; + u64 runnable_sum; + u32 util_sum; + u32 period_contrib; + long unsigned int load_avg; + long unsigned int runnable_avg; + long unsigned int util_avg; + unsigned int util_est; +}; + +struct cfs_rq; + +struct sched_entity { + struct load_weight load; + struct rb_node run_node; + u64 deadline; + u64 min_vruntime; + u64 min_slice; + struct list_head group_node; + unsigned char on_rq; + unsigned char sched_delayed; + unsigned char rel_deadline; + unsigned char custom_slice; + u64 exec_start; + u64 sum_exec_runtime; + u64 prev_sum_exec_runtime; + u64 vruntime; + s64 vlag; + u64 slice; + u64 nr_migrations; + int depth; + struct sched_entity *parent; + struct cfs_rq *cfs_rq; + struct cfs_rq *my_q; + long unsigned int runnable_weight; + long: 64; + struct sched_avg avg; +}; + +struct sched_rt_entity { + struct list_head run_list; + long unsigned int timeout; + long unsigned int watchdog_stamp; + unsigned int time_slice; + short unsigned int on_rq; + short unsigned int on_list; + struct sched_rt_entity *back; +}; + +struct timerqueue_node { + struct rb_node node; + ktime_t expires; +}; + +enum hrtimer_restart { + HRTIMER_NORESTART = 0, + HRTIMER_RESTART = 1, +}; + +struct hrtimer_clock_base; + +struct hrtimer { + struct timerqueue_node node; + ktime_t _softexpires; + enum hrtimer_restart (*function)(struct hrtimer *); + struct hrtimer_clock_base *base; + u8 state; + u8 is_rel; + u8 is_soft; + u8 is_hard; +}; + +struct sched_dl_entity; + +typedef bool (*dl_server_has_tasks_f)(struct sched_dl_entity *); + +struct task_struct; + +typedef struct task_struct * (*dl_server_pick_f)(struct sched_dl_entity *); + +struct rq; + +struct sched_dl_entity { + struct rb_node rb_node; + u64 dl_runtime; + u64 dl_deadline; + u64 dl_period; + u64 dl_bw; + u64 dl_density; + s64 runtime; + u64 deadline; + unsigned int flags; + unsigned int dl_throttled: 1; + unsigned int dl_yielded: 1; + unsigned int dl_non_contending: 1; + unsigned int dl_overrun: 1; + unsigned int dl_server: 1; + unsigned int dl_server_active: 1; + unsigned int dl_defer: 1; + unsigned int dl_defer_armed: 1; + unsigned int dl_defer_running: 1; + struct hrtimer dl_timer; + struct hrtimer inactive_timer; + struct rq *rq; + dl_server_has_tasks_f server_has_tasks; + dl_server_pick_f server_pick_task; + struct sched_dl_entity *pi_se; +}; + +struct sched_statistics {}; + +union rcu_special { + struct { + u8 blocked; + u8 need_qs; + u8 exp_hint; + u8 need_mb; + } b; + u32 s; +}; + +struct sched_info { + long unsigned int pcount; + long long unsigned int run_delay; + long long unsigned int last_arrival; + long long unsigned int last_queued; +}; + +struct plist_node { + int prio; + struct list_head prio_list; + struct list_head node_list; +}; + +struct prev_cputime { + u64 utime; + u64 stime; + raw_spinlock_t lock; +}; + +struct rb_root { + struct rb_node *rb_node; +}; + +struct rb_root_cached { + struct rb_root rb_root; + struct rb_node *rb_leftmost; +}; + +struct timerqueue_head { + struct rb_root_cached rb_root; +}; + +struct posix_cputimer_base { + u64 nextevt; + struct timerqueue_head tqhead; +}; + +struct posix_cputimers { + struct posix_cputimer_base bases[3]; + unsigned int timers_active; + unsigned int expiry_active; +}; + +struct optimistic_spin_queue { + atomic_t tail; +}; + +struct mutex { + atomic_long_t owner; + raw_spinlock_t wait_lock; + struct optimistic_spin_queue osq; + struct list_head wait_list; +}; + +struct posix_cputimers_work { + struct callback_head work; + struct mutex mutex; + unsigned int scheduled; +}; + +struct sem_undo_list; + +struct sysv_sem { + struct sem_undo_list *undo_list; +}; + +struct sysv_shm { + struct list_head shm_clist; +}; + +typedef struct { + long unsigned int sig[1]; +} sigset_t; + +struct sigpending { + struct list_head list; + sigset_t signal; +}; + +typedef struct { + uid_t val; +} kuid_t; + +struct seccomp_filter; + +struct seccomp { + int mode; + atomic_t filter_count; + struct seccomp_filter *filter; +}; + +struct syscall_user_dispatch {}; + +struct spinlock { + union { + struct raw_spinlock rlock; + }; +}; + +typedef struct spinlock spinlock_t; + +struct wake_q_node { + struct wake_q_node *next; +}; + +struct task_io_accounting { + u64 rchar; + u64 wchar; + u64 syscr; + u64 syscw; + u64 read_bytes; + u64 write_bytes; + u64 cancelled_write_bytes; +}; + +typedef struct { + long unsigned int bits[1]; +} nodemask_t; + +struct seqcount { + unsigned int sequence; +}; + +typedef struct seqcount seqcount_t; + +struct seqcount_spinlock { + seqcount_t seqcount; +}; + +typedef struct seqcount_spinlock seqcount_spinlock_t; + +struct arch_tlbflush_unmap_batch {}; + +struct tlbflush_unmap_batch { + struct arch_tlbflush_unmap_batch arch; + bool flush_required; + bool writable; +}; + +struct page; + +struct page_frag { + struct page *page; + __u32 offset; + __u32 size; +}; + +struct kmap_ctrl {}; + +struct timer_list { + struct hlist_node entry; + long unsigned int expires; + void (*function)(struct timer_list *); + u32 flags; +}; + +struct cpu_context { + long unsigned int x19; + long unsigned int x20; + long unsigned int x21; + long unsigned int x22; + long unsigned int x23; + long unsigned int x24; + long unsigned int x25; + long unsigned int x26; + long unsigned int x27; + long unsigned int x28; + long unsigned int fp; + long unsigned int sp; + long unsigned int pc; +}; + +struct user_fpsimd_state { + __int128 unsigned vregs[32]; + __u32 fpsr; + __u32 fpcr; + __u32 __reserved[2]; +}; + +enum fp_type { + FP_STATE_CURRENT = 0, + FP_STATE_FPSIMD = 1, + FP_STATE_SVE = 2, +}; + +struct perf_event; + +struct debug_info { + int suspended_step; + int bps_disabled; + int wps_disabled; + struct perf_event *hbp_break[16]; + struct perf_event *hbp_watch[16]; +}; + +struct ptrauth_key { + long unsigned int lo; + long unsigned int hi; +}; + +struct ptrauth_keys_user { + struct ptrauth_key apia; + struct ptrauth_key apib; + struct ptrauth_key apda; + struct ptrauth_key apdb; + struct ptrauth_key apga; +}; + +struct ptrauth_keys_kernel { + struct ptrauth_key apia; +}; + +struct thread_struct { + struct cpu_context cpu_context; + long: 64; + struct { + long unsigned int tp_value; + long unsigned int tp2_value; + u64 fpmr; + long unsigned int pad; + struct user_fpsimd_state fpsimd_state; + } uw; + enum fp_type fp_type; + unsigned int fpsimd_cpu; + void *sve_state; + void *sme_state; + unsigned int vl[2]; + unsigned int vl_onexec[2]; + long unsigned int fault_address; + long unsigned int fault_code; + struct debug_info debug; + long: 64; + struct user_fpsimd_state kernel_fpsimd_state; + unsigned int kernel_fpsimd_cpu; + struct ptrauth_keys_user keys_user; + struct ptrauth_keys_kernel keys_kernel; + u64 mte_ctrl; + u64 sctlr_user; + u64 svcr; + u64 tpidr2_el0; + u64 por_el0; +}; + +struct sched_class; + +struct task_group; + +struct mm_struct; + +struct address_space; + +struct pid; + +struct completion; + +struct cred; + +struct key; + +struct nameidata; + +struct fs_struct; + +struct files_struct; + +struct io_uring_task; + +struct nsproxy; + +struct signal_struct; + +struct sighand_struct; + +struct audit_context; + +struct rt_mutex_waiter; + +struct bio_list; + +struct blk_plug; + +struct reclaim_state; + +struct io_context; + +struct capture_control; + +struct kernel_siginfo; + +typedef struct kernel_siginfo kernel_siginfo_t; + +struct css_set; + +struct robust_list_head; + +struct futex_pi_state; + +struct perf_event_context; + +struct rseq; + +struct pipe_inode_info; + +struct task_delay_info; + +struct mem_cgroup; + +struct obj_cgroup; + +struct gendisk; + +struct uprobe_task; + +struct bpf_local_storage; + +struct bpf_run_ctx; + +struct bpf_net_context; + +struct task_struct { + struct thread_info thread_info; + unsigned int __state; + unsigned int saved_state; + void *stack; + refcount_t usage; + unsigned int flags; + unsigned int ptrace; + int on_cpu; + struct __call_single_node wake_entry; + unsigned int wakee_flips; + long unsigned int wakee_flip_decay_ts; + struct task_struct *last_wakee; + int recent_used_cpu; + int wake_cpu; + int on_rq; + int prio; + int static_prio; + int normal_prio; + unsigned int rt_priority; + struct sched_entity se; + struct sched_rt_entity rt; + struct sched_dl_entity dl; + struct sched_dl_entity *dl_server; + const struct sched_class *sched_class; + struct task_group *sched_task_group; + struct sched_statistics stats; + unsigned int policy; + long unsigned int max_allowed_capacity; + int nr_cpus_allowed; + const cpumask_t *cpus_ptr; + cpumask_t *user_cpus_ptr; + cpumask_t cpus_mask; + void *migration_pending; + short unsigned int migration_disabled; + short unsigned int migration_flags; + int trc_reader_nesting; + int trc_ipi_to_cpu; + union rcu_special trc_reader_special; + struct list_head trc_holdout_list; + struct list_head trc_blkd_node; + int trc_blkd_cpu; + struct sched_info sched_info; + struct list_head tasks; + struct plist_node pushable_tasks; + struct rb_node pushable_dl_tasks; + struct mm_struct *mm; + struct mm_struct *active_mm; + struct address_space *faults_disabled_mapping; + int exit_state; + int exit_code; + int exit_signal; + int pdeath_signal; + long unsigned int jobctl; + unsigned int personality; + unsigned int sched_reset_on_fork: 1; + unsigned int sched_contributes_to_load: 1; + unsigned int sched_migrated: 1; + unsigned int sched_task_hot: 1; + long: 28; + unsigned int sched_remote_wakeup: 1; + unsigned int sched_rt_mutex: 1; + unsigned int in_execve: 1; + unsigned int in_iowait: 1; + unsigned int in_user_fault: 1; + unsigned int in_lru_fault: 1; + unsigned int no_cgroup_migration: 1; + unsigned int frozen: 1; + unsigned int use_memdelay: 1; + unsigned int in_memstall: 1; + unsigned int in_eventfd: 1; + unsigned int in_thrashing: 1; + long unsigned int atomic_flags; + struct restart_block restart_block; + pid_t pid; + pid_t tgid; + long unsigned int stack_canary; + struct task_struct *real_parent; + struct task_struct *parent; + struct list_head children; + struct list_head sibling; + struct task_struct *group_leader; + struct list_head ptraced; + struct list_head ptrace_entry; + struct pid *thread_pid; + struct hlist_node pid_links[4]; + struct list_head thread_node; + struct completion *vfork_done; + int *set_child_tid; + int *clear_child_tid; + void *worker_private; + u64 utime; + u64 stime; + u64 gtime; + struct prev_cputime prev_cputime; + long unsigned int nvcsw; + long unsigned int nivcsw; + u64 start_time; + u64 start_boottime; + long unsigned int min_flt; + long unsigned int maj_flt; + struct posix_cputimers posix_cputimers; + struct posix_cputimers_work posix_cputimers_work; + const struct cred *ptracer_cred; + const struct cred *real_cred; + const struct cred *cred; + struct key *cached_requested_key; + char comm[16]; + struct nameidata *nameidata; + struct sysv_sem sysvsem; + struct sysv_shm sysvshm; + struct fs_struct *fs; + struct files_struct *files; + struct io_uring_task *io_uring; + struct nsproxy *nsproxy; + struct signal_struct *signal; + struct sighand_struct *sighand; + sigset_t blocked; + sigset_t real_blocked; + sigset_t saved_sigmask; + struct sigpending pending; + long unsigned int sas_ss_sp; + size_t sas_ss_size; + unsigned int sas_ss_flags; + struct callback_head *task_works; + struct audit_context *audit_context; + kuid_t loginuid; + unsigned int sessionid; + struct seccomp seccomp; + struct syscall_user_dispatch syscall_dispatch; + u64 parent_exec_id; + u64 self_exec_id; + spinlock_t alloc_lock; + raw_spinlock_t pi_lock; + struct wake_q_node wake_q; + struct rb_root_cached pi_waiters; + struct task_struct *pi_top_task; + struct rt_mutex_waiter *pi_blocked_on; + void *journal_info; + struct bio_list *bio_list; + struct blk_plug *plug; + struct reclaim_state *reclaim_state; + struct io_context *io_context; + struct capture_control *capture_control; + long unsigned int ptrace_message; + kernel_siginfo_t *last_siginfo; + struct task_io_accounting ioac; + unsigned int psi_flags; + u64 acct_rss_mem1; + u64 acct_vm_mem1; + u64 acct_timexpd; + nodemask_t mems_allowed; + seqcount_spinlock_t mems_allowed_seq; + int cpuset_mem_spread_rotor; + struct css_set *cgroups; + struct list_head cg_list; + struct robust_list_head *robust_list; + struct list_head pi_state_list; + struct futex_pi_state *pi_state_cache; + struct mutex futex_exit_mutex; + unsigned int futex_state; + u8 perf_recursion[4]; + struct perf_event_context *perf_event_ctxp; + struct mutex perf_event_mutex; + struct list_head perf_event_list; + struct rseq *rseq; + u32 rseq_len; + u32 rseq_sig; + long unsigned int rseq_event_mask; + int mm_cid; + int last_mm_cid; + int migrate_from_cpu; + int mm_cid_active; + struct callback_head cid_work; + struct tlbflush_unmap_batch tlb_ubc; + struct pipe_inode_info *splice_pipe; + struct page_frag task_frag; + struct task_delay_info *delays; + int nr_dirtied; + int nr_dirtied_pause; + long unsigned int dirty_paused_when; + u64 timer_slack_ns; + u64 default_timer_slack_ns; + long unsigned int trace_recursion; + struct mem_cgroup *memcg_in_oom; + unsigned int memcg_nr_pages_over_high; + struct mem_cgroup *active_memcg; + struct obj_cgroup *objcg; + struct gendisk *throttle_disk; + struct uprobe_task *utask; + struct kmap_ctrl kmap_ctrl; + struct callback_head rcu; + refcount_t rcu_users; + int pagefault_disabled; + struct task_struct *oom_reaper_list; + struct timer_list oom_reaper_timer; + refcount_t stack_refcount; + void *security; + struct bpf_local_storage *bpf_storage; + struct bpf_run_ctx *bpf_ctx; + struct bpf_net_context *bpf_net_context; + struct llist_head kretprobe_instances; + u8 sched_docker_op; + struct thread_struct thread; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +union sigval { + int sival_int; + void *sival_ptr; +}; + +typedef union sigval sigval_t; + +union __sifields { + struct { + __kernel_pid_t _pid; + __kernel_uid32_t _uid; + } _kill; + struct { + __kernel_timer_t _tid; + int _overrun; + sigval_t _sigval; + int _sys_private; + } _timer; + struct { + __kernel_pid_t _pid; + __kernel_uid32_t _uid; + sigval_t _sigval; + } _rt; + struct { + __kernel_pid_t _pid; + __kernel_uid32_t _uid; + int _status; + __kernel_clock_t _utime; + __kernel_clock_t _stime; + } _sigchld; + struct { + void *_addr; + union { + int _trapno; + short int _addr_lsb; + struct { + char _dummy_bnd[8]; + void *_lower; + void *_upper; + } _addr_bnd; + struct { + char _dummy_pkey[8]; + __u32 _pkey; + } _addr_pkey; + struct { + long unsigned int _data; + __u32 _type; + __u32 _flags; + } _perf; + }; + } _sigfault; + struct { + long int _band; + int _fd; + } _sigpoll; + struct { + void *_call_addr; + int _syscall; + unsigned int _arch; + } _sigsys; +}; + +struct kernel_siginfo { + struct { + int si_signo; + int si_errno; + int si_code; + union __sifields _sifields; + }; +}; + +struct rseq { + __u32 cpu_id_start; + __u32 cpu_id; + __u64 rseq_cs; + __u32 flags; + __u32 node_id; + __u32 mm_cid; + char end[0]; +}; + +struct rq_flags; + +struct affinity_context; + +struct sched_class { + void (*enqueue_task)(struct rq *, struct task_struct *, int); + bool (*dequeue_task)(struct rq *, struct task_struct *, int); + void (*yield_task)(struct rq *); + bool (*yield_to_task)(struct rq *, struct task_struct *); + void (*wakeup_preempt)(struct rq *, struct task_struct *, int); + int (*balance)(struct rq *, struct task_struct *, struct rq_flags *); + struct task_struct * (*pick_task)(struct rq *); + struct task_struct * (*pick_next_task)(struct rq *, struct task_struct *); + void (*put_prev_task)(struct rq *, struct task_struct *, struct task_struct *); + void (*set_next_task)(struct rq *, struct task_struct *, bool); + int (*select_task_rq)(struct task_struct *, int, int); + void (*migrate_task_rq)(struct task_struct *, int); + void (*task_woken)(struct rq *, struct task_struct *); + void (*set_cpus_allowed)(struct task_struct *, struct affinity_context *); + void (*rq_online)(struct rq *); + void (*rq_offline)(struct rq *); + struct rq * (*find_lock_rq)(struct task_struct *, struct rq *); + void (*task_tick)(struct rq *, struct task_struct *, int); + void (*task_fork)(struct task_struct *); + void (*task_dead)(struct task_struct *); + void (*switching_to)(struct rq *, struct task_struct *); + void (*switched_from)(struct rq *, struct task_struct *); + void (*switched_to)(struct rq *, struct task_struct *); + void (*reweight_task)(struct rq *, struct task_struct *, const struct load_weight *); + void (*prio_changed)(struct rq *, struct task_struct *, int); + unsigned int (*get_rr_interval)(struct rq *, struct task_struct *); + void (*update_curr)(struct rq *); + void (*task_change_group)(struct task_struct *); +}; + +typedef unsigned int __kernel_gid32_t; + +typedef __kernel_gid32_t gid_t; + +typedef struct { + gid_t val; +} kgid_t; + +typedef struct { + u64 val; +} kernel_cap_t; + +struct user_struct; + +struct user_namespace; + +struct ucounts; + +struct group_info; + +struct cred { + atomic_long_t usage; + kuid_t uid; + kgid_t gid; + kuid_t suid; + kgid_t sgid; + kuid_t euid; + kgid_t egid; + kuid_t fsuid; + kgid_t fsgid; + unsigned int securebits; + kernel_cap_t cap_inheritable; + kernel_cap_t cap_permitted; + kernel_cap_t cap_effective; + kernel_cap_t cap_bset; + kernel_cap_t cap_ambient; + unsigned char jit_keyring; + struct key *session_keyring; + struct key *process_keyring; + struct key *thread_keyring; + struct key *request_key_auth; + void *security; + struct user_struct *user; + struct user_namespace *user_ns; + struct ucounts *ucounts; + struct group_info *group_info; + union { + int non_rcu; + struct callback_head rcu; + }; +}; + +enum pcpu_fc { + PCPU_FC_AUTO = 0, + PCPU_FC_EMBED = 1, + PCPU_FC_PAGE = 2, + PCPU_FC_NR = 3, +}; + +typedef signed char __s8; + +typedef short int __s16; + +typedef __s8 s8; + +typedef __kernel_long_t __kernel_ssize_t; + +typedef long long int __kernel_loff_t; + +typedef __u32 __le32; + +typedef unsigned int __poll_t; + +typedef u32 __kernel_dev_t; + +typedef __kernel_dev_t dev_t; + +typedef short unsigned int umode_t; + +typedef __kernel_loff_t loff_t; + +typedef __kernel_ssize_t ssize_t; + +typedef s32 int32_t; + +typedef u32 uint32_t; + +typedef u64 sector_t; + +typedef u64 blkcnt_t; + +typedef unsigned int gfp_t; + +typedef unsigned int fmode_t; + +struct hlist_head { + struct hlist_node *first; +}; + +struct jump_entry { + s32 code; + s32 target; + long int key; +}; + +struct static_key_mod; + +struct static_key { + atomic_t enabled; + union { + long unsigned int type; + struct jump_entry *entries; + struct static_key_mod *next; + }; +}; + +typedef bool pstate_check_t(long unsigned int); + +struct static_key_false { + struct static_key key; +}; + +struct lock_class_key {}; + +struct fs_context; + +struct fs_parameter_spec; + +struct dentry; + +struct super_block; + +struct module; + +struct file_system_type { + const char *name; + int fs_flags; + int (*init_fs_context)(struct fs_context *); + const struct fs_parameter_spec *parameters; + struct dentry * (*mount)(struct file_system_type *, int, const char *, void *); + void (*kill_sb)(struct super_block *); + struct module *owner; + struct file_system_type *next; + struct hlist_head fs_supers; + struct lock_class_key s_lock_key; + struct lock_class_key s_umount_key; + struct lock_class_key s_vfs_rename_key; + struct lock_class_key s_writers_key[3]; + struct lock_class_key i_lock_key; + struct lock_class_key i_mutex_key; + struct lock_class_key invalidate_lock_key; + struct lock_class_key i_mutex_dir_key; +}; + +struct qrwlock { + union { + atomic_t cnts; + struct { + u8 wlocked; + u8 __lstate[3]; + }; + }; + arch_spinlock_t wait_lock; +}; + +typedef struct qrwlock arch_rwlock_t; + +struct lockdep_map {}; + +struct ratelimit_state { + raw_spinlock_t lock; + int interval; + int burst; + int printed; + int missed; + unsigned int flags; + long unsigned int begin; +}; + +typedef unsigned int fop_flags_t; + +typedef void *fl_owner_t; + +struct file; + +struct kiocb; + +struct iov_iter; + +struct io_comp_batch; + +struct dir_context; + +struct poll_table_struct; + +struct vm_area_struct; + +struct inode; + +struct file_lock; + +struct file_lease; + +struct seq_file; + +struct io_uring_cmd; + +struct file_operations { + struct module *owner; + fop_flags_t fop_flags; + loff_t (*llseek)(struct file *, loff_t, int); + ssize_t (*read)(struct file *, char *, size_t, loff_t *); + ssize_t (*write)(struct file *, const char *, size_t, loff_t *); + ssize_t (*read_iter)(struct kiocb *, struct iov_iter *); + ssize_t (*write_iter)(struct kiocb *, struct iov_iter *); + int (*iopoll)(struct kiocb *, struct io_comp_batch *, unsigned int); + int (*iterate_shared)(struct file *, struct dir_context *); + __poll_t (*poll)(struct file *, struct poll_table_struct *); + long int (*unlocked_ioctl)(struct file *, unsigned int, long unsigned int); + long int (*compat_ioctl)(struct file *, unsigned int, long unsigned int); + int (*mmap)(struct file *, struct vm_area_struct *); + int (*open)(struct inode *, struct file *); + int (*flush)(struct file *, fl_owner_t); + int (*release)(struct inode *, struct file *); + int (*fsync)(struct file *, loff_t, loff_t, int); + int (*fasync)(int, struct file *, int); + int (*lock)(struct file *, int, struct file_lock *); + long unsigned int (*get_unmapped_area)(struct file *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + int (*check_flags)(int); + int (*flock)(struct file *, int, struct file_lock *); + ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int); + ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); + void (*splice_eof)(struct file *); + int (*setlease)(struct file *, int, struct file_lease **, void **); + long int (*fallocate)(struct file *, int, loff_t, loff_t); + void (*show_fdinfo)(struct seq_file *, struct file *); + ssize_t (*copy_file_range)(struct file *, loff_t, struct file *, loff_t, size_t, unsigned int); + loff_t (*remap_file_range)(struct file *, loff_t, struct file *, loff_t, loff_t, unsigned int); + int (*fadvise)(struct file *, loff_t, loff_t, int); + int (*uring_cmd)(struct io_uring_cmd *, unsigned int); + int (*uring_cmd_iopoll)(struct io_uring_cmd *, struct io_comp_batch *, unsigned int); +}; + +struct bug_entry { + int bug_addr_disp; + int file_disp; + short unsigned int line; + short unsigned int flags; +}; + +struct pollfd { + int fd; + short int events; + short int revents; +}; + +struct static_call_key { + void *func; +}; + +typedef struct cpumask cpumask_var_t[1]; + +struct user_pt_regs { + __u64 regs[31]; + __u64 sp; + __u64 pc; + __u64 pstate; +}; + +struct pt_regs { + union { + struct user_pt_regs user_regs; + struct { + u64 regs[31]; + u64 sp; + u64 pc; + u64 pstate; + }; + }; + u64 orig_x0; + s32 syscallno; + u32 unused2; + u64 sdei_ttbr1; + u64 pmr_save; + u64 stackframe[2]; + u64 lockdep_hardirqs; + u64 exit_rcu; +}; + +typedef void (*smp_call_func_t)(void *); + +struct __call_single_data { + struct __call_single_node node; + smp_call_func_t func; + void *info; +}; + +typedef struct __call_single_data call_single_data_t; + +typedef struct { + arch_rwlock_t raw_lock; +} rwlock_t; + +struct cacheline_padding { + char x[0]; +}; + +struct arch_hw_breakpoint_ctrl { + u32 __reserved: 19; + u32 len: 8; + u32 type: 2; + u32 privilege: 2; + u32 enabled: 1; +}; + +struct arch_hw_breakpoint { + u64 address; + u64 trigger; + struct arch_hw_breakpoint_ctrl ctrl; +}; + +typedef u64 pteval_t; + +typedef u64 pmdval_t; + +typedef u64 pudval_t; + +typedef u64 pgdval_t; + +typedef struct { + pteval_t pte; +} pte_t; + +typedef struct { + pmdval_t pmd; +} pmd_t; + +typedef struct { + pudval_t pud; +} pud_t; + +typedef struct { + pgdval_t pgd; +} pgd_t; + +typedef struct { + pteval_t pgprot; +} pgprot_t; + +enum perf_event_state { + PERF_EVENT_STATE_DEAD = -4, + PERF_EVENT_STATE_EXIT = -3, + PERF_EVENT_STATE_ERROR = -2, + PERF_EVENT_STATE_OFF = -1, + PERF_EVENT_STATE_INACTIVE = 0, + PERF_EVENT_STATE_ACTIVE = 1, +}; + +typedef struct { + atomic_long_t a; +} local_t; + +typedef struct { + local_t a; +} local64_t; + +struct perf_event_attr { + __u32 type; + __u32 size; + __u64 config; + union { + __u64 sample_period; + __u64 sample_freq; + }; + __u64 sample_type; + __u64 read_format; + __u64 disabled: 1; + __u64 inherit: 1; + __u64 pinned: 1; + __u64 exclusive: 1; + __u64 exclude_user: 1; + __u64 exclude_kernel: 1; + __u64 exclude_hv: 1; + __u64 exclude_idle: 1; + __u64 mmap: 1; + __u64 comm: 1; + __u64 freq: 1; + __u64 inherit_stat: 1; + __u64 enable_on_exec: 1; + __u64 task: 1; + __u64 watermark: 1; + __u64 precise_ip: 2; + __u64 mmap_data: 1; + __u64 sample_id_all: 1; + __u64 exclude_host: 1; + __u64 exclude_guest: 1; + __u64 exclude_callchain_kernel: 1; + __u64 exclude_callchain_user: 1; + __u64 mmap2: 1; + __u64 comm_exec: 1; + __u64 use_clockid: 1; + __u64 context_switch: 1; + __u64 write_backward: 1; + __u64 namespaces: 1; + __u64 ksymbol: 1; + __u64 bpf_event: 1; + __u64 aux_output: 1; + __u64 cgroup: 1; + __u64 text_poke: 1; + __u64 build_id: 1; + __u64 inherit_thread: 1; + __u64 remove_on_exec: 1; + __u64 sigtrap: 1; + __u64 __reserved_1: 26; + union { + __u32 wakeup_events; + __u32 wakeup_watermark; + }; + __u32 bp_type; + union { + __u64 bp_addr; + __u64 kprobe_func; + __u64 uprobe_path; + __u64 config1; + }; + union { + __u64 bp_len; + __u64 kprobe_addr; + __u64 probe_offset; + __u64 config2; + }; + __u64 branch_sample_type; + __u64 sample_regs_user; + __u32 sample_stack_user; + __s32 clockid; + __u64 sample_regs_intr; + __u32 aux_watermark; + __u16 sample_max_stack; + __u16 __reserved_2; + __u32 aux_sample_size; + union { + __u32 aux_action; + struct { + __u32 aux_start_paused: 1; + __u32 aux_pause: 1; + __u32 aux_resume: 1; + __u32 __reserved_3: 29; + }; + }; + __u64 sig_data; + __u64 config3; +}; + +struct hw_perf_event_extra { + u64 config; + unsigned int reg; + int alloc; + int idx; +}; + +struct rhash_head { + struct rhash_head *next; +}; + +struct rhlist_head { + struct rhash_head rhead; + struct rhlist_head *next; +}; + +struct hw_perf_event { + union { + struct { + u64 config; + u64 last_tag; + long unsigned int config_base; + long unsigned int event_base; + int event_base_rdpmc; + int idx; + int last_cpu; + int flags; + struct hw_perf_event_extra extra_reg; + struct hw_perf_event_extra branch_reg; + }; + struct { + u64 aux_config; + unsigned int aux_paused; + }; + struct { + struct hrtimer hrtimer; + }; + struct { + struct list_head tp_list; + }; + struct { + u64 pwr_acc; + u64 ptsc; + }; + struct { + struct arch_hw_breakpoint info; + struct rhlist_head bp_list; + }; + struct { + u8 iommu_bank; + u8 iommu_cntr; + u16 padding; + u64 conf; + u64 conf1; + }; + }; + struct task_struct *target; + void *addr_filters; + long unsigned int addr_filters_gen; + int state; + local64_t prev_count; + u64 sample_period; + union { + struct { + u64 last_period; + local64_t period_left; + }; + struct { + u64 saved_metric; + u64 saved_slots; + }; + }; + u64 interrupts_seq; + u64 interrupts; + u64 freq_time_stamp; + u64 freq_count_stamp; +}; + +struct wait_queue_head { + spinlock_t lock; + struct list_head head; +}; + +typedef struct wait_queue_head wait_queue_head_t; + +struct rcuwait { + struct task_struct *task; +}; + +struct irq_work { + struct __call_single_node node; + void (*func)(struct irq_work *); + struct rcuwait irqwait; +}; + +struct perf_addr_filters_head { + struct list_head list; + raw_spinlock_t lock; + unsigned int nr_file_filters; +}; + +struct perf_sample_data; + +typedef void (*perf_overflow_handler_t)(struct perf_event *, struct perf_sample_data *, struct pt_regs *); + +struct ftrace_ops; + +struct ftrace_regs; + +typedef void (*ftrace_func_t)(long unsigned int, long unsigned int, struct ftrace_ops *, struct ftrace_regs *); + +struct ftrace_hash; + +struct ftrace_ops_hash { + struct ftrace_hash *notrace_hash; + struct ftrace_hash *filter_hash; + struct mutex regex_lock; +}; + +enum ftrace_ops_cmd { + FTRACE_OPS_CMD_ENABLE_SHARE_IPMODIFY_SELF = 0, + FTRACE_OPS_CMD_ENABLE_SHARE_IPMODIFY_PEER = 1, + FTRACE_OPS_CMD_DISABLE_SHARE_IPMODIFY_PEER = 2, +}; + +typedef int (*ftrace_ops_func_t)(struct ftrace_ops *, enum ftrace_ops_cmd); + +struct ftrace_ops { + ftrace_func_t func; + struct ftrace_ops *next; + long unsigned int flags; + void *private; + ftrace_func_t saved_func; + struct ftrace_ops_hash local_hash; + struct ftrace_ops_hash *func_hash; + struct ftrace_ops_hash old_hash; + long unsigned int trampoline; + long unsigned int trampoline_size; + struct list_head list; + struct list_head subop_list; + ftrace_ops_func_t ops_func; + struct ftrace_ops *managed; + long unsigned int direct_call; +}; + +struct pmu; + +struct perf_event_pmu_context; + +struct perf_buffer; + +struct fasync_struct; + +struct perf_addr_filter_range; + +struct pid_namespace; + +struct bpf_prog; + +struct trace_event_call; + +struct event_filter; + +struct perf_cgroup; + +struct perf_event { + struct list_head event_entry; + struct list_head sibling_list; + struct list_head active_list; + struct rb_node group_node; + u64 group_index; + struct list_head migrate_entry; + struct hlist_node hlist_entry; + struct list_head active_entry; + int nr_siblings; + int event_caps; + int group_caps; + unsigned int group_generation; + struct perf_event *group_leader; + struct pmu *pmu; + void *pmu_private; + enum perf_event_state state; + unsigned int attach_state; + local64_t count; + atomic64_t child_count; + u64 total_time_enabled; + u64 total_time_running; + u64 tstamp; + struct perf_event_attr attr; + u16 header_size; + u16 id_header_size; + u16 read_size; + struct hw_perf_event hw; + struct perf_event_context *ctx; + struct perf_event_pmu_context *pmu_ctx; + atomic_long_t refcount; + atomic64_t child_total_time_enabled; + atomic64_t child_total_time_running; + struct mutex child_mutex; + struct list_head child_list; + struct perf_event *parent; + int oncpu; + int cpu; + struct list_head owner_entry; + struct task_struct *owner; + struct mutex mmap_mutex; + atomic_t mmap_count; + struct perf_buffer *rb; + struct list_head rb_entry; + long unsigned int rcu_batches; + int rcu_pending; + wait_queue_head_t waitq; + struct fasync_struct *fasync; + unsigned int pending_wakeup; + unsigned int pending_kill; + unsigned int pending_disable; + long unsigned int pending_addr; + struct irq_work pending_irq; + struct irq_work pending_disable_irq; + struct callback_head pending_task; + unsigned int pending_work; + atomic_t event_limit; + struct perf_addr_filters_head addr_filters; + struct perf_addr_filter_range *addr_filter_ranges; + long unsigned int addr_filters_gen; + struct perf_event *aux_event; + void (*destroy)(struct perf_event *); + struct callback_head callback_head; + struct pid_namespace *ns; + u64 id; + atomic64_t lost_samples; + u64 (*clock)(void); + perf_overflow_handler_t overflow_handler; + void *overflow_handler_context; + struct bpf_prog *prog; + u64 bpf_cookie; + struct trace_event_call *tp_event; + struct event_filter *filter; + struct ftrace_ops ftrace_ops; + struct perf_cgroup *cgrp; + void *security; + struct list_head sb_list; + __u32 orig_type; +}; + +struct hlist_bl_node; + +struct hlist_bl_head { + struct hlist_bl_node *first; +}; + +struct hlist_bl_node { + struct hlist_bl_node *next; + struct hlist_bl_node **pprev; +}; + +struct seqcount_raw_spinlock { + seqcount_t seqcount; +}; + +typedef struct seqcount_raw_spinlock seqcount_raw_spinlock_t; + +typedef struct { + seqcount_spinlock_t seqcount; + spinlock_t lock; +} seqlock_t; + +struct lockref { + union { + __u64 lock_count; + struct { + spinlock_t lock; + int count; + }; + }; +}; + +struct qstr { + union { + struct { + u32 hash; + u32 len; + }; + u64 hash_len; + }; + const unsigned char *name; +}; + +struct dentry_operations; + +struct dentry { + unsigned int d_flags; + seqcount_spinlock_t d_seq; + struct hlist_bl_node d_hash; + struct dentry *d_parent; + struct qstr d_name; + struct inode *d_inode; + unsigned char d_iname[40]; + const struct dentry_operations *d_op; + struct super_block *d_sb; + long unsigned int d_time; + void *d_fsdata; + struct lockref d_lockref; + union { + struct list_head d_lru; + wait_queue_head_t *d_wait; + }; + struct hlist_node d_sib; + struct hlist_head d_children; + union { + struct hlist_node d_alias; + struct hlist_bl_node d_in_lookup_hash; + struct callback_head d_rcu; + } d_u; +}; + +typedef __s64 time64_t; + +enum rw_hint { + WRITE_LIFE_NOT_SET = 0, + WRITE_LIFE_NONE = 1, + WRITE_LIFE_SHORT = 2, + WRITE_LIFE_MEDIUM = 3, + WRITE_LIFE_LONG = 4, + WRITE_LIFE_EXTREME = 5, +} __attribute__((mode(byte))); + +struct rw_semaphore { + atomic_long_t count; + atomic_long_t owner; + struct optimistic_spin_queue osq; + raw_spinlock_t wait_lock; + struct list_head wait_list; +}; + +struct xarray { + spinlock_t xa_lock; + gfp_t xa_flags; + void *xa_head; +}; + +typedef u32 errseq_t; + +struct address_space_operations; + +struct address_space { + struct inode *host; + struct xarray i_pages; + struct rw_semaphore invalidate_lock; + gfp_t gfp_mask; + atomic_t i_mmap_writable; + struct rb_root_cached i_mmap; + long unsigned int nrpages; + long unsigned int writeback_index; + const struct address_space_operations *a_ops; + long unsigned int flags; + errseq_t wb_err; + spinlock_t i_private_lock; + struct list_head i_private_list; + struct rw_semaphore i_mmap_rwsem; + void *i_private_data; +}; + +struct posix_acl; + +struct inode_operations; + +struct bdi_writeback; + +struct file_lock_context; + +struct cdev; + +struct fsnotify_mark_connector; + +struct fscrypt_inode_info; + +struct inode { + umode_t i_mode; + short unsigned int i_opflags; + kuid_t i_uid; + kgid_t i_gid; + unsigned int i_flags; + struct posix_acl *i_acl; + struct posix_acl *i_default_acl; + const struct inode_operations *i_op; + struct super_block *i_sb; + struct address_space *i_mapping; + void *i_security; + long unsigned int i_ino; + union { + const unsigned int i_nlink; + unsigned int __i_nlink; + }; + dev_t i_rdev; + loff_t i_size; + time64_t i_atime_sec; + time64_t i_mtime_sec; + time64_t i_ctime_sec; + u32 i_atime_nsec; + u32 i_mtime_nsec; + u32 i_ctime_nsec; + u32 i_generation; + spinlock_t i_lock; + short unsigned int i_bytes; + u8 i_blkbits; + enum rw_hint i_write_hint; + blkcnt_t i_blocks; + u32 i_state; + struct rw_semaphore i_rwsem; + long unsigned int dirtied_when; + long unsigned int dirtied_time_when; + struct hlist_node i_hash; + struct list_head i_io_list; + struct bdi_writeback *i_wb; + int i_wb_frn_winner; + u16 i_wb_frn_avg_time; + u16 i_wb_frn_history; + struct list_head i_lru; + struct list_head i_sb_list; + struct list_head i_wb_list; + union { + struct hlist_head i_dentry; + struct callback_head i_rcu; + }; + atomic64_t i_version; + atomic64_t i_sequence; + atomic_t i_count; + atomic_t i_dio_count; + atomic_t i_writecount; + atomic_t i_readcount; + union { + const struct file_operations *i_fop; + void (*free_inode)(struct inode *); + }; + struct file_lock_context *i_flctx; + struct address_space i_data; + struct list_head i_devices; + union { + struct pipe_inode_info *i_pipe; + struct cdev *i_cdev; + char *i_link; + unsigned int i_dir_seq; + }; + __u32 i_fsnotify_mask; + struct fsnotify_mark_connector *i_fsnotify_marks; + struct fscrypt_inode_info *i_crypt_info; + void *i_private; +}; + +enum d_real_type { + D_REAL_DATA = 0, + D_REAL_METADATA = 1, +}; + +struct vfsmount; + +struct path; + +struct dentry_operations { + int (*d_revalidate)(struct dentry *, unsigned int); + int (*d_weak_revalidate)(struct dentry *, unsigned int); + int (*d_hash)(const struct dentry *, struct qstr *); + int (*d_compare)(const struct dentry *, unsigned int, const char *, const struct qstr *); + int (*d_delete)(const struct dentry *); + int (*d_init)(struct dentry *); + void (*d_release)(struct dentry *); + void (*d_prune)(struct dentry *); + void (*d_iput)(struct dentry *, struct inode *); + char * (*d_dname)(struct dentry *, char *, int); + struct vfsmount * (*d_automount)(struct path *); + int (*d_manage)(const struct path *, bool); + struct dentry * (*d_real)(struct dentry *, enum d_real_type); + long: 64; + long: 64; + long: 64; +}; + +struct mtd_info; + +typedef long long int qsize_t; + +struct quota_format_type; + +struct mem_dqinfo { + struct quota_format_type *dqi_format; + int dqi_fmt_id; + struct list_head dqi_dirty_list; + long unsigned int dqi_flags; + unsigned int dqi_bgrace; + unsigned int dqi_igrace; + qsize_t dqi_max_spc_limit; + qsize_t dqi_max_ino_limit; + void *dqi_priv; +}; + +struct quota_format_ops; + +struct quota_info { + unsigned int flags; + struct rw_semaphore dqio_sem; + struct inode *files[3]; + struct mem_dqinfo info[3]; + const struct quota_format_ops *ops[3]; +}; + +struct rcu_sync { + int gp_state; + int gp_count; + wait_queue_head_t gp_wait; + struct callback_head cb_head; +}; + +struct percpu_rw_semaphore { + struct rcu_sync rss; + unsigned int *read_count; + struct rcuwait writer; + wait_queue_head_t waiters; + atomic_t block; +}; + +struct sb_writers { + short unsigned int frozen; + int freeze_kcount; + int freeze_ucount; + struct percpu_rw_semaphore rw_sem[3]; +}; + +typedef struct { + __u8 b[16]; +} uuid_t; + +struct list_lru_node; + +struct list_lru { + struct list_lru_node *node; + struct list_head list; + int shrinker_id; + bool memcg_aware; + struct xarray xa; +}; + +struct work_struct; + +typedef void (*work_func_t)(struct work_struct *); + +struct work_struct { + atomic_long_t data; + struct list_head entry; + work_func_t func; +}; + +struct super_operations; + +struct dquot_operations; + +struct quotactl_ops; + +struct export_operations; + +struct xattr_handler; + +struct fscrypt_operations; + +struct fscrypt_keyring; + +struct block_device; + +struct backing_dev_info; + +struct fsnotify_sb_info; + +struct shrinker; + +struct workqueue_struct; + +struct super_block { + struct list_head s_list; + dev_t s_dev; + unsigned char s_blocksize_bits; + long unsigned int s_blocksize; + loff_t s_maxbytes; + struct file_system_type *s_type; + const struct super_operations *s_op; + const struct dquot_operations *dq_op; + const struct quotactl_ops *s_qcop; + const struct export_operations *s_export_op; + long unsigned int s_flags; + long unsigned int s_iflags; + long unsigned int s_magic; + struct dentry *s_root; + struct rw_semaphore s_umount; + int s_count; + atomic_t s_active; + void *s_security; + const struct xattr_handler * const *s_xattr; + const struct fscrypt_operations *s_cop; + struct fscrypt_keyring *s_master_keys; + struct hlist_bl_head s_roots; + struct list_head s_mounts; + struct block_device *s_bdev; + struct file *s_bdev_file; + struct backing_dev_info *s_bdi; + struct mtd_info *s_mtd; + struct hlist_node s_instances; + unsigned int s_quota_types; + struct quota_info s_dquot; + struct sb_writers s_writers; + void *s_fs_info; + u32 s_time_gran; + time64_t s_time_min; + time64_t s_time_max; + u32 s_fsnotify_mask; + struct fsnotify_sb_info *s_fsnotify_info; + char s_id[32]; + uuid_t s_uuid; + u8 s_uuid_len; + char s_sysfs_name[37]; + unsigned int s_max_links; + struct mutex s_vfs_rename_mutex; + const char *s_subtype; + const struct dentry_operations *s_d_op; + struct shrinker *s_shrink; + atomic_long_t s_remove_count; + int s_readonly_remount; + errseq_t s_wb_err; + struct workqueue_struct *s_dio_done_wq; + struct hlist_head s_pins; + struct user_namespace *s_user_ns; + struct list_lru s_dentry_lru; + struct list_lru s_inode_lru; + struct callback_head rcu; + struct work_struct destroy_work; + struct mutex s_sync_lock; + int s_stack_depth; + long: 64; + long: 64; + long: 64; + long: 64; + spinlock_t s_inode_list_lock; + struct list_head s_inodes; + spinlock_t s_inode_wblist_lock; + struct list_head s_inodes_wb; + long: 64; + long: 64; +}; + +struct mnt_idmap; + +struct vfsmount { + struct dentry *mnt_root; + struct super_block *mnt_sb; + int mnt_flags; + struct mnt_idmap *mnt_idmap; +}; + +struct path { + struct vfsmount *mnt; + struct dentry *dentry; +}; + +struct timespec64 { + time64_t tv_sec; + long int tv_nsec; +}; + +enum pid_type { + PIDTYPE_PID = 0, + PIDTYPE_TGID = 1, + PIDTYPE_PGID = 2, + PIDTYPE_SID = 3, + PIDTYPE_MAX = 4, +}; + +struct idr { + struct xarray idr_rt; + unsigned int idr_base; + unsigned int idr_next; +}; + +struct proc_ns_operations; + +struct ns_common { + struct dentry *stashed; + const struct proc_ns_operations *ops; + unsigned int inum; + refcount_t count; +}; + +struct kmem_cache; + +struct fs_pin; + +struct pid_namespace { + struct idr idr; + struct callback_head rcu; + unsigned int pid_allocated; + struct task_struct *child_reaper; + struct kmem_cache *pid_cachep; + unsigned int level; + struct pid_namespace *parent; + struct fs_pin *bacct; + struct user_namespace *user_ns; + struct ucounts *ucounts; + int reboot; + struct ns_common ns; + int memfd_noexec_scope; +}; + +enum { + PER_LINUX = 0, + PER_LINUX_32BIT = 8388608, + PER_LINUX_FDPIC = 524288, + PER_SVR4 = 68157441, + PER_SVR3 = 83886082, + PER_SCOSVR3 = 117440515, + PER_OSR5 = 100663299, + PER_WYSEV386 = 83886084, + PER_ISCR4 = 67108869, + PER_BSD = 6, + PER_SUNOS = 67108870, + PER_XENIX = 83886087, + PER_LINUX32 = 8, + PER_LINUX32_3GB = 134217736, + PER_IRIX32 = 67108873, + PER_IRIXN32 = 67108874, + PER_IRIX64 = 67108875, + PER_RISCOS = 12, + PER_SOLARIS = 67108877, + PER_UW7 = 68157454, + PER_OSF4 = 15, + PER_HPUX = 16, + PER_MASK = 255, +}; + +typedef struct page *pgtable_t; + +struct page_pool; + +struct dev_pagemap; + +struct page { + long unsigned int flags; + union { + struct { + union { + struct list_head lru; + struct { + void *__filler; + unsigned int mlock_count; + }; + struct list_head buddy_list; + struct list_head pcp_list; + }; + struct address_space *mapping; + union { + long unsigned int index; + long unsigned int share; + }; + long unsigned int private; + }; + struct { + long unsigned int pp_magic; + struct page_pool *pp; + long unsigned int _pp_mapping_pad; + long unsigned int dma_addr; + atomic_long_t pp_ref_count; + }; + struct { + long unsigned int compound_head; + }; + struct { + struct dev_pagemap *pgmap; + void *zone_device_data; + }; + struct callback_head callback_head; + }; + union { + unsigned int page_type; + atomic_t _mapcount; + }; + atomic_t _refcount; + long unsigned int memcg_data; +}; + +struct hrtimer_cpu_base; + +struct hrtimer_clock_base { + struct hrtimer_cpu_base *cpu_base; + unsigned int index; + clockid_t clockid; + seqcount_raw_spinlock_t seq; + struct hrtimer *running; + struct timerqueue_head active; + ktime_t (*get_time)(void); + ktime_t offset; +}; + +struct rlimit { + __kernel_ulong_t rlim_cur; + __kernel_ulong_t rlim_max; +}; + +struct task_cputime { + u64 stime; + u64 utime; + long long unsigned int sum_exec_runtime; +}; + +typedef void __signalfn_t(int); + +typedef __signalfn_t *__sighandler_t; + +typedef void __restorefn_t(void); + +typedef __restorefn_t *__sigrestore_t; + +struct ucounts { + struct hlist_node node; + struct user_namespace *ns; + kuid_t uid; + atomic_t count; + atomic_long_t ucount[12]; + atomic_long_t rlimit[4]; +}; + +struct sigaction { + __sighandler_t sa_handler; + long unsigned int sa_flags; + __sigrestore_t sa_restorer; + sigset_t sa_mask; +}; + +struct k_sigaction { + struct sigaction sa; +}; + +typedef struct {} lockdep_map_p; + +struct maple_tree { + union { + spinlock_t ma_lock; + lockdep_map_p ma_external_lock; + }; + unsigned int ma_flags; + void *ma_root; +}; + +struct percpu_counter { + raw_spinlock_t lock; + s64 count; + s32 *counters; +}; + +typedef struct { + atomic64_t id; + refcount_t pinned; + void *vdso; + long unsigned int flags; + u8 pkey_allocation_map; +} mm_context_t; + +struct xol_area; + +struct uprobes_state { + struct xol_area *xol_area; +}; + +struct mm_cid; + +struct linux_binfmt; + +struct kioctx_table; + +struct mm_struct { + struct { + struct { + atomic_t mm_count; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + }; + struct maple_tree mm_mt; + long unsigned int mmap_base; + long unsigned int mmap_legacy_base; + long unsigned int task_size; + pgd_t *pgd; + atomic_t membarrier_state; + atomic_t mm_users; + struct mm_cid *pcpu_cid; + long unsigned int mm_cid_next_scan; + atomic_long_t pgtables_bytes; + int map_count; + spinlock_t page_table_lock; + struct rw_semaphore mmap_lock; + struct list_head mmlist; + int mm_lock_seq; + long unsigned int hiwater_rss; + long unsigned int hiwater_vm; + long unsigned int total_vm; + long unsigned int locked_vm; + atomic64_t pinned_vm; + long unsigned int data_vm; + long unsigned int exec_vm; + long unsigned int stack_vm; + long unsigned int def_flags; + seqcount_t write_protect_seq; + spinlock_t arg_lock; + long unsigned int start_code; + long unsigned int end_code; + long unsigned int start_data; + long unsigned int end_data; + long unsigned int start_brk; + long unsigned int brk; + long unsigned int start_stack; + long unsigned int arg_start; + long unsigned int arg_end; + long unsigned int env_start; + long unsigned int env_end; + long unsigned int saved_auxv[50]; + struct percpu_counter rss_stat[4]; + struct linux_binfmt *binfmt; + mm_context_t context; + long unsigned int flags; + spinlock_t ioctx_lock; + struct kioctx_table *ioctx_table; + struct task_struct *owner; + struct user_namespace *user_ns; + struct file *exe_file; + atomic_t tlb_flush_pending; + atomic_t tlb_flush_batched; + struct uprobes_state uprobes_state; + atomic_long_t hugetlb_usage; + struct work_struct async_put_work; + long unsigned int ksm_merging_pages; + long unsigned int ksm_rmap_items; + atomic_long_t ksm_zero_pages; + struct { + struct list_head list; + long unsigned int bitmap; + struct mem_cgroup *memcg; + } lru_gen; + }; + long unsigned int cpu_bitmap[0]; +}; + +struct upid { + int nr; + struct pid_namespace *ns; +}; + +struct pid { + refcount_t count; + unsigned int level; + spinlock_t lock; + struct dentry *stashed; + u64 ino; + struct hlist_head tasks[4]; + struct hlist_head inodes; + wait_queue_head_t wait_pidfd; + struct callback_head rcu; + struct upid numbers[0]; +}; + +struct swait_queue_head { + raw_spinlock_t lock; + struct list_head task_list; +}; + +struct completion { + unsigned int done; + struct swait_queue_head wait; +}; + +typedef int32_t key_serial_t; + +typedef uint32_t key_perm_t; + +struct key_type; + +struct key_tag; + +struct keyring_index_key { + long unsigned int hash; + union { + struct { + u16 desc_len; + char desc[6]; + }; + long unsigned int x; + }; + struct key_type *type; + struct key_tag *domain_tag; + const char *description; +}; + +union key_payload { + void *rcu_data0; + void *data[4]; +}; + +struct assoc_array_ptr; + +struct assoc_array { + struct assoc_array_ptr *root; + long unsigned int nr_leaves_on_tree; +}; + +struct key_user; + +struct key_restriction; + +struct key { + refcount_t usage; + key_serial_t serial; + union { + struct list_head graveyard_link; + struct rb_node serial_node; + }; + struct rw_semaphore sem; + struct key_user *user; + void *security; + union { + time64_t expiry; + time64_t revoked_at; + }; + time64_t last_used_at; + kuid_t uid; + kgid_t gid; + key_perm_t perm; + short unsigned int quotalen; + short unsigned int datalen; + short int state; + long unsigned int flags; + union { + struct keyring_index_key index_key; + struct { + long unsigned int hash; + long unsigned int len_desc; + struct key_type *type; + struct key_tag *domain_tag; + char *description; + }; + }; + union { + union key_payload payload; + struct { + struct list_head name_link; + struct assoc_array keys; + }; + }; + struct key_restriction *restrict_link; +}; + +struct uts_namespace; + +struct ipc_namespace; + +struct mnt_namespace; + +struct net; + +struct time_namespace; + +struct cgroup_namespace; + +struct nsproxy { + refcount_t count; + struct uts_namespace *uts_ns; + struct ipc_namespace *ipc_ns; + struct mnt_namespace *mnt_ns; + struct pid_namespace *pid_ns_for_children; + struct net *net_ns; + struct time_namespace *time_ns; + struct time_namespace *time_ns_for_children; + struct cgroup_namespace *cgroup_ns; +}; + +struct cpu_itimer { + u64 expires; + u64 incr; +}; + +struct task_cputime_atomic { + atomic64_t utime; + atomic64_t stime; + atomic64_t sum_exec_runtime; +}; + +struct thread_group_cputimer { + struct task_cputime_atomic cputime_atomic; +}; + +struct pacct_struct { + int ac_flag; + long int ac_exitcode; + long unsigned int ac_mem; + u64 ac_utime; + u64 ac_stime; + long unsigned int ac_minflt; + long unsigned int ac_majflt; +}; + +struct core_state; + +struct tty_struct; + +struct autogroup; + +struct taskstats; + +struct tty_audit_buf; + +struct signal_struct { + refcount_t sigcnt; + atomic_t live; + int nr_threads; + int quick_threads; + struct list_head thread_head; + wait_queue_head_t wait_chldexit; + struct task_struct *curr_target; + struct sigpending shared_pending; + struct hlist_head multiprocess; + int group_exit_code; + int notify_count; + struct task_struct *group_exec_task; + int group_stop_count; + unsigned int flags; + struct core_state *core_state; + unsigned int is_child_subreaper: 1; + unsigned int has_child_subreaper: 1; + unsigned int next_posix_timer_id; + struct hlist_head posix_timers; + struct hrtimer real_timer; + ktime_t it_real_incr; + struct cpu_itimer it[2]; + struct thread_group_cputimer cputimer; + struct posix_cputimers posix_cputimers; + struct pid *pids[4]; + struct pid *tty_old_pgrp; + int leader; + struct tty_struct *tty; + struct autogroup *autogroup; + seqlock_t stats_lock; + u64 utime; + u64 stime; + u64 cutime; + u64 cstime; + u64 gtime; + u64 cgtime; + struct prev_cputime prev_cputime; + long unsigned int nvcsw; + long unsigned int nivcsw; + long unsigned int cnvcsw; + long unsigned int cnivcsw; + long unsigned int min_flt; + long unsigned int maj_flt; + long unsigned int cmin_flt; + long unsigned int cmaj_flt; + long unsigned int inblock; + long unsigned int oublock; + long unsigned int cinblock; + long unsigned int coublock; + long unsigned int maxrss; + long unsigned int cmaxrss; + struct task_io_accounting ioac; + long long unsigned int sum_sched_runtime; + struct rlimit rlim[16]; + struct pacct_struct pacct; + struct taskstats *stats; + unsigned int audit_tty; + struct tty_audit_buf *tty_audit_buf; + bool oom_flag_origin; + short int oom_score_adj; + short int oom_score_adj_min; + struct mm_struct *oom_mm; + struct mutex cred_guard_mutex; + struct rw_semaphore exec_update_lock; +}; + +struct sighand_struct { + spinlock_t siglock; + refcount_t count; + wait_queue_head_t signalfd_wqh; + struct k_sigaction action[64]; +}; + +struct bio; + +struct bio_list { + struct bio *head; + struct bio *tail; +}; + +struct io_context { + atomic_long_t refcount; + atomic_t active_ref; + short unsigned int ioprio; +}; + +struct cgroup_subsys_state; + +struct cgroup; + +struct css_set { + struct cgroup_subsys_state *subsys[13]; + refcount_t refcount; + struct css_set *dom_cset; + struct cgroup *dfl_cgrp; + int nr_tasks; + struct list_head tasks; + struct list_head mg_tasks; + struct list_head dying_tasks; + struct list_head task_iters; + struct list_head e_cset_node[13]; + struct list_head threaded_csets; + struct list_head threaded_csets_node; + struct hlist_node hlist; + struct list_head cgrp_links; + struct list_head mg_src_preload_node; + struct list_head mg_dst_preload_node; + struct list_head mg_node; + struct cgroup *mg_src_cgrp; + struct cgroup *mg_dst_cgrp; + struct css_set *mg_dst_cset; + bool dead; + struct callback_head callback_head; +}; + +struct perf_event_groups { + struct rb_root tree; + u64 index; +}; + +struct perf_event_context { + raw_spinlock_t lock; + struct mutex mutex; + struct list_head pmu_ctx_list; + struct perf_event_groups pinned_groups; + struct perf_event_groups flexible_groups; + struct list_head event_list; + int nr_events; + int nr_user; + int is_active; + int nr_task_data; + int nr_stat; + int nr_freq; + int rotate_disable; + refcount_t refcount; + struct task_struct *task; + u64 time; + u64 timestamp; + u64 timeoffset; + struct perf_event_context *parent_ctx; + u64 parent_gen; + u64 generation; + int pin_count; + int nr_cgroups; + struct callback_head callback_head; + local_t nr_no_switch_fast; +}; + +struct percpu_ref_data; + +struct percpu_ref { + long unsigned int percpu_count_ptr; + struct percpu_ref_data *data; +}; + +struct rcu_work { + struct work_struct work; + struct callback_head rcu; + struct workqueue_struct *wq; +}; + +struct cgroup_subsys; + +struct cgroup_subsys_state { + struct cgroup *cgroup; + struct cgroup_subsys *ss; + struct percpu_ref refcnt; + struct list_head sibling; + struct list_head children; + struct list_head rstat_css_node; + int id; + unsigned int flags; + u64 serial_nr; + atomic_t online_cnt; + struct work_struct destroy_work; + struct rcu_work destroy_rwork; + struct cgroup_subsys_state *parent; + int nr_descendants; +}; + +struct mem_cgroup_id { + int id; + refcount_t ref; +}; + +struct page_counter { + atomic_long_t usage; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct cacheline_padding _pad1_; + long unsigned int emin; + atomic_long_t min_usage; + atomic_long_t children_min_usage; + long unsigned int elow; + atomic_long_t low_usage; + atomic_long_t children_low_usage; + long unsigned int watermark; + long unsigned int local_watermark; + long unsigned int failcnt; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct cacheline_padding _pad2_; + bool protection_support; + long unsigned int min; + long unsigned int low; + long unsigned int high; + long unsigned int max; + struct page_counter *parent; + long: 64; + long: 64; +}; + +struct vmpressure { + long unsigned int scanned; + long unsigned int reclaimed; + long unsigned int tree_scanned; + long unsigned int tree_reclaimed; + spinlock_t sr_lock; + struct list_head events; + struct mutex events_lock; + struct work_struct work; +}; + +struct kernfs_node; + +struct cgroup_file { + struct kernfs_node *kn; + long unsigned int notified_at; + struct timer_list notify_timer; +}; + +struct fprop_global { + struct percpu_counter events; + unsigned int period; + seqcount_t sequence; +}; + +struct wb_domain { + spinlock_t lock; + struct fprop_global completions; + struct timer_list period_timer; + long unsigned int period_time; + long unsigned int dirty_limit_tstamp; + long unsigned int dirty_limit; +}; + +struct wb_completion { + atomic_t cnt; + wait_queue_head_t *waitq; +}; + +struct memcg_cgwb_frn { + u64 bdi_id; + int memcg_id; + u64 at; + struct wb_completion done; +}; + +struct deferred_split { + spinlock_t split_queue_lock; + struct list_head split_queue; + long unsigned int split_queue_len; +}; + +struct lru_gen_mm_list { + struct list_head fifo; + spinlock_t lock; +}; + +struct mem_cgroup_threshold_ary; + +struct mem_cgroup_thresholds { + struct mem_cgroup_threshold_ary *primary; + struct mem_cgroup_threshold_ary *spare; +}; + +struct memcg_vmstats; + +struct memcg_vmstats_percpu; + +struct memcg1_events_percpu; + +struct mem_cgroup_per_node; + +struct mem_cgroup { + struct cgroup_subsys_state css; + struct mem_cgroup_id id; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct page_counter memory; + union { + struct page_counter swap; + struct page_counter memsw; + }; + struct list_head memory_peaks; + struct list_head swap_peaks; + spinlock_t peaks_lock; + struct work_struct high_work; + long unsigned int zswap_max; + bool zswap_writeback; + struct vmpressure vmpressure; + bool oom_group; + int swappiness; + struct cgroup_file events_file; + struct cgroup_file events_local_file; + struct cgroup_file swap_events_file; + struct memcg_vmstats *vmstats; + atomic_long_t memory_events[9]; + atomic_long_t memory_events_local[9]; + long unsigned int socket_pressure; + int kmemcg_id; + struct obj_cgroup *objcg; + struct obj_cgroup *orig_objcg; + struct list_head objcg_list; + struct memcg_vmstats_percpu *vmstats_percpu; + struct list_head cgwb_list; + struct wb_domain cgwb_domain; + struct memcg_cgwb_frn cgwb_frn[4]; + struct deferred_split deferred_split_queue; + struct lru_gen_mm_list mm_list; + long: 64; + long: 64; + long: 64; + long: 64; + struct page_counter kmem; + struct page_counter tcpmem; + struct memcg1_events_percpu *events_percpu; + long unsigned int soft_limit; + bool oom_lock; + int under_oom; + int oom_kill_disable; + struct mutex thresholds_lock; + struct mem_cgroup_thresholds thresholds; + struct mem_cgroup_thresholds memsw_thresholds; + struct list_head oom_notify; + long unsigned int move_charge_at_immigrate; + spinlock_t move_lock; + long unsigned int move_lock_flags; + bool tcpmem_active; + int tcpmem_pressure; + atomic_t moving_account; + struct task_struct *move_lock_task; + struct list_head event_list; + spinlock_t event_list_lock; + struct mem_cgroup_per_node *nodeinfo[0]; + long: 64; +}; + +struct obj_cgroup { + struct percpu_ref refcnt; + struct mem_cgroup *memcg; + atomic_t nr_charged_bytes; + union { + struct list_head list; + struct callback_head rcu; + }; +}; + +enum uprobe_task_state { + UTASK_RUNNING = 0, + UTASK_SSTEP = 1, + UTASK_SSTEP_ACK = 2, + UTASK_SSTEP_TRAPPED = 3, +}; + +struct arch_uprobe_task {}; + +struct uprobe; + +struct arch_uprobe; + +struct return_instance; + +struct uprobe_task { + enum uprobe_task_state state; + union { + struct { + struct arch_uprobe_task autask; + long unsigned int vaddr; + }; + struct { + struct callback_head dup_xol_work; + long unsigned int dup_xol_addr; + }; + }; + struct uprobe *active_uprobe; + long unsigned int xol_vaddr; + struct arch_uprobe *auprobe; + struct return_instance *return_instances; + unsigned int depth; +}; + +struct bpf_run_ctx {}; + +struct uid_gid_extent { + u32 first; + u32 lower_first; + u32 count; +}; + +struct uid_gid_map { + union { + struct { + struct uid_gid_extent extent[5]; + u32 nr_extents; + }; + struct { + struct uid_gid_extent *forward; + struct uid_gid_extent *reverse; + }; + }; +}; + +struct ctl_table; + +struct ctl_table_root; + +struct ctl_table_set; + +struct ctl_dir; + +struct ctl_node; + +struct ctl_table_header { + union { + struct { + struct ctl_table *ctl_table; + int ctl_table_size; + int used; + int count; + int nreg; + }; + struct callback_head rcu; + }; + struct completion *unregistering; + const struct ctl_table *ctl_table_arg; + struct ctl_table_root *root; + struct ctl_table_set *set; + struct ctl_dir *parent; + struct ctl_node *node; + struct hlist_head inodes; + enum { + SYSCTL_TABLE_TYPE_DEFAULT = 0, + SYSCTL_TABLE_TYPE_PERMANENTLY_EMPTY = 1, + } type; +}; + +struct ctl_dir { + struct ctl_table_header header; + struct rb_root root; +}; + +struct ctl_table_set { + int (*is_seen)(struct ctl_table_set *); + struct ctl_dir dir; +}; + +struct binfmt_misc; + +struct user_namespace { + struct uid_gid_map uid_map; + struct uid_gid_map gid_map; + struct uid_gid_map projid_map; + struct user_namespace *parent; + int level; + kuid_t owner; + kgid_t group; + struct ns_common ns; + long unsigned int flags; + bool parent_could_setfcap; + struct list_head keyring_name_list; + struct key *user_keyring_register; + struct rw_semaphore keyring_sem; + struct key *persistent_keyring_register; + struct work_struct work; + struct ctl_table_set set; + struct ctl_table_header *sysctls; + struct ucounts *ucounts; + long int ucount_max[12]; + long int rlimit_max[4]; + struct binfmt_misc *binfmt_misc; +}; + +struct kstat { + u32 result_mask; + umode_t mode; + unsigned int nlink; + uint32_t blksize; + u64 attributes; + u64 attributes_mask; + u64 ino; + dev_t dev; + dev_t rdev; + kuid_t uid; + kgid_t gid; + loff_t size; + struct timespec64 atime; + struct timespec64 mtime; + struct timespec64 ctime; + struct timespec64 btime; + u64 blocks; + u64 mnt_id; + u32 dio_mem_align; + u32 dio_offset_align; + u64 change_cookie; + u64 subvol; + u32 atomic_write_unit_min; + u32 atomic_write_unit_max; + u32 atomic_write_segments_max; +}; + +struct shrinker_info_unit { + atomic_long_t nr_deferred[64]; + long unsigned int map[1]; +}; + +struct shrinker_info { + struct callback_head rcu; + int map_nr_max; + struct shrinker_info_unit *unit[0]; +}; + +struct shrink_control { + gfp_t gfp_mask; + int nid; + long unsigned int nr_to_scan; + long unsigned int nr_scanned; + struct mem_cgroup *memcg; +}; + +struct shrinker { + long unsigned int (*count_objects)(struct shrinker *, struct shrink_control *); + long unsigned int (*scan_objects)(struct shrinker *, struct shrink_control *); + long int batch; + int seeks; + unsigned int flags; + refcount_t refcount; + struct completion done; + struct callback_head rcu; + void *private_data; + struct list_head list; + int id; + atomic_long_t *nr_deferred; +}; + +struct hlist_nulls_node; + +struct hlist_nulls_head { + struct hlist_nulls_node *first; +}; + +struct hlist_nulls_node { + struct hlist_nulls_node *next; + struct hlist_nulls_node **pprev; +}; + +struct kref { + refcount_t refcount; +}; + +typedef u32 probe_opcode_t; + +typedef void probes_handler_t(u32, long int, struct pt_regs *); + +struct arch_probe_insn { + probe_opcode_t *insn; + pstate_check_t *pstate_cc; + probes_handler_t *handler; + long unsigned int restore; +}; + +struct arch_uprobe { + union { + __le32 insn; + __le32 ixol; + }; + struct arch_probe_insn api; + bool simulate; +}; + +struct return_instance { + struct uprobe *uprobe; + long unsigned int func; + long unsigned int stack; + long unsigned int orig_ret_vaddr; + bool chained; + struct return_instance *next; +}; + +struct delayed_work { + struct work_struct work; + struct timer_list timer; + struct workqueue_struct *wq; + int cpu; +}; + +struct vmem_altmap { + long unsigned int base_pfn; + const long unsigned int end_pfn; + const long unsigned int reserve; + long unsigned int free; + long unsigned int align; + long unsigned int alloc; + bool inaccessible; +}; + +enum memory_type { + MEMORY_DEVICE_PRIVATE = 1, + MEMORY_DEVICE_COHERENT = 2, + MEMORY_DEVICE_FS_DAX = 3, + MEMORY_DEVICE_GENERIC = 4, + MEMORY_DEVICE_PCI_P2PDMA = 5, +}; + +struct range { + u64 start; + u64 end; +}; + +struct dev_pagemap_ops; + +struct dev_pagemap { + struct vmem_altmap altmap; + struct percpu_ref ref; + struct completion done; + enum memory_type type; + unsigned int flags; + long unsigned int vmemmap_shift; + const struct dev_pagemap_ops *ops; + void *owner; + int nr_range; + union { + struct range range; + struct { + struct {} __empty_ranges; + struct range ranges[0]; + }; + }; +}; + +typedef struct { + long unsigned int val; +} swp_entry_t; + +struct folio { + union { + struct { + long unsigned int flags; + union { + struct list_head lru; + struct { + void *__filler; + unsigned int mlock_count; + }; + }; + struct address_space *mapping; + long unsigned int index; + union { + void *private; + swp_entry_t swap; + }; + atomic_t _mapcount; + atomic_t _refcount; + long unsigned int memcg_data; + }; + struct page page; + }; + union { + struct { + long unsigned int _flags_1; + long unsigned int _head_1; + atomic_t _large_mapcount; + atomic_t _entire_mapcount; + atomic_t _nr_pages_mapped; + atomic_t _pincount; + unsigned int _folio_nr_pages; + }; + struct page __page_1; + }; + union { + struct { + long unsigned int _flags_2; + long unsigned int _head_2; + void *_hugetlb_subpool; + void *_hugetlb_cgroup; + void *_hugetlb_cgroup_rsvd; + void *_hugetlb_hwpoison; + }; + struct { + long unsigned int _flags_2a; + long unsigned int _head_2a; + struct list_head _deferred_list; + }; + struct page __page_2; + }; +}; + +typedef long unsigned int vm_flags_t; + +struct file_ra_state { + long unsigned int start; + unsigned int size; + unsigned int async_size; + unsigned int ra_pages; + unsigned int mmap_miss; + loff_t prev_pos; +}; + +typedef struct { + long unsigned int v; +} freeptr_t; + +struct fown_struct; + +struct file { + atomic_long_t f_count; + spinlock_t f_lock; + fmode_t f_mode; + const struct file_operations *f_op; + struct address_space *f_mapping; + void *private_data; + struct inode *f_inode; + unsigned int f_flags; + unsigned int f_iocb_flags; + const struct cred *f_cred; + struct path f_path; + union { + struct mutex f_pos_lock; + u64 f_pipe; + }; + loff_t f_pos; + void *f_security; + struct fown_struct *f_owner; + errseq_t f_wb_err; + errseq_t f_sb_err; + struct hlist_head *f_ep; + union { + struct callback_head f_task_work; + struct llist_node f_llist; + struct file_ra_state f_ra; + freeptr_t f_freeptr; + }; +}; + +struct vm_userfaultfd_ctx {}; + +struct vma_lock { + struct rw_semaphore lock; +}; + +struct anon_vma; + +struct vm_operations_struct; + +struct vm_area_struct { + union { + struct { + long unsigned int vm_start; + long unsigned int vm_end; + }; + struct callback_head vm_rcu; + }; + struct mm_struct *vm_mm; + pgprot_t vm_page_prot; + union { + const vm_flags_t vm_flags; + vm_flags_t __vm_flags; + }; + bool detached; + int vm_lock_seq; + struct vma_lock *vm_lock; + struct { + struct rb_node rb; + long unsigned int rb_subtree_last; + } shared; + struct list_head anon_vma_chain; + struct anon_vma *anon_vma; + const struct vm_operations_struct *vm_ops; + long unsigned int vm_pgoff; + struct file *vm_file; + void *vm_private_data; + atomic_long_t swap_readahead_info; + struct vm_userfaultfd_ctx vm_userfaultfd_ctx; +}; + +typedef unsigned int vm_fault_t; + +struct vm_fault; + +struct vm_operations_struct { + void (*open)(struct vm_area_struct *); + void (*close)(struct vm_area_struct *); + int (*may_split)(struct vm_area_struct *, long unsigned int); + int (*mremap)(struct vm_area_struct *); + int (*mprotect)(struct vm_area_struct *, long unsigned int, long unsigned int, long unsigned int); + vm_fault_t (*fault)(struct vm_fault *); + vm_fault_t (*huge_fault)(struct vm_fault *, unsigned int); + vm_fault_t (*map_pages)(struct vm_fault *, long unsigned int, long unsigned int); + long unsigned int (*pagesize)(struct vm_area_struct *); + vm_fault_t (*page_mkwrite)(struct vm_fault *); + vm_fault_t (*pfn_mkwrite)(struct vm_fault *); + int (*access)(struct vm_area_struct *, long unsigned int, void *, int, int); + const char * (*name)(struct vm_area_struct *); + struct page * (*find_special_page)(struct vm_area_struct *, long unsigned int); +}; + +struct mm_cid { + u64 time; + int cid; +}; + +enum fault_flag { + FAULT_FLAG_WRITE = 1, + FAULT_FLAG_MKWRITE = 2, + FAULT_FLAG_ALLOW_RETRY = 4, + FAULT_FLAG_RETRY_NOWAIT = 8, + FAULT_FLAG_KILLABLE = 16, + FAULT_FLAG_TRIED = 32, + FAULT_FLAG_USER = 64, + FAULT_FLAG_REMOTE = 128, + FAULT_FLAG_INSTRUCTION = 256, + FAULT_FLAG_INTERRUPTIBLE = 512, + FAULT_FLAG_UNSHARE = 1024, + FAULT_FLAG_ORIG_PTE_VALID = 2048, + FAULT_FLAG_VMA_LOCK = 4096, +}; + +struct vm_fault { + const struct { + struct vm_area_struct *vma; + gfp_t gfp_mask; + long unsigned int pgoff; + long unsigned int address; + long unsigned int real_address; + }; + enum fault_flag flags; + pmd_t *pmd; + pud_t *pud; + union { + pte_t orig_pte; + pmd_t orig_pmd; + }; + struct page *cow_page; + struct page *page; + pte_t *pte; + spinlock_t *ptl; + pgtable_t prealloc_pte; +}; + +struct zswap_lruvec_state { + atomic_long_t nr_disk_swapins; +}; + +struct free_area { + struct list_head free_list[4]; + long unsigned int nr_free; +}; + +struct lru_gen_folio { + long unsigned int max_seq; + long unsigned int min_seq[2]; + long unsigned int timestamps[4]; + struct list_head folios[32]; + long int nr_pages[32]; + long unsigned int avg_refaulted[8]; + long unsigned int avg_total[8]; + long unsigned int protected[6]; + atomic_long_t evicted[8]; + atomic_long_t refaulted[8]; + bool enabled; + u8 gen; + u8 seg; + struct hlist_nulls_node list; +}; + +struct lru_gen_mm_state { + long unsigned int seq; + struct list_head *head; + struct list_head *tail; + long unsigned int *filters[2]; + long unsigned int stats[4]; +}; + +struct lruvec; + +struct lru_gen_mm_walk { + struct lruvec *lruvec; + long unsigned int seq; + long unsigned int next_addr; + int nr_pages[32]; + int mm_stats[4]; + int batched; + bool can_swap; + bool force_scan; +}; + +struct pglist_data; + +struct lruvec { + struct list_head lists[5]; + spinlock_t lru_lock; + long unsigned int anon_cost; + long unsigned int file_cost; + atomic_long_t nonresident_age; + long unsigned int refaults[2]; + long unsigned int flags; + struct lru_gen_folio lrugen; + struct lru_gen_mm_state mm_state; + struct pglist_data *pgdat; + struct zswap_lruvec_state zswap_lruvec_state; +}; + +struct lru_gen_memcg { + long unsigned int seq; + long unsigned int nr_memcgs[3]; + struct hlist_nulls_head fifo[24]; + spinlock_t lock; +}; + +struct per_cpu_pages; + +struct per_cpu_zonestat; + +struct zone { + long unsigned int _watermark[4]; + long unsigned int watermark_boost; + long unsigned int nr_reserved_highatomic; + long unsigned int nr_free_highatomic; + long int lowmem_reserve[4]; + struct pglist_data *zone_pgdat; + struct per_cpu_pages *per_cpu_pageset; + struct per_cpu_zonestat *per_cpu_zonestats; + int pageset_high_min; + int pageset_high_max; + int pageset_batch; + long unsigned int zone_start_pfn; + atomic_long_t managed_pages; + long unsigned int spanned_pages; + long unsigned int present_pages; + const char *name; + int initialized; + long: 64; + long: 64; + struct cacheline_padding _pad1_; + struct free_area free_area[11]; + long unsigned int flags; + spinlock_t lock; + long: 64; + long: 64; + long: 64; + struct cacheline_padding _pad2_; + long unsigned int percpu_drift_mark; + long unsigned int compact_cached_free_pfn; + long unsigned int compact_cached_migrate_pfn[2]; + long unsigned int compact_init_migrate_pfn; + long unsigned int compact_init_free_pfn; + unsigned int compact_considered; + unsigned int compact_defer_shift; + int compact_order_failed; + bool compact_blockskip_flush; + bool contiguous; + long: 0; + struct cacheline_padding _pad3_; + atomic_long_t vm_stat[11]; + atomic_long_t vm_numa_event[0]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct zoneref { + struct zone *zone; + int zone_idx; +}; + +struct zonelist { + struct zoneref _zonerefs[5]; +}; + +enum zone_type { + ZONE_DMA = 0, + ZONE_DMA32 = 1, + ZONE_NORMAL = 2, + ZONE_MOVABLE = 3, + __MAX_NR_ZONES = 4, +}; + +struct per_cpu_nodestat; + +struct pglist_data { + struct zone node_zones[4]; + struct zonelist node_zonelists[1]; + int nr_zones; + long unsigned int node_start_pfn; + long unsigned int node_present_pages; + long unsigned int node_spanned_pages; + int node_id; + wait_queue_head_t kswapd_wait; + wait_queue_head_t pfmemalloc_wait; + wait_queue_head_t reclaim_wait[4]; + atomic_t nr_writeback_throttled; + long unsigned int nr_reclaim_start; + struct task_struct *kswapd; + int kswapd_order; + enum zone_type kswapd_highest_zoneidx; + int kswapd_failures; + int kcompactd_max_order; + enum zone_type kcompactd_highest_zoneidx; + wait_queue_head_t kcompactd_wait; + struct task_struct *kcompactd; + bool proactive_compact_trigger; + long unsigned int totalreserve_pages; + long: 64; + long: 64; + long: 64; + struct cacheline_padding _pad1_; + struct deferred_split deferred_split_queue; + struct lruvec __lruvec; + long unsigned int flags; + struct lru_gen_mm_walk mm_walk; + struct lru_gen_memcg memcg_lru; + long: 64; + long: 64; + long: 64; + long: 64; + struct cacheline_padding _pad2_; + struct per_cpu_nodestat *per_cpu_nodestats; + atomic_long_t vm_stat[44]; + long: 64; + long: 64; + long: 64; +}; + +struct per_cpu_pages { + spinlock_t lock; + int count; + int high; + int high_min; + int high_max; + int batch; + u8 flags; + u8 alloc_factor; + short int free_count; + struct list_head lists[14]; +}; + +struct per_cpu_zonestat { + s8 vm_stat_diff[11]; + s8 stat_threshold; +}; + +struct per_cpu_nodestat { + s8 stat_threshold; + s8 vm_node_stat_diff[44]; +}; + +struct rcu_segcblist { + struct callback_head *head; + struct callback_head **tails[4]; + long unsigned int gp_seq[4]; + atomic_long_t len; + long int seglen[4]; + u8 flags; +}; + +struct srcu_node; + +struct srcu_struct; + +struct srcu_data { + atomic_long_t srcu_lock_count[2]; + atomic_long_t srcu_unlock_count[2]; + int srcu_nmi_safety; + long: 64; + long: 64; + long: 64; + spinlock_t lock; + struct rcu_segcblist srcu_cblist; + long unsigned int srcu_gp_seq_needed; + long unsigned int srcu_gp_seq_needed_exp; + bool srcu_cblist_invoking; + struct timer_list delay_work; + struct work_struct work; + struct callback_head srcu_barrier_head; + struct srcu_node *mynode; + long unsigned int grpmask; + int cpu; + struct srcu_struct *ssp; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct srcu_node { + spinlock_t lock; + long unsigned int srcu_have_cbs[4]; + long unsigned int srcu_data_have_cbs[4]; + long unsigned int srcu_gp_seq_needed_exp; + struct srcu_node *srcu_parent; + int grplo; + int grphi; +}; + +struct srcu_usage; + +struct srcu_struct { + unsigned int srcu_idx; + struct srcu_data *sda; + struct lockdep_map dep_map; + struct srcu_usage *srcu_sup; +}; + +struct srcu_usage { + struct srcu_node *node; + struct srcu_node *level[3]; + int srcu_size_state; + struct mutex srcu_cb_mutex; + spinlock_t lock; + struct mutex srcu_gp_mutex; + long unsigned int srcu_gp_seq; + long unsigned int srcu_gp_seq_needed; + long unsigned int srcu_gp_seq_needed_exp; + long unsigned int srcu_gp_start; + long unsigned int srcu_last_gp_end; + long unsigned int srcu_size_jiffies; + long unsigned int srcu_n_lock_retries; + long unsigned int srcu_n_exp_nodelay; + bool sda_is_static; + long unsigned int srcu_barrier_seq; + struct mutex srcu_barrier_mutex; + struct completion srcu_barrier_completion; + atomic_t srcu_barrier_cpu_cnt; + long unsigned int reschedule_jiffies; + long unsigned int reschedule_count; + struct delayed_work work; + struct srcu_struct *srcu_ssp; +}; + +struct list_lru_one { + struct list_head list; + long int nr_items; +}; + +struct list_lru_node { + spinlock_t lock; + struct list_lru_one lru; + long int nr_items; + long: 64; + long: 64; + long: 64; +}; + +enum migrate_mode { + MIGRATE_ASYNC = 0, + MIGRATE_SYNC_LIGHT = 1, + MIGRATE_SYNC = 2, +}; + +struct exception_table_entry { + int insn; + int fixup; + short int type; + short int data; +}; + +struct cgroup_base_stat { + struct task_cputime cputime; + u64 ntime; +}; + +struct bpf_prog_array; + +struct cgroup_bpf { + struct bpf_prog_array *effective[38]; + struct hlist_head progs[38]; + u8 flags[38]; + struct list_head storages; + struct bpf_prog_array *inactive; + struct percpu_ref refcnt; + struct work_struct release_work; +}; + +struct cgroup_freezer_state { + bool freeze; + int e_freeze; + int nr_frozen_descendants; + int nr_frozen_tasks; +}; + +struct cgroup_root; + +struct cgroup_rstat_cpu; + +struct psi_group; + +struct cgroup { + struct cgroup_subsys_state self; + long unsigned int flags; + int level; + int max_depth; + int nr_descendants; + int nr_dying_descendants; + int max_descendants; + int nr_populated_csets; + int nr_populated_domain_children; + int nr_populated_threaded_children; + int nr_threaded_children; + unsigned int kill_seq; + struct kernfs_node *kn; + struct cgroup_file procs_file; + struct cgroup_file events_file; + struct cgroup_file psi_files[3]; + u16 subtree_control; + u16 subtree_ss_mask; + u16 old_subtree_control; + u16 old_subtree_ss_mask; + struct cgroup_subsys_state *subsys[13]; + int nr_dying_subsys[13]; + struct cgroup_root *root; + struct list_head cset_links; + struct list_head e_csets[13]; + struct cgroup *dom_cgrp; + struct cgroup *old_dom_cgrp; + struct cgroup_rstat_cpu *rstat_cpu; + struct list_head rstat_css_list; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct cacheline_padding _pad_; + struct cgroup *rstat_flush_next; + struct cgroup_base_stat last_bstat; + struct cgroup_base_stat bstat; + struct prev_cputime prev_cputime; + struct list_head pidlists; + struct mutex pidlist_mutex; + wait_queue_head_t offline_waitq; + struct work_struct release_agent_work; + struct psi_group *psi; + struct cgroup_bpf bpf; + struct cgroup_freezer_state freezer; + struct bpf_local_storage *bpf_cgrp_storage; + struct cgroup *ancestors[0]; + long: 64; +}; + +typedef int proc_handler(const struct ctl_table *, int, void *, size_t *, loff_t *); + +struct ctl_table_poll; + +struct ctl_table { + const char *procname; + void *data; + int maxlen; + umode_t mode; + proc_handler *proc_handler; + struct ctl_table_poll *poll; + void *extra1; + void *extra2; +}; + +struct ctl_table_poll { + atomic_t event; + wait_queue_head_t wait; +}; + +struct ctl_node { + struct rb_node node; + struct ctl_table_header *header; +}; + +struct ctl_table_root { + struct ctl_table_set default_set; + struct ctl_table_set * (*lookup)(struct ctl_table_root *); + void (*set_ownership)(struct ctl_table_header *, kuid_t *, kgid_t *); + int (*permissions)(struct ctl_table_header *, const struct ctl_table *); +}; + +struct key_tag { + struct callback_head rcu; + refcount_t usage; + bool removed; +}; + +typedef int (*request_key_actor_t)(struct key *, void *); + +struct key_preparsed_payload; + +struct key_match_data; + +struct kernel_pkey_params; + +struct kernel_pkey_query; + +struct key_type { + const char *name; + size_t def_datalen; + unsigned int flags; + int (*vet_description)(const char *); + int (*preparse)(struct key_preparsed_payload *); + void (*free_preparse)(struct key_preparsed_payload *); + int (*instantiate)(struct key *, struct key_preparsed_payload *); + int (*update)(struct key *, struct key_preparsed_payload *); + int (*match_preparse)(struct key_match_data *); + void (*match_free)(struct key_match_data *); + void (*revoke)(struct key *); + void (*destroy)(struct key *); + void (*describe)(const struct key *, struct seq_file *); + long int (*read)(const struct key *, char *, size_t); + request_key_actor_t request_key; + struct key_restriction * (*lookup_restriction)(const char *); + int (*asym_query)(const struct kernel_pkey_params *, struct kernel_pkey_query *); + int (*asym_eds_op)(struct kernel_pkey_params *, const void *, void *); + int (*asym_verify_signature)(struct kernel_pkey_params *, const void *, const void *); + struct list_head link; + struct lock_class_key lock_class; +}; + +typedef int (*key_restrict_link_func_t)(struct key *, const struct key_type *, const union key_payload *, struct key *); + +struct key_restriction { + key_restrict_link_func_t check; + struct key *key; + struct key_type *keytype; +}; + +struct user_struct { + refcount_t __count; + struct percpu_counter epoll_watches; + long unsigned int unix_inflight; + atomic_long_t pipe_bufs; + struct hlist_node uidhash_node; + kuid_t uid; + atomic_long_t locked_vm; + struct ratelimit_state ratelimit; +}; + +struct group_info { + refcount_t usage; + int ngroups; + kgid_t gid[0]; +}; + +struct hrtimer_cpu_base { + raw_spinlock_t lock; + unsigned int cpu; + unsigned int active_bases; + unsigned int clock_was_set_seq; + unsigned int hres_active: 1; + unsigned int in_hrtirq: 1; + unsigned int hang_detected: 1; + unsigned int softirq_activated: 1; + unsigned int online: 1; + ktime_t expires_next; + struct hrtimer *next_timer; + ktime_t softirq_expires_next; + struct hrtimer *softirq_next_timer; + long: 64; + struct hrtimer_clock_base clock_base[8]; + call_single_data_t csd; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct core_thread { + struct task_struct *task; + struct core_thread *next; +}; + +struct core_state { + atomic_t nr_threads; + struct core_thread dumper; + struct completion startup; +}; + +struct taskstats { + __u16 version; + __u32 ac_exitcode; + __u8 ac_flag; + __u8 ac_nice; + __u64 cpu_count; + __u64 cpu_delay_total; + __u64 blkio_count; + __u64 blkio_delay_total; + __u64 swapin_count; + __u64 swapin_delay_total; + __u64 cpu_run_real_total; + __u64 cpu_run_virtual_total; + char ac_comm[32]; + __u8 ac_sched; + __u8 ac_pad[3]; + long: 0; + __u32 ac_uid; + __u32 ac_gid; + __u32 ac_pid; + __u32 ac_ppid; + __u32 ac_btime; + __u64 ac_etime; + __u64 ac_utime; + __u64 ac_stime; + __u64 ac_minflt; + __u64 ac_majflt; + __u64 coremem; + __u64 virtmem; + __u64 hiwater_rss; + __u64 hiwater_vm; + __u64 read_char; + __u64 write_char; + __u64 read_syscalls; + __u64 write_syscalls; + __u64 read_bytes; + __u64 write_bytes; + __u64 cancelled_write_bytes; + __u64 nvcsw; + __u64 nivcsw; + __u64 ac_utimescaled; + __u64 ac_stimescaled; + __u64 cpu_scaled_run_real_total; + __u64 freepages_count; + __u64 freepages_delay_total; + __u64 thrashing_count; + __u64 thrashing_delay_total; + __u64 ac_btime64; + __u64 compact_count; + __u64 compact_delay_total; + __u32 ac_tgid; + __u64 ac_tgetime; + __u64 ac_exe_dev; + __u64 ac_exe_inode; + __u64 wpcopy_count; + __u64 wpcopy_delay_total; + __u64 irq_count; + __u64 irq_delay_total; +}; + +struct delayed_call { + void (*fn)(void *); + void *arg; +}; + +typedef struct { + uid_t val; +} vfsuid_t; + +typedef struct { + gid_t val; +} vfsgid_t; + +typedef void percpu_ref_func_t(struct percpu_ref *); + +struct percpu_ref_data { + atomic_long_t count; + percpu_ref_func_t *release; + percpu_ref_func_t *confirm_switch; + bool force_atomic: 1; + bool allow_reinit: 1; + struct callback_head rcu; + struct percpu_ref *ref; +}; + +struct wait_page_queue; + +struct kiocb { + struct file *ki_filp; + loff_t ki_pos; + void (*ki_complete)(struct kiocb *, long int); + void *private; + int ki_flags; + u16 ki_ioprio; + union { + struct wait_page_queue *ki_waitq; + ssize_t (*dio_complete)(void *); + }; +}; + +struct iattr { + unsigned int ia_valid; + umode_t ia_mode; + union { + kuid_t ia_uid; + vfsuid_t ia_vfsuid; + }; + union { + kgid_t ia_gid; + vfsgid_t ia_vfsgid; + }; + loff_t ia_size; + struct timespec64 ia_atime; + struct timespec64 ia_mtime; + struct timespec64 ia_ctime; + struct file *ia_file; +}; + +typedef __kernel_uid32_t projid_t; + +typedef struct { + projid_t val; +} kprojid_t; + +enum quota_type { + USRQUOTA = 0, + GRPQUOTA = 1, + PRJQUOTA = 2, +}; + +struct kqid { + union { + kuid_t uid; + kgid_t gid; + kprojid_t projid; + }; + enum quota_type type; +}; + +struct mem_dqblk { + qsize_t dqb_bhardlimit; + qsize_t dqb_bsoftlimit; + qsize_t dqb_curspace; + qsize_t dqb_rsvspace; + qsize_t dqb_ihardlimit; + qsize_t dqb_isoftlimit; + qsize_t dqb_curinodes; + time64_t dqb_btime; + time64_t dqb_itime; +}; + +struct dquot { + struct hlist_node dq_hash; + struct list_head dq_inuse; + struct list_head dq_free; + struct list_head dq_dirty; + struct mutex dq_lock; + spinlock_t dq_dqb_lock; + atomic_t dq_count; + struct super_block *dq_sb; + struct kqid dq_id; + loff_t dq_off; + long unsigned int dq_flags; + struct mem_dqblk dq_dqb; +}; + +struct quota_format_type { + int qf_fmt_id; + const struct quota_format_ops *qf_ops; + struct module *qf_owner; + struct quota_format_type *qf_next; +}; + +struct quota_format_ops { + int (*check_quota_file)(struct super_block *, int); + int (*read_file_info)(struct super_block *, int); + int (*write_file_info)(struct super_block *, int); + int (*free_file_info)(struct super_block *, int); + int (*read_dqblk)(struct dquot *); + int (*commit_dqblk)(struct dquot *); + int (*release_dqblk)(struct dquot *); + int (*get_next_id)(struct super_block *, struct kqid *); +}; + +struct dquot_operations { + int (*write_dquot)(struct dquot *); + struct dquot * (*alloc_dquot)(struct super_block *, int); + void (*destroy_dquot)(struct dquot *); + int (*acquire_dquot)(struct dquot *); + int (*release_dquot)(struct dquot *); + int (*mark_dirty)(struct dquot *); + int (*write_info)(struct super_block *, int); + qsize_t * (*get_reserved_space)(struct inode *); + int (*get_projid)(struct inode *, kprojid_t *); + int (*get_inode_usage)(struct inode *, qsize_t *); + int (*get_next_id)(struct super_block *, struct kqid *); +}; + +struct qc_dqblk { + int d_fieldmask; + u64 d_spc_hardlimit; + u64 d_spc_softlimit; + u64 d_ino_hardlimit; + u64 d_ino_softlimit; + u64 d_space; + u64 d_ino_count; + s64 d_ino_timer; + s64 d_spc_timer; + int d_ino_warns; + int d_spc_warns; + u64 d_rt_spc_hardlimit; + u64 d_rt_spc_softlimit; + u64 d_rt_space; + s64 d_rt_spc_timer; + int d_rt_spc_warns; +}; + +struct qc_type_state { + unsigned int flags; + unsigned int spc_timelimit; + unsigned int ino_timelimit; + unsigned int rt_spc_timelimit; + unsigned int spc_warnlimit; + unsigned int ino_warnlimit; + unsigned int rt_spc_warnlimit; + long long unsigned int ino; + blkcnt_t blocks; + blkcnt_t nextents; +}; + +struct qc_state { + unsigned int s_incoredqs; + struct qc_type_state s_state[3]; +}; + +struct qc_info { + int i_fieldmask; + unsigned int i_flags; + unsigned int i_spc_timelimit; + unsigned int i_ino_timelimit; + unsigned int i_rt_spc_timelimit; + unsigned int i_spc_warnlimit; + unsigned int i_ino_warnlimit; + unsigned int i_rt_spc_warnlimit; +}; + +struct quotactl_ops { + int (*quota_on)(struct super_block *, int, int, const struct path *); + int (*quota_off)(struct super_block *, int); + int (*quota_enable)(struct super_block *, unsigned int); + int (*quota_disable)(struct super_block *, unsigned int); + int (*quota_sync)(struct super_block *, int); + int (*set_info)(struct super_block *, int, struct qc_info *); + int (*get_dqblk)(struct super_block *, struct kqid, struct qc_dqblk *); + int (*get_nextdqblk)(struct super_block *, struct kqid *, struct qc_dqblk *); + int (*set_dqblk)(struct super_block *, struct kqid, struct qc_dqblk *); + int (*get_state)(struct super_block *, struct qc_state *); + int (*rm_xquota)(struct super_block *, unsigned int); +}; + +enum module_state { + MODULE_STATE_LIVE = 0, + MODULE_STATE_COMING = 1, + MODULE_STATE_GOING = 2, + MODULE_STATE_UNFORMED = 3, +}; + +struct kset; + +struct kobj_type; + +struct kobject { + const char *name; + struct list_head entry; + struct kobject *parent; + struct kset *kset; + const struct kobj_type *ktype; + struct kernfs_node *sd; + struct kref kref; + unsigned int state_initialized: 1; + unsigned int state_in_sysfs: 1; + unsigned int state_add_uevent_sent: 1; + unsigned int state_remove_uevent_sent: 1; + unsigned int uevent_suppress: 1; +}; + +struct module_param_attrs; + +struct module_kobject { + struct kobject kobj; + struct module *mod; + struct kobject *drivers_dir; + struct module_param_attrs *mp; + struct completion *kobj_completion; +}; + +struct latch_tree_node { + struct rb_node node[2]; +}; + +struct mod_tree_node { + struct module *mod; + struct latch_tree_node node; +}; + +struct module_memory { + void *base; + unsigned int size; + struct mod_tree_node mtn; +}; + +struct mod_plt_sec { + int plt_shndx; + int plt_num_entries; + int plt_max_entries; +}; + +struct plt_entry; + +struct mod_arch_specific { + struct mod_plt_sec core; + struct mod_plt_sec init; + struct plt_entry *ftrace_trampolines; + struct plt_entry *init_ftrace_trampolines; +}; + +struct elf64_sym; + +typedef struct elf64_sym Elf64_Sym; + +struct mod_kallsyms { + Elf64_Sym *symtab; + unsigned int num_symtab; + char *strtab; + char *typetab; +}; + +typedef const int tracepoint_ptr_t; + +struct module_attribute; + +struct kernel_symbol; + +struct kernel_param; + +struct module_sect_attrs; + +struct module_notes_attrs; + +struct bpf_raw_event_map; + +struct trace_eval_map; + +struct error_injection_entry; + +struct module { + enum module_state state; + struct list_head list; + char name[56]; + struct module_kobject mkobj; + struct module_attribute *modinfo_attrs; + const char *version; + const char *srcversion; + struct kobject *holders_dir; + const struct kernel_symbol *syms; + const s32 *crcs; + unsigned int num_syms; + struct mutex param_lock; + struct kernel_param *kp; + unsigned int num_kp; + unsigned int num_gpl_syms; + const struct kernel_symbol *gpl_syms; + const s32 *gpl_crcs; + bool using_gplonly_symbols; + bool async_probe_requested; + unsigned int num_exentries; + struct exception_table_entry *extable; + int (*init)(void); + struct module_memory mem[7]; + struct mod_arch_specific arch; + long unsigned int taints; + unsigned int num_bugs; + struct list_head bug_list; + struct bug_entry *bug_table; + struct mod_kallsyms *kallsyms; + struct mod_kallsyms core_kallsyms; + struct module_sect_attrs *sect_attrs; + struct module_notes_attrs *notes_attrs; + char *args; + void *percpu; + unsigned int percpu_size; + void *noinstr_text_start; + unsigned int noinstr_text_size; + unsigned int num_tracepoints; + tracepoint_ptr_t *tracepoints_ptrs; + unsigned int num_srcu_structs; + struct srcu_struct **srcu_struct_ptrs; + unsigned int num_bpf_raw_events; + struct bpf_raw_event_map *bpf_raw_events; + unsigned int btf_data_size; + unsigned int btf_base_data_size; + void *btf_data; + void *btf_base_data; + struct jump_entry *jump_entries; + unsigned int num_jump_entries; + unsigned int num_trace_bprintk_fmt; + const char **trace_bprintk_fmt_start; + struct trace_event_call **trace_events; + unsigned int num_trace_events; + struct trace_eval_map **trace_evals; + unsigned int num_trace_evals; + unsigned int num_ftrace_callsites; + long unsigned int *ftrace_callsites; + void *kprobes_text_start; + unsigned int kprobes_text_size; + long unsigned int *kprobe_blacklist; + unsigned int num_kprobe_blacklist; + struct error_injection_entry *ei_funcs; + unsigned int num_ei_funcs; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct writeback_control; + +struct readahead_control; + +struct swap_info_struct; + +struct address_space_operations { + int (*writepage)(struct page *, struct writeback_control *); + int (*read_folio)(struct file *, struct folio *); + int (*writepages)(struct address_space *, struct writeback_control *); + bool (*dirty_folio)(struct address_space *, struct folio *); + void (*readahead)(struct readahead_control *); + int (*write_begin)(struct file *, struct address_space *, loff_t, unsigned int, struct folio **, void **); + int (*write_end)(struct file *, struct address_space *, loff_t, unsigned int, unsigned int, struct folio *, void *); + sector_t (*bmap)(struct address_space *, sector_t); + void (*invalidate_folio)(struct folio *, size_t, size_t); + bool (*release_folio)(struct folio *, gfp_t); + void (*free_folio)(struct folio *); + ssize_t (*direct_IO)(struct kiocb *, struct iov_iter *); + int (*migrate_folio)(struct address_space *, struct folio *, struct folio *, enum migrate_mode); + int (*launder_folio)(struct folio *); + bool (*is_partially_uptodate)(struct folio *, size_t, size_t); + void (*is_dirty_writeback)(struct folio *, bool *, bool *); + int (*error_remove_folio)(struct address_space *, struct folio *); + int (*swap_activate)(struct swap_info_struct *, struct file *, sector_t *); + void (*swap_deactivate)(struct file *); + int (*swap_rw)(struct kiocb *, struct iov_iter *); +}; + +enum writeback_sync_modes { + WB_SYNC_NONE = 0, + WB_SYNC_ALL = 1, +}; + +struct folio_batch { + unsigned char nr; + unsigned char i; + bool percpu_pvec_drained; + struct folio *folios[31]; +}; + +struct swap_iocb; + +struct writeback_control { + long int nr_to_write; + long int pages_skipped; + loff_t range_start; + loff_t range_end; + enum writeback_sync_modes sync_mode; + unsigned int for_kupdate: 1; + unsigned int for_background: 1; + unsigned int tagged_writepages: 1; + unsigned int for_reclaim: 1; + unsigned int range_cyclic: 1; + unsigned int for_sync: 1; + unsigned int unpinned_netfs_wb: 1; + unsigned int no_cgroup_owner: 1; + struct swap_iocb **swap_plug; + struct list_head *list; + struct folio_batch fbatch; + long unsigned int index; + int saved_err; + struct bdi_writeback *wb; + struct inode *inode; + int wb_id; + int wb_lcand_id; + int wb_tcand_id; + size_t wb_bytes; + size_t wb_lcand_bytes; + size_t wb_tcand_bytes; +}; + +struct iovec { + void *iov_base; + __kernel_size_t iov_len; +}; + +struct kvec; + +struct bio_vec; + +struct folio_queue; + +struct iov_iter { + u8 iter_type; + bool nofault; + bool data_source; + size_t iov_offset; + union { + struct iovec __ubuf_iovec; + struct { + union { + const struct iovec *__iov; + const struct kvec *kvec; + const struct bio_vec *bvec; + const struct folio_queue *folioq; + struct xarray *xarray; + void *ubuf; + }; + size_t count; + }; + }; + union { + long unsigned int nr_segs; + u8 folioq_slot; + loff_t xarray_start; + }; +}; + +struct fiemap_extent_info; + +struct fileattr; + +struct offset_ctx; + +struct inode_operations { + struct dentry * (*lookup)(struct inode *, struct dentry *, unsigned int); + const char * (*get_link)(struct dentry *, struct inode *, struct delayed_call *); + int (*permission)(struct mnt_idmap *, struct inode *, int); + struct posix_acl * (*get_inode_acl)(struct inode *, int, bool); + int (*readlink)(struct dentry *, char *, int); + int (*create)(struct mnt_idmap *, struct inode *, struct dentry *, umode_t, bool); + int (*link)(struct dentry *, struct inode *, struct dentry *); + int (*unlink)(struct inode *, struct dentry *); + int (*symlink)(struct mnt_idmap *, struct inode *, struct dentry *, const char *); + int (*mkdir)(struct mnt_idmap *, struct inode *, struct dentry *, umode_t); + int (*rmdir)(struct inode *, struct dentry *); + int (*mknod)(struct mnt_idmap *, struct inode *, struct dentry *, umode_t, dev_t); + int (*rename)(struct mnt_idmap *, struct inode *, struct dentry *, struct inode *, struct dentry *, unsigned int); + int (*setattr)(struct mnt_idmap *, struct dentry *, struct iattr *); + int (*getattr)(struct mnt_idmap *, const struct path *, struct kstat *, u32, unsigned int); + ssize_t (*listxattr)(struct dentry *, char *, size_t); + int (*fiemap)(struct inode *, struct fiemap_extent_info *, u64, u64); + int (*update_time)(struct inode *, int); + int (*atomic_open)(struct inode *, struct dentry *, struct file *, unsigned int, umode_t); + int (*tmpfile)(struct mnt_idmap *, struct inode *, struct file *, umode_t); + struct posix_acl * (*get_acl)(struct mnt_idmap *, struct dentry *, int); + int (*set_acl)(struct mnt_idmap *, struct dentry *, struct posix_acl *, int); + int (*fileattr_set)(struct mnt_idmap *, struct dentry *, struct fileattr *); + int (*fileattr_get)(struct dentry *, struct fileattr *); + struct offset_ctx * (*get_offset_ctx)(struct inode *); + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct fprop_local_percpu { + struct percpu_counter events; + unsigned int period; + raw_spinlock_t lock; +}; + +enum wb_reason { + WB_REASON_BACKGROUND = 0, + WB_REASON_VMSCAN = 1, + WB_REASON_SYNC = 2, + WB_REASON_PERIODIC = 3, + WB_REASON_LAPTOP_TIMER = 4, + WB_REASON_FS_FREE_SPACE = 5, + WB_REASON_FORKER_THREAD = 6, + WB_REASON_FOREIGN_FLUSH = 7, + WB_REASON_MAX = 8, +}; + +struct bdi_writeback { + struct backing_dev_info *bdi; + long unsigned int state; + long unsigned int last_old_flush; + struct list_head b_dirty; + struct list_head b_io; + struct list_head b_more_io; + struct list_head b_dirty_time; + spinlock_t list_lock; + atomic_t writeback_inodes; + struct percpu_counter stat[4]; + long unsigned int bw_time_stamp; + long unsigned int dirtied_stamp; + long unsigned int written_stamp; + long unsigned int write_bandwidth; + long unsigned int avg_write_bandwidth; + long unsigned int dirty_ratelimit; + long unsigned int balanced_dirty_ratelimit; + struct fprop_local_percpu completions; + int dirty_exceeded; + enum wb_reason start_all_reason; + spinlock_t work_lock; + struct list_head work_list; + struct delayed_work dwork; + struct delayed_work bw_dwork; + struct list_head bdi_node; + struct percpu_ref refcnt; + struct fprop_local_percpu memcg_completions; + struct cgroup_subsys_state *memcg_css; + struct cgroup_subsys_state *blkcg_css; + struct list_head memcg_node; + struct list_head blkcg_node; + struct list_head b_attached; + struct list_head offline_node; + union { + struct work_struct release_work; + struct callback_head rcu; + }; +}; + +struct fown_struct { + struct file *file; + rwlock_t lock; + struct pid *pid; + enum pid_type pid_type; + kuid_t uid; + kuid_t euid; + int signum; +}; + +struct fasync_struct { + rwlock_t fa_lock; + int magic; + int fa_fd; + struct fasync_struct *fa_next; + struct file *fa_file; + struct callback_head fa_rcu; +}; + +enum freeze_holder { + FREEZE_HOLDER_KERNEL = 1, + FREEZE_HOLDER_USERSPACE = 2, + FREEZE_MAY_NEST = 4, +}; + +struct kstatfs; + +struct super_operations { + struct inode * (*alloc_inode)(struct super_block *); + void (*destroy_inode)(struct inode *); + void (*free_inode)(struct inode *); + void (*dirty_inode)(struct inode *, int); + int (*write_inode)(struct inode *, struct writeback_control *); + int (*drop_inode)(struct inode *); + void (*evict_inode)(struct inode *); + void (*put_super)(struct super_block *); + int (*sync_fs)(struct super_block *, int); + int (*freeze_super)(struct super_block *, enum freeze_holder); + int (*freeze_fs)(struct super_block *); + int (*thaw_super)(struct super_block *, enum freeze_holder); + int (*unfreeze_fs)(struct super_block *); + int (*statfs)(struct dentry *, struct kstatfs *); + int (*remount_fs)(struct super_block *, int *, char *); + void (*umount_begin)(struct super_block *); + int (*show_options)(struct seq_file *, struct dentry *); + int (*show_devname)(struct seq_file *, struct dentry *); + int (*show_path)(struct seq_file *, struct dentry *); + int (*show_stats)(struct seq_file *, struct dentry *); + ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t); + ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t); + struct dquot ** (*get_dquots)(struct inode *); + long int (*nr_cached_objects)(struct super_block *, struct shrink_control *); + long int (*free_cached_objects)(struct super_block *, struct shrink_control *); + void (*shutdown)(struct super_block *); +}; + +struct fid; + +struct iomap; + +struct export_operations { + int (*encode_fh)(struct inode *, __u32 *, int *, struct inode *); + struct dentry * (*fh_to_dentry)(struct super_block *, struct fid *, int, int); + struct dentry * (*fh_to_parent)(struct super_block *, struct fid *, int, int); + int (*get_name)(struct dentry *, char *, struct dentry *); + struct dentry * (*get_parent)(struct dentry *); + int (*commit_metadata)(struct inode *); + int (*get_uuid)(struct super_block *, u8 *, u32 *, u64 *); + int (*map_blocks)(struct inode *, loff_t, u64, struct iomap *, bool, u32 *); + int (*commit_blocks)(struct inode *, struct iomap *, int, struct iattr *); + long unsigned int flags; +}; + +struct xattr_handler { + const char *name; + const char *prefix; + int flags; + bool (*list)(struct dentry *); + int (*get)(const struct xattr_handler *, struct dentry *, struct inode *, const char *, void *, size_t); + int (*set)(const struct xattr_handler *, struct mnt_idmap *, struct dentry *, struct inode *, const char *, const void *, size_t, int); +}; + +union fscrypt_policy; + +struct fscrypt_operations { + unsigned int needs_bounce_pages: 1; + unsigned int has_32bit_inodes: 1; + unsigned int supports_subblock_data_units: 1; + const char *legacy_key_prefix; + int (*get_context)(struct inode *, void *, size_t); + int (*set_context)(struct inode *, const void *, size_t, void *); + const union fscrypt_policy * (*get_dummy_policy)(struct super_block *); + bool (*empty_dir)(struct inode *); + bool (*has_stable_inodes)(struct super_block *); + struct block_device ** (*get_devices)(struct super_block *, unsigned int *); +}; + +enum dl_dev_state { + DL_DEV_NO_DRIVER = 0, + DL_DEV_PROBING = 1, + DL_DEV_DRIVER_BOUND = 2, + DL_DEV_UNBINDING = 3, +}; + +struct dev_links_info { + struct list_head suppliers; + struct list_head consumers; + struct list_head defer_sync; + enum dl_dev_state status; +}; + +struct pm_message { + int event; +}; + +typedef struct pm_message pm_message_t; + +struct pm_subsys_data; + +struct device; + +struct dev_pm_qos; + +struct dev_pm_info { + pm_message_t power_state; + bool can_wakeup: 1; + bool async_suspend: 1; + bool in_dpm_list: 1; + bool is_prepared: 1; + bool is_suspended: 1; + bool is_noirq_suspended: 1; + bool is_late_suspended: 1; + bool no_pm: 1; + bool early_init: 1; + bool direct_complete: 1; + u32 driver_flags; + spinlock_t lock; + bool should_wakeup: 1; + struct pm_subsys_data *subsys_data; + void (*set_latency_tolerance)(struct device *, s32); + struct dev_pm_qos *qos; +}; + +struct irq_domain; + +struct msi_device_data; + +struct dev_msi_info { + struct irq_domain *domain; + struct msi_device_data *data; +}; + +struct dev_archdata {}; + +struct dev_iommu; + +enum device_removable { + DEVICE_REMOVABLE_NOT_SUPPORTED = 0, + DEVICE_REMOVABLE_UNKNOWN = 1, + DEVICE_FIXED = 2, + DEVICE_REMOVABLE = 3, +}; + +struct device_private; + +struct device_type; + +struct bus_type; + +struct device_driver; + +struct dev_pm_domain; + +struct bus_dma_region; + +struct device_dma_parameters; + +struct dma_coherent_mem; + +struct io_tlb_mem; + +struct device_node; + +struct fwnode_handle; + +struct class; + +struct attribute_group; + +struct iommu_group; + +struct device_physical_location; + +struct device { + struct kobject kobj; + struct device *parent; + struct device_private *p; + const char *init_name; + const struct device_type *type; + const struct bus_type *bus; + struct device_driver *driver; + void *platform_data; + void *driver_data; + struct mutex mutex; + struct dev_links_info links; + struct dev_pm_info power; + struct dev_pm_domain *pm_domain; + struct dev_msi_info msi; + u64 *dma_mask; + u64 coherent_dma_mask; + u64 bus_dma_limit; + const struct bus_dma_region *dma_range_map; + struct device_dma_parameters *dma_parms; + struct list_head dma_pools; + struct dma_coherent_mem *dma_mem; + struct io_tlb_mem *dma_io_tlb_mem; + struct dev_archdata archdata; + struct device_node *of_node; + struct fwnode_handle *fwnode; + dev_t devt; + u32 id; + spinlock_t devres_lock; + struct list_head devres_head; + const struct class *class; + const struct attribute_group **groups; + void (*release)(struct device *); + struct iommu_group *iommu_group; + struct dev_iommu *iommu; + struct device_physical_location *physical_location; + enum device_removable removable; + bool offline_disabled: 1; + bool offline: 1; + bool of_node_reused: 1; + bool state_synced: 1; + bool can_match: 1; + bool dma_coherent: 1; + bool dma_skip_sync: 1; +}; + +struct request_queue; + +struct disk_stats; + +struct blk_holder_ops; + +struct partition_meta_info; + +struct block_device { + sector_t bd_start_sect; + sector_t bd_nr_sectors; + struct gendisk *bd_disk; + struct request_queue *bd_queue; + struct disk_stats *bd_stats; + long unsigned int bd_stamp; + atomic_t __bd_flags; + dev_t bd_dev; + struct address_space *bd_mapping; + atomic_t bd_openers; + spinlock_t bd_size_lock; + void *bd_claiming; + void *bd_holder; + const struct blk_holder_ops *bd_holder_ops; + struct mutex bd_holder_lock; + int bd_holders; + struct kobject *bd_holder_dir; + atomic_t bd_fsfreeze_count; + struct mutex bd_fsfreeze_mutex; + struct partition_meta_info *bd_meta_info; + int bd_writers; + void *bd_security; + struct device bd_device; +}; + +struct backing_dev_info { + u64 id; + struct rb_node rb_node; + struct list_head bdi_list; + long unsigned int ra_pages; + long unsigned int io_pages; + struct kref refcnt; + unsigned int capabilities; + unsigned int min_ratio; + unsigned int max_ratio; + unsigned int max_prop_frac; + atomic_long_t tot_write_bandwidth; + long unsigned int last_bdp_sleep; + struct bdi_writeback wb; + struct list_head wb_list; + struct xarray cgwb_tree; + struct mutex cgwb_release_mutex; + struct rw_semaphore wb_switch_rwsem; + wait_queue_head_t wb_waitq; + struct device *dev; + char dev_name[64]; + struct device *owner; + struct timer_list laptop_mode_wb_timer; + struct dentry *debug_dir; +}; + +typedef bool (*filldir_t)(struct dir_context *, const char *, int, loff_t, u64, unsigned int); + +struct dir_context { + filldir_t actor; + loff_t pos; +}; + +typedef void (*poll_queue_proc)(struct file *, wait_queue_head_t *, struct poll_table_struct *); + +struct poll_table_struct { + poll_queue_proc _qproc; + __poll_t _key; +}; + +struct seq_operations; + +struct seq_file { + char *buf; + size_t size; + size_t from; + size_t count; + size_t pad_until; + loff_t index; + loff_t read_pos; + struct mutex lock; + const struct seq_operations *op; + int poll_event; + const struct file *file; + void *private; +}; + +struct offset_ctx { + struct maple_tree mt; + long unsigned int next_offset; +}; + +struct p_log; + +struct fs_parameter; + +struct fs_parse_result; + +typedef int fs_param_type(struct p_log *, const struct fs_parameter_spec *, struct fs_parameter *, struct fs_parse_result *); + +struct fs_parameter_spec { + const char *name; + fs_param_type *type; + u8 opt; + short unsigned int flags; + const void *data; +}; + +typedef __u32 blk_opf_t; + +typedef u8 blk_status_t; + +struct bvec_iter { + sector_t bi_sector; + unsigned int bi_size; + unsigned int bi_idx; + unsigned int bi_bvec_done; +} __attribute__((packed)); + +typedef unsigned int blk_qc_t; + +typedef void bio_end_io_t(struct bio *); + +struct bio_issue { + u64 value; +}; + +struct bio_vec { + struct page *bv_page; + unsigned int bv_len; + unsigned int bv_offset; +}; + +struct blkcg_gq; + +struct bio_set; + +struct bio { + struct bio *bi_next; + struct block_device *bi_bdev; + blk_opf_t bi_opf; + short unsigned int bi_flags; + short unsigned int bi_ioprio; + enum rw_hint bi_write_hint; + blk_status_t bi_status; + atomic_t __bi_remaining; + struct bvec_iter bi_iter; + union { + blk_qc_t bi_cookie; + unsigned int __bi_nr_segments; + }; + bio_end_io_t *bi_end_io; + void *bi_private; + struct blkcg_gq *bi_blkg; + struct bio_issue bi_issue; + short unsigned int bi_vcnt; + short unsigned int bi_max_vecs; + atomic_t __bi_cnt; + struct bio_vec *bi_io_vec; + struct bio_set *bi_pool; + struct bio_vec bi_inline_vecs[0]; +}; + +struct tracepoint_func { + void *func; + void *data; + int prio; +}; + +struct tracepoint { + const char *name; + struct static_key key; + struct static_call_key *static_call_key; + void *static_call_tramp; + void *iterator; + void *probestub; + int (*regfunc)(void); + void (*unregfunc)(void); + struct tracepoint_func *funcs; +}; + +struct bpf_raw_event_map { + struct tracepoint *tp; + void *bpf_func; + u32 num_args; + u32 writable_size; + long: 64; +}; + +struct dev_pagemap_ops { + void (*page_free)(struct page *); + vm_fault_t (*migrate_to_ram)(struct vm_fault *); + int (*memory_failure)(struct dev_pagemap *, long unsigned int, long unsigned int, int); +}; + +struct kernfs_root; + +struct kernfs_elem_dir { + long unsigned int subdirs; + struct rb_root children; + struct kernfs_root *root; + long unsigned int rev; +}; + +struct kernfs_elem_symlink { + struct kernfs_node *target_kn; +}; + +struct kernfs_ops; + +struct kernfs_open_node; + +struct kernfs_elem_attr { + const struct kernfs_ops *ops; + struct kernfs_open_node *open; + loff_t size; + struct kernfs_node *notify_next; +}; + +struct kernfs_iattrs; + +struct kernfs_node { + atomic_t count; + atomic_t active; + struct kernfs_node *parent; + const char *name; + struct rb_node rb; + const void *ns; + unsigned int hash; + short unsigned int flags; + umode_t mode; + union { + struct kernfs_elem_dir dir; + struct kernfs_elem_symlink symlink; + struct kernfs_elem_attr attr; + }; + u64 id; + void *priv; + struct kernfs_iattrs *iattr; + struct callback_head rcu; +}; + +struct kernfs_open_file; + +struct kernfs_ops { + int (*open)(struct kernfs_open_file *); + void (*release)(struct kernfs_open_file *); + int (*seq_show)(struct seq_file *, void *); + void * (*seq_start)(struct seq_file *, loff_t *); + void * (*seq_next)(struct seq_file *, void *, loff_t *); + void (*seq_stop)(struct seq_file *, void *); + ssize_t (*read)(struct kernfs_open_file *, char *, size_t, loff_t); + size_t atomic_write_len; + bool prealloc; + ssize_t (*write)(struct kernfs_open_file *, char *, size_t, loff_t); + __poll_t (*poll)(struct kernfs_open_file *, struct poll_table_struct *); + int (*mmap)(struct kernfs_open_file *, struct vm_area_struct *); + loff_t (*llseek)(struct kernfs_open_file *, loff_t, int); +}; + +struct kernfs_open_file { + struct kernfs_node *kn; + struct file *file; + struct seq_file *seq_file; + void *priv; + struct mutex mutex; + struct mutex prealloc_mutex; + int event; + struct list_head list; + char *prealloc_buf; + size_t atomic_write_len; + bool mmapped: 1; + bool released: 1; + const struct vm_operations_struct *vm_ops; +}; + +enum kobj_ns_type { + KOBJ_NS_TYPE_NONE = 0, + KOBJ_NS_TYPE_NET = 1, + KOBJ_NS_TYPES = 2, +}; + +struct sock; + +struct kobj_ns_type_operations { + enum kobj_ns_type type; + bool (*current_may_mount)(void); + void * (*grab_current_ns)(void); + const void * (*netlink_ns)(struct sock *); + const void * (*initial_ns)(void); + void (*drop_ns)(void *); +}; + +struct attribute { + const char *name; + umode_t mode; +}; + +struct bin_attribute; + +struct attribute_group { + const char *name; + umode_t (*is_visible)(struct kobject *, struct attribute *, int); + umode_t (*is_bin_visible)(struct kobject *, struct bin_attribute *, int); + struct attribute **attrs; + struct bin_attribute **bin_attrs; +}; + +struct bin_attribute { + struct attribute attr; + size_t size; + void *private; + struct address_space * (*f_mapping)(void); + ssize_t (*read)(struct file *, struct kobject *, struct bin_attribute *, char *, loff_t, size_t); + ssize_t (*write)(struct file *, struct kobject *, struct bin_attribute *, char *, loff_t, size_t); + loff_t (*llseek)(struct file *, struct kobject *, struct bin_attribute *, loff_t, int); + int (*mmap)(struct file *, struct kobject *, struct bin_attribute *, struct vm_area_struct *); +}; + +struct sysfs_ops { + ssize_t (*show)(struct kobject *, struct attribute *, char *); + ssize_t (*store)(struct kobject *, struct attribute *, const char *, size_t); +}; + +struct kset_uevent_ops; + +struct kset { + struct list_head list; + spinlock_t list_lock; + struct kobject kobj; + const struct kset_uevent_ops *uevent_ops; +}; + +struct kobj_type { + void (*release)(struct kobject *); + const struct sysfs_ops *sysfs_ops; + const struct attribute_group **default_groups; + const struct kobj_ns_type_operations * (*child_ns_type)(const struct kobject *); + const void * (*namespace)(const struct kobject *); + void (*get_ownership)(const struct kobject *, kuid_t *, kgid_t *); +}; + +struct kobj_uevent_env { + char *argv[3]; + char *envp[64]; + int envp_idx; + char buf[2048]; + int buflen; +}; + +struct kset_uevent_ops { + int (* const filter)(const struct kobject *); + const char * (* const name)(const struct kobject *); + int (* const uevent)(const struct kobject *, struct kobj_uevent_env *); +}; + +struct dev_pm_ops { + int (*prepare)(struct device *); + void (*complete)(struct device *); + int (*suspend)(struct device *); + int (*resume)(struct device *); + int (*freeze)(struct device *); + int (*thaw)(struct device *); + int (*poweroff)(struct device *); + int (*restore)(struct device *); + int (*suspend_late)(struct device *); + int (*resume_early)(struct device *); + int (*freeze_late)(struct device *); + int (*thaw_early)(struct device *); + int (*poweroff_late)(struct device *); + int (*restore_early)(struct device *); + int (*suspend_noirq)(struct device *); + int (*resume_noirq)(struct device *); + int (*freeze_noirq)(struct device *); + int (*thaw_noirq)(struct device *); + int (*poweroff_noirq)(struct device *); + int (*restore_noirq)(struct device *); + int (*runtime_suspend)(struct device *); + int (*runtime_resume)(struct device *); + int (*runtime_idle)(struct device *); +}; + +struct pm_subsys_data { + spinlock_t lock; + unsigned int refcount; +}; + +struct dev_pm_domain { + struct dev_pm_ops ops; + int (*start)(struct device *); + void (*detach)(struct device *, bool); + int (*activate)(struct device *); + void (*sync)(struct device *); + void (*dismiss)(struct device *); + int (*set_performance_state)(struct device *, unsigned int); +}; + +struct bus_type { + const char *name; + const char *dev_name; + const struct attribute_group **bus_groups; + const struct attribute_group **dev_groups; + const struct attribute_group **drv_groups; + int (*match)(struct device *, const struct device_driver *); + int (*uevent)(const struct device *, struct kobj_uevent_env *); + int (*probe)(struct device *); + void (*sync_state)(struct device *); + void (*remove)(struct device *); + void (*shutdown)(struct device *); + const struct cpumask * (*irq_get_affinity)(struct device *, unsigned int); + int (*online)(struct device *); + int (*offline)(struct device *); + int (*suspend)(struct device *, pm_message_t); + int (*resume)(struct device *); + int (*num_vf)(struct device *); + int (*dma_configure)(struct device *); + void (*dma_cleanup)(struct device *); + const struct dev_pm_ops *pm; + bool need_parent_lock; +}; + +enum probe_type { + PROBE_DEFAULT_STRATEGY = 0, + PROBE_PREFER_ASYNCHRONOUS = 1, + PROBE_FORCE_SYNCHRONOUS = 2, +}; + +struct of_device_id; + +struct acpi_device_id; + +struct driver_private; + +struct device_driver { + const char *name; + const struct bus_type *bus; + struct module *owner; + const char *mod_name; + bool suppress_bind_attrs; + enum probe_type probe_type; + const struct of_device_id *of_match_table; + const struct acpi_device_id *acpi_match_table; + int (*probe)(struct device *); + void (*sync_state)(struct device *); + int (*remove)(struct device *); + void (*shutdown)(struct device *); + int (*suspend)(struct device *, pm_message_t); + int (*resume)(struct device *); + const struct attribute_group **groups; + const struct attribute_group **dev_groups; + const struct dev_pm_ops *pm; + void (*coredump)(struct device *); + struct driver_private *p; +}; + +struct class { + const char *name; + const struct attribute_group **class_groups; + const struct attribute_group **dev_groups; + int (*dev_uevent)(const struct device *, struct kobj_uevent_env *); + char * (*devnode)(const struct device *, umode_t *); + void (*class_release)(const struct class *); + void (*dev_release)(struct device *); + int (*shutdown_pre)(struct device *); + const struct kobj_ns_type_operations *ns_type; + const void * (*namespace)(const struct device *); + void (*get_ownership)(const struct device *, kuid_t *, kgid_t *); + const struct dev_pm_ops *pm; +}; + +struct device_type { + const char *name; + const struct attribute_group **groups; + int (*uevent)(const struct device *, struct kobj_uevent_env *); + char * (*devnode)(const struct device *, umode_t *, kuid_t *, kgid_t *); + void (*release)(struct device *); + const struct dev_pm_ops *pm; +}; + +typedef __u64 Elf64_Addr; + +typedef __u16 Elf64_Half; + +typedef __u32 Elf64_Word; + +typedef __u64 Elf64_Xword; + +struct elf64_sym { + Elf64_Word st_name; + unsigned char st_info; + unsigned char st_other; + Elf64_Half st_shndx; + Elf64_Addr st_value; + Elf64_Xword st_size; +}; + +struct kernel_param_ops { + unsigned int flags; + int (*set)(const char *, const struct kernel_param *); + int (*get)(char *, const struct kernel_param *); + void (*free)(void *); +}; + +struct kparam_string; + +struct kparam_array; + +struct kernel_param { + const char *name; + struct module *mod; + const struct kernel_param_ops *ops; + const u16 perm; + s8 level; + u8 flags; + union { + void *arg; + const struct kparam_string *str; + const struct kparam_array *arr; + }; +}; + +struct kparam_string { + unsigned int maxlen; + char *string; +}; + +struct kparam_array { + unsigned int max; + unsigned int elemsize; + unsigned int *num; + const struct kernel_param_ops *ops; + void *elem; +}; + +enum { + EI_ETYPE_NULL = 0, + EI_ETYPE_ERRNO = 1, + EI_ETYPE_ERRNO_NULL = 2, + EI_ETYPE_TRUE = 3, +}; + +struct error_injection_entry { + long unsigned int addr; + int etype; +}; + +struct plt_entry { + __le32 adrp; + __le32 add; + __le32 br; +}; + +struct module_attribute { + struct attribute attr; + ssize_t (*show)(struct module_attribute *, struct module_kobject *, char *); + ssize_t (*store)(struct module_attribute *, struct module_kobject *, const char *, size_t); + void (*setup)(struct module *, const char *); + int (*test)(struct module *); + void (*free)(struct module *); +}; + +struct kernel_symbol { + int value_offset; + int name_offset; + int namespace_offset; +}; + +struct trace_event_functions; + +struct trace_event { + struct hlist_node node; + int type; + struct trace_event_functions *funcs; +}; + +struct trace_event_class; + +struct trace_event_call { + struct list_head list; + struct trace_event_class *class; + union { + const char *name; + struct tracepoint *tp; + }; + struct trace_event event; + char *print_fmt; + struct event_filter *filter; + union { + void *module; + atomic_t refcnt; + }; + void *data; + int flags; + int perf_refcount; + struct hlist_head *perf_events; + struct bpf_prog_array *prog_array; + int (*perf_perm)(struct trace_event_call *, struct perf_event *); +}; + +struct trace_eval_map { + const char *system; + const char *eval_string; + long unsigned int eval_value; +}; + +struct of_device_id { + char name[32]; + char type[32]; + char compatible[128]; + const void *data; +}; + +typedef long unsigned int kernel_ulong_t; + +struct acpi_device_id { + __u8 id[16]; + kernel_ulong_t driver_data; + __u32 cls; + __u32 cls_msk; +}; + +struct device_dma_parameters { + unsigned int max_segment_size; + unsigned int min_align_mask; + long unsigned int segment_boundary_mask; +}; + +enum device_physical_location_panel { + DEVICE_PANEL_TOP = 0, + DEVICE_PANEL_BOTTOM = 1, + DEVICE_PANEL_LEFT = 2, + DEVICE_PANEL_RIGHT = 3, + DEVICE_PANEL_FRONT = 4, + DEVICE_PANEL_BACK = 5, + DEVICE_PANEL_UNKNOWN = 6, +}; + +enum device_physical_location_vertical_position { + DEVICE_VERT_POS_UPPER = 0, + DEVICE_VERT_POS_CENTER = 1, + DEVICE_VERT_POS_LOWER = 2, +}; + +enum device_physical_location_horizontal_position { + DEVICE_HORI_POS_LEFT = 0, + DEVICE_HORI_POS_CENTER = 1, + DEVICE_HORI_POS_RIGHT = 2, +}; + +struct device_physical_location { + enum device_physical_location_panel panel; + enum device_physical_location_vertical_position vertical_position; + enum device_physical_location_horizontal_position horizontal_position; + bool dock; + bool lid; +}; + +typedef u64 phys_addr_t; + +typedef u64 dma_addr_t; + +struct bus_dma_region { + phys_addr_t cpu_start; + dma_addr_t dma_start; + u64 size; +}; + +struct fwnode_operations; + +struct fwnode_handle { + struct fwnode_handle *secondary; + const struct fwnode_operations *ops; + struct device *dev; + struct list_head suppliers; + struct list_head consumers; + u8 flags; +}; + +struct seq_operations { + void * (*start)(struct seq_file *, loff_t *); + void (*stop)(struct seq_file *, void *); + void * (*next)(struct seq_file *, void *, loff_t *); + int (*show)(struct seq_file *, void *); +}; + +struct seq_buf { + char *buffer; + size_t size; + size_t len; +}; + +struct trace_seq { + char buffer[8156]; + struct seq_buf seq; + size_t readpos; + int full; +}; + +enum dev_dma_attr { + DEV_DMA_NOT_SUPPORTED = 0, + DEV_DMA_NON_COHERENT = 1, + DEV_DMA_COHERENT = 2, +}; + +struct fwnode_reference_args; + +struct fwnode_endpoint; + +struct fwnode_operations { + struct fwnode_handle * (*get)(struct fwnode_handle *); + void (*put)(struct fwnode_handle *); + bool (*device_is_available)(const struct fwnode_handle *); + const void * (*device_get_match_data)(const struct fwnode_handle *, const struct device *); + bool (*device_dma_supported)(const struct fwnode_handle *); + enum dev_dma_attr (*device_get_dma_attr)(const struct fwnode_handle *); + bool (*property_present)(const struct fwnode_handle *, const char *); + int (*property_read_int_array)(const struct fwnode_handle *, const char *, unsigned int, void *, size_t); + int (*property_read_string_array)(const struct fwnode_handle *, const char *, const char **, size_t); + const char * (*get_name)(const struct fwnode_handle *); + const char * (*get_name_prefix)(const struct fwnode_handle *); + struct fwnode_handle * (*get_parent)(const struct fwnode_handle *); + struct fwnode_handle * (*get_next_child_node)(const struct fwnode_handle *, struct fwnode_handle *); + struct fwnode_handle * (*get_named_child_node)(const struct fwnode_handle *, const char *); + int (*get_reference_args)(const struct fwnode_handle *, const char *, const char *, unsigned int, unsigned int, struct fwnode_reference_args *); + struct fwnode_handle * (*graph_get_next_endpoint)(const struct fwnode_handle *, struct fwnode_handle *); + struct fwnode_handle * (*graph_get_remote_endpoint)(const struct fwnode_handle *); + struct fwnode_handle * (*graph_get_port_parent)(struct fwnode_handle *); + int (*graph_parse_endpoint)(const struct fwnode_handle *, struct fwnode_endpoint *); + void * (*iomap)(struct fwnode_handle *, int); + int (*irq_get)(const struct fwnode_handle *, unsigned int); + int (*add_links)(struct fwnode_handle *); +}; + +struct fwnode_endpoint { + unsigned int port; + unsigned int id; + const struct fwnode_handle *local_fwnode; +}; + +struct fwnode_reference_args { + struct fwnode_handle *fwnode; + unsigned int nargs; + u64 args[16]; +}; + +enum perf_sw_ids { + PERF_COUNT_SW_CPU_CLOCK = 0, + PERF_COUNT_SW_TASK_CLOCK = 1, + PERF_COUNT_SW_PAGE_FAULTS = 2, + PERF_COUNT_SW_CONTEXT_SWITCHES = 3, + PERF_COUNT_SW_CPU_MIGRATIONS = 4, + PERF_COUNT_SW_PAGE_FAULTS_MIN = 5, + PERF_COUNT_SW_PAGE_FAULTS_MAJ = 6, + PERF_COUNT_SW_ALIGNMENT_FAULTS = 7, + PERF_COUNT_SW_EMULATION_FAULTS = 8, + PERF_COUNT_SW_DUMMY = 9, + PERF_COUNT_SW_BPF_OUTPUT = 10, + PERF_COUNT_SW_CGROUP_SWITCHES = 11, + PERF_COUNT_SW_MAX = 12, +}; + +union perf_mem_data_src { + __u64 val; + struct { + __u64 mem_op: 5; + __u64 mem_lvl: 14; + __u64 mem_snoop: 5; + __u64 mem_lock: 2; + __u64 mem_dtlb: 7; + __u64 mem_lvl_num: 4; + __u64 mem_remote: 1; + __u64 mem_snoopx: 2; + __u64 mem_blk: 3; + __u64 mem_hops: 3; + __u64 mem_rsvd: 18; + }; +}; + +struct perf_branch_entry { + __u64 from; + __u64 to; + __u64 mispred: 1; + __u64 predicted: 1; + __u64 in_tx: 1; + __u64 abort: 1; + __u64 cycles: 16; + __u64 type: 4; + __u64 spec: 2; + __u64 new_type: 4; + __u64 priv: 3; + __u64 reserved: 31; +}; + +union perf_sample_weight { + __u64 full; + struct { + __u32 var1_dw; + __u16 var2_w; + __u16 var3_w; + }; +}; + +struct cgroup_namespace { + struct ns_common ns; + struct user_namespace *user_ns; + struct ucounts *ucounts; + struct css_set *root_cset; +}; + +struct nsset; + +struct proc_ns_operations { + const char *name; + const char *real_ns_name; + int type; + struct ns_common * (*get)(struct task_struct *); + void (*put)(struct ns_common *); + int (*install)(struct nsset *, struct ns_common *); + struct user_namespace * (*owner)(struct ns_common *); + struct ns_common * (*get_parent)(struct ns_common *); +}; + +struct kvec { + void *iov_base; + size_t iov_len; +}; + +struct folio_queue { + struct folio_batch vec; + u8 orders[31]; + struct folio_queue *next; + struct folio_queue *prev; + long unsigned int marks; + long unsigned int marks2; + long unsigned int marks3; +}; + +struct ftrace_regs { + long unsigned int regs[9]; + long unsigned int direct_tramp; + long unsigned int fp; + long unsigned int lr; + long unsigned int sp; + long unsigned int pc; +}; + +struct perf_regs { + __u64 abi; + struct pt_regs *regs; +}; + +struct u64_stats_sync {}; + +struct bpf_cgroup_storage; + +struct bpf_prog_array_item { + struct bpf_prog *prog; + union { + struct bpf_cgroup_storage *cgroup_storage[2]; + u64 bpf_cookie; + }; +}; + +struct bpf_prog_array { + struct callback_head rcu; + struct bpf_prog_array_item items[0]; +}; + +struct psi_group_cpu { + unsigned int tasks[4]; + u32 state_mask; + u32 times[7]; + u64 state_start; + long: 64; + u32 times_prev[14]; + long: 64; +}; + +struct psi_group { + struct psi_group *parent; + bool enabled; + struct mutex avgs_lock; + struct psi_group_cpu *pcpu; + u64 avg_total[6]; + u64 avg_last_update; + u64 avg_next_update; + struct delayed_work avgs_work; + struct list_head avg_triggers; + u32 avg_nr_triggers[6]; + u64 total[12]; + long unsigned int avg[18]; + struct task_struct *rtpoll_task; + struct timer_list rtpoll_timer; + wait_queue_head_t rtpoll_wait; + atomic_t rtpoll_wakeup; + atomic_t rtpoll_scheduled; + struct mutex rtpoll_trigger_lock; + struct list_head rtpoll_triggers; + u32 rtpoll_nr_triggers[6]; + u32 rtpoll_states; + u64 rtpoll_min_period; + u64 rtpoll_total[6]; + u64 rtpoll_next_update; + u64 rtpoll_until; +}; + +struct cgroup_taskset; + +struct cftype; + +struct cgroup_subsys { + struct cgroup_subsys_state * (*css_alloc)(struct cgroup_subsys_state *); + int (*css_online)(struct cgroup_subsys_state *); + void (*css_offline)(struct cgroup_subsys_state *); + void (*css_released)(struct cgroup_subsys_state *); + void (*css_free)(struct cgroup_subsys_state *); + void (*css_reset)(struct cgroup_subsys_state *); + void (*css_killed)(struct cgroup_subsys_state *); + void (*css_rstat_flush)(struct cgroup_subsys_state *, int); + int (*css_extra_stat_show)(struct seq_file *, struct cgroup_subsys_state *); + int (*css_local_stat_show)(struct seq_file *, struct cgroup_subsys_state *); + int (*can_attach)(struct cgroup_taskset *); + void (*cancel_attach)(struct cgroup_taskset *); + void (*attach)(struct cgroup_taskset *); + void (*post_attach)(void); + int (*can_fork)(struct task_struct *, struct css_set *); + void (*cancel_fork)(struct task_struct *, struct css_set *); + void (*fork)(struct task_struct *); + void (*exit)(struct task_struct *); + void (*release)(struct task_struct *); + void (*bind)(struct cgroup_subsys_state *); + bool early_init: 1; + bool implicit_on_dfl: 1; + bool threaded: 1; + int id; + const char *name; + const char *legacy_name; + struct cgroup_root *root; + struct idr css_idr; + struct list_head cfts; + struct cftype *dfl_cftypes; + struct cftype *legacy_cftypes; + unsigned int depends_on; +}; + +struct cgroup_rstat_cpu { + struct u64_stats_sync bsync; + struct cgroup_base_stat bstat; + struct cgroup_base_stat last_bstat; + struct cgroup_base_stat subtree_bstat; + struct cgroup_base_stat last_subtree_bstat; + struct cgroup *updated_children; + struct cgroup *updated_next; +}; + +struct cgroup_root { + struct kernfs_root *kf_root; + unsigned int subsys_mask; + int hierarchy_id; + struct list_head root_list; + struct callback_head rcu; + long: 64; + long: 64; + struct cgroup cgrp; + struct cgroup *cgrp_ancestor_storage; + atomic_t nr_cgrps; + unsigned int flags; + char release_agent_path[4096]; + char name[64]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct cftype { + char name[64]; + long unsigned int private; + size_t max_write_len; + unsigned int flags; + unsigned int file_offset; + struct cgroup_subsys *ss; + struct list_head node; + struct kernfs_ops *kf_ops; + int (*open)(struct kernfs_open_file *); + void (*release)(struct kernfs_open_file *); + u64 (*read_u64)(struct cgroup_subsys_state *, struct cftype *); + s64 (*read_s64)(struct cgroup_subsys_state *, struct cftype *); + int (*seq_show)(struct seq_file *, void *); + void * (*seq_start)(struct seq_file *, loff_t *); + void * (*seq_next)(struct seq_file *, void *, loff_t *); + void (*seq_stop)(struct seq_file *, void *); + int (*write_u64)(struct cgroup_subsys_state *, struct cftype *, u64); + int (*write_s64)(struct cgroup_subsys_state *, struct cftype *, s64); + ssize_t (*write)(struct kernfs_open_file *, char *, size_t, loff_t); + __poll_t (*poll)(struct kernfs_open_file *, struct poll_table_struct *); + struct lock_class_key lockdep_key; +}; + +struct bpf_insn { + __u8 code; + __u8 dst_reg: 4; + __u8 src_reg: 4; + __s16 off; + __s32 imm; +}; + +enum bpf_cgroup_iter_order { + BPF_CGROUP_ITER_ORDER_UNSPEC = 0, + BPF_CGROUP_ITER_SELF_ONLY = 1, + BPF_CGROUP_ITER_DESCENDANTS_PRE = 2, + BPF_CGROUP_ITER_DESCENDANTS_POST = 3, + BPF_CGROUP_ITER_ANCESTORS_UP = 4, +}; + +enum bpf_map_type { + BPF_MAP_TYPE_UNSPEC = 0, + BPF_MAP_TYPE_HASH = 1, + BPF_MAP_TYPE_ARRAY = 2, + BPF_MAP_TYPE_PROG_ARRAY = 3, + BPF_MAP_TYPE_PERF_EVENT_ARRAY = 4, + BPF_MAP_TYPE_PERCPU_HASH = 5, + BPF_MAP_TYPE_PERCPU_ARRAY = 6, + BPF_MAP_TYPE_STACK_TRACE = 7, + BPF_MAP_TYPE_CGROUP_ARRAY = 8, + BPF_MAP_TYPE_LRU_HASH = 9, + BPF_MAP_TYPE_LRU_PERCPU_HASH = 10, + BPF_MAP_TYPE_LPM_TRIE = 11, + BPF_MAP_TYPE_ARRAY_OF_MAPS = 12, + BPF_MAP_TYPE_HASH_OF_MAPS = 13, + BPF_MAP_TYPE_DEVMAP = 14, + BPF_MAP_TYPE_SOCKMAP = 15, + BPF_MAP_TYPE_CPUMAP = 16, + BPF_MAP_TYPE_XSKMAP = 17, + BPF_MAP_TYPE_SOCKHASH = 18, + BPF_MAP_TYPE_CGROUP_STORAGE_DEPRECATED = 19, + BPF_MAP_TYPE_CGROUP_STORAGE = 19, + BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 20, + BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE_DEPRECATED = 21, + BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 21, + BPF_MAP_TYPE_QUEUE = 22, + BPF_MAP_TYPE_STACK = 23, + BPF_MAP_TYPE_SK_STORAGE = 24, + BPF_MAP_TYPE_DEVMAP_HASH = 25, + BPF_MAP_TYPE_STRUCT_OPS = 26, + BPF_MAP_TYPE_RINGBUF = 27, + BPF_MAP_TYPE_INODE_STORAGE = 28, + BPF_MAP_TYPE_TASK_STORAGE = 29, + BPF_MAP_TYPE_BLOOM_FILTER = 30, + BPF_MAP_TYPE_USER_RINGBUF = 31, + BPF_MAP_TYPE_CGRP_STORAGE = 32, + BPF_MAP_TYPE_ARENA = 33, + __MAX_BPF_MAP_TYPE = 34, +}; + +enum bpf_prog_type { + BPF_PROG_TYPE_UNSPEC = 0, + BPF_PROG_TYPE_SOCKET_FILTER = 1, + BPF_PROG_TYPE_KPROBE = 2, + BPF_PROG_TYPE_SCHED_CLS = 3, + BPF_PROG_TYPE_SCHED_ACT = 4, + BPF_PROG_TYPE_TRACEPOINT = 5, + BPF_PROG_TYPE_XDP = 6, + BPF_PROG_TYPE_PERF_EVENT = 7, + BPF_PROG_TYPE_CGROUP_SKB = 8, + BPF_PROG_TYPE_CGROUP_SOCK = 9, + BPF_PROG_TYPE_LWT_IN = 10, + BPF_PROG_TYPE_LWT_OUT = 11, + BPF_PROG_TYPE_LWT_XMIT = 12, + BPF_PROG_TYPE_SOCK_OPS = 13, + BPF_PROG_TYPE_SK_SKB = 14, + BPF_PROG_TYPE_CGROUP_DEVICE = 15, + BPF_PROG_TYPE_SK_MSG = 16, + BPF_PROG_TYPE_RAW_TRACEPOINT = 17, + BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 18, + BPF_PROG_TYPE_LWT_SEG6LOCAL = 19, + BPF_PROG_TYPE_LIRC_MODE2 = 20, + BPF_PROG_TYPE_SK_REUSEPORT = 21, + BPF_PROG_TYPE_FLOW_DISSECTOR = 22, + BPF_PROG_TYPE_CGROUP_SYSCTL = 23, + BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE = 24, + BPF_PROG_TYPE_CGROUP_SOCKOPT = 25, + BPF_PROG_TYPE_TRACING = 26, + BPF_PROG_TYPE_STRUCT_OPS = 27, + BPF_PROG_TYPE_EXT = 28, + BPF_PROG_TYPE_LSM = 29, + BPF_PROG_TYPE_SK_LOOKUP = 30, + BPF_PROG_TYPE_SYSCALL = 31, + BPF_PROG_TYPE_NETFILTER = 32, + __MAX_BPF_PROG_TYPE = 33, +}; + +enum bpf_attach_type { + BPF_CGROUP_INET_INGRESS = 0, + BPF_CGROUP_INET_EGRESS = 1, + BPF_CGROUP_INET_SOCK_CREATE = 2, + BPF_CGROUP_SOCK_OPS = 3, + BPF_SK_SKB_STREAM_PARSER = 4, + BPF_SK_SKB_STREAM_VERDICT = 5, + BPF_CGROUP_DEVICE = 6, + BPF_SK_MSG_VERDICT = 7, + BPF_CGROUP_INET4_BIND = 8, + BPF_CGROUP_INET6_BIND = 9, + BPF_CGROUP_INET4_CONNECT = 10, + BPF_CGROUP_INET6_CONNECT = 11, + BPF_CGROUP_INET4_POST_BIND = 12, + BPF_CGROUP_INET6_POST_BIND = 13, + BPF_CGROUP_UDP4_SENDMSG = 14, + BPF_CGROUP_UDP6_SENDMSG = 15, + BPF_LIRC_MODE2 = 16, + BPF_FLOW_DISSECTOR = 17, + BPF_CGROUP_SYSCTL = 18, + BPF_CGROUP_UDP4_RECVMSG = 19, + BPF_CGROUP_UDP6_RECVMSG = 20, + BPF_CGROUP_GETSOCKOPT = 21, + BPF_CGROUP_SETSOCKOPT = 22, + BPF_TRACE_RAW_TP = 23, + BPF_TRACE_FENTRY = 24, + BPF_TRACE_FEXIT = 25, + BPF_MODIFY_RETURN = 26, + BPF_LSM_MAC = 27, + BPF_TRACE_ITER = 28, + BPF_CGROUP_INET4_GETPEERNAME = 29, + BPF_CGROUP_INET6_GETPEERNAME = 30, + BPF_CGROUP_INET4_GETSOCKNAME = 31, + BPF_CGROUP_INET6_GETSOCKNAME = 32, + BPF_XDP_DEVMAP = 33, + BPF_CGROUP_INET_SOCK_RELEASE = 34, + BPF_XDP_CPUMAP = 35, + BPF_SK_LOOKUP = 36, + BPF_XDP = 37, + BPF_SK_SKB_VERDICT = 38, + BPF_SK_REUSEPORT_SELECT = 39, + BPF_SK_REUSEPORT_SELECT_OR_MIGRATE = 40, + BPF_PERF_EVENT = 41, + BPF_TRACE_KPROBE_MULTI = 42, + BPF_LSM_CGROUP = 43, + BPF_STRUCT_OPS = 44, + BPF_NETFILTER = 45, + BPF_TCX_INGRESS = 46, + BPF_TCX_EGRESS = 47, + BPF_TRACE_UPROBE_MULTI = 48, + BPF_CGROUP_UNIX_CONNECT = 49, + BPF_CGROUP_UNIX_SENDMSG = 50, + BPF_CGROUP_UNIX_RECVMSG = 51, + BPF_CGROUP_UNIX_GETPEERNAME = 52, + BPF_CGROUP_UNIX_GETSOCKNAME = 53, + BPF_NETKIT_PRIMARY = 54, + BPF_NETKIT_PEER = 55, + BPF_TRACE_KPROBE_SESSION = 56, + __MAX_BPF_ATTACH_TYPE = 57, +}; + +union bpf_attr { + struct { + __u32 map_type; + __u32 key_size; + __u32 value_size; + __u32 max_entries; + __u32 map_flags; + __u32 inner_map_fd; + __u32 numa_node; + char map_name[16]; + __u32 map_ifindex; + __u32 btf_fd; + __u32 btf_key_type_id; + __u32 btf_value_type_id; + __u32 btf_vmlinux_value_type_id; + __u64 map_extra; + __s32 value_type_btf_obj_fd; + __s32 map_token_fd; + }; + struct { + __u32 map_fd; + __u64 key; + union { + __u64 value; + __u64 next_key; + }; + __u64 flags; + }; + struct { + __u64 in_batch; + __u64 out_batch; + __u64 keys; + __u64 values; + __u32 count; + __u32 map_fd; + __u64 elem_flags; + __u64 flags; + } batch; + struct { + __u32 prog_type; + __u32 insn_cnt; + __u64 insns; + __u64 license; + __u32 log_level; + __u32 log_size; + __u64 log_buf; + __u32 kern_version; + __u32 prog_flags; + char prog_name[16]; + __u32 prog_ifindex; + __u32 expected_attach_type; + __u32 prog_btf_fd; + __u32 func_info_rec_size; + __u64 func_info; + __u32 func_info_cnt; + __u32 line_info_rec_size; + __u64 line_info; + __u32 line_info_cnt; + __u32 attach_btf_id; + union { + __u32 attach_prog_fd; + __u32 attach_btf_obj_fd; + }; + __u32 core_relo_cnt; + __u64 fd_array; + __u64 core_relos; + __u32 core_relo_rec_size; + __u32 log_true_size; + __s32 prog_token_fd; + }; + struct { + __u64 pathname; + __u32 bpf_fd; + __u32 file_flags; + __s32 path_fd; + }; + struct { + union { + __u32 target_fd; + __u32 target_ifindex; + }; + __u32 attach_bpf_fd; + __u32 attach_type; + __u32 attach_flags; + __u32 replace_bpf_fd; + union { + __u32 relative_fd; + __u32 relative_id; + }; + __u64 expected_revision; + }; + struct { + __u32 prog_fd; + __u32 retval; + __u32 data_size_in; + __u32 data_size_out; + __u64 data_in; + __u64 data_out; + __u32 repeat; + __u32 duration; + __u32 ctx_size_in; + __u32 ctx_size_out; + __u64 ctx_in; + __u64 ctx_out; + __u32 flags; + __u32 cpu; + __u32 batch_size; + } test; + struct { + union { + __u32 start_id; + __u32 prog_id; + __u32 map_id; + __u32 btf_id; + __u32 link_id; + }; + __u32 next_id; + __u32 open_flags; + }; + struct { + __u32 bpf_fd; + __u32 info_len; + __u64 info; + } info; + struct { + union { + __u32 target_fd; + __u32 target_ifindex; + }; + __u32 attach_type; + __u32 query_flags; + __u32 attach_flags; + __u64 prog_ids; + union { + __u32 prog_cnt; + __u32 count; + }; + __u64 prog_attach_flags; + __u64 link_ids; + __u64 link_attach_flags; + __u64 revision; + } query; + struct { + __u64 name; + __u32 prog_fd; + __u64 cookie; + } raw_tracepoint; + struct { + __u64 btf; + __u64 btf_log_buf; + __u32 btf_size; + __u32 btf_log_size; + __u32 btf_log_level; + __u32 btf_log_true_size; + __u32 btf_flags; + __s32 btf_token_fd; + }; + struct { + __u32 pid; + __u32 fd; + __u32 flags; + __u32 buf_len; + __u64 buf; + __u32 prog_id; + __u32 fd_type; + __u64 probe_offset; + __u64 probe_addr; + } task_fd_query; + struct { + union { + __u32 prog_fd; + __u32 map_fd; + }; + union { + __u32 target_fd; + __u32 target_ifindex; + }; + __u32 attach_type; + __u32 flags; + union { + __u32 target_btf_id; + struct { + __u64 iter_info; + __u32 iter_info_len; + }; + struct { + __u64 bpf_cookie; + } perf_event; + struct { + __u32 flags; + __u32 cnt; + __u64 syms; + __u64 addrs; + __u64 cookies; + } kprobe_multi; + struct { + __u32 target_btf_id; + __u64 cookie; + } tracing; + struct { + __u32 pf; + __u32 hooknum; + __s32 priority; + __u32 flags; + } netfilter; + struct { + union { + __u32 relative_fd; + __u32 relative_id; + }; + __u64 expected_revision; + } tcx; + struct { + __u64 path; + __u64 offsets; + __u64 ref_ctr_offsets; + __u64 cookies; + __u32 cnt; + __u32 flags; + __u32 pid; + } uprobe_multi; + struct { + union { + __u32 relative_fd; + __u32 relative_id; + }; + __u64 expected_revision; + } netkit; + }; + } link_create; + struct { + __u32 link_fd; + union { + __u32 new_prog_fd; + __u32 new_map_fd; + }; + __u32 flags; + union { + __u32 old_prog_fd; + __u32 old_map_fd; + }; + } link_update; + struct { + __u32 link_fd; + } link_detach; + struct { + __u32 type; + } enable_stats; + struct { + __u32 link_fd; + __u32 flags; + } iter_create; + struct { + __u32 prog_fd; + __u32 map_fd; + __u32 flags; + } prog_bind_map; + struct { + __u32 flags; + __u32 bpffs_fd; + } token_create; +}; + +struct bpf_func_info { + __u32 insn_off; + __u32 type_id; +}; + +struct bpf_line_info { + __u32 insn_off; + __u32 file_name_off; + __u32 line_off; + __u32 line_col; +}; + +struct sock_filter { + __u16 code; + __u8 jt; + __u8 jf; + __u32 k; +}; + +struct btf_type { + __u32 name_off; + __u32 info; + union { + __u32 size; + __u32 type; + }; +}; + +struct bpf_prog_stats; + +struct bpf_prog_aux; + +struct sock_fprog_kern; + +struct bpf_prog { + u16 pages; + u16 jited: 1; + u16 jit_requested: 1; + u16 gpl_compatible: 1; + u16 cb_access: 1; + u16 dst_needed: 1; + u16 blinding_requested: 1; + u16 blinded: 1; + u16 is_func: 1; + u16 kprobe_override: 1; + u16 has_callchain_buf: 1; + u16 enforce_expected_attach_type: 1; + u16 call_get_stack: 1; + u16 call_get_func_ip: 1; + u16 tstamp_type_access: 1; + u16 sleepable: 1; + enum bpf_prog_type type; + enum bpf_attach_type expected_attach_type; + u32 len; + u32 jited_len; + u8 tag[8]; + struct bpf_prog_stats *stats; + int *active; + unsigned int (*bpf_func)(const void *, const struct bpf_insn *); + struct bpf_prog_aux *aux; + struct sock_fprog_kern *orig_prog; + union { + struct { + struct {} __empty_insns; + struct sock_filter insns[0]; + }; + struct { + struct {} __empty_insnsi; + struct bpf_insn insnsi[0]; + }; + }; +}; + +enum btf_field_type { + BPF_SPIN_LOCK = 1, + BPF_TIMER = 2, + BPF_KPTR_UNREF = 4, + BPF_KPTR_REF = 8, + BPF_KPTR_PERCPU = 16, + BPF_KPTR = 28, + BPF_LIST_HEAD = 32, + BPF_LIST_NODE = 64, + BPF_RB_ROOT = 128, + BPF_RB_NODE = 256, + BPF_GRAPH_NODE = 320, + BPF_GRAPH_ROOT = 160, + BPF_REFCOUNT = 512, + BPF_WORKQUEUE = 1024, +}; + +typedef void (*btf_dtor_kfunc_t)(void *); + +struct btf; + +struct btf_field_kptr { + struct btf *btf; + struct module *module; + btf_dtor_kfunc_t dtor; + u32 btf_id; +}; + +struct btf_record; + +struct btf_field_graph_root { + struct btf *btf; + u32 value_btf_id; + u32 node_offset; + struct btf_record *value_rec; +}; + +struct btf_field { + u32 offset; + u32 size; + enum btf_field_type type; + union { + struct btf_field_kptr kptr; + struct btf_field_graph_root graph_root; + }; +}; + +struct btf_record { + u32 cnt; + u32 field_mask; + int spin_lock_off; + int timer_off; + int wq_off; + int refcount_off; + struct btf_field fields[0]; +}; + +struct blk_holder_ops { + void (*mark_dead)(struct block_device *, bool); + void (*sync)(struct block_device *); + int (*freeze)(struct block_device *); + int (*thaw)(struct block_device *); +}; + +typedef void *mempool_alloc_t(gfp_t, void *); + +typedef void mempool_free_t(void *, void *); + +struct mempool_s { + spinlock_t lock; + int min_nr; + int curr_nr; + void **elements; + void *pool_data; + mempool_alloc_t *alloc; + mempool_free_t *free; + wait_queue_head_t wait; +}; + +typedef struct mempool_s mempool_t; + +struct bio_alloc_cache; + +struct bio_set { + struct kmem_cache *bio_slab; + unsigned int front_pad; + struct bio_alloc_cache *cache; + mempool_t bio_pool; + mempool_t bvec_pool; + unsigned int back_pad; + spinlock_t rescue_lock; + struct bio_list rescue_list; + struct work_struct rescue_work; + struct workqueue_struct *rescue_workqueue; + struct hlist_node cpuhp_dead; +}; + +struct mem_cgroup_reclaim_iter { + struct mem_cgroup *position; + atomic_t generation; +}; + +struct lruvec_stats_percpu; + +struct lruvec_stats; + +struct mem_cgroup_per_node { + struct mem_cgroup *memcg; + struct lruvec_stats_percpu *lruvec_stats_percpu; + struct lruvec_stats *lruvec_stats; + struct shrinker_info *shrinker_info; + struct rb_node tree_node; + long unsigned int usage_in_excess; + bool on_tree; + struct lruvec lruvec; + long: 64; + long: 64; + long: 64; + struct cacheline_padding _pad2_; + long unsigned int lru_zone_size[20]; + struct mem_cgroup_reclaim_iter iter; + long: 64; + long: 64; +}; + +struct eventfd_ctx; + +struct mem_cgroup_threshold { + struct eventfd_ctx *eventfd; + long unsigned int threshold; +}; + +struct mem_cgroup_threshold_ary { + int current_threshold; + unsigned int size; + struct mem_cgroup_threshold entries[0]; +}; + +typedef u64 (*bpf_callback_t)(u64, u64, u64, u64, u64); + +struct bpf_iter_aux_info; + +typedef int (*bpf_iter_init_seq_priv_t)(void *, struct bpf_iter_aux_info *); + +enum bpf_iter_task_type { + BPF_TASK_ITER_ALL = 0, + BPF_TASK_ITER_TID = 1, + BPF_TASK_ITER_TGID = 2, +}; + +struct bpf_map; + +struct bpf_iter_aux_info { + struct bpf_map *map; + struct { + struct cgroup *start; + enum bpf_cgroup_iter_order order; + } cgroup; + struct { + enum bpf_iter_task_type type; + u32 pid; + } task; +}; + +typedef void (*bpf_iter_fini_seq_priv_t)(void *); + +struct bpf_iter_seq_info { + const struct seq_operations *seq_ops; + bpf_iter_init_seq_priv_t init_seq_private; + bpf_iter_fini_seq_priv_t fini_seq_private; + u32 seq_priv_size; +}; + +struct bpf_local_storage_map; + +struct bpf_verifier_env; + +struct bpf_func_state; + +struct bpf_map_ops { + int (*map_alloc_check)(union bpf_attr *); + struct bpf_map * (*map_alloc)(union bpf_attr *); + void (*map_release)(struct bpf_map *, struct file *); + void (*map_free)(struct bpf_map *); + int (*map_get_next_key)(struct bpf_map *, void *, void *); + void (*map_release_uref)(struct bpf_map *); + void * (*map_lookup_elem_sys_only)(struct bpf_map *, void *); + int (*map_lookup_batch)(struct bpf_map *, const union bpf_attr *, union bpf_attr *); + int (*map_lookup_and_delete_elem)(struct bpf_map *, void *, void *, u64); + int (*map_lookup_and_delete_batch)(struct bpf_map *, const union bpf_attr *, union bpf_attr *); + int (*map_update_batch)(struct bpf_map *, struct file *, const union bpf_attr *, union bpf_attr *); + int (*map_delete_batch)(struct bpf_map *, const union bpf_attr *, union bpf_attr *); + void * (*map_lookup_elem)(struct bpf_map *, void *); + long int (*map_update_elem)(struct bpf_map *, void *, void *, u64); + long int (*map_delete_elem)(struct bpf_map *, void *); + long int (*map_push_elem)(struct bpf_map *, void *, u64); + long int (*map_pop_elem)(struct bpf_map *, void *); + long int (*map_peek_elem)(struct bpf_map *, void *); + void * (*map_lookup_percpu_elem)(struct bpf_map *, void *, u32); + void * (*map_fd_get_ptr)(struct bpf_map *, struct file *, int); + void (*map_fd_put_ptr)(struct bpf_map *, void *, bool); + int (*map_gen_lookup)(struct bpf_map *, struct bpf_insn *); + u32 (*map_fd_sys_lookup_elem)(void *); + void (*map_seq_show_elem)(struct bpf_map *, void *, struct seq_file *); + int (*map_check_btf)(const struct bpf_map *, const struct btf *, const struct btf_type *, const struct btf_type *); + int (*map_poke_track)(struct bpf_map *, struct bpf_prog_aux *); + void (*map_poke_untrack)(struct bpf_map *, struct bpf_prog_aux *); + void (*map_poke_run)(struct bpf_map *, u32, struct bpf_prog *, struct bpf_prog *); + int (*map_direct_value_addr)(const struct bpf_map *, u64 *, u32); + int (*map_direct_value_meta)(const struct bpf_map *, u64, u32 *); + int (*map_mmap)(struct bpf_map *, struct vm_area_struct *); + __poll_t (*map_poll)(struct bpf_map *, struct file *, struct poll_table_struct *); + long unsigned int (*map_get_unmapped_area)(struct file *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + int (*map_local_storage_charge)(struct bpf_local_storage_map *, void *, u32); + void (*map_local_storage_uncharge)(struct bpf_local_storage_map *, void *, u32); + struct bpf_local_storage ** (*map_owner_storage_ptr)(void *); + long int (*map_redirect)(struct bpf_map *, u64, u64); + bool (*map_meta_equal)(const struct bpf_map *, const struct bpf_map *); + int (*map_set_for_each_callback_args)(struct bpf_verifier_env *, struct bpf_func_state *, struct bpf_func_state *); + long int (*map_for_each_callback)(struct bpf_map *, bpf_callback_t, void *, u64); + u64 (*map_mem_usage)(const struct bpf_map *); + int *map_btf_id; + const struct bpf_iter_seq_info *iter_seq_info; +}; + +struct bpf_map_owner; + +struct bpf_map { + const struct bpf_map_ops *ops; + struct bpf_map *inner_map_meta; + void *security; + enum bpf_map_type map_type; + u32 key_size; + u32 value_size; + u32 max_entries; + u64 map_extra; + u32 map_flags; + u32 id; + struct btf_record *record; + int numa_node; + u32 btf_key_type_id; + u32 btf_value_type_id; + u32 btf_vmlinux_value_type_id; + struct btf *btf; + struct obj_cgroup *objcg; + char name[16]; + struct mutex freeze_mutex; + atomic64_t refcnt; + atomic64_t usercnt; + union { + struct work_struct work; + struct callback_head rcu; + }; + atomic64_t writecnt; + spinlock_t owner_lock; + struct bpf_map_owner *owner; + bool bypass_spec_v1; + bool frozen; + bool free_after_mult_rcu_gp; + bool free_after_rcu_gp; + atomic64_t sleepable_refcnt; + s64 *elem_count; + u64 cookie; +}; + +struct btf_header { + __u16 magic; + __u8 version; + __u8 flags; + __u32 hdr_len; + __u32 type_off; + __u32 type_len; + __u32 str_off; + __u32 str_len; +}; + +struct btf_kfunc_set_tab; + +struct btf_id_dtor_kfunc_tab; + +struct btf_struct_metas; + +struct btf_struct_ops_tab; + +struct btf { + void *data; + struct btf_type **types; + u32 *resolved_ids; + u32 *resolved_sizes; + const char *strings; + void *nohdr_data; + struct btf_header hdr; + u32 nr_types; + u32 types_size; + u32 data_size; + refcount_t refcnt; + u32 id; + struct callback_head rcu; + struct btf_kfunc_set_tab *kfunc_set_tab; + struct btf_id_dtor_kfunc_tab *dtor_kfunc_tab; + struct btf_struct_metas *struct_meta_tab; + struct btf_struct_ops_tab *struct_ops_tab; + struct btf *base_btf; + u32 start_id; + u32 start_str_off; + char name[56]; + bool kernel_btf; + __u32 *base_id_map; +}; + +struct bpf_ksym { + long unsigned int start; + long unsigned int end; + char name[512]; + struct list_head lnode; + struct latch_tree_node tnode; + bool prog; +}; + +struct bpf_ctx_arg_aux; + +struct bpf_trampoline; + +struct bpf_arena; + +struct bpf_jit_poke_descriptor; + +struct bpf_kfunc_desc_tab; + +struct bpf_kfunc_btf_tab; + +struct bpf_prog_ops; + +struct btf_mod_pair; + +struct bpf_token; + +struct bpf_prog_offload; + +struct bpf_func_info_aux; + +struct bpf_prog_aux { + atomic64_t refcnt; + u32 used_map_cnt; + u32 used_btf_cnt; + u32 max_ctx_offset; + u32 max_pkt_offset; + u32 max_tp_access; + u32 stack_depth; + u32 id; + u32 func_cnt; + u32 real_func_cnt; + u32 func_idx; + u32 attach_btf_id; + u32 ctx_arg_info_size; + u32 max_rdonly_access; + u32 max_rdwr_access; + struct btf *attach_btf; + const struct bpf_ctx_arg_aux *ctx_arg_info; + struct mutex dst_mutex; + struct bpf_prog *dst_prog; + struct bpf_trampoline *dst_trampoline; + enum bpf_prog_type saved_dst_prog_type; + enum bpf_attach_type saved_dst_attach_type; + bool verifier_zext; + bool dev_bound; + bool offload_requested; + bool attach_btf_trace; + bool attach_tracing_prog; + bool func_proto_unreliable; + bool tail_call_reachable; + bool xdp_has_frags; + bool exception_cb; + bool exception_boundary; + bool is_extended; + bool changes_pkt_data; + u64 prog_array_member_cnt; + struct mutex ext_mutex; + struct bpf_arena *arena; + const struct btf_type *attach_func_proto; + const char *attach_func_name; + struct bpf_prog **func; + void *jit_data; + struct bpf_jit_poke_descriptor *poke_tab; + struct bpf_kfunc_desc_tab *kfunc_tab; + struct bpf_kfunc_btf_tab *kfunc_btf_tab; + u32 size_poke_tab; + struct bpf_ksym ksym; + const struct bpf_prog_ops *ops; + struct bpf_map **used_maps; + struct mutex used_maps_mutex; + struct btf_mod_pair *used_btfs; + struct bpf_prog *prog; + struct user_struct *user; + u64 load_time; + u32 verified_insns; + int cgroup_atype; + struct bpf_map *cgroup_storage[2]; + char name[16]; + u64 (*bpf_exception_cb)(u64, u64, u64, u64, u64); + void *security; + struct bpf_token *token; + struct bpf_prog_offload *offload; + struct btf *btf; + struct bpf_func_info *func_info; + struct bpf_func_info_aux *func_info_aux; + struct bpf_line_info *linfo; + void **jited_linfo; + u32 func_info_cnt; + u32 nr_linfo; + u32 linfo_idx; + struct module *mod; + u32 num_exentries; + struct exception_table_entry *extable; + union { + struct work_struct work; + struct callback_head rcu; + }; +}; + +struct bpf_map_owner { + enum bpf_prog_type type; + bool jited; + bool xdp_has_frags; + u64 storage_cookie[2]; + const struct btf_type *attach_func_proto; + enum bpf_attach_type expected_attach_type; +}; + +enum bpf_reg_type { + NOT_INIT = 0, + SCALAR_VALUE = 1, + PTR_TO_CTX = 2, + CONST_PTR_TO_MAP = 3, + PTR_TO_MAP_VALUE = 4, + PTR_TO_MAP_KEY = 5, + PTR_TO_STACK = 6, + PTR_TO_PACKET_META = 7, + PTR_TO_PACKET = 8, + PTR_TO_PACKET_END = 9, + PTR_TO_FLOW_KEYS = 10, + PTR_TO_SOCKET = 11, + PTR_TO_SOCK_COMMON = 12, + PTR_TO_TCP_SOCK = 13, + PTR_TO_TP_BUFFER = 14, + PTR_TO_XDP_SOCK = 15, + PTR_TO_BTF_ID = 16, + PTR_TO_MEM = 17, + PTR_TO_ARENA = 18, + PTR_TO_BUF = 19, + PTR_TO_FUNC = 20, + CONST_PTR_TO_DYNPTR = 21, + __BPF_REG_TYPE_MAX = 22, + PTR_TO_MAP_VALUE_OR_NULL = 260, + PTR_TO_SOCKET_OR_NULL = 267, + PTR_TO_SOCK_COMMON_OR_NULL = 268, + PTR_TO_TCP_SOCK_OR_NULL = 269, + PTR_TO_BTF_ID_OR_NULL = 272, + __BPF_REG_TYPE_LIMIT = 134217727, +}; + +struct bpf_prog_ops { + int (*test_run)(struct bpf_prog *, const union bpf_attr *, union bpf_attr *); +}; + +struct net_device; + +struct bpf_offload_dev; + +struct bpf_prog_offload { + struct bpf_prog *prog; + struct net_device *netdev; + struct bpf_offload_dev *offdev; + void *dev_priv; + struct list_head offloads; + bool dev_state; + bool opt_failed; + void *jited_image; + u32 jited_len; +}; + +struct btf_func_model { + u8 ret_size; + u8 ret_flags; + u8 nr_args; + u8 arg_size[12]; + u8 arg_flags[12]; +}; + +struct bpf_tramp_image { + void *image; + int size; + struct bpf_ksym ksym; + struct percpu_ref pcref; + void *ip_after_call; + void *ip_epilogue; + union { + struct callback_head rcu; + struct work_struct work; + }; +}; + +struct bpf_trampoline { + struct hlist_node hlist; + struct ftrace_ops *fops; + struct mutex mutex; + refcount_t refcnt; + u32 flags; + u64 key; + struct { + struct btf_func_model model; + void *addr; + bool ftrace_managed; + } func; + struct bpf_prog *extension_prog; + struct hlist_head progs_hlist[3]; + int progs_cnt[3]; + struct bpf_tramp_image *cur_image; +}; + +struct bpf_func_info_aux { + u16 linkage; + bool unreliable; + bool called: 1; + bool verified: 1; +}; + +struct bpf_jit_poke_descriptor { + void *tailcall_target; + void *tailcall_bypass; + void *bypass_addr; + void *aux; + union { + struct { + struct bpf_map *map; + u32 key; + } tail_call; + }; + bool tailcall_target_stable; + u8 adj_off; + u16 reason; + u32 insn_idx; +}; + +struct bpf_ctx_arg_aux { + u32 offset; + enum bpf_reg_type reg_type; + struct btf *btf; + u32 btf_id; +}; + +struct btf_mod_pair { + struct btf *btf; + struct module *module; +}; + +struct bpf_token { + struct work_struct work; + atomic64_t refcnt; + struct user_namespace *userns; + u64 allowed_cmds; + u64 allowed_maps; + u64 allowed_progs; + u64 allowed_attachs; + void *security; +}; + +struct perf_callchain_entry { + __u64 nr; + __u64 ip[0]; +}; + +typedef long unsigned int (*perf_copy_f)(void *, const void *, long unsigned int, long unsigned int); + +struct perf_raw_frag { + union { + struct perf_raw_frag *next; + long unsigned int pad; + }; + perf_copy_f copy; + void *data; + u32 size; +} __attribute__((packed)); + +struct perf_raw_record { + struct perf_raw_frag frag; + u32 size; +}; + +struct perf_branch_stack { + __u64 nr; + __u64 hw_idx; + struct perf_branch_entry entries[0]; +}; + +struct perf_cpu_pmu_context; + +struct perf_output_handle; + +struct pmu { + struct list_head entry; + struct module *module; + struct device *dev; + struct device *parent; + const struct attribute_group **attr_groups; + const struct attribute_group **attr_update; + const char *name; + int type; + int capabilities; + unsigned int scope; + int *pmu_disable_count; + struct perf_cpu_pmu_context *cpu_pmu_context; + atomic_t exclusive_cnt; + int task_ctx_nr; + int hrtimer_interval_ms; + unsigned int nr_addr_filters; + void (*pmu_enable)(struct pmu *); + void (*pmu_disable)(struct pmu *); + int (*event_init)(struct perf_event *); + void (*event_mapped)(struct perf_event *, struct mm_struct *); + void (*event_unmapped)(struct perf_event *, struct mm_struct *); + int (*add)(struct perf_event *, int); + void (*del)(struct perf_event *, int); + void (*start)(struct perf_event *, int); + void (*stop)(struct perf_event *, int); + void (*read)(struct perf_event *); + void (*start_txn)(struct pmu *, unsigned int); + int (*commit_txn)(struct pmu *); + void (*cancel_txn)(struct pmu *); + int (*event_idx)(struct perf_event *); + void (*sched_task)(struct perf_event_pmu_context *, bool); + struct kmem_cache *task_ctx_cache; + void (*swap_task_ctx)(struct perf_event_pmu_context *, struct perf_event_pmu_context *); + void * (*setup_aux)(struct perf_event *, void **, int, bool); + void (*free_aux)(void *); + long int (*snapshot_aux)(struct perf_event *, struct perf_output_handle *, long unsigned int); + int (*addr_filters_validate)(struct list_head *); + void (*addr_filters_sync)(struct perf_event *); + int (*aux_output_match)(struct perf_event *); + bool (*filter)(struct pmu *, int); + int (*check_period)(struct perf_event *, u64); +}; + +struct perf_event_pmu_context { + struct pmu *pmu; + struct perf_event_context *ctx; + struct list_head pmu_ctx_entry; + struct list_head pinned_active; + struct list_head flexible_active; + unsigned int embedded: 1; + unsigned int nr_events; + unsigned int nr_cgroups; + unsigned int nr_freq; + atomic_t refcount; + struct callback_head callback_head; + void *task_ctx_data; + int rotate_necessary; +}; + +struct perf_cpu_pmu_context { + struct perf_event_pmu_context epc; + struct perf_event_pmu_context *task_epc; + struct list_head sched_cb_entry; + int sched_cb_usage; + int active_oncpu; + int exclusive; + raw_spinlock_t hrtimer_lock; + struct hrtimer hrtimer; + ktime_t hrtimer_interval; + unsigned int hrtimer_active; +}; + +struct perf_output_handle { + struct perf_event *event; + struct perf_buffer *rb; + long unsigned int wakeup; + long unsigned int size; + union { + u64 flags; + u64 aux_flags; + struct { + u64 skip_read: 1; + }; + }; + union { + void *addr; + long unsigned int head; + }; + int page; +}; + +struct perf_addr_filter_range { + long unsigned int start; + long unsigned int size; +}; + +struct perf_sample_data { + u64 sample_flags; + u64 period; + u64 dyn_size; + u64 type; + struct { + u32 pid; + u32 tid; + } tid_entry; + u64 time; + u64 id; + struct { + u32 cpu; + u32 reserved; + } cpu_entry; + u64 ip; + struct perf_callchain_entry *callchain; + struct perf_raw_record *raw; + struct perf_branch_stack *br_stack; + u64 *br_stack_cntr; + union perf_sample_weight weight; + union perf_mem_data_src data_src; + u64 txn; + struct perf_regs regs_user; + struct perf_regs regs_intr; + u64 stack_user_size; + u64 stream_id; + u64 cgroup; + u64 addr; + u64 phys_addr; + u64 data_page_size; + u64 code_page_size; + u64 aux_size; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct perf_cgroup_info; + +struct perf_cgroup { + struct cgroup_subsys_state css; + struct perf_cgroup_info *info; +}; + +struct perf_cgroup_info { + u64 time; + u64 timestamp; + u64 timeoffset; + int active; +}; + +struct trace_entry { + short unsigned int type; + unsigned char flags; + unsigned char preempt_count; + int pid; +}; + +struct trace_array; + +struct tracer; + +struct array_buffer; + +struct ring_buffer_iter; + +struct trace_iterator { + struct trace_array *tr; + struct tracer *trace; + struct array_buffer *array_buffer; + void *private; + int cpu_file; + struct mutex mutex; + struct ring_buffer_iter **buffer_iter; + long unsigned int iter_flags; + void *temp; + unsigned int temp_size; + char *fmt; + unsigned int fmt_size; + atomic_t wait_index; + struct trace_seq tmp_seq; + cpumask_var_t started; + bool closed; + bool snapshot; + struct trace_seq seq; + struct trace_entry *ent; + long unsigned int lost_events; + int leftover; + int ent_size; + int cpu; + u64 ts; + loff_t pos; + long int idx; +}; + +enum print_line_t { + TRACE_TYPE_PARTIAL_LINE = 0, + TRACE_TYPE_HANDLED = 1, + TRACE_TYPE_UNHANDLED = 2, + TRACE_TYPE_NO_CONSUME = 3, +}; + +typedef enum print_line_t (*trace_print_func)(struct trace_iterator *, int, struct trace_event *); + +struct trace_event_functions { + trace_print_func trace; + trace_print_func raw; + trace_print_func hex; + trace_print_func binary; +}; + +enum trace_reg { + TRACE_REG_REGISTER = 0, + TRACE_REG_UNREGISTER = 1, + TRACE_REG_PERF_REGISTER = 2, + TRACE_REG_PERF_UNREGISTER = 3, + TRACE_REG_PERF_OPEN = 4, + TRACE_REG_PERF_CLOSE = 5, + TRACE_REG_PERF_ADD = 6, + TRACE_REG_PERF_DEL = 7, +}; + +struct trace_event_fields { + const char *type; + union { + struct { + const char *name; + const int size; + const int align; + const unsigned int is_signed: 1; + unsigned int needs_test: 1; + const int filter_type; + const int len; + }; + int (*define_fields)(struct trace_event_call *); + }; +}; + +struct trace_event_class { + const char *system; + void *probe; + void *perf_probe; + int (*reg)(struct trace_event_call *, enum trace_reg, void *); + struct trace_event_fields *fields_array; + struct list_head * (*get_fields)(struct trace_event_call *); + struct list_head fields; + int (*raw_init)(struct trace_event_call *); +}; + +enum { + TRACE_EVENT_FL_FILTERED_BIT = 0, + TRACE_EVENT_FL_CAP_ANY_BIT = 1, + TRACE_EVENT_FL_NO_SET_FILTER_BIT = 2, + TRACE_EVENT_FL_IGNORE_ENABLE_BIT = 3, + TRACE_EVENT_FL_TRACEPOINT_BIT = 4, + TRACE_EVENT_FL_DYNAMIC_BIT = 5, + TRACE_EVENT_FL_KPROBE_BIT = 6, + TRACE_EVENT_FL_UPROBE_BIT = 7, + TRACE_EVENT_FL_EPROBE_BIT = 8, + TRACE_EVENT_FL_FPROBE_BIT = 9, + TRACE_EVENT_FL_CUSTOM_BIT = 10, + TRACE_EVENT_FL_TEST_STR_BIT = 11, +}; + +enum { + TRACE_EVENT_FL_FILTERED = 1, + TRACE_EVENT_FL_CAP_ANY = 2, + TRACE_EVENT_FL_NO_SET_FILTER = 4, + TRACE_EVENT_FL_IGNORE_ENABLE = 8, + TRACE_EVENT_FL_TRACEPOINT = 16, + TRACE_EVENT_FL_DYNAMIC = 32, + TRACE_EVENT_FL_KPROBE = 64, + TRACE_EVENT_FL_UPROBE = 128, + TRACE_EVENT_FL_EPROBE = 256, + TRACE_EVENT_FL_FPROBE = 512, + TRACE_EVENT_FL_CUSTOM = 1024, + TRACE_EVENT_FL_TEST_STR = 2048, +}; + +enum { + EVENT_FILE_FL_ENABLED_BIT = 0, + EVENT_FILE_FL_RECORDED_CMD_BIT = 1, + EVENT_FILE_FL_RECORDED_TGID_BIT = 2, + EVENT_FILE_FL_FILTERED_BIT = 3, + EVENT_FILE_FL_NO_SET_FILTER_BIT = 4, + EVENT_FILE_FL_SOFT_MODE_BIT = 5, + EVENT_FILE_FL_SOFT_DISABLED_BIT = 6, + EVENT_FILE_FL_TRIGGER_MODE_BIT = 7, + EVENT_FILE_FL_TRIGGER_COND_BIT = 8, + EVENT_FILE_FL_PID_FILTER_BIT = 9, + EVENT_FILE_FL_WAS_ENABLED_BIT = 10, + EVENT_FILE_FL_FREED_BIT = 11, +}; + +struct syscall_metadata { + const char *name; + int syscall_nr; + int nb_args; + const char **types; + const char **args; + struct list_head enter_fields; + struct trace_event_call *enter_event; + struct trace_event_call *exit_event; +}; + +typedef long int (*syscall_fn_t)(const struct pt_regs *); + +enum zone_stat_item { + NR_FREE_PAGES = 0, + NR_ZONE_LRU_BASE = 1, + NR_ZONE_INACTIVE_ANON = 1, + NR_ZONE_ACTIVE_ANON = 2, + NR_ZONE_INACTIVE_FILE = 3, + NR_ZONE_ACTIVE_FILE = 4, + NR_ZONE_UNEVICTABLE = 5, + NR_ZONE_WRITE_PENDING = 6, + NR_MLOCK = 7, + NR_BOUNCE = 8, + NR_ZSPAGES = 9, + NR_FREE_CMA_PAGES = 10, + NR_VM_ZONE_STAT_ITEMS = 11, +}; + +enum node_stat_item { + NR_LRU_BASE = 0, + NR_INACTIVE_ANON = 0, + NR_ACTIVE_ANON = 1, + NR_INACTIVE_FILE = 2, + NR_ACTIVE_FILE = 3, + NR_UNEVICTABLE = 4, + NR_SLAB_RECLAIMABLE_B = 5, + NR_SLAB_UNRECLAIMABLE_B = 6, + NR_ISOLATED_ANON = 7, + NR_ISOLATED_FILE = 8, + WORKINGSET_NODES = 9, + WORKINGSET_REFAULT_BASE = 10, + WORKINGSET_REFAULT_ANON = 10, + WORKINGSET_REFAULT_FILE = 11, + WORKINGSET_ACTIVATE_BASE = 12, + WORKINGSET_ACTIVATE_ANON = 12, + WORKINGSET_ACTIVATE_FILE = 13, + WORKINGSET_RESTORE_BASE = 14, + WORKINGSET_RESTORE_ANON = 14, + WORKINGSET_RESTORE_FILE = 15, + WORKINGSET_NODERECLAIM = 16, + NR_ANON_MAPPED = 17, + NR_FILE_MAPPED = 18, + NR_FILE_PAGES = 19, + NR_FILE_DIRTY = 20, + NR_WRITEBACK = 21, + NR_WRITEBACK_TEMP = 22, + NR_SHMEM = 23, + NR_SHMEM_THPS = 24, + NR_SHMEM_PMDMAPPED = 25, + NR_FILE_THPS = 26, + NR_FILE_PMDMAPPED = 27, + NR_ANON_THPS = 28, + NR_VMSCAN_WRITE = 29, + NR_VMSCAN_IMMEDIATE = 30, + NR_DIRTIED = 31, + NR_WRITTEN = 32, + NR_THROTTLED_WRITTEN = 33, + NR_KERNEL_MISC_RECLAIMABLE = 34, + NR_FOLL_PIN_ACQUIRED = 35, + NR_FOLL_PIN_RELEASED = 36, + NR_KERNEL_STACK_KB = 37, + NR_PAGETABLE = 38, + NR_SECONDARY_PAGETABLE = 39, + NR_SWAPCACHE = 40, + PGDEMOTE_KSWAPD = 41, + PGDEMOTE_DIRECT = 42, + PGDEMOTE_KHUGEPAGED = 43, + NR_VM_NODE_STAT_ITEMS = 44, +}; + +struct cdev { + struct kobject kobj; + struct module *owner; + const struct file_operations *ops; + struct list_head list; + dev_t dev; + unsigned int count; +}; + +typedef u32 phandle; + +struct property; + +struct device_node { + const char *name; + phandle phandle; + const char *full_name; + struct fwnode_handle fwnode; + struct property *properties; + struct property *deadprops; + struct device_node *parent; + struct device_node *child; + struct device_node *sibling; + struct kobject kobj; + long unsigned int _flags; + void *data; +}; + +struct property { + char *name; + int length; + void *value; + struct property *next; + long unsigned int _flags; + struct bin_attribute attr; +}; + +enum { + HI_SOFTIRQ = 0, + TIMER_SOFTIRQ = 1, + NET_TX_SOFTIRQ = 2, + NET_RX_SOFTIRQ = 3, + BLOCK_SOFTIRQ = 4, + IRQ_POLL_SOFTIRQ = 5, + TASKLET_SOFTIRQ = 6, + SCHED_SOFTIRQ = 7, + HRTIMER_SOFTIRQ = 8, + RCU_SOFTIRQ = 9, + NR_SOFTIRQS = 10, +}; + +enum mthp_stat_item { + MTHP_STAT_ANON_FAULT_ALLOC = 0, + MTHP_STAT_ANON_FAULT_FALLBACK = 1, + MTHP_STAT_ANON_FAULT_FALLBACK_CHARGE = 2, + MTHP_STAT_SWPOUT = 3, + MTHP_STAT_SWPOUT_FALLBACK = 4, + MTHP_STAT_SHMEM_ALLOC = 5, + MTHP_STAT_SHMEM_FALLBACK = 6, + MTHP_STAT_SHMEM_FALLBACK_CHARGE = 7, + MTHP_STAT_SPLIT = 8, + MTHP_STAT_SPLIT_FAILED = 9, + MTHP_STAT_SPLIT_DEFERRED = 10, + MTHP_STAT_NR_ANON = 11, + MTHP_STAT_NR_ANON_PARTIALLY_MAPPED = 12, + __MTHP_STAT_COUNT = 13, +}; + +enum vm_event_item { + PGPGIN = 0, + PGPGOUT = 1, + PSWPIN = 2, + PSWPOUT = 3, + PGALLOC_DMA = 4, + PGALLOC_DMA32 = 5, + PGALLOC_NORMAL = 6, + PGALLOC_MOVABLE = 7, + ALLOCSTALL_DMA = 8, + ALLOCSTALL_DMA32 = 9, + ALLOCSTALL_NORMAL = 10, + ALLOCSTALL_MOVABLE = 11, + PGSCAN_SKIP_DMA = 12, + PGSCAN_SKIP_DMA32 = 13, + PGSCAN_SKIP_NORMAL = 14, + PGSCAN_SKIP_MOVABLE = 15, + PGFREE = 16, + PGACTIVATE = 17, + PGDEACTIVATE = 18, + PGLAZYFREE = 19, + PGFAULT = 20, + PGMAJFAULT = 21, + PGLAZYFREED = 22, + PGREFILL = 23, + PGREUSE = 24, + PGSTEAL_KSWAPD = 25, + PGSTEAL_DIRECT = 26, + PGSTEAL_KHUGEPAGED = 27, + PGSCAN_KSWAPD = 28, + PGSCAN_DIRECT = 29, + PGSCAN_KHUGEPAGED = 30, + PGSCAN_DIRECT_THROTTLE = 31, + PGSCAN_ANON = 32, + PGSCAN_FILE = 33, + PGSTEAL_ANON = 34, + PGSTEAL_FILE = 35, + PGINODESTEAL = 36, + SLABS_SCANNED = 37, + KSWAPD_INODESTEAL = 38, + KSWAPD_LOW_WMARK_HIT_QUICKLY = 39, + KSWAPD_HIGH_WMARK_HIT_QUICKLY = 40, + PAGEOUTRUN = 41, + PGROTATED = 42, + DROP_PAGECACHE = 43, + DROP_SLAB = 44, + OOM_KILL = 45, + PGMIGRATE_SUCCESS = 46, + PGMIGRATE_FAIL = 47, + THP_MIGRATION_SUCCESS = 48, + THP_MIGRATION_FAIL = 49, + THP_MIGRATION_SPLIT = 50, + COMPACTMIGRATE_SCANNED = 51, + COMPACTFREE_SCANNED = 52, + COMPACTISOLATED = 53, + COMPACTSTALL = 54, + COMPACTFAIL = 55, + COMPACTSUCCESS = 56, + KCOMPACTD_WAKE = 57, + KCOMPACTD_MIGRATE_SCANNED = 58, + KCOMPACTD_FREE_SCANNED = 59, + HTLB_BUDDY_PGALLOC = 60, + HTLB_BUDDY_PGALLOC_FAIL = 61, + UNEVICTABLE_PGCULLED = 62, + UNEVICTABLE_PGSCANNED = 63, + UNEVICTABLE_PGRESCUED = 64, + UNEVICTABLE_PGMLOCKED = 65, + UNEVICTABLE_PGMUNLOCKED = 66, + UNEVICTABLE_PGCLEARED = 67, + UNEVICTABLE_PGSTRANDED = 68, + THP_FAULT_ALLOC = 69, + THP_FAULT_FALLBACK = 70, + THP_FAULT_FALLBACK_CHARGE = 71, + THP_COLLAPSE_ALLOC = 72, + THP_COLLAPSE_ALLOC_FAILED = 73, + THP_FILE_ALLOC = 74, + THP_FILE_FALLBACK = 75, + THP_FILE_FALLBACK_CHARGE = 76, + THP_FILE_MAPPED = 77, + THP_SPLIT_PAGE = 78, + THP_SPLIT_PAGE_FAILED = 79, + THP_DEFERRED_SPLIT_PAGE = 80, + THP_UNDERUSED_SPLIT_PAGE = 81, + THP_SPLIT_PMD = 82, + THP_SCAN_EXCEED_NONE_PTE = 83, + THP_SCAN_EXCEED_SWAP_PTE = 84, + THP_SCAN_EXCEED_SHARED_PTE = 85, + THP_ZERO_PAGE_ALLOC = 86, + THP_ZERO_PAGE_ALLOC_FAILED = 87, + THP_SWPOUT = 88, + THP_SWPOUT_FALLBACK = 89, + BALLOON_INFLATE = 90, + BALLOON_DEFLATE = 91, + BALLOON_MIGRATE = 92, + SWAP_RA = 93, + SWAP_RA_HIT = 94, + SWPIN_ZERO = 95, + SWPOUT_ZERO = 96, + KSM_SWPIN_COPY = 97, + COW_KSM = 98, + ZSWPIN = 99, + ZSWPOUT = 100, + ZSWPWB = 101, + NR_VM_EVENT_ITEMS = 102, +}; + +struct cpu_operations { + const char *name; + int (*cpu_init)(unsigned int); + int (*cpu_prepare)(unsigned int); + int (*cpu_boot)(unsigned int); + void (*cpu_postboot)(void); +}; + +typedef long unsigned int uintptr_t; + +struct alt_instr { + s32 orig_offset; + s32 alt_offset; + u16 cpucap; + u8 orig_len; + u8 alt_len; +}; + +typedef void (*alternative_cb_t)(struct alt_instr *, __le32 *, __le32 *, int); + +enum aarch64_insn_hint_cr_op { + AARCH64_INSN_HINT_NOP = 0, + AARCH64_INSN_HINT_YIELD = 32, + AARCH64_INSN_HINT_WFE = 64, + AARCH64_INSN_HINT_WFI = 96, + AARCH64_INSN_HINT_SEV = 128, + AARCH64_INSN_HINT_SEVL = 160, + AARCH64_INSN_HINT_XPACLRI = 224, + AARCH64_INSN_HINT_PACIA_1716 = 256, + AARCH64_INSN_HINT_PACIB_1716 = 320, + AARCH64_INSN_HINT_AUTIA_1716 = 384, + AARCH64_INSN_HINT_AUTIB_1716 = 448, + AARCH64_INSN_HINT_PACIAZ = 768, + AARCH64_INSN_HINT_PACIASP = 800, + AARCH64_INSN_HINT_PACIBZ = 832, + AARCH64_INSN_HINT_PACIBSP = 864, + AARCH64_INSN_HINT_AUTIAZ = 896, + AARCH64_INSN_HINT_AUTIASP = 928, + AARCH64_INSN_HINT_AUTIBZ = 960, + AARCH64_INSN_HINT_AUTIBSP = 992, + AARCH64_INSN_HINT_ESB = 512, + AARCH64_INSN_HINT_PSB = 544, + AARCH64_INSN_HINT_TSB = 576, + AARCH64_INSN_HINT_CSDB = 640, + AARCH64_INSN_HINT_CLEARBHB = 704, + AARCH64_INSN_HINT_BTI = 1024, + AARCH64_INSN_HINT_BTIC = 1088, + AARCH64_INSN_HINT_BTIJ = 1152, + AARCH64_INSN_HINT_BTIJC = 1216, +}; + +enum ftr_type { + FTR_EXACT = 0, + FTR_LOWER_SAFE = 1, + FTR_HIGHER_SAFE = 2, + FTR_HIGHER_OR_ZERO_SAFE = 3, +}; + +struct arm64_ftr_bits { + bool sign; + bool visible; + bool strict; + enum ftr_type type; + u8 shift; + u8 width; + s64 safe_val; +}; + +struct arm64_ftr_override { + u64 val; + u64 mask; +}; + +struct arm64_ftr_reg { + const char *name; + u64 strict_mask; + u64 user_mask; + u64 sys_val; + u64 user_val; + struct arm64_ftr_override *override; + const struct arm64_ftr_bits *ftr_bits; +}; + +typedef __u64 Elf64_Off; + +struct elf64_hdr { + unsigned char e_ident[16]; + Elf64_Half e_type; + Elf64_Half e_machine; + Elf64_Word e_version; + Elf64_Addr e_entry; + Elf64_Off e_phoff; + Elf64_Off e_shoff; + Elf64_Word e_flags; + Elf64_Half e_ehsize; + Elf64_Half e_phentsize; + Elf64_Half e_phnum; + Elf64_Half e_shentsize; + Elf64_Half e_shnum; + Elf64_Half e_shstrndx; +}; + +typedef struct elf64_hdr Elf64_Ehdr; + +struct elf64_shdr { + Elf64_Word sh_name; + Elf64_Word sh_type; + Elf64_Xword sh_flags; + Elf64_Addr sh_addr; + Elf64_Off sh_offset; + Elf64_Xword sh_size; + Elf64_Word sh_link; + Elf64_Word sh_info; + Elf64_Xword sh_addralign; + Elf64_Xword sh_entsize; +}; + +typedef struct elf64_shdr Elf64_Shdr; + +typedef int (*cpu_stop_fn_t)(void *); + +struct alt_region { + struct alt_instr *begin; + struct alt_instr *end; +}; + +enum { + ___GFP_DMA_BIT = 0, + ___GFP_HIGHMEM_BIT = 1, + ___GFP_DMA32_BIT = 2, + ___GFP_MOVABLE_BIT = 3, + ___GFP_RECLAIMABLE_BIT = 4, + ___GFP_HIGH_BIT = 5, + ___GFP_IO_BIT = 6, + ___GFP_FS_BIT = 7, + ___GFP_ZERO_BIT = 8, + ___GFP_UNUSED_BIT = 9, + ___GFP_DIRECT_RECLAIM_BIT = 10, + ___GFP_KSWAPD_RECLAIM_BIT = 11, + ___GFP_WRITE_BIT = 12, + ___GFP_NOWARN_BIT = 13, + ___GFP_RETRY_MAYFAIL_BIT = 14, + ___GFP_NOFAIL_BIT = 15, + ___GFP_NORETRY_BIT = 16, + ___GFP_MEMALLOC_BIT = 17, + ___GFP_COMP_BIT = 18, + ___GFP_NOMEMALLOC_BIT = 19, + ___GFP_HARDWALL_BIT = 20, + ___GFP_THISNODE_BIT = 21, + ___GFP_ACCOUNT_BIT = 22, + ___GFP_ZEROTAGS_BIT = 23, + ___GFP_NO_OBJ_EXT_BIT = 24, + ___GFP_LAST_BIT = 25, +}; + +struct plist_head { + struct list_head node_list; +}; + +struct notifier_block; + +typedef int (*notifier_fn_t)(struct notifier_block *, long unsigned int, void *); + +struct notifier_block { + notifier_fn_t notifier_call; + struct notifier_block *next; + int priority; +}; + +struct blocking_notifier_head { + struct rw_semaphore rwsem; + struct notifier_block *head; +}; + +enum scale_freq_source { + SCALE_FREQ_SOURCE_CPUFREQ = 0, + SCALE_FREQ_SOURCE_ARCH = 1, + SCALE_FREQ_SOURCE_CPPC = 2, +}; + +struct scale_freq_data { + enum scale_freq_source source; + void (*set_freq_scale)(void); +}; + +enum pm_qos_type { + PM_QOS_UNITIALIZED = 0, + PM_QOS_MAX = 1, + PM_QOS_MIN = 2, +}; + +struct pm_qos_constraints { + struct plist_head list; + s32 target_value; + s32 default_value; + s32 no_constraint_value; + enum pm_qos_type type; + struct blocking_notifier_head *notifiers; +}; + +enum freq_qos_req_type { + FREQ_QOS_MIN = 1, + FREQ_QOS_MAX = 2, +}; + +struct freq_constraints { + struct pm_qos_constraints min_freq; + struct blocking_notifier_head min_freq_notifiers; + struct pm_qos_constraints max_freq; + struct blocking_notifier_head max_freq_notifiers; +}; + +struct freq_qos_request { + enum freq_qos_req_type type; + struct plist_node pnode; + struct freq_constraints *qos; +}; + +enum cpufreq_table_sorting { + CPUFREQ_TABLE_UNSORTED = 0, + CPUFREQ_TABLE_SORTED_ASCENDING = 1, + CPUFREQ_TABLE_SORTED_DESCENDING = 2, +}; + +struct cpufreq_cpuinfo { + unsigned int max_freq; + unsigned int min_freq; + unsigned int transition_latency; +}; + +struct cpufreq_stats; + +struct thermal_cooling_device; + +struct clk; + +struct cpufreq_governor; + +struct cpufreq_frequency_table; + +struct cpufreq_policy { + cpumask_var_t cpus; + cpumask_var_t related_cpus; + cpumask_var_t real_cpus; + unsigned int shared_type; + unsigned int cpu; + struct clk *clk; + struct cpufreq_cpuinfo cpuinfo; + unsigned int min; + unsigned int max; + unsigned int cur; + unsigned int suspend_freq; + unsigned int policy; + unsigned int last_policy; + struct cpufreq_governor *governor; + void *governor_data; + char last_governor[16]; + struct work_struct update; + struct freq_constraints constraints; + struct freq_qos_request *min_freq_req; + struct freq_qos_request *max_freq_req; + struct cpufreq_frequency_table *freq_table; + enum cpufreq_table_sorting freq_table_sorted; + struct list_head policy_list; + struct kobject kobj; + struct completion kobj_unregister; + struct rw_semaphore rwsem; + bool fast_switch_possible; + bool fast_switch_enabled; + bool strict_target; + bool efficiencies_available; + unsigned int transition_delay_us; + bool dvfs_possible_from_any_cpu; + bool boost_enabled; + unsigned int cached_target_freq; + unsigned int cached_resolved_idx; + bool transition_ongoing; + spinlock_t transition_lock; + wait_queue_head_t transition_wait; + struct task_struct *transition_task; + struct cpufreq_stats *stats; + void *driver_data; + struct thermal_cooling_device *cdev; + struct notifier_block nb_min; + struct notifier_block nb_max; +}; + +struct cpufreq_governor { + char name[16]; + int (*init)(struct cpufreq_policy *); + void (*exit)(struct cpufreq_policy *); + int (*start)(struct cpufreq_policy *); + void (*stop)(struct cpufreq_policy *); + void (*limits)(struct cpufreq_policy *); + ssize_t (*show_setspeed)(struct cpufreq_policy *, char *); + int (*store_setspeed)(struct cpufreq_policy *, unsigned int); + struct list_head governor_list; + struct module *owner; + u8 flags; +}; + +struct cpufreq_frequency_table { + unsigned int flags; + unsigned int driver_data; + unsigned int frequency; +}; + +enum perf_branch_sample_type_shift { + PERF_SAMPLE_BRANCH_USER_SHIFT = 0, + PERF_SAMPLE_BRANCH_KERNEL_SHIFT = 1, + PERF_SAMPLE_BRANCH_HV_SHIFT = 2, + PERF_SAMPLE_BRANCH_ANY_SHIFT = 3, + PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT = 4, + PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT = 5, + PERF_SAMPLE_BRANCH_IND_CALL_SHIFT = 6, + PERF_SAMPLE_BRANCH_ABORT_TX_SHIFT = 7, + PERF_SAMPLE_BRANCH_IN_TX_SHIFT = 8, + PERF_SAMPLE_BRANCH_NO_TX_SHIFT = 9, + PERF_SAMPLE_BRANCH_COND_SHIFT = 10, + PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT = 11, + PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT = 12, + PERF_SAMPLE_BRANCH_CALL_SHIFT = 13, + PERF_SAMPLE_BRANCH_NO_FLAGS_SHIFT = 14, + PERF_SAMPLE_BRANCH_NO_CYCLES_SHIFT = 15, + PERF_SAMPLE_BRANCH_TYPE_SAVE_SHIFT = 16, + PERF_SAMPLE_BRANCH_HW_INDEX_SHIFT = 17, + PERF_SAMPLE_BRANCH_PRIV_SAVE_SHIFT = 18, + PERF_SAMPLE_BRANCH_COUNTERS_SHIFT = 19, + PERF_SAMPLE_BRANCH_MAX_SHIFT = 20, +}; + +typedef bool (*stack_trace_consume_fn)(void *, long unsigned int); + +struct perf_callchain_entry_ctx { + struct perf_callchain_entry *entry; + u32 max_stack; + u32 nr; + short int contexts; + bool contexts_maxed; +}; + +enum aarch64_insn_special_register { + AARCH64_INSN_SPCLREG_SPSR_EL1 = 49664, + AARCH64_INSN_SPCLREG_ELR_EL1 = 49665, + AARCH64_INSN_SPCLREG_SP_EL0 = 49672, + AARCH64_INSN_SPCLREG_SPSEL = 49680, + AARCH64_INSN_SPCLREG_CURRENTEL = 49682, + AARCH64_INSN_SPCLREG_DAIF = 55825, + AARCH64_INSN_SPCLREG_NZCV = 55824, + AARCH64_INSN_SPCLREG_FPCR = 55840, + AARCH64_INSN_SPCLREG_DSPSR_EL0 = 55848, + AARCH64_INSN_SPCLREG_DLR_EL0 = 55849, + AARCH64_INSN_SPCLREG_SPSR_EL2 = 57856, + AARCH64_INSN_SPCLREG_ELR_EL2 = 57857, + AARCH64_INSN_SPCLREG_SP_EL1 = 57864, + AARCH64_INSN_SPCLREG_SPSR_INQ = 57880, + AARCH64_INSN_SPCLREG_SPSR_ABT = 57881, + AARCH64_INSN_SPCLREG_SPSR_UND = 57882, + AARCH64_INSN_SPCLREG_SPSR_FIQ = 57883, + AARCH64_INSN_SPCLREG_SPSR_EL3 = 61952, + AARCH64_INSN_SPCLREG_ELR_EL3 = 61953, + AARCH64_INSN_SPCLREG_SP_EL2 = 61968, +}; + +typedef u32 kprobe_opcode_t; + +struct arch_specific_insn { + struct arch_probe_insn api; +}; + +enum probe_insn { + INSN_REJECTED = 0, + INSN_GOOD_NO_SLOT = 1, + INSN_GOOD = 2, +}; + +typedef unsigned int slab_flags_t; + +struct codetag { + unsigned int flags; + unsigned int lineno; + const char *modname; + const char *function; + const char *filename; +}; + +struct alloc_tag_counters { + u64 bytes; + u64 calls; +}; + +struct alloc_tag { + struct codetag ct; + struct alloc_tag_counters *counters; +}; + +enum _slab_flag_bits { + _SLAB_CONSISTENCY_CHECKS = 0, + _SLAB_RED_ZONE = 1, + _SLAB_POISON = 2, + _SLAB_KMALLOC = 3, + _SLAB_HWCACHE_ALIGN = 4, + _SLAB_CACHE_DMA = 5, + _SLAB_CACHE_DMA32 = 6, + _SLAB_STORE_USER = 7, + _SLAB_PANIC = 8, + _SLAB_TYPESAFE_BY_RCU = 9, + _SLAB_TRACE = 10, + _SLAB_NOLEAKTRACE = 11, + _SLAB_NO_MERGE = 12, + _SLAB_ACCOUNT = 13, + _SLAB_NO_USER_FLAGS = 14, + _SLAB_RECLAIM_ACCOUNT = 15, + _SLAB_OBJECT_POISON = 16, + _SLAB_CMPXCHG_DOUBLE = 17, + _SLAB_NO_OBJ_EXT = 18, + _SLAB_FLAGS_LAST_BIT = 19, +}; + +struct kmem_cache_args { + unsigned int align; + unsigned int useroffset; + unsigned int usersize; + unsigned int freeptr_offset; + bool use_freeptr_offset; + void (*ctor)(void *); +}; + +enum mod_mem_type { + MOD_TEXT = 0, + MOD_DATA = 1, + MOD_RODATA = 2, + MOD_RO_AFTER_INIT = 3, + MOD_INIT_TEXT = 4, + MOD_INIT_DATA = 5, + MOD_INIT_RODATA = 6, + MOD_MEM_NUM_TYPES = 7, + MOD_INVALID = -1, +}; + +typedef void (*exitcall_t)(void); + +struct crypto_alg; + +struct crypto_tfm { + refcount_t refcnt; + u32 crt_flags; + int node; + void (*exit)(struct crypto_tfm *); + struct crypto_alg *__crt_alg; + void *__crt_ctx[0]; +}; + +struct cipher_alg { + unsigned int cia_min_keysize; + unsigned int cia_max_keysize; + int (*cia_setkey)(struct crypto_tfm *, const u8 *, unsigned int); + void (*cia_encrypt)(struct crypto_tfm *, u8 *, const u8 *); + void (*cia_decrypt)(struct crypto_tfm *, u8 *, const u8 *); +}; + +struct compress_alg { + int (*coa_compress)(struct crypto_tfm *, const u8 *, unsigned int, u8 *, unsigned int *); + int (*coa_decompress)(struct crypto_tfm *, const u8 *, unsigned int, u8 *, unsigned int *); +}; + +struct crypto_type; + +struct crypto_alg { + struct list_head cra_list; + struct list_head cra_users; + u32 cra_flags; + unsigned int cra_blocksize; + unsigned int cra_ctxsize; + unsigned int cra_alignmask; + int cra_priority; + refcount_t cra_refcnt; + char cra_name[128]; + char cra_driver_name[128]; + const struct crypto_type *cra_type; + union { + struct cipher_alg cipher; + struct compress_alg compress; + } cra_u; + int (*cra_init)(struct crypto_tfm *); + void (*cra_exit)(struct crypto_tfm *); + void (*cra_destroy)(struct crypto_alg *); + struct module *cra_module; +}; + +struct sk_buff; + +struct crypto_instance; + +struct crypto_type { + unsigned int (*ctxsize)(struct crypto_alg *, u32, u32); + unsigned int (*extsize)(struct crypto_alg *); + int (*init_tfm)(struct crypto_tfm *); + void (*show)(struct seq_file *, struct crypto_alg *); + int (*report)(struct sk_buff *, struct crypto_alg *); + void (*free)(struct crypto_instance *); + unsigned int type; + unsigned int maskclear; + unsigned int maskset; + unsigned int tfmsize; +}; + +struct crypto_aes_ctx { + u32 key_enc[60]; + u32 key_dec[60]; + u32 key_length; +}; + +struct crypto_template; + +struct crypto_spawn; + +struct crypto_instance { + struct crypto_alg alg; + struct crypto_template *tmpl; + union { + struct hlist_node list; + struct crypto_spawn *spawns; + }; + struct work_struct free_work; + void *__ctx[0]; +}; + +struct crypto_spawn { + struct list_head list; + struct crypto_alg *alg; + union { + struct crypto_instance *inst; + struct crypto_spawn *next; + }; + const struct crypto_type *frontend; + u32 mask; + bool dead; + bool registered; +}; + +struct rtattr; + +struct crypto_template { + struct list_head list; + struct hlist_head instances; + struct module *module; + int (*create)(struct crypto_template *, struct rtattr **); + char name[128]; +}; + +struct cpu_feature { + __u16 feature; +}; + +enum hrtimer_base_type { + HRTIMER_BASE_MONOTONIC = 0, + HRTIMER_BASE_REALTIME = 1, + HRTIMER_BASE_BOOTTIME = 2, + HRTIMER_BASE_TAI = 3, + HRTIMER_BASE_MONOTONIC_SOFT = 4, + HRTIMER_BASE_REALTIME_SOFT = 5, + HRTIMER_BASE_BOOTTIME_SOFT = 6, + HRTIMER_BASE_TAI_SOFT = 7, + HRTIMER_MAX_CLOCK_BASES = 8, +}; + +enum { + DQF_ROOT_SQUASH_B = 0, + DQF_SYS_FILE_B = 16, + DQF_PRIVATE = 17, +}; + +enum { + DQST_LOOKUPS = 0, + DQST_DROPS = 1, + DQST_READS = 2, + DQST_WRITES = 3, + DQST_CACHE_HITS = 4, + DQST_ALLOC_DQUOTS = 5, + DQST_FREE_DQUOTS = 6, + DQST_SYNCS = 7, + _DQST_DQSTAT_LAST = 8, +}; + +enum { + SB_UNFROZEN = 0, + SB_FREEZE_WRITE = 1, + SB_FREEZE_PAGEFAULT = 2, + SB_FREEZE_FS = 3, + SB_FREEZE_COMPLETE = 4, +}; + +struct aes_block { + u8 b[16]; +}; + +typedef __u16 __be16; + +typedef __u32 __be32; + +typedef void (*crypto_completion_t)(void *, int); + +struct crypto_async_request { + struct list_head list; + crypto_completion_t complete; + void *data; + struct crypto_tfm *tfm; + u32 flags; +}; + +struct scatterlist; + +struct scatter_walk { + struct scatterlist *sg; + unsigned int offset; +}; + +struct scatterlist { + long unsigned int page_link; + unsigned int offset; + unsigned int length; + dma_addr_t dma_address; + unsigned int dma_length; +}; + +struct aead_request { + struct crypto_async_request base; + unsigned int assoclen; + unsigned int cryptlen; + u8 *iv; + struct scatterlist *src; + struct scatterlist *dst; + void *__ctx[0]; +}; + +struct crypto_aead; + +struct aead_alg { + int (*setkey)(struct crypto_aead *, const u8 *, unsigned int); + int (*setauthsize)(struct crypto_aead *, unsigned int); + int (*encrypt)(struct aead_request *); + int (*decrypt)(struct aead_request *); + int (*init)(struct crypto_aead *); + void (*exit)(struct crypto_aead *); + unsigned int ivsize; + unsigned int maxauthsize; + unsigned int chunksize; + struct crypto_alg base; +}; + +struct crypto_aead { + unsigned int authsize; + unsigned int reqsize; + struct crypto_tfm base; +}; + +struct skcipher_walk { + union { + struct { + struct page *page; + long unsigned int offset; + } phys; + struct { + u8 *page; + void *addr; + } virt; + } src; + union { + struct { + struct page *page; + long unsigned int offset; + } phys; + struct { + u8 *page; + void *addr; + } virt; + } dst; + struct scatter_walk in; + unsigned int nbytes; + struct scatter_walk out; + unsigned int total; + struct list_head buffers; + u8 *page; + u8 *buffer; + u8 *oiv; + void *iv; + unsigned int ivsize; + int flags; + unsigned int blocksize; + unsigned int stride; + unsigned int alignmask; +}; + +struct hash_alg_common { + unsigned int digestsize; + unsigned int statesize; + struct crypto_alg base; +}; + +struct crypto_shash; + +struct shash_desc { + struct crypto_shash *tfm; + void *__ctx[0]; +}; + +struct crypto_shash { + unsigned int descsize; + struct crypto_tfm base; +}; + +struct shash_alg { + int (*init)(struct shash_desc *); + int (*update)(struct shash_desc *, const u8 *, unsigned int); + int (*final)(struct shash_desc *, u8 *); + int (*finup)(struct shash_desc *, const u8 *, unsigned int, u8 *); + int (*digest)(struct shash_desc *, const u8 *, unsigned int, u8 *); + int (*export)(struct shash_desc *, void *); + int (*import)(struct shash_desc *, const void *); + int (*setkey)(struct crypto_shash *, const u8 *, unsigned int); + int (*init_tfm)(struct crypto_shash *); + void (*exit_tfm)(struct crypto_shash *); + int (*clone_tfm)(struct crypto_shash *, struct crypto_shash *); + unsigned int descsize; + union { + struct { + unsigned int digestsize; + unsigned int statesize; + struct crypto_alg base; + }; + struct hash_alg_common halg; + }; +}; + +struct poly1305_key { + union { + u32 r[5]; + u64 r64[3]; + }; +}; + +struct poly1305_core_key { + struct poly1305_key key; + struct poly1305_key precomputed_s; +}; + +struct poly1305_state { + union { + u32 h[5]; + u64 h64[3]; + }; +}; + +struct poly1305_desc_ctx { + u8 buf[16]; + unsigned int buflen; + short unsigned int rset; + bool sset; + u32 s[4]; + struct poly1305_state h; + union { + struct poly1305_key opaque_r[9]; + struct poly1305_core_key core_r; + }; +}; + +typedef __s16 s16; + +typedef __u64 __be64; + +typedef __u32 __wsum; + +typedef __kernel_clock_t clock_t; + +typedef struct { + atomic_t refcnt; +} rcuref_t; + +enum lockdep_ok { + LOCKDEP_STILL_OK = 0, + LOCKDEP_NOW_UNRELIABLE = 1, +}; + +struct reclaim_state { + long unsigned int reclaimed; + struct lru_gen_mm_walk *mm_walk; +}; + +struct in6_addr { + union { + __u8 u6_addr8[16]; + __be16 u6_addr16[8]; + __be32 u6_addr32[4]; + } in6_u; +}; + +struct bpf_nh_params { + u32 nh_family; + union { + u32 ipv4_nh; + struct in6_addr ipv6_nh; + }; +}; + +struct bpf_redirect_info { + u64 tgt_index; + void *tgt_value; + struct bpf_map *map; + u32 flags; + u32 map_id; + enum bpf_map_type map_type; + struct bpf_nh_params nh; + u32 kern_flags; +}; + +struct bpf_net_context { + struct bpf_redirect_info ri; + struct list_head cpu_map_flush_list; + struct list_head dev_map_flush_list; + struct list_head xskmap_map_flush_list; +}; + +struct wait_queue_entry; + +typedef int (*wait_queue_func_t)(struct wait_queue_entry *, unsigned int, int, void *); + +struct wait_queue_entry { + unsigned int flags; + void *private; + wait_queue_func_t func; + struct list_head entry; +}; + +typedef struct wait_queue_entry wait_queue_entry_t; + +struct linux_binprm; + +struct coredump_params; + +struct linux_binfmt { + struct list_head lh; + struct module *module; + int (*load_binary)(struct linux_binprm *); + int (*load_shlib)(struct file *); + int (*core_dump)(struct coredump_params *); + long unsigned int min_coredump; +}; + +struct raw_notifier_head { + struct notifier_block *head; +}; + +struct wait_page_queue { + struct folio *folio; + int bit_nr; + wait_queue_entry_t wait; +}; + +struct readahead_control { + struct file *file; + struct address_space *mapping; + struct file_ra_state *ra; + long unsigned int _index; + unsigned int _nr_pages; + unsigned int _batch_count; + bool _workingset; + long unsigned int _pflags; +}; + +struct swap_cluster_info; + +struct percpu_cluster; + +struct swap_info_struct { + struct percpu_ref users; + long unsigned int flags; + short int prio; + struct plist_node list; + signed char type; + unsigned int max; + unsigned char *swap_map; + long unsigned int *zeromap; + struct swap_cluster_info *cluster_info; + struct list_head free_clusters; + struct list_head full_clusters; + struct list_head nonfull_clusters[10]; + struct list_head frag_clusters[10]; + unsigned int frag_cluster_nr[10]; + unsigned int lowest_bit; + unsigned int highest_bit; + unsigned int pages; + unsigned int inuse_pages; + unsigned int cluster_next; + unsigned int cluster_nr; + unsigned int *cluster_next_cpu; + struct percpu_cluster *percpu_cluster; + struct rb_root swap_extent_root; + struct block_device *bdev; + struct file *swap_file; + struct completion comp; + spinlock_t lock; + spinlock_t cont_lock; + struct work_struct discard_work; + struct work_struct reclaim_work; + struct list_head discard_clusters; + struct plist_node avail_lists[0]; +}; + +struct posix_acl_entry { + short int e_tag; + short unsigned int e_perm; + union { + kuid_t e_uid; + kgid_t e_gid; + }; +}; + +struct posix_acl { + refcount_t a_refcount; + struct callback_head a_rcu; + unsigned int a_count; + struct posix_acl_entry a_entries[0]; +}; + +typedef __u64 __addrpair; + +typedef __u32 __portpair; + +typedef struct { + struct net *net; +} possible_net_t; + +struct proto; + +struct inet_timewait_death_row; + +struct sock_common { + union { + __addrpair skc_addrpair; + struct { + __be32 skc_daddr; + __be32 skc_rcv_saddr; + }; + }; + union { + unsigned int skc_hash; + __u16 skc_u16hashes[2]; + }; + union { + __portpair skc_portpair; + struct { + __be16 skc_dport; + __u16 skc_num; + }; + }; + short unsigned int skc_family; + volatile unsigned char skc_state; + unsigned char skc_reuse: 4; + unsigned char skc_reuseport: 1; + unsigned char skc_ipv6only: 1; + unsigned char skc_net_refcnt: 1; + int skc_bound_dev_if; + union { + struct hlist_node skc_bind_node; + struct hlist_node skc_portaddr_node; + }; + struct proto *skc_prot; + possible_net_t skc_net; + struct in6_addr skc_v6_daddr; + struct in6_addr skc_v6_rcv_saddr; + atomic64_t skc_cookie; + union { + long unsigned int skc_flags; + struct sock *skc_listener; + struct inet_timewait_death_row *skc_tw_dr; + }; + int skc_dontcopy_begin[0]; + union { + struct hlist_node skc_node; + struct hlist_nulls_node skc_nulls_node; + }; + short unsigned int skc_tx_queue_mapping; + short unsigned int skc_rx_queue_mapping; + union { + int skc_incoming_cpu; + u32 skc_rcv_wnd; + u32 skc_tw_rcv_nxt; + }; + refcount_t skc_refcnt; + int skc_dontcopy_end[0]; + union { + u32 skc_rxhash; + u32 skc_window_clamp; + u32 skc_tw_snd_nxt; + }; +}; + +struct sk_buff_list { + struct sk_buff *next; + struct sk_buff *prev; +}; + +struct sk_buff_head { + union { + struct { + struct sk_buff *next; + struct sk_buff *prev; + }; + struct sk_buff_list list; + }; + __u32 qlen; + spinlock_t lock; +}; + +typedef struct { + spinlock_t slock; + int owned; + wait_queue_head_t wq; +} socket_lock_t; + +typedef u64 netdev_features_t; + +struct sock_cgroup_data { + struct cgroup *cgroup; + u32 classid; + u16 prioidx; +}; + +typedef struct {} netns_tracker; + +struct dst_entry; + +struct sk_filter; + +struct socket_wq; + +struct socket; + +struct xfrm_policy; + +struct sock_reuseport; + +struct sock { + struct sock_common __sk_common; + __u8 __cacheline_group_begin__sock_write_rx[0]; + atomic_t sk_drops; + __s32 sk_peek_off; + struct sk_buff_head sk_error_queue; + struct sk_buff_head sk_receive_queue; + struct { + atomic_t rmem_alloc; + int len; + struct sk_buff *head; + struct sk_buff *tail; + } sk_backlog; + __u8 __cacheline_group_end__sock_write_rx[0]; + __u8 __cacheline_group_begin__sock_read_rx[0]; + struct dst_entry *sk_rx_dst; + int sk_rx_dst_ifindex; + u32 sk_rx_dst_cookie; + unsigned int sk_ll_usec; + unsigned int sk_napi_id; + u16 sk_busy_poll_budget; + u8 sk_prefer_busy_poll; + u8 sk_userlocks; + int sk_rcvbuf; + struct sk_filter *sk_filter; + union { + struct socket_wq *sk_wq; + struct socket_wq *sk_wq_raw; + }; + void (*sk_data_ready)(struct sock *); + long int sk_rcvtimeo; + int sk_rcvlowat; + __u8 __cacheline_group_end__sock_read_rx[0]; + __u8 __cacheline_group_begin__sock_read_rxtx[0]; + int sk_err; + struct socket *sk_socket; + struct mem_cgroup *sk_memcg; + struct xfrm_policy *sk_policy[2]; + __u8 __cacheline_group_end__sock_read_rxtx[0]; + __u8 __cacheline_group_begin__sock_write_rxtx[0]; + socket_lock_t sk_lock; + u32 sk_reserved_mem; + int sk_forward_alloc; + u32 sk_tsflags; + __u8 __cacheline_group_end__sock_write_rxtx[0]; + __u8 __cacheline_group_begin__sock_write_tx[0]; + int sk_write_pending; + atomic_t sk_omem_alloc; + int sk_sndbuf; + int sk_wmem_queued; + refcount_t sk_wmem_alloc; + long unsigned int sk_tsq_flags; + union { + struct sk_buff *sk_send_head; + struct rb_root tcp_rtx_queue; + }; + struct sk_buff_head sk_write_queue; + u32 sk_dst_pending_confirm; + u32 sk_pacing_status; + struct page_frag sk_frag; + struct timer_list sk_timer; + long unsigned int sk_pacing_rate; + atomic_t sk_zckey; + atomic_t sk_tskey; + __u8 __cacheline_group_end__sock_write_tx[0]; + __u8 __cacheline_group_begin__sock_read_tx[0]; + long unsigned int sk_max_pacing_rate; + long int sk_sndtimeo; + u32 sk_priority; + u32 sk_mark; + struct dst_entry *sk_dst_cache; + netdev_features_t sk_route_caps; + u16 sk_gso_type; + u16 sk_gso_max_segs; + unsigned int sk_gso_max_size; + gfp_t sk_allocation; + u32 sk_txhash; + u8 sk_pacing_shift; + bool sk_use_task_frag; + __u8 __cacheline_group_end__sock_read_tx[0]; + u8 sk_gso_disabled: 1; + u8 sk_kern_sock: 1; + u8 sk_no_check_tx: 1; + u8 sk_no_check_rx: 1; + u8 sk_shutdown; + u16 sk_type; + u16 sk_protocol; + long unsigned int sk_lingertime; + struct proto *sk_prot_creator; + rwlock_t sk_callback_lock; + int sk_err_soft; + u32 sk_ack_backlog; + u32 sk_max_ack_backlog; + kuid_t sk_uid; + spinlock_t sk_peer_lock; + int sk_bind_phc; + struct pid *sk_peer_pid; + const struct cred *sk_peer_cred; + ktime_t sk_stamp; + int sk_disconnects; + u8 sk_txrehash; + u8 sk_clockid; + u8 sk_txtime_deadline_mode: 1; + u8 sk_txtime_report_errors: 1; + u8 sk_txtime_unused: 6; + void *sk_user_data; + void *sk_security; + struct sock_cgroup_data sk_cgrp_data; + void (*sk_state_change)(struct sock *); + void (*sk_write_space)(struct sock *); + void (*sk_error_report)(struct sock *); + int (*sk_backlog_rcv)(struct sock *, struct sk_buff *); + void (*sk_destruct)(struct sock *); + struct sock_reuseport *sk_reuseport_cb; + struct bpf_local_storage *sk_bpf_storage; + struct callback_head sk_rcu; + netns_tracker ns_tracker; + struct xarray sk_user_frags; +}; + +struct new_utsname { + char sysname[65]; + char nodename[65]; + char release[65]; + char version[65]; + char machine[65]; + char domainname[65]; +}; + +struct uts_namespace { + struct new_utsname name; + struct user_namespace *user_ns; + struct ucounts *ucounts; + struct ns_common ns; +}; + +struct ref_tracker_dir {}; + +struct prot_inuse; + +struct netns_core { + struct ctl_table_header *sysctl_hdr; + int sysctl_somaxconn; + int sysctl_optmem_max; + u8 sysctl_txrehash; + struct prot_inuse *prot_inuse; + struct cpumask *rps_default_mask; +}; + +struct ipstats_mib; + +struct tcp_mib; + +struct linux_mib; + +struct udp_mib; + +struct linux_xfrm_mib; + +struct icmp_mib; + +struct icmpmsg_mib; + +struct icmpv6_mib; + +struct icmpv6msg_mib; + +struct proc_dir_entry; + +struct netns_mib { + struct ipstats_mib *ip_statistics; + struct ipstats_mib *ipv6_statistics; + struct tcp_mib *tcp_statistics; + struct linux_mib *net_statistics; + struct udp_mib *udp_statistics; + struct udp_mib *udp_stats_in6; + struct linux_xfrm_mib *xfrm_statistics; + struct udp_mib *udplite_statistics; + struct udp_mib *udplite_stats_in6; + struct icmp_mib *icmp_statistics; + struct icmpmsg_mib *icmpmsg_statistics; + struct icmpv6_mib *icmpv6_statistics; + struct icmpv6msg_mib *icmpv6msg_statistics; + struct proc_dir_entry *proc_net_devsnmp6; +}; + +struct netns_packet { + struct mutex sklist_lock; + struct hlist_head sklist; +}; + +struct unix_table { + spinlock_t *locks; + struct hlist_head *buckets; +}; + +struct netns_unix { + struct unix_table table; + int sysctl_max_dgram_qlen; + struct ctl_table_header *ctl; +}; + +struct netns_nexthop { + struct rb_root rb_root; + struct hlist_head *devhash; + unsigned int seq; + u32 last_id_allocated; + struct blocking_notifier_head notifier_chain; +}; + +struct inet_hashinfo; + +struct inet_timewait_death_row { + refcount_t tw_refcount; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct inet_hashinfo *hashinfo; + int sysctl_max_tw_buckets; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct local_ports { + u32 range; + bool warned; +}; + +struct ping_group_range { + seqlock_t lock; + kgid_t range[2]; +}; + +struct sysctl_fib_multipath_hash_seed { + u32 user_seed; + u32 mp_seed; +}; + +typedef struct { + u64 key[2]; +} siphash_key_t; + +struct udp_table; + +struct ipv4_devconf; + +struct ip_ra_chain; + +struct fib_rules_ops; + +struct fib_table; + +struct inet_peer_base; + +struct fqdir; + +struct tcp_congestion_ops; + +struct tcp_fastopen_context; + +struct fib_notifier_ops; + +struct netns_ipv4 { + __u8 __cacheline_group_begin__netns_ipv4_read_tx[0]; + u8 sysctl_tcp_early_retrans; + u8 sysctl_tcp_tso_win_divisor; + u8 sysctl_tcp_tso_rtt_log; + u8 sysctl_tcp_autocorking; + int sysctl_tcp_min_snd_mss; + unsigned int sysctl_tcp_notsent_lowat; + int sysctl_tcp_limit_output_bytes; + int sysctl_tcp_min_rtt_wlen; + int sysctl_tcp_wmem[3]; + u8 sysctl_ip_fwd_use_pmtu; + __u8 __cacheline_group_end__netns_ipv4_read_tx[0]; + __u8 __cacheline_group_begin__netns_ipv4_read_txrx[0]; + u8 sysctl_tcp_moderate_rcvbuf; + __u8 __cacheline_group_end__netns_ipv4_read_txrx[0]; + __u8 __cacheline_group_begin__netns_ipv4_read_rx[0]; + u8 sysctl_ip_early_demux; + u8 sysctl_tcp_early_demux; + int sysctl_tcp_reordering; + int sysctl_tcp_rmem[3]; + __u8 __cacheline_group_end__netns_ipv4_read_rx[0]; + long: 64; + struct inet_timewait_death_row tcp_death_row; + struct udp_table *udp_table; + struct ctl_table_header *forw_hdr; + struct ctl_table_header *frags_hdr; + struct ctl_table_header *ipv4_hdr; + struct ctl_table_header *route_hdr; + struct ctl_table_header *xfrm4_hdr; + struct ipv4_devconf *devconf_all; + struct ipv4_devconf *devconf_dflt; + struct ip_ra_chain *ra_chain; + struct mutex ra_mutex; + struct fib_rules_ops *rules_ops; + struct fib_table *fib_main; + struct fib_table *fib_default; + unsigned int fib_rules_require_fldissect; + bool fib_has_custom_rules; + bool fib_has_custom_local_routes; + bool fib_offload_disabled; + u8 sysctl_tcp_shrink_window; + atomic_t fib_num_tclassid_users; + struct hlist_head *fib_table_hash; + struct sock *fibnl; + struct sock *mc_autojoin_sk; + struct inet_peer_base *peers; + struct fqdir *fqdir; + u8 sysctl_icmp_echo_ignore_all; + u8 sysctl_icmp_echo_enable_probe; + u8 sysctl_icmp_echo_ignore_broadcasts; + u8 sysctl_icmp_ignore_bogus_error_responses; + u8 sysctl_icmp_errors_use_inbound_ifaddr; + int sysctl_icmp_ratelimit; + int sysctl_icmp_ratemask; + int sysctl_icmp_msgs_per_sec; + int sysctl_icmp_msgs_burst; + atomic_t icmp_global_credit; + u32 icmp_global_stamp; + u32 ip_rt_min_pmtu; + int ip_rt_mtu_expires; + int ip_rt_min_advmss; + struct local_ports ip_local_ports; + u8 sysctl_tcp_ecn; + u8 sysctl_tcp_ecn_fallback; + u8 sysctl_ip_default_ttl; + u8 sysctl_ip_no_pmtu_disc; + u8 sysctl_ip_fwd_update_priority; + u8 sysctl_ip_nonlocal_bind; + u8 sysctl_ip_autobind_reuse; + u8 sysctl_ip_dynaddr; + u8 sysctl_raw_l3mdev_accept; + u8 sysctl_udp_early_demux; + u8 sysctl_nexthop_compat_mode; + u8 sysctl_fwmark_reflect; + u8 sysctl_tcp_fwmark_accept; + u8 sysctl_tcp_l3mdev_accept; + u8 sysctl_tcp_mtu_probing; + int sysctl_tcp_mtu_probe_floor; + int sysctl_tcp_base_mss; + int sysctl_tcp_probe_threshold; + u32 sysctl_tcp_probe_interval; + int sysctl_tcp_keepalive_time; + int sysctl_tcp_keepalive_intvl; + u8 sysctl_tcp_keepalive_probes; + u8 sysctl_tcp_syn_retries; + u8 sysctl_tcp_synack_retries; + u8 sysctl_tcp_syncookies; + u8 sysctl_tcp_migrate_req; + u8 sysctl_tcp_comp_sack_nr; + u8 sysctl_tcp_backlog_ack_defer; + u8 sysctl_tcp_pingpong_thresh; + u8 sysctl_tcp_retries1; + u8 sysctl_tcp_retries2; + u8 sysctl_tcp_orphan_retries; + u8 sysctl_tcp_tw_reuse; + int sysctl_tcp_fin_timeout; + u8 sysctl_tcp_sack; + u8 sysctl_tcp_window_scaling; + u8 sysctl_tcp_timestamps; + int sysctl_tcp_rto_min_us; + u8 sysctl_tcp_recovery; + u8 sysctl_tcp_thin_linear_timeouts; + u8 sysctl_tcp_slow_start_after_idle; + u8 sysctl_tcp_retrans_collapse; + u8 sysctl_tcp_stdurg; + u8 sysctl_tcp_rfc1337; + u8 sysctl_tcp_abort_on_overflow; + u8 sysctl_tcp_fack; + int sysctl_tcp_max_reordering; + int sysctl_tcp_adv_win_scale; + u8 sysctl_tcp_dsack; + u8 sysctl_tcp_app_win; + u8 sysctl_tcp_frto; + u8 sysctl_tcp_nometrics_save; + u8 sysctl_tcp_no_ssthresh_metrics_save; + u8 sysctl_tcp_workaround_signed_windows; + int sysctl_tcp_challenge_ack_limit; + u8 sysctl_tcp_min_tso_segs; + u8 sysctl_tcp_reflect_tos; + int sysctl_tcp_invalid_ratelimit; + int sysctl_tcp_pacing_ss_ratio; + int sysctl_tcp_pacing_ca_ratio; + unsigned int sysctl_tcp_child_ehash_entries; + long unsigned int sysctl_tcp_comp_sack_delay_ns; + long unsigned int sysctl_tcp_comp_sack_slack_ns; + int sysctl_max_syn_backlog; + int sysctl_tcp_fastopen; + const struct tcp_congestion_ops *tcp_congestion_control; + struct tcp_fastopen_context *tcp_fastopen_ctx; + unsigned int sysctl_tcp_fastopen_blackhole_timeout; + atomic_t tfo_active_disable_times; + long unsigned int tfo_active_disable_stamp; + u32 tcp_challenge_timestamp; + u32 tcp_challenge_count; + u8 sysctl_tcp_plb_enabled; + u8 sysctl_tcp_plb_idle_rehash_rounds; + u8 sysctl_tcp_plb_rehash_rounds; + u8 sysctl_tcp_plb_suspend_rto_sec; + int sysctl_tcp_plb_cong_thresh; + int sysctl_udp_wmem_min; + int sysctl_udp_rmem_min; + u8 sysctl_fib_notify_on_flag_change; + u8 sysctl_tcp_syn_linear_timeouts; + u8 sysctl_udp_l3mdev_accept; + u8 sysctl_igmp_llm_reports; + int sysctl_igmp_max_memberships; + int sysctl_igmp_max_msf; + int sysctl_igmp_qrv; + struct ping_group_range ping_group_range; + atomic_t dev_addr_genid; + unsigned int sysctl_udp_child_hash_entries; + long unsigned int *sysctl_local_reserved_ports; + int sysctl_ip_prot_sock; + struct list_head mr_tables; + struct fib_rules_ops *mr_rules_ops; + struct sysctl_fib_multipath_hash_seed sysctl_fib_multipath_hash_seed; + u32 sysctl_fib_multipath_hash_fields; + u8 sysctl_fib_multipath_use_neigh; + u8 sysctl_fib_multipath_hash_policy; + struct fib_notifier_ops *notifier_ops; + unsigned int fib_seq; + struct fib_notifier_ops *ipmr_notifier_ops; + unsigned int ipmr_seq; + atomic_t rt_genid; + siphash_key_t ip_id_key; +}; + +struct neighbour; + +struct dst_ops { + short unsigned int family; + unsigned int gc_thresh; + void (*gc)(struct dst_ops *); + struct dst_entry * (*check)(struct dst_entry *, __u32); + unsigned int (*default_advmss)(const struct dst_entry *); + unsigned int (*mtu)(const struct dst_entry *); + u32 * (*cow_metrics)(struct dst_entry *, long unsigned int); + void (*destroy)(struct dst_entry *); + void (*ifdown)(struct dst_entry *, struct net_device *); + void (*negative_advice)(struct sock *, struct dst_entry *); + void (*link_failure)(struct sk_buff *); + void (*update_pmtu)(struct dst_entry *, struct sock *, struct sk_buff *, u32, bool); + void (*redirect)(struct dst_entry *, struct sock *, struct sk_buff *); + int (*local_out)(struct net *, struct sock *, struct sk_buff *); + struct neighbour * (*neigh_lookup)(const struct dst_entry *, struct sk_buff *, const void *); + void (*confirm_neigh)(const struct dst_entry *, const void *); + struct kmem_cache *kmem_cachep; + struct percpu_counter pcpuc_entries; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct netns_sysctl_ipv6 { + struct ctl_table_header *hdr; + struct ctl_table_header *route_hdr; + struct ctl_table_header *icmp_hdr; + struct ctl_table_header *frags_hdr; + struct ctl_table_header *xfrm6_hdr; + int flush_delay; + int ip6_rt_max_size; + int ip6_rt_gc_min_interval; + int ip6_rt_gc_timeout; + int ip6_rt_gc_interval; + int ip6_rt_gc_elasticity; + int ip6_rt_mtu_expires; + int ip6_rt_min_advmss; + u32 multipath_hash_fields; + u8 multipath_hash_policy; + u8 bindv6only; + u8 flowlabel_consistency; + u8 auto_flowlabels; + int icmpv6_time; + u8 icmpv6_echo_ignore_all; + u8 icmpv6_echo_ignore_multicast; + u8 icmpv6_echo_ignore_anycast; + long unsigned int icmpv6_ratemask[4]; + long unsigned int *icmpv6_ratemask_ptr; + u8 anycast_src_echo_reply; + u8 ip_nonlocal_bind; + u8 fwmark_reflect; + u8 flowlabel_state_ranges; + int idgen_retries; + int idgen_delay; + int flowlabel_reflect; + int max_dst_opts_cnt; + int max_hbh_opts_cnt; + int max_dst_opts_len; + int max_hbh_opts_len; + int seg6_flowlabel; + u32 ioam6_id; + u64 ioam6_id_wide; + u8 skip_notify_on_dev_down; + u8 fib_notify_on_flag_change; + u8 icmpv6_error_anycast_as_unicast; +}; + +struct ipv6_devconf; + +struct fib6_info; + +struct rt6_info; + +struct rt6_statistics; + +struct fib6_table; + +struct seg6_pernet_data; + +struct ioam6_pernet_data; + +struct netns_ipv6 { + struct dst_ops ip6_dst_ops; + struct netns_sysctl_ipv6 sysctl; + struct ipv6_devconf *devconf_all; + struct ipv6_devconf *devconf_dflt; + struct inet_peer_base *peers; + struct fqdir *fqdir; + struct fib6_info *fib6_null_entry; + struct rt6_info *ip6_null_entry; + struct rt6_statistics *rt6_stats; + struct timer_list ip6_fib_timer; + struct hlist_head *fib_table_hash; + struct fib6_table *fib6_main_tbl; + struct list_head fib6_walkers; + rwlock_t fib6_walker_lock; + spinlock_t fib6_gc_lock; + atomic_t ip6_rt_gc_expire; + long unsigned int ip6_rt_last_gc; + unsigned char flowlabel_has_excl; + bool fib6_has_custom_rules; + unsigned int fib6_rules_require_fldissect; + unsigned int fib6_routes_require_src; + struct rt6_info *ip6_prohibit_entry; + struct rt6_info *ip6_blk_hole_entry; + struct fib6_table *fib6_local_tbl; + struct fib_rules_ops *fib6_rules_ops; + struct sock *ndisc_sk; + struct sock *tcp_sk; + struct sock *igmp_sk; + struct sock *mc_autojoin_sk; + struct hlist_head *inet6_addr_lst; + spinlock_t addrconf_hash_lock; + struct delayed_work addr_chk_work; + atomic_t dev_addr_genid; + atomic_t fib6_sernum; + struct seg6_pernet_data *seg6_data; + struct fib_notifier_ops *notifier_ops; + struct fib_notifier_ops *ip6mr_notifier_ops; + unsigned int ipmr_seq; + struct { + struct hlist_head head; + spinlock_t lock; + u32 seq; + } ip6addrlbl_table; + struct ioam6_pernet_data *ioam6_data; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct sctp_mib; + +struct netns_sctp { + struct sctp_mib *sctp_statistics; + struct proc_dir_entry *proc_net_sctp; + struct ctl_table_header *sysctl_header; + struct sock *ctl_sock; + struct sock *udp4_sock; + struct sock *udp6_sock; + int udp_port; + int encap_port; + struct list_head local_addr_list; + struct list_head addr_waitq; + struct timer_list addr_wq_timer; + struct list_head auto_asconf_splist; + spinlock_t addr_wq_lock; + spinlock_t local_addr_lock; + unsigned int rto_initial; + unsigned int rto_min; + unsigned int rto_max; + int rto_alpha; + int rto_beta; + int max_burst; + int cookie_preserve_enable; + char *sctp_hmac_alg; + unsigned int valid_cookie_life; + unsigned int sack_timeout; + unsigned int hb_interval; + unsigned int probe_interval; + int max_retrans_association; + int max_retrans_path; + int max_retrans_init; + int pf_retrans; + int ps_retrans; + int pf_enable; + int pf_expose; + int sndbuf_policy; + int rcvbuf_policy; + int default_auto_asconf; + int addip_enable; + int addip_noauth; + int prsctp_enable; + int reconf_enable; + int auth_enable; + int intl_enable; + int ecn_enable; + int scope_policy; + int rwnd_upd_shift; + long unsigned int max_autoclose; + int l3mdev_accept; +}; + +struct nf_logger; + +struct nf_hook_entries; + +struct netns_nf { + struct proc_dir_entry *proc_netfilter; + const struct nf_logger *nf_loggers[11]; + struct ctl_table_header *nf_log_dir_header; + struct ctl_table_header *nf_lwtnl_dir_header; + struct nf_hook_entries *hooks_ipv4[5]; + struct nf_hook_entries *hooks_ipv6[5]; + struct nf_hook_entries *hooks_arp[3]; + struct nf_hook_entries *hooks_bridge[5]; + unsigned int defrag_ipv4_users; + unsigned int defrag_ipv6_users; +}; + +struct nf_generic_net { + unsigned int timeout; +}; + +struct nf_tcp_net { + unsigned int timeouts[14]; + u8 tcp_loose; + u8 tcp_be_liberal; + u8 tcp_max_retrans; + u8 tcp_ignore_invalid_rst; +}; + +struct nf_udp_net { + unsigned int timeouts[2]; +}; + +struct nf_icmp_net { + unsigned int timeout; +}; + +struct nf_dccp_net { + u8 dccp_loose; + unsigned int dccp_timeout[10]; +}; + +struct nf_sctp_net { + unsigned int timeouts[10]; +}; + +struct nf_ip_net { + struct nf_generic_net generic; + struct nf_tcp_net tcp; + struct nf_udp_net udp; + struct nf_icmp_net icmp; + struct nf_icmp_net icmpv6; + struct nf_dccp_net dccp; + struct nf_sctp_net sctp; +}; + +struct ip_conntrack_stat; + +struct nf_ct_event_notifier; + +struct netns_ct { + bool ecache_dwork_pending; + u8 sysctl_log_invalid; + u8 sysctl_events; + u8 sysctl_acct; + u8 sysctl_tstamp; + u8 sysctl_checksum; + struct ip_conntrack_stat *stat; + struct nf_ct_event_notifier *nf_conntrack_event_cb; + struct nf_ip_net nf_ct_proto; + atomic_t labels_used; +}; + +struct netns_nftables { + unsigned int base_seq; + u8 gencursor; +}; + +struct netns_bpf { + struct bpf_prog_array *run_array[2]; + struct bpf_prog *progs[2]; + struct list_head links[2]; +}; + +struct xfrm_policy_hash { + struct hlist_head *table; + unsigned int hmask; + u8 dbits4; + u8 sbits4; + u8 dbits6; + u8 sbits6; +}; + +struct xfrm_policy_hthresh { + struct work_struct work; + seqlock_t lock; + u8 lbits4; + u8 rbits4; + u8 lbits6; + u8 rbits6; +}; + +struct netns_xfrm { + struct list_head state_all; + struct hlist_head *state_bydst; + struct hlist_head *state_bysrc; + struct hlist_head *state_byspi; + struct hlist_head *state_byseq; + struct hlist_head *state_cache_input; + unsigned int state_hmask; + unsigned int state_num; + struct work_struct state_hash_work; + struct list_head policy_all; + struct hlist_head *policy_byidx; + unsigned int policy_idx_hmask; + unsigned int idx_generator; + struct xfrm_policy_hash policy_bydst[3]; + unsigned int policy_count[6]; + struct work_struct policy_hash_work; + struct xfrm_policy_hthresh policy_hthresh; + struct list_head inexact_bins; + struct sock *nlsk; + struct sock *nlsk_stash; + u32 sysctl_aevent_etime; + u32 sysctl_aevent_rseqth; + int sysctl_larval_drop; + u32 sysctl_acq_expires; + u8 policy_default[3]; + struct ctl_table_header *sysctl_hdr; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct dst_ops xfrm4_dst_ops; + struct dst_ops xfrm6_dst_ops; + spinlock_t xfrm_state_lock; + seqcount_spinlock_t xfrm_state_hash_generation; + seqcount_spinlock_t xfrm_policy_hash_generation; + spinlock_t xfrm_policy_lock; + struct mutex xfrm_cfg_mutex; + struct delayed_work nat_keepalive_work; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct mpls_route; + +struct netns_mpls { + int ip_ttl_propagate; + int default_ttl; + size_t platform_labels; + struct mpls_route **platform_label; + struct ctl_table_header *ctl; +}; + +struct netns_xdp { + struct mutex lock; + struct hlist_head list; +}; + +struct uevent_sock; + +struct net_generic; + +struct netns_ipvs; + +struct net { + refcount_t passive; + spinlock_t rules_mod_lock; + unsigned int dev_base_seq; + u32 ifindex; + spinlock_t nsid_lock; + atomic_t fnhe_genid; + struct list_head list; + struct list_head exit_list; + struct llist_node defer_free_list; + struct llist_node cleanup_list; + struct key_tag *key_domain; + struct user_namespace *user_ns; + struct ucounts *ucounts; + struct idr netns_ids; + struct ns_common ns; + struct ref_tracker_dir refcnt_tracker; + struct ref_tracker_dir notrefcnt_tracker; + struct list_head dev_base_head; + struct proc_dir_entry *proc_net; + struct proc_dir_entry *proc_net_stat; + struct ctl_table_set sysctls; + struct sock *rtnl; + struct sock *genl_sock; + struct uevent_sock *uevent_sock; + struct hlist_head *dev_name_head; + struct hlist_head *dev_index_head; + struct xarray dev_by_index; + struct raw_notifier_head netdev_chain; + u32 hash_mix; + struct net_device *loopback_dev; + struct list_head rules_ops; + struct netns_core core; + struct netns_mib mib; + struct netns_packet packet; + struct netns_unix unx; + struct netns_nexthop nexthop; + long: 64; + long: 64; + long: 64; + long: 64; + struct netns_ipv4 ipv4; + struct netns_ipv6 ipv6; + struct netns_sctp sctp; + struct netns_nf nf; + struct netns_ct ct; + struct netns_nftables nft; + struct net_generic *gen; + struct netns_bpf bpf; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct netns_xfrm xfrm; + u64 net_cookie; + struct netns_ipvs *ipvs; + struct netns_mpls mpls; + struct netns_xdp xdp; + struct sock *diag_nlsk; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct binfmt_misc { + struct list_head entries; + rwlock_t entries_lock; + bool enabled; +}; + +typedef struct { + local64_t v; +} u64_stats_t; + +struct rhashtable; + +struct rhashtable_compare_arg { + struct rhashtable *ht; + const void *key; +}; + +typedef u32 (*rht_hashfn_t)(const void *, u32, u32); + +typedef u32 (*rht_obj_hashfn_t)(const void *, u32, u32); + +typedef int (*rht_obj_cmpfn_t)(struct rhashtable_compare_arg *, const void *); + +struct rhashtable_params { + u16 nelem_hint; + u16 key_len; + u16 key_offset; + u16 head_offset; + unsigned int max_size; + u16 min_size; + bool automatic_shrinking; + rht_hashfn_t hashfn; + rht_obj_hashfn_t obj_hashfn; + rht_obj_cmpfn_t obj_cmpfn; +}; + +struct bucket_table; + +struct rhashtable { + struct bucket_table *tbl; + unsigned int key_len; + unsigned int max_elems; + struct rhashtable_params p; + bool rhlist; + struct work_struct run_work; + struct mutex mutex; + spinlock_t lock; + atomic_t nelems; +}; + +typedef short unsigned int __kernel_sa_family_t; + +typedef __kernel_sa_family_t sa_family_t; + +struct sockaddr { + sa_family_t sa_family; + union { + char sa_data_min[14]; + struct { + struct {} __empty_sa_data; + char sa_data[0]; + }; + }; +}; + +struct ubuf_info; + +struct msghdr { + void *msg_name; + int msg_namelen; + int msg_inq; + struct iov_iter msg_iter; + union { + void *msg_control; + void *msg_control_user; + }; + bool msg_control_is_user: 1; + bool msg_get_inq: 1; + unsigned int msg_flags; + __kernel_size_t msg_controllen; + struct kiocb *msg_iocb; + struct ubuf_info *msg_ubuf; + int (*sg_from_iter)(struct sk_buff *, struct iov_iter *, size_t); +}; + +struct ubuf_info_ops; + +struct ubuf_info { + const struct ubuf_info_ops *ops; + refcount_t refcnt; + u8 flags; +}; + +typedef unsigned int sk_buff_data_t; + +struct skb_ext; + +struct sk_buff { + union { + struct { + struct sk_buff *next; + struct sk_buff *prev; + union { + struct net_device *dev; + long unsigned int dev_scratch; + }; + }; + struct rb_node rbnode; + struct list_head list; + struct llist_node ll_node; + }; + struct sock *sk; + union { + ktime_t tstamp; + u64 skb_mstamp_ns; + }; + char cb[48]; + union { + struct { + long unsigned int _skb_refdst; + void (*destructor)(struct sk_buff *); + }; + struct list_head tcp_tsorted_anchor; + long unsigned int _sk_redir; + }; + long unsigned int _nfct; + unsigned int len; + unsigned int data_len; + __u16 mac_len; + __u16 hdr_len; + __u16 queue_mapping; + __u8 __cloned_offset[0]; + __u8 cloned: 1; + __u8 nohdr: 1; + __u8 fclone: 2; + __u8 peeked: 1; + __u8 head_frag: 1; + __u8 pfmemalloc: 1; + __u8 pp_recycle: 1; + __u8 active_extensions; + union { + struct { + __u8 __pkt_type_offset[0]; + __u8 pkt_type: 3; + __u8 ignore_df: 1; + __u8 dst_pending_confirm: 1; + __u8 ip_summed: 2; + __u8 ooo_okay: 1; + __u8 __mono_tc_offset[0]; + __u8 tstamp_type: 2; + __u8 tc_at_ingress: 1; + __u8 tc_skip_classify: 1; + __u8 remcsum_offload: 1; + __u8 csum_complete_sw: 1; + __u8 csum_level: 2; + __u8 inner_protocol_type: 1; + __u8 l4_hash: 1; + __u8 sw_hash: 1; + __u8 no_fcs: 1; + __u8 encapsulation: 1; + __u8 encap_hdr_csum: 1; + __u8 csum_valid: 1; + char: 1; + __u8 ndisc_nodetype: 2; + __u8 ipvs_property: 1; + __u8 nf_trace: 1; + __u8 offload_fwd_mark: 1; + __u8 offload_l3_fwd_mark: 1; + __u8 redirected: 1; + __u8 nf_skip_egress: 1; + __u8 slow_gro: 1; + __u8 csum_not_inet: 1; + __u8 unreadable: 1; + __u16 tc_index; + u16 alloc_cpu; + union { + __wsum csum; + struct { + __u16 csum_start; + __u16 csum_offset; + }; + }; + __u32 priority; + int skb_iif; + __u32 hash; + union { + u32 vlan_all; + struct { + __be16 vlan_proto; + __u16 vlan_tci; + }; + }; + union { + unsigned int napi_id; + unsigned int sender_cpu; + }; + __u32 secmark; + union { + __u32 mark; + __u32 reserved_tailroom; + }; + union { + __be16 inner_protocol; + __u8 inner_ipproto; + }; + __u16 inner_transport_header; + __u16 inner_network_header; + __u16 inner_mac_header; + __be16 protocol; + __u16 transport_header; + __u16 network_header; + __u16 mac_header; + }; + struct { + __u8 __pkt_type_offset[0]; + __u8 pkt_type: 3; + __u8 ignore_df: 1; + __u8 dst_pending_confirm: 1; + __u8 ip_summed: 2; + __u8 ooo_okay: 1; + __u8 __mono_tc_offset[0]; + __u8 tstamp_type: 2; + __u8 tc_at_ingress: 1; + __u8 tc_skip_classify: 1; + __u8 remcsum_offload: 1; + __u8 csum_complete_sw: 1; + __u8 csum_level: 2; + __u8 inner_protocol_type: 1; + __u8 l4_hash: 1; + __u8 sw_hash: 1; + __u8 no_fcs: 1; + __u8 encapsulation: 1; + __u8 encap_hdr_csum: 1; + __u8 csum_valid: 1; + char: 1; + __u8 ndisc_nodetype: 2; + __u8 ipvs_property: 1; + __u8 nf_trace: 1; + __u8 offload_fwd_mark: 1; + __u8 offload_l3_fwd_mark: 1; + __u8 redirected: 1; + __u8 nf_skip_egress: 1; + __u8 slow_gro: 1; + __u8 csum_not_inet: 1; + __u8 unreadable: 1; + __u16 tc_index; + u16 alloc_cpu; + union { + __wsum csum; + struct { + __u16 csum_start; + __u16 csum_offset; + }; + }; + __u32 priority; + int skb_iif; + __u32 hash; + union { + u32 vlan_all; + struct { + __be16 vlan_proto; + __u16 vlan_tci; + }; + }; + union { + unsigned int napi_id; + unsigned int sender_cpu; + }; + __u32 secmark; + union { + __u32 mark; + __u32 reserved_tailroom; + }; + union { + __be16 inner_protocol; + __u8 inner_ipproto; + }; + __u16 inner_transport_header; + __u16 inner_network_header; + __u16 inner_mac_header; + __be16 protocol; + __u16 transport_header; + __u16 network_header; + __u16 mac_header; + } headers; + }; + sk_buff_data_t tail; + sk_buff_data_t end; + unsigned char *head; + unsigned char *data; + unsigned int truesize; + refcount_t users; + struct skb_ext *extensions; +}; + +typedef struct { + unsigned int clock_rate; + unsigned int clock_type; + short unsigned int loopback; +} sync_serial_settings; + +typedef struct { + unsigned int clock_rate; + unsigned int clock_type; + short unsigned int loopback; + unsigned int slot_map; +} te1_settings; + +typedef struct { + short unsigned int encoding; + short unsigned int parity; +} raw_hdlc_proto; + +typedef struct { + unsigned int t391; + unsigned int t392; + unsigned int n391; + unsigned int n392; + unsigned int n393; + short unsigned int lmi; + short unsigned int dce; +} fr_proto; + +typedef struct { + unsigned int dlci; +} fr_proto_pvc; + +typedef struct { + unsigned int dlci; + char master[16]; +} fr_proto_pvc_info; + +typedef struct { + unsigned int interval; + unsigned int timeout; +} cisco_proto; + +typedef struct { + short unsigned int dce; + unsigned int modulo; + unsigned int window; + unsigned int t1; + unsigned int t2; + unsigned int n2; +} x25_hdlc_proto; + +struct ifmap { + long unsigned int mem_start; + long unsigned int mem_end; + short unsigned int base_addr; + unsigned char irq; + unsigned char dma; + unsigned char port; +}; + +struct if_settings { + unsigned int type; + unsigned int size; + union { + raw_hdlc_proto *raw_hdlc; + cisco_proto *cisco; + fr_proto *fr; + fr_proto_pvc *fr_pvc; + fr_proto_pvc_info *fr_pvc_info; + x25_hdlc_proto *x25; + sync_serial_settings *sync; + te1_settings *te1; + } ifs_ifsu; +}; + +struct ifreq { + union { + char ifrn_name[16]; + } ifr_ifrn; + union { + struct sockaddr ifru_addr; + struct sockaddr ifru_dstaddr; + struct sockaddr ifru_broadaddr; + struct sockaddr ifru_netmask; + struct sockaddr ifru_hwaddr; + short int ifru_flags; + int ifru_ivalue; + int ifru_mtu; + struct ifmap ifru_map; + char ifru_slave[16]; + char ifru_newname[16]; + void *ifru_data; + struct if_settings ifru_settings; + } ifr_ifru; +}; + +struct swap_cluster_info { + spinlock_t lock; + u16 count; + u8 flags; + u8 order; + struct list_head list; +}; + +struct percpu_cluster { + unsigned int next[10]; +}; + +typedef struct { + union { + void *kernel; + void *user; + }; + bool is_kernel: 1; +} sockptr_t; + +struct bpf_offloaded_map; + +struct bpf_map_dev_ops { + int (*map_get_next_key)(struct bpf_offloaded_map *, void *, void *); + int (*map_lookup_elem)(struct bpf_offloaded_map *, void *, void *); + int (*map_update_elem)(struct bpf_offloaded_map *, void *, void *, u64); + int (*map_delete_elem)(struct bpf_offloaded_map *, void *); +}; + +struct bpf_offloaded_map { + struct bpf_map map; + struct net_device *netdev; + const struct bpf_map_dev_ops *dev_ops; + void *dev_priv; + struct list_head offloads; +}; + +struct netdev_tc_txq { + u16 count; + u16 offset; +}; + +enum rx_handler_result { + RX_HANDLER_CONSUMED = 0, + RX_HANDLER_ANOTHER = 1, + RX_HANDLER_EXACT = 2, + RX_HANDLER_PASS = 3, +}; + +typedef enum rx_handler_result rx_handler_result_t; + +typedef rx_handler_result_t rx_handler_func_t(struct sk_buff **); + +typedef u32 xdp_features_t; + +struct net_device_stats { + union { + long unsigned int rx_packets; + atomic_long_t __rx_packets; + }; + union { + long unsigned int tx_packets; + atomic_long_t __tx_packets; + }; + union { + long unsigned int rx_bytes; + atomic_long_t __rx_bytes; + }; + union { + long unsigned int tx_bytes; + atomic_long_t __tx_bytes; + }; + union { + long unsigned int rx_errors; + atomic_long_t __rx_errors; + }; + union { + long unsigned int tx_errors; + atomic_long_t __tx_errors; + }; + union { + long unsigned int rx_dropped; + atomic_long_t __rx_dropped; + }; + union { + long unsigned int tx_dropped; + atomic_long_t __tx_dropped; + }; + union { + long unsigned int multicast; + atomic_long_t __multicast; + }; + union { + long unsigned int collisions; + atomic_long_t __collisions; + }; + union { + long unsigned int rx_length_errors; + atomic_long_t __rx_length_errors; + }; + union { + long unsigned int rx_over_errors; + atomic_long_t __rx_over_errors; + }; + union { + long unsigned int rx_crc_errors; + atomic_long_t __rx_crc_errors; + }; + union { + long unsigned int rx_frame_errors; + atomic_long_t __rx_frame_errors; + }; + union { + long unsigned int rx_fifo_errors; + atomic_long_t __rx_fifo_errors; + }; + union { + long unsigned int rx_missed_errors; + atomic_long_t __rx_missed_errors; + }; + union { + long unsigned int tx_aborted_errors; + atomic_long_t __tx_aborted_errors; + }; + union { + long unsigned int tx_carrier_errors; + atomic_long_t __tx_carrier_errors; + }; + union { + long unsigned int tx_fifo_errors; + atomic_long_t __tx_fifo_errors; + }; + union { + long unsigned int tx_heartbeat_errors; + atomic_long_t __tx_heartbeat_errors; + }; + union { + long unsigned int tx_window_errors; + atomic_long_t __tx_window_errors; + }; + union { + long unsigned int rx_compressed; + atomic_long_t __rx_compressed; + }; + union { + long unsigned int tx_compressed; + atomic_long_t __tx_compressed; + }; +}; + +struct netdev_hw_addr_list { + struct list_head list; + int count; + struct rb_root tree; +}; + +enum netdev_ml_priv_type { + ML_PRIV_NONE = 0, + ML_PRIV_CAN = 1, +}; + +enum netdev_stat_type { + NETDEV_PCPU_STAT_NONE = 0, + NETDEV_PCPU_STAT_LSTATS = 1, + NETDEV_PCPU_STAT_TSTATS = 2, + NETDEV_PCPU_STAT_DSTATS = 3, +}; + +struct sfp_bus; + +struct bpf_xdp_link; + +struct bpf_xdp_entity { + struct bpf_prog *prog; + struct bpf_xdp_link *link; +}; + +typedef struct {} netdevice_tracker; + +struct net_device_ops; + +struct header_ops; + +struct netdev_queue; + +struct xps_dev_maps; + +struct bpf_mprog_entry; + +struct pcpu_lstats; + +struct pcpu_sw_netstats; + +struct pcpu_dstats; + +struct inet6_dev; + +struct netdev_rx_queue; + +struct netdev_name_node; + +struct dev_ifalias; + +struct xdp_metadata_ops; + +struct xsk_tx_metadata_ops; + +struct net_device_core_stats; + +struct ethtool_ops; + +struct l3mdev_ops; + +struct ndisc_ops; + +struct in_device; + +struct vlan_info; + +struct mpls_dev; + +struct cpu_rmap; + +struct Qdisc; + +struct xdp_dev_bulk_queue; + +struct rtnl_link_ops; + +struct netdev_stat_ops; + +struct netdev_queue_mgmt_ops; + +struct netprio_map; + +struct phy_link_topology; + +struct phy_device; + +struct udp_tunnel_nic_info; + +struct udp_tunnel_nic; + +struct ethtool_netdev_state; + +struct rtnl_hw_stats64; + +struct devlink_port; + +struct dim_irq_moder; + +struct net_device { + __u8 __cacheline_group_begin__net_device_read_tx[0]; + union { + struct { + long unsigned int priv_flags: 32; + long unsigned int lltx: 1; + }; + struct { + long unsigned int priv_flags: 32; + long unsigned int lltx: 1; + } priv_flags_fast; + }; + const struct net_device_ops *netdev_ops; + const struct header_ops *header_ops; + struct netdev_queue *_tx; + netdev_features_t gso_partial_features; + unsigned int real_num_tx_queues; + unsigned int gso_max_size; + unsigned int gso_ipv4_max_size; + u16 gso_max_segs; + s16 num_tc; + unsigned int mtu; + short unsigned int needed_headroom; + struct netdev_tc_txq tc_to_txq[16]; + struct xps_dev_maps *xps_maps[2]; + struct nf_hook_entries *nf_hooks_egress; + struct bpf_mprog_entry *tcx_egress; + __u8 __cacheline_group_end__net_device_read_tx[0]; + __u8 __cacheline_group_begin__net_device_read_txrx[0]; + union { + struct pcpu_lstats *lstats; + struct pcpu_sw_netstats *tstats; + struct pcpu_dstats *dstats; + }; + long unsigned int state; + unsigned int flags; + short unsigned int hard_header_len; + netdev_features_t features; + struct inet6_dev *ip6_ptr; + __u8 __cacheline_group_end__net_device_read_txrx[0]; + __u8 __cacheline_group_begin__net_device_read_rx[0]; + struct bpf_prog *xdp_prog; + struct list_head ptype_specific; + int ifindex; + unsigned int real_num_rx_queues; + struct netdev_rx_queue *_rx; + long unsigned int gro_flush_timeout; + u32 napi_defer_hard_irqs; + unsigned int gro_max_size; + unsigned int gro_ipv4_max_size; + rx_handler_func_t *rx_handler; + void *rx_handler_data; + possible_net_t nd_net; + struct bpf_mprog_entry *tcx_ingress; + __u8 __cacheline_group_end__net_device_read_rx[0]; + char name[16]; + struct netdev_name_node *name_node; + struct dev_ifalias *ifalias; + long unsigned int mem_end; + long unsigned int mem_start; + long unsigned int base_addr; + struct list_head dev_list; + struct list_head napi_list; + struct list_head unreg_list; + struct list_head close_list; + struct list_head ptype_all; + struct { + struct list_head upper; + struct list_head lower; + } adj_list; + xdp_features_t xdp_features; + const struct xdp_metadata_ops *xdp_metadata_ops; + const struct xsk_tx_metadata_ops *xsk_tx_metadata_ops; + short unsigned int gflags; + short unsigned int needed_tailroom; + netdev_features_t hw_features; + netdev_features_t wanted_features; + netdev_features_t vlan_features; + netdev_features_t hw_enc_features; + netdev_features_t mpls_features; + unsigned int min_mtu; + unsigned int max_mtu; + short unsigned int type; + unsigned char min_header_len; + unsigned char name_assign_type; + int group; + struct net_device_stats stats; + struct net_device_core_stats *core_stats; + atomic_t carrier_up_count; + atomic_t carrier_down_count; + const struct ethtool_ops *ethtool_ops; + const struct l3mdev_ops *l3mdev_ops; + const struct ndisc_ops *ndisc_ops; + unsigned int operstate; + unsigned char link_mode; + unsigned char if_port; + unsigned char dma; + unsigned char perm_addr[32]; + unsigned char addr_assign_type; + unsigned char addr_len; + unsigned char upper_level; + unsigned char lower_level; + short unsigned int neigh_priv_len; + short unsigned int dev_id; + short unsigned int dev_port; + int irq; + u32 priv_len; + spinlock_t addr_list_lock; + struct netdev_hw_addr_list uc; + struct netdev_hw_addr_list mc; + struct netdev_hw_addr_list dev_addrs; + struct kset *queues_kset; + unsigned int promiscuity; + unsigned int allmulti; + bool uc_promisc; + struct in_device *ip_ptr; + struct vlan_info *vlan_info; + struct mpls_dev *mpls_ptr; + const unsigned char *dev_addr; + unsigned int num_rx_queues; + unsigned int xdp_zc_max_segs; + struct netdev_queue *ingress_queue; + struct nf_hook_entries *nf_hooks_ingress; + unsigned char broadcast[32]; + struct cpu_rmap *rx_cpu_rmap; + struct hlist_node index_hlist; + unsigned int num_tx_queues; + struct Qdisc *qdisc; + unsigned int tx_queue_len; + spinlock_t tx_global_lock; + struct xdp_dev_bulk_queue *xdp_bulkq; + struct hlist_head qdisc_hash[16]; + struct timer_list watchdog_timer; + int watchdog_timeo; + u32 proto_down_reason; + struct list_head todo_list; + int *pcpu_refcnt; + struct ref_tracker_dir refcnt_tracker; + struct list_head link_watch_list; + u8 reg_state; + bool dismantle; + enum { + RTNL_LINK_INITIALIZED = 0, + RTNL_LINK_INITIALIZING = 1, + } rtnl_link_state: 16; + bool needs_free_netdev; + void (*priv_destructor)(struct net_device *); + void *ml_priv; + enum netdev_ml_priv_type ml_priv_type; + enum netdev_stat_type pcpu_stat_type: 8; + struct device dev; + const struct attribute_group *sysfs_groups[4]; + const struct attribute_group *sysfs_rx_queue_group; + const struct rtnl_link_ops *rtnl_link_ops; + const struct netdev_stat_ops *stat_ops; + const struct netdev_queue_mgmt_ops *queue_mgmt_ops; + unsigned int tso_max_size; + u16 tso_max_segs; + u8 prio_tc_map[16]; + struct netprio_map *priomap; + struct phy_link_topology *link_topo; + struct phy_device *phydev; + struct sfp_bus *sfp_bus; + struct lock_class_key *qdisc_tx_busylock; + bool proto_down; + bool threaded; + long unsigned int see_all_hwtstamp_requests: 1; + long unsigned int change_proto_down: 1; + long unsigned int netns_local: 1; + long unsigned int fcoe_mtu: 1; + struct list_head net_notifier_list; + const struct udp_tunnel_nic_info *udp_tunnel_nic_info; + struct udp_tunnel_nic *udp_tunnel_nic; + struct ethtool_netdev_state *ethtool; + struct bpf_xdp_entity xdp_state[3]; + u8 dev_addr_shadow[32]; + netdevice_tracker linkwatch_dev_tracker; + netdevice_tracker watchdog_dev_tracker; + netdevice_tracker dev_registered_tracker; + struct rtnl_hw_stats64 *offload_xstats_l3; + struct devlink_port *devlink_port; + struct hlist_head page_pools; + struct dim_irq_moder *irq_moder; + long: 64; + u8 priv[0]; +}; + +struct bpf_prog_stats { + u64_stats_t cnt; + u64_stats_t nsecs; + u64_stats_t misses; + struct u64_stats_sync syncp; + long: 64; +}; + +struct sock_fprog_kern { + u16 len; + struct sock_filter *filter; +}; + +struct tc_stats { + __u64 bytes; + __u32 packets; + __u32 drops; + __u32 overlimits; + __u32 bps; + __u32 pps; + __u32 qlen; + __u32 backlog; +}; + +struct tc_sizespec { + unsigned char cell_log; + unsigned char size_log; + short int cell_align; + int overhead; + unsigned int linklayer; + unsigned int mpu; + unsigned int mtu; + unsigned int tsize; +}; + +struct flowi_tunnel { + __be64 tun_id; +}; + +struct flowi_common { + int flowic_oif; + int flowic_iif; + int flowic_l3mdev; + __u32 flowic_mark; + __u8 flowic_tos; + __u8 flowic_scope; + __u8 flowic_proto; + __u8 flowic_flags; + __u32 flowic_secid; + kuid_t flowic_uid; + __u32 flowic_multipath_hash; + struct flowi_tunnel flowic_tun_key; +}; + +union flowi_uli { + struct { + __be16 dport; + __be16 sport; + } ports; + struct { + __u8 type; + __u8 code; + } icmpt; + __be32 gre_key; + struct { + __u8 type; + } mht; +}; + +struct flowi4 { + struct flowi_common __fl_common; + __be32 saddr; + __be32 daddr; + union flowi_uli uli; +}; + +struct flowi6 { + struct flowi_common __fl_common; + struct in6_addr daddr; + struct in6_addr saddr; + __be32 flowlabel; + union flowi_uli uli; + __u32 mp_hash; +}; + +struct flowi { + union { + struct flowi_common __fl_common; + struct flowi4 ip4; + struct flowi6 ip6; + } u; +}; + +struct ip_conntrack_stat { + unsigned int found; + unsigned int invalid; + unsigned int insert; + unsigned int insert_failed; + unsigned int clash_resolve; + unsigned int drop; + unsigned int early_drop; + unsigned int error; + unsigned int expect_new; + unsigned int expect_create; + unsigned int expect_delete; + unsigned int search_restart; + unsigned int chaintoolong; +}; + +struct skb_shared_hwtstamps { + union { + ktime_t hwtstamp; + void *netdev_data; + }; +}; + +struct ubuf_info_ops { + void (*complete)(struct sk_buff *, struct ubuf_info *, bool); + int (*link_skb)(struct sk_buff *, struct ubuf_info *); +}; + +struct skb_ext { + refcount_t refcnt; + u8 offset[2]; + u8 chunks; + long: 0; + char data[0]; +}; + +struct dql { + unsigned int num_queued; + unsigned int adj_limit; + unsigned int last_obj_cnt; + short unsigned int stall_thrs; + long unsigned int history_head; + long unsigned int history[4]; + long: 64; + unsigned int limit; + unsigned int num_completed; + unsigned int prev_ovlimit; + unsigned int prev_num_queued; + unsigned int prev_last_obj_cnt; + unsigned int lowest_slack; + long unsigned int slack_start_time; + unsigned int max_limit; + unsigned int min_limit; + unsigned int slack_hold_time; + short unsigned int stall_max; + long unsigned int last_reap; + long unsigned int stall_cnt; +}; + +struct prot_inuse { + int all; + int val[64]; +}; + +struct ipstats_mib { + u64 mibs[38]; + struct u64_stats_sync syncp; +}; + +struct icmp_mib { + long unsigned int mibs[30]; +}; + +struct icmpmsg_mib { + atomic_long_t mibs[512]; +}; + +struct icmpv6_mib { + long unsigned int mibs[7]; +}; + +struct icmpv6_mib_device { + atomic_long_t mibs[7]; +}; + +struct icmpv6msg_mib { + atomic_long_t mibs[512]; +}; + +struct icmpv6msg_mib_device { + atomic_long_t mibs[512]; +}; + +struct tcp_mib { + long unsigned int mibs[16]; +}; + +struct udp_mib { + long unsigned int mibs[10]; +}; + +struct linux_mib { + long unsigned int mibs[132]; +}; + +struct linux_xfrm_mib { + long unsigned int mibs[31]; +}; + +struct inet_frags; + +struct fqdir { + long int high_thresh; + long int low_thresh; + int timeout; + int max_dist; + struct inet_frags *f; + struct net *net; + bool dead; + long: 64; + long: 64; + struct rhashtable rhashtable; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + atomic_long_t mem; + struct work_struct destroy_work; + struct llist_node free_list; + long: 64; + long: 64; +}; + +struct inet_frag_queue; + +struct inet_frags { + unsigned int qsize; + void (*constructor)(struct inet_frag_queue *, const void *); + void (*destructor)(struct inet_frag_queue *); + void (*frag_expire)(struct timer_list *); + struct kmem_cache *frags_cachep; + const char *frags_cache_name; + struct rhashtable_params rhash_params; + refcount_t refcnt; + struct completion completion; +}; + +struct frag_v4_compare_key { + __be32 saddr; + __be32 daddr; + u32 user; + u32 vif; + __be16 id; + u16 protocol; +}; + +struct frag_v6_compare_key { + struct in6_addr saddr; + struct in6_addr daddr; + u32 user; + __be32 id; + u32 iif; +}; + +struct inet_frag_queue { + struct rhash_head node; + union { + struct frag_v4_compare_key v4; + struct frag_v6_compare_key v6; + } key; + struct timer_list timer; + spinlock_t lock; + refcount_t refcnt; + struct rb_root rb_fragments; + struct sk_buff *fragments_tail; + struct sk_buff *last_run_head; + ktime_t stamp; + int len; + int meat; + u8 tstamp_type; + __u8 flags; + u16 max_size; + struct fqdir *fqdir; + struct callback_head rcu; +}; + +struct fib_rule; + +struct fib_lookup_arg; + +struct fib_rule_hdr; + +struct nlattr; + +struct netlink_ext_ack; + +struct fib_rules_ops { + int family; + struct list_head list; + int rule_size; + int addr_size; + int unresolved_rules; + int nr_goto_rules; + unsigned int fib_rules_seq; + int (*action)(struct fib_rule *, struct flowi *, int, struct fib_lookup_arg *); + bool (*suppress)(struct fib_rule *, int, struct fib_lookup_arg *); + int (*match)(struct fib_rule *, struct flowi *, int); + int (*configure)(struct fib_rule *, struct sk_buff *, struct fib_rule_hdr *, struct nlattr **, struct netlink_ext_ack *); + int (*delete)(struct fib_rule *); + int (*compare)(struct fib_rule *, struct fib_rule_hdr *, struct nlattr **); + int (*fill)(struct fib_rule *, struct sk_buff *, struct fib_rule_hdr *); + size_t (*nlmsg_payload)(struct fib_rule *); + void (*flush_cache)(struct fib_rules_ops *); + int nlgroup; + struct list_head rules_list; + struct module *owner; + struct net *fro_net; + struct callback_head rcu; +}; + +enum tcp_ca_event { + CA_EVENT_TX_START = 0, + CA_EVENT_CWND_RESTART = 1, + CA_EVENT_COMPLETE_CWR = 2, + CA_EVENT_LOSS = 3, + CA_EVENT_ECN_NO_CE = 4, + CA_EVENT_ECN_IS_CE = 5, +}; + +struct ack_sample; + +struct rate_sample; + +union tcp_cc_info; + +struct tcp_congestion_ops { + u32 (*ssthresh)(struct sock *); + void (*cong_avoid)(struct sock *, u32, u32); + void (*set_state)(struct sock *, u8); + void (*cwnd_event)(struct sock *, enum tcp_ca_event); + void (*in_ack_event)(struct sock *, u32); + void (*pkts_acked)(struct sock *, const struct ack_sample *); + u32 (*min_tso_segs)(struct sock *); + void (*cong_control)(struct sock *, u32, int, const struct rate_sample *); + u32 (*undo_cwnd)(struct sock *); + u32 (*sndbuf_expand)(struct sock *); + size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *); + char name[16]; + struct module *owner; + struct list_head list; + u32 key; + u32 flags; + void (*init)(struct sock *); + void (*release)(struct sock *); + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct fib_notifier_ops { + int family; + struct list_head list; + unsigned int (*fib_seq_read)(struct net *); + int (*fib_dump)(struct net *, struct notifier_block *, struct netlink_ext_ack *); + struct module *owner; + struct callback_head rcu; +}; + +struct xfrm_state; + +struct uncached_list; + +struct lwtunnel_state; + +struct dst_entry { + struct net_device *dev; + struct dst_ops *ops; + long unsigned int _metrics; + long unsigned int expires; + struct xfrm_state *xfrm; + int (*input)(struct sk_buff *); + int (*output)(struct net *, struct sock *, struct sk_buff *); + short unsigned int flags; + short int obsolete; + short unsigned int header_len; + short unsigned int trailer_len; + rcuref_t __rcuref; + int __use; + long unsigned int lastuse; + struct callback_head callback_head; + short int error; + short int __pad; + __u32 tclassid; + netdevice_tracker dev_tracker; + struct list_head rt_uncached; + struct uncached_list *rt_uncached_list; + struct lwtunnel_state *lwtstate; +}; + +struct hh_cache { + unsigned int hh_len; + seqlock_t hh_lock; + long unsigned int hh_data[4]; +}; + +struct neigh_table; + +struct neigh_parms; + +struct neigh_ops; + +struct neighbour { + struct neighbour *next; + struct neigh_table *tbl; + struct neigh_parms *parms; + long unsigned int confirmed; + long unsigned int updated; + rwlock_t lock; + refcount_t refcnt; + unsigned int arp_queue_len_bytes; + struct sk_buff_head arp_queue; + struct timer_list timer; + long unsigned int used; + atomic_t probes; + u8 nud_state; + u8 type; + u8 dead; + u8 protocol; + u32 flags; + seqlock_t ha_lock; + long: 0; + unsigned char ha[32]; + struct hh_cache hh; + int (*output)(struct neighbour *, struct sk_buff *); + const struct neigh_ops *ops; + struct list_head gc_list; + struct list_head managed_list; + struct callback_head rcu; + struct net_device *dev; + netdevice_tracker dev_tracker; + u8 primary_key[0]; +}; + +struct ipv6_stable_secret { + bool initialized; + struct in6_addr secret; +}; + +struct ipv6_devconf { + __u8 __cacheline_group_begin__ipv6_devconf_read_txrx[0]; + __s32 disable_ipv6; + __s32 hop_limit; + __s32 mtu6; + __s32 forwarding; + __s32 disable_policy; + __s32 proxy_ndp; + __u8 __cacheline_group_end__ipv6_devconf_read_txrx[0]; + __s32 accept_ra; + __s32 accept_redirects; + __s32 autoconf; + __s32 dad_transmits; + __s32 rtr_solicits; + __s32 rtr_solicit_interval; + __s32 rtr_solicit_max_interval; + __s32 rtr_solicit_delay; + __s32 force_mld_version; + __s32 mldv1_unsolicited_report_interval; + __s32 mldv2_unsolicited_report_interval; + __s32 use_tempaddr; + __s32 temp_valid_lft; + __s32 temp_prefered_lft; + __s32 regen_min_advance; + __s32 regen_max_retry; + __s32 max_desync_factor; + __s32 max_addresses; + __s32 accept_ra_defrtr; + __u32 ra_defrtr_metric; + __s32 accept_ra_min_hop_limit; + __s32 accept_ra_min_lft; + __s32 accept_ra_pinfo; + __s32 ignore_routes_with_linkdown; + __s32 accept_ra_rtr_pref; + __s32 rtr_probe_interval; + __s32 accept_source_route; + __s32 accept_ra_from_local; + __s32 drop_unicast_in_l2_multicast; + __s32 accept_dad; + __s32 force_tllao; + __s32 ndisc_notify; + __s32 suppress_frag_ndisc; + __s32 accept_ra_mtu; + __s32 drop_unsolicited_na; + __s32 accept_untracked_na; + struct ipv6_stable_secret stable_secret; + __s32 use_oif_addrs_only; + __s32 keep_addr_on_down; + __s32 seg6_enabled; + __u32 enhanced_dad; + __u32 addr_gen_mode; + __s32 ndisc_tclass; + __s32 rpl_seg_enabled; + __u32 ioam6_id; + __u32 ioam6_id_wide; + __u8 ioam6_enabled; + __u8 ndisc_evict_nocarrier; + __u8 ra_honor_pio_life; + __u8 ra_honor_pio_pflag; + struct ctl_table_header *sysctl_header; +}; + +enum { + IPPROTO_IP = 0, + IPPROTO_ICMP = 1, + IPPROTO_IGMP = 2, + IPPROTO_IPIP = 4, + IPPROTO_TCP = 6, + IPPROTO_EGP = 8, + IPPROTO_PUP = 12, + IPPROTO_UDP = 17, + IPPROTO_IDP = 22, + IPPROTO_TP = 29, + IPPROTO_DCCP = 33, + IPPROTO_IPV6 = 41, + IPPROTO_RSVP = 46, + IPPROTO_GRE = 47, + IPPROTO_ESP = 50, + IPPROTO_AH = 51, + IPPROTO_MTP = 92, + IPPROTO_BEETPH = 94, + IPPROTO_ENCAP = 98, + IPPROTO_PIM = 103, + IPPROTO_COMP = 108, + IPPROTO_L2TP = 115, + IPPROTO_SCTP = 132, + IPPROTO_UDPLITE = 136, + IPPROTO_MPLS = 137, + IPPROTO_ETHERNET = 143, + IPPROTO_RAW = 255, + IPPROTO_SMC = 256, + IPPROTO_MPTCP = 262, + IPPROTO_MAX = 263, +}; + +enum nf_log_type { + NF_LOG_TYPE_LOG = 0, + NF_LOG_TYPE_ULOG = 1, + NF_LOG_TYPE_MAX = 2, +}; + +typedef u8 u_int8_t; + +struct nf_loginfo; + +typedef void nf_logfn(struct net *, u_int8_t, unsigned int, const struct sk_buff *, const struct net_device *, const struct net_device *, const struct nf_loginfo *, const char *); + +struct nf_logger { + char *name; + enum nf_log_type type; + nf_logfn *logfn; + struct module *me; +}; + +struct netprio_map { + struct callback_head rcu; + u32 priomap_len; + u32 priomap[0]; +}; + +typedef enum { + SS_FREE = 0, + SS_UNCONNECTED = 1, + SS_CONNECTING = 2, + SS_CONNECTED = 3, + SS_DISCONNECTING = 4, +} socket_state; + +struct socket_wq { + wait_queue_head_t wait; + struct fasync_struct *fasync_list; + long unsigned int flags; + struct callback_head rcu; + long: 64; +}; + +struct proto_ops; + +struct socket { + socket_state state; + short int type; + long unsigned int flags; + struct file *file; + struct sock *sk; + const struct proto_ops *ops; + long: 64; + long: 64; + long: 64; + struct socket_wq wq; +}; + +typedef struct { + size_t written; + size_t count; + union { + char *buf; + void *data; + } arg; + int error; +} read_descriptor_t; + +typedef int (*sk_read_actor_t)(read_descriptor_t *, struct sk_buff *, unsigned int, size_t); + +typedef int (*skb_read_actor_t)(struct sock *, struct sk_buff *); + +struct proto_accept_arg; + +struct proto_ops { + int family; + struct module *owner; + int (*release)(struct socket *); + int (*bind)(struct socket *, struct sockaddr *, int); + int (*connect)(struct socket *, struct sockaddr *, int, int); + int (*socketpair)(struct socket *, struct socket *); + int (*accept)(struct socket *, struct socket *, struct proto_accept_arg *); + int (*getname)(struct socket *, struct sockaddr *, int); + __poll_t (*poll)(struct file *, struct socket *, struct poll_table_struct *); + int (*ioctl)(struct socket *, unsigned int, long unsigned int); + int (*gettstamp)(struct socket *, void *, bool, bool); + int (*listen)(struct socket *, int); + int (*shutdown)(struct socket *, int); + int (*setsockopt)(struct socket *, int, int, sockptr_t, unsigned int); + int (*getsockopt)(struct socket *, int, int, char *, int *); + void (*show_fdinfo)(struct seq_file *, struct socket *); + int (*sendmsg)(struct socket *, struct msghdr *, size_t); + int (*recvmsg)(struct socket *, struct msghdr *, size_t, int); + int (*mmap)(struct file *, struct socket *, struct vm_area_struct *); + ssize_t (*splice_read)(struct socket *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); + void (*splice_eof)(struct socket *); + int (*set_peek_off)(struct sock *, int); + int (*peek_len)(struct socket *); + int (*read_sock)(struct sock *, read_descriptor_t *, sk_read_actor_t); + int (*read_skb)(struct sock *, skb_read_actor_t); + int (*sendmsg_locked)(struct sock *, struct msghdr *, size_t); + int (*set_rcvlowat)(struct sock *, int); +}; + +struct proto_accept_arg { + int flags; + int err; + int is_empty; + bool kern; +}; + +struct nlmsghdr { + __u32 nlmsg_len; + __u16 nlmsg_type; + __u16 nlmsg_flags; + __u32 nlmsg_seq; + __u32 nlmsg_pid; +}; + +struct nlattr { + __u16 nla_len; + __u16 nla_type; +}; + +struct nla_policy; + +struct netlink_ext_ack { + const char *_msg; + const struct nlattr *bad_attr; + const struct nla_policy *policy; + const struct nlattr *miss_nest; + u16 miss_type; + u8 cookie[20]; + u8 cookie_len; + char _msg_buf[80]; +}; + +struct netlink_range_validation; + +struct netlink_range_validation_signed; + +struct nla_policy { + u8 type; + u8 validation_type; + u16 len; + union { + u16 strict_start_type; + const u32 bitfield32_valid; + const u32 mask; + const char *reject_message; + const struct nla_policy *nested_policy; + const struct netlink_range_validation *range; + const struct netlink_range_validation_signed *range_signed; + struct { + s16 min; + s16 max; + }; + int (*validate)(const struct nlattr *, struct netlink_ext_ack *); + }; +}; + +struct netlink_callback { + struct sk_buff *skb; + const struct nlmsghdr *nlh; + int (*dump)(struct sk_buff *, struct netlink_callback *); + int (*done)(struct netlink_callback *); + void *data; + struct module *module; + struct netlink_ext_ack *extack; + u16 family; + u16 answer_flags; + u32 min_dump_alloc; + unsigned int prev_seq; + unsigned int seq; + int flags; + bool strict_check; + union { + u8 ctx[48]; + long int args[6]; + }; +}; + +struct ndmsg { + __u8 ndm_family; + __u8 ndm_pad1; + __u16 ndm_pad2; + __s32 ndm_ifindex; + __u16 ndm_state; + __u8 ndm_flags; + __u8 ndm_type; +}; + +struct rtnl_link_stats64 { + __u64 rx_packets; + __u64 tx_packets; + __u64 rx_bytes; + __u64 tx_bytes; + __u64 rx_errors; + __u64 tx_errors; + __u64 rx_dropped; + __u64 tx_dropped; + __u64 multicast; + __u64 collisions; + __u64 rx_length_errors; + __u64 rx_over_errors; + __u64 rx_crc_errors; + __u64 rx_frame_errors; + __u64 rx_fifo_errors; + __u64 rx_missed_errors; + __u64 tx_aborted_errors; + __u64 tx_carrier_errors; + __u64 tx_fifo_errors; + __u64 tx_heartbeat_errors; + __u64 tx_window_errors; + __u64 rx_compressed; + __u64 tx_compressed; + __u64 rx_nohandler; + __u64 rx_otherhost_dropped; +}; + +struct rtnl_hw_stats64 { + __u64 rx_packets; + __u64 tx_packets; + __u64 rx_bytes; + __u64 tx_bytes; + __u64 rx_errors; + __u64 tx_errors; + __u64 rx_dropped; + __u64 tx_dropped; + __u64 multicast; +}; + +struct ifla_vf_guid { + __u32 vf; + __u64 guid; +}; + +struct ifla_vf_stats { + __u64 rx_packets; + __u64 tx_packets; + __u64 rx_bytes; + __u64 tx_bytes; + __u64 broadcast; + __u64 multicast; + __u64 rx_dropped; + __u64 tx_dropped; +}; + +struct ifla_vf_info { + __u32 vf; + __u8 mac[32]; + __u32 vlan; + __u32 qos; + __u32 spoofchk; + __u32 linkstate; + __u32 min_tx_rate; + __u32 max_tx_rate; + __u32 rss_query_en; + __u32 trusted; + __be16 vlan_proto; +}; + +enum netdev_tx { + __NETDEV_TX_MIN = -2147483648, + NETDEV_TX_OK = 0, + NETDEV_TX_BUSY = 16, +}; + +typedef enum netdev_tx netdev_tx_t; + +struct net_device_core_stats { + long unsigned int rx_dropped; + long unsigned int tx_dropped; + long unsigned int rx_nohandler; + long unsigned int rx_otherhost_dropped; +}; + +struct header_ops { + int (*create)(struct sk_buff *, struct net_device *, short unsigned int, const void *, const void *, unsigned int); + int (*parse)(const struct sk_buff *, unsigned char *); + int (*cache)(const struct neighbour *, struct hh_cache *, __be16); + void (*cache_update)(struct hh_cache *, const struct net_device *, const unsigned char *); + bool (*validate)(const char *, unsigned int); + __be16 (*parse_protocol)(const struct sk_buff *); +}; + +struct gro_list { + struct list_head list; + int count; +}; + +struct napi_struct { + struct list_head poll_list; + long unsigned int state; + int weight; + u32 defer_hard_irqs_count; + long unsigned int gro_bitmask; + int (*poll)(struct napi_struct *, int); + int list_owner; + struct net_device *dev; + struct gro_list gro_hash[8]; + struct sk_buff *skb; + struct list_head rx_list; + int rx_count; + unsigned int napi_id; + struct hrtimer timer; + struct task_struct *thread; + struct list_head dev_list; + struct hlist_node napi_hash_node; + int irq; +}; + +struct xsk_buff_pool; + +struct netdev_queue { + struct net_device *dev; + netdevice_tracker dev_tracker; + struct Qdisc *qdisc; + struct Qdisc *qdisc_sleeping; + struct kobject kobj; + long unsigned int tx_maxrate; + atomic_long_t trans_timeout; + struct net_device *sb_dev; + struct xsk_buff_pool *pool; + long: 64; + struct dql dql; + spinlock_t _xmit_lock; + int xmit_lock_owner; + long unsigned int trans_start; + long unsigned int state; + struct napi_struct *napi; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct qdisc_skb_head { + struct sk_buff *head; + struct sk_buff *tail; + __u32 qlen; + spinlock_t lock; +}; + +struct gnet_stats_basic_sync { + u64_stats_t bytes; + u64_stats_t packets; + struct u64_stats_sync syncp; +}; + +struct gnet_stats_queue { + __u32 qlen; + __u32 backlog; + __u32 drops; + __u32 requeues; + __u32 overlimits; +}; + +struct Qdisc_ops; + +struct qdisc_size_table; + +struct net_rate_estimator; + +struct Qdisc { + int (*enqueue)(struct sk_buff *, struct Qdisc *, struct sk_buff **); + struct sk_buff * (*dequeue)(struct Qdisc *); + unsigned int flags; + u32 limit; + const struct Qdisc_ops *ops; + struct qdisc_size_table *stab; + struct hlist_node hash; + u32 handle; + u32 parent; + struct netdev_queue *dev_queue; + struct net_rate_estimator *rate_est; + struct gnet_stats_basic_sync *cpu_bstats; + struct gnet_stats_queue *cpu_qstats; + int pad; + refcount_t refcnt; + long: 64; + long: 64; + long: 64; + struct sk_buff_head gso_skb; + struct qdisc_skb_head q; + struct gnet_stats_basic_sync bstats; + struct gnet_stats_queue qstats; + int owner; + long unsigned int state; + long unsigned int state2; + struct Qdisc *next_sched; + struct sk_buff_head skb_bad_txq; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + spinlock_t busylock; + spinlock_t seqlock; + struct callback_head rcu; + netdevice_tracker dev_tracker; + struct lock_class_key root_lock_key; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long int privdata[0]; +}; + +struct xps_map { + unsigned int len; + unsigned int alloc_len; + struct callback_head rcu; + u16 queues[0]; +}; + +struct xps_dev_maps { + struct callback_head rcu; + unsigned int nr_ids; + s16 num_tc; + struct xps_map *attr_map[0]; +}; + +struct netdev_phys_item_id { + unsigned char id[32]; + unsigned char id_len; +}; + +enum net_device_path_type { + DEV_PATH_ETHERNET = 0, + DEV_PATH_VLAN = 1, + DEV_PATH_BRIDGE = 2, + DEV_PATH_PPPOE = 3, + DEV_PATH_DSA = 4, + DEV_PATH_MTK_WDMA = 5, +}; + +struct net_device_path { + enum net_device_path_type type; + const struct net_device *dev; + union { + struct { + u16 id; + __be16 proto; + u8 h_dest[6]; + } encap; + struct { + enum { + DEV_PATH_BR_VLAN_KEEP = 0, + DEV_PATH_BR_VLAN_TAG = 1, + DEV_PATH_BR_VLAN_UNTAG = 2, + DEV_PATH_BR_VLAN_UNTAG_HW = 3, + } vlan_mode; + u16 vlan_id; + __be16 vlan_proto; + } bridge; + struct { + int port; + u16 proto; + } dsa; + struct { + u8 wdma_idx; + u8 queue; + u16 wcid; + u8 bss; + u8 amsdu; + } mtk_wdma; + }; +}; + +struct net_device_path_ctx { + const struct net_device *dev; + u8 daddr[6]; + int num_vlans; + struct { + u16 id; + __be16 proto; + } vlan[2]; +}; + +enum tc_setup_type { + TC_QUERY_CAPS = 0, + TC_SETUP_QDISC_MQPRIO = 1, + TC_SETUP_CLSU32 = 2, + TC_SETUP_CLSFLOWER = 3, + TC_SETUP_CLSMATCHALL = 4, + TC_SETUP_CLSBPF = 5, + TC_SETUP_BLOCK = 6, + TC_SETUP_QDISC_CBS = 7, + TC_SETUP_QDISC_RED = 8, + TC_SETUP_QDISC_PRIO = 9, + TC_SETUP_QDISC_MQ = 10, + TC_SETUP_QDISC_ETF = 11, + TC_SETUP_ROOT_QDISC = 12, + TC_SETUP_QDISC_GRED = 13, + TC_SETUP_QDISC_TAPRIO = 14, + TC_SETUP_FT = 15, + TC_SETUP_QDISC_ETS = 16, + TC_SETUP_QDISC_TBF = 17, + TC_SETUP_QDISC_FIFO = 18, + TC_SETUP_QDISC_HTB = 19, + TC_SETUP_ACT = 20, +}; + +enum bpf_netdev_command { + XDP_SETUP_PROG = 0, + XDP_SETUP_PROG_HW = 1, + BPF_OFFLOAD_MAP_ALLOC = 2, + BPF_OFFLOAD_MAP_FREE = 3, + XDP_SETUP_XSK_POOL = 4, +}; + +struct netdev_bpf { + enum bpf_netdev_command command; + union { + struct { + u32 flags; + struct bpf_prog *prog; + struct netlink_ext_ack *extack; + }; + struct { + struct bpf_offloaded_map *offmap; + }; + struct { + struct xsk_buff_pool *pool; + u16 queue_id; + } xsk; + }; +}; + +struct dev_ifalias { + struct callback_head rcuhead; + char ifalias[0]; +}; + +struct xdp_frame; + +struct xdp_buff; + +struct ip_tunnel_parm_kern; + +struct kernel_hwtstamp_config; + +struct net_device_ops { + int (*ndo_init)(struct net_device *); + void (*ndo_uninit)(struct net_device *); + int (*ndo_open)(struct net_device *); + int (*ndo_stop)(struct net_device *); + netdev_tx_t (*ndo_start_xmit)(struct sk_buff *, struct net_device *); + netdev_features_t (*ndo_features_check)(struct sk_buff *, struct net_device *, netdev_features_t); + u16 (*ndo_select_queue)(struct net_device *, struct sk_buff *, struct net_device *); + void (*ndo_change_rx_flags)(struct net_device *, int); + void (*ndo_set_rx_mode)(struct net_device *); + int (*ndo_set_mac_address)(struct net_device *, void *); + int (*ndo_validate_addr)(struct net_device *); + int (*ndo_do_ioctl)(struct net_device *, struct ifreq *, int); + int (*ndo_eth_ioctl)(struct net_device *, struct ifreq *, int); + int (*ndo_siocbond)(struct net_device *, struct ifreq *, int); + int (*ndo_siocwandev)(struct net_device *, struct if_settings *); + int (*ndo_siocdevprivate)(struct net_device *, struct ifreq *, void *, int); + int (*ndo_set_config)(struct net_device *, struct ifmap *); + int (*ndo_change_mtu)(struct net_device *, int); + int (*ndo_neigh_setup)(struct net_device *, struct neigh_parms *); + void (*ndo_tx_timeout)(struct net_device *, unsigned int); + void (*ndo_get_stats64)(struct net_device *, struct rtnl_link_stats64 *); + bool (*ndo_has_offload_stats)(const struct net_device *, int); + int (*ndo_get_offload_stats)(int, const struct net_device *, void *); + struct net_device_stats * (*ndo_get_stats)(struct net_device *); + int (*ndo_vlan_rx_add_vid)(struct net_device *, __be16, u16); + int (*ndo_vlan_rx_kill_vid)(struct net_device *, __be16, u16); + int (*ndo_set_vf_mac)(struct net_device *, int, u8 *); + int (*ndo_set_vf_vlan)(struct net_device *, int, u16, u8, __be16); + int (*ndo_set_vf_rate)(struct net_device *, int, int, int); + int (*ndo_set_vf_spoofchk)(struct net_device *, int, bool); + int (*ndo_set_vf_trust)(struct net_device *, int, bool); + int (*ndo_get_vf_config)(struct net_device *, int, struct ifla_vf_info *); + int (*ndo_set_vf_link_state)(struct net_device *, int, int); + int (*ndo_get_vf_stats)(struct net_device *, int, struct ifla_vf_stats *); + int (*ndo_set_vf_port)(struct net_device *, int, struct nlattr **); + int (*ndo_get_vf_port)(struct net_device *, int, struct sk_buff *); + int (*ndo_get_vf_guid)(struct net_device *, int, struct ifla_vf_guid *, struct ifla_vf_guid *); + int (*ndo_set_vf_guid)(struct net_device *, int, u64, int); + int (*ndo_set_vf_rss_query_en)(struct net_device *, int, bool); + int (*ndo_setup_tc)(struct net_device *, enum tc_setup_type, void *); + int (*ndo_rx_flow_steer)(struct net_device *, const struct sk_buff *, u16, u32); + int (*ndo_add_slave)(struct net_device *, struct net_device *, struct netlink_ext_ack *); + int (*ndo_del_slave)(struct net_device *, struct net_device *); + struct net_device * (*ndo_get_xmit_slave)(struct net_device *, struct sk_buff *, bool); + struct net_device * (*ndo_sk_get_lower_dev)(struct net_device *, struct sock *); + netdev_features_t (*ndo_fix_features)(struct net_device *, netdev_features_t); + int (*ndo_set_features)(struct net_device *, netdev_features_t); + int (*ndo_neigh_construct)(struct net_device *, struct neighbour *); + void (*ndo_neigh_destroy)(struct net_device *, struct neighbour *); + int (*ndo_fdb_add)(struct ndmsg *, struct nlattr **, struct net_device *, const unsigned char *, u16, u16, struct netlink_ext_ack *); + int (*ndo_fdb_del)(struct ndmsg *, struct nlattr **, struct net_device *, const unsigned char *, u16, struct netlink_ext_ack *); + int (*ndo_fdb_del_bulk)(struct nlmsghdr *, struct net_device *, struct netlink_ext_ack *); + int (*ndo_fdb_dump)(struct sk_buff *, struct netlink_callback *, struct net_device *, struct net_device *, int *); + int (*ndo_fdb_get)(struct sk_buff *, struct nlattr **, struct net_device *, const unsigned char *, u16, u32, u32, struct netlink_ext_ack *); + int (*ndo_mdb_add)(struct net_device *, struct nlattr **, u16, struct netlink_ext_ack *); + int (*ndo_mdb_del)(struct net_device *, struct nlattr **, struct netlink_ext_ack *); + int (*ndo_mdb_del_bulk)(struct net_device *, struct nlattr **, struct netlink_ext_ack *); + int (*ndo_mdb_dump)(struct net_device *, struct sk_buff *, struct netlink_callback *); + int (*ndo_mdb_get)(struct net_device *, struct nlattr **, u32, u32, struct netlink_ext_ack *); + int (*ndo_bridge_setlink)(struct net_device *, struct nlmsghdr *, u16, struct netlink_ext_ack *); + int (*ndo_bridge_getlink)(struct sk_buff *, u32, u32, struct net_device *, u32, int); + int (*ndo_bridge_dellink)(struct net_device *, struct nlmsghdr *, u16); + int (*ndo_change_carrier)(struct net_device *, bool); + int (*ndo_get_phys_port_id)(struct net_device *, struct netdev_phys_item_id *); + int (*ndo_get_port_parent_id)(struct net_device *, struct netdev_phys_item_id *); + int (*ndo_get_phys_port_name)(struct net_device *, char *, size_t); + void * (*ndo_dfwd_add_station)(struct net_device *, struct net_device *); + void (*ndo_dfwd_del_station)(struct net_device *, void *); + int (*ndo_set_tx_maxrate)(struct net_device *, int, u32); + int (*ndo_get_iflink)(const struct net_device *); + int (*ndo_fill_metadata_dst)(struct net_device *, struct sk_buff *); + void (*ndo_set_rx_headroom)(struct net_device *, int); + int (*ndo_bpf)(struct net_device *, struct netdev_bpf *); + int (*ndo_xdp_xmit)(struct net_device *, int, struct xdp_frame **, u32); + struct net_device * (*ndo_xdp_get_xmit_slave)(struct net_device *, struct xdp_buff *); + int (*ndo_xsk_wakeup)(struct net_device *, u32, u32); + int (*ndo_tunnel_ctl)(struct net_device *, struct ip_tunnel_parm_kern *, int); + struct net_device * (*ndo_get_peer_dev)(struct net_device *); + int (*ndo_fill_forward_path)(struct net_device_path_ctx *, struct net_device_path *); + ktime_t (*ndo_get_tstamp)(struct net_device *, const struct skb_shared_hwtstamps *, bool); + int (*ndo_hwtstamp_get)(struct net_device *, struct kernel_hwtstamp_config *); + int (*ndo_hwtstamp_set)(struct net_device *, struct kernel_hwtstamp_config *, struct netlink_ext_ack *); +}; + +struct neigh_parms { + possible_net_t net; + struct net_device *dev; + netdevice_tracker dev_tracker; + struct list_head list; + int (*neigh_setup)(struct neighbour *); + struct neigh_table *tbl; + void *sysctl_table; + int dead; + refcount_t refcnt; + struct callback_head callback_head; + int reachable_time; + u32 qlen; + int data[14]; + long unsigned int data_state[1]; +}; + +enum hwtstamp_source { + HWTSTAMP_SOURCE_UNSPEC = 0, + HWTSTAMP_SOURCE_NETDEV = 1, + HWTSTAMP_SOURCE_PHYLIB = 2, +}; + +struct kernel_hwtstamp_config { + int flags; + int tx_type; + int rx_filter; + struct ifreq *ifr; + bool copied_to_user; + enum hwtstamp_source source; +}; + +struct pcpu_lstats { + u64_stats_t packets; + u64_stats_t bytes; + struct u64_stats_sync syncp; +}; + +struct pcpu_sw_netstats { + u64_stats_t rx_packets; + u64_stats_t rx_bytes; + u64_stats_t tx_packets; + u64_stats_t tx_bytes; + struct u64_stats_sync syncp; +}; + +struct pcpu_dstats { + u64_stats_t rx_packets; + u64_stats_t rx_bytes; + u64_stats_t rx_drops; + u64_stats_t tx_packets; + u64_stats_t tx_bytes; + u64_stats_t tx_drops; + struct u64_stats_sync syncp; + long: 64; + long: 64; +}; + +struct ipv6_devstat { + struct proc_dir_entry *proc_dir_entry; + struct ipstats_mib *ipv6; + struct icmpv6_mib_device *icmpv6dev; + struct icmpv6msg_mib_device *icmpv6msgdev; +}; + +struct ifmcaddr6; + +struct ifacaddr6; + +struct inet6_dev { + struct net_device *dev; + netdevice_tracker dev_tracker; + struct list_head addr_list; + struct ifmcaddr6 *mc_list; + struct ifmcaddr6 *mc_tomb; + unsigned char mc_qrv; + unsigned char mc_gq_running; + unsigned char mc_ifc_count; + unsigned char mc_dad_count; + long unsigned int mc_v1_seen; + long unsigned int mc_qi; + long unsigned int mc_qri; + long unsigned int mc_maxdelay; + struct delayed_work mc_gq_work; + struct delayed_work mc_ifc_work; + struct delayed_work mc_dad_work; + struct delayed_work mc_query_work; + struct delayed_work mc_report_work; + struct sk_buff_head mc_query_queue; + struct sk_buff_head mc_report_queue; + spinlock_t mc_query_lock; + spinlock_t mc_report_lock; + struct mutex mc_lock; + struct ifacaddr6 *ac_list; + rwlock_t lock; + refcount_t refcnt; + __u32 if_flags; + int dead; + u32 desync_factor; + struct list_head tempaddr_list; + struct in6_addr token; + struct neigh_parms *nd_parms; + struct ipv6_devconf cnf; + struct ipv6_devstat stats; + struct timer_list rs_timer; + __s32 rs_interval; + __u8 rs_probes; + long unsigned int tstamp; + struct callback_head rcu; + unsigned int ra_mtu; +}; + +enum xdp_rss_hash_type { + XDP_RSS_L3_IPV4 = 1, + XDP_RSS_L3_IPV6 = 2, + XDP_RSS_L3_DYNHDR = 4, + XDP_RSS_L4 = 8, + XDP_RSS_L4_TCP = 16, + XDP_RSS_L4_UDP = 32, + XDP_RSS_L4_SCTP = 64, + XDP_RSS_L4_IPSEC = 128, + XDP_RSS_L4_ICMP = 256, + XDP_RSS_TYPE_NONE = 0, + XDP_RSS_TYPE_L2 = 0, + XDP_RSS_TYPE_L3_IPV4 = 1, + XDP_RSS_TYPE_L3_IPV6 = 2, + XDP_RSS_TYPE_L3_IPV4_OPT = 5, + XDP_RSS_TYPE_L3_IPV6_EX = 6, + XDP_RSS_TYPE_L4_ANY = 8, + XDP_RSS_TYPE_L4_IPV4_TCP = 25, + XDP_RSS_TYPE_L4_IPV4_UDP = 41, + XDP_RSS_TYPE_L4_IPV4_SCTP = 73, + XDP_RSS_TYPE_L4_IPV4_IPSEC = 137, + XDP_RSS_TYPE_L4_IPV4_ICMP = 265, + XDP_RSS_TYPE_L4_IPV6_TCP = 26, + XDP_RSS_TYPE_L4_IPV6_UDP = 42, + XDP_RSS_TYPE_L4_IPV6_SCTP = 74, + XDP_RSS_TYPE_L4_IPV6_IPSEC = 138, + XDP_RSS_TYPE_L4_IPV6_ICMP = 266, + XDP_RSS_TYPE_L4_IPV6_TCP_EX = 30, + XDP_RSS_TYPE_L4_IPV6_UDP_EX = 46, + XDP_RSS_TYPE_L4_IPV6_SCTP_EX = 78, +}; + +struct xdp_md; + +struct xdp_metadata_ops { + int (*xmo_rx_timestamp)(const struct xdp_md *, u64 *); + int (*xmo_rx_hash)(const struct xdp_md *, u32 *, enum xdp_rss_hash_type *); + int (*xmo_rx_vlan_tag)(const struct xdp_md *, __be16 *, u16 *); +}; + +struct xsk_tx_metadata_ops { + void (*tmo_request_timestamp)(void *); + u64 (*tmo_fill_timestamp)(void *); + void (*tmo_request_checksum)(u16, u16, void *); +}; + +enum ethtool_phys_id_state { + ETHTOOL_ID_INACTIVE = 0, + ETHTOOL_ID_ACTIVE = 1, + ETHTOOL_ID_ON = 2, + ETHTOOL_ID_OFF = 3, +}; + +struct ethtool_drvinfo; + +struct ethtool_regs; + +struct ethtool_wolinfo; + +struct ethtool_link_ext_state_info; + +struct ethtool_link_ext_stats; + +struct ethtool_eeprom; + +struct ethtool_coalesce; + +struct kernel_ethtool_coalesce; + +struct ethtool_ringparam; + +struct kernel_ethtool_ringparam; + +struct ethtool_pause_stats; + +struct ethtool_pauseparam; + +struct ethtool_test; + +struct ethtool_stats; + +struct ethtool_rxnfc; + +struct ethtool_flash; + +struct ethtool_rxfh_param; + +struct ethtool_rxfh_context; + +struct ethtool_channels; + +struct ethtool_dump; + +struct kernel_ethtool_ts_info; + +struct ethtool_ts_stats; + +struct ethtool_modinfo; + +struct ethtool_keee; + +struct ethtool_tunable; + +struct ethtool_link_ksettings; + +struct ethtool_fec_stats; + +struct ethtool_fecparam; + +struct ethtool_module_eeprom; + +struct ethtool_eth_phy_stats; + +struct ethtool_eth_mac_stats; + +struct ethtool_eth_ctrl_stats; + +struct ethtool_rmon_stats; + +struct ethtool_rmon_hist_range; + +struct ethtool_module_power_mode_params; + +struct ethtool_mm_state; + +struct ethtool_mm_cfg; + +struct ethtool_mm_stats; + +struct ethtool_ops { + u32 cap_link_lanes_supported: 1; + u32 cap_rss_ctx_supported: 1; + u32 cap_rss_sym_xor_supported: 1; + u32 rxfh_per_ctx_key: 1; + u32 cap_rss_rxnfc_adds: 1; + u32 rxfh_indir_space; + u16 rxfh_key_space; + u16 rxfh_priv_size; + u32 rxfh_max_num_contexts; + u32 supported_coalesce_params; + u32 supported_ring_params; + void (*get_drvinfo)(struct net_device *, struct ethtool_drvinfo *); + int (*get_regs_len)(struct net_device *); + void (*get_regs)(struct net_device *, struct ethtool_regs *, void *); + void (*get_wol)(struct net_device *, struct ethtool_wolinfo *); + int (*set_wol)(struct net_device *, struct ethtool_wolinfo *); + u32 (*get_msglevel)(struct net_device *); + void (*set_msglevel)(struct net_device *, u32); + int (*nway_reset)(struct net_device *); + u32 (*get_link)(struct net_device *); + int (*get_link_ext_state)(struct net_device *, struct ethtool_link_ext_state_info *); + void (*get_link_ext_stats)(struct net_device *, struct ethtool_link_ext_stats *); + int (*get_eeprom_len)(struct net_device *); + int (*get_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); + int (*set_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); + int (*get_coalesce)(struct net_device *, struct ethtool_coalesce *, struct kernel_ethtool_coalesce *, struct netlink_ext_ack *); + int (*set_coalesce)(struct net_device *, struct ethtool_coalesce *, struct kernel_ethtool_coalesce *, struct netlink_ext_ack *); + void (*get_ringparam)(struct net_device *, struct ethtool_ringparam *, struct kernel_ethtool_ringparam *, struct netlink_ext_ack *); + int (*set_ringparam)(struct net_device *, struct ethtool_ringparam *, struct kernel_ethtool_ringparam *, struct netlink_ext_ack *); + void (*get_pause_stats)(struct net_device *, struct ethtool_pause_stats *); + void (*get_pauseparam)(struct net_device *, struct ethtool_pauseparam *); + int (*set_pauseparam)(struct net_device *, struct ethtool_pauseparam *); + void (*self_test)(struct net_device *, struct ethtool_test *, u64 *); + void (*get_strings)(struct net_device *, u32, u8 *); + int (*set_phys_id)(struct net_device *, enum ethtool_phys_id_state); + void (*get_ethtool_stats)(struct net_device *, struct ethtool_stats *, u64 *); + int (*begin)(struct net_device *); + void (*complete)(struct net_device *); + u32 (*get_priv_flags)(struct net_device *); + int (*set_priv_flags)(struct net_device *, u32); + int (*get_sset_count)(struct net_device *, int); + int (*get_rxnfc)(struct net_device *, struct ethtool_rxnfc *, u32 *); + int (*set_rxnfc)(struct net_device *, struct ethtool_rxnfc *); + int (*flash_device)(struct net_device *, struct ethtool_flash *); + int (*reset)(struct net_device *, u32 *); + u32 (*get_rxfh_key_size)(struct net_device *); + u32 (*get_rxfh_indir_size)(struct net_device *); + int (*get_rxfh)(struct net_device *, struct ethtool_rxfh_param *); + int (*set_rxfh)(struct net_device *, struct ethtool_rxfh_param *, struct netlink_ext_ack *); + int (*create_rxfh_context)(struct net_device *, struct ethtool_rxfh_context *, const struct ethtool_rxfh_param *, struct netlink_ext_ack *); + int (*modify_rxfh_context)(struct net_device *, struct ethtool_rxfh_context *, const struct ethtool_rxfh_param *, struct netlink_ext_ack *); + int (*remove_rxfh_context)(struct net_device *, struct ethtool_rxfh_context *, u32, struct netlink_ext_ack *); + void (*get_channels)(struct net_device *, struct ethtool_channels *); + int (*set_channels)(struct net_device *, struct ethtool_channels *); + int (*get_dump_flag)(struct net_device *, struct ethtool_dump *); + int (*get_dump_data)(struct net_device *, struct ethtool_dump *, void *); + int (*set_dump)(struct net_device *, struct ethtool_dump *); + int (*get_ts_info)(struct net_device *, struct kernel_ethtool_ts_info *); + void (*get_ts_stats)(struct net_device *, struct ethtool_ts_stats *); + int (*get_module_info)(struct net_device *, struct ethtool_modinfo *); + int (*get_module_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); + int (*get_eee)(struct net_device *, struct ethtool_keee *); + int (*set_eee)(struct net_device *, struct ethtool_keee *); + int (*get_tunable)(struct net_device *, const struct ethtool_tunable *, void *); + int (*set_tunable)(struct net_device *, const struct ethtool_tunable *, const void *); + int (*get_per_queue_coalesce)(struct net_device *, u32, struct ethtool_coalesce *); + int (*set_per_queue_coalesce)(struct net_device *, u32, struct ethtool_coalesce *); + int (*get_link_ksettings)(struct net_device *, struct ethtool_link_ksettings *); + int (*set_link_ksettings)(struct net_device *, const struct ethtool_link_ksettings *); + void (*get_fec_stats)(struct net_device *, struct ethtool_fec_stats *); + int (*get_fecparam)(struct net_device *, struct ethtool_fecparam *); + int (*set_fecparam)(struct net_device *, struct ethtool_fecparam *); + void (*get_ethtool_phy_stats)(struct net_device *, struct ethtool_stats *, u64 *); + int (*get_phy_tunable)(struct net_device *, const struct ethtool_tunable *, void *); + int (*set_phy_tunable)(struct net_device *, const struct ethtool_tunable *, const void *); + int (*get_module_eeprom_by_page)(struct net_device *, const struct ethtool_module_eeprom *, struct netlink_ext_ack *); + int (*set_module_eeprom_by_page)(struct net_device *, const struct ethtool_module_eeprom *, struct netlink_ext_ack *); + void (*get_eth_phy_stats)(struct net_device *, struct ethtool_eth_phy_stats *); + void (*get_eth_mac_stats)(struct net_device *, struct ethtool_eth_mac_stats *); + void (*get_eth_ctrl_stats)(struct net_device *, struct ethtool_eth_ctrl_stats *); + void (*get_rmon_stats)(struct net_device *, struct ethtool_rmon_stats *, const struct ethtool_rmon_hist_range **); + int (*get_module_power_mode)(struct net_device *, struct ethtool_module_power_mode_params *, struct netlink_ext_ack *); + int (*set_module_power_mode)(struct net_device *, const struct ethtool_module_power_mode_params *, struct netlink_ext_ack *); + int (*get_mm)(struct net_device *, struct ethtool_mm_state *); + int (*set_mm)(struct net_device *, struct ethtool_mm_cfg *, struct netlink_ext_ack *); + void (*get_mm_stats)(struct net_device *, struct ethtool_mm_stats *); +}; + +struct l3mdev_ops { + u32 (*l3mdev_fib_table)(const struct net_device *); + struct sk_buff * (*l3mdev_l3_rcv)(struct net_device *, struct sk_buff *, u16); + struct sk_buff * (*l3mdev_l3_out)(struct net_device *, struct sock *, struct sk_buff *, u16); + struct dst_entry * (*l3mdev_link_scope_lookup)(const struct net_device *, struct flowi6 *); +}; + +struct nd_opt_hdr; + +struct ndisc_options; + +struct prefix_info; + +struct ndisc_ops { + int (*parse_options)(const struct net_device *, struct nd_opt_hdr *, struct ndisc_options *); + void (*update)(const struct net_device *, struct neighbour *, u32, u8, const struct ndisc_options *); + int (*opt_addr_space)(const struct net_device *, u8, struct neighbour *, u8 *, u8 **); + void (*fill_addr_option)(const struct net_device *, struct sk_buff *, u8, const u8 *); + void (*prefix_rcv_add_addr)(struct net *, struct net_device *, const struct prefix_info *, struct inet6_dev *, struct in6_addr *, int, u32, bool, bool, __u32, u32, bool); +}; + +struct rtnl_link_ops { + struct list_head list; + const char *kind; + size_t priv_size; + struct net_device * (*alloc)(struct nlattr **, const char *, unsigned char, unsigned int, unsigned int); + void (*setup)(struct net_device *); + bool netns_refund; + unsigned int maxtype; + const struct nla_policy *policy; + int (*validate)(struct nlattr **, struct nlattr **, struct netlink_ext_ack *); + int (*newlink)(struct net *, struct net_device *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); + int (*changelink)(struct net_device *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); + void (*dellink)(struct net_device *, struct list_head *); + size_t (*get_size)(const struct net_device *); + int (*fill_info)(struct sk_buff *, const struct net_device *); + size_t (*get_xstats_size)(const struct net_device *); + int (*fill_xstats)(struct sk_buff *, const struct net_device *); + unsigned int (*get_num_tx_queues)(void); + unsigned int (*get_num_rx_queues)(void); + unsigned int slave_maxtype; + const struct nla_policy *slave_policy; + int (*slave_changelink)(struct net_device *, struct net_device *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); + size_t (*get_slave_size)(const struct net_device *, const struct net_device *); + int (*fill_slave_info)(struct sk_buff *, const struct net_device *, const struct net_device *); + struct net * (*get_link_net)(const struct net_device *); + size_t (*get_linkxstats_size)(const struct net_device *, int); + int (*fill_linkxstats)(struct sk_buff *, const struct net_device *, int *, int); +}; + +struct netdev_queue_stats_rx; + +struct netdev_queue_stats_tx; + +struct netdev_stat_ops { + void (*get_queue_stats_rx)(struct net_device *, int, struct netdev_queue_stats_rx *); + void (*get_queue_stats_tx)(struct net_device *, int, struct netdev_queue_stats_tx *); + void (*get_base_stats)(struct net_device *, struct netdev_queue_stats_rx *, struct netdev_queue_stats_tx *); +}; + +struct netdev_queue_mgmt_ops { + size_t ndo_queue_mem_size; + int (*ndo_queue_mem_alloc)(struct net_device *, void *, int); + void (*ndo_queue_mem_free)(struct net_device *, void *); + int (*ndo_queue_start)(struct net_device *, void *, int); + int (*ndo_queue_stop)(struct net_device *, void *, int); +}; + +struct udp_tunnel_nic_table_info { + unsigned int n_entries; + unsigned int tunnel_types; +}; + +struct udp_tunnel_info; + +struct udp_tunnel_nic_shared; + +struct udp_tunnel_nic_info { + int (*set_port)(struct net_device *, unsigned int, unsigned int, struct udp_tunnel_info *); + int (*unset_port)(struct net_device *, unsigned int, unsigned int, struct udp_tunnel_info *); + int (*sync_table)(struct net_device *, unsigned int); + struct udp_tunnel_nic_shared *shared; + unsigned int flags; + struct udp_tunnel_nic_table_info tables[4]; +}; + +enum { + RTAX_UNSPEC = 0, + RTAX_LOCK = 1, + RTAX_MTU = 2, + RTAX_WINDOW = 3, + RTAX_RTT = 4, + RTAX_RTTVAR = 5, + RTAX_SSTHRESH = 6, + RTAX_CWND = 7, + RTAX_ADVMSS = 8, + RTAX_REORDERING = 9, + RTAX_HOPLIMIT = 10, + RTAX_INITCWND = 11, + RTAX_FEATURES = 12, + RTAX_RTO_MIN = 13, + RTAX_INITRWND = 14, + RTAX_QUICKACK = 15, + RTAX_CC_ALGO = 16, + RTAX_FASTOPEN_NO_COOKIE = 17, + __RTAX_MAX = 18, +}; + +struct tcmsg { + unsigned char tcm_family; + unsigned char tcm__pad1; + short unsigned int tcm__pad2; + int tcm_ifindex; + __u32 tcm_handle; + __u32 tcm_parent; + __u32 tcm_info; +}; + +struct gnet_dump { + spinlock_t *lock; + struct sk_buff *skb; + struct nlattr *tail; + int compat_tc_stats; + int compat_xstats; + int padattr; + void *xstats; + int xstats_len; + struct tc_stats tc_stats; +}; + +struct netlink_range_validation { + u64 min; + u64 max; +}; + +struct netlink_range_validation_signed { + s64 min; + s64 max; +}; + +enum flow_action_hw_stats_bit { + FLOW_ACTION_HW_STATS_IMMEDIATE_BIT = 0, + FLOW_ACTION_HW_STATS_DELAYED_BIT = 1, + FLOW_ACTION_HW_STATS_DISABLED_BIT = 2, + FLOW_ACTION_HW_STATS_NUM_BITS = 3, +}; + +struct flow_block { + struct list_head cb_list; +}; + +typedef int flow_setup_cb_t(enum tc_setup_type, void *, void *); + +struct qdisc_size_table { + struct callback_head rcu; + struct list_head list; + struct tc_sizespec szopts; + int refcnt; + u16 data[0]; +}; + +struct Qdisc_class_ops; + +struct Qdisc_ops { + struct Qdisc_ops *next; + const struct Qdisc_class_ops *cl_ops; + char id[16]; + int priv_size; + unsigned int static_flags; + int (*enqueue)(struct sk_buff *, struct Qdisc *, struct sk_buff **); + struct sk_buff * (*dequeue)(struct Qdisc *); + struct sk_buff * (*peek)(struct Qdisc *); + int (*init)(struct Qdisc *, struct nlattr *, struct netlink_ext_ack *); + void (*reset)(struct Qdisc *); + void (*destroy)(struct Qdisc *); + int (*change)(struct Qdisc *, struct nlattr *, struct netlink_ext_ack *); + void (*attach)(struct Qdisc *); + int (*change_tx_queue_len)(struct Qdisc *, unsigned int); + void (*change_real_num_tx)(struct Qdisc *, unsigned int); + int (*dump)(struct Qdisc *, struct sk_buff *); + int (*dump_stats)(struct Qdisc *, struct gnet_dump *); + void (*ingress_block_set)(struct Qdisc *, u32); + void (*egress_block_set)(struct Qdisc *, u32); + u32 (*ingress_block_get)(struct Qdisc *); + u32 (*egress_block_get)(struct Qdisc *); + struct module *owner; +}; + +struct qdisc_walker; + +struct tcf_block; + +struct Qdisc_class_ops { + unsigned int flags; + struct netdev_queue * (*select_queue)(struct Qdisc *, struct tcmsg *); + int (*graft)(struct Qdisc *, long unsigned int, struct Qdisc *, struct Qdisc **, struct netlink_ext_ack *); + struct Qdisc * (*leaf)(struct Qdisc *, long unsigned int); + void (*qlen_notify)(struct Qdisc *, long unsigned int); + long unsigned int (*find)(struct Qdisc *, u32); + int (*change)(struct Qdisc *, u32, u32, struct nlattr **, long unsigned int *, struct netlink_ext_ack *); + int (*delete)(struct Qdisc *, long unsigned int, struct netlink_ext_ack *); + void (*walk)(struct Qdisc *, struct qdisc_walker *); + struct tcf_block * (*tcf_block)(struct Qdisc *, long unsigned int, struct netlink_ext_ack *); + long unsigned int (*bind_tcf)(struct Qdisc *, long unsigned int, u32); + void (*unbind_tcf)(struct Qdisc *, long unsigned int); + int (*dump)(struct Qdisc *, long unsigned int, struct sk_buff *, struct tcmsg *); + int (*dump_stats)(struct Qdisc *, long unsigned int, struct gnet_dump *); +}; + +struct tcf_chain; + +struct tcf_block { + struct xarray ports; + struct mutex lock; + struct list_head chain_list; + u32 index; + u32 classid; + refcount_t refcnt; + struct net *net; + struct Qdisc *q; + struct rw_semaphore cb_lock; + struct flow_block flow_block; + struct list_head owner_list; + bool keep_dst; + atomic_t useswcnt; + atomic_t offloadcnt; + unsigned int nooffloaddevcnt; + unsigned int lockeddevcnt; + struct { + struct tcf_chain *chain; + struct list_head filter_chain_list; + } chain0; + struct callback_head rcu; + struct hlist_head proto_destroy_ht[128]; + struct mutex proto_destroy_lock; +}; + +struct tcf_result; + +struct tcf_proto_ops; + +struct tcf_proto { + struct tcf_proto *next; + void *root; + int (*classify)(struct sk_buff *, const struct tcf_proto *, struct tcf_result *); + __be16 protocol; + u32 prio; + void *data; + const struct tcf_proto_ops *ops; + struct tcf_chain *chain; + spinlock_t lock; + bool deleting; + bool counted; + bool usesw; + refcount_t refcnt; + struct callback_head rcu; + struct hlist_node destroy_ht_node; +}; + +struct tcf_result { + union { + struct { + long unsigned int class; + u32 classid; + }; + const struct tcf_proto *goto_tp; + }; +}; + +struct tcf_walker; + +struct tcf_exts; + +struct tcf_proto_ops { + struct list_head head; + char kind[16]; + int (*classify)(struct sk_buff *, const struct tcf_proto *, struct tcf_result *); + int (*init)(struct tcf_proto *); + void (*destroy)(struct tcf_proto *, bool, struct netlink_ext_ack *); + void * (*get)(struct tcf_proto *, u32); + void (*put)(struct tcf_proto *, void *); + int (*change)(struct net *, struct sk_buff *, struct tcf_proto *, long unsigned int, u32, struct nlattr **, void **, u32, struct netlink_ext_ack *); + int (*delete)(struct tcf_proto *, void *, bool *, bool, struct netlink_ext_ack *); + bool (*delete_empty)(struct tcf_proto *); + void (*walk)(struct tcf_proto *, struct tcf_walker *, bool); + int (*reoffload)(struct tcf_proto *, bool, flow_setup_cb_t *, void *, struct netlink_ext_ack *); + void (*hw_add)(struct tcf_proto *, void *); + void (*hw_del)(struct tcf_proto *, void *); + void (*bind_class)(void *, u32, long unsigned int, void *, long unsigned int); + void * (*tmplt_create)(struct net *, struct tcf_chain *, struct nlattr **, struct netlink_ext_ack *); + void (*tmplt_destroy)(void *); + void (*tmplt_reoffload)(struct tcf_chain *, bool, flow_setup_cb_t *, void *); + struct tcf_exts * (*get_exts)(const struct tcf_proto *, u32); + int (*dump)(struct net *, struct tcf_proto *, void *, struct sk_buff *, struct tcmsg *, bool); + int (*terse_dump)(struct net *, struct tcf_proto *, void *, struct sk_buff *, struct tcmsg *, bool); + int (*tmplt_dump)(struct sk_buff *, struct net *, void *); + struct module *owner; + int flags; +}; + +struct tcf_chain { + struct mutex filter_chain_lock; + struct tcf_proto *filter_chain; + struct list_head list; + struct tcf_block *block; + u32 index; + unsigned int refcnt; + unsigned int action_refcnt; + bool explicitly_created; + bool flushing; + const struct tcf_proto_ops *tmplt_ops; + void *tmplt_priv; + struct callback_head rcu; +}; + +struct sk_filter { + refcount_t refcnt; + struct callback_head rcu; + struct bpf_prog *prog; +}; + +enum rpc_display_format_t { + RPC_DISPLAY_ADDR = 0, + RPC_DISPLAY_PORT = 1, + RPC_DISPLAY_PROTO = 2, + RPC_DISPLAY_HEX_ADDR = 3, + RPC_DISPLAY_HEX_PORT = 4, + RPC_DISPLAY_NETID = 5, + RPC_DISPLAY_MAX = 6, +}; + +enum { + NEIGH_VAR_MCAST_PROBES = 0, + NEIGH_VAR_UCAST_PROBES = 1, + NEIGH_VAR_APP_PROBES = 2, + NEIGH_VAR_MCAST_REPROBES = 3, + NEIGH_VAR_RETRANS_TIME = 4, + NEIGH_VAR_BASE_REACHABLE_TIME = 5, + NEIGH_VAR_DELAY_PROBE_TIME = 6, + NEIGH_VAR_INTERVAL_PROBE_TIME_MS = 7, + NEIGH_VAR_GC_STALETIME = 8, + NEIGH_VAR_QUEUE_LEN_BYTES = 9, + NEIGH_VAR_PROXY_QLEN = 10, + NEIGH_VAR_ANYCAST_DELAY = 11, + NEIGH_VAR_PROXY_DELAY = 12, + NEIGH_VAR_LOCKTIME = 13, + NEIGH_VAR_QUEUE_LEN = 14, + NEIGH_VAR_RETRANS_TIME_MS = 15, + NEIGH_VAR_BASE_REACHABLE_TIME_MS = 16, + NEIGH_VAR_GC_INTERVAL = 17, + NEIGH_VAR_GC_THRESH1 = 18, + NEIGH_VAR_GC_THRESH2 = 19, + NEIGH_VAR_GC_THRESH3 = 20, + NEIGH_VAR_MAX = 21, +}; + +struct pneigh_entry; + +struct neigh_statistics; + +struct neigh_hash_table; + +struct neigh_table { + int family; + unsigned int entry_size; + unsigned int key_len; + __be16 protocol; + __u32 (*hash)(const void *, const struct net_device *, __u32 *); + bool (*key_eq)(const struct neighbour *, const void *); + int (*constructor)(struct neighbour *); + int (*pconstructor)(struct pneigh_entry *); + void (*pdestructor)(struct pneigh_entry *); + void (*proxy_redo)(struct sk_buff *); + int (*is_multicast)(const void *); + bool (*allow_add)(const struct net_device *, struct netlink_ext_ack *); + char *id; + struct neigh_parms parms; + struct list_head parms_list; + int gc_interval; + int gc_thresh1; + int gc_thresh2; + int gc_thresh3; + long unsigned int last_flush; + struct delayed_work gc_work; + struct delayed_work managed_work; + struct timer_list proxy_timer; + struct sk_buff_head proxy_queue; + atomic_t entries; + atomic_t gc_entries; + struct list_head gc_list; + struct list_head managed_list; + rwlock_t lock; + long unsigned int last_rand; + struct neigh_statistics *stats; + struct neigh_hash_table *nht; + struct pneigh_entry **phash_buckets; +}; + +struct neigh_statistics { + long unsigned int allocs; + long unsigned int destroys; + long unsigned int hash_grows; + long unsigned int res_failed; + long unsigned int lookups; + long unsigned int hits; + long unsigned int rcv_probes_mcast; + long unsigned int rcv_probes_ucast; + long unsigned int periodic_gc_runs; + long unsigned int forced_gc_runs; + long unsigned int unres_discards; + long unsigned int table_fulls; +}; + +struct neigh_ops { + int family; + void (*solicit)(struct neighbour *, struct sk_buff *); + void (*error_report)(struct neighbour *, struct sk_buff *); + int (*output)(struct neighbour *, struct sk_buff *); + int (*connected_output)(struct neighbour *, struct sk_buff *); +}; + +struct pneigh_entry { + struct pneigh_entry *next; + possible_net_t net; + struct net_device *dev; + netdevice_tracker dev_tracker; + u32 flags; + u8 protocol; + bool permanent; + u32 key[0]; +}; + +struct neigh_hash_table { + struct neighbour **hash_buckets; + unsigned int hash_shift; + __u32 hash_rnd[4]; + struct callback_head rcu; +}; + +enum { + TCP_ESTABLISHED = 1, + TCP_SYN_SENT = 2, + TCP_SYN_RECV = 3, + TCP_FIN_WAIT1 = 4, + TCP_FIN_WAIT2 = 5, + TCP_TIME_WAIT = 6, + TCP_CLOSE = 7, + TCP_CLOSE_WAIT = 8, + TCP_LAST_ACK = 9, + TCP_LISTEN = 10, + TCP_CLOSING = 11, + TCP_NEW_SYN_RECV = 12, + TCP_BOUND_INACTIVE = 13, + TCP_MAX_STATES = 14, +}; + +struct fib_rule_hdr { + __u8 family; + __u8 dst_len; + __u8 src_len; + __u8 tos; + __u8 table; + __u8 res1; + __u8 res2; + __u8 action; + __u32 flags; +}; + +struct fib_rule_port_range { + __u16 start; + __u16 end; +}; + +struct fib_kuid_range { + kuid_t start; + kuid_t end; +}; + +struct fib_rule { + struct list_head list; + int iifindex; + int oifindex; + u32 mark; + u32 mark_mask; + u32 flags; + u32 table; + u8 action; + u8 l3mdev; + u8 proto; + u8 ip_proto; + u32 target; + __be64 tun_id; + struct fib_rule *ctarget; + struct net *fr_net; + refcount_t refcnt; + u32 pref; + int suppress_ifgroup; + int suppress_prefixlen; + char iifname[16]; + char oifname[16]; + struct fib_kuid_range uid_range; + struct fib_rule_port_range sport_range; + struct fib_rule_port_range dport_range; + struct callback_head rcu; +}; + +struct fib_lookup_arg { + void *lookup_ptr; + const void *lookup_data; + void *result; + struct fib_rule *rule; + u32 table; + int flags; +}; + +struct smc_hashinfo; + +struct sk_psock; + +struct request_sock_ops; + +struct timewait_sock_ops; + +struct raw_hashinfo; + +struct proto { + void (*close)(struct sock *, long int); + int (*pre_connect)(struct sock *, struct sockaddr *, int); + int (*connect)(struct sock *, struct sockaddr *, int); + int (*disconnect)(struct sock *, int); + struct sock * (*accept)(struct sock *, struct proto_accept_arg *); + int (*ioctl)(struct sock *, int, int *); + int (*init)(struct sock *); + void (*destroy)(struct sock *); + void (*shutdown)(struct sock *, int); + int (*setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); + int (*getsockopt)(struct sock *, int, int, char *, int *); + void (*keepalive)(struct sock *, int); + int (*sendmsg)(struct sock *, struct msghdr *, size_t); + int (*recvmsg)(struct sock *, struct msghdr *, size_t, int, int *); + void (*splice_eof)(struct socket *); + int (*bind)(struct sock *, struct sockaddr *, int); + int (*bind_add)(struct sock *, struct sockaddr *, int); + int (*backlog_rcv)(struct sock *, struct sk_buff *); + bool (*bpf_bypass_getsockopt)(int, int); + void (*release_cb)(struct sock *); + int (*hash)(struct sock *); + void (*unhash)(struct sock *); + void (*rehash)(struct sock *); + int (*get_port)(struct sock *, short unsigned int); + void (*put_port)(struct sock *); + int (*psock_update_sk_prot)(struct sock *, struct sk_psock *, bool); + unsigned int inuse_idx; + bool (*stream_memory_free)(const struct sock *, int); + bool (*sock_is_readable)(struct sock *); + void (*enter_memory_pressure)(struct sock *); + void (*leave_memory_pressure)(struct sock *); + atomic_long_t *memory_allocated; + int *per_cpu_fw_alloc; + struct percpu_counter *sockets_allocated; + long unsigned int *memory_pressure; + long int *sysctl_mem; + int *sysctl_wmem; + int *sysctl_rmem; + u32 sysctl_wmem_offset; + u32 sysctl_rmem_offset; + int max_header; + bool no_autobind; + struct kmem_cache *slab; + unsigned int obj_size; + unsigned int ipv6_pinfo_offset; + slab_flags_t slab_flags; + unsigned int useroffset; + unsigned int usersize; + unsigned int *orphan_count; + struct request_sock_ops *rsk_prot; + struct timewait_sock_ops *twsk_prot; + union { + struct inet_hashinfo *hashinfo; + struct udp_table *udp_table; + struct raw_hashinfo *raw_hash; + struct smc_hashinfo *smc_hash; + } h; + struct module *owner; + char name[32]; + struct list_head node; + int (*diag_destroy)(struct sock *, int); +}; + +enum sk_rst_reason { + SK_RST_REASON_NOT_SPECIFIED = 0, + SK_RST_REASON_NO_SOCKET = 1, + SK_RST_REASON_TCP_INVALID_ACK_SEQUENCE = 2, + SK_RST_REASON_TCP_RFC7323_PAWS = 3, + SK_RST_REASON_TCP_TOO_OLD_ACK = 4, + SK_RST_REASON_TCP_ACK_UNSENT_DATA = 5, + SK_RST_REASON_TCP_FLAGS = 6, + SK_RST_REASON_TCP_OLD_ACK = 7, + SK_RST_REASON_TCP_ABORT_ON_DATA = 8, + SK_RST_REASON_TCP_TIMEWAIT_SOCKET = 9, + SK_RST_REASON_INVALID_SYN = 10, + SK_RST_REASON_TCP_ABORT_ON_CLOSE = 11, + SK_RST_REASON_TCP_ABORT_ON_LINGER = 12, + SK_RST_REASON_TCP_ABORT_ON_MEMORY = 13, + SK_RST_REASON_TCP_STATE = 14, + SK_RST_REASON_TCP_KEEPALIVE_TIMEOUT = 15, + SK_RST_REASON_TCP_DISCONNECT_WITH_DATA = 16, + SK_RST_REASON_MPTCP_RST_EUNSPEC = 17, + SK_RST_REASON_MPTCP_RST_EMPTCP = 18, + SK_RST_REASON_MPTCP_RST_ERESOURCE = 19, + SK_RST_REASON_MPTCP_RST_EPROHIBIT = 20, + SK_RST_REASON_MPTCP_RST_EWQ2BIG = 21, + SK_RST_REASON_MPTCP_RST_EBADPERF = 22, + SK_RST_REASON_MPTCP_RST_EMIDDLEBOX = 23, + SK_RST_REASON_ERROR = 24, + SK_RST_REASON_MAX = 25, +}; + +struct request_sock; + +struct request_sock_ops { + int family; + unsigned int obj_size; + struct kmem_cache *slab; + char *slab_name; + int (*rtx_syn_ack)(const struct sock *, struct request_sock *); + void (*send_ack)(const struct sock *, struct sk_buff *, struct request_sock *); + void (*send_reset)(const struct sock *, struct sk_buff *, enum sk_rst_reason); + void (*destructor)(struct request_sock *); + void (*syn_ack_timeout)(const struct request_sock *); +}; + +struct timewait_sock_ops { + struct kmem_cache *twsk_slab; + char *twsk_slab_name; + unsigned int twsk_obj_size; + void (*twsk_destructor)(struct sock *); +}; + +struct saved_syn; + +struct request_sock { + struct sock_common __req_common; + struct request_sock *dl_next; + u16 mss; + u8 num_retrans; + u8 syncookie: 1; + u8 num_timeout: 7; + u32 ts_recent; + struct timer_list rsk_timer; + const struct request_sock_ops *rsk_ops; + struct sock *sk; + struct saved_syn *saved_syn; + u32 secid; + u32 peer_secid; + u32 timeout; +}; + +struct saved_syn { + u32 mac_hdrlen; + u32 network_hdrlen; + u32 tcp_hdrlen; + u8 data[0]; +}; + +enum tsq_enum { + TSQ_THROTTLED = 0, + TSQ_QUEUED = 1, + TCP_TSQ_DEFERRED = 2, + TCP_WRITE_TIMER_DEFERRED = 3, + TCP_DELACK_TIMER_DEFERRED = 4, + TCP_MTU_REDUCED_DEFERRED = 5, + TCP_ACK_DEFERRED = 6, +}; + +struct ip6_sf_list { + struct ip6_sf_list *sf_next; + struct in6_addr sf_addr; + long unsigned int sf_count[2]; + unsigned char sf_gsresp; + unsigned char sf_oldin; + unsigned char sf_crcount; + struct callback_head rcu; +}; + +struct ifmcaddr6 { + struct in6_addr mca_addr; + struct inet6_dev *idev; + struct ifmcaddr6 *next; + struct ip6_sf_list *mca_sources; + struct ip6_sf_list *mca_tomb; + unsigned int mca_sfmode; + unsigned char mca_crcount; + long unsigned int mca_sfcount[2]; + struct delayed_work mca_work; + unsigned int mca_flags; + int mca_users; + refcount_t mca_refcnt; + long unsigned int mca_cstamp; + long unsigned int mca_tstamp; + struct callback_head rcu; +}; + +struct ifacaddr6 { + struct in6_addr aca_addr; + struct fib6_info *aca_rt; + struct ifacaddr6 *aca_next; + struct hlist_node aca_addr_lst; + int aca_users; + refcount_t aca_refcnt; + long unsigned int aca_cstamp; + long unsigned int aca_tstamp; + struct callback_head rcu; +}; + +enum nfs_opnum4 { + OP_ACCESS = 3, + OP_CLOSE = 4, + OP_COMMIT = 5, + OP_CREATE = 6, + OP_DELEGPURGE = 7, + OP_DELEGRETURN = 8, + OP_GETATTR = 9, + OP_GETFH = 10, + OP_LINK = 11, + OP_LOCK = 12, + OP_LOCKT = 13, + OP_LOCKU = 14, + OP_LOOKUP = 15, + OP_LOOKUPP = 16, + OP_NVERIFY = 17, + OP_OPEN = 18, + OP_OPENATTR = 19, + OP_OPEN_CONFIRM = 20, + OP_OPEN_DOWNGRADE = 21, + OP_PUTFH = 22, + OP_PUTPUBFH = 23, + OP_PUTROOTFH = 24, + OP_READ = 25, + OP_READDIR = 26, + OP_READLINK = 27, + OP_REMOVE = 28, + OP_RENAME = 29, + OP_RENEW = 30, + OP_RESTOREFH = 31, + OP_SAVEFH = 32, + OP_SECINFO = 33, + OP_SETATTR = 34, + OP_SETCLIENTID = 35, + OP_SETCLIENTID_CONFIRM = 36, + OP_VERIFY = 37, + OP_WRITE = 38, + OP_RELEASE_LOCKOWNER = 39, + OP_BACKCHANNEL_CTL = 40, + OP_BIND_CONN_TO_SESSION = 41, + OP_EXCHANGE_ID = 42, + OP_CREATE_SESSION = 43, + OP_DESTROY_SESSION = 44, + OP_FREE_STATEID = 45, + OP_GET_DIR_DELEGATION = 46, + OP_GETDEVICEINFO = 47, + OP_GETDEVICELIST = 48, + OP_LAYOUTCOMMIT = 49, + OP_LAYOUTGET = 50, + OP_LAYOUTRETURN = 51, + OP_SECINFO_NO_NAME = 52, + OP_SEQUENCE = 53, + OP_SET_SSV = 54, + OP_TEST_STATEID = 55, + OP_WANT_DELEGATION = 56, + OP_DESTROY_CLIENTID = 57, + OP_RECLAIM_COMPLETE = 58, + OP_ALLOCATE = 59, + OP_COPY = 60, + OP_COPY_NOTIFY = 61, + OP_DEALLOCATE = 62, + OP_IO_ADVISE = 63, + OP_LAYOUTERROR = 64, + OP_LAYOUTSTATS = 65, + OP_OFFLOAD_CANCEL = 66, + OP_OFFLOAD_STATUS = 67, + OP_READ_PLUS = 68, + OP_SEEK = 69, + OP_WRITE_SAME = 70, + OP_CLONE = 71, + OP_GETXATTR = 72, + OP_SETXATTR = 73, + OP_LISTXATTRS = 74, + OP_REMOVEXATTR = 75, + OP_ILLEGAL = 10044, +}; + +struct linux_binprm { + struct vm_area_struct *vma; + long unsigned int vma_pages; + long unsigned int argmin; + struct mm_struct *mm; + long unsigned int p; + unsigned int have_execfd: 1; + unsigned int execfd_creds: 1; + unsigned int secureexec: 1; + unsigned int point_of_no_return: 1; + unsigned int comm_from_dentry: 1; + struct file *executable; + struct file *interpreter; + struct file *file; + struct cred *cred; + int unsafe; + unsigned int per_clear; + int argc; + int envc; + const char *filename; + const char *interp; + const char *fdpath; + unsigned int interp_flags; + int execfd; + long unsigned int loader; + long unsigned int exec; + struct rlimit rlim_stack; + char buf[256]; +}; + +enum sysctl_writes_mode { + SYSCTL_WRITES_LEGACY = -1, + SYSCTL_WRITES_WARN = 0, + SYSCTL_WRITES_STRICT = 1, +}; + +struct do_proc_dointvec_minmax_conv_param { + int *min; + int *max; +}; + +struct do_proc_douintvec_minmax_conv_param { + unsigned int *min; + unsigned int *max; +}; + +enum work_bits { + WORK_STRUCT_PENDING_BIT = 0, + WORK_STRUCT_INACTIVE_BIT = 1, + WORK_STRUCT_PWQ_BIT = 2, + WORK_STRUCT_LINKED_BIT = 3, + WORK_STRUCT_FLAG_BITS = 4, + WORK_STRUCT_COLOR_SHIFT = 4, + WORK_STRUCT_COLOR_BITS = 4, + WORK_STRUCT_PWQ_SHIFT = 8, + WORK_OFFQ_FLAG_SHIFT = 4, + WORK_OFFQ_BH_BIT = 4, + WORK_OFFQ_FLAG_END = 5, + WORK_OFFQ_FLAG_BITS = 1, + WORK_OFFQ_DISABLE_SHIFT = 5, + WORK_OFFQ_DISABLE_BITS = 16, + WORK_OFFQ_POOL_SHIFT = 21, + WORK_OFFQ_LEFT = 43, + WORK_OFFQ_POOL_BITS = 31, +}; + +enum wq_misc_consts { + WORK_NR_COLORS = 16, + WORK_CPU_UNBOUND = 24, + WORK_BUSY_PENDING = 1, + WORK_BUSY_RUNNING = 2, + WORKER_DESC_LEN = 32, +}; + +enum wq_flags { + WQ_BH = 1, + WQ_UNBOUND = 2, + WQ_FREEZABLE = 4, + WQ_MEM_RECLAIM = 8, + WQ_HIGHPRI = 16, + WQ_CPU_INTENSIVE = 32, + WQ_SYSFS = 64, + WQ_POWER_EFFICIENT = 128, + __WQ_DESTROYING = 32768, + __WQ_DRAINING = 65536, + __WQ_ORDERED = 131072, + __WQ_LEGACY = 262144, + __WQ_BH_ALLOWS = 17, +}; + +enum wq_consts { + WQ_MAX_ACTIVE = 512, + WQ_UNBOUND_MAX_ACTIVE = 512, + WQ_DFL_ACTIVE = 256, + WQ_DFL_MIN_ACTIVE = 8, +}; + +enum kmalloc_cache_type { + KMALLOC_NORMAL = 0, + KMALLOC_RANDOM_START = 0, + KMALLOC_RANDOM_END = 0, + KMALLOC_RECLAIM = 1, + KMALLOC_DMA = 2, + KMALLOC_CGROUP = 3, + NR_KMALLOC_TYPES = 4, +}; + +typedef u64 async_cookie_t; + +typedef void (*async_func_t)(void *, async_cookie_t); + +struct async_domain { + struct list_head pending; + unsigned int registered: 1; +}; + +struct pool_workqueue; + +struct worker_pool; + +struct worker { + union { + struct list_head entry; + struct hlist_node hentry; + }; + struct work_struct *current_work; + work_func_t current_func; + struct pool_workqueue *current_pwq; + u64 current_at; + unsigned int current_color; + int sleeping; + work_func_t last_func; + struct list_head scheduled; + struct task_struct *task; + struct worker_pool *pool; + struct list_head node; + long unsigned int last_active; + unsigned int flags; + int id; + char desc[32]; + struct workqueue_struct *rescue_wq; +}; + +struct async_entry { + struct list_head domain_list; + struct list_head global_list; + struct work_struct work; + async_cookie_t cookie; + async_func_t func; + void *data; + struct async_domain *domain; +}; + +struct optimistic_spin_node { + struct optimistic_spin_node *next; + struct optimistic_spin_node *prev; + int locked; + int cpu; +}; + +struct sysrq_key_op { + void (* const handler)(u8); + const char * const help_msg; + const char * const action_msg; + const int enable_mask; +}; + +enum work_flags { + WORK_STRUCT_PENDING = 1, + WORK_STRUCT_INACTIVE = 2, + WORK_STRUCT_PWQ = 4, + WORK_STRUCT_LINKED = 8, + WORK_STRUCT_STATIC = 0, +}; + +struct __va_list { + void *__stack; + void *__gr_top; + void *__vr_top; + int __gr_offs; + int __vr_offs; +}; + +typedef struct __va_list va_list; + +typedef unsigned int uint; + +typedef u64 uint64_t; + +typedef int (*initcall_t)(void); + +typedef int initcall_entry_t; + +enum system_states { + SYSTEM_BOOTING = 0, + SYSTEM_SCHEDULING = 1, + SYSTEM_FREEING_INITMEM = 2, + SYSTEM_RUNNING = 3, + SYSTEM_HALT = 4, + SYSTEM_POWER_OFF = 5, + SYSTEM_RESTART = 6, + SYSTEM_SUSPEND = 7, +}; + +enum { + CSD_FLAG_LOCK = 1, + IRQ_WORK_PENDING = 1, + IRQ_WORK_BUSY = 2, + IRQ_WORK_LAZY = 4, + IRQ_WORK_HARD_IRQ = 8, + IRQ_WORK_CLAIMED = 3, + CSD_TYPE_ASYNC = 0, + CSD_TYPE_SYNC = 16, + CSD_TYPE_IRQ_WORK = 32, + CSD_TYPE_TTWU = 48, + CSD_FLAG_TYPE_MASK = 240, +}; + +typedef struct { + seqcount_t seqcount; +} seqcount_latch_t; + +struct semaphore { + raw_spinlock_t lock; + unsigned int count; + struct list_head wait_list; +}; + +struct ld_semaphore { + atomic_long_t count; + raw_spinlock_t wait_lock; + unsigned int wait_readers; + struct list_head read_wait; + struct list_head write_wait; +}; + +typedef unsigned int tcflag_t; + +typedef unsigned char cc_t; + +typedef unsigned int speed_t; + +struct ktermios { + tcflag_t c_iflag; + tcflag_t c_oflag; + tcflag_t c_cflag; + tcflag_t c_lflag; + cc_t c_line; + cc_t c_cc[19]; + speed_t c_ispeed; + speed_t c_ospeed; +}; + +struct winsize { + short unsigned int ws_row; + short unsigned int ws_col; + short unsigned int ws_xpixel; + short unsigned int ws_ypixel; +}; + +struct tty_driver; + +struct tty_port; + +struct tty_operations; + +struct tty_ldisc; + +struct tty_struct { + struct kref kref; + int index; + struct device *dev; + struct tty_driver *driver; + struct tty_port *port; + const struct tty_operations *ops; + struct tty_ldisc *ldisc; + struct ld_semaphore ldisc_sem; + struct mutex atomic_write_lock; + struct mutex legacy_mutex; + struct mutex throttle_mutex; + struct rw_semaphore termios_rwsem; + struct mutex winsize_mutex; + struct ktermios termios; + struct ktermios termios_locked; + char name[64]; + long unsigned int flags; + int count; + unsigned int receive_room; + struct winsize winsize; + struct { + spinlock_t lock; + bool stopped; + bool tco_stopped; + } flow; + struct { + struct pid *pgrp; + struct pid *session; + spinlock_t lock; + unsigned char pktstatus; + bool packet; + } ctrl; + bool hw_stopped; + bool closing; + int flow_change; + struct tty_struct *link; + struct fasync_struct *fasync; + wait_queue_head_t write_wait; + wait_queue_head_t read_wait; + struct work_struct hangup_work; + void *disc_data; + void *driver_data; + spinlock_t files_lock; + int write_cnt; + u8 *write_buf; + struct list_head tty_files; + struct work_struct SAK_work; +}; + +struct dev_printk_info { + char subsystem[16]; + char device[48]; +}; + +struct serial_icounter_struct; + +struct serial_struct; + +struct tty_operations { + struct tty_struct * (*lookup)(struct tty_driver *, struct file *, int); + int (*install)(struct tty_driver *, struct tty_struct *); + void (*remove)(struct tty_driver *, struct tty_struct *); + int (*open)(struct tty_struct *, struct file *); + void (*close)(struct tty_struct *, struct file *); + void (*shutdown)(struct tty_struct *); + void (*cleanup)(struct tty_struct *); + ssize_t (*write)(struct tty_struct *, const u8 *, size_t); + int (*put_char)(struct tty_struct *, u8); + void (*flush_chars)(struct tty_struct *); + unsigned int (*write_room)(struct tty_struct *); + unsigned int (*chars_in_buffer)(struct tty_struct *); + int (*ioctl)(struct tty_struct *, unsigned int, long unsigned int); + long int (*compat_ioctl)(struct tty_struct *, unsigned int, long unsigned int); + void (*set_termios)(struct tty_struct *, const struct ktermios *); + void (*throttle)(struct tty_struct *); + void (*unthrottle)(struct tty_struct *); + void (*stop)(struct tty_struct *); + void (*start)(struct tty_struct *); + void (*hangup)(struct tty_struct *); + int (*break_ctl)(struct tty_struct *, int); + void (*flush_buffer)(struct tty_struct *); + int (*ldisc_ok)(struct tty_struct *, int); + void (*set_ldisc)(struct tty_struct *); + void (*wait_until_sent)(struct tty_struct *, int); + void (*send_xchar)(struct tty_struct *, u8); + int (*tiocmget)(struct tty_struct *); + int (*tiocmset)(struct tty_struct *, unsigned int, unsigned int); + int (*resize)(struct tty_struct *, struct winsize *); + int (*get_icount)(struct tty_struct *, struct serial_icounter_struct *); + int (*get_serial)(struct tty_struct *, struct serial_struct *); + int (*set_serial)(struct tty_struct *, struct serial_struct *); + void (*show_fdinfo)(struct tty_struct *, struct seq_file *); + int (*proc_show)(struct seq_file *, void *); +}; + +struct tty_driver { + struct kref kref; + struct cdev **cdevs; + struct module *owner; + const char *driver_name; + const char *name; + int name_base; + int major; + int minor_start; + unsigned int num; + short int type; + short int subtype; + struct ktermios init_termios; + long unsigned int flags; + struct proc_dir_entry *proc_entry; + struct tty_driver *other; + struct tty_struct **ttys; + struct tty_port **ports; + struct ktermios **termios; + void *driver_state; + const struct tty_operations *ops; + struct list_head tty_drivers; +}; + +struct tty_buffer { + union { + struct tty_buffer *next; + struct llist_node free; + }; + unsigned int used; + unsigned int size; + unsigned int commit; + unsigned int lookahead; + unsigned int read; + bool flags; + long: 0; + u8 data[0]; +}; + +struct tty_bufhead { + struct tty_buffer *head; + struct work_struct work; + struct mutex lock; + atomic_t priority; + struct tty_buffer sentinel; + struct llist_head free; + atomic_t mem_used; + int mem_limit; + struct tty_buffer *tail; +}; + +struct __kfifo { + unsigned int in; + unsigned int out; + unsigned int mask; + unsigned int esize; + void *data; +}; + +struct tty_port_operations; + +struct tty_port_client_operations; + +struct tty_port { + struct tty_bufhead buf; + struct tty_struct *tty; + struct tty_struct *itty; + const struct tty_port_operations *ops; + const struct tty_port_client_operations *client_ops; + spinlock_t lock; + int blocked_open; + int count; + wait_queue_head_t open_wait; + wait_queue_head_t delta_msr_wait; + long unsigned int flags; + long unsigned int iflags; + unsigned char console: 1; + struct mutex mutex; + struct mutex buf_mutex; + u8 *xmit_buf; + struct { + union { + struct __kfifo kfifo; + u8 *type; + const u8 *const_type; + char (*rectype)[0]; + u8 *ptr; + const u8 *ptr_const; + }; + u8 buf[0]; + } xmit_fifo; + unsigned int close_delay; + unsigned int closing_wait; + int drain_delay; + struct kref kref; + void *client_data; +}; + +struct tty_ldisc_ops { + char *name; + int num; + int (*open)(struct tty_struct *); + void (*close)(struct tty_struct *); + void (*flush_buffer)(struct tty_struct *); + ssize_t (*read)(struct tty_struct *, struct file *, u8 *, size_t, void **, long unsigned int); + ssize_t (*write)(struct tty_struct *, struct file *, const u8 *, size_t); + int (*ioctl)(struct tty_struct *, unsigned int, long unsigned int); + int (*compat_ioctl)(struct tty_struct *, unsigned int, long unsigned int); + void (*set_termios)(struct tty_struct *, const struct ktermios *); + __poll_t (*poll)(struct tty_struct *, struct file *, struct poll_table_struct *); + void (*hangup)(struct tty_struct *); + void (*receive_buf)(struct tty_struct *, const u8 *, const u8 *, size_t); + void (*write_wakeup)(struct tty_struct *); + void (*dcd_change)(struct tty_struct *, bool); + size_t (*receive_buf2)(struct tty_struct *, const u8 *, const u8 *, size_t); + void (*lookahead_buf)(struct tty_struct *, const u8 *, const u8 *, size_t); + struct module *owner; +}; + +struct tty_ldisc { + struct tty_ldisc_ops *ops; + struct tty_struct *tty; +}; + +struct tty_port_operations { + bool (*carrier_raised)(struct tty_port *); + void (*dtr_rts)(struct tty_port *, bool); + void (*shutdown)(struct tty_port *); + int (*activate)(struct tty_port *, struct tty_struct *); + void (*destruct)(struct tty_port *); +}; + +struct tty_port_client_operations { + size_t (*receive_buf)(struct tty_port *, const u8 *, const u8 *, size_t); + void (*lookahead_buf)(struct tty_port *, const u8 *, const u8 *, size_t); + void (*write_wakeup)(struct tty_port *); +}; + +enum cons_flags { + CON_PRINTBUFFER = 1, + CON_CONSDEV = 2, + CON_ENABLED = 4, + CON_BOOT = 8, + CON_ANYTIME = 16, + CON_BRL = 32, + CON_EXTENDED = 64, + CON_SUSPENDED = 128, + CON_NBCON = 256, +}; + +enum nbcon_prio { + NBCON_PRIO_NONE = 0, + NBCON_PRIO_NORMAL = 1, + NBCON_PRIO_EMERGENCY = 2, + NBCON_PRIO_PANIC = 3, + NBCON_PRIO_MAX = 4, +}; + +struct console; + +struct printk_buffers; + +struct nbcon_context { + struct console *console; + unsigned int spinwait_max_us; + enum nbcon_prio prio; + unsigned int allow_unsafe_takeover: 1; + unsigned int backlog: 1; + struct printk_buffers *pbufs; + u64 seq; +}; + +struct nbcon_write_context; + +struct console { + char name[16]; + void (*write)(struct console *, const char *, unsigned int); + int (*read)(struct console *, char *, unsigned int); + struct tty_driver * (*device)(struct console *, int *); + void (*unblank)(void); + int (*setup)(struct console *, char *); + int (*exit)(struct console *); + int (*match)(struct console *, char *, int, char *); + short int flags; + short int index; + int cflag; + uint ispeed; + uint ospeed; + u64 seq; + long unsigned int dropped; + void *data; + struct hlist_node node; + void (*write_atomic)(struct console *, struct nbcon_write_context *); + void (*write_thread)(struct console *, struct nbcon_write_context *); + void (*device_lock)(struct console *, long unsigned int *); + void (*device_unlock)(struct console *, long unsigned int); + atomic_t nbcon_state; + atomic_long_t nbcon_seq; + struct nbcon_context nbcon_device_ctxt; + atomic_long_t nbcon_prev_seq; + struct printk_buffers *pbufs; + struct task_struct *kthread; + struct rcuwait rcuwait; + struct irq_work irq_work; +}; + +struct printk_buffers { + char outbuf[2048]; + char scratchbuf[1024]; +}; + +struct nbcon_write_context { + struct nbcon_context ctxt; + char *outbuf; + unsigned int len; + bool unsafe_takeover; +}; + +enum con_flush_mode { + CONSOLE_FLUSH_PENDING = 0, + CONSOLE_REPLAY_ALL = 1, +}; + +enum bpf_link_type { + BPF_LINK_TYPE_UNSPEC = 0, + BPF_LINK_TYPE_RAW_TRACEPOINT = 1, + BPF_LINK_TYPE_TRACING = 2, + BPF_LINK_TYPE_CGROUP = 3, + BPF_LINK_TYPE_ITER = 4, + BPF_LINK_TYPE_NETNS = 5, + BPF_LINK_TYPE_XDP = 6, + BPF_LINK_TYPE_PERF_EVENT = 7, + BPF_LINK_TYPE_KPROBE_MULTI = 8, + BPF_LINK_TYPE_STRUCT_OPS = 9, + BPF_LINK_TYPE_NETFILTER = 10, + BPF_LINK_TYPE_TCX = 11, + BPF_LINK_TYPE_UPROBE_MULTI = 12, + BPF_LINK_TYPE_NETKIT = 13, + BPF_LINK_TYPE_SOCKMAP = 14, + __MAX_BPF_LINK_TYPE = 15, +}; + +struct bpf_link_info { + __u32 type; + __u32 id; + __u32 prog_id; + union { + struct { + __u64 tp_name; + __u32 tp_name_len; + } raw_tracepoint; + struct { + __u32 attach_type; + __u32 target_obj_id; + __u32 target_btf_id; + } tracing; + struct { + __u64 cgroup_id; + __u32 attach_type; + } cgroup; + struct { + __u64 target_name; + __u32 target_name_len; + union { + struct { + __u32 map_id; + } map; + }; + union { + struct { + __u64 cgroup_id; + __u32 order; + } cgroup; + struct { + __u32 tid; + __u32 pid; + } task; + }; + } iter; + struct { + __u32 netns_ino; + __u32 attach_type; + } netns; + struct { + __u32 ifindex; + } xdp; + struct { + __u32 map_id; + } struct_ops; + struct { + __u32 pf; + __u32 hooknum; + __s32 priority; + __u32 flags; + } netfilter; + struct { + __u64 addrs; + __u32 count; + __u32 flags; + __u64 missed; + __u64 cookies; + } kprobe_multi; + struct { + __u64 path; + __u64 offsets; + __u64 ref_ctr_offsets; + __u64 cookies; + __u32 path_size; + __u32 count; + __u32 flags; + __u32 pid; + } uprobe_multi; + struct { + __u32 type; + union { + struct { + __u64 file_name; + __u32 name_len; + __u32 offset; + __u64 cookie; + } uprobe; + struct { + __u64 func_name; + __u32 name_len; + __u32 offset; + __u64 addr; + __u64 missed; + __u64 cookie; + } kprobe; + struct { + __u64 tp_name; + __u32 name_len; + __u64 cookie; + } tracepoint; + struct { + __u64 config; + __u32 type; + __u64 cookie; + } event; + }; + } perf_event; + struct { + __u32 ifindex; + __u32 attach_type; + } tcx; + struct { + __u32 ifindex; + __u32 attach_type; + } netkit; + struct { + __u32 map_id; + __u32 attach_type; + } sockmap; + }; +}; + +enum cpuhp_state { + CPUHP_INVALID = -1, + CPUHP_OFFLINE = 0, + CPUHP_CREATE_THREADS = 1, + CPUHP_PERF_PREPARE = 2, + CPUHP_PERF_X86_PREPARE = 3, + CPUHP_PERF_X86_AMD_UNCORE_PREP = 4, + CPUHP_PERF_POWER = 5, + CPUHP_PERF_SUPERH = 6, + CPUHP_X86_HPET_DEAD = 7, + CPUHP_X86_MCE_DEAD = 8, + CPUHP_VIRT_NET_DEAD = 9, + CPUHP_IBMVNIC_DEAD = 10, + CPUHP_SLUB_DEAD = 11, + CPUHP_DEBUG_OBJ_DEAD = 12, + CPUHP_MM_WRITEBACK_DEAD = 13, + CPUHP_MM_VMSTAT_DEAD = 14, + CPUHP_SOFTIRQ_DEAD = 15, + CPUHP_NET_MVNETA_DEAD = 16, + CPUHP_CPUIDLE_DEAD = 17, + CPUHP_ARM64_FPSIMD_DEAD = 18, + CPUHP_ARM_OMAP_WAKE_DEAD = 19, + CPUHP_IRQ_POLL_DEAD = 20, + CPUHP_BLOCK_SOFTIRQ_DEAD = 21, + CPUHP_BIO_DEAD = 22, + CPUHP_ACPI_CPUDRV_DEAD = 23, + CPUHP_S390_PFAULT_DEAD = 24, + CPUHP_BLK_MQ_DEAD = 25, + CPUHP_FS_BUFF_DEAD = 26, + CPUHP_PRINTK_DEAD = 27, + CPUHP_MM_MEMCQ_DEAD = 28, + CPUHP_PERCPU_CNT_DEAD = 29, + CPUHP_RADIX_DEAD = 30, + CPUHP_PAGE_ALLOC = 31, + CPUHP_NET_DEV_DEAD = 32, + CPUHP_PCI_XGENE_DEAD = 33, + CPUHP_IOMMU_IOVA_DEAD = 34, + CPUHP_AP_ARM_CACHE_B15_RAC_DEAD = 35, + CPUHP_PADATA_DEAD = 36, + CPUHP_AP_DTPM_CPU_DEAD = 37, + CPUHP_RANDOM_PREPARE = 38, + CPUHP_WORKQUEUE_PREP = 39, + CPUHP_POWER_NUMA_PREPARE = 40, + CPUHP_HRTIMERS_PREPARE = 41, + CPUHP_X2APIC_PREPARE = 42, + CPUHP_SMPCFD_PREPARE = 43, + CPUHP_RELAY_PREPARE = 44, + CPUHP_MD_RAID5_PREPARE = 45, + CPUHP_RCUTREE_PREP = 46, + CPUHP_CPUIDLE_COUPLED_PREPARE = 47, + CPUHP_POWERPC_PMAC_PREPARE = 48, + CPUHP_POWERPC_MMU_CTX_PREPARE = 49, + CPUHP_XEN_PREPARE = 50, + CPUHP_XEN_EVTCHN_PREPARE = 51, + CPUHP_ARM_SHMOBILE_SCU_PREPARE = 52, + CPUHP_SH_SH3X_PREPARE = 53, + CPUHP_TOPOLOGY_PREPARE = 54, + CPUHP_NET_IUCV_PREPARE = 55, + CPUHP_ARM_BL_PREPARE = 56, + CPUHP_TRACE_RB_PREPARE = 57, + CPUHP_MM_ZS_PREPARE = 58, + CPUHP_MM_ZSWP_POOL_PREPARE = 59, + CPUHP_KVM_PPC_BOOK3S_PREPARE = 60, + CPUHP_ZCOMP_PREPARE = 61, + CPUHP_TIMERS_PREPARE = 62, + CPUHP_TMIGR_PREPARE = 63, + CPUHP_MIPS_SOC_PREPARE = 64, + CPUHP_BP_PREPARE_DYN = 65, + CPUHP_BP_PREPARE_DYN_END = 85, + CPUHP_BP_KICK_AP = 86, + CPUHP_BRINGUP_CPU = 87, + CPUHP_AP_IDLE_DEAD = 88, + CPUHP_AP_OFFLINE = 89, + CPUHP_AP_CACHECTRL_STARTING = 90, + CPUHP_AP_SCHED_STARTING = 91, + CPUHP_AP_RCUTREE_DYING = 92, + CPUHP_AP_CPU_PM_STARTING = 93, + CPUHP_AP_IRQ_GIC_STARTING = 94, + CPUHP_AP_IRQ_HIP04_STARTING = 95, + CPUHP_AP_IRQ_APPLE_AIC_STARTING = 96, + CPUHP_AP_IRQ_ARMADA_XP_STARTING = 97, + CPUHP_AP_IRQ_BCM2836_STARTING = 98, + CPUHP_AP_IRQ_MIPS_GIC_STARTING = 99, + CPUHP_AP_IRQ_EIOINTC_STARTING = 100, + CPUHP_AP_IRQ_AVECINTC_STARTING = 101, + CPUHP_AP_IRQ_SIFIVE_PLIC_STARTING = 102, + CPUHP_AP_IRQ_RISCV_IMSIC_STARTING = 103, + CPUHP_AP_IRQ_RISCV_SBI_IPI_STARTING = 104, + CPUHP_AP_ARM_MVEBU_COHERENCY = 105, + CPUHP_AP_PERF_X86_AMD_UNCORE_STARTING = 106, + CPUHP_AP_PERF_X86_STARTING = 107, + CPUHP_AP_PERF_X86_AMD_IBS_STARTING = 108, + CPUHP_AP_PERF_XTENSA_STARTING = 109, + CPUHP_AP_ARM_VFP_STARTING = 110, + CPUHP_AP_ARM64_DEBUG_MONITORS_STARTING = 111, + CPUHP_AP_PERF_ARM_HW_BREAKPOINT_STARTING = 112, + CPUHP_AP_PERF_ARM_ACPI_STARTING = 113, + CPUHP_AP_PERF_ARM_STARTING = 114, + CPUHP_AP_PERF_RISCV_STARTING = 115, + CPUHP_AP_ARM_L2X0_STARTING = 116, + CPUHP_AP_EXYNOS4_MCT_TIMER_STARTING = 117, + CPUHP_AP_ARM_ARCH_TIMER_STARTING = 118, + CPUHP_AP_ARM_ARCH_TIMER_EVTSTRM_STARTING = 119, + CPUHP_AP_ARM_GLOBAL_TIMER_STARTING = 120, + CPUHP_AP_JCORE_TIMER_STARTING = 121, + CPUHP_AP_ARM_TWD_STARTING = 122, + CPUHP_AP_QCOM_TIMER_STARTING = 123, + CPUHP_AP_TEGRA_TIMER_STARTING = 124, + CPUHP_AP_ARMADA_TIMER_STARTING = 125, + CPUHP_AP_MIPS_GIC_TIMER_STARTING = 126, + CPUHP_AP_ARC_TIMER_STARTING = 127, + CPUHP_AP_REALTEK_TIMER_STARTING = 128, + CPUHP_AP_RISCV_TIMER_STARTING = 129, + CPUHP_AP_CLINT_TIMER_STARTING = 130, + CPUHP_AP_CSKY_TIMER_STARTING = 131, + CPUHP_AP_TI_GP_TIMER_STARTING = 132, + CPUHP_AP_HYPERV_TIMER_STARTING = 133, + CPUHP_AP_DUMMY_TIMER_STARTING = 134, + CPUHP_AP_ARM_XEN_STARTING = 135, + CPUHP_AP_ARM_XEN_RUNSTATE_STARTING = 136, + CPUHP_AP_ARM_CORESIGHT_STARTING = 137, + CPUHP_AP_ARM_CORESIGHT_CTI_STARTING = 138, + CPUHP_AP_ARM64_ISNDEP_STARTING = 139, + CPUHP_AP_SMPCFD_DYING = 140, + CPUHP_AP_HRTIMERS_DYING = 141, + CPUHP_AP_TICK_DYING = 142, + CPUHP_AP_X86_TBOOT_DYING = 143, + CPUHP_AP_ARM_CACHE_B15_RAC_DYING = 144, + CPUHP_AP_ONLINE = 145, + CPUHP_TEARDOWN_CPU = 146, + CPUHP_AP_ONLINE_IDLE = 147, + CPUHP_AP_HYPERV_ONLINE = 148, + CPUHP_AP_KVM_ONLINE = 149, + CPUHP_AP_SCHED_WAIT_EMPTY = 150, + CPUHP_AP_SMPBOOT_THREADS = 151, + CPUHP_AP_IRQ_AFFINITY_ONLINE = 152, + CPUHP_AP_BLK_MQ_ONLINE = 153, + CPUHP_AP_ARM_MVEBU_SYNC_CLOCKS = 154, + CPUHP_AP_X86_INTEL_EPB_ONLINE = 155, + CPUHP_AP_PERF_ONLINE = 156, + CPUHP_AP_PERF_X86_ONLINE = 157, + CPUHP_AP_PERF_X86_UNCORE_ONLINE = 158, + CPUHP_AP_PERF_X86_AMD_UNCORE_ONLINE = 159, + CPUHP_AP_PERF_X86_AMD_POWER_ONLINE = 160, + CPUHP_AP_PERF_X86_RAPL_ONLINE = 161, + CPUHP_AP_PERF_S390_CF_ONLINE = 162, + CPUHP_AP_PERF_S390_SF_ONLINE = 163, + CPUHP_AP_PERF_ARM_CCI_ONLINE = 164, + CPUHP_AP_PERF_ARM_CCN_ONLINE = 165, + CPUHP_AP_PERF_ARM_HISI_CPA_ONLINE = 166, + CPUHP_AP_PERF_ARM_HISI_DDRC_ONLINE = 167, + CPUHP_AP_PERF_ARM_HISI_HHA_ONLINE = 168, + CPUHP_AP_PERF_ARM_HISI_L3_ONLINE = 169, + CPUHP_AP_PERF_ARM_HISI_PA_ONLINE = 170, + CPUHP_AP_PERF_ARM_HISI_SLLC_ONLINE = 171, + CPUHP_AP_PERF_ARM_HISI_PCIE_PMU_ONLINE = 172, + CPUHP_AP_PERF_ARM_HNS3_PMU_ONLINE = 173, + CPUHP_AP_PERF_ARM_L2X0_ONLINE = 174, + CPUHP_AP_PERF_ARM_QCOM_L2_ONLINE = 175, + CPUHP_AP_PERF_ARM_QCOM_L3_ONLINE = 176, + CPUHP_AP_PERF_ARM_APM_XGENE_ONLINE = 177, + CPUHP_AP_PERF_ARM_CAVIUM_TX2_UNCORE_ONLINE = 178, + CPUHP_AP_PERF_ARM_MARVELL_CN10K_DDR_ONLINE = 179, + CPUHP_AP_PERF_POWERPC_NEST_IMC_ONLINE = 180, + CPUHP_AP_PERF_POWERPC_CORE_IMC_ONLINE = 181, + CPUHP_AP_PERF_POWERPC_THREAD_IMC_ONLINE = 182, + CPUHP_AP_PERF_POWERPC_TRACE_IMC_ONLINE = 183, + CPUHP_AP_PERF_POWERPC_HV_24x7_ONLINE = 184, + CPUHP_AP_PERF_POWERPC_HV_GPCI_ONLINE = 185, + CPUHP_AP_PERF_CSKY_ONLINE = 186, + CPUHP_AP_TMIGR_ONLINE = 187, + CPUHP_AP_WATCHDOG_ONLINE = 188, + CPUHP_AP_WORKQUEUE_ONLINE = 189, + CPUHP_AP_RANDOM_ONLINE = 190, + CPUHP_AP_RCUTREE_ONLINE = 191, + CPUHP_AP_BASE_CACHEINFO_ONLINE = 192, + CPUHP_AP_ONLINE_DYN = 193, + CPUHP_AP_ONLINE_DYN_END = 233, + CPUHP_AP_X86_HPET_ONLINE = 234, + CPUHP_AP_X86_KVM_CLK_ONLINE = 235, + CPUHP_AP_ACTIVE = 236, + CPUHP_ONLINE = 237, +}; + +struct bpf_link_ops; + +struct bpf_link { + atomic64_t refcnt; + u32 id; + enum bpf_link_type type; + const struct bpf_link_ops *ops; + struct bpf_prog *prog; + union { + struct callback_head rcu; + struct work_struct work; + }; +}; + +struct bpf_link_ops { + void (*release)(struct bpf_link *); + void (*dealloc)(struct bpf_link *); + void (*dealloc_deferred)(struct bpf_link *); + int (*detach)(struct bpf_link *); + int (*update_prog)(struct bpf_link *, struct bpf_prog *, struct bpf_prog *); + void (*show_fdinfo)(const struct bpf_link *, struct seq_file *); + int (*fill_link_info)(const struct bpf_link *, struct bpf_link_info *); + int (*update_map)(struct bpf_link *, struct bpf_map *, struct bpf_map *); + __poll_t (*poll)(struct file *, struct poll_table_struct *); +}; + +struct bpf_raw_tp_link { + struct bpf_link link; + struct bpf_raw_event_map *btp; + u64 cookie; +}; + +typedef struct poll_table_struct poll_table; + +struct ring_buffer_event { + u32 type_len: 5; + u32 time_delta: 27; + u32 array[0]; +}; + +struct trace_buffer; + +struct trace_event_file; + +struct trace_event_buffer { + struct trace_buffer *buffer; + struct ring_buffer_event *event; + struct trace_event_file *trace_file; + void *entry; + unsigned int trace_ctx; + struct pt_regs *regs; +}; + +struct eventfs_inode; + +struct trace_subsystem_dir; + +struct trace_event_file { + struct list_head list; + struct trace_event_call *event_call; + struct event_filter *filter; + struct eventfs_inode *ei; + struct trace_array *tr; + struct trace_subsystem_dir *system; + struct list_head triggers; + long unsigned int flags; + refcount_t ref; + atomic_t sm_ref; + atomic_t tm_ref; +}; + +enum { + EVENT_FILE_FL_ENABLED = 1, + EVENT_FILE_FL_RECORDED_CMD = 2, + EVENT_FILE_FL_RECORDED_TGID = 4, + EVENT_FILE_FL_FILTERED = 8, + EVENT_FILE_FL_NO_SET_FILTER = 16, + EVENT_FILE_FL_SOFT_MODE = 32, + EVENT_FILE_FL_SOFT_DISABLED = 64, + EVENT_FILE_FL_TRIGGER_MODE = 128, + EVENT_FILE_FL_TRIGGER_COND = 256, + EVENT_FILE_FL_PID_FILTER = 512, + EVENT_FILE_FL_WAS_ENABLED = 1024, + EVENT_FILE_FL_FREED = 2048, +}; + +enum { + FILTER_OTHER = 0, + FILTER_STATIC_STRING = 1, + FILTER_DYN_STRING = 2, + FILTER_RDYN_STRING = 3, + FILTER_PTR_STRING = 4, + FILTER_TRACE_FN = 5, + FILTER_CPUMASK = 6, + FILTER_COMM = 7, + FILTER_CPU = 8, + FILTER_STACKTRACE = 9, +}; + +struct syscore_ops { + struct list_head node; + int (*suspend)(void); + void (*resume)(void); + void (*shutdown)(void); +}; + +enum kmsg_dump_reason { + KMSG_DUMP_UNDEF = 0, + KMSG_DUMP_PANIC = 1, + KMSG_DUMP_OOPS = 2, + KMSG_DUMP_EMERG = 3, + KMSG_DUMP_SHUTDOWN = 4, + KMSG_DUMP_MAX = 5, +}; + +struct kmsg_dump_iter { + u64 cur_seq; + u64 next_seq; +}; + +struct kmsg_dump_detail { + enum kmsg_dump_reason reason; + const char *description; +}; + +struct kmsg_dumper { + struct list_head list; + void (*dump)(struct kmsg_dumper *, struct kmsg_dump_detail *); + enum kmsg_dump_reason max_reason; + bool registered; +}; + +struct trace_event_raw_console { + struct trace_entry ent; + u32 __data_loc_msg; + char __data[0]; +}; + +struct trace_event_data_offsets_console { + u32 msg; + const void *msg_ptr_; +}; + +typedef void (*btf_trace_console)(void *, const char *, size_t); + +struct printk_info { + u64 seq; + u64 ts_nsec; + u16 text_len; + u8 facility; + u8 flags: 5; + u8 level: 3; + u32 caller_id; + struct dev_printk_info dev_info; +}; + +struct printk_record { + struct printk_info *info; + char *text_buf; + unsigned int text_buf_size; +}; + +struct prb_data_blk_lpos { + long unsigned int begin; + long unsigned int next; +}; + +struct prb_desc { + atomic_long_t state_var; + struct prb_data_blk_lpos text_blk_lpos; +}; + +struct prb_data_ring { + unsigned int size_bits; + char *data; + atomic_long_t head_lpos; + atomic_long_t tail_lpos; +}; + +struct prb_desc_ring { + unsigned int count_bits; + struct prb_desc *descs; + struct printk_info *infos; + atomic_long_t head_id; + atomic_long_t tail_id; + atomic_long_t last_finalized_seq; +}; + +struct printk_ringbuffer { + struct prb_desc_ring desc_ring; + struct prb_data_ring text_data_ring; + atomic_long_t fail; +}; + +struct prb_reserved_entry { + struct printk_ringbuffer *rb; + long unsigned int irqflags; + long unsigned int id; + unsigned int text_space; +}; + +enum desc_state { + desc_miss = -1, + desc_reserved = 0, + desc_committed = 1, + desc_finalized = 2, + desc_reusable = 3, +}; + +struct console_cmdline { + char name[16]; + int index; + char devname[32]; + bool user_specified; + char *options; +}; + +enum printk_info_flags { + LOG_NEWLINE = 2, + LOG_CONT = 8, +}; + +struct console_flush_type { + bool nbcon_atomic; + bool nbcon_offload; + bool legacy_direct; + bool legacy_offload; +}; + +struct printk_message { + struct printk_buffers *pbufs; + unsigned int outbuf_len; + u64 seq; + long unsigned int dropped; +}; + +enum devkmsg_log_bits { + __DEVKMSG_LOG_BIT_ON = 0, + __DEVKMSG_LOG_BIT_OFF = 1, + __DEVKMSG_LOG_BIT_LOCK = 2, +}; + +enum devkmsg_log_masks { + DEVKMSG_LOG_MASK_ON = 1, + DEVKMSG_LOG_MASK_OFF = 2, + DEVKMSG_LOG_MASK_LOCK = 4, +}; + +enum con_msg_format_flags { + MSG_FORMAT_DEFAULT = 0, + MSG_FORMAT_SYSLOG = 1, +}; + +struct latched_seq { + seqcount_latch_t latch; + u64 val[2]; +}; + +struct devkmsg_user { + atomic64_t seq; + struct ratelimit_state rs; + struct mutex lock; + struct printk_buffers pbufs; +}; + +typedef phys_addr_t resource_size_t; + +enum { + UNAME26 = 131072, + ADDR_NO_RANDOMIZE = 262144, + FDPIC_FUNCPTRS = 524288, + MMAP_PAGE_ZERO = 1048576, + ADDR_COMPAT_LAYOUT = 2097152, + READ_IMPLIES_EXEC = 4194304, + ADDR_LIMIT_32BIT = 8388608, + SHORT_INODE = 16777216, + WHOLE_SECONDS = 33554432, + STICKY_TIMEOUTS = 67108864, + ADDR_LIMIT_3GB = 134217728, +}; + +enum { + MEMREMAP_WB = 1, + MEMREMAP_WT = 2, + MEMREMAP_WC = 4, + MEMREMAP_ENC = 8, + MEMREMAP_DEC = 16, +}; + +struct dma_coherent_mem { + void *virt_base; + dma_addr_t device_base; + long unsigned int pfn_base; + int size; + long unsigned int *bitmap; + spinlock_t spinlock; + bool use_dev_dma_pfn_offset; +}; + +struct io_tlb_area; + +struct io_tlb_slot; + +struct io_tlb_pool { + phys_addr_t start; + phys_addr_t end; + void *vaddr; + long unsigned int nslabs; + bool late_alloc; + unsigned int nareas; + unsigned int area_nslabs; + struct io_tlb_area *areas; + struct io_tlb_slot *slots; +}; + +struct io_tlb_mem { + struct io_tlb_pool defpool; + long unsigned int nslabs; + struct dentry *debugfs; + bool force_bounce; + bool for_alloc; + atomic_long_t total_used; + atomic_long_t used_hiwater; + atomic_long_t transient_nslabs; +}; + +struct reserved_mem_ops; + +struct reserved_mem { + const char *name; + long unsigned int fdt_node; + const struct reserved_mem_ops *ops; + phys_addr_t base; + phys_addr_t size; + void *priv; +}; + +struct reserved_mem_ops { + int (*device_init)(struct reserved_mem *, struct device *); + void (*device_release)(struct reserved_mem *, struct device *); +}; + +typedef int (*reservedmem_of_init_fn)(struct reserved_mem *); + +struct itimerspec64 { + struct timespec64 it_interval; + struct timespec64 it_value; +}; + +struct trace_print_flags { + long unsigned int mask; + const char *name; +}; + +enum hrtimer_mode { + HRTIMER_MODE_ABS = 0, + HRTIMER_MODE_REL = 1, + HRTIMER_MODE_PINNED = 2, + HRTIMER_MODE_SOFT = 4, + HRTIMER_MODE_HARD = 8, + HRTIMER_MODE_ABS_PINNED = 2, + HRTIMER_MODE_REL_PINNED = 3, + HRTIMER_MODE_ABS_SOFT = 4, + HRTIMER_MODE_REL_SOFT = 5, + HRTIMER_MODE_ABS_PINNED_SOFT = 6, + HRTIMER_MODE_REL_PINNED_SOFT = 7, + HRTIMER_MODE_ABS_HARD = 8, + HRTIMER_MODE_REL_HARD = 9, + HRTIMER_MODE_ABS_PINNED_HARD = 10, + HRTIMER_MODE_REL_PINNED_HARD = 11, +}; + +enum tick_dep_bits { + TICK_DEP_BIT_POSIX_TIMER = 0, + TICK_DEP_BIT_PERF_EVENTS = 1, + TICK_DEP_BIT_SCHED = 2, + TICK_DEP_BIT_CLOCK_UNSTABLE = 3, + TICK_DEP_BIT_RCU = 4, + TICK_DEP_BIT_RCU_EXP = 5, +}; + +struct timer_events { + u64 local; + u64 global; +}; + +struct trace_event_raw_timer_class { + struct trace_entry ent; + void *timer; + char __data[0]; +}; + +struct trace_event_raw_timer_start { + struct trace_entry ent; + void *timer; + void *function; + long unsigned int expires; + long unsigned int bucket_expiry; + long unsigned int now; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_timer_expire_entry { + struct trace_entry ent; + void *timer; + long unsigned int now; + void *function; + long unsigned int baseclk; + char __data[0]; +}; + +struct trace_event_raw_timer_base_idle { + struct trace_entry ent; + bool is_idle; + unsigned int cpu; + char __data[0]; +}; + +struct trace_event_raw_hrtimer_init { + struct trace_entry ent; + void *hrtimer; + clockid_t clockid; + enum hrtimer_mode mode; + char __data[0]; +}; + +struct trace_event_raw_hrtimer_start { + struct trace_entry ent; + void *hrtimer; + void *function; + s64 expires; + s64 softexpires; + enum hrtimer_mode mode; + char __data[0]; +}; + +struct trace_event_raw_hrtimer_expire_entry { + struct trace_entry ent; + void *hrtimer; + s64 now; + void *function; + char __data[0]; +}; + +struct trace_event_raw_hrtimer_class { + struct trace_entry ent; + void *hrtimer; + char __data[0]; +}; + +struct trace_event_raw_itimer_state { + struct trace_entry ent; + int which; + long long unsigned int expires; + long int value_sec; + long int value_nsec; + long int interval_sec; + long int interval_nsec; + char __data[0]; +}; + +struct trace_event_raw_itimer_expire { + struct trace_entry ent; + int which; + pid_t pid; + long long unsigned int now; + char __data[0]; +}; + +struct trace_event_raw_tick_stop { + struct trace_entry ent; + int success; + int dependency; + char __data[0]; +}; + +struct trace_event_data_offsets_timer_class {}; + +struct trace_event_data_offsets_timer_start {}; + +struct trace_event_data_offsets_timer_expire_entry {}; + +struct trace_event_data_offsets_timer_base_idle {}; + +struct trace_event_data_offsets_hrtimer_init {}; + +struct trace_event_data_offsets_hrtimer_start {}; + +struct trace_event_data_offsets_hrtimer_expire_entry {}; + +struct trace_event_data_offsets_hrtimer_class {}; + +struct trace_event_data_offsets_itimer_state {}; + +struct trace_event_data_offsets_itimer_expire {}; + +struct trace_event_data_offsets_tick_stop {}; + +typedef void (*btf_trace_timer_init)(void *, struct timer_list *); + +typedef void (*btf_trace_timer_start)(void *, struct timer_list *, long unsigned int); + +typedef void (*btf_trace_timer_expire_entry)(void *, struct timer_list *, long unsigned int); + +typedef void (*btf_trace_timer_expire_exit)(void *, struct timer_list *); + +typedef void (*btf_trace_timer_cancel)(void *, struct timer_list *); + +typedef void (*btf_trace_timer_base_idle)(void *, bool, unsigned int); + +typedef void (*btf_trace_hrtimer_init)(void *, struct hrtimer *, clockid_t, enum hrtimer_mode); + +typedef void (*btf_trace_hrtimer_start)(void *, struct hrtimer *, enum hrtimer_mode); + +typedef void (*btf_trace_hrtimer_expire_entry)(void *, struct hrtimer *, ktime_t *); + +typedef void (*btf_trace_hrtimer_expire_exit)(void *, struct hrtimer *); + +typedef void (*btf_trace_hrtimer_cancel)(void *, struct hrtimer *); + +typedef void (*btf_trace_itimer_state)(void *, int, const struct itimerspec64 * const, long long unsigned int); + +typedef void (*btf_trace_itimer_expire)(void *, int, struct pid *, long long unsigned int); + +typedef void (*btf_trace_tick_stop)(void *, int, int); + +struct timer_base { + raw_spinlock_t lock; + struct timer_list *running_timer; + long unsigned int clk; + long unsigned int next_expiry; + unsigned int cpu; + bool next_expiry_recalc; + bool is_idle; + bool timers_pending; + long unsigned int pending_map[9]; + struct hlist_head vectors[576]; + long: 64; + long: 64; +}; + +struct process_timer { + struct timer_list timer; + struct task_struct *task; +}; + +struct fc_log; + +struct p_log { + const char *prefix; + struct fc_log *log; +}; + +enum fs_context_purpose { + FS_CONTEXT_FOR_MOUNT = 0, + FS_CONTEXT_FOR_SUBMOUNT = 1, + FS_CONTEXT_FOR_RECONFIGURE = 2, +}; + +enum fs_context_phase { + FS_CONTEXT_CREATE_PARAMS = 0, + FS_CONTEXT_CREATING = 1, + FS_CONTEXT_AWAITING_MOUNT = 2, + FS_CONTEXT_AWAITING_RECONF = 3, + FS_CONTEXT_RECONF_PARAMS = 4, + FS_CONTEXT_RECONFIGURING = 5, + FS_CONTEXT_FAILED = 6, +}; + +struct fs_context_operations; + +struct fs_context { + const struct fs_context_operations *ops; + struct mutex uapi_mutex; + struct file_system_type *fs_type; + void *fs_private; + void *sget_key; + struct dentry *root; + struct user_namespace *user_ns; + struct net *net_ns; + const struct cred *cred; + struct p_log log; + const char *source; + void *security; + void *s_fs_info; + unsigned int sb_flags; + unsigned int sb_flags_mask; + unsigned int s_iflags; + enum fs_context_purpose purpose: 8; + enum fs_context_phase phase: 8; + bool need_free: 1; + bool global: 1; + bool oldapi: 1; + bool exclusive: 1; +}; + +struct audit_names; + +struct filename { + const char *name; + const char *uptr; + atomic_t refcnt; + struct audit_names *aname; + const char iname[0]; +}; + +enum cpu_usage_stat { + CPUTIME_USER = 0, + CPUTIME_NICE = 1, + CPUTIME_SYSTEM = 2, + CPUTIME_SOFTIRQ = 3, + CPUTIME_IRQ = 4, + CPUTIME_IDLE = 5, + CPUTIME_IOWAIT = 6, + CPUTIME_STEAL = 7, + CPUTIME_GUEST = 8, + CPUTIME_GUEST_NICE = 9, + NR_STATS = 10, +}; + +struct kernel_cpustat { + u64 cpustat[10]; +}; + +struct cgroup_taskset { + struct list_head src_csets; + struct list_head dst_csets; + int nr_tasks; + int ssid; + struct list_head *csets; + struct css_set *cur_cset; + struct task_struct *cur_task; +}; + +struct btf_id_set8 { + u32 cnt; + u32 flags; + struct { + u32 id; + u32 flags; + } pairs[0]; +}; + +typedef int (*btf_kfunc_filter_t)(const struct bpf_prog *, u32); + +struct btf_kfunc_id_set { + struct module *owner; + struct btf_id_set8 *set; + btf_kfunc_filter_t filter; +}; + +enum fs_value_type { + fs_value_is_undefined = 0, + fs_value_is_flag = 1, + fs_value_is_string = 2, + fs_value_is_blob = 3, + fs_value_is_filename = 4, + fs_value_is_file = 5, +}; + +struct fs_parameter { + const char *key; + enum fs_value_type type: 8; + union { + char *string; + void *blob; + struct filename *name; + struct file *file; + }; + size_t size; + int dirfd; +}; + +struct fc_log { + refcount_t usage; + u8 head; + u8 tail; + u8 need_free; + struct module *owner; + char *buffer[8]; +}; + +struct fs_context_operations { + void (*free)(struct fs_context *); + int (*dup)(struct fs_context *, struct fs_context *); + int (*parse_param)(struct fs_context *, struct fs_parameter *); + int (*parse_monolithic)(struct fs_context *, void *); + int (*get_tree)(struct fs_context *); + int (*reconfigure)(struct fs_context *); +}; + +struct fs_parse_result { + bool negated; + union { + bool boolean; + int int_32; + unsigned int uint_32; + u64 uint_64; + kuid_t uid; + kgid_t gid; + }; +}; + +typedef void (*swap_func_t)(void *, void *, int); + +typedef int (*cmp_func_t)(const void *, const void *); + +enum refcount_saturation_type { + REFCOUNT_ADD_NOT_ZERO_OVF = 0, + REFCOUNT_ADD_OVF = 1, + REFCOUNT_ADD_UAF = 2, + REFCOUNT_SUB_UAF = 3, + REFCOUNT_DEC_LEAK = 4, +}; + +struct fs_struct { + int users; + spinlock_t lock; + seqcount_spinlock_t seq; + int umask; + int in_exec; + struct path root; + struct path pwd; +}; + +struct nsset { + unsigned int flags; + struct nsproxy *nsproxy; + struct fs_struct *fs; + const struct cred *cred; +}; + +enum ucount_type { + UCOUNT_USER_NAMESPACES = 0, + UCOUNT_PID_NAMESPACES = 1, + UCOUNT_UTS_NAMESPACES = 2, + UCOUNT_IPC_NAMESPACES = 3, + UCOUNT_NET_NAMESPACES = 4, + UCOUNT_MNT_NAMESPACES = 5, + UCOUNT_CGROUP_NAMESPACES = 6, + UCOUNT_TIME_NAMESPACES = 7, + UCOUNT_INOTIFY_INSTANCES = 8, + UCOUNT_INOTIFY_WATCHES = 9, + UCOUNT_FANOTIFY_GROUPS = 10, + UCOUNT_FANOTIFY_MARKS = 11, + UCOUNT_COUNTS = 12, +}; + +enum rlimit_type { + UCOUNT_RLIMIT_NPROC = 0, + UCOUNT_RLIMIT_MSGQUEUE = 1, + UCOUNT_RLIMIT_SIGPENDING = 2, + UCOUNT_RLIMIT_MEMLOCK = 3, + UCOUNT_RLIMIT_COUNTS = 4, +}; + +struct kernel_pkey_query { + __u32 supported_ops; + __u32 key_size; + __u16 max_data_size; + __u16 max_sig_size; + __u16 max_enc_size; + __u16 max_dec_size; +}; + +enum kernel_pkey_operation { + kernel_pkey_encrypt = 0, + kernel_pkey_decrypt = 1, + kernel_pkey_sign = 2, + kernel_pkey_verify = 3, +}; + +struct kernel_pkey_params { + struct key *key; + const char *encoding; + const char *hash_algo; + char *info; + __u32 in_len; + union { + __u32 out_len; + __u32 in2_len; + }; + enum kernel_pkey_operation op: 8; +}; + +struct key_preparsed_payload { + const char *orig_description; + char *description; + union key_payload payload; + const void *data; + size_t datalen; + size_t quotalen; + time64_t expiry; +}; + +struct key_match_data { + bool (*cmp)(const struct key *, const struct key_match_data *); + const void *raw_data; + void *preparsed; + unsigned int lookup_type; +}; + +struct idmap_key { + bool map_up; + u32 id; + u32 count; +}; + +enum { + TASK_COMM_LEN = 16, +}; + +typedef unsigned int xa_mark_t; + +enum xa_lock_type { + XA_LOCK_IRQ = 1, + XA_LOCK_BH = 2, +}; + +struct ida { + struct xarray xa; +}; + +struct ftrace_hash { + long unsigned int size_bits; + struct hlist_head *buckets; + long unsigned int count; + long unsigned int flags; + struct callback_head rcu; +}; + +struct prog_entry; + +struct event_filter { + struct prog_entry *prog; + char *filter_string; +}; + +struct trace_array_cpu; + +struct array_buffer { + struct trace_array *tr; + struct trace_buffer *buffer; + struct trace_array_cpu *data; + u64 time_start; + int cpu; +}; + +struct trace_pid_list; + +struct trace_options; + +struct trace_func_repeats; + +struct trace_array { + struct list_head list; + char *name; + struct array_buffer array_buffer; + unsigned int mapped; + long unsigned int range_addr_start; + long unsigned int range_addr_size; + long int text_delta; + long int data_delta; + struct trace_pid_list *filtered_pids; + struct trace_pid_list *filtered_no_pids; + arch_spinlock_t max_lock; + int buffer_disabled; + int sys_refcount_enter; + int sys_refcount_exit; + struct trace_event_file *enter_syscall_files[463]; + struct trace_event_file *exit_syscall_files[463]; + int stop_count; + int clock_id; + int nr_topts; + bool clear_trace; + int buffer_percent; + unsigned int n_err_log_entries; + struct tracer *current_trace; + unsigned int trace_flags; + unsigned char trace_flags_index[32]; + unsigned int flags; + raw_spinlock_t start_lock; + const char *system_names; + struct list_head err_log; + struct dentry *dir; + struct dentry *options; + struct dentry *percpu_dir; + struct eventfs_inode *event_dir; + struct trace_options *topts; + struct list_head systems; + struct list_head events; + struct trace_event_file *trace_marker_file; + cpumask_var_t tracing_cpumask; + cpumask_var_t pipe_cpumask; + int ref; + int trace_ref; + struct ftrace_ops *ops; + struct trace_pid_list *function_pids; + struct trace_pid_list *function_no_pids; + struct list_head func_probes; + struct list_head mod_trace; + struct list_head mod_notrace; + int function_enabled; + int no_filter_buffering_ref; + struct list_head hist_vars; + struct trace_func_repeats *last_func_repeats; + bool ring_buffer_expanded; +}; + +struct tracer_flags; + +struct tracer { + const char *name; + int (*init)(struct trace_array *); + void (*reset)(struct trace_array *); + void (*start)(struct trace_array *); + void (*stop)(struct trace_array *); + int (*update_thresh)(struct trace_array *); + void (*open)(struct trace_iterator *); + void (*pipe_open)(struct trace_iterator *); + void (*close)(struct trace_iterator *); + void (*pipe_close)(struct trace_iterator *); + ssize_t (*read)(struct trace_iterator *, struct file *, char *, size_t, loff_t *); + ssize_t (*splice_read)(struct trace_iterator *, struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); + void (*print_header)(struct seq_file *); + enum print_line_t (*print_line)(struct trace_iterator *); + int (*set_flag)(struct trace_array *, u32, u32, int); + int (*flag_changed)(struct trace_array *, u32, int); + struct tracer *next; + struct tracer_flags *flags; + int enabled; + bool print_max; + bool allow_instances; + bool noboot; +}; + +enum trace_iter_flags { + TRACE_FILE_LAT_FMT = 1, + TRACE_FILE_ANNOTATE = 2, + TRACE_FILE_TIME_IN_NS = 4, +}; + +enum trace_flag_type { + TRACE_FLAG_IRQS_OFF = 1, + TRACE_FLAG_IRQS_NOSUPPORT = 2, + TRACE_FLAG_NEED_RESCHED = 4, + TRACE_FLAG_HARDIRQ = 8, + TRACE_FLAG_SOFTIRQ = 16, + TRACE_FLAG_PREEMPT_RESCHED = 32, + TRACE_FLAG_NMI = 64, + TRACE_FLAG_BH_OFF = 128, +}; + +struct event_subsystem; + +struct trace_subsystem_dir { + struct list_head list; + struct event_subsystem *subsystem; + struct trace_array *tr; + struct eventfs_inode *ei; + int ref_count; + int nr_events; +}; + +union lower_chunk { + union lower_chunk *next; + long unsigned int data[256]; +}; + +union upper_chunk { + union upper_chunk *next; + union lower_chunk *data[256]; +}; + +struct trace_pid_list { + raw_spinlock_t lock; + struct irq_work refill_irqwork; + union upper_chunk *upper[256]; + union upper_chunk *upper_list; + union lower_chunk *lower_list; + int free_upper_chunks; + int free_lower_chunks; +}; + +enum trace_type { + __TRACE_FIRST_TYPE = 0, + TRACE_FN = 1, + TRACE_CTX = 2, + TRACE_WAKE = 3, + TRACE_STACK = 4, + TRACE_PRINT = 5, + TRACE_BPRINT = 6, + TRACE_MMIO_RW = 7, + TRACE_MMIO_MAP = 8, + TRACE_BRANCH = 9, + TRACE_GRAPH_RET = 10, + TRACE_GRAPH_ENT = 11, + TRACE_USER_STACK = 12, + TRACE_BLK = 13, + TRACE_BPUTS = 14, + TRACE_HWLAT = 15, + TRACE_OSNOISE = 16, + TRACE_TIMERLAT = 17, + TRACE_RAW_DATA = 18, + TRACE_FUNC_REPEATS = 19, + __TRACE_LAST_TYPE = 20, +}; + +struct ftrace_entry { + struct trace_entry ent; + long unsigned int ip; + long unsigned int parent_ip; +}; + +struct ctx_switch_entry { + struct trace_entry ent; + unsigned int prev_pid; + unsigned int next_pid; + unsigned int next_cpu; + unsigned char prev_prio; + unsigned char prev_state; + unsigned char next_prio; + unsigned char next_state; +}; + +struct stack_entry { + struct trace_entry ent; + int size; + long unsigned int caller[0]; +}; + +struct userstack_entry { + struct trace_entry ent; + unsigned int tgid; + long unsigned int caller[8]; +}; + +struct bprint_entry { + struct trace_entry ent; + long unsigned int ip; + const char *fmt; + u32 buf[0]; +}; + +struct print_entry { + struct trace_entry ent; + long unsigned int ip; + char buf[0]; +}; + +struct raw_data_entry { + struct trace_entry ent; + unsigned int id; + char buf[0]; +}; + +struct bputs_entry { + struct trace_entry ent; + long unsigned int ip; + const char *str; +}; + +struct hwlat_entry { + struct trace_entry ent; + u64 duration; + u64 outer_duration; + u64 nmi_total_ts; + struct timespec64 timestamp; + unsigned int nmi_count; + unsigned int seqnum; + unsigned int count; +}; + +struct func_repeats_entry { + struct trace_entry ent; + long unsigned int ip; + long unsigned int parent_ip; + u16 count; + u16 top_delta_ts; + u32 bottom_delta_ts; +}; + +struct osnoise_entry { + struct trace_entry ent; + u64 noise; + u64 runtime; + u64 max_sample; + unsigned int hw_count; + unsigned int nmi_count; + unsigned int irq_count; + unsigned int softirq_count; + unsigned int thread_count; +}; + +struct timerlat_entry { + struct trace_entry ent; + unsigned int seqnum; + int context; + u64 timer_latency; +}; + +struct trace_array_cpu { + atomic_t disabled; + void *buffer_page; + long unsigned int entries; + long unsigned int saved_latency; + long unsigned int critical_start; + long unsigned int critical_end; + long unsigned int critical_sequence; + long unsigned int nice; + long unsigned int policy; + long unsigned int rt_priority; + long unsigned int skipped_entries; + u64 preempt_timestamp; + pid_t pid; + kuid_t uid; + char comm[16]; + int ftrace_ignore_pid; + bool ignore_pid; +}; + +struct trace_option_dentry; + +struct trace_options { + struct tracer *tracer; + struct trace_option_dentry *topts; +}; + +struct tracer_opt; + +struct trace_option_dentry { + struct tracer_opt *opt; + struct tracer_flags *flags; + struct trace_array *tr; + struct dentry *entry; +}; + +struct trace_func_repeats { + long unsigned int ip; + long unsigned int parent_ip; + long unsigned int count; + u64 ts_last_call; +}; + +struct tracer_opt { + const char *name; + u32 bit; +}; + +struct tracer_flags { + u32 val; + struct tracer_opt *opts; + struct tracer *trace; +}; + +enum trace_iterator_bits { + TRACE_ITER_PRINT_PARENT_BIT = 0, + TRACE_ITER_SYM_OFFSET_BIT = 1, + TRACE_ITER_SYM_ADDR_BIT = 2, + TRACE_ITER_VERBOSE_BIT = 3, + TRACE_ITER_RAW_BIT = 4, + TRACE_ITER_HEX_BIT = 5, + TRACE_ITER_BIN_BIT = 6, + TRACE_ITER_BLOCK_BIT = 7, + TRACE_ITER_FIELDS_BIT = 8, + TRACE_ITER_PRINTK_BIT = 9, + TRACE_ITER_ANNOTATE_BIT = 10, + TRACE_ITER_USERSTACKTRACE_BIT = 11, + TRACE_ITER_SYM_USEROBJ_BIT = 12, + TRACE_ITER_PRINTK_MSGONLY_BIT = 13, + TRACE_ITER_CONTEXT_INFO_BIT = 14, + TRACE_ITER_LATENCY_FMT_BIT = 15, + TRACE_ITER_RECORD_CMD_BIT = 16, + TRACE_ITER_RECORD_TGID_BIT = 17, + TRACE_ITER_OVERWRITE_BIT = 18, + TRACE_ITER_STOP_ON_FREE_BIT = 19, + TRACE_ITER_IRQ_INFO_BIT = 20, + TRACE_ITER_MARKERS_BIT = 21, + TRACE_ITER_EVENT_FORK_BIT = 22, + TRACE_ITER_TRACE_PRINTK_BIT = 23, + TRACE_ITER_PAUSE_ON_TRACE_BIT = 24, + TRACE_ITER_HASH_PTR_BIT = 25, + TRACE_ITER_FUNCTION_BIT = 26, + TRACE_ITER_FUNC_FORK_BIT = 27, + TRACE_ITER_STACKTRACE_BIT = 28, + TRACE_ITER_LAST_BIT = 29, +}; + +enum trace_iterator_flags { + TRACE_ITER_PRINT_PARENT = 1, + TRACE_ITER_SYM_OFFSET = 2, + TRACE_ITER_SYM_ADDR = 4, + TRACE_ITER_VERBOSE = 8, + TRACE_ITER_RAW = 16, + TRACE_ITER_HEX = 32, + TRACE_ITER_BIN = 64, + TRACE_ITER_BLOCK = 128, + TRACE_ITER_FIELDS = 256, + TRACE_ITER_PRINTK = 512, + TRACE_ITER_ANNOTATE = 1024, + TRACE_ITER_USERSTACKTRACE = 2048, + TRACE_ITER_SYM_USEROBJ = 4096, + TRACE_ITER_PRINTK_MSGONLY = 8192, + TRACE_ITER_CONTEXT_INFO = 16384, + TRACE_ITER_LATENCY_FMT = 32768, + TRACE_ITER_RECORD_CMD = 65536, + TRACE_ITER_RECORD_TGID = 131072, + TRACE_ITER_OVERWRITE = 262144, + TRACE_ITER_STOP_ON_FREE = 524288, + TRACE_ITER_IRQ_INFO = 1048576, + TRACE_ITER_MARKERS = 2097152, + TRACE_ITER_EVENT_FORK = 4194304, + TRACE_ITER_TRACE_PRINTK = 8388608, + TRACE_ITER_PAUSE_ON_TRACE = 16777216, + TRACE_ITER_HASH_PTR = 33554432, + TRACE_ITER_FUNCTION = 67108864, + TRACE_ITER_FUNC_FORK = 134217728, + TRACE_ITER_STACKTRACE = 268435456, +}; + +struct ftrace_event_field { + struct list_head link; + const char *name; + const char *type; + int filter_type; + int offset; + int size; + unsigned int is_signed: 1; + unsigned int needs_test: 1; + int len; +}; + +struct event_subsystem { + struct list_head list; + const char *name; + struct event_filter *filter; + int ref_count; +}; + +struct trace_mark { + long long unsigned int val; + char sym; +}; + +enum lockdown_reason { + LOCKDOWN_NONE = 0, + LOCKDOWN_MODULE_SIGNATURE = 1, + LOCKDOWN_DEV_MEM = 2, + LOCKDOWN_EFI_TEST = 3, + LOCKDOWN_KEXEC = 4, + LOCKDOWN_HIBERNATION = 5, + LOCKDOWN_PCI_ACCESS = 6, + LOCKDOWN_IOPORT = 7, + LOCKDOWN_MSR = 8, + LOCKDOWN_ACPI_TABLES = 9, + LOCKDOWN_DEVICE_TREE = 10, + LOCKDOWN_PCMCIA_CIS = 11, + LOCKDOWN_TIOCSSERIAL = 12, + LOCKDOWN_MODULE_PARAMETERS = 13, + LOCKDOWN_MMIOTRACE = 14, + LOCKDOWN_DEBUGFS = 15, + LOCKDOWN_XMON_WR = 16, + LOCKDOWN_BPF_WRITE_USER = 17, + LOCKDOWN_DBG_WRITE_KERNEL = 18, + LOCKDOWN_RTAS_ERROR_INJECTION = 19, + LOCKDOWN_INTEGRITY_MAX = 20, + LOCKDOWN_KCORE = 21, + LOCKDOWN_KPROBES = 22, + LOCKDOWN_BPF_READ_KERNEL = 23, + LOCKDOWN_DBG_READ_KERNEL = 24, + LOCKDOWN_PERF = 25, + LOCKDOWN_TRACEFS = 26, + LOCKDOWN_XMON_RW = 27, + LOCKDOWN_XFRM_SECRET = 28, + LOCKDOWN_CONFIDENTIALITY_MAX = 29, +}; + +enum dynevent_type { + DYNEVENT_TYPE_SYNTH = 1, + DYNEVENT_TYPE_KPROBE = 2, + DYNEVENT_TYPE_NONE = 3, +}; + +struct dynevent_cmd; + +typedef int (*dynevent_create_fn_t)(struct dynevent_cmd *); + +struct dynevent_cmd { + struct seq_buf seq; + const char *event_name; + unsigned int n_fields; + enum dynevent_type type; + dynevent_create_fn_t run_command; + void *private_data; +}; + +struct dyn_event; + +struct dyn_event_operations { + struct list_head list; + int (*create)(const char *); + int (*show)(struct seq_file *, struct dyn_event *); + bool (*is_busy)(struct dyn_event *); + int (*free)(struct dyn_event *); + bool (*match)(const char *, const char *, int, const char **, struct dyn_event *); +}; + +struct dyn_event { + struct list_head list; + struct dyn_event_operations *ops; +}; + +typedef int (*dynevent_check_arg_fn_t)(void *); + +struct dynevent_arg { + const char *str; + char separator; +}; + +struct dynevent_arg_pair { + const char *lhs; + const char *rhs; + char operator; + char separator; +}; + +union bpf_iter_link_info { + struct { + __u32 map_fd; + } map; + struct { + enum bpf_cgroup_iter_order order; + __u32 cgroup_fd; + __u64 cgroup_id; + } cgroup; + struct { + __u32 tid; + __u32 pid; + __u32 pid_fd; + } task; +}; + +enum bpf_func_id { + BPF_FUNC_unspec = 0, + BPF_FUNC_map_lookup_elem = 1, + BPF_FUNC_map_update_elem = 2, + BPF_FUNC_map_delete_elem = 3, + BPF_FUNC_probe_read = 4, + BPF_FUNC_ktime_get_ns = 5, + BPF_FUNC_trace_printk = 6, + BPF_FUNC_get_prandom_u32 = 7, + BPF_FUNC_get_smp_processor_id = 8, + BPF_FUNC_skb_store_bytes = 9, + BPF_FUNC_l3_csum_replace = 10, + BPF_FUNC_l4_csum_replace = 11, + BPF_FUNC_tail_call = 12, + BPF_FUNC_clone_redirect = 13, + BPF_FUNC_get_current_pid_tgid = 14, + BPF_FUNC_get_current_uid_gid = 15, + BPF_FUNC_get_current_comm = 16, + BPF_FUNC_get_cgroup_classid = 17, + BPF_FUNC_skb_vlan_push = 18, + BPF_FUNC_skb_vlan_pop = 19, + BPF_FUNC_skb_get_tunnel_key = 20, + BPF_FUNC_skb_set_tunnel_key = 21, + BPF_FUNC_perf_event_read = 22, + BPF_FUNC_redirect = 23, + BPF_FUNC_get_route_realm = 24, + BPF_FUNC_perf_event_output = 25, + BPF_FUNC_skb_load_bytes = 26, + BPF_FUNC_get_stackid = 27, + BPF_FUNC_csum_diff = 28, + BPF_FUNC_skb_get_tunnel_opt = 29, + BPF_FUNC_skb_set_tunnel_opt = 30, + BPF_FUNC_skb_change_proto = 31, + BPF_FUNC_skb_change_type = 32, + BPF_FUNC_skb_under_cgroup = 33, + BPF_FUNC_get_hash_recalc = 34, + BPF_FUNC_get_current_task = 35, + BPF_FUNC_probe_write_user = 36, + BPF_FUNC_current_task_under_cgroup = 37, + BPF_FUNC_skb_change_tail = 38, + BPF_FUNC_skb_pull_data = 39, + BPF_FUNC_csum_update = 40, + BPF_FUNC_set_hash_invalid = 41, + BPF_FUNC_get_numa_node_id = 42, + BPF_FUNC_skb_change_head = 43, + BPF_FUNC_xdp_adjust_head = 44, + BPF_FUNC_probe_read_str = 45, + BPF_FUNC_get_socket_cookie = 46, + BPF_FUNC_get_socket_uid = 47, + BPF_FUNC_set_hash = 48, + BPF_FUNC_setsockopt = 49, + BPF_FUNC_skb_adjust_room = 50, + BPF_FUNC_redirect_map = 51, + BPF_FUNC_sk_redirect_map = 52, + BPF_FUNC_sock_map_update = 53, + BPF_FUNC_xdp_adjust_meta = 54, + BPF_FUNC_perf_event_read_value = 55, + BPF_FUNC_perf_prog_read_value = 56, + BPF_FUNC_getsockopt = 57, + BPF_FUNC_override_return = 58, + BPF_FUNC_sock_ops_cb_flags_set = 59, + BPF_FUNC_msg_redirect_map = 60, + BPF_FUNC_msg_apply_bytes = 61, + BPF_FUNC_msg_cork_bytes = 62, + BPF_FUNC_msg_pull_data = 63, + BPF_FUNC_bind = 64, + BPF_FUNC_xdp_adjust_tail = 65, + BPF_FUNC_skb_get_xfrm_state = 66, + BPF_FUNC_get_stack = 67, + BPF_FUNC_skb_load_bytes_relative = 68, + BPF_FUNC_fib_lookup = 69, + BPF_FUNC_sock_hash_update = 70, + BPF_FUNC_msg_redirect_hash = 71, + BPF_FUNC_sk_redirect_hash = 72, + BPF_FUNC_lwt_push_encap = 73, + BPF_FUNC_lwt_seg6_store_bytes = 74, + BPF_FUNC_lwt_seg6_adjust_srh = 75, + BPF_FUNC_lwt_seg6_action = 76, + BPF_FUNC_rc_repeat = 77, + BPF_FUNC_rc_keydown = 78, + BPF_FUNC_skb_cgroup_id = 79, + BPF_FUNC_get_current_cgroup_id = 80, + BPF_FUNC_get_local_storage = 81, + BPF_FUNC_sk_select_reuseport = 82, + BPF_FUNC_skb_ancestor_cgroup_id = 83, + BPF_FUNC_sk_lookup_tcp = 84, + BPF_FUNC_sk_lookup_udp = 85, + BPF_FUNC_sk_release = 86, + BPF_FUNC_map_push_elem = 87, + BPF_FUNC_map_pop_elem = 88, + BPF_FUNC_map_peek_elem = 89, + BPF_FUNC_msg_push_data = 90, + BPF_FUNC_msg_pop_data = 91, + BPF_FUNC_rc_pointer_rel = 92, + BPF_FUNC_spin_lock = 93, + BPF_FUNC_spin_unlock = 94, + BPF_FUNC_sk_fullsock = 95, + BPF_FUNC_tcp_sock = 96, + BPF_FUNC_skb_ecn_set_ce = 97, + BPF_FUNC_get_listener_sock = 98, + BPF_FUNC_skc_lookup_tcp = 99, + BPF_FUNC_tcp_check_syncookie = 100, + BPF_FUNC_sysctl_get_name = 101, + BPF_FUNC_sysctl_get_current_value = 102, + BPF_FUNC_sysctl_get_new_value = 103, + BPF_FUNC_sysctl_set_new_value = 104, + BPF_FUNC_strtol = 105, + BPF_FUNC_strtoul = 106, + BPF_FUNC_sk_storage_get = 107, + BPF_FUNC_sk_storage_delete = 108, + BPF_FUNC_send_signal = 109, + BPF_FUNC_tcp_gen_syncookie = 110, + BPF_FUNC_skb_output = 111, + BPF_FUNC_probe_read_user = 112, + BPF_FUNC_probe_read_kernel = 113, + BPF_FUNC_probe_read_user_str = 114, + BPF_FUNC_probe_read_kernel_str = 115, + BPF_FUNC_tcp_send_ack = 116, + BPF_FUNC_send_signal_thread = 117, + BPF_FUNC_jiffies64 = 118, + BPF_FUNC_read_branch_records = 119, + BPF_FUNC_get_ns_current_pid_tgid = 120, + BPF_FUNC_xdp_output = 121, + BPF_FUNC_get_netns_cookie = 122, + BPF_FUNC_get_current_ancestor_cgroup_id = 123, + BPF_FUNC_sk_assign = 124, + BPF_FUNC_ktime_get_boot_ns = 125, + BPF_FUNC_seq_printf = 126, + BPF_FUNC_seq_write = 127, + BPF_FUNC_sk_cgroup_id = 128, + BPF_FUNC_sk_ancestor_cgroup_id = 129, + BPF_FUNC_ringbuf_output = 130, + BPF_FUNC_ringbuf_reserve = 131, + BPF_FUNC_ringbuf_submit = 132, + BPF_FUNC_ringbuf_discard = 133, + BPF_FUNC_ringbuf_query = 134, + BPF_FUNC_csum_level = 135, + BPF_FUNC_skc_to_tcp6_sock = 136, + BPF_FUNC_skc_to_tcp_sock = 137, + BPF_FUNC_skc_to_tcp_timewait_sock = 138, + BPF_FUNC_skc_to_tcp_request_sock = 139, + BPF_FUNC_skc_to_udp6_sock = 140, + BPF_FUNC_get_task_stack = 141, + BPF_FUNC_load_hdr_opt = 142, + BPF_FUNC_store_hdr_opt = 143, + BPF_FUNC_reserve_hdr_opt = 144, + BPF_FUNC_inode_storage_get = 145, + BPF_FUNC_inode_storage_delete = 146, + BPF_FUNC_d_path = 147, + BPF_FUNC_copy_from_user = 148, + BPF_FUNC_snprintf_btf = 149, + BPF_FUNC_seq_printf_btf = 150, + BPF_FUNC_skb_cgroup_classid = 151, + BPF_FUNC_redirect_neigh = 152, + BPF_FUNC_per_cpu_ptr = 153, + BPF_FUNC_this_cpu_ptr = 154, + BPF_FUNC_redirect_peer = 155, + BPF_FUNC_task_storage_get = 156, + BPF_FUNC_task_storage_delete = 157, + BPF_FUNC_get_current_task_btf = 158, + BPF_FUNC_bprm_opts_set = 159, + BPF_FUNC_ktime_get_coarse_ns = 160, + BPF_FUNC_ima_inode_hash = 161, + BPF_FUNC_sock_from_file = 162, + BPF_FUNC_check_mtu = 163, + BPF_FUNC_for_each_map_elem = 164, + BPF_FUNC_snprintf = 165, + BPF_FUNC_sys_bpf = 166, + BPF_FUNC_btf_find_by_name_kind = 167, + BPF_FUNC_sys_close = 168, + BPF_FUNC_timer_init = 169, + BPF_FUNC_timer_set_callback = 170, + BPF_FUNC_timer_start = 171, + BPF_FUNC_timer_cancel = 172, + BPF_FUNC_get_func_ip = 173, + BPF_FUNC_get_attach_cookie = 174, + BPF_FUNC_task_pt_regs = 175, + BPF_FUNC_get_branch_snapshot = 176, + BPF_FUNC_trace_vprintk = 177, + BPF_FUNC_skc_to_unix_sock = 178, + BPF_FUNC_kallsyms_lookup_name = 179, + BPF_FUNC_find_vma = 180, + BPF_FUNC_loop = 181, + BPF_FUNC_strncmp = 182, + BPF_FUNC_get_func_arg = 183, + BPF_FUNC_get_func_ret = 184, + BPF_FUNC_get_func_arg_cnt = 185, + BPF_FUNC_get_retval = 186, + BPF_FUNC_set_retval = 187, + BPF_FUNC_xdp_get_buff_len = 188, + BPF_FUNC_xdp_load_bytes = 189, + BPF_FUNC_xdp_store_bytes = 190, + BPF_FUNC_copy_from_user_task = 191, + BPF_FUNC_skb_set_tstamp = 192, + BPF_FUNC_ima_file_hash = 193, + BPF_FUNC_kptr_xchg = 194, + BPF_FUNC_map_lookup_percpu_elem = 195, + BPF_FUNC_skc_to_mptcp_sock = 196, + BPF_FUNC_dynptr_from_mem = 197, + BPF_FUNC_ringbuf_reserve_dynptr = 198, + BPF_FUNC_ringbuf_submit_dynptr = 199, + BPF_FUNC_ringbuf_discard_dynptr = 200, + BPF_FUNC_dynptr_read = 201, + BPF_FUNC_dynptr_write = 202, + BPF_FUNC_dynptr_data = 203, + BPF_FUNC_tcp_raw_gen_syncookie_ipv4 = 204, + BPF_FUNC_tcp_raw_gen_syncookie_ipv6 = 205, + BPF_FUNC_tcp_raw_check_syncookie_ipv4 = 206, + BPF_FUNC_tcp_raw_check_syncookie_ipv6 = 207, + BPF_FUNC_ktime_get_tai_ns = 208, + BPF_FUNC_user_ringbuf_drain = 209, + BPF_FUNC_cgrp_storage_get = 210, + BPF_FUNC_cgrp_storage_delete = 211, + __BPF_FUNC_MAX_ID = 212, +}; + +enum bpf_arg_type { + ARG_DONTCARE = 0, + ARG_CONST_MAP_PTR = 1, + ARG_PTR_TO_MAP_KEY = 2, + ARG_PTR_TO_MAP_VALUE = 3, + ARG_PTR_TO_MEM = 4, + ARG_PTR_TO_ARENA = 5, + ARG_CONST_SIZE = 6, + ARG_CONST_SIZE_OR_ZERO = 7, + ARG_PTR_TO_CTX = 8, + ARG_ANYTHING = 9, + ARG_PTR_TO_SPIN_LOCK = 10, + ARG_PTR_TO_SOCK_COMMON = 11, + ARG_PTR_TO_SOCKET = 12, + ARG_PTR_TO_BTF_ID = 13, + ARG_PTR_TO_RINGBUF_MEM = 14, + ARG_CONST_ALLOC_SIZE_OR_ZERO = 15, + ARG_PTR_TO_BTF_ID_SOCK_COMMON = 16, + ARG_PTR_TO_PERCPU_BTF_ID = 17, + ARG_PTR_TO_FUNC = 18, + ARG_PTR_TO_STACK = 19, + ARG_PTR_TO_CONST_STR = 20, + ARG_PTR_TO_TIMER = 21, + ARG_KPTR_XCHG_DEST = 22, + ARG_PTR_TO_DYNPTR = 23, + __BPF_ARG_TYPE_MAX = 24, + ARG_PTR_TO_MAP_VALUE_OR_NULL = 259, + ARG_PTR_TO_MEM_OR_NULL = 260, + ARG_PTR_TO_CTX_OR_NULL = 264, + ARG_PTR_TO_SOCKET_OR_NULL = 268, + ARG_PTR_TO_STACK_OR_NULL = 275, + ARG_PTR_TO_BTF_ID_OR_NULL = 269, + ARG_PTR_TO_UNINIT_MEM = 67141636, + ARG_PTR_TO_FIXED_SIZE_MEM = 262148, + __BPF_ARG_TYPE_LIMIT = 134217727, +}; + +enum bpf_return_type { + RET_INTEGER = 0, + RET_VOID = 1, + RET_PTR_TO_MAP_VALUE = 2, + RET_PTR_TO_SOCKET = 3, + RET_PTR_TO_TCP_SOCK = 4, + RET_PTR_TO_SOCK_COMMON = 5, + RET_PTR_TO_MEM = 6, + RET_PTR_TO_MEM_OR_BTF_ID = 7, + RET_PTR_TO_BTF_ID = 8, + __BPF_RET_TYPE_MAX = 9, + RET_PTR_TO_MAP_VALUE_OR_NULL = 258, + RET_PTR_TO_SOCKET_OR_NULL = 259, + RET_PTR_TO_TCP_SOCK_OR_NULL = 260, + RET_PTR_TO_SOCK_COMMON_OR_NULL = 261, + RET_PTR_TO_RINGBUF_MEM_OR_NULL = 1286, + RET_PTR_TO_DYNPTR_MEM_OR_NULL = 262, + RET_PTR_TO_BTF_ID_OR_NULL = 264, + RET_PTR_TO_BTF_ID_TRUSTED = 1048584, + __BPF_RET_TYPE_LIMIT = 134217727, +}; + +struct bpf_func_proto { + u64 (*func)(u64, u64, u64, u64, u64); + bool gpl_only; + bool pkt_access; + bool might_sleep; + bool allow_fastcall; + enum bpf_return_type ret_type; + union { + struct { + enum bpf_arg_type arg1_type; + enum bpf_arg_type arg2_type; + enum bpf_arg_type arg3_type; + enum bpf_arg_type arg4_type; + enum bpf_arg_type arg5_type; + }; + enum bpf_arg_type arg_type[5]; + }; + union { + struct { + u32 *arg1_btf_id; + u32 *arg2_btf_id; + u32 *arg3_btf_id; + u32 *arg4_btf_id; + u32 *arg5_btf_id; + }; + u32 *arg_btf_id[5]; + struct { + size_t arg1_size; + size_t arg2_size; + size_t arg3_size; + size_t arg4_size; + size_t arg5_size; + }; + size_t arg_size[5]; + }; + int *ret_btf_id; + bool (*allowed)(const struct bpf_prog *); +}; + +typedef int (*bpf_iter_attach_target_t)(struct bpf_prog *, union bpf_iter_link_info *, struct bpf_iter_aux_info *); + +typedef void (*bpf_iter_detach_target_t)(struct bpf_iter_aux_info *); + +typedef void (*bpf_iter_show_fdinfo_t)(const struct bpf_iter_aux_info *, struct seq_file *); + +typedef int (*bpf_iter_fill_link_info_t)(const struct bpf_iter_aux_info *, struct bpf_link_info *); + +typedef const struct bpf_func_proto * (*bpf_iter_get_func_proto_t)(enum bpf_func_id, const struct bpf_prog *); + +struct bpf_iter_reg { + const char *target; + bpf_iter_attach_target_t attach_target; + bpf_iter_detach_target_t detach_target; + bpf_iter_show_fdinfo_t show_fdinfo; + bpf_iter_fill_link_info_t fill_link_info; + bpf_iter_get_func_proto_t get_func_proto; + u32 ctx_arg_info_size; + u32 feature; + struct bpf_ctx_arg_aux ctx_arg_info[2]; + const struct bpf_iter_seq_info *seq_info; +}; + +struct bpf_iter_meta { + union { + struct seq_file *seq; + }; + u64 session_id; + u64 seq_num; +}; + +struct bpf_iter_seq_prog_info { + u32 prog_id; +}; + +struct bpf_iter__bpf_prog { + union { + struct bpf_iter_meta *meta; + }; + union { + struct bpf_prog *prog; + }; +}; + +struct fdtable { + unsigned int max_fds; + struct file **fd; + long unsigned int *close_on_exec; + long unsigned int *open_fds; + long unsigned int *full_fds_bits; + struct callback_head rcu; +}; + +struct files_struct { + atomic_t count; + bool resize_in_progress; + wait_queue_head_t resize_wait; + struct fdtable *fdt; + struct fdtable fdtab; + long: 64; + long: 64; + long: 64; + long: 64; + spinlock_t file_lock; + unsigned int next_fd; + long unsigned int close_on_exec_init[1]; + long unsigned int open_fds_init[1]; + long unsigned int full_fds_bits_init[1]; + struct file *fd_array[64]; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct bpf_local_storage_data; + +struct bpf_local_storage { + struct bpf_local_storage_data *cache[16]; + struct bpf_local_storage_map *smap; + struct hlist_head list; + void *owner; + struct callback_head rcu; + raw_spinlock_t lock; +}; + +enum { + BPF_ANY = 0, + BPF_NOEXIST = 1, + BPF_EXIST = 2, + BPF_F_LOCK = 4, +}; + +enum { + BPF_LOCAL_STORAGE_GET_F_CREATE = 1, + BPF_SK_STORAGE_GET_F_CREATE = 1, +}; + +enum { + BTF_TRACING_TYPE_TASK = 0, + BTF_TRACING_TYPE_FILE = 1, + BTF_TRACING_TYPE_VMA = 2, + MAX_BTF_TRACING_TYPE = 3, +}; + +struct bpf_mem_caches; + +struct bpf_mem_cache; + +struct bpf_mem_alloc { + struct bpf_mem_caches *caches; + struct bpf_mem_cache *cache; + struct obj_cgroup *objcg; + bool percpu; + struct work_struct work; +}; + +struct bpf_local_storage_map_bucket; + +struct bpf_local_storage_map { + struct bpf_map map; + struct bpf_local_storage_map_bucket *buckets; + u32 bucket_log; + u16 elem_size; + u16 cache_idx; + struct bpf_mem_alloc selem_ma; + struct bpf_mem_alloc storage_ma; + bool bpf_ma; +}; + +struct bpf_local_storage_map_bucket { + struct hlist_head list; + raw_spinlock_t lock; +}; + +struct bpf_local_storage_data { + struct bpf_local_storage_map *smap; + u8 data[0]; +}; + +struct bpf_local_storage_elem { + struct hlist_node map_node; + struct hlist_node snode; + struct bpf_local_storage *local_storage; + struct callback_head rcu; + long: 64; + struct bpf_local_storage_data sdata; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct bpf_local_storage_cache { + spinlock_t idx_lock; + u64 idx_usage_counts[16]; +}; + +typedef u64 (*btf_bpf_task_storage_get_recur)(struct bpf_map *, struct task_struct *, void *, u64, gfp_t); + +typedef u64 (*btf_bpf_task_storage_get)(struct bpf_map *, struct task_struct *, void *, u64, gfp_t); + +typedef u64 (*btf_bpf_task_storage_delete_recur)(struct bpf_map *, struct task_struct *); + +typedef u64 (*btf_bpf_task_storage_delete)(struct bpf_map *, struct task_struct *); + +enum { + BPF_F_NO_PREALLOC = 1, + BPF_F_NO_COMMON_LRU = 2, + BPF_F_NUMA_NODE = 4, + BPF_F_RDONLY = 8, + BPF_F_WRONLY = 16, + BPF_F_STACK_BUILD_ID = 32, + BPF_F_ZERO_SEED = 64, + BPF_F_RDONLY_PROG = 128, + BPF_F_WRONLY_PROG = 256, + BPF_F_CLONE = 512, + BPF_F_MMAPABLE = 1024, + BPF_F_PRESERVE_ELEMS = 2048, + BPF_F_INNER_MAP = 4096, + BPF_F_LINK = 8192, + BPF_F_PATH_FD = 16384, + BPF_F_VTYPE_BTF_OBJ_FD = 32768, + BPF_F_TOKEN_FD = 65536, + BPF_F_SEGV_ON_FAULT = 131072, + BPF_F_NO_USER_CONV = 262144, +}; + +enum bpf_stack_build_id_status { + BPF_STACK_BUILD_ID_EMPTY = 0, + BPF_STACK_BUILD_ID_VALID = 1, + BPF_STACK_BUILD_ID_IP = 2, +}; + +struct bpf_stack_build_id { + __s32 status; + unsigned char build_id[20]; + union { + __u64 offset; + __u64 ip; + }; +}; + +enum { + BPF_F_SKIP_FIELD_MASK = 255, + BPF_F_USER_STACK = 256, + BPF_F_FAST_STACK_CMP = 512, + BPF_F_REUSE_STACKID = 1024, + BPF_F_USER_BUILD_ID = 2048, +}; + +enum perf_event_sample_format { + PERF_SAMPLE_IP = 1, + PERF_SAMPLE_TID = 2, + PERF_SAMPLE_TIME = 4, + PERF_SAMPLE_ADDR = 8, + PERF_SAMPLE_READ = 16, + PERF_SAMPLE_CALLCHAIN = 32, + PERF_SAMPLE_ID = 64, + PERF_SAMPLE_CPU = 128, + PERF_SAMPLE_PERIOD = 256, + PERF_SAMPLE_STREAM_ID = 512, + PERF_SAMPLE_RAW = 1024, + PERF_SAMPLE_BRANCH_STACK = 2048, + PERF_SAMPLE_REGS_USER = 4096, + PERF_SAMPLE_STACK_USER = 8192, + PERF_SAMPLE_WEIGHT = 16384, + PERF_SAMPLE_DATA_SRC = 32768, + PERF_SAMPLE_IDENTIFIER = 65536, + PERF_SAMPLE_TRANSACTION = 131072, + PERF_SAMPLE_REGS_INTR = 262144, + PERF_SAMPLE_PHYS_ADDR = 524288, + PERF_SAMPLE_AUX = 1048576, + PERF_SAMPLE_CGROUP = 2097152, + PERF_SAMPLE_DATA_PAGE_SIZE = 4194304, + PERF_SAMPLE_CODE_PAGE_SIZE = 8388608, + PERF_SAMPLE_WEIGHT_STRUCT = 16777216, + PERF_SAMPLE_MAX = 33554432, +}; + +enum perf_callchain_context { + PERF_CONTEXT_HV = 18446744073709551584ULL, + PERF_CONTEXT_KERNEL = 18446744073709551488ULL, + PERF_CONTEXT_USER = 18446744073709551104ULL, + PERF_CONTEXT_GUEST = 18446744073709549568ULL, + PERF_CONTEXT_GUEST_KERNEL = 18446744073709549440ULL, + PERF_CONTEXT_GUEST_USER = 18446744073709549056ULL, + PERF_CONTEXT_MAX = 18446744073709547521ULL, +}; + +typedef struct user_pt_regs bpf_user_pt_regs_t; + +struct bpf_perf_event_data_kern { + bpf_user_pt_regs_t *regs; + struct perf_sample_data *data; + struct perf_event *event; +}; + +struct pcpu_freelist_node; + +struct pcpu_freelist_head { + struct pcpu_freelist_node *first; + raw_spinlock_t lock; +}; + +struct pcpu_freelist_node { + struct pcpu_freelist_node *next; +}; + +struct pcpu_freelist { + struct pcpu_freelist_head *freelist; + struct pcpu_freelist_head extralist; +}; + +struct mmap_unlock_irq_work { + struct irq_work irq_work; + struct mm_struct *mm; +}; + +struct stack_map_bucket { + struct pcpu_freelist_node fnode; + u32 hash; + u32 nr; + u64 data[0]; +}; + +struct bpf_stack_map { + struct bpf_map map; + void *elems; + struct pcpu_freelist freelist; + u32 n_buckets; + struct stack_map_bucket *buckets[0]; +}; + +typedef u64 (*btf_bpf_get_stackid)(struct pt_regs *, struct bpf_map *, u64); + +typedef u64 (*btf_bpf_get_stackid_pe)(struct bpf_perf_event_data_kern *, struct bpf_map *, u64); + +typedef u64 (*btf_bpf_get_stack)(struct pt_regs *, void *, u32, u64); + +typedef u64 (*btf_bpf_get_stack_sleepable)(struct pt_regs *, void *, u32, u64); + +typedef u64 (*btf_bpf_get_task_stack)(struct task_struct *, void *, u32, u64); + +typedef u64 (*btf_bpf_get_task_stack_sleepable)(struct task_struct *, void *, u32, u64); + +typedef u64 (*btf_bpf_get_stack_pe)(struct bpf_perf_event_data_kern *, void *, u32, u64); + +struct static_key_true { + struct static_key key; +}; + +struct seqcount_rwlock { + seqcount_t seqcount; +}; + +typedef struct seqcount_rwlock seqcount_rwlock_t; + +enum { + MM_FILEPAGES = 0, + MM_ANONPAGES = 1, + MM_SWAPENTS = 2, + MM_SHMEMPAGES = 3, + NR_MM_COUNTERS = 4, +}; + +enum node_states { + N_POSSIBLE = 0, + N_ONLINE = 1, + N_NORMAL_MEMORY = 2, + N_HIGH_MEMORY = 2, + N_MEMORY = 3, + N_CPU = 4, + N_GENERIC_INITIATOR = 5, + NR_NODE_STATES = 6, +}; + +struct maple_alloc { + long unsigned int total; + unsigned char node_count; + unsigned int request_count; + struct maple_alloc *slot[30]; +}; + +struct maple_enode; + +enum store_type { + wr_invalid = 0, + wr_new_root = 1, + wr_store_root = 2, + wr_exact_fit = 3, + wr_spanning_store = 4, + wr_split_store = 5, + wr_rebalance = 6, + wr_append = 7, + wr_node_store = 8, + wr_slot_store = 9, +}; + +enum maple_status { + ma_active = 0, + ma_start = 1, + ma_root = 2, + ma_none = 3, + ma_pause = 4, + ma_overflow = 5, + ma_underflow = 6, + ma_error = 7, +}; + +struct ma_state { + struct maple_tree *tree; + long unsigned int index; + long unsigned int last; + struct maple_enode *node; + long unsigned int min; + long unsigned int max; + struct maple_alloc *alloc; + enum maple_status status; + unsigned char depth; + unsigned char offset; + unsigned char mas_flags; + unsigned char end; + enum store_type store_type; +}; + +struct uprobe_consumer { + int (*handler)(struct uprobe_consumer *, struct pt_regs *); + int (*ret_handler)(struct uprobe_consumer *, long unsigned int, struct pt_regs *); + bool (*filter)(struct uprobe_consumer *, struct mm_struct *); + struct list_head cons_node; +}; + +typedef __le32 uprobe_opcode_t; + +struct uprobe { + struct rb_node rb_node; + refcount_t ref; + struct rw_semaphore register_rwsem; + struct rw_semaphore consumer_rwsem; + struct list_head pending_list; + struct list_head consumers; + struct inode *inode; + struct callback_head rcu; + loff_t offset; + loff_t ref_ctr_offset; + long unsigned int flags; + struct arch_uprobe arch; +}; + +enum rp_check { + RP_CHECK_CALL = 0, + RP_CHECK_CHAIN_CALL = 1, + RP_CHECK_RET = 2, +}; + +struct xol_area { + wait_queue_head_t wq; + atomic_t slot_count; + long unsigned int *bitmap; + struct page *page; + long unsigned int vaddr; +}; + +struct anon_vma { + struct anon_vma *root; + struct rw_semaphore rwsem; + atomic_t refcount; + long unsigned int num_children; + long unsigned int num_active_vmas; + struct anon_vma *parent; + struct rb_root_cached rb_root; +}; + +struct vma_iterator { + struct ma_state mas; +}; + +struct vm_special_mapping { + const char *name; + struct page **pages; + vm_fault_t (*fault)(const struct vm_special_mapping *, struct vm_area_struct *, struct vm_fault *); + int (*mremap)(const struct vm_special_mapping *, struct vm_area_struct *); + void (*close)(const struct vm_special_mapping *, struct vm_area_struct *); +}; + +enum { + FOLL_WRITE = 1, + FOLL_GET = 2, + FOLL_DUMP = 4, + FOLL_FORCE = 8, + FOLL_NOWAIT = 16, + FOLL_NOFAULT = 32, + FOLL_HWPOISON = 64, + FOLL_ANON = 128, + FOLL_LONGTERM = 256, + FOLL_SPLIT_PMD = 512, + FOLL_PCI_P2PDMA = 1024, + FOLL_INTERRUPTIBLE = 2048, + FOLL_HONOR_NUMA_FAULT = 4096, +}; + +enum pageflags { + PG_locked = 0, + PG_writeback = 1, + PG_referenced = 2, + PG_uptodate = 3, + PG_dirty = 4, + PG_lru = 5, + PG_head = 6, + PG_waiters = 7, + PG_active = 8, + PG_workingset = 9, + PG_owner_priv_1 = 10, + PG_owner_2 = 11, + PG_arch_1 = 12, + PG_reserved = 13, + PG_private = 14, + PG_private_2 = 15, + PG_reclaim = 16, + PG_swapbacked = 17, + PG_unevictable = 18, + PG_mlocked = 19, + PG_arch_2 = 20, + PG_arch_3 = 21, + __NR_PAGEFLAGS = 22, + PG_readahead = 16, + PG_swapcache = 10, + PG_checked = 10, + PG_anon_exclusive = 11, + PG_mappedtodisk = 11, + PG_fscache = 15, + PG_pinned = 10, + PG_savepinned = 4, + PG_foreign = 10, + PG_xen_remapped = 10, + PG_isolated = 16, + PG_reported = 3, + PG_has_hwpoisoned = 8, + PG_large_rmappable = 9, + PG_partially_mapped = 16, +}; + +enum pagetype { + PGTY_buddy = 240, + PGTY_offline = 241, + PGTY_table = 242, + PGTY_guard = 243, + PGTY_hugetlb = 244, + PGTY_slab = 245, + PGTY_zsmalloc = 246, + PGTY_unaccepted = 247, + PGTY_mapcount_underflow = 255, +}; + +struct mmu_notifier_range { + long unsigned int start; + long unsigned int end; +}; + +typedef int filler_t(struct file *, struct folio *); + +typedef unsigned int fgf_t; + +typedef int rmap_t; + +struct page_vma_mapped_walk { + long unsigned int pfn; + long unsigned int nr_pages; + long unsigned int pgoff; + struct vm_area_struct *vma; + long unsigned int address; + pmd_t *pmd; + pte_t *pte; + spinlock_t *ptl; + unsigned int flags; +}; + +typedef void (*task_work_func_t)(struct callback_head *); + +enum task_work_notify_mode { + TWA_NONE = 0, + TWA_RESUME = 1, + TWA_SIGNAL = 2, + TWA_SIGNAL_NO_IPI = 3, + TWA_NMI_CURRENT = 4, + TWA_FLAGS = 65280, + TWAF_NO_ALLOC = 256, +}; + +struct delayed_uprobe { + struct list_head list; + struct uprobe *uprobe; + struct mm_struct *mm; +}; + +struct __uprobe_key { + struct inode *inode; + loff_t offset; +}; + +struct map_info { + struct map_info *next; + struct mm_struct *mm; + long unsigned int vaddr; +}; + +struct compact_control; + +struct capture_control { + struct compact_control *cc; + struct page *page; +}; + +enum migratetype { + MIGRATE_UNMOVABLE = 0, + MIGRATE_MOVABLE = 1, + MIGRATE_RECLAIMABLE = 2, + MIGRATE_PCPTYPES = 3, + MIGRATE_HIGHATOMIC = 3, + MIGRATE_TYPES = 4, +}; + +enum lru_list { + LRU_INACTIVE_ANON = 0, + LRU_ACTIVE_ANON = 1, + LRU_INACTIVE_FILE = 2, + LRU_ACTIVE_FILE = 3, + LRU_UNEVICTABLE = 4, + NR_LRU_LISTS = 5, +}; + +enum zone_watermarks { + WMARK_MIN = 0, + WMARK_LOW = 1, + WMARK_HIGH = 2, + WMARK_PROMO = 3, + NR_WMARK = 4, +}; + +typedef struct pglist_data pg_data_t; + +struct mem_section_usage { + struct callback_head rcu; + long unsigned int subsection_map[1]; + long unsigned int pageblock_flags[0]; +}; + +struct mem_section { + long unsigned int section_mem_map; + struct mem_section_usage *usage; +}; + +enum { + SECTION_MARKED_PRESENT_BIT = 0, + SECTION_HAS_MEM_MAP_BIT = 1, + SECTION_IS_ONLINE_BIT = 2, + SECTION_IS_EARLY_BIT = 3, + SECTION_MAP_LAST_BIT = 4, +}; + +enum vm_stat_item { + NR_DIRTY_THRESHOLD = 0, + NR_DIRTY_BG_THRESHOLD = 1, + NR_MEMMAP_PAGES = 2, + NR_MEMMAP_BOOT_PAGES = 3, + NR_VM_STAT_ITEMS = 4, +}; + +struct vm_event_state { + long unsigned int event[102]; +}; + +enum { + TASKSTATS_CMD_UNSPEC = 0, + TASKSTATS_CMD_GET = 1, + TASKSTATS_CMD_NEW = 2, + __TASKSTATS_CMD_MAX = 3, +}; + +enum cgroup_bpf_attach_type { + CGROUP_BPF_ATTACH_TYPE_INVALID = -1, + CGROUP_INET_INGRESS = 0, + CGROUP_INET_EGRESS = 1, + CGROUP_INET_SOCK_CREATE = 2, + CGROUP_SOCK_OPS = 3, + CGROUP_DEVICE = 4, + CGROUP_INET4_BIND = 5, + CGROUP_INET6_BIND = 6, + CGROUP_INET4_CONNECT = 7, + CGROUP_INET6_CONNECT = 8, + CGROUP_UNIX_CONNECT = 9, + CGROUP_INET4_POST_BIND = 10, + CGROUP_INET6_POST_BIND = 11, + CGROUP_UDP4_SENDMSG = 12, + CGROUP_UDP6_SENDMSG = 13, + CGROUP_UNIX_SENDMSG = 14, + CGROUP_SYSCTL = 15, + CGROUP_UDP4_RECVMSG = 16, + CGROUP_UDP6_RECVMSG = 17, + CGROUP_UNIX_RECVMSG = 18, + CGROUP_GETSOCKOPT = 19, + CGROUP_SETSOCKOPT = 20, + CGROUP_INET4_GETPEERNAME = 21, + CGROUP_INET6_GETPEERNAME = 22, + CGROUP_UNIX_GETPEERNAME = 23, + CGROUP_INET4_GETSOCKNAME = 24, + CGROUP_INET6_GETSOCKNAME = 25, + CGROUP_UNIX_GETSOCKNAME = 26, + CGROUP_INET_SOCK_RELEASE = 27, + CGROUP_LSM_START = 28, + CGROUP_LSM_END = 37, + MAX_CGROUP_BPF_ATTACH_TYPE = 38, +}; + +enum psi_task_count { + NR_IOWAIT = 0, + NR_MEMSTALL = 1, + NR_RUNNING = 2, + NR_MEMSTALL_RUNNING = 3, + NR_PSI_TASK_COUNTS = 4, +}; + +enum psi_res { + PSI_IO = 0, + PSI_MEM = 1, + PSI_CPU = 2, + NR_PSI_RESOURCES = 3, +}; + +enum psi_states { + PSI_IO_SOME = 0, + PSI_IO_FULL = 1, + PSI_MEM_SOME = 2, + PSI_MEM_FULL = 3, + PSI_CPU_SOME = 4, + PSI_CPU_FULL = 5, + PSI_NONIDLE = 6, + NR_PSI_STATES = 7, +}; + +enum psi_aggregators { + PSI_AVGS = 0, + PSI_POLL = 1, + NR_PSI_AGGREGATORS = 2, +}; + +enum cgroup_subsys_id { + cpuset_cgrp_id = 0, + cpu_cgrp_id = 1, + cpuacct_cgrp_id = 2, + io_cgrp_id = 3, + memory_cgrp_id = 4, + devices_cgrp_id = 5, + freezer_cgrp_id = 6, + net_cls_cgrp_id = 7, + perf_event_cgrp_id = 8, + net_prio_cgrp_id = 9, + hugetlb_cgrp_id = 10, + pids_cgrp_id = 11, + rdma_cgrp_id = 12, + CGROUP_SUBSYS_COUNT = 13, +}; + +enum memcg_memory_event { + MEMCG_LOW = 0, + MEMCG_HIGH = 1, + MEMCG_MAX = 2, + MEMCG_OOM = 3, + MEMCG_OOM_KILL = 4, + MEMCG_OOM_GROUP_KILL = 5, + MEMCG_SWAP_HIGH = 6, + MEMCG_SWAP_MAX = 7, + MEMCG_SWAP_FAIL = 8, + MEMCG_NR_MEMORY_EVENTS = 9, +}; + +enum page_memcg_data_flags { + MEMCG_DATA_OBJEXTS = 1, + MEMCG_DATA_KMEM = 2, + __NR_MEMCG_DATA_FLAGS = 4, +}; + +enum hk_type { + HK_TYPE_TIMER = 0, + HK_TYPE_RCU = 1, + HK_TYPE_MISC = 2, + HK_TYPE_SCHED = 3, + HK_TYPE_TICK = 4, + HK_TYPE_DOMAIN = 5, + HK_TYPE_WQ = 6, + HK_TYPE_MANAGED_IRQ = 7, + HK_TYPE_KTHREAD = 8, + HK_TYPE_MAX = 9, +}; + +struct compact_control { + struct list_head freepages[11]; + struct list_head migratepages; + unsigned int nr_freepages; + unsigned int nr_migratepages; + long unsigned int free_pfn; + long unsigned int migrate_pfn; + long unsigned int fast_start_pfn; + struct zone *zone; + long unsigned int total_migrate_scanned; + long unsigned int total_free_scanned; + short unsigned int fast_search_fail; + short int search_order; + const gfp_t gfp_mask; + int order; + int migratetype; + const unsigned int alloc_flags; + const int highest_zoneidx; + enum migrate_mode mode; + bool ignore_skip_hint; + bool no_set_skip_hint; + bool ignore_block_suitable; + bool direct_compaction; + bool proactive_compaction; + bool whole_zone; + bool contended; + bool finish_pageblock; + bool alloc_contig; +}; + +struct contig_page_info { + long unsigned int free_pages; + long unsigned int free_blocks_total; + long unsigned int free_blocks_suitable; +}; + +typedef struct { + pgd_t pgd; +} p4d_t; + +struct ptdesc { + long unsigned int __page_flags; + union { + struct callback_head pt_rcu_head; + struct list_head pt_list; + struct { + long unsigned int _pt_pad_1; + pgtable_t pmd_huge_pte; + }; + }; + long unsigned int __page_mapping; + union { + long unsigned int pt_index; + struct mm_struct *pt_mm; + atomic_t pt_frag_refcount; + atomic_t pt_share_count; + }; + union { + long unsigned int _pt_pad_2; + spinlock_t ptl; + }; + unsigned int __page_type; + atomic_t __page_refcount; + long unsigned int pt_memcg_data; +}; + +enum vm_fault_reason { + VM_FAULT_OOM = 1, + VM_FAULT_SIGBUS = 2, + VM_FAULT_MAJOR = 4, + VM_FAULT_HWPOISON = 16, + VM_FAULT_HWPOISON_LARGE = 32, + VM_FAULT_SIGSEGV = 64, + VM_FAULT_NOPAGE = 256, + VM_FAULT_LOCKED = 512, + VM_FAULT_RETRY = 1024, + VM_FAULT_FALLBACK = 2048, + VM_FAULT_DONE_COW = 4096, + VM_FAULT_NEEDDSYNC = 8192, + VM_FAULT_COMPLETED = 16384, + VM_FAULT_HINDEX_MASK = 983040, +}; + +enum { + __PERCPU_REF_ATOMIC = 1, + __PERCPU_REF_DEAD = 2, + __PERCPU_REF_ATOMIC_DEAD = 3, + __PERCPU_REF_FLAG_BITS = 2, +}; + +enum migrate_reason { + MR_COMPACTION = 0, + MR_MEMORY_FAILURE = 1, + MR_MEMORY_HOTPLUG = 2, + MR_SYSCALL = 3, + MR_MEMPOLICY_MBIND = 4, + MR_NUMA_MISPLACED = 5, + MR_CONTIG_RANGE = 6, + MR_LONGTERM_PIN = 7, + MR_DEMOTION = 8, + MR_DAMON = 9, + MR_TYPES = 10, +}; + +struct hstate; + +struct hugepage_subpool { + spinlock_t lock; + long int count; + long int max_hpages; + long int used_hpages; + struct hstate *hstate; + long int min_hpages; + long int rsv_hpages; +}; + +struct hstate { + struct mutex resize_lock; + struct lock_class_key resize_key; + int next_nid_to_alloc; + int next_nid_to_free; + unsigned int order; + unsigned int demote_order; + long unsigned int mask; + long unsigned int max_huge_pages; + long unsigned int nr_huge_pages; + long unsigned int free_huge_pages; + long unsigned int resv_huge_pages; + long unsigned int surplus_huge_pages; + long unsigned int nr_overcommit_huge_pages; + struct list_head hugepage_activelist; + struct list_head hugepage_freelists[1]; + unsigned int max_huge_pages_node[1]; + unsigned int nr_huge_pages_node[1]; + unsigned int free_huge_pages_node[1]; + unsigned int surplus_huge_pages_node[1]; + char name[32]; +}; + +struct hugetlbfs_sb_info { + long int max_inodes; + long int free_inodes; + spinlock_t stat_lock; + struct hstate *hstate; + struct hugepage_subpool *spool; + kuid_t uid; + kgid_t gid; + umode_t mode; +}; + +typedef struct folio *new_folio_t(struct folio *, long unsigned int); + +typedef void free_folio_t(struct folio *, long unsigned int); + +struct migration_target_control { + int nid; + nodemask_t *nmask; + gfp_t gfp_mask; + enum migrate_reason reason; +}; + +enum { + FOLL_TOUCH = 65536, + FOLL_TRIED = 131072, + FOLL_REMOTE = 262144, + FOLL_PIN = 524288, + FOLL_FAST_ONLY = 1048576, + FOLL_UNLOCKABLE = 2097152, + FOLL_MADV_POPULATE = 4194304, +}; + +struct follow_page_context { + struct dev_pagemap *pgmap; + unsigned int page_mask; +}; + +struct pages_or_folios { + union { + struct page **pages; + struct folio **folios; + void **entries; + }; + bool has_folios; + long int nr_entries; +}; + +struct va_format { + const char *fmt; + va_list *va; +}; + +enum pageblock_bits { + PB_migrate = 0, + PB_migrate_end = 2, + PB_migrate_skip = 3, + NR_PAGEBLOCK_BITS = 4, +}; + +struct task_delay_info { + raw_spinlock_t lock; + u64 blkio_start; + u64 blkio_delay; + u64 swapin_start; + u64 swapin_delay; + u32 blkio_count; + u32 swapin_count; + u64 freepages_start; + u64 freepages_delay; + u64 thrashing_start; + u64 thrashing_delay; + u64 compact_start; + u64 compact_delay; + u64 wpcopy_start; + u64 wpcopy_delay; + u64 irq_delay; + u32 freepages_count; + u32 thrashing_count; + u32 compact_count; + u32 wpcopy_count; + u32 irq_count; +}; + +struct page_frag_cache { + void *va; + __u16 offset; + __u16 size; + unsigned int pagecnt_bias; + bool pfmemalloc; +}; + +enum zone_flags { + ZONE_BOOSTED_WATERMARK = 0, + ZONE_RECLAIM_ACTIVE = 1, + ZONE_BELOW_HIGH = 2, +}; + +enum { + ZONELIST_FALLBACK = 0, + MAX_ZONELISTS = 1, +}; + +enum meminit_context { + MEMINIT_EARLY = 0, + MEMINIT_HOTPLUG = 1, +}; + +struct mthp_stat { + long unsigned int stats[130]; +}; + +enum oom_constraint { + CONSTRAINT_NONE = 0, + CONSTRAINT_CPUSET = 1, + CONSTRAINT_MEMORY_POLICY = 2, + CONSTRAINT_MEMCG = 3, +}; + +struct oom_control { + struct zonelist *zonelist; + nodemask_t *nodemask; + struct mem_cgroup *memcg; + const gfp_t gfp_mask; + const int order; + long unsigned int totalpages; + struct task_struct *chosen; + long int chosen_points; + enum oom_constraint constraint; +}; + +enum compact_priority { + COMPACT_PRIO_SYNC_FULL = 0, + MIN_COMPACT_PRIORITY = 0, + COMPACT_PRIO_SYNC_LIGHT = 1, + MIN_COMPACT_COSTLY_PRIORITY = 1, + DEF_COMPACT_PRIORITY = 1, + COMPACT_PRIO_ASYNC = 2, + INIT_COMPACT_PRIORITY = 2, +}; + +enum compact_result { + COMPACT_NOT_SUITABLE_ZONE = 0, + COMPACT_SKIPPED = 1, + COMPACT_DEFERRED = 2, + COMPACT_NO_SUITABLE_PAGE = 3, + COMPACT_CONTINUE = 4, + COMPACT_COMPLETE = 5, + COMPACT_PARTIAL_SKIPPED = 6, + COMPACT_CONTENDED = 7, + COMPACT_SUCCESS = 8, +}; + +enum cache_type { + CACHE_TYPE_NOCACHE = 0, + CACHE_TYPE_INST = 1, + CACHE_TYPE_DATA = 2, + CACHE_TYPE_SEPARATE = 3, + CACHE_TYPE_UNIFIED = 4, +}; + +struct cacheinfo { + unsigned int id; + enum cache_type type; + unsigned int level; + unsigned int coherency_line_size; + unsigned int number_of_sets; + unsigned int ways_of_associativity; + unsigned int physical_line_partition; + unsigned int size; + cpumask_t shared_cpu_map; + unsigned int attributes; + void *fw_token; + bool disable_sysfs; + void *priv; +}; + +struct cpu_cacheinfo { + struct cacheinfo *info_list; + unsigned int per_cpu_data_slice_size; + unsigned int num_levels; + unsigned int num_leaves; + bool cpu_map_populated; + bool early_ci_levels; +}; + +struct alloc_context { + struct zonelist *zonelist; + nodemask_t *nodemask; + struct zoneref *preferred_zoneref; + int migratetype; + enum zone_type highest_zoneidx; + bool spread_dirty_pages; +}; + +typedef int fpi_t; + +enum rmqueue_mode { + RMQUEUE_NORMAL = 0, + RMQUEUE_CMA = 1, + RMQUEUE_CLAIM = 2, + RMQUEUE_STEAL = 3, +}; + +struct xa_node { + unsigned char shift; + unsigned char offset; + unsigned char count; + unsigned char nr_values; + struct xa_node *parent; + struct xarray *array; + union { + struct list_head private_list; + struct callback_head callback_head; + }; + void *slots[64]; + union { + long unsigned int tags[3]; + long unsigned int marks[3]; + }; +}; + +typedef void (*xa_update_node_t)(struct xa_node *); + +struct xa_state { + struct xarray *xa; + long unsigned int xa_index; + unsigned char xa_shift; + unsigned char xa_sibs; + unsigned char xa_offset; + unsigned char xa_pad; + struct xa_node *xa_node; + struct xa_node *xa_alloc; + xa_update_node_t xa_update; + struct list_lru *xa_lru; +}; + +struct kobj_attribute { + struct attribute attr; + ssize_t (*show)(struct kobject *, struct kobj_attribute *, char *); + ssize_t (*store)(struct kobject *, struct kobj_attribute *, const char *, size_t); +}; + +enum transparent_hugepage_flag { + TRANSPARENT_HUGEPAGE_UNSUPPORTED = 0, + TRANSPARENT_HUGEPAGE_FLAG = 1, + TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG = 2, + TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG = 3, + TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG = 4, + TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG = 5, + TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG = 6, + TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG = 7, + TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG = 8, +}; + +enum objext_flags { + OBJEXTS_ALLOC_FAIL = 4, + __NR_OBJEXTS_FLAGS = 8, +}; + +enum mapping_flags { + AS_EIO = 0, + AS_ENOSPC = 1, + AS_MM_ALL_LOCKS = 2, + AS_UNEVICTABLE = 3, + AS_EXITING = 4, + AS_NO_WRITEBACK_TAGS = 5, + AS_RELEASE_ALWAYS = 6, + AS_STABLE_WRITES = 7, + AS_INACCESSIBLE = 8, + AS_FOLIO_ORDER_BITS = 5, + AS_FOLIO_ORDER_MIN = 16, + AS_FOLIO_ORDER_MAX = 21, +}; + +enum ttu_flags { + TTU_SPLIT_HUGE_PMD = 4, + TTU_IGNORE_MLOCK = 8, + TTU_SYNC = 16, + TTU_HWPOISON = 32, + TTU_BATCH_FLUSH = 64, + TTU_RMAP_LOCKED = 128, +}; + +enum sgp_type { + SGP_READ = 0, + SGP_NOALLOC = 1, + SGP_CACHE = 2, + SGP_WRITE = 3, + SGP_FALLOC = 4, +}; + +struct mm_slot { + struct hlist_node hash; + struct list_head mm_node; + struct mm_struct *mm; +}; + +enum scan_result { + SCAN_FAIL = 0, + SCAN_SUCCEED = 1, + SCAN_PMD_NULL = 2, + SCAN_PMD_NONE = 3, + SCAN_PMD_MAPPED = 4, + SCAN_EXCEED_NONE_PTE = 5, + SCAN_EXCEED_SWAP_PTE = 6, + SCAN_EXCEED_SHARED_PTE = 7, + SCAN_PTE_NON_PRESENT = 8, + SCAN_PTE_UFFD_WP = 9, + SCAN_PTE_MAPPED_HUGEPAGE = 10, + SCAN_PAGE_RO = 11, + SCAN_LACK_REFERENCED_PAGE = 12, + SCAN_PAGE_NULL = 13, + SCAN_SCAN_ABORT = 14, + SCAN_PAGE_COUNT = 15, + SCAN_PAGE_LRU = 16, + SCAN_PAGE_LOCK = 17, + SCAN_PAGE_ANON = 18, + SCAN_PAGE_COMPOUND = 19, + SCAN_ANY_PROCESS = 20, + SCAN_VMA_NULL = 21, + SCAN_VMA_CHECK = 22, + SCAN_ADDRESS_RANGE = 23, + SCAN_DEL_PAGE_LRU = 24, + SCAN_ALLOC_HUGE_PAGE_FAIL = 25, + SCAN_CGROUP_CHARGE_FAIL = 26, + SCAN_TRUNCATED = 27, + SCAN_PAGE_HAS_PRIVATE = 28, + SCAN_STORE_FAILED = 29, + SCAN_COPY_MC = 30, + SCAN_PAGE_FILLED = 31, +}; + +struct trace_event_raw_mm_khugepaged_scan_pmd { + struct trace_entry ent; + struct mm_struct *mm; + long unsigned int pfn; + bool writable; + int referenced; + int none_or_zero; + int status; + int unmapped; + char __data[0]; +}; + +struct trace_event_raw_mm_collapse_huge_page { + struct trace_entry ent; + struct mm_struct *mm; + int isolated; + int status; + char __data[0]; +}; + +struct trace_event_raw_mm_collapse_huge_page_isolate { + struct trace_entry ent; + long unsigned int pfn; + int none_or_zero; + int referenced; + bool writable; + int status; + char __data[0]; +}; + +struct trace_event_raw_mm_collapse_huge_page_swapin { + struct trace_entry ent; + struct mm_struct *mm; + int swapped_in; + int referenced; + int ret; + char __data[0]; +}; + +struct trace_event_raw_mm_khugepaged_scan_file { + struct trace_entry ent; + struct mm_struct *mm; + long unsigned int pfn; + u32 __data_loc_filename; + int present; + int swap; + int result; + char __data[0]; +}; + +struct trace_event_raw_mm_khugepaged_collapse_file { + struct trace_entry ent; + struct mm_struct *mm; + long unsigned int hpfn; + long unsigned int index; + long unsigned int addr; + bool is_shmem; + u32 __data_loc_filename; + int nr; + int result; + char __data[0]; +}; + +struct trace_event_data_offsets_mm_khugepaged_scan_pmd {}; + +struct trace_event_data_offsets_mm_collapse_huge_page {}; + +struct trace_event_data_offsets_mm_collapse_huge_page_isolate {}; + +struct trace_event_data_offsets_mm_collapse_huge_page_swapin {}; + +struct trace_event_data_offsets_mm_khugepaged_scan_file { + u32 filename; + const void *filename_ptr_; +}; + +struct trace_event_data_offsets_mm_khugepaged_collapse_file { + u32 filename; + const void *filename_ptr_; +}; + +typedef void (*btf_trace_mm_khugepaged_scan_pmd)(void *, struct mm_struct *, struct page *, bool, int, int, int, int); + +typedef void (*btf_trace_mm_collapse_huge_page)(void *, struct mm_struct *, int, int); + +typedef void (*btf_trace_mm_collapse_huge_page_isolate)(void *, struct page *, int, int, bool, int); + +typedef void (*btf_trace_mm_collapse_huge_page_swapin)(void *, struct mm_struct *, int, int, int); + +typedef void (*btf_trace_mm_khugepaged_scan_file)(void *, struct mm_struct *, struct folio *, struct file *, int, int, int); + +typedef void (*btf_trace_mm_khugepaged_collapse_file)(void *, struct mm_struct *, struct folio *, long unsigned int, long unsigned int, bool, struct file *, int, int); + +struct collapse_control { + bool is_khugepaged; + u32 node_load[1]; + nodemask_t alloc_nmask; +}; + +struct khugepaged_mm_slot { + struct mm_slot slot; +}; + +struct khugepaged_scan { + struct list_head mm_head; + struct khugepaged_mm_slot *mm_slot; + long unsigned int address; +}; + +struct file_lock_context { + spinlock_t flc_lock; + struct list_head flc_flock; + struct list_head flc_posix; + struct list_head flc_lease; +}; + +struct fsnotify_mark_connector { + spinlock_t lock; + unsigned char type; + unsigned char prio; + short unsigned int flags; + union { + void *obj; + struct fsnotify_mark_connector *destroy_next; + }; + struct hlist_head list; +}; + +struct fsnotify_sb_info { + struct fsnotify_mark_connector *sb_marks; + atomic_long_t watched_objects[3]; +}; + +struct file_lock_core { + struct file_lock_core *flc_blocker; + struct list_head flc_list; + struct hlist_node flc_link; + struct list_head flc_blocked_requests; + struct list_head flc_blocked_member; + fl_owner_t flc_owner; + unsigned int flc_flags; + unsigned char flc_type; + pid_t flc_pid; + int flc_link_cpu; + wait_queue_head_t flc_wait; + struct file *flc_file; +}; + +struct nlm_lockowner; + +struct nfs_lock_info { + u32 state; + struct nlm_lockowner *owner; + struct list_head list; +}; + +struct nfs4_lock_state; + +struct nfs4_lock_info { + struct nfs4_lock_state *owner; +}; + +struct file_lock_operations; + +struct lock_manager_operations; + +struct file_lock { + struct file_lock_core c; + loff_t fl_start; + loff_t fl_end; + const struct file_lock_operations *fl_ops; + const struct lock_manager_operations *fl_lmops; + union { + struct nfs_lock_info nfs_fl; + struct nfs4_lock_info nfs4_fl; + struct { + struct list_head link; + int state; + unsigned int debug_id; + } afs; + struct { + struct inode *inode; + } ceph; + } fl_u; +}; + +struct lease_manager_operations; + +struct file_lease { + struct file_lock_core c; + struct fasync_struct *fl_fasync; + long unsigned int fl_break_time; + long unsigned int fl_downgrade_time; + const struct lease_manager_operations *fl_lmops; +}; + +struct file_lock_operations { + void (*fl_copy_lock)(struct file_lock *, struct file_lock *); + void (*fl_release_private)(struct file_lock *); +}; + +struct lock_manager_operations { + void *lm_mod_owner; + fl_owner_t (*lm_get_owner)(fl_owner_t); + void (*lm_put_owner)(fl_owner_t); + void (*lm_notify)(struct file_lock *); + int (*lm_grant)(struct file_lock *, int); + bool (*lm_lock_expirable)(struct file_lock *); + void (*lm_expire_lock)(void); +}; + +struct lease_manager_operations { + bool (*lm_break)(struct file_lease *); + int (*lm_change)(struct file_lease *, int, struct list_head *); + void (*lm_setup)(struct file_lease *, void **); + bool (*lm_breaker_owns_lease)(struct file_lease *); +}; + +struct fd { + long unsigned int word; +}; + +typedef struct fd class_fd_t; + +struct simple_xattrs { + struct rb_root rb_root; + rwlock_t lock; +}; + +struct simple_xattr { + struct rb_node rb_node; + char *name; + size_t size; + char value[0]; +}; + +enum fsnotify_group_prio { + FSNOTIFY_PRIO_NORMAL = 0, + FSNOTIFY_PRIO_CONTENT = 1, + FSNOTIFY_PRIO_PRE_CONTENT = 2, + __FSNOTIFY_PRIO_NUM = 3, +}; + +enum fsnotify_data_type { + FSNOTIFY_EVENT_NONE = 0, + FSNOTIFY_EVENT_PATH = 1, + FSNOTIFY_EVENT_INODE = 2, + FSNOTIFY_EVENT_DENTRY = 3, + FSNOTIFY_EVENT_ERROR = 4, +}; + +enum fsnotify_iter_type { + FSNOTIFY_ITER_TYPE_INODE = 0, + FSNOTIFY_ITER_TYPE_VFSMOUNT = 1, + FSNOTIFY_ITER_TYPE_SB = 2, + FSNOTIFY_ITER_TYPE_PARENT = 3, + FSNOTIFY_ITER_TYPE_INODE2 = 4, + FSNOTIFY_ITER_TYPE_COUNT = 5, +}; + +enum audit_ntp_type { + AUDIT_NTP_OFFSET = 0, + AUDIT_NTP_FREQ = 1, + AUDIT_NTP_STATUS = 2, + AUDIT_NTP_TAI = 3, + AUDIT_NTP_TICK = 4, + AUDIT_NTP_ADJUST = 5, + AUDIT_NTP_NVALS = 6, +}; + +struct xattr_name { + char name[256]; +}; + +struct xattr_ctx { + union { + const void *cvalue; + void *value; + }; + void *kvalue; + size_t size; + struct xattr_name *kname; + unsigned int flags; +}; + +enum kernel_read_file_id { + READING_UNKNOWN = 0, + READING_FIRMWARE = 1, + READING_MODULE = 2, + READING_KEXEC_IMAGE = 3, + READING_KEXEC_INITRAMFS = 4, + READING_POLICY = 5, + READING_X509_CERTIFICATE = 6, + READING_MAX_ID = 7, +}; + +struct dnotify_struct { + struct dnotify_struct *dn_next; + __u32 dn_mask; + int dn_fd; + struct file *dn_filp; + fl_owner_t dn_owner; +}; + +struct fsnotify_group; + +struct fsnotify_iter_info; + +struct fsnotify_mark; + +struct fsnotify_event; + +struct fsnotify_ops { + int (*handle_event)(struct fsnotify_group *, u32, const void *, int, struct inode *, const struct qstr *, u32, struct fsnotify_iter_info *); + int (*handle_inode_event)(struct fsnotify_mark *, u32, struct inode *, struct inode *, const struct qstr *, u32); + void (*free_group_priv)(struct fsnotify_group *); + void (*freeing_mark)(struct fsnotify_mark *, struct fsnotify_group *); + void (*free_event)(struct fsnotify_group *, struct fsnotify_event *); + void (*free_mark)(struct fsnotify_mark *); +}; + +struct inotify_group_private_data { + spinlock_t idr_lock; + struct idr idr; + struct ucounts *ucounts; +}; + +struct fanotify_group_private_data { + struct hlist_head *merge_hash; + struct list_head access_list; + wait_queue_head_t access_waitq; + int flags; + int f_flags; + struct ucounts *ucounts; + mempool_t error_events_pool; +}; + +struct fsnotify_group { + const struct fsnotify_ops *ops; + refcount_t refcnt; + spinlock_t notification_lock; + struct list_head notification_list; + wait_queue_head_t notification_waitq; + unsigned int q_len; + unsigned int max_events; + enum fsnotify_group_prio priority; + bool shutdown; + int flags; + unsigned int owner_flags; + struct mutex mark_mutex; + atomic_t user_waits; + struct list_head marks_list; + struct fasync_struct *fsn_fa; + struct fsnotify_event *overflow_event; + struct mem_cgroup *memcg; + union { + void *private; + struct inotify_group_private_data inotify_data; + struct fanotify_group_private_data fanotify_data; + }; +}; + +struct fsnotify_iter_info { + struct fsnotify_mark *marks[5]; + struct fsnotify_group *current_group; + unsigned int report_mask; + int srcu_idx; +}; + +struct fsnotify_mark { + __u32 mask; + refcount_t refcnt; + struct fsnotify_group *group; + struct list_head g_list; + spinlock_t lock; + struct hlist_node obj_list; + struct fsnotify_mark_connector *connector; + __u32 ignore_mask; + unsigned int flags; +}; + +struct fsnotify_event { + struct list_head list; +}; + +enum fsnotify_obj_type { + FSNOTIFY_OBJ_TYPE_ANY = -1, + FSNOTIFY_OBJ_TYPE_INODE = 0, + FSNOTIFY_OBJ_TYPE_VFSMOUNT = 1, + FSNOTIFY_OBJ_TYPE_SB = 2, + FSNOTIFY_OBJ_TYPE_COUNT = 3, + FSNOTIFY_OBJ_TYPE_DETACHED = 3, +}; + +struct dnotify_mark { + struct fsnotify_mark fsn_mark; + struct dnotify_struct *dn; +}; + +typedef __kernel_long_t __kernel_off_t; + +struct srcu_notifier_head { + struct mutex mutex; + struct srcu_usage srcuu; + struct srcu_struct srcu; + struct notifier_block *head; +}; + +struct flock { + short int l_type; + short int l_whence; + __kernel_off_t l_start; + __kernel_off_t l_len; + __kernel_pid_t l_pid; +}; + +struct flock64 { + short int l_type; + short int l_whence; + __kernel_loff_t l_start; + __kernel_loff_t l_len; + __kernel_pid_t l_pid; +}; + +struct trace_event_raw_locks_get_lock_context { + struct trace_entry ent; + long unsigned int i_ino; + dev_t s_dev; + unsigned char type; + struct file_lock_context *ctx; + char __data[0]; +}; + +struct trace_event_raw_filelock_lock { + struct trace_entry ent; + struct file_lock *fl; + long unsigned int i_ino; + dev_t s_dev; + struct file_lock_core *blocker; + fl_owner_t owner; + unsigned int pid; + unsigned int flags; + unsigned char type; + loff_t fl_start; + loff_t fl_end; + int ret; + char __data[0]; +}; + +struct trace_event_raw_filelock_lease { + struct trace_entry ent; + struct file_lease *fl; + long unsigned int i_ino; + dev_t s_dev; + struct file_lock_core *blocker; + fl_owner_t owner; + unsigned int flags; + unsigned char type; + long unsigned int break_time; + long unsigned int downgrade_time; + char __data[0]; +}; + +struct trace_event_raw_generic_add_lease { + struct trace_entry ent; + long unsigned int i_ino; + int wcount; + int rcount; + int icount; + dev_t s_dev; + fl_owner_t owner; + unsigned int flags; + unsigned char type; + char __data[0]; +}; + +struct trace_event_raw_leases_conflict { + struct trace_entry ent; + void *lease; + void *breaker; + unsigned int l_fl_flags; + unsigned int b_fl_flags; + unsigned char l_fl_type; + unsigned char b_fl_type; + bool conflict; + char __data[0]; +}; + +struct trace_event_data_offsets_locks_get_lock_context {}; + +struct trace_event_data_offsets_filelock_lock {}; + +struct trace_event_data_offsets_filelock_lease {}; + +struct trace_event_data_offsets_generic_add_lease {}; + +struct trace_event_data_offsets_leases_conflict {}; + +typedef void (*btf_trace_locks_get_lock_context)(void *, struct inode *, int, struct file_lock_context *); + +typedef void (*btf_trace_posix_lock_inode)(void *, struct inode *, struct file_lock *, int); + +typedef void (*btf_trace_fcntl_setlk)(void *, struct inode *, struct file_lock *, int); + +typedef void (*btf_trace_locks_remove_posix)(void *, struct inode *, struct file_lock *, int); + +typedef void (*btf_trace_flock_lock_inode)(void *, struct inode *, struct file_lock *, int); + +typedef void (*btf_trace_break_lease_noblock)(void *, struct inode *, struct file_lease *); + +typedef void (*btf_trace_break_lease_block)(void *, struct inode *, struct file_lease *); + +typedef void (*btf_trace_break_lease_unblock)(void *, struct inode *, struct file_lease *); + +typedef void (*btf_trace_generic_delete_lease)(void *, struct inode *, struct file_lease *); + +typedef void (*btf_trace_time_out_leases)(void *, struct inode *, struct file_lease *); + +typedef void (*btf_trace_generic_add_lease)(void *, struct inode *, struct file_lease *); + +typedef void (*btf_trace_leases_conflict)(void *, bool, struct file_lease *, struct file_lease *); + +struct file_lock_list_struct { + spinlock_t lock; + struct hlist_head hlist; +}; + +enum proc_hidepid { + HIDEPID_OFF = 0, + HIDEPID_NO_ACCESS = 1, + HIDEPID_INVISIBLE = 2, + HIDEPID_NOT_PTRACEABLE = 4, +}; + +enum proc_pidonly { + PROC_PIDONLY_OFF = 0, + PROC_PIDONLY_ON = 1, +}; + +struct proc_fs_info { + struct pid_namespace *pid_ns; + struct dentry *proc_self; + struct dentry *proc_thread_self; + kgid_t pid_gid; + enum proc_hidepid hide_pid; + enum proc_pidonly pidonly; + struct callback_head rcu; +}; + +struct locks_iterator { + int li_cpu; + loff_t li_pos; +}; + +typedef u32 nlink_t; + +enum { + PROC_ENTRY_PERMANENT = 1, + PROC_ENTRY_proc_read_iter = 2, + PROC_ENTRY_proc_compat_ioctl = 4, + PROC_ENTRY_proc_lseek = 8, +}; + +struct proc_ops { + unsigned int proc_flags; + int (*proc_open)(struct inode *, struct file *); + ssize_t (*proc_read)(struct file *, char *, size_t, loff_t *); + ssize_t (*proc_read_iter)(struct kiocb *, struct iov_iter *); + ssize_t (*proc_write)(struct file *, const char *, size_t, loff_t *); + loff_t (*proc_lseek)(struct file *, loff_t, int); + int (*proc_release)(struct inode *, struct file *); + __poll_t (*proc_poll)(struct file *, struct poll_table_struct *); + long int (*proc_ioctl)(struct file *, unsigned int, long unsigned int); + int (*proc_mmap)(struct file *, struct vm_area_struct *); + long unsigned int (*proc_get_unmapped_area)(struct file *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); +}; + +typedef int (*proc_write_t)(struct file *, char *, size_t); + +struct proc_dir_entry { + atomic_t in_use; + refcount_t refcnt; + struct list_head pde_openers; + spinlock_t pde_unload_lock; + struct completion *pde_unload_completion; + const struct inode_operations *proc_iops; + union { + const struct proc_ops *proc_ops; + const struct file_operations *proc_dir_ops; + }; + const struct dentry_operations *proc_dops; + union { + const struct seq_operations *seq_ops; + int (*single_show)(struct seq_file *, void *); + }; + proc_write_t write; + void *data; + unsigned int state_size; + unsigned int low_ino; + nlink_t nlink; + kuid_t uid; + kgid_t gid; + loff_t size; + struct proc_dir_entry *parent; + struct rb_root subdir; + struct rb_node subdir_node; + char *name; + umode_t mode; + u8 flags; + u8 namelen; + char inline_name[0]; +}; + +struct kernel_stat { + long unsigned int irqs_sum; + unsigned int softirqs[10]; +}; + +enum { + TCA_FLOWER_KEY_FLAGS_IS_FRAGMENT = 1, + TCA_FLOWER_KEY_FLAGS_FRAG_IS_FIRST = 2, + TCA_FLOWER_KEY_FLAGS_TUNNEL_CSUM = 4, + TCA_FLOWER_KEY_FLAGS_TUNNEL_DONT_FRAGMENT = 8, + TCA_FLOWER_KEY_FLAGS_TUNNEL_OAM = 16, + TCA_FLOWER_KEY_FLAGS_TUNNEL_CRIT_OPT = 32, + __TCA_FLOWER_KEY_FLAGS_MAX = 33, +}; + +enum flow_dissector_key_id { + FLOW_DISSECTOR_KEY_CONTROL = 0, + FLOW_DISSECTOR_KEY_BASIC = 1, + FLOW_DISSECTOR_KEY_IPV4_ADDRS = 2, + FLOW_DISSECTOR_KEY_IPV6_ADDRS = 3, + FLOW_DISSECTOR_KEY_PORTS = 4, + FLOW_DISSECTOR_KEY_PORTS_RANGE = 5, + FLOW_DISSECTOR_KEY_ICMP = 6, + FLOW_DISSECTOR_KEY_ETH_ADDRS = 7, + FLOW_DISSECTOR_KEY_TIPC = 8, + FLOW_DISSECTOR_KEY_ARP = 9, + FLOW_DISSECTOR_KEY_VLAN = 10, + FLOW_DISSECTOR_KEY_FLOW_LABEL = 11, + FLOW_DISSECTOR_KEY_GRE_KEYID = 12, + FLOW_DISSECTOR_KEY_MPLS_ENTROPY = 13, + FLOW_DISSECTOR_KEY_ENC_KEYID = 14, + FLOW_DISSECTOR_KEY_ENC_IPV4_ADDRS = 15, + FLOW_DISSECTOR_KEY_ENC_IPV6_ADDRS = 16, + FLOW_DISSECTOR_KEY_ENC_CONTROL = 17, + FLOW_DISSECTOR_KEY_ENC_PORTS = 18, + FLOW_DISSECTOR_KEY_MPLS = 19, + FLOW_DISSECTOR_KEY_TCP = 20, + FLOW_DISSECTOR_KEY_IP = 21, + FLOW_DISSECTOR_KEY_CVLAN = 22, + FLOW_DISSECTOR_KEY_ENC_IP = 23, + FLOW_DISSECTOR_KEY_ENC_OPTS = 24, + FLOW_DISSECTOR_KEY_META = 25, + FLOW_DISSECTOR_KEY_CT = 26, + FLOW_DISSECTOR_KEY_HASH = 27, + FLOW_DISSECTOR_KEY_NUM_OF_VLANS = 28, + FLOW_DISSECTOR_KEY_PPPOE = 29, + FLOW_DISSECTOR_KEY_L2TPV3 = 30, + FLOW_DISSECTOR_KEY_CFM = 31, + FLOW_DISSECTOR_KEY_IPSEC = 32, + FLOW_DISSECTOR_KEY_MAX = 33, +}; + +enum skb_ext_id { + SKB_EXT_BRIDGE_NF = 0, + SKB_EXT_SEC_PATH = 1, + SKB_EXT_NUM = 2, +}; + +struct seq_net_private { + struct net *net; + netns_tracker ns_tracker; +}; + +struct pernet_operations { + struct list_head list; + int (*init)(struct net *); + void (*pre_exit)(struct net *); + void (*exit)(struct net *); + void (*exit_batch)(struct list_head *); + void (*exit_batch_rtnl)(struct list_head *, struct list_head *); + unsigned int * const id; + const size_t size; +}; + +union proc_op { + int (*proc_get_link)(struct dentry *, struct path *); + int (*proc_show)(struct seq_file *, struct pid_namespace *, struct pid *, struct task_struct *); + int lsmid; +}; + +struct proc_inode { + struct pid *pid; + unsigned int fd; + union proc_op op; + struct proc_dir_entry *pde; + struct ctl_table_header *sysctl; + struct ctl_table *sysctl_entry; + struct hlist_node sibling_inodes; + const struct proc_ns_operations *ns_ops; + struct inode vfs_inode; +}; + +enum wb_stat_item { + WB_RECLAIMABLE = 0, + WB_WRITEBACK = 1, + WB_DIRTIED = 2, + WB_WRITTEN = 3, + NR_WB_STAT_ITEMS = 4, +}; + +struct config_group; + +struct config_item_type; + +struct config_item { + char *ci_name; + char ci_namebuf[20]; + struct kref ci_kref; + struct list_head ci_entry; + struct config_item *ci_parent; + struct config_group *ci_group; + const struct config_item_type *ci_type; + struct dentry *ci_dentry; +}; + +struct configfs_subsystem; + +struct config_group { + struct config_item cg_item; + struct list_head cg_children; + struct configfs_subsystem *cg_subsys; + struct list_head default_groups; + struct list_head group_entry; +}; + +struct configfs_item_operations; + +struct configfs_group_operations; + +struct configfs_attribute; + +struct configfs_bin_attribute; + +struct config_item_type { + struct module *ct_owner; + struct configfs_item_operations *ct_item_ops; + struct configfs_group_operations *ct_group_ops; + struct configfs_attribute **ct_attrs; + struct configfs_bin_attribute **ct_bin_attrs; +}; + +struct configfs_item_operations { + void (*release)(struct config_item *); + int (*allow_link)(struct config_item *, struct config_item *); + void (*drop_link)(struct config_item *, struct config_item *); +}; + +struct configfs_group_operations { + struct config_item * (*make_item)(struct config_group *, const char *); + struct config_group * (*make_group)(struct config_group *, const char *); + void (*disconnect_notify)(struct config_group *, struct config_item *); + void (*drop_item)(struct config_group *, struct config_item *); + bool (*is_visible)(struct config_item *, struct configfs_attribute *, int); + bool (*is_bin_visible)(struct config_item *, struct configfs_bin_attribute *, int); +}; + +struct configfs_attribute { + const char *ca_name; + struct module *ca_owner; + umode_t ca_mode; + ssize_t (*show)(struct config_item *, char *); + ssize_t (*store)(struct config_item *, const char *, size_t); +}; + +struct configfs_bin_attribute { + struct configfs_attribute cb_attr; + void *cb_private; + size_t cb_max_size; + ssize_t (*read)(struct config_item *, void *, size_t); + ssize_t (*write)(struct config_item *, const void *, size_t); +}; + +struct configfs_subsystem { + struct config_group su_group; + struct mutex su_mutex; +}; + +struct configfs_fragment { + atomic_t frag_count; + struct rw_semaphore frag_sem; + bool frag_dead; +}; + +struct configfs_dirent { + atomic_t s_count; + int s_dependent_count; + struct list_head s_sibling; + struct list_head s_children; + int s_links; + void *s_element; + int s_type; + umode_t s_mode; + struct dentry *s_dentry; + struct iattr *s_iattr; + struct configfs_fragment *s_frag; +}; + +typedef __kernel_ulong_t ino_t; + +enum netfs_io_source { + NETFS_SOURCE_UNKNOWN = 0, + NETFS_FILL_WITH_ZEROES = 1, + NETFS_DOWNLOAD_FROM_SERVER = 2, + NETFS_READ_FROM_CACHE = 3, + NETFS_INVALID_READ = 4, + NETFS_UPLOAD_TO_SERVER = 5, + NETFS_WRITE_TO_CACHE = 6, + NETFS_INVALID_WRITE = 7, +} __attribute__((mode(byte))); + +typedef void (*netfs_io_terminated_t)(void *, ssize_t, bool); + +struct netfs_request_ops; + +struct fscache_cookie; + +struct netfs_inode { + struct inode inode; + const struct netfs_request_ops *ops; + struct fscache_cookie *cache; + struct mutex wb_lock; + loff_t remote_i_size; + loff_t zero_point; + atomic_t io_count; + long unsigned int flags; +}; + +struct netfs_io_request; + +struct netfs_io_subrequest; + +struct netfs_io_stream; + +struct netfs_request_ops { + mempool_t *request_pool; + mempool_t *subrequest_pool; + int (*init_request)(struct netfs_io_request *, struct file *); + void (*free_request)(struct netfs_io_request *); + void (*free_subrequest)(struct netfs_io_subrequest *); + void (*expand_readahead)(struct netfs_io_request *); + int (*prepare_read)(struct netfs_io_subrequest *); + void (*issue_read)(struct netfs_io_subrequest *); + bool (*is_still_valid)(struct netfs_io_request *); + int (*check_write_begin)(struct file *, loff_t, unsigned int, struct folio **, void **); + void (*done)(struct netfs_io_request *); + void (*update_i_size)(struct inode *, loff_t); + void (*post_modify)(struct inode *); + void (*begin_writeback)(struct netfs_io_request *); + void (*prepare_write)(struct netfs_io_subrequest *); + void (*issue_write)(struct netfs_io_subrequest *); + void (*retry_request)(struct netfs_io_request *, struct netfs_io_stream *); + void (*invalidate_cache)(struct netfs_io_request *); +}; + +enum fscache_cookie_state { + FSCACHE_COOKIE_STATE_QUIESCENT = 0, + FSCACHE_COOKIE_STATE_LOOKING_UP = 1, + FSCACHE_COOKIE_STATE_CREATING = 2, + FSCACHE_COOKIE_STATE_ACTIVE = 3, + FSCACHE_COOKIE_STATE_INVALIDATING = 4, + FSCACHE_COOKIE_STATE_FAILED = 5, + FSCACHE_COOKIE_STATE_LRU_DISCARDING = 6, + FSCACHE_COOKIE_STATE_WITHDRAWING = 7, + FSCACHE_COOKIE_STATE_RELINQUISHING = 8, + FSCACHE_COOKIE_STATE_DROPPED = 9, +} __attribute__((mode(byte))); + +struct fscache_volume; + +struct fscache_cookie { + refcount_t ref; + atomic_t n_active; + atomic_t n_accesses; + unsigned int debug_id; + unsigned int inval_counter; + spinlock_t lock; + struct fscache_volume *volume; + void *cache_priv; + struct hlist_bl_node hash_link; + struct list_head proc_link; + struct list_head commit_link; + struct work_struct work; + loff_t object_size; + long unsigned int unused_at; + long unsigned int flags; + enum fscache_cookie_state state; + u8 advice; + u8 key_len; + u8 aux_len; + u32 key_hash; + union { + void *key; + u8 inline_key[16]; + }; + union { + void *aux; + u8 inline_aux[8]; + }; +}; + +struct netfs_group { + refcount_t ref; + void (*free)(struct netfs_group *); +}; + +struct netfs_io_stream { + struct netfs_io_subrequest *construct; + size_t sreq_max_len; + unsigned int sreq_max_segs; + unsigned int submit_off; + unsigned int submit_len; + unsigned int submit_extendable_to; + void (*prepare_write)(struct netfs_io_subrequest *); + void (*issue_write)(struct netfs_io_subrequest *); + struct list_head subrequests; + struct netfs_io_subrequest *front; + long long unsigned int collected_to; + size_t transferred; + enum netfs_io_source source; + short unsigned int error; + unsigned char stream_nr; + bool avail; + bool active; + bool need_retry; + bool failed; + bool transferred_valid; +}; + +struct netfs_io_subrequest { + struct netfs_io_request *rreq; + struct work_struct work; + struct list_head rreq_link; + struct iov_iter io_iter; + long long unsigned int start; + size_t len; + size_t transferred; + size_t consumed; + size_t prev_donated; + size_t next_donated; + refcount_t ref; + short int error; + short unsigned int debug_index; + unsigned int nr_segs; + enum netfs_io_source source; + unsigned char stream_nr; + unsigned char curr_folioq_slot; + unsigned char curr_folio_order; + struct folio_queue *curr_folioq; + long unsigned int flags; +}; + +struct netfs_cache_ops; + +struct netfs_cache_resources { + const struct netfs_cache_ops *ops; + void *cache_priv; + void *cache_priv2; + unsigned int debug_id; + unsigned int inval_counter; +}; + +enum netfs_read_from_hole { + NETFS_READ_HOLE_IGNORE = 0, + NETFS_READ_HOLE_CLEAR = 1, + NETFS_READ_HOLE_FAIL = 2, +}; + +struct netfs_cache_ops { + void (*end_operation)(struct netfs_cache_resources *); + int (*read)(struct netfs_cache_resources *, loff_t, struct iov_iter *, enum netfs_read_from_hole, netfs_io_terminated_t, void *); + int (*write)(struct netfs_cache_resources *, loff_t, struct iov_iter *, netfs_io_terminated_t, void *); + void (*issue_write)(struct netfs_io_subrequest *); + void (*expand_readahead)(struct netfs_cache_resources *, long long unsigned int *, long long unsigned int *, long long unsigned int); + enum netfs_io_source (*prepare_read)(struct netfs_io_subrequest *, long long unsigned int); + void (*prepare_write_subreq)(struct netfs_io_subrequest *); + int (*prepare_write)(struct netfs_cache_resources *, loff_t *, size_t *, size_t, loff_t, bool); + enum netfs_io_source (*prepare_ondemand_read)(struct netfs_cache_resources *, loff_t, size_t *, loff_t, long unsigned int *, ino_t); + int (*query_occupancy)(struct netfs_cache_resources *, loff_t, size_t, size_t, loff_t *, size_t *); +}; + +enum netfs_io_origin { + NETFS_READAHEAD = 0, + NETFS_READPAGE = 1, + NETFS_READ_GAPS = 2, + NETFS_READ_FOR_WRITE = 3, + NETFS_DIO_READ = 4, + NETFS_WRITEBACK = 5, + NETFS_WRITETHROUGH = 6, + NETFS_UNBUFFERED_WRITE = 7, + NETFS_DIO_WRITE = 8, + NETFS_PGPRIV2_COPY_TO_CACHE = 9, + nr__netfs_io_origin = 10, +} __attribute__((mode(byte))); + +struct netfs_io_request { + union { + struct work_struct work; + struct callback_head rcu; + }; + struct inode *inode; + struct address_space *mapping; + struct kiocb *iocb; + struct netfs_cache_resources cache_resources; + struct readahead_control *ractl; + struct list_head proc_link; + struct list_head subrequests; + struct netfs_io_stream io_streams[2]; + struct netfs_group *group; + struct folio_queue *buffer; + struct folio_queue *buffer_tail; + struct iov_iter iter; + struct iov_iter io_iter; + void *netfs_priv; + void *netfs_priv2; + struct bio_vec *direct_bv; + unsigned int direct_bv_count; + unsigned int debug_id; + unsigned int rsize; + unsigned int wsize; + atomic_t subreq_counter; + unsigned int nr_group_rel; + spinlock_t lock; + atomic_t nr_outstanding; + long long unsigned int submitted; + long long unsigned int len; + size_t transferred; + long int error; + enum netfs_io_origin origin; + bool direct_bv_unpin; + u8 buffer_head_slot; + u8 buffer_tail_slot; + long long unsigned int i_size; + long long unsigned int start; + atomic64_t issued_to; + long long unsigned int collected_to; + long long unsigned int cleaned_to; + long unsigned int no_unlock_folio; + size_t prev_donated; + refcount_t ref; + long unsigned int flags; + const struct netfs_request_ops *netfs_ops; + void (*cleanup)(struct netfs_io_request *); +}; + +enum fscache_want_state { + FSCACHE_WANT_PARAMS = 0, + FSCACHE_WANT_WRITE = 1, + FSCACHE_WANT_READ = 2, +}; + +struct fscache_cache; + +struct fscache_volume { + refcount_t ref; + atomic_t n_cookies; + atomic_t n_accesses; + unsigned int debug_id; + unsigned int key_hash; + u8 *key; + struct list_head proc_link; + struct hlist_bl_node hash_link; + struct work_struct work; + struct fscache_cache *cache; + void *cache_priv; + spinlock_t lock; + long unsigned int flags; + u8 coherency_len; + u8 coherency[0]; +}; + +enum fscache_cache_state { + FSCACHE_CACHE_IS_NOT_PRESENT = 0, + FSCACHE_CACHE_IS_PREPARING = 1, + FSCACHE_CACHE_IS_ACTIVE = 2, + FSCACHE_CACHE_GOT_IOERROR = 3, + FSCACHE_CACHE_IS_WITHDRAWN = 4, +}; + +struct fscache_cache_ops; + +struct fscache_cache { + const struct fscache_cache_ops *ops; + struct list_head cache_link; + void *cache_priv; + refcount_t ref; + atomic_t n_volumes; + atomic_t n_accesses; + atomic_t object_count; + unsigned int debug_id; + enum fscache_cache_state state; + char *name; +}; + +struct fscache_cache_ops { + const char *name; + void (*acquire_volume)(struct fscache_volume *); + void (*free_volume)(struct fscache_volume *); + bool (*lookup_cookie)(struct fscache_cookie *); + void (*withdraw_cookie)(struct fscache_cookie *); + void (*resize_cookie)(struct netfs_cache_resources *, loff_t); + bool (*invalidate_cookie)(struct fscache_cookie *); + bool (*begin_operation)(struct netfs_cache_resources *, enum fscache_want_state); + void (*prepare_to_write)(struct fscache_cookie *); +}; + +struct wait_bit_key { + void *flags; + int bit_nr; + long unsigned int timeout; +}; + +struct wait_bit_queue_entry { + struct wait_bit_key key; + struct wait_queue_entry wq_entry; +}; + +enum fscache_access_trace { + fscache_access_acquire_volume = 0, + fscache_access_acquire_volume_end = 1, + fscache_access_cache_pin = 2, + fscache_access_cache_unpin = 3, + fscache_access_invalidate_cookie = 4, + fscache_access_invalidate_cookie_end = 5, + fscache_access_io_end = 6, + fscache_access_io_not_live = 7, + fscache_access_io_read = 8, + fscache_access_io_resize = 9, + fscache_access_io_wait = 10, + fscache_access_io_write = 11, + fscache_access_lookup_cookie = 12, + fscache_access_lookup_cookie_end = 13, + fscache_access_lookup_cookie_end_failed = 14, + fscache_access_relinquish_volume = 15, + fscache_access_relinquish_volume_end = 16, + fscache_access_unlive = 17, +}; + +struct fscache_write_request { + struct netfs_cache_resources cache_resources; + struct address_space *mapping; + loff_t start; + size_t len; + bool set_bits; + bool using_pgpriv2; + netfs_io_terminated_t term_func; + void *term_func_priv; +}; + +typedef __u16 __le16; + +typedef __u64 __le64; + +typedef void (*rcu_callback_t)(struct callback_head *); + +struct request; + +struct rq_list { + struct request *head; + struct request *tail; +}; + +struct blk_plug { + struct rq_list mq_list; + struct rq_list cached_rqs; + u64 cur_ktime; + short unsigned int nr_ios; + short unsigned int rq_count; + bool multiple_queues; + bool has_elevator; + struct list_head cb_list; +}; + +typedef unsigned int blk_mode_t; + +struct block_device_operations; + +struct timer_rand_state; + +struct disk_events; + +struct badblocks; + +struct blk_independent_access_ranges; + +struct gendisk { + int major; + int first_minor; + int minors; + char disk_name[32]; + short unsigned int events; + short unsigned int event_flags; + struct xarray part_tbl; + struct block_device *part0; + const struct block_device_operations *fops; + struct request_queue *queue; + void *private_data; + struct bio_set bio_split; + int flags; + long unsigned int state; + struct mutex open_mutex; + unsigned int open_partitions; + struct backing_dev_info *bdi; + struct kobject queue_kobj; + struct kobject *slave_dir; + struct list_head slave_bdevs; + struct timer_rand_state *random; + atomic_t sync_io; + struct disk_events *ev; + int node_id; + struct badblocks *bb; + struct lockdep_map lockdep_map; + u64 diskseq; + blk_mode_t open_mode; + struct blk_independent_access_ranges *ia_ranges; +}; + +typedef unsigned int blk_features_t; + +typedef unsigned int blk_flags_t; + +enum blk_integrity_checksum { + BLK_INTEGRITY_CSUM_NONE = 0, + BLK_INTEGRITY_CSUM_IP = 1, + BLK_INTEGRITY_CSUM_CRC = 2, + BLK_INTEGRITY_CSUM_CRC64 = 3, +} __attribute__((mode(byte))); + +struct blk_integrity { + unsigned char flags; + enum blk_integrity_checksum csum_type; + unsigned char tuple_size; + unsigned char pi_offset; + unsigned char interval_exp; + unsigned char tag_size; +}; + +struct queue_limits { + blk_features_t features; + blk_flags_t flags; + long unsigned int seg_boundary_mask; + long unsigned int virt_boundary_mask; + unsigned int max_hw_sectors; + unsigned int max_dev_sectors; + unsigned int chunk_sectors; + unsigned int max_sectors; + unsigned int max_user_sectors; + unsigned int max_segment_size; + unsigned int physical_block_size; + unsigned int logical_block_size; + unsigned int alignment_offset; + unsigned int io_min; + unsigned int io_opt; + unsigned int max_discard_sectors; + unsigned int max_hw_discard_sectors; + unsigned int max_user_discard_sectors; + unsigned int max_secure_erase_sectors; + unsigned int max_write_zeroes_sectors; + unsigned int max_zone_append_sectors; + unsigned int discard_granularity; + unsigned int discard_alignment; + unsigned int zone_write_granularity; + unsigned int atomic_write_hw_max; + unsigned int atomic_write_max_sectors; + unsigned int atomic_write_hw_boundary; + unsigned int atomic_write_boundary_sectors; + unsigned int atomic_write_hw_unit_min; + unsigned int atomic_write_unit_min; + unsigned int atomic_write_hw_unit_max; + unsigned int atomic_write_unit_max; + short unsigned int max_segments; + short unsigned int max_integrity_segments; + short unsigned int max_discard_segments; + unsigned int max_open_zones; + unsigned int max_active_zones; + unsigned int dma_alignment; + unsigned int dma_pad_mask; + struct blk_integrity integrity; +}; + +struct elevator_queue; + +struct blk_mq_ops; + +struct blk_mq_ctx; + +struct blk_queue_stats; + +struct rq_qos; + +struct blk_mq_tags; + +struct blk_flush_queue; + +struct throtl_data; + +struct blk_mq_tag_set; + +struct request_queue { + void *queuedata; + struct elevator_queue *elevator; + const struct blk_mq_ops *mq_ops; + struct blk_mq_ctx *queue_ctx; + long unsigned int queue_flags; + unsigned int rq_timeout; + unsigned int queue_depth; + refcount_t refs; + unsigned int nr_hw_queues; + struct xarray hctx_table; + struct percpu_ref q_usage_counter; + struct lock_class_key io_lock_cls_key; + struct lockdep_map io_lockdep_map; + struct lock_class_key q_lock_cls_key; + struct lockdep_map q_lockdep_map; + struct request *last_merge; + spinlock_t queue_lock; + int quiesce_depth; + struct gendisk *disk; + struct kobject *mq_kobj; + struct queue_limits limits; + atomic_t pm_only; + struct blk_queue_stats *stats; + struct rq_qos *rq_qos; + struct mutex rq_qos_mutex; + int id; + long unsigned int nr_requests; + struct timer_list timeout; + struct work_struct timeout_work; + atomic_t nr_active_requests_shared_tags; + struct blk_mq_tags *sched_shared_tags; + struct list_head icq_list; + long unsigned int blkcg_pols[1]; + struct blkcg_gq *root_blkg; + struct list_head blkg_list; + struct mutex blkcg_mutex; + int node; + spinlock_t requeue_lock; + struct list_head requeue_list; + struct delayed_work requeue_work; + struct blk_flush_queue *fq; + struct list_head flush_list; + struct mutex sysfs_lock; + struct mutex sysfs_dir_lock; + struct mutex limits_lock; + struct list_head unused_hctx_list; + spinlock_t unused_hctx_lock; + int mq_freeze_depth; + struct throtl_data *td; + struct callback_head callback_head; + wait_queue_head_t mq_freeze_wq; + struct mutex mq_freeze_lock; + struct blk_mq_tag_set *tag_set; + struct list_head tag_set_list; + struct dentry *debugfs_dir; + struct dentry *sched_debugfs_dir; + struct dentry *rqos_debugfs_dir; + struct mutex debugfs_mutex; + bool mq_sysfs_init_done; +}; + +struct fstrim_range { + __u64 start; + __u64 len; + __u64 minlen; +}; + +struct buffer_head; + +typedef void bh_end_io_t(struct buffer_head *, int); + +struct buffer_head { + long unsigned int b_state; + struct buffer_head *b_this_page; + union { + struct page *b_page; + struct folio *b_folio; + }; + sector_t b_blocknr; + size_t b_size; + char *b_data; + struct block_device *b_bdev; + bh_end_io_t *b_end_io; + void *b_private; + struct list_head b_assoc_buffers; + struct address_space *b_assoc_map; + atomic_t b_count; + spinlock_t b_uptodate_lock; +}; + +struct io_comp_batch { + struct rq_list req_list; + bool need_ts; + void (*complete)(struct io_comp_batch *); +}; + +struct fiemap_extent; + +struct fiemap_extent_info { + unsigned int fi_flags; + unsigned int fi_extents_mapped; + unsigned int fi_extents_max; + struct fiemap_extent *fi_extents_start; +}; + +struct partition_meta_info { + char uuid[37]; + u8 volname[64]; +}; + +enum bh_state_bits { + BH_Uptodate = 0, + BH_Dirty = 1, + BH_Lock = 2, + BH_Req = 3, + BH_Mapped = 4, + BH_New = 5, + BH_Async_Read = 6, + BH_Async_Write = 7, + BH_Delay = 8, + BH_Boundary = 9, + BH_Write_EIO = 10, + BH_Unwritten = 11, + BH_Quiet = 12, + BH_Meta = 13, + BH_Prio = 14, + BH_Defer_Completion = 15, + BH_PrivateStart = 16, +}; + +typedef unsigned int tid_t; + +struct transaction_chp_stats_s { + long unsigned int cs_chp_time; + __u32 cs_forced_to_close; + __u32 cs_written; + __u32 cs_dropped; +}; + +struct journal_s; + +typedef struct journal_s journal_t; + +struct journal_head; + +struct transaction_s; + +typedef struct transaction_s transaction_t; + +struct transaction_s { + journal_t *t_journal; + tid_t t_tid; + enum { + T_RUNNING = 0, + T_LOCKED = 1, + T_SWITCH = 2, + T_FLUSH = 3, + T_COMMIT = 4, + T_COMMIT_DFLUSH = 5, + T_COMMIT_JFLUSH = 6, + T_COMMIT_CALLBACK = 7, + T_FINISHED = 8, + } t_state; + long unsigned int t_log_start; + int t_nr_buffers; + struct journal_head *t_reserved_list; + struct journal_head *t_buffers; + struct journal_head *t_forget; + struct journal_head *t_checkpoint_list; + struct journal_head *t_shadow_list; + struct list_head t_inode_list; + long unsigned int t_max_wait; + long unsigned int t_start; + long unsigned int t_requested; + struct transaction_chp_stats_s t_chp_stats; + atomic_t t_updates; + atomic_t t_outstanding_credits; + atomic_t t_outstanding_revokes; + atomic_t t_handle_count; + transaction_t *t_cpnext; + transaction_t *t_cpprev; + long unsigned int t_expires; + ktime_t t_start_time; + unsigned int t_synchronous_commit: 1; + int t_need_data_flush; + struct list_head t_private_list; +}; + +struct jbd2_buffer_trigger_type; + +struct journal_head { + struct buffer_head *b_bh; + spinlock_t b_state_lock; + int b_jcount; + unsigned int b_jlist; + unsigned int b_modified; + char *b_frozen_data; + char *b_committed_data; + transaction_t *b_transaction; + transaction_t *b_next_transaction; + struct journal_head *b_tnext; + struct journal_head *b_tprev; + transaction_t *b_cp_transaction; + struct journal_head *b_cpnext; + struct journal_head *b_cpprev; + struct jbd2_buffer_trigger_type *b_triggers; + struct jbd2_buffer_trigger_type *b_frozen_triggers; +}; + +struct jbd2_buffer_trigger_type { + void (*t_frozen)(struct jbd2_buffer_trigger_type *, struct buffer_head *, void *, size_t); + void (*t_abort)(struct jbd2_buffer_trigger_type *, struct buffer_head *); +}; + +struct blk_zone { + __u64 start; + __u64 len; + __u64 wp; + __u8 type; + __u8 cond; + __u8 non_seq; + __u8 reset; + __u8 resv[4]; + __u64 capacity; + __u8 reserved[24]; +}; + +typedef int (*report_zones_cb)(struct blk_zone *, unsigned int, void *); + +enum blk_unique_id { + BLK_UID_T10 = 1, + BLK_UID_EUI64 = 2, + BLK_UID_NAA = 3, +}; + +struct hd_geometry; + +struct pr_ops; + +struct block_device_operations { + void (*submit_bio)(struct bio *); + int (*poll_bio)(struct bio *, struct io_comp_batch *, unsigned int); + int (*open)(struct gendisk *, blk_mode_t); + void (*release)(struct gendisk *); + int (*ioctl)(struct block_device *, blk_mode_t, unsigned int, long unsigned int); + int (*compat_ioctl)(struct block_device *, blk_mode_t, unsigned int, long unsigned int); + unsigned int (*check_events)(struct gendisk *, unsigned int); + void (*unlock_native_capacity)(struct gendisk *); + int (*getgeo)(struct block_device *, struct hd_geometry *); + int (*set_read_only)(struct block_device *, bool); + void (*free_disk)(struct gendisk *); + void (*swap_slot_free_notify)(struct block_device *, long unsigned int); + int (*report_zones)(struct gendisk *, sector_t, unsigned int, report_zones_cb, void *); + char * (*devnode)(struct gendisk *, umode_t *); + int (*get_unique_id)(struct gendisk *, u8 *, enum blk_unique_id); + struct module *owner; + const struct pr_ops *pr_ops; + int (*alternative_gpt_sector)(struct gendisk *, sector_t *); +}; + +struct blk_independent_access_range { + struct kobject kobj; + sector_t sector; + sector_t nr_sectors; +}; + +struct blk_independent_access_ranges { + struct kobject kobj; + bool sysfs_registered; + unsigned int nr_ia_ranges; + struct blk_independent_access_range ia_range[0]; +}; + +enum blk_eh_timer_return { + BLK_EH_DONE = 0, + BLK_EH_RESET_TIMER = 1, +}; + +struct blk_mq_hw_ctx; + +struct blk_mq_queue_data; + +struct blk_mq_ops { + blk_status_t (*queue_rq)(struct blk_mq_hw_ctx *, const struct blk_mq_queue_data *); + void (*commit_rqs)(struct blk_mq_hw_ctx *); + void (*queue_rqs)(struct rq_list *); + int (*get_budget)(struct request_queue *); + void (*put_budget)(struct request_queue *, int); + void (*set_rq_budget_token)(struct request *, int); + int (*get_rq_budget_token)(struct request *); + enum blk_eh_timer_return (*timeout)(struct request *); + int (*poll)(struct blk_mq_hw_ctx *, struct io_comp_batch *); + void (*complete)(struct request *); + int (*init_hctx)(struct blk_mq_hw_ctx *, void *, unsigned int); + void (*exit_hctx)(struct blk_mq_hw_ctx *, unsigned int); + int (*init_request)(struct blk_mq_tag_set *, struct request *, unsigned int, unsigned int); + void (*exit_request)(struct blk_mq_tag_set *, struct request *, unsigned int); + void (*cleanup_rq)(struct request *); + bool (*busy)(struct request_queue *); + void (*map_queues)(struct blk_mq_tag_set *); + void (*show_rq)(struct seq_file *, struct request *); +}; + +enum blk_default_limits { + BLK_MAX_SEGMENTS = 128, + BLK_SAFE_MAX_SECTORS = 255, + BLK_MAX_SEGMENT_SIZE = 65536, + BLK_SEG_BOUNDARY_MASK = 4294967295, +}; + +enum pr_type { + PR_WRITE_EXCLUSIVE = 1, + PR_EXCLUSIVE_ACCESS = 2, + PR_WRITE_EXCLUSIVE_REG_ONLY = 3, + PR_EXCLUSIVE_ACCESS_REG_ONLY = 4, + PR_WRITE_EXCLUSIVE_ALL_REGS = 5, + PR_EXCLUSIVE_ACCESS_ALL_REGS = 6, +}; + +struct pr_keys; + +struct pr_held_reservation; + +struct pr_ops { + int (*pr_register)(struct block_device *, u64, u64, u32); + int (*pr_reserve)(struct block_device *, u64, enum pr_type, u32); + int (*pr_release)(struct block_device *, u64, enum pr_type); + int (*pr_preempt)(struct block_device *, u64, u64, enum pr_type, bool); + int (*pr_clear)(struct block_device *, u64); + int (*pr_read_keys)(struct block_device *, struct pr_keys *); + int (*pr_read_reservation)(struct block_device *, struct pr_held_reservation *); +}; + +struct jbd2_journal_handle; + +typedef struct jbd2_journal_handle handle_t; + +struct jbd2_journal_handle { + union { + transaction_t *h_transaction; + journal_t *h_journal; + }; + handle_t *h_rsv_handle; + int h_total_credits; + int h_revoke_credits; + int h_revoke_credits_requested; + int h_ref; + int h_err; + unsigned int h_sync: 1; + unsigned int h_jdata: 1; + unsigned int h_reserved: 1; + unsigned int h_aborted: 1; + unsigned int h_type: 8; + unsigned int h_line_no: 16; + long unsigned int h_start_jiffies; + unsigned int h_requested_credits; + unsigned int saved_alloc_context; +}; + +struct transaction_run_stats_s { + long unsigned int rs_wait; + long unsigned int rs_request_delay; + long unsigned int rs_running; + long unsigned int rs_locked; + long unsigned int rs_flushing; + long unsigned int rs_logging; + __u32 rs_handle_count; + __u32 rs_blocks; + __u32 rs_blocks_logged; +}; + +struct transaction_stats_s { + long unsigned int ts_tid; + long unsigned int ts_requested; + struct transaction_run_stats_s run; +}; + +enum passtype { + PASS_SCAN = 0, + PASS_REVOKE = 1, + PASS_REPLAY = 2, +}; + +struct journal_superblock_s; + +typedef struct journal_superblock_s journal_superblock_t; + +struct jbd2_revoke_table_s; + +struct jbd2_inode; + +struct journal_s { + long unsigned int j_flags; + int j_errno; + struct mutex j_abort_mutex; + struct buffer_head *j_sb_buffer; + journal_superblock_t *j_superblock; + rwlock_t j_state_lock; + int j_barrier_count; + struct mutex j_barrier; + transaction_t *j_running_transaction; + transaction_t *j_committing_transaction; + transaction_t *j_checkpoint_transactions; + wait_queue_head_t j_wait_transaction_locked; + wait_queue_head_t j_wait_done_commit; + wait_queue_head_t j_wait_commit; + wait_queue_head_t j_wait_updates; + wait_queue_head_t j_wait_reserved; + wait_queue_head_t j_fc_wait; + struct mutex j_checkpoint_mutex; + struct buffer_head *j_chkpt_bhs[64]; + struct shrinker *j_shrinker; + struct percpu_counter j_checkpoint_jh_count; + transaction_t *j_shrink_transaction; + long unsigned int j_head; + long unsigned int j_tail; + long unsigned int j_free; + long unsigned int j_first; + long unsigned int j_last; + long unsigned int j_fc_first; + long unsigned int j_fc_off; + long unsigned int j_fc_last; + struct block_device *j_dev; + int j_blocksize; + long long unsigned int j_blk_offset; + char j_devname[56]; + struct block_device *j_fs_dev; + errseq_t j_fs_dev_wb_err; + unsigned int j_total_len; + atomic_t j_reserved_credits; + spinlock_t j_list_lock; + struct inode *j_inode; + tid_t j_tail_sequence; + tid_t j_transaction_sequence; + tid_t j_commit_sequence; + tid_t j_commit_request; + __u8 j_uuid[16]; + struct task_struct *j_task; + int j_max_transaction_buffers; + int j_revoke_records_per_block; + int j_transaction_overhead_buffers; + long unsigned int j_commit_interval; + struct timer_list j_commit_timer; + spinlock_t j_revoke_lock; + struct jbd2_revoke_table_s *j_revoke; + struct jbd2_revoke_table_s *j_revoke_table[2]; + struct buffer_head **j_wbuf; + struct buffer_head **j_fc_wbuf; + int j_wbufsize; + int j_fc_wbufsize; + pid_t j_last_sync_writer; + u64 j_average_commit_time; + u32 j_min_batch_time; + u32 j_max_batch_time; + void (*j_commit_callback)(journal_t *, transaction_t *); + int (*j_submit_inode_data_buffers)(struct jbd2_inode *); + int (*j_finish_inode_data_buffers)(struct jbd2_inode *); + spinlock_t j_history_lock; + struct proc_dir_entry *j_proc_entry; + struct transaction_stats_s j_stats; + unsigned int j_failed_commit; + void *j_private; + struct crypto_shash *j_chksum_driver; + __u32 j_csum_seed; + void (*j_fc_cleanup_callback)(struct journal_s *, int, tid_t); + int (*j_fc_replay_callback)(struct journal_s *, struct buffer_head *, enum passtype, int, tid_t); + int (*j_bmap)(struct journal_s *, sector_t *); +}; + +struct journal_header_s { + __be32 h_magic; + __be32 h_blocktype; + __be32 h_sequence; +}; + +typedef struct journal_header_s journal_header_t; + +struct journal_superblock_s { + journal_header_t s_header; + __be32 s_blocksize; + __be32 s_maxlen; + __be32 s_first; + __be32 s_sequence; + __be32 s_start; + __be32 s_errno; + __be32 s_feature_compat; + __be32 s_feature_incompat; + __be32 s_feature_ro_compat; + __u8 s_uuid[16]; + __be32 s_nr_users; + __be32 s_dynsuper; + __be32 s_max_transaction; + __be32 s_max_trans_data; + __u8 s_checksum_type; + __u8 s_padding2[3]; + __be32 s_num_fc_blks; + __be32 s_head; + __u32 s_padding[40]; + __be32 s_checksum; + __u8 s_users[768]; +}; + +enum jbd_state_bits { + BH_JBD = 16, + BH_JWrite = 17, + BH_Freed = 18, + BH_Revoked = 19, + BH_RevokeValid = 20, + BH_JBDDirty = 21, + BH_JournalHead = 22, + BH_Shadow = 23, + BH_Verified = 24, + BH_JBDPrivateStart = 25, +}; + +struct jbd2_inode { + transaction_t *i_transaction; + transaction_t *i_next_transaction; + struct list_head i_list; + struct inode *i_vfs_inode; + long unsigned int i_flags; + loff_t i_dirty_start; + loff_t i_dirty_end; +}; + +struct bgl_lock { + spinlock_t lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct blockgroup_lock { + struct bgl_lock locks[64]; +}; + +struct fiemap_extent { + __u64 fe_logical; + __u64 fe_physical; + __u64 fe_length; + __u64 fe_reserved64[2]; + __u32 fe_flags; + __u32 fe_reserved[3]; +}; + +struct fscrypt_policy_v1 { + __u8 version; + __u8 contents_encryption_mode; + __u8 filenames_encryption_mode; + __u8 flags; + __u8 master_key_descriptor[8]; +}; + +struct fscrypt_policy_v2 { + __u8 version; + __u8 contents_encryption_mode; + __u8 filenames_encryption_mode; + __u8 flags; + __u8 log2_data_unit_size; + __u8 __reserved[3]; + __u8 master_key_identifier[16]; +}; + +union fscrypt_policy { + u8 version; + struct fscrypt_policy_v1 v1; + struct fscrypt_policy_v2 v2; +}; + +struct fscrypt_dummy_policy { + const union fscrypt_policy *policy; +}; + +typedef int ext4_grpblk_t; + +typedef long long unsigned int ext4_fsblk_t; + +typedef __u32 ext4_lblk_t; + +typedef unsigned int ext4_group_t; + +enum criteria { + CR_POWER2_ALIGNED = 0, + CR_GOAL_LEN_FAST = 1, + CR_BEST_AVAIL_LEN = 2, + CR_GOAL_LEN_SLOW = 3, + CR_ANY_FREE = 4, + EXT4_MB_NUM_CRS = 5, +}; + +struct ext4_allocation_request { + struct inode *inode; + unsigned int len; + ext4_lblk_t logical; + ext4_lblk_t lleft; + ext4_lblk_t lright; + ext4_fsblk_t goal; + ext4_fsblk_t pleft; + ext4_fsblk_t pright; + unsigned int flags; +}; + +struct ext4_system_blocks { + struct rb_root root; + struct callback_head rcu; +}; + +struct ext4_group_desc { + __le32 bg_block_bitmap_lo; + __le32 bg_inode_bitmap_lo; + __le32 bg_inode_table_lo; + __le16 bg_free_blocks_count_lo; + __le16 bg_free_inodes_count_lo; + __le16 bg_used_dirs_count_lo; + __le16 bg_flags; + __le32 bg_exclude_bitmap_lo; + __le16 bg_block_bitmap_csum_lo; + __le16 bg_inode_bitmap_csum_lo; + __le16 bg_itable_unused_lo; + __le16 bg_checksum; + __le32 bg_block_bitmap_hi; + __le32 bg_inode_bitmap_hi; + __le32 bg_inode_table_hi; + __le16 bg_free_blocks_count_hi; + __le16 bg_free_inodes_count_hi; + __le16 bg_used_dirs_count_hi; + __le16 bg_itable_unused_hi; + __le32 bg_exclude_bitmap_hi; + __le16 bg_block_bitmap_csum_hi; + __le16 bg_inode_bitmap_csum_hi; + __u32 bg_reserved; +}; + +struct flex_groups { + atomic64_t free_clusters; + atomic_t free_inodes; + atomic_t used_dirs; +}; + +enum { + EXT4_INODE_SECRM = 0, + EXT4_INODE_UNRM = 1, + EXT4_INODE_COMPR = 2, + EXT4_INODE_SYNC = 3, + EXT4_INODE_IMMUTABLE = 4, + EXT4_INODE_APPEND = 5, + EXT4_INODE_NODUMP = 6, + EXT4_INODE_NOATIME = 7, + EXT4_INODE_DIRTY = 8, + EXT4_INODE_COMPRBLK = 9, + EXT4_INODE_NOCOMPR = 10, + EXT4_INODE_ENCRYPT = 11, + EXT4_INODE_INDEX = 12, + EXT4_INODE_IMAGIC = 13, + EXT4_INODE_JOURNAL_DATA = 14, + EXT4_INODE_NOTAIL = 15, + EXT4_INODE_DIRSYNC = 16, + EXT4_INODE_TOPDIR = 17, + EXT4_INODE_HUGE_FILE = 18, + EXT4_INODE_EXTENTS = 19, + EXT4_INODE_VERITY = 20, + EXT4_INODE_EA_INODE = 21, + EXT4_INODE_DAX = 25, + EXT4_INODE_INLINE_DATA = 28, + EXT4_INODE_PROJINHERIT = 29, + EXT4_INODE_CASEFOLD = 30, + EXT4_INODE_RESERVED = 31, +}; + +struct extent_status { + struct rb_node rb_node; + ext4_lblk_t es_lblk; + ext4_lblk_t es_len; + ext4_fsblk_t es_pblk; +}; + +struct ext4_es_tree { + struct rb_root root; + struct extent_status *cache_es; +}; + +struct ext4_es_stats { + long unsigned int es_stats_shrunk; + struct percpu_counter es_stats_cache_hits; + struct percpu_counter es_stats_cache_misses; + u64 es_stats_scan_time; + u64 es_stats_max_scan_time; + struct percpu_counter es_stats_all_cnt; + struct percpu_counter es_stats_shk_cnt; +}; + +struct ext4_pending_tree { + struct rb_root root; +}; + +struct ext4_fc_stats { + unsigned int fc_ineligible_reason_count[10]; + long unsigned int fc_num_commits; + long unsigned int fc_ineligible_commits; + long unsigned int fc_failed_commits; + long unsigned int fc_skipped_commits; + long unsigned int fc_numblks; + u64 s_fc_avg_commit_time; +}; + +struct ext4_fc_alloc_region { + ext4_lblk_t lblk; + ext4_fsblk_t pblk; + int ino; + int len; +}; + +struct ext4_fc_replay_state { + int fc_replay_num_tags; + int fc_replay_expected_off; + int fc_current_pass; + int fc_cur_tag; + int fc_crc; + struct ext4_fc_alloc_region *fc_regions; + int fc_regions_size; + int fc_regions_used; + int fc_regions_valid; + int *fc_modified_inodes; + int fc_modified_inodes_used; + int fc_modified_inodes_size; +}; + +struct ext4_inode_info { + __le32 i_data[15]; + __u32 i_dtime; + ext4_fsblk_t i_file_acl; + ext4_group_t i_block_group; + ext4_lblk_t i_dir_start_lookup; + long unsigned int i_flags; + struct rw_semaphore xattr_sem; + union { + struct list_head i_orphan; + unsigned int i_orphan_idx; + }; + struct list_head i_fc_dilist; + struct list_head i_fc_list; + ext4_lblk_t i_fc_lblk_start; + ext4_lblk_t i_fc_lblk_len; + atomic_t i_fc_updates; + atomic_t i_unwritten; + wait_queue_head_t i_fc_wait; + struct mutex i_fc_lock; + loff_t i_disksize; + struct rw_semaphore i_data_sem; + struct inode vfs_inode; + struct jbd2_inode *jinode; + spinlock_t i_raw_lock; + struct timespec64 i_crtime; + atomic_t i_prealloc_active; + unsigned int i_reserved_data_blocks; + struct rb_root i_prealloc_node; + rwlock_t i_prealloc_lock; + struct ext4_es_tree i_es_tree; + rwlock_t i_es_lock; + struct list_head i_es_list; + unsigned int i_es_all_nr; + unsigned int i_es_shk_nr; + ext4_lblk_t i_es_shrink_lblk; + ext4_group_t i_last_alloc_group; + struct ext4_pending_tree i_pending_tree; + __u16 i_extra_isize; + u16 i_inline_off; + u16 i_inline_size; + qsize_t i_reserved_quota; + spinlock_t i_completed_io_lock; + struct list_head i_rsv_conversion_list; + struct work_struct i_rsv_conversion_work; + spinlock_t i_block_reservation_lock; + tid_t i_sync_tid; + tid_t i_datasync_tid; + struct dquot *i_dquot[3]; + __u32 i_csum_seed; + kprojid_t i_projid; +}; + +struct ext4_super_block { + __le32 s_inodes_count; + __le32 s_blocks_count_lo; + __le32 s_r_blocks_count_lo; + __le32 s_free_blocks_count_lo; + __le32 s_free_inodes_count; + __le32 s_first_data_block; + __le32 s_log_block_size; + __le32 s_log_cluster_size; + __le32 s_blocks_per_group; + __le32 s_clusters_per_group; + __le32 s_inodes_per_group; + __le32 s_mtime; + __le32 s_wtime; + __le16 s_mnt_count; + __le16 s_max_mnt_count; + __le16 s_magic; + __le16 s_state; + __le16 s_errors; + __le16 s_minor_rev_level; + __le32 s_lastcheck; + __le32 s_checkinterval; + __le32 s_creator_os; + __le32 s_rev_level; + __le16 s_def_resuid; + __le16 s_def_resgid; + __le32 s_first_ino; + __le16 s_inode_size; + __le16 s_block_group_nr; + __le32 s_feature_compat; + __le32 s_feature_incompat; + __le32 s_feature_ro_compat; + __u8 s_uuid[16]; + char s_volume_name[16]; + char s_last_mounted[64]; + __le32 s_algorithm_usage_bitmap; + __u8 s_prealloc_blocks; + __u8 s_prealloc_dir_blocks; + __le16 s_reserved_gdt_blocks; + __u8 s_journal_uuid[16]; + __le32 s_journal_inum; + __le32 s_journal_dev; + __le32 s_last_orphan; + __le32 s_hash_seed[4]; + __u8 s_def_hash_version; + __u8 s_jnl_backup_type; + __le16 s_desc_size; + __le32 s_default_mount_opts; + __le32 s_first_meta_bg; + __le32 s_mkfs_time; + __le32 s_jnl_blocks[17]; + __le32 s_blocks_count_hi; + __le32 s_r_blocks_count_hi; + __le32 s_free_blocks_count_hi; + __le16 s_min_extra_isize; + __le16 s_want_extra_isize; + __le32 s_flags; + __le16 s_raid_stride; + __le16 s_mmp_update_interval; + __le64 s_mmp_block; + __le32 s_raid_stripe_width; + __u8 s_log_groups_per_flex; + __u8 s_checksum_type; + __u8 s_encryption_level; + __u8 s_reserved_pad; + __le64 s_kbytes_written; + __le32 s_snapshot_inum; + __le32 s_snapshot_id; + __le64 s_snapshot_r_blocks_count; + __le32 s_snapshot_list; + __le32 s_error_count; + __le32 s_first_error_time; + __le32 s_first_error_ino; + __le64 s_first_error_block; + __u8 s_first_error_func[32]; + __le32 s_first_error_line; + __le32 s_last_error_time; + __le32 s_last_error_ino; + __le32 s_last_error_line; + __le64 s_last_error_block; + __u8 s_last_error_func[32]; + __u8 s_mount_opts[64]; + __le32 s_usr_quota_inum; + __le32 s_grp_quota_inum; + __le32 s_overhead_clusters; + __le32 s_backup_bgs[2]; + __u8 s_encrypt_algos[4]; + __u8 s_encrypt_pw_salt[16]; + __le32 s_lpf_ino; + __le32 s_prj_quota_inum; + __le32 s_checksum_seed; + __u8 s_wtime_hi; + __u8 s_mtime_hi; + __u8 s_mkfs_time_hi; + __u8 s_lastcheck_hi; + __u8 s_first_error_time_hi; + __u8 s_last_error_time_hi; + __u8 s_first_error_errcode; + __u8 s_last_error_errcode; + __le16 s_encoding; + __le16 s_encoding_flags; + __le32 s_orphan_file_inum; + __le32 s_reserved[94]; + __le32 s_checksum; +}; + +enum ext4_journal_trigger_type { + EXT4_JTR_ORPHAN_FILE = 0, + EXT4_JTR_NONE = 1, +}; + +struct ext4_journal_trigger { + struct jbd2_buffer_trigger_type tr_triggers; + struct super_block *sb; +}; + +struct ext4_orphan_block { + atomic_t ob_free_entries; + struct buffer_head *ob_bh; +}; + +struct ext4_orphan_info { + int of_blocks; + __u32 of_csum_seed; + struct ext4_orphan_block *of_binfo; +}; + +struct dax_device; + +struct ext4_group_info; + +struct ext4_locality_group; + +struct ext4_li_request; + +struct mb_cache; + +struct ext4_sb_info { + long unsigned int s_desc_size; + long unsigned int s_inodes_per_block; + long unsigned int s_blocks_per_group; + long unsigned int s_clusters_per_group; + long unsigned int s_inodes_per_group; + long unsigned int s_itb_per_group; + long unsigned int s_gdb_count; + long unsigned int s_desc_per_block; + ext4_group_t s_groups_count; + ext4_group_t s_blockfile_groups; + long unsigned int s_overhead; + unsigned int s_cluster_ratio; + unsigned int s_cluster_bits; + loff_t s_bitmap_maxbytes; + struct buffer_head *s_sbh; + struct ext4_super_block *s_es; + struct buffer_head **s_group_desc; + unsigned int s_mount_opt; + unsigned int s_mount_opt2; + long unsigned int s_mount_flags; + unsigned int s_def_mount_opt; + unsigned int s_def_mount_opt2; + ext4_fsblk_t s_sb_block; + atomic64_t s_resv_clusters; + kuid_t s_resuid; + kgid_t s_resgid; + short unsigned int s_mount_state; + short unsigned int s_pad; + int s_addr_per_block_bits; + int s_desc_per_block_bits; + int s_inode_size; + int s_first_ino; + unsigned int s_inode_readahead_blks; + unsigned int s_inode_goal; + u32 s_hash_seed[4]; + int s_def_hash_version; + int s_hash_unsigned; + struct percpu_counter s_freeclusters_counter; + struct percpu_counter s_freeinodes_counter; + struct percpu_counter s_dirs_counter; + struct percpu_counter s_dirtyclusters_counter; + struct percpu_counter s_sra_exceeded_retry_limit; + struct blockgroup_lock *s_blockgroup_lock; + struct proc_dir_entry *s_proc; + struct kobject s_kobj; + struct completion s_kobj_unregister; + struct super_block *s_sb; + struct buffer_head *s_mmp_bh; + struct journal_s *s_journal; + long unsigned int s_ext4_flags; + struct mutex s_orphan_lock; + struct list_head s_orphan; + struct ext4_orphan_info s_orphan_info; + long unsigned int s_commit_interval; + u32 s_max_batch_time; + u32 s_min_batch_time; + struct file *s_journal_bdev_file; + char *s_qf_names[3]; + int s_jquota_fmt; + unsigned int s_want_extra_isize; + struct ext4_system_blocks *s_system_blks; + struct ext4_group_info ***s_group_info; + struct inode *s_buddy_cache; + spinlock_t s_md_lock; + short unsigned int *s_mb_offsets; + unsigned int *s_mb_maxs; + unsigned int s_group_info_size; + unsigned int s_mb_free_pending; + struct list_head s_freed_data_list[2]; + struct list_head s_discard_list; + struct work_struct s_discard_work; + atomic_t s_retry_alloc_pending; + struct list_head *s_mb_avg_fragment_size; + rwlock_t *s_mb_avg_fragment_size_locks; + struct list_head *s_mb_largest_free_orders; + rwlock_t *s_mb_largest_free_orders_locks; + long unsigned int s_stripe; + unsigned int s_mb_max_linear_groups; + unsigned int s_mb_stream_request; + unsigned int s_mb_max_to_scan; + unsigned int s_mb_min_to_scan; + unsigned int s_mb_stats; + unsigned int s_mb_order2_reqs; + unsigned int s_mb_group_prealloc; + unsigned int s_max_dir_size_kb; + long unsigned int s_mb_last_group; + long unsigned int s_mb_last_start; + unsigned int s_mb_prefetch; + unsigned int s_mb_prefetch_limit; + unsigned int s_mb_best_avail_max_trim_order; + atomic_t s_bal_reqs; + atomic_t s_bal_success; + atomic_t s_bal_allocated; + atomic_t s_bal_ex_scanned; + atomic_t s_bal_cX_ex_scanned[5]; + atomic_t s_bal_groups_scanned; + atomic_t s_bal_goals; + atomic_t s_bal_len_goals; + atomic_t s_bal_breaks; + atomic_t s_bal_2orders; + atomic_t s_bal_p2_aligned_bad_suggestions; + atomic_t s_bal_goal_fast_bad_suggestions; + atomic_t s_bal_best_avail_bad_suggestions; + atomic64_t s_bal_cX_groups_considered[5]; + atomic64_t s_bal_cX_hits[5]; + atomic64_t s_bal_cX_failed[5]; + atomic_t s_mb_buddies_generated; + atomic64_t s_mb_generation_time; + atomic_t s_mb_lost_chunks; + atomic_t s_mb_preallocated; + atomic_t s_mb_discarded; + atomic_t s_lock_busy; + struct ext4_locality_group *s_locality_groups; + long unsigned int s_sectors_written_start; + u64 s_kbytes_written; + unsigned int s_extent_max_zeroout_kb; + unsigned int s_log_groups_per_flex; + struct flex_groups **s_flex_groups; + ext4_group_t s_flex_groups_allocated; + struct workqueue_struct *rsv_conversion_wq; + struct timer_list s_err_report; + struct ext4_li_request *s_li_request; + unsigned int s_li_wait_mult; + struct task_struct *s_mmp_tsk; + long unsigned int s_last_trim_minblks; + struct crypto_shash *s_chksum_driver; + __u32 s_csum_seed; + struct shrinker *s_es_shrinker; + struct list_head s_es_list; + long int s_es_nr_inode; + struct ext4_es_stats s_es_stats; + struct mb_cache *s_ea_block_cache; + struct mb_cache *s_ea_inode_cache; + long: 64; + long: 64; + long: 64; + spinlock_t s_es_lock; + struct ext4_journal_trigger s_journal_triggers[1]; + struct ratelimit_state s_err_ratelimit_state; + struct ratelimit_state s_warning_ratelimit_state; + struct ratelimit_state s_msg_ratelimit_state; + atomic_t s_warning_count; + atomic_t s_msg_count; + struct fscrypt_dummy_policy s_dummy_enc_policy; + struct percpu_rw_semaphore s_writepages_rwsem; + struct dax_device *s_daxdev; + u64 s_dax_part_off; + errseq_t s_bdev_wb_err; + spinlock_t s_bdev_wb_lock; + spinlock_t s_error_lock; + int s_add_error_count; + int s_first_error_code; + __u32 s_first_error_line; + __u32 s_first_error_ino; + __u64 s_first_error_block; + const char *s_first_error_func; + time64_t s_first_error_time; + int s_last_error_code; + __u32 s_last_error_line; + __u32 s_last_error_ino; + __u64 s_last_error_block; + const char *s_last_error_func; + time64_t s_last_error_time; + struct work_struct s_sb_upd_work; + atomic_t s_fc_subtid; + struct list_head s_fc_q[2]; + struct list_head s_fc_dentry_q[2]; + unsigned int s_fc_bytes; + spinlock_t s_fc_lock; + struct buffer_head *s_fc_bh; + struct ext4_fc_stats s_fc_stats; + tid_t s_fc_ineligible_tid; + struct ext4_fc_replay_state s_fc_replay_state; + long: 64; +}; + +struct ext4_group_info { + long unsigned int bb_state; + struct rb_root bb_free_root; + ext4_grpblk_t bb_first_free; + ext4_grpblk_t bb_free; + ext4_grpblk_t bb_fragments; + int bb_avg_fragment_size_order; + ext4_grpblk_t bb_largest_free_order; + ext4_group_t bb_group; + struct list_head bb_prealloc_list; + struct rw_semaphore alloc_sem; + struct list_head bb_avg_fragment_size_node; + struct list_head bb_largest_free_order_node; + ext4_grpblk_t bb_counters[0]; +}; + +struct ext4_locality_group { + struct mutex lg_mutex; + struct list_head lg_prealloc_list[10]; + spinlock_t lg_prealloc_lock; +}; + +enum ext4_li_mode { + EXT4_LI_MODE_PREFETCH_BBITMAP = 0, + EXT4_LI_MODE_ITABLE = 1, +}; + +struct ext4_li_request { + struct super_block *lr_super; + enum ext4_li_mode lr_mode; + ext4_group_t lr_first_not_zeroed; + ext4_group_t lr_next_group; + struct list_head lr_request; + long unsigned int lr_next_sched; + long unsigned int lr_timeout; +}; + +struct ext4_free_data { + struct list_head efd_list; + struct rb_node efd_node; + ext4_group_t efd_group; + ext4_grpblk_t efd_start_cluster; + ext4_grpblk_t efd_count; + tid_t efd_tid; +}; + +struct ext4_prealloc_space { + union { + struct rb_node inode_node; + struct list_head lg_list; + } pa_node; + struct list_head pa_group_list; + union { + struct list_head pa_tmp_list; + struct callback_head pa_rcu; + } u; + spinlock_t pa_lock; + atomic_t pa_count; + unsigned int pa_deleted; + ext4_fsblk_t pa_pstart; + ext4_lblk_t pa_lstart; + ext4_grpblk_t pa_len; + ext4_grpblk_t pa_free; + short unsigned int pa_type; + union { + rwlock_t *inode_lock; + spinlock_t *lg_lock; + } pa_node_lock; + struct inode *pa_inode; +}; + +enum { + MB_INODE_PA = 0, + MB_GROUP_PA = 1, +}; + +struct ext4_free_extent { + ext4_lblk_t fe_logical; + ext4_grpblk_t fe_start; + ext4_group_t fe_group; + ext4_grpblk_t fe_len; +}; + +struct ext4_allocation_context { + struct inode *ac_inode; + struct super_block *ac_sb; + struct ext4_free_extent ac_o_ex; + struct ext4_free_extent ac_g_ex; + struct ext4_free_extent ac_b_ex; + struct ext4_free_extent ac_f_ex; + ext4_grpblk_t ac_orig_goal_len; + __u32 ac_flags; + __u32 ac_groups_linear_remaining; + __u16 ac_groups_scanned; + __u16 ac_found; + __u16 ac_cX_found[5]; + __u16 ac_tail; + __u16 ac_buddy; + __u8 ac_status; + __u8 ac_criteria; + __u8 ac_2order; + __u8 ac_op; + struct folio *ac_bitmap_folio; + struct folio *ac_buddy_folio; + struct ext4_prealloc_space *ac_pa; + struct ext4_locality_group *ac_lg; +}; + +struct ext4_buddy { + struct folio *bd_buddy_folio; + void *bd_buddy; + struct folio *bd_bitmap_folio; + void *bd_bitmap; + struct ext4_group_info *bd_info; + struct super_block *bd_sb; + __u16 bd_blkbits; + ext4_group_t bd_group; +}; + +typedef int (*ext4_mballoc_query_range_fn)(struct super_block *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t, void *); + +struct sg { + struct ext4_group_info info; + ext4_grpblk_t counters[18]; +}; + +typedef struct { + int val[2]; +} __kernel_fsid_t; + +typedef int get_block_t(struct inode *, sector_t, struct buffer_head *, int); + +typedef int dio_iodone_t(struct kiocb *, loff_t, ssize_t, void *); + +struct kstatfs { + long int f_type; + long int f_bsize; + u64 f_blocks; + u64 f_bfree; + u64 f_bavail; + u64 f_files; + u64 f_ffree; + __kernel_fsid_t f_fsid; + long int f_namelen; + long int f_frsize; + long int f_flags; + long int f_spare[4]; +}; + +enum file_time_flags { + S_ATIME = 1, + S_MTIME = 2, + S_CTIME = 4, + S_VERSION = 8, +}; + +enum { + DIO_LOCKING = 1, + DIO_SKIP_HOLES = 2, +}; + +typedef u16 wchar_t; + +struct nls_table { + const char *charset; + const char *alias; + int (*uni2char)(wchar_t, unsigned char *, int); + int (*char2uni)(const unsigned char *, int, wchar_t *); + const unsigned char *charset2lower; + const unsigned char *charset2upper; + struct module *owner; + struct nls_table *next; +}; + +struct fat_boot_sector { + __u8 ignored[3]; + __u8 system_id[8]; + __u8 sector_size[2]; + __u8 sec_per_clus; + __le16 reserved; + __u8 fats; + __u8 dir_entries[2]; + __u8 sectors[2]; + __u8 media; + __le16 fat_length; + __le16 secs_track; + __le16 heads; + __le32 hidden; + __le32 total_sect; + union { + struct { + __u8 drive_number; + __u8 state; + __u8 signature; + __u8 vol_id[4]; + __u8 vol_label[11]; + __u8 fs_type[8]; + } fat16; + struct { + __le32 length; + __le16 flags; + __u8 version[2]; + __le32 root_cluster; + __le16 info_sector; + __le16 backup_boot; + __le16 reserved2[6]; + __u8 drive_number; + __u8 state; + __u8 signature; + __u8 vol_id[4]; + __u8 vol_label[11]; + __u8 fs_type[8]; + } fat32; + }; +}; + +struct fat_boot_fsinfo { + __le32 signature1; + __le32 reserved1[120]; + __le32 signature2; + __le32 free_clusters; + __le32 next_cluster; + __le32 reserved2[4]; +}; + +struct msdos_dir_entry { + __u8 name[11]; + __u8 attr; + __u8 lcase; + __u8 ctime_cs; + __le16 ctime; + __le16 cdate; + __le16 adate; + __le16 starthi; + __le16 time; + __le16 date; + __le16 start; + __le32 size; +}; + +struct constant_table { + const char *name; + int value; +}; + +struct fat_mount_options { + kuid_t fs_uid; + kgid_t fs_gid; + short unsigned int fs_fmask; + short unsigned int fs_dmask; + short unsigned int codepage; + int time_offset; + char *iocharset; + short unsigned int shortname; + unsigned char name_check; + unsigned char errors; + unsigned char nfs; + short unsigned int allow_utime; + unsigned int quiet: 1; + unsigned int showexec: 1; + unsigned int sys_immutable: 1; + unsigned int dotsOK: 1; + unsigned int isvfat: 1; + unsigned int utf8: 1; + unsigned int unicode_xlate: 1; + unsigned int numtail: 1; + unsigned int flush: 1; + unsigned int nocase: 1; + unsigned int usefree: 1; + unsigned int tz_set: 1; + unsigned int rodir: 1; + unsigned int discard: 1; + unsigned int dos1xfloppy: 1; + unsigned int debug: 1; +}; + +struct fatent_operations; + +struct msdos_sb_info { + short unsigned int sec_per_clus; + short unsigned int cluster_bits; + unsigned int cluster_size; + unsigned char fats; + unsigned char fat_bits; + short unsigned int fat_start; + long unsigned int fat_length; + long unsigned int dir_start; + short unsigned int dir_entries; + long unsigned int data_start; + long unsigned int max_cluster; + long unsigned int root_cluster; + long unsigned int fsinfo_sector; + struct mutex fat_lock; + struct mutex nfs_build_inode_lock; + struct mutex s_lock; + unsigned int prev_free; + unsigned int free_clusters; + unsigned int free_clus_valid; + struct fat_mount_options options; + struct nls_table *nls_disk; + struct nls_table *nls_io; + const void *dir_ops; + int dir_per_block; + int dir_per_block_bits; + unsigned int vol_id; + int fatent_shift; + const struct fatent_operations *fatent_ops; + struct inode *fat_inode; + struct inode *fsinfo_inode; + struct ratelimit_state ratelimit; + spinlock_t inode_hash_lock; + struct hlist_head inode_hashtable[256]; + spinlock_t dir_hash_lock; + struct hlist_head dir_hashtable[256]; + unsigned int dirty; + struct callback_head rcu; +}; + +struct fat_entry; + +struct fatent_operations { + void (*ent_blocknr)(struct super_block *, int, int *, sector_t *); + void (*ent_set_ptr)(struct fat_entry *, int); + int (*ent_bread)(struct super_block *, struct fat_entry *, int, sector_t); + int (*ent_get)(struct fat_entry *); + void (*ent_put)(struct fat_entry *, int); + int (*ent_next)(struct fat_entry *); +}; + +struct msdos_inode_info { + spinlock_t cache_lru_lock; + struct list_head cache_lru; + int nr_caches; + unsigned int cache_valid_id; + loff_t mmu_private; + int i_start; + int i_logstart; + int i_attrs; + loff_t i_pos; + struct hlist_node i_fat_hash; + struct hlist_node i_dir_hash; + struct rw_semaphore truncate_lock; + struct timespec64 i_crtime; + struct inode vfs_inode; +}; + +struct fat_bios_param_block { + u16 fat_sector_size; + u8 fat_sec_per_clus; + u16 fat_reserved; + u8 fat_fats; + u16 fat_dir_entries; + u16 fat_sectors; + u16 fat_fat_length; + u32 fat_total_sect; + u8 fat16_state; + u32 fat16_vol_id; + u32 fat32_length; + u32 fat32_root_cluster; + u16 fat32_info_sector; + u8 fat32_state; + u32 fat32_vol_id; +}; + +struct fat_floppy_defaults { + unsigned int nr_sectors; + unsigned int sec_per_clus; + unsigned int dir_entries; + unsigned int media; + unsigned int fat_length; +}; + +enum { + Opt_check = 0, + Opt_uid = 1, + Opt_gid = 2, + Opt_umask = 3, + Opt_dmask = 4, + Opt_fmask = 5, + Opt_allow_utime = 6, + Opt_codepage = 7, + Opt_usefree = 8, + Opt_nocase = 9, + Opt_quiet = 10, + Opt_showexec = 11, + Opt_debug = 12, + Opt_immutable = 13, + Opt_dots = 14, + Opt_dotsOK = 15, + Opt_charset = 16, + Opt_shortname = 17, + Opt_utf8 = 18, + Opt_utf8_bool = 19, + Opt_uni_xl = 20, + Opt_uni_xl_bool = 21, + Opt_nonumtail = 22, + Opt_nonumtail_bool = 23, + Opt_obsolete = 24, + Opt_flush = 25, + Opt_tz = 26, + Opt_rodir = 27, + Opt_errors = 28, + Opt_discard = 29, + Opt_nfs = 30, + Opt_nfs_enum = 31, + Opt_time_offset = 32, + Opt_dos1xfloppy = 33, +}; + +enum exfat_error_mode { + EXFAT_ERRORS_CONT = 0, + EXFAT_ERRORS_PANIC = 1, + EXFAT_ERRORS_RO = 2, +}; + +struct exfat_chain { + unsigned int dir; + unsigned int size; + unsigned char flags; +}; + +struct exfat_hint_femp { + int eidx; + int count; + struct exfat_chain cur; +}; + +struct exfat_hint { + unsigned int clu; + union { + unsigned int off; + int eidx; + }; +}; + +struct exfat_mount_options { + kuid_t fs_uid; + kgid_t fs_gid; + short unsigned int fs_fmask; + short unsigned int fs_dmask; + short unsigned int allow_utime; + char *iocharset; + enum exfat_error_mode errors; + unsigned int utf8: 1; + unsigned int sys_tz: 1; + unsigned int discard: 1; + unsigned int keep_last_dots: 1; + int time_offset; + bool zero_size_dir; +}; + +struct exfat_sb_info { + long long unsigned int num_sectors; + unsigned int num_clusters; + unsigned int cluster_size; + unsigned int cluster_size_bits; + unsigned int sect_per_clus; + unsigned int sect_per_clus_bits; + long long unsigned int FAT1_start_sector; + long long unsigned int FAT2_start_sector; + long long unsigned int data_start_sector; + unsigned int num_FAT_sectors; + unsigned int root_dir; + unsigned int dentries_per_clu; + unsigned int vol_flags; + unsigned int vol_flags_persistent; + struct buffer_head *boot_bh; + unsigned int map_clu; + unsigned int map_sectors; + struct buffer_head **vol_amap; + short unsigned int *vol_utbl; + unsigned int clu_srch_ptr; + unsigned int used_clusters; + long unsigned int s_exfat_flags; + struct mutex s_lock; + struct mutex bitmap_lock; + struct exfat_mount_options options; + struct nls_table *nls_io; + struct ratelimit_state ratelimit; + spinlock_t inode_hash_lock; + struct hlist_head inode_hashtable[256]; + struct callback_head rcu; +}; + +struct exfat_inode_info { + struct exfat_chain dir; + int entry; + unsigned int type; + short unsigned int attr; + unsigned int start_clu; + unsigned char flags; + unsigned int version; + struct exfat_hint hint_bmap; + struct exfat_hint hint_stat; + struct exfat_hint_femp hint_femp; + spinlock_t cache_lru_lock; + struct list_head cache_lru; + int nr_caches; + unsigned int cache_valid_id; + loff_t i_pos; + loff_t valid_size; + struct hlist_node i_hash_fat; + struct rw_semaphore truncate_lock; + struct inode vfs_inode; + struct timespec64 i_crtime; +}; + +struct exfat_cache { + struct list_head cache_list; + unsigned int nr_contig; + unsigned int fcluster; + unsigned int dcluster; +}; + +struct exfat_cache_id { + unsigned int id; + unsigned int nr_contig; + unsigned int fcluster; + unsigned int dcluster; +}; + +struct __kernel_sockaddr_storage { + union { + struct { + __kernel_sa_family_t ss_family; + char __data[126]; + }; + void *__align; + }; +}; + +struct in_addr { + __be32 s_addr; +}; + +struct sockaddr_in { + __kernel_sa_family_t sin_family; + __be16 sin_port; + struct in_addr sin_addr; + unsigned char __pad[8]; +}; + +struct sockaddr_in6 { + short unsigned int sin6_family; + __be16 sin6_port; + __be32 sin6_flowinfo; + struct in6_addr sin6_addr; + __u32 sin6_scope_id; +}; + +typedef u32 rpc_authflavor_t; + +enum rpc_auth_flavors { + RPC_AUTH_NULL = 0, + RPC_AUTH_UNIX = 1, + RPC_AUTH_SHORT = 2, + RPC_AUTH_DES = 3, + RPC_AUTH_KRB = 4, + RPC_AUTH_GSS = 6, + RPC_AUTH_TLS = 7, + RPC_AUTH_MAXFLAVOR = 8, + RPC_AUTH_GSS_KRB5 = 390003, + RPC_AUTH_GSS_KRB5I = 390004, + RPC_AUTH_GSS_KRB5P = 390005, + RPC_AUTH_GSS_LKEY = 390006, + RPC_AUTH_GSS_LKEYI = 390007, + RPC_AUTH_GSS_LKEYP = 390008, + RPC_AUTH_GSS_SPKM = 390009, + RPC_AUTH_GSS_SPKMI = 390010, + RPC_AUTH_GSS_SPKMP = 390011, +}; + +struct net_generic { + union { + struct { + unsigned int len; + struct callback_head rcu; + } s; + struct { + struct {} __empty_ptr; + void *ptr[0]; + }; + }; +}; + +struct xdr_netobj { + unsigned int len; + u8 *data; +}; + +struct xdr_buf { + struct kvec head[1]; + struct kvec tail[1]; + struct bio_vec *bvec; + struct page **pages; + unsigned int page_base; + unsigned int page_len; + unsigned int flags; + unsigned int buflen; + unsigned int len; +}; + +struct rpc_rqst; + +struct xdr_stream { + __be32 *p; + struct xdr_buf *buf; + __be32 *end; + struct kvec *iov; + struct kvec scratch; + struct page **page_ptr; + void *page_kaddr; + unsigned int nwords; + struct rpc_rqst *rqst; +}; + +struct lwq_node { + struct llist_node node; +}; + +struct rpc_xprt; + +struct rpc_task; + +struct rpc_cred; + +struct rpc_rqst { + struct rpc_xprt *rq_xprt; + struct xdr_buf rq_snd_buf; + struct xdr_buf rq_rcv_buf; + struct rpc_task *rq_task; + struct rpc_cred *rq_cred; + __be32 rq_xid; + int rq_cong; + u32 rq_seqno; + int rq_enc_pages_num; + struct page **rq_enc_pages; + void (*rq_release_snd_buf)(struct rpc_rqst *); + union { + struct list_head rq_list; + struct rb_node rq_recv; + }; + struct list_head rq_xmit; + struct list_head rq_xmit2; + void *rq_buffer; + size_t rq_callsize; + void *rq_rbuffer; + size_t rq_rcvsize; + size_t rq_xmit_bytes_sent; + size_t rq_reply_bytes_recvd; + struct xdr_buf rq_private_buf; + long unsigned int rq_majortimeo; + long unsigned int rq_minortimeo; + long unsigned int rq_timeout; + ktime_t rq_rtt; + unsigned int rq_retries; + unsigned int rq_connect_cookie; + atomic_t rq_pin; + u32 rq_bytes_sent; + ktime_t rq_xtime; + int rq_ntrans; + struct lwq_node rq_bc_list; + long unsigned int rq_bc_pa_state; + struct list_head rq_bc_pa_list; +}; + +typedef void (*kxdreproc_t)(struct rpc_rqst *, struct xdr_stream *, const void *); + +typedef int (*kxdrdproc_t)(struct rpc_rqst *, struct xdr_stream *, void *); + +struct rpc_procinfo; + +struct rpc_message { + const struct rpc_procinfo *rpc_proc; + void *rpc_argp; + void *rpc_resp; + const struct cred *rpc_cred; +}; + +struct rpc_procinfo { + u32 p_proc; + kxdreproc_t p_encode; + kxdrdproc_t p_decode; + unsigned int p_arglen; + unsigned int p_replen; + unsigned int p_timer; + u32 p_statidx; + const char *p_name; +}; + +struct rpc_wait { + struct list_head list; + struct list_head links; + struct list_head timer_list; +}; + +struct rpc_timeout { + long unsigned int to_initval; + long unsigned int to_maxval; + long unsigned int to_increment; + unsigned int to_retries; + unsigned char to_exponential; +}; + +struct rpc_wait_queue; + +struct rpc_call_ops; + +struct rpc_clnt; + +struct rpc_task { + atomic_t tk_count; + int tk_status; + struct list_head tk_task; + void (*tk_callback)(struct rpc_task *); + void (*tk_action)(struct rpc_task *); + long unsigned int tk_timeout; + long unsigned int tk_runstate; + struct rpc_wait_queue *tk_waitqueue; + union { + struct work_struct tk_work; + struct rpc_wait tk_wait; + } u; + struct rpc_message tk_msg; + void *tk_calldata; + const struct rpc_call_ops *tk_ops; + struct rpc_clnt *tk_client; + struct rpc_xprt *tk_xprt; + struct rpc_cred *tk_op_cred; + struct rpc_rqst *tk_rqstp; + struct workqueue_struct *tk_workqueue; + ktime_t tk_start; + pid_t tk_owner; + int tk_rpc_status; + short unsigned int tk_flags; + short unsigned int tk_timeouts; + short unsigned int tk_pid; + unsigned char tk_priority: 2; + unsigned char tk_garb_retry: 2; + unsigned char tk_cred_retry: 2; +}; + +struct rpc_timer { + struct list_head list; + long unsigned int expires; + struct delayed_work dwork; +}; + +struct rpc_wait_queue { + spinlock_t lock; + struct list_head tasks[4]; + unsigned char maxpriority; + unsigned char priority; + unsigned char nr; + unsigned int qlen; + struct rpc_timer timer_list; + const char *name; +}; + +struct rpc_call_ops { + void (*rpc_call_prepare)(struct rpc_task *, void *); + void (*rpc_call_done)(struct rpc_task *, void *); + void (*rpc_count_stats)(struct rpc_task *, void *); + void (*rpc_release)(void *); +}; + +enum xprtsec_policies { + RPC_XPRTSEC_NONE = 0, + RPC_XPRTSEC_TLS_ANON = 1, + RPC_XPRTSEC_TLS_X509 = 2, +}; + +struct xprtsec_parms { + enum xprtsec_policies policy; + key_serial_t cert_serial; + key_serial_t privkey_serial; +}; + +struct rpc_pipe_dir_head { + struct list_head pdh_entries; + struct dentry *pdh_dentry; +}; + +struct rpc_rtt { + long unsigned int timeo; + long unsigned int srtt[5]; + long unsigned int sdrtt[5]; + int ntimeouts[5]; +}; + +struct rpc_xprt_switch; + +struct rpc_xprt_iter_ops; + +struct rpc_xprt_iter { + struct rpc_xprt_switch *xpi_xpswitch; + struct rpc_xprt *xpi_cursor; + const struct rpc_xprt_iter_ops *xpi_ops; +}; + +struct rpc_auth; + +struct rpc_stat; + +struct rpc_iostats; + +struct rpc_program; + +struct rpc_sysfs_client; + +struct rpc_clnt { + refcount_t cl_count; + unsigned int cl_clid; + struct list_head cl_clients; + struct list_head cl_tasks; + atomic_t cl_pid; + spinlock_t cl_lock; + struct rpc_xprt *cl_xprt; + const struct rpc_procinfo *cl_procinfo; + u32 cl_prog; + u32 cl_vers; + u32 cl_maxproc; + struct rpc_auth *cl_auth; + struct rpc_stat *cl_stats; + struct rpc_iostats *cl_metrics; + unsigned int cl_softrtry: 1; + unsigned int cl_softerr: 1; + unsigned int cl_discrtry: 1; + unsigned int cl_noretranstimeo: 1; + unsigned int cl_autobind: 1; + unsigned int cl_chatty: 1; + unsigned int cl_shutdown: 1; + struct xprtsec_parms cl_xprtsec; + struct rpc_rtt *cl_rtt; + const struct rpc_timeout *cl_timeout; + atomic_t cl_swapper; + int cl_nodelen; + char cl_nodename[65]; + struct rpc_pipe_dir_head cl_pipedir_objects; + struct rpc_clnt *cl_parent; + struct rpc_rtt cl_rtt_default; + struct rpc_timeout cl_timeout_default; + const struct rpc_program *cl_program; + const char *cl_principal; + struct rpc_sysfs_client *cl_sysfs; + union { + struct rpc_xprt_iter cl_xpi; + struct work_struct cl_work; + }; + const struct cred *cl_cred; + unsigned int cl_max_connect; + struct super_block *pipefs_sb; +}; + +struct rpc_xprt_ops; + +struct svc_xprt; + +struct svc_serv; + +struct xprt_class; + +struct rpc_sysfs_xprt; + +struct rpc_xprt { + struct kref kref; + const struct rpc_xprt_ops *ops; + unsigned int id; + const struct rpc_timeout *timeout; + struct __kernel_sockaddr_storage addr; + size_t addrlen; + int prot; + long unsigned int cong; + long unsigned int cwnd; + size_t max_payload; + struct rpc_wait_queue binding; + struct rpc_wait_queue sending; + struct rpc_wait_queue pending; + struct rpc_wait_queue backlog; + struct list_head free; + unsigned int max_reqs; + unsigned int min_reqs; + unsigned int num_reqs; + long unsigned int state; + unsigned char resvport: 1; + unsigned char reuseport: 1; + atomic_t swapper; + unsigned int bind_index; + struct list_head xprt_switch; + long unsigned int bind_timeout; + long unsigned int reestablish_timeout; + struct xprtsec_parms xprtsec; + unsigned int connect_cookie; + struct work_struct task_cleanup; + struct timer_list timer; + long unsigned int last_used; + long unsigned int idle_timeout; + long unsigned int connect_timeout; + long unsigned int max_reconnect_timeout; + atomic_long_t queuelen; + spinlock_t transport_lock; + spinlock_t reserve_lock; + spinlock_t queue_lock; + u32 xid; + struct rpc_task *snd_task; + struct list_head xmit_queue; + atomic_long_t xmit_queuelen; + struct svc_xprt *bc_xprt; + struct svc_serv *bc_serv; + unsigned int bc_alloc_max; + unsigned int bc_alloc_count; + atomic_t bc_slot_count; + spinlock_t bc_pa_lock; + struct list_head bc_pa_list; + struct rb_root recv_queue; + struct { + long unsigned int bind_count; + long unsigned int connect_count; + long unsigned int connect_start; + long unsigned int connect_time; + long unsigned int sends; + long unsigned int recvs; + long unsigned int bad_xids; + long unsigned int max_slots; + long long unsigned int req_u; + long long unsigned int bklog_u; + long long unsigned int sending_u; + long long unsigned int pending_u; + } stat; + struct net *xprt_net; + netns_tracker ns_tracker; + const char *servername; + const char *address_strings[6]; + struct callback_head rcu; + const struct xprt_class *xprt_class; + struct rpc_sysfs_xprt *xprt_sysfs; + bool main; +}; + +struct rpc_credops; + +struct rpc_cred { + struct hlist_node cr_hash; + struct list_head cr_lru; + struct callback_head cr_rcu; + struct rpc_auth *cr_auth; + const struct rpc_credops *cr_ops; + long unsigned int cr_expire; + long unsigned int cr_flags; + refcount_t cr_count; + const struct cred *cr_cred; +}; + +struct rpc_task_setup { + struct rpc_task *task; + struct rpc_clnt *rpc_client; + struct rpc_xprt *rpc_xprt; + struct rpc_cred *rpc_op_cred; + const struct rpc_message *rpc_message; + const struct rpc_call_ops *callback_ops; + void *callback_data; + struct workqueue_struct *workqueue; + short unsigned int flags; + signed char priority; +}; + +struct lwq { + spinlock_t lock; + struct llist_node *ready; + struct llist_head new; +}; + +struct rpc_xprt_ops { + void (*set_buffer_size)(struct rpc_xprt *, size_t, size_t); + int (*reserve_xprt)(struct rpc_xprt *, struct rpc_task *); + void (*release_xprt)(struct rpc_xprt *, struct rpc_task *); + void (*alloc_slot)(struct rpc_xprt *, struct rpc_task *); + void (*free_slot)(struct rpc_xprt *, struct rpc_rqst *); + void (*rpcbind)(struct rpc_task *); + void (*set_port)(struct rpc_xprt *, short unsigned int); + void (*connect)(struct rpc_xprt *, struct rpc_task *); + int (*get_srcaddr)(struct rpc_xprt *, char *, size_t); + short unsigned int (*get_srcport)(struct rpc_xprt *); + int (*buf_alloc)(struct rpc_task *); + void (*buf_free)(struct rpc_task *); + int (*prepare_request)(struct rpc_rqst *, struct xdr_buf *); + int (*send_request)(struct rpc_rqst *); + void (*abort_send_request)(struct rpc_rqst *); + void (*wait_for_reply_request)(struct rpc_task *); + void (*timer)(struct rpc_xprt *, struct rpc_task *); + void (*release_request)(struct rpc_task *); + void (*close)(struct rpc_xprt *); + void (*destroy)(struct rpc_xprt *); + void (*set_connect_timeout)(struct rpc_xprt *, long unsigned int, long unsigned int); + void (*print_stats)(struct rpc_xprt *, struct seq_file *); + int (*enable_swap)(struct rpc_xprt *); + void (*disable_swap)(struct rpc_xprt *); + void (*inject_disconnect)(struct rpc_xprt *); + int (*bc_setup)(struct rpc_xprt *, unsigned int); + size_t (*bc_maxpayload)(struct rpc_xprt *); + unsigned int (*bc_num_slots)(struct rpc_xprt *); + void (*bc_free_rqst)(struct rpc_rqst *); + void (*bc_destroy)(struct rpc_xprt *, unsigned int); +}; + +enum xprt_transports { + XPRT_TRANSPORT_UDP = 17, + XPRT_TRANSPORT_TCP = 6, + XPRT_TRANSPORT_BC_TCP = -2147483642, + XPRT_TRANSPORT_RDMA = 256, + XPRT_TRANSPORT_BC_RDMA = -2147483392, + XPRT_TRANSPORT_LOCAL = 257, + XPRT_TRANSPORT_TCP_TLS = 258, +}; + +struct svc_program; + +struct svc_stat; + +struct svc_pool; + +struct svc_serv { + struct svc_program *sv_programs; + struct svc_stat *sv_stats; + spinlock_t sv_lock; + unsigned int sv_nprogs; + unsigned int sv_nrthreads; + unsigned int sv_maxconn; + unsigned int sv_max_payload; + unsigned int sv_max_mesg; + unsigned int sv_xdrsize; + struct list_head sv_permsocks; + struct list_head sv_tempsocks; + int sv_tmpcnt; + struct timer_list sv_temptimer; + char *sv_name; + unsigned int sv_nrpools; + bool sv_is_pooled; + struct svc_pool *sv_pools; + int (*sv_threadfn)(void *); + struct lwq sv_cb_list; + bool sv_bc_enabled; +}; + +struct xprt_create; + +struct xprt_class { + struct list_head list; + int ident; + struct rpc_xprt * (*setup)(struct xprt_create *); + struct module *owner; + char name[32]; + const char *netid[0]; +}; + +struct xprt_create { + int ident; + struct net *net; + struct sockaddr *srcaddr; + struct sockaddr *dstaddr; + size_t addrlen; + const char *servername; + struct svc_xprt *bc_xprt; + struct rpc_xprt_switch *bc_xps; + unsigned int flags; + struct xprtsec_parms xprtsec; + long unsigned int connect_timeout; + long unsigned int reconnect_timeout; +}; + +struct rpc_sysfs_xprt_switch; + +struct rpc_xprt_switch { + spinlock_t xps_lock; + struct kref xps_kref; + unsigned int xps_id; + unsigned int xps_nxprts; + unsigned int xps_nactive; + unsigned int xps_nunique_destaddr_xprts; + atomic_long_t xps_queuelen; + struct list_head xps_xprt_list; + struct net *xps_net; + const struct rpc_xprt_iter_ops *xps_iter_ops; + struct rpc_sysfs_xprt_switch *xps_sysfs; + struct callback_head xps_rcu; +}; + +struct auth_cred { + const struct cred *cred; + const char *principal; +}; + +struct rpc_authops; + +struct rpc_cred_cache; + +struct rpc_auth { + unsigned int au_cslack; + unsigned int au_rslack; + unsigned int au_verfsize; + unsigned int au_ralign; + long unsigned int au_flags; + const struct rpc_authops *au_ops; + rpc_authflavor_t au_flavor; + refcount_t au_count; + struct rpc_cred_cache *au_credcache; +}; + +struct rpc_credops { + const char *cr_name; + int (*cr_init)(struct rpc_auth *, struct rpc_cred *); + void (*crdestroy)(struct rpc_cred *); + int (*crmatch)(struct auth_cred *, struct rpc_cred *, int); + int (*crmarshal)(struct rpc_task *, struct xdr_stream *); + int (*crrefresh)(struct rpc_task *); + int (*crvalidate)(struct rpc_task *, struct xdr_stream *); + int (*crwrap_req)(struct rpc_task *, struct xdr_stream *); + int (*crunwrap_resp)(struct rpc_task *, struct xdr_stream *); + int (*crkey_timeout)(struct rpc_cred *); + char * (*crstringify_acceptor)(struct rpc_cred *); + bool (*crneed_reencode)(struct rpc_task *); +}; + +struct rpc_auth_create_args; + +struct rpcsec_gss_info; + +struct rpc_authops { + struct module *owner; + rpc_authflavor_t au_flavor; + char *au_name; + struct rpc_auth * (*create)(const struct rpc_auth_create_args *, struct rpc_clnt *); + void (*destroy)(struct rpc_auth *); + int (*hash_cred)(struct auth_cred *, unsigned int); + struct rpc_cred * (*lookup_cred)(struct rpc_auth *, struct auth_cred *, int); + struct rpc_cred * (*crcreate)(struct rpc_auth *, struct auth_cred *, int, gfp_t); + rpc_authflavor_t (*info2flavor)(struct rpcsec_gss_info *); + int (*flavor2info)(rpc_authflavor_t, struct rpcsec_gss_info *); + int (*key_timeout)(struct rpc_auth *, struct rpc_cred *); + int (*ping)(struct rpc_clnt *); +}; + +struct rpc_auth_create_args { + rpc_authflavor_t pseudoflavor; + const char *target_name; +}; + +struct rpcsec_gss_oid { + unsigned int len; + u8 data[32]; +}; + +struct rpcsec_gss_info { + struct rpcsec_gss_oid oid; + u32 qop; + u32 service; +}; + +struct rpc_stat { + const struct rpc_program *program; + unsigned int netcnt; + unsigned int netudpcnt; + unsigned int nettcpcnt; + unsigned int nettcpconn; + unsigned int netreconn; + unsigned int rpccnt; + unsigned int rpcretrans; + unsigned int rpcauthrefresh; + unsigned int rpcgarbage; +}; + +struct rpc_version; + +struct rpc_program { + const char *name; + u32 number; + unsigned int nrvers; + const struct rpc_version **version; + struct rpc_stat *stats; + const char *pipe_dir_name; +}; + +struct svc_stat { + struct svc_program *program; + unsigned int netcnt; + unsigned int netudpcnt; + unsigned int nettcpcnt; + unsigned int nettcpconn; + unsigned int rpccnt; + unsigned int rpcbadfmt; + unsigned int rpcbadauth; + unsigned int rpcbadclnt; +}; + +enum svc_auth_status { + SVC_GARBAGE = 1, + SVC_SYSERR = 2, + SVC_VALID = 3, + SVC_NEGATIVE = 4, + SVC_OK = 5, + SVC_DROP = 6, + SVC_CLOSE = 7, + SVC_DENIED = 8, + SVC_PENDING = 9, + SVC_COMPLETE = 10, +}; + +struct svc_version; + +struct svc_rqst; + +struct svc_process_info; + +struct svc_program { + u32 pg_prog; + unsigned int pg_lovers; + unsigned int pg_hivers; + unsigned int pg_nvers; + const struct svc_version **pg_vers; + char *pg_name; + char *pg_class; + enum svc_auth_status (*pg_authenticate)(struct svc_rqst *); + __be32 (*pg_init_request)(struct svc_rqst *, const struct svc_program *, struct svc_process_info *); + int (*pg_rpcbind_set)(struct net *, const struct svc_program *, u32, int, short unsigned int, short unsigned int); +}; + +struct rpc_xprt_iter_ops { + void (*xpi_rewind)(struct rpc_xprt_iter *); + struct rpc_xprt * (*xpi_xprt)(struct rpc_xprt_iter *); + struct rpc_xprt * (*xpi_next)(struct rpc_xprt_iter *); +}; + +struct rpc_sysfs_client { + struct kobject kobject; + struct net *net; + struct rpc_clnt *clnt; + struct rpc_xprt_switch *xprt_switch; +}; + +struct rpc_iostats { + spinlock_t om_lock; + long unsigned int om_ops; + long unsigned int om_ntrans; + long unsigned int om_timeouts; + long long unsigned int om_bytes_sent; + long long unsigned int om_bytes_recv; + ktime_t om_queue; + ktime_t om_rtt; + ktime_t om_execute; + long unsigned int om_error_status; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct rpc_version { + u32 number; + unsigned int nrprocs; + const struct rpc_procinfo *procs; + unsigned int *counts; +}; + +struct nfs_fh { + short unsigned int size; + unsigned char data[128]; +}; + +enum nfs3_stable_how { + NFS_UNSTABLE = 0, + NFS_DATA_SYNC = 1, + NFS_FILE_SYNC = 2, + NFS_INVALID_STABLE_HOW = -1, +}; + +struct nfs4_label { + uint32_t lfs; + uint32_t pi; + u32 len; + char *label; +}; + +typedef struct { + char data[8]; +} nfs4_verifier; + +struct nfs4_stateid_struct { + union { + char data[16]; + struct { + __be32 seqid; + char other[12]; + }; + }; + enum { + NFS4_INVALID_STATEID_TYPE = 0, + NFS4_SPECIAL_STATEID_TYPE = 1, + NFS4_OPEN_STATEID_TYPE = 2, + NFS4_LOCK_STATEID_TYPE = 3, + NFS4_DELEGATION_STATEID_TYPE = 4, + NFS4_LAYOUT_STATEID_TYPE = 5, + NFS4_PNFS_DS_STATEID_TYPE = 6, + NFS4_REVOKED_STATEID_TYPE = 7, + } type; +}; + +typedef struct nfs4_stateid_struct nfs4_stateid; + +struct nfs4_sessionid { + unsigned char data[16]; +}; + +enum pnfs_iomode { + IOMODE_READ = 1, + IOMODE_RW = 2, + IOMODE_ANY = 3, +}; + +struct nfs4_deviceid { + char data[16]; +}; + +enum nfs4_change_attr_type { + NFS4_CHANGE_TYPE_IS_MONOTONIC_INCR = 0, + NFS4_CHANGE_TYPE_IS_VERSION_COUNTER = 1, + NFS4_CHANGE_TYPE_IS_VERSION_COUNTER_NOPNFS = 2, + NFS4_CHANGE_TYPE_IS_TIME_METADATA = 3, + NFS4_CHANGE_TYPE_IS_UNDEFINED = 4, +}; + +struct gss_api_mech; + +struct gss_ctx { + struct gss_api_mech *mech_type; + void *internal_ctx_id; + unsigned int slack; + unsigned int align; +}; + +struct gss_api_ops; + +struct pf_desc; + +struct gss_api_mech { + struct list_head gm_list; + struct module *gm_owner; + struct rpcsec_gss_oid gm_oid; + char *gm_name; + const struct gss_api_ops *gm_ops; + int gm_pf_num; + struct pf_desc *gm_pfs; + const char *gm_upcall_enctypes; +}; + +struct auth_domain; + +struct pf_desc { + u32 pseudoflavor; + u32 qop; + u32 service; + char *name; + char *auth_domain_name; + struct auth_domain *domain; + bool datatouch; +}; + +struct auth_ops; + +struct auth_domain { + struct kref ref; + struct hlist_node hash; + char *name; + struct auth_ops *flavour; + struct callback_head callback_head; +}; + +struct gss_api_ops { + int (*gss_import_sec_context)(const void *, size_t, struct gss_ctx *, time64_t *, gfp_t); + u32 (*gss_get_mic)(struct gss_ctx *, struct xdr_buf *, struct xdr_netobj *); + u32 (*gss_verify_mic)(struct gss_ctx *, struct xdr_buf *, struct xdr_netobj *); + u32 (*gss_wrap)(struct gss_ctx *, int, struct xdr_buf *, struct page **); + u32 (*gss_unwrap)(struct gss_ctx *, int, int, struct xdr_buf *); + void (*gss_delete_sec_context)(void *); +}; + +struct nfs4_string { + unsigned int len; + char *data; +}; + +struct nfs_fsid { + uint64_t major; + uint64_t minor; +}; + +struct nfs4_threshold { + __u32 bm; + __u32 l_type; + __u64 rd_sz; + __u64 wr_sz; + __u64 rd_io_sz; + __u64 wr_io_sz; +}; + +struct nfs_fattr { + unsigned int valid; + umode_t mode; + __u32 nlink; + kuid_t uid; + kgid_t gid; + dev_t rdev; + __u64 size; + union { + struct { + __u32 blocksize; + __u32 blocks; + } nfs2; + struct { + __u64 used; + } nfs3; + } du; + struct nfs_fsid fsid; + __u64 fileid; + __u64 mounted_on_fileid; + struct timespec64 atime; + struct timespec64 mtime; + struct timespec64 ctime; + __u64 change_attr; + __u64 pre_change_attr; + __u64 pre_size; + struct timespec64 pre_mtime; + struct timespec64 pre_ctime; + long unsigned int time_start; + long unsigned int gencount; + struct nfs4_string *owner_name; + struct nfs4_string *group_name; + struct nfs4_threshold *mdsthreshold; + struct nfs4_label *label; +}; + +struct nfs_fsinfo { + struct nfs_fattr *fattr; + __u32 rtmax; + __u32 rtpref; + __u32 rtmult; + __u32 wtmax; + __u32 wtpref; + __u32 wtmult; + __u32 dtpref; + __u64 maxfilesize; + struct timespec64 time_delta; + __u32 lease_time; + __u32 nlayouttypes; + __u32 layouttype[8]; + __u32 blksize; + __u32 clone_blksize; + enum nfs4_change_attr_type change_attr_type; + __u32 xattr_support; +}; + +struct nfs_fsstat { + struct nfs_fattr *fattr; + __u64 tbytes; + __u64 fbytes; + __u64 abytes; + __u64 tfiles; + __u64 ffiles; + __u64 afiles; +}; + +struct nfs_pathconf { + struct nfs_fattr *fattr; + __u32 max_link; + __u32 max_namelen; +}; + +struct nfs4_change_info { + u32 atomic; + u64 before; + u64 after; +}; + +struct nfs4_channel_attrs { + u32 max_rqst_sz; + u32 max_resp_sz; + u32 max_resp_sz_cached; + u32 max_ops; + u32 max_reqs; +}; + +struct nfs4_slot; + +struct nfs4_sequence_args { + struct nfs4_slot *sa_slot; + u8 sa_cache_this: 1; + u8 sa_privileged: 1; +}; + +struct nfs4_slot_table; + +struct nfs4_slot { + struct nfs4_slot_table *table; + struct nfs4_slot *next; + long unsigned int generation; + u32 slot_nr; + u32 seq_nr; + u32 seq_nr_last_acked; + u32 seq_nr_highest_sent; + unsigned int privileged: 1; + unsigned int seq_done: 1; +}; + +struct nfs4_sequence_res { + struct nfs4_slot *sr_slot; + long unsigned int sr_timestamp; + int sr_status; + u32 sr_status_flags; + u32 sr_highest_slotid; + u32 sr_target_highest_slotid; +}; + +struct nfs4_xdr_opaque_data; + +struct nfs4_xdr_opaque_ops { + void (*encode)(struct xdr_stream *, const void *, const struct nfs4_xdr_opaque_data *); + void (*free)(struct nfs4_xdr_opaque_data *); +}; + +struct nfs4_xdr_opaque_data { + const struct nfs4_xdr_opaque_ops *ops; + void *data; +}; + +struct nfs4_layoutdriver_data { + struct page **pages; + __u32 pglen; + __u32 len; +}; + +struct pnfs_layout_range { + u32 iomode; + u64 offset; + u64 length; +}; + +struct nfs_open_context; + +struct nfs_lock_context { + refcount_t count; + struct list_head list; + struct nfs_open_context *open_context; + fl_owner_t lockowner; + atomic_t io_count; + struct callback_head callback_head; +}; + +struct nfs4_state; + +struct nfs_open_context { + struct nfs_lock_context lock_context; + fl_owner_t flock_owner; + struct dentry *dentry; + const struct cred *cred; + struct rpc_cred *ll_cred; + struct nfs4_state *state; + fmode_t mode; + long unsigned int flags; + int error; + struct list_head list; + struct nfs4_threshold *mdsthreshold; + struct callback_head callback_head; +}; + +struct nfs4_layoutget_res { + struct nfs4_sequence_res seq_res; + int status; + __u32 return_on_close; + struct pnfs_layout_range range; + __u32 type; + nfs4_stateid stateid; + struct nfs4_layoutdriver_data *layoutp; +}; + +struct pnfs_layout_hdr { + refcount_t plh_refcount; + atomic_t plh_outstanding; + struct list_head plh_layouts; + struct list_head plh_bulk_destroy; + struct list_head plh_segs; + struct list_head plh_return_segs; + long unsigned int plh_block_lgets; + long unsigned int plh_retry_timestamp; + long unsigned int plh_flags; + nfs4_stateid plh_stateid; + u32 plh_barrier; + u32 plh_return_seq; + enum pnfs_iomode plh_return_iomode; + loff_t plh_lwb; + const struct cred *plh_lc_cred; + struct inode *plh_inode; + struct callback_head plh_rcu; +}; + +struct pnfs_device { + struct nfs4_deviceid dev_id; + unsigned int layout_type; + unsigned int mincount; + unsigned int maxcount; + struct page **pages; + unsigned int pgbase; + unsigned int pglen; + unsigned char nocache: 1; +}; + +struct nfs4_layoutcommit_args { + struct nfs4_sequence_args seq_args; + nfs4_stateid stateid; + __u64 lastbytewritten; + struct inode *inode; + const u32 *bitmask; + size_t layoutupdate_len; + struct page *layoutupdate_page; + struct page **layoutupdate_pages; + __be32 *start_p; +}; + +struct nfs_server; + +struct nfs4_layoutcommit_res { + struct nfs4_sequence_res seq_res; + struct nfs_fattr *fattr; + const struct nfs_server *server; + int status; +}; + +struct nfs_auth_info { + unsigned int flavor_len; + rpc_authflavor_t flavors[12]; +}; + +struct nfs_client; + +struct nlm_host; + +struct nfs_iostats; + +struct pnfs_layoutdriver_type; + +struct nfs_server { + struct nfs_client *nfs_client; + struct list_head client_link; + struct list_head master_link; + struct rpc_clnt *client; + struct rpc_clnt *client_acl; + struct nlm_host *nlm_host; + struct nfs_iostats *io_stats; + wait_queue_head_t write_congestion_wait; + atomic_long_t writeback; + unsigned int write_congested; + unsigned int flags; + unsigned int fattr_valid; + unsigned int caps; + unsigned int rsize; + unsigned int rpages; + unsigned int wsize; + unsigned int wpages; + unsigned int wtmult; + unsigned int dtsize; + short unsigned int port; + unsigned int bsize; + unsigned int gxasize; + unsigned int sxasize; + unsigned int lxasize; + unsigned int acregmin; + unsigned int acregmax; + unsigned int acdirmin; + unsigned int acdirmax; + unsigned int namelen; + unsigned int options; + unsigned int clone_blksize; + enum nfs4_change_attr_type change_attr_type; + struct nfs_fsid fsid; + int s_sysfs_id; + __u64 maxfilesize; + struct timespec64 time_delta; + long unsigned int mount_time; + struct super_block *super; + dev_t s_dev; + struct nfs_auth_info auth_info; + struct fscache_volume *fscache; + char *fscache_uniq; + u32 fh_expire_type; + u32 pnfs_blksize; + u32 attr_bitmask[3]; + u32 attr_bitmask_nl[3]; + u32 exclcreat_bitmask[3]; + u32 cache_consistency_bitmask[3]; + u32 acl_bitmask; + struct pnfs_layoutdriver_type *pnfs_curr_ld; + struct rpc_wait_queue roc_rpcwaitq; + void *pnfs_ld_data; + struct rb_root state_owners; + atomic64_t owner_ctr; + struct list_head state_owners_lru; + struct list_head layouts; + struct list_head delegations; + struct list_head ss_copies; + struct list_head ss_src_copies; + long unsigned int delegation_flags; + long unsigned int delegation_gen; + long unsigned int mig_gen; + long unsigned int mig_status; + void (*destroy)(struct nfs_server *); + atomic_t active; + struct __kernel_sockaddr_storage mountd_address; + size_t mountd_addrlen; + u32 mountd_version; + short unsigned int mountd_port; + short unsigned int mountd_protocol; + struct rpc_wait_queue uoc_rpcwaitq; + unsigned int read_hdrsize; + const struct cred *cred; + bool has_sec_mnt_opts; + struct kobject kobj; + struct callback_head rcu; +}; + +struct nfs4_layoutcommit_data { + struct rpc_task task; + struct nfs_fattr fattr; + struct list_head lseg_list; + const struct cred *cred; + struct inode *inode; + struct nfs4_layoutcommit_args args; + struct nfs4_layoutcommit_res res; +}; + +struct nfs4_layoutreturn_args { + struct nfs4_sequence_args seq_args; + struct pnfs_layout_hdr *layout; + struct inode *inode; + struct pnfs_layout_range range; + nfs4_stateid stateid; + __u32 layout_type; + struct nfs4_xdr_opaque_data *ld_private; +}; + +struct nfs_rpc_ops; + +struct nfs_subversion; + +struct idmap; + +struct nfs4_minor_version_ops; + +struct nfs4_session; + +struct nfs41_server_owner; + +struct nfs41_server_scope; + +struct nfs41_impl_id; + +struct nfs_client { + refcount_t cl_count; + atomic_t cl_mds_count; + int cl_cons_state; + long unsigned int cl_res_state; + long unsigned int cl_flags; + struct __kernel_sockaddr_storage cl_addr; + size_t cl_addrlen; + char *cl_hostname; + char *cl_acceptor; + struct list_head cl_share_link; + struct list_head cl_superblocks; + struct rpc_clnt *cl_rpcclient; + const struct nfs_rpc_ops *rpc_ops; + int cl_proto; + struct nfs_subversion *cl_nfs_mod; + u32 cl_minorversion; + unsigned int cl_nconnect; + unsigned int cl_max_connect; + const char *cl_principal; + struct xprtsec_parms cl_xprtsec; + struct list_head cl_ds_clients; + u64 cl_clientid; + nfs4_verifier cl_confirm; + long unsigned int cl_state; + spinlock_t cl_lock; + long unsigned int cl_lease_time; + long unsigned int cl_last_renewal; + struct delayed_work cl_renewd; + struct rpc_wait_queue cl_rpcwaitq; + struct idmap *cl_idmap; + const char *cl_owner_id; + u32 cl_cb_ident; + const struct nfs4_minor_version_ops *cl_mvops; + long unsigned int cl_mig_gen; + struct nfs4_slot_table *cl_slot_tbl; + u32 cl_seqid; + u32 cl_exchange_flags; + struct nfs4_session *cl_session; + bool cl_preserve_clid; + struct nfs41_server_owner *cl_serverowner; + struct nfs41_server_scope *cl_serverscope; + struct nfs41_impl_id *cl_implid; + long unsigned int cl_sp4_flags; + wait_queue_head_t cl_lock_waitq; + char cl_ipaddr[48]; + struct net *cl_net; + struct list_head pending_cb_stateids; + struct callback_head rcu; +}; + +struct nfs42_layoutstat_devinfo; + +struct nfs42_layoutstat_args { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fh; + struct inode *inode; + nfs4_stateid stateid; + int num_dev; + struct nfs42_layoutstat_devinfo *devinfo; +}; + +struct nfs42_layoutstat_devinfo { + struct nfs4_deviceid dev_id; + __u64 offset; + __u64 length; + __u64 read_count; + __u64 read_bytes; + __u64 write_count; + __u64 write_bytes; + __u32 layout_type; + struct nfs4_xdr_opaque_data ld_private; +}; + +struct pnfs_layout_segment { + struct list_head pls_list; + struct list_head pls_lc_list; + struct list_head pls_commits; + struct pnfs_layout_range pls_range; + refcount_t pls_refcount; + u32 pls_seq; + long unsigned int pls_flags; + struct pnfs_layout_hdr *pls_layout; +}; + +struct nfs_seqid_counter; + +struct nfs_seqid { + struct nfs_seqid_counter *sequence; + struct list_head list; + struct rpc_task *task; +}; + +struct nfs_write_verifier { + char data[8]; +}; + +struct nfs_writeverf { + struct nfs_write_verifier verifier; + enum nfs3_stable_how committed; +}; + +struct nfs_pgio_args { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fh; + struct nfs_open_context *context; + struct nfs_lock_context *lock_context; + nfs4_stateid stateid; + __u64 offset; + __u32 count; + unsigned int pgbase; + struct page **pages; + union { + unsigned int replen; + struct { + const u32 *bitmask; + u32 bitmask_store[3]; + enum nfs3_stable_how stable; + }; + }; +}; + +struct nfs_pgio_res { + struct nfs4_sequence_res seq_res; + struct nfs_fattr *fattr; + __u64 count; + __u32 op_status; + union { + struct { + unsigned int replen; + int eof; + void *scratch; + }; + struct { + struct nfs_writeverf *verf; + const struct nfs_server *server; + }; + }; +}; + +struct nfs_commitargs { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fh; + __u64 offset; + __u32 count; + const u32 *bitmask; +}; + +struct nfs_commitres { + struct nfs4_sequence_res seq_res; + __u32 op_status; + struct nfs_fattr *fattr; + struct nfs_writeverf *verf; + const struct nfs_server *server; +}; + +struct nfs_removeargs { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *fh; + struct qstr name; +}; + +struct nfs_removeres { + struct nfs4_sequence_res seq_res; + struct nfs_server *server; + struct nfs_fattr *dir_attr; + struct nfs4_change_info cinfo; +}; + +struct nfs_renameargs { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *old_dir; + const struct nfs_fh *new_dir; + const struct qstr *old_name; + const struct qstr *new_name; +}; + +struct nfs_renameres { + struct nfs4_sequence_res seq_res; + struct nfs_server *server; + struct nfs4_change_info old_cinfo; + struct nfs_fattr *old_fattr; + struct nfs4_change_info new_cinfo; + struct nfs_fattr *new_fattr; +}; + +struct nfs_entry { + __u64 ino; + __u64 cookie; + const char *name; + unsigned int len; + int eof; + struct nfs_fh *fh; + struct nfs_fattr *fattr; + unsigned char d_type; + struct nfs_server *server; +}; + +struct nfs_readdir_arg { + struct dentry *dentry; + const struct cred *cred; + __be32 *verf; + u64 cookie; + struct page **pages; + unsigned int page_len; + bool plus; +}; + +struct nfs_readdir_res { + __be32 *verf; +}; + +struct nfs4_pathname { + unsigned int ncomponents; + struct nfs4_string components[512]; +}; + +struct nfs4_fs_location { + unsigned int nservers; + struct nfs4_string servers[10]; + struct nfs4_pathname rootpath; +}; + +struct nfs4_fs_locations { + struct nfs_fattr *fattr; + const struct nfs_server *server; + struct nfs4_pathname fs_path; + int nlocations; + struct nfs4_fs_location locations[10]; +}; + +struct nfstime4 { + u64 seconds; + u32 nseconds; +}; + +struct pnfs_commit_ops; + +struct pnfs_ds_commit_info { + struct list_head commits; + unsigned int nwritten; + unsigned int ncommitting; + const struct pnfs_commit_ops *ops; +}; + +struct nfs_commit_info; + +struct nfs_page; + +struct pnfs_commit_ops { + void (*setup_ds_info)(struct pnfs_ds_commit_info *, struct pnfs_layout_segment *); + void (*release_ds_info)(struct pnfs_ds_commit_info *, struct inode *); + int (*commit_pagelist)(struct inode *, struct list_head *, int, struct nfs_commit_info *); + void (*mark_request_commit)(struct nfs_page *, struct pnfs_layout_segment *, struct nfs_commit_info *, u32); + void (*clear_request_commit)(struct nfs_page *, struct nfs_commit_info *); + int (*scan_commit_lists)(struct nfs_commit_info *, int); + void (*recover_commit_reqs)(struct list_head *, struct nfs_commit_info *); +}; + +struct nfs41_server_owner { + uint64_t minor_id; + uint32_t major_id_sz; + char major_id[1024]; +}; + +struct nfs41_server_scope { + uint32_t server_scope_sz; + char server_scope[1024]; +}; + +struct nfs41_impl_id { + char domain[1025]; + char name[1025]; + struct nfstime4 date; +}; + +struct nfs_page_array { + struct page **pagevec; + unsigned int npages; + struct page *page_array[8]; +}; + +struct nfs_pgio_completion_ops; + +struct nfs_rw_ops; + +struct nfs_io_completion; + +struct nfs_direct_req; + +struct nfs_pgio_header { + struct inode *inode; + const struct cred *cred; + struct list_head pages; + struct nfs_page *req; + struct nfs_writeverf verf; + fmode_t rw_mode; + struct pnfs_layout_segment *lseg; + loff_t io_start; + const struct rpc_call_ops *mds_ops; + void (*release)(struct nfs_pgio_header *); + const struct nfs_pgio_completion_ops *completion_ops; + const struct nfs_rw_ops *rw_ops; + struct nfs_io_completion *io_completion; + struct nfs_direct_req *dreq; + void *netfs; + int pnfs_error; + int error; + unsigned int good_bytes; + long unsigned int flags; + struct rpc_task task; + struct nfs_fattr fattr; + struct nfs_pgio_args args; + struct nfs_pgio_res res; + long unsigned int timestamp; + int (*pgio_done_cb)(struct rpc_task *, struct nfs_pgio_header *); + __u64 mds_offset; + struct nfs_page_array page_array; + struct nfs_client *ds_clp; + u32 ds_commit_idx; + u32 pgio_mirror_idx; +}; + +struct nfs_page { + struct list_head wb_list; + union { + struct page *wb_page; + struct folio *wb_folio; + }; + struct nfs_lock_context *wb_lock_context; + long unsigned int wb_index; + unsigned int wb_offset; + unsigned int wb_pgbase; + unsigned int wb_bytes; + struct kref wb_kref; + long unsigned int wb_flags; + struct nfs_write_verifier wb_verf; + struct nfs_page *wb_this_page; + struct nfs_page *wb_head; + short unsigned int wb_nio; +}; + +struct nfs_pgio_completion_ops { + void (*error_cleanup)(struct list_head *, int); + void (*init_hdr)(struct nfs_pgio_header *); + void (*completion)(struct nfs_pgio_header *); + void (*reschedule_io)(struct nfs_pgio_header *); +}; + +struct nfs_rw_ops { + struct nfs_pgio_header * (*rw_alloc_header)(void); + void (*rw_free_header)(struct nfs_pgio_header *); + int (*rw_done)(struct rpc_task *, struct nfs_pgio_header *, struct inode *); + void (*rw_result)(struct rpc_task *, struct nfs_pgio_header *); + void (*rw_initiate)(struct nfs_pgio_header *, struct rpc_message *, const struct nfs_rpc_ops *, struct rpc_task_setup *, int); +}; + +struct nfs_mds_commit_info { + atomic_t rpcs_out; + atomic_long_t ncommit; + struct list_head list; +}; + +struct nfs_direct_req { + struct kref kref; + struct nfs_open_context *ctx; + struct nfs_lock_context *l_ctx; + struct kiocb *iocb; + struct inode *inode; + atomic_t io_count; + spinlock_t lock; + loff_t io_start; + ssize_t count; + ssize_t max_count; + ssize_t error; + struct completion completion; + struct nfs_mds_commit_info mds_cinfo; + struct pnfs_ds_commit_info ds_cinfo; + struct work_struct work; + int flags; +}; + +struct nfs_commit_data; + +struct nfs_commit_completion_ops { + void (*completion)(struct nfs_commit_data *); + void (*resched_write)(struct nfs_commit_info *, struct nfs_page *); +}; + +struct nfs_commit_data { + struct rpc_task task; + struct inode *inode; + const struct cred *cred; + struct nfs_fattr fattr; + struct nfs_writeverf verf; + struct list_head pages; + struct list_head list; + struct nfs_direct_req *dreq; + struct nfs_commitargs args; + struct nfs_commitres res; + struct nfs_open_context *context; + struct pnfs_layout_segment *lseg; + struct nfs_client *ds_clp; + int ds_commit_index; + loff_t lwb; + const struct rpc_call_ops *mds_ops; + const struct nfs_commit_completion_ops *completion_ops; + int (*commit_done_cb)(struct rpc_task *, struct nfs_commit_data *); + long unsigned int flags; +}; + +struct nfs_commit_info { + struct inode *inode; + struct nfs_mds_commit_info *mds; + struct pnfs_ds_commit_info *ds; + struct nfs_direct_req *dreq; + const struct nfs_commit_completion_ops *completion_ops; +}; + +struct nfs_unlinkdata { + struct nfs_removeargs args; + struct nfs_removeres res; + struct dentry *dentry; + wait_queue_head_t wq; + const struct cred *cred; + struct nfs_fattr dir_attr; + long int timeout; +}; + +struct nfs_renamedata { + struct nfs_renameargs args; + struct nfs_renameres res; + struct rpc_task task; + const struct cred *cred; + struct inode *old_dir; + struct dentry *old_dentry; + struct nfs_fattr old_fattr; + struct inode *new_dir; + struct dentry *new_dentry; + struct nfs_fattr new_fattr; + void (*complete)(struct rpc_task *, struct nfs_renamedata *); + long int timeout; + bool cancelled; +}; + +struct nlmclnt_operations; + +struct nfs_access_entry; + +struct nfs_client_initdata; + +struct nfs_rpc_ops { + u32 version; + const struct dentry_operations *dentry_ops; + const struct inode_operations *dir_inode_ops; + const struct inode_operations *file_inode_ops; + const struct file_operations *file_ops; + const struct nlmclnt_operations *nlmclnt_ops; + int (*getroot)(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); + int (*submount)(struct fs_context *, struct nfs_server *); + int (*try_get_tree)(struct fs_context *); + int (*getattr)(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *, struct inode *); + int (*setattr)(struct dentry *, struct nfs_fattr *, struct iattr *); + int (*lookup)(struct inode *, struct dentry *, struct nfs_fh *, struct nfs_fattr *); + int (*lookupp)(struct inode *, struct nfs_fh *, struct nfs_fattr *); + int (*access)(struct inode *, struct nfs_access_entry *, const struct cred *); + int (*readlink)(struct inode *, struct page *, unsigned int, unsigned int); + int (*create)(struct inode *, struct dentry *, struct iattr *, int); + int (*remove)(struct inode *, struct dentry *); + void (*unlink_setup)(struct rpc_message *, struct dentry *, struct inode *); + void (*unlink_rpc_prepare)(struct rpc_task *, struct nfs_unlinkdata *); + int (*unlink_done)(struct rpc_task *, struct inode *); + void (*rename_setup)(struct rpc_message *, struct dentry *, struct dentry *); + void (*rename_rpc_prepare)(struct rpc_task *, struct nfs_renamedata *); + int (*rename_done)(struct rpc_task *, struct inode *, struct inode *); + int (*link)(struct inode *, struct inode *, const struct qstr *); + int (*symlink)(struct inode *, struct dentry *, struct folio *, unsigned int, struct iattr *); + int (*mkdir)(struct inode *, struct dentry *, struct iattr *); + int (*rmdir)(struct inode *, const struct qstr *); + int (*readdir)(struct nfs_readdir_arg *, struct nfs_readdir_res *); + int (*mknod)(struct inode *, struct dentry *, struct iattr *, dev_t); + int (*statfs)(struct nfs_server *, struct nfs_fh *, struct nfs_fsstat *); + int (*fsinfo)(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); + int (*pathconf)(struct nfs_server *, struct nfs_fh *, struct nfs_pathconf *); + int (*set_capabilities)(struct nfs_server *, struct nfs_fh *); + int (*decode_dirent)(struct xdr_stream *, struct nfs_entry *, bool); + int (*pgio_rpc_prepare)(struct rpc_task *, struct nfs_pgio_header *); + void (*read_setup)(struct nfs_pgio_header *, struct rpc_message *); + int (*read_done)(struct rpc_task *, struct nfs_pgio_header *); + void (*write_setup)(struct nfs_pgio_header *, struct rpc_message *, struct rpc_clnt **); + int (*write_done)(struct rpc_task *, struct nfs_pgio_header *); + void (*commit_setup)(struct nfs_commit_data *, struct rpc_message *, struct rpc_clnt **); + void (*commit_rpc_prepare)(struct rpc_task *, struct nfs_commit_data *); + int (*commit_done)(struct rpc_task *, struct nfs_commit_data *); + int (*lock)(struct file *, int, struct file_lock *); + int (*lock_check_bounds)(const struct file_lock *); + void (*clear_acl_cache)(struct inode *); + void (*close_context)(struct nfs_open_context *, int); + struct inode * (*open_context)(struct inode *, struct nfs_open_context *, int, struct iattr *, int *); + int (*have_delegation)(struct inode *, fmode_t, int); + int (*return_delegation)(struct inode *); + struct nfs_client * (*alloc_client)(const struct nfs_client_initdata *); + struct nfs_client * (*init_client)(struct nfs_client *, const struct nfs_client_initdata *); + void (*free_client)(struct nfs_client *); + struct nfs_server * (*create_server)(struct fs_context *); + struct nfs_server * (*clone_server)(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *, rpc_authflavor_t); + int (*discover_trunking)(struct nfs_server *, struct nfs_fh *); + void (*enable_swap)(struct inode *); + void (*disable_swap)(struct inode *); +}; + +struct nlmclnt_operations { + void (*nlmclnt_alloc_call)(void *); + bool (*nlmclnt_unlock_prepare)(struct rpc_task *, void *); + void (*nlmclnt_release_call)(void *); +}; + +struct nfs_access_entry { + struct rb_node rb_node; + struct list_head lru; + kuid_t fsuid; + kgid_t fsgid; + struct group_info *group_info; + u64 timestamp; + __u32 mask; + struct callback_head callback_head; +}; + +struct nfs_client_initdata { + long unsigned int init_flags; + const char *hostname; + const struct __kernel_sockaddr_storage *addr; + const char *nodename; + const char *ip_addr; + size_t addrlen; + struct nfs_subversion *nfs_mod; + int proto; + u32 minorversion; + unsigned int nconnect; + unsigned int max_connect; + struct net *net; + const struct rpc_timeout *timeparms; + const struct cred *cred; + struct xprtsec_parms xprtsec; + long unsigned int connect_timeout; + long unsigned int reconnect_timeout; +}; + +struct nfs_subversion { + struct module *owner; + struct file_system_type *nfs_fs; + const struct rpc_version *rpc_vers; + const struct nfs_rpc_ops *rpc_ops; + const struct super_operations *sops; + const struct xattr_handler * const *xattr; + struct list_head list; +}; + +struct nfs4_state_recovery_ops; + +struct nfs4_state_maintenance_ops; + +struct nfs4_mig_recovery_ops; + +struct nfs4_minor_version_ops { + u32 minor_version; + unsigned int init_caps; + int (*init_client)(struct nfs_client *); + void (*shutdown_client)(struct nfs_client *); + bool (*match_stateid)(const nfs4_stateid *, const nfs4_stateid *); + int (*find_root_sec)(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); + void (*free_lock_state)(struct nfs_server *, struct nfs4_lock_state *); + int (*test_and_free_expired)(struct nfs_server *, const nfs4_stateid *, const struct cred *); + struct nfs_seqid * (*alloc_seqid)(struct nfs_seqid_counter *, gfp_t); + void (*session_trunk)(struct rpc_clnt *, struct rpc_xprt *, void *); + const struct rpc_call_ops *call_sync_ops; + const struct nfs4_state_recovery_ops *reboot_recovery_ops; + const struct nfs4_state_recovery_ops *nograce_recovery_ops; + const struct nfs4_state_maintenance_ops *state_renewal_ops; + const struct nfs4_mig_recovery_ops *mig_recovery_ops; +}; + +struct nfs4_slot_table { + struct nfs4_session *session; + struct nfs4_slot *slots; + long unsigned int used_slots[16]; + spinlock_t slot_tbl_lock; + struct rpc_wait_queue slot_tbl_waitq; + wait_queue_head_t slot_waitq; + u32 max_slots; + u32 max_slotid; + u32 highest_used_slotid; + u32 target_highest_slotid; + u32 server_highest_slotid; + s32 d_target_highest_slotid; + s32 d2_target_highest_slotid; + long unsigned int generation; + struct completion complete; + long unsigned int slot_tbl_state; +}; + +struct nfs4_session { + struct nfs4_sessionid sess_id; + u32 flags; + long unsigned int session_state; + u32 hash_alg; + u32 ssv_len; + struct nfs4_channel_attrs fc_attrs; + struct nfs4_slot_table fc_slot_table; + struct nfs4_channel_attrs bc_attrs; + struct nfs4_slot_table bc_slot_table; + struct nfs_client *clp; +}; + +struct nfs_iostats { + long long unsigned int bytes[8]; + long unsigned int events[27]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum pnfs_try_status { + PNFS_ATTEMPTED = 0, + PNFS_NOT_ATTEMPTED = 1, + PNFS_TRY_AGAIN = 2, +}; + +struct nfs_pageio_ops; + +struct nfs4_deviceid_node; + +struct pnfs_layoutdriver_type { + struct list_head pnfs_tblid; + const u32 id; + const char *name; + struct module *owner; + unsigned int flags; + unsigned int max_layoutget_response; + int (*set_layoutdriver)(struct nfs_server *, const struct nfs_fh *); + int (*clear_layoutdriver)(struct nfs_server *); + struct pnfs_layout_hdr * (*alloc_layout_hdr)(struct inode *, gfp_t); + void (*free_layout_hdr)(struct pnfs_layout_hdr *); + struct pnfs_layout_segment * (*alloc_lseg)(struct pnfs_layout_hdr *, struct nfs4_layoutget_res *, gfp_t); + void (*free_lseg)(struct pnfs_layout_segment *); + void (*add_lseg)(struct pnfs_layout_hdr *, struct pnfs_layout_segment *, struct list_head *); + void (*return_range)(struct pnfs_layout_hdr *, struct pnfs_layout_range *); + const struct nfs_pageio_ops *pg_read_ops; + const struct nfs_pageio_ops *pg_write_ops; + struct pnfs_ds_commit_info * (*get_ds_info)(struct inode *); + int (*sync)(struct inode *, bool); + enum pnfs_try_status (*read_pagelist)(struct nfs_pgio_header *); + enum pnfs_try_status (*write_pagelist)(struct nfs_pgio_header *, int); + void (*free_deviceid_node)(struct nfs4_deviceid_node *); + struct nfs4_deviceid_node * (*alloc_deviceid_node)(struct nfs_server *, struct pnfs_device *, gfp_t); + int (*prepare_layoutreturn)(struct nfs4_layoutreturn_args *); + void (*cleanup_layoutcommit)(struct nfs4_layoutcommit_data *); + int (*prepare_layoutcommit)(struct nfs4_layoutcommit_args *); + int (*prepare_layoutstats)(struct nfs42_layoutstat_args *); + void (*cancel_io)(struct pnfs_layout_segment *); +}; + +struct nfs4_state_owner; + +struct nfs4_state { + struct list_head open_states; + struct list_head inode_states; + struct list_head lock_states; + struct nfs4_state_owner *owner; + struct inode *inode; + long unsigned int flags; + spinlock_t state_lock; + seqlock_t seqlock; + nfs4_stateid stateid; + nfs4_stateid open_stateid; + unsigned int n_rdonly; + unsigned int n_wronly; + unsigned int n_rdwr; + fmode_t state; + refcount_t count; + wait_queue_head_t waitq; + struct callback_head callback_head; +}; + +struct nfs4_cached_acl; + +struct nfs_delegation; + +struct nfs4_xattr_cache; + +struct nfs_inode { + __u64 fileid; + struct nfs_fh fh; + long unsigned int flags; + long unsigned int cache_validity; + long unsigned int read_cache_jiffies; + long unsigned int attrtimeo; + long unsigned int attrtimeo_timestamp; + long unsigned int attr_gencount; + struct rb_root access_cache; + struct list_head access_cache_entry_lru; + struct list_head access_cache_inode_lru; + union { + struct { + long unsigned int cache_change_attribute; + __be32 cookieverf[2]; + struct rw_semaphore rmdir_sem; + }; + struct { + atomic_long_t nrequests; + atomic_long_t redirtied_pages; + struct nfs_mds_commit_info commit_info; + struct mutex commit_mutex; + }; + }; + struct list_head open_files; + struct { + int cnt; + struct { + u64 start; + u64 end; + } gap[16]; + } *ooo; + struct nfs4_cached_acl *nfs4_acl; + struct list_head open_states; + struct nfs_delegation *delegation; + struct rw_semaphore rwsem; + struct pnfs_layout_hdr *layout; + __u64 write_io; + __u64 read_io; + struct nfs4_xattr_cache *xattr_cache; + union { + struct inode vfs_inode; + struct netfs_inode netfs; + }; +}; + +struct nfs_delegation { + struct list_head super_list; + const struct cred *cred; + struct inode *inode; + nfs4_stateid stateid; + fmode_t type; + long unsigned int pagemod_limit; + __u64 change_attr; + long unsigned int test_gen; + long unsigned int flags; + refcount_t refcount; + spinlock_t lock; + struct callback_head rcu; +}; + +struct nfs_seqid_counter { + ktime_t create_time; + u64 owner_id; + int flags; + u32 counter; + spinlock_t lock; + struct list_head list; + struct rpc_wait_queue wait; +}; + +struct nfs4_lock_state { + struct list_head ls_locks; + struct nfs4_state *ls_state; + long unsigned int ls_flags; + struct nfs_seqid_counter ls_seqid; + nfs4_stateid ls_stateid; + refcount_t ls_count; + fl_owner_t ls_owner; +}; + +struct svc_cred { + kuid_t cr_uid; + kgid_t cr_gid; + struct group_info *cr_group_info; + u32 cr_flavor; + char *cr_raw_principal; + char *cr_principal; + char *cr_targ_princ; + struct gss_api_mech *cr_gss_mech; +}; + +struct cache_deferred_req; + +struct cache_req { + struct cache_deferred_req * (*defer)(struct cache_req *); + long unsigned int thread_wait; +}; + +struct svc_procedure; + +struct svc_deferred_req; + +struct svc_rqst { + struct list_head rq_all; + struct llist_node rq_idle; + struct callback_head rq_rcu_head; + struct svc_xprt *rq_xprt; + struct __kernel_sockaddr_storage rq_addr; + size_t rq_addrlen; + struct __kernel_sockaddr_storage rq_daddr; + size_t rq_daddrlen; + struct svc_serv *rq_server; + struct svc_pool *rq_pool; + const struct svc_procedure *rq_procinfo; + struct auth_ops *rq_authop; + struct svc_cred rq_cred; + void *rq_xprt_ctxt; + struct svc_deferred_req *rq_deferred; + struct xdr_buf rq_arg; + struct xdr_stream rq_arg_stream; + struct xdr_stream rq_res_stream; + struct page *rq_scratch_page; + struct xdr_buf rq_res; + struct page *rq_pages[260]; + struct page **rq_respages; + struct page **rq_next_page; + struct page **rq_page_end; + struct folio_batch rq_fbatch; + struct kvec rq_vec[259]; + struct bio_vec rq_bvec[259]; + __be32 rq_xid; + u32 rq_prog; + u32 rq_vers; + u32 rq_proc; + u32 rq_prot; + int rq_cachetype; + long unsigned int rq_flags; + ktime_t rq_qtime; + void *rq_argp; + void *rq_resp; + __be32 *rq_accept_statp; + void *rq_auth_data; + __be32 rq_auth_stat; + int rq_auth_slack; + int rq_reserved; + ktime_t rq_stime; + struct cache_req rq_chandle; + struct auth_domain *rq_client; + struct auth_domain *rq_gssclient; + struct task_struct *rq_task; + struct net *rq_bc_net; + int rq_err; + long unsigned int bc_to_initval; + unsigned int bc_to_retries; + void **rq_lease_breaker; + unsigned int rq_status_counter; +}; + +struct cache_head { + struct hlist_node cache_list; + time64_t expiry_time; + time64_t last_refresh; + struct kref ref; + long unsigned int flags; +}; + +struct cache_deferred_req { + struct hlist_node hash; + struct list_head recent; + struct cache_head *item; + void *owner; + void (*revisit)(struct cache_deferred_req *, int); +}; + +struct auth_ops { + char *name; + struct module *owner; + int flavour; + enum svc_auth_status (*accept)(struct svc_rqst *); + int (*release)(struct svc_rqst *); + void (*domain_release)(struct auth_domain *); + enum svc_auth_status (*set_client)(struct svc_rqst *); + rpc_authflavor_t (*pseudoflavor)(struct svc_rqst *); +}; + +struct svc_pool { + unsigned int sp_id; + struct lwq sp_xprts; + unsigned int sp_nrthreads; + struct list_head sp_all_threads; + struct llist_head sp_idle_threads; + struct percpu_counter sp_messages_arrived; + struct percpu_counter sp_sockets_queued; + struct percpu_counter sp_threads_woken; + long unsigned int sp_flags; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct svc_procedure { + __be32 (*pc_func)(struct svc_rqst *); + bool (*pc_decode)(struct svc_rqst *, struct xdr_stream *); + bool (*pc_encode)(struct svc_rqst *, struct xdr_stream *); + void (*pc_release)(struct svc_rqst *); + unsigned int pc_argsize; + unsigned int pc_argzero; + unsigned int pc_ressize; + unsigned int pc_cachetype; + unsigned int pc_xdrressize; + const char *pc_name; +}; + +struct svc_deferred_req { + u32 prot; + struct svc_xprt *xprt; + struct __kernel_sockaddr_storage addr; + size_t addrlen; + struct __kernel_sockaddr_storage daddr; + size_t daddrlen; + void *xprt_ctxt; + struct cache_deferred_req handle; + int argslen; + __be32 args[0]; +}; + +struct svc_process_info { + union { + int (*dispatch)(struct svc_rqst *); + struct { + unsigned int lovers; + unsigned int hivers; + } mismatch; + }; +}; + +struct svc_version { + u32 vs_vers; + u32 vs_nproc; + const struct svc_procedure *vs_proc; + long unsigned int *vs_count; + u32 vs_xdrsize; + bool vs_hidden; + bool vs_rpcb_optnl; + bool vs_need_cong_ctrl; + int (*vs_dispatch)(struct svc_rqst *); +}; + +struct nfs_ssc_client_ops { + void (*sco_sb_deactive)(struct super_block *); +}; + +struct nfs4_state_recovery_ops { + int owner_flag_bit; + int state_flag_bit; + int (*recover_open)(struct nfs4_state_owner *, struct nfs4_state *); + int (*recover_lock)(struct nfs4_state *, struct file_lock *); + int (*establish_clid)(struct nfs_client *, const struct cred *); + int (*reclaim_complete)(struct nfs_client *, const struct cred *); + int (*detect_trunking)(struct nfs_client *, struct nfs_client **, const struct cred *); +}; + +struct nfs4_state_maintenance_ops { + int (*sched_state_renewal)(struct nfs_client *, const struct cred *, unsigned int); + const struct cred * (*get_state_renewal_cred)(struct nfs_client *); + int (*renew_lease)(struct nfs_client *, const struct cred *); +}; + +struct nfs4_mig_recovery_ops { + int (*get_locations)(struct nfs_server *, struct nfs_fh *, struct nfs4_fs_locations *, struct page *, const struct cred *); + int (*fsid_present)(struct inode *, const struct cred *); +}; + +struct nfs4_state_owner { + struct nfs_server *so_server; + struct list_head so_lru; + long unsigned int so_expires; + struct rb_node so_server_node; + const struct cred *so_cred; + spinlock_t so_lock; + atomic_t so_count; + long unsigned int so_flags; + struct list_head so_states; + struct nfs_seqid_counter so_seqid; + struct mutex so_delegreturn_mutex; +}; + +enum nfs_stat_bytecounters { + NFSIOS_NORMALREADBYTES = 0, + NFSIOS_NORMALWRITTENBYTES = 1, + NFSIOS_DIRECTREADBYTES = 2, + NFSIOS_DIRECTWRITTENBYTES = 3, + NFSIOS_SERVERREADBYTES = 4, + NFSIOS_SERVERWRITTENBYTES = 5, + NFSIOS_READPAGES = 6, + NFSIOS_WRITEPAGES = 7, + __NFSIOS_BYTESMAX = 8, +}; + +enum nfs_stat_eventcounters { + NFSIOS_INODEREVALIDATE = 0, + NFSIOS_DENTRYREVALIDATE = 1, + NFSIOS_DATAINVALIDATE = 2, + NFSIOS_ATTRINVALIDATE = 3, + NFSIOS_VFSOPEN = 4, + NFSIOS_VFSLOOKUP = 5, + NFSIOS_VFSACCESS = 6, + NFSIOS_VFSUPDATEPAGE = 7, + NFSIOS_VFSREADPAGE = 8, + NFSIOS_VFSREADPAGES = 9, + NFSIOS_VFSWRITEPAGE = 10, + NFSIOS_VFSWRITEPAGES = 11, + NFSIOS_VFSGETDENTS = 12, + NFSIOS_VFSSETATTR = 13, + NFSIOS_VFSFLUSH = 14, + NFSIOS_VFSFSYNC = 15, + NFSIOS_VFSLOCK = 16, + NFSIOS_VFSRELEASE = 17, + NFSIOS_CONGESTIONWAIT = 18, + NFSIOS_SETATTRTRUNC = 19, + NFSIOS_EXTENDWRITE = 20, + NFSIOS_SILLYRENAME = 21, + NFSIOS_SHORTREAD = 22, + NFSIOS_SHORTWRITE = 23, + NFSIOS_DELAY = 24, + NFSIOS_PNFS_READ = 25, + NFSIOS_PNFS_WRITE = 26, + __NFSIOS_COUNTSMAX = 27, +}; + +struct nfs_pageio_descriptor; + +struct nfs_pgio_mirror; + +struct nfs_pageio_ops { + void (*pg_init)(struct nfs_pageio_descriptor *, struct nfs_page *); + size_t (*pg_test)(struct nfs_pageio_descriptor *, struct nfs_page *, struct nfs_page *); + int (*pg_doio)(struct nfs_pageio_descriptor *); + unsigned int (*pg_get_mirror_count)(struct nfs_pageio_descriptor *, struct nfs_page *); + void (*pg_cleanup)(struct nfs_pageio_descriptor *); + struct nfs_pgio_mirror * (*pg_get_mirror)(struct nfs_pageio_descriptor *, u32); + u32 (*pg_set_mirror)(struct nfs_pageio_descriptor *, u32); +}; + +struct nfs_pgio_mirror { + struct list_head pg_list; + long unsigned int pg_bytes_written; + size_t pg_count; + size_t pg_bsize; + unsigned int pg_base; + unsigned char pg_recoalesce: 1; +}; + +struct nfs_pageio_descriptor { + struct inode *pg_inode; + const struct nfs_pageio_ops *pg_ops; + const struct nfs_rw_ops *pg_rw_ops; + int pg_ioflags; + int pg_error; + const struct rpc_call_ops *pg_rpc_callops; + const struct nfs_pgio_completion_ops *pg_completion_ops; + struct pnfs_layout_segment *pg_lseg; + struct nfs_io_completion *pg_io_completion; + struct nfs_direct_req *pg_dreq; + void *pg_netfs; + unsigned int pg_bsize; + u32 pg_mirror_count; + struct nfs_pgio_mirror *pg_mirrors; + struct nfs_pgio_mirror pg_mirrors_static[1]; + struct nfs_pgio_mirror *pg_mirrors_dynamic; + u32 pg_mirror_idx; + short unsigned int pg_maxretrans; + unsigned char pg_moreio: 1; +}; + +struct nfs_clone_mount { + struct super_block *sb; + struct dentry *dentry; + struct nfs_fattr *fattr; + unsigned int inherited_bsize; +}; + +struct nfs_fs_context { + bool internal; + bool skip_reconfig_option_check; + bool need_mount; + bool sloppy; + unsigned int flags; + unsigned int rsize; + unsigned int wsize; + unsigned int timeo; + unsigned int retrans; + unsigned int acregmin; + unsigned int acregmax; + unsigned int acdirmin; + unsigned int acdirmax; + unsigned int namlen; + unsigned int options; + unsigned int bsize; + struct nfs_auth_info auth_info; + rpc_authflavor_t selected_flavor; + struct xprtsec_parms xprtsec; + char *client_address; + unsigned int version; + unsigned int minorversion; + char *fscache_uniq; + short unsigned int protofamily; + short unsigned int mountfamily; + bool has_sec_mnt_opts; + int lock_status; + struct { + union { + struct sockaddr address; + struct __kernel_sockaddr_storage _address; + }; + size_t addrlen; + char *hostname; + u32 version; + int port; + short unsigned int protocol; + } mount_server; + struct { + union { + struct sockaddr address; + struct __kernel_sockaddr_storage _address; + }; + size_t addrlen; + char *hostname; + char *export_path; + int port; + short unsigned int protocol; + short unsigned int nconnect; + short unsigned int max_connect; + short unsigned int export_path_len; + } nfs_server; + struct nfs_fh *mntfh; + struct nfs_server *server; + struct nfs_subversion *nfs_mod; + struct nfs_clone_mount clone_data; +}; + +enum nfs_lock_status { + NFS_LOCK_NOT_SET = 0, + NFS_LOCK_LOCK = 1, + NFS_LOCK_NOLOCK = 2, +}; + +struct nfs_mount_request { + struct __kernel_sockaddr_storage *sap; + size_t salen; + char *hostname; + char *dirpath; + u32 version; + short unsigned int protocol; + struct nfs_fh *fh; + int noresvport; + unsigned int *auth_flav_len; + rpc_authflavor_t *auth_flavs; + struct net *net; +}; + +struct nfs4_deviceid_node { + struct hlist_node node; + struct hlist_node tmpnode; + const struct pnfs_layoutdriver_type *ld; + const struct nfs_client *nfs_client; + long unsigned int flags; + long unsigned int timestamp_unavailable; + struct nfs4_deviceid deviceid; + struct callback_head rcu; + atomic_t ref; +}; + +struct proc_nfs_info { + int flag; + const char *str; + const char *nostr; +}; + +struct nfs4_secinfo4 { + u32 flavor; + struct rpcsec_gss_info flavor_info; +}; + +struct nfs4_secinfo_flavors { + unsigned int num_flavors; + struct nfs4_secinfo4 flavors[0]; +}; + +enum pnfs_block_volume_type { + PNFS_BLOCK_VOLUME_SIMPLE = 0, + PNFS_BLOCK_VOLUME_SLICE = 1, + PNFS_BLOCK_VOLUME_CONCAT = 2, + PNFS_BLOCK_VOLUME_STRIPE = 3, + PNFS_BLOCK_VOLUME_SCSI = 4, +}; + +enum scsi_code_set { + PS_CODE_SET_BINARY = 1, + PS_CODE_SET_ASCII = 2, + PS_CODE_SET_UTF8 = 3, +}; + +enum scsi_designator_type { + PS_DESIGNATOR_T10 = 1, + PS_DESIGNATOR_EUI64 = 2, + PS_DESIGNATOR_NAA = 3, + PS_DESIGNATOR_NAME = 8, +}; + +struct pr_keys { + u32 generation; + u32 num_keys; + u64 keys[0]; +}; + +struct pr_held_reservation { + u64 key; + u32 generation; + enum pr_type type; +}; + +struct pnfs_block_volume { + enum pnfs_block_volume_type type; + union { + struct { + int len; + int nr_sigs; + struct { + u64 offset; + u32 sig_len; + u8 sig[128]; + } sigs[4]; + } simple; + struct { + u64 start; + u64 len; + u32 volume; + } slice; + struct { + u32 volumes_count; + u32 volumes[64]; + } concat; + struct { + u64 chunk_size; + u32 volumes_count; + u32 volumes[64]; + } stripe; + struct { + enum scsi_code_set code_set; + enum scsi_designator_type designator_type; + int designator_len; + u8 designator[256]; + u64 pr_key; + } scsi; + }; +}; + +struct pnfs_block_dev_map { + u64 start; + u64 len; + u64 disk_offset; + struct block_device *bdev; +}; + +struct pnfs_block_dev { + struct nfs4_deviceid_node node; + u64 start; + u64 len; + enum pnfs_block_volume_type type; + u32 nr_children; + struct pnfs_block_dev *children; + u64 chunk_size; + struct file *bdev_file; + u64 disk_offset; + long unsigned int flags; + u64 pr_key; + bool (*map)(struct pnfs_block_dev *, u64, struct pnfs_block_dev_map *); +}; + +enum { + PNFS_BDEV_REGISTERED = 0, +}; + +struct cache_detail { + struct module *owner; + int hash_size; + struct hlist_head *hash_table; + spinlock_t hash_lock; + char *name; + void (*cache_put)(struct kref *); + int (*cache_upcall)(struct cache_detail *, struct cache_head *); + void (*cache_request)(struct cache_detail *, struct cache_head *, char **, int *); + int (*cache_parse)(struct cache_detail *, char *, int); + int (*cache_show)(struct seq_file *, struct cache_detail *, struct cache_head *); + void (*warn_no_listener)(struct cache_detail *, int); + struct cache_head * (*alloc)(void); + void (*flush)(void); + int (*match)(struct cache_head *, struct cache_head *); + void (*init)(struct cache_head *, struct cache_head *); + void (*update)(struct cache_head *, struct cache_head *); + time64_t flush_time; + struct list_head others; + time64_t nextcheck; + int entries; + struct list_head queue; + atomic_t writers; + time64_t last_close; + time64_t last_warn; + union { + struct proc_dir_entry *procfs; + struct dentry *pipefs; + }; + struct net *net; +}; + +struct svc_xprt_class; + +struct svc_xprt_ops; + +struct svc_xprt { + struct svc_xprt_class *xpt_class; + const struct svc_xprt_ops *xpt_ops; + struct kref xpt_ref; + struct list_head xpt_list; + struct lwq_node xpt_ready; + long unsigned int xpt_flags; + struct svc_serv *xpt_server; + atomic_t xpt_reserved; + atomic_t xpt_nr_rqsts; + struct mutex xpt_mutex; + spinlock_t xpt_lock; + void *xpt_auth_cache; + struct list_head xpt_deferred; + struct __kernel_sockaddr_storage xpt_local; + size_t xpt_locallen; + struct __kernel_sockaddr_storage xpt_remote; + size_t xpt_remotelen; + char xpt_remotebuf[58]; + struct list_head xpt_users; + struct net *xpt_net; + netns_tracker ns_tracker; + const struct cred *xpt_cred; + struct rpc_xprt *xpt_bc_xprt; + struct rpc_xprt_switch *xpt_bc_xps; +}; + +struct svc_info { + struct svc_serv *serv; + struct mutex *mutex; +}; + +enum { + RQ_SECURE = 0, + RQ_LOCAL = 1, + RQ_USEDEFERRAL = 2, + RQ_DROPME = 3, + RQ_VICTIM = 4, + RQ_DATA = 5, +}; + +struct svc_xprt_ops { + struct svc_xprt * (*xpo_create)(struct svc_serv *, struct net *, struct sockaddr *, int, int); + struct svc_xprt * (*xpo_accept)(struct svc_xprt *); + int (*xpo_has_wspace)(struct svc_xprt *); + int (*xpo_recvfrom)(struct svc_rqst *); + int (*xpo_sendto)(struct svc_rqst *); + int (*xpo_result_payload)(struct svc_rqst *, unsigned int, unsigned int); + void (*xpo_release_ctxt)(struct svc_xprt *, void *); + void (*xpo_detach)(struct svc_xprt *); + void (*xpo_free)(struct svc_xprt *); + void (*xpo_kill_temp_xprt)(struct svc_xprt *); + void (*xpo_handshake)(struct svc_xprt *); +}; + +struct svc_xprt_class { + const char *xcl_name; + struct module *xcl_owner; + const struct svc_xprt_ops *xcl_ops; + struct list_head xcl_list; + u32 xcl_max_payload; + int xcl_ident; +}; + +enum nfsstat4 { + NFS4_OK = 0, + NFS4ERR_PERM = 1, + NFS4ERR_NOENT = 2, + NFS4ERR_IO = 5, + NFS4ERR_NXIO = 6, + NFS4ERR_ACCESS = 13, + NFS4ERR_EXIST = 17, + NFS4ERR_XDEV = 18, + NFS4ERR_NOTDIR = 20, + NFS4ERR_ISDIR = 21, + NFS4ERR_INVAL = 22, + NFS4ERR_FBIG = 27, + NFS4ERR_NOSPC = 28, + NFS4ERR_ROFS = 30, + NFS4ERR_MLINK = 31, + NFS4ERR_NAMETOOLONG = 63, + NFS4ERR_NOTEMPTY = 66, + NFS4ERR_DQUOT = 69, + NFS4ERR_STALE = 70, + NFS4ERR_BADHANDLE = 10001, + NFS4ERR_BAD_COOKIE = 10003, + NFS4ERR_NOTSUPP = 10004, + NFS4ERR_TOOSMALL = 10005, + NFS4ERR_SERVERFAULT = 10006, + NFS4ERR_BADTYPE = 10007, + NFS4ERR_DELAY = 10008, + NFS4ERR_SAME = 10009, + NFS4ERR_DENIED = 10010, + NFS4ERR_EXPIRED = 10011, + NFS4ERR_LOCKED = 10012, + NFS4ERR_GRACE = 10013, + NFS4ERR_FHEXPIRED = 10014, + NFS4ERR_SHARE_DENIED = 10015, + NFS4ERR_WRONGSEC = 10016, + NFS4ERR_CLID_INUSE = 10017, + NFS4ERR_RESOURCE = 10018, + NFS4ERR_MOVED = 10019, + NFS4ERR_NOFILEHANDLE = 10020, + NFS4ERR_MINOR_VERS_MISMATCH = 10021, + NFS4ERR_STALE_CLIENTID = 10022, + NFS4ERR_STALE_STATEID = 10023, + NFS4ERR_OLD_STATEID = 10024, + NFS4ERR_BAD_STATEID = 10025, + NFS4ERR_BAD_SEQID = 10026, + NFS4ERR_NOT_SAME = 10027, + NFS4ERR_LOCK_RANGE = 10028, + NFS4ERR_SYMLINK = 10029, + NFS4ERR_RESTOREFH = 10030, + NFS4ERR_LEASE_MOVED = 10031, + NFS4ERR_ATTRNOTSUPP = 10032, + NFS4ERR_NO_GRACE = 10033, + NFS4ERR_RECLAIM_BAD = 10034, + NFS4ERR_RECLAIM_CONFLICT = 10035, + NFS4ERR_BADXDR = 10036, + NFS4ERR_LOCKS_HELD = 10037, + NFS4ERR_OPENMODE = 10038, + NFS4ERR_BADOWNER = 10039, + NFS4ERR_BADCHAR = 10040, + NFS4ERR_BADNAME = 10041, + NFS4ERR_BAD_RANGE = 10042, + NFS4ERR_LOCK_NOTSUPP = 10043, + NFS4ERR_OP_ILLEGAL = 10044, + NFS4ERR_DEADLOCK = 10045, + NFS4ERR_FILE_OPEN = 10046, + NFS4ERR_ADMIN_REVOKED = 10047, + NFS4ERR_CB_PATH_DOWN = 10048, + NFS4ERR_BADIOMODE = 10049, + NFS4ERR_BADLAYOUT = 10050, + NFS4ERR_BAD_SESSION_DIGEST = 10051, + NFS4ERR_BADSESSION = 10052, + NFS4ERR_BADSLOT = 10053, + NFS4ERR_COMPLETE_ALREADY = 10054, + NFS4ERR_CONN_NOT_BOUND_TO_SESSION = 10055, + NFS4ERR_DELEG_ALREADY_WANTED = 10056, + NFS4ERR_BACK_CHAN_BUSY = 10057, + NFS4ERR_LAYOUTTRYLATER = 10058, + NFS4ERR_LAYOUTUNAVAILABLE = 10059, + NFS4ERR_NOMATCHING_LAYOUT = 10060, + NFS4ERR_RECALLCONFLICT = 10061, + NFS4ERR_UNKNOWN_LAYOUTTYPE = 10062, + NFS4ERR_SEQ_MISORDERED = 10063, + NFS4ERR_SEQUENCE_POS = 10064, + NFS4ERR_REQ_TOO_BIG = 10065, + NFS4ERR_REP_TOO_BIG = 10066, + NFS4ERR_REP_TOO_BIG_TO_CACHE = 10067, + NFS4ERR_RETRY_UNCACHED_REP = 10068, + NFS4ERR_UNSAFE_COMPOUND = 10069, + NFS4ERR_TOO_MANY_OPS = 10070, + NFS4ERR_OP_NOT_IN_SESSION = 10071, + NFS4ERR_HASH_ALG_UNSUPP = 10072, + NFS4ERR_CLIENTID_BUSY = 10074, + NFS4ERR_PNFS_IO_HOLE = 10075, + NFS4ERR_SEQ_FALSE_RETRY = 10076, + NFS4ERR_BAD_HIGH_SLOT = 10077, + NFS4ERR_DEADSESSION = 10078, + NFS4ERR_ENCR_ALG_UNSUPP = 10079, + NFS4ERR_PNFS_NO_LAYOUT = 10080, + NFS4ERR_NOT_ONLY_OP = 10081, + NFS4ERR_WRONG_CRED = 10082, + NFS4ERR_WRONG_TYPE = 10083, + NFS4ERR_DIRDELEG_UNAVAIL = 10084, + NFS4ERR_REJECT_DELEG = 10085, + NFS4ERR_RETURNCONFLICT = 10086, + NFS4ERR_DELEG_REVOKED = 10087, + NFS4ERR_PARTNER_NOTSUPP = 10088, + NFS4ERR_PARTNER_NO_AUTH = 10089, + NFS4ERR_UNION_NOTSUPP = 10090, + NFS4ERR_OFFLOAD_DENIED = 10091, + NFS4ERR_WRONG_LFS = 10092, + NFS4ERR_BADLABEL = 10093, + NFS4ERR_OFFLOAD_NO_REQS = 10094, + NFS4ERR_NOXATTR = 10095, + NFS4ERR_XATTR2BIG = 10096, + NFS4ERR_FIRST_FREE = 10097, +}; + +enum { + EXP_STATS_FH_STALE = 0, + EXP_STATS_IO_READ = 1, + EXP_STATS_IO_WRITE = 2, + EXP_STATS_COUNTERS_NUM = 3, +}; + +struct lock_manager { + struct list_head list; + bool block_opens; +}; + +enum { + NFSD_STATS_PAYLOAD_MISSES = 0, + NFSD_STATS_DRC_MEM_USAGE = 1, + NFSD_STATS_RC_HITS = 2, + NFSD_STATS_RC_MISSES = 3, + NFSD_STATS_RC_NOCACHE = 4, + NFSD_STATS_FH_STALE = 5, + NFSD_STATS_IO_READ = 6, + NFSD_STATS_IO_WRITE = 7, + NFSD_STATS_FIRST_NFS4_OP = 8, + NFSD_STATS_LAST_NFS4_OP = 83, + NFSD_STATS_WDELEG_GETATTR = 84, + NFSD_STATS_COUNTERS_NUM = 85, +}; + +struct cld_net; + +struct nfsd4_client_tracking_ops; + +struct nfsd_drc_bucket; + +struct nfsd_fcache_disposal; + +struct nfsd_net { + struct cld_net *cld_net; + struct cache_detail *svc_expkey_cache; + struct cache_detail *svc_export_cache; + struct cache_detail *idtoname_cache; + struct cache_detail *nametoid_cache; + struct lock_manager nfsd4_manager; + bool grace_ended; + time64_t boot_time; + struct dentry *nfsd_client_dir; + struct list_head *reclaim_str_hashtbl; + int reclaim_str_hashtbl_size; + struct list_head *conf_id_hashtbl; + struct rb_root conf_name_tree; + struct list_head *unconf_id_hashtbl; + struct rb_root unconf_name_tree; + struct list_head *sessionid_hashtbl; + struct list_head client_lru; + struct list_head close_lru; + struct list_head del_recall_lru; + struct list_head blocked_locks_lru; + struct delayed_work laundromat_work; + spinlock_t client_lock; + spinlock_t blocked_locks_lock; + struct file *rec_file; + bool in_grace; + const struct nfsd4_client_tracking_ops *client_tracking_ops; + time64_t nfsd4_lease; + time64_t nfsd4_grace; + bool somebody_reclaimed; + bool track_reclaim_completes; + atomic_t nr_reclaim_complete; + bool nfsd_net_up; + bool lockd_up; + seqlock_t writeverf_lock; + unsigned char writeverf[8]; + unsigned int max_connections; + u32 clientid_base; + u32 clientid_counter; + u32 clverifier_counter; + struct svc_info nfsd_info; + struct percpu_ref nfsd_serv_ref; + struct completion nfsd_serv_confirm_done; + struct completion nfsd_serv_free_done; + u32 s2s_cp_cl_id; + struct idr s2s_cp_stateids; + spinlock_t s2s_cp_lock; + atomic_t pending_async_copies; + bool nfsd_versions[5]; + bool nfsd4_minorversions[3]; + struct nfsd_drc_bucket *drc_hashtbl; + unsigned int max_drc_entries; + unsigned int maskbits; + unsigned int drc_hashsize; + atomic_t num_drc_entries; + struct percpu_counter counter[85]; + struct svc_stat nfsd_svcstats; + unsigned int longest_chain; + unsigned int longest_chain_cachesize; + struct shrinker *nfsd_reply_cache_shrinker; + spinlock_t nfsd_ssc_lock; + struct list_head nfsd_ssc_mount_list; + wait_queue_head_t nfsd_ssc_waitq; + char nfsd_name[65]; + struct nfsd_fcache_disposal *fcache_disposal; + siphash_key_t siphash_key; + atomic_t nfs4_client_count; + int nfs4_max_clients; + atomic_t nfsd_courtesy_clients; + struct shrinker *nfsd_client_shrinker; + struct work_struct nfsd_shrinker_work; + time64_t nfs40_last_revoke; +}; + +typedef u8 uint8_t; + +struct nfs4_client; + +struct nfsd4_client_tracking_ops { + int (*init)(struct net *); + void (*exit)(struct net *); + void (*create)(struct nfs4_client *); + void (*remove)(struct nfs4_client *); + int (*check)(struct nfs4_client *); + void (*grace_done)(struct nfsd_net *); + uint8_t version; + size_t msglen; +}; + +struct nfsd_drc_bucket { + struct rb_root rb_head; + struct list_head lru_head; + spinlock_t cache_lock; +}; + +struct nfsd_cacherep { + struct { + __be32 k_xid; + __wsum k_csum; + u32 k_proc; + u32 k_prot; + u32 k_vers; + unsigned int k_len; + struct sockaddr_in6 k_addr; + } c_key; + struct rb_node c_node; + struct list_head c_lru; + unsigned char c_state; + unsigned char c_type; + unsigned char c_secure: 1; + long unsigned int c_timestamp; + union { + struct kvec u_vec; + __be32 u_status; + } c_u; +}; + +enum { + RC_UNUSED = 0, + RC_INPROG = 1, + RC_DONE = 2, +}; + +enum { + RC_DROPIT = 0, + RC_REPLY = 1, + RC_DOIT = 2, +}; + +enum { + RC_NOCACHE = 0, + RC_REPLSTAT = 1, + RC_REPLBUFF = 2, +}; + +struct fid { + union { + struct { + u32 ino; + u32 gen; + u32 parent_ino; + u32 parent_gen; + } i32; + struct { + u64 ino; + u32 gen; + } __attribute__((packed)) i64; + struct { + u32 block; + u16 partref; + u16 parent_partref; + u32 generation; + u32 parent_block; + u32 parent_generation; + } udf; + struct { + struct {} __empty_raw; + __u32 raw[0]; + }; + }; +}; + +enum nfs4_acl_whotype { + NFS4_ACL_WHO_NAMED = 0, + NFS4_ACL_WHO_OWNER = 1, + NFS4_ACL_WHO_GROUP = 2, + NFS4_ACL_WHO_EVERYONE = 3, +}; + +struct nfs4_ace { + uint32_t type; + uint32_t flag; + uint32_t access_mask; + int whotype; + union { + kuid_t who_uid; + kgid_t who_gid; + }; +}; + +struct nfs4_acl { + uint32_t naces; + struct nfs4_ace aces[0]; +}; + +enum nfs_ftype4 { + NF4BAD = 0, + NF4REG = 1, + NF4DIR = 2, + NF4BLK = 3, + NF4CHR = 4, + NF4LNK = 5, + NF4SOCK = 6, + NF4FIFO = 7, + NF4ATTRDIR = 8, + NF4NAMEDATTR = 9, +}; + +enum nfs_stat { + NFS_OK = 0, + NFSERR_PERM = 1, + NFSERR_NOENT = 2, + NFSERR_IO = 5, + NFSERR_NXIO = 6, + NFSERR_EAGAIN = 11, + NFSERR_ACCES = 13, + NFSERR_EXIST = 17, + NFSERR_XDEV = 18, + NFSERR_NODEV = 19, + NFSERR_NOTDIR = 20, + NFSERR_ISDIR = 21, + NFSERR_INVAL = 22, + NFSERR_FBIG = 27, + NFSERR_NOSPC = 28, + NFSERR_ROFS = 30, + NFSERR_MLINK = 31, + NFSERR_NAMETOOLONG = 63, + NFSERR_NOTEMPTY = 66, + NFSERR_DQUOT = 69, + NFSERR_STALE = 70, + NFSERR_REMOTE = 71, + NFSERR_WFLUSH = 99, + NFSERR_BADHANDLE = 10001, + NFSERR_NOT_SYNC = 10002, + NFSERR_BAD_COOKIE = 10003, + NFSERR_NOTSUPP = 10004, + NFSERR_TOOSMALL = 10005, + NFSERR_SERVERFAULT = 10006, + NFSERR_BADTYPE = 10007, + NFSERR_JUKEBOX = 10008, + NFSERR_SAME = 10009, + NFSERR_DENIED = 10010, + NFSERR_EXPIRED = 10011, + NFSERR_LOCKED = 10012, + NFSERR_GRACE = 10013, + NFSERR_FHEXPIRED = 10014, + NFSERR_SHARE_DENIED = 10015, + NFSERR_WRONGSEC = 10016, + NFSERR_CLID_INUSE = 10017, + NFSERR_RESOURCE = 10018, + NFSERR_MOVED = 10019, + NFSERR_NOFILEHANDLE = 10020, + NFSERR_MINOR_VERS_MISMATCH = 10021, + NFSERR_STALE_CLIENTID = 10022, + NFSERR_STALE_STATEID = 10023, + NFSERR_OLD_STATEID = 10024, + NFSERR_BAD_STATEID = 10025, + NFSERR_BAD_SEQID = 10026, + NFSERR_NOT_SAME = 10027, + NFSERR_LOCK_RANGE = 10028, + NFSERR_SYMLINK = 10029, + NFSERR_RESTOREFH = 10030, + NFSERR_LEASE_MOVED = 10031, + NFSERR_ATTRNOTSUPP = 10032, + NFSERR_NO_GRACE = 10033, + NFSERR_RECLAIM_BAD = 10034, + NFSERR_RECLAIM_CONFLICT = 10035, + NFSERR_BAD_XDR = 10036, + NFSERR_LOCKS_HELD = 10037, + NFSERR_OPENMODE = 10038, + NFSERR_BADOWNER = 10039, + NFSERR_BADCHAR = 10040, + NFSERR_BADNAME = 10041, + NFSERR_BAD_RANGE = 10042, + NFSERR_LOCK_NOTSUPP = 10043, + NFSERR_OP_ILLEGAL = 10044, + NFSERR_DEADLOCK = 10045, + NFSERR_FILE_OPEN = 10046, + NFSERR_ADMIN_REVOKED = 10047, + NFSERR_CB_PATH_DOWN = 10048, +}; + +struct nfsd_attrs { + struct iattr *na_iattr; + struct xdr_netobj *na_seclabel; + struct posix_acl *na_pacl; + struct posix_acl *na_dpacl; + int na_labelerr; + int na_aclerr; +}; + +struct posix_acl_summary { + short unsigned int owner; + short unsigned int users; + short unsigned int group; + short unsigned int groups; + short unsigned int other; + short unsigned int mask; +}; + +struct posix_ace_state { + u32 allow; + u32 deny; +}; + +struct posix_user_ace_state { + union { + kuid_t uid; + kgid_t gid; + }; + struct posix_ace_state perms; +}; + +struct posix_ace_state_array { + int n; + struct posix_user_ace_state aces[0]; +}; + +struct posix_acl_state { + unsigned char valid; + struct posix_ace_state owner; + struct posix_ace_state group; + struct posix_ace_state other; + struct posix_ace_state everyone; + struct posix_ace_state mask; + struct posix_ace_state_array *users; + struct posix_ace_state_array *groups; +}; + +enum { + SP_TASK_PENDING = 0, + SP_NEED_VICTIM = 1, + SP_VICTIM_REMAINS = 2, +}; + +enum { + NLM_LCK_GRANTED = 0, + NLM_LCK_DENIED = 1, + NLM_LCK_DENIED_NOLOCKS = 2, + NLM_LCK_BLOCKED = 3, + NLM_LCK_DENIED_GRACE_PERIOD = 4, + NLM_DEADLCK = 5, + NLM_ROFS = 6, + NLM_STALE_FH = 7, + NLM_FBIG = 8, + NLM_FAILED = 9, +}; + +struct nlm_lockowner { + struct list_head list; + refcount_t count; + struct nlm_host *host; + fl_owner_t owner; + uint32_t pid; +}; + +struct nsm_private { + unsigned char data[16]; +}; + +struct nlm_lock { + char *caller; + unsigned int len; + struct nfs_fh fh; + struct xdr_netobj oh; + u32 svid; + u64 lock_start; + u64 lock_len; + struct file_lock fl; +}; + +struct nlm_cookie { + unsigned char data[32]; + unsigned int len; +}; + +struct nlm_args { + struct nlm_cookie cookie; + struct nlm_lock lock; + u32 block; + u32 reclaim; + u32 state; + u32 monitor; + u32 fsm_access; + u32 fsm_mode; +}; + +struct nlm_res { + struct nlm_cookie cookie; + __be32 status; + struct nlm_lock lock; +}; + +struct nsm_handle; + +struct nlm_host { + struct hlist_node h_hash; + struct __kernel_sockaddr_storage h_addr; + size_t h_addrlen; + struct __kernel_sockaddr_storage h_srcaddr; + size_t h_srcaddrlen; + struct rpc_clnt *h_rpcclnt; + char *h_name; + u32 h_version; + short unsigned int h_proto; + short unsigned int h_reclaiming: 1; + short unsigned int h_server: 1; + short unsigned int h_noresvport: 1; + short unsigned int h_inuse: 1; + wait_queue_head_t h_gracewait; + struct rw_semaphore h_rwsem; + u32 h_state; + u32 h_nsmstate; + u32 h_pidcount; + refcount_t h_count; + struct mutex h_mutex; + long unsigned int h_nextrebind; + long unsigned int h_expires; + struct list_head h_lockowners; + spinlock_t h_lock; + struct list_head h_granted; + struct list_head h_reclaim; + struct nsm_handle *h_nsmhandle; + char *h_addrbuf; + struct net *net; + const struct cred *h_cred; + char nodename[65]; + const struct nlmclnt_operations *h_nlmclnt_ops; +}; + +struct nsm_handle { + struct list_head sm_link; + refcount_t sm_count; + char *sm_mon_name; + char *sm_name; + struct __kernel_sockaddr_storage sm_addr; + size_t sm_addrlen; + unsigned int sm_monitored: 1; + unsigned int sm_sticky: 1; + struct nsm_private sm_priv; + char sm_addrbuf[51]; +}; + +struct nlm_block; + +struct nlm_rqst { + refcount_t a_count; + unsigned int a_flags; + struct nlm_host *a_host; + struct nlm_args a_args; + struct nlm_res a_res; + struct nlm_block *a_block; + unsigned int a_retries; + u8 a_owner[74]; + void *a_callback_data; +}; + +struct nlm_file; + +struct nlm_block { + struct kref b_count; + struct list_head b_list; + struct list_head b_flist; + struct nlm_rqst *b_call; + struct svc_serv *b_daemon; + struct nlm_host *b_host; + long unsigned int b_when; + unsigned int b_id; + unsigned char b_granted; + struct nlm_file *b_file; + struct cache_req *b_cache_req; + struct cache_deferred_req *b_deferred_req; + unsigned int b_flags; +}; + +struct nlm_share; + +struct nlm_file { + struct hlist_node f_list; + struct nfs_fh f_handle; + struct file *f_file[2]; + struct nlm_share *f_shares; + struct list_head f_blocks; + unsigned int f_locks; + unsigned int f_count; + struct mutex f_mutex; +}; + +typedef int (*nlm_host_match_fn_t)(void *, struct nlm_host *); + +struct arc4_ctx { + u32 S[256]; + u32 x; + u32 y; +}; + +struct md4_ctx { + u32 hash[4]; + u32 block[16]; + u64 byte_count; +}; + +struct rtattr { + short unsigned int rta_len; + short unsigned int rta_type; +}; + +struct reparse_posix_data { + __le32 ReparseTag; + __le16 ReparseDataLength; + __u16 Reserved; + __le64 InodeType; + __u8 DataBuffer[0]; +}; + +typedef struct { + __le16 MajorVersionNumber; + __le16 MinorVersionNumber; + __le64 Capability; +} __attribute__((packed)) FILE_SYSTEM_UNIX_INFO; + +typedef struct { + __le32 DeviceType; + __le32 DeviceCharacteristics; +} FILE_SYSTEM_DEVICE_INFO; + +typedef struct { + __le32 Attributes; + __le32 MaxPathNameComponentLength; + __le32 FileSystemNameLen; + char FileSystemName[52]; +} FILE_SYSTEM_ATTRIBUTE_INFO; + +typedef struct { + __le64 CreationTime; + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le32 Attributes; + __u32 Pad; +} FILE_BASIC_INFO; + +struct tcon_link; + +struct smb3_fs_context; + +struct cifs_sb_info { + struct rb_root tlink_tree; + spinlock_t tlink_tree_lock; + struct tcon_link *master_tlink; + struct nls_table *local_nls; + struct smb3_fs_context *ctx; + atomic_t active; + unsigned int mnt_cifs_flags; + struct delayed_work prune_tlinks; + struct callback_head rcu; + char *prepath; + bool mnt_cifs_serverino_autodisabled; + struct dentry *root; +}; + +struct cifs_tcon; + +struct tcon_link { + struct rb_node tl_rbnode; + kuid_t tl_uid; + long unsigned int tl_flags; + long unsigned int tl_time; + atomic_t tl_count; + struct cifs_tcon *tl_tcon; +}; + +enum securityEnum { + Unspecified = 0, + NTLMv2 = 1, + RawNTLMSSP = 2, + Kerberos = 3, + IAKerb = 4, +}; + +enum upcall_target_enum { + UPTARGET_UNSPECIFIED = 0, + UPTARGET_MOUNT = 1, + UPTARGET_APP = 2, +}; + +enum cifs_reparse_type { + CIFS_REPARSE_TYPE_NFS = 0, + CIFS_REPARSE_TYPE_WSL = 1, + CIFS_REPARSE_TYPE_DEFAULT = 0, +}; + +struct smb_version_operations; + +struct smb_version_values; + +struct cifs_ses; + +struct smb3_fs_context { + bool forceuid_specified; + bool forcegid_specified; + bool uid_specified; + bool cruid_specified; + bool gid_specified; + bool sloppy; + bool got_ip; + bool got_version; + bool got_rsize; + bool got_wsize; + bool got_bsize; + short unsigned int port; + char *username; + char *password; + char *password2; + char *domainname; + char *source; + char *server_hostname; + char *UNC; + char *nodename; + char workstation_name[65]; + char *iocharset; + char source_rfc1001_name[16]; + char target_rfc1001_name[16]; + kuid_t cred_uid; + kuid_t linux_uid; + kgid_t linux_gid; + kuid_t backupuid; + kgid_t backupgid; + umode_t file_mode; + umode_t dir_mode; + enum securityEnum sectype; + enum upcall_target_enum upcall_target; + bool sign; + bool ignore_signature: 1; + bool retry: 1; + bool intr: 1; + bool setuids: 1; + bool setuidfromacl: 1; + bool override_uid: 1; + bool override_gid: 1; + bool dynperm: 1; + bool noperm: 1; + bool nodelete: 1; + bool mode_ace: 1; + bool no_psx_acl: 1; + bool cifs_acl: 1; + bool backupuid_specified; + bool backupgid_specified; + bool no_xattr: 1; + bool server_ino: 1; + bool direct_io: 1; + bool strict_io: 1; + bool cache_ro: 1; + bool cache_rw: 1; + bool remap: 1; + bool sfu_remap: 1; + bool posix_paths: 1; + bool no_linux_ext: 1; + bool linux_ext: 1; + bool sfu_emul: 1; + bool nullauth: 1; + bool nocase: 1; + bool nobrl: 1; + bool nohandlecache: 1; + bool mand_lock: 1; + bool seal: 1; + bool nodfs: 1; + bool local_lease: 1; + bool noblocksnd: 1; + bool noautotune: 1; + bool nostrictsync: 1; + bool no_lease: 1; + bool no_sparse: 1; + bool fsc: 1; + bool mfsymlinks: 1; + bool multiuser: 1; + bool rwpidforward: 1; + bool nosharesock: 1; + bool persistent: 1; + bool nopersistent: 1; + bool resilient: 1; + bool domainauto: 1; + bool rdma: 1; + bool multichannel: 1; + bool use_client_guid: 1; + u8 client_guid[16]; + unsigned int vol_rsize; + unsigned int vol_wsize; + unsigned int bsize; + unsigned int rasize; + unsigned int rsize; + unsigned int wsize; + unsigned int min_offload; + unsigned int retrans; + bool sockopt_tcp_nodelay: 1; + long unsigned int acregmax; + long unsigned int acdirmax; + long unsigned int closetimeo; + struct smb_version_operations *ops; + struct smb_version_values *vals; + char *prepath; + struct __kernel_sockaddr_storage dstaddr; + struct __kernel_sockaddr_storage srcaddr; + struct nls_table *local_nls; + unsigned int echo_interval; + __u64 snapshot_time; + __u32 handle_timeout; + unsigned int max_credits; + unsigned int max_channels; + unsigned int max_cached_dirs; + bool compress; + bool rootfs: 1; + bool witness: 1; + char *leaf_fullpath; + struct cifs_ses *dfs_root_ses; + bool dfs_automount: 1; + enum cifs_reparse_type reparse_type; + bool dfs_conn: 1; +}; + +struct smb_ntsd { + __le16 revision; + __le16 type; + __le32 osidoffset; + __le32 gsidoffset; + __le32 sacloffset; + __le32 dacloffset; +}; + +struct smb_sid { + __u8 revision; + __u8 num_subauth; + __u8 authority[6]; + __le32 sub_auth[15]; +}; + +struct reparse_data_buffer { + __le32 ReparseTag; + __le16 ReparseDataLength; + __u16 Reserved; + __u8 DataBuffer[0]; +}; + +struct smb2_file_all_info { + __le64 CreationTime; + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le32 Attributes; + __u32 Pad1; + __le64 AllocationSize; + __le64 EndOfFile; + __le32 NumberOfLinks; + __u8 DeletePending; + __u8 Directory; + __u16 Pad2; + __le64 IndexNumber; + __le32 EASize; + __le32 AccessFlags; + __le64 CurrentByteOffset; + __le32 Mode; + __le32 AlignmentRequirement; + __le32 FileNameLength; + union { + char __pad; + struct { + struct {} __empty_FileName; + char FileName[0]; + }; + }; +} __attribute__((packed)); + +struct smb311_posix_qinfo { + __le64 CreationTime; + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le64 EndOfFile; + __le64 AllocationSize; + __le32 DosAttributes; + __le64 Inode; + __le32 DeviceId; + __le32 Zero; + __le32 HardLinks; + __le32 ReparseTag; + __le32 Mode; + u8 Sids[0]; +} __attribute__((packed)); + +enum statusEnum { + CifsNew = 0, + CifsGood = 1, + CifsExiting = 2, + CifsNeedReconnect = 3, + CifsNeedNegotiate = 4, + CifsInNegotiate = 5, +}; + +enum ses_status_enum { + SES_NEW = 0, + SES_GOOD = 1, + SES_EXITING = 2, + SES_NEED_RECON = 3, + SES_IN_SETUP = 4, +}; + +enum tid_status_enum { + TID_NEW = 0, + TID_GOOD = 1, + TID_EXITING = 2, + TID_NEED_RECON = 3, + TID_NEED_TCON = 4, + TID_IN_TCON = 5, + TID_NEED_FILES_INVALIDATE = 6, + TID_IN_FILES_INVALIDATE = 7, +}; + +struct session_key { + unsigned int len; + char *response; +}; + +struct cifs_secmech { + struct shash_desc *md5; + struct shash_desc *hmacsha256; + struct shash_desc *sha512; + struct shash_desc *aes_cmac; + struct crypto_aead *enc; + struct crypto_aead *dec; +}; + +struct ntlmssp_auth { + bool sesskey_per_smbsess; + __u32 client_flags; + __u32 server_flags; + unsigned char ciphertext[16]; + char cryptkey[8]; +}; + +struct cifs_open_info_data { + bool adjust_tz; + bool reparse_point; + bool contains_posix_file_info; + struct { + struct { + int buftype; + struct kvec iov; + } io; + __u32 tag; + union { + struct reparse_data_buffer *buf; + struct reparse_posix_data *posix; + }; + } reparse; + struct { + __u8 eas[84]; + unsigned int eas_len; + } wsl; + char *symlink_target; + struct smb_sid posix_owner; + struct smb_sid posix_group; + union { + struct smb2_file_all_info fi; + struct smb311_posix_qinfo posix_fi; + }; +}; + +struct smb_rqst { + struct kvec *rq_iov; + unsigned int rq_nvec; + struct iov_iter rq_iter; + struct folio_queue *rq_buffer; +}; + +struct TCP_Server_Info; + +struct mid_q_entry; + +struct cifsFileInfo; + +struct cifs_credits; + +struct cifsInodeInfo; + +struct dfs_info3_param; + +struct cifs_open_parms; + +struct cifs_fid; + +struct cifs_io_subrequest; + +struct cifs_io_parms; + +struct cifs_search_info; + +struct smb_version_operations { + int (*send_cancel)(struct TCP_Server_Info *, struct smb_rqst *, struct mid_q_entry *); + bool (*compare_fids)(struct cifsFileInfo *, struct cifsFileInfo *); + struct mid_q_entry * (*setup_request)(struct cifs_ses *, struct TCP_Server_Info *, struct smb_rqst *); + struct mid_q_entry * (*setup_async_request)(struct TCP_Server_Info *, struct smb_rqst *); + int (*check_receive)(struct mid_q_entry *, struct TCP_Server_Info *, bool); + void (*add_credits)(struct TCP_Server_Info *, struct cifs_credits *, const int); + void (*set_credits)(struct TCP_Server_Info *, const int); + int * (*get_credits_field)(struct TCP_Server_Info *, const int); + unsigned int (*get_credits)(struct mid_q_entry *); + __u64 (*get_next_mid)(struct TCP_Server_Info *); + void (*revert_current_mid)(struct TCP_Server_Info *, const unsigned int); + unsigned int (*read_data_offset)(char *); + unsigned int (*read_data_length)(char *, bool); + int (*map_error)(char *, bool); + struct mid_q_entry * (*find_mid)(struct TCP_Server_Info *, char *); + void (*dump_detail)(void *, struct TCP_Server_Info *); + void (*clear_stats)(struct cifs_tcon *); + void (*print_stats)(struct seq_file *, struct cifs_tcon *); + void (*dump_share_caps)(struct seq_file *, struct cifs_tcon *); + int (*check_message)(char *, unsigned int, struct TCP_Server_Info *); + bool (*is_oplock_break)(char *, struct TCP_Server_Info *); + int (*handle_cancelled_mid)(struct mid_q_entry *, struct TCP_Server_Info *); + void (*downgrade_oplock)(struct TCP_Server_Info *, struct cifsInodeInfo *, __u32, __u16, bool *); + bool (*check_trans2)(struct mid_q_entry *, struct TCP_Server_Info *, char *, int); + bool (*need_neg)(struct TCP_Server_Info *); + int (*negotiate)(const unsigned int, struct cifs_ses *, struct TCP_Server_Info *); + unsigned int (*negotiate_wsize)(struct cifs_tcon *, struct smb3_fs_context *); + unsigned int (*negotiate_rsize)(struct cifs_tcon *, struct smb3_fs_context *); + int (*sess_setup)(const unsigned int, struct cifs_ses *, struct TCP_Server_Info *, const struct nls_table *); + int (*logoff)(const unsigned int, struct cifs_ses *); + int (*tree_connect)(const unsigned int, struct cifs_ses *, const char *, struct cifs_tcon *, const struct nls_table *); + int (*tree_disconnect)(const unsigned int, struct cifs_tcon *); + int (*get_dfs_refer)(const unsigned int, struct cifs_ses *, const char *, struct dfs_info3_param **, unsigned int *, const struct nls_table *, int); + void (*qfs_tcon)(const unsigned int, struct cifs_tcon *, struct cifs_sb_info *); + int (*query_server_interfaces)(const unsigned int, struct cifs_tcon *, bool); + int (*is_path_accessible)(const unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const char *); + int (*query_path_info)(const unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const char *, struct cifs_open_info_data *); + int (*query_file_info)(const unsigned int, struct cifs_tcon *, struct cifsFileInfo *, struct cifs_open_info_data *); + int (*query_reparse_point)(const unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const char *, u32 *, struct kvec *, int *); + int (*get_srv_inum)(const unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const char *, u64 *, struct cifs_open_info_data *); + int (*set_path_size)(const unsigned int, struct cifs_tcon *, const char *, __u64, struct cifs_sb_info *, bool, struct dentry *); + int (*set_file_size)(const unsigned int, struct cifs_tcon *, struct cifsFileInfo *, __u64, bool); + int (*set_file_info)(struct inode *, const char *, FILE_BASIC_INFO *, const unsigned int); + int (*set_compression)(const unsigned int, struct cifs_tcon *, struct cifsFileInfo *); + bool (*can_echo)(struct TCP_Server_Info *); + int (*echo)(struct TCP_Server_Info *); + int (*posix_mkdir)(const unsigned int, struct inode *, umode_t, struct cifs_tcon *, const char *, struct cifs_sb_info *); + int (*mkdir)(const unsigned int, struct inode *, umode_t, struct cifs_tcon *, const char *, struct cifs_sb_info *); + void (*mkdir_setinfo)(struct inode *, const char *, struct cifs_sb_info *, struct cifs_tcon *, const unsigned int); + int (*rmdir)(const unsigned int, struct cifs_tcon *, const char *, struct cifs_sb_info *); + int (*unlink)(const unsigned int, struct cifs_tcon *, const char *, struct cifs_sb_info *, struct dentry *); + int (*rename_pending_delete)(const char *, struct dentry *, const unsigned int); + int (*rename)(const unsigned int, struct cifs_tcon *, struct dentry *, const char *, const char *, struct cifs_sb_info *); + int (*create_hardlink)(const unsigned int, struct cifs_tcon *, struct dentry *, const char *, const char *, struct cifs_sb_info *); + int (*query_symlink)(const unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const char *, char **); + int (*open)(const unsigned int, struct cifs_open_parms *, __u32 *, void *); + void (*set_fid)(struct cifsFileInfo *, struct cifs_fid *, __u32); + int (*close)(const unsigned int, struct cifs_tcon *, struct cifs_fid *); + int (*close_getattr)(const unsigned int, struct cifs_tcon *, struct cifsFileInfo *); + int (*flush)(const unsigned int, struct cifs_tcon *, struct cifs_fid *); + int (*async_readv)(struct cifs_io_subrequest *); + void (*async_writev)(struct cifs_io_subrequest *); + int (*sync_read)(const unsigned int, struct cifs_fid *, struct cifs_io_parms *, unsigned int *, char **, int *); + int (*sync_write)(const unsigned int, struct cifs_fid *, struct cifs_io_parms *, unsigned int *, struct kvec *, long unsigned int); + int (*query_dir_first)(const unsigned int, struct cifs_tcon *, const char *, struct cifs_sb_info *, struct cifs_fid *, __u16, struct cifs_search_info *); + int (*query_dir_next)(const unsigned int, struct cifs_tcon *, struct cifs_fid *, __u16, struct cifs_search_info *); + int (*close_dir)(const unsigned int, struct cifs_tcon *, struct cifs_fid *); + unsigned int (*calc_smb_size)(void *); + bool (*is_status_pending)(char *, struct TCP_Server_Info *); + bool (*is_session_expired)(char *); + int (*oplock_response)(struct cifs_tcon *, __u64, __u64, __u16, struct cifsInodeInfo *); + int (*queryfs)(const unsigned int, struct cifs_tcon *, const char *, struct cifs_sb_info *, struct kstatfs *); + int (*mand_lock)(const unsigned int, struct cifsFileInfo *, __u64, __u64, __u32, int, int, bool); + int (*mand_unlock_range)(struct cifsFileInfo *, struct file_lock *, const unsigned int); + int (*push_mand_locks)(struct cifsFileInfo *); + void (*get_lease_key)(struct inode *, struct cifs_fid *); + void (*set_lease_key)(struct inode *, struct cifs_fid *); + void (*new_lease_key)(struct cifs_fid *); + int (*generate_signingkey)(struct cifs_ses *, struct TCP_Server_Info *); + int (*calc_signature)(struct smb_rqst *, struct TCP_Server_Info *, bool); + int (*set_integrity)(const unsigned int, struct cifs_tcon *, struct cifsFileInfo *); + int (*enum_snapshots)(const unsigned int, struct cifs_tcon *, struct cifsFileInfo *, void *); + int (*notify)(const unsigned int, struct file *, void *, bool); + int (*query_mf_symlink)(unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const unsigned char *, char *, unsigned int *); + int (*create_mf_symlink)(unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const unsigned char *, char *, unsigned int *); + bool (*is_read_op)(__u32); + void (*set_oplock_level)(struct cifsInodeInfo *, __u32, __u16, bool *); + char * (*create_lease_buf)(u8 *, u8); + __u8 (*parse_lease_buf)(void *, __u16 *, char *); + ssize_t (*copychunk_range)(const unsigned int, struct cifsFileInfo *, struct cifsFileInfo *, u64, u64, u64); + int (*duplicate_extents)(const unsigned int, struct cifsFileInfo *, struct cifsFileInfo *, u64, u64, u64); + int (*validate_negotiate)(const unsigned int, struct cifs_tcon *); + ssize_t (*query_all_EAs)(const unsigned int, struct cifs_tcon *, const unsigned char *, const unsigned char *, char *, size_t, struct cifs_sb_info *); + int (*set_EA)(const unsigned int, struct cifs_tcon *, const char *, const char *, const void *, const __u16, const struct nls_table *, struct cifs_sb_info *); + struct smb_ntsd * (*get_acl)(struct cifs_sb_info *, struct inode *, const char *, u32 *, u32); + struct smb_ntsd * (*get_acl_by_fid)(struct cifs_sb_info *, const struct cifs_fid *, u32 *, u32); + int (*set_acl)(struct smb_ntsd *, __u32, struct inode *, const char *, int); + unsigned int (*wp_retry_size)(struct inode *); + int (*wait_mtu_credits)(struct TCP_Server_Info *, size_t, size_t *, struct cifs_credits *); + int (*adjust_credits)(struct TCP_Server_Info *, struct cifs_io_subrequest *, unsigned int); + bool (*dir_needs_close)(struct cifsFileInfo *); + long int (*fallocate)(struct file *, struct cifs_tcon *, int, loff_t, loff_t); + int (*init_transform_rq)(struct TCP_Server_Info *, int, struct smb_rqst *, struct smb_rqst *); + int (*is_transform_hdr)(void *); + int (*receive_transform)(struct TCP_Server_Info *, struct mid_q_entry **, char **, int *); + enum securityEnum (*select_sectype)(struct TCP_Server_Info *, enum securityEnum); + int (*next_header)(struct TCP_Server_Info *, char *, unsigned int *); + int (*ioctl_query_info)(const unsigned int, struct cifs_tcon *, struct cifs_sb_info *, __le16 *, int, long unsigned int); + int (*make_node)(unsigned int, struct inode *, struct dentry *, struct cifs_tcon *, const char *, umode_t, dev_t); + int (*fiemap)(struct cifs_tcon *, struct cifsFileInfo *, struct fiemap_extent_info *, u64, u64); + loff_t (*llseek)(struct file *, struct cifs_tcon *, loff_t, int); + bool (*is_status_io_timeout)(char *); + bool (*is_network_name_deleted)(char *, struct TCP_Server_Info *); + int (*parse_reparse_point)(struct cifs_sb_info *, const char *, struct kvec *, struct cifs_open_info_data *); + int (*create_reparse_symlink)(const unsigned int, struct inode *, struct dentry *, struct cifs_tcon *, const char *, const char *); +}; + +struct smbd_connection; + +struct TCP_Server_Info { + struct list_head tcp_ses_list; + struct list_head smb_ses_list; + struct list_head rlist; + spinlock_t srv_lock; + __u64 conn_id; + int srv_count; + char server_RFC1001_name[16]; + struct smb_version_operations *ops; + struct smb_version_values *vals; + enum statusEnum tcpStatus; + char *hostname; + struct socket *ssocket; + struct __kernel_sockaddr_storage dstaddr; + struct __kernel_sockaddr_storage srcaddr; + struct net *net; + wait_queue_head_t response_q; + wait_queue_head_t request_q; + spinlock_t mid_lock; + struct list_head pending_mid_q; + bool noblocksnd; + bool noautotune; + bool nosharesock; + bool tcp_nodelay; + bool terminate; + unsigned int credits; + unsigned int max_credits; + unsigned int in_flight; + unsigned int max_in_flight; + spinlock_t req_lock; + struct mutex _srv_mutex; + unsigned int nofs_flag; + struct task_struct *tsk; + char server_GUID[16]; + __u16 sec_mode; + bool sign; + bool ignore_signature: 1; + bool session_estab; + int echo_credits; + int oplock_credits; + bool echoes: 1; + __u8 client_guid[16]; + u16 dialect; + bool oplocks: 1; + unsigned int maxReq; + unsigned int maxBuf; + unsigned int max_rw; + unsigned int capabilities; + int timeAdj; + __u64 CurrentMid; + char cryptkey[8]; + char workstation_RFC1001_name[16]; + __u32 sequence_number; + __u32 reconnect_instance; + __le32 session_key_id; + struct session_key session_key; + long unsigned int lstrp; + long unsigned int neg_start; + struct cifs_secmech secmech; + char negflavor; + bool sec_ntlmssp; + bool sec_kerberosu2u; + bool sec_kerberos; + bool sec_mskerberos; + bool sec_iakerb; + bool large_buf; + bool rdma; + struct smbd_connection *smbd_conn; + struct delayed_work echo; + char *smallbuf; + char *bigbuf; + unsigned int pdu_size; + unsigned int total_read; + atomic_t in_send; + atomic_t num_waiters; + unsigned int max_read; + unsigned int max_write; + unsigned int min_offload; + unsigned int retrans; + struct { + bool requested; + bool enabled; + __le16 alg; + } compression; + __u16 signing_algorithm; + __le16 cipher_type; + __u8 preauth_sha_hash[64]; + bool signing_negotiated; + bool posix_ext_supported; + struct delayed_work reconnect; + struct mutex reconnect_mutex; + long unsigned int echo_interval; + int nr_targets; + bool noblockcnt; + struct TCP_Server_Info *primary_server; + __u16 channel_sequence_num; + struct mutex refpath_lock; + char *leaf_fullpath; + bool dfs_conn: 1; +}; + +typedef int mid_receive_t(struct TCP_Server_Info *, struct mid_q_entry *); + +typedef void mid_callback_t(struct mid_q_entry *); + +typedef int mid_handle_t(struct TCP_Server_Info *, struct mid_q_entry *); + +struct mid_q_entry { + struct list_head qhead; + struct kref refcount; + struct TCP_Server_Info *server; + __u64 mid; + __u16 credits; + __u16 credits_received; + __u32 pid; + __u32 sequence_number; + long unsigned int when_alloc; + mid_receive_t *receive; + mid_callback_t *callback; + mid_handle_t *handle; + void *callback_data; + struct task_struct *creator; + void *resp_buf; + unsigned int resp_buf_size; + int mid_state; + unsigned int mid_flags; + __le16 command; + unsigned int optype; + bool large_buf: 1; + bool multiRsp: 1; + bool multiEnd: 1; + bool decrypted: 1; +}; + +struct cifs_pending_open; + +struct cifs_fid { + __u16 netfid; + __u64 persistent_fid; + __u64 volatile_fid; + __u8 lease_key[16]; + __u8 create_guid[16]; + __u32 access; + struct cifs_pending_open *pending_open; + __u16 epoch; + bool purge_cache; +}; + +struct cifs_search_info { + loff_t index_of_last_entry; + __u16 entries_in_buffer; + __u16 info_level; + __u32 resume_key; + char *ntwrk_buf_start; + char *srch_entries_start; + char *last_entry; + const char *presume_name; + unsigned int resume_name_len; + bool endOfSearch: 1; + bool emptyDir: 1; + bool unicode: 1; + bool smallBuf: 1; +}; + +struct cifs_fid_locks; + +struct cifsFileInfo { + struct list_head tlist; + struct list_head flist; + struct cifs_fid_locks *llist; + kuid_t uid; + __u32 pid; + struct cifs_fid fid; + struct list_head rlist; + struct dentry *dentry; + struct tcon_link *tlink; + unsigned int f_flags; + bool invalidHandle: 1; + bool swapfile: 1; + bool oplock_break_cancelled: 1; + bool status_file_deleted: 1; + bool offload: 1; + __u16 oplock_epoch; + __u32 oplock_level; + int count; + spinlock_t file_info_lock; + struct mutex fh_mutex; + struct cifs_search_info srch_inf; + struct work_struct oplock_break; + struct work_struct put; + struct work_struct serverclose; + struct delayed_work deferred; + bool deferred_close_scheduled; + char *symlink_target; +}; + +struct cifs_server_iface; + +struct cifs_chan { + unsigned int in_reconnect: 1; + struct TCP_Server_Info *server; + struct cifs_server_iface *iface; + __u8 signkey[16]; +}; + +struct cifs_ses { + struct list_head smb_ses_list; + struct list_head rlist; + struct list_head tcon_list; + struct list_head dlist; + struct cifs_tcon *tcon_ipc; + spinlock_t ses_lock; + struct mutex session_mutex; + struct TCP_Server_Info *server; + int ses_count; + enum ses_status_enum ses_status; + unsigned int overrideSecFlg; + char *serverOS; + char *serverNOS; + char *serverDomain; + __u64 Suid; + kuid_t linux_uid; + kuid_t cred_uid; + unsigned int capabilities; + char ip_addr[49]; + char *user_name; + char *domainName; + char *password; + char *password2; + char workstation_name[65]; + struct session_key auth_key; + struct ntlmssp_auth *ntlmssp; + enum securityEnum sectype; + enum upcall_target_enum upcall_target; + bool sign; + bool domainAuto: 1; + bool expired_pwd; + unsigned int flags; + __u16 session_flags; + __u8 smb3signingkey[16]; + __u8 smb3encryptionkey[32]; + __u8 smb3decryptionkey[32]; + __u8 preauth_sha_hash[64]; + spinlock_t iface_lock; + struct list_head iface_list; + size_t iface_count; + long unsigned int iface_last_update; + spinlock_t chan_lock; + struct cifs_chan chans[16]; + size_t chan_count; + size_t chan_max; + atomic_t chan_seq; + long unsigned int chans_need_reconnect; + struct cifs_ses *dfs_root_ses; + struct nls_table *local_nls; +}; + +struct cifs_credits { + unsigned int value; + unsigned int instance; + unsigned int in_flight_check; + unsigned int rreq_debug_id; + unsigned int rreq_debug_index; +}; + +struct cached_fids; + +struct cifs_tcon { + struct list_head tcon_list; + int debug_id; + int tc_count; + struct list_head rlist; + spinlock_t tc_lock; + atomic_t num_local_opens; + atomic_t num_remote_opens; + struct list_head openFileList; + spinlock_t open_file_lock; + struct cifs_ses *ses; + char tree_name[1285]; + char *nativeFileSystem; + char *password; + __u32 tid; + __u16 Flags; + enum tid_status_enum status; + atomic_t num_smbs_sent; + union { + struct { + atomic_t num_writes; + atomic_t num_reads; + atomic_t num_flushes; + atomic_t num_oplock_brks; + atomic_t num_opens; + atomic_t num_closes; + atomic_t num_deletes; + atomic_t num_mkdirs; + atomic_t num_posixopens; + atomic_t num_posixmkdirs; + atomic_t num_rmdirs; + atomic_t num_renames; + atomic_t num_t2renames; + atomic_t num_ffirst; + atomic_t num_fnext; + atomic_t num_fclose; + atomic_t num_hardlinks; + atomic_t num_symlinks; + atomic_t num_locks; + atomic_t num_acl_get; + atomic_t num_acl_set; + } cifs_stats; + struct { + atomic_t smb2_com_sent[19]; + atomic_t smb2_com_failed[19]; + } smb2_stats; + } stats; + __u64 bytes_read; + __u64 bytes_written; + spinlock_t stat_lock; + time64_t stats_from_time; + FILE_SYSTEM_DEVICE_INFO fsDevInfo; + FILE_SYSTEM_ATTRIBUTE_INFO fsAttrInfo; + FILE_SYSTEM_UNIX_INFO fsUnixInfo; + bool ipc: 1; + bool pipe: 1; + bool print: 1; + bool retry: 1; + bool nocase: 1; + bool nohandlecache: 1; + bool nodelete: 1; + bool seal: 1; + bool unix_ext: 1; + bool posix_extensions; + bool local_lease: 1; + bool broken_posix_open; + bool broken_sparse_sup; + bool need_reconnect: 1; + bool need_reopen_files: 1; + bool use_resilient: 1; + bool use_persistent: 1; + bool no_lease: 1; + bool use_witness: 1; + bool dummy: 1; + __le32 capabilities; + __u32 share_flags; + __u32 maximal_access; + __u32 vol_serial_number; + __le64 vol_create_time; + __u64 snapshot_time; + __u32 handle_timeout; + __u32 ss_flags; + __u32 perf_sector_size; + __u32 max_chunks; + __u32 max_bytes_chunk; + __u32 max_bytes_copy; + __u32 max_cached_dirs; + u64 resource_id; + bool fscache_acquired; + struct fscache_volume *fscache; + struct mutex fscache_lock; + struct list_head pending_opens; + struct cached_fids *cfids; + struct delayed_work dfs_cache_work; + struct list_head dfs_ses_list; + struct delayed_work query_interfaces; + char *origin_fullpath; +}; + +struct cifsInodeInfo { + struct netfs_inode netfs; + bool can_cache_brlcks; + struct list_head llist; + struct rw_semaphore lock_sem; + struct list_head openFileList; + spinlock_t open_file_lock; + __u32 cifsAttrs; + unsigned int oplock; + __u16 epoch; + long unsigned int flags; + spinlock_t writers_lock; + unsigned int writers; + long unsigned int time; + u64 uniqueid; + u64 createtime; + __u8 lease_key[16]; + struct list_head deferred_closes; + spinlock_t deferred_lock; + bool lease_granted; + char *symlink_target; + __u32 reparse_tag; +}; + +struct dfs_info3_param { + int flags; + int path_consumed; + int server_type; + int ref_flag; + char *path_name; + char *node_name; + int ttl; +}; + +struct cifs_open_parms { + struct cifs_tcon *tcon; + struct cifs_sb_info *cifs_sb; + int disposition; + int desired_access; + int create_options; + const char *path; + struct cifs_fid *fid; + umode_t mode; + bool reconnect: 1; + bool replay: 1; + struct kvec *ea_cctx; +}; + +struct cifs_io_request; + +struct cifs_io_subrequest { + union { + struct netfs_io_subrequest subreq; + struct netfs_io_request *rreq; + struct cifs_io_request *req; + }; + ssize_t got_bytes; + unsigned int xid; + int result; + bool have_xid; + bool replay; + struct kvec iov[2]; + struct TCP_Server_Info *server; + struct cifs_credits credits; +}; + +struct cifs_io_parms { + __u16 netfid; + __u64 persistent_fid; + __u64 volatile_fid; + __u32 pid; + __u64 offset; + unsigned int length; + struct cifs_tcon *tcon; + struct TCP_Server_Info *server; +}; + +struct smb_version_values { + char *version_string; + __u16 protocol_id; + __u32 req_capabilities; + __u32 large_lock_type; + __u32 exclusive_lock_type; + __u32 shared_lock_type; + __u32 unlock_lock_type; + size_t header_preamble_size; + size_t header_size; + size_t max_header_size; + size_t read_rsp_size; + __le16 lock_cmd; + unsigned int cap_unix; + unsigned int cap_nt_find; + unsigned int cap_large_files; + __u16 signing_enabled; + __u16 signing_required; + size_t create_lease_size; +}; + +struct cifs_server_iface { + struct list_head iface_head; + struct kref refcount; + size_t speed; + size_t weight_fulfilled; + unsigned int num_channels; + unsigned int rdma_capable: 1; + unsigned int rss_capable: 1; + unsigned int is_active: 1; + struct __kernel_sockaddr_storage sockaddr; +}; + +struct cifs_pending_open { + struct list_head olist; + struct tcon_link *tlink; + __u8 lease_key[16]; + __u32 oplock; +}; + +struct cifs_fid_locks { + struct list_head llist; + struct cifsFileInfo *cfile; + struct list_head locks; +}; + +struct cifs_io_request { + struct netfs_io_request rreq; + struct cifsFileInfo *cfile; + pid_t pid; +}; + +enum utf8_normalization { + UTF8_NFDI = 0, + UTF8_NFDICF = 1, + UTF8_NMAX = 2, +}; + +struct cifs_fscache_inode_coherency_data { + __le64 last_write_time_sec; + __le64 last_change_time_sec; + __le32 last_write_time_nsec; + __le32 last_change_time_nsec; +}; + +struct smb2_hdr { + __le32 ProtocolId; + __le16 StructureSize; + __le16 CreditCharge; + __le32 Status; + __le16 Command; + __le16 CreditRequest; + __le32 Flags; + __le32 NextCommand; + __le64 MessageId; + union { + struct { + __le32 ProcessId; + __le32 TreeId; + } SyncId; + __le64 AsyncId; + } Id; + __le64 SessionId; + __u8 Signature[16]; +}; + +struct status_to_posix_error { + __le32 smb2_status; + int posix_error; + char *status_string; +}; + +struct cifs_mount_ctx { + struct cifs_sb_info *cifs_sb; + struct smb3_fs_context *fs_ctx; + unsigned int xid; + struct TCP_Server_Info *server; + struct cifs_ses *ses; + struct cifs_tcon *tcon; +}; + +struct dfs_cache_tgt_list { + int tl_numtgts; + struct list_head tl_list; +}; + +struct dfs_cache_tgt_iterator { + char *it_name; + int it_path_consumed; + struct list_head it_list; +}; + +struct dfs_ref { + char *path; + char *full_path; + struct cifs_ses *ses; + struct dfs_cache_tgt_list tl; + struct dfs_cache_tgt_iterator *tit; +}; + +struct dfs_ref_walk { + struct dfs_ref *ref; + struct dfs_ref refs[8]; +}; + +typedef unsigned int autofs_wqt_t; + +struct autofs_sb_info; + +struct autofs_info { + struct dentry *dentry; + int flags; + struct completion expire_complete; + struct list_head active; + struct list_head expiring; + struct autofs_sb_info *sbi; + long unsigned int exp_timeout; + long unsigned int last_used; + int count; + kuid_t uid; + kgid_t gid; + struct callback_head rcu; +}; + +struct autofs_wait_queue; + +struct autofs_sb_info { + u32 magic; + int pipefd; + struct file *pipe; + struct pid *oz_pgrp; + int version; + int sub_version; + int min_proto; + int max_proto; + unsigned int flags; + long unsigned int exp_timeout; + unsigned int type; + struct super_block *sb; + struct mutex wq_mutex; + struct mutex pipe_mutex; + spinlock_t fs_lock; + struct autofs_wait_queue *queues; + spinlock_t lookup_lock; + struct list_head active_list; + struct list_head expiring_list; + struct callback_head rcu; +}; + +struct autofs_wait_queue { + wait_queue_head_t queue; + struct autofs_wait_queue *next; + autofs_wqt_t wait_queue_token; + struct qstr name; + u32 offset; + u32 dev; + u64 ino; + kuid_t uid; + kgid_t gid; + pid_t pid; + pid_t tgid; + int status; + unsigned int wait_ctr; +}; + +typedef u16 uint16_t; + +typedef s64 int64_t; + +struct fuse_attr { + uint64_t ino; + uint64_t size; + uint64_t blocks; + uint64_t atime; + uint64_t mtime; + uint64_t ctime; + uint32_t atimensec; + uint32_t mtimensec; + uint32_t ctimensec; + uint32_t mode; + uint32_t nlink; + uint32_t uid; + uint32_t gid; + uint32_t rdev; + uint32_t blksize; + uint32_t flags; +}; + +struct fuse_sx_time { + int64_t tv_sec; + uint32_t tv_nsec; + int32_t __reserved; +}; + +struct fuse_statx { + uint32_t mask; + uint32_t blksize; + uint64_t attributes; + uint32_t nlink; + uint32_t uid; + uint32_t gid; + uint16_t mode; + uint16_t __spare0[1]; + uint64_t ino; + uint64_t size; + uint64_t blocks; + uint64_t attributes_mask; + struct fuse_sx_time atime; + struct fuse_sx_time btime; + struct fuse_sx_time ctime; + struct fuse_sx_time mtime; + uint32_t rdev_major; + uint32_t rdev_minor; + uint32_t dev_major; + uint32_t dev_minor; + uint64_t __spare2[14]; +}; + +enum fuse_ext_type { + FUSE_MAX_NR_SECCTX = 31, + FUSE_EXT_GROUPS = 32, +}; + +enum fuse_opcode { + FUSE_LOOKUP = 1, + FUSE_FORGET = 2, + FUSE_GETATTR = 3, + FUSE_SETATTR = 4, + FUSE_READLINK = 5, + FUSE_SYMLINK = 6, + FUSE_MKNOD = 8, + FUSE_MKDIR = 9, + FUSE_UNLINK = 10, + FUSE_RMDIR = 11, + FUSE_RENAME = 12, + FUSE_LINK = 13, + FUSE_OPEN = 14, + FUSE_READ = 15, + FUSE_WRITE = 16, + FUSE_STATFS = 17, + FUSE_RELEASE = 18, + FUSE_FSYNC = 20, + FUSE_SETXATTR = 21, + FUSE_GETXATTR = 22, + FUSE_LISTXATTR = 23, + FUSE_REMOVEXATTR = 24, + FUSE_FLUSH = 25, + FUSE_INIT = 26, + FUSE_OPENDIR = 27, + FUSE_READDIR = 28, + FUSE_RELEASEDIR = 29, + FUSE_FSYNCDIR = 30, + FUSE_GETLK = 31, + FUSE_SETLK = 32, + FUSE_SETLKW = 33, + FUSE_ACCESS = 34, + FUSE_CREATE = 35, + FUSE_INTERRUPT = 36, + FUSE_BMAP = 37, + FUSE_DESTROY = 38, + FUSE_IOCTL = 39, + FUSE_POLL = 40, + FUSE_NOTIFY_REPLY = 41, + FUSE_BATCH_FORGET = 42, + FUSE_FALLOCATE = 43, + FUSE_READDIRPLUS = 44, + FUSE_RENAME2 = 45, + FUSE_LSEEK = 46, + FUSE_COPY_FILE_RANGE = 47, + FUSE_SETUPMAPPING = 48, + FUSE_REMOVEMAPPING = 49, + FUSE_SYNCFS = 50, + FUSE_TMPFILE = 51, + FUSE_STATX = 52, + CUSE_INIT = 4096, + CUSE_INIT_BSWAP_RESERVED = 1048576, + FUSE_INIT_BSWAP_RESERVED = 436207616, +}; + +struct fuse_entry_out { + uint64_t nodeid; + uint64_t generation; + uint64_t entry_valid; + uint64_t attr_valid; + uint32_t entry_valid_nsec; + uint32_t attr_valid_nsec; + struct fuse_attr attr; +}; + +struct fuse_forget_one { + uint64_t nodeid; + uint64_t nlookup; +}; + +struct fuse_getattr_in { + uint32_t getattr_flags; + uint32_t dummy; + uint64_t fh; +}; + +struct fuse_attr_out { + uint64_t attr_valid; + uint32_t attr_valid_nsec; + uint32_t dummy; + struct fuse_attr attr; +}; + +struct fuse_statx_in { + uint32_t getattr_flags; + uint32_t reserved; + uint64_t fh; + uint32_t sx_flags; + uint32_t sx_mask; +}; + +struct fuse_statx_out { + uint64_t attr_valid; + uint32_t attr_valid_nsec; + uint32_t flags; + uint64_t spare[2]; + struct fuse_statx stat; +}; + +struct fuse_mknod_in { + uint32_t mode; + uint32_t rdev; + uint32_t umask; + uint32_t padding; +}; + +struct fuse_mkdir_in { + uint32_t mode; + uint32_t umask; +}; + +struct fuse_rename2_in { + uint64_t newdir; + uint32_t flags; + uint32_t padding; +}; + +struct fuse_link_in { + uint64_t oldnodeid; +}; + +struct fuse_setattr_in { + uint32_t valid; + uint32_t padding; + uint64_t fh; + uint64_t size; + uint64_t lock_owner; + uint64_t atime; + uint64_t mtime; + uint64_t ctime; + uint32_t atimensec; + uint32_t mtimensec; + uint32_t ctimensec; + uint32_t mode; + uint32_t unused4; + uint32_t uid; + uint32_t gid; + uint32_t unused5; +}; + +struct fuse_create_in { + uint32_t flags; + uint32_t mode; + uint32_t umask; + uint32_t open_flags; +}; + +struct fuse_open_out { + uint64_t fh; + uint32_t open_flags; + int32_t backing_id; +}; + +struct fuse_release_in { + uint64_t fh; + uint32_t flags; + uint32_t release_flags; + uint64_t lock_owner; +}; + +struct fuse_access_in { + uint32_t mask; + uint32_t padding; +}; + +struct fuse_in_header { + uint32_t len; + uint32_t opcode; + uint64_t unique; + uint64_t nodeid; + uint32_t uid; + uint32_t gid; + uint32_t pid; + uint16_t total_extlen; + uint16_t padding; +}; + +struct fuse_out_header { + uint32_t len; + int32_t error; + uint64_t unique; +}; + +struct fuse_secctx { + uint32_t size; + uint32_t padding; +}; + +struct fuse_secctx_header { + uint32_t size; + uint32_t nr_secctx; +}; + +struct fuse_ext_header { + uint32_t size; + uint32_t type; +}; + +struct fuse_supp_groups { + uint32_t nr_groups; + uint32_t groups[0]; +}; + +enum inode_i_mutex_lock_class { + I_MUTEX_NORMAL = 0, + I_MUTEX_PARENT = 1, + I_MUTEX_CHILD = 2, + I_MUTEX_XATTR = 3, + I_MUTEX_NONDIR2 = 4, + I_MUTEX_PARENT2 = 5, +}; + +struct fuse_forget_link { + struct fuse_forget_one forget_one; + struct fuse_forget_link *next; +}; + +struct fuse_submount_lookup { + refcount_t count; + u64 nodeid; + struct fuse_forget_link *forget; +}; + +struct fuse_backing { + struct file *file; + struct cred *cred; + refcount_t count; + struct callback_head rcu; +}; + +struct fuse_inode { + struct inode inode; + u64 nodeid; + u64 nlookup; + struct fuse_forget_link *forget; + u64 i_time; + u32 inval_mask; + umode_t orig_i_mode; + struct timespec64 i_btime; + u64 orig_ino; + u64 attr_version; + union { + struct { + struct list_head write_files; + struct list_head queued_writes; + int writectr; + int iocachectr; + wait_queue_head_t page_waitq; + wait_queue_head_t direct_io_waitq; + struct rb_root writepages; + }; + struct { + bool cached; + loff_t size; + loff_t pos; + u64 version; + struct timespec64 mtime; + u64 iversion; + spinlock_t lock; + } rdc; + }; + long unsigned int state; + struct mutex mutex; + spinlock_t lock; + struct fuse_submount_lookup *submount_lookup; + struct fuse_backing *fb; + bool ewb_invalid_cache_mask; +}; + +enum { + FUSE_I_ADVISE_RDPLUS = 0, + FUSE_I_INIT_RDPLUS = 1, + FUSE_I_SIZE_UNSTABLE = 2, + FUSE_I_BAD = 3, + FUSE_I_BTIME = 4, + FUSE_I_CACHE_IO_MODE = 5, +}; + +struct fuse_mount; + +union fuse_file_args; + +struct fuse_file { + struct fuse_mount *fm; + union fuse_file_args *args; + u64 kh; + u64 fh; + u64 nodeid; + refcount_t count; + u32 open_flags; + struct list_head write_entry; + struct { + loff_t pos; + loff_t cache_off; + u64 version; + } readdir; + struct rb_node polled_node; + wait_queue_head_t poll_wait; + enum { + IOM_NONE = 0, + IOM_CACHED = 1, + IOM_UNCACHED = 2, + } iomode; + struct file *passthrough; + const struct cred *cred; + bool flock: 1; +}; + +struct fuse_conn; + +struct fuse_mount { + struct fuse_conn *fc; + struct super_block *sb; + u32 negative_dentry_timeout; + u32 entry_timeout; + u32 attr_timeout; + bool no_flush; + bool no_xattr; + bool ignore_atime; + bool trace_rpc; + bool keep_cache; + bool writeback_cache; + struct list_head fc_entry; + struct callback_head rcu; +}; + +struct fuse_in_arg { + unsigned int size; + const void *value; +}; + +struct fuse_arg { + unsigned int size; + void *value; +}; + +struct fuse_args { + uint64_t nodeid; + uint32_t opcode; + uint8_t in_numargs; + uint8_t out_numargs; + uint8_t ext_idx; + bool force: 1; + bool noreply: 1; + bool nocreds: 1; + bool in_pages: 1; + bool out_pages: 1; + bool user_pages: 1; + bool out_argvar: 1; + bool page_zeroing: 1; + bool page_replace: 1; + bool may_block: 1; + bool is_ext: 1; + bool is_pinned: 1; + bool invalidate_vmap: 1; + struct fuse_in_arg in_args[3]; + struct fuse_arg out_args[2]; + void (*end)(struct fuse_mount *, struct fuse_args *, int); + void *vmap_base; +}; + +struct fuse_release_args { + struct fuse_args args; + struct fuse_release_in inarg; + struct inode *inode; +}; + +union fuse_file_args { + struct fuse_open_out open_outarg; + struct fuse_release_args release_args; +}; + +struct fuse_page_desc { + unsigned int length; + unsigned int offset; +}; + +struct fuse_args_pages { + struct fuse_args args; + struct page **pages; + struct fuse_page_desc *descs; + unsigned int num_pages; +}; + +struct fuse_req { + struct list_head list; + struct list_head intr_entry; + struct fuse_args *args; + refcount_t count; + long unsigned int flags; + struct { + struct fuse_in_header h; + } in; + struct { + struct fuse_out_header h; + } out; + wait_queue_head_t waitq; + void *argbuf; + struct fuse_mount *fm; +}; + +struct fuse_iqueue; + +struct fuse_iqueue_ops { + void (*send_forget)(struct fuse_iqueue *, struct fuse_forget_link *); + void (*send_interrupt)(struct fuse_iqueue *, struct fuse_req *); + void (*send_req)(struct fuse_iqueue *, struct fuse_req *); + void (*release)(struct fuse_iqueue *); +}; + +struct fuse_iqueue { + unsigned int connected; + spinlock_t lock; + wait_queue_head_t waitq; + u64 reqctr; + struct list_head pending; + struct list_head interrupts; + struct fuse_forget_link forget_list_head; + struct fuse_forget_link *forget_list_tail; + int forget_batch; + struct fasync_struct *fasync; + const struct fuse_iqueue_ops *ops; + void *priv; +}; + +struct fuse_sync_bucket; + +struct fuse_conn { + spinlock_t lock; + refcount_t count; + atomic_t dev_count; + struct callback_head rcu; + kuid_t user_id; + kgid_t group_id; + struct pid_namespace *pid_ns; + struct user_namespace *user_ns; + unsigned int max_read; + unsigned int max_write; + unsigned int max_pages; + unsigned int max_pages_limit; + struct fuse_iqueue iq; + atomic64_t khctr; + struct rb_root polled_files; + unsigned int max_background; + unsigned int congestion_threshold; + unsigned int num_background; + unsigned int active_background; + struct list_head bg_queue; + spinlock_t bg_lock; + int initialized; + int blocked; + wait_queue_head_t blocked_waitq; + unsigned int connected; + bool aborted; + unsigned int conn_error: 1; + unsigned int conn_init: 1; + unsigned int async_read: 1; + unsigned int abort_err: 1; + unsigned int atomic_o_trunc: 1; + unsigned int export_support: 1; + unsigned int writeback_cache: 1; + unsigned int parallel_dirops: 1; + unsigned int handle_killpriv: 1; + unsigned int cache_symlinks: 1; + unsigned int legacy_opts_show: 1; + unsigned int handle_killpriv_v2: 1; + unsigned int no_open: 1; + unsigned int no_opendir: 1; + unsigned int no_fsync: 1; + unsigned int no_fsyncdir: 1; + unsigned int no_flush: 1; + unsigned int no_xattr: 1; + unsigned int no_setxattr: 1; + unsigned int setxattr_ext: 1; + unsigned int no_getxattr: 1; + unsigned int no_listxattr: 1; + unsigned int no_removexattr: 1; + unsigned int no_lock: 1; + unsigned int no_access: 1; + unsigned int no_create: 1; + unsigned int no_interrupt: 1; + unsigned int no_bmap: 1; + unsigned int no_poll: 1; + unsigned int big_writes: 1; + unsigned int dont_mask: 1; + unsigned int no_flock: 1; + unsigned int no_fallocate: 1; + unsigned int no_rename2: 1; + unsigned int auto_inval_data: 1; + unsigned int explicit_inval_data: 1; + unsigned int do_readdirplus: 1; + unsigned int readdirplus_auto: 1; + unsigned int async_dio: 1; + unsigned int no_lseek: 1; + unsigned int posix_acl: 1; + unsigned int default_permissions: 1; + unsigned int allow_other: 1; + unsigned int no_copy_file_range: 1; + unsigned int destroy: 1; + unsigned int delete_stale: 1; + unsigned int no_control: 1; + unsigned int no_force_umount: 1; + unsigned int auto_submounts: 1; + unsigned int sync_fs: 1; + unsigned int init_security: 1; + unsigned int create_supp_group: 1; + unsigned int inode_dax: 1; + unsigned int no_tmpfile: 1; + unsigned int direct_io_allow_mmap: 1; + unsigned int no_statx: 1; + unsigned int passthrough: 1; + unsigned int use_pages_for_kvec_io: 1; + int max_stack_depth; + atomic_t num_waiting; + unsigned int minor; + struct list_head entry; + dev_t dev; + struct dentry *ctl_dentry[7]; + int ctl_ndents; + u32 scramble_key[4]; + atomic64_t attr_version; + void (*release)(struct fuse_conn *); + struct rw_semaphore killsb; + struct list_head devices; + struct list_head mounts; + struct fuse_sync_bucket *curr_bucket; + struct idr backing_files_map; +}; + +struct fuse_sync_bucket { + atomic_t count; + wait_queue_head_t waitq; + struct callback_head rcu; +}; + +enum hash_algo { + HASH_ALGO_MD4 = 0, + HASH_ALGO_MD5 = 1, + HASH_ALGO_SHA1 = 2, + HASH_ALGO_RIPE_MD_160 = 3, + HASH_ALGO_SHA256 = 4, + HASH_ALGO_SHA384 = 5, + HASH_ALGO_SHA512 = 6, + HASH_ALGO_SHA224 = 7, + HASH_ALGO_RIPE_MD_128 = 8, + HASH_ALGO_RIPE_MD_256 = 9, + HASH_ALGO_RIPE_MD_320 = 10, + HASH_ALGO_WP_256 = 11, + HASH_ALGO_WP_384 = 12, + HASH_ALGO_WP_512 = 13, + HASH_ALGO_TGR_128 = 14, + HASH_ALGO_TGR_160 = 15, + HASH_ALGO_TGR_192 = 16, + HASH_ALGO_SM3_256 = 17, + HASH_ALGO_STREEBOG_256 = 18, + HASH_ALGO_STREEBOG_512 = 19, + HASH_ALGO_SHA3_256 = 20, + HASH_ALGO_SHA3_384 = 21, + HASH_ALGO_SHA3_512 = 22, + HASH_ALGO__LAST = 23, +}; + +struct ovl_config { + char *upperdir; + char *workdir; + char **lowerdirs; + bool default_permissions; + int redirect_mode; + int verity_mode; + bool index; + int uuid; + bool nfs_export; + int xino; + bool metacopy; + bool userxattr; + bool ovl_volatile; +}; + +struct ovl_sb { + struct super_block *sb; + dev_t pseudo_dev; + bool bad_uuid; + bool is_lower; +}; + +struct ovl_layer { + struct vfsmount *mnt; + struct inode *trap; + struct ovl_sb *fs; + int idx; + int fsid; + bool has_xwhiteouts; +}; + +struct ovl_fs { + unsigned int numlayer; + unsigned int numfs; + unsigned int numdatalayer; + struct ovl_layer *layers; + struct ovl_sb *fs; + struct dentry *workbasedir; + struct dentry *workdir; + long int namelen; + struct ovl_config config; + const struct cred *creator_cred; + bool tmpfile; + bool noxattr; + bool nofh; + bool upperdir_locked; + bool workdir_locked; + struct inode *workbasedir_trap; + struct inode *workdir_trap; + int xino_mode; + atomic_long_t last_ino; + struct dentry *whiteout; + bool no_shared_whiteout; + errseq_t errseq; +}; + +typedef uint8_t dchars; + +struct kernel_lb_addr { + uint32_t logicalBlockNum; + uint16_t partitionReferenceNum; +}; + +struct pathComponent { + uint8_t componentType; + uint8_t lengthComponentIdent; + __le16 componentFileVersionNum; + dchars componentIdent[0]; +}; + +struct extent_position { + struct buffer_head *bh; + uint32_t offset; + struct kernel_lb_addr block; +}; + +struct udf_ext_cache { + struct extent_position epos; + loff_t lstart; +}; + +struct udf_inode_info { + struct timespec64 i_crtime; + struct kernel_lb_addr i_location; + __u64 i_unique; + __u32 i_lenEAttr; + __u32 i_lenAlloc; + __u64 i_lenExtents; + __u32 i_next_alloc_block; + __u32 i_next_alloc_goal; + __u32 i_checkpoint; + __u32 i_extraPerms; + unsigned int i_alloc_type: 3; + unsigned int i_efe: 1; + unsigned int i_use: 1; + unsigned int i_strat4096: 1; + unsigned int i_streamdir: 1; + unsigned int i_hidden: 1; + unsigned int reserved: 24; + __u8 *i_data; + struct kernel_lb_addr i_locStreamdir; + __u64 i_lenStreams; + struct rw_semaphore i_data_sem; + struct udf_ext_cache cached_extent; + spinlock_t i_extent_cache_lock; + struct inode vfs_inode; +}; + +typedef uint32_t udf_pblk_t; + +typedef s8 int8_t; + +typedef long long unsigned int xfs_ino_t; + +typedef __s64 xfs_daddr_t; + +typedef __u32 xfs_nlink_t; + +typedef uint32_t prid_t; + +typedef uint32_t xfs_agblock_t; + +typedef uint32_t xfs_agino_t; + +typedef uint32_t xfs_extlen_t; + +typedef uint32_t xfs_agnumber_t; + +typedef uint64_t xfs_extnum_t; + +typedef int64_t xfs_fsize_t; + +typedef int64_t xfs_lsn_t; + +typedef uint64_t xfs_fsblock_t; + +typedef uint64_t xfs_rfsblock_t; + +typedef uint64_t xfs_fileoff_t; + +typedef uint64_t xfs_filblks_t; + +typedef uint64_t xfs_rtbxlen_t; + +typedef void *xfs_failaddr_t; + +typedef enum { + XFS_EXT_NORM = 0, + XFS_EXT_UNWRITTEN = 1, +} xfs_exntst_t; + +struct xfs_bmbt_irec { + xfs_fileoff_t br_startoff; + xfs_fsblock_t br_startblock; + xfs_filblks_t br_blockcount; + xfs_exntst_t br_state; +}; + +enum xfs_refc_domain { + XFS_REFC_DOMAIN_SHARED = 0, + XFS_REFC_DOMAIN_COW = 1, +}; + +struct xfs_refcount_irec { + xfs_agblock_t rc_startblock; + xfs_extlen_t rc_blockcount; + xfs_nlink_t rc_refcount; + enum xfs_refc_domain rc_domain; +}; + +struct xfs_rmap_irec { + xfs_agblock_t rm_startblock; + xfs_extlen_t rm_blockcount; + uint64_t rm_owner; + uint64_t rm_offset; + unsigned int rm_flags; +}; + +enum xfs_ag_resv_type { + XFS_AG_RESV_NONE = 0, + XFS_AG_RESV_AGFL = 1, + XFS_AG_RESV_METADATA = 2, + XFS_AG_RESV_RMAPBT = 3, + XFS_AG_RESV_IGNORE = 4, +}; + +struct rhash_lock_head; + +struct bucket_table { + unsigned int size; + unsigned int nest; + u32 hash_rnd; + struct list_head walkers; + struct callback_head rcu; + struct bucket_table *future_tbl; + struct lockdep_map dep_map; + long: 64; + struct rhash_lock_head *buckets[0]; +}; + +struct rhash_lock_head {}; + +struct xfs_ag_geometry { + uint32_t ag_number; + uint32_t ag_length; + uint32_t ag_freeblks; + uint32_t ag_icount; + uint32_t ag_ifree; + uint32_t ag_sick; + uint32_t ag_checked; + uint32_t ag_flags; + uint64_t ag_reserved[12]; +}; + +struct __xfsstats { + uint32_t xs_allocx; + uint32_t xs_allocb; + uint32_t xs_freex; + uint32_t xs_freeb; + uint32_t xs_abt_lookup; + uint32_t xs_abt_compare; + uint32_t xs_abt_insrec; + uint32_t xs_abt_delrec; + uint32_t xs_blk_mapr; + uint32_t xs_blk_mapw; + uint32_t xs_blk_unmap; + uint32_t xs_add_exlist; + uint32_t xs_del_exlist; + uint32_t xs_look_exlist; + uint32_t xs_cmp_exlist; + uint32_t xs_bmbt_lookup; + uint32_t xs_bmbt_compare; + uint32_t xs_bmbt_insrec; + uint32_t xs_bmbt_delrec; + uint32_t xs_dir_lookup; + uint32_t xs_dir_create; + uint32_t xs_dir_remove; + uint32_t xs_dir_getdents; + uint32_t xs_trans_sync; + uint32_t xs_trans_async; + uint32_t xs_trans_empty; + uint32_t xs_ig_attempts; + uint32_t xs_ig_found; + uint32_t xs_ig_frecycle; + uint32_t xs_ig_missed; + uint32_t xs_ig_dup; + uint32_t xs_ig_reclaims; + uint32_t xs_ig_attrchg; + uint32_t xs_log_writes; + uint32_t xs_log_blocks; + uint32_t xs_log_noiclogs; + uint32_t xs_log_force; + uint32_t xs_log_force_sleep; + uint32_t xs_try_logspace; + uint32_t xs_sleep_logspace; + uint32_t xs_push_ail; + uint32_t xs_push_ail_success; + uint32_t xs_push_ail_pushbuf; + uint32_t xs_push_ail_pinned; + uint32_t xs_push_ail_locked; + uint32_t xs_push_ail_flushing; + uint32_t xs_push_ail_restarts; + uint32_t xs_push_ail_flush; + uint32_t xs_xstrat_quick; + uint32_t xs_xstrat_split; + uint32_t xs_write_calls; + uint32_t xs_read_calls; + uint32_t xs_attr_get; + uint32_t xs_attr_set; + uint32_t xs_attr_remove; + uint32_t xs_attr_list; + uint32_t xs_iflush_count; + uint32_t xs_icluster_flushcnt; + uint32_t xs_icluster_flushinode; + uint32_t vn_active; + uint32_t vn_alloc; + uint32_t vn_get; + uint32_t vn_hold; + uint32_t vn_rele; + uint32_t vn_reclaim; + uint32_t vn_remove; + uint32_t vn_free; + uint32_t xb_get; + uint32_t xb_create; + uint32_t xb_get_locked; + uint32_t xb_get_locked_waited; + uint32_t xb_busy_locked; + uint32_t xb_miss_locked; + uint32_t xb_page_retries; + uint32_t xb_page_found; + uint32_t xb_get_read; + uint32_t xs_abtb_2[15]; + uint32_t xs_abtc_2[15]; + uint32_t xs_bmbt_2[15]; + uint32_t xs_ibt_2[15]; + uint32_t xs_fibt_2[15]; + uint32_t xs_rmap_2[15]; + uint32_t xs_refcbt_2[15]; + uint32_t xs_rmap_mem_2[15]; + uint32_t xs_rcbag_2[15]; + uint32_t xs_qm_dqreclaims; + uint32_t xs_qm_dqreclaim_misses; + uint32_t xs_qm_dquot_dups; + uint32_t xs_qm_dqcachemisses; + uint32_t xs_qm_dqcachehits; + uint32_t xs_qm_dqwants; + uint32_t xs_qm_dquot; + uint32_t xs_qm_dquot_unused; + uint64_t xs_xstrat_bytes; + uint64_t xs_write_bytes; + uint64_t xs_read_bytes; + uint64_t defer_relog; +}; + +struct xfsstats { + union { + struct __xfsstats s; + uint32_t a[217]; + }; +}; + +struct xfs_kobj { + struct kobject kobject; + struct completion complete; +}; + +struct xstats { + struct xfsstats *xs_stats; + struct xfs_kobj xs_kobj; +}; + +typedef unsigned int xfs_buf_flags_t; + +struct xfs_buf_cache { + spinlock_t bc_lock; + struct rhashtable bc_hash; +}; + +struct xfs_mount; + +struct xfs_buftarg { + dev_t bt_dev; + struct file *bt_bdev_file; + struct block_device *bt_bdev; + struct dax_device *bt_daxdev; + struct file *bt_file; + u64 bt_dax_part_off; + struct xfs_mount *bt_mount; + unsigned int bt_meta_sectorsize; + size_t bt_meta_sectormask; + size_t bt_logical_sectorsize; + size_t bt_logical_sectormask; + struct shrinker *bt_shrinker; + struct list_lru bt_lru; + struct percpu_counter bt_io_count; + struct ratelimit_state bt_ioerror_rl; + struct xfs_buf_cache bt_cache[0]; +}; + +struct xfs_sb { + uint32_t sb_magicnum; + uint32_t sb_blocksize; + xfs_rfsblock_t sb_dblocks; + xfs_rfsblock_t sb_rblocks; + xfs_rtbxlen_t sb_rextents; + uuid_t sb_uuid; + xfs_fsblock_t sb_logstart; + xfs_ino_t sb_rootino; + xfs_ino_t sb_rbmino; + xfs_ino_t sb_rsumino; + xfs_agblock_t sb_rextsize; + xfs_agblock_t sb_agblocks; + xfs_agnumber_t sb_agcount; + xfs_extlen_t sb_rbmblocks; + xfs_extlen_t sb_logblocks; + uint16_t sb_versionnum; + uint16_t sb_sectsize; + uint16_t sb_inodesize; + uint16_t sb_inopblock; + char sb_fname[12]; + uint8_t sb_blocklog; + uint8_t sb_sectlog; + uint8_t sb_inodelog; + uint8_t sb_inopblog; + uint8_t sb_agblklog; + uint8_t sb_rextslog; + uint8_t sb_inprogress; + uint8_t sb_imax_pct; + uint64_t sb_icount; + uint64_t sb_ifree; + uint64_t sb_fdblocks; + uint64_t sb_frextents; + xfs_ino_t sb_uquotino; + xfs_ino_t sb_gquotino; + uint16_t sb_qflags; + uint8_t sb_flags; + uint8_t sb_shared_vn; + xfs_extlen_t sb_inoalignmt; + uint32_t sb_unit; + uint32_t sb_width; + uint8_t sb_dirblklog; + uint8_t sb_logsectlog; + uint16_t sb_logsectsize; + uint32_t sb_logsunit; + uint32_t sb_features2; + uint32_t sb_bad_features2; + uint32_t sb_features_compat; + uint32_t sb_features_ro_compat; + uint32_t sb_features_incompat; + uint32_t sb_features_log_incompat; + uint32_t sb_crc; + xfs_extlen_t sb_spino_align; + xfs_ino_t sb_pquotino; + xfs_lsn_t sb_lsn; + uuid_t sb_meta_uuid; +}; + +struct xfs_ino_geometry { + uint64_t maxicount; + unsigned int inode_cluster_size; + unsigned int inode_cluster_size_raw; + unsigned int inodes_per_cluster; + unsigned int blocks_per_cluster; + unsigned int cluster_align; + unsigned int cluster_align_inodes; + unsigned int inoalign_mask; + unsigned int inobt_mxr[2]; + unsigned int inobt_mnr[2]; + unsigned int inobt_maxlevels; + unsigned int ialloc_inos; + unsigned int ialloc_blks; + unsigned int ialloc_min_blks; + unsigned int ialloc_align; + unsigned int agino_log; + unsigned int attr_fork_offset; + uint64_t new_diflags2; + unsigned int min_folio_order; +}; + +struct xfs_trans_res { + uint tr_logres; + int tr_logcount; + int tr_logflags; +}; + +struct xfs_trans_resv { + struct xfs_trans_res tr_write; + struct xfs_trans_res tr_itruncate; + struct xfs_trans_res tr_rename; + struct xfs_trans_res tr_link; + struct xfs_trans_res tr_remove; + struct xfs_trans_res tr_symlink; + struct xfs_trans_res tr_create; + struct xfs_trans_res tr_create_tmpfile; + struct xfs_trans_res tr_mkdir; + struct xfs_trans_res tr_ifree; + struct xfs_trans_res tr_ichange; + struct xfs_trans_res tr_growdata; + struct xfs_trans_res tr_addafork; + struct xfs_trans_res tr_writeid; + struct xfs_trans_res tr_attrinval; + struct xfs_trans_res tr_attrsetm; + struct xfs_trans_res tr_attrsetrt; + struct xfs_trans_res tr_attrrm; + struct xfs_trans_res tr_clearagi; + struct xfs_trans_res tr_growrtalloc; + struct xfs_trans_res tr_growrtzero; + struct xfs_trans_res tr_growrtfree; + struct xfs_trans_res tr_qm_setqlim; + struct xfs_trans_res tr_qm_dqalloc; + struct xfs_trans_res tr_sb; + struct xfs_trans_res tr_fsyncts; +}; + +struct xfs_error_cfg { + struct xfs_kobj kobj; + int max_retries; + long int retry_timeout; +}; + +struct xfs_hooks {}; + +struct xfs_ail; + +struct xfs_buf; + +struct xfs_da_geometry; + +struct xlog; + +struct xfs_inode; + +struct xfs_quotainfo; + +struct xfs_mru_cache; + +struct xfs_mount { + struct xfs_sb m_sb; + struct super_block *m_super; + struct xfs_ail *m_ail; + struct xfs_buf *m_sb_bp; + char *m_rtname; + char *m_logname; + struct xfs_da_geometry *m_dir_geo; + struct xfs_da_geometry *m_attr_geo; + struct xlog *m_log; + struct xfs_inode *m_rbmip; + struct xfs_inode *m_rsumip; + struct xfs_inode *m_rootip; + struct xfs_quotainfo *m_quotainfo; + struct xfs_buftarg *m_ddev_targp; + struct xfs_buftarg *m_logdev_targp; + struct xfs_buftarg *m_rtdev_targp; + void *m_inodegc; + uint8_t *m_rsum_cache; + struct xfs_mru_cache *m_filestream; + struct workqueue_struct *m_buf_workqueue; + struct workqueue_struct *m_unwritten_workqueue; + struct workqueue_struct *m_reclaim_workqueue; + struct workqueue_struct *m_sync_workqueue; + struct workqueue_struct *m_blockgc_wq; + struct workqueue_struct *m_inodegc_wq; + int m_bsize; + uint8_t m_blkbit_log; + uint8_t m_blkbb_log; + uint8_t m_agno_log; + uint8_t m_sectbb_log; + int8_t m_rtxblklog; + uint m_blockmask; + uint m_blockwsize; + uint m_blockwmask; + uint m_alloc_mxr[2]; + uint m_alloc_mnr[2]; + uint m_bmap_dmxr[2]; + uint m_bmap_dmnr[2]; + uint m_rmap_mxr[2]; + uint m_rmap_mnr[2]; + uint m_refc_mxr[2]; + uint m_refc_mnr[2]; + uint m_alloc_maxlevels; + uint m_bm_maxlevels[2]; + uint m_rmap_maxlevels; + uint m_refc_maxlevels; + unsigned int m_agbtree_maxlevels; + xfs_extlen_t m_ag_prealloc_blocks; + uint m_alloc_set_aside; + uint m_ag_max_usable; + int m_dalign; + int m_swidth; + xfs_agnumber_t m_maxagi; + uint m_allocsize_log; + uint m_allocsize_blocks; + int m_logbufs; + int m_logbsize; + uint m_rsumlevels; + xfs_filblks_t m_rsumblocks; + int m_fixedfsid[2]; + uint m_qflags; + uint64_t m_features; + uint64_t m_low_space[5]; + uint64_t m_low_rtexts[5]; + uint64_t m_rtxblkmask; + struct xfs_ino_geometry m_ino_geo; + struct xfs_trans_resv m_resv; + long unsigned int m_opstate; + bool m_always_cow; + bool m_fail_unmount; + bool m_finobt_nores; + bool m_update_sb; + uint8_t m_fs_checked; + uint8_t m_fs_sick; + uint8_t m_rt_checked; + uint8_t m_rt_sick; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + spinlock_t m_sb_lock; + struct percpu_counter m_icount; + struct percpu_counter m_ifree; + struct percpu_counter m_fdblocks; + struct percpu_counter m_frextents; + struct percpu_counter m_delalloc_blks; + struct percpu_counter m_delalloc_rtextents; + atomic64_t m_allocbt_blks; + struct xarray m_perags; + uint64_t m_resblks; + uint64_t m_resblks_avail; + uint64_t m_resblks_save; + struct delayed_work m_reclaim_work; + struct dentry *m_debugfs; + struct xfs_kobj m_kobj; + struct xfs_kobj m_error_kobj; + struct xfs_kobj m_error_meta_kobj; + struct xfs_error_cfg m_error_cfg[4]; + struct xstats m_stats; + xfs_agnumber_t m_agfrotor; + atomic_t m_agirotor; + struct shrinker *m_inodegc_shrinker; + struct work_struct m_flush_inodes_work; + uint32_t m_generation; + struct mutex m_growlock; + struct cpumask m_inodegc_cpumask; + struct xfs_hooks m_dir_update_hooks; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct xfs_buf_map { + xfs_daddr_t bm_bn; + int bm_len; + unsigned int bm_flags; +}; + +struct xfs_buf_ops { + char *name; + union { + __be32 magic[2]; + __be16 magic16[2]; + }; + void (*verify_read)(struct xfs_buf *); + void (*verify_write)(struct xfs_buf *); + xfs_failaddr_t (*verify_struct)(struct xfs_buf *); +}; + +struct xfs_perag; + +struct xfs_buf_log_item; + +struct xfs_trans; + +struct xfs_buf { + struct rhash_head b_rhash_head; + xfs_daddr_t b_rhash_key; + int b_length; + atomic_t b_hold; + atomic_t b_lru_ref; + xfs_buf_flags_t b_flags; + struct semaphore b_sema; + struct list_head b_lru; + spinlock_t b_lock; + unsigned int b_state; + int b_io_error; + wait_queue_head_t b_waiters; + struct list_head b_list; + struct xfs_perag *b_pag; + struct xfs_mount *b_mount; + struct xfs_buftarg *b_target; + void *b_addr; + struct work_struct b_ioend_work; + struct completion b_iowait; + struct xfs_buf_log_item *b_log_item; + struct list_head b_li_list; + struct xfs_trans *b_transp; + struct page **b_pages; + struct page *b_page_array[2]; + struct xfs_buf_map *b_maps; + struct xfs_buf_map __b_map; + int b_map_count; + atomic_t b_pin_count; + atomic_t b_io_remaining; + unsigned int b_page_count; + unsigned int b_offset; + int b_error; + int b_retries; + long unsigned int b_first_retry_time; + int b_last_error; + const struct xfs_buf_ops *b_ops; + struct callback_head b_rcu; +}; + +struct xfs_ag_resv { + xfs_extlen_t ar_orig_reserved; + xfs_extlen_t ar_reserved; + xfs_extlen_t ar_asked; +}; + +struct xfs_defer_drain {}; + +struct xfs_perag { + struct xfs_mount *pag_mount; + xfs_agnumber_t pag_agno; + atomic_t pag_ref; + atomic_t pag_active_ref; + wait_queue_head_t pag_active_wq; + long unsigned int pag_opstate; + uint8_t pagf_bno_level; + uint8_t pagf_cnt_level; + uint8_t pagf_rmap_level; + uint32_t pagf_flcount; + xfs_extlen_t pagf_freeblks; + xfs_extlen_t pagf_longest; + uint32_t pagf_btreeblks; + xfs_agino_t pagi_freecount; + xfs_agino_t pagi_count; + xfs_agino_t pagl_pagino; + xfs_agino_t pagl_leftrec; + xfs_agino_t pagl_rightrec; + int pagb_count; + uint8_t pagf_refcount_level; + struct xfs_ag_resv pag_meta_resv; + struct xfs_ag_resv pag_rmapbt_resv; + xfs_agblock_t block_count; + xfs_agblock_t min_block; + xfs_agino_t agino_min; + xfs_agino_t agino_max; + uint16_t pag_checked; + uint16_t pag_sick; + spinlock_t pag_state_lock; + spinlock_t pagb_lock; + struct rb_root pagb_tree; + unsigned int pagb_gen; + wait_queue_head_t pagb_wait; + atomic_t pagf_fstrms; + spinlock_t pag_ici_lock; + struct xarray pag_ici_root; + int pag_ici_reclaimable; + long unsigned int pag_ici_reclaim_cursor; + struct xfs_buf_cache pag_bcache; + struct delayed_work pag_blockgc_work; + struct xfs_defer_drain pag_intents_drain; + struct xfs_hooks pag_rmap_update_hooks; +}; + +struct xlog_ticket; + +struct xfs_dquot_acct; + +struct xfs_trans { + unsigned int t_magic; + unsigned int t_log_res; + unsigned int t_log_count; + unsigned int t_blk_res; + unsigned int t_blk_res_used; + unsigned int t_rtx_res; + unsigned int t_rtx_res_used; + unsigned int t_flags; + xfs_agnumber_t t_highest_agno; + struct xlog_ticket *t_ticket; + struct xfs_mount *t_mountp; + struct xfs_dquot_acct *t_dqinfo; + int64_t t_icount_delta; + int64_t t_ifree_delta; + int64_t t_fdblocks_delta; + int64_t t_res_fdblocks_delta; + int64_t t_frextents_delta; + int64_t t_res_frextents_delta; + int64_t t_dblocks_delta; + int64_t t_agcount_delta; + int64_t t_imaxpct_delta; + int64_t t_rextsize_delta; + int64_t t_rbmblocks_delta; + int64_t t_rblocks_delta; + int64_t t_rextents_delta; + int64_t t_rextslog_delta; + struct list_head t_items; + struct list_head t_busy; + struct list_head t_dfops; + long unsigned int t_pflags; +}; + +enum xfs_btree_type { + XFS_BTREE_TYPE_AG = 0, + XFS_BTREE_TYPE_INODE = 1, + XFS_BTREE_TYPE_MEM = 2, +}; + +enum xbtree_key_contig { + XBTREE_KEY_GAP = 0, + XBTREE_KEY_CONTIGUOUS = 1, + XBTREE_KEY_OVERLAP = 2, +}; + +struct xfs_btree_cur; + +union xfs_btree_ptr; + +union xfs_btree_key; + +union xfs_btree_rec; + +struct xfs_btree_ops { + const char *name; + enum xfs_btree_type type; + unsigned int geom_flags; + size_t key_len; + size_t ptr_len; + size_t rec_len; + unsigned int lru_refs; + unsigned int statoff; + unsigned int sick_mask; + struct xfs_btree_cur * (*dup_cursor)(struct xfs_btree_cur *); + void (*update_cursor)(struct xfs_btree_cur *, struct xfs_btree_cur *); + void (*set_root)(struct xfs_btree_cur *, const union xfs_btree_ptr *, int); + int (*alloc_block)(struct xfs_btree_cur *, const union xfs_btree_ptr *, union xfs_btree_ptr *, int *); + int (*free_block)(struct xfs_btree_cur *, struct xfs_buf *); + int (*get_minrecs)(struct xfs_btree_cur *, int); + int (*get_maxrecs)(struct xfs_btree_cur *, int); + int (*get_dmaxrecs)(struct xfs_btree_cur *, int); + void (*init_key_from_rec)(union xfs_btree_key *, const union xfs_btree_rec *); + void (*init_rec_from_cur)(struct xfs_btree_cur *, union xfs_btree_rec *); + void (*init_ptr_from_cur)(struct xfs_btree_cur *, union xfs_btree_ptr *); + void (*init_high_key_from_rec)(union xfs_btree_key *, const union xfs_btree_rec *); + int64_t (*key_diff)(struct xfs_btree_cur *, const union xfs_btree_key *); + int64_t (*diff_two_keys)(struct xfs_btree_cur *, const union xfs_btree_key *, const union xfs_btree_key *, const union xfs_btree_key *); + const struct xfs_buf_ops *buf_ops; + int (*keys_inorder)(struct xfs_btree_cur *, const union xfs_btree_key *, const union xfs_btree_key *); + int (*recs_inorder)(struct xfs_btree_cur *, const union xfs_btree_rec *, const union xfs_btree_rec *); + enum xbtree_key_contig (*keys_contiguous)(struct xfs_btree_cur *, const union xfs_btree_key *, const union xfs_btree_key *, const union xfs_btree_key *); +}; + +struct xfs_dsb { + __be32 sb_magicnum; + __be32 sb_blocksize; + __be64 sb_dblocks; + __be64 sb_rblocks; + __be64 sb_rextents; + uuid_t sb_uuid; + __be64 sb_logstart; + __be64 sb_rootino; + __be64 sb_rbmino; + __be64 sb_rsumino; + __be32 sb_rextsize; + __be32 sb_agblocks; + __be32 sb_agcount; + __be32 sb_rbmblocks; + __be32 sb_logblocks; + __be16 sb_versionnum; + __be16 sb_sectsize; + __be16 sb_inodesize; + __be16 sb_inopblock; + char sb_fname[12]; + __u8 sb_blocklog; + __u8 sb_sectlog; + __u8 sb_inodelog; + __u8 sb_inopblog; + __u8 sb_agblklog; + __u8 sb_rextslog; + __u8 sb_inprogress; + __u8 sb_imax_pct; + __be64 sb_icount; + __be64 sb_ifree; + __be64 sb_fdblocks; + __be64 sb_frextents; + __be64 sb_uquotino; + __be64 sb_gquotino; + __be16 sb_qflags; + __u8 sb_flags; + __u8 sb_shared_vn; + __be32 sb_inoalignmt; + __be32 sb_unit; + __be32 sb_width; + __u8 sb_dirblklog; + __u8 sb_logsectlog; + __be16 sb_logsectsize; + __be32 sb_logsunit; + __be32 sb_features2; + __be32 sb_bad_features2; + __be32 sb_features_compat; + __be32 sb_features_ro_compat; + __be32 sb_features_incompat; + __be32 sb_features_log_incompat; + __le32 sb_crc; + __be32 sb_spino_align; + __be64 sb_pquotino; + __be64 sb_lsn; + uuid_t sb_meta_uuid; +}; + +struct xfs_agf { + __be32 agf_magicnum; + __be32 agf_versionnum; + __be32 agf_seqno; + __be32 agf_length; + __be32 agf_bno_root; + __be32 agf_cnt_root; + __be32 agf_rmap_root; + __be32 agf_bno_level; + __be32 agf_cnt_level; + __be32 agf_rmap_level; + __be32 agf_flfirst; + __be32 agf_fllast; + __be32 agf_flcount; + __be32 agf_freeblks; + __be32 agf_longest; + __be32 agf_btreeblks; + uuid_t agf_uuid; + __be32 agf_rmap_blocks; + __be32 agf_refcount_blocks; + __be32 agf_refcount_root; + __be32 agf_refcount_level; + __be64 agf_spare64[14]; + __be64 agf_lsn; + __be32 agf_crc; + __be32 agf_spare2; +}; + +struct xfs_agi { + __be32 agi_magicnum; + __be32 agi_versionnum; + __be32 agi_seqno; + __be32 agi_length; + __be32 agi_count; + __be32 agi_root; + __be32 agi_level; + __be32 agi_freecount; + __be32 agi_newino; + __be32 agi_dirino; + __be32 agi_unlinked[64]; + uuid_t agi_uuid; + __be32 agi_crc; + __be32 agi_pad32; + __be64 agi_lsn; + __be32 agi_free_root; + __be32 agi_free_level; + __be32 agi_iblocks; + __be32 agi_fblocks; +}; + +struct xfs_agfl { + __be32 agfl_magicnum; + __be32 agfl_seqno; + uuid_t agfl_uuid; + __be64 agfl_lsn; + __be32 agfl_crc; +} __attribute__((packed)); + +struct xfs_alloc_rec { + __be32 ar_startblock; + __be32 ar_blockcount; +}; + +typedef struct xfs_alloc_rec xfs_alloc_rec_t; + +typedef struct xfs_alloc_rec xfs_alloc_key_t; + +struct xfs_alloc_rec_incore { + xfs_agblock_t ar_startblock; + xfs_extlen_t ar_blockcount; +}; + +typedef uint64_t xfs_inofree_t; + +struct xfs_inobt_rec { + __be32 ir_startino; + union { + struct { + __be32 ir_freecount; + } f; + struct { + __be16 ir_holemask; + __u8 ir_count; + __u8 ir_freecount; + } sp; + } ir_u; + __be64 ir_free; +}; + +struct xfs_inobt_rec_incore { + xfs_agino_t ir_startino; + uint16_t ir_holemask; + uint8_t ir_count; + uint8_t ir_freecount; + xfs_inofree_t ir_free; +}; + +struct xfs_inobt_key { + __be32 ir_startino; +}; + +struct xfs_owner_info { + uint64_t oi_owner; + xfs_fileoff_t oi_offset; + unsigned int oi_flags; +}; + +struct xfs_rmap_rec { + __be32 rm_startblock; + __be32 rm_blockcount; + __be64 rm_owner; + __be64 rm_offset; +}; + +struct xfs_rmap_key { + __be32 rm_startblock; + __be64 rm_owner; + __be64 rm_offset; +} __attribute__((packed)); + +struct xfs_refcount_rec { + __be32 rc_startblock; + __be32 rc_blockcount; + __be32 rc_refcount; +}; + +struct xfs_refcount_key { + __be32 rc_startblock; +}; + +struct xfs_bmbt_rec { + __be64 l0; + __be64 l1; +}; + +typedef struct xfs_bmbt_rec xfs_bmbt_rec_t; + +typedef xfs_bmbt_rec_t xfs_bmdr_rec_t; + +struct xfs_bmbt_key { + __be64 br_startoff; +}; + +typedef struct xfs_bmbt_key xfs_bmdr_key_t; + +struct xfs_btree_block_shdr { + __be32 bb_leftsib; + __be32 bb_rightsib; + __be64 bb_blkno; + __be64 bb_lsn; + uuid_t bb_uuid; + __be32 bb_owner; + __le32 bb_crc; +}; + +struct xfs_btree_block_lhdr { + __be64 bb_leftsib; + __be64 bb_rightsib; + __be64 bb_blkno; + __be64 bb_lsn; + uuid_t bb_uuid; + __be64 bb_owner; + __le32 bb_crc; + __be32 bb_pad; +}; + +struct xfs_btree_block { + __be32 bb_magic; + __be16 bb_level; + __be16 bb_numrecs; + union { + struct xfs_btree_block_shdr s; + struct xfs_btree_block_lhdr l; + } bb_u; +}; + +struct xfs_imap { + xfs_daddr_t im_blkno; + short unsigned int im_len; + short unsigned int im_boffset; +}; + +struct xfs_ifork { + int64_t if_bytes; + struct xfs_btree_block *if_broot; + unsigned int if_seq; + int if_height; + void *if_data; + xfs_extnum_t if_nextents; + short int if_broot_bytes; + int8_t if_format; + uint8_t if_needextents; +}; + +struct xfs_dquot; + +struct xfs_inode_log_item; + +struct xfs_inode { + struct xfs_mount *i_mount; + struct xfs_dquot *i_udquot; + struct xfs_dquot *i_gdquot; + struct xfs_dquot *i_pdquot; + xfs_ino_t i_ino; + struct xfs_imap i_imap; + struct xfs_ifork *i_cowfp; + struct xfs_ifork i_df; + struct xfs_ifork i_af; + struct xfs_inode_log_item *i_itemp; + struct rw_semaphore i_lock; + atomic_t i_pincount; + struct llist_node i_gclist; + uint16_t i_checked; + uint16_t i_sick; + spinlock_t i_flags_lock; + long unsigned int i_flags; + uint64_t i_delayed_blks; + xfs_fsize_t i_disk_size; + xfs_rfsblock_t i_nblocks; + prid_t i_projid; + xfs_extlen_t i_extsize; + union { + xfs_extlen_t i_cowextsize; + uint16_t i_flushiter; + }; + uint8_t i_forkoff; + uint16_t i_diflags; + uint64_t i_diflags2; + struct timespec64 i_crtime; + xfs_agino_t i_next_unlinked; + xfs_agino_t i_prev_unlinked; + struct inode i_vnode; + spinlock_t i_ioend_lock; + struct work_struct i_ioend_work; + struct list_head i_ioend_list; +}; + +union xfs_btree_ptr { + __be32 s; + __be64 l; +}; + +union xfs_btree_key { + struct xfs_bmbt_key bmbt; + xfs_bmdr_key_t bmbr; + xfs_alloc_key_t alloc; + struct xfs_inobt_key inobt; + struct xfs_rmap_key rmap; + struct xfs_rmap_key __rmap_bigkey[2]; + struct xfs_refcount_key refc; +}; + +union xfs_btree_rec { + struct xfs_bmbt_rec bmbt; + xfs_bmdr_rec_t bmbr; + struct xfs_alloc_rec alloc; + struct xfs_inobt_rec inobt; + struct xfs_rmap_rec rmap; + struct xfs_refcount_rec refc; +}; + +union xfs_btree_irec { + struct xfs_alloc_rec_incore a; + struct xfs_bmbt_irec b; + struct xfs_inobt_rec_incore i; + struct xfs_rmap_irec r; + struct xfs_refcount_irec rc; +}; + +struct xfs_btree_level { + struct xfs_buf *bp; + uint16_t ptr; + uint16_t ra; +}; + +struct xbtree_ifakeroot; + +struct xbtree_afakeroot; + +struct xfbtree; + +struct xfs_btree_cur { + struct xfs_trans *bc_tp; + struct xfs_mount *bc_mp; + const struct xfs_btree_ops *bc_ops; + struct kmem_cache *bc_cache; + unsigned int bc_flags; + union xfs_btree_irec bc_rec; + uint8_t bc_nlevels; + uint8_t bc_maxlevels; + union { + struct { + struct xfs_inode *ip; + short int forksize; + char whichfork; + struct xbtree_ifakeroot *ifake; + } bc_ino; + struct { + struct xfs_perag *pag; + struct xfs_buf *agbp; + struct xbtree_afakeroot *afake; + } bc_ag; + struct { + struct xfbtree *xfbtree; + struct xfs_perag *pag; + } bc_mem; + }; + union { + struct { + int allocated; + } bc_bmap; + struct { + unsigned int nr_ops; + unsigned int shape_changes; + } bc_refc; + }; + struct xfs_btree_level bc_levels[0]; +}; + +struct xfs_alloc_arg { + struct xfs_trans *tp; + struct xfs_mount *mp; + struct xfs_buf *agbp; + struct xfs_perag *pag; + xfs_fsblock_t fsbno; + xfs_agnumber_t agno; + xfs_agblock_t agbno; + xfs_extlen_t minlen; + xfs_extlen_t maxlen; + xfs_extlen_t mod; + xfs_extlen_t prod; + xfs_extlen_t minleft; + xfs_extlen_t total; + xfs_extlen_t alignment; + xfs_extlen_t minalignslop; + xfs_agblock_t min_agbno; + xfs_agblock_t max_agbno; + xfs_extlen_t len; + int datatype; + char wasdel; + char wasfromfl; + bool alloc_minlen_only; + struct xfs_owner_info oinfo; + enum xfs_ag_resv_type resv; +}; + +struct aghdr_init_data { + xfs_agblock_t agno; + xfs_extlen_t agsize; + struct list_head buffer_list; + xfs_rfsblock_t nfree; + xfs_daddr_t daddr; + size_t numblks; + const struct xfs_btree_ops *bc_ops; +}; + +typedef struct xfs_trans xfs_trans_t; + +typedef void (*aghdr_init_work_f)(struct xfs_mount *, struct xfs_buf *, struct aghdr_init_data *); + +struct xfs_aghdr_grow_data { + xfs_daddr_t daddr; + size_t numblks; + const struct xfs_buf_ops *ops; + aghdr_init_work_f work; + const struct xfs_btree_ops *bc_ops; + bool need_init; +}; + +typedef __s64 xfs_off_t; + +typedef int64_t xfs_csn_t; + +typedef uint32_t xfs_dablk_t; + +typedef uint32_t xfs_dahash_t; + +enum { + __XBTS_lookup = 0, + __XBTS_compare = 1, + __XBTS_insrec = 2, + __XBTS_delrec = 3, + __XBTS_newroot = 4, + __XBTS_killroot = 5, + __XBTS_increment = 6, + __XBTS_decrement = 7, + __XBTS_lshift = 8, + __XBTS_rshift = 9, + __XBTS_split = 10, + __XBTS_join = 11, + __XBTS_alloc = 12, + __XBTS_free = 13, + __XBTS_moves = 14, + __XBTS_MAX = 15, +}; + +struct xfs_item_ops; + +struct xfs_log_vec; + +struct xfs_log_item { + struct list_head li_ail; + struct list_head li_trans; + xfs_lsn_t li_lsn; + struct xlog *li_log; + struct xfs_ail *li_ailp; + uint li_type; + long unsigned int li_flags; + struct xfs_buf *li_buf; + struct list_head li_bio_list; + const struct xfs_item_ops *li_ops; + struct list_head li_cil; + struct xfs_log_vec *li_lv; + struct xfs_log_vec *li_lv_shadow; + xfs_csn_t li_seq; + uint32_t li_order_id; +}; + +struct xfs_buf_log_format { + short unsigned int blf_type; + short unsigned int blf_size; + short unsigned int blf_flags; + short unsigned int blf_len; + int64_t blf_blkno; + unsigned int blf_map_size; + unsigned int blf_data_map[17]; +}; + +struct xfs_buf_log_item { + struct xfs_log_item bli_item; + struct xfs_buf *bli_buf; + unsigned int bli_flags; + unsigned int bli_recur; + atomic_t bli_refcount; + int bli_format_count; + struct xfs_buf_log_format *bli_formats; + struct xfs_buf_log_format __bli_format; +}; + +enum xfs_blft { + XFS_BLFT_UNKNOWN_BUF = 0, + XFS_BLFT_UDQUOT_BUF = 1, + XFS_BLFT_PDQUOT_BUF = 2, + XFS_BLFT_GDQUOT_BUF = 3, + XFS_BLFT_BTREE_BUF = 4, + XFS_BLFT_AGF_BUF = 5, + XFS_BLFT_AGFL_BUF = 6, + XFS_BLFT_AGI_BUF = 7, + XFS_BLFT_DINO_BUF = 8, + XFS_BLFT_SYMLINK_BUF = 9, + XFS_BLFT_DIR_BLOCK_BUF = 10, + XFS_BLFT_DIR_DATA_BUF = 11, + XFS_BLFT_DIR_FREE_BUF = 12, + XFS_BLFT_DIR_LEAF1_BUF = 13, + XFS_BLFT_DIR_LEAFN_BUF = 14, + XFS_BLFT_DA_NODE_BUF = 15, + XFS_BLFT_ATTR_LEAF_BUF = 16, + XFS_BLFT_ATTR_RMT_BUF = 17, + XFS_BLFT_SB_BUF = 18, + XFS_BLFT_RTBITMAP_BUF = 19, + XFS_BLFT_RTSUMMARY_BUF = 20, + XFS_BLFT_MAX_BUF = 32, +}; + +enum { + XFS_LOWSP_1_PCNT = 0, + XFS_LOWSP_2_PCNT = 1, + XFS_LOWSP_3_PCNT = 2, + XFS_LOWSP_4_PCNT = 3, + XFS_LOWSP_5_PCNT = 4, + XFS_LOWSP_MAX = 5, +}; + +enum { + XFS_ERR_METADATA = 0, + XFS_ERR_CLASS_MAX = 1, +}; + +enum { + XFS_ERR_DEFAULT = 0, + XFS_ERR_EIO = 1, + XFS_ERR_ENOSPC = 2, + XFS_ERR_ENODEV = 3, + XFS_ERR_ERRNO_MAX = 4, +}; + +typedef uint xfs_dir2_data_aoff_t; + +struct xfs_da_geometry { + unsigned int blksize; + unsigned int fsbcount; + uint8_t fsblog; + uint8_t blklog; + unsigned int node_hdr_size; + unsigned int node_ents; + unsigned int magicpct; + xfs_dablk_t datablk; + unsigned int leaf_hdr_size; + unsigned int leaf_max_ents; + xfs_dablk_t leafblk; + unsigned int free_hdr_size; + unsigned int free_max_bests; + xfs_dablk_t freeblk; + xfs_extnum_t max_extents; + xfs_dir2_data_aoff_t data_first_offset; + size_t data_entry_offset; +}; + +typedef struct xfs_mount xfs_mount_t; + +typedef struct xfs_inode xfs_inode_t; + +struct xfs_da_blkinfo { + __be32 forw; + __be32 back; + __be16 magic; + __be16 pad; +}; + +typedef struct xfs_da_blkinfo xfs_da_blkinfo_t; + +struct xfs_da3_blkinfo { + struct xfs_da_blkinfo hdr; + __be32 crc; + __be64 blkno; + __be64 lsn; + uuid_t uuid; + __be64 owner; +}; + +typedef uint16_t xfs_dir2_data_off_t; + +typedef uint32_t xfs_dir2_dataptr_t; + +typedef xfs_off_t xfs_dir2_off_t; + +typedef uint32_t xfs_dir2_db_t; + +struct xfs_dir2_data_free { + __be16 offset; + __be16 length; +}; + +typedef struct xfs_dir2_data_free xfs_dir2_data_free_t; + +struct xfs_dir2_data_hdr { + __be32 magic; + xfs_dir2_data_free_t bestfree[3]; +}; + +typedef struct xfs_dir2_data_hdr xfs_dir2_data_hdr_t; + +struct xfs_dir2_data_entry { + __be64 inumber; + __u8 namelen; + __u8 name[0]; +}; + +typedef struct xfs_dir2_data_entry xfs_dir2_data_entry_t; + +struct xfs_dir2_data_unused { + __be16 freetag; + __be16 length; + __be16 tag; +}; + +typedef struct xfs_dir2_data_unused xfs_dir2_data_unused_t; + +struct xfs_dir2_leaf_hdr { + xfs_da_blkinfo_t info; + __be16 count; + __be16 stale; +}; + +typedef struct xfs_dir2_leaf_hdr xfs_dir2_leaf_hdr_t; + +struct xfs_dir3_leaf_hdr { + struct xfs_da3_blkinfo info; + __be16 count; + __be16 stale; + __be32 pad; +}; + +struct xfs_dir2_leaf_entry { + __be32 hashval; + __be32 address; +}; + +typedef struct xfs_dir2_leaf_entry xfs_dir2_leaf_entry_t; + +struct xfs_dir2_leaf_tail { + __be32 bestcount; +}; + +typedef struct xfs_dir2_leaf_tail xfs_dir2_leaf_tail_t; + +struct xfs_dir2_leaf { + xfs_dir2_leaf_hdr_t hdr; + xfs_dir2_leaf_entry_t __ents[0]; +}; + +typedef struct xfs_dir2_leaf xfs_dir2_leaf_t; + +struct xfs_dir3_leaf { + struct xfs_dir3_leaf_hdr hdr; + struct xfs_dir2_leaf_entry __ents[0]; +}; + +struct xfs_dir2_free_hdr { + __be32 magic; + __be32 firstdb; + __be32 nvalid; + __be32 nused; +}; + +typedef struct xfs_dir2_free_hdr xfs_dir2_free_hdr_t; + +struct xfs_dir2_free { + xfs_dir2_free_hdr_t hdr; + __be16 bests[0]; +}; + +struct xfs_dir2_block_tail { + __be32 count; + __be32 stale; +}; + +typedef struct xfs_dir2_block_tail xfs_dir2_block_tail_t; + +enum xfs_dacmp { + XFS_CMP_DIFFERENT = 0, + XFS_CMP_EXACT = 1, + XFS_CMP_CASE = 2, +}; + +struct xfs_da_args { + struct xfs_da_geometry *geo; + const uint8_t *name; + const uint8_t *new_name; + void *value; + void *new_value; + struct xfs_inode *dp; + struct xfs_trans *trans; + xfs_ino_t inumber; + xfs_ino_t owner; + int valuelen; + int new_valuelen; + uint8_t filetype; + uint8_t op_flags; + uint8_t attr_filter; + short int namelen; + short int new_namelen; + xfs_dahash_t hashval; + xfs_extlen_t total; + int whichfork; + xfs_dablk_t blkno; + int index; + xfs_dablk_t rmtblkno; + int rmtblkcnt; + int rmtvaluelen; + xfs_dablk_t blkno2; + int index2; + xfs_dablk_t rmtblkno2; + int rmtblkcnt2; + int rmtvaluelen2; + enum xfs_dacmp cmpresult; +}; + +typedef struct xfs_da_args xfs_da_args_t; + +struct xfs_da_state_blk { + struct xfs_buf *bp; + xfs_dablk_t blkno; + xfs_daddr_t disk_blkno; + int index; + xfs_dahash_t hashval; + int magic; +}; + +typedef struct xfs_da_state_blk xfs_da_state_blk_t; + +struct xfs_da_state_path { + int active; + xfs_da_state_blk_t blk[5]; +}; + +typedef struct xfs_da_state_path xfs_da_state_path_t; + +struct xfs_da_state { + xfs_da_args_t *args; + struct xfs_mount *mp; + xfs_da_state_path_t path; + xfs_da_state_path_t altpath; + unsigned char inleaf; + unsigned char extravalid; + unsigned char extraafter; + xfs_da_state_blk_t extrablk; +}; + +typedef struct xfs_da_state xfs_da_state_t; + +struct xfs_dir3_icleaf_hdr { + uint32_t forw; + uint32_t back; + uint16_t magic; + uint16_t count; + uint16_t stale; + struct xfs_dir2_leaf_entry *ents; +}; + +struct xfs_dir3_icfree_hdr { + uint32_t magic; + uint32_t firstdb; + uint32_t nvalid; + uint32_t nused; + __be16 *bests; +}; + +struct xfs_item_ops { + unsigned int flags; + void (*iop_size)(struct xfs_log_item *, int *, int *); + void (*iop_format)(struct xfs_log_item *, struct xfs_log_vec *); + void (*iop_pin)(struct xfs_log_item *); + void (*iop_unpin)(struct xfs_log_item *, int); + uint64_t (*iop_sort)(struct xfs_log_item *); + int (*iop_precommit)(struct xfs_trans *, struct xfs_log_item *); + void (*iop_committing)(struct xfs_log_item *, xfs_csn_t); + xfs_lsn_t (*iop_committed)(struct xfs_log_item *, xfs_lsn_t); + uint (*iop_push)(struct xfs_log_item *, struct list_head *); + void (*iop_release)(struct xfs_log_item *); + bool (*iop_match)(struct xfs_log_item *, uint64_t); + struct xfs_log_item * (*iop_intent)(struct xfs_log_item *); +}; + +struct xfs_log_iovec { + void *i_addr; + int i_len; + uint i_type; +}; + +struct xfs_dir3_blk_hdr { + __be32 magic; + __be32 crc; + __be64 blkno; + __be64 lsn; + uuid_t uuid; + __be64 owner; +}; + +typedef struct xfs_dir2_free xfs_dir2_free_t; + +struct xfs_dir3_free_hdr { + struct xfs_dir3_blk_hdr hdr; + __be32 firstdb; + __be32 nvalid; + __be32 nused; + __be32 pad; +}; + +struct xfs_dir3_free { + struct xfs_dir3_free_hdr hdr; + __be16 bests[0]; +}; + +struct xfs_log_vec { + struct list_head lv_list; + uint32_t lv_order_id; + int lv_niovecs; + struct xfs_log_iovec *lv_iovecp; + struct xfs_log_item *lv_item; + char *lv_buf; + int lv_bytes; + int lv_buf_len; + int lv_size; +}; + +struct xfs_name { + const unsigned char *name; + int len; + int type; +}; + +struct xfs_parent_rec { + __be64 p_ino; + __be32 p_gen; +} __attribute__((packed)); + +enum xfs_attr_update { + XFS_ATTRUPDATE_REMOVE = 0, + XFS_ATTRUPDATE_UPSERT = 1, + XFS_ATTRUPDATE_CREATE = 2, + XFS_ATTRUPDATE_REPLACE = 3, +}; + +struct xfs_parent_args { + struct xfs_parent_rec rec; + struct xfs_parent_rec new_rec; + struct xfs_da_args args; +}; + +enum xfs_attr_defer_op { + XFS_ATTR_DEFER_SET = 0, + XFS_ATTR_DEFER_REMOVE = 1, + XFS_ATTR_DEFER_REPLACE = 2, +}; + +typedef uint32_t xfs_rtxlen_t; + +typedef uint32_t xfs_dqid_t; + +typedef uint64_t xfs_qcnt_t; + +struct xfs_quota_limits { + xfs_qcnt_t hard; + xfs_qcnt_t soft; + time64_t time; +}; + +struct xfs_def_quota { + struct xfs_quota_limits blk; + struct xfs_quota_limits ino; + struct xfs_quota_limits rtb; +}; + +struct xfs_quotainfo { + struct xarray qi_uquota_tree; + struct xarray qi_gquota_tree; + struct xarray qi_pquota_tree; + struct mutex qi_tree_lock; + struct xfs_inode *qi_uquotaip; + struct xfs_inode *qi_gquotaip; + struct xfs_inode *qi_pquotaip; + struct list_lru qi_lru; + int qi_dquots; + struct mutex qi_quotaofflock; + xfs_filblks_t qi_dqchunklen; + uint qi_dqperchunk; + struct xfs_def_quota qi_usr_default; + struct xfs_def_quota qi_grp_default; + struct xfs_def_quota qi_prj_default; + struct shrinker *qi_shrinker; + time64_t qi_expiry_min; + time64_t qi_expiry_max; + struct xfs_hooks qi_mod_ino_dqtrx_hooks; + struct xfs_hooks qi_apply_dqtrx_hooks; +}; + +typedef uint8_t xfs_dqtype_t; + +struct xfs_dquot_res { + xfs_qcnt_t reserved; + xfs_qcnt_t count; + xfs_qcnt_t hardlimit; + xfs_qcnt_t softlimit; + time64_t timer; +}; + +struct xfs_dq_logitem { + struct xfs_log_item qli_item; + struct xfs_dquot *qli_dquot; + xfs_lsn_t qli_flush_lsn; + spinlock_t qli_lock; + bool qli_dirty; +}; + +struct xfs_dquot { + struct list_head q_lru; + struct xfs_mount *q_mount; + xfs_dqtype_t q_type; + uint16_t q_flags; + xfs_dqid_t q_id; + uint q_nrefs; + int q_bufoffset; + xfs_daddr_t q_blkno; + xfs_fileoff_t q_fileoffset; + struct xfs_dquot_res q_blk; + struct xfs_dquot_res q_ino; + struct xfs_dquot_res q_rtb; + struct xfs_dq_logitem q_logitem; + xfs_qcnt_t q_prealloc_lo_wmark; + xfs_qcnt_t q_prealloc_hi_wmark; + int64_t q_low_space[3]; + struct mutex q_qlock; + struct completion q_flush; + atomic_t q_pincount; + struct wait_queue_head q_pinwait; +}; + +struct xfs_dqtrx { + struct xfs_dquot *qt_dquot; + uint64_t qt_blk_res; + int64_t qt_bcount_delta; + int64_t qt_delbcnt_delta; + uint64_t qt_rtblk_res; + uint64_t qt_rtblk_res_used; + int64_t qt_rtbcount_delta; + int64_t qt_delrtb_delta; + uint64_t qt_ino_res; + uint64_t qt_ino_res_used; + int64_t qt_icount_delta; +}; + +struct xfs_dquot_acct { + struct xfs_dqtrx dqs[15]; +}; + +struct xfs_iext_leaf; + +struct xfs_iext_cursor { + struct xfs_iext_leaf *leaf; + int pos; +}; + +struct iomap_folio_ops; + +struct iomap { + u64 addr; + loff_t offset; + u64 length; + u16 type; + u16 flags; + struct block_device *bdev; + struct dax_device *dax_dev; + void *inline_data; + void *private; + const struct iomap_folio_ops *folio_ops; + u64 validity_cookie; +}; + +struct iomap_iter; + +struct iomap_folio_ops { + struct folio * (*get_folio)(struct iomap_iter *, loff_t, unsigned int); + void (*put_folio)(struct inode *, loff_t, unsigned int, struct folio *); + bool (*iomap_valid)(struct inode *, const struct iomap *); +}; + +struct iomap_iter { + struct inode *inode; + loff_t pos; + u64 len; + s64 processed; + unsigned int flags; + struct iomap iomap; + struct iomap srcmap; + void *private; +}; + +struct iomap_ops { + int (*iomap_begin)(struct inode *, loff_t, loff_t, unsigned int, struct iomap *, struct iomap *); + int (*iomap_end)(struct inode *, loff_t, loff_t, ssize_t, unsigned int, struct iomap *); +}; + +struct iomap_ioend { + struct list_head io_list; + u16 io_type; + u16 io_flags; + struct inode *io_inode; + size_t io_size; + loff_t io_offset; + sector_t io_sector; + struct bio io_bio; +}; + +struct iomap_writepage_ctx; + +struct iomap_writeback_ops { + int (*map_blocks)(struct iomap_writepage_ctx *, struct inode *, loff_t, unsigned int); + int (*prepare_ioend)(struct iomap_ioend *, int); + void (*discard_folio)(struct folio *, loff_t); +}; + +struct iomap_writepage_ctx { + struct iomap iomap; + struct iomap_ioend *ioend; + const struct iomap_writeback_ops *ops; + u32 nr_folios; +}; + +struct xfs_writepage_ctx { + struct iomap_writepage_ctx ctx; + unsigned int data_seq; + unsigned int cow_seq; +}; + +struct xfs_sysctl_val { + int min; + int val; + int max; +}; + +typedef struct xfs_sysctl_val xfs_sysctl_val_t; + +struct xfs_param { + xfs_sysctl_val_t sgid_inherit; + xfs_sysctl_val_t symlink_mode; + xfs_sysctl_val_t panic_mask; + xfs_sysctl_val_t error_level; + xfs_sysctl_val_t syncd_timer; + xfs_sysctl_val_t stats_clear; + xfs_sysctl_val_t inherit_sync; + xfs_sysctl_val_t inherit_nodump; + xfs_sysctl_val_t inherit_noatim; + xfs_sysctl_val_t xfs_buf_timer; + xfs_sysctl_val_t xfs_buf_age; + xfs_sysctl_val_t inherit_nosym; + xfs_sysctl_val_t rotorstep; + xfs_sysctl_val_t inherit_nodfrg; + xfs_sysctl_val_t fstrm_timer; + xfs_sysctl_val_t blockgc_timer; +}; + +typedef struct xfs_param xfs_param_t; + +struct xfs_globals { + int bload_leaf_slack; + int bload_node_slack; + int log_recovery_delay; + int mount_delay; + bool bug_on_assert; + bool always_cow; +}; + +struct xfs_fsop_handlereq { + __u32 fd; + void *path; + __u32 oflags; + void *ihandle; + __u32 ihandlen; + void *ohandle; + __u32 *ohandlen; +}; + +typedef struct xfs_fsop_handlereq xfs_fsop_handlereq_t; + +struct xfs_attrlist_cursor { + __u32 opaque[4]; +}; + +struct xfs_attrlist { + __s32 al_count; + __s32 al_more; + __s32 al_offset[0]; +}; + +struct xfs_attrlist_ent { + __u32 a_valuelen; + char a_name[0]; +}; + +struct xfs_fsop_attrlist_handlereq { + struct xfs_fsop_handlereq hreq; + struct xfs_attrlist_cursor pos; + __u32 flags; + __u32 buflen; + void *buffer; +}; + +struct xfs_attr_multiop { + __u32 am_opcode; + __s32 am_error; + void *am_attrname; + void *am_attrvalue; + __u32 am_length; + __u32 am_flags; +}; + +typedef struct xfs_attr_multiop xfs_attr_multiop_t; + +struct xfs_fsop_attrmulti_handlereq { + struct xfs_fsop_handlereq hreq; + __u32 opcount; + struct xfs_attr_multiop *ops; +}; + +typedef struct xfs_fsop_attrmulti_handlereq xfs_fsop_attrmulti_handlereq_t; + +struct xfs_fsid { + __u32 val[2]; +}; + +typedef struct xfs_fsid xfs_fsid_t; + +struct xfs_fid { + __u16 fid_len; + __u16 fid_pad; + __u32 fid_gen; + __u64 fid_ino; +}; + +typedef struct xfs_fid xfs_fid_t; + +struct xfs_handle { + union { + __s64 align; + xfs_fsid_t _ha_fsid; + } ha_u; + xfs_fid_t ha_fid; +}; + +typedef struct xfs_handle xfs_handle_t; + +struct xfs_getparents_rec { + struct xfs_handle gpr_parent; + __u32 gpr_reclen; + __u32 gpr_reserved; + char gpr_name[0]; +}; + +struct xfs_getparents { + struct xfs_attrlist_cursor gp_cursor; + __u16 gp_iflags; + __u16 gp_oflags; + __u32 gp_bufsize; + __u64 gp_reserved; + __u64 gp_buffer; +}; + +struct xfs_getparents_by_handle { + struct xfs_handle gph_handle; + struct xfs_getparents gph_request; +}; + +enum fid_type { + FILEID_ROOT = 0, + FILEID_INO32_GEN = 1, + FILEID_INO32_GEN_PARENT = 2, + FILEID_BTRFS_WITHOUT_PARENT = 77, + FILEID_BTRFS_WITH_PARENT = 78, + FILEID_BTRFS_WITH_PARENT_ROOT = 79, + FILEID_UDF_WITHOUT_PARENT = 81, + FILEID_UDF_WITH_PARENT = 82, + FILEID_NILFS_WITHOUT_PARENT = 97, + FILEID_NILFS_WITH_PARENT = 98, + FILEID_FAT_WITHOUT_PARENT = 113, + FILEID_FAT_WITH_PARENT = 114, + FILEID_INO64_GEN = 129, + FILEID_INO64_GEN_PARENT = 130, + FILEID_LUSTRE = 151, + FILEID_BCACHEFS_WITHOUT_PARENT = 177, + FILEID_BCACHEFS_WITH_PARENT = 178, + FILEID_KERNFS = 254, + FILEID_INVALID = 255, +}; + +struct xfs_attrlist_cursor_kern { + __u32 hashval; + __u32 blkno; + __u32 offset; + __u16 pad1; + __u8 pad2; + __u8 initted; +}; + +struct xfs_attr_list_context; + +typedef void (*put_listent_func_t)(struct xfs_attr_list_context *, int, unsigned char *, int, void *, int); + +struct xfs_attr_list_context { + struct xfs_trans *tp; + struct xfs_inode *dp; + struct xfs_attrlist_cursor_kern cursor; + void *buffer; + int seen_enough; + bool allow_incomplete; + ssize_t count; + int dupcnt; + int bufsize; + int firstu; + unsigned int attr_filter; + int resynch; + put_listent_func_t put_listent; + int index; +}; + +struct xfs_fid64 { + u64 ino; + u32 gen; + u64 parent_ino; + u32 parent_gen; +} __attribute__((packed)); + +struct xfs_getparents_ctx { + struct xfs_attr_list_context context; + struct xfs_getparents_by_handle gph; + struct xfs_inode *ip; + void *krecords; + struct xfs_getparents_rec *lastrec; + unsigned int count; +}; + +enum xfs_dinode_fmt { + XFS_DINODE_FMT_DEV = 0, + XFS_DINODE_FMT_LOCAL = 1, + XFS_DINODE_FMT_EXTENTS = 2, + XFS_DINODE_FMT_BTREE = 3, + XFS_DINODE_FMT_UUID = 4, +}; + +struct xfs_dir_update { + struct xfs_inode *dp; + const struct xfs_name *name; + struct xfs_inode *ip; + struct xfs_parent_args *ppargs; +}; + +struct xfs_icreate_args { + struct mnt_idmap *idmap; + struct xfs_inode *pip; + dev_t rdev; + umode_t mode; + uint16_t flags; +}; + +typedef uint64_t xfs_rtblock_t; + +typedef int (*list_cmp_func_t)(void *, const struct list_head *, const struct list_head *); + +typedef uint32_t xlog_tid_t; + +struct xlog_op_header { + __be32 oh_tid; + __be32 oh_len; + __u8 oh_clientid; + __u8 oh_flags; + __u16 oh_res2; +}; + +struct xlog_rec_header { + __be32 h_magicno; + __be32 h_cycle; + __be32 h_version; + __be32 h_len; + __be64 h_lsn; + __be64 h_tail_lsn; + __le32 h_crc; + __be32 h_prev_block; + __be32 h_num_logops; + __be32 h_cycle_data[64]; + __be32 h_fmt; + uuid_t h_fs_uuid; + __be32 h_size; +}; + +typedef struct xlog_rec_header xlog_rec_header_t; + +struct xlog_rec_ext_header { + __be32 xh_cycle; + __be32 xh_cycle_data[64]; +}; + +typedef struct xlog_rec_ext_header xlog_rec_ext_header_t; + +union xlog_in_core2 { + xlog_rec_header_t hic_header; + xlog_rec_ext_header_t hic_xheader; + char hic_sector[512]; +}; + +typedef union xlog_in_core2 xlog_in_core_2_t; + +struct xfs_map_extent { + uint64_t me_owner; + uint64_t me_startblock; + uint64_t me_startoff; + uint32_t me_len; + uint32_t me_flags; +}; + +struct xfs_bui_log_format { + uint16_t bui_type; + uint16_t bui_size; + uint32_t bui_nextents; + uint64_t bui_id; + struct xfs_map_extent bui_extents[0]; +}; + +struct xfs_bud_log_format { + uint16_t bud_type; + uint16_t bud_size; + uint32_t __pad; + uint64_t bud_bui_id; +}; + +struct xfs_ail { + struct xlog *ail_log; + struct task_struct *ail_task; + struct list_head ail_head; + struct list_head ail_cursors; + spinlock_t ail_lock; + xfs_lsn_t ail_last_pushed_lsn; + xfs_lsn_t ail_head_lsn; + int ail_log_flush; + long unsigned int ail_opstate; + struct list_head ail_buf_list; + wait_queue_head_t ail_empty; + xfs_lsn_t ail_target; +}; + +struct xlog_grant_head { + spinlock_t lock; + struct list_head waiters; + atomic64_t grant; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct xfs_cil; + +struct xlog_in_core; + +typedef struct xlog_in_core xlog_in_core_t; + +struct xlog { + struct xfs_mount *l_mp; + struct xfs_ail *l_ailp; + struct xfs_cil *l_cilp; + struct xfs_buftarg *l_targ; + struct workqueue_struct *l_ioend_workqueue; + struct delayed_work l_work; + long int l_opstate; + uint l_quotaoffs_flag; + struct list_head *l_buf_cancel_table; + struct list_head r_dfops; + int l_iclog_hsize; + int l_iclog_heads; + uint l_sectBBsize; + int l_iclog_size; + int l_iclog_bufs; + xfs_daddr_t l_logBBstart; + int l_logsize; + int l_logBBsize; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + wait_queue_head_t l_flush_wait; + int l_covered_state; + xlog_in_core_t *l_iclog; + spinlock_t l_icloglock; + int l_curr_cycle; + int l_prev_cycle; + int l_curr_block; + int l_prev_block; + atomic64_t l_tail_lsn; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct xlog_grant_head l_reserve_head; + struct xlog_grant_head l_write_head; + uint64_t l_tail_space; + struct xfs_kobj l_kobj; + xfs_lsn_t l_recovery_lsn; + uint32_t l_iclog_roundoff; + long: 64; +}; + +struct xfs_defer_op_type; + +struct xfs_defer_pending { + struct list_head dfp_list; + struct list_head dfp_work; + struct xfs_log_item *dfp_intent; + struct xfs_log_item *dfp_done; + const struct xfs_defer_op_type *dfp_ops; + unsigned int dfp_count; + unsigned int dfp_flags; +}; + +struct xfs_defer_op_type { + const char *name; + unsigned int max_items; + struct xfs_log_item * (*create_intent)(struct xfs_trans *, struct list_head *, unsigned int, bool); + void (*abort_intent)(struct xfs_log_item *); + struct xfs_log_item * (*create_done)(struct xfs_trans *, struct xfs_log_item *, unsigned int); + int (*finish_item)(struct xfs_trans *, struct xfs_log_item *, struct list_head *, struct xfs_btree_cur **); + void (*finish_cleanup)(struct xfs_trans *, struct xfs_btree_cur *, int); + void (*cancel_item)(struct list_head *); + int (*recover_work)(struct xfs_defer_pending *, struct list_head *); + struct xfs_log_item * (*relog_intent)(struct xfs_trans *, struct xfs_log_item *, struct xfs_log_item *); +}; + +struct xlog_ticket { + struct list_head t_queue; + struct task_struct *t_task; + xlog_tid_t t_tid; + atomic_t t_ref; + int t_curr_res; + int t_unit_res; + char t_ocnt; + char t_cnt; + uint8_t t_flags; + int t_iclog_hdrs; +}; + +struct xfs_bui_log_item { + struct xfs_log_item bui_item; + atomic_t bui_refcount; + atomic_t bui_next_extent; + struct xfs_bui_log_format bui_format; +}; + +struct xfs_bud_log_item { + struct xfs_log_item bud_item; + struct xfs_bui_log_item *bud_buip; + struct xfs_bud_log_format bud_format; +}; + +enum xfs_bmap_intent_type { + XFS_BMAP_MAP = 1, + XFS_BMAP_UNMAP = 2, +}; + +struct xfs_bmap_intent { + struct list_head bi_list; + enum xfs_bmap_intent_type bi_type; + int bi_whichfork; + struct xfs_inode *bi_owner; + struct xfs_perag *bi_pag; + struct xfs_bmbt_irec bi_bmap; +}; + +struct xfs_busy_extents { + struct xfs_mount *mount; + struct list_head extent_list; + struct work_struct endio_work; + void *owner; +}; + +enum xlog_iclog_state { + XLOG_STATE_ACTIVE = 0, + XLOG_STATE_WANT_SYNC = 1, + XLOG_STATE_SYNCING = 2, + XLOG_STATE_DONE_SYNC = 3, + XLOG_STATE_CALLBACK = 4, + XLOG_STATE_DIRTY = 5, +}; + +struct xlog_in_core { + wait_queue_head_t ic_force_wait; + wait_queue_head_t ic_write_wait; + struct xlog_in_core *ic_next; + struct xlog_in_core *ic_prev; + struct xlog *ic_log; + u32 ic_size; + u32 ic_offset; + enum xlog_iclog_state ic_state; + unsigned int ic_flags; + void *ic_datap; + struct list_head ic_callbacks; + long: 64; + long: 64; + atomic_t ic_refcnt; + xlog_in_core_2_t *ic_data; + struct semaphore ic_sema; + struct work_struct ic_end_io_work; + struct bio ic_bio; + struct bio_vec ic_bvec[0]; + long: 64; +}; + +struct xfs_cil_ctx { + struct xfs_cil *cil; + xfs_csn_t sequence; + xfs_lsn_t start_lsn; + xfs_lsn_t commit_lsn; + struct xlog_in_core *commit_iclog; + struct xlog_ticket *ticket; + atomic_t space_used; + struct xfs_busy_extents busy_extents; + struct list_head log_items; + struct list_head lv_chain; + struct list_head iclog_entry; + struct list_head committing; + struct work_struct push_work; + atomic_t order_id; + struct cpumask cil_pcpmask; +}; + +struct xfs_cil { + struct xlog *xc_log; + long unsigned int xc_flags; + atomic_t xc_iclog_hdrs; + struct workqueue_struct *xc_push_wq; + long: 64; + long: 64; + long: 64; + long: 64; + struct rw_semaphore xc_ctx_lock; + struct xfs_cil_ctx *xc_ctx; + long: 64; + long: 64; + spinlock_t xc_push_lock; + xfs_csn_t xc_push_seq; + bool xc_push_commit_stable; + struct list_head xc_committing; + wait_queue_head_t xc_commit_wait; + wait_queue_head_t xc_start_wait; + xfs_csn_t xc_current_sequence; + wait_queue_head_t xc_push_wait; + void *xc_pcp; +}; + +enum xlog_recover_reorder { + XLOG_REORDER_BUFFER_LIST = 0, + XLOG_REORDER_ITEM_LIST = 1, + XLOG_REORDER_INODE_BUFFER_LIST = 2, + XLOG_REORDER_CANCEL_LIST = 3, +}; + +struct xlog_recover_item; + +struct xlog_recover_item_ops { + uint16_t item_type; + enum xlog_recover_reorder (*reorder)(struct xlog_recover_item *); + void (*ra_pass2)(struct xlog *, struct xlog_recover_item *); + int (*commit_pass1)(struct xlog *, struct xlog_recover_item *); + int (*commit_pass2)(struct xlog *, struct list_head *, struct xlog_recover_item *, xfs_lsn_t); +}; + +struct xlog_recover_item { + struct list_head ri_list; + int ri_cnt; + int ri_total; + struct xfs_log_iovec *ri_buf; + const struct xlog_recover_item_ops *ri_ops; +}; + +enum p9_open_mode_t { + P9_OREAD = 0, + P9_OWRITE = 1, + P9_ORDWR = 2, + P9_OEXEC = 3, + P9_OTRUNC = 16, + P9_OREXEC = 32, + P9_ORCLOSE = 64, + P9_OAPPEND = 128, + P9_OEXCL = 4096, + P9L_MODE_MASK = 8191, + P9L_DIRECT = 8192, + P9L_NOWRITECACHE = 16384, + P9L_LOOSE = 32768, +}; + +struct p9_qid { + u8 type; + u32 version; + u64 path; +}; + +enum p9_trans_status { + Connected = 0, + BeginDisconnect = 1, + Disconnected = 2, + Hung = 3, +}; + +struct p9_trans_module; + +struct p9_client { + spinlock_t lock; + unsigned int msize; + unsigned char proto_version; + struct p9_trans_module *trans_mod; + enum p9_trans_status status; + void *trans; + struct kmem_cache *fcall_cache; + union { + struct { + int rfd; + int wfd; + } fd; + struct { + u16 port; + bool privport; + } tcp; + } trans_opts; + struct idr fids; + struct idr reqs; + char name[65]; +}; + +struct p9_fid { + struct p9_client *clnt; + u32 fid; + refcount_t count; + int mode; + struct p9_qid qid; + u32 iounit; + kuid_t uid; + void *rdir; + struct hlist_node dlist; + struct hlist_node ilist; +}; + +struct cachefiles_msg { + __u32 msg_id; + __u32 opcode; + __u32 len; + __u32 object_id; + __u8 data[0]; +}; + +enum cachefiles_content { + CACHEFILES_CONTENT_NO_DATA = 0, + CACHEFILES_CONTENT_SINGLE = 1, + CACHEFILES_CONTENT_ALL = 2, + CACHEFILES_CONTENT_BACKFS_MAP = 3, + CACHEFILES_CONTENT_DIRTY = 4, + nr__cachefiles_content = 5, +}; + +struct cachefiles_cache; + +struct cachefiles_volume { + struct cachefiles_cache *cache; + struct list_head cache_link; + struct fscache_volume *vcookie; + struct dentry *dentry; + struct dentry *fanout[256]; +}; + +struct cachefiles_cache { + struct fscache_cache *cache; + struct vfsmount *mnt; + struct dentry *store; + struct dentry *graveyard; + struct file *cachefilesd; + struct list_head volumes; + struct list_head object_list; + spinlock_t object_list_lock; + const struct cred *cache_cred; + struct mutex daemon_mutex; + wait_queue_head_t daemon_pollwq; + atomic_t gravecounter; + atomic_t f_released; + atomic_long_t b_released; + atomic_long_t b_writing; + unsigned int frun_percent; + unsigned int fcull_percent; + unsigned int fstop_percent; + unsigned int brun_percent; + unsigned int bcull_percent; + unsigned int bstop_percent; + unsigned int bsize; + unsigned int bshift; + uint64_t frun; + uint64_t fcull; + uint64_t fstop; + sector_t brun; + sector_t bcull; + sector_t bstop; + long unsigned int flags; + char *rootdirname; + char *tag; + refcount_t unbind_pincount; + struct xarray reqs; + long unsigned int req_id_next; + struct xarray ondemand_ids; + u32 ondemand_id_next; + u32 msg_id_next; + u32 secid; + bool have_secid; +}; + +struct cachefiles_object { + struct fscache_cookie *cookie; + struct cachefiles_volume *volume; + struct list_head cache_link; + struct file *file; + char *d_name; + int debug_id; + spinlock_t lock; + refcount_t ref; + u8 d_name_len; + enum cachefiles_content content_info: 8; + long unsigned int flags; +}; + +struct cachefiles_req { + struct cachefiles_object *object; + struct completion done; + refcount_t ref; + int error; + struct cachefiles_msg msg; +}; + +enum cachefiles_has_space_for { + cachefiles_has_space_check = 0, + cachefiles_has_space_for_write = 1, + cachefiles_has_space_for_create = 2, +}; + +struct cachefiles_daemon_cmd { + char name[8]; + int (*handler)(struct cachefiles_cache *, char *); +}; + +enum req_op { + REQ_OP_READ = 0, + REQ_OP_WRITE = 1, + REQ_OP_FLUSH = 2, + REQ_OP_DISCARD = 3, + REQ_OP_SECURE_ERASE = 5, + REQ_OP_ZONE_APPEND = 7, + REQ_OP_WRITE_ZEROES = 9, + REQ_OP_ZONE_OPEN = 10, + REQ_OP_ZONE_CLOSE = 11, + REQ_OP_ZONE_FINISH = 13, + REQ_OP_ZONE_RESET = 15, + REQ_OP_ZONE_RESET_ALL = 17, + REQ_OP_DRV_IN = 34, + REQ_OP_DRV_OUT = 35, + REQ_OP_LAST = 36, +}; + +struct btrfs_qgroup_limit { + __u64 flags; + __u64 max_rfer; + __u64 max_excl; + __u64 rsv_rfer; + __u64 rsv_excl; +}; + +struct btrfs_qgroup_inherit { + __u64 flags; + __u64 num_qgroups; + __u64 num_ref_copies; + __u64 num_excl_copies; + struct btrfs_qgroup_limit lim; + __u64 qgroups[0]; +}; + +struct btrfs_scrub_progress { + __u64 data_extents_scrubbed; + __u64 tree_extents_scrubbed; + __u64 data_bytes_scrubbed; + __u64 tree_bytes_scrubbed; + __u64 read_errors; + __u64 csum_errors; + __u64 verify_errors; + __u64 no_csum; + __u64 csum_discards; + __u64 super_errors; + __u64 malloc_errors; + __u64 uncorrectable_errors; + __u64 corrected_errors; + __u64 last_physical; + __u64 unverified_errors; +}; + +struct btrfs_disk_key { + __le64 objectid; + __u8 type; + __le64 offset; +} __attribute__((packed)); + +struct btrfs_key { + __u64 objectid; + __u8 type; + __u64 offset; +} __attribute__((packed)); + +struct btrfs_header { + __u8 csum[32]; + __u8 fsid[16]; + __le64 bytenr; + __le64 flags; + __u8 chunk_tree_uuid[16]; + __le64 generation; + __le64 owner; + __le32 nritems; + __u8 level; +} __attribute__((packed)); + +struct btrfs_root_backup { + __le64 tree_root; + __le64 tree_root_gen; + __le64 chunk_root; + __le64 chunk_root_gen; + __le64 extent_root; + __le64 extent_root_gen; + __le64 fs_root; + __le64 fs_root_gen; + __le64 dev_root; + __le64 dev_root_gen; + __le64 csum_root; + __le64 csum_root_gen; + __le64 total_bytes; + __le64 bytes_used; + __le64 num_devices; + __le64 unused_64[4]; + __u8 tree_root_level; + __u8 chunk_root_level; + __u8 extent_root_level; + __u8 fs_root_level; + __u8 dev_root_level; + __u8 csum_root_level; + __u8 unused_8[10]; +}; + +struct btrfs_item { + struct btrfs_disk_key key; + __le32 offset; + __le32 size; +} __attribute__((packed)); + +struct btrfs_dev_item { + __le64 devid; + __le64 total_bytes; + __le64 bytes_used; + __le32 io_align; + __le32 io_width; + __le32 sector_size; + __le64 type; + __le64 generation; + __le64 start_offset; + __le32 dev_group; + __u8 seek_speed; + __u8 bandwidth; + __u8 uuid[16]; + __u8 fsid[16]; +} __attribute__((packed)); + +struct btrfs_super_block { + __u8 csum[32]; + __u8 fsid[16]; + __le64 bytenr; + __le64 flags; + __le64 magic; + __le64 generation; + __le64 root; + __le64 chunk_root; + __le64 log_root; + __le64 __unused_log_root_transid; + __le64 total_bytes; + __le64 bytes_used; + __le64 root_dir_objectid; + __le64 num_devices; + __le32 sectorsize; + __le32 nodesize; + __le32 __unused_leafsize; + __le32 stripesize; + __le32 sys_chunk_array_size; + __le64 chunk_root_generation; + __le64 compat_flags; + __le64 compat_ro_flags; + __le64 incompat_flags; + __le16 csum_type; + __u8 root_level; + __u8 chunk_root_level; + __u8 log_root_level; + struct btrfs_dev_item dev_item; + char label[256]; + __le64 cache_generation; + __le64 uuid_tree_generation; + __u8 metadata_uuid[16]; + __u64 nr_global_roots; + __le64 reserved[27]; + __u8 sys_chunk_array[2048]; + struct btrfs_root_backup super_roots[4]; + __u8 padding[565]; +} __attribute__((packed)); + +struct btrfs_timespec { + __le64 sec; + __le32 nsec; +} __attribute__((packed)); + +struct btrfs_inode_item { + __le64 generation; + __le64 transid; + __le64 size; + __le64 nbytes; + __le64 block_group; + __le32 nlink; + __le32 uid; + __le32 gid; + __le32 mode; + __le64 rdev; + __le64 flags; + __le64 sequence; + __le64 reserved[4]; + struct btrfs_timespec atime; + struct btrfs_timespec ctime; + struct btrfs_timespec mtime; + struct btrfs_timespec otime; +}; + +struct btrfs_root_item { + struct btrfs_inode_item inode; + __le64 generation; + __le64 root_dirid; + __le64 bytenr; + __le64 byte_limit; + __le64 bytes_used; + __le64 last_snapshot; + __le64 flags; + __le32 refs; + struct btrfs_disk_key drop_progress; + __u8 drop_level; + __u8 level; + __le64 generation_v2; + __u8 uuid[16]; + __u8 parent_uuid[16]; + __u8 received_uuid[16]; + __le64 ctransid; + __le64 otransid; + __le64 stransid; + __le64 rtransid; + struct btrfs_timespec ctime; + struct btrfs_timespec otime; + struct btrfs_timespec stime; + struct btrfs_timespec rtime; + __le64 reserved[8]; +} __attribute__((packed)); + +enum { + BTRFS_FILE_EXTENT_INLINE = 0, + BTRFS_FILE_EXTENT_REG = 1, + BTRFS_FILE_EXTENT_PREALLOC = 2, + BTRFS_NR_FILE_EXTENT_TYPES = 3, +}; + +struct btrfs_file_extent_item { + __le64 generation; + __le64 ram_bytes; + __u8 compression; + __u8 encryption; + __le16 other_encoding; + __u8 type; + __le64 disk_bytenr; + __le64 disk_num_bytes; + __le64 offset; + __le64 num_bytes; +} __attribute__((packed)); + +struct btrfs_csum_item { + __u8 csum; +}; + +struct btrfs_tree_parent_check { + u64 owner_root; + u64 transid; + struct btrfs_key first_key; + bool has_first_key; + u8 level; +}; + +struct btrfs_bio; + +typedef void (*btrfs_bio_end_io_t)(struct btrfs_bio *); + +struct btrfs_inode; + +struct btrfs_ordered_extent; + +struct btrfs_ordered_sum; + +struct btrfs_fs_info; + +struct btrfs_bio { + struct btrfs_inode *inode; + u64 file_offset; + union { + struct { + u8 *csum; + u8 csum_inline[64]; + struct bvec_iter saved_iter; + }; + struct { + struct btrfs_ordered_extent *ordered; + struct btrfs_ordered_sum *sums; + u64 orig_physical; + }; + struct btrfs_tree_parent_check parent_check; + }; + btrfs_bio_end_io_t end_io; + void *private; + unsigned int mirror_num; + atomic_t pending_ios; + struct work_struct end_io_work; + struct btrfs_fs_info *fs_info; + blk_status_t status; + struct bio bio; +}; + +struct btrfs_work; + +typedef void (*btrfs_func_t)(struct btrfs_work *); + +typedef void (*btrfs_ordered_func_t)(struct btrfs_work *, bool); + +struct btrfs_workqueue; + +struct btrfs_work { + btrfs_func_t func; + btrfs_ordered_func_t ordered_func; + struct work_struct normal_work; + struct list_head ordered_list; + struct btrfs_workqueue *wq; + long unsigned int flags; +}; + +struct btrfs_ordered_extent { + u64 file_offset; + u64 num_bytes; + u64 ram_bytes; + u64 disk_bytenr; + u64 disk_num_bytes; + u64 offset; + u64 bytes_left; + u64 truncated_len; + long unsigned int flags; + int compress_type; + int qgroup_rsv; + refcount_t refs; + struct btrfs_inode *inode; + struct list_head list; + struct list_head log_list; + wait_queue_head_t wait; + struct rb_node rb_node; + struct list_head root_extent_list; + struct btrfs_work work; + struct completion completion; + struct btrfs_work flush_work; + struct list_head work_list; + struct list_head bioc_list; +}; + +struct btrfs_ordered_sum { + u64 logical; + u32 len; + struct list_head list; + u8 sums[0]; +}; + +struct extent_map_tree { + struct rb_root root; + struct list_head modified_extents; + rwlock_t lock; +}; + +struct extent_io_tree { + struct rb_root state; + union { + struct btrfs_fs_info *fs_info; + struct btrfs_inode *inode; + }; + u8 owner; + spinlock_t lock; +}; + +enum btrfs_rsv_type { + BTRFS_BLOCK_RSV_GLOBAL = 0, + BTRFS_BLOCK_RSV_DELALLOC = 1, + BTRFS_BLOCK_RSV_TRANS = 2, + BTRFS_BLOCK_RSV_CHUNK = 3, + BTRFS_BLOCK_RSV_DELOPS = 4, + BTRFS_BLOCK_RSV_DELREFS = 5, + BTRFS_BLOCK_RSV_EMPTY = 6, + BTRFS_BLOCK_RSV_TEMP = 7, +}; + +struct btrfs_space_info; + +struct btrfs_block_rsv { + u64 size; + u64 reserved; + struct btrfs_space_info *space_info; + spinlock_t lock; + bool full; + bool failfast; + enum btrfs_rsv_type type: 8; + u64 qgroup_rsv_size; + u64 qgroup_rsv_reserved; +}; + +struct btrfs_root; + +struct btrfs_delayed_node; + +struct btrfs_inode { + struct btrfs_root *root; + u8 prop_compress; + u8 defrag_compress; + spinlock_t lock; + struct extent_map_tree extent_tree; + struct extent_io_tree io_tree; + struct extent_io_tree *file_extent_tree; + struct mutex log_mutex; + unsigned int outstanding_extents; + spinlock_t ordered_tree_lock; + struct rb_root ordered_tree; + struct rb_node *ordered_tree_last; + struct list_head delalloc_inodes; + long unsigned int runtime_flags; + u64 generation; + u64 last_trans; + u64 logged_trans; + int last_sub_trans; + int last_log_commit; + union { + u64 delalloc_bytes; + u64 first_dir_index_to_log; + }; + union { + u64 new_delalloc_bytes; + u64 last_dir_index_offset; + }; + union { + u64 defrag_bytes; + u64 reloc_block_group_start; + }; + u64 disk_i_size; + union { + u64 index_cnt; + u64 csum_bytes; + }; + u64 dir_index; + u64 last_unlink_trans; + union { + u64 last_reflink_trans; + u64 ref_root_id; + }; + u32 flags; + u32 ro_flags; + struct btrfs_block_rsv block_rsv; + struct btrfs_delayed_node *delayed_node; + u64 i_otime_sec; + u32 i_otime_nsec; + struct list_head delayed_iput; + struct rw_semaphore i_mmap_lock; + struct inode vfs_inode; +}; + +struct btrfs_block_group; + +struct btrfs_free_cluster { + spinlock_t lock; + spinlock_t refill_lock; + struct rb_root root; + u64 max_size; + u64 window_start; + bool fragmented; + struct btrfs_block_group *block_group; + struct list_head block_group_list; +}; + +struct btrfs_discard_ctl { + struct workqueue_struct *discard_workers; + struct delayed_work work; + spinlock_t lock; + struct btrfs_block_group *block_group; + struct list_head discard_list[3]; + u64 prev_discard; + u64 prev_discard_time; + atomic_t discardable_extents; + atomic64_t discardable_bytes; + u64 max_discard_size; + u64 delay_ms; + u32 iops_limit; + u32 kbps_limit; + u64 discard_extent_bytes; + u64 discard_bitmap_bytes; + atomic64_t discard_bytes_saved; +}; + +struct btrfs_device; + +struct btrfs_dev_replace { + u64 replace_state; + time64_t time_started; + time64_t time_stopped; + atomic64_t num_write_errors; + atomic64_t num_uncorrectable_read_errors; + u64 cursor_left; + u64 committed_cursor_left; + u64 cursor_left_last_write_of_item; + u64 cursor_right; + u64 cont_reading_from_srcdev_mode; + int is_valid; + int item_needs_writeback; + struct btrfs_device *srcdev; + struct btrfs_device *tgtdev; + struct mutex lock_finishing_cancel_unmount; + struct rw_semaphore rwsem; + struct btrfs_scrub_progress scrub_progress; + struct percpu_counter bio_counter; + wait_queue_head_t replace_wait; + struct task_struct *replace_task; +}; + +enum btrfs_exclusive_operation { + BTRFS_EXCLOP_NONE = 0, + BTRFS_EXCLOP_BALANCE_PAUSED = 1, + BTRFS_EXCLOP_BALANCE = 2, + BTRFS_EXCLOP_DEV_ADD = 3, + BTRFS_EXCLOP_DEV_REMOVE = 4, + BTRFS_EXCLOP_DEV_REPLACE = 5, + BTRFS_EXCLOP_RESIZE = 6, + BTRFS_EXCLOP_SWAP_ACTIVATE = 7, +}; + +struct btrfs_commit_stats { + u64 commit_count; + u64 max_commit_dur; + u64 last_commit_dur; + u64 total_commit_dur; +}; + +struct btrfs_transaction; + +struct btrfs_stripe_hash_table; + +struct btrfs_fs_devices; + +struct reloc_control; + +struct btrfs_balance_control; + +struct ulist; + +struct btrfs_delayed_root; + +struct btrfs_fs_info { + u8 chunk_tree_uuid[16]; + long unsigned int flags; + struct btrfs_root *tree_root; + struct btrfs_root *chunk_root; + struct btrfs_root *dev_root; + struct btrfs_root *fs_root; + struct btrfs_root *quota_root; + struct btrfs_root *uuid_root; + struct btrfs_root *data_reloc_root; + struct btrfs_root *block_group_root; + struct btrfs_root *stripe_root; + struct btrfs_root *log_root_tree; + rwlock_t global_root_lock; + struct rb_root global_root_tree; + spinlock_t fs_roots_radix_lock; + struct xarray fs_roots_radix; + rwlock_t block_group_cache_lock; + struct rb_root_cached block_group_cache_tree; + atomic64_t free_chunk_space; + struct extent_io_tree excluded_extents; + struct rb_root_cached mapping_tree; + rwlock_t mapping_tree_lock; + struct btrfs_block_rsv global_block_rsv; + struct btrfs_block_rsv trans_block_rsv; + struct btrfs_block_rsv chunk_block_rsv; + struct btrfs_block_rsv delayed_block_rsv; + struct btrfs_block_rsv delayed_refs_rsv; + struct btrfs_block_rsv empty_block_rsv; + u64 generation; + u64 last_trans_committed; + u64 last_reloc_trans; + u64 last_trans_log_full_commit; + long long unsigned int mount_opt; + long unsigned int compress_type: 4; + unsigned int compress_level; + u32 commit_interval; + u64 max_inline; + struct btrfs_transaction *running_transaction; + wait_queue_head_t transaction_throttle; + wait_queue_head_t transaction_wait; + wait_queue_head_t transaction_blocked_wait; + wait_queue_head_t async_submit_wait; + spinlock_t super_lock; + struct btrfs_super_block *super_copy; + struct btrfs_super_block *super_for_commit; + struct super_block *sb; + struct inode *btree_inode; + struct mutex tree_log_mutex; + struct mutex transaction_kthread_mutex; + struct mutex cleaner_mutex; + struct mutex chunk_mutex; + struct mutex ro_block_group_mutex; + struct btrfs_stripe_hash_table *stripe_hash_table; + struct mutex ordered_operations_mutex; + struct rw_semaphore commit_root_sem; + struct rw_semaphore cleanup_work_sem; + struct rw_semaphore subvol_sem; + spinlock_t trans_lock; + struct mutex reloc_mutex; + struct list_head trans_list; + struct list_head dead_roots; + struct list_head caching_block_groups; + spinlock_t delayed_iput_lock; + struct list_head delayed_iputs; + atomic_t nr_delayed_iputs; + wait_queue_head_t delayed_iputs_wait; + atomic64_t tree_mod_seq; + rwlock_t tree_mod_log_lock; + struct rb_root tree_mod_log; + struct list_head tree_mod_seq_list; + atomic_t async_delalloc_pages; + spinlock_t ordered_root_lock; + struct list_head ordered_roots; + struct mutex delalloc_root_mutex; + spinlock_t delalloc_root_lock; + struct list_head delalloc_roots; + struct btrfs_workqueue *workers; + struct btrfs_workqueue *delalloc_workers; + struct btrfs_workqueue *flush_workers; + struct workqueue_struct *endio_workers; + struct workqueue_struct *endio_meta_workers; + struct workqueue_struct *rmw_workers; + struct workqueue_struct *compressed_write_workers; + struct btrfs_workqueue *endio_write_workers; + struct btrfs_workqueue *endio_freespace_worker; + struct btrfs_workqueue *caching_workers; + struct btrfs_workqueue *fixup_workers; + struct btrfs_workqueue *delayed_workers; + struct task_struct *transaction_kthread; + struct task_struct *cleaner_kthread; + u32 thread_pool_size; + struct kobject *space_info_kobj; + struct kobject *qgroups_kobj; + struct kobject *discard_kobj; + struct percpu_counter dirty_metadata_bytes; + struct percpu_counter delalloc_bytes; + struct percpu_counter ordered_bytes; + s32 dirty_metadata_batch; + s32 delalloc_batch; + struct percpu_counter evictable_extent_maps; + spinlock_t extent_map_shrinker_lock; + u64 extent_map_shrinker_last_root; + u64 extent_map_shrinker_last_ino; + atomic64_t extent_map_shrinker_nr_to_scan; + struct work_struct extent_map_shrinker_work; + struct list_head dirty_cowonly_roots; + struct btrfs_fs_devices *fs_devices; + struct list_head space_info; + struct btrfs_space_info *data_sinfo; + struct reloc_control *reloc_ctl; + struct btrfs_free_cluster data_alloc_cluster; + struct btrfs_free_cluster meta_alloc_cluster; + spinlock_t defrag_inodes_lock; + struct rb_root defrag_inodes; + atomic_t defrag_running; + seqlock_t profiles_lock; + u64 avail_data_alloc_bits; + u64 avail_metadata_alloc_bits; + u64 avail_system_alloc_bits; + spinlock_t balance_lock; + struct mutex balance_mutex; + atomic_t balance_pause_req; + atomic_t balance_cancel_req; + struct btrfs_balance_control *balance_ctl; + wait_queue_head_t balance_wait_q; + atomic_t reloc_cancel_req; + u32 data_chunk_allocations; + u32 metadata_ratio; + void *bdev_holder; + struct mutex scrub_lock; + atomic_t scrubs_running; + atomic_t scrub_pause_req; + atomic_t scrubs_paused; + atomic_t scrub_cancel_req; + wait_queue_head_t scrub_pause_wait; + refcount_t scrub_workers_refcnt; + u32 sectors_per_page; + struct workqueue_struct *scrub_workers; + struct btrfs_discard_ctl discard_ctl; + u64 qgroup_flags; + struct rb_root qgroup_tree; + spinlock_t qgroup_lock; + struct ulist *qgroup_ulist; + struct mutex qgroup_ioctl_lock; + struct list_head dirty_qgroups; + u64 qgroup_seq; + struct mutex qgroup_rescan_lock; + struct btrfs_key qgroup_rescan_progress; + struct btrfs_workqueue *qgroup_rescan_workers; + struct completion qgroup_rescan_completion; + struct btrfs_work qgroup_rescan_work; + bool qgroup_rescan_running; + u8 qgroup_drop_subtree_thres; + u64 qgroup_enable_gen; + int fs_error; + long unsigned int fs_state; + struct btrfs_delayed_root *delayed_root; + spinlock_t buffer_lock; + struct xarray buffer_radix; + int backup_root_index; + struct btrfs_dev_replace dev_replace; + struct semaphore uuid_tree_rescan_sem; + struct work_struct async_reclaim_work; + struct work_struct async_data_reclaim_work; + struct work_struct preempt_reclaim_work; + struct work_struct reclaim_bgs_work; + struct list_head reclaim_bgs; + int bg_reclaim_threshold; + spinlock_t unused_bgs_lock; + struct list_head unused_bgs; + struct mutex unused_bg_unpin_mutex; + struct mutex reclaim_bgs_lock; + u32 nodesize; + u32 sectorsize; + u32 sectorsize_bits; + u32 csum_size; + u32 csums_per_leaf; + u32 stripesize; + u64 max_extent_size; + spinlock_t swapfile_pins_lock; + struct rb_root swapfile_pins; + struct crypto_shash *csum_shash; + enum btrfs_exclusive_operation exclusive_operation; + u64 zone_size; + struct queue_limits limits; + u64 max_zone_append_size; + struct mutex zoned_meta_io_lock; + spinlock_t treelog_bg_lock; + u64 treelog_bg; + spinlock_t relocation_bg_lock; + u64 data_reloc_bg; + struct mutex zoned_data_reloc_io_lock; + struct btrfs_block_group *active_meta_bg; + struct btrfs_block_group *active_system_bg; + u64 nr_global_roots; + spinlock_t zone_active_bgs_lock; + struct list_head zone_active_bgs; + struct btrfs_commit_stats commit_stats; + u64 last_root_drop_gen; + struct lockdep_map btrfs_trans_num_writers_map; + struct lockdep_map btrfs_trans_num_extwriters_map; + struct lockdep_map btrfs_state_change_map[4]; + struct lockdep_map btrfs_trans_pending_ordered_map; + struct lockdep_map btrfs_ordered_extent_map; +}; + +enum btrfs_compression_type { + BTRFS_COMPRESS_NONE = 0, + BTRFS_COMPRESS_ZLIB = 1, + BTRFS_COMPRESS_LZO = 2, + BTRFS_COMPRESS_ZSTD = 3, + BTRFS_NR_COMPRESS_TYPES = 4, +}; + +struct ulist_node { + u64 val; + u64 aux; + struct list_head list; + struct rb_node rb_node; +}; + +struct ulist { + long unsigned int nnodes; + struct list_head nodes; + struct rb_root root; + struct ulist_node *prealloc; +}; + +struct extent_buffer { + u64 start; + u32 len; + u32 folio_size; + long unsigned int bflags; + struct btrfs_fs_info *fs_info; + void *addr; + spinlock_t refs_lock; + atomic_t refs; + int read_mirror; + s8 log_index; + u8 folio_shift; + struct callback_head callback_head; + struct rw_semaphore lock; + struct folio *folios[16]; +}; + +struct extent_changeset { + u64 bytes_changed; + struct ulist range_changed; +}; + +struct btrfs_drew_lock { + atomic_t readers; + atomic_t writers; + wait_queue_head_t pending_writers; + wait_queue_head_t pending_readers; +}; + +enum { + __EXTENT_DIRTY_BIT = 0, + EXTENT_DIRTY = 1, + __EXTENT_DIRTY_SEQ = 0, + __EXTENT_UPTODATE_BIT = 1, + EXTENT_UPTODATE = 2, + __EXTENT_UPTODATE_SEQ = 1, + __EXTENT_LOCKED_BIT = 2, + EXTENT_LOCKED = 4, + __EXTENT_LOCKED_SEQ = 2, + __EXTENT_DIO_LOCKED_BIT = 3, + EXTENT_DIO_LOCKED = 8, + __EXTENT_DIO_LOCKED_SEQ = 3, + __EXTENT_NEW_BIT = 4, + EXTENT_NEW = 16, + __EXTENT_NEW_SEQ = 4, + __EXTENT_DELALLOC_BIT = 5, + EXTENT_DELALLOC = 32, + __EXTENT_DELALLOC_SEQ = 5, + __EXTENT_DEFRAG_BIT = 6, + EXTENT_DEFRAG = 64, + __EXTENT_DEFRAG_SEQ = 6, + __EXTENT_BOUNDARY_BIT = 7, + EXTENT_BOUNDARY = 128, + __EXTENT_BOUNDARY_SEQ = 7, + __EXTENT_NODATASUM_BIT = 8, + EXTENT_NODATASUM = 256, + __EXTENT_NODATASUM_SEQ = 8, + __EXTENT_CLEAR_META_RESV_BIT = 9, + EXTENT_CLEAR_META_RESV = 512, + __EXTENT_CLEAR_META_RESV_SEQ = 9, + __EXTENT_NEED_WAIT_BIT = 10, + EXTENT_NEED_WAIT = 1024, + __EXTENT_NEED_WAIT_SEQ = 10, + __EXTENT_NORESERVE_BIT = 11, + EXTENT_NORESERVE = 2048, + __EXTENT_NORESERVE_SEQ = 11, + __EXTENT_QGROUP_RESERVED_BIT = 12, + EXTENT_QGROUP_RESERVED = 4096, + __EXTENT_QGROUP_RESERVED_SEQ = 12, + __EXTENT_CLEAR_DATA_RESV_BIT = 13, + EXTENT_CLEAR_DATA_RESV = 8192, + __EXTENT_CLEAR_DATA_RESV_SEQ = 13, + __EXTENT_DELALLOC_NEW_BIT = 14, + EXTENT_DELALLOC_NEW = 16384, + __EXTENT_DELALLOC_NEW_SEQ = 14, + __EXTENT_ADD_INODE_BYTES_BIT = 15, + EXTENT_ADD_INODE_BYTES = 32768, + __EXTENT_ADD_INODE_BYTES_SEQ = 15, + __EXTENT_CLEAR_ALL_BITS_BIT = 16, + EXTENT_CLEAR_ALL_BITS = 65536, + __EXTENT_CLEAR_ALL_BITS_SEQ = 16, + __EXTENT_NOWAIT_BIT = 17, + EXTENT_NOWAIT = 131072, + __EXTENT_NOWAIT_SEQ = 17, +}; + +struct extent_state { + u64 start; + u64 end; + struct rb_node rb_node; + wait_queue_head_t wq; + refcount_t refs; + u32 state; +}; + +enum { + BTRFS_FS_STATE_REMOUNTING = 0, + BTRFS_FS_STATE_RO = 1, + BTRFS_FS_STATE_TRANS_ABORTED = 2, + BTRFS_FS_STATE_DEV_REPLACING = 3, + BTRFS_FS_STATE_DUMMY_FS_INFO = 4, + BTRFS_FS_STATE_NO_DATA_CSUMS = 5, + BTRFS_FS_STATE_SKIP_META_CSUMS = 6, + BTRFS_FS_STATE_LOG_CLEANUP_ERROR = 7, + BTRFS_FS_STATE_COUNT = 8, +}; + +struct btrfs_qgroup_swapped_blocks { + spinlock_t lock; + bool swapped; + struct rb_root blocks[8]; +}; + +struct btrfs_root { + struct rb_node rb_node; + struct extent_buffer *node; + struct extent_buffer *commit_root; + struct btrfs_root *log_root; + struct btrfs_root *reloc_root; + long unsigned int state; + struct btrfs_root_item root_item; + struct btrfs_key root_key; + struct btrfs_fs_info *fs_info; + struct extent_io_tree dirty_log_pages; + struct mutex objectid_mutex; + spinlock_t accounting_lock; + struct btrfs_block_rsv *block_rsv; + struct mutex log_mutex; + wait_queue_head_t log_writer_wait; + wait_queue_head_t log_commit_wait[2]; + struct list_head log_ctxs[2]; + atomic_t log_writers; + atomic_t log_commit[2]; + atomic_t log_batch; + int log_transid; + int log_transid_committed; + int last_log_commit; + pid_t log_start_pid; + u64 last_trans; + u64 free_objectid; + struct btrfs_key defrag_progress; + struct btrfs_key defrag_max; + struct list_head dirty_list; + struct list_head root_list; + struct xarray inodes; + struct xarray delayed_nodes; + dev_t anon_dev; + spinlock_t root_item_lock; + refcount_t refs; + struct mutex delalloc_mutex; + spinlock_t delalloc_lock; + struct list_head delalloc_inodes; + struct list_head delalloc_root; + u64 nr_delalloc_inodes; + struct mutex ordered_extent_mutex; + spinlock_t ordered_extent_lock; + struct list_head ordered_extents; + struct list_head ordered_root; + u64 nr_ordered_extents; + struct list_head reloc_dirty_list; + int send_in_progress; + int dedupe_in_progress; + struct btrfs_drew_lock snapshot_lock; + atomic_t snapshot_force_cow; + spinlock_t qgroup_meta_rsv_lock; + u64 qgroup_meta_rsv_pertrans; + u64 qgroup_meta_rsv_prealloc; + wait_queue_head_t qgroup_flush_wait; + atomic_t nr_swapfiles; + struct btrfs_qgroup_swapped_blocks swapped_blocks; + struct extent_io_tree log_csum_range; + u64 relocation_src_root; +}; + +enum btrfs_trans_state { + TRANS_STATE_RUNNING = 0, + TRANS_STATE_COMMIT_PREP = 1, + TRANS_STATE_COMMIT_START = 2, + TRANS_STATE_COMMIT_DOING = 3, + TRANS_STATE_UNBLOCKED = 4, + TRANS_STATE_SUPER_COMMITTED = 5, + TRANS_STATE_COMPLETED = 6, + TRANS_STATE_MAX = 7, +}; + +struct btrfs_delayed_ref_root { + struct rb_root_cached href_root; + struct xarray dirty_extents; + spinlock_t lock; + atomic_t num_entries; + long unsigned int num_heads; + long unsigned int num_heads_ready; + u64 pending_csums; + long unsigned int flags; + u64 run_delayed_start; + u64 qgroup_to_skip; +}; + +struct btrfs_transaction { + u64 transid; + atomic_t num_extwriters; + atomic_t num_writers; + refcount_t use_count; + long unsigned int flags; + enum btrfs_trans_state state; + int aborted; + struct list_head list; + struct extent_io_tree dirty_pages; + time64_t start_time; + wait_queue_head_t writer_wait; + wait_queue_head_t commit_wait; + struct list_head pending_snapshots; + struct list_head dev_update_list; + struct list_head switch_commits; + struct list_head dirty_bgs; + struct list_head io_bgs; + struct list_head dropped_roots; + struct extent_io_tree pinned_extents; + struct mutex cache_write_mutex; + spinlock_t dirty_bgs_lock; + struct list_head deleted_bgs; + spinlock_t dropped_roots_lock; + struct btrfs_delayed_ref_root delayed_refs; + struct btrfs_fs_info *fs_info; + atomic_t pending_ordered; + wait_queue_head_t pending_wait; +}; + +struct btrfs_delayed_root { + spinlock_t lock; + struct list_head node_list; + struct list_head prepare_list; + atomic_t items; + atomic_t items_seq; + int nodes; + wait_queue_head_t wait; +}; + +enum { + READA_NONE = 0, + READA_BACK = 1, + READA_FORWARD = 2, + READA_FORWARD_ALWAYS = 3, +}; + +struct btrfs_path { + struct extent_buffer *nodes[8]; + int slots[8]; + u8 locks[8]; + u8 reada; + u8 lowest_level; + unsigned int search_for_split: 1; + unsigned int keep_locks: 1; + unsigned int skip_locking: 1; + unsigned int search_commit_root: 1; + unsigned int need_commit_sem: 1; + unsigned int skip_release_on_error: 1; + unsigned int search_for_extension: 1; + unsigned int nowait: 1; +}; + +struct btrfs_item_batch { + const struct btrfs_key *keys; + const u32 *data_sizes; + u32 total_data_size; + int nr; +}; + +enum { + __EXTENT_FLAG_PINNED_BIT = 0, + EXTENT_FLAG_PINNED = 1, + __EXTENT_FLAG_PINNED_SEQ = 0, + __EXTENT_FLAG_COMPRESS_ZLIB_BIT = 1, + EXTENT_FLAG_COMPRESS_ZLIB = 2, + __EXTENT_FLAG_COMPRESS_ZLIB_SEQ = 1, + __EXTENT_FLAG_COMPRESS_LZO_BIT = 2, + EXTENT_FLAG_COMPRESS_LZO = 4, + __EXTENT_FLAG_COMPRESS_LZO_SEQ = 2, + __EXTENT_FLAG_COMPRESS_ZSTD_BIT = 3, + EXTENT_FLAG_COMPRESS_ZSTD = 8, + __EXTENT_FLAG_COMPRESS_ZSTD_SEQ = 3, + __EXTENT_FLAG_PREALLOC_BIT = 4, + EXTENT_FLAG_PREALLOC = 16, + __EXTENT_FLAG_PREALLOC_SEQ = 4, + __EXTENT_FLAG_LOGGING_BIT = 5, + EXTENT_FLAG_LOGGING = 32, + __EXTENT_FLAG_LOGGING_SEQ = 5, + __EXTENT_FLAG_MERGED_BIT = 6, + EXTENT_FLAG_MERGED = 64, + __EXTENT_FLAG_MERGED_SEQ = 6, +}; + +struct extent_map { + struct rb_node rb_node; + u64 start; + u64 len; + u64 disk_bytenr; + u64 disk_num_bytes; + u64 offset; + u64 ram_bytes; + u64 generation; + u32 flags; + refcount_t refs; + struct list_head list; +}; + +struct btrfs_delayed_node { + u64 inode_id; + u64 bytes_reserved; + struct btrfs_root *root; + struct list_head n_list; + struct list_head p_list; + struct rb_root_cached ins_root; + struct rb_root_cached del_root; + struct mutex mutex; + struct btrfs_inode_item inode_item; + refcount_t refs; + u64 index_cnt; + long unsigned int flags; + int count; + u32 curr_index_batch_size; + u32 index_item_leaves; +}; + +enum { + BTRFS_INODE_FLUSH_ON_CLOSE = 0, + BTRFS_INODE_DUMMY = 1, + BTRFS_INODE_IN_DEFRAG = 2, + BTRFS_INODE_HAS_ASYNC_EXTENT = 3, + BTRFS_INODE_NEEDS_FULL_SYNC = 4, + BTRFS_INODE_COPY_EVERYTHING = 5, + BTRFS_INODE_HAS_PROPS = 6, + BTRFS_INODE_SNAPSHOT_FLUSH = 7, + BTRFS_INODE_NO_XATTRS = 8, + BTRFS_INODE_NO_DELALLOC_FLUSH = 9, + BTRFS_INODE_VERITY_IN_PROGRESS = 10, + BTRFS_INODE_FREE_SPACE_INODE = 11, + BTRFS_INODE_NO_CAP_XATTR = 12, + BTRFS_INODE_COW_WRITE_ERROR = 13, + BTRFS_INODE_ROOT_STUB = 14, +}; + +struct btrfs_pending_snapshot; + +struct btrfs_trans_handle { + u64 transid; + u64 bytes_reserved; + u64 delayed_refs_bytes_reserved; + u64 chunk_bytes_reserved; + long unsigned int delayed_ref_updates; + long unsigned int delayed_ref_csum_deletions; + struct btrfs_transaction *transaction; + struct btrfs_block_rsv *block_rsv; + struct btrfs_block_rsv *orig_rsv; + struct btrfs_pending_snapshot *pending_snapshot; + refcount_t use_count; + unsigned int type; + short int aborted; + bool adding_csums; + bool allocating_chunk; + bool removing_chunk; + bool reloc_reserved; + bool in_fsync; + struct btrfs_fs_info *fs_info; + struct list_head new_bgs; + struct btrfs_block_rsv delayed_rsv; +}; + +struct btrfs_pending_snapshot { + struct dentry *dentry; + struct btrfs_inode *dir; + struct btrfs_root *root; + struct btrfs_root_item *root_item; + struct btrfs_root *snap; + struct btrfs_qgroup_inherit *inherit; + struct btrfs_path *path; + struct btrfs_block_rsv block_rsv; + int error; + dev_t anon_dev; + bool readonly; + struct list_head list; +}; + +enum btrfs_discard_state { + BTRFS_DISCARD_EXTENTS = 0, + BTRFS_DISCARD_BITMAPS = 1, + BTRFS_DISCARD_RESET_CURSOR = 2, +}; + +struct btrfs_io_ctl { + void *cur; + void *orig; + struct page *page; + struct page **pages; + struct btrfs_fs_info *fs_info; + struct inode *inode; + long unsigned int size; + int index; + int num_pages; + int entries; + int bitmaps; +}; + +enum btrfs_block_group_size_class { + BTRFS_BG_SZ_NONE = 0, + BTRFS_BG_SZ_SMALL = 1, + BTRFS_BG_SZ_MEDIUM = 2, + BTRFS_BG_SZ_LARGE = 3, +}; + +struct btrfs_caching_control; + +struct btrfs_free_space_ctl; + +struct btrfs_chunk_map; + +struct btrfs_block_group { + struct btrfs_fs_info *fs_info; + struct btrfs_inode *inode; + spinlock_t lock; + u64 start; + u64 length; + u64 pinned; + u64 reserved; + u64 used; + u64 delalloc_bytes; + u64 bytes_super; + u64 flags; + u64 cache_generation; + u64 global_root_id; + u64 commit_used; + u32 bitmap_high_thresh; + u32 bitmap_low_thresh; + struct rw_semaphore data_rwsem; + long unsigned int full_stripe_len; + long unsigned int runtime_flags; + unsigned int ro; + int disk_cache_state; + int cached; + struct btrfs_caching_control *caching_ctl; + struct btrfs_space_info *space_info; + struct btrfs_free_space_ctl *free_space_ctl; + struct rb_node cache_node; + struct list_head list; + refcount_t refs; + struct list_head cluster_list; + struct list_head bg_list; + struct list_head ro_list; + atomic_t frozen; + struct list_head discard_list; + int discard_index; + u64 discard_eligible_time; + u64 discard_cursor; + enum btrfs_discard_state discard_state; + struct list_head dirty_list; + struct list_head io_list; + struct btrfs_io_ctl io_ctl; + atomic_t reservations; + atomic_t nocow_writers; + struct mutex free_space_lock; + int swap_extents; + u64 alloc_offset; + u64 zone_unusable; + u64 zone_capacity; + u64 meta_write_pointer; + struct btrfs_chunk_map *physical_map; + struct list_head active_bg_list; + struct work_struct zone_finish_work; + struct extent_buffer *last_eb; + enum btrfs_block_group_size_class size_class; + u64 reclaim_mark; +}; + +enum { + BTRFS_ORDERED_REGULAR = 0, + BTRFS_ORDERED_NOCOW = 1, + BTRFS_ORDERED_PREALLOC = 2, + BTRFS_ORDERED_COMPRESSED = 3, + BTRFS_ORDERED_DIRECT = 4, + BTRFS_ORDERED_IO_DONE = 5, + BTRFS_ORDERED_COMPLETE = 6, + BTRFS_ORDERED_IOERR = 7, + BTRFS_ORDERED_TRUNCATED = 8, + BTRFS_ORDERED_LOGGED = 9, + BTRFS_ORDERED_LOGGED_CSUM = 10, + BTRFS_ORDERED_PENDING = 11, + BTRFS_ORDERED_ENCODED = 12, +}; + +struct btrfs_file_extent { + u64 disk_bytenr; + u64 disk_num_bytes; + u64 num_bytes; + u64 ram_bytes; + u64 offset; + u8 compression; +}; + +enum btrfs_qgroup_rsv_type { + BTRFS_QGROUP_RSV_DATA = 0, + BTRFS_QGROUP_RSV_META_PERTRANS = 1, + BTRFS_QGROUP_RSV_META_PREALLOC = 2, + BTRFS_QGROUP_RSV_LAST = 3, +}; + +enum btrfs_trim_state { + BTRFS_TRIM_STATE_UNTRIMMED = 0, + BTRFS_TRIM_STATE_TRIMMED = 1, + BTRFS_TRIM_STATE_TRIMMING = 2, +}; + +struct btrfs_free_space { + struct rb_node offset_index; + struct rb_node bytes_index; + u64 offset; + u64 bytes; + u64 max_extent_size; + long unsigned int *bitmap; + struct list_head list; + enum btrfs_trim_state trim_state; + s32 bitmap_extents; +}; + +enum { + BTRFS_STAT_CURR = 0, + BTRFS_STAT_PREV = 1, + BTRFS_STAT_NR_ENTRIES = 2, +}; + +struct btrfs_free_space_op; + +struct btrfs_free_space_ctl { + spinlock_t tree_lock; + struct rb_root free_space_offset; + struct rb_root_cached free_space_bytes; + u64 free_space; + int extents_thresh; + int free_extents; + int total_bitmaps; + int unit; + u64 start; + s32 discardable_extents[2]; + s64 discardable_bytes[2]; + const struct btrfs_free_space_op *op; + struct btrfs_block_group *block_group; + struct mutex cache_writeout_mutex; + struct list_head trimming_ranges; +}; + +struct btrfs_free_space_op { + bool (*use_bitmap)(struct btrfs_free_space_ctl *, struct btrfs_free_space *); +}; + +struct btrfs_caching_control { + struct list_head list; + struct mutex mutex; + wait_queue_head_t wait; + struct btrfs_work work; + struct btrfs_block_group *block_group; + atomic_t progress; + refcount_t count; +}; + +struct btrfs_balance_args { + __u64 profiles; + union { + __u64 usage; + struct { + __u32 usage_min; + __u32 usage_max; + }; + }; + __u64 devid; + __u64 pstart; + __u64 pend; + __u64 vstart; + __u64 vend; + __u64 target; + __u64 flags; + union { + __u64 limit; + struct { + __u32 limit_min; + __u32 limit_max; + }; + }; + __u32 stripes_min; + __u32 stripes_max; + __u64 unused[6]; +}; + +struct btrfs_balance_progress { + __u64 expected; + __u64 considered; + __u64 completed; +}; + +enum btrfs_dev_stat_values { + BTRFS_DEV_STAT_WRITE_ERRS = 0, + BTRFS_DEV_STAT_READ_ERRS = 1, + BTRFS_DEV_STAT_FLUSH_ERRS = 2, + BTRFS_DEV_STAT_CORRUPTION_ERRS = 3, + BTRFS_DEV_STAT_GENERATION_ERRS = 4, + BTRFS_DEV_STAT_VALUES_MAX = 5, +}; + +struct btrfs_free_space_entry { + __le64 offset; + __le64 bytes; + __u8 type; +} __attribute__((packed)); + +struct btrfs_free_space_header { + struct btrfs_disk_key location; + __le64 generation; + __le64 num_entries; + __le64 num_bitmaps; +} __attribute__((packed)); + +struct btrfs_space_info { + struct btrfs_fs_info *fs_info; + spinlock_t lock; + u64 total_bytes; + u64 bytes_used; + u64 bytes_pinned; + u64 bytes_reserved; + u64 bytes_may_use; + u64 bytes_readonly; + u64 bytes_zone_unusable; + u64 max_extent_size; + u64 chunk_size; + int bg_reclaim_threshold; + int clamp; + unsigned int full: 1; + unsigned int chunk_alloc: 1; + unsigned int flush: 1; + unsigned int force_alloc; + u64 disk_used; + u64 disk_total; + u64 flags; + struct list_head list; + struct list_head ro_bgs; + struct list_head priority_tickets; + struct list_head tickets; + u64 reclaim_size; + u64 tickets_id; + struct rw_semaphore groups_sem; + struct list_head block_groups[9]; + struct kobject kobj; + struct kobject *block_group_kobjs[9]; + u64 reclaim_count; + u64 reclaim_bytes; + u64 reclaim_errors; + bool dynamic_reclaim; + bool periodic_reclaim; + bool periodic_reclaim_ready; + s64 reclaimable_bytes; +}; + +enum { + BTRFS_FS_CLOSING_START = 0, + BTRFS_FS_CLOSING_DONE = 1, + BTRFS_FS_LOG_RECOVERING = 2, + BTRFS_FS_OPEN = 3, + BTRFS_FS_QUOTA_ENABLED = 4, + BTRFS_FS_UPDATE_UUID_TREE_GEN = 5, + BTRFS_FS_CREATING_FREE_SPACE_TREE = 6, + BTRFS_FS_BTREE_ERR = 7, + BTRFS_FS_LOG1_ERR = 8, + BTRFS_FS_LOG2_ERR = 9, + BTRFS_FS_QUOTA_OVERRIDE = 10, + BTRFS_FS_FROZEN = 11, + BTRFS_FS_BALANCE_RUNNING = 12, + BTRFS_FS_RELOC_RUNNING = 13, + BTRFS_FS_CLEANER_RUNNING = 14, + BTRFS_FS_CSUM_IMPL_FAST = 15, + BTRFS_FS_DISCARD_RUNNING = 16, + BTRFS_FS_CLEANUP_SPACE_CACHE_V1 = 17, + BTRFS_FS_FREE_SPACE_TREE_UNTRUSTED = 18, + BTRFS_FS_TREE_MOD_LOG_USERS = 19, + BTRFS_FS_COMMIT_TRANS = 20, + BTRFS_FS_UNFINISHED_DROPS = 21, + BTRFS_FS_NEED_ZONE_FINISH = 22, + BTRFS_FS_NEED_TRANS_COMMIT = 23, + BTRFS_FS_ACTIVE_ZONE_TRACKING = 24, + BTRFS_FS_FEATURE_CHANGED = 25, + BTRFS_FS_UNALIGNED_TREE_BLOCK = 26, +}; + +enum { + BTRFS_MOUNT_NODATASUM = 1ULL, + BTRFS_MOUNT_NODATACOW = 2ULL, + BTRFS_MOUNT_NOBARRIER = 4ULL, + BTRFS_MOUNT_SSD = 8ULL, + BTRFS_MOUNT_DEGRADED = 16ULL, + BTRFS_MOUNT_COMPRESS = 32ULL, + BTRFS_MOUNT_NOTREELOG = 64ULL, + BTRFS_MOUNT_FLUSHONCOMMIT = 128ULL, + BTRFS_MOUNT_SSD_SPREAD = 256ULL, + BTRFS_MOUNT_NOSSD = 512ULL, + BTRFS_MOUNT_DISCARD_SYNC = 1024ULL, + BTRFS_MOUNT_FORCE_COMPRESS = 2048ULL, + BTRFS_MOUNT_SPACE_CACHE = 4096ULL, + BTRFS_MOUNT_CLEAR_CACHE = 8192ULL, + BTRFS_MOUNT_USER_SUBVOL_RM_ALLOWED = 16384ULL, + BTRFS_MOUNT_ENOSPC_DEBUG = 32768ULL, + BTRFS_MOUNT_AUTO_DEFRAG = 65536ULL, + BTRFS_MOUNT_USEBACKUPROOT = 131072ULL, + BTRFS_MOUNT_SKIP_BALANCE = 262144ULL, + BTRFS_MOUNT_PANIC_ON_FATAL_ERROR = 524288ULL, + BTRFS_MOUNT_RESCAN_UUID_TREE = 1048576ULL, + BTRFS_MOUNT_FRAGMENT_DATA = 2097152ULL, + BTRFS_MOUNT_FRAGMENT_METADATA = 4194304ULL, + BTRFS_MOUNT_FREE_SPACE_TREE = 8388608ULL, + BTRFS_MOUNT_NOLOGREPLAY = 16777216ULL, + BTRFS_MOUNT_REF_VERIFY = 33554432ULL, + BTRFS_MOUNT_DISCARD_ASYNC = 67108864ULL, + BTRFS_MOUNT_IGNOREBADROOTS = 134217728ULL, + BTRFS_MOUNT_IGNOREDATACSUMS = 268435456ULL, + BTRFS_MOUNT_NODISCARD = 536870912ULL, + BTRFS_MOUNT_NOSPACECACHE = 1073741824ULL, + BTRFS_MOUNT_IGNOREMETACSUMS = 2147483648ULL, + BTRFS_MOUNT_IGNORESUPERFLAGS = 4294967296ULL, +}; + +struct rcu_string; + +struct btrfs_zoned_device_info; + +struct scrub_ctx; + +struct btrfs_device { + struct list_head dev_list; + struct list_head dev_alloc_list; + struct list_head post_commit_list; + struct btrfs_fs_devices *fs_devices; + struct btrfs_fs_info *fs_info; + struct rcu_string *name; + u64 generation; + struct file *bdev_file; + struct block_device *bdev; + struct btrfs_zoned_device_info *zone_info; + dev_t devt; + long unsigned int dev_state; + blk_status_t last_flush_error; + u64 devid; + u64 total_bytes; + u64 disk_total_bytes; + u64 bytes_used; + u32 io_align; + u32 io_width; + u64 type; + atomic_t sb_write_errors; + u32 sector_size; + u8 uuid[16]; + u64 commit_total_bytes; + u64 commit_bytes_used; + struct bio flush_bio; + struct completion flush_wait; + struct scrub_ctx *scrub_ctx; + int dev_stats_valid; + atomic_t dev_stats_ccnt; + atomic_t dev_stat_values[5]; + struct extent_io_tree alloc_state; + struct completion kobj_unregister; + struct kobject devid_kobj; + u64 scrub_speed_max; +}; + +enum btrfs_chunk_allocation_policy { + BTRFS_CHUNK_ALLOC_REGULAR = 0, + BTRFS_CHUNK_ALLOC_ZONED = 1, +}; + +enum btrfs_read_policy { + BTRFS_READ_POLICY_PID = 0, + BTRFS_NR_READ_POLICY = 1, +}; + +struct btrfs_fs_devices { + u8 fsid[16]; + u8 metadata_uuid[16]; + struct list_head fs_list; + u64 num_devices; + u64 open_devices; + u64 rw_devices; + u64 missing_devices; + u64 total_rw_bytes; + u64 total_devices; + u64 latest_generation; + struct btrfs_device *latest_dev; + struct mutex device_list_mutex; + struct list_head devices; + struct list_head alloc_list; + struct list_head seed_list; + int opened; + bool rotating; + bool discardable; + bool seeding; + bool temp_fsid; + struct btrfs_fs_info *fs_info; + struct kobject fsid_kobj; + struct kobject *devices_kobj; + struct kobject *devinfo_kobj; + struct completion kobj_unregister; + enum btrfs_chunk_allocation_policy chunk_alloc_policy; + enum btrfs_read_policy read_policy; +}; + +struct btrfs_balance_control { + struct btrfs_balance_args data; + struct btrfs_balance_args meta; + struct btrfs_balance_args sys; + u64 flags; + struct btrfs_balance_progress stat; +}; + +struct rcu_string { + struct callback_head rcu; + char str[0]; +}; + +enum btrfs_raid_types { + BTRFS_RAID_SINGLE = 0, + BTRFS_RAID_RAID0 = 1, + BTRFS_RAID_RAID1 = 2, + BTRFS_RAID_DUP = 3, + BTRFS_RAID_RAID10 = 4, + BTRFS_RAID_RAID5 = 5, + BTRFS_RAID_RAID6 = 6, + BTRFS_RAID_RAID1C3 = 7, + BTRFS_RAID_RAID1C4 = 8, + BTRFS_NR_RAID_TYPES = 9, +}; + +struct btrfs_io_context; + +struct btrfs_io_stripe { + struct btrfs_device *dev; + u64 physical; + u64 length; + bool rst_search_commit_root; + struct btrfs_io_context *bioc; +}; + +struct btrfs_io_context { + refcount_t refs; + struct btrfs_fs_info *fs_info; + u64 map_type; + struct bio *orig_bio; + atomic_t error; + u16 max_errors; + u64 logical; + u64 size; + struct list_head rst_ordered_entry; + u16 num_stripes; + u16 mirror_num; + u16 replace_nr_stripes; + s16 replace_stripe_src; + u64 full_stripe_logical; + struct btrfs_io_stripe stripes[0]; +}; + +struct btrfs_chunk_map { + struct rb_node rb_node; + int verified_stripes; + refcount_t refs; + u64 start; + u64 chunk_len; + u64 stripe_size; + u64 type; + int io_align; + int io_width; + int num_stripes; + int sub_stripes; + struct btrfs_io_stripe stripes[0]; +}; + +enum btrfs_disk_cache_state { + BTRFS_DC_WRITTEN = 0, + BTRFS_DC_ERROR = 1, + BTRFS_DC_CLEAR = 2, + BTRFS_DC_SETUP = 3, +}; + +enum btrfs_block_group_flags { + BLOCK_GROUP_FLAG_IREF = 0, + BLOCK_GROUP_FLAG_REMOVED = 1, + BLOCK_GROUP_FLAG_TO_COPY = 2, + BLOCK_GROUP_FLAG_RELOCATING_REPAIR = 3, + BLOCK_GROUP_FLAG_CHUNK_ITEM_INSERTED = 4, + BLOCK_GROUP_FLAG_ZONE_IS_ACTIVE = 5, + BLOCK_GROUP_FLAG_ZONED_DATA_RELOC = 6, + BLOCK_GROUP_FLAG_NEEDS_FREE_SPACE = 7, + BLOCK_GROUP_FLAG_SEQUENTIAL_ZONE = 8, + BLOCK_GROUP_FLAG_NEW = 9, +}; + +struct btrfs_truncate_control { + struct btrfs_inode *inode; + u64 new_size; + u64 extents_found; + u64 last_size; + u64 sub_bytes; + u64 ino; + u32 min_type; + bool skip_ref_updates; + bool clear_extent_range; +}; + +struct btrfs_trim_range { + u64 start; + u64 bytes; + struct list_head list; +}; + +enum { + btrfs_bitmap_nr_uptodate = 0, + btrfs_bitmap_nr_dirty = 1, + btrfs_bitmap_nr_writeback = 2, + btrfs_bitmap_nr_ordered = 3, + btrfs_bitmap_nr_checked = 4, + btrfs_bitmap_nr_locked = 5, + btrfs_bitmap_nr_max = 6, +}; + +struct btrfs_subpage { + spinlock_t lock; + union { + atomic_t eb_refs; + atomic_t nr_locked; + }; + long unsigned int bitmaps[0]; +}; + +enum btrfs_subpage_type { + BTRFS_SUBPAGE_METADATA = 0, + BTRFS_SUBPAGE_DATA = 1, +}; + +struct f2fs_device { + __u8 path[64]; + __le32 total_segments; +}; + +struct f2fs_super_block { + __le32 magic; + __le16 major_ver; + __le16 minor_ver; + __le32 log_sectorsize; + __le32 log_sectors_per_block; + __le32 log_blocksize; + __le32 log_blocks_per_seg; + __le32 segs_per_sec; + __le32 secs_per_zone; + __le32 checksum_offset; + __le64 block_count; + __le32 section_count; + __le32 segment_count; + __le32 segment_count_ckpt; + __le32 segment_count_sit; + __le32 segment_count_nat; + __le32 segment_count_ssa; + __le32 segment_count_main; + __le32 segment0_blkaddr; + __le32 cp_blkaddr; + __le32 sit_blkaddr; + __le32 nat_blkaddr; + __le32 ssa_blkaddr; + __le32 main_blkaddr; + __le32 root_ino; + __le32 node_ino; + __le32 meta_ino; + __u8 uuid[16]; + __le16 volume_name[512]; + __le32 extension_count; + __u8 extension_list[512]; + __le32 cp_payload; + __u8 version[256]; + __u8 init_version[256]; + __le32 feature; + __u8 encryption_level; + __u8 encrypt_pw_salt[16]; + struct f2fs_device devs[8]; + __le32 qf_ino[3]; + __u8 hot_ext_count; + __le16 s_encoding; + __le16 s_encoding_flags; + __u8 s_stop_reason[32]; + __u8 s_errors[16]; + __u8 reserved[258]; + __le32 crc; +} __attribute__((packed)); + +struct f2fs_checkpoint { + __le64 checkpoint_ver; + __le64 user_block_count; + __le64 valid_block_count; + __le32 rsvd_segment_count; + __le32 overprov_segment_count; + __le32 free_segment_count; + __le32 cur_node_segno[8]; + __le16 cur_node_blkoff[8]; + __le32 cur_data_segno[8]; + __le16 cur_data_blkoff[8]; + __le32 ckpt_flags; + __le32 cp_pack_total_block_count; + __le32 cp_pack_start_sum; + __le32 valid_node_count; + __le32 valid_inode_count; + __le32 next_free_nid; + __le32 sit_ver_bitmap_bytesize; + __le32 nat_ver_bitmap_bytesize; + __le32 checksum_offset; + __le64 elapsed_time; + unsigned char alloc_type[16]; + unsigned char sit_nat_version_bitmap[0]; +}; + +struct f2fs_extent { + __le32 fofs; + __le32 blk; + __le32 len; +}; + +struct node_footer { + __le32 nid; + __le32 ino; + __le32 flag; + __le64 cp_ver; + __le32 next_blkaddr; +} __attribute__((packed)); + +struct f2fs_inode { + __le16 i_mode; + __u8 i_advise; + __u8 i_inline; + __le32 i_uid; + __le32 i_gid; + __le32 i_links; + __le64 i_size; + __le64 i_blocks; + __le64 i_atime; + __le64 i_ctime; + __le64 i_mtime; + __le32 i_atime_nsec; + __le32 i_ctime_nsec; + __le32 i_mtime_nsec; + __le32 i_generation; + union { + __le32 i_current_depth; + __le16 i_gc_failures; + }; + __le32 i_xattr_nid; + __le32 i_flags; + __le32 i_pino; + __le32 i_namelen; + __u8 i_name[255]; + __u8 i_dir_level; + struct f2fs_extent i_ext; + union { + struct { + __le16 i_extra_isize; + __le16 i_inline_xattr_size; + __le32 i_projid; + __le32 i_inode_checksum; + __le64 i_crtime; + __le32 i_crtime_nsec; + __le64 i_compr_blocks; + __u8 i_compress_algorithm; + __u8 i_log_cluster_size; + __le16 i_compress_flag; + __le32 i_extra_end[0]; + } __attribute__((packed)); + __le32 i_addr[923]; + }; + __le32 i_nid[5]; +}; + +struct direct_node { + __le32 addr[1018]; +}; + +struct indirect_node { + __le32 nid[1018]; +}; + +enum { + COLD_BIT_SHIFT = 0, + FSYNC_BIT_SHIFT = 1, + DENT_BIT_SHIFT = 2, + OFFSET_BIT_SHIFT = 3, +}; + +struct f2fs_node { + union { + struct f2fs_inode i; + struct direct_node dn; + struct indirect_node in; + }; + struct node_footer footer; +}; + +typedef __le32 f2fs_hash_t; + +struct disk_stats { + u64 nsecs[4]; + long unsigned int sectors[4]; + long unsigned int ios[4]; + long unsigned int merges[4]; + long unsigned int io_ticks; + local_t in_flight[2]; +}; + +enum { + FAULT_KMALLOC = 0, + FAULT_KVMALLOC = 1, + FAULT_PAGE_ALLOC = 2, + FAULT_PAGE_GET = 3, + FAULT_ALLOC_BIO = 4, + FAULT_ALLOC_NID = 5, + FAULT_ORPHAN = 6, + FAULT_BLOCK = 7, + FAULT_DIR_DEPTH = 8, + FAULT_EVICT_INODE = 9, + FAULT_TRUNCATE = 10, + FAULT_READ_IO = 11, + FAULT_CHECKPOINT = 12, + FAULT_DISCARD = 13, + FAULT_WRITE_IO = 14, + FAULT_SLAB_ALLOC = 15, + FAULT_DQUOT_INIT = 16, + FAULT_LOCK_OP = 17, + FAULT_BLKADDR_VALIDITY = 18, + FAULT_BLKADDR_CONSISTENCE = 19, + FAULT_NO_SEGMENT = 20, + FAULT_MAX = 21, +}; + +typedef u32 block_t; + +typedef u32 nid_t; + +struct f2fs_rwsem { + struct rw_semaphore internal_rwsem; +}; + +struct f2fs_mount_info { + unsigned int opt; + block_t root_reserved_blocks; + kuid_t s_resuid; + kgid_t s_resgid; + int active_logs; + int inline_xattr_size; + char *s_qf_names[3]; + int s_jquota_fmt; + int alloc_mode; + int fsync_mode; + int fs_mode; + int bggc_mode; + int memory_mode; + int errors; + int discard_unit; + struct fscrypt_dummy_policy dummy_enc_policy; + block_t unusable_cap_perc; + block_t unusable_cap; + unsigned char compress_algorithm; + unsigned char compress_log_size; + unsigned char compress_level; + bool compress_chksum; + unsigned char compress_ext_cnt; + unsigned char nocompress_ext_cnt; + int compress_mode; + unsigned char extensions[128]; + unsigned char noextensions[128]; +}; + +enum { + META_CP = 0, + META_NAT = 1, + META_SIT = 2, + META_SSA = 3, + META_MAX = 4, + META_POR = 5, + DATA_GENERIC = 6, + DATA_GENERIC_ENHANCE = 7, + DATA_GENERIC_ENHANCE_READ = 8, + DATA_GENERIC_ENHANCE_UPDATE = 9, + META_GENERIC = 10, +}; + +struct ckpt_req_control { + struct task_struct *f2fs_issue_ckpt; + int ckpt_thread_ioprio; + wait_queue_head_t ckpt_wait_queue; + atomic_t issued_ckpt; + atomic_t total_ckpt; + atomic_t queued_ckpt; + struct llist_head issue_list; + spinlock_t stat_lock; + unsigned int cur_time; + unsigned int peak_time; +}; + +struct discard_cmd_control { + struct task_struct *f2fs_issue_discard; + struct list_head entry_list; + struct list_head pend_list[512]; + struct list_head wait_list; + struct list_head fstrim_list; + wait_queue_head_t discard_wait_queue; + struct mutex cmd_lock; + unsigned int nr_discards; + unsigned int max_discards; + unsigned int max_discard_request; + unsigned int min_discard_issue_time; + unsigned int mid_discard_issue_time; + unsigned int max_discard_issue_time; + unsigned int discard_io_aware_gran; + unsigned int discard_urgent_util; + unsigned int discard_granularity; + unsigned int max_ordered_discard; + unsigned int discard_io_aware; + unsigned int undiscard_blks; + unsigned int next_pos; + atomic_t issued_discard; + atomic_t queued_discard; + atomic_t discard_cmd_cnt; + struct rb_root_cached root; + bool rbtree_check; + bool discard_wake; +}; + +enum extent_type { + EX_READ = 0, + EX_BLOCK_AGE = 1, + NR_EXTENT_CACHES = 2, +}; + +struct extent_info { + unsigned int fofs; + unsigned int len; + union { + struct { + block_t blk; + }; + struct { + long long unsigned int age; + long long unsigned int last_blocks; + }; + }; +}; + +struct extent_tree; + +struct extent_node { + struct rb_node rb_node; + struct extent_info ei; + struct list_head list; + struct extent_tree *et; +}; + +struct extent_tree { + nid_t ino; + enum extent_type type; + struct rb_root_cached root; + struct extent_node *cached_en; + struct list_head list; + rwlock_t lock; + atomic_t node_cnt; + bool largest_updated; + struct extent_info largest; +}; + +struct extent_tree_info { + struct xarray extent_tree_root; + struct mutex extent_tree_lock; + struct list_head extent_list; + spinlock_t extent_lock; + atomic_t total_ext_tree; + struct list_head zombie_list; + atomic_t total_zombie_tree; + atomic_t total_ext_node; +}; + +enum { + FI_NEW_INODE = 0, + FI_DIRTY_INODE = 1, + FI_AUTO_RECOVER = 2, + FI_DIRTY_DIR = 3, + FI_INC_LINK = 4, + FI_ACL_MODE = 5, + FI_NO_ALLOC = 6, + FI_FREE_NID = 7, + FI_NO_EXTENT = 8, + FI_INLINE_XATTR = 9, + FI_INLINE_DATA = 10, + FI_INLINE_DENTRY = 11, + FI_APPEND_WRITE = 12, + FI_UPDATE_WRITE = 13, + FI_NEED_IPU = 14, + FI_ATOMIC_FILE = 15, + FI_DATA_EXIST = 16, + FI_SKIP_WRITES = 17, + FI_OPU_WRITE = 18, + FI_DIRTY_FILE = 19, + FI_PREALLOCATED_ALL = 20, + FI_HOT_DATA = 21, + FI_EXTRA_ATTR = 22, + FI_PROJ_INHERIT = 23, + FI_PIN_FILE = 24, + FI_VERITY_IN_PROGRESS = 25, + FI_COMPRESSED_FILE = 26, + FI_COMPRESS_CORRUPT = 27, + FI_MMAP_FILE = 28, + FI_ENABLE_COMPRESS = 29, + FI_COMPRESS_RELEASED = 30, + FI_ALIGNED_WRITE = 31, + FI_COW_FILE = 32, + FI_ATOMIC_COMMITTED = 33, + FI_ATOMIC_DIRTIED = 34, + FI_ATOMIC_REPLACE = 35, + FI_OPENED_FILE = 36, + FI_MAX = 37, +}; + +struct f2fs_inode_info { + struct inode vfs_inode; + long unsigned int i_flags; + unsigned char i_advise; + unsigned char i_dir_level; + union { + unsigned int i_current_depth; + short unsigned int i_gc_failures; + }; + unsigned int i_pino; + umode_t i_acl_mode; + long unsigned int flags[1]; + struct f2fs_rwsem i_sem; + atomic_t dirty_pages; + f2fs_hash_t chash; + unsigned int clevel; + struct task_struct *task; + struct task_struct *cp_task; + struct task_struct *wb_task; + nid_t i_xattr_nid; + loff_t last_disk_size; + spinlock_t i_size_lock; + struct dquot *i_dquot[3]; + qsize_t i_reserved_quota; + struct list_head dirty_list; + struct list_head gdirty_list; + struct task_struct *atomic_write_task; + struct extent_tree *extent_tree[2]; + union { + struct inode *cow_inode; + struct inode *atomic_inode; + }; + struct f2fs_rwsem i_gc_rwsem[2]; + struct f2fs_rwsem i_xattr_sem; + int i_extra_isize; + kprojid_t i_projid; + int i_inline_xattr_size; + struct timespec64 i_crtime; + struct timespec64 i_disk_time[3]; + atomic_t i_compr_blocks; + unsigned char i_compress_algorithm; + unsigned char i_log_cluster_size; + unsigned char i_compress_level; + unsigned char i_compress_flag; + unsigned int i_cluster_size; + unsigned int atomic_write_cnt; + loff_t original_i_size; +}; + +struct f2fs_nm_info { + block_t nat_blkaddr; + nid_t max_nid; + nid_t available_nids; + nid_t next_scan_nid; + nid_t max_rf_node_blocks; + unsigned int ram_thresh; + unsigned int ra_nid_pages; + unsigned int dirty_nats_ratio; + struct xarray nat_root; + struct xarray nat_set_root; + struct f2fs_rwsem nat_tree_lock; + struct list_head nat_entries; + spinlock_t nat_list_lock; + unsigned int nat_cnt[3]; + unsigned int nat_blocks; + struct xarray free_nid_root; + struct list_head free_nid_list; + unsigned int nid_cnt[2]; + spinlock_t nid_list_lock; + struct mutex build_lock; + unsigned char **free_nid_bitmap; + unsigned char *nat_block_bitmap; + short unsigned int *free_nid_count; + char *nat_bitmap; + unsigned int nat_bits_blocks; + unsigned char *nat_bits; + unsigned char *full_nat_bits; + unsigned char *empty_nat_bits; + int bitmap_size; +}; + +struct dnode_of_data { + struct inode *inode; + struct page *inode_page; + struct page *node_page; + nid_t nid; + unsigned int ofs_in_node; + bool inode_page_locked; + bool node_changed; + char cur_level; + char max_level; + block_t data_blkaddr; +}; + +struct flush_cmd_control { + struct task_struct *f2fs_issue_flush; + wait_queue_head_t flush_wait_queue; + atomic_t issued_flush; + atomic_t queued_flush; + struct llist_head issue_list; + struct llist_node *dispatch_list; +}; + +struct sit_info; + +struct free_segmap_info; + +struct dirty_seglist_info; + +struct curseg_info; + +struct f2fs_sm_info { + struct sit_info *sit_info; + struct free_segmap_info *free_info; + struct dirty_seglist_info *dirty_info; + struct curseg_info *curseg_array; + struct f2fs_rwsem curseg_lock; + block_t seg0_blkaddr; + block_t main_blkaddr; + block_t ssa_blkaddr; + unsigned int segment_count; + unsigned int main_segments; + unsigned int reserved_segments; + unsigned int additional_reserved_segments; + unsigned int ovp_segments; + unsigned int rec_prefree_segments; + struct list_head sit_entry_set; + unsigned int ipu_policy; + unsigned int min_ipu_util; + unsigned int min_fsync_blocks; + unsigned int min_seq_blocks; + unsigned int min_hot_blocks; + unsigned int min_ssr_sections; + struct flush_cmd_control *fcc_info; + struct discard_cmd_control *dcc_info; +}; + +enum page_type { + DATA = 0, + NODE = 1, + META = 2, + NR_PAGE_TYPE = 3, + META_FLUSH = 4, + IPU = 5, + OPU = 6, +}; + +enum temp_type { + HOT = 0, + WARM = 1, + COLD = 2, + NR_TEMP_TYPE = 3, +}; + +enum iostat_type { + APP_DIRECT_IO = 0, + APP_BUFFERED_IO = 1, + APP_WRITE_IO = 2, + APP_MAPPED_IO = 3, + APP_BUFFERED_CDATA_IO = 4, + APP_MAPPED_CDATA_IO = 5, + FS_DATA_IO = 6, + FS_CDATA_IO = 7, + FS_NODE_IO = 8, + FS_META_IO = 9, + FS_GC_DATA_IO = 10, + FS_GC_NODE_IO = 11, + FS_CP_DATA_IO = 12, + FS_CP_NODE_IO = 13, + FS_CP_META_IO = 14, + APP_DIRECT_READ_IO = 15, + APP_BUFFERED_READ_IO = 16, + APP_READ_IO = 17, + APP_MAPPED_READ_IO = 18, + APP_BUFFERED_CDATA_READ_IO = 19, + APP_MAPPED_CDATA_READ_IO = 20, + FS_DATA_READ_IO = 21, + FS_GDATA_READ_IO = 22, + FS_CDATA_READ_IO = 23, + FS_NODE_READ_IO = 24, + FS_META_READ_IO = 25, + FS_DISCARD_IO = 26, + FS_FLUSH_IO = 27, + FS_ZONE_RESET_IO = 28, + NR_IO_TYPE = 29, +}; + +struct f2fs_sb_info; + +struct f2fs_io_info { + struct f2fs_sb_info *sbi; + nid_t ino; + enum page_type type; + enum temp_type temp; + enum req_op op; + blk_opf_t op_flags; + block_t new_blkaddr; + block_t old_blkaddr; + struct page *page; + struct page *encrypted_page; + struct page *compressed_page; + struct list_head list; + unsigned int compr_blocks; + unsigned int need_lock: 8; + unsigned int version: 8; + unsigned int submitted: 1; + unsigned int in_list: 1; + unsigned int is_por: 1; + unsigned int encrypted: 1; + unsigned int meta_gc: 1; + enum iostat_type io_type; + struct writeback_control *io_wbc; + struct bio **bio; + sector_t *last_block; +}; + +struct inode_management { + struct xarray ino_root; + spinlock_t ino_lock; + struct list_head ino_list; + long unsigned int ino_num; +}; + +struct atgc_management { + bool atgc_enabled; + struct rb_root_cached root; + struct list_head victim_list; + unsigned int victim_count; + unsigned int candidate_ratio; + unsigned int max_candidate_count; + unsigned int age_weight; + long long unsigned int age_threshold; +}; + +struct f2fs_bio_info; + +struct f2fs_gc_kthread; + +struct f2fs_stat_info; + +struct f2fs_dev_info; + +struct iostat_lat_info; + +struct f2fs_sb_info { + struct super_block *sb; + struct proc_dir_entry *s_proc; + struct f2fs_super_block *raw_super; + struct f2fs_rwsem sb_lock; + int valid_super_block; + long unsigned int s_flag; + struct mutex writepages; + struct f2fs_nm_info *nm_info; + struct inode *node_inode; + struct f2fs_sm_info *sm_info; + struct f2fs_bio_info *write_io[3]; + struct f2fs_rwsem io_order_lock; + long unsigned int page_eio_ofs[3]; + int page_eio_cnt[3]; + struct f2fs_checkpoint *ckpt; + int cur_cp_pack; + spinlock_t cp_lock; + struct inode *meta_inode; + struct f2fs_rwsem cp_global_sem; + struct f2fs_rwsem cp_rwsem; + struct f2fs_rwsem node_write; + struct f2fs_rwsem node_change; + wait_queue_head_t cp_wait; + long unsigned int last_time[6]; + long int interval_time[6]; + struct ckpt_req_control cprc_info; + struct inode_management im[6]; + spinlock_t fsync_node_lock; + struct list_head fsync_node_list; + unsigned int fsync_seg_id; + unsigned int fsync_node_num; + unsigned int max_orphans; + struct list_head inode_list[3]; + spinlock_t inode_lock[3]; + struct mutex flush_lock; + struct extent_tree_info extent_tree[2]; + atomic64_t allocated_data_blocks; + unsigned int max_read_extent_count; + unsigned int hot_data_age_threshold; + unsigned int warm_data_age_threshold; + unsigned int last_age_weight; + unsigned int log_sectors_per_block; + unsigned int log_blocksize; + unsigned int blocksize; + unsigned int root_ino_num; + unsigned int node_ino_num; + unsigned int meta_ino_num; + unsigned int log_blocks_per_seg; + unsigned int blocks_per_seg; + unsigned int unusable_blocks_per_sec; + unsigned int segs_per_sec; + unsigned int secs_per_zone; + unsigned int total_sections; + unsigned int total_node_count; + unsigned int total_valid_node_count; + int dir_level; + bool readdir_ra; + u64 max_io_bytes; + block_t user_block_count; + block_t total_valid_block_count; + block_t discard_blks; + block_t last_valid_block_count; + block_t reserved_blocks; + block_t current_reserved_blocks; + block_t unusable_block_count; + unsigned int nquota_files; + struct f2fs_rwsem quota_sem; + atomic_t nr_pages[13]; + struct percpu_counter alloc_valid_block_count; + struct percpu_counter rf_node_block_count; + atomic_t wb_sync_req[2]; + struct percpu_counter total_valid_inode_count; + struct f2fs_mount_info mount_opt; + struct f2fs_rwsem gc_lock; + struct f2fs_gc_kthread *gc_thread; + struct atgc_management am; + unsigned int cur_victim_sec; + unsigned int gc_mode; + unsigned int next_victim_seg[2]; + spinlock_t gc_remaining_trials_lock; + unsigned int gc_remaining_trials; + long long unsigned int skipped_gc_rwsem; + short unsigned int gc_pin_file_threshold; + struct f2fs_rwsem pin_sem; + unsigned int max_victim_search; + unsigned int migration_granularity; + unsigned int migration_window_granularity; + struct f2fs_stat_info *stat_info; + atomic_t meta_count[4]; + unsigned int segment_count[2]; + unsigned int block_count[2]; + atomic_t inplace_count; + atomic64_t total_hit_ext[2]; + atomic64_t read_hit_rbtree[2]; + atomic64_t read_hit_cached[2]; + atomic64_t read_hit_largest; + atomic_t inline_xattr; + atomic_t inline_inode; + atomic_t inline_dir; + atomic_t compr_inode; + atomic64_t compr_blocks; + atomic_t swapfile_inode; + atomic_t atomic_files; + atomic_t max_aw_cnt; + unsigned int io_skip_bggc; + unsigned int other_skip_bggc; + unsigned int ndirty_inode[3]; + atomic_t cp_call_count[2]; + spinlock_t stat_lock; + unsigned int data_io_flag; + unsigned int node_io_flag; + struct kobject s_kobj; + struct completion s_kobj_unregister; + struct kobject s_stat_kobj; + struct completion s_stat_kobj_unregister; + struct kobject s_feature_list_kobj; + struct completion s_feature_list_kobj_unregister; + struct list_head s_list; + struct mutex umount_mutex; + unsigned int shrinker_run_no; + int s_ndevs; + struct f2fs_dev_info *devs; + unsigned int dirty_device; + spinlock_t dev_lock; + bool aligned_blksize; + unsigned int first_seq_zone_segno; + u64 sectors_written_start; + u64 kbytes_written; + struct crypto_shash *s_chksum_driver; + __u32 s_chksum_seed; + struct workqueue_struct *post_read_wq; + struct work_struct s_error_work; + unsigned char errors[16]; + unsigned char stop_reason[32]; + spinlock_t error_lock; + bool error_dirty; + struct kmem_cache *inline_xattr_slab; + unsigned int inline_xattr_slab_size; + unsigned int gc_segment_mode; + unsigned int gc_reclaimed_segs[7]; + long unsigned int seq_file_ra_mul; + int max_fragment_chunk; + int max_fragment_hole; + atomic64_t current_atomic_write; + s64 peak_atomic_write; + u64 committed_atomic_block; + u64 revoked_atomic_block; + spinlock_t iostat_lock; + long long unsigned int iostat_count[29]; + long long unsigned int iostat_bytes[29]; + long long unsigned int prev_iostat_bytes[29]; + bool iostat_enable; + long unsigned int iostat_next_period; + unsigned int iostat_period_ms; + spinlock_t iostat_lat_lock; + struct iostat_lat_info *iostat_io_lat; +}; + +struct f2fs_bio_info { + struct f2fs_sb_info *sbi; + struct bio *bio; + sector_t last_block_in_bio; + struct f2fs_io_info fio; + struct f2fs_rwsem io_rwsem; + spinlock_t io_lock; + struct list_head io_list; + struct list_head bio_list; + struct f2fs_rwsem bio_list_lock; +}; + +struct f2fs_dev_info { + struct file *bdev_file; + struct block_device *bdev; + char path[65]; + unsigned int total_segments; + block_t start_blk; + block_t end_blk; +}; + +enum { + SBI_IS_DIRTY = 0, + SBI_IS_CLOSE = 1, + SBI_NEED_FSCK = 2, + SBI_POR_DOING = 3, + SBI_NEED_SB_WRITE = 4, + SBI_NEED_CP = 5, + SBI_IS_SHUTDOWN = 6, + SBI_IS_RECOVERED = 7, + SBI_CP_DISABLED = 8, + SBI_CP_DISABLED_QUICK = 9, + SBI_QUOTA_NEED_FLUSH = 10, + SBI_QUOTA_SKIP_FLUSH = 11, + SBI_QUOTA_NEED_REPAIR = 12, + SBI_IS_RESIZEFS = 13, + SBI_IS_FREEZING = 14, + SBI_IS_WRITABLE = 15, + MAX_SBI_FLAG = 16, +}; + +struct f2fs_stat_info { + struct list_head stat_list; + struct f2fs_sb_info *sbi; + int all_area_segs; + int sit_area_segs; + int nat_area_segs; + int ssa_area_segs; + int main_area_segs; + int main_area_sections; + int main_area_zones; + long long unsigned int hit_cached[2]; + long long unsigned int hit_rbtree[2]; + long long unsigned int total_ext[2]; + long long unsigned int hit_total[2]; + int ext_tree[2]; + int zombie_tree[2]; + int ext_node[2]; + long long unsigned int ext_mem[2]; + long long unsigned int hit_largest; + long long unsigned int allocated_data_blocks; + int ndirty_node; + int ndirty_dent; + int ndirty_meta; + int ndirty_imeta; + int ndirty_data; + int ndirty_qdata; + unsigned int ndirty_dirs; + unsigned int ndirty_files; + unsigned int nquota_files; + unsigned int ndirty_all; + int nats; + int dirty_nats; + int sits; + int dirty_sits; + int free_nids; + int avail_nids; + int alloc_nids; + int total_count; + int utilization; + int nr_wb_cp_data; + int nr_wb_data; + int nr_rd_data; + int nr_rd_node; + int nr_rd_meta; + int nr_dio_read; + int nr_dio_write; + unsigned int io_skip_bggc; + unsigned int other_skip_bggc; + int nr_flushing; + int nr_flushed; + int flush_list_empty; + int nr_discarding; + int nr_discarded; + int nr_discard_cmd; + unsigned int undiscard_blks; + int nr_issued_ckpt; + int nr_total_ckpt; + int nr_queued_ckpt; + unsigned int cur_ckpt_time; + unsigned int peak_ckpt_time; + int inline_xattr; + int inline_inode; + int inline_dir; + int append; + int update; + int orphans; + int compr_inode; + int swapfile_inode; + long long unsigned int compr_blocks; + int aw_cnt; + int max_aw_cnt; + unsigned int valid_count; + unsigned int valid_node_count; + unsigned int valid_inode_count; + unsigned int discard_blks; + unsigned int bimodal; + unsigned int avg_vblocks; + int util_free; + int util_valid; + int util_invalid; + int rsvd_segs; + int overp_segs; + int dirty_count; + int node_pages; + int meta_pages; + int compress_pages; + int compress_page_hit; + int prefree_count; + int free_segs; + int free_secs; + int cp_call_count[2]; + int cp_count; + int gc_call_count[2]; + int gc_segs[4]; + int gc_secs[4]; + int tot_blks; + int data_blks; + int node_blks; + int bg_data_blks; + int bg_node_blks; + int curseg[8]; + int cursec[8]; + int curzone[8]; + unsigned int dirty_seg[8]; + unsigned int full_seg[8]; + unsigned int valid_blks[8]; + unsigned int meta_count[4]; + unsigned int segment_count[2]; + unsigned int block_count[2]; + unsigned int inplace_count; + long long unsigned int base_mem; + long long unsigned int cache_mem; + long long unsigned int page_mem; +}; + +struct iomap_dio_ops { + int (*end_io)(struct kiocb *, ssize_t, int, unsigned int); + void (*submit_io)(const struct iomap_iter *, struct bio *, loff_t); + struct bio_set *bio_set; +}; + +enum { + EROFS_INODE_FLAT_PLAIN = 0, + EROFS_INODE_COMPRESSED_FULL = 1, + EROFS_INODE_FLAT_INLINE = 2, + EROFS_INODE_COMPRESSED_COMPACT = 3, + EROFS_INODE_CHUNK_BASED = 4, + EROFS_INODE_DATALAYOUT_MAX = 5, +}; + +struct erofs_xattr_long_prefix { + __u8 base_index; + char infix[0]; +}; + +struct erofs_inode_chunk_index { + __le16 advise; + __le16 device_id; + __le32 blkaddr; +}; + +typedef u64 erofs_nid_t; + +typedef u64 erofs_off_t; + +typedef u32 erofs_blk_t; + +struct erofs_fscache; + +struct erofs_device_info { + char *path; + struct erofs_fscache *fscache; + struct file *file; + struct dax_device *dax_dev; + u64 dax_part_off; + u32 blocks; + u32 mapped_blkaddr; +}; + +struct erofs_domain; + +struct erofs_fscache { + struct fscache_cookie *cookie; + struct inode *inode; + struct erofs_domain *domain; + struct list_head node; + refcount_t ref; + char *name; +}; + +struct erofs_mount_opts { + unsigned char cache_strategy; + unsigned int sync_decompress; + unsigned int max_sync_decompress_pages; + unsigned int mount_opt; +}; + +struct erofs_dev_context { + struct idr tree; + struct rw_semaphore rwsem; + unsigned int extra_devices; + bool flatdev; +}; + +struct erofs_sb_lz4_info { + u16 max_distance_pages; + u16 max_pclusterblks; +}; + +struct erofs_domain { + refcount_t ref; + struct list_head list; + struct fscache_volume *volume; + char *domain_id; +}; + +struct erofs_xattr_prefix_item { + struct erofs_xattr_long_prefix *prefix; + u8 infix_len; +}; + +struct erofs_sb_info { + struct erofs_device_info dif0; + struct erofs_mount_opts opt; + struct list_head list; + struct mutex umount_mutex; + struct xarray managed_pslots; + unsigned int shrinker_run_no; + u16 available_compr_algs; + struct inode *managed_cache; + struct erofs_sb_lz4_info lz4; + struct inode *packed_inode; + struct erofs_dev_context *devs; + u64 total_blocks; + u32 meta_blkaddr; + u32 xattr_blkaddr; + u32 xattr_prefix_start; + u8 xattr_prefix_count; + struct erofs_xattr_prefix_item *xattr_prefixes; + unsigned int xattr_filter_reserved; + u16 device_id_mask; + unsigned char islotbits; + unsigned char blkszbits; + u32 sb_size; + u32 build_time_nsec; + u64 build_time; + erofs_nid_t root_nid; + erofs_nid_t packed_nid; + u64 inos; + u8 uuid[16]; + u8 volume_name[16]; + u32 feature_compat; + u32 feature_incompat; + struct kobject s_kobj; + struct completion s_kobj_unregister; + struct fscache_volume *volume; + struct erofs_domain *domain; + char *fsid; + char *domain_id; +}; + +enum erofs_kmap_type { + EROFS_NO_KMAP = 0, + EROFS_KMAP = 1, +}; + +struct erofs_buf { + struct address_space *mapping; + struct file *file; + struct page *page; + void *base; + enum erofs_kmap_type kmap_type; +}; + +struct erofs_inode { + erofs_nid_t nid; + long unsigned int flags; + unsigned char datalayout; + unsigned char inode_isize; + unsigned int xattr_isize; + unsigned int xattr_name_filter; + unsigned int xattr_shared_count; + unsigned int *xattr_shared_xattrs; + union { + erofs_blk_t raw_blkaddr; + struct { + short unsigned int chunkformat; + unsigned char chunkbits; + }; + struct { + short unsigned int z_advise; + unsigned char z_algorithmtype[2]; + unsigned char z_logical_clusterbits; + long unsigned int z_tailextent_headlcn; + erofs_off_t z_fragmentoff; + short unsigned int z_idata_size; + }; + }; + struct inode vfs_inode; +}; + +struct erofs_map_blocks { + struct erofs_buf buf; + erofs_off_t m_pa; + erofs_off_t m_la; + u64 m_plen; + u64 m_llen; + short unsigned int m_deviceid; + char m_algorithmformat; + unsigned int m_flags; +}; + +struct erofs_map_dev { + struct super_block *m_sb; + struct erofs_device_info *m_dif; + struct block_device *m_bdev; + erofs_off_t m_pa; + unsigned int m_deviceid; +}; + +enum xz_mode { + XZ_SINGLE = 0, + XZ_PREALLOC = 1, + XZ_DYNALLOC = 2, +}; + +enum xz_ret { + XZ_OK = 0, + XZ_STREAM_END = 1, + XZ_UNSUPPORTED_CHECK = 2, + XZ_MEM_ERROR = 3, + XZ_MEMLIMIT_ERROR = 4, + XZ_FORMAT_ERROR = 5, + XZ_OPTIONS_ERROR = 6, + XZ_DATA_ERROR = 7, + XZ_BUF_ERROR = 8, +}; + +struct xz_buf { + const uint8_t *in; + size_t in_pos; + size_t in_size; + uint8_t *out; + size_t out_pos; + size_t out_size; +}; + +struct erofs_super_block { + __le32 magic; + __le32 checksum; + __le32 feature_compat; + __u8 blkszbits; + __u8 sb_extslots; + __le16 root_nid; + __le64 inos; + __le64 build_time; + __le32 build_time_nsec; + __le32 blocks; + __le32 meta_blkaddr; + __le32 xattr_blkaddr; + __u8 uuid[16]; + __u8 volume_name[16]; + __le32 feature_incompat; + union { + __le16 available_compr_algs; + __le16 lz4_max_distance; + } u1; + __le16 extra_devices; + __le16 devt_slotoff; + __u8 dirblkbits; + __u8 xattr_prefix_count; + __le32 xattr_prefix_start; + __le64 packed_nid; + __u8 xattr_filter_reserved; + __u8 reserved2[23]; +}; + +enum { + Z_EROFS_COMPRESSION_LZ4 = 0, + Z_EROFS_COMPRESSION_LZMA = 1, + Z_EROFS_COMPRESSION_DEFLATE = 2, + Z_EROFS_COMPRESSION_ZSTD = 3, + Z_EROFS_COMPRESSION_MAX = 4, +}; + +struct z_erofs_lzma_cfgs { + __le32 dict_size; + __le16 format; + u8 reserved[8]; +} __attribute__((packed)); + +struct z_erofs_decompress_req { + struct super_block *sb; + struct page **in; + struct page **out; + short unsigned int pageofs_in; + short unsigned int pageofs_out; + unsigned int inputsize; + unsigned int outputsize; + unsigned int alg; + bool inplace_io; + bool partial_decoding; + bool fillgaps; + gfp_t gfp; +}; + +struct z_erofs_decompressor { + int (*config)(struct super_block *, struct erofs_super_block *, void *, int); + int (*decompress)(struct z_erofs_decompress_req *, struct page **); + int (*init)(void); + void (*exit)(void); + char *name; +}; + +struct z_erofs_stream_dctx { + struct z_erofs_decompress_req *rq; + unsigned int inpages; + unsigned int outpages; + int no; + int ni; + unsigned int avail_out; + unsigned int inbuf_pos; + unsigned int inbuf_sz; + u8 *kin; + u8 *kout; + void *bounce; + bool bounced; +}; + +struct xz_dec_microlzma; + +struct z_erofs_lzma { + struct z_erofs_lzma *next; + struct xz_dec_microlzma *state; + u8 bounce[4096]; +}; + +struct ipc_ids { + int in_use; + short unsigned int seq; + struct rw_semaphore rwsem; + struct idr ipcs_idr; + int max_idx; + int last_idx; + int next_id; + struct rhashtable key_ht; +}; + +struct ipc_namespace { + struct ipc_ids ids[3]; + int sem_ctls[4]; + int used_sems; + unsigned int msg_ctlmax; + unsigned int msg_ctlmnb; + unsigned int msg_ctlmni; + struct percpu_counter percpu_msg_bytes; + struct percpu_counter percpu_msg_hdrs; + size_t shm_ctlmax; + size_t shm_ctlall; + long unsigned int shm_tot; + int shm_ctlmni; + int shm_rmid_forced; + struct notifier_block ipcns_nb; + struct vfsmount *mq_mnt; + unsigned int mq_queues_count; + unsigned int mq_queues_max; + unsigned int mq_msg_max; + unsigned int mq_msgsize_max; + unsigned int mq_msg_default; + unsigned int mq_msgsize_default; + struct ctl_table_set mq_set; + struct ctl_table_header *mq_sysctls; + struct ctl_table_set ipc_set; + struct ctl_table_header *ipc_sysctls; + struct user_namespace *user_ns; + struct ucounts *ucounts; + struct llist_node mnt_llist; + struct ns_common ns; +}; + +enum key_need_perm { + KEY_NEED_UNSPECIFIED = 0, + KEY_NEED_VIEW = 1, + KEY_NEED_READ = 2, + KEY_NEED_WRITE = 3, + KEY_NEED_SEARCH = 4, + KEY_NEED_LINK = 5, + KEY_NEED_SETATTR = 6, + KEY_NEED_UNLINK = 7, + KEY_SYSADMIN_OVERRIDE = 8, + KEY_AUTHTOKEN_OVERRIDE = 9, + KEY_DEFER_PERM_CHECK = 10, +}; + +enum key_lookup_flag { + KEY_LOOKUP_CREATE = 1, + KEY_LOOKUP_PARTIAL = 2, + KEY_LOOKUP_ALL = 3, +}; + +struct __key_reference_with_attributes; + +typedef struct __key_reference_with_attributes *key_ref_t; + +enum key_state { + KEY_IS_UNINSTANTIATED = 0, + KEY_IS_POSITIVE = 1, +}; + +struct key_user { + struct rb_node node; + struct mutex cons_lock; + spinlock_t lock; + refcount_t usage; + atomic_t nkeys; + atomic_t nikeys; + kuid_t uid; + int qnkeys; + int qnbytes; +}; + +struct keyctl_dh_params { + union { + __s32 private; + __s32 priv; + }; + __s32 prime; + __s32 base; +}; + +struct keyctl_kdf_params { + char *hashname; + char *otherinfo; + __u32 otherinfolen; + __u32 __spare[8]; +}; + +struct keyctl_pkey_query { + __u32 supported_ops; + __u32 key_size; + __u16 max_data_size; + __u16 max_sig_size; + __u16 max_enc_size; + __u16 max_dec_size; + __u32 __spare[10]; +}; + +struct keyctl_pkey_params { + __s32 key_id; + __u32 in_len; + union { + __u32 out_len; + __u32 in2_len; + }; + __u32 __spare[7]; +}; + +struct request_key_auth { + struct callback_head rcu; + struct key *target_key; + struct key *dest_keyring; + const struct cred *cred; + void *callout_info; + size_t callout_len; + pid_t pid; + char op[8]; +}; + +enum key_notification_subtype { + NOTIFY_KEY_INSTANTIATED = 0, + NOTIFY_KEY_UPDATED = 1, + NOTIFY_KEY_LINKED = 2, + NOTIFY_KEY_UNLINKED = 3, + NOTIFY_KEY_CLEARED = 4, + NOTIFY_KEY_REVOKED = 5, + NOTIFY_KEY_INVALIDATED = 6, + NOTIFY_KEY_SETATTR = 7, +}; + +struct aead_instance { + void (*free)(struct aead_instance *); + union { + struct { + char head[64]; + struct crypto_instance base; + } s; + struct aead_alg alg; + }; +}; + +struct crypto_aead_spawn { + struct crypto_spawn base; +}; + +struct crypto_sync_skcipher; + +struct aead_geniv_ctx { + spinlock_t lock; + struct crypto_aead *child; + struct crypto_sync_skcipher *sknull; + u8 salt[0]; +}; + +struct crypto_rng; + +struct rng_alg { + int (*generate)(struct crypto_rng *, const u8 *, unsigned int, u8 *, unsigned int); + int (*seed)(struct crypto_rng *, const u8 *, unsigned int); + void (*set_ent)(struct crypto_rng *, const u8 *, unsigned int); + unsigned int seedsize; + struct crypto_alg base; +}; + +struct crypto_rng { + struct crypto_tfm base; +}; + +struct kpp_request { + struct crypto_async_request base; + struct scatterlist *src; + struct scatterlist *dst; + unsigned int src_len; + unsigned int dst_len; + void *__ctx[0]; +}; + +struct crypto_kpp { + unsigned int reqsize; + struct crypto_tfm base; +}; + +struct kpp_alg { + int (*set_secret)(struct crypto_kpp *, const void *, unsigned int); + int (*generate_public_key)(struct kpp_request *); + int (*compute_shared_secret)(struct kpp_request *); + unsigned int (*max_size)(struct crypto_kpp *); + int (*init)(struct crypto_kpp *); + void (*exit)(struct crypto_kpp *); + struct crypto_alg base; +}; + +struct dh { + const void *key; + const void *p; + const void *g; + unsigned int key_size; + unsigned int p_size; + unsigned int g_size; +}; + +typedef long unsigned int mpi_limb_t; + +struct gcry_mpi { + int alloced; + int nlimbs; + int nbits; + int sign; + unsigned int flags; + mpi_limb_t *d; +}; + +typedef struct gcry_mpi *MPI; + +struct dh_ctx { + MPI p; + MPI g; + MPI xa; +}; + +struct md5_state { + u32 hash[4]; + u32 block[16]; + u64 byte_count; +}; + +struct wp512_ctx { + u8 bitLength[32]; + u8 buffer[64]; + int bufferBits; + int bufferPos; + u64 hash[8]; +}; + +struct crypto_cipher { + struct crypto_tfm base; +}; + +struct crypto_cipher_spawn { + struct crypto_spawn base; +}; + +struct skcipher_request { + unsigned int cryptlen; + u8 *iv; + struct scatterlist *src; + struct scatterlist *dst; + struct crypto_async_request base; + void *__ctx[0]; +}; + +struct crypto_skcipher { + unsigned int reqsize; + struct crypto_tfm base; +}; + +struct skcipher_alg_common { + unsigned int min_keysize; + unsigned int max_keysize; + unsigned int ivsize; + unsigned int chunksize; + unsigned int statesize; + struct crypto_alg base; +}; + +struct skcipher_alg { + int (*setkey)(struct crypto_skcipher *, const u8 *, unsigned int); + int (*encrypt)(struct skcipher_request *); + int (*decrypt)(struct skcipher_request *); + int (*export)(struct skcipher_request *, void *); + int (*import)(struct skcipher_request *, const void *); + int (*init)(struct crypto_skcipher *); + void (*exit)(struct crypto_skcipher *); + unsigned int walksize; + union { + struct { + unsigned int min_keysize; + unsigned int max_keysize; + unsigned int ivsize; + unsigned int chunksize; + unsigned int statesize; + struct crypto_alg base; + }; + struct skcipher_alg_common co; + }; +}; + +struct skcipher_instance { + void (*free)(struct skcipher_instance *); + union { + struct { + char head[88]; + struct crypto_instance base; + } s; + struct skcipher_alg alg; + }; +}; + +struct crypto_skcipher_spawn { + struct crypto_spawn base; +}; + +struct skcipher_ctx_simple { + struct crypto_cipher *cipher; +}; + +struct crypto_rfc3686_ctx { + struct crypto_skcipher *child; + u8 nonce[4]; +}; + +struct crypto_rfc3686_req_ctx { + u8 iv[16]; + struct skcipher_request subreq; +}; + +struct crypto_lskcipher { + struct crypto_tfm base; +}; + +struct lskcipher_alg { + int (*setkey)(struct crypto_lskcipher *, const u8 *, unsigned int); + int (*encrypt)(struct crypto_lskcipher *, const u8 *, u8 *, unsigned int, u8 *, u32); + int (*decrypt)(struct crypto_lskcipher *, const u8 *, u8 *, unsigned int, u8 *, u32); + int (*init)(struct crypto_lskcipher *); + void (*exit)(struct crypto_lskcipher *); + struct skcipher_alg_common co; +}; + +struct anubis_ctx { + int key_len; + int R; + u32 E[76]; + u32 D[76]; +}; + +struct crypto_wait { + struct completion completion; + int err; +}; + +struct ahash_request { + struct crypto_async_request base; + unsigned int nbytes; + struct scatterlist *src; + u8 *result; + void *priv; + void *__ctx[0]; +}; + +struct crypto_ahash { + bool using_shash; + unsigned int statesize; + unsigned int reqsize; + struct crypto_tfm base; +}; + +struct sg_table { + struct scatterlist *sgl; + unsigned int nents; + unsigned int orig_nents; +}; + +typedef unsigned int iov_iter_extraction_t; + +enum iter_type { + ITER_UBUF = 0, + ITER_IOVEC = 1, + ITER_BVEC = 2, + ITER_KVEC = 3, + ITER_FOLIOQ = 4, + ITER_XARRAY = 5, + ITER_DISCARD = 6, +}; + +struct af_alg_type; + +struct alg_sock { + struct sock sk; + struct sock *parent; + atomic_t refcnt; + atomic_t nokey_refcnt; + const struct af_alg_type *type; + void *private; +}; + +struct af_alg_type { + void * (*bind)(const char *, u32, u32); + void (*release)(void *); + int (*setkey)(void *, const u8 *, unsigned int); + int (*setentropy)(void *, sockptr_t, unsigned int); + int (*accept)(void *, struct sock *); + int (*accept_nokey)(void *, struct sock *); + int (*setauthsize)(void *, unsigned int); + struct proto_ops *ops; + struct proto_ops *ops_nokey; + struct module *owner; + char name[14]; +}; + +struct af_alg_sgl { + struct sg_table sgt; + struct scatterlist sgl[17]; + bool need_unpin; +}; + +struct hash_ctx { + struct af_alg_sgl sgl; + u8 *result; + struct crypto_wait wait; + unsigned int len; + bool more; + struct ahash_request req; +}; + +struct io_ring_ctx; + +struct io_wq; + +struct io_uring_task { + int cached_refs; + const struct io_ring_ctx *last; + struct io_wq *io_wq; + struct file *registered_rings[16]; + struct xarray xa; + struct wait_queue_head wait; + atomic_t in_cancel; + atomic_t inflight_tracked; + struct percpu_counter inflight; + long: 64; + long: 64; + long: 64; + long: 64; + struct { + struct llist_head task_list; + struct callback_head task_work; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + }; +}; + +enum tk_offsets { + TK_OFFS_REAL = 0, + TK_OFFS_BOOT = 1, + TK_OFFS_TAI = 2, + TK_OFFS_MAX = 3, +}; + +struct io_cq { + struct request_queue *q; + struct io_context *ioc; + union { + struct list_head q_node; + struct kmem_cache *__rcu_icq_cache; + }; + union { + struct hlist_node ioc_node; + struct callback_head __rcu_head; + }; + unsigned int flags; +}; + +struct io_uring_sqe; + +struct io_uring_cmd { + struct file *file; + const struct io_uring_sqe *sqe; + void (*task_work_cb)(struct io_uring_cmd *, unsigned int); + u32 cmd_op; + u32 flags; + u8 pdu[32]; +}; + +enum req_flag_bits { + __REQ_FAILFAST_DEV = 8, + __REQ_FAILFAST_TRANSPORT = 9, + __REQ_FAILFAST_DRIVER = 10, + __REQ_SYNC = 11, + __REQ_META = 12, + __REQ_PRIO = 13, + __REQ_NOMERGE = 14, + __REQ_IDLE = 15, + __REQ_INTEGRITY = 16, + __REQ_FUA = 17, + __REQ_PREFLUSH = 18, + __REQ_RAHEAD = 19, + __REQ_BACKGROUND = 20, + __REQ_NOWAIT = 21, + __REQ_POLLED = 22, + __REQ_ALLOC_CACHE = 23, + __REQ_SWAP = 24, + __REQ_DRV = 25, + __REQ_FS_PRIVATE = 26, + __REQ_ATOMIC = 27, + __REQ_NOUNMAP = 28, + __REQ_NR_BITS = 29, +}; + +struct sbitmap_word { + long unsigned int word; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long unsigned int cleared; + raw_spinlock_t swap_lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct sbitmap { + unsigned int depth; + unsigned int shift; + unsigned int map_nr; + bool round_robin; + struct sbitmap_word *map; + unsigned int *alloc_hint; +}; + +struct sbq_wait_state { + wait_queue_head_t wait; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct sbitmap_queue { + struct sbitmap sb; + unsigned int wake_batch; + atomic_t wake_index; + struct sbq_wait_state *ws; + atomic_t ws_active; + unsigned int min_shallow_depth; + atomic_t completion_cnt; + atomic_t wakeup_cnt; +}; + +typedef __u32 req_flags_t; + +enum mq_rq_state { + MQ_RQ_IDLE = 0, + MQ_RQ_IN_FLIGHT = 1, + MQ_RQ_COMPLETE = 2, +}; + +enum rq_end_io_ret { + RQ_END_IO_NONE = 0, + RQ_END_IO_FREE = 1, +}; + +typedef enum rq_end_io_ret rq_end_io_fn(struct request *, blk_status_t); + +struct request { + struct request_queue *q; + struct blk_mq_ctx *mq_ctx; + struct blk_mq_hw_ctx *mq_hctx; + blk_opf_t cmd_flags; + req_flags_t rq_flags; + int tag; + int internal_tag; + unsigned int timeout; + unsigned int __data_len; + sector_t __sector; + struct bio *bio; + struct bio *biotail; + union { + struct list_head queuelist; + struct request *rq_next; + }; + struct block_device *part; + u64 start_time_ns; + u64 io_start_time_ns; + short unsigned int stats_sectors; + short unsigned int nr_phys_segments; + short unsigned int nr_integrity_segments; + enum mq_rq_state state; + atomic_t ref; + long unsigned int deadline; + union { + struct hlist_node hash; + struct llist_node ipi_list; + }; + union { + struct rb_node rb_node; + struct bio_vec special_vec; + }; + struct { + struct io_cq *icq; + void *priv[2]; + } elv; + struct { + unsigned int seq; + rq_end_io_fn *saved_end_io; + } flush; + u64 fifo_time; + rq_end_io_fn *end_io; + void *end_io_data; +}; + +struct blk_mq_tags { + unsigned int nr_tags; + unsigned int nr_reserved_tags; + unsigned int active_queues; + struct sbitmap_queue bitmap_tags; + struct sbitmap_queue breserved_tags; + struct request **rqs; + struct request **static_rqs; + struct list_head page_list; + spinlock_t lock; +}; + +struct blk_flush_queue { + spinlock_t mq_flush_lock; + unsigned int flush_pending_idx: 1; + unsigned int flush_running_idx: 1; + blk_status_t rq_status; + long unsigned int flush_pending_since; + struct list_head flush_queue[2]; + long unsigned int flush_data_in_flight; + struct request *flush_rq; +}; + +struct blk_mq_queue_map { + unsigned int *mq_map; + unsigned int nr_queues; + unsigned int queue_offset; +}; + +struct blk_mq_tag_set { + const struct blk_mq_ops *ops; + struct blk_mq_queue_map map[3]; + unsigned int nr_maps; + unsigned int nr_hw_queues; + unsigned int queue_depth; + unsigned int reserved_tags; + unsigned int cmd_size; + int numa_node; + unsigned int timeout; + unsigned int flags; + void *driver_data; + struct blk_mq_tags **tags; + struct blk_mq_tags *shared_tags; + struct mutex tag_list_lock; + struct list_head tag_list; + struct srcu_struct *srcu; +}; + +struct hd_geometry { + unsigned char heads; + unsigned char sectors; + short unsigned int cylinders; + long unsigned int start; +}; + +struct blkpg_ioctl_arg { + int op; + int flags; + int datalen; + void *data; +}; + +struct blkpg_partition { + long long int start; + long long int length; + int pno; + char devname[64]; + char volname[64]; +}; + +struct blk_mq_hw_ctx { + struct { + spinlock_t lock; + struct list_head dispatch; + long unsigned int state; + long: 64; + long: 64; + long: 64; + long: 64; + }; + struct delayed_work run_work; + cpumask_var_t cpumask; + int next_cpu; + int next_cpu_batch; + long unsigned int flags; + void *sched_data; + struct request_queue *queue; + struct blk_flush_queue *fq; + void *driver_data; + struct sbitmap ctx_map; + struct blk_mq_ctx *dispatch_from; + unsigned int dispatch_busy; + short unsigned int type; + short unsigned int nr_ctx; + struct blk_mq_ctx **ctxs; + spinlock_t dispatch_wait_lock; + wait_queue_entry_t dispatch_wait; + atomic_t wait_index; + struct blk_mq_tags *tags; + struct blk_mq_tags *sched_tags; + unsigned int numa_node; + unsigned int queue_num; + atomic_t nr_active; + struct hlist_node cpuhp_online; + struct hlist_node cpuhp_dead; + struct kobject kobj; + struct dentry *debugfs_dir; + struct dentry *sched_debugfs_dir; + struct list_head hctx_list; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct blk_mq_queue_data { + struct request *rq; + bool last; +}; + +struct pr_reservation { + __u64 key; + __u32 type; + __u32 flags; +}; + +struct pr_registration { + __u64 old_key; + __u64 new_key; + __u32 flags; + __u32 __pad; +}; + +struct pr_preempt { + __u64 old_key; + __u64 new_key; + __u32 type; + __u32 flags; +}; + +struct pr_clear { + __u64 key; + __u32 flags; + __u32 __pad; +}; + +struct io_uring_sqe { + __u8 opcode; + __u8 flags; + __u16 ioprio; + __s32 fd; + union { + __u64 off; + __u64 addr2; + struct { + __u32 cmd_op; + __u32 __pad1; + }; + }; + union { + __u64 addr; + __u64 splice_off_in; + struct { + __u32 level; + __u32 optname; + }; + }; + __u32 len; + union { + __u32 rw_flags; + __u32 fsync_flags; + __u16 poll_events; + __u32 poll32_events; + __u32 sync_range_flags; + __u32 msg_flags; + __u32 timeout_flags; + __u32 accept_flags; + __u32 cancel_flags; + __u32 open_flags; + __u32 statx_flags; + __u32 fadvise_advice; + __u32 splice_flags; + __u32 rename_flags; + __u32 unlink_flags; + __u32 hardlink_flags; + __u32 xattr_flags; + __u32 msg_ring_flags; + __u32 uring_cmd_flags; + __u32 waitid_flags; + __u32 futex_flags; + __u32 install_fd_flags; + __u32 nop_flags; + }; + __u64 user_data; + union { + __u16 buf_index; + __u16 buf_group; + }; + __u16 personality; + union { + __s32 splice_fd_in; + __u32 file_index; + __u32 optlen; + struct { + __u16 addr_len; + __u16 __pad3[1]; + }; + }; + union { + struct { + __u64 addr3; + __u64 __pad2[1]; + }; + __u64 optval; + __u8 cmd[0]; + }; +}; + +struct io_uring_cqe { + __u64 user_data; + __s32 res; + __u32 flags; + __u64 big_cqe[0]; +}; + +enum { + IOU_F_TWQ_LAZY_WAKE = 1, +}; + +enum io_uring_cmd_flags { + IO_URING_F_COMPLETE_DEFER = 1, + IO_URING_F_UNLOCKED = 2, + IO_URING_F_MULTISHOT = 4, + IO_URING_F_IOWQ = 8, + IO_URING_F_NONBLOCK = -2147483648, + IO_URING_F_SQE128 = 256, + IO_URING_F_CQE32 = 512, + IO_URING_F_IOPOLL = 1024, + IO_URING_F_CANCEL = 2048, + IO_URING_F_COMPAT = 4096, + IO_URING_F_TASK_DEAD = 8192, +}; + +struct io_wq_work_node { + struct io_wq_work_node *next; +}; + +struct io_wq_work_list { + struct io_wq_work_node *first; + struct io_wq_work_node *last; +}; + +struct io_wq_work { + struct io_wq_work_node list; + atomic_t flags; + int cancel_seq; +}; + +struct io_fixed_file { + long unsigned int file_ptr; +}; + +struct io_file_table { + struct io_fixed_file *files; + long unsigned int *bitmap; + unsigned int alloc_hint; +}; + +struct io_hash_bucket { + spinlock_t lock; + struct hlist_head list; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct io_hash_table { + struct io_hash_bucket *hbs; + unsigned int hash_bits; +}; + +struct io_kiocb; + +struct io_submit_link { + struct io_kiocb *head; + struct io_kiocb *last; +}; + +struct io_submit_state { + struct io_wq_work_node free_list; + struct io_wq_work_list compl_reqs; + struct io_submit_link link; + bool plug_started; + bool need_plug; + bool cq_flush; + short unsigned int submit_nr; + struct blk_plug plug; +}; + +struct io_alloc_cache { + void **entries; + unsigned int nr_cached; + unsigned int max_cached; + size_t elem_size; +}; + +struct io_restriction { + long unsigned int register_op[1]; + long unsigned int sqe_op[1]; + u8 sqe_flags_allowed; + u8 sqe_flags_required; + bool registered; +}; + +struct io_rings; + +struct io_rsrc_node; + +struct io_mapped_ubuf; + +struct io_ev_fd; + +struct io_sq_data; + +struct io_rsrc_data; + +struct io_wq_hash; + +struct io_ring_ctx { + struct { + unsigned int flags; + unsigned int drain_next: 1; + unsigned int restricted: 1; + unsigned int off_timeout_used: 1; + unsigned int drain_active: 1; + unsigned int has_evfd: 1; + unsigned int task_complete: 1; + unsigned int lockless_cq: 1; + unsigned int syscall_iopoll: 1; + unsigned int poll_activated: 1; + unsigned int drain_disabled: 1; + unsigned int compat: 1; + unsigned int iowq_limits_set: 1; + struct task_struct *submitter_task; + struct io_rings *rings; + struct percpu_ref refs; + clockid_t clockid; + enum tk_offsets clock_offset; + enum task_work_notify_mode notify_method; + unsigned int sq_thread_idle; + long: 64; + }; + struct { + struct mutex uring_lock; + u32 *sq_array; + struct io_uring_sqe *sq_sqes; + unsigned int cached_sq_head; + unsigned int sq_entries; + struct io_rsrc_node *rsrc_node; + atomic_t cancel_seq; + bool poll_multi_queue; + struct io_wq_work_list iopoll_list; + struct io_file_table file_table; + struct io_mapped_ubuf **user_bufs; + unsigned int nr_user_files; + unsigned int nr_user_bufs; + struct io_submit_state submit_state; + struct xarray io_bl_xa; + struct io_hash_table cancel_table_locked; + struct io_alloc_cache apoll_cache; + struct io_alloc_cache netmsg_cache; + struct io_alloc_cache rw_cache; + struct io_alloc_cache uring_cache; + struct hlist_head cancelable_uring_cmd; + long: 64; + }; + struct { + struct io_uring_cqe *cqe_cached; + struct io_uring_cqe *cqe_sentinel; + unsigned int cached_cq_tail; + unsigned int cq_entries; + struct io_ev_fd *io_ev_fd; + unsigned int cq_extra; + long: 64; + long: 64; + long: 64; + }; + struct { + struct llist_head work_llist; + long unsigned int check_cq; + atomic_t cq_wait_nr; + atomic_t cq_timeouts; + struct wait_queue_head cq_wait; + long: 64; + long: 64; + }; + struct { + spinlock_t timeout_lock; + struct list_head timeout_list; + struct list_head ltimeout_list; + unsigned int cq_last_tm_flush; + long: 64; + long: 64; + }; + spinlock_t completion_lock; + struct list_head io_buffers_comp; + struct list_head cq_overflow_list; + struct io_hash_table cancel_table; + struct hlist_head waitid_list; + struct hlist_head futex_list; + struct io_alloc_cache futex_cache; + const struct cred *sq_creds; + struct io_sq_data *sq_data; + struct wait_queue_head sqo_sq_wait; + struct list_head sqd_list; + unsigned int file_alloc_start; + unsigned int file_alloc_end; + struct list_head io_buffers_cache; + struct wait_queue_head poll_wq; + struct io_restriction restrictions; + struct io_rsrc_data *file_data; + struct io_rsrc_data *buf_data; + struct list_head rsrc_ref_list; + struct io_alloc_cache rsrc_node_cache; + struct wait_queue_head rsrc_quiesce_wq; + unsigned int rsrc_quiesce; + u32 pers_next; + struct xarray personalities; + struct io_wq_hash *hash_map; + struct user_struct *user; + struct mm_struct *mm_account; + struct llist_head fallback_llist; + struct delayed_work fallback_work; + struct work_struct exit_work; + struct list_head tctx_list; + struct completion ref_comp; + u32 iowq_limits[2]; + struct callback_head poll_wq_task_work; + struct list_head defer_list; + struct list_head napi_list; + spinlock_t napi_lock; + ktime_t napi_busy_poll_dt; + bool napi_prefer_busy_poll; + bool napi_enabled; + struct hlist_head napi_ht[16]; + unsigned int evfd_last_cq_tail; + short unsigned int n_ring_pages; + short unsigned int n_sqe_pages; + struct page **ring_pages; + struct page **sqe_pages; + long: 64; +}; + +struct io_uring { + u32 head; + u32 tail; +}; + +struct io_rings { + struct io_uring sq; + struct io_uring cq; + u32 sq_ring_mask; + u32 cq_ring_mask; + u32 sq_ring_entries; + u32 cq_ring_entries; + u32 sq_dropped; + atomic_t sq_flags; + u32 cq_flags; + u32 cq_overflow; + long: 64; + long: 64; + struct io_uring_cqe cqes[0]; +}; + +struct io_cmd_data { + struct file *file; + __u8 data[56]; +}; + +typedef u64 io_req_flags_t; + +struct io_cqe { + __u64 user_data; + __s32 res; + union { + __u32 flags; + int fd; + }; +}; + +struct io_tw_state; + +typedef void (*io_req_tw_func_t)(struct io_kiocb *, struct io_tw_state *); + +struct io_task_work { + struct llist_node node; + io_req_tw_func_t func; +}; + +struct io_buffer; + +struct io_buffer_list; + +struct async_poll; + +struct io_kiocb { + union { + struct file *file; + struct io_cmd_data cmd; + }; + u8 opcode; + u8 iopoll_completed; + u16 buf_index; + unsigned int nr_tw; + io_req_flags_t flags; + struct io_cqe cqe; + struct io_ring_ctx *ctx; + struct task_struct *task; + union { + struct io_mapped_ubuf *imu; + struct io_buffer *kbuf; + struct io_buffer_list *buf_list; + }; + union { + struct io_wq_work_node comp_list; + __poll_t apoll_events; + }; + struct io_rsrc_node *rsrc_node; + atomic_t refs; + bool cancel_seq_set; + struct io_task_work io_task_work; + union { + struct hlist_node hash_node; + struct callback_head callback_head; + }; + struct async_poll *apoll; + void *async_data; + atomic_t poll_refs; + struct io_kiocb *link; + const struct cred *creds; + struct io_wq_work work; + struct { + u64 extra1; + u64 extra2; + } big_cqe; +}; + +struct io_tw_state {}; + +struct blk_iou_cmd { + int res; + bool nowait; +}; + +struct sg_io_v4 { + __s32 guard; + __u32 protocol; + __u32 subprotocol; + __u32 request_len; + __u64 request; + __u64 request_tag; + __u32 request_attr; + __u32 request_priority; + __u32 request_extra; + __u32 max_response_len; + __u64 response; + __u32 dout_iovec_count; + __u32 dout_xfer_len; + __u32 din_iovec_count; + __u32 din_xfer_len; + __u64 dout_xferp; + __u64 din_xferp; + __u32 timeout; + __u32 flags; + __u64 usr_ptr; + __u32 spare_in; + __u32 driver_status; + __u32 transport_status; + __u32 device_status; + __u32 retry_delay; + __u32 info; + __u32 duration; + __u32 response_len; + __s32 din_resid; + __s32 dout_resid; + __u64 generated_tag; + __u32 spare_out; + __u32 padding; +}; + +typedef int bsg_sg_io_fn(struct request_queue *, struct sg_io_v4 *, bool, unsigned int); + +typedef __u32 blk_mq_req_flags_t; + +enum { + QUEUE_FLAG_DYING = 0, + QUEUE_FLAG_NOMERGES = 1, + QUEUE_FLAG_SAME_COMP = 2, + QUEUE_FLAG_FAIL_IO = 3, + QUEUE_FLAG_NOXMERGES = 4, + QUEUE_FLAG_SAME_FORCE = 5, + QUEUE_FLAG_INIT_DONE = 6, + QUEUE_FLAG_STATS = 7, + QUEUE_FLAG_REGISTERED = 8, + QUEUE_FLAG_QUIESCED = 9, + QUEUE_FLAG_RQ_ALLOC_TIME = 10, + QUEUE_FLAG_HCTX_ACTIVE = 11, + QUEUE_FLAG_SQ_SCHED = 12, + QUEUE_FLAG_MAX = 13, +}; + +enum hctx_type { + HCTX_TYPE_DEFAULT = 0, + HCTX_TYPE_READ = 1, + HCTX_TYPE_POLL = 2, + HCTX_MAX_TYPES = 3, +}; + +enum { + BLK_MQ_F_SHOULD_MERGE = 1, + BLK_MQ_F_TAG_QUEUE_SHARED = 2, + BLK_MQ_F_STACKING = 4, + BLK_MQ_F_TAG_HCTX_SHARED = 8, + BLK_MQ_F_BLOCKING = 16, + BLK_MQ_F_NO_SCHED = 32, + BLK_MQ_F_NO_SCHED_BY_DEFAULT = 64, + BLK_MQ_F_ALLOC_POLICY_START_BIT = 7, + BLK_MQ_F_ALLOC_POLICY_BITS = 1, +}; + +struct rq_map_data { + struct page **pages; + long unsigned int offset; + short unsigned int page_order; + short unsigned int nr_entries; + bool null_mapped; + bool from_user; +}; + +struct bsg_job; + +typedef int bsg_job_fn(struct bsg_job *); + +struct bsg_buffer { + unsigned int payload_len; + int sg_cnt; + struct scatterlist *sg_list; +}; + +struct bsg_job { + struct device *dev; + struct kref kref; + unsigned int timeout; + void *request; + void *reply; + unsigned int request_len; + unsigned int reply_len; + struct bsg_buffer request_payload; + struct bsg_buffer reply_payload; + int result; + unsigned int reply_payload_rcv_len; + struct request *bidi_rq; + struct bio *bidi_bio; + void *dd_data; +}; + +typedef enum blk_eh_timer_return bsg_timeout_fn(struct request *); + +enum scsi_device_event { + SDEV_EVT_MEDIA_CHANGE = 1, + SDEV_EVT_INQUIRY_CHANGE_REPORTED = 2, + SDEV_EVT_CAPACITY_CHANGE_REPORTED = 3, + SDEV_EVT_SOFT_THRESHOLD_REACHED_REPORTED = 4, + SDEV_EVT_MODE_PARAMETER_CHANGE_REPORTED = 5, + SDEV_EVT_LUN_CHANGE_REPORTED = 6, + SDEV_EVT_ALUA_STATE_CHANGE_REPORTED = 7, + SDEV_EVT_POWER_ON_RESET_OCCURRED = 8, + SDEV_EVT_FIRST = 1, + SDEV_EVT_LAST = 8, + SDEV_EVT_MAXBITS = 9, +}; + +struct bsg_device; + +struct bsg_set { + struct blk_mq_tag_set tag_set; + struct bsg_device *bd; + bsg_job_fn *job_fn; + bsg_timeout_fn *timeout_fn; +}; + +enum io_uring_op { + IORING_OP_NOP = 0, + IORING_OP_READV = 1, + IORING_OP_WRITEV = 2, + IORING_OP_FSYNC = 3, + IORING_OP_READ_FIXED = 4, + IORING_OP_WRITE_FIXED = 5, + IORING_OP_POLL_ADD = 6, + IORING_OP_POLL_REMOVE = 7, + IORING_OP_SYNC_FILE_RANGE = 8, + IORING_OP_SENDMSG = 9, + IORING_OP_RECVMSG = 10, + IORING_OP_TIMEOUT = 11, + IORING_OP_TIMEOUT_REMOVE = 12, + IORING_OP_ACCEPT = 13, + IORING_OP_ASYNC_CANCEL = 14, + IORING_OP_LINK_TIMEOUT = 15, + IORING_OP_CONNECT = 16, + IORING_OP_FALLOCATE = 17, + IORING_OP_OPENAT = 18, + IORING_OP_CLOSE = 19, + IORING_OP_FILES_UPDATE = 20, + IORING_OP_STATX = 21, + IORING_OP_READ = 22, + IORING_OP_WRITE = 23, + IORING_OP_FADVISE = 24, + IORING_OP_MADVISE = 25, + IORING_OP_SEND = 26, + IORING_OP_RECV = 27, + IORING_OP_OPENAT2 = 28, + IORING_OP_EPOLL_CTL = 29, + IORING_OP_SPLICE = 30, + IORING_OP_PROVIDE_BUFFERS = 31, + IORING_OP_REMOVE_BUFFERS = 32, + IORING_OP_TEE = 33, + IORING_OP_SHUTDOWN = 34, + IORING_OP_RENAMEAT = 35, + IORING_OP_UNLINKAT = 36, + IORING_OP_MKDIRAT = 37, + IORING_OP_SYMLINKAT = 38, + IORING_OP_LINKAT = 39, + IORING_OP_MSG_RING = 40, + IORING_OP_FSETXATTR = 41, + IORING_OP_SETXATTR = 42, + IORING_OP_FGETXATTR = 43, + IORING_OP_GETXATTR = 44, + IORING_OP_SOCKET = 45, + IORING_OP_URING_CMD = 46, + IORING_OP_SEND_ZC = 47, + IORING_OP_SENDMSG_ZC = 48, + IORING_OP_READ_MULTISHOT = 49, + IORING_OP_WAITID = 50, + IORING_OP_FUTEX_WAIT = 51, + IORING_OP_FUTEX_WAKE = 52, + IORING_OP_FUTEX_WAITV = 53, + IORING_OP_FIXED_FD_INSTALL = 54, + IORING_OP_FTRUNCATE = 55, + IORING_OP_BIND = 56, + IORING_OP_LISTEN = 57, + IORING_OP_LAST = 58, +}; + +struct io_rsrc_put { + u64 tag; + union { + void *rsrc; + struct file *file; + struct io_mapped_ubuf *buf; + }; +}; + +struct io_rsrc_node { + struct io_ring_ctx *ctx; + int refs; + bool empty; + u16 type; + struct list_head node; + struct io_rsrc_put item; +}; + +struct io_mapped_ubuf { + u64 ubuf; + unsigned int len; + unsigned int nr_bvecs; + unsigned int folio_shift; + refcount_t refs; + long unsigned int acct_pages; + struct bio_vec bvec[0]; +}; + +struct io_rsrc_data { + struct io_ring_ctx *ctx; + u64 **tags; + unsigned int nr; + u16 rsrc_type; + bool quiesce; +}; + +struct io_wq_hash { + refcount_t refs; + long unsigned int map; + struct wait_queue_head wait; +}; + +typedef long unsigned int netmem_ref; + +struct skb_frag { + netmem_ref netmem; + unsigned int len; + unsigned int offset; +}; + +typedef struct skb_frag skb_frag_t; + +enum { + SKBFL_ZEROCOPY_ENABLE = 1, + SKBFL_SHARED_FRAG = 2, + SKBFL_PURE_ZEROCOPY = 4, + SKBFL_DONT_ORPHAN = 8, + SKBFL_MANAGED_FRAG_REFS = 16, +}; + +struct xsk_tx_metadata_compl { + __u64 *tx_timestamp; +}; + +struct skb_shared_info { + __u8 flags; + __u8 meta_len; + __u8 nr_frags; + __u8 tx_flags; + short unsigned int gso_size; + short unsigned int gso_segs; + struct sk_buff *frag_list; + union { + struct skb_shared_hwtstamps hwtstamps; + struct xsk_tx_metadata_compl xsk_meta; + }; + unsigned int gso_type; + u32 tskey; + atomic_t dataref; + unsigned int xdp_frags_size; + void *destructor_arg; + skb_frag_t frags[17]; +}; + +struct io_notif_data { + struct file *file; + struct ubuf_info uarg; + struct io_notif_data *next; + struct io_notif_data *head; + unsigned int account_pages; + bool zc_report; + bool zc_used; + bool zc_copied; +}; + +struct ksignal { + struct k_sigaction ka; + kernel_siginfo_t info; + int sig; +}; + +enum rseq_cs_flags_bit { + RSEQ_CS_FLAG_NO_RESTART_ON_PREEMPT_BIT = 0, + RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL_BIT = 1, + RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE_BIT = 2, +}; + +enum io_uring_sqe_flags_bit { + IOSQE_FIXED_FILE_BIT = 0, + IOSQE_IO_DRAIN_BIT = 1, + IOSQE_IO_LINK_BIT = 2, + IOSQE_IO_HARDLINK_BIT = 3, + IOSQE_ASYNC_BIT = 4, + IOSQE_BUFFER_SELECT_BIT = 5, + IOSQE_CQE_SKIP_SUCCESS_BIT = 6, +}; + +enum io_uring_register_op { + IORING_REGISTER_BUFFERS = 0, + IORING_UNREGISTER_BUFFERS = 1, + IORING_REGISTER_FILES = 2, + IORING_UNREGISTER_FILES = 3, + IORING_REGISTER_EVENTFD = 4, + IORING_UNREGISTER_EVENTFD = 5, + IORING_REGISTER_FILES_UPDATE = 6, + IORING_REGISTER_EVENTFD_ASYNC = 7, + IORING_REGISTER_PROBE = 8, + IORING_REGISTER_PERSONALITY = 9, + IORING_UNREGISTER_PERSONALITY = 10, + IORING_REGISTER_RESTRICTIONS = 11, + IORING_REGISTER_ENABLE_RINGS = 12, + IORING_REGISTER_FILES2 = 13, + IORING_REGISTER_FILES_UPDATE2 = 14, + IORING_REGISTER_BUFFERS2 = 15, + IORING_REGISTER_BUFFERS_UPDATE = 16, + IORING_REGISTER_IOWQ_AFF = 17, + IORING_UNREGISTER_IOWQ_AFF = 18, + IORING_REGISTER_IOWQ_MAX_WORKERS = 19, + IORING_REGISTER_RING_FDS = 20, + IORING_UNREGISTER_RING_FDS = 21, + IORING_REGISTER_PBUF_RING = 22, + IORING_UNREGISTER_PBUF_RING = 23, + IORING_REGISTER_SYNC_CANCEL = 24, + IORING_REGISTER_FILE_ALLOC_RANGE = 25, + IORING_REGISTER_PBUF_STATUS = 26, + IORING_REGISTER_NAPI = 27, + IORING_UNREGISTER_NAPI = 28, + IORING_REGISTER_CLOCK = 29, + IORING_REGISTER_CLONE_BUFFERS = 30, + IORING_REGISTER_LAST = 31, + IORING_REGISTER_USE_REGISTERED_RING = 2147483648, +}; + +enum io_wq_type { + IO_WQ_BOUND = 0, + IO_WQ_UNBOUND = 1, +}; + +typedef struct io_wq_work *free_work_fn(struct io_wq_work *); + +typedef void io_wq_work_fn(struct io_wq_work *); + +struct io_wq_acct { + unsigned int nr_workers; + unsigned int max_workers; + int index; + atomic_t nr_running; + raw_spinlock_t lock; + struct io_wq_work_list work_list; + long unsigned int flags; +}; + +struct io_wq { + long unsigned int state; + free_work_fn *free_work; + io_wq_work_fn *do_work; + struct io_wq_hash *hash; + atomic_t worker_refs; + struct completion worker_done; + struct hlist_node cpuhp_node; + struct task_struct *task; + struct io_wq_acct acct[2]; + raw_spinlock_t lock; + struct hlist_nulls_head free_list; + struct list_head all_list; + struct wait_queue_entry wait; + struct io_wq_work *hash_tail[64]; + cpumask_var_t cpu_mask; +}; + +enum { + REQ_F_FIXED_FILE_BIT = 0, + REQ_F_IO_DRAIN_BIT = 1, + REQ_F_LINK_BIT = 2, + REQ_F_HARDLINK_BIT = 3, + REQ_F_FORCE_ASYNC_BIT = 4, + REQ_F_BUFFER_SELECT_BIT = 5, + REQ_F_CQE_SKIP_BIT = 6, + REQ_F_FAIL_BIT = 8, + REQ_F_INFLIGHT_BIT = 9, + REQ_F_CUR_POS_BIT = 10, + REQ_F_NOWAIT_BIT = 11, + REQ_F_LINK_TIMEOUT_BIT = 12, + REQ_F_NEED_CLEANUP_BIT = 13, + REQ_F_POLLED_BIT = 14, + REQ_F_BUFFER_SELECTED_BIT = 15, + REQ_F_BUFFER_RING_BIT = 16, + REQ_F_REISSUE_BIT = 17, + REQ_F_CREDS_BIT = 18, + REQ_F_REFCOUNT_BIT = 19, + REQ_F_ARM_LTIMEOUT_BIT = 20, + REQ_F_ASYNC_DATA_BIT = 21, + REQ_F_SKIP_LINK_CQES_BIT = 22, + REQ_F_SINGLE_POLL_BIT = 23, + REQ_F_DOUBLE_POLL_BIT = 24, + REQ_F_MULTISHOT_BIT = 25, + REQ_F_APOLL_MULTISHOT_BIT = 26, + REQ_F_CLEAR_POLLIN_BIT = 27, + REQ_F_HASH_LOCKED_BIT = 28, + REQ_F_SUPPORT_NOWAIT_BIT = 29, + REQ_F_ISREG_BIT = 30, + REQ_F_POLL_NO_LAZY_BIT = 31, + REQ_F_CAN_POLL_BIT = 32, + REQ_F_BL_EMPTY_BIT = 33, + REQ_F_BL_NO_RECYCLE_BIT = 34, + REQ_F_BUFFERS_COMMIT_BIT = 35, + __REQ_F_LAST_BIT = 36, +}; + +enum { + IO_WQ_WORK_CANCEL = 1, + IO_WQ_WORK_HASHED = 2, + IO_WQ_WORK_UNBOUND = 4, + IO_WQ_WORK_CONCURRENT = 16, + IO_WQ_HASH_SHIFT = 24, +}; + +enum io_wq_cancel { + IO_WQ_CANCEL_OK = 0, + IO_WQ_CANCEL_RUNNING = 1, + IO_WQ_CANCEL_NOTFOUND = 2, +}; + +struct io_wq_data { + struct io_wq_hash *hash; + struct task_struct *task; + io_wq_work_fn *do_work; + free_work_fn *free_work; +}; + +typedef bool work_cancel_fn(struct io_wq_work *, void *); + +enum rseq_event_mask_bits { + RSEQ_EVENT_PREEMPT_BIT = 0, + RSEQ_EVENT_SIGNAL_BIT = 1, + RSEQ_EVENT_MIGRATE_BIT = 2, +}; + +enum { + IO_WORKER_F_UP = 0, + IO_WORKER_F_RUNNING = 1, + IO_WORKER_F_FREE = 2, + IO_WORKER_F_BOUND = 3, +}; + +enum { + IO_WQ_BIT_EXIT = 0, +}; + +enum { + IO_ACCT_STALLED_BIT = 0, +}; + +struct io_worker { + refcount_t ref; + int create_index; + long unsigned int flags; + struct hlist_nulls_node nulls_node; + struct list_head all_list; + struct task_struct *task; + struct io_wq *wq; + struct io_wq_work *cur_work; + raw_spinlock_t lock; + struct completion ref_done; + long unsigned int create_state; + struct callback_head create_work; + int init_retries; + union { + struct callback_head rcu; + struct delayed_work work; + }; +}; + +enum { + IO_WQ_ACCT_BOUND = 0, + IO_WQ_ACCT_UNBOUND = 1, + IO_WQ_ACCT_NR = 2, +}; + +struct io_cb_cancel_data { + work_cancel_fn *fn; + void *data; + int nr_running; + int nr_pending; + bool cancel_all; +}; + +struct online_data { + unsigned int cpu; + bool online; +}; + +typedef void (*dr_release_t)(struct device *, void *); + +enum string_size_units { + STRING_UNITS_10 = 0, + STRING_UNITS_2 = 1, + STRING_UNITS_MASK = 1, + STRING_UNITS_NO_SPACE = 1073741824, + STRING_UNITS_NO_BYTES = 2147483648, +}; + +struct strarray { + char **array; + size_t n; +}; + +typedef mpi_limb_t *mpi_ptr_t; + +typedef int mpi_size_t; + +typedef mpi_limb_t UWtype; + +typedef unsigned int UHWtype; + +struct xxh32_state { + uint32_t total_len_32; + uint32_t large_len; + uint32_t v1; + uint32_t v2; + uint32_t v3; + uint32_t v4; + uint32_t mem32[4]; + uint32_t memsize; +}; + +struct xxh64_state { + uint64_t total_len; + uint64_t v1; + uint64_t v2; + uint64_t v3; + uint64_t v4; + uint64_t mem64[4]; + uint32_t memsize; +}; + +typedef unsigned char Byte; + +typedef unsigned int uInt; + +typedef long unsigned int uLong; + +struct internal_state; + +struct z_stream_s { + const Byte *next_in; + uLong avail_in; + uLong total_in; + Byte *next_out; + uLong avail_out; + uLong total_out; + char *msg; + struct internal_state *state; + void *workspace; + int data_type; + uLong adler; + uLong reserved; +}; + +typedef struct z_stream_s z_stream; + +typedef z_stream *z_streamp; + +typedef unsigned char uch; + +typedef short unsigned int ush; + +typedef long unsigned int ulg; + +struct ct_data_s { + union { + ush freq; + ush code; + } fc; + union { + ush dad; + ush len; + } dl; +}; + +typedef struct ct_data_s ct_data; + +struct static_tree_desc_s { + const ct_data *static_tree; + const int *extra_bits; + int extra_base; + int elems; + int max_length; +}; + +typedef struct static_tree_desc_s static_tree_desc; + +struct tree_desc_s { + ct_data *dyn_tree; + int max_code; + static_tree_desc *stat_desc; +}; + +typedef ush Pos; + +typedef unsigned int IPos; + +struct deflate_state { + z_streamp strm; + int status; + Byte *pending_buf; + ulg pending_buf_size; + Byte *pending_out; + int pending; + int noheader; + Byte data_type; + Byte method; + int last_flush; + uInt w_size; + uInt w_bits; + uInt w_mask; + Byte *window; + ulg window_size; + Pos *prev; + Pos *head; + uInt ins_h; + uInt hash_size; + uInt hash_bits; + uInt hash_mask; + uInt hash_shift; + long int block_start; + uInt match_length; + IPos prev_match; + int match_available; + uInt strstart; + uInt match_start; + uInt lookahead; + uInt prev_length; + uInt max_chain_length; + uInt max_lazy_match; + int level; + int strategy; + uInt good_match; + int nice_match; + struct ct_data_s dyn_ltree[573]; + struct ct_data_s dyn_dtree[61]; + struct ct_data_s bl_tree[39]; + struct tree_desc_s l_desc; + struct tree_desc_s d_desc; + struct tree_desc_s bl_desc; + ush bl_count[16]; + int heap[573]; + int heap_len; + int heap_max; + uch depth[573]; + uch *l_buf; + uInt lit_bufsize; + uInt last_lit; + ush *d_buf; + ulg opt_len; + ulg static_len; + ulg compressed_len; + uInt matches; + int last_eob_len; + ush bi_buf; + int bi_valid; +}; + +typedef struct deflate_state deflate_state; + +typedef enum { + need_more = 0, + block_done = 1, + finish_started = 2, + finish_done = 3, +} block_state; + +typedef block_state (*compress_func)(deflate_state *, int); + +struct deflate_workspace { + deflate_state deflate_memory; + Byte *window_memory; + Pos *prev_memory; + Pos *head_memory; + char *overlay_memory; +}; + +typedef struct deflate_workspace deflate_workspace; + +struct config_s { + ush good_length; + ush max_lazy; + ush nice_length; + ush max_chain; + compress_func func; +}; + +typedef struct config_s config; + +typedef struct { + uint32_t hashTable[4096]; + uint32_t currentOffset; + uint32_t initCheck; + const uint8_t *dictionary; + uint8_t *bufferStart; + uint32_t dictSize; +} LZ4_stream_t_internal; + +typedef union { + long long unsigned int table[2052]; + LZ4_stream_t_internal internal_donotuse; +} LZ4_stream_t; + +typedef uint8_t BYTE; + +typedef uint16_t U16; + +typedef uint32_t U32; + +typedef uint64_t U64; + +typedef uintptr_t uptrval; + +typedef enum { + noLimit = 0, + limitedOutput = 1, +} limitedOutput_directive; + +typedef enum { + byPtr = 0, + byU32 = 1, + byU16 = 2, +} tableType_t; + +typedef enum { + noDict = 0, + withPrefix64k = 1, + usingExtDict = 2, +} dict_directive; + +typedef enum { + noDictIssue = 0, + dictSmall = 1, +} dictIssue_directive; + +typedef s16 int16_t; + +typedef enum { + ZSTD_error_no_error = 0, + ZSTD_error_GENERIC = 1, + ZSTD_error_prefix_unknown = 10, + ZSTD_error_version_unsupported = 12, + ZSTD_error_frameParameter_unsupported = 14, + ZSTD_error_frameParameter_windowTooLarge = 16, + ZSTD_error_corruption_detected = 20, + ZSTD_error_checksum_wrong = 22, + ZSTD_error_dictionary_corrupted = 30, + ZSTD_error_dictionary_wrong = 32, + ZSTD_error_dictionaryCreation_failed = 34, + ZSTD_error_parameter_unsupported = 40, + ZSTD_error_parameter_outOfBound = 42, + ZSTD_error_tableLog_tooLarge = 44, + ZSTD_error_maxSymbolValue_tooLarge = 46, + ZSTD_error_maxSymbolValue_tooSmall = 48, + ZSTD_error_stage_wrong = 60, + ZSTD_error_init_missing = 62, + ZSTD_error_memory_allocation = 64, + ZSTD_error_workSpace_tooSmall = 66, + ZSTD_error_dstSize_tooSmall = 70, + ZSTD_error_srcSize_wrong = 72, + ZSTD_error_dstBuffer_null = 74, + ZSTD_error_frameIndex_tooLarge = 100, + ZSTD_error_seekableIO = 102, + ZSTD_error_dstBuffer_wrong = 104, + ZSTD_error_srcBuffer_wrong = 105, + ZSTD_error_maxCode = 120, +} ZSTD_ErrorCode; + +typedef ZSTD_ErrorCode ERR_enum; + +typedef uint8_t U8; + +typedef int16_t S16; + +typedef void * (*ZSTD_allocFunction)(void *, size_t); + +typedef void (*ZSTD_freeFunction)(void *, void *); + +typedef struct { + ZSTD_allocFunction customAlloc; + ZSTD_freeFunction customFree; + void *opaque; +} ZSTD_customMem; + +enum lzma_state { + STATE_LIT_LIT = 0, + STATE_MATCH_LIT_LIT = 1, + STATE_REP_LIT_LIT = 2, + STATE_SHORTREP_LIT_LIT = 3, + STATE_MATCH_LIT = 4, + STATE_REP_LIT = 5, + STATE_SHORTREP_LIT = 6, + STATE_LIT_MATCH = 7, + STATE_LIT_LONGREP = 8, + STATE_LIT_SHORTREP = 9, + STATE_NONLIT_MATCH = 10, + STATE_NONLIT_REP = 11, +}; + +struct dictionary { + uint8_t *buf; + size_t start; + size_t pos; + size_t full; + size_t limit; + size_t end; + uint32_t size; + uint32_t size_max; + uint32_t allocated; + enum xz_mode mode; +}; + +struct rc_dec { + uint32_t range; + uint32_t code; + uint32_t init_bytes_left; + const uint8_t *in; + size_t in_pos; + size_t in_limit; +}; + +struct lzma_len_dec { + uint16_t choice; + uint16_t choice2; + uint16_t low[128]; + uint16_t mid[128]; + uint16_t high[256]; +}; + +struct lzma_dec { + uint32_t rep0; + uint32_t rep1; + uint32_t rep2; + uint32_t rep3; + enum lzma_state state; + uint32_t len; + uint32_t lc; + uint32_t literal_pos_mask; + uint32_t pos_mask; + uint16_t is_match[192]; + uint16_t is_rep[12]; + uint16_t is_rep0[12]; + uint16_t is_rep1[12]; + uint16_t is_rep2[12]; + uint16_t is_rep0_long[192]; + uint16_t dist_slot[256]; + uint16_t dist_special[114]; + uint16_t dist_align[16]; + struct lzma_len_dec match_len_dec; + struct lzma_len_dec rep_len_dec; + uint16_t literal[12288]; +}; + +enum lzma2_seq { + SEQ_CONTROL = 0, + SEQ_UNCOMPRESSED_1 = 1, + SEQ_UNCOMPRESSED_2 = 2, + SEQ_COMPRESSED_0 = 3, + SEQ_COMPRESSED_1 = 4, + SEQ_PROPERTIES = 5, + SEQ_LZMA_PREPARE = 6, + SEQ_LZMA_RUN = 7, + SEQ_COPY = 8, +}; + +struct lzma2_dec { + enum lzma2_seq sequence; + enum lzma2_seq next_sequence; + uint32_t uncompressed; + uint32_t compressed; + bool need_dict_reset; + bool need_props; + bool pedantic_microlzma; +}; + +struct xz_dec_lzma2 { + struct rc_dec rc; + struct dictionary dict; + struct lzma2_dec lzma2; + struct lzma_dec lzma; + struct { + uint32_t size; + uint8_t buf[63]; + } temp; +}; + +struct xz_dec_microlzma { + struct xz_dec_lzma2 s; +}; + +struct raid6_calls { + void (*gen_syndrome)(int, size_t, void **); + void (*xor_syndrome)(int, int, int, size_t, void **); + int (*valid)(void); + const char *name; + int priority; +}; + +struct raid6_recov_calls { + void (*data2)(int, size_t, int, int, void **); + void (*datap)(int, size_t, int, void **); + int (*valid)(void); + const char *name; + int priority; +}; + +struct nla_bitfield32 { + __u32 value; + __u32 selector; +}; + +enum { + NLA_UNSPEC = 0, + NLA_U8 = 1, + NLA_U16 = 2, + NLA_U32 = 3, + NLA_U64 = 4, + NLA_STRING = 5, + NLA_FLAG = 6, + NLA_MSECS = 7, + NLA_NESTED = 8, + NLA_NESTED_ARRAY = 9, + NLA_NUL_STRING = 10, + NLA_BINARY = 11, + NLA_S8 = 12, + NLA_S16 = 13, + NLA_S32 = 14, + NLA_S64 = 15, + NLA_BITFIELD32 = 16, + NLA_REJECT = 17, + NLA_BE16 = 18, + NLA_BE32 = 19, + NLA_SINT = 20, + NLA_UINT = 21, + __NLA_TYPE_MAX = 22, +}; + +enum nla_policy_validation { + NLA_VALIDATE_NONE = 0, + NLA_VALIDATE_RANGE = 1, + NLA_VALIDATE_RANGE_WARN_TOO_LONG = 2, + NLA_VALIDATE_MIN = 3, + NLA_VALIDATE_MAX = 4, + NLA_VALIDATE_MASK = 5, + NLA_VALIDATE_RANGE_PTR = 6, + NLA_VALIDATE_FUNCTION = 7, +}; + +enum netlink_validation { + NL_VALIDATE_LIBERAL = 0, + NL_VALIDATE_TRAILING = 1, + NL_VALIDATE_MAXTYPE = 2, + NL_VALIDATE_UNSPEC = 4, + NL_VALIDATE_STRICT_ATTRS = 8, + NL_VALIDATE_NESTED = 16, +}; + +struct clk_bulk_data { + const char *id; + struct clk *clk; +}; + +struct platform_device_id { + char name[20]; + kernel_ulong_t driver_data; +}; + +struct of_dev_auxdata { + char *compatible; + resource_size_t phys_addr; + char *name; + void *platform_data; +}; + +struct resource { + resource_size_t start; + resource_size_t end; + const char *name; + long unsigned int flags; + long unsigned int desc; + struct resource *parent; + struct resource *sibling; + struct resource *child; +}; + +struct pdev_archdata {}; + +struct mfd_cell; + +struct platform_device { + const char *name; + int id; + bool id_auto; + struct device dev; + u64 platform_dma_mask; + struct device_dma_parameters dma_parms; + u32 num_resources; + struct resource *resource; + const struct platform_device_id *id_entry; + const char *driver_override; + struct mfd_cell *mfd_cell; + struct pdev_archdata archdata; +}; + +struct platform_driver { + int (*probe)(struct platform_device *); + union { + void (*remove)(struct platform_device *); + void (*remove_new)(struct platform_device *); + }; + void (*shutdown)(struct platform_device *); + int (*suspend)(struct platform_device *, pm_message_t); + int (*resume)(struct platform_device *); + struct device_driver driver; + const struct platform_device_id *id_table; + bool prevent_deferred_probe; + bool driver_managed_dma; +}; + +struct simple_pm_bus { + struct clk_bulk_data *clks; + int num_clks; +}; + +struct pci_device_id { + __u32 vendor; + __u32 device; + __u32 subvendor; + __u32 subdevice; + __u32 class; + __u32 class_mask; + kernel_ulong_t driver_data; + __u32 override_only; +}; + +struct pci_bus; + +struct hotplug_slot; + +struct pci_slot { + struct pci_bus *bus; + struct list_head list; + struct hotplug_slot *hotplug; + unsigned char number; + struct kobject kobj; +}; + +typedef short unsigned int pci_bus_flags_t; + +struct pci_dev; + +struct pci_ops; + +struct pci_bus { + struct list_head node; + struct pci_bus *parent; + struct list_head children; + struct list_head devices; + struct pci_dev *self; + struct list_head slots; + struct resource *resource[4]; + struct list_head resources; + struct resource busn_res; + struct pci_ops *ops; + void *sysdata; + struct proc_dir_entry *procdir; + unsigned char number; + unsigned char primary; + unsigned char max_bus_speed; + unsigned char cur_bus_speed; + int domain_nr; + char name[48]; + short unsigned int bridge_ctl; + pci_bus_flags_t bus_flags; + struct device *bridge; + struct device dev; + struct bin_attribute *legacy_io; + struct bin_attribute *legacy_mem; + unsigned int is_added: 1; + unsigned int unsafe_warn: 1; +}; + +enum { + PCI_STD_RESOURCES = 0, + PCI_STD_RESOURCE_END = 5, + PCI_ROM_RESOURCE = 6, + PCI_BRIDGE_RESOURCES = 7, + PCI_BRIDGE_RESOURCE_END = 10, + PCI_NUM_RESOURCES = 11, + DEVICE_COUNT_RESOURCE = 11, +}; + +typedef int pci_power_t; + +typedef unsigned int pci_channel_state_t; + +typedef short unsigned int pci_dev_flags_t; + +struct pci_vpd { + struct mutex lock; + unsigned int len; + u8 cap; +}; + +struct rcec_ea; + +struct pci_driver; + +struct pcie_link_state; + +struct pci_dev { + struct list_head bus_list; + struct pci_bus *bus; + struct pci_bus *subordinate; + void *sysdata; + struct proc_dir_entry *procent; + struct pci_slot *slot; + unsigned int devfn; + short unsigned int vendor; + short unsigned int device; + short unsigned int subsystem_vendor; + short unsigned int subsystem_device; + unsigned int class; + u8 revision; + u8 hdr_type; + struct rcec_ea *rcec_ea; + struct pci_dev *rcec; + u32 devcap; + u8 pcie_cap; + u8 msi_cap; + u8 msix_cap; + u8 pcie_mpss: 3; + u8 rom_base_reg; + u8 pin; + u16 pcie_flags_reg; + long unsigned int *dma_alias_mask; + struct pci_driver *driver; + u64 dma_mask; + struct device_dma_parameters dma_parms; + pci_power_t current_state; + u8 pm_cap; + unsigned int pme_support: 5; + unsigned int pme_poll: 1; + unsigned int pinned: 1; + unsigned int config_rrs_sv: 1; + unsigned int imm_ready: 1; + unsigned int d1_support: 1; + unsigned int d2_support: 1; + unsigned int no_d1d2: 1; + unsigned int no_d3cold: 1; + unsigned int bridge_d3: 1; + unsigned int d3cold_allowed: 1; + unsigned int mmio_always_on: 1; + unsigned int wakeup_prepared: 1; + unsigned int skip_bus_pm: 1; + unsigned int ignore_hotplug: 1; + unsigned int hotplug_user_indicators: 1; + unsigned int clear_retrain_link: 1; + unsigned int d3hot_delay; + unsigned int d3cold_delay; + u16 l1ss; + struct pcie_link_state *link_state; + unsigned int ltr_path: 1; + unsigned int pasid_no_tlp: 1; + unsigned int eetlp_prefix_path: 1; + pci_channel_state_t error_state; + struct device dev; + int cfg_size; + unsigned int irq; + struct resource resource[11]; + struct resource driver_exclusive_resource; + bool match_driver; + unsigned int transparent: 1; + unsigned int io_window: 1; + unsigned int pref_window: 1; + unsigned int pref_64_window: 1; + unsigned int multifunction: 1; + unsigned int is_busmaster: 1; + unsigned int no_msi: 1; + unsigned int no_64bit_msi: 1; + unsigned int block_cfg_access: 1; + unsigned int broken_parity_status: 1; + unsigned int irq_reroute_variant: 2; + unsigned int msi_enabled: 1; + unsigned int msix_enabled: 1; + unsigned int ari_enabled: 1; + unsigned int ats_enabled: 1; + unsigned int pasid_enabled: 1; + unsigned int pri_enabled: 1; + unsigned int is_managed: 1; + unsigned int is_msi_managed: 1; + unsigned int needs_freset: 1; + unsigned int state_saved: 1; + unsigned int is_physfn: 1; + unsigned int is_virtfn: 1; + unsigned int is_hotplug_bridge: 1; + unsigned int is_pciehp: 1; + unsigned int shpc_managed: 1; + unsigned int is_thunderbolt: 1; + unsigned int untrusted: 1; + unsigned int external_facing: 1; + unsigned int broken_intx_masking: 1; + unsigned int io_window_1k: 1; + unsigned int irq_managed: 1; + unsigned int non_compliant_bars: 1; + unsigned int is_probed: 1; + unsigned int link_active_reporting: 1; + unsigned int no_vf_scan: 1; + unsigned int no_command_memory: 1; + unsigned int rom_bar_overlap: 1; + unsigned int rom_attr_enabled: 1; + pci_dev_flags_t dev_flags; + atomic_t enable_cnt; + spinlock_t pcie_cap_lock; + u32 saved_config_space[16]; + struct hlist_head saved_cap_space; + struct bin_attribute *res_attr[11]; + struct bin_attribute *res_attr_wc[11]; + void *msix_base; + raw_spinlock_t msi_lock; + struct pci_vpd vpd; + u16 acs_cap; + u8 supported_speeds; + phys_addr_t rom; + size_t romlen; + const char *driver_override; + long unsigned int priv_flags; + u8 reset_methods[8]; +}; + +struct rcec_ea { + u8 nextbusn; + u8 lastbusn; + u32 bitmap; +}; + +struct pci_dynids { + spinlock_t lock; + struct list_head list; +}; + +struct pci_error_handlers; + +struct pci_driver { + const char *name; + const struct pci_device_id *id_table; + int (*probe)(struct pci_dev *, const struct pci_device_id *); + void (*remove)(struct pci_dev *); + int (*suspend)(struct pci_dev *, pm_message_t); + int (*resume)(struct pci_dev *); + void (*shutdown)(struct pci_dev *); + int (*sriov_configure)(struct pci_dev *, int); + int (*sriov_set_msix_vec_count)(struct pci_dev *, int); + u32 (*sriov_get_vf_total_msix)(struct pci_dev *); + const struct pci_error_handlers *err_handler; + const struct attribute_group **groups; + const struct attribute_group **dev_groups; + struct device_driver driver; + struct pci_dynids dynids; + bool driver_managed_dma; +}; + +struct pci_host_bridge { + struct device dev; + struct pci_bus *bus; + struct pci_ops *ops; + struct pci_ops *child_ops; + void *sysdata; + int busnr; + int domain_nr; + struct list_head windows; + struct list_head dma_ranges; + u8 (*swizzle_irq)(struct pci_dev *, u8 *); + int (*map_irq)(const struct pci_dev *, u8, u8); + void (*release_fn)(struct pci_host_bridge *); + void *release_data; + unsigned int ignore_reset_delay: 1; + unsigned int no_ext_tags: 1; + unsigned int no_inc_mrrs: 1; + unsigned int native_aer: 1; + unsigned int native_pcie_hotplug: 1; + unsigned int native_shpc_hotplug: 1; + unsigned int native_pme: 1; + unsigned int native_ltr: 1; + unsigned int native_dpc: 1; + unsigned int native_cxl_error: 1; + unsigned int preserve_config: 1; + unsigned int size_windows: 1; + unsigned int msi_domain: 1; + resource_size_t (*align_resource)(struct pci_dev *, const struct resource *, resource_size_t, resource_size_t, resource_size_t); + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long unsigned int private[0]; +}; + +struct pci_ops { + int (*add_bus)(struct pci_bus *); + void (*remove_bus)(struct pci_bus *); + void * (*map_bus)(struct pci_bus *, unsigned int, int); + int (*read)(struct pci_bus *, unsigned int, int, int, u32 *); + int (*write)(struct pci_bus *, unsigned int, int, int, u32); +}; + +typedef unsigned int pci_ers_result_t; + +struct pci_error_handlers { + pci_ers_result_t (*error_detected)(struct pci_dev *, pci_channel_state_t); + pci_ers_result_t (*mmio_enabled)(struct pci_dev *); + pci_ers_result_t (*slot_reset)(struct pci_dev *); + void (*reset_prepare)(struct pci_dev *); + void (*reset_done)(struct pci_dev *); + void (*resume)(struct pci_dev *); + void (*cor_error_detected)(struct pci_dev *); +}; + +typedef long unsigned int irq_hw_number_t; + +struct msi_desc; + +struct irq_common_data { + unsigned int state_use_accessors; + void *handler_data; + struct msi_desc *msi_desc; + cpumask_var_t affinity; + cpumask_var_t effective_affinity; + unsigned int ipi_offset; +}; + +struct arch_msi_msg_addr_lo { + u32 address_lo; +}; + +typedef struct arch_msi_msg_addr_lo arch_msi_msg_addr_lo_t; + +struct arch_msi_msg_addr_hi { + u32 address_hi; +}; + +typedef struct arch_msi_msg_addr_hi arch_msi_msg_addr_hi_t; + +struct arch_msi_msg_data { + u32 data; +}; + +typedef struct arch_msi_msg_data arch_msi_msg_data_t; + +struct msi_msg { + union { + u32 address_lo; + arch_msi_msg_addr_lo_t arch_addr_lo; + }; + union { + u32 address_hi; + arch_msi_msg_addr_hi_t arch_addr_hi; + }; + union { + u32 data; + arch_msi_msg_data_t arch_data; + }; +}; + +struct pci_msi_desc { + union { + u32 msi_mask; + u32 msix_ctrl; + }; + struct { + u8 is_msix: 1; + u8 multiple: 3; + u8 multi_cap: 3; + u8 can_mask: 1; + u8 is_64: 1; + u8 is_virtual: 1; + unsigned int default_irq; + } msi_attrib; + union { + u8 mask_pos; + void *mask_base; + }; +}; + +union msi_domain_cookie { + u64 value; + void *ptr; + void *iobase; +}; + +union msi_instance_cookie { + u64 value; + void *ptr; +}; + +struct msi_desc_data { + union msi_domain_cookie dcookie; + union msi_instance_cookie icookie; +}; + +struct irq_affinity_desc; + +struct device_attribute; + +struct msi_desc { + unsigned int irq; + unsigned int nvec_used; + struct device *dev; + struct msi_msg msg; + struct irq_affinity_desc *affinity; + struct device_attribute *sysfs_attrs; + void (*write_msi_msg)(struct msi_desc *, void *); + void *write_msi_msg_data; + u16 msi_index; + union { + struct pci_msi_desc pci; + struct msi_desc_data data; + }; +}; + +struct irq_chip; + +struct irq_data { + u32 mask; + unsigned int irq; + irq_hw_number_t hwirq; + struct irq_common_data *common; + struct irq_chip *chip; + struct irq_domain *domain; + struct irq_data *parent_data; + void *chip_data; +}; + +enum irqchip_irq_state { + IRQCHIP_STATE_PENDING = 0, + IRQCHIP_STATE_ACTIVE = 1, + IRQCHIP_STATE_MASKED = 2, + IRQCHIP_STATE_LINE_LEVEL = 3, +}; + +struct irq_chip { + const char *name; + unsigned int (*irq_startup)(struct irq_data *); + void (*irq_shutdown)(struct irq_data *); + void (*irq_enable)(struct irq_data *); + void (*irq_disable)(struct irq_data *); + void (*irq_ack)(struct irq_data *); + void (*irq_mask)(struct irq_data *); + void (*irq_mask_ack)(struct irq_data *); + void (*irq_unmask)(struct irq_data *); + void (*irq_eoi)(struct irq_data *); + int (*irq_set_affinity)(struct irq_data *, const struct cpumask *, bool); + int (*irq_retrigger)(struct irq_data *); + int (*irq_set_type)(struct irq_data *, unsigned int); + int (*irq_set_wake)(struct irq_data *, unsigned int); + void (*irq_bus_lock)(struct irq_data *); + void (*irq_bus_sync_unlock)(struct irq_data *); + void (*irq_suspend)(struct irq_data *); + void (*irq_resume)(struct irq_data *); + void (*irq_pm_shutdown)(struct irq_data *); + void (*irq_calc_mask)(struct irq_data *); + void (*irq_print_chip)(struct irq_data *, struct seq_file *); + int (*irq_request_resources)(struct irq_data *); + void (*irq_release_resources)(struct irq_data *); + void (*irq_compose_msi_msg)(struct irq_data *, struct msi_msg *); + void (*irq_write_msi_msg)(struct irq_data *, struct msi_msg *); + int (*irq_get_irqchip_state)(struct irq_data *, enum irqchip_irq_state, bool *); + int (*irq_set_irqchip_state)(struct irq_data *, enum irqchip_irq_state, bool); + int (*irq_set_vcpu_affinity)(struct irq_data *, void *); + void (*ipi_send_single)(struct irq_data *, unsigned int); + void (*ipi_send_mask)(struct irq_data *, const struct cpumask *); + int (*irq_nmi_setup)(struct irq_data *); + void (*irq_nmi_teardown)(struct irq_data *); + long unsigned int flags; +}; + +struct device_attribute { + struct attribute attr; + ssize_t (*show)(struct device *, struct device_attribute *, char *); + ssize_t (*store)(struct device *, struct device_attribute *, const char *, size_t); +}; + +struct irq_affinity { + unsigned int pre_vectors; + unsigned int post_vectors; + unsigned int nr_sets; + unsigned int set_size[4]; + void (*calc_sets)(struct irq_affinity *, unsigned int); + void *priv; +}; + +struct irq_affinity_desc { + struct cpumask mask; + unsigned int is_managed: 1; +}; + +enum msi_domain_ids { + MSI_DEFAULT_DOMAIN = 0, + MSI_MAX_DEVICE_IRQDOMAINS = 1, +}; + +struct msi_map { + int index; + int virq; +}; + +struct msix_entry { + u32 vector; + u16 entry; +}; + +enum { + MSI_FLAG_USE_DEF_DOM_OPS = 1, + MSI_FLAG_USE_DEF_CHIP_OPS = 2, + MSI_FLAG_ACTIVATE_EARLY = 4, + MSI_FLAG_MUST_REACTIVATE = 8, + MSI_FLAG_DEV_SYSFS = 16, + MSI_FLAG_ALLOC_SIMPLE_MSI_DESCS = 32, + MSI_FLAG_FREE_MSI_DESCS = 64, + MSI_FLAG_USE_DEV_FWNODE = 128, + MSI_FLAG_PARENT_PM_DEV = 256, + MSI_FLAG_PCI_MSI_MASK_PARENT = 512, + MSI_GENERIC_FLAGS_MASK = 65535, + MSI_DOMAIN_FLAGS_MASK = 4294901760, + MSI_FLAG_MULTI_PCI_MSI = 65536, + MSI_FLAG_PCI_MSIX = 131072, + MSI_FLAG_LEVEL_CAPABLE = 262144, + MSI_FLAG_MSIX_CONTIGUOUS = 524288, + MSI_FLAG_PCI_MSIX_ALLOC_DYN = 1048576, + MSI_FLAG_NO_AFFINITY = 2097152, + MSI_FLAG_NO_MASK = 4194304, +}; + +enum support_mode { + ALLOW_LEGACY = 0, + DENY_LEGACY = 1, +}; + +struct pcie_link_state { + struct pci_dev *pdev; + struct pci_dev *downstream; + struct pcie_link_state *root; + struct pcie_link_state *parent; + struct list_head sibling; + u32 aspm_support: 7; + u32 aspm_enabled: 7; + u32 aspm_capable: 7; + u32 aspm_default: 7; + int: 4; + u32 aspm_disable: 7; + u32 clkpm_capable: 1; + u32 clkpm_enabled: 1; + u32 clkpm_default: 1; + u32 clkpm_disable: 1; +}; + +struct pci_cap_saved_data { + u16 cap_nr; + bool cap_extended; + unsigned int size; + u32 data[0]; +}; + +struct pci_cap_saved_state { + struct hlist_node next; + struct pci_cap_saved_data cap; +}; + +struct clk_hw; + +struct clk_lookup { + struct list_head node; + const char *dev_id; + const char *con_id; + struct clk *clk; + struct clk_hw *clk_hw; +}; + +struct clk_core; + +struct clk_init_data; + +struct clk_hw { + struct clk_core *core; + struct clk *clk; + const struct clk_init_data *init; +}; + +struct clk_rate_request { + struct clk_core *core; + long unsigned int rate; + long unsigned int min_rate; + long unsigned int max_rate; + long unsigned int best_parent_rate; + struct clk_hw *best_parent_hw; +}; + +struct clk_duty { + unsigned int num; + unsigned int den; +}; + +struct clk_ops { + int (*prepare)(struct clk_hw *); + void (*unprepare)(struct clk_hw *); + int (*is_prepared)(struct clk_hw *); + void (*unprepare_unused)(struct clk_hw *); + int (*enable)(struct clk_hw *); + void (*disable)(struct clk_hw *); + int (*is_enabled)(struct clk_hw *); + void (*disable_unused)(struct clk_hw *); + int (*save_context)(struct clk_hw *); + void (*restore_context)(struct clk_hw *); + long unsigned int (*recalc_rate)(struct clk_hw *, long unsigned int); + long int (*round_rate)(struct clk_hw *, long unsigned int, long unsigned int *); + int (*determine_rate)(struct clk_hw *, struct clk_rate_request *); + int (*set_parent)(struct clk_hw *, u8); + u8 (*get_parent)(struct clk_hw *); + int (*set_rate)(struct clk_hw *, long unsigned int, long unsigned int); + int (*set_rate_and_parent)(struct clk_hw *, long unsigned int, long unsigned int, u8); + long unsigned int (*recalc_accuracy)(struct clk_hw *, long unsigned int); + int (*get_phase)(struct clk_hw *); + int (*set_phase)(struct clk_hw *, int); + int (*get_duty_cycle)(struct clk_hw *, struct clk_duty *); + int (*set_duty_cycle)(struct clk_hw *, struct clk_duty *); + int (*init)(struct clk_hw *); + void (*terminate)(struct clk_hw *); + void (*debug_init)(struct clk_hw *, struct dentry *); +}; + +struct clk_parent_data { + const struct clk_hw *hw; + const char *fw_name; + const char *name; + int index; +}; + +struct clk_init_data { + const char *name; + const struct clk_ops *ops; + const char * const *parent_names; + const struct clk_parent_data *parent_data; + const struct clk_hw **parent_hws; + u8 num_parents; + long unsigned int flags; +}; + +struct clk_lookup_alloc { + struct clk_lookup cl; + char dev_id[24]; + char con_id[16]; +}; + +struct virtio_device_id { + __u32 device; + __u32 vendor; +}; + +enum dma_data_direction { + DMA_BIDIRECTIONAL = 0, + DMA_TO_DEVICE = 1, + DMA_FROM_DEVICE = 2, + DMA_NONE = 3, +}; + +struct virtio_device; + +struct virtqueue { + struct list_head list; + void (*callback)(struct virtqueue *); + const char *name; + struct virtio_device *vdev; + unsigned int index; + unsigned int num_free; + unsigned int num_max; + bool reset; + void *priv; +}; + +struct vringh_config_ops; + +struct virtio_config_ops; + +struct virtio_device { + int index; + bool failed; + bool config_core_enabled; + bool config_driver_disabled; + bool config_change_pending; + spinlock_t config_lock; + spinlock_t vqs_list_lock; + struct device dev; + struct virtio_device_id id; + const struct virtio_config_ops *config; + const struct vringh_config_ops *vringh_config; + struct list_head vqs; + u64 features; + void *priv; +}; + +struct virtqueue_info; + +struct virtio_shm_region; + +struct virtio_config_ops { + void (*get)(struct virtio_device *, unsigned int, void *, unsigned int); + void (*set)(struct virtio_device *, unsigned int, const void *, unsigned int); + u32 (*generation)(struct virtio_device *); + u8 (*get_status)(struct virtio_device *); + void (*set_status)(struct virtio_device *, u8); + void (*reset)(struct virtio_device *); + int (*find_vqs)(struct virtio_device *, unsigned int, struct virtqueue **, struct virtqueue_info *, struct irq_affinity *); + void (*del_vqs)(struct virtio_device *); + void (*synchronize_cbs)(struct virtio_device *); + u64 (*get_features)(struct virtio_device *); + int (*finalize_features)(struct virtio_device *); + const char * (*bus_name)(struct virtio_device *); + int (*set_vq_affinity)(struct virtqueue *, const struct cpumask *); + const struct cpumask * (*get_vq_affinity)(struct virtio_device *, int); + bool (*get_shm_region)(struct virtio_device *, struct virtio_shm_region *, u8); + int (*disable_vq_and_reset)(struct virtqueue *); + int (*enable_vq_after_reset)(struct virtqueue *); +}; + +enum irqreturn { + IRQ_NONE = 0, + IRQ_HANDLED = 1, + IRQ_WAKE_THREAD = 2, +}; + +typedef enum irqreturn irqreturn_t; + +typedef __u16 __virtio16; + +typedef __u32 __virtio32; + +typedef __u64 __virtio64; + +struct vring_desc { + __virtio64 addr; + __virtio32 len; + __virtio16 flags; + __virtio16 next; +}; + +struct vring_avail { + __virtio16 flags; + __virtio16 idx; + __virtio16 ring[0]; +}; + +struct vring_used_elem { + __virtio32 id; + __virtio32 len; +}; + +typedef struct vring_used_elem vring_used_elem_t; + +struct vring_used { + __virtio16 flags; + __virtio16 idx; + vring_used_elem_t ring[0]; +}; + +typedef struct vring_desc vring_desc_t; + +typedef struct vring_avail vring_avail_t; + +typedef struct vring_used vring_used_t; + +struct vring { + unsigned int num; + vring_desc_t *desc; + vring_avail_t *avail; + vring_used_t *used; +}; + +struct vring_packed_desc_event { + __le16 off_wrap; + __le16 flags; +}; + +struct vring_packed_desc { + __le64 addr; + __le32 len; + __le16 id; + __le16 flags; +}; + +struct virtio_shm_region { + u64 addr; + u64 len; +}; + +typedef void vq_callback_t(struct virtqueue *); + +struct virtqueue_info { + const char *name; + vq_callback_t *callback; + bool ctx; +}; + +enum xen_domain_type { + XEN_NATIVE = 0, + XEN_PV_DOMAIN = 1, + XEN_HVM_DOMAIN = 2, +}; + +struct vring_desc_state_split { + void *data; + struct vring_desc *indir_desc; +}; + +struct vring_desc_state_packed { + void *data; + struct vring_packed_desc *indir_desc; + u16 num; + u16 last; +}; + +struct vring_desc_extra { + dma_addr_t addr; + u32 len; + u16 flags; + u16 next; +}; + +struct vring_virtqueue_split { + struct vring vring; + u16 avail_flags_shadow; + u16 avail_idx_shadow; + struct vring_desc_state_split *desc_state; + struct vring_desc_extra *desc_extra; + dma_addr_t queue_dma_addr; + size_t queue_size_in_bytes; + u32 vring_align; + bool may_reduce_num; +}; + +struct vring_virtqueue_packed { + struct { + unsigned int num; + struct vring_packed_desc *desc; + struct vring_packed_desc_event *driver; + struct vring_packed_desc_event *device; + } vring; + bool avail_wrap_counter; + u16 avail_used_flags; + u16 next_avail_idx; + u16 event_flags_shadow; + struct vring_desc_state_packed *desc_state; + struct vring_desc_extra *desc_extra; + dma_addr_t ring_dma_addr; + dma_addr_t driver_event_dma_addr; + dma_addr_t device_event_dma_addr; + size_t ring_size_in_bytes; + size_t event_size_in_bytes; +}; + +struct vring_virtqueue { + struct virtqueue vq; + bool packed_ring; + bool use_dma_api; + bool weak_barriers; + bool broken; + bool indirect; + bool event; + bool premapped; + bool do_unmap; + unsigned int free_head; + unsigned int num_added; + u16 last_used_idx; + bool event_triggered; + union { + struct vring_virtqueue_split split; + struct vring_virtqueue_packed packed; + }; + bool (*notify)(struct virtqueue *); + bool we_own_ring; + struct device *dma_dev; +}; + +struct serial_icounter_struct { + int cts; + int dsr; + int rng; + int dcd; + int rx; + int tx; + int frame; + int overrun; + int parity; + int brk; + int buf_overrun; + int reserved[9]; +}; + +struct serial_struct { + int type; + int line; + unsigned int port; + int irq; + int flags; + int xmit_fifo_size; + int custom_divisor; + int baud_base; + short unsigned int close_delay; + char io_type; + char reserved_char[1]; + int hub6; + short unsigned int closing_wait; + short unsigned int closing_wait2; + unsigned char *iomem_base; + short unsigned int iomem_reg_shift; + unsigned int port_high; + long unsigned int iomap_base; +}; + +struct serial_rs485 { + __u32 flags; + __u32 delay_rts_before_send; + __u32 delay_rts_after_send; + union { + __u32 padding[5]; + struct { + __u8 addr_recv; + __u8 addr_dest; + __u8 padding0[2]; + __u32 padding1[4]; + }; + }; +}; + +struct serial_iso7816 { + __u32 flags; + __u32 tg; + __u32 sc_fi; + __u32 sc_di; + __u32 clk; + __u32 reserved[5]; +}; + +struct uart_port; + +struct uart_ops { + unsigned int (*tx_empty)(struct uart_port *); + void (*set_mctrl)(struct uart_port *, unsigned int); + unsigned int (*get_mctrl)(struct uart_port *); + void (*stop_tx)(struct uart_port *); + void (*start_tx)(struct uart_port *); + void (*throttle)(struct uart_port *); + void (*unthrottle)(struct uart_port *); + void (*send_xchar)(struct uart_port *, char); + void (*stop_rx)(struct uart_port *); + void (*start_rx)(struct uart_port *); + void (*enable_ms)(struct uart_port *); + void (*break_ctl)(struct uart_port *, int); + int (*startup)(struct uart_port *); + void (*shutdown)(struct uart_port *); + void (*flush_buffer)(struct uart_port *); + void (*set_termios)(struct uart_port *, struct ktermios *, const struct ktermios *); + void (*set_ldisc)(struct uart_port *, struct ktermios *); + void (*pm)(struct uart_port *, unsigned int, unsigned int); + const char * (*type)(struct uart_port *); + void (*release_port)(struct uart_port *); + int (*request_port)(struct uart_port *); + void (*config_port)(struct uart_port *, int); + int (*verify_port)(struct uart_port *, struct serial_struct *); + int (*ioctl)(struct uart_port *, unsigned int, long unsigned int); +}; + +struct uart_icount { + __u32 cts; + __u32 dsr; + __u32 rng; + __u32 dcd; + __u32 rx; + __u32 tx; + __u32 frame; + __u32 overrun; + __u32 parity; + __u32 brk; + __u32 buf_overrun; +}; + +typedef u64 upf_t; + +typedef unsigned int upstat_t; + +struct uart_state; + +struct serial_port_device; + +struct gpio_desc; + +struct uart_port { + spinlock_t lock; + long unsigned int iobase; + unsigned char *membase; + unsigned int (*serial_in)(struct uart_port *, int); + void (*serial_out)(struct uart_port *, int, int); + void (*set_termios)(struct uart_port *, struct ktermios *, const struct ktermios *); + void (*set_ldisc)(struct uart_port *, struct ktermios *); + unsigned int (*get_mctrl)(struct uart_port *); + void (*set_mctrl)(struct uart_port *, unsigned int); + unsigned int (*get_divisor)(struct uart_port *, unsigned int, unsigned int *); + void (*set_divisor)(struct uart_port *, unsigned int, unsigned int, unsigned int); + int (*startup)(struct uart_port *); + void (*shutdown)(struct uart_port *); + void (*throttle)(struct uart_port *); + void (*unthrottle)(struct uart_port *); + int (*handle_irq)(struct uart_port *); + void (*pm)(struct uart_port *, unsigned int, unsigned int); + void (*handle_break)(struct uart_port *); + int (*rs485_config)(struct uart_port *, struct ktermios *, struct serial_rs485 *); + int (*iso7816_config)(struct uart_port *, struct serial_iso7816 *); + unsigned int ctrl_id; + unsigned int port_id; + unsigned int irq; + long unsigned int irqflags; + unsigned int uartclk; + unsigned int fifosize; + unsigned char x_char; + unsigned char regshift; + unsigned char iotype; + unsigned char quirks; + unsigned int read_status_mask; + unsigned int ignore_status_mask; + struct uart_state *state; + struct uart_icount icount; + struct console *cons; + upf_t flags; + upstat_t status; + bool hw_stopped; + unsigned int mctrl; + unsigned int frame_time; + unsigned int type; + const struct uart_ops *ops; + unsigned int custom_divisor; + unsigned int line; + unsigned int minor; + resource_size_t mapbase; + resource_size_t mapsize; + struct device *dev; + struct serial_port_device *port_dev; + long unsigned int sysrq; + u8 sysrq_ch; + unsigned char has_sysrq; + unsigned char sysrq_seq; + unsigned char hub6; + unsigned char suspended; + unsigned char console_reinit; + const char *name; + struct attribute_group *attr_group; + const struct attribute_group **tty_groups; + struct serial_rs485 rs485; + struct serial_rs485 rs485_supported; + struct gpio_desc *rs485_term_gpio; + struct gpio_desc *rs485_rx_during_tx_gpio; + struct serial_iso7816 iso7816; + void *private_data; +}; + +enum uart_pm_state { + UART_PM_STATE_ON = 0, + UART_PM_STATE_OFF = 3, + UART_PM_STATE_UNDEFINED = 4, +}; + +struct uart_state { + struct tty_port port; + enum uart_pm_state pm_state; + atomic_t refcount; + wait_queue_head_t remove_wait; + struct uart_port *uart_port; +}; + +struct serial_port_device { + struct device dev; + struct uart_port *port; + unsigned int tx_enabled: 1; +}; + +struct uart_driver { + struct module *owner; + const char *driver_name; + const char *dev_name; + int major; + int minor; + int nr; + struct console *cons; + struct uart_state *state; + struct tty_driver *tty_driver; +}; + +struct serial_ctrl_device { + struct device dev; + struct ida port_ida; +}; + +struct earlycon_device { + struct console *con; + struct uart_port port; + char options[32]; + unsigned int baud; +}; + +struct earlycon_id { + char name[15]; + char name_term; + char compatible[128]; + int (*setup)(struct earlycon_device *, const char *); +}; + +struct serdev_device; + +struct serdev_device_ops { + size_t (*receive_buf)(struct serdev_device *, const u8 *, size_t); + void (*write_wakeup)(struct serdev_device *); +}; + +struct serdev_controller; + +struct serdev_device { + struct device dev; + int nr; + struct serdev_controller *ctrl; + const struct serdev_device_ops *ops; + struct completion write_comp; + struct mutex write_lock; +}; + +struct serdev_controller_ops; + +struct serdev_controller { + struct device dev; + struct device *host; + unsigned int nr; + struct serdev_device *serdev; + const struct serdev_controller_ops *ops; +}; + +struct serdev_device_driver { + struct device_driver driver; + int (*probe)(struct serdev_device *); + void (*remove)(struct serdev_device *); +}; + +enum serdev_parity { + SERDEV_PARITY_NONE = 0, + SERDEV_PARITY_EVEN = 1, + SERDEV_PARITY_ODD = 2, +}; + +struct serdev_controller_ops { + ssize_t (*write_buf)(struct serdev_controller *, const u8 *, size_t); + void (*write_flush)(struct serdev_controller *); + int (*write_room)(struct serdev_controller *); + int (*open)(struct serdev_controller *); + void (*close)(struct serdev_controller *); + void (*set_flow_control)(struct serdev_controller *, bool); + int (*set_parity)(struct serdev_controller *, enum serdev_parity); + unsigned int (*set_baudrate)(struct serdev_controller *, unsigned int); + void (*wait_until_sent)(struct serdev_controller *, long int); + int (*get_tiocm)(struct serdev_controller *); + int (*set_tiocm)(struct serdev_controller *, unsigned int, unsigned int); + int (*break_ctl)(struct serdev_controller *, unsigned int); +}; + +struct hwrng { + const char *name; + int (*init)(struct hwrng *); + void (*cleanup)(struct hwrng *); + int (*data_present)(struct hwrng *, int); + int (*data_read)(struct hwrng *, u32 *); + int (*read)(struct hwrng *, void *, size_t, bool); + long unsigned int priv; + short unsigned int quality; + struct list_head list; + struct kref ref; + struct completion cleanup_done; + struct completion dying; +}; + +struct arm_smccc_res { + long unsigned int a0; + long unsigned int a1; + long unsigned int a2; + long unsigned int a3; +}; + +struct arm_smccc_quirk { + int id; + union { + long unsigned int a6; + } state; +}; + +struct cn10k_rng { + void *reg_base; + struct hwrng ops; + struct pci_dev *pdev; + bool extended_trng_regs; +}; + +typedef u32 depot_stack_handle_t; + +struct ww_acquire_ctx; + +struct ww_mutex { + struct mutex base; + struct ww_acquire_ctx *ctx; +}; + +struct ww_acquire_ctx { + struct task_struct *task; + long unsigned int stamp; + unsigned int acquired; + short unsigned int wounded; + short unsigned int is_wait_die; +}; + +struct drm_modeset_lock; + +struct drm_modeset_acquire_ctx { + struct ww_acquire_ctx ww_ctx; + struct drm_modeset_lock *contended; + depot_stack_handle_t stack_depot; + struct list_head locked; + bool trylock_only; + bool interruptible; +}; + +struct drm_modeset_lock { + struct ww_mutex mutex; + struct list_head head; +}; + +struct _ddebug { + const char *modname; + const char *function; + const char *filename; + const char *format; + unsigned int lineno: 18; + unsigned int class_id: 6; + unsigned int flags: 8; + union { + struct static_key_true dd_key_true; + struct static_key_false dd_key_false; + } key; +}; + +struct drm_object_properties; + +struct drm_mode_object { + uint32_t id; + uint32_t type; + struct drm_object_properties *properties; + struct kref refcount; + void (*free_cb)(struct kref *); +}; + +struct drm_property; + +struct drm_object_properties { + int count; + struct drm_property *properties[64]; + uint64_t values[64]; +}; + +struct drm_device; + +struct drm_property { + struct list_head head; + struct drm_mode_object base; + uint32_t flags; + char name[32]; + uint32_t num_values; + uint64_t *values; + struct drm_device *dev; + struct list_head enum_list; +}; + +enum hdmi_infoframe_type { + HDMI_INFOFRAME_TYPE_VENDOR = 129, + HDMI_INFOFRAME_TYPE_AVI = 130, + HDMI_INFOFRAME_TYPE_SPD = 131, + HDMI_INFOFRAME_TYPE_AUDIO = 132, + HDMI_INFOFRAME_TYPE_DRM = 135, +}; + +struct hdmi_any_infoframe { + enum hdmi_infoframe_type type; + unsigned char version; + unsigned char length; +}; + +enum hdmi_colorspace { + HDMI_COLORSPACE_RGB = 0, + HDMI_COLORSPACE_YUV422 = 1, + HDMI_COLORSPACE_YUV444 = 2, + HDMI_COLORSPACE_YUV420 = 3, + HDMI_COLORSPACE_RESERVED4 = 4, + HDMI_COLORSPACE_RESERVED5 = 5, + HDMI_COLORSPACE_RESERVED6 = 6, + HDMI_COLORSPACE_IDO_DEFINED = 7, +}; + +enum hdmi_scan_mode { + HDMI_SCAN_MODE_NONE = 0, + HDMI_SCAN_MODE_OVERSCAN = 1, + HDMI_SCAN_MODE_UNDERSCAN = 2, + HDMI_SCAN_MODE_RESERVED = 3, +}; + +enum hdmi_colorimetry { + HDMI_COLORIMETRY_NONE = 0, + HDMI_COLORIMETRY_ITU_601 = 1, + HDMI_COLORIMETRY_ITU_709 = 2, + HDMI_COLORIMETRY_EXTENDED = 3, +}; + +enum hdmi_picture_aspect { + HDMI_PICTURE_ASPECT_NONE = 0, + HDMI_PICTURE_ASPECT_4_3 = 1, + HDMI_PICTURE_ASPECT_16_9 = 2, + HDMI_PICTURE_ASPECT_64_27 = 3, + HDMI_PICTURE_ASPECT_256_135 = 4, + HDMI_PICTURE_ASPECT_RESERVED = 5, +}; + +enum hdmi_active_aspect { + HDMI_ACTIVE_ASPECT_16_9_TOP = 2, + HDMI_ACTIVE_ASPECT_14_9_TOP = 3, + HDMI_ACTIVE_ASPECT_16_9_CENTER = 4, + HDMI_ACTIVE_ASPECT_PICTURE = 8, + HDMI_ACTIVE_ASPECT_4_3 = 9, + HDMI_ACTIVE_ASPECT_16_9 = 10, + HDMI_ACTIVE_ASPECT_14_9 = 11, + HDMI_ACTIVE_ASPECT_4_3_SP_14_9 = 13, + HDMI_ACTIVE_ASPECT_16_9_SP_14_9 = 14, + HDMI_ACTIVE_ASPECT_16_9_SP_4_3 = 15, +}; + +enum hdmi_extended_colorimetry { + HDMI_EXTENDED_COLORIMETRY_XV_YCC_601 = 0, + HDMI_EXTENDED_COLORIMETRY_XV_YCC_709 = 1, + HDMI_EXTENDED_COLORIMETRY_S_YCC_601 = 2, + HDMI_EXTENDED_COLORIMETRY_OPYCC_601 = 3, + HDMI_EXTENDED_COLORIMETRY_OPRGB = 4, + HDMI_EXTENDED_COLORIMETRY_BT2020_CONST_LUM = 5, + HDMI_EXTENDED_COLORIMETRY_BT2020 = 6, + HDMI_EXTENDED_COLORIMETRY_RESERVED = 7, +}; + +enum hdmi_quantization_range { + HDMI_QUANTIZATION_RANGE_DEFAULT = 0, + HDMI_QUANTIZATION_RANGE_LIMITED = 1, + HDMI_QUANTIZATION_RANGE_FULL = 2, + HDMI_QUANTIZATION_RANGE_RESERVED = 3, +}; + +enum hdmi_nups { + HDMI_NUPS_UNKNOWN = 0, + HDMI_NUPS_HORIZONTAL = 1, + HDMI_NUPS_VERTICAL = 2, + HDMI_NUPS_BOTH = 3, +}; + +enum hdmi_ycc_quantization_range { + HDMI_YCC_QUANTIZATION_RANGE_LIMITED = 0, + HDMI_YCC_QUANTIZATION_RANGE_FULL = 1, +}; + +enum hdmi_content_type { + HDMI_CONTENT_TYPE_GRAPHICS = 0, + HDMI_CONTENT_TYPE_PHOTO = 1, + HDMI_CONTENT_TYPE_CINEMA = 2, + HDMI_CONTENT_TYPE_GAME = 3, +}; + +enum hdmi_metadata_type { + HDMI_STATIC_METADATA_TYPE1 = 0, +}; + +enum hdmi_eotf { + HDMI_EOTF_TRADITIONAL_GAMMA_SDR = 0, + HDMI_EOTF_TRADITIONAL_GAMMA_HDR = 1, + HDMI_EOTF_SMPTE_ST2084 = 2, + HDMI_EOTF_BT_2100_HLG = 3, +}; + +struct hdmi_avi_infoframe { + enum hdmi_infoframe_type type; + unsigned char version; + unsigned char length; + bool itc; + unsigned char pixel_repeat; + enum hdmi_colorspace colorspace; + enum hdmi_scan_mode scan_mode; + enum hdmi_colorimetry colorimetry; + enum hdmi_picture_aspect picture_aspect; + enum hdmi_active_aspect active_aspect; + enum hdmi_extended_colorimetry extended_colorimetry; + enum hdmi_quantization_range quantization_range; + enum hdmi_nups nups; + unsigned char video_code; + enum hdmi_ycc_quantization_range ycc_quantization_range; + enum hdmi_content_type content_type; + short unsigned int top_bar; + short unsigned int bottom_bar; + short unsigned int left_bar; + short unsigned int right_bar; +}; + +struct hdmi_drm_infoframe { + enum hdmi_infoframe_type type; + unsigned char version; + unsigned char length; + enum hdmi_eotf eotf; + enum hdmi_metadata_type metadata_type; + struct { + u16 x; + u16 y; + } display_primaries[3]; + struct { + u16 x; + u16 y; + } white_point; + u16 max_display_mastering_luminance; + u16 min_display_mastering_luminance; + u16 max_cll; + u16 max_fall; +}; + +enum hdmi_spd_sdi { + HDMI_SPD_SDI_UNKNOWN = 0, + HDMI_SPD_SDI_DSTB = 1, + HDMI_SPD_SDI_DVDP = 2, + HDMI_SPD_SDI_DVHS = 3, + HDMI_SPD_SDI_HDDVR = 4, + HDMI_SPD_SDI_DVC = 5, + HDMI_SPD_SDI_DSC = 6, + HDMI_SPD_SDI_VCD = 7, + HDMI_SPD_SDI_GAME = 8, + HDMI_SPD_SDI_PC = 9, + HDMI_SPD_SDI_BD = 10, + HDMI_SPD_SDI_SACD = 11, + HDMI_SPD_SDI_HDDVD = 12, + HDMI_SPD_SDI_PMP = 13, +}; + +struct hdmi_spd_infoframe { + enum hdmi_infoframe_type type; + unsigned char version; + unsigned char length; + char vendor[8]; + char product[16]; + enum hdmi_spd_sdi sdi; +}; + +enum hdmi_audio_coding_type { + HDMI_AUDIO_CODING_TYPE_STREAM = 0, + HDMI_AUDIO_CODING_TYPE_PCM = 1, + HDMI_AUDIO_CODING_TYPE_AC3 = 2, + HDMI_AUDIO_CODING_TYPE_MPEG1 = 3, + HDMI_AUDIO_CODING_TYPE_MP3 = 4, + HDMI_AUDIO_CODING_TYPE_MPEG2 = 5, + HDMI_AUDIO_CODING_TYPE_AAC_LC = 6, + HDMI_AUDIO_CODING_TYPE_DTS = 7, + HDMI_AUDIO_CODING_TYPE_ATRAC = 8, + HDMI_AUDIO_CODING_TYPE_DSD = 9, + HDMI_AUDIO_CODING_TYPE_EAC3 = 10, + HDMI_AUDIO_CODING_TYPE_DTS_HD = 11, + HDMI_AUDIO_CODING_TYPE_MLP = 12, + HDMI_AUDIO_CODING_TYPE_DST = 13, + HDMI_AUDIO_CODING_TYPE_WMA_PRO = 14, + HDMI_AUDIO_CODING_TYPE_CXT = 15, +}; + +enum hdmi_audio_sample_size { + HDMI_AUDIO_SAMPLE_SIZE_STREAM = 0, + HDMI_AUDIO_SAMPLE_SIZE_16 = 1, + HDMI_AUDIO_SAMPLE_SIZE_20 = 2, + HDMI_AUDIO_SAMPLE_SIZE_24 = 3, +}; + +enum hdmi_audio_sample_frequency { + HDMI_AUDIO_SAMPLE_FREQUENCY_STREAM = 0, + HDMI_AUDIO_SAMPLE_FREQUENCY_32000 = 1, + HDMI_AUDIO_SAMPLE_FREQUENCY_44100 = 2, + HDMI_AUDIO_SAMPLE_FREQUENCY_48000 = 3, + HDMI_AUDIO_SAMPLE_FREQUENCY_88200 = 4, + HDMI_AUDIO_SAMPLE_FREQUENCY_96000 = 5, + HDMI_AUDIO_SAMPLE_FREQUENCY_176400 = 6, + HDMI_AUDIO_SAMPLE_FREQUENCY_192000 = 7, +}; + +enum hdmi_audio_coding_type_ext { + HDMI_AUDIO_CODING_TYPE_EXT_CT = 0, + HDMI_AUDIO_CODING_TYPE_EXT_HE_AAC = 1, + HDMI_AUDIO_CODING_TYPE_EXT_HE_AAC_V2 = 2, + HDMI_AUDIO_CODING_TYPE_EXT_MPEG_SURROUND = 3, + HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_HE_AAC = 4, + HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_HE_AAC_V2 = 5, + HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_AAC_LC = 6, + HDMI_AUDIO_CODING_TYPE_EXT_DRA = 7, + HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_HE_AAC_SURROUND = 8, + HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_AAC_LC_SURROUND = 10, +}; + +struct hdmi_audio_infoframe { + enum hdmi_infoframe_type type; + unsigned char version; + unsigned char length; + unsigned char channels; + enum hdmi_audio_coding_type coding_type; + enum hdmi_audio_sample_size sample_size; + enum hdmi_audio_sample_frequency sample_frequency; + enum hdmi_audio_coding_type_ext coding_type_ext; + unsigned char channel_allocation; + unsigned char level_shift_value; + bool downmix_inhibit; +}; + +enum hdmi_3d_structure { + HDMI_3D_STRUCTURE_INVALID = -1, + HDMI_3D_STRUCTURE_FRAME_PACKING = 0, + HDMI_3D_STRUCTURE_FIELD_ALTERNATIVE = 1, + HDMI_3D_STRUCTURE_LINE_ALTERNATIVE = 2, + HDMI_3D_STRUCTURE_SIDE_BY_SIDE_FULL = 3, + HDMI_3D_STRUCTURE_L_DEPTH = 4, + HDMI_3D_STRUCTURE_L_DEPTH_GFX_GFX_DEPTH = 5, + HDMI_3D_STRUCTURE_TOP_AND_BOTTOM = 6, + HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF = 8, +}; + +struct hdmi_vendor_infoframe { + enum hdmi_infoframe_type type; + unsigned char version; + unsigned char length; + unsigned int oui; + u8 vic; + enum hdmi_3d_structure s3d_struct; + unsigned int s3d_ext_data; +}; + +struct hdr_static_metadata { + __u8 eotf; + __u8 metadata_type; + __u16 max_cll; + __u16 max_fall; + __u16 min_cll; +}; + +struct hdr_sink_metadata { + __u32 metadata_type; + union { + struct hdr_static_metadata hdmi_type1; + }; +}; + +union hdmi_vendor_any_infoframe { + struct { + enum hdmi_infoframe_type type; + unsigned char version; + unsigned char length; + unsigned int oui; + } any; + struct hdmi_vendor_infoframe hdmi; +}; + +union hdmi_infoframe { + struct hdmi_any_infoframe any; + struct hdmi_avi_infoframe avi; + struct hdmi_spd_infoframe spd; + union hdmi_vendor_any_infoframe vendor; + struct hdmi_audio_infoframe audio; + struct hdmi_drm_infoframe drm; +}; + +typedef unsigned int drm_magic_t; + +struct drm_event { + __u32 type; + __u32 length; +}; + +struct drm_event_vblank { + struct drm_event base; + __u64 user_data; + __u32 tv_sec; + __u32 tv_usec; + __u32 sequence; + __u32 crtc_id; +}; + +struct drm_event_crtc_sequence { + struct drm_event base; + __u64 user_data; + __s64 time_ns; + __u64 sequence; +}; + +enum drm_mode_subconnector { + DRM_MODE_SUBCONNECTOR_Automatic = 0, + DRM_MODE_SUBCONNECTOR_Unknown = 0, + DRM_MODE_SUBCONNECTOR_VGA = 1, + DRM_MODE_SUBCONNECTOR_DVID = 3, + DRM_MODE_SUBCONNECTOR_DVIA = 4, + DRM_MODE_SUBCONNECTOR_Composite = 5, + DRM_MODE_SUBCONNECTOR_SVIDEO = 6, + DRM_MODE_SUBCONNECTOR_Component = 8, + DRM_MODE_SUBCONNECTOR_SCART = 9, + DRM_MODE_SUBCONNECTOR_DisplayPort = 10, + DRM_MODE_SUBCONNECTOR_HDMIA = 11, + DRM_MODE_SUBCONNECTOR_Native = 15, + DRM_MODE_SUBCONNECTOR_Wireless = 18, +}; + +struct drm_mode_fb_cmd2 { + __u32 fb_id; + __u32 width; + __u32 height; + __u32 pixel_format; + __u32 flags; + __u32 handles[4]; + __u32 pitches[4]; + __u32 offsets[4]; + __u64 modifier[4]; +}; + +struct drm_mode_create_dumb { + __u32 height; + __u32 width; + __u32 bpp; + __u32 flags; + __u32 handle; + __u32 pitch; + __u64 size; +}; + +struct drm_mode_config_funcs; + +struct drm_atomic_state; + +struct drm_mode_config_helper_funcs; + +struct drm_mode_config { + struct mutex mutex; + struct drm_modeset_lock connection_mutex; + struct drm_modeset_acquire_ctx *acquire_ctx; + struct mutex idr_mutex; + struct idr object_idr; + struct idr tile_idr; + struct mutex fb_lock; + int num_fb; + struct list_head fb_list; + spinlock_t connector_list_lock; + int num_connector; + struct ida connector_ida; + struct list_head connector_list; + struct llist_head connector_free_list; + struct work_struct connector_free_work; + int num_encoder; + struct list_head encoder_list; + int num_total_plane; + struct list_head plane_list; + struct raw_spinlock panic_lock; + int num_crtc; + struct list_head crtc_list; + struct list_head property_list; + struct list_head privobj_list; + int min_width; + int min_height; + int max_width; + int max_height; + const struct drm_mode_config_funcs *funcs; + bool poll_enabled; + bool poll_running; + bool delayed_event; + struct delayed_work output_poll_work; + struct mutex blob_lock; + struct list_head property_blob_list; + struct drm_property *edid_property; + struct drm_property *dpms_property; + struct drm_property *path_property; + struct drm_property *tile_property; + struct drm_property *link_status_property; + struct drm_property *plane_type_property; + struct drm_property *prop_src_x; + struct drm_property *prop_src_y; + struct drm_property *prop_src_w; + struct drm_property *prop_src_h; + struct drm_property *prop_crtc_x; + struct drm_property *prop_crtc_y; + struct drm_property *prop_crtc_w; + struct drm_property *prop_crtc_h; + struct drm_property *prop_fb_id; + struct drm_property *prop_in_fence_fd; + struct drm_property *prop_out_fence_ptr; + struct drm_property *prop_crtc_id; + struct drm_property *prop_fb_damage_clips; + struct drm_property *prop_active; + struct drm_property *prop_mode_id; + struct drm_property *prop_vrr_enabled; + struct drm_property *dvi_i_subconnector_property; + struct drm_property *dvi_i_select_subconnector_property; + struct drm_property *dp_subconnector_property; + struct drm_property *tv_subconnector_property; + struct drm_property *tv_select_subconnector_property; + struct drm_property *legacy_tv_mode_property; + struct drm_property *tv_mode_property; + struct drm_property *tv_left_margin_property; + struct drm_property *tv_right_margin_property; + struct drm_property *tv_top_margin_property; + struct drm_property *tv_bottom_margin_property; + struct drm_property *tv_brightness_property; + struct drm_property *tv_contrast_property; + struct drm_property *tv_flicker_reduction_property; + struct drm_property *tv_overscan_property; + struct drm_property *tv_saturation_property; + struct drm_property *tv_hue_property; + struct drm_property *scaling_mode_property; + struct drm_property *aspect_ratio_property; + struct drm_property *content_type_property; + struct drm_property *degamma_lut_property; + struct drm_property *degamma_lut_size_property; + struct drm_property *ctm_property; + struct drm_property *gamma_lut_property; + struct drm_property *gamma_lut_size_property; + struct drm_property *suggested_x_property; + struct drm_property *suggested_y_property; + struct drm_property *non_desktop_property; + struct drm_property *panel_orientation_property; + struct drm_property *writeback_fb_id_property; + struct drm_property *writeback_pixel_formats_property; + struct drm_property *writeback_out_fence_ptr_property; + struct drm_property *hdr_output_metadata_property; + struct drm_property *content_protection_property; + struct drm_property *hdcp_content_type_property; + uint32_t preferred_depth; + uint32_t prefer_shadow; + bool quirk_addfb_prefer_xbgr_30bpp; + bool quirk_addfb_prefer_host_byte_order; + bool async_page_flip; + bool fb_modifiers_not_supported; + bool normalize_zpos; + struct drm_property *modifiers_property; + struct drm_property *size_hints_property; + uint32_t cursor_width; + uint32_t cursor_height; + struct drm_atomic_state *suspend_state; + const struct drm_mode_config_helper_funcs *helper_private; +}; + +struct drm_vram_mm; + +enum switch_power_state { + DRM_SWITCH_POWER_ON = 0, + DRM_SWITCH_POWER_OFF = 1, + DRM_SWITCH_POWER_CHANGING = 2, + DRM_SWITCH_POWER_DYNAMIC_OFF = 3, +}; + +struct drm_driver; + +struct drm_minor; + +struct drm_master; + +struct drm_vblank_crtc; + +struct drm_vma_offset_manager; + +struct drm_fb_helper; + +struct drm_device { + int if_version; + struct kref ref; + struct device *dev; + struct { + struct list_head resources; + void *final_kfree; + spinlock_t lock; + } managed; + const struct drm_driver *driver; + void *dev_private; + struct drm_minor *primary; + struct drm_minor *render; + struct drm_minor *accel; + bool registered; + struct drm_master *master; + u32 driver_features; + bool unplugged; + struct inode *anon_inode; + char *unique; + struct mutex struct_mutex; + struct mutex master_mutex; + atomic_t open_count; + struct mutex filelist_mutex; + struct list_head filelist; + struct list_head filelist_internal; + struct mutex clientlist_mutex; + struct list_head clientlist; + bool vblank_disable_immediate; + struct drm_vblank_crtc *vblank; + spinlock_t vblank_time_lock; + spinlock_t vbl_lock; + u32 max_vblank_count; + struct list_head vblank_event_list; + spinlock_t event_lock; + unsigned int num_crtcs; + struct drm_mode_config mode_config; + struct mutex object_name_lock; + struct idr object_name_idr; + struct drm_vma_offset_manager *vma_offset_manager; + struct drm_vram_mm *vram_mm; + enum switch_power_state switch_power_state; + struct drm_fb_helper *fb_helper; + struct dentry *debugfs_root; +}; + +struct drm_property_blob { + struct drm_mode_object base; + struct drm_device *dev; + struct list_head head_global; + struct list_head head_file; + size_t length; + void *data; +}; + +enum drm_connector_force { + DRM_FORCE_UNSPECIFIED = 0, + DRM_FORCE_OFF = 1, + DRM_FORCE_ON = 2, + DRM_FORCE_ON_DIGITAL = 3, +}; + +enum drm_connector_status { + connector_status_connected = 1, + connector_status_disconnected = 2, + connector_status_unknown = 3, +}; + +enum drm_connector_registration_state { + DRM_CONNECTOR_INITIALIZING = 0, + DRM_CONNECTOR_REGISTERED = 1, + DRM_CONNECTOR_UNREGISTERED = 2, +}; + +enum subpixel_order { + SubPixelUnknown = 0, + SubPixelHorizontalRGB = 1, + SubPixelHorizontalBGR = 2, + SubPixelVerticalRGB = 3, + SubPixelVerticalBGR = 4, + SubPixelNone = 5, +}; + +enum drm_connector_tv_mode { + DRM_MODE_TV_MODE_NTSC = 0, + DRM_MODE_TV_MODE_NTSC_443 = 1, + DRM_MODE_TV_MODE_NTSC_J = 2, + DRM_MODE_TV_MODE_PAL = 3, + DRM_MODE_TV_MODE_PAL_M = 4, + DRM_MODE_TV_MODE_PAL_N = 5, + DRM_MODE_TV_MODE_SECAM = 6, + DRM_MODE_TV_MODE_MONOCHROME = 7, + DRM_MODE_TV_MODE_MAX = 8, +}; + +struct drm_scrambling { + bool supported; + bool low_rates; +}; + +struct drm_scdc { + bool supported; + bool read_request; + struct drm_scrambling scrambling; +}; + +struct drm_hdmi_dsc_cap { + bool v_1p2; + bool native_420; + bool all_bpp; + u8 bpc_supported; + u8 max_slices; + int clk_per_slice; + u8 max_lanes; + u8 max_frl_rate_per_lane; + u8 total_chunk_kbytes; +}; + +struct drm_hdmi_info { + struct drm_scdc scdc; + long unsigned int y420_vdb_modes[4]; + long unsigned int y420_cmdb_modes[4]; + u8 y420_dc_modes; + u8 max_frl_rate_per_lane; + u8 max_lanes; + struct drm_hdmi_dsc_cap dsc_cap; +}; + +enum drm_link_status { + DRM_LINK_STATUS_GOOD = 0, + DRM_LINK_STATUS_BAD = 1, +}; + +enum drm_panel_orientation { + DRM_MODE_PANEL_ORIENTATION_UNKNOWN = -1, + DRM_MODE_PANEL_ORIENTATION_NORMAL = 0, + DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP = 1, + DRM_MODE_PANEL_ORIENTATION_LEFT_UP = 2, + DRM_MODE_PANEL_ORIENTATION_RIGHT_UP = 3, +}; + +enum drm_hdmi_broadcast_rgb { + DRM_HDMI_BROADCAST_RGB_AUTO = 0, + DRM_HDMI_BROADCAST_RGB_FULL = 1, + DRM_HDMI_BROADCAST_RGB_LIMITED = 2, +}; + +struct drm_monitor_range_info { + u16 min_vfreq; + u16 max_vfreq; +}; + +struct drm_luminance_range_info { + u32 min_luminance; + u32 max_luminance; +}; + +enum drm_privacy_screen_status { + PRIVACY_SCREEN_DISABLED = 0, + PRIVACY_SCREEN_ENABLED = 1, + PRIVACY_SCREEN_DISABLED_LOCKED = 2, + PRIVACY_SCREEN_ENABLED_LOCKED = 3, +}; + +enum drm_colorspace { + DRM_MODE_COLORIMETRY_DEFAULT = 0, + DRM_MODE_COLORIMETRY_NO_DATA = 0, + DRM_MODE_COLORIMETRY_SMPTE_170M_YCC = 1, + DRM_MODE_COLORIMETRY_BT709_YCC = 2, + DRM_MODE_COLORIMETRY_XVYCC_601 = 3, + DRM_MODE_COLORIMETRY_XVYCC_709 = 4, + DRM_MODE_COLORIMETRY_SYCC_601 = 5, + DRM_MODE_COLORIMETRY_OPYCC_601 = 6, + DRM_MODE_COLORIMETRY_OPRGB = 7, + DRM_MODE_COLORIMETRY_BT2020_CYCC = 8, + DRM_MODE_COLORIMETRY_BT2020_RGB = 9, + DRM_MODE_COLORIMETRY_BT2020_YCC = 10, + DRM_MODE_COLORIMETRY_DCI_P3_RGB_D65 = 11, + DRM_MODE_COLORIMETRY_DCI_P3_RGB_THEATER = 12, + DRM_MODE_COLORIMETRY_RGB_WIDE_FIXED = 13, + DRM_MODE_COLORIMETRY_RGB_WIDE_FLOAT = 14, + DRM_MODE_COLORIMETRY_BT601_YCC = 15, + DRM_MODE_COLORIMETRY_COUNT = 16, +}; + +struct drm_display_info { + unsigned int width_mm; + unsigned int height_mm; + unsigned int bpc; + enum subpixel_order subpixel_order; + int panel_orientation; + u32 color_formats; + const u32 *bus_formats; + unsigned int num_bus_formats; + u32 bus_flags; + int max_tmds_clock; + bool dvi_dual; + bool is_hdmi; + bool has_audio; + bool has_hdmi_infoframe; + bool rgb_quant_range_selectable; + u8 edid_hdmi_rgb444_dc_modes; + u8 edid_hdmi_ycbcr444_dc_modes; + u8 cea_rev; + struct drm_hdmi_info hdmi; + bool non_desktop; + struct drm_monitor_range_info monitor_range; + struct drm_luminance_range_info luminance_range; + u8 mso_stream_count; + u8 mso_pixel_overlap; + u32 max_dsc_bpp; + u8 *vics; + int vics_len; + u32 quirks; + u16 source_physical_address; +}; + +struct drm_connector_tv_margins { + unsigned int bottom; + unsigned int left; + unsigned int right; + unsigned int top; +}; + +struct drm_tv_connector_state { + enum drm_mode_subconnector select_subconnector; + enum drm_mode_subconnector subconnector; + struct drm_connector_tv_margins margins; + unsigned int legacy_mode; + unsigned int mode; + unsigned int brightness; + unsigned int contrast; + unsigned int flicker_reduction; + unsigned int overscan; + unsigned int saturation; + unsigned int hue; +}; + +struct drm_connector_hdmi_infoframe { + union hdmi_infoframe data; + bool set; +}; + +struct drm_connector_hdmi_state { + enum drm_hdmi_broadcast_rgb broadcast_rgb; + struct { + struct drm_connector_hdmi_infoframe avi; + struct drm_connector_hdmi_infoframe hdr_drm; + struct drm_connector_hdmi_infoframe spd; + struct drm_connector_hdmi_infoframe hdmi; + } infoframes; + bool is_limited_range; + unsigned int output_bpc; + enum hdmi_colorspace output_format; + long long unsigned int tmds_char_rate; +}; + +struct drm_connector; + +struct drm_crtc; + +struct drm_encoder; + +struct drm_crtc_commit; + +struct drm_writeback_job; + +struct drm_connector_state { + struct drm_connector *connector; + struct drm_crtc *crtc; + struct drm_encoder *best_encoder; + enum drm_link_status link_status; + struct drm_atomic_state *state; + struct drm_crtc_commit *commit; + struct drm_tv_connector_state tv; + bool self_refresh_aware; + enum hdmi_picture_aspect picture_aspect_ratio; + unsigned int content_type; + unsigned int hdcp_content_type; + unsigned int scaling_mode; + unsigned int content_protection; + enum drm_colorspace colorspace; + struct drm_writeback_job *writeback_job; + u8 max_requested_bpc; + u8 max_bpc; + enum drm_privacy_screen_status privacy_screen_sw_state; + struct drm_property_blob *hdr_output_metadata; + struct drm_connector_hdmi_state hdmi; +}; + +struct drm_privacy_screen; + +struct drm_cmdline_mode { + char name[32]; + bool specified; + bool refresh_specified; + bool bpp_specified; + unsigned int pixel_clock; + int xres; + int yres; + int bpp; + int refresh; + bool rb; + bool interlace; + bool cvt; + bool margins; + enum drm_connector_force force; + unsigned int rotation_reflection; + enum drm_panel_orientation panel_orientation; + struct drm_connector_tv_margins tv_margins; + enum drm_connector_tv_mode tv_mode; + bool tv_mode_specified; +}; + +struct drm_connector_hdmi_funcs; + +struct drm_connector_hdmi { + unsigned char vendor[8]; + unsigned char product[16]; + long unsigned int supported_formats; + const struct drm_connector_hdmi_funcs *funcs; + struct { + struct mutex lock; + struct drm_connector_hdmi_infoframe audio; + } infoframes; +}; + +struct drm_connector_funcs; + +struct drm_connector_helper_funcs; + +struct drm_edid; + +struct i2c_adapter; + +struct drm_tile_group; + +struct drm_connector { + struct drm_device *dev; + struct device *kdev; + struct device_attribute *attr; + struct fwnode_handle *fwnode; + struct list_head head; + struct list_head global_connector_list_entry; + struct drm_mode_object base; + char *name; + struct mutex mutex; + unsigned int index; + int connector_type; + int connector_type_id; + bool interlace_allowed; + bool doublescan_allowed; + bool stereo_allowed; + bool ycbcr_420_allowed; + enum drm_connector_registration_state registration_state; + struct list_head modes; + enum drm_connector_status status; + struct list_head probed_modes; + struct drm_display_info display_info; + const struct drm_connector_funcs *funcs; + struct drm_property_blob *edid_blob_ptr; + struct drm_object_properties properties; + struct drm_property *scaling_mode_property; + struct drm_property *vrr_capable_property; + struct drm_property *colorspace_property; + struct drm_property_blob *path_blob_ptr; + unsigned int max_bpc; + struct drm_property *max_bpc_property; + struct drm_privacy_screen *privacy_screen; + struct notifier_block privacy_screen_notifier; + struct drm_property *privacy_screen_sw_state_property; + struct drm_property *privacy_screen_hw_state_property; + struct drm_property *broadcast_rgb_property; + uint8_t polled; + int dpms; + const struct drm_connector_helper_funcs *helper_private; + struct drm_cmdline_mode cmdline_mode; + enum drm_connector_force force; + const struct drm_edid *edid_override; + struct mutex edid_override_mutex; + u64 epoch_counter; + u32 possible_encoders; + struct drm_encoder *encoder; + uint8_t eld[128]; + struct mutex eld_mutex; + bool latency_present[2]; + int video_latency[2]; + int audio_latency[2]; + struct i2c_adapter *ddc; + int null_edid_counter; + unsigned int bad_edid_counter; + bool edid_corrupt; + u8 real_edid_checksum; + struct dentry *debugfs_entry; + struct drm_connector_state *state; + struct drm_property_blob *tile_blob_ptr; + bool has_tile; + struct drm_tile_group *tile_group; + bool tile_is_single_monitor; + uint8_t num_h_tile; + uint8_t num_v_tile; + uint8_t tile_h_loc; + uint8_t tile_v_loc; + uint16_t tile_h_size; + uint16_t tile_v_size; + struct llist_node free_node; + struct hdr_sink_metadata hdr_sink_metadata; + struct drm_connector_hdmi hdmi; +}; + +enum drm_mode_status { + MODE_OK = 0, + MODE_HSYNC = 1, + MODE_VSYNC = 2, + MODE_H_ILLEGAL = 3, + MODE_V_ILLEGAL = 4, + MODE_BAD_WIDTH = 5, + MODE_NOMODE = 6, + MODE_NO_INTERLACE = 7, + MODE_NO_DBLESCAN = 8, + MODE_NO_VSCAN = 9, + MODE_MEM = 10, + MODE_VIRTUAL_X = 11, + MODE_VIRTUAL_Y = 12, + MODE_MEM_VIRT = 13, + MODE_NOCLOCK = 14, + MODE_CLOCK_HIGH = 15, + MODE_CLOCK_LOW = 16, + MODE_CLOCK_RANGE = 17, + MODE_BAD_HVALUE = 18, + MODE_BAD_VVALUE = 19, + MODE_BAD_VSCAN = 20, + MODE_HSYNC_NARROW = 21, + MODE_HSYNC_WIDE = 22, + MODE_HBLANK_NARROW = 23, + MODE_HBLANK_WIDE = 24, + MODE_VSYNC_NARROW = 25, + MODE_VSYNC_WIDE = 26, + MODE_VBLANK_NARROW = 27, + MODE_VBLANK_WIDE = 28, + MODE_PANEL = 29, + MODE_INTERLACE_WIDTH = 30, + MODE_ONE_WIDTH = 31, + MODE_ONE_HEIGHT = 32, + MODE_ONE_SIZE = 33, + MODE_NO_REDUCED = 34, + MODE_NO_STEREO = 35, + MODE_NO_420 = 36, + MODE_STALE = -3, + MODE_BAD = -2, + MODE_ERROR = -1, +}; + +struct drm_display_mode { + int clock; + u16 hdisplay; + u16 hsync_start; + u16 hsync_end; + u16 htotal; + u16 hskew; + u16 vdisplay; + u16 vsync_start; + u16 vsync_end; + u16 vtotal; + u16 vscan; + u32 flags; + int crtc_clock; + u16 crtc_hdisplay; + u16 crtc_hblank_start; + u16 crtc_hblank_end; + u16 crtc_hsync_start; + u16 crtc_hsync_end; + u16 crtc_htotal; + u16 crtc_hskew; + u16 crtc_vdisplay; + u16 crtc_vblank_start; + u16 crtc_vblank_end; + u16 crtc_vsync_start; + u16 crtc_vsync_end; + u16 crtc_vtotal; + u16 width_mm; + u16 height_mm; + u8 type; + bool expose_to_userspace; + struct list_head head; + char name[32]; + enum drm_mode_status status; + enum hdmi_picture_aspect picture_aspect_ratio; +}; + +struct drm_crtc_crc_entry; + +struct drm_crtc_crc { + spinlock_t lock; + const char *source; + bool opened; + bool overflow; + struct drm_crtc_crc_entry *entries; + int head; + int tail; + size_t values_cnt; + wait_queue_head_t wq; +}; + +struct drm_plane; + +struct drm_crtc_funcs; + +struct drm_crtc_helper_funcs; + +struct drm_crtc_state; + +struct drm_self_refresh_data; + +struct drm_crtc { + struct drm_device *dev; + struct device_node *port; + struct list_head head; + char *name; + struct drm_modeset_lock mutex; + struct drm_mode_object base; + struct drm_plane *primary; + struct drm_plane *cursor; + unsigned int index; + int cursor_x; + int cursor_y; + bool enabled; + struct drm_display_mode mode; + struct drm_display_mode hwmode; + int x; + int y; + const struct drm_crtc_funcs *funcs; + uint32_t gamma_size; + uint16_t *gamma_store; + const struct drm_crtc_helper_funcs *helper_private; + struct drm_object_properties properties; + struct drm_property *scaling_filter_property; + struct drm_crtc_state *state; + struct list_head commit_list; + spinlock_t commit_lock; + struct dentry *debugfs_entry; + struct drm_crtc_crc crc; + unsigned int fence_context; + spinlock_t fence_lock; + long unsigned int fence_seqno; + char timeline_name[32]; + struct drm_self_refresh_data *self_refresh_data; +}; + +struct drm_encoder_funcs; + +struct drm_encoder_helper_funcs; + +struct drm_encoder { + struct drm_device *dev; + struct list_head head; + struct drm_mode_object base; + char *name; + int encoder_type; + unsigned int index; + uint32_t possible_crtcs; + uint32_t possible_clones; + struct drm_crtc *crtc; + struct list_head bridge_chain; + const struct drm_encoder_funcs *funcs; + const struct drm_encoder_helper_funcs *helper_private; + struct dentry *debugfs_entry; +}; + +struct __drm_planes_state; + +struct __drm_crtcs_state; + +struct __drm_connnectors_state; + +struct __drm_private_objs_state; + +struct drm_atomic_state { + struct kref ref; + struct drm_device *dev; + bool allow_modeset: 1; + bool legacy_cursor_update: 1; + bool async_update: 1; + bool duplicated: 1; + struct __drm_planes_state *planes; + struct __drm_crtcs_state *crtcs; + int num_connector; + struct __drm_connnectors_state *connectors; + int num_private_objs; + struct __drm_private_objs_state *private_objs; + struct drm_modeset_acquire_ctx *acquire_ctx; + struct drm_crtc_commit *fake_commit; + struct work_struct commit_work; +}; + +struct drm_pending_vblank_event; + +struct drm_crtc_commit { + struct drm_crtc *crtc; + struct kref ref; + struct completion flip_done; + struct completion hw_done; + struct completion cleanup_done; + struct list_head commit_entry; + struct drm_pending_vblank_event *event; + bool abort_completion; +}; + +struct drm_connector_hdmi_funcs { + enum drm_mode_status (*tmds_char_rate_valid)(const struct drm_connector *, const struct drm_display_mode *, long long unsigned int); + int (*clear_infoframe)(struct drm_connector *, enum hdmi_infoframe_type); + int (*write_infoframe)(struct drm_connector *, enum hdmi_infoframe_type, const u8 *, size_t); +}; + +struct drm_printer; + +struct drm_connector_funcs { + int (*dpms)(struct drm_connector *, int); + void (*reset)(struct drm_connector *); + enum drm_connector_status (*detect)(struct drm_connector *, bool); + void (*force)(struct drm_connector *); + int (*fill_modes)(struct drm_connector *, uint32_t, uint32_t); + int (*set_property)(struct drm_connector *, struct drm_property *, uint64_t); + int (*late_register)(struct drm_connector *); + void (*early_unregister)(struct drm_connector *); + void (*destroy)(struct drm_connector *); + struct drm_connector_state * (*atomic_duplicate_state)(struct drm_connector *); + void (*atomic_destroy_state)(struct drm_connector *, struct drm_connector_state *); + int (*atomic_set_property)(struct drm_connector *, struct drm_connector_state *, struct drm_property *, uint64_t); + int (*atomic_get_property)(struct drm_connector *, const struct drm_connector_state *, struct drm_property *, uint64_t *); + void (*atomic_print_state)(struct drm_printer *, const struct drm_connector_state *); + void (*oob_hotplug_event)(struct drm_connector *, enum drm_connector_status); + void (*debugfs_init)(struct drm_connector *, struct dentry *); +}; + +enum drm_debug_category { + DRM_UT_CORE = 0, + DRM_UT_DRIVER = 1, + DRM_UT_KMS = 2, + DRM_UT_PRIME = 3, + DRM_UT_ATOMIC = 4, + DRM_UT_VBL = 5, + DRM_UT_STATE = 6, + DRM_UT_LEASE = 7, + DRM_UT_DP = 8, + DRM_UT_DRMRES = 9, +}; + +struct drm_printer { + void (*printfn)(struct drm_printer *, struct va_format *); + void (*puts)(struct drm_printer *, const char *); + void *arg; + const void *origin; + const char *prefix; + enum drm_debug_category category; +}; + +struct drm_writeback_connector; + +struct drm_connector_helper_funcs { + int (*get_modes)(struct drm_connector *); + int (*detect_ctx)(struct drm_connector *, struct drm_modeset_acquire_ctx *, bool); + enum drm_mode_status (*mode_valid)(struct drm_connector *, struct drm_display_mode *); + int (*mode_valid_ctx)(struct drm_connector *, struct drm_display_mode *, struct drm_modeset_acquire_ctx *, enum drm_mode_status *); + struct drm_encoder * (*best_encoder)(struct drm_connector *); + struct drm_encoder * (*atomic_best_encoder)(struct drm_connector *, struct drm_atomic_state *); + int (*atomic_check)(struct drm_connector *, struct drm_atomic_state *); + void (*atomic_commit)(struct drm_connector *, struct drm_atomic_state *); + int (*prepare_writeback_job)(struct drm_writeback_connector *, struct drm_writeback_job *); + void (*cleanup_writeback_job)(struct drm_writeback_connector *, struct drm_writeback_job *); + void (*enable_hpd)(struct drm_connector *); + void (*disable_hpd)(struct drm_connector *); +}; + +struct edid; + +struct drm_edid { + size_t size; + const struct edid *edid; +}; + +struct drm_tile_group { + struct kref refcount; + struct drm_device *dev; + int id; + u8 group_data[8]; +}; + +struct drm_connector_list_iter { + struct drm_device *dev; + struct drm_connector *conn; +}; + +struct drm_framebuffer; + +struct drm_file; + +struct drm_format_info; + +struct drm_mode_config_funcs { + struct drm_framebuffer * (*fb_create)(struct drm_device *, struct drm_file *, const struct drm_mode_fb_cmd2 *); + const struct drm_format_info * (*get_format_info)(const struct drm_mode_fb_cmd2 *); + enum drm_mode_status (*mode_valid)(struct drm_device *, const struct drm_display_mode *); + int (*atomic_check)(struct drm_device *, struct drm_atomic_state *); + int (*atomic_commit)(struct drm_device *, struct drm_atomic_state *, bool); + struct drm_atomic_state * (*atomic_state_alloc)(struct drm_device *); + void (*atomic_state_clear)(struct drm_atomic_state *); + void (*atomic_state_free)(struct drm_atomic_state *); +}; + +struct drm_prime_file_private { + struct mutex lock; + struct rb_root dmabufs; + struct rb_root handles; +}; + +struct drm_file { + bool authenticated; + bool stereo_allowed; + bool universal_planes; + bool atomic; + bool aspect_ratio_allowed; + bool writeback_connectors; + bool was_master; + bool is_master; + bool supports_virtualized_cursor_plane; + struct drm_master *master; + spinlock_t master_lookup_lock; + struct pid *pid; + u64 client_id; + drm_magic_t magic; + struct list_head lhead; + struct drm_minor *minor; + struct idr object_idr; + spinlock_t table_lock; + struct idr syncobj_idr; + spinlock_t syncobj_table_lock; + struct file *filp; + void *driver_priv; + struct list_head fbs; + struct mutex fbs_lock; + struct list_head blobs; + wait_queue_head_t event_wait; + struct list_head pending_event_list; + struct list_head event_list; + int event_space; + struct mutex event_read_lock; + struct drm_prime_file_private prime; +}; + +struct drm_format_info { + u32 format; + u8 depth; + u8 num_planes; + union { + u8 cpp[4]; + u8 char_per_block[4]; + }; + u8 block_w[4]; + u8 block_h[4]; + u8 hsub; + u8 vsub; + bool has_alpha; + bool is_yuv; + bool is_color_indexed; +}; + +struct drm_mode_config_helper_funcs { + void (*atomic_commit_tail)(struct drm_atomic_state *); + int (*atomic_commit_setup)(struct drm_atomic_state *); +}; + +struct drm_gem_object; + +struct dma_buf; + +struct dma_buf_attachment; + +struct drm_fb_helper_surface_size; + +struct drm_ioctl_desc; + +struct drm_driver { + int (*load)(struct drm_device *, long unsigned int); + int (*open)(struct drm_device *, struct drm_file *); + void (*postclose)(struct drm_device *, struct drm_file *); + void (*unload)(struct drm_device *); + void (*release)(struct drm_device *); + void (*master_set)(struct drm_device *, struct drm_file *, bool); + void (*master_drop)(struct drm_device *, struct drm_file *); + void (*debugfs_init)(struct drm_minor *); + struct drm_gem_object * (*gem_create_object)(struct drm_device *, size_t); + int (*prime_handle_to_fd)(struct drm_device *, struct drm_file *, uint32_t, uint32_t, int *); + int (*prime_fd_to_handle)(struct drm_device *, struct drm_file *, int, uint32_t *); + struct drm_gem_object * (*gem_prime_import)(struct drm_device *, struct dma_buf *); + struct drm_gem_object * (*gem_prime_import_sg_table)(struct drm_device *, struct dma_buf_attachment *, struct sg_table *); + int (*dumb_create)(struct drm_file *, struct drm_device *, struct drm_mode_create_dumb *); + int (*dumb_map_offset)(struct drm_file *, struct drm_device *, uint32_t, uint64_t *); + int (*fbdev_probe)(struct drm_fb_helper *, struct drm_fb_helper_surface_size *); + void (*show_fdinfo)(struct drm_printer *, struct drm_file *); + int major; + int minor; + int patchlevel; + char *name; + char *desc; + char *date; + u32 driver_features; + const struct drm_ioctl_desc *ioctls; + int num_ioctls; + const struct file_operations *fops; +}; + +struct drm_minor { + int index; + int type; + struct device *kdev; + struct drm_device *dev; + struct dentry *debugfs_symlink; + struct dentry *debugfs_root; +}; + +struct drm_vblank_crtc_config { + int offdelay_ms; + bool disable_immediate; +}; + +struct kthread_worker; + +struct drm_vblank_crtc { + struct drm_device *dev; + wait_queue_head_t queue; + struct timer_list disable_timer; + seqlock_t seqlock; + atomic64_t count; + ktime_t time; + atomic_t refcount; + u32 last; + u32 max_vblank_count; + unsigned int inmodeset; + unsigned int pipe; + int framedur_ns; + int linedur_ns; + struct drm_display_mode hwmode; + struct drm_vblank_crtc_config config; + bool enabled; + struct kthread_worker *worker; + struct list_head pending_work; + wait_queue_head_t work_wait_queue; +}; + +enum drm_color_encoding { + DRM_COLOR_YCBCR_BT601 = 0, + DRM_COLOR_YCBCR_BT709 = 1, + DRM_COLOR_YCBCR_BT2020 = 2, + DRM_COLOR_ENCODING_MAX = 3, +}; + +enum drm_color_range { + DRM_COLOR_YCBCR_LIMITED_RANGE = 0, + DRM_COLOR_YCBCR_FULL_RANGE = 1, + DRM_COLOR_RANGE_MAX = 2, +}; + +struct drm_rect { + int x1; + int y1; + int x2; + int y2; +}; + +enum drm_scaling_filter { + DRM_SCALING_FILTER_DEFAULT = 0, + DRM_SCALING_FILTER_NEAREST_NEIGHBOR = 1, +}; + +struct dma_fence; + +struct drm_plane_state { + struct drm_plane *plane; + struct drm_crtc *crtc; + struct drm_framebuffer *fb; + struct dma_fence *fence; + int32_t crtc_x; + int32_t crtc_y; + uint32_t crtc_w; + uint32_t crtc_h; + uint32_t src_x; + uint32_t src_y; + uint32_t src_h; + uint32_t src_w; + int32_t hotspot_x; + int32_t hotspot_y; + u16 alpha; + uint16_t pixel_blend_mode; + unsigned int rotation; + unsigned int zpos; + unsigned int normalized_zpos; + enum drm_color_encoding color_encoding; + enum drm_color_range color_range; + struct drm_property_blob *fb_damage_clips; + bool ignore_damage_clips; + struct drm_rect src; + struct drm_rect dst; + bool visible; + enum drm_scaling_filter scaling_filter; + struct drm_crtc_commit *commit; + struct drm_atomic_state *state; + bool color_mgmt_changed: 1; +}; + +enum drm_plane_type { + DRM_PLANE_TYPE_OVERLAY = 0, + DRM_PLANE_TYPE_PRIMARY = 1, + DRM_PLANE_TYPE_CURSOR = 2, +}; + +struct drm_plane_funcs; + +struct drm_plane_helper_funcs; + +struct drm_plane { + struct drm_device *dev; + struct list_head head; + char *name; + struct drm_modeset_lock mutex; + struct drm_mode_object base; + uint32_t possible_crtcs; + uint32_t *format_types; + unsigned int format_count; + bool format_default; + uint64_t *modifiers; + unsigned int modifier_count; + struct drm_crtc *crtc; + struct drm_framebuffer *fb; + struct drm_framebuffer *old_fb; + const struct drm_plane_funcs *funcs; + struct drm_object_properties properties; + enum drm_plane_type type; + unsigned int index; + const struct drm_plane_helper_funcs *helper_private; + struct drm_plane_state *state; + struct drm_property *alpha_property; + struct drm_property *zpos_property; + struct drm_property *rotation_property; + struct drm_property *blend_mode_property; + struct drm_property *color_encoding_property; + struct drm_property *color_range_property; + struct drm_property *scaling_filter_property; + struct drm_property *hotspot_x_property; + struct drm_property *hotspot_y_property; + struct kmsg_dumper kmsg_panic; +}; + +struct drm_plane_funcs { + int (*update_plane)(struct drm_plane *, struct drm_crtc *, struct drm_framebuffer *, int, int, unsigned int, unsigned int, uint32_t, uint32_t, uint32_t, uint32_t, struct drm_modeset_acquire_ctx *); + int (*disable_plane)(struct drm_plane *, struct drm_modeset_acquire_ctx *); + void (*destroy)(struct drm_plane *); + void (*reset)(struct drm_plane *); + int (*set_property)(struct drm_plane *, struct drm_property *, uint64_t); + struct drm_plane_state * (*atomic_duplicate_state)(struct drm_plane *); + void (*atomic_destroy_state)(struct drm_plane *, struct drm_plane_state *); + int (*atomic_set_property)(struct drm_plane *, struct drm_plane_state *, struct drm_property *, uint64_t); + int (*atomic_get_property)(struct drm_plane *, const struct drm_plane_state *, struct drm_property *, uint64_t *); + int (*late_register)(struct drm_plane *); + void (*early_unregister)(struct drm_plane *); + void (*atomic_print_state)(struct drm_printer *, const struct drm_plane_state *); + bool (*format_mod_supported)(struct drm_plane *, uint32_t, uint64_t); +}; + +struct drm_scanout_buffer; + +struct drm_plane_helper_funcs { + int (*prepare_fb)(struct drm_plane *, struct drm_plane_state *); + void (*cleanup_fb)(struct drm_plane *, struct drm_plane_state *); + int (*begin_fb_access)(struct drm_plane *, struct drm_plane_state *); + void (*end_fb_access)(struct drm_plane *, struct drm_plane_state *); + int (*atomic_check)(struct drm_plane *, struct drm_atomic_state *); + void (*atomic_update)(struct drm_plane *, struct drm_atomic_state *); + void (*atomic_enable)(struct drm_plane *, struct drm_atomic_state *); + void (*atomic_disable)(struct drm_plane *, struct drm_atomic_state *); + int (*atomic_async_check)(struct drm_plane *, struct drm_atomic_state *); + void (*atomic_async_update)(struct drm_plane *, struct drm_atomic_state *); + int (*get_scanout_buffer)(struct drm_plane *, struct drm_scanout_buffer *); + void (*panic_flush)(struct drm_plane *); +}; + +struct drm_crtc_crc_entry { + bool has_frame_counter; + uint32_t frame; + uint32_t crcs[10]; +}; + +struct drm_crtc_state { + struct drm_crtc *crtc; + bool enable; + bool active; + bool planes_changed: 1; + bool mode_changed: 1; + bool active_changed: 1; + bool connectors_changed: 1; + bool zpos_changed: 1; + bool color_mgmt_changed: 1; + bool no_vblank: 1; + u32 plane_mask; + u32 connector_mask; + u32 encoder_mask; + struct drm_display_mode adjusted_mode; + struct drm_display_mode mode; + struct drm_property_blob *mode_blob; + struct drm_property_blob *degamma_lut; + struct drm_property_blob *ctm; + struct drm_property_blob *gamma_lut; + u32 target_vblank; + bool async_flip; + bool vrr_enabled; + bool self_refresh_active; + enum drm_scaling_filter scaling_filter; + struct drm_pending_vblank_event *event; + struct drm_crtc_commit *commit; + struct drm_atomic_state *state; +}; + +struct drm_pending_event { + struct completion *completion; + void (*completion_release)(struct completion *); + struct drm_event *event; + struct dma_fence *fence; + struct drm_file *file_priv; + struct list_head link; + struct list_head pending_link; +}; + +struct drm_pending_vblank_event { + struct drm_pending_event base; + unsigned int pipe; + u64 sequence; + union { + struct drm_event base; + struct drm_event_vblank vbl; + struct drm_event_crtc_sequence seq; + } event; +}; + +struct drm_mode_set; + +struct drm_crtc_funcs { + void (*reset)(struct drm_crtc *); + int (*cursor_set)(struct drm_crtc *, struct drm_file *, uint32_t, uint32_t, uint32_t); + int (*cursor_set2)(struct drm_crtc *, struct drm_file *, uint32_t, uint32_t, uint32_t, int32_t, int32_t); + int (*cursor_move)(struct drm_crtc *, int, int); + int (*gamma_set)(struct drm_crtc *, u16 *, u16 *, u16 *, uint32_t, struct drm_modeset_acquire_ctx *); + void (*destroy)(struct drm_crtc *); + int (*set_config)(struct drm_mode_set *, struct drm_modeset_acquire_ctx *); + int (*page_flip)(struct drm_crtc *, struct drm_framebuffer *, struct drm_pending_vblank_event *, uint32_t, struct drm_modeset_acquire_ctx *); + int (*page_flip_target)(struct drm_crtc *, struct drm_framebuffer *, struct drm_pending_vblank_event *, uint32_t, uint32_t, struct drm_modeset_acquire_ctx *); + int (*set_property)(struct drm_crtc *, struct drm_property *, uint64_t); + struct drm_crtc_state * (*atomic_duplicate_state)(struct drm_crtc *); + void (*atomic_destroy_state)(struct drm_crtc *, struct drm_crtc_state *); + int (*atomic_set_property)(struct drm_crtc *, struct drm_crtc_state *, struct drm_property *, uint64_t); + int (*atomic_get_property)(struct drm_crtc *, const struct drm_crtc_state *, struct drm_property *, uint64_t *); + int (*late_register)(struct drm_crtc *); + void (*early_unregister)(struct drm_crtc *); + int (*set_crc_source)(struct drm_crtc *, const char *); + int (*verify_crc_source)(struct drm_crtc *, const char *, size_t *); + const char * const * (*get_crc_sources)(struct drm_crtc *, size_t *); + void (*atomic_print_state)(struct drm_printer *, const struct drm_crtc_state *); + u32 (*get_vblank_counter)(struct drm_crtc *); + int (*enable_vblank)(struct drm_crtc *); + void (*disable_vblank)(struct drm_crtc *); + bool (*get_vblank_timestamp)(struct drm_crtc *, int *, ktime_t *, bool); +}; + +struct drm_mode_set { + struct drm_framebuffer *fb; + struct drm_crtc *crtc; + struct drm_display_mode *mode; + uint32_t x; + uint32_t y; + struct drm_connector **connectors; + size_t num_connectors; +}; + +enum mode_set_atomic { + LEAVE_ATOMIC_MODE_SET = 0, + ENTER_ATOMIC_MODE_SET = 1, +}; + +struct drm_crtc_helper_funcs { + void (*dpms)(struct drm_crtc *, int); + void (*prepare)(struct drm_crtc *); + void (*commit)(struct drm_crtc *); + enum drm_mode_status (*mode_valid)(struct drm_crtc *, const struct drm_display_mode *); + bool (*mode_fixup)(struct drm_crtc *, const struct drm_display_mode *, struct drm_display_mode *); + int (*mode_set)(struct drm_crtc *, struct drm_display_mode *, struct drm_display_mode *, int, int, struct drm_framebuffer *); + void (*mode_set_nofb)(struct drm_crtc *); + int (*mode_set_base)(struct drm_crtc *, int, int, struct drm_framebuffer *); + int (*mode_set_base_atomic)(struct drm_crtc *, struct drm_framebuffer *, int, int, enum mode_set_atomic); + void (*disable)(struct drm_crtc *); + int (*atomic_check)(struct drm_crtc *, struct drm_atomic_state *); + void (*atomic_begin)(struct drm_crtc *, struct drm_atomic_state *); + void (*atomic_flush)(struct drm_crtc *, struct drm_atomic_state *); + void (*atomic_enable)(struct drm_crtc *, struct drm_atomic_state *); + void (*atomic_disable)(struct drm_crtc *, struct drm_atomic_state *); + bool (*get_scanout_position)(struct drm_crtc *, bool, int *, int *, ktime_t *, ktime_t *, const struct drm_display_mode *); +}; + +struct __drm_planes_state { + struct drm_plane *ptr; + struct drm_plane_state *state; + struct drm_plane_state *old_state; + struct drm_plane_state *new_state; +}; + +struct __drm_crtcs_state { + struct drm_crtc *ptr; + struct drm_crtc_state *state; + struct drm_crtc_state *old_state; + struct drm_crtc_state *new_state; + struct drm_crtc_commit *commit; + s32 *out_fence_ptr; + u64 last_vblank_count; +}; + +struct __drm_connnectors_state { + struct drm_connector *ptr; + struct drm_connector_state *state; + struct drm_connector_state *old_state; + struct drm_connector_state *new_state; + s32 *out_fence_ptr; +}; + +struct drm_private_state; + +struct drm_private_obj; + +struct drm_private_state_funcs { + struct drm_private_state * (*atomic_duplicate_state)(struct drm_private_obj *); + void (*atomic_destroy_state)(struct drm_private_obj *, struct drm_private_state *); + void (*atomic_print_state)(struct drm_printer *, const struct drm_private_state *); +}; + +struct drm_private_state { + struct drm_atomic_state *state; + struct drm_private_obj *obj; +}; + +struct drm_private_obj { + struct list_head head; + struct drm_modeset_lock lock; + struct drm_private_state *state; + const struct drm_private_state_funcs *funcs; +}; + +struct __drm_private_objs_state { + struct drm_private_obj *ptr; + struct drm_private_state *state; + struct drm_private_state *old_state; + struct drm_private_state *new_state; +}; + +struct drm_client_dev; + +struct drm_client_funcs { + struct module *owner; + void (*unregister)(struct drm_client_dev *); + int (*restore)(struct drm_client_dev *); + int (*hotplug)(struct drm_client_dev *); +}; + +struct drm_client_dev { + struct drm_device *dev; + const char *name; + struct list_head list; + const struct drm_client_funcs *funcs; + struct drm_file *file; + struct mutex modeset_mutex; + struct drm_mode_set *modesets; + bool hotplug_failed; +}; + +enum drm_driver_feature { + DRIVER_GEM = 1, + DRIVER_MODESET = 2, + DRIVER_RENDER = 8, + DRIVER_ATOMIC = 16, + DRIVER_SYNCOBJ = 32, + DRIVER_SYNCOBJ_TIMELINE = 64, + DRIVER_COMPUTE_ACCEL = 128, + DRIVER_GEM_GPUVA = 256, + DRIVER_CURSOR_HOTSPOT = 512, + DRIVER_USE_AGP = 33554432, + DRIVER_LEGACY = 67108864, + DRIVER_PCI_DMA = 134217728, + DRIVER_SG = 268435456, + DRIVER_HAVE_DMA = 536870912, + DRIVER_HAVE_IRQ = 1073741824, +}; + +enum drm_ioctl_flags { + DRM_AUTH = 1, + DRM_MASTER = 2, + DRM_ROOT_ONLY = 4, + DRM_RENDER_ALLOW = 32, +}; + +typedef int drm_ioctl_t(struct drm_device *, void *, struct drm_file *); + +struct drm_ioctl_desc { + unsigned int cmd; + enum drm_ioctl_flags flags; + drm_ioctl_t *func; + const char *name; +}; + +struct drm_encoder_funcs { + void (*reset)(struct drm_encoder *); + void (*destroy)(struct drm_encoder *); + int (*late_register)(struct drm_encoder *); + void (*early_unregister)(struct drm_encoder *); + void (*debugfs_init)(struct drm_encoder *, struct dentry *); +}; + +struct drm_encoder_helper_funcs { + void (*dpms)(struct drm_encoder *, int); + enum drm_mode_status (*mode_valid)(struct drm_encoder *, const struct drm_display_mode *); + bool (*mode_fixup)(struct drm_encoder *, const struct drm_display_mode *, struct drm_display_mode *); + void (*prepare)(struct drm_encoder *); + void (*commit)(struct drm_encoder *); + void (*mode_set)(struct drm_encoder *, struct drm_display_mode *, struct drm_display_mode *); + void (*atomic_mode_set)(struct drm_encoder *, struct drm_crtc_state *, struct drm_connector_state *); + enum drm_connector_status (*detect)(struct drm_encoder *, struct drm_connector *); + void (*atomic_disable)(struct drm_encoder *, struct drm_atomic_state *); + void (*atomic_enable)(struct drm_encoder *, struct drm_atomic_state *); + void (*disable)(struct drm_encoder *); + void (*enable)(struct drm_encoder *); + int (*atomic_check)(struct drm_encoder *, struct drm_crtc_state *, struct drm_connector_state *); +}; + +struct kthread_work; + +typedef void (*kthread_work_func_t)(struct kthread_work *); + +struct kthread_work { + struct list_head node; + kthread_work_func_t func; + struct kthread_worker *worker; + int canceling; +}; + +struct kthread_worker { + unsigned int flags; + raw_spinlock_t lock; + struct list_head work_list; + struct list_head delayed_work_list; + struct task_struct *task; + struct kthread_work *current_work; +}; + +struct drm_client_offset { + int x; + int y; +}; + +struct rb_augment_callbacks { + void (*propagate)(struct rb_node *, struct rb_node *); + void (*copy)(struct rb_node *, struct rb_node *); + void (*rotate)(struct rb_node *, struct rb_node *); +}; + +enum drm_mm_insert_mode { + DRM_MM_INSERT_BEST = 0, + DRM_MM_INSERT_LOW = 1, + DRM_MM_INSERT_HIGH = 2, + DRM_MM_INSERT_EVICT = 3, + DRM_MM_INSERT_ONCE = 2147483648, + DRM_MM_INSERT_HIGHEST = 2147483650, + DRM_MM_INSERT_LOWEST = 2147483649, +}; + +struct drm_mm; + +struct drm_mm_node { + long unsigned int color; + u64 start; + u64 size; + struct drm_mm *mm; + struct list_head node_list; + struct list_head hole_stack; + struct rb_node rb; + struct rb_node rb_hole_size; + struct rb_node rb_hole_addr; + u64 __subtree_last; + u64 hole_size; + u64 subtree_max_hole; + long unsigned int flags; +}; + +struct drm_mm { + void (*color_adjust)(const struct drm_mm_node *, long unsigned int, u64 *, u64 *); + struct list_head hole_stack; + struct drm_mm_node head_node; + struct rb_root_cached interval_tree; + struct rb_root_cached holes_size; + struct rb_root holes_addr; + long unsigned int scan_active; +}; + +struct drm_mm_scan { + struct drm_mm *mm; + u64 size; + u64 alignment; + u64 remainder_mask; + u64 range_start; + u64 range_end; + u64 hit_start; + u64 hit_end; + long unsigned int color; + enum drm_mm_insert_mode mode; +}; + +struct drm_clip_rect { + short unsigned int x1; + short unsigned int y1; + short unsigned int x2; + short unsigned int y2; +}; + +struct drm_mode_set_plane { + __u32 plane_id; + __u32 crtc_id; + __u32 fb_id; + __u32 flags; + __s32 crtc_x; + __s32 crtc_y; + __u32 crtc_w; + __u32 crtc_h; + __u32 src_x; + __u32 src_y; + __u32 src_h; + __u32 src_w; +}; + +struct drm_mode_get_plane { + __u32 plane_id; + __u32 crtc_id; + __u32 fb_id; + __u32 possible_crtcs; + __u32 gamma_size; + __u32 count_format_types; + __u64 format_type_ptr; +}; + +struct drm_mode_get_plane_res { + __u64 plane_id_ptr; + __u32 count_planes; +}; + +struct drm_mode_cursor { + __u32 flags; + __u32 crtc_id; + __s32 x; + __s32 y; + __u32 width; + __u32 height; + __u32 handle; +}; + +struct drm_mode_cursor2 { + __u32 flags; + __u32 crtc_id; + __s32 x; + __s32 y; + __u32 width; + __u32 height; + __u32 handle; + __s32 hot_x; + __s32 hot_y; +}; + +struct drm_plane_size_hint { + __u16 width; + __u16 height; +}; + +struct drm_mode_crtc_page_flip_target { + __u32 crtc_id; + __u32 fb_id; + __u32 flags; + __u32 sequence; + __u64 user_data; +}; + +struct drm_format_modifier_blob { + __u32 version; + __u32 flags; + __u32 count_formats; + __u32 formats_offset; + __u32 count_modifiers; + __u32 modifiers_offset; +}; + +struct drm_format_modifier { + __u64 formats; + __u32 offset; + __u32 pad; + __u64 modifier; +}; + +struct drm_mode_rect { + __s32 x1; + __s32 y1; + __s32 x2; + __s32 y2; +}; + +struct drm_prop_enum_list { + int type; + const char *name; +}; + +struct drm_framebuffer_funcs; + +struct drm_framebuffer { + struct drm_device *dev; + struct list_head head; + struct drm_mode_object base; + char comm[16]; + const struct drm_format_info *format; + const struct drm_framebuffer_funcs *funcs; + unsigned int pitches[4]; + unsigned int offsets[4]; + uint64_t modifier; + unsigned int width; + unsigned int height; + int flags; + unsigned int internal_flags; + struct list_head filp_head; + struct drm_gem_object *obj[4]; +}; + +struct drm_framebuffer_funcs { + void (*destroy)(struct drm_framebuffer *); + int (*create_handle)(struct drm_framebuffer *, struct drm_file *, unsigned int *); + int (*dirty)(struct drm_framebuffer *, struct drm_file *, unsigned int, unsigned int, struct drm_clip_rect *, unsigned int); +}; + +typedef void (*drmres_release_t)(struct drm_device *, void *); + +enum class_map_type { + DD_CLASS_TYPE_DISJOINT_BITS = 0, + DD_CLASS_TYPE_LEVEL_NUM = 1, + DD_CLASS_TYPE_DISJOINT_NAMES = 2, + DD_CLASS_TYPE_LEVEL_NAMES = 3, +}; + +struct ddebug_class_map { + struct list_head link; + struct module *mod; + const char *mod_name; + const char **class_names; + const int length; + const int base; + enum class_map_type map_type; +}; + +struct drm_bus_cfg { + u32 format; + u32 flags; +}; + +struct drm_bridge; + +struct drm_bridge_state { + struct drm_private_state base; + struct drm_bridge *bridge; + struct drm_bus_cfg input_bus_cfg; + struct drm_bus_cfg output_bus_cfg; +}; + +enum drm_bridge_ops { + DRM_BRIDGE_OP_DETECT = 1, + DRM_BRIDGE_OP_EDID = 2, + DRM_BRIDGE_OP_HPD = 4, + DRM_BRIDGE_OP_MODES = 8, + DRM_BRIDGE_OP_HDMI = 16, +}; + +struct drm_bridge_timings; + +struct drm_bridge_funcs; + +struct drm_bridge { + struct drm_private_obj base; + struct drm_device *dev; + struct drm_encoder *encoder; + struct list_head chain_node; + struct device_node *of_node; + struct list_head list; + const struct drm_bridge_timings *timings; + const struct drm_bridge_funcs *funcs; + void *driver_private; + enum drm_bridge_ops ops; + int type; + bool interlace_allowed; + bool pre_enable_prev_first; + struct i2c_adapter *ddc; + struct mutex hpd_mutex; + void (*hpd_cb)(void *, enum drm_connector_status); + void *hpd_data; + const char *vendor; + const char *product; + unsigned int supported_formats; + unsigned int max_bpc; +}; + +enum drm_bridge_attach_flags { + DRM_BRIDGE_ATTACH_NO_CONNECTOR = 1, +}; + +struct drm_bridge_funcs { + int (*attach)(struct drm_bridge *, enum drm_bridge_attach_flags); + void (*detach)(struct drm_bridge *); + enum drm_mode_status (*mode_valid)(struct drm_bridge *, const struct drm_display_info *, const struct drm_display_mode *); + bool (*mode_fixup)(struct drm_bridge *, const struct drm_display_mode *, struct drm_display_mode *); + void (*disable)(struct drm_bridge *); + void (*post_disable)(struct drm_bridge *); + void (*mode_set)(struct drm_bridge *, const struct drm_display_mode *, const struct drm_display_mode *); + void (*pre_enable)(struct drm_bridge *); + void (*enable)(struct drm_bridge *); + void (*atomic_pre_enable)(struct drm_bridge *, struct drm_bridge_state *); + void (*atomic_enable)(struct drm_bridge *, struct drm_bridge_state *); + void (*atomic_disable)(struct drm_bridge *, struct drm_bridge_state *); + void (*atomic_post_disable)(struct drm_bridge *, struct drm_bridge_state *); + struct drm_bridge_state * (*atomic_duplicate_state)(struct drm_bridge *); + void (*atomic_destroy_state)(struct drm_bridge *, struct drm_bridge_state *); + u32 * (*atomic_get_output_bus_fmts)(struct drm_bridge *, struct drm_bridge_state *, struct drm_crtc_state *, struct drm_connector_state *, unsigned int *); + u32 * (*atomic_get_input_bus_fmts)(struct drm_bridge *, struct drm_bridge_state *, struct drm_crtc_state *, struct drm_connector_state *, u32, unsigned int *); + int (*atomic_check)(struct drm_bridge *, struct drm_bridge_state *, struct drm_crtc_state *, struct drm_connector_state *); + struct drm_bridge_state * (*atomic_reset)(struct drm_bridge *); + enum drm_connector_status (*detect)(struct drm_bridge *); + int (*get_modes)(struct drm_bridge *, struct drm_connector *); + const struct drm_edid * (*edid_read)(struct drm_bridge *, struct drm_connector *); + void (*hpd_notify)(struct drm_bridge *, enum drm_connector_status); + void (*hpd_enable)(struct drm_bridge *); + void (*hpd_disable)(struct drm_bridge *); + enum drm_mode_status (*hdmi_tmds_char_rate_valid)(const struct drm_bridge *, const struct drm_display_mode *, long long unsigned int); + int (*hdmi_clear_infoframe)(struct drm_bridge *, enum hdmi_infoframe_type); + int (*hdmi_write_infoframe)(struct drm_bridge *, enum hdmi_infoframe_type, const u8 *, size_t); + void (*debugfs_init)(struct drm_bridge *, struct dentry *); +}; + +struct drm_bridge_timings { + u32 input_bus_flags; + u32 setup_time_ps; + u32 hold_time_ps; + bool dual_link; +}; + +struct est_timings { + u8 t1; + u8 t2; + u8 mfg_rsvd; +}; + +struct std_timing { + u8 hsize; + u8 vfreq_aspect; +}; + +struct detailed_pixel_timing { + u8 hactive_lo; + u8 hblank_lo; + u8 hactive_hblank_hi; + u8 vactive_lo; + u8 vblank_lo; + u8 vactive_vblank_hi; + u8 hsync_offset_lo; + u8 hsync_pulse_width_lo; + u8 vsync_offset_pulse_width_lo; + u8 hsync_vsync_offset_pulse_width_hi; + u8 width_mm_lo; + u8 height_mm_lo; + u8 width_height_mm_hi; + u8 hborder; + u8 vborder; + u8 misc; +}; + +struct detailed_data_string { + u8 str[13]; +}; + +struct detailed_data_monitor_range { + u8 min_vfreq; + u8 max_vfreq; + u8 min_hfreq_khz; + u8 max_hfreq_khz; + u8 pixel_clock_mhz; + u8 flags; + union { + struct { + u8 reserved; + u8 hfreq_start_khz; + u8 c; + __le16 m; + u8 k; + u8 j; + } __attribute__((packed)) gtf2; + struct { + u8 version; + u8 data1; + u8 data2; + u8 supported_aspects; + u8 flags; + u8 supported_scalings; + u8 preferred_refresh; + } cvt; + } formula; +}; + +struct detailed_data_wpindex { + u8 white_yx_lo; + u8 white_x_hi; + u8 white_y_hi; + u8 gamma; +}; + +struct cvt_timing { + u8 code[3]; +}; + +struct detailed_non_pixel { + u8 pad1; + u8 type; + u8 pad2; + union { + struct detailed_data_string str; + struct detailed_data_monitor_range range; + struct detailed_data_wpindex color; + struct std_timing timings[6]; + struct cvt_timing cvt[4]; + } data; +}; + +struct detailed_timing { + __le16 pixel_clock; + union { + struct detailed_pixel_timing pixel_data; + struct detailed_non_pixel other_data; + } data; +}; + +struct drm_edid_product_id { + __be16 manufacturer_name; + __le16 product_code; + __le32 serial_number; + u8 week_of_manufacture; + u8 year_of_manufacture; +} __attribute__((packed)); + +struct edid { + u8 header[8]; + union { + struct drm_edid_product_id product_id; + struct { + u8 mfg_id[2]; + u8 prod_code[2]; + u32 serial; + u8 mfg_week; + u8 mfg_year; + } __attribute__((packed)); + }; + u8 version; + u8 revision; + u8 input; + u8 width_cm; + u8 height_cm; + u8 gamma; + u8 features; + u8 red_green_lo; + u8 blue_white_lo; + u8 red_x; + u8 red_y; + u8 green_x; + u8 green_y; + u8 blue_x; + u8 blue_y; + u8 white_x; + u8 white_y; + struct est_timings established_timings; + struct std_timing standard_timings[8]; + struct detailed_timing detailed_timings[4]; + u8 extensions; + u8 checksum; +}; + +struct component_ops { + int (*bind)(struct device *, struct device *, void *); + void (*unbind)(struct device *, struct device *, void *); +}; + +struct component_master_ops { + int (*bind)(struct device *); + void (*unbind)(struct device *); +}; + +struct component; + +struct component_match_array { + void *data; + int (*compare)(struct device *, void *); + int (*compare_typed)(struct device *, int, void *); + void (*release)(struct device *, void *); + struct component *component; + bool duplicate; +}; + +struct aggregate_device; + +struct component { + struct list_head node; + struct aggregate_device *adev; + bool bound; + const struct component_ops *ops; + int subcomponent; + struct device *dev; +}; + +struct component_match { + size_t alloc; + size_t num; + struct component_match_array *compare; +}; + +struct aggregate_device { + struct list_head node; + bool bound; + const struct component_master_ops *ops; + struct device *parent; + struct component_match *match; +}; + +struct klist_node; + +struct klist { + spinlock_t k_lock; + struct list_head k_list; + void (*get)(struct klist_node *); + void (*put)(struct klist_node *); +}; + +struct klist_node { + void *n_klist; + struct list_head n_node; + struct kref n_ref; +}; + +struct pm_qos_flags { + struct list_head list; + s32 effective_flags; +}; + +struct dev_pm_qos_request; + +struct dev_pm_qos { + struct pm_qos_constraints resume_latency; + struct pm_qos_constraints latency_tolerance; + struct freq_constraints freq; + struct pm_qos_flags flags; + struct dev_pm_qos_request *resume_latency_req; + struct dev_pm_qos_request *latency_tolerance_req; + struct dev_pm_qos_request *flags_req; +}; + +typedef int (*device_match_t)(struct device *, const void *); + +struct driver_private { + struct kobject kobj; + struct klist klist_devices; + struct klist_node knode_bus; + struct module_kobject *mkobj; + struct device_driver *driver; +}; + +enum irq_domain_bus_token { + DOMAIN_BUS_ANY = 0, + DOMAIN_BUS_WIRED = 1, + DOMAIN_BUS_GENERIC_MSI = 2, + DOMAIN_BUS_PCI_MSI = 3, + DOMAIN_BUS_PLATFORM_MSI = 4, + DOMAIN_BUS_NEXUS = 5, + DOMAIN_BUS_IPI = 6, + DOMAIN_BUS_FSL_MC_MSI = 7, + DOMAIN_BUS_TI_SCI_INTA_MSI = 8, + DOMAIN_BUS_WAKEUP = 9, + DOMAIN_BUS_VMD_MSI = 10, + DOMAIN_BUS_PCI_DEVICE_MSI = 11, + DOMAIN_BUS_PCI_DEVICE_MSIX = 12, + DOMAIN_BUS_DMAR = 13, + DOMAIN_BUS_AMDVI = 14, + DOMAIN_BUS_DEVICE_MSI = 15, + DOMAIN_BUS_WIRED_TO_MSI = 16, +}; + +struct irq_domain_ops; + +struct irq_domain_chip_generic; + +struct msi_parent_ops; + +struct irq_domain { + struct list_head link; + const char *name; + const struct irq_domain_ops *ops; + void *host_data; + unsigned int flags; + unsigned int mapcount; + struct mutex mutex; + struct irq_domain *root; + struct fwnode_handle *fwnode; + enum irq_domain_bus_token bus_token; + struct irq_domain_chip_generic *gc; + struct device *dev; + struct device *pm_dev; + struct irq_domain *parent; + const struct msi_parent_ops *msi_parent_ops; + void (*exit)(struct irq_domain *); + irq_hw_number_t hwirq_max; + unsigned int revmap_size; + struct xarray revmap_tree; + struct irq_data *revmap[0]; +}; + +struct device_private { + struct klist klist_children; + struct klist_node knode_parent; + struct klist_node knode_driver; + struct klist_node knode_bus; + struct klist_node knode_class; + struct list_head deferred_probe; + const struct device_driver *async_driver; + char *deferred_probe_reason; + struct device *device; + u8 dead: 1; +}; + +struct iommu_group {}; + +struct property_entry; + +struct platform_device_info { + struct device *parent; + struct fwnode_handle *fwnode; + bool of_node_reused; + const char *name; + int id; + const struct resource *res; + unsigned int num_res; + const void *data; + size_t size_data; + u64 dma_mask; + const struct property_entry *properties; +}; + +enum dev_prop_type { + DEV_PROP_U8 = 0, + DEV_PROP_U16 = 1, + DEV_PROP_U32 = 2, + DEV_PROP_U64 = 3, + DEV_PROP_STRING = 4, + DEV_PROP_REF = 5, +}; + +struct property_entry { + const char *name; + size_t length; + bool is_inline; + enum dev_prop_type type; + union { + const void *pointer; + union { + u8 u8_data[8]; + u16 u16_data[4]; + u32 u32_data[2]; + u64 u64_data[1]; + const char *str[1]; + } value; + }; +}; + +struct irq_desc; + +typedef void (*irq_flow_handler_t)(struct irq_desc *); + +struct irqstat; + +struct irqaction; + +struct irq_affinity_notify; + +struct irq_desc { + struct irq_common_data irq_common_data; + struct irq_data irq_data; + struct irqstat *kstat_irqs; + irq_flow_handler_t handle_irq; + struct irqaction *action; + unsigned int status_use_accessors; + unsigned int core_internal_state__do_not_mess_with_it; + unsigned int depth; + unsigned int wake_depth; + unsigned int tot_count; + unsigned int irq_count; + long unsigned int last_unhandled; + unsigned int irqs_unhandled; + atomic_t threads_handled; + int threads_handled_last; + raw_spinlock_t lock; + struct cpumask *percpu_enabled; + const struct cpumask *percpu_affinity; + const struct cpumask *affinity_hint; + struct irq_affinity_notify *affinity_notify; + long unsigned int threads_oneshot; + atomic_t threads_active; + wait_queue_head_t wait_for_threads; + struct proc_dir_entry *dir; + struct callback_head rcu; + struct kobject kobj; + struct mutex request_mutex; + int parent_irq; + struct module *owner; + const char *name; + struct hlist_node resend_node; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum { + IRQD_TRIGGER_MASK = 15, + IRQD_SETAFFINITY_PENDING = 256, + IRQD_ACTIVATED = 512, + IRQD_NO_BALANCING = 1024, + IRQD_PER_CPU = 2048, + IRQD_AFFINITY_SET = 4096, + IRQD_LEVEL = 8192, + IRQD_WAKEUP_STATE = 16384, + IRQD_MOVE_PCNTXT = 32768, + IRQD_IRQ_DISABLED = 65536, + IRQD_IRQ_MASKED = 131072, + IRQD_IRQ_INPROGRESS = 262144, + IRQD_WAKEUP_ARMED = 524288, + IRQD_FORWARDED_TO_VCPU = 1048576, + IRQD_AFFINITY_MANAGED = 2097152, + IRQD_IRQ_STARTED = 4194304, + IRQD_MANAGED_SHUTDOWN = 8388608, + IRQD_SINGLE_TARGET = 16777216, + IRQD_DEFAULT_TRIGGER_SET = 33554432, + IRQD_CAN_RESERVE = 67108864, + IRQD_HANDLE_ENFORCE_IRQCTX = 134217728, + IRQD_AFFINITY_ON_ACTIVATE = 268435456, + IRQD_IRQ_ENABLED_ON_SUSPEND = 536870912, + IRQD_RESEND_WHEN_IN_PROGRESS = 1073741824, +}; + +struct irqstat { + unsigned int cnt; +}; + +typedef irqreturn_t (*irq_handler_t)(int, void *); + +struct irqaction { + irq_handler_t handler; + void *dev_id; + void *percpu_dev_id; + struct irqaction *next; + irq_handler_t thread_fn; + struct task_struct *thread; + struct irqaction *secondary; + unsigned int irq; + unsigned int flags; + long unsigned int thread_flags; + long unsigned int thread_mask; + const char *name; + struct proc_dir_entry *dir; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct irq_affinity_notify { + unsigned int irq; + struct kref kref; + struct work_struct work; + void (*notify)(struct irq_affinity_notify *, const cpumask_t *); + void (*release)(struct kref *); +}; + +struct irq_chip_regs { + long unsigned int enable; + long unsigned int disable; + long unsigned int mask; + long unsigned int ack; + long unsigned int eoi; + long unsigned int type; +}; + +struct irq_chip_type { + struct irq_chip chip; + struct irq_chip_regs regs; + irq_flow_handler_t handler; + u32 type; + u32 mask_cache_priv; + u32 *mask_cache; +}; + +struct irq_chip_generic { + raw_spinlock_t lock; + void *reg_base; + u32 (*reg_readl)(void *); + void (*reg_writel)(u32, void *); + void (*suspend)(struct irq_chip_generic *); + void (*resume)(struct irq_chip_generic *); + unsigned int irq_base; + unsigned int irq_cnt; + u32 mask_cache; + u32 wake_enabled; + u32 wake_active; + unsigned int num_ct; + void *private; + long unsigned int installed; + long unsigned int unused; + struct irq_domain *domain; + struct list_head list; + struct irq_chip_type chip_types[0]; +}; + +enum irq_gc_flags { + IRQ_GC_INIT_MASK_CACHE = 1, + IRQ_GC_INIT_NESTED_LOCK = 2, + IRQ_GC_MASK_CACHE_PER_TYPE = 4, + IRQ_GC_NO_MASK = 8, + IRQ_GC_BE_IO = 16, +}; + +struct irq_domain_chip_generic { + unsigned int irqs_per_chip; + unsigned int num_chips; + unsigned int irq_flags_to_clear; + unsigned int irq_flags_to_set; + enum irq_gc_flags gc_flags; + void (*exit)(struct irq_chip_generic *); + struct irq_chip_generic *gc[0]; +}; + +struct software_node { + const char *name; + const struct software_node *parent; + const struct property_entry *properties; +}; + +struct irq_fwspec { + struct fwnode_handle *fwnode; + int param_count; + u32 param[16]; +}; + +struct irq_domain_ops { + int (*match)(struct irq_domain *, struct device_node *, enum irq_domain_bus_token); + int (*select)(struct irq_domain *, struct irq_fwspec *, enum irq_domain_bus_token); + int (*map)(struct irq_domain *, unsigned int, irq_hw_number_t); + void (*unmap)(struct irq_domain *, unsigned int); + int (*xlate)(struct irq_domain *, struct device_node *, const u32 *, unsigned int, long unsigned int *, unsigned int *); + int (*alloc)(struct irq_domain *, unsigned int, unsigned int, void *); + void (*free)(struct irq_domain *, unsigned int, unsigned int); + int (*activate)(struct irq_domain *, struct irq_data *, bool); + void (*deactivate)(struct irq_domain *, struct irq_data *); + int (*translate)(struct irq_domain *, struct irq_fwspec *, long unsigned int *, unsigned int *); +}; + +struct msi_domain_info; + +struct msi_parent_ops { + u32 supported_flags; + u32 required_flags; + u32 bus_select_token; + u32 bus_select_mask; + const char *prefix; + bool (*init_dev_msi_info)(struct device *, struct irq_domain *, struct irq_domain *, struct msi_domain_info *); +}; + +typedef void *acpi_handle; + +struct pm_qos_flags_request { + struct list_head node; + s32 flags; +}; + +enum dev_pm_qos_req_type { + DEV_PM_QOS_RESUME_LATENCY = 1, + DEV_PM_QOS_LATENCY_TOLERANCE = 2, + DEV_PM_QOS_MIN_FREQUENCY = 3, + DEV_PM_QOS_MAX_FREQUENCY = 4, + DEV_PM_QOS_FLAGS = 5, +}; + +struct dev_pm_qos_request { + enum dev_pm_qos_req_type type; + union { + struct plist_node pnode; + struct pm_qos_flags_request flr; + struct freq_qos_request freq; + } data; + struct device *dev; +}; + +struct irq_affinity_devres { + unsigned int count; + unsigned int irq[0]; +}; + +struct platform_object { + struct platform_device pdev; + char name[0]; +}; + +struct acpi_device; + +struct cpu_topology { + int thread_id; + int core_id; + int cluster_id; + int package_id; + cpumask_t thread_sibling; + cpumask_t core_sibling; + cpumask_t cluster_sibling; + cpumask_t llc_sibling; +}; + +struct cpu { + int node_id; + int hotpluggable; + struct device dev; +}; + +struct of_phandle_args { + struct device_node *np; + int args_count; + uint32_t args[16]; +}; + +struct trace_event_raw_hw_pressure_update { + struct trace_entry ent; + long unsigned int hw_pressure; + int cpu; + char __data[0]; +}; + +struct trace_event_data_offsets_hw_pressure_update {}; + +typedef void (*btf_trace_hw_pressure_update)(void *, int, long unsigned int); + +typedef __u64 blist_flags_t; + +enum scsi_device_state { + SDEV_CREATED = 1, + SDEV_RUNNING = 2, + SDEV_CANCEL = 3, + SDEV_DEL = 4, + SDEV_QUIESCE = 5, + SDEV_OFFLINE = 6, + SDEV_TRANSPORT_OFFLINE = 7, + SDEV_BLOCK = 8, + SDEV_CREATED_BLOCK = 9, +}; + +struct scsi_vpd { + struct callback_head rcu; + int len; + unsigned char data[0]; +}; + +struct Scsi_Host; + +struct scsi_target; + +struct scsi_device_handler; + +struct scsi_device { + struct Scsi_Host *host; + struct request_queue *request_queue; + struct list_head siblings; + struct list_head same_target_siblings; + struct sbitmap budget_map; + atomic_t device_blocked; + atomic_t restarts; + spinlock_t list_lock; + struct list_head starved_entry; + short unsigned int queue_depth; + short unsigned int max_queue_depth; + short unsigned int last_queue_full_depth; + short unsigned int last_queue_full_count; + long unsigned int last_queue_full_time; + long unsigned int queue_ramp_up_period; + long unsigned int last_queue_ramp_up; + unsigned int id; + unsigned int channel; + u64 lun; + unsigned int manufacturer; + unsigned int sector_size; + void *hostdata; + unsigned char type; + char scsi_level; + char inq_periph_qual; + struct mutex inquiry_mutex; + unsigned char inquiry_len; + unsigned char *inquiry; + const char *vendor; + const char *model; + const char *rev; + struct scsi_vpd *vpd_pg0; + struct scsi_vpd *vpd_pg83; + struct scsi_vpd *vpd_pg80; + struct scsi_vpd *vpd_pg89; + struct scsi_vpd *vpd_pgb0; + struct scsi_vpd *vpd_pgb1; + struct scsi_vpd *vpd_pgb2; + struct scsi_vpd *vpd_pgb7; + struct scsi_target *sdev_target; + blist_flags_t sdev_bflags; + unsigned int eh_timeout; + unsigned int manage_system_start_stop: 1; + unsigned int manage_runtime_start_stop: 1; + unsigned int manage_shutdown: 1; + unsigned int force_runtime_start_on_system_start: 1; + unsigned int removable: 1; + unsigned int changed: 1; + unsigned int busy: 1; + unsigned int lockable: 1; + unsigned int locked: 1; + unsigned int borken: 1; + unsigned int disconnect: 1; + unsigned int soft_reset: 1; + unsigned int sdtr: 1; + unsigned int wdtr: 1; + unsigned int ppr: 1; + unsigned int tagged_supported: 1; + unsigned int simple_tags: 1; + unsigned int was_reset: 1; + unsigned int expecting_cc_ua: 1; + unsigned int use_10_for_rw: 1; + unsigned int use_10_for_ms: 1; + unsigned int set_dbd_for_ms: 1; + unsigned int read_before_ms: 1; + unsigned int no_report_opcodes: 1; + unsigned int no_write_same: 1; + unsigned int use_16_for_rw: 1; + unsigned int use_16_for_sync: 1; + unsigned int skip_ms_page_8: 1; + unsigned int skip_ms_page_3f: 1; + unsigned int skip_vpd_pages: 1; + unsigned int try_vpd_pages: 1; + unsigned int use_192_bytes_for_3f: 1; + unsigned int no_start_on_add: 1; + unsigned int allow_restart: 1; + unsigned int start_stop_pwr_cond: 1; + unsigned int no_uld_attach: 1; + unsigned int select_no_atn: 1; + unsigned int fix_capacity: 1; + unsigned int guess_capacity: 1; + unsigned int retry_hwerror: 1; + unsigned int last_sector_bug: 1; + unsigned int no_read_disc_info: 1; + unsigned int no_read_capacity_16: 1; + unsigned int try_rc_10_first: 1; + unsigned int security_supported: 1; + unsigned int is_visible: 1; + unsigned int wce_default_on: 1; + unsigned int no_dif: 1; + unsigned int broken_fua: 1; + unsigned int lun_in_cdb: 1; + unsigned int unmap_limit_for_ws: 1; + unsigned int rpm_autosuspend: 1; + unsigned int ignore_media_change: 1; + unsigned int silence_suspend: 1; + unsigned int no_vpd_size: 1; + unsigned int cdl_supported: 1; + unsigned int cdl_enable: 1; + unsigned int queue_stopped; + bool offline_already; + atomic_t disk_events_disable_depth; + long unsigned int supported_events[1]; + long unsigned int pending_events[1]; + struct list_head event_list; + struct work_struct event_work; + unsigned int max_device_blocked; + atomic_t iorequest_cnt; + atomic_t iodone_cnt; + atomic_t ioerr_cnt; + atomic_t iotmo_cnt; + struct device sdev_gendev; + struct device sdev_dev; + struct work_struct requeue_work; + struct scsi_device_handler *handler; + void *handler_data; + size_t dma_drain_len; + void *dma_drain_buf; + unsigned int sg_timeout; + unsigned int sg_reserved_size; + struct bsg_device *bsg_dev; + unsigned char access_state; + struct mutex state_mutex; + enum scsi_device_state sdev_state; + struct task_struct *quiesced_by; + long unsigned int sdev_data[0]; +}; + +enum scsi_target_state { + STARGET_CREATED = 1, + STARGET_RUNNING = 2, + STARGET_REMOVE = 3, + STARGET_CREATED_REMOVE = 4, + STARGET_DEL = 5, +}; + +struct scsi_target { + struct scsi_device *starget_sdev_user; + struct list_head siblings; + struct list_head devices; + struct device dev; + struct kref reap_ref; + unsigned int channel; + unsigned int id; + unsigned int create: 1; + unsigned int single_lun: 1; + unsigned int pdt_1f_for_no_lun: 1; + unsigned int no_report_luns: 1; + unsigned int expecting_lun_change: 1; + atomic_t target_busy; + atomic_t target_blocked; + unsigned int can_queue; + unsigned int max_target_blocked; + char scsi_level; + enum scsi_target_state state; + void *hostdata; + long unsigned int starget_data[0]; +}; + +enum scsi_devinfo_key { + SCSI_DEVINFO_GLOBAL = 0, + SCSI_DEVINFO_SPI = 1, +}; + +struct scsi_dev_info_list { + struct list_head dev_info_list; + char vendor[8]; + char model[16]; + blist_flags_t flags; + unsigned int compatible; +}; + +struct scsi_dev_info_list_table { + struct list_head node; + struct list_head scsi_dev_info_list; + const char *name; + int key; +}; + +struct double_list { + struct list_head *top; + struct list_head *bottom; +}; + +struct ipv4_devconf { + void *sysctl; + int data[33]; + long unsigned int state[1]; +}; + +enum { + IFLA_UNSPEC = 0, + IFLA_ADDRESS = 1, + IFLA_BROADCAST = 2, + IFLA_IFNAME = 3, + IFLA_MTU = 4, + IFLA_LINK = 5, + IFLA_QDISC = 6, + IFLA_STATS = 7, + IFLA_COST = 8, + IFLA_PRIORITY = 9, + IFLA_MASTER = 10, + IFLA_WIRELESS = 11, + IFLA_PROTINFO = 12, + IFLA_TXQLEN = 13, + IFLA_MAP = 14, + IFLA_WEIGHT = 15, + IFLA_OPERSTATE = 16, + IFLA_LINKMODE = 17, + IFLA_LINKINFO = 18, + IFLA_NET_NS_PID = 19, + IFLA_IFALIAS = 20, + IFLA_NUM_VF = 21, + IFLA_VFINFO_LIST = 22, + IFLA_STATS64 = 23, + IFLA_VF_PORTS = 24, + IFLA_PORT_SELF = 25, + IFLA_AF_SPEC = 26, + IFLA_GROUP = 27, + IFLA_NET_NS_FD = 28, + IFLA_EXT_MASK = 29, + IFLA_PROMISCUITY = 30, + IFLA_NUM_TX_QUEUES = 31, + IFLA_NUM_RX_QUEUES = 32, + IFLA_CARRIER = 33, + IFLA_PHYS_PORT_ID = 34, + IFLA_CARRIER_CHANGES = 35, + IFLA_PHYS_SWITCH_ID = 36, + IFLA_LINK_NETNSID = 37, + IFLA_PHYS_PORT_NAME = 38, + IFLA_PROTO_DOWN = 39, + IFLA_GSO_MAX_SEGS = 40, + IFLA_GSO_MAX_SIZE = 41, + IFLA_PAD = 42, + IFLA_XDP = 43, + IFLA_EVENT = 44, + IFLA_NEW_NETNSID = 45, + IFLA_IF_NETNSID = 46, + IFLA_TARGET_NETNSID = 46, + IFLA_CARRIER_UP_COUNT = 47, + IFLA_CARRIER_DOWN_COUNT = 48, + IFLA_NEW_IFINDEX = 49, + IFLA_MIN_MTU = 50, + IFLA_MAX_MTU = 51, + IFLA_PROP_LIST = 52, + IFLA_ALT_IFNAME = 53, + IFLA_PERM_ADDRESS = 54, + IFLA_PROTO_DOWN_REASON = 55, + IFLA_PARENT_DEV_NAME = 56, + IFLA_PARENT_DEV_BUS_NAME = 57, + IFLA_GRO_MAX_SIZE = 58, + IFLA_TSO_MAX_SIZE = 59, + IFLA_TSO_MAX_SEGS = 60, + IFLA_ALLMULTI = 61, + IFLA_DEVLINK_PORT = 62, + IFLA_GSO_IPV4_MAX_SIZE = 63, + IFLA_GRO_IPV4_MAX_SIZE = 64, + IFLA_DPLL_PIN = 65, + __IFLA_MAX = 66, +}; + +enum { + IFLA_BOND_UNSPEC = 0, + IFLA_BOND_MODE = 1, + IFLA_BOND_ACTIVE_SLAVE = 2, + IFLA_BOND_MIIMON = 3, + IFLA_BOND_UPDELAY = 4, + IFLA_BOND_DOWNDELAY = 5, + IFLA_BOND_USE_CARRIER = 6, + IFLA_BOND_ARP_INTERVAL = 7, + IFLA_BOND_ARP_IP_TARGET = 8, + IFLA_BOND_ARP_VALIDATE = 9, + IFLA_BOND_ARP_ALL_TARGETS = 10, + IFLA_BOND_PRIMARY = 11, + IFLA_BOND_PRIMARY_RESELECT = 12, + IFLA_BOND_FAIL_OVER_MAC = 13, + IFLA_BOND_XMIT_HASH_POLICY = 14, + IFLA_BOND_RESEND_IGMP = 15, + IFLA_BOND_NUM_PEER_NOTIF = 16, + IFLA_BOND_ALL_SLAVES_ACTIVE = 17, + IFLA_BOND_MIN_LINKS = 18, + IFLA_BOND_LP_INTERVAL = 19, + IFLA_BOND_PACKETS_PER_SLAVE = 20, + IFLA_BOND_AD_LACP_RATE = 21, + IFLA_BOND_AD_SELECT = 22, + IFLA_BOND_AD_INFO = 23, + IFLA_BOND_AD_ACTOR_SYS_PRIO = 24, + IFLA_BOND_AD_USER_PORT_KEY = 25, + IFLA_BOND_AD_ACTOR_SYSTEM = 26, + IFLA_BOND_TLB_DYNAMIC_LB = 27, + IFLA_BOND_PEER_NOTIF_DELAY = 28, + IFLA_BOND_AD_LACP_ACTIVE = 29, + IFLA_BOND_MISSED_MAX = 30, + IFLA_BOND_NS_IP6_TARGET = 31, + IFLA_BOND_COUPLED_CONTROL = 32, + __IFLA_BOND_MAX = 33, +}; + +enum { + IFLA_BOND_AD_INFO_UNSPEC = 0, + IFLA_BOND_AD_INFO_AGGREGATOR = 1, + IFLA_BOND_AD_INFO_NUM_PORTS = 2, + IFLA_BOND_AD_INFO_ACTOR_KEY = 3, + IFLA_BOND_AD_INFO_PARTNER_KEY = 4, + IFLA_BOND_AD_INFO_PARTNER_MAC = 5, + __IFLA_BOND_AD_INFO_MAX = 6, +}; + +enum { + IFLA_BOND_SLAVE_UNSPEC = 0, + IFLA_BOND_SLAVE_STATE = 1, + IFLA_BOND_SLAVE_MII_STATUS = 2, + IFLA_BOND_SLAVE_LINK_FAILURE_COUNT = 3, + IFLA_BOND_SLAVE_PERM_HWADDR = 4, + IFLA_BOND_SLAVE_QUEUE_ID = 5, + IFLA_BOND_SLAVE_AD_AGGREGATOR_ID = 6, + IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE = 7, + IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE = 8, + IFLA_BOND_SLAVE_PRIO = 9, + __IFLA_BOND_SLAVE_MAX = 10, +}; + +enum { + IFLA_STATS_UNSPEC = 0, + IFLA_STATS_LINK_64 = 1, + IFLA_STATS_LINK_XSTATS = 2, + IFLA_STATS_LINK_XSTATS_SLAVE = 3, + IFLA_STATS_LINK_OFFLOAD_XSTATS = 4, + IFLA_STATS_AF_SPEC = 5, + __IFLA_STATS_MAX = 6, +}; + +enum { + LINK_XSTATS_TYPE_UNSPEC = 0, + LINK_XSTATS_TYPE_BRIDGE = 1, + LINK_XSTATS_TYPE_BOND = 2, + __LINK_XSTATS_TYPE_MAX = 3, +}; + +struct ad_info { + __u16 aggregator_id; + __u16 ports; + __u16 actor_key; + __u16 partner_key; + __u8 partner_system[6]; +}; + +enum { + BOND_XSTATS_UNSPEC = 0, + BOND_XSTATS_3AD = 1, + __BOND_XSTATS_MAX = 2, +}; + +struct in_ifaddr; + +struct ip_mc_list; + +struct in_device { + struct net_device *dev; + netdevice_tracker dev_tracker; + refcount_t refcnt; + int dead; + struct in_ifaddr *ifa_list; + struct ip_mc_list *mc_list; + struct ip_mc_list **mc_hash; + int mc_count; + spinlock_t mc_tomb_lock; + struct ip_mc_list *mc_tomb; + long unsigned int mr_v1_seen; + long unsigned int mr_v2_seen; + long unsigned int mr_maxdelay; + long unsigned int mr_qi; + long unsigned int mr_qri; + unsigned char mr_qrv; + unsigned char mr_gq_running; + u32 mr_ifc_count; + struct timer_list mr_gq_timer; + struct timer_list mr_ifc_timer; + struct neigh_parms *arp_parms; + struct ipv4_devconf cnf; + struct callback_head callback_head; +}; + +enum { + IPV4_DEVCONF_FORWARDING = 1, + IPV4_DEVCONF_MC_FORWARDING = 2, + IPV4_DEVCONF_PROXY_ARP = 3, + IPV4_DEVCONF_ACCEPT_REDIRECTS = 4, + IPV4_DEVCONF_SECURE_REDIRECTS = 5, + IPV4_DEVCONF_SEND_REDIRECTS = 6, + IPV4_DEVCONF_SHARED_MEDIA = 7, + IPV4_DEVCONF_RP_FILTER = 8, + IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE = 9, + IPV4_DEVCONF_BOOTP_RELAY = 10, + IPV4_DEVCONF_LOG_MARTIANS = 11, + IPV4_DEVCONF_TAG = 12, + IPV4_DEVCONF_ARPFILTER = 13, + IPV4_DEVCONF_MEDIUM_ID = 14, + IPV4_DEVCONF_NOXFRM = 15, + IPV4_DEVCONF_NOPOLICY = 16, + IPV4_DEVCONF_FORCE_IGMP_VERSION = 17, + IPV4_DEVCONF_ARP_ANNOUNCE = 18, + IPV4_DEVCONF_ARP_IGNORE = 19, + IPV4_DEVCONF_PROMOTE_SECONDARIES = 20, + IPV4_DEVCONF_ARP_ACCEPT = 21, + IPV4_DEVCONF_ARP_NOTIFY = 22, + IPV4_DEVCONF_ACCEPT_LOCAL = 23, + IPV4_DEVCONF_SRC_VMARK = 24, + IPV4_DEVCONF_PROXY_ARP_PVLAN = 25, + IPV4_DEVCONF_ROUTE_LOCALNET = 26, + IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL = 27, + IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL = 28, + IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN = 29, + IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST = 30, + IPV4_DEVCONF_DROP_GRATUITOUS_ARP = 31, + IPV4_DEVCONF_BC_FORWARDING = 32, + IPV4_DEVCONF_ARP_EVICT_NOCARRIER = 33, + __IPV4_DEVCONF_MAX = 34, +}; + +struct in_ifaddr { + struct hlist_node hash; + struct in_ifaddr *ifa_next; + struct in_device *ifa_dev; + struct callback_head callback_head; + __be32 ifa_local; + __be32 ifa_address; + __be32 ifa_mask; + __u32 ifa_rt_priority; + __be32 ifa_broadcast; + unsigned char ifa_scope; + unsigned char ifa_prefixlen; + unsigned char ifa_proto; + __u32 ifa_flags; + char ifa_label[16]; + __u32 ifa_valid_lft; + __u32 ifa_preferred_lft; + long unsigned int ifa_cstamp; + long unsigned int ifa_tstamp; +}; + +struct reciprocal_value { + u32 m; + u8 sh1; + u8 sh2; +}; + +struct mac_addr { + u8 mac_addr_value[6]; +}; + +typedef enum { + AD_RX_DUMMY = 0, + AD_RX_INITIALIZE = 1, + AD_RX_PORT_DISABLED = 2, + AD_RX_LACP_DISABLED = 3, + AD_RX_EXPIRED = 4, + AD_RX_DEFAULTED = 5, + AD_RX_CURRENT = 6, +} rx_states_t; + +typedef enum { + AD_PERIODIC_DUMMY = 0, + AD_NO_PERIODIC = 1, + AD_FAST_PERIODIC = 2, + AD_SLOW_PERIODIC = 3, + AD_PERIODIC_TX = 4, +} periodic_states_t; + +typedef enum { + AD_MUX_DUMMY = 0, + AD_MUX_DETACHED = 1, + AD_MUX_WAITING = 2, + AD_MUX_ATTACHED = 3, + AD_MUX_COLLECTING = 4, + AD_MUX_DISTRIBUTING = 5, + AD_MUX_COLLECTING_DISTRIBUTING = 6, +} mux_states_t; + +typedef enum { + AD_TX_DUMMY = 0, + AD_TRANSMIT = 1, +} tx_states_t; + +typedef enum { + AD_CHURN_MONITOR = 0, + AD_CHURN = 1, + AD_NO_CHURN = 2, +} churn_state_t; + +struct lacpdu { + u8 subtype; + u8 version_number; + u8 tlv_type_actor_info; + u8 actor_information_length; + __be16 actor_system_priority; + struct mac_addr actor_system; + __be16 actor_key; + __be16 actor_port_priority; + __be16 actor_port; + u8 actor_state; + u8 reserved_3_1[3]; + u8 tlv_type_partner_info; + u8 partner_information_length; + __be16 partner_system_priority; + struct mac_addr partner_system; + __be16 partner_key; + __be16 partner_port_priority; + __be16 partner_port; + u8 partner_state; + u8 reserved_3_2[3]; + u8 tlv_type_collector_info; + u8 collector_information_length; + __be16 collector_max_delay; + u8 reserved_12[12]; + u8 tlv_type_terminator; + u8 terminator_length; + u8 reserved_50[50]; +}; + +struct bond_3ad_stats { + atomic64_t lacpdu_rx; + atomic64_t lacpdu_tx; + atomic64_t lacpdu_unknown_rx; + atomic64_t lacpdu_illegal_rx; + atomic64_t marker_rx; + atomic64_t marker_tx; + atomic64_t marker_resp_rx; + atomic64_t marker_resp_tx; + atomic64_t marker_unknown_rx; +}; + +struct port; + +struct slave; + +struct aggregator { + struct mac_addr aggregator_mac_address; + u16 aggregator_identifier; + bool is_individual; + u16 actor_admin_aggregator_key; + u16 actor_oper_aggregator_key; + struct mac_addr partner_system; + u16 partner_system_priority; + u16 partner_oper_aggregator_key; + u16 receive_state; + u16 transmit_state; + struct port *lag_ports; + struct slave *slave; + u16 is_active; + u16 num_of_ports; +}; + +struct port_params { + struct mac_addr system; + u16 system_priority; + u16 key; + u16 port_number; + u16 port_priority; + u16 port_state; +}; + +struct port { + u16 actor_port_number; + u16 actor_port_priority; + struct mac_addr actor_system; + u16 actor_system_priority; + u16 actor_port_aggregator_identifier; + bool ntt; + u16 actor_admin_port_key; + u16 actor_oper_port_key; + u8 actor_admin_port_state; + u8 actor_oper_port_state; + struct port_params partner_admin; + struct port_params partner_oper; + bool is_enabled; + u16 sm_vars; + rx_states_t sm_rx_state; + u16 sm_rx_timer_counter; + periodic_states_t sm_periodic_state; + u16 sm_periodic_timer_counter; + mux_states_t sm_mux_state; + u16 sm_mux_timer_counter; + tx_states_t sm_tx_state; + u16 sm_tx_timer_counter; + u16 sm_churn_actor_timer_counter; + u16 sm_churn_partner_timer_counter; + u32 churn_actor_count; + u32 churn_partner_count; + churn_state_t sm_churn_actor_state; + churn_state_t sm_churn_partner_state; + struct slave *slave; + struct aggregator *aggregator; + struct port *next_port_in_aggregator; + u32 transaction_id; + struct lacpdu lacpdu; +}; + +struct tlb_slave_info { + u32 head; + u32 load; +}; + +struct bonding; + +struct ad_slave_info; + +struct slave { + struct net_device *dev; + struct bonding *bond; + int delay; + long unsigned int last_link_up; + long unsigned int last_tx; + long unsigned int last_rx; + long unsigned int target_last_arp_rx[16]; + s8 link; + s8 link_new_state; + u8 backup: 1; + u8 inactive: 1; + u8 rx_disabled: 1; + u8 should_notify: 1; + u8 should_notify_link: 1; + u8 duplex; + u32 original_mtu; + u32 link_failure_count; + u32 speed; + u16 queue_id; + u8 perm_hwaddr[32]; + int prio; + struct ad_slave_info *ad_info; + struct tlb_slave_info tlb_info; + struct delayed_work notify_work; + struct kobject kobj; + struct rtnl_link_stats64 slave_stats; +}; + +struct ad_system { + u16 sys_priority; + struct mac_addr sys_mac_addr; +}; + +struct ad_bond_info { + struct ad_system system; + struct bond_3ad_stats stats; + atomic_t agg_select_timer; + u16 aggregator_identifier; +}; + +struct ad_slave_info { + struct aggregator aggregator; + struct port port; + struct bond_3ad_stats stats; + u16 id; +}; + +struct tlb_client_info { + struct slave *tx_slave; + u32 tx_bytes; + u32 load_history; + u32 next; + u32 prev; +}; + +struct rlb_client_info { + __be32 ip_src; + __be32 ip_dst; + u8 mac_src[6]; + u8 mac_dst[6]; + u32 used_next; + u32 used_prev; + u32 src_next; + u32 src_prev; + u32 src_first; + u8 assigned; + u8 ntt; + struct slave *slave; + short unsigned int vlan_id; +}; + +struct alb_bond_info { + struct tlb_client_info *tx_hashtbl; + u32 unbalanced_load; + atomic_t tx_rebalance_counter; + int lp_counter; + int rlb_enabled; + struct rlb_client_info *rx_hashtbl; + u32 rx_hashtbl_used_head; + u8 rx_ntt; + struct slave *rx_slave; + u8 primary_is_promisc; + u32 rlb_promisc_timeout_counter; + u32 rlb_update_delay_counter; + u32 rlb_update_retry_counter; + u8 rlb_rebalance; +}; + +enum { + BOND_OPT_MODE = 0, + BOND_OPT_PACKETS_PER_SLAVE = 1, + BOND_OPT_XMIT_HASH = 2, + BOND_OPT_ARP_VALIDATE = 3, + BOND_OPT_ARP_ALL_TARGETS = 4, + BOND_OPT_FAIL_OVER_MAC = 5, + BOND_OPT_ARP_INTERVAL = 6, + BOND_OPT_ARP_TARGETS = 7, + BOND_OPT_DOWNDELAY = 8, + BOND_OPT_UPDELAY = 9, + BOND_OPT_LACP_RATE = 10, + BOND_OPT_MINLINKS = 11, + BOND_OPT_AD_SELECT = 12, + BOND_OPT_NUM_PEER_NOTIF = 13, + BOND_OPT_MIIMON = 14, + BOND_OPT_PRIMARY = 15, + BOND_OPT_PRIMARY_RESELECT = 16, + BOND_OPT_USE_CARRIER = 17, + BOND_OPT_ACTIVE_SLAVE = 18, + BOND_OPT_QUEUE_ID = 19, + BOND_OPT_ALL_SLAVES_ACTIVE = 20, + BOND_OPT_RESEND_IGMP = 21, + BOND_OPT_LP_INTERVAL = 22, + BOND_OPT_SLAVES = 23, + BOND_OPT_TLB_DYNAMIC_LB = 24, + BOND_OPT_AD_ACTOR_SYS_PRIO = 25, + BOND_OPT_AD_ACTOR_SYSTEM = 26, + BOND_OPT_AD_USER_PORT_KEY = 27, + BOND_OPT_NUM_PEER_NOTIF_ALIAS = 28, + BOND_OPT_PEER_NOTIF_DELAY = 29, + BOND_OPT_LACP_ACTIVE = 30, + BOND_OPT_MISSED_MAX = 31, + BOND_OPT_NS_TARGETS = 32, + BOND_OPT_PRIO = 33, + BOND_OPT_COUPLED_CONTROL = 34, + BOND_OPT_LAST = 35, +}; + +struct bond_opt_value { + char *string; + u64 value; + u32 flags; + union { + char extra[16]; + struct net_device *slave_dev; + }; +}; + +struct bond_params { + int mode; + int xmit_policy; + int miimon; + u8 num_peer_notif; + u8 missed_max; + int arp_interval; + int arp_validate; + int arp_all_targets; + int use_carrier; + int fail_over_mac; + int updelay; + int downdelay; + int peer_notif_delay; + int lacp_active; + int lacp_fast; + unsigned int min_links; + int ad_select; + char primary[16]; + int primary_reselect; + __be32 arp_targets[16]; + int tx_queues; + int all_slaves_active; + int resend_igmp; + int lp_interval; + int packets_per_slave; + int tlb_dynamic_lb; + struct reciprocal_value reciprocal_packets_per_slave; + u16 ad_actor_sys_prio; + u16 ad_user_port_key; + struct in6_addr ns_targets[16]; + int coupled_control; + u8 ad_actor_system[8]; +}; + +struct bond_up_slave; + +struct bonding { + struct net_device *dev; + struct slave *curr_active_slave; + struct slave *current_arp_slave; + struct slave *primary_slave; + struct bond_up_slave *usable_slaves; + struct bond_up_slave *all_slaves; + bool force_primary; + bool notifier_ctx; + s32 slave_cnt; + int (*recv_probe)(const struct sk_buff *, struct bonding *, struct slave *); + spinlock_t mode_lock; + spinlock_t stats_lock; + u32 send_peer_notif; + u8 igmp_retrans; + struct proc_dir_entry *proc_entry; + char proc_file_name[16]; + struct list_head bond_list; + u32 *rr_tx_counter; + struct ad_bond_info ad_info; + struct alb_bond_info alb_info; + struct bond_params params; + struct workqueue_struct *wq; + struct delayed_work mii_work; + struct delayed_work arp_work; + struct delayed_work alb_work; + struct delayed_work ad_work; + struct delayed_work mcast_work; + struct delayed_work slave_arr_work; + struct dentry *debug_dir; + struct rtnl_link_stats64 bond_stats; + struct bpf_prog *xdp_prog; +}; + +struct bond_up_slave { + unsigned int count; + struct callback_head rcu; + struct slave *arr[0]; +}; + +typedef __u16 __sum16; + +enum curve25519_lengths { + CURVE25519_KEY_SIZE = 32, +}; + +enum noise_lengths { + NOISE_PUBLIC_KEY_LEN = 32, + NOISE_SYMMETRIC_KEY_LEN = 32, + NOISE_TIMESTAMP_LEN = 12, + NOISE_AUTHTAG_LEN = 16, + NOISE_HASH_LEN = 32, +}; + +struct pubkey_hashtable { + struct hlist_head hashtable[2048]; + siphash_key_t key; + struct mutex lock; +}; + +struct index_hashtable { + struct hlist_head hashtable[8192]; + spinlock_t lock; +}; + +enum index_hashtable_type { + INDEX_HASHTABLE_HANDSHAKE = 1, + INDEX_HASHTABLE_KEYPAIR = 2, +}; + +struct wg_peer; + +struct index_hashtable_entry { + struct wg_peer *peer; + struct hlist_node index_hash; + enum index_hashtable_type type; + __le32 index; +}; + +struct prev_queue { + struct sk_buff *head; + struct sk_buff *tail; + struct sk_buff *peeked; + struct { + struct sk_buff *next; + struct sk_buff *prev; + } empty; + atomic_t count; +}; + +struct noise_keypair; + +struct noise_keypairs { + struct noise_keypair *current_keypair; + struct noise_keypair *previous_keypair; + struct noise_keypair *next_keypair; + spinlock_t keypair_update_lock; +}; + +struct endpoint { + union { + struct sockaddr addr; + struct sockaddr_in addr4; + struct sockaddr_in6 addr6; + }; + union { + struct { + struct in_addr src4; + int src_if4; + }; + struct in6_addr src6; + }; +}; + +struct dst_cache_pcpu; + +struct dst_cache { + struct dst_cache_pcpu *cache; + long unsigned int reset_ts; +}; + +enum noise_handshake_state { + HANDSHAKE_ZEROED = 0, + HANDSHAKE_CREATED_INITIATION = 1, + HANDSHAKE_CONSUMED_INITIATION = 2, + HANDSHAKE_CREATED_RESPONSE = 3, + HANDSHAKE_CONSUMED_RESPONSE = 4, +}; + +struct noise_static_identity; + +struct noise_handshake { + struct index_hashtable_entry entry; + enum noise_handshake_state state; + u64 last_initiation_consumption; + struct noise_static_identity *static_identity; + u8 ephemeral_private[32]; + u8 remote_static[32]; + u8 remote_ephemeral[32]; + u8 precomputed_static_static[32]; + u8 preshared_key[32]; + u8 hash[32]; + u8 chaining_key[32]; + u8 latest_timestamp[12]; + __le32 remote_index; + struct rw_semaphore lock; +}; + +struct cookie { + u64 birthdate; + bool is_valid; + u8 cookie[16]; + bool have_sent_mac1; + u8 last_mac1_sent[16]; + u8 cookie_decryption_key[32]; + u8 message_mac1_key[32]; + struct rw_semaphore lock; +}; + +struct wg_device; + +struct wg_peer { + struct wg_device *device; + struct prev_queue tx_queue; + struct prev_queue rx_queue; + struct sk_buff_head staged_packet_queue; + int serial_work_cpu; + bool is_dead; + struct noise_keypairs keypairs; + struct endpoint endpoint; + struct dst_cache endpoint_cache; + rwlock_t endpoint_lock; + struct noise_handshake handshake; + atomic64_t last_sent_handshake; + struct work_struct transmit_handshake_work; + struct work_struct clear_peer_work; + struct work_struct transmit_packet_work; + struct cookie latest_cookie; + struct hlist_node pubkey_hash; + u64 rx_bytes; + u64 tx_bytes; + struct timer_list timer_retransmit_handshake; + struct timer_list timer_send_keepalive; + struct timer_list timer_new_handshake; + struct timer_list timer_zero_key_material; + struct timer_list timer_persistent_keepalive; + unsigned int timer_handshake_attempts; + u16 persistent_keepalive_interval; + bool timer_need_another_keepalive; + bool sent_lastminute_handshake; + struct timespec64 walltime_last_handshake; + struct kref refcount; + struct callback_head rcu; + struct list_head peer_list; + struct list_head allowedips_list; + struct napi_struct napi; + u64 internal_id; +}; + +struct noise_replay_counter { + u64 counter; + spinlock_t lock; + long unsigned int backtrack[128]; +}; + +struct noise_symmetric_key { + u8 key[32]; + u64 birthdate; + bool is_valid; +}; + +struct noise_keypair { + struct index_hashtable_entry entry; + struct noise_symmetric_key sending; + atomic64_t sending_counter; + struct noise_symmetric_key receiving; + struct noise_replay_counter receiving_counter; + __le32 remote_index; + bool i_am_the_initiator; + struct kref refcount; + struct callback_head rcu; + u64 internal_id; +}; + +struct noise_static_identity { + u8 static_public[32]; + u8 static_private[32]; + struct rw_semaphore lock; + bool has_identity; +}; + +struct iphdr { + __u8 ihl: 4; + __u8 version: 4; + __u8 tos; + __be16 tot_len; + __be16 id; + __be16 frag_off; + __u8 ttl; + __u8 protocol; + __sum16 check; + union { + struct { + __be32 saddr; + __be32 daddr; + }; + struct { + __be32 saddr; + __be32 daddr; + } addrs; + }; +}; + +struct fib_table { + struct hlist_node tb_hlist; + u32 tb_id; + int tb_num_default; + struct callback_head rcu; + long unsigned int *tb_data; + long unsigned int __data[0]; +}; + +struct inet_peer_base { + struct rb_root rb_root; + seqlock_t lock; + int total; +}; + +struct rt6key { + struct in6_addr addr; + int plen; +}; + +struct rtable; + +struct fnhe_hash_bucket; + +struct fib_nh_common { + struct net_device *nhc_dev; + netdevice_tracker nhc_dev_tracker; + int nhc_oif; + unsigned char nhc_scope; + u8 nhc_family; + u8 nhc_gw_family; + unsigned char nhc_flags; + struct lwtunnel_state *nhc_lwtstate; + union { + __be32 ipv4; + struct in6_addr ipv6; + } nhc_gw; + int nhc_weight; + atomic_t nhc_upper_bound; + struct rtable **nhc_pcpu_rth_output; + struct rtable *nhc_rth_input; + struct fnhe_hash_bucket *nhc_exceptions; +}; + +struct rt6_exception_bucket; + +struct fib6_nh { + struct fib_nh_common nh_common; + long unsigned int last_probe; + struct rt6_info **rt6i_pcpu; + struct rt6_exception_bucket *rt6i_exception_bucket; +}; + +struct fib6_node; + +struct dst_metrics; + +struct nexthop; + +struct fib6_info { + struct fib6_table *fib6_table; + struct fib6_info *fib6_next; + struct fib6_node *fib6_node; + union { + struct list_head fib6_siblings; + struct list_head nh_list; + }; + unsigned int fib6_nsiblings; + refcount_t fib6_ref; + long unsigned int expires; + struct hlist_node gc_link; + struct dst_metrics *fib6_metrics; + struct rt6key fib6_dst; + u32 fib6_flags; + struct rt6key fib6_src; + struct rt6key fib6_prefsrc; + u32 fib6_metric; + u8 fib6_protocol; + u8 fib6_type; + u8 offload; + u8 trap; + u8 offload_failed; + u8 should_flush: 1; + u8 dst_nocount: 1; + u8 dst_nopolicy: 1; + u8 fib6_destroying: 1; + u8 unused: 4; + struct callback_head rcu; + struct nexthop *nh; + struct fib6_nh fib6_nh[0]; +}; + +struct rt6_info { + struct dst_entry dst; + struct fib6_info *from; + int sernum; + struct rt6key rt6i_dst; + struct rt6key rt6i_src; + struct in6_addr rt6i_gateway; + struct inet6_dev *rt6i_idev; + u32 rt6i_flags; + short unsigned int rt6i_nfheader_len; +}; + +struct rt6_statistics { + __u32 fib_nodes; + __u32 fib_route_nodes; + __u32 fib_rt_entries; + __u32 fib_rt_cache; + __u32 fib_discarded_routes; + atomic_t fib_rt_alloc; +}; + +struct fib6_node { + struct fib6_node *parent; + struct fib6_node *left; + struct fib6_node *right; + struct fib6_node *subtree; + struct fib6_info *leaf; + __u16 fn_bit; + __u16 fn_flags; + int fn_sernum; + struct fib6_info *rr_ptr; + struct callback_head rcu; +}; + +struct fib6_table { + struct hlist_node tb6_hlist; + u32 tb6_id; + spinlock_t tb6_lock; + struct fib6_node tb6_root; + struct inet_peer_base tb6_peers; + unsigned int flags; + unsigned int fib_seq; + struct hlist_head tb6_gc_hlist; +}; + +struct nf_hook_state; + +typedef unsigned int nf_hookfn(void *, struct sk_buff *, const struct nf_hook_state *); + +struct nf_hook_entry { + nf_hookfn *hook; + void *priv; +}; + +struct nf_hook_entries { + u16 num_hook_entries; + struct nf_hook_entry hooks[0]; +}; + +struct scm_creds { + u32 pid; + kuid_t uid; + kgid_t gid; +}; + +struct netlink_skb_parms { + struct scm_creds creds; + __u32 portid; + __u32 dst_group; + __u32 flags; + struct sock *sk; + bool nsid_is_set; + int nsid; +}; + +enum netdev_state_t { + __LINK_STATE_START = 0, + __LINK_STATE_PRESENT = 1, + __LINK_STATE_NOCARRIER = 2, + __LINK_STATE_LINKWATCH_PENDING = 3, + __LINK_STATE_DORMANT = 4, + __LINK_STATE_TESTING = 5, +}; + +struct ip_tunnel_parm_kern { + char name[16]; + long unsigned int i_flags[1]; + long unsigned int o_flags[1]; + __be32 i_key; + __be32 o_key; + int link; + struct iphdr iph; +}; + +struct lwtunnel_state { + __u16 type; + __u16 flags; + __u16 headroom; + atomic_t refcnt; + int (*orig_output)(struct net *, struct sock *, struct sk_buff *); + int (*orig_input)(struct sk_buff *); + struct callback_head rcu; + __u8 data[0]; +}; + +struct dst_metrics { + u32 metrics[17]; + refcount_t refcnt; +}; + +struct allowedips_node { + struct wg_peer *peer; + struct allowedips_node *bit[2]; + u8 cidr; + u8 bit_at_a; + u8 bit_at_b; + u8 bitlen; + long: 0; + u8 bits[16]; + long unsigned int parent_bit_packed; + union { + struct list_head peer_list; + struct callback_head rcu; + }; +}; + +struct allowedips { + struct allowedips_node *root4; + struct allowedips_node *root6; + u64 seq; +}; + +struct cookie_checker { + u8 secret[32]; + u8 cookie_encryption_key[32]; + u8 message_mac1_key[32]; + u64 secret_birthdate; + struct rw_semaphore secret_lock; + struct wg_device *device; +}; + +struct ptr_ring { + int producer; + spinlock_t producer_lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + int consumer_head; + int consumer_tail; + spinlock_t consumer_lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + int size; + int batch; + void **queue; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct multicore_worker; + +struct crypt_queue { + struct ptr_ring ring; + struct multicore_worker *worker; + int last_cpu; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct wg_device { + struct net_device *dev; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct crypt_queue encrypt_queue; + struct crypt_queue decrypt_queue; + struct crypt_queue handshake_queue; + struct sock *sock4; + struct sock *sock6; + struct net *creating_net; + struct noise_static_identity static_identity; + struct workqueue_struct *packet_crypt_wq; + struct workqueue_struct *handshake_receive_wq; + struct workqueue_struct *handshake_send_wq; + struct cookie_checker cookie_checker; + struct pubkey_hashtable *peer_hashtable; + struct index_hashtable *index_hashtable; + struct allowedips peer_allowedips; + struct mutex device_update_lock; + struct mutex socket_update_lock; + struct list_head device_list; + struct list_head peer_list; + atomic_t handshake_queue_len; + unsigned int num_peers; + unsigned int device_update_gen; + u32 fwmark; + u16 incoming_port; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct multicore_worker { + void *ptr; + struct work_struct work; +}; + +struct nf_hook_state { + u8 hook; + u8 pf; + struct net_device *in; + struct net_device *out; + struct sock *sk; + struct net *net; + int (*okfn)(struct net *, struct sock *, struct sk_buff *); +}; + +struct fib_nh_exception { + struct fib_nh_exception *fnhe_next; + int fnhe_genid; + __be32 fnhe_daddr; + u32 fnhe_pmtu; + bool fnhe_mtu_locked; + __be32 fnhe_gw; + long unsigned int fnhe_expires; + struct rtable *fnhe_rth_input; + struct rtable *fnhe_rth_output; + long unsigned int fnhe_stamp; + struct callback_head rcu; +}; + +struct rtable { + struct dst_entry dst; + int rt_genid; + unsigned int rt_flags; + __u16 rt_type; + __u8 rt_is_input; + __u8 rt_uses_gateway; + int rt_iif; + u8 rt_gw_family; + union { + __be32 rt_gw4; + struct in6_addr rt_gw6; + }; + u32 rt_mtu_locked: 1; + u32 rt_pmtu: 31; +}; + +struct fnhe_hash_bucket { + struct fib_nh_exception *chain; +}; + +struct fib_info; + +struct fib_nh { + struct fib_nh_common nh_common; + struct hlist_node nh_hash; + struct fib_info *nh_parent; + __u32 nh_tclassid; + __be32 nh_saddr; + int nh_saddr_genid; +}; + +struct fib_info { + struct hlist_node fib_hash; + struct hlist_node fib_lhash; + struct list_head nh_list; + struct net *fib_net; + refcount_t fib_treeref; + refcount_t fib_clntref; + unsigned int fib_flags; + unsigned char fib_dead; + unsigned char fib_protocol; + unsigned char fib_scope; + unsigned char fib_type; + __be32 fib_prefsrc; + u32 fib_tb_id; + u32 fib_priority; + struct dst_metrics *fib_metrics; + int fib_nhs; + bool fib_nh_is_v6; + bool nh_updated; + bool pfsrc_removed; + struct nexthop *nh; + struct callback_head rcu; + struct fib_nh fib_nh[0]; +}; + +struct nh_info; + +struct nh_group; + +struct nexthop { + struct rb_node rb_node; + struct list_head fi_list; + struct list_head f6i_list; + struct list_head fdb_list; + struct list_head grp_list; + struct net *net; + u32 id; + u8 protocol; + u8 nh_flags; + bool is_group; + refcount_t refcnt; + struct callback_head rcu; + union { + struct nh_info *nh_info; + struct nh_group *nh_grp; + }; +}; + +struct rt6_exception_bucket { + struct hlist_head chain; + int depth; +}; + +enum { + IP_TUNNEL_CSUM_BIT = 0, + IP_TUNNEL_ROUTING_BIT = 1, + IP_TUNNEL_KEY_BIT = 2, + IP_TUNNEL_SEQ_BIT = 3, + IP_TUNNEL_STRICT_BIT = 4, + IP_TUNNEL_REC_BIT = 5, + IP_TUNNEL_VERSION_BIT = 6, + IP_TUNNEL_NO_KEY_BIT = 7, + IP_TUNNEL_DONT_FRAGMENT_BIT = 8, + IP_TUNNEL_OAM_BIT = 9, + IP_TUNNEL_CRIT_OPT_BIT = 10, + IP_TUNNEL_GENEVE_OPT_BIT = 11, + IP_TUNNEL_VXLAN_OPT_BIT = 12, + IP_TUNNEL_NOCACHE_BIT = 13, + IP_TUNNEL_ERSPAN_OPT_BIT = 14, + IP_TUNNEL_GTP_OPT_BIT = 15, + IP_TUNNEL_VTI_BIT = 16, + IP_TUNNEL_SIT_ISATAP_BIT = 16, + IP_TUNNEL_PFCP_OPT_BIT = 17, + __IP_TUNNEL_FLAG_NUM = 18, +}; + +enum { + __ND_OPT_PREFIX_INFO_END = 0, + ND_OPT_SOURCE_LL_ADDR = 1, + ND_OPT_TARGET_LL_ADDR = 2, + ND_OPT_PREFIX_INFO = 3, + ND_OPT_REDIRECT_HDR = 4, + ND_OPT_MTU = 5, + ND_OPT_NONCE = 14, + __ND_OPT_ARRAY_MAX = 15, + ND_OPT_ROUTE_INFO = 24, + ND_OPT_RDNSS = 25, + ND_OPT_DNSSL = 31, + ND_OPT_6CO = 34, + ND_OPT_CAPTIVE_PORTAL = 37, + ND_OPT_PREF64 = 38, + __ND_OPT_MAX = 39, +}; + +struct nd_opt_hdr { + __u8 nd_opt_type; + __u8 nd_opt_len; +}; + +struct ndisc_options { + struct nd_opt_hdr *nd_opt_array[15]; + struct nd_opt_hdr *nd_useropts; + struct nd_opt_hdr *nd_useropts_end; +}; + +struct prefix_info { + __u8 type; + __u8 length; + __u8 prefix_len; + union { + __u8 flags; + struct { + __u8 reserved: 4; + __u8 preferpd: 1; + __u8 routeraddr: 1; + __u8 autoconf: 1; + __u8 onlink: 1; + }; + }; + __be32 valid; + __be32 prefered; + __be32 reserved2; + struct in6_addr prefix; +}; + +struct nh_info { + struct hlist_node dev_hash; + struct nexthop *nh_parent; + u8 family; + bool reject_nh; + bool fdb_nh; + union { + struct fib_nh_common fib_nhc; + struct fib_nh fib_nh; + struct fib6_nh fib6_nh; + }; +}; + +struct nh_grp_entry; + +struct nh_res_bucket { + struct nh_grp_entry *nh_entry; + atomic_long_t used_time; + long unsigned int migrated_time; + bool occupied; + u8 nh_flags; +}; + +struct nh_grp_entry_stats; + +struct nh_grp_entry { + struct nexthop *nh; + struct nh_grp_entry_stats *stats; + u16 weight; + union { + struct { + atomic_t upper_bound; + } hthr; + struct { + struct list_head uw_nh_entry; + u16 count_buckets; + u16 wants_buckets; + } res; + }; + struct list_head nh_list; + struct nexthop *nh_parent; + u64 packets_hw; +}; + +struct nh_res_table { + struct net *net; + u32 nhg_id; + struct delayed_work upkeep_dw; + struct list_head uw_nh_entries; + long unsigned int unbalanced_since; + u32 idle_timer; + u32 unbalanced_timer; + u16 num_nh_buckets; + struct nh_res_bucket nh_buckets[0]; +}; + +struct nh_grp_entry_stats { + u64_stats_t packets; + struct u64_stats_sync syncp; +}; + +struct nh_group { + struct nh_group *spare; + u16 num_nh; + bool is_multipath; + bool hash_threshold; + bool resilient; + bool fdb_nh; + bool has_v4; + bool hw_stats; + struct nh_res_table *res_table; + struct nh_grp_entry nh_entries[0]; +}; + +enum wg_cmd { + WG_CMD_GET_DEVICE = 0, + WG_CMD_SET_DEVICE = 1, + __WG_CMD_MAX = 2, +}; + +enum wgdevice_flag { + WGDEVICE_F_REPLACE_PEERS = 1, + __WGDEVICE_F_ALL = 1, +}; + +enum wgdevice_attribute { + WGDEVICE_A_UNSPEC = 0, + WGDEVICE_A_IFINDEX = 1, + WGDEVICE_A_IFNAME = 2, + WGDEVICE_A_PRIVATE_KEY = 3, + WGDEVICE_A_PUBLIC_KEY = 4, + WGDEVICE_A_FLAGS = 5, + WGDEVICE_A_LISTEN_PORT = 6, + WGDEVICE_A_FWMARK = 7, + WGDEVICE_A_PEERS = 8, + __WGDEVICE_A_LAST = 9, +}; + +enum wgpeer_flag { + WGPEER_F_REMOVE_ME = 1, + WGPEER_F_REPLACE_ALLOWEDIPS = 2, + WGPEER_F_UPDATE_ONLY = 4, + __WGPEER_F_ALL = 7, +}; + +enum wgpeer_attribute { + WGPEER_A_UNSPEC = 0, + WGPEER_A_PUBLIC_KEY = 1, + WGPEER_A_PRESHARED_KEY = 2, + WGPEER_A_FLAGS = 3, + WGPEER_A_ENDPOINT = 4, + WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL = 5, + WGPEER_A_LAST_HANDSHAKE_TIME = 6, + WGPEER_A_RX_BYTES = 7, + WGPEER_A_TX_BYTES = 8, + WGPEER_A_ALLOWEDIPS = 9, + WGPEER_A_PROTOCOL_VERSION = 10, + __WGPEER_A_LAST = 11, +}; + +enum wgallowedip_attribute { + WGALLOWEDIP_A_UNSPEC = 0, + WGALLOWEDIP_A_FAMILY = 1, + WGALLOWEDIP_A_IPADDR = 2, + WGALLOWEDIP_A_CIDR_MASK = 3, + __WGALLOWEDIP_A_LAST = 4, +}; + +struct genlmsghdr { + __u8 cmd; + __u8 version; + __u16 reserved; +}; + +struct genl_multicast_group { + char name[16]; + u8 flags; +}; + +struct genl_split_ops; + +struct genl_info; + +struct genl_ops; + +struct genl_small_ops; + +struct genl_family { + unsigned int hdrsize; + char name[16]; + unsigned int version; + unsigned int maxattr; + u8 netnsok: 1; + u8 parallel_ops: 1; + u8 n_ops; + u8 n_small_ops; + u8 n_split_ops; + u8 n_mcgrps; + u8 resv_start_op; + const struct nla_policy *policy; + int (*pre_doit)(const struct genl_split_ops *, struct sk_buff *, struct genl_info *); + void (*post_doit)(const struct genl_split_ops *, struct sk_buff *, struct genl_info *); + int (*bind)(int); + void (*unbind)(int); + const struct genl_ops *ops; + const struct genl_small_ops *small_ops; + const struct genl_split_ops *split_ops; + const struct genl_multicast_group *mcgrps; + struct module *module; + size_t sock_priv_size; + void (*sock_priv_init)(void *); + void (*sock_priv_destroy)(void *); + int id; + unsigned int mcgrp_offset; + struct xarray *sock_privs; +}; + +struct genl_split_ops { + union { + struct { + int (*pre_doit)(const struct genl_split_ops *, struct sk_buff *, struct genl_info *); + int (*doit)(struct sk_buff *, struct genl_info *); + void (*post_doit)(const struct genl_split_ops *, struct sk_buff *, struct genl_info *); + }; + struct { + int (*start)(struct netlink_callback *); + int (*dumpit)(struct sk_buff *, struct netlink_callback *); + int (*done)(struct netlink_callback *); + }; + }; + const struct nla_policy *policy; + unsigned int maxattr; + u8 cmd; + u8 internal_flags; + u8 flags; + u8 validate; +}; + +struct genl_info { + u32 snd_seq; + u32 snd_portid; + const struct genl_family *family; + const struct nlmsghdr *nlhdr; + struct genlmsghdr *genlhdr; + struct nlattr **attrs; + possible_net_t _net; + void *user_ptr[2]; + struct netlink_ext_ack *extack; +}; + +struct genl_ops { + int (*doit)(struct sk_buff *, struct genl_info *); + int (*start)(struct netlink_callback *); + int (*dumpit)(struct sk_buff *, struct netlink_callback *); + int (*done)(struct netlink_callback *); + const struct nla_policy *policy; + unsigned int maxattr; + u8 cmd; + u8 internal_flags; + u8 flags; + u8 validate; +}; + +struct genl_small_ops { + int (*doit)(struct sk_buff *, struct genl_info *); + int (*dumpit)(struct sk_buff *, struct netlink_callback *); + u8 cmd; + u8 internal_flags; + u8 flags; + u8 validate; +}; + +struct genl_dumpit_info { + struct genl_split_ops op; + struct genl_info info; +}; + +struct dump_ctx { + struct wg_device *wg; + struct wg_peer *next_peer; + u64 allowedips_seq; + struct allowedips_node *next_allowedip; +}; + +enum device_link_state { + DL_STATE_NONE = -1, + DL_STATE_DORMANT = 0, + DL_STATE_AVAILABLE = 1, + DL_STATE_CONSUMER_PROBE = 2, + DL_STATE_ACTIVE = 3, + DL_STATE_SUPPLIER_UNBIND = 4, +}; + +struct device_link { + struct device *supplier; + struct list_head s_node; + struct device *consumer; + struct list_head c_node; + struct device link_dev; + enum device_link_state status; + u32 flags; + refcount_t rpm_active; + struct kref kref; + struct work_struct rm_work; + bool supplier_preactivated; +}; + +struct ethtool_wolinfo { + __u32 cmd; + __u32 supported; + __u32 wolopts; + __u8 sopass[6]; +}; + +struct ethtool_tunable { + __u32 cmd; + __u32 id; + __u32 type_id; + __u32 len; + void *data[0]; +}; + +struct ethtool_eeprom { + __u32 cmd; + __u32 magic; + __u32 offset; + __u32 len; + __u8 data[0]; +}; + +struct ethtool_modinfo { + __u32 cmd; + __u32 type; + __u32 eeprom_len; + __u32 reserved[8]; +}; + +enum ethtool_mac_stats_src { + ETHTOOL_MAC_STATS_SRC_AGGREGATE = 0, + ETHTOOL_MAC_STATS_SRC_EMAC = 1, + ETHTOOL_MAC_STATS_SRC_PMAC = 2, +}; + +struct ethtool_stats { + __u32 cmd; + __u32 n_stats; + __u64 data[0]; +}; + +enum ethtool_link_mode_bit_indices { + ETHTOOL_LINK_MODE_10baseT_Half_BIT = 0, + ETHTOOL_LINK_MODE_10baseT_Full_BIT = 1, + ETHTOOL_LINK_MODE_100baseT_Half_BIT = 2, + ETHTOOL_LINK_MODE_100baseT_Full_BIT = 3, + ETHTOOL_LINK_MODE_1000baseT_Half_BIT = 4, + ETHTOOL_LINK_MODE_1000baseT_Full_BIT = 5, + ETHTOOL_LINK_MODE_Autoneg_BIT = 6, + ETHTOOL_LINK_MODE_TP_BIT = 7, + ETHTOOL_LINK_MODE_AUI_BIT = 8, + ETHTOOL_LINK_MODE_MII_BIT = 9, + ETHTOOL_LINK_MODE_FIBRE_BIT = 10, + ETHTOOL_LINK_MODE_BNC_BIT = 11, + ETHTOOL_LINK_MODE_10000baseT_Full_BIT = 12, + ETHTOOL_LINK_MODE_Pause_BIT = 13, + ETHTOOL_LINK_MODE_Asym_Pause_BIT = 14, + ETHTOOL_LINK_MODE_2500baseX_Full_BIT = 15, + ETHTOOL_LINK_MODE_Backplane_BIT = 16, + ETHTOOL_LINK_MODE_1000baseKX_Full_BIT = 17, + ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT = 18, + ETHTOOL_LINK_MODE_10000baseKR_Full_BIT = 19, + ETHTOOL_LINK_MODE_10000baseR_FEC_BIT = 20, + ETHTOOL_LINK_MODE_20000baseMLD2_Full_BIT = 21, + ETHTOOL_LINK_MODE_20000baseKR2_Full_BIT = 22, + ETHTOOL_LINK_MODE_40000baseKR4_Full_BIT = 23, + ETHTOOL_LINK_MODE_40000baseCR4_Full_BIT = 24, + ETHTOOL_LINK_MODE_40000baseSR4_Full_BIT = 25, + ETHTOOL_LINK_MODE_40000baseLR4_Full_BIT = 26, + ETHTOOL_LINK_MODE_56000baseKR4_Full_BIT = 27, + ETHTOOL_LINK_MODE_56000baseCR4_Full_BIT = 28, + ETHTOOL_LINK_MODE_56000baseSR4_Full_BIT = 29, + ETHTOOL_LINK_MODE_56000baseLR4_Full_BIT = 30, + ETHTOOL_LINK_MODE_25000baseCR_Full_BIT = 31, + ETHTOOL_LINK_MODE_25000baseKR_Full_BIT = 32, + ETHTOOL_LINK_MODE_25000baseSR_Full_BIT = 33, + ETHTOOL_LINK_MODE_50000baseCR2_Full_BIT = 34, + ETHTOOL_LINK_MODE_50000baseKR2_Full_BIT = 35, + ETHTOOL_LINK_MODE_100000baseKR4_Full_BIT = 36, + ETHTOOL_LINK_MODE_100000baseSR4_Full_BIT = 37, + ETHTOOL_LINK_MODE_100000baseCR4_Full_BIT = 38, + ETHTOOL_LINK_MODE_100000baseLR4_ER4_Full_BIT = 39, + ETHTOOL_LINK_MODE_50000baseSR2_Full_BIT = 40, + ETHTOOL_LINK_MODE_1000baseX_Full_BIT = 41, + ETHTOOL_LINK_MODE_10000baseCR_Full_BIT = 42, + ETHTOOL_LINK_MODE_10000baseSR_Full_BIT = 43, + ETHTOOL_LINK_MODE_10000baseLR_Full_BIT = 44, + ETHTOOL_LINK_MODE_10000baseLRM_Full_BIT = 45, + ETHTOOL_LINK_MODE_10000baseER_Full_BIT = 46, + ETHTOOL_LINK_MODE_2500baseT_Full_BIT = 47, + ETHTOOL_LINK_MODE_5000baseT_Full_BIT = 48, + ETHTOOL_LINK_MODE_FEC_NONE_BIT = 49, + ETHTOOL_LINK_MODE_FEC_RS_BIT = 50, + ETHTOOL_LINK_MODE_FEC_BASER_BIT = 51, + ETHTOOL_LINK_MODE_50000baseKR_Full_BIT = 52, + ETHTOOL_LINK_MODE_50000baseSR_Full_BIT = 53, + ETHTOOL_LINK_MODE_50000baseCR_Full_BIT = 54, + ETHTOOL_LINK_MODE_50000baseLR_ER_FR_Full_BIT = 55, + ETHTOOL_LINK_MODE_50000baseDR_Full_BIT = 56, + ETHTOOL_LINK_MODE_100000baseKR2_Full_BIT = 57, + ETHTOOL_LINK_MODE_100000baseSR2_Full_BIT = 58, + ETHTOOL_LINK_MODE_100000baseCR2_Full_BIT = 59, + ETHTOOL_LINK_MODE_100000baseLR2_ER2_FR2_Full_BIT = 60, + ETHTOOL_LINK_MODE_100000baseDR2_Full_BIT = 61, + ETHTOOL_LINK_MODE_200000baseKR4_Full_BIT = 62, + ETHTOOL_LINK_MODE_200000baseSR4_Full_BIT = 63, + ETHTOOL_LINK_MODE_200000baseLR4_ER4_FR4_Full_BIT = 64, + ETHTOOL_LINK_MODE_200000baseDR4_Full_BIT = 65, + ETHTOOL_LINK_MODE_200000baseCR4_Full_BIT = 66, + ETHTOOL_LINK_MODE_100baseT1_Full_BIT = 67, + ETHTOOL_LINK_MODE_1000baseT1_Full_BIT = 68, + ETHTOOL_LINK_MODE_400000baseKR8_Full_BIT = 69, + ETHTOOL_LINK_MODE_400000baseSR8_Full_BIT = 70, + ETHTOOL_LINK_MODE_400000baseLR8_ER8_FR8_Full_BIT = 71, + ETHTOOL_LINK_MODE_400000baseDR8_Full_BIT = 72, + ETHTOOL_LINK_MODE_400000baseCR8_Full_BIT = 73, + ETHTOOL_LINK_MODE_FEC_LLRS_BIT = 74, + ETHTOOL_LINK_MODE_100000baseKR_Full_BIT = 75, + ETHTOOL_LINK_MODE_100000baseSR_Full_BIT = 76, + ETHTOOL_LINK_MODE_100000baseLR_ER_FR_Full_BIT = 77, + ETHTOOL_LINK_MODE_100000baseCR_Full_BIT = 78, + ETHTOOL_LINK_MODE_100000baseDR_Full_BIT = 79, + ETHTOOL_LINK_MODE_200000baseKR2_Full_BIT = 80, + ETHTOOL_LINK_MODE_200000baseSR2_Full_BIT = 81, + ETHTOOL_LINK_MODE_200000baseLR2_ER2_FR2_Full_BIT = 82, + ETHTOOL_LINK_MODE_200000baseDR2_Full_BIT = 83, + ETHTOOL_LINK_MODE_200000baseCR2_Full_BIT = 84, + ETHTOOL_LINK_MODE_400000baseKR4_Full_BIT = 85, + ETHTOOL_LINK_MODE_400000baseSR4_Full_BIT = 86, + ETHTOOL_LINK_MODE_400000baseLR4_ER4_FR4_Full_BIT = 87, + ETHTOOL_LINK_MODE_400000baseDR4_Full_BIT = 88, + ETHTOOL_LINK_MODE_400000baseCR4_Full_BIT = 89, + ETHTOOL_LINK_MODE_100baseFX_Half_BIT = 90, + ETHTOOL_LINK_MODE_100baseFX_Full_BIT = 91, + ETHTOOL_LINK_MODE_10baseT1L_Full_BIT = 92, + ETHTOOL_LINK_MODE_800000baseCR8_Full_BIT = 93, + ETHTOOL_LINK_MODE_800000baseKR8_Full_BIT = 94, + ETHTOOL_LINK_MODE_800000baseDR8_Full_BIT = 95, + ETHTOOL_LINK_MODE_800000baseDR8_2_Full_BIT = 96, + ETHTOOL_LINK_MODE_800000baseSR8_Full_BIT = 97, + ETHTOOL_LINK_MODE_800000baseVR8_Full_BIT = 98, + ETHTOOL_LINK_MODE_10baseT1S_Full_BIT = 99, + ETHTOOL_LINK_MODE_10baseT1S_Half_BIT = 100, + ETHTOOL_LINK_MODE_10baseT1S_P2MP_Half_BIT = 101, + ETHTOOL_LINK_MODE_10baseT1BRR_Full_BIT = 102, + __ETHTOOL_LINK_MODE_MASK_NBITS = 103, +}; + +enum hwtstamp_tx_types { + HWTSTAMP_TX_OFF = 0, + HWTSTAMP_TX_ON = 1, + HWTSTAMP_TX_ONESTEP_SYNC = 2, + HWTSTAMP_TX_ONESTEP_P2P = 3, + __HWTSTAMP_TX_CNT = 4, +}; + +enum hwtstamp_rx_filters { + HWTSTAMP_FILTER_NONE = 0, + HWTSTAMP_FILTER_ALL = 1, + HWTSTAMP_FILTER_SOME = 2, + HWTSTAMP_FILTER_PTP_V1_L4_EVENT = 3, + HWTSTAMP_FILTER_PTP_V1_L4_SYNC = 4, + HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ = 5, + HWTSTAMP_FILTER_PTP_V2_L4_EVENT = 6, + HWTSTAMP_FILTER_PTP_V2_L4_SYNC = 7, + HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ = 8, + HWTSTAMP_FILTER_PTP_V2_L2_EVENT = 9, + HWTSTAMP_FILTER_PTP_V2_L2_SYNC = 10, + HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ = 11, + HWTSTAMP_FILTER_PTP_V2_EVENT = 12, + HWTSTAMP_FILTER_PTP_V2_SYNC = 13, + HWTSTAMP_FILTER_PTP_V2_DELAY_REQ = 14, + HWTSTAMP_FILTER_NTP_ALL = 15, + __HWTSTAMP_FILTER_CNT = 16, +}; + +struct ethtool_link_ext_stats { + u64 link_down_events; +}; + +struct ethtool_eth_phy_stats { + enum ethtool_mac_stats_src src; + union { + struct { + u64 SymbolErrorDuringCarrier; + }; + struct { + u64 SymbolErrorDuringCarrier; + } stats; + }; +}; + +struct ethtool_phy_stats { + u64 rx_packets; + u64 rx_bytes; + u64 rx_errors; + u64 tx_packets; + u64 tx_bytes; + u64 tx_errors; +}; + +struct kernel_ethtool_ts_info { + u32 cmd; + u32 so_timestamping; + int phc_index; + enum hwtstamp_tx_types tx_types; + enum hwtstamp_rx_filters rx_filters; +}; + +struct mii_bus; + +struct reset_control; + +struct mdio_device { + struct device dev; + struct mii_bus *bus; + char modalias[32]; + int (*bus_match)(struct device *, const struct device_driver *); + void (*device_free)(struct mdio_device *); + void (*device_remove)(struct mdio_device *); + int addr; + int flags; + int reset_state; + struct gpio_desc *reset_gpio; + struct reset_control *reset_ctrl; + unsigned int reset_assert_delay; + unsigned int reset_deassert_delay; +}; + +struct phy_c45_device_ids { + u32 devices_in_package; + u32 mmds_present; + u32 device_ids[32]; +}; + +enum phy_state { + PHY_DOWN = 0, + PHY_READY = 1, + PHY_HALTED = 2, + PHY_ERROR = 3, + PHY_UP = 4, + PHY_RUNNING = 5, + PHY_NOLINK = 6, + PHY_CABLETEST = 7, +}; + +typedef enum { + PHY_INTERFACE_MODE_NA = 0, + PHY_INTERFACE_MODE_INTERNAL = 1, + PHY_INTERFACE_MODE_MII = 2, + PHY_INTERFACE_MODE_GMII = 3, + PHY_INTERFACE_MODE_SGMII = 4, + PHY_INTERFACE_MODE_TBI = 5, + PHY_INTERFACE_MODE_REVMII = 6, + PHY_INTERFACE_MODE_RMII = 7, + PHY_INTERFACE_MODE_REVRMII = 8, + PHY_INTERFACE_MODE_RGMII = 9, + PHY_INTERFACE_MODE_RGMII_ID = 10, + PHY_INTERFACE_MODE_RGMII_RXID = 11, + PHY_INTERFACE_MODE_RGMII_TXID = 12, + PHY_INTERFACE_MODE_RTBI = 13, + PHY_INTERFACE_MODE_SMII = 14, + PHY_INTERFACE_MODE_XGMII = 15, + PHY_INTERFACE_MODE_XLGMII = 16, + PHY_INTERFACE_MODE_MOCA = 17, + PHY_INTERFACE_MODE_PSGMII = 18, + PHY_INTERFACE_MODE_QSGMII = 19, + PHY_INTERFACE_MODE_TRGMII = 20, + PHY_INTERFACE_MODE_100BASEX = 21, + PHY_INTERFACE_MODE_1000BASEX = 22, + PHY_INTERFACE_MODE_2500BASEX = 23, + PHY_INTERFACE_MODE_5GBASER = 24, + PHY_INTERFACE_MODE_RXAUI = 25, + PHY_INTERFACE_MODE_XAUI = 26, + PHY_INTERFACE_MODE_10GBASER = 27, + PHY_INTERFACE_MODE_25GBASER = 28, + PHY_INTERFACE_MODE_USXGMII = 29, + PHY_INTERFACE_MODE_10GKR = 30, + PHY_INTERFACE_MODE_QUSGMII = 31, + PHY_INTERFACE_MODE_1000BASEKX = 32, + PHY_INTERFACE_MODE_10G_QXGMII = 33, + PHY_INTERFACE_MODE_MAX = 34, +} phy_interface_t; + +struct eee_config { + u32 tx_lpi_timer; + bool tx_lpi_enabled; + bool eee_enabled; +}; + +struct phylink; + +struct pse_control; + +struct phy_driver; + +struct phy_package_shared; + +struct mii_timestamper; + +struct phy_device { + struct mdio_device mdio; + const struct phy_driver *drv; + struct device_link *devlink; + u32 phyindex; + u32 phy_id; + struct phy_c45_device_ids c45_ids; + unsigned int is_c45: 1; + unsigned int is_internal: 1; + unsigned int is_pseudo_fixed_link: 1; + unsigned int is_gigabit_capable: 1; + unsigned int has_fixups: 1; + unsigned int suspended: 1; + unsigned int suspended_by_mdio_bus: 1; + unsigned int sysfs_links: 1; + unsigned int loopback_enabled: 1; + unsigned int downshifted_rate: 1; + unsigned int is_on_sfp_module: 1; + unsigned int mac_managed_pm: 1; + unsigned int wol_enabled: 1; + unsigned int autoneg: 1; + unsigned int link: 1; + unsigned int autoneg_complete: 1; + unsigned int interrupts: 1; + unsigned int irq_suspended: 1; + unsigned int irq_rerun: 1; + unsigned int default_timestamp: 1; + int rate_matching; + enum phy_state state; + u32 dev_flags; + phy_interface_t interface; + long unsigned int possible_interfaces[1]; + int speed; + int duplex; + int port; + int pause; + int asym_pause; + u8 master_slave_get; + u8 master_slave_set; + u8 master_slave_state; + long unsigned int supported[2]; + long unsigned int advertising[2]; + long unsigned int lp_advertising[2]; + long unsigned int adv_old[2]; + long unsigned int supported_eee[2]; + long unsigned int advertising_eee[2]; + bool eee_enabled; + long unsigned int host_interfaces[1]; + u32 eee_broken_modes; + bool enable_tx_lpi; + struct eee_config eee_cfg; + struct list_head leds; + int irq; + void *priv; + struct phy_package_shared *shared; + struct sk_buff *skb; + void *ehdr; + struct nlattr *nest; + struct delayed_work state_queue; + struct mutex lock; + bool sfp_bus_attached; + struct sfp_bus *sfp_bus; + struct phylink *phylink; + struct net_device *attached_dev; + struct mii_timestamper *mii_ts; + struct pse_control *psec; + u8 mdix; + u8 mdix_ctrl; + int pma_extable; + unsigned int link_down_events; + void (*phy_link_change)(struct phy_device *, bool); + void (*adjust_link)(struct net_device *); +}; + +struct phy_plca_cfg { + int version; + int enabled; + int node_id; + int node_cnt; + int to_tmr; + int burst_cnt; + int burst_tmr; +}; + +struct phy_plca_status { + bool pst; +}; + +struct phy_tdr_config { + u32 first; + u32 last; + u32 step; + s8 pair; +}; + +enum led_brightness { + LED_OFF = 0, + LED_ON = 1, + LED_HALF = 127, + LED_FULL = 255, +}; + +struct mdio_bus_stats { + u64_stats_t transfers; + u64_stats_t errors; + u64_stats_t writes; + u64_stats_t reads; + struct u64_stats_sync syncp; +}; + +struct mii_bus { + struct module *owner; + const char *name; + char id[61]; + void *priv; + int (*read)(struct mii_bus *, int, int); + int (*write)(struct mii_bus *, int, int, u16); + int (*read_c45)(struct mii_bus *, int, int, int); + int (*write_c45)(struct mii_bus *, int, int, int, u16); + int (*reset)(struct mii_bus *); + struct mdio_bus_stats stats[32]; + struct mutex mdio_lock; + struct device *parent; + enum { + MDIOBUS_ALLOCATED = 1, + MDIOBUS_REGISTERED = 2, + MDIOBUS_UNREGISTERED = 3, + MDIOBUS_RELEASED = 4, + } state; + struct device dev; + struct mdio_device *mdio_map[32]; + u32 phy_mask; + u32 phy_ignore_ta_mask; + int irq[32]; + int reset_delay_us; + int reset_post_delay_us; + struct gpio_desc *reset_gpiod; + struct mutex shared_lock; + struct phy_package_shared *shared[32]; +}; + +struct mdio_driver_common { + struct device_driver driver; + int flags; +}; + +struct mii_timestamper { + bool (*rxtstamp)(struct mii_timestamper *, struct sk_buff *, int); + void (*txtstamp)(struct mii_timestamper *, struct sk_buff *, int); + int (*hwtstamp)(struct mii_timestamper *, struct kernel_hwtstamp_config *, struct netlink_ext_ack *); + void (*link_state)(struct mii_timestamper *, struct phy_device *); + int (*ts_info)(struct mii_timestamper *, struct kernel_ethtool_ts_info *); + struct device *device; +}; + +struct phy_package_shared { + u8 base_addr; + struct device_node *np; + refcount_t refcnt; + long unsigned int flags; + size_t priv_size; + void *priv; +}; + +struct phy_driver { + struct mdio_driver_common mdiodrv; + u32 phy_id; + char *name; + u32 phy_id_mask; + const long unsigned int * const features; + u32 flags; + const void *driver_data; + int (*soft_reset)(struct phy_device *); + int (*config_init)(struct phy_device *); + int (*probe)(struct phy_device *); + int (*get_features)(struct phy_device *); + int (*get_rate_matching)(struct phy_device *, phy_interface_t); + int (*suspend)(struct phy_device *); + int (*resume)(struct phy_device *); + int (*config_aneg)(struct phy_device *); + int (*aneg_done)(struct phy_device *); + int (*read_status)(struct phy_device *); + int (*config_intr)(struct phy_device *); + irqreturn_t (*handle_interrupt)(struct phy_device *); + void (*remove)(struct phy_device *); + int (*match_phy_device)(struct phy_device *); + int (*set_wol)(struct phy_device *, struct ethtool_wolinfo *); + void (*get_wol)(struct phy_device *, struct ethtool_wolinfo *); + void (*link_change_notify)(struct phy_device *); + int (*read_mmd)(struct phy_device *, int, u16); + int (*write_mmd)(struct phy_device *, int, u16, u16); + int (*read_page)(struct phy_device *); + int (*write_page)(struct phy_device *, int); + int (*module_info)(struct phy_device *, struct ethtool_modinfo *); + int (*module_eeprom)(struct phy_device *, struct ethtool_eeprom *, u8 *); + int (*cable_test_start)(struct phy_device *); + int (*cable_test_tdr_start)(struct phy_device *, const struct phy_tdr_config *); + int (*cable_test_get_status)(struct phy_device *, bool *); + void (*get_phy_stats)(struct phy_device *, struct ethtool_eth_phy_stats *, struct ethtool_phy_stats *); + void (*get_link_stats)(struct phy_device *, struct ethtool_link_ext_stats *); + int (*get_sset_count)(struct phy_device *); + void (*get_strings)(struct phy_device *, u8 *); + void (*get_stats)(struct phy_device *, struct ethtool_stats *, u64 *); + int (*get_tunable)(struct phy_device *, struct ethtool_tunable *, void *); + int (*set_tunable)(struct phy_device *, struct ethtool_tunable *, const void *); + int (*set_loopback)(struct phy_device *, bool); + int (*get_sqi)(struct phy_device *); + int (*get_sqi_max)(struct phy_device *); + int (*get_plca_cfg)(struct phy_device *, struct phy_plca_cfg *); + int (*set_plca_cfg)(struct phy_device *, const struct phy_plca_cfg *); + int (*get_plca_status)(struct phy_device *, struct phy_plca_status *); + int (*led_brightness_set)(struct phy_device *, u8, enum led_brightness); + int (*led_blink_set)(struct phy_device *, u8, long unsigned int *, long unsigned int *); + int (*led_hw_is_supported)(struct phy_device *, u8, long unsigned int); + int (*led_hw_control_set)(struct phy_device *, u8, long unsigned int); + int (*led_hw_control_get)(struct phy_device *, u8, long unsigned int *); + int (*led_polarity_set)(struct phy_device *, int, long unsigned int); +}; + +enum { + DUMP_PREFIX_NONE = 0, + DUMP_PREFIX_ADDRESS = 1, + DUMP_PREFIX_OFFSET = 2, +}; + +struct tasklet_struct { + struct tasklet_struct *next; + long unsigned int state; + atomic_t count; + bool use_callback; + union { + void (*func)(long unsigned int); + void (*callback)(struct tasklet_struct *); + }; + long unsigned int data; +}; + +enum { + TASKLET_STATE_SCHED = 0, + TASKLET_STATE_RUN = 1, +}; + +enum skb_drop_reason { + SKB_NOT_DROPPED_YET = 0, + SKB_CONSUMED = 1, + SKB_DROP_REASON_NOT_SPECIFIED = 2, + SKB_DROP_REASON_NO_SOCKET = 3, + SKB_DROP_REASON_PKT_TOO_SMALL = 4, + SKB_DROP_REASON_TCP_CSUM = 5, + SKB_DROP_REASON_SOCKET_FILTER = 6, + SKB_DROP_REASON_UDP_CSUM = 7, + SKB_DROP_REASON_NETFILTER_DROP = 8, + SKB_DROP_REASON_OTHERHOST = 9, + SKB_DROP_REASON_IP_CSUM = 10, + SKB_DROP_REASON_IP_INHDR = 11, + SKB_DROP_REASON_IP_RPFILTER = 12, + SKB_DROP_REASON_UNICAST_IN_L2_MULTICAST = 13, + SKB_DROP_REASON_XFRM_POLICY = 14, + SKB_DROP_REASON_IP_NOPROTO = 15, + SKB_DROP_REASON_SOCKET_RCVBUFF = 16, + SKB_DROP_REASON_PROTO_MEM = 17, + SKB_DROP_REASON_TCP_AUTH_HDR = 18, + SKB_DROP_REASON_TCP_MD5NOTFOUND = 19, + SKB_DROP_REASON_TCP_MD5UNEXPECTED = 20, + SKB_DROP_REASON_TCP_MD5FAILURE = 21, + SKB_DROP_REASON_TCP_AONOTFOUND = 22, + SKB_DROP_REASON_TCP_AOUNEXPECTED = 23, + SKB_DROP_REASON_TCP_AOKEYNOTFOUND = 24, + SKB_DROP_REASON_TCP_AOFAILURE = 25, + SKB_DROP_REASON_SOCKET_BACKLOG = 26, + SKB_DROP_REASON_TCP_FLAGS = 27, + SKB_DROP_REASON_TCP_ABORT_ON_DATA = 28, + SKB_DROP_REASON_TCP_ZEROWINDOW = 29, + SKB_DROP_REASON_TCP_OLD_DATA = 30, + SKB_DROP_REASON_TCP_OVERWINDOW = 31, + SKB_DROP_REASON_TCP_OFOMERGE = 32, + SKB_DROP_REASON_TCP_RFC7323_PAWS = 33, + SKB_DROP_REASON_TCP_OLD_SEQUENCE = 34, + SKB_DROP_REASON_TCP_INVALID_SEQUENCE = 35, + SKB_DROP_REASON_TCP_INVALID_ACK_SEQUENCE = 36, + SKB_DROP_REASON_TCP_RESET = 37, + SKB_DROP_REASON_TCP_INVALID_SYN = 38, + SKB_DROP_REASON_TCP_CLOSE = 39, + SKB_DROP_REASON_TCP_FASTOPEN = 40, + SKB_DROP_REASON_TCP_OLD_ACK = 41, + SKB_DROP_REASON_TCP_TOO_OLD_ACK = 42, + SKB_DROP_REASON_TCP_ACK_UNSENT_DATA = 43, + SKB_DROP_REASON_TCP_OFO_QUEUE_PRUNE = 44, + SKB_DROP_REASON_TCP_OFO_DROP = 45, + SKB_DROP_REASON_IP_OUTNOROUTES = 46, + SKB_DROP_REASON_BPF_CGROUP_EGRESS = 47, + SKB_DROP_REASON_IPV6DISABLED = 48, + SKB_DROP_REASON_NEIGH_CREATEFAIL = 49, + SKB_DROP_REASON_NEIGH_FAILED = 50, + SKB_DROP_REASON_NEIGH_QUEUEFULL = 51, + SKB_DROP_REASON_NEIGH_DEAD = 52, + SKB_DROP_REASON_TC_EGRESS = 53, + SKB_DROP_REASON_SECURITY_HOOK = 54, + SKB_DROP_REASON_QDISC_DROP = 55, + SKB_DROP_REASON_CPU_BACKLOG = 56, + SKB_DROP_REASON_XDP = 57, + SKB_DROP_REASON_TC_INGRESS = 58, + SKB_DROP_REASON_UNHANDLED_PROTO = 59, + SKB_DROP_REASON_SKB_CSUM = 60, + SKB_DROP_REASON_SKB_GSO_SEG = 61, + SKB_DROP_REASON_SKB_UCOPY_FAULT = 62, + SKB_DROP_REASON_DEV_HDR = 63, + SKB_DROP_REASON_DEV_READY = 64, + SKB_DROP_REASON_FULL_RING = 65, + SKB_DROP_REASON_NOMEM = 66, + SKB_DROP_REASON_HDR_TRUNC = 67, + SKB_DROP_REASON_TAP_FILTER = 68, + SKB_DROP_REASON_TAP_TXFILTER = 69, + SKB_DROP_REASON_ICMP_CSUM = 70, + SKB_DROP_REASON_INVALID_PROTO = 71, + SKB_DROP_REASON_IP_INADDRERRORS = 72, + SKB_DROP_REASON_IP_INNOROUTES = 73, + SKB_DROP_REASON_PKT_TOO_BIG = 74, + SKB_DROP_REASON_DUP_FRAG = 75, + SKB_DROP_REASON_FRAG_REASM_TIMEOUT = 76, + SKB_DROP_REASON_FRAG_TOO_FAR = 77, + SKB_DROP_REASON_TCP_MINTTL = 78, + SKB_DROP_REASON_IPV6_BAD_EXTHDR = 79, + SKB_DROP_REASON_IPV6_NDISC_FRAG = 80, + SKB_DROP_REASON_IPV6_NDISC_HOP_LIMIT = 81, + SKB_DROP_REASON_IPV6_NDISC_BAD_CODE = 82, + SKB_DROP_REASON_IPV6_NDISC_BAD_OPTIONS = 83, + SKB_DROP_REASON_IPV6_NDISC_NS_OTHERHOST = 84, + SKB_DROP_REASON_QUEUE_PURGE = 85, + SKB_DROP_REASON_TC_COOKIE_ERROR = 86, + SKB_DROP_REASON_PACKET_SOCK_ERROR = 87, + SKB_DROP_REASON_TC_CHAIN_NOTFOUND = 88, + SKB_DROP_REASON_TC_RECLASSIFY_LOOP = 89, + SKB_DROP_REASON_VXLAN_INVALID_HDR = 90, + SKB_DROP_REASON_VXLAN_VNI_NOT_FOUND = 91, + SKB_DROP_REASON_MAC_INVALID_SOURCE = 92, + SKB_DROP_REASON_VXLAN_ENTRY_EXISTS = 93, + SKB_DROP_REASON_NO_TX_TARGET = 94, + SKB_DROP_REASON_IP_TUNNEL_ECN = 95, + SKB_DROP_REASON_TUNNEL_TXINFO = 96, + SKB_DROP_REASON_LOCAL_MAC = 97, + SKB_DROP_REASON_MAX = 98, + SKB_DROP_REASON_SUBSYS_MASK = 4294901760, +}; + +enum { + NAPI_STATE_SCHED = 0, + NAPI_STATE_MISSED = 1, + NAPI_STATE_DISABLE = 2, + NAPI_STATE_NPSVC = 3, + NAPI_STATE_LISTED = 4, + NAPI_STATE_NO_BUSY_POLL = 5, + NAPI_STATE_IN_BUSY_POLL = 6, + NAPI_STATE_PREFER_BUSY_POLL = 7, + NAPI_STATE_THREADED = 8, + NAPI_STATE_SCHED_THREADED = 9, +}; + +enum xps_map_type { + XPS_CPUS = 0, + XPS_RXQS = 1, + XPS_MAPS_MAX = 2, +}; + +enum bpf_xdp_mode { + XDP_MODE_SKB = 0, + XDP_MODE_DRV = 1, + XDP_MODE_HW = 2, + __MAX_XDP_MODE = 3, +}; + +enum { + NETIF_MSG_DRV_BIT = 0, + NETIF_MSG_PROBE_BIT = 1, + NETIF_MSG_LINK_BIT = 2, + NETIF_MSG_TIMER_BIT = 3, + NETIF_MSG_IFDOWN_BIT = 4, + NETIF_MSG_IFUP_BIT = 5, + NETIF_MSG_RX_ERR_BIT = 6, + NETIF_MSG_TX_ERR_BIT = 7, + NETIF_MSG_TX_QUEUED_BIT = 8, + NETIF_MSG_INTR_BIT = 9, + NETIF_MSG_TX_DONE_BIT = 10, + NETIF_MSG_RX_STATUS_BIT = 11, + NETIF_MSG_PKTDATA_BIT = 12, + NETIF_MSG_HW_BIT = 13, + NETIF_MSG_WOL_BIT = 14, + NETIF_MSG_CLASS_COUNT = 15, +}; + +struct ppp_channel; + +struct ppp_channel_ops { + int (*start_xmit)(struct ppp_channel *, struct sk_buff *); + int (*ioctl)(struct ppp_channel *, unsigned int, long unsigned int); + int (*fill_forward_path)(struct net_device_path_ctx *, struct net_device_path *, const struct ppp_channel *); +}; + +struct ppp_channel { + void *private; + const struct ppp_channel_ops *ops; + int mtu; + int hdrlen; + void *ppp; + int speed; + int latency; +}; + +struct syncppp { + struct tty_struct *tty; + unsigned int flags; + unsigned int rbits; + int mru; + spinlock_t xmit_lock; + spinlock_t recv_lock; + long unsigned int xmit_flags; + u32 xaccm[8]; + u32 raccm; + unsigned int bytes_sent; + unsigned int bytes_rcvd; + struct sk_buff *tpkt; + long unsigned int last_xmit; + struct sk_buff_head rqueue; + struct tasklet_struct tsk; + refcount_t refcnt; + struct completion dead_cmp; + struct ppp_channel chan; +}; + +enum rpm_status { + RPM_INVALID = -1, + RPM_ACTIVE = 0, + RPM_RESUMING = 1, + RPM_SUSPENDED = 2, + RPM_SUSPENDING = 3, +}; + +struct driver_attribute { + struct attribute attr; + ssize_t (*show)(struct device_driver *, char *); + ssize_t (*store)(struct device_driver *, const char *, size_t); +}; + +struct usb_device_id { + __u16 match_flags; + __u16 idVendor; + __u16 idProduct; + __u16 bcdDevice_lo; + __u16 bcdDevice_hi; + __u8 bDeviceClass; + __u8 bDeviceSubClass; + __u8 bDeviceProtocol; + __u8 bInterfaceClass; + __u8 bInterfaceSubClass; + __u8 bInterfaceProtocol; + __u8 bInterfaceNumber; + kernel_ulong_t driver_info; +}; + +struct usb_device_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __le16 bcdUSB; + __u8 bDeviceClass; + __u8 bDeviceSubClass; + __u8 bDeviceProtocol; + __u8 bMaxPacketSize0; + __le16 idVendor; + __le16 idProduct; + __le16 bcdDevice; + __u8 iManufacturer; + __u8 iProduct; + __u8 iSerialNumber; + __u8 bNumConfigurations; +}; + +struct usb_config_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __le16 wTotalLength; + __u8 bNumInterfaces; + __u8 bConfigurationValue; + __u8 iConfiguration; + __u8 bmAttributes; + __u8 bMaxPower; +} __attribute__((packed)); + +struct usb_interface_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bInterfaceNumber; + __u8 bAlternateSetting; + __u8 bNumEndpoints; + __u8 bInterfaceClass; + __u8 bInterfaceSubClass; + __u8 bInterfaceProtocol; + __u8 iInterface; +}; + +struct usb_endpoint_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bEndpointAddress; + __u8 bmAttributes; + __le16 wMaxPacketSize; + __u8 bInterval; + __u8 bRefresh; + __u8 bSynchAddress; +} __attribute__((packed)); + +struct usb_ssp_isoc_ep_comp_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __le16 wReseved; + __le32 dwBytesPerInterval; +}; + +struct usb_ss_ep_comp_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bMaxBurst; + __u8 bmAttributes; + __le16 wBytesPerInterval; +}; + +struct usb_interface_assoc_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bFirstInterface; + __u8 bInterfaceCount; + __u8 bFunctionClass; + __u8 bFunctionSubClass; + __u8 bFunctionProtocol; + __u8 iFunction; +}; + +struct usb_bos_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __le16 wTotalLength; + __u8 bNumDeviceCaps; +} __attribute__((packed)); + +struct usb_ext_cap_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDevCapabilityType; + __le32 bmAttributes; +} __attribute__((packed)); + +struct usb_ss_cap_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDevCapabilityType; + __u8 bmAttributes; + __le16 wSpeedSupported; + __u8 bFunctionalitySupport; + __u8 bU1devExitLat; + __le16 bU2DevExitLat; +}; + +struct usb_ss_container_id_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDevCapabilityType; + __u8 bReserved; + __u8 ContainerID[16]; +}; + +struct usb_ssp_cap_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDevCapabilityType; + __u8 bReserved; + __le32 bmAttributes; + __le16 wFunctionalitySupport; + __le16 wReserved; + union { + __le32 legacy_padding; + struct { + struct {} __empty_bmSublinkSpeedAttr; + __le32 bmSublinkSpeedAttr[0]; + }; + }; +}; + +struct usb_ptm_cap_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDevCapabilityType; +}; + +enum usb_device_speed { + USB_SPEED_UNKNOWN = 0, + USB_SPEED_LOW = 1, + USB_SPEED_FULL = 2, + USB_SPEED_HIGH = 3, + USB_SPEED_WIRELESS = 4, + USB_SPEED_SUPER = 5, + USB_SPEED_SUPER_PLUS = 6, +}; + +enum usb_device_state { + USB_STATE_NOTATTACHED = 0, + USB_STATE_ATTACHED = 1, + USB_STATE_POWERED = 2, + USB_STATE_RECONNECTING = 3, + USB_STATE_UNAUTHENTICATED = 4, + USB_STATE_DEFAULT = 5, + USB_STATE_ADDRESS = 6, + USB_STATE_CONFIGURED = 7, + USB_STATE_SUSPENDED = 8, +}; + +enum usb_ssp_rate { + USB_SSP_GEN_UNKNOWN = 0, + USB_SSP_GEN_2x1 = 1, + USB_SSP_GEN_1x2 = 2, + USB_SSP_GEN_2x2 = 3, +}; + +struct ep_device; + +struct usb_host_endpoint { + struct usb_endpoint_descriptor desc; + struct usb_ss_ep_comp_descriptor ss_ep_comp; + struct usb_ssp_isoc_ep_comp_descriptor ssp_isoc_ep_comp; + long: 0; + struct list_head urb_list; + void *hcpriv; + struct ep_device *ep_dev; + unsigned char *extra; + int extralen; + int enabled; + int streams; + long: 0; +} __attribute__((packed)); + +struct usb_host_interface { + struct usb_interface_descriptor desc; + int extralen; + unsigned char *extra; + struct usb_host_endpoint *endpoint; + char *string; +}; + +enum usb_interface_condition { + USB_INTERFACE_UNBOUND = 0, + USB_INTERFACE_BINDING = 1, + USB_INTERFACE_BOUND = 2, + USB_INTERFACE_UNBINDING = 3, +}; + +enum usb_wireless_status { + USB_WIRELESS_STATUS_NA = 0, + USB_WIRELESS_STATUS_DISCONNECTED = 1, + USB_WIRELESS_STATUS_CONNECTED = 2, +}; + +struct usb_interface { + struct usb_host_interface *altsetting; + struct usb_host_interface *cur_altsetting; + unsigned int num_altsetting; + struct usb_interface_assoc_descriptor *intf_assoc; + int minor; + enum usb_interface_condition condition; + unsigned int sysfs_files_created: 1; + unsigned int ep_devs_created: 1; + unsigned int unregistering: 1; + unsigned int needs_remote_wakeup: 1; + unsigned int needs_altsetting0: 1; + unsigned int needs_binding: 1; + unsigned int resetting_device: 1; + unsigned int authorized: 1; + enum usb_wireless_status wireless_status; + struct work_struct wireless_status_work; + struct device dev; + struct device *usb_dev; + struct work_struct reset_ws; +}; + +struct usb_interface_cache { + unsigned int num_altsetting; + struct kref ref; + struct usb_host_interface altsetting[0]; +}; + +struct usb_host_config { + struct usb_config_descriptor desc; + char *string; + struct usb_interface_assoc_descriptor *intf_assoc[16]; + struct usb_interface *interface[32]; + struct usb_interface_cache *intf_cache[32]; + unsigned char *extra; + int extralen; +}; + +struct usb_host_bos { + struct usb_bos_descriptor *desc; + struct usb_ext_cap_descriptor *ext_cap; + struct usb_ss_cap_descriptor *ss_cap; + struct usb_ssp_cap_descriptor *ssp_cap; + struct usb_ss_container_id_descriptor *ss_id; + struct usb_ptm_cap_descriptor *ptm_cap; +}; + +struct usb_device; + +struct mon_bus; + +struct usb_bus { + struct device *controller; + struct device *sysdev; + int busnum; + const char *bus_name; + u8 uses_pio_for_control; + u8 otg_port; + unsigned int is_b_host: 1; + unsigned int b_hnp_enable: 1; + unsigned int no_stop_on_short: 1; + unsigned int no_sg_constraint: 1; + unsigned int sg_tablesize; + int devnum_next; + struct mutex devnum_next_mutex; + long unsigned int devmap[2]; + struct usb_device *root_hub; + struct usb_bus *hs_companion; + int bandwidth_allocated; + int bandwidth_int_reqs; + int bandwidth_isoc_reqs; + unsigned int resuming_ports; + struct mon_bus *mon_bus; + int monitored; +}; + +enum usb_link_tunnel_mode { + USB_LINK_UNKNOWN = 0, + USB_LINK_NATIVE = 1, + USB_LINK_TUNNELED = 2, +}; + +struct usb2_lpm_parameters { + unsigned int besl; + int timeout; +}; + +struct usb3_lpm_parameters { + unsigned int mel; + unsigned int pel; + unsigned int sel; + int timeout; +}; + +struct usb_tt; + +struct usb_device { + int devnum; + char devpath[16]; + u32 route; + enum usb_device_state state; + enum usb_device_speed speed; + unsigned int rx_lanes; + unsigned int tx_lanes; + enum usb_ssp_rate ssp_rate; + struct usb_tt *tt; + int ttport; + unsigned int toggle[2]; + struct usb_device *parent; + struct usb_bus *bus; + struct usb_host_endpoint ep0; + struct device dev; + struct usb_device_descriptor descriptor; + struct usb_host_bos *bos; + struct usb_host_config *config; + struct usb_host_config *actconfig; + struct usb_host_endpoint *ep_in[16]; + struct usb_host_endpoint *ep_out[16]; + char **rawdescriptors; + short unsigned int bus_mA; + u8 portnum; + u8 level; + u8 devaddr; + unsigned int can_submit: 1; + unsigned int persist_enabled: 1; + unsigned int reset_in_progress: 1; + unsigned int have_langid: 1; + unsigned int authorized: 1; + unsigned int authenticated: 1; + unsigned int lpm_capable: 1; + unsigned int lpm_devinit_allow: 1; + unsigned int usb2_hw_lpm_capable: 1; + unsigned int usb2_hw_lpm_besl_capable: 1; + unsigned int usb2_hw_lpm_enabled: 1; + unsigned int usb2_hw_lpm_allowed: 1; + unsigned int usb3_lpm_u1_enabled: 1; + unsigned int usb3_lpm_u2_enabled: 1; + int string_langid; + char *product; + char *manufacturer; + char *serial; + struct list_head filelist; + int maxchild; + u32 quirks; + atomic_t urbnum; + long unsigned int active_duration; + long unsigned int connect_time; + unsigned int do_remote_wakeup: 1; + unsigned int reset_resume: 1; + unsigned int port_is_suspended: 1; + enum usb_link_tunnel_mode tunnel_mode; + struct device_link *usb4_link; + int slot_id; + struct usb2_lpm_parameters l1_params; + struct usb3_lpm_parameters u1_params; + struct usb3_lpm_parameters u2_params; + unsigned int lpm_disable_count; + u16 hub_delay; + unsigned int use_generic_driver: 1; +}; + +struct usb_tt { + struct usb_device *hub; + int multi; + unsigned int think_time; + void *hcpriv; + spinlock_t lock; + struct list_head clear_list; + struct work_struct clear_work; +}; + +struct usb_dynids { + spinlock_t lock; + struct list_head list; +}; + +struct usb_dynid { + struct list_head node; + struct usb_device_id id; +}; + +struct usb_driver { + const char *name; + int (*probe)(struct usb_interface *, const struct usb_device_id *); + void (*disconnect)(struct usb_interface *); + int (*unlocked_ioctl)(struct usb_interface *, unsigned int, void *); + int (*suspend)(struct usb_interface *, pm_message_t); + int (*resume)(struct usb_interface *); + int (*reset_resume)(struct usb_interface *); + int (*pre_reset)(struct usb_interface *); + int (*post_reset)(struct usb_interface *); + void (*shutdown)(struct usb_interface *); + const struct usb_device_id *id_table; + const struct attribute_group **dev_groups; + struct usb_dynids dynids; + struct device_driver driver; + unsigned int no_dynamic_id: 1; + unsigned int supports_autosuspend: 1; + unsigned int disable_hub_initiated_lpm: 1; + unsigned int soft_unbind: 1; +}; + +struct usb_device_driver { + const char *name; + bool (*match)(struct usb_device *); + int (*probe)(struct usb_device *); + void (*disconnect)(struct usb_device *); + int (*suspend)(struct usb_device *, pm_message_t); + int (*resume)(struct usb_device *, pm_message_t); + int (*choose_configuration)(struct usb_device *); + const struct attribute_group **dev_groups; + struct device_driver driver; + const struct usb_device_id *id_table; + unsigned int supports_autosuspend: 1; + unsigned int generic_subclass: 1; +}; + +struct mon_bus { + struct list_head bus_link; + spinlock_t lock; + struct usb_bus *u_bus; + int text_inited; + int bin_inited; + struct dentry *dent_s; + struct dentry *dent_t; + struct dentry *dent_u; + struct device *classdev; + int nreaders; + struct list_head r_list; + struct kref ref; + unsigned int cnt_events; + unsigned int cnt_text_lost; +}; + +struct usb_iso_packet_descriptor { + unsigned int offset; + unsigned int length; + unsigned int actual_length; + int status; +}; + +struct usb_anchor { + struct list_head urb_list; + wait_queue_head_t wait; + spinlock_t lock; + atomic_t suspend_wakeups; + unsigned int poisoned: 1; +}; + +struct urb; + +typedef void (*usb_complete_t)(struct urb *); + +struct urb { + struct kref kref; + int unlinked; + void *hcpriv; + atomic_t use_count; + atomic_t reject; + struct list_head urb_list; + struct list_head anchor_list; + struct usb_anchor *anchor; + struct usb_device *dev; + struct usb_host_endpoint *ep; + unsigned int pipe; + unsigned int stream_id; + int status; + unsigned int transfer_flags; + void *transfer_buffer; + dma_addr_t transfer_dma; + struct scatterlist *sg; + int num_mapped_sgs; + int num_sgs; + u32 transfer_buffer_length; + u32 actual_length; + unsigned char *setup_packet; + dma_addr_t setup_dma; + int start_frame; + int number_of_packets; + int interval; + int error_count; + void *context; + usb_complete_t complete; + struct usb_iso_packet_descriptor iso_frame_desc[0]; +}; + +struct mon_reader { + struct list_head r_link; + struct mon_bus *m_bus; + void *r_data; + void (*rnf_submit)(void *, struct urb *); + void (*rnf_error)(void *, struct urb *, int); + void (*rnf_complete)(void *, struct urb *, int); +}; + +struct mon_iso_desc { + int status; + unsigned int offset; + unsigned int length; +}; + +struct mon_event_text { + struct list_head e_link; + int type; + long unsigned int id; + unsigned int tstamp; + int busnum; + char devnum; + char epnum; + char is_in; + char xfertype; + int length; + int status; + int interval; + int start_frame; + int error_count; + char setup_flag; + char data_flag; + int numdesc; + struct mon_iso_desc isodesc[5]; + unsigned char setup[8]; + unsigned char data[32]; +}; + +struct mon_reader_text { + struct kmem_cache *e_slab; + int nevents; + struct list_head e_list; + struct mon_reader r; + wait_queue_head_t wait; + int printf_size; + size_t printf_offset; + size_t printf_togo; + char *printf_buf; + struct mutex printf_lock; + char slab_name[30]; +}; + +struct mon_text_ptr { + int cnt; + int limit; + char *pbuf; +}; + +enum { + NAMESZ = 12, +}; + +enum usb3_link_state { + USB3_LPM_U0 = 0, + USB3_LPM_U1 = 1, + USB3_LPM_U2 = 2, + USB3_LPM_U3 = 3, +}; + +struct giveback_urb_bh { + bool running; + bool high_prio; + spinlock_t lock; + struct list_head head; + struct work_struct bh; + struct usb_host_endpoint *completing_ep; +}; + +enum usb_dev_authorize_policy { + USB_DEVICE_AUTHORIZE_NONE = 0, + USB_DEVICE_AUTHORIZE_ALL = 1, + USB_DEVICE_AUTHORIZE_INTERNAL = 2, +}; + +struct hc_driver; + +struct usb_phy; + +struct usb_phy_roothub; + +struct dma_pool; + +struct gen_pool; + +struct usb_hcd { + struct usb_bus self; + struct kref kref; + const char *product_desc; + int speed; + char irq_descr[24]; + struct timer_list rh_timer; + struct urb *status_urb; + struct work_struct died_work; + const struct hc_driver *driver; + struct usb_phy *usb_phy; + struct usb_phy_roothub *phy_roothub; + long unsigned int flags; + enum usb_dev_authorize_policy dev_policy; + unsigned int rh_registered: 1; + unsigned int rh_pollable: 1; + unsigned int msix_enabled: 1; + unsigned int msi_enabled: 1; + unsigned int skip_phy_initialization: 1; + unsigned int uses_new_polling: 1; + unsigned int has_tt: 1; + unsigned int amd_resume_bug: 1; + unsigned int can_do_streams: 1; + unsigned int tpl_support: 1; + unsigned int cant_recv_wakeups: 1; + unsigned int irq; + void *regs; + resource_size_t rsrc_start; + resource_size_t rsrc_len; + unsigned int power_budget; + struct giveback_urb_bh high_prio_bh; + struct giveback_urb_bh low_prio_bh; + struct mutex *address0_mutex; + struct mutex *bandwidth_mutex; + struct usb_hcd *shared_hcd; + struct usb_hcd *primary_hcd; + struct dma_pool *pool[4]; + int state; + struct gen_pool *localmem_pool; + long unsigned int hcd_priv[0]; +}; + +struct hc_driver { + const char *description; + const char *product_desc; + size_t hcd_priv_size; + irqreturn_t (*irq)(struct usb_hcd *); + int flags; + int (*reset)(struct usb_hcd *); + int (*start)(struct usb_hcd *); + int (*pci_suspend)(struct usb_hcd *, bool); + int (*pci_resume)(struct usb_hcd *, pm_message_t); + int (*pci_poweroff_late)(struct usb_hcd *, bool); + void (*stop)(struct usb_hcd *); + void (*shutdown)(struct usb_hcd *); + int (*get_frame_number)(struct usb_hcd *); + int (*urb_enqueue)(struct usb_hcd *, struct urb *, gfp_t); + int (*urb_dequeue)(struct usb_hcd *, struct urb *, int); + int (*map_urb_for_dma)(struct usb_hcd *, struct urb *, gfp_t); + void (*unmap_urb_for_dma)(struct usb_hcd *, struct urb *); + void (*endpoint_disable)(struct usb_hcd *, struct usb_host_endpoint *); + void (*endpoint_reset)(struct usb_hcd *, struct usb_host_endpoint *); + int (*hub_status_data)(struct usb_hcd *, char *); + int (*hub_control)(struct usb_hcd *, u16, u16, u16, char *, u16); + int (*bus_suspend)(struct usb_hcd *); + int (*bus_resume)(struct usb_hcd *); + int (*start_port_reset)(struct usb_hcd *, unsigned int); + long unsigned int (*get_resuming_ports)(struct usb_hcd *); + void (*relinquish_port)(struct usb_hcd *, int); + int (*port_handed_over)(struct usb_hcd *, int); + void (*clear_tt_buffer_complete)(struct usb_hcd *, struct usb_host_endpoint *); + int (*alloc_dev)(struct usb_hcd *, struct usb_device *); + void (*free_dev)(struct usb_hcd *, struct usb_device *); + int (*alloc_streams)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint **, unsigned int, unsigned int, gfp_t); + int (*free_streams)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint **, unsigned int, gfp_t); + int (*add_endpoint)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint *); + int (*drop_endpoint)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint *); + int (*check_bandwidth)(struct usb_hcd *, struct usb_device *); + void (*reset_bandwidth)(struct usb_hcd *, struct usb_device *); + int (*address_device)(struct usb_hcd *, struct usb_device *, unsigned int); + int (*enable_device)(struct usb_hcd *, struct usb_device *); + int (*update_hub_device)(struct usb_hcd *, struct usb_device *, struct usb_tt *, gfp_t); + int (*reset_device)(struct usb_hcd *, struct usb_device *); + int (*update_device)(struct usb_hcd *, struct usb_device *); + int (*set_usb2_hw_lpm)(struct usb_hcd *, struct usb_device *, int); + int (*enable_usb3_lpm_timeout)(struct usb_hcd *, struct usb_device *, enum usb3_link_state); + int (*disable_usb3_lpm_timeout)(struct usb_hcd *, struct usb_device *, enum usb3_link_state); + int (*find_raw_port_number)(struct usb_hcd *, int); + int (*port_power)(struct usb_hcd *, int, bool); + int (*submit_single_step_set_feature)(struct usb_hcd *, struct urb *, int); +}; + +struct xhci_cap_regs { + __le32 hc_capbase; + __le32 hcs_params1; + __le32 hcs_params2; + __le32 hcs_params3; + __le32 hcc_params; + __le32 db_off; + __le32 run_regs_off; + __le32 hcc_params2; +}; + +struct xhci_op_regs { + __le32 command; + __le32 status; + __le32 page_size; + __le32 reserved1; + __le32 reserved2; + __le32 dev_notification; + __le64 cmd_ring; + __le32 reserved3[4]; + __le64 dcbaa_ptr; + __le32 config_reg; + __le32 reserved4[241]; + __le32 port_status_base; + __le32 port_power_base; + __le32 port_link_base; + __le32 reserved5; + __le32 reserved6[1016]; +}; + +struct xhci_intr_reg { + __le32 irq_pending; + __le32 irq_control; + __le32 erst_size; + __le32 rsvd; + __le64 erst_base; + __le64 erst_dequeue; +}; + +struct xhci_run_regs { + __le32 microframe_index; + __le32 rsvd[7]; + struct xhci_intr_reg ir_set[128]; +}; + +struct xhci_doorbell_array { + __le32 doorbell[256]; +}; + +struct xhci_container_ctx { + unsigned int type; + int size; + u8 *bytes; + dma_addr_t dma; +}; + +struct xhci_slot_ctx { + __le32 dev_info; + __le32 dev_info2; + __le32 tt_info; + __le32 dev_state; + __le32 reserved[4]; +}; + +union xhci_trb; + +struct xhci_command { + struct xhci_container_ctx *in_ctx; + u32 status; + int slot_id; + struct completion *completion; + union xhci_trb *command_trb; + struct list_head cmd_list; + unsigned int timeout_ms; +}; + +struct xhci_link_trb { + __le64 segment_ptr; + __le32 intr_target; + __le32 control; +}; + +struct xhci_transfer_event { + __le64 buffer; + __le32 transfer_len; + __le32 flags; +}; + +struct xhci_event_cmd { + __le64 cmd_trb; + __le32 status; + __le32 flags; +}; + +struct xhci_generic_trb { + __le32 field[4]; +}; + +union xhci_trb { + struct xhci_link_trb link; + struct xhci_transfer_event trans_event; + struct xhci_event_cmd event_cmd; + struct xhci_generic_trb generic; +}; + +struct xhci_stream_ctx { + __le64 stream_ring; + __le32 reserved[2]; +}; + +struct xhci_ring; + +struct xhci_stream_info { + struct xhci_ring **stream_rings; + unsigned int num_streams; + struct xhci_stream_ctx *stream_ctx_array; + unsigned int num_stream_ctxs; + dma_addr_t ctx_array_dma; + struct xarray trb_address_map; + struct xhci_command *free_streams_command; +}; + +enum xhci_ring_type { + TYPE_CTRL = 0, + TYPE_ISOC = 1, + TYPE_BULK = 2, + TYPE_INTR = 3, + TYPE_STREAM = 4, + TYPE_COMMAND = 5, + TYPE_EVENT = 6, +}; + +struct xhci_segment; + +struct xhci_ring { + struct xhci_segment *first_seg; + struct xhci_segment *last_seg; + union xhci_trb *enqueue; + struct xhci_segment *enq_seg; + union xhci_trb *dequeue; + struct xhci_segment *deq_seg; + struct list_head td_list; + u32 cycle_state; + unsigned int stream_id; + unsigned int num_segs; + unsigned int num_trbs_free; + unsigned int bounce_buf_len; + enum xhci_ring_type type; + u32 old_trb_comp_code; + struct xarray *trb_address_map; +}; + +struct xhci_bw_info { + unsigned int ep_interval; + unsigned int mult; + unsigned int num_packets; + unsigned int max_packet_size; + unsigned int max_esit_payload; + unsigned int type; +}; + +struct xhci_virt_device; + +struct xhci_hcd; + +struct xhci_virt_ep { + struct xhci_virt_device *vdev; + unsigned int ep_index; + struct xhci_ring *ring; + struct xhci_stream_info *stream_info; + struct xhci_ring *new_ring; + unsigned int err_count; + unsigned int ep_state; + struct list_head cancelled_td_list; + struct xhci_hcd *xhci; + struct xhci_segment *queued_deq_seg; + union xhci_trb *queued_deq_ptr; + bool skip; + struct xhci_bw_info bw_info; + struct list_head bw_endpoint_list; + long unsigned int stop_time; + int next_frame_id; + bool use_extended_tbc; +}; + +struct xhci_port; + +struct xhci_interval_bw_table; + +struct xhci_tt_bw_info; + +struct xhci_virt_device { + int slot_id; + struct usb_device *udev; + struct xhci_container_ctx *out_ctx; + struct xhci_container_ctx *in_ctx; + struct xhci_virt_ep eps[31]; + struct xhci_port *rhub_port; + struct xhci_interval_bw_table *bw_table; + struct xhci_tt_bw_info *tt_info; + long unsigned int flags; + u16 current_mel; + void *debugfs_private; +}; + +struct s3_save { + u32 command; + u32 dev_nt; + u64 dcbaa_ptr; + u32 config_reg; +}; + +struct xhci_bus_state { + long unsigned int bus_suspended; + long unsigned int next_statechange; + u32 port_c_suspend; + u32 suspended_ports; + u32 port_remote_wakeup; + long unsigned int resuming_ports; +}; + +struct xhci_hub { + struct xhci_port **ports; + unsigned int num_ports; + struct usb_hcd *hcd; + struct xhci_bus_state bus_state; + u8 maj_rev; + u8 min_rev; +}; + +struct xhci_device_context_array; + +struct xhci_interrupter; + +struct xhci_scratchpad; + +struct xhci_root_port_bw_info; + +struct xhci_port_cap; + +struct xhci_hcd { + struct usb_hcd *main_hcd; + struct usb_hcd *shared_hcd; + struct xhci_cap_regs *cap_regs; + struct xhci_op_regs *op_regs; + struct xhci_run_regs *run_regs; + struct xhci_doorbell_array *dba; + __u32 hcs_params1; + __u32 hcs_params2; + __u32 hcs_params3; + __u32 hcc_params; + __u32 hcc_params2; + spinlock_t lock; + u16 hci_version; + u16 max_interrupters; + u32 imod_interval; + u32 page_size; + int nvecs; + struct clk *clk; + struct clk *reg_clk; + struct reset_control *reset; + struct xhci_device_context_array *dcbaa; + struct xhci_interrupter **interrupters; + struct xhci_ring *cmd_ring; + unsigned int cmd_ring_state; + struct list_head cmd_list; + unsigned int cmd_ring_reserved_trbs; + struct delayed_work cmd_timer; + struct completion cmd_ring_stop_completion; + struct xhci_command *current_cmd; + struct xhci_scratchpad *scratchpad; + struct mutex mutex; + struct xhci_virt_device *devs[256]; + struct xhci_root_port_bw_info *rh_bw; + struct dma_pool *device_pool; + struct dma_pool *segment_pool; + struct dma_pool *small_streams_pool; + struct dma_pool *medium_streams_pool; + unsigned int xhc_state; + long unsigned int run_graceperiod; + struct s3_save s3; + long long unsigned int quirks; + unsigned int num_active_eps; + unsigned int limit_active_eps; + struct xhci_port *hw_ports; + struct xhci_hub usb2_rhub; + struct xhci_hub usb3_rhub; + unsigned int hw_lpm_support: 1; + unsigned int broken_suspend: 1; + unsigned int allow_single_roothub: 1; + struct xhci_port_cap *port_caps; + unsigned int num_port_caps; + struct timer_list comp_mode_recovery_timer; + u32 port_status_u0; + u16 test_mode; + struct dentry *debugfs_root; + struct dentry *debugfs_slots; + struct list_head regset_list; + void *dbc; + long unsigned int priv[0]; +}; + +struct xhci_segment { + union xhci_trb *trbs; + struct xhci_segment *next; + unsigned int num; + dma_addr_t dma; + dma_addr_t bounce_dma; + void *bounce_buf; + unsigned int bounce_offs; + unsigned int bounce_len; +}; + +struct xhci_interval_bw { + unsigned int num_packets; + struct list_head endpoints; + unsigned int overhead[3]; +}; + +struct xhci_interval_bw_table { + unsigned int interval0_esit_payload; + struct xhci_interval_bw interval_bw[16]; + unsigned int bw_used; + unsigned int ss_bw_in; + unsigned int ss_bw_out; +}; + +struct xhci_port { + __le32 *addr; + int hw_portnum; + int hcd_portnum; + struct xhci_hub *rhub; + struct xhci_port_cap *port_cap; + unsigned int lpm_incapable: 1; + long unsigned int resume_timestamp; + bool rexit_active; + int slot_id; + struct completion rexit_done; + struct completion u3exit_done; +}; + +struct xhci_tt_bw_info { + struct list_head tt_list; + int slot_id; + int ttport; + struct xhci_interval_bw_table bw_table; + int active_eps; +}; + +struct xhci_root_port_bw_info { + struct list_head tts; + unsigned int num_active_tts; + struct xhci_interval_bw_table bw_table; +}; + +struct xhci_device_context_array { + __le64 dev_context_ptrs[256]; + dma_addr_t dma; +}; + +struct xhci_erst_entry { + __le64 seg_addr; + __le32 seg_size; + __le32 rsvd; +}; + +struct xhci_erst { + struct xhci_erst_entry *entries; + unsigned int num_entries; + dma_addr_t erst_dma_addr; +}; + +struct xhci_scratchpad { + u64 *sp_array; + dma_addr_t sp_dma; + void **sp_buffers; +}; + +struct xhci_interrupter { + struct xhci_ring *event_ring; + struct xhci_erst erst; + struct xhci_intr_reg *ir_set; + unsigned int intr_num; + bool ip_autoclear; + u32 isoc_bei_interval; + u32 s3_irq_pending; + u32 s3_irq_control; + u32 s3_erst_size; + u64 s3_erst_base; + u64 s3_erst_dequeue; +}; + +struct xhci_port_cap { + u32 *psi; + u8 psi_count; + u8 psi_uid_count; + u8 maj_rev; + u8 min_rev; + u32 protocol_caps; +}; + +enum sam_status { + SAM_STAT_GOOD = 0, + SAM_STAT_CHECK_CONDITION = 2, + SAM_STAT_CONDITION_MET = 4, + SAM_STAT_BUSY = 8, + SAM_STAT_INTERMEDIATE = 16, + SAM_STAT_INTERMEDIATE_CONDITION_MET = 20, + SAM_STAT_RESERVATION_CONFLICT = 24, + SAM_STAT_COMMAND_TERMINATED = 34, + SAM_STAT_TASK_SET_FULL = 40, + SAM_STAT_ACA_ACTIVE = 48, + SAM_STAT_TASK_ABORTED = 64, +}; + +enum scsi_disposition { + NEEDS_RETRY = 8193, + SUCCESS = 8194, + FAILED = 8195, + QUEUED = 8196, + SOFT_ERROR = 8197, + ADD_TO_MLQUEUE = 8198, + TIMEOUT_ERROR = 8199, + SCSI_RETURN_NOT_HANDLED = 8200, + FAST_IO_FAIL = 8201, +}; + +enum scsi_host_state { + SHOST_CREATED = 1, + SHOST_RUNNING = 2, + SHOST_CANCEL = 3, + SHOST_DEL = 4, + SHOST_RECOVERY = 5, + SHOST_CANCEL_RECOVERY = 6, + SHOST_DEL_RECOVERY = 7, +}; + +struct scsi_host_template; + +struct scsi_transport_template; + +struct Scsi_Host { + struct list_head __devices; + struct list_head __targets; + struct list_head starved_list; + spinlock_t default_lock; + spinlock_t *host_lock; + struct mutex scan_mutex; + struct list_head eh_abort_list; + struct list_head eh_cmd_q; + struct task_struct *ehandler; + struct completion *eh_action; + wait_queue_head_t host_wait; + const struct scsi_host_template *hostt; + struct scsi_transport_template *transportt; + struct kref tagset_refcnt; + struct completion tagset_freed; + struct blk_mq_tag_set tag_set; + atomic_t host_blocked; + unsigned int host_failed; + unsigned int host_eh_scheduled; + unsigned int host_no; + int eh_deadline; + long unsigned int last_reset; + unsigned int max_channel; + unsigned int max_id; + u64 max_lun; + unsigned int unique_id; + short unsigned int max_cmd_len; + int this_id; + int can_queue; + short int cmd_per_lun; + short unsigned int sg_tablesize; + short unsigned int sg_prot_tablesize; + unsigned int max_sectors; + unsigned int opt_sectors; + unsigned int max_segment_size; + unsigned int dma_alignment; + long unsigned int dma_boundary; + long unsigned int virt_boundary_mask; + unsigned int nr_hw_queues; + unsigned int nr_maps; + unsigned int active_mode: 2; + unsigned int host_self_blocked: 1; + unsigned int reverse_ordering: 1; + unsigned int tmf_in_progress: 1; + unsigned int async_scan: 1; + unsigned int eh_noresume: 1; + unsigned int no_write_same: 1; + unsigned int host_tagset: 1; + unsigned int queuecommand_may_block: 1; + unsigned int short_inquiry: 1; + unsigned int no_scsi2_lun_in_cdb: 1; + unsigned int no_highmem: 1; + struct workqueue_struct *work_q; + struct workqueue_struct *tmf_work_q; + unsigned int max_host_blocked; + unsigned int prot_capabilities; + unsigned char prot_guard_type; + long unsigned int base; + long unsigned int io_port; + unsigned char n_io_port; + unsigned char dma_channel; + unsigned int irq; + enum scsi_host_state shost_state; + struct device shost_gendev; + struct device shost_dev; + void *shost_data; + struct device *dma_dev; + int rpm_autosuspend_delay; + long unsigned int hostdata[0]; +}; + +struct scsi_data_buffer { + struct sg_table table; + unsigned int length; +}; + +enum scsi_cmnd_submitter { + SUBMITTED_BY_BLOCK_LAYER = 0, + SUBMITTED_BY_SCSI_ERROR_HANDLER = 1, + SUBMITTED_BY_SCSI_RESET_IOCTL = 2, +} __attribute__((mode(byte))); + +struct scsi_cmnd { + struct scsi_device *device; + struct list_head eh_entry; + struct delayed_work abort_work; + struct callback_head rcu; + int eh_eflags; + int budget_token; + long unsigned int jiffies_at_alloc; + int retries; + int allowed; + unsigned char prot_op; + unsigned char prot_type; + unsigned char prot_flags; + enum scsi_cmnd_submitter submitter; + short unsigned int cmd_len; + enum dma_data_direction sc_data_direction; + unsigned char cmnd[32]; + struct scsi_data_buffer sdb; + struct scsi_data_buffer *prot_sdb; + unsigned int underflow; + unsigned int transfersize; + unsigned int resid_len; + unsigned int sense_len; + unsigned char *sense_buffer; + int flags; + long unsigned int state; + unsigned int extra_len; + unsigned char *host_scribble; + int result; +}; + +struct usb_ctrlrequest { + __u8 bRequestType; + __u8 bRequest; + __le16 wValue; + __le16 wIndex; + __le16 wLength; +}; + +struct usb_sg_request { + int status; + size_t bytes; + spinlock_t lock; + struct usb_device *dev; + int pipe; + int entries; + struct urb **urbs; + int count; + struct completion complete; +}; + +enum { + US_FL_SINGLE_LUN = 1, + US_FL_NEED_OVERRIDE = 2, + US_FL_SCM_MULT_TARG = 4, + US_FL_FIX_INQUIRY = 8, + US_FL_FIX_CAPACITY = 16, + US_FL_IGNORE_RESIDUE = 32, + US_FL_BULK32 = 64, + US_FL_NOT_LOCKABLE = 128, + US_FL_GO_SLOW = 256, + US_FL_NO_WP_DETECT = 512, + US_FL_MAX_SECTORS_64 = 1024, + US_FL_IGNORE_DEVICE = 2048, + US_FL_CAPACITY_HEURISTICS = 4096, + US_FL_MAX_SECTORS_MIN = 8192, + US_FL_BULK_IGNORE_TAG = 16384, + US_FL_SANE_SENSE = 32768, + US_FL_CAPACITY_OK = 65536, + US_FL_BAD_SENSE = 131072, + US_FL_NO_READ_DISC_INFO = 262144, + US_FL_NO_READ_CAPACITY_16 = 524288, + US_FL_INITIAL_READ10 = 1048576, + US_FL_WRITE_CACHE = 2097152, + US_FL_NEEDS_CAP16 = 4194304, + US_FL_IGNORE_UAS = 8388608, + US_FL_BROKEN_FUA = 16777216, + US_FL_NO_ATA_1X = 33554432, + US_FL_NO_REPORT_OPCODES = 67108864, + US_FL_MAX_SECTORS_240 = 134217728, + US_FL_NO_REPORT_LUNS = 268435456, + US_FL_ALWAYS_SYNC = 536870912, + US_FL_NO_SAME = 1073741824, + US_FL_SENSE_AFTER_SYNC = 2147483648, +}; + +enum scsi_timeout_action { + SCSI_EH_DONE = 0, + SCSI_EH_RESET_TIMER = 1, + SCSI_EH_NOT_HANDLED = 2, +}; + +struct scsi_host_template { + unsigned int cmd_size; + int (*queuecommand)(struct Scsi_Host *, struct scsi_cmnd *); + void (*commit_rqs)(struct Scsi_Host *, u16); + struct module *module; + const char *name; + const char * (*info)(struct Scsi_Host *); + int (*ioctl)(struct scsi_device *, unsigned int, void *); + int (*init_cmd_priv)(struct Scsi_Host *, struct scsi_cmnd *); + int (*exit_cmd_priv)(struct Scsi_Host *, struct scsi_cmnd *); + int (*eh_abort_handler)(struct scsi_cmnd *); + int (*eh_device_reset_handler)(struct scsi_cmnd *); + int (*eh_target_reset_handler)(struct scsi_cmnd *); + int (*eh_bus_reset_handler)(struct scsi_cmnd *); + int (*eh_host_reset_handler)(struct scsi_cmnd *); + int (*slave_alloc)(struct scsi_device *); + int (*device_configure)(struct scsi_device *, struct queue_limits *); + int (*slave_configure)(struct scsi_device *); + void (*slave_destroy)(struct scsi_device *); + int (*target_alloc)(struct scsi_target *); + void (*target_destroy)(struct scsi_target *); + int (*scan_finished)(struct Scsi_Host *, long unsigned int); + void (*scan_start)(struct Scsi_Host *); + int (*change_queue_depth)(struct scsi_device *, int); + void (*map_queues)(struct Scsi_Host *); + int (*mq_poll)(struct Scsi_Host *, unsigned int); + bool (*dma_need_drain)(struct request *); + int (*bios_param)(struct scsi_device *, struct block_device *, sector_t, int *); + void (*unlock_native_capacity)(struct scsi_device *); + int (*show_info)(struct seq_file *, struct Scsi_Host *); + int (*write_info)(struct Scsi_Host *, char *, int); + enum scsi_timeout_action (*eh_timed_out)(struct scsi_cmnd *); + bool (*eh_should_retry_cmd)(struct scsi_cmnd *); + int (*host_reset)(struct Scsi_Host *, int); + const char *proc_name; + int can_queue; + int this_id; + short unsigned int sg_tablesize; + short unsigned int sg_prot_tablesize; + unsigned int max_sectors; + unsigned int max_segment_size; + unsigned int dma_alignment; + long unsigned int dma_boundary; + long unsigned int virt_boundary_mask; + short int cmd_per_lun; + int tag_alloc_policy; + unsigned int track_queue_depth: 1; + unsigned int supported_mode: 2; + unsigned int emulated: 1; + unsigned int skip_settle_delay: 1; + unsigned int no_write_same: 1; + unsigned int host_tagset: 1; + unsigned int queuecommand_may_block: 1; + unsigned int max_host_blocked; + const struct attribute_group **shost_groups; + const struct attribute_group **sdev_groups; + u64 vendor_id; +}; + +struct us_data; + +struct us_unusual_dev { + const char *vendorName; + const char *productName; + __u8 useProtocol; + __u8 useTransport; + int (*initFunction)(struct us_data *); +}; + +typedef int (*trans_cmnd)(struct scsi_cmnd *, struct us_data *); + +typedef int (*trans_reset)(struct us_data *); + +typedef void (*proto_cmnd)(struct scsi_cmnd *, struct us_data *); + +typedef void (*extra_data_destructor)(void *); + +struct us_data { + struct mutex dev_mutex; + struct usb_device *pusb_dev; + struct usb_interface *pusb_intf; + const struct us_unusual_dev *unusual_dev; + u64 fflags; + long unsigned int dflags; + unsigned int send_bulk_pipe; + unsigned int recv_bulk_pipe; + unsigned int send_ctrl_pipe; + unsigned int recv_ctrl_pipe; + unsigned int recv_intr_pipe; + char *transport_name; + char *protocol_name; + __le32 bcs_signature; + u8 subclass; + u8 protocol; + u8 max_lun; + u8 ifnum; + u8 ep_bInterval; + trans_cmnd transport; + trans_reset transport_reset; + proto_cmnd proto_handler; + struct scsi_cmnd *srb; + unsigned int tag; + char scsi_name[32]; + struct urb *current_urb; + struct usb_ctrlrequest *cr; + struct usb_sg_request current_sg; + unsigned char *iobuf; + dma_addr_t iobuf_dma; + struct task_struct *ctl_thread; + struct completion cmnd_ready; + struct completion notify; + wait_queue_head_t delay_wait; + struct delayed_work scan_dwork; + void *extra; + extra_data_destructor extra_destructor; + int use_last_sector_hacks; + int last_sector_retries; +}; + +enum xfer_buf_dir { + TO_XFER_BUF = 0, + FROM_XFER_BUF = 1, +}; + +struct datafab_info { + long unsigned int sectors; + long unsigned int ssize; + signed char lun; + unsigned char sense_key; + long unsigned int sense_asc; + long unsigned int sense_ascq; +}; + +struct kfifo { + union { + struct __kfifo kfifo; + unsigned char *type; + const unsigned char *const_type; + char (*rectype)[0]; + void *ptr; + const void *ptr_const; + }; + unsigned char buf[0]; +}; + +struct async_icount { + __u32 cts; + __u32 dsr; + __u32 rng; + __u32 dcd; + __u32 tx; + __u32 rx; + __u32 frame; + __u32 parity; + __u32 overrun; + __u32 brk; + __u32 buf_overrun; +}; + +struct usb_serial; + +struct usb_serial_port { + struct usb_serial *serial; + struct tty_port port; + spinlock_t lock; + u32 minor; + u8 port_number; + unsigned char *interrupt_in_buffer; + struct urb *interrupt_in_urb; + __u8 interrupt_in_endpointAddress; + unsigned char *interrupt_out_buffer; + int interrupt_out_size; + struct urb *interrupt_out_urb; + __u8 interrupt_out_endpointAddress; + unsigned char *bulk_in_buffer; + int bulk_in_size; + struct urb *read_urb; + __u8 bulk_in_endpointAddress; + unsigned char *bulk_in_buffers[2]; + struct urb *read_urbs[2]; + long unsigned int read_urbs_free; + unsigned char *bulk_out_buffer; + int bulk_out_size; + struct urb *write_urb; + struct kfifo write_fifo; + unsigned char *bulk_out_buffers[2]; + struct urb *write_urbs[2]; + long unsigned int write_urbs_free; + __u8 bulk_out_endpointAddress; + struct async_icount icount; + int tx_bytes; + long unsigned int flags; + struct work_struct work; + long unsigned int sysrq; + struct device dev; +}; + +struct usb_serial_driver; + +struct usb_serial { + struct usb_device *dev; + struct usb_serial_driver *type; + struct usb_interface *interface; + struct usb_interface *sibling; + unsigned int suspend_count; + unsigned char disconnected: 1; + unsigned char attached: 1; + unsigned char minors_reserved: 1; + unsigned char num_ports; + unsigned char num_port_pointers; + unsigned char num_interrupt_in; + unsigned char num_interrupt_out; + unsigned char num_bulk_in; + unsigned char num_bulk_out; + struct usb_serial_port *port[16]; + struct kref kref; + struct mutex disc_mutex; + void *private; +}; + +struct usb_serial_endpoints; + +struct usb_serial_driver { + const char *description; + const struct usb_device_id *id_table; + struct list_head driver_list; + struct device_driver driver; + struct usb_driver *usb_driver; + struct usb_dynids dynids; + unsigned char num_ports; + unsigned char num_bulk_in; + unsigned char num_bulk_out; + unsigned char num_interrupt_in; + unsigned char num_interrupt_out; + size_t bulk_in_size; + size_t bulk_out_size; + int (*probe)(struct usb_serial *, const struct usb_device_id *); + int (*attach)(struct usb_serial *); + int (*calc_num_ports)(struct usb_serial *, struct usb_serial_endpoints *); + void (*disconnect)(struct usb_serial *); + void (*release)(struct usb_serial *); + int (*port_probe)(struct usb_serial_port *); + void (*port_remove)(struct usb_serial_port *); + int (*suspend)(struct usb_serial *, pm_message_t); + int (*resume)(struct usb_serial *); + int (*reset_resume)(struct usb_serial *); + int (*open)(struct tty_struct *, struct usb_serial_port *); + void (*close)(struct usb_serial_port *); + int (*write)(struct tty_struct *, struct usb_serial_port *, const unsigned char *, int); + unsigned int (*write_room)(struct tty_struct *); + int (*ioctl)(struct tty_struct *, unsigned int, long unsigned int); + void (*get_serial)(struct tty_struct *, struct serial_struct *); + int (*set_serial)(struct tty_struct *, struct serial_struct *); + void (*set_termios)(struct tty_struct *, struct usb_serial_port *, const struct ktermios *); + int (*break_ctl)(struct tty_struct *, int); + unsigned int (*chars_in_buffer)(struct tty_struct *); + void (*wait_until_sent)(struct tty_struct *, long int); + bool (*tx_empty)(struct usb_serial_port *); + void (*throttle)(struct tty_struct *); + void (*unthrottle)(struct tty_struct *); + int (*tiocmget)(struct tty_struct *); + int (*tiocmset)(struct tty_struct *, unsigned int, unsigned int); + int (*tiocmiwait)(struct tty_struct *, long unsigned int); + int (*get_icount)(struct tty_struct *, struct serial_icounter_struct *); + void (*dtr_rts)(struct usb_serial_port *, int); + int (*carrier_raised)(struct usb_serial_port *); + void (*init_termios)(struct tty_struct *); + void (*read_int_callback)(struct urb *); + void (*write_int_callback)(struct urb *); + void (*read_bulk_callback)(struct urb *); + void (*write_bulk_callback)(struct urb *); + void (*process_read_urb)(struct urb *); + int (*prepare_write_buffer)(struct usb_serial_port *, void *, size_t); +}; + +struct usb_serial_endpoints { + unsigned char num_bulk_in; + unsigned char num_bulk_out; + unsigned char num_interrupt_in; + unsigned char num_interrupt_out; + struct usb_endpoint_descriptor *bulk_in[16]; + struct usb_endpoint_descriptor *bulk_out[16]; + struct usb_endpoint_descriptor *interrupt_in[16]; + struct usb_endpoint_descriptor *interrupt_out[16]; +}; + +enum packet_format { + packet_format_1 = 0, + packet_format_2 = 1, +}; + +struct cypress_private { + spinlock_t lock; + int chiptype; + int bytes_in; + int bytes_out; + int cmd_count; + int cmd_ctrl; + struct kfifo write_fifo; + int write_urb_in_use; + int write_urb_interval; + int read_urb_interval; + int comm_is_ok; + __u8 line_control; + __u8 current_status; + __u8 current_config; + __u8 rx_flags; + enum packet_format pkt_fmt; + int get_cfg_unsafe; + int baud_rate; + char prev_status; +}; + +struct usb_wwan_intf_private { + spinlock_t susp_lock; + unsigned int suspended: 1; + unsigned int use_send_setup: 1; + unsigned int use_zlp: 1; + int in_flight; + unsigned int open_ports; + void *private; +}; + +struct omninet_header { + __u8 oh_seq; + __u8 oh_len; + __u8 oh_xxx; + __u8 oh_pad; +}; + +struct omninet_data { + __u8 od_outseq; +}; + +struct symbol_private { + spinlock_t lock; + bool throttled; + bool actually_throttled; +}; + +struct whiteheat_simple { + __u8 port; +}; + +struct whiteheat_port_settings { + __u8 port; + __le32 baud; + __u8 bits; + __u8 stop; + __u8 parity; + __u8 sflow; + __u8 xoff; + __u8 xon; + __u8 hflow; + __u8 lloop; +} __attribute__((packed)); + +struct whiteheat_set_rdb { + __u8 port; + __u8 state; +}; + +struct whiteheat_purge { + __u8 port; + __u8 what; +}; + +struct whiteheat_hw_eeprom_info { + __u8 b0; + __u8 vendor_id_low; + __u8 vendor_id_high; + __u8 product_id_low; + __u8 product_id_high; + __u8 device_id_low; + __u8 device_id_high; + __u8 not_used_1; + __u8 serial_number_0; + __u8 serial_number_1; + __u8 serial_number_2; + __u8 serial_number_3; + __u8 not_used_2; + __u8 not_used_3; + __u8 checksum_low; + __u8 checksum_high; +}; + +struct whiteheat_hw_info { + __u8 hw_id; + __u8 sw_major_rev; + __u8 sw_minor_rev; + struct whiteheat_hw_eeprom_info hw_eeprom_info; +}; + +struct whiteheat_command_private { + struct mutex mutex; + __u8 port_running; + __u8 command_finished; + wait_queue_head_t wait_command; + __u8 result_buffer[64]; +}; + +struct whiteheat_private { + __u8 mcr; +}; + +struct input_event { + __kernel_ulong_t __sec; + __kernel_ulong_t __usec; + __u16 type; + __u16 code; + __s32 value; +}; + +struct input_id { + __u16 bustype; + __u16 vendor; + __u16 product; + __u16 version; +}; + +struct input_absinfo { + __s32 value; + __s32 minimum; + __s32 maximum; + __s32 fuzz; + __s32 flat; + __s32 resolution; +}; + +struct input_keymap_entry { + __u8 flags; + __u8 len; + __u16 index; + __u32 keycode; + __u8 scancode[32]; +}; + +struct ff_replay { + __u16 length; + __u16 delay; +}; + +struct ff_trigger { + __u16 button; + __u16 interval; +}; + +struct ff_envelope { + __u16 attack_length; + __u16 attack_level; + __u16 fade_length; + __u16 fade_level; +}; + +struct ff_constant_effect { + __s16 level; + struct ff_envelope envelope; +}; + +struct ff_ramp_effect { + __s16 start_level; + __s16 end_level; + struct ff_envelope envelope; +}; + +struct ff_condition_effect { + __u16 right_saturation; + __u16 left_saturation; + __s16 right_coeff; + __s16 left_coeff; + __u16 deadband; + __s16 center; +}; + +struct ff_periodic_effect { + __u16 waveform; + __u16 period; + __s16 magnitude; + __s16 offset; + __u16 phase; + struct ff_envelope envelope; + __u32 custom_len; + __s16 *custom_data; +}; + +struct ff_rumble_effect { + __u16 strong_magnitude; + __u16 weak_magnitude; +}; + +struct ff_effect { + __u16 type; + __s16 id; + __u16 direction; + struct ff_trigger trigger; + struct ff_replay replay; + union { + struct ff_constant_effect constant; + struct ff_ramp_effect ramp; + struct ff_periodic_effect periodic; + struct ff_condition_effect condition[2]; + struct ff_rumble_effect rumble; + } u; +}; + +struct input_device_id { + kernel_ulong_t flags; + __u16 bustype; + __u16 vendor; + __u16 product; + __u16 version; + kernel_ulong_t evbit[1]; + kernel_ulong_t keybit[12]; + kernel_ulong_t relbit[1]; + kernel_ulong_t absbit[1]; + kernel_ulong_t mscbit[1]; + kernel_ulong_t ledbit[1]; + kernel_ulong_t sndbit[1]; + kernel_ulong_t ffbit[2]; + kernel_ulong_t swbit[1]; + kernel_ulong_t propbit[1]; + kernel_ulong_t driver_info; +}; + +struct input_value { + __u16 type; + __u16 code; + __s32 value; +}; + +enum input_clock_type { + INPUT_CLK_REAL = 0, + INPUT_CLK_MONO = 1, + INPUT_CLK_BOOT = 2, + INPUT_CLK_MAX = 3, +}; + +struct ff_device; + +struct input_dev_poller; + +struct input_mt; + +struct input_handle; + +struct input_dev { + const char *name; + const char *phys; + const char *uniq; + struct input_id id; + long unsigned int propbit[1]; + long unsigned int evbit[1]; + long unsigned int keybit[12]; + long unsigned int relbit[1]; + long unsigned int absbit[1]; + long unsigned int mscbit[1]; + long unsigned int ledbit[1]; + long unsigned int sndbit[1]; + long unsigned int ffbit[2]; + long unsigned int swbit[1]; + unsigned int hint_events_per_packet; + unsigned int keycodemax; + unsigned int keycodesize; + void *keycode; + int (*setkeycode)(struct input_dev *, const struct input_keymap_entry *, unsigned int *); + int (*getkeycode)(struct input_dev *, struct input_keymap_entry *); + struct ff_device *ff; + struct input_dev_poller *poller; + unsigned int repeat_key; + struct timer_list timer; + int rep[2]; + struct input_mt *mt; + struct input_absinfo *absinfo; + long unsigned int key[12]; + long unsigned int led[1]; + long unsigned int snd[1]; + long unsigned int sw[1]; + int (*open)(struct input_dev *); + void (*close)(struct input_dev *); + int (*flush)(struct input_dev *, struct file *); + int (*event)(struct input_dev *, unsigned int, unsigned int, int); + struct input_handle *grab; + spinlock_t event_lock; + struct mutex mutex; + unsigned int users; + bool going_away; + struct device dev; + struct list_head h_list; + struct list_head node; + unsigned int num_vals; + unsigned int max_vals; + struct input_value *vals; + bool devres_managed; + ktime_t timestamp[3]; + bool inhibited; +}; + +struct ff_device { + int (*upload)(struct input_dev *, struct ff_effect *, struct ff_effect *); + int (*erase)(struct input_dev *, int); + int (*playback)(struct input_dev *, int, int); + void (*set_gain)(struct input_dev *, u16); + void (*set_autocenter)(struct input_dev *, u16); + void (*destroy)(struct ff_device *); + void *private; + long unsigned int ffbit[2]; + struct mutex mutex; + int max_effects; + struct ff_effect *effects; + struct file *effect_owners[0]; +}; + +struct input_mt_slot { + int abs[14]; + unsigned int frame; + unsigned int key; +}; + +struct input_mt { + int trkid; + int num_slots; + int slot; + unsigned int flags; + unsigned int frame; + int *red; + struct input_mt_slot slots[0]; +}; + +struct input_handler; + +struct input_handle { + void *private; + int open; + const char *name; + struct input_dev *dev; + struct input_handler *handler; + unsigned int (*handle_events)(struct input_handle *, struct input_value *, unsigned int); + struct list_head d_node; + struct list_head h_node; +}; + +struct input_handler { + void *private; + void (*event)(struct input_handle *, unsigned int, unsigned int, int); + unsigned int (*events)(struct input_handle *, struct input_value *, unsigned int); + bool (*filter)(struct input_handle *, unsigned int, unsigned int, int); + bool (*match)(struct input_handler *, struct input_dev *); + int (*connect)(struct input_handler *, struct input_dev *, const struct input_device_id *); + void (*disconnect)(struct input_handle *); + void (*start)(struct input_handle *); + bool legacy_minors; + int minor; + const char *name; + const struct input_device_id *id_table; + struct list_head h_list; + struct list_head node; +}; + +struct uinput_ff_upload { + __u32 request_id; + __s32 retval; + struct ff_effect effect; + struct ff_effect old; +}; + +struct uinput_ff_erase { + __u32 request_id; + __s32 retval; + __u32 effect_id; +}; + +struct uinput_setup { + struct input_id id; + char name[80]; + __u32 ff_effects_max; +}; + +struct uinput_abs_setup { + __u16 code; + struct input_absinfo absinfo; +}; + +struct uinput_user_dev { + char name[80]; + struct input_id id; + __u32 ff_effects_max; + __s32 absmax[64]; + __s32 absmin[64]; + __s32 absfuzz[64]; + __s32 absflat[64]; +}; + +struct miscdevice { + int minor; + const char *name; + const struct file_operations *fops; + struct list_head list; + struct device *parent; + struct device *this_device; + const struct attribute_group **groups; + const char *nodename; + umode_t mode; +}; + +enum uinput_state { + UIST_NEW_DEVICE = 0, + UIST_SETUP_COMPLETE = 1, + UIST_CREATED = 2, +}; + +struct uinput_request { + unsigned int id; + unsigned int code; + int retval; + struct completion done; + union { + unsigned int effect_id; + struct { + struct ff_effect *effect; + struct ff_effect *old; + } upload; + } u; +}; + +struct uinput_device { + struct input_dev *dev; + struct mutex mutex; + enum uinput_state state; + wait_queue_head_t waitq; + unsigned char ready; + unsigned char head; + unsigned char tail; + struct input_event buff[16]; + unsigned int ff_effects_max; + struct uinput_request *requests[16]; + wait_queue_head_t requests_waitq; + spinlock_t requests_lock; +}; + +struct pps_ktime { + __s64 sec; + __s32 nsec; + __u32 flags; +}; + +struct pps_kparams { + int api_version; + int mode; + struct pps_ktime assert_off_tu; + struct pps_ktime clear_off_tu; +}; + +struct pps_device; + +struct pps_source_info { + char name[32]; + char path[32]; + int mode; + void (*echo)(struct pps_device *, int, void *); + struct module *owner; + struct device *dev; +}; + +struct pps_device { + struct pps_source_info info; + struct pps_kparams params; + __u32 assert_sequence; + __u32 clear_sequence; + struct pps_ktime assert_tu; + struct pps_ktime clear_tu; + int current_mode; + unsigned int last_ev; + unsigned int last_fetched_ev; + wait_queue_head_t queue; + unsigned int id; + const void *lookup_cookie; + struct device dev; + struct fasync_struct *async_queue; + spinlock_t lock; +}; + +struct pps_event_time { + struct timespec64 ts_real; +}; + +typedef long unsigned int ulong; + +typedef struct { + u64 val; +} pfn_t; + +enum kobject_action { + KOBJ_ADD = 0, + KOBJ_REMOVE = 1, + KOBJ_CHANGE = 2, + KOBJ_MOVE = 3, + KOBJ_ONLINE = 4, + KOBJ_OFFLINE = 5, + KOBJ_BIND = 6, + KOBJ_UNBIND = 7, +}; + +typedef u16 blk_short_t; + +struct dm_ioctl { + __u32 version[3]; + __u32 data_size; + __u32 data_start; + __u32 target_count; + __s32 open_count; + __u32 flags; + __u32 event_nr; + __u32 padding; + __u64 dev; + char name[128]; + char uuid[129]; + char data[7]; +}; + +struct dm_target_spec { + __u64 sector_start; + __u64 length; + __s32 status; + __u32 next; + char target_type[16]; +}; + +struct dm_target_deps { + __u32 count; + __u32 padding; + __u64 dev[0]; +}; + +struct dm_name_list { + __u64 dev; + __u32 next; + char name[0]; +}; + +struct dm_target_versions { + __u32 next; + __u32 version[3]; + char name[0]; +}; + +struct dm_target_msg { + __u64 sector; + char message[0]; +}; + +enum { + DM_VERSION_CMD = 0, + DM_REMOVE_ALL_CMD = 1, + DM_LIST_DEVICES_CMD = 2, + DM_DEV_CREATE_CMD = 3, + DM_DEV_REMOVE_CMD = 4, + DM_DEV_RENAME_CMD = 5, + DM_DEV_SUSPEND_CMD = 6, + DM_DEV_STATUS_CMD = 7, + DM_DEV_WAIT_CMD = 8, + DM_TABLE_LOAD_CMD = 9, + DM_TABLE_CLEAR_CMD = 10, + DM_TABLE_DEPS_CMD = 11, + DM_TABLE_STATUS_CMD = 12, + DM_LIST_VERSIONS_CMD = 13, + DM_TARGET_MSG_CMD = 14, + DM_DEV_SET_GEOMETRY_CMD = 15, + DM_DEV_ARM_POLL_CMD = 16, + DM_GET_TARGET_VERSION_CMD = 17, +}; + +enum dm_queue_mode { + DM_TYPE_NONE = 0, + DM_TYPE_BIO_BASED = 1, + DM_TYPE_REQUEST_BASED = 2, + DM_TYPE_DAX_BIO_BASED = 3, +}; + +typedef enum { + STATUSTYPE_INFO = 0, + STATUSTYPE_TABLE = 1, + STATUSTYPE_IMA = 2, +} status_type_t; + +union map_info___2 { + void *ptr; +}; + +struct dm_target; + +typedef int (*dm_ctr_fn)(struct dm_target *, unsigned int, char **); + +struct dm_table; + +struct target_type; + +struct dm_target { + struct dm_table *table; + struct target_type *type; + sector_t begin; + sector_t len; + uint32_t max_io_len; + unsigned int num_flush_bios; + unsigned int num_discard_bios; + unsigned int num_secure_erase_bios; + unsigned int num_write_zeroes_bios; + unsigned int per_io_data_size; + void *private; + char *error; + bool flush_supported: 1; + bool discards_supported: 1; + bool zone_reset_all_supported: 1; + bool max_discard_granularity: 1; + bool limit_swap_bios: 1; + bool emulate_zone_append: 1; + bool accounts_remapped_io: 1; + bool needs_bio_set_dev: 1; + bool flush_bypasses_map: 1; + bool mempool_needs_integrity: 1; +}; + +typedef void (*dm_dtr_fn)(struct dm_target *); + +typedef int (*dm_map_fn)(struct dm_target *, struct bio *); + +typedef int (*dm_clone_and_map_request_fn)(struct dm_target *, struct request *, union map_info___2 *, struct request **); + +typedef void (*dm_release_clone_request_fn)(struct request *, union map_info___2 *); + +typedef int (*dm_endio_fn)(struct dm_target *, struct bio *, blk_status_t *); + +typedef int (*dm_request_endio_fn)(struct dm_target *, struct request *, blk_status_t, union map_info___2 *); + +typedef void (*dm_presuspend_fn)(struct dm_target *); + +typedef void (*dm_presuspend_undo_fn)(struct dm_target *); + +typedef void (*dm_postsuspend_fn)(struct dm_target *); + +typedef int (*dm_preresume_fn)(struct dm_target *); + +typedef void (*dm_resume_fn)(struct dm_target *); + +typedef void (*dm_status_fn)(struct dm_target *, status_type_t, unsigned int, char *, unsigned int); + +typedef int (*dm_message_fn)(struct dm_target *, unsigned int, char **, char *, unsigned int); + +typedef int (*dm_prepare_ioctl_fn)(struct dm_target *, struct block_device **); + +typedef int (*dm_report_zones_fn)(struct dm_target *); + +struct dm_dev; + +typedef int (*iterate_devices_callout_fn)(struct dm_target *, struct dm_dev *, sector_t, sector_t, void *); + +struct dm_dev { + struct block_device *bdev; + struct file *bdev_file; + struct dax_device *dax_dev; + blk_mode_t mode; + char name[16]; +}; + +typedef int (*dm_iterate_devices_fn)(struct dm_target *, iterate_devices_callout_fn, void *); + +typedef void (*dm_io_hints_fn)(struct dm_target *, struct queue_limits *); + +typedef int (*dm_busy_fn)(struct dm_target *); + +enum dax_access_mode { + DAX_ACCESS = 0, + DAX_RECOVERY_WRITE = 1, +}; + +typedef long int (*dm_dax_direct_access_fn)(struct dm_target *, long unsigned int, long int, enum dax_access_mode, void **, pfn_t *); + +typedef int (*dm_dax_zero_page_range_fn)(struct dm_target *, long unsigned int, size_t); + +typedef size_t (*dm_dax_recovery_write_fn)(struct dm_target *, long unsigned int, void *, size_t, struct iov_iter *); + +struct target_type { + uint64_t features; + const char *name; + struct module *module; + unsigned int version[3]; + dm_ctr_fn ctr; + dm_dtr_fn dtr; + dm_map_fn map; + dm_clone_and_map_request_fn clone_and_map_rq; + dm_release_clone_request_fn release_clone_rq; + dm_endio_fn end_io; + dm_request_endio_fn rq_end_io; + dm_presuspend_fn presuspend; + dm_presuspend_undo_fn presuspend_undo; + dm_postsuspend_fn postsuspend; + dm_preresume_fn preresume; + dm_resume_fn resume; + dm_status_fn status; + dm_message_fn message; + dm_prepare_ioctl_fn prepare_ioctl; + dm_report_zones_fn report_zones; + dm_busy_fn busy; + dm_iterate_devices_fn iterate_devices; + dm_io_hints_fn io_hints; + dm_dax_direct_access_fn direct_access; + dm_dax_zero_page_range_fn dax_zero_page_range; + dm_dax_recovery_write_fn dax_recovery_write; + struct list_head list; +}; + +struct mapped_device; + +struct dm_md_mempools; + +struct dm_table { + struct mapped_device *md; + enum dm_queue_mode type; + unsigned int depth; + unsigned int counts[16]; + sector_t *index[16]; + unsigned int num_targets; + unsigned int num_allocated; + sector_t *highs; + struct dm_target *targets; + struct target_type *immutable_target_type; + bool integrity_supported: 1; + bool singleton: 1; + bool flush_bypasses_map: 1; + blk_mode_t mode; + struct list_head devices; + struct rw_semaphore devices_lock; + void (*event_fn)(void *); + void *event_context; + struct dm_md_mempools *mempools; +}; + +struct dm_stats_last_position; + +struct dm_stats { + struct mutex mutex; + struct list_head list; + struct dm_stats_last_position *last; + bool precise_timestamps; +}; + +struct dm_stats_aux { + bool merged; + long long unsigned int duration_ns; +}; + +struct dm_dev_internal { + struct list_head list; + refcount_t count; + struct dm_dev *dm_dev; +}; + +struct dm_kobject_holder { + struct kobject kobj; + struct completion completion; +}; + +struct dm_md_mempools { + struct bio_set bs; + struct bio_set io_bs; +}; + +struct dm_io; + +struct mapped_device { + struct mutex suspend_lock; + struct mutex table_devices_lock; + struct list_head table_devices; + void *map; + long unsigned int flags; + struct mutex type_lock; + enum dm_queue_mode type; + int numa_node_id; + struct request_queue *queue; + atomic_t holders; + atomic_t open_count; + struct dm_target *immutable_target; + struct target_type *immutable_target_type; + char name[16]; + struct gendisk *disk; + struct dax_device *dax_dev; + wait_queue_head_t wait; + long unsigned int *pending_io; + struct hd_geometry geometry; + struct workqueue_struct *wq; + struct work_struct work; + spinlock_t deferred_lock; + struct bio_list deferred; + struct work_struct requeue_work; + struct dm_io *requeue_list; + void *interface_ptr; + wait_queue_head_t eventq; + atomic_t event_nr; + atomic_t uevent_seq; + struct list_head uevent_list; + spinlock_t uevent_lock; + bool init_tio_pdu: 1; + struct blk_mq_tag_set *tag_set; + struct dm_stats stats; + unsigned int internal_suspend_count; + int swap_bios; + struct semaphore swap_bios_semaphore; + struct mutex swap_bios_lock; + struct dm_md_mempools *mempools; + struct dm_kobject_holder kobj_holder; + struct srcu_struct io_barrier; +}; + +struct dm_target_io { + short unsigned int magic; + blk_short_t flags; + unsigned int target_bio_nr; + struct dm_io *io; + struct dm_target *ti; + unsigned int *len_ptr; + sector_t old_sector; + struct bio clone; +}; + +struct dm_io { + short unsigned int magic; + blk_short_t flags; + spinlock_t lock; + long unsigned int start_time; + void *data; + struct dm_io *next; + struct dm_stats_aux stats_aux; + blk_status_t status; + atomic_t io_count; + struct mapped_device *md; + struct bio *orig_bio; + unsigned int sector_offset; + unsigned int sectors; + struct dm_target_io tio; +}; + +enum key_being_used_for { + VERIFYING_MODULE_SIGNATURE = 0, + VERIFYING_FIRMWARE_SIGNATURE = 1, + VERIFYING_KEXEC_PE_SIGNATURE = 2, + VERIFYING_KEY_SIGNATURE = 3, + VERIFYING_KEY_SELF_SIGNATURE = 4, + VERIFYING_UNSPECIFIED_SIGNATURE = 5, + NR__KEY_BEING_USED_FOR = 6, +}; + +struct dm_file { + volatile unsigned int global_event_nr; +}; + +struct hash_cell { + struct rb_node name_node; + struct rb_node uuid_node; + bool name_set; + bool uuid_set; + char *name; + char *uuid; + struct mapped_device *md; + struct dm_table *new_map; +}; + +struct vers_iter { + size_t param_size; + struct dm_target_versions *vers; + struct dm_target_versions *old_vers; + char *end; + uint32_t flags; +}; + +typedef int (*ioctl_fn)(struct file *, struct dm_ioctl *, size_t); + +struct cpuidle_state_usage { + long long unsigned int disable; + long long unsigned int usage; + u64 time_ns; + long long unsigned int above; + long long unsigned int below; + long long unsigned int rejected; +}; + +struct cpuidle_device; + +struct cpuidle_driver; + +struct cpuidle_state { + char name[16]; + char desc[32]; + s64 exit_latency_ns; + s64 target_residency_ns; + unsigned int flags; + unsigned int exit_latency; + int power_usage; + unsigned int target_residency; + int (*enter)(struct cpuidle_device *, struct cpuidle_driver *, int); + int (*enter_dead)(struct cpuidle_device *, int); + int (*enter_s2idle)(struct cpuidle_device *, struct cpuidle_driver *, int); +}; + +struct cpuidle_state_kobj; + +struct cpuidle_driver_kobj; + +struct cpuidle_device_kobj; + +struct cpuidle_device { + unsigned int registered: 1; + unsigned int enabled: 1; + unsigned int poll_time_limit: 1; + unsigned int cpu; + ktime_t next_hrtimer; + int last_state_idx; + u64 last_residency_ns; + u64 poll_limit_ns; + u64 forced_idle_latency_limit_ns; + struct cpuidle_state_usage states_usage[10]; + struct cpuidle_state_kobj *kobjs[10]; + struct cpuidle_driver_kobj *kobj_driver; + struct cpuidle_device_kobj *kobj_dev; + struct list_head device_list; +}; + +struct cpuidle_driver { + const char *name; + struct module *owner; + unsigned int bctimer: 1; + struct cpuidle_state states[10]; + int state_count; + int safe_state_index; + struct cpumask *cpumask; + const char *governor; +}; + +struct cpuidle_governor { + char name[16]; + struct list_head governor_list; + unsigned int rating; + int (*enable)(struct cpuidle_driver *, struct cpuidle_device *); + void (*disable)(struct cpuidle_driver *, struct cpuidle_device *); + int (*select)(struct cpuidle_driver *, struct cpuidle_device *, bool *); + void (*reflect)(struct cpuidle_device *, int); +}; + +struct menu_device { + int needs_update; + int tick_wakeup; + u64 next_timer_ns; + unsigned int bucket; + unsigned int correction_factor[6]; + unsigned int intervals[8]; + int interval_ptr; +}; + +struct psci_operations { + u32 (*get_version)(void); + int (*cpu_suspend)(u32, long unsigned int); + int (*cpu_off)(u32); + int (*cpu_on)(long unsigned int, long unsigned int); + int (*migrate)(long unsigned int); + int (*affinity_info)(long unsigned int, long unsigned int); + int (*migrate_info_type)(void); +}; + +struct psci_cpuidle_data { + u32 *psci_states; + struct device *dev; +}; + +struct wake_irq; + +struct wakeup_source { + const char *name; + int id; + struct list_head entry; + spinlock_t lock; + struct wake_irq *wakeirq; + struct timer_list timer; + long unsigned int timer_expires; + ktime_t total_time; + ktime_t max_time; + ktime_t last_time; + ktime_t start_prevent_time; + ktime_t prevent_sleep_time; + long unsigned int event_count; + long unsigned int active_count; + long unsigned int relax_count; + long unsigned int expire_count; + long unsigned int wakeup_count; + struct device *dev; + bool active: 1; + bool autosleep_enabled: 1; +}; + +struct mmc_data; + +struct mmc_request; + +struct mmc_command { + u32 opcode; + u32 arg; + u32 resp[4]; + unsigned int flags; + unsigned int retries; + int error; + unsigned int busy_timeout; + struct mmc_data *data; + struct mmc_request *mrq; +}; + +struct mmc_data { + unsigned int timeout_ns; + unsigned int timeout_clks; + unsigned int blksz; + unsigned int blocks; + unsigned int blk_addr; + int error; + unsigned int flags; + unsigned int bytes_xfered; + struct mmc_command *stop; + struct mmc_request *mrq; + unsigned int sg_len; + int sg_count; + struct scatterlist *sg; + s32 host_cookie; +}; + +struct mmc_host; + +struct mmc_request { + struct mmc_command *sbc; + struct mmc_command *cmd; + struct mmc_data *data; + struct mmc_command *stop; + struct completion completion; + struct completion cmd_completion; + void (*done)(struct mmc_request *); + void (*recovery_notifier)(struct mmc_request *); + struct mmc_host *host; + bool cap_cmd_during_tfr; + int tag; +}; + +typedef unsigned int mmc_pm_flag_t; + +struct mmc_ios { + unsigned int clock; + short unsigned int vdd; + unsigned int power_delay_ms; + unsigned char bus_mode; + unsigned char chip_select; + unsigned char power_mode; + unsigned char bus_width; + unsigned char timing; + unsigned char signal_voltage; + unsigned char drv_type; + bool enhanced_strobe; +}; + +struct mmc_ctx { + struct task_struct *task; +}; + +struct mmc_slot { + int cd_irq; + bool cd_wake_enabled; + void *handler_priv; +}; + +struct regulator; + +struct mmc_supply { + struct regulator *vmmc; + struct regulator *vqmmc; +}; + +struct mmc_host_ops; + +struct mmc_pwrseq; + +struct mmc_card; + +struct mmc_bus_ops; + +struct led_trigger; + +struct mmc_cqe_ops; + +struct mmc_host { + struct device *parent; + struct device class_dev; + int index; + const struct mmc_host_ops *ops; + struct mmc_pwrseq *pwrseq; + unsigned int f_min; + unsigned int f_max; + unsigned int f_init; + u32 ocr_avail; + u32 ocr_avail_sdio; + u32 ocr_avail_sd; + u32 ocr_avail_mmc; + struct wakeup_source *ws; + u32 max_current_330; + u32 max_current_300; + u32 max_current_180; + u32 caps; + u32 caps2; + int fixed_drv_type; + mmc_pm_flag_t pm_caps; + unsigned int max_seg_size; + short unsigned int max_segs; + short unsigned int unused; + unsigned int max_req_size; + unsigned int max_blk_size; + unsigned int max_blk_count; + unsigned int max_busy_timeout; + spinlock_t lock; + struct mmc_ios ios; + unsigned int use_spi_crc: 1; + unsigned int claimed: 1; + unsigned int doing_init_tune: 1; + unsigned int can_retune: 1; + unsigned int doing_retune: 1; + unsigned int retune_now: 1; + unsigned int retune_paused: 1; + unsigned int retune_crc_disable: 1; + unsigned int can_dma_map_merge: 1; + unsigned int vqmmc_enabled: 1; + int rescan_disable; + int rescan_entered; + int need_retune; + int hold_retune; + unsigned int retune_period; + struct timer_list retune_timer; + bool trigger_card_event; + struct mmc_card *card; + wait_queue_head_t wq; + struct mmc_ctx *claimer; + int claim_cnt; + struct mmc_ctx default_ctx; + struct delayed_work detect; + int detect_change; + struct mmc_slot slot; + const struct mmc_bus_ops *bus_ops; + unsigned int sdio_irqs; + struct task_struct *sdio_irq_thread; + struct work_struct sdio_irq_work; + bool sdio_irq_pending; + atomic_t sdio_irq_thread_abort; + mmc_pm_flag_t pm_flags; + struct led_trigger *led; + struct mmc_supply supply; + struct dentry *debugfs_root; + struct mmc_request *ongoing_mrq; + unsigned int actual_clock; + unsigned int slotno; + int dsr_req; + u32 dsr; + const struct mmc_cqe_ops *cqe_ops; + void *cqe_private; + int cqe_qdepth; + bool cqe_enabled; + bool cqe_on; + bool hsq_enabled; + int hsq_depth; + u32 err_stats[15]; + long: 64; + long: 64; + long unsigned int private[0]; +}; + +struct mmc_cid { + unsigned int manfid; + char prod_name[8]; + unsigned char prv; + unsigned int serial; + short unsigned int oemid; + short unsigned int year; + unsigned char hwrev; + unsigned char fwrev; + unsigned char month; +}; + +struct mmc_csd { + unsigned char structure; + unsigned char mmca_vsn; + short unsigned int cmdclass; + short unsigned int taac_clks; + unsigned int taac_ns; + unsigned int c_size; + unsigned int r2w_factor; + unsigned int max_dtr; + unsigned int erase_size; + unsigned int wp_grp_size; + unsigned int read_blkbits; + unsigned int write_blkbits; + sector_t capacity; + unsigned int read_partial: 1; + unsigned int read_misalign: 1; + unsigned int write_partial: 1; + unsigned int write_misalign: 1; + unsigned int dsr_imp: 1; +}; + +struct mmc_ext_csd { + u8 rev; + u8 erase_group_def; + u8 sec_feature_support; + u8 rel_sectors; + u8 rel_param; + bool enhanced_rpmb_supported; + u8 part_config; + u8 cache_ctrl; + u8 rst_n_function; + unsigned int part_time; + unsigned int sa_timeout; + unsigned int generic_cmd6_time; + unsigned int power_off_longtime; + u8 power_off_notification; + unsigned int hs_max_dtr; + unsigned int hs200_max_dtr; + unsigned int sectors; + unsigned int hc_erase_size; + unsigned int hc_erase_timeout; + unsigned int sec_trim_mult; + unsigned int sec_erase_mult; + unsigned int trim_timeout; + bool partition_setting_completed; + long long unsigned int enhanced_area_offset; + unsigned int enhanced_area_size; + unsigned int cache_size; + bool hpi_en; + bool hpi; + unsigned int hpi_cmd; + bool bkops; + bool man_bkops_en; + bool auto_bkops_en; + unsigned int data_sector_size; + unsigned int data_tag_unit_size; + unsigned int boot_ro_lock; + bool boot_ro_lockable; + bool ffu_capable; + bool cmdq_en; + bool cmdq_support; + unsigned int cmdq_depth; + u8 fwrev[8]; + u8 raw_exception_status; + u8 raw_partition_support; + u8 raw_rpmb_size_mult; + u8 raw_erased_mem_count; + u8 strobe_support; + u8 raw_ext_csd_structure; + u8 raw_card_type; + u8 raw_driver_strength; + u8 out_of_int_time; + u8 raw_pwr_cl_52_195; + u8 raw_pwr_cl_26_195; + u8 raw_pwr_cl_52_360; + u8 raw_pwr_cl_26_360; + u8 raw_s_a_timeout; + u8 raw_hc_erase_gap_size; + u8 raw_erase_timeout_mult; + u8 raw_hc_erase_grp_size; + u8 raw_boot_mult; + u8 raw_sec_trim_mult; + u8 raw_sec_erase_mult; + u8 raw_sec_feature_support; + u8 raw_trim_mult; + u8 raw_pwr_cl_200_195; + u8 raw_pwr_cl_200_360; + u8 raw_pwr_cl_ddr_52_195; + u8 raw_pwr_cl_ddr_52_360; + u8 raw_pwr_cl_ddr_200_360; + u8 raw_bkops_status; + u8 raw_sectors[4]; + u8 pre_eol_info; + u8 device_life_time_est_typ_a; + u8 device_life_time_est_typ_b; + unsigned int feature_support; +}; + +struct sd_scr { + unsigned char sda_vsn; + unsigned char sda_spec3; + unsigned char sda_spec4; + unsigned char sda_specx; + unsigned char bus_widths; + unsigned char cmds; +}; + +struct sd_ssr { + unsigned int au; + unsigned int erase_timeout; + unsigned int erase_offset; +}; + +struct sd_switch_caps { + unsigned int hs_max_dtr; + unsigned int uhs_max_dtr; + unsigned int sd3_bus_mode; + unsigned int sd3_drv_type; + unsigned int sd3_curr_limit; +}; + +struct sd_ext_reg { + u8 fno; + u8 page; + u16 offset; + u8 rev; + u8 feature_enabled; + u8 feature_support; +}; + +struct sdio_cccr { + unsigned int sdio_vsn; + unsigned int sd_vsn; + unsigned int multi_block: 1; + unsigned int low_speed: 1; + unsigned int wide_bus: 1; + unsigned int high_power: 1; + unsigned int high_speed: 1; + unsigned int disable_cd: 1; + unsigned int enable_async_irq: 1; +}; + +struct sdio_cis { + short unsigned int vendor; + short unsigned int device; + short unsigned int blksize; + unsigned int max_dtr; +}; + +struct mmc_part { + u64 size; + unsigned int part_cfg; + char name[20]; + bool force_ro; + unsigned int area_type; +}; + +struct sdio_func; + +struct sdio_func_tuple; + +struct mmc_card { + struct mmc_host *host; + struct device dev; + u32 ocr; + unsigned int rca; + unsigned int type; + unsigned int state; + unsigned int quirks; + unsigned int quirk_max_rate; + bool written_flag; + bool reenable_cmdq; + unsigned int erase_size; + unsigned int erase_shift; + unsigned int pref_erase; + unsigned int eg_boundary; + unsigned int erase_arg; + u8 erased_byte; + unsigned int wp_grp_size; + u32 raw_cid[4]; + u32 raw_csd[4]; + u32 raw_scr[2]; + u32 raw_ssr[16]; + struct mmc_cid cid; + struct mmc_csd csd; + struct mmc_ext_csd ext_csd; + struct sd_scr scr; + struct sd_ssr ssr; + struct sd_switch_caps sw_caps; + struct sd_ext_reg ext_power; + struct sd_ext_reg ext_perf; + unsigned int sdio_funcs; + atomic_t sdio_funcs_probed; + struct sdio_cccr cccr; + struct sdio_cis cis; + struct sdio_func *sdio_func[7]; + struct sdio_func *sdio_single_irq; + u8 major_rev; + u8 minor_rev; + unsigned int num_info; + const char **info; + struct sdio_func_tuple *tuples; + unsigned int sd_bus_speed; + unsigned int mmc_avail_type; + unsigned int drive_strength; + struct dentry *debugfs_root; + struct mmc_part part[7]; + unsigned int nr_parts; + struct workqueue_struct *complete_wq; +}; + +typedef void sdio_irq_handler_t(struct sdio_func *); + +struct sdio_func { + struct mmc_card *card; + struct device dev; + sdio_irq_handler_t *irq_handler; + unsigned int num; + unsigned char class; + short unsigned int vendor; + short unsigned int device; + unsigned int max_blksize; + unsigned int cur_blksize; + unsigned int enable_timeout; + unsigned int state; + u8 *tmpbuf; + u8 major_rev; + u8 minor_rev; + unsigned int num_info; + const char **info; + struct sdio_func_tuple *tuples; +}; + +struct sdio_func_tuple { + struct sdio_func_tuple *next; + unsigned char code; + unsigned char size; + unsigned char data[0]; +}; + +enum blk_crypto_mode_num { + BLK_ENCRYPTION_MODE_INVALID = 0, + BLK_ENCRYPTION_MODE_AES_256_XTS = 1, + BLK_ENCRYPTION_MODE_AES_128_CBC_ESSIV = 2, + BLK_ENCRYPTION_MODE_ADIANTUM = 3, + BLK_ENCRYPTION_MODE_SM4_XTS = 4, + BLK_ENCRYPTION_MODE_MAX = 5, +}; + +enum mmc_err_stat { + MMC_ERR_CMD_TIMEOUT = 0, + MMC_ERR_CMD_CRC = 1, + MMC_ERR_DAT_TIMEOUT = 2, + MMC_ERR_DAT_CRC = 3, + MMC_ERR_AUTO_CMD = 4, + MMC_ERR_ADMA = 5, + MMC_ERR_TUNING = 6, + MMC_ERR_CMDQ_RED = 7, + MMC_ERR_CMDQ_GCE = 8, + MMC_ERR_CMDQ_ICCE = 9, + MMC_ERR_REQ_TIMEOUT = 10, + MMC_ERR_CMDQ_REQ_TIMEOUT = 11, + MMC_ERR_ICE_CFG = 12, + MMC_ERR_CTRL_TIMEOUT = 13, + MMC_ERR_UNEXPECTED_IRQ = 14, + MMC_ERR_MAX = 15, +}; + +struct mmc_host_ops { + void (*post_req)(struct mmc_host *, struct mmc_request *, int); + void (*pre_req)(struct mmc_host *, struct mmc_request *); + void (*request)(struct mmc_host *, struct mmc_request *); + int (*request_atomic)(struct mmc_host *, struct mmc_request *); + void (*set_ios)(struct mmc_host *, struct mmc_ios *); + int (*get_ro)(struct mmc_host *); + int (*get_cd)(struct mmc_host *); + void (*enable_sdio_irq)(struct mmc_host *, int); + void (*ack_sdio_irq)(struct mmc_host *); + void (*init_card)(struct mmc_host *, struct mmc_card *); + int (*start_signal_voltage_switch)(struct mmc_host *, struct mmc_ios *); + int (*card_busy)(struct mmc_host *); + int (*execute_tuning)(struct mmc_host *, u32); + int (*prepare_hs400_tuning)(struct mmc_host *, struct mmc_ios *); + int (*execute_hs400_tuning)(struct mmc_host *, struct mmc_card *); + int (*prepare_sd_hs_tuning)(struct mmc_host *, struct mmc_card *); + int (*execute_sd_hs_tuning)(struct mmc_host *, struct mmc_card *); + int (*hs400_prepare_ddr)(struct mmc_host *); + void (*hs400_downgrade)(struct mmc_host *); + void (*hs400_complete)(struct mmc_host *); + void (*hs400_enhanced_strobe)(struct mmc_host *, struct mmc_ios *); + int (*select_drive_strength)(struct mmc_card *, unsigned int, int, int, int *); + void (*card_hw_reset)(struct mmc_host *); + void (*card_event)(struct mmc_host *); + int (*multi_io_quirk)(struct mmc_card *, unsigned int, int); + int (*init_sd_express)(struct mmc_host *, struct mmc_ios *); +}; + +struct mmc_cqe_ops { + int (*cqe_enable)(struct mmc_host *, struct mmc_card *); + void (*cqe_disable)(struct mmc_host *); + int (*cqe_request)(struct mmc_host *, struct mmc_request *); + void (*cqe_post_req)(struct mmc_host *, struct mmc_request *); + void (*cqe_off)(struct mmc_host *); + int (*cqe_wait_for_idle)(struct mmc_host *); + bool (*cqe_timeout)(struct mmc_host *, struct mmc_request *, bool *); + void (*cqe_recovery_start)(struct mmc_host *); + void (*cqe_recovery_finish)(struct mmc_host *); +}; + +struct mmc_bus_ops { + void (*remove)(struct mmc_host *); + void (*detect)(struct mmc_host *); + int (*pre_suspend)(struct mmc_host *); + int (*suspend)(struct mmc_host *); + int (*resume)(struct mmc_host *); + int (*runtime_suspend)(struct mmc_host *); + int (*runtime_resume)(struct mmc_host *); + int (*alive)(struct mmc_host *); + int (*shutdown)(struct mmc_host *); + int (*hw_reset)(struct mmc_host *); + int (*sw_reset)(struct mmc_host *); + bool (*cache_enabled)(struct mmc_host *); + int (*flush_cache)(struct mmc_host *); +}; + +struct hid_device_id { + __u16 bus; + __u16 group; + __u32 vendor; + __u32 product; + kernel_ulong_t driver_data; +}; + +enum hid_report_type { + HID_INPUT_REPORT = 0, + HID_OUTPUT_REPORT = 1, + HID_FEATURE_REPORT = 2, + HID_REPORT_TYPES = 3, +}; + +enum bpf_cgroup_storage_type { + BPF_CGROUP_STORAGE_SHARED = 0, + BPF_CGROUP_STORAGE_PERCPU = 1, + __BPF_CGROUP_STORAGE_MAX = 2, +}; + +enum bpf_type_flag { + PTR_MAYBE_NULL = 256, + MEM_RDONLY = 512, + MEM_RINGBUF = 1024, + MEM_USER = 2048, + MEM_PERCPU = 4096, + OBJ_RELEASE = 8192, + PTR_UNTRUSTED = 16384, + MEM_UNINIT = 32768, + DYNPTR_TYPE_LOCAL = 65536, + DYNPTR_TYPE_RINGBUF = 131072, + MEM_FIXED_SIZE = 262144, + MEM_ALLOC = 524288, + PTR_TRUSTED = 1048576, + MEM_RCU = 2097152, + NON_OWN_REF = 4194304, + DYNPTR_TYPE_SKB = 8388608, + DYNPTR_TYPE_XDP = 16777216, + MEM_ALIGNED = 33554432, + MEM_WRITE = 67108864, + __BPF_TYPE_FLAG_MAX = 67108865, + __BPF_TYPE_LAST_FLAG = 67108864, +}; + +enum { + BPF_MAX_TRAMP_LINKS = 38, +}; + +enum bpf_tramp_prog_type { + BPF_TRAMP_FENTRY = 0, + BPF_TRAMP_FEXIT = 1, + BPF_TRAMP_MODIFY_RETURN = 2, + BPF_TRAMP_MAX = 3, + BPF_TRAMP_REPLACE = 4, +}; + +enum hid_type { + HID_TYPE_OTHER = 0, + HID_TYPE_USBMOUSE = 1, + HID_TYPE_USBNONE = 2, +}; + +struct hid_report; + +struct hid_report_enum { + unsigned int numbered; + struct list_head report_list; + struct hid_report *report_id_hash[256]; +}; + +struct hid_collection; + +struct hid_driver; + +struct hid_ll_driver; + +struct hid_field; + +struct hid_usage; + +struct hid_device { + const __u8 *dev_rdesc; + unsigned int dev_rsize; + const __u8 *rdesc; + unsigned int rsize; + struct hid_collection *collection; + unsigned int collection_size; + unsigned int maxcollection; + unsigned int maxapplication; + __u16 bus; + __u16 group; + __u32 vendor; + __u32 product; + __u32 version; + enum hid_type type; + unsigned int country; + struct hid_report_enum report_enum[3]; + struct work_struct led_work; + struct semaphore driver_input_lock; + struct device dev; + struct hid_driver *driver; + void *devres_group_id; + const struct hid_ll_driver *ll_driver; + struct mutex ll_open_lock; + unsigned int ll_open_count; + long unsigned int status; + unsigned int claimed; + unsigned int quirks; + unsigned int initial_quirks; + bool io_started; + struct list_head inputs; + void *hiddev; + void *hidraw; + char name[128]; + char phys[64]; + char uniq[64]; + void *driver_data; + int (*ff_init)(struct hid_device *); + int (*hiddev_connect)(struct hid_device *, unsigned int); + void (*hiddev_disconnect)(struct hid_device *); + void (*hiddev_hid_event)(struct hid_device *, struct hid_field *, struct hid_usage *, __s32); + void (*hiddev_report_event)(struct hid_device *, struct hid_report *); + short unsigned int debug; + struct dentry *debug_dir; + struct dentry *debug_rdesc; + struct dentry *debug_events; + struct list_head debug_list; + spinlock_t debug_list_lock; + wait_queue_head_t debug_wait; + struct kref ref; + unsigned int id; +}; + +struct hid_field_entry; + +struct hid_report { + struct list_head list; + struct list_head hidinput_list; + struct list_head field_entry_list; + unsigned int id; + enum hid_report_type type; + unsigned int application; + struct hid_field *field[256]; + struct hid_field_entry *field_entries; + unsigned int maxfield; + unsigned int size; + struct hid_device *device; + bool tool_active; + unsigned int tool; +}; + +struct hid_collection { + int parent_idx; + unsigned int type; + unsigned int usage; + unsigned int level; +}; + +struct hid_usage { + unsigned int hid; + unsigned int collection_index; + unsigned int usage_index; + __s8 resolution_multiplier; + __s8 wheel_factor; + __u16 code; + __u8 type; + __s16 hat_min; + __s16 hat_max; + __s16 hat_dir; + __s16 wheel_accumulated; +}; + +struct hid_input; + +struct hid_field { + unsigned int physical; + unsigned int logical; + unsigned int application; + struct hid_usage *usage; + unsigned int maxusage; + unsigned int flags; + unsigned int report_offset; + unsigned int report_size; + unsigned int report_count; + unsigned int report_type; + __s32 *value; + __s32 *new_value; + __s32 *usages_priorities; + __s32 logical_minimum; + __s32 logical_maximum; + __s32 physical_minimum; + __s32 physical_maximum; + __s32 unit_exponent; + unsigned int unit; + bool ignored; + struct hid_report *report; + unsigned int index; + struct hid_input *hidinput; + __u16 dpad; + unsigned int slot_idx; +}; + +struct hid_input { + struct list_head list; + struct hid_report *report; + struct input_dev *input; + const char *name; + struct list_head reports; + unsigned int application; + bool registered; +}; + +struct hid_field_entry { + struct list_head list; + struct hid_field *field; + unsigned int index; + __s32 priority; +}; + +struct hid_report_id; + +struct hid_usage_id; + +struct hid_driver { + char *name; + const struct hid_device_id *id_table; + struct list_head dyn_list; + spinlock_t dyn_lock; + bool (*match)(struct hid_device *, bool); + int (*probe)(struct hid_device *, const struct hid_device_id *); + void (*remove)(struct hid_device *); + const struct hid_report_id *report_table; + int (*raw_event)(struct hid_device *, struct hid_report *, u8 *, int); + const struct hid_usage_id *usage_table; + int (*event)(struct hid_device *, struct hid_field *, struct hid_usage *, __s32); + void (*report)(struct hid_device *, struct hid_report *); + const __u8 * (*report_fixup)(struct hid_device *, __u8 *, unsigned int *); + int (*input_mapping)(struct hid_device *, struct hid_input *, struct hid_field *, struct hid_usage *, long unsigned int **, int *); + int (*input_mapped)(struct hid_device *, struct hid_input *, struct hid_field *, struct hid_usage *, long unsigned int **, int *); + int (*input_configured)(struct hid_device *, struct hid_input *); + void (*feature_mapping)(struct hid_device *, struct hid_field *, struct hid_usage *); + int (*suspend)(struct hid_device *, pm_message_t); + int (*resume)(struct hid_device *); + int (*reset_resume)(struct hid_device *); + struct device_driver driver; +}; + +struct hid_ll_driver { + int (*start)(struct hid_device *); + void (*stop)(struct hid_device *); + int (*open)(struct hid_device *); + void (*close)(struct hid_device *); + int (*power)(struct hid_device *, int); + int (*parse)(struct hid_device *); + void (*request)(struct hid_device *, struct hid_report *, int); + int (*wait)(struct hid_device *); + int (*raw_request)(struct hid_device *, unsigned char, __u8 *, size_t, unsigned char, int); + int (*output_report)(struct hid_device *, __u8 *, size_t); + int (*idle)(struct hid_device *, int, int, int); + bool (*may_wakeup)(struct hid_device *); + unsigned int max_buffer_size; +}; + +struct hid_report_id { + __u32 report_type; +}; + +struct hid_usage_id { + __u32 usage_hid; + __u32 usage_type; + __u32 usage_code; +}; + +struct quirks_list_struct { + struct hid_device_id hid_bl_item; + struct list_head node; +}; + +struct of_endpoint { + unsigned int port; + unsigned int id; + const struct device_node *local_node; +}; + +struct supplier_bindings { + struct device_node * (*parse_prop)(struct device_node *, const char *, int); + struct device_node * (*get_con_dev)(struct device_node *); + bool optional; + u8 fwlink_flags; +}; + +enum { + LOGIC_PIO_INDIRECT = 0, + LOGIC_PIO_CPU_MMIO = 1, +}; + +struct logic_pio_host_ops; + +struct logic_pio_hwaddr { + struct list_head list; + struct fwnode_handle *fwnode; + resource_size_t hw_start; + resource_size_t io_start; + resource_size_t size; + long unsigned int flags; + void *hostdata; + const struct logic_pio_host_ops *ops; +}; + +struct logic_pio_host_ops { + u32 (*in)(void *, long unsigned int, size_t); + void (*out)(void *, long unsigned int, u32, size_t); + u32 (*ins)(void *, long unsigned int, void *, size_t, unsigned int); + void (*outs)(void *, long unsigned int, const void *, size_t, unsigned int); +}; + +struct of_bus; + +struct of_pci_range_parser { + struct device_node *node; + struct of_bus *bus; + const __be32 *range; + const __be32 *end; + int na; + int ns; + int pna; + bool dma; +}; + +struct of_bus { + const char *name; + const char *addresses; + int (*match)(struct device_node *); + void (*count_cells)(struct device_node *, int *, int *); + u64 (*map)(__be32 *, const __be32 *, int, int, int, int); + int (*translate)(__be32 *, u64, int); + int flag_cells; + unsigned int (*get_flags)(const __be32 *); +}; + +struct of_pci_range { + union { + u64 pci_addr; + u64 bus_addr; + }; + u64 cpu_addr; + u64 size; + u32 flags; +}; + +typedef int (*dr_match_t)(struct device *, void *, void *); + +struct mbox_client { + struct device *dev; + bool tx_block; + long unsigned int tx_tout; + bool knows_txdone; + void (*rx_callback)(struct mbox_client *, void *); + void (*tx_prepare)(struct mbox_client *, void *); + void (*tx_done)(struct mbox_client *, void *, int); +}; + +struct mbox_chan; + +struct mbox_chan_ops { + int (*send_data)(struct mbox_chan *, void *); + int (*flush)(struct mbox_chan *, long unsigned int); + int (*startup)(struct mbox_chan *); + void (*shutdown)(struct mbox_chan *); + bool (*last_tx_done)(struct mbox_chan *); + bool (*peek_data)(struct mbox_chan *); +}; + +struct mbox_controller; + +struct mbox_chan { + struct mbox_controller *mbox; + unsigned int txdone_method; + struct mbox_client *cl; + struct completion tx_complete; + void *active_req; + unsigned int msg_count; + unsigned int msg_free; + void *msg_data[20]; + spinlock_t lock; + void *con_priv; +}; + +struct mbox_controller { + struct device *dev; + const struct mbox_chan_ops *ops; + struct mbox_chan *chans; + int num_chans; + bool txdone_irq; + bool txdone_poll; + unsigned int txpoll_period; + struct mbox_chan * (*of_xlate)(struct mbox_controller *, const struct of_phandle_args *); + struct hrtimer poll_hrt; + spinlock_t poll_hrt_lock; + struct list_head node; +}; + +typedef __kernel_long_t __kernel_old_time_t; + +struct __kernel_old_timespec { + __kernel_old_time_t tv_sec; + long int tv_nsec; +}; + +struct cmsghdr { + __kernel_size_t cmsg_len; + int cmsg_level; + int cmsg_type; +}; + +struct ucred { + __u32 pid; + __u32 uid; + __u32 gid; +}; + +struct scm_timestamping_internal { + struct timespec64 ts[3]; +}; + +struct ip_ra_chain { + struct ip_ra_chain *next; + struct sock *sk; + union { + void (*destructor)(struct sock *); + struct sock *saved_sk; + }; + struct callback_head rcu; +}; + +struct unix_edge; + +struct scm_fp_list { + short int count; + short int count_unix; + short int max; + bool inflight; + bool dead; + struct list_head vertices; + struct unix_edge *edges; + struct user_struct *user; + struct file *fp[253]; +}; + +struct unix_sock; + +struct unix_edge { + struct unix_sock *predecessor; + struct unix_sock *successor; + struct list_head vertex_entry; + struct list_head stack_entry; +}; + +struct scm_cookie { + struct pid *pid; + struct scm_fp_list *fp; + struct scm_creds creds; + u32 secid; +}; + +struct scm_timestamping { + struct __kernel_old_timespec ts[3]; +}; + +struct scm_timestamping64 { + struct __kernel_timespec ts[3]; +}; + +struct sockaddr_un { + __kernel_sa_family_t sun_family; + char sun_path[108]; +}; + +struct unix_vertex { + struct list_head edges; + struct list_head entry; + struct list_head scc_entry; + long unsigned int out_degree; + long unsigned int index; + long unsigned int scc_index; +}; + +struct scm_stat { + atomic_t nr_fds; + long unsigned int nr_unix_fds; +}; + +struct unix_address; + +struct unix_sock { + struct sock sk; + struct unix_address *addr; + struct path path; + struct mutex iolock; + struct mutex bindlock; + struct sock *peer; + struct sock *listener; + struct unix_vertex *vertex; + spinlock_t lock; + long: 64; + struct socket_wq peer_wq; + wait_queue_entry_t peer_wake; + struct scm_stat scm_stat; + struct sk_buff *oob_skb; +}; + +struct unix_address { + refcount_t refcnt; + int len; + struct sockaddr_un name[0]; +}; + +enum net_device_flags { + IFF_UP = 1, + IFF_BROADCAST = 2, + IFF_DEBUG = 4, + IFF_LOOPBACK = 8, + IFF_POINTOPOINT = 16, + IFF_NOTRAILERS = 32, + IFF_RUNNING = 64, + IFF_NOARP = 128, + IFF_PROMISC = 256, + IFF_ALLMULTI = 512, + IFF_MASTER = 1024, + IFF_SLAVE = 2048, + IFF_MULTICAST = 4096, + IFF_PORTSEL = 8192, + IFF_AUTOMEDIA = 16384, + IFF_DYNAMIC = 32768, + IFF_LOWER_UP = 65536, + IFF_DORMANT = 131072, + IFF_ECHO = 262144, +}; + +enum { + IF_OPER_UNKNOWN = 0, + IF_OPER_NOTPRESENT = 1, + IF_OPER_DOWN = 2, + IF_OPER_LOWERLAYERDOWN = 3, + IF_OPER_TESTING = 4, + IF_OPER_DORMANT = 5, + IF_OPER_UP = 6, +}; + +enum { + IF_LINK_MODE_DEFAULT = 0, + IF_LINK_MODE_DORMANT = 1, + IF_LINK_MODE_TESTING = 2, +}; + +enum netdev_priv_flags { + IFF_802_1Q_VLAN = 1, + IFF_EBRIDGE = 2, + IFF_BONDING = 4, + IFF_ISATAP = 8, + IFF_WAN_HDLC = 16, + IFF_XMIT_DST_RELEASE = 32, + IFF_DONT_BRIDGE = 64, + IFF_DISABLE_NETPOLL = 128, + IFF_MACVLAN_PORT = 256, + IFF_BRIDGE_PORT = 512, + IFF_OVS_DATAPATH = 1024, + IFF_TX_SKB_SHARING = 2048, + IFF_UNICAST_FLT = 4096, + IFF_TEAM_PORT = 8192, + IFF_SUPP_NOFCS = 16384, + IFF_LIVE_ADDR_CHANGE = 32768, + IFF_MACVLAN = 65536, + IFF_XMIT_DST_RELEASE_PERM = 131072, + IFF_L3MDEV_MASTER = 262144, + IFF_NO_QUEUE = 524288, + IFF_OPENVSWITCH = 1048576, + IFF_L3MDEV_SLAVE = 2097152, + IFF_TEAM = 4194304, + IFF_RXFH_CONFIGURED = 8388608, + IFF_PHONY_HEADROOM = 16777216, + IFF_MACSEC = 33554432, + IFF_NO_RX_HANDLER = 67108864, + IFF_FAILOVER = 134217728, + IFF_FAILOVER_SLAVE = 268435456, + IFF_L3MDEV_RX_HANDLER = 536870912, + IFF_NO_ADDRCONF = 1073741824, + IFF_TX_SKB_NO_LINEAR = 2147483648, +}; + +enum netdev_reg_state { + NETREG_UNINITIALIZED = 0, + NETREG_REGISTERED = 1, + NETREG_UNREGISTERING = 2, + NETREG_UNREGISTERED = 3, + NETREG_RELEASED = 4, + NETREG_DUMMY = 5, +}; + +struct netdev_name_node { + struct hlist_node hlist; + struct list_head list; + struct net_device *dev; + const char *name; + struct callback_head rcu; +}; + +enum { + TCA_UNSPEC = 0, + TCA_KIND = 1, + TCA_OPTIONS = 2, + TCA_STATS = 3, + TCA_XSTATS = 4, + TCA_RATE = 5, + TCA_FCNT = 6, + TCA_STATS2 = 7, + TCA_STAB = 8, + TCA_PAD = 9, + TCA_DUMP_INVISIBLE = 10, + TCA_CHAIN = 11, + TCA_HW_OFFLOAD = 12, + TCA_INGRESS_BLOCK = 13, + TCA_EGRESS_BLOCK = 14, + TCA_DUMP_FLAGS = 15, + TCA_EXT_WARN_MSG = 16, + __TCA_MAX = 17, +}; + +struct qdisc_walker { + int stop; + int skip; + int count; + int (*fn)(struct Qdisc *, long unsigned int, struct qdisc_walker *); +}; + +enum lw_bits { + LW_URGENT = 0, +}; + +enum { + SKB_GSO_TCPV4 = 1, + SKB_GSO_DODGY = 2, + SKB_GSO_TCP_ECN = 4, + SKB_GSO_TCP_FIXEDID = 8, + SKB_GSO_TCPV6 = 16, + SKB_GSO_FCOE = 32, + SKB_GSO_GRE = 64, + SKB_GSO_GRE_CSUM = 128, + SKB_GSO_IPXIP4 = 256, + SKB_GSO_IPXIP6 = 512, + SKB_GSO_UDP_TUNNEL = 1024, + SKB_GSO_UDP_TUNNEL_CSUM = 2048, + SKB_GSO_PARTIAL = 4096, + SKB_GSO_TUNNEL_REMCSUM = 8192, + SKB_GSO_SCTP = 16384, + SKB_GSO_ESP = 32768, + SKB_GSO_UDP = 65536, + SKB_GSO_UDP_L4 = 131072, + SKB_GSO_FRAGLIST = 262144, +}; + +struct vlan_hdr { + __be16 h_vlan_TCI; + __be16 h_vlan_encapsulated_proto; +}; + +struct ipv6hdr { + __u8 priority: 4; + __u8 version: 4; + __u8 flow_lbl[3]; + __be16 payload_len; + __u8 nexthdr; + __u8 hop_limit; + union { + struct { + struct in6_addr saddr; + struct in6_addr daddr; + }; + struct { + struct in6_addr saddr; + struct in6_addr daddr; + } addrs; + }; +}; + +struct tcphdr { + __be16 source; + __be16 dest; + __be32 seq; + __be32 ack_seq; + __u16 res1: 4; + __u16 doff: 4; + __u16 fin: 1; + __u16 syn: 1; + __u16 rst: 1; + __u16 psh: 1; + __u16 ack: 1; + __u16 urg: 1; + __u16 ece: 1; + __u16 cwr: 1; + __be16 window; + __sum16 check; + __be16 urg_ptr; +}; + +struct udphdr { + __be16 source; + __be16 dest; + __be16 len; + __sum16 check; +}; + +struct tso_t { + int next_frag_idx; + int size; + void *data; + u16 ip_id; + u8 tlen; + bool ipv6; + u32 tcp_seq; +}; + +struct page_pool_params_fast { + unsigned int order; + unsigned int pool_size; + int nid; + struct device *dev; + struct napi_struct *napi; + enum dma_data_direction dma_dir; + unsigned int max_len; + unsigned int offset; +}; + +struct page_pool_alloc_stats { + u64 fast; + u64 slow; + u64 slow_high_order; + u64 empty; + u64 refill; + u64 waive; +}; + +struct pp_alloc_cache { + u32 count; + netmem_ref cache[128]; +}; + +struct page_pool_params_slow { + struct net_device *netdev; + unsigned int queue_idx; + unsigned int flags; + void (*init_callback)(netmem_ref, void *); + void *init_arg; +}; + +struct page_pool_recycle_stats; + +struct page_pool { + struct page_pool_params_fast p; + int cpuid; + u32 pages_state_hold_cnt; + bool has_init_callback: 1; + bool dma_map: 1; + bool dma_sync: 1; + bool system: 1; + long: 0; + __u8 __cacheline_group_begin__frag[0]; + long int frag_users; + netmem_ref frag_page; + unsigned int frag_offset; + long: 0; + __u8 __cacheline_group_end__frag[0]; + long: 64; + struct {} __cacheline_group_pad__frag; + struct delayed_work release_dw; + void (*disconnect)(void *); + long unsigned int defer_start; + long unsigned int defer_warn; + struct page_pool_alloc_stats alloc_stats; + u32 xdp_mem_id; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct pp_alloc_cache alloc; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct ptr_ring ring; + void *mp_priv; + struct xarray dma_mapped; + struct page_pool_recycle_stats *recycle_stats; + atomic_t pages_state_release_cnt; + refcount_t user_cnt; + u64 destroy_cnt; + struct page_pool_params_slow slow; + struct { + struct hlist_node list; + u64 detach_time; + u32 napi_id; + u32 id; + } user; + long: 64; + long: 64; +}; + +struct xdp_md { + __u32 data; + __u32 data_end; + __u32 data_meta; + __u32 ingress_ifindex; + __u32 rx_queue_index; + __u32 egress_ifindex; +}; + +struct xdp_mem_info { + u32 type; + u32 id; +}; + +struct xdp_frame { + void *data; + u16 len; + u16 headroom; + u32 metasize; + struct xdp_mem_info mem; + struct net_device *dev_rx; + u32 frame_sz; + u32 flags; +}; + +struct xdp_rxq_info; + +struct xdp_txq_info; + +struct xdp_buff { + void *data; + void *data_end; + void *data_meta; + void *data_hard_start; + struct xdp_rxq_info *rxq; + struct xdp_txq_info *txq; + u32 frame_sz; + u32 flags; +}; + +struct xdp_rxq_info { + struct net_device *dev; + u32 queue_index; + u32 reg_state; + struct xdp_mem_info mem; + unsigned int napi_id; + u32 frag_size; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct pp_memory_provider_params { + void *mp_priv; +}; + +struct rps_map; + +struct rps_dev_flow_table; + +struct netdev_rx_queue { + struct xdp_rxq_info xdp_rxq; + struct rps_map *rps_map; + struct rps_dev_flow_table *rps_flow_table; + struct kobject kobj; + struct net_device *dev; + netdevice_tracker dev_tracker; + struct xsk_buff_pool *pool; + struct napi_struct *napi; + struct pp_memory_provider_params mp_params; + long: 64; + long: 64; +}; + +struct netdev_queue_stats_rx { + u64 bytes; + u64 packets; + u64 alloc_fail; + u64 hw_drops; + u64 hw_drop_overruns; + u64 csum_unnecessary; + u64 csum_none; + u64 csum_bad; + u64 hw_gro_packets; + u64 hw_gro_bytes; + u64 hw_gro_wire_packets; + u64 hw_gro_wire_bytes; + u64 hw_drop_ratelimits; +}; + +struct netdev_queue_stats_tx { + u64 bytes; + u64 packets; + u64 hw_drops; + u64 hw_drop_errors; + u64 csum_none; + u64 needs_csum; + u64 hw_gso_packets; + u64 hw_gso_bytes; + u64 hw_gso_wire_packets; + u64 hw_gso_wire_bytes; + u64 hw_drop_ratelimits; + u64 stop; + u64 wake; +}; + +struct xdp_txq_info { + struct net_device *dev; +}; + +struct page_pool_recycle_stats { + u64 cached; + u64 cache_full; + u64 ring; + u64 ring_full; + u64 released_refcnt; +}; + +struct packet_type { + __be16 type; + bool ignore_outgoing; + struct net_device *dev; + netdevice_tracker dev_tracker; + int (*func)(struct sk_buff *, struct net_device *, struct packet_type *, struct net_device *); + void (*list_func)(struct list_head *, struct packet_type *, struct net_device *); + bool (*id_match)(struct packet_type *, struct sock *); + struct net *af_packet_net; + void *af_packet_priv; + struct list_head list; +}; + +struct llc_sap; + +struct datalink_proto { + unsigned char type[8]; + struct llc_sap *sap; + short unsigned int header_length; + int (*rcvfunc)(struct sk_buff *, struct net_device *, struct packet_type *, struct net_device *); + int (*request)(struct datalink_proto *, struct sk_buff *, const unsigned char *); + struct list_head node; +}; + +struct llc_addr { + unsigned char lsap; + unsigned char mac[6]; +}; + +struct llc_sap { + unsigned char state; + unsigned char p_bit; + unsigned char f_bit; + refcount_t refcnt; + int (*rcv_func)(struct sk_buff *, struct net_device *, struct packet_type *, struct net_device *); + struct llc_addr laddr; + struct list_head node; + spinlock_t sk_lock; + int sk_count; + struct hlist_nulls_head sk_laddr_hash[64]; + struct hlist_head sk_dev_hash[64]; + struct callback_head rcu; +}; + +enum tca_id { + TCA_ID_UNSPEC = 0, + TCA_ID_POLICE = 1, + TCA_ID_GACT = 5, + TCA_ID_IPT = 6, + TCA_ID_PEDIT = 7, + TCA_ID_MIRRED = 8, + TCA_ID_NAT = 9, + TCA_ID_XT = 10, + TCA_ID_SKBEDIT = 11, + TCA_ID_VLAN = 12, + TCA_ID_BPF = 13, + TCA_ID_CONNMARK = 14, + TCA_ID_SKBMOD = 15, + TCA_ID_CSUM = 16, + TCA_ID_TUNNEL_KEY = 17, + TCA_ID_SIMP = 22, + TCA_ID_IFE = 25, + TCA_ID_SAMPLE = 26, + TCA_ID_CTINFO = 27, + TCA_ID_MPLS = 28, + TCA_ID_CT = 29, + TCA_ID_GATE = 30, + __TCA_ID_MAX = 255, +}; + +struct tcf_t { + __u64 install; + __u64 lastuse; + __u64 expires; + __u64 firstuse; +}; + +enum flow_action_id { + FLOW_ACTION_ACCEPT = 0, + FLOW_ACTION_DROP = 1, + FLOW_ACTION_TRAP = 2, + FLOW_ACTION_GOTO = 3, + FLOW_ACTION_REDIRECT = 4, + FLOW_ACTION_MIRRED = 5, + FLOW_ACTION_REDIRECT_INGRESS = 6, + FLOW_ACTION_MIRRED_INGRESS = 7, + FLOW_ACTION_VLAN_PUSH = 8, + FLOW_ACTION_VLAN_POP = 9, + FLOW_ACTION_VLAN_MANGLE = 10, + FLOW_ACTION_TUNNEL_ENCAP = 11, + FLOW_ACTION_TUNNEL_DECAP = 12, + FLOW_ACTION_MANGLE = 13, + FLOW_ACTION_ADD = 14, + FLOW_ACTION_CSUM = 15, + FLOW_ACTION_MARK = 16, + FLOW_ACTION_PTYPE = 17, + FLOW_ACTION_PRIORITY = 18, + FLOW_ACTION_RX_QUEUE_MAPPING = 19, + FLOW_ACTION_WAKE = 20, + FLOW_ACTION_QUEUE = 21, + FLOW_ACTION_SAMPLE = 22, + FLOW_ACTION_POLICE = 23, + FLOW_ACTION_CT = 24, + FLOW_ACTION_CT_METADATA = 25, + FLOW_ACTION_MPLS_PUSH = 26, + FLOW_ACTION_MPLS_POP = 27, + FLOW_ACTION_MPLS_MANGLE = 28, + FLOW_ACTION_GATE = 29, + FLOW_ACTION_PPPOE_PUSH = 30, + FLOW_ACTION_JUMP = 31, + FLOW_ACTION_PIPE = 32, + FLOW_ACTION_VLAN_PUSH_ETH = 33, + FLOW_ACTION_VLAN_POP_ETH = 34, + FLOW_ACTION_CONTINUE = 35, + NUM_FLOW_ACTIONS = 36, +}; + +enum flow_action_mangle_base { + FLOW_ACT_MANGLE_UNSPEC = 0, + FLOW_ACT_MANGLE_HDR_TYPE_ETH = 1, + FLOW_ACT_MANGLE_HDR_TYPE_IP4 = 2, + FLOW_ACT_MANGLE_HDR_TYPE_IP6 = 3, + FLOW_ACT_MANGLE_HDR_TYPE_TCP = 4, + FLOW_ACT_MANGLE_HDR_TYPE_UDP = 5, +}; + +enum flow_action_hw_stats { + FLOW_ACTION_HW_STATS_IMMEDIATE = 1, + FLOW_ACTION_HW_STATS_DELAYED = 2, + FLOW_ACTION_HW_STATS_ANY = 3, + FLOW_ACTION_HW_STATS_DISABLED = 4, + FLOW_ACTION_HW_STATS_DONT_CARE = 7, +}; + +typedef void (*action_destr)(void *); + +struct flow_action_cookie { + u32 cookie_len; + u8 cookie[0]; +}; + +struct ip_tunnel_info; + +struct psample_group; + +struct nf_flowtable; + +struct action_gate_entry; + +struct flow_action_entry { + enum flow_action_id id; + u32 hw_index; + long unsigned int cookie; + u64 miss_cookie; + enum flow_action_hw_stats hw_stats; + action_destr destructor; + void *destructor_priv; + union { + u32 chain_index; + struct net_device *dev; + struct { + u16 vid; + __be16 proto; + u8 prio; + } vlan; + struct { + unsigned char dst[6]; + unsigned char src[6]; + } vlan_push_eth; + struct { + enum flow_action_mangle_base htype; + u32 offset; + u32 mask; + u32 val; + } mangle; + struct ip_tunnel_info *tunnel; + u32 csum_flags; + u32 mark; + u16 ptype; + u16 rx_queue; + u32 priority; + struct { + u32 ctx; + u32 index; + u8 vf; + } queue; + struct { + struct psample_group *psample_group; + u32 rate; + u32 trunc_size; + bool truncate; + } sample; + struct { + u32 burst; + u64 rate_bytes_ps; + u64 peakrate_bytes_ps; + u32 avrate; + u16 overhead; + u64 burst_pkt; + u64 rate_pkt_ps; + u32 mtu; + struct { + enum flow_action_id act_id; + u32 extval; + } exceed; + struct { + enum flow_action_id act_id; + u32 extval; + } notexceed; + } police; + struct { + int action; + u16 zone; + struct nf_flowtable *flow_table; + } ct; + struct { + long unsigned int cookie; + u32 mark; + u32 labels[4]; + bool orig_dir; + } ct_metadata; + struct { + u32 label; + __be16 proto; + u8 tc; + u8 bos; + u8 ttl; + } mpls_push; + struct { + __be16 proto; + } mpls_pop; + struct { + u32 label; + u8 tc; + u8 bos; + u8 ttl; + } mpls_mangle; + struct { + s32 prio; + u64 basetime; + u64 cycletime; + u64 cycletimeext; + u32 num_entries; + struct action_gate_entry *entries; + } gate; + struct { + u16 sid; + } pppoe; + }; + struct flow_action_cookie *user_cookie; +}; + +struct flow_action { + unsigned int num_entries; + struct flow_action_entry entries[0]; +}; + +struct flow_stats { + u64 pkts; + u64 bytes; + u64 drops; + u64 lastused; + enum flow_action_hw_stats used_hw_stats; + bool used_hw_stats_valid; +}; + +enum offload_act_command { + FLOW_ACT_REPLACE = 0, + FLOW_ACT_DESTROY = 1, + FLOW_ACT_STATS = 2, +}; + +struct flow_offload_action { + struct netlink_ext_ack *extack; + enum offload_act_command command; + enum flow_action_id id; + u32 index; + long unsigned int cookie; + struct flow_stats stats; + struct flow_action action; +}; + +struct tcf_walker { + int stop; + int skip; + int count; + bool nonempty; + long unsigned int cookie; + int (*fn)(struct tcf_proto *, void *, struct tcf_walker *); +}; + +struct tc_action; + +struct tcf_exts_miss_cookie_node; + +struct tcf_exts { + __u32 type; + int nr_actions; + struct tc_action **actions; + struct net *net; + netns_tracker ns_tracker; + struct tcf_exts_miss_cookie_node *miss_cookie_node; + int action; + int police; +}; + +struct qdisc_skb_cb { + struct { + unsigned int pkt_len; + u16 slave_dev_queue_mapping; + u16 tc_classid; + }; + unsigned char data[20]; +}; + +enum { + TCA_PEDIT_UNSPEC = 0, + TCA_PEDIT_TM = 1, + TCA_PEDIT_PARMS = 2, + TCA_PEDIT_PAD = 3, + TCA_PEDIT_PARMS_EX = 4, + TCA_PEDIT_KEYS_EX = 5, + TCA_PEDIT_KEY_EX = 6, + __TCA_PEDIT_MAX = 7, +}; + +enum { + TCA_PEDIT_KEY_EX_HTYPE = 1, + TCA_PEDIT_KEY_EX_CMD = 2, + __TCA_PEDIT_KEY_EX_MAX = 3, +}; + +enum pedit_header_type { + TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK = 0, + TCA_PEDIT_KEY_EX_HDR_TYPE_ETH = 1, + TCA_PEDIT_KEY_EX_HDR_TYPE_IP4 = 2, + TCA_PEDIT_KEY_EX_HDR_TYPE_IP6 = 3, + TCA_PEDIT_KEY_EX_HDR_TYPE_TCP = 4, + TCA_PEDIT_KEY_EX_HDR_TYPE_UDP = 5, + __PEDIT_HDR_TYPE_MAX = 6, +}; + +enum pedit_cmd { + TCA_PEDIT_KEY_EX_CMD_SET = 0, + TCA_PEDIT_KEY_EX_CMD_ADD = 1, + __PEDIT_CMD_MAX = 2, +}; + +struct tc_pedit_key { + __u32 mask; + __u32 val; + __u32 off; + __u32 at; + __u32 offmask; + __u32 shift; +}; + +struct tc_pedit_sel { + __u32 index; + __u32 capab; + int action; + int refcnt; + int bindcnt; + unsigned char nkeys; + unsigned char flags; + struct tc_pedit_key keys[0]; +}; + +struct tcf_idrinfo { + struct mutex lock; + struct idr action_idr; + struct net *net; +}; + +struct tc_action_ops; + +struct tc_cookie; + +struct tc_action { + const struct tc_action_ops *ops; + __u32 type; + struct tcf_idrinfo *idrinfo; + u32 tcfa_index; + refcount_t tcfa_refcnt; + atomic_t tcfa_bindcnt; + int tcfa_action; + struct tcf_t tcfa_tm; + long: 64; + struct gnet_stats_basic_sync tcfa_bstats; + struct gnet_stats_basic_sync tcfa_bstats_hw; + struct gnet_stats_queue tcfa_qstats; + struct net_rate_estimator *tcfa_rate_est; + spinlock_t tcfa_lock; + struct gnet_stats_basic_sync *cpu_bstats; + struct gnet_stats_basic_sync *cpu_bstats_hw; + struct gnet_stats_queue *cpu_qstats; + struct tc_cookie *user_cookie; + struct tcf_chain *goto_chain; + u32 tcfa_flags; + u8 hw_stats; + u8 used_hw_stats; + bool used_hw_stats_valid; + u32 in_hw_count; +}; + +typedef void (*tc_action_priv_destructor)(void *); + +struct tc_action_ops { + struct list_head head; + char kind[16]; + enum tca_id id; + unsigned int net_id; + size_t size; + struct module *owner; + int (*act)(struct sk_buff *, const struct tc_action *, struct tcf_result *); + int (*dump)(struct sk_buff *, struct tc_action *, int, int); + void (*cleanup)(struct tc_action *); + int (*lookup)(struct net *, struct tc_action **, u32); + int (*init)(struct net *, struct nlattr *, struct nlattr *, struct tc_action **, struct tcf_proto *, u32, struct netlink_ext_ack *); + int (*walk)(struct net *, struct sk_buff *, struct netlink_callback *, int, const struct tc_action_ops *, struct netlink_ext_ack *); + void (*stats_update)(struct tc_action *, u64, u64, u64, u64, bool); + size_t (*get_fill_size)(const struct tc_action *); + struct net_device * (*get_dev)(const struct tc_action *, tc_action_priv_destructor *); + struct psample_group * (*get_psample_group)(const struct tc_action *, tc_action_priv_destructor *); + int (*offload_act_setup)(struct tc_action *, void *, u32 *, bool, struct netlink_ext_ack *); +}; + +struct tc_cookie { + u8 *data; + u32 len; + struct callback_head rcu; +}; + +struct tc_action_net { + struct tcf_idrinfo *idrinfo; + const struct tc_action_ops *ops; +}; + +struct tcf_pedit_key_ex { + enum pedit_header_type htype; + enum pedit_cmd cmd; +}; + +struct tcf_pedit_parms { + struct tc_pedit_key *tcfp_keys; + struct tcf_pedit_key_ex *tcfp_keys_ex; + u32 tcfp_off_max_hint; + unsigned char tcfp_nkeys; + unsigned char tcfp_flags; + struct callback_head rcu; +}; + +struct tcf_pedit { + struct tc_action common; + struct tcf_pedit_parms *parms; + long: 64; +}; + +struct bpf_mprog_fp { + struct bpf_prog *prog; +}; + +struct bpf_mprog_bundle; + +struct bpf_mprog_entry { + struct bpf_mprog_fp fp_items[64]; + struct bpf_mprog_bundle *parent; +}; + +enum flow_block_binder_type { + FLOW_BLOCK_BINDER_TYPE_UNSPEC = 0, + FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS = 1, + FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS = 2, + FLOW_BLOCK_BINDER_TYPE_RED_EARLY_DROP = 3, + FLOW_BLOCK_BINDER_TYPE_RED_MARK = 4, +}; + +enum qdisc_class_ops_flags { + QDISC_CLASS_OPS_DOIT_UNLOCKED = 1, +}; + +typedef void tcf_chain_head_change_t(struct tcf_proto *, void *); + +struct mini_Qdisc { + struct tcf_proto *filter_list; + struct tcf_block *block; + struct gnet_stats_basic_sync *cpu_bstats; + struct gnet_stats_queue *cpu_qstats; + long unsigned int rcu_state; +}; + +struct mini_Qdisc_pair { + struct mini_Qdisc miniq1; + struct mini_Qdisc miniq2; + struct mini_Qdisc **p_miniq; +}; + +struct tcf_block_ext_info { + enum flow_block_binder_type binder_type; + tcf_chain_head_change_t *chain_head_change; + void *chain_head_change_priv; + u32 block_index; +}; + +struct bpf_mprog_cp { + struct bpf_link *link; +}; + +struct bpf_mprog_bundle { + struct bpf_mprog_entry a; + struct bpf_mprog_entry b; + struct bpf_mprog_cp cp_items[64]; + struct bpf_prog *ref; + atomic64_t revision; + u32 count; +}; + +struct tcx_entry { + struct mini_Qdisc *miniq; + struct bpf_mprog_bundle bundle; + u32 miniq_active; + struct callback_head rcu; +}; + +struct ingress_sched_data { + struct tcf_block *block; + struct tcf_block_ext_info block_info; + struct mini_Qdisc_pair miniqp; +}; + +struct clsact_sched_data { + struct tcf_block *ingress_block; + struct tcf_block *egress_block; + struct tcf_block_ext_info ingress_block_info; + struct tcf_block_ext_info egress_block_info; + struct mini_Qdisc_pair miniqp_ingress; + struct mini_Qdisc_pair miniqp_egress; +}; + +enum { + TCA_FW_UNSPEC = 0, + TCA_FW_CLASSID = 1, + TCA_FW_POLICE = 2, + TCA_FW_INDEV = 3, + TCA_FW_ACT = 4, + TCA_FW_MASK = 5, + __TCA_FW_MAX = 6, +}; + +struct fw_filter; + +struct fw_head { + u32 mask; + struct fw_filter *ht[256]; + struct callback_head rcu; +}; + +struct fw_filter { + struct fw_filter *next; + u32 id; + struct tcf_result res; + int ifindex; + struct tcf_exts exts; + struct tcf_proto *tp; + struct rcu_work rwork; +}; + +struct bpf_cgroup_storage_key { + __u64 cgroup_inode_id; + __u32 attach_type; +}; + +struct bpf_flow_keys { + __u16 nhoff; + __u16 thoff; + __u16 addr_proto; + __u8 is_frag; + __u8 is_first_frag; + __u8 is_encap; + __u8 ip_proto; + __be16 n_proto; + __be16 sport; + __be16 dport; + union { + struct { + __be32 ipv4_src; + __be32 ipv4_dst; + }; + struct { + __u32 ipv6_src[4]; + __u32 ipv6_dst[4]; + }; + }; + __u32 flags; + __be32 flow_label; +}; + +struct bpf_sock { + __u32 bound_dev_if; + __u32 family; + __u32 type; + __u32 protocol; + __u32 mark; + __u32 priority; + __u32 src_ip4; + __u32 src_ip6[4]; + __u32 src_port; + __be16 dst_port; + __u32 dst_ip4; + __u32 dst_ip6[4]; + __u32 state; + __s32 rx_queue_mapping; +}; + +struct __sk_buff { + __u32 len; + __u32 pkt_type; + __u32 mark; + __u32 queue_mapping; + __u32 protocol; + __u32 vlan_present; + __u32 vlan_tci; + __u32 vlan_proto; + __u32 priority; + __u32 ingress_ifindex; + __u32 ifindex; + __u32 tc_index; + __u32 cb[5]; + __u32 hash; + __u32 tc_classid; + __u32 data; + __u32 data_end; + __u32 napi_id; + __u32 family; + __u32 remote_ip4; + __u32 local_ip4; + __u32 remote_ip6[4]; + __u32 local_ip6[4]; + __u32 remote_port; + __u32 local_port; + __u32 data_meta; + union { + struct bpf_flow_keys *flow_keys; + }; + __u64 tstamp; + __u32 wire_len; + __u32 gso_segs; + union { + struct bpf_sock *sk; + }; + __u32 gso_size; + __u8 tstamp_type; + __u64 hwtstamp; +}; + +enum xdp_action { + XDP_ABORTED = 0, + XDP_DROP = 1, + XDP_PASS = 2, + XDP_TX = 3, + XDP_REDIRECT = 4, +}; + +enum sk_action { + SK_DROP = 0, + SK_PASS = 1, +}; + +struct bpf_sk_lookup { + union { + union { + struct bpf_sock *sk; + }; + __u64 cookie; + }; + __u32 family; + __u32 protocol; + __u32 remote_ip4; + __u32 remote_ip6[4]; + __be16 remote_port; + __u32 local_ip4; + __u32 local_ip6[4]; + __u32 local_port; + __u32 ingress_ifindex; +}; + +typedef sockptr_t bpfptr_t; + +struct btf_id_dtor_kfunc { + u32 btf_id; + u32 kfunc_btf_id; +}; + +typedef unsigned int (*bpf_func_t)(const void *, const struct bpf_insn *); + +struct bpf_storage_buffer; + +struct bpf_cgroup_storage_map; + +struct bpf_cgroup_storage { + union { + struct bpf_storage_buffer *buf; + void *percpu_buf; + }; + struct bpf_cgroup_storage_map *map; + struct bpf_cgroup_storage_key key; + struct list_head list_map; + struct list_head list_cg; + struct rb_node node; + struct callback_head rcu; +}; + +struct bpf_cg_run_ctx { + struct bpf_run_ctx run_ctx; + const struct bpf_prog_array_item *prog_item; + int retval; +}; + +struct bpf_trace_run_ctx { + struct bpf_run_ctx run_ctx; + u64 bpf_cookie; + bool is_uprobe; +}; + +struct ethhdr { + unsigned char h_dest[6]; + unsigned char h_source[6]; + __be16 h_proto; +}; + +struct bpf_flow_dissector { + struct bpf_flow_keys *flow_keys; + const struct sk_buff *skb; + const void *data; + const void *data_end; +}; + +struct inet_ehash_bucket; + +struct inet_bind_hashbucket; + +struct inet_listen_hashbucket; + +struct inet_hashinfo { + struct inet_ehash_bucket *ehash; + spinlock_t *ehash_locks; + unsigned int ehash_mask; + unsigned int ehash_locks_mask; + struct kmem_cache *bind_bucket_cachep; + struct inet_bind_hashbucket *bhash; + struct kmem_cache *bind2_bucket_cachep; + struct inet_bind_hashbucket *bhash2; + unsigned int bhash_size; + unsigned int lhash2_mask; + struct inet_listen_hashbucket *lhash2; + bool pernet; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct tcp_fastopen_context { + siphash_key_t key[2]; + int num; + struct callback_head rcu; +}; + +enum nf_inet_hooks { + NF_INET_PRE_ROUTING = 0, + NF_INET_LOCAL_IN = 1, + NF_INET_FORWARD = 2, + NF_INET_LOCAL_OUT = 3, + NF_INET_POST_ROUTING = 4, + NF_INET_NUMHOOKS = 5, + NF_INET_INGRESS = 5, +}; + +enum { + NFPROTO_UNSPEC = 0, + NFPROTO_INET = 1, + NFPROTO_IPV4 = 2, + NFPROTO_ARP = 3, + NFPROTO_NETDEV = 5, + NFPROTO_BRIDGE = 7, + NFPROTO_IPV6 = 10, + NFPROTO_NUMPROTO = 11, +}; + +typedef union { + __be32 a4; + __be32 a6[4]; + struct in6_addr in6; +} xfrm_address_t; + +struct xfrm_id { + xfrm_address_t daddr; + __be32 spi; + __u8 proto; +}; + +struct xfrm_sec_ctx { + __u8 ctx_doi; + __u8 ctx_alg; + __u16 ctx_len; + __u32 ctx_sid; + char ctx_str[0]; +}; + +struct xfrm_selector { + xfrm_address_t daddr; + xfrm_address_t saddr; + __be16 dport; + __be16 dport_mask; + __be16 sport; + __be16 sport_mask; + __u16 family; + __u8 prefixlen_d; + __u8 prefixlen_s; + __u8 proto; + int ifindex; + __kernel_uid32_t user; +}; + +struct xfrm_lifetime_cfg { + __u64 soft_byte_limit; + __u64 hard_byte_limit; + __u64 soft_packet_limit; + __u64 hard_packet_limit; + __u64 soft_add_expires_seconds; + __u64 hard_add_expires_seconds; + __u64 soft_use_expires_seconds; + __u64 hard_use_expires_seconds; +}; + +struct xfrm_lifetime_cur { + __u64 bytes; + __u64 packets; + __u64 add_time; + __u64 use_time; +}; + +struct xfrm_replay_state { + __u32 oseq; + __u32 seq; + __u32 bitmap; +}; + +struct xfrm_replay_state_esn { + unsigned int bmp_len; + __u32 oseq; + __u32 seq; + __u32 oseq_hi; + __u32 seq_hi; + __u32 replay_window; + __u32 bmp[0]; +}; + +struct xfrm_algo { + char alg_name[64]; + unsigned int alg_key_len; + char alg_key[0]; +}; + +struct xfrm_algo_auth { + char alg_name[64]; + unsigned int alg_key_len; + unsigned int alg_trunc_len; + char alg_key[0]; +}; + +struct xfrm_algo_aead { + char alg_name[64]; + unsigned int alg_key_len; + unsigned int alg_icv_len; + char alg_key[0]; +}; + +struct xfrm_stats { + __u32 replay_window; + __u32 replay; + __u32 integrity_failed; +}; + +enum { + XFRM_POLICY_TYPE_MAIN = 0, + XFRM_POLICY_TYPE_SUB = 1, + XFRM_POLICY_TYPE_MAX = 2, + XFRM_POLICY_TYPE_ANY = 255, +}; + +enum { + XFRM_MSG_BASE = 16, + XFRM_MSG_NEWSA = 16, + XFRM_MSG_DELSA = 17, + XFRM_MSG_GETSA = 18, + XFRM_MSG_NEWPOLICY = 19, + XFRM_MSG_DELPOLICY = 20, + XFRM_MSG_GETPOLICY = 21, + XFRM_MSG_ALLOCSPI = 22, + XFRM_MSG_ACQUIRE = 23, + XFRM_MSG_EXPIRE = 24, + XFRM_MSG_UPDPOLICY = 25, + XFRM_MSG_UPDSA = 26, + XFRM_MSG_POLEXPIRE = 27, + XFRM_MSG_FLUSHSA = 28, + XFRM_MSG_FLUSHPOLICY = 29, + XFRM_MSG_NEWAE = 30, + XFRM_MSG_GETAE = 31, + XFRM_MSG_REPORT = 32, + XFRM_MSG_MIGRATE = 33, + XFRM_MSG_NEWSADINFO = 34, + XFRM_MSG_GETSADINFO = 35, + XFRM_MSG_NEWSPDINFO = 36, + XFRM_MSG_GETSPDINFO = 37, + XFRM_MSG_MAPPING = 38, + XFRM_MSG_SETDEFAULT = 39, + XFRM_MSG_GETDEFAULT = 40, + __XFRM_MSG_MAX = 41, +}; + +struct xfrm_encap_tmpl { + __u16 encap_type; + __be16 encap_sport; + __be16 encap_dport; + xfrm_address_t encap_oa; +}; + +enum xfrm_attr_type_t { + XFRMA_UNSPEC = 0, + XFRMA_ALG_AUTH = 1, + XFRMA_ALG_CRYPT = 2, + XFRMA_ALG_COMP = 3, + XFRMA_ENCAP = 4, + XFRMA_TMPL = 5, + XFRMA_SA = 6, + XFRMA_POLICY = 7, + XFRMA_SEC_CTX = 8, + XFRMA_LTIME_VAL = 9, + XFRMA_REPLAY_VAL = 10, + XFRMA_REPLAY_THRESH = 11, + XFRMA_ETIMER_THRESH = 12, + XFRMA_SRCADDR = 13, + XFRMA_COADDR = 14, + XFRMA_LASTUSED = 15, + XFRMA_POLICY_TYPE = 16, + XFRMA_MIGRATE = 17, + XFRMA_ALG_AEAD = 18, + XFRMA_KMADDRESS = 19, + XFRMA_ALG_AUTH_TRUNC = 20, + XFRMA_MARK = 21, + XFRMA_TFCPAD = 22, + XFRMA_REPLAY_ESN_VAL = 23, + XFRMA_SA_EXTRA_FLAGS = 24, + XFRMA_PROTO = 25, + XFRMA_ADDRESS_FILTER = 26, + XFRMA_PAD = 27, + XFRMA_OFFLOAD_DEV = 28, + XFRMA_SET_MARK = 29, + XFRMA_SET_MARK_MASK = 30, + XFRMA_IF_ID = 31, + XFRMA_MTIMER_THRESH = 32, + XFRMA_SA_DIR = 33, + XFRMA_NAT_KEEPALIVE_INTERVAL = 34, + XFRMA_SA_PCPU = 35, + __XFRMA_MAX = 36, +}; + +struct xfrm_mark { + __u32 v; + __u32 m; +}; + +struct xfrm_address_filter { + xfrm_address_t saddr; + xfrm_address_t daddr; + __u16 family; + __u8 splen; + __u8 dplen; +}; + +struct offload_callbacks { + struct sk_buff * (*gso_segment)(struct sk_buff *, netdev_features_t); + struct sk_buff * (*gro_receive)(struct list_head *, struct sk_buff *); + int (*gro_complete)(struct sk_buff *, int); +}; + +struct packet_offload { + __be16 type; + u16 priority; + struct offload_callbacks callbacks; + struct list_head list; +}; + +typedef unsigned int (*bpf_dispatcher_fn)(const void *, const struct bpf_insn *, unsigned int (*)(const void *, const struct bpf_insn *)); + +struct bpf_skb_data_end { + struct qdisc_skb_cb qdisc_cb; + void *data_meta; + void *data_end; +}; + +struct bpf_sk_lookup_kern { + u16 family; + u16 protocol; + __be16 sport; + u16 dport; + struct { + __be32 saddr; + __be32 daddr; + } v4; + struct { + const struct in6_addr *saddr; + const struct in6_addr *daddr; + } v6; + struct sock *selected_sk; + u32 ingress_ifindex; + bool no_reuseport; +}; + +struct xfrm_state_walk { + struct list_head all; + u8 state; + u8 dying; + u8 proto; + u32 seq; + struct xfrm_address_filter *filter; +}; + +enum xfrm_replay_mode { + XFRM_REPLAY_MODE_LEGACY = 0, + XFRM_REPLAY_MODE_BMP = 1, + XFRM_REPLAY_MODE_ESN = 2, +}; + +struct xfrm_dev_offload { + struct net_device *dev; + netdevice_tracker dev_tracker; + struct net_device *real_dev; + long unsigned int offload_handle; + u8 dir: 2; + u8 type: 2; + u8 flags: 2; +}; + +struct xfrm_mode { + u8 encap; + u8 family; + u8 flags; +}; + +struct xfrm_type; + +struct xfrm_type_offload; + +struct xfrm_state { + possible_net_t xs_net; + union { + struct hlist_node gclist; + struct hlist_node bydst; + }; + union { + struct hlist_node dev_gclist; + struct hlist_node bysrc; + }; + struct hlist_node byspi; + struct hlist_node byseq; + struct hlist_node state_cache; + struct hlist_node state_cache_input; + refcount_t refcnt; + spinlock_t lock; + u32 pcpu_num; + struct xfrm_id id; + struct xfrm_selector sel; + struct xfrm_mark mark; + u32 if_id; + u32 tfcpad; + u32 genid; + struct xfrm_state_walk km; + struct { + u32 reqid; + u8 mode; + u8 replay_window; + u8 aalgo; + u8 ealgo; + u8 calgo; + u8 flags; + u16 family; + xfrm_address_t saddr; + int header_len; + int trailer_len; + u32 extra_flags; + struct xfrm_mark smark; + } props; + struct xfrm_lifetime_cfg lft; + struct xfrm_algo_auth *aalg; + struct xfrm_algo *ealg; + struct xfrm_algo *calg; + struct xfrm_algo_aead *aead; + const char *geniv; + __be16 new_mapping_sport; + u32 new_mapping; + u32 mapping_maxage; + struct xfrm_encap_tmpl *encap; + u32 nat_keepalive_interval; + time64_t nat_keepalive_expiration; + xfrm_address_t *coaddr; + struct xfrm_state *tunnel; + atomic_t tunnel_users; + struct xfrm_replay_state replay; + struct xfrm_replay_state_esn *replay_esn; + struct xfrm_replay_state preplay; + struct xfrm_replay_state_esn *preplay_esn; + enum xfrm_replay_mode repl_mode; + u32 xflags; + u32 replay_maxage; + u32 replay_maxdiff; + struct timer_list rtimer; + struct xfrm_stats stats; + struct xfrm_lifetime_cur curlft; + struct hrtimer mtimer; + struct xfrm_dev_offload xso; + long int saved_tmo; + time64_t lastused; + struct page_frag xfrag; + const struct xfrm_type *type; + struct xfrm_mode inner_mode; + struct xfrm_mode inner_mode_iaf; + struct xfrm_mode outer_mode; + const struct xfrm_type_offload *type_offload; + struct xfrm_sec_ctx *security; + void *data; + u8 dir; +}; + +struct xfrm_policy_walk_entry { + struct list_head all; + u8 dead; +}; + +struct xfrm_policy_queue { + struct sk_buff_head hold_queue; + struct timer_list hold_timer; + long unsigned int timeout; +}; + +struct xfrm_tmpl { + struct xfrm_id id; + xfrm_address_t saddr; + short unsigned int encap_family; + u32 reqid; + u8 mode; + u8 share; + u8 optional; + u8 allalgs; + u32 aalgos; + u32 ealgos; + u32 calgos; +}; + +struct xfrm_policy { + possible_net_t xp_net; + struct hlist_node bydst; + struct hlist_node byidx; + struct hlist_head state_cache_list; + rwlock_t lock; + refcount_t refcnt; + u32 pos; + struct timer_list timer; + atomic_t genid; + u32 priority; + u32 index; + u32 if_id; + struct xfrm_mark mark; + struct xfrm_selector selector; + struct xfrm_lifetime_cfg lft; + struct xfrm_lifetime_cur curlft; + struct xfrm_policy_walk_entry walk; + struct xfrm_policy_queue polq; + bool bydst_reinsert; + u8 type; + u8 action; + u8 flags; + u8 xfrm_nr; + u16 family; + struct xfrm_sec_ctx *security; + struct xfrm_tmpl xfrm_vec[6]; + struct callback_head rcu; + struct xfrm_dev_offload xdo; +}; + +struct sock_reuseport { + struct callback_head rcu; + u16 max_socks; + u16 num_socks; + u16 num_closed_socks; + u16 incoming_cpu; + unsigned int synq_overflow_ts; + unsigned int reuseport_id; + unsigned int bind_inany: 1; + unsigned int has_conns: 1; + struct bpf_prog *prog; + struct sock *socks[0]; +}; + +struct inet6_skb_parm { + int iif; + __be16 ra; + __u16 dst0; + __u16 srcrt; + __u16 dst1; + __u16 lastopt; + __u16 nhoff; + __u16 flags; + __u16 dsthao; + __u16 frag_max_size; + __u16 srhoff; +}; + +struct net_protocol { + int (*handler)(struct sk_buff *); + int (*err_handler)(struct sk_buff *, u32); + unsigned int no_policy: 1; + unsigned int icmp_strict_tag_validation: 1; + u32 secret; +}; + +struct inet6_protocol { + int (*handler)(struct sk_buff *); + int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); + unsigned int flags; + u32 secret; +}; + +struct net_offload { + struct offload_callbacks callbacks; + unsigned int flags; + u32 secret; +}; + +struct rps_sock_flow_table; + +struct net_hotdata { + struct packet_offload ip_packet_offload; + struct net_offload tcpv4_offload; + struct net_protocol tcp_protocol; + struct net_offload udpv4_offload; + struct net_protocol udp_protocol; + struct packet_offload ipv6_packet_offload; + struct net_offload tcpv6_offload; + struct inet6_protocol tcpv6_protocol; + struct inet6_protocol udpv6_protocol; + struct net_offload udpv6_offload; + struct list_head offload_base; + struct list_head ptype_all; + struct kmem_cache *skbuff_cache; + struct kmem_cache *skbuff_fclone_cache; + struct kmem_cache *skb_small_head_cache; + struct rps_sock_flow_table *rps_sock_flow_table; + u32 rps_cpu_mask; + int gro_normal_batch; + int netdev_budget; + int netdev_budget_usecs; + int tstamp_prequeue; + int max_backlog; + int dev_tx_weight; + int dev_rx_weight; + int sysctl_max_skb_frags; + int sysctl_skb_defer_max; + int sysctl_mem_pcpu_rsv; +}; + +struct inet_ehash_bucket { + struct hlist_nulls_head chain; +}; + +struct inet_bind_hashbucket { + spinlock_t lock; + struct hlist_head chain; +}; + +struct inet_listen_hashbucket { + spinlock_t lock; + struct hlist_nulls_head nulls_head; +}; + +struct xfrm_type { + struct module *owner; + u8 proto; + u8 flags; + int (*init_state)(struct xfrm_state *, struct netlink_ext_ack *); + void (*destructor)(struct xfrm_state *); + int (*input)(struct xfrm_state *, struct sk_buff *); + int (*output)(struct xfrm_state *, struct sk_buff *); + int (*reject)(struct xfrm_state *, struct sk_buff *, const struct flowi *); +}; + +struct xfrm_type_offload { + struct module *owner; + u8 proto; + void (*encap)(struct xfrm_state *, struct sk_buff *); + int (*input_tail)(struct xfrm_state *, struct sk_buff *); + int (*xmit)(struct xfrm_state *, struct sk_buff *, netdev_features_t); +}; + +struct bpf_storage_buffer { + struct callback_head rcu; + char data[0]; +}; + +struct ack_sample { + u32 pkts_acked; + s32 rtt_us; + u32 in_flight; +}; + +struct rate_sample { + u64 prior_mstamp; + u32 prior_delivered; + u32 prior_delivered_ce; + s32 delivered; + s32 delivered_ce; + long int interval_us; + u32 snd_interval_us; + u32 rcv_interval_us; + long int rtt_us; + int losses; + u32 acked_sacked; + u32 prior_in_flight; + u32 last_end_seq; + bool is_app_limited; + bool is_retrans; + bool is_ack_delayed; +}; + +struct page_pool_params { + union { + struct { + unsigned int order; + unsigned int pool_size; + int nid; + struct device *dev; + struct napi_struct *napi; + enum dma_data_direction dma_dir; + unsigned int max_len; + unsigned int offset; + }; + struct page_pool_params_fast fast; + }; + union { + struct { + struct net_device *netdev; + unsigned int queue_idx; + unsigned int flags; + void (*init_callback)(netmem_ref, void *); + void *init_arg; + }; + struct page_pool_params_slow slow; + }; +}; + +enum xdp_mem_type { + MEM_TYPE_PAGE_SHARED = 0, + MEM_TYPE_PAGE_ORDER0 = 1, + MEM_TYPE_PAGE_POOL = 2, + MEM_TYPE_XSK_BUFF_POOL = 3, + MEM_TYPE_MAX = 4, +}; + +enum xdp_buff_flags { + XDP_FLAGS_HAS_FRAGS = 1, + XDP_FLAGS_FRAGS_PF_MEMALLOC = 2, +}; + +struct bpf_nf_ctx { + const struct nf_hook_state *state; + struct sk_buff *skb; +}; + +struct trace_event_raw_bpf_trigger_tp { + struct trace_entry ent; + int nonce; + char __data[0]; +}; + +struct trace_event_raw_bpf_test_finish { + struct trace_entry ent; + int err; + char __data[0]; +}; + +struct trace_event_data_offsets_bpf_trigger_tp {}; + +struct trace_event_data_offsets_bpf_test_finish {}; + +typedef void (*btf_trace_bpf_trigger_tp)(void *, int); + +typedef void (*btf_trace_bpf_test_finish)(void *, int *); + +struct bpf_test_timer { + enum { + NO_PREEMPT = 0, + NO_MIGRATE = 1, + } mode; + u32 i; + u64 time_start; + u64 time_spent; +}; + +struct xdp_page_head { + struct xdp_buff orig_ctx; + struct xdp_buff ctx; + union { + struct { + struct {} __empty_frame; + struct xdp_frame frame[0]; + }; + struct { + struct {} __empty_data; + u8 data[0]; + }; + }; +}; + +struct xdp_test_data { + struct xdp_buff *orig_ctx; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct xdp_rxq_info rxq; + struct net_device *dev; + struct page_pool *pp; + struct xdp_frame **frames; + struct sk_buff **skbs; + struct xdp_mem_info mem; + u32 batch_size; + u32 frame_cnt; + long: 64; + long: 64; +}; + +struct bpf_fentry_test_t { + struct bpf_fentry_test_t *a; +}; + +struct prog_test_member1 { + int a; +}; + +struct prog_test_member { + struct prog_test_member1 m; + int c; +}; + +struct prog_test_ref_kfunc { + int a; + int b; + struct prog_test_member memb; + struct prog_test_ref_kfunc *next; + refcount_t cnt; +}; + +struct bpf_raw_tp_test_run_info { + struct bpf_prog *prog; + void *ctx; + u32 retval; +}; + +typedef u32 u_int32_t; + +struct nf_bridge_info { + enum { + BRNF_PROTO_UNCHANGED = 0, + BRNF_PROTO_8021Q = 1, + BRNF_PROTO_PPPOE = 2, + } orig_proto: 8; + u8 pkt_otherhost: 1; + u8 in_prerouting: 1; + u8 bridged_dnat: 1; + u8 sabotage_in_done: 1; + __u16 frag_max_size; + int physinif; + struct net_device *physoutdev; + union { + __be32 ipv4_daddr; + struct in6_addr ipv6_daddr; + char neigh_header[8]; + }; +}; + +struct ip_rt_info { + __be32 daddr; + __be32 saddr; + u_int8_t tos; + u_int32_t mark; +}; + +enum { + TCPF_ESTABLISHED = 2, + TCPF_SYN_SENT = 4, + TCPF_SYN_RECV = 8, + TCPF_FIN_WAIT1 = 16, + TCPF_FIN_WAIT2 = 32, + TCPF_TIME_WAIT = 64, + TCPF_CLOSE = 128, + TCPF_CLOSE_WAIT = 256, + TCPF_LAST_ACK = 512, + TCPF_LISTEN = 1024, + TCPF_CLOSING = 2048, + TCPF_NEW_SYN_RECV = 4096, + TCPF_BOUND_INACTIVE = 8192, +}; + +enum sock_flags { + SOCK_DEAD = 0, + SOCK_DONE = 1, + SOCK_URGINLINE = 2, + SOCK_KEEPOPEN = 3, + SOCK_LINGER = 4, + SOCK_DESTROY = 5, + SOCK_BROADCAST = 6, + SOCK_TIMESTAMP = 7, + SOCK_ZAPPED = 8, + SOCK_USE_WRITE_QUEUE = 9, + SOCK_DBG = 10, + SOCK_RCVTSTAMP = 11, + SOCK_RCVTSTAMPNS = 12, + SOCK_LOCALROUTE = 13, + SOCK_MEMALLOC = 14, + SOCK_TIMESTAMPING_RX_SOFTWARE = 15, + SOCK_FASYNC = 16, + SOCK_RXQ_OVFL = 17, + SOCK_ZEROCOPY = 18, + SOCK_WIFI_STATUS = 19, + SOCK_NOFCS = 20, + SOCK_FILTER_LOCKED = 21, + SOCK_SELECT_ERR_QUEUE = 22, + SOCK_RCU_FREE = 23, + SOCK_TXTIME = 24, + SOCK_XDP = 25, + SOCK_TSTAMP_NEW = 26, + SOCK_RCVMARK = 27, +}; + +struct ip6_rt_info { + struct in6_addr daddr; + struct in6_addr saddr; + u_int32_t mark; +}; + +struct nf_queue_entry { + struct list_head list; + struct sk_buff *skb; + unsigned int id; + unsigned int hook_index; + struct net_device *physin; + struct net_device *physout; + struct nf_hook_state state; + u16 size; +}; + +enum l2tp_debug_flags { + L2TP_MSG_DEBUG = 1, + L2TP_MSG_CONTROL = 2, + L2TP_MSG_SEQ = 4, + L2TP_MSG_DATA = 8, +}; + +struct nf_queue_handler { + int (*outfn)(struct nf_queue_entry *, unsigned int); + void (*nf_hook_drop)(struct net *); +}; + +typedef u16 u_int16_t; + +typedef u64 u_int64_t; + +enum ip_conntrack_info { + IP_CT_ESTABLISHED = 0, + IP_CT_RELATED = 1, + IP_CT_NEW = 2, + IP_CT_IS_REPLY = 3, + IP_CT_ESTABLISHED_REPLY = 3, + IP_CT_RELATED_REPLY = 4, + IP_CT_NUMBER = 5, + IP_CT_UNTRACKED = 7, +}; + +enum ip_conntrack_status { + IPS_EXPECTED_BIT = 0, + IPS_EXPECTED = 1, + IPS_SEEN_REPLY_BIT = 1, + IPS_SEEN_REPLY = 2, + IPS_ASSURED_BIT = 2, + IPS_ASSURED = 4, + IPS_CONFIRMED_BIT = 3, + IPS_CONFIRMED = 8, + IPS_SRC_NAT_BIT = 4, + IPS_SRC_NAT = 16, + IPS_DST_NAT_BIT = 5, + IPS_DST_NAT = 32, + IPS_NAT_MASK = 48, + IPS_SEQ_ADJUST_BIT = 6, + IPS_SEQ_ADJUST = 64, + IPS_SRC_NAT_DONE_BIT = 7, + IPS_SRC_NAT_DONE = 128, + IPS_DST_NAT_DONE_BIT = 8, + IPS_DST_NAT_DONE = 256, + IPS_NAT_DONE_MASK = 384, + IPS_DYING_BIT = 9, + IPS_DYING = 512, + IPS_FIXED_TIMEOUT_BIT = 10, + IPS_FIXED_TIMEOUT = 1024, + IPS_TEMPLATE_BIT = 11, + IPS_TEMPLATE = 2048, + IPS_UNTRACKED_BIT = 12, + IPS_UNTRACKED = 4096, + IPS_NAT_CLASH_BIT = 12, + IPS_NAT_CLASH = 4096, + IPS_HELPER_BIT = 13, + IPS_HELPER = 8192, + IPS_OFFLOAD_BIT = 14, + IPS_OFFLOAD = 16384, + IPS_HW_OFFLOAD_BIT = 15, + IPS_HW_OFFLOAD = 32768, + IPS_UNCHANGEABLE_MASK = 56313, + __IPS_MAX_BIT = 16, +}; + +struct nf_conntrack { + refcount_t use; +}; + +union nf_inet_addr { + __u32 all[4]; + __be32 ip; + __be32 ip6[4]; + struct in_addr in; + struct in6_addr in6; +}; + +struct ip_ct_tcp_state { + u_int32_t td_end; + u_int32_t td_maxend; + u_int32_t td_maxwin; + u_int32_t td_maxack; + u_int8_t td_scale; + u_int8_t flags; +}; + +struct ip_ct_tcp { + struct ip_ct_tcp_state seen[2]; + u_int8_t state; + u_int8_t last_dir; + u_int8_t retrans; + u_int8_t last_index; + u_int32_t last_seq; + u_int32_t last_ack; + u_int32_t last_end; + u_int16_t last_win; + u_int8_t last_wscale; + u_int8_t last_flags; +}; + +enum ip_conntrack_dir { + IP_CT_DIR_ORIGINAL = 0, + IP_CT_DIR_REPLY = 1, + IP_CT_DIR_MAX = 2, +}; + +union nf_conntrack_man_proto { + __be16 all; + struct { + __be16 port; + } tcp; + struct { + __be16 port; + } udp; + struct { + __be16 id; + } icmp; + struct { + __be16 port; + } dccp; + struct { + __be16 port; + } sctp; + struct { + __be16 key; + } gre; +}; + +struct nf_ct_dccp { + u_int8_t role[2]; + u_int8_t state; + u_int8_t last_pkt; + u_int8_t last_dir; + u_int64_t handshake_seq; +}; + +enum sctp_conntrack { + SCTP_CONNTRACK_NONE = 0, + SCTP_CONNTRACK_CLOSED = 1, + SCTP_CONNTRACK_COOKIE_WAIT = 2, + SCTP_CONNTRACK_COOKIE_ECHOED = 3, + SCTP_CONNTRACK_ESTABLISHED = 4, + SCTP_CONNTRACK_SHUTDOWN_SENT = 5, + SCTP_CONNTRACK_SHUTDOWN_RECD = 6, + SCTP_CONNTRACK_SHUTDOWN_ACK_SENT = 7, + SCTP_CONNTRACK_HEARTBEAT_SENT = 8, + SCTP_CONNTRACK_HEARTBEAT_ACKED = 9, + SCTP_CONNTRACK_MAX = 10, +}; + +struct ip_ct_sctp { + enum sctp_conntrack state; + __be32 vtag[2]; + u8 init[2]; + u8 last_dir; + u8 flags; +}; + +struct nf_conntrack_zone { + u16 id; + u8 flags; + u8 dir; +}; + +struct nf_conntrack_man { + union nf_inet_addr u3; + union nf_conntrack_man_proto u; + u_int16_t l3num; +}; + +struct nf_conntrack_tuple { + struct nf_conntrack_man src; + struct { + union nf_inet_addr u3; + union { + __be16 all; + struct { + __be16 port; + } tcp; + struct { + __be16 port; + } udp; + struct { + u_int8_t type; + u_int8_t code; + } icmp; + struct { + __be16 port; + } dccp; + struct { + __be16 port; + } sctp; + struct { + __be16 key; + } gre; + } u; + u_int8_t protonum; + struct {} __nfct_hash_offsetend; + u_int8_t dir; + } dst; +}; + +struct nf_conntrack_tuple_hash { + struct hlist_nulls_node hnnode; + struct nf_conntrack_tuple tuple; +}; + +struct nf_ct_udp { + long unsigned int stream_ts; +}; + +struct nf_ct_gre { + unsigned int stream_timeout; + unsigned int timeout; +}; + +union nf_conntrack_proto { + struct nf_ct_dccp dccp; + struct ip_ct_sctp sctp; + struct ip_ct_tcp tcp; + struct nf_ct_udp udp; + struct nf_ct_gre gre; + unsigned int tmpl_padto; +}; + +struct nf_ct_ext; + +struct nf_conn { + struct nf_conntrack ct_general; + spinlock_t lock; + u32 timeout; + struct nf_conntrack_zone zone; + struct nf_conntrack_tuple_hash tuplehash[2]; + long unsigned int status; + possible_net_t ct_net; + struct hlist_node nat_bysource; + struct {} __nfct_init_offset; + struct nf_conn *master; + u_int32_t mark; + struct nf_ct_ext *ext; + union nf_conntrack_proto proto; +}; + +struct tcp_sack_block_wire { + __be32 start_seq; + __be32 end_seq; +}; + +struct nf_ct_ext { + u8 offset[9]; + u8 len; + unsigned int gen_id; + char data[0]; +}; + +enum nf_ct_ext_id { + NF_CT_EXT_HELPER = 0, + NF_CT_EXT_NAT = 1, + NF_CT_EXT_SEQADJ = 2, + NF_CT_EXT_ACCT = 3, + NF_CT_EXT_ECACHE = 4, + NF_CT_EXT_TSTAMP = 5, + NF_CT_EXT_TIMEOUT = 6, + NF_CT_EXT_LABELS = 7, + NF_CT_EXT_SYNPROXY = 8, + NF_CT_EXT_NUM = 9, +}; + +struct nf_ct_seqadj { + u32 correction_pos; + s32 offset_before; + s32 offset_after; +}; + +struct nf_conn_seqadj { + struct nf_ct_seqadj seq[2]; +}; + +enum netdev_cmd { + NETDEV_UP = 1, + NETDEV_DOWN = 2, + NETDEV_REBOOT = 3, + NETDEV_CHANGE = 4, + NETDEV_REGISTER = 5, + NETDEV_UNREGISTER = 6, + NETDEV_CHANGEMTU = 7, + NETDEV_CHANGEADDR = 8, + NETDEV_PRE_CHANGEADDR = 9, + NETDEV_GOING_DOWN = 10, + NETDEV_CHANGENAME = 11, + NETDEV_FEAT_CHANGE = 12, + NETDEV_BONDING_FAILOVER = 13, + NETDEV_PRE_UP = 14, + NETDEV_PRE_TYPE_CHANGE = 15, + NETDEV_POST_TYPE_CHANGE = 16, + NETDEV_POST_INIT = 17, + NETDEV_PRE_UNINIT = 18, + NETDEV_RELEASE = 19, + NETDEV_NOTIFY_PEERS = 20, + NETDEV_JOIN = 21, + NETDEV_CHANGEUPPER = 22, + NETDEV_RESEND_IGMP = 23, + NETDEV_PRECHANGEMTU = 24, + NETDEV_CHANGEINFODATA = 25, + NETDEV_BONDING_INFO = 26, + NETDEV_PRECHANGEUPPER = 27, + NETDEV_CHANGELOWERSTATE = 28, + NETDEV_UDP_TUNNEL_PUSH_INFO = 29, + NETDEV_UDP_TUNNEL_DROP_INFO = 30, + NETDEV_CHANGE_TX_QUEUE_LEN = 31, + NETDEV_CVLAN_FILTER_PUSH_INFO = 32, + NETDEV_CVLAN_FILTER_DROP_INFO = 33, + NETDEV_SVLAN_FILTER_PUSH_INFO = 34, + NETDEV_SVLAN_FILTER_DROP_INFO = 35, + NETDEV_OFFLOAD_XSTATS_ENABLE = 36, + NETDEV_OFFLOAD_XSTATS_DISABLE = 37, + NETDEV_OFFLOAD_XSTATS_REPORT_USED = 38, + NETDEV_OFFLOAD_XSTATS_REPORT_DELTA = 39, + NETDEV_XDP_FEAT_CHANGE = 40, +}; + +struct netdev_notifier_info { + struct net_device *dev; + struct netlink_ext_ack *extack; +}; + +enum rt_scope_t { + RT_SCOPE_UNIVERSE = 0, + RT_SCOPE_SITE = 200, + RT_SCOPE_LINK = 253, + RT_SCOPE_HOST = 254, + RT_SCOPE_NOWHERE = 255, +}; + +enum nf_nat_manip_type { + NF_NAT_MANIP_SRC = 0, + NF_NAT_MANIP_DST = 1, +}; + +struct inet6_ifaddr { + struct in6_addr addr; + __u32 prefix_len; + __u32 rt_priority; + __u32 valid_lft; + __u32 prefered_lft; + refcount_t refcnt; + spinlock_t lock; + int state; + __u32 flags; + __u8 dad_probes; + __u8 stable_privacy_retry; + __u16 scope; + __u64 dad_nonce; + long unsigned int cstamp; + long unsigned int tstamp; + struct delayed_work dad_work; + struct inet6_dev *idev; + struct fib6_info *rt; + struct hlist_node addr_lst; + struct list_head if_list; + struct list_head if_list_aux; + struct list_head tmp_list; + struct inet6_ifaddr *ifpub; + int regen_count; + bool tokenized; + u8 ifa_proto; + struct callback_head rcu; + struct in6_addr peer_addr; +}; + +struct nf_ct_iter_data { + struct net *net; + void *data; + u32 portid; + int report; +}; + +struct nf_nat_range2 { + unsigned int flags; + union nf_inet_addr min_addr; + union nf_inet_addr max_addr; + union nf_conntrack_man_proto min_proto; + union nf_conntrack_man_proto max_proto; + union nf_conntrack_man_proto base_proto; +}; + +union nf_conntrack_nat_help {}; + +struct nf_conn_nat { + union nf_conntrack_nat_help help; + int masq_index; +}; + +struct masq_dev_work { + struct work_struct work; + struct net *net; + netns_tracker ns_tracker; + union nf_inet_addr addr; + int ifindex; + int (*iter)(struct nf_conn *, void *); +}; + +struct rhltable { + struct rhashtable ht; +}; + +enum nft_registers { + NFT_REG_VERDICT = 0, + NFT_REG_1 = 1, + NFT_REG_2 = 2, + NFT_REG_3 = 3, + NFT_REG_4 = 4, + __NFT_REG_MAX = 5, + NFT_REG32_00 = 8, + NFT_REG32_01 = 9, + NFT_REG32_02 = 10, + NFT_REG32_03 = 11, + NFT_REG32_04 = 12, + NFT_REG32_05 = 13, + NFT_REG32_06 = 14, + NFT_REG32_07 = 15, + NFT_REG32_08 = 16, + NFT_REG32_09 = 17, + NFT_REG32_10 = 18, + NFT_REG32_11 = 19, + NFT_REG32_12 = 20, + NFT_REG32_13 = 21, + NFT_REG32_14 = 22, + NFT_REG32_15 = 23, +}; + +enum nft_last_attributes { + NFTA_LAST_UNSPEC = 0, + NFTA_LAST_SET = 1, + NFTA_LAST_MSECS = 2, + NFTA_LAST_PAD = 3, + __NFTA_LAST_MAX = 4, +}; + +struct nft_pktinfo { + struct sk_buff *skb; + const struct nf_hook_state *state; + u8 flags; + u8 tprot; + u16 fragoff; + u16 thoff; + u16 inneroff; +}; + +struct nft_chain; + +struct nft_verdict { + u32 code; + struct nft_chain *chain; +}; + +struct nft_rule_blob; + +struct nft_table; + +struct nft_chain { + struct nft_rule_blob *blob_gen_0; + struct nft_rule_blob *blob_gen_1; + struct list_head rules; + struct list_head list; + struct rhlist_head rhlhead; + struct nft_table *table; + u64 handle; + u32 use; + u8 flags: 5; + u8 bound: 1; + u8 genmask: 2; + char *name; + u16 udlen; + u8 *udata; + struct nft_rule_blob *blob_next; +}; + +struct nft_regs { + union { + u32 data[20]; + struct nft_verdict verdict; + }; +}; + +struct nft_expr_ops; + +struct nft_expr { + const struct nft_expr_ops *ops; + unsigned char data[0]; +}; + +struct nft_regs_track { + struct { + const struct nft_expr *selector; + const struct nft_expr *bitwise; + u8 num_reg; + } regs[20]; + const struct nft_expr *cur; + const struct nft_expr *last; +}; + +struct nft_ctx { + struct net *net; + struct nft_table *table; + struct nft_chain *chain; + const struct nlattr * const *nla; + u32 portid; + u32 seq; + u16 flags; + u8 family; + u8 level; + bool report; + long unsigned int reg_inited[1]; +}; + +struct nft_table { + struct list_head list; + struct rhltable chains_ht; + struct list_head chains; + struct list_head sets; + struct list_head objects; + struct list_head flowtables; + u64 hgenerator; + u64 handle; + u32 use; + u16 family: 6; + u16 flags: 8; + u16 genmask: 2; + u32 nlpid; + char *name; + u16 udlen; + u8 *udata; + u8 validate_state; +}; + +enum nft_trans_phase { + NFT_TRANS_PREPARE = 0, + NFT_TRANS_PREPARE_ERROR = 1, + NFT_TRANS_ABORT = 2, + NFT_TRANS_COMMIT = 3, + NFT_TRANS_RELEASE = 4, +}; + +struct nft_offload_ctx; + +struct nft_flow_rule; + +struct nft_expr_type; + +struct nft_expr_ops { + void (*eval)(const struct nft_expr *, struct nft_regs *, const struct nft_pktinfo *); + int (*clone)(struct nft_expr *, const struct nft_expr *, gfp_t); + unsigned int size; + int (*init)(const struct nft_ctx *, const struct nft_expr *, const struct nlattr * const *); + void (*activate)(const struct nft_ctx *, const struct nft_expr *); + void (*deactivate)(const struct nft_ctx *, const struct nft_expr *, enum nft_trans_phase); + void (*destroy)(const struct nft_ctx *, const struct nft_expr *); + void (*destroy_clone)(const struct nft_ctx *, const struct nft_expr *); + int (*dump)(struct sk_buff *, const struct nft_expr *, bool); + int (*validate)(const struct nft_ctx *, const struct nft_expr *); + bool (*reduce)(struct nft_regs_track *, const struct nft_expr *); + bool (*gc)(struct net *, const struct nft_expr *); + int (*offload)(struct nft_offload_ctx *, struct nft_flow_rule *, const struct nft_expr *); + bool (*offload_action)(const struct nft_expr *); + void (*offload_stats)(struct nft_expr *, const struct flow_stats *); + const struct nft_expr_type *type; + void *data; +}; + +enum nft_set_extensions { + NFT_SET_EXT_KEY = 0, + NFT_SET_EXT_KEY_END = 1, + NFT_SET_EXT_DATA = 2, + NFT_SET_EXT_FLAGS = 3, + NFT_SET_EXT_TIMEOUT = 4, + NFT_SET_EXT_USERDATA = 5, + NFT_SET_EXT_EXPRESSIONS = 6, + NFT_SET_EXT_OBJREF = 7, + NFT_SET_EXT_NUM = 8, +}; + +struct nft_expr_type { + const struct nft_expr_ops * (*select_ops)(const struct nft_ctx *, const struct nlattr * const *); + void (*release_ops)(const struct nft_expr_ops *); + const struct nft_expr_ops *ops; + const struct nft_expr_ops *inner_ops; + struct list_head list; + const char *name; + struct module *owner; + const struct nla_policy *policy; + unsigned int maxattr; + u8 family; + u8 flags; +}; + +struct nft_rule_blob { + long unsigned int size; + unsigned char data[0]; +}; + +struct nft_last { + long unsigned int jiffies; + unsigned int set; +}; + +struct nft_last_priv { + struct nft_last *last; +}; + +enum nft_set_flags { + NFT_SET_ANONYMOUS = 1, + NFT_SET_CONSTANT = 2, + NFT_SET_INTERVAL = 4, + NFT_SET_MAP = 8, + NFT_SET_TIMEOUT = 16, + NFT_SET_EVAL = 32, + NFT_SET_OBJECT = 64, + NFT_SET_CONCAT = 128, + NFT_SET_EXPR = 256, +}; + +struct nft_data { + union { + u32 data[4]; + struct nft_verdict verdict; + }; +}; + +struct nft_elem_priv {}; + +struct nft_set_elem { + union { + u32 buf[16]; + struct nft_data val; + } key; + union { + u32 buf[16]; + struct nft_data val; + } key_end; + union { + u32 buf[16]; + struct nft_data val; + } data; + struct nft_elem_priv *priv; +}; + +enum nft_iter_type { + NFT_ITER_UNSPEC = 0, + NFT_ITER_READ = 1, + NFT_ITER_UPDATE = 2, +}; + +struct nft_set; + +struct nft_set_iter { + u8 genmask; + enum nft_iter_type type: 8; + unsigned int count; + unsigned int skip; + int err; + int (*fn)(const struct nft_ctx *, struct nft_set *, const struct nft_set_iter *, struct nft_elem_priv *); +}; + +struct nft_set_ops; + +struct nft_set { + struct list_head list; + struct list_head bindings; + refcount_t refs; + struct nft_table *table; + possible_net_t net; + char *name; + u64 handle; + u32 ktype; + u32 dtype; + u32 objtype; + u32 size; + u8 field_len[16]; + u8 field_count; + u32 use; + atomic_t nelems; + u32 ndeact; + u64 timeout; + u32 gc_int; + u16 policy; + u16 udlen; + unsigned char *udata; + struct list_head pending_update; + long: 64; + long: 64; + long: 64; + long: 64; + const struct nft_set_ops *ops; + u16 flags: 13; + u16 dead: 1; + u16 genmask: 2; + u8 klen; + u8 dlen; + u8 num_exprs; + struct nft_expr *exprs[2]; + struct list_head catchall_list; + unsigned char data[0]; + long: 64; + long: 64; +}; + +struct nft_set_desc { + u32 ktype; + unsigned int klen; + u32 dtype; + unsigned int dlen; + u32 objtype; + unsigned int size; + u32 policy; + u32 gc_int; + u64 timeout; + u8 field_len[16]; + u8 field_count; + bool expr; +}; + +enum nft_set_class { + NFT_SET_CLASS_O_1 = 0, + NFT_SET_CLASS_O_LOG_N = 1, + NFT_SET_CLASS_O_N = 2, +}; + +struct nft_set_estimate { + u64 size; + enum nft_set_class lookup; + enum nft_set_class space; +}; + +struct nft_set_ext; + +struct nft_set_ops { + const struct nft_set_ext * (*lookup)(const struct net *, const struct nft_set *, const u32 *); + const struct nft_set_ext * (*update)(struct nft_set *, const u32 *, struct nft_elem_priv * (*)(struct nft_set *, const struct nft_expr *, struct nft_regs *), const struct nft_expr *, struct nft_regs *); + bool (*delete)(const struct nft_set *, const u32 *); + int (*insert)(const struct net *, const struct nft_set *, const struct nft_set_elem *, struct nft_elem_priv **); + void (*activate)(const struct net *, const struct nft_set *, struct nft_elem_priv *); + struct nft_elem_priv * (*deactivate)(const struct net *, const struct nft_set *, const struct nft_set_elem *); + void (*flush)(const struct net *, const struct nft_set *, struct nft_elem_priv *); + void (*remove)(const struct net *, const struct nft_set *, struct nft_elem_priv *); + void (*walk)(const struct nft_ctx *, struct nft_set *, struct nft_set_iter *); + struct nft_elem_priv * (*get)(const struct net *, const struct nft_set *, const struct nft_set_elem *, unsigned int); + u32 (*ksize)(u32); + u32 (*usize)(u32); + u32 (*adjust_maxsize)(const struct nft_set *); + void (*commit)(struct nft_set *); + void (*abort)(const struct nft_set *); + u64 (*privsize)(const struct nlattr * const *, const struct nft_set_desc *); + bool (*estimate)(const struct nft_set_desc *, u32, struct nft_set_estimate *); + int (*init)(const struct nft_set *, const struct nft_set_desc *, const struct nlattr * const *); + void (*destroy)(const struct nft_ctx *, const struct nft_set *); + void (*gc_init)(const struct nft_set *); + unsigned int elemsize; +}; + +struct nft_set_ext { + u8 genmask; + u8 offset[8]; + char data[0]; + long: 0; +}; + +struct nft_set_type { + const struct nft_set_ops ops; + u32 features; +}; + +struct nft_timeout { + u64 timeout; + u64 expiration; +}; + +struct nft_trans_gc { + struct list_head list; + struct net *net; + struct nft_set *set; + u32 seq; + u16 count; + struct nft_elem_priv *priv[256]; + struct callback_head rcu; +}; + +struct nftables_pernet { + struct list_head tables; + struct list_head commit_list; + struct list_head destroy_list; + struct list_head commit_set_list; + struct list_head binding_list; + struct list_head module_list; + struct list_head notify_list; + struct mutex commit_mutex; + u64 table_handle; + u64 tstamp; + unsigned int gc_seq; + u8 validate_state; + struct work_struct destroy_work; +}; + +struct nft_pipapo_elem; + +union nft_pipapo_map_bucket { + struct { + u32 to; + u32 n; + }; + struct nft_pipapo_elem *e; +}; + +struct nft_pipapo_elem { + struct nft_elem_priv priv; + struct nft_set_ext ext; +}; + +struct nft_pipapo_field { + unsigned int rules; + unsigned int bsize; + unsigned int rules_alloc; + u8 groups; + u8 bb; + long unsigned int *lt; + union nft_pipapo_map_bucket *mt; +}; + +struct nft_pipapo_scratch { + u8 map_index; + u32 align_off; + long unsigned int map[0]; +}; + +struct nft_pipapo_match { + u8 field_count; + unsigned int bsize_max; + struct nft_pipapo_scratch **scratch; + struct callback_head rcu; + struct nft_pipapo_field f[0]; +}; + +struct nft_pipapo { + struct nft_pipapo_match *match; + struct nft_pipapo_match *clone; + int width; + long unsigned int last_gc; +}; + +enum nft_verdicts { + NFT_CONTINUE = -1, + NFT_BREAK = -2, + NFT_JUMP = -3, + NFT_GOTO = -4, + NFT_RETURN = -5, +}; + +enum nft_tproxy_attributes { + NFTA_TPROXY_UNSPEC = 0, + NFTA_TPROXY_FAMILY = 1, + NFTA_TPROXY_REG_ADDR = 2, + NFTA_TPROXY_REG_PORT = 3, + __NFTA_TPROXY_MAX = 4, +}; + +struct ip_options { + __be32 faddr; + __be32 nexthop; + unsigned char optlen; + unsigned char srr; + unsigned char rr; + unsigned char ts; + unsigned char is_strictroute: 1; + unsigned char srr_is_hit: 1; + unsigned char is_changed: 1; + unsigned char rr_needaddr: 1; + unsigned char ts_needtime: 1; + unsigned char ts_needaddr: 1; + unsigned char router_alert; + unsigned char cipso; + unsigned char __pad2; + unsigned char __data[0]; +}; + +struct ip_options_rcu { + struct callback_head rcu; + struct ip_options opt; +}; + +struct ipv6_opt_hdr; + +struct ipv6_rt_hdr; + +struct ipv6_txoptions { + refcount_t refcnt; + int tot_len; + __u16 opt_flen; + __u16 opt_nflen; + struct ipv6_opt_hdr *hopopt; + struct ipv6_opt_hdr *dst0opt; + struct ipv6_rt_hdr *srcrt; + struct ipv6_opt_hdr *dst1opt; + struct callback_head rcu; +}; + +struct inet_request_sock { + struct request_sock req; + u16 snd_wscale: 4; + u16 rcv_wscale: 4; + u16 tstamp_ok: 1; + u16 sack_ok: 1; + u16 wscale_ok: 1; + u16 ecn_ok: 1; + u16 acked: 1; + u16 no_srccheck: 1; + u16 smc_ok: 1; + u32 ir_mark; + union { + struct ip_options_rcu *ireq_opt; + struct { + struct ipv6_txoptions *ipv6_opt; + struct sk_buff *pktopts; + }; + }; +}; + +struct inet_cork { + unsigned int flags; + __be32 addr; + struct ip_options *opt; + unsigned int fragsize; + int length; + struct dst_entry *dst; + u8 tx_flags; + __u8 ttl; + __s16 tos; + char priority; + __u16 gso_size; + u64 transmit_time; + u32 mark; +}; + +struct inet_cork_full { + struct inet_cork base; + struct flowi fl; +}; + +struct ipv6_pinfo; + +struct ip_mc_socklist; + +struct inet_sock { + struct sock sk; + struct ipv6_pinfo *pinet6; + long unsigned int inet_flags; + __be32 inet_saddr; + __s16 uc_ttl; + __be16 inet_sport; + struct ip_options_rcu *inet_opt; + atomic_t inet_id; + __u8 tos; + __u8 min_ttl; + __u8 mc_ttl; + __u8 pmtudisc; + __u8 rcv_tos; + __u8 convert_csum; + int uc_index; + int mc_index; + __be32 mc_addr; + u32 local_port_range; + struct ip_mc_socklist *mc_list; + struct inet_cork_full cork; +}; + +struct in6_pktinfo { + struct in6_addr ipi6_addr; + int ipi6_ifindex; +}; + +struct inet6_cork { + struct ipv6_txoptions *opt; + u8 hop_limit; + u8 tclass; + u8 dontfrag: 1; +}; + +struct ipv6_mc_socklist; + +struct ipv6_ac_socklist; + +struct ipv6_fl_socklist; + +struct ipv6_pinfo { + struct in6_addr saddr; + struct in6_pktinfo sticky_pktinfo; + const struct in6_addr *daddr_cache; + const struct in6_addr *saddr_cache; + __be32 flow_label; + __u32 frag_size; + s16 hop_limit; + u8 mcast_hops; + int ucast_oif; + int mcast_oif; + union { + struct { + __u16 srcrt: 1; + __u16 osrcrt: 1; + __u16 rxinfo: 1; + __u16 rxoinfo: 1; + __u16 rxhlim: 1; + __u16 rxohlim: 1; + __u16 hopopts: 1; + __u16 ohopopts: 1; + __u16 dstopts: 1; + __u16 odstopts: 1; + __u16 rxflow: 1; + __u16 rxtclass: 1; + __u16 rxpmtu: 1; + __u16 rxorigdstaddr: 1; + __u16 recvfragsize: 1; + } bits; + __u16 all; + } rxopt; + __u8 srcprefs; + __u8 pmtudisc; + __u8 min_hopcount; + __u8 tclass; + __be32 rcv_flowinfo; + __u32 dst_cookie; + struct ipv6_mc_socklist *ipv6_mc_list; + struct ipv6_ac_socklist *ipv6_ac_list; + struct ipv6_fl_socklist *ipv6_fl_list; + struct ipv6_txoptions *opt; + struct sk_buff *pktoptions; + struct sk_buff *rxpmtu; + struct inet6_cork cork; +}; + +enum { + INET_FLAGS_PKTINFO = 0, + INET_FLAGS_TTL = 1, + INET_FLAGS_TOS = 2, + INET_FLAGS_RECVOPTS = 3, + INET_FLAGS_RETOPTS = 4, + INET_FLAGS_PASSSEC = 5, + INET_FLAGS_ORIGDSTADDR = 6, + INET_FLAGS_CHECKSUM = 7, + INET_FLAGS_RECVFRAGSIZE = 8, + INET_FLAGS_RECVERR = 9, + INET_FLAGS_RECVERR_RFC4884 = 10, + INET_FLAGS_FREEBIND = 11, + INET_FLAGS_HDRINCL = 12, + INET_FLAGS_MC_LOOP = 13, + INET_FLAGS_MC_ALL = 14, + INET_FLAGS_TRANSPARENT = 15, + INET_FLAGS_IS_ICSK = 16, + INET_FLAGS_NODEFRAG = 17, + INET_FLAGS_BIND_ADDRESS_NO_PORT = 18, + INET_FLAGS_DEFER_CONNECT = 19, + INET_FLAGS_MC6_LOOP = 20, + INET_FLAGS_RECVERR6_RFC4884 = 21, + INET_FLAGS_MC6_ALL = 22, + INET_FLAGS_AUTOFLOWLABEL_SET = 23, + INET_FLAGS_AUTOFLOWLABEL = 24, + INET_FLAGS_DONTFRAG = 25, + INET_FLAGS_RECVERR6 = 26, + INET_FLAGS_REPFLOW = 27, + INET_FLAGS_RTALERT_ISOLATE = 28, + INET_FLAGS_SNDFLOW = 29, + INET_FLAGS_RTALERT = 30, +}; + +struct inet_bind_bucket { + possible_net_t ib_net; + int l3mdev; + short unsigned int port; + signed char fastreuse; + signed char fastreuseport; + kuid_t fastuid; + struct in6_addr fast_v6_rcv_saddr; + __be32 fast_rcv_saddr; + short unsigned int fast_sk_family; + bool fast_ipv6_only; + struct hlist_node node; + struct hlist_head bhash2; +}; + +struct inet_bind2_bucket { + possible_net_t ib_net; + int l3mdev; + short unsigned int port; + short unsigned int addr_type; + struct in6_addr v6_rcv_saddr; + struct hlist_node node; + struct hlist_node bhash_node; + struct hlist_head owners; +}; + +struct inet_timewait_sock { + struct sock_common __tw_common; + __u32 tw_mark; + unsigned char tw_substate; + unsigned char tw_rcv_wscale; + __be16 tw_sport; + unsigned int tw_transparent: 1; + unsigned int tw_flowlabel: 20; + unsigned int tw_usec_ts: 1; + unsigned int tw_pad: 2; + unsigned int tw_tos: 8; + u32 tw_txhash; + u32 tw_priority; + struct timer_list tw_timer; + struct inet_bind_bucket *tw_tb; + struct inet_bind2_bucket *tw_tb2; +}; + +struct ipv6_rt_hdr { + __u8 nexthdr; + __u8 hdrlen; + __u8 type; + __u8 segments_left; +}; + +struct ipv6_opt_hdr { + __u8 nexthdr; + __u8 hdrlen; +}; + +struct ip6_sf_socklist; + +struct ipv6_mc_socklist { + struct in6_addr addr; + int ifindex; + unsigned int sfmode; + struct ipv6_mc_socklist *next; + struct ip6_sf_socklist *sflist; + struct callback_head rcu; +}; + +struct ipv6_ac_socklist { + struct in6_addr acl_addr; + int acl_ifindex; + struct ipv6_ac_socklist *acl_next; +}; + +struct ip6_flowlabel; + +struct ipv6_fl_socklist { + struct ipv6_fl_socklist *next; + struct ip6_flowlabel *fl; + struct callback_head rcu; +}; + +struct ip6_sf_socklist { + unsigned int sl_max; + unsigned int sl_count; + struct callback_head rcu; + struct in6_addr sl_addr[0]; +}; + +struct ip6_flowlabel { + struct ip6_flowlabel *next; + __be32 label; + atomic_t users; + struct in6_addr dst; + struct ipv6_txoptions *opt; + long unsigned int linger; + struct callback_head rcu; + u8 share; + union { + struct pid *pid; + kuid_t uid; + } owner; + long unsigned int lastuse; + long unsigned int expires; + struct net *fl_net; +}; + +enum nf_tproxy_lookup_t { + NF_TPROXY_LOOKUP_LISTENER = 0, + NF_TPROXY_LOOKUP_ESTABLISHED = 1, +}; + +struct nft_tproxy { + u8 sreg_addr; + u8 sreg_port; + u8 family; +}; + +enum { + XT_ADDRTYPE_INVERT_SOURCE = 1, + XT_ADDRTYPE_INVERT_DEST = 2, + XT_ADDRTYPE_LIMIT_IFACE_IN = 4, + XT_ADDRTYPE_LIMIT_IFACE_OUT = 8, +}; + +enum { + XT_ADDRTYPE_UNSPEC = 1, + XT_ADDRTYPE_UNICAST = 2, + XT_ADDRTYPE_LOCAL = 4, + XT_ADDRTYPE_BROADCAST = 8, + XT_ADDRTYPE_ANYCAST = 16, + XT_ADDRTYPE_MULTICAST = 32, + XT_ADDRTYPE_BLACKHOLE = 64, + XT_ADDRTYPE_UNREACHABLE = 128, + XT_ADDRTYPE_PROHIBIT = 256, + XT_ADDRTYPE_THROW = 512, + XT_ADDRTYPE_NAT = 1024, + XT_ADDRTYPE_XRESOLVE = 2048, +}; + +struct xt_addrtype_info_v1 { + __u16 source; + __u16 dest; + __u32 flags; +}; + +struct xt_addrtype_info { + __u16 source; + __u16 dest; + __u32 invert_source; + __u32 invert_dest; +}; + +struct xt_action_param; + +struct xt_mtchk_param; + +struct xt_mtdtor_param; + +struct xt_match { + struct list_head list; + const char name[29]; + u_int8_t revision; + bool (*match)(const struct sk_buff *, struct xt_action_param *); + int (*checkentry)(const struct xt_mtchk_param *); + void (*destroy)(const struct xt_mtdtor_param *); + struct module *me; + const char *table; + unsigned int matchsize; + unsigned int usersize; + unsigned int hooks; + short unsigned int proto; + short unsigned int family; +}; + +struct xt_tgchk_param; + +struct xt_tgdtor_param; + +struct xt_target { + struct list_head list; + const char name[29]; + u_int8_t revision; + unsigned int (*target)(struct sk_buff *, const struct xt_action_param *); + int (*checkentry)(const struct xt_tgchk_param *); + void (*destroy)(const struct xt_tgdtor_param *); + struct module *me; + const char *table; + unsigned int targetsize; + unsigned int usersize; + unsigned int hooks; + short unsigned int proto; + short unsigned int family; +}; + +struct xt_action_param { + union { + const struct xt_match *match; + const struct xt_target *target; + }; + union { + const void *matchinfo; + const void *targinfo; + }; + const struct nf_hook_state *state; + unsigned int thoff; + u16 fragoff; + bool hotdrop; +}; + +struct xt_mtchk_param { + struct net *net; + const char *table; + const void *entryinfo; + const struct xt_match *match; + void *matchinfo; + unsigned int hook_mask; + u_int8_t family; + bool nft_compat; +}; + +struct xt_mtdtor_param { + struct net *net; + const struct xt_match *match; + void *matchinfo; + u_int8_t family; +}; + +struct xt_tgchk_param { + struct net *net; + const char *table; + const void *entryinfo; + const struct xt_target *target; + void *targinfo; + unsigned int hook_mask; + u_int8_t family; + bool nft_compat; +}; + +struct xt_tgdtor_param { + struct net *net; + const struct xt_target *target; + void *targinfo; + u_int8_t family; +}; + +struct ip_esp_hdr { + __be32 spi; + __be32 seq_no; + __u8 enc_data[0]; +}; + +struct xt_esp { + __u32 spis[2]; + __u8 invflags; +}; + +enum { + IPSET_ATTR_UNSPEC = 0, + IPSET_ATTR_PROTOCOL = 1, + IPSET_ATTR_SETNAME = 2, + IPSET_ATTR_TYPENAME = 3, + IPSET_ATTR_SETNAME2 = 3, + IPSET_ATTR_REVISION = 4, + IPSET_ATTR_FAMILY = 5, + IPSET_ATTR_FLAGS = 6, + IPSET_ATTR_DATA = 7, + IPSET_ATTR_ADT = 8, + IPSET_ATTR_LINENO = 9, + IPSET_ATTR_PROTOCOL_MIN = 10, + IPSET_ATTR_REVISION_MIN = 10, + IPSET_ATTR_INDEX = 11, + __IPSET_ATTR_CMD_MAX = 12, +}; + +enum { + IPSET_ATTR_IP = 1, + IPSET_ATTR_IP_FROM = 1, + IPSET_ATTR_IP_TO = 2, + IPSET_ATTR_CIDR = 3, + IPSET_ATTR_PORT = 4, + IPSET_ATTR_PORT_FROM = 4, + IPSET_ATTR_PORT_TO = 5, + IPSET_ATTR_TIMEOUT = 6, + IPSET_ATTR_PROTO = 7, + IPSET_ATTR_CADT_FLAGS = 8, + IPSET_ATTR_CADT_LINENO = 9, + IPSET_ATTR_MARK = 10, + IPSET_ATTR_MARKMASK = 11, + IPSET_ATTR_BITMASK = 12, + IPSET_ATTR_CADT_MAX = 16, + IPSET_ATTR_INITVAL = 17, + IPSET_ATTR_HASHSIZE = 18, + IPSET_ATTR_MAXELEM = 19, + IPSET_ATTR_NETMASK = 20, + IPSET_ATTR_BUCKETSIZE = 21, + IPSET_ATTR_RESIZE = 22, + IPSET_ATTR_SIZE = 23, + IPSET_ATTR_ELEMENTS = 24, + IPSET_ATTR_REFERENCES = 25, + IPSET_ATTR_MEMSIZE = 26, + __IPSET_ATTR_CREATE_MAX = 27, +}; + +enum { + IPSET_ATTR_ETHER = 17, + IPSET_ATTR_NAME = 18, + IPSET_ATTR_NAMEREF = 19, + IPSET_ATTR_IP2 = 20, + IPSET_ATTR_CIDR2 = 21, + IPSET_ATTR_IP2_TO = 22, + IPSET_ATTR_IFACE = 23, + IPSET_ATTR_BYTES = 24, + IPSET_ATTR_PACKETS = 25, + IPSET_ATTR_COMMENT = 26, + IPSET_ATTR_SKBMARK = 27, + IPSET_ATTR_SKBPRIO = 28, + IPSET_ATTR_SKBQUEUE = 29, + IPSET_ATTR_PAD = 30, + __IPSET_ATTR_ADT_MAX = 31, +}; + +enum ipset_errno { + IPSET_ERR_PRIVATE = 4096, + IPSET_ERR_PROTOCOL = 4097, + IPSET_ERR_FIND_TYPE = 4098, + IPSET_ERR_MAX_SETS = 4099, + IPSET_ERR_BUSY = 4100, + IPSET_ERR_EXIST_SETNAME2 = 4101, + IPSET_ERR_TYPE_MISMATCH = 4102, + IPSET_ERR_EXIST = 4103, + IPSET_ERR_INVALID_CIDR = 4104, + IPSET_ERR_INVALID_NETMASK = 4105, + IPSET_ERR_INVALID_FAMILY = 4106, + IPSET_ERR_TIMEOUT = 4107, + IPSET_ERR_REFERENCED = 4108, + IPSET_ERR_IPADDR_IPV4 = 4109, + IPSET_ERR_IPADDR_IPV6 = 4110, + IPSET_ERR_COUNTER = 4111, + IPSET_ERR_COMMENT = 4112, + IPSET_ERR_INVALID_MARKMASK = 4113, + IPSET_ERR_SKBINFO = 4114, + IPSET_ERR_BITMASK_NETMASK_EXCL = 4115, + IPSET_ERR_TYPE_SPECIFIC = 4352, +}; + +enum ipset_cmd_flags { + IPSET_FLAG_BIT_EXIST = 0, + IPSET_FLAG_EXIST = 1, + IPSET_FLAG_BIT_LIST_SETNAME = 1, + IPSET_FLAG_LIST_SETNAME = 2, + IPSET_FLAG_BIT_LIST_HEADER = 2, + IPSET_FLAG_LIST_HEADER = 4, + IPSET_FLAG_BIT_SKIP_COUNTER_UPDATE = 3, + IPSET_FLAG_SKIP_COUNTER_UPDATE = 8, + IPSET_FLAG_BIT_SKIP_SUBCOUNTER_UPDATE = 4, + IPSET_FLAG_SKIP_SUBCOUNTER_UPDATE = 16, + IPSET_FLAG_BIT_MATCH_COUNTERS = 5, + IPSET_FLAG_MATCH_COUNTERS = 32, + IPSET_FLAG_BIT_RETURN_NOMATCH = 7, + IPSET_FLAG_RETURN_NOMATCH = 128, + IPSET_FLAG_BIT_MAP_SKBMARK = 8, + IPSET_FLAG_MAP_SKBMARK = 256, + IPSET_FLAG_BIT_MAP_SKBPRIO = 9, + IPSET_FLAG_MAP_SKBPRIO = 512, + IPSET_FLAG_BIT_MAP_SKBQUEUE = 10, + IPSET_FLAG_MAP_SKBQUEUE = 1024, + IPSET_FLAG_CMD_MAX = 15, +}; + +enum ipset_cadt_flags { + IPSET_FLAG_BIT_BEFORE = 0, + IPSET_FLAG_BEFORE = 1, + IPSET_FLAG_BIT_PHYSDEV = 1, + IPSET_FLAG_PHYSDEV = 2, + IPSET_FLAG_BIT_NOMATCH = 2, + IPSET_FLAG_NOMATCH = 4, + IPSET_FLAG_BIT_WITH_COUNTERS = 3, + IPSET_FLAG_WITH_COUNTERS = 8, + IPSET_FLAG_BIT_WITH_COMMENT = 4, + IPSET_FLAG_WITH_COMMENT = 16, + IPSET_FLAG_BIT_WITH_FORCEADD = 5, + IPSET_FLAG_WITH_FORCEADD = 32, + IPSET_FLAG_BIT_WITH_SKBINFO = 6, + IPSET_FLAG_WITH_SKBINFO = 64, + IPSET_FLAG_BIT_IFACE_WILDCARD = 7, + IPSET_FLAG_IFACE_WILDCARD = 128, + IPSET_FLAG_CADT_MAX = 15, +}; + +enum ipset_adt { + IPSET_ADD = 0, + IPSET_DEL = 1, + IPSET_TEST = 2, + IPSET_ADT_MAX = 3, + IPSET_CREATE = 3, + IPSET_CADT_MAX = 4, +}; + +enum ip_set_dim { + IPSET_DIM_ZERO = 0, + IPSET_DIM_ONE = 1, + IPSET_DIM_TWO = 2, + IPSET_DIM_THREE = 3, + IPSET_DIM_MAX = 6, + IPSET_BIT_RETURN_NOMATCH = 7, +}; + +enum ip_set_kopt { + IPSET_INV_MATCH = 1, + IPSET_DIM_ONE_SRC = 2, + IPSET_DIM_TWO_SRC = 4, + IPSET_DIM_THREE_SRC = 8, + IPSET_RETURN_NOMATCH = 128, +}; + +enum ip_set_feature { + IPSET_TYPE_IP_FLAG = 0, + IPSET_TYPE_IP = 1, + IPSET_TYPE_PORT_FLAG = 1, + IPSET_TYPE_PORT = 2, + IPSET_TYPE_MAC_FLAG = 2, + IPSET_TYPE_MAC = 4, + IPSET_TYPE_IP2_FLAG = 3, + IPSET_TYPE_IP2 = 8, + IPSET_TYPE_NAME_FLAG = 4, + IPSET_TYPE_NAME = 16, + IPSET_TYPE_IFACE_FLAG = 5, + IPSET_TYPE_IFACE = 32, + IPSET_TYPE_MARK_FLAG = 6, + IPSET_TYPE_MARK = 64, + IPSET_TYPE_NOMATCH_FLAG = 7, + IPSET_TYPE_NOMATCH = 128, + IPSET_DUMP_LAST_FLAG = 8, + IPSET_DUMP_LAST = 256, +}; + +enum ip_set_extension { + IPSET_EXT_BIT_TIMEOUT = 0, + IPSET_EXT_TIMEOUT = 1, + IPSET_EXT_BIT_COUNTER = 1, + IPSET_EXT_COUNTER = 2, + IPSET_EXT_BIT_COMMENT = 2, + IPSET_EXT_COMMENT = 4, + IPSET_EXT_BIT_SKBINFO = 3, + IPSET_EXT_SKBINFO = 8, + IPSET_EXT_BIT_DESTROY = 7, + IPSET_EXT_DESTROY = 128, +}; + +enum ip_set_ext_id { + IPSET_EXT_ID_COUNTER = 0, + IPSET_EXT_ID_TIMEOUT = 1, + IPSET_EXT_ID_SKBINFO = 2, + IPSET_EXT_ID_COMMENT = 3, + IPSET_EXT_ID_MAX = 4, +}; + +struct ip_set; + +struct ip_set_ext_type { + void (*destroy)(struct ip_set *, void *); + enum ip_set_extension type; + enum ipset_cadt_flags flag; + u8 len; + u8 align; +}; + +struct ip_set_type; + +struct ip_set_type_variant; + +struct ip_set { + struct callback_head rcu; + char name[32]; + spinlock_t lock; + u32 ref; + u32 ref_netlink; + struct ip_set_type *type; + const struct ip_set_type_variant *variant; + u8 family; + u8 revision; + u8 extensions; + u8 flags; + u32 timeout; + u32 elements; + size_t ext_size; + size_t dsize; + size_t offset[4]; + void *data; +}; + +struct ip_set_counter { + atomic64_t bytes; + atomic64_t packets; +}; + +struct ip_set_comment_rcu { + struct callback_head rcu; + char str[0]; +}; + +struct ip_set_comment { + struct ip_set_comment_rcu *c; +}; + +struct ip_set_skbinfo { + u32 skbmark; + u32 skbmarkmask; + u32 skbprio; + u16 skbqueue; + u16 __pad; +}; + +struct ip_set_ext { + struct ip_set_skbinfo skbinfo; + u64 packets; + u64 bytes; + char *comment; + u32 timeout; + u8 packets_op; + u8 bytes_op; + bool target; +}; + +typedef int (*ipset_adtfn)(struct ip_set *, void *, const struct ip_set_ext *, struct ip_set_ext *, u32); + +struct ip_set_adt_opt { + u8 family; + u8 dim; + u8 flags; + u32 cmdflags; + struct ip_set_ext ext; +}; + +struct ip_set_type_variant { + int (*kadt)(struct ip_set *, const struct sk_buff *, const struct xt_action_param *, enum ipset_adt, struct ip_set_adt_opt *); + int (*uadt)(struct ip_set *, struct nlattr **, enum ipset_adt, u32 *, u32, bool); + ipset_adtfn adt[3]; + int (*resize)(struct ip_set *, bool); + void (*destroy)(struct ip_set *); + void (*flush)(struct ip_set *); + void (*expire)(struct ip_set *); + int (*head)(struct ip_set *, struct sk_buff *); + int (*list)(const struct ip_set *, struct sk_buff *, struct netlink_callback *); + void (*uref)(struct ip_set *, struct netlink_callback *, bool); + bool (*same_set)(const struct ip_set *, const struct ip_set *); + void (*cancel_gc)(struct ip_set *); + bool region_lock; +}; + +struct ip_set_type { + struct list_head list; + char name[32]; + u8 protocol; + u8 dimension; + u8 family; + u8 revision_min; + u8 revision_max; + u8 create_flags[10]; + u16 features; + int (*create)(struct net *, struct ip_set *, struct nlattr **, u32); + const struct nla_policy create_policy[27]; + const struct nla_policy adt_policy[31]; + struct module *me; +}; + +enum { + IPSET_CB_NET = 0, + IPSET_CB_PROTO = 1, + IPSET_CB_DUMP = 2, + IPSET_CB_INDEX = 3, + IPSET_CB_PRIVATE = 4, + IPSET_CB_ARG0 = 5, +}; + +enum { + IPSET_ERR_BITMAP_RANGE = 4352, + IPSET_ERR_BITMAP_RANGE_SIZE = 4353, +}; + +enum { + IPSET_ADD_STORE_PLAIN_TIMEOUT = -1, + IPSET_ADD_FAILED = 1, + IPSET_ADD_START_STORED_TIMEOUT = 2, +}; + +struct bitmap_port { + long unsigned int *members; + u16 first_port; + u16 last_port; + u32 elements; + size_t memsize; + struct timer_list gc; + struct ip_set *set; + unsigned char extensions[0]; +}; + +struct bitmap_port_adt_elem { + u16 id; +}; + +struct bitmap_port_elem {}; + +struct ipvs_sync_daemon_cfg { + union nf_inet_addr mcast_group; + int syncid; + u16 sync_maxlen; + u16 mcast_port; + u8 mcast_af; + u8 mcast_ttl; + char mcast_ifn[16]; +}; + +struct ip_vs_proto_data; + +struct ip_vs_stats_rcu; + +struct ip_vs_est_kt_data; + +struct ipvs_master_sync_state; + +struct ip_vs_sync_thread_data; + +struct netns_ipvs { + int gen; + int enable; + struct hlist_head rs_table[16]; + struct list_head app_list; + struct ip_vs_proto_data *proto_data_table[32]; + struct list_head tcp_apps[16]; + struct list_head udp_apps[16]; + atomic_t conn_count; + struct ip_vs_stats_rcu *tot_stats; + int num_services; + int num_services6; + struct list_head dest_trash; + spinlock_t dest_trash_lock; + struct timer_list dest_trash_timer; + atomic_t ftpsvc_counter; + atomic_t nullsvc_counter; + atomic_t conn_out_counter; + struct delayed_work expire_nodest_conn_work; + struct delayed_work defense_work; + int drop_rate; + int drop_counter; + int old_secure_tcp; + atomic_t dropentry; + spinlock_t dropentry_lock; + spinlock_t droppacket_lock; + spinlock_t securetcp_lock; + struct ctl_table_header *sysctl_hdr; + struct ctl_table *sysctl_tbl; + int sysctl_amemthresh; + int sysctl_am_droprate; + int sysctl_drop_entry; + int sysctl_drop_packet; + int sysctl_secure_tcp; + int sysctl_conntrack; + int sysctl_snat_reroute; + int sysctl_sync_ver; + int sysctl_sync_ports; + int sysctl_sync_persist_mode; + long unsigned int sysctl_sync_qlen_max; + int sysctl_sync_sock_size; + int sysctl_cache_bypass; + int sysctl_expire_nodest_conn; + int sysctl_sloppy_tcp; + int sysctl_sloppy_sctp; + int sysctl_expire_quiescent_template; + int sysctl_sync_threshold[2]; + unsigned int sysctl_sync_refresh_period; + int sysctl_sync_retries; + int sysctl_nat_icmp_send; + int sysctl_pmtu_disc; + int sysctl_backup_only; + int sysctl_conn_reuse_mode; + int sysctl_schedule_icmp; + int sysctl_ignore_tunneled; + int sysctl_run_estimation; + cpumask_var_t sysctl_est_cpulist; + int est_cpulist_valid; + int sysctl_est_nice; + int est_stopped; + int sysctl_lblc_expiration; + struct ctl_table_header *lblc_ctl_header; + struct ctl_table *lblc_ctl_table; + int sysctl_lblcr_expiration; + struct ctl_table_header *lblcr_ctl_header; + struct ctl_table *lblcr_ctl_table; + struct delayed_work est_reload_work; + struct mutex est_mutex; + struct hlist_head est_temp_list; + struct ip_vs_est_kt_data **est_kt_arr; + long unsigned int est_max_threads; + int est_calc_phase; + int est_chain_max; + int est_kt_count; + int est_add_ktid; + atomic_t est_genid; + atomic_t est_genid_done; + spinlock_t sync_lock; + struct ipvs_master_sync_state *ms; + spinlock_t sync_buff_lock; + struct ip_vs_sync_thread_data *master_tinfo; + struct ip_vs_sync_thread_data *backup_tinfo; + int threads_mask; + volatile int sync_state; + struct mutex sync_mutex; + struct ipvs_sync_daemon_cfg mcfg; + struct ipvs_sync_daemon_cfg bcfg; + struct net *net; + unsigned int mixed_address_family_dests; + unsigned int hooks_afmask; +}; + +struct ip_vs_iphdr { + int hdr_flags; + __u32 off; + __u32 len; + __u16 fragoffs; + __s16 protocol; + __s32 flags; + union nf_inet_addr saddr; + union nf_inet_addr daddr; +}; + +struct ip_vs_seq { + __u32 init_seq; + __u32 delta; + __u32 previous_delta; +}; + +struct ip_vs_counters { + u64_stats_t conns; + u64_stats_t inpkts; + u64_stats_t outpkts; + u64_stats_t inbytes; + u64_stats_t outbytes; +}; + +struct ip_vs_cpu_stats { + struct ip_vs_counters cnt; + struct u64_stats_sync syncp; +}; + +struct ip_vs_estimator { + struct hlist_node list; + u64 last_inbytes; + u64 last_outbytes; + u64 last_conns; + u64 last_inpkts; + u64 last_outpkts; + u64 cps; + u64 inpps; + u64 outpps; + u64 inbps; + u64 outbps; + s32 ktid: 16; + s32 ktrow: 8; + s32 ktcid: 8; +}; + +struct ip_vs_kstats { + u64 conns; + u64 inpkts; + u64 outpkts; + u64 inbytes; + u64 outbytes; + u64 cps; + u64 inpps; + u64 outpps; + u64 inbps; + u64 outbps; +}; + +struct ip_vs_stats { + struct ip_vs_kstats kstats; + struct ip_vs_estimator est; + struct ip_vs_cpu_stats *cpustats; + spinlock_t lock; + struct ip_vs_kstats kstats0; +}; + +struct ip_vs_stats_rcu { + struct ip_vs_stats s; + struct callback_head callback_head; +}; + +struct ip_vs_est_tick_data { + struct callback_head callback_head; + struct hlist_head chains[48]; + long unsigned int present[1]; + long unsigned int full[1]; + int chain_len[48]; +}; + +struct ip_vs_est_kt_data { + struct netns_ipvs *ipvs; + struct task_struct *task; + struct ip_vs_est_tick_data *ticks[50]; + long unsigned int avail[1]; + long unsigned int est_timer; + struct ip_vs_stats *calc_stats; + int tick_len[50]; + int id; + int chain_max; + int tick_max; + int est_count; + int est_max_count; + int add_row; + int est_row; +}; + +struct ip_vs_conn; + +struct ip_vs_app; + +struct ip_vs_protocol { + struct ip_vs_protocol *next; + char *name; + u16 protocol; + u16 num_states; + int dont_defrag; + void (*init)(struct ip_vs_protocol *); + void (*exit)(struct ip_vs_protocol *); + int (*init_netns)(struct netns_ipvs *, struct ip_vs_proto_data *); + void (*exit_netns)(struct netns_ipvs *, struct ip_vs_proto_data *); + int (*conn_schedule)(struct netns_ipvs *, int, struct sk_buff *, struct ip_vs_proto_data *, int *, struct ip_vs_conn **, struct ip_vs_iphdr *); + struct ip_vs_conn * (*conn_in_get)(struct netns_ipvs *, int, const struct sk_buff *, const struct ip_vs_iphdr *); + struct ip_vs_conn * (*conn_out_get)(struct netns_ipvs *, int, const struct sk_buff *, const struct ip_vs_iphdr *); + int (*snat_handler)(struct sk_buff *, struct ip_vs_protocol *, struct ip_vs_conn *, struct ip_vs_iphdr *); + int (*dnat_handler)(struct sk_buff *, struct ip_vs_protocol *, struct ip_vs_conn *, struct ip_vs_iphdr *); + const char * (*state_name)(int); + void (*state_transition)(struct ip_vs_conn *, int, const struct sk_buff *, struct ip_vs_proto_data *); + int (*register_app)(struct netns_ipvs *, struct ip_vs_app *); + void (*unregister_app)(struct netns_ipvs *, struct ip_vs_app *); + int (*app_conn_bind)(struct ip_vs_conn *); + void (*debug_packet)(int, struct ip_vs_protocol *, const struct sk_buff *, int, const char *); + void (*timeout_change)(struct ip_vs_proto_data *, int); +}; + +struct tcp_states_t; + +struct ip_vs_proto_data { + struct ip_vs_proto_data *next; + struct ip_vs_protocol *pp; + int *timeout_table; + atomic_t appcnt; + struct tcp_states_t *tcp_state_table; +}; + +struct ip_vs_dest; + +struct ip_vs_pe; + +struct ip_vs_conn { + struct hlist_node c_list; + __be16 cport; + __be16 dport; + __be16 vport; + u16 af; + union nf_inet_addr caddr; + union nf_inet_addr vaddr; + union nf_inet_addr daddr; + volatile __u32 flags; + __u16 protocol; + __u16 daf; + struct netns_ipvs *ipvs; + refcount_t refcnt; + struct timer_list timer; + volatile long unsigned int timeout; + spinlock_t lock; + volatile __u16 state; + volatile __u16 old_state; + __u32 fwmark; + long unsigned int sync_endtime; + struct ip_vs_conn *control; + atomic_t n_control; + struct ip_vs_dest *dest; + atomic_t in_pkts; + int (*packet_xmit)(struct sk_buff *, struct ip_vs_conn *, struct ip_vs_protocol *, struct ip_vs_iphdr *); + struct ip_vs_app *app; + void *app_data; + union { + struct { + struct ip_vs_seq in_seq; + struct ip_vs_seq out_seq; + }; + struct { + struct ip_vs_seq in_seq; + struct ip_vs_seq out_seq; + } sync_conn_opt; + }; + const struct ip_vs_pe *pe; + char *pe_data; + __u8 pe_data_len; + struct callback_head callback_head; +}; + +struct ip_vs_app { + struct list_head a_list; + int type; + char *name; + __u16 protocol; + struct module *module; + struct list_head incs_list; + struct list_head p_list; + struct ip_vs_app *app; + __be16 port; + atomic_t usecnt; + struct callback_head callback_head; + int (*pkt_out)(struct ip_vs_app *, struct ip_vs_conn *, struct sk_buff *, int *, struct ip_vs_iphdr *); + int (*pkt_in)(struct ip_vs_app *, struct ip_vs_conn *, struct sk_buff *, int *, struct ip_vs_iphdr *); + int (*init_conn)(struct ip_vs_app *, struct ip_vs_conn *); + int (*done_conn)(struct ip_vs_app *, struct ip_vs_conn *); + int (*bind_conn)(struct ip_vs_app *, struct ip_vs_conn *, struct ip_vs_protocol *); + void (*unbind_conn)(struct ip_vs_app *, struct ip_vs_conn *); + int *timeout_table; + int *timeouts; + int timeouts_size; + int (*conn_schedule)(struct sk_buff *, struct ip_vs_app *, int *, struct ip_vs_conn **); + struct ip_vs_conn * (*conn_in_get)(const struct sk_buff *, struct ip_vs_app *, const struct iphdr *, int); + struct ip_vs_conn * (*conn_out_get)(const struct sk_buff *, struct ip_vs_app *, const struct iphdr *, int); + int (*state_transition)(struct ip_vs_conn *, int, const struct sk_buff *, struct ip_vs_app *); + void (*timeout_change)(struct ip_vs_app *, int); +}; + +struct ip_vs_conn_param { + struct netns_ipvs *ipvs; + const union nf_inet_addr *caddr; + const union nf_inet_addr *vaddr; + __be16 cport; + __be16 vport; + __u16 protocol; + u16 af; + const struct ip_vs_pe *pe; + char *pe_data; + __u8 pe_data_len; +}; + +struct ip_vs_service; + +struct ip_vs_pe { + struct list_head n_list; + char *name; + atomic_t refcnt; + struct module *module; + int (*fill_param)(struct ip_vs_conn_param *, struct sk_buff *); + bool (*ct_match)(const struct ip_vs_conn_param *, struct ip_vs_conn *); + u32 (*hashkey_raw)(const struct ip_vs_conn_param *, u32, bool); + int (*show_pe_data)(const struct ip_vs_conn *, char *); + struct ip_vs_conn * (*conn_out)(struct ip_vs_service *, struct ip_vs_dest *, struct sk_buff *, const struct ip_vs_iphdr *, __be16, __be16); +}; + +struct ip_vs_dest_dst; + +struct ip_vs_dest { + struct list_head n_list; + struct hlist_node d_list; + u16 af; + __be16 port; + union nf_inet_addr addr; + volatile unsigned int flags; + atomic_t conn_flags; + atomic_t weight; + atomic_t last_weight; + __u16 tun_type; + __be16 tun_port; + __u16 tun_flags; + refcount_t refcnt; + struct ip_vs_stats stats; + long unsigned int idle_start; + atomic_t activeconns; + atomic_t inactconns; + atomic_t persistconns; + __u32 u_threshold; + __u32 l_threshold; + spinlock_t dst_lock; + struct ip_vs_dest_dst *dest_dst; + struct ip_vs_service *svc; + __u16 protocol; + __be16 vport; + union nf_inet_addr vaddr; + __u32 vfwmark; + struct callback_head callback_head; + struct list_head t_list; + unsigned int in_rs_table: 1; +}; + +struct ip_vs_scheduler; + +struct ip_vs_service { + struct hlist_node s_list; + struct hlist_node f_list; + atomic_t refcnt; + u16 af; + __u16 protocol; + union nf_inet_addr addr; + __be16 port; + __u32 fwmark; + unsigned int flags; + unsigned int timeout; + __be32 netmask; + struct netns_ipvs *ipvs; + struct list_head destinations; + __u32 num_dests; + struct ip_vs_stats stats; + struct ip_vs_scheduler *scheduler; + spinlock_t sched_lock; + void *sched_data; + struct ip_vs_pe *pe; + int conntrack_afmask; + struct callback_head callback_head; +}; + +struct ip_vs_scheduler { + struct list_head n_list; + char *name; + atomic_t refcnt; + struct module *module; + int (*init_service)(struct ip_vs_service *); + void (*done_service)(struct ip_vs_service *); + int (*add_dest)(struct ip_vs_service *, struct ip_vs_dest *); + int (*del_dest)(struct ip_vs_service *, struct ip_vs_dest *); + int (*upd_dest)(struct ip_vs_service *, struct ip_vs_dest *); + struct ip_vs_dest * (*schedule)(struct ip_vs_service *, const struct sk_buff *, struct ip_vs_iphdr *); +}; + +struct ip_vs_dest_dst { + struct dst_entry *dst_cache; + u32 dst_cookie; + union nf_inet_addr dst_saddr; + struct callback_head callback_head; +}; + +struct ip_vs_sync_buff; + +struct ipvs_master_sync_state { + struct list_head sync_queue; + struct ip_vs_sync_buff *sync_buff; + long unsigned int sync_queue_len; + unsigned int sync_queue_delay; + struct delayed_work master_wakeup_work; + struct netns_ipvs *ipvs; +}; + +enum { + IPSTATS_MIB_NUM = 0, + IPSTATS_MIB_INPKTS = 1, + IPSTATS_MIB_INOCTETS = 2, + IPSTATS_MIB_INDELIVERS = 3, + IPSTATS_MIB_OUTFORWDATAGRAMS = 4, + IPSTATS_MIB_OUTREQUESTS = 5, + IPSTATS_MIB_OUTOCTETS = 6, + IPSTATS_MIB_INHDRERRORS = 7, + IPSTATS_MIB_INTOOBIGERRORS = 8, + IPSTATS_MIB_INNOROUTES = 9, + IPSTATS_MIB_INADDRERRORS = 10, + IPSTATS_MIB_INUNKNOWNPROTOS = 11, + IPSTATS_MIB_INTRUNCATEDPKTS = 12, + IPSTATS_MIB_INDISCARDS = 13, + IPSTATS_MIB_OUTDISCARDS = 14, + IPSTATS_MIB_OUTNOROUTES = 15, + IPSTATS_MIB_REASMTIMEOUT = 16, + IPSTATS_MIB_REASMREQDS = 17, + IPSTATS_MIB_REASMOKS = 18, + IPSTATS_MIB_REASMFAILS = 19, + IPSTATS_MIB_FRAGOKS = 20, + IPSTATS_MIB_FRAGFAILS = 21, + IPSTATS_MIB_FRAGCREATES = 22, + IPSTATS_MIB_INMCASTPKTS = 23, + IPSTATS_MIB_OUTMCASTPKTS = 24, + IPSTATS_MIB_INBCASTPKTS = 25, + IPSTATS_MIB_OUTBCASTPKTS = 26, + IPSTATS_MIB_INMCASTOCTETS = 27, + IPSTATS_MIB_OUTMCASTOCTETS = 28, + IPSTATS_MIB_INBCASTOCTETS = 29, + IPSTATS_MIB_OUTBCASTOCTETS = 30, + IPSTATS_MIB_CSUMERRORS = 31, + IPSTATS_MIB_NOECTPKTS = 32, + IPSTATS_MIB_ECT1PKTS = 33, + IPSTATS_MIB_ECT0PKTS = 34, + IPSTATS_MIB_CEPKTS = 35, + IPSTATS_MIB_REASM_OVERLAPS = 36, + IPSTATS_MIB_OUTPKTS = 37, + __IPSTATS_MIB_MAX = 38, +}; + +enum { + INET_FRAG_FIRST_IN = 1, + INET_FRAG_LAST_IN = 2, + INET_FRAG_COMPLETE = 4, + INET_FRAG_HASH_DEAD = 8, + INET_FRAG_DROP = 16, +}; + +enum { + RTN_UNSPEC = 0, + RTN_UNICAST = 1, + RTN_LOCAL = 2, + RTN_BROADCAST = 3, + RTN_ANYCAST = 4, + RTN_MULTICAST = 5, + RTN_BLACKHOLE = 6, + RTN_UNREACHABLE = 7, + RTN_PROHIBIT = 8, + RTN_THROW = 9, + RTN_NAT = 10, + RTN_XRESOLVE = 11, + __RTN_MAX = 12, +}; + +struct ipv4_addr_key { + __be32 addr; + int vif; +}; + +struct inetpeer_addr { + union { + struct ipv4_addr_key a4; + struct in6_addr a6; + u32 key[4]; + }; + __u16 family; +}; + +struct inet_peer { + struct rb_node rb_node; + struct inetpeer_addr daddr; + u32 metrics[17]; + u32 rate_tokens; + u32 n_redirects; + long unsigned int rate_last; + union { + struct { + atomic_t rid; + }; + struct callback_head rcu; + }; + __u32 dtime; + refcount_t refcnt; +}; + +struct inet_skb_parm { + int iif; + struct ip_options opt; + u16 flags; + u16 frag_max_size; +}; + +enum ip_defrag_users { + IP_DEFRAG_LOCAL_DELIVER = 0, + IP_DEFRAG_CALL_RA_CHAIN = 1, + IP_DEFRAG_CONNTRACK_IN = 2, + __IP_DEFRAG_CONNTRACK_IN_END = 65537, + IP_DEFRAG_CONNTRACK_OUT = 65538, + __IP_DEFRAG_CONNTRACK_OUT_END = 131073, + IP_DEFRAG_CONNTRACK_BRIDGE_IN = 131074, + __IP_DEFRAG_CONNTRACK_BRIDGE_IN = 196609, + IP_DEFRAG_VS_IN = 196610, + IP_DEFRAG_VS_OUT = 196611, + IP_DEFRAG_VS_FWD = 196612, + IP_DEFRAG_AF_PACKET = 196613, + IP_DEFRAG_MACVLAN = 196614, +}; + +enum { + INET_ECN_NOT_ECT = 0, + INET_ECN_ECT_1 = 1, + INET_ECN_ECT_0 = 2, + INET_ECN_CE = 3, + INET_ECN_MASK = 3, +}; + +struct ipq { + struct inet_frag_queue q; + u8 ecn; + u16 max_df_size; + int iif; + unsigned int rid; + struct inet_peer *peer; +}; + +struct minmax_sample { + u32 t; + u32 v; +}; + +struct minmax { + struct minmax_sample s[3]; +}; + +struct fastopen_queue { + struct request_sock *rskq_rst_head; + struct request_sock *rskq_rst_tail; + spinlock_t lock; + int qlen; + int max_qlen; + struct tcp_fastopen_context *ctx; +}; + +struct request_sock_queue { + spinlock_t rskq_lock; + u8 rskq_defer_accept; + u32 synflood_warned; + atomic_t qlen; + atomic_t young; + struct request_sock *rskq_accept_head; + struct request_sock *rskq_accept_tail; + struct fastopen_queue fastopenq; +}; + +struct inet_connection_sock_af_ops { + int (*queue_xmit)(struct sock *, struct sk_buff *, struct flowi *); + void (*send_check)(struct sock *, struct sk_buff *); + int (*rebuild_header)(struct sock *); + void (*sk_rx_dst_set)(struct sock *, const struct sk_buff *); + int (*conn_request)(struct sock *, struct sk_buff *); + struct sock * (*syn_recv_sock)(const struct sock *, struct sk_buff *, struct request_sock *, struct dst_entry *, struct request_sock *, bool *); + u16 net_header_len; + u16 sockaddr_len; + int (*setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); + int (*getsockopt)(struct sock *, int, int, char *, int *); + void (*addr2sockaddr)(struct sock *, struct sockaddr *); + void (*mtu_reduced)(struct sock *); +}; + +struct tcp_ulp_ops; + +struct inet_connection_sock { + struct inet_sock icsk_inet; + struct request_sock_queue icsk_accept_queue; + struct inet_bind_bucket *icsk_bind_hash; + struct inet_bind2_bucket *icsk_bind2_hash; + long unsigned int icsk_timeout; + struct timer_list icsk_retransmit_timer; + struct timer_list icsk_delack_timer; + __u32 icsk_rto; + __u32 icsk_rto_min; + __u32 icsk_delack_max; + __u32 icsk_pmtu_cookie; + const struct tcp_congestion_ops *icsk_ca_ops; + const struct inet_connection_sock_af_ops *icsk_af_ops; + const struct tcp_ulp_ops *icsk_ulp_ops; + void *icsk_ulp_data; + void (*icsk_clean_acked)(struct sock *, u32); + unsigned int (*icsk_sync_mss)(struct sock *, u32); + __u8 icsk_ca_state: 5; + __u8 icsk_ca_initialized: 1; + __u8 icsk_ca_setsockopt: 1; + __u8 icsk_ca_dst_locked: 1; + __u8 icsk_retransmits; + __u8 icsk_pending; + __u8 icsk_backoff; + __u8 icsk_syn_retries; + __u8 icsk_probes_out; + __u16 icsk_ext_hdr_len; + struct { + __u8 pending; + __u8 quick; + __u8 pingpong; + __u8 retry; + __u32 ato: 8; + __u32 lrcv_flowlabel: 20; + __u32 unused: 4; + long unsigned int timeout; + __u32 lrcvtime; + __u16 last_seg_size; + __u16 rcv_mss; + } icsk_ack; + struct { + int search_high; + int search_low; + u32 probe_size: 31; + u32 enabled: 1; + u32 probe_timestamp; + } icsk_mtup; + u32 icsk_probes_tstamp; + u32 icsk_user_timeout; + u64 icsk_ca_priv[13]; +}; + +struct tcp_ulp_ops { + struct list_head list; + int (*init)(struct sock *); + void (*update)(struct sock *, struct proto *, void (*)(struct sock *)); + void (*release)(struct sock *); + int (*get_info)(struct sock *, struct sk_buff *); + size_t (*get_info_size)(const struct sock *); + void (*clone)(const struct request_sock *, struct sock *, const gfp_t); + char name[16]; + struct module *owner; +}; + +struct tcp_fastopen_cookie { + __le64 val[2]; + s8 len; + bool exp; +}; + +struct tcp_sack_block { + u32 start_seq; + u32 end_seq; +}; + +struct tcp_options_received { + int ts_recent_stamp; + u32 ts_recent; + u32 rcv_tsval; + u32 rcv_tsecr; + u16 saw_tstamp: 1; + u16 tstamp_ok: 1; + u16 dsack: 1; + u16 wscale_ok: 1; + u16 sack_ok: 3; + u16 smc_ok: 1; + u16 snd_wscale: 4; + u16 rcv_wscale: 4; + u8 saw_unknown: 1; + u8 unused: 7; + u8 num_sacks; + u16 user_mss; + u16 mss_clamp; +}; + +struct tcp_rack { + u64 mstamp; + u32 rtt_us; + u32 end_seq; + u32 last_delivered; + u8 reo_wnd_steps; + u8 reo_wnd_persist: 5; + u8 dsack_seen: 1; + u8 advanced: 1; +}; + +struct tcp_fastopen_request; + +struct tcp_sock { + struct inet_connection_sock inet_conn; + __u8 __cacheline_group_begin__tcp_sock_read_tx[0]; + u32 max_window; + u32 rcv_ssthresh; + u32 reordering; + u32 notsent_lowat; + u16 gso_segs; + struct sk_buff *lost_skb_hint; + struct sk_buff *retransmit_skb_hint; + __u8 __cacheline_group_end__tcp_sock_read_tx[0]; + __u8 __cacheline_group_begin__tcp_sock_read_txrx[0]; + u32 tsoffset; + u32 snd_wnd; + u32 mss_cache; + u32 snd_cwnd; + u32 prr_out; + u32 lost_out; + u32 sacked_out; + u16 tcp_header_len; + u8 scaling_ratio; + u8 chrono_type: 2; + u8 repair: 1; + u8 tcp_usec_ts: 1; + u8 is_sack_reneg: 1; + u8 is_cwnd_limited: 1; + __u8 __cacheline_group_end__tcp_sock_read_txrx[0]; + __u8 __cacheline_group_begin__tcp_sock_read_rx[0]; + u32 copied_seq; + u32 rcv_tstamp; + u32 snd_wl1; + u32 tlp_high_seq; + u32 rttvar_us; + u32 retrans_out; + u16 advmss; + u16 urg_data; + u32 lost; + struct minmax rtt_min; + struct rb_root out_of_order_queue; + u32 snd_ssthresh; + u8 recvmsg_inq: 1; + __u8 __cacheline_group_end__tcp_sock_read_rx[0]; + long: 0; + __u8 __cacheline_group_begin__tcp_sock_write_tx[0]; + u32 segs_out; + u32 data_segs_out; + u64 bytes_sent; + u32 snd_sml; + u32 chrono_start; + u32 chrono_stat[3]; + u32 write_seq; + u32 pushed_seq; + u32 lsndtime; + u32 mdev_us; + u32 rtt_seq; + u64 tcp_wstamp_ns; + struct list_head tsorted_sent_queue; + struct sk_buff *highest_sack; + u8 ecn_flags; + __u8 __cacheline_group_end__tcp_sock_write_tx[0]; + __u8 __cacheline_group_begin__tcp_sock_write_txrx[0]; + __be32 pred_flags; + u64 tcp_clock_cache; + u64 tcp_mstamp; + u32 rcv_nxt; + u32 snd_nxt; + u32 snd_una; + u32 window_clamp; + u32 srtt_us; + u32 packets_out; + u32 snd_up; + u32 delivered; + u32 delivered_ce; + u32 app_limited; + u32 rcv_wnd; + struct tcp_options_received rx_opt; + u8 nonagle: 4; + u8 rate_app_limited: 1; + __u8 __cacheline_group_end__tcp_sock_write_txrx[0]; + long: 0; + __u8 __cacheline_group_begin__tcp_sock_write_rx[0]; + u64 bytes_received; + u32 segs_in; + u32 data_segs_in; + u32 rcv_wup; + u32 max_packets_out; + u32 cwnd_usage_seq; + u32 rate_delivered; + u32 rate_interval_us; + u32 rcv_rtt_last_tsecr; + u64 first_tx_mstamp; + u64 delivered_mstamp; + u64 bytes_acked; + struct { + u32 rtt_us; + u32 seq; + u64 time; + } rcv_rtt_est; + struct { + int space; + u32 seq; + u64 time; + } rcvq_space; + __u8 __cacheline_group_end__tcp_sock_write_rx[0]; + u32 dsack_dups; + u32 compressed_ack_rcv_nxt; + struct list_head tsq_node; + struct tcp_rack rack; + u8 compressed_ack; + u8 dup_ack_counter: 2; + u8 tlp_retrans: 1; + u8 unused: 5; + u8 thin_lto: 1; + u8 fastopen_connect: 1; + u8 fastopen_no_cookie: 1; + u8 fastopen_client_fail: 2; + u8 frto: 1; + u8 repair_queue; + u8 save_syn: 2; + u8 syn_data: 1; + u8 syn_fastopen: 1; + u8 syn_fastopen_exp: 1; + u8 syn_fastopen_ch: 1; + u8 syn_data_acked: 1; + u8 keepalive_probes; + u32 tcp_tx_delay; + u32 mdev_max_us; + u32 reord_seen; + u32 snd_cwnd_cnt; + u32 snd_cwnd_clamp; + u32 snd_cwnd_used; + u32 snd_cwnd_stamp; + u32 prior_cwnd; + u32 prr_delivered; + u32 last_oow_ack_time; + struct hrtimer pacing_timer; + struct hrtimer compressed_ack_timer; + struct sk_buff *ooo_last_skb; + struct tcp_sack_block duplicate_sack[1]; + struct tcp_sack_block selective_acks[4]; + struct tcp_sack_block recv_sack_cache[4]; + int lost_cnt_hint; + u32 prior_ssthresh; + u32 high_seq; + u32 retrans_stamp; + u32 undo_marker; + int undo_retrans; + u64 bytes_retrans; + u32 total_retrans; + u32 rto_stamp; + u16 total_rto; + u16 total_rto_recoveries; + u32 total_rto_time; + u32 urg_seq; + unsigned int keepalive_time; + unsigned int keepalive_intvl; + int linger2; + u8 bpf_sock_ops_cb_flags; + u8 bpf_chg_cc_inprogress: 1; + u16 timeout_rehash; + u32 rcv_ooopack; + struct { + u32 probe_seq_start; + u32 probe_seq_end; + } mtu_probe; + u32 plb_rehash; + u32 mtu_info; + struct tcp_fastopen_request *fastopen_req; + struct request_sock *fastopen_rsk; + struct saved_syn *saved_syn; + long: 64; +}; + +struct tcp_fastopen_request { + struct tcp_fastopen_cookie cookie; + struct msghdr *data; + size_t size; + int copied; + struct ubuf_info *uarg; +}; + +enum tcp_skb_cb_sacked_flags { + TCPCB_SACKED_ACKED = 1, + TCPCB_SACKED_RETRANS = 2, + TCPCB_LOST = 4, + TCPCB_TAGBITS = 7, + TCPCB_REPAIRED = 16, + TCPCB_EVER_RETRANS = 128, + TCPCB_RETRANS = 146, +}; + +struct tcp_skb_cb { + __u32 seq; + __u32 end_seq; + union { + struct { + u16 tcp_gso_segs; + u16 tcp_gso_size; + }; + }; + __u8 tcp_flags; + __u8 sacked; + __u8 ip_dsfield; + __u8 txstamp_ack: 1; + __u8 eor: 1; + __u8 has_rxtstamp: 1; + __u8 unused: 5; + __u32 ack_seq; + union { + struct { + __u32 is_app_limited: 1; + __u32 delivered_ce: 20; + __u32 unused: 11; + __u32 delivered; + u64 first_tx_mstamp; + u64 delivered_mstamp; + } tx; + union { + struct inet_skb_parm h4; + struct inet6_skb_parm h6; + } header; + }; +}; + +struct flow_dissector_key_control { + u16 thoff; + u16 addr_type; + u32 flags; +}; + +struct flow_dissector_key_basic { + __be16 n_proto; + u8 ip_proto; + u8 padding; +}; + +struct flow_dissector_key_tags { + u32 flow_label; +}; + +struct flow_dissector_key_vlan { + union { + struct { + u16 vlan_id: 12; + u16 vlan_dei: 1; + u16 vlan_priority: 3; + }; + __be16 vlan_tci; + }; + __be16 vlan_tpid; + __be16 vlan_eth_type; + u16 padding; +}; + +struct flow_dissector_key_keyid { + __be32 keyid; +}; + +struct flow_dissector_key_ipv4_addrs { + __be32 src; + __be32 dst; +}; + +struct flow_dissector_key_ipv6_addrs { + struct in6_addr src; + struct in6_addr dst; +}; + +struct flow_dissector_key_tipc { + __be32 key; +}; + +struct flow_dissector_key_addrs { + union { + struct flow_dissector_key_ipv4_addrs v4addrs; + struct flow_dissector_key_ipv6_addrs v6addrs; + struct flow_dissector_key_tipc tipckey; + }; +}; + +struct flow_dissector_key_ports { + union { + __be32 ports; + struct { + __be16 src; + __be16 dst; + }; + }; +}; + +struct flow_dissector_key_icmp { + struct { + u8 type; + u8 code; + }; + u16 id; +}; + +struct flow_keys { + struct flow_dissector_key_control control; + struct flow_dissector_key_basic basic; + struct flow_dissector_key_tags tags; + struct flow_dissector_key_vlan vlan; + struct flow_dissector_key_vlan cvlan; + struct flow_dissector_key_keyid keyid; + struct flow_dissector_key_ports ports; + struct flow_dissector_key_icmp icmp; + struct flow_dissector_key_addrs addrs; + long: 0; +}; + +struct rtmsg { + unsigned char rtm_family; + unsigned char rtm_dst_len; + unsigned char rtm_src_len; + unsigned char rtm_tos; + unsigned char rtm_table; + unsigned char rtm_protocol; + unsigned char rtm_scope; + unsigned char rtm_type; + unsigned int rtm_flags; +}; + +enum rt_class_t { + RT_TABLE_UNSPEC = 0, + RT_TABLE_COMPAT = 252, + RT_TABLE_DEFAULT = 253, + RT_TABLE_MAIN = 254, + RT_TABLE_LOCAL = 255, + RT_TABLE_MAX = 4294967295, +}; + +enum rtattr_type_t { + RTA_UNSPEC = 0, + RTA_DST = 1, + RTA_SRC = 2, + RTA_IIF = 3, + RTA_OIF = 4, + RTA_GATEWAY = 5, + RTA_PRIORITY = 6, + RTA_PREFSRC = 7, + RTA_METRICS = 8, + RTA_MULTIPATH = 9, + RTA_PROTOINFO = 10, + RTA_FLOW = 11, + RTA_CACHEINFO = 12, + RTA_SESSION = 13, + RTA_MP_ALGO = 14, + RTA_TABLE = 15, + RTA_MARK = 16, + RTA_MFC_STATS = 17, + RTA_VIA = 18, + RTA_NEWDST = 19, + RTA_PREF = 20, + RTA_ENCAP_TYPE = 21, + RTA_ENCAP = 22, + RTA_EXPIRES = 23, + RTA_PAD = 24, + RTA_UID = 25, + RTA_TTL_PROPAGATE = 26, + RTA_IP_PROTO = 27, + RTA_SPORT = 28, + RTA_DPORT = 29, + RTA_NH_ID = 30, + __RTA_MAX = 31, +}; + +struct rtnexthop { + short unsigned int rtnh_len; + unsigned char rtnh_flags; + unsigned char rtnh_hops; + int rtnh_ifindex; +}; + +struct rtvia { + __kernel_sa_family_t rtvia_family; + __u8 rtvia_addr[0]; +}; + +enum rtnetlink_groups { + RTNLGRP_NONE = 0, + RTNLGRP_LINK = 1, + RTNLGRP_NOTIFY = 2, + RTNLGRP_NEIGH = 3, + RTNLGRP_TC = 4, + RTNLGRP_IPV4_IFADDR = 5, + RTNLGRP_IPV4_MROUTE = 6, + RTNLGRP_IPV4_ROUTE = 7, + RTNLGRP_IPV4_RULE = 8, + RTNLGRP_IPV6_IFADDR = 9, + RTNLGRP_IPV6_MROUTE = 10, + RTNLGRP_IPV6_ROUTE = 11, + RTNLGRP_IPV6_IFINFO = 12, + RTNLGRP_DECnet_IFADDR = 13, + RTNLGRP_NOP2 = 14, + RTNLGRP_DECnet_ROUTE = 15, + RTNLGRP_DECnet_RULE = 16, + RTNLGRP_NOP4 = 17, + RTNLGRP_IPV6_PREFIX = 18, + RTNLGRP_IPV6_RULE = 19, + RTNLGRP_ND_USEROPT = 20, + RTNLGRP_PHONET_IFADDR = 21, + RTNLGRP_PHONET_ROUTE = 22, + RTNLGRP_DCB = 23, + RTNLGRP_IPV4_NETCONF = 24, + RTNLGRP_IPV6_NETCONF = 25, + RTNLGRP_MDB = 26, + RTNLGRP_MPLS_ROUTE = 27, + RTNLGRP_NSID = 28, + RTNLGRP_MPLS_NETCONF = 29, + RTNLGRP_IPV4_MROUTE_R = 30, + RTNLGRP_IPV6_MROUTE_R = 31, + RTNLGRP_NEXTHOP = 32, + RTNLGRP_BRVLAN = 33, + RTNLGRP_MCTP_IFADDR = 34, + RTNLGRP_TUNNEL = 35, + RTNLGRP_STATS = 36, + __RTNLGRP_MAX = 37, +}; + +struct nl_info { + struct nlmsghdr *nlh; + struct net *nl_net; + u32 portid; + u8 skip_notify: 1; + u8 skip_notify_kernel: 1; +}; + +typedef u8 dscp_t; + +struct fib_notifier_info { + int family; + struct netlink_ext_ack *extack; +}; + +enum fib_event_type { + FIB_EVENT_ENTRY_REPLACE = 0, + FIB_EVENT_ENTRY_APPEND = 1, + FIB_EVENT_ENTRY_ADD = 2, + FIB_EVENT_ENTRY_DEL = 3, + FIB_EVENT_RULE_ADD = 4, + FIB_EVENT_RULE_DEL = 5, + FIB_EVENT_NH_ADD = 6, + FIB_EVENT_NH_DEL = 7, + FIB_EVENT_VIF_ADD = 8, + FIB_EVENT_VIF_DEL = 9, +}; + +struct fib_config { + u8 fc_dst_len; + dscp_t fc_dscp; + u8 fc_protocol; + u8 fc_scope; + u8 fc_type; + u8 fc_gw_family; + u32 fc_table; + __be32 fc_dst; + union { + __be32 fc_gw4; + struct in6_addr fc_gw6; + }; + int fc_oif; + u32 fc_flags; + u32 fc_priority; + __be32 fc_prefsrc; + u32 fc_nh_id; + struct nlattr *fc_mx; + struct rtnexthop *fc_mp; + int fc_mx_len; + int fc_mp_len; + u32 fc_flow; + u32 fc_nlflags; + struct nl_info fc_nlinfo; + struct nlattr *fc_encap; + u16 fc_encap_type; +}; + +struct fib_result { + __be32 prefix; + unsigned char prefixlen; + unsigned char nh_sel; + unsigned char type; + unsigned char scope; + u32 tclassid; + dscp_t dscp; + struct fib_nh_common *nhc; + struct fib_info *fi; + struct fib_table *table; + struct hlist_head *fa_head; +}; + +struct fib_rt_info { + struct fib_info *fi; + u32 tb_id; + __be32 dst; + int dst_len; + dscp_t dscp; + u8 type; + u8 offload: 1; + u8 trap: 1; + u8 offload_failed: 1; + u8 unused: 5; +}; + +struct fib_nh_notifier_info { + struct fib_notifier_info info; + struct fib_nh *fib_nh; +}; + +struct fib6_result; + +struct fib6_config; + +struct ipv6_stub { + int (*ipv6_sock_mc_join)(struct sock *, int, const struct in6_addr *); + int (*ipv6_sock_mc_drop)(struct sock *, int, const struct in6_addr *); + struct dst_entry * (*ipv6_dst_lookup_flow)(struct net *, const struct sock *, struct flowi6 *, const struct in6_addr *); + int (*ipv6_route_input)(struct sk_buff *); + struct fib6_table * (*fib6_get_table)(struct net *, u32); + int (*fib6_lookup)(struct net *, int, struct flowi6 *, struct fib6_result *, int); + int (*fib6_table_lookup)(struct net *, struct fib6_table *, int, struct flowi6 *, struct fib6_result *, int); + void (*fib6_select_path)(const struct net *, struct fib6_result *, struct flowi6 *, int, bool, const struct sk_buff *, int); + u32 (*ip6_mtu_from_fib6)(const struct fib6_result *, const struct in6_addr *, const struct in6_addr *); + int (*fib6_nh_init)(struct net *, struct fib6_nh *, struct fib6_config *, gfp_t, struct netlink_ext_ack *); + void (*fib6_nh_release)(struct fib6_nh *); + void (*fib6_nh_release_dsts)(struct fib6_nh *); + void (*fib6_update_sernum)(struct net *, struct fib6_info *); + int (*ip6_del_rt)(struct net *, struct fib6_info *, bool); + void (*fib6_rt_update)(struct net *, struct fib6_info *, struct nl_info *); + void (*udpv6_encap_enable)(void); + void (*ndisc_send_na)(struct net_device *, const struct in6_addr *, const struct in6_addr *, bool, bool, bool, bool); + void (*xfrm6_local_rxpmtu)(struct sk_buff *, u32); + int (*xfrm6_udp_encap_rcv)(struct sock *, struct sk_buff *); + struct sk_buff * (*xfrm6_gro_udp_encap_rcv)(struct sock *, struct list_head *, struct sk_buff *); + int (*xfrm6_rcv_encap)(struct sk_buff *, int, __be32, int); + struct neigh_table *nd_tbl; + int (*ipv6_fragment)(struct net *, struct sock *, struct sk_buff *, int (*)(struct net *, struct sock *, struct sk_buff *)); + struct net_device * (*ipv6_dev_find)(struct net *, const struct in6_addr *, struct net_device *); + int (*ip6_xmit)(const struct sock *, struct sk_buff *, struct flowi6 *, __u32, struct ipv6_txoptions *, int, u32); +}; + +struct fib6_result { + struct fib6_nh *nh; + struct fib6_info *f6i; + u32 fib6_flags; + u8 fib6_type; + struct rt6_info *rt6; +}; + +struct fib6_config { + u32 fc_table; + u32 fc_metric; + int fc_dst_len; + int fc_src_len; + int fc_ifindex; + u32 fc_flags; + u32 fc_protocol; + u16 fc_type; + u16 fc_delete_all_nh: 1; + u16 fc_ignore_dev_down: 1; + u16 __unused: 14; + u32 fc_nh_id; + struct in6_addr fc_dst; + struct in6_addr fc_src; + struct in6_addr fc_prefsrc; + struct in6_addr fc_gateway; + long unsigned int fc_expires; + struct nlattr *fc_mx; + int fc_mx_len; + int fc_mp_len; + struct nlattr *fc_mp; + struct nl_info fc_nlinfo; + struct nlattr *fc_encap; + u16 fc_encap_type; + bool fc_is_fdb; +}; + +enum lwtunnel_encap_types { + LWTUNNEL_ENCAP_NONE = 0, + LWTUNNEL_ENCAP_MPLS = 1, + LWTUNNEL_ENCAP_IP = 2, + LWTUNNEL_ENCAP_ILA = 3, + LWTUNNEL_ENCAP_IP6 = 4, + LWTUNNEL_ENCAP_SEG6 = 5, + LWTUNNEL_ENCAP_BPF = 6, + LWTUNNEL_ENCAP_SEG6_LOCAL = 7, + LWTUNNEL_ENCAP_RPL = 8, + LWTUNNEL_ENCAP_IOAM6 = 9, + LWTUNNEL_ENCAP_XFRM = 10, + __LWTUNNEL_ENCAP_MAX = 11, +}; + +struct fib_alias { + struct hlist_node fa_list; + struct fib_info *fa_info; + dscp_t fa_dscp; + u8 fa_type; + u8 fa_state; + u8 fa_slen; + u32 tb_id; + s16 fa_default; + u8 offload; + u8 trap; + u8 offload_failed; + struct callback_head rcu; +}; + +struct fib_prop { + int error; + u8 scope; +}; + +struct udp_hslot; + +struct udp_table { + struct udp_hslot *hash; + struct udp_hslot *hash2; + unsigned int mask; + unsigned int log; +}; + +struct udp_hslot { + struct hlist_head head; + int count; + spinlock_t lock; +}; + +enum netevent_notif_type { + NETEVENT_NEIGH_UPDATE = 1, + NETEVENT_REDIRECT = 2, + NETEVENT_DELAY_PROBE_TIME_UPDATE = 3, + NETEVENT_IPV4_MPATH_HASH_UPDATE = 4, + NETEVENT_IPV6_MPATH_HASH_UPDATE = 5, + NETEVENT_IPV4_FWD_UPDATE_PRIORITY_UPDATE = 6, +}; + +struct rtentry { + long unsigned int rt_pad1; + struct sockaddr rt_dst; + struct sockaddr rt_gateway; + struct sockaddr rt_genmask; + short unsigned int rt_flags; + short int rt_pad2; + long unsigned int rt_pad3; + void *rt_pad4; + short int rt_metric; + char *rt_dev; + long unsigned int rt_mtu; + long unsigned int rt_window; + short unsigned int rt_irtt; +}; + +enum { + Root_NFS = 255, + Root_CIFS = 254, + Root_Generic = 253, + Root_RAM0 = 1048576, +}; + +struct ic_device { + struct ic_device *next; + struct net_device *dev; + short unsigned int flags; + short int able; + __be32 xid; +}; + +struct bootp_pkt { + struct iphdr iph; + struct udphdr udph; + u8 op; + u8 htype; + u8 hlen; + u8 hops; + __be32 xid; + __be16 secs; + __be16 flags; + __be32 client_ip; + __be32 your_ip; + __be32 server_ip; + __be32 relay_ip; + u8 hw_addr[16]; + u8 serv_name[64]; + u8 boot_file[128]; + u8 exten[312]; +}; + +enum nf_hook_ops_type { + NF_HOOK_OP_UNDEFINED = 0, + NF_HOOK_OP_NF_TABLES = 1, + NF_HOOK_OP_BPF = 2, +}; + +struct nf_hook_ops { + nf_hookfn *hook; + struct net_device *dev; + void *priv; + u8 pf; + enum nf_hook_ops_type hook_ops_type: 8; + unsigned int hooknum; + int priority; +}; + +enum nf_ip_hook_priorities { + NF_IP_PRI_FIRST = -2147483648, + NF_IP_PRI_RAW_BEFORE_DEFRAG = -450, + NF_IP_PRI_CONNTRACK_DEFRAG = -400, + NF_IP_PRI_RAW = -300, + NF_IP_PRI_SELINUX_FIRST = -225, + NF_IP_PRI_CONNTRACK = -200, + NF_IP_PRI_MANGLE = -150, + NF_IP_PRI_NAT_DST = -100, + NF_IP_PRI_FILTER = 0, + NF_IP_PRI_SECURITY = 50, + NF_IP_PRI_NAT_SRC = 100, + NF_IP_PRI_SELINUX_LAST = 225, + NF_IP_PRI_CONNTRACK_HELPER = 300, + NF_IP_PRI_CONNTRACK_CONFIRM = 2147483647, + NF_IP_PRI_LAST = 2147483647, +}; + +struct xt_counters { + __u64 pcnt; + __u64 bcnt; +}; + +struct xt_table_info; + +struct xt_table { + struct list_head list; + unsigned int valid_hooks; + struct xt_table_info *private; + struct nf_hook_ops *ops; + struct module *me; + u_int8_t af; + int priority; + const char name[32]; +}; + +struct xt_table_info { + unsigned int size; + unsigned int number; + unsigned int initial_entries; + unsigned int hook_entry[5]; + unsigned int underflow[5]; + unsigned int stacksize; + void ***jumpstack; + unsigned char entries[0]; +}; + +struct ipt_ip { + struct in_addr src; + struct in_addr dst; + struct in_addr smsk; + struct in_addr dmsk; + char iniface[16]; + char outiface[16]; + unsigned char iniface_mask[16]; + unsigned char outiface_mask[16]; + __u16 proto; + __u8 flags; + __u8 invflags; +}; + +struct ipt_entry { + struct ipt_ip ip; + unsigned int nfcache; + __u16 target_offset; + __u16 next_offset; + unsigned int comefrom; + struct xt_counters counters; + unsigned char elems[0]; +}; + +struct ipt_replace { + char name[32]; + unsigned int valid_hooks; + unsigned int num_entries; + unsigned int size; + unsigned int hook_entry[5]; + unsigned int underflow[5]; + unsigned int num_counters; + struct xt_counters *counters; + struct ipt_entry entries[0]; +}; + +struct iptable_nat_pernet { + struct nf_hook_ops *nf_nat_ops; +}; + +enum sock_type { + SOCK_STREAM = 1, + SOCK_DGRAM = 2, + SOCK_RAW = 3, + SOCK_RDM = 4, + SOCK_SEQPACKET = 5, + SOCK_DCCP = 6, + SOCK_PACKET = 10, +}; + +struct nat_keepalive { + struct net *net; + u16 family; + xfrm_address_t saddr; + xfrm_address_t daddr; + __be16 encap_sport; + __be16 encap_dport; + __u32 smark; +}; + +struct nat_keepalive_work_ctx { + time64_t next_run; + time64_t now; +}; + +enum { + ICMP6_MIB_NUM = 0, + ICMP6_MIB_INMSGS = 1, + ICMP6_MIB_INERRORS = 2, + ICMP6_MIB_OUTMSGS = 3, + ICMP6_MIB_OUTERRORS = 4, + ICMP6_MIB_CSUMERRORS = 5, + ICMP6_MIB_RATELIMITHOST = 6, + __ICMP6_MIB_MAX = 7, +}; + +struct icmpv6_echo { + __be16 identifier; + __be16 sequence; +}; + +struct icmpv6_nd_advt { + __u32 reserved: 5; + __u32 override: 1; + __u32 solicited: 1; + __u32 router: 1; + __u32 reserved2: 24; +}; + +struct icmpv6_nd_ra { + __u8 hop_limit; + __u8 reserved: 3; + __u8 router_pref: 2; + __u8 home_agent: 1; + __u8 other: 1; + __u8 managed: 1; + __be16 rt_lifetime; +}; + +struct icmp6hdr { + __u8 icmp6_type; + __u8 icmp6_code; + __sum16 icmp6_cksum; + union { + __be32 un_data32[1]; + __be16 un_data16[2]; + __u8 un_data8[4]; + struct icmpv6_echo u_echo; + struct icmpv6_nd_advt u_nd_advt; + struct icmpv6_nd_ra u_nd_ra; + } icmp6_dataun; +}; + +struct netdev_notifier_change_info { + struct netdev_notifier_info info; + unsigned int flags_changed; +}; + +enum { + RTM_BASE = 16, + RTM_NEWLINK = 16, + RTM_DELLINK = 17, + RTM_GETLINK = 18, + RTM_SETLINK = 19, + RTM_NEWADDR = 20, + RTM_DELADDR = 21, + RTM_GETADDR = 22, + RTM_NEWROUTE = 24, + RTM_DELROUTE = 25, + RTM_GETROUTE = 26, + RTM_NEWNEIGH = 28, + RTM_DELNEIGH = 29, + RTM_GETNEIGH = 30, + RTM_NEWRULE = 32, + RTM_DELRULE = 33, + RTM_GETRULE = 34, + RTM_NEWQDISC = 36, + RTM_DELQDISC = 37, + RTM_GETQDISC = 38, + RTM_NEWTCLASS = 40, + RTM_DELTCLASS = 41, + RTM_GETTCLASS = 42, + RTM_NEWTFILTER = 44, + RTM_DELTFILTER = 45, + RTM_GETTFILTER = 46, + RTM_NEWACTION = 48, + RTM_DELACTION = 49, + RTM_GETACTION = 50, + RTM_NEWPREFIX = 52, + RTM_GETMULTICAST = 58, + RTM_GETANYCAST = 62, + RTM_NEWNEIGHTBL = 64, + RTM_GETNEIGHTBL = 66, + RTM_SETNEIGHTBL = 67, + RTM_NEWNDUSEROPT = 68, + RTM_NEWADDRLABEL = 72, + RTM_DELADDRLABEL = 73, + RTM_GETADDRLABEL = 74, + RTM_GETDCB = 78, + RTM_SETDCB = 79, + RTM_NEWNETCONF = 80, + RTM_DELNETCONF = 81, + RTM_GETNETCONF = 82, + RTM_NEWMDB = 84, + RTM_DELMDB = 85, + RTM_GETMDB = 86, + RTM_NEWNSID = 88, + RTM_DELNSID = 89, + RTM_GETNSID = 90, + RTM_NEWSTATS = 92, + RTM_GETSTATS = 94, + RTM_SETSTATS = 95, + RTM_NEWCACHEREPORT = 96, + RTM_NEWCHAIN = 100, + RTM_DELCHAIN = 101, + RTM_GETCHAIN = 102, + RTM_NEWNEXTHOP = 104, + RTM_DELNEXTHOP = 105, + RTM_GETNEXTHOP = 106, + RTM_NEWLINKPROP = 108, + RTM_DELLINKPROP = 109, + RTM_GETLINKPROP = 110, + RTM_NEWVLAN = 112, + RTM_DELVLAN = 113, + RTM_GETVLAN = 114, + RTM_NEWNEXTHOPBUCKET = 116, + RTM_DELNEXTHOPBUCKET = 117, + RTM_GETNEXTHOPBUCKET = 118, + RTM_NEWTUNNEL = 120, + RTM_DELTUNNEL = 121, + RTM_GETTUNNEL = 122, + __RTM_MAX = 123, +}; + +struct nduseroptmsg { + unsigned char nduseropt_family; + unsigned char nduseropt_pad1; + short unsigned int nduseropt_opts_len; + int nduseropt_ifindex; + __u8 nduseropt_icmp_type; + __u8 nduseropt_icmp_code; + short unsigned int nduseropt_pad2; + unsigned int nduseropt_pad3; +}; + +enum { + NDUSEROPT_UNSPEC = 0, + NDUSEROPT_SRCADDR = 1, + __NDUSEROPT_MAX = 2, +}; + +enum { + NEIGH_ARP_TABLE = 0, + NEIGH_ND_TABLE = 1, + NEIGH_DN_TABLE = 2, + NEIGH_NR_TABLES = 3, + NEIGH_LINK_TABLE = 3, +}; + +struct neighbour_cb { + long unsigned int sched_next; + unsigned int flags; +}; + +struct nd_msg { + struct icmp6hdr icmph; + struct in6_addr target; + __u8 opt[0]; +}; + +struct rs_msg { + struct icmp6hdr icmph; + __u8 opt[0]; +}; + +struct ra_msg { + struct icmp6hdr icmph; + __be32 reachable_time; + __be32 retrans_timer; +}; + +struct rd_msg { + struct icmp6hdr icmph; + struct in6_addr target; + struct in6_addr dest; + __u8 opt[0]; +}; + +struct ioam6_trace_hdr { + __be16 namespace_id; + char: 2; + __u8 overflow: 1; + __u8 nodelen: 5; + __u8 remlen: 7; + union { + __be32 type_be32; + struct { + __u32 bit7: 1; + __u32 bit6: 1; + __u32 bit5: 1; + __u32 bit4: 1; + __u32 bit3: 1; + __u32 bit2: 1; + __u32 bit1: 1; + __u32 bit0: 1; + __u32 bit15: 1; + __u32 bit14: 1; + __u32 bit13: 1; + __u32 bit12: 1; + __u32 bit11: 1; + __u32 bit10: 1; + __u32 bit9: 1; + __u32 bit8: 1; + __u32 bit23: 1; + __u32 bit22: 1; + __u32 bit21: 1; + __u32 bit20: 1; + __u32 bit19: 1; + __u32 bit18: 1; + __u32 bit17: 1; + __u32 bit16: 1; + } type; + }; + __u8 data[0]; +}; + +enum { + IOAM6_ATTR_UNSPEC = 0, + IOAM6_ATTR_NS_ID = 1, + IOAM6_ATTR_NS_DATA = 2, + IOAM6_ATTR_NS_DATA_WIDE = 3, + IOAM6_ATTR_SC_ID = 4, + IOAM6_ATTR_SC_DATA = 5, + IOAM6_ATTR_SC_NONE = 6, + IOAM6_ATTR_PAD = 7, + __IOAM6_ATTR_MAX = 8, +}; + +enum { + IOAM6_CMD_UNSPEC = 0, + IOAM6_CMD_ADD_NAMESPACE = 1, + IOAM6_CMD_DEL_NAMESPACE = 2, + IOAM6_CMD_DUMP_NAMESPACES = 3, + IOAM6_CMD_ADD_SCHEMA = 4, + IOAM6_CMD_DEL_SCHEMA = 5, + IOAM6_CMD_DUMP_SCHEMAS = 6, + IOAM6_CMD_NS_SET_SCHEMA = 7, + __IOAM6_CMD_MAX = 8, +}; + +enum ioam6_event_type { + IOAM6_EVENT_UNSPEC = 0, + IOAM6_EVENT_TRACE = 1, +}; + +enum ioam6_event_attr { + IOAM6_EVENT_ATTR_UNSPEC = 0, + IOAM6_EVENT_ATTR_TRACE_NAMESPACE = 1, + IOAM6_EVENT_ATTR_TRACE_NODELEN = 2, + IOAM6_EVENT_ATTR_TRACE_TYPE = 3, + IOAM6_EVENT_ATTR_TRACE_DATA = 4, + __IOAM6_EVENT_ATTR_MAX = 5, +}; + +struct __una_u32 { + u32 x; +}; + +struct rhashtable_walker { + struct list_head list; + struct bucket_table *tbl; +}; + +struct rhashtable_iter { + struct rhashtable *ht; + struct rhash_head *p; + struct rhlist_head *list; + struct rhashtable_walker walker; + unsigned int slot; + unsigned int skip; + bool end_of_table; +}; + +struct ioam6_pernet_data { + struct mutex lock; + struct rhashtable namespaces; + struct rhashtable schemas; +}; + +enum skb_tstamp_type { + SKB_CLOCK_REALTIME = 0, + SKB_CLOCK_MONOTONIC = 1, + SKB_CLOCK_TAI = 2, + __SKB_CLOCK_MAX = 2, +}; + +typedef int (*netlink_filter_fn)(struct sock *, struct sk_buff *, void *); + +enum genl_validate_flags { + GENL_DONT_VALIDATE_STRICT = 1, + GENL_DONT_VALIDATE_DUMP = 2, + GENL_DONT_VALIDATE_DUMP_STRICT = 4, +}; + +struct ioam6_schema; + +struct ioam6_namespace { + struct rhash_head head; + struct callback_head rcu; + struct ioam6_schema *schema; + __be16 id; + __be32 data; + __be64 data_wide; +}; + +struct ioam6_schema { + struct rhash_head head; + struct callback_head rcu; + struct ioam6_namespace *ns; + u32 id; + int len; + __be32 hdr; + u8 data[0]; +}; + +enum { + CRYPTO_AUTHENC_KEYA_UNSPEC = 0, + CRYPTO_AUTHENC_KEYA_PARAM = 1, +}; + +struct crypto_authenc_key_param { + __be32 enckeylen; +}; + +enum { + LINUX_MIB_XFRMNUM = 0, + LINUX_MIB_XFRMINERROR = 1, + LINUX_MIB_XFRMINBUFFERERROR = 2, + LINUX_MIB_XFRMINHDRERROR = 3, + LINUX_MIB_XFRMINNOSTATES = 4, + LINUX_MIB_XFRMINSTATEPROTOERROR = 5, + LINUX_MIB_XFRMINSTATEMODEERROR = 6, + LINUX_MIB_XFRMINSTATESEQERROR = 7, + LINUX_MIB_XFRMINSTATEEXPIRED = 8, + LINUX_MIB_XFRMINSTATEMISMATCH = 9, + LINUX_MIB_XFRMINSTATEINVALID = 10, + LINUX_MIB_XFRMINTMPLMISMATCH = 11, + LINUX_MIB_XFRMINNOPOLS = 12, + LINUX_MIB_XFRMINPOLBLOCK = 13, + LINUX_MIB_XFRMINPOLERROR = 14, + LINUX_MIB_XFRMOUTERROR = 15, + LINUX_MIB_XFRMOUTBUNDLEGENERROR = 16, + LINUX_MIB_XFRMOUTBUNDLECHECKERROR = 17, + LINUX_MIB_XFRMOUTNOSTATES = 18, + LINUX_MIB_XFRMOUTSTATEPROTOERROR = 19, + LINUX_MIB_XFRMOUTSTATEMODEERROR = 20, + LINUX_MIB_XFRMOUTSTATESEQERROR = 21, + LINUX_MIB_XFRMOUTSTATEEXPIRED = 22, + LINUX_MIB_XFRMOUTPOLBLOCK = 23, + LINUX_MIB_XFRMOUTPOLDEAD = 24, + LINUX_MIB_XFRMOUTPOLERROR = 25, + LINUX_MIB_XFRMFWDHDRERROR = 26, + LINUX_MIB_XFRMOUTSTATEINVALID = 27, + LINUX_MIB_XFRMACQUIREERROR = 28, + LINUX_MIB_XFRMOUTSTATEDIRERROR = 29, + LINUX_MIB_XFRMINSTATEDIRERROR = 30, + __LINUX_MIB_XFRMMAX = 31, +}; + +struct sk_psock_progs { + struct bpf_prog *msg_parser; + struct bpf_prog *stream_parser; + struct bpf_prog *stream_verdict; + struct bpf_prog *skb_verdict; + struct bpf_link *msg_parser_link; + struct bpf_link *stream_parser_link; + struct bpf_link *stream_verdict_link; + struct bpf_link *skb_verdict_link; +}; + +struct sk_psock_work_state { + u32 len; + u32 off; +}; + +struct sk_msg; + +struct sk_psock { + struct sock *sk; + struct sock *sk_redir; + u32 apply_bytes; + u32 cork_bytes; + u32 eval; + bool redir_ingress; + struct sk_msg *cork; + struct sk_psock_progs progs; + struct sk_buff_head ingress_skb; + struct list_head ingress_msg; + spinlock_t ingress_lock; + long unsigned int state; + struct list_head link; + spinlock_t link_lock; + refcount_t refcnt; + void (*saved_unhash)(struct sock *); + void (*saved_destroy)(struct sock *); + void (*saved_close)(struct sock *, long int); + void (*saved_write_space)(struct sock *); + void (*saved_data_ready)(struct sock *); + int (*psock_update_sk_prot)(struct sock *, struct sk_psock *, bool); + struct proto *sk_proto; + struct mutex work_mutex; + struct sk_psock_work_state work_state; + struct delayed_work work; + struct sock *sk_pair; + struct rcu_work rwork; +}; + +struct sadb_alg { + __u8 sadb_alg_id; + __u8 sadb_alg_ivlen; + __u16 sadb_alg_minbits; + __u16 sadb_alg_maxbits; + __u16 sadb_alg_reserved; +}; + +struct xfrm_dst { + union { + struct dst_entry dst; + struct rtable rt; + struct rt6_info rt6; + } u; + struct dst_entry *route; + struct dst_entry *child; + struct dst_entry *path; + struct xfrm_policy *pols[2]; + int num_pols; + int num_xfrms; + u32 xfrm_genid; + u32 policy_genid; + u32 route_mtu_cached; + u32 child_mtu_cached; + u32 route_cookie; + u32 path_cookie; +}; + +struct ip_tunnel; + +struct ip6_tnl; + +struct xfrm_tunnel_skb_cb { + union { + struct inet_skb_parm h4; + struct inet6_skb_parm h6; + } header; + union { + struct ip_tunnel *ip4; + struct ip6_tnl *ip6; + } tunnel; +}; + +struct xfrm_skb_cb { + struct xfrm_tunnel_skb_cb header; + union { + struct { + __u32 low; + __u32 hi; + } output; + struct { + __be32 low; + __be32 hi; + } input; + } seq; +}; + +struct xfrm_offload { + struct { + __u32 low; + __u32 hi; + } seq; + __u32 flags; + __u32 status; + __u32 orig_mac_len; + __u8 proto; + __u8 inner_ipproto; +}; + +struct sec_path { + int len; + int olen; + int verified_cnt; + struct xfrm_state *xvec[6]; + struct xfrm_offload ovec[1]; +}; + +struct xfrm_algo_aead_info { + char *geniv; + u16 icv_truncbits; +}; + +struct xfrm_algo_auth_info { + u16 icv_truncbits; + u16 icv_fullbits; +}; + +struct xfrm_algo_encr_info { + char *geniv; + u16 blockbits; + u16 defkeybits; +}; + +struct xfrm_algo_comp_info { + u16 threshold; +}; + +struct xfrm_algo_desc { + char *name; + char *compat; + u8 available: 1; + u8 pfkey_supported: 1; + union { + struct xfrm_algo_aead_info aead; + struct xfrm_algo_auth_info auth; + struct xfrm_algo_encr_info encr; + struct xfrm_algo_comp_info comp; + } uinfo; + struct sadb_alg desc; +}; + +struct xfrm6_protocol { + int (*handler)(struct sk_buff *); + int (*input_handler)(struct sk_buff *, int, __be32, int); + int (*cb_handler)(struct sk_buff *, int); + int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); + struct xfrm6_protocol *next; + int priority; +}; + +struct esp_info { + struct ip_esp_hdr *esph; + __be64 seqno; + int tfclen; + int tailen; + int plen; + int clen; + int len; + int nfrags; + __u8 proto; + bool inplace; +}; + +struct sk_msg_sg { + u32 start; + u32 curr; + u32 end; + u32 size; + u32 copybreak; + long unsigned int copy[1]; + struct scatterlist data[19]; +}; + +struct sk_msg { + struct sk_msg_sg sg; + void *data; + void *data_end; + u32 apply_bytes; + u32 cork_bytes; + u32 flags; + struct sk_buff *skb; + struct sock *sk_redir; + struct sock *sk; + struct list_head list; +}; + +struct esp_skb_cb { + struct xfrm_skb_cb xfrm; + void *tmp; +}; + +struct esp_output_extra { + __be32 seqhi; + u32 esphoff; +}; + +enum nft_fib_attributes { + NFTA_FIB_UNSPEC = 0, + NFTA_FIB_DREG = 1, + NFTA_FIB_RESULT = 2, + NFTA_FIB_FLAGS = 3, + __NFTA_FIB_MAX = 4, +}; + +enum nft_fib_result { + NFT_FIB_RESULT_UNSPEC = 0, + NFT_FIB_RESULT_OIF = 1, + NFT_FIB_RESULT_OIFNAME = 2, + NFT_FIB_RESULT_ADDRTYPE = 3, + __NFT_FIB_RESULT_MAX = 4, +}; + +enum nft_fib_flags { + NFTA_FIB_F_SADDR = 1, + NFTA_FIB_F_DADDR = 2, + NFTA_FIB_F_MARK = 4, + NFTA_FIB_F_IIF = 8, + NFTA_FIB_F_OIF = 16, + NFTA_FIB_F_PRESENT = 32, +}; + +struct nft_fib { + u8 dreg; + u8 result; + u32 flags; +}; + +enum switchdev_attr_id { + SWITCHDEV_ATTR_ID_UNDEFINED = 0, + SWITCHDEV_ATTR_ID_PORT_STP_STATE = 1, + SWITCHDEV_ATTR_ID_PORT_MST_STATE = 2, + SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS = 3, + SWITCHDEV_ATTR_ID_PORT_PRE_BRIDGE_FLAGS = 4, + SWITCHDEV_ATTR_ID_PORT_MROUTER = 5, + SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME = 6, + SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING = 7, + SWITCHDEV_ATTR_ID_BRIDGE_VLAN_PROTOCOL = 8, + SWITCHDEV_ATTR_ID_BRIDGE_MC_DISABLED = 9, + SWITCHDEV_ATTR_ID_BRIDGE_MROUTER = 10, + SWITCHDEV_ATTR_ID_BRIDGE_MST = 11, + SWITCHDEV_ATTR_ID_MRP_PORT_ROLE = 12, + SWITCHDEV_ATTR_ID_VLAN_MSTI = 13, +}; + +struct switchdev_mst_state { + u16 msti; + u8 state; +}; + +struct switchdev_brport_flags { + long unsigned int val; + long unsigned int mask; +}; + +struct switchdev_vlan_msti { + u16 vid; + u16 msti; +}; + +struct switchdev_attr { + struct net_device *orig_dev; + enum switchdev_attr_id id; + u32 flags; + void *complete_priv; + void (*complete)(struct net_device *, int, void *); + union { + u8 stp_state; + struct switchdev_mst_state mst_state; + struct switchdev_brport_flags brport_flags; + bool mrouter; + clock_t ageing_time; + bool vlan_filtering; + u16 vlan_protocol; + bool mst; + bool mc_disabled; + u8 mrp_port_role; + struct switchdev_vlan_msti vlan_msti; + } u; +}; + +struct bridge_stp_xstats { + __u64 transition_blk; + __u64 transition_fwd; + __u64 rx_bpdu; + __u64 tx_bpdu; + __u64 rx_tcn; + __u64 tx_tcn; +}; + +struct br_mcast_stats { + __u64 igmp_v1queries[2]; + __u64 igmp_v2queries[2]; + __u64 igmp_v3queries[2]; + __u64 igmp_leaves[2]; + __u64 igmp_v1reports[2]; + __u64 igmp_v2reports[2]; + __u64 igmp_v3reports[2]; + __u64 igmp_parse_errors; + __u64 mld_v1queries[2]; + __u64 mld_v2queries[2]; + __u64 mld_leaves[2]; + __u64 mld_v1reports[2]; + __u64 mld_v2reports[2]; + __u64 mld_parse_errors; + __u64 mcast_bytes[2]; + __u64 mcast_packets[2]; +}; + +struct br_ip { + union { + __be32 ip4; + struct in6_addr ip6; + } src; + union { + __be32 ip4; + struct in6_addr ip6; + unsigned char mac_addr[6]; + } dst; + __be16 proto; + __u16 vid; +}; + +struct bridge_id { + unsigned char prio[2]; + unsigned char addr[6]; +}; + +typedef struct bridge_id bridge_id; + +typedef __u16 port_id; + +struct bridge_mcast_own_query { + struct timer_list timer; + u32 startup_sent; +}; + +struct bridge_mcast_other_query { + struct timer_list timer; + struct timer_list delay_timer; +}; + +struct bridge_mcast_querier { + struct br_ip addr; + int port_ifidx; + seqcount_spinlock_t seq; +}; + +struct bridge_mcast_stats { + struct br_mcast_stats mstats; + struct u64_stats_sync syncp; +}; + +struct net_bridge; + +struct net_bridge_vlan; + +struct net_bridge_mcast { + struct net_bridge *br; + struct net_bridge_vlan *vlan; + u32 multicast_last_member_count; + u32 multicast_startup_query_count; + u8 multicast_querier; + u8 multicast_igmp_version; + u8 multicast_router; + u8 multicast_mld_version; + long unsigned int multicast_last_member_interval; + long unsigned int multicast_membership_interval; + long unsigned int multicast_querier_interval; + long unsigned int multicast_query_interval; + long unsigned int multicast_query_response_interval; + long unsigned int multicast_startup_query_interval; + struct hlist_head ip4_mc_router_list; + struct timer_list ip4_mc_router_timer; + struct bridge_mcast_other_query ip4_other_query; + struct bridge_mcast_own_query ip4_own_query; + struct bridge_mcast_querier ip4_querier; + struct hlist_head ip6_mc_router_list; + struct timer_list ip6_mc_router_timer; + struct bridge_mcast_other_query ip6_other_query; + struct bridge_mcast_own_query ip6_own_query; + struct bridge_mcast_querier ip6_querier; +}; + +struct net_bridge_vlan_group; + +struct net_bridge { + spinlock_t lock; + spinlock_t hash_lock; + struct hlist_head frame_type_list; + struct net_device *dev; + long unsigned int options; + __be16 vlan_proto; + u16 default_pvid; + struct net_bridge_vlan_group *vlgrp; + struct rhashtable fdb_hash_tbl; + struct list_head port_list; + union { + struct rtable fake_rtable; + struct rt6_info fake_rt6_info; + }; + u32 metrics[17]; + u16 group_fwd_mask; + u16 group_fwd_mask_required; + bridge_id designated_root; + bridge_id bridge_id; + unsigned char topology_change; + unsigned char topology_change_detected; + u16 root_port; + long unsigned int max_age; + long unsigned int hello_time; + long unsigned int forward_delay; + long unsigned int ageing_time; + long unsigned int bridge_max_age; + long unsigned int bridge_hello_time; + long unsigned int bridge_forward_delay; + long unsigned int bridge_ageing_time; + u32 root_path_cost; + u8 group_addr[6]; + enum { + BR_NO_STP = 0, + BR_KERNEL_STP = 1, + BR_USER_STP = 2, + } stp_enabled; + struct net_bridge_mcast multicast_ctx; + struct bridge_mcast_stats *mcast_stats; + u32 hash_max; + spinlock_t multicast_lock; + struct rhashtable mdb_hash_tbl; + struct rhashtable sg_port_tbl; + struct hlist_head mcast_gc_list; + struct hlist_head mdb_list; + struct work_struct mcast_gc_work; + struct timer_list hello_timer; + struct timer_list tcn_timer; + struct timer_list topology_change_timer; + struct delayed_work gc_work; + struct kobject *ifobj; + u32 auto_cnt; + atomic_t fdb_n_learned; + u32 fdb_max_learned; + int last_hwdom; + long unsigned int busy_hwdoms; + struct hlist_head fdb_list; +}; + +struct net_bridge_port; + +struct net_bridge_mcast_port { + struct net_bridge_port *port; + struct net_bridge_vlan *vlan; + struct bridge_mcast_own_query ip4_own_query; + struct timer_list ip4_mc_router_timer; + struct hlist_node ip4_rlist; + struct bridge_mcast_own_query ip6_own_query; + struct timer_list ip6_mc_router_timer; + struct hlist_node ip6_rlist; + unsigned char multicast_router; + u32 mdb_n_entries; + u32 mdb_max_entries; +}; + +struct net_bridge_port { + struct net_bridge *br; + struct net_device *dev; + netdevice_tracker dev_tracker; + struct list_head list; + long unsigned int flags; + struct net_bridge_vlan_group *vlgrp; + struct net_bridge_port *backup_port; + u32 backup_nhid; + u8 priority; + u8 state; + u16 port_no; + unsigned char topology_change_ack; + unsigned char config_pending; + port_id port_id; + port_id designated_port; + bridge_id designated_root; + bridge_id designated_bridge; + u32 path_cost; + u32 designated_cost; + long unsigned int designated_age; + struct timer_list forward_delay_timer; + struct timer_list hold_timer; + struct timer_list message_age_timer; + struct kobject kobj; + struct callback_head rcu; + struct net_bridge_mcast_port multicast_ctx; + struct bridge_mcast_stats *mcast_stats; + u32 multicast_eht_hosts_limit; + u32 multicast_eht_hosts_cnt; + struct hlist_head mglist; + char sysfs_name[16]; + int hwdom; + int offload_count; + struct netdev_phys_item_id ppid; + u16 group_fwd_mask; + u16 backup_redirected_cnt; + struct bridge_stp_xstats stp_xstats; +}; + +struct metadata_dst; + +struct br_tunnel_info { + __be64 tunnel_id; + struct metadata_dst *tunnel_dst; +}; + +struct net_bridge_vlan { + struct rhash_head vnode; + struct rhash_head tnode; + u16 vid; + u16 flags; + u16 priv_flags; + u8 state; + struct pcpu_sw_netstats *stats; + union { + struct net_bridge *br; + struct net_bridge_port *port; + }; + union { + refcount_t refcnt; + struct net_bridge_vlan *brvlan; + }; + struct br_tunnel_info tinfo; + union { + struct net_bridge_mcast br_mcast_ctx; + struct net_bridge_mcast_port port_mcast_ctx; + }; + u16 msti; + struct list_head vlist; + struct callback_head rcu; +}; + +struct net_bridge_vlan_group { + struct rhashtable vlan_hash; + struct rhashtable tunnel_hash; + struct list_head vlan_list; + u16 num_vlans; + u16 pvid; + u8 pvid_state; +}; + +enum net_bridge_opts { + BROPT_VLAN_ENABLED = 0, + BROPT_VLAN_STATS_ENABLED = 1, + BROPT_NF_CALL_IPTABLES = 2, + BROPT_NF_CALL_IP6TABLES = 3, + BROPT_NF_CALL_ARPTABLES = 4, + BROPT_GROUP_ADDR_SET = 5, + BROPT_MULTICAST_ENABLED = 6, + BROPT_MULTICAST_QUERY_USE_IFADDR = 7, + BROPT_MULTICAST_STATS_ENABLED = 8, + BROPT_HAS_IPV6_ADDR = 9, + BROPT_NEIGH_SUPPRESS_ENABLED = 10, + BROPT_MTU_SET_BY_USER = 11, + BROPT_VLAN_STATS_PER_PORT = 12, + BROPT_NO_LL_LEARN = 13, + BROPT_VLAN_BRIDGE_BINDING = 14, + BROPT_MCAST_VLAN_SNOOPING_ENABLED = 15, + BROPT_MST_ENABLED = 16, +}; + +struct br_config_bpdu { + unsigned int topology_change: 1; + unsigned int topology_change_ack: 1; + bridge_id root; + int root_path_cost; + bridge_id bridge_id; + port_id port_id; + int message_age; + int max_age; + int hello_time; + int forward_delay; +}; + +enum nf_br_hook_priorities { + NF_BR_PRI_FIRST = -2147483648, + NF_BR_PRI_NAT_DST_BRIDGED = -300, + NF_BR_PRI_FILTER_BRIDGED = -200, + NF_BR_PRI_BRNF = 0, + NF_BR_PRI_NAT_DST_OTHER = 100, + NF_BR_PRI_FILTER_OTHER = 200, + NF_BR_PRI_NAT_SRC = 300, + NF_BR_PRI_LAST = 2147483647, +}; + +struct ebt_counter { + __u64 pcnt; + __u64 bcnt; +}; + +struct ebt_entries { + unsigned int distinguisher; + char name[32]; + unsigned int counter_offset; + int policy; + unsigned int nentries; + char data[0]; +}; + +struct ebt_replace_kernel { + char name[32]; + unsigned int valid_hooks; + unsigned int nentries; + unsigned int entries_size; + struct ebt_entries *hook_entry[6]; + unsigned int num_counters; + struct ebt_counter *counters; + char *entries; +}; + +struct ebt_entry { + unsigned int bitmask; + unsigned int invflags; + __be16 ethproto; + char in[16]; + char logical_in[16]; + char out[16]; + char logical_out[16]; + unsigned char sourcemac[6]; + unsigned char sourcemsk[6]; + unsigned char destmac[6]; + unsigned char destmsk[6]; + union { + struct { + unsigned int watchers_offset; + unsigned int target_offset; + unsigned int next_offset; + }; + struct { + unsigned int watchers_offset; + unsigned int target_offset; + unsigned int next_offset; + } offsets; + }; + unsigned char elems[0]; +}; + +struct ebt_chainstack { + struct ebt_entries *chaininfo; + struct ebt_entry *e; + unsigned int n; +}; + +struct ebt_table_info { + unsigned int entries_size; + unsigned int nentries; + struct ebt_entries *hook_entry[6]; + struct ebt_chainstack **chainstack; + char *entries; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct ebt_counter counters[0]; +}; + +struct ebt_table { + struct list_head list; + char name[32]; + struct ebt_replace_kernel *table; + unsigned int valid_hooks; + rwlock_t lock; + struct ebt_table_info *private; + struct nf_hook_ops *ops; + struct module *me; +}; + +struct rpc_cred_cache { + struct hlist_head *hashtable; + unsigned int hashbits; + spinlock_t lock; +}; + +struct rpc_sysfs_xprt { + struct kobject kobject; + struct rpc_xprt *xprt; + struct rpc_xprt_switch *xprt_switch; +}; + +struct rpc_sysfs_xprt_switch { + struct kobject kobject; + struct net *net; + struct rpc_xprt_switch *xprt_switch; + struct rpc_xprt *xprt; +}; + +typedef struct rpc_xprt * (*xprt_switch_find_xprt_t)(struct rpc_xprt_switch *, const struct rpc_xprt *); + +enum { + NETIF_F_SG_BIT = 0, + NETIF_F_IP_CSUM_BIT = 1, + __UNUSED_NETIF_F_1 = 2, + NETIF_F_HW_CSUM_BIT = 3, + NETIF_F_IPV6_CSUM_BIT = 4, + NETIF_F_HIGHDMA_BIT = 5, + NETIF_F_FRAGLIST_BIT = 6, + NETIF_F_HW_VLAN_CTAG_TX_BIT = 7, + NETIF_F_HW_VLAN_CTAG_RX_BIT = 8, + NETIF_F_HW_VLAN_CTAG_FILTER_BIT = 9, + NETIF_F_VLAN_CHALLENGED_BIT = 10, + NETIF_F_GSO_BIT = 11, + __UNUSED_NETIF_F_12 = 12, + __UNUSED_NETIF_F_13 = 13, + NETIF_F_GRO_BIT = 14, + NETIF_F_LRO_BIT = 15, + NETIF_F_GSO_SHIFT = 16, + NETIF_F_TSO_BIT = 16, + NETIF_F_GSO_ROBUST_BIT = 17, + NETIF_F_TSO_ECN_BIT = 18, + NETIF_F_TSO_MANGLEID_BIT = 19, + NETIF_F_TSO6_BIT = 20, + NETIF_F_FSO_BIT = 21, + NETIF_F_GSO_GRE_BIT = 22, + NETIF_F_GSO_GRE_CSUM_BIT = 23, + NETIF_F_GSO_IPXIP4_BIT = 24, + NETIF_F_GSO_IPXIP6_BIT = 25, + NETIF_F_GSO_UDP_TUNNEL_BIT = 26, + NETIF_F_GSO_UDP_TUNNEL_CSUM_BIT = 27, + NETIF_F_GSO_PARTIAL_BIT = 28, + NETIF_F_GSO_TUNNEL_REMCSUM_BIT = 29, + NETIF_F_GSO_SCTP_BIT = 30, + NETIF_F_GSO_ESP_BIT = 31, + NETIF_F_GSO_UDP_BIT = 32, + NETIF_F_GSO_UDP_L4_BIT = 33, + NETIF_F_GSO_FRAGLIST_BIT = 34, + NETIF_F_GSO_LAST = 34, + NETIF_F_FCOE_CRC_BIT = 35, + NETIF_F_SCTP_CRC_BIT = 36, + __UNUSED_NETIF_F_37 = 37, + NETIF_F_NTUPLE_BIT = 38, + NETIF_F_RXHASH_BIT = 39, + NETIF_F_RXCSUM_BIT = 40, + NETIF_F_NOCACHE_COPY_BIT = 41, + NETIF_F_LOOPBACK_BIT = 42, + NETIF_F_RXFCS_BIT = 43, + NETIF_F_RXALL_BIT = 44, + NETIF_F_HW_VLAN_STAG_TX_BIT = 45, + NETIF_F_HW_VLAN_STAG_RX_BIT = 46, + NETIF_F_HW_VLAN_STAG_FILTER_BIT = 47, + NETIF_F_HW_L2FW_DOFFLOAD_BIT = 48, + NETIF_F_HW_TC_BIT = 49, + NETIF_F_HW_ESP_BIT = 50, + NETIF_F_HW_ESP_TX_CSUM_BIT = 51, + NETIF_F_RX_UDP_TUNNEL_PORT_BIT = 52, + NETIF_F_HW_TLS_TX_BIT = 53, + NETIF_F_HW_TLS_RX_BIT = 54, + NETIF_F_GRO_HW_BIT = 55, + NETIF_F_HW_TLS_RECORD_BIT = 56, + NETIF_F_GRO_FRAGLIST_BIT = 57, + NETIF_F_HW_MACSEC_BIT = 58, + NETIF_F_GRO_UDP_FWD_BIT = 59, + NETIF_F_HW_HSR_TAG_INS_BIT = 60, + NETIF_F_HW_HSR_TAG_RM_BIT = 61, + NETIF_F_HW_HSR_FWD_BIT = 62, + NETIF_F_HW_HSR_DUP_BIT = 63, + NETDEV_FEATURE_COUNT = 64, +}; + +struct vlan_group { + unsigned int nr_vlan_devs; + struct hlist_node hlist; + struct net_device **vlan_devices_arrays[16]; +}; + +struct vlan_info { + struct net_device *real_dev; + struct vlan_group grp; + struct list_head vid_list; + unsigned int nr_vids; + bool auto_vid0; + struct callback_head rcu; +}; + +enum vlan_flags { + VLAN_FLAG_REORDER_HDR = 1, + VLAN_FLAG_GVRP = 2, + VLAN_FLAG_LOOSE_BINDING = 4, + VLAN_FLAG_MVRP = 8, + VLAN_FLAG_BRIDGE_BINDING = 16, +}; + +struct vlan_ethhdr { + union { + struct { + unsigned char h_dest[6]; + unsigned char h_source[6]; + }; + struct { + unsigned char h_dest[6]; + unsigned char h_source[6]; + } addrs; + }; + __be16 h_vlan_proto; + __be16 h_vlan_TCI; + __be16 h_vlan_encapsulated_proto; +}; + +struct vlan_pcpu_stats { + u64_stats_t rx_packets; + u64_stats_t rx_bytes; + u64_stats_t rx_multicast; + u64_stats_t tx_packets; + u64_stats_t tx_bytes; + struct u64_stats_sync syncp; + u32 rx_errors; + u32 tx_dropped; +}; + +struct vlan_priority_tci_mapping { + u32 priority; + u16 vlan_qos; + struct vlan_priority_tci_mapping *next; +}; + +struct vlan_dev_priv { + unsigned int nr_ingress_mappings; + u32 ingress_priority_map[8]; + unsigned int nr_egress_mappings; + struct vlan_priority_tci_mapping *egress_priority_map[16]; + __be16 vlan_proto; + u16 vlan_id; + u16 flags; + struct net_device *real_dev; + netdevice_tracker dev_tracker; + unsigned char real_dev_addr[6]; + struct proc_dir_entry *dent; + struct vlan_pcpu_stats *vlan_pcpu_stats; +}; + +struct napi_gro_cb { + union { + struct { + void *frag0; + unsigned int frag0_len; + }; + struct { + struct sk_buff *last; + long unsigned int age; + }; + }; + int data_offset; + u16 flush; + u16 count; + u16 proto; + u16 pad; + union { + struct { + u16 gro_remcsum_start; + u8 same_flow: 1; + u8 encap_mark: 1; + u8 csum_valid: 1; + u8 csum_cnt: 3; + u8 free: 2; + u8 is_ipv6: 1; + u8 is_fou: 1; + u8 ip_fixedid: 1; + u8 recursion_counter: 4; + u8 is_flist: 1; + }; + struct { + u16 gro_remcsum_start; + u8 same_flow: 1; + u8 encap_mark: 1; + u8 csum_valid: 1; + u8 csum_cnt: 3; + u8 free: 2; + u8 is_ipv6: 1; + u8 is_fou: 1; + u8 ip_fixedid: 1; + u8 recursion_counter: 4; + u8 is_flist: 1; + } zeroed; + }; + __wsum csum; + union { + struct { + u16 network_offset; + u16 inner_network_offset; + }; + u16 network_offsets[2]; + }; +}; + +enum vlan_protos { + VLAN_PROTO_8021Q = 0, + VLAN_PROTO_8021AD = 1, + VLAN_PROTO_NUM = 2, +}; + +struct vlan_vid_info { + struct list_head list; + __be16 proto; + u16 vid; + int refcount; +}; + +struct sctp_mib { + long unsigned int mibs[34]; +}; + +struct genradix_root; + +struct __genradix { + struct genradix_root *root; +}; + +typedef __s32 sctp_assoc_t; + +struct sctp_initmsg { + __u16 sinit_num_ostreams; + __u16 sinit_max_instreams; + __u16 sinit_max_attempts; + __u16 sinit_max_init_timeo; +}; + +struct sctp_sndrcvinfo { + __u16 sinfo_stream; + __u16 sinfo_ssn; + __u16 sinfo_flags; + __u32 sinfo_ppid; + __u32 sinfo_context; + __u32 sinfo_timetolive; + __u32 sinfo_tsn; + __u32 sinfo_cumtsn; + sctp_assoc_t sinfo_assoc_id; +}; + +struct sctp_rtoinfo { + sctp_assoc_t srto_assoc_id; + __u32 srto_initial; + __u32 srto_max; + __u32 srto_min; +}; + +struct sctp_assocparams { + sctp_assoc_t sasoc_assoc_id; + __u16 sasoc_asocmaxrxt; + __u16 sasoc_number_peer_destinations; + __u32 sasoc_peer_rwnd; + __u32 sasoc_local_rwnd; + __u32 sasoc_cookie_life; +}; + +struct sctp_paddrparams { + sctp_assoc_t spp_assoc_id; + struct __kernel_sockaddr_storage spp_address; + __u32 spp_hbinterval; + __u16 spp_pathmaxrxt; + __u32 spp_pathmtu; + __u32 spp_sackdelay; + __u32 spp_flags; + __u32 spp_ipv6_flowlabel; + __u8 spp_dscp; + int: 0; +} __attribute__((packed)); + +struct sctphdr { + __be16 source; + __be16 dest; + __be32 vtag; + __le32 checksum; +}; + +struct sctp_chunkhdr { + __u8 type; + __u8 flags; + __be16 length; +}; + +struct sctp_paramhdr { + __be16 type; + __be16 length; +}; + +enum sctp_param { + SCTP_PARAM_HEARTBEAT_INFO = 256, + SCTP_PARAM_IPV4_ADDRESS = 1280, + SCTP_PARAM_IPV6_ADDRESS = 1536, + SCTP_PARAM_STATE_COOKIE = 1792, + SCTP_PARAM_UNRECOGNIZED_PARAMETERS = 2048, + SCTP_PARAM_COOKIE_PRESERVATIVE = 2304, + SCTP_PARAM_HOST_NAME_ADDRESS = 2816, + SCTP_PARAM_SUPPORTED_ADDRESS_TYPES = 3072, + SCTP_PARAM_ECN_CAPABLE = 128, + SCTP_PARAM_RANDOM = 640, + SCTP_PARAM_CHUNKS = 896, + SCTP_PARAM_HMAC_ALGO = 1152, + SCTP_PARAM_SUPPORTED_EXT = 2176, + SCTP_PARAM_FWD_TSN_SUPPORT = 192, + SCTP_PARAM_ADD_IP = 448, + SCTP_PARAM_DEL_IP = 704, + SCTP_PARAM_ERR_CAUSE = 960, + SCTP_PARAM_SET_PRIMARY = 1216, + SCTP_PARAM_SUCCESS_REPORT = 1472, + SCTP_PARAM_ADAPTATION_LAYER_IND = 1728, + SCTP_PARAM_RESET_OUT_REQUEST = 3328, + SCTP_PARAM_RESET_IN_REQUEST = 3584, + SCTP_PARAM_RESET_TSN_REQUEST = 3840, + SCTP_PARAM_RESET_RESPONSE = 4096, + SCTP_PARAM_RESET_ADD_OUT_STREAMS = 4352, + SCTP_PARAM_RESET_ADD_IN_STREAMS = 4608, +}; + +struct sctp_datahdr { + __be32 tsn; + __be16 stream; + __be16 ssn; + __u32 ppid; +}; + +struct sctp_idatahdr { + __be32 tsn; + __be16 stream; + __be16 reserved; + __be32 mid; + union { + __u32 ppid; + __be32 fsn; + }; + __u8 payload[0]; +}; + +struct sctp_inithdr { + __be32 init_tag; + __be32 a_rwnd; + __be16 num_outbound_streams; + __be16 num_inbound_streams; + __be32 initial_tsn; +}; + +struct sctp_ipv4addr_param { + struct sctp_paramhdr param_hdr; + struct in_addr addr; +}; + +struct sctp_ipv6addr_param { + struct sctp_paramhdr param_hdr; + struct in6_addr addr; +}; + +struct sctp_cookie_preserve_param { + struct sctp_paramhdr param_hdr; + __be32 lifespan_increment; +}; + +struct sctp_hostname_param { + struct sctp_paramhdr param_hdr; + uint8_t hostname[0]; +}; + +struct sctp_supported_addrs_param { + struct sctp_paramhdr param_hdr; + __be16 types[0]; +}; + +struct sctp_adaptation_ind_param { + struct sctp_paramhdr param_hdr; + __be32 adaptation_ind; +}; + +struct sctp_supported_ext_param { + struct sctp_paramhdr param_hdr; + __u8 chunks[0]; +}; + +struct sctp_random_param { + struct sctp_paramhdr param_hdr; + __u8 random_val[0]; +}; + +struct sctp_chunks_param { + struct sctp_paramhdr param_hdr; + __u8 chunks[0]; +}; + +struct sctp_hmac_algo_param { + struct sctp_paramhdr param_hdr; + __be16 hmac_ids[0]; +}; + +struct sctp_cookie_param { + struct sctp_paramhdr p; + __u8 body[0]; +}; + +struct sctp_sackhdr { + __be32 cum_tsn_ack; + __be32 a_rwnd; + __be16 num_gap_ack_blocks; + __be16 num_dup_tsns; +}; + +struct sctp_heartbeathdr { + struct sctp_paramhdr info; +}; + +struct sctp_shutdownhdr { + __be32 cum_tsn_ack; +}; + +struct sctp_errhdr { + __be16 cause; + __be16 length; +}; + +struct sctp_ecnehdr { + __be32 lowest_tsn; +}; + +struct sctp_cwrhdr { + __be32 lowest_tsn; +}; + +struct sctp_fwdtsn_hdr { + __be32 new_cum_tsn; +}; + +struct sctp_ifwdtsn_hdr { + __be32 new_cum_tsn; +}; + +struct sctp_addip_param { + struct sctp_paramhdr param_hdr; + __be32 crr_id; +}; + +struct sctp_addiphdr { + __be32 serial; +}; + +struct sctp_authhdr { + __be16 shkey_id; + __be16 hmac_id; +}; + +enum sctp_endpoint_type { + SCTP_EP_TYPE_SOCKET = 0, + SCTP_EP_TYPE_ASSOCIATION = 1, +}; + +struct sctp_chunk; + +struct sctp_inq { + struct list_head in_chunk_list; + struct sctp_chunk *in_progress; + struct work_struct immediate; +}; + +struct sctp_bind_addr { + __u16 port; + struct list_head address_list; +}; + +struct sctp_ep_common { + enum sctp_endpoint_type type; + refcount_t refcnt; + bool dead; + struct sock *sk; + struct net *net; + struct sctp_inq inqueue; + struct sctp_bind_addr bind_addr; +}; + +union sctp_addr { + struct sockaddr_in v4; + struct sockaddr_in6 v6; + struct sockaddr sa; +}; + +struct sctp_cookie { + __u32 my_vtag; + __u32 peer_vtag; + __u32 my_ttag; + __u32 peer_ttag; + ktime_t expiration; + __u16 sinit_num_ostreams; + __u16 sinit_max_instreams; + __u32 initial_tsn; + union sctp_addr peer_addr; + __u16 my_port; + __u8 prsctp_capable; + __u8 padding; + __u32 adaptation_ind; + __u8 auth_random[36]; + __u8 auth_hmacs[10]; + __u8 auth_chunks[20]; + __u32 raw_addr_list_len; +}; + +struct sctp_tsnmap { + long unsigned int *tsn_map; + __u32 base_tsn; + __u32 cumulative_tsn_ack_point; + __u32 max_tsn_seen; + __u16 len; + __u16 pending_data; + __u16 num_dup_tsns; + __be32 dup_tsns[16]; +}; + +struct sctp_inithdr_host { + __u32 init_tag; + __u32 a_rwnd; + __u16 num_outbound_streams; + __u16 num_inbound_streams; + __u32 initial_tsn; +}; + +enum sctp_state { + SCTP_STATE_CLOSED = 0, + SCTP_STATE_COOKIE_WAIT = 1, + SCTP_STATE_COOKIE_ECHOED = 2, + SCTP_STATE_ESTABLISHED = 3, + SCTP_STATE_SHUTDOWN_PENDING = 4, + SCTP_STATE_SHUTDOWN_SENT = 5, + SCTP_STATE_SHUTDOWN_RECEIVED = 6, + SCTP_STATE_SHUTDOWN_ACK_SENT = 7, +}; + +struct sctp_stream_out_ext; + +struct sctp_stream_out { + union { + __u32 mid; + __u16 ssn; + }; + __u32 mid_uo; + struct sctp_stream_out_ext *ext; + __u8 state; +}; + +struct sctp_stream_in { + union { + __u32 mid; + __u16 ssn; + }; + __u32 mid_uo; + __u32 fsn; + __u32 fsn_uo; + char pd_mode; + char pd_mode_uo; +}; + +struct sctp_stream_interleave; + +struct sctp_stream { + struct { + struct __genradix tree; + struct sctp_stream_out type[0]; + } out; + struct { + struct __genradix tree; + struct sctp_stream_in type[0]; + } in; + __u16 outcnt; + __u16 incnt; + struct sctp_stream_out *out_curr; + union { + struct { + struct list_head prio_list; + }; + struct { + struct list_head rr_list; + struct sctp_stream_out_ext *rr_next; + }; + struct { + struct list_head fc_list; + }; + }; + struct sctp_stream_interleave *si; +}; + +struct sctp_association; + +struct sctp_sched_ops; + +struct sctp_outq { + struct sctp_association *asoc; + struct list_head out_chunk_list; + struct sctp_sched_ops *sched; + unsigned int out_qlen; + unsigned int error; + struct list_head control_chunk_list; + struct list_head sacked; + struct list_head retransmit; + struct list_head abandoned; + __u32 outstanding_bytes; + char fast_rtx; + char cork; +}; + +struct sctp_ulpq { + char pd_mode; + struct sctp_association *asoc; + struct sk_buff_head reasm; + struct sk_buff_head reasm_uo; + struct sk_buff_head lobby; +}; + +struct sctp_priv_assoc_stats { + struct __kernel_sockaddr_storage obs_rto_ipaddr; + __u64 max_obs_rto; + __u64 isacks; + __u64 osacks; + __u64 opackets; + __u64 ipackets; + __u64 rtxchunks; + __u64 outofseqtsns; + __u64 idupchunks; + __u64 gapcnt; + __u64 ouodchunks; + __u64 iuodchunks; + __u64 oodchunks; + __u64 iodchunks; + __u64 octrlchunks; + __u64 ictrlchunks; +}; + +struct sctp_endpoint; + +struct sctp_transport; + +struct sctp_auth_bytes; + +struct sctp_shared_key; + +struct sctp_association { + struct sctp_ep_common base; + struct list_head asocs; + sctp_assoc_t assoc_id; + struct sctp_endpoint *ep; + struct sctp_cookie c; + struct { + struct list_head transport_addr_list; + __u32 rwnd; + __u16 transport_count; + __u16 port; + struct sctp_transport *primary_path; + union sctp_addr primary_addr; + struct sctp_transport *active_path; + struct sctp_transport *retran_path; + struct sctp_transport *last_sent_to; + struct sctp_transport *last_data_from; + struct sctp_tsnmap tsn_map; + __be16 addip_disabled_mask; + __u16 ecn_capable: 1; + __u16 ipv4_address: 1; + __u16 ipv6_address: 1; + __u16 asconf_capable: 1; + __u16 prsctp_capable: 1; + __u16 reconf_capable: 1; + __u16 intl_capable: 1; + __u16 auth_capable: 1; + __u16 sack_needed: 1; + __u16 sack_generation: 1; + __u16 zero_window_announced: 1; + __u32 sack_cnt; + __u32 adaptation_ind; + struct sctp_inithdr_host i; + void *cookie; + int cookie_len; + __u32 addip_serial; + struct sctp_random_param *peer_random; + struct sctp_chunks_param *peer_chunks; + struct sctp_hmac_algo_param *peer_hmacs; + } peer; + enum sctp_state state; + int overall_error_count; + ktime_t cookie_life; + long unsigned int rto_initial; + long unsigned int rto_max; + long unsigned int rto_min; + int max_burst; + int max_retrans; + __u16 pf_retrans; + __u16 ps_retrans; + __u16 max_init_attempts; + __u16 init_retries; + long unsigned int max_init_timeo; + long unsigned int hbinterval; + long unsigned int probe_interval; + __be16 encap_port; + __u16 pathmaxrxt; + __u32 flowlabel; + __u8 dscp; + __u8 pmtu_pending; + __u32 pathmtu; + __u32 param_flags; + __u32 sackfreq; + long unsigned int sackdelay; + long unsigned int timeouts[12]; + struct timer_list timers[12]; + struct sctp_transport *shutdown_last_sent_to; + struct sctp_transport *init_last_sent_to; + int shutdown_retries; + __u32 next_tsn; + __u32 ctsn_ack_point; + __u32 adv_peer_ack_point; + __u32 highest_sacked; + __u32 fast_recovery_exit; + __u8 fast_recovery; + __u16 unack_data; + __u32 rtx_data_chunks; + __u32 rwnd; + __u32 a_rwnd; + __u32 rwnd_over; + __u32 rwnd_press; + int sndbuf_used; + atomic_t rmem_alloc; + wait_queue_head_t wait; + __u32 frag_point; + __u32 user_frag; + int init_err_counter; + int init_cycle; + __u16 default_stream; + __u16 default_flags; + __u32 default_ppid; + __u32 default_context; + __u32 default_timetolive; + __u32 default_rcv_context; + struct sctp_stream stream; + struct sctp_outq outqueue; + struct sctp_ulpq ulpq; + __u32 last_ecne_tsn; + __u32 last_cwr_tsn; + int numduptsns; + struct sctp_chunk *addip_last_asconf; + struct list_head asconf_ack_list; + struct list_head addip_chunk_list; + __u32 addip_serial; + int src_out_of_asoc_ok; + union sctp_addr *asconf_addr_del_pending; + struct sctp_transport *new_transport; + struct list_head endpoint_shared_keys; + struct sctp_auth_bytes *asoc_shared_key; + struct sctp_shared_key *shkey; + __u16 default_hmac_id; + __u16 active_key_id; + __u8 need_ecne: 1; + __u8 temp: 1; + __u8 pf_expose: 2; + __u8 force_delay: 1; + __u8 strreset_enable; + __u8 strreset_outstanding; + __u32 strreset_outseq; + __u32 strreset_inseq; + __u32 strreset_result[2]; + struct sctp_chunk *strreset_chunk; + struct sctp_priv_assoc_stats stats; + int sent_cnt_removable; + __u16 subscribe; + __u64 abandoned_unsent[3]; + __u64 abandoned_sent[3]; + u32 secid; + u32 peer_secid; + struct callback_head rcu; +}; + +struct sctp_auth_bytes { + refcount_t refcnt; + __u32 len; + __u8 data[0]; +}; + +struct sctp_shared_key { + struct list_head key_list; + struct sctp_auth_bytes *key; + refcount_t refcnt; + __u16 key_id; + __u8 deactivated; +}; + +enum sctp_scope { + SCTP_SCOPE_GLOBAL = 0, + SCTP_SCOPE_PRIVATE = 1, + SCTP_SCOPE_LINK = 2, + SCTP_SCOPE_LOOPBACK = 3, + SCTP_SCOPE_UNUSABLE = 4, +}; + +enum { + SCTP_SCOPE_POLICY_DISABLE = 0, + SCTP_SCOPE_POLICY_ENABLE = 1, + SCTP_SCOPE_POLICY_PRIVATE = 2, + SCTP_SCOPE_POLICY_LINK = 3, +}; + +struct sctp_ulpevent { + struct sctp_association *asoc; + struct sctp_chunk *chunk; + unsigned int rmem_len; + union { + __u32 mid; + __u16 ssn; + }; + union { + __u32 ppid; + __u32 fsn; + }; + __u32 tsn; + __u32 cumtsn; + __u16 stream; + __u16 flags; + __u16 msg_flags; +} __attribute__((packed)); + +union sctp_addr_param; + +union sctp_params { + void *v; + struct sctp_paramhdr *p; + struct sctp_cookie_preserve_param *life; + struct sctp_hostname_param *dns; + struct sctp_cookie_param *cookie; + struct sctp_supported_addrs_param *sat; + struct sctp_ipv4addr_param *v4; + struct sctp_ipv6addr_param *v6; + union sctp_addr_param *addr; + struct sctp_adaptation_ind_param *aind; + struct sctp_supported_ext_param *ext; + struct sctp_random_param *random; + struct sctp_chunks_param *chunks; + struct sctp_hmac_algo_param *hmac_algo; + struct sctp_addip_param *addip; +}; + +struct sctp_sender_hb_info; + +struct sctp_signed_cookie; + +struct sctp_datamsg; + +struct sctp_chunk { + struct list_head list; + refcount_t refcnt; + int sent_count; + union { + struct list_head transmitted_list; + struct list_head stream_list; + }; + struct list_head frag_list; + struct sk_buff *skb; + union { + struct sk_buff *head_skb; + struct sctp_shared_key *shkey; + }; + union sctp_params param_hdr; + union { + __u8 *v; + struct sctp_datahdr *data_hdr; + struct sctp_inithdr *init_hdr; + struct sctp_sackhdr *sack_hdr; + struct sctp_heartbeathdr *hb_hdr; + struct sctp_sender_hb_info *hbs_hdr; + struct sctp_shutdownhdr *shutdown_hdr; + struct sctp_signed_cookie *cookie_hdr; + struct sctp_ecnehdr *ecne_hdr; + struct sctp_cwrhdr *ecn_cwr_hdr; + struct sctp_errhdr *err_hdr; + struct sctp_addiphdr *addip_hdr; + struct sctp_fwdtsn_hdr *fwdtsn_hdr; + struct sctp_authhdr *auth_hdr; + struct sctp_idatahdr *idata_hdr; + struct sctp_ifwdtsn_hdr *ifwdtsn_hdr; + } subh; + __u8 *chunk_end; + struct sctp_chunkhdr *chunk_hdr; + struct sctphdr *sctp_hdr; + struct sctp_sndrcvinfo sinfo; + struct sctp_association *asoc; + struct sctp_ep_common *rcvr; + long unsigned int sent_at; + union sctp_addr source; + union sctp_addr dest; + struct sctp_datamsg *msg; + struct sctp_transport *transport; + struct sk_buff *auth_chunk; + __u16 rtt_in_progress: 1; + __u16 has_tsn: 1; + __u16 has_ssn: 1; + __u16 singleton: 1; + __u16 end_of_packet: 1; + __u16 ecn_ce_done: 1; + __u16 pdiscard: 1; + __u16 tsn_gap_acked: 1; + __u16 data_accepted: 1; + __u16 auth: 1; + __u16 has_asconf: 1; + __u16 pmtu_probe: 1; + __u16 tsn_missing_report: 2; + __u16 fast_retransmit: 2; +}; + +struct sctp_stream_interleave { + __u16 data_chunk_len; + __u16 ftsn_chunk_len; + struct sctp_chunk * (*make_datafrag)(const struct sctp_association *, const struct sctp_sndrcvinfo *, int, __u8, gfp_t); + void (*assign_number)(struct sctp_chunk *); + bool (*validate_data)(struct sctp_chunk *); + int (*ulpevent_data)(struct sctp_ulpq *, struct sctp_chunk *, gfp_t); + int (*enqueue_event)(struct sctp_ulpq *, struct sctp_ulpevent *); + void (*renege_events)(struct sctp_ulpq *, struct sctp_chunk *, gfp_t); + void (*start_pd)(struct sctp_ulpq *, gfp_t); + void (*abort_pd)(struct sctp_ulpq *, gfp_t); + void (*generate_ftsn)(struct sctp_outq *, __u32); + bool (*validate_ftsn)(struct sctp_chunk *); + void (*report_ftsn)(struct sctp_ulpq *, __u32); + void (*handle_ftsn)(struct sctp_ulpq *, struct sctp_chunk *); +}; + +struct sctp_bind_bucket { + short unsigned int port; + signed char fastreuse; + signed char fastreuseport; + kuid_t fastuid; + struct hlist_node node; + struct hlist_head owner; + struct net *net; +}; + +enum sctp_socket_type { + SCTP_SOCKET_UDP = 0, + SCTP_SOCKET_UDP_HIGH_BANDWIDTH = 1, + SCTP_SOCKET_TCP = 2, +}; + +struct sctp_pf; + +struct sctp_sock { + struct inet_sock inet; + enum sctp_socket_type type; + struct sctp_pf *pf; + struct crypto_shash *hmac; + char *sctp_hmac_alg; + struct sctp_endpoint *ep; + struct sctp_bind_bucket *bind_hash; + __u16 default_stream; + __u32 default_ppid; + __u16 default_flags; + __u32 default_context; + __u32 default_timetolive; + __u32 default_rcv_context; + int max_burst; + __u32 hbinterval; + __u32 probe_interval; + __be16 udp_port; + __be16 encap_port; + __u16 pathmaxrxt; + __u32 flowlabel; + __u8 dscp; + __u16 pf_retrans; + __u16 ps_retrans; + __u32 pathmtu; + __u32 sackdelay; + __u32 sackfreq; + __u32 param_flags; + __u32 default_ss; + struct sctp_rtoinfo rtoinfo; + struct sctp_paddrparams paddrparam; + struct sctp_assocparams assocparams; + __u16 subscribe; + struct sctp_initmsg initmsg; + int user_frag; + __u32 autoclose; + __u32 adaptation_ind; + __u32 pd_point; + __u16 nodelay: 1; + __u16 pf_expose: 2; + __u16 reuse: 1; + __u16 disable_fragments: 1; + __u16 v4mapped: 1; + __u16 frag_interleave: 1; + __u16 recvrcvinfo: 1; + __u16 recvnxtinfo: 1; + __u16 data_ready_signalled: 1; + atomic_t pd_mode; + struct sk_buff_head pd_lobby; + struct list_head auto_asconf_list; + int do_auto_asconf; +}; + +struct sctp_af; + +struct sctp_pf { + void (*event_msgname)(struct sctp_ulpevent *, char *, int *); + void (*skb_msgname)(struct sk_buff *, char *, int *); + int (*af_supported)(sa_family_t, struct sctp_sock *); + int (*cmp_addr)(const union sctp_addr *, const union sctp_addr *, struct sctp_sock *); + int (*bind_verify)(struct sctp_sock *, union sctp_addr *); + int (*send_verify)(struct sctp_sock *, union sctp_addr *); + int (*supported_addrs)(const struct sctp_sock *, __be16 *); + struct sock * (*create_accept_sk)(struct sock *, struct sctp_association *, bool); + int (*addr_to_user)(struct sctp_sock *, union sctp_addr *); + void (*to_sk_saddr)(union sctp_addr *, struct sock *); + void (*to_sk_daddr)(union sctp_addr *, struct sock *); + void (*copy_ip_options)(struct sock *, struct sock *); + struct sctp_af *af; +}; + +struct sctp_endpoint { + struct sctp_ep_common base; + struct hlist_node node; + int hashent; + struct list_head asocs; + __u8 secret_key[32]; + __u8 *digest; + __u32 sndbuf_policy; + __u32 rcvbuf_policy; + struct crypto_shash **auth_hmacs; + struct sctp_hmac_algo_param *auth_hmacs_list; + struct sctp_chunks_param *auth_chunk_list; + struct list_head endpoint_shared_keys; + __u16 active_key_id; + __u8 ecn_enable: 1; + __u8 auth_enable: 1; + __u8 intl_enable: 1; + __u8 prsctp_enable: 1; + __u8 asconf_enable: 1; + __u8 reconf_enable: 1; + __u8 strreset_enable; + struct callback_head rcu; +}; + +struct sctp_signed_cookie { + __u8 signature[32]; + __u32 __pad; + struct sctp_cookie c; +} __attribute__((packed)); + +union sctp_addr_param { + struct sctp_paramhdr p; + struct sctp_ipv4addr_param v4; + struct sctp_ipv6addr_param v6; +}; + +struct sctp_sender_hb_info { + struct sctp_paramhdr param_hdr; + union sctp_addr daddr; + long unsigned int sent_at; + __u64 hb_nonce; + __u32 probe_size; +}; + +struct sctp_af { + int (*sctp_xmit)(struct sk_buff *, struct sctp_transport *); + int (*setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); + int (*getsockopt)(struct sock *, int, int, char *, int *); + void (*get_dst)(struct sctp_transport *, union sctp_addr *, struct flowi *, struct sock *); + void (*get_saddr)(struct sctp_sock *, struct sctp_transport *, struct flowi *); + void (*copy_addrlist)(struct list_head *, struct net_device *); + int (*cmp_addr)(const union sctp_addr *, const union sctp_addr *); + void (*addr_copy)(union sctp_addr *, union sctp_addr *); + void (*from_skb)(union sctp_addr *, struct sk_buff *, int); + void (*from_sk)(union sctp_addr *, struct sock *); + bool (*from_addr_param)(union sctp_addr *, union sctp_addr_param *, __be16, int); + int (*to_addr_param)(const union sctp_addr *, union sctp_addr_param *); + int (*addr_valid)(union sctp_addr *, struct sctp_sock *, const struct sk_buff *); + enum sctp_scope (*scope)(union sctp_addr *); + void (*inaddr_any)(union sctp_addr *, __be16); + int (*is_any)(const union sctp_addr *); + int (*available)(union sctp_addr *, struct sctp_sock *); + int (*skb_iif)(const struct sk_buff *); + int (*skb_sdif)(const struct sk_buff *); + int (*is_ce)(const struct sk_buff *); + void (*seq_dump_addr)(struct seq_file *, union sctp_addr *); + void (*ecn_capable)(struct sock *); + __u16 net_header_len; + int sockaddr_len; + int (*ip_options_len)(struct sock *); + sa_family_t sa_family; + struct list_head list; +}; + +struct sctp_packet { + __u16 source_port; + __u16 destination_port; + __u32 vtag; + struct list_head chunk_list; + size_t overhead; + size_t size; + size_t max_size; + struct sctp_transport *transport; + struct sctp_chunk *auth; + u8 has_cookie_echo: 1; + u8 has_sack: 1; + u8 has_auth: 1; + u8 has_data: 1; + u8 ipfragok: 1; +}; + +struct sctp_transport { + struct list_head transports; + struct rhlist_head node; + refcount_t refcnt; + __u32 dead: 1; + __u32 rto_pending: 1; + __u32 hb_sent: 1; + __u32 pmtu_pending: 1; + __u32 dst_pending_confirm: 1; + __u32 sack_generation: 1; + u32 dst_cookie; + struct flowi fl; + union sctp_addr ipaddr; + struct sctp_af *af_specific; + struct sctp_association *asoc; + long unsigned int rto; + __u32 rtt; + __u32 rttvar; + __u32 srtt; + __u32 cwnd; + __u32 ssthresh; + __u32 partial_bytes_acked; + __u32 flight_size; + __u32 burst_limited; + struct dst_entry *dst; + union sctp_addr saddr; + long unsigned int hbinterval; + long unsigned int probe_interval; + long unsigned int sackdelay; + __u32 sackfreq; + atomic_t mtu_info; + ktime_t last_time_heard; + long unsigned int last_time_sent; + long unsigned int last_time_ecne_reduced; + __be16 encap_port; + __u16 pathmaxrxt; + __u32 flowlabel; + __u8 dscp; + __u16 pf_retrans; + __u16 ps_retrans; + __u32 pathmtu; + __u32 param_flags; + int init_sent_count; + int state; + short unsigned int error_count; + struct timer_list T3_rtx_timer; + struct timer_list hb_timer; + struct timer_list proto_unreach_timer; + struct timer_list reconf_timer; + struct timer_list probe_timer; + struct list_head transmitted; + struct sctp_packet packet; + struct list_head send_ready; + struct { + __u32 next_tsn_at_change; + char changeover_active; + char cycling_changeover; + char cacc_saw_newack; + } cacc; + struct { + __u16 pmtu; + __u16 probe_size; + __u16 probe_high; + __u8 probe_count; + __u8 state; + } pl; + __u64 hb_nonce; + struct callback_head rcu; +}; + +struct sctp_datamsg { + struct list_head chunks; + refcount_t refcnt; + long unsigned int expires_at; + int send_error; + u8 send_failed: 1; + u8 can_delay: 1; + u8 abandoned: 1; +}; + +enum { + SCTP_ADDR_NEW = 0, + SCTP_ADDR_SRC = 1, + SCTP_ADDR_DEL = 2, +}; + +struct sctp_sockaddr_entry { + struct list_head list; + struct callback_head rcu; + union sctp_addr a; + __u8 state; + __u8 valid; +}; + +struct sctp_stream_priorities { + struct list_head prio_sched; + struct list_head active; + struct sctp_stream_out_ext *next; + __u16 prio; + __u16 users; +}; + +struct sctp_stream_out_ext { + __u64 abandoned_unsent[3]; + __u64 abandoned_sent[3]; + struct list_head outq; + union { + struct { + struct list_head prio_list; + struct sctp_stream_priorities *prio_head; + }; + struct { + struct list_head rr_list; + }; + struct { + struct list_head fc_list; + __u32 fc_length; + __u16 fc_weight; + }; + }; +}; + +typedef short unsigned int ushort; + +struct match_token { + int token; + const char *pattern; +}; + +enum { + MAX_OPT_ARGS = 3, +}; + +typedef struct { + char *from; + char *to; +} substring_t; + +struct p9_fcall { + u32 size; + u8 id; + u16 tag; + size_t offset; + size_t capacity; + struct kmem_cache *cache; + u8 *sdata; + bool zc; +}; + +enum p9_req_status_t { + REQ_STATUS_ALLOC = 0, + REQ_STATUS_UNSENT = 1, + REQ_STATUS_SENT = 2, + REQ_STATUS_RCVD = 3, + REQ_STATUS_FLSHD = 4, + REQ_STATUS_ERROR = 5, +}; + +struct p9_req_t { + int status; + int t_err; + refcount_t refcount; + wait_queue_head_t wq; + struct p9_fcall tc; + struct p9_fcall rc; + struct list_head req_list; +}; + +struct p9_trans_module { + struct list_head list; + char *name; + int maxsize; + bool pooled_rbuffers; + int def; + struct module *owner; + int (*create)(struct p9_client *, const char *, char *); + void (*close)(struct p9_client *); + int (*request)(struct p9_client *, struct p9_req_t *); + int (*cancel)(struct p9_client *, struct p9_req_t *); + int (*cancelled)(struct p9_client *, struct p9_req_t *); + int (*zc_request)(struct p9_client *, struct p9_req_t *, struct iov_iter *, struct iov_iter *, int, int, int); + int (*show_options)(struct seq_file *, struct p9_client *); +}; + +struct p9_fd_opts { + int rfd; + int wfd; + u16 port; + bool privport; +}; + +enum { + Opt_port = 0, + Opt_rfdno = 1, + Opt_wfdno = 2, + Opt_err = 3, + Opt_privport = 4, +}; + +enum { + Rworksched = 1, + Rpending = 2, + Wworksched = 4, + Wpending = 8, +}; + +struct p9_conn; + +struct p9_poll_wait { + struct p9_conn *conn; + wait_queue_entry_t wait; + wait_queue_head_t *wait_addr; +}; + +struct p9_conn { + struct list_head mux_list; + struct p9_client *client; + int err; + spinlock_t req_lock; + struct list_head req_list; + struct list_head unsent_req_list; + struct p9_req_t *rreq; + struct p9_req_t *wreq; + char tmp_buf[7]; + struct p9_fcall rc; + int wpos; + int wsize; + char *wbuf; + struct list_head poll_pending_link; + struct p9_poll_wait poll_wait[2]; + poll_table pt; + struct work_struct rq; + struct work_struct wq; + long unsigned int wsched; +}; + +struct p9_trans_fd { + struct file *rd; + struct file *wr; + struct p9_conn conn; +}; + +enum ovs_vport_type { + OVS_VPORT_TYPE_UNSPEC = 0, + OVS_VPORT_TYPE_NETDEV = 1, + OVS_VPORT_TYPE_INTERNAL = 2, + OVS_VPORT_TYPE_GRE = 3, + OVS_VPORT_TYPE_VXLAN = 4, + OVS_VPORT_TYPE_GENEVE = 5, + __OVS_VPORT_TYPE_MAX = 6, +}; + +struct ovs_flow_stats { + __u64 n_packets; + __u64 n_bytes; +}; + +struct ovs_key_ct_labels { + union { + __u8 ct_labels[16]; + __u32 ct_labels_32[4]; + }; +}; + +struct ovs_nsh_key_base { + __u8 flags; + __u8 ttl; + __u8 mdtype; + __u8 np; + __be32 path_hdr; +}; + +struct ip_tunnel_key { + __be64 tun_id; + union { + struct { + __be32 src; + __be32 dst; + } ipv4; + struct { + struct in6_addr src; + struct in6_addr dst; + } ipv6; + } u; + long unsigned int tun_flags[1]; + __be32 label; + u32 nhid; + u8 tos; + u8 ttl; + __be16 tp_src; + __be16 tp_dst; + __u8 flow_flags; +}; + +struct ip_tunnel_encap { + u16 type; + u16 flags; + __be16 sport; + __be16 dport; +}; + +struct ip_tunnel_info { + struct ip_tunnel_key key; + struct ip_tunnel_encap encap; + struct dst_cache dst_cache; + u8 options_len; + u8 mode; +}; + +typedef u64 sci_t; + +enum metadata_type { + METADATA_IP_TUNNEL = 0, + METADATA_HW_PORT_MUX = 1, + METADATA_MACSEC = 2, + METADATA_XFRM = 3, +}; + +struct hw_port_info { + struct net_device *lower_dev; + u32 port_id; +}; + +struct macsec_info { + sci_t sci; +}; + +struct xfrm_md_info { + u32 if_id; + int link; + struct dst_entry *dst_orig; +}; + +struct metadata_dst { + struct dst_entry dst; + enum metadata_type type; + union { + struct ip_tunnel_info tun_info; + struct hw_port_info port_info; + struct macsec_info macsec_info; + struct xfrm_md_info xfrm_info; + } u; +}; + +struct vlan_head { + __be16 tpid; + __be16 tci; +}; + +struct ovs_key_nsh { + struct ovs_nsh_key_base base; + __be32 context[4]; +}; + +struct sw_flow_key { + u8 tun_opts[255]; + u8 tun_opts_len; + struct ip_tunnel_key tun_key; + struct { + u32 priority; + u32 skb_mark; + u16 in_port; + } __attribute__((packed)) phy; + u8 mac_proto; + u8 tun_proto; + u32 ovs_flow_hash; + u32 recirc_id; + struct { + u8 src[6]; + u8 dst[6]; + struct vlan_head vlan; + struct vlan_head cvlan; + __be16 type; + } eth; + u8 ct_state; + u8 ct_orig_proto; + union { + struct { + u8 proto; + u8 tos; + u8 ttl; + u8 frag; + } ip; + }; + u16 ct_zone; + struct { + __be16 src; + __be16 dst; + __be16 flags; + } tp; + union { + struct { + struct { + __be32 src; + __be32 dst; + } addr; + union { + struct { + __be32 src; + __be32 dst; + } ct_orig; + struct { + u8 sha[6]; + u8 tha[6]; + } arp; + }; + } ipv4; + struct { + struct { + struct in6_addr src; + struct in6_addr dst; + } addr; + __be32 label; + u16 exthdrs; + union { + struct { + struct in6_addr src; + struct in6_addr dst; + } ct_orig; + struct { + struct in6_addr target; + u8 sll[6]; + u8 tll[6]; + } nd; + }; + } ipv6; + struct { + u32 num_labels_mask; + __be32 lse[3]; + } mpls; + struct ovs_key_nsh nsh; + }; + struct { + struct { + __be16 src; + __be16 dst; + } orig_tp; + u32 mark; + struct ovs_key_ct_labels labels; + } ct; +}; + +struct sw_flow_key_range { + short unsigned int start; + short unsigned int end; +}; + +struct sw_flow_mask { + int ref_count; + struct callback_head rcu; + struct sw_flow_key_range range; + struct sw_flow_key key; +}; + +struct mask_cache_entry { + u32 skb_hash; + u32 mask_index; +}; + +struct mask_cache { + struct callback_head rcu; + u32 cache_size; + struct mask_cache_entry *mask_cache; +}; + +struct mask_array_stats { + struct u64_stats_sync syncp; + u64 usage_cntrs[0]; +}; + +struct mask_array { + struct callback_head rcu; + int count; + int max; + struct mask_array_stats *masks_usage_stats; + u64 *masks_usage_zero_cntr; + struct sw_flow_mask *masks[0]; +}; + +struct table_instance { + struct hlist_head *buckets; + unsigned int n_buckets; + struct callback_head rcu; + int node_ver; + u32 hash_seed; +}; + +struct flow_table { + struct table_instance *ti; + struct table_instance *ufid_ti; + struct mask_cache *mask_cache; + struct mask_array *mask_array; + long unsigned int last_rehash; + unsigned int count; + unsigned int ufid_count; +}; + +struct dp_meter_band { + u32 type; + u32 rate; + u32 burst_size; + u64 bucket; + struct ovs_flow_stats stats; +}; + +struct dp_meter { + spinlock_t lock; + struct callback_head rcu; + u32 id; + u16 kbps: 1; + u16 keep_stats: 1; + u16 n_bands; + u32 max_delta_t; + u64 used; + struct ovs_flow_stats stats; + struct dp_meter_band bands[0]; +}; + +struct dp_meter_instance { + struct callback_head rcu; + u32 n_meters; + struct dp_meter *dp_meters[0]; +}; + +struct dp_meter_table { + struct dp_meter_instance *ti; + u32 count; + u32 max_meters_allowed; +}; + +struct vport_portids { + struct reciprocal_value rn_ids; + struct callback_head rcu; + u32 n_ids; + u32 ids[0]; +}; + +struct datapath; + +struct vport_ops; + +struct vport_upcall_stats_percpu; + +struct vport { + struct net_device *dev; + netdevice_tracker dev_tracker; + struct datapath *dp; + struct vport_portids *upcall_portids; + u16 port_no; + struct hlist_node hash_node; + struct hlist_node dp_hash_node; + const struct vport_ops *ops; + struct vport_upcall_stats_percpu *upcall_stats; + struct list_head detach_list; + struct callback_head rcu; +}; + +struct dp_stats_percpu; + +struct dp_nlsk_pids; + +struct datapath { + struct callback_head rcu; + struct list_head list_node; + struct flow_table table; + struct hlist_head *ports; + struct dp_stats_percpu *stats_percpu; + possible_net_t net; + u32 user_features; + u32 max_headroom; + struct dp_meter_table meter_tbl; + struct dp_nlsk_pids *upcall_portids; +}; + +struct vport_parms; + +struct vport_ops { + enum ovs_vport_type type; + struct vport * (*create)(const struct vport_parms *); + void (*destroy)(struct vport *); + int (*set_options)(struct vport *, struct nlattr *); + int (*get_options)(const struct vport *, struct sk_buff *); + int (*send)(struct sk_buff *); + struct module *owner; + struct list_head list; +}; + +struct vport_upcall_stats_percpu { + struct u64_stats_sync syncp; + u64_stats_t n_success; + u64_stats_t n_fail; +}; + +struct vport_parms { + const char *name; + enum ovs_vport_type type; + int desired_ifindex; + struct nlattr *options; + struct datapath *dp; + u16 port_no; + struct nlattr *upcall_portids; +}; + +struct dp_stats_percpu { + u64 n_hit; + u64 n_missed; + u64 n_lost; + u64 n_mask_hit; + u64 n_cache_hit; + struct u64_stats_sync syncp; +}; + +struct dp_nlsk_pids { + struct callback_head rcu; + u32 n_pids; + u32 pids[0]; +}; + +struct sockaddr_vm { + __kernel_sa_family_t svm_family; + short unsigned int svm_reserved1; + unsigned int svm_port; + unsigned int svm_cid; + __u8 svm_flags; + unsigned char svm_zero[3]; +}; + +struct vsock_transport; + +struct vsock_sock { + struct sock sk; + const struct vsock_transport *transport; + struct sockaddr_vm local_addr; + struct sockaddr_vm remote_addr; + struct list_head bound_table; + struct list_head connected_table; + bool trusted; + bool cached_peer_allow_dgram; + u32 cached_peer; + const struct cred *owner; + long int connect_timeout; + struct sock *listener; + struct list_head pending_links; + struct list_head accept_queue; + bool rejected; + struct delayed_work connect_work; + struct delayed_work pending_work; + struct delayed_work close_work; + bool close_work_scheduled; + u32 peer_shutdown; + bool sent_request; + bool ignore_connecting_rst; + u64 buffer_size; + u64 buffer_min_size; + u64 buffer_max_size; + void *trans; +}; + +struct vsock_transport_recv_notify_data; + +struct vsock_transport_send_notify_data; + +struct vsock_transport { + struct module *module; + int (*init)(struct vsock_sock *, struct vsock_sock *); + void (*destruct)(struct vsock_sock *); + void (*release)(struct vsock_sock *); + int (*cancel_pkt)(struct vsock_sock *); + int (*connect)(struct vsock_sock *); + int (*dgram_bind)(struct vsock_sock *, struct sockaddr_vm *); + int (*dgram_dequeue)(struct vsock_sock *, struct msghdr *, size_t, int); + int (*dgram_enqueue)(struct vsock_sock *, struct sockaddr_vm *, struct msghdr *, size_t); + bool (*dgram_allow)(u32, u32); + ssize_t (*stream_dequeue)(struct vsock_sock *, struct msghdr *, size_t, int); + ssize_t (*stream_enqueue)(struct vsock_sock *, struct msghdr *, size_t); + s64 (*stream_has_data)(struct vsock_sock *); + s64 (*stream_has_space)(struct vsock_sock *); + u64 (*stream_rcvhiwat)(struct vsock_sock *); + bool (*stream_is_active)(struct vsock_sock *); + bool (*stream_allow)(u32, u32); + ssize_t (*seqpacket_dequeue)(struct vsock_sock *, struct msghdr *, int); + int (*seqpacket_enqueue)(struct vsock_sock *, struct msghdr *, size_t); + bool (*seqpacket_allow)(u32); + u32 (*seqpacket_has_data)(struct vsock_sock *); + int (*notify_poll_in)(struct vsock_sock *, size_t, bool *); + int (*notify_poll_out)(struct vsock_sock *, size_t, bool *); + int (*notify_recv_init)(struct vsock_sock *, size_t, struct vsock_transport_recv_notify_data *); + int (*notify_recv_pre_block)(struct vsock_sock *, size_t, struct vsock_transport_recv_notify_data *); + int (*notify_recv_pre_dequeue)(struct vsock_sock *, size_t, struct vsock_transport_recv_notify_data *); + int (*notify_recv_post_dequeue)(struct vsock_sock *, size_t, ssize_t, bool, struct vsock_transport_recv_notify_data *); + int (*notify_send_init)(struct vsock_sock *, struct vsock_transport_send_notify_data *); + int (*notify_send_pre_block)(struct vsock_sock *, struct vsock_transport_send_notify_data *); + int (*notify_send_pre_enqueue)(struct vsock_sock *, struct vsock_transport_send_notify_data *); + int (*notify_send_post_enqueue)(struct vsock_sock *, ssize_t, struct vsock_transport_send_notify_data *); + void (*notify_buffer_size)(struct vsock_sock *, u64 *); + int (*notify_set_rcvlowat)(struct vsock_sock *, int); + ssize_t (*unsent_bytes)(struct vsock_sock *); + int (*shutdown)(struct vsock_sock *, int); + u32 (*get_local_cid)(void); + int (*read_skb)(struct vsock_sock *, skb_read_actor_t); + bool (*msgzerocopy_allow)(void); +}; + +struct vsock_transport_recv_notify_data { + u64 data1; + u64 data2; + bool notify_on_block; +}; + +struct vsock_transport_send_notify_data { + u64 data1; + u64 data2; +}; + +struct virtio_transport { + struct vsock_transport transport; + int (*send_pkt)(struct sk_buff *); + bool (*can_msgzerocopy)(int); +}; + +struct vsock_loopback { + struct workqueue_struct *workqueue; + struct sk_buff_head pkt_queue; + struct work_struct pkt_work; +}; + +typedef int (*decompress_fn)(unsigned char *, long int, long int (*)(void *, long unsigned int), long int (*)(void *, long unsigned int), unsigned char *, long int *, void (*)(char *)); + +struct compress_format { + unsigned char magic[2]; + const char *name; + decompress_fn decompressor; +}; + +typedef __be32 fdt32_t; + +struct fdt_header { + fdt32_t magic; + fdt32_t totalsize; + fdt32_t off_dt_struct; + fdt32_t off_dt_strings; + fdt32_t off_mem_rsvmap; + fdt32_t version; + fdt32_t last_comp_version; + fdt32_t boot_cpuid_phys; + fdt32_t size_dt_strings; + fdt32_t size_dt_struct; +}; + +enum { + ASSUME_PERFECT = 255, + ASSUME_VALID_DTB = 1, + ASSUME_VALID_INPUT = 2, + ASSUME_LATEST = 4, + ASSUME_NO_ROLLBACK = 8, + ASSUME_LIBFDT_ORDER = 16, + ASSUME_LIBFDT_FLAWLESS = 32, +}; + +typedef __be64 fdt64_t; + +struct fdt_reserve_entry { + fdt64_t address; + fdt64_t size; +}; + +struct fdt_node_header { + fdt32_t tag; + char name[0]; +}; + +struct fdt_property { + fdt32_t tag; + fdt32_t len; + fdt32_t nameoff; + char data[0]; +}; + +struct fdt_errtabent { + const char *str; +}; + +typedef int (*parse_unknown_fn)(char *, char *, const char *, void *); + +enum { + ICMP_MIB_NUM = 0, + ICMP_MIB_INMSGS = 1, + ICMP_MIB_INERRORS = 2, + ICMP_MIB_INDESTUNREACHS = 3, + ICMP_MIB_INTIMEEXCDS = 4, + ICMP_MIB_INPARMPROBS = 5, + ICMP_MIB_INSRCQUENCHS = 6, + ICMP_MIB_INREDIRECTS = 7, + ICMP_MIB_INECHOS = 8, + ICMP_MIB_INECHOREPS = 9, + ICMP_MIB_INTIMESTAMPS = 10, + ICMP_MIB_INTIMESTAMPREPS = 11, + ICMP_MIB_INADDRMASKS = 12, + ICMP_MIB_INADDRMASKREPS = 13, + ICMP_MIB_OUTMSGS = 14, + ICMP_MIB_OUTERRORS = 15, + ICMP_MIB_OUTDESTUNREACHS = 16, + ICMP_MIB_OUTTIMEEXCDS = 17, + ICMP_MIB_OUTPARMPROBS = 18, + ICMP_MIB_OUTSRCQUENCHS = 19, + ICMP_MIB_OUTREDIRECTS = 20, + ICMP_MIB_OUTECHOS = 21, + ICMP_MIB_OUTECHOREPS = 22, + ICMP_MIB_OUTTIMESTAMPS = 23, + ICMP_MIB_OUTTIMESTAMPREPS = 24, + ICMP_MIB_OUTADDRMASKS = 25, + ICMP_MIB_OUTADDRMASKREPS = 26, + ICMP_MIB_CSUMERRORS = 27, + ICMP_MIB_RATELIMITGLOBAL = 28, + ICMP_MIB_RATELIMITHOST = 29, + __ICMP_MIB_MAX = 30, +}; + +enum { + TCP_MIB_NUM = 0, + TCP_MIB_RTOALGORITHM = 1, + TCP_MIB_RTOMIN = 2, + TCP_MIB_RTOMAX = 3, + TCP_MIB_MAXCONN = 4, + TCP_MIB_ACTIVEOPENS = 5, + TCP_MIB_PASSIVEOPENS = 6, + TCP_MIB_ATTEMPTFAILS = 7, + TCP_MIB_ESTABRESETS = 8, + TCP_MIB_CURRESTAB = 9, + TCP_MIB_INSEGS = 10, + TCP_MIB_OUTSEGS = 11, + TCP_MIB_RETRANSSEGS = 12, + TCP_MIB_INERRS = 13, + TCP_MIB_OUTRSTS = 14, + TCP_MIB_CSUMERRORS = 15, + __TCP_MIB_MAX = 16, +}; + +enum { + UDP_MIB_NUM = 0, + UDP_MIB_INDATAGRAMS = 1, + UDP_MIB_NOPORTS = 2, + UDP_MIB_INERRORS = 3, + UDP_MIB_OUTDATAGRAMS = 4, + UDP_MIB_RCVBUFERRORS = 5, + UDP_MIB_SNDBUFERRORS = 6, + UDP_MIB_CSUMERRORS = 7, + UDP_MIB_IGNOREDMULTI = 8, + UDP_MIB_MEMERRORS = 9, + __UDP_MIB_MAX = 10, +}; + +enum { + LINUX_MIB_NUM = 0, + LINUX_MIB_SYNCOOKIESSENT = 1, + LINUX_MIB_SYNCOOKIESRECV = 2, + LINUX_MIB_SYNCOOKIESFAILED = 3, + LINUX_MIB_EMBRYONICRSTS = 4, + LINUX_MIB_PRUNECALLED = 5, + LINUX_MIB_RCVPRUNED = 6, + LINUX_MIB_OFOPRUNED = 7, + LINUX_MIB_OUTOFWINDOWICMPS = 8, + LINUX_MIB_LOCKDROPPEDICMPS = 9, + LINUX_MIB_ARPFILTER = 10, + LINUX_MIB_TIMEWAITED = 11, + LINUX_MIB_TIMEWAITRECYCLED = 12, + LINUX_MIB_TIMEWAITKILLED = 13, + LINUX_MIB_PAWSACTIVEREJECTED = 14, + LINUX_MIB_PAWSESTABREJECTED = 15, + LINUX_MIB_DELAYEDACKS = 16, + LINUX_MIB_DELAYEDACKLOCKED = 17, + LINUX_MIB_DELAYEDACKLOST = 18, + LINUX_MIB_LISTENOVERFLOWS = 19, + LINUX_MIB_LISTENDROPS = 20, + LINUX_MIB_TCPHPHITS = 21, + LINUX_MIB_TCPPUREACKS = 22, + LINUX_MIB_TCPHPACKS = 23, + LINUX_MIB_TCPRENORECOVERY = 24, + LINUX_MIB_TCPSACKRECOVERY = 25, + LINUX_MIB_TCPSACKRENEGING = 26, + LINUX_MIB_TCPSACKREORDER = 27, + LINUX_MIB_TCPRENOREORDER = 28, + LINUX_MIB_TCPTSREORDER = 29, + LINUX_MIB_TCPFULLUNDO = 30, + LINUX_MIB_TCPPARTIALUNDO = 31, + LINUX_MIB_TCPDSACKUNDO = 32, + LINUX_MIB_TCPLOSSUNDO = 33, + LINUX_MIB_TCPLOSTRETRANSMIT = 34, + LINUX_MIB_TCPRENOFAILURES = 35, + LINUX_MIB_TCPSACKFAILURES = 36, + LINUX_MIB_TCPLOSSFAILURES = 37, + LINUX_MIB_TCPFASTRETRANS = 38, + LINUX_MIB_TCPSLOWSTARTRETRANS = 39, + LINUX_MIB_TCPTIMEOUTS = 40, + LINUX_MIB_TCPLOSSPROBES = 41, + LINUX_MIB_TCPLOSSPROBERECOVERY = 42, + LINUX_MIB_TCPRENORECOVERYFAIL = 43, + LINUX_MIB_TCPSACKRECOVERYFAIL = 44, + LINUX_MIB_TCPRCVCOLLAPSED = 45, + LINUX_MIB_TCPDSACKOLDSENT = 46, + LINUX_MIB_TCPDSACKOFOSENT = 47, + LINUX_MIB_TCPDSACKRECV = 48, + LINUX_MIB_TCPDSACKOFORECV = 49, + LINUX_MIB_TCPABORTONDATA = 50, + LINUX_MIB_TCPABORTONCLOSE = 51, + LINUX_MIB_TCPABORTONMEMORY = 52, + LINUX_MIB_TCPABORTONTIMEOUT = 53, + LINUX_MIB_TCPABORTONLINGER = 54, + LINUX_MIB_TCPABORTFAILED = 55, + LINUX_MIB_TCPMEMORYPRESSURES = 56, + LINUX_MIB_TCPMEMORYPRESSURESCHRONO = 57, + LINUX_MIB_TCPSACKDISCARD = 58, + LINUX_MIB_TCPDSACKIGNOREDOLD = 59, + LINUX_MIB_TCPDSACKIGNOREDNOUNDO = 60, + LINUX_MIB_TCPSPURIOUSRTOS = 61, + LINUX_MIB_TCPMD5NOTFOUND = 62, + LINUX_MIB_TCPMD5UNEXPECTED = 63, + LINUX_MIB_TCPMD5FAILURE = 64, + LINUX_MIB_SACKSHIFTED = 65, + LINUX_MIB_SACKMERGED = 66, + LINUX_MIB_SACKSHIFTFALLBACK = 67, + LINUX_MIB_TCPBACKLOGDROP = 68, + LINUX_MIB_PFMEMALLOCDROP = 69, + LINUX_MIB_TCPMINTTLDROP = 70, + LINUX_MIB_TCPDEFERACCEPTDROP = 71, + LINUX_MIB_IPRPFILTER = 72, + LINUX_MIB_TCPTIMEWAITOVERFLOW = 73, + LINUX_MIB_TCPREQQFULLDOCOOKIES = 74, + LINUX_MIB_TCPREQQFULLDROP = 75, + LINUX_MIB_TCPRETRANSFAIL = 76, + LINUX_MIB_TCPRCVCOALESCE = 77, + LINUX_MIB_TCPBACKLOGCOALESCE = 78, + LINUX_MIB_TCPOFOQUEUE = 79, + LINUX_MIB_TCPOFODROP = 80, + LINUX_MIB_TCPOFOMERGE = 81, + LINUX_MIB_TCPCHALLENGEACK = 82, + LINUX_MIB_TCPSYNCHALLENGE = 83, + LINUX_MIB_TCPFASTOPENACTIVE = 84, + LINUX_MIB_TCPFASTOPENACTIVEFAIL = 85, + LINUX_MIB_TCPFASTOPENPASSIVE = 86, + LINUX_MIB_TCPFASTOPENPASSIVEFAIL = 87, + LINUX_MIB_TCPFASTOPENLISTENOVERFLOW = 88, + LINUX_MIB_TCPFASTOPENCOOKIEREQD = 89, + LINUX_MIB_TCPFASTOPENBLACKHOLE = 90, + LINUX_MIB_TCPSPURIOUS_RTX_HOSTQUEUES = 91, + LINUX_MIB_BUSYPOLLRXPACKETS = 92, + LINUX_MIB_TCPAUTOCORKING = 93, + LINUX_MIB_TCPFROMZEROWINDOWADV = 94, + LINUX_MIB_TCPTOZEROWINDOWADV = 95, + LINUX_MIB_TCPWANTZEROWINDOWADV = 96, + LINUX_MIB_TCPSYNRETRANS = 97, + LINUX_MIB_TCPORIGDATASENT = 98, + LINUX_MIB_TCPHYSTARTTRAINDETECT = 99, + LINUX_MIB_TCPHYSTARTTRAINCWND = 100, + LINUX_MIB_TCPHYSTARTDELAYDETECT = 101, + LINUX_MIB_TCPHYSTARTDELAYCWND = 102, + LINUX_MIB_TCPACKSKIPPEDSYNRECV = 103, + LINUX_MIB_TCPACKSKIPPEDPAWS = 104, + LINUX_MIB_TCPACKSKIPPEDSEQ = 105, + LINUX_MIB_TCPACKSKIPPEDFINWAIT2 = 106, + LINUX_MIB_TCPACKSKIPPEDTIMEWAIT = 107, + LINUX_MIB_TCPACKSKIPPEDCHALLENGE = 108, + LINUX_MIB_TCPWINPROBE = 109, + LINUX_MIB_TCPKEEPALIVE = 110, + LINUX_MIB_TCPMTUPFAIL = 111, + LINUX_MIB_TCPMTUPSUCCESS = 112, + LINUX_MIB_TCPDELIVERED = 113, + LINUX_MIB_TCPDELIVEREDCE = 114, + LINUX_MIB_TCPACKCOMPRESSED = 115, + LINUX_MIB_TCPZEROWINDOWDROP = 116, + LINUX_MIB_TCPRCVQDROP = 117, + LINUX_MIB_TCPWQUEUETOOBIG = 118, + LINUX_MIB_TCPFASTOPENPASSIVEALTKEY = 119, + LINUX_MIB_TCPTIMEOUTREHASH = 120, + LINUX_MIB_TCPDUPLICATEDATAREHASH = 121, + LINUX_MIB_TCPDSACKRECVSEGS = 122, + LINUX_MIB_TCPDSACKIGNOREDDUBIOUS = 123, + LINUX_MIB_TCPMIGRATEREQSUCCESS = 124, + LINUX_MIB_TCPMIGRATEREQFAILURE = 125, + LINUX_MIB_TCPPLBREHASH = 126, + LINUX_MIB_TCPAOREQUIRED = 127, + LINUX_MIB_TCPAOBAD = 128, + LINUX_MIB_TCPAOKEYNOTFOUND = 129, + LINUX_MIB_TCPAOGOOD = 130, + LINUX_MIB_TCPAODROPPEDICMPS = 131, + __LINUX_MIB_MAX = 132, +}; + +enum { + LINUX_MIB_TLSNUM = 0, + LINUX_MIB_TLSCURRTXSW = 1, + LINUX_MIB_TLSCURRRXSW = 2, + LINUX_MIB_TLSCURRTXDEVICE = 3, + LINUX_MIB_TLSCURRRXDEVICE = 4, + LINUX_MIB_TLSTXSW = 5, + LINUX_MIB_TLSRXSW = 6, + LINUX_MIB_TLSTXDEVICE = 7, + LINUX_MIB_TLSRXDEVICE = 8, + LINUX_MIB_TLSDECRYPTERROR = 9, + LINUX_MIB_TLSRXDEVICERESYNC = 10, + LINUX_MIB_TLSDECRYPTRETRY = 11, + LINUX_MIB_TLSRXNOPADVIOL = 12, + __LINUX_MIB_TLSMAX = 13, +}; + +enum tcp_conntrack { + TCP_CONNTRACK_NONE = 0, + TCP_CONNTRACK_SYN_SENT = 1, + TCP_CONNTRACK_SYN_RECV = 2, + TCP_CONNTRACK_ESTABLISHED = 3, + TCP_CONNTRACK_FIN_WAIT = 4, + TCP_CONNTRACK_CLOSE_WAIT = 5, + TCP_CONNTRACK_LAST_ACK = 6, + TCP_CONNTRACK_TIME_WAIT = 7, + TCP_CONNTRACK_CLOSE = 8, + TCP_CONNTRACK_LISTEN = 9, + TCP_CONNTRACK_MAX = 10, + TCP_CONNTRACK_IGNORE = 11, + TCP_CONNTRACK_RETRANS = 12, + TCP_CONNTRACK_UNACK = 13, + TCP_CONNTRACK_TIMEOUT_MAX = 14, +}; + +enum ct_dccp_states { + CT_DCCP_NONE = 0, + CT_DCCP_REQUEST = 1, + CT_DCCP_RESPOND = 2, + CT_DCCP_PARTOPEN = 3, + CT_DCCP_OPEN = 4, + CT_DCCP_CLOSEREQ = 5, + CT_DCCP_CLOSING = 6, + CT_DCCP_TIMEWAIT = 7, + CT_DCCP_IGNORE = 8, + CT_DCCP_INVALID = 9, + __CT_DCCP_MAX = 10, +}; + +enum udp_conntrack { + UDP_CT_UNREPLIED = 0, + UDP_CT_REPLIED = 1, + UDP_CT_MAX = 2, +}; + +enum { + XFRM_POLICY_IN = 0, + XFRM_POLICY_OUT = 1, + XFRM_POLICY_FWD = 2, + XFRM_POLICY_MASK = 3, + XFRM_POLICY_MAX = 3, +}; + +enum netns_bpf_attach_type { + NETNS_BPF_INVALID = -1, + NETNS_BPF_FLOW_DISSECTOR = 0, + NETNS_BPF_SK_LOOKUP = 1, + MAX_NETNS_BPF_ATTACH_TYPE = 2, +}; + +struct trace_event_raw_initcall_level { + struct trace_entry ent; + u32 __data_loc_level; + char __data[0]; +}; + +struct trace_event_raw_initcall_start { + struct trace_entry ent; + initcall_t func; + char __data[0]; +}; + +struct trace_event_raw_initcall_finish { + struct trace_entry ent; + initcall_t func; + int ret; + char __data[0]; +}; + +struct trace_event_data_offsets_initcall_level { + u32 level; + const void *level_ptr_; +}; + +struct trace_event_data_offsets_initcall_start {}; + +struct trace_event_data_offsets_initcall_finish {}; + +typedef void (*btf_trace_initcall_level)(void *, const char *); + +typedef void (*btf_trace_initcall_start)(void *, initcall_t); + +typedef void (*btf_trace_initcall_finish)(void *, initcall_t, int); + +struct blacklist_entry { + struct list_head next; + char *buf; +}; + +struct wq_flusher; + +struct workqueue_attrs; + +struct wq_device; + +struct wq_node_nr_active; + +struct workqueue_struct { + struct list_head pwqs; + struct list_head list; + struct mutex mutex; + int work_color; + int flush_color; + atomic_t nr_pwqs_to_flush; + struct wq_flusher *first_flusher; + struct list_head flusher_queue; + struct list_head flusher_overflow; + struct list_head maydays; + struct worker *rescuer; + int nr_drainers; + int max_active; + int min_active; + int saved_max_active; + int saved_min_active; + struct workqueue_attrs *unbound_attrs; + struct pool_workqueue *dfl_pwq; + struct wq_device *wq_dev; + char name[32]; + struct callback_head rcu; + long: 64; + long: 64; + unsigned int flags; + struct pool_workqueue **cpu_pwq; + struct wq_node_nr_active *node_nr_active[0]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum wq_affn_scope { + WQ_AFFN_DFL = 0, + WQ_AFFN_CPU = 1, + WQ_AFFN_SMT = 2, + WQ_AFFN_CACHE = 3, + WQ_AFFN_NUMA = 4, + WQ_AFFN_SYSTEM = 5, + WQ_AFFN_NR_TYPES = 6, +}; + +struct workqueue_attrs { + int nice; + cpumask_var_t cpumask; + cpumask_var_t __pod_cpumask; + bool affn_strict; + enum wq_affn_scope affn_scope; + bool ordered; +}; + +struct execute_work { + struct work_struct work; +}; + +struct pool_workqueue { + struct worker_pool *pool; + struct workqueue_struct *wq; + int work_color; + int flush_color; + int refcnt; + int nr_in_flight[16]; + bool plugged; + int nr_active; + struct list_head inactive_works; + struct list_head pending_node; + struct list_head pwqs_node; + struct list_head mayday_node; + u64 stats[8]; + struct kthread_work release_work; + struct callback_head rcu; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct worker_pool { + raw_spinlock_t lock; + int cpu; + int node; + int id; + unsigned int flags; + long unsigned int watchdog_ts; + bool cpu_stall; + int nr_running; + struct list_head worklist; + int nr_workers; + int nr_idle; + struct list_head idle_list; + struct timer_list idle_timer; + struct work_struct idle_cull_work; + struct timer_list mayday_timer; + struct hlist_head busy_hash[64]; + struct worker *manager; + struct list_head workers; + struct ida worker_ida; + struct workqueue_attrs *attrs; + struct hlist_node hash_node; + int refcnt; + struct callback_head rcu; +}; + +enum worker_pool_flags { + POOL_BH = 1, + POOL_MANAGER_ACTIVE = 2, + POOL_DISASSOCIATED = 4, + POOL_BH_DRAINING = 8, +}; + +enum worker_flags { + WORKER_DIE = 2, + WORKER_IDLE = 4, + WORKER_PREP = 8, + WORKER_CPU_INTENSIVE = 64, + WORKER_UNBOUND = 128, + WORKER_REBOUND = 256, + WORKER_NOT_RUNNING = 456, +}; + +enum work_cancel_flags { + WORK_CANCEL_DELAYED = 1, + WORK_CANCEL_DISABLE = 2, +}; + +enum wq_internal_consts { + NR_STD_WORKER_POOLS = 2, + UNBOUND_POOL_HASH_ORDER = 6, + BUSY_WORKER_HASH_ORDER = 6, + MAX_IDLE_WORKERS_RATIO = 4, + IDLE_WORKER_TIMEOUT = 300000, + MAYDAY_INITIAL_TIMEOUT = 10, + MAYDAY_INTERVAL = 100, + CREATE_COOLDOWN = 1000, + RESCUER_NICE_LEVEL = -20, + HIGHPRI_NICE_LEVEL = -20, + WQ_NAME_LEN = 32, + WORKER_ID_LEN = 42, +}; + +enum pool_workqueue_stats { + PWQ_STAT_STARTED = 0, + PWQ_STAT_COMPLETED = 1, + PWQ_STAT_CPU_TIME = 2, + PWQ_STAT_CPU_INTENSIVE = 3, + PWQ_STAT_CM_WAKEUP = 4, + PWQ_STAT_REPATRIATED = 5, + PWQ_STAT_MAYDAY = 6, + PWQ_STAT_RESCUED = 7, + PWQ_NR_STATS = 8, +}; + +struct wq_flusher { + struct list_head list; + int flush_color; + struct completion done; +}; + +struct wq_node_nr_active { + int max; + atomic_t nr; + raw_spinlock_t lock; + struct list_head pending_pwqs; +}; + +struct wq_device { + struct workqueue_struct *wq; + struct device dev; +}; + +struct wq_pod_type { + int nr_pods; + cpumask_var_t *pod_cpus; + int *pod_node; + int *cpu_pod; +}; + +struct work_offq_data { + u32 pool_id; + u32 disable; + u32 flags; +}; + +struct trace_event_raw_workqueue_queue_work { + struct trace_entry ent; + void *work; + void *function; + u32 __data_loc_workqueue; + int req_cpu; + int cpu; + char __data[0]; +}; + +struct trace_event_raw_workqueue_activate_work { + struct trace_entry ent; + void *work; + void *function; + char __data[0]; +}; + +struct trace_event_raw_workqueue_execute_start { + struct trace_entry ent; + void *work; + void *function; + char __data[0]; +}; + +struct trace_event_raw_workqueue_execute_end { + struct trace_entry ent; + void *work; + void *function; + char __data[0]; +}; + +struct trace_event_data_offsets_workqueue_queue_work { + u32 workqueue; + const void *workqueue_ptr_; +}; + +struct trace_event_data_offsets_workqueue_activate_work {}; + +struct trace_event_data_offsets_workqueue_execute_start {}; + +struct trace_event_data_offsets_workqueue_execute_end {}; + +typedef void (*btf_trace_workqueue_queue_work)(void *, int, struct pool_workqueue *, struct work_struct *); + +typedef void (*btf_trace_workqueue_activate_work)(void *, struct work_struct *); + +typedef void (*btf_trace_workqueue_execute_start)(void *, struct work_struct *); + +typedef void (*btf_trace_workqueue_execute_end)(void *, struct work_struct *, work_func_t); + +struct wq_drain_dead_softirq_work { + struct work_struct work; + struct worker_pool *pool; + struct completion done; +}; + +struct wq_barrier { + struct work_struct work; + struct completion done; + struct task_struct *task; +}; + +struct apply_wqattrs_ctx { + struct workqueue_struct *wq; + struct workqueue_attrs *attrs; + struct list_head list; + struct pool_workqueue *dfl_pwq; + struct pool_workqueue *pwq_tbl[0]; +}; + +struct pr_cont_work_struct { + bool comma; + work_func_t func; + long int ctr; +}; + +struct work_for_cpu { + struct work_struct work; + long int (*fn)(void *); + void *arg; + long int ret; +}; + +enum { + GP_IDLE = 0, + GP_ENTER = 1, + GP_PASSED = 2, + GP_EXIT = 3, + GP_REPLAY = 4, +}; + +struct rcu_synchronize { + struct callback_head head; + struct completion completion; +}; + +struct rcu_cblist { + struct callback_head *head; + struct callback_head **tail; + long int len; +}; + +struct subprocess_info { + struct work_struct work; + struct completion *complete; + const char *path; + char **argv; + char **envp; + int wait; + int retval; + int (*init)(struct subprocess_info *, struct cred *); + void (*cleanup)(struct subprocess_info *); + void *data; +}; + +typedef __kernel_timer_t timer_t; + +struct sigqueue { + struct list_head list; + int flags; + kernel_siginfo_t info; + struct ucounts *ucounts; +}; + +struct __kernel_timex_timeval { + __kernel_time64_t tv_sec; + long long int tv_usec; +}; + +struct __kernel_timex { + unsigned int modes; + long long int offset; + long long int freq; + long long int maxerror; + long long int esterror; + int status; + long long int constant; + long long int precision; + long long int tolerance; + struct __kernel_timex_timeval time; + long long int tick; + long long int ppsfreq; + long long int jitter; + int shift; + long long int stabil; + long long int jitcnt; + long long int calcnt; + long long int errcnt; + long long int stbcnt; + int tai; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum alarmtimer_type { + ALARM_REALTIME = 0, + ALARM_BOOTTIME = 1, + ALARM_NUMTYPE = 2, + ALARM_REALTIME_FREEZER = 3, + ALARM_BOOTTIME_FREEZER = 4, +}; + +enum alarmtimer_restart { + ALARMTIMER_NORESTART = 0, + ALARMTIMER_RESTART = 1, +}; + +struct alarm { + struct timerqueue_node node; + struct hrtimer timer; + enum alarmtimer_restart (*function)(struct alarm *, ktime_t); + enum alarmtimer_type type; + int state; + void *data; +}; + +struct cpu_timer { + struct timerqueue_node node; + struct timerqueue_head *head; + struct pid *pid; + struct list_head elist; + int firing; + struct task_struct *handling; +}; + +struct k_clock; + +struct k_itimer { + struct hlist_node list; + struct hlist_node t_hash; + spinlock_t it_lock; + const struct k_clock *kclock; + clockid_t it_clock; + timer_t it_id; + int it_active; + s64 it_overrun; + s64 it_overrun_last; + int it_requeue_pending; + int it_sigev_notify; + ktime_t it_interval; + struct signal_struct *it_signal; + union { + struct pid *it_pid; + struct task_struct *it_process; + }; + struct sigqueue *sigq; + union { + struct { + struct hrtimer timer; + } real; + struct cpu_timer cpu; + struct { + struct alarm alarmtimer; + } alarm; + } it; + struct callback_head rcu; +}; + +struct k_clock { + int (*clock_getres)(const clockid_t, struct timespec64 *); + int (*clock_set)(const clockid_t, const struct timespec64 *); + int (*clock_get_timespec)(const clockid_t, struct timespec64 *); + ktime_t (*clock_get_ktime)(const clockid_t); + int (*clock_adj)(const clockid_t, struct __kernel_timex *); + int (*timer_create)(struct k_itimer *); + int (*nsleep)(const clockid_t, int, const struct timespec64 *); + int (*timer_set)(struct k_itimer *, int, struct itimerspec64 *, struct itimerspec64 *); + int (*timer_del)(struct k_itimer *); + void (*timer_get)(struct k_itimer *, struct itimerspec64 *); + void (*timer_rearm)(struct k_itimer *); + s64 (*timer_forward)(struct k_itimer *, ktime_t); + ktime_t (*timer_remaining)(struct k_itimer *, ktime_t); + int (*timer_try_to_cancel)(struct k_itimer *); + void (*timer_arm)(struct k_itimer *, ktime_t, bool, bool); + void (*timer_wait_running)(struct k_itimer *); +}; + +enum clock_event_state { + CLOCK_EVT_STATE_DETACHED = 0, + CLOCK_EVT_STATE_SHUTDOWN = 1, + CLOCK_EVT_STATE_PERIODIC = 2, + CLOCK_EVT_STATE_ONESHOT = 3, + CLOCK_EVT_STATE_ONESHOT_STOPPED = 4, +}; + +struct clock_event_device { + void (*event_handler)(struct clock_event_device *); + int (*set_next_event)(long unsigned int, struct clock_event_device *); + int (*set_next_ktime)(ktime_t, struct clock_event_device *); + ktime_t next_event; + u64 max_delta_ns; + u64 min_delta_ns; + u32 mult; + u32 shift; + enum clock_event_state state_use_accessors; + unsigned int features; + long unsigned int retries; + int (*set_state_periodic)(struct clock_event_device *); + int (*set_state_oneshot)(struct clock_event_device *); + int (*set_state_oneshot_stopped)(struct clock_event_device *); + int (*set_state_shutdown)(struct clock_event_device *); + int (*tick_resume)(struct clock_event_device *); + void (*broadcast)(const struct cpumask *); + void (*suspend)(struct clock_event_device *); + void (*resume)(struct clock_event_device *); + long unsigned int min_delta_ticks; + long unsigned int max_delta_ticks; + const char *name; + int rating; + int irq; + int bound_on; + const struct cpumask *cpumask; + struct list_head list; + struct module *owner; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum tick_device_mode { + TICKDEV_MODE_PERIODIC = 0, + TICKDEV_MODE_ONESHOT = 1, +}; + +struct tick_device { + struct clock_event_device *evtdev; + enum tick_device_mode mode; +}; + +typedef int __kernel_key_t; + +typedef int __kernel_mqd_t; + +typedef __kernel_key_t key_t; + +typedef __kernel_mqd_t mqd_t; + +struct sigevent { + sigval_t sigev_value; + int sigev_signo; + int sigev_notify; + union { + int _pad[12]; + int _tid; + struct { + void (*_function)(sigval_t); + void *_attribute; + } _sigev_thread; + } _sigev_un; +}; + +enum audit_state { + AUDIT_STATE_DISABLED = 0, + AUDIT_STATE_BUILD = 1, + AUDIT_STATE_RECORD = 2, +}; + +struct audit_cap_data { + kernel_cap_t permitted; + kernel_cap_t inheritable; + union { + unsigned int fE; + kernel_cap_t effective; + }; + kernel_cap_t ambient; + kuid_t rootid; +}; + +struct audit_names { + struct list_head list; + struct filename *name; + int name_len; + bool hidden; + long unsigned int ino; + dev_t dev; + umode_t mode; + kuid_t uid; + kgid_t gid; + dev_t rdev; + u32 osid; + struct audit_cap_data fcap; + unsigned int fcap_ver; + unsigned char type; + bool should_free; +}; + +struct mq_attr { + __kernel_long_t mq_flags; + __kernel_long_t mq_maxmsg; + __kernel_long_t mq_msgsize; + __kernel_long_t mq_curmsgs; + __kernel_long_t __reserved[4]; +}; + +struct open_how { + __u64 flags; + __u64 mode; + __u64 resolve; +}; + +struct audit_ntp_val { + long long int oldval; + long long int newval; +}; + +struct audit_ntp_data { + struct audit_ntp_val vals[6]; +}; + +struct audit_proctitle { + int len; + char *value; +}; + +struct audit_aux_data; + +struct audit_tree_refs; + +struct audit_context { + int dummy; + enum { + AUDIT_CTX_UNUSED = 0, + AUDIT_CTX_SYSCALL = 1, + AUDIT_CTX_URING = 2, + } context; + enum audit_state state; + enum audit_state current_state; + unsigned int serial; + int major; + int uring_op; + struct timespec64 ctime; + long unsigned int argv[4]; + long int return_code; + u64 prio; + int return_valid; + struct audit_names preallocated_names[5]; + int name_count; + struct list_head names_list; + char *filterkey; + struct path pwd; + struct audit_aux_data *aux; + struct audit_aux_data *aux_pids; + struct __kernel_sockaddr_storage *sockaddr; + size_t sockaddr_len; + pid_t ppid; + kuid_t uid; + kuid_t euid; + kuid_t suid; + kuid_t fsuid; + kgid_t gid; + kgid_t egid; + kgid_t sgid; + kgid_t fsgid; + long unsigned int personality; + int arch; + pid_t target_pid; + kuid_t target_auid; + kuid_t target_uid; + unsigned int target_sessionid; + u32 target_sid; + char target_comm[16]; + struct audit_tree_refs *trees; + struct audit_tree_refs *first_trees; + struct list_head killed_trees; + int tree_count; + int type; + union { + struct { + int nargs; + long int args[6]; + } socketcall; + struct { + kuid_t uid; + kgid_t gid; + umode_t mode; + u32 osid; + int has_perm; + uid_t perm_uid; + gid_t perm_gid; + umode_t perm_mode; + long unsigned int qbytes; + } ipc; + struct { + mqd_t mqdes; + struct mq_attr mqstat; + } mq_getsetattr; + struct { + mqd_t mqdes; + int sigev_signo; + } mq_notify; + struct { + mqd_t mqdes; + size_t msg_len; + unsigned int msg_prio; + struct timespec64 abs_timeout; + } mq_sendrecv; + struct { + int oflag; + umode_t mode; + struct mq_attr attr; + } mq_open; + struct { + pid_t pid; + struct audit_cap_data cap; + } capset; + struct { + int fd; + int flags; + } mmap; + struct open_how openat2; + struct { + int argc; + } execve; + struct { + const char *name; + } module; + struct { + struct audit_ntp_data ntp_data; + struct timespec64 tk_injoffset; + } time; + }; + int fds[2]; + struct audit_proctitle proctitle; +}; + +struct cpu_vfs_cap_data { + __u32 magic_etc; + kuid_t rootid; + kernel_cap_t permitted; + kernel_cap_t inheritable; +}; + +enum auditsc_class_t { + AUDITSC_NATIVE = 0, + AUDITSC_COMPAT = 1, + AUDITSC_OPEN = 2, + AUDITSC_OPENAT = 3, + AUDITSC_SOCKETCALL = 4, + AUDITSC_EXECVE = 5, + AUDITSC_OPENAT2 = 6, + AUDITSC_NVALS = 7, +}; + +enum { + Audit_equal = 0, + Audit_not_equal = 1, + Audit_bitmask = 2, + Audit_bittest = 3, + Audit_lt = 4, + Audit_gt = 5, + Audit_le = 6, + Audit_ge = 7, + Audit_bad = 8, +}; + +struct fanotify_response_info_header { + __u8 type; + __u8 pad; + __u16 len; +}; + +struct fanotify_response_info_audit_rule { + struct fanotify_response_info_header hdr; + __u32 rule_number; + __u32 subj_trust; + __u32 obj_trust; +}; + +struct audit_field; + +struct audit_watch; + +struct audit_tree; + +struct audit_fsnotify_mark; + +struct audit_krule { + u32 pflags; + u32 flags; + u32 listnr; + u32 action; + u32 mask[64]; + u32 buflen; + u32 field_count; + char *filterkey; + struct audit_field *fields; + struct audit_field *arch_f; + struct audit_field *inode_f; + struct audit_watch *watch; + struct audit_tree *tree; + struct audit_fsnotify_mark *exe; + struct list_head rlist; + struct list_head list; + u64 prio; +}; + +struct audit_field { + u32 type; + union { + u32 val; + kuid_t uid; + kgid_t gid; + struct { + char *lsm_str; + void *lsm_rule; + }; + }; + u32 op; +}; + +enum audit_nfcfgop { + AUDIT_XT_OP_REGISTER = 0, + AUDIT_XT_OP_REPLACE = 1, + AUDIT_XT_OP_UNREGISTER = 2, + AUDIT_NFT_OP_TABLE_REGISTER = 3, + AUDIT_NFT_OP_TABLE_UNREGISTER = 4, + AUDIT_NFT_OP_CHAIN_REGISTER = 5, + AUDIT_NFT_OP_CHAIN_UNREGISTER = 6, + AUDIT_NFT_OP_RULE_REGISTER = 7, + AUDIT_NFT_OP_RULE_UNREGISTER = 8, + AUDIT_NFT_OP_SET_REGISTER = 9, + AUDIT_NFT_OP_SET_UNREGISTER = 10, + AUDIT_NFT_OP_SETELEM_REGISTER = 11, + AUDIT_NFT_OP_SETELEM_UNREGISTER = 12, + AUDIT_NFT_OP_GEN_REGISTER = 13, + AUDIT_NFT_OP_OBJ_REGISTER = 14, + AUDIT_NFT_OP_OBJ_UNREGISTER = 15, + AUDIT_NFT_OP_OBJ_RESET = 16, + AUDIT_NFT_OP_FLOWTABLE_REGISTER = 17, + AUDIT_NFT_OP_FLOWTABLE_UNREGISTER = 18, + AUDIT_NFT_OP_SETELEM_RESET = 19, + AUDIT_NFT_OP_RULE_RESET = 20, + AUDIT_NFT_OP_INVALID = 21, +}; + +struct kern_ipc_perm { + spinlock_t lock; + bool deleted; + int id; + key_t key; + kuid_t uid; + kgid_t gid; + kuid_t cuid; + kgid_t cgid; + umode_t mode; + long unsigned int seq; + void *security; + struct rhash_head khtnode; + struct callback_head rcu; + refcount_t refcount; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct audit_entry { + struct list_head list; + struct callback_head rcu; + struct audit_krule rule; +}; + +struct audit_aux_data { + struct audit_aux_data *next; + int type; +}; + +struct audit_chunk; + +struct audit_tree_refs { + struct audit_tree_refs *next; + struct audit_chunk *c[31]; +}; + +struct audit_aux_data_pids { + struct audit_aux_data d; + pid_t target_pid[16]; + kuid_t target_auid[16]; + kuid_t target_uid[16]; + unsigned int target_sessionid[16]; + u32 target_sid[16]; + char target_comm[256]; + int pid_count; +}; + +struct audit_aux_data_bprm_fcaps { + struct audit_aux_data d; + struct audit_cap_data fcap; + unsigned int fcap_ver; + struct audit_cap_data old_pcap; + struct audit_cap_data new_pcap; +}; + +struct audit_nfcfgop_tab { + enum audit_nfcfgop op; + const char *s; +}; + +enum event_trigger_type { + ETT_NONE = 0, + ETT_TRACE_ONOFF = 1, + ETT_SNAPSHOT = 2, + ETT_STACKTRACE = 4, + ETT_EVENT_ENABLE = 8, + ETT_EVENT_HIST = 16, + ETT_HIST_ENABLE = 32, + ETT_EVENT_EPROBE = 64, +}; + +enum { + EVENT_TRIGGER_FL_PROBE = 1, +}; + +struct event_trigger_ops; + +struct event_command; + +struct event_trigger_data { + long unsigned int count; + int ref; + int flags; + struct event_trigger_ops *ops; + struct event_command *cmd_ops; + struct event_filter *filter; + char *filter_str; + void *private_data; + bool paused; + bool paused_tmp; + struct list_head list; + char *name; + struct list_head named_list; + struct event_trigger_data *named_data; +}; + +struct event_trigger_ops { + void (*trigger)(struct event_trigger_data *, struct trace_buffer *, void *, struct ring_buffer_event *); + int (*init)(struct event_trigger_data *); + void (*free)(struct event_trigger_data *); + int (*print)(struct seq_file *, struct event_trigger_data *); +}; + +struct event_command { + struct list_head list; + char *name; + enum event_trigger_type trigger_type; + int flags; + int (*parse)(struct event_command *, struct trace_event_file *, char *, char *, char *); + int (*reg)(char *, struct event_trigger_data *, struct trace_event_file *); + void (*unreg)(char *, struct event_trigger_data *, struct trace_event_file *); + void (*unreg_all)(struct trace_event_file *); + int (*set_filter)(char *, struct event_trigger_data *, struct trace_event_file *); + struct event_trigger_ops * (*get_trigger_ops)(char *, char *); +}; + +struct enable_trigger_data { + struct trace_event_file *file; + bool enable; + bool hist; +}; + +enum event_command_flags { + EVENT_CMD_FL_POST_TRIGGER = 1, + EVENT_CMD_FL_NEEDS_REC = 2, +}; + +struct bpf_iter_seq_map_info { + u32 map_id; +}; + +struct bpf_iter__bpf_map { + union { + struct bpf_iter_meta *meta; + }; + union { + struct bpf_map *map; + }; +}; + +enum { + BPF_RB_NO_WAKEUP = 1, + BPF_RB_FORCE_WAKEUP = 2, +}; + +enum { + BPF_RB_AVAIL_DATA = 0, + BPF_RB_RING_SIZE = 1, + BPF_RB_CONS_POS = 2, + BPF_RB_PROD_POS = 3, +}; + +enum { + BPF_RINGBUF_BUSY_BIT = 2147483648, + BPF_RINGBUF_DISCARD_BIT = 1073741824, + BPF_RINGBUF_HDR_SZ = 8, +}; + +struct bpf_dynptr_kern { + void *data; + u32 size; + u32 offset; +}; + +enum bpf_dynptr_type { + BPF_DYNPTR_TYPE_INVALID = 0, + BPF_DYNPTR_TYPE_LOCAL = 1, + BPF_DYNPTR_TYPE_RINGBUF = 2, + BPF_DYNPTR_TYPE_SKB = 3, + BPF_DYNPTR_TYPE_XDP = 4, +}; + +struct bpf_ringbuf { + wait_queue_head_t waitq; + struct irq_work work; + u64 mask; + struct page **pages; + int nr_pages; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + raw_spinlock_t spinlock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + atomic_t busy; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long unsigned int consumer_pos; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long unsigned int producer_pos; + long unsigned int pending_pos; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + char data[0]; +}; + +struct bpf_ringbuf_map { + struct bpf_map map; + struct bpf_ringbuf *rb; +}; + +struct bpf_ringbuf_hdr { + u32 len; + u32 pg_off; +}; + +typedef u64 (*btf_bpf_ringbuf_reserve)(struct bpf_map *, u64, u64); + +typedef u64 (*btf_bpf_ringbuf_submit)(void *, u64); + +typedef u64 (*btf_bpf_ringbuf_discard)(void *, u64); + +typedef u64 (*btf_bpf_ringbuf_output)(struct bpf_map *, void *, u64, u64); + +typedef u64 (*btf_bpf_ringbuf_query)(struct bpf_map *, u64); + +typedef u64 (*btf_bpf_ringbuf_reserve_dynptr)(struct bpf_map *, u32, u64, struct bpf_dynptr_kern *); + +typedef u64 (*btf_bpf_ringbuf_submit_dynptr)(struct bpf_dynptr_kern *, u64); + +typedef u64 (*btf_bpf_ringbuf_discard_dynptr)(struct bpf_dynptr_kern *, u64); + +typedef u64 (*btf_bpf_user_ringbuf_drain)(struct bpf_map *, void *, void *, u64); + +enum { + IORES_DESC_NONE = 0, + IORES_DESC_CRASH_KERNEL = 1, + IORES_DESC_ACPI_TABLES = 2, + IORES_DESC_ACPI_NV_STORAGE = 3, + IORES_DESC_PERSISTENT_MEMORY = 4, + IORES_DESC_PERSISTENT_MEMORY_LEGACY = 5, + IORES_DESC_DEVICE_PRIVATE_MEMORY = 6, + IORES_DESC_RESERVED = 7, + IORES_DESC_SOFT_RESERVED = 8, + IORES_DESC_CXL = 9, +}; + +enum { + REGION_INTERSECTS = 0, + REGION_DISJOINT = 1, + REGION_MIXED = 2, +}; + +struct radix_tree_iter { + long unsigned int index; + long unsigned int next_index; + long unsigned int tags; + struct xa_node *node; +}; + +enum { + RADIX_TREE_ITER_TAG_MASK = 15, + RADIX_TREE_ITER_TAGGED = 16, + RADIX_TREE_ITER_CONTIG = 32, +}; + +enum wb_state { + WB_registered = 0, + WB_writeback_running = 1, + WB_has_dirty_io = 2, + WB_start_all = 3, +}; + +enum { + CSS_NO_REF = 1, + CSS_ONLINE = 2, + CSS_RELEASED = 4, + CSS_VISIBLE = 8, + CSS_DYING = 16, +}; + +struct wb_stats { + long unsigned int nr_dirty; + long unsigned int nr_io; + long unsigned int nr_more_io; + long unsigned int nr_dirty_time; + long unsigned int nr_writeback; + long unsigned int nr_reclaimable; + long unsigned int nr_dirtied; + long unsigned int nr_written; + long unsigned int dirty_thresh; + long unsigned int wb_thresh; +}; + +enum page_walk_lock { + PGWALK_RDLOCK = 0, + PGWALK_WRLOCK = 1, + PGWALK_WRLOCK_VERIFY = 2, +}; + +struct mm_walk; + +struct mm_walk_ops { + int (*pgd_entry)(pgd_t *, long unsigned int, long unsigned int, struct mm_walk *); + int (*p4d_entry)(p4d_t *, long unsigned int, long unsigned int, struct mm_walk *); + int (*pud_entry)(pud_t *, long unsigned int, long unsigned int, struct mm_walk *); + int (*pmd_entry)(pmd_t *, long unsigned int, long unsigned int, struct mm_walk *); + int (*pte_entry)(pte_t *, long unsigned int, long unsigned int, struct mm_walk *); + int (*pte_hole)(long unsigned int, long unsigned int, int, struct mm_walk *); + int (*hugetlb_entry)(pte_t *, long unsigned int, long unsigned int, long unsigned int, struct mm_walk *); + int (*test_walk)(long unsigned int, long unsigned int, struct mm_walk *); + int (*pre_vma)(long unsigned int, long unsigned int, struct mm_walk *); + void (*post_vma)(struct mm_walk *); + enum page_walk_lock walk_lock; +}; + +enum page_walk_action { + ACTION_SUBTREE = 0, + ACTION_CONTINUE = 1, + ACTION_AGAIN = 2, +}; + +struct mm_walk { + const struct mm_walk_ops *ops; + struct mm_struct *mm; + pgd_t *pgd; + struct vm_area_struct *vma; + enum page_walk_action action; + bool no_vma; + void *private; +}; + +typedef int folio_walk_flags_t; + +enum folio_walk_level { + FW_LEVEL_PTE = 0, + FW_LEVEL_PMD = 1, + FW_LEVEL_PUD = 2, +}; + +struct folio_walk { + struct page *page; + enum folio_walk_level level; + union { + pte_t *ptep; + pud_t *pudp; + pmd_t *pmdp; + }; + union { + pte_t pte; + pud_t pud; + pmd_t pmd; + }; + struct vm_area_struct *vma; + spinlock_t *ptl; +}; + +typedef unsigned int zap_flags_t; + +struct encoded_page; + +struct zap_details { + struct folio *single_folio; + bool even_cows; + zap_flags_t zap_flags; +}; + +struct mempolicy {}; + +typedef long unsigned int pte_marker; + +struct resv_map { + struct kref refs; + spinlock_t lock; + struct list_head regions; + long int adds_in_progress; + struct list_head region_cache; + long int region_cache_count; + struct rw_semaphore rw_sema; + struct page_counter *reservation_counter; + long unsigned int pages_per_hpage; + struct cgroup_subsys_state *css; +}; + +struct file_region { + struct list_head link; + long int from; + long int to; + struct page_counter *reservation_counter; + struct cgroup_subsys_state *css; +}; + +struct hugetlb_vma_lock { + struct kref refs; + struct rw_semaphore rw_sema; + struct vm_area_struct *vma; +}; + +enum hugetlb_page_flags { + HPG_restore_reserve = 0, + HPG_migratable = 1, + HPG_temporary = 2, + HPG_freed = 3, + HPG_vmemmap_optimized = 4, + HPG_raw_hwp_unreliable = 5, + __NR_HPAGEFLAGS = 6, +}; + +struct huge_bootmem_page { + struct list_head list; + struct hstate *hstate; +}; + +struct padata_mt_job { + void (*thread_fn)(long unsigned int, long unsigned int, void *); + void *fn_arg; + long unsigned int start; + long unsigned int size; + long unsigned int align; + long unsigned int min_chunk; + int max_threads; + bool numa_aware; +}; + +struct mmu_table_batch { + struct callback_head rcu; + unsigned int nr; + void *tables[0]; +}; + +struct mmu_gather_batch { + struct mmu_gather_batch *next; + unsigned int nr; + unsigned int max; + struct encoded_page *encoded_pages[0]; +}; + +struct mmu_gather { + struct mm_struct *mm; + struct mmu_table_batch *batch; + long unsigned int start; + long unsigned int end; + unsigned int fullmm: 1; + unsigned int need_flush_all: 1; + unsigned int freed_tables: 1; + unsigned int delayed_rmap: 1; + unsigned int cleared_ptes: 1; + unsigned int cleared_pmds: 1; + unsigned int cleared_puds: 1; + unsigned int cleared_p4ds: 1; + unsigned int vma_exec: 1; + unsigned int vma_huge: 1; + unsigned int vma_pfn: 1; + unsigned int batch_count; + struct mmu_gather_batch *active; + struct mmu_gather_batch local; + struct page *__pages[8]; +}; + +enum hugetlb_memory_event { + HUGETLB_MAX = 0, + HUGETLB_NR_MEMORY_EVENTS = 1, +}; + +struct hugetlb_cgroup_per_node { + long unsigned int usage[4]; +}; + +struct hugetlb_cgroup { + struct cgroup_subsys_state css; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct page_counter hugepage[4]; + struct page_counter rsvd_hugepage[4]; + atomic_long_t events[4]; + atomic_long_t events_local[4]; + struct cgroup_file events_file[4]; + struct cgroup_file events_local_file[4]; + struct hugetlb_cgroup_per_node *nodeinfo[0]; +}; + +enum vma_resv_mode { + VMA_NEEDS_RESV = 0, + VMA_COMMIT_RESV = 1, + VMA_END_RESV = 2, + VMA_ADD_RESV = 3, + VMA_DEL_RESV = 4, +}; + +typedef __kernel_off_t off_t; + +typedef struct kobject *kobj_probe_t(dev_t, int *, void *); + +struct char_device_struct { + struct char_device_struct *next; + unsigned int major; + unsigned int baseminor; + int minorct; + char name[64]; + struct cdev *cdev; +}; + +struct mount; + +struct mnt_namespace { + struct ns_common ns; + struct mount *root; + struct rb_root mounts; + struct user_namespace *user_ns; + struct ucounts *ucounts; + u64 seq; + wait_queue_head_t poll; + u64 event; + unsigned int nr_mounts; + unsigned int pending_mounts; + struct rb_node mnt_ns_tree_node; + refcount_t passive; +}; + +struct fs_pin { + wait_queue_head_t wait; + int done; + struct hlist_node s_list; + struct hlist_node m_list; + void (*kill)(struct fs_pin *); +}; + +struct mnt_pcp; + +struct mountpoint; + +struct mount { + struct hlist_node mnt_hash; + struct mount *mnt_parent; + struct dentry *mnt_mountpoint; + struct vfsmount mnt; + union { + struct rb_node mnt_node; + struct callback_head mnt_rcu; + struct llist_node mnt_llist; + }; + struct mnt_pcp *mnt_pcp; + struct list_head mnt_mounts; + struct list_head mnt_child; + struct list_head mnt_instance; + const char *mnt_devname; + struct list_head mnt_list; + struct list_head mnt_expire; + struct list_head mnt_share; + struct list_head mnt_slave_list; + struct list_head mnt_slave; + struct mount *mnt_master; + struct mnt_namespace *mnt_ns; + struct mountpoint *mnt_mp; + union { + struct hlist_node mnt_mp_list; + struct hlist_node mnt_umount; + }; + struct list_head mnt_umounting; + struct fsnotify_mark_connector *mnt_fsnotify_marks; + __u32 mnt_fsnotify_mask; + int mnt_id; + u64 mnt_id_unique; + int mnt_group_id; + int mnt_expiry_mark; + struct hlist_head mnt_pins; + struct hlist_head mnt_stuck_children; +}; + +struct mnt_pcp { + int mnt_count; + int mnt_writers; +}; + +struct mountpoint { + struct hlist_node m_hash; + struct dentry *m_dentry; + struct hlist_head m_list; + int m_count; +}; + +struct fscrypt_prepared_key { + struct crypto_skcipher *tfm; +}; + +struct fscrypt_mode; + +struct fscrypt_master_key; + +struct fscrypt_direct_key; + +struct fscrypt_inode_info { + struct fscrypt_prepared_key ci_enc_key; + u8 ci_owns_key: 1; + u8 ci_dirhash_key_initialized: 1; + u8 ci_data_unit_bits; + u8 ci_data_units_per_block_bits; + u32 ci_hashed_ino; + struct fscrypt_mode *ci_mode; + struct inode *ci_inode; + struct fscrypt_master_key *ci_master_key; + struct list_head ci_master_key_link; + struct fscrypt_direct_key *ci_direct_key; + siphash_key_t ci_dirhash_key; + union fscrypt_policy ci_policy; + u8 ci_nonce[16]; +}; + +struct fscrypt_key_specifier { + __u32 type; + __u32 __reserved; + union { + __u8 __reserved[32]; + __u8 descriptor[8]; + __u8 identifier[16]; + } u; +}; + +struct fscrypt_mode { + const char *friendly_name; + const char *cipher_str; + int keysize; + int security_strength; + int ivsize; + int logged_cryptoapi_impl; + int logged_blk_crypto_native; + int logged_blk_crypto_fallback; + enum blk_crypto_mode_num blk_crypto_mode; +}; + +struct fscrypt_hkdf { + struct crypto_shash *hmac_tfm; +}; + +struct fscrypt_master_key_secret { + struct fscrypt_hkdf hkdf; + u32 size; + u8 raw[64]; +}; + +struct fscrypt_master_key { + struct hlist_node mk_node; + struct rw_semaphore mk_sem; + refcount_t mk_active_refs; + refcount_t mk_struct_refs; + struct callback_head mk_rcu_head; + struct fscrypt_master_key_secret mk_secret; + struct fscrypt_key_specifier mk_spec; + struct key *mk_users; + struct list_head mk_decrypted_inodes; + spinlock_t mk_decrypted_inodes_lock; + struct fscrypt_prepared_key mk_direct_keys[11]; + struct fscrypt_prepared_key mk_iv_ino_lblk_64_keys[11]; + struct fscrypt_prepared_key mk_iv_ino_lblk_32_keys[11]; + siphash_key_t mk_ino_hash_key; + bool mk_ino_hash_key_initialized; + bool mk_present; +}; + +typedef enum { + FS_DECRYPT = 0, + FS_ENCRYPT = 1, +} fscrypt_direction_t; + +union fscrypt_iv { + struct { + __le64 index; + u8 nonce[16]; + }; + u8 raw[32]; + __le64 dun[4]; +}; + +enum { + BIO_PAGE_PINNED = 0, + BIO_CLONED = 1, + BIO_BOUNCED = 2, + BIO_QUIET = 3, + BIO_CHAIN = 4, + BIO_REFFED = 5, + BIO_BPS_THROTTLED = 6, + BIO_TRACE_COMPLETION = 7, + BIO_CGROUP_ACCT = 8, + BIO_QOS_THROTTLED = 9, + BIO_QOS_MERGED = 10, + BIO_REMAPPED = 11, + BIO_ZONE_WRITE_PLUGGING = 12, + BIO_EMULATES_ZONE_APPEND = 13, + BIO_FLAG_LAST = 14, +}; + +struct folio_iter { + struct folio *folio; + size_t offset; + size_t length; + struct folio *_next; + size_t _seg_count; + int _i; +}; + +struct tree_descr { + const char *name; + const struct file_operations *ops; + int mode; +}; + +enum { + VERBOSE_STATUS = 1, +}; + +enum { + Enabled = 0, + Magic = 1, +}; + +typedef struct { + struct list_head list; + long unsigned int flags; + int offset; + int size; + char *magic; + char *mask; + const char *interpreter; + char *name; + struct dentry *dentry; + struct file *interp_file; + refcount_t users; +} Node; + +typedef struct {} local_lock_t; + +struct radix_tree_preload { + local_lock_t lock; + unsigned int nr; + struct xa_node *nodes; +}; + +enum kernfs_node_type { + KERNFS_DIR = 1, + KERNFS_FILE = 2, + KERNFS_LINK = 4, +}; + +enum kernfs_node_flag { + KERNFS_ACTIVATED = 16, + KERNFS_NS = 32, + KERNFS_HAS_SEQ_SHOW = 64, + KERNFS_HAS_MMAP = 128, + KERNFS_LOCKDEP = 256, + KERNFS_HIDDEN = 512, + KERNFS_SUICIDAL = 1024, + KERNFS_SUICIDED = 2048, + KERNFS_EMPTY_DIR = 4096, + KERNFS_HAS_RELEASE = 8192, + KERNFS_REMOVING = 16384, +}; + +enum kernfs_root_flag { + KERNFS_ROOT_CREATE_DEACTIVATED = 1, + KERNFS_ROOT_EXTRA_OPEN_PERM_CHECK = 2, + KERNFS_ROOT_SUPPORT_EXPORTOP = 4, + KERNFS_ROOT_SUPPORT_USER_XATTR = 8, +}; + +struct kernfs_syscall_ops; + +struct kernfs_root { + struct kernfs_node *kn; + unsigned int flags; + struct idr ino_idr; + u32 last_id_lowbits; + u32 id_highbits; + struct kernfs_syscall_ops *syscall_ops; + struct list_head supers; + wait_queue_head_t deactivate_waitq; + struct rw_semaphore kernfs_rwsem; + struct rw_semaphore kernfs_iattr_rwsem; + struct rw_semaphore kernfs_supers_rwsem; + struct callback_head rcu; +}; + +struct kernfs_iattrs { + kuid_t ia_uid; + kgid_t ia_gid; + struct timespec64 ia_atime; + struct timespec64 ia_mtime; + struct timespec64 ia_ctime; + struct simple_xattrs xattrs; + atomic_t nr_user_xattrs; + atomic_t user_xattr_size; +}; + +struct kernfs_syscall_ops { + int (*show_options)(struct seq_file *, struct kernfs_root *); + int (*mkdir)(struct kernfs_node *, const char *, umode_t); + int (*rmdir)(struct kernfs_node *); + int (*rename)(struct kernfs_node *, struct kernfs_node *, const char *); + int (*show_path)(struct seq_file *, struct kernfs_node *, struct kernfs_root *); +}; + +struct kernfs_super_info { + struct super_block *sb; + struct kernfs_root *root; + const void *ns; + struct list_head node; +}; + +enum fscache_volume_trace { + fscache_volume_collision = 0, + fscache_volume_get_cookie = 1, + fscache_volume_get_create_work = 2, + fscache_volume_get_hash_collision = 3, + fscache_volume_get_withdraw = 4, + fscache_volume_free = 5, + fscache_volume_new_acquire = 6, + fscache_volume_put_cookie = 7, + fscache_volume_put_create_work = 8, + fscache_volume_put_hash_collision = 9, + fscache_volume_put_relinquish = 10, + fscache_volume_put_withdraw = 11, + fscache_volume_see_create_work = 12, + fscache_volume_see_hash_wake = 13, + fscache_volume_wait_create_work = 14, +}; + +enum fscache_cookie_trace { + fscache_cookie_collision = 0, + fscache_cookie_discard = 1, + fscache_cookie_failed = 2, + fscache_cookie_get_attach_object = 3, + fscache_cookie_get_end_access = 4, + fscache_cookie_get_hash_collision = 5, + fscache_cookie_get_inval_work = 6, + fscache_cookie_get_lru = 7, + fscache_cookie_get_use_work = 8, + fscache_cookie_new_acquire = 9, + fscache_cookie_put_hash_collision = 10, + fscache_cookie_put_lru = 11, + fscache_cookie_put_object = 12, + fscache_cookie_put_over_queued = 13, + fscache_cookie_put_relinquish = 14, + fscache_cookie_put_withdrawn = 15, + fscache_cookie_put_work = 16, + fscache_cookie_see_active = 17, + fscache_cookie_see_lru_discard = 18, + fscache_cookie_see_lru_discard_clear = 19, + fscache_cookie_see_lru_do_one = 20, + fscache_cookie_see_relinquish = 21, + fscache_cookie_see_withdraw = 22, + fscache_cookie_see_work = 23, +}; + +enum fscache_active_trace { + fscache_active_use = 0, + fscache_active_use_modify = 1, + fscache_active_unuse = 2, +}; + +struct commit_header { + __be32 h_magic; + __be32 h_blocktype; + __be32 h_sequence; + unsigned char h_chksum_type; + unsigned char h_chksum_size; + unsigned char h_padding[2]; + __be32 h_chksum[8]; + __be64 h_commit_sec; + __be32 h_commit_nsec; +}; + +struct journal_block_tag3_s { + __be32 t_blocknr; + __be32 t_flags; + __be32 t_blocknr_high; + __be32 t_checksum; +}; + +typedef struct journal_block_tag3_s journal_block_tag3_t; + +struct journal_block_tag_s { + __be32 t_blocknr; + __be16 t_checksum; + __be16 t_flags; + __be32 t_blocknr_high; +}; + +typedef struct journal_block_tag_s journal_block_tag_t; + +enum jbd2_shrink_type { + JBD2_SHRINK_DESTROY = 0, + JBD2_SHRINK_BUSY_STOP = 1, + JBD2_SHRINK_BUSY_SKIP = 2, +}; + +enum utf16_endian { + UTF16_HOST_ENDIAN = 0, + UTF16_LITTLE_ENDIAN = 1, + UTF16_BIG_ENDIAN = 2, +}; + +struct msdos_dir_slot { + __u8 id; + __u8 name0_4[10]; + __u8 attr; + __u8 reserved; + __u8 alias_checksum; + __u8 name5_10[12]; + __le16 start; + __u8 name11_12[4]; +}; + +struct fat_slot_info { + loff_t i_pos; + loff_t slot_off; + int nr_slots; + struct msdos_dir_entry *de; + struct buffer_head *bh; +}; + +struct shortname_info { + unsigned char lower: 1; + unsigned char upper: 1; + unsigned char valid: 1; +}; + +typedef unsigned int __kernel_mode_t; + +typedef __kernel_mode_t mode_t; + +typedef int __kernel_rwf_t; + +enum nfs_cb_opnum4 { + OP_CB_GETATTR = 3, + OP_CB_RECALL = 4, + OP_CB_LAYOUTRECALL = 5, + OP_CB_NOTIFY = 6, + OP_CB_PUSH_DELEG = 7, + OP_CB_RECALL_ANY = 8, + OP_CB_RECALLABLE_OBJ_AVAIL = 9, + OP_CB_RECALL_SLOT = 10, + OP_CB_SEQUENCE = 11, + OP_CB_WANTS_CANCELLED = 12, + OP_CB_NOTIFY_LOCK = 13, + OP_CB_NOTIFY_DEVICEID = 14, + OP_CB_OFFLOAD = 15, + OP_CB_ILLEGAL = 10044, +}; + +struct trace_event_raw_nfs_inode_event { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + u64 version; + char __data[0]; +}; + +struct trace_event_raw_nfs_inode_event_done { + struct trace_entry ent; + long unsigned int error; + dev_t dev; + u32 fhandle; + unsigned char type; + u64 fileid; + u64 version; + loff_t size; + long unsigned int nfsi_flags; + long unsigned int cache_validity; + char __data[0]; +}; + +struct trace_event_raw_nfs_access_exit { + struct trace_entry ent; + long unsigned int error; + dev_t dev; + u32 fhandle; + unsigned char type; + u64 fileid; + u64 version; + loff_t size; + long unsigned int nfsi_flags; + long unsigned int cache_validity; + unsigned int mask; + unsigned int permitted; + char __data[0]; +}; + +struct trace_event_raw_nfs_update_size_class { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + u64 version; + loff_t cur_size; + loff_t new_size; + char __data[0]; +}; + +struct trace_event_raw_nfs_inode_range_event { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + u64 version; + loff_t range_start; + loff_t range_end; + char __data[0]; +}; + +struct trace_event_raw_nfs_readdir_event { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + u64 version; + char verifier[8]; + u64 cookie; + long unsigned int index; + unsigned int dtsize; + char __data[0]; +}; + +struct trace_event_raw_nfs_lookup_event { + struct trace_entry ent; + long unsigned int flags; + dev_t dev; + u64 dir; + u64 fileid; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfs_lookup_event_done { + struct trace_entry ent; + long unsigned int error; + long unsigned int flags; + dev_t dev; + u64 dir; + u64 fileid; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfs_atomic_open_enter { + struct trace_entry ent; + long unsigned int flags; + long unsigned int fmode; + dev_t dev; + u64 dir; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfs_atomic_open_exit { + struct trace_entry ent; + long unsigned int error; + long unsigned int flags; + long unsigned int fmode; + dev_t dev; + u64 dir; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfs_create_enter { + struct trace_entry ent; + long unsigned int flags; + dev_t dev; + u64 dir; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfs_create_exit { + struct trace_entry ent; + long unsigned int error; + long unsigned int flags; + dev_t dev; + u64 dir; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfs_directory_event { + struct trace_entry ent; + dev_t dev; + u64 dir; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfs_directory_event_done { + struct trace_entry ent; + long unsigned int error; + dev_t dev; + u64 dir; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfs_link_enter { + struct trace_entry ent; + dev_t dev; + u64 fileid; + u64 dir; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfs_link_exit { + struct trace_entry ent; + long unsigned int error; + dev_t dev; + u64 fileid; + u64 dir; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfs_rename_event { + struct trace_entry ent; + dev_t dev; + u64 old_dir; + u64 new_dir; + u32 __data_loc_old_name; + u32 __data_loc_new_name; + char __data[0]; +}; + +struct trace_event_raw_nfs_rename_event_done { + struct trace_entry ent; + dev_t dev; + long unsigned int error; + u64 old_dir; + u32 __data_loc_old_name; + u64 new_dir; + u32 __data_loc_new_name; + char __data[0]; +}; + +struct trace_event_raw_nfs_sillyrename_unlink { + struct trace_entry ent; + dev_t dev; + long unsigned int error; + u64 dir; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfs_folio_event { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + u64 version; + loff_t offset; + size_t count; + char __data[0]; +}; + +struct trace_event_raw_nfs_folio_event_done { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + int ret; + u64 fileid; + u64 version; + loff_t offset; + size_t count; + char __data[0]; +}; + +struct trace_event_raw_nfs_aop_readahead { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + u64 version; + loff_t offset; + unsigned int nr_pages; + char __data[0]; +}; + +struct trace_event_raw_nfs_aop_readahead_done { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + int ret; + u64 fileid; + u64 version; + loff_t offset; + unsigned int nr_pages; + char __data[0]; +}; + +struct trace_event_raw_nfs_initiate_read { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + loff_t offset; + u32 count; + char __data[0]; +}; + +struct trace_event_raw_nfs_readpage_done { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + loff_t offset; + u32 arg_count; + u32 res_count; + bool eof; + int error; + char __data[0]; +}; + +struct trace_event_raw_nfs_readpage_short { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + loff_t offset; + u32 arg_count; + u32 res_count; + bool eof; + int error; + char __data[0]; +}; + +struct trace_event_raw_nfs_pgio_error { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + loff_t offset; + u32 arg_count; + u32 res_count; + loff_t pos; + int error; + char __data[0]; +}; + +struct trace_event_raw_nfs_initiate_write { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + loff_t offset; + u32 count; + long unsigned int stable; + char __data[0]; +}; + +struct trace_event_raw_nfs_writeback_done { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + loff_t offset; + u32 arg_count; + u32 res_count; + int error; + long unsigned int stable; + char verifier[8]; + char __data[0]; +}; + +struct trace_event_raw_nfs_page_error_class { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + loff_t offset; + unsigned int count; + int error; + char __data[0]; +}; + +struct trace_event_raw_nfs_initiate_commit { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + loff_t offset; + u32 count; + char __data[0]; +}; + +struct trace_event_raw_nfs_commit_done { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + loff_t offset; + int error; + long unsigned int stable; + char verifier[8]; + char __data[0]; +}; + +struct trace_event_raw_nfs_direct_req_class { + struct trace_entry ent; + dev_t dev; + u64 fileid; + u32 fhandle; + loff_t offset; + ssize_t count; + ssize_t error; + int flags; + char __data[0]; +}; + +struct trace_event_raw_nfs_fh_to_dentry { + struct trace_entry ent; + int error; + dev_t dev; + u32 fhandle; + u64 fileid; + char __data[0]; +}; + +struct trace_event_raw_nfs_mount_assign { + struct trace_entry ent; + u32 __data_loc_option; + u32 __data_loc_value; + char __data[0]; +}; + +struct trace_event_raw_nfs_mount_option { + struct trace_entry ent; + u32 __data_loc_option; + char __data[0]; +}; + +struct trace_event_raw_nfs_mount_path { + struct trace_entry ent; + u32 __data_loc_path; + char __data[0]; +}; + +struct trace_event_raw_nfs_local_open_fh { + struct trace_entry ent; + int error; + u32 fhandle; + unsigned int fmode; + char __data[0]; +}; + +struct trace_event_raw_nfs_local_client_event { + struct trace_entry ent; + unsigned int protocol; + u32 __data_loc_server; + char __data[0]; +}; + +struct trace_event_raw_nfs_xdr_event { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + u32 xid; + int version; + long unsigned int error; + u32 __data_loc_program; + u32 __data_loc_procedure; + char __data[0]; +}; + +struct trace_event_data_offsets_nfs_inode_event {}; + +struct trace_event_data_offsets_nfs_inode_event_done {}; + +struct trace_event_data_offsets_nfs_access_exit {}; + +struct trace_event_data_offsets_nfs_update_size_class {}; + +struct trace_event_data_offsets_nfs_inode_range_event {}; + +struct trace_event_data_offsets_nfs_readdir_event {}; + +struct trace_event_data_offsets_nfs_lookup_event { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfs_lookup_event_done { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfs_atomic_open_enter { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfs_atomic_open_exit { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfs_create_enter { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfs_create_exit { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfs_directory_event { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfs_directory_event_done { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfs_link_enter { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfs_link_exit { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfs_rename_event { + u32 old_name; + const void *old_name_ptr_; + u32 new_name; + const void *new_name_ptr_; +}; + +struct trace_event_data_offsets_nfs_rename_event_done { + u32 old_name; + const void *old_name_ptr_; + u32 new_name; + const void *new_name_ptr_; +}; + +struct trace_event_data_offsets_nfs_sillyrename_unlink { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfs_folio_event {}; + +struct trace_event_data_offsets_nfs_folio_event_done {}; + +struct trace_event_data_offsets_nfs_aop_readahead {}; + +struct trace_event_data_offsets_nfs_aop_readahead_done {}; + +struct trace_event_data_offsets_nfs_initiate_read {}; + +struct trace_event_data_offsets_nfs_readpage_done {}; + +struct trace_event_data_offsets_nfs_readpage_short {}; + +struct trace_event_data_offsets_nfs_pgio_error {}; + +struct trace_event_data_offsets_nfs_initiate_write {}; + +struct trace_event_data_offsets_nfs_writeback_done {}; + +struct trace_event_data_offsets_nfs_page_error_class {}; + +struct trace_event_data_offsets_nfs_initiate_commit {}; + +struct trace_event_data_offsets_nfs_commit_done {}; + +struct trace_event_data_offsets_nfs_direct_req_class {}; + +struct trace_event_data_offsets_nfs_fh_to_dentry {}; + +struct trace_event_data_offsets_nfs_mount_assign { + u32 option; + const void *option_ptr_; + u32 value; + const void *value_ptr_; +}; + +struct trace_event_data_offsets_nfs_mount_option { + u32 option; + const void *option_ptr_; +}; + +struct trace_event_data_offsets_nfs_mount_path { + u32 path; + const void *path_ptr_; +}; + +struct trace_event_data_offsets_nfs_local_open_fh {}; + +struct trace_event_data_offsets_nfs_local_client_event { + u32 server; + const void *server_ptr_; +}; + +struct trace_event_data_offsets_nfs_xdr_event { + u32 program; + const void *program_ptr_; + u32 procedure; + const void *procedure_ptr_; +}; + +typedef void (*btf_trace_nfs_set_inode_stale)(void *, const struct inode *); + +typedef void (*btf_trace_nfs_refresh_inode_enter)(void *, const struct inode *); + +typedef void (*btf_trace_nfs_refresh_inode_exit)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs_revalidate_inode_enter)(void *, const struct inode *); + +typedef void (*btf_trace_nfs_revalidate_inode_exit)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs_invalidate_mapping_enter)(void *, const struct inode *); + +typedef void (*btf_trace_nfs_invalidate_mapping_exit)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs_getattr_enter)(void *, const struct inode *); + +typedef void (*btf_trace_nfs_getattr_exit)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs_setattr_enter)(void *, const struct inode *); + +typedef void (*btf_trace_nfs_setattr_exit)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs_writeback_inode_enter)(void *, const struct inode *); + +typedef void (*btf_trace_nfs_writeback_inode_exit)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs_fsync_enter)(void *, const struct inode *); + +typedef void (*btf_trace_nfs_fsync_exit)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs_access_enter)(void *, const struct inode *); + +typedef void (*btf_trace_nfs_set_cache_invalid)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs_readdir_force_readdirplus)(void *, const struct inode *); + +typedef void (*btf_trace_nfs_readdir_cache_fill_done)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs_readdir_uncached_done)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs_access_exit)(void *, const struct inode *, unsigned int, unsigned int, int); + +typedef void (*btf_trace_nfs_size_truncate)(void *, const struct inode *, loff_t); + +typedef void (*btf_trace_nfs_size_wcc)(void *, const struct inode *, loff_t); + +typedef void (*btf_trace_nfs_size_update)(void *, const struct inode *, loff_t); + +typedef void (*btf_trace_nfs_size_grow)(void *, const struct inode *, loff_t); + +typedef void (*btf_trace_nfs_readdir_invalidate_cache_range)(void *, const struct inode *, loff_t, loff_t); + +typedef void (*btf_trace_nfs_readdir_cache_fill)(void *, const struct file *, const __be32 *, u64, long unsigned int, unsigned int); + +typedef void (*btf_trace_nfs_readdir_uncached)(void *, const struct file *, const __be32 *, u64, long unsigned int, unsigned int); + +typedef void (*btf_trace_nfs_lookup_enter)(void *, const struct inode *, const struct dentry *, unsigned int); + +typedef void (*btf_trace_nfs_lookup_exit)(void *, const struct inode *, const struct dentry *, unsigned int, int); + +typedef void (*btf_trace_nfs_lookup_revalidate_enter)(void *, const struct inode *, const struct dentry *, unsigned int); + +typedef void (*btf_trace_nfs_lookup_revalidate_exit)(void *, const struct inode *, const struct dentry *, unsigned int, int); + +typedef void (*btf_trace_nfs_readdir_lookup)(void *, const struct inode *, const struct dentry *, unsigned int); + +typedef void (*btf_trace_nfs_readdir_lookup_revalidate_failed)(void *, const struct inode *, const struct dentry *, unsigned int); + +typedef void (*btf_trace_nfs_readdir_lookup_revalidate)(void *, const struct inode *, const struct dentry *, unsigned int, int); + +typedef void (*btf_trace_nfs_atomic_open_enter)(void *, const struct inode *, const struct nfs_open_context *, unsigned int); + +typedef void (*btf_trace_nfs_atomic_open_exit)(void *, const struct inode *, const struct nfs_open_context *, unsigned int, int); + +typedef void (*btf_trace_nfs_create_enter)(void *, const struct inode *, const struct dentry *, unsigned int); + +typedef void (*btf_trace_nfs_create_exit)(void *, const struct inode *, const struct dentry *, unsigned int, int); + +typedef void (*btf_trace_nfs_mknod_enter)(void *, const struct inode *, const struct dentry *); + +typedef void (*btf_trace_nfs_mknod_exit)(void *, const struct inode *, const struct dentry *, int); + +typedef void (*btf_trace_nfs_mkdir_enter)(void *, const struct inode *, const struct dentry *); + +typedef void (*btf_trace_nfs_mkdir_exit)(void *, const struct inode *, const struct dentry *, int); + +typedef void (*btf_trace_nfs_rmdir_enter)(void *, const struct inode *, const struct dentry *); + +typedef void (*btf_trace_nfs_rmdir_exit)(void *, const struct inode *, const struct dentry *, int); + +typedef void (*btf_trace_nfs_remove_enter)(void *, const struct inode *, const struct dentry *); + +typedef void (*btf_trace_nfs_remove_exit)(void *, const struct inode *, const struct dentry *, int); + +typedef void (*btf_trace_nfs_unlink_enter)(void *, const struct inode *, const struct dentry *); + +typedef void (*btf_trace_nfs_unlink_exit)(void *, const struct inode *, const struct dentry *, int); + +typedef void (*btf_trace_nfs_symlink_enter)(void *, const struct inode *, const struct dentry *); + +typedef void (*btf_trace_nfs_symlink_exit)(void *, const struct inode *, const struct dentry *, int); + +typedef void (*btf_trace_nfs_link_enter)(void *, const struct inode *, const struct inode *, const struct dentry *); + +typedef void (*btf_trace_nfs_link_exit)(void *, const struct inode *, const struct inode *, const struct dentry *, int); + +typedef void (*btf_trace_nfs_rename_enter)(void *, const struct inode *, const struct dentry *, const struct inode *, const struct dentry *); + +typedef void (*btf_trace_nfs_rename_exit)(void *, const struct inode *, const struct dentry *, const struct inode *, const struct dentry *, int); + +typedef void (*btf_trace_nfs_async_rename_done)(void *, const struct inode *, const struct dentry *, const struct inode *, const struct dentry *, int); + +typedef void (*btf_trace_nfs_sillyrename_unlink)(void *, const struct nfs_unlinkdata *, int); + +typedef void (*btf_trace_nfs_aop_readpage)(void *, const struct inode *, loff_t, size_t); + +typedef void (*btf_trace_nfs_aop_readpage_done)(void *, const struct inode *, loff_t, size_t, int); + +typedef void (*btf_trace_nfs_writeback_folio)(void *, const struct inode *, loff_t, size_t); + +typedef void (*btf_trace_nfs_writeback_folio_done)(void *, const struct inode *, loff_t, size_t, int); + +typedef void (*btf_trace_nfs_invalidate_folio)(void *, const struct inode *, loff_t, size_t); + +typedef void (*btf_trace_nfs_launder_folio_done)(void *, const struct inode *, loff_t, size_t, int); + +typedef void (*btf_trace_nfs_aop_readahead)(void *, const struct inode *, loff_t, unsigned int); + +typedef void (*btf_trace_nfs_aop_readahead_done)(void *, const struct inode *, unsigned int, int); + +typedef void (*btf_trace_nfs_initiate_read)(void *, const struct nfs_pgio_header *); + +typedef void (*btf_trace_nfs_readpage_done)(void *, const struct rpc_task *, const struct nfs_pgio_header *); + +typedef void (*btf_trace_nfs_readpage_short)(void *, const struct rpc_task *, const struct nfs_pgio_header *); + +typedef void (*btf_trace_nfs_pgio_error)(void *, const struct nfs_pgio_header *, int, loff_t); + +typedef void (*btf_trace_nfs_initiate_write)(void *, const struct nfs_pgio_header *); + +typedef void (*btf_trace_nfs_writeback_done)(void *, const struct rpc_task *, const struct nfs_pgio_header *); + +typedef void (*btf_trace_nfs_write_error)(void *, const struct inode *, const struct nfs_page *, int); + +typedef void (*btf_trace_nfs_comp_error)(void *, const struct inode *, const struct nfs_page *, int); + +typedef void (*btf_trace_nfs_commit_error)(void *, const struct inode *, const struct nfs_page *, int); + +typedef void (*btf_trace_nfs_initiate_commit)(void *, const struct nfs_commit_data *); + +typedef void (*btf_trace_nfs_commit_done)(void *, const struct rpc_task *, const struct nfs_commit_data *); + +typedef void (*btf_trace_nfs_direct_commit_complete)(void *, const struct nfs_direct_req *); + +typedef void (*btf_trace_nfs_direct_resched_write)(void *, const struct nfs_direct_req *); + +typedef void (*btf_trace_nfs_direct_write_complete)(void *, const struct nfs_direct_req *); + +typedef void (*btf_trace_nfs_direct_write_completion)(void *, const struct nfs_direct_req *); + +typedef void (*btf_trace_nfs_direct_write_schedule_iovec)(void *, const struct nfs_direct_req *); + +typedef void (*btf_trace_nfs_direct_write_reschedule_io)(void *, const struct nfs_direct_req *); + +typedef void (*btf_trace_nfs_fh_to_dentry)(void *, const struct super_block *, const struct nfs_fh *, u64, int); + +typedef void (*btf_trace_nfs_mount_assign)(void *, const char *, const char *); + +typedef void (*btf_trace_nfs_mount_option)(void *, const struct fs_parameter *); + +typedef void (*btf_trace_nfs_mount_path)(void *, const char *); + +typedef void (*btf_trace_nfs_local_open_fh)(void *, const struct nfs_fh *, fmode_t, int); + +typedef void (*btf_trace_nfs_local_enable)(void *, const struct nfs_client *); + +typedef void (*btf_trace_nfs_local_disable)(void *, const struct nfs_client *); + +typedef void (*btf_trace_nfs_xdr_status)(void *, const struct xdr_stream *, int); + +typedef void (*btf_trace_nfs_xdr_bad_filehandle)(void *, const struct xdr_stream *, int); + +enum pnfs_layouttype { + LAYOUT_NFSV4_1_FILES = 1, + LAYOUT_OSD2_OBJECTS = 2, + LAYOUT_BLOCK_VOLUME = 3, + LAYOUT_FLEX_FILES = 4, + LAYOUT_SCSI = 5, + LAYOUT_TYPE_MAX = 6, +}; + +enum pnfs_block_extent_state { + PNFS_BLOCK_READWRITE_DATA = 0, + PNFS_BLOCK_READ_DATA = 1, + PNFS_BLOCK_INVALID_DATA = 2, + PNFS_BLOCK_NONE_DATA = 3, +}; + +enum { + NFS_LSEG_VALID = 0, + NFS_LSEG_ROC = 1, + NFS_LSEG_LAYOUTCOMMIT = 2, + NFS_LSEG_LAYOUTRETURN = 3, + NFS_LSEG_UNAVAILABLE = 4, +}; + +enum layoutdriver_policy_flags { + PNFS_LAYOUTRET_ON_SETATTR = 1, + PNFS_LAYOUTRET_ON_ERROR = 2, + PNFS_READ_WHOLE_PAGE = 4, + PNFS_LAYOUTGET_ON_OPEN = 8, +}; + +enum { + NFS_DEVICEID_INVALID = 0, + NFS_DEVICEID_UNAVAILABLE = 1, + NFS_DEVICEID_NOCACHE = 2, +}; + +struct pnfs_block_extent { + union { + struct rb_node be_node; + struct list_head be_list; + }; + struct nfs4_deviceid_node *be_device; + sector_t be_f_offset; + sector_t be_length; + sector_t be_v_offset; + enum pnfs_block_extent_state be_state; + unsigned int be_tag; +}; + +struct pnfs_block_layout { + struct pnfs_layout_hdr bl_layout; + struct rb_root bl_ext_rw; + struct rb_root bl_ext_ro; + spinlock_t bl_ext_lock; + bool bl_scsi_layout; + u64 bl_lwb; +}; + +struct parallel_io { + struct kref refcnt; + void (*pnfs_callback)(void *); + void *data; +}; + +struct layout_verification { + u32 mode; + u64 start; + u64 inval; + u64 cowread; +}; + +struct nlmsvc_binding { + __be32 (*fopen)(struct svc_rqst *, struct nfs_fh *, struct file **, int); + void (*fclose)(struct file *); +}; + +struct nfsd4_fs_location { + char *hosts; + char *path; +}; + +struct nfsd4_fs_locations { + uint32_t locations_count; + struct nfsd4_fs_location *locations; + int migrated; +}; + +struct exp_flavor_info { + u32 pseudoflavor; + u32 flags; +}; + +struct export_stats { + time64_t start_time; + struct percpu_counter counter[3]; +}; + +struct nfsd4_deviceid_map; + +struct svc_export { + struct cache_head h; + struct auth_domain *ex_client; + int ex_flags; + int ex_fsid; + struct path ex_path; + kuid_t ex_anon_uid; + kgid_t ex_anon_gid; + unsigned char *ex_uuid; + struct nfsd4_fs_locations ex_fslocs; + uint32_t ex_nflavors; + struct exp_flavor_info ex_flavors[8]; + u32 ex_layout_types; + struct nfsd4_deviceid_map *ex_devid_map; + struct cache_detail *cd; + struct callback_head ex_rcu; + long unsigned int ex_xprtsec_modes; + struct export_stats *ex_stats; +}; + +enum { + NFSERR_DROPIT = 10097, + NFSERR_EOF = 10098, + NFSERR_REPLAY_ME = 10099, + NFSERR_REPLAY_CACHE = 10100, + NFSERR_SYMLINK_NOT_DIR = 10101, +}; + +struct knfsd_fh { + unsigned int fh_size; + union { + char fh_raw[128]; + struct { + u8 fh_version; + u8 fh_auth_type; + u8 fh_fsid_type; + u8 fh_fileid_type; + u32 fh_fsid[0]; + }; + }; +}; + +struct svc_fh { + struct knfsd_fh fh_handle; + int fh_maxsize; + struct dentry *fh_dentry; + struct svc_export *fh_export; + bool fh_want_write; + bool fh_no_wcc; + bool fh_no_atomic_attr; + bool fh_use_wgather; + bool fh_64bit_cookies; + int fh_flags; + bool fh_post_saved; + bool fh_pre_saved; + __u64 fh_pre_size; + struct timespec64 fh_pre_mtime; + struct timespec64 fh_pre_ctime; + u64 fh_pre_change; + struct kstat fh_post_attr; + u64 fh_post_change; +}; + +enum { + FATTR4_SUPPORTED_ATTRS = 0, + FATTR4_TYPE = 1, + FATTR4_FH_EXPIRE_TYPE = 2, + FATTR4_CHANGE = 3, + FATTR4_SIZE = 4, + FATTR4_LINK_SUPPORT = 5, + FATTR4_SYMLINK_SUPPORT = 6, + FATTR4_NAMED_ATTR = 7, + FATTR4_FSID = 8, + FATTR4_UNIQUE_HANDLES = 9, + FATTR4_LEASE_TIME = 10, + FATTR4_RDATTR_ERROR = 11, + FATTR4_ACL = 12, + FATTR4_ACLSUPPORT = 13, + FATTR4_ARCHIVE = 14, + FATTR4_CANSETTIME = 15, + FATTR4_CASE_INSENSITIVE = 16, + FATTR4_CASE_PRESERVING = 17, + FATTR4_CHOWN_RESTRICTED = 18, + FATTR4_FILEHANDLE = 19, + FATTR4_FILEID = 20, + FATTR4_FILES_AVAIL = 21, + FATTR4_FILES_FREE = 22, + FATTR4_FILES_TOTAL = 23, + FATTR4_FS_LOCATIONS = 24, + FATTR4_HIDDEN = 25, + FATTR4_HOMOGENEOUS = 26, + FATTR4_MAXFILESIZE = 27, + FATTR4_MAXLINK = 28, + FATTR4_MAXNAME = 29, + FATTR4_MAXREAD = 30, + FATTR4_MAXWRITE = 31, + FATTR4_MIMETYPE = 32, + FATTR4_MODE = 33, + FATTR4_NO_TRUNC = 34, + FATTR4_NUMLINKS = 35, + FATTR4_OWNER = 36, + FATTR4_OWNER_GROUP = 37, + FATTR4_QUOTA_AVAIL_HARD = 38, + FATTR4_QUOTA_AVAIL_SOFT = 39, + FATTR4_QUOTA_USED = 40, + FATTR4_RAWDEV = 41, + FATTR4_SPACE_AVAIL = 42, + FATTR4_SPACE_FREE = 43, + FATTR4_SPACE_TOTAL = 44, + FATTR4_SPACE_USED = 45, + FATTR4_SYSTEM = 46, + FATTR4_TIME_ACCESS = 47, + FATTR4_TIME_ACCESS_SET = 48, + FATTR4_TIME_BACKUP = 49, + FATTR4_TIME_CREATE = 50, + FATTR4_TIME_DELTA = 51, + FATTR4_TIME_METADATA = 52, + FATTR4_TIME_MODIFY = 53, + FATTR4_TIME_MODIFY_SET = 54, + FATTR4_MOUNTED_ON_FILEID = 55, +}; + +struct nfs4_op_map { + union { + long unsigned int longs[2]; + u32 words[4]; + } u; +}; + +typedef void (*rpc_action)(struct rpc_task *); + +struct rpc_create_args { + struct net *net; + int protocol; + struct sockaddr *address; + size_t addrsize; + struct sockaddr *saddress; + const struct rpc_timeout *timeout; + const char *servername; + const char *nodename; + const struct rpc_program *program; + struct rpc_stat *stats; + u32 prognumber; + u32 version; + rpc_authflavor_t authflavor; + u32 nconnect; + long unsigned int flags; + char *client_name; + struct svc_xprt *bc_xprt; + const struct cred *cred; + unsigned int max_connect; + struct xprtsec_parms xprtsec; + long unsigned int connect_timeout; + long unsigned int reconnect_timeout; +}; + +struct svc_xpt_user { + struct list_head list; + void (*callback)(struct svc_xpt_user *); +}; + +struct nfsdfs_client { + struct kref cl_ref; + void (*cl_release)(struct kref *); +}; + +typedef struct { + u32 cl_boot; + u32 cl_id; +} clientid_t; + +typedef struct { + clientid_t so_clid; + u32 so_id; +} stateid_opaque_t; + +typedef struct { + u32 si_generation; + stateid_opaque_t si_opaque; +} stateid_t; + +struct nfsd4_callback_ops; + +struct nfsd4_callback { + struct nfs4_client *cb_clp; + struct rpc_message cb_msg; + const struct nfsd4_callback_ops *cb_ops; + struct work_struct cb_work; + int cb_seq_status; + int cb_status; + bool cb_need_restart; + bool cb_holds_slot; +}; + +struct nfs4_cb_conn { + struct __kernel_sockaddr_storage cb_addr; + struct __kernel_sockaddr_storage cb_saddr; + size_t cb_addrlen; + u32 cb_prog; + u32 cb_ident; + struct svc_xprt *cb_xprt; +}; + +struct nfsd4_channel_attrs { + u32 headerpadsz; + u32 maxreq_sz; + u32 maxresp_sz; + u32 maxresp_cached; + u32 maxops; + u32 maxreqs; + u32 nr_rdma_attrs; + u32 rdma_attrs; +}; + +struct nfsd4_cb_sec { + u32 flavor; + kuid_t uid; + kgid_t gid; +}; + +struct nfsd4_create_session { + clientid_t clientid; + struct nfs4_sessionid sessionid; + u32 seqid; + u32 flags; + struct nfsd4_channel_attrs fore_channel; + struct nfsd4_channel_attrs back_channel; + u32 callback_prog; + struct nfsd4_cb_sec cb_sec; +}; + +struct nfsd4_clid_slot { + u32 sl_seqid; + __be32 sl_status; + struct nfsd4_create_session sl_cr_ses; +}; + +struct nfsd4_session; + +struct nfsd4_cb_recall_any; + +struct nfs4_client { + struct list_head cl_idhash; + struct rb_node cl_namenode; + struct list_head *cl_ownerstr_hashtbl; + struct list_head cl_openowners; + struct idr cl_stateids; + struct list_head cl_delegations; + struct list_head cl_revoked; + struct list_head cl_lru; + struct xdr_netobj cl_name; + nfs4_verifier cl_verifier; + time64_t cl_time; + struct __kernel_sockaddr_storage cl_addr; + bool cl_mach_cred; + struct svc_cred cl_cred; + clientid_t cl_clientid; + nfs4_verifier cl_confirm; + u32 cl_minorversion; + atomic_t cl_admin_revoked; + struct xdr_netobj cl_nii_domain; + struct xdr_netobj cl_nii_name; + struct timespec64 cl_nii_time; + struct nfs4_cb_conn cl_cb_conn; + long unsigned int cl_flags; + struct workqueue_struct *cl_callback_wq; + const struct cred *cl_cb_cred; + struct rpc_clnt *cl_cb_client; + u32 cl_cb_ident; + int cl_cb_state; + struct nfsd4_callback cl_cb_null; + struct nfsd4_session *cl_cb_session; + spinlock_t cl_lock; + struct list_head cl_sessions; + struct nfsd4_clid_slot cl_cs_slot; + u32 cl_exchange_flags; + atomic_t cl_rpc_users; + struct nfsdfs_client cl_nfsdfs; + struct nfs4_op_map cl_spo_must_allow; + struct dentry *cl_nfsd_dentry; + struct dentry *cl_nfsd_info_dentry; + long unsigned int cl_cb_slot_busy; + struct rpc_wait_queue cl_cb_waitq; + struct net *net; + struct list_head async_copies; + spinlock_t async_lock; + atomic_t cl_cb_inflight; + unsigned int cl_state; + atomic_t cl_delegs_in_recall; + struct nfsd4_cb_recall_any *cl_ra; + time64_t cl_ra_time; + struct list_head cl_ra_cblist; +}; + +struct nfsd4_callback_ops { + void (*prepare)(struct nfsd4_callback *); + int (*done)(struct nfsd4_callback *, struct rpc_task *); + void (*release)(struct nfsd4_callback *); + uint32_t opcode; +}; + +struct nfs4_file; + +struct nfs4_stid { + refcount_t sc_count; + short unsigned int sc_type; + short unsigned int sc_status; + struct list_head sc_cp_list; + stateid_t sc_stateid; + spinlock_t sc_lock; + struct nfs4_client *sc_client; + struct nfs4_file *sc_file; + void (*sc_free)(struct nfs4_stid *); +}; + +struct nfsd_file; + +struct nfs4_file { + refcount_t fi_ref; + struct inode *fi_inode; + bool fi_aliased; + spinlock_t fi_lock; + struct rhlist_head fi_rlist; + struct list_head fi_stateids; + union { + struct list_head fi_delegations; + struct callback_head fi_rcu; + }; + struct list_head fi_clnt_odstate; + struct nfsd_file *fi_fds[3]; + atomic_t fi_access[2]; + u32 fi_share_deny; + struct nfsd_file *fi_deleg_file; + int fi_delegees; + struct knfsd_fh fi_fhandle; + bool fi_had_conflict; +}; + +struct nfs4_cb_fattr { + struct nfsd4_callback ncf_getattr; + u32 ncf_cb_status; + u32 ncf_cb_bmap[1]; + u64 ncf_cb_change; + u64 ncf_cb_fsize; + long unsigned int ncf_cb_flags; + bool ncf_file_modified; + u64 ncf_initial_cinfo; + u64 ncf_cur_fsize; +}; + +struct nfs4_clnt_odstate; + +struct nfs4_delegation { + struct nfs4_stid dl_stid; + struct list_head dl_perfile; + struct list_head dl_perclnt; + struct list_head dl_recall_lru; + struct nfs4_clnt_odstate *dl_clnt_odstate; + u32 dl_type; + time64_t dl_time; + int dl_retries; + struct nfsd4_callback dl_recall; + bool dl_recalled; + struct nfs4_cb_fattr dl_cb_fattr; +}; + +struct nfs4_clnt_odstate { + struct nfs4_client *co_client; + struct nfs4_file *co_file; + struct list_head co_perfile; + refcount_t co_odcount; +}; + +struct nfsd4_slot { + u32 sl_seqid; + __be32 sl_status; + struct svc_cred sl_cred; + u32 sl_datalen; + u16 sl_opcnt; + u8 sl_flags; + char sl_data[0]; +}; + +struct nfsd4_conn { + struct list_head cn_persession; + struct svc_xprt *cn_xprt; + struct svc_xpt_user cn_xpt_user; + struct nfsd4_session *cn_session; + unsigned char cn_flags; +}; + +struct nfsd4_session { + atomic_t se_ref; + struct list_head se_hash; + struct list_head se_perclnt; + u32 se_flags; + struct nfs4_client *se_client; + struct nfs4_sessionid se_sessionid; + struct nfsd4_channel_attrs se_fchannel; + struct nfsd4_channel_attrs se_bchannel; + struct nfsd4_cb_sec se_cb_sec; + struct list_head se_conns; + u32 se_cb_prog; + u32 se_cb_seq_nr; + struct nfsd4_slot *se_slots[0]; +}; + +enum { + NFSD4_ACTIVE = 0, + NFSD4_COURTESY = 1, + NFSD4_EXPIRABLE = 2, +}; + +struct nfsd4_cb_recall_any { + struct nfsd4_callback ra_cb; + u32 ra_keep; + u32 ra_bmval[1]; +}; + +struct nfs4_replay { + __be32 rp_status; + unsigned int rp_buflen; + char *rp_buf; + struct knfsd_fh rp_openfh; + atomic_t rp_locked; + char rp_ibuf[112]; +}; + +struct nfs4_stateowner; + +struct nfs4_stateowner_operations { + void (*so_unhash)(struct nfs4_stateowner *); + void (*so_free)(struct nfs4_stateowner *); +}; + +struct nfs4_stateowner { + struct list_head so_strhash; + struct list_head so_stateids; + struct nfs4_client *so_client; + const struct nfs4_stateowner_operations *so_ops; + atomic_t so_count; + u32 so_seqid; + struct xdr_netobj so_owner; + struct nfs4_replay so_replay; + bool so_is_open_owner; +}; + +struct nfs4_lockowner { + struct nfs4_stateowner lo_owner; + struct list_head lo_blocked; +}; + +struct nfsd_file_mark; + +struct nfsd_file { + struct rhlist_head nf_rlist; + void *nf_inode; + struct file *nf_file; + const struct cred *nf_cred; + struct net *nf_net; + long unsigned int nf_flags; + refcount_t nf_ref; + unsigned char nf_may; + struct nfsd_file_mark *nf_mark; + struct list_head nf_lru; + struct list_head nf_gc; + struct callback_head nf_rcu; + ktime_t nf_birthtime; +}; + +enum nfsd4_cb_op { + NFSPROC4_CLNT_CB_NULL = 0, + NFSPROC4_CLNT_CB_RECALL = 1, + NFSPROC4_CLNT_CB_LAYOUT = 2, + NFSPROC4_CLNT_CB_OFFLOAD = 3, + NFSPROC4_CLNT_CB_SEQUENCE = 4, + NFSPROC4_CLNT_CB_NOTIFY_LOCK = 5, + NFSPROC4_CLNT_CB_RECALL_ANY = 6, + NFSPROC4_CLNT_CB_GETATTR = 7, +}; + +struct nfsd4_blocked_lock { + struct list_head nbl_list; + struct list_head nbl_lru; + time64_t nbl_time; + struct file_lock nbl_lock; + struct knfsd_fh nbl_fh; + struct nfsd4_callback nbl_cb; + struct kref nbl_kref; +}; + +struct nfsd42_write_res { + u64 wr_bytes_written; + u32 wr_stable_how; + nfs4_verifier wr_verifier; + stateid_t cb_stateid; +}; + +struct nfsd4_cb_offload { + struct nfsd4_callback co_cb; + struct nfsd42_write_res co_res; + __be32 co_nfserr; + struct knfsd_fh co_fh; +}; + +struct nfsd_file_mark { + struct fsnotify_mark nfm_mark; + refcount_t nfm_ref; +}; + +struct nfs4_cb_compound_hdr { + u32 ident; + u32 nops; + __be32 *nops_p; + u32 minorversion; + int status; +}; + +typedef int wait_bit_action_f(struct wait_bit_key *, int); + +typedef struct { + __le64 EndOfFile; + __le64 NumOfBytes; + __le64 LastStatusChange; + __le64 LastAccessTime; + __le64 LastModificationTime; + __le64 Uid; + __le64 Gid; + __le32 Type; + __le64 DevMajor; + __le64 DevMinor; + __le64 UniqueId; + __le64 Permissions; + __le64 Nlinks; +} __attribute__((packed)) FILE_UNIX_BASIC_INFO; + +enum { + SIDOWNER = 1, + SIDGROUP = 2, + SIDCREATOR_OWNER = 3, + SIDCREATOR_GROUP = 4, + SIDUNIX_USER = 5, + SIDUNIX_GROUP = 6, + SIDNFS_USER = 7, + SIDNFS_GROUP = 8, + SIDNFS_MODE = 9, +}; + +struct cifs_fattr { + u32 cf_flags; + u32 cf_cifsattrs; + u64 cf_uniqueid; + u64 cf_eof; + u64 cf_bytes; + u64 cf_createtime; + kuid_t cf_uid; + kgid_t cf_gid; + umode_t cf_mode; + dev_t cf_rdev; + unsigned int cf_nlink; + unsigned int cf_dtype; + struct timespec64 cf_atime; + struct timespec64 cf_mtime; + struct timespec64 cf_ctime; + u32 cf_cifstag; + char *cf_symlink_target; +}; + +struct cached_fids { + spinlock_t cfid_list_lock; + int num_entries; + struct list_head entries; + struct list_head dying; + struct work_struct invalidation_work; + struct delayed_work laundromat_work; +}; + +struct cached_dirents { + bool is_valid: 1; + bool is_failed: 1; + struct file *file; + struct mutex de_mutex; + int pos; + struct list_head entries; +}; + +struct cached_fid { + struct list_head entry; + struct cached_fids *cfids; + const char *path; + bool has_lease: 1; + bool is_open: 1; + bool on_list: 1; + bool file_all_info_is_valid: 1; + long unsigned int time; + struct kref refcount; + struct cifs_fid fid; + spinlock_t fid_lock; + struct cifs_tcon *tcon; + struct dentry *dentry; + struct work_struct put_work; + struct work_struct close_work; + struct smb2_file_all_info file_all_info; + struct cached_dirents dirents; +}; + +typedef u32 CLST; + +enum RECORD_NUM { + MFT_REC_MFT = 0, + MFT_REC_MIRR = 1, + MFT_REC_LOG = 2, + MFT_REC_VOL = 3, + MFT_REC_ATTR = 4, + MFT_REC_ROOT = 5, + MFT_REC_BITMAP = 6, + MFT_REC_BOOT = 7, + MFT_REC_BADCLUST = 8, + MFT_REC_SECURE = 9, + MFT_REC_UPCASE = 10, + MFT_REC_EXTEND = 11, + MFT_REC_RESERVED = 12, + MFT_REC_FREE = 16, + MFT_REC_USER = 24, +}; + +enum ATTR_TYPE { + ATTR_ZERO = 0, + ATTR_STD = 16, + ATTR_LIST = 32, + ATTR_NAME = 48, + ATTR_ID = 64, + ATTR_SECURE = 80, + ATTR_LABEL = 96, + ATTR_VOL_INFO = 112, + ATTR_DATA = 128, + ATTR_ROOT = 144, + ATTR_ALLOC = 160, + ATTR_BITMAP = 176, + ATTR_REPARSE = 192, + ATTR_EA_INFO = 208, + ATTR_EA = 224, + ATTR_PROPERTYSET = 240, + ATTR_LOGGED_UTILITY_STREAM = 256, + ATTR_END = 4294967295, +}; + +enum FILE_ATTRIBUTE { + FILE_ATTRIBUTE_READONLY = 1, + FILE_ATTRIBUTE_HIDDEN = 2, + FILE_ATTRIBUTE_SYSTEM = 4, + FILE_ATTRIBUTE_ARCHIVE = 32, + FILE_ATTRIBUTE_DEVICE = 64, + FILE_ATTRIBUTE_TEMPORARY = 256, + FILE_ATTRIBUTE_SPARSE_FILE = 512, + FILE_ATTRIBUTE_REPARSE_POINT = 1024, + FILE_ATTRIBUTE_COMPRESSED = 2048, + FILE_ATTRIBUTE_OFFLINE = 4096, + FILE_ATTRIBUTE_NOT_CONTENT_INDEXED = 8192, + FILE_ATTRIBUTE_ENCRYPTED = 16384, + FILE_ATTRIBUTE_VALID_FLAGS = 32695, + FILE_ATTRIBUTE_DIRECTORY = 268435456, + FILE_ATTRIBUTE_INDEX = 536870912, +}; + +struct MFT_REF { + __le32 low; + __le16 high; + __le16 seq; +}; + +enum NTFS_SIGNATURE { + NTFS_FILE_SIGNATURE = 1162627398, + NTFS_INDX_SIGNATURE = 1480871497, + NTFS_CHKD_SIGNATURE = 1145784387, + NTFS_RSTR_SIGNATURE = 1381258066, + NTFS_RCRD_SIGNATURE = 1146241874, + NTFS_BAAD_SIGNATURE = 1145127234, + NTFS_HOLE_SIGNATURE = 1162628936, + NTFS_FFFF_SIGNATURE = 4294967295, +}; + +struct NTFS_RECORD_HEADER { + enum NTFS_SIGNATURE sign; + __le16 fix_off; + __le16 fix_num; + __le64 lsn; +}; + +struct MFT_REC { + struct NTFS_RECORD_HEADER rhdr; + __le16 seq; + __le16 hard_links; + __le16 attr_off; + __le16 flags; + __le32 used; + __le32 total; + struct MFT_REF parent_ref; + __le16 next_attr_id; + __le16 res; + __le32 mft_record; + __le16 fixups[0]; +}; + +struct ATTR_RESIDENT { + __le32 data_size; + __le16 data_off; + u8 flags; + u8 res; +}; + +struct ATTR_NONRESIDENT { + __le64 svcn; + __le64 evcn; + __le16 run_off; + u8 c_unit; + u8 res1[5]; + __le64 alloc_size; + __le64 data_size; + __le64 valid_size; + __le64 total_size; +}; + +struct ATTRIB { + enum ATTR_TYPE type; + __le32 size; + u8 non_res; + u8 name_len; + __le16 name_off; + __le16 flags; + __le16 id; + union { + struct ATTR_RESIDENT res; + struct ATTR_NONRESIDENT nres; + }; +}; + +struct ATTR_LIST_ENTRY { + enum ATTR_TYPE type; + __le16 size; + u8 name_len; + u8 name_off; + __le64 vcn; + struct MFT_REF ref; + __le16 id; + __le16 name[0]; +}; + +enum COLLATION_RULE { + NTFS_COLLATION_TYPE_BINARY = 0, + NTFS_COLLATION_TYPE_FILENAME = 1, + NTFS_COLLATION_TYPE_UINT = 16, + NTFS_COLLATION_TYPE_SID = 17, + NTFS_COLLATION_TYPE_SECURITY_HASH = 18, + NTFS_COLLATION_TYPE_UINTS = 19, +}; + +struct ATTR_DEF_ENTRY { + __le16 name[64]; + enum ATTR_TYPE type; + __le32 res; + enum COLLATION_RULE rule; + __le32 flags; + __le64 min_sz; + __le64 max_sz; +}; + +struct ntfs_mount_options { + char *nls_name; + struct nls_table *nls; + kuid_t fs_uid; + kgid_t fs_gid; + u16 fs_fmask_inv; + u16 fs_dmask_inv; + unsigned int fmask: 1; + unsigned int dmask: 1; + unsigned int sys_immutable: 1; + unsigned int discard: 1; + unsigned int sparse: 1; + unsigned int showmeta: 1; + unsigned int nohidden: 1; + unsigned int hide_dot_files: 1; + unsigned int windows_names: 1; + unsigned int force: 1; + unsigned int prealloc: 1; + unsigned int nocase: 1; +}; + +struct ntfs_run; + +struct runs_tree { + struct ntfs_run *runs; + size_t count; + size_t allocated; +}; + +struct ntfs_buffers { + struct buffer_head *bh[8]; + u32 bytes; + u32 nbufs; + u32 off; +}; + +enum ALLOCATE_OPT { + ALLOCATE_DEF = 0, + ALLOCATE_MFT = 1, + ALLOCATE_ZERO = 2, +}; + +struct wnd_bitmap { + struct super_block *sb; + struct rw_semaphore rw_lock; + struct runs_tree run; + size_t nbits; + size_t total_zeroes; + u16 *free_bits; + size_t nwnd; + u32 bits_last; + struct rb_root start_tree; + struct rb_root count_tree; + size_t count; + int uptodated; + size_t extent_min; + size_t extent_max; + size_t zone_bit; + size_t zone_end; + bool inited; +}; + +typedef int (*NTFS_CMP_FUNC)(const void *, size_t, const void *, size_t, const void *); + +struct ntfs_index { + struct runs_tree bitmap_run; + struct runs_tree alloc_run; + struct rw_semaphore run_lock; + NTFS_CMP_FUNC cmp; + u8 index_bits; + u8 idx2vbn_bits; + u8 vbn2vbo_bits; + u8 type; +}; + +struct ntfs_sb_info; + +struct mft_inode { + struct rb_node node; + struct ntfs_sb_info *sbi; + struct MFT_REC *mrec; + struct ntfs_buffers nb; + CLST rno; + bool dirty; +}; + +struct ntfs_inode { + struct mft_inode mi; + u64 i_valid; + struct timespec64 i_crtime; + struct mutex ni_lock; + enum FILE_ATTRIBUTE std_fa; + __le32 std_security_id; + struct rb_root mi_tree; + u8 mi_loaded; + union { + struct ntfs_index dir; + struct { + struct rw_semaphore run_lock; + struct runs_tree run; + } file; + }; + struct { + struct runs_tree run; + struct ATTR_LIST_ENTRY *le; + size_t size; + bool dirty; + } attr_list; + size_t ni_flags; + struct inode vfs_inode; +}; + +struct lznt; + +struct ntfs_sb_info { + struct super_block *sb; + u32 discard_granularity; + u64 discard_granularity_mask_inv; + u32 cluster_size; + u32 cluster_mask; + u64 cluster_mask_inv; + u32 block_mask; + u32 blocks_per_cluster; + u32 record_size; + u32 index_size; + u8 cluster_bits; + u8 record_bits; + u64 maxbytes; + u64 maxbytes_sparse; + long unsigned int flags; + CLST zone_max; + CLST bad_clusters; + u16 max_bytes_per_attr; + u16 attr_size_tr; + CLST objid_no; + CLST quota_no; + CLST reparse_no; + CLST usn_jrnl_no; + struct ATTR_DEF_ENTRY *def_table; + u32 def_entries; + u32 ea_max_size; + struct MFT_REC *new_rec; + u16 *upcase; + struct { + u64 lbo; + u64 lbo2; + struct ntfs_inode *ni; + struct wnd_bitmap bitmap; + ulong reserved_bitmap; + size_t next_free; + size_t used; + u32 recs_mirr; + u8 next_reserved; + u8 reserved_bitmap_inited; + } mft; + struct { + struct wnd_bitmap bitmap; + CLST next_free_lcn; + } used; + struct { + u64 size; + u64 blocks; + u64 ser_num; + struct ntfs_inode *ni; + __le16 flags; + u8 major_ver; + u8 minor_ver; + char label[256]; + bool real_dirty; + } volume; + struct { + struct ntfs_index index_sii; + struct ntfs_index index_sdh; + struct ntfs_inode *ni; + u32 next_id; + u64 next_off; + __le32 def_security_id; + } security; + struct { + struct ntfs_index index_r; + struct ntfs_inode *ni; + u64 max_size; + } reparse; + struct { + struct ntfs_index index_o; + struct ntfs_inode *ni; + } objid; + struct { + struct mutex mtx_lznt; + struct lznt *lznt; + } compress; + struct ntfs_mount_options *options; + struct ratelimit_state msg_ratelimit; + struct proc_dir_entry *procdir; +}; + +struct cpu_str { + u8 len; + u8 unused; + u16 name[0]; +}; + +enum RECORD_FLAG { + RECORD_FLAG_IN_USE = 1, + RECORD_FLAG_DIR = 2, + RECORD_FLAG_SYSTEM = 4, + RECORD_FLAG_INDEX = 8, +}; + +struct NTFS_DUP_INFO { + __le64 cr_time; + __le64 m_time; + __le64 c_time; + __le64 a_time; + __le64 alloc_size; + __le64 data_size; + enum FILE_ATTRIBUTE fa; + __le16 ea_size; + __le16 reparse; +}; + +struct ATTR_FILE_NAME { + struct MFT_REF home; + struct NTFS_DUP_INFO dup; + u8 name_len; + u8 type; + __le16 name[0]; +}; + +struct NTFS_DE { + union { + struct MFT_REF ref; + struct { + __le16 data_off; + __le16 data_size; + __le32 res; + } view; + }; + __le16 size; + __le16 key_size; + __le16 flags; + __le16 res; +}; + +struct INDEX_HDR { + __le32 de_off; + __le32 used; + __le32 total; + __le32 flags; +}; + +struct INDEX_BUFFER { + struct NTFS_RECORD_HEADER rhdr; + __le64 vbn; + struct INDEX_HDR ihdr; +}; + +struct INDEX_ROOT { + enum ATTR_TYPE type; + enum COLLATION_RULE rule; + __le32 index_block_size; + u8 index_block_clst; + u8 res[3]; + struct INDEX_HDR ihdr; +}; + +enum NTFS_DIRTY_FLAGS { + NTFS_DIRTY_CLEAR = 0, + NTFS_DIRTY_DIRTY = 1, + NTFS_DIRTY_ERROR = 2, +}; + +struct RESTART_HDR { + struct NTFS_RECORD_HEADER rhdr; + __le32 sys_page_size; + __le32 page_size; + __le16 ra_off; + __le16 minor_ver; + __le16 major_ver; + __le16 fixups[0]; +}; + +struct CLIENT_REC { + __le64 oldest_lsn; + __le64 restart_lsn; + __le16 prev_client; + __le16 next_client; + __le16 seq_num; + u8 align[6]; + __le32 name_bytes; + __le16 name[32]; +}; + +struct RESTART_AREA { + __le64 current_lsn; + __le16 log_clients; + __le16 client_idx[2]; + __le16 flags; + __le32 seq_num_bits; + __le16 ra_len; + __le16 client_off; + __le64 l_size; + __le32 last_lsn_data_len; + __le16 rec_hdr_len; + __le16 data_off; + __le32 open_log_count; + __le32 align[5]; + struct CLIENT_REC clients[0]; +}; + +struct LOG_REC_HDR { + __le16 redo_op; + __le16 undo_op; + __le16 redo_off; + __le16 redo_len; + __le16 undo_off; + __le16 undo_len; + __le16 target_attr; + __le16 lcns_follow; + __le16 record_off; + __le16 attr_off; + __le16 cluster_off; + __le16 reserved; + __le64 target_vcn; + __le64 page_lcns[0]; +}; + +struct RESTART_TABLE { + __le16 size; + __le16 used; + __le16 total; + __le16 res[3]; + __le32 free_goal; + __le32 first_free; + __le32 last_free; +}; + +struct ATTR_NAME_ENTRY { + __le16 off; + __le16 name_bytes; + __le16 name[0]; +}; + +struct OPEN_ATTR_ENRTY { + __le32 next; + __le32 bytes_per_index; + enum ATTR_TYPE type; + u8 is_dirty_pages; + u8 is_attr_name; + u8 name_len; + u8 res; + struct MFT_REF ref; + __le64 open_record_lsn; + void *ptr; +}; + +struct OPEN_ATTR_ENRTY_32 { + __le32 next; + __le32 ptr; + struct MFT_REF ref; + __le64 open_record_lsn; + u8 is_dirty_pages; + u8 is_attr_name; + u8 res1[2]; + enum ATTR_TYPE type; + u8 name_len; + u8 res2[3]; + __le32 AttributeName; + __le32 bytes_per_index; +}; + +struct DIR_PAGE_ENTRY { + __le32 next; + __le32 target_attr; + __le32 transfer_len; + __le32 lcns_follow; + __le64 vcn; + __le64 oldest_lsn; + __le64 page_lcns[0]; +}; + +struct DIR_PAGE_ENTRY_32 { + __le32 next; + __le32 target_attr; + __le32 transfer_len; + __le32 lcns_follow; + __le32 reserved; + __le32 vcn_low; + __le32 vcn_hi; + __le32 oldest_lsn_low; + __le32 oldest_lsn_hi; + __le32 page_lcns_low; + __le32 page_lcns_hi; +}; + +enum transact_state { + TransactionUninitialized = 0, + TransactionActive = 1, + TransactionPrepared = 2, + TransactionCommitted = 3, +}; + +struct TRANSACTION_ENTRY { + __le32 next; + u8 transact_state; + u8 reserved[3]; + __le64 first_lsn; + __le64 prev_lsn; + __le64 undo_next_lsn; + __le32 undo_records; + __le32 undo_len; +}; + +struct NTFS_RESTART { + __le32 major_ver; + __le32 minor_ver; + __le64 check_point_start; + __le64 open_attr_table_lsn; + __le64 attr_names_lsn; + __le64 dirty_pages_table_lsn; + __le64 transact_table_lsn; + __le32 open_attr_len; + __le32 attr_names_len; + __le32 dirty_pages_len; + __le32 transact_table_len; +}; + +struct NEW_ATTRIBUTE_SIZES { + __le64 alloc_size; + __le64 valid_size; + __le64 data_size; + __le64 total_size; +}; + +struct BITMAP_RANGE { + __le32 bitmap_off; + __le32 bits; +}; + +struct LCN_RANGE { + __le64 lcn; + __le64 len; +}; + +struct CLIENT_ID { + __le16 seq_num; + __le16 client_idx; +}; + +struct LFS_RECORD_HDR { + __le64 this_lsn; + __le64 client_prev_lsn; + __le64 client_undo_next_lsn; + __le32 client_data_len; + struct CLIENT_ID client; + __le32 record_type; + __le32 transact_id; + __le16 flags; + u8 align[6]; +}; + +struct LFS_RECORD { + __le16 next_record_off; + u8 align[6]; + __le64 last_end_lsn; +}; + +struct RECORD_PAGE_HDR { + struct NTFS_RECORD_HEADER rhdr; + __le32 rflags; + __le16 page_count; + __le16 page_pos; + struct LFS_RECORD record_hdr; + __le16 fixups[10]; + __le32 file_off; +}; + +enum NTFS_LOG_OPERATION { + Noop = 0, + CompensationLogRecord = 1, + InitializeFileRecordSegment = 2, + DeallocateFileRecordSegment = 3, + WriteEndOfFileRecordSegment = 4, + CreateAttribute = 5, + DeleteAttribute = 6, + UpdateResidentValue = 7, + UpdateNonresidentValue = 8, + UpdateMappingPairs = 9, + DeleteDirtyClusters = 10, + SetNewAttributeSizes = 11, + AddIndexEntryRoot = 12, + DeleteIndexEntryRoot = 13, + AddIndexEntryAllocation = 14, + DeleteIndexEntryAllocation = 15, + WriteEndOfIndexBuffer = 16, + SetIndexEntryVcnRoot = 17, + SetIndexEntryVcnAllocation = 18, + UpdateFileNameRoot = 19, + UpdateFileNameAllocation = 20, + SetBitsInNonresidentBitMap = 21, + ClearBitsInNonresidentBitMap = 22, + HotFix = 23, + EndTopLevelAction = 24, + PrepareTransaction = 25, + CommitTransaction = 26, + ForgetTransaction = 27, + OpenNonresidentAttribute = 28, + OpenAttributeTableDump = 29, + AttributeNamesDump = 30, + DirtyPageTableDump = 31, + TransactionTableDump = 32, + UpdateRecordDataRoot = 33, + UpdateRecordDataAllocation = 34, + UpdateRelativeDataInIndex = 35, + UpdateRelativeDataInIndex2 = 36, + ZeroEndOfFileRecord = 37, +}; + +enum { + lcb_ctx_undo_next = 0, + lcb_ctx_prev = 1, + lcb_ctx_next = 2, +}; + +struct lcb { + struct LFS_RECORD_HDR *lrh; + struct LOG_REC_HDR *log_rec; + u32 ctx_mode; + struct CLIENT_ID client; + bool alloc; +}; + +struct restart_info { + u64 last_lsn; + struct RESTART_HDR *r_page; + u32 vbo; + bool chkdsk_was_run; + bool valid_page; + bool initialized; + bool restart; +}; + +struct ntfs_log { + struct ntfs_inode *ni; + u32 l_size; + u32 orig_file_size; + u32 sys_page_size; + u32 sys_page_mask; + u32 page_size; + u32 page_mask; + u8 page_bits; + struct RECORD_PAGE_HDR *one_page_buf; + struct RESTART_TABLE *open_attr_tbl; + u32 transaction_id; + u32 clst_per_page; + u32 first_page; + u32 next_page; + u32 ra_off; + u32 data_off; + u32 restart_size; + u32 data_size; + u16 record_header_len; + u64 seq_num; + u32 seq_num_bits; + u32 file_data_bits; + u32 seq_num_mask; + struct RESTART_AREA *ra; + u32 ra_size; + bool init_ra; + bool set_dirty; + u64 oldest_lsn; + u32 oldest_lsn_off; + u64 last_lsn; + u32 total_avail; + u32 total_avail_pages; + u32 total_undo_commit; + u32 max_current_avail; + u32 current_avail; + u32 reserved; + short int major_ver; + short int minor_ver; + u32 l_flags; + u32 current_openlog_count; + struct CLIENT_ID client_id; + u32 client_undo_commit; + struct restart_info rst_info; + struct restart_info rst_info2; +}; + +struct OpenAttr { + struct ATTRIB *attr; + struct runs_tree *run1; + struct runs_tree run0; + struct ntfs_inode *ni; +}; + +struct dax_operations { + long int (*direct_access)(struct dax_device *, long unsigned int, long int, enum dax_access_mode, void **, pfn_t *); + bool (*dax_supported)(struct dax_device *, struct block_device *, int, sector_t, sector_t); + int (*zero_page_range)(struct dax_device *, long unsigned int, size_t); + size_t (*recovery_write)(struct dax_device *, long unsigned int, void *, size_t, struct iov_iter *); +}; + +struct virtio_driver { + struct device_driver driver; + const struct virtio_device_id *id_table; + const unsigned int *feature_table; + unsigned int feature_table_size; + const unsigned int *feature_table_legacy; + unsigned int feature_table_size_legacy; + int (*validate)(struct virtio_device *); + int (*probe)(struct virtio_device *); + void (*scan)(struct virtio_device *); + void (*remove)(struct virtio_device *); + void (*config_changed)(struct virtio_device *); + int (*freeze)(struct virtio_device *); + int (*restore)(struct virtio_device *); +}; + +struct virtio_fs_config { + __u8 tag[36]; + __le32 num_request_queues; +}; + +struct fuse_forget_in { + uint64_t nlookup; +}; + +enum fuse_req_flag { + FR_ISREPLY = 0, + FR_FORCE = 1, + FR_BACKGROUND = 2, + FR_WAITING = 3, + FR_ABORTED = 4, + FR_INTERRUPTED = 5, + FR_LOCKED = 6, + FR_PENDING = 7, + FR_SENT = 8, + FR_FINISHED = 9, + FR_PRIVATE = 10, + FR_ASYNC = 11, +}; + +struct fuse_pqueue { + unsigned int connected; + spinlock_t lock; + struct list_head *processing; + struct list_head io; +}; + +struct fuse_dev { + struct fuse_conn *fc; + struct fuse_pqueue pq; + struct list_head entry; +}; + +enum fuse_dax_mode { + FUSE_DAX_INODE_DEFAULT = 0, + FUSE_DAX_ALWAYS = 1, + FUSE_DAX_NEVER = 2, + FUSE_DAX_INODE_USER = 3, +}; + +struct fuse_fs_context { + int fd; + struct file *file; + unsigned int rootmode; + kuid_t user_id; + kgid_t group_id; + bool is_bdev: 1; + bool fd_present: 1; + bool rootmode_present: 1; + bool user_id_present: 1; + bool group_id_present: 1; + bool default_permissions: 1; + bool allow_other: 1; + bool destroy: 1; + bool no_control: 1; + bool no_force_umount: 1; + bool legacy_opts_show: 1; + enum fuse_dax_mode dax_mode; + unsigned int max_read; + unsigned int blksize; + const char *subtype; + unsigned int negative_dentry_timeout; + unsigned int entry_timeout; + unsigned int attr_timeout; + bool no_flush; + bool no_xattr; + bool ignore_atime; + bool trace_rpc; + bool keep_cache; + bool writeback_cache; + struct dax_device *dax_dev; + void **fudptr; +}; + +enum { + VQ_HIPRIO = 0, + VQ_REQUEST = 1, +}; + +struct virtio_fs_vq { + spinlock_t lock; + struct virtqueue *vq; + struct work_struct done_work; + struct list_head queued_reqs; + struct list_head end_reqs; + struct work_struct dispatch_work; + struct fuse_dev *fud; + bool connected; + long int in_flight; + struct completion in_flight_zero; + struct kobject *kobj; + char name[24]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct virtio_fs { + struct kobject kobj; + struct kobject *mqs_kobj; + struct list_head list; + char *tag; + struct virtio_fs_vq *vqs; + unsigned int nvqs; + unsigned int num_request_queues; + struct dax_device *dax_dev; + unsigned int *mq_map; + void *window_kaddr; + phys_addr_t window_phys_addr; + size_t window_len; +}; + +struct virtio_fs_forget_req { + struct fuse_in_header ih; + struct fuse_forget_in arg; +}; + +struct virtio_fs_forget { + struct list_head list; + struct virtio_fs_forget_req req; +}; + +struct virtio_fs_req_work { + struct fuse_req *req; + struct virtio_fs_vq *fsvq; + struct work_struct done_work; +}; + +enum { + OPT_DAX = 0, + OPT_DAX_ENUM = 1, + OPT_SUBTYPE = 2, + OPT_NEGATIVE_DENTRY_TIMEOUT = 3, + OPT_ENTRY_TIMEOUT = 4, + OPT_ATTR_TIMEOUT = 5, + OPT_NO_FLUSH = 6, + OPT_NO_XATTR = 7, + OPT_IGNORE_ATIME = 8, + OPT_TRACE_RPC = 9, + OPT_KEEP_CACHE = 10, + OPT_WRITEBACK_CACHE = 11, +}; + +struct dax_dev; + +struct regid { + uint8_t flags; + uint8_t ident[23]; + uint8_t identSuffix[8]; +}; + +struct tag { + __le16 tagIdent; + __le16 descVersion; + uint8_t tagChecksum; + uint8_t reserved; + __le16 tagSerialNum; + __le16 descCRC; + __le16 descCRCLength; + __le32 tagLocation; +}; + +struct sparingEntry { + __le32 origLocation; + __le32 mappedLocation; +}; + +struct sparingTable { + struct tag descTag; + struct regid sparingIdent; + __le16 reallocationTableLen; + __le16 reserved; + __le32 sequenceNum; + struct sparingEntry mapEntry[0]; +}; + +struct udf_meta_data { + __u32 s_meta_file_loc; + __u32 s_mirror_file_loc; + __u32 s_bitmap_file_loc; + __u32 s_alloc_unit_size; + __u16 s_align_unit_size; + __u16 s_phys_partition_ref; + int s_flags; + struct inode *s_metadata_fe; + struct inode *s_mirror_fe; + struct inode *s_bitmap_fe; +}; + +struct udf_sparing_data { + __u16 s_packet_len; + struct buffer_head *s_spar_map[4]; +}; + +struct udf_virtual_data { + __u32 s_num_entries; + __u16 s_start_offset; +}; + +struct udf_bitmap { + __u32 s_extPosition; + int s_nr_groups; + struct buffer_head *s_block_bitmap[0]; +}; + +struct udf_part_map { + union { + struct udf_bitmap *s_bitmap; + struct inode *s_table; + } s_uspace; + __u32 s_partition_root; + __u32 s_partition_len; + __u16 s_partition_type; + __u16 s_partition_num; + union { + struct udf_sparing_data s_sparing; + struct udf_virtual_data s_virtual; + struct udf_meta_data s_metadata; + } s_type_specific; + __u32 (*s_partition_func)(struct super_block *, __u32, __u16, __u32); + __u16 s_volumeseqnum; + __u16 s_partition_flags; +}; + +struct udf_sb_info { + struct udf_part_map *s_partmaps; + __u8 s_volume_ident[32]; + __u16 s_partitions; + __u16 s_partition; + __s32 s_session; + __u32 s_anchor; + __u32 s_last_block; + struct buffer_head *s_lvid_bh; + umode_t s_umask; + kgid_t s_gid; + kuid_t s_uid; + umode_t s_fmode; + umode_t s_dmode; + rwlock_t s_cred_lock; + struct timespec64 s_record_time; + __u16 s_serial_number; + __u16 s_udfrev; + long unsigned int s_flags; + struct nls_table *s_nls_map; + struct inode *s_vat_inode; + struct mutex s_alloc_mutex; + unsigned int s_lvid_dirty; +}; + +typedef enum { + XFS_LOOKUP_EQi = 0, + XFS_LOOKUP_LEi = 1, + XFS_LOOKUP_GEi = 2, +} xfs_lookup_t; + +enum xbtree_recpacking { + XBTREE_RECPACKING_EMPTY = 0, + XBTREE_RECPACKING_SPARSE = 1, + XBTREE_RECPACKING_FULL = 2, +}; + +typedef int (*xfs_btree_query_range_fn)(struct xfs_btree_cur *, const union xfs_btree_rec *, void *); + +typedef struct xfs_alloc_arg xfs_alloc_arg_t; + +typedef int (*xfs_alloc_query_range_fn)(struct xfs_btree_cur *, const struct xfs_alloc_rec_incore *, void *); + +typedef int (*xfs_agfl_walk_fn)(struct xfs_mount *, xfs_agblock_t, void *); + +struct xfs_extent_free_item { + struct list_head xefi_list; + uint64_t xefi_owner; + xfs_fsblock_t xefi_startblock; + xfs_extlen_t xefi_blockcount; + struct xfs_perag *xefi_pag; + unsigned int xefi_flags; + enum xfs_ag_resv_type xefi_agresv; +}; + +struct xfs_alloc_autoreap { + struct xfs_defer_pending *dfp; +}; + +struct xfs_alloc_cur { + struct xfs_btree_cur *cnt; + struct xfs_btree_cur *bnolt; + struct xfs_btree_cur *bnogt; + xfs_extlen_t cur_len; + xfs_agblock_t rec_bno; + xfs_extlen_t rec_len; + xfs_agblock_t bno; + xfs_extlen_t len; + xfs_extlen_t diff; + unsigned int busy_gen; + bool busy; +}; + +struct xfs_alloc_query_range_info { + xfs_alloc_query_range_fn fn; + void *priv; +}; + +struct xfs_disk_dquot { + __be16 d_magic; + __u8 d_version; + __u8 d_type; + __be32 d_id; + __be64 d_blk_hardlimit; + __be64 d_blk_softlimit; + __be64 d_ino_hardlimit; + __be64 d_ino_softlimit; + __be64 d_bcount; + __be64 d_icount; + __be32 d_itimer; + __be32 d_btimer; + __be16 d_iwarns; + __be16 d_bwarns; + __be32 d_pad0; + __be64 d_rtb_hardlimit; + __be64 d_rtb_softlimit; + __be64 d_rtbcount; + __be32 d_rtbtimer; + __be16 d_rtbwarns; + __be16 d_pad; +}; + +struct xfs_dqblk { + struct xfs_disk_dquot dd_diskdq; + char dd_fill[4]; + __be32 dd_crc; + __be64 dd_lsn; + uuid_t dd_uuid; +}; + +enum { + XFS_QLOWSP_1_PCNT = 0, + XFS_QLOWSP_3_PCNT = 1, + XFS_QLOWSP_5_PCNT = 2, + XFS_QLOWSP_MAX = 3, +}; + +enum { + XFS_QM_TRANS_USR = 0, + XFS_QM_TRANS_GRP = 1, + XFS_QM_TRANS_PRJ = 2, + XFS_QM_TRANS_DQTYPES = 3, +}; + +struct dahash_test { + uint16_t start; + uint16_t length; + xfs_dahash_t dahash; + xfs_dahash_t ascii_ci_dahash; +}; + +struct xfs_exchange_range { + __s32 file1_fd; + __u32 pad; + __u64 file1_offset; + __u64 file2_offset; + __u64 length; + __u64 flags; +}; + +struct xfs_commit_range { + __s32 file1_fd; + __u32 pad; + __u64 file1_offset; + __u64 file2_offset; + __u64 length; + __u64 flags; + __u64 file2_freshness[6]; +}; + +struct xfs_exchrange { + struct file *file1; + struct file *file2; + loff_t file1_offset; + loff_t file2_offset; + u64 length; + u64 flags; + u64 file2_ino; + struct timespec64 file2_mtime; + struct timespec64 file2_ctime; + u32 file2_gen; +}; + +struct xfs_exchmaps_req { + struct xfs_inode *ip1; + struct xfs_inode *ip2; + xfs_fileoff_t startoff1; + xfs_fileoff_t startoff2; + xfs_filblks_t blockcount; + uint64_t flags; + xfs_filblks_t ip1_bcount; + xfs_filblks_t ip2_bcount; + xfs_filblks_t ip1_rtbcount; + xfs_filblks_t ip2_rtbcount; + long long unsigned int resblks; + long long unsigned int nr_exchanges; +}; + +struct xfs_commit_range_fresh { + xfs_fsid_t fsid; + __u64 file2_ino; + __s64 file2_mtime; + __s64 file2_ctime; + __s32 file2_mtime_nsec; + __s32 file2_ctime_nsec; + __u32 file2_gen; + __u32 magic; +}; + +struct xfs_mru_cache_elem { + struct list_head list_node; + long unsigned int key; +}; + +typedef void (*xfs_mru_cache_free_func_t)(void *, struct xfs_mru_cache_elem *); + +struct xfs_mru_cache { + struct xarray store; + struct list_head *lists; + struct list_head reap_list; + spinlock_t lock; + unsigned int grp_count; + unsigned int grp_time; + unsigned int lru_grp; + long unsigned int time_zero; + xfs_mru_cache_free_func_t free_func; + struct delayed_work work; + unsigned int queued; + void *data; +}; + +typedef struct xfs_sb xfs_sb_t; + +struct xfs_inodegc { + struct xfs_mount *mp; + struct llist_head list; + struct delayed_work work; + int error; + unsigned int items; + unsigned int shrinker_hits; + unsigned int cpu; +}; + +struct xfs_inode_log_item { + struct xfs_log_item ili_item; + struct xfs_inode *ili_inode; + short unsigned int ili_lock_flags; + unsigned int ili_dirty_flags; + spinlock_t ili_lock; + unsigned int ili_last_fields; + unsigned int ili_fields; + unsigned int ili_fsync_fields; + xfs_lsn_t ili_flush_lsn; + xfs_csn_t ili_commit_seq; +}; + +struct xfs_icwalk { + __u32 icw_flags; + kuid_t icw_uid; + kgid_t icw_gid; + prid_t icw_prid; + __u64 icw_min_file_size; + long int icw_scan_limit; +}; + +enum xfs_dax_mode { + XFS_DAX_INODE = 0, + XFS_DAX_ALWAYS = 1, + XFS_DAX_NEVER = 2, +}; + +enum { + Opt_logbufs = 0, + Opt_logbsize = 1, + Opt_logdev = 2, + Opt_rtdev = 3, + Opt_wsync = 4, + Opt_noalign = 5, + Opt_swalloc = 6, + Opt_sunit = 7, + Opt_swidth = 8, + Opt_nouuid = 9, + Opt_grpid = 10, + Opt_nogrpid = 11, + Opt_bsdgroups = 12, + Opt_sysvgroups = 13, + Opt_allocsize = 14, + Opt_norecovery = 15, + Opt_inode64 = 16, + Opt_inode32 = 17, + Opt_ikeep = 18, + Opt_noikeep = 19, + Opt_largeio = 20, + Opt_nolargeio = 21, + Opt_attr2 = 22, + Opt_noattr2 = 23, + Opt_filestreams = 24, + Opt_quota = 25, + Opt_noquota = 26, + Opt_usrquota = 27, + Opt_grpquota = 28, + Opt_prjquota = 29, + Opt_uquota = 30, + Opt_gquota = 31, + Opt_pquota = 32, + Opt_uqnoenforce = 33, + Opt_gqnoenforce = 34, + Opt_pqnoenforce = 35, + Opt_qnoenforce = 36, + Opt_discard___2 = 37, + Opt_nodiscard = 38, + Opt_dax = 39, + Opt_dax_enum = 40, +}; + +struct proc_xfs_info { + uint64_t flag; + char *str; +}; + +struct xfs_attri_log_format { + uint16_t alfi_type; + uint16_t alfi_size; + uint32_t alfi_igen; + uint64_t alfi_id; + uint64_t alfi_ino; + uint32_t alfi_op_flags; + union { + uint32_t alfi_name_len; + struct { + uint16_t alfi_old_name_len; + uint16_t alfi_new_name_len; + }; + }; + uint32_t alfi_value_len; + uint32_t alfi_attr_filter; +}; + +struct xfs_attrd_log_format { + uint16_t alfd_type; + uint16_t alfd_size; + uint32_t __pad; + uint64_t alfd_alf_id; +}; + +enum xfs_delattr_state { + XFS_DAS_UNINIT = 0, + XFS_DAS_SF_ADD = 1, + XFS_DAS_SF_REMOVE = 2, + XFS_DAS_LEAF_ADD = 3, + XFS_DAS_LEAF_REMOVE = 4, + XFS_DAS_NODE_ADD = 5, + XFS_DAS_NODE_REMOVE = 6, + XFS_DAS_LEAF_SET_RMT = 7, + XFS_DAS_LEAF_ALLOC_RMT = 8, + XFS_DAS_LEAF_REPLACE = 9, + XFS_DAS_LEAF_REMOVE_OLD = 10, + XFS_DAS_LEAF_REMOVE_RMT = 11, + XFS_DAS_LEAF_REMOVE_ATTR = 12, + XFS_DAS_NODE_SET_RMT = 13, + XFS_DAS_NODE_ALLOC_RMT = 14, + XFS_DAS_NODE_REPLACE = 15, + XFS_DAS_NODE_REMOVE_OLD = 16, + XFS_DAS_NODE_REMOVE_RMT = 17, + XFS_DAS_NODE_REMOVE_ATTR = 18, + XFS_DAS_DONE = 19, +}; + +struct xfs_attri_log_nameval; + +struct xfs_attr_intent { + struct list_head xattri_list; + struct xfs_da_state *xattri_da_state; + struct xfs_da_args *xattri_da_args; + struct xfs_attri_log_nameval *xattri_nameval; + enum xfs_delattr_state xattri_dela_state; + unsigned int xattri_op_flags; + xfs_dablk_t xattri_lblkno; + int xattri_blkcnt; + struct xfs_bmbt_irec xattri_map; +}; + +struct xfs_attri_log_nameval { + struct xfs_log_iovec name; + struct xfs_log_iovec new_name; + struct xfs_log_iovec value; + struct xfs_log_iovec new_value; + refcount_t refcount; +}; + +struct xfs_attri_log_item { + struct xfs_log_item attri_item; + atomic_t attri_refcount; + struct xfs_attri_log_nameval *attri_nameval; + struct xfs_attri_log_format attri_format; +}; + +struct xfs_attrd_log_item { + struct xfs_log_item attrd_item; + struct xfs_attri_log_item *attrd_attrip; + struct xfs_attrd_log_format attrd_format; +}; + +struct p9_wstat { + u16 size; + u16 type; + u32 dev; + struct p9_qid qid; + u32 mode; + u32 atime; + u32 mtime; + u64 length; + const char *name; + const char *uid; + const char *gid; + const char *muid; + char *extension; + kuid_t n_uid; + kgid_t n_gid; + kuid_t n_muid; +}; + +struct p9_flock { + u8 type; + u32 flags; + u64 start; + u64 length; + u32 proc_id; + char *client_id; +}; + +struct p9_getlock { + u8 type; + u64 start; + u64 length; + u32 proc_id; + char *client_id; +}; + +enum p9_session_flags { + V9FS_PROTO_2000U = 1, + V9FS_PROTO_2000L = 2, + V9FS_ACCESS_SINGLE = 4, + V9FS_ACCESS_USER = 8, + V9FS_ACCESS_CLIENT = 16, + V9FS_POSIX_ACL = 32, + V9FS_NO_XATTR = 64, + V9FS_IGNORE_QV = 128, + V9FS_DIRECT_IO = 256, + V9FS_SYNC = 512, +}; + +enum p9_cache_bits { + CACHE_NONE = 0, + CACHE_FILE = 1, + CACHE_META = 2, + CACHE_WRITEBACK = 4, + CACHE_LOOSE = 8, + CACHE_FSCACHE = 128, +}; + +struct v9fs_session_info { + unsigned int flags; + unsigned char nodev; + short unsigned int debug; + unsigned int afid; + unsigned int cache; + char *uname; + char *aname; + unsigned int maxdata; + kuid_t dfltuid; + kgid_t dfltgid; + kuid_t uid; + struct p9_client *clnt; + struct list_head slist; + struct rw_semaphore rename_sem; + long int session_lock_timeout; +}; + +struct debugfs_blob_wrapper { + void *data; + long unsigned int size; +}; + +struct debugfs_reg32 { + char *name; + long unsigned int offset; +}; + +struct debugfs_regset32 { + const struct debugfs_reg32 *regs; + int nregs; + void *base; + struct device *dev; +}; + +struct debugfs_u32_array { + u32 *array; + u32 n_elements; +}; + +typedef struct vfsmount * (*debugfs_automount_t)(struct dentry *, void *); + +struct debugfs_cancellation { + struct list_head list; + void (*cancel)(struct dentry *, void *); + void *cancel_data; +}; + +struct debugfs_fsdata { + const struct file_operations *real_fops; + union { + debugfs_automount_t automount; + struct { + refcount_t active_users; + struct completion active_users_drained; + struct mutex cancellations_mtx; + struct list_head cancellations; + }; + }; +}; + +struct debugfs_devm_entry { + int (*read)(struct seq_file *, void *); + struct device *dev; +}; + +struct btrfs_dir_item { + struct btrfs_disk_key location; + __le64 transid; + __le16 data_len; + __le16 name_len; + __u8 type; +} __attribute__((packed)); + +struct fscrypt_str { + unsigned char *name; + u32 len; +}; + +enum { + IOPRIO_CLASS_NONE = 0, + IOPRIO_CLASS_RT = 1, + IOPRIO_CLASS_BE = 2, + IOPRIO_CLASS_IDLE = 3, + IOPRIO_CLASS_INVALID = 7, +}; + +enum { + IOPRIO_HINT_NONE = 0, + IOPRIO_HINT_DEV_DURATION_LIMIT_1 = 1, + IOPRIO_HINT_DEV_DURATION_LIMIT_2 = 2, + IOPRIO_HINT_DEV_DURATION_LIMIT_3 = 3, + IOPRIO_HINT_DEV_DURATION_LIMIT_4 = 4, + IOPRIO_HINT_DEV_DURATION_LIMIT_5 = 5, + IOPRIO_HINT_DEV_DURATION_LIMIT_6 = 6, + IOPRIO_HINT_DEV_DURATION_LIMIT_7 = 7, +}; + +typedef __kernel_rwf_t rwf_t; + +struct fileattr { + u32 flags; + u32 fsx_xflags; + u32 fsx_extsize; + u32 fsx_nextents; + u32 fsx_projid; + u32 fsx_cowextsize; + bool flags_valid: 1; + bool fsx_valid: 1; +}; + +struct btrfs_ioctl_vol_args { + __s64 fd; + char name[4088]; +}; + +struct btrfs_ioctl_qgroup_limit_args { + __u64 qgroupid; + struct btrfs_qgroup_limit lim; +}; + +struct btrfs_ioctl_vol_args_v2 { + __s64 fd; + __u64 transid; + __u64 flags; + union { + struct { + __u64 size; + struct btrfs_qgroup_inherit *qgroup_inherit; + }; + __u64 unused[4]; + }; + union { + char name[4040]; + __u64 devid; + __u64 subvolid; + }; +}; + +struct btrfs_ioctl_scrub_args { + __u64 devid; + __u64 start; + __u64 end; + __u64 flags; + struct btrfs_scrub_progress progress; + __u64 unused[109]; +}; + +struct btrfs_ioctl_dev_replace_start_params { + __u64 srcdevid; + __u64 cont_reading_from_srcdev_mode; + __u8 srcdev_name[1025]; + __u8 tgtdev_name[1025]; +}; + +struct btrfs_ioctl_dev_replace_status_params { + __u64 replace_state; + __u64 progress_1000; + __u64 time_started; + __u64 time_stopped; + __u64 num_write_errors; + __u64 num_uncorrectable_read_errors; +}; + +struct btrfs_ioctl_dev_replace_args { + __u64 cmd; + __u64 result; + union { + struct btrfs_ioctl_dev_replace_start_params start; + struct btrfs_ioctl_dev_replace_status_params status; + }; + __u64 spare[64]; +}; + +struct btrfs_ioctl_dev_info_args { + __u64 devid; + __u8 uuid[16]; + __u64 bytes_used; + __u64 total_bytes; + __u8 fsid[16]; + __u64 unused[377]; + __u8 path[1024]; +}; + +struct btrfs_ioctl_fs_info_args { + __u64 max_id; + __u64 num_devices; + __u8 fsid[16]; + __u32 nodesize; + __u32 sectorsize; + __u32 clone_alignment; + __u16 csum_type; + __u16 csum_size; + __u64 flags; + __u64 generation; + __u8 metadata_uuid[16]; + __u8 reserved[944]; +}; + +struct btrfs_ioctl_feature_flags { + __u64 compat_flags; + __u64 compat_ro_flags; + __u64 incompat_flags; +}; + +struct btrfs_ioctl_balance_args { + __u64 flags; + __u64 state; + struct btrfs_balance_args data; + struct btrfs_balance_args meta; + struct btrfs_balance_args sys; + struct btrfs_balance_progress stat; + __u64 unused[72]; +}; + +struct btrfs_ioctl_ino_lookup_args { + __u64 treeid; + __u64 objectid; + char name[4080]; +}; + +struct btrfs_ioctl_ino_lookup_user_args { + __u64 dirid; + __u64 treeid; + char name[256]; + char path[3824]; +}; + +struct btrfs_ioctl_search_key { + __u64 tree_id; + __u64 min_objectid; + __u64 max_objectid; + __u64 min_offset; + __u64 max_offset; + __u64 min_transid; + __u64 max_transid; + __u32 min_type; + __u32 max_type; + __u32 nr_items; + __u32 unused; + __u64 unused1; + __u64 unused2; + __u64 unused3; + __u64 unused4; +}; + +struct btrfs_ioctl_search_header { + __u64 transid; + __u64 objectid; + __u64 offset; + __u32 type; + __u32 len; +}; + +struct btrfs_ioctl_search_args { + struct btrfs_ioctl_search_key key; + char buf[3992]; +}; + +struct btrfs_ioctl_search_args_v2 { + struct btrfs_ioctl_search_key key; + __u64 buf_size; + __u64 buf[0]; +}; + +struct btrfs_ioctl_defrag_range_args { + __u64 start; + __u64 len; + __u64 flags; + __u32 extent_thresh; + __u32 compress_type; + __u32 unused[4]; +}; + +struct btrfs_ioctl_space_info { + __u64 flags; + __u64 total_bytes; + __u64 used_bytes; +}; + +struct btrfs_ioctl_space_args { + __u64 space_slots; + __u64 total_spaces; + struct btrfs_ioctl_space_info spaces[0]; +}; + +struct btrfs_data_container { + __u32 bytes_left; + __u32 bytes_missing; + __u32 elem_cnt; + __u32 elem_missed; + __u64 val[0]; +}; + +struct btrfs_ioctl_ino_path_args { + __u64 inum; + __u64 size; + __u64 reserved[4]; + __u64 fspath; +}; + +struct btrfs_ioctl_logical_ino_args { + __u64 logical; + __u64 size; + __u64 reserved[3]; + __u64 flags; + __u64 inodes; +}; + +struct btrfs_ioctl_get_dev_stats { + __u64 devid; + __u64 nr_items; + __u64 flags; + __u64 values[5]; + __u64 unused[121]; +}; + +struct btrfs_ioctl_quota_ctl_args { + __u64 cmd; + __u64 status; +}; + +struct btrfs_ioctl_quota_rescan_args { + __u64 flags; + __u64 progress; + __u64 reserved[6]; +}; + +struct btrfs_ioctl_qgroup_assign_args { + __u64 assign; + __u64 src; + __u64 dst; +}; + +struct btrfs_ioctl_qgroup_create_args { + __u64 create; + __u64 qgroupid; +}; + +struct btrfs_ioctl_timespec { + __u64 sec; + __u32 nsec; +}; + +struct btrfs_ioctl_received_subvol_args { + char uuid[16]; + __u64 stransid; + __u64 rtransid; + struct btrfs_ioctl_timespec stime; + struct btrfs_ioctl_timespec rtime; + __u64 flags; + __u64 reserved[16]; +}; + +struct btrfs_ioctl_send_args { + __s64 send_fd; + __u64 clone_sources_count; + __u64 *clone_sources; + __u64 parent_root; + __u64 flags; + __u32 version; + __u8 reserved[28]; +}; + +struct btrfs_ioctl_get_subvol_info_args { + __u64 treeid; + char name[256]; + __u64 parent_id; + __u64 dirid; + __u64 generation; + __u64 flags; + __u8 uuid[16]; + __u8 parent_uuid[16]; + __u8 received_uuid[16]; + __u64 ctransid; + __u64 otransid; + __u64 stransid; + __u64 rtransid; + struct btrfs_ioctl_timespec ctime; + struct btrfs_ioctl_timespec otime; + struct btrfs_ioctl_timespec stime; + struct btrfs_ioctl_timespec rtime; + __u64 reserved[8]; +}; + +struct btrfs_ioctl_get_subvol_rootref_args { + __u64 min_treeid; + struct { + __u64 treeid; + __u64 dirid; + } rootref[255]; + __u8 num_items; + __u8 align[7]; +}; + +struct btrfs_ioctl_encoded_io_args { + const struct iovec *iov; + long unsigned int iovcnt; + __s64 offset; + __u64 flags; + __u64 len; + __u64 unencoded_len; + __u64 unencoded_offset; + __u32 compression; + __u32 encryption; + __u8 reserved[64]; +}; + +enum btrfs_err_code { + BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET = 1, + BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET = 2, + BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET = 3, + BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET = 4, + BTRFS_ERROR_DEV_TGT_REPLACE = 5, + BTRFS_ERROR_DEV_MISSING_NOT_FOUND = 6, + BTRFS_ERROR_DEV_ONLY_WRITABLE = 7, + BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS = 8, + BTRFS_ERROR_DEV_RAID1C3_MIN_NOT_MET = 9, + BTRFS_ERROR_DEV_RAID1C4_MIN_NOT_MET = 10, +}; + +struct btrfs_inode_ref { + __le64 index; + __le16 name_len; +} __attribute__((packed)); + +struct btrfs_root_ref { + __le64 dirid; + __le64 sequence; + __le16 name_len; +} __attribute__((packed)); + +enum btrfs_lock_nesting { + BTRFS_NESTING_NORMAL = 0, + BTRFS_NESTING_COW = 1, + BTRFS_NESTING_LEFT = 2, + BTRFS_NESTING_RIGHT = 3, + BTRFS_NESTING_LEFT_COW = 4, + BTRFS_NESTING_RIGHT_COW = 5, + BTRFS_NESTING_SPLIT = 6, + BTRFS_NESTING_NEW_ROOT = 7, + BTRFS_NESTING_MAX = 8, +}; + +enum { + BTRFS_ROOT_IN_TRANS_SETUP = 0, + BTRFS_ROOT_SHAREABLE = 1, + BTRFS_ROOT_TRACK_DIRTY = 2, + BTRFS_ROOT_IN_RADIX = 3, + BTRFS_ROOT_ORPHAN_ITEM_INSERTED = 4, + BTRFS_ROOT_DEFRAG_RUNNING = 5, + BTRFS_ROOT_FORCE_COW = 6, + BTRFS_ROOT_MULTI_LOG_TASKS = 7, + BTRFS_ROOT_DIRTY = 8, + BTRFS_ROOT_DELETING = 9, + BTRFS_ROOT_DEAD_RELOC_TREE = 10, + BTRFS_ROOT_DEAD_TREE = 11, + BTRFS_ROOT_HAS_LOG_TREE = 12, + BTRFS_ROOT_QGROUP_FLUSHING = 13, + BTRFS_ROOT_ORPHAN_CLEANUP = 14, + BTRFS_ROOT_UNFINISHED_DROP = 15, + BTRFS_ROOT_RESET_LOCKDEP_CLASS = 16, +}; + +struct fscrypt_name { + const struct qstr *usr_fname; + struct fscrypt_str disk_name; + u32 hash; + u32 minor_hash; + struct fscrypt_str crypto_buf; + bool is_nokey_name; +}; + +struct btrfs_new_inode_args { + struct inode *dir; + struct dentry *dentry; + struct inode *inode; + bool orphan; + bool subvol; + struct posix_acl *default_acl; + struct posix_acl *acl; + struct fscrypt_name fname; +}; + +enum btrfs_ilock_type { + __BTRFS_ILOCK_SHARED_BIT = 0, + BTRFS_ILOCK_SHARED = 1, + __BTRFS_ILOCK_SHARED_SEQ = 0, + __BTRFS_ILOCK_TRY_BIT = 1, + BTRFS_ILOCK_TRY = 2, + __BTRFS_ILOCK_TRY_SEQ = 1, + __BTRFS_ILOCK_MMAP_BIT = 2, + BTRFS_ILOCK_MMAP = 4, + __BTRFS_ILOCK_MMAP_SEQ = 2, +}; + +struct btrfs_dev_lookup_args { + u64 devid; + u8 *uuid; + u8 *fsid; + bool missing; +}; + +struct inode_fs_paths { + struct btrfs_path *btrfs_path; + struct btrfs_root *fs_root; + struct btrfs_data_container *fspath; +}; + +enum btrfs_feature_set { + FEAT_COMPAT = 0, + FEAT_COMPAT_RO = 1, + FEAT_INCOMPAT = 2, + FEAT_MAX = 3, +}; + +struct btrfs_qgroup_rsv { + u64 values[3]; +}; + +struct btrfs_qgroup { + u64 qgroupid; + u64 rfer; + u64 rfer_cmpr; + u64 excl; + u64 excl_cmpr; + u64 lim_flags; + u64 max_rfer; + u64 max_excl; + u64 rsv_rfer; + u64 rsv_excl; + struct btrfs_qgroup_rsv rsv; + struct list_head groups; + struct list_head members; + struct list_head dirty; + struct list_head iterator; + struct list_head nested_iterator; + struct rb_node node; + u64 old_refcnt; + u64 new_refcnt; + struct kobject kobj; +}; + +struct btrfs_qgroup_list { + struct list_head next_group; + struct list_head next_member; + struct btrfs_qgroup *group; + struct btrfs_qgroup *member; +}; + +struct btrfs_ioctl_timespec_32 { + __u64 sec; + __u32 nsec; +} __attribute__((packed)); + +struct btrfs_ioctl_received_subvol_args_32 { + char uuid[16]; + __u64 stransid; + __u64 rtransid; + struct btrfs_ioctl_timespec_32 stime; + struct btrfs_ioctl_timespec_32 rtime; + __u64 flags; + __u64 reserved[16]; +}; + +enum btrfs_reserve_flush_enum { + BTRFS_RESERVE_NO_FLUSH = 0, + BTRFS_RESERVE_FLUSH_LIMIT = 1, + BTRFS_RESERVE_FLUSH_EVICT = 2, + BTRFS_RESERVE_FLUSH_DATA = 3, + BTRFS_RESERVE_FLUSH_FREE_SPACE_INODE = 4, + BTRFS_RESERVE_FLUSH_ALL = 5, + BTRFS_RESERVE_FLUSH_ALL_STEAL = 6, + BTRFS_RESERVE_FLUSH_EMERGENCY = 7, +}; + +enum btrfs_flush_state { + FLUSH_DELAYED_ITEMS_NR = 1, + FLUSH_DELAYED_ITEMS = 2, + FLUSH_DELAYED_REFS_NR = 3, + FLUSH_DELAYED_REFS = 4, + FLUSH_DELALLOC = 5, + FLUSH_DELALLOC_WAIT = 6, + FLUSH_DELALLOC_FULL = 7, + ALLOC_CHUNK = 8, + ALLOC_CHUNK_FORCE = 9, + RUN_DELAYED_IPUTS = 10, + COMMIT_TRANS = 11, +}; + +struct reserve_ticket { + u64 bytes; + int error; + bool steal; + struct list_head list; + wait_queue_head_t wait; +}; + +enum btrfs_chunk_alloc_enum { + CHUNK_ALLOC_NO_FORCE = 0, + CHUNK_ALLOC_LIMITED = 1, + CHUNK_ALLOC_FORCE = 2, + CHUNK_ALLOC_FORCE_FOR_EXTENT = 3, +}; + +struct sysinfo { + __kernel_long_t uptime; + __kernel_ulong_t loads[3]; + __kernel_ulong_t totalram; + __kernel_ulong_t freeram; + __kernel_ulong_t sharedram; + __kernel_ulong_t bufferram; + __kernel_ulong_t totalswap; + __kernel_ulong_t freeswap; + __u16 procs; + __u16 pad; + __kernel_ulong_t totalhigh; + __kernel_ulong_t freehigh; + __u32 mem_unit; + char _f[0]; +}; + +enum positive_aop_returns { + AOP_WRITEPAGE_ACTIVATE = 524288, + AOP_TRUNCATED_PAGE = 524289, +}; + +enum f2fs_error { + ERROR_CORRUPTED_CLUSTER = 0, + ERROR_FAIL_DECOMPRESSION = 1, + ERROR_INVALID_BLKADDR = 2, + ERROR_CORRUPTED_DIRENT = 3, + ERROR_CORRUPTED_INODE = 4, + ERROR_INCONSISTENT_SUMMARY = 5, + ERROR_INCONSISTENT_FOOTER = 6, + ERROR_INCONSISTENT_SUM_TYPE = 7, + ERROR_CORRUPTED_JOURNAL = 8, + ERROR_INCONSISTENT_NODE_COUNT = 9, + ERROR_INCONSISTENT_BLOCK_COUNT = 10, + ERROR_INVALID_CURSEG = 11, + ERROR_INCONSISTENT_SIT = 12, + ERROR_CORRUPTED_VERITY_XATTR = 13, + ERROR_CORRUPTED_XATTR = 14, + ERROR_INVALID_NODE_REFERENCE = 15, + ERROR_INCONSISTENT_NAT = 16, + ERROR_MAX = 17, +}; + +struct f2fs_nat_entry { + __u8 version; + __le32 ino; + __le32 block_addr; +} __attribute__((packed)); + +struct f2fs_nat_block { + struct f2fs_nat_entry entries[455]; +}; + +struct f2fs_sit_entry { + __le16 vblocks; + __u8 valid_map[64]; + __le64 mtime; +} __attribute__((packed)); + +struct f2fs_summary { + __le32 nid; + union { + __u8 reserved[3]; + struct { + __u8 version; + __le16 ofs_in_node; + } __attribute__((packed)); + }; +} __attribute__((packed)); + +struct summary_footer { + unsigned char entry_type; + __le32 check_sum; +} __attribute__((packed)); + +enum { + NAT_JOURNAL = 0, + SIT_JOURNAL = 1, +}; + +struct nat_journal_entry { + __le32 nid; + struct f2fs_nat_entry ne; +} __attribute__((packed)); + +struct nat_journal { + struct nat_journal_entry entries[38]; + __u8 reserved[11]; +}; + +struct sit_journal_entry { + __le32 segno; + struct f2fs_sit_entry se; +} __attribute__((packed)); + +struct sit_journal { + struct sit_journal_entry entries[6]; + __u8 reserved[37]; +}; + +struct f2fs_extra_info { + __le64 kbytes_written; + __u8 reserved[497]; +} __attribute__((packed)); + +struct f2fs_journal { + union { + __le16 n_nats; + __le16 n_sits; + }; + union { + struct nat_journal nat_j; + struct sit_journal sit_j; + struct f2fs_extra_info info; + }; +} __attribute__((packed)); + +struct f2fs_summary_block { + struct f2fs_summary entries[512]; + struct f2fs_journal journal; + struct summary_footer footer; +}; + +enum { + NAT_BITMAP = 0, + SIT_BITMAP = 1, +}; + +struct cp_control { + int reason; + __u64 trim_start; + __u64 trim_end; + __u64 trim_minlen; +}; + +enum { + ORPHAN_INO = 0, + APPEND_INO = 1, + UPDATE_INO = 2, + TRANS_DIR_INO = 3, + XATTR_DIR_INO = 4, + FLUSH_INO = 5, + MAX_INO_ENTRY = 6, +}; + +struct fsync_node_entry { + struct list_head list; + struct page *page; + unsigned int seq_id; +}; + +enum { + ALLOC_NODE = 0, + LOOKUP_NODE = 1, + LOOKUP_NODE_RA = 2, +}; + +enum nid_state { + FREE_NID = 0, + PREALLOC_NID = 1, + MAX_NID_STATE = 2, +}; + +enum nat_state { + TOTAL_NAT = 0, + DIRTY_NAT = 1, + RECLAIMABLE_NAT = 2, + MAX_NAT_STATE = 3, +}; + +enum { + CURSEG_HOT_DATA = 0, + CURSEG_WARM_DATA = 1, + CURSEG_COLD_DATA = 2, + CURSEG_HOT_NODE = 3, + CURSEG_WARM_NODE = 4, + CURSEG_COLD_NODE = 5, + NR_PERSISTENT_LOG = 6, + CURSEG_COLD_DATA_PINNED = 6, + CURSEG_ALL_DATA_ATGC = 7, + NO_CHECK_TYPE = 8, +}; + +struct seg_entry; + +struct sec_entry; + +struct sit_info { + block_t sit_base_addr; + block_t sit_blocks; + block_t written_valid_blocks; + char *bitmap; + char *sit_bitmap; + unsigned int bitmap_size; + long unsigned int *tmp_map; + long unsigned int *dirty_sentries_bitmap; + unsigned int dirty_sentries; + unsigned int sents_per_block; + struct rw_semaphore sentry_lock; + struct seg_entry *sentries; + struct sec_entry *sec_entries; + long long unsigned int elapsed_time; + long long unsigned int mounted_time; + long long unsigned int min_mtime; + long long unsigned int max_mtime; + long long unsigned int dirty_min_mtime; + long long unsigned int dirty_max_mtime; + unsigned int last_victim[5]; +}; + +struct free_segmap_info { + unsigned int start_segno; + unsigned int free_segments; + unsigned int free_sections; + spinlock_t segmap_lock; + long unsigned int *free_segmap; + long unsigned int *free_secmap; +}; + +struct dirty_seglist_info { + long unsigned int *dirty_segmap[8]; + long unsigned int *dirty_secmap; + struct mutex seglist_lock; + int nr_dirty[8]; + long unsigned int *victim_secmap; + long unsigned int *pinned_secmap; + unsigned int pinned_secmap_cnt; + bool enable_pin_section; +}; + +struct curseg_info { + struct mutex curseg_mutex; + struct f2fs_summary_block *sum_blk; + struct rw_semaphore journal_rwsem; + struct f2fs_journal *journal; + unsigned char alloc_type; + short unsigned int seg_type; + unsigned int segno; + short unsigned int next_blkoff; + unsigned int zone; + unsigned int next_segno; + int fragment_remained_chunk; + bool inited; +}; + +enum count_type { + F2FS_DIRTY_DENTS = 0, + F2FS_DIRTY_DATA = 1, + F2FS_DIRTY_QDATA = 2, + F2FS_DIRTY_NODES = 3, + F2FS_DIRTY_META = 4, + F2FS_DIRTY_IMETA = 5, + F2FS_WB_CP_DATA = 6, + F2FS_WB_DATA = 7, + F2FS_RD_DATA = 8, + F2FS_RD_NODE = 9, + F2FS_RD_META = 10, + F2FS_DIO_WRITE = 11, + F2FS_DIO_READ = 12, + NR_COUNT_TYPE = 13, +}; + +enum inode_type { + DIR_INODE = 0, + FILE_INODE = 1, + DIRTY_META = 2, + NR_INODE_TYPE = 3, +}; + +enum errors_option { + MOUNT_ERRORS_READONLY = 0, + MOUNT_ERRORS_CONTINUE = 1, + MOUNT_ERRORS_PANIC = 2, +}; + +enum { + PAGE_PRIVATE_NOT_POINTER = 0, + PAGE_PRIVATE_ONGOING_MIGRATION = 1, + PAGE_PRIVATE_INLINE_INODE = 2, + PAGE_PRIVATE_REF_RESOURCE = 3, + PAGE_PRIVATE_ATOMIC_WRITE = 4, + PAGE_PRIVATE_MAX = 5, +}; + +struct iostat_lat_info { + long unsigned int sum_lat[9]; + long unsigned int peak_lat[9]; + unsigned int bio_cnt[9]; +}; + +enum { + IS_CHECKPOINTED = 0, + HAS_FSYNCED_INODE = 1, + HAS_LAST_FSYNC = 2, + IS_DIRTY = 3, + IS_PREALLOC = 4, +}; + +struct node_info { + nid_t nid; + nid_t ino; + block_t blk_addr; + unsigned char version; + unsigned char flag; +}; + +struct nat_entry { + struct list_head list; + struct node_info ni; +}; + +enum mem_type { + FREE_NIDS = 0, + NAT_ENTRIES = 1, + DIRTY_DENTS = 2, + INO_ENTRIES = 3, + READ_EXTENT_CACHE = 4, + AGE_EXTENT_CACHE = 5, + DISCARD_CACHE = 6, + COMPRESS_PAGE = 7, + BASE_CHECK = 8, +}; + +struct nat_entry_set { + struct list_head set_list; + struct list_head entry_list; + nid_t set; + unsigned int entry_cnt; +}; + +struct free_nid { + struct list_head list; + nid_t nid; + int state; +}; + +enum { + BG_GC = 0, + FG_GC = 1, +}; + +struct seg_entry { + unsigned int type: 6; + unsigned int valid_blocks: 10; + unsigned int ckpt_valid_blocks: 10; + unsigned int padding: 6; + unsigned char *cur_valid_map; + unsigned char *ckpt_valid_map; + unsigned char *discard_map; + long long unsigned int mtime; +}; + +struct sec_entry { + unsigned int valid_blocks; +}; + +struct keyring_search_context { + struct keyring_index_key index_key; + const struct cred *cred; + struct key_match_data match_data; + unsigned int flags; + int (*iterator)(const void *, void *); + int skipped_ret; + bool possessed; + key_ref_t result; + time64_t now; +}; + +enum devcg_behavior { + DEVCG_DEFAULT_NONE = 0, + DEVCG_DEFAULT_ALLOW = 1, + DEVCG_DEFAULT_DENY = 2, +}; + +struct dev_exception_item { + u32 major; + u32 minor; + short int type; + short int access; + struct list_head list; + struct callback_head rcu; +}; + +struct dev_cgroup { + struct cgroup_subsys_state css; + struct list_head exceptions; + enum devcg_behavior behavior; +}; + +struct sockaddr_alg_new { + __u16 salg_family; + __u8 salg_type[14]; + __u32 salg_feat; + __u32 salg_mask; + __u8 salg_name[0]; +}; + +struct af_alg_iv { + __u32 ivlen; + __u8 iv[0]; +}; + +struct net_proto_family { + int family; + int (*create)(struct net *, struct socket *, int, int); + struct module *owner; +}; + +enum { + SOCK_WAKE_IO = 0, + SOCK_WAKE_WAITD = 1, + SOCK_WAKE_SPACE = 2, + SOCK_WAKE_URG = 3, +}; + +struct af_alg_control { + struct af_alg_iv *iv; + int op; + unsigned int aead_assoclen; +}; + +struct af_alg_tsgl { + struct list_head list; + unsigned int cur; + struct scatterlist sg[0]; +}; + +struct af_alg_rsgl { + struct af_alg_sgl sgl; + struct list_head list; + size_t sg_num_bytes; +}; + +struct af_alg_async_req { + struct kiocb *iocb; + struct sock *sk; + struct af_alg_rsgl first_rsgl; + struct af_alg_rsgl *last_rsgl; + struct list_head rsgl_list; + struct scatterlist *tsgl; + unsigned int tsgl_entries; + unsigned int outlen; + unsigned int areqlen; + union { + struct aead_request aead_req; + struct skcipher_request skcipher_req; + } cra_u; +}; + +struct af_alg_ctx { + struct list_head tsgl_list; + void *iv; + void *state; + size_t aead_assoclen; + struct crypto_wait wait; + size_t used; + atomic_t rcvused; + bool more: 1; + bool merge: 1; + bool enc: 1; + bool write: 1; + bool init: 1; + unsigned int len; + unsigned int inflight; +}; + +struct user_key_payload { + struct callback_head rcu; + short unsigned int datalen; + long: 0; + char data[0]; +}; + +enum tpm_duration { + TPM_SHORT = 0, + TPM_MEDIUM = 1, + TPM_LONG = 2, + TPM_LONG_LONG = 3, + TPM_UNDEFINED = 4, + TPM_NUM_DURATIONS = 4, +}; + +struct trusted_key_payload { + struct callback_head rcu; + unsigned int key_len; + unsigned int blob_len; + unsigned char migratable; + unsigned char old_format; + unsigned char key[129]; + unsigned char blob[512]; +}; + +struct encrypted_key_payload { + struct callback_head rcu; + char *format; + char *master_desc; + char *datalen; + u8 *iv; + u8 *encrypted_data; + short unsigned int datablob_len; + short unsigned int decrypted_datalen; + short unsigned int payload_datalen; + short unsigned int encrypted_key_format; + u8 *decrypted_data; + u8 payload_data[0]; +}; + +struct alg_type_list { + const struct af_alg_type *type; + struct list_head list; +}; + +struct blk_mq_ctxs; + +struct blk_mq_ctx { + struct { + spinlock_t lock; + struct list_head rq_lists[3]; + long: 64; + }; + unsigned int cpu; + short unsigned int index_hw[3]; + struct blk_mq_hw_ctx *hctxs[3]; + struct request_queue *queue; + struct blk_mq_ctxs *ctxs; + struct kobject kobj; + long: 64; +}; + +struct blk_mq_ctxs { + struct kobject kobj; + struct blk_mq_ctx *queue_ctx; +}; + +struct blk_mq_hw_ctx_sysfs_entry { + struct attribute attr; + ssize_t (*show)(struct blk_mq_hw_ctx *, char *); +}; + +struct klist_iter { + struct klist *i_klist; + struct klist_node *i_cur; +}; + +struct subsys_private; + +struct class_dev_iter { + struct klist_iter ki; + const struct device_type *type; + struct subsys_private *sp; +}; + +struct blkg_iostat { + u64 bytes[3]; + u64 ios[3]; +}; + +struct blkg_iostat_set { + struct u64_stats_sync sync; + struct blkcg_gq *blkg; + struct llist_node lnode; + int lqueued; + struct blkg_iostat cur; + struct blkg_iostat last; +}; + +struct blkcg; + +struct blkg_policy_data; + +struct blkcg_gq { + struct request_queue *q; + struct list_head q_node; + struct hlist_node blkcg_node; + struct blkcg *blkcg; + struct blkcg_gq *parent; + struct percpu_ref refcnt; + bool online; + struct blkg_iostat_set *iostat_cpu; + struct blkg_iostat_set iostat; + struct blkg_policy_data *pd[6]; + spinlock_t async_bio_lock; + struct bio_list async_bios; + union { + struct work_struct async_bio_work; + struct work_struct free_work; + }; + atomic_t use_delay; + atomic64_t delay_nsec; + atomic64_t delay_start; + u64 last_delay; + int last_use; + struct callback_head callback_head; +}; + +enum stat_group { + STAT_READ = 0, + STAT_WRITE = 1, + STAT_DISCARD = 2, + STAT_FLUSH = 3, + NR_STAT_GROUPS = 4, +}; + +enum blkg_iostat_type { + BLKG_IOSTAT_READ = 0, + BLKG_IOSTAT_WRITE = 1, + BLKG_IOSTAT_DISCARD = 2, + BLKG_IOSTAT_NR = 3, +}; + +struct blkcg_policy_data; + +struct blkcg { + struct cgroup_subsys_state css; + spinlock_t lock; + refcount_t online_pin; + atomic_t congestion_count; + struct xarray blkg_tree; + struct blkcg_gq *blkg_hint; + struct hlist_head blkg_list; + struct blkcg_policy_data *cpd[6]; + struct list_head all_blkcgs_node; + struct llist_head *lhead; + struct list_head cgwb_list; +}; + +struct blkg_policy_data { + struct blkcg_gq *blkg; + int plid; + bool online; +}; + +struct blkcg_policy_data { + struct blkcg *blkcg; + int plid; +}; + +typedef struct blkcg_policy_data *blkcg_pol_alloc_cpd_fn(gfp_t); + +typedef void blkcg_pol_free_cpd_fn(struct blkcg_policy_data *); + +typedef struct blkg_policy_data *blkcg_pol_alloc_pd_fn(struct gendisk *, struct blkcg *, gfp_t); + +typedef void blkcg_pol_init_pd_fn(struct blkg_policy_data *); + +typedef void blkcg_pol_online_pd_fn(struct blkg_policy_data *); + +typedef void blkcg_pol_offline_pd_fn(struct blkg_policy_data *); + +typedef void blkcg_pol_free_pd_fn(struct blkg_policy_data *); + +typedef void blkcg_pol_reset_pd_stats_fn(struct blkg_policy_data *); + +typedef void blkcg_pol_stat_pd_fn(struct blkg_policy_data *, struct seq_file *); + +struct blkcg_policy { + int plid; + struct cftype *dfl_cftypes; + struct cftype *legacy_cftypes; + blkcg_pol_alloc_cpd_fn *cpd_alloc_fn; + blkcg_pol_free_cpd_fn *cpd_free_fn; + blkcg_pol_alloc_pd_fn *pd_alloc_fn; + blkcg_pol_init_pd_fn *pd_init_fn; + blkcg_pol_online_pd_fn *pd_online_fn; + blkcg_pol_offline_pd_fn *pd_offline_fn; + blkcg_pol_free_pd_fn *pd_free_fn; + blkcg_pol_reset_pd_stats_fn *pd_reset_stats_fn; + blkcg_pol_stat_pd_fn *pd_stat_fn; +}; + +struct blkg_conf_ctx { + char *input; + char *body; + struct block_device *bdev; + struct blkcg_gq *blkg; +}; + +enum blkg_rwstat_type { + BLKG_RWSTAT_READ = 0, + BLKG_RWSTAT_WRITE = 1, + BLKG_RWSTAT_SYNC = 2, + BLKG_RWSTAT_ASYNC = 3, + BLKG_RWSTAT_DISCARD = 4, + BLKG_RWSTAT_NR = 5, + BLKG_RWSTAT_TOTAL = 5, +}; + +enum { + REQ_F_FIXED_FILE = 1ULL, + REQ_F_IO_DRAIN = 2ULL, + REQ_F_LINK = 4ULL, + REQ_F_HARDLINK = 8ULL, + REQ_F_FORCE_ASYNC = 16ULL, + REQ_F_BUFFER_SELECT = 32ULL, + REQ_F_CQE_SKIP = 64ULL, + REQ_F_FAIL = 256ULL, + REQ_F_INFLIGHT = 512ULL, + REQ_F_CUR_POS = 1024ULL, + REQ_F_NOWAIT = 2048ULL, + REQ_F_LINK_TIMEOUT = 4096ULL, + REQ_F_NEED_CLEANUP = 8192ULL, + REQ_F_POLLED = 16384ULL, + REQ_F_BUFFER_SELECTED = 32768ULL, + REQ_F_BUFFER_RING = 65536ULL, + REQ_F_REISSUE = 131072ULL, + REQ_F_SUPPORT_NOWAIT = 536870912ULL, + REQ_F_ISREG = 1073741824ULL, + REQ_F_CREDS = 262144ULL, + REQ_F_REFCOUNT = 524288ULL, + REQ_F_ARM_LTIMEOUT = 1048576ULL, + REQ_F_ASYNC_DATA = 2097152ULL, + REQ_F_SKIP_LINK_CQES = 4194304ULL, + REQ_F_SINGLE_POLL = 8388608ULL, + REQ_F_DOUBLE_POLL = 16777216ULL, + REQ_F_MULTISHOT = 33554432ULL, + REQ_F_APOLL_MULTISHOT = 67108864ULL, + REQ_F_CLEAR_POLLIN = 134217728ULL, + REQ_F_HASH_LOCKED = 268435456ULL, + REQ_F_POLL_NO_LAZY = 2147483648ULL, + REQ_F_CAN_POLL = 4294967296ULL, + REQ_F_BL_EMPTY = 8589934592ULL, + REQ_F_BL_NO_RECYCLE = 17179869184ULL, + REQ_F_BUFFERS_COMMIT = 34359738368ULL, +}; + +enum { + IOU_OK = 0, + IOU_ISSUE_SKIP_COMPLETE = -529, + IOU_REQUEUE = -3072, + IOU_STOP_MULTISHOT = -125, +}; + +struct io_ftrunc { + struct file *file; + loff_t len; +}; + +struct sg_append_table { + struct sg_table sgt; + struct scatterlist *prv; + unsigned int total_nents; +}; + +typedef struct scatterlist *sg_alloc_fn(unsigned int, gfp_t); + +typedef void sg_free_fn(struct scatterlist *, unsigned int); + +struct sg_page_iter { + struct scatterlist *sg; + unsigned int sg_pgoffset; + unsigned int __nents; + int __pg_advance; +}; + +struct sg_dma_page_iter { + struct sg_page_iter base; +}; + +struct sg_mapping_iter { + struct page *page; + void *addr; + size_t length; + size_t consumed; + struct sg_page_iter piter; + unsigned int __offset; + unsigned int __remaining; + unsigned int __flags; +}; + +struct internal_state { + int dummy; +}; + +typedef struct { + size_t bitContainer; + unsigned int bitsConsumed; + const char *ptr; + const char *start; + const char *limitPtr; +} BIT_DStream_t; + +typedef enum { + BIT_DStream_unfinished = 0, + BIT_DStream_endOfBuffer = 1, + BIT_DStream_completed = 2, + BIT_DStream_overflow = 3, +} BIT_DStream_status; + +typedef unsigned int FSE_DTable; + +typedef struct { + size_t state; + const void *table; +} FSE_DState_t; + +typedef struct { + U16 tableLog; + U16 fastMode; +} FSE_DTableHeader; + +typedef struct { + short unsigned int newState; + unsigned char symbol; + unsigned char nbBits; +} FSE_decode_t; + +typedef struct { + short int ncount[256]; + FSE_DTable dtable[0]; +} FSE_DecompressWksp; + +typedef unsigned char uint8_t___2; + +typedef signed char int8x16_t[16]; + +typedef unsigned char __Poly8_t; + +typedef __Poly8_t poly8x16_t[16]; + +typedef unsigned char uint8x16_t[16]; + +typedef uint8x16_t unative_t; + +struct ts_state { + unsigned int offset; + char cb[48]; +}; + +struct ts_config; + +struct ts_ops { + const char *name; + struct ts_config * (*init)(const void *, unsigned int, gfp_t, int); + unsigned int (*find)(struct ts_config *, struct ts_state *); + void (*destroy)(struct ts_config *); + void * (*get_pattern)(struct ts_config *); + unsigned int (*get_pattern_len)(struct ts_config *); + struct module *owner; + struct list_head list; +}; + +struct ts_config { + struct ts_ops *ops; + int flags; + unsigned int (*get_next_block)(unsigned int, const u8 **, struct ts_config *, struct ts_state *); + void (*finish)(struct ts_config *, struct ts_state *); +}; + +enum { + TS_FSM_SPECIFIC = 0, + TS_FSM_WILDCARD = 1, + TS_FSM_DIGIT = 2, + TS_FSM_XDIGIT = 3, + TS_FSM_PRINT = 4, + TS_FSM_ALPHA = 5, + TS_FSM_ALNUM = 6, + TS_FSM_ASCII = 7, + TS_FSM_CNTRL = 8, + TS_FSM_GRAPH = 9, + TS_FSM_LOWER = 10, + TS_FSM_UPPER = 11, + TS_FSM_PUNCT = 12, + TS_FSM_SPACE = 13, + __TS_FSM_TYPE_MAX = 14, +}; + +enum { + TS_FSM_SINGLE = 0, + TS_FSM_PERHAPS = 1, + TS_FSM_ANY = 2, + TS_FSM_MULTI = 3, + TS_FSM_HEAD_IGNORE = 4, + __TS_FSM_RECUR_MAX = 5, +}; + +struct ts_fsm_token { + __u16 type; + __u8 recur; + __u8 value; +}; + +struct ts_fsm { + unsigned int ntokens; + struct ts_fsm_token tokens[0]; +}; + +enum { + IRQ_TYPE_NONE = 0, + IRQ_TYPE_EDGE_RISING = 1, + IRQ_TYPE_EDGE_FALLING = 2, + IRQ_TYPE_EDGE_BOTH = 3, + IRQ_TYPE_LEVEL_HIGH = 4, + IRQ_TYPE_LEVEL_LOW = 8, + IRQ_TYPE_LEVEL_MASK = 12, + IRQ_TYPE_SENSE_MASK = 15, + IRQ_TYPE_DEFAULT = 15, + IRQ_TYPE_PROBE = 16, + IRQ_LEVEL = 256, + IRQ_PER_CPU = 512, + IRQ_NOPROBE = 1024, + IRQ_NOREQUEST = 2048, + IRQ_NOAUTOEN = 4096, + IRQ_NO_BALANCING = 8192, + IRQ_MOVE_PCNTXT = 16384, + IRQ_NESTED_THREAD = 32768, + IRQ_NOTHREAD = 65536, + IRQ_PER_CPU_DEVID = 131072, + IRQ_IS_POLLED = 262144, + IRQ_DISABLE_UNLAZY = 524288, + IRQ_HIDDEN = 1048576, + IRQ_NO_DEBUG = 2097152, +}; + +struct gic_quirk { + const char *desc; + const char *compatible; + const char *property; + bool (*init)(void *); + u32 iidr; + u32 mask; +}; + +struct irq_domain_chip_generic_info { + const char *name; + irq_flow_handler_t handler; + unsigned int irqs_per_chip; + unsigned int num_ct; + unsigned int irq_flags_to_clear; + unsigned int irq_flags_to_set; + enum irq_gc_flags gc_flags; + int (*init)(struct irq_chip_generic *); + void (*exit)(struct irq_chip_generic *); +}; + +struct irq_domain_info { + struct fwnode_handle *fwnode; + unsigned int domain_flags; + unsigned int size; + irq_hw_number_t hwirq_max; + int direct_max; + unsigned int hwirq_base; + unsigned int virq_base; + enum irq_domain_bus_token bus_token; + const char *name_suffix; + const struct irq_domain_ops *ops; + void *host_data; + struct irq_domain *parent; + struct irq_domain_chip_generic_info *dgc_info; + int (*init)(struct irq_domain *); + void (*exit)(struct irq_domain *); +}; + +struct partition_affinity { + cpumask_t mask; + void *partition_id; +}; + +struct partition_desc { + int nr_parts; + struct partition_affinity *parts; + struct irq_domain *domain; + struct irq_desc *chained_desc; + long unsigned int *bitmap; + struct irq_domain_ops ops; +}; + +struct pcie_device { + int irq; + struct pci_dev *port; + u32 service; + void *priv_data; + struct device device; +}; + +struct pcie_port_service_driver { + const char *name; + int (*probe)(struct pcie_device *); + void (*remove)(struct pcie_device *); + int (*suspend)(struct pcie_device *); + int (*resume_noirq)(struct pcie_device *); + int (*resume)(struct pcie_device *); + int (*runtime_suspend)(struct pcie_device *); + int (*runtime_resume)(struct pcie_device *); + int (*slot_reset)(struct pcie_device *); + int port_type; + u32 service; + struct device_driver driver; +}; + +struct pci_dynid { + struct list_head node; + struct pci_device_id id; +}; + +struct drv_dev_and_id { + struct pci_driver *drv; + struct pci_dev *dev; + const struct pci_device_id *id; +}; + +struct gpio_device; + +struct gpio_desc_label; + +struct gpio_desc { + struct gpio_device *gdev; + long unsigned int flags; + struct gpio_desc_label *label; + const char *name; + struct device_node *hog; +}; + +enum gpiod_flags { + GPIOD_ASIS = 0, + GPIOD_IN = 1, + GPIOD_OUT_LOW = 3, + GPIOD_OUT_HIGH = 7, + GPIOD_OUT_LOW_OPEN_DRAIN = 11, + GPIOD_OUT_HIGH_OPEN_DRAIN = 15, +}; + +struct clk_gpio { + struct clk_hw hw; + struct gpio_desc *gpiod; +}; + +struct virtio_admin_cmd { + __le16 opcode; + __le16 group_type; + __le64 group_member_id; + struct scatterlist *data_sg; + struct scatterlist *result_sg; + struct completion completion; + int ret; +}; + +struct virtio_pci_common_cfg { + __le32 device_feature_select; + __le32 device_feature; + __le32 guest_feature_select; + __le32 guest_feature; + __le16 msix_config; + __le16 num_queues; + __u8 device_status; + __u8 config_generation; + __le16 queue_select; + __le16 queue_size; + __le16 queue_msix_vector; + __le16 queue_enable; + __le16 queue_notify_off; + __le32 queue_desc_lo; + __le32 queue_desc_hi; + __le32 queue_avail_lo; + __le32 queue_avail_hi; + __le32 queue_used_lo; + __le32 queue_used_hi; +}; + +struct virtio_pci_modern_common_cfg { + struct virtio_pci_common_cfg cfg; + __le16 queue_notify_data; + __le16 queue_reset; + __le16 admin_queue_index; + __le16 admin_queue_num; +}; + +struct virtio_admin_cmd_hdr { + __le16 opcode; + __le16 group_type; + __u8 reserved1[12]; + __le64 group_member_id; +}; + +struct virtio_admin_cmd_status { + __le16 status; + __le16 status_qualifier; + __u8 reserved2[4]; +}; + +struct virtio_pci_legacy_device { + struct pci_dev *pci_dev; + u8 *isr; + void *ioaddr; + struct virtio_device_id id; +}; + +struct virtio_pci_modern_device { + struct pci_dev *pci_dev; + struct virtio_pci_common_cfg *common; + void *device; + void *notify_base; + resource_size_t notify_pa; + u8 *isr; + size_t notify_len; + size_t device_len; + size_t common_len; + int notify_map_cap; + u32 notify_offset_multiplier; + int modern_bars; + struct virtio_device_id id; + int (*device_id_check)(struct pci_dev *); + u64 dma_mask; +}; + +struct virtio_pci_vq_info { + struct virtqueue *vq; + struct list_head node; + unsigned int msix_vector; +}; + +struct virtio_pci_admin_vq { + struct virtio_pci_vq_info *info; + spinlock_t lock; + u64 supported_cmds; + char name[10]; + u16 vq_index; +}; + +struct virtio_pci_device { + struct virtio_device vdev; + struct pci_dev *pci_dev; + union { + struct virtio_pci_legacy_device ldev; + struct virtio_pci_modern_device mdev; + }; + bool is_legacy; + u8 *isr; + spinlock_t lock; + struct list_head virtqueues; + struct list_head slow_virtqueues; + struct virtio_pci_vq_info **vqs; + struct virtio_pci_admin_vq admin_vq; + int msix_enabled; + int intx_enabled; + cpumask_var_t *msix_affinity_masks; + char (*msix_names)[256]; + unsigned int msix_vectors; + unsigned int msix_used_vectors; + bool per_vq_vectors; + struct virtqueue * (*setup_vq)(struct virtio_pci_device *, struct virtio_pci_vq_info *, unsigned int, void (*)(struct virtqueue *), const char *, bool, u16); + void (*del_vq)(struct virtio_pci_vq_info *); + u16 (*config_vector)(struct virtio_pci_device *, u16); + int (*avq_index)(struct virtio_device *, u16 *, u16 *); +}; + +struct tty_audit_buf { + struct mutex mutex; + dev_t dev; + bool icanon; + size_t valid; + u8 *data; +}; + +struct mctrl_gpios; + +struct uart_8250_dma; + +struct uart_8250_ops; + +struct uart_8250_em485; + +struct uart_8250_port { + struct uart_port port; + struct timer_list timer; + struct list_head list; + u32 capabilities; + u16 bugs; + unsigned int tx_loadsz; + unsigned char acr; + unsigned char fcr; + unsigned char ier; + unsigned char lcr; + unsigned char mcr; + unsigned char cur_iotype; + unsigned int rpm_tx_active; + unsigned char canary; + unsigned char probe; + struct mctrl_gpios *gpios; + u16 lsr_saved_flags; + u16 lsr_save_mask; + unsigned char msr_saved_flags; + struct uart_8250_dma *dma; + const struct uart_8250_ops *ops; + u32 (*dl_read)(struct uart_8250_port *); + void (*dl_write)(struct uart_8250_port *, u32); + struct uart_8250_em485 *em485; + void (*rs485_start_tx)(struct uart_8250_port *); + void (*rs485_stop_tx)(struct uart_8250_port *); + struct delayed_work overrun_backoff; + u32 overrun_backoff_time_ms; +}; + +struct uart_8250_ops { + int (*setup_irq)(struct uart_8250_port *); + void (*release_irq)(struct uart_8250_port *); + void (*setup_timer)(struct uart_8250_port *); +}; + +struct uart_8250_em485 { + struct hrtimer start_tx_timer; + struct hrtimer stop_tx_timer; + struct hrtimer *active_timer; + struct uart_8250_port *port; + unsigned int tx_stopped: 1; +}; + +struct dma_chan; + +typedef bool (*dma_filter_fn)(struct dma_chan *, void *); + +enum dma_transfer_direction { + DMA_MEM_TO_MEM = 0, + DMA_MEM_TO_DEV = 1, + DMA_DEV_TO_MEM = 2, + DMA_DEV_TO_DEV = 3, + DMA_TRANS_NONE = 4, +}; + +enum dma_slave_buswidth { + DMA_SLAVE_BUSWIDTH_UNDEFINED = 0, + DMA_SLAVE_BUSWIDTH_1_BYTE = 1, + DMA_SLAVE_BUSWIDTH_2_BYTES = 2, + DMA_SLAVE_BUSWIDTH_3_BYTES = 3, + DMA_SLAVE_BUSWIDTH_4_BYTES = 4, + DMA_SLAVE_BUSWIDTH_8_BYTES = 8, + DMA_SLAVE_BUSWIDTH_16_BYTES = 16, + DMA_SLAVE_BUSWIDTH_32_BYTES = 32, + DMA_SLAVE_BUSWIDTH_64_BYTES = 64, + DMA_SLAVE_BUSWIDTH_128_BYTES = 128, +}; + +struct dma_slave_config { + enum dma_transfer_direction direction; + phys_addr_t src_addr; + phys_addr_t dst_addr; + enum dma_slave_buswidth src_addr_width; + enum dma_slave_buswidth dst_addr_width; + u32 src_maxburst; + u32 dst_maxburst; + u32 src_port_window_size; + u32 dst_port_window_size; + bool device_fc; + void *peripheral_config; + size_t peripheral_size; +}; + +typedef s32 dma_cookie_t; + +struct uart_8250_dma { + int (*tx_dma)(struct uart_8250_port *); + int (*rx_dma)(struct uart_8250_port *); + void (*prepare_tx_dma)(struct uart_8250_port *); + void (*prepare_rx_dma)(struct uart_8250_port *); + dma_filter_fn fn; + void *rx_param; + void *tx_param; + struct dma_slave_config rxconf; + struct dma_slave_config txconf; + struct dma_chan *rxchan; + struct dma_chan *txchan; + phys_addr_t rx_dma_addr; + phys_addr_t tx_dma_addr; + dma_addr_t rx_addr; + dma_addr_t tx_addr; + dma_cookie_t rx_cookie; + dma_cookie_t tx_cookie; + void *rx_buf; + size_t rx_size; + size_t tx_size; + unsigned char tx_running; + unsigned char tx_err; + unsigned char rx_running; +}; + +enum dma_status { + DMA_COMPLETE = 0, + DMA_IN_PROGRESS = 1, + DMA_PAUSED = 2, + DMA_ERROR = 3, + DMA_OUT_OF_ORDER = 4, +}; + +enum dma_transaction_type { + DMA_MEMCPY = 0, + DMA_XOR = 1, + DMA_PQ = 2, + DMA_XOR_VAL = 3, + DMA_PQ_VAL = 4, + DMA_MEMSET = 5, + DMA_MEMSET_SG = 6, + DMA_INTERRUPT = 7, + DMA_PRIVATE = 8, + DMA_ASYNC_TX = 9, + DMA_SLAVE = 10, + DMA_CYCLIC = 11, + DMA_INTERLEAVE = 12, + DMA_COMPLETION_NO_ORDER = 13, + DMA_REPEAT = 14, + DMA_LOAD_EOT = 15, + DMA_TX_TYPE_END = 16, +}; + +struct data_chunk { + size_t size; + size_t icg; + size_t dst_icg; + size_t src_icg; +}; + +struct dma_interleaved_template { + dma_addr_t src_start; + dma_addr_t dst_start; + enum dma_transfer_direction dir; + bool src_inc; + bool dst_inc; + bool src_sgl; + bool dst_sgl; + size_t numf; + size_t frame_size; + struct data_chunk sgl[0]; +}; + +struct dma_vec { + dma_addr_t addr; + size_t len; +}; + +enum dma_ctrl_flags { + DMA_PREP_INTERRUPT = 1, + DMA_CTRL_ACK = 2, + DMA_PREP_PQ_DISABLE_P = 4, + DMA_PREP_PQ_DISABLE_Q = 8, + DMA_PREP_CONTINUE = 16, + DMA_PREP_FENCE = 32, + DMA_CTRL_REUSE = 64, + DMA_PREP_CMD = 128, + DMA_PREP_REPEAT = 256, + DMA_PREP_LOAD_EOT = 512, +}; + +enum sum_check_bits { + SUM_CHECK_P = 0, + SUM_CHECK_Q = 1, +}; + +enum sum_check_flags { + SUM_CHECK_P_RESULT = 1, + SUM_CHECK_Q_RESULT = 2, +}; + +typedef struct { + long unsigned int bits[1]; +} dma_cap_mask_t; + +enum dma_desc_metadata_mode { + DESC_METADATA_NONE = 0, + DESC_METADATA_CLIENT = 1, + DESC_METADATA_ENGINE = 2, +}; + +struct dma_chan_percpu { + long unsigned int memcpy_count; + long unsigned int bytes_transferred; +}; + +struct dma_router { + struct device *dev; + void (*route_free)(struct device *, void *); +}; + +struct dma_device; + +struct dma_chan_dev; + +struct dma_chan { + struct dma_device *device; + struct device *slave; + dma_cookie_t cookie; + dma_cookie_t completed_cookie; + int chan_id; + struct dma_chan_dev *dev; + const char *name; + char *dbg_client_name; + struct list_head device_node; + struct dma_chan_percpu *local; + int client_count; + int table_count; + struct dma_router *router; + void *route_data; + void *private; +}; + +struct dma_slave_map; + +struct dma_filter { + dma_filter_fn fn; + int mapcnt; + const struct dma_slave_map *map; +}; + +enum dmaengine_alignment { + DMAENGINE_ALIGN_1_BYTE = 0, + DMAENGINE_ALIGN_2_BYTES = 1, + DMAENGINE_ALIGN_4_BYTES = 2, + DMAENGINE_ALIGN_8_BYTES = 3, + DMAENGINE_ALIGN_16_BYTES = 4, + DMAENGINE_ALIGN_32_BYTES = 5, + DMAENGINE_ALIGN_64_BYTES = 6, + DMAENGINE_ALIGN_128_BYTES = 7, + DMAENGINE_ALIGN_256_BYTES = 8, +}; + +enum dma_residue_granularity { + DMA_RESIDUE_GRANULARITY_DESCRIPTOR = 0, + DMA_RESIDUE_GRANULARITY_SEGMENT = 1, + DMA_RESIDUE_GRANULARITY_BURST = 2, +}; + +struct dma_async_tx_descriptor; + +struct dma_slave_caps; + +struct dma_tx_state; + +struct dma_device { + struct kref ref; + unsigned int chancnt; + unsigned int privatecnt; + struct list_head channels; + struct list_head global_node; + struct dma_filter filter; + dma_cap_mask_t cap_mask; + enum dma_desc_metadata_mode desc_metadata_modes; + short unsigned int max_xor; + short unsigned int max_pq; + enum dmaengine_alignment copy_align; + enum dmaengine_alignment xor_align; + enum dmaengine_alignment pq_align; + enum dmaengine_alignment fill_align; + int dev_id; + struct device *dev; + struct module *owner; + struct ida chan_ida; + u32 src_addr_widths; + u32 dst_addr_widths; + u32 directions; + u32 min_burst; + u32 max_burst; + u32 max_sg_burst; + bool descriptor_reuse; + enum dma_residue_granularity residue_granularity; + int (*device_alloc_chan_resources)(struct dma_chan *); + int (*device_router_config)(struct dma_chan *); + void (*device_free_chan_resources)(struct dma_chan *); + struct dma_async_tx_descriptor * (*device_prep_dma_memcpy)(struct dma_chan *, dma_addr_t, dma_addr_t, size_t, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_dma_xor)(struct dma_chan *, dma_addr_t, dma_addr_t *, unsigned int, size_t, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_dma_xor_val)(struct dma_chan *, dma_addr_t *, unsigned int, size_t, enum sum_check_flags *, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_dma_pq)(struct dma_chan *, dma_addr_t *, dma_addr_t *, unsigned int, const unsigned char *, size_t, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_dma_pq_val)(struct dma_chan *, dma_addr_t *, dma_addr_t *, unsigned int, const unsigned char *, size_t, enum sum_check_flags *, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_dma_memset)(struct dma_chan *, dma_addr_t, int, size_t, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_dma_memset_sg)(struct dma_chan *, struct scatterlist *, unsigned int, int, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_dma_interrupt)(struct dma_chan *, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_peripheral_dma_vec)(struct dma_chan *, const struct dma_vec *, size_t, enum dma_transfer_direction, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_slave_sg)(struct dma_chan *, struct scatterlist *, unsigned int, enum dma_transfer_direction, long unsigned int, void *); + struct dma_async_tx_descriptor * (*device_prep_dma_cyclic)(struct dma_chan *, dma_addr_t, size_t, size_t, enum dma_transfer_direction, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_interleaved_dma)(struct dma_chan *, struct dma_interleaved_template *, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_dma_imm_data)(struct dma_chan *, dma_addr_t, u64, long unsigned int); + void (*device_caps)(struct dma_chan *, struct dma_slave_caps *); + int (*device_config)(struct dma_chan *, struct dma_slave_config *); + int (*device_pause)(struct dma_chan *); + int (*device_resume)(struct dma_chan *); + int (*device_terminate_all)(struct dma_chan *); + void (*device_synchronize)(struct dma_chan *); + enum dma_status (*device_tx_status)(struct dma_chan *, dma_cookie_t, struct dma_tx_state *); + void (*device_issue_pending)(struct dma_chan *); + void (*device_release)(struct dma_device *); + void (*dbg_summary_show)(struct seq_file *, struct dma_device *); + struct dentry *dbg_dev_root; +}; + +struct dma_chan_dev { + struct dma_chan *chan; + struct device device; + int dev_id; + bool chan_dma_dev; +}; + +struct dma_slave_caps { + u32 src_addr_widths; + u32 dst_addr_widths; + u32 directions; + u32 min_burst; + u32 max_burst; + u32 max_sg_burst; + bool cmd_pause; + bool cmd_resume; + bool cmd_terminate; + enum dma_residue_granularity residue_granularity; + bool descriptor_reuse; +}; + +typedef void (*dma_async_tx_callback)(void *); + +enum dmaengine_tx_result { + DMA_TRANS_NOERROR = 0, + DMA_TRANS_READ_FAILED = 1, + DMA_TRANS_WRITE_FAILED = 2, + DMA_TRANS_ABORTED = 3, +}; + +struct dmaengine_result { + enum dmaengine_tx_result result; + u32 residue; +}; + +typedef void (*dma_async_tx_callback_result)(void *, const struct dmaengine_result *); + +struct dmaengine_unmap_data { + u8 map_cnt; + u8 to_cnt; + u8 from_cnt; + u8 bidi_cnt; + struct device *dev; + struct kref kref; + size_t len; + dma_addr_t addr[0]; +}; + +struct dma_descriptor_metadata_ops { + int (*attach)(struct dma_async_tx_descriptor *, void *, size_t); + void * (*get_ptr)(struct dma_async_tx_descriptor *, size_t *, size_t *); + int (*set_len)(struct dma_async_tx_descriptor *, size_t); +}; + +struct dma_async_tx_descriptor { + dma_cookie_t cookie; + enum dma_ctrl_flags flags; + dma_addr_t phys; + struct dma_chan *chan; + dma_cookie_t (*tx_submit)(struct dma_async_tx_descriptor *); + int (*desc_free)(struct dma_async_tx_descriptor *); + dma_async_tx_callback callback; + dma_async_tx_callback_result callback_result; + void *callback_param; + struct dmaengine_unmap_data *unmap; + enum dma_desc_metadata_mode desc_metadata_mode; + struct dma_descriptor_metadata_ops *metadata_ops; +}; + +struct dma_tx_state { + dma_cookie_t last; + dma_cookie_t used; + u32 residue; + u32 in_flight_bytes; +}; + +struct dma_slave_map { + const char *devname; + const char *slave; + void *param; +}; + +struct iosys_map { + union { + void *vaddr_iomem; + void *vaddr; + }; + bool is_iomem; +}; + +struct drm_vma_offset_manager { + rwlock_t vm_lock; + struct drm_mm vm_addr_space_mm; +}; + +struct dma_fence_ops; + +struct dma_fence { + spinlock_t *lock; + const struct dma_fence_ops *ops; + union { + struct list_head cb_list; + ktime_t timestamp; + struct callback_head rcu; + }; + u64 context; + u64 seqno; + long unsigned int flags; + struct kref refcount; + int error; +}; + +struct drm_client_buffer { + struct drm_client_dev *client; + u32 pitch; + struct drm_gem_object *gem; + struct iosys_map map; + struct drm_framebuffer *fb; +}; + +struct drm_vma_offset_node { + rwlock_t vm_lock; + struct drm_mm_node vm_node; + struct rb_root vm_files; + void *driver_private; +}; + +struct dma_resv_list; + +struct dma_resv { + struct ww_mutex lock; + struct dma_resv_list *fences; +}; + +struct drm_gem_object_funcs; + +struct drm_gem_lru; + +struct drm_gem_object { + struct kref refcount; + unsigned int handle_count; + struct drm_device *dev; + struct file *filp; + struct drm_vma_offset_node vma_node; + size_t size; + int name; + struct dma_buf *dma_buf; + struct dma_buf_attachment *import_attach; + struct dma_resv *resv; + struct dma_resv _resv; + struct { + struct list_head list; + } gpuva; + const struct drm_gem_object_funcs *funcs; + struct list_head lru_node; + struct drm_gem_lru *lru; +}; + +struct dma_fence_ops { + bool use_64bit_seqno; + const char * (*get_driver_name)(struct dma_fence *); + const char * (*get_timeline_name)(struct dma_fence *); + bool (*enable_signaling)(struct dma_fence *); + bool (*signaled)(struct dma_fence *); + long int (*wait)(struct dma_fence *, bool, long int); + void (*release)(struct dma_fence *); + void (*fence_value_str)(struct dma_fence *, char *, int); + void (*timeline_value_str)(struct dma_fence *, char *, int); + void (*set_deadline)(struct dma_fence *, ktime_t); +}; + +struct dma_fence_cb; + +typedef void (*dma_fence_func_t)(struct dma_fence *, struct dma_fence_cb *); + +struct dma_fence_cb { + struct list_head node; + dma_fence_func_t func; +}; + +struct dma_buf_ops { + bool cache_sgt_mapping; + int (*attach)(struct dma_buf *, struct dma_buf_attachment *); + void (*detach)(struct dma_buf *, struct dma_buf_attachment *); + int (*pin)(struct dma_buf_attachment *); + void (*unpin)(struct dma_buf_attachment *); + struct sg_table * (*map_dma_buf)(struct dma_buf_attachment *, enum dma_data_direction); + void (*unmap_dma_buf)(struct dma_buf_attachment *, struct sg_table *, enum dma_data_direction); + void (*release)(struct dma_buf *); + int (*begin_cpu_access)(struct dma_buf *, enum dma_data_direction); + int (*end_cpu_access)(struct dma_buf *, enum dma_data_direction); + int (*mmap)(struct dma_buf *, struct vm_area_struct *); + int (*vmap)(struct dma_buf *, struct iosys_map *); + void (*vunmap)(struct dma_buf *, struct iosys_map *); +}; + +struct dma_buf_poll_cb_t { + struct dma_fence_cb cb; + wait_queue_head_t *poll; + __poll_t active; +}; + +struct dma_buf { + size_t size; + struct file *file; + struct list_head attachments; + const struct dma_buf_ops *ops; + unsigned int vmapping_counter; + struct iosys_map vmap_ptr; + const char *exp_name; + const char *name; + spinlock_t name_lock; + struct module *owner; + struct list_head list_node; + void *priv; + struct dma_resv *resv; + wait_queue_head_t poll; + struct dma_buf_poll_cb_t cb_in; + struct dma_buf_poll_cb_t cb_out; +}; + +struct dma_buf_attach_ops; + +struct dma_buf_attachment { + struct dma_buf *dmabuf; + struct device *dev; + struct list_head node; + struct sg_table *sgt; + enum dma_data_direction dir; + bool peer2peer; + const struct dma_buf_attach_ops *importer_ops; + void *importer_priv; + void *priv; +}; + +struct dma_buf_attach_ops { + bool allow_peer2peer; + void (*move_notify)(struct dma_buf_attachment *); +}; + +enum drm_gem_object_status { + DRM_GEM_OBJECT_RESIDENT = 1, + DRM_GEM_OBJECT_PURGEABLE = 2, +}; + +struct drm_gem_object_funcs { + void (*free)(struct drm_gem_object *); + int (*open)(struct drm_gem_object *, struct drm_file *); + void (*close)(struct drm_gem_object *, struct drm_file *); + void (*print_info)(struct drm_printer *, unsigned int, const struct drm_gem_object *); + struct dma_buf * (*export)(struct drm_gem_object *, int); + int (*pin)(struct drm_gem_object *); + void (*unpin)(struct drm_gem_object *); + struct sg_table * (*get_sg_table)(struct drm_gem_object *); + int (*vmap)(struct drm_gem_object *, struct iosys_map *); + void (*vunmap)(struct drm_gem_object *, struct iosys_map *); + int (*mmap)(struct drm_gem_object *, struct vm_area_struct *); + int (*evict)(struct drm_gem_object *); + enum drm_gem_object_status (*status)(struct drm_gem_object *); + size_t (*rss)(struct drm_gem_object *); + const struct vm_operations_struct *vm_ops; +}; + +struct drm_gem_lru { + struct mutex *lock; + long int count; + struct list_head list; +}; + +struct drm_debugfs_info { + const char *name; + int (*show)(struct seq_file *, void *); + u32 driver_features; + void *data; +}; + +struct drm_debugfs_entry { + struct drm_device *dev; + struct drm_debugfs_info file; + struct list_head list; +}; + +struct rt_mutex_base { + raw_spinlock_t wait_lock; + struct rb_root_cached waiters; + struct task_struct *owner; +}; + +struct rt_mutex { + struct rt_mutex_base rtmutex; +}; + +struct i2c_msg { + __u16 addr; + __u16 flags; + __u16 len; + __u8 *buf; +}; + +union i2c_smbus_data { + __u8 byte; + __u16 word; + __u8 block[34]; +}; + +struct i2c_algorithm; + +struct i2c_lock_operations; + +struct i2c_bus_recovery_info; + +struct i2c_adapter_quirks; + +struct i2c_adapter { + struct module *owner; + unsigned int class; + const struct i2c_algorithm *algo; + void *algo_data; + const struct i2c_lock_operations *lock_ops; + struct rt_mutex bus_lock; + struct rt_mutex mux_lock; + int timeout; + int retries; + struct device dev; + long unsigned int locked_flags; + int nr; + char name[48]; + struct completion dev_released; + struct mutex userspace_clients_lock; + struct list_head userspace_clients; + struct i2c_bus_recovery_info *bus_recovery_info; + const struct i2c_adapter_quirks *quirks; + struct irq_domain *host_notify_domain; + struct regulator *bus_regulator; + struct dentry *debugfs; + long unsigned int addrs_in_instantiation[2]; +}; + +struct i2c_algorithm { + union { + int (*xfer)(struct i2c_adapter *, struct i2c_msg *, int); + int (*master_xfer)(struct i2c_adapter *, struct i2c_msg *, int); + }; + union { + int (*xfer_atomic)(struct i2c_adapter *, struct i2c_msg *, int); + int (*master_xfer_atomic)(struct i2c_adapter *, struct i2c_msg *, int); + }; + int (*smbus_xfer)(struct i2c_adapter *, u16, short unsigned int, char, u8, int, union i2c_smbus_data *); + int (*smbus_xfer_atomic)(struct i2c_adapter *, u16, short unsigned int, char, u8, int, union i2c_smbus_data *); + u32 (*functionality)(struct i2c_adapter *); +}; + +struct i2c_lock_operations { + void (*lock_bus)(struct i2c_adapter *, unsigned int); + int (*trylock_bus)(struct i2c_adapter *, unsigned int); + void (*unlock_bus)(struct i2c_adapter *, unsigned int); +}; + +struct pinctrl; + +struct pinctrl_state; + +struct i2c_bus_recovery_info { + int (*recover_bus)(struct i2c_adapter *); + int (*get_scl)(struct i2c_adapter *); + void (*set_scl)(struct i2c_adapter *, int); + int (*get_sda)(struct i2c_adapter *); + void (*set_sda)(struct i2c_adapter *, int); + int (*get_bus_free)(struct i2c_adapter *); + void (*prepare_recovery)(struct i2c_adapter *); + void (*unprepare_recovery)(struct i2c_adapter *); + struct gpio_desc *scl_gpiod; + struct gpio_desc *sda_gpiod; + struct pinctrl *pinctrl; + struct pinctrl_state *pins_default; + struct pinctrl_state *pins_gpio; +}; + +struct i2c_adapter_quirks { + u64 flags; + int max_num_msgs; + u16 max_write_len; + u16 max_read_len; + u16 max_comb_1st_msg_len; + u16 max_comb_2nd_msg_len; +}; + +enum vesa_blank_mode { + VESA_NO_BLANKING = 0, + VESA_VSYNC_SUSPEND = 1, + VESA_HSYNC_SUSPEND = 2, + VESA_POWERDOWN = 3, + VESA_BLANK_MAX = 3, +}; + +struct drm_mode_modeinfo { + __u32 clock; + __u16 hdisplay; + __u16 hsync_start; + __u16 hsync_end; + __u16 htotal; + __u16 hskew; + __u16 vdisplay; + __u16 vsync_start; + __u16 vsync_end; + __u16 vtotal; + __u16 vscan; + __u32 vrefresh; + __u32 flags; + __u32 type; + char name[32]; +}; + +enum drm_mode_analog { + DRM_MODE_ANALOG_NTSC = 0, + DRM_MODE_ANALOG_PAL = 1, +}; + +struct analog_param_field { + unsigned int even; + unsigned int odd; +}; + +struct analog_param_range { + unsigned int min; + unsigned int typ; + unsigned int max; +}; + +struct analog_parameters { + unsigned int num_lines; + unsigned int line_duration_ns; + struct analog_param_range hact_ns; + struct analog_param_range hfp_ns; + struct analog_param_range hslen_ns; + struct analog_param_range hbp_ns; + struct analog_param_range hblk_ns; + unsigned int bt601_hfp; + struct analog_param_field vfp_lines; + struct analog_param_field vslen_lines; + struct analog_param_field vbp_lines; +}; + +struct drm_named_mode { + const char *name; + unsigned int pixel_clock_khz; + unsigned int xres; + unsigned int yres; + unsigned int flags; + unsigned int tv_mode; +}; + +struct drm_writeback_job { + struct drm_writeback_connector *connector; + bool prepared; + struct work_struct cleanup_work; + struct list_head list_entry; + struct drm_framebuffer *fb; + struct dma_fence *out_fence; + void *priv; +}; + +struct drm_writeback_connector { + struct drm_connector base; + struct drm_encoder encoder; + struct drm_property_blob *pixel_formats_blob_ptr; + spinlock_t job_lock; + struct list_head job_queue; + unsigned int fence_context; + spinlock_t fence_lock; + long unsigned int fence_seqno; + char timeline_name[32]; +}; + +struct drm_info_list { + const char *name; + int (*show)(struct seq_file *, void *); + u32 driver_features; + void *data; +}; + +struct drm_info_node { + struct drm_minor *minor; + const struct drm_info_list *info_ent; + struct list_head list; + struct dentry *dent; +}; + +struct virtio_gpu_ctrl_hdr { + __le32 type; + __le32 flags; + __le64 fence_id; + __le32 ctx_id; + __u8 ring_idx; + __u8 padding[3]; +}; + +struct virtio_gpu_cursor_pos { + __le32 scanout_id; + __le32 x; + __le32 y; + __le32 padding; +}; + +struct virtio_gpu_update_cursor { + struct virtio_gpu_ctrl_hdr hdr; + struct virtio_gpu_cursor_pos pos; + __le32 resource_id; + __le32 hot_x; + __le32 hot_y; + __le32 padding; +}; + +struct virtio_gpu_rect { + __le32 x; + __le32 y; + __le32 width; + __le32 height; +}; + +struct virtio_gpu_display_one { + struct virtio_gpu_rect r; + __le32 enabled; + __le32 flags; +}; + +struct virtio_gpu_output { + int index; + struct drm_crtc crtc; + struct drm_connector conn; + struct drm_encoder enc; + struct virtio_gpu_display_one info; + struct virtio_gpu_update_cursor cursor; + const struct drm_edid *drm_edid; + int cur_x; + int cur_y; + bool needs_modeset; +}; + +struct virtio_gpu_queue { + struct virtqueue *vq; + spinlock_t qlock; + wait_queue_head_t ack_queue; + struct work_struct dequeue_work; + uint32_t seqno; +}; + +struct virtio_gpu_fence_driver { + atomic64_t last_fence_id; + uint64_t current_fence_id; + uint64_t context; + struct list_head fences; + spinlock_t lock; +}; + +struct virtio_gpu_drv_capset; + +struct virtio_gpu_device { + struct drm_device *ddev; + struct virtio_device *vdev; + struct virtio_gpu_output outputs[16]; + uint32_t num_scanouts; + struct virtio_gpu_queue ctrlq; + struct virtio_gpu_queue cursorq; + struct kmem_cache *vbufs; + atomic_t pending_commands; + struct ida resource_ida; + wait_queue_head_t resp_wq; + spinlock_t display_info_lock; + bool display_info_pending; + struct virtio_gpu_fence_driver fence_drv; + struct ida ctx_id_ida; + bool has_virgl_3d; + bool has_edid; + bool has_indirect; + bool has_resource_assign_uuid; + bool has_resource_blob; + bool has_host_visible; + bool has_context_init; + struct virtio_shm_region host_visible_region; + struct drm_mm host_visible_mm; + struct work_struct config_changed_work; + struct work_struct obj_free_work; + spinlock_t obj_free_lock; + struct list_head obj_free_list; + struct virtio_gpu_drv_capset *capsets; + uint32_t num_capsets; + uint64_t capset_id_mask; + struct list_head cap_cache; + spinlock_t resource_export_lock; + spinlock_t host_visible_lock; +}; + +struct virtio_gpu_drv_capset { + uint32_t id; + uint32_t max_version; + uint32_t max_size; +}; + +enum regcache_type { + REGCACHE_NONE = 0, + REGCACHE_RBTREE = 1, + REGCACHE_FLAT = 2, + REGCACHE_MAPLE = 3, +}; + +struct reg_default { + unsigned int reg; + unsigned int def; +}; + +struct reg_sequence { + unsigned int reg; + unsigned int def; + unsigned int delay_us; +}; + +enum regmap_endian { + REGMAP_ENDIAN_DEFAULT = 0, + REGMAP_ENDIAN_BIG = 1, + REGMAP_ENDIAN_LITTLE = 2, + REGMAP_ENDIAN_NATIVE = 3, +}; + +struct regmap_range { + unsigned int range_min; + unsigned int range_max; +}; + +struct regmap_access_table { + const struct regmap_range *yes_ranges; + unsigned int n_yes_ranges; + const struct regmap_range *no_ranges; + unsigned int n_no_ranges; +}; + +typedef void (*regmap_lock)(void *); + +typedef void (*regmap_unlock)(void *); + +typedef int (*regmap_hw_write)(void *, const void *, size_t); + +typedef int (*regmap_hw_gather_write)(void *, const void *, size_t, const void *, size_t); + +struct regmap_async; + +typedef int (*regmap_hw_async_write)(void *, const void *, size_t, const void *, size_t, struct regmap_async *); + +struct regmap; + +struct regmap_async { + struct list_head list; + struct regmap *map; + void *work_buf; +}; + +typedef int (*regmap_hw_read)(void *, const void *, size_t, void *, size_t); + +typedef int (*regmap_hw_reg_read)(void *, unsigned int, unsigned int *); + +typedef int (*regmap_hw_reg_noinc_read)(void *, unsigned int, void *, size_t); + +typedef int (*regmap_hw_reg_write)(void *, unsigned int, unsigned int); + +typedef int (*regmap_hw_reg_noinc_write)(void *, unsigned int, const void *, size_t); + +typedef int (*regmap_hw_reg_update_bits)(void *, unsigned int, unsigned int, unsigned int); + +typedef struct regmap_async * (*regmap_hw_async_alloc)(void); + +typedef void (*regmap_hw_free_context)(void *); + +struct regmap_bus { + bool fast_io; + bool free_on_exit; + regmap_hw_write write; + regmap_hw_gather_write gather_write; + regmap_hw_async_write async_write; + regmap_hw_reg_write reg_write; + regmap_hw_reg_noinc_write reg_noinc_write; + regmap_hw_reg_update_bits reg_update_bits; + regmap_hw_read read; + regmap_hw_reg_read reg_read; + regmap_hw_reg_noinc_read reg_noinc_read; + regmap_hw_free_context free_context; + regmap_hw_async_alloc async_alloc; + u8 read_flag_mask; + enum regmap_endian reg_format_endian_default; + enum regmap_endian val_format_endian_default; + size_t max_raw_read; + size_t max_raw_write; +}; + +struct regmap_format { + size_t buf_size; + size_t reg_bytes; + size_t pad_bytes; + size_t val_bytes; + s8 reg_shift; + void (*format_write)(struct regmap *, unsigned int, unsigned int); + void (*format_reg)(void *, unsigned int, unsigned int); + void (*format_val)(void *, unsigned int, unsigned int); + unsigned int (*parse_val)(const void *); + void (*parse_inplace)(void *); +}; + +struct hwspinlock; + +struct regcache_ops; + +struct regmap { + union { + struct mutex mutex; + struct { + spinlock_t spinlock; + long unsigned int spinlock_flags; + }; + struct { + raw_spinlock_t raw_spinlock; + long unsigned int raw_spinlock_flags; + }; + }; + struct lock_class_key *lock_key; + regmap_lock lock; + regmap_unlock unlock; + void *lock_arg; + gfp_t alloc_flags; + unsigned int reg_base; + struct device *dev; + void *work_buf; + struct regmap_format format; + const struct regmap_bus *bus; + void *bus_context; + const char *name; + bool async; + spinlock_t async_lock; + wait_queue_head_t async_waitq; + struct list_head async_list; + struct list_head async_free; + int async_ret; + bool debugfs_disable; + struct dentry *debugfs; + const char *debugfs_name; + unsigned int debugfs_reg_len; + unsigned int debugfs_val_len; + unsigned int debugfs_tot_len; + struct list_head debugfs_off_cache; + struct mutex cache_lock; + unsigned int max_register; + bool max_register_is_set; + bool (*writeable_reg)(struct device *, unsigned int); + bool (*readable_reg)(struct device *, unsigned int); + bool (*volatile_reg)(struct device *, unsigned int); + bool (*precious_reg)(struct device *, unsigned int); + bool (*writeable_noinc_reg)(struct device *, unsigned int); + bool (*readable_noinc_reg)(struct device *, unsigned int); + const struct regmap_access_table *wr_table; + const struct regmap_access_table *rd_table; + const struct regmap_access_table *volatile_table; + const struct regmap_access_table *precious_table; + const struct regmap_access_table *wr_noinc_table; + const struct regmap_access_table *rd_noinc_table; + int (*reg_read)(void *, unsigned int, unsigned int *); + int (*reg_write)(void *, unsigned int, unsigned int); + int (*reg_update_bits)(void *, unsigned int, unsigned int, unsigned int); + int (*read)(void *, const void *, size_t, void *, size_t); + int (*write)(void *, const void *, size_t); + bool defer_caching; + long unsigned int read_flag_mask; + long unsigned int write_flag_mask; + int reg_shift; + int reg_stride; + int reg_stride_order; + bool force_write_field; + const struct regcache_ops *cache_ops; + enum regcache_type cache_type; + unsigned int cache_size_raw; + unsigned int cache_word_size; + unsigned int num_reg_defaults; + unsigned int num_reg_defaults_raw; + bool cache_only; + bool cache_bypass; + bool cache_free; + struct reg_default *reg_defaults; + const void *reg_defaults_raw; + void *cache; + bool cache_dirty; + bool no_sync_defaults; + struct reg_sequence *patch; + int patch_regs; + bool use_single_read; + bool use_single_write; + bool can_multi_write; + size_t max_raw_read; + size_t max_raw_write; + struct rb_root range_tree; + void *selector_work_buf; + struct hwspinlock *hwlock; + bool can_sleep; +}; + +struct regcache_ops { + const char *name; + enum regcache_type type; + int (*init)(struct regmap *); + int (*exit)(struct regmap *); + void (*debugfs_init)(struct regmap *); + int (*read)(struct regmap *, unsigned int, unsigned int *); + int (*write)(struct regmap *, unsigned int, unsigned int); + int (*sync)(struct regmap *, unsigned int, unsigned int); + int (*drop)(struct regmap *, unsigned int, unsigned int); +}; + +struct brd_device { + int brd_number; + struct gendisk *brd_disk; + struct list_head brd_list; + struct xarray brd_pages; + u64 brd_nr_pages; +}; + +enum ipvlan_mode { + IPVLAN_MODE_L2 = 0, + IPVLAN_MODE_L3 = 1, + IPVLAN_MODE_L3S = 2, + IPVLAN_MODE_MAX = 3, +}; + +struct arphdr { + __be16 ar_hrd; + __be16 ar_pro; + unsigned char ar_hln; + unsigned char ar_pln; + __be16 ar_op; +}; + +typedef enum { + IPVL_IPV6 = 0, + IPVL_ICMPV6 = 1, + IPVL_IPV4 = 2, + IPVL_ARP = 3, +} ipvl_hdr_type; + +struct ipvl_pcpu_stats { + u64_stats_t rx_pkts; + u64_stats_t rx_bytes; + u64_stats_t rx_mcast; + u64_stats_t tx_pkts; + u64_stats_t tx_bytes; + struct u64_stats_sync syncp; + u32 rx_errs; + u32 tx_drps; +}; + +struct ipvl_port; + +struct ipvl_dev { + struct net_device *dev; + struct list_head pnode; + struct ipvl_port *port; + struct net_device *phy_dev; + struct list_head addrs; + struct ipvl_pcpu_stats *pcpu_stats; + long unsigned int mac_filters[4]; + netdev_features_t sfeatures; + u32 msg_enable; + spinlock_t addrs_lock; +}; + +struct ipvl_port { + struct net_device *dev; + possible_net_t pnet; + struct hlist_head hlhead[256]; + struct list_head ipvlans; + u16 mode; + u16 flags; + u16 dev_id_start; + struct work_struct wq; + struct sk_buff_head backlog; + int count; + struct ida ida; + netdevice_tracker dev_tracker; +}; + +struct ipvl_addr { + struct ipvl_dev *master; + union { + struct in6_addr ip6; + struct in_addr ip4; + } ipu; + struct hlist_node hlnode; + struct list_head anode; + ipvl_hdr_type atype; + struct callback_head rcu; +}; + +struct ipvl_skb_cb { + bool tx_pkt; +}; + +enum macvlan_mode { + MACVLAN_MODE_PRIVATE = 1, + MACVLAN_MODE_VEPA = 2, + MACVLAN_MODE_BRIDGE = 4, + MACVLAN_MODE_PASSTHRU = 8, + MACVLAN_MODE_SOURCE = 16, +}; + +struct macvlan_port; + +struct macvlan_dev { + struct net_device *dev; + struct list_head list; + struct hlist_node hlist; + struct macvlan_port *port; + struct net_device *lowerdev; + netdevice_tracker dev_tracker; + void *accel_priv; + struct vlan_pcpu_stats *pcpu_stats; + long unsigned int mc_filter[4]; + netdev_features_t set_features; + enum macvlan_mode mode; + u16 flags; + unsigned int macaddr_count; + u32 bc_queue_len_req; +}; + +struct tap_queue; + +struct tap_dev { + struct net_device *dev; + u16 flags; + struct tap_queue *taps[256]; + struct list_head queue_list; + int numvtaps; + int numqueues; + netdev_features_t tap_features; + int minor; + void (*update_features)(struct tap_dev *, netdev_features_t); + void (*count_tx_dropped)(struct tap_dev *); + void (*count_rx_dropped)(struct tap_dev *); +}; + +struct tap_queue { + struct sock sk; + struct socket sock; + int vnet_hdr_sz; + struct tap_dev *tap; + struct file *file; + unsigned int flags; + u16 queue_index; + bool enabled; + struct list_head next; + long: 64; + long: 64; + struct ptr_ring ring; +}; + +struct macvtap_dev { + struct macvlan_dev vlan; + struct tap_dev tap; +}; + +enum cavium_mdiobus_mode { + UNINIT = 0, + C22 = 1, + C45 = 2, +}; + +struct cvmx_smix_clk_s { + u64 phase: 8; + u64 sample: 4; + u64 preamble: 1; + u64 clk_idle: 1; + u64 reserved_14_14: 1; + u64 sample_mode: 1; + u64 sample_hi: 5; + u64 reserved_21_23: 3; + u64 mode: 1; + u64 reserved_25_63: 39; +}; + +union cvmx_smix_clk { + u64 u64; + struct cvmx_smix_clk_s s; +}; + +struct cvmx_smix_cmd_s { + u64 reg_adr: 5; + u64 reserved_5_7: 3; + u64 phy_adr: 5; + u64 reserved_13_15: 3; + u64 phy_op: 2; + u64 reserved_18_63: 46; +}; + +union cvmx_smix_cmd { + u64 u64; + struct cvmx_smix_cmd_s s; +}; + +struct cvmx_smix_rd_dat_s { + u64 dat: 16; + u64 val: 1; + u64 pending: 1; + u64 reserved_18_63: 46; +}; + +union cvmx_smix_rd_dat { + u64 u64; + struct cvmx_smix_rd_dat_s s; +}; + +struct cvmx_smix_wr_dat_s { + u64 dat: 16; + u64 val: 1; + u64 pending: 1; + u64 reserved_18_63: 46; +}; + +union cvmx_smix_wr_dat { + u64 u64; + struct cvmx_smix_wr_dat_s s; +}; + +struct cavium_mdiobus { + struct mii_bus *mii_bus; + void *register_base; + enum cavium_mdiobus_mode mode; +}; + +struct flow_dissector { + long long unsigned int used_keys; + short unsigned int offset[33]; +}; + +struct flow_keys_basic { + struct flow_dissector_key_control control; + struct flow_dissector_key_basic basic; +}; + +struct virtio_net_hdr { + __u8 flags; + __u8 gso_type; + __virtio16 hdr_len; + __virtio16 gso_size; + __virtio16 csum_start; + __virtio16 csum_offset; +}; + +struct tun_msg_ctl { + short unsigned int type; + short unsigned int num; + void *ptr; +}; + +struct tun_xdp_hdr { + int buflen; + struct virtio_net_hdr gso; +}; + +struct major_info { + struct callback_head rcu; + dev_t major; + struct idr minor_idr; + spinlock_t minor_lock; + const char *device_name; + struct list_head next; +}; + +typedef __u8 byte_t; + +typedef __u32 int32; + +struct cstate { + byte_t cs_this; + bool initialized; + struct cstate *next; + struct iphdr cs_ip; + struct tcphdr cs_tcp; + unsigned char cs_ipopt[64]; + unsigned char cs_tcpopt[64]; + int cs_hsize; +}; + +struct slcompress { + struct cstate *tstate; + struct cstate *rstate; + byte_t tslot_limit; + byte_t rslot_limit; + byte_t xmit_oldest; + byte_t xmit_current; + byte_t recv_current; + byte_t flags; + int32 sls_o_nontcp; + int32 sls_o_tcp; + int32 sls_o_uncompressed; + int32 sls_o_compressed; + int32 sls_o_searches; + int32 sls_o_misses; + int32 sls_i_uncompressed; + int32 sls_i_compressed; + int32 sls_i_error; + int32 sls_i_tossed; + int32 sls_i_runt; + int32 sls_i_badcheck; +}; + +enum netdev_queue_state_t { + __QUEUE_STATE_DRV_XOFF = 0, + __QUEUE_STATE_STACK_XOFF = 1, + __QUEUE_STATE_FROZEN = 2, +}; + +struct ethtool_netdev_state { + struct xarray rss_ctx; + struct mutex rss_lock; + unsigned int wol_enabled: 1; + unsigned int module_fw_flash_in_progress: 1; +}; + +struct netdev_lag_lower_state_info { + u8 link_up: 1; + u8 tx_enabled: 1; +}; + +struct ethtool_drvinfo { + __u32 cmd; + char driver[32]; + char version[32]; + char fw_version[32]; + char bus_info[32]; + char erom_version[32]; + char reserved2[12]; + __u32 n_priv_flags; + __u32 n_stats; + __u32 testinfo_len; + __u32 eedump_len; + __u32 regdump_len; +}; + +struct ethtool_regs { + __u32 cmd; + __u32 version; + __u32 len; + __u8 data[0]; +}; + +struct ethtool_coalesce { + __u32 cmd; + __u32 rx_coalesce_usecs; + __u32 rx_max_coalesced_frames; + __u32 rx_coalesce_usecs_irq; + __u32 rx_max_coalesced_frames_irq; + __u32 tx_coalesce_usecs; + __u32 tx_max_coalesced_frames; + __u32 tx_coalesce_usecs_irq; + __u32 tx_max_coalesced_frames_irq; + __u32 stats_block_coalesce_usecs; + __u32 use_adaptive_rx_coalesce; + __u32 use_adaptive_tx_coalesce; + __u32 pkt_rate_low; + __u32 rx_coalesce_usecs_low; + __u32 rx_max_coalesced_frames_low; + __u32 tx_coalesce_usecs_low; + __u32 tx_max_coalesced_frames_low; + __u32 pkt_rate_high; + __u32 rx_coalesce_usecs_high; + __u32 rx_max_coalesced_frames_high; + __u32 tx_coalesce_usecs_high; + __u32 tx_max_coalesced_frames_high; + __u32 rate_sample_interval; +}; + +struct ethtool_ringparam { + __u32 cmd; + __u32 rx_max_pending; + __u32 rx_mini_max_pending; + __u32 rx_jumbo_max_pending; + __u32 tx_max_pending; + __u32 rx_pending; + __u32 rx_mini_pending; + __u32 rx_jumbo_pending; + __u32 tx_pending; +}; + +struct ethtool_channels { + __u32 cmd; + __u32 max_rx; + __u32 max_tx; + __u32 max_other; + __u32 max_combined; + __u32 rx_count; + __u32 tx_count; + __u32 other_count; + __u32 combined_count; +}; + +struct ethtool_pauseparam { + __u32 cmd; + __u32 autoneg; + __u32 rx_pause; + __u32 tx_pause; +}; + +enum ethtool_link_ext_state { + ETHTOOL_LINK_EXT_STATE_AUTONEG = 0, + ETHTOOL_LINK_EXT_STATE_LINK_TRAINING_FAILURE = 1, + ETHTOOL_LINK_EXT_STATE_LINK_LOGICAL_MISMATCH = 2, + ETHTOOL_LINK_EXT_STATE_BAD_SIGNAL_INTEGRITY = 3, + ETHTOOL_LINK_EXT_STATE_NO_CABLE = 4, + ETHTOOL_LINK_EXT_STATE_CABLE_ISSUE = 5, + ETHTOOL_LINK_EXT_STATE_EEPROM_ISSUE = 6, + ETHTOOL_LINK_EXT_STATE_CALIBRATION_FAILURE = 7, + ETHTOOL_LINK_EXT_STATE_POWER_BUDGET_EXCEEDED = 8, + ETHTOOL_LINK_EXT_STATE_OVERHEAT = 9, + ETHTOOL_LINK_EXT_STATE_MODULE = 10, +}; + +enum ethtool_link_ext_substate_autoneg { + ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_PARTNER_DETECTED = 1, + ETHTOOL_LINK_EXT_SUBSTATE_AN_ACK_NOT_RECEIVED = 2, + ETHTOOL_LINK_EXT_SUBSTATE_AN_NEXT_PAGE_EXCHANGE_FAILED = 3, + ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_PARTNER_DETECTED_FORCE_MODE = 4, + ETHTOOL_LINK_EXT_SUBSTATE_AN_FEC_MISMATCH_DURING_OVERRIDE = 5, + ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_HCD = 6, +}; + +enum ethtool_link_ext_substate_link_training { + ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_FRAME_LOCK_NOT_ACQUIRED = 1, + ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_LINK_INHIBIT_TIMEOUT = 2, + ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_LINK_PARTNER_DID_NOT_SET_RECEIVER_READY = 3, + ETHTOOL_LINK_EXT_SUBSTATE_LT_REMOTE_FAULT = 4, +}; + +enum ethtool_link_ext_substate_link_logical_mismatch { + ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_ACQUIRE_BLOCK_LOCK = 1, + ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_ACQUIRE_AM_LOCK = 2, + ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_GET_ALIGN_STATUS = 3, + ETHTOOL_LINK_EXT_SUBSTATE_LLM_FC_FEC_IS_NOT_LOCKED = 4, + ETHTOOL_LINK_EXT_SUBSTATE_LLM_RS_FEC_IS_NOT_LOCKED = 5, +}; + +enum ethtool_link_ext_substate_bad_signal_integrity { + ETHTOOL_LINK_EXT_SUBSTATE_BSI_LARGE_NUMBER_OF_PHYSICAL_ERRORS = 1, + ETHTOOL_LINK_EXT_SUBSTATE_BSI_UNSUPPORTED_RATE = 2, + ETHTOOL_LINK_EXT_SUBSTATE_BSI_SERDES_REFERENCE_CLOCK_LOST = 3, + ETHTOOL_LINK_EXT_SUBSTATE_BSI_SERDES_ALOS = 4, +}; + +enum ethtool_link_ext_substate_cable_issue { + ETHTOOL_LINK_EXT_SUBSTATE_CI_UNSUPPORTED_CABLE = 1, + ETHTOOL_LINK_EXT_SUBSTATE_CI_CABLE_TEST_FAILURE = 2, +}; + +enum ethtool_link_ext_substate_module { + ETHTOOL_LINK_EXT_SUBSTATE_MODULE_CMIS_NOT_READY = 1, +}; + +enum ethtool_module_power_mode_policy { + ETHTOOL_MODULE_POWER_MODE_POLICY_HIGH = 1, + ETHTOOL_MODULE_POWER_MODE_POLICY_AUTO = 2, +}; + +enum ethtool_module_power_mode { + ETHTOOL_MODULE_POWER_MODE_LOW = 1, + ETHTOOL_MODULE_POWER_MODE_HIGH = 2, +}; + +enum ethtool_mm_verify_status { + ETHTOOL_MM_VERIFY_STATUS_UNKNOWN = 0, + ETHTOOL_MM_VERIFY_STATUS_INITIAL = 1, + ETHTOOL_MM_VERIFY_STATUS_VERIFYING = 2, + ETHTOOL_MM_VERIFY_STATUS_SUCCEEDED = 3, + ETHTOOL_MM_VERIFY_STATUS_FAILED = 4, + ETHTOOL_MM_VERIFY_STATUS_DISABLED = 5, +}; + +struct ethtool_test { + __u32 cmd; + __u32 flags; + __u32 reserved; + __u32 len; + __u64 data[0]; +}; + +struct ethtool_tcpip4_spec { + __be32 ip4src; + __be32 ip4dst; + __be16 psrc; + __be16 pdst; + __u8 tos; +}; + +struct ethtool_ah_espip4_spec { + __be32 ip4src; + __be32 ip4dst; + __be32 spi; + __u8 tos; +}; + +struct ethtool_usrip4_spec { + __be32 ip4src; + __be32 ip4dst; + __be32 l4_4_bytes; + __u8 tos; + __u8 ip_ver; + __u8 proto; +}; + +struct ethtool_tcpip6_spec { + __be32 ip6src[4]; + __be32 ip6dst[4]; + __be16 psrc; + __be16 pdst; + __u8 tclass; +}; + +struct ethtool_ah_espip6_spec { + __be32 ip6src[4]; + __be32 ip6dst[4]; + __be32 spi; + __u8 tclass; +}; + +struct ethtool_usrip6_spec { + __be32 ip6src[4]; + __be32 ip6dst[4]; + __be32 l4_4_bytes; + __u8 tclass; + __u8 l4_proto; +}; + +union ethtool_flow_union { + struct ethtool_tcpip4_spec tcp_ip4_spec; + struct ethtool_tcpip4_spec udp_ip4_spec; + struct ethtool_tcpip4_spec sctp_ip4_spec; + struct ethtool_ah_espip4_spec ah_ip4_spec; + struct ethtool_ah_espip4_spec esp_ip4_spec; + struct ethtool_usrip4_spec usr_ip4_spec; + struct ethtool_tcpip6_spec tcp_ip6_spec; + struct ethtool_tcpip6_spec udp_ip6_spec; + struct ethtool_tcpip6_spec sctp_ip6_spec; + struct ethtool_ah_espip6_spec ah_ip6_spec; + struct ethtool_ah_espip6_spec esp_ip6_spec; + struct ethtool_usrip6_spec usr_ip6_spec; + struct ethhdr ether_spec; + __u8 hdata[52]; +}; + +struct ethtool_flow_ext { + __u8 padding[2]; + unsigned char h_dest[6]; + __be16 vlan_etype; + __be16 vlan_tci; + __be32 data[2]; +}; + +struct ethtool_rx_flow_spec { + __u32 flow_type; + union ethtool_flow_union h_u; + struct ethtool_flow_ext h_ext; + union ethtool_flow_union m_u; + struct ethtool_flow_ext m_ext; + __u64 ring_cookie; + __u32 location; +}; + +struct ethtool_rxnfc { + __u32 cmd; + __u32 flow_type; + __u64 data; + struct ethtool_rx_flow_spec fs; + union { + __u32 rule_cnt; + __u32 rss_context; + }; + __u32 rule_locs[0]; +}; + +struct ethtool_flash { + __u32 cmd; + __u32 region; + char data[128]; +}; + +struct ethtool_dump { + __u32 cmd; + __u32 version; + __u32 flag; + __u32 len; + __u8 data[0]; +}; + +struct ethtool_fecparam { + __u32 cmd; + __u32 active_fec; + __u32 fec; + __u32 reserved; +}; + +struct ethtool_link_settings { + __u32 cmd; + __u32 speed; + __u8 duplex; + __u8 port; + __u8 phy_address; + __u8 autoneg; + __u8 mdio_support; + __u8 eth_tp_mdix; + __u8 eth_tp_mdix_ctrl; + __s8 link_mode_masks_nwords; + __u8 transceiver; + __u8 master_slave_cfg; + __u8 master_slave_state; + __u8 rate_matching; + __u32 reserved[7]; + __u32 link_mode_masks[0]; +}; + +struct kernel_ethtool_ringparam { + u32 rx_buf_len; + u8 tcp_data_split; + u8 tx_push; + u8 rx_push; + u32 cqe_size; + u32 tx_push_buf_len; + u32 tx_push_buf_max_len; +}; + +struct ethtool_link_ext_state_info { + enum ethtool_link_ext_state link_ext_state; + union { + enum ethtool_link_ext_substate_autoneg autoneg; + enum ethtool_link_ext_substate_link_training link_training; + enum ethtool_link_ext_substate_link_logical_mismatch link_logical_mismatch; + enum ethtool_link_ext_substate_bad_signal_integrity bad_signal_integrity; + enum ethtool_link_ext_substate_cable_issue cable_issue; + enum ethtool_link_ext_substate_module module; + u32 __link_ext_substate; + }; +}; + +struct ethtool_rxfh_context { + u32 indir_size; + u32 key_size; + u16 priv_size; + u8 hfunc; + u8 input_xfrm; + u8 indir_configured: 1; + u8 key_configured: 1; + u32 key_off; + long: 0; + u8 data[0]; +}; + +struct ethtool_link_ksettings { + struct ethtool_link_settings base; + struct { + long unsigned int supported[2]; + long unsigned int advertising[2]; + long unsigned int lp_advertising[2]; + } link_modes; + u32 lanes; +}; + +struct ethtool_keee { + long unsigned int supported[2]; + long unsigned int advertised[2]; + long unsigned int lp_advertised[2]; + u32 tx_lpi_timer; + bool tx_lpi_enabled; + bool eee_active; + bool eee_enabled; +}; + +struct kernel_ethtool_coalesce { + u8 use_cqe_mode_tx; + u8 use_cqe_mode_rx; + u32 tx_aggr_max_bytes; + u32 tx_aggr_max_frames; + u32 tx_aggr_time_usecs; +}; + +struct ethtool_eth_mac_stats { + enum ethtool_mac_stats_src src; + union { + struct { + u64 FramesTransmittedOK; + u64 SingleCollisionFrames; + u64 MultipleCollisionFrames; + u64 FramesReceivedOK; + u64 FrameCheckSequenceErrors; + u64 AlignmentErrors; + u64 OctetsTransmittedOK; + u64 FramesWithDeferredXmissions; + u64 LateCollisions; + u64 FramesAbortedDueToXSColls; + u64 FramesLostDueToIntMACXmitError; + u64 CarrierSenseErrors; + u64 OctetsReceivedOK; + u64 FramesLostDueToIntMACRcvError; + u64 MulticastFramesXmittedOK; + u64 BroadcastFramesXmittedOK; + u64 FramesWithExcessiveDeferral; + u64 MulticastFramesReceivedOK; + u64 BroadcastFramesReceivedOK; + u64 InRangeLengthErrors; + u64 OutOfRangeLengthField; + u64 FrameTooLongErrors; + }; + struct { + u64 FramesTransmittedOK; + u64 SingleCollisionFrames; + u64 MultipleCollisionFrames; + u64 FramesReceivedOK; + u64 FrameCheckSequenceErrors; + u64 AlignmentErrors; + u64 OctetsTransmittedOK; + u64 FramesWithDeferredXmissions; + u64 LateCollisions; + u64 FramesAbortedDueToXSColls; + u64 FramesLostDueToIntMACXmitError; + u64 CarrierSenseErrors; + u64 OctetsReceivedOK; + u64 FramesLostDueToIntMACRcvError; + u64 MulticastFramesXmittedOK; + u64 BroadcastFramesXmittedOK; + u64 FramesWithExcessiveDeferral; + u64 MulticastFramesReceivedOK; + u64 BroadcastFramesReceivedOK; + u64 InRangeLengthErrors; + u64 OutOfRangeLengthField; + u64 FrameTooLongErrors; + } stats; + }; +}; + +struct ethtool_eth_ctrl_stats { + enum ethtool_mac_stats_src src; + union { + struct { + u64 MACControlFramesTransmitted; + u64 MACControlFramesReceived; + u64 UnsupportedOpcodesReceived; + }; + struct { + u64 MACControlFramesTransmitted; + u64 MACControlFramesReceived; + u64 UnsupportedOpcodesReceived; + } stats; + }; +}; + +struct ethtool_pause_stats { + enum ethtool_mac_stats_src src; + union { + struct { + u64 tx_pause_frames; + u64 rx_pause_frames; + }; + struct { + u64 tx_pause_frames; + u64 rx_pause_frames; + } stats; + }; +}; + +struct ethtool_fec_stat { + u64 total; + u64 lanes[8]; +}; + +struct ethtool_fec_stats { + struct ethtool_fec_stat corrected_blocks; + struct ethtool_fec_stat uncorrectable_blocks; + struct ethtool_fec_stat corrected_bits; +}; + +struct ethtool_rmon_hist_range { + u16 low; + u16 high; +}; + +struct ethtool_rmon_stats { + enum ethtool_mac_stats_src src; + union { + struct { + u64 undersize_pkts; + u64 oversize_pkts; + u64 fragments; + u64 jabbers; + u64 hist[10]; + u64 hist_tx[10]; + }; + struct { + u64 undersize_pkts; + u64 oversize_pkts; + u64 fragments; + u64 jabbers; + u64 hist[10]; + u64 hist_tx[10]; + } stats; + }; +}; + +struct ethtool_ts_stats { + union { + struct { + u64 pkts; + u64 lost; + u64 err; + }; + struct { + u64 pkts; + u64 lost; + u64 err; + } tx_stats; + }; +}; + +struct ethtool_module_eeprom { + u32 offset; + u32 length; + u8 page; + u8 bank; + u8 i2c_address; + u8 *data; +}; + +struct ethtool_module_power_mode_params { + enum ethtool_module_power_mode_policy policy; + enum ethtool_module_power_mode mode; +}; + +struct ethtool_mm_state { + u32 verify_time; + u32 max_verify_time; + enum ethtool_mm_verify_status verify_status; + bool tx_enabled; + bool tx_active; + bool pmac_enabled; + bool verify_enabled; + u32 tx_min_frag_size; + u32 rx_min_frag_size; +}; + +struct ethtool_mm_cfg { + u32 verify_time; + bool verify_enabled; + bool tx_enabled; + bool pmac_enabled; + u32 tx_min_frag_size; +}; + +struct ethtool_mm_stats { + u64 MACMergeFrameAssErrorCount; + u64 MACMergeFrameSmdErrorCount; + u64 MACMergeFrameAssOkCount; + u64 MACMergeFragCountRx; + u64 MACMergeFragCountTx; + u64 MACMergeHoldCount; +}; + +struct ethtool_rxfh_param { + u8 hfunc; + u32 indir_size; + u32 *indir; + u32 key_size; + u8 *key; + u32 rss_context; + u8 rss_delete; + u8 input_xfrm; +}; + +struct failover_ops { + int (*slave_pre_register)(struct net_device *, struct net_device *); + int (*slave_register)(struct net_device *, struct net_device *); + int (*slave_pre_unregister)(struct net_device *, struct net_device *); + int (*slave_unregister)(struct net_device *, struct net_device *); + int (*slave_link_change)(struct net_device *, struct net_device *); + int (*slave_name_change)(struct net_device *, struct net_device *); + rx_handler_result_t (*slave_handle_frame)(struct sk_buff **); +}; + +struct failover { + struct list_head list; + struct net_device *failover_dev; + netdevice_tracker dev_tracker; + struct failover_ops *ops; +}; + +struct net_failover_info { + struct net_device *primary_dev; + struct net_device *standby_dev; + struct rtnl_link_stats64 primary_stats; + struct rtnl_link_stats64 standby_stats; + struct rtnl_link_stats64 failover_stats; + spinlock_t stats_lock; +}; + +struct ehci_per_sched { + struct usb_device *udev; + struct usb_host_endpoint *ep; + struct list_head ps_list; + u16 tt_usecs; + u16 cs_mask; + u16 period; + u16 phase; + u8 bw_phase; + u8 phase_uf; + u8 usecs; + u8 c_usecs; + u8 bw_uperiod; + u8 bw_period; +}; + +enum ehci_rh_state { + EHCI_RH_HALTED = 0, + EHCI_RH_SUSPENDED = 1, + EHCI_RH_RUNNING = 2, + EHCI_RH_STOPPING = 3, +}; + +enum ehci_hrtimer_event { + EHCI_HRTIMER_POLL_ASS = 0, + EHCI_HRTIMER_POLL_PSS = 1, + EHCI_HRTIMER_POLL_DEAD = 2, + EHCI_HRTIMER_UNLINK_INTR = 3, + EHCI_HRTIMER_FREE_ITDS = 4, + EHCI_HRTIMER_ACTIVE_UNLINK = 5, + EHCI_HRTIMER_START_UNLINK_INTR = 6, + EHCI_HRTIMER_ASYNC_UNLINKS = 7, + EHCI_HRTIMER_IAA_WATCHDOG = 8, + EHCI_HRTIMER_DISABLE_PERIODIC = 9, + EHCI_HRTIMER_DISABLE_ASYNC = 10, + EHCI_HRTIMER_IO_WATCHDOG = 11, + EHCI_HRTIMER_NUM_EVENTS = 12, +}; + +struct ehci_caps; + +struct ehci_regs; + +struct ehci_dbg_port; + +struct ehci_qh; + +union ehci_shadow; + +struct ehci_itd; + +struct ehci_sitd; + +struct ehci_hcd { + enum ehci_hrtimer_event next_hrtimer_event; + unsigned int enabled_hrtimer_events; + ktime_t hr_timeouts[12]; + struct hrtimer hrtimer; + int PSS_poll_count; + int ASS_poll_count; + int died_poll_count; + struct ehci_caps *caps; + struct ehci_regs *regs; + struct ehci_dbg_port *debug; + __u32 hcs_params; + spinlock_t lock; + enum ehci_rh_state rh_state; + bool scanning: 1; + bool need_rescan: 1; + bool intr_unlinking: 1; + bool iaa_in_progress: 1; + bool async_unlinking: 1; + bool shutdown: 1; + struct ehci_qh *qh_scan_next; + struct ehci_qh *async; + struct ehci_qh *dummy; + struct list_head async_unlink; + struct list_head async_idle; + unsigned int async_unlink_cycle; + unsigned int async_count; + __le32 old_current; + __le32 old_token; + unsigned int periodic_size; + __le32 *periodic; + dma_addr_t periodic_dma; + struct list_head intr_qh_list; + unsigned int i_thresh; + union ehci_shadow *pshadow; + struct list_head intr_unlink_wait; + struct list_head intr_unlink; + unsigned int intr_unlink_wait_cycle; + unsigned int intr_unlink_cycle; + unsigned int now_frame; + unsigned int last_iso_frame; + unsigned int intr_count; + unsigned int isoc_count; + unsigned int periodic_count; + unsigned int uframe_periodic_max; + struct list_head cached_itd_list; + struct ehci_itd *last_itd_to_free; + struct list_head cached_sitd_list; + struct ehci_sitd *last_sitd_to_free; + long unsigned int reset_done[15]; + long unsigned int bus_suspended; + long unsigned int companion_ports; + long unsigned int owned_ports; + long unsigned int port_c_suspend; + long unsigned int suspended_ports; + long unsigned int resuming_ports; + struct dma_pool *qh_pool; + struct dma_pool *qtd_pool; + struct dma_pool *itd_pool; + struct dma_pool *sitd_pool; + unsigned int random_frame; + long unsigned int next_statechange; + ktime_t last_periodic_enable; + u32 command; + unsigned int no_selective_suspend: 1; + unsigned int has_fsl_port_bug: 1; + unsigned int has_fsl_hs_errata: 1; + unsigned int has_fsl_susp_errata: 1; + unsigned int has_ci_pec_bug: 1; + unsigned int big_endian_mmio: 1; + unsigned int big_endian_desc: 1; + unsigned int big_endian_capbase: 1; + unsigned int has_amcc_usb23: 1; + unsigned int need_io_watchdog: 1; + unsigned int amd_pll_fix: 1; + unsigned int use_dummy_qh: 1; + unsigned int has_synopsys_hc_bug: 1; + unsigned int frame_index_bug: 1; + unsigned int need_oc_pp_cycle: 1; + unsigned int imx28_write_fix: 1; + unsigned int spurious_oc: 1; + unsigned int is_aspeed: 1; + unsigned int zx_wakeup_clear_needed: 1; + __le32 *ohci_hcctrl_reg; + unsigned int has_hostpc: 1; + unsigned int has_tdi_phy_lpm: 1; + unsigned int has_ppcd: 1; + u8 sbrn; + u8 bandwidth[64]; + u8 tt_budget[64]; + struct list_head tt_list; + long unsigned int priv[0]; +}; + +struct ehci_caps { + u32 hc_capbase; + u32 hcs_params; + u32 hcc_params; + u8 portroute[8]; +}; + +struct ehci_regs { + u32 command; + u32 status; + u32 intr_enable; + u32 frame_index; + u32 segment; + u32 frame_list; + u32 async_next; + u32 reserved1[2]; + u32 txfill_tuning; + u32 reserved2[6]; + u32 configured_flag; + union { + u32 port_status[15]; + struct { + u32 reserved3[9]; + u32 usbmode; + }; + }; + union { + struct { + u32 reserved4; + u32 hostpc[15]; + }; + u32 brcm_insnreg[4]; + }; + u32 reserved5[2]; + u32 usbmode_ex; +}; + +struct ehci_dbg_port { + u32 control; + u32 pids; + u32 data03; + u32 data47; + u32 address; +}; + +struct ehci_fstn; + +union ehci_shadow { + struct ehci_qh *qh; + struct ehci_itd *itd; + struct ehci_sitd *sitd; + struct ehci_fstn *fstn; + __le32 *hw_next; + void *ptr; +}; + +struct ehci_qh_hw; + +struct ehci_qtd; + +struct ehci_qh { + struct ehci_qh_hw *hw; + dma_addr_t qh_dma; + union ehci_shadow qh_next; + struct list_head qtd_list; + struct list_head intr_node; + struct ehci_qtd *dummy; + struct list_head unlink_node; + struct ehci_per_sched ps; + unsigned int unlink_cycle; + u8 qh_state; + u8 xacterrs; + u8 unlink_reason; + u8 gap_uf; + unsigned int is_out: 1; + unsigned int clearing_tt: 1; + unsigned int dequeue_during_giveback: 1; + unsigned int should_be_inactive: 1; +}; + +struct ehci_iso_stream; + +struct ehci_itd { + __le32 hw_next; + __le32 hw_transaction[8]; + __le32 hw_bufp[7]; + __le32 hw_bufp_hi[7]; + dma_addr_t itd_dma; + union ehci_shadow itd_next; + struct urb *urb; + struct ehci_iso_stream *stream; + struct list_head itd_list; + unsigned int frame; + unsigned int pg; + unsigned int index[8]; + long: 64; +}; + +struct ehci_sitd { + __le32 hw_next; + __le32 hw_fullspeed_ep; + __le32 hw_uframe; + __le32 hw_results; + __le32 hw_buf[2]; + __le32 hw_backpointer; + __le32 hw_buf_hi[2]; + dma_addr_t sitd_dma; + union ehci_shadow sitd_next; + struct urb *urb; + struct ehci_iso_stream *stream; + struct list_head sitd_list; + unsigned int frame; + unsigned int index; +}; + +struct ehci_qtd { + __le32 hw_next; + __le32 hw_alt_next; + __le32 hw_token; + __le32 hw_buf[5]; + __le32 hw_buf_hi[5]; + dma_addr_t qtd_dma; + struct list_head qtd_list; + struct urb *urb; + size_t length; +}; + +struct ehci_fstn { + __le32 hw_next; + __le32 hw_prev; + dma_addr_t fstn_dma; + union ehci_shadow fstn_next; + long: 64; +}; + +struct ehci_qh_hw { + __le32 hw_next; + __le32 hw_info1; + __le32 hw_info2; + __le32 hw_current; + __le32 hw_qtd_next; + __le32 hw_alt_next; + __le32 hw_token; + __le32 hw_buf[5]; + __le32 hw_buf_hi[5]; + long: 64; + long: 64; + long: 64; +}; + +struct ehci_iso_stream { + struct ehci_qh_hw *hw; + u8 bEndpointAddress; + u8 highspeed; + struct list_head td_list; + struct list_head free_list; + struct ehci_per_sched ps; + unsigned int next_uframe; + __le32 splits; + u16 uperiod; + u16 maxp; + unsigned int bandwidth; + __le32 buf0; + __le32 buf1; + __le32 buf2; + __le32 address; +}; + +struct ehci_driver_overrides { + size_t extra_priv_size; + int (*reset)(struct usb_hcd *); + int (*port_power)(struct usb_hcd *, int, bool); +}; + +struct usb_cdc_header_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __le16 bcdCDC; +} __attribute__((packed)); + +struct usb_cdc_call_mgmt_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __u8 bmCapabilities; + __u8 bDataInterface; +}; + +struct usb_cdc_acm_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __u8 bmCapabilities; +}; + +struct usb_cdc_union_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __u8 bMasterInterface0; + __u8 bSlaveInterface0; +}; + +struct usb_cdc_country_functional_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __u8 iCountryCodeRelDate; + __le16 wCountyCode0; +}; + +struct usb_cdc_network_terminal_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __u8 bEntityId; + __u8 iName; + __u8 bChannelIndex; + __u8 bPhysicalInterface; +}; + +struct usb_cdc_ether_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __u8 iMACAddress; + __le32 bmEthernetStatistics; + __le16 wMaxSegmentSize; + __le16 wNumberMCFilters; + __u8 bNumberPowerFilters; +} __attribute__((packed)); + +struct usb_cdc_dmm_desc { + __u8 bFunctionLength; + __u8 bDescriptorType; + __u8 bDescriptorSubtype; + __u16 bcdVersion; + __le16 wMaxCommand; +} __attribute__((packed)); + +struct usb_cdc_mdlm_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __le16 bcdVersion; + __u8 bGUID[16]; +} __attribute__((packed)); + +struct usb_cdc_mdlm_detail_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __u8 bGuidDescriptorType; + __u8 bDetailData[0]; +}; + +struct usb_cdc_obex_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __le16 bcdVersion; +} __attribute__((packed)); + +struct usb_cdc_ncm_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __le16 bcdNcmVersion; + __u8 bmNetworkCapabilities; +} __attribute__((packed)); + +struct usb_cdc_mbim_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __le16 bcdMBIMVersion; + __le16 wMaxControlMessage; + __u8 bNumberFilters; + __u8 bMaxFilterSize; + __le16 wMaxSegmentSize; + __u8 bmNetworkCapabilities; +} __attribute__((packed)); + +struct usb_cdc_mbim_extended_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __le16 bcdMBIMExtendedVersion; + __u8 bMaxOutstandingCommandMessages; + __le16 wMTU; +} __attribute__((packed)); + +struct usb_cdc_line_coding { + __le32 dwDTERate; + __u8 bCharFormat; + __u8 bParityType; + __u8 bDataBits; +} __attribute__((packed)); + +struct usb_cdc_notification { + __u8 bmRequestType; + __u8 bNotificationType; + __le16 wValue; + __le16 wIndex; + __le16 wLength; +}; + +struct usb_cdc_parsed_header { + struct usb_cdc_union_desc *usb_cdc_union_desc; + struct usb_cdc_header_desc *usb_cdc_header_desc; + struct usb_cdc_call_mgmt_descriptor *usb_cdc_call_mgmt_descriptor; + struct usb_cdc_acm_descriptor *usb_cdc_acm_descriptor; + struct usb_cdc_country_functional_desc *usb_cdc_country_functional_desc; + struct usb_cdc_network_terminal_desc *usb_cdc_network_terminal_desc; + struct usb_cdc_ether_desc *usb_cdc_ether_desc; + struct usb_cdc_dmm_desc *usb_cdc_dmm_desc; + struct usb_cdc_mdlm_desc *usb_cdc_mdlm_desc; + struct usb_cdc_mdlm_detail_desc *usb_cdc_mdlm_detail_desc; + struct usb_cdc_obex_desc *usb_cdc_obex_desc; + struct usb_cdc_ncm_desc *usb_cdc_ncm_desc; + struct usb_cdc_mbim_desc *usb_cdc_mbim_desc; + struct usb_cdc_mbim_extended_desc *usb_cdc_mbim_extended_desc; + bool phonet_magic_present; +}; + +struct acm; + +struct acm_wb { + u8 *buf; + dma_addr_t dmah; + unsigned int len; + struct urb *urb; + struct acm *instance; + bool use; +}; + +struct acm_rb { + int size; + unsigned char *base; + dma_addr_t dma; + int index; + struct acm *instance; +}; + +struct acm { + struct usb_device *dev; + struct usb_interface *control; + struct usb_interface *data; + unsigned int in; + unsigned int out; + struct tty_port port; + struct urb *ctrlurb; + u8 *ctrl_buffer; + dma_addr_t ctrl_dma; + u8 *country_codes; + unsigned int country_code_size; + unsigned int country_rel_date; + struct acm_wb wb[16]; + long unsigned int read_urbs_free; + struct urb *read_urbs[16]; + struct acm_rb read_buffers[16]; + int rx_buflimit; + spinlock_t read_lock; + u8 *notification_buffer; + unsigned int nb_index; + unsigned int nb_size; + int transmitting; + spinlock_t write_lock; + struct mutex mutex; + bool disconnected; + long unsigned int flags; + long unsigned int urbs_in_error_delay; + struct usb_cdc_line_coding line; + struct delayed_work dwork; + unsigned int ctrlin; + unsigned int ctrlout; + struct async_icount iocount; + struct async_icount oldcount; + wait_queue_head_t wioctl; + unsigned int writesize; + unsigned int readsize; + unsigned int ctrlsize; + unsigned int minor; + unsigned char clocal; + unsigned int ctrl_caps; + unsigned int susp_count; + unsigned int combined_interfaces: 1; + u8 bInterval; + struct usb_anchor delayed; + long unsigned int quirks; +}; + +struct swoc_info { + __u8 rev; + __u8 reserved[8]; + __u16 LinuxSKU; + __u16 LinuxVer; + __u8 reserved2[47]; +} __attribute__((packed)); + +struct karma_data { + int in_storage; + char *recv; +}; + +struct ark3116_private { + int irda; + struct mutex hw_lock; + int quot; + __u32 lcr; + __u32 hcr; + __u32 mcr; + spinlock_t status_lock; + __u32 msr; + __u32 lsr; +}; + +struct usb_wwan_port_private { + struct urb *in_urbs[4]; + u8 *in_buffer[4]; + struct urb *out_urbs[4]; + u8 *out_buffer[4]; + long unsigned int out_busy; + struct usb_anchor delayed; + int rts_state; + int dtr_state; + int cts_state; + int dsr_state; + int dcd_state; + int ri_state; + long unsigned int tx_start_time[4]; +}; + +struct firmware { + size_t size; + const u8 *data; + void *priv; +}; + +struct ihex_binrec { + __be32 addr; + __be16 len; + uint8_t data[0]; +} __attribute__((packed)); + +struct ezusb_fx_type { + short unsigned int cpucs_reg; + short unsigned int max_internal_adress; +}; + +struct input_mt_pos { + s16 x; + s16 y; +}; + +struct touchscreen_properties { + unsigned int max_x; + unsigned int max_y; + bool invert_x; + bool invert_y; + bool swap_x_y; +}; + +struct of_reconfig_data { + struct device_node *dn; + struct property *prop; + struct property *old_prop; +}; + +enum of_reconfig_change { + OF_RECONFIG_NO_CHANGE = 0, + OF_RECONFIG_CHANGE_ADD = 1, + OF_RECONFIG_CHANGE_REMOVE = 2, +}; + +struct i2c_client { + short unsigned int flags; + short unsigned int addr; + char name[20]; + struct i2c_adapter *adapter; + struct device dev; + int init_irq; + int irq; + struct list_head detected; + void *devres_group_id; +}; + +struct i2c_board_info { + char type[20]; + short unsigned int flags; + short unsigned int addr; + const char *dev_name; + void *platform_data; + struct device_node *of_node; + struct fwnode_handle *fwnode; + const struct software_node *swnode; + const struct resource *resources; + unsigned int num_resources; + int irq; +}; + +typedef bool (*smp_cond_func_t)(int, void *); + +enum tick_broadcast_mode { + TICK_BROADCAST_OFF = 0, + TICK_BROADCAST_ON = 1, + TICK_BROADCAST_FORCE = 2, +}; + +struct mmc_fixup { + const char *name; + u64 rev_start; + u64 rev_end; + unsigned int manfid; + short unsigned int oemid; + short unsigned int year; + unsigned char month; + u16 cis_vendor; + u16 cis_device; + unsigned int ext_csd_rev; + const char *of_compatible; + void (*vendor_fixup)(struct mmc_card *, int); + int data; +}; + +enum mmc_busy_cmd { + MMC_BUSY_CMD6 = 0, + MMC_BUSY_ERASE = 1, + MMC_BUSY_HPI = 2, + MMC_BUSY_EXTR_SINGLE = 3, + MMC_BUSY_IO = 4, +}; + +struct sd_busy_data { + struct mmc_card *card; + u8 *reg_buf; +}; + +struct usb_class_driver { + char *name; + char * (*devnode)(const struct device *, umode_t *); + const struct file_operations *fops; + int minor_base; +}; + +enum hid_class_request { + HID_REQ_GET_REPORT = 1, + HID_REQ_GET_IDLE = 2, + HID_REQ_GET_PROTOCOL = 3, + HID_REQ_SET_REPORT = 9, + HID_REQ_SET_IDLE = 10, + HID_REQ_SET_PROTOCOL = 11, +}; + +struct hid_control_fifo { + unsigned char dir; + struct hid_report *report; + char *raw_report; +}; + +struct hid_output_fifo { + struct hid_report *report; + char *raw_report; +}; + +struct hiddev_event { + unsigned int hid; + int value; +}; + +struct hiddev_devinfo { + __u32 bustype; + __u32 busnum; + __u32 devnum; + __u32 ifnum; + __s16 vendor; + __s16 product; + __s16 version; + __u32 num_applications; +}; + +struct hiddev_collection_info { + __u32 index; + __u32 type; + __u32 usage; + __u32 level; +}; + +struct hiddev_report_info { + __u32 report_type; + __u32 report_id; + __u32 num_fields; +}; + +struct hiddev_field_info { + __u32 report_type; + __u32 report_id; + __u32 field_index; + __u32 maxusage; + __u32 flags; + __u32 physical; + __u32 logical; + __u32 application; + __s32 logical_minimum; + __s32 logical_maximum; + __s32 physical_minimum; + __s32 physical_maximum; + __u32 unit_exponent; + __u32 unit; +}; + +struct hiddev_usage_ref { + __u32 report_type; + __u32 report_id; + __u32 field_index; + __u32 usage_index; + __u32 usage_code; + __s32 value; +}; + +struct hiddev_usage_ref_multi { + struct hiddev_usage_ref uref; + __u32 num_values; + __s32 values[1024]; +}; + +struct hiddev { + int minor; + int exist; + int open; + struct mutex existancelock; + wait_queue_head_t wait; + struct hid_device *hid; + struct list_head list; + spinlock_t list_lock; + bool initialized; +}; + +struct usbhid_device { + struct hid_device *hid; + struct usb_interface *intf; + int ifnum; + unsigned int bufsize; + struct urb *urbin; + char *inbuf; + dma_addr_t inbuf_dma; + struct urb *urbctrl; + struct usb_ctrlrequest *cr; + struct hid_control_fifo ctrl[256]; + unsigned char ctrlhead; + unsigned char ctrltail; + char *ctrlbuf; + dma_addr_t ctrlbuf_dma; + long unsigned int last_ctrl; + struct urb *urbout; + struct hid_output_fifo out[256]; + unsigned char outhead; + unsigned char outtail; + char *outbuf; + dma_addr_t outbuf_dma; + long unsigned int last_out; + struct mutex mutex; + spinlock_t lock; + long unsigned int iofl; + struct timer_list io_retry; + long unsigned int stop_retry; + unsigned int retry_delay; + struct work_struct reset_work; + wait_queue_head_t wait; +}; + +struct hiddev_list { + struct hiddev_usage_ref buffer[2048]; + int head; + int tail; + unsigned int flags; + struct fasync_struct *fasync; + struct hiddev *hiddev; + struct list_head node; + struct mutex thread_lock; +}; + +struct __kernel_old_timeval { + __kernel_long_t tv_sec; + __kernel_long_t tv_usec; +}; + +struct __kernel_sock_timeval { + __s64 tv_sec; + __s64 tv_usec; +}; + +struct pipe_buffer; + +struct pipe_inode_info { + struct mutex mutex; + wait_queue_head_t rd_wait; + wait_queue_head_t wr_wait; + unsigned int head; + unsigned int tail; + unsigned int max_usage; + unsigned int ring_size; + unsigned int nr_accounted; + unsigned int readers; + unsigned int writers; + unsigned int files; + unsigned int r_counter; + unsigned int w_counter; + bool poll_usage; + struct page *tmp_page; + struct fasync_struct *fasync_readers; + struct fasync_struct *fasync_writers; + struct pipe_buffer *bufs; + struct user_struct *user; +}; + +struct user_msghdr { + void *msg_name; + int msg_namelen; + struct iovec *msg_iov; + __kernel_size_t msg_iovlen; + void *msg_control; + __kernel_size_t msg_controllen; + unsigned int msg_flags; +}; + +struct mmsghdr { + struct user_msghdr msg_hdr; + unsigned int msg_len; +}; + +struct ifconf { + int ifc_len; + union { + char *ifcu_buf; + struct ifreq *ifcu_req; + } ifc_ifcu; +}; + +typedef u32 compat_size_t; + +typedef s32 compat_int_t; + +typedef u32 compat_uint_t; + +typedef u32 compat_ulong_t; + +typedef u32 compat_uptr_t; + +typedef u32 compat_caddr_t; + +struct compat_ifmap { + compat_ulong_t mem_start; + compat_ulong_t mem_end; + short unsigned int base_addr; + unsigned char irq; + unsigned char dma; + unsigned char port; +}; + +struct compat_if_settings { + unsigned int type; + unsigned int size; + compat_uptr_t ifs_ifsu; +}; + +struct compat_ifreq { + union { + char ifrn_name[16]; + } ifr_ifrn; + union { + struct sockaddr ifru_addr; + struct sockaddr ifru_dstaddr; + struct sockaddr ifru_broadaddr; + struct sockaddr ifru_netmask; + struct sockaddr ifru_hwaddr; + short int ifru_flags; + compat_int_t ifru_ivalue; + compat_int_t ifru_mtu; + struct compat_ifmap ifru_map; + char ifru_slave[16]; + char ifru_newname[16]; + compat_caddr_t ifru_data; + struct compat_if_settings ifru_settings; + } ifr_ifru; +}; + +struct bpf_empty_prog_array { + struct bpf_prog_array hdr; + struct bpf_prog *null_prog; +}; + +enum { + SKBTX_HW_TSTAMP = 1, + SKBTX_SW_TSTAMP = 2, + SKBTX_IN_PROGRESS = 4, + SKBTX_HW_TSTAMP_USE_CYCLES = 8, + SKBTX_WIFI_STATUS = 16, + SKBTX_HW_TSTAMP_NETDEV = 32, + SKBTX_SCHED_TSTAMP = 64, +}; + +enum sock_shutdown_cmd { + SHUT_RD = 0, + SHUT_WR = 1, + SHUT_RDWR = 2, +}; + +struct compat_msghdr { + compat_uptr_t msg_name; + compat_int_t msg_namelen; + compat_uptr_t msg_iov; + compat_size_t msg_iovlen; + compat_uptr_t msg_control; + compat_size_t msg_controllen; + compat_uint_t msg_flags; +}; + +struct compat_mmsghdr { + struct compat_msghdr msg_hdr; + compat_uint_t msg_len; +}; + +enum { + SOF_TIMESTAMPING_TX_HARDWARE = 1, + SOF_TIMESTAMPING_TX_SOFTWARE = 2, + SOF_TIMESTAMPING_RX_HARDWARE = 4, + SOF_TIMESTAMPING_RX_SOFTWARE = 8, + SOF_TIMESTAMPING_SOFTWARE = 16, + SOF_TIMESTAMPING_SYS_HARDWARE = 32, + SOF_TIMESTAMPING_RAW_HARDWARE = 64, + SOF_TIMESTAMPING_OPT_ID = 128, + SOF_TIMESTAMPING_TX_SCHED = 256, + SOF_TIMESTAMPING_TX_ACK = 512, + SOF_TIMESTAMPING_OPT_CMSG = 1024, + SOF_TIMESTAMPING_OPT_TSONLY = 2048, + SOF_TIMESTAMPING_OPT_STATS = 4096, + SOF_TIMESTAMPING_OPT_PKTINFO = 8192, + SOF_TIMESTAMPING_OPT_TX_SWHW = 16384, + SOF_TIMESTAMPING_BIND_PHC = 32768, + SOF_TIMESTAMPING_OPT_ID_TCP = 65536, + SOF_TIMESTAMPING_OPT_RX_FILTER = 131072, + SOF_TIMESTAMPING_LAST = 131072, + SOF_TIMESTAMPING_MASK = 262143, +}; + +struct scm_ts_pktinfo { + __u32 if_index; + __u32 pkt_length; + __u32 reserved[2]; +}; + +struct socket_alloc { + struct socket socket; + struct inode vfs_inode; + long: 64; + long: 64; + long: 64; +}; + +struct sock_skb_cb { + u32 dropcount; +}; + +struct pipe_buf_operations; + +struct pipe_buffer { + struct page *page; + unsigned int offset; + unsigned int len; + const struct pipe_buf_operations *ops; + unsigned int flags; + long unsigned int private; +}; + +struct pipe_buf_operations { + int (*confirm)(struct pipe_inode_info *, struct pipe_buffer *); + void (*release)(struct pipe_inode_info *, struct pipe_buffer *); + bool (*try_steal)(struct pipe_inode_info *, struct pipe_buffer *); + bool (*get)(struct pipe_inode_info *, struct pipe_buffer *); +}; + +struct pseudo_fs_context { + const struct super_operations *ops; + const struct xattr_handler * const *xattr; + const struct dentry_operations *dops; + long unsigned int magic; +}; + +struct sock_ee_data_rfc4884 { + __u16 len; + __u8 flags; + __u8 reserved; +}; + +struct sock_extended_err { + __u32 ee_errno; + __u8 ee_origin; + __u8 ee_type; + __u8 ee_code; + __u8 ee_pad; + __u32 ee_info; + union { + __u32 ee_data; + struct sock_ee_data_rfc4884 ee_rfc4884; + }; +}; + +struct sock_exterr_skb { + union { + struct inet_skb_parm h4; + struct inet6_skb_parm h6; + } header; + struct sock_extended_err ee; + u16 addr_offset; + __be16 port; + u8 opt_stats: 1; + u8 unused: 7; +}; + +struct used_address { + struct __kernel_sockaddr_storage name; + unsigned int name_len; +}; + +struct skb_gso_cb { + union { + int mac_offset; + int data_offset; + }; + int encap_level; + __wsum csum; + __u16 csum_start; +}; + +struct netdev_xmit { + u16 recursion; + u8 more; + u8 skip_txqueue; +}; + +struct sd_flow_limit; + +struct softnet_data { + struct list_head poll_list; + struct sk_buff_head process_queue; + local_lock_t process_queue_bh_lock; + unsigned int processed; + unsigned int time_squeeze; + struct softnet_data *rps_ipi_list; + unsigned int received_rps; + bool in_net_rx_action; + bool in_napi_threaded_poll; + struct sd_flow_limit *flow_limit; + struct Qdisc *output_queue; + struct Qdisc **output_queue_tailp; + struct sk_buff *completion_queue; + struct netdev_xmit xmit; + long: 64; + long: 64; + long: 64; + unsigned int input_queue_head; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + call_single_data_t csd; + struct softnet_data *rps_ipi_next; + unsigned int cpu; + unsigned int input_queue_tail; + struct sk_buff_head input_pkt_queue; + struct napi_struct backlog; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + atomic_t dropped; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + spinlock_t defer_lock; + int defer_count; + int defer_ipi_scheduled; + struct sk_buff *defer_list; + long: 64; + call_single_data_t defer_csd; +}; + +struct sd_flow_limit { + u64 count; + unsigned int num_buckets; + unsigned int history_head; + u16 history[128]; + u8 buckets[0]; +}; + +struct lwtunnel_encap_ops { + int (*build_state)(struct net *, struct nlattr *, unsigned int, const void *, struct lwtunnel_state **, struct netlink_ext_ack *); + void (*destroy_state)(struct lwtunnel_state *); + int (*output)(struct net *, struct sock *, struct sk_buff *); + int (*input)(struct sk_buff *); + int (*fill_encap)(struct sk_buff *, struct lwtunnel_state *); + int (*get_encap_size)(struct lwtunnel_state *); + int (*cmp_encap)(struct lwtunnel_state *, struct lwtunnel_state *); + int (*xmit)(struct sk_buff *); + struct module *owner; +}; + +enum { + BTF_SOCK_TYPE_INET = 0, + BTF_SOCK_TYPE_INET_CONN = 1, + BTF_SOCK_TYPE_INET_REQ = 2, + BTF_SOCK_TYPE_INET_TW = 3, + BTF_SOCK_TYPE_REQ = 4, + BTF_SOCK_TYPE_SOCK = 5, + BTF_SOCK_TYPE_SOCK_COMMON = 6, + BTF_SOCK_TYPE_TCP = 7, + BTF_SOCK_TYPE_TCP_REQ = 8, + BTF_SOCK_TYPE_TCP_TW = 9, + BTF_SOCK_TYPE_TCP6 = 10, + BTF_SOCK_TYPE_UDP = 11, + BTF_SOCK_TYPE_UDP6 = 12, + BTF_SOCK_TYPE_UNIX = 13, + BTF_SOCK_TYPE_MPTCP = 14, + BTF_SOCK_TYPE_SOCKET = 15, + MAX_BTF_SOCK_TYPE = 16, +}; + +enum { + SK_DIAG_BPF_STORAGE_REQ_NONE = 0, + SK_DIAG_BPF_STORAGE_REQ_MAP_FD = 1, + __SK_DIAG_BPF_STORAGE_REQ_MAX = 2, +}; + +enum { + SK_DIAG_BPF_STORAGE_REP_NONE = 0, + SK_DIAG_BPF_STORAGE = 1, + __SK_DIAG_BPF_STORAGE_REP_MAX = 2, +}; + +enum { + SK_DIAG_BPF_STORAGE_NONE = 0, + SK_DIAG_BPF_STORAGE_PAD = 1, + SK_DIAG_BPF_STORAGE_MAP_ID = 2, + SK_DIAG_BPF_STORAGE_MAP_VALUE = 3, + __SK_DIAG_BPF_STORAGE_MAX = 4, +}; + +typedef u64 (*btf_bpf_sk_storage_get)(struct bpf_map *, struct sock *, void *, u64, gfp_t); + +typedef u64 (*btf_bpf_sk_storage_delete)(struct bpf_map *, struct sock *); + +typedef u64 (*btf_bpf_sk_storage_get_tracing)(struct bpf_map *, struct sock *, void *, u64, gfp_t); + +typedef u64 (*btf_bpf_sk_storage_delete_tracing)(struct bpf_map *, struct sock *); + +struct bpf_sk_storage_diag { + u32 nr_maps; + struct bpf_map *maps[0]; +}; + +struct bpf_iter_seq_sk_storage_map_info { + struct bpf_map *map; + unsigned int bucket_id; + unsigned int skip_elems; +}; + +struct bpf_iter__bpf_sk_storage_map { + union { + struct bpf_iter_meta *meta; + }; + union { + struct bpf_map *map; + }; + union { + struct sock *sk; + }; + union { + void *value; + }; +}; + +enum { + TCA_ACT_UNSPEC = 0, + TCA_ACT_KIND = 1, + TCA_ACT_OPTIONS = 2, + TCA_ACT_INDEX = 3, + TCA_ACT_STATS = 4, + TCA_ACT_PAD = 5, + TCA_ACT_COOKIE = 6, + TCA_ACT_FLAGS = 7, + TCA_ACT_HW_STATS = 8, + TCA_ACT_USED_HW_STATS = 9, + TCA_ACT_IN_HW_COUNT = 10, + __TCA_ACT_MAX = 11, +}; + +struct tcamsg { + unsigned char tca_family; + unsigned char tca__pad1; + short unsigned int tca__pad2; +}; + +enum { + TCA_ROOT_UNSPEC = 0, + TCA_ROOT_TAB = 1, + TCA_ROOT_FLAGS = 2, + TCA_ROOT_COUNT = 3, + TCA_ROOT_TIME_DELTA = 4, + TCA_ROOT_EXT_WARN_MSG = 5, + __TCA_ROOT_MAX = 6, +}; + +typedef int (*rtnl_doit_func)(struct sk_buff *, struct nlmsghdr *, struct netlink_ext_ack *); + +typedef int (*rtnl_dumpit_func)(struct sk_buff *, struct netlink_callback *); + +enum flow_block_command { + FLOW_BLOCK_BIND = 0, + FLOW_BLOCK_UNBIND = 1, +}; + +struct flow_block_offload { + enum flow_block_command command; + enum flow_block_binder_type binder_type; + bool block_shared; + bool unlocked_driver_cb; + struct net *net; + struct flow_block *block; + struct list_head cb_list; + struct list_head *driver_block_list; + struct netlink_ext_ack *extack; + struct Qdisc *sch; + struct list_head *cb_list_head; +}; + +struct flow_block_cb; + +struct flow_block_indr { + struct list_head list; + struct net_device *dev; + struct Qdisc *sch; + enum flow_block_binder_type binder_type; + void *data; + void *cb_priv; + void (*cleanup)(struct flow_block_cb *); +}; + +struct flow_block_cb { + struct list_head driver_list; + struct list_head list; + flow_setup_cb_t *cb; + void *cb_ident; + void *cb_priv; + void (*release)(void *); + struct flow_block_indr indr; + unsigned int refcnt; +}; + +typedef int flow_indr_block_bind_cb_t(struct net_device *, struct Qdisc *, void *, enum tc_setup_type, void *, void *, void (*)(struct flow_block_cb *)); + +struct tc_skb_cb { + struct qdisc_skb_cb qdisc_cb; + u32 drop_reason; + u16 zone; + u16 mru; + u8 post_ct: 1; + u8 post_ct_snat: 1; + u8 post_ct_dnat: 1; +}; + +struct tc_act_pernet_id { + struct list_head list; + unsigned int id; +}; + +struct teql_master { + struct Qdisc_ops qops; + struct net_device *dev; + struct Qdisc *slaves; + struct list_head master_list; + long unsigned int tx_bytes; + long unsigned int tx_packets; + long unsigned int tx_errors; + long unsigned int tx_dropped; +}; + +struct teql_sched_data { + struct Qdisc *next; + struct teql_master *m; + struct sk_buff_head q; +}; + +struct netlink_kernel_cfg { + unsigned int groups; + unsigned int flags; + void (*input)(struct sk_buff *); + int (*bind)(struct net *, int); + void (*unbind)(struct net *, int); + void (*release)(struct sock *, long unsigned int *); +}; + +struct netlink_dump_control { + int (*start)(struct netlink_callback *); + int (*dump)(struct sk_buff *, struct netlink_callback *); + int (*done)(struct netlink_callback *); + struct netlink_ext_ack *extack; + void *data; + struct module *module; + u32 min_dump_alloc; + int flags; +}; + +enum { + CTRL_CMD_UNSPEC = 0, + CTRL_CMD_NEWFAMILY = 1, + CTRL_CMD_DELFAMILY = 2, + CTRL_CMD_GETFAMILY = 3, + CTRL_CMD_NEWOPS = 4, + CTRL_CMD_DELOPS = 5, + CTRL_CMD_GETOPS = 6, + CTRL_CMD_NEWMCAST_GRP = 7, + CTRL_CMD_DELMCAST_GRP = 8, + CTRL_CMD_GETMCAST_GRP = 9, + CTRL_CMD_GETPOLICY = 10, + __CTRL_CMD_MAX = 11, +}; + +enum { + CTRL_ATTR_UNSPEC = 0, + CTRL_ATTR_FAMILY_ID = 1, + CTRL_ATTR_FAMILY_NAME = 2, + CTRL_ATTR_VERSION = 3, + CTRL_ATTR_HDRSIZE = 4, + CTRL_ATTR_MAXATTR = 5, + CTRL_ATTR_OPS = 6, + CTRL_ATTR_MCAST_GROUPS = 7, + CTRL_ATTR_POLICY = 8, + CTRL_ATTR_OP_POLICY = 9, + CTRL_ATTR_OP = 10, + __CTRL_ATTR_MAX = 11, +}; + +enum { + CTRL_ATTR_OP_UNSPEC = 0, + CTRL_ATTR_OP_ID = 1, + CTRL_ATTR_OP_FLAGS = 2, + __CTRL_ATTR_OP_MAX = 3, +}; + +enum { + CTRL_ATTR_MCAST_GRP_UNSPEC = 0, + CTRL_ATTR_MCAST_GRP_NAME = 1, + CTRL_ATTR_MCAST_GRP_ID = 2, + __CTRL_ATTR_MCAST_GRP_MAX = 3, +}; + +enum { + CTRL_ATTR_POLICY_UNSPEC = 0, + CTRL_ATTR_POLICY_DO = 1, + CTRL_ATTR_POLICY_DUMP = 2, + __CTRL_ATTR_POLICY_DUMP_MAX = 3, + CTRL_ATTR_POLICY_DUMP_MAX = 2, +}; + +struct genl_op_iter { + const struct genl_family *family; + struct genl_split_ops doit; + struct genl_split_ops dumpit; + int cmd_idx; + int entry_idx; + u32 cmd; + u8 flags; +}; + +struct genl_start_context { + const struct genl_family *family; + struct nlmsghdr *nlh; + struct netlink_ext_ack *extack; + const struct genl_split_ops *ops; + int hdrlen; +}; + +struct netlink_policy_dump_state; + +struct ctrl_dump_policy_ctx { + struct netlink_policy_dump_state *state; + const struct genl_family *rt; + struct genl_op_iter *op_iter; + u32 op; + u16 fam_id; + u8 dump_map: 1; + u8 single_op: 1; +}; + +enum tunable_id { + ETHTOOL_ID_UNSPEC = 0, + ETHTOOL_RX_COPYBREAK = 1, + ETHTOOL_TX_COPYBREAK = 2, + ETHTOOL_PFC_PREVENTION_TOUT = 3, + ETHTOOL_TX_COPYBREAK_BUF_SIZE = 4, + __ETHTOOL_TUNABLE_COUNT = 5, +}; + +enum phy_tunable_id { + ETHTOOL_PHY_ID_UNSPEC = 0, + ETHTOOL_PHY_DOWNSHIFT = 1, + ETHTOOL_PHY_FAST_LINK_DOWN = 2, + ETHTOOL_PHY_EDPD = 3, + __ETHTOOL_PHY_TUNABLE_COUNT = 4, +}; + +enum { + ETH_RSS_HASH_TOP_BIT = 0, + ETH_RSS_HASH_XOR_BIT = 1, + ETH_RSS_HASH_CRC32_BIT = 2, + ETH_RSS_HASH_FUNCS_COUNT = 3, +}; + +enum { + ETHTOOL_MSG_USER_NONE = 0, + ETHTOOL_MSG_STRSET_GET = 1, + ETHTOOL_MSG_LINKINFO_GET = 2, + ETHTOOL_MSG_LINKINFO_SET = 3, + ETHTOOL_MSG_LINKMODES_GET = 4, + ETHTOOL_MSG_LINKMODES_SET = 5, + ETHTOOL_MSG_LINKSTATE_GET = 6, + ETHTOOL_MSG_DEBUG_GET = 7, + ETHTOOL_MSG_DEBUG_SET = 8, + ETHTOOL_MSG_WOL_GET = 9, + ETHTOOL_MSG_WOL_SET = 10, + ETHTOOL_MSG_FEATURES_GET = 11, + ETHTOOL_MSG_FEATURES_SET = 12, + ETHTOOL_MSG_PRIVFLAGS_GET = 13, + ETHTOOL_MSG_PRIVFLAGS_SET = 14, + ETHTOOL_MSG_RINGS_GET = 15, + ETHTOOL_MSG_RINGS_SET = 16, + ETHTOOL_MSG_CHANNELS_GET = 17, + ETHTOOL_MSG_CHANNELS_SET = 18, + ETHTOOL_MSG_COALESCE_GET = 19, + ETHTOOL_MSG_COALESCE_SET = 20, + ETHTOOL_MSG_PAUSE_GET = 21, + ETHTOOL_MSG_PAUSE_SET = 22, + ETHTOOL_MSG_EEE_GET = 23, + ETHTOOL_MSG_EEE_SET = 24, + ETHTOOL_MSG_TSINFO_GET = 25, + ETHTOOL_MSG_CABLE_TEST_ACT = 26, + ETHTOOL_MSG_CABLE_TEST_TDR_ACT = 27, + ETHTOOL_MSG_TUNNEL_INFO_GET = 28, + ETHTOOL_MSG_FEC_GET = 29, + ETHTOOL_MSG_FEC_SET = 30, + ETHTOOL_MSG_MODULE_EEPROM_GET = 31, + ETHTOOL_MSG_STATS_GET = 32, + ETHTOOL_MSG_PHC_VCLOCKS_GET = 33, + ETHTOOL_MSG_MODULE_GET = 34, + ETHTOOL_MSG_MODULE_SET = 35, + ETHTOOL_MSG_PSE_GET = 36, + ETHTOOL_MSG_PSE_SET = 37, + ETHTOOL_MSG_RSS_GET = 38, + ETHTOOL_MSG_PLCA_GET_CFG = 39, + ETHTOOL_MSG_PLCA_SET_CFG = 40, + ETHTOOL_MSG_PLCA_GET_STATUS = 41, + ETHTOOL_MSG_MM_GET = 42, + ETHTOOL_MSG_MM_SET = 43, + ETHTOOL_MSG_MODULE_FW_FLASH_ACT = 44, + ETHTOOL_MSG_PHY_GET = 45, + __ETHTOOL_MSG_USER_CNT = 46, + ETHTOOL_MSG_USER_MAX = 45, +}; + +enum { + ETHTOOL_MSG_KERNEL_NONE = 0, + ETHTOOL_MSG_STRSET_GET_REPLY = 1, + ETHTOOL_MSG_LINKINFO_GET_REPLY = 2, + ETHTOOL_MSG_LINKINFO_NTF = 3, + ETHTOOL_MSG_LINKMODES_GET_REPLY = 4, + ETHTOOL_MSG_LINKMODES_NTF = 5, + ETHTOOL_MSG_LINKSTATE_GET_REPLY = 6, + ETHTOOL_MSG_DEBUG_GET_REPLY = 7, + ETHTOOL_MSG_DEBUG_NTF = 8, + ETHTOOL_MSG_WOL_GET_REPLY = 9, + ETHTOOL_MSG_WOL_NTF = 10, + ETHTOOL_MSG_FEATURES_GET_REPLY = 11, + ETHTOOL_MSG_FEATURES_SET_REPLY = 12, + ETHTOOL_MSG_FEATURES_NTF = 13, + ETHTOOL_MSG_PRIVFLAGS_GET_REPLY = 14, + ETHTOOL_MSG_PRIVFLAGS_NTF = 15, + ETHTOOL_MSG_RINGS_GET_REPLY = 16, + ETHTOOL_MSG_RINGS_NTF = 17, + ETHTOOL_MSG_CHANNELS_GET_REPLY = 18, + ETHTOOL_MSG_CHANNELS_NTF = 19, + ETHTOOL_MSG_COALESCE_GET_REPLY = 20, + ETHTOOL_MSG_COALESCE_NTF = 21, + ETHTOOL_MSG_PAUSE_GET_REPLY = 22, + ETHTOOL_MSG_PAUSE_NTF = 23, + ETHTOOL_MSG_EEE_GET_REPLY = 24, + ETHTOOL_MSG_EEE_NTF = 25, + ETHTOOL_MSG_TSINFO_GET_REPLY = 26, + ETHTOOL_MSG_CABLE_TEST_NTF = 27, + ETHTOOL_MSG_CABLE_TEST_TDR_NTF = 28, + ETHTOOL_MSG_TUNNEL_INFO_GET_REPLY = 29, + ETHTOOL_MSG_FEC_GET_REPLY = 30, + ETHTOOL_MSG_FEC_NTF = 31, + ETHTOOL_MSG_MODULE_EEPROM_GET_REPLY = 32, + ETHTOOL_MSG_STATS_GET_REPLY = 33, + ETHTOOL_MSG_PHC_VCLOCKS_GET_REPLY = 34, + ETHTOOL_MSG_MODULE_GET_REPLY = 35, + ETHTOOL_MSG_MODULE_NTF = 36, + ETHTOOL_MSG_PSE_GET_REPLY = 37, + ETHTOOL_MSG_RSS_GET_REPLY = 38, + ETHTOOL_MSG_PLCA_GET_CFG_REPLY = 39, + ETHTOOL_MSG_PLCA_GET_STATUS_REPLY = 40, + ETHTOOL_MSG_PLCA_NTF = 41, + ETHTOOL_MSG_MM_GET_REPLY = 42, + ETHTOOL_MSG_MM_NTF = 43, + ETHTOOL_MSG_MODULE_FW_FLASH_NTF = 44, + ETHTOOL_MSG_PHY_GET_REPLY = 45, + ETHTOOL_MSG_PHY_NTF = 46, + __ETHTOOL_MSG_KERNEL_CNT = 47, + ETHTOOL_MSG_KERNEL_MAX = 46, +}; + +enum ethtool_header_flags { + ETHTOOL_FLAG_COMPACT_BITSETS = 1, + ETHTOOL_FLAG_OMIT_REPLY = 2, + ETHTOOL_FLAG_STATS = 4, +}; + +enum { + ETHTOOL_A_HEADER_UNSPEC = 0, + ETHTOOL_A_HEADER_DEV_INDEX = 1, + ETHTOOL_A_HEADER_DEV_NAME = 2, + ETHTOOL_A_HEADER_FLAGS = 3, + ETHTOOL_A_HEADER_PHY_INDEX = 4, + __ETHTOOL_A_HEADER_CNT = 5, + ETHTOOL_A_HEADER_MAX = 4, +}; + +enum { + ETHTOOL_A_STRSET_UNSPEC = 0, + ETHTOOL_A_STRSET_HEADER = 1, + ETHTOOL_A_STRSET_STRINGSETS = 2, + ETHTOOL_A_STRSET_COUNTS_ONLY = 3, + __ETHTOOL_A_STRSET_CNT = 4, + ETHTOOL_A_STRSET_MAX = 3, +}; + +enum { + ETHTOOL_A_LINKINFO_UNSPEC = 0, + ETHTOOL_A_LINKINFO_HEADER = 1, + ETHTOOL_A_LINKINFO_PORT = 2, + ETHTOOL_A_LINKINFO_PHYADDR = 3, + ETHTOOL_A_LINKINFO_TP_MDIX = 4, + ETHTOOL_A_LINKINFO_TP_MDIX_CTRL = 5, + ETHTOOL_A_LINKINFO_TRANSCEIVER = 6, + __ETHTOOL_A_LINKINFO_CNT = 7, + ETHTOOL_A_LINKINFO_MAX = 6, +}; + +enum { + ETHTOOL_A_LINKMODES_UNSPEC = 0, + ETHTOOL_A_LINKMODES_HEADER = 1, + ETHTOOL_A_LINKMODES_AUTONEG = 2, + ETHTOOL_A_LINKMODES_OURS = 3, + ETHTOOL_A_LINKMODES_PEER = 4, + ETHTOOL_A_LINKMODES_SPEED = 5, + ETHTOOL_A_LINKMODES_DUPLEX = 6, + ETHTOOL_A_LINKMODES_MASTER_SLAVE_CFG = 7, + ETHTOOL_A_LINKMODES_MASTER_SLAVE_STATE = 8, + ETHTOOL_A_LINKMODES_LANES = 9, + ETHTOOL_A_LINKMODES_RATE_MATCHING = 10, + __ETHTOOL_A_LINKMODES_CNT = 11, + ETHTOOL_A_LINKMODES_MAX = 10, +}; + +enum { + ETHTOOL_A_LINKSTATE_UNSPEC = 0, + ETHTOOL_A_LINKSTATE_HEADER = 1, + ETHTOOL_A_LINKSTATE_LINK = 2, + ETHTOOL_A_LINKSTATE_SQI = 3, + ETHTOOL_A_LINKSTATE_SQI_MAX = 4, + ETHTOOL_A_LINKSTATE_EXT_STATE = 5, + ETHTOOL_A_LINKSTATE_EXT_SUBSTATE = 6, + ETHTOOL_A_LINKSTATE_EXT_DOWN_CNT = 7, + __ETHTOOL_A_LINKSTATE_CNT = 8, + ETHTOOL_A_LINKSTATE_MAX = 7, +}; + +enum { + ETHTOOL_A_DEBUG_UNSPEC = 0, + ETHTOOL_A_DEBUG_HEADER = 1, + ETHTOOL_A_DEBUG_MSGMASK = 2, + __ETHTOOL_A_DEBUG_CNT = 3, + ETHTOOL_A_DEBUG_MAX = 2, +}; + +enum { + ETHTOOL_A_WOL_UNSPEC = 0, + ETHTOOL_A_WOL_HEADER = 1, + ETHTOOL_A_WOL_MODES = 2, + ETHTOOL_A_WOL_SOPASS = 3, + __ETHTOOL_A_WOL_CNT = 4, + ETHTOOL_A_WOL_MAX = 3, +}; + +enum { + ETHTOOL_A_FEATURES_UNSPEC = 0, + ETHTOOL_A_FEATURES_HEADER = 1, + ETHTOOL_A_FEATURES_HW = 2, + ETHTOOL_A_FEATURES_WANTED = 3, + ETHTOOL_A_FEATURES_ACTIVE = 4, + ETHTOOL_A_FEATURES_NOCHANGE = 5, + __ETHTOOL_A_FEATURES_CNT = 6, + ETHTOOL_A_FEATURES_MAX = 5, +}; + +enum { + ETHTOOL_A_PRIVFLAGS_UNSPEC = 0, + ETHTOOL_A_PRIVFLAGS_HEADER = 1, + ETHTOOL_A_PRIVFLAGS_FLAGS = 2, + __ETHTOOL_A_PRIVFLAGS_CNT = 3, + ETHTOOL_A_PRIVFLAGS_MAX = 2, +}; + +enum { + ETHTOOL_A_RINGS_UNSPEC = 0, + ETHTOOL_A_RINGS_HEADER = 1, + ETHTOOL_A_RINGS_RX_MAX = 2, + ETHTOOL_A_RINGS_RX_MINI_MAX = 3, + ETHTOOL_A_RINGS_RX_JUMBO_MAX = 4, + ETHTOOL_A_RINGS_TX_MAX = 5, + ETHTOOL_A_RINGS_RX = 6, + ETHTOOL_A_RINGS_RX_MINI = 7, + ETHTOOL_A_RINGS_RX_JUMBO = 8, + ETHTOOL_A_RINGS_TX = 9, + ETHTOOL_A_RINGS_RX_BUF_LEN = 10, + ETHTOOL_A_RINGS_TCP_DATA_SPLIT = 11, + ETHTOOL_A_RINGS_CQE_SIZE = 12, + ETHTOOL_A_RINGS_TX_PUSH = 13, + ETHTOOL_A_RINGS_RX_PUSH = 14, + ETHTOOL_A_RINGS_TX_PUSH_BUF_LEN = 15, + ETHTOOL_A_RINGS_TX_PUSH_BUF_LEN_MAX = 16, + __ETHTOOL_A_RINGS_CNT = 17, + ETHTOOL_A_RINGS_MAX = 16, +}; + +enum { + ETHTOOL_A_CHANNELS_UNSPEC = 0, + ETHTOOL_A_CHANNELS_HEADER = 1, + ETHTOOL_A_CHANNELS_RX_MAX = 2, + ETHTOOL_A_CHANNELS_TX_MAX = 3, + ETHTOOL_A_CHANNELS_OTHER_MAX = 4, + ETHTOOL_A_CHANNELS_COMBINED_MAX = 5, + ETHTOOL_A_CHANNELS_RX_COUNT = 6, + ETHTOOL_A_CHANNELS_TX_COUNT = 7, + ETHTOOL_A_CHANNELS_OTHER_COUNT = 8, + ETHTOOL_A_CHANNELS_COMBINED_COUNT = 9, + __ETHTOOL_A_CHANNELS_CNT = 10, + ETHTOOL_A_CHANNELS_MAX = 9, +}; + +enum { + ETHTOOL_A_COALESCE_UNSPEC = 0, + ETHTOOL_A_COALESCE_HEADER = 1, + ETHTOOL_A_COALESCE_RX_USECS = 2, + ETHTOOL_A_COALESCE_RX_MAX_FRAMES = 3, + ETHTOOL_A_COALESCE_RX_USECS_IRQ = 4, + ETHTOOL_A_COALESCE_RX_MAX_FRAMES_IRQ = 5, + ETHTOOL_A_COALESCE_TX_USECS = 6, + ETHTOOL_A_COALESCE_TX_MAX_FRAMES = 7, + ETHTOOL_A_COALESCE_TX_USECS_IRQ = 8, + ETHTOOL_A_COALESCE_TX_MAX_FRAMES_IRQ = 9, + ETHTOOL_A_COALESCE_STATS_BLOCK_USECS = 10, + ETHTOOL_A_COALESCE_USE_ADAPTIVE_RX = 11, + ETHTOOL_A_COALESCE_USE_ADAPTIVE_TX = 12, + ETHTOOL_A_COALESCE_PKT_RATE_LOW = 13, + ETHTOOL_A_COALESCE_RX_USECS_LOW = 14, + ETHTOOL_A_COALESCE_RX_MAX_FRAMES_LOW = 15, + ETHTOOL_A_COALESCE_TX_USECS_LOW = 16, + ETHTOOL_A_COALESCE_TX_MAX_FRAMES_LOW = 17, + ETHTOOL_A_COALESCE_PKT_RATE_HIGH = 18, + ETHTOOL_A_COALESCE_RX_USECS_HIGH = 19, + ETHTOOL_A_COALESCE_RX_MAX_FRAMES_HIGH = 20, + ETHTOOL_A_COALESCE_TX_USECS_HIGH = 21, + ETHTOOL_A_COALESCE_TX_MAX_FRAMES_HIGH = 22, + ETHTOOL_A_COALESCE_RATE_SAMPLE_INTERVAL = 23, + ETHTOOL_A_COALESCE_USE_CQE_MODE_TX = 24, + ETHTOOL_A_COALESCE_USE_CQE_MODE_RX = 25, + ETHTOOL_A_COALESCE_TX_AGGR_MAX_BYTES = 26, + ETHTOOL_A_COALESCE_TX_AGGR_MAX_FRAMES = 27, + ETHTOOL_A_COALESCE_TX_AGGR_TIME_USECS = 28, + ETHTOOL_A_COALESCE_RX_PROFILE = 29, + ETHTOOL_A_COALESCE_TX_PROFILE = 30, + __ETHTOOL_A_COALESCE_CNT = 31, + ETHTOOL_A_COALESCE_MAX = 30, +}; + +enum { + ETHTOOL_A_PAUSE_UNSPEC = 0, + ETHTOOL_A_PAUSE_HEADER = 1, + ETHTOOL_A_PAUSE_AUTONEG = 2, + ETHTOOL_A_PAUSE_RX = 3, + ETHTOOL_A_PAUSE_TX = 4, + ETHTOOL_A_PAUSE_STATS = 5, + ETHTOOL_A_PAUSE_STATS_SRC = 6, + __ETHTOOL_A_PAUSE_CNT = 7, + ETHTOOL_A_PAUSE_MAX = 6, +}; + +enum { + ETHTOOL_A_EEE_UNSPEC = 0, + ETHTOOL_A_EEE_HEADER = 1, + ETHTOOL_A_EEE_MODES_OURS = 2, + ETHTOOL_A_EEE_MODES_PEER = 3, + ETHTOOL_A_EEE_ACTIVE = 4, + ETHTOOL_A_EEE_ENABLED = 5, + ETHTOOL_A_EEE_TX_LPI_ENABLED = 6, + ETHTOOL_A_EEE_TX_LPI_TIMER = 7, + __ETHTOOL_A_EEE_CNT = 8, + ETHTOOL_A_EEE_MAX = 7, +}; + +enum { + ETHTOOL_A_TSINFO_UNSPEC = 0, + ETHTOOL_A_TSINFO_HEADER = 1, + ETHTOOL_A_TSINFO_TIMESTAMPING = 2, + ETHTOOL_A_TSINFO_TX_TYPES = 3, + ETHTOOL_A_TSINFO_RX_FILTERS = 4, + ETHTOOL_A_TSINFO_PHC_INDEX = 5, + ETHTOOL_A_TSINFO_STATS = 6, + __ETHTOOL_A_TSINFO_CNT = 7, + ETHTOOL_A_TSINFO_MAX = 6, +}; + +enum { + ETHTOOL_A_PHC_VCLOCKS_UNSPEC = 0, + ETHTOOL_A_PHC_VCLOCKS_HEADER = 1, + ETHTOOL_A_PHC_VCLOCKS_NUM = 2, + ETHTOOL_A_PHC_VCLOCKS_INDEX = 3, + __ETHTOOL_A_PHC_VCLOCKS_CNT = 4, + ETHTOOL_A_PHC_VCLOCKS_MAX = 3, +}; + +enum { + ETHTOOL_A_CABLE_TEST_UNSPEC = 0, + ETHTOOL_A_CABLE_TEST_HEADER = 1, + __ETHTOOL_A_CABLE_TEST_CNT = 2, + ETHTOOL_A_CABLE_TEST_MAX = 1, +}; + +enum { + ETHTOOL_A_CABLE_TEST_TDR_UNSPEC = 0, + ETHTOOL_A_CABLE_TEST_TDR_HEADER = 1, + ETHTOOL_A_CABLE_TEST_TDR_CFG = 2, + __ETHTOOL_A_CABLE_TEST_TDR_CNT = 3, + ETHTOOL_A_CABLE_TEST_TDR_MAX = 2, +}; + +enum { + ETHTOOL_A_TUNNEL_INFO_UNSPEC = 0, + ETHTOOL_A_TUNNEL_INFO_HEADER = 1, + ETHTOOL_A_TUNNEL_INFO_UDP_PORTS = 2, + __ETHTOOL_A_TUNNEL_INFO_CNT = 3, + ETHTOOL_A_TUNNEL_INFO_MAX = 2, +}; + +enum { + ETHTOOL_A_FEC_UNSPEC = 0, + ETHTOOL_A_FEC_HEADER = 1, + ETHTOOL_A_FEC_MODES = 2, + ETHTOOL_A_FEC_AUTO = 3, + ETHTOOL_A_FEC_ACTIVE = 4, + ETHTOOL_A_FEC_STATS = 5, + __ETHTOOL_A_FEC_CNT = 6, + ETHTOOL_A_FEC_MAX = 5, +}; + +enum { + ETHTOOL_A_MODULE_EEPROM_UNSPEC = 0, + ETHTOOL_A_MODULE_EEPROM_HEADER = 1, + ETHTOOL_A_MODULE_EEPROM_OFFSET = 2, + ETHTOOL_A_MODULE_EEPROM_LENGTH = 3, + ETHTOOL_A_MODULE_EEPROM_PAGE = 4, + ETHTOOL_A_MODULE_EEPROM_BANK = 5, + ETHTOOL_A_MODULE_EEPROM_I2C_ADDRESS = 6, + ETHTOOL_A_MODULE_EEPROM_DATA = 7, + __ETHTOOL_A_MODULE_EEPROM_CNT = 8, + ETHTOOL_A_MODULE_EEPROM_MAX = 7, +}; + +enum { + ETHTOOL_A_STATS_UNSPEC = 0, + ETHTOOL_A_STATS_PAD = 1, + ETHTOOL_A_STATS_HEADER = 2, + ETHTOOL_A_STATS_GROUPS = 3, + ETHTOOL_A_STATS_GRP = 4, + ETHTOOL_A_STATS_SRC = 5, + __ETHTOOL_A_STATS_CNT = 6, + ETHTOOL_A_STATS_MAX = 5, +}; + +enum { + ETHTOOL_STATS_ETH_PHY = 0, + ETHTOOL_STATS_ETH_MAC = 1, + ETHTOOL_STATS_ETH_CTRL = 2, + ETHTOOL_STATS_RMON = 3, + __ETHTOOL_STATS_CNT = 4, +}; + +enum { + ETHTOOL_A_STATS_ETH_PHY_5_SYM_ERR = 0, + __ETHTOOL_A_STATS_ETH_PHY_CNT = 1, + ETHTOOL_A_STATS_ETH_PHY_MAX = 0, +}; + +enum { + ETHTOOL_A_STATS_ETH_MAC_2_TX_PKT = 0, + ETHTOOL_A_STATS_ETH_MAC_3_SINGLE_COL = 1, + ETHTOOL_A_STATS_ETH_MAC_4_MULTI_COL = 2, + ETHTOOL_A_STATS_ETH_MAC_5_RX_PKT = 3, + ETHTOOL_A_STATS_ETH_MAC_6_FCS_ERR = 4, + ETHTOOL_A_STATS_ETH_MAC_7_ALIGN_ERR = 5, + ETHTOOL_A_STATS_ETH_MAC_8_TX_BYTES = 6, + ETHTOOL_A_STATS_ETH_MAC_9_TX_DEFER = 7, + ETHTOOL_A_STATS_ETH_MAC_10_LATE_COL = 8, + ETHTOOL_A_STATS_ETH_MAC_11_XS_COL = 9, + ETHTOOL_A_STATS_ETH_MAC_12_TX_INT_ERR = 10, + ETHTOOL_A_STATS_ETH_MAC_13_CS_ERR = 11, + ETHTOOL_A_STATS_ETH_MAC_14_RX_BYTES = 12, + ETHTOOL_A_STATS_ETH_MAC_15_RX_INT_ERR = 13, + ETHTOOL_A_STATS_ETH_MAC_18_TX_MCAST = 14, + ETHTOOL_A_STATS_ETH_MAC_19_TX_BCAST = 15, + ETHTOOL_A_STATS_ETH_MAC_20_XS_DEFER = 16, + ETHTOOL_A_STATS_ETH_MAC_21_RX_MCAST = 17, + ETHTOOL_A_STATS_ETH_MAC_22_RX_BCAST = 18, + ETHTOOL_A_STATS_ETH_MAC_23_IR_LEN_ERR = 19, + ETHTOOL_A_STATS_ETH_MAC_24_OOR_LEN = 20, + ETHTOOL_A_STATS_ETH_MAC_25_TOO_LONG_ERR = 21, + __ETHTOOL_A_STATS_ETH_MAC_CNT = 22, + ETHTOOL_A_STATS_ETH_MAC_MAX = 21, +}; + +enum { + ETHTOOL_A_STATS_ETH_CTRL_3_TX = 0, + ETHTOOL_A_STATS_ETH_CTRL_4_RX = 1, + ETHTOOL_A_STATS_ETH_CTRL_5_RX_UNSUP = 2, + __ETHTOOL_A_STATS_ETH_CTRL_CNT = 3, + ETHTOOL_A_STATS_ETH_CTRL_MAX = 2, +}; + +enum { + ETHTOOL_A_STATS_RMON_UNDERSIZE = 0, + ETHTOOL_A_STATS_RMON_OVERSIZE = 1, + ETHTOOL_A_STATS_RMON_FRAG = 2, + ETHTOOL_A_STATS_RMON_JABBER = 3, + __ETHTOOL_A_STATS_RMON_CNT = 4, + ETHTOOL_A_STATS_RMON_MAX = 3, +}; + +enum { + ETHTOOL_A_MODULE_UNSPEC = 0, + ETHTOOL_A_MODULE_HEADER = 1, + ETHTOOL_A_MODULE_POWER_MODE_POLICY = 2, + ETHTOOL_A_MODULE_POWER_MODE = 3, + __ETHTOOL_A_MODULE_CNT = 4, + ETHTOOL_A_MODULE_MAX = 3, +}; + +enum { + ETHTOOL_A_PSE_UNSPEC = 0, + ETHTOOL_A_PSE_HEADER = 1, + ETHTOOL_A_PODL_PSE_ADMIN_STATE = 2, + ETHTOOL_A_PODL_PSE_ADMIN_CONTROL = 3, + ETHTOOL_A_PODL_PSE_PW_D_STATUS = 4, + ETHTOOL_A_C33_PSE_ADMIN_STATE = 5, + ETHTOOL_A_C33_PSE_ADMIN_CONTROL = 6, + ETHTOOL_A_C33_PSE_PW_D_STATUS = 7, + ETHTOOL_A_C33_PSE_PW_CLASS = 8, + ETHTOOL_A_C33_PSE_ACTUAL_PW = 9, + ETHTOOL_A_C33_PSE_EXT_STATE = 10, + ETHTOOL_A_C33_PSE_EXT_SUBSTATE = 11, + ETHTOOL_A_C33_PSE_AVAIL_PW_LIMIT = 12, + ETHTOOL_A_C33_PSE_PW_LIMIT_RANGES = 13, + __ETHTOOL_A_PSE_CNT = 14, + ETHTOOL_A_PSE_MAX = 13, +}; + +enum { + ETHTOOL_A_RSS_UNSPEC = 0, + ETHTOOL_A_RSS_HEADER = 1, + ETHTOOL_A_RSS_CONTEXT = 2, + ETHTOOL_A_RSS_HFUNC = 3, + ETHTOOL_A_RSS_INDIR = 4, + ETHTOOL_A_RSS_HKEY = 5, + ETHTOOL_A_RSS_INPUT_XFRM = 6, + ETHTOOL_A_RSS_START_CONTEXT = 7, + __ETHTOOL_A_RSS_CNT = 8, + ETHTOOL_A_RSS_MAX = 7, +}; + +enum { + ETHTOOL_A_PLCA_UNSPEC = 0, + ETHTOOL_A_PLCA_HEADER = 1, + ETHTOOL_A_PLCA_VERSION = 2, + ETHTOOL_A_PLCA_ENABLED = 3, + ETHTOOL_A_PLCA_STATUS = 4, + ETHTOOL_A_PLCA_NODE_CNT = 5, + ETHTOOL_A_PLCA_NODE_ID = 6, + ETHTOOL_A_PLCA_TO_TMR = 7, + ETHTOOL_A_PLCA_BURST_CNT = 8, + ETHTOOL_A_PLCA_BURST_TMR = 9, + __ETHTOOL_A_PLCA_CNT = 10, + ETHTOOL_A_PLCA_MAX = 9, +}; + +enum { + ETHTOOL_A_MM_UNSPEC = 0, + ETHTOOL_A_MM_HEADER = 1, + ETHTOOL_A_MM_PMAC_ENABLED = 2, + ETHTOOL_A_MM_TX_ENABLED = 3, + ETHTOOL_A_MM_TX_ACTIVE = 4, + ETHTOOL_A_MM_TX_MIN_FRAG_SIZE = 5, + ETHTOOL_A_MM_RX_MIN_FRAG_SIZE = 6, + ETHTOOL_A_MM_VERIFY_ENABLED = 7, + ETHTOOL_A_MM_VERIFY_STATUS = 8, + ETHTOOL_A_MM_VERIFY_TIME = 9, + ETHTOOL_A_MM_MAX_VERIFY_TIME = 10, + ETHTOOL_A_MM_STATS = 11, + __ETHTOOL_A_MM_CNT = 12, + ETHTOOL_A_MM_MAX = 11, +}; + +enum { + ETHTOOL_A_MODULE_FW_FLASH_UNSPEC = 0, + ETHTOOL_A_MODULE_FW_FLASH_HEADER = 1, + ETHTOOL_A_MODULE_FW_FLASH_FILE_NAME = 2, + ETHTOOL_A_MODULE_FW_FLASH_PASSWORD = 3, + ETHTOOL_A_MODULE_FW_FLASH_STATUS = 4, + ETHTOOL_A_MODULE_FW_FLASH_STATUS_MSG = 5, + ETHTOOL_A_MODULE_FW_FLASH_DONE = 6, + ETHTOOL_A_MODULE_FW_FLASH_TOTAL = 7, + __ETHTOOL_A_MODULE_FW_FLASH_CNT = 8, + ETHTOOL_A_MODULE_FW_FLASH_MAX = 7, +}; + +enum { + ETHTOOL_A_PHY_UNSPEC = 0, + ETHTOOL_A_PHY_HEADER = 1, + ETHTOOL_A_PHY_INDEX = 2, + ETHTOOL_A_PHY_DRVNAME = 3, + ETHTOOL_A_PHY_NAME = 4, + ETHTOOL_A_PHY_UPSTREAM_TYPE = 5, + ETHTOOL_A_PHY_UPSTREAM_INDEX = 6, + ETHTOOL_A_PHY_UPSTREAM_SFP_NAME = 7, + ETHTOOL_A_PHY_DOWNSTREAM_SFP_NAME = 8, + __ETHTOOL_A_PHY_CNT = 9, + ETHTOOL_A_PHY_MAX = 8, +}; + +struct ethnl_req_info { + struct net_device *dev; + netdevice_tracker dev_tracker; + u32 flags; + u32 phy_index; +}; + +struct ethnl_reply_data { + struct net_device *dev; +}; + +struct ethnl_request_ops { + u8 request_cmd; + u8 reply_cmd; + u16 hdr_attr; + unsigned int req_info_size; + unsigned int reply_data_size; + bool allow_nodev_do; + u8 set_ntf_cmd; + int (*parse_request)(struct ethnl_req_info *, struct nlattr **, struct netlink_ext_ack *); + int (*prepare_data)(const struct ethnl_req_info *, struct ethnl_reply_data *, const struct genl_info *); + int (*reply_size)(const struct ethnl_req_info *, const struct ethnl_reply_data *); + int (*fill_reply)(struct sk_buff *, const struct ethnl_req_info *, const struct ethnl_reply_data *); + void (*cleanup_data)(struct ethnl_reply_data *); + int (*set_validate)(struct ethnl_req_info *, struct genl_info *); + int (*set)(struct ethnl_req_info *, struct genl_info *); +}; + +typedef const char (* const ethnl_string_array_t)[32]; + +struct features_reply_data { + struct ethnl_reply_data base; + u32 hw[2]; + u32 wanted[2]; + u32 active[2]; + u32 nochange[2]; + u32 all[2]; +}; + +enum ethtool_reset_flags { + ETH_RESET_MGMT = 1, + ETH_RESET_IRQ = 2, + ETH_RESET_DMA = 4, + ETH_RESET_FILTER = 8, + ETH_RESET_OFFLOAD = 16, + ETH_RESET_MAC = 32, + ETH_RESET_PHY = 64, + ETH_RESET_RAM = 128, + ETH_RESET_AP = 256, + ETH_RESET_DEDICATED = 65535, + ETH_RESET_ALL = 4294967295, +}; + +struct ethnl_module_fw_flash_ntf_params { + u32 portid; + u32 seq; + bool closed_sock; +}; + +struct ethtool_module_fw_flash_params { + __be32 password; + u8 password_valid: 1; +}; + +struct ethtool_cmis_fw_update_params { + struct net_device *dev; + struct ethtool_module_fw_flash_params params; + struct ethnl_module_fw_flash_ntf_params ntf_params; + const struct firmware *fw; +}; + +struct ethtool_cmis_cdb { + u8 cmis_rev; + u8 read_write_len_ext; + u16 max_completion_time; +}; + +enum ethtool_cmis_cdb_cmd_id { + ETHTOOL_CMIS_CDB_CMD_QUERY_STATUS = 0, + ETHTOOL_CMIS_CDB_CMD_MODULE_FEATURES = 64, + ETHTOOL_CMIS_CDB_CMD_FW_MANAGMENT_FEATURES = 65, + ETHTOOL_CMIS_CDB_CMD_START_FW_DOWNLOAD = 257, + ETHTOOL_CMIS_CDB_CMD_WRITE_FW_BLOCK_LPL = 259, + ETHTOOL_CMIS_CDB_CMD_COMPLETE_FW_DOWNLOAD = 263, + ETHTOOL_CMIS_CDB_CMD_RUN_FW_IMAGE = 265, + ETHTOOL_CMIS_CDB_CMD_COMMIT_FW_IMAGE = 266, +}; + +struct ethtool_cmis_cdb_request { + __be16 id; + union { + struct { + __be16 epl_len; + u8 lpl_len; + u8 chk_code; + u8 resv1; + u8 resv2; + u8 payload[120]; + }; + struct { + __be16 epl_len; + u8 lpl_len; + u8 chk_code; + u8 resv1; + u8 resv2; + u8 payload[120]; + } body; + }; +}; + +struct ethtool_cmis_cdb_cmd_args { + struct ethtool_cmis_cdb_request req; + u16 max_duration; + u8 read_write_len_ext; + u8 msleep_pre_rpl; + u8 rpl_exp_len; + u8 flags; + char *err_msg; +}; + +struct cmis_fw_update_fw_mng_features { + u8 start_cmd_payload_size; + u16 max_duration_start; + u16 max_duration_write; + u16 max_duration_complete; +}; + +struct cmis_cdb_fw_mng_features_rpl { + u8 resv1; + u8 resv2; + u8 start_cmd_payload_size; + u8 resv3; + u8 read_write_len_ext; + u8 write_mechanism; + u8 resv4; + u8 resv5; + __be16 max_duration_start; + __be16 resv6; + __be16 max_duration_write; + __be16 max_duration_complete; + __be16 resv7; +}; + +enum cmis_cdb_fw_write_mechanism { + CMIS_CDB_FW_WRITE_MECHANISM_LPL = 1, + CMIS_CDB_FW_WRITE_MECHANISM_BOTH = 17, +}; + +struct cmis_cdb_start_fw_download_pl_h { + __be32 image_size; + __be32 resv1; +}; + +struct cmis_cdb_start_fw_download_pl { + union { + struct { + __be32 image_size; + __be32 resv1; + }; + struct cmis_cdb_start_fw_download_pl_h head; + }; + u8 vendor_data[112]; +}; + +struct cmis_cdb_write_fw_block_lpl_pl { + __be32 block_address; + u8 fw_block[116]; +}; + +enum { + CMIS_MODULE_LOW_PWR = 1, + CMIS_MODULE_READY = 3, +}; + +struct cmis_cdb_run_fw_image_pl { + u8 resv1; + u8 image_to_run; + u16 delay_to_reset; +}; + +struct nf_ipv6_ops { + void (*route_input)(struct sk_buff *); + int (*fragment)(struct net *, struct sock *, struct sk_buff *, int (*)(struct net *, struct sock *, struct sk_buff *)); + int (*reroute)(struct sk_buff *, const struct nf_queue_entry *); +}; + +struct nf_ct_event; + +struct nf_exp_event; + +struct nf_ct_event_notifier { + int (*ct_event)(unsigned int, const struct nf_ct_event *); + int (*exp_event)(unsigned int, const struct nf_exp_event *); +}; + +struct nf_sockopt_ops { + struct list_head list; + u_int8_t pf; + int set_optmin; + int set_optmax; + int (*set)(struct sock *, int, sockptr_t, unsigned int); + int get_optmin; + int get_optmax; + int (*get)(struct sock *, int, void *, int *); + struct module *owner; +}; + +struct nf_conntrack_tuple_mask { + struct { + union nf_inet_addr u3; + union nf_conntrack_man_proto u; + } src; +}; + +struct nf_conntrack_net_ecache { + struct delayed_work dwork; + spinlock_t dying_lock; + struct hlist_nulls_head dying_list; +}; + +struct nf_conntrack_net { + atomic_t count; + unsigned int expect_count; + unsigned int users4; + unsigned int users6; + unsigned int users_bridge; + struct ctl_table_header *sysctl_header; + struct nf_conntrack_net_ecache ecache; +}; + +struct nf_conntrack_l4proto { + u_int8_t l4proto; + bool allow_clash; + u16 nlattr_size; + bool (*can_early_drop)(const struct nf_conn *); + int (*to_nlattr)(struct sk_buff *, struct nlattr *, struct nf_conn *, bool); + int (*from_nlattr)(struct nlattr **, struct nf_conn *); + int (*tuple_to_nlattr)(struct sk_buff *, const struct nf_conntrack_tuple *); + unsigned int (*nlattr_tuple_size)(void); + int (*nlattr_to_tuple)(struct nlattr **, struct nf_conntrack_tuple *, u_int32_t); + const struct nla_policy *nla_policy; + struct { + int (*nlattr_to_obj)(struct nlattr **, struct net *, void *); + int (*obj_to_nlattr)(struct sk_buff *, const void *); + u16 obj_size; + u16 nlattr_max; + const struct nla_policy *nla_policy; + } ctnl_timeout; + void (*print_conntrack)(struct seq_file *, struct nf_conn *); +}; + +struct nf_conntrack_helper; + +struct nf_conntrack_expect { + struct hlist_node lnode; + struct hlist_node hnode; + struct nf_conntrack_tuple tuple; + struct nf_conntrack_tuple_mask mask; + refcount_t use; + unsigned int flags; + unsigned int class; + void (*expectfn)(struct nf_conn *, struct nf_conntrack_expect *); + struct nf_conntrack_helper *helper; + struct nf_conn *master; + struct timer_list timeout; + union nf_inet_addr saved_addr; + union nf_conntrack_man_proto saved_proto; + enum ip_conntrack_dir dir; + struct callback_head rcu; +}; + +struct nf_conntrack_expect_policy; + +struct nf_conntrack_helper { + struct hlist_node hnode; + char name[16]; + refcount_t refcnt; + struct module *me; + const struct nf_conntrack_expect_policy *expect_policy; + struct nf_conntrack_tuple tuple; + int (*help)(struct sk_buff *, unsigned int, struct nf_conn *, enum ip_conntrack_info); + void (*destroy)(struct nf_conn *); + int (*from_nlattr)(struct nlattr *, struct nf_conn *); + int (*to_nlattr)(struct sk_buff *, const struct nf_conn *); + unsigned int expect_class_max; + unsigned int flags; + unsigned int queue_num; + u16 data_len; + char nat_mod_name[16]; +}; + +struct nf_conntrack_expect_policy { + unsigned int max_expected; + unsigned int timeout; + char name[16]; +}; + +struct nf_ct_event { + struct nf_conn *ct; + u32 portid; + int report; +}; + +struct nf_exp_event { + struct nf_conntrack_expect *exp; + u32 portid; + int report; +}; + +struct nf_ct_bridge_info { + struct nf_hook_ops *ops; + unsigned int ops_size; + struct module *me; +}; + +struct nf_loginfo { + u_int8_t type; + union { + struct { + u_int32_t copy_len; + u_int16_t group; + u_int16_t qthreshold; + u_int16_t flags; + } ulog; + struct { + u_int8_t level; + u_int8_t logflags; + } log; + } u; +}; + +enum nf_ip6_hook_priorities { + NF_IP6_PRI_FIRST = -2147483648, + NF_IP6_PRI_RAW_BEFORE_DEFRAG = -450, + NF_IP6_PRI_CONNTRACK_DEFRAG = -400, + NF_IP6_PRI_RAW = -300, + NF_IP6_PRI_SELINUX_FIRST = -225, + NF_IP6_PRI_CONNTRACK = -200, + NF_IP6_PRI_MANGLE = -150, + NF_IP6_PRI_NAT_DST = -100, + NF_IP6_PRI_FILTER = 0, + NF_IP6_PRI_SECURITY = 50, + NF_IP6_PRI_NAT_SRC = 100, + NF_IP6_PRI_SELINUX_LAST = 225, + NF_IP6_PRI_CONNTRACK_HELPER = 300, + NF_IP6_PRI_LAST = 2147483647, +}; + +struct nf_conn_help { + struct nf_conntrack_helper *helper; + struct hlist_head expectations; + u8 expecting[4]; + long: 0; + char data[32]; +}; + +struct skb_checksum_ops { + __wsum (*update)(const void *, int, __wsum); + __wsum (*combine)(__wsum, __wsum, int, int); +}; + +struct icmphdr { + __u8 type; + __u8 code; + __sum16 checksum; + union { + struct { + __be16 id; + __be16 sequence; + } echo; + __be32 gateway; + struct { + __be16 __unused; + __be16 mtu; + } frag; + __u8 reserved[4]; + } un; +}; + +struct dccp_hdr { + __be16 dccph_sport; + __be16 dccph_dport; + __u8 dccph_doff; + __u8 dccph_cscov: 4; + __u8 dccph_ccval: 4; + __sum16 dccph_checksum; + __u8 dccph_x: 1; + __u8 dccph_type: 4; + __u8 dccph_reserved: 3; + __u8 dccph_seq2; + __be16 dccph_seq; +}; + +enum dccp_state { + DCCP_OPEN = 1, + DCCP_REQUESTING = 2, + DCCP_LISTEN = 10, + DCCP_RESPOND = 3, + DCCP_ACTIVE_CLOSEREQ = 4, + DCCP_PASSIVE_CLOSE = 8, + DCCP_CLOSING = 11, + DCCP_TIME_WAIT = 6, + DCCP_CLOSED = 7, + DCCP_NEW_SYN_RECV = 12, + DCCP_PARTOPEN = 14, + DCCP_PASSIVE_CLOSEREQ = 15, + DCCP_MAX_STATES = 16, +}; + +enum sctp_msg_flags { + MSG_NOTIFICATION = 32768, +}; + +enum nft_list_attributes { + NFTA_LIST_UNSPEC = 0, + NFTA_LIST_ELEM = 1, + __NFTA_LIST_MAX = 2, +}; + +enum nft_data_types { + NFT_DATA_VALUE = 0, + NFT_DATA_VERDICT = 4294967040, +}; + +enum nft_dynset_ops { + NFT_DYNSET_OP_ADD = 0, + NFT_DYNSET_OP_UPDATE = 1, + NFT_DYNSET_OP_DELETE = 2, +}; + +enum nft_dynset_flags { + NFT_DYNSET_F_INV = 1, + NFT_DYNSET_F_EXPR = 2, +}; + +enum nft_dynset_attributes { + NFTA_DYNSET_UNSPEC = 0, + NFTA_DYNSET_SET_NAME = 1, + NFTA_DYNSET_SET_ID = 2, + NFTA_DYNSET_OP = 3, + NFTA_DYNSET_SREG_KEY = 4, + NFTA_DYNSET_SREG_DATA = 5, + NFTA_DYNSET_TIMEOUT = 6, + NFTA_DYNSET_EXPR = 7, + NFTA_DYNSET_PAD = 8, + NFTA_DYNSET_FLAGS = 9, + NFTA_DYNSET_EXPRESSIONS = 10, + __NFTA_DYNSET_MAX = 11, +}; + +struct nft_set_elem_expr { + u8 size; + long: 0; + unsigned char data[0]; +}; + +struct nft_set_binding { + struct list_head list; + const struct nft_chain *chain; + u32 flags; +}; + +struct nft_set_ext_type { + u8 len; + u8 align; +}; + +struct nft_set_ext_tmpl { + u16 len; + u8 offset[8]; + u8 ext_len[8]; +}; + +struct nft_dynset { + struct nft_set *set; + struct nft_set_ext_tmpl tmpl; + enum nft_dynset_ops op: 8; + u8 sreg_key; + u8 sreg_data; + bool invert; + bool expr; + u8 num_exprs; + u64 timeout; + struct nft_expr *expr_array[2]; + struct nft_set_binding binding; +}; + +struct nfgenmsg { + __u8 nfgen_family; + __u8 version; + __be16 res_id; +}; + +struct nfnl_info { + struct net *net; + struct sock *sk; + const struct nlmsghdr *nlh; + const struct nfgenmsg *nfmsg; + struct netlink_ext_ack *extack; +}; + +enum nfnl_callback_type { + NFNL_CB_UNSPEC = 0, + NFNL_CB_MUTEX = 1, + NFNL_CB_RCU = 2, + NFNL_CB_BATCH = 3, +}; + +struct nfnl_callback { + int (*call)(struct sk_buff *, const struct nfnl_info *, const struct nlattr * const *); + const struct nla_policy *policy; + enum nfnl_callback_type type; + __u16 attr_count; +}; + +enum nfnl_abort_action { + NFNL_ABORT_NONE = 0, + NFNL_ABORT_AUTOLOAD = 1, + NFNL_ABORT_VALIDATE = 2, +}; + +struct nfnetlink_subsystem { + const char *name; + __u8 subsys_id; + __u8 cb_count; + const struct nfnl_callback *cb; + struct module *owner; + int (*commit)(struct net *, struct sk_buff *); + int (*abort)(struct net *, struct sk_buff *, enum nfnl_abort_action); + bool (*valid_genid)(struct net *, u32); +}; + +enum nft_chain_flags { + NFT_CHAIN_BASE = 1, + NFT_CHAIN_HW_OFFLOAD = 2, + NFT_CHAIN_BINDING = 4, +}; + +enum nft_rule_attributes { + NFTA_RULE_UNSPEC = 0, + NFTA_RULE_TABLE = 1, + NFTA_RULE_CHAIN = 2, + NFTA_RULE_HANDLE = 3, + NFTA_RULE_EXPRESSIONS = 4, + NFTA_RULE_COMPAT = 5, + NFTA_RULE_POSITION = 6, + NFTA_RULE_USERDATA = 7, + NFTA_RULE_PAD = 8, + NFTA_RULE_ID = 9, + NFTA_RULE_POSITION_ID = 10, + NFTA_RULE_CHAIN_ID = 11, + __NFTA_RULE_MAX = 12, +}; + +enum nft_rule_compat_flags { + NFT_RULE_COMPAT_F_UNUSED = 1, + NFT_RULE_COMPAT_F_INV = 2, + NFT_RULE_COMPAT_F_MASK = 2, +}; + +enum nft_rule_compat_attributes { + NFTA_RULE_COMPAT_UNSPEC = 0, + NFTA_RULE_COMPAT_PROTO = 1, + NFTA_RULE_COMPAT_FLAGS = 2, + __NFTA_RULE_COMPAT_MAX = 3, +}; + +enum nft_target_attributes { + NFTA_TARGET_UNSPEC = 0, + NFTA_TARGET_NAME = 1, + NFTA_TARGET_REV = 2, + NFTA_TARGET_INFO = 3, + __NFTA_TARGET_MAX = 4, +}; + +enum nft_match_attributes { + NFTA_MATCH_UNSPEC = 0, + NFTA_MATCH_NAME = 1, + NFTA_MATCH_REV = 2, + NFTA_MATCH_INFO = 3, + __NFTA_MATCH_MAX = 4, +}; + +enum { + NFNL_MSG_COMPAT_GET = 0, + NFNL_MSG_COMPAT_MAX = 1, +}; + +enum { + NFTA_COMPAT_UNSPEC = 0, + NFTA_COMPAT_NAME = 1, + NFTA_COMPAT_REV = 2, + NFTA_COMPAT_TYPE = 3, + __NFTA_COMPAT_MAX = 4, +}; + +struct ip6t_ip6 { + struct in6_addr src; + struct in6_addr dst; + struct in6_addr smsk; + struct in6_addr dmsk; + char iniface[16]; + char outiface[16]; + unsigned char iniface_mask[16]; + unsigned char outiface_mask[16]; + __u16 proto; + __u8 tos; + __u8 flags; + __u8 invflags; +}; + +struct ip6t_entry { + struct ip6t_ip6 ipv6; + unsigned int nfcache; + __u16 target_offset; + __u16 next_offset; + unsigned int comefrom; + struct xt_counters counters; + unsigned char elems[0]; +}; + +struct arpt_devaddr_info { + char addr[16]; + char mask[16]; +}; + +struct arpt_arp { + struct in_addr src; + struct in_addr tgt; + struct in_addr smsk; + struct in_addr tmsk; + __u8 arhln; + __u8 arhln_mask; + struct arpt_devaddr_info src_devaddr; + struct arpt_devaddr_info tgt_devaddr; + __be16 arpop; + __be16 arpop_mask; + __be16 arhrd; + __be16 arhrd_mask; + __be16 arpro; + __be16 arpro_mask; + char iniface[16]; + char outiface[16]; + unsigned char iniface_mask[16]; + unsigned char outiface_mask[16]; + __u8 flags; + __u16 invflags; +}; + +struct arpt_entry { + struct arpt_arp arp; + __u16 target_offset; + __u16 next_offset; + unsigned int comefrom; + struct xt_counters counters; + unsigned char elems[0]; +}; + +enum nft_chain_types { + NFT_CHAIN_T_DEFAULT = 0, + NFT_CHAIN_T_ROUTE = 1, + NFT_CHAIN_T_NAT = 2, + NFT_CHAIN_T_MAX = 3, +}; + +struct nft_chain_type { + const char *name; + enum nft_chain_types type; + int family; + struct module *owner; + unsigned int hook_mask; + nf_hookfn *hooks[6]; + int (*ops_register)(struct net *, const struct nf_hook_ops *); + void (*ops_unregister)(struct net *, const struct nf_hook_ops *); +}; + +struct nft_stats { + u64 bytes; + u64 pkts; + struct u64_stats_sync syncp; +}; + +struct nft_base_chain { + struct nf_hook_ops ops; + struct list_head hook_list; + const struct nft_chain_type *type; + u8 policy; + u8 flags; + struct nft_stats *stats; + struct nft_chain chain; + struct flow_block flow_block; +}; + +struct nft_xt_match_priv { + void *info; +}; + +union nft_entry { + struct ipt_entry e4; + struct ip6t_entry e6; + struct ebt_entry ebt; + struct arpt_entry arp; +}; + +struct flow_dissector_key_eth_addrs { + unsigned char dst[6]; + unsigned char src[6]; +}; + +struct flow_dissector_key_tcp { + __be16 flags; +}; + +struct flow_dissector_key_ip { + __u8 tos; + __u8 ttl; +}; + +struct flow_dissector_key_meta { + int ingress_ifindex; + u16 ingress_iftype; + u8 l2_miss; +}; + +enum nf_dev_hooks { + NF_NETDEV_INGRESS = 0, + NF_NETDEV_EGRESS = 1, + NF_NETDEV_NUMHOOKS = 2, +}; + +enum nft_fwd_attributes { + NFTA_FWD_UNSPEC = 0, + NFTA_FWD_SREG_DEV = 1, + NFTA_FWD_SREG_ADDR = 2, + NFTA_FWD_NFPROTO = 3, + __NFTA_FWD_MAX = 4, +}; + +struct flow_match { + struct flow_dissector *dissector; + void *mask; + void *key; +}; + +struct nf_flowtable_type; + +struct nf_flowtable { + unsigned int flags; + int priority; + struct rhashtable rhashtable; + struct list_head list; + const struct nf_flowtable_type *type; + struct delayed_work gc_work; + struct flow_block flow_block; + struct rw_semaphore flow_block_lock; + possible_net_t net; +}; + +struct flow_rule { + struct flow_match match; + struct flow_action action; +}; + +struct nf_flow_key { + struct flow_dissector_key_meta meta; + struct flow_dissector_key_control control; + struct flow_dissector_key_control enc_control; + struct flow_dissector_key_basic basic; + struct flow_dissector_key_vlan vlan; + struct flow_dissector_key_vlan cvlan; + union { + struct flow_dissector_key_ipv4_addrs ipv4; + struct flow_dissector_key_ipv6_addrs ipv6; + }; + struct flow_dissector_key_keyid enc_key_id; + union { + struct flow_dissector_key_ipv4_addrs enc_ipv4; + struct flow_dissector_key_ipv6_addrs enc_ipv6; + }; + struct flow_dissector_key_tcp tcp; + struct flow_dissector_key_ports tp; +}; + +struct nf_flow_match { + struct flow_dissector dissector; + struct nf_flow_key key; + struct nf_flow_key mask; +}; + +struct nf_flow_rule { + struct nf_flow_match match; + struct flow_rule *rule; +}; + +enum flow_offload_tuple_dir { + FLOW_OFFLOAD_DIR_ORIGINAL = 0, + FLOW_OFFLOAD_DIR_REPLY = 1, +}; + +struct flow_offload; + +struct nf_flowtable_type { + struct list_head list; + int family; + int (*init)(struct nf_flowtable *); + bool (*gc)(const struct flow_offload *); + int (*setup)(struct nf_flowtable *, struct net_device *, enum flow_block_command); + int (*action)(struct net *, struct flow_offload *, enum flow_offload_tuple_dir, struct nf_flow_rule *); + void (*free)(struct nf_flowtable *); + void (*get)(struct nf_flowtable *); + void (*put)(struct nf_flowtable *); + nf_hookfn *hook; + struct module *owner; +}; + +struct flow_offload_tuple { + union { + struct in_addr src_v4; + struct in6_addr src_v6; + }; + union { + struct in_addr dst_v4; + struct in6_addr dst_v6; + }; + struct { + __be16 src_port; + __be16 dst_port; + }; + int iifidx; + u8 l3proto; + u8 l4proto; + struct { + u16 id; + __be16 proto; + } encap[2]; + struct {} __hash; + u8 dir: 2; + u8 xmit_type: 3; + u8 encap_num: 2; + char: 1; + u8 in_vlan_ingress: 2; + u16 mtu; + union { + struct { + struct dst_entry *dst_cache; + u32 dst_cookie; + }; + struct { + u32 ifidx; + u32 hw_ifidx; + u8 h_source[6]; + u8 h_dest[6]; + } out; + struct { + u32 iifidx; + } tc; + }; +}; + +struct flow_offload_tuple_rhash { + struct rhash_head node; + struct flow_offload_tuple tuple; +}; + +struct flow_offload { + struct flow_offload_tuple_rhash tuplehash[2]; + struct nf_conn *ct; + long unsigned int flags; + u16 type; + u32 timeout; + struct callback_head callback_head; +}; + +enum nft_offload_dep_type { + NFT_OFFLOAD_DEP_UNSPEC = 0, + NFT_OFFLOAD_DEP_NETWORK = 1, + NFT_OFFLOAD_DEP_TRANSPORT = 2, +}; + +struct nft_offload_reg { + u32 key; + u32 len; + u32 base_offset; + u32 offset; + u32 flags; + struct nft_data data; + struct nft_data mask; +}; + +struct nft_offload_ctx { + struct { + enum nft_offload_dep_type type; + __be16 l3num; + u8 protonum; + } dep; + unsigned int num_actions; + struct net *net; + struct nft_offload_reg regs[24]; +}; + +struct nft_flow_key { + struct flow_dissector_key_basic basic; + struct flow_dissector_key_control control; + union { + struct flow_dissector_key_ipv4_addrs ipv4; + struct flow_dissector_key_ipv6_addrs ipv6; + }; + struct flow_dissector_key_ports tp; + struct flow_dissector_key_ip ip; + struct flow_dissector_key_vlan vlan; + struct flow_dissector_key_vlan cvlan; + struct flow_dissector_key_eth_addrs eth_addrs; + struct flow_dissector_key_meta meta; +}; + +struct nft_flow_match { + struct flow_dissector dissector; + struct nft_flow_key key; + struct nft_flow_key mask; +}; + +struct nft_flow_rule { + __be16 proto; + struct nft_flow_match match; + struct flow_rule *rule; +}; + +struct nft_fwd_netdev { + u8 sreg_dev; +}; + +struct nft_fwd_neigh { + u8 sreg_dev; + u8 sreg_addr; + u8 nfproto; +}; + +struct xt_DSCP_info { + __u8 dscp; +}; + +struct xt_tos_target_info { + __u8 tos_value; + __u8 tos_mask; +}; + +struct xt_tproxy_target_info { + __u32 mark_mask; + __u32 mark_value; + __be32 laddr; + __be16 lport; +}; + +struct xt_tproxy_target_info_v1 { + __u32 mark_mask; + __u32 mark_value; + union nf_inet_addr laddr; + __be16 lport; +}; + +enum xt_devgroup_flags { + XT_DEVGROUP_MATCH_SRC = 1, + XT_DEVGROUP_INVERT_SRC = 2, + XT_DEVGROUP_MATCH_DST = 4, + XT_DEVGROUP_INVERT_DST = 8, +}; + +struct xt_devgroup_info { + __u32 flags; + __u32 src_group; + __u32 src_mask; + __u32 dst_group; + __u32 dst_mask; +}; + +struct xt_length_info { + __u16 min; + __u16 max; + __u8 invert; +}; + +struct nlmsgerr { + int error; + struct nlmsghdr msg; +}; + +enum ipset_cmd { + IPSET_CMD_NONE = 0, + IPSET_CMD_PROTOCOL = 1, + IPSET_CMD_CREATE = 2, + IPSET_CMD_DESTROY = 3, + IPSET_CMD_FLUSH = 4, + IPSET_CMD_RENAME = 5, + IPSET_CMD_SWAP = 6, + IPSET_CMD_LIST = 7, + IPSET_CMD_SAVE = 8, + IPSET_CMD_ADD = 9, + IPSET_CMD_DEL = 10, + IPSET_CMD_TEST = 11, + IPSET_CMD_HEADER = 12, + IPSET_CMD_TYPE = 13, + IPSET_CMD_GET_BYNAME = 14, + IPSET_CMD_GET_BYINDEX = 15, + IPSET_MSG_MAX = 16, + IPSET_CMD_RESTORE = 16, + IPSET_CMD_HELP = 17, + IPSET_CMD_VERSION = 18, + IPSET_CMD_QUIT = 19, + IPSET_CMD_MAX = 20, + IPSET_CMD_COMMIT = 20, +}; + +enum { + IPSET_ATTR_IPADDR_IPV4 = 1, + IPSET_ATTR_IPADDR_IPV6 = 2, + __IPSET_ATTR_IPADDR_MAX = 3, +}; + +enum ipset_create_flags { + IPSET_CREATE_FLAG_BIT_FORCEADD = 0, + IPSET_CREATE_FLAG_FORCEADD = 1, + IPSET_CREATE_FLAG_BIT_BUCKETSIZE = 1, + IPSET_CREATE_FLAG_BUCKETSIZE = 2, + IPSET_CREATE_FLAG_BIT_MAX = 7, +}; + +typedef __u16 ip_set_id_t; + +enum { + IPSET_COUNTER_NONE = 0, + IPSET_COUNTER_EQ = 1, + IPSET_COUNTER_NE = 2, + IPSET_COUNTER_LT = 3, + IPSET_COUNTER_GT = 4, +}; + +union ip_set_name_index { + char name[32]; + ip_set_id_t index; +}; + +struct ip_set_req_get_set { + unsigned int op; + unsigned int version; + union ip_set_name_index set; +}; + +struct ip_set_req_get_set_family { + unsigned int op; + unsigned int version; + unsigned int family; + union ip_set_name_index set; +}; + +struct ip_set_req_version { + unsigned int op; + unsigned int version; +}; + +struct ip_set_net { + struct ip_set **ip_set_list; + ip_set_id_t ip_set_max; + bool is_deleted; + bool is_destroyed; +}; + +struct ip_mreqn { + struct in_addr imr_multiaddr; + struct in_addr imr_address; + int imr_ifindex; +}; + +enum flow_dissector_ctrl_flags { + FLOW_DIS_IS_FRAGMENT = 1, + FLOW_DIS_FIRST_FRAG = 2, + FLOW_DIS_F_TUNNEL_CSUM = 4, + FLOW_DIS_F_TUNNEL_DONT_FRAGMENT = 8, + FLOW_DIS_F_TUNNEL_OAM = 16, + FLOW_DIS_F_TUNNEL_CRIT_OPT = 32, + FLOW_DIS_ENCAPSULATION = 64, +}; + +struct ip_sf_list; + +struct ip_mc_list { + struct in_device *interface; + __be32 multiaddr; + unsigned int sfmode; + struct ip_sf_list *sources; + struct ip_sf_list *tomb; + long unsigned int sfcount[2]; + union { + struct ip_mc_list *next; + struct ip_mc_list *next_rcu; + }; + struct ip_mc_list *next_hash; + struct timer_list timer; + int users; + refcount_t refcnt; + spinlock_t lock; + char tm_running; + char reporter; + char unsolicit_count; + char loaded; + unsigned char gsquery; + unsigned char crcount; + struct callback_head rcu; +}; + +struct ip_sf_socklist { + unsigned int sl_max; + unsigned int sl_count; + struct callback_head rcu; + __be32 sl_addr[0]; +}; + +struct ip_mc_socklist { + struct ip_mc_socklist *next_rcu; + struct ip_mreqn multi; + unsigned int sfmode; + struct ip_sf_socklist *sflist; + struct callback_head rcu; +}; + +struct ip_sf_list { + struct ip_sf_list *sf_next; + long unsigned int sf_count[2]; + __be32 sf_inaddr; + unsigned char sf_gsresp; + unsigned char sf_oldin; + unsigned char sf_crcount; +}; + +enum rtnl_link_flags { + RTNL_FLAG_DOIT_UNLOCKED = 1, + RTNL_FLAG_BULK_DEL_SUPPORTED = 2, + RTNL_FLAG_DUMP_UNLOCKED = 4, + RTNL_FLAG_DUMP_SPLIT_NLM_DONE = 8, +}; + +struct uncached_list { + spinlock_t lock; + struct list_head head; +}; + +struct ip_rt_acct { + __u32 o_bytes; + __u32 o_packets; + __u32 i_bytes; + __u32 i_packets; +}; + +struct rt_cache_stat { + unsigned int in_slow_tot; + unsigned int in_slow_mc; + unsigned int in_no_route; + unsigned int in_brd; + unsigned int in_martian_dst; + unsigned int in_martian_src; + unsigned int out_slow_tot; + unsigned int out_slow_mc; +}; + +struct arpreq { + struct sockaddr arp_pa; + struct sockaddr arp_ha; + int arp_flags; + struct sockaddr arp_netmask; + char arp_dev[16]; +}; + +struct neigh_seq_state { + struct seq_net_private p; + struct neigh_table *tbl; + struct neigh_hash_table *nht; + void * (*neigh_sub_iter)(struct neigh_seq_state *, struct neighbour *, loff_t *); + unsigned int bucket; + unsigned int flags; +}; + +enum { + AX25_VALUES_IPDEFMODE = 0, + AX25_VALUES_AXDEFMODE = 1, + AX25_VALUES_BACKOFF = 2, + AX25_VALUES_CONMODE = 3, + AX25_VALUES_WINDOW = 4, + AX25_VALUES_EWINDOW = 5, + AX25_VALUES_T1 = 6, + AX25_VALUES_T2 = 7, + AX25_VALUES_T3 = 8, + AX25_VALUES_IDLE = 9, + AX25_VALUES_N2 = 10, + AX25_VALUES_PACLEN = 11, + AX25_VALUES_PROTOCOL = 12, + AX25_MAX_VALUES = 13, +}; + +struct snmp_mib { + const char *name; + int entry; +}; + +struct raw_hashinfo { + spinlock_t lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct hlist_head ht[256]; +}; + +struct rta_mfc_stats { + __u64 mfcs_packets; + __u64 mfcs_bytes; + __u64 mfcs_wrong_if; +}; + +struct fib_dump_filter { + u32 table_id; + bool filter_set; + bool dump_routes; + bool dump_exceptions; + bool rtnl_held; + unsigned char protocol; + unsigned char rt_type; + unsigned int flags; + struct net_device *dev; +}; + +struct vif_device { + struct net_device *dev; + netdevice_tracker dev_tracker; + long unsigned int bytes_in; + long unsigned int bytes_out; + long unsigned int pkt_in; + long unsigned int pkt_out; + long unsigned int rate_limit; + unsigned char threshold; + short unsigned int flags; + int link; + struct netdev_phys_item_id dev_parent_id; + __be32 local; + __be32 remote; +}; + +struct vif_entry_notifier_info { + struct fib_notifier_info info; + struct net_device *dev; + short unsigned int vif_index; + short unsigned int vif_flags; + u32 tb_id; +}; + +enum { + MFC_STATIC = 1, + MFC_OFFLOAD = 2, +}; + +struct mr_mfc { + struct rhlist_head mnode; + short unsigned int mfc_parent; + int mfc_flags; + union { + struct { + long unsigned int expires; + struct sk_buff_head unresolved; + } unres; + struct { + long unsigned int last_assert; + int minvif; + int maxvif; + atomic_long_t bytes; + atomic_long_t pkt; + atomic_long_t wrong_if; + long unsigned int lastuse; + unsigned char ttls[32]; + refcount_t refcount; + } res; + } mfc_un; + struct list_head list; + struct callback_head rcu; + void (*free)(struct callback_head *); +}; + +struct mfc_entry_notifier_info { + struct fib_notifier_info info; + struct mr_mfc *mfc; + u32 tb_id; +}; + +struct mr_table_ops { + const struct rhashtable_params *rht_params; + void *cmparg_any; +}; + +struct mr_table { + struct list_head list; + possible_net_t net; + struct mr_table_ops ops; + u32 id; + struct sock *mroute_sk; + struct timer_list ipmr_expire_timer; + struct list_head mfc_unres_queue; + struct vif_device vif_table[32]; + struct rhltable mfc_hash; + struct list_head mfc_cache_list; + int maxvif; + atomic_t cache_resolve_queue_len; + bool mroute_do_assert; + bool mroute_do_pim; + bool mroute_do_wrvifwhole; + int mroute_reg_vif_num; +}; + +struct mr_vif_iter { + struct seq_net_private p; + struct mr_table *mrt; + int ct; +}; + +struct mr_mfc_iter { + struct seq_net_private p; + struct mr_table *mrt; + struct list_head *cache; + spinlock_t *lock; +}; + +struct xfrm_spi_skb_cb { + struct xfrm_tunnel_skb_cb header; + unsigned int daddroff; + unsigned int family; + __be32 seq; +}; + +struct xfrm_tunnel { + int (*handler)(struct sk_buff *); + int (*cb_handler)(struct sk_buff *, int); + int (*err_handler)(struct sk_buff *, u32); + struct xfrm_tunnel *next; + int priority; +}; + +enum nft_reject_types { + NFT_REJECT_ICMP_UNREACH = 0, + NFT_REJECT_TCP_RST = 1, + NFT_REJECT_ICMPX_UNREACH = 2, +}; + +enum nft_reject_attributes { + NFTA_REJECT_UNSPEC = 0, + NFTA_REJECT_TYPE = 1, + NFTA_REJECT_ICMP_CODE = 2, + __NFTA_REJECT_MAX = 3, +}; + +struct nft_reject { + enum nft_reject_types type: 8; + u8 icmp_code; +}; + +enum nft_dup_attributes { + NFTA_DUP_UNSPEC = 0, + NFTA_DUP_SREG_ADDR = 1, + NFTA_DUP_SREG_DEV = 2, + __NFTA_DUP_MAX = 3, +}; + +struct nft_dup_ipv4 { + u8 sreg_addr; + u8 sreg_dev; +}; + +struct xt_entry_target { + union { + struct { + __u16 target_size; + char name[29]; + __u8 revision; + } user; + struct { + __u16 target_size; + struct xt_target *target; + } kernel; + __u16 target_size; + } u; + unsigned char data[0]; +}; + +struct xt_standard_target { + struct xt_entry_target target; + int verdict; +}; + +struct ipt_standard { + struct ipt_entry entry; + struct xt_standard_target target; +}; + +struct nf_synproxy_info { + __u8 options; + __u8 wscale; + __u16 mss; +}; + +struct synproxy_stats { + unsigned int syn_received; + unsigned int cookie_invalid; + unsigned int cookie_valid; + unsigned int cookie_retrans; + unsigned int conn_reopened; +}; + +struct synproxy_net { + struct nf_conn *tmpl; + struct synproxy_stats *stats; + unsigned int hook_ref4; + unsigned int hook_ref6; +}; + +struct synproxy_options { + u8 options; + u8 wscale; + u16 mss_option; + u16 mss_encode; + u32 tsval; + u32 tsecr; +}; + +enum { + BPF_REG_0 = 0, + BPF_REG_1 = 1, + BPF_REG_2 = 2, + BPF_REG_3 = 3, + BPF_REG_4 = 4, + BPF_REG_5 = 5, + BPF_REG_6 = 6, + BPF_REG_7 = 7, + BPF_REG_8 = 8, + BPF_REG_9 = 9, + BPF_REG_10 = 10, + __MAX_BPF_REG = 11, +}; + +enum { + BTF_KIND_UNKN = 0, + BTF_KIND_INT = 1, + BTF_KIND_PTR = 2, + BTF_KIND_ARRAY = 3, + BTF_KIND_STRUCT = 4, + BTF_KIND_UNION = 5, + BTF_KIND_ENUM = 6, + BTF_KIND_FWD = 7, + BTF_KIND_TYPEDEF = 8, + BTF_KIND_VOLATILE = 9, + BTF_KIND_CONST = 10, + BTF_KIND_RESTRICT = 11, + BTF_KIND_FUNC = 12, + BTF_KIND_FUNC_PROTO = 13, + BTF_KIND_VAR = 14, + BTF_KIND_DATASEC = 15, + BTF_KIND_FLOAT = 16, + BTF_KIND_DECL_TAG = 17, + BTF_KIND_TYPE_TAG = 18, + BTF_KIND_ENUM64 = 19, + NR_BTF_KINDS = 20, + BTF_KIND_MAX = 19, +}; + +struct btf_member { + __u32 name_off; + __u32 type; + __u32 offset; +}; + +struct btf_struct_meta { + u32 btf_id; + struct btf_record *record; +}; + +struct bpf_verifier_log { + u64 start_pos; + u64 end_pos; + char *ubuf; + u32 level; + u32 len_total; + u32 len_max; + char kbuf[1024]; +}; + +struct bpf_subprog_arg_info { + enum bpf_arg_type arg_type; + union { + u32 mem_size; + u32 btf_id; + }; +}; + +struct bpf_subprog_info { + u32 start; + u32 linfo_idx; + u16 stack_depth; + u16 stack_extra; + s16 fastcall_stack_off; + bool has_tail_call: 1; + bool tail_call_reachable: 1; + bool has_ld_abs: 1; + bool is_cb: 1; + bool is_async_cb: 1; + bool is_exception_cb: 1; + bool args_cached: 1; + bool keep_fastcall_stack: 1; + bool changes_pkt_data: 1; + u8 arg_cnt; + struct bpf_subprog_arg_info args[5]; +}; + +struct bpf_id_pair { + u32 old; + u32 cur; +}; + +struct bpf_idmap { + u32 tmp_id_gen; + struct bpf_id_pair map[600]; +}; + +struct bpf_idset { + u32 count; + u32 ids[600]; +}; + +struct backtrack_state { + struct bpf_verifier_env *env; + u32 frame; + u32 reg_masks[8]; + u64 stack_masks[8]; +}; + +enum bpf_iter_state { + BPF_ITER_STATE_INVALID = 0, + BPF_ITER_STATE_ACTIVE = 1, + BPF_ITER_STATE_DRAINED = 2, +}; + +struct tnum { + u64 value; + u64 mask; +}; + +enum bpf_reg_liveness { + REG_LIVE_NONE = 0, + REG_LIVE_READ32 = 1, + REG_LIVE_READ64 = 2, + REG_LIVE_READ = 3, + REG_LIVE_WRITTEN = 4, + REG_LIVE_DONE = 8, +}; + +struct bpf_reg_state { + enum bpf_reg_type type; + s32 off; + union { + int range; + struct { + struct bpf_map *map_ptr; + u32 map_uid; + }; + struct { + struct btf *btf; + u32 btf_id; + }; + struct { + u32 mem_size; + u32 dynptr_id; + }; + struct { + enum bpf_dynptr_type type; + bool first_slot; + } dynptr; + struct { + struct btf *btf; + u32 btf_id; + enum bpf_iter_state state: 2; + int depth: 30; + } iter; + struct { + long unsigned int raw1; + long unsigned int raw2; + } raw; + u32 subprogno; + }; + struct tnum var_off; + s64 smin_value; + s64 smax_value; + u64 umin_value; + u64 umax_value; + s32 s32_min_value; + s32 s32_max_value; + u32 u32_min_value; + u32 u32_max_value; + u32 id; + u32 ref_obj_id; + struct bpf_reg_state *parent; + u32 frameno; + s32 subreg_def; + enum bpf_reg_liveness live; + bool precise; +}; + +struct bpf_verifier_ops; + +struct bpf_verifier_stack_elem; + +struct bpf_verifier_state; + +struct bpf_verifier_state_list; + +struct bpf_insn_aux_data; + +struct bpf_insn_hist_entry; + +struct bpf_verifier_env { + u32 insn_idx; + u32 prev_insn_idx; + struct bpf_prog *prog; + const struct bpf_verifier_ops *ops; + struct module *attach_btf_mod; + struct bpf_verifier_stack_elem *head; + int stack_size; + bool strict_alignment; + bool test_state_freq; + bool test_reg_invariants; + struct bpf_verifier_state *cur_state; + struct bpf_verifier_state_list **explored_states; + struct bpf_verifier_state_list *free_list; + struct bpf_map *used_maps[64]; + struct btf_mod_pair used_btfs[64]; + u32 used_map_cnt; + u32 used_btf_cnt; + u32 id_gen; + u32 hidden_subprog_cnt; + int exception_callback_subprog; + bool explore_alu_limits; + bool allow_ptr_leaks; + bool allow_uninit_stack; + bool bpf_capable; + bool bypass_spec_v1; + bool bypass_spec_v4; + bool seen_direct_write; + bool seen_exception; + struct bpf_insn_aux_data *insn_aux_data; + const struct bpf_line_info *prev_linfo; + struct bpf_verifier_log log; + struct bpf_subprog_info subprog_info[258]; + union { + struct bpf_idmap idmap_scratch; + struct bpf_idset idset_scratch; + }; + struct { + int *insn_state; + int *insn_stack; + int cur_stack; + } cfg; + struct backtrack_state bt; + struct bpf_insn_hist_entry *insn_hist; + struct bpf_insn_hist_entry *cur_hist_ent; + u32 insn_hist_cap; + u32 pass_cnt; + u32 subprog_cnt; + u32 prev_insn_processed; + u32 insn_processed; + u32 prev_jmps_processed; + u32 jmps_processed; + u64 verification_time; + u32 max_states_per_insn; + u32 total_states; + u32 peak_states; + u32 longest_mark_read_walk; + bpfptr_t fd_array; + u32 scratched_regs; + u64 scratched_stack_slots; + u64 prev_log_pos; + u64 prev_insn_print_pos; + struct bpf_reg_state fake_reg[2]; + char tmp_str_buf[320]; + struct bpf_insn insn_buf[32]; + struct bpf_insn epilogue_buf[32]; +}; + +struct bpf_retval_range { + s32 minval; + s32 maxval; +}; + +struct bpf_reference_state; + +struct bpf_stack_state; + +struct bpf_func_state { + struct bpf_reg_state regs[11]; + int callsite; + u32 frameno; + u32 subprogno; + u32 async_entry_cnt; + struct bpf_retval_range callback_ret_range; + bool in_callback_fn; + bool in_async_callback_fn; + bool in_exception_callback_fn; + u32 callback_depth; + int acquired_refs; + struct bpf_reference_state *refs; + struct bpf_stack_state *stack; + int allocated_stack; +}; + +enum bpf_access_type { + BPF_READ = 1, + BPF_WRITE = 2, +}; + +struct bpf_insn_access_aux { + enum bpf_reg_type reg_type; + bool is_ldsx; + union { + int ctx_field_size; + struct { + struct btf *btf; + u32 btf_id; + }; + }; + struct bpf_verifier_log *log; + bool is_retval; +}; + +struct bpf_verifier_ops { + const struct bpf_func_proto * (*get_func_proto)(enum bpf_func_id, const struct bpf_prog *); + bool (*is_valid_access)(int, int, enum bpf_access_type, const struct bpf_prog *, struct bpf_insn_access_aux *); + int (*gen_prologue)(struct bpf_insn *, bool, const struct bpf_prog *); + int (*gen_epilogue)(struct bpf_insn *, const struct bpf_prog *, s16); + int (*gen_ld_abs)(const struct bpf_insn *, struct bpf_insn *); + u32 (*convert_ctx_access)(enum bpf_access_type, const struct bpf_insn *, struct bpf_insn *, struct bpf_prog *, u32 *); + int (*btf_struct_access)(struct bpf_verifier_log *, const struct bpf_reg_state *, int, int); +}; + +struct bpf_struct_ops { + const struct bpf_verifier_ops *verifier_ops; + int (*init)(struct btf *); + int (*check_member)(const struct btf_type *, const struct btf_member *, const struct bpf_prog *); + int (*init_member)(const struct btf_type *, const struct btf_member *, void *, const void *); + int (*reg)(void *, struct bpf_link *); + void (*unreg)(void *, struct bpf_link *); + int (*update)(void *, void *, struct bpf_link *); + int (*validate)(void *); + void *cfi_stubs; + struct module *owner; + const char *name; + struct btf_func_model func_models[64]; +}; + +enum bpf_struct_ops_state { + BPF_STRUCT_OPS_STATE_INIT = 0, + BPF_STRUCT_OPS_STATE_INUSE = 1, + BPF_STRUCT_OPS_STATE_TOBEFREE = 2, + BPF_STRUCT_OPS_STATE_READY = 3, +}; + +struct bpf_struct_ops_common_value { + refcount_t refcnt; + enum bpf_struct_ops_state state; +}; + +struct bpf_active_lock { + void *ptr; + u32 id; +}; + +struct bpf_stack_state { + struct bpf_reg_state spilled_ptr; + u8 slot_type[8]; +}; + +struct bpf_reference_state { + int id; + int insn_idx; + int callback_ref; +}; + +enum { + INSN_F_FRAMENO_MASK = 7, + INSN_F_SPI_MASK = 63, + INSN_F_SPI_SHIFT = 3, + INSN_F_STACK_ACCESS = 512, + INSN_F_DST_REG_STACK = 1024, + INSN_F_SRC_REG_STACK = 2048, +}; + +struct bpf_insn_hist_entry { + u32 idx; + u32 prev_idx: 20; + u32 flags: 12; + u64 linked_regs; +}; + +struct bpf_verifier_state { + struct bpf_func_state *frame[8]; + struct bpf_verifier_state *parent; + u32 branches; + u32 insn_idx; + u32 curframe; + struct bpf_active_lock active_lock; + bool speculative; + bool active_rcu_lock; + u32 active_preempt_lock; + bool used_as_loop_entry; + bool in_sleepable; + u32 first_insn_idx; + u32 last_insn_idx; + struct bpf_verifier_state *loop_entry; + u32 insn_hist_start; + u32 insn_hist_end; + u32 dfs_depth; + u32 callback_unroll_depth; + u32 may_goto_depth; +}; + +struct bpf_verifier_state_list { + struct bpf_verifier_state state; + struct bpf_verifier_state_list *next; + int miss_cnt; + int hit_cnt; +}; + +struct bpf_loop_inline_state { + unsigned int initialized: 1; + unsigned int fit_for_inline: 1; + u32 callback_subprogno; +}; + +struct bpf_map_ptr_state { + struct bpf_map *map_ptr; + bool poison; + bool unpriv; +}; + +struct bpf_insn_aux_data { + union { + enum bpf_reg_type ptr_type; + struct bpf_map_ptr_state map_ptr_state; + s32 call_imm; + u32 alu_limit; + struct { + u32 map_index; + u32 map_off; + }; + struct { + enum bpf_reg_type reg_type; + union { + struct { + struct btf *btf; + u32 btf_id; + }; + u32 mem_size; + }; + } btf_var; + struct bpf_loop_inline_state loop_inline_state; + }; + union { + u64 obj_new_size; + u64 insert_off; + }; + struct btf_struct_meta *kptr_struct_meta; + u64 map_key_state; + int ctx_field_size; + u32 seen; + bool sanitize_stack_spill; + bool zext_dst; + bool needs_zext; + bool storage_get_func_atomic; + bool is_iter_next; + bool call_with_percpu_alloc_ptr; + u8 alu_state; + u8 fastcall_pattern: 1; + u8 fastcall_spills_num: 3; + unsigned int orig_idx; + bool jmp_point; + bool prune_point; + bool force_checkpoint; + bool calls_callback; +}; + +typedef u64 (*btf_bpf_tcp_send_ack)(struct tcp_sock *, u32); + +struct bpf_struct_ops_tcp_congestion_ops { + struct bpf_struct_ops_common_value common; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct tcp_congestion_ops data; +}; + +struct ifaddrlblmsg { + __u8 ifal_family; + __u8 __ifal_reserved; + __u8 ifal_prefixlen; + __u8 ifal_flags; + __u32 ifal_index; + __u32 ifal_seq; +}; + +enum { + IFAL_ADDRESS = 1, + IFAL_LABEL = 2, + __IFAL_MAX = 3, +}; + +struct ip6addrlbl_entry { + struct in6_addr prefix; + int prefixlen; + int ifindex; + int addrtype; + u32 label; + struct hlist_node list; + struct callback_head rcu; +}; + +struct ip6addrlbl_init_table { + const struct in6_addr *prefix; + int prefixlen; + u32 label; +}; + +struct sockcm_cookie { + u64 transmit_time; + u32 mark; + u32 tsflags; +}; + +struct ipcm6_cookie { + struct sockcm_cookie sockc; + __s16 hlimit; + __s16 tclass; + __u16 gso_size; + __s8 dontfrag; + struct ipv6_txoptions *opt; +}; + +struct inet_protosw { + struct list_head list; + short unsigned int type; + short unsigned int protocol; + struct proto *prot; + const struct proto_ops *ops; + unsigned char flags; +}; + +struct pingv6_ops { + int (*ipv6_recv_error)(struct sock *, struct msghdr *, int, int *); + void (*ip6_datagram_recv_common_ctl)(struct sock *, struct msghdr *, struct sk_buff *); + void (*ip6_datagram_recv_specific_ctl)(struct sock *, struct msghdr *, struct sk_buff *); + int (*icmpv6_err_convert)(u8, u8, int *); + void (*ipv6_icmp_error)(struct sock *, struct sk_buff *, int, __be16, u32, u8 *); + int (*ipv6_chk_addr)(struct net *, const struct in6_addr *, const struct net_device *, int); +}; + +struct ping_iter_state { + struct seq_net_private p; + int bucket; + sa_family_t family; +}; + +struct pingfakehdr { + struct icmphdr icmph; + struct msghdr *msg; + sa_family_t family; + __wsum wcheck; +}; + +enum { + FRA_UNSPEC = 0, + FRA_DST = 1, + FRA_SRC = 2, + FRA_IIFNAME = 3, + FRA_GOTO = 4, + FRA_UNUSED2 = 5, + FRA_PRIORITY = 6, + FRA_UNUSED3 = 7, + FRA_UNUSED4 = 8, + FRA_UNUSED5 = 9, + FRA_FWMARK = 10, + FRA_FLOW = 11, + FRA_TUN_ID = 12, + FRA_SUPPRESS_IFGROUP = 13, + FRA_SUPPRESS_PREFIXLEN = 14, + FRA_TABLE = 15, + FRA_FWMASK = 16, + FRA_OIFNAME = 17, + FRA_PAD = 18, + FRA_L3MDEV = 19, + FRA_UID_RANGE = 20, + FRA_PROTOCOL = 21, + FRA_IP_PROTO = 22, + FRA_SPORT_RANGE = 23, + FRA_DPORT_RANGE = 24, + FRA_DSCP = 25, + __FRA_MAX = 26, +}; + +enum { + FR_ACT_UNSPEC = 0, + FR_ACT_TO_TBL = 1, + FR_ACT_GOTO = 2, + FR_ACT_NOP = 3, + FR_ACT_RES3 = 4, + FR_ACT_RES4 = 5, + FR_ACT_BLACKHOLE = 6, + FR_ACT_UNREACHABLE = 7, + FR_ACT_PROHIBIT = 8, + __FR_ACT_MAX = 9, +}; + +typedef struct rt6_info * (*pol_lookup_t)(struct net *, struct fib6_table *, struct flowi6 *, const struct sk_buff *, int); + +struct fib6_rule { + struct fib_rule common; + struct rt6key src; + struct rt6key dst; + dscp_t dscp; + u8 dscp_full: 1; +}; + +struct ip6t_replace { + char name[32]; + unsigned int valid_hooks; + unsigned int num_entries; + unsigned int size; + unsigned int hook_entry[5]; + unsigned int underflow[5]; + unsigned int num_counters; + struct xt_counters *counters; + struct ip6t_entry entries[0]; +}; + +struct ip6table_nat_pernet { + struct nf_hook_ops *nf_nat_ops; +}; + +enum tunnel_encap_types { + TUNNEL_ENCAP_NONE = 0, + TUNNEL_ENCAP_FOU = 1, + TUNNEL_ENCAP_GUE = 2, + TUNNEL_ENCAP_MPLS = 3, +}; + +enum { + IFLA_GRE_UNSPEC = 0, + IFLA_GRE_LINK = 1, + IFLA_GRE_IFLAGS = 2, + IFLA_GRE_OFLAGS = 3, + IFLA_GRE_IKEY = 4, + IFLA_GRE_OKEY = 5, + IFLA_GRE_LOCAL = 6, + IFLA_GRE_REMOTE = 7, + IFLA_GRE_TTL = 8, + IFLA_GRE_TOS = 9, + IFLA_GRE_PMTUDISC = 10, + IFLA_GRE_ENCAP_LIMIT = 11, + IFLA_GRE_FLOWINFO = 12, + IFLA_GRE_FLAGS = 13, + IFLA_GRE_ENCAP_TYPE = 14, + IFLA_GRE_ENCAP_FLAGS = 15, + IFLA_GRE_ENCAP_SPORT = 16, + IFLA_GRE_ENCAP_DPORT = 17, + IFLA_GRE_COLLECT_METADATA = 18, + IFLA_GRE_IGNORE_DF = 19, + IFLA_GRE_FWMARK = 20, + IFLA_GRE_ERSPAN_INDEX = 21, + IFLA_GRE_ERSPAN_VER = 22, + IFLA_GRE_ERSPAN_DIR = 23, + IFLA_GRE_ERSPAN_HWID = 24, + __IFLA_GRE_MAX = 25, +}; + +struct ip6_tnl_parm2 { + char name[16]; + int link; + __u8 proto; + __u8 encap_limit; + __u8 hop_limit; + __be32 flowinfo; + __u32 flags; + struct in6_addr laddr; + struct in6_addr raddr; + __be16 i_flags; + __be16 o_flags; + __be32 i_key; + __be32 o_key; +}; + +struct gro_cell; + +struct gro_cells { + struct gro_cell *cells; +}; + +struct tnl_ptk_info { + long unsigned int flags[1]; + __be16 proto; + __be32 key; + __be32 seq; + int hdr_len; +}; + +struct __ip6_tnl_parm { + char name[16]; + int link; + __u8 proto; + __u8 encap_limit; + __u8 hop_limit; + bool collect_md; + __be32 flowinfo; + __u32 flags; + struct in6_addr laddr; + struct in6_addr raddr; + long unsigned int i_flags[1]; + long unsigned int o_flags[1]; + __be32 i_key; + __be32 o_key; + __u32 fwmark; + __u32 index; + __u8 erspan_ver; + __u8 dir; + __u16 hwid; +}; + +struct ip6_tnl { + struct ip6_tnl *next; + struct net_device *dev; + netdevice_tracker dev_tracker; + struct net *net; + struct __ip6_tnl_parm parms; + struct flowi fl; + struct dst_cache dst_cache; + struct gro_cells gro_cells; + int err_count; + long unsigned int err_time; + __u32 i_seqno; + atomic_t o_seqno; + int hlen; + int tun_hlen; + int encap_hlen; + struct ip_tunnel_encap encap; + int mlink; +}; + +struct ipv6_tlv_tnl_enc_lim { + __u8 type; + __u8 length; + __u8 encap_limit; +}; + +struct gre_base_hdr { + __be16 flags; + __be16 protocol; +}; + +struct erspan_md2 { + __be32 timestamp; + __be16 sgt; + __u8 hwid_upper: 2; + __u8 ft: 5; + __u8 p: 1; + __u8 o: 1; + __u8 gra: 2; + __u8 dir: 1; + __u8 hwid: 4; +}; + +struct erspan_metadata { + int version; + union { + __be32 index; + struct erspan_md2 md2; + } u; +}; + +enum erspan_encap_type { + ERSPAN_ENCAP_NOVLAN = 0, + ERSPAN_ENCAP_ISL = 1, + ERSPAN_ENCAP_8021Q = 2, + ERSPAN_ENCAP_INFRAME = 3, +}; + +struct erspan_base_hdr { + __u8 vlan_upper: 4; + __u8 ver: 4; + __u8 vlan: 8; + __u8 session_id_upper: 2; + __u8 t: 1; + __u8 en: 2; + __u8 cos: 3; + __u8 session_id: 8; +}; + +enum erspan_bso { + BSO_NOERROR = 0, + BSO_SHORT = 1, + BSO_OVERSIZED = 2, + BSO_BAD = 3, +}; + +struct ip6gre_net { + struct ip6_tnl *tunnels[128]; + struct ip6_tnl *collect_md_tun; + struct ip6_tnl *collect_md_tun_erspan; + struct net_device *fb_tunnel_dev; +}; + +struct qtag_prefix { + __be16 eth_type; + __be16 tci; +}; + +enum br_boolopt_id { + BR_BOOLOPT_NO_LL_LEARN = 0, + BR_BOOLOPT_MCAST_VLAN_SNOOPING = 1, + BR_BOOLOPT_MST_ENABLE = 2, + BR_BOOLOPT_MAX = 3, +}; + +enum { + BR_GROUPFWD_STP = 1, + BR_GROUPFWD_MACPAUSE = 2, + BR_GROUPFWD_LACP = 4, +}; + +enum { + BR_FDB_LOCAL = 0, + BR_FDB_STATIC = 1, + BR_FDB_STICKY = 2, + BR_FDB_ADDED_BY_USER = 3, + BR_FDB_ADDED_BY_EXT_LEARN = 4, + BR_FDB_OFFLOADED = 5, + BR_FDB_NOTIFY = 6, + BR_FDB_NOTIFY_INACTIVE = 7, + BR_FDB_LOCKED = 8, + BR_FDB_DYNAMIC_LEARNED = 9, +}; + +struct net_bridge_fdb_flush_desc { + long unsigned int flags; + long unsigned int flags_mask; + int port_ifindex; + u16 vlan_id; +}; + +enum nft_meta_keys { + NFT_META_LEN = 0, + NFT_META_PROTOCOL = 1, + NFT_META_PRIORITY = 2, + NFT_META_MARK = 3, + NFT_META_IIF = 4, + NFT_META_OIF = 5, + NFT_META_IIFNAME = 6, + NFT_META_OIFNAME = 7, + NFT_META_IFTYPE = 8, + NFT_META_OIFTYPE = 9, + NFT_META_SKUID = 10, + NFT_META_SKGID = 11, + NFT_META_NFTRACE = 12, + NFT_META_RTCLASSID = 13, + NFT_META_SECMARK = 14, + NFT_META_NFPROTO = 15, + NFT_META_L4PROTO = 16, + NFT_META_BRI_IIFNAME = 17, + NFT_META_BRI_OIFNAME = 18, + NFT_META_PKTTYPE = 19, + NFT_META_CPU = 20, + NFT_META_IIFGROUP = 21, + NFT_META_OIFGROUP = 22, + NFT_META_CGROUP = 23, + NFT_META_PRANDOM = 24, + NFT_META_SECPATH = 25, + NFT_META_IIFKIND = 26, + NFT_META_OIFKIND = 27, + NFT_META_BRI_IIFPVID = 28, + NFT_META_BRI_IIFVPROTO = 29, + NFT_META_TIME_NS = 30, + NFT_META_TIME_DAY = 31, + NFT_META_TIME_HOUR = 32, + NFT_META_SDIF = 33, + NFT_META_SDIFNAME = 34, + NFT_META_BRI_BROUTE = 35, + __NFT_META_IIFTYPE = 36, +}; + +enum nft_meta_attributes { + NFTA_META_UNSPEC = 0, + NFTA_META_DREG = 1, + NFTA_META_KEY = 2, + NFTA_META_SREG = 3, + __NFTA_META_MAX = 4, +}; + +struct nft_meta { + enum nft_meta_keys key: 8; + u8 len; + union { + u8 dreg; + u8 sreg; + }; +}; + +struct br_input_skb_cb { + struct net_device *brdev; + u16 frag_max_size; + u8 igmp; + u8 mrouters_only: 1; + u8 proxyarp_replied: 1; + u8 src_port_isolated: 1; + u8 promisc: 1; + u8 vlan_filtered: 1; + u8 br_netfilter_broute: 1; + u8 tx_fwd_offload: 1; + int src_hwdom; + long unsigned int fwd_hwdoms; + u32 backup_nhid; +}; + +struct ebt_arpreply_info { + unsigned char mac[6]; + int target; +}; + +enum rpc_auth_stat { + RPC_AUTH_OK = 0, + RPC_AUTH_BADCRED = 1, + RPC_AUTH_REJECTEDCRED = 2, + RPC_AUTH_BADVERF = 3, + RPC_AUTH_REJECTEDVERF = 4, + RPC_AUTH_TOOWEAK = 5, + RPCSEC_GSS_CREDPROBLEM = 13, + RPCSEC_GSS_CTXPROBLEM = 14, +}; + +enum { + RPC_TASK_RUNNING = 0, + RPC_TASK_QUEUED = 1, + RPC_TASK_ACTIVE = 2, + RPC_TASK_NEED_XMIT = 3, + RPC_TASK_NEED_RECV = 4, + RPC_TASK_MSG_PIN_WAIT = 5, +}; + +struct rpc_buffer { + size_t len; + char data[0]; +}; + +struct sock_xprt { + struct rpc_xprt xprt; + struct socket *sock; + struct sock *inet; + struct file *file; + struct { + struct { + __be32 fraghdr; + __be32 xid; + __be32 calldir; + }; + u32 offset; + u32 len; + long unsigned int copied; + } recv; + struct { + u32 offset; + } xmit; + long unsigned int sock_state; + struct delayed_work connect_worker; + struct work_struct error_worker; + struct work_struct recv_worker; + struct mutex recv_mutex; + struct completion handshake_done; + struct __kernel_sockaddr_storage srcaddr; + short unsigned int srcport; + int xprt_err; + struct rpc_clnt *clnt; + size_t rcvsize; + size_t sndsize; + struct rpc_timeout tcp_timeout; + void (*old_data_ready)(struct sock *); + void (*old_state_change)(struct sock *); + void (*old_write_space)(struct sock *); + void (*old_error_report)(struct sock *); +}; + +enum { + XPT_BUSY = 0, + XPT_CONN = 1, + XPT_CLOSE = 2, + XPT_DATA = 3, + XPT_TEMP = 4, + XPT_DEAD = 5, + XPT_CHNGBUF = 6, + XPT_DEFERRED = 7, + XPT_OLD = 8, + XPT_LISTENER = 9, + XPT_CACHE_AUTH = 10, + XPT_LOCAL = 11, + XPT_KILL_TEMP = 12, + XPT_CONG_CTRL = 13, + XPT_HANDSHAKE = 14, + XPT_TLS_SESSION = 15, + XPT_PEER_AUTH = 16, + XPT_PEER_VALID = 17, + XPT_RPCB_UNREG = 18, +}; + +struct trace_event_raw_rpc_xdr_buf_class { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + const void *head_base; + size_t head_len; + const void *tail_base; + size_t tail_len; + unsigned int page_base; + unsigned int page_len; + unsigned int msg_len; + char __data[0]; +}; + +struct trace_event_raw_rpc_clnt_class { + struct trace_entry ent; + unsigned int client_id; + char __data[0]; +}; + +struct trace_event_raw_rpc_clnt_new { + struct trace_entry ent; + unsigned int client_id; + long unsigned int xprtsec; + long unsigned int flags; + u32 __data_loc_program; + u32 __data_loc_server; + u32 __data_loc_addr; + u32 __data_loc_port; + char __data[0]; +}; + +struct trace_event_raw_rpc_clnt_new_err { + struct trace_entry ent; + int error; + u32 __data_loc_program; + u32 __data_loc_server; + char __data[0]; +}; + +struct trace_event_raw_rpc_clnt_clone_err { + struct trace_entry ent; + unsigned int client_id; + int error; + char __data[0]; +}; + +struct trace_event_raw_rpc_task_status { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + int status; + char __data[0]; +}; + +struct trace_event_raw_rpc_request { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + int version; + bool async; + u32 __data_loc_progname; + u32 __data_loc_procname; + char __data[0]; +}; + +struct trace_event_raw_rpc_task_running { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + const void *action; + long unsigned int runstate; + int status; + short unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_rpc_task_queued { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + long unsigned int timeout; + long unsigned int runstate; + int status; + short unsigned int flags; + u32 __data_loc_q_name; + char __data[0]; +}; + +struct trace_event_raw_rpc_failure { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + char __data[0]; +}; + +struct trace_event_raw_rpc_reply_event { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + u32 xid; + u32 __data_loc_progname; + u32 version; + u32 __data_loc_procname; + u32 __data_loc_servername; + char __data[0]; +}; + +struct trace_event_raw_rpc_buf_alloc { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + size_t callsize; + size_t recvsize; + int status; + char __data[0]; +}; + +struct trace_event_raw_rpc_call_rpcerror { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + int tk_status; + int rpc_status; + char __data[0]; +}; + +struct trace_event_raw_rpc_stats_latency { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + u32 xid; + int version; + u32 __data_loc_progname; + u32 __data_loc_procname; + long unsigned int backlog; + long unsigned int rtt; + long unsigned int execute; + u32 xprt_id; + char __data[0]; +}; + +struct trace_event_raw_rpc_xdr_overflow { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + int version; + size_t requested; + const void *end; + const void *p; + const void *head_base; + size_t head_len; + const void *tail_base; + size_t tail_len; + unsigned int page_len; + unsigned int len; + u32 __data_loc_progname; + u32 __data_loc_procedure; + char __data[0]; +}; + +struct trace_event_raw_rpc_xdr_alignment { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + int version; + size_t offset; + unsigned int copied; + const void *head_base; + size_t head_len; + const void *tail_base; + size_t tail_len; + unsigned int page_len; + unsigned int len; + u32 __data_loc_progname; + u32 __data_loc_procedure; + char __data[0]; +}; + +struct trace_event_raw_xs_socket_event { + struct trace_entry ent; + unsigned int socket_state; + unsigned int sock_state; + long long unsigned int ino; + __u8 saddr[28]; + __u8 daddr[28]; + char __data[0]; +}; + +struct trace_event_raw_xs_socket_event_done { + struct trace_entry ent; + int error; + unsigned int socket_state; + unsigned int sock_state; + long long unsigned int ino; + __u8 saddr[28]; + __u8 daddr[28]; + char __data[0]; +}; + +struct trace_event_raw_rpc_socket_nospace { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + unsigned int total; + unsigned int remaining; + char __data[0]; +}; + +struct trace_event_raw_rpc_xprt_lifetime_class { + struct trace_entry ent; + long unsigned int state; + u32 __data_loc_addr; + u32 __data_loc_port; + char __data[0]; +}; + +struct trace_event_raw_rpc_xprt_event { + struct trace_entry ent; + u32 xid; + int status; + u32 __data_loc_addr; + u32 __data_loc_port; + char __data[0]; +}; + +struct trace_event_raw_xprt_transmit { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + u32 xid; + u32 seqno; + int status; + char __data[0]; +}; + +struct trace_event_raw_xprt_retransmit { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + u32 xid; + int ntrans; + int version; + long unsigned int timeout; + u32 __data_loc_progname; + u32 __data_loc_procname; + char __data[0]; +}; + +struct trace_event_raw_xprt_ping { + struct trace_entry ent; + int status; + u32 __data_loc_addr; + u32 __data_loc_port; + char __data[0]; +}; + +struct trace_event_raw_xprt_writelock_event { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + unsigned int snd_task_id; + char __data[0]; +}; + +struct trace_event_raw_xprt_cong_event { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + unsigned int snd_task_id; + long unsigned int cong; + long unsigned int cwnd; + bool wait; + char __data[0]; +}; + +struct trace_event_raw_xprt_reserve { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + u32 xid; + char __data[0]; +}; + +struct trace_event_raw_xs_data_ready { + struct trace_entry ent; + u32 __data_loc_addr; + u32 __data_loc_port; + char __data[0]; +}; + +struct trace_event_raw_xs_stream_read_data { + struct trace_entry ent; + ssize_t err; + size_t total; + u32 __data_loc_addr; + u32 __data_loc_port; + char __data[0]; +}; + +struct trace_event_raw_xs_stream_read_request { + struct trace_entry ent; + u32 __data_loc_addr; + u32 __data_loc_port; + u32 xid; + long unsigned int copied; + unsigned int reclen; + unsigned int offset; + char __data[0]; +}; + +struct trace_event_raw_rpcb_getport { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + unsigned int program; + unsigned int version; + int protocol; + unsigned int bind_version; + u32 __data_loc_servername; + char __data[0]; +}; + +struct trace_event_raw_rpcb_setport { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + int status; + short unsigned int port; + char __data[0]; +}; + +struct trace_event_raw_pmap_register { + struct trace_entry ent; + unsigned int program; + unsigned int version; + int protocol; + unsigned int port; + char __data[0]; +}; + +struct trace_event_raw_rpcb_register { + struct trace_entry ent; + unsigned int program; + unsigned int version; + u32 __data_loc_addr; + u32 __data_loc_netid; + char __data[0]; +}; + +struct trace_event_raw_rpcb_unregister { + struct trace_entry ent; + unsigned int program; + unsigned int version; + u32 __data_loc_netid; + char __data[0]; +}; + +struct trace_event_raw_rpc_tls_class { + struct trace_entry ent; + long unsigned int requested_policy; + u32 version; + u32 __data_loc_servername; + u32 __data_loc_progname; + char __data[0]; +}; + +struct trace_event_raw_svc_xdr_msg_class { + struct trace_entry ent; + u32 xid; + const void *head_base; + size_t head_len; + const void *tail_base; + size_t tail_len; + unsigned int page_len; + unsigned int msg_len; + char __data[0]; +}; + +struct trace_event_raw_svc_xdr_buf_class { + struct trace_entry ent; + u32 xid; + const void *head_base; + size_t head_len; + const void *tail_base; + size_t tail_len; + unsigned int page_base; + unsigned int page_len; + unsigned int msg_len; + char __data[0]; +}; + +struct trace_event_raw_svc_authenticate { + struct trace_entry ent; + u32 __data_loc_server; + u32 __data_loc_client; + unsigned int netns_ino; + u32 xid; + long unsigned int svc_status; + long unsigned int auth_stat; + char __data[0]; +}; + +struct trace_event_raw_svc_process { + struct trace_entry ent; + u32 xid; + u32 vers; + u32 proc; + u32 __data_loc_service; + u32 __data_loc_procedure; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_svc_rqst_event { + struct trace_entry ent; + u32 __data_loc_server; + u32 __data_loc_client; + unsigned int netns_ino; + u32 xid; + long unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_svc_rqst_status { + struct trace_entry ent; + u32 __data_loc_server; + u32 __data_loc_client; + unsigned int netns_ino; + u32 xid; + int status; + long unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_svc_replace_page_err { + struct trace_entry ent; + u32 __data_loc_server; + u32 __data_loc_client; + unsigned int netns_ino; + u32 xid; + const void *begin; + const void *respages; + const void *nextpage; + char __data[0]; +}; + +struct trace_event_raw_svc_stats_latency { + struct trace_entry ent; + u32 __data_loc_server; + u32 __data_loc_client; + unsigned int netns_ino; + u32 xid; + long unsigned int execute; + u32 __data_loc_procedure; + char __data[0]; +}; + +struct trace_event_raw_svc_xprt_create_err { + struct trace_entry ent; + long int error; + u32 __data_loc_program; + u32 __data_loc_protocol; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_svc_xprt_enqueue { + struct trace_entry ent; + u32 __data_loc_server; + u32 __data_loc_client; + long unsigned int flags; + unsigned int netns_ino; + char __data[0]; +}; + +struct trace_event_raw_svc_xprt_dequeue { + struct trace_entry ent; + u32 __data_loc_server; + u32 __data_loc_client; + long unsigned int flags; + unsigned int netns_ino; + long unsigned int wakeup; + char __data[0]; +}; + +struct trace_event_raw_svc_xprt_event { + struct trace_entry ent; + u32 __data_loc_server; + u32 __data_loc_client; + long unsigned int flags; + unsigned int netns_ino; + char __data[0]; +}; + +struct trace_event_raw_svc_xprt_accept { + struct trace_entry ent; + u32 __data_loc_server; + u32 __data_loc_client; + long unsigned int flags; + unsigned int netns_ino; + u32 __data_loc_protocol; + u32 __data_loc_service; + char __data[0]; +}; + +struct trace_event_raw_svc_wake_up { + struct trace_entry ent; + int pid; + char __data[0]; +}; + +struct trace_event_raw_svc_alloc_arg_err { + struct trace_entry ent; + unsigned int requested; + unsigned int allocated; + char __data[0]; +}; + +struct trace_event_raw_svc_deferred_event { + struct trace_entry ent; + const void *dr; + u32 xid; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_svcsock_lifetime_class { + struct trace_entry ent; + unsigned int netns_ino; + const void *svsk; + const void *sk; + long unsigned int type; + long unsigned int family; + long unsigned int state; + char __data[0]; +}; + +struct trace_event_raw_svcsock_marker { + struct trace_entry ent; + unsigned int length; + bool last; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_svcsock_class { + struct trace_entry ent; + ssize_t result; + long unsigned int flags; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_svcsock_tcp_recv_short { + struct trace_entry ent; + u32 expected; + u32 received; + long unsigned int flags; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_svcsock_tcp_state { + struct trace_entry ent; + long unsigned int socket_state; + long unsigned int sock_state; + long unsigned int flags; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_svcsock_accept_class { + struct trace_entry ent; + long int status; + u32 __data_loc_service; + unsigned int netns_ino; + char __data[0]; +}; + +struct trace_event_raw_cache_event { + struct trace_entry ent; + const struct cache_head *h; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_register_class { + struct trace_entry ent; + u32 version; + long unsigned int family; + short unsigned int protocol; + short unsigned int port; + int error; + u32 __data_loc_program; + char __data[0]; +}; + +struct trace_event_raw_svc_unregister { + struct trace_entry ent; + u32 version; + int error; + u32 __data_loc_program; + char __data[0]; +}; + +struct trace_event_data_offsets_rpc_xdr_buf_class {}; + +struct trace_event_data_offsets_rpc_clnt_class {}; + +struct trace_event_data_offsets_rpc_clnt_new { + u32 program; + const void *program_ptr_; + u32 server; + const void *server_ptr_; + u32 addr; + const void *addr_ptr_; + u32 port; + const void *port_ptr_; +}; + +struct trace_event_data_offsets_rpc_clnt_new_err { + u32 program; + const void *program_ptr_; + u32 server; + const void *server_ptr_; +}; + +struct trace_event_data_offsets_rpc_clnt_clone_err {}; + +struct trace_event_data_offsets_rpc_task_status {}; + +struct trace_event_data_offsets_rpc_request { + u32 progname; + const void *progname_ptr_; + u32 procname; + const void *procname_ptr_; +}; + +struct trace_event_data_offsets_rpc_task_running {}; + +struct trace_event_data_offsets_rpc_task_queued { + u32 q_name; + const void *q_name_ptr_; +}; + +struct trace_event_data_offsets_rpc_failure {}; + +struct trace_event_data_offsets_rpc_reply_event { + u32 progname; + const void *progname_ptr_; + u32 procname; + const void *procname_ptr_; + u32 servername; + const void *servername_ptr_; +}; + +struct trace_event_data_offsets_rpc_buf_alloc {}; + +struct trace_event_data_offsets_rpc_call_rpcerror {}; + +struct trace_event_data_offsets_rpc_stats_latency { + u32 progname; + const void *progname_ptr_; + u32 procname; + const void *procname_ptr_; +}; + +struct trace_event_data_offsets_rpc_xdr_overflow { + u32 progname; + const void *progname_ptr_; + u32 procedure; + const void *procedure_ptr_; +}; + +struct trace_event_data_offsets_rpc_xdr_alignment { + u32 progname; + const void *progname_ptr_; + u32 procedure; + const void *procedure_ptr_; +}; + +struct trace_event_data_offsets_xs_socket_event {}; + +struct trace_event_data_offsets_xs_socket_event_done {}; + +struct trace_event_data_offsets_rpc_socket_nospace {}; + +struct trace_event_data_offsets_rpc_xprt_lifetime_class { + u32 addr; + const void *addr_ptr_; + u32 port; + const void *port_ptr_; +}; + +struct trace_event_data_offsets_rpc_xprt_event { + u32 addr; + const void *addr_ptr_; + u32 port; + const void *port_ptr_; +}; + +struct trace_event_data_offsets_xprt_transmit {}; + +struct trace_event_data_offsets_xprt_retransmit { + u32 progname; + const void *progname_ptr_; + u32 procname; + const void *procname_ptr_; +}; + +struct trace_event_data_offsets_xprt_ping { + u32 addr; + const void *addr_ptr_; + u32 port; + const void *port_ptr_; +}; + +struct trace_event_data_offsets_xprt_writelock_event {}; + +struct trace_event_data_offsets_xprt_cong_event {}; + +struct trace_event_data_offsets_xprt_reserve {}; + +struct trace_event_data_offsets_xs_data_ready { + u32 addr; + const void *addr_ptr_; + u32 port; + const void *port_ptr_; +}; + +struct trace_event_data_offsets_xs_stream_read_data { + u32 addr; + const void *addr_ptr_; + u32 port; + const void *port_ptr_; +}; + +struct trace_event_data_offsets_xs_stream_read_request { + u32 addr; + const void *addr_ptr_; + u32 port; + const void *port_ptr_; +}; + +struct trace_event_data_offsets_rpcb_getport { + u32 servername; + const void *servername_ptr_; +}; + +struct trace_event_data_offsets_rpcb_setport {}; + +struct trace_event_data_offsets_pmap_register {}; + +struct trace_event_data_offsets_rpcb_register { + u32 addr; + const void *addr_ptr_; + u32 netid; + const void *netid_ptr_; +}; + +struct trace_event_data_offsets_rpcb_unregister { + u32 netid; + const void *netid_ptr_; +}; + +struct trace_event_data_offsets_rpc_tls_class { + u32 servername; + const void *servername_ptr_; + u32 progname; + const void *progname_ptr_; +}; + +struct trace_event_data_offsets_svc_xdr_msg_class {}; + +struct trace_event_data_offsets_svc_xdr_buf_class {}; + +struct trace_event_data_offsets_svc_authenticate { + u32 server; + const void *server_ptr_; + u32 client; + const void *client_ptr_; +}; + +struct trace_event_data_offsets_svc_process { + u32 service; + const void *service_ptr_; + u32 procedure; + const void *procedure_ptr_; + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_svc_rqst_event { + u32 server; + const void *server_ptr_; + u32 client; + const void *client_ptr_; +}; + +struct trace_event_data_offsets_svc_rqst_status { + u32 server; + const void *server_ptr_; + u32 client; + const void *client_ptr_; +}; + +struct trace_event_data_offsets_svc_replace_page_err { + u32 server; + const void *server_ptr_; + u32 client; + const void *client_ptr_; +}; + +struct trace_event_data_offsets_svc_stats_latency { + u32 server; + const void *server_ptr_; + u32 client; + const void *client_ptr_; + u32 procedure; + const void *procedure_ptr_; +}; + +struct trace_event_data_offsets_svc_xprt_create_err { + u32 program; + const void *program_ptr_; + u32 protocol; + const void *protocol_ptr_; + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_svc_xprt_enqueue { + u32 server; + const void *server_ptr_; + u32 client; + const void *client_ptr_; +}; + +struct trace_event_data_offsets_svc_xprt_dequeue { + u32 server; + const void *server_ptr_; + u32 client; + const void *client_ptr_; +}; + +struct trace_event_data_offsets_svc_xprt_event { + u32 server; + const void *server_ptr_; + u32 client; + const void *client_ptr_; +}; + +struct trace_event_data_offsets_svc_xprt_accept { + u32 server; + const void *server_ptr_; + u32 client; + const void *client_ptr_; + u32 protocol; + const void *protocol_ptr_; + u32 service; + const void *service_ptr_; +}; + +struct trace_event_data_offsets_svc_wake_up {}; + +struct trace_event_data_offsets_svc_alloc_arg_err {}; + +struct trace_event_data_offsets_svc_deferred_event { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_svcsock_lifetime_class {}; + +struct trace_event_data_offsets_svcsock_marker { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_svcsock_class { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_svcsock_tcp_recv_short { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_svcsock_tcp_state { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_svcsock_accept_class { + u32 service; + const void *service_ptr_; +}; + +struct trace_event_data_offsets_cache_event { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_register_class { + u32 program; + const void *program_ptr_; +}; + +struct trace_event_data_offsets_svc_unregister { + u32 program; + const void *program_ptr_; +}; + +typedef void (*btf_trace_rpc_xdr_sendto)(void *, const struct rpc_task *, const struct xdr_buf *); + +typedef void (*btf_trace_rpc_xdr_recvfrom)(void *, const struct rpc_task *, const struct xdr_buf *); + +typedef void (*btf_trace_rpc_xdr_reply_pages)(void *, const struct rpc_task *, const struct xdr_buf *); + +typedef void (*btf_trace_rpc_clnt_free)(void *, const struct rpc_clnt *); + +typedef void (*btf_trace_rpc_clnt_killall)(void *, const struct rpc_clnt *); + +typedef void (*btf_trace_rpc_clnt_shutdown)(void *, const struct rpc_clnt *); + +typedef void (*btf_trace_rpc_clnt_release)(void *, const struct rpc_clnt *); + +typedef void (*btf_trace_rpc_clnt_replace_xprt)(void *, const struct rpc_clnt *); + +typedef void (*btf_trace_rpc_clnt_replace_xprt_err)(void *, const struct rpc_clnt *); + +typedef void (*btf_trace_rpc_clnt_new)(void *, const struct rpc_clnt *, const struct rpc_xprt *, const struct rpc_create_args *); + +typedef void (*btf_trace_rpc_clnt_new_err)(void *, const char *, const char *, int); + +typedef void (*btf_trace_rpc_clnt_clone_err)(void *, const struct rpc_clnt *, int); + +typedef void (*btf_trace_rpc_call_status)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc_connect_status)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc_timeout_status)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc_retry_refresh_status)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc_refresh_status)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc_request)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc_task_begin)(void *, const struct rpc_task *, const void *); + +typedef void (*btf_trace_rpc_task_run_action)(void *, const struct rpc_task *, const void *); + +typedef void (*btf_trace_rpc_task_sync_sleep)(void *, const struct rpc_task *, const void *); + +typedef void (*btf_trace_rpc_task_sync_wake)(void *, const struct rpc_task *, const void *); + +typedef void (*btf_trace_rpc_task_complete)(void *, const struct rpc_task *, const void *); + +typedef void (*btf_trace_rpc_task_timeout)(void *, const struct rpc_task *, const void *); + +typedef void (*btf_trace_rpc_task_signalled)(void *, const struct rpc_task *, const void *); + +typedef void (*btf_trace_rpc_task_end)(void *, const struct rpc_task *, const void *); + +typedef void (*btf_trace_rpc_task_call_done)(void *, const struct rpc_task *, const void *); + +typedef void (*btf_trace_rpc_task_sleep)(void *, const struct rpc_task *, const struct rpc_wait_queue *); + +typedef void (*btf_trace_rpc_task_wakeup)(void *, const struct rpc_task *, const struct rpc_wait_queue *); + +typedef void (*btf_trace_rpc_bad_callhdr)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc_bad_verifier)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc__prog_unavail)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc__prog_mismatch)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc__proc_unavail)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc__garbage_args)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc__unparsable)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc__mismatch)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc__stale_creds)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc__bad_creds)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc__auth_tooweak)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpcb_prog_unavail_err)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpcb_timeout_err)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpcb_bind_version_err)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpcb_unreachable_err)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpcb_unrecognized_err)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpc_buf_alloc)(void *, const struct rpc_task *, int); + +typedef void (*btf_trace_rpc_call_rpcerror)(void *, const struct rpc_task *, int, int); + +typedef void (*btf_trace_rpc_stats_latency)(void *, const struct rpc_task *, ktime_t, ktime_t, ktime_t); + +typedef void (*btf_trace_rpc_xdr_overflow)(void *, const struct xdr_stream *, size_t); + +typedef void (*btf_trace_rpc_xdr_alignment)(void *, const struct xdr_stream *, size_t, unsigned int); + +typedef void (*btf_trace_rpc_socket_state_change)(void *, struct rpc_xprt *, struct socket *); + +typedef void (*btf_trace_rpc_socket_connect)(void *, struct rpc_xprt *, struct socket *, int); + +typedef void (*btf_trace_rpc_socket_error)(void *, struct rpc_xprt *, struct socket *, int); + +typedef void (*btf_trace_rpc_socket_reset_connection)(void *, struct rpc_xprt *, struct socket *, int); + +typedef void (*btf_trace_rpc_socket_close)(void *, struct rpc_xprt *, struct socket *); + +typedef void (*btf_trace_rpc_socket_shutdown)(void *, struct rpc_xprt *, struct socket *); + +typedef void (*btf_trace_rpc_socket_nospace)(void *, const struct rpc_rqst *, const struct sock_xprt *); + +typedef void (*btf_trace_xprt_create)(void *, const struct rpc_xprt *); + +typedef void (*btf_trace_xprt_connect)(void *, const struct rpc_xprt *); + +typedef void (*btf_trace_xprt_disconnect_auto)(void *, const struct rpc_xprt *); + +typedef void (*btf_trace_xprt_disconnect_done)(void *, const struct rpc_xprt *); + +typedef void (*btf_trace_xprt_disconnect_force)(void *, const struct rpc_xprt *); + +typedef void (*btf_trace_xprt_destroy)(void *, const struct rpc_xprt *); + +typedef void (*btf_trace_xprt_timer)(void *, const struct rpc_xprt *, __be32, int); + +typedef void (*btf_trace_xprt_lookup_rqst)(void *, const struct rpc_xprt *, __be32, int); + +typedef void (*btf_trace_xprt_transmit)(void *, const struct rpc_rqst *, int); + +typedef void (*btf_trace_xprt_retransmit)(void *, const struct rpc_rqst *); + +typedef void (*btf_trace_xprt_ping)(void *, const struct rpc_xprt *, int); + +typedef void (*btf_trace_xprt_reserve_xprt)(void *, const struct rpc_xprt *, const struct rpc_task *); + +typedef void (*btf_trace_xprt_release_xprt)(void *, const struct rpc_xprt *, const struct rpc_task *); + +typedef void (*btf_trace_xprt_reserve_cong)(void *, const struct rpc_xprt *, const struct rpc_task *); + +typedef void (*btf_trace_xprt_release_cong)(void *, const struct rpc_xprt *, const struct rpc_task *); + +typedef void (*btf_trace_xprt_get_cong)(void *, const struct rpc_xprt *, const struct rpc_task *); + +typedef void (*btf_trace_xprt_put_cong)(void *, const struct rpc_xprt *, const struct rpc_task *); + +typedef void (*btf_trace_xprt_reserve)(void *, const struct rpc_rqst *); + +typedef void (*btf_trace_xs_data_ready)(void *, const struct rpc_xprt *); + +typedef void (*btf_trace_xs_stream_read_data)(void *, struct rpc_xprt *, ssize_t, size_t); + +typedef void (*btf_trace_xs_stream_read_request)(void *, struct sock_xprt *); + +typedef void (*btf_trace_rpcb_getport)(void *, const struct rpc_clnt *, const struct rpc_task *, unsigned int); + +typedef void (*btf_trace_rpcb_setport)(void *, const struct rpc_task *, int, short unsigned int); + +typedef void (*btf_trace_pmap_register)(void *, u32, u32, int, short unsigned int); + +typedef void (*btf_trace_rpcb_register)(void *, u32, u32, const char *, const char *); + +typedef void (*btf_trace_rpcb_unregister)(void *, u32, u32, const char *); + +typedef void (*btf_trace_rpc_tls_unavailable)(void *, const struct rpc_clnt *, const struct rpc_xprt *); + +typedef void (*btf_trace_rpc_tls_not_started)(void *, const struct rpc_clnt *, const struct rpc_xprt *); + +typedef void (*btf_trace_svc_xdr_recvfrom)(void *, const struct xdr_buf *); + +typedef void (*btf_trace_svc_xdr_sendto)(void *, __be32, const struct xdr_buf *); + +typedef void (*btf_trace_svc_authenticate)(void *, const struct svc_rqst *, enum svc_auth_status); + +typedef void (*btf_trace_svc_process)(void *, const struct svc_rqst *, const char *); + +typedef void (*btf_trace_svc_defer)(void *, const struct svc_rqst *); + +typedef void (*btf_trace_svc_drop)(void *, const struct svc_rqst *); + +typedef void (*btf_trace_svc_send)(void *, const struct svc_rqst *, int); + +typedef void (*btf_trace_svc_replace_page_err)(void *, const struct svc_rqst *); + +typedef void (*btf_trace_svc_stats_latency)(void *, const struct svc_rqst *); + +typedef void (*btf_trace_svc_xprt_create_err)(void *, const char *, const char *, struct sockaddr *, size_t, const struct svc_xprt *); + +typedef void (*btf_trace_svc_xprt_enqueue)(void *, const struct svc_xprt *, long unsigned int); + +typedef void (*btf_trace_svc_xprt_dequeue)(void *, const struct svc_rqst *); + +typedef void (*btf_trace_svc_xprt_no_write_space)(void *, const struct svc_xprt *); + +typedef void (*btf_trace_svc_xprt_close)(void *, const struct svc_xprt *); + +typedef void (*btf_trace_svc_xprt_detach)(void *, const struct svc_xprt *); + +typedef void (*btf_trace_svc_xprt_free)(void *, const struct svc_xprt *); + +typedef void (*btf_trace_svc_tls_start)(void *, const struct svc_xprt *); + +typedef void (*btf_trace_svc_tls_upcall)(void *, const struct svc_xprt *); + +typedef void (*btf_trace_svc_tls_unavailable)(void *, const struct svc_xprt *); + +typedef void (*btf_trace_svc_tls_not_started)(void *, const struct svc_xprt *); + +typedef void (*btf_trace_svc_tls_timed_out)(void *, const struct svc_xprt *); + +typedef void (*btf_trace_svc_xprt_accept)(void *, const struct svc_xprt *, const char *); + +typedef void (*btf_trace_svc_wake_up)(void *, int); + +typedef void (*btf_trace_svc_alloc_arg_err)(void *, unsigned int, unsigned int); + +typedef void (*btf_trace_svc_defer_drop)(void *, const struct svc_deferred_req *); + +typedef void (*btf_trace_svc_defer_queue)(void *, const struct svc_deferred_req *); + +typedef void (*btf_trace_svc_defer_recv)(void *, const struct svc_deferred_req *); + +typedef void (*btf_trace_svcsock_new)(void *, const void *, const struct socket *); + +typedef void (*btf_trace_svcsock_free)(void *, const void *, const struct socket *); + +typedef void (*btf_trace_svcsock_marker)(void *, const struct svc_xprt *, __be32); + +typedef void (*btf_trace_svcsock_udp_send)(void *, const struct svc_xprt *, ssize_t); + +typedef void (*btf_trace_svcsock_udp_recv)(void *, const struct svc_xprt *, ssize_t); + +typedef void (*btf_trace_svcsock_udp_recv_err)(void *, const struct svc_xprt *, ssize_t); + +typedef void (*btf_trace_svcsock_tcp_send)(void *, const struct svc_xprt *, ssize_t); + +typedef void (*btf_trace_svcsock_tcp_recv)(void *, const struct svc_xprt *, ssize_t); + +typedef void (*btf_trace_svcsock_tcp_recv_eagain)(void *, const struct svc_xprt *, ssize_t); + +typedef void (*btf_trace_svcsock_tcp_recv_err)(void *, const struct svc_xprt *, ssize_t); + +typedef void (*btf_trace_svcsock_data_ready)(void *, const struct svc_xprt *, ssize_t); + +typedef void (*btf_trace_svcsock_write_space)(void *, const struct svc_xprt *, ssize_t); + +typedef void (*btf_trace_svcsock_tcp_recv_short)(void *, const struct svc_xprt *, u32, u32); + +typedef void (*btf_trace_svcsock_tcp_state)(void *, const struct svc_xprt *, const struct socket *); + +typedef void (*btf_trace_svcsock_accept_err)(void *, const struct svc_xprt *, const char *, long int); + +typedef void (*btf_trace_svcsock_getpeername_err)(void *, const struct svc_xprt *, const char *, long int); + +typedef void (*btf_trace_cache_entry_expired)(void *, const struct cache_detail *, const struct cache_head *); + +typedef void (*btf_trace_cache_entry_upcall)(void *, const struct cache_detail *, const struct cache_head *); + +typedef void (*btf_trace_cache_entry_update)(void *, const struct cache_detail *, const struct cache_head *); + +typedef void (*btf_trace_cache_entry_make_negative)(void *, const struct cache_detail *, const struct cache_head *); + +typedef void (*btf_trace_cache_entry_no_listener)(void *, const struct cache_detail *, const struct cache_head *); + +typedef void (*btf_trace_svc_register)(void *, const char *, const u32, const int, const short unsigned int, const short unsigned int, int); + +typedef void (*btf_trace_svc_noregister)(void *, const char *, const u32, const int, const short unsigned int, const short unsigned int, int); + +typedef void (*btf_trace_svc_unregister)(void *, const char *, const u32, int); + +struct sctp_sndinfo { + __u16 snd_sid; + __u16 snd_flags; + __u32 snd_ppid; + __u32 snd_context; + sctp_assoc_t snd_assoc_id; +}; + +struct sctp_rcvinfo { + __u16 rcv_sid; + __u16 rcv_ssn; + __u16 rcv_flags; + __u32 rcv_ppid; + __u32 rcv_tsn; + __u32 rcv_cumtsn; + __u32 rcv_context; + sctp_assoc_t rcv_assoc_id; +}; + +struct sctp_nxtinfo { + __u16 nxt_sid; + __u16 nxt_flags; + __u32 nxt_ppid; + __u32 nxt_length; + sctp_assoc_t nxt_assoc_id; +}; + +enum sctp_sinfo_flags { + SCTP_UNORDERED = 1, + SCTP_ADDR_OVER = 2, + SCTP_ABORT = 4, + SCTP_SACK_IMMEDIATELY = 8, + SCTP_SENDALL = 64, + SCTP_PR_SCTP_ALL = 128, + SCTP_NOTIFICATION = 32768, + SCTP_EOF = 512, +}; + +enum sctp_cmsg_type { + SCTP_INIT = 0, + SCTP_SNDRCV = 1, + SCTP_SNDINFO = 2, + SCTP_RCVINFO = 3, + SCTP_NXTINFO = 4, + SCTP_PRINFO = 5, + SCTP_AUTHINFO = 6, + SCTP_DSTADDRV4 = 7, + SCTP_DSTADDRV6 = 8, +}; + +struct sctp_assoc_change { + __u16 sac_type; + __u16 sac_flags; + __u32 sac_length; + __u16 sac_state; + __u16 sac_error; + __u16 sac_outbound_streams; + __u16 sac_inbound_streams; + sctp_assoc_t sac_assoc_id; + __u8 sac_info[0]; +}; + +struct sctp_paddr_change { + __u16 spc_type; + __u16 spc_flags; + __u32 spc_length; + struct __kernel_sockaddr_storage spc_aaddr; + int spc_state; + int spc_error; + sctp_assoc_t spc_assoc_id; +} __attribute__((packed)); + +struct sctp_remote_error { + __u16 sre_type; + __u16 sre_flags; + __u32 sre_length; + __be16 sre_error; + sctp_assoc_t sre_assoc_id; + __u8 sre_data[0]; +}; + +struct sctp_send_failed { + __u16 ssf_type; + __u16 ssf_flags; + __u32 ssf_length; + __u32 ssf_error; + struct sctp_sndrcvinfo ssf_info; + sctp_assoc_t ssf_assoc_id; + __u8 ssf_data[0]; +}; + +struct sctp_send_failed_event { + __u16 ssf_type; + __u16 ssf_flags; + __u32 ssf_length; + __u32 ssf_error; + struct sctp_sndinfo ssfe_info; + sctp_assoc_t ssf_assoc_id; + __u8 ssf_data[0]; +}; + +struct sctp_shutdown_event { + __u16 sse_type; + __u16 sse_flags; + __u32 sse_length; + sctp_assoc_t sse_assoc_id; +}; + +struct sctp_adaptation_event { + __u16 sai_type; + __u16 sai_flags; + __u32 sai_length; + __u32 sai_adaptation_ind; + sctp_assoc_t sai_assoc_id; +}; + +struct sctp_pdapi_event { + __u16 pdapi_type; + __u16 pdapi_flags; + __u32 pdapi_length; + __u32 pdapi_indication; + sctp_assoc_t pdapi_assoc_id; + __u32 pdapi_stream; + __u32 pdapi_seq; +}; + +struct sctp_authkey_event { + __u16 auth_type; + __u16 auth_flags; + __u32 auth_length; + __u16 auth_keynumber; + __u16 auth_altkeynumber; + __u32 auth_indication; + sctp_assoc_t auth_assoc_id; +}; + +struct sctp_sender_dry_event { + __u16 sender_dry_type; + __u16 sender_dry_flags; + __u32 sender_dry_length; + sctp_assoc_t sender_dry_assoc_id; +}; + +struct sctp_stream_reset_event { + __u16 strreset_type; + __u16 strreset_flags; + __u32 strreset_length; + sctp_assoc_t strreset_assoc_id; + __u16 strreset_stream_list[0]; +}; + +struct sctp_assoc_reset_event { + __u16 assocreset_type; + __u16 assocreset_flags; + __u32 assocreset_length; + sctp_assoc_t assocreset_assoc_id; + __u32 assocreset_local_tsn; + __u32 assocreset_remote_tsn; +}; + +struct sctp_stream_change_event { + __u16 strchange_type; + __u16 strchange_flags; + __u32 strchange_length; + sctp_assoc_t strchange_assoc_id; + __u16 strchange_instrms; + __u16 strchange_outstrms; +}; + +union sctp_notification { + struct { + __u16 sn_type; + __u16 sn_flags; + __u32 sn_length; + } sn_header; + struct sctp_assoc_change sn_assoc_change; + struct sctp_paddr_change sn_paddr_change; + struct sctp_remote_error sn_remote_error; + struct sctp_send_failed sn_send_failed; + struct sctp_shutdown_event sn_shutdown_event; + struct sctp_adaptation_event sn_adaptation_event; + struct sctp_pdapi_event sn_pdapi_event; + struct sctp_authkey_event sn_authkey_event; + struct sctp_sender_dry_event sn_sender_dry_event; + struct sctp_stream_reset_event sn_strreset_event; + struct sctp_assoc_reset_event sn_assocreset_event; + struct sctp_stream_change_event sn_strchange_event; + struct sctp_send_failed_event sn_send_failed_event; +}; + +enum sctp_sn_type { + SCTP_SN_TYPE_BASE = 32768, + SCTP_DATA_IO_EVENT = 32768, + SCTP_ASSOC_CHANGE = 32769, + SCTP_PEER_ADDR_CHANGE = 32770, + SCTP_SEND_FAILED = 32771, + SCTP_REMOTE_ERROR = 32772, + SCTP_SHUTDOWN_EVENT = 32773, + SCTP_PARTIAL_DELIVERY_EVENT = 32774, + SCTP_ADAPTATION_INDICATION = 32775, + SCTP_AUTHENTICATION_EVENT = 32776, + SCTP_SENDER_DRY_EVENT = 32777, + SCTP_STREAM_RESET_EVENT = 32778, + SCTP_ASSOC_RESET_EVENT = 32779, + SCTP_STREAM_CHANGE_EVENT = 32780, + SCTP_SEND_FAILED_EVENT = 32781, + SCTP_SN_TYPE_MAX = 32781, +}; + +enum { + SCTP_DATA_MIDDLE_FRAG = 0, + SCTP_DATA_LAST_FRAG = 1, + SCTP_DATA_FIRST_FRAG = 2, + SCTP_DATA_NOT_FRAG = 3, + SCTP_DATA_UNORDERED = 4, + SCTP_DATA_SACK_IMM = 8, +}; + +enum { + SCTP_AUTH_NEW_KEY = 0, + SCTP_AUTH_FREE_KEY = 1, + SCTP_AUTH_NO_AUTH = 2, +}; + +struct sctp_hmacalgo { + __u32 shmac_num_idents; + __u16 shmac_idents[0]; +}; + +struct sctp_authkey { + sctp_assoc_t sca_assoc_id; + __u16 sca_keynumber; + __u16 sca_keylength; + __u8 sca_key[0]; +}; + +enum sctp_cid { + SCTP_CID_DATA = 0, + SCTP_CID_INIT = 1, + SCTP_CID_INIT_ACK = 2, + SCTP_CID_SACK = 3, + SCTP_CID_HEARTBEAT = 4, + SCTP_CID_HEARTBEAT_ACK = 5, + SCTP_CID_ABORT = 6, + SCTP_CID_SHUTDOWN = 7, + SCTP_CID_SHUTDOWN_ACK = 8, + SCTP_CID_ERROR = 9, + SCTP_CID_COOKIE_ECHO = 10, + SCTP_CID_COOKIE_ACK = 11, + SCTP_CID_ECN_ECNE = 12, + SCTP_CID_ECN_CWR = 13, + SCTP_CID_SHUTDOWN_COMPLETE = 14, + SCTP_CID_AUTH = 15, + SCTP_CID_I_DATA = 64, + SCTP_CID_FWD_TSN = 192, + SCTP_CID_ASCONF = 193, + SCTP_CID_I_FWD_TSN = 194, + SCTP_CID_ASCONF_ACK = 128, + SCTP_CID_RECONF = 130, + SCTP_CID_PAD = 132, +}; + +struct sctp_auth_chunk { + struct sctp_chunkhdr chunk_hdr; + struct sctp_authhdr auth_hdr; +}; + +struct sctp_hmac { + __u16 hmac_id; + char *hmac_name; + __u16 hmac_len; +}; + +enum { + SCTP_MAX_STREAM = 65535, +}; + +enum sctp_event_timeout { + SCTP_EVENT_TIMEOUT_NONE = 0, + SCTP_EVENT_TIMEOUT_T1_COOKIE = 1, + SCTP_EVENT_TIMEOUT_T1_INIT = 2, + SCTP_EVENT_TIMEOUT_T2_SHUTDOWN = 3, + SCTP_EVENT_TIMEOUT_T3_RTX = 4, + SCTP_EVENT_TIMEOUT_T4_RTO = 5, + SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD = 6, + SCTP_EVENT_TIMEOUT_HEARTBEAT = 7, + SCTP_EVENT_TIMEOUT_RECONF = 8, + SCTP_EVENT_TIMEOUT_PROBE = 9, + SCTP_EVENT_TIMEOUT_SACK = 10, + SCTP_EVENT_TIMEOUT_AUTOCLOSE = 11, +}; + +enum { + SCTP_MAX_DUP_TSNS = 16, +}; + +enum { + SCTP_AUTH_HMAC_ID_RESERVED_0 = 0, + SCTP_AUTH_HMAC_ID_SHA1 = 1, + SCTP_AUTH_HMAC_ID_RESERVED_2 = 2, + SCTP_AUTH_HMAC_ID_SHA256 = 3, + __SCTP_AUTH_HMAC_MAX = 4, +}; + +enum { + SCTP_MIB_NUM = 0, + SCTP_MIB_CURRESTAB = 1, + SCTP_MIB_ACTIVEESTABS = 2, + SCTP_MIB_PASSIVEESTABS = 3, + SCTP_MIB_ABORTEDS = 4, + SCTP_MIB_SHUTDOWNS = 5, + SCTP_MIB_OUTOFBLUES = 6, + SCTP_MIB_CHECKSUMERRORS = 7, + SCTP_MIB_OUTCTRLCHUNKS = 8, + SCTP_MIB_OUTORDERCHUNKS = 9, + SCTP_MIB_OUTUNORDERCHUNKS = 10, + SCTP_MIB_INCTRLCHUNKS = 11, + SCTP_MIB_INORDERCHUNKS = 12, + SCTP_MIB_INUNORDERCHUNKS = 13, + SCTP_MIB_FRAGUSRMSGS = 14, + SCTP_MIB_REASMUSRMSGS = 15, + SCTP_MIB_OUTSCTPPACKS = 16, + SCTP_MIB_INSCTPPACKS = 17, + SCTP_MIB_T1_INIT_EXPIREDS = 18, + SCTP_MIB_T1_COOKIE_EXPIREDS = 19, + SCTP_MIB_T2_SHUTDOWN_EXPIREDS = 20, + SCTP_MIB_T3_RTX_EXPIREDS = 21, + SCTP_MIB_T4_RTO_EXPIREDS = 22, + SCTP_MIB_T5_SHUTDOWN_GUARD_EXPIREDS = 23, + SCTP_MIB_DELAY_SACK_EXPIREDS = 24, + SCTP_MIB_AUTOCLOSE_EXPIREDS = 25, + SCTP_MIB_T1_RETRANSMITS = 26, + SCTP_MIB_T3_RETRANSMITS = 27, + SCTP_MIB_PMTUD_RETRANSMITS = 28, + SCTP_MIB_FAST_RETRANSMITS = 29, + SCTP_MIB_IN_PKT_SOFTIRQ = 30, + SCTP_MIB_IN_PKT_BACKLOG = 31, + SCTP_MIB_IN_PKT_DISCARDS = 32, + SCTP_MIB_IN_DATA_CHUNK_DISCARDS = 33, + __SCTP_MIB_MAX = 34, +}; + +enum p9_msg_t { + P9_TLERROR = 6, + P9_RLERROR = 7, + P9_TSTATFS = 8, + P9_RSTATFS = 9, + P9_TLOPEN = 12, + P9_RLOPEN = 13, + P9_TLCREATE = 14, + P9_RLCREATE = 15, + P9_TSYMLINK = 16, + P9_RSYMLINK = 17, + P9_TMKNOD = 18, + P9_RMKNOD = 19, + P9_TRENAME = 20, + P9_RRENAME = 21, + P9_TREADLINK = 22, + P9_RREADLINK = 23, + P9_TGETATTR = 24, + P9_RGETATTR = 25, + P9_TSETATTR = 26, + P9_RSETATTR = 27, + P9_TXATTRWALK = 30, + P9_RXATTRWALK = 31, + P9_TXATTRCREATE = 32, + P9_RXATTRCREATE = 33, + P9_TREADDIR = 40, + P9_RREADDIR = 41, + P9_TFSYNC = 50, + P9_RFSYNC = 51, + P9_TLOCK = 52, + P9_RLOCK = 53, + P9_TGETLOCK = 54, + P9_RGETLOCK = 55, + P9_TLINK = 70, + P9_RLINK = 71, + P9_TMKDIR = 72, + P9_RMKDIR = 73, + P9_TRENAMEAT = 74, + P9_RRENAMEAT = 75, + P9_TUNLINKAT = 76, + P9_RUNLINKAT = 77, + P9_TVERSION = 100, + P9_RVERSION = 101, + P9_TAUTH = 102, + P9_RAUTH = 103, + P9_TATTACH = 104, + P9_RATTACH = 105, + P9_TERROR = 106, + P9_RERROR = 107, + P9_TFLUSH = 108, + P9_RFLUSH = 109, + P9_TWALK = 110, + P9_RWALK = 111, + P9_TOPEN = 112, + P9_ROPEN = 113, + P9_TCREATE = 114, + P9_RCREATE = 115, + P9_TREAD = 116, + P9_RREAD = 117, + P9_TWRITE = 118, + P9_RWRITE = 119, + P9_TCLUNK = 120, + P9_RCLUNK = 121, + P9_TREMOVE = 122, + P9_RREMOVE = 123, + P9_TSTAT = 124, + P9_RSTAT = 125, + P9_TWSTAT = 126, + P9_RWSTAT = 127, +}; + +struct p9_stat_dotl { + u64 st_result_mask; + struct p9_qid qid; + u32 st_mode; + kuid_t st_uid; + kgid_t st_gid; + u64 st_nlink; + u64 st_rdev; + u64 st_size; + u64 st_blksize; + u64 st_blocks; + u64 st_atime_sec; + u64 st_atime_nsec; + u64 st_mtime_sec; + u64 st_mtime_nsec; + u64 st_ctime_sec; + u64 st_ctime_nsec; + u64 st_btime_sec; + u64 st_btime_nsec; + u64 st_gen; + u64 st_data_version; +}; + +struct p9_iattr_dotl { + u32 valid; + u32 mode; + kuid_t uid; + kgid_t gid; + u64 size; + u64 atime_sec; + u64 atime_nsec; + u64 mtime_sec; + u64 mtime_nsec; +}; + +enum p9_proto_versions { + p9_proto_legacy = 0, + p9_proto_2000u = 1, + p9_proto_2000L = 2, +}; + +struct p9_dirent { + struct p9_qid qid; + u64 d_off; + unsigned char d_type; + char d_name[256]; +}; + +enum { + OVS_VXLAN_EXT_UNSPEC = 0, + OVS_VXLAN_EXT_GBP = 1, + __OVS_VXLAN_EXT_MAX = 2, +}; + +enum { + OVS_TUNNEL_ATTR_UNSPEC = 0, + OVS_TUNNEL_ATTR_DST_PORT = 1, + OVS_TUNNEL_ATTR_EXTENSION = 2, + __OVS_TUNNEL_ATTR_MAX = 3, +}; + +enum ifla_vxlan_df { + VXLAN_DF_UNSET = 0, + VXLAN_DF_SET = 1, + VXLAN_DF_INHERIT = 2, + __VXLAN_DF_END = 3, + VXLAN_DF_MAX = 2, +}; + +enum ifla_vxlan_label_policy { + VXLAN_LABEL_FIXED = 0, + VXLAN_LABEL_INHERIT = 1, + __VXLAN_LABEL_END = 2, + VXLAN_LABEL_MAX = 1, +}; + +struct udp_tunnel_info { + short unsigned int type; + sa_family_t sa_family; + __be16 port; + u8 hw_priv; +}; + +struct udp_tunnel_nic_shared { + struct udp_tunnel_nic *udp_tunnel_nic_info; + struct list_head devices; +}; + +struct vxlan_sock { + struct hlist_node hlist; + struct socket *sock; + struct hlist_head vni_list[1024]; + refcount_t refcnt; + u32 flags; +}; + +union vxlan_addr { + struct sockaddr_in sin; + struct sockaddr_in6 sin6; + struct sockaddr sa; +}; + +struct vxlan_rdst { + union vxlan_addr remote_ip; + __be16 remote_port; + u8 offloaded: 1; + __be32 remote_vni; + u32 remote_ifindex; + struct net_device *remote_dev; + struct list_head list; + struct callback_head rcu; + struct dst_cache dst_cache; +}; + +struct vxlan_config { + union vxlan_addr remote_ip; + union vxlan_addr saddr; + __be32 vni; + int remote_ifindex; + int mtu; + __be16 dst_port; + u16 port_min; + u16 port_max; + u8 tos; + u8 ttl; + __be32 label; + enum ifla_vxlan_label_policy label_policy; + u32 flags; + long unsigned int age_interval; + unsigned int addrmax; + bool no_share; + enum ifla_vxlan_df df; +}; + +struct vxlan_dev; + +struct vxlan_dev_node { + struct hlist_node hlist; + struct vxlan_dev *vxlan; +}; + +struct vxlan_vni_group; + +struct vxlan_dev { + struct vxlan_dev_node hlist4; + struct vxlan_dev_node hlist6; + struct list_head next; + struct vxlan_sock *vn4_sock; + struct vxlan_sock *vn6_sock; + struct net_device *dev; + struct net *net; + struct vxlan_rdst default_dst; + struct timer_list age_timer; + spinlock_t hash_lock[256]; + unsigned int addrcnt; + struct gro_cells gro_cells; + struct vxlan_config cfg; + struct vxlan_vni_group *vnigrp; + struct hlist_head fdb_head[256]; + struct rhashtable mdb_tbl; + struct hlist_head mdb_list; + unsigned int mdb_seq; +}; + +struct vxlan_vni_group { + struct rhashtable vni_hash; + struct list_head vni_list; + u32 num_vnis; +}; + +struct virtio_vsock_hdr { + __le64 src_cid; + __le64 dst_cid; + __le32 src_port; + __le32 dst_port; + __le32 len; + __le16 type; + __le16 op; + __le32 flags; + __le32 buf_alloc; + __le32 fwd_cnt; +} __attribute__((packed)); + +enum virtio_vsock_type { + VIRTIO_VSOCK_TYPE_STREAM = 1, + VIRTIO_VSOCK_TYPE_SEQPACKET = 2, +}; + +enum virtio_vsock_op { + VIRTIO_VSOCK_OP_INVALID = 0, + VIRTIO_VSOCK_OP_REQUEST = 1, + VIRTIO_VSOCK_OP_RESPONSE = 2, + VIRTIO_VSOCK_OP_RST = 3, + VIRTIO_VSOCK_OP_SHUTDOWN = 4, + VIRTIO_VSOCK_OP_RW = 5, + VIRTIO_VSOCK_OP_CREDIT_UPDATE = 6, + VIRTIO_VSOCK_OP_CREDIT_REQUEST = 7, +}; + +enum virtio_vsock_shutdown { + VIRTIO_VSOCK_SHUTDOWN_RCV = 1, + VIRTIO_VSOCK_SHUTDOWN_SEND = 2, +}; + +enum virtio_vsock_rw { + VIRTIO_VSOCK_SEQ_EOM = 1, + VIRTIO_VSOCK_SEQ_EOR = 2, +}; + +struct mmpin { + struct user_struct *user; + unsigned int num_pg; +}; + +struct ubuf_info_msgzc { + struct ubuf_info ubuf; + union { + struct { + long unsigned int desc; + void *ctx; + }; + struct { + u32 id; + u16 len; + u16 zerocopy: 1; + u32 bytelen; + }; + }; + struct mmpin mmp; +}; + +struct virtio_vsock_skb_cb { + bool reply; + bool tap_delivered; + u32 offset; +}; + +struct virtio_vsock_sock { + struct vsock_sock *vsk; + spinlock_t tx_lock; + spinlock_t rx_lock; + u32 tx_cnt; + u32 peer_fwd_cnt; + u32 peer_buf_alloc; + size_t bytes_unsent; + u32 fwd_cnt; + u32 last_fwd_cnt; + u32 rx_bytes; + u32 buf_alloc; + u32 buf_used; + struct sk_buff_head rx_queue; + u32 msg_count; +}; + +struct virtio_vsock_pkt_info { + u32 remote_cid; + u32 remote_port; + struct vsock_sock *vsk; + struct msghdr *msg; + u32 pkt_len; + u16 type; + u16 op; + u32 flags; + bool reply; +}; + +struct af_vsockmon_hdr { + __le64 src_cid; + __le64 dst_cid; + __le32 src_port; + __le32 dst_port; + __le16 op; + __le16 transport; + __le16 len; + __u8 reserved[2]; +}; + +enum af_vsockmon_op { + AF_VSOCK_OP_UNKNOWN = 0, + AF_VSOCK_OP_CONNECT = 1, + AF_VSOCK_OP_DISCONNECT = 2, + AF_VSOCK_OP_CONTROL = 3, + AF_VSOCK_OP_PAYLOAD = 4, +}; + +enum af_vsockmon_transport { + AF_VSOCK_TRANSPORT_UNKNOWN = 0, + AF_VSOCK_TRANSPORT_NO_INFO = 1, + AF_VSOCK_TRANSPORT_VIRTIO = 2, +}; + +struct trace_event_raw_virtio_transport_alloc_pkt { + struct trace_entry ent; + __u32 src_cid; + __u32 src_port; + __u32 dst_cid; + __u32 dst_port; + __u32 len; + __u16 type; + __u16 op; + __u32 flags; + bool zcopy; + char __data[0]; +}; + +struct trace_event_raw_virtio_transport_recv_pkt { + struct trace_entry ent; + __u32 src_cid; + __u32 src_port; + __u32 dst_cid; + __u32 dst_port; + __u32 len; + __u16 type; + __u16 op; + __u32 flags; + __u32 buf_alloc; + __u32 fwd_cnt; + char __data[0]; +}; + +struct trace_event_data_offsets_virtio_transport_alloc_pkt {}; + +struct trace_event_data_offsets_virtio_transport_recv_pkt {}; + +typedef void (*btf_trace_virtio_transport_alloc_pkt)(void *, __u32, __u32, __u32, __u32, __u32, __u16, __u16, __u32, bool); + +typedef void (*btf_trace_virtio_transport_recv_pkt)(void *, __u32, __u32, __u32, __u32, __u32, __u16, __u16, __u32, __u32, __u32); + +struct uf_node { + struct uf_node *parent; + unsigned int rank; +}; + +typedef __kernel_long_t __kernel_ptrdiff_t; + +typedef __kernel_ptrdiff_t ptrdiff_t; + +struct tm { + int tm_sec; + int tm_min; + int tm_hour; + int tm_mday; + int tm_mon; + long int tm_year; + int tm_wday; + int tm_yday; +}; + +struct clk { + struct clk_core *core; + struct device *dev; + const char *dev_id; + const char *con_id; + long unsigned int min_rate; + long unsigned int max_rate; + unsigned int exclusive_count; + struct hlist_node clks_node; +}; + +struct rtc_time { + int tm_sec; + int tm_min; + int tm_hour; + int tm_mday; + int tm_mon; + int tm_year; + int tm_wday; + int tm_yday; + int tm_isdst; +}; + +enum format_type { + FORMAT_TYPE_NONE = 0, + FORMAT_TYPE_WIDTH = 1, + FORMAT_TYPE_PRECISION = 2, + FORMAT_TYPE_CHAR = 3, + FORMAT_TYPE_STR = 4, + FORMAT_TYPE_PTR = 5, + FORMAT_TYPE_PERCENT_CHAR = 6, + FORMAT_TYPE_INVALID = 7, + FORMAT_TYPE_LONG_LONG = 8, + FORMAT_TYPE_ULONG = 9, + FORMAT_TYPE_LONG = 10, + FORMAT_TYPE_UBYTE = 11, + FORMAT_TYPE_BYTE = 12, + FORMAT_TYPE_USHORT = 13, + FORMAT_TYPE_SHORT = 14, + FORMAT_TYPE_UINT = 15, + FORMAT_TYPE_INT = 16, + FORMAT_TYPE_SIZE_T = 17, + FORMAT_TYPE_PTRDIFF = 18, +}; + +struct printf_spec { + unsigned int type: 8; + int field_width: 24; + unsigned int flags: 8; + unsigned int base: 8; + int precision: 16; +}; + +struct page_flags_fields { + int width; + int shift; + int mask; + const struct printf_spec *spec; + const char *name; +}; + +struct minix_super_block { + __u16 s_ninodes; + __u16 s_nzones; + __u16 s_imap_blocks; + __u16 s_zmap_blocks; + __u16 s_firstdatazone; + __u16 s_log_zone_size; + __u32 s_max_size; + __u16 s_magic; + __u16 s_state; + __u32 s_zones; +}; + +struct romfs_super_block { + __be32 word0; + __be32 word1; + __be32 size; + __be32 checksum; + char name[0]; +}; + +struct cramfs_inode { + __u32 mode: 16; + __u32 uid: 16; + __u32 size: 24; + __u32 gid: 8; + __u32 namelen: 6; + __u32 offset: 26; +}; + +struct cramfs_info { + __u32 crc; + __u32 edition; + __u32 blocks; + __u32 files; +}; + +struct cramfs_super { + __u32 magic; + __u32 size; + __u32 flags; + __u32 future; + __u8 signature[16]; + struct cramfs_info fsid; + __u8 name[16]; + struct cramfs_inode root; +}; + +struct squashfs_super_block { + __le32 s_magic; + __le32 inodes; + __le32 mkfs_time; + __le32 block_size; + __le32 fragments; + __le16 compression; + __le16 block_log; + __le16 flags; + __le16 no_ids; + __le16 s_major; + __le16 s_minor; + __le64 root_inode; + __le64 bytes_used; + __le64 id_table_start; + __le64 xattr_id_table_start; + __le64 inode_table_start; + __le64 directory_table_start; + __le64 fragment_table_start; + __le64 lookup_table_start; +}; + +struct return_address_data { + unsigned int level; + void *addr; +}; + +enum arm_smccc_conduit { + SMCCC_CONDUIT_NONE = 0, + SMCCC_CONDUIT_SMC = 1, + SMCCC_CONDUIT_HVC = 2, +}; + +enum aarch64_insn_register_type { + AARCH64_INSN_REGTYPE_RT = 0, + AARCH64_INSN_REGTYPE_RN = 1, + AARCH64_INSN_REGTYPE_RT2 = 2, + AARCH64_INSN_REGTYPE_RM = 3, + AARCH64_INSN_REGTYPE_RD = 4, + AARCH64_INSN_REGTYPE_RA = 5, + AARCH64_INSN_REGTYPE_RS = 6, +}; + +enum aarch64_insn_register { + AARCH64_INSN_REG_0 = 0, + AARCH64_INSN_REG_1 = 1, + AARCH64_INSN_REG_2 = 2, + AARCH64_INSN_REG_3 = 3, + AARCH64_INSN_REG_4 = 4, + AARCH64_INSN_REG_5 = 5, + AARCH64_INSN_REG_6 = 6, + AARCH64_INSN_REG_7 = 7, + AARCH64_INSN_REG_8 = 8, + AARCH64_INSN_REG_9 = 9, + AARCH64_INSN_REG_10 = 10, + AARCH64_INSN_REG_11 = 11, + AARCH64_INSN_REG_12 = 12, + AARCH64_INSN_REG_13 = 13, + AARCH64_INSN_REG_14 = 14, + AARCH64_INSN_REG_15 = 15, + AARCH64_INSN_REG_16 = 16, + AARCH64_INSN_REG_17 = 17, + AARCH64_INSN_REG_18 = 18, + AARCH64_INSN_REG_19 = 19, + AARCH64_INSN_REG_20 = 20, + AARCH64_INSN_REG_21 = 21, + AARCH64_INSN_REG_22 = 22, + AARCH64_INSN_REG_23 = 23, + AARCH64_INSN_REG_24 = 24, + AARCH64_INSN_REG_25 = 25, + AARCH64_INSN_REG_26 = 26, + AARCH64_INSN_REG_27 = 27, + AARCH64_INSN_REG_28 = 28, + AARCH64_INSN_REG_29 = 29, + AARCH64_INSN_REG_FP = 29, + AARCH64_INSN_REG_30 = 30, + AARCH64_INSN_REG_LR = 30, + AARCH64_INSN_REG_ZR = 31, + AARCH64_INSN_REG_SP = 31, +}; + +enum aarch64_insn_variant { + AARCH64_INSN_VARIANT_32BIT = 0, + AARCH64_INSN_VARIANT_64BIT = 1, +}; + +enum aarch64_insn_movewide_type { + AARCH64_INSN_MOVEWIDE_ZERO = 0, + AARCH64_INSN_MOVEWIDE_KEEP = 1, + AARCH64_INSN_MOVEWIDE_INVERSE = 2, +}; + +enum aarch64_insn_logic_type { + AARCH64_INSN_LOGIC_AND = 0, + AARCH64_INSN_LOGIC_BIC = 1, + AARCH64_INSN_LOGIC_ORR = 2, + AARCH64_INSN_LOGIC_ORN = 3, + AARCH64_INSN_LOGIC_EOR = 4, + AARCH64_INSN_LOGIC_EON = 5, + AARCH64_INSN_LOGIC_AND_SETFLAGS = 6, + AARCH64_INSN_LOGIC_BIC_SETFLAGS = 7, +}; + +struct midr_range { + u32 model; + u32 rv_min; + u32 rv_max; +}; + +struct arm64_midr_revidr { + u32 midr_rv; + u32 revidr_mask; +}; + +struct arm64_cpu_capabilities { + const char *desc; + u16 capability; + u16 type; + bool (*matches)(const struct arm64_cpu_capabilities *, int); + void (*cpu_enable)(const struct arm64_cpu_capabilities *); + union { + struct { + struct midr_range midr_range; + const struct arm64_midr_revidr * const fixed_revs; + }; + const struct midr_range *midr_range_list; + struct { + u32 sys_reg; + u8 field_pos; + u8 field_width; + u8 min_field_value; + u8 max_field_value; + u8 hwcap_type; + bool sign; + long unsigned int hwcap; + }; + }; + const struct arm64_cpu_capabilities *match_list; + const struct cpumask *cpus; +}; + +enum mitigation_state { + SPECTRE_UNAFFECTED = 0, + SPECTRE_MITIGATED = 1, + SPECTRE_VULNERABLE = 2, +}; + +enum arm64_hyp_spectre_vector { + HYP_VECTOR_DIRECT = 0, + HYP_VECTOR_SPECTRE_DIRECT = 1, + HYP_VECTOR_INDIRECT = 2, + HYP_VECTOR_SPECTRE_INDIRECT = 3, +}; + +typedef void (*bp_hardening_cb_t)(void); + +struct bp_hardening_data { + enum arm64_hyp_spectre_vector slot; + bp_hardening_cb_t fn; +}; + +enum fixed_addresses { + FIX_HOLE = 0, + FIX_FDT_END = 1, + FIX_FDT = 514, + FIX_EARLYCON_MEM_BASE = 515, + FIX_TEXT_POKE0 = 516, + FIX_ENTRY_TRAMP_TEXT4 = 517, + FIX_ENTRY_TRAMP_TEXT3 = 518, + FIX_ENTRY_TRAMP_TEXT2 = 519, + FIX_ENTRY_TRAMP_TEXT1 = 520, + __end_of_permanent_fixed_addresses = 521, + FIX_BTMAP_END = 521, + FIX_BTMAP_BEGIN = 968, + FIX_PTE = 969, + FIX_PMD = 970, + FIX_PUD = 971, + FIX_P4D = 972, + FIX_PGD = 973, + __end_of_fixed_addresses = 974, +}; + +enum arm64_bp_harden_el1_vectors { + EL1_VECTOR_BHB_LOOP = 0, + EL1_VECTOR_BHB_FW = 1, + EL1_VECTOR_BHB_CLEAR_INSN = 2, + EL1_VECTOR_KPTI = 3, +}; + +enum spectre_v4_policy { + SPECTRE_V4_POLICY_MITIGATION_DYNAMIC = 0, + SPECTRE_V4_POLICY_MITIGATION_ENABLED = 1, + SPECTRE_V4_POLICY_MITIGATION_DISABLED = 2, +}; + +struct spectre_v4_param { + const char *str; + enum spectre_v4_policy policy; +}; + +enum bhb_mitigation_bits { + BHB_LOOP = 0, + BHB_FW = 1, + BHB_HW = 2, + BHB_INSN = 3, +}; + +struct arm_cpuidle_irq_context {}; + +struct mpidr_hash { + u64 mask; + u32 shift_aff[4]; + u32 bits; +}; + +struct cpu_suspend_ctx { + u64 ctx_regs[13]; + u64 sp; +}; + +struct sleep_stack_data { + struct cpu_suspend_ctx system_regs; + long unsigned int callee_saved_regs[12]; +}; + +struct arm64_mem_crypt_ops { + int (*encrypt)(long unsigned int, int); + int (*decrypt)(long unsigned int, int); +}; + +typedef u64 p4dval_t; + +enum memblock_flags { + MEMBLOCK_NONE = 0, + MEMBLOCK_HOTPLUG = 1, + MEMBLOCK_MIRROR = 2, + MEMBLOCK_NOMAP = 4, + MEMBLOCK_DRIVER_MANAGED = 8, + MEMBLOCK_RSRV_NOINIT = 16, +}; + +struct memblock_region { + phys_addr_t base; + phys_addr_t size; + enum memblock_flags flags; +}; + +struct memblock_type { + long unsigned int cnt; + long unsigned int max; + phys_addr_t total_size; + struct memblock_region *regions; + char *name; +}; + +struct memblock { + bool bottom_up; + phys_addr_t current_limit; + struct memblock_type memory; + struct memblock_type reserved; +}; + +struct vm_struct { + struct vm_struct *next; + void *addr; + long unsigned int size; + long unsigned int flags; + struct page **pages; + unsigned int page_order; + unsigned int nr_pages; + phys_addr_t phys_addr; + const void *caller; + long unsigned int requested_size; +}; + +typedef void ttbr_replace_func(phys_addr_t); + +enum chacha_constants { + CHACHA_CONSTANT_EXPA = 1634760805, + CHACHA_CONSTANT_ND_3 = 857760878, + CHACHA_CONSTANT_2_BY = 2036477234, + CHACHA_CONSTANT_TE_K = 1797285236, +}; + +struct chacha_ctx { + u32 key[8]; + int nrounds; +}; + +struct atomic_notifier_head { + spinlock_t lock; + struct notifier_block *head; +}; + +enum umh_disable_depth { + UMH_ENABLED = 0, + UMH_FREEZING = 1, + UMH_DISABLED = 2, +}; + +enum reboot_mode { + REBOOT_UNDEFINED = -1, + REBOOT_COLD = 0, + REBOOT_WARM = 1, + REBOOT_HARD = 2, + REBOOT_SOFT = 3, + REBOOT_GPIO = 4, +}; + +enum reboot_type { + BOOT_TRIPLE = 116, + BOOT_KBD = 107, + BOOT_BIOS = 98, + BOOT_ACPI = 97, + BOOT_EFI = 101, + BOOT_CF9_FORCE = 112, + BOOT_CF9_SAFE = 113, +}; + +enum sys_off_mode { + SYS_OFF_MODE_POWER_OFF_PREPARE = 0, + SYS_OFF_MODE_POWER_OFF = 1, + SYS_OFF_MODE_RESTART_PREPARE = 2, + SYS_OFF_MODE_RESTART = 3, +}; + +struct sys_off_data { + int mode; + void *cb_data; + const char *cmd; + struct device *dev; +}; + +struct sys_off_handler { + struct notifier_block nb; + int (*sys_off_cb)(struct sys_off_data *); + void *cb_data; + enum sys_off_mode mode; + bool blocking; + void *list; + struct device *dev; +}; + +enum { + IRQTF_RUNTHREAD = 0, + IRQTF_WARNED = 1, + IRQTF_AFFINITY = 2, + IRQTF_FORCED_THREAD = 3, + IRQTF_READY = 4, +}; + +enum { + IRQS_AUTODETECT = 1, + IRQS_SPURIOUS_DISABLED = 2, + IRQS_POLL_INPROGRESS = 8, + IRQS_ONESHOT = 32, + IRQS_REPLAY = 64, + IRQS_WAITING = 128, + IRQS_PENDING = 512, + IRQS_SUSPENDED = 2048, + IRQS_TIMINGS = 4096, + IRQS_NMI = 8192, + IRQS_SYSFS = 16384, +}; + +enum { + _IRQ_DEFAULT_INIT_FLAGS = 0, + _IRQ_PER_CPU = 512, + _IRQ_LEVEL = 256, + _IRQ_NOPROBE = 1024, + _IRQ_NOREQUEST = 2048, + _IRQ_NOTHREAD = 65536, + _IRQ_NOAUTOEN = 4096, + _IRQ_MOVE_PCNTXT = 16384, + _IRQ_NO_BALANCING = 8192, + _IRQ_NESTED_THREAD = 32768, + _IRQ_PER_CPU_DEVID = 131072, + _IRQ_IS_POLLED = 262144, + _IRQ_DISABLE_UNLAZY = 524288, + _IRQ_HIDDEN = 1048576, + _IRQ_NO_DEBUG = 2097152, + _IRQF_MODIFY_MASK = 2096911, +}; + +enum { + IRQ_DOMAIN_FLAG_HIERARCHY = 1, + IRQ_DOMAIN_NAME_ALLOCATED = 2, + IRQ_DOMAIN_FLAG_IPI_PER_CPU = 4, + IRQ_DOMAIN_FLAG_IPI_SINGLE = 8, + IRQ_DOMAIN_FLAG_MSI = 16, + IRQ_DOMAIN_FLAG_ISOLATED_MSI = 32, + IRQ_DOMAIN_FLAG_NO_MAP = 64, + IRQ_DOMAIN_FLAG_MSI_PARENT = 256, + IRQ_DOMAIN_FLAG_MSI_DEVICE = 512, + IRQ_DOMAIN_FLAG_DESTROY_GC = 1024, + IRQ_DOMAIN_FLAG_NONCORE = 65536, +}; + +struct dma_map_ops { + void * (*alloc)(struct device *, size_t, dma_addr_t *, gfp_t, long unsigned int); + void (*free)(struct device *, size_t, void *, dma_addr_t, long unsigned int); + struct page * (*alloc_pages_op)(struct device *, size_t, dma_addr_t *, enum dma_data_direction, gfp_t); + void (*free_pages)(struct device *, size_t, struct page *, dma_addr_t, enum dma_data_direction); + int (*mmap)(struct device *, struct vm_area_struct *, void *, dma_addr_t, size_t, long unsigned int); + int (*get_sgtable)(struct device *, struct sg_table *, void *, dma_addr_t, size_t, long unsigned int); + dma_addr_t (*map_page)(struct device *, struct page *, long unsigned int, size_t, enum dma_data_direction, long unsigned int); + void (*unmap_page)(struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); + int (*map_sg)(struct device *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); + void (*unmap_sg)(struct device *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); + dma_addr_t (*map_resource)(struct device *, phys_addr_t, size_t, enum dma_data_direction, long unsigned int); + void (*unmap_resource)(struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); + void (*sync_single_for_cpu)(struct device *, dma_addr_t, size_t, enum dma_data_direction); + void (*sync_single_for_device)(struct device *, dma_addr_t, size_t, enum dma_data_direction); + void (*sync_sg_for_cpu)(struct device *, struct scatterlist *, int, enum dma_data_direction); + void (*sync_sg_for_device)(struct device *, struct scatterlist *, int, enum dma_data_direction); + void (*cache_sync)(struct device *, void *, size_t, enum dma_data_direction); + int (*dma_supported)(struct device *, u64); + u64 (*get_required_mask)(struct device *); + size_t (*max_mapping_size)(struct device *); + size_t (*opt_mapping_size)(void); + long unsigned int (*get_merge_boundary)(struct device *); +}; + +struct trace_event_raw_dma_map { + struct trace_entry ent; + u32 __data_loc_device; + u64 phys_addr; + u64 dma_addr; + size_t size; + enum dma_data_direction dir; + long unsigned int attrs; + char __data[0]; +}; + +struct trace_event_raw_dma_unmap { + struct trace_entry ent; + u32 __data_loc_device; + u64 addr; + size_t size; + enum dma_data_direction dir; + long unsigned int attrs; + char __data[0]; +}; + +struct trace_event_raw_dma_alloc_class { + struct trace_entry ent; + u32 __data_loc_device; + void *virt_addr; + u64 dma_addr; + size_t size; + gfp_t flags; + enum dma_data_direction dir; + long unsigned int attrs; + char __data[0]; +}; + +struct trace_event_raw_dma_alloc_sgt { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_phys_addrs; + u64 dma_addr; + size_t size; + enum dma_data_direction dir; + gfp_t flags; + long unsigned int attrs; + char __data[0]; +}; + +struct trace_event_raw_dma_free_class { + struct trace_entry ent; + u32 __data_loc_device; + void *virt_addr; + u64 dma_addr; + size_t size; + enum dma_data_direction dir; + long unsigned int attrs; + char __data[0]; +}; + +struct trace_event_raw_dma_free_sgt { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_phys_addrs; + u64 dma_addr; + size_t size; + enum dma_data_direction dir; + char __data[0]; +}; + +struct trace_event_raw_dma_map_sg { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_phys_addrs; + u32 __data_loc_dma_addrs; + u32 __data_loc_lengths; + enum dma_data_direction dir; + long unsigned int attrs; + char __data[0]; +}; + +struct trace_event_raw_dma_map_sg_err { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_phys_addrs; + int err; + enum dma_data_direction dir; + long unsigned int attrs; + char __data[0]; +}; + +struct trace_event_raw_dma_unmap_sg { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_addrs; + enum dma_data_direction dir; + long unsigned int attrs; + char __data[0]; +}; + +struct trace_event_raw_dma_sync_single { + struct trace_entry ent; + u32 __data_loc_device; + u64 dma_addr; + size_t size; + enum dma_data_direction dir; + char __data[0]; +}; + +struct trace_event_raw_dma_sync_sg { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_dma_addrs; + u32 __data_loc_lengths; + enum dma_data_direction dir; + char __data[0]; +}; + +struct trace_event_data_offsets_dma_map { + u32 device; + const void *device_ptr_; +}; + +struct trace_event_data_offsets_dma_unmap { + u32 device; + const void *device_ptr_; +}; + +struct trace_event_data_offsets_dma_alloc_class { + u32 device; + const void *device_ptr_; +}; + +struct trace_event_data_offsets_dma_alloc_sgt { + u32 device; + const void *device_ptr_; + u32 phys_addrs; + const void *phys_addrs_ptr_; +}; + +struct trace_event_data_offsets_dma_free_class { + u32 device; + const void *device_ptr_; +}; + +struct trace_event_data_offsets_dma_free_sgt { + u32 device; + const void *device_ptr_; + u32 phys_addrs; + const void *phys_addrs_ptr_; +}; + +struct trace_event_data_offsets_dma_map_sg { + u32 device; + const void *device_ptr_; + u32 phys_addrs; + const void *phys_addrs_ptr_; + u32 dma_addrs; + const void *dma_addrs_ptr_; + u32 lengths; + const void *lengths_ptr_; +}; + +struct trace_event_data_offsets_dma_map_sg_err { + u32 device; + const void *device_ptr_; + u32 phys_addrs; + const void *phys_addrs_ptr_; +}; + +struct trace_event_data_offsets_dma_unmap_sg { + u32 device; + const void *device_ptr_; + u32 addrs; + const void *addrs_ptr_; +}; + +struct trace_event_data_offsets_dma_sync_single { + u32 device; + const void *device_ptr_; +}; + +struct trace_event_data_offsets_dma_sync_sg { + u32 device; + const void *device_ptr_; + u32 dma_addrs; + const void *dma_addrs_ptr_; + u32 lengths; + const void *lengths_ptr_; +}; + +typedef void (*btf_trace_dma_map_page)(void *, struct device *, phys_addr_t, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_map_resource)(void *, struct device *, phys_addr_t, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_unmap_page)(void *, struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_unmap_resource)(void *, struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_alloc)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, gfp_t, long unsigned int); + +typedef void (*btf_trace_dma_alloc_pages)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, gfp_t, long unsigned int); + +typedef void (*btf_trace_dma_alloc_sgt_err)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, gfp_t, long unsigned int); + +typedef void (*btf_trace_dma_alloc_sgt)(void *, struct device *, struct sg_table *, size_t, enum dma_data_direction, gfp_t, long unsigned int); + +typedef void (*btf_trace_dma_free)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_free_pages)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_free_sgt)(void *, struct device *, struct sg_table *, size_t, enum dma_data_direction); + +typedef void (*btf_trace_dma_map_sg)(void *, struct device *, struct scatterlist *, int, int, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_map_sg_err)(void *, struct device *, struct scatterlist *, int, int, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_unmap_sg)(void *, struct device *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_sync_single_for_cpu)(void *, struct device *, dma_addr_t, size_t, enum dma_data_direction); + +typedef void (*btf_trace_dma_sync_single_for_device)(void *, struct device *, dma_addr_t, size_t, enum dma_data_direction); + +typedef void (*btf_trace_dma_sync_sg_for_cpu)(void *, struct device *, struct scatterlist *, int, enum dma_data_direction); + +typedef void (*btf_trace_dma_sync_sg_for_device)(void *, struct device *, struct scatterlist *, int, enum dma_data_direction); + +struct dma_devres { + size_t size; + void *vaddr; + dma_addr_t dma_handle; + long unsigned int attrs; +}; + +struct tick_sched { + long unsigned int flags; + unsigned int stalled_jiffies; + long unsigned int last_tick_jiffies; + struct hrtimer sched_timer; + ktime_t last_tick; + ktime_t next_tick; + long unsigned int idle_jiffies; + ktime_t idle_waketime; + unsigned int got_idle_tick; + seqcount_t idle_sleeptime_seq; + ktime_t idle_entrytime; + long unsigned int last_jiffies; + u64 timer_expires_base; + u64 timer_expires; + u64 next_timer; + ktime_t idle_expires; + long unsigned int idle_calls; + long unsigned int idle_sleeps; + ktime_t idle_exittime; + ktime_t idle_sleeptime; + ktime_t iowait_sleeptime; + atomic_t tick_dep_mask; + long unsigned int check_clocks; +}; + +struct timer_list_iter { + int cpu; + bool second_pass; + u64 now; +}; + +enum tick_broadcast_state { + TICK_BROADCAST_EXIT = 0, + TICK_BROADCAST_ENTER = 1, +}; + +typedef __u16 comp_t; + +struct acct_v3 { + char ac_flag; + char ac_version; + __u16 ac_tty; + __u32 ac_exitcode; + __u32 ac_uid; + __u32 ac_gid; + __u32 ac_pid; + __u32 ac_ppid; + __u32 ac_btime; + __u32 ac_etime; + comp_t ac_utime; + comp_t ac_stime; + comp_t ac_mem; + comp_t ac_io; + comp_t ac_rw; + comp_t ac_minflt; + comp_t ac_majflt; + comp_t ac_swaps; + char ac_comm[16]; +}; + +typedef struct acct_v3 acct_t; + +struct bsd_acct_struct { + struct fs_pin pin; + atomic_long_t count; + struct callback_head rcu; + struct mutex lock; + bool active; + bool check_space; + long unsigned int needcheck; + struct file *file; + struct pid_namespace *ns; + struct work_struct work; + struct completion done; + acct_t ac; +}; + +struct rchan; + +struct rchan_buf { + void *start; + void *data; + size_t offset; + size_t subbufs_produced; + size_t subbufs_consumed; + struct rchan *chan; + wait_queue_head_t read_wait; + struct irq_work wakeup_work; + struct dentry *dentry; + struct kref kref; + struct page **page_array; + unsigned int page_count; + unsigned int finalized; + size_t *padding; + size_t prev_padding; + size_t bytes_consumed; + size_t early_bytes; + unsigned int cpu; + long: 64; + long: 64; +}; + +struct rchan_callbacks; + +struct rchan { + u32 version; + size_t subbuf_size; + size_t n_subbufs; + size_t alloc_size; + const struct rchan_callbacks *cb; + struct kref kref; + void *private_data; + size_t last_toobig; + struct rchan_buf **buf; + int is_global; + struct list_head list; + struct dentry *parent; + int has_base_filename; + char base_filename[255]; +}; + +struct rchan_callbacks { + int (*subbuf_start)(struct rchan_buf *, void *, void *, size_t); + struct dentry * (*create_buf_file)(const char *, struct dentry *, umode_t, struct rchan_buf *, int *); + int (*remove_buf_file)(struct dentry *); +}; + +struct rchan_percpu_buf_dispatcher { + struct rchan_buf *buf; + struct dentry *dentry; +}; + +struct tp_module { + struct list_head list; + struct module *mod; +}; + +enum tp_func_state { + TP_FUNC_0 = 0, + TP_FUNC_1 = 1, + TP_FUNC_2 = 2, + TP_FUNC_N = 3, +}; + +enum tp_transition_sync { + TP_TRANSITION_SYNC_1_0_1 = 0, + TP_TRANSITION_SYNC_N_2_1 = 1, + _NR_TP_TRANSITION_SYNC = 2, +}; + +struct tp_transition_snapshot { + long unsigned int rcu; + long unsigned int srcu; + bool ongoing; +}; + +struct tp_probes { + struct callback_head rcu; + struct tracepoint_func probes[0]; +}; + +enum ftrace_dump_mode { + DUMP_NONE = 0, + DUMP_ALL = 1, + DUMP_ORIG = 2, + DUMP_PARAM = 3, +}; + +enum { + TRACE_FTRACE_BIT = 0, + TRACE_FTRACE_NMI_BIT = 1, + TRACE_FTRACE_IRQ_BIT = 2, + TRACE_FTRACE_SIRQ_BIT = 3, + TRACE_FTRACE_TRANSITION_BIT = 4, + TRACE_INTERNAL_BIT = 5, + TRACE_INTERNAL_NMI_BIT = 6, + TRACE_INTERNAL_IRQ_BIT = 7, + TRACE_INTERNAL_SIRQ_BIT = 8, + TRACE_INTERNAL_TRANSITION_BIT = 9, + TRACE_BRANCH_BIT = 10, + TRACE_IRQ_BIT = 11, + TRACE_RECORD_RECURSION_BIT = 12, +}; + +enum { + TRACE_CTX_NMI = 0, + TRACE_CTX_IRQ = 1, + TRACE_CTX_SOFTIRQ = 2, + TRACE_CTX_NORMAL = 3, + TRACE_CTX_TRANSITION = 4, +}; + +enum { + FTRACE_OPS_FL_ENABLED = 1, + FTRACE_OPS_FL_DYNAMIC = 2, + FTRACE_OPS_FL_SAVE_REGS = 4, + FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED = 8, + FTRACE_OPS_FL_RECURSION = 16, + FTRACE_OPS_FL_STUB = 32, + FTRACE_OPS_FL_INITIALIZED = 64, + FTRACE_OPS_FL_DELETED = 128, + FTRACE_OPS_FL_ADDING = 256, + FTRACE_OPS_FL_REMOVING = 512, + FTRACE_OPS_FL_MODIFYING = 1024, + FTRACE_OPS_FL_ALLOC_TRAMP = 2048, + FTRACE_OPS_FL_IPMODIFY = 4096, + FTRACE_OPS_FL_PID = 8192, + FTRACE_OPS_FL_RCU = 16384, + FTRACE_OPS_FL_TRACE_ARRAY = 32768, + FTRACE_OPS_FL_PERMANENT = 65536, + FTRACE_OPS_FL_DIRECT = 131072, + FTRACE_OPS_FL_SUBOP = 262144, +}; + +enum { + TRACE_ARRAY_FL_GLOBAL = 1, + TRACE_ARRAY_FL_BOOT = 2, +}; + +struct ftrace_func_command { + struct list_head list; + char *name; + int (*func)(struct trace_array *, struct ftrace_hash *, char *, char *, char *, int); +}; + +struct ftrace_probe_ops { + void (*func)(long unsigned int, long unsigned int, struct trace_array *, struct ftrace_probe_ops *, void *); + int (*init)(struct ftrace_probe_ops *, struct trace_array *, long unsigned int, void *, void **); + void (*free)(struct ftrace_probe_ops *, struct trace_array *, long unsigned int, void *); + int (*print)(struct seq_file *, long unsigned int, struct ftrace_probe_ops *, void *); +}; + +typedef int (*ftrace_mapper_func)(void *); + +enum { + TRACE_FUNC_NO_OPTS = 0, + TRACE_FUNC_OPT_STACK = 1, + TRACE_FUNC_OPT_NO_REPEATS = 2, + TRACE_FUNC_OPT_HIGHEST_BIT = 4, +}; + +enum bpf_task_fd_type { + BPF_FD_TYPE_RAW_TRACEPOINT = 0, + BPF_FD_TYPE_TRACEPOINT = 1, + BPF_FD_TYPE_KPROBE = 2, + BPF_FD_TYPE_KRETPROBE = 3, + BPF_FD_TYPE_UPROBE = 4, + BPF_FD_TYPE_URETPROBE = 5, +}; + +struct btf_param { + __u32 name_off; + __u32 type; +}; + +struct objpool_slot { + uint32_t head; + uint32_t tail; + uint32_t last; + uint32_t mask; + void *entries[0]; +}; + +struct objpool_head; + +typedef int (*objpool_fini_cb)(struct objpool_head *, void *); + +struct objpool_head { + int obj_size; + int nr_objs; + int nr_possible_cpus; + int capacity; + gfp_t gfp; + refcount_t ref; + long unsigned int flags; + struct objpool_slot **cpu_slots; + objpool_fini_cb release; + void *context; +}; + +struct kprobe; + +typedef int (*kprobe_pre_handler_t)(struct kprobe *, struct pt_regs *); + +typedef void (*kprobe_post_handler_t)(struct kprobe *, struct pt_regs *, long unsigned int); + +struct kprobe { + struct hlist_node hlist; + struct list_head list; + long unsigned int nmissed; + kprobe_opcode_t *addr; + const char *symbol_name; + unsigned int offset; + kprobe_pre_handler_t pre_handler; + kprobe_post_handler_t post_handler; + kprobe_opcode_t opcode; + struct arch_specific_insn ainsn; + u32 flags; +}; + +struct kretprobe_instance; + +typedef int (*kretprobe_handler_t)(struct kretprobe_instance *, struct pt_regs *); + +struct kretprobe_holder; + +struct kretprobe_instance { + struct callback_head rcu; + struct llist_node llist; + struct kretprobe_holder *rph; + kprobe_opcode_t *ret_addr; + void *fp; + char data[0]; +}; + +struct kretprobe; + +struct kretprobe_holder { + struct kretprobe *rp; + struct objpool_head pool; +}; + +struct kretprobe { + struct kprobe kp; + kretprobe_handler_t handler; + kretprobe_handler_t entry_handler; + int maxactive; + int nmissed; + size_t data_size; + struct kretprobe_holder *rph; +}; + +struct kprobe_trace_entry_head { + struct trace_entry ent; + long unsigned int ip; +}; + +struct kretprobe_trace_entry_head { + struct trace_entry ent; + long unsigned int func; + long unsigned int ret_ip; +}; + +typedef int (*print_type_func_t)(struct trace_seq *, void *, void *); + +enum fetch_op { + FETCH_OP_NOP = 0, + FETCH_OP_REG = 1, + FETCH_OP_STACK = 2, + FETCH_OP_STACKP = 3, + FETCH_OP_RETVAL = 4, + FETCH_OP_IMM = 5, + FETCH_OP_COMM = 6, + FETCH_OP_ARG = 7, + FETCH_OP_FOFFS = 8, + FETCH_OP_DATA = 9, + FETCH_OP_EDATA = 10, + FETCH_OP_DEREF = 11, + FETCH_OP_UDEREF = 12, + FETCH_OP_ST_RAW = 13, + FETCH_OP_ST_MEM = 14, + FETCH_OP_ST_UMEM = 15, + FETCH_OP_ST_STRING = 16, + FETCH_OP_ST_USTRING = 17, + FETCH_OP_ST_SYMSTR = 18, + FETCH_OP_ST_EDATA = 19, + FETCH_OP_MOD_BF = 20, + FETCH_OP_LP_ARRAY = 21, + FETCH_OP_TP_ARG = 22, + FETCH_OP_END = 23, + FETCH_NOP_SYMBOL = 24, +}; + +struct fetch_insn { + enum fetch_op op; + union { + unsigned int param; + struct { + unsigned int size; + int offset; + }; + struct { + unsigned char basesize; + unsigned char lshift; + unsigned char rshift; + }; + long unsigned int immediate; + void *data; + }; +}; + +struct fetch_type { + const char *name; + size_t size; + bool is_signed; + bool is_string; + print_type_func_t print; + const char *fmt; + const char *fmttype; +}; + +struct probe_arg { + struct fetch_insn *code; + bool dynamic; + unsigned int offset; + unsigned int count; + const char *name; + const char *comm; + char *fmt; + const struct fetch_type *type; +}; + +struct probe_entry_arg { + struct fetch_insn *code; + unsigned int size; +}; + +struct trace_uprobe_filter { + rwlock_t rwlock; + int nr_systemwide; + struct list_head perf_events; +}; + +struct trace_probe_event { + unsigned int flags; + struct trace_event_class class; + struct trace_event_call call; + struct list_head files; + struct list_head probes; + struct trace_uprobe_filter filter[0]; +}; + +struct trace_probe { + struct list_head list; + struct trace_probe_event *event; + ssize_t size; + unsigned int nr_args; + struct probe_entry_arg *entry_arg; + struct probe_arg args[0]; +}; + +struct event_file_link { + struct trace_event_file *file; + struct list_head list; +}; + +struct traceprobe_parse_context { + struct trace_event_call *event; + const char *funcname; + const struct btf_type *proto; + const struct btf_param *params; + s32 nr_params; + struct btf *btf; + const struct btf_type *last_type; + u32 last_bitoffs; + u32 last_bitsize; + struct trace_probe *tp; + unsigned int flags; + int offset; +}; + +enum probe_print_type { + PROBE_PRINT_NORMAL = 0, + PROBE_PRINT_RETURN = 1, + PROBE_PRINT_EVENT = 2, +}; + +enum { + TP_ERR_FILE_NOT_FOUND = 0, + TP_ERR_NO_REGULAR_FILE = 1, + TP_ERR_BAD_REFCNT = 2, + TP_ERR_REFCNT_OPEN_BRACE = 3, + TP_ERR_BAD_REFCNT_SUFFIX = 4, + TP_ERR_BAD_UPROBE_OFFS = 5, + TP_ERR_BAD_MAXACT_TYPE = 6, + TP_ERR_BAD_MAXACT = 7, + TP_ERR_MAXACT_TOO_BIG = 8, + TP_ERR_BAD_PROBE_ADDR = 9, + TP_ERR_NON_UNIQ_SYMBOL = 10, + TP_ERR_BAD_RETPROBE = 11, + TP_ERR_NO_TRACEPOINT = 12, + TP_ERR_BAD_TP_NAME = 13, + TP_ERR_BAD_ADDR_SUFFIX = 14, + TP_ERR_NO_GROUP_NAME = 15, + TP_ERR_GROUP_TOO_LONG = 16, + TP_ERR_BAD_GROUP_NAME = 17, + TP_ERR_NO_EVENT_NAME = 18, + TP_ERR_EVENT_TOO_LONG = 19, + TP_ERR_BAD_EVENT_NAME = 20, + TP_ERR_EVENT_EXIST = 21, + TP_ERR_RETVAL_ON_PROBE = 22, + TP_ERR_NO_RETVAL = 23, + TP_ERR_BAD_STACK_NUM = 24, + TP_ERR_BAD_ARG_NUM = 25, + TP_ERR_BAD_VAR = 26, + TP_ERR_BAD_REG_NAME = 27, + TP_ERR_BAD_MEM_ADDR = 28, + TP_ERR_BAD_IMM = 29, + TP_ERR_IMMSTR_NO_CLOSE = 30, + TP_ERR_FILE_ON_KPROBE = 31, + TP_ERR_BAD_FILE_OFFS = 32, + TP_ERR_SYM_ON_UPROBE = 33, + TP_ERR_TOO_MANY_OPS = 34, + TP_ERR_DEREF_NEED_BRACE = 35, + TP_ERR_BAD_DEREF_OFFS = 36, + TP_ERR_DEREF_OPEN_BRACE = 37, + TP_ERR_COMM_CANT_DEREF = 38, + TP_ERR_BAD_FETCH_ARG = 39, + TP_ERR_ARRAY_NO_CLOSE = 40, + TP_ERR_BAD_ARRAY_SUFFIX = 41, + TP_ERR_BAD_ARRAY_NUM = 42, + TP_ERR_ARRAY_TOO_BIG = 43, + TP_ERR_BAD_TYPE = 44, + TP_ERR_BAD_STRING = 45, + TP_ERR_BAD_SYMSTRING = 46, + TP_ERR_BAD_BITFIELD = 47, + TP_ERR_ARG_NAME_TOO_LONG = 48, + TP_ERR_NO_ARG_NAME = 49, + TP_ERR_BAD_ARG_NAME = 50, + TP_ERR_USED_ARG_NAME = 51, + TP_ERR_ARG_TOO_LONG = 52, + TP_ERR_NO_ARG_BODY = 53, + TP_ERR_BAD_INSN_BNDRY = 54, + TP_ERR_FAIL_REG_PROBE = 55, + TP_ERR_DIFF_PROBE_TYPE = 56, + TP_ERR_DIFF_ARG_TYPE = 57, + TP_ERR_SAME_PROBE = 58, + TP_ERR_NO_EVENT_INFO = 59, + TP_ERR_BAD_ATTACH_EVENT = 60, + TP_ERR_BAD_ATTACH_ARG = 61, + TP_ERR_NO_EP_FILTER = 62, + TP_ERR_NOSUP_BTFARG = 63, + TP_ERR_NO_BTFARG = 64, + TP_ERR_NO_BTF_ENTRY = 65, + TP_ERR_BAD_VAR_ARGS = 66, + TP_ERR_NOFENTRY_ARGS = 67, + TP_ERR_DOUBLE_ARGS = 68, + TP_ERR_ARGS_2LONG = 69, + TP_ERR_ARGIDX_2BIG = 70, + TP_ERR_NO_PTR_STRCT = 71, + TP_ERR_NOSUP_DAT_ARG = 72, + TP_ERR_BAD_HYPHEN = 73, + TP_ERR_NO_BTF_FIELD = 74, + TP_ERR_BAD_BTF_TID = 75, + TP_ERR_BAD_TYPE4STR = 76, + TP_ERR_NEED_STRING_TYPE = 77, +}; + +struct trace_kprobe { + struct dyn_event devent; + struct kretprobe rp; + long unsigned int *nhit; + const char *symbol; + struct trace_probe tp; +}; + +struct sym_count_ctx { + unsigned int count; + const char *name; +}; + +struct bpf_lpm_trie_key_hdr { + __u32 prefixlen; +}; + +struct bpf_lpm_trie_key_u8 { + union { + struct bpf_lpm_trie_key_hdr hdr; + __u32 prefixlen; + }; + __u8 data[0]; +}; + +struct lpm_trie_node { + struct callback_head rcu; + struct lpm_trie_node *child[2]; + u32 prefixlen; + u32 flags; + u8 data[0]; +}; + +struct lpm_trie { + struct bpf_map map; + struct lpm_trie_node *root; + size_t n_entries; + size_t max_prefixlen; + size_t data_size; + spinlock_t lock; +}; + +struct bpf_dynptr { + __u64 __opaque[2]; +}; + +struct bpf_crypto_type { + void * (*alloc_tfm)(const char *); + void (*free_tfm)(void *); + int (*has_algo)(const char *); + int (*setkey)(void *, const u8 *, unsigned int); + int (*setauthsize)(void *, unsigned int); + int (*encrypt)(void *, const u8 *, u8 *, unsigned int, u8 *); + int (*decrypt)(void *, const u8 *, u8 *, unsigned int, u8 *); + unsigned int (*ivsize)(void *); + unsigned int (*statesize)(void *); + u32 (*get_flags)(void *); + struct module *owner; + char name[14]; +}; + +struct bpf_crypto_type_list { + const struct bpf_crypto_type *type; + struct list_head list; +}; + +struct bpf_crypto_params { + char type[14]; + u8 reserved[2]; + char algo[128]; + u8 key[256]; + u32 key_len; + u32 authsize; +}; + +struct bpf_crypto_ctx { + const struct bpf_crypto_type *type; + void *tfm; + u32 siv_len; + struct callback_head rcu; + refcount_t usage; +}; + +typedef __int128 unsigned __u128; + +typedef __u128 u128; + +typedef struct kmem_cache *kmem_buckets[14]; + +struct kmem_cache_order_objects { + unsigned int x; +}; + +struct kmem_cache_cpu; + +struct kmem_cache_node; + +struct kmem_cache { + struct kmem_cache_cpu *cpu_slab; + slab_flags_t flags; + long unsigned int min_partial; + unsigned int size; + unsigned int object_size; + struct reciprocal_value reciprocal_size; + unsigned int offset; + unsigned int cpu_partial; + unsigned int cpu_partial_slabs; + struct kmem_cache_order_objects oo; + struct kmem_cache_order_objects min; + gfp_t allocflags; + int refcount; + void (*ctor)(void *); + unsigned int inuse; + unsigned int align; + unsigned int red_left_pad; + const char *name; + struct list_head list; + struct kobject kobj; + struct kmem_cache_node *node[1]; +}; + +typedef u128 freelist_full_t; + +typedef union { + struct { + void *freelist; + long unsigned int counter; + }; + freelist_full_t full; +} freelist_aba_t; + +struct slab { + long unsigned int __page_flags; + struct kmem_cache *slab_cache; + union { + struct { + union { + struct list_head slab_list; + struct { + struct slab *next; + int slabs; + }; + }; + union { + struct { + void *freelist; + union { + long unsigned int counters; + struct { + unsigned int inuse: 16; + unsigned int objects: 15; + unsigned int frozen: 1; + }; + }; + }; + freelist_aba_t freelist_counter; + }; + }; + struct callback_head callback_head; + }; + unsigned int __page_type; + atomic_t __page_refcount; + long unsigned int obj_exts; +}; + +enum slab_state { + DOWN = 0, + PARTIAL = 1, + UP = 2, + FULL = 3, +}; + +struct kmalloc_info_struct { + const char *name[4]; + unsigned int size; +}; + +struct slabinfo { + long unsigned int active_objs; + long unsigned int num_objs; + long unsigned int active_slabs; + long unsigned int num_slabs; + long unsigned int shared_avail; + unsigned int limit; + unsigned int batchcount; + unsigned int shared; + unsigned int objects_per_slab; + unsigned int cache_order; +}; + +struct kmem_obj_info { + void *kp_ptr; + struct slab *kp_slab; + void *kp_objp; + long unsigned int kp_data_offset; + struct kmem_cache *kp_slab_cache; + void *kp_ret; + void *kp_stack[16]; + void *kp_free_stack[16]; +}; + +struct trace_event_raw_kmem_cache_alloc { + struct trace_entry ent; + long unsigned int call_site; + const void *ptr; + size_t bytes_req; + size_t bytes_alloc; + long unsigned int gfp_flags; + int node; + bool accounted; + char __data[0]; +}; + +struct trace_event_raw_kmalloc { + struct trace_entry ent; + long unsigned int call_site; + const void *ptr; + size_t bytes_req; + size_t bytes_alloc; + long unsigned int gfp_flags; + int node; + char __data[0]; +}; + +struct trace_event_raw_kfree { + struct trace_entry ent; + long unsigned int call_site; + const void *ptr; + char __data[0]; +}; + +struct trace_event_raw_kmem_cache_free { + struct trace_entry ent; + long unsigned int call_site; + const void *ptr; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_mm_page_free { + struct trace_entry ent; + long unsigned int pfn; + unsigned int order; + char __data[0]; +}; + +struct trace_event_raw_mm_page_free_batched { + struct trace_entry ent; + long unsigned int pfn; + char __data[0]; +}; + +struct trace_event_raw_mm_page_alloc { + struct trace_entry ent; + long unsigned int pfn; + unsigned int order; + long unsigned int gfp_flags; + int migratetype; + char __data[0]; +}; + +struct trace_event_raw_mm_page { + struct trace_entry ent; + long unsigned int pfn; + unsigned int order; + int migratetype; + int percpu_refill; + char __data[0]; +}; + +struct trace_event_raw_mm_page_pcpu_drain { + struct trace_entry ent; + long unsigned int pfn; + unsigned int order; + int migratetype; + char __data[0]; +}; + +struct trace_event_raw_mm_page_alloc_extfrag { + struct trace_entry ent; + long unsigned int pfn; + int alloc_order; + int fallback_order; + int alloc_migratetype; + int fallback_migratetype; + int change_ownership; + char __data[0]; +}; + +struct trace_event_raw_mm_alloc_contig_migrate_range_info { + struct trace_entry ent; + long unsigned int start; + long unsigned int end; + long unsigned int nr_migrated; + long unsigned int nr_reclaimed; + long unsigned int nr_mapped; + int migratetype; + char __data[0]; +}; + +struct trace_event_raw_rss_stat { + struct trace_entry ent; + unsigned int mm_id; + unsigned int curr; + int member; + long int size; + char __data[0]; +}; + +struct trace_event_data_offsets_kmem_cache_alloc {}; + +struct trace_event_data_offsets_kmalloc {}; + +struct trace_event_data_offsets_kfree {}; + +struct trace_event_data_offsets_kmem_cache_free { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_mm_page_free {}; + +struct trace_event_data_offsets_mm_page_free_batched {}; + +struct trace_event_data_offsets_mm_page_alloc {}; + +struct trace_event_data_offsets_mm_page {}; + +struct trace_event_data_offsets_mm_page_pcpu_drain {}; + +struct trace_event_data_offsets_mm_page_alloc_extfrag {}; + +struct trace_event_data_offsets_mm_alloc_contig_migrate_range_info {}; + +struct trace_event_data_offsets_rss_stat {}; + +typedef void (*btf_trace_kmem_cache_alloc)(void *, long unsigned int, const void *, struct kmem_cache *, gfp_t, int); + +typedef void (*btf_trace_kmalloc)(void *, long unsigned int, const void *, size_t, size_t, gfp_t, int); + +typedef void (*btf_trace_kfree)(void *, long unsigned int, const void *); + +typedef void (*btf_trace_kmem_cache_free)(void *, long unsigned int, const void *, const struct kmem_cache *); + +typedef void (*btf_trace_mm_page_free)(void *, struct page *, unsigned int); + +typedef void (*btf_trace_mm_page_free_batched)(void *, struct page *); + +typedef void (*btf_trace_mm_page_alloc)(void *, struct page *, unsigned int, gfp_t, int); + +typedef void (*btf_trace_mm_page_alloc_zone_locked)(void *, struct page *, unsigned int, int, int); + +typedef void (*btf_trace_mm_page_pcpu_drain)(void *, struct page *, unsigned int, int); + +typedef void (*btf_trace_mm_page_alloc_extfrag)(void *, struct page *, int, int, int, int); + +typedef void (*btf_trace_mm_alloc_contig_migrate_range_info)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int); + +typedef void (*btf_trace_rss_stat)(void *, struct mm_struct *, int); + +struct swap_iocb { + struct kiocb iocb; + struct bio_vec bvec[32]; + int pages; + int len; +}; + +enum { + SWP_USED = 1, + SWP_WRITEOK = 2, + SWP_DISCARDABLE = 4, + SWP_DISCARDING = 8, + SWP_SOLIDSTATE = 16, + SWP_CONTINUED = 32, + SWP_BLKDEV = 64, + SWP_ACTIVATED = 128, + SWP_FS_OPS = 256, + SWP_AREA_DISCARD = 512, + SWP_PAGE_DISCARD = 1024, + SWP_STABLE_WRITES = 2048, + SWP_SYNCHRONOUS_IO = 4096, + SWP_SCANNING = 16384, +}; + +typedef unsigned int isolate_mode_t; + +struct movable_operations { + bool (*isolate_page)(struct page *, isolate_mode_t); + int (*migrate_page)(struct page *, struct page *, enum migrate_mode); + void (*putback_page)(struct page *); +}; + +struct balloon_dev_info { + long unsigned int isolated_pages; + spinlock_t pages_lock; + struct list_head pages; + int (*migratepage)(struct balloon_dev_info *, struct page *, struct page *, enum migrate_mode); +}; + +typedef struct { + rwlock_t *lock; +} class_read_lock_t; + +typedef struct { + rwlock_t *lock; +} class_write_lock_t; + +typedef struct rw_semaphore *class_rwsem_read_t; + +struct mount_attr { + __u64 attr_set; + __u64 attr_clr; + __u64 propagation; + __u64 userns_fd; +}; + +struct statmount { + __u32 size; + __u32 mnt_opts; + __u64 mask; + __u32 sb_dev_major; + __u32 sb_dev_minor; + __u64 sb_magic; + __u32 sb_flags; + __u32 fs_type; + __u64 mnt_id; + __u64 mnt_parent_id; + __u32 mnt_id_old; + __u32 mnt_parent_id_old; + __u64 mnt_attr; + __u64 mnt_propagation; + __u64 mnt_peer_group; + __u64 mnt_master; + __u64 propagate_from; + __u32 mnt_root; + __u32 mnt_point; + __u64 mnt_ns_id; + __u64 __spare2[49]; + char str[0]; +}; + +struct mnt_id_req { + __u32 size; + __u32 spare; + __u64 mnt_id; + __u64 param; + __u64 mnt_ns_id; +}; + +struct proc_mounts { + struct mnt_namespace *ns; + struct path root; + int (*show)(struct seq_file *, struct vfsmount *); +}; + +struct mount_kattr { + unsigned int attr_set; + unsigned int attr_clr; + unsigned int propagation; + unsigned int lookup_flags; + bool recurse; + struct user_namespace *mnt_userns; + struct mnt_idmap *mnt_idmap; +}; + +enum umount_tree_flags { + UMOUNT_SYNC = 1, + UMOUNT_PROPAGATE = 2, + UMOUNT_CONNECTED = 4, +}; + +enum mnt_tree_flags_t { + MNT_TREE_MOVE = 1, + MNT_TREE_BENEATH = 2, +}; + +struct kstatmount { + struct statmount *buf; + size_t bufsize; + struct vfsmount *mnt; + u64 mask; + struct path root; + struct statmount sm; + struct seq_file seq; +}; + +struct klistmount { + u64 last_mnt_id; + u64 mnt_parent_id; + u64 *kmnt_ids; + u32 nr_mnt_ids; + struct mnt_namespace *ns; + struct path root; +}; + +enum dentry_d_lock_class { + DENTRY_D_LOCK_NORMAL = 0, + DENTRY_D_LOCK_NESTED = 1, +}; + +struct name_snapshot { + struct qstr name; + unsigned char inline_name[40]; +}; + +struct fs_error_report { + int error; + struct inode *inode; + struct super_block *sb; +}; + +typedef struct fsnotify_mark_connector *fsnotify_connp_t; + +struct fscrypt_context_v1 { + u8 version; + u8 contents_encryption_mode; + u8 filenames_encryption_mode; + u8 flags; + u8 master_key_descriptor[8]; + u8 nonce[16]; +}; + +struct fscrypt_context_v2 { + u8 version; + u8 contents_encryption_mode; + u8 filenames_encryption_mode; + u8 flags; + u8 log2_data_unit_size; + u8 __reserved[3]; + u8 master_key_identifier[16]; + u8 nonce[16]; +}; + +union fscrypt_context { + u8 version; + struct fscrypt_context_v1 v1; + struct fscrypt_context_v2 v2; +}; + +struct posix_acl_xattr_entry { + __le16 e_tag; + __le16 e_perm; + __le32 e_id; +}; + +struct posix_acl_xattr_header { + __le32 a_version; +}; + +typedef struct dentry *instantiate_t(struct dentry *, struct task_struct *, const void *); + +struct fd_data { + fmode_t mode; + unsigned int fd; +}; + +struct sysctl_alias { + const char *kernel_param; + const char *sysctl_param; +}; + +struct netfs_folio { + struct netfs_group *netfs_group; + unsigned int dirty_offset; + unsigned int dirty_len; +}; + +enum netfs_rreq_trace { + netfs_rreq_trace_assess = 0, + netfs_rreq_trace_copy = 1, + netfs_rreq_trace_collect = 2, + netfs_rreq_trace_done = 3, + netfs_rreq_trace_free = 4, + netfs_rreq_trace_redirty = 5, + netfs_rreq_trace_resubmit = 6, + netfs_rreq_trace_set_pause = 7, + netfs_rreq_trace_unlock = 8, + netfs_rreq_trace_unlock_pgpriv2 = 9, + netfs_rreq_trace_unmark = 10, + netfs_rreq_trace_wait_ip = 11, + netfs_rreq_trace_wait_pause = 12, + netfs_rreq_trace_wake_ip = 13, + netfs_rreq_trace_unpause = 14, + netfs_rreq_trace_write_done = 15, +} __attribute__((mode(byte))); + +enum netfs_sreq_trace { + netfs_sreq_trace_add_donations = 0, + netfs_sreq_trace_added = 1, + netfs_sreq_trace_clear = 2, + netfs_sreq_trace_discard = 3, + netfs_sreq_trace_donate_to_prev = 4, + netfs_sreq_trace_donate_to_next = 5, + netfs_sreq_trace_download_instead = 6, + netfs_sreq_trace_fail = 7, + netfs_sreq_trace_free = 8, + netfs_sreq_trace_hit_eof = 9, + netfs_sreq_trace_io_progress = 10, + netfs_sreq_trace_limited = 11, + netfs_sreq_trace_prepare = 12, + netfs_sreq_trace_prep_failed = 13, + netfs_sreq_trace_progress = 14, + netfs_sreq_trace_reprep_failed = 15, + netfs_sreq_trace_retry = 16, + netfs_sreq_trace_short = 17, + netfs_sreq_trace_split = 18, + netfs_sreq_trace_submit = 19, + netfs_sreq_trace_terminated = 20, + netfs_sreq_trace_write = 21, + netfs_sreq_trace_write_skip = 22, + netfs_sreq_trace_write_term = 23, +} __attribute__((mode(byte))); + +enum netfs_failure { + netfs_fail_check_write_begin = 0, + netfs_fail_copy_to_cache = 1, + netfs_fail_dio_read_short = 2, + netfs_fail_dio_read_zero = 3, + netfs_fail_read = 4, + netfs_fail_short_read = 5, + netfs_fail_prepare_write = 6, + netfs_fail_write = 7, +} __attribute__((mode(byte))); + +enum netfs_rreq_ref_trace { + netfs_rreq_trace_get_for_outstanding = 0, + netfs_rreq_trace_get_subreq = 1, + netfs_rreq_trace_get_work = 2, + netfs_rreq_trace_put_complete = 3, + netfs_rreq_trace_put_discard = 4, + netfs_rreq_trace_put_failed = 5, + netfs_rreq_trace_put_no_submit = 6, + netfs_rreq_trace_put_return = 7, + netfs_rreq_trace_put_subreq = 8, + netfs_rreq_trace_put_work = 9, + netfs_rreq_trace_put_work_complete = 10, + netfs_rreq_trace_put_work_nq = 11, + netfs_rreq_trace_see_work = 12, + netfs_rreq_trace_new = 13, +} __attribute__((mode(byte))); + +enum netfs_sreq_ref_trace { + netfs_sreq_trace_get_copy_to_cache = 0, + netfs_sreq_trace_get_resubmit = 1, + netfs_sreq_trace_get_submit = 2, + netfs_sreq_trace_get_short_read = 3, + netfs_sreq_trace_new = 4, + netfs_sreq_trace_put_cancel = 5, + netfs_sreq_trace_put_clear = 6, + netfs_sreq_trace_put_consumed = 7, + netfs_sreq_trace_put_done = 8, + netfs_sreq_trace_put_failed = 9, + netfs_sreq_trace_put_merged = 10, + netfs_sreq_trace_put_no_copy = 11, + netfs_sreq_trace_put_oom = 12, + netfs_sreq_trace_put_wip = 13, + netfs_sreq_trace_put_work = 14, + netfs_sreq_trace_put_terminated = 15, +} __attribute__((mode(byte))); + +enum netfs_folio_trace { + netfs_folio_is_uptodate = 0, + netfs_just_prefetch = 1, + netfs_whole_folio_modify = 2, + netfs_modify_and_clear = 3, + netfs_streaming_write = 4, + netfs_streaming_write_cont = 5, + netfs_flush_content = 6, + netfs_streaming_filled_page = 7, + netfs_streaming_cont_filled_page = 8, + netfs_folio_trace_abandon = 9, + netfs_folio_trace_cancel_copy = 10, + netfs_folio_trace_cancel_store = 11, + netfs_folio_trace_clear = 12, + netfs_folio_trace_clear_cc = 13, + netfs_folio_trace_clear_g = 14, + netfs_folio_trace_clear_s = 15, + netfs_folio_trace_copy_to_cache = 16, + netfs_folio_trace_end_copy = 17, + netfs_folio_trace_filled_gaps = 18, + netfs_folio_trace_kill = 19, + netfs_folio_trace_kill_cc = 20, + netfs_folio_trace_kill_g = 21, + netfs_folio_trace_kill_s = 22, + netfs_folio_trace_mkwrite = 23, + netfs_folio_trace_mkwrite_plus = 24, + netfs_folio_trace_not_under_wback = 25, + netfs_folio_trace_put = 26, + netfs_folio_trace_read = 27, + netfs_folio_trace_read_done = 28, + netfs_folio_trace_read_gaps = 29, + netfs_folio_trace_read_unlock = 30, + netfs_folio_trace_redirtied = 31, + netfs_folio_trace_store = 32, + netfs_folio_trace_store_copy = 33, + netfs_folio_trace_store_plus = 34, + netfs_folio_trace_wthru = 35, + netfs_folio_trace_wthru_plus = 36, +} __attribute__((mode(byte))); + +struct mmp_struct { + __le32 mmp_magic; + __le32 mmp_seq; + __le64 mmp_time; + char mmp_nodename[64]; + char mmp_bdevname[32]; + __le16 mmp_check_interval; + __le16 mmp_pad1; + __le32 mmp_pad2[226]; + __le32 mmp_checksum; +}; + +struct ext4_orphan_block_tail { + __le32 ob_magic; + __le32 ob_checksum; +}; + +enum { + EXT4_STATE_NEW = 0, + EXT4_STATE_XATTR = 1, + EXT4_STATE_NO_EXPAND = 2, + EXT4_STATE_DA_ALLOC_CLOSE = 3, + EXT4_STATE_EXT_MIGRATE = 4, + EXT4_STATE_NEWENTRY = 5, + EXT4_STATE_MAY_INLINE_DATA = 6, + EXT4_STATE_EXT_PRECACHED = 7, + EXT4_STATE_LUSTRE_EA_INODE = 8, + EXT4_STATE_VERITY_IN_PROGRESS = 9, + EXT4_STATE_FC_COMMITTING = 10, + EXT4_STATE_ORPHAN_FILE = 11, +}; + +struct ext4_iloc { + struct buffer_head *bh; + long unsigned int offset; + ext4_group_t block_group; +}; + +typedef enum { + EXT4_IGET_NORMAL = 0, + EXT4_IGET_SPECIAL = 1, + EXT4_IGET_HANDLE = 2, + EXT4_IGET_BAD = 4, + EXT4_IGET_EA_INODE = 8, +} ext4_iget_flags; + +struct meta_entry { + u64 data_block; + unsigned int index_block; + short unsigned int offset; + short unsigned int pad; +}; + +struct meta_index { + unsigned int inode_number; + unsigned int offset; + short unsigned int entries; + short unsigned int skip; + short unsigned int locked; + short unsigned int pad; + struct meta_entry meta_entry[127]; +}; + +struct squashfs_cache_entry; + +struct squashfs_cache { + char *name; + int entries; + int curr_blk; + int next_blk; + int num_waiters; + int unused; + int block_size; + int pages; + spinlock_t lock; + wait_queue_head_t wait_queue; + struct squashfs_cache_entry *entry; +}; + +struct squashfs_page_actor; + +struct squashfs_cache_entry { + u64 block; + int length; + int refcount; + u64 next_index; + int pending; + int error; + int num_waiters; + wait_queue_head_t wait_queue; + struct squashfs_cache *cache; + void **data; + struct squashfs_page_actor *actor; +}; + +struct squashfs_decompressor; + +struct squashfs_decompressor_thread_ops; + +struct squashfs_sb_info { + const struct squashfs_decompressor *decompressor; + int devblksize; + int devblksize_log2; + struct squashfs_cache *block_cache; + struct squashfs_cache *fragment_cache; + struct squashfs_cache *read_page; + struct address_space *cache_mapping; + int next_meta_index; + __le64 *id_table; + __le64 *fragment_index; + __le64 *xattr_id_table; + struct mutex meta_index_mutex; + struct meta_index *meta_index; + void *stream; + __le64 *inode_lookup_table; + u64 inode_table; + u64 directory_table; + u64 xattr_table; + unsigned int block_size; + short unsigned int block_log; + long long int bytes_used; + unsigned int inodes; + unsigned int fragments; + unsigned int xattr_ids; + unsigned int ids; + bool panic_on_errors; + const struct squashfs_decompressor_thread_ops *thread_ops; + int max_thread_num; +}; + +struct squashfs_decompressor { + void * (*init)(struct squashfs_sb_info *, void *); + void * (*comp_opts)(struct squashfs_sb_info *, void *, int); + void (*free)(void *); + int (*decompress)(struct squashfs_sb_info *, void *, struct bio *, int, int, struct squashfs_page_actor *); + int id; + char *name; + int alloc_buffer; + int supported; +}; + +struct squashfs_decompressor_thread_ops { + void * (*create)(struct squashfs_sb_info *, void *); + void (*destroy)(struct squashfs_sb_info *); + int (*decompress)(struct squashfs_sb_info *, struct bio *, int, int, struct squashfs_page_actor *); + int (*max_decompressors)(void); +}; + +struct squashfs_inode_info { + u64 start; + int offset; + u64 xattr; + unsigned int xattr_size; + int xattr_count; + int parent; + union { + struct { + u64 fragment_block; + int fragment_size; + int fragment_offset; + u64 block_list_start; + }; + struct { + u64 dir_idx_start; + int dir_idx_offset; + int dir_idx_cnt; + }; + }; + struct inode vfs_inode; +}; + +struct vm_unmapped_area_info { + long unsigned int flags; + long unsigned int length; + long unsigned int low_limit; + long unsigned int high_limit; + long unsigned int align_mask; + long unsigned int align_offset; + long unsigned int start_gap; +}; + +enum { + HUGETLB_SHMFS_INODE = 1, + HUGETLB_ANONHUGE_INODE = 2, +}; + +struct hugetlbfs_inode_info { + struct inode vfs_inode; + unsigned int seals; +}; + +enum hugetlbfs_size_type { + NO_SIZE = 0, + SIZE_STD = 1, + SIZE_PERCENT = 2, +}; + +struct hugetlbfs_fs_context { + struct hstate *hstate; + long long unsigned int max_size_opt; + long long unsigned int min_size_opt; + long int max_hpages; + long int nr_inodes; + long int min_hpages; + enum hugetlbfs_size_type max_val_type; + enum hugetlbfs_size_type min_val_type; + kuid_t uid; + kgid_t gid; + umode_t mode; +}; + +enum hugetlb_param { + Opt_gid___2 = 0, + Opt_min_size = 1, + Opt_mode = 2, + Opt_nr_inodes = 3, + Opt_pagesize = 4, + Opt_size = 5, + Opt_uid___2 = 6, +}; + +struct exfat_dentry { + __u8 type; + union { + struct { + __u8 num_ext; + __le16 checksum; + __le16 attr; + __le16 reserved1; + __le16 create_time; + __le16 create_date; + __le16 modify_time; + __le16 modify_date; + __le16 access_time; + __le16 access_date; + __u8 create_time_cs; + __u8 modify_time_cs; + __u8 create_tz; + __u8 modify_tz; + __u8 access_tz; + __u8 reserved2[7]; + } __attribute__((packed)) file; + struct { + __u8 flags; + __u8 reserved1; + __u8 name_len; + __le16 name_hash; + __le16 reserved2; + __le64 valid_size; + __le32 reserved3; + __le32 start_clu; + __le64 size; + } __attribute__((packed)) stream; + struct { + __u8 flags; + __le16 unicode_0_14[15]; + } __attribute__((packed)) name; + struct { + __u8 flags; + __u8 reserved[18]; + __le32 start_clu; + __le64 size; + } __attribute__((packed)) bitmap; + struct { + __u8 reserved1[3]; + __le32 checksum; + __u8 reserved2[12]; + __le32 start_clu; + __le64 size; + } __attribute__((packed)) upcase; + struct { + __u8 flags; + __u8 vendor_guid[16]; + __u8 vendor_defined[14]; + } vendor_ext; + struct { + __u8 flags; + __u8 vendor_guid[16]; + __u8 vendor_defined[2]; + __le32 start_clu; + __le64 size; + } __attribute__((packed)) vendor_alloc; + struct { + __u8 flags; + __u8 custom_defined[18]; + __le32 start_clu; + __le64 size; + } __attribute__((packed)) generic_secondary; + } dentry; +}; + +enum { + NFS_IOHDR_ERROR = 0, + NFS_IOHDR_EOF = 1, + NFS_IOHDR_REDO = 2, + NFS_IOHDR_STAT = 3, + NFS_IOHDR_RESEND_PNFS = 4, + NFS_IOHDR_RESEND_MDS = 5, + NFS_IOHDR_UNSTABLE_WRITES = 6, + NFS_IOHDR_ODIRECT = 7, +}; + +enum { + PG_BUSY = 0, + PG_MAPPED = 1, + PG_FOLIO = 2, + PG_CLEAN = 3, + PG_COMMIT_TO_DS = 4, + PG_INODE_REF = 5, + PG_HEADLOCK = 6, + PG_TEARDOWN = 7, + PG_UNLOCKPAGE = 8, + PG_UPTODATE = 9, + PG_WB_END = 10, + PG_REMOVE = 11, + PG_CONTENDED1 = 12, + PG_CONTENDED2 = 13, +}; + +struct rpc_pipe_msg { + struct list_head list; + void *data; + size_t len; + size_t copied; + int errno; +}; + +struct rpc_pipe_ops { + ssize_t (*upcall)(struct file *, struct rpc_pipe_msg *, char *, size_t); + ssize_t (*downcall)(struct file *, const char *, size_t); + void (*release_pipe)(struct inode *); + int (*open_pipe)(struct inode *); + void (*destroy_msg)(struct rpc_pipe_msg *); +}; + +struct rpc_pipe { + struct list_head pipe; + struct list_head in_upcall; + struct list_head in_downcall; + int pipelen; + int nreaders; + int nwriters; + int flags; + struct delayed_work queue_timeout; + const struct rpc_pipe_ops *ops; + spinlock_t lock; + struct dentry *dentry; +}; + +enum nfs4_callback_procnum { + CB_NULL = 0, + CB_COMPOUND = 1, +}; + +struct bl_dev_msg { + int32_t status; + uint32_t major; + uint32_t minor; +}; + +struct nfs_netns_client; + +struct nfs_net { + struct cache_detail *nfs_dns_resolve; + struct rpc_pipe *bl_device_pipe; + struct bl_dev_msg bl_mount_reply; + wait_queue_head_t bl_wq; + struct mutex bl_mutex; + struct list_head nfs_client_list; + struct list_head nfs_volume_list; + struct idr cb_ident_idr; + short unsigned int nfs_callback_tcpport; + short unsigned int nfs_callback_tcpport6; + int cb_users[3]; + struct nfs_netns_client *nfs_client; + spinlock_t nfs_client_lock; + ktime_t boot_time; + struct rpc_stat rpcstats; + struct proc_dir_entry *proc_nfsfs; +}; + +struct nfs_callback_data { + unsigned int users; + struct svc_serv *serv; +}; + +struct pnfs_commit_bucket { + struct list_head written; + struct list_head committing; + struct pnfs_layout_segment *lseg; + struct nfs_writeverf direct_verf; +}; + +struct pnfs_commit_array { + struct list_head cinfo_list; + struct list_head lseg_list; + struct pnfs_layout_segment *lseg; + struct callback_head rcu; + refcount_t refcount; + unsigned int nbuckets; + struct pnfs_commit_bucket buckets[0]; +}; + +struct nfs4_pnfs_ds { + struct list_head ds_node; + char *ds_remotestr; + struct list_head ds_addrs; + const struct net *ds_net; + struct nfs_client *ds_clp; + refcount_t ds_count; + long unsigned int ds_state; +}; + +enum stripetype4 { + STRIPE_SPARSE = 1, + STRIPE_DENSE = 2, +}; + +struct nfs4_file_layout_dsaddr { + struct nfs4_deviceid_node id_node; + u32 stripe_count; + u8 *stripe_indices; + u32 ds_num; + struct nfs4_pnfs_ds *ds_list[0]; +}; + +struct nfs4_filelayout_segment { + struct pnfs_layout_segment generic_hdr; + u32 stripe_type; + u32 commit_through_mds; + u32 stripe_unit; + u32 first_stripe_index; + u64 pattern_offset; + struct nfs4_deviceid deviceid; + struct nfs4_file_layout_dsaddr *dsaddr; + unsigned int num_fh; + struct nfs_fh **fh_array; +}; + +struct nfs4_filelayout { + struct pnfs_layout_hdr generic_hdr; + struct pnfs_ds_commit_info commit_info; +}; + +struct renamedata { + struct mnt_idmap *old_mnt_idmap; + struct inode *old_dir; + struct dentry *old_dentry; + struct mnt_idmap *new_mnt_idmap; + struct inode *new_dir; + struct dentry *new_dentry; + struct inode **delegated_inode; + unsigned int flags; +}; + +struct splice_desc { + size_t total_len; + unsigned int len; + unsigned int flags; + union { + void *userptr; + struct file *file; + void *data; + } u; + void (*splice_eof)(struct splice_desc *); + loff_t pos; + loff_t *opos; + size_t num_spliced; + bool need_wakeup; +}; + +typedef int splice_actor(struct pipe_inode_info *, struct pipe_buffer *, struct splice_desc *); + +typedef int splice_direct_actor(struct pipe_inode_info *, struct splice_desc *); + +struct readdir_cd { + __be32 err; +}; + +struct nfsd4_compound_state { + struct svc_fh current_fh; + struct svc_fh save_fh; + struct nfs4_stateowner *replay_owner; + struct nfs4_client *clp; + struct nfsd4_session *session; + struct nfsd4_slot *slot; + int data_offset; + bool spo_must_allowed; + size_t iovlen; + u32 minorversion; + __be32 status; + stateid_t current_stateid; + stateid_t save_stateid; + u32 sid_flags; +}; + +struct nfsd4_compoundres { + struct xdr_stream *xdr; + struct svc_rqst *rqstp; + __be32 *statusp; + char *tag; + u32 taglen; + u32 opcnt; + struct nfsd4_compound_state cstate; +}; + +typedef int (*nfsd_filldir_t)(void *, const char *, int, loff_t, u64, unsigned int); + +struct accessmap { + u32 access; + int how; +}; + +struct buffered_dirent { + u64 ino; + loff_t offset; + int namlen; + unsigned int d_type; + char name[0]; +}; + +struct readdir_data { + struct dir_context ctx; + char *dirent; + size_t used; + int full; +}; + +struct nlm_reboot { + char *mon; + unsigned int len; + u32 state; + struct nsm_private priv; +}; + +struct lockd_net { + unsigned int nlmsvc_users; + long unsigned int next_gc; + long unsigned int nrhosts; + struct delayed_work grace_period_end; + struct lock_manager lockd_manager; + struct list_head nsm_handles; +}; + +struct nlm_lookup_host_info { + const int server; + const struct sockaddr *sap; + const size_t salen; + const short unsigned int protocol; + const u32 version; + const char *hostname; + const size_t hostname_len; + const int noresvport; + struct net *net; + const struct cred *cred; +}; + +typedef u32 unicode_t; + +struct utf8_table { + int cmask; + int cval; + int shift; + long int lmask; + long int lval; +}; + +struct smb_hdr { + __be32 smb_buf_length; + __u8 Protocol[4]; + __u8 Command; + union { + struct { + __u8 ErrorClass; + __u8 Reserved; + __le16 Error; + } DosError; + __le32 CifsError; + } Status; + __u8 Flags; + __le16 Flags2; + __le16 PidHigh; + union { + struct { + __le32 SequenceNumber; + __u32 Reserved; + } Sequence; + __u8 SecuritySignature[8]; + } Signature; + __u8 pad[2]; + __u16 Tid; + __le16 Pid; + __u16 Uid; + __le16 Mid; + __u8 WordCount; +} __attribute__((packed)); + +struct locking_andx_range { + __le16 Pid; + __le16 Pad; + __le32 OffsetHigh; + __le32 OffsetLow; + __le32 LengthHigh; + __le32 LengthLow; +}; + +typedef struct locking_andx_range LOCKING_ANDX_RANGE; + +struct smb_com_lock_req { + struct smb_hdr hdr; + __u8 AndXCommand; + __u8 AndXReserved; + __le16 AndXOffset; + __u16 Fid; + __u8 LockType; + __u8 OplockLevel; + __le32 Timeout; + __le16 NumberOfUnlocks; + __le16 NumberOfLocks; + __le16 ByteCount; + LOCKING_ANDX_RANGE Locks[0]; +} __attribute__((packed)); + +struct smb_com_transaction_change_notify_rsp { + struct smb_hdr hdr; + __u8 Reserved[3]; + __le32 TotalParameterCount; + __le32 TotalDataCount; + __le32 ParameterCount; + __le32 ParameterOffset; + __le32 ParameterDisplacement; + __le32 DataCount; + __le32 DataOffset; + __le32 DataDisplacement; + __u8 SetupCount; + __u16 ByteCount; +} __attribute__((packed)); + +struct file_notify_information { + __le32 NextEntryOffset; + __le32 Action; + __le32 FileNameLength; + __u8 FileName[0]; +}; + +struct dfs_referral_level_3 { + __le16 VersionNumber; + __le16 Size; + __le16 ServerType; + __le16 ReferralEntryFlags; + __le32 TimeToLive; + __le16 DfsPathOffset; + __le16 DfsAlternatePathOffset; + __le16 NetworkAddressOffset; + __u8 ServiceSiteGuid[16]; +} __attribute__((packed)); + +typedef struct dfs_referral_level_3 REFERRAL3; + +struct get_dfs_referral_rsp { + __le16 PathConsumed; + __le16 NumberOfReferrals; + __le32 DFSFlags; + REFERRAL3 referrals[0]; +}; + +struct cifs_deferred_close { + struct list_head dlist; + struct tcon_link *tlink; + __u16 netfid; + __u64 persistent_fid; + __u64 volatile_fid; +}; + +struct file_list { + struct list_head list; + struct cifsFileInfo *cfile; +}; + +enum smb3_tcon_ref_trace { + netfs_trace_tcon_ref_dec_dfs_refer = 0, + netfs_trace_tcon_ref_free = 1, + netfs_trace_tcon_ref_free_fail = 2, + netfs_trace_tcon_ref_free_ipc = 3, + netfs_trace_tcon_ref_free_ipc_fail = 4, + netfs_trace_tcon_ref_free_reconnect_server = 5, + netfs_trace_tcon_ref_get_cached_laundromat = 6, + netfs_trace_tcon_ref_get_cached_lease_break = 7, + netfs_trace_tcon_ref_get_cancelled_close = 8, + netfs_trace_tcon_ref_get_dfs_refer = 9, + netfs_trace_tcon_ref_get_find = 10, + netfs_trace_tcon_ref_get_find_sess_tcon = 11, + netfs_trace_tcon_ref_get_reconnect_server = 12, + netfs_trace_tcon_ref_new = 13, + netfs_trace_tcon_ref_new_ipc = 14, + netfs_trace_tcon_ref_new_reconnect_server = 15, + netfs_trace_tcon_ref_put_cached_close = 16, + netfs_trace_tcon_ref_put_cancelled_close = 17, + netfs_trace_tcon_ref_put_cancelled_close_fid = 18, + netfs_trace_tcon_ref_put_cancelled_mid = 19, + netfs_trace_tcon_ref_put_mnt_ctx = 20, + netfs_trace_tcon_ref_put_reconnect_server = 21, + netfs_trace_tcon_ref_put_tlink = 22, + netfs_trace_tcon_ref_see_cancelled_close = 23, + netfs_trace_tcon_ref_see_fscache_collision = 24, + netfs_trace_tcon_ref_see_fscache_okay = 25, + netfs_trace_tcon_ref_see_fscache_relinq = 26, + netfs_trace_tcon_ref_see_umount = 27, +} __attribute__((mode(byte))); + +struct super_cb_data { + void *data; + struct super_block *sb; +}; + +enum smb_version { + Smb_1 = 1, + Smb_20 = 2, + Smb_21 = 3, + Smb_30 = 4, + Smb_302 = 5, + Smb_311 = 6, + Smb_3any = 7, + Smb_default = 8, + Smb_version_err = 9, +}; + +enum { + Opt_cache_loose = 0, + Opt_cache_strict = 1, + Opt_cache_none = 2, + Opt_cache_ro = 3, + Opt_cache_rw = 4, + Opt_cache_err = 5, +}; + +enum cifs_reparse_parm { + Opt_reparse_default = 0, + Opt_reparse_nfs = 1, + Opt_reparse_wsl = 2, + Opt_reparse_err = 3, +}; + +enum cifs_sec_param { + Opt_sec_krb5 = 0, + Opt_sec_krb5i = 1, + Opt_sec_krb5p = 2, + Opt_sec_ntlmsspi = 3, + Opt_sec_ntlmssp = 4, + Opt_sec_ntlmv2 = 5, + Opt_sec_ntlmv2i = 6, + Opt_sec_none = 7, + Opt_sec_err = 8, +}; + +enum cifs_upcall_target_param { + Opt_upcall_target_mount = 0, + Opt_upcall_target_application = 1, + Opt_upcall_target_err = 2, +}; + +enum cifs_param { + Opt_user_xattr = 0, + Opt_forceuid = 1, + Opt_forcegid = 2, + Opt_noblocksend = 3, + Opt_noautotune = 4, + Opt_nolease = 5, + Opt_nosparse = 6, + Opt_hard = 7, + Opt_soft = 8, + Opt_perm = 9, + Opt_nodelete = 10, + Opt_mapposix = 11, + Opt_mapchars = 12, + Opt_nomapchars = 13, + Opt_sfu = 14, + Opt_nodfs = 15, + Opt_posixpaths = 16, + Opt_unix = 17, + Opt_nocase___2 = 18, + Opt_brl = 19, + Opt_handlecache = 20, + Opt_forcemandatorylock = 21, + Opt_setuidfromacl = 22, + Opt_setuids = 23, + Opt_dynperm = 24, + Opt_intr = 25, + Opt_strictsync = 26, + Opt_serverino = 27, + Opt_rwpidforward = 28, + Opt_cifsacl = 29, + Opt_acl = 30, + Opt_locallease = 31, + Opt_sign = 32, + Opt_ignore_signature = 33, + Opt_seal = 34, + Opt_noac = 35, + Opt_fsc = 36, + Opt_mfsymlinks = 37, + Opt_multiuser = 38, + Opt_sloppy = 39, + Opt_nosharesock = 40, + Opt_persistent = 41, + Opt_resilient = 42, + Opt_tcp_nodelay = 43, + Opt_domainauto = 44, + Opt_rdma = 45, + Opt_modesid = 46, + Opt_rootfs = 47, + Opt_multichannel = 48, + Opt_compress = 49, + Opt_witness = 50, + Opt_is_upcall_target_mount = 51, + Opt_is_upcall_target_application = 52, + Opt_backupuid = 53, + Opt_backupgid = 54, + Opt_uid___3 = 55, + Opt_cruid = 56, + Opt_gid___3 = 57, + Opt_port___2 = 58, + Opt_file_mode = 59, + Opt_dirmode = 60, + Opt_min_enc_offload = 61, + Opt_retrans = 62, + Opt_blocksize = 63, + Opt_rasize = 64, + Opt_rsize = 65, + Opt_wsize = 66, + Opt_actimeo = 67, + Opt_acdirmax = 68, + Opt_acregmax = 69, + Opt_closetimeo = 70, + Opt_echo_interval = 71, + Opt_max_credits = 72, + Opt_max_cached_dirs = 73, + Opt_snapshot = 74, + Opt_max_channels = 75, + Opt_handletimeout = 76, + Opt_source = 77, + Opt_user = 78, + Opt_pass = 79, + Opt_pass2 = 80, + Opt_ip = 81, + Opt_domain = 82, + Opt_srcaddr = 83, + Opt_iocharset = 84, + Opt_netbiosname = 85, + Opt_servern = 86, + Opt_ver = 87, + Opt_vers = 88, + Opt_sec = 89, + Opt_cache = 90, + Opt_reparse = 91, + Opt_upcalltarget = 92, + Opt_ignore = 93, + Opt_err___2 = 94, +}; + +struct args_protover { + __u32 version; +}; + +struct args_protosubver { + __u32 sub_version; +}; + +struct args_openmount { + __u32 devid; +}; + +struct args_ready { + __u32 token; +}; + +struct args_fail { + __u32 token; + __s32 status; +}; + +struct args_setpipefd { + __s32 pipefd; +}; + +struct args_timeout { + __u64 timeout; +}; + +struct args_requester { + __u32 uid; + __u32 gid; +}; + +struct args_expire { + __u32 how; +}; + +struct args_askumount { + __u32 may_umount; +}; + +struct args_in { + __u32 type; +}; + +struct args_out { + __u32 devid; + __u32 magic; +}; + +struct args_ismountpoint { + union { + struct args_in in; + struct args_out out; + }; +}; + +struct autofs_dev_ioctl { + __u32 ver_major; + __u32 ver_minor; + __u32 size; + __s32 ioctlfd; + union { + struct args_protover protover; + struct args_protosubver protosubver; + struct args_openmount openmount; + struct args_ready ready; + struct args_fail fail; + struct args_setpipefd setpipefd; + struct args_timeout timeout; + struct args_requester requester; + struct args_expire expire; + struct args_askumount askumount; + struct args_ismountpoint ismountpoint; + }; + char path[0]; +}; + +enum { + AUTOFS_DEV_IOCTL_VERSION_CMD = 113, + AUTOFS_DEV_IOCTL_PROTOVER_CMD = 114, + AUTOFS_DEV_IOCTL_PROTOSUBVER_CMD = 115, + AUTOFS_DEV_IOCTL_OPENMOUNT_CMD = 116, + AUTOFS_DEV_IOCTL_CLOSEMOUNT_CMD = 117, + AUTOFS_DEV_IOCTL_READY_CMD = 118, + AUTOFS_DEV_IOCTL_FAIL_CMD = 119, + AUTOFS_DEV_IOCTL_SETPIPEFD_CMD = 120, + AUTOFS_DEV_IOCTL_CATATONIC_CMD = 121, + AUTOFS_DEV_IOCTL_TIMEOUT_CMD = 122, + AUTOFS_DEV_IOCTL_REQUESTER_CMD = 123, + AUTOFS_DEV_IOCTL_EXPIRE_CMD = 124, + AUTOFS_DEV_IOCTL_ASKUMOUNT_CMD = 125, + AUTOFS_DEV_IOCTL_ISMOUNTPOINT_CMD = 126, +}; + +typedef int (*ioctl_fn___2)(struct file *, struct autofs_sb_info *, struct autofs_dev_ioctl *); + +enum { + OVL_REDIRECT_OFF = 0, + OVL_REDIRECT_FOLLOW = 1, + OVL_REDIRECT_NOFOLLOW = 2, + OVL_REDIRECT_ON = 3, +}; + +enum { + OVL_UUID_OFF = 0, + OVL_UUID_NULL = 1, + OVL_UUID_AUTO = 2, + OVL_UUID_ON = 3, +}; + +enum { + OVL_XINO_OFF = 0, + OVL_XINO_AUTO = 1, + OVL_XINO_ON = 2, +}; + +enum { + OVL_VERITY_OFF = 0, + OVL_VERITY_ON = 1, + OVL_VERITY_REQUIRE = 2, +}; + +struct ovl_opt_set { + bool metacopy; + bool redirect; + bool nfs_export; + bool index; +}; + +struct ovl_fs_context_layer { + char *name; + struct path path; +}; + +struct ovl_fs_context { + struct path upper; + struct path work; + size_t capacity; + size_t nr; + size_t nr_data; + struct ovl_opt_set set; + struct ovl_fs_context_layer *lower; + char *lowerdir_all; +}; + +enum ovl_opt { + Opt_lowerdir = 0, + Opt_lowerdir_add = 1, + Opt_datadir_add = 2, + Opt_upperdir = 3, + Opt_workdir = 4, + Opt_default_permissions = 5, + Opt_redirect_dir = 6, + Opt_index = 7, + Opt_uuid = 8, + Opt_nfs_export = 9, + Opt_userxattr = 10, + Opt_xino = 11, + Opt_metacopy = 12, + Opt_verity = 13, + Opt_volatile = 14, +}; + +struct timestamp { + __le16 typeAndTimezone; + __le16 year; + uint8_t month; + uint8_t day; + uint8_t hour; + uint8_t minute; + uint8_t second; + uint8_t centiseconds; + uint8_t hundredsOfMicroseconds; + uint8_t microseconds; +}; + +struct timezone { + int tz_minuteswest; + int tz_dsttime; +}; + +struct xbtree_ifakeroot { + struct xfs_ifork *if_fork; + int64_t if_blocks; + unsigned int if_levels; + unsigned int if_fork_size; +}; + +struct xbtree_afakeroot { + xfs_agblock_t af_root; + unsigned int af_levels; + unsigned int af_blocks; +}; + +typedef int (*xfs_btree_bload_get_records_fn)(struct xfs_btree_cur *, unsigned int, struct xfs_btree_block *, unsigned int, void *); + +typedef int (*xfs_btree_bload_claim_block_fn)(struct xfs_btree_cur *, union xfs_btree_ptr *, void *); + +typedef size_t (*xfs_btree_bload_iroot_size_fn)(struct xfs_btree_cur *, unsigned int, unsigned int, void *); + +struct xfs_btree_bload { + xfs_btree_bload_get_records_fn get_records; + xfs_btree_bload_claim_block_fn claim_block; + xfs_btree_bload_iroot_size_fn iroot_size; + uint64_t nr_records; + int leaf_slack; + int node_slack; + uint64_t nr_blocks; + unsigned int btree_height; + uint16_t max_dirty; + uint16_t nr_dirty; +}; + +struct xfs_exchmaps_intent { + struct list_head xmi_list; + struct xfs_inode *xmi_ip1; + struct xfs_inode *xmi_ip2; + xfs_fileoff_t xmi_startoff1; + xfs_fileoff_t xmi_startoff2; + xfs_filblks_t xmi_blockcount; + xfs_fsize_t xmi_isize1; + xfs_fsize_t xmi_isize2; + uint64_t xmi_flags; +}; + +struct xfs_dir2_sf_hdr { + uint8_t count; + uint8_t i8count; + uint8_t parent[8]; +}; + +typedef struct xfs_dir2_sf_hdr xfs_dir2_sf_hdr_t; + +enum xfs_dir2_fmt { + XFS_DIR2_FMT_SF = 0, + XFS_DIR2_FMT_BLOCK = 1, + XFS_DIR2_FMT_LEAF = 2, + XFS_DIR2_FMT_NODE = 3, + XFS_DIR2_FMT_ERROR = 4, +}; + +struct xfs_exchmaps_adjacent { + struct xfs_bmbt_irec left1; + struct xfs_bmbt_irec right1; + struct xfs_bmbt_irec left2; + struct xfs_bmbt_irec right2; +}; + +typedef int (*xfs_rmap_query_range_fn)(struct xfs_btree_cur *, const struct xfs_rmap_irec *, void *); + +enum xfs_rmap_intent_type { + XFS_RMAP_MAP = 0, + XFS_RMAP_MAP_SHARED = 1, + XFS_RMAP_UNMAP = 2, + XFS_RMAP_UNMAP_SHARED = 3, + XFS_RMAP_CONVERT = 4, + XFS_RMAP_CONVERT_SHARED = 5, + XFS_RMAP_ALLOC = 6, + XFS_RMAP_FREE = 7, +}; + +struct xfs_rmap_intent { + struct list_head ri_list; + enum xfs_rmap_intent_type ri_type; + int ri_whichfork; + uint64_t ri_owner; + struct xfs_bmbt_irec ri_bmap; + struct xfs_perag *ri_pag; +}; + +struct xfs_rmap_matches { + long long unsigned int matches; + long long unsigned int non_owner_matches; + long long unsigned int bad_non_owner_matches; +}; + +struct xfs_find_left_neighbor_info { + struct xfs_rmap_irec high; + struct xfs_rmap_irec *irec; +}; + +struct xfs_rmap_query_range_info { + xfs_rmap_query_range_fn fn; + void *priv; +}; + +struct xfs_rmap_ownercount { + struct xfs_rmap_irec good; + struct xfs_rmap_irec low; + struct xfs_rmap_irec high; + struct xfs_rmap_matches *results; + bool stop_on_nonmatch; +}; + +struct xfs_dir2_sf_entry { + __u8 namelen; + __u8 offset[2]; + __u8 name[0]; +}; + +typedef struct xfs_dir2_sf_entry xfs_dir2_sf_entry_t; + +typedef struct xfs_inobt_rec_incore xfs_inobt_rec_incore_t; + +typedef int (*xfs_iwalk_fn)(struct xfs_mount *, struct xfs_trans *, xfs_ino_t, void *); + +typedef int (*xfs_inobt_walk_fn)(struct xfs_mount *, struct xfs_trans *, xfs_agnumber_t, const struct xfs_inobt_rec_incore *, void *); + +struct xfs_pwork; + +typedef int (*xfs_pwork_work_fn)(struct xfs_mount *, struct xfs_pwork *); + +struct xfs_pwork_ctl; + +struct xfs_pwork { + struct work_struct work; + struct xfs_pwork_ctl *pctl; +}; + +struct xfs_pwork_ctl { + struct workqueue_struct *wq; + struct xfs_mount *mp; + xfs_pwork_work_fn work_fn; + struct wait_queue_head poll_wait; + atomic_t nr_work; + int error; +}; + +struct xfs_iwalk_ag { + struct xfs_pwork pwork; + struct xfs_mount *mp; + struct xfs_trans *tp; + struct xfs_perag *pag; + xfs_ino_t startino; + xfs_ino_t lastino; + struct xfs_inobt_rec_incore *recs; + unsigned int sz_recs; + unsigned int nr_recs; + xfs_iwalk_fn iwalk_fn; + xfs_inobt_walk_fn inobt_walk_fn; + void *data; + unsigned int trim_start: 1; + unsigned int skip_empty: 1; + unsigned int drop_trans: 1; +}; + +struct xfs_xmi_log_format { + uint16_t xmi_type; + uint16_t xmi_size; + uint32_t __pad; + uint64_t xmi_id; + uint64_t xmi_inode1; + uint64_t xmi_inode2; + uint32_t xmi_igen1; + uint32_t xmi_igen2; + uint64_t xmi_startoff1; + uint64_t xmi_startoff2; + uint64_t xmi_blockcount; + uint64_t xmi_flags; + uint64_t xmi_isize1; + uint64_t xmi_isize2; +}; + +struct xfs_xmd_log_format { + uint16_t xmd_type; + uint16_t xmd_size; + uint32_t __pad; + uint64_t xmd_xmi_id; +}; + +struct xfs_xmi_log_item { + struct xfs_log_item xmi_item; + atomic_t xmi_refcount; + struct xfs_xmi_log_format xmi_format; +}; + +struct xfs_xmd_log_item { + struct xfs_log_item xmd_item; + struct xfs_xmi_log_item *xmd_intent_log_item; + struct xfs_xmd_log_format xmd_format; +}; + +enum cachefiles_obj_ref_trace { + cachefiles_obj_get_ioreq = 0, + cachefiles_obj_new = 1, + cachefiles_obj_put_alloc_fail = 2, + cachefiles_obj_put_detach = 3, + cachefiles_obj_put_ioreq = 4, + cachefiles_obj_see_clean_commit = 5, + cachefiles_obj_see_clean_delete = 6, + cachefiles_obj_see_clean_drop_tmp = 7, + cachefiles_obj_see_lookup_cookie = 8, + cachefiles_obj_see_lookup_failed = 9, + cachefiles_obj_see_withdraw_cookie = 10, + cachefiles_obj_see_withdrawal = 11, + cachefiles_obj_get_ondemand_fd = 12, + cachefiles_obj_put_ondemand_fd = 13, + cachefiles_obj_get_read_req = 14, + cachefiles_obj_put_read_req = 15, +}; + +enum cachefiles_prepare_read_trace { + cachefiles_trace_read_after_eof = 0, + cachefiles_trace_read_found_hole = 1, + cachefiles_trace_read_found_part = 2, + cachefiles_trace_read_have_data = 3, + cachefiles_trace_read_no_data = 4, + cachefiles_trace_read_no_file = 5, + cachefiles_trace_read_seek_error = 6, + cachefiles_trace_read_seek_nxio = 7, +}; + +enum cachefiles_error_trace { + cachefiles_trace_fallocate_error = 0, + cachefiles_trace_getxattr_error = 1, + cachefiles_trace_link_error = 2, + cachefiles_trace_lookup_error = 3, + cachefiles_trace_mkdir_error = 4, + cachefiles_trace_notify_change_error = 5, + cachefiles_trace_open_error = 6, + cachefiles_trace_read_error = 7, + cachefiles_trace_remxattr_error = 8, + cachefiles_trace_rename_error = 9, + cachefiles_trace_seek_error = 10, + cachefiles_trace_setxattr_error = 11, + cachefiles_trace_statfs_error = 12, + cachefiles_trace_tmpfile_error = 13, + cachefiles_trace_trunc_error = 14, + cachefiles_trace_unlink_error = 15, + cachefiles_trace_write_error = 16, +}; + +struct cachefiles_kiocb { + struct kiocb iocb; + refcount_t ki_refcnt; + loff_t start; + union { + size_t skipped; + size_t len; + }; + struct cachefiles_object *object; + netfs_io_terminated_t term_func; + void *term_func_priv; + bool was_async; + unsigned int inval_counter; + u64 b_writing; +}; + +enum { + IO_TREE_FS_PINNED_EXTENTS = 0, + IO_TREE_FS_EXCLUDED_EXTENTS = 1, + IO_TREE_BTREE_INODE_IO = 2, + IO_TREE_INODE_IO = 3, + IO_TREE_RELOC_BLOCKS = 4, + IO_TREE_TRANS_DIRTY_PAGES = 5, + IO_TREE_ROOT_DIRTY_LOG_PAGES = 6, + IO_TREE_INODE_FILE_EXTENT = 7, + IO_TREE_LOG_CSUM_RANGE = 8, + IO_TREE_SELFTEST = 9, + IO_TREE_DEVICE_ALLOC_STATE = 10, +}; + +enum btrfs_delayed_ref_flags { + BTRFS_DELAYED_REFS_FLUSHING = 0, +}; + +enum { + ____TRANS_FREEZABLE_BIT = 0, + __TRANS_FREEZABLE = 1, + ____TRANS_FREEZABLE_SEQ = 0, + ____TRANS_START_BIT = 1, + __TRANS_START = 2, + ____TRANS_START_SEQ = 1, + ____TRANS_ATTACH_BIT = 2, + __TRANS_ATTACH = 4, + ____TRANS_ATTACH_SEQ = 2, + ____TRANS_JOIN_BIT = 3, + __TRANS_JOIN = 8, + ____TRANS_JOIN_SEQ = 3, + ____TRANS_JOIN_NOLOCK_BIT = 4, + __TRANS_JOIN_NOLOCK = 16, + ____TRANS_JOIN_NOLOCK_SEQ = 4, + ____TRANS_DUMMY_BIT = 5, + __TRANS_DUMMY = 32, + ____TRANS_DUMMY_SEQ = 5, + ____TRANS_JOIN_NOSTART_BIT = 6, + __TRANS_JOIN_NOSTART = 64, + ____TRANS_JOIN_NOSTART_SEQ = 6, +}; + +enum btrfs_qgroup_mode { + BTRFS_QGROUP_MODE_DISABLED = 0, + BTRFS_QGROUP_MODE_FULL = 1, + BTRFS_QGROUP_MODE_SIMPLE = 2, +}; + +typedef enum { + ZSTDcs_created = 0, + ZSTDcs_init = 1, + ZSTDcs_ongoing = 2, + ZSTDcs_ending = 3, +} ZSTD_compressionStage_e; + +typedef enum { + ZSTD_f_zstd1 = 0, + ZSTD_f_zstd1_magicless = 1, +} ZSTD_format_e; + +typedef enum { + ZSTD_fast = 1, + ZSTD_dfast = 2, + ZSTD_greedy = 3, + ZSTD_lazy = 4, + ZSTD_lazy2 = 5, + ZSTD_btlazy2 = 6, + ZSTD_btopt = 7, + ZSTD_btultra = 8, + ZSTD_btultra2 = 9, +} ZSTD_strategy; + +typedef struct { + unsigned int windowLog; + unsigned int chainLog; + unsigned int hashLog; + unsigned int searchLog; + unsigned int minMatch; + unsigned int targetLength; + ZSTD_strategy strategy; +} ZSTD_compressionParameters; + +typedef struct { + int contentSizeFlag; + int checksumFlag; + int noDictIDFlag; +} ZSTD_frameParameters; + +typedef enum { + ZSTD_dictDefaultAttach = 0, + ZSTD_dictForceAttach = 1, + ZSTD_dictForceCopy = 2, + ZSTD_dictForceLoad = 3, +} ZSTD_dictAttachPref_e; + +typedef enum { + ZSTD_ps_auto = 0, + ZSTD_ps_enable = 1, + ZSTD_ps_disable = 2, +} ZSTD_paramSwitch_e; + +typedef struct { + ZSTD_paramSwitch_e enableLdm; + U32 hashLog; + U32 bucketSizeLog; + U32 minMatchLength; + U32 hashRateLog; + U32 windowLog; +} ldmParams_t; + +typedef enum { + ZSTD_bm_buffered = 0, + ZSTD_bm_stable = 1, +} ZSTD_bufferMode_e; + +typedef enum { + ZSTD_sf_noBlockDelimiters = 0, + ZSTD_sf_explicitBlockDelimiters = 1, +} ZSTD_sequenceFormat_e; + +struct ZSTD_CCtx_params_s { + ZSTD_format_e format; + ZSTD_compressionParameters cParams; + ZSTD_frameParameters fParams; + int compressionLevel; + int forceWindow; + size_t targetCBlockSize; + int srcSizeHint; + ZSTD_dictAttachPref_e attachDictPref; + ZSTD_paramSwitch_e literalCompressionMode; + int nbWorkers; + size_t jobSize; + int overlapLog; + int rsyncable; + ldmParams_t ldmParams; + int enableDedicatedDictSearch; + ZSTD_bufferMode_e inBufferMode; + ZSTD_bufferMode_e outBufferMode; + ZSTD_sequenceFormat_e blockDelimiters; + int validateSequences; + ZSTD_paramSwitch_e useBlockSplitter; + ZSTD_paramSwitch_e useRowMatchFinder; + int deterministicRefPrefix; + ZSTD_customMem customMem; +}; + +typedef struct ZSTD_CCtx_params_s ZSTD_CCtx_params; + +typedef enum { + ZSTD_cwksp_alloc_objects = 0, + ZSTD_cwksp_alloc_buffers = 1, + ZSTD_cwksp_alloc_aligned = 2, +} ZSTD_cwksp_alloc_phase_e; + +typedef enum { + ZSTD_cwksp_dynamic_alloc = 0, + ZSTD_cwksp_static_alloc = 1, +} ZSTD_cwksp_static_alloc_e; + +typedef struct { + void *workspace; + void *workspaceEnd; + void *objectEnd; + void *tableEnd; + void *tableValidEnd; + void *allocStart; + BYTE allocFailed; + int workspaceOversizedDuration; + ZSTD_cwksp_alloc_phase_e phase; + ZSTD_cwksp_static_alloc_e isStatic; +} ZSTD_cwksp; + +struct POOL_ctx_s; + +typedef struct POOL_ctx_s ZSTD_threadPool; + +typedef struct { + unsigned int offset; + unsigned int litLength; + unsigned int matchLength; + unsigned int rep; +} ZSTD_Sequence; + +typedef struct { + int collectSequences; + ZSTD_Sequence *seqStart; + size_t seqIndex; + size_t maxSequences; +} SeqCollector; + +typedef enum { + ZSTD_llt_none = 0, + ZSTD_llt_literalLength = 1, + ZSTD_llt_matchLength = 2, +} ZSTD_longLengthType_e; + +struct seqDef_s; + +typedef struct seqDef_s seqDef; + +typedef struct { + seqDef *sequencesStart; + seqDef *sequences; + BYTE *litStart; + BYTE *lit; + BYTE *llCode; + BYTE *mlCode; + BYTE *ofCode; + size_t maxNbSeq; + size_t maxNbLit; + ZSTD_longLengthType_e longLengthType; + U32 longLengthPos; +} seqStore_t; + +typedef struct { + const BYTE *nextSrc; + const BYTE *base; + const BYTE *dictBase; + U32 dictLimit; + U32 lowLimit; + U32 nbOverflowCorrections; +} ZSTD_window_t; + +typedef struct { + U32 offset; + U32 checksum; +} ldmEntry_t; + +typedef struct { + const BYTE *split; + U32 hash; + U32 checksum; + ldmEntry_t *bucket; +} ldmMatchCandidate_t; + +typedef struct { + ZSTD_window_t window; + ldmEntry_t *hashTable; + U32 loadedDictEnd; + BYTE *bucketOffsets; + size_t splitIndices[64]; + ldmMatchCandidate_t matchCandidates[64]; +} ldmState_t; + +typedef struct { + U32 offset; + U32 litLength; + U32 matchLength; +} rawSeq; + +typedef struct { + rawSeq *seq; + size_t pos; + size_t posInSequence; + size_t size; + size_t capacity; +} rawSeqStore_t; + +typedef size_t HUF_CElt; + +typedef enum { + HUF_repeat_none = 0, + HUF_repeat_check = 1, + HUF_repeat_valid = 2, +} HUF_repeat; + +typedef struct { + HUF_CElt CTable[257]; + HUF_repeat repeatMode; +} ZSTD_hufCTables_t; + +typedef unsigned int FSE_CTable; + +typedef enum { + FSE_repeat_none = 0, + FSE_repeat_check = 1, + FSE_repeat_valid = 2, +} FSE_repeat; + +typedef struct { + FSE_CTable offcodeCTable[193]; + FSE_CTable matchlengthCTable[363]; + FSE_CTable litlengthCTable[329]; + FSE_repeat offcode_repeatMode; + FSE_repeat matchlength_repeatMode; + FSE_repeat litlength_repeatMode; +} ZSTD_fseCTables_t; + +typedef struct { + ZSTD_hufCTables_t huf; + ZSTD_fseCTables_t fse; +} ZSTD_entropyCTables_t; + +typedef struct { + ZSTD_entropyCTables_t entropy; + U32 rep[3]; +} ZSTD_compressedBlockState_t; + +typedef struct { + U32 off; + U32 len; +} ZSTD_match_t; + +typedef struct { + int price; + U32 off; + U32 mlen; + U32 litlen; + U32 rep[3]; +} ZSTD_optimal_t; + +typedef enum { + zop_dynamic = 0, + zop_predef = 1, +} ZSTD_OptPrice_e; + +typedef struct { + unsigned int *litFreq; + unsigned int *litLengthFreq; + unsigned int *matchLengthFreq; + unsigned int *offCodeFreq; + ZSTD_match_t *matchTable; + ZSTD_optimal_t *priceTable; + U32 litSum; + U32 litLengthSum; + U32 matchLengthSum; + U32 offCodeSum; + U32 litSumBasePrice; + U32 litLengthSumBasePrice; + U32 matchLengthSumBasePrice; + U32 offCodeSumBasePrice; + ZSTD_OptPrice_e priceType; + const ZSTD_entropyCTables_t *symbolCosts; + ZSTD_paramSwitch_e literalCompressionMode; +} optState_t; + +struct ZSTD_matchState_t; + +typedef struct ZSTD_matchState_t ZSTD_matchState_t; + +struct ZSTD_matchState_t { + ZSTD_window_t window; + U32 loadedDictEnd; + U32 nextToUpdate; + U32 hashLog3; + U32 rowHashLog; + U16 *tagTable; + U32 hashCache[8]; + U32 *hashTable; + U32 *hashTable3; + U32 *chainTable; + U32 forceNonContiguous; + int dedicatedDictSearch; + optState_t opt; + const ZSTD_matchState_t *dictMatchState; + ZSTD_compressionParameters cParams; + const rawSeqStore_t *ldmSeqStore; +}; + +typedef struct { + ZSTD_compressedBlockState_t *prevCBlock; + ZSTD_compressedBlockState_t *nextCBlock; + ZSTD_matchState_t matchState; +} ZSTD_blockState_t; + +typedef enum { + ZSTDb_not_buffered = 0, + ZSTDb_buffered = 1, +} ZSTD_buffered_policy_e; + +typedef enum { + zcss_init = 0, + zcss_load = 1, + zcss_flush = 2, +} ZSTD_cStreamStage; + +struct ZSTD_inBuffer_s { + const void *src; + size_t size; + size_t pos; +}; + +typedef struct ZSTD_inBuffer_s ZSTD_inBuffer; + +typedef enum { + ZSTD_dct_auto = 0, + ZSTD_dct_rawContent = 1, + ZSTD_dct_fullDict = 2, +} ZSTD_dictContentType_e; + +struct ZSTD_CDict_s; + +typedef struct ZSTD_CDict_s ZSTD_CDict; + +typedef struct { + void *dictBuffer; + const void *dict; + size_t dictSize; + ZSTD_dictContentType_e dictContentType; + ZSTD_CDict *cdict; +} ZSTD_localDict; + +struct ZSTD_prefixDict_s { + const void *dict; + size_t dictSize; + ZSTD_dictContentType_e dictContentType; +}; + +typedef struct ZSTD_prefixDict_s ZSTD_prefixDict; + +typedef enum { + set_basic = 0, + set_rle = 1, + set_compressed = 2, + set_repeat = 3, +} symbolEncodingType_e; + +typedef struct { + symbolEncodingType_e hType; + BYTE hufDesBuffer[128]; + size_t hufDesSize; +} ZSTD_hufCTablesMetadata_t; + +typedef struct { + symbolEncodingType_e llType; + symbolEncodingType_e ofType; + symbolEncodingType_e mlType; + BYTE fseTablesBuffer[133]; + size_t fseTablesSize; + size_t lastCountSize; +} ZSTD_fseCTablesMetadata_t; + +typedef struct { + ZSTD_hufCTablesMetadata_t hufMetadata; + ZSTD_fseCTablesMetadata_t fseMetadata; +} ZSTD_entropyCTablesMetadata_t; + +typedef struct { + seqStore_t fullSeqStoreChunk; + seqStore_t firstHalfSeqStore; + seqStore_t secondHalfSeqStore; + seqStore_t currSeqStore; + seqStore_t nextSeqStore; + U32 partitions[196]; + ZSTD_entropyCTablesMetadata_t entropyMetadata; +} ZSTD_blockSplitCtx; + +struct ZSTD_CCtx_s { + ZSTD_compressionStage_e stage; + int cParamsChanged; + int bmi2; + ZSTD_CCtx_params requestedParams; + ZSTD_CCtx_params appliedParams; + ZSTD_CCtx_params simpleApiParams; + U32 dictID; + size_t dictContentSize; + ZSTD_cwksp workspace; + size_t blockSize; + long long unsigned int pledgedSrcSizePlusOne; + long long unsigned int consumedSrcSize; + long long unsigned int producedCSize; + struct xxh64_state xxhState; + ZSTD_customMem customMem; + ZSTD_threadPool *pool; + size_t staticSize; + SeqCollector seqCollector; + int isFirstBlock; + int initialized; + seqStore_t seqStore; + ldmState_t ldmState; + rawSeq *ldmSequences; + size_t maxNbLdmSequences; + rawSeqStore_t externSeqStore; + ZSTD_blockState_t blockState; + U32 *entropyWorkspace; + ZSTD_buffered_policy_e bufferedPolicy; + char *inBuff; + size_t inBuffSize; + size_t inToCompress; + size_t inBuffPos; + size_t inBuffTarget; + char *outBuff; + size_t outBuffSize; + size_t outBuffContentSize; + size_t outBuffFlushedSize; + ZSTD_cStreamStage streamStage; + U32 frameEnded; + ZSTD_inBuffer expectedInBuffer; + size_t expectedOutBufferSize; + ZSTD_localDict localDict; + const ZSTD_CDict *cdict; + ZSTD_prefixDict prefixDict; + ZSTD_blockSplitCtx blockSplitCtx; +}; + +typedef struct ZSTD_CCtx_s ZSTD_CCtx; + +typedef struct { + U16 nextState; + BYTE nbAdditionalBits; + BYTE nbBits; + U32 baseValue; +} ZSTD_seqSymbol; + +typedef U32 HUF_DTable; + +typedef struct { + ZSTD_seqSymbol LLTable[513]; + ZSTD_seqSymbol OFTable[257]; + ZSTD_seqSymbol MLTable[513]; + HUF_DTable hufTable[4097]; + U32 rep[3]; + U32 workspace[157]; +} ZSTD_entropyDTables_t; + +typedef enum { + ZSTD_frame = 0, + ZSTD_skippableFrame = 1, +} ZSTD_frameType_e; + +typedef struct { + long long unsigned int frameContentSize; + long long unsigned int windowSize; + unsigned int blockSizeMax; + ZSTD_frameType_e frameType; + unsigned int headerSize; + unsigned int dictID; + unsigned int checksumFlag; +} ZSTD_frameHeader; + +typedef enum { + bt_raw = 0, + bt_rle = 1, + bt_compressed = 2, + bt_reserved = 3, +} blockType_e; + +typedef enum { + ZSTDds_getFrameHeaderSize = 0, + ZSTDds_decodeFrameHeader = 1, + ZSTDds_decodeBlockHeader = 2, + ZSTDds_decompressBlock = 3, + ZSTDds_decompressLastBlock = 4, + ZSTDds_checkChecksum = 5, + ZSTDds_decodeSkippableHeader = 6, + ZSTDds_skipFrame = 7, +} ZSTD_dStage; + +typedef enum { + ZSTD_d_validateChecksum = 0, + ZSTD_d_ignoreChecksum = 1, +} ZSTD_forceIgnoreChecksum_e; + +typedef enum { + ZSTD_use_indefinitely = -1, + ZSTD_dont_use = 0, + ZSTD_use_once = 1, +} ZSTD_dictUses_e; + +struct ZSTD_DDict_s; + +typedef struct ZSTD_DDict_s ZSTD_DDict; + +typedef struct { + const ZSTD_DDict **ddictPtrTable; + size_t ddictPtrTableSize; + size_t ddictPtrCount; +} ZSTD_DDictHashSet; + +typedef enum { + ZSTD_rmd_refSingleDDict = 0, + ZSTD_rmd_refMultipleDDicts = 1, +} ZSTD_refMultipleDDicts_e; + +typedef enum { + zdss_init = 0, + zdss_loadHeader = 1, + zdss_read = 2, + zdss_load = 3, + zdss_flush = 4, +} ZSTD_dStreamStage; + +struct ZSTD_outBuffer_s { + void *dst; + size_t size; + size_t pos; +}; + +typedef struct ZSTD_outBuffer_s ZSTD_outBuffer; + +typedef enum { + ZSTD_not_in_dst = 0, + ZSTD_in_dst = 1, + ZSTD_split = 2, +} ZSTD_litLocation_e; + +struct ZSTD_DCtx_s { + const ZSTD_seqSymbol *LLTptr; + const ZSTD_seqSymbol *MLTptr; + const ZSTD_seqSymbol *OFTptr; + const HUF_DTable *HUFptr; + ZSTD_entropyDTables_t entropy; + U32 workspace[640]; + const void *previousDstEnd; + const void *prefixStart; + const void *virtualStart; + const void *dictEnd; + size_t expected; + ZSTD_frameHeader fParams; + U64 processedCSize; + U64 decodedSize; + blockType_e bType; + ZSTD_dStage stage; + U32 litEntropy; + U32 fseEntropy; + struct xxh64_state xxhState; + size_t headerSize; + ZSTD_format_e format; + ZSTD_forceIgnoreChecksum_e forceIgnoreChecksum; + U32 validateChecksum; + const BYTE *litPtr; + ZSTD_customMem customMem; + size_t litSize; + size_t rleSize; + size_t staticSize; + ZSTD_DDict *ddictLocal; + const ZSTD_DDict *ddict; + U32 dictID; + int ddictIsCold; + ZSTD_dictUses_e dictUses; + ZSTD_DDictHashSet *ddictSet; + ZSTD_refMultipleDDicts_e refMultipleDDicts; + ZSTD_dStreamStage streamStage; + char *inBuff; + size_t inBuffSize; + size_t inPos; + size_t maxWindowSize; + char *outBuff; + size_t outBuffSize; + size_t outStart; + size_t outEnd; + size_t lhSize; + U32 hostageByte; + int noForwardProgress; + ZSTD_bufferMode_e outBufferMode; + ZSTD_outBuffer expectedOutBuffer; + BYTE *litBuffer; + const BYTE *litBufferEnd; + ZSTD_litLocation_e litBufferLocation; + BYTE litExtraBuffer[65568]; + BYTE headerBuffer[18]; + size_t oversizedDuration; +}; + +typedef struct ZSTD_DCtx_s ZSTD_DCtx; + +typedef ZSTD_CCtx ZSTD_CStream; + +typedef ZSTD_DCtx ZSTD_DStream; + +typedef struct { + ZSTD_compressionParameters cParams; + ZSTD_frameParameters fParams; +} ZSTD_parameters; + +typedef ZSTD_ErrorCode zstd_error_code; + +typedef ZSTD_compressionParameters zstd_compression_parameters; + +typedef ZSTD_parameters zstd_parameters; + +typedef ZSTD_inBuffer zstd_in_buffer; + +typedef ZSTD_outBuffer zstd_out_buffer; + +typedef ZSTD_CStream zstd_cstream; + +typedef ZSTD_DStream zstd_dstream; + +struct compressed_bio { + unsigned int nr_folios; + struct folio **compressed_folios; + u64 start; + unsigned int len; + unsigned int compressed_len; + u8 compress_type; + bool writeback; + union { + struct btrfs_bio *orig_bbio; + struct work_struct write_end_work; + }; + struct btrfs_bio bbio; +}; + +struct workspace_manager { + struct list_head idle_ws; + spinlock_t ws_lock; + int free_ws; + atomic_t total_ws; + wait_queue_head_t ws_wait; +}; + +struct btrfs_compress_op { + struct workspace_manager *workspace_manager; + unsigned int max_level; + unsigned int default_level; +}; + +struct workspace { + void *mem; + size_t size; + char *buf; + unsigned int level; + unsigned int req_level; + long unsigned int last_used; + struct list_head list; + struct list_head lru_list; + zstd_in_buffer in_buf; + zstd_out_buffer out_buf; +}; + +struct zstd_workspace_manager { + const struct btrfs_compress_op *ops; + spinlock_t lock; + struct list_head lru_list; + struct list_head idle_ws[15]; + long unsigned int active_map; + wait_queue_head_t wait; + struct timer_list timer; +}; + +struct ulist_iterator { + struct list_head *cur_list; +}; + +struct fsverity_descriptor { + __u8 version; + __u8 hash_algorithm; + __u8 log_blocksize; + __u8 salt_size; + __le32 sig_size; + __le64 data_size; + __u8 root_hash[64]; + __u8 salt[32]; + __u8 __reserved[144]; + __u8 signature[0]; +}; + +struct btrfs_stream_header { + char magic[13]; + __le32 version; +} __attribute__((packed)); + +struct btrfs_cmd_header { + __le32 len; + __le16 cmd; + __le32 crc; +} __attribute__((packed)); + +struct btrfs_tlv_header { + __le16 tlv_type; + __le16 tlv_len; +}; + +enum btrfs_send_cmd { + BTRFS_SEND_C_UNSPEC = 0, + BTRFS_SEND_C_SUBVOL = 1, + BTRFS_SEND_C_SNAPSHOT = 2, + BTRFS_SEND_C_MKFILE = 3, + BTRFS_SEND_C_MKDIR = 4, + BTRFS_SEND_C_MKNOD = 5, + BTRFS_SEND_C_MKFIFO = 6, + BTRFS_SEND_C_MKSOCK = 7, + BTRFS_SEND_C_SYMLINK = 8, + BTRFS_SEND_C_RENAME = 9, + BTRFS_SEND_C_LINK = 10, + BTRFS_SEND_C_UNLINK = 11, + BTRFS_SEND_C_RMDIR = 12, + BTRFS_SEND_C_SET_XATTR = 13, + BTRFS_SEND_C_REMOVE_XATTR = 14, + BTRFS_SEND_C_WRITE = 15, + BTRFS_SEND_C_CLONE = 16, + BTRFS_SEND_C_TRUNCATE = 17, + BTRFS_SEND_C_CHMOD = 18, + BTRFS_SEND_C_CHOWN = 19, + BTRFS_SEND_C_UTIMES = 20, + BTRFS_SEND_C_END = 21, + BTRFS_SEND_C_UPDATE_EXTENT = 22, + BTRFS_SEND_C_MAX_V1 = 22, + BTRFS_SEND_C_FALLOCATE = 23, + BTRFS_SEND_C_FILEATTR = 24, + BTRFS_SEND_C_ENCODED_WRITE = 25, + BTRFS_SEND_C_MAX_V2 = 25, + BTRFS_SEND_C_ENABLE_VERITY = 26, + BTRFS_SEND_C_MAX_V3 = 26, + BTRFS_SEND_C_MAX = 26, +}; + +enum { + BTRFS_SEND_A_UNSPEC = 0, + BTRFS_SEND_A_UUID = 1, + BTRFS_SEND_A_CTRANSID = 2, + BTRFS_SEND_A_INO = 3, + BTRFS_SEND_A_SIZE = 4, + BTRFS_SEND_A_MODE = 5, + BTRFS_SEND_A_UID = 6, + BTRFS_SEND_A_GID = 7, + BTRFS_SEND_A_RDEV = 8, + BTRFS_SEND_A_CTIME = 9, + BTRFS_SEND_A_MTIME = 10, + BTRFS_SEND_A_ATIME = 11, + BTRFS_SEND_A_OTIME = 12, + BTRFS_SEND_A_XATTR_NAME = 13, + BTRFS_SEND_A_XATTR_DATA = 14, + BTRFS_SEND_A_PATH = 15, + BTRFS_SEND_A_PATH_TO = 16, + BTRFS_SEND_A_PATH_LINK = 17, + BTRFS_SEND_A_FILE_OFFSET = 18, + BTRFS_SEND_A_DATA = 19, + BTRFS_SEND_A_CLONE_UUID = 20, + BTRFS_SEND_A_CLONE_CTRANSID = 21, + BTRFS_SEND_A_CLONE_PATH = 22, + BTRFS_SEND_A_CLONE_OFFSET = 23, + BTRFS_SEND_A_CLONE_LEN = 24, + BTRFS_SEND_A_MAX_V1 = 24, + BTRFS_SEND_A_FALLOCATE_MODE = 25, + BTRFS_SEND_A_FILEATTR = 26, + BTRFS_SEND_A_UNENCODED_FILE_LEN = 27, + BTRFS_SEND_A_UNENCODED_LEN = 28, + BTRFS_SEND_A_UNENCODED_OFFSET = 29, + BTRFS_SEND_A_COMPRESSION = 30, + BTRFS_SEND_A_ENCRYPTION = 31, + BTRFS_SEND_A_MAX_V2 = 31, + BTRFS_SEND_A_VERITY_ALGORITHM = 32, + BTRFS_SEND_A_VERITY_BLOCK_SIZE = 33, + BTRFS_SEND_A_VERITY_SALT_DATA = 34, + BTRFS_SEND_A_VERITY_SIG_DATA = 35, + BTRFS_SEND_A_MAX_V3 = 35, + __BTRFS_SEND_A_MAX = 35, +}; + +struct btrfs_key_ptr { + struct btrfs_disk_key key; + __le64 blockptr; + __le64 generation; +} __attribute__((packed)); + +struct btrfs_extent_item { + __le64 refs; + __le64 generation; + __le64 flags; +}; + +struct btrfs_inode_extref { + __le64 parent_objectid; + __le64 index; + __le16 name_len; + __u8 name[0]; +} __attribute__((packed)); + +enum { + EXTENT_BUFFER_UPTODATE = 0, + EXTENT_BUFFER_DIRTY = 1, + EXTENT_BUFFER_CORRUPT = 2, + EXTENT_BUFFER_READAHEAD = 3, + EXTENT_BUFFER_TREE_REF = 4, + EXTENT_BUFFER_STALE = 5, + EXTENT_BUFFER_WRITEBACK = 6, + EXTENT_BUFFER_READ_ERR = 7, + EXTENT_BUFFER_UNMAPPED = 8, + EXTENT_BUFFER_IN_TREE = 9, + EXTENT_BUFFER_WRITE_ERR = 10, + EXTENT_BUFFER_ZONED_ZEROOUT = 11, + EXTENT_BUFFER_READING = 12, +}; + +typedef int iterate_extent_inodes_t(u64, u64, u64, u64, void *); + +struct btrfs_backref_walk_ctx { + u64 bytenr; + u64 extent_item_pos; + bool ignore_extent_item_pos; + bool skip_inode_ref_list; + struct btrfs_trans_handle *trans; + struct btrfs_fs_info *fs_info; + u64 time_seq; + struct ulist *refs; + struct ulist *roots; + bool (*cache_lookup)(u64, void *, const u64 **, int *); + void (*cache_store)(u64, const struct ulist *, void *); + iterate_extent_inodes_t *indirect_ref_iterator; + int (*check_extent_item)(u64, const struct btrfs_extent_item *, const struct extent_buffer *, void *); + bool (*skip_data_ref)(u64, u64, u64, void *); + void *user_ctx; +}; + +struct btrfs_lru_cache_entry { + struct list_head lru_list; + u64 key; + u64 gen; + struct list_head list; +}; + +struct btrfs_lru_cache { + struct list_head lru_list; + struct maple_tree entries; + unsigned int size; + unsigned int max_size; +}; + +struct fs_path { + union { + struct { + char *start; + char *end; + char *buf; + short unsigned int buf_len: 15; + short unsigned int reversed: 1; + char inline_buf[0]; + }; + char pad[256]; + }; +}; + +struct clone_root { + struct btrfs_root *root; + u64 ino; + u64 offset; + u64 num_bytes; + bool found_ref; +}; + +struct backref_cache_entry { + struct btrfs_lru_cache_entry entry; + u64 root_ids[17]; + int num_roots; +}; + +struct send_ctx { + struct file *send_filp; + loff_t send_off; + char *send_buf; + u32 send_size; + u32 send_max_size; + bool put_data; + struct page **send_buf_pages; + u64 flags; + u32 proto; + struct btrfs_root *send_root; + struct btrfs_root *parent_root; + struct clone_root *clone_roots; + int clone_roots_cnt; + struct btrfs_path *left_path; + struct btrfs_path *right_path; + struct btrfs_key *cmp_key; + u64 last_reloc_trans; + u64 cur_ino; + u64 cur_inode_gen; + u64 cur_inode_size; + u64 cur_inode_mode; + u64 cur_inode_rdev; + u64 cur_inode_last_extent; + u64 cur_inode_next_write_offset; + struct fs_path cur_inode_path; + bool cur_inode_new; + bool cur_inode_new_gen; + bool cur_inode_deleted; + bool ignore_cur_inode; + bool cur_inode_needs_verity; + void *verity_descriptor; + u64 send_progress; + struct list_head new_refs; + struct list_head deleted_refs; + struct btrfs_lru_cache name_cache; + struct inode *cur_inode; + struct file_ra_state ra; + u64 page_cache_clear_start; + bool clean_page_cache; + struct rb_root pending_dir_moves; + struct rb_root waiting_dir_moves; + struct rb_root orphan_dirs; + struct rb_root rbtree_new_refs; + struct rb_root rbtree_deleted_refs; + struct btrfs_lru_cache backref_cache; + u64 backref_cache_last_reloc_trans; + struct btrfs_lru_cache dir_created_cache; + struct btrfs_lru_cache dir_utimes_cache; +}; + +struct pending_dir_move { + struct rb_node node; + struct list_head list; + u64 parent_ino; + u64 ino; + u64 gen; + struct list_head update_refs; +}; + +struct waiting_dir_move { + struct rb_node node; + u64 ino; + u64 rmdir_ino; + u64 rmdir_gen; + bool orphanized; +}; + +struct orphan_dir_info { + struct rb_node node; + u64 ino; + u64 gen; + u64 last_dir_index_offset; + u64 dir_high_seq_ino; +}; + +struct name_cache_entry { + struct btrfs_lru_cache_entry entry; + u64 parent_ino; + u64 parent_gen; + int ret; + int need_later_update; + int name_len; + char name[0]; +}; + +enum btrfs_compare_tree_result { + BTRFS_COMPARE_TREE_NEW = 0, + BTRFS_COMPARE_TREE_DELETED = 1, + BTRFS_COMPARE_TREE_CHANGED = 2, + BTRFS_COMPARE_TREE_SAME = 3, +}; + +struct btrfs_inode_info { + u64 size; + u64 gen; + u64 mode; + u64 uid; + u64 gid; + u64 rdev; + u64 fileattr; + u64 nlink; +}; + +typedef int (*iterate_inode_ref_t)(int, u64, int, struct fs_path *, void *); + +typedef int (*iterate_dir_item_t)(int, struct btrfs_key *, const char *, int, const char *, int, void *); + +struct backref_ctx { + struct send_ctx *sctx; + u64 found; + u64 cur_objectid; + u64 cur_offset; + u64 extent_len; + u64 bytenr; + u64 backref_owner; + u64 backref_offset; +}; + +enum inode_state { + inode_state_no_change = 0, + inode_state_will_create = 1, + inode_state_did_create = 2, + inode_state_will_delete = 3, + inode_state_did_delete = 4, +}; + +struct recorded_ref { + struct list_head list; + char *name; + struct fs_path *full_path; + u64 dir; + u64 dir_gen; + int name_len; + struct rb_node node; + struct rb_root *root; +}; + +struct find_xattr_ctx { + const char *name; + int name_len; + int found_idx; + char *found_data; + int found_data_len; +}; + +enum { + _DQUOT_USAGE_ENABLED = 0, + _DQUOT_LIMITS_ENABLED = 1, + _DQUOT_SUSPENDED = 2, + _DQUOT_STATE_FLAGS = 3, +}; + +enum stop_cp_reason { + STOP_CP_REASON_SHUTDOWN = 0, + STOP_CP_REASON_FAULT_INJECT = 1, + STOP_CP_REASON_META_PAGE = 2, + STOP_CP_REASON_WRITE_FAIL = 3, + STOP_CP_REASON_CORRUPTED_SUMMARY = 4, + STOP_CP_REASON_UPDATE_INODE = 5, + STOP_CP_REASON_FLUSH_FAIL = 6, + STOP_CP_REASON_NO_SEGMENT = 7, + STOP_CP_REASON_CORRUPTED_FREE_BITMAP = 8, + STOP_CP_REASON_MAX = 9, +}; + +struct f2fs_map_blocks { + struct block_device *m_bdev; + block_t m_pblk; + block_t m_lblk; + unsigned int m_len; + unsigned int m_flags; + long unsigned int *m_next_pgofs; + long unsigned int *m_next_extent; + int m_seg_type; + bool m_may_create; + bool m_multidev_dio; +}; + +enum cp_reason_type { + CP_NO_NEEDED = 0, + CP_NON_REGULAR = 1, + CP_COMPRESSED = 2, + CP_HARDLINK = 3, + CP_SB_NEED_CP = 4, + CP_WRONG_PINO = 5, + CP_NO_SPC_ROLL = 6, + CP_NODE_NEED_CP = 7, + CP_FASTBOOT_MODE = 8, + CP_SPEC_LOG_NUM = 9, + CP_RECOVER_DIR = 10, + CP_XATTR_DIR = 11, +}; + +struct f2fs_gc_control { + unsigned int victim_segno; + int init_gc_type; + bool no_bg_gc; + bool should_migrate_blocks; + bool err_gc_skipped; + bool one_time; + unsigned int nr_free_secs; +}; + +enum { + CP_TIME = 0, + REQ_TIME = 1, + DISCARD_TIME = 2, + GC_TIME = 3, + DISABLE_TIME = 4, + UMOUNT_DISCARD_TIMEOUT = 5, + MAX_TIME = 6, +}; + +enum { + GC_NORMAL = 0, + GC_IDLE_CB = 1, + GC_IDLE_GREEDY = 2, + GC_IDLE_AT = 3, + GC_URGENT_HIGH = 4, + GC_URGENT_LOW = 5, + GC_URGENT_MID = 6, + MAX_GC_MODE = 7, +}; + +enum { + BGGC_MODE_ON = 0, + BGGC_MODE_OFF = 1, + BGGC_MODE_SYNC = 2, +}; + +enum { + FS_MODE_ADAPTIVE = 0, + FS_MODE_LFS = 1, + FS_MODE_FRAGMENT_SEG = 2, + FS_MODE_FRAGMENT_BLK = 3, +}; + +enum { + ALLOC_MODE_DEFAULT = 0, + ALLOC_MODE_REUSE = 1, +}; + +enum fsync_mode { + FSYNC_MODE_POSIX = 0, + FSYNC_MODE_STRICT = 1, + FSYNC_MODE_NOBARRIER = 2, +}; + +enum { + COMPR_MODE_FS = 0, + COMPR_MODE_USER = 1, +}; + +enum { + DISCARD_UNIT_BLOCK = 0, + DISCARD_UNIT_SEGMENT = 1, + DISCARD_UNIT_SECTION = 2, +}; + +enum { + MEMORY_MODE_NORMAL = 0, + MEMORY_MODE_LOW = 1, +}; + +enum { + BACKGROUND = 0, + FOREGROUND = 1, + MAX_CALL_TYPE = 2, + TOTAL_CALL = 1, +}; + +enum compress_algorithm_type { + COMPRESS_LZO = 0, + COMPRESS_LZ4 = 1, + COMPRESS_ZSTD = 2, + COMPRESS_LZORLE = 3, + COMPRESS_MAX = 4, +}; + +struct f2fs_gc_kthread { + struct task_struct *f2fs_gc_task; + wait_queue_head_t gc_wait_queue_head; + unsigned int urgent_sleep_time; + unsigned int min_sleep_time; + unsigned int max_sleep_time; + unsigned int no_gc_sleep_time; + bool gc_wake; + wait_queue_head_t fggc_wq; + unsigned int no_zoned_gc_percent; + unsigned int boost_zoned_gc_percent; + unsigned int valid_thresh_ratio; +}; + +enum { + LFS = 0, + SSR = 1, + AT_SSR = 2, +}; + +enum { + GC_CB = 0, + GC_GREEDY = 1, + GC_AT = 2, + ALLOC_NEXT = 3, + FLUSH_DEVICE = 4, + MAX_GC_POLICY = 5, +}; + +struct victim_sel_policy { + int alloc_mode; + int gc_mode; + long unsigned int *dirty_bitmap; + unsigned int max_search; + unsigned int offset; + unsigned int ofs_unit; + unsigned int min_cost; + long long unsigned int oldest_age; + unsigned int min_segno; + long long unsigned int age; + long long unsigned int age_threshold; + bool one_time_gc; +}; + +enum dirty_type { + DIRTY_HOT_DATA = 0, + DIRTY_WARM_DATA = 1, + DIRTY_COLD_DATA = 2, + DIRTY_HOT_NODE = 3, + DIRTY_WARM_NODE = 4, + DIRTY_COLD_NODE = 5, + DIRTY = 6, + PRE = 7, + NR_DIRTY_TYPE = 8, +}; + +enum { + F2FS_IPU_FORCE = 0, + F2FS_IPU_SSR = 1, + F2FS_IPU_UTIL = 2, + F2FS_IPU_SSR_UTIL = 3, + F2FS_IPU_FSYNC = 4, + F2FS_IPU_ASYNC = 5, + F2FS_IPU_NOCACHE = 6, + F2FS_IPU_HONOR_OPU_WRITE = 7, + F2FS_IPU_MAX = 8, +}; + +enum iostat_lat_type { + READ_IO = 0, + WRITE_SYNC_IO = 1, + WRITE_ASYNC_IO = 2, + MAX_IO_TYPE = 3, +}; + +struct f2fs_iostat_latency { + unsigned int peak_lat; + unsigned int avg_lat; + unsigned int cnt; +}; + +struct trace_event_raw_f2fs__inode { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ino_t pino; + umode_t mode; + loff_t size; + unsigned int nlink; + blkcnt_t blocks; + __u8 advise; + char __data[0]; +}; + +struct trace_event_raw_f2fs__inode_exit { + struct trace_entry ent; + dev_t dev; + ino_t ino; + umode_t mode; + int ret; + char __data[0]; +}; + +struct trace_event_raw_f2fs_sync_file_exit { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int cp_reason; + int datasync; + int ret; + char __data[0]; +}; + +struct trace_event_raw_f2fs_sync_fs { + struct trace_entry ent; + dev_t dev; + int dirty; + int wait; + char __data[0]; +}; + +struct trace_event_raw_f2fs_unlink_enter { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t size; + blkcnt_t blocks; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_f2fs_truncate_data_blocks_range { + struct trace_entry ent; + dev_t dev; + ino_t ino; + nid_t nid; + unsigned int ofs; + int free; + char __data[0]; +}; + +struct trace_event_raw_f2fs__truncate_op { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t size; + blkcnt_t blocks; + u64 from; + char __data[0]; +}; + +struct trace_event_raw_f2fs__truncate_node { + struct trace_entry ent; + dev_t dev; + ino_t ino; + nid_t nid; + block_t blk_addr; + char __data[0]; +}; + +struct trace_event_raw_f2fs_truncate_partial_nodes { + struct trace_entry ent; + dev_t dev; + ino_t ino; + nid_t nid[3]; + int depth; + int err; + char __data[0]; +}; + +struct trace_event_raw_f2fs_file_write_iter { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t offset; + size_t length; + ssize_t ret; + char __data[0]; +}; + +struct trace_event_raw_f2fs_map_blocks { + struct trace_entry ent; + dev_t dev; + ino_t ino; + block_t m_lblk; + block_t m_pblk; + unsigned int m_len; + unsigned int m_flags; + int m_seg_type; + bool m_may_create; + bool m_multidev_dio; + int flag; + int ret; + char __data[0]; +}; + +struct trace_event_raw_f2fs_background_gc { + struct trace_entry ent; + dev_t dev; + unsigned int wait_ms; + unsigned int prefree; + unsigned int free; + char __data[0]; +}; + +struct trace_event_raw_f2fs_gc_begin { + struct trace_entry ent; + dev_t dev; + int gc_type; + bool no_bg_gc; + unsigned int nr_free_secs; + long long int dirty_nodes; + long long int dirty_dents; + long long int dirty_imeta; + unsigned int free_sec; + unsigned int free_seg; + int reserved_seg; + unsigned int prefree_seg; + char __data[0]; +}; + +struct trace_event_raw_f2fs_gc_end { + struct trace_entry ent; + dev_t dev; + int ret; + int seg_freed; + int sec_freed; + long long int dirty_nodes; + long long int dirty_dents; + long long int dirty_imeta; + unsigned int free_sec; + unsigned int free_seg; + int reserved_seg; + unsigned int prefree_seg; + char __data[0]; +}; + +struct trace_event_raw_f2fs_get_victim { + struct trace_entry ent; + dev_t dev; + int type; + int gc_type; + int alloc_mode; + int gc_mode; + unsigned int victim; + unsigned int cost; + unsigned int ofs_unit; + unsigned int pre_victim; + unsigned int prefree; + unsigned int free; + char __data[0]; +}; + +struct trace_event_raw_f2fs_lookup_start { + struct trace_entry ent; + dev_t dev; + ino_t ino; + u32 __data_loc_name; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_f2fs_lookup_end { + struct trace_entry ent; + dev_t dev; + ino_t ino; + u32 __data_loc_name; + nid_t cino; + int err; + char __data[0]; +}; + +struct trace_event_raw_f2fs_rename_start { + struct trace_entry ent; + dev_t dev; + ino_t ino; + u32 __data_loc_old_name; + ino_t new_pino; + u32 __data_loc_new_name; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_f2fs_rename_end { + struct trace_entry ent; + dev_t dev; + ino_t ino; + u32 __data_loc_old_name; + u32 __data_loc_new_name; + unsigned int flags; + int ret; + char __data[0]; +}; + +struct trace_event_raw_f2fs_readdir { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t start; + loff_t end; + int err; + char __data[0]; +}; + +struct trace_event_raw_f2fs_fallocate { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int mode; + loff_t offset; + loff_t len; + loff_t size; + blkcnt_t blocks; + int ret; + char __data[0]; +}; + +struct trace_event_raw_f2fs_direct_IO_enter { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t ki_pos; + int ki_flags; + u16 ki_ioprio; + long unsigned int len; + int rw; + char __data[0]; +}; + +struct trace_event_raw_f2fs_direct_IO_exit { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t pos; + long unsigned int len; + int rw; + int ret; + char __data[0]; +}; + +struct trace_event_raw_f2fs_reserve_new_blocks { + struct trace_entry ent; + dev_t dev; + nid_t nid; + unsigned int ofs_in_node; + blkcnt_t count; + char __data[0]; +}; + +struct trace_event_raw_f2fs__submit_page_bio { + struct trace_entry ent; + dev_t dev; + ino_t ino; + long unsigned int index; + block_t old_blkaddr; + block_t new_blkaddr; + enum req_op op; + blk_opf_t op_flags; + int temp; + int type; + char __data[0]; +}; + +struct trace_event_raw_f2fs__bio { + struct trace_entry ent; + dev_t dev; + dev_t target; + enum req_op op; + blk_opf_t op_flags; + int type; + sector_t sector; + unsigned int size; + char __data[0]; +}; + +struct trace_event_raw_f2fs_write_begin { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t pos; + unsigned int len; + char __data[0]; +}; + +struct trace_event_raw_f2fs_write_end { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t pos; + unsigned int len; + unsigned int copied; + char __data[0]; +}; + +struct trace_event_raw_f2fs__folio { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int type; + int dir; + long unsigned int index; + int dirty; + int uptodate; + char __data[0]; +}; + +struct trace_event_raw_f2fs_replace_atomic_write_block { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ino_t cow_ino; + long unsigned int index; + block_t old_addr; + block_t new_addr; + bool recovery; + char __data[0]; +}; + +struct trace_event_raw_f2fs_mmap { + struct trace_entry ent; + dev_t dev; + ino_t ino; + long unsigned int index; + vm_flags_t flags; + vm_fault_t ret; + char __data[0]; +}; + +struct trace_event_raw_f2fs_writepages { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int type; + int dir; + long int nr_to_write; + long int pages_skipped; + loff_t range_start; + loff_t range_end; + long unsigned int writeback_index; + int sync_mode; + char for_kupdate; + char for_background; + char tagged_writepages; + char for_reclaim; + char range_cyclic; + char for_sync; + char __data[0]; +}; + +struct trace_event_raw_f2fs_readpages { + struct trace_entry ent; + dev_t dev; + ino_t ino; + long unsigned int start; + unsigned int nrpage; + char __data[0]; +}; + +struct trace_event_raw_f2fs_write_checkpoint { + struct trace_entry ent; + dev_t dev; + int reason; + u32 __data_loc_dest_msg; + char __data[0]; +}; + +struct trace_event_raw_f2fs_discard { + struct trace_entry ent; + dev_t dev; + block_t blkstart; + block_t blklen; + char __data[0]; +}; + +struct trace_event_raw_f2fs_reset_zone { + struct trace_entry ent; + dev_t dev; + block_t blkstart; + char __data[0]; +}; + +struct trace_event_raw_f2fs_issue_flush { + struct trace_entry ent; + dev_t dev; + unsigned int nobarrier; + unsigned int flush_merge; + int ret; + char __data[0]; +}; + +struct trace_event_raw_f2fs_lookup_extent_tree_start { + struct trace_entry ent; + dev_t dev; + ino_t ino; + unsigned int pgofs; + enum extent_type type; + char __data[0]; +}; + +struct trace_event_raw_f2fs_lookup_read_extent_tree_end { + struct trace_entry ent; + dev_t dev; + ino_t ino; + unsigned int pgofs; + unsigned int fofs; + unsigned int len; + u32 blk; + char __data[0]; +}; + +struct trace_event_raw_f2fs_lookup_age_extent_tree_end { + struct trace_entry ent; + dev_t dev; + ino_t ino; + unsigned int pgofs; + unsigned int fofs; + unsigned int len; + long long unsigned int age; + long long unsigned int blocks; + char __data[0]; +}; + +struct trace_event_raw_f2fs_update_read_extent_tree_range { + struct trace_entry ent; + dev_t dev; + ino_t ino; + unsigned int pgofs; + u32 blk; + unsigned int len; + unsigned int c_len; + char __data[0]; +}; + +struct trace_event_raw_f2fs_update_age_extent_tree_range { + struct trace_entry ent; + dev_t dev; + ino_t ino; + unsigned int pgofs; + unsigned int len; + long long unsigned int age; + long long unsigned int blocks; + char __data[0]; +}; + +struct trace_event_raw_f2fs_shrink_extent_tree { + struct trace_entry ent; + dev_t dev; + unsigned int node_cnt; + unsigned int tree_cnt; + enum extent_type type; + char __data[0]; +}; + +struct trace_event_raw_f2fs_destroy_extent_tree { + struct trace_entry ent; + dev_t dev; + ino_t ino; + unsigned int node_cnt; + enum extent_type type; + char __data[0]; +}; + +struct trace_event_raw_f2fs_sync_dirty_inodes { + struct trace_entry ent; + dev_t dev; + int type; + s64 count; + char __data[0]; +}; + +struct trace_event_raw_f2fs_shutdown { + struct trace_entry ent; + dev_t dev; + unsigned int mode; + int ret; + char __data[0]; +}; + +struct trace_event_raw_f2fs_zip_start { + struct trace_entry ent; + dev_t dev; + ino_t ino; + long unsigned int idx; + unsigned int size; + unsigned int algtype; + char __data[0]; +}; + +struct trace_event_raw_f2fs_zip_end { + struct trace_entry ent; + dev_t dev; + ino_t ino; + long unsigned int idx; + unsigned int size; + unsigned int ret; + char __data[0]; +}; + +struct trace_event_raw_f2fs_iostat { + struct trace_entry ent; + dev_t dev; + long long unsigned int app_dio; + long long unsigned int app_bio; + long long unsigned int app_wio; + long long unsigned int app_mio; + long long unsigned int app_bcdio; + long long unsigned int app_mcdio; + long long unsigned int fs_dio; + long long unsigned int fs_cdio; + long long unsigned int fs_nio; + long long unsigned int fs_mio; + long long unsigned int fs_gc_dio; + long long unsigned int fs_gc_nio; + long long unsigned int fs_cp_dio; + long long unsigned int fs_cp_nio; + long long unsigned int fs_cp_mio; + long long unsigned int app_drio; + long long unsigned int app_brio; + long long unsigned int app_rio; + long long unsigned int app_mrio; + long long unsigned int app_bcrio; + long long unsigned int app_mcrio; + long long unsigned int fs_drio; + long long unsigned int fs_gdrio; + long long unsigned int fs_cdrio; + long long unsigned int fs_nrio; + long long unsigned int fs_mrio; + long long unsigned int fs_discard; + long long unsigned int fs_reset_zone; + char __data[0]; +}; + +struct trace_event_raw_f2fs_iostat_latency { + struct trace_entry ent; + dev_t dev; + unsigned int d_rd_peak; + unsigned int d_rd_avg; + unsigned int d_rd_cnt; + unsigned int n_rd_peak; + unsigned int n_rd_avg; + unsigned int n_rd_cnt; + unsigned int m_rd_peak; + unsigned int m_rd_avg; + unsigned int m_rd_cnt; + unsigned int d_wr_s_peak; + unsigned int d_wr_s_avg; + unsigned int d_wr_s_cnt; + unsigned int n_wr_s_peak; + unsigned int n_wr_s_avg; + unsigned int n_wr_s_cnt; + unsigned int m_wr_s_peak; + unsigned int m_wr_s_avg; + unsigned int m_wr_s_cnt; + unsigned int d_wr_as_peak; + unsigned int d_wr_as_avg; + unsigned int d_wr_as_cnt; + unsigned int n_wr_as_peak; + unsigned int n_wr_as_avg; + unsigned int n_wr_as_cnt; + unsigned int m_wr_as_peak; + unsigned int m_wr_as_avg; + unsigned int m_wr_as_cnt; + char __data[0]; +}; + +struct trace_event_raw_f2fs_bmap { + struct trace_entry ent; + dev_t dev; + ino_t ino; + sector_t lblock; + sector_t pblock; + char __data[0]; +}; + +struct trace_event_raw_f2fs_fiemap { + struct trace_entry ent; + dev_t dev; + ino_t ino; + sector_t lblock; + sector_t pblock; + long long unsigned int len; + unsigned int flags; + int ret; + char __data[0]; +}; + +struct trace_event_raw_f2fs__rw_start { + struct trace_entry ent; + u32 __data_loc_pathbuf; + loff_t offset; + int bytes; + loff_t i_size; + u32 __data_loc_cmdline; + pid_t pid; + ino_t ino; + char __data[0]; +}; + +struct trace_event_raw_f2fs__rw_end { + struct trace_entry ent; + ino_t ino; + loff_t offset; + int bytes; + char __data[0]; +}; + +struct trace_event_data_offsets_f2fs__inode {}; + +struct trace_event_data_offsets_f2fs__inode_exit {}; + +struct trace_event_data_offsets_f2fs_sync_file_exit {}; + +struct trace_event_data_offsets_f2fs_sync_fs {}; + +struct trace_event_data_offsets_f2fs_unlink_enter { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_f2fs_truncate_data_blocks_range {}; + +struct trace_event_data_offsets_f2fs__truncate_op {}; + +struct trace_event_data_offsets_f2fs__truncate_node {}; + +struct trace_event_data_offsets_f2fs_truncate_partial_nodes {}; + +struct trace_event_data_offsets_f2fs_file_write_iter {}; + +struct trace_event_data_offsets_f2fs_map_blocks {}; + +struct trace_event_data_offsets_f2fs_background_gc {}; + +struct trace_event_data_offsets_f2fs_gc_begin {}; + +struct trace_event_data_offsets_f2fs_gc_end {}; + +struct trace_event_data_offsets_f2fs_get_victim {}; + +struct trace_event_data_offsets_f2fs_lookup_start { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_f2fs_lookup_end { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_f2fs_rename_start { + u32 old_name; + const void *old_name_ptr_; + u32 new_name; + const void *new_name_ptr_; +}; + +struct trace_event_data_offsets_f2fs_rename_end { + u32 old_name; + const void *old_name_ptr_; + u32 new_name; + const void *new_name_ptr_; +}; + +struct trace_event_data_offsets_f2fs_readdir {}; + +struct trace_event_data_offsets_f2fs_fallocate {}; + +struct trace_event_data_offsets_f2fs_direct_IO_enter {}; + +struct trace_event_data_offsets_f2fs_direct_IO_exit {}; + +struct trace_event_data_offsets_f2fs_reserve_new_blocks {}; + +struct trace_event_data_offsets_f2fs__submit_page_bio {}; + +struct trace_event_data_offsets_f2fs__bio {}; + +struct trace_event_data_offsets_f2fs_write_begin {}; + +struct trace_event_data_offsets_f2fs_write_end {}; + +struct trace_event_data_offsets_f2fs__folio {}; + +struct trace_event_data_offsets_f2fs_replace_atomic_write_block {}; + +struct trace_event_data_offsets_f2fs_mmap {}; + +struct trace_event_data_offsets_f2fs_writepages {}; + +struct trace_event_data_offsets_f2fs_readpages {}; + +struct trace_event_data_offsets_f2fs_write_checkpoint { + u32 dest_msg; + const void *dest_msg_ptr_; +}; + +struct trace_event_data_offsets_f2fs_discard {}; + +struct trace_event_data_offsets_f2fs_reset_zone {}; + +struct trace_event_data_offsets_f2fs_issue_flush {}; + +struct trace_event_data_offsets_f2fs_lookup_extent_tree_start {}; + +struct trace_event_data_offsets_f2fs_lookup_read_extent_tree_end {}; + +struct trace_event_data_offsets_f2fs_lookup_age_extent_tree_end {}; + +struct trace_event_data_offsets_f2fs_update_read_extent_tree_range {}; + +struct trace_event_data_offsets_f2fs_update_age_extent_tree_range {}; + +struct trace_event_data_offsets_f2fs_shrink_extent_tree {}; + +struct trace_event_data_offsets_f2fs_destroy_extent_tree {}; + +struct trace_event_data_offsets_f2fs_sync_dirty_inodes {}; + +struct trace_event_data_offsets_f2fs_shutdown {}; + +struct trace_event_data_offsets_f2fs_zip_start {}; + +struct trace_event_data_offsets_f2fs_zip_end {}; + +struct trace_event_data_offsets_f2fs_iostat {}; + +struct trace_event_data_offsets_f2fs_iostat_latency {}; + +struct trace_event_data_offsets_f2fs_bmap {}; + +struct trace_event_data_offsets_f2fs_fiemap {}; + +struct trace_event_data_offsets_f2fs__rw_start { + u32 pathbuf; + const void *pathbuf_ptr_; + u32 cmdline; + const void *cmdline_ptr_; +}; + +struct trace_event_data_offsets_f2fs__rw_end {}; + +typedef void (*btf_trace_f2fs_sync_file_enter)(void *, struct inode *); + +typedef void (*btf_trace_f2fs_sync_file_exit)(void *, struct inode *, int, int, int); + +typedef void (*btf_trace_f2fs_sync_fs)(void *, struct super_block *, int); + +typedef void (*btf_trace_f2fs_iget)(void *, struct inode *); + +typedef void (*btf_trace_f2fs_iget_exit)(void *, struct inode *, int); + +typedef void (*btf_trace_f2fs_evict_inode)(void *, struct inode *); + +typedef void (*btf_trace_f2fs_new_inode)(void *, struct inode *, int); + +typedef void (*btf_trace_f2fs_unlink_enter)(void *, struct inode *, struct dentry *); + +typedef void (*btf_trace_f2fs_unlink_exit)(void *, struct inode *, int); + +typedef void (*btf_trace_f2fs_drop_inode)(void *, struct inode *, int); + +typedef void (*btf_trace_f2fs_truncate)(void *, struct inode *); + +typedef void (*btf_trace_f2fs_truncate_data_blocks_range)(void *, struct inode *, nid_t, unsigned int, int); + +typedef void (*btf_trace_f2fs_truncate_blocks_enter)(void *, struct inode *, u64); + +typedef void (*btf_trace_f2fs_truncate_blocks_exit)(void *, struct inode *, int); + +typedef void (*btf_trace_f2fs_truncate_inode_blocks_enter)(void *, struct inode *, u64); + +typedef void (*btf_trace_f2fs_truncate_inode_blocks_exit)(void *, struct inode *, int); + +typedef void (*btf_trace_f2fs_truncate_nodes_enter)(void *, struct inode *, nid_t, block_t); + +typedef void (*btf_trace_f2fs_truncate_nodes_exit)(void *, struct inode *, int); + +typedef void (*btf_trace_f2fs_truncate_node)(void *, struct inode *, nid_t, block_t); + +typedef void (*btf_trace_f2fs_truncate_partial_nodes)(void *, struct inode *, nid_t *, int, int); + +typedef void (*btf_trace_f2fs_file_write_iter)(void *, struct inode *, loff_t, size_t, ssize_t); + +typedef void (*btf_trace_f2fs_map_blocks)(void *, struct inode *, struct f2fs_map_blocks *, int, int); + +typedef void (*btf_trace_f2fs_background_gc)(void *, struct super_block *, unsigned int, unsigned int, unsigned int); + +typedef void (*btf_trace_f2fs_gc_begin)(void *, struct super_block *, int, bool, unsigned int, long long int, long long int, long long int, unsigned int, unsigned int, int, unsigned int); + +typedef void (*btf_trace_f2fs_gc_end)(void *, struct super_block *, int, int, int, long long int, long long int, long long int, unsigned int, unsigned int, int, unsigned int); + +typedef void (*btf_trace_f2fs_get_victim)(void *, struct super_block *, int, int, struct victim_sel_policy *, unsigned int, unsigned int, unsigned int); + +typedef void (*btf_trace_f2fs_lookup_start)(void *, struct inode *, struct dentry *, unsigned int); + +typedef void (*btf_trace_f2fs_lookup_end)(void *, struct inode *, struct dentry *, nid_t, int); + +typedef void (*btf_trace_f2fs_rename_start)(void *, struct inode *, struct dentry *, struct inode *, struct dentry *, unsigned int); + +typedef void (*btf_trace_f2fs_rename_end)(void *, struct dentry *, struct dentry *, unsigned int, int); + +typedef void (*btf_trace_f2fs_readdir)(void *, struct inode *, loff_t, loff_t, int); + +typedef void (*btf_trace_f2fs_fallocate)(void *, struct inode *, int, loff_t, loff_t, int); + +typedef void (*btf_trace_f2fs_direct_IO_enter)(void *, struct inode *, struct kiocb *, long int, int); + +typedef void (*btf_trace_f2fs_direct_IO_exit)(void *, struct inode *, loff_t, long unsigned int, int, int); + +typedef void (*btf_trace_f2fs_reserve_new_blocks)(void *, struct inode *, nid_t, unsigned int, blkcnt_t); + +typedef void (*btf_trace_f2fs_submit_page_bio)(void *, struct page *, struct f2fs_io_info *); + +typedef void (*btf_trace_f2fs_submit_page_write)(void *, struct page *, struct f2fs_io_info *); + +typedef void (*btf_trace_f2fs_prepare_write_bio)(void *, struct super_block *, int, struct bio *); + +typedef void (*btf_trace_f2fs_prepare_read_bio)(void *, struct super_block *, int, struct bio *); + +typedef void (*btf_trace_f2fs_submit_read_bio)(void *, struct super_block *, int, struct bio *); + +typedef void (*btf_trace_f2fs_submit_write_bio)(void *, struct super_block *, int, struct bio *); + +typedef void (*btf_trace_f2fs_write_begin)(void *, struct inode *, loff_t, unsigned int); + +typedef void (*btf_trace_f2fs_write_end)(void *, struct inode *, loff_t, unsigned int, unsigned int); + +typedef void (*btf_trace_f2fs_writepage)(void *, struct folio *, int); + +typedef void (*btf_trace_f2fs_do_write_data_page)(void *, struct folio *, int); + +typedef void (*btf_trace_f2fs_readpage)(void *, struct folio *, int); + +typedef void (*btf_trace_f2fs_set_page_dirty)(void *, struct folio *, int); + +typedef void (*btf_trace_f2fs_replace_atomic_write_block)(void *, struct inode *, struct inode *, long unsigned int, block_t, block_t, bool); + +typedef void (*btf_trace_f2fs_filemap_fault)(void *, struct inode *, long unsigned int, vm_flags_t, vm_fault_t); + +typedef void (*btf_trace_f2fs_vm_page_mkwrite)(void *, struct inode *, long unsigned int, vm_flags_t, vm_fault_t); + +typedef void (*btf_trace_f2fs_writepages)(void *, struct inode *, struct writeback_control *, int); + +typedef void (*btf_trace_f2fs_readpages)(void *, struct inode *, long unsigned int, unsigned int); + +typedef void (*btf_trace_f2fs_write_checkpoint)(void *, struct super_block *, int, const char *); + +typedef void (*btf_trace_f2fs_queue_discard)(void *, struct block_device *, block_t, block_t); + +typedef void (*btf_trace_f2fs_issue_discard)(void *, struct block_device *, block_t, block_t); + +typedef void (*btf_trace_f2fs_remove_discard)(void *, struct block_device *, block_t, block_t); + +typedef void (*btf_trace_f2fs_queue_reset_zone)(void *, struct block_device *, block_t); + +typedef void (*btf_trace_f2fs_issue_reset_zone)(void *, struct block_device *, block_t); + +typedef void (*btf_trace_f2fs_issue_flush)(void *, struct block_device *, unsigned int, unsigned int, int); + +typedef void (*btf_trace_f2fs_lookup_extent_tree_start)(void *, struct inode *, unsigned int, enum extent_type); + +typedef void (*btf_trace_f2fs_lookup_read_extent_tree_end)(void *, struct inode *, unsigned int, struct extent_info *); + +typedef void (*btf_trace_f2fs_lookup_age_extent_tree_end)(void *, struct inode *, unsigned int, struct extent_info *); + +typedef void (*btf_trace_f2fs_update_read_extent_tree_range)(void *, struct inode *, unsigned int, unsigned int, block_t, unsigned int); + +typedef void (*btf_trace_f2fs_update_age_extent_tree_range)(void *, struct inode *, unsigned int, unsigned int, long long unsigned int, long long unsigned int); + +typedef void (*btf_trace_f2fs_shrink_extent_tree)(void *, struct f2fs_sb_info *, unsigned int, unsigned int, enum extent_type); + +typedef void (*btf_trace_f2fs_destroy_extent_tree)(void *, struct inode *, unsigned int, enum extent_type); + +typedef void (*btf_trace_f2fs_sync_dirty_inodes_enter)(void *, struct super_block *, int, s64); + +typedef void (*btf_trace_f2fs_sync_dirty_inodes_exit)(void *, struct super_block *, int, s64); + +typedef void (*btf_trace_f2fs_shutdown)(void *, struct f2fs_sb_info *, unsigned int, int); + +typedef void (*btf_trace_f2fs_compress_pages_start)(void *, struct inode *, long unsigned int, unsigned int, unsigned char); + +typedef void (*btf_trace_f2fs_decompress_pages_start)(void *, struct inode *, long unsigned int, unsigned int, unsigned char); + +typedef void (*btf_trace_f2fs_compress_pages_end)(void *, struct inode *, long unsigned int, unsigned int, int); + +typedef void (*btf_trace_f2fs_decompress_pages_end)(void *, struct inode *, long unsigned int, unsigned int, int); + +typedef void (*btf_trace_f2fs_iostat)(void *, struct f2fs_sb_info *, long long unsigned int *); + +typedef void (*btf_trace_f2fs_iostat_latency)(void *, struct f2fs_sb_info *, struct f2fs_iostat_latency(*)[3]); + +typedef void (*btf_trace_f2fs_bmap)(void *, struct inode *, sector_t, sector_t); + +typedef void (*btf_trace_f2fs_fiemap)(void *, struct inode *, sector_t, sector_t, long long unsigned int, unsigned int, int); + +typedef void (*btf_trace_f2fs_dataread_start)(void *, struct inode *, loff_t, int, pid_t, char *, char *); + +typedef void (*btf_trace_f2fs_dataread_end)(void *, struct inode *, loff_t, int); + +typedef void (*btf_trace_f2fs_datawrite_start)(void *, struct inode *, loff_t, int, pid_t, char *, char *); + +typedef void (*btf_trace_f2fs_datawrite_end)(void *, struct inode *, loff_t, int); + +enum { + Opt_gc_background = 0, + Opt_disable_roll_forward = 1, + Opt_norecovery___2 = 2, + Opt_discard___3 = 3, + Opt_nodiscard___2 = 4, + Opt_noheap = 5, + Opt_heap = 6, + Opt_user_xattr___2 = 7, + Opt_nouser_xattr = 8, + Opt_acl___2 = 9, + Opt_noacl = 10, + Opt_active_logs = 11, + Opt_disable_ext_identify = 12, + Opt_inline_xattr = 13, + Opt_noinline_xattr = 14, + Opt_inline_xattr_size = 15, + Opt_inline_data = 16, + Opt_inline_dentry = 17, + Opt_noinline_dentry = 18, + Opt_flush_merge = 19, + Opt_noflush_merge = 20, + Opt_barrier = 21, + Opt_nobarrier = 22, + Opt_fastboot = 23, + Opt_extent_cache = 24, + Opt_noextent_cache = 25, + Opt_noinline_data = 26, + Opt_data_flush = 27, + Opt_reserve_root = 28, + Opt_resgid = 29, + Opt_resuid = 30, + Opt_mode___2 = 31, + Opt_fault_injection = 32, + Opt_fault_type = 33, + Opt_lazytime = 34, + Opt_nolazytime = 35, + Opt_quota___2 = 36, + Opt_noquota___2 = 37, + Opt_usrquota___2 = 38, + Opt_grpquota___2 = 39, + Opt_prjquota___2 = 40, + Opt_usrjquota = 41, + Opt_grpjquota = 42, + Opt_prjjquota = 43, + Opt_offusrjquota = 44, + Opt_offgrpjquota = 45, + Opt_offprjjquota = 46, + Opt_jqfmt_vfsold = 47, + Opt_jqfmt_vfsv0 = 48, + Opt_jqfmt_vfsv1 = 49, + Opt_alloc = 50, + Opt_fsync = 51, + Opt_test_dummy_encryption = 52, + Opt_inlinecrypt = 53, + Opt_checkpoint_disable = 54, + Opt_checkpoint_disable_cap = 55, + Opt_checkpoint_disable_cap_perc = 56, + Opt_checkpoint_enable = 57, + Opt_checkpoint_merge = 58, + Opt_nocheckpoint_merge = 59, + Opt_compress_algorithm = 60, + Opt_compress_log_size = 61, + Opt_compress_extension = 62, + Opt_nocompress_extension = 63, + Opt_compress_chksum = 64, + Opt_compress_mode = 65, + Opt_compress_cache = 66, + Opt_atgc = 67, + Opt_gc_merge = 68, + Opt_nogc_merge = 69, + Opt_discard_unit = 70, + Opt_memory_mode = 71, + Opt_age_extent_cache = 72, + Opt_errors___2 = 73, + Opt_err___3 = 74, +}; + +struct ecryptfs_session_key { + u32 flags; + u32 encrypted_key_size; + u32 decrypted_key_size; + u8 encrypted_key[512]; + u8 decrypted_key[64]; +}; + +struct ecryptfs_password { + u32 password_bytes; + s32 hash_algo; + u32 hash_iterations; + u32 session_key_encryption_key_bytes; + u32 flags; + u8 session_key_encryption_key[64]; + u8 signature[17]; + u8 salt[8]; +}; + +struct ecryptfs_private_key { + u32 key_size; + u32 data_len; + u8 signature[17]; + char pki_type[17]; + u8 data[0]; +}; + +struct ecryptfs_auth_tok { + u16 version; + u16 token_type; + u32 flags; + struct ecryptfs_session_key session_key; + u8 reserved[32]; + union { + struct ecryptfs_password password; + struct ecryptfs_private_key private_key; + } token; +}; + +enum { + Opt_new = 0, + Opt_load = 1, + Opt_update = 2, + Opt_err___4 = 3, +}; + +enum { + Opt_default = 0, + Opt_ecryptfs = 1, + Opt_enc32 = 2, + Opt_error = 3, +}; + +enum derived_key_type { + ENC_KEY = 0, + AUTH_KEY = 1, +}; + +enum { + CRYPTO_KPP_SECRET_TYPE_UNKNOWN = 0, + CRYPTO_KPP_SECRET_TYPE_DH = 1, + CRYPTO_KPP_SECRET_TYPE_ECDH = 2, +}; + +struct kpp_secret { + short unsigned int type; + short unsigned int len; +}; + +enum asn1_class { + ASN1_UNIV = 0, + ASN1_APPL = 1, + ASN1_CONT = 2, + ASN1_PRIV = 3, +}; + +enum asn1_method { + ASN1_PRIM = 0, + ASN1_CONS = 1, +}; + +enum asn1_tag { + ASN1_EOC = 0, + ASN1_BOOL = 1, + ASN1_INT = 2, + ASN1_BTS = 3, + ASN1_OTS = 4, + ASN1_NULL = 5, + ASN1_OID = 6, + ASN1_ODE = 7, + ASN1_EXT = 8, + ASN1_REAL = 9, + ASN1_ENUM = 10, + ASN1_EPDV = 11, + ASN1_UTF8STR = 12, + ASN1_RELOID = 13, + ASN1_SEQ = 16, + ASN1_SET = 17, + ASN1_NUMSTR = 18, + ASN1_PRNSTR = 19, + ASN1_TEXSTR = 20, + ASN1_VIDSTR = 21, + ASN1_IA5STR = 22, + ASN1_UNITIM = 23, + ASN1_GENTIM = 24, + ASN1_GRASTR = 25, + ASN1_VISSTR = 26, + ASN1_GENSTR = 27, + ASN1_UNISTR = 28, + ASN1_CHRSTR = 29, + ASN1_BMPSTR = 30, + ASN1_LONG_TAG = 31, +}; + +typedef int (*asn1_action_t)(void *, size_t, unsigned char, const void *, size_t); + +struct asn1_decoder { + const unsigned char *machine; + size_t machlen; + const asn1_action_t *actions; +}; + +enum asn1_opcode { + ASN1_OP_MATCH = 0, + ASN1_OP_MATCH_OR_SKIP = 1, + ASN1_OP_MATCH_ACT = 2, + ASN1_OP_MATCH_ACT_OR_SKIP = 3, + ASN1_OP_MATCH_JUMP = 4, + ASN1_OP_MATCH_JUMP_OR_SKIP = 5, + ASN1_OP_MATCH_ANY = 8, + ASN1_OP_MATCH_ANY_OR_SKIP = 9, + ASN1_OP_MATCH_ANY_ACT = 10, + ASN1_OP_MATCH_ANY_ACT_OR_SKIP = 11, + ASN1_OP_COND_MATCH_OR_SKIP = 17, + ASN1_OP_COND_MATCH_ACT_OR_SKIP = 19, + ASN1_OP_COND_MATCH_JUMP_OR_SKIP = 21, + ASN1_OP_COND_MATCH_ANY = 24, + ASN1_OP_COND_MATCH_ANY_OR_SKIP = 25, + ASN1_OP_COND_MATCH_ANY_ACT = 26, + ASN1_OP_COND_MATCH_ANY_ACT_OR_SKIP = 27, + ASN1_OP_COND_FAIL = 28, + ASN1_OP_COMPLETE = 29, + ASN1_OP_ACT = 30, + ASN1_OP_MAYBE_ACT = 31, + ASN1_OP_END_SEQ = 32, + ASN1_OP_END_SET = 33, + ASN1_OP_END_SEQ_OF = 34, + ASN1_OP_END_SET_OF = 35, + ASN1_OP_END_SEQ_ACT = 36, + ASN1_OP_END_SET_ACT = 37, + ASN1_OP_END_SEQ_OF_ACT = 38, + ASN1_OP_END_SET_OF_ACT = 39, + ASN1_OP_RETURN = 40, + ASN1_OP__NR = 41, +}; + +enum rsapubkey_actions { + ACT_rsa_get_e = 0, + ACT_rsa_get_n = 1, + NR__rsapubkey_actions = 2, +}; + +enum rsaprivkey_actions { + ACT_rsa_get_d = 0, + ACT_rsa_get_dp = 1, + ACT_rsa_get_dq = 2, + ACT_rsa_get_e___2 = 3, + ACT_rsa_get_n___2 = 4, + ACT_rsa_get_p = 5, + ACT_rsa_get_q = 6, + ACT_rsa_get_qinv = 7, + NR__rsaprivkey_actions = 8, +}; + +struct rsa_key { + const u8 *n; + const u8 *e; + const u8 *d; + const u8 *p; + const u8 *q; + const u8 *dp; + const u8 *dq; + const u8 *qinv; + size_t n_sz; + size_t e_sz; + size_t d_sz; + size_t p_sz; + size_t q_sz; + size_t dp_sz; + size_t dq_sz; + size_t qinv_sz; +}; + +struct akcipher_request { + struct crypto_async_request base; + struct scatterlist *src; + struct scatterlist *dst; + unsigned int src_len; + unsigned int dst_len; + void *__ctx[0]; +}; + +struct crypto_akcipher { + unsigned int reqsize; + struct crypto_tfm base; +}; + +struct akcipher_alg { + int (*sign)(struct akcipher_request *); + int (*verify)(struct akcipher_request *); + int (*encrypt)(struct akcipher_request *); + int (*decrypt)(struct akcipher_request *); + int (*set_pub_key)(struct crypto_akcipher *, const void *, unsigned int); + int (*set_priv_key)(struct crypto_akcipher *, const void *, unsigned int); + unsigned int (*max_size)(struct crypto_akcipher *); + int (*init)(struct crypto_akcipher *); + void (*exit)(struct crypto_akcipher *); + struct crypto_alg base; +}; + +struct rsa_mpi_key { + MPI n; + MPI e; + MPI d; + MPI p; + MPI q; + MPI dp; + MPI dq; + MPI qinv; +}; + +struct sha3_state { + u64 st[25]; + unsigned int rsiz; + unsigned int rsizw; + unsigned int partial; + u8 buf[144]; +}; + +struct chksum_ctx { + u32 key; +}; + +struct chksum_desc_ctx { + u32 crc; +}; + +struct chksum_desc_ctx___2 { + __u16 crc; +}; + +enum asymmetric_payload_bits { + asym_crypto = 0, + asym_subtype = 1, + asym_key_ids = 2, + asym_auth = 3, +}; + +struct asymmetric_key_id { + short unsigned int len; + unsigned char data[0]; +}; + +struct asymmetric_key_ids { + void *id[3]; +}; + +struct public_key_signature; + +struct asymmetric_key_subtype { + struct module *owner; + const char *name; + short unsigned int name_len; + void (*describe)(const struct key *, struct seq_file *); + void (*destroy)(void *, void *); + int (*query)(const struct kernel_pkey_params *, struct kernel_pkey_query *); + int (*eds_op)(struct kernel_pkey_params *, const void *, void *); + int (*verify_signature)(const struct key *, const struct public_key_signature *); +}; + +struct public_key_signature { + struct asymmetric_key_id *auth_ids[3]; + u8 *s; + u8 *digest; + u32 s_size; + u32 digest_size; + const char *pkey_algo; + const char *hash_algo; + const char *encoding; +}; + +struct asymmetric_key_parser { + struct list_head link; + struct module *owner; + const char *name; + int (*parse)(struct key_preparsed_payload *); +}; + +enum pkcs7_actions { + ACT_pkcs7_check_content_type = 0, + ACT_pkcs7_extract_cert = 1, + ACT_pkcs7_note_OID = 2, + ACT_pkcs7_note_certificate_list = 3, + ACT_pkcs7_note_content = 4, + ACT_pkcs7_note_data = 5, + ACT_pkcs7_note_signed_info = 6, + ACT_pkcs7_note_signeddata_version = 7, + ACT_pkcs7_note_signerinfo_version = 8, + ACT_pkcs7_sig_note_authenticated_attr = 9, + ACT_pkcs7_sig_note_digest_algo = 10, + ACT_pkcs7_sig_note_issuer = 11, + ACT_pkcs7_sig_note_pkey_algo = 12, + ACT_pkcs7_sig_note_serial = 13, + ACT_pkcs7_sig_note_set_of_authattrs = 14, + ACT_pkcs7_sig_note_signature = 15, + ACT_pkcs7_sig_note_skid = 16, + NR__pkcs7_actions = 17, +}; + +enum OID { + OID_id_dsa_with_sha1 = 0, + OID_id_dsa = 1, + OID_id_ecPublicKey = 2, + OID_id_prime192v1 = 3, + OID_id_prime256v1 = 4, + OID_id_ecdsa_with_sha1 = 5, + OID_id_ecdsa_with_sha224 = 6, + OID_id_ecdsa_with_sha256 = 7, + OID_id_ecdsa_with_sha384 = 8, + OID_id_ecdsa_with_sha512 = 9, + OID_rsaEncryption = 10, + OID_sha1WithRSAEncryption = 11, + OID_sha256WithRSAEncryption = 12, + OID_sha384WithRSAEncryption = 13, + OID_sha512WithRSAEncryption = 14, + OID_sha224WithRSAEncryption = 15, + OID_data = 16, + OID_signed_data = 17, + OID_email_address = 18, + OID_contentType = 19, + OID_messageDigest = 20, + OID_signingTime = 21, + OID_smimeCapabilites = 22, + OID_smimeAuthenticatedAttrs = 23, + OID_mskrb5 = 24, + OID_krb5 = 25, + OID_krb5u2u = 26, + OID_msIndirectData = 27, + OID_msStatementType = 28, + OID_msSpOpusInfo = 29, + OID_msPeImageDataObjId = 30, + OID_msIndividualSPKeyPurpose = 31, + OID_msOutlookExpress = 32, + OID_ntlmssp = 33, + OID_negoex = 34, + OID_spnego = 35, + OID_IAKerb = 36, + OID_PKU2U = 37, + OID_Scram = 38, + OID_certAuthInfoAccess = 39, + OID_sha1 = 40, + OID_id_ansip384r1 = 41, + OID_id_ansip521r1 = 42, + OID_sha256 = 43, + OID_sha384 = 44, + OID_sha512 = 45, + OID_sha224 = 46, + OID_commonName = 47, + OID_surname = 48, + OID_countryName = 49, + OID_locality = 50, + OID_stateOrProvinceName = 51, + OID_organizationName = 52, + OID_organizationUnitName = 53, + OID_title = 54, + OID_description = 55, + OID_name = 56, + OID_givenName = 57, + OID_initials = 58, + OID_generationalQualifier = 59, + OID_subjectKeyIdentifier = 60, + OID_keyUsage = 61, + OID_subjectAltName = 62, + OID_issuerAltName = 63, + OID_basicConstraints = 64, + OID_crlDistributionPoints = 65, + OID_certPolicies = 66, + OID_authorityKeyIdentifier = 67, + OID_extKeyUsage = 68, + OID_NetlogonMechanism = 69, + OID_appleLocalKdcSupported = 70, + OID_gostCPSignA = 71, + OID_gostCPSignB = 72, + OID_gostCPSignC = 73, + OID_gost2012PKey256 = 74, + OID_gost2012PKey512 = 75, + OID_gost2012Digest256 = 76, + OID_gost2012Digest512 = 77, + OID_gost2012Signature256 = 78, + OID_gost2012Signature512 = 79, + OID_gostTC26Sign256A = 80, + OID_gostTC26Sign256B = 81, + OID_gostTC26Sign256C = 82, + OID_gostTC26Sign256D = 83, + OID_gostTC26Sign512A = 84, + OID_gostTC26Sign512B = 85, + OID_gostTC26Sign512C = 86, + OID_sm2 = 87, + OID_sm3 = 88, + OID_SM2_with_SM3 = 89, + OID_sm3WithRSAEncryption = 90, + OID_TPMLoadableKey = 91, + OID_TPMImportableKey = 92, + OID_TPMSealedData = 93, + OID_sha3_256 = 94, + OID_sha3_384 = 95, + OID_sha3_512 = 96, + OID_id_ecdsa_with_sha3_256 = 97, + OID_id_ecdsa_with_sha3_384 = 98, + OID_id_ecdsa_with_sha3_512 = 99, + OID_id_rsassa_pkcs1_v1_5_with_sha3_256 = 100, + OID_id_rsassa_pkcs1_v1_5_with_sha3_384 = 101, + OID_id_rsassa_pkcs1_v1_5_with_sha3_512 = 102, + OID__NR = 103, +}; + +struct public_key { + void *key; + u32 keylen; + enum OID algo; + void *params; + u32 paramlen; + bool key_is_private; + const char *id_type; + const char *pkey_algo; + long unsigned int key_eflags; +}; + +struct x509_certificate { + struct x509_certificate *next; + struct x509_certificate *signer; + struct public_key *pub; + struct public_key_signature *sig; + char *issuer; + char *subject; + struct asymmetric_key_id *id; + struct asymmetric_key_id *skid; + time64_t valid_from; + time64_t valid_to; + const void *tbs; + unsigned int tbs_size; + unsigned int raw_sig_size; + const void *raw_sig; + const void *raw_serial; + unsigned int raw_serial_size; + unsigned int raw_issuer_size; + const void *raw_issuer; + const void *raw_subject; + unsigned int raw_subject_size; + unsigned int raw_skid_size; + const void *raw_skid; + unsigned int index; + bool seen; + bool verified; + bool self_signed; + bool unsupported_sig; + bool blacklisted; +}; + +struct pkcs7_signed_info { + struct pkcs7_signed_info *next; + struct x509_certificate *signer; + unsigned int index; + bool unsupported_crypto; + bool blacklisted; + const void *msgdigest; + unsigned int msgdigest_len; + unsigned int authattrs_len; + const void *authattrs; + long unsigned int aa_set; + time64_t signing_time; + struct public_key_signature *sig; +}; + +struct pkcs7_message { + struct x509_certificate *certs; + struct x509_certificate *crl; + struct pkcs7_signed_info *signed_infos; + u8 version; + bool have_authattrs; + enum OID data_type; + size_t data_len; + size_t data_hdrlen; + const void *data; +}; + +struct pkcs7_parse_context { + struct pkcs7_message *msg; + struct pkcs7_signed_info *sinfo; + struct pkcs7_signed_info **ppsinfo; + struct x509_certificate *certs; + struct x509_certificate **ppcerts; + long unsigned int data; + enum OID last_oid; + unsigned int x509_index; + unsigned int sinfo_index; + const void *raw_serial; + unsigned int raw_serial_size; + unsigned int raw_issuer_size; + const void *raw_issuer; + const void *raw_skid; + unsigned int raw_skid_size; + bool expect_skid; +}; + +enum { + DISK_EVENT_MEDIA_CHANGE = 1, + DISK_EVENT_EJECT_REQUEST = 2, +}; + +enum { + DISK_EVENT_FLAG_POLL = 1, + DISK_EVENT_FLAG_UEVENT = 2, + DISK_EVENT_FLAG_BLOCK_ON_EXCL_WRITE = 4, +}; + +struct bdev_inode { + struct block_device bdev; + struct inode vfs_inode; +}; + +struct blk_rq_stat { + u64 mean; + u64 min; + u64 max; + u32 nr_samples; + u64 batch; +}; + +struct blk_queue_stats { + struct list_head callbacks; + spinlock_t lock; + int accounting; +}; + +struct blk_stat_callback { + struct list_head list; + struct timer_list timer; + struct blk_rq_stat *cpu_stat; + int (*bucket_fn)(const struct request *); + unsigned int buckets; + struct blk_rq_stat *stat; + void (*timer_fn)(struct blk_stat_callback *); + void *data; + struct callback_head rcu; +}; + +struct blkg_rwstat { + struct percpu_counter cpu_cnt[5]; + atomic64_t aux_cnt[5]; +}; + +struct blkg_rwstat_sample { + u64 cnt[5]; +}; + +struct io_uring_buf { + __u64 addr; + __u32 len; + __u16 bid; + __u16 resv; +}; + +struct io_uring_buf_ring { + union { + struct { + __u64 resv1; + __u32 resv2; + __u16 resv3; + __u16 tail; + }; + struct { + struct {} __empty_bufs; + struct io_uring_buf bufs[0]; + }; + }; +}; + +struct io_buffer { + struct list_head list; + __u64 addr; + __u32 len; + __u16 bid; + __u16 bgid; +}; + +struct io_buffer_list { + union { + struct list_head buf_list; + struct { + struct page **buf_pages; + struct io_uring_buf_ring *buf_ring; + }; + struct callback_head rcu; + }; + __u16 bgid; + __u16 buf_nr_pages; + __u16 nr_entries; + __u16 head; + __u16 mask; + __u16 flags; + atomic_t refs; +}; + +struct io_poll { + struct file *file; + struct wait_queue_head *head; + __poll_t events; + int retries; + struct wait_queue_entry wait; +}; + +struct async_poll { + struct io_poll poll; + struct io_poll *double_poll; +}; + +struct io_issue_def { + unsigned int needs_file: 1; + unsigned int plug: 1; + unsigned int hash_reg_file: 1; + unsigned int unbound_nonreg_file: 1; + unsigned int pollin: 1; + unsigned int pollout: 1; + unsigned int poll_exclusive: 1; + unsigned int buffer_select: 1; + unsigned int audit_skip: 1; + unsigned int ioprio: 1; + unsigned int iopoll: 1; + unsigned int iopoll_queue: 1; + unsigned int vectored: 1; + short unsigned int async_size; + int (*issue)(struct io_kiocb *, unsigned int); + int (*prep)(struct io_kiocb *, const struct io_uring_sqe *); +}; + +enum { + IO_APOLL_OK = 0, + IO_APOLL_ABORTED = 1, + IO_APOLL_READY = 2, +}; + +struct io_cancel_data { + struct io_ring_ctx *ctx; + union { + u64 data; + struct file *file; + }; + u8 opcode; + u32 flags; + int seq; +}; + +struct io_poll_update { + struct file *file; + u64 old_user_data; + u64 new_user_data; + __poll_t events; + bool update_events; + bool update_user_data; +}; + +struct io_poll_table { + struct poll_table_struct pt; + struct io_kiocb *req; + int nr_entries; + int error; + bool owning; + __poll_t result_mask; +}; + +enum { + IOU_POLL_DONE = 0, + IOU_POLL_NO_ACTION = 1, + IOU_POLL_REMOVE_POLL_USE_RES = 2, + IOU_POLL_REISSUE = 3, + IOU_POLL_REQUEUE = 4, +}; + +typedef struct { + __u8 b[16]; +} guid_t; + +struct iov_iter_state { + size_t iov_offset; + size_t count; + long unsigned int nr_segs; +}; + +typedef s32 compat_ssize_t; + +struct compat_iovec { + compat_uptr_t iov_base; + compat_size_t iov_len; +}; + +typedef size_t (*iov_step_f)(void *, size_t, size_t, void *, void *); + +typedef size_t (*iov_ustep_f)(void *, size_t, size_t, void *, void *); + +struct ZSTD_CDict_s { + const void *dictContent; + size_t dictContentSize; + ZSTD_dictContentType_e dictContentType; + U32 *entropyWorkspace; + ZSTD_cwksp workspace; + ZSTD_matchState_t matchState; + ZSTD_compressedBlockState_t cBlockState; + ZSTD_customMem customMem; + U32 dictID; + int compressionLevel; + ZSTD_paramSwitch_e useRowMatchFinder; +}; + +struct seqDef_s { + U32 offBase; + U16 litLength; + U16 mlBase; +}; + +typedef struct { + U32 litLength; + U32 matchLength; +} ZSTD_sequenceLength; + +struct repcodes_s { + U32 rep[3]; +}; + +typedef struct repcodes_s repcodes_t; + +enum cpu_pm_event { + CPU_PM_ENTER = 0, + CPU_PM_ENTER_FAILED = 1, + CPU_PM_EXIT = 2, + CPU_CLUSTER_PM_ENTER = 3, + CPU_CLUSTER_PM_ENTER_FAILED = 4, + CPU_CLUSTER_PM_EXIT = 5, +}; + +typedef int (*of_init_fn_2)(struct device_node *, struct device_node *); + +enum { + IRQ_SET_MASK_OK = 0, + IRQ_SET_MASK_OK_NOCOPY = 1, + IRQ_SET_MASK_OK_DONE = 2, +}; + +enum { + IRQCHIP_SET_TYPE_MASKED = 1, + IRQCHIP_EOI_IF_HANDLED = 2, + IRQCHIP_MASK_ON_SUSPEND = 4, + IRQCHIP_ONOFFLINE_ENABLED = 8, + IRQCHIP_SKIP_SET_WAKE = 16, + IRQCHIP_ONESHOT_SAFE = 32, + IRQCHIP_EOI_THREADED = 64, + IRQCHIP_SUPPORTS_LEVEL_MSI = 128, + IRQCHIP_SUPPORTS_NMI = 256, + IRQCHIP_ENABLE_WAKEUP_ON_SUSPEND = 512, + IRQCHIP_AFFINITY_PRE_STARTUP = 1024, + IRQCHIP_IMMUTABLE = 2048, +}; + +typedef int (*of_irq_init_cb_t)(struct device_node *, struct device_node *); + +struct msi_alloc_info { + struct msi_desc *desc; + irq_hw_number_t hwirq; + long unsigned int flags; + union { + long unsigned int ul; + void *ptr; + } scratchpad[2]; +}; + +typedef struct msi_alloc_info msi_alloc_info_t; + +struct msi_domain_ops { + irq_hw_number_t (*get_hwirq)(struct msi_domain_info *, msi_alloc_info_t *); + int (*msi_init)(struct irq_domain *, struct msi_domain_info *, unsigned int, irq_hw_number_t, msi_alloc_info_t *); + void (*msi_free)(struct irq_domain *, struct msi_domain_info *, unsigned int); + int (*msi_prepare)(struct irq_domain *, struct device *, int, msi_alloc_info_t *); + void (*prepare_desc)(struct irq_domain *, msi_alloc_info_t *, struct msi_desc *); + void (*set_desc)(msi_alloc_info_t *, struct msi_desc *); + int (*domain_alloc_irqs)(struct irq_domain *, struct device *, int); + void (*domain_free_irqs)(struct irq_domain *, struct device *); + void (*msi_post_free)(struct irq_domain *, struct device *); + int (*msi_translate)(struct irq_domain *, struct irq_fwspec *, irq_hw_number_t *, unsigned int *); +}; + +struct msi_domain_info { + u32 flags; + enum irq_domain_bus_token bus_token; + unsigned int hwsize; + struct msi_domain_ops *ops; + struct irq_chip *chip; + void *chip_data; + irq_flow_handler_t handler; + void *handler_data; + const char *handler_name; + void *data; +}; + +enum gic_type { + GIC_V2 = 0, + GIC_V3 = 1, +}; + +struct gic_kvm_info { + enum gic_type type; + struct resource vcpu; + unsigned int maint_irq; + bool no_maint_irq_mask; + struct resource vctrl; + bool has_v4; + bool has_v4_1; + bool no_hw_deactivation; +}; + +union gic_base { + void *common_base; + void **percpu_base; +}; + +struct gic_chip_data { + union gic_base dist_base; + union gic_base cpu_base; + void *raw_dist_base; + void *raw_cpu_base; + u32 percpu_offset; + u32 saved_spi_enable[32]; + u32 saved_spi_active[32]; + u32 saved_spi_conf[64]; + u32 saved_spi_target[255]; + u32 *saved_ppi_enable; + u32 *saved_ppi_active; + u32 *saved_ppi_conf; + struct irq_domain *domain; + unsigned int gic_irqs; +}; + +typedef resource_size_t (*resource_alignf)(void *, const struct resource *, resource_size_t, resource_size_t); + +typedef u64 pci_bus_addr_t; + +struct pci_bus_region { + pci_bus_addr_t start; + pci_bus_addr_t end; +}; + +struct msi_domain_template { + char name[48]; + struct irq_chip chip; + struct msi_domain_ops ops; + struct msi_domain_info info; +}; + +struct pci_config_window; + +struct pci_ecam_ops { + unsigned int bus_shift; + struct pci_ops pci_ops; + int (*init)(struct pci_config_window *); +}; + +struct pci_config_window { + struct resource res; + struct resource busr; + unsigned int bus_shift; + void *priv; + const struct pci_ecam_ops *ops; + union { + void *win; + void **winp; + }; + struct device *parent; +}; + +struct clk_div_table { + unsigned int val; + unsigned int div; +}; + +struct clk_divider { + struct clk_hw hw; + void *reg; + u8 shift; + u8 width; + u8 flags; + const struct clk_div_table *table; + spinlock_t *lock; +}; + +struct virtio_mmio_device { + struct virtio_device vdev; + struct platform_device *pdev; + void *base; + long unsigned int version; + spinlock_t lock; + struct list_head virtqueues; +}; + +struct virtio_mmio_vq_info { + struct virtqueue *vq; + struct list_head node; +}; + +struct ldsem_waiter { + struct list_head list; + struct task_struct *task; +}; + +enum dmi_field { + DMI_NONE = 0, + DMI_BIOS_VENDOR = 1, + DMI_BIOS_VERSION = 2, + DMI_BIOS_DATE = 3, + DMI_BIOS_RELEASE = 4, + DMI_EC_FIRMWARE_RELEASE = 5, + DMI_SYS_VENDOR = 6, + DMI_PRODUCT_NAME = 7, + DMI_PRODUCT_VERSION = 8, + DMI_PRODUCT_SERIAL = 9, + DMI_PRODUCT_UUID = 10, + DMI_PRODUCT_SKU = 11, + DMI_PRODUCT_FAMILY = 12, + DMI_BOARD_VENDOR = 13, + DMI_BOARD_NAME = 14, + DMI_BOARD_VERSION = 15, + DMI_BOARD_SERIAL = 16, + DMI_BOARD_ASSET_TAG = 17, + DMI_CHASSIS_VENDOR = 18, + DMI_CHASSIS_TYPE = 19, + DMI_CHASSIS_VERSION = 20, + DMI_CHASSIS_SERIAL = 21, + DMI_CHASSIS_ASSET_TAG = 22, + DMI_STRING_MAX = 23, + DMI_OEM_STRING = 24, +}; + +struct dmi_strmatch { + unsigned char slot: 7; + unsigned char exact_match: 1; + char substr[79]; +}; + +struct dmi_system_id { + int (*callback)(const struct dmi_system_id *); + const char *ident; + struct dmi_strmatch matches[4]; + void *driver_data; +}; + +enum cti_port_type { + CTI_PORT_TYPE_NONE = 0, + CTI_PORT_TYPE_RS232 = 1, + CTI_PORT_TYPE_RS422_485 = 2, + CTI_PORT_TYPE_RS232_422_485_HW = 3, + CTI_PORT_TYPE_RS232_422_485_SW = 4, + CTI_PORT_TYPE_RS232_422_485_4B = 5, + CTI_PORT_TYPE_RS232_422_485_2B = 6, + CTI_PORT_TYPE_MAX = 7, +}; + +struct exar8250_platform { + int (*rs485_config)(struct uart_port *, struct ktermios *, struct serial_rs485 *); + const struct serial_rs485 *rs485_supported; + int (*register_gpio)(struct pci_dev *, struct uart_8250_port *); + void (*unregister_gpio)(struct uart_8250_port *); +}; + +struct exar8250; + +struct exar8250_board { + unsigned int num_ports; + unsigned int reg_shift; + int (*setup)(struct exar8250 *, struct pci_dev *, struct uart_8250_port *, int); + void (*exit)(struct pci_dev *); +}; + +struct exar8250 { + unsigned int nr; + unsigned int osc_freq; + struct exar8250_board *board; + void *virt; + int line[0]; +}; + +struct dma_buf_export_info { + const char *exp_name; + struct module *owner; + const struct dma_buf_ops *ops; + size_t size; + int flags; + struct dma_resv *resv; + void *priv; +}; + +struct drm_prime_handle { + __u32 handle; + __u32 flags; + __s32 fd; +}; + +struct drm_prime_member { + struct dma_buf *dma_buf; + uint32_t handle; + struct rb_node dmabuf_rb; + struct rb_node handle_rb; +}; + +enum backlight_type { + BACKLIGHT_RAW = 1, + BACKLIGHT_PLATFORM = 2, + BACKLIGHT_FIRMWARE = 3, + BACKLIGHT_TYPE_MAX = 4, +}; + +enum backlight_scale { + BACKLIGHT_SCALE_UNKNOWN = 0, + BACKLIGHT_SCALE_LINEAR = 1, + BACKLIGHT_SCALE_NON_LINEAR = 2, +}; + +struct backlight_device; + +struct backlight_ops { + unsigned int options; + int (*update_status)(struct backlight_device *); + int (*get_brightness)(struct backlight_device *); + bool (*controls_device)(struct backlight_device *, struct device *); +}; + +struct backlight_properties { + int brightness; + int max_brightness; + int power; + enum backlight_type type; + unsigned int state; + enum backlight_scale scale; +}; + +struct backlight_device { + struct backlight_properties props; + struct mutex update_lock; + struct mutex ops_lock; + const struct backlight_ops *ops; + struct notifier_block fb_notif; + struct list_head entry; + struct device dev; + bool fb_bl_on[32]; + int use_count; +}; + +struct display_timing; + +struct drm_panel; + +struct drm_panel_funcs { + int (*prepare)(struct drm_panel *); + int (*enable)(struct drm_panel *); + int (*disable)(struct drm_panel *); + int (*unprepare)(struct drm_panel *); + int (*get_modes)(struct drm_panel *, struct drm_connector *); + enum drm_panel_orientation (*get_orientation)(struct drm_panel *); + int (*get_timings)(struct drm_panel *, unsigned int, struct display_timing *); + void (*debugfs_init)(struct drm_panel *, struct dentry *); +}; + +struct drm_panel { + struct device *dev; + struct backlight_device *backlight; + const struct drm_panel_funcs *funcs; + int connector_type; + struct list_head list; + struct list_head followers; + struct mutex follower_lock; + bool prepare_prev_first; + bool prepared; + bool enabled; +}; + +struct drm_panel_follower; + +struct drm_panel_follower_funcs { + int (*panel_prepared)(struct drm_panel_follower *); + int (*panel_unpreparing)(struct drm_panel_follower *); +}; + +struct drm_panel_follower { + const struct drm_panel_follower_funcs *funcs; + struct list_head list; + struct drm_panel *panel; +}; + +struct virtio_gpu_mem_entry { + __le64 addr; + __le32 length; + __le32 padding; +}; + +struct drm_gem_shmem_object { + struct drm_gem_object base; + struct page **pages; + unsigned int pages_use_count; + int madv; + struct list_head madv_list; + struct sg_table *sgt; + void *vaddr; + unsigned int vmap_use_count; + bool pages_mark_dirty_on_put: 1; + bool pages_mark_accessed_on_put: 1; + bool map_wc: 1; +}; + +struct virtio_gpu_object_params { + long unsigned int size; + bool dumb; + bool virgl; + bool blob; + uint32_t format; + uint32_t width; + uint32_t height; + uint32_t target; + uint32_t bind; + uint32_t depth; + uint32_t array_size; + uint32_t last_level; + uint32_t nr_samples; + uint32_t flags; + uint32_t ctx_id; + uint32_t blob_mem; + uint32_t blob_flags; + uint64_t blob_id; +}; + +struct virtio_gpu_object { + struct drm_gem_shmem_object base; + uint32_t hw_res_handle; + bool dumb; + bool created; + bool host3d_blob; + bool guest_blob; + uint32_t blob_mem; + uint32_t blob_flags; + int uuid_state; + uuid_t uuid; +}; + +struct virtio_gpu_object_shmem { + struct virtio_gpu_object base; +}; + +struct virtio_gpu_object_vram { + struct virtio_gpu_object base; + uint32_t map_state; + uint32_t map_info; + struct drm_mm_node vram_node; +}; + +struct virtio_gpu_object_array { + struct ww_acquire_ctx ticket; + struct list_head next; + u32 nents; + u32 total; + struct drm_gem_object *objs[0]; +}; + +struct virtio_gpu_fence_event { + struct drm_pending_event base; + struct drm_event event; +}; + +struct virtio_gpu_fence { + struct dma_fence f; + uint32_t ring_idx; + uint64_t fence_id; + bool emit_fence_info; + struct virtio_gpu_fence_event *e; + struct virtio_gpu_fence_driver *drv; + struct list_head node; +}; + +struct cpu_attr { + struct device_attribute attr; + const struct cpumask * const map; +}; + +struct regmap_range_cfg; + +struct regmap_config { + const char *name; + int reg_bits; + int reg_stride; + int reg_shift; + unsigned int reg_base; + int pad_bits; + int val_bits; + bool (*writeable_reg)(struct device *, unsigned int); + bool (*readable_reg)(struct device *, unsigned int); + bool (*volatile_reg)(struct device *, unsigned int); + bool (*precious_reg)(struct device *, unsigned int); + bool (*writeable_noinc_reg)(struct device *, unsigned int); + bool (*readable_noinc_reg)(struct device *, unsigned int); + int (*reg_read)(void *, unsigned int, unsigned int *); + int (*reg_write)(void *, unsigned int, unsigned int); + int (*reg_update_bits)(void *, unsigned int, unsigned int, unsigned int); + int (*read)(void *, const void *, size_t, void *, size_t); + int (*write)(void *, const void *, size_t); + size_t max_raw_read; + size_t max_raw_write; + bool can_sleep; + bool fast_io; + bool io_port; + bool disable_locking; + regmap_lock lock; + regmap_unlock unlock; + void *lock_arg; + unsigned int max_register; + bool max_register_is_0; + const struct regmap_access_table *wr_table; + const struct regmap_access_table *rd_table; + const struct regmap_access_table *volatile_table; + const struct regmap_access_table *precious_table; + const struct regmap_access_table *wr_noinc_table; + const struct regmap_access_table *rd_noinc_table; + const struct reg_default *reg_defaults; + unsigned int num_reg_defaults; + enum regcache_type cache_type; + const void *reg_defaults_raw; + unsigned int num_reg_defaults_raw; + long unsigned int read_flag_mask; + long unsigned int write_flag_mask; + bool zero_flag_mask; + bool use_single_read; + bool use_single_write; + bool use_relaxed_mmio; + bool can_multi_write; + bool use_hwlock; + bool use_raw_spinlock; + unsigned int hwlock_id; + unsigned int hwlock_mode; + enum regmap_endian reg_format_endian; + enum regmap_endian val_format_endian; + const struct regmap_range_cfg *ranges; + unsigned int num_ranges; +}; + +struct regmap_range_cfg { + const char *name; + unsigned int range_min; + unsigned int range_max; + unsigned int selector_reg; + unsigned int selector_mask; + int selector_shift; + unsigned int window_start; + unsigned int window_len; +}; + +struct regmap_range_node { + struct rb_node node; + const char *name; + struct regmap *map; + unsigned int range_min; + unsigned int range_max; + unsigned int selector_reg; + unsigned int selector_mask; + int selector_shift; + unsigned int window_start; + unsigned int window_len; +}; + +enum dma_fence_flag_bits { + DMA_FENCE_FLAG_SIGNALED_BIT = 0, + DMA_FENCE_FLAG_TIMESTAMP_BIT = 1, + DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT = 2, + DMA_FENCE_FLAG_USER_BITS = 3, +}; + +struct dma_fence_chain { + struct dma_fence base; + struct dma_fence *prev; + u64 prev_seqno; + struct dma_fence *fence; + union { + struct dma_fence_cb cb; + struct irq_work work; + }; + spinlock_t lock; +}; + +struct dma_fence_unwrap { + struct dma_fence *chain; + struct dma_fence *array; + unsigned int index; +}; + +struct sync_file { + struct file *file; + char user_name[32]; + struct list_head sync_file_list; + wait_queue_head_t wq; + long unsigned int flags; + struct dma_fence *fence; + struct dma_fence_cb cb; +}; + +struct sync_merge_data { + char name[32]; + __s32 fd2; + __s32 fence; + __u32 flags; + __u32 pad; +}; + +struct sync_fence_info { + char obj_name[32]; + char driver_name[32]; + __s32 status; + __u32 flags; + __u64 timestamp_ns; +}; + +struct sync_file_info { + char name[32]; + __s32 status; + __u32 flags; + __u32 num_fences; + __u32 pad; + __u64 sync_fence_info; +}; + +struct sync_set_deadline { + __u64 deadline_ns; + __u64 pad; +}; + +struct scsi_lun { + __u8 scsi_lun[8]; +}; + +struct scsi_sense_hdr { + u8 response_code; + u8 sense_key; + u8 asc; + u8 ascq; + u8 byte4; + u8 byte5; + u8 byte6; + u8 additional_length; +}; + +enum scsi_host_status { + DID_OK = 0, + DID_NO_CONNECT = 1, + DID_BUS_BUSY = 2, + DID_TIME_OUT = 3, + DID_BAD_TARGET = 4, + DID_ABORT = 5, + DID_PARITY = 6, + DID_ERROR = 7, + DID_RESET = 8, + DID_BAD_INTR = 9, + DID_PASSTHROUGH = 10, + DID_SOFT_ERROR = 11, + DID_IMM_RETRY = 12, + DID_REQUEUE = 13, + DID_TRANSPORT_DISRUPTED = 14, + DID_TRANSPORT_FAILFAST = 15, + DID_TRANSPORT_MARGINAL = 20, +}; + +enum scsi_timeouts { + SCSI_DEFAULT_EH_TIMEOUT = 10000, +}; + +enum scsi_scan_mode { + SCSI_SCAN_INITIAL = 0, + SCSI_SCAN_RESCAN = 1, + SCSI_SCAN_MANUAL = 2, +}; + +typedef void (*activate_complete)(void *, int); + +struct scsi_device_handler { + struct list_head list; + struct module *module; + const char *name; + enum scsi_disposition (*check_sense)(struct scsi_device *, struct scsi_sense_hdr *); + int (*attach)(struct scsi_device *); + void (*detach)(struct scsi_device *); + int (*activate)(struct scsi_device *, activate_complete, void *); + blk_status_t (*prep_fn)(struct scsi_device *, struct request *); + int (*set_params)(struct scsi_device *, const char *); + void (*rescan)(struct scsi_device *); +}; + +struct scsi_failure { + int result; + u8 sense; + u8 asc; + u8 ascq; + s8 allowed; + s8 retries; +}; + +struct scsi_failures { + int total_allowed; + int total_retries; + struct scsi_failure *failure_definitions; +}; + +struct scsi_exec_args { + unsigned char *sense; + unsigned int sense_len; + struct scsi_sense_hdr *sshdr; + blk_mq_req_flags_t req_flags; + int scmd_flags; + int *resid; + struct scsi_failures *failures; +}; + +struct scsi_driver { + struct device_driver gendrv; + int (*resume)(struct device *); + void (*rescan)(struct device *); + blk_status_t (*init_command)(struct scsi_cmnd *); + void (*uninit_command)(struct scsi_cmnd *); + int (*done)(struct scsi_cmnd *); + int (*eh_action)(struct scsi_cmnd *, int); + void (*eh_reset)(struct scsi_cmnd *); +}; + +struct attribute_container { + struct list_head node; + struct klist containers; + struct class *class; + const struct attribute_group *grp; + struct device_attribute **attrs; + int (*match)(struct attribute_container *, struct device *); + long unsigned int flags; +}; + +struct transport_container { + struct attribute_container ac; + const struct attribute_group *statistics; +}; + +struct scsi_transport_template { + struct transport_container host_attrs; + struct transport_container target_attrs; + struct transport_container device_attrs; + int (*user_scan)(struct Scsi_Host *, uint, uint, u64); + int device_size; + int device_private_offset; + int target_size; + int target_private_offset; + int host_size; + unsigned int create_work_queue: 1; + void (*eh_strategy_handler)(struct Scsi_Host *); +}; + +struct async_scan_data { + struct list_head list; + struct Scsi_Host *shost; + struct completion prev_finished; +}; + +enum limits { + REKEY_AFTER_MESSAGES = 1152921504606846976ULL, + REJECT_AFTER_MESSAGES = 18446744073709543486ULL, + REKEY_TIMEOUT = 5ULL, + REKEY_TIMEOUT_JITTER_MAX_JIFFIES = 333ULL, + REKEY_AFTER_TIME = 120ULL, + REJECT_AFTER_TIME = 180ULL, + INITIATIONS_PER_SECOND = 50ULL, + MAX_PEERS_PER_DEVICE = 1048576ULL, + KEEPALIVE_TIMEOUT = 10ULL, + MAX_TIMER_HANDSHAKES = 18ULL, + MAX_QUEUED_INCOMING_HANDSHAKES = 4096ULL, + MAX_STAGED_PACKETS = 128ULL, + MAX_QUEUED_PACKETS = 1024ULL, +}; + +enum message_type { + MESSAGE_INVALID = 0, + MESSAGE_HANDSHAKE_INITIATION = 1, + MESSAGE_HANDSHAKE_RESPONSE = 2, + MESSAGE_HANDSHAKE_COOKIE = 3, + MESSAGE_DATA = 4, +}; + +struct message_header { + __le32 type; +}; + +struct message_macs { + u8 mac1[16]; + u8 mac2[16]; +}; + +struct message_handshake_initiation { + struct message_header header; + __le32 sender_index; + u8 unencrypted_ephemeral[32]; + u8 encrypted_static[48]; + u8 encrypted_timestamp[28]; + struct message_macs macs; +}; + +struct message_handshake_response { + struct message_header header; + __le32 sender_index; + __le32 receiver_index; + u8 unencrypted_ephemeral[32]; + u8 encrypted_nothing[16]; + struct message_macs macs; +}; + +struct message_handshake_cookie { + struct message_header header; + __le32 receiver_index; + u8 nonce[24]; + u8 encrypted_cookie[32]; +}; + +struct message_data { + struct message_header header; + __le32 key_idx; + __le64 counter; + u8 encrypted_data[0]; +}; + +enum message_alignments { + MESSAGE_PADDING_MULTIPLE = 16, + MESSAGE_MINIMUM_LENGTH = 32, +}; + +enum { + HANDSHAKE_DSCP = 136, +}; + +enum packet_state { + PACKET_STATE_UNCRYPTED = 0, + PACKET_STATE_CRYPTED = 1, + PACKET_STATE_DEAD = 2, +}; + +struct packet_cb { + u64 nonce; + struct noise_keypair *keypair; + atomic_t state; + u32 mtu; + u8 ds; +}; + +struct mdio_driver { + struct mdio_driver_common mdiodrv; + int (*probe)(struct mdio_device *); + void (*remove)(struct mdio_device *); + void (*shutdown)(struct mdio_device *); +}; + +enum pkt_hash_types { + PKT_HASH_TYPE_NONE = 0, + PKT_HASH_TYPE_L2 = 1, + PKT_HASH_TYPE_L3 = 2, + PKT_HASH_TYPE_L4 = 3, +}; + +enum netdev_xdp_act { + NETDEV_XDP_ACT_BASIC = 1, + NETDEV_XDP_ACT_REDIRECT = 2, + NETDEV_XDP_ACT_NDO_XMIT = 4, + NETDEV_XDP_ACT_XSK_ZEROCOPY = 8, + NETDEV_XDP_ACT_HW_OFFLOAD = 16, + NETDEV_XDP_ACT_RX_SG = 32, + NETDEV_XDP_ACT_NDO_XMIT_SG = 64, + NETDEV_XDP_ACT_MASK = 127, +}; + +struct netdev_hw_addr { + struct list_head list; + struct rb_node node; + unsigned char addr[32]; + unsigned char type; + bool global_use; + int sync_cnt; + int refcount; + int synced; + struct callback_head callback_head; +}; + +enum { + NAPIF_STATE_SCHED = 1, + NAPIF_STATE_MISSED = 2, + NAPIF_STATE_DISABLE = 4, + NAPIF_STATE_NPSVC = 8, + NAPIF_STATE_LISTED = 16, + NAPIF_STATE_NO_BUSY_POLL = 32, + NAPIF_STATE_IN_BUSY_POLL = 64, + NAPIF_STATE_PREFER_BUSY_POLL = 128, + NAPIF_STATE_THREADED = 256, + NAPIF_STATE_SCHED_THREADED = 512, +}; + +enum gro_result { + GRO_MERGED = 0, + GRO_MERGED_FREE = 1, + GRO_HELD = 2, + GRO_NORMAL = 3, + GRO_CONSUMED = 4, +}; + +typedef enum gro_result gro_result_t; + +struct xdp_umem; + +struct xsk_queue; + +struct xdp_buff_xsk; + +struct xdp_desc; + +struct xsk_buff_pool { + struct device *dev; + struct net_device *netdev; + struct list_head xsk_tx_list; + spinlock_t xsk_tx_list_lock; + refcount_t users; + struct xdp_umem *umem; + struct work_struct work; + spinlock_t rx_lock; + struct list_head free_list; + struct list_head xskb_list; + u32 heads_cnt; + u16 queue_id; + struct xsk_queue *fq; + struct xsk_queue *cq; + dma_addr_t *dma_pages; + struct xdp_buff_xsk *heads; + struct xdp_desc *tx_descs; + u64 chunk_mask; + u64 addrs_cnt; + u32 free_list_cnt; + u32 dma_pages_cnt; + u32 free_heads_cnt; + u32 headroom; + u32 chunk_size; + u32 chunk_shift; + u32 frame_len; + u8 tx_metadata_len; + u8 cached_need_wakeup; + bool uses_need_wakeup; + bool unaligned; + bool tx_sw_csum; + void *addrs; + spinlock_t cq_lock; + struct xdp_buff_xsk *free_heads[0]; + long: 64; + long: 64; +}; + +struct dim_cq_moder; + +struct dim_irq_moder { + u8 profile_flags; + u8 coal_flags; + u8 dim_rx_mode; + u8 dim_tx_mode; + struct dim_cq_moder *rx_profile; + struct dim_cq_moder *tx_profile; + void (*rx_dim_work)(struct work_struct *); + void (*tx_dim_work)(struct work_struct *); +}; + +enum ethtool_stringset { + ETH_SS_TEST = 0, + ETH_SS_STATS = 1, + ETH_SS_PRIV_FLAGS = 2, + ETH_SS_NTUPLE_FILTERS = 3, + ETH_SS_FEATURES = 4, + ETH_SS_RSS_HASH_FUNCS = 5, + ETH_SS_TUNABLES = 6, + ETH_SS_PHY_STATS = 7, + ETH_SS_PHY_TUNABLES = 8, + ETH_SS_LINK_MODES = 9, + ETH_SS_MSG_CLASSES = 10, + ETH_SS_WOL_MODES = 11, + ETH_SS_SOF_TIMESTAMPING = 12, + ETH_SS_TS_TX_TYPES = 13, + ETH_SS_TS_RX_FILTERS = 14, + ETH_SS_UDP_TUNNEL_TYPES = 15, + ETH_SS_STATS_STD = 16, + ETH_SS_STATS_ETH_PHY = 17, + ETH_SS_STATS_ETH_MAC = 18, + ETH_SS_STATS_ETH_CTRL = 19, + ETH_SS_STATS_RMON = 20, + ETH_SS_COUNT = 21, +}; + +struct virtio_net_config { + __u8 mac[6]; + __virtio16 status; + __virtio16 max_virtqueue_pairs; + __virtio16 mtu; + __le32 speed; + __u8 duplex; + __u8 rss_max_key_size; + __le16 rss_max_indirection_table_length; + __le32 supported_hash_types; +}; + +struct virtio_net_hdr_v1 { + __u8 flags; + __u8 gso_type; + __virtio16 hdr_len; + __virtio16 gso_size; + union { + struct { + __virtio16 csum_start; + __virtio16 csum_offset; + }; + struct { + __virtio16 start; + __virtio16 offset; + } csum; + struct { + __le16 segments; + __le16 dup_acks; + } rsc; + }; + __virtio16 num_buffers; +}; + +struct virtio_net_hdr_v1_hash { + struct virtio_net_hdr_v1 hdr; + __le32 hash_value; + __le16 hash_report; + __le16 padding; +}; + +struct virtio_net_hdr_mrg_rxbuf { + struct virtio_net_hdr hdr; + __virtio16 num_buffers; +}; + +struct virtio_net_ctrl_hdr { + __u8 class; + __u8 cmd; +}; + +typedef __u8 virtio_net_ctrl_ack; + +struct virtio_net_ctrl_mac { + __virtio32 entries; + __u8 macs[0]; +}; + +struct virtio_net_ctrl_mq { + __virtio16 virtqueue_pairs; +}; + +struct virtio_net_ctrl_coal_tx { + __le32 tx_max_packets; + __le32 tx_usecs; +}; + +struct virtio_net_ctrl_coal_rx { + __le32 rx_max_packets; + __le32 rx_usecs; +}; + +struct virtio_net_ctrl_coal { + __le32 max_packets; + __le32 max_usecs; +}; + +struct virtio_net_ctrl_coal_vq { + __le16 vqn; + __le16 reserved; + struct virtio_net_ctrl_coal coal; +}; + +struct virtio_net_stats_capabilities { + __le64 supported_stats_types[1]; +}; + +struct virtio_net_ctrl_queue_stats { + struct { + __le16 vq_index; + __le16 reserved[3]; + __le64 types_bitmap[1]; + } stats[1]; +}; + +struct virtio_net_stats_reply_hdr { + __u8 type; + __u8 reserved; + __le16 vq_index; + __le16 reserved1; + __le16 size; +}; + +struct dim_cq_moder { + u16 usec; + u16 pkts; + u16 comps; + u8 cq_period_mode; + struct callback_head rcu; +}; + +struct dim_sample { + ktime_t time; + u32 pkt_ctr; + u32 byte_ctr; + u16 event_ctr; + u32 comp_ctr; +}; + +struct dim_stats { + int ppms; + int bpms; + int epms; + int cpms; + int cpe_ratio; +}; + +struct dim { + u8 state; + struct dim_stats prev_stats; + struct dim_sample start_sample; + struct dim_sample measuring_sample; + struct work_struct work; + void *priv; + u8 profile_ix; + u8 mode; + u8 tune_state; + u8 steps_right; + u8 steps_left; + u8 tired; +}; + +enum dim_cq_period_mode { + DIM_CQ_PERIOD_MODE_START_FROM_EQE = 0, + DIM_CQ_PERIOD_MODE_START_FROM_CQE = 1, + DIM_CQ_PERIOD_NUM_MODES = 2, +}; + +enum dim_state { + DIM_START_MEASURE = 0, + DIM_MEASURE_IN_PROGRESS = 1, + DIM_APPLY_NEW_PROFILE = 2, +}; + +struct rx_queue_attribute { + struct attribute attr; + ssize_t (*show)(struct netdev_rx_queue *, char *); + ssize_t (*store)(struct netdev_rx_queue *, const char *, size_t); +}; + +struct xdp_desc { + __u64 addr; + __u32 len; + __u32 options; +}; + +struct xdp_umem { + void *addrs; + u64 size; + u32 headroom; + u32 chunk_size; + u32 chunks; + u32 npgs; + struct user_struct *user; + refcount_t users; + u8 flags; + u8 tx_metadata_len; + bool zc; + struct page **pgs; + int id; + struct list_head xsk_dma_list; + struct work_struct work; +}; + +struct xdp_buff_xsk { + struct xdp_buff xdp; + u8 cb[24]; + dma_addr_t dma; + dma_addr_t frame_dma; + struct xsk_buff_pool *pool; + u64 orig_addr; + struct list_head free_list_node; + struct list_head xskb_list_node; +}; + +struct ewma_pkt_len { + long unsigned int internal; +}; + +struct virtnet_stat_desc { + char desc[32]; + size_t offset; + size_t qstat_offset; +}; + +struct virtnet_sq_free_stats { + u64 packets; + u64 bytes; + u64 napi_packets; + u64 napi_bytes; +}; + +struct virtnet_sq_stats { + struct u64_stats_sync syncp; + u64_stats_t packets; + u64_stats_t bytes; + u64_stats_t xdp_tx; + u64_stats_t xdp_tx_drops; + u64_stats_t kicks; + u64_stats_t tx_timeouts; + u64_stats_t stop; + u64_stats_t wake; +}; + +struct virtnet_rq_stats { + struct u64_stats_sync syncp; + u64_stats_t packets; + u64_stats_t bytes; + u64_stats_t drops; + u64_stats_t xdp_packets; + u64_stats_t xdp_tx; + u64_stats_t xdp_redirects; + u64_stats_t xdp_drops; + u64_stats_t kicks; +}; + +struct virtnet_interrupt_coalesce { + u32 max_packets; + u32 max_usecs; +}; + +struct virtnet_rq_dma { + dma_addr_t addr; + u32 ref; + u16 len; + u16 need_sync; +}; + +struct send_queue { + struct virtqueue *vq; + struct scatterlist sg[19]; + char name[16]; + struct virtnet_sq_stats stats; + struct virtnet_interrupt_coalesce intr_coal; + struct napi_struct napi; + bool reset; + struct xsk_buff_pool *xsk_pool; + dma_addr_t xsk_hdr_dma_addr; +}; + +struct receive_queue { + struct virtqueue *vq; + struct napi_struct napi; + struct bpf_prog *xdp_prog; + struct virtnet_rq_stats stats; + u16 calls; + bool dim_enabled; + struct mutex dim_lock; + struct dim dim; + u32 packets_in_napi; + struct virtnet_interrupt_coalesce intr_coal; + struct page *pages; + struct ewma_pkt_len mrg_avg_pkt_len; + struct page_frag alloc_frag; + struct scatterlist sg[19]; + unsigned int min_buf_len; + char name[16]; + long: 64; + long: 64; + long: 64; + struct xdp_rxq_info xdp_rxq; + struct virtnet_rq_dma *last_dma; + struct xsk_buff_pool *xsk_pool; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct xdp_rxq_info xsk_rxq_info; + struct xdp_buff **xsk_buffs; + bool do_dma; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct virtio_net_ctrl_rss { + u32 hash_types; + u16 indirection_table_mask; + u16 unclassified_queue; + u16 hash_cfg_reserved; + u16 max_tx_vq; + u8 hash_key_length; + u8 key[40]; + u16 *indirection_table; +}; + +struct control_buf { + struct virtio_net_ctrl_hdr hdr; + virtio_net_ctrl_ack status; +}; + +struct virtnet_info { + struct virtio_device *vdev; + struct virtqueue *cvq; + struct net_device *dev; + struct send_queue *sq; + struct receive_queue *rq; + unsigned int status; + u16 max_queue_pairs; + u16 curr_queue_pairs; + u16 xdp_queue_pairs; + bool xdp_enabled; + bool big_packets; + unsigned int big_packets_num_skbfrags; + bool mergeable_rx_bufs; + bool has_rss; + bool has_rss_hash_report; + u8 rss_key_size; + u16 rss_indir_table_size; + u32 rss_hash_types_supported; + u32 rss_hash_types_saved; + struct virtio_net_ctrl_rss rss; + bool has_cvq; + struct mutex cvq_lock; + bool any_header_sg; + u8 hdr_len; + struct delayed_work refill; + bool refill_enabled; + spinlock_t refill_lock; + struct work_struct config_work; + struct work_struct rx_mode_work; + bool rx_mode_work_enabled; + bool affinity_hint_set; + struct hlist_node node; + struct hlist_node node_dead; + struct control_buf *ctrl; + u8 duplex; + u32 speed; + bool rx_dim_enabled; + struct virtnet_interrupt_coalesce intr_coal_tx; + struct virtnet_interrupt_coalesce intr_coal_rx; + long unsigned int guest_offloads; + long unsigned int guest_offloads_capable; + struct failover *failover; + u64 device_stats_cap; +}; + +struct virtio_net_common_hdr { + union { + struct virtio_net_hdr hdr; + struct virtio_net_hdr_mrg_rxbuf mrg_hdr; + struct virtio_net_hdr_v1_hash hash_v1_hdr; + }; +}; + +struct virtnet_stats_ctx { + bool to_qstat; + u32 desc_num[3]; + u64 bitmap[3]; + u32 size[3]; + u64 *data; +}; + +struct phy_configure_opts_dp { + unsigned int link_rate; + unsigned int lanes; + unsigned int voltage[4]; + unsigned int pre[4]; + u8 ssc: 1; + u8 set_rate: 1; + u8 set_lanes: 1; + u8 set_voltages: 1; +}; + +struct phy_configure_opts_lvds { + unsigned int bits_per_lane_and_dclk_cycle; + long unsigned int differential_clk_rate; + unsigned int lanes; + bool is_slave; +}; + +struct phy_configure_opts_mipi_dphy { + unsigned int clk_miss; + unsigned int clk_post; + unsigned int clk_pre; + unsigned int clk_prepare; + unsigned int clk_settle; + unsigned int clk_term_en; + unsigned int clk_trail; + unsigned int clk_zero; + unsigned int d_term_en; + unsigned int eot; + unsigned int hs_exit; + unsigned int hs_prepare; + unsigned int hs_settle; + unsigned int hs_skip; + unsigned int hs_trail; + unsigned int hs_zero; + unsigned int init; + unsigned int lpx; + unsigned int ta_get; + unsigned int ta_go; + unsigned int ta_sure; + unsigned int wakeup; + long unsigned int hs_clk_rate; + long unsigned int lp_clk_rate; + unsigned char lanes; +}; + +enum phy_mode { + PHY_MODE_INVALID = 0, + PHY_MODE_USB_HOST = 1, + PHY_MODE_USB_HOST_LS = 2, + PHY_MODE_USB_HOST_FS = 3, + PHY_MODE_USB_HOST_HS = 4, + PHY_MODE_USB_HOST_SS = 5, + PHY_MODE_USB_DEVICE = 6, + PHY_MODE_USB_DEVICE_LS = 7, + PHY_MODE_USB_DEVICE_FS = 8, + PHY_MODE_USB_DEVICE_HS = 9, + PHY_MODE_USB_DEVICE_SS = 10, + PHY_MODE_USB_OTG = 11, + PHY_MODE_UFS_HS_A = 12, + PHY_MODE_UFS_HS_B = 13, + PHY_MODE_PCIE = 14, + PHY_MODE_ETHERNET = 15, + PHY_MODE_MIPI_DPHY = 16, + PHY_MODE_SATA = 17, + PHY_MODE_LVDS = 18, + PHY_MODE_DP = 19, +}; + +enum phy_media { + PHY_MEDIA_DEFAULT = 0, + PHY_MEDIA_SR = 1, + PHY_MEDIA_DAC = 2, +}; + +union phy_configure_opts { + struct phy_configure_opts_mipi_dphy mipi_dphy; + struct phy_configure_opts_dp dp; + struct phy_configure_opts_lvds lvds; +}; + +struct phy; + +struct phy_ops { + int (*init)(struct phy *); + int (*exit)(struct phy *); + int (*power_on)(struct phy *); + int (*power_off)(struct phy *); + int (*set_mode)(struct phy *, enum phy_mode, int); + int (*set_media)(struct phy *, enum phy_media); + int (*set_speed)(struct phy *, int); + int (*configure)(struct phy *, union phy_configure_opts *); + int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *); + int (*reset)(struct phy *); + int (*calibrate)(struct phy *); + int (*connect)(struct phy *, int); + int (*disconnect)(struct phy *, int); + void (*release)(struct phy *); + struct module *owner; +}; + +struct phy_attrs { + u32 bus_width; + u32 max_link_rate; + enum phy_mode mode; +}; + +struct phy { + struct device dev; + int id; + const struct phy_ops *ops; + struct mutex mutex; + int init_count; + int power_count; + struct phy_attrs attrs; + struct regulator *pwr; + struct dentry *debugfs; +}; + +struct usb_phy_roothub { + struct phy *phy; + struct list_head list; +}; + +enum wwan_port_type { + WWAN_PORT_AT = 0, + WWAN_PORT_MBIM = 1, + WWAN_PORT_QMI = 2, + WWAN_PORT_QCDM = 3, + WWAN_PORT_FIREHOSE = 4, + WWAN_PORT_XMMRPC = 5, + WWAN_PORT_FASTBOOT = 6, + __WWAN_PORT_MAX = 7, + WWAN_PORT_MAX = 6, + WWAN_PORT_UNKNOWN = 7, +}; + +struct wwan_port; + +struct wdm_device { + u8 *inbuf; + u8 *outbuf; + u8 *sbuf; + u8 *ubuf; + struct urb *command; + struct urb *response; + struct urb *validity; + struct usb_interface *intf; + struct usb_ctrlrequest *orq; + struct usb_ctrlrequest *irq; + spinlock_t iuspin; + long unsigned int flags; + u16 bufsize; + u16 wMaxCommand; + u16 wMaxPacketSize; + __le16 inum; + int length; + int read; + int count; + dma_addr_t shandle; + dma_addr_t ihandle; + struct mutex wlock; + struct mutex rlock; + wait_queue_head_t wait; + struct work_struct rxwork; + struct work_struct service_outs_intr; + int werr; + int rerr; + int resp_count; + struct list_head device_list; + int (*manage_power)(struct usb_interface *, int); + enum wwan_port_type wwanp_type; + struct wwan_port *wwanp; +}; + +struct freecom_cb_wrap { + u8 Type; + u8 Timeout; + u8 Atapi[12]; + u8 Filler[50]; +}; + +struct freecom_xfer_wrap { + u8 Type; + u8 Timeout; + __le32 Count; + u8 Pad[58]; +} __attribute__((packed)); + +struct freecom_status { + u8 Status; + u8 Reason; + __le16 Count; + u8 Pad[60]; +}; + +struct spcp8x5_private { + unsigned int quirks; + spinlock_t lock; + u8 line_control; +}; + +struct serio_device_id { + __u8 type; + __u8 extra; + __u8 id; + __u8 proto; +}; + +struct serio_driver; + +struct serio { + void *port_data; + char name[32]; + char phys[32]; + char firmware_id[128]; + bool manual_bind; + struct serio_device_id id; + spinlock_t lock; + int (*write)(struct serio *, unsigned char); + int (*open)(struct serio *); + void (*close)(struct serio *); + int (*start)(struct serio *); + void (*stop)(struct serio *); + struct serio *parent; + struct list_head child_node; + struct list_head children; + unsigned int depth; + struct serio_driver *drv; + struct mutex drv_mutex; + struct device dev; + struct list_head node; + struct mutex *ps2_cmd_mutex; +}; + +struct serio_driver { + const char *description; + const struct serio_device_id *id_table; + bool manual_bind; + void (*write_wakeup)(struct serio *); + irqreturn_t (*interrupt)(struct serio *, unsigned char, unsigned int); + int (*connect)(struct serio *, struct serio_driver *); + int (*reconnect)(struct serio *); + int (*fast_reconnect)(struct serio *); + void (*disconnect)(struct serio *); + void (*cleanup)(struct serio *); + struct device_driver driver; +}; + +enum ps2_disposition { + PS2_PROCESS = 0, + PS2_IGNORE = 1, + PS2_ERROR = 2, +}; + +struct ps2dev; + +typedef enum ps2_disposition (*ps2_pre_receive_handler_t)(struct ps2dev *, u8, unsigned int); + +typedef void (*ps2_receive_handler_t)(struct ps2dev *, u8); + +struct ps2dev { + struct serio *serio; + struct mutex cmd_mutex; + wait_queue_head_t wait; + long unsigned int flags; + u8 cmdbuf[8]; + u8 cmdcnt; + u8 nak; + ps2_pre_receive_handler_t pre_receive_handler; + ps2_receive_handler_t receive_handler; +}; + +struct i2c_devinfo { + struct list_head list; + int busnum; + struct i2c_board_info board_info; +}; + +enum { + POWER_SUPPLY_STATUS_UNKNOWN = 0, + POWER_SUPPLY_STATUS_CHARGING = 1, + POWER_SUPPLY_STATUS_DISCHARGING = 2, + POWER_SUPPLY_STATUS_NOT_CHARGING = 3, + POWER_SUPPLY_STATUS_FULL = 4, +}; + +enum { + POWER_SUPPLY_CHARGE_TYPE_UNKNOWN = 0, + POWER_SUPPLY_CHARGE_TYPE_NONE = 1, + POWER_SUPPLY_CHARGE_TYPE_TRICKLE = 2, + POWER_SUPPLY_CHARGE_TYPE_FAST = 3, + POWER_SUPPLY_CHARGE_TYPE_STANDARD = 4, + POWER_SUPPLY_CHARGE_TYPE_ADAPTIVE = 5, + POWER_SUPPLY_CHARGE_TYPE_CUSTOM = 6, + POWER_SUPPLY_CHARGE_TYPE_LONGLIFE = 7, + POWER_SUPPLY_CHARGE_TYPE_BYPASS = 8, +}; + +enum { + POWER_SUPPLY_HEALTH_UNKNOWN = 0, + POWER_SUPPLY_HEALTH_GOOD = 1, + POWER_SUPPLY_HEALTH_OVERHEAT = 2, + POWER_SUPPLY_HEALTH_DEAD = 3, + POWER_SUPPLY_HEALTH_OVERVOLTAGE = 4, + POWER_SUPPLY_HEALTH_UNSPEC_FAILURE = 5, + POWER_SUPPLY_HEALTH_COLD = 6, + POWER_SUPPLY_HEALTH_WATCHDOG_TIMER_EXPIRE = 7, + POWER_SUPPLY_HEALTH_SAFETY_TIMER_EXPIRE = 8, + POWER_SUPPLY_HEALTH_OVERCURRENT = 9, + POWER_SUPPLY_HEALTH_CALIBRATION_REQUIRED = 10, + POWER_SUPPLY_HEALTH_WARM = 11, + POWER_SUPPLY_HEALTH_COOL = 12, + POWER_SUPPLY_HEALTH_HOT = 13, + POWER_SUPPLY_HEALTH_NO_BATTERY = 14, +}; + +enum { + POWER_SUPPLY_TECHNOLOGY_UNKNOWN = 0, + POWER_SUPPLY_TECHNOLOGY_NiMH = 1, + POWER_SUPPLY_TECHNOLOGY_LION = 2, + POWER_SUPPLY_TECHNOLOGY_LIPO = 3, + POWER_SUPPLY_TECHNOLOGY_LiFe = 4, + POWER_SUPPLY_TECHNOLOGY_NiCd = 5, + POWER_SUPPLY_TECHNOLOGY_LiMn = 6, +}; + +enum { + POWER_SUPPLY_CAPACITY_LEVEL_UNKNOWN = 0, + POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL = 1, + POWER_SUPPLY_CAPACITY_LEVEL_LOW = 2, + POWER_SUPPLY_CAPACITY_LEVEL_NORMAL = 3, + POWER_SUPPLY_CAPACITY_LEVEL_HIGH = 4, + POWER_SUPPLY_CAPACITY_LEVEL_FULL = 5, +}; + +enum { + POWER_SUPPLY_SCOPE_UNKNOWN = 0, + POWER_SUPPLY_SCOPE_SYSTEM = 1, + POWER_SUPPLY_SCOPE_DEVICE = 2, +}; + +enum power_supply_property { + POWER_SUPPLY_PROP_STATUS = 0, + POWER_SUPPLY_PROP_CHARGE_TYPE = 1, + POWER_SUPPLY_PROP_HEALTH = 2, + POWER_SUPPLY_PROP_PRESENT = 3, + POWER_SUPPLY_PROP_ONLINE = 4, + POWER_SUPPLY_PROP_AUTHENTIC = 5, + POWER_SUPPLY_PROP_TECHNOLOGY = 6, + POWER_SUPPLY_PROP_CYCLE_COUNT = 7, + POWER_SUPPLY_PROP_VOLTAGE_MAX = 8, + POWER_SUPPLY_PROP_VOLTAGE_MIN = 9, + POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN = 10, + POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN = 11, + POWER_SUPPLY_PROP_VOLTAGE_NOW = 12, + POWER_SUPPLY_PROP_VOLTAGE_AVG = 13, + POWER_SUPPLY_PROP_VOLTAGE_OCV = 14, + POWER_SUPPLY_PROP_VOLTAGE_BOOT = 15, + POWER_SUPPLY_PROP_CURRENT_MAX = 16, + POWER_SUPPLY_PROP_CURRENT_NOW = 17, + POWER_SUPPLY_PROP_CURRENT_AVG = 18, + POWER_SUPPLY_PROP_CURRENT_BOOT = 19, + POWER_SUPPLY_PROP_POWER_NOW = 20, + POWER_SUPPLY_PROP_POWER_AVG = 21, + POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN = 22, + POWER_SUPPLY_PROP_CHARGE_EMPTY_DESIGN = 23, + POWER_SUPPLY_PROP_CHARGE_FULL = 24, + POWER_SUPPLY_PROP_CHARGE_EMPTY = 25, + POWER_SUPPLY_PROP_CHARGE_NOW = 26, + POWER_SUPPLY_PROP_CHARGE_AVG = 27, + POWER_SUPPLY_PROP_CHARGE_COUNTER = 28, + POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT = 29, + POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX = 30, + POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE = 31, + POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE_MAX = 32, + POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT = 33, + POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT_MAX = 34, + POWER_SUPPLY_PROP_CHARGE_CONTROL_START_THRESHOLD = 35, + POWER_SUPPLY_PROP_CHARGE_CONTROL_END_THRESHOLD = 36, + POWER_SUPPLY_PROP_CHARGE_BEHAVIOUR = 37, + POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT = 38, + POWER_SUPPLY_PROP_INPUT_VOLTAGE_LIMIT = 39, + POWER_SUPPLY_PROP_INPUT_POWER_LIMIT = 40, + POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN = 41, + POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN = 42, + POWER_SUPPLY_PROP_ENERGY_FULL = 43, + POWER_SUPPLY_PROP_ENERGY_EMPTY = 44, + POWER_SUPPLY_PROP_ENERGY_NOW = 45, + POWER_SUPPLY_PROP_ENERGY_AVG = 46, + POWER_SUPPLY_PROP_CAPACITY = 47, + POWER_SUPPLY_PROP_CAPACITY_ALERT_MIN = 48, + POWER_SUPPLY_PROP_CAPACITY_ALERT_MAX = 49, + POWER_SUPPLY_PROP_CAPACITY_ERROR_MARGIN = 50, + POWER_SUPPLY_PROP_CAPACITY_LEVEL = 51, + POWER_SUPPLY_PROP_TEMP = 52, + POWER_SUPPLY_PROP_TEMP_MAX = 53, + POWER_SUPPLY_PROP_TEMP_MIN = 54, + POWER_SUPPLY_PROP_TEMP_ALERT_MIN = 55, + POWER_SUPPLY_PROP_TEMP_ALERT_MAX = 56, + POWER_SUPPLY_PROP_TEMP_AMBIENT = 57, + POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MIN = 58, + POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MAX = 59, + POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW = 60, + POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG = 61, + POWER_SUPPLY_PROP_TIME_TO_FULL_NOW = 62, + POWER_SUPPLY_PROP_TIME_TO_FULL_AVG = 63, + POWER_SUPPLY_PROP_TYPE = 64, + POWER_SUPPLY_PROP_USB_TYPE = 65, + POWER_SUPPLY_PROP_SCOPE = 66, + POWER_SUPPLY_PROP_PRECHARGE_CURRENT = 67, + POWER_SUPPLY_PROP_CHARGE_TERM_CURRENT = 68, + POWER_SUPPLY_PROP_CALIBRATE = 69, + POWER_SUPPLY_PROP_MANUFACTURE_YEAR = 70, + POWER_SUPPLY_PROP_MANUFACTURE_MONTH = 71, + POWER_SUPPLY_PROP_MANUFACTURE_DAY = 72, + POWER_SUPPLY_PROP_MODEL_NAME = 73, + POWER_SUPPLY_PROP_MANUFACTURER = 74, + POWER_SUPPLY_PROP_SERIAL_NUMBER = 75, +}; + +enum power_supply_type { + POWER_SUPPLY_TYPE_UNKNOWN = 0, + POWER_SUPPLY_TYPE_BATTERY = 1, + POWER_SUPPLY_TYPE_UPS = 2, + POWER_SUPPLY_TYPE_MAINS = 3, + POWER_SUPPLY_TYPE_USB = 4, + POWER_SUPPLY_TYPE_USB_DCP = 5, + POWER_SUPPLY_TYPE_USB_CDP = 6, + POWER_SUPPLY_TYPE_USB_ACA = 7, + POWER_SUPPLY_TYPE_USB_TYPE_C = 8, + POWER_SUPPLY_TYPE_USB_PD = 9, + POWER_SUPPLY_TYPE_USB_PD_DRP = 10, + POWER_SUPPLY_TYPE_APPLE_BRICK_ID = 11, + POWER_SUPPLY_TYPE_WIRELESS = 12, +}; + +enum power_supply_usb_type { + POWER_SUPPLY_USB_TYPE_UNKNOWN = 0, + POWER_SUPPLY_USB_TYPE_SDP = 1, + POWER_SUPPLY_USB_TYPE_DCP = 2, + POWER_SUPPLY_USB_TYPE_CDP = 3, + POWER_SUPPLY_USB_TYPE_ACA = 4, + POWER_SUPPLY_USB_TYPE_C = 5, + POWER_SUPPLY_USB_TYPE_PD = 6, + POWER_SUPPLY_USB_TYPE_PD_DRP = 7, + POWER_SUPPLY_USB_TYPE_PD_PPS = 8, + POWER_SUPPLY_USB_TYPE_APPLE_BRICK_ID = 9, +}; + +enum power_supply_charge_behaviour { + POWER_SUPPLY_CHARGE_BEHAVIOUR_AUTO = 0, + POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE = 1, + POWER_SUPPLY_CHARGE_BEHAVIOUR_FORCE_DISCHARGE = 2, +}; + +union power_supply_propval { + int intval; + const char *strval; +}; + +struct power_supply; + +struct power_supply_desc { + const char *name; + enum power_supply_type type; + u8 charge_behaviours; + u32 usb_types; + const enum power_supply_property *properties; + size_t num_properties; + int (*get_property)(struct power_supply *, enum power_supply_property, union power_supply_propval *); + int (*set_property)(struct power_supply *, enum power_supply_property, const union power_supply_propval *); + int (*property_is_writeable)(struct power_supply *, enum power_supply_property); + void (*external_power_changed)(struct power_supply *); + void (*set_charged)(struct power_supply *); + bool no_thermal; + int use_for_apm; +}; + +struct power_supply_battery_info; + +struct power_supply { + const struct power_supply_desc *desc; + char **supplied_to; + size_t num_supplicants; + char **supplied_from; + size_t num_supplies; + struct device_node *of_node; + void *drv_data; + struct device dev; + struct work_struct changed_work; + struct delayed_work deferred_register_work; + spinlock_t changed_lock; + bool changed; + bool initialized; + bool removing; + atomic_t use_cnt; + struct power_supply_battery_info *battery_info; +}; + +struct power_supply_maintenance_charge_table; + +struct power_supply_battery_ocv_table; + +struct power_supply_resistance_temp_table; + +struct power_supply_vbat_ri_table; + +struct power_supply_battery_info { + unsigned int technology; + int energy_full_design_uwh; + int charge_full_design_uah; + int voltage_min_design_uv; + int voltage_max_design_uv; + int tricklecharge_current_ua; + int precharge_current_ua; + int precharge_voltage_max_uv; + int charge_term_current_ua; + int charge_restart_voltage_uv; + int overvoltage_limit_uv; + int constant_charge_current_max_ua; + int constant_charge_voltage_max_uv; + const struct power_supply_maintenance_charge_table *maintenance_charge; + int maintenance_charge_size; + int alert_low_temp_charge_current_ua; + int alert_low_temp_charge_voltage_uv; + int alert_high_temp_charge_current_ua; + int alert_high_temp_charge_voltage_uv; + int factory_internal_resistance_uohm; + int factory_internal_resistance_charging_uohm; + int ocv_temp[20]; + int temp_ambient_alert_min; + int temp_ambient_alert_max; + int temp_alert_min; + int temp_alert_max; + int temp_min; + int temp_max; + struct power_supply_battery_ocv_table *ocv_table[20]; + int ocv_table_size[20]; + struct power_supply_resistance_temp_table *resist_table; + int resist_table_size; + const struct power_supply_vbat_ri_table *vbat2ri_discharging; + int vbat2ri_discharging_size; + const struct power_supply_vbat_ri_table *vbat2ri_charging; + int vbat2ri_charging_size; + int bti_resistance_ohm; + int bti_resistance_tolerance; +}; + +struct power_supply_battery_ocv_table { + int ocv; + int capacity; +}; + +struct power_supply_resistance_temp_table { + int temp; + int resistance; +}; + +struct power_supply_vbat_ri_table { + int vbat_uv; + int ri_uohm; +}; + +struct power_supply_maintenance_charge_table { + int charge_current_max_ua; + int charge_voltage_max_uv; + int charge_safety_timer_minutes; +}; + +struct power_supply_attr { + const char *prop_name; + char attr_name[31]; + struct device_attribute dev_attr; + const char * const *text_values; + int text_values_len; +}; + +enum { + BIOSET_NEED_BVECS = 1, + BIOSET_NEED_RESCUER = 2, + BIOSET_PERCPU_CACHE = 4, +}; + +struct bio_integrity_payload { + struct bio *bip_bio; + struct bvec_iter bip_iter; + short unsigned int bip_vcnt; + short unsigned int bip_max_vcnt; + short unsigned int bip_flags; + int: 0; + struct bvec_iter bio_iter; + struct work_struct bip_work; + struct bio_vec *bip_vec; + struct bio_vec bip_inline_vecs[0]; +}; + +struct dm_arg_set { + unsigned int argc; + char **argv; +}; + +struct dm_arg { + unsigned int min; + unsigned int max; + char *error; +}; + +struct convert_context { + struct completion restart; + struct bio *bio_in; + struct bvec_iter iter_in; + struct bio *bio_out; + struct bvec_iter iter_out; + atomic_t cc_pending; + unsigned int tag_offset; + u64 cc_sector; + union { + struct skcipher_request *req; + struct aead_request *req_aead; + } r; + bool aead_recheck; + bool aead_failed; +}; + +struct crypt_config; + +struct dm_crypt_io { + struct crypt_config *cc; + struct bio *base_bio; + u8 *integrity_metadata; + bool integrity_metadata_from_pool: 1; + struct work_struct work; + struct convert_context ctx; + atomic_t io_pending; + blk_status_t error; + sector_t sector; + struct bvec_iter saved_bi_iter; + struct rb_node rb_node; +}; + +struct iv_benbi_private { + int shift; +}; + +struct iv_lmk_private { + struct crypto_shash *hash_tfm; + u8 *seed; +}; + +struct iv_tcw_private { + struct crypto_shash *crc32_tfm; + u8 *iv_seed; + u8 *whitening; +}; + +struct iv_elephant_private { + struct crypto_skcipher *tfm; +}; + +struct crypt_iv_operations; + +struct crypt_config { + struct dm_dev *dev; + sector_t start; + struct percpu_counter n_allocated_pages; + struct workqueue_struct *io_queue; + struct workqueue_struct *crypt_queue; + spinlock_t write_thread_lock; + struct task_struct *write_thread; + struct rb_root write_tree; + char *cipher_string; + char *cipher_auth; + char *key_string; + const struct crypt_iv_operations *iv_gen_ops; + union { + struct iv_benbi_private benbi; + struct iv_lmk_private lmk; + struct iv_tcw_private tcw; + struct iv_elephant_private elephant; + } iv_gen_private; + u64 iv_offset; + unsigned int iv_size; + short unsigned int sector_size; + unsigned char sector_shift; + union { + struct crypto_skcipher **tfms; + struct crypto_aead **tfms_aead; + } cipher_tfm; + unsigned int tfms_count; + int workqueue_id; + long unsigned int cipher_flags; + unsigned int dmreq_start; + unsigned int per_bio_data_size; + long unsigned int flags; + unsigned int key_size; + unsigned int key_parts; + unsigned int key_extra_size; + unsigned int key_mac_size; + unsigned int integrity_tag_size; + unsigned int integrity_iv_size; + unsigned int used_tag_size; + unsigned int tuple_size; + unsigned int tag_pool_max_sectors; + mempool_t tag_pool; + mempool_t req_pool; + mempool_t page_pool; + struct bio_set bs; + struct mutex bio_alloc_lock; + u8 *authenc_key; + u8 key[0]; +}; + +struct dm_crypt_request { + struct convert_context *ctx; + struct scatterlist sg_in[4]; + struct scatterlist sg_out[4]; + u64 iv_sector; +}; + +struct crypt_iv_operations { + int (*ctr)(struct crypt_config *, struct dm_target *, const char *); + void (*dtr)(struct crypt_config *); + int (*init)(struct crypt_config *); + int (*wipe)(struct crypt_config *); + int (*generator)(struct crypt_config *, u8 *, struct dm_crypt_request *); + int (*post)(struct crypt_config *, u8 *, struct dm_crypt_request *); +}; + +enum flags { + DM_CRYPT_SUSPENDED = 0, + DM_CRYPT_KEY_VALID = 1, + DM_CRYPT_SAME_CPU = 2, + DM_CRYPT_HIGH_PRIORITY = 3, + DM_CRYPT_NO_OFFLOAD = 4, + DM_CRYPT_NO_READ_WORKQUEUE = 5, + DM_CRYPT_NO_WRITE_WORKQUEUE = 6, + DM_CRYPT_WRITE_INLINE = 7, +}; + +enum cipher_flags { + CRYPT_MODE_INTEGRITY_AEAD = 0, + CRYPT_IV_LARGE_SECTORS = 1, + CRYPT_ENCRYPT_PREPROCESS = 2, + CRYPT_KEY_MAC_SIZE_SET = 3, +}; + +struct gpio_array; + +struct gpio_descs { + struct gpio_array *info; + unsigned int ndescs; + struct gpio_desc *desc[0]; +}; + +struct mmc_pwrseq_ops; + +struct mmc_pwrseq { + const struct mmc_pwrseq_ops *ops; + struct device *dev; + struct list_head pwrseq_node; + struct module *owner; +}; + +struct mmc_pwrseq_ops { + void (*pre_power_on)(struct mmc_host *); + void (*post_power_on)(struct mmc_host *); + void (*power_off)(struct mmc_host *); + void (*reset)(struct mmc_host *); +}; + +struct mmc_pwrseq_simple { + struct mmc_pwrseq pwrseq; + bool clk_enabled; + u32 post_power_on_delay_ms; + u32 power_off_delay_us; + struct clk *ext_clk; + struct gpio_descs *reset_gpios; +}; + +struct of_changeset_entry { + struct list_head node; + long unsigned int action; + struct device_node *np; + struct property *prop; + struct property *old_prop; +}; + +struct of_changeset { + struct list_head entries; +}; + +enum of_overlay_notify_action { + OF_OVERLAY_INIT = 0, + OF_OVERLAY_PRE_APPLY = 1, + OF_OVERLAY_POST_APPLY = 2, + OF_OVERLAY_PRE_REMOVE = 3, + OF_OVERLAY_POST_REMOVE = 4, +}; + +struct of_overlay_notify_data { + struct device_node *overlay; + struct device_node *target; +}; + +struct target { + struct device_node *np; + bool in_livetree; +}; + +struct fragment { + struct device_node *overlay; + struct device_node *target; +}; + +struct overlay_changeset { + int id; + struct list_head ovcs_list; + const void *new_fdt; + const void *overlay_mem; + struct device_node *overlay_root; + enum of_overlay_notify_action notify_state; + int count; + struct fragment *fragments; + bool symbols_fragment; + struct of_changeset cset; +}; + +struct rtgenmsg { + unsigned char rtgen_family; +}; + +enum { + NETNSA_NONE = 0, + NETNSA_NSID = 1, + NETNSA_PID = 2, + NETNSA_FD = 3, + NETNSA_TARGET_NSID = 4, + NETNSA_CURRENT_NSID = 5, + __NETNSA_MAX = 6, +}; + +struct pcpu_gen_cookie { + local_t nesting; + u64 last; +}; + +struct gen_cookie { + struct pcpu_gen_cookie *local; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + atomic64_t forward_last; + atomic64_t reverse_last; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct net_fill_args { + u32 portid; + u32 seq; + int flags; + int cmd; + int nsid; + bool add_ref; + int ref_nsid; +}; + +struct rtnl_net_dump_cb { + struct net *tgt_net; + struct net *ref_net; + struct sk_buff *skb; + struct net_fill_args fillargs; + int idx; + int s_idx; +}; + +struct flow_dissector_mpls_lse { + u32 mpls_ttl: 8; + u32 mpls_bos: 1; + u32 mpls_tc: 3; + u32 mpls_label: 20; +}; + +struct flow_dissector_key_mpls { + struct flow_dissector_mpls_lse ls[7]; + u8 used_lses; +}; + +struct flow_dissector_key_enc_opts { + u8 data[255]; + u8 len; + u32 dst_opt_type; +}; + +struct flow_dissector_key_arp { + __u32 sip; + __u32 tip; + __u8 op; + unsigned char sha[6]; + unsigned char tha[6]; +}; + +struct flow_dissector_key_ports_range { + union { + struct flow_dissector_key_ports tp; + struct { + struct flow_dissector_key_ports tp_min; + struct flow_dissector_key_ports tp_max; + }; + }; +}; + +struct flow_dissector_key_ct { + u16 ct_state; + u16 ct_zone; + u32 ct_mark; + u32 ct_labels[4]; +}; + +struct flow_dissector_key_pppoe { + __be16 session_id; + __be16 ppp_proto; + __be16 type; +}; + +struct flow_dissector_key_l2tpv3 { + __be32 session_id; +}; + +struct flow_dissector_key_ipsec { + __be32 spi; +}; + +struct flow_match_meta { + struct flow_dissector_key_meta *key; + struct flow_dissector_key_meta *mask; +}; + +struct flow_match_basic { + struct flow_dissector_key_basic *key; + struct flow_dissector_key_basic *mask; +}; + +struct flow_match_control { + struct flow_dissector_key_control *key; + struct flow_dissector_key_control *mask; +}; + +struct flow_match_eth_addrs { + struct flow_dissector_key_eth_addrs *key; + struct flow_dissector_key_eth_addrs *mask; +}; + +struct flow_match_vlan { + struct flow_dissector_key_vlan *key; + struct flow_dissector_key_vlan *mask; +}; + +struct flow_match_arp { + struct flow_dissector_key_arp *key; + struct flow_dissector_key_arp *mask; +}; + +struct flow_match_ipv4_addrs { + struct flow_dissector_key_ipv4_addrs *key; + struct flow_dissector_key_ipv4_addrs *mask; +}; + +struct flow_match_ipv6_addrs { + struct flow_dissector_key_ipv6_addrs *key; + struct flow_dissector_key_ipv6_addrs *mask; +}; + +struct flow_match_ip { + struct flow_dissector_key_ip *key; + struct flow_dissector_key_ip *mask; +}; + +struct flow_match_ports { + struct flow_dissector_key_ports *key; + struct flow_dissector_key_ports *mask; +}; + +struct flow_match_ports_range { + struct flow_dissector_key_ports_range *key; + struct flow_dissector_key_ports_range *mask; +}; + +struct flow_match_icmp { + struct flow_dissector_key_icmp *key; + struct flow_dissector_key_icmp *mask; +}; + +struct flow_match_tcp { + struct flow_dissector_key_tcp *key; + struct flow_dissector_key_tcp *mask; +}; + +struct flow_match_ipsec { + struct flow_dissector_key_ipsec *key; + struct flow_dissector_key_ipsec *mask; +}; + +struct flow_match_mpls { + struct flow_dissector_key_mpls *key; + struct flow_dissector_key_mpls *mask; +}; + +struct flow_match_enc_keyid { + struct flow_dissector_key_keyid *key; + struct flow_dissector_key_keyid *mask; +}; + +struct flow_match_enc_opts { + struct flow_dissector_key_enc_opts *key; + struct flow_dissector_key_enc_opts *mask; +}; + +struct flow_match_ct { + struct flow_dissector_key_ct *key; + struct flow_dissector_key_ct *mask; +}; + +struct flow_match_pppoe { + struct flow_dissector_key_pppoe *key; + struct flow_dissector_key_pppoe *mask; +}; + +struct flow_match_l2tpv3 { + struct flow_dissector_key_l2tpv3 *key; + struct flow_dissector_key_l2tpv3 *mask; +}; + +struct flow_indr_dev { + struct list_head list; + flow_indr_block_bind_cb_t *cb; + void *cb_priv; + refcount_t refcnt; +}; + +struct flow_indir_dev_info { + void *data; + struct net_device *dev; + struct Qdisc *sch; + enum tc_setup_type type; + void (*cleanup)(struct flow_block_cb *); + struct list_head list; + enum flow_block_command command; + enum flow_block_binder_type binder_type; + struct list_head *cb_list; +}; + +enum { + BPF_F_INGRESS = 1, + BPF_F_BROADCAST = 8, + BPF_F_EXCLUDE_INGRESS = 16, +}; + +enum { + BPF_SOCK_OPS_VOID = 0, + BPF_SOCK_OPS_TIMEOUT_INIT = 1, + BPF_SOCK_OPS_RWND_INIT = 2, + BPF_SOCK_OPS_TCP_CONNECT_CB = 3, + BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 4, + BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 5, + BPF_SOCK_OPS_NEEDS_ECN = 6, + BPF_SOCK_OPS_BASE_RTT = 7, + BPF_SOCK_OPS_RTO_CB = 8, + BPF_SOCK_OPS_RETRANS_CB = 9, + BPF_SOCK_OPS_STATE_CB = 10, + BPF_SOCK_OPS_TCP_LISTEN_CB = 11, + BPF_SOCK_OPS_RTT_CB = 12, + BPF_SOCK_OPS_PARSE_HDR_OPT_CB = 13, + BPF_SOCK_OPS_HDR_OPT_LEN_CB = 14, + BPF_SOCK_OPS_WRITE_HDR_OPT_CB = 15, +}; + +struct bpf_link_primer { + struct bpf_link *link; + struct file *file; + int fd; + u32 id; +}; + +struct bpf_sock_ops_kern { + struct sock *sk; + union { + u32 args[4]; + u32 reply; + u32 replylong[4]; + }; + struct sk_buff *syn_skb; + struct sk_buff *skb; + void *skb_data_end; + u8 op; + u8 is_fullsock; + u8 remaining_opt_len; + u64 temp; +}; + +struct sk_psock_link { + struct list_head list; + struct bpf_map *map; + void *link_raw; +}; + +struct bpf_stab { + struct bpf_map map; + struct sock **sks; + struct sk_psock_progs progs; + spinlock_t lock; +}; + +typedef u64 (*btf_bpf_sock_map_update)(struct bpf_sock_ops_kern *, struct bpf_map *, void *, u64); + +typedef u64 (*btf_bpf_sk_redirect_map)(struct sk_buff *, struct bpf_map *, u32, u64); + +typedef u64 (*btf_bpf_msg_redirect_map)(struct sk_msg *, struct bpf_map *, u32, u64); + +struct sock_map_seq_info { + struct bpf_map *map; + struct sock *sk; + u32 index; +}; + +struct bpf_iter__sockmap { + union { + struct bpf_iter_meta *meta; + }; + union { + struct bpf_map *map; + }; + union { + void *key; + }; + union { + struct sock *sk; + }; +}; + +struct bpf_shtab_elem { + struct callback_head rcu; + u32 hash; + struct sock *sk; + struct hlist_node node; + u8 key[0]; +}; + +struct bpf_shtab_bucket { + struct hlist_head head; + spinlock_t lock; +}; + +struct bpf_shtab { + struct bpf_map map; + struct bpf_shtab_bucket *buckets; + u32 buckets_num; + u32 elem_size; + struct sk_psock_progs progs; + atomic_t count; +}; + +typedef u64 (*btf_bpf_sock_hash_update)(struct bpf_sock_ops_kern *, struct bpf_map *, void *, u64); + +typedef u64 (*btf_bpf_sk_redirect_hash)(struct sk_buff *, struct bpf_map *, void *, u64); + +typedef u64 (*btf_bpf_msg_redirect_hash)(struct sk_msg *, struct bpf_map *, void *, u64); + +struct sock_hash_seq_info { + struct bpf_map *map; + struct bpf_shtab *htab; + u32 bucket_id; +}; + +struct sockmap_link { + struct bpf_link link; + struct bpf_map *map; + enum bpf_attach_type attach_type; +}; + +struct tc_act_bpf { + __u32 index; + __u32 capab; + int action; + int refcnt; + int bindcnt; +}; + +enum { + TCA_ACT_BPF_UNSPEC = 0, + TCA_ACT_BPF_TM = 1, + TCA_ACT_BPF_PARMS = 2, + TCA_ACT_BPF_OPS_LEN = 3, + TCA_ACT_BPF_OPS = 4, + TCA_ACT_BPF_FD = 5, + TCA_ACT_BPF_NAME = 6, + TCA_ACT_BPF_PAD = 7, + TCA_ACT_BPF_TAG = 8, + TCA_ACT_BPF_ID = 9, + __TCA_ACT_BPF_MAX = 10, +}; + +struct tcf_bpf { + struct tc_action common; + struct bpf_prog *filter; + union { + u32 bpf_fd; + u16 bpf_num_ops; + }; + struct sock_filter *bpf_ops; + const char *bpf_name; +}; + +struct tcf_bpf_cfg { + struct bpf_prog *filter; + struct sock_filter *bpf_ops; + const char *bpf_name; + u16 bpf_num_ops; + bool is_ebpf; +}; + +enum { + TCA_ROUTE4_UNSPEC = 0, + TCA_ROUTE4_CLASSID = 1, + TCA_ROUTE4_TO = 2, + TCA_ROUTE4_FROM = 3, + TCA_ROUTE4_IIF = 4, + TCA_ROUTE4_POLICE = 5, + TCA_ROUTE4_ACT = 6, + __TCA_ROUTE4_MAX = 7, +}; + +struct route4_filter; + +struct route4_fastmap { + struct route4_filter *filter; + u32 id; + int iif; +}; + +struct route4_bucket; + +struct route4_filter { + struct route4_filter *next; + u32 id; + int iif; + struct tcf_result res; + struct tcf_exts exts; + u32 handle; + struct route4_bucket *bkt; + struct tcf_proto *tp; + struct rcu_work rwork; +}; + +struct route4_head { + struct route4_fastmap fastmap[16]; + struct route4_bucket *table[257]; + struct callback_head rcu; +}; + +struct route4_bucket { + struct route4_filter *ht[33]; + struct callback_head rcu; +}; + +struct phylib_stubs { + int (*hwtstamp_get)(struct phy_device *, struct kernel_hwtstamp_config *); + int (*hwtstamp_set)(struct phy_device *, struct kernel_hwtstamp_config *, struct netlink_ext_ack *); + void (*get_phy_stats)(struct phy_device *, struct ethtool_eth_phy_stats *, struct ethtool_phy_stats *); + void (*get_link_ext_stats)(struct phy_device *, struct ethtool_link_ext_stats *); +}; + +struct linkstate_reply_data { + struct ethnl_reply_data base; + int link; + int sqi; + int sqi_max; + struct ethtool_link_ext_stats link_stats; + bool link_ext_state_provided; + struct ethtool_link_ext_state_info ethtool_link_ext_state_info; +}; + +enum ethtool_c33_pse_ext_state { + ETHTOOL_C33_PSE_EXT_STATE_ERROR_CONDITION = 1, + ETHTOOL_C33_PSE_EXT_STATE_MR_MPS_VALID = 2, + ETHTOOL_C33_PSE_EXT_STATE_MR_PSE_ENABLE = 3, + ETHTOOL_C33_PSE_EXT_STATE_OPTION_DETECT_TED = 4, + ETHTOOL_C33_PSE_EXT_STATE_OPTION_VPORT_LIM = 5, + ETHTOOL_C33_PSE_EXT_STATE_OVLD_DETECTED = 6, + ETHTOOL_C33_PSE_EXT_STATE_PD_DLL_POWER_TYPE = 7, + ETHTOOL_C33_PSE_EXT_STATE_POWER_NOT_AVAILABLE = 8, + ETHTOOL_C33_PSE_EXT_STATE_SHORT_DETECTED = 9, +}; + +enum ethtool_c33_pse_ext_substate_error_condition { + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_NON_EXISTING_PORT = 1, + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_UNDEFINED_PORT = 2, + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_INTERNAL_HW_FAULT = 3, + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_COMM_ERROR_AFTER_FORCE_ON = 4, + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_UNKNOWN_PORT_STATUS = 5, + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_HOST_CRASH_TURN_OFF = 6, + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_HOST_CRASH_FORCE_SHUTDOWN = 7, + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_CONFIG_CHANGE = 8, + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_DETECTED_OVER_TEMP = 9, +}; + +enum ethtool_c33_pse_ext_substate_mr_pse_enable { + ETHTOOL_C33_PSE_EXT_SUBSTATE_MR_PSE_ENABLE_DISABLE_PIN_ACTIVE = 1, +}; + +enum ethtool_c33_pse_ext_substate_option_detect_ted { + ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_DETECT_TED_DET_IN_PROCESS = 1, + ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_DETECT_TED_CONNECTION_CHECK_ERROR = 2, +}; + +enum ethtool_c33_pse_ext_substate_option_vport_lim { + ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_VPORT_LIM_HIGH_VOLTAGE = 1, + ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_VPORT_LIM_LOW_VOLTAGE = 2, + ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_VPORT_LIM_VOLTAGE_INJECTION = 3, +}; + +enum ethtool_c33_pse_ext_substate_ovld_detected { + ETHTOOL_C33_PSE_EXT_SUBSTATE_OVLD_DETECTED_OVERLOAD = 1, +}; + +enum ethtool_c33_pse_ext_substate_power_not_available { + ETHTOOL_C33_PSE_EXT_SUBSTATE_POWER_NOT_AVAILABLE_BUDGET_EXCEEDED = 1, + ETHTOOL_C33_PSE_EXT_SUBSTATE_POWER_NOT_AVAILABLE_PORT_PW_LIMIT_EXCEEDS_CONTROLLER_BUDGET = 2, + ETHTOOL_C33_PSE_EXT_SUBSTATE_POWER_NOT_AVAILABLE_PD_REQUEST_EXCEEDS_PORT_LIMIT = 3, + ETHTOOL_C33_PSE_EXT_SUBSTATE_POWER_NOT_AVAILABLE_HW_PW_LIMIT = 4, +}; + +enum ethtool_c33_pse_ext_substate_short_detected { + ETHTOOL_C33_PSE_EXT_SUBSTATE_SHORT_DETECTED_SHORT_CONDITION = 1, +}; + +enum ethtool_c33_pse_admin_state { + ETHTOOL_C33_PSE_ADMIN_STATE_UNKNOWN = 1, + ETHTOOL_C33_PSE_ADMIN_STATE_DISABLED = 2, + ETHTOOL_C33_PSE_ADMIN_STATE_ENABLED = 3, +}; + +enum ethtool_c33_pse_pw_d_status { + ETHTOOL_C33_PSE_PW_D_STATUS_UNKNOWN = 1, + ETHTOOL_C33_PSE_PW_D_STATUS_DISABLED = 2, + ETHTOOL_C33_PSE_PW_D_STATUS_SEARCHING = 3, + ETHTOOL_C33_PSE_PW_D_STATUS_DELIVERING = 4, + ETHTOOL_C33_PSE_PW_D_STATUS_TEST = 5, + ETHTOOL_C33_PSE_PW_D_STATUS_FAULT = 6, + ETHTOOL_C33_PSE_PW_D_STATUS_OTHERFAULT = 7, +}; + +enum ethtool_podl_pse_admin_state { + ETHTOOL_PODL_PSE_ADMIN_STATE_UNKNOWN = 1, + ETHTOOL_PODL_PSE_ADMIN_STATE_DISABLED = 2, + ETHTOOL_PODL_PSE_ADMIN_STATE_ENABLED = 3, +}; + +enum ethtool_podl_pse_pw_d_status { + ETHTOOL_PODL_PSE_PW_D_STATUS_UNKNOWN = 1, + ETHTOOL_PODL_PSE_PW_D_STATUS_DISABLED = 2, + ETHTOOL_PODL_PSE_PW_D_STATUS_SEARCHING = 3, + ETHTOOL_PODL_PSE_PW_D_STATUS_DELIVERING = 4, + ETHTOOL_PODL_PSE_PW_D_STATUS_SLEEP = 5, + ETHTOOL_PODL_PSE_PW_D_STATUS_IDLE = 6, + ETHTOOL_PODL_PSE_PW_D_STATUS_ERROR = 7, +}; + +struct ethtool_c33_pse_ext_state_info { + enum ethtool_c33_pse_ext_state c33_pse_ext_state; + union { + enum ethtool_c33_pse_ext_substate_error_condition error_condition; + enum ethtool_c33_pse_ext_substate_mr_pse_enable mr_pse_enable; + enum ethtool_c33_pse_ext_substate_option_detect_ted option_detect_ted; + enum ethtool_c33_pse_ext_substate_option_vport_lim option_vport_lim; + enum ethtool_c33_pse_ext_substate_ovld_detected ovld_detected; + enum ethtool_c33_pse_ext_substate_power_not_available power_not_available; + enum ethtool_c33_pse_ext_substate_short_detected short_detected; + u32 __c33_pse_ext_substate; + }; +}; + +struct ethtool_c33_pse_pw_limit_range { + u32 min; + u32 max; +}; + +struct pse_control_config { + enum ethtool_podl_pse_admin_state podl_admin_control; + enum ethtool_c33_pse_admin_state c33_admin_control; +}; + +struct pse_control_status { + enum ethtool_podl_pse_admin_state podl_admin_state; + enum ethtool_podl_pse_pw_d_status podl_pw_status; + enum ethtool_c33_pse_admin_state c33_admin_state; + enum ethtool_c33_pse_pw_d_status c33_pw_status; + u32 c33_pw_class; + u32 c33_actual_pw; + struct ethtool_c33_pse_ext_state_info c33_ext_state_info; + u32 c33_avail_pw_limit; + struct ethtool_c33_pse_pw_limit_range *c33_pw_limit_ranges; + u32 c33_pw_limit_nb_ranges; +}; + +enum { + ETHTOOL_A_C33_PSE_PW_LIMIT_UNSPEC = 0, + ETHTOOL_A_C33_PSE_PW_LIMIT_MIN = 1, + ETHTOOL_A_C33_PSE_PW_LIMIT_MAX = 2, +}; + +struct pse_reply_data { + struct ethnl_reply_data base; + struct pse_control_status status; +}; + +struct nf_conn_counter { + atomic64_t packets; + atomic64_t bytes; +}; + +struct nf_conn_acct { + struct nf_conn_counter counter[2]; +}; + +struct nf_conn_tstamp { + u_int64_t start; + u_int64_t stop; +}; + +struct ct_iter_state { + struct seq_net_private p; + struct hlist_nulls_head *hash; + unsigned int htable_size; + unsigned int bucket; + u_int64_t time_now; +}; + +enum nf_ct_sysctl_index { + NF_SYSCTL_CT_MAX = 0, + NF_SYSCTL_CT_COUNT = 1, + NF_SYSCTL_CT_BUCKETS = 2, + NF_SYSCTL_CT_CHECKSUM = 3, + NF_SYSCTL_CT_LOG_INVALID = 4, + NF_SYSCTL_CT_EXPECT_MAX = 5, + NF_SYSCTL_CT_ACCT = 6, + NF_SYSCTL_CT_EVENTS = 7, + NF_SYSCTL_CT_TIMESTAMP = 8, + NF_SYSCTL_CT_PROTO_TIMEOUT_GENERIC = 9, + NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_SYN_SENT = 10, + NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_SYN_RECV = 11, + NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_ESTABLISHED = 12, + NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_FIN_WAIT = 13, + NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_CLOSE_WAIT = 14, + NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_LAST_ACK = 15, + NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_TIME_WAIT = 16, + NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_CLOSE = 17, + NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_RETRANS = 18, + NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_UNACK = 19, + NF_SYSCTL_CT_PROTO_TCP_LOOSE = 20, + NF_SYSCTL_CT_PROTO_TCP_LIBERAL = 21, + NF_SYSCTL_CT_PROTO_TCP_IGNORE_INVALID_RST = 22, + NF_SYSCTL_CT_PROTO_TCP_MAX_RETRANS = 23, + NF_SYSCTL_CT_PROTO_TIMEOUT_UDP = 24, + NF_SYSCTL_CT_PROTO_TIMEOUT_UDP_STREAM = 25, + NF_SYSCTL_CT_PROTO_TIMEOUT_ICMP = 26, + NF_SYSCTL_CT_PROTO_TIMEOUT_ICMPV6 = 27, + NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_CLOSED = 28, + NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_COOKIE_WAIT = 29, + NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_COOKIE_ECHOED = 30, + NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_ESTABLISHED = 31, + NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_SHUTDOWN_SENT = 32, + NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_SHUTDOWN_RECD = 33, + NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_SHUTDOWN_ACK_SENT = 34, + NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_HEARTBEAT_SENT = 35, + NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_REQUEST = 36, + NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_RESPOND = 37, + NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_PARTOPEN = 38, + NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_OPEN = 39, + NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_CLOSEREQ = 40, + NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_CLOSING = 41, + NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_TIMEWAIT = 42, + NF_SYSCTL_CT_PROTO_DCCP_LOOSE = 43, + NF_SYSCTL_CT_LAST_SYSCTL = 44, +}; + +enum nf_ct_helper_flags { + NF_CT_HELPER_F_USERSPACE = 1, + NF_CT_HELPER_F_CONFIGURED = 2, +}; + +enum ctattr_help { + CTA_HELP_UNSPEC = 0, + CTA_HELP_NAME = 1, + CTA_HELP_INFO = 2, + __CTA_HELP_MAX = 3, +}; + +enum nfnl_cthelper_msg_types { + NFNL_MSG_CTHELPER_NEW = 0, + NFNL_MSG_CTHELPER_GET = 1, + NFNL_MSG_CTHELPER_DEL = 2, + NFNL_MSG_CTHELPER_MAX = 3, +}; + +enum nfnl_cthelper_type { + NFCTH_UNSPEC = 0, + NFCTH_NAME = 1, + NFCTH_TUPLE = 2, + NFCTH_QUEUE_NUM = 3, + NFCTH_POLICY = 4, + NFCTH_PRIV_DATA_LEN = 5, + NFCTH_STATUS = 6, + __NFCTH_MAX = 7, +}; + +enum nfnl_cthelper_policy_type { + NFCTH_POLICY_SET_UNSPEC = 0, + NFCTH_POLICY_SET_NUM = 1, + NFCTH_POLICY_SET = 2, + NFCTH_POLICY_SET1 = 2, + NFCTH_POLICY_SET2 = 3, + NFCTH_POLICY_SET3 = 4, + NFCTH_POLICY_SET4 = 5, + __NFCTH_POLICY_SET_MAX = 6, +}; + +enum nfnl_cthelper_pol_type { + NFCTH_POLICY_UNSPEC = 0, + NFCTH_POLICY_NAME = 1, + NFCTH_POLICY_EXPECT_MAX = 2, + NFCTH_POLICY_EXPECT_TIMEOUT = 3, + __NFCTH_POLICY_MAX = 4, +}; + +enum nfnl_cthelper_tuple_type { + NFCTH_TUPLE_UNSPEC = 0, + NFCTH_TUPLE_L3PROTONUM = 1, + NFCTH_TUPLE_L4PROTONUM = 2, + __NFCTH_TUPLE_MAX = 3, +}; + +struct nfnl_cthelper { + struct list_head list; + struct nf_conntrack_helper helper; +}; + +enum nft_table_flags { + NFT_TABLE_F_DORMANT = 1, + NFT_TABLE_F_OWNER = 2, + NFT_TABLE_F_PERSIST = 4, +}; + +enum { + NFT_PKTINFO_L4PROTO = 1, + NFT_PKTINFO_INNER = 2, + NFT_PKTINFO_INNER_FULL = 4, +}; + +struct nft_hook { + struct list_head list; + struct nf_hook_ops ops; + struct callback_head rcu; +}; + +enum { + IP6_FH_F_FRAG = 1, + IP6_FH_F_AUTH = 2, + IP6_FH_F_SKIP_RH = 4, +}; + +enum nft_exthdr_flags { + NFT_EXTHDR_F_PRESENT = 1, +}; + +enum nft_exthdr_op { + NFT_EXTHDR_OP_IPV6 = 0, + NFT_EXTHDR_OP_TCPOPT = 1, + NFT_EXTHDR_OP_IPV4 = 2, + NFT_EXTHDR_OP_SCTP = 3, + NFT_EXTHDR_OP_DCCP = 4, + __NFT_EXTHDR_OP_MAX = 5, +}; + +enum nft_exthdr_attributes { + NFTA_EXTHDR_UNSPEC = 0, + NFTA_EXTHDR_DREG = 1, + NFTA_EXTHDR_TYPE = 2, + NFTA_EXTHDR_OFFSET = 3, + NFTA_EXTHDR_LEN = 4, + NFTA_EXTHDR_FLAGS = 5, + NFTA_EXTHDR_OP = 6, + NFTA_EXTHDR_SREG = 7, + __NFTA_EXTHDR_MAX = 8, +}; + +enum dccp_pkt_type { + DCCP_PKT_REQUEST = 0, + DCCP_PKT_RESPONSE = 1, + DCCP_PKT_DATA = 2, + DCCP_PKT_ACK = 3, + DCCP_PKT_DATAACK = 4, + DCCP_PKT_CLOSEREQ = 5, + DCCP_PKT_CLOSE = 6, + DCCP_PKT_RESET = 7, + DCCP_PKT_SYNC = 8, + DCCP_PKT_SYNCACK = 9, + DCCP_PKT_INVALID = 10, +}; + +enum { + DCCPO_PADDING = 0, + DCCPO_MANDATORY = 1, + DCCPO_MIN_RESERVED = 3, + DCCPO_MAX_RESERVED = 31, + DCCPO_CHANGE_L = 32, + DCCPO_CONFIRM_L = 33, + DCCPO_CHANGE_R = 34, + DCCPO_CONFIRM_R = 35, + DCCPO_NDP_COUNT = 37, + DCCPO_ACK_VECTOR_0 = 38, + DCCPO_ACK_VECTOR_1 = 39, + DCCPO_TIMESTAMP = 41, + DCCPO_TIMESTAMP_ECHO = 42, + DCCPO_ELAPSED_TIME = 43, + DCCPO_MAX = 45, + DCCPO_MIN_RX_CCID_SPECIFIC = 128, + DCCPO_MAX_RX_CCID_SPECIFIC = 191, + DCCPO_MIN_TX_CCID_SPECIFIC = 192, + DCCPO_MAX_TX_CCID_SPECIFIC = 255, +}; + +struct nft_exthdr { + u8 type; + u8 offset; + u8 len; + u8 op; + u8 dreg; + u8 sreg; + u8 flags; +}; + +enum nft_connlimit_flags { + NFT_CONNLIMIT_F_INV = 1, +}; + +enum nft_connlimit_attributes { + NFTA_CONNLIMIT_UNSPEC = 0, + NFTA_CONNLIMIT_COUNT = 1, + NFTA_CONNLIMIT_FLAGS = 2, + __NFTA_CONNLIMIT_MAX = 3, +}; + +struct nft_object_hash_key { + const char *name; + const struct nft_table *table; +}; + +struct nft_object_ops; + +struct nft_object { + struct list_head list; + struct rhlist_head rhlhead; + struct nft_object_hash_key key; + u32 genmask: 2; + u32 use; + u64 handle; + u16 udlen; + u8 *udata; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + const struct nft_object_ops *ops; + unsigned char data[0]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct nft_object_type; + +struct nft_object_ops { + void (*eval)(struct nft_object *, struct nft_regs *, const struct nft_pktinfo *); + unsigned int size; + int (*init)(const struct nft_ctx *, const struct nlattr * const *, struct nft_object *); + void (*destroy)(const struct nft_ctx *, struct nft_object *); + int (*dump)(struct sk_buff *, struct nft_object *, bool); + void (*update)(struct nft_object *, struct nft_object *); + const struct nft_object_type *type; +}; + +struct nft_object_type { + const struct nft_object_ops * (*select_ops)(const struct nft_ctx *, const struct nlattr * const *); + const struct nft_object_ops *ops; + struct list_head list; + u32 type; + unsigned int maxattr; + u8 family; + struct module *owner; + const struct nla_policy *policy; +}; + +struct nf_conncount_list { + spinlock_t list_lock; + u32 last_gc; + struct list_head head; + unsigned int count; +}; + +struct nft_connlimit { + struct nf_conncount_list *list; + u32 limit; + bool invert; +}; + +enum { + XT_HMARK_SADDR_MASK = 0, + XT_HMARK_DADDR_MASK = 1, + XT_HMARK_SPI = 2, + XT_HMARK_SPI_MASK = 3, + XT_HMARK_SPORT = 4, + XT_HMARK_DPORT = 5, + XT_HMARK_SPORT_MASK = 6, + XT_HMARK_DPORT_MASK = 7, + XT_HMARK_PROTO_MASK = 8, + XT_HMARK_RND = 9, + XT_HMARK_MODULUS = 10, + XT_HMARK_OFFSET = 11, + XT_HMARK_CT = 12, + XT_HMARK_METHOD_L3 = 13, + XT_HMARK_METHOD_L3_4 = 14, +}; + +union hmark_ports { + struct { + __u16 src; + __u16 dst; + } p16; + struct { + __be16 src; + __be16 dst; + } b16; + __u32 v32; + __be32 b32; +}; + +struct xt_hmark_info { + union nf_inet_addr src_mask; + union nf_inet_addr dst_mask; + union hmark_ports port_mask; + union hmark_ports port_set; + __u32 flags; + __u16 proto_mask; + __u32 hashrnd; + __u32 hmodulus; + __u32 hoffset; +}; + +struct hmark_tuple { + __be32 src; + __be32 dst; + union hmark_ports uports; + u8 proto; +}; + +struct xt_tcpoptstrip_target_info { + __u32 strip_bmap[8]; +}; + +enum { + XT_IPVS_IPVS_PROPERTY = 1, + XT_IPVS_PROTO = 2, + XT_IPVS_VADDR = 4, + XT_IPVS_VPORT = 8, + XT_IPVS_DIR = 16, + XT_IPVS_METHOD = 32, + XT_IPVS_VPORTCTL = 64, + XT_IPVS_MASK = 127, + XT_IPVS_ONCE_MASK = 126, +}; + +struct xt_ipvs_mtinfo { + union nf_inet_addr vaddr; + union nf_inet_addr vmask; + __be16 vport; + __u8 l4proto; + __u8 fwd_method; + __be16 vportctl; + __u8 invert; + __u8 bitmask; +}; + +enum { + XT_RECENT_CHECK = 1, + XT_RECENT_SET = 2, + XT_RECENT_UPDATE = 4, + XT_RECENT_REMOVE = 8, + XT_RECENT_TTL = 16, + XT_RECENT_REAP = 32, + XT_RECENT_SOURCE = 0, + XT_RECENT_DEST = 1, + XT_RECENT_NAME_LEN = 200, +}; + +struct xt_recent_mtinfo_v1 { + __u32 seconds; + __u32 hit_count; + __u8 check_set; + __u8 invert; + char name[200]; + __u8 side; + union nf_inet_addr mask; +}; + +struct recent_entry { + struct list_head list; + struct list_head lru_list; + union nf_inet_addr addr; + u_int16_t family; + u_int8_t ttl; + u_int16_t index; + u_int16_t nstamps; + long unsigned int stamps[0]; +}; + +struct recent_table { + struct list_head list; + char name[200]; + union nf_inet_addr mask; + unsigned int refcnt; + unsigned int entries; + u_int16_t nstamps_max_mask; + struct list_head lru_list; + struct list_head iphash[0]; +}; + +struct recent_net { + struct list_head tables; + struct proc_dir_entry *xt_recent; +}; + +struct recent_iter_state { + const struct recent_table *table; + unsigned int bucket; +}; + +struct xt_recent_mtinfo_v0; + +struct ip_set_region { + spinlock_t lock; + size_t ext_size; + u32 elements; +}; + +enum { + IPSET_ERR_HASH_FULL = 4352, + IPSET_ERR_HASH_ELEM = 4353, + IPSET_ERR_INVALID_PROTO = 4354, + IPSET_ERR_MISSING_PROTO = 4355, + IPSET_ERR_HASH_RANGE_UNSUPPORTED = 4356, + IPSET_ERR_HASH_RANGE = 4357, +}; + +struct hash_netiface4_elem { + __be32 ip; + u8 physdev; + u8 cidr; + u8 nomatch; + u8 elem; + u8 wildcard; + char iface[16]; +}; + +struct hbucket { + struct callback_head rcu; + long unsigned int used[1]; + u8 size; + u8 pos; + long: 0; + unsigned char value[0]; +}; + +struct htable_gc { + struct delayed_work dwork; + struct ip_set *set; + u32 region; +}; + +struct htable { + atomic_t ref; + atomic_t uref; + u8 htable_bits; + u32 maxelem; + struct ip_set_region *hregion; + struct hbucket *bucket[0]; +}; + +struct net_prefixes { + u32 nets[1]; + u8 cidr[1]; +}; + +struct hash_netiface4 { + struct htable *table; + struct htable_gc gc; + u32 maxelem; + u32 initval; + u8 bucketsize; + struct list_head ad; + struct hash_netiface4_elem next; + struct net_prefixes nets[33]; +}; + +struct hash_netiface4_resize_ad { + struct list_head list; + enum ipset_adt ad; + struct hash_netiface4_elem d; + struct ip_set_ext ext; + struct ip_set_ext mext; + u32 flags; +}; + +struct hash_netiface6_elem { + union nf_inet_addr ip; + u8 physdev; + u8 cidr; + u8 nomatch; + u8 elem; + u8 wildcard; + char iface[16]; +}; + +struct hash_netiface6 { + struct htable *table; + struct htable_gc gc; + u32 maxelem; + u32 initval; + u8 bucketsize; + struct list_head ad; + struct hash_netiface6_elem next; + struct net_prefixes nets[129]; +}; + +struct hash_netiface6_resize_ad { + struct list_head list; + enum ipset_adt ad; + struct hash_netiface6_elem d; + struct ip_set_ext ext; + struct ip_set_ext mext; + u32 flags; +}; + +struct ip_vs_sh_bucket { + struct ip_vs_dest *dest; +}; + +struct ip_vs_sh_state { + struct callback_head callback_head; + struct ip_vs_sh_bucket buckets[256]; +}; + +struct udp_seq_afinfo { + sa_family_t family; + struct udp_table *udp_table; +}; + +struct fib_entry_notifier_info { + struct fib_notifier_info info; + u32 dst; + int dst_len; + struct fib_info *fi; + dscp_t dscp; + u8 type; + u32 tb_id; +}; + +typedef unsigned int t_key; + +struct key_vector { + t_key key; + unsigned char pos; + unsigned char bits; + unsigned char slen; + union { + struct hlist_head leaf; + struct { + struct {} __empty_tnode; + struct key_vector *tnode[0]; + }; + }; +}; + +struct tnode { + struct callback_head rcu; + t_key empty_children; + t_key full_children; + struct key_vector *parent; + struct key_vector kv[1]; +}; + +struct trie_use_stats { + unsigned int gets; + unsigned int backtrack; + unsigned int semantic_match_passed; + unsigned int semantic_match_miss; + unsigned int null_node_hit; + unsigned int resize_node_skipped; +}; + +struct trie_stat { + unsigned int totdepth; + unsigned int maxdepth; + unsigned int tnodes; + unsigned int leaves; + unsigned int nullpointers; + unsigned int prefixes; + unsigned int nodesizes[32]; +}; + +struct trie { + struct key_vector kv[1]; + struct trie_use_stats *stats; +}; + +struct fib_trie_iter { + struct seq_net_private p; + struct fib_table *tb; + struct key_vector *tnode; + unsigned int index; + unsigned int depth; +}; + +struct fib_route_iter { + struct seq_net_private p; + struct fib_table *main_tb; + struct key_vector *tnode; + loff_t pos; + t_key key; +}; + +struct tcp_request_sock_ops; + +struct tcp_request_sock { + struct inet_request_sock req; + const struct tcp_request_sock_ops *af_specific; + u64 snt_synack; + bool tfo_listener; + bool is_mptcp; + bool req_usec_ts; + u32 txhash; + u32 rcv_isn; + u32 snt_isn; + u32 ts_off; + u32 last_oow_ack_time; + u32 rcv_nxt; + u8 syn_tos; +}; + +enum tcp_synack_type { + TCP_SYNACK_NORMAL = 0, + TCP_SYNACK_FASTOPEN = 1, + TCP_SYNACK_COOKIE = 2, +}; + +struct tcp_request_sock_ops { + u16 mss_clamp; + __u32 (*cookie_init_seq)(const struct sk_buff *, __u16 *); + struct dst_entry * (*route_req)(const struct sock *, struct sk_buff *, struct flowi *, struct request_sock *, u32); + u32 (*init_seq)(const struct sk_buff *); + u32 (*init_ts_off)(const struct net *, const struct sk_buff *); + int (*send_synack)(const struct sock *, struct dst_entry *, struct flowi *, struct request_sock *, struct tcp_fastopen_cookie *, enum tcp_synack_type, struct sk_buff *); +}; + +struct module_version_attribute { + struct module_attribute mattr; + const char *module_name; + const char *version; +}; + +enum sk_pacing { + SK_PACING_NONE = 0, + SK_PACING_NEEDED = 1, + SK_PACING_FQ = 2, +}; + +enum tcp_ca_state { + TCP_CA_Open = 0, + TCP_CA_Disorder = 1, + TCP_CA_CWR = 2, + TCP_CA_Recovery = 3, + TCP_CA_Loss = 4, +}; + +struct bictcp { + u32 cnt; + u32 last_max_cwnd; + u32 last_cwnd; + u32 last_time; + u32 bic_origin_point; + u32 bic_K; + u32 delay_min; + u32 epoch_start; + u32 ack_cnt; + u32 tcp_cwnd; + u16 unused; + u8 sample_cnt; + u8 found; + u32 round_start; + u32 end_seq; + u32 last_ack; + u32 curr_rtt; +}; + +struct unix_skb_parms { + struct pid *pid; + kuid_t uid; + kgid_t gid; + struct scm_fp_list *fp; + u32 secid; + u32 consumed; +}; + +struct unix_stream_read_state { + int (*recv_actor)(struct sk_buff *, int, int, struct unix_stream_read_state *); + struct socket *socket; + struct msghdr *msg; + struct pipe_inode_info *pipe; + size_t size; + int flags; + unsigned int splice_flags; +}; + +struct bpf_unix_iter_state { + struct seq_net_private p; + unsigned int cur_sk; + unsigned int end_sk; + unsigned int max_sk; + struct sock **batch; + bool st_bucket_done; +}; + +struct bpf_iter__unix { + union { + struct bpf_iter_meta *meta; + }; + union { + struct unix_sock *unix_sk; + }; + uid_t uid; +}; + +struct rt2_hdr { + struct ipv6_rt_hdr rt_hdr; + __u32 reserved; + struct in6_addr addr; +}; + +struct ipv6_destopt_hao { + __u8 type; + __u8 length; + struct in6_addr addr; +} __attribute__((packed)); + +struct ip6_mh { + __u8 ip6mh_proto; + __u8 ip6mh_hdrlen; + __u8 ip6mh_type; + __u8 ip6mh_reserved; + __u16 ip6mh_cksum; + __u8 data[0]; +}; + +struct mip6_report_rate_limiter { + spinlock_t lock; + ktime_t stamp; + int iif; + struct in6_addr src; + struct in6_addr dst; +}; + +enum { + BR_MCAST_DIR_RX = 0, + BR_MCAST_DIR_TX = 1, + BR_MCAST_DIR_SIZE = 2, +}; + +struct net_bridge_mcast_gc { + struct hlist_node gc_node; + void (*destroy)(struct net_bridge_mcast_gc *); +}; + +struct net_bridge_port_group_sg_key { + struct net_bridge_port *port; + struct br_ip addr; +}; + +struct net_bridge_port_group { + struct net_bridge_port_group *next; + struct net_bridge_port_group_sg_key key; + unsigned char eth_addr[6]; + unsigned char flags; + unsigned char filter_mode; + unsigned char grp_query_rexmit_cnt; + unsigned char rt_protocol; + struct hlist_head src_list; + unsigned int src_ents; + struct timer_list timer; + struct timer_list rexmit_timer; + struct hlist_node mglist; + struct rb_root eht_set_tree; + struct rb_root eht_host_tree; + struct rhash_head rhnode; + struct net_bridge_mcast_gc mcast_gc; + struct callback_head rcu; +}; + +struct net_bridge_mdb_entry { + struct rhash_head rhnode; + struct net_bridge *br; + struct net_bridge_port_group *ports; + struct br_ip addr; + bool host_joined; + struct timer_list timer; + struct hlist_node mdb_node; + struct net_bridge_mcast_gc mcast_gc; + struct callback_head rcu; +}; + +enum br_pkt_type { + BR_PKT_UNICAST = 0, + BR_PKT_MULTICAST = 1, + BR_PKT_BROADCAST = 2, +}; + +enum { + IFLA_BR_UNSPEC = 0, + IFLA_BR_FORWARD_DELAY = 1, + IFLA_BR_HELLO_TIME = 2, + IFLA_BR_MAX_AGE = 3, + IFLA_BR_AGEING_TIME = 4, + IFLA_BR_STP_STATE = 5, + IFLA_BR_PRIORITY = 6, + IFLA_BR_VLAN_FILTERING = 7, + IFLA_BR_VLAN_PROTOCOL = 8, + IFLA_BR_GROUP_FWD_MASK = 9, + IFLA_BR_ROOT_ID = 10, + IFLA_BR_BRIDGE_ID = 11, + IFLA_BR_ROOT_PORT = 12, + IFLA_BR_ROOT_PATH_COST = 13, + IFLA_BR_TOPOLOGY_CHANGE = 14, + IFLA_BR_TOPOLOGY_CHANGE_DETECTED = 15, + IFLA_BR_HELLO_TIMER = 16, + IFLA_BR_TCN_TIMER = 17, + IFLA_BR_TOPOLOGY_CHANGE_TIMER = 18, + IFLA_BR_GC_TIMER = 19, + IFLA_BR_GROUP_ADDR = 20, + IFLA_BR_FDB_FLUSH = 21, + IFLA_BR_MCAST_ROUTER = 22, + IFLA_BR_MCAST_SNOOPING = 23, + IFLA_BR_MCAST_QUERY_USE_IFADDR = 24, + IFLA_BR_MCAST_QUERIER = 25, + IFLA_BR_MCAST_HASH_ELASTICITY = 26, + IFLA_BR_MCAST_HASH_MAX = 27, + IFLA_BR_MCAST_LAST_MEMBER_CNT = 28, + IFLA_BR_MCAST_STARTUP_QUERY_CNT = 29, + IFLA_BR_MCAST_LAST_MEMBER_INTVL = 30, + IFLA_BR_MCAST_MEMBERSHIP_INTVL = 31, + IFLA_BR_MCAST_QUERIER_INTVL = 32, + IFLA_BR_MCAST_QUERY_INTVL = 33, + IFLA_BR_MCAST_QUERY_RESPONSE_INTVL = 34, + IFLA_BR_MCAST_STARTUP_QUERY_INTVL = 35, + IFLA_BR_NF_CALL_IPTABLES = 36, + IFLA_BR_NF_CALL_IP6TABLES = 37, + IFLA_BR_NF_CALL_ARPTABLES = 38, + IFLA_BR_VLAN_DEFAULT_PVID = 39, + IFLA_BR_PAD = 40, + IFLA_BR_VLAN_STATS_ENABLED = 41, + IFLA_BR_MCAST_STATS_ENABLED = 42, + IFLA_BR_MCAST_IGMP_VERSION = 43, + IFLA_BR_MCAST_MLD_VERSION = 44, + IFLA_BR_VLAN_STATS_PER_PORT = 45, + IFLA_BR_MULTI_BOOLOPT = 46, + IFLA_BR_MCAST_QUERIER_STATE = 47, + IFLA_BR_FDB_N_LEARNED = 48, + IFLA_BR_FDB_MAX_LEARNED = 49, + __IFLA_BR_MAX = 50, +}; + +enum { + IFLA_BRPORT_UNSPEC = 0, + IFLA_BRPORT_STATE = 1, + IFLA_BRPORT_PRIORITY = 2, + IFLA_BRPORT_COST = 3, + IFLA_BRPORT_MODE = 4, + IFLA_BRPORT_GUARD = 5, + IFLA_BRPORT_PROTECT = 6, + IFLA_BRPORT_FAST_LEAVE = 7, + IFLA_BRPORT_LEARNING = 8, + IFLA_BRPORT_UNICAST_FLOOD = 9, + IFLA_BRPORT_PROXYARP = 10, + IFLA_BRPORT_LEARNING_SYNC = 11, + IFLA_BRPORT_PROXYARP_WIFI = 12, + IFLA_BRPORT_ROOT_ID = 13, + IFLA_BRPORT_BRIDGE_ID = 14, + IFLA_BRPORT_DESIGNATED_PORT = 15, + IFLA_BRPORT_DESIGNATED_COST = 16, + IFLA_BRPORT_ID = 17, + IFLA_BRPORT_NO = 18, + IFLA_BRPORT_TOPOLOGY_CHANGE_ACK = 19, + IFLA_BRPORT_CONFIG_PENDING = 20, + IFLA_BRPORT_MESSAGE_AGE_TIMER = 21, + IFLA_BRPORT_FORWARD_DELAY_TIMER = 22, + IFLA_BRPORT_HOLD_TIMER = 23, + IFLA_BRPORT_FLUSH = 24, + IFLA_BRPORT_MULTICAST_ROUTER = 25, + IFLA_BRPORT_PAD = 26, + IFLA_BRPORT_MCAST_FLOOD = 27, + IFLA_BRPORT_MCAST_TO_UCAST = 28, + IFLA_BRPORT_VLAN_TUNNEL = 29, + IFLA_BRPORT_BCAST_FLOOD = 30, + IFLA_BRPORT_GROUP_FWD_MASK = 31, + IFLA_BRPORT_NEIGH_SUPPRESS = 32, + IFLA_BRPORT_ISOLATED = 33, + IFLA_BRPORT_BACKUP_PORT = 34, + IFLA_BRPORT_MRP_RING_OPEN = 35, + IFLA_BRPORT_MRP_IN_OPEN = 36, + IFLA_BRPORT_MCAST_EHT_HOSTS_LIMIT = 37, + IFLA_BRPORT_MCAST_EHT_HOSTS_CNT = 38, + IFLA_BRPORT_LOCKED = 39, + IFLA_BRPORT_MAB = 40, + IFLA_BRPORT_MCAST_N_GROUPS = 41, + IFLA_BRPORT_MCAST_MAX_GROUPS = 42, + IFLA_BRPORT_NEIGH_VLAN_SUPPRESS = 43, + IFLA_BRPORT_BACKUP_NHID = 44, + __IFLA_BRPORT_MAX = 45, +}; + +struct ifinfomsg { + unsigned char ifi_family; + unsigned char __ifi_pad; + short unsigned int ifi_type; + int ifi_index; + unsigned int ifi_flags; + unsigned int ifi_change; +}; + +struct rtnl_af_ops { + struct list_head list; + int family; + int (*fill_link_af)(struct sk_buff *, const struct net_device *, u32); + size_t (*get_link_af_size)(const struct net_device *, u32); + int (*validate_link_af)(const struct net_device *, const struct nlattr *, struct netlink_ext_ack *); + int (*set_link_af)(struct net_device *, const struct nlattr *, struct netlink_ext_ack *); + int (*fill_stats_af)(struct sk_buff *, const struct net_device *); + size_t (*get_stats_af_size)(const struct net_device *); +}; + +enum { + IFLA_BRIDGE_FLAGS = 0, + IFLA_BRIDGE_MODE = 1, + IFLA_BRIDGE_VLAN_INFO = 2, + IFLA_BRIDGE_VLAN_TUNNEL_INFO = 3, + IFLA_BRIDGE_MRP = 4, + IFLA_BRIDGE_CFM = 5, + IFLA_BRIDGE_MST = 6, + __IFLA_BRIDGE_MAX = 7, +}; + +struct bridge_vlan_info { + __u16 flags; + __u16 vid; +}; + +struct bridge_vlan_xstats { + __u64 rx_bytes; + __u64 rx_packets; + __u64 tx_bytes; + __u64 tx_packets; + __u16 vid; + __u16 flags; + __u32 pad2; +}; + +enum { + BRIDGE_XSTATS_UNSPEC = 0, + BRIDGE_XSTATS_VLAN = 1, + BRIDGE_XSTATS_MCAST = 2, + BRIDGE_XSTATS_PAD = 3, + BRIDGE_XSTATS_STP = 4, + __BRIDGE_XSTATS_MAX = 5, +}; + +struct br_boolopt_multi { + __u32 optval; + __u32 optmask; +}; + +struct vtunnel_info { + u32 tunid; + u16 vid; + u16 flags; +}; + +struct sunrpc_net { + struct proc_dir_entry *proc_net_rpc; + struct cache_detail *ip_map_cache; + struct cache_detail *unix_gid_cache; + struct cache_detail *rsc_cache; + struct cache_detail *rsi_cache; + struct super_block *pipefs_sb; + struct rpc_pipe *gssd_dummy; + struct mutex pipefs_sb_lock; + struct list_head all_clients; + spinlock_t rpc_client_lock; + struct rpc_clnt *rpcb_local_clnt; + struct rpc_clnt *rpcb_local_clnt4; + spinlock_t rpcb_clnt_lock; + unsigned int rpcb_users; + unsigned int rpcb_is_af_local: 1; + struct mutex gssp_lock; + struct rpc_clnt *gssp_clnt; + int use_gss_proxy; + int pipe_version; + atomic_t pipe_users; + struct proc_dir_entry *use_gssp_proc; + struct proc_dir_entry *gss_krb5_enctypes; +}; + +enum { + RPCBPROC_NULL = 0, + RPCBPROC_SET = 1, + RPCBPROC_UNSET = 2, + RPCBPROC_GETPORT = 3, + RPCBPROC_GETADDR = 3, + RPCBPROC_DUMP = 4, + RPCBPROC_CALLIT = 5, + RPCBPROC_BCAST = 5, + RPCBPROC_GETTIME = 6, + RPCBPROC_UADDR2TADDR = 7, + RPCBPROC_TADDR2UADDR = 8, + RPCBPROC_GETVERSADDR = 9, + RPCBPROC_INDIRECT = 10, + RPCBPROC_GETADDRLIST = 11, + RPCBPROC_GETSTAT = 12, +}; + +struct rpcbind_args { + struct rpc_xprt *r_xprt; + u32 r_prog; + u32 r_vers; + u32 r_prot; + short unsigned int r_port; + const char *r_netid; + const char *r_addr; + const char *r_owner; + int r_status; +}; + +struct rpcb_info { + u32 rpc_vers; + const struct rpc_procinfo *rpc_proc; +}; + +typedef unsigned int OM_uint32; + +struct sctp_input_cb { + union { + struct inet_skb_parm h4; + struct inet6_skb_parm h6; + } header; + struct sctp_chunk *chunk; + struct sctp_af *af; + __be16 encap_port; +}; + +struct sctp_bind_hashbucket { + spinlock_t lock; + struct hlist_head chain; +}; + +struct sctp_hashbucket { + rwlock_t lock; + struct hlist_head chain; +}; + +struct sctp_globals { + struct list_head address_families; + struct sctp_hashbucket *ep_hashtable; + struct sctp_bind_hashbucket *port_hashtable; + struct rhltable transport_hashtable; + int ep_hashsize; + int port_hashsize; + __u16 max_instreams; + __u16 max_outstreams; + bool checksum_disable; +}; + +struct sctp_ht_iter { + struct seq_net_private p; + struct rhashtable_iter hti; +}; + +struct dp_upcall_info { + struct ip_tunnel_info *egress_tun_info; + const struct nlattr *userdata; + const struct nlattr *actions; + int actions_len; + u32 portid; + u8 cmd; + u16 mru; +}; + +struct trace_event_raw_ovs_do_execute_action { + struct trace_entry ent; + void *dpaddr; + u32 __data_loc_dp_name; + u32 __data_loc_dev_name; + void *skbaddr; + unsigned int len; + unsigned int data_len; + unsigned int truesize; + u8 nr_frags; + u16 gso_size; + u16 gso_type; + u32 ovs_flow_hash; + u32 recirc_id; + void *keyaddr; + u16 key_eth_type; + u8 key_ct_state; + u8 key_ct_orig_proto; + u16 key_ct_zone; + unsigned int flow_key_valid; + u8 action_type; + unsigned int action_len; + void *action_data; + u8 is_last; + char __data[0]; +}; + +struct trace_event_raw_ovs_dp_upcall { + struct trace_entry ent; + void *dpaddr; + u32 __data_loc_dp_name; + u32 __data_loc_dev_name; + void *skbaddr; + unsigned int len; + unsigned int data_len; + unsigned int truesize; + u8 nr_frags; + u16 gso_size; + u16 gso_type; + u32 ovs_flow_hash; + u32 recirc_id; + const void *keyaddr; + u16 key_eth_type; + u8 key_ct_state; + u8 key_ct_orig_proto; + u16 key_ct_zone; + unsigned int flow_key_valid; + u8 upcall_cmd; + u32 upcall_port; + u16 upcall_mru; + char __data[0]; +}; + +struct trace_event_data_offsets_ovs_do_execute_action { + u32 dp_name; + const void *dp_name_ptr_; + u32 dev_name; + const void *dev_name_ptr_; +}; + +struct trace_event_data_offsets_ovs_dp_upcall { + u32 dp_name; + const void *dp_name_ptr_; + u32 dev_name; + const void *dev_name_ptr_; +}; + +typedef void (*btf_trace_ovs_do_execute_action)(void *, struct datapath *, struct sk_buff *, struct sw_flow_key *, const struct nlattr *, int); + +typedef void (*btf_trace_ovs_dp_upcall)(void *, struct datapath *, struct sk_buff *, const struct sw_flow_key *, const struct dp_upcall_info *); + +struct sockaddr_xdp { + __u16 sxdp_family; + __u16 sxdp_flags; + __u32 sxdp_ifindex; + __u32 sxdp_queue_id; + __u32 sxdp_shared_umem_fd; +}; + +struct xdp_ring_offset { + __u64 producer; + __u64 consumer; + __u64 desc; + __u64 flags; +}; + +struct xdp_mmap_offsets { + struct xdp_ring_offset rx; + struct xdp_ring_offset tx; + struct xdp_ring_offset fr; + struct xdp_ring_offset cr; +}; + +struct xdp_umem_reg { + __u64 addr; + __u64 len; + __u32 chunk_size; + __u32 headroom; + __u32 flags; + __u32 tx_metadata_len; +}; + +struct xdp_statistics { + __u64 rx_dropped; + __u64 rx_invalid_descs; + __u64 tx_invalid_descs; + __u64 rx_ring_full; + __u64 rx_fill_ring_empty_descs; + __u64 tx_ring_empty_descs; +}; + +struct xdp_options { + __u32 flags; +}; + +struct xsk_tx_metadata { + __u64 flags; + union { + struct { + __u16 csum_start; + __u16 csum_offset; + } request; + struct { + __u64 tx_timestamp; + } completion; + }; +}; + +struct xdp_sock; + +struct xsk_map { + struct bpf_map map; + spinlock_t lock; + atomic_t count; + struct xdp_sock *xsk_map[0]; +}; + +struct xdp_sock { + struct sock sk; + struct xsk_queue *rx; + struct net_device *dev; + struct xdp_umem *umem; + struct list_head flush_node; + struct xsk_buff_pool *pool; + u16 queue_id; + bool zc; + bool sg; + enum { + XSK_READY = 0, + XSK_BOUND = 1, + XSK_UNBOUND = 2, + } state; + long: 64; + struct xsk_queue *tx; + struct list_head tx_list; + u32 tx_budget_spent; + u64 rx_dropped; + u64 rx_queue_full; + struct sk_buff *skb; + struct list_head map_list; + spinlock_t map_list_lock; + struct mutex mutex; + struct xsk_queue *fq_tmp; + struct xsk_queue *cq_tmp; +}; + +struct xdp_ring; + +struct xsk_queue { + u32 ring_mask; + u32 nentries; + u32 cached_prod; + u32 cached_cons; + struct xdp_ring *ring; + u64 invalid_descs; + u64 queue_empty_descs; + size_t ring_vmalloc_size; +}; + +struct xdp_ring_offset_v1 { + __u64 producer; + __u64 consumer; + __u64 desc; +}; + +struct xdp_mmap_offsets_v1 { + struct xdp_ring_offset_v1 rx; + struct xdp_ring_offset_v1 tx; + struct xdp_ring_offset_v1 fr; + struct xdp_ring_offset_v1 cr; +}; + +struct xsk_map_node { + struct list_head node; + struct xsk_map *map; + struct xdp_sock **map_entry; +}; + +struct xdp_ring { + u32 producer; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + u32 pad1; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + u32 consumer; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + u32 pad2; + u32 flags; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + u32 pad3; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct xdp_rxtx_ring { + struct xdp_ring ptrs; + struct xdp_desc desc[0]; +}; + +struct xdp_umem_ring { + struct xdp_ring ptrs; + u64 desc[0]; +}; + +struct parsed_desc { + u32 mb; + u32 valid; +}; + +struct uevent_sock { + struct list_head list; + struct sock *sk; +}; + +typedef __u32 Elf32_Word; + +struct elf32_note { + Elf32_Word n_namesz; + Elf32_Word n_descsz; + Elf32_Word n_type; +}; + +enum { + PROC_ROOT_INO = 1, + PROC_IPC_INIT_INO = 4026531839, + PROC_UTS_INIT_INO = 4026531838, + PROC_USER_INIT_INO = 4026531837, + PROC_PID_INIT_INO = 4026531836, + PROC_CGROUP_INIT_INO = 4026531835, + PROC_TIME_INIT_INO = 4026531834, +}; + +struct sha256_state { + u32 state[8]; + u64 count; + u8 buf[64]; +}; + +typedef void sha256_block_fn(struct sha256_state *, const u8 *, int); + +struct sha256_ce_state { + struct sha256_state sst; + u32 finalize; +}; + +struct __user_cap_header_struct { + __u32 version; + int pid; +}; + +typedef struct __user_cap_header_struct *cap_user_header_t; + +struct __user_cap_data_struct { + __u32 effective; + __u32 permitted; + __u32 inheritable; +}; + +typedef struct __user_cap_data_struct *cap_user_data_t; + +struct smp_hotplug_thread { + struct task_struct **store; + struct list_head list; + int (*thread_should_run)(unsigned int); + void (*thread_fn)(unsigned int); + void (*create)(unsigned int); + void (*setup)(unsigned int); + void (*cleanup)(unsigned int, bool); + void (*park)(unsigned int); + void (*unpark)(unsigned int); + bool selfparking; + const char *thread_comm; +}; + +struct smpboot_thread_data { + unsigned int cpu; + unsigned int status; + struct smp_hotplug_thread *ht; +}; + +enum { + HP_THREAD_NONE = 0, + HP_THREAD_ACTIVE = 1, + HP_THREAD_PARKED = 2, +}; + +struct pin_cookie {}; + +enum uclamp_id { + UCLAMP_MIN = 0, + UCLAMP_MAX = 1, + UCLAMP_CNT = 2, +}; + +struct dl_bw { + raw_spinlock_t lock; + u64 bw; + u64 total_bw; +}; + +struct cpudl_item; + +struct cpudl { + raw_spinlock_t lock; + int size; + cpumask_var_t free_cpus; + struct cpudl_item *elements; +}; + +struct cpupri_vec { + atomic_t count; + cpumask_var_t mask; +}; + +struct cpupri { + struct cpupri_vec pri_to_cpu[101]; + int *cpu_to_pri; +}; + +struct perf_domain; + +struct root_domain { + atomic_t refcount; + atomic_t rto_count; + struct callback_head rcu; + cpumask_var_t span; + cpumask_var_t online; + bool overloaded; + bool overutilized; + cpumask_var_t dlo_mask; + atomic_t dlo_count; + struct dl_bw dl_bw; + struct cpudl cpudl; + u64 visit_gen; + struct irq_work rto_push_work; + raw_spinlock_t rto_lock; + int rto_loop; + int rto_cpu; + atomic_t rto_loop_next; + atomic_t rto_loop_start; + cpumask_var_t rto_mask; + struct cpupri cpupri; + struct perf_domain *pd; +}; + +struct cfs_rq { + struct load_weight load; + unsigned int nr_running; + unsigned int h_nr_queued; + unsigned int h_nr_runnable; + unsigned int idle_nr_running; + unsigned int idle_h_nr_running; + unsigned int h_nr_delayed; + s64 avg_vruntime; + u64 avg_load; + u64 min_vruntime; + struct rb_root_cached tasks_timeline; + struct sched_entity *curr; + struct sched_entity *next; + long: 64; + long: 64; + long: 64; + long: 64; + struct sched_avg avg; + struct { + raw_spinlock_t lock; + int nr; + long unsigned int load_avg; + long unsigned int util_avg; + long unsigned int runnable_avg; + long: 64; + long: 64; + long: 64; + long: 64; + } removed; + u64 last_update_tg_load_avg; + long unsigned int tg_load_avg_contrib; + long int propagate; + long int prop_runnable_sum; + long unsigned int h_load; + u64 last_h_load_update; + struct sched_entity *h_load_next; + struct rq *rq; + int on_list; + struct list_head leaf_cfs_rq_list; + struct task_group *tg; + int idle; + int runtime_enabled; + s64 runtime_remaining; + u64 throttled_pelt_idle; + u64 throttled_clock; + u64 throttled_clock_pelt; + u64 throttled_clock_pelt_time; + u64 throttled_clock_self; + u64 throttled_clock_self_time; + int throttled; + int throttle_count; + struct list_head throttled_list; + struct list_head throttled_csd_list; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct rt_prio_array { + long unsigned int bitmap[2]; + struct list_head queue[100]; +}; + +struct rt_rq { + struct rt_prio_array active; + unsigned int rt_nr_running; + unsigned int rr_nr_running; + struct { + int curr; + int next; + } highest_prio; + bool overloaded; + struct plist_head pushable_tasks; + int rt_queued; +}; + +struct dl_rq { + struct rb_root_cached root; + unsigned int dl_nr_running; + struct { + u64 curr; + u64 next; + } earliest_dl; + bool overloaded; + struct rb_root_cached pushable_dl_tasks_root; + u64 running_bw; + u64 this_bw; + u64 extra_bw; + u64 max_bw; + u64 bw_ratio; +}; + +struct cpu_stop_done; + +struct cpu_stop_work { + struct list_head list; + cpu_stop_fn_t fn; + long unsigned int caller; + void *arg; + struct cpu_stop_done *done; +}; + +struct sched_domain; + +struct balance_callback; + +struct rq { + raw_spinlock_t __lock; + unsigned int nr_running; + long unsigned int last_blocked_load_update_tick; + unsigned int has_blocked_load; + long: 64; + call_single_data_t nohz_csd; + unsigned int nohz_tick_stopped; + atomic_t nohz_flags; + unsigned int ttwu_pending; + u64 nr_switches; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct cfs_rq cfs; + struct rt_rq rt; + struct dl_rq dl; + struct sched_dl_entity fair_server; + struct list_head leaf_cfs_rq_list; + struct list_head *tmp_alone_branch; + long unsigned int nr_uninterruptible; + struct task_struct *curr; + struct sched_dl_entity *dl_server; + struct task_struct *idle; + struct task_struct *stop; + long unsigned int next_balance; + struct mm_struct *prev_mm; + unsigned int clock_update_flags; + u64 clock; + u64 clock_task; + u64 clock_pelt; + long unsigned int lost_idle_time; + u64 clock_pelt_idle; + u64 clock_idle; + atomic_t nr_iowait; + int membarrier_state; + struct root_domain *rd; + struct sched_domain *sd; + long unsigned int cpu_capacity; + struct balance_callback *balance_callback; + unsigned char nohz_idle_balance; + unsigned char idle_balance; + long unsigned int misfit_task_load; + int active_balance; + int push_cpu; + struct cpu_stop_work active_balance_work; + int cpu; + int online; + struct list_head cfs_tasks; + long: 64; + long: 64; + struct sched_avg avg_rt; + struct sched_avg avg_dl; + u64 idle_stamp; + u64 avg_idle; + u64 max_idle_balance_cost; + u64 prev_steal_time; + long unsigned int calc_load_update; + long int calc_load_active; + struct cpuidle_state *idle_state; + unsigned int nr_pinned; + unsigned int push_busy; + struct cpu_stop_work push_work; + cpumask_var_t scratch_mask; + long: 64; + call_single_data_t cfsb_csd; + struct list_head cfsb_csd_list; + long: 64; + long: 64; +}; + +struct cfs_bandwidth { + raw_spinlock_t lock; + ktime_t period; + u64 quota; + u64 runtime; + u64 burst; + u64 runtime_snap; + s64 hierarchical_quota; + u8 idle; + u8 period_active; + u8 slack_started; + struct hrtimer period_timer; + struct hrtimer slack_timer; + struct list_head throttled_cfs_rq; + int nr_periods; + int nr_throttled; + int nr_burst; + u64 throttled_time; + u64 burst_time; +}; + +struct task_group { + struct cgroup_subsys_state css; + int idle; + struct sched_entity **se; + struct cfs_rq **cfs_rq; + long unsigned int shares; + long: 64; + long: 64; + atomic_long_t load_avg; + struct callback_head rcu; + struct list_head list; + struct task_group *parent; + struct list_head siblings; + struct list_head children; + struct autogroup *autogroup; + struct cfs_bandwidth cfs_bandwidth; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct autogroup { + struct kref kref; + struct task_group *tg; + struct rw_semaphore lock; + long unsigned int id; + int nice; +}; + +enum cpu_idle_type { + __CPU_NOT_IDLE = 0, + CPU_IDLE = 1, + CPU_NEWLY_IDLE = 2, + CPU_MAX_IDLE_TYPES = 3, +}; + +enum { + SD_BALANCE_NEWIDLE = 1, + SD_BALANCE_EXEC = 2, + SD_BALANCE_FORK = 4, + SD_BALANCE_WAKE = 8, + SD_WAKE_AFFINE = 16, + SD_ASYM_CPUCAPACITY = 32, + SD_ASYM_CPUCAPACITY_FULL = 64, + SD_SHARE_CPUCAPACITY = 128, + SD_CLUSTER = 256, + SD_SHARE_LLC = 512, + SD_SERIALIZE = 1024, + SD_ASYM_PACKING = 2048, + SD_PREFER_SIBLING = 4096, + SD_OVERLAP = 8192, + SD_NUMA = 16384, +}; + +struct sched_domain_shared { + atomic_t ref; + atomic_t nr_busy_cpus; + int has_idle_cores; + int nr_idle_scan; +}; + +struct sched_group; + +struct sched_domain { + struct sched_domain *parent; + struct sched_domain *child; + struct sched_group *groups; + long unsigned int min_interval; + long unsigned int max_interval; + unsigned int busy_factor; + unsigned int imbalance_pct; + unsigned int cache_nice_tries; + unsigned int imb_numa_nr; + int nohz_idle; + int flags; + int level; + long unsigned int last_balance; + unsigned int balance_interval; + unsigned int nr_balance_failed; + u64 max_newidle_lb_cost; + long unsigned int last_decay_max_lb_cost; + union { + void *private; + struct callback_head rcu; + }; + struct sched_domain_shared *shared; + unsigned int span_weight; + long unsigned int span[0]; +}; + +struct sched_group_capacity; + +struct sched_group { + struct sched_group *next; + atomic_t ref; + unsigned int group_weight; + unsigned int cores; + struct sched_group_capacity *sgc; + int asym_prefer_cpu; + int flags; + long unsigned int cpumask[0]; +}; + +struct sched_group_capacity { + atomic_t ref; + long unsigned int capacity; + long unsigned int min_capacity; + long unsigned int max_capacity; + long unsigned int next_update; + int imbalance; + long unsigned int cpumask[0]; +}; + +struct em_perf_state { + long unsigned int performance; + long unsigned int frequency; + long unsigned int power; + long unsigned int cost; + long unsigned int flags; +}; + +struct em_perf_table { + struct callback_head rcu; + struct kref kref; + struct em_perf_state state[0]; +}; + +struct em_perf_domain { + struct em_perf_table *em_table; + int nr_perf_states; + long unsigned int flags; + long unsigned int cpus[0]; +}; + +enum sched_tunable_scaling { + SCHED_TUNABLESCALING_NONE = 0, + SCHED_TUNABLESCALING_LOG = 1, + SCHED_TUNABLESCALING_LINEAR = 2, + SCHED_TUNABLESCALING_END = 3, +}; + +struct cpudl_item { + u64 dl; + int cpu; + int idx; +}; + +struct asym_cap_data { + struct list_head link; + struct callback_head rcu; + long unsigned int capacity; + long unsigned int cpus[0]; +}; + +typedef int (*tg_visitor)(struct task_group *, void *); + +struct balance_callback { + struct balance_callback *next; + void (*func)(struct rq *); +}; + +struct perf_domain { + struct em_perf_domain *em_pd; + struct perf_domain *next; + struct callback_head rcu; +}; + +struct rq_flags { + long unsigned int flags; + struct pin_cookie cookie; +}; + +typedef struct { + struct rq *lock; + struct rq_flags rf; +} class_rq_lock_irqsave_t; + +enum { + __SCHED_FEAT_PLACE_LAG = 0, + __SCHED_FEAT_PLACE_DEADLINE_INITIAL = 1, + __SCHED_FEAT_PLACE_REL_DEADLINE = 2, + __SCHED_FEAT_RUN_TO_PARITY = 3, + __SCHED_FEAT_PREEMPT_SHORT = 4, + __SCHED_FEAT_NEXT_BUDDY = 5, + __SCHED_FEAT_PICK_BUDDY = 6, + __SCHED_FEAT_CACHE_HOT_BUDDY = 7, + __SCHED_FEAT_DELAY_DEQUEUE = 8, + __SCHED_FEAT_DELAY_ZERO = 9, + __SCHED_FEAT_WAKEUP_PREEMPTION = 10, + __SCHED_FEAT_HRTICK = 11, + __SCHED_FEAT_HRTICK_DL = 12, + __SCHED_FEAT_DOUBLE_TICK = 13, + __SCHED_FEAT_NONTASK_CAPACITY = 14, + __SCHED_FEAT_TTWU_QUEUE = 15, + __SCHED_FEAT_SIS_UTIL = 16, + __SCHED_FEAT_WARN_DOUBLE_CLOCK = 17, + __SCHED_FEAT_RT_PUSH_IPI = 18, + __SCHED_FEAT_RT_RUNTIME_SHARE = 19, + __SCHED_FEAT_LB_MIN = 20, + __SCHED_FEAT_ATTACH_AGE_LOAD = 21, + __SCHED_FEAT_WA_IDLE = 22, + __SCHED_FEAT_WA_WEIGHT = 23, + __SCHED_FEAT_WA_BIAS = 24, + __SCHED_FEAT_UTIL_EST = 25, + __SCHED_FEAT_LATENCY_WARN = 26, + __SCHED_FEAT_NR = 27, +}; + +struct affinity_context { + const struct cpumask *new_mask; + struct cpumask *user_mask; + unsigned int flags; +}; + +struct energy_env { + long unsigned int task_busy_time; + long unsigned int pd_busy_time; + long unsigned int cpu_cap; + long unsigned int pd_cap; +}; + +enum fbq_type { + regular = 0, + remote = 1, + all = 2, +}; + +enum group_type { + group_has_spare = 0, + group_fully_busy = 1, + group_misfit_task = 2, + group_smt_balance = 3, + group_asym_packing = 4, + group_imbalanced = 5, + group_overloaded = 6, +}; + +enum migration_type { + migrate_load = 0, + migrate_util = 1, + migrate_task = 2, + migrate_misfit = 3, +}; + +struct lb_env { + struct sched_domain *sd; + struct rq *src_rq; + int src_cpu; + int dst_cpu; + struct rq *dst_rq; + struct cpumask *dst_grpmask; + int new_dst_cpu; + enum cpu_idle_type idle; + long int imbalance; + struct cpumask *cpus; + unsigned int flags; + unsigned int loop; + unsigned int loop_break; + unsigned int loop_max; + enum fbq_type fbq_type; + enum migration_type migration_type; + struct list_head tasks; +}; + +struct sg_lb_stats { + long unsigned int avg_load; + long unsigned int group_load; + long unsigned int group_capacity; + long unsigned int group_util; + long unsigned int group_runnable; + unsigned int sum_nr_running; + unsigned int sum_h_nr_running; + unsigned int idle_cpus; + unsigned int group_weight; + enum group_type group_type; + unsigned int group_asym_packing; + unsigned int group_smt_balance; + long unsigned int group_misfit_task_load; +}; + +struct sd_lb_stats { + struct sched_group *busiest; + struct sched_group *local; + long unsigned int total_load; + long unsigned int total_capacity; + long unsigned int avg_load; + unsigned int prefer_sibling; + struct sg_lb_stats busiest_stat; + struct sg_lb_stats local_stat; +}; + +struct xa_limit { + u32 max; + u32 min; +}; + +struct msi_dev_domain { + struct xarray store; + struct irq_domain *domain; +}; + +struct msi_device_data { + long unsigned int properties; + struct mutex mutex; + struct msi_dev_domain __domains[1]; + long unsigned int __iter_idx; +}; + +enum { + IRQCHIP_FWNODE_REAL = 0, + IRQCHIP_FWNODE_NAMED = 1, + IRQCHIP_FWNODE_NAMED_ID = 2, +}; + +enum msi_desc_filter { + MSI_DESC_ALL = 0, + MSI_DESC_NOTASSOCIATED = 1, + MSI_DESC_ASSOCIATED = 2, +}; + +struct msi_ctrl { + unsigned int domid; + unsigned int first; + unsigned int last; + unsigned int nirqs; +}; + +struct load_info { + const char *name; + struct module *mod; + Elf64_Ehdr *hdr; + long unsigned int len; + Elf64_Shdr *sechdrs; + char *secstrings; + char *strtab; + long unsigned int symoffs; + long unsigned int stroffs; + long unsigned int init_typeoffs; + long unsigned int core_typeoffs; + bool sig_ok; + long unsigned int mod_kallsyms_init_off; + struct { + unsigned int sym; + unsigned int str; + unsigned int mod; + unsigned int vers; + unsigned int info; + unsigned int pcpu; + } index; +}; + +typedef __u64 timeu64_t; + +struct rtc_wkalrm { + unsigned char enabled; + unsigned char pending; + struct rtc_time time; +}; + +struct rtc_param { + __u64 param; + union { + __u64 uvalue; + __s64 svalue; + __u64 ptr; + }; + __u32 index; + __u32 __pad; +}; + +struct rtc_class_ops { + int (*ioctl)(struct device *, unsigned int, long unsigned int); + int (*read_time)(struct device *, struct rtc_time *); + int (*set_time)(struct device *, struct rtc_time *); + int (*read_alarm)(struct device *, struct rtc_wkalrm *); + int (*set_alarm)(struct device *, struct rtc_wkalrm *); + int (*proc)(struct device *, struct seq_file *); + int (*alarm_irq_enable)(struct device *, unsigned int); + int (*read_offset)(struct device *, long int *); + int (*set_offset)(struct device *, long int); + int (*param_get)(struct device *, struct rtc_param *); + int (*param_set)(struct device *, struct rtc_param *); +}; + +struct rtc_device; + +struct rtc_timer { + struct timerqueue_node node; + ktime_t period; + void (*func)(struct rtc_device *); + struct rtc_device *rtc; + int enabled; +}; + +struct rtc_device { + struct device dev; + struct module *owner; + int id; + const struct rtc_class_ops *ops; + struct mutex ops_lock; + struct cdev char_dev; + long unsigned int flags; + long unsigned int irq_data; + spinlock_t irq_lock; + wait_queue_head_t irq_queue; + struct fasync_struct *async_queue; + int irq_freq; + int max_user_freq; + struct timerqueue_head timerqueue; + struct rtc_timer aie_timer; + struct rtc_timer uie_rtctimer; + struct hrtimer pie_timer; + int pie_enabled; + struct work_struct irqwork; + long unsigned int set_offset_nsec; + long unsigned int features[1]; + time64_t range_min; + timeu64_t range_max; + timeu64_t alarm_offset_max; + time64_t start_secs; + time64_t offset_secs; + bool set_start_time; +}; + +struct timens_offsets { + struct timespec64 monotonic; + struct timespec64 boottime; +}; + +struct time_namespace { + struct user_namespace *user_ns; + struct ucounts *ucounts; + struct ns_common ns; + struct timens_offsets offsets; + struct page *vvar_page; + bool frozen_offsets; +}; + +struct proc_timens_offset { + int clockid; + struct timespec64 val; +}; + +struct timens_offset { + s64 sec; + u64 nsec; +}; + +enum vdso_clock_mode { + VDSO_CLOCKMODE_NONE = 0, + VDSO_CLOCKMODE_ARCHTIMER = 1, + VDSO_CLOCKMODE_ARCHTIMER_NOCOMPAT = 2, + VDSO_CLOCKMODE_MAX = 3, + VDSO_CLOCKMODE_TIMENS = 2147483647, +}; + +struct arch_vdso_data {}; + +struct vdso_timestamp { + u64 sec; + u64 nsec; +}; + +struct vdso_data { + u32 seq; + s32 clock_mode; + u64 cycle_last; + u64 mask; + u32 mult; + u32 shift; + union { + struct vdso_timestamp basetime[12]; + struct timens_offset offset[12]; + }; + s32 tz_minuteswest; + s32 tz_dsttime; + u32 hrtimer_res; + u32 __unused; + struct arch_vdso_data arch_data; +}; + +enum { + CGRP_NOTIFY_ON_RELEASE = 0, + CGRP_CPUSET_CLONE_CHILDREN = 1, + CGRP_FREEZE = 2, + CGRP_FROZEN = 3, +}; + +struct css_task_iter { + struct cgroup_subsys *ss; + unsigned int flags; + struct list_head *cset_pos; + struct list_head *cset_head; + struct list_head *tcset_pos; + struct list_head *tcset_head; + struct list_head *task_pos; + struct list_head *cur_tasks_head; + struct css_set *cur_cset; + struct css_set *cur_dcset; + struct task_struct *cur_task; + struct list_head iters_node; +}; + +typedef int (*objpool_init_obj_cb)(void *, void *); + +struct prev_kprobe { + struct kprobe *kp; + unsigned int status; +}; + +struct kprobe_ctlblk { + unsigned int kprobe_status; + long unsigned int saved_irqflag; + struct prev_kprobe prev_kprobe; +}; + +struct kprobe_blacklist_entry { + struct list_head list; + long unsigned int start_addr; + long unsigned int end_addr; +}; + +struct kprobe_insn_cache { + struct mutex mutex; + void * (*alloc)(void); + void (*free)(void *); + const char *sym; + struct list_head pages; + size_t insn_size; + int nr_garbage; +}; + +enum perf_record_ksymbol_type { + PERF_RECORD_KSYMBOL_TYPE_UNKNOWN = 0, + PERF_RECORD_KSYMBOL_TYPE_BPF = 1, + PERF_RECORD_KSYMBOL_TYPE_OOL = 2, + PERF_RECORD_KSYMBOL_TYPE_MAX = 3, +}; + +enum execmem_type { + EXECMEM_DEFAULT = 0, + EXECMEM_MODULE_TEXT = 0, + EXECMEM_KPROBES = 1, + EXECMEM_FTRACE = 2, + EXECMEM_BPF = 3, + EXECMEM_MODULE_DATA = 4, + EXECMEM_TYPE_MAX = 5, +}; + +struct kprobe_insn_page { + struct list_head list; + kprobe_opcode_t *insns; + struct kprobe_insn_cache *cache; + int nused; + int ngarbage; + char slot_used[0]; +}; + +enum kprobe_slot_state { + SLOT_CLEAN = 0, + SLOT_DIRTY = 1, + SLOT_USED = 2, +}; + +enum { + CSS_TASK_ITER_PROCS = 1, + CSS_TASK_ITER_THREADED = 2, + CSS_TASK_ITER_SKIPPED = 65536, +}; + +enum bpf_iter_feature { + BPF_ITER_RESCHED = 1, +}; + +struct bpf_iter_seq_task_common { + struct pid_namespace *ns; + enum bpf_iter_task_type type; + u32 pid; + u32 pid_visiting; +}; + +struct bpf_iter_seq_task_info { + struct bpf_iter_seq_task_common common; + u32 tid; +}; + +struct bpf_iter__task { + union { + struct bpf_iter_meta *meta; + }; + union { + struct task_struct *task; + }; +}; + +struct bpf_iter_seq_task_file_info { + struct bpf_iter_seq_task_common common; + struct task_struct *task; + u32 tid; + u32 fd; +}; + +struct bpf_iter__task_file { + union { + struct bpf_iter_meta *meta; + }; + union { + struct task_struct *task; + }; + u32 fd; + union { + struct file *file; + }; +}; + +struct bpf_iter_seq_task_vma_info { + struct bpf_iter_seq_task_common common; + struct task_struct *task; + struct mm_struct *mm; + struct vm_area_struct *vma; + u32 tid; + long unsigned int prev_vm_start; + long unsigned int prev_vm_end; +}; + +enum bpf_task_vma_iter_find_op { + task_vma_iter_first_vma = 0, + task_vma_iter_next_vma = 1, + task_vma_iter_find_vma = 2, +}; + +struct bpf_iter__task_vma { + union { + struct bpf_iter_meta *meta; + }; + union { + struct task_struct *task; + }; + union { + struct vm_area_struct *vma; + }; +}; + +typedef u64 (*btf_bpf_find_vma)(struct task_struct *, u64, bpf_callback_t, void *, u64); + +struct bpf_iter_task_vma_kern_data { + struct task_struct *task; + struct mm_struct *mm; + struct mmap_unlock_irq_work *work; + struct vma_iterator vmi; +}; + +struct bpf_iter_task_vma { + __u64 __opaque[1]; +}; + +struct bpf_iter_task_vma_kern { + struct bpf_iter_task_vma_kern_data *data; +}; + +struct bpf_iter_css_task { + __u64 __opaque[1]; +}; + +struct bpf_iter_css_task_kern { + struct css_task_iter *css_it; +}; + +struct bpf_iter_task { + __u64 __opaque[3]; +}; + +struct bpf_iter_task_kern { + struct task_struct *task; + struct task_struct *pos; + unsigned int flags; +}; + +enum { + BPF_TASK_ITER_ALL_PROCS = 0, + BPF_TASK_ITER_ALL_THREADS = 1, + BPF_TASK_ITER_PROC_THREADS = 2, +}; + +struct bpf_netns_link { + struct bpf_link link; + enum bpf_attach_type type; + enum netns_bpf_attach_type netns_type; + struct net *net; + struct list_head node; +}; + +typedef void (*call_rcu_func_t)(struct callback_head *, rcu_callback_t); + +struct bpf_map_info { + __u32 type; + __u32 id; + __u32 key_size; + __u32 value_size; + __u32 max_entries; + __u32 map_flags; + char name[16]; + __u32 ifindex; + __u32 btf_vmlinux_value_type_id; + __u64 netns_dev; + __u64 netns_ino; + __u32 btf_id; + __u32 btf_key_type_id; + __u32 btf_value_type_id; + __u32 btf_vmlinux_id; + __u64 map_extra; +}; + +struct bpf_tramp_link; + +struct bpf_tramp_links { + struct bpf_tramp_link *links[38]; + int nr_links; +}; + +struct bpf_tramp_link { + struct bpf_link link; + struct hlist_node tramp_hlist; + u64 cookie; +}; + +struct bpf_struct_ops_arg_info { + struct bpf_ctx_arg_aux *info; + u32 cnt; +}; + +struct bpf_struct_ops_desc { + struct bpf_struct_ops *st_ops; + const struct btf_type *type; + const struct btf_type *value_type; + u32 type_id; + u32 value_id; + struct bpf_struct_ops_arg_info *arg_info; +}; + +struct bpf_struct_ops_value { + struct bpf_struct_ops_common_value common; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + char data[0]; +}; + +struct bpf_struct_ops_map { + struct bpf_map map; + struct callback_head rcu; + const struct bpf_struct_ops_desc *st_ops_desc; + struct mutex lock; + struct bpf_link **links; + struct bpf_ksym **ksyms; + u32 funcs_cnt; + u32 image_pages_cnt; + void *image_pages[8]; + struct btf *btf; + struct bpf_struct_ops_value *uvalue; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct bpf_struct_ops_value kvalue; +}; + +struct bpf_struct_ops_link { + struct bpf_link link; + struct bpf_map *map; + wait_queue_head_t wait_hup; +}; + +enum { + IDX_MODULE_ID = 0, + IDX_ST_OPS_COMMON_VALUE_ID = 1, +}; + +enum vmscan_throttle_state { + VMSCAN_THROTTLE_WRITEBACK = 0, + VMSCAN_THROTTLE_ISOLATED = 1, + VMSCAN_THROTTLE_NOPROGRESS = 2, + VMSCAN_THROTTLE_CONGESTED = 3, + NR_VMSCAN_THROTTLE = 4, +}; + +enum mminit_level { + MMINIT_WARNING = 0, + MMINIT_VERIFY = 1, + MMINIT_TRACE = 2, +}; + +typedef unsigned int pgtbl_mod_mask; + +struct follow_pfnmap_args { + struct vm_area_struct *vma; + long unsigned int address; + spinlock_t *lock; + pte_t *ptep; + long unsigned int pfn; + pgprot_t pgprot; + bool writable; + bool special; +}; + +typedef int (*pte_fn_t)(pte_t *, long unsigned int, void *); + +enum rmap_level { + RMAP_LEVEL_PTE = 0, + RMAP_LEVEL_PMD = 1, +}; + +struct unlink_vma_file_batch { + int count; + struct vm_area_struct *vmas[8]; +}; + +typedef int fpb_t; + +struct copy_subpage_arg { + struct folio *dst; + struct folio *src; + struct vm_area_struct *vma; +}; + +enum zpool_mapmode { + ZPOOL_MM_RW = 0, + ZPOOL_MM_RO = 1, + ZPOOL_MM_WO = 2, + ZPOOL_MM_DEFAULT = 0, +}; + +struct zpool_driver { + char *type; + struct module *owner; + atomic_t refcount; + struct list_head list; + void * (*create)(const char *, gfp_t); + void (*destroy)(void *); + bool malloc_support_movable; + int (*malloc)(void *, size_t, gfp_t, long unsigned int *); + void (*free)(void *, long unsigned int); + bool sleep_mapped; + void * (*map)(void *, long unsigned int, enum zpool_mapmode); + void (*unmap)(void *, long unsigned int); + u64 (*total_pages)(void *); +}; + +struct zpool { + struct zpool_driver *driver; + void *pool; +}; + +struct wb_writeback_work { + long int nr_pages; + struct super_block *sb; + enum writeback_sync_modes sync_mode; + unsigned int tagged_writepages: 1; + unsigned int for_kupdate: 1; + unsigned int range_cyclic: 1; + unsigned int for_background: 1; + unsigned int for_sync: 1; + unsigned int auto_free: 1; + enum wb_reason reason; + struct list_head list; + struct wb_completion *done; +}; + +struct trace_event_raw_writeback_folio_template { + struct trace_entry ent; + char name[32]; + ino_t ino; + long unsigned int index; + char __data[0]; +}; + +struct trace_event_raw_writeback_dirty_inode_template { + struct trace_entry ent; + char name[32]; + ino_t ino; + long unsigned int state; + long unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_inode_foreign_history { + struct trace_entry ent; + char name[32]; + ino_t ino; + ino_t cgroup_ino; + unsigned int history; + char __data[0]; +}; + +struct trace_event_raw_inode_switch_wbs { + struct trace_entry ent; + char name[32]; + ino_t ino; + ino_t old_cgroup_ino; + ino_t new_cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_track_foreign_dirty { + struct trace_entry ent; + char name[32]; + u64 bdi_id; + ino_t ino; + unsigned int memcg_id; + ino_t cgroup_ino; + ino_t page_cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_flush_foreign { + struct trace_entry ent; + char name[32]; + ino_t cgroup_ino; + unsigned int frn_bdi_id; + unsigned int frn_memcg_id; + char __data[0]; +}; + +struct trace_event_raw_writeback_write_inode_template { + struct trace_entry ent; + char name[32]; + ino_t ino; + int sync_mode; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_writeback_work_class { + struct trace_entry ent; + char name[32]; + long int nr_pages; + dev_t sb_dev; + int sync_mode; + int for_kupdate; + int range_cyclic; + int for_background; + int reason; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_writeback_pages_written { + struct trace_entry ent; + long int pages; + char __data[0]; +}; + +struct trace_event_raw_writeback_class { + struct trace_entry ent; + char name[32]; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_writeback_bdi_register { + struct trace_entry ent; + char name[32]; + char __data[0]; +}; + +struct trace_event_raw_wbc_class { + struct trace_entry ent; + char name[32]; + long int nr_to_write; + long int pages_skipped; + int sync_mode; + int for_kupdate; + int for_background; + int for_reclaim; + int range_cyclic; + long int range_start; + long int range_end; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_writeback_queue_io { + struct trace_entry ent; + char name[32]; + long unsigned int older; + long int age; + int moved; + int reason; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_global_dirty_state { + struct trace_entry ent; + long unsigned int nr_dirty; + long unsigned int nr_writeback; + long unsigned int background_thresh; + long unsigned int dirty_thresh; + long unsigned int dirty_limit; + long unsigned int nr_dirtied; + long unsigned int nr_written; + char __data[0]; +}; + +struct trace_event_raw_bdi_dirty_ratelimit { + struct trace_entry ent; + char bdi[32]; + long unsigned int write_bw; + long unsigned int avg_write_bw; + long unsigned int dirty_rate; + long unsigned int dirty_ratelimit; + long unsigned int task_ratelimit; + long unsigned int balanced_dirty_ratelimit; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_balance_dirty_pages { + struct trace_entry ent; + char bdi[32]; + long unsigned int limit; + long unsigned int setpoint; + long unsigned int dirty; + long unsigned int bdi_setpoint; + long unsigned int bdi_dirty; + long unsigned int dirty_ratelimit; + long unsigned int task_ratelimit; + unsigned int dirtied; + unsigned int dirtied_pause; + long unsigned int paused; + long int pause; + long unsigned int period; + long int think; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_writeback_sb_inodes_requeue { + struct trace_entry ent; + char name[32]; + ino_t ino; + long unsigned int state; + long unsigned int dirtied_when; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_writeback_single_inode_template { + struct trace_entry ent; + char name[32]; + ino_t ino; + long unsigned int state; + long unsigned int dirtied_when; + long unsigned int writeback_index; + long int nr_to_write; + long unsigned int wrote; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_writeback_inode_template { + struct trace_entry ent; + dev_t dev; + ino_t ino; + long unsigned int state; + __u16 mode; + long unsigned int dirtied_when; + char __data[0]; +}; + +struct trace_event_data_offsets_writeback_folio_template {}; + +struct trace_event_data_offsets_writeback_dirty_inode_template {}; + +struct trace_event_data_offsets_inode_foreign_history {}; + +struct trace_event_data_offsets_inode_switch_wbs {}; + +struct trace_event_data_offsets_track_foreign_dirty {}; + +struct trace_event_data_offsets_flush_foreign {}; + +struct trace_event_data_offsets_writeback_write_inode_template {}; + +struct trace_event_data_offsets_writeback_work_class {}; + +struct trace_event_data_offsets_writeback_pages_written {}; + +struct trace_event_data_offsets_writeback_class {}; + +struct trace_event_data_offsets_writeback_bdi_register {}; + +struct trace_event_data_offsets_wbc_class {}; + +struct trace_event_data_offsets_writeback_queue_io {}; + +struct trace_event_data_offsets_global_dirty_state {}; + +struct trace_event_data_offsets_bdi_dirty_ratelimit {}; + +struct trace_event_data_offsets_balance_dirty_pages {}; + +struct trace_event_data_offsets_writeback_sb_inodes_requeue {}; + +struct trace_event_data_offsets_writeback_single_inode_template {}; + +struct trace_event_data_offsets_writeback_inode_template {}; + +typedef void (*btf_trace_writeback_dirty_folio)(void *, struct folio *, struct address_space *); + +typedef void (*btf_trace_folio_wait_writeback)(void *, struct folio *, struct address_space *); + +typedef void (*btf_trace_writeback_mark_inode_dirty)(void *, struct inode *, int); + +typedef void (*btf_trace_writeback_dirty_inode_start)(void *, struct inode *, int); + +typedef void (*btf_trace_writeback_dirty_inode)(void *, struct inode *, int); + +typedef void (*btf_trace_inode_foreign_history)(void *, struct inode *, struct writeback_control *, unsigned int); + +typedef void (*btf_trace_inode_switch_wbs)(void *, struct inode *, struct bdi_writeback *, struct bdi_writeback *); + +typedef void (*btf_trace_track_foreign_dirty)(void *, struct folio *, struct bdi_writeback *); + +typedef void (*btf_trace_flush_foreign)(void *, struct bdi_writeback *, unsigned int, unsigned int); + +typedef void (*btf_trace_writeback_write_inode_start)(void *, struct inode *, struct writeback_control *); + +typedef void (*btf_trace_writeback_write_inode)(void *, struct inode *, struct writeback_control *); + +typedef void (*btf_trace_writeback_queue)(void *, struct bdi_writeback *, struct wb_writeback_work *); + +typedef void (*btf_trace_writeback_exec)(void *, struct bdi_writeback *, struct wb_writeback_work *); + +typedef void (*btf_trace_writeback_start)(void *, struct bdi_writeback *, struct wb_writeback_work *); + +typedef void (*btf_trace_writeback_written)(void *, struct bdi_writeback *, struct wb_writeback_work *); + +typedef void (*btf_trace_writeback_wait)(void *, struct bdi_writeback *, struct wb_writeback_work *); + +typedef void (*btf_trace_writeback_pages_written)(void *, long int); + +typedef void (*btf_trace_writeback_wake_background)(void *, struct bdi_writeback *); + +typedef void (*btf_trace_writeback_bdi_register)(void *, struct backing_dev_info *); + +typedef void (*btf_trace_wbc_writepage)(void *, struct writeback_control *, struct backing_dev_info *); + +typedef void (*btf_trace_writeback_queue_io)(void *, struct bdi_writeback *, struct wb_writeback_work *, long unsigned int, int); + +typedef void (*btf_trace_global_dirty_state)(void *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_bdi_dirty_ratelimit)(void *, struct bdi_writeback *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_balance_dirty_pages)(void *, struct bdi_writeback *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long int, long unsigned int); + +typedef void (*btf_trace_writeback_sb_inodes_requeue)(void *, struct inode *); + +typedef void (*btf_trace_writeback_single_inode_start)(void *, struct inode *, struct writeback_control *, long unsigned int); + +typedef void (*btf_trace_writeback_single_inode)(void *, struct inode *, struct writeback_control *, long unsigned int); + +typedef void (*btf_trace_writeback_lazytime)(void *, struct inode *); + +typedef void (*btf_trace_writeback_lazytime_iput)(void *, struct inode *); + +typedef void (*btf_trace_writeback_dirty_inode_enqueue)(void *, struct inode *); + +typedef void (*btf_trace_sb_mark_inode_writeback)(void *, struct inode *); + +typedef void (*btf_trace_sb_clear_inode_writeback)(void *, struct inode *); + +struct inode_switch_wbs_context { + struct rcu_work work; + struct bdi_writeback *new_wb; + struct inode *inodes[0]; +}; + +struct fscrypt_keyring { + spinlock_t lock; + struct hlist_head key_hashtable[128]; +}; + +struct fscrypt_provisioning_key_payload { + __u32 type; + __u32 __reserved; + __u8 raw[0]; +}; + +struct fscrypt_add_key_arg { + struct fscrypt_key_specifier key_spec; + __u32 raw_size; + __u32 key_id; + __u32 __reserved[8]; + __u8 raw[0]; +}; + +struct fscrypt_remove_key_arg { + struct fscrypt_key_specifier key_spec; + __u32 removal_status_flags; + __u32 __reserved[5]; +}; + +struct fscrypt_get_key_status_arg { + struct fscrypt_key_specifier key_spec; + __u32 __reserved[6]; + __u32 status; + __u32 status_flags; + __u32 user_count; + __u32 __out_reserved[13]; +}; + +typedef long int intptr_t; + +struct genradix_node { + union { + struct genradix_node *children[64]; + u8 data[512]; + }; +}; + +struct seccomp_data { + int nr; + __u32 arch; + __u64 instruction_pointer; + __u64 args[6]; +}; + +struct syscall_info { + __u64 sp; + struct seccomp_data data; +}; + +enum resctrl_conf_type { + CDP_NONE = 0, + CDP_CODE = 1, + CDP_DATA = 2, +}; + +enum proc_mem_force { + PROC_MEM_FORCE_ALWAYS = 0, + PROC_MEM_FORCE_PTRACE = 1, + PROC_MEM_FORCE_NEVER = 2, +}; + +struct pid_entry { + const char *name; + unsigned int len; + umode_t mode; + const struct inode_operations *iop; + const struct file_operations *fop; + union proc_op op; +}; + +struct limit_names { + const char *name; + const char *unit; +}; + +struct map_files_info { + long unsigned int start; + long unsigned int end; + fmode_t mode; +}; + +struct timers_private { + struct pid *pid; + struct task_struct *task; + struct sighand_struct *sighand; + struct pid_namespace *ns; + long unsigned int flags; +}; + +struct tgid_iter { + unsigned int tgid; + struct task_struct *task; +}; + +enum netfs_read_trace { + netfs_read_trace_dio_read = 0, + netfs_read_trace_expanded = 1, + netfs_read_trace_readahead = 2, + netfs_read_trace_readpage = 3, + netfs_read_trace_read_gaps = 4, + netfs_read_trace_prefetch_for_write = 5, + netfs_read_trace_write_begin = 6, +} __attribute__((mode(byte))); + +struct ext4_map_blocks { + ext4_fsblk_t m_pblk; + ext4_lblk_t m_lblk; + unsigned int m_len; + unsigned int m_flags; +}; + +enum { + EXT4_FC_REASON_XATTR = 0, + EXT4_FC_REASON_CROSS_RENAME = 1, + EXT4_FC_REASON_JOURNAL_FLAG_CHANGE = 2, + EXT4_FC_REASON_NOMEM = 3, + EXT4_FC_REASON_SWAP_BOOT = 4, + EXT4_FC_REASON_RESIZE = 5, + EXT4_FC_REASON_RENAME_DIR = 6, + EXT4_FC_REASON_FALLOC_RANGE = 7, + EXT4_FC_REASON_INODE_JOURNAL_DATA = 8, + EXT4_FC_REASON_ENCRYPTED_FILENAME = 9, + EXT4_FC_REASON_MAX = 10, +}; + +struct ext4_dir_entry_hash { + __le32 hash; + __le32 minor_hash; +}; + +struct ext4_dir_entry_2 { + __le32 inode; + __le16 rec_len; + __u8 name_len; + __u8 file_type; + char name[255]; +}; + +struct fname; + +struct dir_private_info { + struct rb_root root; + struct rb_node *curr_node; + struct fname *extra_fname; + loff_t last_pos; + __u32 curr_hash; + __u32 curr_minor_hash; + __u32 next_hash; + u64 cookie; + bool initialized; +}; + +struct fname { + __u32 hash; + __u32 minor_hash; + struct rb_node rb_hash; + struct fname *next; + __u32 inode; + __u8 name_len; + __u8 file_type; + char name[0]; +}; + +struct ext4_new_group_data { + __u32 group; + __u64 block_bitmap; + __u64 inode_bitmap; + __u64 inode_table; + __u32 blocks_count; + __u16 reserved_blocks; + __u16 mdata_blocks; + __u32 free_clusters_count; +}; + +enum { + BLOCK_BITMAP = 0, + INODE_BITMAP = 1, + INODE_TABLE = 2, + GROUP_TABLE_COUNT = 3, +}; + +struct ext4_rcu_ptr { + struct callback_head rcu; + void *ptr; +}; + +struct ext4_new_flex_group_data { + struct ext4_new_group_data *groups; + __u16 *bg_flags; + ext4_group_t resize_bg; + ext4_group_t count; +}; + +struct xattr; + +typedef int (*initxattrs)(struct inode *, const struct xattr *, void *); + +struct xattr { + const char *name; + void *value; + size_t value_len; +}; + +enum Opt_errors { + Opt_errors_continue = 0, + Opt_errors_panic = 1, +}; + +enum squashfs_param { + Opt_errors___3 = 0, + Opt_threads = 1, +}; + +struct squashfs_mount_opts { + enum Opt_errors errors; + const struct squashfs_decompressor_thread_ops *thread_ops; + int thread_num; +}; + +typedef long long unsigned int llu; + +struct fat_fid { + u32 i_gen; + u32 i_pos_low; + u16 i_pos_hi; + u16 parent_i_pos_hi; + u32 parent_i_pos_low; + u32 parent_i_gen; +}; + +struct iso_directory_record { + __u8 length[1]; + __u8 ext_attr_length[1]; + __u8 extent[8]; + __u8 size[8]; + __u8 date[7]; + __u8 flags[1]; + __u8 file_unit_size[1]; + __u8 interleave[1]; + __u8 volume_sequence_number[4]; + __u8 name_len[1]; + char name[0]; +}; + +struct isofs_sb_info { + long unsigned int s_ninodes; + long unsigned int s_nzones; + long unsigned int s_firstdatazone; + long unsigned int s_log_zone_size; + long unsigned int s_max_size; + int s_rock_offset; + s32 s_sbsector; + unsigned char s_joliet_level; + unsigned char s_mapping; + unsigned char s_check; + unsigned char s_session; + unsigned int s_high_sierra: 1; + unsigned int s_rock: 2; + unsigned int s_cruft: 1; + unsigned int s_nocompress: 1; + unsigned int s_hide: 1; + unsigned int s_showassoc: 1; + unsigned int s_overriderockperm: 1; + unsigned int s_uid_set: 1; + unsigned int s_gid_set: 1; + umode_t s_fmode; + umode_t s_dmode; + kgid_t s_gid; + kuid_t s_uid; + struct nls_table *s_nls_iocharset; +}; + +enum { + FATTR4_MODE_UMASK = 81, +}; + +struct nfs_open_dir_context { + struct list_head list; + atomic_t cache_hits; + atomic_t cache_misses; + long unsigned int attr_gencount; + __be32 verf[2]; + __u64 dir_cookie; + __u64 last_cookie; + long unsigned int page_index; + unsigned int dtsize; + bool force_clear; + bool eof; + struct callback_head callback_head; +}; + +struct nfs_cache_array_entry { + u64 cookie; + u64 ino; + const char *name; + unsigned int name_len; + unsigned char d_type; +}; + +struct nfs_cache_array { + u64 change_attr; + u64 last_cookie; + unsigned int size; + unsigned char folio_full: 1; + unsigned char folio_is_eof: 1; + unsigned char cookies_are_ordered: 1; + struct nfs_cache_array_entry array[0]; +}; + +struct nfs_readdir_descriptor { + struct file *file; + struct folio *folio; + struct dir_context *ctx; + long unsigned int folio_index; + long unsigned int folio_index_max; + u64 dir_cookie; + u64 last_cookie; + loff_t current_index; + __be32 verf[2]; + long unsigned int dir_verifier; + long unsigned int timestamp; + long unsigned int gencount; + long unsigned int attr_gencount; + unsigned int cache_entry_index; + unsigned int buffer_fills; + unsigned int dtsize; + bool clear_cache; + bool plus; + bool eob; + bool eof; +}; + +struct rpc_pipe_dir_object_ops; + +struct rpc_pipe_dir_object { + struct list_head pdo_head; + const struct rpc_pipe_dir_object_ops *pdo_ops; + void *pdo_data; +}; + +struct rpc_pipe_dir_object_ops { + int (*create)(struct dentry *, struct rpc_pipe_dir_object *); + void (*destroy)(struct dentry *, struct rpc_pipe_dir_object *); +}; + +struct rpc_inode { + struct inode vfs_inode; + void *private; + struct rpc_pipe *pipe; + wait_queue_head_t waitq; +}; + +struct idmap_legacy_upcalldata; + +struct idmap { + struct rpc_pipe_dir_object idmap_pdo; + struct rpc_pipe *idmap_pipe; + struct idmap_legacy_upcalldata *idmap_upcall_data; + struct mutex idmap_mutex; + struct user_namespace *user_ns; +}; + +struct idmap_msg { + __u8 im_type; + __u8 im_conv; + char im_name[128]; + __u32 im_id; + __u8 im_status; +}; + +struct idmap_legacy_upcalldata { + struct rpc_pipe_msg pipe_msg; + struct idmap_msg idmap_msg; + struct key *authkey; + struct idmap *idmap; +}; + +enum { + Opt_find_uid = 0, + Opt_find_gid = 1, + Opt_find_user = 2, + Opt_find_group = 3, + Opt_find_err = 4, +}; + +enum { + NFSPROC4_CLNT_NULL = 0, + NFSPROC4_CLNT_READ = 1, + NFSPROC4_CLNT_WRITE = 2, + NFSPROC4_CLNT_COMMIT = 3, + NFSPROC4_CLNT_OPEN = 4, + NFSPROC4_CLNT_OPEN_CONFIRM = 5, + NFSPROC4_CLNT_OPEN_NOATTR = 6, + NFSPROC4_CLNT_OPEN_DOWNGRADE = 7, + NFSPROC4_CLNT_CLOSE = 8, + NFSPROC4_CLNT_SETATTR = 9, + NFSPROC4_CLNT_FSINFO = 10, + NFSPROC4_CLNT_RENEW = 11, + NFSPROC4_CLNT_SETCLIENTID = 12, + NFSPROC4_CLNT_SETCLIENTID_CONFIRM = 13, + NFSPROC4_CLNT_LOCK = 14, + NFSPROC4_CLNT_LOCKT = 15, + NFSPROC4_CLNT_LOCKU = 16, + NFSPROC4_CLNT_ACCESS = 17, + NFSPROC4_CLNT_GETATTR = 18, + NFSPROC4_CLNT_LOOKUP = 19, + NFSPROC4_CLNT_LOOKUP_ROOT = 20, + NFSPROC4_CLNT_REMOVE = 21, + NFSPROC4_CLNT_RENAME = 22, + NFSPROC4_CLNT_LINK = 23, + NFSPROC4_CLNT_SYMLINK = 24, + NFSPROC4_CLNT_CREATE = 25, + NFSPROC4_CLNT_PATHCONF = 26, + NFSPROC4_CLNT_STATFS = 27, + NFSPROC4_CLNT_READLINK = 28, + NFSPROC4_CLNT_READDIR = 29, + NFSPROC4_CLNT_SERVER_CAPS = 30, + NFSPROC4_CLNT_DELEGRETURN = 31, + NFSPROC4_CLNT_GETACL = 32, + NFSPROC4_CLNT_SETACL = 33, + NFSPROC4_CLNT_FS_LOCATIONS = 34, + NFSPROC4_CLNT_RELEASE_LOCKOWNER = 35, + NFSPROC4_CLNT_SECINFO = 36, + NFSPROC4_CLNT_FSID_PRESENT = 37, + NFSPROC4_CLNT_EXCHANGE_ID = 38, + NFSPROC4_CLNT_CREATE_SESSION = 39, + NFSPROC4_CLNT_DESTROY_SESSION = 40, + NFSPROC4_CLNT_SEQUENCE = 41, + NFSPROC4_CLNT_GET_LEASE_TIME = 42, + NFSPROC4_CLNT_RECLAIM_COMPLETE = 43, + NFSPROC4_CLNT_LAYOUTGET = 44, + NFSPROC4_CLNT_GETDEVICEINFO = 45, + NFSPROC4_CLNT_LAYOUTCOMMIT = 46, + NFSPROC4_CLNT_LAYOUTRETURN = 47, + NFSPROC4_CLNT_SECINFO_NO_NAME = 48, + NFSPROC4_CLNT_TEST_STATEID = 49, + NFSPROC4_CLNT_FREE_STATEID = 50, + NFSPROC4_CLNT_GETDEVICELIST = 51, + NFSPROC4_CLNT_BIND_CONN_TO_SESSION = 52, + NFSPROC4_CLNT_DESTROY_CLIENTID = 53, + NFSPROC4_CLNT_SEEK = 54, + NFSPROC4_CLNT_ALLOCATE = 55, + NFSPROC4_CLNT_DEALLOCATE = 56, + NFSPROC4_CLNT_LAYOUTSTATS = 57, + NFSPROC4_CLNT_CLONE = 58, + NFSPROC4_CLNT_COPY = 59, + NFSPROC4_CLNT_OFFLOAD_CANCEL = 60, + NFSPROC4_CLNT_LOOKUPP = 61, + NFSPROC4_CLNT_LAYOUTERROR = 62, + NFSPROC4_CLNT_COPY_NOTIFY = 63, + NFSPROC4_CLNT_GETXATTR = 64, + NFSPROC4_CLNT_SETXATTR = 65, + NFSPROC4_CLNT_LISTXATTRS = 66, + NFSPROC4_CLNT_REMOVEXATTR = 67, + NFSPROC4_CLNT_READ_PLUS = 68, +}; + +enum data_content4 { + NFS4_CONTENT_DATA = 0, + NFS4_CONTENT_HOLE = 1, +}; + +struct nfs42_netaddr { + char netid[5]; + char addr[58]; + u32 netid_len; + u32 addr_len; +}; + +enum netloc_type4 { + NL4_NAME = 1, + NL4_URL = 2, + NL4_NETADDR = 3, +}; + +struct nl4_server { + enum netloc_type4 nl4_type; + union { + struct { + int nl4_str_sz; + char nl4_str[1025]; + }; + struct nfs42_netaddr nl4_addr; + } u; +}; + +struct nfs42_layoutstat_res { + struct nfs4_sequence_res seq_res; + int num_dev; + int rpc_status; +}; + +struct nfs42_layoutstat_data { + struct inode *inode; + struct nfs42_layoutstat_args args; + struct nfs42_layoutstat_res res; +}; + +struct nfs42_device_error { + struct nfs4_deviceid dev_id; + int status; + enum nfs_opnum4 opnum; +}; + +struct nfs42_layout_error { + __u64 offset; + __u64 length; + nfs4_stateid stateid; + struct nfs42_device_error errors[1]; +}; + +struct nfs42_layouterror_args { + struct nfs4_sequence_args seq_args; + struct inode *inode; + unsigned int num_errors; + struct nfs42_layout_error errors[5]; +}; + +struct nfs42_layouterror_res { + struct nfs4_sequence_res seq_res; + unsigned int num_errors; + int rpc_status; +}; + +struct nfs42_layouterror_data { + struct nfs42_layouterror_args args; + struct nfs42_layouterror_res res; + struct inode *inode; + struct pnfs_layout_segment *lseg; +}; + +struct nfs42_clone_args { + struct nfs4_sequence_args seq_args; + struct nfs_fh *src_fh; + struct nfs_fh *dst_fh; + nfs4_stateid src_stateid; + nfs4_stateid dst_stateid; + __u64 src_offset; + __u64 dst_offset; + __u64 count; + const u32 *dst_bitmask; +}; + +struct nfs42_clone_res { + struct nfs4_sequence_res seq_res; + unsigned int rpc_status; + struct nfs_fattr *dst_fattr; + const struct nfs_server *server; +}; + +struct nfs42_falloc_args { + struct nfs4_sequence_args seq_args; + struct nfs_fh *falloc_fh; + nfs4_stateid falloc_stateid; + u64 falloc_offset; + u64 falloc_length; + const u32 *falloc_bitmask; +}; + +struct nfs42_falloc_res { + struct nfs4_sequence_res seq_res; + unsigned int status; + struct nfs_fattr *falloc_fattr; + const struct nfs_server *falloc_server; +}; + +struct nfs42_copy_args { + struct nfs4_sequence_args seq_args; + struct nfs_fh *src_fh; + nfs4_stateid src_stateid; + u64 src_pos; + struct nfs_fh *dst_fh; + nfs4_stateid dst_stateid; + u64 dst_pos; + u64 count; + bool sync; + struct nl4_server *cp_src; +}; + +struct nfs42_write_res { + nfs4_stateid stateid; + u64 count; + struct nfs_writeverf verifier; +}; + +struct nfs42_copy_res { + struct nfs4_sequence_res seq_res; + struct nfs42_write_res write_res; + bool consecutive; + bool synchronous; + struct nfs_commitres commit_res; +}; + +struct nfs42_offload_status_args { + struct nfs4_sequence_args osa_seq_args; + struct nfs_fh *osa_src_fh; + nfs4_stateid osa_stateid; +}; + +struct nfs42_offload_status_res { + struct nfs4_sequence_res osr_seq_res; + uint64_t osr_count; + int osr_status; +}; + +struct nfs42_copy_notify_args { + struct nfs4_sequence_args cna_seq_args; + struct nfs_fh *cna_src_fh; + nfs4_stateid cna_src_stateid; + struct nl4_server cna_dst; +}; + +struct nfs42_copy_notify_res { + struct nfs4_sequence_res cnr_seq_res; + struct nfstime4 cnr_lease_time; + nfs4_stateid cnr_stateid; + struct nl4_server cnr_src; +}; + +struct nfs42_seek_args { + struct nfs4_sequence_args seq_args; + struct nfs_fh *sa_fh; + nfs4_stateid sa_stateid; + u64 sa_offset; + u32 sa_what; +}; + +struct nfs42_seek_res { + struct nfs4_sequence_res seq_res; + unsigned int status; + u32 sr_eof; + u64 sr_offset; +}; + +struct nfs42_setxattrargs { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fh; + const u32 *bitmask; + const char *xattr_name; + u32 xattr_flags; + size_t xattr_len; + struct page **xattr_pages; +}; + +struct nfs42_setxattrres { + struct nfs4_sequence_res seq_res; + struct nfs4_change_info cinfo; + struct nfs_fattr *fattr; + const struct nfs_server *server; +}; + +struct nfs42_getxattrargs { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fh; + const char *xattr_name; + size_t xattr_len; + struct page **xattr_pages; +}; + +struct nfs42_getxattrres { + struct nfs4_sequence_res seq_res; + size_t xattr_len; +}; + +struct nfs42_listxattrsargs { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fh; + u32 count; + u64 cookie; + struct page **xattr_pages; +}; + +struct nfs42_listxattrsres { + struct nfs4_sequence_res seq_res; + struct page *scratch; + void *xattr_buf; + size_t xattr_len; + u64 cookie; + bool eof; + size_t copied; +}; + +struct nfs42_removexattrargs { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fh; + const char *xattr_name; +}; + +struct nfs42_removexattrres { + struct nfs4_sequence_res seq_res; + struct nfs4_change_info cinfo; +}; + +struct nfs4_copy_state { + struct list_head copies; + struct list_head src_copies; + nfs4_stateid stateid; + struct completion completion; + uint64_t count; + struct nfs_writeverf verf; + int error; + int flags; + struct nfs4_state *parent_src_state; + struct nfs4_state *parent_dst_state; +}; + +enum { + LK_STATE_IN_USE = 0, + NFS_DELEGATED_STATE = 1, + NFS_OPEN_STATE = 2, + NFS_O_RDONLY_STATE = 3, + NFS_O_WRONLY_STATE = 4, + NFS_O_RDWR_STATE = 5, + NFS_STATE_RECLAIM_REBOOT = 6, + NFS_STATE_RECLAIM_NOGRACE = 7, + NFS_STATE_POSIX_LOCKS = 8, + NFS_STATE_RECOVERY_FAILED = 9, + NFS_STATE_MAY_NOTIFY_LOCK = 10, + NFS_STATE_CHANGE_WAIT = 11, + NFS_CLNT_DST_SSC_COPY_STATE = 12, + NFS_CLNT_SRC_SSC_COPY_STATE = 13, + NFS_SRV_SSC_COPY_STATE = 14, +}; + +struct nfs4_exception { + struct nfs4_state *state; + struct inode *inode; + nfs4_stateid *stateid; + long int timeout; + short unsigned int retrans; + unsigned char task_is_privileged: 1; + unsigned char delay: 1; + unsigned char recovering: 1; + unsigned char retry: 1; + bool interruptible; +}; + +enum { + NFS_LAYOUT_RO_FAILED = 0, + NFS_LAYOUT_RW_FAILED = 1, + NFS_LAYOUT_BULK_RECALL = 2, + NFS_LAYOUT_RETURN = 3, + NFS_LAYOUT_RETURN_LOCK = 4, + NFS_LAYOUT_RETURN_REQUESTED = 5, + NFS_LAYOUT_INVALID_STID = 6, + NFS_LAYOUT_FIRST_LAYOUTGET = 7, + NFS_LAYOUT_INODE_FREEING = 8, + NFS_LAYOUT_HASHED = 9, + NFS_LAYOUT_DRAIN = 10, +}; + +struct nfs42_offloadcancel_data { + struct nfs_server *seq_server; + struct nfs42_offload_status_args args; + struct nfs42_offload_status_res res; +}; + +enum { + NFSD_A_SERVER_THREADS = 1, + NFSD_A_SERVER_GRACETIME = 2, + NFSD_A_SERVER_LEASETIME = 3, + NFSD_A_SERVER_SCOPE = 4, + __NFSD_A_SERVER_MAX = 5, + NFSD_A_SERVER_MAX = 4, +}; + +enum { + NFSD_A_VERSION_MAJOR = 1, + NFSD_A_VERSION_MINOR = 2, + NFSD_A_VERSION_ENABLED = 3, + __NFSD_A_VERSION_MAX = 4, + NFSD_A_VERSION_MAX = 3, +}; + +enum { + NFSD_A_SERVER_PROTO_VERSION = 1, + __NFSD_A_SERVER_PROTO_MAX = 2, + NFSD_A_SERVER_PROTO_MAX = 1, +}; + +enum { + NFSD_A_SOCK_ADDR = 1, + NFSD_A_SOCK_TRANSPORT_NAME = 2, + __NFSD_A_SOCK_MAX = 3, + NFSD_A_SOCK_MAX = 2, +}; + +enum { + NFSD_A_SERVER_SOCK_ADDR = 1, + __NFSD_A_SERVER_SOCK_MAX = 2, + NFSD_A_SERVER_SOCK_MAX = 1, +}; + +enum { + NFSD_A_POOL_MODE_MODE = 1, + NFSD_A_POOL_MODE_NPOOLS = 2, + __NFSD_A_POOL_MODE_MAX = 3, + NFSD_A_POOL_MODE_MAX = 2, +}; + +enum { + NFSD_CMD_RPC_STATUS_GET = 1, + NFSD_CMD_THREADS_SET = 2, + NFSD_CMD_THREADS_GET = 3, + NFSD_CMD_VERSION_SET = 4, + NFSD_CMD_VERSION_GET = 5, + NFSD_CMD_LISTENER_SET = 6, + NFSD_CMD_LISTENER_GET = 7, + NFSD_CMD_POOL_MODE_SET = 8, + NFSD_CMD_POOL_MODE_GET = 9, + __NFSD_CMD_MAX = 10, + NFSD_CMD_MAX = 9, +}; + +enum { + RPC_PIPEFS_MOUNT = 0, + RPC_PIPEFS_UMOUNT = 1, +}; + +enum cld_command { + Cld_Create = 0, + Cld_Remove = 1, + Cld_Check = 2, + Cld_GraceDone = 3, + Cld_GraceStart = 4, + Cld_GetVersion = 5, +}; + +struct cld_name { + __u16 cn_len; + unsigned char cn_id[1024]; +}; + +struct cld_princhash { + __u8 cp_len; + unsigned char cp_data[32]; +}; + +struct cld_clntinfo { + struct cld_name cc_name; + struct cld_princhash cc_princhash; +} __attribute__((packed)); + +struct cld_msg { + __u8 cm_vers; + __u8 cm_cmd; + __s16 cm_status; + __u32 cm_xid; + union { + __s64 cm_gracetime; + struct cld_name cm_name; + __u8 cm_version; + } cm_u; +} __attribute__((packed)); + +struct cld_msg_v2 { + __u8 cm_vers; + __u8 cm_cmd; + __s16 cm_status; + __u32 cm_xid; + union { + struct cld_name cm_name; + __u8 cm_version; + struct cld_clntinfo cm_clntinfo; + } cm_u; +} __attribute__((packed)); + +struct cld_msg_hdr { + __u8 cm_vers; + __u8 cm_cmd; + __s16 cm_status; + __u32 cm_xid; +}; + +struct cld_net { + struct rpc_pipe *cn_pipe; + spinlock_t cn_lock; + struct list_head cn_list; + unsigned int cn_xid; + struct crypto_shash *cn_tfm; +}; + +struct nfs4_client_reclaim { + struct list_head cr_strhash; + struct nfs4_client *cr_clp; + struct xdr_netobj cr_name; + struct xdr_netobj cr_princhash; +}; + +struct cld_upcall { + struct list_head cu_list; + struct cld_net *cu_net; + struct completion cu_done; + union { + struct cld_msg_hdr cu_hdr; + struct cld_msg cu_msg; + struct cld_msg_v2 cu_msg_v2; + } cu_u; +}; + +enum { + NSMPROC_NULL = 0, + NSMPROC_STAT = 1, + NSMPROC_MON = 2, + NSMPROC_UNMON = 3, + NSMPROC_UNMON_ALL = 4, + NSMPROC_SIMU_CRASH = 5, + NSMPROC_NOTIFY = 6, +}; + +struct nsm_args { + struct nsm_private *priv; + u32 prog; + u32 vers; + u32 proc; + char *mon_name; + const char *nodename; +}; + +struct nsm_res { + u32 status; + u32 state; +}; + +typedef struct smb_com_lock_req LOCK_REQ; + +struct smb2_transform_hdr { + __le32 ProtocolId; + __u8 Signature[16]; + __u8 Nonce[16]; + __le32 OriginalMessageSize; + __u16 Reserved1; + __le16 Flags; + __le64 SessionId; +} __attribute__((packed)); + +struct smbd_connection {}; + +struct send_req_vars { + struct smb2_transform_hdr tr_hdr; + struct smb_rqst rqst[7]; + struct kvec iov; +}; + +enum { + MAX_NESTED_LINKS = 8, +}; + +struct cache_dfs_tgt { + char *name; + int path_consumed; + struct list_head list; +}; + +struct cache_entry { + struct hlist_node hlist; + const char *path; + int hdr_flags; + int ttl; + int srvtype; + int ref_flags; + struct timespec64 etime; + int path_consumed; + int numtgts; + struct list_head tlist; + struct cache_dfs_tgt *tgthint; +}; + +struct ovl_path { + const struct ovl_layer *layer; + struct dentry *dentry; +}; + +struct ovl_entry { + unsigned int __numlower; + struct ovl_path __lowerstack[0]; +}; + +struct ovl_dir_cache; + +struct ovl_inode { + union { + struct ovl_dir_cache *cache; + const char *lowerdata_redirect; + }; + const char *redirect; + u64 version; + long unsigned int flags; + struct inode vfs_inode; + struct dentry *__upperdentry; + struct ovl_entry *oe; + struct mutex lock; +}; + +enum ovl_xattr { + OVL_XATTR_OPAQUE = 0, + OVL_XATTR_REDIRECT = 1, + OVL_XATTR_ORIGIN = 2, + OVL_XATTR_IMPURE = 3, + OVL_XATTR_NLINK = 4, + OVL_XATTR_UPPER = 5, + OVL_XATTR_UUID = 6, + OVL_XATTR_METACOPY = 7, + OVL_XATTR_PROTATTR = 8, + OVL_XATTR_XWHITEOUT = 9, +}; + +enum ovl_inode_flag { + OVL_IMPURE = 0, + OVL_WHITEOUTS = 1, + OVL_INDEX = 2, + OVL_UPPERDATA = 3, + OVL_CONST_INO = 4, + OVL_HAS_DIGEST = 5, + OVL_VERIFIED_DIGEST = 6, +}; + +enum ovl_entry_flag { + OVL_E_UPPER_ALIAS = 0, + OVL_E_OPAQUE = 1, + OVL_E_CONNECTED = 2, + OVL_E_XWHITEOUTS = 3, +}; + +struct ovl_fb { + u8 version; + u8 magic; + u8 len; + u8 flags; + u8 type; + uuid_t uuid; + u32 fid[0]; +} __attribute__((packed)); + +struct ovl_fh { + u8 padding[3]; + union { + struct ovl_fb fb; + struct { + struct {} __empty_buf; + u8 buf[0]; + }; + }; +}; + +struct ovl_inode_params { + struct inode *newinode; + struct dentry *upperdentry; + struct ovl_entry *oe; + bool index; + char *redirect; + char *lowerdata_redirect; +}; + +struct cdrom_msf0 { + __u8 minute; + __u8 second; + __u8 frame; +}; + +union cdrom_addr { + struct cdrom_msf0 msf; + int lba; +}; + +struct cdrom_multisession { + union cdrom_addr addr; + __u8 xa_flag; + __u8 addr_format; +}; + +struct cdrom_mcn { + __u8 medium_catalog_number[14]; +}; + +struct packet_command { + unsigned char cmd[12]; + unsigned char *buffer; + unsigned int buflen; + int stat; + struct scsi_sense_hdr *sshdr; + unsigned char data_direction; + int quiet; + int timeout; + void *reserved[1]; +}; + +struct cdrom_device_ops; + +struct cdrom_device_info { + const struct cdrom_device_ops *ops; + struct list_head list; + struct gendisk *disk; + void *handle; + int mask; + int speed; + int capacity; + unsigned int options: 30; + unsigned int mc_flags: 2; + unsigned int vfs_events; + unsigned int ioctl_events; + int use_count; + char name[20]; + __u8 sanyo_slot: 2; + __u8 keeplocked: 1; + __u8 reserved: 5; + int cdda_method; + __u8 last_sense; + __u8 media_written; + short unsigned int mmc3_profile; + int (*exit)(struct cdrom_device_info *); + int mrw_mode_page; + bool opened_for_data; + __s64 last_media_change_ms; +}; + +struct cdrom_device_ops { + int (*open)(struct cdrom_device_info *, int); + void (*release)(struct cdrom_device_info *); + int (*drive_status)(struct cdrom_device_info *, int); + unsigned int (*check_events)(struct cdrom_device_info *, unsigned int, int); + int (*tray_move)(struct cdrom_device_info *, int); + int (*lock_door)(struct cdrom_device_info *, int); + int (*select_speed)(struct cdrom_device_info *, long unsigned int); + int (*get_last_session)(struct cdrom_device_info *, struct cdrom_multisession *); + int (*get_mcn)(struct cdrom_device_info *, struct cdrom_mcn *); + int (*reset)(struct cdrom_device_info *); + int (*audio_ioctl)(struct cdrom_device_info *, unsigned int, void *); + int (*generic_packet)(struct cdrom_device_info *, struct packet_command *); + int (*read_cdda_bpc)(struct cdrom_device_info *, void *, u32, u32, u8 *); + const int capability; +}; + +enum xfs_refcount_intent_type { + XFS_REFCOUNT_INCREASE = 1, + XFS_REFCOUNT_DECREASE = 2, + XFS_REFCOUNT_ALLOC_COW = 3, + XFS_REFCOUNT_FREE_COW = 4, +}; + +struct xfs_refcount_intent { + struct list_head ri_list; + struct xfs_perag *ri_pag; + enum xfs_refcount_intent_type ri_type; + xfs_extlen_t ri_blockcount; + xfs_fsblock_t ri_startblock; +}; + +typedef int (*xfs_refcount_query_range_fn)(struct xfs_btree_cur *, const struct xfs_refcount_irec *, void *); + +enum xfs_refc_adjust_op { + XFS_REFCOUNT_ADJUST_INCREASE = 1, + XFS_REFCOUNT_ADJUST_DECREASE = -1, + XFS_REFCOUNT_ADJUST_COW_ALLOC = 0, + XFS_REFCOUNT_ADJUST_COW_FREE = -1, +}; + +struct xfs_refcount_recovery { + struct list_head rr_list; + struct xfs_refcount_irec rr_rrec; +}; + +struct xfs_refcount_query_range_info { + xfs_refcount_query_range_fn fn; + void *priv; +}; + +typedef __be64 xfs_timestamp_t; + +struct xfs_dinode { + __be16 di_magic; + __be16 di_mode; + __u8 di_version; + __u8 di_format; + __be16 di_onlink; + __be32 di_uid; + __be32 di_gid; + __be32 di_nlink; + __be16 di_projid_lo; + __be16 di_projid_hi; + union { + __be64 di_big_nextents; + __be64 di_v3_pad; + struct { + __u8 di_v2_pad[6]; + __be16 di_flushiter; + }; + }; + xfs_timestamp_t di_atime; + xfs_timestamp_t di_mtime; + xfs_timestamp_t di_ctime; + __be64 di_size; + __be64 di_nblocks; + __be32 di_extsize; + union { + struct { + __be32 di_nextents; + __be16 di_anextents; + } __attribute__((packed)); + struct { + __be32 di_big_anextents; + __be16 di_nrext64_pad; + } __attribute__((packed)); + }; + __u8 di_forkoff; + __s8 di_aformat; + __be32 di_dmevmask; + __be16 di_dmstate; + __be16 di_flags; + __be32 di_gen; + __be32 di_next_unlinked; + __le32 di_crc; + __be64 di_changecount; + __be64 di_lsn; + __be64 di_flags2; + __be32 di_cowextsize; + __u8 di_pad2[12]; + xfs_timestamp_t di_crtime; + __be64 di_ino; + uuid_t di_uuid; +}; + +struct xfs_iunlink_item { + struct xfs_log_item item; + struct xfs_inode *ip; + struct xfs_perag *pag; + xfs_agino_t next_agino; + xfs_agino_t old_agino; +}; + +typedef int (*eventfs_callback)(const char *, umode_t *, void **, const struct file_operations **); + +typedef void (*eventfs_release)(const char *, void *); + +struct eventfs_entry { + const char *name; + eventfs_callback callback; + eventfs_release release; +}; + +enum { + TRACEFS_EVENT_INODE = 2, + TRACEFS_GID_PERM_SET = 4, + TRACEFS_UID_PERM_SET = 8, + TRACEFS_INSTANCE_INODE = 16, +}; + +struct tracefs_inode { + struct inode vfs_inode; + struct list_head list; + long unsigned int flags; + void *private; +}; + +struct eventfs_attr { + int mode; + kuid_t uid; + kgid_t gid; +}; + +struct eventfs_inode { + union { + struct list_head list; + struct callback_head rcu; + }; + struct list_head children; + const struct eventfs_entry *entries; + const char *name; + struct eventfs_attr *entry_attrs; + void *data; + struct eventfs_attr attr; + struct kref kref; + unsigned int is_freed: 1; + unsigned int is_events: 1; + unsigned int nr_entries: 30; + unsigned int ino; +}; + +struct tracefs_dir_ops { + int (*mkdir)(const char *); + int (*rmdir)(const char *); +}; + +struct tracefs_fs_info { + kuid_t uid; + kgid_t gid; + umode_t mode; + unsigned int opts; +}; + +enum { + Opt_uid___4 = 0, + Opt_gid___4 = 1, + Opt_mode___3 = 2, +}; + +enum btrfs_delayed_ref_action { + BTRFS_ADD_DELAYED_REF = 1, + BTRFS_DROP_DELAYED_REF = 2, + BTRFS_ADD_DELAYED_EXTENT = 3, + BTRFS_UPDATE_DELAYED_HEAD = 4, +} __attribute__((mode(byte))); + +struct btrfs_data_ref { + u64 objectid; + u64 offset; +}; + +struct btrfs_tree_ref { + int level; +}; + +struct btrfs_delayed_ref_node { + struct rb_node ref_node; + struct list_head add_list; + u64 bytenr; + u64 num_bytes; + u64 seq; + u64 ref_root; + u64 parent; + refcount_t refs; + int ref_mod; + unsigned int action: 8; + unsigned int type: 8; + union { + struct btrfs_tree_ref tree_ref; + struct btrfs_data_ref data_ref; + }; +}; + +struct btrfs_delayed_extent_op { + struct btrfs_disk_key key; + bool update_key; + bool update_flags; + u64 flags_to_set; +}; + +struct btrfs_delayed_ref_head { + u64 bytenr; + u64 num_bytes; + struct rb_node href_node; + struct mutex mutex; + refcount_t refs; + spinlock_t lock; + struct rb_root_cached ref_tree; + struct list_head ref_add_list; + struct btrfs_delayed_extent_op *extent_op; + int total_ref_mod; + int ref_mod; + u64 owning_root; + u64 reserved_bytes; + u8 level; + bool must_insert_reserved; + bool is_data; + bool is_system; + bool processing; +}; + +enum btrfs_ref_type { + BTRFS_REF_NOT_SET = 0, + BTRFS_REF_DATA = 1, + BTRFS_REF_METADATA = 2, + BTRFS_REF_LAST = 3, +} __attribute__((mode(byte))); + +struct btrfs_ref { + enum btrfs_ref_type type; + enum btrfs_delayed_ref_action action; + bool skip_qgroup; + u64 bytenr; + u64 num_bytes; + u64 owning_root; + u64 ref_root; + u64 parent; + union { + struct btrfs_data_ref data_ref; + struct btrfs_tree_ref tree_ref; + }; +}; + +struct btrfs_qgroup_extent_record { + u64 bytenr; + u64 num_bytes; + u32 data_rsv; + u64 data_rsv_refroot; + struct ulist *old_roots; +}; + +struct btrfs_stripe { + __le64 devid; + __le64 offset; + __u8 dev_uuid[16]; +}; + +struct btrfs_chunk { + __le64 length; + __le64 owner; + __le64 stripe_len; + __le64 type; + __le32 io_align; + __le32 io_width; + __le32 sector_size; + __le16 num_stripes; + __le16 sub_stripes; + struct btrfs_stripe stripe; +}; + +struct btrfs_tree_block_info { + struct btrfs_disk_key key; + __u8 level; +}; + +struct btrfs_extent_data_ref { + __le64 root; + __le64 objectid; + __le64 offset; + __le32 count; +} __attribute__((packed)); + +struct btrfs_shared_data_ref { + __le32 count; +}; + +struct btrfs_extent_inline_ref { + __u8 type; + __le64 offset; +} __attribute__((packed)); + +struct btrfs_dev_extent { + __le64 chunk_tree; + __le64 chunk_objectid; + __le64 chunk_offset; + __le64 length; + __u8 chunk_tree_uuid[16]; +}; + +struct btrfs_block_group_item { + __le64 used; + __le64 chunk_objectid; + __le64 flags; +}; + +enum btrfs_tree_block_status { + BTRFS_TREE_BLOCK_CLEAN = 0, + BTRFS_TREE_BLOCK_INVALID_NRITEMS = 1, + BTRFS_TREE_BLOCK_INVALID_PARENT_KEY = 2, + BTRFS_TREE_BLOCK_BAD_KEY_ORDER = 3, + BTRFS_TREE_BLOCK_INVALID_LEVEL = 4, + BTRFS_TREE_BLOCK_INVALID_FREE_SPACE = 5, + BTRFS_TREE_BLOCK_INVALID_OFFSETS = 6, + BTRFS_TREE_BLOCK_INVALID_BLOCKPTR = 7, + BTRFS_TREE_BLOCK_INVALID_ITEM = 8, + BTRFS_TREE_BLOCK_INVALID_OWNER = 9, + BTRFS_TREE_BLOCK_WRITTEN_NOT_SET = 10, +}; + +struct btrfs_raid_attr { + u8 sub_stripes; + u8 dev_stripes; + u8 devs_max; + u8 devs_min; + u8 tolerated_failures; + u8 devs_increment; + u8 ncopies; + u8 nparity; + u8 mindev_error; + const char raid_name[8]; + u64 bg_flag; +}; + +typedef struct mutex *class_mutex_t; + +enum pstore_type_id { + PSTORE_TYPE_DMESG = 0, + PSTORE_TYPE_MCE = 1, + PSTORE_TYPE_CONSOLE = 2, + PSTORE_TYPE_FTRACE = 3, + PSTORE_TYPE_PPC_RTAS = 4, + PSTORE_TYPE_PPC_OF = 5, + PSTORE_TYPE_PPC_COMMON = 6, + PSTORE_TYPE_PMSG = 7, + PSTORE_TYPE_PPC_OPAL = 8, + PSTORE_TYPE_MAX = 9, +}; + +struct pstore_info; + +struct pstore_record { + struct pstore_info *psi; + enum pstore_type_id type; + u64 id; + struct timespec64 time; + char *buf; + ssize_t size; + ssize_t ecc_notice_size; + void *priv; + int count; + enum kmsg_dump_reason reason; + unsigned int part; + bool compressed; +}; + +struct pstore_info { + struct module *owner; + const char *name; + raw_spinlock_t buf_lock; + char *buf; + size_t bufsize; + struct mutex read_mutex; + int flags; + int max_reason; + void *data; + int (*open)(struct pstore_info *); + int (*close)(struct pstore_info *); + ssize_t (*read)(struct pstore_record *); + int (*write)(struct pstore_record *); + int (*write_user)(struct pstore_record *, const char *); + int (*erase)(struct pstore_record *); +}; + +struct pstore_ftrace_record { + long unsigned int ip; + long unsigned int parent_ip; + u64 ts; +}; + +struct pstore_private { + struct list_head list; + struct dentry *dentry; + struct pstore_record *record; + size_t total_size; +}; + +struct pstore_ftrace_seq_data { + const void *ptr; + size_t off; + size_t size; +}; + +enum { + Opt_kmsg_bytes = 0, + Opt_err___5 = 1, +}; + +typedef unsigned int __kernel_uid_t; + +typedef unsigned int __kernel_gid_t; + +struct ipc_perm { + __kernel_key_t key; + __kernel_uid_t uid; + __kernel_gid_t gid; + __kernel_uid_t cuid; + __kernel_gid_t cgid; + __kernel_mode_t mode; + short unsigned int seq; +}; + +struct ipc64_perm { + __kernel_key_t key; + __kernel_uid32_t uid; + __kernel_gid32_t gid; + __kernel_uid32_t cuid; + __kernel_gid32_t cgid; + __kernel_mode_t mode; + unsigned char __pad1[0]; + short unsigned int seq; + short unsigned int __pad2; + __kernel_ulong_t __unused1; + __kernel_ulong_t __unused2; +}; + +struct ipc_params { + key_t key; + int flg; + union { + size_t size; + int nsems; + } u; +}; + +struct ipc_ops { + int (*getnew)(struct ipc_namespace *, struct ipc_params *); + int (*associate)(struct kern_ipc_perm *, int); + int (*more_checks)(struct kern_ipc_perm *, struct ipc_params *); +}; + +struct ipc_proc_iface { + const char *path; + const char *header; + int ids; + int (*show)(struct seq_file *, void *); +}; + +struct ipc_proc_iter { + struct ipc_namespace *ns; + struct pid_namespace *pid_ns; + struct ipc_proc_iface *iface; +}; + +struct lskcipher_instance { + void (*free)(struct lskcipher_instance *); + union { + struct { + char head[64]; + struct crypto_instance base; + } s; + struct lskcipher_alg alg; + }; +}; + +struct crypto_lskcipher_spawn { + struct crypto_spawn base; +}; + +struct shash_instance { + void (*free)(struct shash_instance *); + union { + struct { + char head[104]; + struct crypto_instance base; + } s; + struct shash_alg alg; + }; +}; + +struct cmac_tfm_ctx { + struct crypto_cipher *child; + __be64 consts[0]; +}; + +struct cmac_desc_ctx { + unsigned int len; + u8 odds[0]; +}; + +struct crypto_cts_ctx { + struct crypto_skcipher *child; +}; + +struct crypto_cts_reqctx { + struct scatterlist sg[2]; + unsigned int offset; + struct skcipher_request subreq; +}; + +struct crypto_authenc_keys { + const u8 *authkey; + const u8 *enckey; + unsigned int authkeylen; + unsigned int enckeylen; +}; + +struct crypto_attr_type { + u32 type; + u32 mask; +}; + +struct essiv_instance_ctx { + union { + struct crypto_skcipher_spawn skcipher_spawn; + struct crypto_aead_spawn aead_spawn; + } u; + char essiv_cipher_name[128]; + char shash_driver_name[128]; +}; + +struct essiv_tfm_ctx { + union { + struct crypto_skcipher *skcipher; + struct crypto_aead *aead; + } u; + struct crypto_cipher *essiv_cipher; + struct crypto_shash *hash; + int ivoffset; +}; + +struct essiv_aead_request_ctx { + struct scatterlist sg[4]; + u8 *assoc; + struct aead_request aead_req; +}; + +struct badblocks { + struct device *dev; + int count; + int unacked_exist; + int shift; + u64 *page; + int changed; + seqlock_t lock; + sector_t sector; + sector_t size; +}; + +struct badblocks_context { + sector_t start; + sector_t len; + int ack; +}; + +struct elevator_type; + +struct elevator_queue { + struct elevator_type *type; + void *elevator_data; + struct kobject kobj; + struct mutex sysfs_lock; + long unsigned int flags; + struct hlist_head hash[64]; +}; + +enum rq_qos_id { + RQ_QOS_WBT = 0, + RQ_QOS_LATENCY = 1, + RQ_QOS_COST = 2, +}; + +struct rq_qos_ops; + +struct rq_qos { + const struct rq_qos_ops *ops; + struct gendisk *disk; + enum rq_qos_id id; + struct rq_qos *next; + struct dentry *debugfs_dir; +}; + +enum { + __RQF_STARTED = 0, + __RQF_FLUSH_SEQ = 1, + __RQF_MIXED_MERGE = 2, + __RQF_DONTPREP = 3, + __RQF_SCHED_TAGS = 4, + __RQF_USE_SCHED = 5, + __RQF_FAILED = 6, + __RQF_QUIET = 7, + __RQF_IO_STAT = 8, + __RQF_PM = 9, + __RQF_HASHED = 10, + __RQF_STATS = 11, + __RQF_SPECIAL_PAYLOAD = 12, + __RQF_ZONE_WRITE_PLUGGING = 13, + __RQF_TIMED_OUT = 14, + __RQF_RESV = 15, + __RQF_BITS = 16, +}; + +enum { + BLK_TAG_ALLOC_FIFO = 0, + BLK_TAG_ALLOC_RR = 1, + BLK_TAG_ALLOC_MAX = 2, +}; + +typedef bool busy_tag_iter_fn(struct request *, void *); + +enum { + BLK_MQ_S_STOPPED = 0, + BLK_MQ_S_TAG_ACTIVE = 1, + BLK_MQ_S_SCHED_RESTART = 2, + BLK_MQ_S_INACTIVE = 3, + BLK_MQ_S_MAX = 4, +}; + +typedef unsigned int blk_insert_t; + +struct blk_mq_alloc_data { + struct request_queue *q; + blk_mq_req_flags_t flags; + unsigned int shallow_depth; + blk_opf_t cmd_flags; + req_flags_t rq_flags; + unsigned int nr_tags; + struct rq_list *cached_rqs; + struct blk_mq_ctx *ctx; + struct blk_mq_hw_ctx *hctx; +}; + +struct blk_mq_debugfs_attr { + const char *name; + umode_t mode; + int (*show)(void *, struct seq_file *); + ssize_t (*write)(void *, const char *, size_t, loff_t *); + const struct seq_operations *seq_ops; +}; + +enum elv_merge { + ELEVATOR_NO_MERGE = 0, + ELEVATOR_FRONT_MERGE = 1, + ELEVATOR_BACK_MERGE = 2, + ELEVATOR_DISCARD_MERGE = 3, +}; + +struct elevator_mq_ops { + int (*init_sched)(struct request_queue *, struct elevator_type *); + void (*exit_sched)(struct elevator_queue *); + int (*init_hctx)(struct blk_mq_hw_ctx *, unsigned int); + void (*exit_hctx)(struct blk_mq_hw_ctx *, unsigned int); + void (*depth_updated)(struct blk_mq_hw_ctx *); + bool (*allow_merge)(struct request_queue *, struct request *, struct bio *); + bool (*bio_merge)(struct request_queue *, struct bio *, unsigned int); + int (*request_merge)(struct request_queue *, struct request **, struct bio *); + void (*request_merged)(struct request_queue *, struct request *, enum elv_merge); + void (*requests_merged)(struct request_queue *, struct request *, struct request *); + void (*limit_depth)(blk_opf_t, struct blk_mq_alloc_data *); + void (*prepare_request)(struct request *); + void (*finish_request)(struct request *); + void (*insert_requests)(struct blk_mq_hw_ctx *, struct list_head *, blk_insert_t); + struct request * (*dispatch_request)(struct blk_mq_hw_ctx *); + bool (*has_work)(struct blk_mq_hw_ctx *); + void (*completed_request)(struct request *, u64); + void (*requeue_request)(struct request *); + struct request * (*former_request)(struct request_queue *, struct request *); + struct request * (*next_request)(struct request_queue *, struct request *); + void (*init_icq)(struct io_cq *); + void (*exit_icq)(struct io_cq *); +}; + +struct elv_fs_entry; + +struct elevator_type { + struct kmem_cache *icq_cache; + struct elevator_mq_ops ops; + size_t icq_size; + size_t icq_align; + struct elv_fs_entry *elevator_attrs; + const char *elevator_name; + const char *elevator_alias; + struct module *elevator_owner; + const struct blk_mq_debugfs_attr *queue_debugfs_attrs; + const struct blk_mq_debugfs_attr *hctx_debugfs_attrs; + char icq_cache_name[22]; + struct list_head list; +}; + +struct elv_fs_entry { + struct attribute attr; + ssize_t (*show)(struct elevator_queue *, char *); + ssize_t (*store)(struct elevator_queue *, const char *, size_t); +}; + +struct rq_qos_ops { + void (*throttle)(struct rq_qos *, struct bio *); + void (*track)(struct rq_qos *, struct request *, struct bio *); + void (*merge)(struct rq_qos *, struct request *, struct bio *); + void (*issue)(struct rq_qos *, struct request *); + void (*requeue)(struct rq_qos *, struct request *); + void (*done)(struct rq_qos *, struct request *); + void (*done_bio)(struct rq_qos *, struct bio *); + void (*cleanup)(struct rq_qos *, struct bio *); + void (*queue_depth_changed)(struct rq_qos *); + void (*exit)(struct rq_qos *); + const struct blk_mq_debugfs_attr *debugfs_attrs; +}; + +struct show_busy_params { + struct seq_file *m; + struct blk_mq_hw_ctx *hctx; +}; + +struct open_flags { + int open_flag; + umode_t mode; + int acc_mode; + int intent; + int lookup_flags; +}; + +struct io_open { + struct file *file; + int dfd; + u32 file_slot; + struct filename *filename; + struct open_how how; + long unsigned int nofile; +}; + +struct io_close { + struct file *file; + int fd; + u32 file_slot; +}; + +struct io_fixed_install { + struct file *file; + unsigned int o_flags; +}; + +typedef struct { + __be64 a; + __be64 b; +} be128; + +typedef struct { + __le64 b; + __le64 a; +} le128; + +struct gf128mul_4k { + be128 t[256]; +}; + +struct gf128mul_64k { + struct gf128mul_4k *t[16]; +}; + +struct assoc_array_ops { + long unsigned int (*get_key_chunk)(const void *, int); + long unsigned int (*get_object_key_chunk)(const void *, int); + bool (*compare_object)(const void *, const void *); + int (*diff_objects)(const void *, const void *); + void (*free_object)(void *); +}; + +struct assoc_array_node { + struct assoc_array_ptr *back_pointer; + u8 parent_slot; + struct assoc_array_ptr *slots[16]; + long unsigned int nr_leaves_on_branch; +}; + +struct assoc_array_shortcut { + struct assoc_array_ptr *back_pointer; + int parent_slot; + int skip_to_level; + struct assoc_array_ptr *next_node; + long unsigned int index_key[0]; +}; + +struct assoc_array_edit { + struct callback_head rcu; + struct assoc_array *array; + const struct assoc_array_ops *ops; + const struct assoc_array_ops *ops_for_excised_subtree; + struct assoc_array_ptr *leaf; + struct assoc_array_ptr **leaf_p; + struct assoc_array_ptr *dead_leaf; + struct assoc_array_ptr *new_meta[3]; + struct assoc_array_ptr *excised_meta[1]; + struct assoc_array_ptr *excised_subtree; + struct assoc_array_ptr **set_backpointers[16]; + struct assoc_array_ptr *set_backpointers_to; + struct assoc_array_node *adjust_count_on; + long int adjust_count_by; + struct { + struct assoc_array_ptr **ptr; + struct assoc_array_ptr *to; + } set[2]; + struct { + u8 *p; + u8 to; + } set_parent_slot[1]; + u8 segment_cache[17]; +}; + +enum assoc_array_walk_status { + assoc_array_walk_tree_empty = 0, + assoc_array_walk_found_terminal_node = 1, + assoc_array_walk_found_wrong_shortcut = 2, +}; + +struct assoc_array_walk_result { + struct { + struct assoc_array_node *node; + int level; + int slot; + } terminal_node; + struct { + struct assoc_array_shortcut *shortcut; + int level; + int sc_level; + long unsigned int sc_segments; + long unsigned int dissimilarity; + } wrong_shortcut; +}; + +struct assoc_array_delete_collapse_context { + struct assoc_array_node *node; + const void *skip_leaf; + int slot; +}; + +typedef struct { + unsigned int hashTable[32768]; + short unsigned int chainTable[65536]; + const unsigned char *end; + const unsigned char *base; + const unsigned char *dictBase; + unsigned int dictLimit; + unsigned int lowLimit; + unsigned int nextToUpdate; + unsigned int compressionLevel; +} LZ4HC_CCtx_internal; + +typedef union { + size_t table[32774]; + LZ4HC_CCtx_internal internal_donotuse; +} LZ4_streamHC_t; + +typedef u64 unative_t___2; + +struct ei_entry { + struct list_head list; + long unsigned int start_addr; + long unsigned int end_addr; + int etype; + void *priv; +}; + +struct irq_poll; + +typedef int irq_poll_fn(struct irq_poll *, int); + +struct irq_poll { + struct list_head list; + long unsigned int state; + int weight; + irq_poll_fn *poll; +}; + +enum { + IRQ_POLL_F_SCHED = 0, + IRQ_POLL_F_DISABLE = 1, +}; + +struct gpio_chip; + +union gpio_irq_fwspec; + +struct gpio_irq_chip { + struct irq_chip *chip; + struct irq_domain *domain; + struct fwnode_handle *fwnode; + struct irq_domain *parent_domain; + int (*child_to_parent_hwirq)(struct gpio_chip *, unsigned int, unsigned int, unsigned int *, unsigned int *); + int (*populate_parent_alloc_arg)(struct gpio_chip *, union gpio_irq_fwspec *, unsigned int, unsigned int); + unsigned int (*child_offset_to_irq)(struct gpio_chip *, unsigned int); + struct irq_domain_ops child_irq_domain_ops; + irq_flow_handler_t handler; + unsigned int default_type; + struct lock_class_key *lock_key; + struct lock_class_key *request_key; + irq_flow_handler_t parent_handler; + union { + void *parent_handler_data; + void **parent_handler_data_array; + }; + unsigned int num_parents; + unsigned int *parents; + unsigned int *map; + bool threaded; + bool per_parent_data; + bool initialized; + bool domain_is_allocated_externally; + int (*init_hw)(struct gpio_chip *); + void (*init_valid_mask)(struct gpio_chip *, long unsigned int *, unsigned int); + long unsigned int *valid_mask; + unsigned int first; + void (*irq_enable)(struct irq_data *); + void (*irq_disable)(struct irq_data *); + void (*irq_unmask)(struct irq_data *); + void (*irq_mask)(struct irq_data *); +}; + +struct gpio_chip { + const char *label; + struct gpio_device *gpiodev; + struct device *parent; + struct fwnode_handle *fwnode; + struct module *owner; + int (*request)(struct gpio_chip *, unsigned int); + void (*free)(struct gpio_chip *, unsigned int); + int (*get_direction)(struct gpio_chip *, unsigned int); + int (*direction_input)(struct gpio_chip *, unsigned int); + int (*direction_output)(struct gpio_chip *, unsigned int, int); + int (*get)(struct gpio_chip *, unsigned int); + int (*get_multiple)(struct gpio_chip *, long unsigned int *, long unsigned int *); + void (*set)(struct gpio_chip *, unsigned int, int); + void (*set_multiple)(struct gpio_chip *, long unsigned int *, long unsigned int *); + int (*set_config)(struct gpio_chip *, unsigned int, long unsigned int); + int (*to_irq)(struct gpio_chip *, unsigned int); + void (*dbg_show)(struct seq_file *, struct gpio_chip *); + int (*init_valid_mask)(struct gpio_chip *, long unsigned int *, unsigned int); + int (*add_pin_ranges)(struct gpio_chip *); + int (*en_hw_timestamp)(struct gpio_chip *, u32, long unsigned int); + int (*dis_hw_timestamp)(struct gpio_chip *, u32, long unsigned int); + int base; + u16 ngpio; + u16 offset; + const char * const *names; + bool can_sleep; + long unsigned int (*read_reg)(void *); + void (*write_reg)(void *, long unsigned int); + bool be_bits; + void *reg_dat; + void *reg_set; + void *reg_clr; + void *reg_dir_out; + void *reg_dir_in; + bool bgpio_dir_unreadable; + int bgpio_bits; + raw_spinlock_t bgpio_lock; + long unsigned int bgpio_data; + long unsigned int bgpio_dir; + struct gpio_irq_chip irq; + long unsigned int *valid_mask; + unsigned int of_gpio_n_cells; + int (*of_xlate)(struct gpio_chip *, const struct of_phandle_args *, u32 *); +}; + +union gpio_irq_fwspec { + struct irq_fwspec fwspec; + msi_alloc_info_t msiinfo; +}; + +struct gpio_device { + struct device dev; + struct cdev chrdev; + int id; + struct device *mockdev; + struct module *owner; + struct gpio_chip *chip; + struct gpio_desc *descs; + struct srcu_struct desc_srcu; + unsigned int base; + u16 ngpio; + bool can_sleep; + const char *label; + void *data; + struct list_head list; + struct blocking_notifier_head line_state_notifier; + struct blocking_notifier_head device_notifier; + struct srcu_struct srcu; +}; + +struct bgpio_pdata { + const char *label; + int base; + int ngpio; +}; + +struct gpio_desc_label { + struct callback_head rh; + char str[0]; +}; + +enum { + pci_channel_io_normal = 1, + pci_channel_io_frozen = 2, + pci_channel_io_perm_failure = 3, +}; + +enum pci_dev_flags { + PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG = 1, + PCI_DEV_FLAGS_NO_D3 = 2, + PCI_DEV_FLAGS_ASSIGNED = 4, + PCI_DEV_FLAGS_ACS_ENABLED_QUIRK = 8, + PCI_DEV_FLAG_PCIE_BRIDGE_ALIAS = 32, + PCI_DEV_FLAGS_NO_BUS_RESET = 64, + PCI_DEV_FLAGS_NO_PM_RESET = 128, + PCI_DEV_FLAGS_VPD_REF_F0 = 256, + PCI_DEV_FLAGS_BRIDGE_XLATE_ROOT = 512, + PCI_DEV_FLAGS_NO_FLR_RESET = 1024, + PCI_DEV_FLAGS_NO_RELAXED_ORDERING = 2048, + PCI_DEV_FLAGS_HAS_MSI_MASKING = 4096, + PCI_DEV_FLAGS_MSIX_TOUCH_ENTRY_DATA_FIRST = 8192, +}; + +enum pci_bus_flags { + PCI_BUS_FLAGS_NO_MSI = 1, + PCI_BUS_FLAGS_NO_MMRBC = 2, + PCI_BUS_FLAGS_NO_AERSID = 4, + PCI_BUS_FLAGS_NO_EXTCFG = 8, +}; + +struct devm_clk_state { + struct clk *clk; + void (*exit)(struct clk *); +}; + +struct clk_bulk_devres { + struct clk_bulk_data *clks; + int num_clks; +}; + +enum vc_intensity { + VCI_HALF_BRIGHT = 0, + VCI_NORMAL = 1, + VCI_BOLD = 2, + VCI_MASK = 3, +}; + +struct vc_state { + unsigned int x; + unsigned int y; + unsigned char color; + unsigned char Gx_charset[2]; + unsigned int charset: 1; + enum vc_intensity intensity; + bool italic; + bool underline; + bool blink; + bool reverse; +}; + +struct console_font { + unsigned int width; + unsigned int height; + unsigned int charcount; + unsigned char *data; +}; + +struct vt_mode { + char mode; + char waitv; + short int relsig; + short int acqsig; + short int frsig; +}; + +struct consw; + +struct uni_pagedict; + +struct vc_data { + struct tty_port port; + struct vc_state state; + struct vc_state saved_state; + short unsigned int vc_num; + unsigned int vc_cols; + unsigned int vc_rows; + unsigned int vc_size_row; + unsigned int vc_scan_lines; + unsigned int vc_cell_height; + long unsigned int vc_origin; + long unsigned int vc_scr_end; + long unsigned int vc_visible_origin; + unsigned int vc_top; + unsigned int vc_bottom; + const struct consw *vc_sw; + short unsigned int *vc_screenbuf; + unsigned int vc_screenbuf_size; + unsigned char vc_mode; + unsigned char vc_attr; + unsigned char vc_def_color; + unsigned char vc_ulcolor; + unsigned char vc_itcolor; + unsigned char vc_halfcolor; + unsigned int vc_cursor_type; + short unsigned int vc_complement_mask; + short unsigned int vc_s_complement_mask; + long unsigned int vc_pos; + short unsigned int vc_hi_font_mask; + struct console_font vc_font; + short unsigned int vc_video_erase_char; + unsigned int vc_state; + unsigned int vc_npar; + unsigned int vc_par[16]; + struct vt_mode vt_mode; + struct pid *vt_pid; + int vt_newvt; + wait_queue_head_t paste_wait; + unsigned int vc_disp_ctrl: 1; + unsigned int vc_toggle_meta: 1; + unsigned int vc_decscnm: 1; + unsigned int vc_decom: 1; + unsigned int vc_decawm: 1; + unsigned int vc_deccm: 1; + unsigned int vc_decim: 1; + unsigned int vc_priv: 3; + unsigned int vc_need_wrap: 1; + unsigned int vc_can_do_color: 1; + unsigned int vc_report_mouse: 2; + unsigned char vc_utf: 1; + unsigned char vc_utf_count; + int vc_utf_char; + long unsigned int vc_tab_stop[4]; + unsigned char vc_palette[48]; + short unsigned int *vc_translate; + unsigned int vc_bell_pitch; + unsigned int vc_bell_duration; + short unsigned int vc_cur_blink_ms; + struct vc_data **vc_display_fg; + struct uni_pagedict *uni_pagedict; + struct uni_pagedict **uni_pagedict_loc; + u32 **vc_uni_lines; +}; + +enum con_scroll { + SM_UP = 0, + SM_DOWN = 1, +}; + +struct consw { + struct module *owner; + const char * (*con_startup)(void); + void (*con_init)(struct vc_data *, bool); + void (*con_deinit)(struct vc_data *); + void (*con_clear)(struct vc_data *, unsigned int, unsigned int, unsigned int); + void (*con_putc)(struct vc_data *, u16, unsigned int, unsigned int); + void (*con_putcs)(struct vc_data *, const u16 *, unsigned int, unsigned int, unsigned int); + void (*con_cursor)(struct vc_data *, bool); + bool (*con_scroll)(struct vc_data *, unsigned int, unsigned int, enum con_scroll, unsigned int); + bool (*con_switch)(struct vc_data *); + bool (*con_blank)(struct vc_data *, enum vesa_blank_mode, bool); + int (*con_font_set)(struct vc_data *, const struct console_font *, unsigned int, unsigned int); + int (*con_font_get)(struct vc_data *, struct console_font *, unsigned int); + int (*con_font_default)(struct vc_data *, struct console_font *, const char *); + int (*con_resize)(struct vc_data *, unsigned int, unsigned int, bool); + void (*con_set_palette)(struct vc_data *, const unsigned char *); + void (*con_scrolldelta)(struct vc_data *, int); + bool (*con_set_origin)(struct vc_data *); + void (*con_save_screen)(struct vc_data *); + u8 (*con_build_attr)(struct vc_data *, u8, enum vc_intensity, bool, bool, bool, bool); + void (*con_invert_region)(struct vc_data *, u16 *, int); + void (*con_debug_enter)(struct vc_data *); + void (*con_debug_leave)(struct vc_data *); +}; + +struct vc { + struct vc_data *d; + struct work_struct SAK_work; +}; + +struct sysrq_state { + struct input_handle handle; + struct work_struct reinject_work; + long unsigned int key_down[12]; + unsigned int alt; + unsigned int alt_use; + unsigned int shift; + unsigned int shift_use; + bool active; + bool need_reinject; + bool reinjecting; + bool reset_canceled; + bool reset_requested; + long unsigned int reset_keybit[12]; + int reset_seq_len; + int reset_seq_cnt; + int reset_seq_version; + struct timer_list keyreset_timer; +}; + +struct drm_master { + struct kref refcount; + struct drm_device *dev; + char *unique; + int unique_len; + struct idr magic_map; + void *driver_priv; + struct drm_master *lessor; + int lessee_id; + struct list_head lessee_list; + struct list_head lessees; + struct idr leases; + struct idr lessee_idr; +}; + +struct drm_mode_create_lease { + __u64 object_ids; + __u32 object_count; + __u32 flags; + __u32 lessee_id; + __u32 fd; +}; + +struct drm_mode_list_lessees { + __u32 count_lessees; + __u32 pad; + __u64 lessees_ptr; +}; + +struct drm_mode_get_lease { + __u32 count_objects; + __u32 pad; + __u64 objects_ptr; +}; + +struct drm_mode_revoke_lease { + __u32 lessee_id; +}; + +struct drm_vma_offset_file { + struct rb_node vm_rb; + struct drm_file *vm_tag; + long unsigned int vm_count; +}; + +enum virtio_gpu_ctrl_type { + VIRTIO_GPU_UNDEFINED = 0, + VIRTIO_GPU_CMD_GET_DISPLAY_INFO = 256, + VIRTIO_GPU_CMD_RESOURCE_CREATE_2D = 257, + VIRTIO_GPU_CMD_RESOURCE_UNREF = 258, + VIRTIO_GPU_CMD_SET_SCANOUT = 259, + VIRTIO_GPU_CMD_RESOURCE_FLUSH = 260, + VIRTIO_GPU_CMD_TRANSFER_TO_HOST_2D = 261, + VIRTIO_GPU_CMD_RESOURCE_ATTACH_BACKING = 262, + VIRTIO_GPU_CMD_RESOURCE_DETACH_BACKING = 263, + VIRTIO_GPU_CMD_GET_CAPSET_INFO = 264, + VIRTIO_GPU_CMD_GET_CAPSET = 265, + VIRTIO_GPU_CMD_GET_EDID = 266, + VIRTIO_GPU_CMD_RESOURCE_ASSIGN_UUID = 267, + VIRTIO_GPU_CMD_RESOURCE_CREATE_BLOB = 268, + VIRTIO_GPU_CMD_SET_SCANOUT_BLOB = 269, + VIRTIO_GPU_CMD_CTX_CREATE = 512, + VIRTIO_GPU_CMD_CTX_DESTROY = 513, + VIRTIO_GPU_CMD_CTX_ATTACH_RESOURCE = 514, + VIRTIO_GPU_CMD_CTX_DETACH_RESOURCE = 515, + VIRTIO_GPU_CMD_RESOURCE_CREATE_3D = 516, + VIRTIO_GPU_CMD_TRANSFER_TO_HOST_3D = 517, + VIRTIO_GPU_CMD_TRANSFER_FROM_HOST_3D = 518, + VIRTIO_GPU_CMD_SUBMIT_3D = 519, + VIRTIO_GPU_CMD_RESOURCE_MAP_BLOB = 520, + VIRTIO_GPU_CMD_RESOURCE_UNMAP_BLOB = 521, + VIRTIO_GPU_CMD_UPDATE_CURSOR = 768, + VIRTIO_GPU_CMD_MOVE_CURSOR = 769, + VIRTIO_GPU_RESP_OK_NODATA = 4352, + VIRTIO_GPU_RESP_OK_DISPLAY_INFO = 4353, + VIRTIO_GPU_RESP_OK_CAPSET_INFO = 4354, + VIRTIO_GPU_RESP_OK_CAPSET = 4355, + VIRTIO_GPU_RESP_OK_EDID = 4356, + VIRTIO_GPU_RESP_OK_RESOURCE_UUID = 4357, + VIRTIO_GPU_RESP_OK_MAP_INFO = 4358, + VIRTIO_GPU_RESP_ERR_UNSPEC = 4608, + VIRTIO_GPU_RESP_ERR_OUT_OF_MEMORY = 4609, + VIRTIO_GPU_RESP_ERR_INVALID_SCANOUT_ID = 4610, + VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID = 4611, + VIRTIO_GPU_RESP_ERR_INVALID_CONTEXT_ID = 4612, + VIRTIO_GPU_RESP_ERR_INVALID_PARAMETER = 4613, +}; + +struct virtio_gpu_resource_unref { + struct virtio_gpu_ctrl_hdr hdr; + __le32 resource_id; + __le32 padding; +}; + +struct virtio_gpu_resource_create_2d { + struct virtio_gpu_ctrl_hdr hdr; + __le32 resource_id; + __le32 format; + __le32 width; + __le32 height; +}; + +struct virtio_gpu_set_scanout { + struct virtio_gpu_ctrl_hdr hdr; + struct virtio_gpu_rect r; + __le32 scanout_id; + __le32 resource_id; +}; + +struct virtio_gpu_resource_flush { + struct virtio_gpu_ctrl_hdr hdr; + struct virtio_gpu_rect r; + __le32 resource_id; + __le32 padding; +}; + +struct virtio_gpu_transfer_to_host_2d { + struct virtio_gpu_ctrl_hdr hdr; + struct virtio_gpu_rect r; + __le64 offset; + __le32 resource_id; + __le32 padding; +}; + +struct virtio_gpu_resource_attach_backing { + struct virtio_gpu_ctrl_hdr hdr; + __le32 resource_id; + __le32 nr_entries; +}; + +struct virtio_gpu_resp_display_info { + struct virtio_gpu_ctrl_hdr hdr; + struct virtio_gpu_display_one pmodes[16]; +}; + +struct virtio_gpu_box { + __le32 x; + __le32 y; + __le32 z; + __le32 w; + __le32 h; + __le32 d; +}; + +struct virtio_gpu_transfer_host_3d { + struct virtio_gpu_ctrl_hdr hdr; + struct virtio_gpu_box box; + __le64 offset; + __le32 resource_id; + __le32 level; + __le32 stride; + __le32 layer_stride; +}; + +struct virtio_gpu_resource_create_3d { + struct virtio_gpu_ctrl_hdr hdr; + __le32 resource_id; + __le32 target; + __le32 format; + __le32 bind; + __le32 width; + __le32 height; + __le32 depth; + __le32 array_size; + __le32 last_level; + __le32 nr_samples; + __le32 flags; + __le32 padding; +}; + +struct virtio_gpu_ctx_create { + struct virtio_gpu_ctrl_hdr hdr; + __le32 nlen; + __le32 context_init; + char debug_name[64]; +}; + +struct virtio_gpu_ctx_destroy { + struct virtio_gpu_ctrl_hdr hdr; +}; + +struct virtio_gpu_ctx_resource { + struct virtio_gpu_ctrl_hdr hdr; + __le32 resource_id; + __le32 padding; +}; + +struct virtio_gpu_cmd_submit { + struct virtio_gpu_ctrl_hdr hdr; + __le32 size; + __le32 padding; +}; + +struct virtio_gpu_get_capset_info { + struct virtio_gpu_ctrl_hdr hdr; + __le32 capset_index; + __le32 padding; +}; + +struct virtio_gpu_resp_capset_info { + struct virtio_gpu_ctrl_hdr hdr; + __le32 capset_id; + __le32 capset_max_version; + __le32 capset_max_size; + __le32 padding; +}; + +struct virtio_gpu_get_capset { + struct virtio_gpu_ctrl_hdr hdr; + __le32 capset_id; + __le32 capset_version; +}; + +struct virtio_gpu_resp_capset { + struct virtio_gpu_ctrl_hdr hdr; + __u8 capset_data[0]; +}; + +struct virtio_gpu_cmd_get_edid { + struct virtio_gpu_ctrl_hdr hdr; + __le32 scanout; + __le32 padding; +}; + +struct virtio_gpu_resp_edid { + struct virtio_gpu_ctrl_hdr hdr; + __le32 size; + __le32 padding; + __u8 edid[1024]; +}; + +struct virtio_gpu_resource_assign_uuid { + struct virtio_gpu_ctrl_hdr hdr; + __le32 resource_id; + __le32 padding; +}; + +struct virtio_gpu_resp_resource_uuid { + struct virtio_gpu_ctrl_hdr hdr; + __u8 uuid[16]; +}; + +struct virtio_gpu_resource_create_blob { + struct virtio_gpu_ctrl_hdr hdr; + __le32 resource_id; + __le32 blob_mem; + __le32 blob_flags; + __le32 nr_entries; + __le64 blob_id; + __le64 size; +}; + +struct virtio_gpu_set_scanout_blob { + struct virtio_gpu_ctrl_hdr hdr; + struct virtio_gpu_rect r; + __le32 scanout_id; + __le32 resource_id; + __le32 width; + __le32 height; + __le32 format; + __le32 padding; + __le32 strides[4]; + __le32 offsets[4]; +}; + +struct virtio_gpu_resource_map_blob { + struct virtio_gpu_ctrl_hdr hdr; + __le32 resource_id; + __le32 padding; + __le64 offset; +}; + +struct virtio_gpu_resp_map_info { + struct virtio_gpu_ctrl_hdr hdr; + __u32 map_info; + __u32 padding; +}; + +struct virtio_gpu_resource_unmap_blob { + struct virtio_gpu_ctrl_hdr hdr; + __le32 resource_id; + __le32 padding; +}; + +struct drm_virtgpu_3d_box { + __u32 x; + __u32 y; + __u32 z; + __u32 w; + __u32 h; + __u32 d; +}; + +struct virtio_gpu_vbuffer; + +typedef void (*virtio_gpu_resp_cb)(struct virtio_gpu_device *, struct virtio_gpu_vbuffer *); + +struct virtio_gpu_vbuffer { + char *buf; + int size; + void *data_buf; + uint32_t data_size; + char *resp_buf; + int resp_size; + virtio_gpu_resp_cb resp_cb; + void *resp_cb_data; + struct virtio_gpu_object_array *objs; + struct list_head list; + uint32_t seqno; +}; + +struct virtio_gpu_drv_cap_cache { + struct list_head head; + void *caps_cache; + uint32_t id; + uint32_t version; + uint32_t size; + atomic_t is_valid; +}; + +struct virtio_gpu_command; + +struct internal_container { + struct klist_node node; + struct attribute_container *cont; + struct device classdev; +}; + +struct regcache_rbtree_node { + void *block; + long unsigned int *cache_present; + unsigned int base_reg; + unsigned int blklen; + struct rb_node node; +}; + +struct regcache_rbtree_ctx { + struct rb_root root; + struct regcache_rbtree_node *cached_rbnode; +}; + +struct dma_fence_array; + +struct dma_fence_array_cb { + struct dma_fence_cb cb; + struct dma_fence_array *array; +}; + +struct dma_fence_array { + struct dma_fence base; + spinlock_t lock; + unsigned int num_fences; + atomic_t num_pending; + struct dma_fence **fences; + struct irq_work work; + struct dma_fence_array_cb callbacks[0]; +}; + +enum scsi_prot_operations { + SCSI_PROT_NORMAL = 0, + SCSI_PROT_READ_INSERT = 1, + SCSI_PROT_WRITE_STRIP = 2, + SCSI_PROT_READ_STRIP = 3, + SCSI_PROT_WRITE_INSERT = 4, + SCSI_PROT_READ_PASS = 5, + SCSI_PROT_WRITE_PASS = 6, +}; + +struct scsi_eh_save { + int result; + unsigned int resid_len; + int eh_eflags; + enum dma_data_direction data_direction; + unsigned int underflow; + unsigned char cmd_len; + unsigned char prot_op; + unsigned char cmnd[32]; + struct scsi_data_buffer sdb; + struct scatterlist sense_sgl; +}; + +enum scsi_ml_status { + SCSIML_STAT_OK = 0, + SCSIML_STAT_RESV_CONFLICT = 1, + SCSIML_STAT_NOSPC = 2, + SCSIML_STAT_MED_ERROR = 3, + SCSIML_STAT_TGT_FAILURE = 4, + SCSIML_STAT_DL_TIMEOUT = 5, +}; + +enum { + BOND_3AD_STAT_LACPDU_RX = 0, + BOND_3AD_STAT_LACPDU_TX = 1, + BOND_3AD_STAT_LACPDU_UNKNOWN_RX = 2, + BOND_3AD_STAT_LACPDU_ILLEGAL_RX = 3, + BOND_3AD_STAT_MARKER_RX = 4, + BOND_3AD_STAT_MARKER_TX = 5, + BOND_3AD_STAT_MARKER_RESP_RX = 6, + BOND_3AD_STAT_MARKER_RESP_TX = 7, + BOND_3AD_STAT_MARKER_UNKNOWN_RX = 8, + BOND_3AD_STAT_PAD = 9, + __BOND_3AD_STAT_MAX = 10, +}; + +enum { + BOND_AD_STABLE = 0, + BOND_AD_BANDWIDTH = 1, + BOND_AD_COUNT = 2, +}; + +enum { + AD_TYPE_LACPDU = 1, + AD_TYPE_MARKER = 2, +}; + +enum { + AD_MARKER_INFORMATION_SUBTYPE = 1, + AD_MARKER_RESPONSE_SUBTYPE = 2, +}; + +enum { + AD_CURRENT_WHILE_TIMER = 0, + AD_ACTOR_CHURN_TIMER = 1, + AD_PERIODIC_TIMER = 2, + AD_PARTNER_CHURN_TIMER = 3, + AD_WAIT_WHILE_TIMER = 4, +}; + +struct lacpdu_header { + struct ethhdr hdr; + struct lacpdu lacpdu; +}; + +struct bond_marker { + u8 subtype; + u8 version_number; + u8 tlv_type; + u8 marker_length; + u16 requester_port; + struct mac_addr requester_system; + u32 requester_transaction_id; + u16 pad; + u8 tlv_type_terminator; + u8 terminator_length; + u8 reserved_90[90]; +} __attribute__((packed)); + +struct bond_marker_header { + struct ethhdr hdr; + struct bond_marker marker; +}; + +enum ad_link_speed_type { + AD_LINK_SPEED_1MBPS = 1, + AD_LINK_SPEED_10MBPS = 2, + AD_LINK_SPEED_100MBPS = 3, + AD_LINK_SPEED_1000MBPS = 4, + AD_LINK_SPEED_2500MBPS = 5, + AD_LINK_SPEED_5000MBPS = 6, + AD_LINK_SPEED_10000MBPS = 7, + AD_LINK_SPEED_14000MBPS = 8, + AD_LINK_SPEED_20000MBPS = 9, + AD_LINK_SPEED_25000MBPS = 10, + AD_LINK_SPEED_40000MBPS = 11, + AD_LINK_SPEED_50000MBPS = 12, + AD_LINK_SPEED_56000MBPS = 13, + AD_LINK_SPEED_100000MBPS = 14, + AD_LINK_SPEED_200000MBPS = 15, + AD_LINK_SPEED_400000MBPS = 16, + AD_LINK_SPEED_800000MBPS = 17, +}; + +enum counter_values { + COUNTER_BITS_TOTAL = 8192, + COUNTER_REDUNDANT_BITS = 64, + COUNTER_WINDOW_SIZE = 8128, +}; + +enum cookie_mac_state { + INVALID_MAC = 0, + VALID_MAC_BUT_NO_COOKIE = 1, + VALID_MAC_WITH_COOKIE_BUT_RATELIMITED = 2, + VALID_MAC_WITH_COOKIE = 3, +}; + +struct fixed_phy_status { + int link; + int speed; + int duplex; + int pause; + int asym_pause; +}; + +struct sock_fprog { + short unsigned int len; + struct sock_filter *filter; +}; + +enum { + IFLA_PPP_UNSPEC = 0, + IFLA_PPP_DEV_FD = 1, + __IFLA_PPP_MAX = 2, +}; + +enum NPmode { + NPMODE_PASS = 0, + NPMODE_DROP = 1, + NPMODE_ERROR = 2, + NPMODE_QUEUE = 3, +}; + +struct pppstat { + __u32 ppp_discards; + __u32 ppp_ibytes; + __u32 ppp_ioctects; + __u32 ppp_ipackets; + __u32 ppp_ierrors; + __u32 ppp_ilqrs; + __u32 ppp_obytes; + __u32 ppp_ooctects; + __u32 ppp_opackets; + __u32 ppp_oerrors; + __u32 ppp_olqrs; +}; + +struct vjstat { + __u32 vjs_packets; + __u32 vjs_compressed; + __u32 vjs_searches; + __u32 vjs_misses; + __u32 vjs_uncompressedin; + __u32 vjs_compressedin; + __u32 vjs_errorin; + __u32 vjs_tossed; +}; + +struct compstat { + __u32 unc_bytes; + __u32 unc_packets; + __u32 comp_bytes; + __u32 comp_packets; + __u32 inc_bytes; + __u32 inc_packets; + __u32 in_count; + __u32 bytes_out; + double ratio; +}; + +struct ppp_stats { + struct pppstat p; + struct vjstat vj; +}; + +struct ppp_comp_stats { + struct compstat c; + struct compstat d; +}; + +struct ppp_idle32 { + __s32 xmit_idle; + __s32 recv_idle; +}; + +struct ppp_idle64 { + __s64 xmit_idle; + __s64 recv_idle; +}; + +struct npioctl { + int protocol; + enum NPmode mode; +}; + +struct ppp_option_data { + __u8 *ptr; + __u32 length; + int transmit; +}; + +struct compressor { + int compress_proto; + void * (*comp_alloc)(unsigned char *, int); + void (*comp_free)(void *); + int (*comp_init)(void *, unsigned char *, int, int, int, int); + void (*comp_reset)(void *); + int (*compress)(void *, unsigned char *, unsigned char *, int, int); + void (*comp_stat)(void *, struct compstat *); + void * (*decomp_alloc)(unsigned char *, int); + void (*decomp_free)(void *); + int (*decomp_init)(void *, unsigned char *, int, int, int, int, int); + void (*decomp_reset)(void *); + int (*decompress)(void *, unsigned char *, int, unsigned char *, int); + void (*incomp)(void *, unsigned char *, int); + void (*decomp_stat)(void *, struct compstat *); + struct module *owner; + unsigned int comp_extra; +}; + +struct ppp_file { + enum { + INTERFACE = 1, + CHANNEL = 2, + } kind; + struct sk_buff_head xq; + struct sk_buff_head rq; + wait_queue_head_t rwait; + refcount_t refcnt; + int hdrlen; + int index; + int dead; +}; + +struct ppp_link_stats { + u64 rx_packets; + u64 tx_packets; + u64 rx_bytes; + u64 tx_bytes; +}; + +struct ppp { + struct ppp_file file; + struct file *owner; + struct list_head channels; + int n_channels; + spinlock_t rlock; + spinlock_t wlock; + int *xmit_recursion; + int mru; + unsigned int flags; + unsigned int xstate; + unsigned int rstate; + int debug; + struct slcompress *vj; + enum NPmode npmode[6]; + struct sk_buff *xmit_pending; + struct compressor *xcomp; + void *xc_state; + struct compressor *rcomp; + void *rc_state; + long unsigned int last_xmit; + long unsigned int last_recv; + struct net_device *dev; + int closing; + int nxchan; + u32 nxseq; + int mrru; + u32 nextseq; + u32 minseq; + struct sk_buff_head mrq; + struct bpf_prog *pass_filter; + struct bpf_prog *active_filter; + struct net *ppp_net; + struct ppp_link_stats stats64; +}; + +struct channel { + struct ppp_file file; + struct list_head list; + struct ppp_channel *chan; + struct rw_semaphore chan_sem; + spinlock_t downl; + struct ppp *ppp; + struct net *chan_net; + netns_tracker ns_tracker; + struct list_head clist; + rwlock_t upl; + struct channel *bridge; + u8 avail; + u8 had_frag; + u32 lastseq; + int speed; +}; + +struct ppp_config { + struct file *file; + s32 unit; + bool ifname_is_set; +}; + +struct ppp_net { + struct idr units_idr; + struct mutex all_ppp_mutex; + struct list_head all_channels; + struct list_head new_channels; + int last_channel_index; + spinlock_t all_channels_lock; +}; + +struct ppp_mp_skb_parm { + u32 sequence; + u8 BEbits; +}; + +struct compressor_entry { + struct list_head list; + struct compressor *comp; +}; + +struct ep_device { + struct usb_endpoint_descriptor *desc; + struct usb_device *udev; + struct device dev; +}; + +struct iso_rec { + int error_count; + int numdesc; +}; + +struct mon_bin_hdr { + u64 id; + unsigned char type; + unsigned char xfer_type; + unsigned char epnum; + unsigned char devnum; + short unsigned int busnum; + char flag_setup; + char flag_data; + s64 ts_sec; + s32 ts_usec; + int status; + unsigned int len_urb; + unsigned int len_cap; + union { + unsigned char setup[8]; + struct iso_rec iso; + } s; + int interval; + int start_frame; + unsigned int xfer_flags; + unsigned int ndesc; +}; + +struct mon_bin_isodesc { + int iso_status; + unsigned int iso_off; + unsigned int iso_len; + u32 _pad; +}; + +struct mon_bin_stats { + u32 queued; + u32 dropped; +}; + +struct mon_bin_get { + struct mon_bin_hdr *hdr; + void *data; + size_t alloc; +}; + +struct mon_bin_mfetch { + u32 *offvec; + u32 nfetch; + u32 nflush; +}; + +struct mon_pgmap { + struct page *pg; + unsigned char *ptr; +}; + +struct mon_reader_bin { + spinlock_t b_lock; + unsigned int b_size; + unsigned int b_cnt; + unsigned int b_in; + unsigned int b_out; + unsigned int b_read; + struct mon_pgmap *b_vec; + wait_queue_head_t b_wait; + struct mutex fetch_lock; + int mmap_active; + struct mon_reader r; + unsigned int cnt_lost; +}; + +struct usblp { + struct usb_device *dev; + struct mutex wmut; + struct mutex mut; + spinlock_t lock; + char *readbuf; + char *statusbuf; + struct usb_anchor urbs; + wait_queue_head_t rwait; + wait_queue_head_t wwait; + int readcount; + int ifnum; + struct usb_interface *intf; + struct { + int alt_setting; + struct usb_endpoint_descriptor *epwrite; + struct usb_endpoint_descriptor *epread; + } protocol[4]; + int current_protocol; + int minor; + int wcomplete; + int rcomplete; + int wstatus; + int rstatus; + unsigned int quirks; + unsigned int flags; + unsigned char used; + unsigned char present; + unsigned char bidir; + unsigned char no_paper; + unsigned char *device_id_string; +}; + +struct quirk_printer_struct { + __u16 vendorId; + __u16 productId; + unsigned int quirks; +}; + +struct alauda_media_info { + long unsigned int capacity; + unsigned int pagesize; + unsigned int blocksize; + unsigned int uzonesize; + unsigned int zonesize; + unsigned int blockmask; + unsigned char pageshift; + unsigned char blockshift; + unsigned char zoneshift; + u16 **lba_to_pba; + u16 **pba_to_lba; +}; + +struct alauda_info { + struct alauda_media_info port[2]; + int wr_ep; + unsigned char sense_key; + long unsigned int sense_asc; + long unsigned int sense_ascq; + bool media_initialized; +}; + +struct alauda_card_info { + unsigned char id; + unsigned char chipshift; + unsigned char pageshift; + unsigned char blockshift; + unsigned char zoneshift; +}; + +struct ch341_private { + spinlock_t lock; + unsigned int baud_rate; + u8 mcr; + u8 msr; + u8 lcr; + long unsigned int quirks; + u8 version; + long unsigned int break_end; +}; + +struct moschip_port { + __u8 shadowLCR; + __u8 shadowMCR; + __u8 shadowMSR; + char open; + struct usb_serial_port *port; + struct urb *write_urb_pool[16]; +}; + +enum mos_regs { + MOS7720_THR = 0, + MOS7720_RHR = 1, + MOS7720_IER = 2, + MOS7720_FCR = 3, + MOS7720_ISR = 4, + MOS7720_LCR = 5, + MOS7720_MCR = 6, + MOS7720_LSR = 7, + MOS7720_MSR = 8, + MOS7720_SPR = 9, + MOS7720_DLL = 10, + MOS7720_DLM = 11, + MOS7720_DPR = 12, + MOS7720_DSR = 13, + MOS7720_DCR = 14, + MOS7720_ECR = 15, + MOS7720_SP1_REG = 16, + MOS7720_SP2_REG = 17, + MOS7720_PP_REG = 18, + MOS7720_SP_CONTROL_REG = 19, +}; + +struct divisor_table_entry { + __u32 baudrate; + __u16 divisor; +}; + +enum usbip_device_status { + SDEV_ST_AVAILABLE = 1, + SDEV_ST_USED = 2, + SDEV_ST_ERROR = 3, + VDEV_ST_NULL = 4, + VDEV_ST_NOTASSIGNED = 5, + VDEV_ST_USED = 6, + VDEV_ST_ERROR = 7, +}; + +enum { + usbip_debug_xmit = 1, + usbip_debug_sysfs = 2, + usbip_debug_urb = 4, + usbip_debug_eh = 8, + usbip_debug_stub_cmp = 256, + usbip_debug_stub_dev = 512, + usbip_debug_stub_rx = 1024, + usbip_debug_stub_tx = 2048, + usbip_debug_vhci_rh = 256, + usbip_debug_vhci_hc = 512, + usbip_debug_vhci_rx = 1024, + usbip_debug_vhci_tx = 2048, + usbip_debug_vhci_sysfs = 4096, +}; + +enum usbip_side { + USBIP_VHCI = 0, + USBIP_STUB = 1, + USBIP_VUDC = 2, +}; + +struct usbip_device; + +struct eh_ops { + void (*shutdown)(struct usbip_device *); + void (*reset)(struct usbip_device *); + void (*unusable)(struct usbip_device *); +}; + +struct usbip_device { + enum usbip_side side; + enum usbip_device_status status; + spinlock_t lock; + struct mutex sysfs_lock; + int sockfd; + struct socket *tcp_socket; + struct task_struct *tcp_rx; + struct task_struct *tcp_tx; + long unsigned int event; + wait_queue_head_t eh_waitq; + struct eh_ops eh_ops; +}; + +struct usbip_event { + struct list_head node; + struct usbip_device *ud; +}; + +enum typec_port_data { + TYPEC_PORT_DFP = 0, + TYPEC_PORT_UFP = 1, + TYPEC_PORT_DRD = 2, +}; + +enum typec_plug_index { + TYPEC_PLUG_SOP_P = 0, + TYPEC_PLUG_SOP_PP = 1, +}; + +struct typec_device_id { + __u16 svid; + __u8 mode; + kernel_ulong_t driver_data; +}; + +struct typec_altmode_ops; + +struct typec_cable_ops; + +struct typec_altmode { + struct device dev; + u16 svid; + int mode; + u32 vdo; + unsigned int active: 1; + char *desc; + const struct typec_altmode_ops *ops; + const struct typec_cable_ops *cable_ops; +}; + +struct typec_altmode_ops { + int (*enter)(struct typec_altmode *, u32 *); + int (*exit)(struct typec_altmode *); + void (*attention)(struct typec_altmode *, u32); + int (*vdm)(struct typec_altmode *, const u32, const u32 *, int); + int (*notify)(struct typec_altmode *, long unsigned int, void *); + int (*activate)(struct typec_altmode *, int); +}; + +struct typec_cable_ops { + int (*enter)(struct typec_altmode *, enum typec_plug_index, u32 *); + int (*exit)(struct typec_altmode *, enum typec_plug_index); + int (*vdm)(struct typec_altmode *, enum typec_plug_index, const u32, const u32 *, int); +}; + +enum { + TYPEC_STATE_SAFE = 0, + TYPEC_STATE_USB = 1, + TYPEC_STATE_MODAL = 2, +}; + +struct typec_altmode_driver { + const struct typec_device_id *id_table; + int (*probe)(struct typec_altmode *); + void (*remove)(struct typec_altmode *); + struct device_driver driver; +}; + +struct typec_mux; + +struct typec_retimer; + +struct altmode { + unsigned int id; + struct typec_altmode adev; + struct typec_mux *mux; + struct typec_retimer *retimer; + enum typec_port_data roles; + struct attribute *attrs[5]; + char group_name[8]; + struct attribute_group group; + const struct attribute_group *groups[2]; + struct altmode *partner; + struct altmode *plug[2]; +}; + +struct typec_retimer_state; + +typedef int (*typec_retimer_set_fn_t)(struct typec_retimer *, struct typec_retimer_state *); + +struct typec_retimer { + struct device dev; + typec_retimer_set_fn_t set; +}; + +struct typec_mux_state { + struct typec_altmode *alt; + long unsigned int mode; + void *data; +}; + +struct typec_retimer_state { + struct typec_altmode *alt; + long unsigned int mode; + void *data; +}; + +struct serport { + struct tty_struct *tty; + wait_queue_head_t wait; + struct serio *serio; + struct serio_device_id id; + spinlock_t lock; + long unsigned int flags; +}; + +typedef class_mutex_t class_mutex_intr_t; + +struct vivaldi_data { + u32 function_row_physmap[24]; + unsigned int num_function_row_keys; +}; + +struct atkbd { + struct ps2dev ps2dev; + struct input_dev *dev; + char name[64]; + char phys[32]; + short unsigned int id; + short unsigned int keycode[512]; + long unsigned int force_release_mask[8]; + unsigned char set; + bool translated; + bool extra; + bool write; + bool softrepeat; + bool softraw; + bool scroll; + bool enabled; + unsigned char emul; + bool resend; + bool release; + long unsigned int xl_bit; + unsigned int last; + long unsigned int time; + long unsigned int err_count; + struct delayed_work event_work; + long unsigned int event_jiffies; + long unsigned int event_mask; + struct mutex mutex; + struct vivaldi_data vdata; +}; + +struct i2c_mux_core { + struct i2c_adapter *parent; + struct device *dev; + unsigned int mux_locked: 1; + unsigned int arbitrator: 1; + unsigned int gate: 1; + void *priv; + int (*select)(struct i2c_mux_core *, u32); + int (*deselect)(struct i2c_mux_core *, u32); + int num_adapters; + int max_adapters; + struct i2c_adapter *adapter[0]; +}; + +struct i2c_mux_priv { + struct i2c_adapter adap; + struct i2c_algorithm algo; + struct i2c_mux_core *muxc; + u32 chan_id; +}; + +struct dm_sysfs_attr { + struct attribute attr; + ssize_t (*show)(struct mapped_device *, char *); + ssize_t (*store)(struct mapped_device *, const char *, size_t); +}; + +struct sd_app_op_cond_busy_data { + struct mmc_host *host; + u32 ocr; + struct mmc_command *cmd; +}; + +struct of_timer_irq { + int irq; + int index; + const char *name; + long unsigned int flags; + irq_handler_t handler; +}; + +struct of_timer_base { + void *base; + const char *name; + int index; +}; + +struct of_timer_clk { + struct clk *clk; + const char *name; + int index; + long unsigned int rate; + long unsigned int period; +}; + +struct timer_of { + unsigned int flags; + struct device_node *np; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct clock_event_device clkevt; + struct of_timer_base of_base; + struct of_timer_irq of_irq; + struct of_timer_clk of_clk; + void *private_data; + long: 64; + long: 64; + long: 64; +}; + +enum { + VSOCK_VQ_RX = 0, + VSOCK_VQ_TX = 1, + VSOCK_VQ_EVENT = 2, + VSOCK_VQ_MAX = 3, +}; + +struct vhost_iotlb_msg { + __u64 iova; + __u64 size; + __u64 uaddr; + __u8 perm; + __u8 type; +}; + +struct vhost_iotlb_map { + struct rb_node rb; + struct list_head link; + u64 start; + u64 last; + u64 size; + u64 addr; + u32 perm; + u32 flags_padding; + u64 __subtree_last; + void *opaque; +}; + +struct vhost_iotlb { + struct rb_root_cached root; + struct list_head list; + unsigned int limit; + unsigned int nmaps; + unsigned int flags; +}; + +struct irq_bypass_consumer; + +struct irq_bypass_producer { + struct list_head node; + void *token; + int irq; + int (*add_consumer)(struct irq_bypass_producer *, struct irq_bypass_consumer *); + void (*del_consumer)(struct irq_bypass_producer *, struct irq_bypass_consumer *); + void (*stop)(struct irq_bypass_producer *); + void (*start)(struct irq_bypass_producer *); +}; + +struct irq_bypass_consumer { + struct list_head node; + void *token; + int (*add_producer)(struct irq_bypass_consumer *, struct irq_bypass_producer *); + void (*del_producer)(struct irq_bypass_consumer *, struct irq_bypass_producer *); + void (*stop)(struct irq_bypass_consumer *); + void (*start)(struct irq_bypass_consumer *); +}; + +struct vhost_work; + +typedef void (*vhost_work_fn_t)(struct vhost_work *); + +struct vhost_work { + struct llist_node node; + vhost_work_fn_t fn; + long unsigned int flags; +}; + +struct vhost_worker; + +struct vhost_dev; + +struct vhost_worker_ops { + int (*create)(struct vhost_worker *, struct vhost_dev *, const char *); + void (*stop)(struct vhost_worker *); + void (*wakeup)(struct vhost_worker *); +}; + +struct vhost_task; + +struct vhost_worker { + struct task_struct *kthread_task; + struct vhost_task *vtsk; + struct vhost_dev *dev; + struct mutex mutex; + struct llist_head work_list; + u64 kcov_handle; + u32 id; + int attachment_cnt; + bool killed; + const struct vhost_worker_ops *ops; +}; + +struct vhost_virtqueue; + +struct vhost_dev { + struct mm_struct *mm; + struct mutex mutex; + struct vhost_virtqueue **vqs; + int nvqs; + struct eventfd_ctx *log_ctx; + struct vhost_iotlb *umem; + struct vhost_iotlb *iotlb; + spinlock_t iotlb_lock; + struct list_head read_list; + struct list_head pending_list; + wait_queue_head_t wait; + int iov_limit; + int weight; + int byte_weight; + struct xarray worker_xa; + bool use_worker; + bool fork_owner; + int (*msg_handler)(struct vhost_dev *, u32, struct vhost_iotlb_msg *); +}; + +struct vhost_poll { + poll_table table; + wait_queue_head_t *wqh; + wait_queue_entry_t wait; + struct vhost_work work; + __poll_t mask; + struct vhost_dev *dev; + struct vhost_virtqueue *vq; +}; + +struct vhost_vring_call { + struct eventfd_ctx *ctx; + struct irq_bypass_producer producer; +}; + +struct vhost_log; + +struct vhost_virtqueue { + struct vhost_dev *dev; + struct vhost_worker *worker; + struct mutex mutex; + unsigned int num; + vring_desc_t *desc; + vring_avail_t *avail; + vring_used_t *used; + const struct vhost_iotlb_map *meta_iotlb[3]; + struct file *kick; + struct vhost_vring_call call_ctx; + struct eventfd_ctx *error_ctx; + struct eventfd_ctx *log_ctx; + struct vhost_poll poll; + vhost_work_fn_t handle_kick; + u16 last_avail_idx; + u16 avail_idx; + u16 last_used_idx; + u16 used_flags; + u16 signalled_used; + bool signalled_used_valid; + bool log_used; + u64 log_addr; + struct iovec iov[1024]; + struct iovec iotlb_iov[64]; + struct iovec *indirect; + struct vring_used_elem *heads; + struct vhost_iotlb *umem; + struct vhost_iotlb *iotlb; + void *private_data; + u64 acked_features; + u64 acked_backend_features; + void *log_base; + struct vhost_log *log; + struct iovec log_iov[64]; + bool is_le; + u32 busyloop_timeout; +}; + +struct vhost_log { + u64 addr; + u64 len; +}; + +enum vhost_uaddr_type { + VHOST_ADDR_DESC = 0, + VHOST_ADDR_AVAIL = 1, + VHOST_ADDR_USED = 2, + VHOST_NUM_ADDRS = 3, +}; + +enum { + VHOST_FEATURES = 5318377472ULL, +}; + +enum { + VHOST_VSOCK_FEATURES = 13908312066ULL, +}; + +enum { + VHOST_VSOCK_BACKEND_FEATURES = 2, +}; + +struct vhost_vsock { + struct vhost_dev dev; + struct vhost_virtqueue vqs[2]; + struct hlist_node hash; + struct vhost_work send_pkt_work; + struct sk_buff_head send_pkt_queue; + atomic_t queued_replies; + u32 guest_cid; + bool seqpacket_allow; +}; + +enum { + SKB_FCLONE_UNAVAILABLE = 0, + SKB_FCLONE_ORIG = 1, + SKB_FCLONE_CLONE = 2, +}; + +struct gro_cell { + struct sk_buff_head napi_skbs; + struct napi_struct napi; +}; + +struct percpu_free_defer { + struct callback_head rcu; + void *ptr; +}; + +struct nvmem_cell; + +struct psample_group { + struct list_head list; + struct net *net; + u32 group_num; + u32 refcount; + u32 seq; + struct callback_head rcu; +}; + +struct action_gate_entry { + u8 gate_state; + u32 interval; + s32 ipv; + s32 maxoctets; +}; + +enum tcf_proto_ops_flags { + TCF_PROTO_OPS_DOIT_UNLOCKED = 1, +}; + +enum net_xmit_qdisc_t { + __NET_XMIT_STOLEN = 65536, + __NET_XMIT_BYPASS = 131072, +}; + +struct tcf_qevent { + struct tcf_block *block; + struct tcf_block_ext_info info; + struct tcf_proto *filter_chain; +}; + +struct tcf_exts_miss_cookie_node { + const struct tcf_chain *chain; + const struct tcf_proto *tp; + const struct tcf_exts *exts; + u32 chain_index; + u32 tp_prio; + u32 handle; + u32 miss_cookie_base; + struct callback_head rcu; +}; + +union tcf_exts_miss_cookie { + struct { + u32 miss_cookie_base; + u32 act_index; + }; + u64 miss_cookie; +}; + +struct tcf_filter_chain_list_item { + struct list_head list; + tcf_chain_head_change_t *chain_head_change; + void *chain_head_change_priv; +}; + +struct tcf_net { + spinlock_t idr_lock; + struct idr idr; +}; + +struct tcf_block_owner_item { + struct list_head list; + struct Qdisc *q; + enum flow_block_binder_type binder_type; +}; + +struct tcf_chain_info { + struct tcf_proto **pprev; + struct tcf_proto *next; +}; + +struct tcf_dump_args { + struct tcf_walker w; + struct sk_buff *skb; + struct netlink_callback *cb; + struct tcf_block *block; + struct Qdisc *q; + u32 parent; + bool terse_dump; +}; + +struct tc_basic_pcnt { + __u64 rcnt; + __u64 rhit; +}; + +enum { + TCA_BASIC_UNSPEC = 0, + TCA_BASIC_CLASSID = 1, + TCA_BASIC_EMATCHES = 2, + TCA_BASIC_ACT = 3, + TCA_BASIC_POLICE = 4, + TCA_BASIC_PCNT = 5, + TCA_BASIC_PAD = 6, + __TCA_BASIC_MAX = 7, +}; + +struct tcf_ematch_tree {}; + +struct basic_head { + struct list_head flist; + struct idr handle_idr; + struct callback_head rcu; +}; + +struct basic_filter { + u32 handle; + struct tcf_exts exts; + struct tcf_ematch_tree ematches; + struct tcf_result res; + struct tcf_proto *tp; + struct list_head link; + struct tc_basic_pcnt *pf; + struct rcu_work rwork; +}; + +enum { + ETHTOOL_A_BITSET_BIT_UNSPEC = 0, + ETHTOOL_A_BITSET_BIT_INDEX = 1, + ETHTOOL_A_BITSET_BIT_NAME = 2, + ETHTOOL_A_BITSET_BIT_VALUE = 3, + __ETHTOOL_A_BITSET_BIT_CNT = 4, + ETHTOOL_A_BITSET_BIT_MAX = 3, +}; + +enum { + ETHTOOL_A_BITSET_BITS_UNSPEC = 0, + ETHTOOL_A_BITSET_BITS_BIT = 1, + __ETHTOOL_A_BITSET_BITS_CNT = 2, + ETHTOOL_A_BITSET_BITS_MAX = 1, +}; + +enum { + ETHTOOL_A_BITSET_UNSPEC = 0, + ETHTOOL_A_BITSET_NOMASK = 1, + ETHTOOL_A_BITSET_SIZE = 2, + ETHTOOL_A_BITSET_BITS = 3, + ETHTOOL_A_BITSET_VALUE = 4, + ETHTOOL_A_BITSET_MASK = 5, + __ETHTOOL_A_BITSET_CNT = 6, + ETHTOOL_A_BITSET_MAX = 5, +}; + +struct privflags_reply_data { + struct ethnl_reply_data base; + const char (*priv_flag_names)[32]; + unsigned int n_priv_flags; + u32 priv_flags; +}; + +enum { + ETHTOOL_A_STATS_GRP_UNSPEC = 0, + ETHTOOL_A_STATS_GRP_PAD = 1, + ETHTOOL_A_STATS_GRP_ID = 2, + ETHTOOL_A_STATS_GRP_SS_ID = 3, + ETHTOOL_A_STATS_GRP_STAT = 4, + ETHTOOL_A_STATS_GRP_HIST_RX = 5, + ETHTOOL_A_STATS_GRP_HIST_TX = 6, + ETHTOOL_A_STATS_GRP_HIST_BKT_LOW = 7, + ETHTOOL_A_STATS_GRP_HIST_BKT_HI = 8, + ETHTOOL_A_STATS_GRP_HIST_VAL = 9, + __ETHTOOL_A_STATS_GRP_CNT = 10, + ETHTOOL_A_STATS_GRP_MAX = 9, +}; + +struct stats_req_info { + struct ethnl_req_info base; + long unsigned int stat_mask[1]; + enum ethtool_mac_stats_src src; +}; + +struct stats_reply_data { + struct ethnl_reply_data base; + union { + struct { + struct ethtool_eth_phy_stats phy_stats; + struct ethtool_eth_mac_stats mac_stats; + struct ethtool_eth_ctrl_stats ctrl_stats; + struct ethtool_rmon_stats rmon_stats; + struct ethtool_phy_stats phydev_stats; + }; + struct { + struct ethtool_eth_phy_stats phy_stats; + struct ethtool_eth_mac_stats mac_stats; + struct ethtool_eth_ctrl_stats ctrl_stats; + struct ethtool_rmon_stats rmon_stats; + struct ethtool_phy_stats phydev_stats; + } stats; + }; + const struct ethtool_rmon_hist_range *rmon_ranges; +}; + +enum ip_conntrack_events { + IPCT_NEW = 0, + IPCT_RELATED = 1, + IPCT_DESTROY = 2, + IPCT_REPLY = 3, + IPCT_ASSURED = 4, + IPCT_PROTOINFO = 5, + IPCT_HELPER = 6, + IPCT_MARK = 7, + IPCT_SEQADJ = 8, + IPCT_NATSEQADJ = 8, + IPCT_SECMARK = 9, + IPCT_LABEL = 10, + IPCT_SYNPROXY = 11, + __IPCT_MAX = 12, +}; + +enum ct_dccp_roles { + CT_DCCP_ROLE_CLIENT = 0, + CT_DCCP_ROLE_SERVER = 1, + __CT_DCCP_ROLE_MAX = 2, +}; + +struct dccp_hdr_ext { + __be32 dccph_seq_low; +}; + +struct dccp_hdr_request { + __be32 dccph_req_service; +}; + +struct dccp_hdr_ack_bits { + __be16 dccph_reserved1; + __be16 dccph_ack_nr_high; + __be32 dccph_ack_nr_low; +}; + +struct dccp_hdr_response { + struct dccp_hdr_ack_bits dccph_resp_ack; + __be32 dccph_resp_service; +}; + +struct dccp_hdr_reset { + struct dccp_hdr_ack_bits dccph_reset_ack; + __u8 dccph_reset_code; + __u8 dccph_reset_data[3]; +}; + +enum ctattr_protoinfo { + CTA_PROTOINFO_UNSPEC = 0, + CTA_PROTOINFO_TCP = 1, + CTA_PROTOINFO_DCCP = 2, + CTA_PROTOINFO_SCTP = 3, + __CTA_PROTOINFO_MAX = 4, +}; + +enum ctattr_protoinfo_dccp { + CTA_PROTOINFO_DCCP_UNSPEC = 0, + CTA_PROTOINFO_DCCP_STATE = 1, + CTA_PROTOINFO_DCCP_ROLE = 2, + CTA_PROTOINFO_DCCP_HANDSHAKE_SEQ = 3, + CTA_PROTOINFO_DCCP_PAD = 4, + __CTA_PROTOINFO_DCCP_MAX = 5, +}; + +struct nf_conntrack_ecache { + long unsigned int cache; + u16 ctmask; + u16 expmask; + u32 missed; + u32 portid; +}; + +struct nf_ct_timeout { + __u16 l3num; + const struct nf_conntrack_l4proto *l4proto; + char data[0]; +}; + +struct nf_conn_timeout { + struct nf_ct_timeout *timeout; +}; + +struct nf_conntrack_dccp_buf { + struct dccp_hdr dh; + struct dccp_hdr_ext ext; + union { + struct dccp_hdr_ack_bits ack; + struct dccp_hdr_request req; + struct dccp_hdr_response response; + struct dccp_hdr_reset rst; + } u; +}; + +enum ctattr_timeout_dccp { + CTA_TIMEOUT_DCCP_UNSPEC = 0, + CTA_TIMEOUT_DCCP_REQUEST = 1, + CTA_TIMEOUT_DCCP_RESPOND = 2, + CTA_TIMEOUT_DCCP_PARTOPEN = 3, + CTA_TIMEOUT_DCCP_OPEN = 4, + CTA_TIMEOUT_DCCP_CLOSEREQ = 5, + CTA_TIMEOUT_DCCP_CLOSING = 6, + CTA_TIMEOUT_DCCP_TIMEWAIT = 7, + __CTA_TIMEOUT_DCCP_MAX = 8, +}; + +enum nft_payload_bases { + NFT_PAYLOAD_LL_HEADER = 0, + NFT_PAYLOAD_NETWORK_HEADER = 1, + NFT_PAYLOAD_TRANSPORT_HEADER = 2, + NFT_PAYLOAD_INNER_HEADER = 3, + NFT_PAYLOAD_TUN_HEADER = 4, +}; + +enum nft_trace_types { + NFT_TRACETYPE_UNSPEC = 0, + NFT_TRACETYPE_POLICY = 1, + NFT_TRACETYPE_RETURN = 2, + NFT_TRACETYPE_RULE = 3, + __NFT_TRACETYPE_MAX = 4, +}; + +struct nft_rule_dp { + u64 is_last: 1; + u64 dlen: 12; + u64 handle: 42; + long: 0; + unsigned char data[0]; +}; + +struct nft_traceinfo { + bool trace; + bool nf_trace; + bool packet_dumped; + enum nft_trace_types type: 8; + u32 skbid; + const struct nft_base_chain *basechain; +}; + +struct nft_bitwise_fast_expr { + u32 mask; + u32 xor; + u8 sreg; + u8 dreg; +}; + +struct nft_cmp_fast_expr { + u32 data; + u32 mask; + u8 sreg; + u8 len; + bool inv; +}; + +struct nft_cmp16_fast_expr { + struct nft_data data; + struct nft_data mask; + u8 sreg; + u8 len; + bool inv; +}; + +struct nft_payload { + enum nft_payload_bases base: 8; + u8 offset; + u8 len; + u8 dreg; +}; + +struct nft_jumpstack { + const struct nft_rule_dp *rule; +}; + +enum nft_byteorder_ops { + NFT_BYTEORDER_NTOH = 0, + NFT_BYTEORDER_HTON = 1, +}; + +enum nft_byteorder_attributes { + NFTA_BYTEORDER_UNSPEC = 0, + NFTA_BYTEORDER_SREG = 1, + NFTA_BYTEORDER_DREG = 2, + NFTA_BYTEORDER_OP = 3, + NFTA_BYTEORDER_LEN = 4, + NFTA_BYTEORDER_SIZE = 5, + __NFTA_BYTEORDER_MAX = 6, +}; + +struct nft_byteorder { + u8 sreg; + u8 dreg; + enum nft_byteorder_ops op: 8; + u8 len; + u8 size; +}; + +enum nft_set_elem_flags { + NFT_SET_ELEM_INTERVAL_END = 1, + NFT_SET_ELEM_CATCHALL = 2, +}; + +struct nft_rbtree { + struct rb_root root; + rwlock_t lock; + seqcount_rwlock_t count; + long unsigned int last_gc; +}; + +struct nft_rbtree_elem { + struct nft_elem_priv priv; + struct rb_node node; + struct nft_set_ext ext; +}; + +struct xt_entry_match { + union { + struct { + __u16 match_size; + char name[29]; + __u8 revision; + } user; + struct { + __u16 match_size; + struct xt_match *match; + } kernel; + __u16 match_size; + } u; + unsigned char data[0]; +}; + +struct xt_error_target { + struct xt_entry_target target; + char errorname[30]; +}; + +struct xt_counters_info { + char name[32]; + unsigned int num_counters; + struct xt_counters counters[0]; +}; + +struct xt_percpu_counter_alloc_state { + unsigned int off; + const char *mem; +}; + +struct xt_template { + struct list_head list; + int (*table_init)(struct net *); + struct module *me; + char name[32]; +}; + +struct xt_pernet { + struct list_head tables[11]; +}; + +struct xt_af { + struct mutex mutex; + struct list_head match; + struct list_head target; +}; + +struct nf_mttg_trav { + struct list_head *head; + struct list_head *curr; + uint8_t class; +}; + +enum { + MTTG_TRAV_INIT = 0, + MTTG_TRAV_NFP_UNSPEC = 1, + MTTG_TRAV_NFP_SPEC = 2, + MTTG_TRAV_DONE = 3, +}; + +enum xt_connlabel_mtopts { + XT_CONNLABEL_OP_INVERT = 1, + XT_CONNLABEL_OP_SET = 2, +}; + +struct xt_connlabel_mtinfo { + __u16 bit; + __u16 options; +}; + +struct nf_conn_labels { + long unsigned int bits[2]; +}; + +struct gnet_stats_rate_est64 { + __u64 bps; + __u64 pps; +}; + +struct gnet_estimator { + signed char interval; + unsigned char ewma_log; +}; + +enum xt_rateest_match_flags { + XT_RATEEST_MATCH_INVERT = 1, + XT_RATEEST_MATCH_ABS = 2, + XT_RATEEST_MATCH_REL = 4, + XT_RATEEST_MATCH_DELTA = 8, + XT_RATEEST_MATCH_BPS = 16, + XT_RATEEST_MATCH_PPS = 32, +}; + +enum xt_rateest_match_mode { + XT_RATEEST_MATCH_NONE = 0, + XT_RATEEST_MATCH_EQ = 1, + XT_RATEEST_MATCH_LT = 2, + XT_RATEEST_MATCH_GT = 3, +}; + +struct xt_rateest; + +struct xt_rateest_match_info { + char name1[16]; + char name2[16]; + __u16 flags; + __u16 mode; + __u32 bps1; + __u32 pps1; + __u32 bps2; + __u32 pps2; + struct xt_rateest *est1; + struct xt_rateest *est2; +}; + +struct xt_rateest { + struct gnet_stats_basic_sync bstats; + spinlock_t lock; + unsigned int refcnt; + struct hlist_node list; + char name[16]; + struct gnet_estimator params; + struct callback_head rcu; + struct net_rate_estimator *rate_est; + long: 64; +}; + +struct xt_tcpmss_match_info { + __u16 mss_min; + __u16 mss_max; + __u8 invert; +}; + +enum { + IPSET_ERR_NAME = 4352, + IPSET_ERR_LOOP = 4353, + IPSET_ERR_BEFORE = 4354, + IPSET_ERR_NAMEREF = 4355, + IPSET_ERR_LIST_FULL = 4356, + IPSET_ERR_REF_EXIST = 4357, +}; + +struct set_elem { + struct callback_head rcu; + struct list_head list; + struct ip_set *set; + ip_set_id_t id; +}; + +struct set_adt_elem { + ip_set_id_t id; + ip_set_id_t refid; + int before; +}; + +struct list_set { + u32 size; + struct timer_list gc; + struct ip_set *set; + struct net *net; + struct list_head members; +}; + +struct dmabuf_cmsg { + __u64 frag_offset; + __u32 frag_size; + __u32 frag_token; + __u32 dmabuf_id; + __u32 flags; +}; + +struct dmabuf_genpool_chunk_owner; + +struct net_iov { + long unsigned int __unused_padding; + long unsigned int pp_magic; + struct page_pool *pp; + struct dmabuf_genpool_chunk_owner *owner; + long unsigned int dma_addr; + atomic_long_t pp_ref_count; +}; + +struct net_devmem_dmabuf_binding; + +struct dmabuf_genpool_chunk_owner { + long unsigned int base_virtual; + dma_addr_t base_dma_addr; + struct net_iov *niovs; + size_t num_niovs; + struct net_devmem_dmabuf_binding *binding; +}; + +enum { + BPF_SOCK_OPS_RTO_CB_FLAG = 1, + BPF_SOCK_OPS_RETRANS_CB_FLAG = 2, + BPF_SOCK_OPS_STATE_CB_FLAG = 4, + BPF_SOCK_OPS_RTT_CB_FLAG = 8, + BPF_SOCK_OPS_PARSE_ALL_HDR_OPT_CB_FLAG = 16, + BPF_SOCK_OPS_PARSE_UNKNOWN_HDR_OPT_CB_FLAG = 32, + BPF_SOCK_OPS_WRITE_HDR_OPT_CB_FLAG = 64, + BPF_SOCK_OPS_ALL_CB_FLAGS = 127, +}; + +enum { + BPF_TCP_ESTABLISHED = 1, + BPF_TCP_SYN_SENT = 2, + BPF_TCP_SYN_RECV = 3, + BPF_TCP_FIN_WAIT1 = 4, + BPF_TCP_FIN_WAIT2 = 5, + BPF_TCP_TIME_WAIT = 6, + BPF_TCP_CLOSE = 7, + BPF_TCP_CLOSE_WAIT = 8, + BPF_TCP_LAST_ACK = 9, + BPF_TCP_LISTEN = 10, + BPF_TCP_CLOSING = 11, + BPF_TCP_NEW_SYN_RECV = 12, + BPF_TCP_BOUND_INACTIVE = 13, + BPF_TCP_MAX_STATES = 14, +}; + +struct tcpvegas_info { + __u32 tcpv_enabled; + __u32 tcpv_rttcnt; + __u32 tcpv_rtt; + __u32 tcpv_minrtt; +}; + +struct tcp_dctcp_info { + __u16 dctcp_enabled; + __u16 dctcp_ce_state; + __u32 dctcp_alpha; + __u32 dctcp_ab_ecn; + __u32 dctcp_ab_tot; +}; + +struct tcp_bbr_info { + __u32 bbr_bw_lo; + __u32 bbr_bw_hi; + __u32 bbr_min_rtt; + __u32 bbr_pacing_gain; + __u32 bbr_cwnd_gain; +}; + +union tcp_cc_info { + struct tcpvegas_info vegas; + struct tcp_dctcp_info dctcp; + struct tcp_bbr_info bbr; +}; + +enum inet_csk_ack_state_t { + ICSK_ACK_SCHED = 1, + ICSK_ACK_TIMER = 2, + ICSK_ACK_PUSHED = 4, + ICSK_ACK_PUSHED2 = 8, + ICSK_ACK_NOW = 16, + ICSK_ACK_NOMEM = 32, +}; + +enum { + TCP_FLAG_CWR = 32768, + TCP_FLAG_ECE = 16384, + TCP_FLAG_URG = 8192, + TCP_FLAG_ACK = 4096, + TCP_FLAG_PSH = 2048, + TCP_FLAG_RST = 1024, + TCP_FLAG_SYN = 512, + TCP_FLAG_FIN = 256, + TCP_RESERVED_BITS = 15, + TCP_DATA_OFFSET = 240, +}; + +struct tcp_repair_opt { + __u32 opt_code; + __u32 opt_val; +}; + +struct tcp_repair_window { + __u32 snd_wl1; + __u32 snd_wnd; + __u32 max_window; + __u32 rcv_wnd; + __u32 rcv_wup; +}; + +enum { + TCP_NO_QUEUE = 0, + TCP_RECV_QUEUE = 1, + TCP_SEND_QUEUE = 2, + TCP_QUEUES_NR = 3, +}; + +struct tcp_info { + __u8 tcpi_state; + __u8 tcpi_ca_state; + __u8 tcpi_retransmits; + __u8 tcpi_probes; + __u8 tcpi_backoff; + __u8 tcpi_options; + __u8 tcpi_snd_wscale: 4; + __u8 tcpi_rcv_wscale: 4; + __u8 tcpi_delivery_rate_app_limited: 1; + __u8 tcpi_fastopen_client_fail: 2; + __u32 tcpi_rto; + __u32 tcpi_ato; + __u32 tcpi_snd_mss; + __u32 tcpi_rcv_mss; + __u32 tcpi_unacked; + __u32 tcpi_sacked; + __u32 tcpi_lost; + __u32 tcpi_retrans; + __u32 tcpi_fackets; + __u32 tcpi_last_data_sent; + __u32 tcpi_last_ack_sent; + __u32 tcpi_last_data_recv; + __u32 tcpi_last_ack_recv; + __u32 tcpi_pmtu; + __u32 tcpi_rcv_ssthresh; + __u32 tcpi_rtt; + __u32 tcpi_rttvar; + __u32 tcpi_snd_ssthresh; + __u32 tcpi_snd_cwnd; + __u32 tcpi_advmss; + __u32 tcpi_reordering; + __u32 tcpi_rcv_rtt; + __u32 tcpi_rcv_space; + __u32 tcpi_total_retrans; + __u64 tcpi_pacing_rate; + __u64 tcpi_max_pacing_rate; + __u64 tcpi_bytes_acked; + __u64 tcpi_bytes_received; + __u32 tcpi_segs_out; + __u32 tcpi_segs_in; + __u32 tcpi_notsent_bytes; + __u32 tcpi_min_rtt; + __u32 tcpi_data_segs_in; + __u32 tcpi_data_segs_out; + __u64 tcpi_delivery_rate; + __u64 tcpi_busy_time; + __u64 tcpi_rwnd_limited; + __u64 tcpi_sndbuf_limited; + __u32 tcpi_delivered; + __u32 tcpi_delivered_ce; + __u64 tcpi_bytes_sent; + __u64 tcpi_bytes_retrans; + __u32 tcpi_dsack_dups; + __u32 tcpi_reord_seen; + __u32 tcpi_rcv_ooopack; + __u32 tcpi_snd_wnd; + __u32 tcpi_rcv_wnd; + __u32 tcpi_rehash; + __u16 tcpi_total_rto; + __u16 tcpi_total_rto_recoveries; + __u32 tcpi_total_rto_time; +}; + +enum { + TCP_NLA_PAD = 0, + TCP_NLA_BUSY = 1, + TCP_NLA_RWND_LIMITED = 2, + TCP_NLA_SNDBUF_LIMITED = 3, + TCP_NLA_DATA_SEGS_OUT = 4, + TCP_NLA_TOTAL_RETRANS = 5, + TCP_NLA_PACING_RATE = 6, + TCP_NLA_DELIVERY_RATE = 7, + TCP_NLA_SND_CWND = 8, + TCP_NLA_REORDERING = 9, + TCP_NLA_MIN_RTT = 10, + TCP_NLA_RECUR_RETRANS = 11, + TCP_NLA_DELIVERY_RATE_APP_LMT = 12, + TCP_NLA_SNDQ_SIZE = 13, + TCP_NLA_CA_STATE = 14, + TCP_NLA_SND_SSTHRESH = 15, + TCP_NLA_DELIVERED = 16, + TCP_NLA_DELIVERED_CE = 17, + TCP_NLA_BYTES_SENT = 18, + TCP_NLA_BYTES_RETRANS = 19, + TCP_NLA_DSACK_DUPS = 20, + TCP_NLA_REORD_SEEN = 21, + TCP_NLA_SRTT = 22, + TCP_NLA_TIMEOUT_REHASH = 23, + TCP_NLA_BYTES_NOTSENT = 24, + TCP_NLA_EDT = 25, + TCP_NLA_TTL = 26, + TCP_NLA_REHASH = 27, +}; + +struct tcp_zerocopy_receive { + __u64 address; + __u32 length; + __u32 recv_skip_hint; + __u32 inq; + __s32 err; + __u64 copybuf_address; + __s32 copybuf_len; + __u32 flags; + __u64 msg_control; + __u64 msg_controllen; + __u32 msg_flags; + __u32 reserved; +}; + +union tcp_ao_addr { + struct in_addr a4; + struct in6_addr a6; +}; + +struct tcp_ao_hdr { + u8 kind; + u8 length; + u8 keyid; + u8 rnext_keyid; +}; + +struct tcp_md5sig_key { + struct hlist_node node; + u8 keylen; + u8 family; + u8 prefixlen; + u8 flags; + union tcp_ao_addr addr; + int l3index; + u8 key[80]; + struct callback_head rcu; +}; + +enum tcp_chrono { + TCP_CHRONO_UNSPEC = 0, + TCP_CHRONO_BUSY = 1, + TCP_CHRONO_RWND_LIMITED = 2, + TCP_CHRONO_SNDBUF_LIMITED = 3, + __TCP_CHRONO_MAX = 4, +}; + +struct rps_sock_flow_table { + u32 mask; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + u32 ents[0]; +}; + +struct net_devmem_dmabuf_binding { + struct dma_buf *dmabuf; + struct dma_buf_attachment *attachment; + struct sg_table *sgt; + struct net_device *dev; + struct gen_pool *chunk_pool; + refcount_t ref; + struct list_head list; + struct xarray bound_rxqs; + u32 id; +}; + +enum { + TCP_CMSG_INQ = 1, + TCP_CMSG_TS = 2, +}; + +struct tcp_splice_state { + struct pipe_inode_info *pipe; + size_t len; + unsigned int flags; +}; + +struct tcp_xa_pool { + u8 max; + u8 idx; + __u32 tokens[17]; + netmem_ref netmems[17]; +}; + +struct ip_mreq_source { + __be32 imr_multiaddr; + __be32 imr_interface; + __be32 imr_sourceaddr; +}; + +struct ip_msfilter { + __be32 imsf_multiaddr; + __be32 imsf_interface; + __u32 imsf_fmode; + __u32 imsf_numsrc; + union { + __be32 imsf_slist[1]; + struct { + struct {} __empty_imsf_slist_flex; + __be32 imsf_slist_flex[0]; + }; + }; +}; + +struct group_filter { + union { + struct { + __u32 gf_interface_aux; + struct __kernel_sockaddr_storage gf_group_aux; + __u32 gf_fmode_aux; + __u32 gf_numsrc_aux; + struct __kernel_sockaddr_storage gf_slist[1]; + }; + struct { + __u32 gf_interface; + struct __kernel_sockaddr_storage gf_group; + __u32 gf_fmode; + __u32 gf_numsrc; + struct __kernel_sockaddr_storage gf_slist_flex[0]; + }; + }; +}; + +struct igmphdr { + __u8 type; + __u8 code; + __sum16 csum; + __be32 group; +}; + +struct igmpv3_grec { + __u8 grec_type; + __u8 grec_auxwords; + __be16 grec_nsrcs; + __be32 grec_mca; + __be32 grec_src[0]; +}; + +struct igmpv3_report { + __u8 type; + __u8 resv1; + __sum16 csum; + __be16 resv2; + __be16 ngrec; + struct igmpv3_grec grec[0]; +}; + +struct igmpv3_query { + __u8 type; + __u8 code; + __sum16 csum; + __be32 group; + __u8 qrv: 3; + __u8 suppress: 1; + __u8 resv: 4; + __u8 qqic; + __be16 nsrcs; + __be32 srcs[0]; +}; + +struct igmp_mc_iter_state { + struct seq_net_private p; + struct net_device *dev; + struct in_device *in_dev; +}; + +struct igmp_mcf_iter_state { + struct seq_net_private p; + struct net_device *dev; + struct in_device *idev; + struct ip_mc_list *im; +}; + +enum { + ETHTOOL_A_TUNNEL_UDP_ENTRY_UNSPEC = 0, + ETHTOOL_A_TUNNEL_UDP_ENTRY_PORT = 1, + ETHTOOL_A_TUNNEL_UDP_ENTRY_TYPE = 2, + __ETHTOOL_A_TUNNEL_UDP_ENTRY_CNT = 3, + ETHTOOL_A_TUNNEL_UDP_ENTRY_MAX = 2, +}; + +enum { + ETHTOOL_A_TUNNEL_UDP_TABLE_UNSPEC = 0, + ETHTOOL_A_TUNNEL_UDP_TABLE_SIZE = 1, + ETHTOOL_A_TUNNEL_UDP_TABLE_TYPES = 2, + ETHTOOL_A_TUNNEL_UDP_TABLE_ENTRY = 3, + __ETHTOOL_A_TUNNEL_UDP_TABLE_CNT = 4, + ETHTOOL_A_TUNNEL_UDP_TABLE_MAX = 3, +}; + +struct udp_tunnel_nic_table_entry; + +struct udp_tunnel_nic { + struct work_struct work; + struct net_device *dev; + u8 need_sync: 1; + u8 need_replay: 1; + u8 work_pending: 1; + unsigned int n_tables; + long unsigned int missed; + struct udp_tunnel_nic_table_entry *entries[0]; +}; + +enum udp_parsable_tunnel_type { + UDP_TUNNEL_TYPE_VXLAN = 1, + UDP_TUNNEL_TYPE_GENEVE = 2, + UDP_TUNNEL_TYPE_VXLAN_GPE = 4, +}; + +enum udp_tunnel_nic_info_flags { + UDP_TUNNEL_NIC_INFO_MAY_SLEEP = 1, + UDP_TUNNEL_NIC_INFO_OPEN_ONLY = 2, + UDP_TUNNEL_NIC_INFO_IPV4_ONLY = 4, + UDP_TUNNEL_NIC_INFO_STATIC_IANA_VXLAN = 8, +}; + +struct udp_tunnel_nic_shared_node { + struct net_device *dev; + struct list_head list; +}; + +struct udp_tunnel_nic_ops { + void (*get_port)(struct net_device *, unsigned int, unsigned int, struct udp_tunnel_info *); + void (*set_port_priv)(struct net_device *, unsigned int, unsigned int, u8); + void (*add_port)(struct net_device *, struct udp_tunnel_info *); + void (*del_port)(struct net_device *, struct udp_tunnel_info *); + void (*reset_ntf)(struct net_device *); + size_t (*dump_size)(struct net_device *, unsigned int); + int (*dump_write)(struct net_device *, unsigned int, struct sk_buff *); +}; + +enum udp_tunnel_nic_table_entry_flags { + UDP_TUNNEL_NIC_ENTRY_ADD = 1, + UDP_TUNNEL_NIC_ENTRY_DEL = 2, + UDP_TUNNEL_NIC_ENTRY_OP_FAIL = 4, + UDP_TUNNEL_NIC_ENTRY_FROZEN = 8, +}; + +struct udp_tunnel_nic_table_entry { + __be16 port; + u8 type; + u8 flags; + u16 use_cnt; + u8 hw_priv; +}; + +enum unix_vertex_index { + UNIX_VERTEX_INDEX_MARK1 = 0, + UNIX_VERTEX_INDEX_MARK2 = 1, + UNIX_VERTEX_INDEX_START = 2, +}; + +struct ip6_mtuinfo { + struct sockaddr_in6 ip6m_addr; + __u32 ip6m_mtu; +}; + +struct in_pktinfo { + int ipi_ifindex; + struct in_addr ipi_spec_dst; + struct in_addr ipi_addr; +}; + +struct static_key_false_deferred { + struct static_key_false key; + long unsigned int timeout; + struct delayed_work work; +}; + +struct frag_hdr { + __u8 nexthdr; + __u8 reserved; + __be16 frag_off; + __be32 identification; +}; + +struct xt_get_revision { + char name[29]; + __u8 revision; +}; + +struct ip6t_standard { + struct ip6t_entry entry; + struct xt_standard_target target; +}; + +struct ip6t_error { + struct ip6t_entry entry; + struct xt_error_target target; +}; + +struct ip6t_getinfo { + char name[32]; + unsigned int valid_hooks; + unsigned int hook_entry[5]; + unsigned int underflow[5]; + unsigned int num_entries; + unsigned int size; +}; + +struct ip6t_get_entries { + char name[32]; + unsigned int size; + struct ip6t_entry entrytable[0]; +}; + +enum nf_ip_trace_comments { + NF_IP6_TRACE_COMMENT_RULE = 0, + NF_IP6_TRACE_COMMENT_RETURN = 1, + NF_IP6_TRACE_COMMENT_POLICY = 2, +}; + +struct ip6t_npt_tginfo { + union nf_inet_addr src_pfx; + union nf_inet_addr dst_pfx; + __u8 src_pfx_len; + __u8 dst_pfx_len; + __sum16 adjustment; +}; + +struct hop_jumbo_hdr { + u8 nexthdr; + u8 hdrlen; + u8 tlv_type; + u8 tlv_len; + __be32 jumbo_payload_len; +}; + +struct netdev_nested_priv { + unsigned char flags; + void *data; +}; + +struct mac_addr___2 { + unsigned char addr[6]; +}; + +typedef struct mac_addr___2 mac_addr; + +enum { + BR_VLFLAG_PER_PORT_STATS = 1, + BR_VLFLAG_ADDED_BY_SWITCHDEV = 2, + BR_VLFLAG_MCAST_ENABLED = 4, + BR_VLFLAG_GLOBAL_MCAST_ENABLED = 8, + BR_VLFLAG_NEIGH_SUPPRESS_ENABLED = 16, +}; + +struct net_bridge_fdb_key { + mac_addr addr; + u16 vlan_id; +}; + +struct net_bridge_fdb_entry { + struct rhash_head rhnode; + struct net_bridge_port *dst; + struct net_bridge_fdb_key key; + struct hlist_node fdb_node; + long unsigned int flags; + long: 64; + long: 64; + long unsigned int updated; + long unsigned int used; + struct callback_head rcu; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct br_vlan_msg { + __u8 family; + __u8 reserved1; + __u16 reserved2; + __u32 ifindex; +}; + +enum { + BRIDGE_VLANDB_UNSPEC = 0, + BRIDGE_VLANDB_ENTRY = 1, + BRIDGE_VLANDB_GLOBAL_OPTIONS = 2, + __BRIDGE_VLANDB_MAX = 3, +}; + +enum { + BRIDGE_VLANDB_ENTRY_UNSPEC = 0, + BRIDGE_VLANDB_ENTRY_INFO = 1, + BRIDGE_VLANDB_ENTRY_RANGE = 2, + BRIDGE_VLANDB_ENTRY_STATE = 3, + BRIDGE_VLANDB_ENTRY_TUNNEL_INFO = 4, + BRIDGE_VLANDB_ENTRY_STATS = 5, + BRIDGE_VLANDB_ENTRY_MCAST_ROUTER = 6, + BRIDGE_VLANDB_ENTRY_MCAST_N_GROUPS = 7, + BRIDGE_VLANDB_ENTRY_MCAST_MAX_GROUPS = 8, + BRIDGE_VLANDB_ENTRY_NEIGH_SUPPRESS = 9, + __BRIDGE_VLANDB_ENTRY_MAX = 10, +}; + +enum { + BRIDGE_VLANDB_TINFO_UNSPEC = 0, + BRIDGE_VLANDB_TINFO_ID = 1, + BRIDGE_VLANDB_TINFO_CMD = 2, + __BRIDGE_VLANDB_TINFO_MAX = 3, +}; + +enum { + BRIDGE_VLANDB_GOPTS_UNSPEC = 0, + BRIDGE_VLANDB_GOPTS_ID = 1, + BRIDGE_VLANDB_GOPTS_RANGE = 2, + BRIDGE_VLANDB_GOPTS_MCAST_SNOOPING = 3, + BRIDGE_VLANDB_GOPTS_MCAST_IGMP_VERSION = 4, + BRIDGE_VLANDB_GOPTS_MCAST_MLD_VERSION = 5, + BRIDGE_VLANDB_GOPTS_MCAST_LAST_MEMBER_CNT = 6, + BRIDGE_VLANDB_GOPTS_MCAST_STARTUP_QUERY_CNT = 7, + BRIDGE_VLANDB_GOPTS_MCAST_LAST_MEMBER_INTVL = 8, + BRIDGE_VLANDB_GOPTS_PAD = 9, + BRIDGE_VLANDB_GOPTS_MCAST_MEMBERSHIP_INTVL = 10, + BRIDGE_VLANDB_GOPTS_MCAST_QUERIER_INTVL = 11, + BRIDGE_VLANDB_GOPTS_MCAST_QUERY_INTVL = 12, + BRIDGE_VLANDB_GOPTS_MCAST_QUERY_RESPONSE_INTVL = 13, + BRIDGE_VLANDB_GOPTS_MCAST_STARTUP_QUERY_INTVL = 14, + BRIDGE_VLANDB_GOPTS_MCAST_QUERIER = 15, + BRIDGE_VLANDB_GOPTS_MCAST_ROUTER_PORTS = 16, + BRIDGE_VLANDB_GOPTS_MCAST_QUERIER_STATE = 17, + BRIDGE_VLANDB_GOPTS_MSTI = 18, + __BRIDGE_VLANDB_GOPTS_MAX = 19, +}; + +enum { + MDB_RTR_TYPE_DISABLED = 0, + MDB_RTR_TYPE_TEMP_QUERY = 1, + MDB_RTR_TYPE_PERM = 2, + MDB_RTR_TYPE_TEMP = 3, +}; + +typedef __be32 rpc_fraghdr; + +struct xdr_skb_reader { + struct sk_buff *skb; + unsigned int offset; + size_t count; + __wsum csum; +}; + +typedef size_t (*xdr_skb_read_actor)(struct xdr_skb_reader *, void *, size_t); + +struct xdr_array2_desc; + +typedef int (*xdr_xcode_elem_t)(struct xdr_array2_desc *, void *); + +struct xdr_array2_desc { + unsigned int elem_size; + unsigned int array_len; + unsigned int array_maxlen; + xdr_xcode_elem_t xcode; +}; + +enum rpc_gss_proc { + RPC_GSS_PROC_DATA = 0, + RPC_GSS_PROC_INIT = 1, + RPC_GSS_PROC_CONTINUE_INIT = 2, + RPC_GSS_PROC_DESTROY = 3, +}; + +enum rpc_gss_svc { + RPC_GSS_SVC_NONE = 1, + RPC_GSS_SVC_INTEGRITY = 2, + RPC_GSS_SVC_PRIVACY = 3, +}; + +struct rpc_gss_wire_cred { + u32 gc_v; + u32 gc_proc; + u32 gc_seq; + u32 gc_svc; + struct xdr_netobj gc_ctx; +}; + +struct gss_cl_ctx { + refcount_t count; + enum rpc_gss_proc gc_proc; + u32 gc_seq; + u32 gc_seq_xmit; + spinlock_t gc_seq_lock; + struct gss_ctx *gc_gss_ctx; + struct xdr_netobj gc_wire_ctx; + struct xdr_netobj gc_acceptor; + u32 gc_win; + long unsigned int gc_expiry; + struct callback_head gc_rcu; +}; + +struct gss_upcall_msg; + +struct gss_cred { + struct rpc_cred gc_base; + enum rpc_gss_svc gc_service; + struct gss_cl_ctx *gc_ctx; + struct gss_upcall_msg *gc_upcall; + const char *gc_principal; + long unsigned int gc_upcall_timestamp; +}; + +struct trace_event_raw_rpcgss_gssapi_event { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + u32 maj_stat; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_import_ctx { + struct trace_entry ent; + int status; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_ctx_class { + struct trace_entry ent; + const void *cred; + long unsigned int service; + u32 __data_loc_principal; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_svc_gssapi_class { + struct trace_entry ent; + u32 xid; + u32 maj_stat; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_svc_wrap_failed { + struct trace_entry ent; + u32 xid; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_svc_unwrap_failed { + struct trace_entry ent; + u32 xid; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_svc_seqno_bad { + struct trace_entry ent; + u32 expected; + u32 received; + u32 xid; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_svc_accept_upcall { + struct trace_entry ent; + u32 minor_status; + long unsigned int major_status; + u32 xid; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_svc_authenticate { + struct trace_entry ent; + u32 seqno; + u32 xid; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_unwrap_failed { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_bad_seqno { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + u32 expected; + u32 received; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_seqno { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + u32 xid; + u32 seqno; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_need_reencode { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + u32 xid; + u32 seq_xmit; + u32 seqno; + bool ret; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_update_slack { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + u32 xid; + const void *auth; + unsigned int rslack; + unsigned int ralign; + unsigned int verfsize; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_svc_seqno_class { + struct trace_entry ent; + u32 xid; + u32 seqno; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_svc_seqno_low { + struct trace_entry ent; + u32 xid; + u32 seqno; + u32 min; + u32 max; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_upcall_msg { + struct trace_entry ent; + u32 __data_loc_msg; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_upcall_result { + struct trace_entry ent; + u32 uid; + int result; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_context { + struct trace_entry ent; + long unsigned int expiry; + long unsigned int now; + unsigned int timeout; + u32 window_size; + int len; + u32 __data_loc_acceptor; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_createauth { + struct trace_entry ent; + unsigned int flavor; + int error; + char __data[0]; +}; + +struct trace_event_raw_rpcgss_oid_to_mech { + struct trace_entry ent; + u32 __data_loc_oid; + char __data[0]; +}; + +struct trace_event_data_offsets_rpcgss_gssapi_event {}; + +struct trace_event_data_offsets_rpcgss_import_ctx {}; + +struct trace_event_data_offsets_rpcgss_ctx_class { + u32 principal; + const void *principal_ptr_; +}; + +struct trace_event_data_offsets_rpcgss_svc_gssapi_class { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_rpcgss_svc_wrap_failed { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_rpcgss_svc_unwrap_failed { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_rpcgss_svc_seqno_bad { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_rpcgss_svc_accept_upcall { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_rpcgss_svc_authenticate { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_rpcgss_unwrap_failed {}; + +struct trace_event_data_offsets_rpcgss_bad_seqno {}; + +struct trace_event_data_offsets_rpcgss_seqno {}; + +struct trace_event_data_offsets_rpcgss_need_reencode {}; + +struct trace_event_data_offsets_rpcgss_update_slack {}; + +struct trace_event_data_offsets_rpcgss_svc_seqno_class {}; + +struct trace_event_data_offsets_rpcgss_svc_seqno_low {}; + +struct trace_event_data_offsets_rpcgss_upcall_msg { + u32 msg; + const void *msg_ptr_; +}; + +struct trace_event_data_offsets_rpcgss_upcall_result {}; + +struct trace_event_data_offsets_rpcgss_context { + u32 acceptor; + const void *acceptor_ptr_; +}; + +struct trace_event_data_offsets_rpcgss_createauth {}; + +struct trace_event_data_offsets_rpcgss_oid_to_mech { + u32 oid; + const void *oid_ptr_; +}; + +typedef void (*btf_trace_rpcgss_import_ctx)(void *, int); + +typedef void (*btf_trace_rpcgss_get_mic)(void *, const struct rpc_task *, u32); + +typedef void (*btf_trace_rpcgss_verify_mic)(void *, const struct rpc_task *, u32); + +typedef void (*btf_trace_rpcgss_wrap)(void *, const struct rpc_task *, u32); + +typedef void (*btf_trace_rpcgss_unwrap)(void *, const struct rpc_task *, u32); + +typedef void (*btf_trace_rpcgss_ctx_init)(void *, const struct gss_cred *); + +typedef void (*btf_trace_rpcgss_ctx_destroy)(void *, const struct gss_cred *); + +typedef void (*btf_trace_rpcgss_svc_wrap)(void *, const struct svc_rqst *, u32); + +typedef void (*btf_trace_rpcgss_svc_unwrap)(void *, const struct svc_rqst *, u32); + +typedef void (*btf_trace_rpcgss_svc_mic)(void *, const struct svc_rqst *, u32); + +typedef void (*btf_trace_rpcgss_svc_get_mic)(void *, const struct svc_rqst *, u32); + +typedef void (*btf_trace_rpcgss_svc_wrap_failed)(void *, const struct svc_rqst *); + +typedef void (*btf_trace_rpcgss_svc_unwrap_failed)(void *, const struct svc_rqst *); + +typedef void (*btf_trace_rpcgss_svc_seqno_bad)(void *, const struct svc_rqst *, u32, u32); + +typedef void (*btf_trace_rpcgss_svc_accept_upcall)(void *, const struct svc_rqst *, u32, u32); + +typedef void (*btf_trace_rpcgss_svc_authenticate)(void *, const struct svc_rqst *, const struct rpc_gss_wire_cred *); + +typedef void (*btf_trace_rpcgss_unwrap_failed)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpcgss_bad_seqno)(void *, const struct rpc_task *, u32, u32); + +typedef void (*btf_trace_rpcgss_seqno)(void *, const struct rpc_task *); + +typedef void (*btf_trace_rpcgss_need_reencode)(void *, const struct rpc_task *, u32, bool); + +typedef void (*btf_trace_rpcgss_update_slack)(void *, const struct rpc_task *, const struct rpc_auth *); + +typedef void (*btf_trace_rpcgss_svc_seqno_large)(void *, const struct svc_rqst *, u32); + +typedef void (*btf_trace_rpcgss_svc_seqno_seen)(void *, const struct svc_rqst *, u32); + +typedef void (*btf_trace_rpcgss_svc_seqno_low)(void *, const struct svc_rqst *, u32, u32, u32); + +typedef void (*btf_trace_rpcgss_upcall_msg)(void *, const char *); + +typedef void (*btf_trace_rpcgss_upcall_result)(void *, u32, int); + +typedef void (*btf_trace_rpcgss_context)(void *, u32, long unsigned int, long unsigned int, unsigned int, unsigned int, const u8 *); + +typedef void (*btf_trace_rpcgss_createauth)(void *, unsigned int, int); + +typedef void (*btf_trace_rpcgss_oid_to_mech)(void *, const char *); + +enum sctp_spp_flags { + SPP_HB_ENABLE = 1, + SPP_HB_DISABLE = 2, + SPP_HB = 3, + SPP_HB_DEMAND = 4, + SPP_PMTUD_ENABLE = 8, + SPP_PMTUD_DISABLE = 16, + SPP_PMTUD = 24, + SPP_SACKDELAY_ENABLE = 32, + SPP_SACKDELAY_DISABLE = 64, + SPP_SACKDELAY = 96, + SPP_HB_TIME_IS_ZERO = 128, + SPP_IPV6_FLOWLABEL = 256, + SPP_DSCP = 512, +}; + +enum sctp_plpmtud_state { + SCTP_PL_DISABLED = 0, + SCTP_PL_BASE = 1, + SCTP_PL_SEARCH = 2, + SCTP_PL_COMPLETE = 3, + SCTP_PL_ERROR = 4, +}; + +enum sctp_xmit { + SCTP_XMIT_OK = 0, + SCTP_XMIT_PMTU_FULL = 1, + SCTP_XMIT_RWND_FULL = 2, + SCTP_XMIT_DELAY = 3, +}; + +struct sctp_output_cb { + struct sk_buff *last; +}; + +struct old_timeval32 { + old_time32_t tv_sec; + s32 tv_usec; +}; + +enum { + TLS_NO_KEYRING = 0, + TLS_NO_PEERID = 0, + TLS_NO_CERT = 0, + TLS_NO_PRIVKEY = 0, +}; + +typedef void (*tls_done_func_t)(void *, int, key_serial_t); + +struct tls_handshake_args { + struct socket *ta_sock; + tls_done_func_t ta_done; + void *ta_data; + const char *ta_peername; + unsigned int ta_timeout_ms; + key_serial_t ta_keyring; + key_serial_t ta_my_cert; + key_serial_t ta_my_privkey; + unsigned int ta_num_peerids; + key_serial_t ta_my_peerids[5]; +}; + +enum { + TLS_ALERT_LEVEL_WARNING = 1, + TLS_ALERT_LEVEL_FATAL = 2, +}; + +enum { + TLS_ALERT_DESC_CLOSE_NOTIFY = 0, + TLS_ALERT_DESC_UNEXPECTED_MESSAGE = 10, + TLS_ALERT_DESC_BAD_RECORD_MAC = 20, + TLS_ALERT_DESC_RECORD_OVERFLOW = 22, + TLS_ALERT_DESC_HANDSHAKE_FAILURE = 40, + TLS_ALERT_DESC_BAD_CERTIFICATE = 42, + TLS_ALERT_DESC_UNSUPPORTED_CERTIFICATE = 43, + TLS_ALERT_DESC_CERTIFICATE_REVOKED = 44, + TLS_ALERT_DESC_CERTIFICATE_EXPIRED = 45, + TLS_ALERT_DESC_CERTIFICATE_UNKNOWN = 46, + TLS_ALERT_DESC_ILLEGAL_PARAMETER = 47, + TLS_ALERT_DESC_UNKNOWN_CA = 48, + TLS_ALERT_DESC_ACCESS_DENIED = 49, + TLS_ALERT_DESC_DECODE_ERROR = 50, + TLS_ALERT_DESC_DECRYPT_ERROR = 51, + TLS_ALERT_DESC_TOO_MANY_CIDS_REQUESTED = 52, + TLS_ALERT_DESC_PROTOCOL_VERSION = 70, + TLS_ALERT_DESC_INSUFFICIENT_SECURITY = 71, + TLS_ALERT_DESC_INTERNAL_ERROR = 80, + TLS_ALERT_DESC_INAPPROPRIATE_FALLBACK = 86, + TLS_ALERT_DESC_USER_CANCELED = 90, + TLS_ALERT_DESC_MISSING_EXTENSION = 109, + TLS_ALERT_DESC_UNSUPPORTED_EXTENSION = 110, + TLS_ALERT_DESC_UNRECOGNIZED_NAME = 112, + TLS_ALERT_DESC_BAD_CERTIFICATE_STATUS_RESPONSE = 113, + TLS_ALERT_DESC_UNKNOWN_PSK_IDENTITY = 115, + TLS_ALERT_DESC_CERTIFICATE_REQUIRED = 116, + TLS_ALERT_DESC_NO_APPLICATION_PROTOCOL = 120, +}; + +enum handshake_handler_class { + HANDSHAKE_HANDLER_CLASS_NONE = 0, + HANDSHAKE_HANDLER_CLASS_TLSHD = 1, + HANDSHAKE_HANDLER_CLASS_MAX = 2, +}; + +enum handshake_msg_type { + HANDSHAKE_MSG_TYPE_UNSPEC = 0, + HANDSHAKE_MSG_TYPE_CLIENTHELLO = 1, + HANDSHAKE_MSG_TYPE_SERVERHELLO = 2, +}; + +enum handshake_auth { + HANDSHAKE_AUTH_UNSPEC = 0, + HANDSHAKE_AUTH_UNAUTH = 1, + HANDSHAKE_AUTH_PSK = 2, + HANDSHAKE_AUTH_X509 = 3, +}; + +enum { + HANDSHAKE_A_X509_CERT = 1, + HANDSHAKE_A_X509_PRIVKEY = 2, + __HANDSHAKE_A_X509_MAX = 3, + HANDSHAKE_A_X509_MAX = 2, +}; + +enum { + HANDSHAKE_A_ACCEPT_SOCKFD = 1, + HANDSHAKE_A_ACCEPT_HANDLER_CLASS = 2, + HANDSHAKE_A_ACCEPT_MESSAGE_TYPE = 3, + HANDSHAKE_A_ACCEPT_TIMEOUT = 4, + HANDSHAKE_A_ACCEPT_AUTH_MODE = 5, + HANDSHAKE_A_ACCEPT_PEER_IDENTITY = 6, + HANDSHAKE_A_ACCEPT_CERTIFICATE = 7, + HANDSHAKE_A_ACCEPT_PEERNAME = 8, + __HANDSHAKE_A_ACCEPT_MAX = 9, + HANDSHAKE_A_ACCEPT_MAX = 8, +}; + +enum { + HANDSHAKE_A_DONE_STATUS = 1, + HANDSHAKE_A_DONE_SOCKFD = 2, + HANDSHAKE_A_DONE_REMOTE_AUTH = 3, + __HANDSHAKE_A_DONE_MAX = 4, + HANDSHAKE_A_DONE_MAX = 3, +}; + +struct handshake_proto; + +struct handshake_req { + struct list_head hr_list; + struct rhash_head hr_rhash; + long unsigned int hr_flags; + const struct handshake_proto *hr_proto; + struct sock *hr_sk; + void (*hr_odestruct)(struct sock *); + char hr_priv[0]; +}; + +struct handshake_proto { + int hp_handler_class; + size_t hp_privsize; + long unsigned int hp_flags; + int (*hp_accept)(struct handshake_req *, struct genl_info *, int); + void (*hp_done)(struct handshake_req *, unsigned int, struct genl_info *); + void (*hp_destroy)(struct handshake_req *); +}; + +enum hr_flags_bits { + HANDSHAKE_F_REQ_COMPLETED = 0, + HANDSHAKE_F_REQ_SESSION = 1, +}; + +enum hp_flags_bits { + HANDSHAKE_F_PROTO_NOTIFY = 0, +}; + +struct tls_handshake_req { + void (*th_consumer_done)(void *, int, key_serial_t); + void *th_consumer_data; + int th_type; + unsigned int th_timeout_ms; + int th_auth_mode; + const char *th_peername; + key_serial_t th_keyring; + key_serial_t th_certificate; + key_serial_t th_privkey; + unsigned int th_num_peerids; + key_serial_t th_peerid[5]; +}; + +struct ghash_key { + be128 k; + u64 h[0]; +}; + +struct ghash_desc_ctx { + u64 digest[2]; + u8 buf[16]; + u32 count; +}; + +struct gcm_aes_ctx { + struct crypto_aes_ctx aes_key; + u8 nonce[4]; + struct ghash_key ghash_key; +}; + +typedef struct { + unsigned int __softirq_pending; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +} irq_cpustat_t; + +struct softirq_action { + void (*action)(void); +}; + +struct trace_event_raw_irq_handler_entry { + struct trace_entry ent; + int irq; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_irq_handler_exit { + struct trace_entry ent; + int irq; + int ret; + char __data[0]; +}; + +struct trace_event_raw_softirq { + struct trace_entry ent; + unsigned int vec; + char __data[0]; +}; + +struct trace_event_raw_tasklet { + struct trace_entry ent; + void *tasklet; + void *func; + char __data[0]; +}; + +struct trace_event_data_offsets_irq_handler_entry { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_irq_handler_exit {}; + +struct trace_event_data_offsets_softirq {}; + +struct trace_event_data_offsets_tasklet {}; + +typedef void (*btf_trace_irq_handler_entry)(void *, int, struct irqaction *); + +typedef void (*btf_trace_irq_handler_exit)(void *, int, struct irqaction *, int); + +typedef void (*btf_trace_softirq_entry)(void *, unsigned int); + +typedef void (*btf_trace_softirq_exit)(void *, unsigned int); + +typedef void (*btf_trace_softirq_raise)(void *, unsigned int); + +typedef void (*btf_trace_tasklet_entry)(void *, struct tasklet_struct *, void *); + +typedef void (*btf_trace_tasklet_exit)(void *, struct tasklet_struct *, void *); + +struct tasklet_head { + struct tasklet_struct *head; + struct tasklet_struct **tail; +}; + +struct pm_qos_request { + struct plist_node node; + struct pm_qos_constraints *qos; +}; + +enum pm_qos_req_action { + PM_QOS_ADD_REQ = 0, + PM_QOS_UPDATE_REQ = 1, + PM_QOS_REMOVE_REQ = 2, +}; + +struct irq_devres { + unsigned int irq; + void *dev_id; +}; + +struct irq_desc_devres { + unsigned int from; + unsigned int cnt; +}; + +enum cc_attr { + CC_ATTR_MEM_ENCRYPT = 0, + CC_ATTR_HOST_MEM_ENCRYPT = 1, + CC_ATTR_GUEST_MEM_ENCRYPT = 2, + CC_ATTR_GUEST_STATE_ENCRYPT = 3, + CC_ATTR_GUEST_UNROLL_STRING_IO = 4, + CC_ATTR_GUEST_SEV_SNP = 5, + CC_ATTR_HOST_SEV_SNP = 6, +}; + +struct io_tlb_area { + long unsigned int used; + unsigned int index; + spinlock_t lock; +}; + +struct io_tlb_slot { + phys_addr_t orig_addr; + size_t alloc_size; + short unsigned int list; + short unsigned int pad_slots; +}; + +struct trace_event_raw_swiotlb_bounced { + struct trace_entry ent; + u32 __data_loc_dev_name; + u64 dma_mask; + dma_addr_t dev_addr; + size_t size; + bool force; + char __data[0]; +}; + +struct trace_event_data_offsets_swiotlb_bounced { + u32 dev_name; + const void *dev_name_ptr_; +}; + +typedef void (*btf_trace_swiotlb_bounced)(void *, struct device *, dma_addr_t, size_t); + +enum clocksource_ids { + CSID_GENERIC = 0, + CSID_ARM_ARCH_COUNTER = 1, + CSID_X86_TSC_EARLY = 2, + CSID_X86_TSC = 3, + CSID_X86_KVM_CLK = 4, + CSID_X86_ART = 5, + CSID_MAX = 6, +}; + +struct clocksource_base; + +struct clocksource { + u64 (*read)(struct clocksource *); + u64 mask; + u32 mult; + u32 shift; + u64 max_idle_ns; + u32 maxadj; + u32 uncertainty_margin; + u64 max_cycles; + u64 max_raw_delta; + const char *name; + struct list_head list; + u32 freq_khz; + int rating; + enum clocksource_ids id; + enum vdso_clock_mode vdso_clock_mode; + long unsigned int flags; + struct clocksource_base *base; + int (*enable)(struct clocksource *); + void (*disable)(struct clocksource *); + void (*suspend)(struct clocksource *); + void (*resume)(struct clocksource *); + void (*mark_unstable)(struct clocksource *); + void (*tick_stable)(struct clocksource *); + struct module *owner; +}; + +struct clocksource_base { + enum clocksource_ids id; + u32 freq_khz; + u64 offset; + u32 numerator; + u32 denominator; +}; + +struct clock_read_data { + u64 epoch_ns; + u64 epoch_cyc; + u64 sched_clock_mask; + u64 (*read_sched_clock)(void); + u32 mult; + u32 shift; +}; + +struct clock_data { + seqcount_latch_t seq; + struct clock_read_data read_data[2]; + ktime_t wrap_kt; + long unsigned int rate; + u64 (*actual_read_sched_clock)(void); +}; + +struct tk_read_base { + struct clocksource *clock; + u64 mask; + u64 cycle_last; + u32 mult; + u32 shift; + u64 xtime_nsec; + ktime_t base; + u64 base_real; +}; + +struct timekeeper { + struct tk_read_base tkr_mono; + struct tk_read_base tkr_raw; + u64 xtime_sec; + long unsigned int ktime_sec; + struct timespec64 wall_to_monotonic; + ktime_t offs_real; + ktime_t offs_boot; + ktime_t offs_tai; + s32 tai_offset; + unsigned int clock_was_set_seq; + u8 cs_was_changed_seq; + ktime_t next_leap_ktime; + u64 raw_sec; + struct timespec64 monotonic_to_boot; + u64 cycle_interval; + u64 xtime_interval; + s64 xtime_remainder; + u64 raw_interval; + u64 ntp_tick; + s64 ntp_error; + u32 ntp_error_shift; + u32 ntp_err_mult; + u32 skip_second_overflow; +}; + +struct robust_list { + struct robust_list *next; +}; + +struct robust_list_head { + struct robust_list list; + long int futex_offset; + struct robust_list *list_op_pending; +}; + +union futex_key { + struct { + u64 i_seq; + long unsigned int pgoff; + unsigned int offset; + } shared; + struct { + union { + struct mm_struct *mm; + u64 __tmp; + }; + long unsigned int address; + unsigned int offset; + } private; + struct { + u64 ptr; + long unsigned int word; + unsigned int offset; + } both; +}; + +struct futex_pi_state { + struct list_head list; + struct rt_mutex_base pi_mutex; + struct task_struct *owner; + refcount_t refcount; + union futex_key key; +}; + +struct hrtimer_sleeper { + struct hrtimer timer; + struct task_struct *task; +}; + +struct futex_waitv { + __u64 val; + __u64 uaddr; + __u32 flags; + __u32 __reserved; +}; + +struct wake_q_head { + struct wake_q_node *first; + struct wake_q_node **lastp; +}; + +struct futex_q; + +typedef void futex_wake_fn(struct wake_q_head *, struct futex_q *); + +struct futex_q { + struct plist_node list; + struct task_struct *task; + spinlock_t *lock_ptr; + futex_wake_fn *wake; + void *wake_data; + union futex_key key; + struct futex_pi_state *pi_state; + struct rt_mutex_waiter *rt_waiter; + union futex_key *requeue_pi_key; + u32 bitset; + atomic_t requeue_state; +}; + +struct futex_vector { + struct futex_waitv w; + struct futex_q q; +}; + +enum { + CGRP_ROOT_NOPREFIX = 2, + CGRP_ROOT_XATTR = 4, + CGRP_ROOT_NS_DELEGATE = 8, + CGRP_ROOT_FAVOR_DYNMODS = 16, + CGRP_ROOT_CPUSET_V2_MODE = 65536, + CGRP_ROOT_MEMORY_LOCAL_EVENTS = 131072, + CGRP_ROOT_MEMORY_RECURSIVE_PROT = 262144, + CGRP_ROOT_MEMORY_HUGETLB_ACCOUNTING = 524288, + CGRP_ROOT_PIDS_LOCAL_EVENTS = 1048576, +}; + +enum { + CFTYPE_ONLY_ON_ROOT = 1, + CFTYPE_NOT_ON_ROOT = 2, + CFTYPE_NS_DELEGATABLE = 4, + CFTYPE_NO_PREFIX = 8, + CFTYPE_WORLD_WRITABLE = 16, + CFTYPE_DEBUG = 32, + __CFTYPE_ONLY_ON_DFL = 65536, + __CFTYPE_NOT_ON_DFL = 131072, + __CFTYPE_ADDED = 262144, +}; + +struct sched_domain_attr { + int relax_domain_level; +}; + +struct fmeter { + int cnt; + int val; + time64_t time; + spinlock_t lock; +}; + +enum prs_errcode { + PERR_NONE = 0, + PERR_INVCPUS = 1, + PERR_INVPARENT = 2, + PERR_NOTPART = 3, + PERR_NOTEXCL = 4, + PERR_NOCPUS = 5, + PERR_HOTPLUG = 6, + PERR_CPUSEMPTY = 7, + PERR_HKEEPING = 8, + PERR_ACCESS = 9, + PERR_REMOTE = 10, +}; + +typedef enum { + CS_ONLINE = 0, + CS_CPU_EXCLUSIVE = 1, + CS_MEM_EXCLUSIVE = 2, + CS_MEM_HARDWALL = 3, + CS_MEMORY_MIGRATE = 4, + CS_SCHED_LOAD_BALANCE = 5, + CS_SPREAD_PAGE = 6, + CS_SPREAD_SLAB = 7, +} cpuset_flagbits_t; + +typedef enum { + FILE_MEMORY_MIGRATE = 0, + FILE_CPULIST = 1, + FILE_MEMLIST = 2, + FILE_EFFECTIVE_CPULIST = 3, + FILE_EFFECTIVE_MEMLIST = 4, + FILE_SUBPARTS_CPULIST = 5, + FILE_EXCLUSIVE_CPULIST = 6, + FILE_EFFECTIVE_XCPULIST = 7, + FILE_ISOLATED_CPULIST = 8, + FILE_CPU_EXCLUSIVE = 9, + FILE_MEM_EXCLUSIVE = 10, + FILE_MEM_HARDWALL = 11, + FILE_SCHED_LOAD_BALANCE = 12, + FILE_PARTITION_ROOT = 13, + FILE_SCHED_RELAX_DOMAIN_LEVEL = 14, + FILE_MEMORY_PRESSURE_ENABLED = 15, + FILE_MEMORY_PRESSURE = 16, + FILE_SPREAD_PAGE = 17, + FILE_SPREAD_SLAB = 18, +} cpuset_filetype_t; + +struct cpuset { + struct cgroup_subsys_state css; + long unsigned int flags; + cpumask_var_t cpus_allowed; + nodemask_t mems_allowed; + cpumask_var_t effective_cpus; + nodemask_t effective_mems; + cpumask_var_t effective_xcpus; + cpumask_var_t exclusive_cpus; + nodemask_t old_mems_allowed; + struct fmeter fmeter; + int attach_in_progress; + int relax_domain_level; + int nr_subparts; + int partition_root_state; + int nr_deadline_tasks; + int nr_migrate_dl_tasks; + u64 sum_migrate_dl_bw; + enum prs_errcode prs_err; + struct cgroup_file partition_file; + struct list_head remote_sibling; + struct uf_node node; +}; + +struct tmpmasks { + cpumask_var_t addmask; + cpumask_var_t delmask; + cpumask_var_t new_cpus; +}; + +enum partition_cmd { + partcmd_enable = 0, + partcmd_enablei = 1, + partcmd_disable = 2, + partcmd_update = 3, + partcmd_invalidate = 4, +}; + +struct cpuset_migrate_mm_work { + struct work_struct work; + struct mm_struct *mm; + nodemask_t from; + nodemask_t to; +}; + +struct trace_bprintk_fmt { + struct list_head list; + const char *fmt; +}; + +enum { + BPF_F_UPROBE_MULTI_RETURN = 1, +}; + +enum { + BPF_F_INDEX_MASK = 4294967295ULL, + BPF_F_CURRENT_CPU = 4294967295ULL, + BPF_F_CTXLEN_MASK = 4503595332403200ULL, +}; + +enum { + BPF_F_GET_BRANCH_RECORDS_SIZE = 1, +}; + +struct bpf_perf_event_value { + __u64 counter; + __u64 enabled; + __u64 running; +}; + +struct bpf_raw_tracepoint_args { + __u64 args[0]; +}; + +struct btf_ptr { + void *ptr; + __u32 type_id; + __u32 flags; +}; + +enum { + BTF_F_COMPACT = 1, + BTF_F_NONAME = 2, + BTF_F_PTR_RAW = 4, + BTF_F_ZERO = 8, +}; + +struct btf_id_set { + u32 cnt; + u32 ids[0]; +}; + +struct bpf_array_aux { + struct list_head poke_progs; + struct bpf_map *map; + struct mutex poke_mutex; + struct work_struct work; +}; + +struct bpf_array { + struct bpf_map map; + u32 elem_size; + u32 index_mask; + struct bpf_array_aux *aux; + union { + struct { + struct {} __empty_value; + char value[0]; + }; + struct { + struct {} __empty_ptrs; + void *ptrs[0]; + }; + struct { + struct {} __empty_pptrs; + void *pptrs[0]; + }; + }; +}; + +struct bpf_event_entry { + struct perf_event *event; + struct file *perf_file; + struct file *map_file; + struct callback_head rcu; +}; + +typedef long unsigned int (*bpf_ctx_copy_t)(void *, const void *, long unsigned int, long unsigned int); + +typedef u32 (*bpf_prog_run_fn)(const struct bpf_prog *, const void *); + +struct bpf_bprintf_data { + u32 *bin_args; + char *buf; + bool get_bin_args; + bool get_buf; +}; + +struct bpf_key { + struct key *key; + bool has_ref; +}; + +struct bpf_perf_event_data { + bpf_user_pt_regs_t regs; + __u64 sample_period; + __u64 addr; +}; + +enum perf_type_id { + PERF_TYPE_HARDWARE = 0, + PERF_TYPE_SOFTWARE = 1, + PERF_TYPE_TRACEPOINT = 2, + PERF_TYPE_HW_CACHE = 3, + PERF_TYPE_RAW = 4, + PERF_TYPE_BREAKPOINT = 5, + PERF_TYPE_MAX = 6, +}; + +struct perf_event_query_bpf { + __u32 ids_len; + __u32 prog_cnt; + __u32 ids[0]; +}; + +typedef int perf_snapshot_branch_stack_t(struct perf_branch_entry *, unsigned int); + +struct trace_uprobe; + +struct uprobe_dispatch_data { + struct trace_uprobe *tu; + long unsigned int bp_addr; +}; + +struct trace_event_raw_bpf_trace_printk { + struct trace_entry ent; + u32 __data_loc_bpf_string; + char __data[0]; +}; + +struct trace_event_data_offsets_bpf_trace_printk { + u32 bpf_string; + const void *bpf_string_ptr_; +}; + +typedef void (*btf_trace_bpf_trace_printk)(void *, const char *); + +struct bpf_trace_module { + struct module *module; + struct list_head list; +}; + +typedef u64 (*btf_bpf_override_return)(struct pt_regs *, long unsigned int); + +typedef u64 (*btf_bpf_probe_read_user)(void *, u32, const void *); + +typedef u64 (*btf_bpf_probe_read_user_str)(void *, u32, const void *); + +typedef u64 (*btf_bpf_probe_read_kernel)(void *, u32, const void *); + +typedef u64 (*btf_bpf_probe_read_kernel_str)(void *, u32, const void *); + +typedef u64 (*btf_bpf_probe_read_compat)(void *, u32, const void *); + +typedef u64 (*btf_bpf_probe_read_compat_str)(void *, u32, const void *); + +typedef u64 (*btf_bpf_probe_write_user)(void *, const void *, u32); + +typedef u64 (*btf_bpf_trace_printk)(char *, u32, u64, u64, u64); + +typedef u64 (*btf_bpf_trace_vprintk)(char *, u32, const void *, u32); + +typedef u64 (*btf_bpf_seq_printf)(struct seq_file *, char *, u32, const void *, u32); + +typedef u64 (*btf_bpf_seq_write)(struct seq_file *, const void *, u32); + +typedef u64 (*btf_bpf_seq_printf_btf)(struct seq_file *, struct btf_ptr *, u32, u64); + +typedef u64 (*btf_bpf_perf_event_read)(struct bpf_map *, u64); + +typedef u64 (*btf_bpf_perf_event_read_value)(struct bpf_map *, u64, struct bpf_perf_event_value *, u32); + +struct bpf_trace_sample_data { + struct perf_sample_data sds[3]; +}; + +typedef u64 (*btf_bpf_perf_event_output)(struct pt_regs *, struct bpf_map *, u64, void *, u64); + +struct bpf_nested_pt_regs { + struct pt_regs regs[3]; +}; + +typedef u64 (*btf_bpf_get_current_task)(void); + +typedef u64 (*btf_bpf_get_current_task_btf)(void); + +typedef u64 (*btf_bpf_task_pt_regs)(struct task_struct *); + +struct send_signal_irq_work { + struct irq_work irq_work; + struct task_struct *task; + u32 sig; + enum pid_type type; +}; + +typedef u64 (*btf_bpf_send_signal)(u32); + +typedef u64 (*btf_bpf_send_signal_thread)(u32); + +typedef u64 (*btf_bpf_d_path)(struct path *, char *, u32); + +typedef u64 (*btf_bpf_snprintf_btf)(char *, u32, struct btf_ptr *, u32, u64); + +typedef u64 (*btf_bpf_get_func_ip_tracing)(void *); + +typedef u64 (*btf_bpf_get_func_ip_kprobe)(struct pt_regs *); + +typedef u64 (*btf_bpf_get_func_ip_kprobe_multi)(struct pt_regs *); + +typedef u64 (*btf_bpf_get_attach_cookie_kprobe_multi)(struct pt_regs *); + +typedef u64 (*btf_bpf_get_func_ip_uprobe_multi)(struct pt_regs *); + +typedef u64 (*btf_bpf_get_attach_cookie_uprobe_multi)(struct pt_regs *); + +typedef u64 (*btf_bpf_get_attach_cookie_trace)(void *); + +typedef u64 (*btf_bpf_get_attach_cookie_pe)(struct bpf_perf_event_data_kern *); + +typedef u64 (*btf_bpf_get_attach_cookie_tracing)(void *); + +typedef u64 (*btf_bpf_get_branch_snapshot)(void *, u32, u64); + +typedef u64 (*btf_get_func_arg)(void *, u32, u64 *); + +typedef u64 (*btf_get_func_ret)(void *, u64 *); + +typedef u64 (*btf_get_func_arg_cnt)(void *); + +typedef u64 (*btf_bpf_perf_event_output_tp)(void *, struct bpf_map *, u64, void *, u64); + +typedef u64 (*btf_bpf_get_stackid_tp)(void *, struct bpf_map *, u64); + +typedef u64 (*btf_bpf_get_stack_tp)(void *, void *, u32, u64); + +typedef u64 (*btf_bpf_perf_prog_read_value)(struct bpf_perf_event_data_kern *, struct bpf_perf_event_value *, u32); + +typedef u64 (*btf_bpf_read_branch_records)(struct bpf_perf_event_data_kern *, void *, u32, u64); + +struct bpf_raw_tp_regs { + struct pt_regs regs[3]; +}; + +typedef u64 (*btf_bpf_perf_event_output_raw_tp)(struct bpf_raw_tracepoint_args *, struct bpf_map *, u64, void *, u64); + +typedef u64 (*btf_bpf_get_stackid_raw_tp)(struct bpf_raw_tracepoint_args *, struct bpf_map *, u64); + +typedef u64 (*btf_bpf_get_stack_raw_tp)(struct bpf_raw_tracepoint_args *, void *, u32, u64); + +struct bpf_session_run_ctx { + struct bpf_run_ctx run_ctx; + bool is_return; + void *data; +}; + +struct bpf_uprobe_multi_link; + +struct bpf_uprobe { + struct bpf_uprobe_multi_link *link; + loff_t offset; + long unsigned int ref_ctr_offset; + u64 cookie; + struct uprobe *uprobe; + struct uprobe_consumer consumer; +}; + +struct bpf_uprobe_multi_link { + struct path path; + struct bpf_link link; + u32 cnt; + u32 flags; + struct bpf_uprobe *uprobes; + struct task_struct *task; +}; + +struct bpf_uprobe_multi_run_ctx { + struct bpf_run_ctx run_ctx; + long unsigned int entry_ip; + struct bpf_uprobe *uprobe; +}; + +typedef void (*swap_r_func_t)(void *, void *, int, const void *); + +typedef int (*cmp_r_func_t)(const void *, const void *, const void *); + +struct btf_enum { + __u32 name_off; + __s32 val; +}; + +struct btf_array { + __u32 type; + __u32 index_type; + __u32 nelems; +}; + +enum { + BTF_VAR_STATIC = 0, + BTF_VAR_GLOBAL_ALLOCATED = 1, + BTF_VAR_GLOBAL_EXTERN = 2, +}; + +enum btf_func_linkage { + BTF_FUNC_STATIC = 0, + BTF_FUNC_GLOBAL = 1, + BTF_FUNC_EXTERN = 2, +}; + +struct btf_var { + __u32 linkage; +}; + +struct btf_var_secinfo { + __u32 type; + __u32 offset; + __u32 size; +}; + +struct btf_decl_tag { + __s32 component_idx; +}; + +struct btf_enum64 { + __u32 name_off; + __u32 val_lo32; + __u32 val_hi32; +}; + +struct sk_msg_md { + union { + void *data; + }; + union { + void *data_end; + }; + __u32 family; + __u32 remote_ip4; + __u32 local_ip4; + __u32 remote_ip6[4]; + __u32 local_ip6[4]; + __u32 remote_port; + __u32 local_port; + __u32 size; + union { + struct bpf_sock *sk; + }; +}; + +struct sk_reuseport_md { + union { + void *data; + }; + union { + void *data_end; + }; + __u32 len; + __u32 eth_protocol; + __u32 ip_protocol; + __u32 bind_inany; + __u32 hash; + union { + struct bpf_sock *sk; + }; + union { + struct bpf_sock *migrating_sk; + }; +}; + +struct bpf_btf_info { + __u64 btf; + __u32 btf_size; + __u32 id; + __u64 name; + __u32 name_len; + __u32 kernel_btf; +}; + +struct bpf_sock_addr { + __u32 user_family; + __u32 user_ip4; + __u32 user_ip6[4]; + __u32 user_port; + __u32 family; + __u32 type; + __u32 protocol; + __u32 msg_src_ip4; + __u32 msg_src_ip6[4]; + union { + struct bpf_sock *sk; + }; +}; + +struct bpf_sock_ops { + __u32 op; + union { + __u32 args[4]; + __u32 reply; + __u32 replylong[4]; + }; + __u32 family; + __u32 remote_ip4; + __u32 local_ip4; + __u32 remote_ip6[4]; + __u32 local_ip6[4]; + __u32 remote_port; + __u32 local_port; + __u32 is_fullsock; + __u32 snd_cwnd; + __u32 srtt_us; + __u32 bpf_sock_ops_cb_flags; + __u32 state; + __u32 rtt_min; + __u32 snd_ssthresh; + __u32 rcv_nxt; + __u32 snd_nxt; + __u32 snd_una; + __u32 mss_cache; + __u32 ecn_flags; + __u32 rate_delivered; + __u32 rate_interval_us; + __u32 packets_out; + __u32 retrans_out; + __u32 total_retrans; + __u32 segs_in; + __u32 data_segs_in; + __u32 segs_out; + __u32 data_segs_out; + __u32 lost_out; + __u32 sacked_out; + __u32 sk_txhash; + __u64 bytes_received; + __u64 bytes_acked; + union { + struct bpf_sock *sk; + }; + union { + void *skb_data; + }; + union { + void *skb_data_end; + }; + __u32 skb_len; + __u32 skb_tcp_flags; + __u64 skb_hwtstamp; +}; + +struct bpf_cgroup_dev_ctx { + __u32 access_type; + __u32 major; + __u32 minor; +}; + +struct bpf_sysctl { + __u32 write; + __u32 file_pos; +}; + +struct bpf_sockopt { + union { + struct bpf_sock *sk; + }; + union { + void *optval; + }; + union { + void *optval_end; + }; + __s32 level; + __s32 optname; + __s32 optlen; + __s32 retval; +}; + +enum bpf_core_relo_kind { + BPF_CORE_FIELD_BYTE_OFFSET = 0, + BPF_CORE_FIELD_BYTE_SIZE = 1, + BPF_CORE_FIELD_EXISTS = 2, + BPF_CORE_FIELD_SIGNED = 3, + BPF_CORE_FIELD_LSHIFT_U64 = 4, + BPF_CORE_FIELD_RSHIFT_U64 = 5, + BPF_CORE_TYPE_ID_LOCAL = 6, + BPF_CORE_TYPE_ID_TARGET = 7, + BPF_CORE_TYPE_EXISTS = 8, + BPF_CORE_TYPE_SIZE = 9, + BPF_CORE_ENUMVAL_EXISTS = 10, + BPF_CORE_ENUMVAL_VALUE = 11, + BPF_CORE_TYPE_MATCHES = 12, +}; + +struct bpf_core_relo { + __u32 insn_off; + __u32 type_id; + __u32 access_str_off; + enum bpf_core_relo_kind kind; +}; + +struct btf_struct_metas { + u32 cnt; + struct btf_struct_meta types[0]; +}; + +enum { + BTF_FIELDS_MAX = 11, +}; + +struct bpf_core_ctx { + struct bpf_verifier_log *log; + const struct btf *btf; +}; + +struct sk_reuseport_kern { + struct sk_buff *skb; + struct sock *sk; + struct sock *selected_sk; + struct sock *migrating_sk; + void *data_end; + u32 hash; + u32 reuseport_id; + bool bind_inany; +}; + +struct bpf_sock_addr_kern { + struct sock *sk; + struct sockaddr *uaddr; + u64 tmp_reg; + void *t_ctx; + u32 uaddrlen; +}; + +struct bpf_sysctl_kern { + struct ctl_table_header *head; + const struct ctl_table *table; + void *cur_val; + size_t cur_len; + void *new_val; + size_t new_len; + int new_updated; + int write; + loff_t *ppos; + u64 tmp_reg; +}; + +struct bpf_sockopt_kern { + struct sock *sk; + u8 *optval; + u8 *optval_end; + s32 level; + s32 optname; + s32 optlen; + struct task_struct *current_task; + u64 tmp_reg; +}; + +struct bpf_core_cand { + const struct btf *btf; + __u32 id; +}; + +struct bpf_core_cand_list { + struct bpf_core_cand *cands; + int len; +}; + +struct bpf_core_accessor { + __u32 type_id; + __u32 idx; + const char *name; +}; + +struct bpf_core_spec { + const struct btf *btf; + struct bpf_core_accessor spec[64]; + __u32 root_type_id; + enum bpf_core_relo_kind relo_kind; + int len; + int raw_spec[64]; + int raw_len; + __u32 bit_offset; +}; + +struct bpf_core_relo_res { + __u64 orig_val; + __u64 new_val; + bool poison; + bool validate; + bool fail_memsz_adjust; + __u32 orig_sz; + __u32 orig_type_id; + __u32 new_sz; + __u32 new_type_id; +}; + +enum btf_kfunc_hook { + BTF_KFUNC_HOOK_COMMON = 0, + BTF_KFUNC_HOOK_XDP = 1, + BTF_KFUNC_HOOK_TC = 2, + BTF_KFUNC_HOOK_STRUCT_OPS = 3, + BTF_KFUNC_HOOK_TRACING = 4, + BTF_KFUNC_HOOK_SYSCALL = 5, + BTF_KFUNC_HOOK_FMODRET = 6, + BTF_KFUNC_HOOK_CGROUP = 7, + BTF_KFUNC_HOOK_SCHED_ACT = 8, + BTF_KFUNC_HOOK_SK_SKB = 9, + BTF_KFUNC_HOOK_SOCKET_FILTER = 10, + BTF_KFUNC_HOOK_LWT = 11, + BTF_KFUNC_HOOK_NETFILTER = 12, + BTF_KFUNC_HOOK_KPROBE = 13, + BTF_KFUNC_HOOK_MAX = 14, +}; + +enum { + BTF_KFUNC_SET_MAX_CNT = 256, + BTF_DTOR_KFUNC_MAX_CNT = 256, + BTF_KFUNC_FILTER_MAX_CNT = 16, +}; + +struct btf_kfunc_hook_filter { + btf_kfunc_filter_t filters[16]; + u32 nr_filters; +}; + +struct btf_kfunc_set_tab { + struct btf_id_set8 *sets[14]; + struct btf_kfunc_hook_filter hook_filters[14]; +}; + +struct btf_id_dtor_kfunc_tab { + u32 cnt; + struct btf_id_dtor_kfunc dtors[0]; +}; + +struct btf_struct_ops_tab { + u32 cnt; + u32 capacity; + struct bpf_struct_ops_desc ops[0]; +}; + +enum verifier_phase { + CHECK_META = 0, + CHECK_TYPE = 1, +}; + +struct resolve_vertex { + const struct btf_type *t; + u32 type_id; + u16 next_member; +}; + +enum visit_state { + NOT_VISITED = 0, + VISITED = 1, + RESOLVED = 2, +}; + +enum resolve_mode { + RESOLVE_TBD = 0, + RESOLVE_PTR = 1, + RESOLVE_STRUCT_OR_ARRAY = 2, +}; + +struct btf_sec_info { + u32 off; + u32 len; +}; + +struct btf_verifier_env { + struct btf *btf; + u8 *visit_states; + struct resolve_vertex stack[32]; + struct bpf_verifier_log log; + u32 log_type_id; + u32 top_stack; + enum verifier_phase phase; + enum resolve_mode resolve_mode; +}; + +struct btf_show { + u64 flags; + void *target; + void (*showfn)(struct btf_show *, const char *, va_list); + const struct btf *btf; + struct { + u8 depth; + u8 depth_to_show; + u8 depth_check; + u8 array_member: 1; + u8 array_terminated: 1; + u16 array_encoding; + u32 type_id; + int status; + const struct btf_type *type; + const struct btf_member *member; + char name[80]; + } state; + struct { + u32 size; + void *head; + void *data; + u8 safe[32]; + } obj; +}; + +struct btf_kind_operations { + s32 (*check_meta)(struct btf_verifier_env *, const struct btf_type *, u32); + int (*resolve)(struct btf_verifier_env *, const struct resolve_vertex *); + int (*check_member)(struct btf_verifier_env *, const struct btf_type *, const struct btf_member *, const struct btf_type *); + int (*check_kflag_member)(struct btf_verifier_env *, const struct btf_type *, const struct btf_member *, const struct btf_type *); + void (*log_details)(struct btf_verifier_env *, const struct btf_type *); + void (*show)(const struct btf *, const struct btf_type *, u32, void *, u8, struct btf_show *); +}; + +enum { + BTF_FIELD_IGNORE = 0, + BTF_FIELD_FOUND = 1, +}; + +struct btf_field_info { + enum btf_field_type type; + u32 off; + union { + struct { + u32 type_id; + } kptr; + struct { + const char *node_name; + u32 value_btf_id; + } graph_root; + }; +}; + +struct bpf_ctx_convert { + struct __sk_buff BPF_PROG_TYPE_SOCKET_FILTER_prog; + struct sk_buff BPF_PROG_TYPE_SOCKET_FILTER_kern; + struct __sk_buff BPF_PROG_TYPE_SCHED_CLS_prog; + struct sk_buff BPF_PROG_TYPE_SCHED_CLS_kern; + struct __sk_buff BPF_PROG_TYPE_SCHED_ACT_prog; + struct sk_buff BPF_PROG_TYPE_SCHED_ACT_kern; + struct xdp_md BPF_PROG_TYPE_XDP_prog; + struct xdp_buff BPF_PROG_TYPE_XDP_kern; + struct __sk_buff BPF_PROG_TYPE_CGROUP_SKB_prog; + struct sk_buff BPF_PROG_TYPE_CGROUP_SKB_kern; + struct bpf_sock BPF_PROG_TYPE_CGROUP_SOCK_prog; + struct sock BPF_PROG_TYPE_CGROUP_SOCK_kern; + struct bpf_sock_addr BPF_PROG_TYPE_CGROUP_SOCK_ADDR_prog; + struct bpf_sock_addr_kern BPF_PROG_TYPE_CGROUP_SOCK_ADDR_kern; + struct __sk_buff BPF_PROG_TYPE_LWT_IN_prog; + struct sk_buff BPF_PROG_TYPE_LWT_IN_kern; + struct __sk_buff BPF_PROG_TYPE_LWT_OUT_prog; + struct sk_buff BPF_PROG_TYPE_LWT_OUT_kern; + struct __sk_buff BPF_PROG_TYPE_LWT_XMIT_prog; + struct sk_buff BPF_PROG_TYPE_LWT_XMIT_kern; + struct __sk_buff BPF_PROG_TYPE_LWT_SEG6LOCAL_prog; + struct sk_buff BPF_PROG_TYPE_LWT_SEG6LOCAL_kern; + struct bpf_sock_ops BPF_PROG_TYPE_SOCK_OPS_prog; + struct bpf_sock_ops_kern BPF_PROG_TYPE_SOCK_OPS_kern; + struct __sk_buff BPF_PROG_TYPE_SK_SKB_prog; + struct sk_buff BPF_PROG_TYPE_SK_SKB_kern; + struct sk_msg_md BPF_PROG_TYPE_SK_MSG_prog; + struct sk_msg BPF_PROG_TYPE_SK_MSG_kern; + struct __sk_buff BPF_PROG_TYPE_FLOW_DISSECTOR_prog; + struct bpf_flow_dissector BPF_PROG_TYPE_FLOW_DISSECTOR_kern; + bpf_user_pt_regs_t BPF_PROG_TYPE_KPROBE_prog; + struct pt_regs BPF_PROG_TYPE_KPROBE_kern; + __u64 BPF_PROG_TYPE_TRACEPOINT_prog; + u64 BPF_PROG_TYPE_TRACEPOINT_kern; + struct bpf_perf_event_data BPF_PROG_TYPE_PERF_EVENT_prog; + struct bpf_perf_event_data_kern BPF_PROG_TYPE_PERF_EVENT_kern; + struct bpf_raw_tracepoint_args BPF_PROG_TYPE_RAW_TRACEPOINT_prog; + u64 BPF_PROG_TYPE_RAW_TRACEPOINT_kern; + struct bpf_raw_tracepoint_args BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE_prog; + u64 BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE_kern; + void *BPF_PROG_TYPE_TRACING_prog; + void *BPF_PROG_TYPE_TRACING_kern; + struct bpf_cgroup_dev_ctx BPF_PROG_TYPE_CGROUP_DEVICE_prog; + struct bpf_cgroup_dev_ctx BPF_PROG_TYPE_CGROUP_DEVICE_kern; + struct bpf_sysctl BPF_PROG_TYPE_CGROUP_SYSCTL_prog; + struct bpf_sysctl_kern BPF_PROG_TYPE_CGROUP_SYSCTL_kern; + struct bpf_sockopt BPF_PROG_TYPE_CGROUP_SOCKOPT_prog; + struct bpf_sockopt_kern BPF_PROG_TYPE_CGROUP_SOCKOPT_kern; + struct sk_reuseport_md BPF_PROG_TYPE_SK_REUSEPORT_prog; + struct sk_reuseport_kern BPF_PROG_TYPE_SK_REUSEPORT_kern; + struct bpf_sk_lookup BPF_PROG_TYPE_SK_LOOKUP_prog; + struct bpf_sk_lookup_kern BPF_PROG_TYPE_SK_LOOKUP_kern; + void *BPF_PROG_TYPE_STRUCT_OPS_prog; + void *BPF_PROG_TYPE_STRUCT_OPS_kern; + void *BPF_PROG_TYPE_EXT_prog; + void *BPF_PROG_TYPE_EXT_kern; + void *BPF_PROG_TYPE_LSM_prog; + void *BPF_PROG_TYPE_LSM_kern; + void *BPF_PROG_TYPE_SYSCALL_prog; + void *BPF_PROG_TYPE_SYSCALL_kern; + struct bpf_nf_ctx BPF_PROG_TYPE_NETFILTER_prog; + struct bpf_nf_ctx BPF_PROG_TYPE_NETFILTER_kern; +}; + +enum { + __ctx_convertBPF_PROG_TYPE_SOCKET_FILTER = 0, + __ctx_convertBPF_PROG_TYPE_SCHED_CLS = 1, + __ctx_convertBPF_PROG_TYPE_SCHED_ACT = 2, + __ctx_convertBPF_PROG_TYPE_XDP = 3, + __ctx_convertBPF_PROG_TYPE_CGROUP_SKB = 4, + __ctx_convertBPF_PROG_TYPE_CGROUP_SOCK = 5, + __ctx_convertBPF_PROG_TYPE_CGROUP_SOCK_ADDR = 6, + __ctx_convertBPF_PROG_TYPE_LWT_IN = 7, + __ctx_convertBPF_PROG_TYPE_LWT_OUT = 8, + __ctx_convertBPF_PROG_TYPE_LWT_XMIT = 9, + __ctx_convertBPF_PROG_TYPE_LWT_SEG6LOCAL = 10, + __ctx_convertBPF_PROG_TYPE_SOCK_OPS = 11, + __ctx_convertBPF_PROG_TYPE_SK_SKB = 12, + __ctx_convertBPF_PROG_TYPE_SK_MSG = 13, + __ctx_convertBPF_PROG_TYPE_FLOW_DISSECTOR = 14, + __ctx_convertBPF_PROG_TYPE_KPROBE = 15, + __ctx_convertBPF_PROG_TYPE_TRACEPOINT = 16, + __ctx_convertBPF_PROG_TYPE_PERF_EVENT = 17, + __ctx_convertBPF_PROG_TYPE_RAW_TRACEPOINT = 18, + __ctx_convertBPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE = 19, + __ctx_convertBPF_PROG_TYPE_TRACING = 20, + __ctx_convertBPF_PROG_TYPE_CGROUP_DEVICE = 21, + __ctx_convertBPF_PROG_TYPE_CGROUP_SYSCTL = 22, + __ctx_convertBPF_PROG_TYPE_CGROUP_SOCKOPT = 23, + __ctx_convertBPF_PROG_TYPE_SK_REUSEPORT = 24, + __ctx_convertBPF_PROG_TYPE_SK_LOOKUP = 25, + __ctx_convertBPF_PROG_TYPE_STRUCT_OPS = 26, + __ctx_convertBPF_PROG_TYPE_EXT = 27, + __ctx_convertBPF_PROG_TYPE_LSM = 28, + __ctx_convertBPF_PROG_TYPE_SYSCALL = 29, + __ctx_convertBPF_PROG_TYPE_NETFILTER = 30, + __ctx_convert_unused = 31, +}; + +struct bpf_raw_tp_null_args { + const char *func; + u64 mask; +}; + +enum bpf_struct_walk_result { + WALK_SCALAR = 0, + WALK_PTR = 1, + WALK_STRUCT = 2, +}; + +struct bpf_cand_cache { + const char *name; + u32 name_len; + u16 kind; + u16 cnt; + struct { + const struct btf *btf; + u32 id; + } cands[0]; +}; + +enum btf_arg_tag { + ARG_TAG_CTX = 1, + ARG_TAG_NONNULL = 2, + ARG_TAG_TRUSTED = 4, + ARG_TAG_NULLABLE = 8, + ARG_TAG_ARENA = 16, +}; + +struct btf_show_snprintf { + struct btf_show show; + int len_left; + int len; +}; + +enum { + BTF_MODULE_F_LIVE = 1, +}; + +struct btf_module { + struct list_head list; + struct module *module; + struct btf *btf; + struct bin_attribute *sysfs_attr; + int flags; +}; + +typedef u64 (*btf_bpf_btf_find_by_name_kind)(char *, int, u32, int); + +enum { + XA_CHECK_SCHED = 4096, +}; + +struct wb_lock_cookie { + bool locked; + long unsigned int flags; +}; + +typedef int (*writepage_t)(struct folio *, struct writeback_control *, void *); + +struct dirty_throttle_control { + struct wb_domain *dom; + struct dirty_throttle_control *gdtc; + struct bdi_writeback *wb; + struct fprop_local_percpu *wb_completions; + long unsigned int avail; + long unsigned int dirty; + long unsigned int thresh; + long unsigned int bg_thresh; + long unsigned int wb_dirty; + long unsigned int wb_thresh; + long unsigned int wb_bg_thresh; + long unsigned int pos_ratio; + bool freerun; + bool dirty_exceeded; +}; + +struct vmap_area { + long unsigned int va_start; + long unsigned int va_end; + struct rb_node rb_node; + struct list_head list; + union { + long unsigned int subtree_max_size; + struct vm_struct *vm; + }; + long unsigned int flags; +}; + +typedef unsigned int kasan_vmalloc_flags_t; + +enum memcg_stat_item { + MEMCG_SWAP = 44, + MEMCG_SOCK = 45, + MEMCG_PERCPU_B = 46, + MEMCG_VMALLOC = 47, + MEMCG_KMEM = 48, + MEMCG_ZSWAP_B = 49, + MEMCG_ZSWAPPED = 50, + MEMCG_NR_STAT = 51, +}; + +struct trace_event_raw_alloc_vmap_area { + struct trace_entry ent; + long unsigned int addr; + long unsigned int size; + long unsigned int align; + long unsigned int vstart; + long unsigned int vend; + int failed; + char __data[0]; +}; + +struct trace_event_raw_purge_vmap_area_lazy { + struct trace_entry ent; + long unsigned int start; + long unsigned int end; + unsigned int npurged; + char __data[0]; +}; + +struct trace_event_raw_free_vmap_area_noflush { + struct trace_entry ent; + long unsigned int va_start; + long unsigned int nr_lazy; + long unsigned int nr_lazy_max; + char __data[0]; +}; + +struct trace_event_data_offsets_alloc_vmap_area {}; + +struct trace_event_data_offsets_purge_vmap_area_lazy {}; + +struct trace_event_data_offsets_free_vmap_area_noflush {}; + +typedef void (*btf_trace_alloc_vmap_area)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int); + +typedef void (*btf_trace_purge_vmap_area_lazy)(void *, long unsigned int, long unsigned int, unsigned int); + +typedef void (*btf_trace_free_vmap_area_noflush)(void *, long unsigned int, long unsigned int, long unsigned int); + +struct vfree_deferred { + struct llist_head list; + struct work_struct wq; +}; + +struct rb_list { + struct rb_root root; + struct list_head head; + spinlock_t lock; +}; + +struct vmap_pool { + struct list_head head; + long unsigned int len; +}; + +struct vmap_node { + struct vmap_pool pool[256]; + spinlock_t pool_lock; + bool skip_populate; + struct rb_list busy; + struct rb_list lazy; + struct list_head purge_list; + struct work_struct purge_work; + long unsigned int nr_purged; +}; + +enum fit_type { + NOTHING_FIT = 0, + FL_FIT_TYPE = 1, + LE_FIT_TYPE = 2, + RE_FIT_TYPE = 3, + NE_FIT_TYPE = 4, +}; + +struct vmap_block_queue { + spinlock_t lock; + struct list_head free; + struct xarray vmap_blocks; +}; + +struct vmap_block { + spinlock_t lock; + struct vmap_area *va; + long unsigned int free; + long unsigned int dirty; + long unsigned int used_map[16]; + long unsigned int dirty_min; + long unsigned int dirty_max; + struct list_head free_list; + struct callback_head callback_head; + struct list_head purge; + unsigned int cpu; +}; + +struct anon_vma_chain { + struct vm_area_struct *vma; + struct anon_vma *anon_vma; + struct list_head same_vma; + struct rb_node rb; + long unsigned int rb_subtree_last; +}; + +struct rmap_walk_control { + void *arg; + bool try_lock; + bool contended; + bool (*rmap_one)(struct folio *, struct vm_area_struct *, long unsigned int, void *); + int (*done)(struct folio *); + struct anon_vma * (*anon_lock)(struct folio *, struct rmap_walk_control *); + bool (*invalid_vma)(struct vm_area_struct *, void *); +}; + +struct trace_event_raw_ksm_scan_template { + struct trace_entry ent; + int seq; + u32 rmap_entries; + char __data[0]; +}; + +struct trace_event_raw_ksm_enter_exit_template { + struct trace_entry ent; + void *mm; + char __data[0]; +}; + +struct trace_event_raw_ksm_merge_one_page { + struct trace_entry ent; + long unsigned int pfn; + void *rmap_item; + void *mm; + int err; + char __data[0]; +}; + +struct trace_event_raw_ksm_merge_with_ksm_page { + struct trace_entry ent; + void *ksm_page; + long unsigned int pfn; + void *rmap_item; + void *mm; + int err; + char __data[0]; +}; + +struct trace_event_raw_ksm_remove_ksm_page { + struct trace_entry ent; + long unsigned int pfn; + char __data[0]; +}; + +struct trace_event_raw_ksm_remove_rmap_item { + struct trace_entry ent; + long unsigned int pfn; + void *rmap_item; + void *mm; + char __data[0]; +}; + +struct trace_event_raw_ksm_advisor { + struct trace_entry ent; + s64 scan_time; + long unsigned int pages_to_scan; + unsigned int cpu_percent; + char __data[0]; +}; + +struct trace_event_data_offsets_ksm_scan_template {}; + +struct trace_event_data_offsets_ksm_enter_exit_template {}; + +struct trace_event_data_offsets_ksm_merge_one_page {}; + +struct trace_event_data_offsets_ksm_merge_with_ksm_page {}; + +struct trace_event_data_offsets_ksm_remove_ksm_page {}; + +struct trace_event_data_offsets_ksm_remove_rmap_item {}; + +struct trace_event_data_offsets_ksm_advisor {}; + +typedef void (*btf_trace_ksm_start_scan)(void *, int, u32); + +typedef void (*btf_trace_ksm_stop_scan)(void *, int, u32); + +typedef void (*btf_trace_ksm_enter)(void *, void *); + +typedef void (*btf_trace_ksm_exit)(void *, void *); + +typedef void (*btf_trace_ksm_merge_one_page)(void *, long unsigned int, void *, void *, int); + +typedef void (*btf_trace_ksm_merge_with_ksm_page)(void *, void *, long unsigned int, void *, void *, int); + +typedef void (*btf_trace_ksm_remove_ksm_page)(void *, long unsigned int); + +typedef void (*btf_trace_ksm_remove_rmap_item)(void *, long unsigned int, void *, void *); + +typedef void (*btf_trace_ksm_advisor)(void *, s64, long unsigned int, unsigned int); + +typedef u8 rmap_age_t; + +struct ksm_rmap_item; + +struct ksm_mm_slot { + struct mm_slot slot; + struct ksm_rmap_item *rmap_list; +}; + +struct ksm_stable_node; + +struct ksm_rmap_item { + struct ksm_rmap_item *rmap_list; + union { + struct anon_vma *anon_vma; + }; + struct mm_struct *mm; + long unsigned int address; + unsigned int oldchecksum; + rmap_age_t age; + rmap_age_t remaining_skips; + union { + struct rb_node node; + struct { + struct ksm_stable_node *head; + struct hlist_node hlist; + }; + }; +}; + +struct ksm_scan { + struct ksm_mm_slot *mm_slot; + long unsigned int address; + struct ksm_rmap_item **rmap_list; + long unsigned int seqnr; +}; + +struct ksm_stable_node { + union { + struct rb_node node; + struct { + struct list_head *head; + struct { + struct hlist_node hlist_dup; + struct list_head list; + }; + }; + }; + struct hlist_head hlist; + union { + long unsigned int kpfn; + long unsigned int chain_prune_time; + }; + int rmap_hlist_len; +}; + +struct advisor_ctx { + ktime_t start_scan; + long unsigned int scan_time; + long unsigned int change; + long long unsigned int cpu_time; +}; + +enum ksm_advisor_type { + KSM_ADVISOR_NONE = 0, + KSM_ADVISOR_SCAN_TIME = 1, +}; + +enum ksm_get_folio_flags { + KSM_GET_FOLIO_NOLOCK = 0, + KSM_GET_FOLIO_LOCK = 1, + KSM_GET_FOLIO_TRYLOCK = 2, +}; + +enum lru_status { + LRU_REMOVED = 0, + LRU_REMOVED_RETRY = 1, + LRU_ROTATE = 2, + LRU_SKIP = 3, + LRU_RETRY = 4, + LRU_STOP = 5, +}; + +typedef enum lru_status (*list_lru_walk_cb)(struct list_head *, struct list_lru_one *, spinlock_t *, void *); + +struct inodes_stat_t { + long int nr_inodes; + long int nr_unused; + long int dummy[5]; +}; + +struct inotify_event { + __s32 wd; + __u32 mask; + __u32 cookie; + __u32 len; + char name[0]; +}; + +struct inotify_event_info { + struct fsnotify_event fse; + u32 mask; + int wd; + u32 sync_cookie; + int name_len; + char name[0]; +}; + +struct inotify_inode_mark { + struct fsnotify_mark fsn_mark; + int wd; +}; + +struct iomap_dio { + struct kiocb *iocb; + const struct iomap_dio_ops *dops; + loff_t i_size; + loff_t size; + atomic_t ref; + unsigned int flags; + int error; + size_t done_before; + bool wait_for_completion; + union { + struct { + struct iov_iter *iter; + struct task_struct *waiter; + } submit; + struct { + struct work_struct work; + } aio; + }; +}; + +struct kernfs_global_locks { + struct mutex open_file_mutex[256]; +}; + +struct kernfs_open_node { + struct callback_head callback_head; + atomic_t event; + wait_queue_head_t poll; + struct list_head files; + unsigned int nr_mmapped; + unsigned int nr_to_release; +}; + +enum netfs_write_trace { + netfs_write_trace_copy_to_cache = 0, + netfs_write_trace_dio_write = 1, + netfs_write_trace_unbuffered_write = 2, + netfs_write_trace_writeback = 3, + netfs_write_trace_writethrough = 4, +} __attribute__((mode(byte))); + +enum netfs_collect_contig_trace { + netfs_contig_trace_collect = 0, + netfs_contig_trace_jump = 1, + netfs_contig_trace_unlock = 2, +} __attribute__((mode(byte))); + +enum netfs_donate_trace { + netfs_trace_donate_tail_to_prev = 0, + netfs_trace_donate_to_prev = 1, + netfs_trace_donate_to_next = 2, + netfs_trace_donate_to_deferred_next = 3, +} __attribute__((mode(byte))); + +struct trace_event_raw_netfs_read { + struct trace_entry ent; + unsigned int rreq; + unsigned int cookie; + loff_t i_size; + loff_t start; + size_t len; + enum netfs_read_trace what; + unsigned int netfs_inode; + char __data[0]; +}; + +struct trace_event_raw_netfs_rreq { + struct trace_entry ent; + unsigned int rreq; + unsigned int flags; + enum netfs_io_origin origin; + enum netfs_rreq_trace what; + char __data[0]; +}; + +struct trace_event_raw_netfs_sreq { + struct trace_entry ent; + unsigned int rreq; + short unsigned int index; + short int error; + short unsigned int flags; + enum netfs_io_source source; + enum netfs_sreq_trace what; + size_t len; + size_t transferred; + loff_t start; + char __data[0]; +}; + +struct trace_event_raw_netfs_failure { + struct trace_entry ent; + unsigned int rreq; + short int index; + short int error; + short unsigned int flags; + enum netfs_io_source source; + enum netfs_failure what; + size_t len; + size_t transferred; + loff_t start; + char __data[0]; +}; + +struct trace_event_raw_netfs_rreq_ref { + struct trace_entry ent; + unsigned int rreq; + int ref; + enum netfs_rreq_ref_trace what; + char __data[0]; +}; + +struct trace_event_raw_netfs_sreq_ref { + struct trace_entry ent; + unsigned int rreq; + unsigned int subreq; + int ref; + enum netfs_sreq_ref_trace what; + char __data[0]; +}; + +struct trace_event_raw_netfs_folio { + struct trace_entry ent; + ino_t ino; + long unsigned int index; + unsigned int nr; + enum netfs_folio_trace why; + char __data[0]; +}; + +struct trace_event_raw_netfs_write_iter { + struct trace_entry ent; + long long unsigned int start; + size_t len; + unsigned int flags; + unsigned int ino; + char __data[0]; +}; + +struct trace_event_raw_netfs_write { + struct trace_entry ent; + unsigned int wreq; + unsigned int cookie; + unsigned int ino; + enum netfs_write_trace what; + long long unsigned int start; + long long unsigned int len; + char __data[0]; +}; + +struct trace_event_raw_netfs_collect { + struct trace_entry ent; + unsigned int wreq; + unsigned int len; + long long unsigned int transferred; + long long unsigned int start; + char __data[0]; +}; + +struct trace_event_raw_netfs_collect_sreq { + struct trace_entry ent; + unsigned int wreq; + unsigned int subreq; + unsigned int stream; + unsigned int len; + unsigned int transferred; + long long unsigned int start; + char __data[0]; +}; + +struct trace_event_raw_netfs_collect_folio { + struct trace_entry ent; + unsigned int wreq; + long unsigned int index; + long long unsigned int fend; + long long unsigned int cleaned_to; + long long unsigned int collected_to; + char __data[0]; +}; + +struct trace_event_raw_netfs_collect_state { + struct trace_entry ent; + unsigned int wreq; + unsigned int notes; + long long unsigned int collected_to; + long long unsigned int cleaned_to; + char __data[0]; +}; + +struct trace_event_raw_netfs_collect_gap { + struct trace_entry ent; + unsigned int wreq; + unsigned char stream; + unsigned char type; + long long unsigned int from; + long long unsigned int to; + char __data[0]; +}; + +struct trace_event_raw_netfs_collect_stream { + struct trace_entry ent; + unsigned int wreq; + unsigned char stream; + long long unsigned int collected_to; + long long unsigned int front; + char __data[0]; +}; + +struct trace_event_raw_netfs_progress { + struct trace_entry ent; + unsigned int rreq; + unsigned int subreq; + unsigned int consumed; + unsigned int transferred; + long long unsigned int f_start; + unsigned int f_avail; + unsigned int f_part; + unsigned char slot; + char __data[0]; +}; + +struct trace_event_raw_netfs_donate { + struct trace_entry ent; + unsigned int rreq; + unsigned int from; + unsigned int to; + unsigned int amount; + enum netfs_donate_trace trace; + char __data[0]; +}; + +struct trace_event_data_offsets_netfs_read {}; + +struct trace_event_data_offsets_netfs_rreq {}; + +struct trace_event_data_offsets_netfs_sreq {}; + +struct trace_event_data_offsets_netfs_failure {}; + +struct trace_event_data_offsets_netfs_rreq_ref {}; + +struct trace_event_data_offsets_netfs_sreq_ref {}; + +struct trace_event_data_offsets_netfs_folio {}; + +struct trace_event_data_offsets_netfs_write_iter {}; + +struct trace_event_data_offsets_netfs_write {}; + +struct trace_event_data_offsets_netfs_collect {}; + +struct trace_event_data_offsets_netfs_collect_sreq {}; + +struct trace_event_data_offsets_netfs_collect_folio {}; + +struct trace_event_data_offsets_netfs_collect_state {}; + +struct trace_event_data_offsets_netfs_collect_gap {}; + +struct trace_event_data_offsets_netfs_collect_stream {}; + +struct trace_event_data_offsets_netfs_progress {}; + +struct trace_event_data_offsets_netfs_donate {}; + +typedef void (*btf_trace_netfs_read)(void *, struct netfs_io_request *, loff_t, size_t, enum netfs_read_trace); + +typedef void (*btf_trace_netfs_rreq)(void *, struct netfs_io_request *, enum netfs_rreq_trace); + +typedef void (*btf_trace_netfs_sreq)(void *, struct netfs_io_subrequest *, enum netfs_sreq_trace); + +typedef void (*btf_trace_netfs_failure)(void *, struct netfs_io_request *, struct netfs_io_subrequest *, int, enum netfs_failure); + +typedef void (*btf_trace_netfs_rreq_ref)(void *, unsigned int, int, enum netfs_rreq_ref_trace); + +typedef void (*btf_trace_netfs_sreq_ref)(void *, unsigned int, unsigned int, int, enum netfs_sreq_ref_trace); + +typedef void (*btf_trace_netfs_folio)(void *, struct folio *, enum netfs_folio_trace); + +typedef void (*btf_trace_netfs_write_iter)(void *, const struct kiocb *, const struct iov_iter *); + +typedef void (*btf_trace_netfs_write)(void *, const struct netfs_io_request *, enum netfs_write_trace); + +typedef void (*btf_trace_netfs_collect)(void *, const struct netfs_io_request *); + +typedef void (*btf_trace_netfs_collect_sreq)(void *, const struct netfs_io_request *, const struct netfs_io_subrequest *); + +typedef void (*btf_trace_netfs_collect_folio)(void *, const struct netfs_io_request *, const struct folio *, long long unsigned int, long long unsigned int); + +typedef void (*btf_trace_netfs_collect_state)(void *, const struct netfs_io_request *, long long unsigned int, unsigned int); + +typedef void (*btf_trace_netfs_collect_gap)(void *, const struct netfs_io_request *, const struct netfs_io_stream *, long long unsigned int, char); + +typedef void (*btf_trace_netfs_collect_stream)(void *, const struct netfs_io_request *, const struct netfs_io_stream *); + +typedef void (*btf_trace_netfs_progress)(void *, const struct netfs_io_subrequest *, long long unsigned int, size_t, size_t); + +typedef void (*btf_trace_netfs_donate)(void *, const struct netfs_io_request *, const struct netfs_io_subrequest *, const struct netfs_io_subrequest *, size_t, enum netfs_donate_trace); + +struct dx_hash_info { + u32 hash; + u32 minor_hash; + int hash_version; + u32 *seed; +}; + +struct dax_holder_operations { + int (*notify_failure)(struct dax_device *, u64, u64, int); +}; + +struct ext4_inode { + __le16 i_mode; + __le16 i_uid; + __le32 i_size_lo; + __le32 i_atime; + __le32 i_ctime; + __le32 i_mtime; + __le32 i_dtime; + __le16 i_gid; + __le16 i_links_count; + __le32 i_blocks_lo; + __le32 i_flags; + union { + struct { + __le32 l_i_version; + } linux1; + struct { + __u32 h_i_translator; + } hurd1; + struct { + __u32 m_i_reserved1; + } masix1; + } osd1; + __le32 i_block[15]; + __le32 i_generation; + __le32 i_file_acl_lo; + __le32 i_size_high; + __le32 i_obso_faddr; + union { + struct { + __le16 l_i_blocks_high; + __le16 l_i_file_acl_high; + __le16 l_i_uid_high; + __le16 l_i_gid_high; + __le16 l_i_checksum_lo; + __le16 l_i_reserved; + } linux2; + struct { + __le16 h_i_reserved1; + __u16 h_i_mode_high; + __u16 h_i_uid_high; + __u16 h_i_gid_high; + __u32 h_i_author; + } hurd2; + struct { + __le16 h_i_reserved1; + __le16 m_i_file_acl_high; + __u32 m_i_reserved2[2]; + } masix2; + } osd2; + __le16 i_extra_isize; + __le16 i_checksum_hi; + __le32 i_ctime_extra; + __le32 i_mtime_extra; + __le32 i_atime_extra; + __le32 i_crtime; + __le32 i_crtime_extra; + __le32 i_version_hi; + __le32 i_projid; +}; + +enum { + ES_WRITTEN_B = 0, + ES_UNWRITTEN_B = 1, + ES_DELAYED_B = 2, + ES_HOLE_B = 3, + ES_REFERENCED_B = 4, + ES_FLAGS = 5, +}; + +enum { + I_DATA_SEM_NORMAL = 0, + I_DATA_SEM_OTHER = 1, + I_DATA_SEM_QUOTA = 2, + I_DATA_SEM_EA = 3, +}; + +enum { + EXT4_MF_MNTDIR_SAMPLED = 0, + EXT4_MF_FC_INELIGIBLE = 1, + EXT4_MF_JOURNAL_DESTROY = 2, +}; + +struct ext4_lazy_init { + long unsigned int li_state; + struct list_head li_request_list; + struct mutex li_list_mtx; +}; + +struct ext4_extent { + __le32 ee_block; + __le16 ee_len; + __le16 ee_start_hi; + __le32 ee_start_lo; +}; + +struct partial_cluster { + ext4_fsblk_t pclu; + ext4_lblk_t lblk; + enum { + initial = 0, + tofree = 1, + nofree = 2, + } state; +}; + +struct ext4_journal_cb_entry { + struct list_head jce_list; + void (*jce_func)(struct super_block *, struct ext4_journal_cb_entry *, int); +}; + +struct ext4_fsmap { + struct list_head fmr_list; + dev_t fmr_device; + uint32_t fmr_flags; + uint64_t fmr_physical; + uint64_t fmr_owner; + uint64_t fmr_length; +}; + +struct trace_event_raw_ext4_other_inode_update_time { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ino_t orig_ino; + uid_t uid; + gid_t gid; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_free_inode { + struct trace_entry ent; + dev_t dev; + ino_t ino; + uid_t uid; + gid_t gid; + __u64 blocks; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_request_inode { + struct trace_entry ent; + dev_t dev; + ino_t dir; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_allocate_inode { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ino_t dir; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_evict_inode { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int nlink; + char __data[0]; +}; + +struct trace_event_raw_ext4_drop_inode { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int drop; + char __data[0]; +}; + +struct trace_event_raw_ext4_nfs_commit_metadata { + struct trace_entry ent; + dev_t dev; + ino_t ino; + char __data[0]; +}; + +struct trace_event_raw_ext4_mark_inode_dirty { + struct trace_entry ent; + dev_t dev; + ino_t ino; + long unsigned int ip; + char __data[0]; +}; + +struct trace_event_raw_ext4_begin_ordered_truncate { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t new_size; + char __data[0]; +}; + +struct trace_event_raw_ext4__write_begin { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t pos; + unsigned int len; + char __data[0]; +}; + +struct trace_event_raw_ext4__write_end { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t pos; + unsigned int len; + unsigned int copied; + char __data[0]; +}; + +struct trace_event_raw_ext4_writepages { + struct trace_entry ent; + dev_t dev; + ino_t ino; + long int nr_to_write; + long int pages_skipped; + loff_t range_start; + loff_t range_end; + long unsigned int writeback_index; + int sync_mode; + char for_kupdate; + char range_cyclic; + char __data[0]; +}; + +struct trace_event_raw_ext4_da_write_pages { + struct trace_entry ent; + dev_t dev; + ino_t ino; + long unsigned int first_page; + long int nr_to_write; + int sync_mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_da_write_pages_extent { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 lblk; + __u32 len; + __u32 flags; + char __data[0]; +}; + +struct trace_event_raw_ext4_writepages_result { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int ret; + int pages_written; + long int pages_skipped; + long unsigned int writeback_index; + int sync_mode; + char __data[0]; +}; + +struct trace_event_raw_ext4__folio_op { + struct trace_entry ent; + dev_t dev; + ino_t ino; + long unsigned int index; + char __data[0]; +}; + +struct trace_event_raw_ext4_invalidate_folio_op { + struct trace_entry ent; + dev_t dev; + ino_t ino; + long unsigned int index; + size_t offset; + size_t length; + char __data[0]; +}; + +struct trace_event_raw_ext4_discard_blocks { + struct trace_entry ent; + dev_t dev; + __u64 blk; + __u64 count; + char __data[0]; +}; + +struct trace_event_raw_ext4__mb_new_pa { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 pa_pstart; + __u64 pa_lstart; + __u32 pa_len; + char __data[0]; +}; + +struct trace_event_raw_ext4_mb_release_inode_pa { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 block; + __u32 count; + char __data[0]; +}; + +struct trace_event_raw_ext4_mb_release_group_pa { + struct trace_entry ent; + dev_t dev; + __u64 pa_pstart; + __u32 pa_len; + char __data[0]; +}; + +struct trace_event_raw_ext4_discard_preallocations { + struct trace_entry ent; + dev_t dev; + ino_t ino; + unsigned int len; + char __data[0]; +}; + +struct trace_event_raw_ext4_mb_discard_preallocations { + struct trace_entry ent; + dev_t dev; + int needed; + char __data[0]; +}; + +struct trace_event_raw_ext4_request_blocks { + struct trace_entry ent; + dev_t dev; + ino_t ino; + unsigned int len; + __u32 logical; + __u32 lleft; + __u32 lright; + __u64 goal; + __u64 pleft; + __u64 pright; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_ext4_allocate_blocks { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 block; + unsigned int len; + __u32 logical; + __u32 lleft; + __u32 lright; + __u64 goal; + __u64 pleft; + __u64 pright; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_ext4_free_blocks { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 block; + long unsigned int count; + int flags; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_sync_file_enter { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ino_t parent; + int datasync; + char __data[0]; +}; + +struct trace_event_raw_ext4_sync_file_exit { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int ret; + char __data[0]; +}; + +struct trace_event_raw_ext4_sync_fs { + struct trace_entry ent; + dev_t dev; + int wait; + char __data[0]; +}; + +struct trace_event_raw_ext4_alloc_da_blocks { + struct trace_entry ent; + dev_t dev; + ino_t ino; + unsigned int data_blocks; + char __data[0]; +}; + +struct trace_event_raw_ext4_mballoc_alloc { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u32 orig_logical; + int orig_start; + __u32 orig_group; + int orig_len; + __u32 goal_logical; + int goal_start; + __u32 goal_group; + int goal_len; + __u32 result_logical; + int result_start; + __u32 result_group; + int result_len; + __u16 found; + __u16 groups; + __u16 buddy; + __u16 flags; + __u16 tail; + __u8 cr; + char __data[0]; +}; + +struct trace_event_raw_ext4_mballoc_prealloc { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u32 orig_logical; + int orig_start; + __u32 orig_group; + int orig_len; + __u32 result_logical; + int result_start; + __u32 result_group; + int result_len; + char __data[0]; +}; + +struct trace_event_raw_ext4__mballoc { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int result_start; + __u32 result_group; + int result_len; + char __data[0]; +}; + +struct trace_event_raw_ext4_forget { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 block; + int is_metadata; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_da_update_reserve_space { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 i_blocks; + int used_blocks; + int reserved_data_blocks; + int quota_claim; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_da_reserve_space { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 i_blocks; + int reserve_blocks; + int reserved_data_blocks; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_da_release_space { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 i_blocks; + int freed_blocks; + int reserved_data_blocks; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4__bitmap_load { + struct trace_entry ent; + dev_t dev; + __u32 group; + char __data[0]; +}; + +struct trace_event_raw_ext4_read_block_bitmap_load { + struct trace_entry ent; + dev_t dev; + __u32 group; + bool prefetch; + char __data[0]; +}; + +struct trace_event_raw_ext4__fallocate_mode { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t offset; + loff_t len; + int mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_fallocate_exit { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t pos; + unsigned int blocks; + int ret; + char __data[0]; +}; + +struct trace_event_raw_ext4_unlink_enter { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ino_t parent; + loff_t size; + char __data[0]; +}; + +struct trace_event_raw_ext4_unlink_exit { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int ret; + char __data[0]; +}; + +struct trace_event_raw_ext4__truncate { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 blocks; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_convert_to_initialized_enter { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t m_lblk; + unsigned int m_len; + ext4_lblk_t u_lblk; + unsigned int u_len; + ext4_fsblk_t u_pblk; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_convert_to_initialized_fastpath { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t m_lblk; + unsigned int m_len; + ext4_lblk_t u_lblk; + unsigned int u_len; + ext4_fsblk_t u_pblk; + ext4_lblk_t i_lblk; + unsigned int i_len; + ext4_fsblk_t i_pblk; + char __data[0]; +}; + +struct trace_event_raw_ext4__map_blocks_enter { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t lblk; + unsigned int len; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_ext4__map_blocks_exit { + struct trace_entry ent; + dev_t dev; + ino_t ino; + unsigned int flags; + ext4_fsblk_t pblk; + ext4_lblk_t lblk; + unsigned int len; + unsigned int mflags; + int ret; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_load_extent { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_fsblk_t pblk; + ext4_lblk_t lblk; + char __data[0]; +}; + +struct trace_event_raw_ext4_load_inode { + struct trace_entry ent; + dev_t dev; + ino_t ino; + char __data[0]; +}; + +struct trace_event_raw_ext4_journal_start_sb { + struct trace_entry ent; + dev_t dev; + long unsigned int ip; + int blocks; + int rsv_blocks; + int revoke_creds; + int type; + char __data[0]; +}; + +struct trace_event_raw_ext4_journal_start_inode { + struct trace_entry ent; + long unsigned int ino; + dev_t dev; + long unsigned int ip; + int blocks; + int rsv_blocks; + int revoke_creds; + int type; + char __data[0]; +}; + +struct trace_event_raw_ext4_journal_start_reserved { + struct trace_entry ent; + dev_t dev; + long unsigned int ip; + int blocks; + char __data[0]; +}; + +struct trace_event_raw_ext4__trim { + struct trace_entry ent; + int dev_major; + int dev_minor; + __u32 group; + int start; + int len; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_handle_unwritten_extents { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int flags; + ext4_lblk_t lblk; + ext4_fsblk_t pblk; + unsigned int len; + unsigned int allocated; + ext4_fsblk_t newblk; + char __data[0]; +}; + +struct trace_event_raw_ext4_get_implied_cluster_alloc_exit { + struct trace_entry ent; + dev_t dev; + unsigned int flags; + ext4_lblk_t lblk; + ext4_fsblk_t pblk; + unsigned int len; + int ret; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_show_extent { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_fsblk_t pblk; + ext4_lblk_t lblk; + short unsigned int len; + char __data[0]; +}; + +struct trace_event_raw_ext4_remove_blocks { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t from; + ext4_lblk_t to; + ext4_fsblk_t ee_pblk; + ext4_lblk_t ee_lblk; + short unsigned int ee_len; + ext4_fsblk_t pc_pclu; + ext4_lblk_t pc_lblk; + int pc_state; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_rm_leaf { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t start; + ext4_lblk_t ee_lblk; + ext4_fsblk_t ee_pblk; + short int ee_len; + ext4_fsblk_t pc_pclu; + ext4_lblk_t pc_lblk; + int pc_state; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_rm_idx { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_fsblk_t pblk; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_remove_space { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t start; + ext4_lblk_t end; + int depth; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_remove_space_done { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t start; + ext4_lblk_t end; + int depth; + ext4_fsblk_t pc_pclu; + ext4_lblk_t pc_lblk; + int pc_state; + short unsigned int eh_entries; + char __data[0]; +}; + +struct trace_event_raw_ext4__es_extent { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t lblk; + ext4_lblk_t len; + ext4_fsblk_t pblk; + char status; + char __data[0]; +}; + +struct trace_event_raw_ext4_es_remove_extent { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t lblk; + loff_t len; + char __data[0]; +}; + +struct trace_event_raw_ext4_es_find_extent_range_enter { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t lblk; + char __data[0]; +}; + +struct trace_event_raw_ext4_es_find_extent_range_exit { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t lblk; + ext4_lblk_t len; + ext4_fsblk_t pblk; + char status; + char __data[0]; +}; + +struct trace_event_raw_ext4_es_lookup_extent_enter { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t lblk; + char __data[0]; +}; + +struct trace_event_raw_ext4_es_lookup_extent_exit { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t lblk; + ext4_lblk_t len; + ext4_fsblk_t pblk; + char status; + int found; + char __data[0]; +}; + +struct trace_event_raw_ext4__es_shrink_enter { + struct trace_entry ent; + dev_t dev; + int nr_to_scan; + int cache_cnt; + char __data[0]; +}; + +struct trace_event_raw_ext4_es_shrink_scan_exit { + struct trace_entry ent; + dev_t dev; + int nr_shrunk; + int cache_cnt; + char __data[0]; +}; + +struct trace_event_raw_ext4_collapse_range { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t offset; + loff_t len; + char __data[0]; +}; + +struct trace_event_raw_ext4_insert_range { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t offset; + loff_t len; + char __data[0]; +}; + +struct trace_event_raw_ext4_es_shrink { + struct trace_entry ent; + dev_t dev; + int nr_shrunk; + long long unsigned int scan_time; + int nr_skipped; + int retried; + char __data[0]; +}; + +struct trace_event_raw_ext4_es_insert_delayed_extent { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t lblk; + ext4_lblk_t len; + ext4_fsblk_t pblk; + char status; + bool lclu_allocated; + bool end_allocated; + char __data[0]; +}; + +struct trace_event_raw_ext4_fsmap_class { + struct trace_entry ent; + dev_t dev; + dev_t keydev; + u32 agno; + u64 bno; + u64 len; + u64 owner; + char __data[0]; +}; + +struct trace_event_raw_ext4_getfsmap_class { + struct trace_entry ent; + dev_t dev; + dev_t keydev; + u64 block; + u64 len; + u64 owner; + u64 flags; + char __data[0]; +}; + +struct trace_event_raw_ext4_shutdown { + struct trace_entry ent; + dev_t dev; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_ext4_error { + struct trace_entry ent; + dev_t dev; + const char *function; + unsigned int line; + char __data[0]; +}; + +struct trace_event_raw_ext4_prefetch_bitmaps { + struct trace_entry ent; + dev_t dev; + __u32 group; + __u32 next; + __u32 ios; + char __data[0]; +}; + +struct trace_event_raw_ext4_lazy_itable_init { + struct trace_entry ent; + dev_t dev; + __u32 group; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_replay_scan { + struct trace_entry ent; + dev_t dev; + int error; + int off; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_replay { + struct trace_entry ent; + dev_t dev; + int tag; + int ino; + int priv1; + int priv2; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_commit_start { + struct trace_entry ent; + dev_t dev; + tid_t tid; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_commit_stop { + struct trace_entry ent; + dev_t dev; + int nblks; + int reason; + int num_fc; + int num_fc_ineligible; + int nblks_agg; + tid_t tid; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_stats { + struct trace_entry ent; + dev_t dev; + unsigned int fc_ineligible_rc[10]; + long unsigned int fc_commits; + long unsigned int fc_ineligible_commits; + long unsigned int fc_numblks; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_track_dentry { + struct trace_entry ent; + dev_t dev; + tid_t t_tid; + ino_t i_ino; + tid_t i_sync_tid; + int error; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_track_inode { + struct trace_entry ent; + dev_t dev; + tid_t t_tid; + ino_t i_ino; + tid_t i_sync_tid; + int error; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_track_range { + struct trace_entry ent; + dev_t dev; + tid_t t_tid; + ino_t i_ino; + tid_t i_sync_tid; + long int start; + long int end; + int error; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_cleanup { + struct trace_entry ent; + dev_t dev; + int j_fc_off; + int full; + tid_t tid; + char __data[0]; +}; + +struct trace_event_raw_ext4_update_sb { + struct trace_entry ent; + dev_t dev; + ext4_fsblk_t fsblk; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_data_offsets_ext4_other_inode_update_time {}; + +struct trace_event_data_offsets_ext4_free_inode {}; + +struct trace_event_data_offsets_ext4_request_inode {}; + +struct trace_event_data_offsets_ext4_allocate_inode {}; + +struct trace_event_data_offsets_ext4_evict_inode {}; + +struct trace_event_data_offsets_ext4_drop_inode {}; + +struct trace_event_data_offsets_ext4_nfs_commit_metadata {}; + +struct trace_event_data_offsets_ext4_mark_inode_dirty {}; + +struct trace_event_data_offsets_ext4_begin_ordered_truncate {}; + +struct trace_event_data_offsets_ext4__write_begin {}; + +struct trace_event_data_offsets_ext4__write_end {}; + +struct trace_event_data_offsets_ext4_writepages {}; + +struct trace_event_data_offsets_ext4_da_write_pages {}; + +struct trace_event_data_offsets_ext4_da_write_pages_extent {}; + +struct trace_event_data_offsets_ext4_writepages_result {}; + +struct trace_event_data_offsets_ext4__folio_op {}; + +struct trace_event_data_offsets_ext4_invalidate_folio_op {}; + +struct trace_event_data_offsets_ext4_discard_blocks {}; + +struct trace_event_data_offsets_ext4__mb_new_pa {}; + +struct trace_event_data_offsets_ext4_mb_release_inode_pa {}; + +struct trace_event_data_offsets_ext4_mb_release_group_pa {}; + +struct trace_event_data_offsets_ext4_discard_preallocations {}; + +struct trace_event_data_offsets_ext4_mb_discard_preallocations {}; + +struct trace_event_data_offsets_ext4_request_blocks {}; + +struct trace_event_data_offsets_ext4_allocate_blocks {}; + +struct trace_event_data_offsets_ext4_free_blocks {}; + +struct trace_event_data_offsets_ext4_sync_file_enter {}; + +struct trace_event_data_offsets_ext4_sync_file_exit {}; + +struct trace_event_data_offsets_ext4_sync_fs {}; + +struct trace_event_data_offsets_ext4_alloc_da_blocks {}; + +struct trace_event_data_offsets_ext4_mballoc_alloc {}; + +struct trace_event_data_offsets_ext4_mballoc_prealloc {}; + +struct trace_event_data_offsets_ext4__mballoc {}; + +struct trace_event_data_offsets_ext4_forget {}; + +struct trace_event_data_offsets_ext4_da_update_reserve_space {}; + +struct trace_event_data_offsets_ext4_da_reserve_space {}; + +struct trace_event_data_offsets_ext4_da_release_space {}; + +struct trace_event_data_offsets_ext4__bitmap_load {}; + +struct trace_event_data_offsets_ext4_read_block_bitmap_load {}; + +struct trace_event_data_offsets_ext4__fallocate_mode {}; + +struct trace_event_data_offsets_ext4_fallocate_exit {}; + +struct trace_event_data_offsets_ext4_unlink_enter {}; + +struct trace_event_data_offsets_ext4_unlink_exit {}; + +struct trace_event_data_offsets_ext4__truncate {}; + +struct trace_event_data_offsets_ext4_ext_convert_to_initialized_enter {}; + +struct trace_event_data_offsets_ext4_ext_convert_to_initialized_fastpath {}; + +struct trace_event_data_offsets_ext4__map_blocks_enter {}; + +struct trace_event_data_offsets_ext4__map_blocks_exit {}; + +struct trace_event_data_offsets_ext4_ext_load_extent {}; + +struct trace_event_data_offsets_ext4_load_inode {}; + +struct trace_event_data_offsets_ext4_journal_start_sb {}; + +struct trace_event_data_offsets_ext4_journal_start_inode {}; + +struct trace_event_data_offsets_ext4_journal_start_reserved {}; + +struct trace_event_data_offsets_ext4__trim {}; + +struct trace_event_data_offsets_ext4_ext_handle_unwritten_extents {}; + +struct trace_event_data_offsets_ext4_get_implied_cluster_alloc_exit {}; + +struct trace_event_data_offsets_ext4_ext_show_extent {}; + +struct trace_event_data_offsets_ext4_remove_blocks {}; + +struct trace_event_data_offsets_ext4_ext_rm_leaf {}; + +struct trace_event_data_offsets_ext4_ext_rm_idx {}; + +struct trace_event_data_offsets_ext4_ext_remove_space {}; + +struct trace_event_data_offsets_ext4_ext_remove_space_done {}; + +struct trace_event_data_offsets_ext4__es_extent {}; + +struct trace_event_data_offsets_ext4_es_remove_extent {}; + +struct trace_event_data_offsets_ext4_es_find_extent_range_enter {}; + +struct trace_event_data_offsets_ext4_es_find_extent_range_exit {}; + +struct trace_event_data_offsets_ext4_es_lookup_extent_enter {}; + +struct trace_event_data_offsets_ext4_es_lookup_extent_exit {}; + +struct trace_event_data_offsets_ext4__es_shrink_enter {}; + +struct trace_event_data_offsets_ext4_es_shrink_scan_exit {}; + +struct trace_event_data_offsets_ext4_collapse_range {}; + +struct trace_event_data_offsets_ext4_insert_range {}; + +struct trace_event_data_offsets_ext4_es_shrink {}; + +struct trace_event_data_offsets_ext4_es_insert_delayed_extent {}; + +struct trace_event_data_offsets_ext4_fsmap_class {}; + +struct trace_event_data_offsets_ext4_getfsmap_class {}; + +struct trace_event_data_offsets_ext4_shutdown {}; + +struct trace_event_data_offsets_ext4_error {}; + +struct trace_event_data_offsets_ext4_prefetch_bitmaps {}; + +struct trace_event_data_offsets_ext4_lazy_itable_init {}; + +struct trace_event_data_offsets_ext4_fc_replay_scan {}; + +struct trace_event_data_offsets_ext4_fc_replay {}; + +struct trace_event_data_offsets_ext4_fc_commit_start {}; + +struct trace_event_data_offsets_ext4_fc_commit_stop {}; + +struct trace_event_data_offsets_ext4_fc_stats {}; + +struct trace_event_data_offsets_ext4_fc_track_dentry {}; + +struct trace_event_data_offsets_ext4_fc_track_inode {}; + +struct trace_event_data_offsets_ext4_fc_track_range {}; + +struct trace_event_data_offsets_ext4_fc_cleanup {}; + +struct trace_event_data_offsets_ext4_update_sb {}; + +typedef void (*btf_trace_ext4_other_inode_update_time)(void *, struct inode *, ino_t); + +typedef void (*btf_trace_ext4_free_inode)(void *, struct inode *); + +typedef void (*btf_trace_ext4_request_inode)(void *, struct inode *, int); + +typedef void (*btf_trace_ext4_allocate_inode)(void *, struct inode *, struct inode *, int); + +typedef void (*btf_trace_ext4_evict_inode)(void *, struct inode *); + +typedef void (*btf_trace_ext4_drop_inode)(void *, struct inode *, int); + +typedef void (*btf_trace_ext4_nfs_commit_metadata)(void *, struct inode *); + +typedef void (*btf_trace_ext4_mark_inode_dirty)(void *, struct inode *, long unsigned int); + +typedef void (*btf_trace_ext4_begin_ordered_truncate)(void *, struct inode *, loff_t); + +typedef void (*btf_trace_ext4_write_begin)(void *, struct inode *, loff_t, unsigned int); + +typedef void (*btf_trace_ext4_da_write_begin)(void *, struct inode *, loff_t, unsigned int); + +typedef void (*btf_trace_ext4_write_end)(void *, struct inode *, loff_t, unsigned int, unsigned int); + +typedef void (*btf_trace_ext4_journalled_write_end)(void *, struct inode *, loff_t, unsigned int, unsigned int); + +typedef void (*btf_trace_ext4_da_write_end)(void *, struct inode *, loff_t, unsigned int, unsigned int); + +typedef void (*btf_trace_ext4_writepages)(void *, struct inode *, struct writeback_control *); + +typedef void (*btf_trace_ext4_da_write_pages)(void *, struct inode *, long unsigned int, struct writeback_control *); + +typedef void (*btf_trace_ext4_da_write_pages_extent)(void *, struct inode *, struct ext4_map_blocks *); + +typedef void (*btf_trace_ext4_writepages_result)(void *, struct inode *, struct writeback_control *, int, int); + +typedef void (*btf_trace_ext4_read_folio)(void *, struct inode *, struct folio *); + +typedef void (*btf_trace_ext4_release_folio)(void *, struct inode *, struct folio *); + +typedef void (*btf_trace_ext4_invalidate_folio)(void *, struct folio *, size_t, size_t); + +typedef void (*btf_trace_ext4_journalled_invalidate_folio)(void *, struct folio *, size_t, size_t); + +typedef void (*btf_trace_ext4_discard_blocks)(void *, struct super_block *, long long unsigned int, long long unsigned int); + +typedef void (*btf_trace_ext4_mb_new_inode_pa)(void *, struct ext4_allocation_context *, struct ext4_prealloc_space *); + +typedef void (*btf_trace_ext4_mb_new_group_pa)(void *, struct ext4_allocation_context *, struct ext4_prealloc_space *); + +typedef void (*btf_trace_ext4_mb_release_inode_pa)(void *, struct ext4_prealloc_space *, long long unsigned int, unsigned int); + +typedef void (*btf_trace_ext4_mb_release_group_pa)(void *, struct super_block *, struct ext4_prealloc_space *); + +typedef void (*btf_trace_ext4_discard_preallocations)(void *, struct inode *, unsigned int); + +typedef void (*btf_trace_ext4_mb_discard_preallocations)(void *, struct super_block *, int); + +typedef void (*btf_trace_ext4_request_blocks)(void *, struct ext4_allocation_request *); + +typedef void (*btf_trace_ext4_allocate_blocks)(void *, struct ext4_allocation_request *, long long unsigned int); + +typedef void (*btf_trace_ext4_free_blocks)(void *, struct inode *, __u64, long unsigned int, int); + +typedef void (*btf_trace_ext4_sync_file_enter)(void *, struct file *, int); + +typedef void (*btf_trace_ext4_sync_file_exit)(void *, struct inode *, int); + +typedef void (*btf_trace_ext4_sync_fs)(void *, struct super_block *, int); + +typedef void (*btf_trace_ext4_alloc_da_blocks)(void *, struct inode *); + +typedef void (*btf_trace_ext4_mballoc_alloc)(void *, struct ext4_allocation_context *); + +typedef void (*btf_trace_ext4_mballoc_prealloc)(void *, struct ext4_allocation_context *); + +typedef void (*btf_trace_ext4_mballoc_discard)(void *, struct super_block *, struct inode *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t); + +typedef void (*btf_trace_ext4_mballoc_free)(void *, struct super_block *, struct inode *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t); + +typedef void (*btf_trace_ext4_forget)(void *, struct inode *, int, __u64); + +typedef void (*btf_trace_ext4_da_update_reserve_space)(void *, struct inode *, int, int); + +typedef void (*btf_trace_ext4_da_reserve_space)(void *, struct inode *, int); + +typedef void (*btf_trace_ext4_da_release_space)(void *, struct inode *, int); + +typedef void (*btf_trace_ext4_mb_bitmap_load)(void *, struct super_block *, long unsigned int); + +typedef void (*btf_trace_ext4_mb_buddy_bitmap_load)(void *, struct super_block *, long unsigned int); + +typedef void (*btf_trace_ext4_load_inode_bitmap)(void *, struct super_block *, long unsigned int); + +typedef void (*btf_trace_ext4_read_block_bitmap_load)(void *, struct super_block *, long unsigned int, bool); + +typedef void (*btf_trace_ext4_fallocate_enter)(void *, struct inode *, loff_t, loff_t, int); + +typedef void (*btf_trace_ext4_punch_hole)(void *, struct inode *, loff_t, loff_t, int); + +typedef void (*btf_trace_ext4_zero_range)(void *, struct inode *, loff_t, loff_t, int); + +typedef void (*btf_trace_ext4_fallocate_exit)(void *, struct inode *, loff_t, unsigned int, int); + +typedef void (*btf_trace_ext4_unlink_enter)(void *, struct inode *, struct dentry *); + +typedef void (*btf_trace_ext4_unlink_exit)(void *, struct dentry *, int); + +typedef void (*btf_trace_ext4_truncate_enter)(void *, struct inode *); + +typedef void (*btf_trace_ext4_truncate_exit)(void *, struct inode *); + +typedef void (*btf_trace_ext4_ext_convert_to_initialized_enter)(void *, struct inode *, struct ext4_map_blocks *, struct ext4_extent *); + +typedef void (*btf_trace_ext4_ext_convert_to_initialized_fastpath)(void *, struct inode *, struct ext4_map_blocks *, struct ext4_extent *, struct ext4_extent *); + +typedef void (*btf_trace_ext4_ext_map_blocks_enter)(void *, struct inode *, ext4_lblk_t, unsigned int, unsigned int); + +typedef void (*btf_trace_ext4_ind_map_blocks_enter)(void *, struct inode *, ext4_lblk_t, unsigned int, unsigned int); + +typedef void (*btf_trace_ext4_ext_map_blocks_exit)(void *, struct inode *, unsigned int, struct ext4_map_blocks *, int); + +typedef void (*btf_trace_ext4_ind_map_blocks_exit)(void *, struct inode *, unsigned int, struct ext4_map_blocks *, int); + +typedef void (*btf_trace_ext4_ext_load_extent)(void *, struct inode *, ext4_lblk_t, ext4_fsblk_t); + +typedef void (*btf_trace_ext4_load_inode)(void *, struct super_block *, long unsigned int); + +typedef void (*btf_trace_ext4_journal_start_sb)(void *, struct super_block *, int, int, int, int, long unsigned int); + +typedef void (*btf_trace_ext4_journal_start_inode)(void *, struct inode *, int, int, int, int, long unsigned int); + +typedef void (*btf_trace_ext4_journal_start_reserved)(void *, struct super_block *, int, long unsigned int); + +typedef void (*btf_trace_ext4_trim_extent)(void *, struct super_block *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t); + +typedef void (*btf_trace_ext4_trim_all_free)(void *, struct super_block *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t); + +typedef void (*btf_trace_ext4_ext_handle_unwritten_extents)(void *, struct inode *, struct ext4_map_blocks *, int, unsigned int, ext4_fsblk_t); + +typedef void (*btf_trace_ext4_get_implied_cluster_alloc_exit)(void *, struct super_block *, struct ext4_map_blocks *, int); + +typedef void (*btf_trace_ext4_ext_show_extent)(void *, struct inode *, ext4_lblk_t, ext4_fsblk_t, short unsigned int); + +typedef void (*btf_trace_ext4_remove_blocks)(void *, struct inode *, struct ext4_extent *, ext4_lblk_t, ext4_fsblk_t, struct partial_cluster *); + +typedef void (*btf_trace_ext4_ext_rm_leaf)(void *, struct inode *, ext4_lblk_t, struct ext4_extent *, struct partial_cluster *); + +typedef void (*btf_trace_ext4_ext_rm_idx)(void *, struct inode *, ext4_fsblk_t); + +typedef void (*btf_trace_ext4_ext_remove_space)(void *, struct inode *, ext4_lblk_t, ext4_lblk_t, int); + +typedef void (*btf_trace_ext4_ext_remove_space_done)(void *, struct inode *, ext4_lblk_t, ext4_lblk_t, int, struct partial_cluster *, __le16); + +typedef void (*btf_trace_ext4_es_insert_extent)(void *, struct inode *, struct extent_status *); + +typedef void (*btf_trace_ext4_es_cache_extent)(void *, struct inode *, struct extent_status *); + +typedef void (*btf_trace_ext4_es_remove_extent)(void *, struct inode *, ext4_lblk_t, ext4_lblk_t); + +typedef void (*btf_trace_ext4_es_find_extent_range_enter)(void *, struct inode *, ext4_lblk_t); + +typedef void (*btf_trace_ext4_es_find_extent_range_exit)(void *, struct inode *, struct extent_status *); + +typedef void (*btf_trace_ext4_es_lookup_extent_enter)(void *, struct inode *, ext4_lblk_t); + +typedef void (*btf_trace_ext4_es_lookup_extent_exit)(void *, struct inode *, struct extent_status *, int); + +typedef void (*btf_trace_ext4_es_shrink_count)(void *, struct super_block *, int, int); + +typedef void (*btf_trace_ext4_es_shrink_scan_enter)(void *, struct super_block *, int, int); + +typedef void (*btf_trace_ext4_es_shrink_scan_exit)(void *, struct super_block *, int, int); + +typedef void (*btf_trace_ext4_collapse_range)(void *, struct inode *, loff_t, loff_t); + +typedef void (*btf_trace_ext4_insert_range)(void *, struct inode *, loff_t, loff_t); + +typedef void (*btf_trace_ext4_es_shrink)(void *, struct super_block *, int, u64, int, int); + +typedef void (*btf_trace_ext4_es_insert_delayed_extent)(void *, struct inode *, struct extent_status *, bool, bool); + +typedef void (*btf_trace_ext4_fsmap_low_key)(void *, struct super_block *, u32, u32, u64, u64, u64); + +typedef void (*btf_trace_ext4_fsmap_high_key)(void *, struct super_block *, u32, u32, u64, u64, u64); + +typedef void (*btf_trace_ext4_fsmap_mapping)(void *, struct super_block *, u32, u32, u64, u64, u64); + +typedef void (*btf_trace_ext4_getfsmap_low_key)(void *, struct super_block *, struct ext4_fsmap *); + +typedef void (*btf_trace_ext4_getfsmap_high_key)(void *, struct super_block *, struct ext4_fsmap *); + +typedef void (*btf_trace_ext4_getfsmap_mapping)(void *, struct super_block *, struct ext4_fsmap *); + +typedef void (*btf_trace_ext4_shutdown)(void *, struct super_block *, long unsigned int); + +typedef void (*btf_trace_ext4_error)(void *, struct super_block *, const char *, unsigned int); + +typedef void (*btf_trace_ext4_prefetch_bitmaps)(void *, struct super_block *, ext4_group_t, ext4_group_t, unsigned int); + +typedef void (*btf_trace_ext4_lazy_itable_init)(void *, struct super_block *, ext4_group_t); + +typedef void (*btf_trace_ext4_fc_replay_scan)(void *, struct super_block *, int, int); + +typedef void (*btf_trace_ext4_fc_replay)(void *, struct super_block *, int, int, int, int); + +typedef void (*btf_trace_ext4_fc_commit_start)(void *, struct super_block *, tid_t); + +typedef void (*btf_trace_ext4_fc_commit_stop)(void *, struct super_block *, int, int, tid_t); + +typedef void (*btf_trace_ext4_fc_stats)(void *, struct super_block *); + +typedef void (*btf_trace_ext4_fc_track_create)(void *, handle_t *, struct inode *, struct dentry *, int); + +typedef void (*btf_trace_ext4_fc_track_link)(void *, handle_t *, struct inode *, struct dentry *, int); + +typedef void (*btf_trace_ext4_fc_track_unlink)(void *, handle_t *, struct inode *, struct dentry *, int); + +typedef void (*btf_trace_ext4_fc_track_inode)(void *, handle_t *, struct inode *, int); + +typedef void (*btf_trace_ext4_fc_track_range)(void *, handle_t *, struct inode *, long int, long int, int); + +typedef void (*btf_trace_ext4_fc_cleanup)(void *, journal_t *, int, tid_t); + +typedef void (*btf_trace_ext4_update_sb)(void *, struct super_block *, ext4_fsblk_t, unsigned int); + +struct ext4_err_translation { + int code; + int errno; +}; + +enum { + Opt_bsd_df = 0, + Opt_minix_df = 1, + Opt_grpid___2 = 2, + Opt_nogrpid___2 = 3, + Opt_resgid___2 = 4, + Opt_resuid___2 = 5, + Opt_sb = 6, + Opt_nouid32 = 7, + Opt_debug___2 = 8, + Opt_removed = 9, + Opt_user_xattr___3 = 10, + Opt_acl___3 = 11, + Opt_auto_da_alloc = 12, + Opt_noauto_da_alloc = 13, + Opt_noload = 14, + Opt_commit = 15, + Opt_min_batch_time = 16, + Opt_max_batch_time = 17, + Opt_journal_dev = 18, + Opt_journal_path = 19, + Opt_journal_checksum = 20, + Opt_journal_async_commit = 21, + Opt_abort = 22, + Opt_data_journal = 23, + Opt_data_ordered = 24, + Opt_data_writeback = 25, + Opt_data_err_abort = 26, + Opt_data_err_ignore = 27, + Opt_test_dummy_encryption___2 = 28, + Opt_inlinecrypt___2 = 29, + Opt_usrjquota___2 = 30, + Opt_grpjquota___2 = 31, + Opt_quota___3 = 32, + Opt_noquota___3 = 33, + Opt_barrier___2 = 34, + Opt_nobarrier___2 = 35, + Opt_err___6 = 36, + Opt_usrquota___3 = 37, + Opt_grpquota___3 = 38, + Opt_prjquota___3 = 39, + Opt_dax___2 = 40, + Opt_dax_always = 41, + Opt_dax_inode = 42, + Opt_dax_never = 43, + Opt_stripe = 44, + Opt_delalloc = 45, + Opt_nodelalloc = 46, + Opt_warn_on_error = 47, + Opt_nowarn_on_error = 48, + Opt_mblk_io_submit = 49, + Opt_debug_want_extra_isize = 50, + Opt_nomblk_io_submit = 51, + Opt_block_validity = 52, + Opt_noblock_validity = 53, + Opt_inode_readahead_blks = 54, + Opt_journal_ioprio = 55, + Opt_dioread_nolock = 56, + Opt_dioread_lock = 57, + Opt_discard___4 = 58, + Opt_nodiscard___3 = 59, + Opt_init_itable = 60, + Opt_noinit_itable = 61, + Opt_max_dir_size_kb = 62, + Opt_nojournal_checksum = 63, + Opt_nombcache = 64, + Opt_no_prefetch_block_bitmaps = 65, + Opt_mb_optimize_scan = 66, + Opt_errors___4 = 67, + Opt_data = 68, + Opt_data_err = 69, + Opt_jqfmt = 70, + Opt_dax_type = 71, +}; + +struct mount_opts { + int token; + int mount_opt; + int flags; +}; + +struct ext4_fs_context { + char *s_qf_names[3]; + struct fscrypt_dummy_policy dummy_enc_policy; + int s_jquota_fmt; + short unsigned int qname_spec; + long unsigned int vals_s_flags; + long unsigned int mask_s_flags; + long unsigned int journal_devnum; + long unsigned int s_commit_interval; + long unsigned int s_stripe; + unsigned int s_inode_readahead_blks; + unsigned int s_want_extra_isize; + unsigned int s_li_wait_mult; + unsigned int s_max_dir_size_kb; + unsigned int journal_ioprio; + unsigned int vals_s_mount_opt; + unsigned int mask_s_mount_opt; + unsigned int vals_s_mount_opt2; + unsigned int mask_s_mount_opt2; + unsigned int opt_flags; + unsigned int spec; + u32 s_max_batch_time; + u32 s_min_batch_time; + kuid_t s_resuid; + kgid_t s_resgid; + ext4_fsblk_t s_sb_block; +}; + +struct ext4_mount_options { + long unsigned int s_mount_opt; + long unsigned int s_mount_opt2; + kuid_t s_resuid; + kgid_t s_resgid; + long unsigned int s_commit_interval; + u32 s_min_batch_time; + u32 s_max_batch_time; + int s_jquota_fmt; + char *s_qf_names[3]; +}; + +enum { + MOUNTPROC_NULL = 0, + MOUNTPROC_MNT = 1, + MOUNTPROC_DUMP = 2, + MOUNTPROC_UMNT = 3, + MOUNTPROC_UMNTALL = 4, + MOUNTPROC_EXPORT = 5, +}; + +enum { + MOUNTPROC3_NULL = 0, + MOUNTPROC3_MNT = 1, + MOUNTPROC3_DUMP = 2, + MOUNTPROC3_UMNT = 3, + MOUNTPROC3_UMNTALL = 4, + MOUNTPROC3_EXPORT = 5, +}; + +enum mountstat { + MNT_OK = 0, + MNT_EPERM = 1, + MNT_ENOENT = 2, + MNT_EACCES = 13, + MNT_EINVAL = 22, +}; + +enum mountstat3 { + MNT3_OK = 0, + MNT3ERR_PERM = 1, + MNT3ERR_NOENT = 2, + MNT3ERR_IO = 5, + MNT3ERR_ACCES = 13, + MNT3ERR_NOTDIR = 20, + MNT3ERR_INVAL = 22, + MNT3ERR_NAMETOOLONG = 63, + MNT3ERR_NOTSUPP = 10004, + MNT3ERR_SERVERFAULT = 10006, +}; + +struct mountres { + int errno; + struct nfs_fh *fh; + unsigned int *auth_count; + rpc_authflavor_t *auth_flavors; +}; + +enum open_claim_type4 { + NFS4_OPEN_CLAIM_NULL = 0, + NFS4_OPEN_CLAIM_PREVIOUS = 1, + NFS4_OPEN_CLAIM_DELEGATE_CUR = 2, + NFS4_OPEN_CLAIM_DELEGATE_PREV = 3, + NFS4_OPEN_CLAIM_FH = 4, + NFS4_OPEN_CLAIM_DELEG_CUR_FH = 5, + NFS4_OPEN_CLAIM_DELEG_PREV_FH = 6, +}; + +enum createmode4 { + NFS4_CREATE_UNCHECKED = 0, + NFS4_CREATE_GUARDED = 1, + NFS4_CREATE_EXCLUSIVE = 2, + NFS4_CREATE_EXCLUSIVE4_1 = 3, +}; + +enum pnfs_update_layout_reason { + PNFS_UPDATE_LAYOUT_UNKNOWN = 0, + PNFS_UPDATE_LAYOUT_NO_PNFS = 1, + PNFS_UPDATE_LAYOUT_RD_ZEROLEN = 2, + PNFS_UPDATE_LAYOUT_MDSTHRESH = 3, + PNFS_UPDATE_LAYOUT_NOMEM = 4, + PNFS_UPDATE_LAYOUT_BULK_RECALL = 5, + PNFS_UPDATE_LAYOUT_IO_TEST_FAIL = 6, + PNFS_UPDATE_LAYOUT_FOUND_CACHED = 7, + PNFS_UPDATE_LAYOUT_RETURN = 8, + PNFS_UPDATE_LAYOUT_RETRY = 9, + PNFS_UPDATE_LAYOUT_BLOCKED = 10, + PNFS_UPDATE_LAYOUT_INVALID_OPEN = 11, + PNFS_UPDATE_LAYOUT_SEND_LAYOUTGET = 12, + PNFS_UPDATE_LAYOUT_EXIT = 13, +}; + +struct nfs4_layoutget_args { + struct nfs4_sequence_args seq_args; + __u32 type; + struct pnfs_layout_range range; + __u64 minlength; + __u32 maxcount; + struct inode *inode; + struct nfs_open_context *ctx; + nfs4_stateid stateid; + struct nfs4_layoutdriver_data layout; +}; + +struct nfs4_layoutget { + struct nfs4_layoutget_args args; + struct nfs4_layoutget_res res; + const struct cred *cred; + struct pnfs_layout_hdr *lo; + gfp_t gfp_flags; +}; + +struct nfs4_layoutreturn_res { + struct nfs4_sequence_res seq_res; + u32 lrs_present; + nfs4_stateid stateid; +}; + +struct nfs4_layoutreturn { + struct nfs4_layoutreturn_args args; + struct nfs4_layoutreturn_res res; + const struct cred *cred; + struct nfs_client *clp; + struct inode *inode; + int rpc_status; + struct nfs4_xdr_opaque_data ld_private; +}; + +struct stateowner_id { + __u64 create_time; + __u64 uniquifier; +}; + +struct nfs4_open_delegation { + __u32 open_delegation_type; + union { + struct { + fmode_t type; + __u32 do_recall; + nfs4_stateid stateid; + long unsigned int pagemod_limit; + }; + struct { + __u32 why_no_delegation; + __u32 will_notify; + }; + }; +}; + +struct nfs_openargs { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *fh; + struct nfs_seqid *seqid; + int open_flags; + fmode_t fmode; + u32 share_access; + u32 access; + __u64 clientid; + struct stateowner_id id; + union { + struct { + struct iattr *attrs; + nfs4_verifier verifier; + }; + nfs4_stateid delegation; + __u32 delegation_type; + } u; + const struct qstr *name; + const struct nfs_server *server; + const u32 *bitmask; + const u32 *open_bitmap; + enum open_claim_type4 claim; + enum createmode4 createmode; + const struct nfs4_label *label; + umode_t umask; + struct nfs4_layoutget_args *lg_args; +}; + +struct nfs_openres { + struct nfs4_sequence_res seq_res; + nfs4_stateid stateid; + struct nfs_fh fh; + struct nfs4_change_info cinfo; + __u32 rflags; + struct nfs_fattr *f_attr; + struct nfs_seqid *seqid; + const struct nfs_server *server; + __u32 attrset[3]; + struct nfs4_string *owner; + struct nfs4_string *group_owner; + struct nfs4_open_delegation delegation; + __u32 access_request; + __u32 access_supported; + __u32 access_result; + struct nfs4_layoutget_res *lg_res; +}; + +struct nfs_open_confirmargs { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *fh; + nfs4_stateid *stateid; + struct nfs_seqid *seqid; +}; + +struct nfs_open_confirmres { + struct nfs4_sequence_res seq_res; + nfs4_stateid stateid; + struct nfs_seqid *seqid; +}; + +struct nfs4_opendata { + struct kref kref; + struct nfs_openargs o_arg; + struct nfs_openres o_res; + struct nfs_open_confirmargs c_arg; + struct nfs_open_confirmres c_res; + struct nfs4_string owner_name; + struct nfs4_string group_name; + struct nfs4_label *a_label; + struct nfs_fattr f_attr; + struct dentry *dir; + struct dentry *dentry; + struct nfs4_state_owner *owner; + struct nfs4_state *state; + struct iattr attrs; + struct nfs4_layoutget *lgp; + long unsigned int timestamp; + bool rpc_done; + bool file_created; + bool is_recover; + bool cancelled; + int rpc_status; +}; + +enum pnfs_layout_destroy_mode { + PNFS_LAYOUT_INVALIDATE = 0, + PNFS_LAYOUT_BULK_RETURN = 1, + PNFS_LAYOUT_FILE_BULK_RETURN = 2, +}; + +struct getdents_callback { + struct dir_context ctx; + char *name; + u64 ino; + int found; + int sequence; +}; + +enum { + CACHE_VALID = 0, + CACHE_NEGATIVE = 1, + CACHE_PENDING = 2, + CACHE_CLEANED = 3, +}; + +struct nfsd4_deviceid_map { + struct list_head hash; + u64 idx; + int fsid_type; + u32 fsid[0]; +}; + +struct svc_expkey { + struct cache_head h; + struct auth_domain *ek_client; + int ek_fsidtype; + u32 ek_fsid[6]; + struct path ek_path; + struct callback_head ek_rcu; +}; + +enum nfsd_fsid { + FSID_DEV = 0, + FSID_NUM = 1, + FSID_MAJOR_MINOR = 2, + FSID_ENCODE_DEV = 3, + FSID_UUID4_INUM = 4, + FSID_UUID8 = 5, + FSID_UUID16 = 6, + FSID_UUID16_INUM = 7, +}; + +struct flags___2 { + int flag; + char *name[2]; +}; + +enum rpc_accept_stat { + RPC_SUCCESS = 0, + RPC_PROG_UNAVAIL = 1, + RPC_PROG_MISMATCH = 2, + RPC_PROC_UNAVAIL = 3, + RPC_GARBAGE_ARGS = 4, + RPC_SYSTEM_ERR = 5, + RPC_DROP_REPLY = 60000, +}; + +enum opentype4 { + NFS4_OPEN_NOCREATE = 0, + NFS4_OPEN_CREATE = 1, +}; + +enum { + FATTR4_CLONE_BLKSIZE = 77, + FATTR4_SPACE_FREED = 78, + FATTR4_CHANGE_ATTR_TYPE = 79, + FATTR4_SEC_LABEL = 80, +}; + +enum gddrnf4_status { + GDD4_OK = 0, + GDD4_UNAVAIL = 1, +}; + +struct nfsd4_ssc_umount_item { + struct list_head nsui_list; + bool nsui_busy; + refcount_t nsui_refcnt; + long unsigned int nsui_expire; + struct vfsmount *nsui_vfsmount; + char nsui_ipaddr[64]; +}; + +enum vers_op { + NFSD_SET = 0, + NFSD_CLEAR = 1, + NFSD_TEST = 2, + NFSD_AVAIL = 3, +}; + +typedef struct { + stateid_t cs_stid; + unsigned char cs_type; + refcount_t cs_count; +} copy_stateid_t; + +struct nfs4_cpntf_state { + copy_stateid_t cp_stateid; + struct list_head cp_list; + stateid_t cp_p_stateid; + clientid_t cp_p_clid; + time64_t cpntf_time; +}; + +struct nfsd4_backchannel_ctl { + u32 bc_cb_program; + struct nfsd4_cb_sec bc_cb_sec; +}; + +struct nfsd4_bind_conn_to_session { + struct nfs4_sessionid sessionid; + u32 dir; +}; + +struct nfsd4_sessionid { + clientid_t clientid; + u32 sequence; + u32 reserved; +}; + +struct nfs4_ol_stateid; + +struct nfs4_openowner { + struct nfs4_stateowner oo_owner; + struct list_head oo_perclient; + struct list_head oo_close_lru; + struct nfs4_ol_stateid *oo_last_closed_stid; + time64_t oo_time; + unsigned char oo_flags; +}; + +struct nfs4_ol_stateid { + struct nfs4_stid st_stid; + struct list_head st_perfile; + struct list_head st_perstateowner; + struct list_head st_locks; + struct nfs4_stateowner *st_stateowner; + struct nfs4_clnt_odstate *st_clnt_odstate; + unsigned char st_access_bmap; + unsigned char st_deny_bmap; + struct nfs4_ol_stateid *st_openstp; + struct mutex st_mutex; +}; + +struct nfsd4_change_info { + u32 atomic; + u64 before_change; + u64 after_change; +}; + +struct nfsd4_access { + u32 ac_req_access; + u32 ac_supported; + u32 ac_resp_access; +}; + +struct nfsd4_close { + u32 cl_seqid; + stateid_t cl_stateid; +}; + +struct nfsd4_commit { + u64 co_offset; + u32 co_count; + nfs4_verifier co_verf; +}; + +struct nfsd4_create { + u32 cr_namelen; + char *cr_name; + u32 cr_type; + union { + struct { + u32 datalen; + char *data; + struct kvec first; + } link; + struct { + u32 specdata1; + u32 specdata2; + } dev; + } u; + u32 cr_bmval[3]; + struct iattr cr_iattr; + int cr_umask; + struct nfsd4_change_info cr_cinfo; + struct nfs4_acl *cr_acl; + struct xdr_netobj cr_label; +}; + +struct nfsd4_delegreturn { + stateid_t dr_stateid; +}; + +struct nfsd4_getattr { + u32 ga_bmval[3]; + struct svc_fh *ga_fhp; +}; + +struct nfsd4_link { + u32 li_namelen; + char *li_name; + struct nfsd4_change_info li_cinfo; +}; + +struct nfsd4_lock_denied { + clientid_t ld_clientid; + struct xdr_netobj ld_owner; + u64 ld_start; + u64 ld_length; + u32 ld_type; +}; + +struct nfsd4_lock { + u32 lk_type; + u32 lk_reclaim; + u64 lk_offset; + u64 lk_length; + u32 lk_is_new; + union { + struct { + u32 open_seqid; + stateid_t open_stateid; + u32 lock_seqid; + clientid_t clientid; + struct xdr_netobj owner; + } new; + struct { + stateid_t lock_stateid; + u32 lock_seqid; + } old; + } v; + stateid_t lk_resp_stateid; + struct nfsd4_lock_denied lk_denied; +}; + +struct nfsd4_lockt { + u32 lt_type; + clientid_t lt_clientid; + struct xdr_netobj lt_owner; + u64 lt_offset; + u64 lt_length; + struct nfsd4_lock_denied lt_denied; +}; + +struct nfsd4_locku { + u32 lu_type; + u32 lu_seqid; + stateid_t lu_stateid; + u64 lu_offset; + u64 lu_length; +}; + +struct nfsd4_lookup { + u32 lo_len; + char *lo_name; +}; + +struct nfsd4_putfh { + u32 pf_fhlen; + char *pf_fhval; + bool no_verify; +}; + +struct nfsd4_getxattr { + char *getxa_name; + u32 getxa_len; + void *getxa_buf; +}; + +struct nfsd4_setxattr { + u32 setxa_flags; + char *setxa_name; + char *setxa_buf; + u32 setxa_len; + struct nfsd4_change_info setxa_cinfo; +}; + +struct nfsd4_removexattr { + char *rmxa_name; + struct nfsd4_change_info rmxa_cinfo; +}; + +struct nfsd4_listxattrs { + u64 lsxa_cookie; + u32 lsxa_maxcount; + char *lsxa_buf; + u32 lsxa_len; +}; + +struct nfsd4_open { + u32 op_claim_type; + u32 op_fnamelen; + char *op_fname; + u32 op_delegate_type; + stateid_t op_delegate_stateid; + u32 op_why_no_deleg; + u32 op_create; + u32 op_createmode; + int op_umask; + u32 op_bmval[3]; + struct iattr op_iattr; + long: 64; + long: 64; + nfs4_verifier op_verf; + clientid_t op_clientid; + struct xdr_netobj op_owner; + u32 op_seqid; + u32 op_share_access; + u32 op_share_deny; + u32 op_deleg_want; + stateid_t op_stateid; + __be32 op_xdr_error; + struct nfsd4_change_info op_cinfo; + u32 op_rflags; + bool op_recall; + bool op_truncate; + bool op_created; + struct nfs4_openowner *op_openowner; + struct file *op_filp; + struct nfs4_file *op_file; + struct nfs4_ol_stateid *op_stp; + struct nfs4_clnt_odstate *op_odstate; + struct nfs4_acl *op_acl; + struct xdr_netobj op_label; + struct svc_rqst *op_rqstp; + long: 64; + long: 64; +}; + +struct nfsd4_open_confirm { + stateid_t oc_req_stateid; + u32 oc_seqid; + stateid_t oc_resp_stateid; +}; + +struct nfsd4_open_downgrade { + stateid_t od_stateid; + u32 od_seqid; + u32 od_share_access; + u32 od_deleg_want; + u32 od_share_deny; +}; + +struct nfsd4_read { + stateid_t rd_stateid; + u64 rd_offset; + u32 rd_length; + int rd_vlen; + struct nfsd_file *rd_nf; + struct svc_rqst *rd_rqstp; + struct svc_fh *rd_fhp; + u32 rd_eof; +}; + +struct nfsd4_readdir { + u64 rd_cookie; + nfs4_verifier rd_verf; + u32 rd_dircount; + u32 rd_maxcount; + u32 rd_bmval[3]; + struct svc_rqst *rd_rqstp; + struct svc_fh *rd_fhp; + struct readdir_cd common; + struct xdr_stream *xdr; + int cookie_offset; +}; + +struct nfsd4_release_lockowner { + clientid_t rl_clientid; + struct xdr_netobj rl_owner; +}; + +struct nfsd4_readlink { + struct svc_rqst *rl_rqstp; + struct svc_fh *rl_fhp; +}; + +struct nfsd4_remove { + u32 rm_namelen; + char *rm_name; + struct nfsd4_change_info rm_cinfo; +}; + +struct nfsd4_rename { + u32 rn_snamelen; + char *rn_sname; + u32 rn_tnamelen; + char *rn_tname; + struct nfsd4_change_info rn_sinfo; + struct nfsd4_change_info rn_tinfo; +}; + +struct nfsd4_secinfo { + u32 si_namelen; + char *si_name; + struct svc_export *si_exp; +}; + +struct nfsd4_secinfo_no_name { + u32 sin_style; + struct svc_export *sin_exp; +}; + +struct nfsd4_setattr { + stateid_t sa_stateid; + u32 sa_bmval[3]; + struct iattr sa_iattr; + struct nfs4_acl *sa_acl; + struct xdr_netobj sa_label; +}; + +struct nfsd4_setclientid { + nfs4_verifier se_verf; + struct xdr_netobj se_name; + u32 se_callback_prog; + u32 se_callback_netid_len; + char *se_callback_netid_val; + u32 se_callback_addr_len; + char *se_callback_addr_val; + u32 se_callback_ident; + clientid_t se_clientid; + nfs4_verifier se_confirm; +}; + +struct nfsd4_setclientid_confirm { + clientid_t sc_clientid; + nfs4_verifier sc_confirm; +}; + +struct nfsd4_test_stateid { + u32 ts_num_ids; + struct list_head ts_stateid_list; +}; + +struct nfsd4_free_stateid { + stateid_t fr_stateid; +}; + +struct nfsd4_get_dir_delegation { + u32 gdda_signal_deleg_avail; + u32 gdda_notification_types[1]; + struct timespec64 gdda_child_attr_delay; + struct timespec64 gdda_dir_attr_delay; + u32 gdda_child_attributes[3]; + u32 gdda_dir_attributes[3]; + u32 gddrnf_status; + nfs4_verifier gddr_cookieverf; + stateid_t gddr_stateid; + u32 gddr_notification[1]; + u32 gddr_child_attributes[3]; + u32 gddr_dir_attributes[3]; + bool gddrnf_will_signal_deleg_avail; +}; + +struct nfsd4_verify { + u32 ve_bmval[3]; + u32 ve_attrlen; + char *ve_attrval; +}; + +struct nfsd4_write { + stateid_t wr_stateid; + u64 wr_offset; + u32 wr_stable_how; + u32 wr_buflen; + struct xdr_buf wr_payload; + u32 wr_bytes_written; + u32 wr_how_written; + nfs4_verifier wr_verifier; +}; + +struct nfsd4_exchange_id { + nfs4_verifier verifier; + struct xdr_netobj clname; + u32 flags; + clientid_t clientid; + u32 seqid; + u32 spa_how; + u32 spo_must_enforce[3]; + u32 spo_must_allow[3]; + struct xdr_netobj nii_domain; + struct xdr_netobj nii_name; + struct timespec64 nii_time; +}; + +struct nfsd4_sequence { + struct nfs4_sessionid sessionid; + u32 seqid; + u32 slotid; + u32 maxslots; + u32 cachethis; + u32 status_flags; +}; + +struct nfsd4_destroy_session { + struct nfs4_sessionid sessionid; +}; + +struct nfsd4_destroy_clientid { + clientid_t clientid; +}; + +struct nfsd4_reclaim_complete { + u32 rca_one_fs; +}; + +struct nfsd4_deviceid { + u64 fsid_idx; + u32 generation; + u32 pad; +}; + +struct nfsd4_layout_seg { + u32 iomode; + u64 offset; + u64 length; +}; + +struct nfsd4_getdeviceinfo { + struct nfsd4_deviceid gd_devid; + u32 gd_layout_type; + u32 gd_maxcount; + u32 gd_notify_types; + void *gd_device; +}; + +struct nfsd4_layoutget { + u64 lg_minlength; + u32 lg_signal; + u32 lg_layout_type; + u32 lg_maxcount; + stateid_t lg_sid; + struct nfsd4_layout_seg lg_seg; + void *lg_content; +}; + +struct nfsd4_layoutcommit { + stateid_t lc_sid; + struct nfsd4_layout_seg lc_seg; + u32 lc_reclaim; + u32 lc_newoffset; + u64 lc_last_wr; + struct timespec64 lc_mtime; + u32 lc_layout_type; + u32 lc_up_len; + void *lc_up_layout; + bool lc_size_chg; + u64 lc_newsize; +}; + +struct nfsd4_layoutreturn { + u32 lr_return_type; + u32 lr_layout_type; + struct nfsd4_layout_seg lr_seg; + u32 lr_reclaim; + u32 lrf_body_len; + void *lrf_body; + stateid_t lr_sid; + bool lrs_present; +}; + +struct nfsd4_fallocate { + stateid_t falloc_stateid; + loff_t falloc_offset; + u64 falloc_length; +}; + +struct nfsd4_clone { + stateid_t cl_src_stateid; + stateid_t cl_dst_stateid; + u64 cl_src_pos; + u64 cl_dst_pos; + u64 cl_count; +}; + +struct nfsd4_copy { + stateid_t cp_src_stateid; + stateid_t cp_dst_stateid; + u64 cp_src_pos; + u64 cp_dst_pos; + u64 cp_count; + struct nl4_server *cp_src; + long unsigned int cp_flags; + __be32 nfserr; + struct nfsd42_write_res cp_res; + struct knfsd_fh fh; + struct nfs4_client *cp_clp; + struct nfsd_file *nf_src; + struct nfsd_file *nf_dst; + copy_stateid_t cp_stateid; + struct list_head copies; + struct task_struct *copy_task; + refcount_t refcount; + struct nfsd4_ssc_umount_item *ss_nsui; + struct nfs_fh c_fh; + nfs4_stateid stateid; + struct nfsd_net *cp_nn; +}; + +struct nfsd4_seek { + stateid_t seek_stateid; + loff_t seek_offset; + u32 seek_whence; + u32 seek_eof; + loff_t seek_pos; +}; + +struct nfsd4_offload_status { + stateid_t stateid; + u64 count; + __be32 status; + bool completed; +}; + +struct nfsd4_copy_notify { + stateid_t cpn_src_stateid; + struct nl4_server *cpn_dst; + stateid_t cpn_cnr_stateid; + struct timespec64 cpn_lease_time; + struct nl4_server *cpn_src; +}; + +union nfsd4_op_u { + struct nfsd4_access access; + struct nfsd4_close close; + struct nfsd4_commit commit; + struct nfsd4_create create; + struct nfsd4_delegreturn delegreturn; + struct nfsd4_getattr getattr; + struct svc_fh *getfh; + struct nfsd4_link link; + struct nfsd4_lock lock; + struct nfsd4_lockt lockt; + struct nfsd4_locku locku; + struct nfsd4_lookup lookup; + struct nfsd4_verify nverify; + struct nfsd4_open open; + struct nfsd4_open_confirm open_confirm; + struct nfsd4_open_downgrade open_downgrade; + struct nfsd4_putfh putfh; + struct nfsd4_read read; + struct nfsd4_readdir readdir; + struct nfsd4_readlink readlink; + struct nfsd4_remove remove; + struct nfsd4_rename rename; + clientid_t renew; + struct nfsd4_secinfo secinfo; + struct nfsd4_setattr setattr; + struct nfsd4_setclientid setclientid; + struct nfsd4_setclientid_confirm setclientid_confirm; + struct nfsd4_verify verify; + struct nfsd4_write write; + struct nfsd4_release_lockowner release_lockowner; + struct nfsd4_exchange_id exchange_id; + struct nfsd4_backchannel_ctl backchannel_ctl; + struct nfsd4_bind_conn_to_session bind_conn_to_session; + struct nfsd4_create_session create_session; + struct nfsd4_destroy_session destroy_session; + struct nfsd4_destroy_clientid destroy_clientid; + struct nfsd4_sequence sequence; + struct nfsd4_reclaim_complete reclaim_complete; + struct nfsd4_test_stateid test_stateid; + struct nfsd4_free_stateid free_stateid; + struct nfsd4_get_dir_delegation get_dir_delegation; + struct nfsd4_getdeviceinfo getdeviceinfo; + struct nfsd4_layoutget layoutget; + struct nfsd4_layoutcommit layoutcommit; + struct nfsd4_layoutreturn layoutreturn; + struct nfsd4_secinfo_no_name secinfo_no_name; + struct nfsd4_fallocate allocate; + struct nfsd4_fallocate deallocate; + struct nfsd4_clone clone; + struct nfsd4_copy copy; + struct nfsd4_offload_status offload_status; + struct nfsd4_copy_notify copy_notify; + struct nfsd4_seek seek; + struct nfsd4_getxattr getxattr; + struct nfsd4_setxattr setxattr; + struct nfsd4_listxattrs listxattrs; + struct nfsd4_removexattr removexattr; +}; + +struct nfsd4_operation; + +struct nfsd4_op { + u32 opnum; + __be32 status; + const struct nfsd4_operation *opdesc; + struct nfs4_replay *replay; + long: 64; + union nfsd4_op_u u; +}; + +struct nfsd4_operation { + __be32 (*op_func)(struct svc_rqst *, struct nfsd4_compound_state *, union nfsd4_op_u *); + void (*op_release)(union nfsd4_op_u *); + u32 op_flags; + char *op_name; + u32 (*op_rsize_bop)(const struct svc_rqst *, const struct nfsd4_op *); + void (*op_get_currentstateid)(struct nfsd4_compound_state *, union nfsd4_op_u *); + void (*op_set_currentstateid)(struct nfsd4_compound_state *, union nfsd4_op_u *); +}; + +struct svcxdr_tmpbuf { + struct svcxdr_tmpbuf *next; + char buf[0]; +}; + +struct nfsd4_compoundargs { + struct xdr_stream *xdr; + struct svcxdr_tmpbuf *to_free; + struct svc_rqst *rqstp; + char *tag; + u32 taglen; + u32 minorversion; + u32 client_opcnt; + u32 opcnt; + bool splice_ok; + struct nfsd4_op *ops; + struct nfsd4_op iops[8]; +}; + +enum nfsd4_op_flags { + ALLOWED_WITHOUT_FH = 1, + ALLOWED_ON_ABSENT_FS = 2, + ALLOWED_AS_FIRST_OP = 4, + OP_HANDLES_WRONGSEC = 8, + OP_IS_PUTFH_LIKE = 16, + OP_MODIFIES_SOMETHING = 32, + OP_CACHEME = 64, + OP_CLEAR_STATEID = 128, + OP_NONTRIVIAL_ERROR_ENCODE = 256, +}; + +struct nlm_share { + struct nlm_share *s_next; + struct nlm_host *s_host; + struct nlm_file *s_file; + struct xdr_netobj s_owner; + u32 s_access; + u32 s_mode; +}; + +struct cifsLockInfo { + struct list_head llist; + struct list_head blist; + wait_queue_head_t block_q; + __u64 offset; + __u64 length; + __u32 pid; + __u16 type; + __u16 flags; +}; + +enum smb3_rw_credits_trace { + cifs_trace_rw_credits_call_readv_adjust = 0, + cifs_trace_rw_credits_call_writev_adjust = 1, + cifs_trace_rw_credits_free_subreq = 2, + cifs_trace_rw_credits_issue_read_adjust = 3, + cifs_trace_rw_credits_issue_write_adjust = 4, + cifs_trace_rw_credits_no_adjust_up = 5, + cifs_trace_rw_credits_old_session = 6, + cifs_trace_rw_credits_read_response_add = 7, + cifs_trace_rw_credits_read_response_clear = 8, + cifs_trace_rw_credits_read_resubmit = 9, + cifs_trace_rw_credits_read_submit = 10, + cifs_trace_rw_credits_write_prepare = 11, + cifs_trace_rw_credits_write_response_add = 12, + cifs_trace_rw_credits_write_response_clear = 13, + cifs_trace_rw_credits_zero_in_flight = 14, +} __attribute__((mode(byte))); + +enum cifs_spnego_negtokeninit_actions { + ACT_cifs_gssapi_this_mech = 0, + ACT_cifs_neg_token_init_mech_type = 1, + NR__cifs_spnego_negtokeninit_actions = 2, +}; + +struct NTFS_BOOT { + u8 jump_code[3]; + u8 system_id[8]; + u8 bytes_per_sector[2]; + u8 sectors_per_clusters; + u8 unused1[7]; + u8 media_type; + u8 unused2[2]; + __le16 sct_per_track; + __le16 heads; + __le32 hidden_sectors; + u8 unused3[4]; + u8 bios_drive_num; + u8 unused4; + u8 signature_ex; + u8 unused5; + __le64 sectors_per_volume; + __le64 mft_clst; + __le64 mft2_clst; + s8 record_size; + u8 unused6[3]; + s8 index_size; + u8 unused7[3]; + __le64 serial_num; + __le32 check_sum; + u8 boot_code[426]; + u8 boot_magic[2]; +}; + +struct VOLUME_INFO { + __le64 res1; + u8 major_ver; + u8 minor_ver; + __le16 flags; +}; + +enum Opt { + Opt_uid___5 = 0, + Opt_gid___5 = 1, + Opt_umask___2 = 2, + Opt_dmask___2 = 3, + Opt_fmask___2 = 4, + Opt_immutable___2 = 5, + Opt_discard___5 = 6, + Opt_force = 7, + Opt_sparse = 8, + Opt_nohidden = 9, + Opt_hide_dot_files = 10, + Opt_windows_names = 11, + Opt_showmeta = 12, + Opt_acl___4 = 13, + Opt_iocharset___2 = 14, + Opt_prealloc = 15, + Opt_nocase___3 = 16, + Opt_err___7 = 17, +}; + +enum ovl_path_type { + __OVL_PATH_UPPER = 1, + __OVL_PATH_MERGE = 2, + __OVL_PATH_ORIGIN = 4, +}; + +struct xfs_attr3_rmt_hdr { + __be32 rm_magic; + __be32 rm_offset; + __be32 rm_bytes; + __be32 rm_crc; + uuid_t rm_uuid; + __be64 rm_owner; + __be64 rm_blkno; + __be64 rm_lsn; +}; + +struct xfs_legacy_timestamp { + __be32 t_sec; + __be32 t_nsec; +}; + +struct xfs_da_node_hdr { + struct xfs_da_blkinfo info; + __be16 __count; + __be16 __level; +}; + +struct xfs_da_node_entry { + __be32 hashval; + __be32 before; +}; + +struct xfs_da_intnode { + struct xfs_da_node_hdr hdr; + struct xfs_da_node_entry __btree[0]; +}; + +struct xfs_attr_leaf_map { + __be16 base; + __be16 size; +}; + +typedef struct xfs_attr_leaf_map xfs_attr_leaf_map_t; + +struct xfs_attr_leaf_hdr { + xfs_da_blkinfo_t info; + __be16 count; + __be16 usedbytes; + __be16 firstused; + __u8 holes; + __u8 pad1; + xfs_attr_leaf_map_t freemap[3]; +}; + +typedef struct xfs_attr_leaf_hdr xfs_attr_leaf_hdr_t; + +struct xfs_attr_leaf_entry { + __be32 hashval; + __be16 nameidx; + __u8 flags; + __u8 pad2; +}; + +typedef struct xfs_attr_leaf_entry xfs_attr_leaf_entry_t; + +struct xfs_attr_leaf_name_remote { + __be32 valueblk; + __be32 valuelen; + __u8 namelen; + __u8 name[0]; +}; + +typedef struct xfs_attr_leaf_name_remote xfs_attr_leaf_name_remote_t; + +struct xfs_attr_leafblock { + xfs_attr_leaf_hdr_t hdr; + xfs_attr_leaf_entry_t entries[0]; +}; + +typedef struct xfs_attr_leafblock xfs_attr_leafblock_t; + +struct xfs_attr3_leaf_hdr { + struct xfs_da3_blkinfo info; + __be16 count; + __be16 usedbytes; + __be16 firstused; + __u8 holes; + __u8 pad1; + struct xfs_attr_leaf_map freemap[3]; + __be32 pad2; +}; + +struct xfs_attr3_leafblock { + struct xfs_attr3_leaf_hdr hdr; + struct xfs_attr_leaf_entry entries[0]; +}; + +struct xfs_da3_icnode_hdr { + uint32_t forw; + uint32_t back; + uint16_t magic; + uint16_t count; + uint16_t level; + struct xfs_da_node_entry *btree; +}; + +struct xfs_attr3_icleaf_hdr { + uint32_t forw; + uint32_t back; + uint16_t magic; + uint16_t count; + uint16_t usedbytes; + uint32_t firstused; + __u8 holes; + struct { + uint16_t base; + uint16_t size; + } freemap[3]; +}; + +struct xfs_bstime { + __kernel_long_t tv_sec; + __s32 tv_nsec; +}; + +typedef struct xfs_bstime xfs_bstime_t; + +struct xfs_bstat { + __u64 bs_ino; + __u16 bs_mode; + __u16 bs_nlink; + __u32 bs_uid; + __u32 bs_gid; + __u32 bs_rdev; + __s32 bs_blksize; + __s64 bs_size; + xfs_bstime_t bs_atime; + xfs_bstime_t bs_mtime; + xfs_bstime_t bs_ctime; + int64_t bs_blocks; + __u32 bs_xflags; + __s32 bs_extsize; + __s32 bs_extents; + __u32 bs_gen; + __u16 bs_projid_lo; + __u16 bs_forkoff; + __u16 bs_projid_hi; + uint16_t bs_sick; + uint16_t bs_checked; + unsigned char bs_pad[2]; + __u32 bs_cowextsize; + __u32 bs_dmevmask; + __u16 bs_dmstate; + __u16 bs_aextents; +}; + +struct xfs_bulkstat { + uint64_t bs_ino; + uint64_t bs_size; + uint64_t bs_blocks; + uint64_t bs_xflags; + int64_t bs_atime; + int64_t bs_mtime; + int64_t bs_ctime; + int64_t bs_btime; + uint32_t bs_gen; + uint32_t bs_uid; + uint32_t bs_gid; + uint32_t bs_projectid; + uint32_t bs_atime_nsec; + uint32_t bs_mtime_nsec; + uint32_t bs_ctime_nsec; + uint32_t bs_btime_nsec; + uint32_t bs_blksize; + uint32_t bs_rdev; + uint32_t bs_cowextsize_blks; + uint32_t bs_extsize_blks; + uint32_t bs_nlink; + uint32_t bs_extents; + uint32_t bs_aextents; + uint16_t bs_version; + uint16_t bs_forkoff; + uint16_t bs_sick; + uint16_t bs_checked; + uint16_t bs_mode; + uint16_t bs_pad2; + uint64_t bs_extents64; + uint64_t bs_pad[6]; +}; + +struct xfs_inogrp { + __u64 xi_startino; + __s32 xi_alloccount; + __u64 xi_allocmask; +}; + +struct xfs_inumbers { + uint64_t xi_startino; + uint64_t xi_allocmask; + uint8_t xi_alloccount; + uint8_t xi_version; + uint8_t xi_padding[6]; +}; + +struct xfs_ibulk { + struct xfs_mount *mp; + struct mnt_idmap *idmap; + void *ubuffer; + xfs_ino_t startino; + unsigned int icount; + unsigned int ocount; + unsigned int flags; +}; + +typedef int (*bulkstat_one_fmt_pf)(struct xfs_ibulk *, const struct xfs_bulkstat *); + +typedef int (*inumbers_fmt_pf)(struct xfs_ibulk *, const struct xfs_inumbers *); + +struct xfs_bstat_chunk { + bulkstat_one_fmt_pf formatter; + struct xfs_ibulk *breq; + struct xfs_bulkstat *buf; +}; + +struct xfs_inumbers_chunk { + inumbers_fmt_pf formatter; + struct xfs_ibulk *breq; +}; + +struct xfs_dq_logformat { + uint16_t qlf_type; + uint16_t qlf_size; + xfs_dqid_t qlf_id; + int64_t qlf_blkno; + int32_t qlf_len; + uint32_t qlf_boffset; +}; + +struct xfs_qoff_logformat { + short unsigned int qf_type; + short unsigned int qf_size; + unsigned int qf_flags; + char qf_pad[12]; +}; + +struct xfs_phys_extent { + uint64_t pe_startblock; + uint32_t pe_len; + uint32_t pe_flags; +}; + +struct xfs_cui_log_format { + uint16_t cui_type; + uint16_t cui_size; + uint32_t cui_nextents; + uint64_t cui_id; + struct xfs_phys_extent cui_extents[0]; +}; + +struct xfs_cud_log_format { + uint16_t cud_type; + uint16_t cud_size; + uint32_t __pad; + uint64_t cud_cui_id; +}; + +struct xfs_cui_log_item { + struct xfs_log_item cui_item; + atomic_t cui_refcount; + atomic_t cui_next_extent; + struct xfs_cui_log_format cui_format; +}; + +struct xfs_cud_log_item { + struct xfs_log_item cud_item; + struct xfs_cui_log_item *cud_cuip; + struct xfs_cud_log_format cud_format; +}; + +struct debugfs_fs_info { + kuid_t uid; + kgid_t gid; + umode_t mode; + unsigned int opts; +}; + +enum { + Opt_uid___6 = 0, + Opt_gid___6 = 1, + Opt_mode___4 = 2, + Opt_source___2 = 3, +}; + +enum { + __PAGE_UNLOCK_BIT = 0, + PAGE_UNLOCK = 1, + __PAGE_UNLOCK_SEQ = 0, + __PAGE_START_WRITEBACK_BIT = 1, + PAGE_START_WRITEBACK = 2, + __PAGE_START_WRITEBACK_SEQ = 1, + __PAGE_END_WRITEBACK_BIT = 2, + PAGE_END_WRITEBACK = 4, + __PAGE_END_WRITEBACK_SEQ = 2, + __PAGE_SET_ORDERED_BIT = 3, + PAGE_SET_ORDERED = 8, + __PAGE_SET_ORDERED_SEQ = 3, +}; + +struct btrfs_map_token { + struct extent_buffer *eb; + char *kaddr; + long unsigned int offset; +}; + +struct btrfs_replace_extent_info { + u64 disk_offset; + u64 disk_len; + u64 data_offset; + u64 data_len; + u64 file_offset; + char *extent_buf; + bool is_new_extent; + bool update_times; + int qgroup_reserved; + int insertions; +}; + +struct btrfs_drop_extents_args { + struct btrfs_path *path; + u64 start; + u64 end; + bool drop_cache; + bool replace_extent; + u32 extent_item_size; + u64 drop_end; + u64 bytes_found; + bool extent_inserted; +}; + +struct btrfs_file_private { + void *filldir_buf; + u64 last_index; + struct extent_state *llseek_cached_state; + struct task_struct *owner_task; +}; + +struct btrfs_zoned_device_info { + u64 zone_size; + u8 zone_size_shift; + u32 nr_zones; + unsigned int max_active_zones; + int reserved_active_zones; + atomic_t active_zones_left; + long unsigned int *seq_zones; + long unsigned int *empty_zones; + long unsigned int *active_zones; + struct blk_zone *zone_cache; + struct blk_zone sb_zones[6]; +}; + +struct btrfs_swapfile_pin { + struct rb_node node; + void *ptr; + struct inode *inode; + bool is_block_group; + int bg_extent_count; +}; + +struct btrfs_backref_shared_cache_entry { + u64 bytenr; + u64 gen; + bool is_shared; +}; + +struct btrfs_backref_share_check_ctx { + struct ulist refs; + u64 curr_leaf_bytenr; + u64 prev_leaf_bytenr; + struct btrfs_backref_shared_cache_entry path_cache_entries[8]; + bool use_path_cache; + struct { + u64 bytenr; + bool is_shared; + } prev_extents_cache[8]; + int prev_extents_cache_slot; +}; + +struct btrfs_iget_args { + u64 ino; + struct btrfs_root *root; +}; + +struct btrfs_rename_ctx { + u64 index; +}; + +struct data_reloc_warn { + struct btrfs_path path; + struct btrfs_fs_info *fs_info; + u64 extent_item_size; + u64 logical; + int mirror_num; +}; + +struct async_extent { + u64 start; + u64 ram_size; + u64 compressed_size; + struct folio **folios; + long unsigned int nr_folios; + int compress_type; + struct list_head list; +}; + +struct async_cow; + +struct async_chunk { + struct btrfs_inode *inode; + struct folio *locked_folio; + u64 start; + u64 end; + blk_opf_t write_flags; + struct list_head extents; + struct cgroup_subsys_state *blkcg_css; + struct btrfs_work work; + struct async_cow *async_cow; +}; + +struct async_cow { + atomic_t num_chunks; + struct async_chunk chunks[0]; +}; + +struct can_nocow_file_extent_args { + u64 start; + u64 end; + bool writeback_path; + bool strict; + bool free_path; + struct btrfs_file_extent file_extent; +}; + +struct btrfs_writepage_fixup { + struct folio *folio; + struct btrfs_inode *inode; + struct btrfs_work work; +}; + +struct dir_entry { + u64 ino; + u64 offset; + unsigned int type; + int name_len; +}; + +struct btrfs_delalloc_work { + struct inode *inode; + struct completion completion; + struct list_head list; + struct btrfs_work work; +}; + +struct btrfs_encoded_read_private { + wait_queue_head_t wait; + atomic_t pending; + blk_status_t status; +}; + +struct btrfs_swap_info { + u64 start; + u64 block_start; + u64 block_len; + u64 lowest_ppage; + u64 highest_ppage; + long unsigned int nr_pages; + int nr_extents; +}; + +typedef union { +} release_pages_arg; + +struct bvec_iter_all { + struct bio_vec bv; + int idx; + unsigned int done; +}; + +enum { + F2FS_GET_BLOCK_DEFAULT = 0, + F2FS_GET_BLOCK_FIEMAP = 1, + F2FS_GET_BLOCK_BMAP = 2, + F2FS_GET_BLOCK_DIO = 3, + F2FS_GET_BLOCK_PRE_DIO = 4, + F2FS_GET_BLOCK_PRE_AIO = 5, + F2FS_GET_BLOCK_PRECACHE = 6, +}; + +enum need_lock_type { + LOCK_REQ___2 = 0, + LOCK_DONE = 1, + LOCK_RETRY = 2, +}; + +struct bio_entry { + struct bio *bio; + struct list_head list; +}; + +struct bio_post_read_ctx; + +struct bio_iostat_ctx { + struct f2fs_sb_info *sbi; + long unsigned int submit_ts; + enum page_type type; + struct bio_post_read_ctx *post_read_ctx; +}; + +struct bio_post_read_ctx { + struct bio *bio; + struct f2fs_sb_info *sbi; + struct work_struct work; + unsigned int enabled_steps; + bool decompression_attempted; + block_t fs_blkaddr; +}; + +enum bio_post_read_step { + STEP_DECRYPT = 1, + STEP_DECOMPRESS = 0, + STEP_VERITY = 0, +}; + +struct fsverity_info; + +struct crypto_queue { + struct list_head list; + struct list_head *backlog; + unsigned int qlen; + unsigned int max_qlen; +}; + +struct crypto_attr_alg { + char name[128]; +}; + +enum { + CRYPTO_MSG_ALG_REQUEST = 0, + CRYPTO_MSG_ALG_REGISTER = 1, + CRYPTO_MSG_ALG_LOADED = 2, +}; + +struct crypto_larval { + struct crypto_alg alg; + struct crypto_alg *adult; + struct completion completion; + u32 mask; + bool test_started; +}; + +enum { + CRYPTOA_UNSPEC = 0, + CRYPTOA_ALG = 1, + CRYPTOA_TYPE = 2, + __CRYPTOA_MAX = 3, +}; + +struct cryptomgr_param { + struct rtattr *tb[34]; + struct { + struct rtattr attr; + struct crypto_attr_type data; + } type; + struct { + struct rtattr attr; + struct crypto_attr_alg data; + } attrs[32]; + char template[128]; + struct crypto_larval *larval; + u32 otype; + u32 omask; +}; + +struct crypto_test_param { + char driver[128]; + char alg[128]; + u32 type; +}; + +struct serpent_ctx { + u32 expkey[132]; +}; + +struct drbg_string { + const unsigned char *buf; + size_t len; + struct list_head list; +}; + +typedef uint32_t drbg_flag_t; + +struct drbg_core { + drbg_flag_t flags; + __u8 statelen; + __u8 blocklen_bytes; + char cra_name[128]; + char backend_cra_name[128]; +}; + +struct drbg_state; + +struct drbg_state_ops { + int (*update)(struct drbg_state *, struct list_head *, int); + int (*generate)(struct drbg_state *, unsigned char *, unsigned int, struct list_head *); + int (*crypto_init)(struct drbg_state *); + int (*crypto_fini)(struct drbg_state *); +}; + +enum drbg_seed_state { + DRBG_SEED_STATE_UNSEEDED = 0, + DRBG_SEED_STATE_PARTIAL = 1, + DRBG_SEED_STATE_FULL = 2, +}; + +struct drbg_state { + struct mutex drbg_mutex; + unsigned char *V; + unsigned char *Vbuf; + unsigned char *C; + unsigned char *Cbuf; + size_t reseed_ctr; + size_t reseed_threshold; + unsigned char *scratchpad; + unsigned char *scratchpadbuf; + void *priv_data; + struct crypto_skcipher *ctr_handle; + struct skcipher_request *ctr_req; + __u8 *outscratchpadbuf; + __u8 *outscratchpad; + struct crypto_wait ctr_wait; + struct scatterlist sg_in; + struct scatterlist sg_out; + enum drbg_seed_state seeded; + long unsigned int last_seed_time; + bool pr; + bool fips_primed; + unsigned char *prev; + struct crypto_rng *jent; + const struct drbg_state_ops *d_ops; + const struct drbg_core *core; + struct drbg_string test_data; +}; + +enum drbg_prefixes { + DRBG_PREFIX0 = 0, + DRBG_PREFIX1 = 1, + DRBG_PREFIX2 = 2, + DRBG_PREFIX3 = 3, +}; + +struct sdesc { + struct shash_desc shash; + char ctx[0]; +}; + +enum blk_integrity_flags { + BLK_INTEGRITY_NOVERIFY = 1, + BLK_INTEGRITY_NOGENERATE = 2, + BLK_INTEGRITY_DEVICE_CAPABLE = 4, + BLK_INTEGRITY_REF_TAG = 8, + BLK_INTEGRITY_STACKED = 16, +}; + +struct blk_ia_range_sysfs_entry { + struct attribute attr; + ssize_t (*show)(struct blk_independent_access_range *, char *); +}; + +struct io_uring_file_index_range { + __u32 off; + __u32 len; + __u64 resv; +}; + +struct io_fadvise { + struct file *file; + u64 offset; + u64 len; + u32 advice; +}; + +struct io_madvise { + struct file *file; + u64 addr; + u64 len; + u32 advice; +}; + +struct rusage { + struct __kernel_old_timeval ru_utime; + struct __kernel_old_timeval ru_stime; + __kernel_long_t ru_maxrss; + __kernel_long_t ru_ixrss; + __kernel_long_t ru_idrss; + __kernel_long_t ru_isrss; + __kernel_long_t ru_minflt; + __kernel_long_t ru_majflt; + __kernel_long_t ru_nswap; + __kernel_long_t ru_inblock; + __kernel_long_t ru_oublock; + __kernel_long_t ru_msgsnd; + __kernel_long_t ru_msgrcv; + __kernel_long_t ru_nsignals; + __kernel_long_t ru_nvcsw; + __kernel_long_t ru_nivcsw; +}; + +struct siginfo { + union { + struct { + int si_signo; + int si_errno; + int si_code; + union __sifields _sifields; + }; + int _si_pad[32]; + }; +}; + +struct waitid_info { + pid_t pid; + uid_t uid; + int status; + int cause; +}; + +struct wait_opts { + enum pid_type wo_type; + int wo_flags; + struct pid *wo_pid; + struct waitid_info *wo_info; + int wo_stat; + struct rusage *wo_rusage; + wait_queue_entry_t child_wait; + int notask_error; +}; + +struct io_waitid_async { + struct io_kiocb *req; + struct wait_opts wo; +}; + +struct io_waitid { + struct file *file; + int which; + pid_t upid; + int options; + atomic_t refs; + struct wait_queue_head *head; + struct siginfo *infop; + struct waitid_info info; +}; + +struct karatsuba_ctx { + struct karatsuba_ctx *next; + mpi_ptr_t tspace; + mpi_size_t tspace_size; + mpi_ptr_t tp; + mpi_size_t tp_size; +}; + +typedef struct { + const uint8_t *externalDict; + size_t extDictSize; + const uint8_t *prefixEnd; + size_t prefixSize; +} LZ4_streamDecode_t_internal; + +typedef union { + long long unsigned int table[4]; + LZ4_streamDecode_t_internal internal_donotuse; +} LZ4_streamDecode_t; + +typedef enum { + endOnOutputSize = 0, + endOnInputSize = 1, +} endCondition_directive; + +typedef enum { + decode_full_block = 0, + partial_decode = 1, +} earlyEnd_directive; + +struct cpu_rmap { + struct kref refcount; + u16 size; + void **obj; + struct { + u16 index; + u16 dist; + } near[0]; +}; + +struct irq_glue { + struct irq_affinity_notify notify; + struct cpu_rmap *rmap; + u16 index; +}; + +struct sg_splitter { + struct scatterlist *in_sg0; + int nents; + off_t skip_sg0; + unsigned int length_last_sg; + struct scatterlist *out_sg; +}; + +struct bus_attribute { + struct attribute attr; + ssize_t (*show)(const struct bus_type *, char *); + ssize_t (*store)(const struct bus_type *, const char *, size_t); +}; + +enum pci_mmap_state { + pci_mmap_io = 0, + pci_mmap_mem = 1, +}; + +enum pcie_link_width { + PCIE_LNK_WIDTH_RESRV = 0, + PCIE_LNK_X1 = 1, + PCIE_LNK_X2 = 2, + PCIE_LNK_X4 = 4, + PCIE_LNK_X8 = 8, + PCIE_LNK_X12 = 12, + PCIE_LNK_X16 = 16, + PCIE_LNK_X32 = 32, + PCIE_LNK_WIDTH_UNKNOWN = 255, +}; + +enum pci_bus_speed { + PCI_SPEED_33MHz = 0, + PCI_SPEED_66MHz = 1, + PCI_SPEED_66MHz_PCIX = 2, + PCI_SPEED_100MHz_PCIX = 3, + PCI_SPEED_133MHz_PCIX = 4, + PCI_SPEED_66MHz_PCIX_ECC = 5, + PCI_SPEED_100MHz_PCIX_ECC = 6, + PCI_SPEED_133MHz_PCIX_ECC = 7, + PCI_SPEED_66MHz_PCIX_266 = 9, + PCI_SPEED_100MHz_PCIX_266 = 10, + PCI_SPEED_133MHz_PCIX_266 = 11, + AGP_UNKNOWN = 12, + AGP_1X = 13, + AGP_2X = 14, + AGP_4X = 15, + AGP_8X = 16, + PCI_SPEED_66MHz_PCIX_533 = 17, + PCI_SPEED_100MHz_PCIX_533 = 18, + PCI_SPEED_133MHz_PCIX_533 = 19, + PCIE_SPEED_2_5GT = 20, + PCIE_SPEED_5_0GT = 21, + PCIE_SPEED_8_0GT = 22, + PCIE_SPEED_16_0GT = 23, + PCIE_SPEED_32_0GT = 24, + PCIE_SPEED_64_0GT = 25, + PCI_SPEED_UNKNOWN = 255, +}; + +enum pci_mmap_api { + PCI_MMAP_SYSFS = 0, + PCI_MMAP_PROCFS = 1, +}; + +struct clk_multiplier { + struct clk_hw hw; + void *reg; + u8 shift; + u8 width; + u8 flags; + spinlock_t *lock; +}; + +struct clk_composite { + struct clk_hw hw; + struct clk_ops ops; + struct clk_hw *mux_hw; + struct clk_hw *rate_hw; + struct clk_hw *gate_hw; + const struct clk_ops *mux_ops; + const struct clk_ops *rate_ops; + const struct clk_ops *gate_ops; +}; + +struct hv_ops; + +struct hvc_struct { + struct tty_port port; + spinlock_t lock; + int index; + int do_wakeup; + int outbuf_size; + int n_outbuf; + uint32_t vtermno; + const struct hv_ops *ops; + int irq_requested; + int data; + struct winsize ws; + struct work_struct tty_resize; + struct list_head next; + long unsigned int flags; + u8 outbuf[0]; +}; + +struct hv_ops { + ssize_t (*get_chars)(uint32_t, u8 *, size_t); + ssize_t (*put_chars)(uint32_t, const u8 *, size_t); + int (*flush)(uint32_t, bool); + int (*notifier_add)(struct hvc_struct *, int); + void (*notifier_del)(struct hvc_struct *, int); + void (*notifier_hangup)(struct hvc_struct *, int); + int (*tiocmget)(struct hvc_struct *); + int (*tiocmset)(struct hvc_struct *, unsigned int, unsigned int); + void (*dtr_rts)(struct hvc_struct *, bool); +}; + +struct drm_mode_atomic { + __u32 flags; + __u32 count_objs; + __u64 objs_ptr; + __u64 count_props_ptr; + __u64 props_ptr; + __u64 prop_values_ptr; + __u64 reserved; + __u64 user_data; +}; + +struct drm_out_fence_state { + s32 *out_fence_ptr; + struct sync_file *sync_file; + int fd; +}; + +struct drm_mode_card_res { + __u64 fb_id_ptr; + __u64 crtc_id_ptr; + __u64 connector_id_ptr; + __u64 encoder_id_ptr; + __u32 count_fbs; + __u32 count_crtcs; + __u32 count_connectors; + __u32 count_encoders; + __u32 min_width; + __u32 max_width; + __u32 min_height; + __u32 max_height; +}; + +struct drm_vblank_work { + struct kthread_work base; + struct drm_vblank_crtc *vblank; + u64 count; + int cancelling; + struct list_head node; +}; + +struct drm_format_conv_state { + struct { + void *mem; + size_t size; + bool preallocated; + } tmp; +}; + +struct drm_syncobj { + struct kref refcount; + struct dma_fence *fence; + struct list_head cb_list; + struct list_head ev_fd_list; + spinlock_t lock; + struct file *file; +}; + +struct drm_virtgpu_execbuffer_syncobj { + __u32 handle; + __u32 flags; + __u64 point; +}; + +struct drm_virtgpu_execbuffer { + __u32 flags; + __u32 size; + __u64 command; + __u64 bo_handles; + __u32 num_bo_handles; + __s32 fence_fd; + __u32 ring_idx; + __u32 syncobj_stride; + __u32 num_in_syncobjs; + __u32 num_out_syncobjs; + __u64 in_syncobjs; + __u64 out_syncobjs; +}; + +struct virtio_gpu_fpriv { + uint32_t ctx_id; + uint32_t context_init; + bool context_created; + uint32_t num_rings; + uint64_t base_fence_ctx; + uint64_t ring_idx_mask; + struct mutex context_lock; + char debug_name[65]; + bool explicit_debug_name; +}; + +struct virtio_gpu_submit_post_dep { + struct drm_syncobj *syncobj; + struct dma_fence_chain *chain; + u64 point; +}; + +struct virtio_gpu_submit { + struct virtio_gpu_submit_post_dep *post_deps; + unsigned int num_out_syncobjs; + struct drm_syncobj **in_syncobjs; + unsigned int num_in_syncobjs; + struct virtio_gpu_object_array *buflist; + struct drm_virtgpu_execbuffer *exbuf; + struct virtio_gpu_fence *out_fence; + struct virtio_gpu_fpriv *vfpriv; + struct virtio_gpu_device *vgdev; + struct sync_file *sync_file; + struct drm_file *file; + int out_fence_fd; + u64 fence_ctx; + u32 ring_idx; + void *buf; +}; + +struct req { + struct req *next; + struct completion done; + int err; + const char *name; + umode_t mode; + kuid_t uid; + kgid_t gid; + struct device *dev; +}; + +struct msdos_partition { + u8 boot_ind; + u8 head; + u8 sector; + u8 cyl; + u8 sys_ind; + u8 end_head; + u8 end_sector; + u8 end_cyl; + __le32 start_sect; + __le32 nr_sects; +}; + +struct scsi_proc_entry { + struct list_head entry; + const struct scsi_host_template *sht; + struct proc_dir_entry *proc_dir; + unsigned int present; +}; + +enum in6_addr_gen_mode { + IN6_ADDR_GEN_MODE_EUI64 = 0, + IN6_ADDR_GEN_MODE_NONE = 1, + IN6_ADDR_GEN_MODE_STABLE_PRIVACY = 2, + IN6_ADDR_GEN_MODE_RANDOM = 3, +}; + +enum { + WG_NETDEV_FEATURES = 1126357076009ULL, +}; + +struct hwtstamp_config { + int flags; + int tx_type; + int rx_filter; +}; + +struct mii_ioctl_data { + __u16 phy_id; + __u16 reg_num; + __u16 val_in; + __u16 val_out; +}; + +struct phy_setting { + u32 speed; + u8 duplex; + u8 bit; +}; + +enum phy_state_work { + PHY_STATE_WORK_NONE = 0, + PHY_STATE_WORK_ANEG = 1, + PHY_STATE_WORK_SUSPEND = 2, +}; + +struct ppp_deflate_state { + int seqno; + int w_size; + int unit; + int mru; + int debug; + z_stream strm; + struct compstat stats; +}; + +typedef __be16 sid_t; + +struct pppoe_addr { + sid_t sid; + unsigned char remote[6]; + char dev[16]; +}; + +struct pptp_addr { + __u16 call_id; + struct in_addr sin_addr; +}; + +struct sockaddr_pppox { + __kernel_sa_family_t sa_family; + unsigned int sa_protocol; + union { + struct pppoe_addr pppoe; + struct pptp_addr pptp; + } sa_addr; +} __attribute__((packed)); + +struct pppoe_opt { + struct net_device *dev; + int ifindex; + struct pppoe_addr pa; + struct sockaddr_pppox relay; + struct work_struct padt_work; +}; + +struct pptp_opt { + struct pptp_addr src_addr; + struct pptp_addr dst_addr; + u32 ack_sent; + u32 ack_recv; + u32 seq_sent; + u32 seq_recv; + int ppp_flags; +}; + +struct pppox_sock { + struct sock sk; + struct ppp_channel chan; + struct pppox_sock *next; + union { + struct pppoe_opt pppoe; + struct pptp_opt pptp; + } proto; + __be16 num; +}; + +struct pppox_proto { + int (*create)(struct net *, struct socket *, int); + int (*ioctl)(struct socket *, unsigned int, long unsigned int); + struct module *owner; +}; + +enum { + PPPOX_NONE = 0, + PPPOX_CONNECTED = 1, + PPPOX_BOUND = 2, + PPPOX_RELAY = 4, + PPPOX_DEAD = 16, +}; + +struct quirk_entry { + u16 vid; + u16 pid; + u32 flags; +}; + +struct usb_hub_descriptor { + __u8 bDescLength; + __u8 bDescriptorType; + __u8 bNbrPorts; + __le16 wHubCharacteristics; + __u8 bPwrOn2PwrGood; + __u8 bHubContrCurrent; + union { + struct { + __u8 DeviceRemovable[4]; + __u8 PortPwrCtrlMask[4]; + } hs; + struct { + __u8 bHubHdrDecLat; + __le16 wHubDelay; + __le16 DeviceRemovable; + } __attribute__((packed)) ss; + } u; +} __attribute__((packed)); + +struct xhci_ep_ctx { + __le32 ep_info; + __le32 ep_info2; + __le64 deq; + __le32 tx_info; + __le32 reserved[3]; +}; + +struct usbat_info { + int devicetype; + long unsigned int sectors; + long unsigned int ssize; + unsigned char sense_key; + long unsigned int sense_asc; + long unsigned int sense_ascq; +}; + +struct garmin_packet { + struct list_head list; + int seq; + int size; + __u8 data[0]; +}; + +struct garmin_data { + __u8 state; + __u16 flags; + __u8 mode; + __u8 count; + __u8 pkt_id; + __u32 serial_num; + struct timer_list timer; + struct usb_serial_port *port; + int seq_counter; + int insize; + int outsize; + __u8 inbuffer[273]; + __u8 outbuffer[529]; + __u8 privpkt[24]; + spinlock_t lock; + struct list_head pktlist; + struct usb_anchor write_urbs; +}; + +struct opticon_private { + spinlock_t lock; + bool rts; + bool cts; + int outstanding_urbs; + int outstanding_bytes; + struct usb_anchor anchor; +}; + +struct ssu100_port_private { + spinlock_t status_lock; + u8 shadowLSR; + u8 shadowMSR; +}; + +struct vhci_device { + struct usb_device *udev; + __u32 devid; + enum usb_device_speed speed; + __u32 rhport; + struct usbip_device ud; + spinlock_t priv_lock; + struct list_head priv_tx; + struct list_head priv_rx; + struct list_head unlink_tx; + struct list_head unlink_rx; + wait_queue_head_t waitq_tx; +}; + +enum hub_speed { + HUB_SPEED_HIGH = 0, + HUB_SPEED_SUPER = 1, +}; + +struct vhci_hcd; + +struct vhci { + spinlock_t lock; + struct platform_device *pdev; + struct vhci_hcd *vhci_hcd_hs; + struct vhci_hcd *vhci_hcd_ss; +}; + +struct vhci_hcd { + struct vhci *vhci; + u32 port_status[8]; + unsigned int resuming: 1; + long unsigned int re_timeout; + atomic_t seqnum; + struct vhci_device vdev[8]; +}; + +struct status_attr { + struct device_attribute attr; + char name[17]; +}; + +struct input_dev_poller { + void (*poll)(struct input_dev *); + unsigned int poll_interval; + unsigned int poll_interval_max; + unsigned int poll_interval_min; + struct input_dev *input; + struct delayed_work work; +}; + +struct i2c_smbus_alert_setup { + int irq; +}; + +struct trace_event_raw_smbus_write { + struct trace_entry ent; + int adapter_nr; + __u16 addr; + __u16 flags; + __u8 command; + __u8 len; + __u32 protocol; + __u8 buf[34]; + char __data[0]; +}; + +struct trace_event_raw_smbus_read { + struct trace_entry ent; + int adapter_nr; + __u16 flags; + __u16 addr; + __u8 command; + __u32 protocol; + __u8 buf[34]; + char __data[0]; +}; + +struct trace_event_raw_smbus_reply { + struct trace_entry ent; + int adapter_nr; + __u16 addr; + __u16 flags; + __u8 command; + __u8 len; + __u32 protocol; + __u8 buf[34]; + char __data[0]; +}; + +struct trace_event_raw_smbus_result { + struct trace_entry ent; + int adapter_nr; + __u16 addr; + __u16 flags; + __u8 read_write; + __u8 command; + __s16 res; + __u32 protocol; + char __data[0]; +}; + +struct trace_event_data_offsets_smbus_write {}; + +struct trace_event_data_offsets_smbus_read {}; + +struct trace_event_data_offsets_smbus_reply {}; + +struct trace_event_data_offsets_smbus_result {}; + +typedef void (*btf_trace_smbus_write)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int, const union i2c_smbus_data *); + +typedef void (*btf_trace_smbus_read)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int); + +typedef void (*btf_trace_smbus_reply)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int, const union i2c_smbus_data *, int); + +typedef void (*btf_trace_smbus_result)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int, int); + +struct dm_io_region { + struct block_device *bdev; + sector_t sector; + sector_t count; +}; + +struct page_list { + struct page_list *next; + struct page *page; +}; + +typedef void (*io_notify_fn)(long unsigned int, void *); + +enum dm_io_mem_type { + DM_IO_PAGE_LIST = 0, + DM_IO_BIO = 1, + DM_IO_VMA = 2, + DM_IO_KMEM = 3, +}; + +struct dm_io_memory { + enum dm_io_mem_type type; + unsigned int offset; + union { + struct page_list *pl; + struct bio *bio; + void *vma; + void *addr; + } ptr; +}; + +struct dm_io_notify { + io_notify_fn fn; + void *context; +}; + +struct dm_io_client; + +struct dm_io_request { + blk_opf_t bi_opf; + struct dm_io_memory mem; + struct dm_io_notify notify; + struct dm_io_client *client; +}; + +struct dm_kcopyd_throttle { + unsigned int throttle; + unsigned int num_io_jobs; + unsigned int io_period; + unsigned int total_period; + unsigned int last_jiffies; +}; + +typedef void (*dm_kcopyd_notify_fn)(int, long unsigned int, void *); + +struct dm_kcopyd_client { + struct page_list *pages; + unsigned int nr_reserved_pages; + unsigned int nr_free_pages; + unsigned int sub_job_size; + struct dm_io_client *io_client; + wait_queue_head_t destroyq; + mempool_t job_pool; + struct workqueue_struct *kcopyd_wq; + struct work_struct kcopyd_work; + struct dm_kcopyd_throttle *throttle; + atomic_t nr_jobs; + spinlock_t job_lock; + struct list_head callback_jobs; + struct list_head complete_jobs; + struct list_head io_jobs; + struct list_head pages_jobs; +}; + +struct kcopyd_job { + struct dm_kcopyd_client *kc; + struct list_head list; + unsigned int flags; + int read_err; + long unsigned int write_err; + enum req_op op; + struct dm_io_region source; + unsigned int num_dests; + struct dm_io_region dests[8]; + struct page_list *pages; + dm_kcopyd_notify_fn fn; + void *context; + struct mutex lock; + atomic_t sub_jobs; + sector_t progress; + sector_t write_offset; + struct kcopyd_job *master_job; +}; + +struct mmc_busy_data { + struct mmc_card *card; + bool retry_crc_err; + enum mmc_busy_cmd busy_cmd; +}; + +struct mmc_op_cond_busy_data { + struct mmc_host *host; + u32 ocr; + struct mmc_command *cmd; +}; + +enum { + GENHD_FL_REMOVABLE = 1, + GENHD_FL_HIDDEN = 2, + GENHD_FL_NO_PART = 4, +}; + +enum rpmb_type { + RPMB_TYPE_EMMC = 0, + RPMB_TYPE_UFS = 1, + RPMB_TYPE_NVME = 2, +}; + +struct rpmb_descr { + enum rpmb_type type; + int (*route_frames)(struct device *, u8 *, unsigned int, u8 *, unsigned int); + u8 *dev_id; + size_t dev_id_len; + u16 reliable_wr_count; + u16 capacity; +}; + +struct rpmb_dev { + struct device dev; + int id; + struct list_head list_node; + struct rpmb_descr descr; +}; + +struct mmc_ioc_cmd { + int write_flag; + int is_acmd; + __u32 opcode; + __u32 arg; + __u32 response[4]; + unsigned int flags; + unsigned int blksz; + unsigned int blocks; + unsigned int postsleep_min_us; + unsigned int postsleep_max_us; + unsigned int data_timeout_ns; + unsigned int cmd_timeout_ms; + __u32 __pad; + __u64 data_ptr; +}; + +struct mmc_ioc_multi_cmd { + __u64 num_of_cmds; + struct mmc_ioc_cmd cmds[0]; +}; + +enum mmc_issued { + MMC_REQ_STARTED = 0, + MMC_REQ_BUSY = 1, + MMC_REQ_FAILED_TO_START = 2, + MMC_REQ_FINISHED = 3, +}; + +enum mmc_issue_type { + MMC_ISSUE_SYNC = 0, + MMC_ISSUE_DCMD = 1, + MMC_ISSUE_ASYNC = 2, + MMC_ISSUE_MAX = 3, +}; + +struct mmc_blk_request { + struct mmc_request mrq; + struct mmc_command sbc; + struct mmc_command cmd; + struct mmc_command stop; + struct mmc_data data; +}; + +enum mmc_drv_op { + MMC_DRV_OP_IOCTL = 0, + MMC_DRV_OP_IOCTL_RPMB = 1, + MMC_DRV_OP_BOOT_WP = 2, + MMC_DRV_OP_GET_CARD_STATUS = 3, + MMC_DRV_OP_GET_EXT_CSD = 4, +}; + +struct mmc_queue_req { + struct mmc_blk_request brq; + struct scatterlist *sg; + enum mmc_drv_op drv_op; + int drv_op_result; + void *drv_op_data; + unsigned int ioc_count; + int retries; +}; + +struct mmc_blk_data; + +struct mmc_queue { + struct mmc_card *card; + struct mmc_ctx ctx; + struct blk_mq_tag_set tag_set; + struct mmc_blk_data *blkdata; + struct request_queue *queue; + spinlock_t lock; + int in_flight[3]; + unsigned int cqe_busy; + bool busy; + bool recovery_needed; + bool in_recovery; + bool rw_wait; + bool waiting; + struct work_struct recovery_work; + wait_queue_head_t wait; + struct request *recovery_req; + struct request *complete_req; + struct mutex complete_lock; + struct work_struct complete_work; +}; + +struct mmc_blk_data { + struct device *parent; + struct gendisk *disk; + struct mmc_queue queue; + struct list_head part; + struct list_head rpmbs; + unsigned int flags; + struct kref kref; + unsigned int read_only; + unsigned int part_type; + unsigned int reset_done; + unsigned int part_curr; + int area_type; + struct dentry *status_dentry; + struct dentry *ext_csd_dentry; +}; + +struct mmc_driver { + struct device_driver drv; + int (*probe)(struct mmc_card *); + void (*remove)(struct mmc_card *); + void (*shutdown)(struct mmc_card *); +}; + +struct rpmb_frame { + u8 stuff[196]; + u8 key_mac[32]; + u8 data[256]; + u8 nonce[16]; + __be32 write_counter; + __be16 addr; + __be16 block_count; + __be16 result; + __be16 req_resp; +}; + +struct mmc_blk_busy_data { + struct mmc_card *card; + u32 status; +}; + +struct mmc_rpmb_data { + struct device dev; + struct cdev chrdev; + int id; + unsigned int part_index; + struct mmc_blk_data *md; + struct rpmb_dev *rdev; + struct list_head node; +}; + +struct mmc_blk_ioc_data { + struct mmc_ioc_cmd ic; + unsigned char *buf; + u64 buf_bytes; + unsigned int flags; + struct mmc_rpmb_data *rpmb; +}; + +enum { + TCA_STATS_UNSPEC = 0, + TCA_STATS_BASIC = 1, + TCA_STATS_RATE_EST = 2, + TCA_STATS_QUEUE = 3, + TCA_STATS_APP = 4, + TCA_STATS_RATE_EST64 = 5, + TCA_STATS_PAD = 6, + TCA_STATS_BASIC_HW = 7, + TCA_STATS_PKT64 = 8, + __TCA_STATS_MAX = 9, +}; + +struct gnet_stats_basic { + __u64 bytes; + __u32 packets; +}; + +struct gnet_stats_rate_est { + __u32 bps; + __u32 pps; +}; + +enum { + BPF_F_RECOMPUTE_CSUM = 1, + BPF_F_INVALIDATE_HASH = 2, +}; + +enum { + BPF_F_HDR_FIELD_MASK = 15, +}; + +enum { + BPF_F_PSEUDO_HDR = 16, + BPF_F_MARK_MANGLED_0 = 32, + BPF_F_MARK_ENFORCE = 64, + BPF_F_IPV6 = 128, +}; + +enum { + BPF_F_TUNINFO_IPV6 = 1, +}; + +enum { + BPF_F_ZERO_CSUM_TX = 2, + BPF_F_DONT_FRAGMENT = 4, + BPF_F_SEQ_NUMBER = 8, + BPF_F_NO_TUNNEL_KEY = 16, +}; + +enum { + BPF_F_TUNINFO_FLAGS = 16, +}; + +enum { + BPF_CSUM_LEVEL_QUERY = 0, + BPF_CSUM_LEVEL_INC = 1, + BPF_CSUM_LEVEL_DEC = 2, + BPF_CSUM_LEVEL_RESET = 3, +}; + +enum { + BPF_F_ADJ_ROOM_FIXED_GSO = 1, + BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 2, + BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 4, + BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 8, + BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 16, + BPF_F_ADJ_ROOM_NO_CSUM_RESET = 32, + BPF_F_ADJ_ROOM_ENCAP_L2_ETH = 64, + BPF_F_ADJ_ROOM_DECAP_L3_IPV4 = 128, + BPF_F_ADJ_ROOM_DECAP_L3_IPV6 = 256, +}; + +enum { + BPF_ADJ_ROOM_ENCAP_L2_MASK = 255, + BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 56, +}; + +enum { + BPF_SK_LOOKUP_F_REPLACE = 1, + BPF_SK_LOOKUP_F_NO_REUSEPORT = 2, +}; + +enum bpf_adj_room_mode { + BPF_ADJ_ROOM_NET = 0, + BPF_ADJ_ROOM_MAC = 1, +}; + +enum bpf_hdr_start_off { + BPF_HDR_START_MAC = 0, + BPF_HDR_START_NET = 1, +}; + +enum bpf_lwt_encap_mode { + BPF_LWT_ENCAP_SEG6 = 0, + BPF_LWT_ENCAP_SEG6_INLINE = 1, + BPF_LWT_ENCAP_IP = 2, +}; + +enum { + BPF_SKB_TSTAMP_UNSPEC = 0, + BPF_SKB_TSTAMP_DELIVERY_MONO = 1, + BPF_SKB_CLOCK_REALTIME = 0, + BPF_SKB_CLOCK_MONOTONIC = 1, + BPF_SKB_CLOCK_TAI = 2, +}; + +struct bpf_tunnel_key { + __u32 tunnel_id; + union { + __u32 remote_ipv4; + __u32 remote_ipv6[4]; + }; + __u8 tunnel_tos; + __u8 tunnel_ttl; + union { + __u16 tunnel_ext; + __be16 tunnel_flags; + }; + __u32 tunnel_label; + union { + __u32 local_ipv4; + __u32 local_ipv6[4]; + }; +}; + +struct bpf_xfrm_state { + __u32 reqid; + __u32 spi; + __u16 family; + __u16 ext; + union { + __u32 remote_ipv4; + __u32 remote_ipv6[4]; + }; +}; + +struct bpf_tcp_sock { + __u32 snd_cwnd; + __u32 srtt_us; + __u32 rtt_min; + __u32 snd_ssthresh; + __u32 rcv_nxt; + __u32 snd_nxt; + __u32 snd_una; + __u32 mss_cache; + __u32 ecn_flags; + __u32 rate_delivered; + __u32 rate_interval_us; + __u32 packets_out; + __u32 retrans_out; + __u32 total_retrans; + __u32 segs_in; + __u32 data_segs_in; + __u32 segs_out; + __u32 data_segs_out; + __u32 lost_out; + __u32 sacked_out; + __u64 bytes_received; + __u64 bytes_acked; + __u32 dsack_dups; + __u32 delivered; + __u32 delivered_ce; + __u32 icsk_retransmits; +}; + +struct bpf_sock_tuple { + union { + struct { + __be32 saddr; + __be32 daddr; + __be16 sport; + __be16 dport; + } ipv4; + struct { + __be32 saddr[4]; + __be32 daddr[4]; + __be16 sport; + __be16 dport; + } ipv6; + }; +}; + +struct bpf_xdp_sock { + __u32 queue_id; +}; + +enum { + TCP_BPF_IW = 1001, + TCP_BPF_SNDCWND_CLAMP = 1002, + TCP_BPF_DELACK_MAX = 1003, + TCP_BPF_RTO_MIN = 1004, + TCP_BPF_SYN = 1005, + TCP_BPF_SYN_IP = 1006, + TCP_BPF_SYN_MAC = 1007, + TCP_BPF_SOCK_OPS_CB_FLAGS = 1008, +}; + +enum { + BPF_LOAD_HDR_OPT_TCP_SYN = 1, +}; + +enum { + BPF_FIB_LOOKUP_DIRECT = 1, + BPF_FIB_LOOKUP_OUTPUT = 2, + BPF_FIB_LOOKUP_SKIP_NEIGH = 4, + BPF_FIB_LOOKUP_TBID = 8, + BPF_FIB_LOOKUP_SRC = 16, + BPF_FIB_LOOKUP_MARK = 32, +}; + +enum { + BPF_FIB_LKUP_RET_SUCCESS = 0, + BPF_FIB_LKUP_RET_BLACKHOLE = 1, + BPF_FIB_LKUP_RET_UNREACHABLE = 2, + BPF_FIB_LKUP_RET_PROHIBIT = 3, + BPF_FIB_LKUP_RET_NOT_FWDED = 4, + BPF_FIB_LKUP_RET_FWD_DISABLED = 5, + BPF_FIB_LKUP_RET_UNSUPP_LWT = 6, + BPF_FIB_LKUP_RET_NO_NEIGH = 7, + BPF_FIB_LKUP_RET_FRAG_NEEDED = 8, + BPF_FIB_LKUP_RET_NO_SRC_ADDR = 9, +}; + +struct bpf_fib_lookup { + __u8 family; + __u8 l4_protocol; + __be16 sport; + __be16 dport; + union { + __u16 tot_len; + __u16 mtu_result; + }; + __u32 ifindex; + union { + __u8 tos; + __be32 flowinfo; + __u32 rt_metric; + }; + union { + __be32 ipv4_src; + __u32 ipv6_src[4]; + }; + union { + __be32 ipv4_dst; + __u32 ipv6_dst[4]; + }; + union { + struct { + __be16 h_vlan_proto; + __be16 h_vlan_TCI; + }; + __u32 tbid; + }; + union { + struct { + __u32 mark; + }; + struct { + __u8 smac[6]; + __u8 dmac[6]; + }; + }; +}; + +struct bpf_redir_neigh { + __u32 nh_family; + union { + __be32 ipv4_nh; + __u32 ipv6_nh[4]; + }; +}; + +enum bpf_check_mtu_flags { + BPF_MTU_CHK_SEGS = 1, +}; + +enum bpf_check_mtu_ret { + BPF_MTU_CHK_RET_SUCCESS = 0, + BPF_MTU_CHK_RET_FRAG_NEEDED = 1, + BPF_MTU_CHK_RET_SEGS_TOOBIG = 2, +}; + +struct bpf_dispatcher_prog { + struct bpf_prog *prog; + refcount_t users; +}; + +struct bpf_dispatcher { + struct mutex mutex; + void *func; + struct bpf_dispatcher_prog progs[48]; + int num_progs; + void *image; + void *rw_image; + u32 image_off; + struct bpf_ksym ksym; +}; + +struct seg6_pernet_data { + struct mutex lock; + struct in6_addr *tun_src; +}; + +struct compat_sock_fprog { + u16 len; + compat_uptr_t filter; +}; + +typedef int (*bpf_aux_classic_check_t)(struct sock_filter *, unsigned int); + +struct tcp_timewait_sock { + struct inet_timewait_sock tw_sk; + u32 tw_rcv_wnd; + u32 tw_ts_offset; + u32 tw_ts_recent; + u32 tw_last_oow_ack_time; + int tw_ts_recent_stamp; + u32 tw_tx_delay; +}; + +struct udp_sock { + struct inet_sock inet; + long unsigned int udp_flags; + int pending; + __u8 encap_type; + __u16 len; + __u16 gso_size; + __u16 pcslen; + __u16 pcrlen; + int (*encap_rcv)(struct sock *, struct sk_buff *); + void (*encap_err_rcv)(struct sock *, struct sk_buff *, int, __be16, u32, u8 *); + int (*encap_err_lookup)(struct sock *, struct sk_buff *); + void (*encap_destroy)(struct sock *); + struct sk_buff * (*gro_receive)(struct sock *, struct list_head *, struct sk_buff *); + int (*gro_complete)(struct sock *, struct sk_buff *, int); + long: 64; + long: 64; + long: 64; + long: 64; + struct sk_buff_head reader_queue; + int forward_deficit; + int forward_threshold; + bool peeking_with_offset; + long: 64; + long: 64; + long: 64; +}; + +struct udp6_sock { + struct udp_sock udp; + struct ipv6_pinfo inet6; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct tcp6_sock { + struct tcp_sock tcp; + struct ipv6_pinfo inet6; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct ipv6_bpf_stub { + int (*inet6_bind)(struct sock *, struct sockaddr *, int, u32); + struct sock * (*udp6_lib_lookup)(const struct net *, const struct in6_addr *, __be16, const struct in6_addr *, __be16, int, int, struct udp_table *, struct sk_buff *); + int (*ipv6_setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); + int (*ipv6_getsockopt)(struct sock *, int, int, sockptr_t, sockptr_t); + int (*ipv6_dev_get_saddr)(struct net *, const struct net_device *, const struct in6_addr *, unsigned int, struct in6_addr *); +}; + +struct mptcp_sock {}; + +struct bpf_tcp_req_attrs { + u32 rcv_tsval; + u32 rcv_tsecr; + u16 mss; + u8 rcv_wscale; + u8 snd_wscale; + u8 ecn_ok; + u8 wscale_ok; + u8 sack_ok; + u8 tstamp_ok; + u8 usec_ts_ok; + u8 reserved[3]; +}; + +struct strp_msg { + int full_len; + int offset; +}; + +struct _strp_msg { + struct strp_msg strp; + int accum_len; +}; + +struct tls_msg { + u8 control; +}; + +struct sk_skb_cb { + unsigned char data[20]; + unsigned char pad[4]; + struct _strp_msg strp; + struct tls_msg tls; + u64 temp_reg; +}; + +struct cgroup_cls_state { + struct cgroup_subsys_state css; + u32 classid; +}; + +struct tls_crypto_info { + __u16 version; + __u16 cipher_type; +}; + +struct tls12_crypto_info_aes_gcm_128 { + struct tls_crypto_info info; + unsigned char iv[8]; + unsigned char key[16]; + unsigned char salt[4]; + unsigned char rec_seq[8]; +}; + +struct tls12_crypto_info_aes_gcm_256 { + struct tls_crypto_info info; + unsigned char iv[8]; + unsigned char key[32]; + unsigned char salt[4]; + unsigned char rec_seq[8]; +}; + +struct tls12_crypto_info_chacha20_poly1305 { + struct tls_crypto_info info; + unsigned char iv[12]; + unsigned char key[32]; + unsigned char salt[0]; + unsigned char rec_seq[8]; +}; + +struct tls12_crypto_info_sm4_gcm { + struct tls_crypto_info info; + unsigned char iv[8]; + unsigned char key[16]; + unsigned char salt[4]; + unsigned char rec_seq[8]; +}; + +struct tls12_crypto_info_sm4_ccm { + struct tls_crypto_info info; + unsigned char iv[8]; + unsigned char key[16]; + unsigned char salt[4]; + unsigned char rec_seq[8]; +}; + +struct tls_strparser { + struct sock *sk; + u32 mark: 8; + u32 stopped: 1; + u32 copy_mode: 1; + u32 mixed_decrypted: 1; + bool msg_ready; + struct strp_msg stm; + struct sk_buff *anchor; + struct work_struct work; +}; + +struct tls_sw_context_rx { + struct crypto_aead *aead_recv; + struct crypto_wait async_wait; + struct sk_buff_head rx_list; + void (*saved_data_ready)(struct sock *); + u8 reader_present; + u8 async_capable: 1; + u8 zc_capable: 1; + u8 reader_contended: 1; + struct tls_strparser strp; + atomic_t decrypt_pending; + struct sk_buff_head async_hold; + struct wait_queue_head wq; +}; + +struct tls_prot_info { + u16 version; + u16 cipher_type; + u16 prepend_size; + u16 tag_size; + u16 overhead_size; + u16 iv_size; + u16 salt_size; + u16 rec_seq_size; + u16 aad_size; + u16 tail_size; +}; + +struct cipher_context { + char iv[20]; + char rec_seq[8]; +}; + +union tls_crypto_context { + struct tls_crypto_info info; + union { + struct tls12_crypto_info_aes_gcm_128 aes_gcm_128; + struct tls12_crypto_info_aes_gcm_256 aes_gcm_256; + struct tls12_crypto_info_chacha20_poly1305 chacha20_poly1305; + struct tls12_crypto_info_sm4_gcm sm4_gcm; + struct tls12_crypto_info_sm4_ccm sm4_ccm; + }; +}; + +struct tls_context { + struct tls_prot_info prot_info; + u8 tx_conf: 3; + u8 rx_conf: 3; + u8 zerocopy_sendfile: 1; + u8 rx_no_pad: 1; + int (*push_pending_record)(struct sock *, int); + void (*sk_write_space)(struct sock *); + void *priv_ctx_tx; + void *priv_ctx_rx; + struct net_device *netdev; + struct cipher_context tx; + struct cipher_context rx; + struct scatterlist *partially_sent_record; + u16 partially_sent_offset; + bool splicing_pages; + bool pending_open_record_frags; + struct mutex tx_lock; + long unsigned int flags; + struct proto *sk_proto; + struct sock *sk; + void (*sk_destruct)(struct sock *); + union tls_crypto_context crypto_send; + union tls_crypto_context crypto_recv; + struct list_head list; + refcount_t refcount; + struct callback_head rcu; +}; + +typedef u64 (*btf_bpf_skb_get_pay_offset)(struct sk_buff *); + +typedef u64 (*btf_bpf_skb_get_nlattr)(struct sk_buff *, u32, u32); + +typedef u64 (*btf_bpf_skb_get_nlattr_nest)(struct sk_buff *, u32, u32); + +typedef u64 (*btf_bpf_skb_load_helper_8)(const struct sk_buff *, const void *, int, int); + +typedef u64 (*btf_bpf_skb_load_helper_8_no_cache)(const struct sk_buff *, int); + +typedef u64 (*btf_bpf_skb_load_helper_16)(const struct sk_buff *, const void *, int, int); + +typedef u64 (*btf_bpf_skb_load_helper_16_no_cache)(const struct sk_buff *, int); + +typedef u64 (*btf_bpf_skb_load_helper_32)(const struct sk_buff *, const void *, int, int); + +typedef u64 (*btf_bpf_skb_load_helper_32_no_cache)(const struct sk_buff *, int); + +struct bpf_scratchpad { + union { + __be32 diff[128]; + u8 buff[512]; + }; + local_lock_t bh_lock; +}; + +typedef u64 (*btf_bpf_skb_store_bytes)(struct sk_buff *, u32, const void *, u32, u64); + +typedef u64 (*btf_bpf_skb_load_bytes)(const struct sk_buff *, u32, void *, u32); + +typedef u64 (*btf_bpf_flow_dissector_load_bytes)(const struct bpf_flow_dissector *, u32, void *, u32); + +typedef u64 (*btf_bpf_skb_load_bytes_relative)(const struct sk_buff *, u32, void *, u32, u32); + +typedef u64 (*btf_bpf_skb_pull_data)(struct sk_buff *, u32); + +typedef u64 (*btf_bpf_sk_fullsock)(struct sock *); + +typedef u64 (*btf_sk_skb_pull_data)(struct sk_buff *, u32); + +typedef u64 (*btf_bpf_l3_csum_replace)(struct sk_buff *, u32, u64, u64, u64); + +typedef u64 (*btf_bpf_l4_csum_replace)(struct sk_buff *, u32, u64, u64, u64); + +typedef u64 (*btf_bpf_csum_diff)(__be32 *, u32, __be32 *, u32, __wsum); + +typedef u64 (*btf_bpf_csum_update)(struct sk_buff *, __wsum); + +typedef u64 (*btf_bpf_csum_level)(struct sk_buff *, u64); + +enum { + BPF_F_NEIGH = 65536, + BPF_F_PEER = 131072, + BPF_F_NEXTHOP = 262144, +}; + +typedef u64 (*btf_bpf_clone_redirect)(struct sk_buff *, u32, u64); + +typedef u64 (*btf_bpf_redirect)(u32, u64); + +typedef u64 (*btf_bpf_redirect_peer)(u32, u64); + +typedef u64 (*btf_bpf_redirect_neigh)(u32, struct bpf_redir_neigh *, int, u64); + +typedef u64 (*btf_bpf_msg_apply_bytes)(struct sk_msg *, u32); + +typedef u64 (*btf_bpf_msg_cork_bytes)(struct sk_msg *, u32); + +typedef u64 (*btf_bpf_msg_pull_data)(struct sk_msg *, u32, u32, u64); + +typedef u64 (*btf_bpf_msg_push_data)(struct sk_msg *, u32, u32, u64); + +typedef u64 (*btf_bpf_msg_pop_data)(struct sk_msg *, u32, u32, u64); + +typedef u64 (*btf_bpf_get_cgroup_classid_curr)(void); + +typedef u64 (*btf_bpf_skb_cgroup_classid)(const struct sk_buff *); + +typedef u64 (*btf_bpf_get_cgroup_classid)(const struct sk_buff *); + +typedef u64 (*btf_bpf_get_route_realm)(const struct sk_buff *); + +typedef u64 (*btf_bpf_get_hash_recalc)(struct sk_buff *); + +typedef u64 (*btf_bpf_set_hash_invalid)(struct sk_buff *); + +typedef u64 (*btf_bpf_set_hash)(struct sk_buff *, u32); + +typedef u64 (*btf_bpf_skb_vlan_push)(struct sk_buff *, __be16, u16); + +typedef u64 (*btf_bpf_skb_vlan_pop)(struct sk_buff *); + +typedef u64 (*btf_bpf_skb_change_proto)(struct sk_buff *, __be16, u64); + +typedef u64 (*btf_bpf_skb_change_type)(struct sk_buff *, u32); + +typedef u64 (*btf_sk_skb_adjust_room)(struct sk_buff *, s32, u32, u64); + +typedef u64 (*btf_bpf_skb_adjust_room)(struct sk_buff *, s32, u32, u64); + +typedef u64 (*btf_bpf_skb_change_tail)(struct sk_buff *, u32, u64); + +typedef u64 (*btf_sk_skb_change_tail)(struct sk_buff *, u32, u64); + +typedef u64 (*btf_bpf_skb_change_head)(struct sk_buff *, u32, u64); + +typedef u64 (*btf_sk_skb_change_head)(struct sk_buff *, u32, u64); + +typedef u64 (*btf_bpf_xdp_get_buff_len)(struct xdp_buff *); + +typedef u64 (*btf_bpf_xdp_adjust_head)(struct xdp_buff *, int); + +typedef u64 (*btf_bpf_xdp_load_bytes)(struct xdp_buff *, u32, void *, u32); + +typedef u64 (*btf_bpf_xdp_store_bytes)(struct xdp_buff *, u32, void *, u32); + +typedef u64 (*btf_bpf_xdp_adjust_tail)(struct xdp_buff *, int); + +typedef u64 (*btf_bpf_xdp_adjust_meta)(struct xdp_buff *, int); + +typedef u64 (*btf_bpf_xdp_redirect)(u32, u64); + +typedef u64 (*btf_bpf_xdp_redirect_map)(struct bpf_map *, u64, u64); + +typedef u64 (*btf_bpf_skb_event_output)(struct sk_buff *, struct bpf_map *, u64, void *, u64); + +typedef u64 (*btf_bpf_skb_get_tunnel_key)(struct sk_buff *, struct bpf_tunnel_key *, u32, u64); + +typedef u64 (*btf_bpf_skb_get_tunnel_opt)(struct sk_buff *, u8 *, u32); + +typedef u64 (*btf_bpf_skb_set_tunnel_key)(struct sk_buff *, const struct bpf_tunnel_key *, u32, u64); + +typedef u64 (*btf_bpf_skb_set_tunnel_opt)(struct sk_buff *, const u8 *, u32); + +typedef u64 (*btf_bpf_skb_under_cgroup)(struct sk_buff *, struct bpf_map *, u32); + +typedef u64 (*btf_bpf_skb_cgroup_id)(const struct sk_buff *); + +typedef u64 (*btf_bpf_skb_ancestor_cgroup_id)(const struct sk_buff *, int); + +typedef u64 (*btf_bpf_sk_cgroup_id)(struct sock *); + +typedef u64 (*btf_bpf_sk_ancestor_cgroup_id)(struct sock *, int); + +typedef u64 (*btf_bpf_xdp_event_output)(struct xdp_buff *, struct bpf_map *, u64, void *, u64); + +typedef u64 (*btf_bpf_get_socket_cookie)(struct sk_buff *); + +typedef u64 (*btf_bpf_get_socket_cookie_sock_addr)(struct bpf_sock_addr_kern *); + +typedef u64 (*btf_bpf_get_socket_cookie_sock)(struct sock *); + +typedef u64 (*btf_bpf_get_socket_ptr_cookie)(struct sock *); + +typedef u64 (*btf_bpf_get_socket_cookie_sock_ops)(struct bpf_sock_ops_kern *); + +typedef u64 (*btf_bpf_get_netns_cookie_sock)(struct sock *); + +typedef u64 (*btf_bpf_get_netns_cookie_sock_addr)(struct bpf_sock_addr_kern *); + +typedef u64 (*btf_bpf_get_netns_cookie_sock_ops)(struct bpf_sock_ops_kern *); + +typedef u64 (*btf_bpf_get_netns_cookie_sk_msg)(struct sk_msg *); + +typedef u64 (*btf_bpf_get_socket_uid)(struct sk_buff *); + +typedef u64 (*btf_bpf_sk_setsockopt)(struct sock *, int, int, char *, int); + +typedef u64 (*btf_bpf_sk_getsockopt)(struct sock *, int, int, char *, int); + +typedef u64 (*btf_bpf_unlocked_sk_setsockopt)(struct sock *, int, int, char *, int); + +typedef u64 (*btf_bpf_unlocked_sk_getsockopt)(struct sock *, int, int, char *, int); + +typedef u64 (*btf_bpf_sock_addr_setsockopt)(struct bpf_sock_addr_kern *, int, int, char *, int); + +typedef u64 (*btf_bpf_sock_addr_getsockopt)(struct bpf_sock_addr_kern *, int, int, char *, int); + +typedef u64 (*btf_bpf_sock_ops_setsockopt)(struct bpf_sock_ops_kern *, int, int, char *, int); + +typedef u64 (*btf_bpf_sock_ops_getsockopt)(struct bpf_sock_ops_kern *, int, int, char *, int); + +typedef u64 (*btf_bpf_sock_ops_cb_flags_set)(struct bpf_sock_ops_kern *, int); + +typedef u64 (*btf_bpf_bind)(struct bpf_sock_addr_kern *, struct sockaddr *, int); + +typedef u64 (*btf_bpf_skb_get_xfrm_state)(struct sk_buff *, u32, struct bpf_xfrm_state *, u32, u64); + +typedef u64 (*btf_bpf_xdp_fib_lookup)(struct xdp_buff *, struct bpf_fib_lookup *, int, u32); + +typedef u64 (*btf_bpf_skb_fib_lookup)(struct sk_buff *, struct bpf_fib_lookup *, int, u32); + +typedef u64 (*btf_bpf_skb_check_mtu)(struct sk_buff *, u32, u32 *, s32, u64); + +typedef u64 (*btf_bpf_xdp_check_mtu)(struct xdp_buff *, u32, u32 *, s32, u64); + +typedef u64 (*btf_bpf_lwt_in_push_encap)(struct sk_buff *, u32, void *, u32); + +typedef u64 (*btf_bpf_lwt_xmit_push_encap)(struct sk_buff *, u32, void *, u32); + +typedef u64 (*btf_bpf_skc_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_sk_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_sk_lookup_udp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_tc_skc_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_tc_sk_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_tc_sk_lookup_udp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_sk_release)(struct sock *); + +typedef u64 (*btf_bpf_xdp_sk_lookup_udp)(struct xdp_buff *, struct bpf_sock_tuple *, u32, u32, u64); + +typedef u64 (*btf_bpf_xdp_skc_lookup_tcp)(struct xdp_buff *, struct bpf_sock_tuple *, u32, u32, u64); + +typedef u64 (*btf_bpf_xdp_sk_lookup_tcp)(struct xdp_buff *, struct bpf_sock_tuple *, u32, u32, u64); + +typedef u64 (*btf_bpf_sock_addr_skc_lookup_tcp)(struct bpf_sock_addr_kern *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_sock_addr_sk_lookup_tcp)(struct bpf_sock_addr_kern *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_sock_addr_sk_lookup_udp)(struct bpf_sock_addr_kern *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_tcp_sock)(struct sock *); + +typedef u64 (*btf_bpf_get_listener_sock)(struct sock *); + +typedef u64 (*btf_bpf_skb_ecn_set_ce)(struct sk_buff *); + +typedef u64 (*btf_bpf_tcp_check_syncookie)(struct sock *, void *, u32, struct tcphdr *, u32); + +typedef u64 (*btf_bpf_tcp_gen_syncookie)(struct sock *, void *, u32, struct tcphdr *, u32); + +typedef u64 (*btf_bpf_sk_assign)(struct sk_buff *, struct sock *, u64); + +typedef u64 (*btf_bpf_sock_ops_load_hdr_opt)(struct bpf_sock_ops_kern *, void *, u32, u64); + +typedef u64 (*btf_bpf_sock_ops_store_hdr_opt)(struct bpf_sock_ops_kern *, const void *, u32, u64); + +typedef u64 (*btf_bpf_sock_ops_reserve_hdr_opt)(struct bpf_sock_ops_kern *, u32, u64); + +typedef u64 (*btf_bpf_skb_set_tstamp)(struct sk_buff *, u64, u32); + +typedef u64 (*btf_bpf_tcp_raw_gen_syncookie_ipv4)(struct iphdr *, struct tcphdr *, u32); + +typedef u64 (*btf_bpf_tcp_raw_gen_syncookie_ipv6)(struct ipv6hdr *, struct tcphdr *, u32); + +typedef u64 (*btf_bpf_tcp_raw_check_syncookie_ipv4)(struct iphdr *, struct tcphdr *); + +typedef u64 (*btf_bpf_tcp_raw_check_syncookie_ipv6)(struct ipv6hdr *, struct tcphdr *); + +typedef u64 (*btf_sk_select_reuseport)(struct sk_reuseport_kern *, struct bpf_map *, void *, u32); + +typedef u64 (*btf_sk_reuseport_load_bytes)(const struct sk_reuseport_kern *, u32, void *, u32); + +typedef u64 (*btf_sk_reuseport_load_bytes_relative)(const struct sk_reuseport_kern *, u32, void *, u32, u32); + +typedef u64 (*btf_bpf_sk_lookup_assign)(struct bpf_sk_lookup_kern *, struct sock *, u64); + +typedef u64 (*btf_bpf_skc_to_tcp6_sock)(struct sock *); + +typedef u64 (*btf_bpf_skc_to_tcp_sock)(struct sock *); + +typedef u64 (*btf_bpf_skc_to_tcp_timewait_sock)(struct sock *); + +typedef u64 (*btf_bpf_skc_to_tcp_request_sock)(struct sock *); + +typedef u64 (*btf_bpf_skc_to_udp6_sock)(struct sock *); + +typedef u64 (*btf_bpf_skc_to_unix_sock)(struct sock *); + +typedef u64 (*btf_bpf_skc_to_mptcp_sock)(struct sock *); + +typedef u64 (*btf_bpf_sock_from_file)(struct file *); + +struct llc_pdu_un { + u8 dsap; + u8 ssap; + u8 ctrl_1; +}; + +struct tc_skbedit { + __u32 index; + __u32 capab; + int action; + int refcnt; + int bindcnt; +}; + +enum { + TCA_SKBEDIT_UNSPEC = 0, + TCA_SKBEDIT_TM = 1, + TCA_SKBEDIT_PARMS = 2, + TCA_SKBEDIT_PRIORITY = 3, + TCA_SKBEDIT_QUEUE_MAPPING = 4, + TCA_SKBEDIT_MARK = 5, + TCA_SKBEDIT_PAD = 6, + TCA_SKBEDIT_PTYPE = 7, + TCA_SKBEDIT_MASK = 8, + TCA_SKBEDIT_FLAGS = 9, + TCA_SKBEDIT_QUEUE_MAPPING_MAX = 10, + __TCA_SKBEDIT_MAX = 11, +}; + +struct tcf_skbedit_params { + u32 flags; + u32 priority; + u32 mark; + u32 mask; + u16 queue_mapping; + u16 mapping_mod; + u16 ptype; + struct callback_head rcu; +}; + +struct tcf_skbedit { + struct tc_action common; + struct tcf_skbedit_params *params; + long: 64; +}; + +enum { + TCA_QFQ_UNSPEC = 0, + TCA_QFQ_WEIGHT = 1, + TCA_QFQ_LMAX = 2, + __TCA_QFQ_MAX = 3, +}; + +struct tc_qfq_stats { + __u32 weight; + __u32 lmax; +}; + +struct Qdisc_class_common { + u32 classid; + unsigned int filter_cnt; + struct hlist_node hnode; +}; + +struct Qdisc_class_hash { + struct hlist_head *hash; + unsigned int hashsize; + unsigned int hashmask; + unsigned int hashelems; +}; + +enum qfq_state { + ER = 0, + IR = 1, + EB = 2, + IB = 3, + QFQ_MAX_STATE = 4, +}; + +struct qfq_aggregate; + +struct qfq_class { + struct Qdisc_class_common common; + long: 64; + struct gnet_stats_basic_sync bstats; + struct gnet_stats_queue qstats; + struct net_rate_estimator *rate_est; + struct Qdisc *qdisc; + struct list_head alist; + struct qfq_aggregate *agg; + int deficit; + long: 64; +}; + +struct qfq_group; + +struct qfq_aggregate { + struct hlist_node next; + u64 S; + u64 F; + struct qfq_group *grp; + u32 class_weight; + int lmax; + u32 inv_w; + u32 budgetmax; + u32 initial_budget; + u32 budget; + int num_classes; + struct list_head active; + struct hlist_node nonfull_next; +}; + +struct qfq_group { + u64 S; + u64 F; + unsigned int slot_shift; + unsigned int index; + unsigned int front; + long unsigned int full_slots; + struct hlist_head slots[32]; +}; + +struct qfq_sched { + struct tcf_proto *filter_list; + struct tcf_block *block; + struct Qdisc_class_hash clhash; + u64 oldV; + u64 V; + struct qfq_aggregate *in_serv_agg; + u32 wsum; + u32 iwsum; + long unsigned int bitmaps[4]; + struct qfq_group groups[25]; + u32 min_slot_shift; + u32 max_agg_classes; + struct hlist_head nonfull_aggs; +}; + +enum update_reason { + enqueue = 0, + requeue = 1, +}; + +struct linkinfo_reply_data { + struct ethnl_reply_data base; + struct ethtool_link_ksettings ksettings; + struct ethtool_link_settings *lsettings; +}; + +struct eeprom_req_info { + struct ethnl_req_info base; + u32 offset; + u32 length; + u8 page; + u8 bank; + u8 i2c_address; +}; + +struct eeprom_reply_data { + struct ethnl_reply_data base; + u32 length; + u8 *data; +}; + +enum nfnetlink_groups { + NFNLGRP_NONE = 0, + NFNLGRP_CONNTRACK_NEW = 1, + NFNLGRP_CONNTRACK_UPDATE = 2, + NFNLGRP_CONNTRACK_DESTROY = 3, + NFNLGRP_CONNTRACK_EXP_NEW = 4, + NFNLGRP_CONNTRACK_EXP_UPDATE = 5, + NFNLGRP_CONNTRACK_EXP_DESTROY = 6, + NFNLGRP_NFTABLES = 7, + NFNLGRP_ACCT_QUOTA = 8, + NFNLGRP_NFTRACE = 9, + __NFNLGRP_MAX = 10, +}; + +enum nfnl_batch_attributes { + NFNL_BATCH_UNSPEC = 0, + NFNL_BATCH_GENID = 1, + __NFNL_BATCH_MAX = 2, +}; + +struct nfnl_net { + struct sock *nfnl; +}; + +struct nfnl_err { + struct list_head head; + struct nlmsghdr *nlh; + int err; + struct netlink_ext_ack extack; +}; + +enum { + NFNL_BATCH_FAILURE = 1, + NFNL_BATCH_DONE = 2, + NFNL_BATCH_REPLAY = 4, +}; + +enum ip_conntrack_expect_events { + IPEXP_NEW = 0, + IPEXP_DESTROY = 1, +}; + +enum nf_ct_ecache_state { + NFCT_ECACHE_DESTROY_FAIL = 0, + NFCT_ECACHE_DESTROY_SENT = 1, +}; + +enum retry_state { + STATE_CONGESTED = 0, + STATE_RESTART = 1, + STATE_DONE = 2, +}; + +enum ip6_defrag_users { + IP6_DEFRAG_LOCAL_DELIVER = 0, + IP6_DEFRAG_CONNTRACK_IN = 1, + __IP6_DEFRAG_CONNTRACK_IN = 65536, + IP6_DEFRAG_CONNTRACK_OUT = 65537, + __IP6_DEFRAG_CONNTRACK_OUT = 131072, + IP6_DEFRAG_CONNTRACK_BRIDGE_IN = 131073, + __IP6_DEFRAG_CONNTRACK_BRIDGE_IN = 196608, +}; + +enum nft_bitwise_ops { + NFT_BITWISE_BOOL = 0, + NFT_BITWISE_LSHIFT = 1, + NFT_BITWISE_RSHIFT = 2, +}; + +enum nft_bitwise_attributes { + NFTA_BITWISE_UNSPEC = 0, + NFTA_BITWISE_SREG = 1, + NFTA_BITWISE_DREG = 2, + NFTA_BITWISE_LEN = 3, + NFTA_BITWISE_MASK = 4, + NFTA_BITWISE_XOR = 5, + NFTA_BITWISE_OP = 6, + NFTA_BITWISE_DATA = 7, + __NFTA_BITWISE_MAX = 8, +}; + +struct nft_data_desc { + enum nft_data_types type; + unsigned int size; + unsigned int len; + unsigned int flags; +}; + +struct nft_bitwise { + u8 sreg; + u8 dreg; + enum nft_bitwise_ops op: 8; + u8 len; + struct nft_data mask; + struct nft_data xor; + struct nft_data data; +}; + +enum nft_set_attributes { + NFTA_SET_UNSPEC = 0, + NFTA_SET_TABLE = 1, + NFTA_SET_NAME = 2, + NFTA_SET_FLAGS = 3, + NFTA_SET_KEY_TYPE = 4, + NFTA_SET_KEY_LEN = 5, + NFTA_SET_DATA_TYPE = 6, + NFTA_SET_DATA_LEN = 7, + NFTA_SET_POLICY = 8, + NFTA_SET_DESC = 9, + NFTA_SET_ID = 10, + NFTA_SET_TIMEOUT = 11, + NFTA_SET_GC_INTERVAL = 12, + NFTA_SET_USERDATA = 13, + NFTA_SET_PAD = 14, + NFTA_SET_OBJ_TYPE = 15, + NFTA_SET_HANDLE = 16, + NFTA_SET_EXPR = 17, + NFTA_SET_EXPRESSIONS = 18, + __NFTA_SET_MAX = 19, +}; + +struct nft_bitmap_elem { + struct nft_elem_priv priv; + struct list_head head; + struct nft_set_ext ext; +}; + +struct nft_bitmap { + struct list_head list; + u16 bitmap_size; + u8 bitmap[0]; +}; + +enum nft_hash_types { + NFT_HASH_JENKINS = 0, + NFT_HASH_SYM = 1, +}; + +enum nft_hash_attributes { + NFTA_HASH_UNSPEC = 0, + NFTA_HASH_SREG = 1, + NFTA_HASH_DREG = 2, + NFTA_HASH_LEN = 3, + NFTA_HASH_MODULUS = 4, + NFTA_HASH_SEED = 5, + NFTA_HASH_OFFSET = 6, + NFTA_HASH_TYPE = 7, + NFTA_HASH_SET_NAME = 8, + NFTA_HASH_SET_ID = 9, + __NFTA_HASH_MAX = 10, +}; + +struct nft_jhash { + u8 sreg; + u8 dreg; + u8 len; + bool autogen_seed: 1; + u32 modulus; + u32 seed; + u32 offset; +}; + +struct nft_symhash { + u8 dreg; + u32 modulus; + u32 offset; +}; + +struct ip_set_counter_match0 { + __u8 op; + __u64 value; +}; + +struct ip_set_counter_match { + __u64 value; + __u8 op; +}; + +struct xt_set_info_v0 { + ip_set_id_t index; + union { + __u32 flags[7]; + struct { + __u32 __flags[6]; + __u8 dim; + __u8 flags; + } compat; + } u; +}; + +struct xt_set_info_match_v0 { + struct xt_set_info_v0 match_set; +}; + +struct xt_set_info_target_v0 { + struct xt_set_info_v0 add_set; + struct xt_set_info_v0 del_set; +}; + +struct xt_set_info { + ip_set_id_t index; + __u8 dim; + __u8 flags; +}; + +struct xt_set_info_match_v1 { + struct xt_set_info match_set; +}; + +struct xt_set_info_target_v1 { + struct xt_set_info add_set; + struct xt_set_info del_set; +}; + +struct xt_set_info_target_v2 { + struct xt_set_info add_set; + struct xt_set_info del_set; + __u32 flags; + __u32 timeout; +}; + +struct xt_set_info_match_v3 { + struct xt_set_info match_set; + struct ip_set_counter_match0 packets; + struct ip_set_counter_match0 bytes; + __u32 flags; +}; + +struct xt_set_info_target_v3 { + struct xt_set_info add_set; + struct xt_set_info del_set; + struct xt_set_info map_set; + __u32 flags; + __u32 timeout; +}; + +struct xt_set_info_match_v4 { + struct xt_set_info match_set; + struct ip_set_counter_match packets; + struct ip_set_counter_match bytes; + __u32 flags; +}; + +struct nf_nat_ipv4_range { + unsigned int flags; + __be32 min_ip; + __be32 max_ip; + union nf_conntrack_man_proto min; + union nf_conntrack_man_proto max; +}; + +struct nf_nat_ipv4_multi_range_compat { + unsigned int rangesize; + struct nf_nat_ipv4_range range[1]; +}; + +struct xt_helper_info { + int invert; + char name[30]; +}; + +enum xt_policy_flags { + XT_POLICY_MATCH_IN = 1, + XT_POLICY_MATCH_OUT = 2, + XT_POLICY_MATCH_NONE = 4, + XT_POLICY_MATCH_STRICT = 8, +}; + +struct xt_policy_spec { + __u8 saddr: 1; + __u8 daddr: 1; + __u8 proto: 1; + __u8 mode: 1; + __u8 spi: 1; + __u8 reqid: 1; +}; + +struct xt_policy_elem { + union { + struct { + union nf_inet_addr saddr; + union nf_inet_addr smask; + union nf_inet_addr daddr; + union nf_inet_addr dmask; + }; + }; + __be32 spi; + __u32 reqid; + __u8 proto; + __u8 mode; + struct xt_policy_spec match; + struct xt_policy_spec invert; +}; + +struct xt_policy_info { + struct xt_policy_elem pol[4]; + __u16 flags; + __u16 len; +}; + +struct hash_ipport4_elem { + __be32 ip; + __be16 port; + u8 proto; + u8 padding; +}; + +struct hash_ipport4 { + struct htable *table; + struct htable_gc gc; + u32 maxelem; + u32 initval; + u8 bucketsize; + u8 netmask; + union nf_inet_addr bitmask; + struct list_head ad; + struct hash_ipport4_elem next; +}; + +struct hash_ipport4_resize_ad { + struct list_head list; + enum ipset_adt ad; + struct hash_ipport4_elem d; + struct ip_set_ext ext; + struct ip_set_ext mext; + u32 flags; +}; + +struct hash_ipport6_elem { + union nf_inet_addr ip; + __be16 port; + u8 proto; + u8 padding; +}; + +struct hash_ipport6 { + struct htable *table; + struct htable_gc gc; + u32 maxelem; + u32 initval; + u8 bucketsize; + u8 netmask; + union nf_inet_addr bitmask; + struct list_head ad; + struct hash_ipport6_elem next; +}; + +struct hash_ipport6_resize_ad { + struct list_head list; + enum ipset_adt ad; + struct hash_ipport6_elem d; + struct ip_set_ext ext; + struct ip_set_ext mext; + u32 flags; +}; + +struct ip_options_data { + struct ip_options_rcu opt; + char data[40]; +}; + +enum { + LWTUNNEL_XMIT_DONE = 0, + LWTUNNEL_XMIT_CONTINUE = 256, +}; + +struct ipcm_cookie { + struct sockcm_cookie sockc; + __be32 addr; + int oif; + struct ip_options_rcu *opt; + __u8 protocol; + __u8 ttl; + __s16 tos; + char priority; + __u16 gso_size; +}; + +struct ip_fraglist_iter { + struct sk_buff *frag; + struct iphdr *iph; + int offset; + unsigned int hlen; +}; + +struct ip_frag_state { + bool DF; + unsigned int hlen; + unsigned int ll_rs; + unsigned int mtu; + unsigned int left; + int offset; + int ptr; + __be16 not_last_frag; +}; + +struct ip_reply_arg { + struct kvec iov[1]; + int flags; + __wsum csum; + int csumoffset; + int bound_dev_if; + u8 tos; + kuid_t uid; +}; + +enum { + UDP_FLAGS_CORK = 0, + UDP_FLAGS_NO_CHECK6_TX = 1, + UDP_FLAGS_NO_CHECK6_RX = 2, + UDP_FLAGS_GRO_ENABLED = 3, + UDP_FLAGS_ACCEPT_FRAGLIST = 4, + UDP_FLAGS_ACCEPT_L4 = 5, + UDP_FLAGS_ENCAP_ENABLED = 6, + UDP_FLAGS_UDPLITE_SEND_CC = 7, + UDP_FLAGS_UDPLITE_RECV_CC = 8, +}; + +struct icmp_err { + int errno; + unsigned int fatal: 1; +}; + +typedef u32 inet_ehashfn_t(const struct net *, const __be32, const __u16, const __be32, const __be16); + +struct ip_tunnel_encap_ops { + size_t (*encap_hlen)(struct ip_tunnel_encap *); + int (*build_header)(struct sk_buff *, struct ip_tunnel_encap *, u8 *, struct flowi4 *); + int (*err_handler)(struct sk_buff *, u32); +}; + +enum { + XFRM_DEV_OFFLOAD_UNSPECIFIED = 0, + XFRM_DEV_OFFLOAD_CRYPTO = 1, + XFRM_DEV_OFFLOAD_PACKET = 2, +}; + +struct udp_skb_cb { + union { + struct inet_skb_parm h4; + struct inet6_skb_parm h6; + } header; + __u16 cscov; + __u8 partial_cov; +}; + +struct udp_dev_scratch { + u32 _tsize_state; + u16 len; + bool is_linear; + bool csum_unnecessary; +}; + +struct udp_iter_state { + struct seq_net_private p; + int bucket; +}; + +struct bpf_iter__udp { + union { + struct bpf_iter_meta *meta; + }; + union { + struct udp_sock *udp_sk; + }; + uid_t uid; + long: 0; + int bucket; +}; + +struct bpf_udp_iter_state { + struct udp_iter_state state; + unsigned int cur_sk; + unsigned int end_sk; + unsigned int max_sk; + int offset; + struct sock **batch; + bool st_bucket_done; +}; + +struct ip_comp_hdr { + __u8 nexthdr; + __u8 flags; + __be16 cpi; +}; + +enum { + XFRM_STATE_VOID = 0, + XFRM_STATE_ACQ = 1, + XFRM_STATE_VALID = 2, + XFRM_STATE_ERROR = 3, + XFRM_STATE_EXPIRED = 4, + XFRM_STATE_DEAD = 5, +}; + +struct xfrm4_protocol { + int (*handler)(struct sk_buff *); + int (*input_handler)(struct sk_buff *, int, __be32, int); + int (*cb_handler)(struct sk_buff *, int); + int (*err_handler)(struct sk_buff *, u32); + struct xfrm4_protocol *next; + int priority; +}; + +struct arpt_replace { + char name[32]; + unsigned int valid_hooks; + unsigned int num_entries; + unsigned int size; + unsigned int hook_entry[3]; + unsigned int underflow[3]; + unsigned int num_counters; + struct xt_counters *counters; + struct arpt_entry entries[0]; +}; + +struct xfrm_state_afinfo { + u8 family; + u8 proto; + const struct xfrm_type_offload *type_offload_esp; + const struct xfrm_type *type_esp; + const struct xfrm_type *type_ipip; + const struct xfrm_type *type_ipip6; + const struct xfrm_type *type_comp; + const struct xfrm_type *type_ah; + const struct xfrm_type *type_routing; + const struct xfrm_type *type_dstopts; + int (*output)(struct net *, struct sock *, struct sk_buff *); + int (*transport_finish)(struct sk_buff *, int); + void (*local_error)(struct sk_buff *, u32); +}; + +struct xfrm_algo_list { + int (*find)(const char *, u32, u32); + struct xfrm_algo_desc *algs; + int entries; +}; + +struct xfrm_aead_name { + const char *name; + int icvbits; +}; + +struct in6_rtmsg { + struct in6_addr rtmsg_dst; + struct in6_addr rtmsg_src; + struct in6_addr rtmsg_gateway; + __u32 rtmsg_type; + __u16 rtmsg_dst_len; + __u16 rtmsg_src_len; + __u32 rtmsg_metric; + long unsigned int rtmsg_info; + __u32 rtmsg_flags; + int rtmsg_ifindex; +}; + +struct fib6_gc_args { + int timeout; + int more; +}; + +struct rt6_exception { + struct hlist_node hlist; + struct rt6_info *rt6i; + long unsigned int stamp; + struct callback_head rcu; +}; + +struct rt6_rtnl_dump_arg { + struct sk_buff *skb; + struct netlink_callback *cb; + struct net *net; + struct fib_dump_filter filter; +}; + +struct netevent_redirect { + struct dst_entry *old; + struct dst_entry *new; + struct neighbour *neigh; + const void *daddr; +}; + +struct trace_event_raw_fib6_table_lookup { + struct trace_entry ent; + u32 tb_id; + int err; + int oif; + int iif; + __u8 tos; + __u8 scope; + __u8 flags; + __u8 src[16]; + __u8 dst[16]; + u16 sport; + u16 dport; + u8 proto; + u8 rt_type; + char name[16]; + __u8 gw[16]; + char __data[0]; +}; + +struct trace_event_data_offsets_fib6_table_lookup {}; + +typedef void (*btf_trace_fib6_table_lookup)(void *, const struct net *, const struct fib6_result *, struct fib6_table *, const struct flowi6 *); + +enum rt6_nud_state { + RT6_NUD_FAIL_HARD = -3, + RT6_NUD_FAIL_PROBE = -2, + RT6_NUD_FAIL_DO_RR = -1, + RT6_NUD_SUCCEED = 1, +}; + +struct fib6_nh_dm_arg { + struct net *net; + const struct in6_addr *saddr; + int oif; + int flags; + struct fib6_nh *nh; +}; + +struct __rt6_probe_work { + struct work_struct work; + struct in6_addr target; + struct net_device *dev; + netdevice_tracker dev_tracker; +}; + +struct fib6_nh_frl_arg { + u32 flags; + int oif; + int strict; + int *mpri; + bool *do_rr; + struct fib6_nh *nh; +}; + +struct fib6_nh_excptn_arg { + struct rt6_info *rt; + int plen; +}; + +struct fib6_nh_match_arg { + const struct net_device *dev; + const struct in6_addr *gw; + struct fib6_nh *match; +}; + +struct fib6_nh_age_excptn_arg { + struct fib6_gc_args *gc_args; + long unsigned int now; +}; + +struct fib6_nh_rd_arg { + struct fib6_result *res; + struct flowi6 *fl6; + const struct in6_addr *gw; + struct rt6_info **ret; +}; + +struct ip6rd_flowi { + struct flowi6 fl6; + struct in6_addr gateway; +}; + +struct fib6_nh_del_cached_rt_arg { + struct fib6_config *cfg; + struct fib6_info *f6i; +}; + +struct arg_dev_net_ip { + struct net *net; + struct in6_addr *addr; +}; + +struct arg_netdev_event { + const struct net_device *dev; + union { + unsigned char nh_flags; + long unsigned int event; + }; +}; + +struct rt6_mtu_change_arg { + struct net_device *dev; + unsigned int mtu; + struct fib6_info *f6i; +}; + +struct rt6_nh { + struct fib6_info *fib6_info; + struct fib6_config r_cfg; + struct list_head next; +}; + +struct fib6_nh_exception_dump_walker { + struct rt6_rtnl_dump_arg *dump; + struct fib6_info *rt; + unsigned int flags; + unsigned int skip; + unsigned int count; +}; + +struct ip6t_ipv6header_info { + __u8 matchflags; + __u8 invflags; + __u8 modeflag; +}; + +enum { + IFLA_BRIDGE_VLAN_TUNNEL_UNSPEC = 0, + IFLA_BRIDGE_VLAN_TUNNEL_ID = 1, + IFLA_BRIDGE_VLAN_TUNNEL_VID = 2, + IFLA_BRIDGE_VLAN_TUNNEL_FLAGS = 3, + __IFLA_BRIDGE_VLAN_TUNNEL_MAX = 4, +}; + +struct ebt_limit_info { + __u32 avg; + __u32 burst; + long unsigned int prev; + __u32 credit; + __u32 credit_cap; + __u32 cost; +}; + +struct rpc_filelist { + const char *name; + const struct file_operations *i_fop; + umode_t mode; +}; + +enum { + RPCAUTH_info = 0, + RPCAUTH_EOF = 1, +}; + +enum { + RPCAUTH_lockd = 0, + RPCAUTH_mount = 1, + RPCAUTH_nfs = 2, + RPCAUTH_portmap = 3, + RPCAUTH_statd = 4, + RPCAUTH_nfsd4_cb = 5, + RPCAUTH_cache = 6, + RPCAUTH_nfsd = 7, + RPCAUTH_gssd = 8, + RPCAUTH_RootEOF = 9, +}; + +struct sockaddr_l2tpip { + __kernel_sa_family_t l2tp_family; + __be16 l2tp_unused; + struct in_addr l2tp_addr; + __u32 l2tp_conn_id; + unsigned char __pad[4]; +}; + +struct sockaddr_l2tpip6 { + __kernel_sa_family_t l2tp_family; + __be16 l2tp_unused; + __be32 l2tp_flowinfo; + struct in6_addr l2tp_addr; + __u32 l2tp_scope_id; + __u32 l2tp_conn_id; +}; + +enum l2tp_pwtype { + L2TP_PWTYPE_NONE = 0, + L2TP_PWTYPE_ETH_VLAN = 4, + L2TP_PWTYPE_ETH = 5, + L2TP_PWTYPE_PPP = 7, + L2TP_PWTYPE_PPP_AC = 8, + L2TP_PWTYPE_IP = 11, + __L2TP_PWTYPE_MAX = 12, +}; + +enum l2tp_l2spec_type { + L2TP_L2SPECTYPE_NONE = 0, + L2TP_L2SPECTYPE_DEFAULT = 1, +}; + +enum l2tp_encap_type { + L2TP_ENCAPTYPE_UDP = 0, + L2TP_ENCAPTYPE_IP = 1, +}; + +struct udp_port_cfg { + u8 family; + union { + struct in_addr local_ip; + struct in6_addr local_ip6; + }; + union { + struct in_addr peer_ip; + struct in6_addr peer_ip6; + }; + __be16 local_udp_port; + __be16 peer_udp_port; + int bind_ifindex; + unsigned int use_udp_checksums: 1; + unsigned int use_udp6_tx_checksums: 1; + unsigned int use_udp6_rx_checksums: 1; + unsigned int ipv6_v6only: 1; +}; + +typedef int (*udp_tunnel_encap_rcv_t)(struct sock *, struct sk_buff *); + +typedef int (*udp_tunnel_encap_err_lookup_t)(struct sock *, struct sk_buff *); + +typedef void (*udp_tunnel_encap_err_rcv_t)(struct sock *, struct sk_buff *, int, __be16, u32, u8 *); + +typedef void (*udp_tunnel_encap_destroy_t)(struct sock *); + +typedef struct sk_buff * (*udp_tunnel_gro_receive_t)(struct sock *, struct list_head *, struct sk_buff *); + +typedef int (*udp_tunnel_gro_complete_t)(struct sock *, struct sk_buff *, int); + +struct udp_tunnel_sock_cfg { + void *sk_user_data; + __u8 encap_type; + udp_tunnel_encap_rcv_t encap_rcv; + udp_tunnel_encap_err_lookup_t encap_err_lookup; + udp_tunnel_encap_err_rcv_t encap_err_rcv; + udp_tunnel_encap_destroy_t encap_destroy; + udp_tunnel_gro_receive_t gro_receive; + udp_tunnel_gro_complete_t gro_complete; +}; + +struct l2tp_stats { + atomic_long_t tx_packets; + atomic_long_t tx_bytes; + atomic_long_t tx_errors; + atomic_long_t rx_packets; + atomic_long_t rx_bytes; + atomic_long_t rx_seq_discards; + atomic_long_t rx_oos_packets; + atomic_long_t rx_errors; + atomic_long_t rx_cookie_discards; + atomic_long_t rx_invalid; +}; + +struct l2tp_session_cfg { + enum l2tp_pwtype pw_type; + unsigned int recv_seq: 1; + unsigned int send_seq: 1; + unsigned int lns_mode: 1; + u16 l2specific_type; + u8 cookie[8]; + int cookie_len; + u8 peer_cookie[8]; + int peer_cookie_len; + int reorder_timeout; + char *ifname; +}; + +struct l2tp_session_coll_list { + spinlock_t lock; + struct list_head list; + refcount_t ref_count; +}; + +struct l2tp_tunnel; + +struct l2tp_session { + int magic; + long int dead; + struct callback_head rcu; + struct l2tp_tunnel *tunnel; + u32 session_id; + u32 peer_session_id; + u8 cookie[8]; + int cookie_len; + u8 peer_cookie[8]; + int peer_cookie_len; + u16 l2specific_type; + u16 hdr_len; + u32 nr; + u32 ns; + struct sk_buff_head reorder_q; + u32 nr_max; + u32 nr_window_size; + u32 nr_oos; + int nr_oos_count; + int nr_oos_count_max; + struct list_head list; + refcount_t ref_count; + struct hlist_node hlist; + long unsigned int hlist_key; + struct l2tp_session_coll_list *coll_list; + struct list_head clist; + char name[32]; + char ifname[16]; + unsigned int recv_seq: 1; + unsigned int send_seq: 1; + unsigned int lns_mode: 1; + int reorder_timeout; + int reorder_skip; + enum l2tp_pwtype pwtype; + struct l2tp_stats stats; + struct work_struct del_work; + void (*recv_skb)(struct l2tp_session *, struct sk_buff *, int); + void (*session_close)(struct l2tp_session *); + void (*show)(struct seq_file *, void *); + u8 priv[0]; +}; + +struct l2tp_tunnel { + long unsigned int dead; + struct callback_head rcu; + spinlock_t list_lock; + bool acpt_newsess; + struct list_head session_list; + u32 tunnel_id; + u32 peer_tunnel_id; + int version; + char name[20]; + enum l2tp_encap_type encap; + struct l2tp_stats stats; + struct net *l2tp_net; + refcount_t ref_count; + struct sock *sock; + int fd; + struct work_struct del_work; +}; + +struct l2tp_tunnel_cfg { + enum l2tp_encap_type encap; + struct in_addr local_ip; + struct in_addr peer_ip; + struct in6_addr *local_ip6; + struct in6_addr *peer_ip6; + u16 local_udp_port; + u16 peer_udp_port; + unsigned int use_udp_checksums: 1; + unsigned int udp6_zero_tx_checksums: 1; + unsigned int udp6_zero_rx_checksums: 1; +}; + +struct trace_event_raw_tunnel_only_evt { + struct trace_entry ent; + char name[20]; + char __data[0]; +}; + +struct trace_event_raw_session_only_evt { + struct trace_entry ent; + char name[32]; + char __data[0]; +}; + +struct trace_event_raw_register_tunnel { + struct trace_entry ent; + char name[20]; + int fd; + u32 tid; + u32 ptid; + int version; + enum l2tp_encap_type encap; + char __data[0]; +}; + +struct trace_event_raw_register_session { + struct trace_entry ent; + char name[32]; + u32 tid; + u32 ptid; + u32 sid; + u32 psid; + enum l2tp_pwtype pwtype; + char __data[0]; +}; + +struct trace_event_raw_session_seqnum_evt { + struct trace_entry ent; + char name[32]; + u32 ns; + u32 nr; + char __data[0]; +}; + +struct trace_event_raw_session_pkt_discard_evt { + struct trace_entry ent; + char name[32]; + u32 pkt_ns; + u32 my_nr; + u32 reorder_q_len; + char __data[0]; +}; + +struct trace_event_data_offsets_tunnel_only_evt {}; + +struct trace_event_data_offsets_session_only_evt {}; + +struct trace_event_data_offsets_register_tunnel {}; + +struct trace_event_data_offsets_register_session {}; + +struct trace_event_data_offsets_session_seqnum_evt {}; + +struct trace_event_data_offsets_session_pkt_discard_evt {}; + +typedef void (*btf_trace_register_tunnel)(void *, struct l2tp_tunnel *); + +typedef void (*btf_trace_delete_tunnel)(void *, struct l2tp_tunnel *); + +typedef void (*btf_trace_free_tunnel)(void *, struct l2tp_tunnel *); + +typedef void (*btf_trace_register_session)(void *, struct l2tp_session *); + +typedef void (*btf_trace_delete_session)(void *, struct l2tp_session *); + +typedef void (*btf_trace_free_session)(void *, struct l2tp_session *); + +typedef void (*btf_trace_session_seqnum_lns_enable)(void *, struct l2tp_session *); + +typedef void (*btf_trace_session_seqnum_lns_disable)(void *, struct l2tp_session *); + +typedef void (*btf_trace_session_seqnum_update)(void *, struct l2tp_session *); + +typedef void (*btf_trace_session_seqnum_reset)(void *, struct l2tp_session *); + +typedef void (*btf_trace_session_pkt_expired)(void *, struct l2tp_session *, u32); + +typedef void (*btf_trace_session_pkt_outside_rx_window)(void *, struct l2tp_session *, u32); + +typedef void (*btf_trace_session_pkt_oos)(void *, struct l2tp_session *, u32); + +struct l2tp_skb_cb { + u32 ns; + u16 has_seq; + u16 length; + long unsigned int expires; +}; + +struct l2tp_net { + spinlock_t l2tp_tunnel_idr_lock; + struct idr l2tp_tunnel_idr; + spinlock_t l2tp_session_idr_lock; + struct idr l2tp_v2_session_idr; + struct idr l2tp_v3_session_idr; + struct hlist_head l2tp_v3_session_htable[16]; +}; + +struct sctp_gap_ack_block { + __be16 start; + __be16 end; +}; + +enum { + SCTP_MAX_GABS = 16, +}; + +struct sctp_tsnmap_iter { + __u32 start; +}; + +enum { + SCTP_DSCP_SET_MASK = 1, + SCTP_DSCP_VAL_MASK = 252, + SCTP_FLOWLABEL_SET_MASK = 1048576, + SCTP_FLOWLABEL_VAL_MASK = 1048575, +}; + +struct sctp6_sock { + struct sctp_sock sctp; + struct ipv6_pinfo inet6; +}; + +enum ovs_vport_cmd { + OVS_VPORT_CMD_UNSPEC = 0, + OVS_VPORT_CMD_NEW = 1, + OVS_VPORT_CMD_DEL = 2, + OVS_VPORT_CMD_GET = 3, + OVS_VPORT_CMD_SET = 4, +}; + +struct ovs_ct_limit_info; + +struct ovs_net { + struct list_head dps; + struct work_struct dp_notify_work; + struct delayed_work masks_rebalance; + struct ovs_ct_limit_info *ct_limit_info; + bool xt_label; +}; + +struct mpls_nh { + struct net_device *nh_dev; + unsigned int nh_flags; + u8 nh_labels; + u8 nh_via_alen; + u8 nh_via_table; + u8 nh_reserved1; + u32 nh_label[0]; +}; + +struct mpls_route { + struct callback_head rt_rcu; + u8 rt_protocol; + u8 rt_payload_type; + u8 rt_max_alen; + u8 rt_ttl_propagate; + u8 rt_nhn; + u8 rt_nhn_alive; + u8 rt_nh_size; + u8 rt_via_offset; + u8 rt_reserved1; + struct mpls_nh rt_nh[0]; +}; + +struct mpls_pcpu_stats; + +struct mpls_dev { + int input_enabled; + struct net_device *dev; + struct mpls_pcpu_stats *stats; + struct ctl_table_header *sysctl; + struct callback_head rcu; +}; + +struct rtnl_msg_handler { + struct module *owner; + int protocol; + int msgtype; + rtnl_doit_func doit; + rtnl_dumpit_func dumpit; + int flags; +}; + +enum { + MPLS_STATS_UNSPEC = 0, + MPLS_STATS_LINK = 1, + __MPLS_STATS_MAX = 2, +}; + +struct mpls_link_stats { + __u64 rx_packets; + __u64 tx_packets; + __u64 rx_bytes; + __u64 tx_bytes; + __u64 rx_errors; + __u64 tx_errors; + __u64 rx_dropped; + __u64 tx_dropped; + __u64 rx_noroute; +}; + +struct netconfmsg { + __u8 ncm_family; +}; + +enum { + NETCONFA_UNSPEC = 0, + NETCONFA_IFINDEX = 1, + NETCONFA_FORWARDING = 2, + NETCONFA_RP_FILTER = 3, + NETCONFA_MC_FORWARDING = 4, + NETCONFA_PROXY_NEIGH = 5, + NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN = 6, + NETCONFA_INPUT = 7, + NETCONFA_BC_FORWARDING = 8, + __NETCONFA_MAX = 9, +}; + +struct mpls_shim_hdr { + __be32 label_stack_entry; +}; + +struct mpls_entry_decoded { + u32 label; + u8 ttl; + u8 tc; + u8 bos; +}; + +struct mpls_pcpu_stats { + struct mpls_link_stats stats; + struct u64_stats_sync syncp; +}; + +enum mpls_payload_type { + MPT_UNSPEC = 0, + MPT_IPV4 = 4, + MPT_IPV6 = 6, +}; + +enum mpls_ttl_propagation { + MPLS_TTL_PROP_DEFAULT = 0, + MPLS_TTL_PROP_ENABLED = 1, + MPLS_TTL_PROP_DISABLED = 2, +}; + +struct mpls_route_config { + u32 rc_protocol; + u32 rc_ifindex; + u8 rc_via_table; + u8 rc_via_alen; + u8 rc_via[32]; + u32 rc_label; + u8 rc_ttl_propagate; + u8 rc_output_labels; + u32 rc_output_label[30]; + u32 rc_nlflags; + enum mpls_payload_type rc_payload_type; + struct nl_info rc_nlinfo; + struct rtnexthop *rc_mp; + int rc_mp_len; +}; + +struct trace_event_raw_cpuhp_enter { + struct trace_entry ent; + unsigned int cpu; + int target; + int idx; + void *fun; + char __data[0]; +}; + +struct trace_event_raw_cpuhp_multi_enter { + struct trace_entry ent; + unsigned int cpu; + int target; + int idx; + void *fun; + char __data[0]; +}; + +struct trace_event_raw_cpuhp_exit { + struct trace_entry ent; + unsigned int cpu; + int state; + int idx; + int ret; + char __data[0]; +}; + +struct trace_event_data_offsets_cpuhp_enter {}; + +struct trace_event_data_offsets_cpuhp_multi_enter {}; + +struct trace_event_data_offsets_cpuhp_exit {}; + +typedef void (*btf_trace_cpuhp_enter)(void *, unsigned int, int, int, int (*)(unsigned int)); + +typedef void (*btf_trace_cpuhp_multi_enter)(void *, unsigned int, int, int, int (*)(unsigned int, struct hlist_node *), struct hlist_node *); + +typedef void (*btf_trace_cpuhp_exit)(void *, unsigned int, int, int, int); + +struct cpuhp_cpu_state { + enum cpuhp_state state; + enum cpuhp_state target; + enum cpuhp_state fail; + struct task_struct *thread; + bool should_run; + bool rollback; + bool single; + bool bringup; + struct hlist_node *node; + struct hlist_node *last; + enum cpuhp_state cb_state; + int result; + atomic_t ap_sync_state; + struct completion done_up; + struct completion done_down; +}; + +struct cpuhp_step { + const char *name; + union { + int (*single)(unsigned int); + int (*multi)(unsigned int, struct hlist_node *); + } startup; + union { + int (*single)(unsigned int); + int (*multi)(unsigned int, struct hlist_node *); + } teardown; + struct hlist_head list; + bool cant_stop; + bool multi_instance; +}; + +enum cpuhp_sync_state { + SYNC_STATE_DEAD = 0, + SYNC_STATE_KICKED = 1, + SYNC_STATE_SHOULD_DIE = 2, + SYNC_STATE_ALIVE = 3, + SYNC_STATE_SHOULD_ONLINE = 4, + SYNC_STATE_ONLINE = 5, +}; + +enum cpu_mitigations { + CPU_MITIGATIONS_OFF = 0, + CPU_MITIGATIONS_AUTO = 1, + CPU_MITIGATIONS_AUTO_NOSMT = 2, +}; + +struct sched_param { + int sched_priority; +}; + +enum { + KTW_FREEZABLE = 1, +}; + +struct kthread_delayed_work { + struct kthread_work work; + struct timer_list timer; +}; + +struct kthread_create_info { + char *full_name; + int (*threadfn)(void *); + void *data; + int node; + struct task_struct *result; + struct completion *done; + struct list_head list; +}; + +struct kthread { + long unsigned int flags; + unsigned int cpu; + int result; + int (*threadfn)(void *); + void *data; + struct completion parked; + struct completion exited; + struct cgroup_subsys_state *blkcg_css; + char *full_name; +}; + +enum KTHREAD_BITS { + KTHREAD_IS_PER_CPU = 0, + KTHREAD_SHOULD_STOP = 1, + KTHREAD_SHOULD_PARK = 2, +}; + +struct kthread_flush_work { + struct kthread_work work; + struct completion done; +}; + +struct mcs_spinlock { + struct mcs_spinlock *next; + int locked; + int count; +}; + +struct qnode { + struct mcs_spinlock mcs; +}; + +enum { + IRQC_IS_HARDIRQ = 0, + IRQC_IS_NESTED = 1, +}; + +struct ktime_timestamps { + u64 mono; + u64 boot; + u64 real; +}; + +struct system_time_snapshot { + u64 cycles; + ktime_t real; + ktime_t raw; + enum clocksource_ids cs_id; + unsigned int clock_was_set_seq; + u8 cs_was_changed_seq; +}; + +struct system_device_crosststamp { + ktime_t device; + ktime_t sys_realtime; + ktime_t sys_monoraw; +}; + +struct system_counterval_t { + u64 cycles; + enum clocksource_ids cs_id; + bool use_nsecs; +}; + +enum timekeeping_adv_mode { + TK_ADV_TICK = 0, + TK_ADV_FREQ = 1, +}; + +struct tk_fast { + seqcount_latch_t seq; + struct tk_read_base base[2]; +}; + +struct tmigr_event { + struct timerqueue_node nextevt; + unsigned int cpu; + bool ignore; +}; + +struct tmigr_group { + raw_spinlock_t lock; + struct tmigr_group *parent; + struct tmigr_event groupevt; + u64 next_expiry; + struct timerqueue_head events; + atomic_t migr_state; + unsigned int level; + int numa_node; + unsigned int num_children; + u8 groupmask; + struct list_head list; +}; + +struct tmigr_cpu { + raw_spinlock_t lock; + bool online; + bool idle; + bool remote; + struct tmigr_group *tmgroup; + u8 groupmask; + u64 wakeup; + struct tmigr_event cpuevt; +}; + +union tmigr_state { + u32 state; + struct { + u8 active; + u8 migrator; + u16 seq; + }; +}; + +struct trace_event_raw_tmigr_group_set { + struct trace_entry ent; + void *group; + unsigned int lvl; + unsigned int numa_node; + char __data[0]; +}; + +struct trace_event_raw_tmigr_connect_child_parent { + struct trace_entry ent; + void *child; + void *parent; + unsigned int lvl; + unsigned int numa_node; + unsigned int num_children; + u32 groupmask; + char __data[0]; +}; + +struct trace_event_raw_tmigr_connect_cpu_parent { + struct trace_entry ent; + void *parent; + unsigned int cpu; + unsigned int lvl; + unsigned int numa_node; + unsigned int num_children; + u32 groupmask; + char __data[0]; +}; + +struct trace_event_raw_tmigr_group_and_cpu { + struct trace_entry ent; + void *group; + void *parent; + unsigned int lvl; + unsigned int numa_node; + u32 childmask; + u8 active; + u8 migrator; + char __data[0]; +}; + +struct trace_event_raw_tmigr_cpugroup { + struct trace_entry ent; + u64 wakeup; + void *parent; + unsigned int cpu; + char __data[0]; +}; + +struct trace_event_raw_tmigr_idle { + struct trace_entry ent; + u64 nextevt; + u64 wakeup; + void *parent; + unsigned int cpu; + char __data[0]; +}; + +struct trace_event_raw_tmigr_update_events { + struct trace_entry ent; + void *child; + void *group; + u64 nextevt; + u64 group_next_expiry; + u64 child_evt_expiry; + unsigned int group_lvl; + unsigned int child_evtcpu; + u8 child_active; + u8 group_active; + char __data[0]; +}; + +struct trace_event_raw_tmigr_handle_remote { + struct trace_entry ent; + void *group; + unsigned int lvl; + char __data[0]; +}; + +struct trace_event_data_offsets_tmigr_group_set {}; + +struct trace_event_data_offsets_tmigr_connect_child_parent {}; + +struct trace_event_data_offsets_tmigr_connect_cpu_parent {}; + +struct trace_event_data_offsets_tmigr_group_and_cpu {}; + +struct trace_event_data_offsets_tmigr_cpugroup {}; + +struct trace_event_data_offsets_tmigr_idle {}; + +struct trace_event_data_offsets_tmigr_update_events {}; + +struct trace_event_data_offsets_tmigr_handle_remote {}; + +typedef void (*btf_trace_tmigr_group_set)(void *, struct tmigr_group *); + +typedef void (*btf_trace_tmigr_connect_child_parent)(void *, struct tmigr_group *); + +typedef void (*btf_trace_tmigr_connect_cpu_parent)(void *, struct tmigr_cpu *); + +typedef void (*btf_trace_tmigr_group_set_cpu_inactive)(void *, struct tmigr_group *, union tmigr_state, u32); + +typedef void (*btf_trace_tmigr_group_set_cpu_active)(void *, struct tmigr_group *, union tmigr_state, u32); + +typedef void (*btf_trace_tmigr_cpu_new_timer)(void *, struct tmigr_cpu *); + +typedef void (*btf_trace_tmigr_cpu_active)(void *, struct tmigr_cpu *); + +typedef void (*btf_trace_tmigr_cpu_online)(void *, struct tmigr_cpu *); + +typedef void (*btf_trace_tmigr_cpu_offline)(void *, struct tmigr_cpu *); + +typedef void (*btf_trace_tmigr_handle_remote_cpu)(void *, struct tmigr_cpu *); + +typedef void (*btf_trace_tmigr_cpu_idle)(void *, struct tmigr_cpu *, u64); + +typedef void (*btf_trace_tmigr_cpu_new_timer_idle)(void *, struct tmigr_cpu *, u64); + +typedef void (*btf_trace_tmigr_update_events)(void *, struct tmigr_group *, struct tmigr_group *, union tmigr_state, union tmigr_state, u64); + +typedef void (*btf_trace_tmigr_handle_remote)(void *, struct tmigr_group *); + +struct tmigr_walk { + u64 nextexp; + u64 firstexp; + struct tmigr_event *evt; + u8 childmask; + bool remote; + long unsigned int basej; + u64 now; + bool check; + bool tmc_active; +}; + +typedef bool (*up_f)(struct tmigr_group *, struct tmigr_group *, struct tmigr_walk *); + +struct cpu_stop_done { + atomic_t nr_todo; + int ret; + struct completion completion; +}; + +struct cpu_stopper { + struct task_struct *thread; + raw_spinlock_t lock; + bool enabled; + struct list_head works; + struct cpu_stop_work stop_work; + long unsigned int caller; + cpu_stop_fn_t fn; +}; + +enum multi_stop_state { + MULTI_STOP_NONE = 0, + MULTI_STOP_PREPARE = 1, + MULTI_STOP_DISABLE_IRQ = 2, + MULTI_STOP_RUN = 3, + MULTI_STOP_EXIT = 4, +}; + +struct multi_stop_data { + cpu_stop_fn_t fn; + void *data; + unsigned int num_threads; + const struct cpumask *active_cpus; + enum multi_stop_state state; + atomic_t thread_ack; +}; + +enum { + TRACE_NOP_OPT_ACCEPT = 1, + TRACE_NOP_OPT_REFUSE = 2, +}; + +struct trace_probe_log { + const char *subsystem; + const char **argv; + int argc; + int index; +}; + +enum bpf_jit_poke_reason { + BPF_POKE_REASON_TAIL_CALL = 0, +}; + +struct bpf_iter__bpf_map_elem { + union { + struct bpf_iter_meta *meta; + }; + union { + struct bpf_map *map; + }; + union { + void *key; + }; + union { + void *value; + }; +}; + +struct bpf_iter_seq_array_map_info { + struct bpf_map *map; + void *percpu_value_buf; + u32 index; +}; + +struct prog_poke_elem { + struct list_head list; + struct bpf_prog_aux *aux; +}; + +typedef u64 (*btf_bpf_cgrp_storage_get)(struct bpf_map *, struct cgroup *, void *, u64, gfp_t); + +typedef u64 (*btf_bpf_cgrp_storage_delete)(struct bpf_map *, struct cgroup *); + +struct perf_event_mmap_page { + __u32 version; + __u32 compat_version; + __u32 lock; + __u32 index; + __s64 offset; + __u64 time_enabled; + __u64 time_running; + union { + __u64 capabilities; + struct { + __u64 cap_bit0: 1; + __u64 cap_bit0_is_deprecated: 1; + __u64 cap_user_rdpmc: 1; + __u64 cap_user_time: 1; + __u64 cap_user_time_zero: 1; + __u64 cap_user_time_short: 1; + __u64 cap_____res: 58; + }; + }; + __u16 pmc_width; + __u16 time_shift; + __u32 time_mult; + __u64 time_offset; + __u64 time_zero; + __u32 size; + __u32 __reserved_1; + __u64 time_cycles; + __u64 time_mask; + __u8 __reserved[928]; + __u64 data_head; + __u64 data_tail; + __u64 data_offset; + __u64 data_size; + __u64 aux_head; + __u64 aux_tail; + __u64 aux_offset; + __u64 aux_size; +}; + +struct perf_buffer { + refcount_t refcount; + struct callback_head callback_head; + int nr_pages; + int overwrite; + int paused; + atomic_t poll; + local_t head; + unsigned int nest; + local_t events; + local_t wakeup; + local_t lost; + long int watermark; + long int aux_watermark; + spinlock_t event_lock; + struct list_head event_list; + atomic_t mmap_count; + long unsigned int mmap_locked; + struct user_struct *mmap_user; + struct mutex aux_mutex; + long int aux_head; + unsigned int aux_nest; + long int aux_wakeup; + long unsigned int aux_pgoff; + int aux_nr_pages; + int aux_overwrite; + atomic_t aux_mmap_count; + long unsigned int aux_mmap_locked; + void (*free_aux)(void *); + refcount_t aux_refcount; + int aux_in_sampling; + int aux_in_pause_resume; + void **aux_pages; + void *aux_priv; + struct perf_event_mmap_page *user_page; + void *data_pages[0]; +}; + +struct callchain_cpus_entries { + struct callback_head callback_head; + struct perf_callchain_entry *cpu_entries[0]; +}; + +struct wait_page_key { + struct folio *folio; + int bit_nr; + int page_match; +}; + +struct cachestat_range { + __u64 off; + __u64 len; +}; + +struct cachestat { + __u64 nr_cache; + __u64 nr_dirty; + __u64 nr_writeback; + __u64 nr_evicted; + __u64 nr_recently_evicted; +}; + +struct trace_event_raw_mm_filemap_op_page_cache { + struct trace_entry ent; + long unsigned int pfn; + long unsigned int i_ino; + long unsigned int index; + dev_t s_dev; + unsigned char order; + char __data[0]; +}; + +struct trace_event_raw_mm_filemap_op_page_cache_range { + struct trace_entry ent; + long unsigned int i_ino; + dev_t s_dev; + long unsigned int index; + long unsigned int last_index; + char __data[0]; +}; + +struct trace_event_raw_mm_filemap_fault { + struct trace_entry ent; + long unsigned int i_ino; + dev_t s_dev; + long unsigned int index; + char __data[0]; +}; + +struct trace_event_raw_filemap_set_wb_err { + struct trace_entry ent; + long unsigned int i_ino; + dev_t s_dev; + errseq_t errseq; + char __data[0]; +}; + +struct trace_event_raw_file_check_and_advance_wb_err { + struct trace_entry ent; + struct file *file; + long unsigned int i_ino; + dev_t s_dev; + errseq_t old; + errseq_t new; + char __data[0]; +}; + +struct trace_event_data_offsets_mm_filemap_op_page_cache {}; + +struct trace_event_data_offsets_mm_filemap_op_page_cache_range {}; + +struct trace_event_data_offsets_mm_filemap_fault {}; + +struct trace_event_data_offsets_filemap_set_wb_err {}; + +struct trace_event_data_offsets_file_check_and_advance_wb_err {}; + +typedef void (*btf_trace_mm_filemap_delete_from_page_cache)(void *, struct folio *); + +typedef void (*btf_trace_mm_filemap_add_to_page_cache)(void *, struct folio *); + +typedef void (*btf_trace_mm_filemap_get_pages)(void *, struct address_space *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_mm_filemap_map_pages)(void *, struct address_space *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_mm_filemap_fault)(void *, struct address_space *, long unsigned int); + +typedef void (*btf_trace_filemap_set_wb_err)(void *, struct address_space *, errseq_t); + +typedef void (*btf_trace_file_check_and_advance_wb_err)(void *, struct file *, errseq_t); + +enum behavior { + EXCLUSIVE = 0, + SHARED = 1, + DROP = 2, +}; + +struct trace_event_raw_mmap_lock { + struct trace_entry ent; + struct mm_struct *mm; + u32 __data_loc_memcg_path; + bool write; + char __data[0]; +}; + +struct trace_event_raw_mmap_lock_acquire_returned { + struct trace_entry ent; + struct mm_struct *mm; + u32 __data_loc_memcg_path; + bool write; + bool success; + char __data[0]; +}; + +struct trace_event_data_offsets_mmap_lock { + u32 memcg_path; + const void *memcg_path_ptr_; +}; + +struct trace_event_data_offsets_mmap_lock_acquire_returned { + u32 memcg_path; + const void *memcg_path_ptr_; +}; + +typedef void (*btf_trace_mmap_lock_start_locking)(void *, struct mm_struct *, const char *, bool); + +typedef void (*btf_trace_mmap_lock_released)(void *, struct mm_struct *, const char *, bool); + +typedef void (*btf_trace_mmap_lock_acquire_returned)(void *, struct mm_struct *, const char *, bool, bool); + +struct anon_vma_name { + struct kref kref; + char name[0]; +}; + +struct vma_prepare { + struct vm_area_struct *vma; + struct vm_area_struct *adj_next; + struct file *file; + struct address_space *mapping; + struct anon_vma *anon_vma; + struct vm_area_struct *insert; + struct vm_area_struct *remove; + struct vm_area_struct *remove2; +}; + +struct vma_munmap_struct { + struct vma_iterator *vmi; + struct vm_area_struct *vma; + struct vm_area_struct *prev; + struct vm_area_struct *next; + struct list_head *uf; + long unsigned int start; + long unsigned int end; + long unsigned int unmap_start; + long unsigned int unmap_end; + int vma_count; + bool unlock; + bool clear_ptes; + long unsigned int nr_pages; + long unsigned int locked_vm; + long unsigned int nr_accounted; + long unsigned int exec_vm; + long unsigned int stack_vm; + long unsigned int data_vm; +}; + +enum vma_merge_state { + VMA_MERGE_START = 0, + VMA_MERGE_ERROR_NOMEM = 1, + VMA_MERGE_NOMERGE = 2, + VMA_MERGE_SUCCESS = 3, +}; + +enum vma_merge_flags { + VMG_FLAG_DEFAULT = 0, + VMG_FLAG_JUST_EXPAND = 1, +}; + +struct vma_merge_struct { + struct mm_struct *mm; + struct vma_iterator *vmi; + long unsigned int pgoff; + struct vm_area_struct *prev; + struct vm_area_struct *next; + struct vm_area_struct *vma; + long unsigned int start; + long unsigned int end; + long unsigned int flags; + struct file *file; + struct anon_vma *anon_vma; + struct mempolicy *policy; + struct vm_userfaultfd_ctx uffd_ctx; + struct anon_vma_name *anon_name; + enum vma_merge_flags merge_flags; + enum vma_merge_state state; + bool give_up_on_oom: 1; +}; + +typedef int cydp_t; + +struct madvise_walk_private { + struct mmu_gather *tlb; + bool pageout; +}; + +struct zbud_pool { + spinlock_t lock; + union { + struct list_head buddied; + struct list_head unbuddied[63]; + }; + u64 pages_nr; +}; + +struct zbud_header { + struct list_head buddy; + unsigned int first_chunks; + unsigned int last_chunks; +}; + +enum buddy { + FIRST = 0, + LAST = 1, +}; + +typedef struct { + long unsigned int fds_bits[16]; +} __kernel_fd_set; + +typedef __kernel_fd_set fd_set; + +struct poll_table_entry { + struct file *filp; + __poll_t key; + wait_queue_entry_t wait; + wait_queue_head_t *wait_address; +}; + +struct poll_table_page; + +struct poll_wqueues { + poll_table pt; + struct poll_table_page *table; + struct task_struct *polling_task; + int triggered; + int error; + int inline_index; + struct poll_table_entry inline_entries[9]; +}; + +struct poll_table_page { + struct poll_table_page *next; + struct poll_table_entry *entry; + struct poll_table_entry entries[0]; +}; + +enum poll_time_type { + PT_TIMEVAL = 0, + PT_OLD_TIMEVAL = 1, + PT_TIMESPEC = 2, + PT_OLD_TIMESPEC = 3, +}; + +typedef struct { + long unsigned int *in; + long unsigned int *out; + long unsigned int *ex; + long unsigned int *res_in; + long unsigned int *res_out; + long unsigned int *res_ex; +} fd_set_bits; + +struct sigset_argpack { + sigset_t *p; + size_t size; +}; + +struct poll_list { + struct poll_list *next; + unsigned int len; + struct pollfd entries[0]; +}; + +enum legacy_fs_param { + LEGACY_FS_UNSET_PARAMS = 0, + LEGACY_FS_MONOLITHIC_PARAMS = 1, + LEGACY_FS_INDIVIDUAL_PARAMS = 2, +}; + +struct legacy_fs_context { + char *legacy_data; + size_t data_size; + enum legacy_fs_param param_type; +}; + +struct fscrypt_symlink_data { + __le16 len; + char encrypted_path[0]; +}; + +struct backing_file_ctx { + const struct cred *cred; + struct file *user_file; + void (*accessed)(struct file *); + void (*end_write)(struct file *, loff_t, ssize_t); +}; + +struct backing_aio { + struct kiocb iocb; + refcount_t ref; + struct kiocb *orig_iocb; + void (*end_write)(struct file *, loff_t, ssize_t); + struct work_struct work; + long int res; +}; + +struct core_vma_metadata; + +struct coredump_params { + const kernel_siginfo_t *siginfo; + struct file *file; + long unsigned int limit; + long unsigned int mm_flags; + int cpu; + loff_t written; + loff_t pos; + loff_t to_skip; + int vma_count; + size_t vma_data_size; + struct core_vma_metadata *vma_meta; + struct pid *pid; +}; + +struct core_vma_metadata { + long unsigned int start; + long unsigned int end; + long unsigned int flags; + long unsigned int dump_size; + long unsigned int pgoff; + struct file *file; +}; + +struct core_name { + char *corename; + int used; + int size; +}; + +enum { + QIF_BLIMITS_B = 0, + QIF_SPACE_B = 1, + QIF_ILIMITS_B = 2, + QIF_INODES_B = 3, + QIF_BTIME_B = 4, + QIF_ITIME_B = 5, +}; + +typedef __kernel_uid32_t qid_t; + +enum { + DQF_INFO_DIRTY_B = 17, +}; + +struct dqstats { + long unsigned int stat[8]; + struct percpu_counter counter[8]; +}; + +struct quota_module_name { + int qm_fmt_id; + char *qm_mod_name; +}; + +struct dquot_warn { + struct super_block *w_sb; + struct kqid w_dq_id; + short int w_type; +}; + +struct squashfs_page_actor { + union { + void **buffer; + struct page **page; + }; + void *pageaddr; + void *tmp_buffer; + void * (*squashfs_first_page)(struct squashfs_page_actor *); + void * (*squashfs_next_page)(struct squashfs_page_actor *); + void (*squashfs_finish_page)(struct squashfs_page_actor *); + struct page *last_page; + int pages; + int length; + int next_page; + int alloc_buffer; + int returned_pages; + long unsigned int next_index; +}; + +struct lz4_comp_opts { + __le32 version; + __le32 flags; +}; + +struct squashfs_lz4 { + void *input; + void *output; +}; + +enum { + NLS_NAME_NO_LOSSY = 0, + NLS_NAME_LOSSY = 1, + NLS_NAME_OVERLEN = 2, +}; + +struct exfat_dentry_namebuf { + char *lfn; + int lfnbuf_len; +}; + +struct exfat_uni_name { + short unsigned int name[258]; + u16 name_hash; + unsigned char name_len; +}; + +struct exfat_entry_set_cache { + struct super_block *sb; + unsigned int start_off; + int num_bh; + struct buffer_head *__bh[3]; + struct buffer_head **bh; + unsigned int num_entries; + bool modified; +}; + +struct exfat_dir_entry { + struct exfat_chain dir; + int entry; + unsigned int type; + unsigned int start_clu; + unsigned char flags; + short unsigned int attr; + loff_t size; + loff_t valid_size; + unsigned int num_subdirs; + struct timespec64 atime; + struct timespec64 mtime; + struct timespec64 crtime; + struct exfat_dentry_namebuf namebuf; +}; + +struct nfs_netns_client { + struct kobject kobject; + struct kobject nfs_net_kobj; + struct net *net; + const char *identifier; +}; + +enum { + FATTR4_TIME_DELEG_ACCESS = 84, + FATTR4_TIME_DELEG_MODIFY = 85, + FATTR4_OPEN_ARGUMENTS = 86, +}; + +enum pnfs_layoutreturn_type { + RETURN_FILE = 1, + RETURN_FSID = 2, + RETURN_ALL = 3, +}; + +struct nfs_lowner { + __u64 clientid; + __u64 id; + dev_t s_dev; +}; + +enum nfs4_client_state { + NFS4CLNT_MANAGER_RUNNING = 0, + NFS4CLNT_CHECK_LEASE = 1, + NFS4CLNT_LEASE_EXPIRED = 2, + NFS4CLNT_RECLAIM_REBOOT = 3, + NFS4CLNT_RECLAIM_NOGRACE = 4, + NFS4CLNT_DELEGRETURN = 5, + NFS4CLNT_SESSION_RESET = 6, + NFS4CLNT_LEASE_CONFIRM = 7, + NFS4CLNT_SERVER_SCOPE_MISMATCH = 8, + NFS4CLNT_PURGE_STATE = 9, + NFS4CLNT_BIND_CONN_TO_SESSION = 10, + NFS4CLNT_MOVED = 11, + NFS4CLNT_LEASE_MOVED = 12, + NFS4CLNT_DELEGATION_EXPIRED = 13, + NFS4CLNT_RUN_MANAGER = 14, + NFS4CLNT_MANAGER_AVAILABLE = 15, + NFS4CLNT_RECALL_RUNNING = 16, + NFS4CLNT_RECALL_ANY_LAYOUT_READ = 17, + NFS4CLNT_RECALL_ANY_LAYOUT_RW = 18, + NFS4CLNT_DELEGRETURN_DELAYED = 19, +}; + +struct cb_process_state { + struct nfs_client *clp; + struct nfs4_slot *slot; + struct net *net; + u32 minorversion; + __be32 drc_status; + unsigned int referring_calls; +}; + +struct cb_getattrargs { + struct nfs_fh fh; + uint32_t bitmap[3]; +}; + +struct cb_getattrres { + __be32 status; + uint32_t bitmap[3]; + uint64_t size; + uint64_t change_attr; + struct timespec64 atime; + struct timespec64 ctime; + struct timespec64 mtime; +}; + +struct cb_recallargs { + struct nfs_fh fh; + nfs4_stateid stateid; + uint32_t truncate; +}; + +struct referring_call { + uint32_t rc_sequenceid; + uint32_t rc_slotid; +}; + +struct referring_call_list { + struct nfs4_sessionid rcl_sessionid; + uint32_t rcl_nrefcalls; + struct referring_call *rcl_refcalls; +}; + +struct cb_sequenceargs { + struct sockaddr *csa_addr; + struct nfs4_sessionid csa_sessionid; + uint32_t csa_sequenceid; + uint32_t csa_slotid; + uint32_t csa_highestslotid; + uint32_t csa_cachethis; + uint32_t csa_nrclists; + struct referring_call_list *csa_rclists; +}; + +struct cb_sequenceres { + __be32 csr_status; + struct nfs4_sessionid csr_sessionid; + uint32_t csr_sequenceid; + uint32_t csr_slotid; + uint32_t csr_highestslotid; + uint32_t csr_target_highestslotid; +}; + +struct cb_recallanyargs { + uint32_t craa_objs_to_keep; + uint32_t craa_type_mask; +}; + +struct cb_recallslotargs { + uint32_t crsa_target_highest_slotid; +}; + +struct cb_layoutrecallargs { + uint32_t cbl_recall_type; + uint32_t cbl_layout_type; + uint32_t cbl_layoutchanged; + union { + struct { + struct nfs_fh cbl_fh; + struct pnfs_layout_range cbl_range; + nfs4_stateid cbl_stateid; + }; + struct nfs_fsid cbl_fsid; + }; +}; + +struct cb_devicenotifyitem { + uint32_t cbd_notify_type; + uint32_t cbd_layout_type; + struct nfs4_deviceid cbd_dev_id; + uint32_t cbd_immediate; +}; + +struct cb_devicenotifyargs { + uint32_t ndevs; + struct cb_devicenotifyitem *devs; +}; + +struct cb_notify_lock_args { + struct nfs_fh cbnl_fh; + struct nfs_lowner cbnl_owner; + bool cbnl_valid; +}; + +struct cb_offloadargs { + struct nfs_fh coa_fh; + nfs4_stateid coa_stateid; + uint32_t error; + uint64_t wr_count; + struct nfs_writeverf wr_writeverf; +}; + +enum nfs4_slot_tbl_state { + NFS4_SLOT_TBL_DRAINING = 0, +}; + +struct nfs4_pnfs_ds_addr { + struct __kernel_sockaddr_storage da_addr; + size_t da_addrlen; + struct list_head da_node; + char *da_remotestr; + const char *da_netid; + int da_transport; +}; + +struct nfs4_ff_ds_version { + u32 version; + u32 minor_version; + u32 rsize; + u32 wsize; + bool tightly_coupled; +}; + +struct nfs4_ff_layout_ds { + struct nfs4_deviceid_node id_node; + u32 ds_versions_cnt; + struct nfs4_ff_ds_version *ds_versions; + struct nfs4_pnfs_ds *ds; +}; + +struct nfs4_ff_layout_ds_err { + struct list_head list; + u64 offset; + u64 length; + int status; + enum nfs_opnum4 opnum; + nfs4_stateid stateid; + struct nfs4_deviceid deviceid; +}; + +struct nfs4_ff_io_stat { + __u64 ops_requested; + __u64 bytes_requested; + __u64 ops_completed; + __u64 bytes_completed; + __u64 bytes_not_delivered; + ktime_t total_busy_time; + ktime_t aggregate_completion_time; +}; + +struct nfs4_ff_busy_timer { + ktime_t start_time; + atomic_t n_ops; +}; + +struct nfs4_ff_layoutstat { + struct nfs4_ff_io_stat io_stat; + struct nfs4_ff_busy_timer busy_timer; +}; + +struct nfs4_ff_layout_mirror { + struct pnfs_layout_hdr *layout; + struct list_head mirrors; + u32 ds_count; + u32 efficiency; + struct nfs4_deviceid devid; + struct nfs4_ff_layout_ds *mirror_ds; + u32 fh_versions_cnt; + struct nfs_fh *fh_versions; + nfs4_stateid stateid; + const struct cred *ro_cred; + const struct cred *rw_cred; + refcount_t ref; + spinlock_t lock; + long unsigned int flags; + struct nfs4_ff_layoutstat read_stat; + struct nfs4_ff_layoutstat write_stat; + ktime_t start_time; + u32 report_interval; +}; + +struct nfs4_ff_layout_segment { + struct pnfs_layout_segment generic_hdr; + u64 stripe_unit; + u32 flags; + u32 mirror_array_cnt; + struct nfs4_ff_layout_mirror *mirror_array[0]; +}; + +struct nfs4_flexfile_layout { + struct pnfs_layout_hdr generic_hdr; + struct pnfs_ds_commit_info commit_info; + struct list_head mirrors; + struct list_head error_list; + ktime_t last_report_time; +}; + +struct nfs4_flexfile_layoutreturn_args { + struct list_head errors; + struct nfs42_layoutstat_devinfo devinfo[4]; + unsigned int num_errors; + unsigned int num_dev; + struct page *pages[1]; +}; + +enum nfs4_ff_op_type { + NFS4_FF_OP_LAYOUTSTATS = 0, + NFS4_FF_OP_LAYOUTRETURN = 1, +}; + +enum limit_by4 { + NFS4_LIMIT_SIZE = 1, + NFS4_LIMIT_BLOCKS = 2, +}; + +enum open_delegation_type4 { + NFS4_OPEN_DELEGATE_NONE = 0, + NFS4_OPEN_DELEGATE_READ = 1, + NFS4_OPEN_DELEGATE_WRITE = 2, + NFS4_OPEN_DELEGATE_NONE_EXT = 3, + NFS4_OPEN_DELEGATE_READ_ATTRS_DELEG = 4, + NFS4_OPEN_DELEGATE_WRITE_ATTRS_DELEG = 5, +}; + +enum why_no_delegation4 { + WND4_NOT_WANTED = 0, + WND4_CONTENTION = 1, + WND4_RESOURCE = 2, + WND4_NOT_SUPP_FTYPE = 3, + WND4_WRITE_DELEG_NOT_SUPP_FTYPE = 4, + WND4_NOT_SUPP_UPGRADE = 5, + WND4_NOT_SUPP_DOWNGRADE = 6, + WND4_CANCELLED = 7, + WND4_IS_DIR = 8, +}; + +enum lock_type4 { + NFS4_UNLOCK_LT = 0, + NFS4_READ_LT = 1, + NFS4_WRITE_LT = 2, + NFS4_READW_LT = 3, + NFS4_WRITEW_LT = 4, +}; + +enum { + FATTR4_DIR_NOTIF_DELAY = 56, + FATTR4_DIRENT_NOTIF_DELAY = 57, + FATTR4_DACL = 58, + FATTR4_SACL = 59, + FATTR4_CHANGE_POLICY = 60, + FATTR4_FS_STATUS = 61, + FATTR4_FS_LAYOUT_TYPES = 62, + FATTR4_LAYOUT_HINT = 63, + FATTR4_LAYOUT_TYPES = 64, + FATTR4_LAYOUT_BLKSIZE = 65, + FATTR4_LAYOUT_ALIGNMENT = 66, + FATTR4_FS_LOCATIONS_INFO = 67, + FATTR4_MDSTHRESHOLD = 68, + FATTR4_RETENTION_GET = 69, + FATTR4_RETENTION_SET = 70, + FATTR4_RETENTEVT_GET = 71, + FATTR4_RETENTEVT_SET = 72, + FATTR4_RETENTION_HOLD = 73, + FATTR4_MODE_SET_MASKED = 74, + FATTR4_SUPPATTR_EXCLCREAT = 75, + FATTR4_FS_CHARSET_CAP = 76, +}; + +enum { + FATTR4_XATTR_SUPPORT = 82, +}; + +enum state_protect_how4 { + SP4_NONE = 0, + SP4_MACH_CRED = 1, + SP4_SSV = 2, +}; + +enum nfs4_setxattr_options { + SETXATTR4_EITHER = 0, + SETXATTR4_CREATE = 1, + SETXATTR4_REPLACE = 2, +}; + +enum fsid_source { + FSIDSOURCE_DEV = 0, + FSIDSOURCE_FSID = 1, + FSIDSOURCE_UUID = 2, +}; + +struct nfsd4_test_stateid_id { + __be32 ts_id_status; + stateid_t ts_id_stateid; + struct list_head ts_id_list; +}; + +typedef __be32 (*nfsd4_dec)(struct nfsd4_compoundargs *, union nfsd4_op_u *); + +struct nfsd4_fattr_args { + struct svc_rqst *rqstp; + struct svc_fh *fhp; + struct svc_export *exp; + struct dentry *dentry; + struct kstat stat; + struct kstatfs statfs; + struct nfs4_acl *acl; + u64 size; + u32 rdattr_err; + bool contextsupport; + bool ignore_crossmnt; +}; + +typedef __be32 (*nfsd4_enc_attr)(struct xdr_stream *, const struct nfsd4_fattr_args *); + +typedef __be32 (*nfsd4_enc)(struct nfsd4_compoundres *, __be32, union nfsd4_op_u *); + +struct nt_err_code_struct { + char *nt_errstr; + __u32 nt_errcode; +}; + +struct ntlmssp2_name { + __le16 type; + __le16 length; +}; + +struct ntlmv2_resp { + union { + char ntlmv2_hash[16]; + struct { + __u8 reserved[8]; + __u8 key[8]; + } challenge; + }; + __le32 blob_signature; + __u32 reserved; + __le64 time; + __u64 client_chal; + __u32 reserved2; +} __attribute__((packed)); + +struct UniCaseRange { + wchar_t start; + wchar_t end; + signed char *table; +}; + +enum av_field_type { + NTLMSSP_AV_EOL = 0, + NTLMSSP_AV_NB_COMPUTER_NAME = 1, + NTLMSSP_AV_NB_DOMAIN_NAME = 2, + NTLMSSP_AV_DNS_COMPUTER_NAME = 3, + NTLMSSP_AV_DNS_DOMAIN_NAME = 4, + NTLMSSP_AV_DNS_TREE_NAME = 5, + NTLMSSP_AV_FLAGS = 6, + NTLMSSP_AV_TIMESTAMP = 7, + NTLMSSP_AV_RESTRICTION = 8, + NTLMSSP_AV_TARGET_NAME = 9, + NTLMSSP_AV_CHANNEL_BINDINGS = 10, +}; + +enum { + ACCESS_ALLOWED = 0, + ACCESS_DENIED = 1, +}; + +struct smb_acl { + __le16 revision; + __le16 size; + __le16 num_aces; + __le16 reserved; +}; + +struct smb_ace { + __u8 type; + __u8 flags; + __le16 size; + __le32 access_req; + struct smb_sid sid; +}; + +struct owner_sid { + u8 Revision; + u8 NumAuth; + u8 Authority[6]; + __le32 SubAuthorities[3]; +}; + +struct ATTR_STD_INFO5 { + __le64 cr_time; + __le64 m_time; + __le64 c_time; + __le64 a_time; + enum FILE_ATTRIBUTE fa; + __le32 max_ver_num; + __le32 ver_num; + __le32 class_id; + __le32 owner_id; + __le32 security_id; + __le64 quota_charge; + __le64 usn; +}; + +struct EA_INFO { + __le16 size_pack; + __le16 count; + __le32 size; +}; + +struct EA_FULL { + __le32 size; + u8 flags; + u8 name_len; + __le16 elength; + u8 name[0]; +}; + +struct SECURITY_DESCRIPTOR_RELATIVE { + u8 Revision; + u8 Sbz1; + __le16 Control; + __le32 Owner; + __le32 Group; + __le32 Sacl; + __le32 Dacl; +}; + +enum fuse_notify_code { + FUSE_NOTIFY_POLL = 1, + FUSE_NOTIFY_INVAL_INODE = 2, + FUSE_NOTIFY_INVAL_ENTRY = 3, + FUSE_NOTIFY_STORE = 4, + FUSE_NOTIFY_RETRIEVE = 5, + FUSE_NOTIFY_DELETE = 6, + FUSE_NOTIFY_RESEND = 7, + FUSE_NOTIFY_CODE_MAX = 8, +}; + +struct fuse_batch_forget_in { + uint32_t count; + uint32_t dummy; +}; + +struct fuse_interrupt_in { + uint64_t unique; +}; + +struct fuse_notify_poll_wakeup_out { + uint64_t kh; +}; + +struct fuse_notify_inval_inode_out { + uint64_t ino; + int64_t off; + int64_t len; +}; + +struct fuse_notify_inval_entry_out { + uint64_t parent; + uint32_t namelen; + uint32_t flags; +}; + +struct fuse_notify_delete_out { + uint64_t parent; + uint64_t child; + uint32_t namelen; + uint32_t padding; +}; + +struct fuse_notify_store_out { + uint64_t nodeid; + uint64_t offset; + uint32_t size; + uint32_t padding; +}; + +struct fuse_notify_retrieve_out { + uint64_t notify_unique; + uint64_t nodeid; + uint64_t offset; + uint32_t size; + uint32_t padding; +}; + +struct fuse_notify_retrieve_in { + uint64_t dummy1; + uint64_t offset; + uint32_t size; + uint32_t dummy2; + uint64_t dummy3; + uint64_t dummy4; +}; + +struct fuse_backing_map { + int32_t fd; + uint32_t flags; + uint64_t padding; +}; + +struct trace_event_raw_fuse_request_send { + struct trace_entry ent; + dev_t connection; + uint64_t unique; + enum fuse_opcode opcode; + uint32_t len; + char __data[0]; +}; + +struct trace_event_raw_fuse_request_end { + struct trace_entry ent; + dev_t connection; + uint64_t unique; + uint32_t len; + int32_t error; + char __data[0]; +}; + +struct trace_event_data_offsets_fuse_request_send {}; + +struct trace_event_data_offsets_fuse_request_end {}; + +typedef void (*btf_trace_fuse_request_send)(void *, const struct fuse_req *); + +typedef void (*btf_trace_fuse_request_end)(void *, const struct fuse_req *); + +struct fuse_copy_state { + int write; + struct fuse_req *req; + struct iov_iter *iter; + struct pipe_buffer *pipebufs; + struct pipe_buffer *currbuf; + struct pipe_inode_info *pipe; + long unsigned int nr_segs; + struct page *pg; + unsigned int len; + unsigned int offset; + unsigned int move_pages: 1; +}; + +struct fuse_retrieve_args { + struct fuse_args_pages ap; + struct fuse_notify_retrieve_in inarg; +}; + +struct lb_addr { + __le32 logicalBlockNum; + __le16 partitionReferenceNum; +} __attribute__((packed)); + +struct short_ad { + __le32 extLength; + __le32 extPosition; +}; + +struct long_ad { + __le32 extLength; + struct lb_addr extLocation; + uint8_t impUse[6]; +}; + +struct fileIdentDesc { + struct tag descTag; + __le16 fileVersionNum; + uint8_t fileCharacteristics; + uint8_t lengthFileIdent; + struct long_ad icb; + __le16 lengthOfImpUse; +} __attribute__((packed)); + +struct udf_fileident_iter { + struct inode *dir; + loff_t pos; + struct buffer_head *bh[2]; + struct kernel_lb_addr eloc; + uint32_t elen; + sector_t loffset; + struct extent_position epos; + struct fileIdentDesc fi; + uint8_t *name; + uint8_t *namebuf; +}; + +struct xfs_bmdr_block { + __be16 bb_level; + __be16 bb_numrecs; +}; + +typedef struct xfs_bmdr_block xfs_bmdr_block_t; + +typedef uint64_t xfs_bmbt_rec_base_t; + +typedef struct xfs_bmbt_key xfs_bmbt_key_t; + +typedef __be64 xfs_bmbt_ptr_t; + +struct xfs_icluster { + bool deleted; + xfs_ino_t first_ino; + uint64_t alloc; +}; + +struct xfs_ialloc_count_inodes { + xfs_agino_t count; + xfs_agino_t freecount; +}; + +struct xfs_bmalloca { + struct xfs_trans *tp; + struct xfs_inode *ip; + struct xfs_bmbt_irec prev; + struct xfs_bmbt_irec got; + xfs_fileoff_t offset; + xfs_extlen_t length; + xfs_fsblock_t blkno; + struct xfs_btree_cur *cur; + struct xfs_iext_cursor icur; + int nallocs; + int logflags; + xfs_extlen_t total; + xfs_extlen_t minlen; + xfs_extlen_t minleft; + bool eof; + bool wasdel; + bool aeof; + bool conv; + int datatype; + uint32_t flags; +}; + +struct xfs_fstrm_item { + struct xfs_mru_cache_elem mru; + struct xfs_perag *pag; +}; + +enum xfs_fstrm_alloc { + XFS_PICK_USERDATA = 1, + XFS_PICK_LOWSPACE = 2, +}; + +struct xfs_inode_log_format { + uint16_t ilf_type; + uint16_t ilf_size; + uint32_t ilf_fields; + uint16_t ilf_asize; + uint16_t ilf_dsize; + uint32_t ilf_pad; + uint64_t ilf_ino; + union { + uint32_t ilfu_rdev; + uint8_t __pad[16]; + } ilf_u; + int64_t ilf_blkno; + int32_t ilf_len; + int32_t ilf_boffset; +}; + +struct xfs_inode_log_format_32 { + uint16_t ilf_type; + uint16_t ilf_size; + uint32_t ilf_fields; + uint16_t ilf_asize; + uint16_t ilf_dsize; + uint64_t ilf_ino; + union { + uint32_t ilfu_rdev; + uint8_t __pad[16]; + } ilf_u; + int64_t ilf_blkno; + int32_t ilf_len; + int32_t ilf_boffset; +} __attribute__((packed)); + +typedef uint64_t xfs_log_timestamp_t; + +struct xfs_log_legacy_timestamp { + int32_t t_sec; + int32_t t_nsec; +}; + +struct xfs_log_dinode { + uint16_t di_magic; + uint16_t di_mode; + int8_t di_version; + int8_t di_format; + uint8_t di_pad3[2]; + uint32_t di_uid; + uint32_t di_gid; + uint32_t di_nlink; + uint16_t di_projid_lo; + uint16_t di_projid_hi; + union { + uint64_t di_big_nextents; + uint64_t di_v3_pad; + struct { + uint8_t di_v2_pad[6]; + uint16_t di_flushiter; + }; + }; + xfs_log_timestamp_t di_atime; + xfs_log_timestamp_t di_mtime; + xfs_log_timestamp_t di_ctime; + xfs_fsize_t di_size; + xfs_rfsblock_t di_nblocks; + xfs_extlen_t di_extsize; + union { + struct { + uint32_t di_nextents; + uint16_t di_anextents; + } __attribute__((packed)); + struct { + uint32_t di_big_anextents; + uint16_t di_nrext64_pad; + } __attribute__((packed)); + }; + uint8_t di_forkoff; + int8_t di_aformat; + uint32_t di_dmevmask; + uint16_t di_dmstate; + uint16_t di_flags; + uint32_t di_gen; + xfs_agino_t di_next_unlinked; + uint32_t di_crc; + uint64_t di_changecount; + xfs_lsn_t di_lsn; + uint64_t di_flags2; + uint32_t di_cowextsize; + uint8_t di_pad2[12]; + xfs_log_timestamp_t di_crtime; + xfs_ino_t di_ino; + uuid_t di_uuid; +}; + +struct btrfs_eb_write_context { + struct writeback_control *wbc; + struct extent_buffer *eb; + struct btrfs_block_group *zoned_bg; +}; + +enum btrfs_map_op { + BTRFS_MAP_READ = 0, + BTRFS_MAP_WRITE = 1, + BTRFS_MAP_GET_READ_MIRRORS = 2, +}; + +struct btrfs_bio_ctrl { + struct btrfs_bio *bbio; + enum btrfs_compression_type compress_type; + u32 len_to_oe_boundary; + blk_opf_t opf; + btrfs_bio_end_io_t end_io_func; + struct writeback_control *wbc; + long unsigned int submit_bitmap; + struct readahead_control *ractl; + u64 last_em_start; +}; + +struct btrfs_workqueue { + struct workqueue_struct *normal_wq; + struct btrfs_fs_info *fs_info; + struct list_head ordered_list; + spinlock_t list_lock; + atomic_t pending; + int limit_active; + int current_active; + int thresh; + unsigned int count; + spinlock_t thres_lock; +}; + +enum btrfs_delayed_item_type { + BTRFS_DELAYED_INSERTION_ITEM = 0, + BTRFS_DELAYED_DELETION_ITEM = 1, +}; + +struct btrfs_delayed_item { + struct rb_node rb_node; + u64 index; + struct list_head tree_list; + struct list_head readdir_list; + struct list_head log_list; + u64 bytes_reserved; + struct btrfs_delayed_node *delayed_node; + refcount_t refs; + enum btrfs_delayed_item_type type: 8; + bool logged; + u16 data_len; + char data[0]; +}; + +struct btrfs_async_delayed_work { + struct btrfs_delayed_root *delayed_root; + int nr; + struct btrfs_work work; +}; + +struct btrfs_dio_data { + ssize_t submitted; + struct extent_changeset *data_reserved; + struct btrfs_ordered_extent *ordered; + bool data_space_reserved; + bool nocow_done; +}; + +struct btrfs_dio_private { + u64 file_offset; + u32 bytes; + struct btrfs_bio bbio; +}; + +struct f2fs_xattr_header { + __le32 h_magic; + __le32 h_refcount; + __u32 h_reserved[4]; +}; + +struct f2fs_xattr_entry { + __u8 e_name_index; + __u8 e_name_len; + __le16 e_value_size; + char e_name[0]; +}; + +struct erofs_fileio_rq { + struct bio_vec bvecs[256]; + struct bio bio; + struct kiocb iocb; + struct super_block *sb; +}; + +struct erofs_fileio { + struct erofs_map_blocks map; + struct erofs_map_dev dev; + struct erofs_fileio_rq *rq; +}; + +struct crypto_comp { + struct crypto_tfm base; +}; + +struct ahash_alg { + int (*init)(struct ahash_request *); + int (*update)(struct ahash_request *); + int (*final)(struct ahash_request *); + int (*finup)(struct ahash_request *); + int (*digest)(struct ahash_request *); + int (*export)(struct ahash_request *, void *); + int (*import)(struct ahash_request *, const void *); + int (*setkey)(struct crypto_ahash *, const u8 *, unsigned int); + int (*init_tfm)(struct crypto_ahash *); + void (*exit_tfm)(struct crypto_ahash *); + int (*clone_tfm)(struct crypto_ahash *, struct crypto_ahash *); + unsigned int reqsize; + struct hash_alg_common halg; +}; + +struct crypto_hash_walk { + char *data; + unsigned int offset; + unsigned int flags; + struct page *pg; + unsigned int entrylen; + unsigned int total; + struct scatterlist *sg; +}; + +struct ahash_instance { + void (*free)(struct ahash_instance *); + union { + struct { + char head[104]; + struct crypto_instance base; + } s; + struct ahash_alg alg; + }; +}; + +struct crypto_ahash_spawn { + struct crypto_spawn base; +}; + +struct sha1_state { + u32 state[5]; + u64 count; + u8 buffer[64]; +}; + +typedef void sha1_block_fn(struct sha1_state *, const u8 *, int); + +struct twofish_ctx { + u32 s[1024]; + u32 w[8]; + u32 k[32]; +}; + +struct comp_alg_common { + struct crypto_alg base; +}; + +struct crypto_scomp { + struct crypto_tfm base; +}; + +struct scomp_alg { + void * (*alloc_ctx)(struct crypto_scomp *); + void (*free_ctx)(struct crypto_scomp *, void *); + int (*compress)(struct crypto_scomp *, const u8 *, unsigned int, u8 *, unsigned int *, void *); + int (*decompress)(struct crypto_scomp *, const u8 *, unsigned int, u8 *, unsigned int *, void *); + union { + struct { + struct crypto_alg base; + }; + struct comp_alg_common calg; + }; +}; + +struct deflate_ctx { + struct z_stream_s comp_stream; + struct z_stream_s decomp_stream; +}; + +struct xxhash64_tfm_ctx { + u64 seed; +}; + +struct xxhash64_desc_ctx { + struct xxh64_state xxhstate; +}; + +enum blacklist_hash_type { + BLACKLIST_HASH_X509_TBS = 1, + BLACKLIST_HASH_BINARY = 2, +}; + +struct bio_alloc_cache { + struct bio *free_list; + struct bio *free_list_irq; + unsigned int nr; + unsigned int nr_irq; +}; + +enum { + sysctl_hung_task_timeout_secs = 0, +}; + +struct biovec_slab { + int nr_vecs; + char *name; + struct kmem_cache *slab; +}; + +struct bio_slab { + struct kmem_cache *slab; + unsigned int slab_ref; + unsigned int slab_size; + char name[12]; +}; + +struct disk_events { + struct list_head node; + struct gendisk *disk; + spinlock_t lock; + struct mutex block_mutex; + int block; + unsigned int pending; + unsigned int clearing; + long int poll_msecs; + struct delayed_work dwork; +}; + +struct io_sq_data { + refcount_t refs; + atomic_t park_pending; + struct mutex lock; + struct list_head ctx_list; + struct task_struct *thread; + struct wait_queue_head wait; + unsigned int sq_thread_idle; + int sq_cpu; + pid_t task_pid; + pid_t task_tgid; + u64 work_time; + long unsigned int state; + struct completion exited; +}; + +struct io_cold_def { + const char *name; + void (*cleanup)(struct io_kiocb *); + void (*fail)(struct io_kiocb *); +}; + +typedef struct { + void *lock; +} class_rcu_t; + +struct io_ev_fd { + struct eventfd_ctx *cq_ev_fd; + unsigned int eventfd_async: 1; + struct callback_head rcu; + refcount_t refs; + atomic_t ops; +}; + +enum { + IO_EVENTFD_OP_SIGNAL_BIT = 0, +}; + +struct io_sync { + struct file *file; + loff_t len; + loff_t off; + int flags; + int mode; +}; + +struct io_uring_napi { + __u32 busy_poll_to; + __u8 prefer_busy_poll; + __u8 pad[3]; + __u64 resv; +}; + +struct io_wait_queue { + struct wait_queue_entry wq; + struct io_ring_ctx *ctx; + unsigned int cq_tail; + unsigned int cq_min_tail; + unsigned int nr_timeouts; + int hit_timeout; + ktime_t min_timeout; + ktime_t timeout; + struct hrtimer t; + ktime_t napi_busy_poll_dt; + bool napi_prefer_busy_poll; +}; + +enum { + IO_CHECK_CQ_OVERFLOW_BIT = 0, + IO_CHECK_CQ_DROPPED_BIT = 1, +}; + +struct io_napi_entry { + unsigned int napi_id; + struct list_head list; + long unsigned int timeout; + struct hlist_node node; + struct callback_head rcu; +}; + +typedef enum { + ZSTD_c_compressionLevel = 100, + ZSTD_c_windowLog = 101, + ZSTD_c_hashLog = 102, + ZSTD_c_chainLog = 103, + ZSTD_c_searchLog = 104, + ZSTD_c_minMatch = 105, + ZSTD_c_targetLength = 106, + ZSTD_c_strategy = 107, + ZSTD_c_enableLongDistanceMatching = 160, + ZSTD_c_ldmHashLog = 161, + ZSTD_c_ldmMinMatch = 162, + ZSTD_c_ldmBucketSizeLog = 163, + ZSTD_c_ldmHashRateLog = 164, + ZSTD_c_contentSizeFlag = 200, + ZSTD_c_checksumFlag = 201, + ZSTD_c_dictIDFlag = 202, + ZSTD_c_nbWorkers = 400, + ZSTD_c_jobSize = 401, + ZSTD_c_overlapLog = 402, + ZSTD_c_experimentalParam1 = 500, + ZSTD_c_experimentalParam2 = 10, + ZSTD_c_experimentalParam3 = 1000, + ZSTD_c_experimentalParam4 = 1001, + ZSTD_c_experimentalParam5 = 1002, + ZSTD_c_experimentalParam6 = 1003, + ZSTD_c_experimentalParam7 = 1004, + ZSTD_c_experimentalParam8 = 1005, + ZSTD_c_experimentalParam9 = 1006, + ZSTD_c_experimentalParam10 = 1007, + ZSTD_c_experimentalParam11 = 1008, + ZSTD_c_experimentalParam12 = 1009, + ZSTD_c_experimentalParam13 = 1010, + ZSTD_c_experimentalParam14 = 1011, + ZSTD_c_experimentalParam15 = 1012, +} ZSTD_cParameter; + +typedef enum { + ZSTD_reset_session_only = 1, + ZSTD_reset_parameters = 2, + ZSTD_reset_session_and_parameters = 3, +} ZSTD_ResetDirective; + +typedef enum { + ZSTD_dlm_byCopy = 0, + ZSTD_dlm_byRef = 1, +} ZSTD_dictLoadMethod_e; + +typedef ZSTD_customMem zstd_custom_mem; + +typedef ZSTD_CCtx zstd_cctx; + +typedef ZSTD_CDict zstd_cdict; + +typedef struct { + size_t bitContainer; + unsigned int bitPos; + char *startPtr; + char *ptr; + char *endPtr; +} BIT_CStream_t; + +typedef struct { + ptrdiff_t value; + const void *stateTable; + const void *symbolTT; + unsigned int stateLog; +} FSE_CState_t; + +typedef struct { + int deltaFindState; + U32 deltaNbBits; +} FSE_symbolCompressionTransform; + +typedef struct { + FSE_CTable CTable[59]; + U32 scratchBuffer[41]; + unsigned int count[13]; + S16 norm[13]; +} HUF_CompressWeightsWksp; + +typedef struct { + HUF_CompressWeightsWksp wksp; + BYTE bitsToWeight[13]; + BYTE huffWeight[255]; +} HUF_WriteCTableWksp; + +struct nodeElt_s { + U32 count; + U16 parent; + BYTE byte; + BYTE nbBits; +}; + +typedef struct nodeElt_s nodeElt; + +typedef struct { + U16 base; + U16 curr; +} rankPos; + +typedef nodeElt huffNodeTable[512]; + +typedef struct { + huffNodeTable huffNodeTbl; + rankPos rankPosition[192]; +} HUF_buildCTable_wksp_tables; + +typedef struct { + size_t bitContainer[2]; + size_t bitPos[2]; + BYTE *startPtr; + BYTE *ptr; + BYTE *endPtr; +} HUF_CStream_t; + +typedef enum { + HUF_singleStream = 0, + HUF_fourStreams = 1, +} HUF_nbStreams_e; + +typedef struct { + unsigned int count[256]; + HUF_CElt CTable[257]; + union { + HUF_buildCTable_wksp_tables buildCTable_wksp; + HUF_WriteCTableWksp writeCTable_wksp; + U32 hist_wksp[1024]; + } wksps; +} HUF_compress_tables_t; + +struct nmi_ctx { + u64 hcr; + unsigned int cnt; +}; + +struct rdists { + struct { + raw_spinlock_t rd_lock; + void *rd_base; + struct page *pend_page; + phys_addr_t phys_base; + u64 flags; + cpumask_t *vpe_table_mask; + void *vpe_l1_base; + } *rdist; + phys_addr_t prop_table_pa; + void *prop_table_va; + u64 flags; + u32 gicd_typer; + u32 gicd_typer2; + int cpuhp_memreserve_state; + bool has_vlpis; + bool has_rvpeid; + bool has_direct_lpi; + bool has_vpend_valid_dirty; +}; + +struct redist_region { + void *redist_base; + phys_addr_t phys_base; + bool single_redist; +}; + +struct gic_chip_data___2 { + struct fwnode_handle *fwnode; + phys_addr_t dist_phys_base; + void *dist_base; + struct redist_region *redist_regions; + struct rdists rdists; + struct irq_domain *domain; + u64 redist_stride; + u32 nr_redist_regions; + u64 flags; + bool has_rss; + unsigned int ppi_nr; + struct partition_desc **ppi_descs; +}; + +enum gic_intid_range { + SGI_RANGE = 0, + PPI_RANGE = 1, + SPI_RANGE = 2, + EPPI_RANGE = 3, + ESPI_RANGE = 4, + LPI_RANGE = 5, + __INVALID_RANGE__ = 6, +}; + +struct resource_constraint { + resource_size_t min; + resource_size_t max; + resource_size_t align; + resource_alignf alignf; + void *alignf_data; +}; + +struct pci_dev_resource { + struct list_head list; + struct resource *res; + struct pci_dev *dev; + resource_size_t start; + resource_size_t end; + resource_size_t add_size; + resource_size_t min_align; + long unsigned int flags; +}; + +enum release_type { + leaf_only = 0, + whole_subtree = 1, +}; + +enum enable_type { + undefined = -1, + user_disabled = 0, + auto_disabled = 1, + user_enabled = 2, + auto_enabled = 3, +}; + +struct pci_slot_attribute { + struct attribute attr; + ssize_t (*show)(struct pci_slot *, char *); + ssize_t (*store)(struct pci_slot *, const char *, size_t); +}; + +enum virtio_input_config_select { + VIRTIO_INPUT_CFG_UNSET = 0, + VIRTIO_INPUT_CFG_ID_NAME = 1, + VIRTIO_INPUT_CFG_ID_SERIAL = 2, + VIRTIO_INPUT_CFG_ID_DEVIDS = 3, + VIRTIO_INPUT_CFG_PROP_BITS = 16, + VIRTIO_INPUT_CFG_EV_BITS = 17, + VIRTIO_INPUT_CFG_ABS_INFO = 18, +}; + +struct virtio_input_absinfo { + __le32 min; + __le32 max; + __le32 fuzz; + __le32 flat; + __le32 res; +}; + +struct virtio_input_devids { + __le16 bustype; + __le16 vendor; + __le16 product; + __le16 version; +}; + +struct virtio_input_config { + __u8 select; + __u8 subsel; + __u8 size; + __u8 reserved[5]; + union { + char string[128]; + __u8 bitmap[128]; + struct virtio_input_absinfo abs; + struct virtio_input_devids ids; + } u; +}; + +struct virtio_input_event { + __le16 type; + __le16 code; + __le32 value; +}; + +struct virtio_input { + struct virtio_device *vdev; + struct input_dev *idev; + char name[64]; + char serial[64]; + char phys[64]; + struct virtqueue *evt; + struct virtqueue *sts; + struct virtio_input_event evts[64]; + spinlock_t lock; + bool ready; +}; + +struct memdev { + const char *name; + const struct file_operations *fops; + fmode_t fmode; + umode_t mode; +}; + +struct drm_mode_get_encoder { + __u32 encoder_id; + __u32 encoder_type; + __u32 crtc_id; + __u32 possible_crtcs; + __u32 possible_clones; +}; + +struct trace_event_raw_drm_vblank_event { + struct trace_entry ent; + int crtc; + unsigned int seq; + ktime_t time; + bool high_prec; + char __data[0]; +}; + +struct trace_event_raw_drm_vblank_event_queued { + struct trace_entry ent; + struct drm_file *file; + int crtc; + unsigned int seq; + char __data[0]; +}; + +struct trace_event_raw_drm_vblank_event_delivered { + struct trace_entry ent; + struct drm_file *file; + int crtc; + unsigned int seq; + char __data[0]; +}; + +struct trace_event_data_offsets_drm_vblank_event {}; + +struct trace_event_data_offsets_drm_vblank_event_queued {}; + +struct trace_event_data_offsets_drm_vblank_event_delivered {}; + +typedef void (*btf_trace_drm_vblank_event)(void *, int, unsigned int, ktime_t, bool); + +typedef void (*btf_trace_drm_vblank_event_queued)(void *, struct drm_file *, int, unsigned int); + +typedef void (*btf_trace_drm_vblank_event_delivered)(void *, struct drm_file *, int, unsigned int); + +struct drm_afbc_framebuffer { + struct drm_framebuffer base; + u32 block_width; + u32 block_height; + u32 aligned_width; + u32 aligned_height; + u32 offset; + u32 afbc_size; +}; + +struct virtio_dma_buf_ops { + struct dma_buf_ops ops; + int (*device_attach)(struct dma_buf *, struct dma_buf_attachment *); + int (*get_uuid)(struct dma_buf *, uuid_t *); +}; + +struct probe { + struct probe *next; + dev_t dev; + long unsigned int range; + struct module *owner; + kobj_probe_t *get; + int (*lock)(dev_t, void *); + void *data; +}; + +struct kobj_map { + struct probe *probes[255]; + struct mutex *lock; +}; + +struct regmap_debugfs_off_cache { + struct list_head list; + off_t min; + off_t max; + unsigned int base_reg; + unsigned int max_reg; +}; + +struct regmap_debugfs_node { + struct regmap *map; + struct list_head link; +}; + +struct syscon_platform_data { + const char *label; +}; + +struct syscon { + struct device_node *np; + struct regmap *regmap; + struct reset_control *reset; + struct list_head list; +}; + +struct class_interface { + struct list_head node; + const struct class *class; + int (*add_dev)(struct device *); + void (*remove_dev)(struct device *); +}; + +struct scsi_event { + enum scsi_device_event evt_type; + struct list_head node; +}; + +struct class_attribute { + struct attribute attr; + ssize_t (*show)(const struct class *, const struct class_attribute *, char *); + ssize_t (*store)(const struct class *, const struct class_attribute *, const char *, size_t); +}; + +struct bond_net { + struct net *net; + struct list_head dev_list; + struct proc_dir_entry *proc_dir; + struct class_attribute class_attr_bonding_masters; +}; + +enum { + VETH_INFO_UNSPEC = 0, + VETH_INFO_PEER = 1, + __VETH_INFO_MAX = 2, +}; + +struct page_pool_stats { + struct page_pool_alloc_stats alloc_stats; + struct page_pool_recycle_stats recycle_stats; +}; + +struct veth_stats { + u64 rx_drops; + u64 xdp_packets; + u64 xdp_bytes; + u64 xdp_redirect; + u64 xdp_drops; + u64 xdp_tx; + u64 xdp_tx_err; + u64 peer_tq_xdp_xmit; + u64 peer_tq_xdp_xmit_err; +}; + +struct veth_rq_stats { + struct veth_stats vs; + struct u64_stats_sync syncp; +}; + +struct veth_rq { + struct napi_struct xdp_napi; + struct napi_struct *napi; + struct net_device *dev; + struct bpf_prog *xdp_prog; + struct xdp_mem_info xdp_mem; + struct veth_rq_stats stats; + bool rx_notify_masked; + struct ptr_ring xdp_ring; + struct xdp_rxq_info xdp_rxq; + struct page_pool *page_pool; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct veth_priv { + struct net_device *peer; + atomic64_t dropped; + struct bpf_prog *_xdp_prog; + struct veth_rq *rq; + unsigned int requested_headroom; +}; + +struct veth_xdp_tx_bq { + struct xdp_frame *q[16]; + unsigned int count; +}; + +struct veth_q_stat_desc { + char desc[32]; + size_t offset; +}; + +struct veth_xdp_buff { + struct xdp_buff xdp; + struct sk_buff *skb; +}; + +struct pppoe_tag { + __be16 tag_type; + __be16 tag_len; + char tag_data[0]; +}; + +struct pppoe_hdr { + __u8 type: 4; + __u8 ver: 4; + __u8 code; + __be16 sid; + __be16 length; + struct pppoe_tag tag[0]; +}; + +struct pppoe_net { + struct pppox_sock *hash_table[16]; + rwlock_t hash_lock; +}; + +struct usbdevfs_ctrltransfer { + __u8 bRequestType; + __u8 bRequest; + __u16 wValue; + __u16 wIndex; + __u16 wLength; + __u32 timeout; + void *data; +}; + +struct usbdevfs_bulktransfer { + unsigned int ep; + unsigned int len; + unsigned int timeout; + void *data; +}; + +struct usbdevfs_setinterface { + unsigned int interface; + unsigned int altsetting; +}; + +struct usbdevfs_disconnectsignal { + unsigned int signr; + void *context; +}; + +struct usbdevfs_getdriver { + unsigned int interface; + char driver[256]; +}; + +struct usbdevfs_connectinfo { + unsigned int devnum; + unsigned char slow; +}; + +struct usbdevfs_conninfo_ex { + __u32 size; + __u32 busnum; + __u32 devnum; + __u32 speed; + __u8 num_ports; + __u8 ports[7]; +}; + +struct usbdevfs_iso_packet_desc { + unsigned int length; + unsigned int actual_length; + unsigned int status; +}; + +struct usbdevfs_urb { + unsigned char type; + unsigned char endpoint; + int status; + unsigned int flags; + void *buffer; + int buffer_length; + int actual_length; + int start_frame; + union { + int number_of_packets; + unsigned int stream_id; + }; + int error_count; + unsigned int signr; + void *usercontext; + struct usbdevfs_iso_packet_desc iso_frame_desc[0]; +}; + +struct usbdevfs_ioctl { + int ifno; + int ioctl_code; + void *data; +}; + +struct usbdevfs_disconnect_claim { + unsigned int interface; + unsigned int flags; + char driver[256]; +}; + +struct usbdevfs_streams { + unsigned int num_streams; + unsigned int num_eps; + unsigned char eps[0]; +}; + +struct usb_dev_state { + struct list_head list; + struct usb_device *dev; + struct file *file; + spinlock_t lock; + struct list_head async_pending; + struct list_head async_completed; + struct list_head memory_list; + wait_queue_head_t wait; + wait_queue_head_t wait_for_resume; + unsigned int discsignr; + struct pid *disc_pid; + const struct cred *cred; + sigval_t disccontext; + long unsigned int ifclaimed; + u32 disabled_bulk_eps; + long unsigned int interface_allowed_mask; + int not_yet_resumed; + bool suspend_allowed; + bool privileges_dropped; +}; + +struct usb_memory { + struct list_head memlist; + int vma_use_count; + int urb_use_count; + u32 size; + void *mem; + dma_addr_t dma_handle; + long unsigned int vm_start; + struct usb_dev_state *ps; +}; + +struct async { + struct list_head asynclist; + struct usb_dev_state *ps; + struct pid *pid; + const struct cred *cred; + unsigned int signr; + unsigned int ifnum; + void *userbuffer; + void *userurb; + sigval_t userurb_sigval; + struct urb *urb; + struct usb_memory *usbm; + unsigned int mem_usage; + int status; + u8 bulk_addr; + u8 bulk_status; +}; + +enum snoop_when { + SUBMIT = 0, + COMPLETE = 1, +}; + +struct xhci_input_control_ctx { + __le32 drop_flags; + __le32 add_flags; + __le32 rsvd2[6]; +}; + +enum xhci_ep_reset_type { + EP_HARD_RESET = 0, + EP_SOFT_RESET = 1, +}; + +enum xhci_setup_dev { + SETUP_CONTEXT_ONLY = 0, + SETUP_CONTEXT_ADDRESS = 1, +}; + +enum xhci_cancelled_td_status { + TD_DIRTY = 0, + TD_HALTED = 1, + TD_CLEARING_CACHE = 2, + TD_CLEARING_CACHE_DEFERRED = 3, + TD_CLEARED = 4, +}; + +struct xhci_td { + struct list_head td_list; + struct list_head cancelled_td_list; + int status; + enum xhci_cancelled_td_status cancel_status; + struct urb *urb; + struct xhci_segment *start_seg; + union xhci_trb *first_trb; + union xhci_trb *last_trb; + struct xhci_segment *last_trb_seg; + struct xhci_segment *bounce_seg; + bool urb_length_set; + bool error_mid_td; +}; + +struct urb_priv { + int num_tds; + int num_tds_done; + struct xhci_td td[0]; +}; + +struct ignore_entry { + u16 vid; + u16 pid; + u16 bcdmin; + u16 bcdmax; +}; + +struct nand_flash_dev { + int model_id; + int chipshift; + char pageshift; + char blockshift; + char zoneshift; + char pageadrlen; +}; + +struct sddr09_card_info { + long unsigned int capacity; + int pagesize; + int pageshift; + int blocksize; + int blockshift; + int blockmask; + int *lba_to_pba; + int *pba_to_lba; + int lbact; + int flags; +}; + +enum pin_config_param { + PIN_CONFIG_BIAS_BUS_HOLD = 0, + PIN_CONFIG_BIAS_DISABLE = 1, + PIN_CONFIG_BIAS_HIGH_IMPEDANCE = 2, + PIN_CONFIG_BIAS_PULL_DOWN = 3, + PIN_CONFIG_BIAS_PULL_PIN_DEFAULT = 4, + PIN_CONFIG_BIAS_PULL_UP = 5, + PIN_CONFIG_DRIVE_OPEN_DRAIN = 6, + PIN_CONFIG_DRIVE_OPEN_SOURCE = 7, + PIN_CONFIG_DRIVE_PUSH_PULL = 8, + PIN_CONFIG_DRIVE_STRENGTH = 9, + PIN_CONFIG_DRIVE_STRENGTH_UA = 10, + PIN_CONFIG_INPUT_DEBOUNCE = 11, + PIN_CONFIG_INPUT_ENABLE = 12, + PIN_CONFIG_INPUT_SCHMITT = 13, + PIN_CONFIG_INPUT_SCHMITT_ENABLE = 14, + PIN_CONFIG_INPUT_SCHMITT_UV = 15, + PIN_CONFIG_MODE_LOW_POWER = 16, + PIN_CONFIG_MODE_PWM = 17, + PIN_CONFIG_OUTPUT = 18, + PIN_CONFIG_OUTPUT_ENABLE = 19, + PIN_CONFIG_OUTPUT_IMPEDANCE_OHMS = 20, + PIN_CONFIG_PERSIST_STATE = 21, + PIN_CONFIG_POWER_SOURCE = 22, + PIN_CONFIG_SKEW_DELAY = 23, + PIN_CONFIG_SLEEP_HARDWARE_STATE = 24, + PIN_CONFIG_SLEW_RATE = 25, + PIN_CONFIG_END = 127, + PIN_CONFIG_MAX = 255, +}; + +struct cp210x_serial_private { + struct gpio_chip gc; + bool gpio_registered; + u16 gpio_pushpull; + u16 gpio_altfunc; + u16 gpio_input; + u8 partnum; + u32 fw_version; + speed_t min_speed; + speed_t max_speed; + bool use_actual_rate; + bool no_flow_control; + bool no_event_mode; +}; + +enum cp210x_event_state { + ES_DATA = 0, + ES_ESCAPE = 1, + ES_LSR = 2, + ES_LSR_DATA_0 = 3, + ES_LSR_DATA_1 = 4, + ES_MSR = 5, +}; + +struct cp210x_port_private { + u8 bInterfaceNumber; + bool event_mode; + enum cp210x_event_state event_state; + u8 lsr; + struct mutex mutex; + bool crtscts; + bool dtr; + bool rts; +}; + +struct cp210x_special_chars { + u8 bEofChar; + u8 bErrorChar; + u8 bBreakChar; + u8 bEventChar; + u8 bXonChar; + u8 bXoffChar; +}; + +struct cp210x_comm_status { + __le32 ulErrors; + __le32 ulHoldReasons; + __le32 ulAmountInInQueue; + __le32 ulAmountInOutQueue; + u8 bEofReceived; + u8 bWaitForImmediate; + u8 bReserved; +} __attribute__((packed)); + +struct cp210x_flow_ctl { + __le32 ulControlHandshake; + __le32 ulFlowReplace; + __le32 ulXonLimit; + __le32 ulXoffLimit; +}; + +struct cp210x_pin_mode { + u8 eci; + u8 sci; +}; + +struct cp210x_dual_port_config { + __le16 gpio_mode; + u8 __pad0[2]; + __le16 reset_state; + u8 __pad1[4]; + __le16 suspend_state; + u8 sci_cfg; + u8 eci_cfg; + u8 device_cfg; +} __attribute__((packed)); + +struct cp210x_single_port_config { + __le16 gpio_mode; + u8 __pad0[2]; + __le16 reset_state; + u8 __pad1[4]; + __le16 suspend_state; + u8 device_cfg; +} __attribute__((packed)); + +struct cp210x_quad_port_state { + __le16 gpio_mode_pb0; + __le16 gpio_mode_pb1; + __le16 gpio_mode_pb2; + __le16 gpio_mode_pb3; + __le16 gpio_mode_pb4; + __le16 gpio_lowpower_pb0; + __le16 gpio_lowpower_pb1; + __le16 gpio_lowpower_pb2; + __le16 gpio_lowpower_pb3; + __le16 gpio_lowpower_pb4; + __le16 gpio_latch_pb0; + __le16 gpio_latch_pb1; + __le16 gpio_latch_pb2; + __le16 gpio_latch_pb3; + __le16 gpio_latch_pb4; +}; + +struct cp210x_quad_port_config { + struct cp210x_quad_port_state reset_state; + struct cp210x_quad_port_state suspend_state; + u8 ipdelay_ifc[4]; + u8 enhancedfxn_ifc[4]; + u8 enhancedfxn_device; + u8 extclkfreq[4]; +} __attribute__((packed)); + +struct cp210x_gpio_write { + u8 mask; + u8 state; +}; + +struct cp210x_gpio_write16 { + __le16 mask; + __le16 state; +}; + +struct cp210x_rate { + speed_t rate; + speed_t high; +}; + +struct oti6858_control_pkt { + __le16 divisor; + u8 frame_fmt; + u8 something; + u8 control; + u8 tx_status; + u8 pin_state; + u8 rx_bytes_avail; +}; + +struct oti6858_private { + spinlock_t lock; + struct oti6858_control_pkt status; + struct { + u8 read_urb_in_use; + u8 write_urb_in_use; + } flags; + struct delayed_work delayed_write_work; + struct { + __le16 divisor; + u8 frame_fmt; + u8 control; + } pending_setup; + u8 transient; + u8 setup_done; + struct delayed_work delayed_setup_work; + struct usb_serial_port *port; +}; + +struct upd78f0730_port_private { + struct mutex lock; + u8 line_signals; +}; + +struct upd78f0730_line_control { + u8 opcode; + __le32 baud_rate; + u8 params; +} __attribute__((packed)); + +struct upd78f0730_set_dtr_rts { + u8 opcode; + u8 params; +}; + +struct upd78f0730_open_close { + u8 opcode; + u8 state; +}; + +struct usbip_header_basic { + __u32 command; + __u32 seqnum; + __u32 devid; + __u32 direction; + __u32 ep; +}; + +struct usbip_header_cmd_submit { + __u32 transfer_flags; + __s32 transfer_buffer_length; + __s32 start_frame; + __s32 number_of_packets; + __s32 interval; + unsigned char setup[8]; +}; + +struct usbip_header_ret_submit { + __s32 status; + __s32 actual_length; + __s32 start_frame; + __s32 number_of_packets; + __s32 error_count; +}; + +struct usbip_header_cmd_unlink { + __u32 seqnum; +}; + +struct usbip_header_ret_unlink { + __s32 status; +}; + +struct usbip_header { + struct usbip_header_basic base; + union { + struct usbip_header_cmd_submit cmd_submit; + struct usbip_header_ret_submit ret_submit; + struct usbip_header_cmd_unlink cmd_unlink; + struct usbip_header_ret_unlink ret_unlink; + } u; +}; + +struct usbip_iso_packet_descriptor { + __u32 offset; + __u32 length; + __u32 actual_length; + __u32 status; +}; + +struct vhci_priv { + long unsigned int seqnum; + struct list_head list; + struct vhci_device *vdev; + struct urb *urb; +}; + +struct vhci_unlink { + long unsigned int seqnum; + struct list_head list; + long unsigned int unlink_seqnum; +}; + +struct matrix_keymap_data { + const uint32_t *keymap; + unsigned int keymap_size; +}; + +struct pps_kinfo { + __u32 assert_sequence; + __u32 clear_sequence; + struct pps_ktime assert_tu; + struct pps_ktime clear_tu; + int current_mode; +}; + +struct pps_fdata { + struct pps_kinfo info; + struct pps_ktime timeout; +}; + +struct pps_bind_args { + int tsformat; + int edge; + int consumer; +}; + +struct blk_crypto_config { + enum blk_crypto_mode_num crypto_mode; + unsigned int data_unit_size; + unsigned int dun_bytes; +}; + +struct blk_crypto_key { + struct blk_crypto_config crypto_cfg; + unsigned int data_unit_size_bits; + unsigned int size; + u8 raw[64]; +}; + +struct blk_crypto_profile; + +struct blk_crypto_ll_ops { + int (*keyslot_program)(struct blk_crypto_profile *, const struct blk_crypto_key *, unsigned int); + int (*keyslot_evict)(struct blk_crypto_profile *, const struct blk_crypto_key *, unsigned int); +}; + +struct blk_crypto_keyslot; + +struct blk_crypto_profile { + struct blk_crypto_ll_ops ll_ops; + unsigned int max_dun_bytes_supported; + unsigned int modes_supported[5]; + struct device *dev; + unsigned int num_slots; + struct rw_semaphore lock; + struct lock_class_key lockdep_key; + wait_queue_head_t idle_slots_wait_queue; + struct list_head idle_slots; + spinlock_t idle_slots_lock; + struct hlist_head *slot_hashtable; + unsigned int log_slot_ht_size; + struct blk_crypto_keyslot *slots; +}; + +enum suspend_mode { + PRESUSPEND = 0, + PRESUSPEND_UNDO = 1, + POSTSUSPEND = 2, +}; + +struct cyclecounter { + u64 (*read)(const struct cyclecounter *); + u64 mask; + u32 mult; + u32 shift; +}; + +struct timecounter { + const struct cyclecounter *cc; + u64 cycle_last; + u64 nsec; + u64 mask; + u64 frac; +}; + +enum arch_timer_reg { + ARCH_TIMER_REG_CTRL = 0, + ARCH_TIMER_REG_CVAL = 1, +}; + +enum arch_timer_ppi_nr { + ARCH_TIMER_PHYS_SECURE_PPI = 0, + ARCH_TIMER_PHYS_NONSECURE_PPI = 1, + ARCH_TIMER_VIRT_PPI = 2, + ARCH_TIMER_HYP_PPI = 3, + ARCH_TIMER_HYP_VIRT_PPI = 4, + ARCH_TIMER_MAX_TIMER_PPI = 5, +}; + +enum arch_timer_spi_nr { + ARCH_TIMER_PHYS_SPI = 0, + ARCH_TIMER_VIRT_SPI = 1, + ARCH_TIMER_MAX_TIMER_SPI = 2, +}; + +struct arch_timer_kvm_info { + struct timecounter timecounter; + int virtual_irq; + int physical_irq; +}; + +struct arch_timer_mem_frame { + bool valid; + phys_addr_t cntbase; + size_t size; + int phys_irq; + int virt_irq; +}; + +struct arch_timer_mem { + phys_addr_t cntctlbase; + size_t size; + struct arch_timer_mem_frame frame[8]; +}; + +typedef int (*of_init_fn_1_ret)(struct device_node *); + +struct arch_timer { + void *base; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct clock_event_device evt; +}; + +struct hid_debug_list { + struct { + union { + struct __kfifo kfifo; + char *type; + const char *const_type; + char (*rectype)[0]; + char *ptr; + const char *ptr_const; + }; + char buf[0]; + } hid_debug_fifo; + struct fasync_struct *fasync; + struct hid_device *hdev; + struct list_head node; + struct mutex read_mutex; +}; + +struct hid_usage_entry { + unsigned int page; + unsigned int usage; + const char *description; +}; + +struct amba_id { + unsigned int id; + unsigned int mask; + void *data; +}; + +struct amba_cs_uci_id { + unsigned int devarch; + unsigned int devarch_mask; + unsigned int devtype; + void *data; +}; + +struct amba_device { + struct device dev; + struct resource res; + struct clk *pclk; + struct device_dma_parameters dma_parms; + unsigned int periphid; + struct mutex periphid_lock; + unsigned int cid; + struct amba_cs_uci_id uci; + unsigned int irq[9]; + const char *driver_override; +}; + +struct amba_driver { + struct device_driver drv; + int (*probe)(struct amba_device *, const struct amba_id *); + void (*remove)(struct amba_device *); + void (*shutdown)(struct amba_device *); + const struct amba_id *id_table; + bool driver_managed_dma; +}; + +struct mhu_link { + unsigned int irq; + void *tx_reg; + void *rx_reg; +}; + +struct arm_mhu { + void *base; + struct mhu_link mlink[3]; + struct mbox_chan chan[3]; + struct mbox_controller mbox; +}; + +enum { + NDA_UNSPEC = 0, + NDA_DST = 1, + NDA_LLADDR = 2, + NDA_CACHEINFO = 3, + NDA_PROBES = 4, + NDA_VLAN = 5, + NDA_PORT = 6, + NDA_VNI = 7, + NDA_IFINDEX = 8, + NDA_MASTER = 9, + NDA_LINK_NETNSID = 10, + NDA_SRC_VNI = 11, + NDA_PROTOCOL = 12, + NDA_NH_ID = 13, + NDA_FDB_EXT_ATTRS = 14, + NDA_FLAGS_EXT = 15, + NDA_NDM_STATE_MASK = 16, + NDA_NDM_FLAGS_MASK = 17, + __NDA_MAX = 18, +}; + +struct nda_cacheinfo { + __u32 ndm_confirmed; + __u32 ndm_used; + __u32 ndm_updated; + __u32 ndm_refcnt; +}; + +struct ndt_stats { + __u64 ndts_allocs; + __u64 ndts_destroys; + __u64 ndts_hash_grows; + __u64 ndts_res_failed; + __u64 ndts_lookups; + __u64 ndts_hits; + __u64 ndts_rcv_probes_mcast; + __u64 ndts_rcv_probes_ucast; + __u64 ndts_periodic_gc_runs; + __u64 ndts_forced_gc_runs; + __u64 ndts_table_fulls; +}; + +enum { + NDTPA_UNSPEC = 0, + NDTPA_IFINDEX = 1, + NDTPA_REFCNT = 2, + NDTPA_REACHABLE_TIME = 3, + NDTPA_BASE_REACHABLE_TIME = 4, + NDTPA_RETRANS_TIME = 5, + NDTPA_GC_STALETIME = 6, + NDTPA_DELAY_PROBE_TIME = 7, + NDTPA_QUEUE_LEN = 8, + NDTPA_APP_PROBES = 9, + NDTPA_UCAST_PROBES = 10, + NDTPA_MCAST_PROBES = 11, + NDTPA_ANYCAST_DELAY = 12, + NDTPA_PROXY_DELAY = 13, + NDTPA_PROXY_QLEN = 14, + NDTPA_LOCKTIME = 15, + NDTPA_QUEUE_LENBYTES = 16, + NDTPA_MCAST_REPROBES = 17, + NDTPA_PAD = 18, + NDTPA_INTERVAL_PROBE_TIME_MS = 19, + __NDTPA_MAX = 20, +}; + +struct ndtmsg { + __u8 ndtm_family; + __u8 ndtm_pad1; + __u16 ndtm_pad2; +}; + +struct ndt_config { + __u16 ndtc_key_len; + __u16 ndtc_entry_size; + __u32 ndtc_entries; + __u32 ndtc_last_flush; + __u32 ndtc_last_rand; + __u32 ndtc_hash_rnd; + __u32 ndtc_hash_mask; + __u32 ndtc_hash_chain_gc; + __u32 ndtc_proxy_qlen; +}; + +enum { + NDTA_UNSPEC = 0, + NDTA_NAME = 1, + NDTA_THRESH1 = 2, + NDTA_THRESH2 = 3, + NDTA_THRESH3 = 4, + NDTA_CONFIG = 5, + NDTA_PARMS = 6, + NDTA_STATS = 7, + NDTA_GC_INTERVAL = 8, + NDTA_PAD = 9, + __NDTA_MAX = 10, +}; + +struct neigh_dump_filter { + int master_idx; + int dev_idx; +}; + +struct neigh_sysctl_table { + struct ctl_table_header *sysctl_header; + struct ctl_table neigh_vars[21]; +}; + +enum tc_link_layer { + TC_LINKLAYER_UNAWARE = 0, + TC_LINKLAYER_ETHERNET = 1, + TC_LINKLAYER_ATM = 2, +}; + +struct tc_ratespec { + unsigned char cell_log; + __u8 linklayer; + short unsigned int overhead; + short int cell_align; + short unsigned int mpu; + __u32 rate; +}; + +enum { + TCA_STAB_UNSPEC = 0, + TCA_STAB_BASE = 1, + TCA_STAB_DATA = 2, + __TCA_STAB_MAX = 3, +}; + +struct qdisc_rate_table { + struct tc_ratespec rate; + u32 data[256]; + struct qdisc_rate_table *next; + int refcnt; +}; + +enum qdisc_state_t { + __QDISC_STATE_SCHED = 0, + __QDISC_STATE_DEACTIVATED = 1, + __QDISC_STATE_MISSED = 2, + __QDISC_STATE_DRAINING = 3, +}; + +struct qdisc_watchdog { + struct hrtimer timer; + struct Qdisc *qdisc; +}; + +struct tc_query_caps_base { + enum tc_setup_type type; + void *caps; +}; + +enum tc_root_command { + TC_ROOT_GRAFT = 0, +}; + +struct tc_root_qopt_offload { + enum tc_root_command command; + u32 handle; + bool ingress; +}; + +struct check_loop_arg { + struct qdisc_walker w; + struct Qdisc *p; + int depth; +}; + +struct tcf_bind_args { + struct tcf_walker w; + long unsigned int base; + long unsigned int cl; + u32 classid; +}; + +struct tc_bind_class_args { + struct qdisc_walker w; + long unsigned int new_cl; + u32 portid; + u32 clid; +}; + +struct qdisc_dump_args { + struct qdisc_walker w; + struct sk_buff *skb; + struct netlink_callback *cb; +}; + +enum { + TCA_GRED_UNSPEC = 0, + TCA_GRED_PARMS = 1, + TCA_GRED_STAB = 2, + TCA_GRED_DPS = 3, + TCA_GRED_MAX_P = 4, + TCA_GRED_LIMIT = 5, + TCA_GRED_VQ_LIST = 6, + __TCA_GRED_MAX = 7, +}; + +enum { + TCA_GRED_VQ_ENTRY_UNSPEC = 0, + TCA_GRED_VQ_ENTRY = 1, + __TCA_GRED_VQ_ENTRY_MAX = 2, +}; + +enum { + TCA_GRED_VQ_UNSPEC = 0, + TCA_GRED_VQ_PAD = 1, + TCA_GRED_VQ_DP = 2, + TCA_GRED_VQ_STAT_BYTES = 3, + TCA_GRED_VQ_STAT_PACKETS = 4, + TCA_GRED_VQ_STAT_BACKLOG = 5, + TCA_GRED_VQ_STAT_PROB_DROP = 6, + TCA_GRED_VQ_STAT_PROB_MARK = 7, + TCA_GRED_VQ_STAT_FORCED_DROP = 8, + TCA_GRED_VQ_STAT_FORCED_MARK = 9, + TCA_GRED_VQ_STAT_PDROP = 10, + TCA_GRED_VQ_STAT_OTHER = 11, + TCA_GRED_VQ_FLAGS = 12, + __TCA_GRED_VQ_MAX = 13, +}; + +struct tc_gred_qopt { + __u32 limit; + __u32 qth_min; + __u32 qth_max; + __u32 DP; + __u32 backlog; + __u32 qave; + __u32 forced; + __u32 early; + __u32 other; + __u32 pdrop; + __u8 Wlog; + __u8 Plog; + __u8 Scell_log; + __u8 prio; + __u32 packets; + __u32 bytesin; +}; + +struct tc_gred_sopt { + __u32 DPs; + __u32 def_DP; + __u8 grio; + __u8 flags; + __u16 pad1; +}; + +struct red_stats { + u32 prob_drop; + u32 prob_mark; + u32 forced_drop; + u32 forced_mark; + u32 pdrop; +}; + +enum tc_gred_command { + TC_GRED_REPLACE = 0, + TC_GRED_DESTROY = 1, + TC_GRED_STATS = 2, +}; + +struct tc_gred_vq_qopt_offload_params { + bool present; + u32 limit; + u32 prio; + u32 min; + u32 max; + bool is_ecn; + bool is_harddrop; + u32 probability; + u32 *backlog; +}; + +struct tc_gred_qopt_offload_params { + bool grio_on; + bool wred_on; + unsigned int dp_cnt; + unsigned int dp_def; + struct gnet_stats_queue *qstats; + struct tc_gred_vq_qopt_offload_params tab[16]; +}; + +struct tc_gred_qopt_offload_stats { + struct gnet_stats_basic_sync bstats[16]; + struct gnet_stats_queue qstats[16]; + struct red_stats *xstats[16]; +}; + +struct tc_gred_qopt_offload { + enum tc_gred_command command; + u32 handle; + u32 parent; + union { + struct tc_gred_qopt_offload_params set; + struct tc_gred_qopt_offload_stats stats; + }; +}; + +struct red_parms { + u32 qth_min; + u32 qth_max; + u32 Scell_max; + u32 max_P; + struct reciprocal_value max_P_reciprocal; + u32 qth_delta; + u32 target_min; + u32 target_max; + u8 Scell_log; + u8 Wlog; + u8 Plog; + u8 Stab[256]; +}; + +struct red_vars { + int qcount; + u32 qR; + long unsigned int qavg; + ktime_t qidlestart; +}; + +enum { + RED_BELOW_MIN_THRESH = 0, + RED_BETWEEN_TRESH = 1, + RED_ABOVE_MAX_TRESH = 2, +}; + +enum { + RED_DONT_MARK = 0, + RED_PROB_MARK = 1, + RED_HARD_MARK = 2, +}; + +struct gred_sched_data { + u32 limit; + u32 DP; + u32 red_flags; + u64 bytesin; + u32 packetsin; + u32 backlog; + u8 prio; + struct red_parms parms; + struct red_vars vars; + struct red_stats stats; +}; + +enum { + GRED_WRED_MODE = 1, + GRED_RIO_MODE = 2, +}; + +struct gred_sched { + struct gred_sched_data *tab[16]; + long unsigned int flags; + u32 red_flags; + u32 DPs; + u32 def; + struct red_vars wred_set; + struct tc_gred_qopt_offload *opt; +}; + +enum { + TCA_BPF_UNSPEC = 0, + TCA_BPF_ACT = 1, + TCA_BPF_POLICE = 2, + TCA_BPF_CLASSID = 3, + TCA_BPF_OPS_LEN = 4, + TCA_BPF_OPS = 5, + TCA_BPF_FD = 6, + TCA_BPF_NAME = 7, + TCA_BPF_FLAGS = 8, + TCA_BPF_FLAGS_GEN = 9, + TCA_BPF_TAG = 10, + TCA_BPF_ID = 11, + __TCA_BPF_MAX = 12, +}; + +struct flow_cls_common_offload { + u32 chain_index; + __be16 protocol; + u32 prio; + struct netlink_ext_ack *extack; +}; + +enum tc_clsbpf_command { + TC_CLSBPF_OFFLOAD = 0, + TC_CLSBPF_STATS = 1, +}; + +struct tc_cls_bpf_offload { + struct flow_cls_common_offload common; + enum tc_clsbpf_command command; + struct tcf_exts *exts; + struct bpf_prog *prog; + struct bpf_prog *oldprog; + const char *name; + bool exts_integrated; +}; + +struct cls_bpf_head { + struct list_head plist; + struct idr handle_idr; + struct callback_head rcu; +}; + +struct cls_bpf_prog { + struct bpf_prog *filter; + struct list_head link; + struct tcf_result res; + bool exts_integrated; + u32 gen_flags; + unsigned int in_hw_count; + struct tcf_exts exts; + u32 handle; + u16 bpf_num_ops; + struct sock_filter *bpf_ops; + const char *bpf_name; + struct tcf_proto *tp; + struct rcu_work rwork; +}; + +struct rss_req_info { + struct ethnl_req_info base; + u32 rss_context; +}; + +struct rss_reply_data { + struct ethnl_reply_data base; + bool no_key_fields; + u32 indir_size; + u32 hkey_size; + u32 hfunc; + u32 input_xfrm; + u32 *indir_table; + u8 *hkey; +}; + +struct rss_nl_dump_ctx { + long unsigned int ifindex; + long unsigned int ctx_idx; + unsigned int match_ifindex; + unsigned int start_ctx; +}; + +struct ethtool_phy_ops { + int (*get_sset_count)(struct phy_device *); + int (*get_strings)(struct phy_device *, u8 *); + int (*get_stats)(struct phy_device *, struct ethtool_stats *, u64 *); + int (*get_plca_cfg)(struct phy_device *, struct phy_plca_cfg *); + int (*set_plca_cfg)(struct phy_device *, const struct phy_plca_cfg *, struct netlink_ext_ack *); + int (*get_plca_status)(struct phy_device *, struct phy_plca_status *); + int (*start_cable_test)(struct phy_device *, struct netlink_ext_ack *); + int (*start_cable_test_tdr)(struct phy_device *, struct netlink_ext_ack *, const struct phy_tdr_config *); +}; + +enum { + ETHTOOL_A_CABLE_PAIR_A = 0, + ETHTOOL_A_CABLE_PAIR_B = 1, + ETHTOOL_A_CABLE_PAIR_C = 2, + ETHTOOL_A_CABLE_PAIR_D = 3, +}; + +enum { + ETHTOOL_A_CABLE_INF_SRC_UNSPEC = 0, + ETHTOOL_A_CABLE_INF_SRC_TDR = 1, + ETHTOOL_A_CABLE_INF_SRC_ALCD = 2, +}; + +enum { + ETHTOOL_A_CABLE_RESULT_UNSPEC = 0, + ETHTOOL_A_CABLE_RESULT_PAIR = 1, + ETHTOOL_A_CABLE_RESULT_CODE = 2, + ETHTOOL_A_CABLE_RESULT_SRC = 3, + __ETHTOOL_A_CABLE_RESULT_CNT = 4, + ETHTOOL_A_CABLE_RESULT_MAX = 3, +}; + +enum { + ETHTOOL_A_CABLE_FAULT_LENGTH_UNSPEC = 0, + ETHTOOL_A_CABLE_FAULT_LENGTH_PAIR = 1, + ETHTOOL_A_CABLE_FAULT_LENGTH_CM = 2, + ETHTOOL_A_CABLE_FAULT_LENGTH_SRC = 3, + __ETHTOOL_A_CABLE_FAULT_LENGTH_CNT = 4, + ETHTOOL_A_CABLE_FAULT_LENGTH_MAX = 3, +}; + +enum { + ETHTOOL_A_CABLE_TEST_NTF_STATUS_UNSPEC = 0, + ETHTOOL_A_CABLE_TEST_NTF_STATUS_STARTED = 1, + ETHTOOL_A_CABLE_TEST_NTF_STATUS_COMPLETED = 2, +}; + +enum { + ETHTOOL_A_CABLE_NEST_UNSPEC = 0, + ETHTOOL_A_CABLE_NEST_RESULT = 1, + ETHTOOL_A_CABLE_NEST_FAULT_LENGTH = 2, + __ETHTOOL_A_CABLE_NEST_CNT = 3, + ETHTOOL_A_CABLE_NEST_MAX = 2, +}; + +enum { + ETHTOOL_A_CABLE_TEST_NTF_UNSPEC = 0, + ETHTOOL_A_CABLE_TEST_NTF_HEADER = 1, + ETHTOOL_A_CABLE_TEST_NTF_STATUS = 2, + ETHTOOL_A_CABLE_TEST_NTF_NEST = 3, + __ETHTOOL_A_CABLE_TEST_NTF_CNT = 4, + ETHTOOL_A_CABLE_TEST_NTF_MAX = 3, +}; + +enum { + ETHTOOL_A_CABLE_TEST_TDR_CFG_UNSPEC = 0, + ETHTOOL_A_CABLE_TEST_TDR_CFG_FIRST = 1, + ETHTOOL_A_CABLE_TEST_TDR_CFG_LAST = 2, + ETHTOOL_A_CABLE_TEST_TDR_CFG_STEP = 3, + ETHTOOL_A_CABLE_TEST_TDR_CFG_PAIR = 4, + __ETHTOOL_A_CABLE_TEST_TDR_CFG_CNT = 5, + ETHTOOL_A_CABLE_TEST_TDR_CFG_MAX = 4, +}; + +enum { + ETHTOOL_A_CABLE_AMPLITUDE_UNSPEC = 0, + ETHTOOL_A_CABLE_AMPLITUDE_PAIR = 1, + ETHTOOL_A_CABLE_AMPLITUDE_mV = 2, + __ETHTOOL_A_CABLE_AMPLITUDE_CNT = 3, + ETHTOOL_A_CABLE_AMPLITUDE_MAX = 2, +}; + +enum { + ETHTOOL_A_CABLE_PULSE_UNSPEC = 0, + ETHTOOL_A_CABLE_PULSE_mV = 1, + __ETHTOOL_A_CABLE_PULSE_CNT = 2, + ETHTOOL_A_CABLE_PULSE_MAX = 1, +}; + +enum { + ETHTOOL_A_CABLE_STEP_UNSPEC = 0, + ETHTOOL_A_CABLE_STEP_FIRST_DISTANCE = 1, + ETHTOOL_A_CABLE_STEP_LAST_DISTANCE = 2, + ETHTOOL_A_CABLE_STEP_STEP_DISTANCE = 3, + __ETHTOOL_A_CABLE_STEP_CNT = 4, + ETHTOOL_A_CABLE_STEP_MAX = 3, +}; + +enum { + ETHTOOL_A_CABLE_TDR_NEST_UNSPEC = 0, + ETHTOOL_A_CABLE_TDR_NEST_STEP = 1, + ETHTOOL_A_CABLE_TDR_NEST_AMPLITUDE = 2, + ETHTOOL_A_CABLE_TDR_NEST_PULSE = 3, + __ETHTOOL_A_CABLE_TDR_NEST_CNT = 4, + ETHTOOL_A_CABLE_TDR_NEST_MAX = 3, +}; + +enum nfnl_acct_msg_types { + NFNL_MSG_ACCT_NEW = 0, + NFNL_MSG_ACCT_GET = 1, + NFNL_MSG_ACCT_GET_CTRZERO = 2, + NFNL_MSG_ACCT_DEL = 3, + NFNL_MSG_ACCT_OVERQUOTA = 4, + NFNL_MSG_ACCT_MAX = 5, +}; + +enum nfnl_acct_flags { + NFACCT_F_QUOTA_PKTS = 1, + NFACCT_F_QUOTA_BYTES = 2, + NFACCT_F_OVERQUOTA = 4, +}; + +enum nfnl_acct_type { + NFACCT_UNSPEC = 0, + NFACCT_NAME = 1, + NFACCT_PKTS = 2, + NFACCT_BYTES = 3, + NFACCT_USE = 4, + NFACCT_FLAGS = 5, + NFACCT_QUOTA = 6, + NFACCT_FILTER = 7, + NFACCT_PAD = 8, + __NFACCT_MAX = 9, +}; + +enum nfnl_attr_filter_type { + NFACCT_FILTER_UNSPEC = 0, + NFACCT_FILTER_MASK = 1, + NFACCT_FILTER_VALUE = 2, + __NFACCT_FILTER_MAX = 3, +}; + +enum { + NFACCT_NO_QUOTA = -1, + NFACCT_UNDERQUOTA = 0, + NFACCT_OVERQUOTA = 1, +}; + +struct nf_acct { + atomic64_t pkts; + atomic64_t bytes; + long unsigned int flags; + struct list_head head; + refcount_t refcnt; + char name[32]; + struct callback_head callback_head; + char data[0]; +}; + +struct nfacct_filter { + u32 value; + u32 mask; +}; + +struct nfnl_acct_net { + struct list_head nfnl_acct_list; +}; + +struct nf_ct_timeout_hooks { + struct nf_ct_timeout * (*timeout_find_get)(struct net *, const char *); + void (*timeout_put)(struct nf_ct_timeout *); +}; + +struct nf_conncount_tuple { + struct list_head node; + struct nf_conntrack_tuple tuple; + struct nf_conntrack_zone zone; + int cpu; + u32 jiffies32; +}; + +struct nf_conncount_rb { + struct rb_node node; + struct nf_conncount_list list; + u32 key[5]; + struct callback_head callback_head; +}; + +struct nf_conncount_data { + unsigned int keylen; + struct rb_root root[256]; + struct net *net; + struct work_struct gc_work; + long unsigned int pending_trees[4]; + unsigned int gc_tree; +}; + +enum nft_inner_type { + NFT_INNER_UNSPEC = 0, + NFT_INNER_VXLAN = 1, + NFT_INNER_GENEVE = 2, +}; + +enum nft_inner_flags { + NFT_INNER_HDRSIZE = 1, + NFT_INNER_LL = 2, + NFT_INNER_NH = 4, + NFT_INNER_TH = 8, +}; + +enum nft_inner_attributes { + NFTA_INNER_UNSPEC = 0, + NFTA_INNER_NUM = 1, + NFTA_INNER_TYPE = 2, + NFTA_INNER_FLAGS = 3, + NFTA_INNER_HDRSIZE = 4, + NFTA_INNER_EXPR = 5, + __NFTA_INNER_MAX = 6, +}; + +enum { + NFT_PAYLOAD_CTX_INNER_TUN = 1, + NFT_PAYLOAD_CTX_INNER_LL = 2, + NFT_PAYLOAD_CTX_INNER_NH = 4, + NFT_PAYLOAD_CTX_INNER_TH = 8, +}; + +struct nft_inner_tun_ctx { + long unsigned int cookie; + u16 type; + u16 inner_tunoff; + u16 inner_lloff; + u16 inner_nhoff; + u16 inner_thoff; + __be16 llproto; + u8 l4proto; + u8 flags; +}; + +struct genevehdr { + u8 opt_len: 6; + u8 ver: 2; + u8 rsvd1: 6; + u8 critical: 1; + u8 oam: 1; + __be16 proto_type; + u8 vni[3]; + u8 rsvd2; + u8 options[0]; +}; + +struct __nft_expr { + const struct nft_expr_ops *ops; + union { + struct nft_payload payload; + struct nft_meta meta; + }; +}; + +enum { + NFT_INNER_EXPR_PAYLOAD = 0, + NFT_INNER_EXPR_META = 1, +}; + +struct nft_inner { + u8 flags; + u8 hdrsize; + u8 type; + u8 expr_type; + struct __nft_expr expr; +}; + +struct nft_expr_info { + const struct nft_expr_ops *ops; + const struct nlattr *attr; + struct nlattr *tb[17]; +}; + +enum nft_reject_inet_code { + NFT_REJECT_ICMPX_NO_ROUTE = 0, + NFT_REJECT_ICMPX_PORT_UNREACH = 1, + NFT_REJECT_ICMPX_HOST_UNREACH = 2, + NFT_REJECT_ICMPX_ADMIN_PROHIBITED = 3, + __NFT_REJECT_ICMPX_MAX = 4, +}; + +struct nft_dup_netdev { + u8 sreg_dev; +}; + +struct xt_log_info { + unsigned char level; + unsigned char logflags; + char prefix[30]; +}; + +enum xt_cluster_flags { + XT_CLUSTER_F_INV = 1, +}; + +struct xt_cluster_match_info { + __u32 total_nodes; + __u32 node_mask; + __u32 hash_seed; + __u32 flags; +}; + +struct xt_cgroup_info_v0 { + __u32 id; + __u32 invert; +}; + +struct xt_cgroup_info_v1 { + __u8 has_path; + __u8 has_classid; + __u8 invert_path; + __u8 invert_classid; + char path[4096]; + __u32 classid; + void *priv; +}; + +struct xt_cgroup_info_v2 { + __u8 has_path; + __u8 has_classid; + __u8 invert_path; + __u8 invert_classid; + union { + char path[512]; + __u32 classid; + }; + void *priv; +}; + +struct bitmap_ip { + long unsigned int *members; + u32 first_ip; + u32 last_ip; + u32 elements; + u32 hosts; + size_t memsize; + u8 netmask; + struct timer_list gc; + struct ip_set *set; + unsigned char extensions[0]; +}; + +struct bitmap_ip_adt_elem { + u16 id; +}; + +struct bitmap_ip_elem {}; + +enum tcp_fastopen_client_fail { + TFO_STATUS_UNSPEC = 0, + TFO_COOKIE_UNAVAILABLE = 1, + TFO_DATA_NOT_ACKED = 2, + TFO_SYN_RETRANSMITTED = 3, +}; + +typedef struct sk_buff * (*gro_receive_t)(struct list_head *, struct sk_buff *); + +struct gro_remcsum { + int offset; + __wsum delta; +}; + +struct guehdr { + union { + struct { + __u8 hlen: 5; + __u8 control: 1; + __u8 version: 2; + __u8 proto_ctype; + __be16 flags; + }; + __be32 word; + }; +}; + +enum { + FOU_ENCAP_UNSPEC = 0, + FOU_ENCAP_DIRECT = 1, + FOU_ENCAP_GUE = 2, +}; + +enum { + FOU_ATTR_UNSPEC = 0, + FOU_ATTR_PORT = 1, + FOU_ATTR_AF = 2, + FOU_ATTR_IPPROTO = 3, + FOU_ATTR_TYPE = 4, + FOU_ATTR_REMCSUM_NOPARTIAL = 5, + FOU_ATTR_LOCAL_V4 = 6, + FOU_ATTR_LOCAL_V6 = 7, + FOU_ATTR_PEER_V4 = 8, + FOU_ATTR_PEER_V6 = 9, + FOU_ATTR_PEER_PORT = 10, + FOU_ATTR_IFINDEX = 11, + __FOU_ATTR_MAX = 12, +}; + +enum { + FOU_CMD_UNSPEC = 0, + FOU_CMD_ADD = 1, + FOU_CMD_DEL = 2, + FOU_CMD_GET = 3, + __FOU_CMD_MAX = 4, +}; + +struct fou { + struct socket *sock; + u8 protocol; + u8 flags; + __be16 port; + u8 family; + u16 type; + struct list_head list; + struct callback_head rcu; +}; + +struct fou_cfg { + u16 type; + u8 protocol; + u8 flags; + struct udp_port_cfg udp_config; +}; + +struct fou_net { + struct list_head fou_list; + struct mutex fou_lock; +}; + +struct xfrm_dst_lookup_params { + struct net *net; + int tos; + int oif; + xfrm_address_t *saddr; + xfrm_address_t *daddr; + u32 mark; + __u8 ipproto; + union flowi_uli uli; +}; + +struct xfrm_policy_afinfo { + struct dst_ops *dst_ops; + struct dst_entry * (*dst_lookup)(const struct xfrm_dst_lookup_params *); + int (*get_saddr)(xfrm_address_t *, const struct xfrm_dst_lookup_params *); + int (*fill_dst)(struct xfrm_dst *, struct net_device *, const struct flowi *); + struct dst_entry * (*blackhole_route)(struct net *, struct dst_entry *); +}; + +enum xfrm_sa_dir { + XFRM_SA_DIR_IN = 1, + XFRM_SA_DIR_OUT = 2, +}; + +enum { + XFRM_SHARE_ANY = 0, + XFRM_SHARE_SESSION = 1, + XFRM_SHARE_USER = 2, + XFRM_SHARE_UNIQUE = 3, +}; + +struct xfrm_user_sec_ctx { + __u16 len; + __u16 exttype; + __u8 ctx_alg; + __u8 ctx_doi; + __u16 ctx_len; +}; + +struct xfrm_user_tmpl { + struct xfrm_id id; + __u16 family; + xfrm_address_t saddr; + __u32 reqid; + __u8 mode; + __u8 share; + __u8 optional; + __u32 aalgos; + __u32 ealgos; + __u32 calgos; +}; + +enum xfrm_ae_ftype_t { + XFRM_AE_UNSPEC = 0, + XFRM_AE_RTHR = 1, + XFRM_AE_RVAL = 2, + XFRM_AE_LVAL = 4, + XFRM_AE_ETHR = 8, + XFRM_AE_CR = 16, + XFRM_AE_CE = 32, + XFRM_AE_CU = 64, + __XFRM_AE_MAX = 65, +}; + +struct xfrm_userpolicy_type { + __u8 type; + __u16 reserved1; + __u8 reserved2; +}; + +enum xfrm_sadattr_type_t { + XFRMA_SAD_UNSPEC = 0, + XFRMA_SAD_CNT = 1, + XFRMA_SAD_HINFO = 2, + __XFRMA_SAD_MAX = 3, +}; + +struct xfrmu_sadhinfo { + __u32 sadhcnt; + __u32 sadhmcnt; +}; + +enum xfrm_spdattr_type_t { + XFRMA_SPD_UNSPEC = 0, + XFRMA_SPD_INFO = 1, + XFRMA_SPD_HINFO = 2, + XFRMA_SPD_IPV4_HTHRESH = 3, + XFRMA_SPD_IPV6_HTHRESH = 4, + __XFRMA_SPD_MAX = 5, +}; + +struct xfrmu_spdinfo { + __u32 incnt; + __u32 outcnt; + __u32 fwdcnt; + __u32 inscnt; + __u32 outscnt; + __u32 fwdscnt; +}; + +struct xfrmu_spdhinfo { + __u32 spdhcnt; + __u32 spdhmcnt; +}; + +struct xfrmu_spdhthresh { + __u8 lbits; + __u8 rbits; +}; + +struct xfrm_usersa_info { + struct xfrm_selector sel; + struct xfrm_id id; + xfrm_address_t saddr; + struct xfrm_lifetime_cfg lft; + struct xfrm_lifetime_cur curlft; + struct xfrm_stats stats; + __u32 seq; + __u32 reqid; + __u16 family; + __u8 mode; + __u8 replay_window; + __u8 flags; +}; + +struct xfrm_usersa_id { + xfrm_address_t daddr; + __be32 spi; + __u16 family; + __u8 proto; +}; + +struct xfrm_aevent_id { + struct xfrm_usersa_id sa_id; + xfrm_address_t saddr; + __u32 flags; + __u32 reqid; +}; + +struct xfrm_userspi_info { + struct xfrm_usersa_info info; + __u32 min; + __u32 max; +}; + +struct xfrm_userpolicy_info { + struct xfrm_selector sel; + struct xfrm_lifetime_cfg lft; + struct xfrm_lifetime_cur curlft; + __u32 priority; + __u32 index; + __u8 dir; + __u8 action; + __u8 flags; + __u8 share; +}; + +struct xfrm_userpolicy_id { + struct xfrm_selector sel; + __u32 index; + __u8 dir; +}; + +struct xfrm_user_acquire { + struct xfrm_id id; + xfrm_address_t saddr; + struct xfrm_selector sel; + struct xfrm_userpolicy_info policy; + __u32 aalgos; + __u32 ealgos; + __u32 calgos; + __u32 seq; +}; + +struct xfrm_user_expire { + struct xfrm_usersa_info state; + __u8 hard; +}; + +struct xfrm_user_polexpire { + struct xfrm_userpolicy_info pol; + __u8 hard; +}; + +struct xfrm_usersa_flush { + __u8 proto; +}; + +struct xfrm_user_report { + __u8 proto; + struct xfrm_selector sel; +}; + +struct xfrm_user_kmaddress { + xfrm_address_t local; + xfrm_address_t remote; + __u32 reserved; + __u16 family; +}; + +struct xfrm_user_migrate { + xfrm_address_t old_daddr; + xfrm_address_t old_saddr; + xfrm_address_t new_daddr; + xfrm_address_t new_saddr; + __u8 proto; + __u8 mode; + __u16 reserved; + __u32 reqid; + __u16 old_family; + __u16 new_family; +}; + +struct xfrm_user_mapping { + struct xfrm_usersa_id id; + __u32 reqid; + xfrm_address_t old_saddr; + xfrm_address_t new_saddr; + __be16 old_sport; + __be16 new_sport; +}; + +struct xfrm_user_offload { + int ifindex; + __u8 flags; +}; + +struct xfrm_userpolicy_default { + __u8 in; + __u8 fwd; + __u8 out; +}; + +enum xfrm_nlgroups { + XFRMNLGRP_NONE = 0, + XFRMNLGRP_ACQUIRE = 1, + XFRMNLGRP_EXPIRE = 2, + XFRMNLGRP_SA = 3, + XFRMNLGRP_POLICY = 4, + XFRMNLGRP_AEVENTS = 5, + XFRMNLGRP_REPORT = 6, + XFRMNLGRP_MIGRATE = 7, + XFRMNLGRP_MAPPING = 8, + __XFRMNLGRP_MAX = 9, +}; + +enum { + XFRM_DEV_OFFLOAD_IN = 1, + XFRM_DEV_OFFLOAD_OUT = 2, + XFRM_DEV_OFFLOAD_FWD = 3, +}; + +struct km_event { + union { + u32 hard; + u32 proto; + u32 byid; + u32 aevent; + u32 type; + } data; + u32 seq; + u32 portid; + u32 event; + struct net *net; +}; + +struct xfrm_policy_walk { + struct xfrm_policy_walk_entry walk; + u8 type; + u32 seq; +}; + +struct xfrm_kmaddress { + xfrm_address_t local; + xfrm_address_t remote; + u32 reserved; + u16 family; +}; + +struct xfrm_migrate { + xfrm_address_t old_daddr; + xfrm_address_t old_saddr; + xfrm_address_t new_daddr; + xfrm_address_t new_saddr; + u8 proto; + u8 mode; + u16 reserved; + u32 reqid; + u16 old_family; + u16 new_family; +}; + +struct xfrm_mgr { + struct list_head list; + int (*notify)(struct xfrm_state *, const struct km_event *); + int (*acquire)(struct xfrm_state *, struct xfrm_tmpl *, struct xfrm_policy *); + struct xfrm_policy * (*compile_policy)(struct sock *, int, u8 *, int, int *); + int (*new_mapping)(struct xfrm_state *, xfrm_address_t *, __be16); + int (*notify_policy)(struct xfrm_policy *, int, const struct km_event *); + int (*report)(struct net *, u8, struct xfrm_selector *, xfrm_address_t *); + int (*migrate)(const struct xfrm_selector *, u8, u8, const struct xfrm_migrate *, int, const struct xfrm_kmaddress *, const struct xfrm_encap_tmpl *); + bool (*is_alive)(const struct km_event *); +}; + +struct xfrmk_sadinfo { + u32 sadhcnt; + u32 sadhmcnt; + u32 sadcnt; +}; + +struct xfrmk_spdinfo { + u32 incnt; + u32 outcnt; + u32 fwdcnt; + u32 inscnt; + u32 outscnt; + u32 fwdscnt; + u32 spdhcnt; + u32 spdhmcnt; +}; + +struct xfrm_translator { + int (*alloc_compat)(struct sk_buff *, const struct nlmsghdr *); + struct nlmsghdr * (*rcv_msg_compat)(const struct nlmsghdr *, int, const struct nla_policy *, struct netlink_ext_ack *); + int (*xlate_user_policy_sockptr)(u8 **, int); + struct module *owner; +}; + +struct xfrm_dump_info { + struct sk_buff *in_skb; + struct sk_buff *out_skb; + u32 nlmsg_seq; + u16 nlmsg_flags; +}; + +struct xfrm_link { + int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **, struct netlink_ext_ack *); + int (*start)(struct netlink_callback *); + int (*dump)(struct sk_buff *, struct netlink_callback *); + int (*done)(struct netlink_callback *); + const struct nla_policy *nla_pol; + int nla_max; +}; + +enum flowlabel_reflect { + FLOWLABEL_REFLECT_ESTABLISHED = 1, + FLOWLABEL_REFLECT_TCP_RESET = 2, + FLOWLABEL_REFLECT_ICMPV6_ECHO_REPLIES = 4, +}; + +struct tcp_ao_key { + struct hlist_node node; + union tcp_ao_addr addr; + u8 key[80]; + unsigned int tcp_sigpool_id; + unsigned int digest_size; + int l3index; + u8 prefixlen; + u8 family; + u8 keylen; + u8 keyflags; + u8 sndid; + u8 rcvid; + u8 maclen; + struct callback_head rcu; + atomic64_t pkt_good; + atomic64_t pkt_bad; + u8 traffic_keys[0]; +}; + +enum tcp_tw_status { + TCP_TW_SUCCESS = 0, + TCP_TW_RST = 1, + TCP_TW_ACK = 2, + TCP_TW_SYN = 3, +}; + +enum tcp_seq_states { + TCP_SEQ_STATE_LISTENING = 0, + TCP_SEQ_STATE_ESTABLISHED = 1, +}; + +struct tcp_seq_afinfo { + sa_family_t family; +}; + +struct tcp_iter_state { + struct seq_net_private p; + enum tcp_seq_states state; + struct sock *syn_wait_sk; + int bucket; + int offset; + int sbucket; + int num; + loff_t last_pos; +}; + +struct tcp_key { + union { + struct { + struct tcp_ao_key *ao_key; + char *traffic_key; + u32 sne; + u8 rcv_next; + }; + struct tcp_md5sig_key *md5_key; + }; + enum { + TCP_KEY_NONE = 0, + TCP_KEY_MD5 = 1, + TCP_KEY_AO = 2, + } type; +}; + +typedef u32 inet6_ehashfn_t(const struct net *, const struct in6_addr *, const u16, const struct in6_addr *, const __be16); + +struct sadb_msg { + __u8 sadb_msg_version; + __u8 sadb_msg_type; + __u8 sadb_msg_errno; + __u8 sadb_msg_satype; + __u16 sadb_msg_len; + __u16 sadb_msg_reserved; + __u32 sadb_msg_seq; + __u32 sadb_msg_pid; +}; + +struct sadb_ext { + __u16 sadb_ext_len; + __u16 sadb_ext_type; +}; + +struct sadb_sa { + __u16 sadb_sa_len; + __u16 sadb_sa_exttype; + __be32 sadb_sa_spi; + __u8 sadb_sa_replay; + __u8 sadb_sa_state; + __u8 sadb_sa_auth; + __u8 sadb_sa_encrypt; + __u32 sadb_sa_flags; +}; + +struct sadb_lifetime { + __u16 sadb_lifetime_len; + __u16 sadb_lifetime_exttype; + __u32 sadb_lifetime_allocations; + __u64 sadb_lifetime_bytes; + __u64 sadb_lifetime_addtime; + __u64 sadb_lifetime_usetime; +}; + +struct sadb_address { + __u16 sadb_address_len; + __u16 sadb_address_exttype; + __u8 sadb_address_proto; + __u8 sadb_address_prefixlen; + __u16 sadb_address_reserved; +}; + +struct sadb_key { + __u16 sadb_key_len; + __u16 sadb_key_exttype; + __u16 sadb_key_bits; + __u16 sadb_key_reserved; +}; + +struct sadb_prop { + __u16 sadb_prop_len; + __u16 sadb_prop_exttype; + __u8 sadb_prop_replay; + __u8 sadb_prop_reserved[3]; +}; + +struct sadb_comb { + __u8 sadb_comb_auth; + __u8 sadb_comb_encrypt; + __u16 sadb_comb_flags; + __u16 sadb_comb_auth_minbits; + __u16 sadb_comb_auth_maxbits; + __u16 sadb_comb_encrypt_minbits; + __u16 sadb_comb_encrypt_maxbits; + __u32 sadb_comb_reserved; + __u32 sadb_comb_soft_allocations; + __u32 sadb_comb_hard_allocations; + __u64 sadb_comb_soft_bytes; + __u64 sadb_comb_hard_bytes; + __u64 sadb_comb_soft_addtime; + __u64 sadb_comb_hard_addtime; + __u64 sadb_comb_soft_usetime; + __u64 sadb_comb_hard_usetime; +}; + +struct sadb_supported { + __u16 sadb_supported_len; + __u16 sadb_supported_exttype; + __u32 sadb_supported_reserved; +}; + +struct sadb_spirange { + __u16 sadb_spirange_len; + __u16 sadb_spirange_exttype; + __u32 sadb_spirange_min; + __u32 sadb_spirange_max; + __u32 sadb_spirange_reserved; +}; + +struct sadb_x_sa2 { + __u16 sadb_x_sa2_len; + __u16 sadb_x_sa2_exttype; + __u8 sadb_x_sa2_mode; + __u8 sadb_x_sa2_reserved1; + __u16 sadb_x_sa2_reserved2; + __u32 sadb_x_sa2_sequence; + __u32 sadb_x_sa2_reqid; +}; + +struct sadb_x_policy { + __u16 sadb_x_policy_len; + __u16 sadb_x_policy_exttype; + __u16 sadb_x_policy_type; + __u8 sadb_x_policy_dir; + __u8 sadb_x_policy_reserved; + __u32 sadb_x_policy_id; + __u32 sadb_x_policy_priority; +}; + +struct sadb_x_ipsecrequest { + __u16 sadb_x_ipsecrequest_len; + __u16 sadb_x_ipsecrequest_proto; + __u8 sadb_x_ipsecrequest_mode; + __u8 sadb_x_ipsecrequest_level; + __u16 sadb_x_ipsecrequest_reserved1; + __u32 sadb_x_ipsecrequest_reqid; + __u32 sadb_x_ipsecrequest_reserved2; +}; + +struct sadb_x_nat_t_type { + __u16 sadb_x_nat_t_type_len; + __u16 sadb_x_nat_t_type_exttype; + __u8 sadb_x_nat_t_type_type; + __u8 sadb_x_nat_t_type_reserved[3]; +}; + +struct sadb_x_nat_t_port { + __u16 sadb_x_nat_t_port_len; + __u16 sadb_x_nat_t_port_exttype; + __be16 sadb_x_nat_t_port_port; + __u16 sadb_x_nat_t_port_reserved; +}; + +struct sadb_x_sec_ctx { + __u16 sadb_x_sec_len; + __u16 sadb_x_sec_exttype; + __u8 sadb_x_ctx_alg; + __u8 sadb_x_ctx_doi; + __u16 sadb_x_ctx_len; +}; + +struct sadb_x_kmaddress { + __u16 sadb_x_kmaddress_len; + __u16 sadb_x_kmaddress_exttype; + __u32 sadb_x_kmaddress_reserved; +}; + +struct sadb_x_filter { + __u16 sadb_x_filter_len; + __u16 sadb_x_filter_exttype; + __u32 sadb_x_filter_saddr[4]; + __u32 sadb_x_filter_daddr[4]; + __u16 sadb_x_filter_family; + __u8 sadb_x_filter_splen; + __u8 sadb_x_filter_dplen; +}; + +enum { + IPSEC_MODE_ANY = 0, + IPSEC_MODE_TRANSPORT = 1, + IPSEC_MODE_TUNNEL = 2, + IPSEC_MODE_BEET = 3, +}; + +enum { + IPSEC_DIR_ANY = 0, + IPSEC_DIR_INBOUND = 1, + IPSEC_DIR_OUTBOUND = 2, + IPSEC_DIR_FWD = 3, + IPSEC_DIR_MAX = 4, + IPSEC_DIR_INVALID = 5, +}; + +enum { + IPSEC_POLICY_DISCARD = 0, + IPSEC_POLICY_NONE = 1, + IPSEC_POLICY_IPSEC = 2, + IPSEC_POLICY_ENTRUST = 3, + IPSEC_POLICY_BYPASS = 4, +}; + +enum { + IPSEC_LEVEL_DEFAULT = 0, + IPSEC_LEVEL_USE = 1, + IPSEC_LEVEL_REQUIRE = 2, + IPSEC_LEVEL_UNIQUE = 3, +}; + +struct netns_pfkey { + struct hlist_head table; + atomic_t socks_nr; +}; + +struct pfkey_sock { + struct sock sk; + int registered; + int promisc; + struct { + uint8_t msg_version; + uint32_t msg_portid; + int (*dump)(struct pfkey_sock *); + void (*done)(struct pfkey_sock *); + union { + struct xfrm_policy_walk policy; + struct xfrm_state_walk state; + } u; + struct sk_buff *skb; + } dump; + struct mutex dump_lock; +}; + +typedef int (*pfkey_handler)(struct sock *, struct sk_buff *, const struct sadb_msg *, void * const *); + +struct netdev_notifier_changeupper_info { + struct netdev_notifier_info info; + struct net_device *upper_dev; + bool master; + bool linking; + void *upper_info; +}; + +enum { + BRIDGE_VLANDB_DUMP_UNSPEC = 0, + BRIDGE_VLANDB_DUMP_FLAGS = 1, + __BRIDGE_VLANDB_DUMP_MAX = 2, +}; + +enum { + BRIDGE_VLANDB_STATS_UNSPEC = 0, + BRIDGE_VLANDB_STATS_RX_BYTES = 1, + BRIDGE_VLANDB_STATS_RX_PACKETS = 2, + BRIDGE_VLANDB_STATS_TX_BYTES = 3, + BRIDGE_VLANDB_STATS_TX_PACKETS = 4, + BRIDGE_VLANDB_STATS_PAD = 5, + __BRIDGE_VLANDB_STATS_MAX = 6, +}; + +struct br_vlan_bind_walk_data { + u16 vid; + struct net_device *result; +}; + +struct br_vlan_link_state_walk_data { + struct net_bridge *br; +}; + +struct ebt_ip6_info { + struct in6_addr saddr; + struct in6_addr daddr; + struct in6_addr smsk; + struct in6_addr dmsk; + __u8 tclass; + __u8 protocol; + __u8 bitmask; + __u8 invflags; + union { + __u16 sport[2]; + __u8 icmpv6_type[2]; + }; + union { + __u16 dport[2]; + __u8 icmpv6_code[2]; + }; +}; + +union pkthdr { + struct { + __be16 src; + __be16 dst; + } tcpudphdr; + struct { + u8 type; + u8 code; + } icmphdr; +}; + +struct gss_auth; + +struct gss_upcall_msg { + refcount_t count; + kuid_t uid; + const char *service_name; + struct rpc_pipe_msg msg; + struct list_head list; + struct gss_auth *auth; + struct rpc_pipe *pipe; + struct rpc_wait_queue rpc_waitqueue; + wait_queue_head_t waitqueue; + struct gss_cl_ctx *ctx; + char databuf[256]; +}; + +struct gss_pipe { + struct rpc_pipe_dir_object pdo; + struct rpc_pipe *pipe; + struct rpc_clnt *clnt; + const char *name; + struct kref kref; +}; + +struct gss_auth { + struct kref kref; + struct hlist_node hash; + struct rpc_auth rpc_auth; + struct gss_api_mech *mech; + enum rpc_gss_svc service; + struct rpc_clnt *client; + struct net *net; + netns_tracker ns_tracker; + struct gss_pipe *gss_pipe[2]; + const char *target_name; +}; + +struct gss_alloc_pdo { + struct rpc_clnt *clnt; + const char *name; + const struct rpc_pipe_ops *upcall_ops; +}; + +enum { + IFLA_VLAN_UNSPEC = 0, + IFLA_VLAN_ID = 1, + IFLA_VLAN_FLAGS = 2, + IFLA_VLAN_EGRESS_QOS = 3, + IFLA_VLAN_INGRESS_QOS = 4, + IFLA_VLAN_PROTOCOL = 5, + __IFLA_VLAN_MAX = 6, +}; + +struct ifla_vlan_flags { + __u32 flags; + __u32 mask; +}; + +enum { + IFLA_VLAN_QOS_UNSPEC = 0, + IFLA_VLAN_QOS_MAPPING = 1, + __IFLA_VLAN_QOS_MAX = 2, +}; + +struct ifla_vlan_qos_mapping { + __u32 from; + __u32 to; +}; + +enum sctp_sac_state { + SCTP_COMM_UP = 0, + SCTP_COMM_LOST = 1, + SCTP_RESTART = 2, + SCTP_SHUTDOWN_COMP = 3, + SCTP_CANT_STR_ASSOC = 4, +}; + +enum { + SCTP_CID_ACTION_DISCARD = 0, + SCTP_CID_ACTION_DISCARD_ERR = 64, + SCTP_CID_ACTION_SKIP = 128, + SCTP_CID_ACTION_SKIP_ERR = 192, +}; + +enum { + SCTP_CID_ACTION_MASK = 192, +}; + +enum { + SCTP_CHUNK_FLAG_T = 1, +}; + +struct sctp_init_chunk { + struct sctp_chunkhdr chunk_hdr; + struct sctp_inithdr init_hdr; +}; + +struct sctp_initack_chunk { + struct sctp_chunkhdr chunk_hdr; + struct sctp_inithdr init_hdr; +}; + +struct sctp_unrecognized_param { + struct sctp_paramhdr param_hdr; + struct sctp_paramhdr unrecognized; +}; + +enum sctp_error { + SCTP_ERROR_NO_ERROR = 0, + SCTP_ERROR_INV_STRM = 256, + SCTP_ERROR_MISS_PARAM = 512, + SCTP_ERROR_STALE_COOKIE = 768, + SCTP_ERROR_NO_RESOURCE = 1024, + SCTP_ERROR_DNS_FAILED = 1280, + SCTP_ERROR_UNKNOWN_CHUNK = 1536, + SCTP_ERROR_INV_PARAM = 1792, + SCTP_ERROR_UNKNOWN_PARAM = 2048, + SCTP_ERROR_NO_DATA = 2304, + SCTP_ERROR_COOKIE_IN_SHUTDOWN = 2560, + SCTP_ERROR_RESTART = 2816, + SCTP_ERROR_USER_ABORT = 3072, + SCTP_ERROR_PROTO_VIOLATION = 3328, + SCTP_ERROR_NEW_ENCAP_PORT = 3584, + SCTP_ERROR_DEL_LAST_IP = 40960, + SCTP_ERROR_RSRC_LOW = 41216, + SCTP_ERROR_DEL_SRC_IP = 41472, + SCTP_ERROR_ASCONF_ACK = 41728, + SCTP_ERROR_REQ_REFUSED = 41984, + SCTP_ERROR_UNSUP_HMAC = 1281, +}; + +struct sctp_reconf_chunk { + struct sctp_chunkhdr chunk_hdr; +}; + +enum sctp_event_other { + SCTP_EVENT_NO_PENDING_TSN = 0, + SCTP_EVENT_ICMP_PROTO_UNREACH = 1, +}; + +enum sctp_event_primitive { + SCTP_PRIMITIVE_ASSOCIATE = 0, + SCTP_PRIMITIVE_SHUTDOWN = 1, + SCTP_PRIMITIVE_ABORT = 2, + SCTP_PRIMITIVE_SEND = 3, + SCTP_PRIMITIVE_REQUESTHEARTBEAT = 4, + SCTP_PRIMITIVE_ASCONF = 5, + SCTP_PRIMITIVE_RECONF = 6, +}; + +union sctp_subtype { + enum sctp_cid chunk; + enum sctp_event_timeout timeout; + enum sctp_event_other other; + enum sctp_event_primitive primitive; +}; + +enum sctp_ierror { + SCTP_IERROR_NO_ERROR = 0, + SCTP_IERROR_BASE = 1000, + SCTP_IERROR_NO_COOKIE = 1001, + SCTP_IERROR_BAD_SIG = 1002, + SCTP_IERROR_STALE_COOKIE = 1003, + SCTP_IERROR_NOMEM = 1004, + SCTP_IERROR_MALFORMED = 1005, + SCTP_IERROR_BAD_TAG = 1006, + SCTP_IERROR_BIG_GAP = 1007, + SCTP_IERROR_DUP_TSN = 1008, + SCTP_IERROR_HIGH_TSN = 1009, + SCTP_IERROR_IGNORE_TSN = 1010, + SCTP_IERROR_NO_DATA = 1011, + SCTP_IERROR_BAD_STREAM = 1012, + SCTP_IERROR_BAD_PORTS = 1013, + SCTP_IERROR_AUTH_BAD_HMAC = 1014, + SCTP_IERROR_AUTH_BAD_KEYID = 1015, + SCTP_IERROR_PROTO_VIOLATION = 1016, + SCTP_IERROR_ERROR = 1017, + SCTP_IERROR_ABORT = 1018, +}; + +enum sctp_sock_state { + SCTP_SS_CLOSED = 7, + SCTP_SS_LISTENING = 10, + SCTP_SS_ESTABLISHING = 2, + SCTP_SS_ESTABLISHED = 1, + SCTP_SS_CLOSING = 8, +}; + +enum sctp_verb { + SCTP_CMD_NOP = 0, + SCTP_CMD_NEW_ASOC = 1, + SCTP_CMD_DELETE_TCB = 2, + SCTP_CMD_NEW_STATE = 3, + SCTP_CMD_REPORT_TSN = 4, + SCTP_CMD_GEN_SACK = 5, + SCTP_CMD_PROCESS_SACK = 6, + SCTP_CMD_GEN_INIT_ACK = 7, + SCTP_CMD_PEER_INIT = 8, + SCTP_CMD_GEN_COOKIE_ECHO = 9, + SCTP_CMD_CHUNK_ULP = 10, + SCTP_CMD_EVENT_ULP = 11, + SCTP_CMD_REPLY = 12, + SCTP_CMD_SEND_PKT = 13, + SCTP_CMD_RETRAN = 14, + SCTP_CMD_ECN_CE = 15, + SCTP_CMD_ECN_ECNE = 16, + SCTP_CMD_ECN_CWR = 17, + SCTP_CMD_TIMER_START = 18, + SCTP_CMD_TIMER_START_ONCE = 19, + SCTP_CMD_TIMER_RESTART = 20, + SCTP_CMD_TIMER_STOP = 21, + SCTP_CMD_INIT_CHOOSE_TRANSPORT = 22, + SCTP_CMD_INIT_COUNTER_RESET = 23, + SCTP_CMD_INIT_COUNTER_INC = 24, + SCTP_CMD_INIT_RESTART = 25, + SCTP_CMD_COOKIEECHO_RESTART = 26, + SCTP_CMD_INIT_FAILED = 27, + SCTP_CMD_REPORT_DUP = 28, + SCTP_CMD_STRIKE = 29, + SCTP_CMD_HB_TIMERS_START = 30, + SCTP_CMD_HB_TIMER_UPDATE = 31, + SCTP_CMD_HB_TIMERS_STOP = 32, + SCTP_CMD_PROBE_TIMER_UPDATE = 33, + SCTP_CMD_TRANSPORT_HB_SENT = 34, + SCTP_CMD_TRANSPORT_IDLE = 35, + SCTP_CMD_TRANSPORT_ON = 36, + SCTP_CMD_REPORT_ERROR = 37, + SCTP_CMD_REPORT_BAD_TAG = 38, + SCTP_CMD_PROCESS_CTSN = 39, + SCTP_CMD_ASSOC_FAILED = 40, + SCTP_CMD_DISCARD_PACKET = 41, + SCTP_CMD_GEN_SHUTDOWN = 42, + SCTP_CMD_PURGE_OUTQUEUE = 43, + SCTP_CMD_SETUP_T2 = 44, + SCTP_CMD_RTO_PENDING = 45, + SCTP_CMD_PART_DELIVER = 46, + SCTP_CMD_RENEGE = 47, + SCTP_CMD_SETUP_T4 = 48, + SCTP_CMD_PROCESS_OPERR = 49, + SCTP_CMD_REPORT_FWDTSN = 50, + SCTP_CMD_PROCESS_FWDTSN = 51, + SCTP_CMD_CLEAR_INIT_TAG = 52, + SCTP_CMD_DEL_NON_PRIMARY = 53, + SCTP_CMD_T3_RTX_TIMERS_STOP = 54, + SCTP_CMD_FORCE_PRIM_RETRAN = 55, + SCTP_CMD_SET_SK_ERR = 56, + SCTP_CMD_ASSOC_CHANGE = 57, + SCTP_CMD_ADAPTATION_IND = 58, + SCTP_CMD_PEER_NO_AUTH = 59, + SCTP_CMD_ASSOC_SHKEY = 60, + SCTP_CMD_T1_RETRAN = 61, + SCTP_CMD_UPDATE_INITTAG = 62, + SCTP_CMD_SEND_MSG = 63, + SCTP_CMD_PURGE_ASCONF_QUEUE = 64, + SCTP_CMD_SET_ASOC = 65, + SCTP_CMD_LAST = 66, +}; + +union sctp_arg { + void *zero_all; + __s32 i32; + __u32 u32; + __be32 be32; + __u16 u16; + __u8 u8; + int error; + __be16 err; + enum sctp_state state; + enum sctp_event_timeout to; + struct sctp_chunk *chunk; + struct sctp_association *asoc; + struct sctp_transport *transport; + struct sctp_bind_addr *bp; + struct sctp_init_chunk *init; + struct sctp_ulpevent *ulpevent; + struct sctp_packet *packet; + struct sctp_sackhdr *sackh; + struct sctp_datamsg *msg; +}; + +struct sctp_cmd { + union sctp_arg obj; + enum sctp_verb verb; +}; + +struct sctp_cmd_seq { + struct sctp_cmd cmds[20]; + struct sctp_cmd *last_used_slot; + struct sctp_cmd *next_cmd; +}; + +enum sctp_disposition { + SCTP_DISPOSITION_DISCARD = 0, + SCTP_DISPOSITION_CONSUME = 1, + SCTP_DISPOSITION_NOMEM = 2, + SCTP_DISPOSITION_DELETE_TCB = 3, + SCTP_DISPOSITION_ABORT = 4, + SCTP_DISPOSITION_VIOLATION = 5, + SCTP_DISPOSITION_NOT_IMPL = 6, + SCTP_DISPOSITION_ERROR = 7, + SCTP_DISPOSITION_BUG = 8, +}; + +struct trace_event_raw_sctp_probe_path { + struct trace_entry ent; + __u64 asoc; + __u32 primary; + __u8 ipaddr[28]; + __u32 state; + __u32 cwnd; + __u32 ssthresh; + __u32 flight_size; + __u32 partial_bytes_acked; + __u32 pathmtu; + char __data[0]; +}; + +struct trace_event_raw_sctp_probe { + struct trace_entry ent; + __u64 asoc; + __u32 mark; + __u16 bind_port; + __u16 peer_port; + __u32 pathmtu; + __u32 rwnd; + __u16 unack_data; + char __data[0]; +}; + +struct trace_event_data_offsets_sctp_probe_path {}; + +struct trace_event_data_offsets_sctp_probe {}; + +typedef void (*btf_trace_sctp_probe_path)(void *, struct sctp_transport *, const struct sctp_association *); + +typedef void (*btf_trace_sctp_probe)(void *, const struct sctp_endpoint *, const struct sctp_association *, struct sctp_chunk *); + +enum { + SCTP_PARTIAL_DELIVERY_ABORTED = 0, +}; + +enum { + SCTP_DATA_FRAG_MASK = 3, +}; + +struct sctp_fwdtsn_skip { + __be16 stream; + __be16 ssn; +}; + +struct sctp_ifwdtsn_skip { + __be16 stream; + __u8 reserved; + __u8 flags; + __be32 mid; +}; + +union tcp_word_hdr { + struct tcphdr hdr; + __be32 words[5]; +}; + +struct nsh_md1_ctx { + __be32 context[4]; +}; + +struct nsh_md2_tlv { + __be16 md_class; + u8 type; + u8 length; + u8 md_value[0]; +}; + +struct nshhdr { + __be16 ver_flags_ttl_len; + u8 mdtype; + u8 np; + __be32 path_hdr; + union { + struct nsh_md1_ctx md1; + struct nsh_md2_tlv md2; + }; +}; + +enum ovs_key_attr { + OVS_KEY_ATTR_UNSPEC = 0, + OVS_KEY_ATTR_ENCAP = 1, + OVS_KEY_ATTR_PRIORITY = 2, + OVS_KEY_ATTR_IN_PORT = 3, + OVS_KEY_ATTR_ETHERNET = 4, + OVS_KEY_ATTR_VLAN = 5, + OVS_KEY_ATTR_ETHERTYPE = 6, + OVS_KEY_ATTR_IPV4 = 7, + OVS_KEY_ATTR_IPV6 = 8, + OVS_KEY_ATTR_TCP = 9, + OVS_KEY_ATTR_UDP = 10, + OVS_KEY_ATTR_ICMP = 11, + OVS_KEY_ATTR_ICMPV6 = 12, + OVS_KEY_ATTR_ARP = 13, + OVS_KEY_ATTR_ND = 14, + OVS_KEY_ATTR_SKB_MARK = 15, + OVS_KEY_ATTR_TUNNEL = 16, + OVS_KEY_ATTR_SCTP = 17, + OVS_KEY_ATTR_TCP_FLAGS = 18, + OVS_KEY_ATTR_DP_HASH = 19, + OVS_KEY_ATTR_RECIRC_ID = 20, + OVS_KEY_ATTR_MPLS = 21, + OVS_KEY_ATTR_CT_STATE = 22, + OVS_KEY_ATTR_CT_ZONE = 23, + OVS_KEY_ATTR_CT_MARK = 24, + OVS_KEY_ATTR_CT_LABELS = 25, + OVS_KEY_ATTR_CT_ORIG_TUPLE_IPV4 = 26, + OVS_KEY_ATTR_CT_ORIG_TUPLE_IPV6 = 27, + OVS_KEY_ATTR_NSH = 28, + OVS_KEY_ATTR_PACKET_TYPE = 29, + OVS_KEY_ATTR_ND_EXTENSIONS = 30, + OVS_KEY_ATTR_TUNNEL_INFO = 31, + OVS_KEY_ATTR_IPV6_EXTHDRS = 32, + __OVS_KEY_ATTR_MAX = 33, +}; + +enum ovs_frag_type { + OVS_FRAG_TYPE_NONE = 0, + OVS_FRAG_TYPE_FIRST = 1, + OVS_FRAG_TYPE_LATER = 2, + __OVS_FRAG_TYPE_MAX = 3, +}; + +enum sw_flow_mac_proto { + MAC_PROTO_NONE = 0, + MAC_PROTO_ETHERNET = 1, +}; + +enum ofp12_ipv6exthdr_flags { + OFPIEH12_NONEXT = 1, + OFPIEH12_ESP = 2, + OFPIEH12_AUTH = 4, + OFPIEH12_DEST = 8, + OFPIEH12_FRAG = 16, + OFPIEH12_ROUTER = 32, + OFPIEH12_HOP = 64, + OFPIEH12_UNREP = 128, + OFPIEH12_UNSEQ = 256, +}; + +struct sw_flow_id { + u32 ufid_len; + union { + u32 ufid[4]; + struct sw_flow_key *unmasked_key; + }; +}; + +struct sw_flow_actions { + struct callback_head rcu; + size_t orig_len; + u32 actions_len; + struct nlattr actions[0]; +}; + +struct sw_flow_stats { + u64 packet_count; + u64 byte_count; + long unsigned int used; + spinlock_t lock; + __be16 tcp_flags; +}; + +struct sw_flow { + struct callback_head rcu; + struct { + struct hlist_node node[2]; + u32 hash; + } flow_table; + struct { + struct hlist_node node[2]; + u32 hash; + } ufid_table; + int stats_last_writer; + struct sw_flow_key key; + struct sw_flow_id id; + struct cpumask *cpu_used_mask; + struct sw_flow_mask *mask; + struct sw_flow_actions *sf_acts; + struct sw_flow_stats *stats[0]; +}; + +struct arp_eth_header { + __be16 ar_hrd; + __be16 ar_pro; + unsigned char ar_hln; + unsigned char ar_pln; + __be16 ar_op; + unsigned char ar_sha[6]; + unsigned char ar_sip[4]; + unsigned char ar_tha[6]; + unsigned char ar_tip[4]; +}; + +struct ovs_skb_cb { + struct vport *input_vport; + u16 mru; + u16 acts_origlen; + u32 cutlen; + u32 probability; +}; + +struct llc_snap_hdr { + u8 dsap; + u8 ssap; + u8 ctrl; + u8 oui[3]; + __be16 ethertype; +}; + +struct vsock_tap { + struct net_device *dev; + struct module *module; + struct list_head list; +}; + +enum { + HANDSHAKE_CMD_READY = 1, + HANDSHAKE_CMD_ACCEPT = 2, + HANDSHAKE_CMD_DONE = 3, + __HANDSHAKE_CMD_MAX = 4, + HANDSHAKE_CMD_MAX = 3, +}; + +enum { + HANDSHAKE_NLGRP_NONE = 0, + HANDSHAKE_NLGRP_TLSHD = 1, +}; + +enum vec_type { + ARM64_VEC_SVE = 0, + ARM64_VEC_SME = 1, + ARM64_VEC_MAX = 2, +}; + +struct cpu_fp_state { + struct user_fpsimd_state *st; + void *sve_state; + void *sme_state; + u64 *svcr; + u64 *fpmr; + unsigned int sve_vl; + unsigned int sme_vl; + enum fp_type *fp_type; + enum fp_type to_save; +}; + +struct vl_info { + enum vec_type type; + const char *name; + int min_vl; + int max_vl; + int max_virtualisable_vl; + long unsigned int vq_map[8]; + long unsigned int vq_partial_map[8]; +}; + +struct vl_config { + int __default_vl; +}; + +enum aarch64_insn_branch_type { + AARCH64_INSN_BRANCH_NOLINK = 0, + AARCH64_INSN_BRANCH_LINK = 1, + AARCH64_INSN_BRANCH_RETURN = 2, + AARCH64_INSN_BRANCH_COMP_ZERO = 3, + AARCH64_INSN_BRANCH_COMP_NONZERO = 4, +}; + +enum jump_label_type { + JUMP_LABEL_NOP = 0, + JUMP_LABEL_JMP = 1, +}; + +struct crypto_aes_xts_ctx { + struct crypto_aes_ctx key1; + long: 0; + struct crypto_aes_ctx key2; + long: 0; +}; + +struct crypto_aes_essiv_cbc_ctx { + struct crypto_aes_ctx key1; + long: 0; + struct crypto_aes_ctx key2; + struct crypto_shash *hash; +}; + +struct mac_tfm_ctx { + struct crypto_aes_ctx key; + long: 0; + u8 consts[0]; +}; + +struct mac_desc_ctx { + unsigned int len; + u8 dg[16]; +}; + +struct membuf { + void *p; + size_t left; +}; + +struct user_regset; + +typedef int user_regset_active_fn(struct task_struct *, const struct user_regset *); + +typedef int user_regset_get2_fn(struct task_struct *, const struct user_regset *, struct membuf); + +typedef int user_regset_set_fn(struct task_struct *, const struct user_regset *, unsigned int, unsigned int, const void *, const void *); + +typedef int user_regset_writeback_fn(struct task_struct *, const struct user_regset *, int); + +struct user_regset { + user_regset_get2_fn *regset_get; + user_regset_set_fn *set; + user_regset_active_fn *active; + user_regset_writeback_fn *writeback; + unsigned int n; + unsigned int size; + unsigned int align; + unsigned int bias; + unsigned int core_note_type; +}; + +struct user_regset_view { + const char *name; + const struct user_regset *regsets; + unsigned int n; + u32 e_flags; + u16 e_machine; + u8 ei_osabi; +}; + +struct swait_queue { + struct task_struct *task; + struct list_head task_list; +}; + +typedef const struct cpumask * (*sched_domain_mask_f)(int); + +typedef int (*sched_domain_flags_f)(void); + +struct sd_data { + struct sched_domain **sd; + struct sched_domain_shared **sds; + struct sched_group **sg; + struct sched_group_capacity **sgc; +}; + +struct sched_domain_topology_level { + sched_domain_mask_f mask; + sched_domain_flags_f sd_flags; + int flags; + int numa_level; + struct sd_data data; +}; + +enum { + MEMBARRIER_STATE_PRIVATE_EXPEDITED_READY = 1, + MEMBARRIER_STATE_PRIVATE_EXPEDITED = 2, + MEMBARRIER_STATE_GLOBAL_EXPEDITED_READY = 4, + MEMBARRIER_STATE_GLOBAL_EXPEDITED = 8, + MEMBARRIER_STATE_PRIVATE_EXPEDITED_SYNC_CORE_READY = 16, + MEMBARRIER_STATE_PRIVATE_EXPEDITED_SYNC_CORE = 32, + MEMBARRIER_STATE_PRIVATE_EXPEDITED_RSEQ_READY = 64, + MEMBARRIER_STATE_PRIVATE_EXPEDITED_RSEQ = 128, +}; + +enum { + MEMBARRIER_FLAG_SYNC_CORE = 1, + MEMBARRIER_FLAG_RSEQ = 2, +}; + +enum membarrier_cmd { + MEMBARRIER_CMD_QUERY = 0, + MEMBARRIER_CMD_GLOBAL = 1, + MEMBARRIER_CMD_GLOBAL_EXPEDITED = 2, + MEMBARRIER_CMD_REGISTER_GLOBAL_EXPEDITED = 4, + MEMBARRIER_CMD_PRIVATE_EXPEDITED = 8, + MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED = 16, + MEMBARRIER_CMD_PRIVATE_EXPEDITED_SYNC_CORE = 32, + MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_SYNC_CORE = 64, + MEMBARRIER_CMD_PRIVATE_EXPEDITED_RSEQ = 128, + MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_RSEQ = 256, + MEMBARRIER_CMD_GET_REGISTRATIONS = 512, + MEMBARRIER_CMD_SHARED = 1, +}; + +enum membarrier_cmd_flag { + MEMBARRIER_CMD_FLAG_CPU = 1, +}; + +struct psi_window { + u64 size; + u64 start_time; + u64 start_value; + u64 prev_growth; +}; + +struct psi_trigger { + enum psi_states state; + u64 threshold; + struct list_head node; + struct psi_group *group; + wait_queue_head_t event_wait; + struct kernfs_open_file *of; + int event; + struct psi_window win; + u64 last_event_time; + bool pending_event; + enum psi_aggregators aggregator; +}; + +typedef struct { + struct rq *lock; + struct rq_flags rf; +} class_rq_lock_irq_t; + +enum cpuacct_stat_index { + CPUACCT_STAT_USER = 0, + CPUACCT_STAT_SYSTEM = 1, + CPUACCT_STAT_NSTATS = 2, +}; + +struct cpuacct { + struct cgroup_subsys_state css; + u64 *cpuusage; + struct kernel_cpustat *cpustat; +}; + +struct s_data { + struct sched_domain **sd; + struct root_domain *rd; +}; + +enum s_alloc { + sa_rootdomain = 0, + sa_sd = 1, + sa_sd_storage = 2, + sa_none = 3, +}; + +enum hk_flags { + HK_FLAG_TIMER = 1, + HK_FLAG_RCU = 2, + HK_FLAG_MISC = 4, + HK_FLAG_SCHED = 8, + HK_FLAG_TICK = 16, + HK_FLAG_DOMAIN = 32, + HK_FLAG_WQ = 64, + HK_FLAG_MANAGED_IRQ = 128, + HK_FLAG_KTHREAD = 256, +}; + +struct housekeeping { + struct cpumask cpumasks[9]; + long unsigned int flags; +}; + +typedef __kernel_long_t __kernel_suseconds_t; + +typedef __kernel_suseconds_t suseconds_t; + +struct __kernel_itimerspec { + struct __kernel_timespec it_interval; + struct __kernel_timespec it_value; +}; + +struct old_itimerspec32 { + struct old_timespec32 it_interval; + struct old_timespec32 it_value; +}; + +struct old_timex32 { + u32 modes; + s32 offset; + s32 freq; + s32 maxerror; + s32 esterror; + s32 status; + s32 constant; + s32 precision; + s32 tolerance; + struct old_timeval32 time; + s32 tick; + s32 ppsfreq; + s32 jitter; + s32 shift; + s32 stabil; + s32 jitcnt; + s32 calcnt; + s32 errcnt; + s32 stbcnt; + s32 tai; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct rt_waiter_node { + struct rb_node entry; + int prio; + u64 deadline; +}; + +struct rt_mutex_waiter { + struct rt_waiter_node tree; + struct rt_waiter_node pi_tree; + struct task_struct *task; + struct rt_mutex_base *lock; + unsigned int wake_state; + struct ww_acquire_ctx *ww_ctx; +}; + +enum { + FUTEX_STATE_OK = 0, + FUTEX_STATE_EXITING = 1, + FUTEX_STATE_DEAD = 2, +}; + +struct futex_hash_bucket { + atomic_t waiters; + spinlock_t lock; + struct plist_head chain; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum futex_access { + FUTEX_READ = 0, + FUTEX_WRITE = 1, +}; + +enum rdmacg_resource_type { + RDMACG_RESOURCE_HCA_HANDLE = 0, + RDMACG_RESOURCE_HCA_OBJECT = 1, + RDMACG_RESOURCE_MAX = 2, +}; + +struct rdma_cgroup { + struct cgroup_subsys_state css; + struct list_head rpools; +}; + +struct rdmacg_device { + struct list_head dev_node; + struct list_head rpools; + char *name; +}; + +enum rdmacg_file_type { + RDMACG_RESOURCE_TYPE_MAX = 0, + RDMACG_RESOURCE_TYPE_STAT = 1, +}; + +struct rdmacg_resource { + int max; + int usage; +}; + +struct rdmacg_resource_pool { + struct rdmacg_device *device; + struct rdmacg_resource resources[2]; + struct list_head cg_node; + struct list_head dev_node; + u64 usage_sum; + int num_max_cnt; +}; + +struct audit_tree { + refcount_t count; + int goner; + struct audit_chunk *root; + struct list_head chunks; + struct list_head rules; + struct list_head list; + struct list_head same_root; + struct callback_head head; + char pathname[0]; +}; + +struct audit_node { + struct list_head list; + struct audit_tree *owner; + unsigned int index; +}; + +struct audit_chunk { + struct list_head hash; + long unsigned int key; + struct fsnotify_mark *mark; + struct list_head trees; + int count; + atomic_long_t refs; + struct callback_head head; + struct audit_node owners[0]; +}; + +struct audit_tree_mark { + struct fsnotify_mark mark; + struct audit_chunk *chunk; +}; + +enum { + HASH_SIZE = 128, +}; + +struct saved_cmdlines_buffer { + unsigned int map_pid_to_cmdline[32769]; + unsigned int *map_cmdline_to_pid; + unsigned int cmdline_num; + int cmdline_idx; + char saved_cmdlines[0]; +}; + +enum error_detector { + ERROR_DETECTOR_KFENCE = 0, + ERROR_DETECTOR_KASAN = 1, + ERROR_DETECTOR_WARN = 2, +}; + +struct trace_event_raw_error_report_template { + struct trace_entry ent; + enum error_detector error_detector; + long unsigned int id; + char __data[0]; +}; + +struct trace_event_data_offsets_error_report_template {}; + +typedef void (*btf_trace_error_report_end)(void *, enum error_detector, long unsigned int); + +struct bpf_lru_node { + struct list_head list; + u16 cpu; + u8 type; + u8 ref; +}; + +struct bpf_lru_list { + struct list_head lists[3]; + unsigned int counts[2]; + struct list_head *next_inactive_rotation; + raw_spinlock_t lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct bpf_lru_locallist { + struct list_head lists[2]; + u16 next_steal; + raw_spinlock_t lock; +}; + +struct bpf_common_lru { + struct bpf_lru_list lru_list; + struct bpf_lru_locallist *local_list; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +typedef bool (*del_from_htab_func)(void *, struct bpf_lru_node *); + +struct bpf_lru { + union { + struct bpf_common_lru common_lru; + struct bpf_lru_list *percpu_lru; + }; + del_from_htab_func del_from_htab; + void *del_arg; + unsigned int hash_offset; + unsigned int target_free; + unsigned int nr_scans; + bool percpu; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct bucket { + struct hlist_nulls_head head; + raw_spinlock_t raw_lock; +}; + +struct htab_elem; + +struct bpf_htab { + struct bpf_map map; + struct bpf_mem_alloc ma; + struct bpf_mem_alloc pcpu_ma; + struct bucket *buckets; + void *elems; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + union { + struct pcpu_freelist freelist; + struct bpf_lru lru; + }; + struct htab_elem **extra_elems; + struct percpu_counter pcount; + atomic_t count; + bool use_percpu_counter; + u32 n_buckets; + u32 elem_size; + u32 hashrnd; + struct lock_class_key lockdep_key; + int *map_locked[8]; + long: 64; +}; + +struct htab_elem { + union { + struct hlist_nulls_node hash_node; + struct { + void *padding; + union { + struct pcpu_freelist_node fnode; + struct htab_elem *batch_flink; + }; + }; + }; + union { + void *ptr_to_pptr; + struct bpf_lru_node lru_node; + }; + u32 hash; + long: 0; + char key[0]; +}; + +struct bpf_iter_seq_hash_map_info { + struct bpf_map *map; + struct bpf_htab *htab; + void *percpu_value_buf; + u32 bucket_id; + u32 skip_elems; +}; + +enum bpf_cmd { + BPF_MAP_CREATE = 0, + BPF_MAP_LOOKUP_ELEM = 1, + BPF_MAP_UPDATE_ELEM = 2, + BPF_MAP_DELETE_ELEM = 3, + BPF_MAP_GET_NEXT_KEY = 4, + BPF_PROG_LOAD = 5, + BPF_OBJ_PIN = 6, + BPF_OBJ_GET = 7, + BPF_PROG_ATTACH = 8, + BPF_PROG_DETACH = 9, + BPF_PROG_TEST_RUN = 10, + BPF_PROG_RUN = 10, + BPF_PROG_GET_NEXT_ID = 11, + BPF_MAP_GET_NEXT_ID = 12, + BPF_PROG_GET_FD_BY_ID = 13, + BPF_MAP_GET_FD_BY_ID = 14, + BPF_OBJ_GET_INFO_BY_FD = 15, + BPF_PROG_QUERY = 16, + BPF_RAW_TRACEPOINT_OPEN = 17, + BPF_BTF_LOAD = 18, + BPF_BTF_GET_FD_BY_ID = 19, + BPF_TASK_FD_QUERY = 20, + BPF_MAP_LOOKUP_AND_DELETE_ELEM = 21, + BPF_MAP_FREEZE = 22, + BPF_BTF_GET_NEXT_ID = 23, + BPF_MAP_LOOKUP_BATCH = 24, + BPF_MAP_LOOKUP_AND_DELETE_BATCH = 25, + BPF_MAP_UPDATE_BATCH = 26, + BPF_MAP_DELETE_BATCH = 27, + BPF_LINK_CREATE = 28, + BPF_LINK_UPDATE = 29, + BPF_LINK_GET_FD_BY_ID = 30, + BPF_LINK_GET_NEXT_ID = 31, + BPF_ENABLE_STATS = 32, + BPF_ITER_CREATE = 33, + BPF_LINK_DETACH = 34, + BPF_PROG_BIND_MAP = 35, + BPF_TOKEN_CREATE = 36, + __MAX_BPF_CMD = 37, +}; + +enum { + BPF_F_BPRM_SECUREEXEC = 1, +}; + +struct sembuf { + short unsigned int sem_num; + short int sem_op; + short int sem_flg; +}; + +struct lsm_ctx { + __u64 id; + __u64 flags; + __u64 len; + __u64 ctx_len; + __u8 ctx[0]; +}; + +enum lsm_integrity_type { + LSM_INT_DMVERITY_SIG_VALID = 0, + LSM_INT_DMVERITY_ROOTHASH = 1, + LSM_INT_FSVERITY_BUILTINSIG_VALID = 2, +}; + +enum kernel_load_data_id { + LOADING_UNKNOWN = 0, + LOADING_FIRMWARE = 1, + LOADING_MODULE = 2, + LOADING_KEXEC_IMAGE = 3, + LOADING_KEXEC_INITRAMFS = 4, + LOADING_POLICY = 5, + LOADING_X509_CERTIFICATE = 6, + LOADING_MAX_ID = 7, +}; + +typedef u64 (*btf_bpf_bprm_opts_set)(struct linux_binprm *, u64); + +typedef u64 (*btf_bpf_ima_inode_hash)(struct inode *, void *, u32); + +typedef u64 (*btf_bpf_ima_file_hash)(struct file *, void *, u32); + +typedef u64 (*btf_bpf_get_attach_cookie)(void *); + +enum pgt_entry { + NORMAL_PMD = 0, + HPAGE_PMD = 1, + NORMAL_PUD = 2, + HPAGE_PUD = 3, +}; + +struct swap_cgroup_ctrl { + struct page **map; + long unsigned int length; + spinlock_t lock; +}; + +struct swap_cgroup { + short unsigned int id; +}; + +struct page_reporting_dev_info { + int (*report)(struct page_reporting_dev_info *, struct scatterlist *, unsigned int); + struct delayed_work work; + atomic_t state; + unsigned int order; +}; + +enum { + PAGE_REPORTING_IDLE = 0, + PAGE_REPORTING_REQUESTED = 1, + PAGE_REPORTING_ACTIVE = 2, +}; + +struct f_owner_ex { + int type; + __kernel_pid_t pid; +}; + +typedef struct fd class_fd_raw_t; + +struct fd_range { + unsigned int from; + unsigned int to; +}; + +struct fanotify_event_metadata { + __u32 event_len; + __u8 vers; + __u8 reserved; + __u16 metadata_len; + __u64 mask; + __s32 fd; + __s32 pid; +}; + +struct fanotify_event_info_header { + __u8 info_type; + __u8 pad; + __u16 len; +}; + +struct fanotify_event_info_fid { + struct fanotify_event_info_header hdr; + __kernel_fsid_t fsid; + unsigned char handle[0]; +}; + +struct fanotify_event_info_pidfd { + struct fanotify_event_info_header hdr; + __s32 pidfd; +}; + +struct fanotify_event_info_error { + struct fanotify_event_info_header hdr; + __s32 error; + __u32 error_count; +}; + +struct fanotify_response { + __s32 fd; + __u32 response; +}; + +struct file_handle { + __u32 handle_bytes; + int handle_type; + unsigned char f_handle[0]; +}; + +enum { + FAN_EVENT_INIT = 0, + FAN_EVENT_REPORTED = 1, + FAN_EVENT_ANSWERED = 2, + FAN_EVENT_CANCELED = 3, +}; + +struct fanotify_fh { + u8 type; + u8 len; + u8 flags; + u8 pad; + unsigned char buf[0]; +}; + +struct fanotify_info { + u8 dir_fh_totlen; + u8 dir2_fh_totlen; + u8 file_fh_totlen; + u8 name_len; + u8 name2_len; + u8 pad[3]; + unsigned char buf[0]; +}; + +enum fanotify_event_type { + FANOTIFY_EVENT_TYPE_FID = 0, + FANOTIFY_EVENT_TYPE_FID_NAME = 1, + FANOTIFY_EVENT_TYPE_PATH = 2, + FANOTIFY_EVENT_TYPE_PATH_PERM = 3, + FANOTIFY_EVENT_TYPE_OVERFLOW = 4, + FANOTIFY_EVENT_TYPE_FS_ERROR = 5, + __FANOTIFY_EVENT_TYPE_NUM = 6, +}; + +struct fanotify_event { + struct fsnotify_event fse; + struct hlist_node merge_list; + u32 mask; + struct { + unsigned int type: 3; + unsigned int hash: 29; + }; + struct pid *pid; +}; + +struct fanotify_fid_event { + struct fanotify_event fae; + __kernel_fsid_t fsid; + struct { + struct fanotify_fh object_fh; + unsigned char _inline_fh_buf[12]; + }; +}; + +struct fanotify_name_event { + struct fanotify_event fae; + __kernel_fsid_t fsid; + struct fanotify_info info; +}; + +struct fanotify_error_event { + struct fanotify_event fae; + s32 error; + u32 err_count; + __kernel_fsid_t fsid; + struct { + struct fanotify_fh object_fh; + unsigned char _inline_fh_buf[128]; + }; +}; + +struct fanotify_path_event { + struct fanotify_event fae; + struct path path; +}; + +struct fanotify_perm_event { + struct fanotify_event fae; + struct path path; + u32 response; + short unsigned int state; + int fd; + union { + struct fanotify_response_info_header hdr; + struct fanotify_response_info_audit_rule audit_rule; + }; +}; + +struct fanotify_mark { + struct fsnotify_mark fsn_mark; + __kernel_fsid_t fsid; +}; + +struct fan_fsid { + struct super_block *sb; + __kernel_fsid_t id; + bool weak; +}; + +struct nfs4_ssc_client_ops; + +struct nfs_ssc_client_ops_tbl { + const struct nfs4_ssc_client_ops *ssc_nfs4_ops; + const struct nfs_ssc_client_ops *ssc_nfs_ops; +}; + +struct nfs4_ssc_client_ops { + struct file * (*sco_open)(struct vfsmount *, struct nfs_fh *, nfs4_stateid *); + void (*sco_close)(struct file *); +}; + +struct elf64_phdr { + Elf64_Word p_type; + Elf64_Word p_flags; + Elf64_Off p_offset; + Elf64_Addr p_vaddr; + Elf64_Addr p_paddr; + Elf64_Xword p_filesz; + Elf64_Xword p_memsz; + Elf64_Xword p_align; +}; + +struct elf64_note { + Elf64_Word n_namesz; + Elf64_Word n_descsz; + Elf64_Word n_type; +}; + +typedef long unsigned int elf_greg_t; + +typedef elf_greg_t elf_gregset_t[34]; + +struct elf_siginfo { + int si_signo; + int si_code; + int si_errno; +}; + +struct elf_prstatus_common { + struct elf_siginfo pr_info; + short int pr_cursig; + long unsigned int pr_sigpend; + long unsigned int pr_sighold; + pid_t pr_pid; + pid_t pr_ppid; + pid_t pr_pgrp; + pid_t pr_sid; + struct __kernel_old_timeval pr_utime; + struct __kernel_old_timeval pr_stime; + struct __kernel_old_timeval pr_cutime; + struct __kernel_old_timeval pr_cstime; +}; + +struct elf_prstatus { + struct elf_prstatus_common common; + elf_gregset_t pr_reg; + int pr_fpvalid; +}; + +struct elf_prpsinfo { + char pr_state; + char pr_sname; + char pr_zomb; + char pr_nice; + long unsigned int pr_flag; + __kernel_uid_t pr_uid; + __kernel_gid_t pr_gid; + pid_t pr_pid; + pid_t pr_ppid; + pid_t pr_pgrp; + pid_t pr_sid; + char pr_fname[16]; + char pr_psargs[80]; +}; + +enum kcore_type { + KCORE_TEXT = 0, + KCORE_VMALLOC = 1, + KCORE_RAM = 2, + KCORE_VMEMMAP = 3, + KCORE_USER = 4, +}; + +struct kcore_list { + struct list_head list; + long unsigned int addr; + size_t size; + int type; +}; + +struct configfs_buffer { + size_t count; + loff_t pos; + char *page; + struct configfs_item_operations *ops; + struct mutex mutex; + int needs_read_fill; + bool read_in_progress; + bool write_in_progress; + char *bin_buffer; + int bin_buffer_size; + int cb_max_size; + struct config_item *item; + struct module *owner; + union { + struct configfs_attribute *attr; + struct configfs_bin_attribute *bin_attr; + }; +}; + +typedef short unsigned int __kernel_uid16_t; + +typedef short unsigned int __kernel_gid16_t; + +typedef __kernel_uid16_t uid16_t; + +typedef __kernel_gid16_t gid16_t; + +struct ext4_io_end_vec { + struct list_head list; + loff_t offset; + ssize_t size; +}; + +struct ext4_io_end { + struct list_head list; + handle_t *handle; + struct inode *inode; + struct bio *bio; + unsigned int flag; + refcount_t count; + struct list_head list_vec; +}; + +typedef struct ext4_io_end ext4_io_end_t; + +struct ext4_io_submit { + struct writeback_control *io_wbc; + struct bio *io_bio; + ext4_io_end_t *io_end; + sector_t io_next_block; +}; + +struct ext4_xattr_ibody_header { + __le32 h_magic; +}; + +struct ext4_xattr_inode_array { + unsigned int count; + struct inode *inodes[0]; +}; + +struct mpage_da_data { + struct inode *inode; + struct writeback_control *wbc; + unsigned int can_map: 1; + long unsigned int first_page; + long unsigned int next_page; + long unsigned int last_page; + struct ext4_map_blocks map; + struct ext4_io_submit io_submit; + unsigned int do_map: 1; + unsigned int scanned_until_end: 1; + unsigned int journalled_more_data: 1; +}; + +typedef struct { + __le16 e_tag; + __le16 e_perm; + __le32 e_id; +} ext4_acl_entry; + +typedef struct { + __le32 a_version; +} ext4_acl_header; + +struct ramfs_mount_opts { + umode_t mode; +}; + +struct ramfs_fs_info { + struct ramfs_mount_opts mount_opts; +}; + +enum ramfs_param { + Opt_mode___5 = 0, +}; + +struct iso_inode_info { + long unsigned int i_iget5_block; + long unsigned int i_iget5_offset; + unsigned int i_first_extent; + unsigned char i_file_format; + unsigned char i_format_parm[3]; + long unsigned int i_next_section_block; + long unsigned int i_next_section_offset; + off_t i_section_size; + struct inode vfs_inode; +}; + +struct nfs_page_iter_page { + const struct nfs_page *req; + size_t count; +}; + +struct nfs4_setclientid_res { + u64 clientid; + nfs4_verifier confirm; +}; + +enum { + NFS_OWNER_RECLAIM_REBOOT = 0, + NFS_OWNER_RECLAIM_NOGRACE = 1, +}; + +struct trace_event_raw_smb3_rw_err_class { + struct trace_entry ent; + unsigned int rreq_debug_id; + unsigned int rreq_debug_index; + unsigned int xid; + __u64 fid; + __u32 tid; + __u64 sesid; + __u64 offset; + __u32 len; + int rc; + char __data[0]; +}; + +struct trace_event_raw_smb3_other_err_class { + struct trace_entry ent; + unsigned int xid; + __u64 fid; + __u32 tid; + __u64 sesid; + __u64 offset; + __u32 len; + int rc; + char __data[0]; +}; + +struct trace_event_raw_smb3_copy_range_err_class { + struct trace_entry ent; + unsigned int xid; + __u64 src_fid; + __u64 target_fid; + __u32 tid; + __u64 sesid; + __u64 src_offset; + __u64 target_offset; + __u32 len; + int rc; + char __data[0]; +}; + +struct trace_event_raw_smb3_copy_range_done_class { + struct trace_entry ent; + unsigned int xid; + __u64 src_fid; + __u64 target_fid; + __u32 tid; + __u64 sesid; + __u64 src_offset; + __u64 target_offset; + __u32 len; + char __data[0]; +}; + +struct trace_event_raw_smb3_rw_done_class { + struct trace_entry ent; + unsigned int rreq_debug_id; + unsigned int rreq_debug_index; + unsigned int xid; + __u64 fid; + __u32 tid; + __u64 sesid; + __u64 offset; + __u32 len; + char __data[0]; +}; + +struct trace_event_raw_smb3_other_done_class { + struct trace_entry ent; + unsigned int xid; + __u64 fid; + __u32 tid; + __u64 sesid; + __u64 offset; + __u32 len; + char __data[0]; +}; + +struct trace_event_raw_smb3_eof_class { + struct trace_entry ent; + unsigned int xid; + __u64 fid; + __u32 tid; + __u64 sesid; + __u64 offset; + char __data[0]; +}; + +struct trace_event_raw_smb3_fd_class { + struct trace_entry ent; + unsigned int xid; + __u64 fid; + __u32 tid; + __u64 sesid; + char __data[0]; +}; + +struct trace_event_raw_smb3_fd_err_class { + struct trace_entry ent; + unsigned int xid; + __u64 fid; + __u32 tid; + __u64 sesid; + int rc; + char __data[0]; +}; + +struct trace_event_raw_smb3_inf_enter_class { + struct trace_entry ent; + unsigned int xid; + __u64 fid; + __u32 tid; + __u64 sesid; + __u8 infclass; + __u32 type; + char __data[0]; +}; + +struct trace_event_raw_smb3_inf_err_class { + struct trace_entry ent; + unsigned int xid; + __u64 fid; + __u32 tid; + __u64 sesid; + __u8 infclass; + __u32 type; + int rc; + char __data[0]; +}; + +struct trace_event_raw_smb3_inf_compound_enter_class { + struct trace_entry ent; + unsigned int xid; + __u32 tid; + __u64 sesid; + u32 __data_loc_path; + char __data[0]; +}; + +struct trace_event_raw_smb3_inf_compound_done_class { + struct trace_entry ent; + unsigned int xid; + __u32 tid; + __u64 sesid; + char __data[0]; +}; + +struct trace_event_raw_smb3_inf_compound_err_class { + struct trace_entry ent; + unsigned int xid; + __u32 tid; + __u64 sesid; + int rc; + char __data[0]; +}; + +struct trace_event_raw_smb3_cmd_err_class { + struct trace_entry ent; + __u32 tid; + __u64 sesid; + __u16 cmd; + __u64 mid; + __u32 status; + int rc; + char __data[0]; +}; + +struct trace_event_raw_smb3_cmd_done_class { + struct trace_entry ent; + __u32 tid; + __u64 sesid; + __u16 cmd; + __u64 mid; + char __data[0]; +}; + +struct trace_event_raw_smb3_mid_class { + struct trace_entry ent; + __u16 cmd; + __u64 mid; + __u32 pid; + long unsigned int when_sent; + long unsigned int when_received; + char __data[0]; +}; + +struct trace_event_raw_smb3_exit_err_class { + struct trace_entry ent; + unsigned int xid; + u32 __data_loc_func_name; + int rc; + char __data[0]; +}; + +struct trace_event_raw_smb3_sync_err_class { + struct trace_entry ent; + long unsigned int ino; + int rc; + char __data[0]; +}; + +struct trace_event_raw_smb3_enter_exit_class { + struct trace_entry ent; + unsigned int xid; + u32 __data_loc_func_name; + char __data[0]; +}; + +struct trace_event_raw_smb3_tcon_class { + struct trace_entry ent; + unsigned int xid; + __u32 tid; + __u64 sesid; + u32 __data_loc_name; + int rc; + char __data[0]; +}; + +struct trace_event_raw_smb3_open_enter_class { + struct trace_entry ent; + unsigned int xid; + __u32 tid; + __u64 sesid; + u32 __data_loc_path; + int create_options; + int desired_access; + char __data[0]; +}; + +struct trace_event_raw_smb3_open_err_class { + struct trace_entry ent; + unsigned int xid; + __u32 tid; + __u64 sesid; + int create_options; + int desired_access; + int rc; + char __data[0]; +}; + +struct trace_event_raw_smb3_open_done_class { + struct trace_entry ent; + unsigned int xid; + __u64 fid; + __u32 tid; + __u64 sesid; + int create_options; + int desired_access; + char __data[0]; +}; + +struct trace_event_raw_smb3_lease_done_class { + struct trace_entry ent; + __u32 lease_state; + __u32 tid; + __u64 sesid; + __u64 lease_key_low; + __u64 lease_key_high; + char __data[0]; +}; + +struct trace_event_raw_smb3_lease_err_class { + struct trace_entry ent; + __u32 lease_state; + __u32 tid; + __u64 sesid; + __u64 lease_key_low; + __u64 lease_key_high; + int rc; + char __data[0]; +}; + +struct trace_event_raw_smb3_connect_class { + struct trace_entry ent; + u32 __data_loc_hostname; + __u64 conn_id; + __u8 dst_addr[128]; + char __data[0]; +}; + +struct trace_event_raw_smb3_connect_err_class { + struct trace_entry ent; + u32 __data_loc_hostname; + __u64 conn_id; + __u8 dst_addr[128]; + int rc; + char __data[0]; +}; + +struct trace_event_raw_smb3_sess_setup_err_class { + struct trace_entry ent; + u32 __data_loc_hostname; + u32 __data_loc_username; + __u64 conn_id; + __u8 dst_addr[128]; + int rc; + char __data[0]; +}; + +struct trace_event_raw_smb3_reconnect_class { + struct trace_entry ent; + __u64 currmid; + __u64 conn_id; + u32 __data_loc_hostname; + char __data[0]; +}; + +struct trace_event_raw_smb3_ses_class { + struct trace_entry ent; + __u64 sesid; + char __data[0]; +}; + +struct trace_event_raw_smb3_ioctl_class { + struct trace_entry ent; + unsigned int xid; + __u64 fid; + unsigned int command; + char __data[0]; +}; + +struct trace_event_raw_smb3_shutdown_class { + struct trace_entry ent; + __u32 flags; + __u32 tid; + char __data[0]; +}; + +struct trace_event_raw_smb3_shutdown_err_class { + struct trace_entry ent; + int rc; + __u32 flags; + __u32 tid; + char __data[0]; +}; + +struct trace_event_raw_smb3_credit_class { + struct trace_entry ent; + __u64 currmid; + __u64 conn_id; + u32 __data_loc_hostname; + int credits; + int credits_to_add; + int in_flight; + char __data[0]; +}; + +struct trace_event_raw_smb3_tcon_ref { + struct trace_entry ent; + unsigned int tcon; + int ref; + enum smb3_tcon_ref_trace trace; + char __data[0]; +}; + +struct trace_event_raw_smb3_rw_credits { + struct trace_entry ent; + unsigned int rreq_debug_id; + unsigned int subreq_debug_index; + unsigned int subreq_credits; + unsigned int server_credits; + int in_flight; + int credit_change; + enum smb3_rw_credits_trace trace; + char __data[0]; +}; + +struct trace_event_data_offsets_smb3_rw_err_class {}; + +struct trace_event_data_offsets_smb3_other_err_class {}; + +struct trace_event_data_offsets_smb3_copy_range_err_class {}; + +struct trace_event_data_offsets_smb3_copy_range_done_class {}; + +struct trace_event_data_offsets_smb3_rw_done_class {}; + +struct trace_event_data_offsets_smb3_other_done_class {}; + +struct trace_event_data_offsets_smb3_eof_class {}; + +struct trace_event_data_offsets_smb3_fd_class {}; + +struct trace_event_data_offsets_smb3_fd_err_class {}; + +struct trace_event_data_offsets_smb3_inf_enter_class {}; + +struct trace_event_data_offsets_smb3_inf_err_class {}; + +struct trace_event_data_offsets_smb3_inf_compound_enter_class { + u32 path; + const void *path_ptr_; +}; + +struct trace_event_data_offsets_smb3_inf_compound_done_class {}; + +struct trace_event_data_offsets_smb3_inf_compound_err_class {}; + +struct trace_event_data_offsets_smb3_cmd_err_class {}; + +struct trace_event_data_offsets_smb3_cmd_done_class {}; + +struct trace_event_data_offsets_smb3_mid_class {}; + +struct trace_event_data_offsets_smb3_exit_err_class { + u32 func_name; + const void *func_name_ptr_; +}; + +struct trace_event_data_offsets_smb3_sync_err_class {}; + +struct trace_event_data_offsets_smb3_enter_exit_class { + u32 func_name; + const void *func_name_ptr_; +}; + +struct trace_event_data_offsets_smb3_tcon_class { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_smb3_open_enter_class { + u32 path; + const void *path_ptr_; +}; + +struct trace_event_data_offsets_smb3_open_err_class {}; + +struct trace_event_data_offsets_smb3_open_done_class {}; + +struct trace_event_data_offsets_smb3_lease_done_class {}; + +struct trace_event_data_offsets_smb3_lease_err_class {}; + +struct trace_event_data_offsets_smb3_connect_class { + u32 hostname; + const void *hostname_ptr_; +}; + +struct trace_event_data_offsets_smb3_connect_err_class { + u32 hostname; + const void *hostname_ptr_; +}; + +struct trace_event_data_offsets_smb3_sess_setup_err_class { + u32 hostname; + const void *hostname_ptr_; + u32 username; + const void *username_ptr_; +}; + +struct trace_event_data_offsets_smb3_reconnect_class { + u32 hostname; + const void *hostname_ptr_; +}; + +struct trace_event_data_offsets_smb3_ses_class {}; + +struct trace_event_data_offsets_smb3_ioctl_class {}; + +struct trace_event_data_offsets_smb3_shutdown_class {}; + +struct trace_event_data_offsets_smb3_shutdown_err_class {}; + +struct trace_event_data_offsets_smb3_credit_class { + u32 hostname; + const void *hostname_ptr_; +}; + +struct trace_event_data_offsets_smb3_tcon_ref {}; + +struct trace_event_data_offsets_smb3_rw_credits {}; + +typedef void (*btf_trace_smb3_read_err)(void *, unsigned int, unsigned int, unsigned int, __u64, __u32, __u64, __u64, __u32, int); + +typedef void (*btf_trace_smb3_write_err)(void *, unsigned int, unsigned int, unsigned int, __u64, __u32, __u64, __u64, __u32, int); + +typedef void (*btf_trace_smb3_query_dir_err)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32, int); + +typedef void (*btf_trace_smb3_zero_err)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32, int); + +typedef void (*btf_trace_smb3_falloc_err)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32, int); + +typedef void (*btf_trace_smb3_clone_err)(void *, unsigned int, __u64, __u64, __u32, __u64, __u64, __u64, __u32, int); + +typedef void (*btf_trace_smb3_copychunk_enter)(void *, unsigned int, __u64, __u64, __u32, __u64, __u64, __u64, __u32); + +typedef void (*btf_trace_smb3_clone_enter)(void *, unsigned int, __u64, __u64, __u32, __u64, __u64, __u64, __u32); + +typedef void (*btf_trace_smb3_copychunk_done)(void *, unsigned int, __u64, __u64, __u32, __u64, __u64, __u64, __u32); + +typedef void (*btf_trace_smb3_clone_done)(void *, unsigned int, __u64, __u64, __u32, __u64, __u64, __u64, __u32); + +typedef void (*btf_trace_smb3_read_enter)(void *, unsigned int, unsigned int, unsigned int, __u64, __u32, __u64, __u64, __u32); + +typedef void (*btf_trace_smb3_read_done)(void *, unsigned int, unsigned int, unsigned int, __u64, __u32, __u64, __u64, __u32); + +typedef void (*btf_trace_smb3_write_enter)(void *, unsigned int, unsigned int, unsigned int, __u64, __u32, __u64, __u64, __u32); + +typedef void (*btf_trace_smb3_write_done)(void *, unsigned int, unsigned int, unsigned int, __u64, __u32, __u64, __u64, __u32); + +typedef void (*btf_trace_smb3_query_dir_enter)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32); + +typedef void (*btf_trace_smb3_zero_enter)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32); + +typedef void (*btf_trace_smb3_falloc_enter)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32); + +typedef void (*btf_trace_smb3_query_dir_done)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32); + +typedef void (*btf_trace_smb3_zero_done)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32); + +typedef void (*btf_trace_smb3_falloc_done)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32); + +typedef void (*btf_trace_smb3_set_eof)(void *, unsigned int, __u64, __u32, __u64, __u64); + +typedef void (*btf_trace_smb3_flush_enter)(void *, unsigned int, __u64, __u32, __u64); + +typedef void (*btf_trace_smb3_flush_done)(void *, unsigned int, __u64, __u32, __u64); + +typedef void (*btf_trace_smb3_close_enter)(void *, unsigned int, __u64, __u32, __u64); + +typedef void (*btf_trace_smb3_close_done)(void *, unsigned int, __u64, __u32, __u64); + +typedef void (*btf_trace_smb3_oplock_not_found)(void *, unsigned int, __u64, __u32, __u64); + +typedef void (*btf_trace_smb3_flush_err)(void *, unsigned int, __u64, __u32, __u64, int); + +typedef void (*btf_trace_smb3_lock_err)(void *, unsigned int, __u64, __u32, __u64, int); + +typedef void (*btf_trace_smb3_close_err)(void *, unsigned int, __u64, __u32, __u64, int); + +typedef void (*btf_trace_smb3_query_info_enter)(void *, unsigned int, __u64, __u32, __u64, __u8, __u32); + +typedef void (*btf_trace_smb3_query_info_done)(void *, unsigned int, __u64, __u32, __u64, __u8, __u32); + +typedef void (*btf_trace_smb3_notify_enter)(void *, unsigned int, __u64, __u32, __u64, __u8, __u32); + +typedef void (*btf_trace_smb3_notify_done)(void *, unsigned int, __u64, __u32, __u64, __u8, __u32); + +typedef void (*btf_trace_smb3_query_info_err)(void *, unsigned int, __u64, __u32, __u64, __u8, __u32, int); + +typedef void (*btf_trace_smb3_set_info_err)(void *, unsigned int, __u64, __u32, __u64, __u8, __u32, int); + +typedef void (*btf_trace_smb3_notify_err)(void *, unsigned int, __u64, __u32, __u64, __u8, __u32, int); + +typedef void (*btf_trace_smb3_fsctl_err)(void *, unsigned int, __u64, __u32, __u64, __u8, __u32, int); + +typedef void (*btf_trace_smb3_query_info_compound_enter)(void *, unsigned int, __u32, __u64, const char *); + +typedef void (*btf_trace_smb3_posix_query_info_compound_enter)(void *, unsigned int, __u32, __u64, const char *); + +typedef void (*btf_trace_smb3_hardlink_enter)(void *, unsigned int, __u32, __u64, const char *); + +typedef void (*btf_trace_smb3_rename_enter)(void *, unsigned int, __u32, __u64, const char *); + +typedef void (*btf_trace_smb3_rmdir_enter)(void *, unsigned int, __u32, __u64, const char *); + +typedef void (*btf_trace_smb3_set_eof_enter)(void *, unsigned int, __u32, __u64, const char *); + +typedef void (*btf_trace_smb3_set_info_compound_enter)(void *, unsigned int, __u32, __u64, const char *); + +typedef void (*btf_trace_smb3_set_reparse_compound_enter)(void *, unsigned int, __u32, __u64, const char *); + +typedef void (*btf_trace_smb3_get_reparse_compound_enter)(void *, unsigned int, __u32, __u64, const char *); + +typedef void (*btf_trace_smb3_delete_enter)(void *, unsigned int, __u32, __u64, const char *); + +typedef void (*btf_trace_smb3_mkdir_enter)(void *, unsigned int, __u32, __u64, const char *); + +typedef void (*btf_trace_smb3_tdis_enter)(void *, unsigned int, __u32, __u64, const char *); + +typedef void (*btf_trace_smb3_mknod_enter)(void *, unsigned int, __u32, __u64, const char *); + +typedef void (*btf_trace_smb3_query_info_compound_done)(void *, unsigned int, __u32, __u64); + +typedef void (*btf_trace_smb3_posix_query_info_compound_done)(void *, unsigned int, __u32, __u64); + +typedef void (*btf_trace_smb3_hardlink_done)(void *, unsigned int, __u32, __u64); + +typedef void (*btf_trace_smb3_rename_done)(void *, unsigned int, __u32, __u64); + +typedef void (*btf_trace_smb3_rmdir_done)(void *, unsigned int, __u32, __u64); + +typedef void (*btf_trace_smb3_set_eof_done)(void *, unsigned int, __u32, __u64); + +typedef void (*btf_trace_smb3_set_info_compound_done)(void *, unsigned int, __u32, __u64); + +typedef void (*btf_trace_smb3_set_reparse_compound_done)(void *, unsigned int, __u32, __u64); + +typedef void (*btf_trace_smb3_get_reparse_compound_done)(void *, unsigned int, __u32, __u64); + +typedef void (*btf_trace_smb3_query_wsl_ea_compound_done)(void *, unsigned int, __u32, __u64); + +typedef void (*btf_trace_smb3_delete_done)(void *, unsigned int, __u32, __u64); + +typedef void (*btf_trace_smb3_mkdir_done)(void *, unsigned int, __u32, __u64); + +typedef void (*btf_trace_smb3_tdis_done)(void *, unsigned int, __u32, __u64); + +typedef void (*btf_trace_smb3_mknod_done)(void *, unsigned int, __u32, __u64); + +typedef void (*btf_trace_smb3_query_info_compound_err)(void *, unsigned int, __u32, __u64, int); + +typedef void (*btf_trace_smb3_posix_query_info_compound_err)(void *, unsigned int, __u32, __u64, int); + +typedef void (*btf_trace_smb3_hardlink_err)(void *, unsigned int, __u32, __u64, int); + +typedef void (*btf_trace_smb3_rename_err)(void *, unsigned int, __u32, __u64, int); + +typedef void (*btf_trace_smb3_rmdir_err)(void *, unsigned int, __u32, __u64, int); + +typedef void (*btf_trace_smb3_set_eof_err)(void *, unsigned int, __u32, __u64, int); + +typedef void (*btf_trace_smb3_set_info_compound_err)(void *, unsigned int, __u32, __u64, int); + +typedef void (*btf_trace_smb3_set_reparse_compound_err)(void *, unsigned int, __u32, __u64, int); + +typedef void (*btf_trace_smb3_get_reparse_compound_err)(void *, unsigned int, __u32, __u64, int); + +typedef void (*btf_trace_smb3_query_wsl_ea_compound_err)(void *, unsigned int, __u32, __u64, int); + +typedef void (*btf_trace_smb3_mkdir_err)(void *, unsigned int, __u32, __u64, int); + +typedef void (*btf_trace_smb3_delete_err)(void *, unsigned int, __u32, __u64, int); + +typedef void (*btf_trace_smb3_tdis_err)(void *, unsigned int, __u32, __u64, int); + +typedef void (*btf_trace_smb3_mknod_err)(void *, unsigned int, __u32, __u64, int); + +typedef void (*btf_trace_smb3_cmd_err)(void *, __u32, __u64, __u16, __u64, __u32, int); + +typedef void (*btf_trace_smb3_cmd_enter)(void *, __u32, __u64, __u16, __u64); + +typedef void (*btf_trace_smb3_cmd_done)(void *, __u32, __u64, __u16, __u64); + +typedef void (*btf_trace_smb3_ses_expired)(void *, __u32, __u64, __u16, __u64); + +typedef void (*btf_trace_smb3_slow_rsp)(void *, __u16, __u64, __u32, long unsigned int, long unsigned int); + +typedef void (*btf_trace_smb3_exit_err)(void *, unsigned int, const char *, int); + +typedef void (*btf_trace_cifs_fsync_err)(void *, long unsigned int, int); + +typedef void (*btf_trace_cifs_flush_err)(void *, long unsigned int, int); + +typedef void (*btf_trace_smb3_enter)(void *, unsigned int, const char *); + +typedef void (*btf_trace_smb3_exit_done)(void *, unsigned int, const char *); + +typedef void (*btf_trace_smb3_tcon)(void *, unsigned int, __u32, __u64, const char *, int); + +typedef void (*btf_trace_smb3_qfs_done)(void *, unsigned int, __u32, __u64, const char *, int); + +typedef void (*btf_trace_smb3_open_enter)(void *, unsigned int, __u32, __u64, const char *, int, int); + +typedef void (*btf_trace_smb3_posix_mkdir_enter)(void *, unsigned int, __u32, __u64, const char *, int, int); + +typedef void (*btf_trace_smb3_open_err)(void *, unsigned int, __u32, __u64, int, int, int); + +typedef void (*btf_trace_smb3_posix_mkdir_err)(void *, unsigned int, __u32, __u64, int, int, int); + +typedef void (*btf_trace_smb3_open_done)(void *, unsigned int, __u64, __u32, __u64, int, int); + +typedef void (*btf_trace_smb3_posix_mkdir_done)(void *, unsigned int, __u64, __u32, __u64, int, int); + +typedef void (*btf_trace_smb3_lease_done)(void *, __u32, __u32, __u64, __u64, __u64); + +typedef void (*btf_trace_smb3_lease_not_found)(void *, __u32, __u32, __u64, __u64, __u64); + +typedef void (*btf_trace_smb3_lease_err)(void *, __u32, __u32, __u64, __u64, __u64, int); + +typedef void (*btf_trace_smb3_connect_done)(void *, char *, __u64, const struct __kernel_sockaddr_storage *); + +typedef void (*btf_trace_smb3_smbd_connect_done)(void *, char *, __u64, const struct __kernel_sockaddr_storage *); + +typedef void (*btf_trace_smb3_smbd_connect_err)(void *, char *, __u64, const struct __kernel_sockaddr_storage *); + +typedef void (*btf_trace_smb3_connect_err)(void *, char *, __u64, const struct __kernel_sockaddr_storage *, int); + +typedef void (*btf_trace_smb3_key_expired)(void *, char *, char *, __u64, const struct __kernel_sockaddr_storage *, int); + +typedef void (*btf_trace_smb3_reconnect)(void *, __u64, __u64, char *); + +typedef void (*btf_trace_smb3_partial_send_reconnect)(void *, __u64, __u64, char *); + +typedef void (*btf_trace_smb3_ses_not_found)(void *, __u64); + +typedef void (*btf_trace_smb3_ioctl)(void *, unsigned int, __u64, unsigned int); + +typedef void (*btf_trace_smb3_shutdown_enter)(void *, __u32, __u32); + +typedef void (*btf_trace_smb3_shutdown_done)(void *, __u32, __u32); + +typedef void (*btf_trace_smb3_shutdown_err)(void *, int, __u32, __u32); + +typedef void (*btf_trace_smb3_reconnect_with_invalid_credits)(void *, __u64, __u64, char *, int, int, int); + +typedef void (*btf_trace_smb3_reconnect_detected)(void *, __u64, __u64, char *, int, int, int); + +typedef void (*btf_trace_smb3_credit_timeout)(void *, __u64, __u64, char *, int, int, int); + +typedef void (*btf_trace_smb3_insufficient_credits)(void *, __u64, __u64, char *, int, int, int); + +typedef void (*btf_trace_smb3_too_many_credits)(void *, __u64, __u64, char *, int, int, int); + +typedef void (*btf_trace_smb3_add_credits)(void *, __u64, __u64, char *, int, int, int); + +typedef void (*btf_trace_smb3_adj_credits)(void *, __u64, __u64, char *, int, int, int); + +typedef void (*btf_trace_smb3_hdr_credits)(void *, __u64, __u64, char *, int, int, int); + +typedef void (*btf_trace_smb3_nblk_credits)(void *, __u64, __u64, char *, int, int, int); + +typedef void (*btf_trace_smb3_pend_credits)(void *, __u64, __u64, char *, int, int, int); + +typedef void (*btf_trace_smb3_wait_credits)(void *, __u64, __u64, char *, int, int, int); + +typedef void (*btf_trace_smb3_waitff_credits)(void *, __u64, __u64, char *, int, int, int); + +typedef void (*btf_trace_smb3_overflow_credits)(void *, __u64, __u64, char *, int, int, int); + +typedef void (*btf_trace_smb3_set_credits)(void *, __u64, __u64, char *, int, int, int); + +typedef void (*btf_trace_smb3_tcon_ref)(void *, unsigned int, int, enum smb3_tcon_ref_trace); + +typedef void (*btf_trace_smb3_rw_credits)(void *, unsigned int, unsigned int, unsigned int, unsigned int, int, int, enum smb3_rw_credits_trace); + +struct lznt_hash { + const u8 *p1; + const u8 *p2; +}; + +struct lznt { + const u8 *unc; + const u8 *unc_end; + const u8 *best_match; + size_t max_len; + bool std; + struct lznt_hash hash[4096]; +}; + +struct le_str { + u8 len; + u8 unused; + __le16 name[0]; +}; + +struct indx_node { + struct ntfs_buffers nb; + struct INDEX_BUFFER *index; +}; + +struct ntfs_fnd { + int level; + struct indx_node *nodes[20]; + struct NTFS_DE *de[20]; + struct NTFS_DE *root_de; +}; + +struct ovl_cattr { + dev_t rdev; + umode_t mode; + const char *link; + struct dentry *hardlink; +}; + +typedef uint64_t xfs_rtxnum_t; + +typedef struct xfs_bmbt_irec xfs_bmbt_irec_t; + +typedef int (*xfs_btree_visit_blocks_fn)(struct xfs_btree_cur *, int, void *); + +typedef int (*xfs_bmap_query_range_fn)(struct xfs_btree_cur *, struct xfs_bmbt_irec *, void *); + +struct xfs_iread_state { + struct xfs_iext_cursor icur; + xfs_extnum_t loaded; +}; + +struct xfs_bmap_query_range { + xfs_bmap_query_range_fn fn; + void *priv; +}; + +typedef uint64_t xfs_ufsize_t; + +typedef void (*iomap_punch_t)(struct inode *, loff_t, loff_t, struct iomap *); + +struct xfs_trans_header { + uint th_magic; + uint th_type; + int32_t th_tid; + uint th_num_items; +}; + +struct xfs_ail_cursor { + struct list_head list; + struct xfs_log_item *item; +}; + +struct xlog_cil_pcp { + int32_t space_used; + uint32_t space_reserved; + struct list_head busy_extents; + struct list_head log_items; +}; + +enum _record_type { + _START_RECORD = 0, + _COMMIT_RECORD = 1, +}; + +struct xlog_cil_trans_hdr { + struct xlog_op_header oph[2]; + struct xfs_trans_header thdr; + struct xfs_log_iovec lhdr[2]; +}; + +typedef __u32 xfs_dev_t; + +typedef uint32_t xfs_aextnum_t; + +typedef struct xfs_log_iovec xfs_log_iovec_t; + +enum fscache_why_object_killed { + FSCACHE_OBJECT_IS_STALE = 0, + FSCACHE_OBJECT_IS_WEIRD = 1, + FSCACHE_OBJECT_INVALIDATED = 2, + FSCACHE_OBJECT_NO_SPACE = 3, + FSCACHE_OBJECT_WAS_RETIRED = 4, + FSCACHE_OBJECT_WAS_CULLED = 5, + FSCACHE_VOLUME_IS_WEIRD = 6, +}; + +enum { + WORK_DONE_BIT = 0, + WORK_ORDER_DONE_BIT = 1, +}; + +struct btrfs_qgroup_status_item { + __le64 version; + __le64 generation; + __le64 flags; + __le64 rescan; + __le64 enable_gen; +}; + +struct btrfs_qgroup_info_item { + __le64 generation; + __le64 rfer; + __le64 rfer_cmpr; + __le64 excl; + __le64 excl_cmpr; +}; + +struct btrfs_qgroup_limit_item { + __le64 flags; + __le64 max_rfer; + __le64 max_excl; + __le64 rsv_rfer; + __le64 rsv_excl; +}; + +struct btrfs_qgroup_swapped_block { + struct rb_node node; + int level; + bool trace_leaf; + u64 subvol_bytenr; + u64 subvol_generation; + u64 reloc_bytenr; + u64 reloc_generation; + u64 last_snapshot; + struct btrfs_key first_key; +}; + +struct btrfs_squota_delta { + u64 root; + u64 num_bytes; + u64 generation; + bool is_inc; + bool is_data; +}; + +enum { + __QGROUP_RESERVE_BIT = 0, + QGROUP_RESERVE = 1, + __QGROUP_RESERVE_SEQ = 0, + __QGROUP_RELEASE_BIT = 1, + QGROUP_RELEASE = 2, + __QGROUP_RELEASE_SEQ = 1, + __QGROUP_FREE_BIT = 2, + QGROUP_FREE = 4, + __QGROUP_FREE_SEQ = 2, +}; + +struct f2fs_gc_range { + __u32 sync; + __u64 start; + __u64 len; +}; + +struct f2fs_defragment { + __u64 start; + __u64 len; +}; + +struct f2fs_move_range { + __u32 dst_fd; + __u64 pos_in; + __u64 pos_out; + __u64 len; +}; + +struct f2fs_flush_device { + __u32 dev_num; + __u32 segments; +}; + +struct f2fs_sectrim_range { + __u64 start; + __u64 len; + __u64 flags; +}; + +struct f2fs_comp_option { + __u8 algorithm; + __u8 log_cluster_size; +}; + +struct vfs_cap_data { + __le32 magic_etc; + struct { + __le32 permitted; + __le32 inheritable; + } data[2]; +}; + +struct vfs_ns_cap_data { + __le32 magic_etc; + struct { + __le32 permitted; + __le32 inheritable; + } data[2]; + __le32 rootid; +}; + +struct lsm_id { + const char *name; + u64 id; +}; + +struct msg_msg; + +union security_list_options { + int (*binder_set_context_mgr)(const struct cred *); + int (*binder_transaction)(const struct cred *, const struct cred *); + int (*binder_transfer_binder)(const struct cred *, const struct cred *); + int (*binder_transfer_file)(const struct cred *, const struct cred *, const struct file *); + int (*ptrace_access_check)(struct task_struct *, unsigned int); + int (*ptrace_traceme)(struct task_struct *); + int (*capget)(const struct task_struct *, kernel_cap_t *, kernel_cap_t *, kernel_cap_t *); + int (*capset)(struct cred *, const struct cred *, const kernel_cap_t *, const kernel_cap_t *, const kernel_cap_t *); + int (*capable)(const struct cred *, struct user_namespace *, int, unsigned int); + int (*quotactl)(int, int, int, const struct super_block *); + int (*quota_on)(struct dentry *); + int (*syslog)(int); + int (*settime)(const struct timespec64 *, const struct timezone *); + int (*vm_enough_memory)(struct mm_struct *, long int); + int (*bprm_creds_for_exec)(struct linux_binprm *); + int (*bprm_creds_from_file)(struct linux_binprm *, const struct file *); + int (*bprm_check_security)(struct linux_binprm *); + void (*bprm_committing_creds)(const struct linux_binprm *); + void (*bprm_committed_creds)(const struct linux_binprm *); + int (*fs_context_submount)(struct fs_context *, struct super_block *); + int (*fs_context_dup)(struct fs_context *, struct fs_context *); + int (*fs_context_parse_param)(struct fs_context *, struct fs_parameter *); + int (*sb_alloc_security)(struct super_block *); + void (*sb_delete)(struct super_block *); + void (*sb_free_security)(struct super_block *); + void (*sb_free_mnt_opts)(void *); + int (*sb_eat_lsm_opts)(char *, void **); + int (*sb_mnt_opts_compat)(struct super_block *, void *); + int (*sb_remount)(struct super_block *, void *); + int (*sb_kern_mount)(const struct super_block *); + int (*sb_show_options)(struct seq_file *, struct super_block *); + int (*sb_statfs)(struct dentry *); + int (*sb_mount)(const char *, const struct path *, const char *, long unsigned int, void *); + int (*sb_umount)(struct vfsmount *, int); + int (*sb_pivotroot)(const struct path *, const struct path *); + int (*sb_set_mnt_opts)(struct super_block *, void *, long unsigned int, long unsigned int *); + int (*sb_clone_mnt_opts)(const struct super_block *, struct super_block *, long unsigned int, long unsigned int *); + int (*move_mount)(const struct path *, const struct path *); + int (*dentry_init_security)(struct dentry *, int, const struct qstr *, const char **, void **, u32 *); + int (*dentry_create_files_as)(struct dentry *, int, struct qstr *, const struct cred *, struct cred *); + int (*path_notify)(const struct path *, u64, unsigned int); + int (*inode_alloc_security)(struct inode *); + void (*inode_free_security)(struct inode *); + void (*inode_free_security_rcu)(void *); + int (*inode_init_security)(struct inode *, struct inode *, const struct qstr *, struct xattr *, int *); + int (*inode_init_security_anon)(struct inode *, const struct qstr *, const struct inode *); + int (*inode_create)(struct inode *, struct dentry *, umode_t); + void (*inode_post_create_tmpfile)(struct mnt_idmap *, struct inode *); + int (*inode_link)(struct dentry *, struct inode *, struct dentry *); + int (*inode_unlink)(struct inode *, struct dentry *); + int (*inode_symlink)(struct inode *, struct dentry *, const char *); + int (*inode_mkdir)(struct inode *, struct dentry *, umode_t); + int (*inode_rmdir)(struct inode *, struct dentry *); + int (*inode_mknod)(struct inode *, struct dentry *, umode_t, dev_t); + int (*inode_rename)(struct inode *, struct dentry *, struct inode *, struct dentry *); + int (*inode_readlink)(struct dentry *); + int (*inode_follow_link)(struct dentry *, struct inode *, bool); + int (*inode_permission)(struct inode *, int); + int (*inode_setattr)(struct mnt_idmap *, struct dentry *, struct iattr *); + void (*inode_post_setattr)(struct mnt_idmap *, struct dentry *, int); + int (*inode_getattr)(const struct path *); + int (*inode_xattr_skipcap)(const char *); + int (*inode_setxattr)(struct mnt_idmap *, struct dentry *, const char *, const void *, size_t, int); + void (*inode_post_setxattr)(struct dentry *, const char *, const void *, size_t, int); + int (*inode_getxattr)(struct dentry *, const char *); + int (*inode_listxattr)(struct dentry *); + int (*inode_removexattr)(struct mnt_idmap *, struct dentry *, const char *); + void (*inode_post_removexattr)(struct dentry *, const char *); + int (*inode_set_acl)(struct mnt_idmap *, struct dentry *, const char *, struct posix_acl *); + void (*inode_post_set_acl)(struct dentry *, const char *, struct posix_acl *); + int (*inode_get_acl)(struct mnt_idmap *, struct dentry *, const char *); + int (*inode_remove_acl)(struct mnt_idmap *, struct dentry *, const char *); + void (*inode_post_remove_acl)(struct mnt_idmap *, struct dentry *, const char *); + int (*inode_need_killpriv)(struct dentry *); + int (*inode_killpriv)(struct mnt_idmap *, struct dentry *); + int (*inode_getsecurity)(struct mnt_idmap *, struct inode *, const char *, void **, bool); + int (*inode_setsecurity)(struct inode *, const char *, const void *, size_t, int); + int (*inode_listsecurity)(struct inode *, char *, size_t); + void (*inode_getsecid)(struct inode *, u32 *); + int (*inode_copy_up)(struct dentry *, struct cred **); + int (*inode_copy_up_xattr)(struct dentry *, const char *); + int (*inode_setintegrity)(const struct inode *, enum lsm_integrity_type, const void *, size_t); + int (*kernfs_init_security)(struct kernfs_node *, struct kernfs_node *); + int (*file_permission)(struct file *, int); + int (*file_alloc_security)(struct file *); + void (*file_release)(struct file *); + void (*file_free_security)(struct file *); + int (*file_ioctl)(struct file *, unsigned int, long unsigned int); + int (*file_ioctl_compat)(struct file *, unsigned int, long unsigned int); + int (*mmap_addr)(long unsigned int); + int (*mmap_file)(struct file *, long unsigned int, long unsigned int, long unsigned int); + int (*file_mprotect)(struct vm_area_struct *, long unsigned int, long unsigned int); + int (*file_lock)(struct file *, unsigned int); + int (*file_fcntl)(struct file *, unsigned int, long unsigned int); + void (*file_set_fowner)(struct file *); + int (*file_send_sigiotask)(struct task_struct *, struct fown_struct *, int); + int (*file_receive)(struct file *); + int (*file_open)(struct file *); + int (*file_post_open)(struct file *, int); + int (*file_truncate)(struct file *); + int (*task_alloc)(struct task_struct *, long unsigned int); + void (*task_free)(struct task_struct *); + int (*cred_alloc_blank)(struct cred *, gfp_t); + void (*cred_free)(struct cred *); + int (*cred_prepare)(struct cred *, const struct cred *, gfp_t); + void (*cred_transfer)(struct cred *, const struct cred *); + void (*cred_getsecid)(const struct cred *, u32 *); + int (*kernel_act_as)(struct cred *, u32); + int (*kernel_create_files_as)(struct cred *, struct inode *); + int (*kernel_module_request)(char *); + int (*kernel_load_data)(enum kernel_load_data_id, bool); + int (*kernel_post_load_data)(char *, loff_t, enum kernel_load_data_id, char *); + int (*kernel_read_file)(struct file *, enum kernel_read_file_id, bool); + int (*kernel_post_read_file)(struct file *, char *, loff_t, enum kernel_read_file_id); + int (*task_fix_setuid)(struct cred *, const struct cred *, int); + int (*task_fix_setgid)(struct cred *, const struct cred *, int); + int (*task_fix_setgroups)(struct cred *, const struct cred *); + int (*task_setpgid)(struct task_struct *, pid_t); + int (*task_getpgid)(struct task_struct *); + int (*task_getsid)(struct task_struct *); + void (*current_getsecid_subj)(u32 *); + void (*task_getsecid_obj)(struct task_struct *, u32 *); + int (*task_setnice)(struct task_struct *, int); + int (*task_setioprio)(struct task_struct *, int); + int (*task_getioprio)(struct task_struct *); + int (*task_prlimit)(const struct cred *, const struct cred *, unsigned int); + int (*task_setrlimit)(struct task_struct *, unsigned int, struct rlimit *); + int (*task_setscheduler)(struct task_struct *); + int (*task_getscheduler)(struct task_struct *); + int (*task_movememory)(struct task_struct *); + int (*task_kill)(struct task_struct *, struct kernel_siginfo *, int, const struct cred *); + int (*task_prctl)(int, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + void (*task_to_inode)(struct task_struct *, struct inode *); + int (*userns_create)(const struct cred *); + int (*ipc_permission)(struct kern_ipc_perm *, short int); + void (*ipc_getsecid)(struct kern_ipc_perm *, u32 *); + int (*msg_msg_alloc_security)(struct msg_msg *); + void (*msg_msg_free_security)(struct msg_msg *); + int (*msg_queue_alloc_security)(struct kern_ipc_perm *); + void (*msg_queue_free_security)(struct kern_ipc_perm *); + int (*msg_queue_associate)(struct kern_ipc_perm *, int); + int (*msg_queue_msgctl)(struct kern_ipc_perm *, int); + int (*msg_queue_msgsnd)(struct kern_ipc_perm *, struct msg_msg *, int); + int (*msg_queue_msgrcv)(struct kern_ipc_perm *, struct msg_msg *, struct task_struct *, long int, int); + int (*shm_alloc_security)(struct kern_ipc_perm *); + void (*shm_free_security)(struct kern_ipc_perm *); + int (*shm_associate)(struct kern_ipc_perm *, int); + int (*shm_shmctl)(struct kern_ipc_perm *, int); + int (*shm_shmat)(struct kern_ipc_perm *, char *, int); + int (*sem_alloc_security)(struct kern_ipc_perm *); + void (*sem_free_security)(struct kern_ipc_perm *); + int (*sem_associate)(struct kern_ipc_perm *, int); + int (*sem_semctl)(struct kern_ipc_perm *, int); + int (*sem_semop)(struct kern_ipc_perm *, struct sembuf *, unsigned int, int); + int (*netlink_send)(struct sock *, struct sk_buff *); + void (*d_instantiate)(struct dentry *, struct inode *); + int (*getselfattr)(unsigned int, struct lsm_ctx *, u32 *, u32); + int (*setselfattr)(unsigned int, struct lsm_ctx *, u32, u32); + int (*getprocattr)(struct task_struct *, const char *, char **); + int (*setprocattr)(const char *, void *, size_t); + int (*ismaclabel)(const char *); + int (*secid_to_secctx)(u32, char **, u32 *); + int (*secctx_to_secid)(const char *, u32, u32 *); + void (*release_secctx)(char *, u32); + void (*inode_invalidate_secctx)(struct inode *); + int (*inode_notifysecctx)(struct inode *, void *, u32); + int (*inode_setsecctx)(struct dentry *, void *, u32); + int (*inode_getsecctx)(struct inode *, void **, u32 *); + int (*unix_stream_connect)(struct sock *, struct sock *, struct sock *); + int (*unix_may_send)(struct socket *, struct socket *); + int (*socket_create)(int, int, int, int); + int (*socket_post_create)(struct socket *, int, int, int, int); + int (*socket_socketpair)(struct socket *, struct socket *); + int (*socket_bind)(struct socket *, struct sockaddr *, int); + int (*socket_connect)(struct socket *, struct sockaddr *, int); + int (*socket_listen)(struct socket *, int); + int (*socket_accept)(struct socket *, struct socket *); + int (*socket_sendmsg)(struct socket *, struct msghdr *, int); + int (*socket_recvmsg)(struct socket *, struct msghdr *, int, int); + int (*socket_getsockname)(struct socket *); + int (*socket_getpeername)(struct socket *); + int (*socket_getsockopt)(struct socket *, int, int); + int (*socket_setsockopt)(struct socket *, int, int); + int (*socket_shutdown)(struct socket *, int); + int (*socket_sock_rcv_skb)(struct sock *, struct sk_buff *); + int (*socket_getpeersec_stream)(struct socket *, sockptr_t, sockptr_t, unsigned int); + int (*socket_getpeersec_dgram)(struct socket *, struct sk_buff *, u32 *); + int (*sk_alloc_security)(struct sock *, int, gfp_t); + void (*sk_free_security)(struct sock *); + void (*sk_clone_security)(const struct sock *, struct sock *); + void (*sk_getsecid)(const struct sock *, u32 *); + void (*sock_graft)(struct sock *, struct socket *); + int (*inet_conn_request)(const struct sock *, struct sk_buff *, struct request_sock *); + void (*inet_csk_clone)(struct sock *, const struct request_sock *); + void (*inet_conn_established)(struct sock *, struct sk_buff *); + int (*secmark_relabel_packet)(u32); + void (*secmark_refcount_inc)(void); + void (*secmark_refcount_dec)(void); + void (*req_classify_flow)(const struct request_sock *, struct flowi_common *); + int (*tun_dev_alloc_security)(void *); + int (*tun_dev_create)(void); + int (*tun_dev_attach_queue)(void *); + int (*tun_dev_attach)(struct sock *, void *); + int (*tun_dev_open)(void *); + int (*sctp_assoc_request)(struct sctp_association *, struct sk_buff *); + int (*sctp_bind_connect)(struct sock *, int, struct sockaddr *, int); + void (*sctp_sk_clone)(struct sctp_association *, struct sock *, struct sock *); + int (*sctp_assoc_established)(struct sctp_association *, struct sk_buff *); + int (*mptcp_add_subflow)(struct sock *, struct sock *); + int (*key_alloc)(struct key *, const struct cred *, long unsigned int); + int (*key_permission)(key_ref_t, const struct cred *, enum key_need_perm); + int (*key_getsecurity)(struct key *, char **); + void (*key_post_create_or_update)(struct key *, struct key *, const void *, size_t, long unsigned int, bool); + int (*audit_rule_init)(u32, u32, char *, void **, gfp_t); + int (*audit_rule_known)(struct audit_krule *); + int (*audit_rule_match)(u32, u32, u32, void *); + void (*audit_rule_free)(void *); + int (*bpf)(int, union bpf_attr *, unsigned int); + int (*bpf_map)(struct bpf_map *, fmode_t); + int (*bpf_prog)(struct bpf_prog *); + int (*bpf_map_create)(struct bpf_map *, union bpf_attr *, struct bpf_token *); + void (*bpf_map_free)(struct bpf_map *); + int (*bpf_prog_load)(struct bpf_prog *, union bpf_attr *, struct bpf_token *); + void (*bpf_prog_free)(struct bpf_prog *); + int (*bpf_token_create)(struct bpf_token *, union bpf_attr *, const struct path *); + void (*bpf_token_free)(struct bpf_token *); + int (*bpf_token_cmd)(const struct bpf_token *, enum bpf_cmd); + int (*bpf_token_capable)(const struct bpf_token *, int); + int (*locked_down)(enum lockdown_reason); + int (*perf_event_open)(struct perf_event_attr *, int); + int (*perf_event_alloc)(struct perf_event *); + int (*perf_event_read)(struct perf_event *); + int (*perf_event_write)(struct perf_event *); + int (*uring_override_creds)(const struct cred *); + int (*uring_sqpoll)(void); + int (*uring_cmd)(struct io_uring_cmd *); + int (*uring_allowed)(void); + void (*initramfs_populated)(void); + int (*bdev_alloc_security)(struct block_device *); + void (*bdev_free_security)(struct block_device *); + int (*bdev_setintegrity)(struct block_device *, enum lsm_integrity_type, const void *, size_t); + void *lsm_func_addr; +}; + +struct security_hook_list; + +struct lsm_static_call { + struct static_call_key *key; + void *trampoline; + struct security_hook_list *hl; + struct static_key_false *active; +}; + +struct security_hook_list { + struct lsm_static_call *scalls; + union security_list_options hook; + const struct lsm_id *lsmid; +}; + +struct lsm_static_calls_table { + struct lsm_static_call binder_set_context_mgr[2]; + struct lsm_static_call binder_transaction[2]; + struct lsm_static_call binder_transfer_binder[2]; + struct lsm_static_call binder_transfer_file[2]; + struct lsm_static_call ptrace_access_check[2]; + struct lsm_static_call ptrace_traceme[2]; + struct lsm_static_call capget[2]; + struct lsm_static_call capset[2]; + struct lsm_static_call capable[2]; + struct lsm_static_call quotactl[2]; + struct lsm_static_call quota_on[2]; + struct lsm_static_call syslog[2]; + struct lsm_static_call settime[2]; + struct lsm_static_call vm_enough_memory[2]; + struct lsm_static_call bprm_creds_for_exec[2]; + struct lsm_static_call bprm_creds_from_file[2]; + struct lsm_static_call bprm_check_security[2]; + struct lsm_static_call bprm_committing_creds[2]; + struct lsm_static_call bprm_committed_creds[2]; + struct lsm_static_call fs_context_submount[2]; + struct lsm_static_call fs_context_dup[2]; + struct lsm_static_call fs_context_parse_param[2]; + struct lsm_static_call sb_alloc_security[2]; + struct lsm_static_call sb_delete[2]; + struct lsm_static_call sb_free_security[2]; + struct lsm_static_call sb_free_mnt_opts[2]; + struct lsm_static_call sb_eat_lsm_opts[2]; + struct lsm_static_call sb_mnt_opts_compat[2]; + struct lsm_static_call sb_remount[2]; + struct lsm_static_call sb_kern_mount[2]; + struct lsm_static_call sb_show_options[2]; + struct lsm_static_call sb_statfs[2]; + struct lsm_static_call sb_mount[2]; + struct lsm_static_call sb_umount[2]; + struct lsm_static_call sb_pivotroot[2]; + struct lsm_static_call sb_set_mnt_opts[2]; + struct lsm_static_call sb_clone_mnt_opts[2]; + struct lsm_static_call move_mount[2]; + struct lsm_static_call dentry_init_security[2]; + struct lsm_static_call dentry_create_files_as[2]; + struct lsm_static_call path_notify[2]; + struct lsm_static_call inode_alloc_security[2]; + struct lsm_static_call inode_free_security[2]; + struct lsm_static_call inode_free_security_rcu[2]; + struct lsm_static_call inode_init_security[2]; + struct lsm_static_call inode_init_security_anon[2]; + struct lsm_static_call inode_create[2]; + struct lsm_static_call inode_post_create_tmpfile[2]; + struct lsm_static_call inode_link[2]; + struct lsm_static_call inode_unlink[2]; + struct lsm_static_call inode_symlink[2]; + struct lsm_static_call inode_mkdir[2]; + struct lsm_static_call inode_rmdir[2]; + struct lsm_static_call inode_mknod[2]; + struct lsm_static_call inode_rename[2]; + struct lsm_static_call inode_readlink[2]; + struct lsm_static_call inode_follow_link[2]; + struct lsm_static_call inode_permission[2]; + struct lsm_static_call inode_setattr[2]; + struct lsm_static_call inode_post_setattr[2]; + struct lsm_static_call inode_getattr[2]; + struct lsm_static_call inode_xattr_skipcap[2]; + struct lsm_static_call inode_setxattr[2]; + struct lsm_static_call inode_post_setxattr[2]; + struct lsm_static_call inode_getxattr[2]; + struct lsm_static_call inode_listxattr[2]; + struct lsm_static_call inode_removexattr[2]; + struct lsm_static_call inode_post_removexattr[2]; + struct lsm_static_call inode_set_acl[2]; + struct lsm_static_call inode_post_set_acl[2]; + struct lsm_static_call inode_get_acl[2]; + struct lsm_static_call inode_remove_acl[2]; + struct lsm_static_call inode_post_remove_acl[2]; + struct lsm_static_call inode_need_killpriv[2]; + struct lsm_static_call inode_killpriv[2]; + struct lsm_static_call inode_getsecurity[2]; + struct lsm_static_call inode_setsecurity[2]; + struct lsm_static_call inode_listsecurity[2]; + struct lsm_static_call inode_getsecid[2]; + struct lsm_static_call inode_copy_up[2]; + struct lsm_static_call inode_copy_up_xattr[2]; + struct lsm_static_call inode_setintegrity[2]; + struct lsm_static_call kernfs_init_security[2]; + struct lsm_static_call file_permission[2]; + struct lsm_static_call file_alloc_security[2]; + struct lsm_static_call file_release[2]; + struct lsm_static_call file_free_security[2]; + struct lsm_static_call file_ioctl[2]; + struct lsm_static_call file_ioctl_compat[2]; + struct lsm_static_call mmap_addr[2]; + struct lsm_static_call mmap_file[2]; + struct lsm_static_call file_mprotect[2]; + struct lsm_static_call file_lock[2]; + struct lsm_static_call file_fcntl[2]; + struct lsm_static_call file_set_fowner[2]; + struct lsm_static_call file_send_sigiotask[2]; + struct lsm_static_call file_receive[2]; + struct lsm_static_call file_open[2]; + struct lsm_static_call file_post_open[2]; + struct lsm_static_call file_truncate[2]; + struct lsm_static_call task_alloc[2]; + struct lsm_static_call task_free[2]; + struct lsm_static_call cred_alloc_blank[2]; + struct lsm_static_call cred_free[2]; + struct lsm_static_call cred_prepare[2]; + struct lsm_static_call cred_transfer[2]; + struct lsm_static_call cred_getsecid[2]; + struct lsm_static_call kernel_act_as[2]; + struct lsm_static_call kernel_create_files_as[2]; + struct lsm_static_call kernel_module_request[2]; + struct lsm_static_call kernel_load_data[2]; + struct lsm_static_call kernel_post_load_data[2]; + struct lsm_static_call kernel_read_file[2]; + struct lsm_static_call kernel_post_read_file[2]; + struct lsm_static_call task_fix_setuid[2]; + struct lsm_static_call task_fix_setgid[2]; + struct lsm_static_call task_fix_setgroups[2]; + struct lsm_static_call task_setpgid[2]; + struct lsm_static_call task_getpgid[2]; + struct lsm_static_call task_getsid[2]; + struct lsm_static_call current_getsecid_subj[2]; + struct lsm_static_call task_getsecid_obj[2]; + struct lsm_static_call task_setnice[2]; + struct lsm_static_call task_setioprio[2]; + struct lsm_static_call task_getioprio[2]; + struct lsm_static_call task_prlimit[2]; + struct lsm_static_call task_setrlimit[2]; + struct lsm_static_call task_setscheduler[2]; + struct lsm_static_call task_getscheduler[2]; + struct lsm_static_call task_movememory[2]; + struct lsm_static_call task_kill[2]; + struct lsm_static_call task_prctl[2]; + struct lsm_static_call task_to_inode[2]; + struct lsm_static_call userns_create[2]; + struct lsm_static_call ipc_permission[2]; + struct lsm_static_call ipc_getsecid[2]; + struct lsm_static_call msg_msg_alloc_security[2]; + struct lsm_static_call msg_msg_free_security[2]; + struct lsm_static_call msg_queue_alloc_security[2]; + struct lsm_static_call msg_queue_free_security[2]; + struct lsm_static_call msg_queue_associate[2]; + struct lsm_static_call msg_queue_msgctl[2]; + struct lsm_static_call msg_queue_msgsnd[2]; + struct lsm_static_call msg_queue_msgrcv[2]; + struct lsm_static_call shm_alloc_security[2]; + struct lsm_static_call shm_free_security[2]; + struct lsm_static_call shm_associate[2]; + struct lsm_static_call shm_shmctl[2]; + struct lsm_static_call shm_shmat[2]; + struct lsm_static_call sem_alloc_security[2]; + struct lsm_static_call sem_free_security[2]; + struct lsm_static_call sem_associate[2]; + struct lsm_static_call sem_semctl[2]; + struct lsm_static_call sem_semop[2]; + struct lsm_static_call netlink_send[2]; + struct lsm_static_call d_instantiate[2]; + struct lsm_static_call getselfattr[2]; + struct lsm_static_call setselfattr[2]; + struct lsm_static_call getprocattr[2]; + struct lsm_static_call setprocattr[2]; + struct lsm_static_call ismaclabel[2]; + struct lsm_static_call secid_to_secctx[2]; + struct lsm_static_call secctx_to_secid[2]; + struct lsm_static_call release_secctx[2]; + struct lsm_static_call inode_invalidate_secctx[2]; + struct lsm_static_call inode_notifysecctx[2]; + struct lsm_static_call inode_setsecctx[2]; + struct lsm_static_call inode_getsecctx[2]; + struct lsm_static_call unix_stream_connect[2]; + struct lsm_static_call unix_may_send[2]; + struct lsm_static_call socket_create[2]; + struct lsm_static_call socket_post_create[2]; + struct lsm_static_call socket_socketpair[2]; + struct lsm_static_call socket_bind[2]; + struct lsm_static_call socket_connect[2]; + struct lsm_static_call socket_listen[2]; + struct lsm_static_call socket_accept[2]; + struct lsm_static_call socket_sendmsg[2]; + struct lsm_static_call socket_recvmsg[2]; + struct lsm_static_call socket_getsockname[2]; + struct lsm_static_call socket_getpeername[2]; + struct lsm_static_call socket_getsockopt[2]; + struct lsm_static_call socket_setsockopt[2]; + struct lsm_static_call socket_shutdown[2]; + struct lsm_static_call socket_sock_rcv_skb[2]; + struct lsm_static_call socket_getpeersec_stream[2]; + struct lsm_static_call socket_getpeersec_dgram[2]; + struct lsm_static_call sk_alloc_security[2]; + struct lsm_static_call sk_free_security[2]; + struct lsm_static_call sk_clone_security[2]; + struct lsm_static_call sk_getsecid[2]; + struct lsm_static_call sock_graft[2]; + struct lsm_static_call inet_conn_request[2]; + struct lsm_static_call inet_csk_clone[2]; + struct lsm_static_call inet_conn_established[2]; + struct lsm_static_call secmark_relabel_packet[2]; + struct lsm_static_call secmark_refcount_inc[2]; + struct lsm_static_call secmark_refcount_dec[2]; + struct lsm_static_call req_classify_flow[2]; + struct lsm_static_call tun_dev_alloc_security[2]; + struct lsm_static_call tun_dev_create[2]; + struct lsm_static_call tun_dev_attach_queue[2]; + struct lsm_static_call tun_dev_attach[2]; + struct lsm_static_call tun_dev_open[2]; + struct lsm_static_call sctp_assoc_request[2]; + struct lsm_static_call sctp_bind_connect[2]; + struct lsm_static_call sctp_sk_clone[2]; + struct lsm_static_call sctp_assoc_established[2]; + struct lsm_static_call mptcp_add_subflow[2]; + struct lsm_static_call key_alloc[2]; + struct lsm_static_call key_permission[2]; + struct lsm_static_call key_getsecurity[2]; + struct lsm_static_call key_post_create_or_update[2]; + struct lsm_static_call audit_rule_init[2]; + struct lsm_static_call audit_rule_known[2]; + struct lsm_static_call audit_rule_match[2]; + struct lsm_static_call audit_rule_free[2]; + struct lsm_static_call bpf[2]; + struct lsm_static_call bpf_map[2]; + struct lsm_static_call bpf_prog[2]; + struct lsm_static_call bpf_map_create[2]; + struct lsm_static_call bpf_map_free[2]; + struct lsm_static_call bpf_prog_load[2]; + struct lsm_static_call bpf_prog_free[2]; + struct lsm_static_call bpf_token_create[2]; + struct lsm_static_call bpf_token_free[2]; + struct lsm_static_call bpf_token_cmd[2]; + struct lsm_static_call bpf_token_capable[2]; + struct lsm_static_call locked_down[2]; + struct lsm_static_call perf_event_open[2]; + struct lsm_static_call perf_event_alloc[2]; + struct lsm_static_call perf_event_read[2]; + struct lsm_static_call perf_event_write[2]; + struct lsm_static_call uring_override_creds[2]; + struct lsm_static_call uring_sqpoll[2]; + struct lsm_static_call uring_cmd[2]; + struct lsm_static_call uring_allowed[2]; + struct lsm_static_call initramfs_populated[2]; + struct lsm_static_call bdev_alloc_security[2]; + struct lsm_static_call bdev_free_security[2]; + struct lsm_static_call bdev_setintegrity[2]; +}; + +struct lsm_blob_sizes { + int lbs_cred; + int lbs_file; + int lbs_ib; + int lbs_inode; + int lbs_sock; + int lbs_superblock; + int lbs_ipc; + int lbs_key; + int lbs_msg_msg; + int lbs_perf_event; + int lbs_task; + int lbs_xattr_count; + int lbs_tun_dev; + int lbs_bdev; +}; + +enum lsm_order { + LSM_ORDER_FIRST = -1, + LSM_ORDER_MUTABLE = 0, + LSM_ORDER_LAST = 1, +}; + +struct lsm_info { + const char *name; + enum lsm_order order; + long unsigned int flags; + int *enabled; + int (*init)(void); + struct lsm_blob_sizes *blobs; +}; + +struct acomp_req { + struct crypto_async_request base; + struct scatterlist *src; + struct scatterlist *dst; + unsigned int slen; + unsigned int dlen; + u32 flags; + void *__ctx[0]; +}; + +struct crypto_acomp { + int (*compress)(struct acomp_req *); + int (*decompress)(struct acomp_req *); + void (*dst_free)(struct scatterlist *); + unsigned int reqsize; + struct crypto_tfm base; +}; + +struct acomp_alg { + int (*compress)(struct acomp_req *); + int (*decompress)(struct acomp_req *); + void (*dst_free)(struct scatterlist *); + int (*init)(struct crypto_acomp *); + void (*exit)(struct crypto_acomp *); + unsigned int reqsize; + union { + struct { + struct crypto_alg base; + }; + struct comp_alg_common calg; + }; +}; + +struct rmd160_ctx { + u64 byte_count; + u32 state[5]; + __le32 buffer[16]; +}; + +struct camellia_ctx { + int key_length; + u32 key_table[68]; +}; + +struct cast6_ctx { + u32 Km[48]; + u8 Kr[48]; +}; + +struct xor_block_template { + struct xor_block_template *next; + const char *name; + int speed; + void (*do_2)(long unsigned int, long unsigned int * restrict, const long unsigned int * restrict); + void (*do_3)(long unsigned int, long unsigned int * restrict, const long unsigned int * restrict, const long unsigned int * restrict); + void (*do_4)(long unsigned int, long unsigned int * restrict, const long unsigned int * restrict, const long unsigned int * restrict, const long unsigned int * restrict); + void (*do_5)(long unsigned int, long unsigned int * restrict, const long unsigned int * restrict, const long unsigned int * restrict, const long unsigned int * restrict, const long unsigned int * restrict); +}; + +struct crypto_sig { + struct crypto_tfm base; +}; + +struct bio_map_data { + bool is_our_pages: 1; + bool is_null_mapped: 1; + struct iov_iter iter; + struct iovec iov[0]; +}; + +struct rq_wait { + wait_queue_head_t wait; + atomic_t inflight; +}; + +struct rq_depth { + unsigned int max_depth; + int scale_step; + bool scaled_max; + unsigned int queue_depth; + unsigned int default_depth; +}; + +typedef bool acquire_inflight_cb_t(struct rq_wait *, void *); + +typedef void cleanup_cb_t(struct rq_wait *, void *); + +struct rq_qos_wait_data { + struct wait_queue_entry wq; + struct task_struct *task; + struct rq_wait *rqw; + acquire_inflight_cb_t *cb; + void *private_data; + bool got_token; +}; + +struct io_uring_rsrc_register { + __u32 nr; + __u32 flags; + __u64 resv2; + __u64 data; + __u64 tags; +}; + +struct io_uring_rsrc_update2 { + __u32 offset; + __u32 resv; + __u64 data; + __u64 tags; + __u32 nr; + __u32 resv2; +}; + +enum { + IORING_REGISTER_SRC_REGISTERED = 1, +}; + +struct io_uring_clone_buffers { + __u32 src_fd; + __u32 flags; + __u32 pad[6]; +}; + +enum { + IORING_RSRC_FILE = 0, + IORING_RSRC_BUFFER = 1, +}; + +struct io_imu_folio_data { + unsigned int nr_pages_head; + unsigned int nr_pages_mid; + unsigned int folio_shift; + long unsigned int first_folio_page_idx; +}; + +struct io_rsrc_update { + struct file *file; + u64 arg; + u32 nr_args; + u32 offset; +}; + +struct io_uring_probe_op { + __u8 op; + __u8 resv; + __u16 flags; + __u32 resv2; +}; + +struct io_uring_probe { + __u8 last_op; + __u8 ops_len; + __u16 resv; + __u32 resv2[3]; + struct io_uring_probe_op ops[0]; +}; + +struct io_uring_restriction { + __u16 opcode; + union { + __u8 register_op; + __u8 sqe_op; + __u8 sqe_flags; + }; + __u8 resv; + __u32 resv2[3]; +}; + +struct io_uring_clock_register { + __u32 clockid; + __u32 __resv[3]; +}; + +enum io_uring_register_restriction_op { + IORING_RESTRICTION_REGISTER_OP = 0, + IORING_RESTRICTION_SQE_OP = 1, + IORING_RESTRICTION_SQE_FLAGS_ALLOWED = 2, + IORING_RESTRICTION_SQE_FLAGS_REQUIRED = 3, + IORING_RESTRICTION_LAST = 4, +}; + +struct io_tctx_node { + struct list_head ctx_node; + struct task_struct *task; + struct io_ring_ctx *ctx; +}; + +enum blake2s_lengths { + BLAKE2S_BLOCK_SIZE = 64, + BLAKE2S_HASH_SIZE = 32, + BLAKE2S_KEY_SIZE = 32, + BLAKE2S_128_HASH_SIZE = 16, + BLAKE2S_160_HASH_SIZE = 20, + BLAKE2S_224_HASH_SIZE = 28, + BLAKE2S_256_HASH_SIZE = 32, +}; + +struct blake2s_state { + u32 h[8]; + u32 t[2]; + u32 f[2]; + u8 buf[64]; + unsigned int buflen; + unsigned int outlen; +}; + +struct ZSTD_DDict_s { + void *dictBuffer; + const void *dictContent; + size_t dictSize; + ZSTD_entropyDTables_t entropy; + U32 dictID; + U32 entropyPresent; + ZSTD_customMem cMem; +}; + +struct ts_linear_state { + unsigned int len; + const void *data; +}; + +struct word_at_a_time { + const long unsigned int one_bits; + const long unsigned int high_bits; +}; + +typedef struct { + struct srcu_struct *lock; + int idx; +} class_srcu_t; + +struct gpio_array { + struct gpio_desc **desc; + unsigned int size; + struct gpio_device *gdev; + long unsigned int *get_mask; + long unsigned int *set_mask; + long unsigned int invert_mask[0]; +}; + +enum gpio_lookup_flags { + GPIO_ACTIVE_HIGH = 0, + GPIO_ACTIVE_LOW = 1, + GPIO_OPEN_DRAIN = 2, + GPIO_OPEN_SOURCE = 4, + GPIO_PERSISTENT = 0, + GPIO_TRANSITORY = 8, + GPIO_PULL_UP = 16, + GPIO_PULL_DOWN = 32, + GPIO_PULL_DISABLE = 64, + GPIO_LOOKUP_FLAGS_DEFAULT = 0, +}; + +struct gpiod_lookup { + const char *key; + u16 chip_hwnum; + const char *con_id; + unsigned int idx; + long unsigned int flags; +}; + +struct gpiod_lookup_table { + struct list_head list; + const char *dev_id; + struct gpiod_lookup table[0]; +}; + +struct gpiod_hog { + struct list_head list; + const char *chip_label; + u16 chip_hwnum; + const char *line_name; + long unsigned int lflags; + int dflags; +}; + +enum { + GPIOLINE_CHANGED_REQUESTED = 1, + GPIOLINE_CHANGED_RELEASED = 2, + GPIOLINE_CHANGED_CONFIG = 3, +}; + +struct gpio_chip_guard { + struct gpio_device *gdev; + struct gpio_chip *gc; + int idx; +}; + +typedef struct gpio_chip_guard class_gpio_chip_guard_t; + +struct trace_event_raw_gpio_direction { + struct trace_entry ent; + unsigned int gpio; + int in; + int err; + char __data[0]; +}; + +struct trace_event_raw_gpio_value { + struct trace_entry ent; + unsigned int gpio; + int get; + int value; + char __data[0]; +}; + +struct trace_event_data_offsets_gpio_direction {}; + +struct trace_event_data_offsets_gpio_value {}; + +typedef void (*btf_trace_gpio_direction)(void *, unsigned int, int, int); + +typedef void (*btf_trace_gpio_value)(void *, unsigned int, int, int); + +struct gpiolib_seq_priv { + bool newline; + int idx; +}; + +struct clk_notifier { + struct clk *clk; + struct srcu_notifier_head notifier_head; + struct list_head node; +}; + +struct clk_notifier_data { + struct clk *clk; + long unsigned int old_rate; + long unsigned int new_rate; +}; + +struct clk_parent_map; + +struct clk_core { + const char *name; + const struct clk_ops *ops; + struct clk_hw *hw; + struct module *owner; + struct device *dev; + struct hlist_node rpm_node; + struct device_node *of_node; + struct clk_core *parent; + struct clk_parent_map *parents; + u8 num_parents; + u8 new_parent_index; + long unsigned int rate; + long unsigned int req_rate; + long unsigned int new_rate; + struct clk_core *new_parent; + struct clk_core *new_child; + long unsigned int flags; + bool orphan; + bool rpm_enabled; + unsigned int enable_count; + unsigned int prepare_count; + unsigned int protect_count; + long unsigned int min_rate; + long unsigned int max_rate; + long unsigned int accuracy; + int phase; + struct clk_duty duty; + struct hlist_head children; + struct hlist_node child_node; + struct hlist_head clks; + unsigned int notifier_count; + struct dentry *dentry; + struct hlist_node debug_node; + struct kref ref; +}; + +struct clk_onecell_data { + struct clk **clks; + unsigned int clk_num; +}; + +struct clk_hw_onecell_data { + unsigned int num; + struct clk_hw *hws[0]; +}; + +struct clk_parent_map { + const struct clk_hw *hw; + struct clk_core *core; + const char *fw_name; + const char *name; + int index; +}; + +struct trace_event_raw_clk { + struct trace_entry ent; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_clk_rate { + struct trace_entry ent; + u32 __data_loc_name; + long unsigned int rate; + char __data[0]; +}; + +struct trace_event_raw_clk_rate_range { + struct trace_entry ent; + u32 __data_loc_name; + long unsigned int min; + long unsigned int max; + char __data[0]; +}; + +struct trace_event_raw_clk_parent { + struct trace_entry ent; + u32 __data_loc_name; + u32 __data_loc_pname; + char __data[0]; +}; + +struct trace_event_raw_clk_phase { + struct trace_entry ent; + u32 __data_loc_name; + int phase; + char __data[0]; +}; + +struct trace_event_raw_clk_duty_cycle { + struct trace_entry ent; + u32 __data_loc_name; + unsigned int num; + unsigned int den; + char __data[0]; +}; + +struct trace_event_raw_clk_rate_request { + struct trace_entry ent; + u32 __data_loc_name; + u32 __data_loc_pname; + long unsigned int min; + long unsigned int max; + long unsigned int prate; + char __data[0]; +}; + +struct trace_event_data_offsets_clk { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_clk_rate { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_clk_rate_range { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_clk_parent { + u32 name; + const void *name_ptr_; + u32 pname; + const void *pname_ptr_; +}; + +struct trace_event_data_offsets_clk_phase { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_clk_duty_cycle { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_clk_rate_request { + u32 name; + const void *name_ptr_; + u32 pname; + const void *pname_ptr_; +}; + +typedef void (*btf_trace_clk_enable)(void *, struct clk_core *); + +typedef void (*btf_trace_clk_enable_complete)(void *, struct clk_core *); + +typedef void (*btf_trace_clk_disable)(void *, struct clk_core *); + +typedef void (*btf_trace_clk_disable_complete)(void *, struct clk_core *); + +typedef void (*btf_trace_clk_prepare)(void *, struct clk_core *); + +typedef void (*btf_trace_clk_prepare_complete)(void *, struct clk_core *); + +typedef void (*btf_trace_clk_unprepare)(void *, struct clk_core *); + +typedef void (*btf_trace_clk_unprepare_complete)(void *, struct clk_core *); + +typedef void (*btf_trace_clk_set_rate)(void *, struct clk_core *, long unsigned int); + +typedef void (*btf_trace_clk_set_rate_complete)(void *, struct clk_core *, long unsigned int); + +typedef void (*btf_trace_clk_set_min_rate)(void *, struct clk_core *, long unsigned int); + +typedef void (*btf_trace_clk_set_max_rate)(void *, struct clk_core *, long unsigned int); + +typedef void (*btf_trace_clk_set_rate_range)(void *, struct clk_core *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_clk_set_parent)(void *, struct clk_core *, struct clk_core *); + +typedef void (*btf_trace_clk_set_parent_complete)(void *, struct clk_core *, struct clk_core *); + +typedef void (*btf_trace_clk_set_phase)(void *, struct clk_core *, int); + +typedef void (*btf_trace_clk_set_phase_complete)(void *, struct clk_core *, int); + +typedef void (*btf_trace_clk_set_duty_cycle)(void *, struct clk_core *, struct clk_duty *); + +typedef void (*btf_trace_clk_set_duty_cycle_complete)(void *, struct clk_core *, struct clk_duty *); + +typedef void (*btf_trace_clk_rate_request_start)(void *, struct clk_rate_request *); + +typedef void (*btf_trace_clk_rate_request_done)(void *, struct clk_rate_request *); + +struct clk_notifier_devres { + struct clk *clk; + struct notifier_block *nb; +}; + +struct of_clk_provider { + struct list_head link; + struct device_node *node; + struct clk * (*get)(struct of_phandle_args *, void *); + struct clk_hw * (*get_hw)(struct of_phandle_args *, void *); + void *data; +}; + +struct clock_provider { + void (*clk_init_cb)(struct device_node *); + struct device_node *np; + struct list_head node; +}; + +struct uart_match { + struct uart_port *port; + struct uart_driver *driver; +}; + +struct virtio_console_config { + __virtio16 cols; + __virtio16 rows; + __virtio32 max_nr_ports; + __virtio32 emerg_wr; +}; + +struct virtio_console_control { + __virtio32 id; + __virtio16 event; + __virtio16 value; +}; + +struct ports_driver_data { + struct dentry *debugfs_dir; + struct list_head portdevs; + struct list_head consoles; +}; + +struct console___2 { + struct list_head list; + struct hvc_struct *hvc; + struct winsize ws; + u32 vtermno; +}; + +struct port_buffer { + char *buf; + size_t size; + size_t len; + size_t offset; + dma_addr_t dma; + struct device *dev; + struct list_head list; + unsigned int sgpages; + struct scatterlist sg[0]; +}; + +struct ports_device { + struct list_head list; + struct work_struct control_work; + struct work_struct config_work; + struct list_head ports; + spinlock_t ports_lock; + spinlock_t c_ivq_lock; + spinlock_t c_ovq_lock; + u32 max_nr_ports; + struct virtio_device *vdev; + struct virtqueue *c_ivq; + struct virtqueue *c_ovq; + struct virtio_console_control cpkt; + struct virtqueue **in_vqs; + struct virtqueue **out_vqs; + int chr_major; +}; + +struct port_stats { + long unsigned int bytes_sent; + long unsigned int bytes_received; + long unsigned int bytes_discarded; +}; + +struct port___2 { + struct list_head list; + struct ports_device *portdev; + struct port_buffer *inbuf; + spinlock_t inbuf_lock; + spinlock_t outvq_lock; + struct virtqueue *in_vq; + struct virtqueue *out_vq; + struct dentry *debugfs_file; + struct port_stats stats; + struct console___2 cons; + struct cdev *cdev; + struct device *dev; + struct kref kref; + wait_queue_head_t waitqueue; + char *name; + struct fasync_struct *async_queue; + u32 id; + bool outvq_full; + bool host_connected; + bool guest_connected; +}; + +struct sg_list { + unsigned int n; + unsigned int size; + size_t len; + struct scatterlist *sg; +}; + +struct cea_sad { + u8 format; + u8 channels; + u8 freq; + u8 byte2; +}; + +enum drm_minor_type { + DRM_MINOR_PRIMARY = 0, + DRM_MINOR_CONTROL = 1, + DRM_MINOR_RENDER = 2, + DRM_MINOR_ACCEL = 32, +}; + +struct drm_memory_stats { + u64 shared; + u64 private; + u64 resident; + u64 purgeable; + u64 active; +}; + +enum dma_resv_usage { + DMA_RESV_USAGE_KERNEL = 0, + DMA_RESV_USAGE_WRITE = 1, + DMA_RESV_USAGE_READ = 2, + DMA_RESV_USAGE_BOOKKEEP = 3, +}; + +struct class_attribute_string { + struct class_attribute attr; + char *str; +}; + +struct drm_scanout_buffer { + const struct drm_format_info *format; + struct iosys_map map[4]; + unsigned int width; + unsigned int height; + unsigned int pitch[4]; + void (*set_pixel)(struct drm_scanout_buffer *, unsigned int, unsigned int, u32); +}; + +enum bus_notifier_event { + BUS_NOTIFY_ADD_DEVICE = 0, + BUS_NOTIFY_DEL_DEVICE = 1, + BUS_NOTIFY_REMOVED_DEVICE = 2, + BUS_NOTIFY_BIND_DRIVER = 3, + BUS_NOTIFY_BOUND_DRIVER = 4, + BUS_NOTIFY_UNBIND_DRIVER = 5, + BUS_NOTIFY_UNBOUND_DRIVER = 6, + BUS_NOTIFY_DRIVER_NOT_BOUND = 7, +}; + +struct device_attach_data { + struct device *dev; + bool check_async; + bool want_async; + bool have_async; +}; + +struct devres_node { + struct list_head entry; + dr_release_t release; + const char *name; + size_t size; +}; + +struct devres { + struct devres_node node; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + u8 data[0]; +}; + +struct devres_group { + struct devres_node node[2]; + void *id; + int color; +}; + +struct action_devres { + void *data; + void (*action)(void *); +}; + +struct pages_devres { + long unsigned int addr; + unsigned int order; +}; + +struct soc_device_attribute { + const char *machine; + const char *family; + const char *revision; + const char *serial_number; + const char *soc_id; + const void *data; + const struct attribute_group *custom_attr_group; +}; + +struct soc_device { + struct device dev; + struct soc_device_attribute *attr; + int soc_dev_num; +}; + +struct trace_event_raw_dma_fence { + struct trace_entry ent; + u32 __data_loc_driver; + u32 __data_loc_timeline; + unsigned int context; + unsigned int seqno; + char __data[0]; +}; + +struct trace_event_data_offsets_dma_fence { + u32 driver; + const void *driver_ptr_; + u32 timeline; + const void *timeline_ptr_; +}; + +typedef void (*btf_trace_dma_fence_emit)(void *, struct dma_fence *); + +typedef void (*btf_trace_dma_fence_init)(void *, struct dma_fence *); + +typedef void (*btf_trace_dma_fence_destroy)(void *, struct dma_fence *); + +typedef void (*btf_trace_dma_fence_enable_signal)(void *, struct dma_fence *); + +typedef void (*btf_trace_dma_fence_signaled)(void *, struct dma_fence *); + +typedef void (*btf_trace_dma_fence_wait_start)(void *, struct dma_fence *); + +typedef void (*btf_trace_dma_fence_wait_end)(void *, struct dma_fence *); + +struct default_wait_cb { + struct dma_fence_cb base; + struct task_struct *task; +}; + +struct flow_dissector_key { + enum flow_dissector_key_id key_id; + size_t offset; +}; + +struct ifbond { + __s32 bond_mode; + __s32 num_slaves; + __s32 miimon; +}; + +typedef struct ifbond ifbond; + +struct ifslave { + __s32 slave_id; + char slave_name[16]; + __s8 link; + __s8 state; + __u32 link_failure_count; +}; + +typedef struct ifslave ifslave; + +enum netdev_lag_tx_type { + NETDEV_LAG_TX_TYPE_UNKNOWN = 0, + NETDEV_LAG_TX_TYPE_RANDOM = 1, + NETDEV_LAG_TX_TYPE_BROADCAST = 2, + NETDEV_LAG_TX_TYPE_ROUNDROBIN = 3, + NETDEV_LAG_TX_TYPE_ACTIVEBACKUP = 4, + NETDEV_LAG_TX_TYPE_HASH = 5, +}; + +enum netdev_lag_hash { + NETDEV_LAG_HASH_NONE = 0, + NETDEV_LAG_HASH_L2 = 1, + NETDEV_LAG_HASH_L34 = 2, + NETDEV_LAG_HASH_L23 = 3, + NETDEV_LAG_HASH_E23 = 4, + NETDEV_LAG_HASH_E34 = 5, + NETDEV_LAG_HASH_VLAN_SRCMAC = 6, + NETDEV_LAG_HASH_UNKNOWN = 7, +}; + +struct netdev_lag_upper_info { + enum netdev_lag_tx_type tx_type; + enum netdev_lag_hash hash_type; +}; + +struct netdev_bonding_info { + ifslave slave; + ifbond master; +}; + +enum hwtstamp_flags { + HWTSTAMP_FLAG_BONDED_PHC_INDEX = 1, + HWTSTAMP_FLAG_LAST = 1, + HWTSTAMP_FLAG_MASK = 1, +}; + +struct bond_option { + int id; + const char *name; + const char *desc; + u32 flags; + long unsigned int unsuppmodes; + const struct bond_opt_value *values; + int (*set)(struct bonding *, const struct bond_opt_value *); +}; + +struct bond_vlan_tag { + __be16 vlan_proto; + short unsigned int vlan_id; +}; + +struct dev_ext_attribute { + struct device_attribute attr; + void *var; +}; + +struct mdio_board_info { + const char *bus_id; + char modalias[32]; + int mdio_addr; + const void *platform_data; +}; + +struct trace_event_raw_mdio_access { + struct trace_entry ent; + char busid[61]; + char read; + u8 addr; + u16 val; + unsigned int regnum; + char __data[0]; +}; + +struct trace_event_data_offsets_mdio_access {}; + +typedef void (*btf_trace_mdio_access)(void *, struct mii_bus *, char, u8, unsigned int, u16, int); + +struct mdio_bus_stat_attr { + int addr; + unsigned int field_offset; +}; + +struct vxlan_vni_stats { + u64 rx_packets; + u64 rx_bytes; + u64 rx_drops; + u64 rx_errors; + u64 tx_packets; + u64 tx_bytes; + u64 tx_drops; + u64 tx_errors; +}; + +struct vxlan_vni_stats_pcpu { + struct vxlan_vni_stats stats; + struct u64_stats_sync syncp; +}; + +struct vxlan_vni_node { + struct rhash_head vnode; + struct vxlan_dev_node hlist4; + struct vxlan_dev_node hlist6; + struct list_head vlist; + __be32 vni; + union vxlan_addr remote_ip; + struct vxlan_vni_stats_pcpu *stats; + struct callback_head rcu; +}; + +struct vxlan_net { + struct list_head vxlan_list; + struct hlist_head sock_list[256]; + spinlock_t sock_lock; + struct notifier_block nexthop_notifier_block; +}; + +struct usb_mon_operations { + void (*urb_submit)(struct usb_bus *, struct urb *); + void (*urb_submit_error)(struct usb_bus *, struct urb *, int); + void (*urb_complete)(struct usb_bus *, struct urb *, int); +}; + +enum usb_phy_type { + USB_PHY_TYPE_UNDEFINED = 0, + USB_PHY_TYPE_USB2 = 1, + USB_PHY_TYPE_USB3 = 2, +}; + +enum usb_phy_events { + USB_EVENT_NONE = 0, + USB_EVENT_VBUS = 1, + USB_EVENT_ID = 2, + USB_EVENT_CHARGER = 3, + USB_EVENT_ENUMERATED = 4, +}; + +struct extcon_dev; + +enum usb_charger_type { + UNKNOWN_TYPE = 0, + SDP_TYPE = 1, + DCP_TYPE = 2, + CDP_TYPE = 3, + ACA_TYPE = 4, +}; + +enum usb_charger_state { + USB_CHARGER_DEFAULT = 0, + USB_CHARGER_PRESENT = 1, + USB_CHARGER_ABSENT = 2, +}; + +struct usb_charger_current { + unsigned int sdp_min; + unsigned int sdp_max; + unsigned int dcp_min; + unsigned int dcp_max; + unsigned int cdp_min; + unsigned int cdp_max; + unsigned int aca_min; + unsigned int aca_max; +}; + +struct usb_otg; + +struct usb_phy_io_ops; + +struct usb_phy { + struct device *dev; + const char *label; + unsigned int flags; + enum usb_phy_type type; + enum usb_phy_events last_event; + struct usb_otg *otg; + struct device *io_dev; + struct usb_phy_io_ops *io_ops; + void *io_priv; + struct extcon_dev *edev; + struct extcon_dev *id_edev; + struct notifier_block vbus_nb; + struct notifier_block id_nb; + struct notifier_block type_nb; + enum usb_charger_type chg_type; + enum usb_charger_state chg_state; + struct usb_charger_current chg_cur; + struct work_struct chg_work; + struct atomic_notifier_head notifier; + u16 port_status; + u16 port_change; + struct list_head head; + int (*init)(struct usb_phy *); + void (*shutdown)(struct usb_phy *); + int (*set_vbus)(struct usb_phy *, int); + int (*set_power)(struct usb_phy *, unsigned int); + int (*set_suspend)(struct usb_phy *, int); + int (*set_wakeup)(struct usb_phy *, bool); + int (*notify_connect)(struct usb_phy *, enum usb_device_speed); + int (*notify_disconnect)(struct usb_phy *, enum usb_device_speed); + enum usb_charger_type (*charger_detect)(struct usb_phy *); +}; + +struct usb_ehci_pdata { + int caps_offset; + unsigned int has_tt: 1; + unsigned int has_synopsys_hc_bug: 1; + unsigned int big_endian_desc: 1; + unsigned int big_endian_mmio: 1; + unsigned int no_io_watchdog: 1; + unsigned int reset_on_resume: 1; + unsigned int dma_mask_64: 1; + unsigned int spurious_oc: 1; + int (*power_on)(struct platform_device *); + void (*power_off)(struct platform_device *); + void (*power_suspend)(struct platform_device *); + int (*pre_setup)(struct usb_hcd *); +}; + +enum usb_otg_state { + OTG_STATE_UNDEFINED = 0, + OTG_STATE_B_IDLE = 1, + OTG_STATE_B_SRP_INIT = 2, + OTG_STATE_B_PERIPHERAL = 3, + OTG_STATE_B_WAIT_ACON = 4, + OTG_STATE_B_HOST = 5, + OTG_STATE_A_IDLE = 6, + OTG_STATE_A_WAIT_VRISE = 7, + OTG_STATE_A_WAIT_BCON = 8, + OTG_STATE_A_HOST = 9, + OTG_STATE_A_SUSPEND = 10, + OTG_STATE_A_PERIPHERAL = 11, + OTG_STATE_A_WAIT_VFALL = 12, + OTG_STATE_A_VBUS_ERR = 13, +}; + +struct usb_phy_io_ops { + int (*read)(struct usb_phy *, u32); + int (*write)(struct usb_phy *, u32, u32); +}; + +struct usb_gadget; + +struct usb_otg { + u8 default_a; + struct phy *phy; + struct usb_phy *usb_phy; + struct usb_bus *host; + struct usb_gadget *gadget; + enum usb_otg_state state; + int (*set_host)(struct usb_otg *, struct usb_bus *); + int (*set_peripheral)(struct usb_otg *, struct usb_gadget *); + int (*set_vbus)(struct usb_otg *, bool); + int (*start_srp)(struct usb_otg *); + int (*start_hnp)(struct usb_otg *); +}; + +struct ehci_platform_priv { + struct clk *clks[4]; + struct reset_control *rsts; + bool reset_on_resume; + bool quirk_poll; + struct timer_list poll_timer; + struct delayed_work poll_work; +}; + +struct usb_onetouch { + char name[128]; + char phys[64]; + struct input_dev *dev; + struct usb_device *udev; + struct urb *irq; + unsigned char *data; + dma_addr_t data_dma; + unsigned int is_open: 1; +}; + +struct usb_irda_cs_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __le16 bcdSpecRevision; + __u8 bmDataSize; + __u8 bmWindowSize; + __u8 bmMinTurnaroundTime; + __le16 wBaudRate; + __u8 bmAdditionalBOFs; + __u8 bIrdaRateSniff; + __u8 bMaxUnicastList; +} __attribute__((packed)); + +struct xr_txrx_clk_mask { + u16 tx; + u16 rx0; + u16 rx1; +}; + +struct xr_type { + int reg_width; + u8 reg_recipient; + u8 set_reg; + u8 get_reg; + u16 uart_enable; + u16 flow_control; + u16 xon_char; + u16 xoff_char; + u16 tx_break; + u16 gpio_mode; + u16 gpio_direction; + u16 gpio_set; + u16 gpio_clear; + u16 gpio_status; + u16 tx_fifo_reset; + u16 rx_fifo_reset; + u16 custom_driver; + bool have_5_6_bit_mode; + bool have_xmit_toggle; + int (*enable)(struct usb_serial_port *); + int (*disable)(struct usb_serial_port *); + int (*fifo_reset)(struct usb_serial_port *); + void (*set_line_settings)(struct tty_struct *, struct usb_serial_port *, const struct ktermios *); +}; + +enum xr_type_id { + XR21V141X = 0, + XR21B142X = 1, + XR21B1411 = 2, + XR2280X = 3, + XR_TYPE_COUNT = 4, +}; + +struct xr_data { + const struct xr_type *type; + u8 channel; + struct serial_rs485 rs485; +}; + +struct io_err_c { + struct dm_dev *dev; + sector_t start; +}; + +struct of_bus___2 { + void (*count_cells)(const void *, int, int *, int *); + u64 (*map)(__be32 *, const __be32 *, int, int, int); + int (*translate)(__be32 *, u64, int); +}; + +struct of_phandle_iterator { + const char *cells_name; + int cell_count; + const struct device_node *parent; + const __be32 *list_end; + const __be32 *phandle_end; + const __be32 *cur; + uint32_t cur_count; + phandle phandle; + struct device_node *node; +}; + +struct of_intc_desc { + struct list_head list; + of_irq_init_cb_t irq_init_cb; + struct device_node *dev; + struct device_node *interrupt_parent; +}; + +struct platform_mhu_link { + int irq; + void *tx_reg; + void *rx_reg; +}; + +struct platform_mhu { + void *base; + struct platform_mhu_link mlink[3]; + struct mbox_chan chan[3]; + struct mbox_controller mbox; +}; + +enum { + INET_DIAG_REQ_NONE = 0, + INET_DIAG_REQ_BYTECODE = 1, + INET_DIAG_REQ_SK_BPF_STORAGES = 2, + INET_DIAG_REQ_PROTOCOL = 3, + __INET_DIAG_REQ_MAX = 4, +}; + +struct sock_diag_req { + __u8 sdiag_family; + __u8 sdiag_protocol; +}; + +enum { + SK_MEMINFO_RMEM_ALLOC = 0, + SK_MEMINFO_RCVBUF = 1, + SK_MEMINFO_WMEM_ALLOC = 2, + SK_MEMINFO_SNDBUF = 3, + SK_MEMINFO_FWD_ALLOC = 4, + SK_MEMINFO_WMEM_QUEUED = 5, + SK_MEMINFO_OPTMEM = 6, + SK_MEMINFO_BACKLOG = 7, + SK_MEMINFO_DROPS = 8, + SK_MEMINFO_VARS = 9, +}; + +enum sknetlink_groups { + SKNLGRP_NONE = 0, + SKNLGRP_INET_TCP_DESTROY = 1, + SKNLGRP_INET_UDP_DESTROY = 2, + SKNLGRP_INET6_TCP_DESTROY = 3, + SKNLGRP_INET6_UDP_DESTROY = 4, + __SKNLGRP_MAX = 5, +}; + +struct sock_diag_handler { + struct module *owner; + __u8 family; + int (*dump)(struct sk_buff *, struct nlmsghdr *); + int (*get_info)(struct sk_buff *, struct sock *); + int (*destroy)(struct sk_buff *, struct nlmsghdr *); +}; + +struct sock_diag_inet_compat { + struct module *owner; + int (*fn)(struct sk_buff *, struct nlmsghdr *); +}; + +struct broadcast_sk { + struct sock *sk; + struct work_struct work; +}; + +struct xdp_frame_bulk { + int count; + void *xa; + void *q[16]; +}; + +struct xdp_attachment_info { + struct bpf_prog *prog; + u32 flags; +}; + +struct xdp_mem_allocator { + struct xdp_mem_info mem; + union { + void *allocator; + struct page_pool *page_pool; + }; + struct rhash_head node; + struct callback_head rcu; +}; + +struct llc_pdu_sn { + u8 dsap; + u8 ssap; + u8 ctrl_1; + u8 ctrl_2; +}; + +enum { + TCA_NAT_UNSPEC = 0, + TCA_NAT_PARMS = 1, + TCA_NAT_TM = 2, + TCA_NAT_PAD = 3, + __TCA_NAT_MAX = 4, +}; + +struct tc_nat { + __u32 index; + __u32 capab; + int action; + int refcnt; + int bindcnt; + __be32 old_addr; + __be32 new_addr; + __be32 mask; + __u32 flags; +}; + +struct tcf_nat_parms { + __be32 old_addr; + __be32 new_addr; + __be32 mask; + u32 flags; + struct callback_head rcu; +}; + +struct tcf_nat { + struct tc_action common; + struct tcf_nat_parms *parms; + long: 64; +}; + +enum { + TCA_RED_UNSPEC = 0, + TCA_RED_PARMS = 1, + TCA_RED_STAB = 2, + TCA_RED_MAX_P = 3, + TCA_RED_FLAGS = 4, + TCA_RED_EARLY_DROP_BLOCK = 5, + TCA_RED_MARK_BLOCK = 6, + __TCA_RED_MAX = 7, +}; + +struct tc_red_qopt { + __u32 limit; + __u32 qth_min; + __u32 qth_max; + unsigned char Wlog; + unsigned char Plog; + unsigned char Scell_log; + unsigned char flags; +}; + +struct tc_red_xstats { + __u32 early; + __u32 pdrop; + __u32 other; + __u32 marked; +}; + +struct tc_qopt_offload_stats { + struct gnet_stats_basic_sync *bstats; + struct gnet_stats_queue *qstats; +}; + +enum tc_red_command { + TC_RED_REPLACE = 0, + TC_RED_DESTROY = 1, + TC_RED_STATS = 2, + TC_RED_XSTATS = 3, + TC_RED_GRAFT = 4, +}; + +struct tc_red_qopt_offload_params { + u32 min; + u32 max; + u32 probability; + u32 limit; + bool is_ecn; + bool is_harddrop; + bool is_nodrop; + struct gnet_stats_queue *qstats; +}; + +struct tc_red_qopt_offload { + enum tc_red_command command; + u32 handle; + u32 parent; + union { + struct tc_red_qopt_offload_params set; + struct tc_qopt_offload_stats stats; + struct red_stats *xstats; + u32 child_handle; + }; +}; + +struct red_sched_data { + u32 limit; + unsigned char flags; + unsigned char userbits; + struct timer_list adapt_timer; + struct Qdisc *sch; + struct red_parms parms; + struct red_vars vars; + struct red_stats stats; + struct Qdisc *qdisc; + struct tcf_qevent qe_early_drop; + struct tcf_qevent qe_mark; +}; + +struct rnd_state { + __u32 s1; + __u32 s2; + __u32 s3; + __u32 s4; +}; + +enum { + TCA_NETEM_UNSPEC = 0, + TCA_NETEM_CORR = 1, + TCA_NETEM_DELAY_DIST = 2, + TCA_NETEM_REORDER = 3, + TCA_NETEM_CORRUPT = 4, + TCA_NETEM_LOSS = 5, + TCA_NETEM_RATE = 6, + TCA_NETEM_ECN = 7, + TCA_NETEM_RATE64 = 8, + TCA_NETEM_PAD = 9, + TCA_NETEM_LATENCY64 = 10, + TCA_NETEM_JITTER64 = 11, + TCA_NETEM_SLOT = 12, + TCA_NETEM_SLOT_DIST = 13, + TCA_NETEM_PRNG_SEED = 14, + __TCA_NETEM_MAX = 15, +}; + +struct tc_netem_qopt { + __u32 latency; + __u32 limit; + __u32 loss; + __u32 gap; + __u32 duplicate; + __u32 jitter; +}; + +struct tc_netem_corr { + __u32 delay_corr; + __u32 loss_corr; + __u32 dup_corr; +}; + +struct tc_netem_reorder { + __u32 probability; + __u32 correlation; +}; + +struct tc_netem_corrupt { + __u32 probability; + __u32 correlation; +}; + +struct tc_netem_rate { + __u32 rate; + __s32 packet_overhead; + __u32 cell_size; + __s32 cell_overhead; +}; + +struct tc_netem_slot { + __s64 min_delay; + __s64 max_delay; + __s32 max_packets; + __s32 max_bytes; + __s64 dist_delay; + __s64 dist_jitter; +}; + +enum { + NETEM_LOSS_UNSPEC = 0, + NETEM_LOSS_GI = 1, + NETEM_LOSS_GE = 2, + __NETEM_LOSS_MAX = 3, +}; + +struct tc_netem_gimodel { + __u32 p13; + __u32 p31; + __u32 p32; + __u32 p14; + __u32 p23; +}; + +struct tc_netem_gemodel { + __u32 p; + __u32 r; + __u32 h; + __u32 k1; +}; + +typedef u64 psched_time_t; + +struct disttable { + u32 size; + s16 table[0]; +}; + +struct crndstate { + u32 last; + u32 rho; +}; + +struct prng { + u64 seed; + struct rnd_state prng_state; +}; + +struct clgstate { + u8 state; + u32 a1; + u32 a2; + u32 a3; + u32 a4; + u32 a5; +}; + +struct slotstate { + u64 slot_next; + s32 packets_left; + s32 bytes_left; +}; + +struct netem_sched_data { + struct rb_root t_root; + struct sk_buff *t_head; + struct sk_buff *t_tail; + u32 t_len; + struct Qdisc *qdisc; + struct qdisc_watchdog watchdog; + s64 latency; + s64 jitter; + u32 loss; + u32 ecn; + u32 limit; + u32 counter; + u32 gap; + u32 duplicate; + u32 reorder; + u32 corrupt; + u64 rate; + s32 packet_overhead; + u32 cell_size; + struct reciprocal_value cell_size_reciprocal; + s32 cell_overhead; + struct crndstate delay_cor; + struct crndstate loss_cor; + struct crndstate dup_cor; + struct crndstate reorder_cor; + struct crndstate corrupt_cor; + struct prng prng; + struct disttable *delay_dist; + enum { + CLG_RANDOM = 0, + CLG_4_STATES = 1, + CLG_GILB_ELL = 2, + } loss_model; + enum { + TX_IN_GAP_PERIOD = 1, + TX_IN_BURST_PERIOD = 2, + LOST_IN_GAP_PERIOD = 3, + LOST_IN_BURST_PERIOD = 4, + } _4_state_model; + enum { + GOOD_STATE = 1, + BAD_STATE = 2, + } GE_state_model; + struct clgstate clg; + struct tc_netem_slot slot_config; + struct slotstate slot; + struct disttable *slot_dist; +}; + +struct netem_skb_cb { + u64 time_to_send; +}; + +struct netlink_diag_req { + __u8 sdiag_family; + __u8 sdiag_protocol; + __u16 pad; + __u32 ndiag_ino; + __u32 ndiag_show; + __u32 ndiag_cookie[2]; +}; + +struct netlink_diag_msg { + __u8 ndiag_family; + __u8 ndiag_type; + __u8 ndiag_protocol; + __u8 ndiag_state; + __u32 ndiag_portid; + __u32 ndiag_dst_portid; + __u32 ndiag_dst_group; + __u32 ndiag_ino; + __u32 ndiag_cookie[2]; +}; + +enum { + NETLINK_DIAG_MEMINFO = 0, + NETLINK_DIAG_GROUPS = 1, + NETLINK_DIAG_RX_RING = 2, + NETLINK_DIAG_TX_RING = 3, + NETLINK_DIAG_FLAGS = 4, + __NETLINK_DIAG_MAX = 5, +}; + +enum { + NETLINK_F_KERNEL_SOCKET = 0, + NETLINK_F_RECV_PKTINFO = 1, + NETLINK_F_BROADCAST_SEND_ERROR = 2, + NETLINK_F_RECV_NO_ENOBUFS = 3, + NETLINK_F_LISTEN_ALL_NSID = 4, + NETLINK_F_CAP_ACK = 5, + NETLINK_F_EXT_ACK = 6, + NETLINK_F_STRICT_CHK = 7, +}; + +struct netlink_sock { + struct sock sk; + long unsigned int flags; + u32 portid; + u32 dst_portid; + u32 dst_group; + u32 subscriptions; + u32 ngroups; + long unsigned int *groups; + long unsigned int state; + size_t max_recvmsg_len; + wait_queue_head_t wait; + bool bound; + bool cb_running; + int dump_done_errno; + struct netlink_callback cb; + struct mutex nl_cb_mutex; + void (*netlink_rcv)(struct sk_buff *); + int (*netlink_bind)(struct net *, int); + void (*netlink_unbind)(struct net *, int); + void (*netlink_release)(struct sock *, long unsigned int *); + struct module *module; + struct rhash_head node; + struct callback_head rcu; +}; + +struct listeners; + +struct netlink_table { + struct rhashtable hash; + struct hlist_head mc_list; + struct listeners *listeners; + unsigned int flags; + unsigned int groups; + struct mutex *cb_mutex; + struct module *module; + int (*bind)(struct net *, int); + void (*unbind)(struct net *, int); + void (*release)(struct sock *, long unsigned int *); + int registered; +}; + +struct wol_reply_data { + struct ethnl_reply_data base; + struct ethtool_wolinfo wol; + bool show_sopass; +}; + +struct netlink_notify { + struct net *net; + u32 portid; + int protocol; +}; + +struct nfnl_ct_hook { + size_t (*build_size)(const struct nf_conn *); + int (*build)(struct sk_buff *, struct nf_conn *, enum ip_conntrack_info, u_int16_t, u_int16_t); + int (*parse)(const struct nlattr *, struct nf_conn *); + int (*attach_expect)(const struct nlattr *, struct nf_conn *, u32, u32); + void (*seq_adjust)(struct sk_buff *, struct nf_conn *, enum ip_conntrack_info, s32); +}; + +enum nfulnl_msg_types { + NFULNL_MSG_PACKET = 0, + NFULNL_MSG_CONFIG = 1, + NFULNL_MSG_MAX = 2, +}; + +struct nfulnl_msg_packet_hdr { + __be16 hw_protocol; + __u8 hook; + __u8 _pad; +}; + +struct nfulnl_msg_packet_hw { + __be16 hw_addrlen; + __u16 _pad; + __u8 hw_addr[8]; +}; + +struct nfulnl_msg_packet_timestamp { + __be64 sec; + __be64 usec; +}; + +enum nfulnl_vlan_attr { + NFULA_VLAN_UNSPEC = 0, + NFULA_VLAN_PROTO = 1, + NFULA_VLAN_TCI = 2, + __NFULA_VLAN_MAX = 3, +}; + +enum nfulnl_attr_type { + NFULA_UNSPEC = 0, + NFULA_PACKET_HDR = 1, + NFULA_MARK = 2, + NFULA_TIMESTAMP = 3, + NFULA_IFINDEX_INDEV = 4, + NFULA_IFINDEX_OUTDEV = 5, + NFULA_IFINDEX_PHYSINDEV = 6, + NFULA_IFINDEX_PHYSOUTDEV = 7, + NFULA_HWADDR = 8, + NFULA_PAYLOAD = 9, + NFULA_PREFIX = 10, + NFULA_UID = 11, + NFULA_SEQ = 12, + NFULA_SEQ_GLOBAL = 13, + NFULA_GID = 14, + NFULA_HWTYPE = 15, + NFULA_HWHEADER = 16, + NFULA_HWLEN = 17, + NFULA_CT = 18, + NFULA_CT_INFO = 19, + NFULA_VLAN = 20, + NFULA_L2HDR = 21, + __NFULA_MAX = 22, +}; + +enum nfulnl_msg_config_cmds { + NFULNL_CFG_CMD_NONE = 0, + NFULNL_CFG_CMD_BIND = 1, + NFULNL_CFG_CMD_UNBIND = 2, + NFULNL_CFG_CMD_PF_BIND = 3, + NFULNL_CFG_CMD_PF_UNBIND = 4, +}; + +struct nfulnl_msg_config_cmd { + __u8 command; +}; + +struct nfulnl_msg_config_mode { + __be32 copy_range; + __u8 copy_mode; + __u8 _pad; +} __attribute__((packed)); + +enum nfulnl_attr_config { + NFULA_CFG_UNSPEC = 0, + NFULA_CFG_CMD = 1, + NFULA_CFG_MODE = 2, + NFULA_CFG_NLBUFSIZ = 3, + NFULA_CFG_TIMEOUT = 4, + NFULA_CFG_QTHRESH = 5, + NFULA_CFG_FLAGS = 6, + __NFULA_CFG_MAX = 7, +}; + +struct nfulnl_instance { + struct hlist_node hlist; + spinlock_t lock; + refcount_t use; + unsigned int qlen; + struct sk_buff *skb; + struct timer_list timer; + struct net *net; + netns_tracker ns_tracker; + struct user_namespace *peer_user_ns; + u32 peer_portid; + unsigned int flushtimeout; + unsigned int nlbufsiz; + unsigned int qthreshold; + u_int32_t copy_range; + u_int32_t seq; + u_int16_t group_num; + u_int16_t flags; + u_int8_t copy_mode; + struct callback_head rcu; +}; + +struct nfnl_log_net { + spinlock_t instances_lock; + struct hlist_head instance_table[16]; + atomic_t global_seq; +}; + +struct iter_state { + struct seq_net_private p; + unsigned int bucket; +}; + +struct ip_auth_hdr { + __u8 nexthdr; + __u8 hdrlen; + __be16 reserved; + __be32 spi; + __be32 seq_no; + __u8 auth_data[0]; +}; + +struct arppayload { + unsigned char mac_src[6]; + unsigned char ip_src[4]; + unsigned char mac_dst[6]; + unsigned char ip_dst[4]; +}; + +enum nft_range_ops { + NFT_RANGE_EQ = 0, + NFT_RANGE_NEQ = 1, +}; + +enum nft_range_attributes { + NFTA_RANGE_UNSPEC = 0, + NFTA_RANGE_SREG = 1, + NFTA_RANGE_OP = 2, + NFTA_RANGE_FROM_DATA = 3, + NFTA_RANGE_TO_DATA = 4, + __NFTA_RANGE_MAX = 5, +}; + +struct nft_range_expr { + struct nft_data data_from; + struct nft_data data_to; + u8 sreg; + u8 len; + enum nft_range_ops op: 8; +}; + +enum flow_cls_command { + FLOW_CLS_REPLACE = 0, + FLOW_CLS_DESTROY = 1, + FLOW_CLS_STATS = 2, + FLOW_CLS_TMPLT_CREATE = 3, + FLOW_CLS_TMPLT_DESTROY = 4, +}; + +struct flow_cls_offload { + struct flow_cls_common_offload common; + enum flow_cls_command command; + bool use_act_stats; + long unsigned int cookie; + struct flow_rule *rule; + struct flow_stats stats; + u32 classid; +}; + +enum nf_tables_msg_types { + NFT_MSG_NEWTABLE = 0, + NFT_MSG_GETTABLE = 1, + NFT_MSG_DELTABLE = 2, + NFT_MSG_NEWCHAIN = 3, + NFT_MSG_GETCHAIN = 4, + NFT_MSG_DELCHAIN = 5, + NFT_MSG_NEWRULE = 6, + NFT_MSG_GETRULE = 7, + NFT_MSG_DELRULE = 8, + NFT_MSG_NEWSET = 9, + NFT_MSG_GETSET = 10, + NFT_MSG_DELSET = 11, + NFT_MSG_NEWSETELEM = 12, + NFT_MSG_GETSETELEM = 13, + NFT_MSG_DELSETELEM = 14, + NFT_MSG_NEWGEN = 15, + NFT_MSG_GETGEN = 16, + NFT_MSG_TRACE = 17, + NFT_MSG_NEWOBJ = 18, + NFT_MSG_GETOBJ = 19, + NFT_MSG_DELOBJ = 20, + NFT_MSG_GETOBJ_RESET = 21, + NFT_MSG_NEWFLOWTABLE = 22, + NFT_MSG_GETFLOWTABLE = 23, + NFT_MSG_DELFLOWTABLE = 24, + NFT_MSG_GETRULE_RESET = 25, + NFT_MSG_DESTROYTABLE = 26, + NFT_MSG_DESTROYCHAIN = 27, + NFT_MSG_DESTROYRULE = 28, + NFT_MSG_DESTROYSET = 29, + NFT_MSG_DESTROYSETELEM = 30, + NFT_MSG_DESTROYOBJ = 31, + NFT_MSG_DESTROYFLOWTABLE = 32, + NFT_MSG_GETSETELEM_RESET = 33, + NFT_MSG_MAX = 34, +}; + +struct nft_rule { + struct list_head list; + u64 handle: 42; + u64 genmask: 2; + u64 dlen: 12; + u64 udata: 1; + unsigned char data[0]; +}; + +struct nft_trans { + struct list_head list; + struct net *net; + struct nft_table *table; + int msg_type; + u32 seq; + u16 flags; + u8 report: 1; + u8 put_net: 1; +}; + +struct nft_trans_binding { + struct nft_trans nft_trans; + struct list_head binding_list; +}; + +struct nft_trans_rule { + struct nft_trans nft_trans; + struct nft_rule *rule; + struct nft_chain *chain; + struct nft_flow_rule *flow; + u32 rule_id; + bool bound; +}; + +struct nft_trans_chain { + struct nft_trans_binding nft_trans_binding; + struct nft_chain *chain; + char *name; + struct nft_stats *stats; + u8 policy; + bool update; + bool bound; + u32 chain_id; + struct nft_base_chain *basechain; + struct list_head hook_list; +}; + +struct nft_offload_ethertype { + __be16 value; + __be16 mask; +}; + +enum nft_redir_attributes { + NFTA_REDIR_UNSPEC = 0, + NFTA_REDIR_REG_PROTO_MIN = 1, + NFTA_REDIR_REG_PROTO_MAX = 2, + NFTA_REDIR_FLAGS = 3, + __NFTA_REDIR_MAX = 4, +}; + +struct nf_nat_range { + unsigned int flags; + union nf_inet_addr min_addr; + union nf_inet_addr max_addr; + union nf_conntrack_man_proto min_proto; + union nf_conntrack_man_proto max_proto; +}; + +struct nft_redir { + u8 sreg_proto_min; + u8 sreg_proto_max; + u16 flags; +}; + +struct xt_classify_target_info { + __u32 priority; +}; + +enum { + XT_CONNTRACK_STATE = 1, + XT_CONNTRACK_PROTO = 2, + XT_CONNTRACK_ORIGSRC = 4, + XT_CONNTRACK_ORIGDST = 8, + XT_CONNTRACK_REPLSRC = 16, + XT_CONNTRACK_REPLDST = 32, + XT_CONNTRACK_STATUS = 64, + XT_CONNTRACK_EXPIRES = 128, + XT_CONNTRACK_ORIGSRC_PORT = 256, + XT_CONNTRACK_ORIGDST_PORT = 512, + XT_CONNTRACK_REPLSRC_PORT = 1024, + XT_CONNTRACK_REPLDST_PORT = 2048, + XT_CONNTRACK_DIRECTION = 4096, + XT_CONNTRACK_STATE_ALIAS = 8192, +}; + +struct xt_conntrack_mtinfo1 { + union nf_inet_addr origsrc_addr; + union nf_inet_addr origsrc_mask; + union nf_inet_addr origdst_addr; + union nf_inet_addr origdst_mask; + union nf_inet_addr replsrc_addr; + union nf_inet_addr replsrc_mask; + union nf_inet_addr repldst_addr; + union nf_inet_addr repldst_mask; + __u32 expires_min; + __u32 expires_max; + __u16 l4proto; + __be16 origsrc_port; + __be16 origdst_port; + __be16 replsrc_port; + __be16 repldst_port; + __u16 match_flags; + __u16 invert_flags; + __u8 state_mask; + __u8 status_mask; +}; + +struct xt_conntrack_mtinfo2 { + union nf_inet_addr origsrc_addr; + union nf_inet_addr origsrc_mask; + union nf_inet_addr origdst_addr; + union nf_inet_addr origdst_mask; + union nf_inet_addr replsrc_addr; + union nf_inet_addr replsrc_mask; + union nf_inet_addr repldst_addr; + union nf_inet_addr repldst_mask; + __u32 expires_min; + __u32 expires_max; + __u16 l4proto; + __be16 origsrc_port; + __be16 origdst_port; + __be16 replsrc_port; + __be16 repldst_port; + __u16 match_flags; + __u16 invert_flags; + __u16 state_mask; + __u16 status_mask; +}; + +struct xt_conntrack_mtinfo3 { + union nf_inet_addr origsrc_addr; + union nf_inet_addr origsrc_mask; + union nf_inet_addr origdst_addr; + union nf_inet_addr origdst_mask; + union nf_inet_addr replsrc_addr; + union nf_inet_addr replsrc_mask; + union nf_inet_addr repldst_addr; + union nf_inet_addr repldst_mask; + __u32 expires_min; + __u32 expires_max; + __u16 l4proto; + __u16 origsrc_port; + __u16 origdst_port; + __u16 replsrc_port; + __u16 repldst_port; + __u16 match_flags; + __u16 invert_flags; + __u16 state_mask; + __u16 status_mask; + __u16 origsrc_port_high; + __u16 origdst_port_high; + __u16 replsrc_port_high; + __u16 repldst_port_high; +}; + +struct xt_dccp_info { + __u16 dpts[2]; + __u16 spts[2]; + __u16 flags; + __u16 invflags; + __u16 typemask; + __u8 option; +}; + +enum { + XT_HASHLIMIT_HASH_DIP = 1, + XT_HASHLIMIT_HASH_DPT = 2, + XT_HASHLIMIT_HASH_SIP = 4, + XT_HASHLIMIT_HASH_SPT = 8, + XT_HASHLIMIT_INVERT = 16, + XT_HASHLIMIT_BYTES = 32, + XT_HASHLIMIT_RATE_MATCH = 64, +}; + +struct hashlimit_cfg3 { + __u64 avg; + __u64 burst; + __u32 mode; + __u32 size; + __u32 max; + __u32 gc_interval; + __u32 expire; + __u32 interval; + __u8 srcmask; + __u8 dstmask; +}; + +struct xt_hashlimit_htable { + struct hlist_node node; + refcount_t use; + u_int8_t family; + bool rnd_initialized; + struct hashlimit_cfg3 cfg; + spinlock_t lock; + u_int32_t rnd; + unsigned int count; + struct delayed_work gc_work; + struct proc_dir_entry *pde; + const char *name; + struct net *net; + struct hlist_head hash[0]; +}; + +struct hashlimit_cfg1 { + __u32 mode; + __u32 avg; + __u32 burst; + __u32 size; + __u32 max; + __u32 gc_interval; + __u32 expire; + __u8 srcmask; + __u8 dstmask; +}; + +struct hashlimit_cfg2 { + __u64 avg; + __u64 burst; + __u32 mode; + __u32 size; + __u32 max; + __u32 gc_interval; + __u32 expire; + __u8 srcmask; + __u8 dstmask; +}; + +struct xt_hashlimit_mtinfo1 { + char name[16]; + struct hashlimit_cfg1 cfg; + struct xt_hashlimit_htable *hinfo; +}; + +struct xt_hashlimit_mtinfo2 { + char name[255]; + struct hashlimit_cfg2 cfg; + struct xt_hashlimit_htable *hinfo; +}; + +struct xt_hashlimit_mtinfo3 { + char name[255]; + struct hashlimit_cfg3 cfg; + struct xt_hashlimit_htable *hinfo; +}; + +struct hashlimit_net { + struct hlist_head htables; + struct proc_dir_entry *ipt_hashlimit; + struct proc_dir_entry *ip6t_hashlimit; +}; + +struct dsthash_dst { + union { + struct { + __be32 src; + __be32 dst; + } ip; + struct { + __be32 src[4]; + __be32 dst[4]; + } ip6; + }; + __be16 src_port; + __be16 dst_port; +}; + +struct dsthash_ent { + struct hlist_node node; + struct dsthash_dst dst; + spinlock_t lock; + long unsigned int expires; + struct { + long unsigned int prev; + union { + struct { + u_int64_t credit; + u_int64_t credit_cap; + u_int64_t cost; + }; + struct { + u_int32_t interval; + u_int32_t prev_window; + u_int64_t current_rate; + u_int64_t rate; + int64_t burst; + }; + }; + } rateinfo; + struct callback_head rcu; +}; + +enum { + IPRANGE_SRC = 1, + IPRANGE_DST = 2, + IPRANGE_SRC_INV = 16, + IPRANGE_DST_INV = 32, +}; + +struct xt_iprange_mtinfo { + union nf_inet_addr src_min; + union nf_inet_addr src_max; + union nf_inet_addr dst_min; + union nf_inet_addr dst_max; + __u8 flags; +}; + +enum xt_statistic_mode { + XT_STATISTIC_MODE_RANDOM = 0, + XT_STATISTIC_MODE_NTH = 1, + __XT_STATISTIC_MODE_MAX = 2, +}; + +enum xt_statistic_flags { + XT_STATISTIC_INVERT = 1, +}; + +struct xt_statistic_priv; + +struct xt_statistic_info { + __u16 mode; + __u16 flags; + union { + struct { + __u32 probability; + } random; + struct { + __u32 every; + __u32 packet; + __u32 count; + } nth; + } u; + struct xt_statistic_priv *master; +}; + +struct xt_statistic_priv { + atomic_t count; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum { + MAC_UNSET = 0, + MAC_FILLED = 1, +}; + +struct bitmap_ipmac { + long unsigned int *members; + u32 first_ip; + u32 last_ip; + u32 elements; + size_t memsize; + struct timer_list gc; + struct ip_set *set; + unsigned char extensions[0]; +}; + +struct bitmap_ipmac_adt_elem { + unsigned char ether[6]; + u16 id; + u16 add_mac; +}; + +struct bitmap_ipmac_elem { + unsigned char ether[6]; + unsigned char filled; + long: 0; +}; + +struct ip_vs_wrr_mark { + struct ip_vs_dest *cl; + int cw; + int mw; + int di; + struct callback_head callback_head; +}; + +enum tcp_queue { + TCP_FRAG_IN_WRITE_QUEUE = 0, + TCP_FRAG_IN_RTX_QUEUE = 1, +}; + +enum tcp_ca_ack_event_flags { + CA_ACK_SLOWPATH = 1, + CA_ACK_WIN_UPDATE = 2, + CA_ACK_ECE = 4, +}; + +enum { + SCM_TSTAMP_SND = 0, + SCM_TSTAMP_SCHED = 1, + SCM_TSTAMP_ACK = 2, +}; + +struct tcp_sacktag_state { + u64 first_sackt; + u64 last_sackt; + u32 reord; + u32 sack_delivered; + int flag; + unsigned int mss_now; + struct rate_sample *rate; +}; + +struct ping_table { + struct hlist_head hash[64]; + spinlock_t lock; +}; + +enum { + IFLA_VTI_UNSPEC = 0, + IFLA_VTI_LINK = 1, + IFLA_VTI_IKEY = 2, + IFLA_VTI_OKEY = 3, + IFLA_VTI_LOCAL = 4, + IFLA_VTI_REMOTE = 5, + IFLA_VTI_FWMARK = 6, + __IFLA_VTI_MAX = 7, +}; + +struct ip_tunnel_6rd_parm { + struct in6_addr prefix; + __be32 relay_prefix; + u16 prefixlen; + u16 relay_prefixlen; +}; + +struct ip_tunnel_prl_entry { + struct ip_tunnel_prl_entry *next; + __be32 addr; + u16 flags; + struct callback_head callback_head; +}; + +struct ip_tunnel { + struct ip_tunnel *next; + struct hlist_node hash_node; + struct net_device *dev; + netdevice_tracker dev_tracker; + struct net *net; + long unsigned int err_time; + int err_count; + u32 i_seqno; + atomic_t o_seqno; + int tun_hlen; + u32 index; + u8 erspan_ver; + u8 dir; + u16 hwid; + struct dst_cache dst_cache; + struct ip_tunnel_parm_kern parms; + int mlink; + int encap_hlen; + int hlen; + struct ip_tunnel_encap encap; + struct ip_tunnel_6rd_parm ip6rd; + struct ip_tunnel_prl_entry *prl; + unsigned int prl_count; + unsigned int ip_tnl_net_id; + struct gro_cells gro_cells; + __u32 fwmark; + bool collect_md; + bool ignore_df; +}; + +struct ip_tunnel_net { + struct net_device *fb_tunnel_dev; + struct rtnl_link_ops *rtnl_link_ops; + struct hlist_head tunnels[128]; + struct ip_tunnel *collect_md_tun; + int type; +}; + +struct xfrm_mode_skb_cb { + struct xfrm_tunnel_skb_cb header; + __be16 id; + __be16 frag_off; + u8 ihl; + u8 tos; + u8 ttl; + u8 protocol; + u8 optlen; + u8 flow_lbl[3]; +}; + +struct nf_defrag_hook { + struct module *owner; + int (*enable)(struct net *); + void (*disable)(struct net *); +}; + +struct inet_diag_sockid { + __be16 idiag_sport; + __be16 idiag_dport; + __be32 idiag_src[4]; + __be32 idiag_dst[4]; + __u32 idiag_if; + __u32 idiag_cookie[2]; +}; + +struct inet_diag_req_v2 { + __u8 sdiag_family; + __u8 sdiag_protocol; + __u8 idiag_ext; + __u8 pad; + __u32 idiag_states; + struct inet_diag_sockid id; +}; + +struct inet_diag_msg { + __u8 idiag_family; + __u8 idiag_state; + __u8 idiag_timer; + __u8 idiag_retrans; + struct inet_diag_sockid id; + __u32 idiag_expires; + __u32 idiag_rqueue; + __u32 idiag_wqueue; + __u32 idiag_uid; + __u32 idiag_inode; +}; + +struct inet_diag_handler { + struct module *owner; + void (*dump)(struct sk_buff *, struct netlink_callback *, const struct inet_diag_req_v2 *); + int (*dump_one)(struct netlink_callback *, const struct inet_diag_req_v2 *); + void (*idiag_get_info)(struct sock *, struct inet_diag_msg *, void *); + int (*idiag_get_aux)(struct sock *, bool, struct sk_buff *); + size_t (*idiag_get_aux_size)(struct sock *, bool); + int (*destroy)(struct sk_buff *, const struct inet_diag_req_v2 *); + __u16 idiag_type; + __u16 idiag_info_size; +}; + +struct inet_diag_dump_data { + struct nlattr *req_nlas[4]; + struct bpf_sk_storage_diag *bpf_stg_diag; +}; + +struct unix_diag_req { + __u8 sdiag_family; + __u8 sdiag_protocol; + __u16 pad; + __u32 udiag_states; + __u32 udiag_ino; + __u32 udiag_show; + __u32 udiag_cookie[2]; +}; + +struct unix_diag_msg { + __u8 udiag_family; + __u8 udiag_type; + __u8 udiag_state; + __u8 pad; + __u32 udiag_ino; + __u32 udiag_cookie[2]; +}; + +enum { + UNIX_DIAG_NAME = 0, + UNIX_DIAG_VFS = 1, + UNIX_DIAG_PEER = 2, + UNIX_DIAG_ICONS = 3, + UNIX_DIAG_RQLEN = 4, + UNIX_DIAG_MEMINFO = 5, + UNIX_DIAG_SHUTDOWN = 6, + UNIX_DIAG_UID = 7, + __UNIX_DIAG_MAX = 8, +}; + +struct unix_diag_vfs { + __u32 udiag_vfs_ino; + __u32 udiag_vfs_dev; +}; + +struct unix_diag_rqlen { + __u32 udiag_rqueue; + __u32 udiag_wqueue; +}; + +struct group_source_req { + __u32 gsr_interface; + struct __kernel_sockaddr_storage gsr_group; + struct __kernel_sockaddr_storage gsr_source; +}; + +struct mld_msg { + struct icmp6hdr mld_hdr; + struct in6_addr mld_mca; +}; + +struct mld2_grec { + __u8 grec_type; + __u8 grec_auxwords; + __be16 grec_nsrcs; + struct in6_addr grec_mca; + struct in6_addr grec_src[0]; +}; + +struct mld2_report { + struct icmp6hdr mld2r_hdr; + struct mld2_grec mld2r_grec[0]; +}; + +struct mld2_query { + struct icmp6hdr mld2q_hdr; + struct in6_addr mld2q_mca; + __u8 mld2q_qrv: 3; + __u8 mld2q_suppress: 1; + __u8 mld2q_resv2: 4; + __u8 mld2q_qqic; + __be16 mld2q_nsrcs; + struct in6_addr mld2q_srcs[0]; +}; + +struct igmp6_mc_iter_state { + struct seq_net_private p; + struct net_device *dev; + struct inet6_dev *idev; +}; + +struct igmp6_mcf_iter_state { + struct seq_net_private p; + struct net_device *dev; + struct inet6_dev *idev; + struct ifmcaddr6 *im; +}; + +enum { + ILA_CSUM_ADJUST_TRANSPORT = 0, + ILA_CSUM_NEUTRAL_MAP = 1, + ILA_CSUM_NO_ACTION = 2, + ILA_CSUM_NEUTRAL_MAP_AUTO = 3, +}; + +struct ila_locator { + union { + __u8 v8[8]; + __be16 v16[4]; + __be32 v32[2]; + __be64 v64; + }; +}; + +struct ila_identifier { + union { + struct { + u8 __space: 4; + u8 csum_neutral: 1; + u8 type: 3; + u8 __space2[7]; + }; + __u8 v8[8]; + __be16 v16[4]; + __be32 v32[2]; + __be64 v64; + }; +}; + +struct ila_addr { + union { + struct in6_addr addr; + struct { + struct ila_locator loc; + struct ila_identifier ident; + }; + }; +}; + +struct ila_params { + struct ila_locator locator; + struct ila_locator locator_match; + __wsum csum_diff; + u8 csum_mode; + u8 ident_type; +}; + +struct ip6t_frag { + __u32 ids[2]; + __u32 hdrlen; + __u8 flags; + __u8 invflags; +}; + +struct ip_tunnel_parm { + char name[16]; + int link; + __be16 i_flags; + __be16 o_flags; + __be32 i_key; + __be32 o_key; + struct iphdr iph; +}; + +enum { + IFLA_IPTUN_UNSPEC = 0, + IFLA_IPTUN_LINK = 1, + IFLA_IPTUN_LOCAL = 2, + IFLA_IPTUN_REMOTE = 3, + IFLA_IPTUN_TTL = 4, + IFLA_IPTUN_TOS = 5, + IFLA_IPTUN_ENCAP_LIMIT = 6, + IFLA_IPTUN_FLOWINFO = 7, + IFLA_IPTUN_FLAGS = 8, + IFLA_IPTUN_PROTO = 9, + IFLA_IPTUN_PMTUDISC = 10, + IFLA_IPTUN_6RD_PREFIX = 11, + IFLA_IPTUN_6RD_RELAY_PREFIX = 12, + IFLA_IPTUN_6RD_PREFIXLEN = 13, + IFLA_IPTUN_6RD_RELAY_PREFIXLEN = 14, + IFLA_IPTUN_ENCAP_TYPE = 15, + IFLA_IPTUN_ENCAP_FLAGS = 16, + IFLA_IPTUN_ENCAP_SPORT = 17, + IFLA_IPTUN_ENCAP_DPORT = 18, + IFLA_IPTUN_COLLECT_METADATA = 19, + IFLA_IPTUN_FWMARK = 20, + __IFLA_IPTUN_MAX = 21, +}; + +struct ip_tunnel_prl { + __be32 addr; + __u16 flags; + __u16 __reserved; + __u32 datalen; + __u32 __reserved2; +}; + +struct ip_tunnel_6rd { + struct in6_addr prefix; + __be32 relay_prefix; + __u16 prefixlen; + __u16 relay_prefixlen; +}; + +struct sit_net { + struct ip_tunnel *tunnels_r_l[16]; + struct ip_tunnel *tunnels_r[16]; + struct ip_tunnel *tunnels_l[16]; + struct ip_tunnel *tunnels_wc[1]; + struct ip_tunnel **tunnels[4]; + struct net_device *fb_tunnel_dev; +}; + +struct sockaddr_pkt { + short unsigned int spkt_family; + unsigned char spkt_device[14]; + __be16 spkt_protocol; +}; + +struct sockaddr_ll { + short unsigned int sll_family; + __be16 sll_protocol; + int sll_ifindex; + short unsigned int sll_hatype; + unsigned char sll_pkttype; + unsigned char sll_halen; + unsigned char sll_addr[8]; +}; + +struct tpacket_stats { + unsigned int tp_packets; + unsigned int tp_drops; +}; + +struct tpacket_stats_v3 { + unsigned int tp_packets; + unsigned int tp_drops; + unsigned int tp_freeze_q_cnt; +}; + +struct tpacket_rollover_stats { + __u64 tp_all; + __u64 tp_huge; + __u64 tp_failed; +}; + +union tpacket_stats_u { + struct tpacket_stats stats1; + struct tpacket_stats_v3 stats3; +}; + +struct tpacket_auxdata { + __u32 tp_status; + __u32 tp_len; + __u32 tp_snaplen; + __u16 tp_mac; + __u16 tp_net; + __u16 tp_vlan_tci; + __u16 tp_vlan_tpid; +}; + +struct tpacket_hdr { + long unsigned int tp_status; + unsigned int tp_len; + unsigned int tp_snaplen; + short unsigned int tp_mac; + short unsigned int tp_net; + unsigned int tp_sec; + unsigned int tp_usec; +}; + +struct tpacket2_hdr { + __u32 tp_status; + __u32 tp_len; + __u32 tp_snaplen; + __u16 tp_mac; + __u16 tp_net; + __u32 tp_sec; + __u32 tp_nsec; + __u16 tp_vlan_tci; + __u16 tp_vlan_tpid; + __u8 tp_padding[4]; +}; + +struct tpacket_hdr_variant1 { + __u32 tp_rxhash; + __u32 tp_vlan_tci; + __u16 tp_vlan_tpid; + __u16 tp_padding; +}; + +struct tpacket3_hdr { + __u32 tp_next_offset; + __u32 tp_sec; + __u32 tp_nsec; + __u32 tp_snaplen; + __u32 tp_len; + __u32 tp_status; + __u16 tp_mac; + __u16 tp_net; + union { + struct tpacket_hdr_variant1 hv1; + }; + __u8 tp_padding[8]; +}; + +struct tpacket_bd_ts { + unsigned int ts_sec; + union { + unsigned int ts_usec; + unsigned int ts_nsec; + }; +}; + +struct tpacket_hdr_v1 { + __u32 block_status; + __u32 num_pkts; + __u32 offset_to_first_pkt; + __u32 blk_len; + __u64 seq_num; + struct tpacket_bd_ts ts_first_pkt; + struct tpacket_bd_ts ts_last_pkt; +}; + +union tpacket_bd_header_u { + struct tpacket_hdr_v1 bh1; +}; + +struct tpacket_block_desc { + __u32 version; + __u32 offset_to_priv; + union tpacket_bd_header_u hdr; +}; + +enum tpacket_versions { + TPACKET_V1 = 0, + TPACKET_V2 = 1, + TPACKET_V3 = 2, +}; + +struct tpacket_req { + unsigned int tp_block_size; + unsigned int tp_block_nr; + unsigned int tp_frame_size; + unsigned int tp_frame_nr; +}; + +struct tpacket_req3 { + unsigned int tp_block_size; + unsigned int tp_block_nr; + unsigned int tp_frame_size; + unsigned int tp_frame_nr; + unsigned int tp_retire_blk_tov; + unsigned int tp_sizeof_priv; + unsigned int tp_feature_req_word; +}; + +union tpacket_req_u { + struct tpacket_req req; + struct tpacket_req3 req3; +}; + +struct fanout_args { + __u16 id; + __u16 type_flags; + __u32 max_num_members; +}; + +struct packet_mclist { + struct packet_mclist *next; + int ifindex; + int count; + short unsigned int type; + short unsigned int alen; + unsigned char addr[32]; +}; + +struct pgv; + +struct tpacket_kbdq_core { + struct pgv *pkbdq; + unsigned int feature_req_word; + unsigned int hdrlen; + unsigned char reset_pending_on_curr_blk; + unsigned char delete_blk_timer; + short unsigned int kactive_blk_num; + short unsigned int blk_sizeof_priv; + short unsigned int last_kactive_blk_num; + char *pkblk_start; + char *pkblk_end; + int kblk_size; + unsigned int max_frame_len; + unsigned int knum_blocks; + uint64_t knxt_seq_num; + char *prev; + char *nxt_offset; + struct sk_buff *skb; + rwlock_t blk_fill_in_prog_lock; + short unsigned int retire_blk_tov; + short unsigned int version; + long unsigned int tov_in_jiffies; + struct timer_list retire_blk_timer; +}; + +struct pgv { + char *buffer; +}; + +struct packet_ring_buffer { + struct pgv *pg_vec; + unsigned int head; + unsigned int frames_per_block; + unsigned int frame_size; + unsigned int frame_max; + unsigned int pg_vec_order; + unsigned int pg_vec_pages; + unsigned int pg_vec_len; + unsigned int *pending_refcnt; + union { + long unsigned int *rx_owner_map; + struct tpacket_kbdq_core prb_bdqc; + }; +}; + +struct packet_fanout { + possible_net_t net; + unsigned int num_members; + u32 max_num_members; + u16 id; + u8 type; + u8 flags; + union { + atomic_t rr_cur; + struct bpf_prog *bpf_prog; + }; + struct list_head list; + spinlock_t lock; + refcount_t sk_ref; + long: 64; + struct packet_type prot_hook; + struct sock *arr[0]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct packet_rollover { + int sock; + atomic_long_t num; + atomic_long_t num_huge; + atomic_long_t num_failed; + long: 64; + long: 64; + long: 64; + long: 64; + u32 history[16]; +}; + +struct packet_sock { + struct sock sk; + struct packet_fanout *fanout; + union tpacket_stats_u stats; + struct packet_ring_buffer rx_ring; + struct packet_ring_buffer tx_ring; + int copy_thresh; + spinlock_t bind_lock; + struct mutex pg_vec_lock; + long unsigned int flags; + int ifindex; + u8 vnet_hdr_sz; + __be16 num; + struct packet_rollover *rollover; + struct packet_mclist *mclist; + atomic_long_t mapped; + enum tpacket_versions tp_version; + unsigned int tp_hdrlen; + unsigned int tp_reserve; + unsigned int tp_tstamp; + struct completion skb_completion; + struct net_device *cached_dev; + long: 64; + long: 64; + struct packet_type prot_hook; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + atomic_t tp_drops; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum packet_sock_flags { + PACKET_SOCK_ORIGDEV = 0, + PACKET_SOCK_AUXDATA = 1, + PACKET_SOCK_TX_HAS_OFF = 2, + PACKET_SOCK_TP_LOSS = 3, + PACKET_SOCK_RUNNING = 4, + PACKET_SOCK_PRESSURE = 5, + PACKET_SOCK_QDISC_BYPASS = 6, +}; + +struct packet_mreq_max { + int mr_ifindex; + short unsigned int mr_type; + short unsigned int mr_alen; + unsigned char mr_address[32]; +}; + +union tpacket_uhdr { + struct tpacket_hdr *h1; + struct tpacket2_hdr *h2; + struct tpacket3_hdr *h3; + void *raw; +}; + +struct packet_skb_cb { + union { + struct sockaddr_pkt pkt; + union { + unsigned int origlen; + struct sockaddr_ll ll; + }; + } sa; +}; + +struct ebt_pkttype_info { + __u8 pkt_type; + __u8 invert; +}; + +enum rpc_msg_type { + RPC_CALL = 0, + RPC_REPLY = 1, +}; + +struct svc_sock { + struct svc_xprt sk_xprt; + struct socket *sk_sock; + struct sock *sk_sk; + void (*sk_ostate)(struct sock *); + void (*sk_odata)(struct sock *); + void (*sk_owspace)(struct sock *); + __be32 sk_marker; + u32 sk_tcplen; + u32 sk_datalen; + struct page_frag_cache sk_frag_cache; + struct completion sk_handshake_done; + struct page *sk_pages[259]; +}; + +enum { + TLS_RECORD_TYPE_CHANGE_CIPHER_SPEC = 20, + TLS_RECORD_TYPE_ALERT = 21, + TLS_RECORD_TYPE_HANDSHAKE = 22, + TLS_RECORD_TYPE_DATA = 23, + TLS_RECORD_TYPE_HEARTBEAT = 24, + TLS_RECORD_TYPE_TLS12_CID = 25, + TLS_RECORD_TYPE_ACK = 26, +}; + +struct pppol2tp_addr { + __kernel_pid_t pid; + int fd; + struct sockaddr_in addr; + __u16 s_tunnel; + __u16 s_session; + __u16 d_tunnel; + __u16 d_session; +}; + +struct pppol2tpin6_addr { + __kernel_pid_t pid; + int fd; + __u16 s_tunnel; + __u16 s_session; + __u16 d_tunnel; + __u16 d_session; + struct sockaddr_in6 addr; +}; + +struct pppol2tpv3_addr { + __kernel_pid_t pid; + int fd; + struct sockaddr_in addr; + __u32 s_tunnel; + __u32 s_session; + __u32 d_tunnel; + __u32 d_session; +}; + +struct pppol2tpv3in6_addr { + __kernel_pid_t pid; + int fd; + __u32 s_tunnel; + __u32 s_session; + __u32 d_tunnel; + __u32 d_session; + struct sockaddr_in6 addr; +}; + +enum { + PPPOL2TP_SO_DEBUG = 1, + PPPOL2TP_SO_RECVSEQ = 2, + PPPOL2TP_SO_SENDSEQ = 3, + PPPOL2TP_SO_LNSMODE = 4, + PPPOL2TP_SO_REORDERTO = 5, +}; + +struct sockaddr_pppol2tp { + __kernel_sa_family_t sa_family; + unsigned int sa_protocol; + struct pppol2tp_addr pppol2tp; +} __attribute__((packed)); + +struct sockaddr_pppol2tpin6 { + __kernel_sa_family_t sa_family; + unsigned int sa_protocol; + struct pppol2tpin6_addr pppol2tp; +} __attribute__((packed)); + +struct sockaddr_pppol2tpv3 { + __kernel_sa_family_t sa_family; + unsigned int sa_protocol; + struct pppol2tpv3_addr pppol2tp; +} __attribute__((packed)); + +struct sockaddr_pppol2tpv3in6 { + __kernel_sa_family_t sa_family; + unsigned int sa_protocol; + struct pppol2tpv3in6_addr pppol2tp; +} __attribute__((packed)); + +struct pppol2tp_ioc_stats { + __u16 tunnel_id; + __u16 session_id; + __u32 using_ipsec: 1; + __u64 tx_packets; + __u64 tx_bytes; + __u64 tx_errors; + __u64 rx_packets; + __u64 rx_bytes; + __u64 rx_seq_discards; + __u64 rx_oos_packets; + __u64 rx_errors; +}; + +struct pppol2tp_session { + int owner; + struct mutex sk_lock; + struct sock *sk; + struct sock *__sk; +}; + +struct l2tp_connect_info { + u8 version; + int fd; + u32 tunnel_id; + u32 peer_tunnel_id; + u32 session_id; + u32 peer_session_id; +}; + +struct pppol2tp_seq_data { + struct seq_net_private p; + long unsigned int tkey; + long unsigned int skey; + struct l2tp_tunnel *tunnel; + struct l2tp_session *session; +}; + +enum sctp_event_type { + SCTP_EVENT_T_CHUNK = 1, + SCTP_EVENT_T_TIMEOUT = 2, + SCTP_EVENT_T_OTHER = 3, + SCTP_EVENT_T_PRIMITIVE = 4, +}; + +enum { + SCTP_PF_EXPOSE_UNSET = 0, + SCTP_PF_EXPOSE_DISABLE = 1, + SCTP_PF_EXPOSE_ENABLE = 2, +}; + +struct geneve_port { + u16 dst_port; +}; + +struct stack_info { + long unsigned int low; + long unsigned int high; +}; + +struct unwind_state { + long unsigned int fp; + long unsigned int pc; + struct stack_info stack; + struct stack_info *stacks; + int nr_stacks; +}; + +struct kunwind_state { + struct unwind_state common; + struct task_struct *task; + int graph_idx; + struct llist_node *kr_cur; +}; + +typedef bool (*kunwind_consume_fn)(const struct kunwind_state *, void *); + +struct kunwind_consume_entry_data { + stack_trace_consume_fn consume_entry; + void *cookie; +}; + +struct bpf_unwind_consume_entry_data { + bool (*consume_entry)(void *, u64, u64, u64); + void *cookie; +}; + +struct frame_tail { + struct frame_tail *fp; + long unsigned int lr; +}; + +enum bug_trap_type { + BUG_TRAP_TYPE_NONE = 0, + BUG_TRAP_TYPE_WARN = 1, + BUG_TRAP_TYPE_BUG = 2, +}; + +enum siginfo_layout { + SIL_KILL = 0, + SIL_TIMER = 1, + SIL_POLL = 2, + SIL_FAULT = 3, + SIL_FAULT_TRAPNO = 4, + SIL_FAULT_MCEERR = 5, + SIL_FAULT_BNDERR = 6, + SIL_FAULT_PKUERR = 7, + SIL_FAULT_PERF_EVENT = 8, + SIL_CHLD = 9, + SIL_RT = 10, + SIL_SYS = 11, +}; + +struct break_hook { + struct list_head node; + int (*fn)(struct pt_regs *, long unsigned int); + u16 imm; + u16 mask; +}; + +enum die_val { + DIE_UNUSED = 0, + DIE_OOPS = 1, +}; + +struct sys64_hook { + long unsigned int esr_mask; + long unsigned int esr_val; + void (*handler)(long unsigned int, struct pt_regs *); +}; + +typedef __s64 Elf64_Sxword; + +struct elf64_rela { + Elf64_Addr r_offset; + Elf64_Xword r_info; + Elf64_Sxword r_addend; +}; + +typedef struct elf64_rela Elf64_Rela; + +struct dyn_arch_ftrace {}; + +enum { + FTRACE_UPDATE_CALLS = 1, + FTRACE_DISABLE_CALLS = 2, + FTRACE_UPDATE_TRACE_FUNC = 4, + FTRACE_START_FUNC_RET = 8, + FTRACE_STOP_FUNC_RET = 16, + FTRACE_MAY_SLEEP = 32, +}; + +enum { + FTRACE_FL_ENABLED = 2147483648, + FTRACE_FL_REGS = 1073741824, + FTRACE_FL_REGS_EN = 536870912, + FTRACE_FL_TRAMP = 268435456, + FTRACE_FL_TRAMP_EN = 134217728, + FTRACE_FL_IPMODIFY = 67108864, + FTRACE_FL_DISABLED = 33554432, + FTRACE_FL_DIRECT = 16777216, + FTRACE_FL_DIRECT_EN = 8388608, + FTRACE_FL_CALL_OPS = 4194304, + FTRACE_FL_CALL_OPS_EN = 2097152, + FTRACE_FL_TOUCHED = 1048576, + FTRACE_FL_MODIFIED = 524288, +}; + +struct dyn_ftrace { + long unsigned int ip; + long unsigned int flags; + struct dyn_arch_ftrace arch; +}; + +struct fregs_offset { + const char *name; + int offset; +}; + +enum execmem_range_flags { + EXECMEM_KASAN_SHADOW = 1, +}; + +struct execmem_range { + long unsigned int start; + long unsigned int end; + long unsigned int fallback_start; + long unsigned int fallback_end; + pgprot_t pgprot; + unsigned int alignment; + enum execmem_range_flags flags; +}; + +struct execmem_info { + struct execmem_range ranges[5]; +}; + +enum kvm_arch_timers { + TIMER_PTIMER = 0, + TIMER_VTIMER = 1, + NR_KVM_EL0_TIMERS = 2, + TIMER_HVTIMER = 2, + TIMER_HPTIMER = 3, + NR_KVM_TIMERS = 4, +}; + +enum fgt_group_id { + __NO_FGT_GROUP__ = 0, + HFGxTR_GROUP = 1, + HDFGRTR_GROUP = 2, + HDFGWTR_GROUP = 2, + HFGITR_GROUP = 3, + HAFGRTR_GROUP = 4, + __NR_FGT_GROUP_IDS__ = 5, +}; + +enum vcpu_sysreg { + __INVALID_SYSREG__ = 0, + MPIDR_EL1 = 1, + CLIDR_EL1 = 2, + CSSELR_EL1 = 3, + TPIDR_EL0 = 4, + TPIDRRO_EL0 = 5, + TPIDR_EL1 = 6, + CNTKCTL_EL1 = 7, + PAR_EL1 = 8, + MDCCINT_EL1 = 9, + OSLSR_EL1 = 10, + DISR_EL1 = 11, + PMCR_EL0 = 12, + PMSELR_EL0 = 13, + PMEVCNTR0_EL0 = 14, + PMEVCNTR30_EL0 = 44, + PMCCNTR_EL0 = 45, + PMEVTYPER0_EL0 = 46, + PMEVTYPER30_EL0 = 76, + PMCCFILTR_EL0 = 77, + PMCNTENSET_EL0 = 78, + PMINTENSET_EL1 = 79, + PMOVSSET_EL0 = 80, + PMUSERENR_EL0 = 81, + APIAKEYLO_EL1 = 82, + APIAKEYHI_EL1 = 83, + APIBKEYLO_EL1 = 84, + APIBKEYHI_EL1 = 85, + APDAKEYLO_EL1 = 86, + APDAKEYHI_EL1 = 87, + APDBKEYLO_EL1 = 88, + APDBKEYHI_EL1 = 89, + APGAKEYLO_EL1 = 90, + APGAKEYHI_EL1 = 91, + RGSR_EL1 = 92, + GCR_EL1 = 93, + TFSRE0_EL1 = 94, + POR_EL0 = 95, + SVCR = 96, + FPMR = 97, + DACR32_EL2 = 98, + IFSR32_EL2 = 99, + FPEXC32_EL2 = 100, + DBGVCR32_EL2 = 101, + SCTLR_EL2 = 102, + ACTLR_EL2 = 103, + MDCR_EL2 = 104, + CPTR_EL2 = 105, + HACR_EL2 = 106, + ZCR_EL2 = 107, + TTBR0_EL2 = 108, + TTBR1_EL2 = 109, + TCR_EL2 = 110, + SPSR_EL2 = 111, + ELR_EL2 = 112, + AFSR0_EL2 = 113, + AFSR1_EL2 = 114, + ESR_EL2 = 115, + FAR_EL2 = 116, + HPFAR_EL2 = 117, + MAIR_EL2 = 118, + AMAIR_EL2 = 119, + VBAR_EL2 = 120, + RVBAR_EL2 = 121, + CONTEXTIDR_EL2 = 122, + CNTHCTL_EL2 = 123, + SP_EL2 = 124, + CNTHP_CTL_EL2 = 125, + CNTHP_CVAL_EL2 = 126, + CNTHV_CTL_EL2 = 127, + CNTHV_CVAL_EL2 = 128, + __VNCR_START__ = 129, + __before_SCTLR_EL1 = 130, + SCTLR_EL1 = 163, + __after_SCTLR_EL1 = 163, + __before_ACTLR_EL1 = 164, + ACTLR_EL1 = 164, + __after_ACTLR_EL1 = 164, + __before_CPACR_EL1 = 165, + CPACR_EL1 = 161, + __after_CPACR_EL1 = 164, + __before_ZCR_EL1 = 165, + ZCR_EL1 = 189, + __after_ZCR_EL1 = 189, + __before_TTBR0_EL1 = 190, + TTBR0_EL1 = 193, + __after_TTBR0_EL1 = 193, + __before_TTBR1_EL1 = 194, + TTBR1_EL1 = 195, + __after_TTBR1_EL1 = 195, + __before_TCR_EL1 = 196, + TCR_EL1 = 165, + __after_TCR_EL1 = 195, + __before_TCR2_EL1 = 196, + TCR2_EL1 = 207, + __after_TCR2_EL1 = 207, + __before_ESR_EL1 = 208, + ESR_EL1 = 168, + __after_ESR_EL1 = 207, + __before_AFSR0_EL1 = 208, + AFSR0_EL1 = 166, + __after_AFSR0_EL1 = 207, + __before_AFSR1_EL1 = 208, + AFSR1_EL1 = 167, + __after_AFSR1_EL1 = 207, + __before_FAR_EL1 = 208, + FAR_EL1 = 197, + __after_FAR_EL1 = 207, + __before_MAIR_EL1 = 208, + MAIR_EL1 = 169, + __after_MAIR_EL1 = 207, + __before_VBAR_EL1 = 208, + VBAR_EL1 = 203, + __after_VBAR_EL1 = 207, + __before_CONTEXTIDR_EL1 = 208, + CONTEXTIDR_EL1 = 162, + __after_CONTEXTIDR_EL1 = 207, + __before_AMAIR_EL1 = 208, + AMAIR_EL1 = 170, + __after_AMAIR_EL1 = 207, + __before_MDSCR_EL1 = 208, + MDSCR_EL1 = 172, + __after_MDSCR_EL1 = 207, + __before_ELR_EL1 = 208, + ELR_EL1 = 199, + __after_ELR_EL1 = 207, + __before_SP_EL1 = 208, + SP_EL1 = 201, + __after_SP_EL1 = 207, + __before_SPSR_EL1 = 208, + SPSR_EL1 = 173, + __after_SPSR_EL1 = 207, + __before_TFSR_EL1 = 208, + TFSR_EL1 = 179, + __after_TFSR_EL1 = 207, + __before_VPIDR_EL2 = 208, + VPIDR_EL2 = 146, + __after_VPIDR_EL2 = 207, + __before_VMPIDR_EL2 = 208, + VMPIDR_EL2 = 139, + __after_VMPIDR_EL2 = 207, + __before_HCR_EL2 = 208, + HCR_EL2 = 144, + __after_HCR_EL2 = 207, + __before_HSTR_EL2 = 208, + HSTR_EL2 = 145, + __after_HSTR_EL2 = 207, + __before_VTTBR_EL2 = 208, + VTTBR_EL2 = 133, + __after_VTTBR_EL2 = 207, + __before_VTCR_EL2 = 208, + VTCR_EL2 = 137, + __after_VTCR_EL2 = 207, + __before_TPIDR_EL2 = 208, + TPIDR_EL2 = 147, + __after_TPIDR_EL2 = 207, + __before_HCRX_EL2 = 208, + HCRX_EL2 = 149, + __after_HCRX_EL2 = 207, + __before_PIR_EL1 = 208, + PIR_EL1 = 213, + __after_PIR_EL1 = 213, + __before_PIRE0_EL1 = 214, + PIRE0_EL1 = 211, + __after_PIRE0_EL1 = 213, + __before_POR_EL1 = 214, + POR_EL1 = 214, + __after_POR_EL1 = 214, + __before_HFGRTR_EL2 = 215, + HFGRTR_EL2 = 184, + __after_HFGRTR_EL2 = 214, + __before_HFGWTR_EL2 = 215, + HFGWTR_EL2 = 185, + __after_HFGWTR_EL2 = 214, + __before_HFGITR_EL2 = 215, + HFGITR_EL2 = 186, + __after_HFGITR_EL2 = 214, + __before_HDFGRTR_EL2 = 215, + HDFGRTR_EL2 = 187, + __after_HDFGRTR_EL2 = 214, + __before_HDFGWTR_EL2 = 215, + HDFGWTR_EL2 = 188, + __after_HDFGWTR_EL2 = 214, + __before_HAFGRTR_EL2 = 215, + HAFGRTR_EL2 = 190, + __after_HAFGRTR_EL2 = 214, + __before_CNTVOFF_EL2 = 215, + CNTVOFF_EL2 = 141, + __after_CNTVOFF_EL2 = 214, + __before_CNTV_CVAL_EL0 = 215, + CNTV_CVAL_EL0 = 174, + __after_CNTV_CVAL_EL0 = 214, + __before_CNTV_CTL_EL0 = 215, + CNTV_CTL_EL0 = 175, + __after_CNTV_CTL_EL0 = 214, + __before_CNTP_CVAL_EL0 = 215, + CNTP_CVAL_EL0 = 176, + __after_CNTP_CVAL_EL0 = 214, + __before_CNTP_CTL_EL0 = 215, + CNTP_CTL_EL0 = 177, + __after_CNTP_CTL_EL0 = 214, + __before_ICH_HCR_EL2 = 215, + ICH_HCR_EL2 = 281, + __after_ICH_HCR_EL2 = 281, + NR_SYS_REGS = 282, +}; + +enum { + KERNEL_PARAM_OPS_FL_NOARG = 1, +}; + +enum { + KERNEL_PARAM_FL_UNSAFE = 1, + KERNEL_PARAM_FL_HWPARAM = 2, +}; + +struct param_attribute { + struct module_attribute mattr; + const struct kernel_param *param; +}; + +struct module_param_attrs { + unsigned int num; + struct attribute_group grp; + struct param_attribute attrs[0]; +}; + +struct kmalloced_param { + struct list_head list; + char val[0]; +}; + +typedef struct { + raw_spinlock_t *lock; +} class_raw_spinlock_t; + +typedef struct { + raw_spinlock_t *lock; + long unsigned int flags; +} class_raw_spinlock_irqsave_t; + +struct sched_attr { + __u32 size; + __u32 sched_policy; + __u64 sched_flags; + __s32 sched_nice; + __u32 sched_priority; + __u64 sched_runtime; + __u64 sched_deadline; + __u64 sched_period; + __u32 sched_util_min; + __u32 sched_util_max; +}; + +typedef struct { + struct task_struct *lock; + struct rq *rq; + struct rq_flags rf; +} class_task_rq_lock_t; + +typedef struct { + struct rq *lock; + struct rq_flags rf; +} class_rq_lock_t; + +typedef struct { + struct rq *lock; + struct rq *lock2; +} class_double_rq_lock_t; + +struct idle_timer { + struct hrtimer timer; + int done; +}; + +enum dl_bw_request { + dl_bw_req_check_overflow = 0, + dl_bw_req_alloc = 1, + dl_bw_req_free = 2, +}; + +typedef struct task_struct *class_find_get_task_t; + +enum pidcg_event { + PIDCG_MAX = 0, + PIDCG_FORKFAIL = 1, + NR_PIDCG_EVENTS = 2, +}; + +struct pids_cgroup { + struct cgroup_subsys_state css; + atomic64_t counter; + atomic64_t limit; + int64_t watermark; + struct cgroup_file events_file; + struct cgroup_file events_local_file; + atomic64_t events[2]; + atomic64_t events_local[2]; +}; + +struct cpuset_remove_tasks_struct { + struct work_struct work; + struct cpuset *cs; +}; + +enum { + TASKSTATS_TYPE_UNSPEC = 0, + TASKSTATS_TYPE_PID = 1, + TASKSTATS_TYPE_TGID = 2, + TASKSTATS_TYPE_STATS = 3, + TASKSTATS_TYPE_AGGR_PID = 4, + TASKSTATS_TYPE_AGGR_TGID = 5, + TASKSTATS_TYPE_NULL = 6, + __TASKSTATS_TYPE_MAX = 7, +}; + +enum { + TASKSTATS_CMD_ATTR_UNSPEC = 0, + TASKSTATS_CMD_ATTR_PID = 1, + TASKSTATS_CMD_ATTR_TGID = 2, + TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 3, + TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 4, + __TASKSTATS_CMD_ATTR_MAX = 5, +}; + +struct cgroupstats { + __u64 nr_sleeping; + __u64 nr_running; + __u64 nr_stopped; + __u64 nr_uninterruptible; + __u64 nr_io_wait; +}; + +enum { + CGROUPSTATS_CMD_UNSPEC = 3, + CGROUPSTATS_CMD_GET = 4, + CGROUPSTATS_CMD_NEW = 5, + __CGROUPSTATS_CMD_MAX = 6, +}; + +enum { + CGROUPSTATS_TYPE_UNSPEC = 0, + CGROUPSTATS_TYPE_CGROUP_STATS = 1, + __CGROUPSTATS_TYPE_MAX = 2, +}; + +enum { + CGROUPSTATS_CMD_ATTR_UNSPEC = 0, + CGROUPSTATS_CMD_ATTR_FD = 1, + __CGROUPSTATS_CMD_ATTR_MAX = 2, +}; + +struct listener { + struct list_head list; + pid_t pid; + char valid; +}; + +struct listener_list { + struct rw_semaphore sem; + struct list_head list; +}; + +enum actions { + REGISTER = 0, + DEREGISTER = 1, + CPU_DONT_CARE = 2, +}; + +typedef struct { + void *lock; +} class_preempt_notrace_t; + +struct syscall_trace_enter { + struct trace_entry ent; + int nr; + long unsigned int args[0]; +}; + +struct syscall_trace_exit { + struct trace_entry ent; + int nr; + long int ret; +}; + +struct syscall_tp_t { + struct trace_entry ent; + int syscall_nr; + long unsigned int ret; +}; + +struct syscall_tp_t___2 { + struct trace_entry ent; + int syscall_nr; + long unsigned int args[6]; +}; + +enum bpf_stack_slot_type { + STACK_INVALID = 0, + STACK_SPILL = 1, + STACK_MISC = 2, + STACK_ZERO = 3, + STACK_DYNPTR = 4, + STACK_ITER = 5, +}; + +struct bpf_cgroup_storage_map { + struct bpf_map map; + spinlock_t lock; + struct rb_root root; + struct list_head list; +}; + +enum bpf_cond_pseudo_jmp { + BPF_MAY_GOTO = 0, +}; + +enum bpf_addr_space_cast { + BPF_ADDR_SPACE_CAST = 1, +}; + +typedef void (*bpf_insn_print_t)(void *, const char *, ...); + +typedef const char * (*bpf_insn_revmap_call_t)(void *, const struct bpf_insn *); + +typedef const char * (*bpf_insn_print_imm_t)(void *, const struct bpf_insn *, __u64); + +struct bpf_insn_cbs { + bpf_insn_print_t cb_print; + bpf_insn_revmap_call_t cb_call; + bpf_insn_print_imm_t cb_imm; + void *private_data; +}; + +struct bpf_tuple { + struct bpf_prog *prog; + struct bpf_link *link; +}; + +struct bpf_prog_info { + __u32 type; + __u32 id; + __u8 tag[8]; + __u32 jited_prog_len; + __u32 xlated_prog_len; + __u64 jited_prog_insns; + __u64 xlated_prog_insns; + __u64 load_time; + __u32 created_by_uid; + __u32 nr_map_ids; + __u64 map_ids; + char name[16]; + __u32 ifindex; + __u32 gpl_compatible: 1; + __u64 netns_dev; + __u64 netns_ino; + __u32 nr_jited_ksyms; + __u32 nr_jited_func_lens; + __u64 jited_ksyms; + __u64 jited_func_lens; + __u32 btf_id; + __u32 func_info_rec_size; + __u64 func_info; + __u32 nr_func_info; + __u32 nr_line_info; + __u64 line_info; + __u64 jited_line_info; + __u32 nr_jited_line_info; + __u32 line_info_rec_size; + __u32 jited_line_info_rec_size; + __u32 nr_prog_tags; + __u64 prog_tags; + __u64 run_time_ns; + __u64 run_cnt; + __u64 recursion_misses; + __u32 verified_insns; + __u32 attach_btf_obj_id; + __u32 attach_btf_id; +}; + +struct bpf_prog_offload_ops { + int (*insn_hook)(struct bpf_verifier_env *, int, int); + int (*finalize)(struct bpf_verifier_env *); + int (*replace_insn)(struct bpf_verifier_env *, u32, struct bpf_insn *); + int (*remove_insns)(struct bpf_verifier_env *, u32, u32); + int (*prepare)(struct bpf_prog *); + int (*translate)(struct bpf_prog *); + void (*destroy)(struct bpf_prog *); +}; + +struct bpf_offload_dev { + const struct bpf_prog_offload_ops *ops; + struct list_head netdevs; + void *priv; +}; + +typedef struct ns_common *ns_get_path_helper_t(void *); + +enum xdp_rx_metadata { + XDP_METADATA_KFUNC_RX_TIMESTAMP = 0, + XDP_METADATA_KFUNC_RX_HASH = 1, + XDP_METADATA_KFUNC_RX_VLAN_TAG = 2, + MAX_XDP_METADATA_KFUNC = 3, +}; + +struct bpf_offload_netdev { + struct rhash_head l; + struct net_device *netdev; + struct bpf_offload_dev *offdev; + struct list_head progs; + struct list_head maps; + struct list_head offdev_netdevs; +}; + +struct ns_get_path_bpf_prog_args { + struct bpf_prog *prog; + struct bpf_prog_info *info; +}; + +struct ns_get_path_bpf_map_args { + struct bpf_offloaded_map *offmap; + struct bpf_map_info *info; +}; + +struct trace_event_raw_oom_score_adj_update { + struct trace_entry ent; + pid_t pid; + char comm[16]; + short int oom_score_adj; + char __data[0]; +}; + +struct trace_event_raw_reclaim_retry_zone { + struct trace_entry ent; + int node; + int zone_idx; + int order; + long unsigned int reclaimable; + long unsigned int available; + long unsigned int min_wmark; + int no_progress_loops; + bool wmark_check; + char __data[0]; +}; + +struct trace_event_raw_mark_victim { + struct trace_entry ent; + int pid; + u32 __data_loc_comm; + long unsigned int total_vm; + long unsigned int anon_rss; + long unsigned int file_rss; + long unsigned int shmem_rss; + uid_t uid; + long unsigned int pgtables; + short int oom_score_adj; + char __data[0]; +}; + +struct trace_event_raw_wake_reaper { + struct trace_entry ent; + int pid; + char __data[0]; +}; + +struct trace_event_raw_start_task_reaping { + struct trace_entry ent; + int pid; + char __data[0]; +}; + +struct trace_event_raw_finish_task_reaping { + struct trace_entry ent; + int pid; + char __data[0]; +}; + +struct trace_event_raw_skip_task_reaping { + struct trace_entry ent; + int pid; + char __data[0]; +}; + +struct trace_event_raw_compact_retry { + struct trace_entry ent; + int order; + int priority; + int result; + int retries; + int max_retries; + bool ret; + char __data[0]; +}; + +struct trace_event_data_offsets_oom_score_adj_update {}; + +struct trace_event_data_offsets_reclaim_retry_zone {}; + +struct trace_event_data_offsets_mark_victim { + u32 comm; + const void *comm_ptr_; +}; + +struct trace_event_data_offsets_wake_reaper {}; + +struct trace_event_data_offsets_start_task_reaping {}; + +struct trace_event_data_offsets_finish_task_reaping {}; + +struct trace_event_data_offsets_skip_task_reaping {}; + +struct trace_event_data_offsets_compact_retry {}; + +typedef void (*btf_trace_oom_score_adj_update)(void *, struct task_struct *); + +typedef void (*btf_trace_reclaim_retry_zone)(void *, struct zoneref *, int, long unsigned int, long unsigned int, long unsigned int, int, bool); + +typedef void (*btf_trace_mark_victim)(void *, struct task_struct *, uid_t); + +typedef void (*btf_trace_wake_reaper)(void *, int); + +typedef void (*btf_trace_start_task_reaping)(void *, int); + +typedef void (*btf_trace_finish_task_reaping)(void *, int); + +typedef void (*btf_trace_skip_task_reaping)(void *, int); + +typedef void (*btf_trace_compact_retry)(void *, int, enum compact_priority, enum compact_result, int, int, bool); + +struct list_lru_memcg { + struct callback_head rcu; + struct list_lru_one node[0]; +}; + +struct list_lru_memcg_table { + struct list_lru_memcg *mlru; + struct mem_cgroup *memcg; +}; + +enum rmp_flags { + RMP_LOCKED = 1, + RMP_USE_SHARED_ZEROPAGE = 2, +}; + +struct rmap_walk_arg { + struct folio *folio; + bool map_unused_to_zeropage; +}; + +enum { + PAGE_WAS_MAPPED = 1, + PAGE_WAS_MLOCKED = 2, + PAGE_OLD_STATES = 3, +}; + +struct migrate_pages_stats { + int nr_succeeded; + int nr_failed_pages; + int nr_thp_succeeded; + int nr_thp_failed; + int nr_thp_split; + int nr_split; +}; + +enum mm_cid_state { + MM_CID_UNSET = 4294967295, + MM_CID_LAZY_PUT = 2147483648, +}; + +struct user_arg_ptr { + union { + const char * const *native; + } ptr; +}; + +typedef int __kernel_daddr_t; + +struct ustat { + __kernel_daddr_t f_tfree; + long unsigned int f_tinode; + char f_fname[6]; + char f_fpack[6]; +}; + +struct statfs { + __kernel_long_t f_type; + __kernel_long_t f_bsize; + __kernel_long_t f_blocks; + __kernel_long_t f_bfree; + __kernel_long_t f_bavail; + __kernel_long_t f_files; + __kernel_long_t f_ffree; + __kernel_fsid_t f_fsid; + __kernel_long_t f_namelen; + __kernel_long_t f_frsize; + __kernel_long_t f_flags; + __kernel_long_t f_spare[4]; +}; + +struct statfs64 { + __kernel_long_t f_type; + __kernel_long_t f_bsize; + __u64 f_blocks; + __u64 f_bfree; + __u64 f_bavail; + __u64 f_files; + __u64 f_ffree; + __kernel_fsid_t f_fsid; + __kernel_long_t f_namelen; + __kernel_long_t f_frsize; + __kernel_long_t f_flags; + __kernel_long_t f_spare[4]; +}; + +typedef struct task_struct *class_task_lock_t; + +struct stashed_operations { + void (*put_data)(void *); + int (*init_inode)(struct inode *, void *); +}; + +struct signalfd_siginfo { + __u32 ssi_signo; + __s32 ssi_errno; + __s32 ssi_code; + __u32 ssi_pid; + __u32 ssi_uid; + __s32 ssi_fd; + __u32 ssi_tid; + __u32 ssi_band; + __u32 ssi_overrun; + __u32 ssi_trapno; + __s32 ssi_status; + __s32 ssi_int; + __u64 ssi_ptr; + __u64 ssi_utime; + __u64 ssi_stime; + __u64 ssi_addr; + __u16 ssi_addr_lsb; + __u16 __pad2; + __s32 ssi_syscall; + __u64 ssi_call_addr; + __u32 ssi_arch; + __u8 __pad[28]; +}; + +struct signalfd_ctx { + sigset_t sigmask; +}; + +struct trace_event_raw_iomap_readpage_class { + struct trace_entry ent; + dev_t dev; + u64 ino; + int nr_pages; + char __data[0]; +}; + +struct trace_event_raw_iomap_range_class { + struct trace_entry ent; + dev_t dev; + u64 ino; + loff_t size; + loff_t offset; + u64 length; + char __data[0]; +}; + +struct trace_event_raw_iomap_class { + struct trace_entry ent; + dev_t dev; + u64 ino; + u64 addr; + loff_t offset; + u64 length; + u16 type; + u16 flags; + dev_t bdev; + char __data[0]; +}; + +struct trace_event_raw_iomap_writepage_map { + struct trace_entry ent; + dev_t dev; + u64 ino; + u64 pos; + u64 dirty_len; + u64 addr; + loff_t offset; + u64 length; + u16 type; + u16 flags; + dev_t bdev; + char __data[0]; +}; + +struct trace_event_raw_iomap_iter { + struct trace_entry ent; + dev_t dev; + u64 ino; + loff_t pos; + u64 length; + s64 processed; + unsigned int flags; + const void *ops; + long unsigned int caller; + char __data[0]; +}; + +struct trace_event_raw_iomap_dio_rw_begin { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t isize; + loff_t pos; + size_t count; + size_t done_before; + int ki_flags; + unsigned int dio_flags; + bool aio; + char __data[0]; +}; + +struct trace_event_raw_iomap_dio_complete { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t isize; + loff_t pos; + int ki_flags; + bool aio; + int error; + ssize_t ret; + char __data[0]; +}; + +struct trace_event_data_offsets_iomap_readpage_class {}; + +struct trace_event_data_offsets_iomap_range_class {}; + +struct trace_event_data_offsets_iomap_class {}; + +struct trace_event_data_offsets_iomap_writepage_map {}; + +struct trace_event_data_offsets_iomap_iter {}; + +struct trace_event_data_offsets_iomap_dio_rw_begin {}; + +struct trace_event_data_offsets_iomap_dio_complete {}; + +typedef void (*btf_trace_iomap_readpage)(void *, struct inode *, int); + +typedef void (*btf_trace_iomap_readahead)(void *, struct inode *, int); + +typedef void (*btf_trace_iomap_writepage)(void *, struct inode *, loff_t, u64); + +typedef void (*btf_trace_iomap_release_folio)(void *, struct inode *, loff_t, u64); + +typedef void (*btf_trace_iomap_invalidate_folio)(void *, struct inode *, loff_t, u64); + +typedef void (*btf_trace_iomap_dio_invalidate_fail)(void *, struct inode *, loff_t, u64); + +typedef void (*btf_trace_iomap_dio_rw_queued)(void *, struct inode *, loff_t, u64); + +typedef void (*btf_trace_iomap_iter_dstmap)(void *, struct inode *, struct iomap *); + +typedef void (*btf_trace_iomap_iter_srcmap)(void *, struct inode *, struct iomap *); + +typedef void (*btf_trace_iomap_writepage_map)(void *, struct inode *, u64, unsigned int, struct iomap *); + +typedef void (*btf_trace_iomap_iter)(void *, struct iomap_iter *, const void *, long unsigned int); + +typedef void (*btf_trace_iomap_dio_rw_begin)(void *, struct kiocb *, struct iov_iter *, unsigned int, size_t); + +typedef void (*btf_trace_iomap_dio_complete)(void *, struct kiocb *, int, ssize_t); + +enum fscache_cache_trace { + fscache_cache_collision = 0, + fscache_cache_get_acquire = 1, + fscache_cache_new_acquire = 2, + fscache_cache_put_alloc_volume = 3, + fscache_cache_put_cache = 4, + fscache_cache_put_prep_failed = 5, + fscache_cache_put_relinquish = 6, + fscache_cache_put_volume = 7, +}; + +struct orlov_stats { + __u64 free_clusters; + __u32 free_inodes; + __u32 used_dirs; +}; + +struct jbd2_journal_revoke_header_s { + journal_header_t r_header; + __be32 r_count; +}; + +typedef struct jbd2_journal_revoke_header_s jbd2_journal_revoke_header_t; + +struct jbd2_revoke_table_s { + int hash_size; + int hash_shift; + struct list_head *hash_table; +}; + +struct jbd2_revoke_record_s { + struct list_head hash; + tid_t sequence; + long long unsigned int blocknr; +}; + +struct squashfs_dir_index { + __le32 index; + __le32 start_block; + __le32 size; + unsigned char name[0]; +}; + +struct squashfs_base_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; +}; + +struct squashfs_ipc_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le32 nlink; +}; + +struct squashfs_lipc_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le32 nlink; + __le32 xattr; +}; + +struct squashfs_dev_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le32 nlink; + __le32 rdev; +}; + +struct squashfs_ldev_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le32 nlink; + __le32 rdev; + __le32 xattr; +}; + +struct squashfs_symlink_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le32 nlink; + __le32 symlink_size; + char symlink[0]; +}; + +struct squashfs_reg_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le32 start_block; + __le32 fragment; + __le32 offset; + __le32 file_size; + __le16 block_list[0]; +}; + +struct squashfs_lreg_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le64 start_block; + __le64 file_size; + __le64 sparse; + __le32 nlink; + __le32 fragment; + __le32 offset; + __le32 xattr; + __le16 block_list[0]; +}; + +struct squashfs_dir_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le32 start_block; + __le32 nlink; + __le16 file_size; + __le16 offset; + __le32 parent_inode; +}; + +struct squashfs_ldir_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le32 nlink; + __le32 file_size; + __le32 start_block; + __le32 parent_inode; + __le16 i_count; + __le16 offset; + __le32 xattr; + struct squashfs_dir_index index[0]; +}; + +union squashfs_inode { + struct squashfs_base_inode base; + struct squashfs_dev_inode dev; + struct squashfs_ldev_inode ldev; + struct squashfs_symlink_inode symlink; + struct squashfs_reg_inode reg; + struct squashfs_lreg_inode lreg; + struct squashfs_dir_inode dir; + struct squashfs_ldir_inode ldir; + struct squashfs_ipc_inode ipc; + struct squashfs_lipc_inode lipc; +}; + +struct xz_dec; + +struct squashfs_xz { + struct xz_dec *state; + struct xz_buf buf; +}; + +struct disk_comp_opts { + __le32 dictionary_size; + __le32 flags; +}; + +struct comp_opts { + int dict_size; +}; + +struct fat_entry { + int entry; + union { + u8 *ent12_p[2]; + __le16 *ent16_p; + __le32 *ent32_p; + } u; + int nr_bhs; + struct buffer_head *bhs[2]; + struct inode *fat_inode; +}; + +struct isofs_fid { + u32 block; + u16 offset; + u16 parent_offset; + u32 generation; + u32 parent_block; + u32 parent_generation; +}; + +enum { + FILEID_HIGH_OFF = 0, + FILEID_LOW_OFF = 1, + FILE_I_TYPE_OFF = 2, + EMBED_FH_OFF = 3, +}; + +enum { + NFS_DELEGATION_NEED_RECLAIM = 0, + NFS_DELEGATION_RETURN = 1, + NFS_DELEGATION_RETURN_IF_CLOSED = 2, + NFS_DELEGATION_REFERENCED = 3, + NFS_DELEGATION_RETURNING = 4, + NFS_DELEGATION_REVOKED = 5, + NFS_DELEGATION_TEST_EXPIRED = 6, + NFS_DELEGATION_INODE_FREEING = 7, + NFS_DELEGATION_RETURN_DELAYED = 8, + NFS_DELEGATION_DELEGTIME = 9, +}; + +struct ent { + struct cache_head h; + int type; + u32 id; + char name[128]; + char authname[128]; + struct callback_head callback_head; +}; + +typedef struct { + spinlock_t *lock; +} class_spinlock_t; + +struct cifs_mnt_data { + struct cifs_sb_info *cifs_sb; + struct smb3_fs_context *ctx; + int flags; +}; + +struct rfc1002_session_packet { + __u8 type; + __u8 flags; + __u16 length; + union { + struct { + __u8 called_len; + __u8 called_name[32]; + __u8 scope1; + __u8 calling_len; + __u8 calling_name[32]; + __u8 scope2; + } session_req; + struct { + __u32 retarget_ip_addr; + __u16 port; + } __attribute__((packed)) retarget_resp; + __u8 neg_ses_resp_error_code; + } trailer; +}; + +enum { + XATTR_USER = 0, + XATTR_CIFS_ACL = 1, + XATTR_ACL_ACCESS = 2, + XATTR_ACL_DEFAULT = 3, + XATTR_CIFS_NTSD = 4, + XATTR_CIFS_NTSD_FULL = 5, +}; + +struct GUID { + __le32 Data1; + __le16 Data2; + __le16 Data3; + u8 Data4[8]; +}; + +struct ATTR_STD_INFO { + __le64 cr_time; + __le64 m_time; + __le64 c_time; + __le64 a_time; + enum FILE_ATTRIBUTE fa; + __le32 max_ver_num; + __le32 ver_num; + __le32 class_id; +}; + +struct SECURITY_KEY { + __le32 hash; + __le32 sec_id; +}; + +struct SECURITY_HDR { + struct SECURITY_KEY key; + __le64 off; + __le32 size; +} __attribute__((packed)); + +struct NTFS_DE_SII { + struct NTFS_DE de; + __le32 sec_id; + struct SECURITY_HDR sec_hdr; +}; + +struct NTFS_DE_SDH { + struct NTFS_DE de; + struct SECURITY_KEY key; + struct SECURITY_HDR sec_hdr; + __le16 magic[2]; +}; + +struct REPARSE_KEY { + __le32 ReparseTag; + struct MFT_REF ref; +}; + +struct NTFS_DE_R { + struct NTFS_DE de; + struct REPARSE_KEY key; + u32 zero; +}; + +struct ACE_HEADER { + u8 AceType; + u8 AceFlags; + __le16 AceSize; +}; + +struct ACL { + u8 AclRevision; + u8 Sbz1; + __le16 AclSize; + __le16 AceCount; + __le16 Sbz2; +}; + +struct SID { + u8 Revision; + u8 SubAuthorityCount; + u8 IdentifierAuthority[6]; + __le32 SubAuthority[0]; +}; + +enum index_mutex_classed { + INDEX_MUTEX_I30 = 0, + INDEX_MUTEX_SII = 1, + INDEX_MUTEX_SDH = 2, + INDEX_MUTEX_SO = 3, + INDEX_MUTEX_SQ = 4, + INDEX_MUTEX_SR = 5, + INDEX_MUTEX_TOTAL = 6, +}; + +struct ovl_metacopy { + u8 version; + u8 len; + u8 flags; + u8 digest_algo; + u8 digest[64]; +}; + +struct ovl_lookup_data { + struct super_block *sb; + const struct ovl_layer *layer; + struct qstr name; + bool is_dir; + bool opaque; + bool xwhiteouts; + bool stop; + bool last; + char *redirect; + int metacopy; + bool absolute_redirect; +}; + +struct extendedAttrHeaderDesc { + struct tag descTag; + __le32 impAttrLocation; + __le32 appAttrLocation; +}; + +struct genericFormat { + __le32 attrType; + uint8_t attrSubtype; + uint8_t reserved[3]; + __le32 attrLength; + uint8_t attrData[0]; +}; + +typedef struct xfs_trans_header xfs_trans_header_t; + +struct xfs_icreate_log { + uint16_t icl_type; + uint16_t icl_size; + __be32 icl_ag; + __be32 icl_agbno; + __be32 icl_count; + __be32 icl_isize; + __be32 icl_length; + __be32 icl_gen; +}; + +typedef uint64_t xfbno_t; + +struct xfbtree { + struct xfs_buftarg *target; + xfbno_t highest_bno; + long long unsigned int owner; + union xfs_btree_ptr root; + unsigned int nlevels; + unsigned int maxrecs[2]; + unsigned int minrecs[2]; +}; + +struct xlog_recover { + struct hlist_node r_list; + xlog_tid_t r_log_tid; + xfs_trans_header_t r_theader; + int r_state; + xfs_lsn_t r_lsn; + struct list_head r_itemq; +}; + +struct xfs_fsmap { + dev_t fmr_device; + uint32_t fmr_flags; + uint64_t fmr_physical; + uint64_t fmr_owner; + xfs_fileoff_t fmr_offset; + xfs_filblks_t fmr_length; +}; + +struct trace_event_raw_xfs_attr_list_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + u32 hashval; + u32 blkno; + u32 offset; + void *buffer; + int bufsize; + int count; + int firstu; + int dupcnt; + unsigned int attr_filter; + char __data[0]; +}; + +struct trace_event_raw_xlog_intent_recovery_failed { + struct trace_entry ent; + dev_t dev; + u32 __data_loc_name; + int error; + char __data[0]; +}; + +struct trace_event_raw_xfs_perag_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + int refcount; + int active_refcount; + long unsigned int caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_inodegc_worker { + struct trace_entry ent; + dev_t dev; + unsigned int shrinker_hits; + char __data[0]; +}; + +struct trace_event_raw_xfs_fs_class { + struct trace_entry ent; + dev_t dev; + long long unsigned int mflags; + long unsigned int opstate; + long unsigned int sbflags; + void *caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_inodegc_shrinker_scan { + struct trace_entry ent; + dev_t dev; + long unsigned int nr_to_scan; + void *caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_ag_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + char __data[0]; +}; + +struct trace_event_raw_xfs_attr_list_node_descend { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + u32 hashval; + u32 blkno; + u32 offset; + void *buffer; + int bufsize; + int count; + int firstu; + int dupcnt; + unsigned int attr_filter; + u32 bt_hashval; + u32 bt_before; + char __data[0]; +}; + +struct trace_event_raw_xfs_bmap_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + void *leaf; + int pos; + xfs_fileoff_t startoff; + xfs_fsblock_t startblock; + xfs_filblks_t blockcount; + xfs_exntst_t state; + int bmap_state; + long unsigned int caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_buf_class { + struct trace_entry ent; + dev_t dev; + xfs_daddr_t bno; + int nblks; + int hold; + int pincount; + unsigned int lockval; + unsigned int flags; + long unsigned int caller_ip; + const void *buf_ops; + char __data[0]; +}; + +struct trace_event_raw_xfs_buf_flags_class { + struct trace_entry ent; + dev_t dev; + xfs_daddr_t bno; + unsigned int length; + int hold; + int pincount; + unsigned int lockval; + unsigned int flags; + long unsigned int caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_buf_ioerror { + struct trace_entry ent; + dev_t dev; + xfs_daddr_t bno; + unsigned int length; + unsigned int flags; + int hold; + int pincount; + unsigned int lockval; + int error; + xfs_failaddr_t caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_buf_item_class { + struct trace_entry ent; + dev_t dev; + xfs_daddr_t buf_bno; + unsigned int buf_len; + int buf_hold; + int buf_pincount; + int buf_lockval; + unsigned int buf_flags; + unsigned int bli_recur; + int bli_refcount; + unsigned int bli_flags; + long unsigned int li_flags; + char __data[0]; +}; + +struct trace_event_raw_xfs_filestream_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + xfs_agnumber_t agno; + int streams; + char __data[0]; +}; + +struct trace_event_raw_xfs_filestream_pick { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + xfs_agnumber_t agno; + int streams; + xfs_extlen_t free; + char __data[0]; +}; + +struct trace_event_raw_xfs_lock_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + int lock_flags; + long unsigned int caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_inode_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + long unsigned int iflags; + char __data[0]; +}; + +struct trace_event_raw_xfs_filemap_fault { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + unsigned int order; + bool write_fault; + char __data[0]; +}; + +struct trace_event_raw_xfs_iref_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + int count; + int pincount; + long unsigned int caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_iomap_prealloc_size { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + xfs_fsblock_t blocks; + int shift; + unsigned int writeio_blocks; + char __data[0]; +}; + +struct trace_event_raw_xfs_irec_merge_pre { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agino_t agino; + uint16_t holemask; + xfs_agino_t nagino; + uint16_t nholemask; + char __data[0]; +}; + +struct trace_event_raw_xfs_irec_merge_post { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agino_t agino; + uint16_t holemask; + char __data[0]; +}; + +struct trace_event_raw_xfs_namespace_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t dp_ino; + int namelen; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_xfs_rename { + struct trace_entry ent; + dev_t dev; + xfs_ino_t src_dp_ino; + xfs_ino_t target_dp_ino; + int src_namelen; + int target_namelen; + u32 __data_loc_src_name; + u32 __data_loc_target_name; + char __data[0]; +}; + +struct trace_event_raw_xfs_dquot_class { + struct trace_entry ent; + dev_t dev; + u32 id; + xfs_dqtype_t type; + unsigned int flags; + unsigned int nrefs; + long long unsigned int res_bcount; + long long unsigned int res_rtbcount; + long long unsigned int res_icount; + long long unsigned int bcount; + long long unsigned int rtbcount; + long long unsigned int icount; + long long unsigned int blk_hardlimit; + long long unsigned int blk_softlimit; + long long unsigned int rtb_hardlimit; + long long unsigned int rtb_softlimit; + long long unsigned int ino_hardlimit; + long long unsigned int ino_softlimit; + char __data[0]; +}; + +struct trace_event_raw_xfs_trans_mod_dquot { + struct trace_entry ent; + dev_t dev; + xfs_dqtype_t type; + unsigned int flags; + unsigned int dqid; + unsigned int field; + int64_t delta; + char __data[0]; +}; + +struct trace_event_raw_xfs_dqtrx_class { + struct trace_entry ent; + dev_t dev; + xfs_dqtype_t type; + unsigned int flags; + u32 dqid; + uint64_t blk_res; + int64_t bcount_delta; + int64_t delbcnt_delta; + uint64_t rtblk_res; + uint64_t rtblk_res_used; + int64_t rtbcount_delta; + int64_t delrtb_delta; + uint64_t ino_res; + uint64_t ino_res_used; + int64_t icount_delta; + char __data[0]; +}; + +struct trace_event_raw_xfs_loggrant_class { + struct trace_entry ent; + dev_t dev; + long unsigned int tic; + char ocnt; + char cnt; + int curr_res; + int unit_res; + unsigned int flags; + int reserveq; + int writeq; + uint64_t grant_reserve_bytes; + uint64_t grant_write_bytes; + uint64_t tail_space; + int curr_cycle; + int curr_block; + xfs_lsn_t tail_lsn; + char __data[0]; +}; + +struct trace_event_raw_xfs_log_item_class { + struct trace_entry ent; + dev_t dev; + void *lip; + uint type; + long unsigned int flags; + xfs_lsn_t lsn; + char __data[0]; +}; + +struct trace_event_raw_xfs_log_force { + struct trace_entry ent; + dev_t dev; + xfs_lsn_t lsn; + long unsigned int caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_ail_class { + struct trace_entry ent; + dev_t dev; + void *lip; + uint type; + long unsigned int flags; + xfs_lsn_t old_lsn; + xfs_lsn_t new_lsn; + char __data[0]; +}; + +struct trace_event_raw_xfs_log_assign_tail_lsn { + struct trace_entry ent; + dev_t dev; + xfs_lsn_t new_lsn; + xfs_lsn_t old_lsn; + xfs_lsn_t head_lsn; + char __data[0]; +}; + +struct trace_event_raw_xfs_file_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + xfs_fsize_t size; + loff_t offset; + size_t count; + char __data[0]; +}; + +struct trace_event_raw_xfs_imap_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + loff_t size; + loff_t offset; + size_t count; + int whichfork; + xfs_fileoff_t startoff; + xfs_fsblock_t startblock; + xfs_filblks_t blockcount; + char __data[0]; +}; + +struct trace_event_raw_xfs_simple_io_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + loff_t isize; + loff_t disize; + loff_t offset; + size_t count; + char __data[0]; +}; + +struct trace_event_raw_xfs_itrunc_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + xfs_fsize_t size; + xfs_fsize_t new_size; + char __data[0]; +}; + +struct trace_event_raw_xfs_pagecache_inval { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + xfs_fsize_t size; + xfs_off_t start; + xfs_off_t finish; + char __data[0]; +}; + +struct trace_event_raw_xfs_bunmap { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + xfs_fsize_t size; + xfs_fileoff_t fileoff; + xfs_filblks_t len; + long unsigned int caller_ip; + int flags; + char __data[0]; +}; + +struct trace_event_raw_xfs_extent_busy_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agblock_t agbno; + xfs_extlen_t len; + char __data[0]; +}; + +struct trace_event_raw_xfs_extent_busy_trim { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agblock_t agbno; + xfs_extlen_t len; + xfs_agblock_t tbno; + xfs_extlen_t tlen; + char __data[0]; +}; + +struct trace_event_raw_xfs_agf_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + int flags; + __u32 length; + __u32 bno_root; + __u32 cnt_root; + __u32 bno_level; + __u32 cnt_level; + __u32 flfirst; + __u32 fllast; + __u32 flcount; + __u32 freeblks; + __u32 longest; + long unsigned int caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_free_extent { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agblock_t agbno; + xfs_extlen_t len; + int resv; + int haveleft; + int haveright; + char __data[0]; +}; + +struct trace_event_raw_xfs_alloc_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agblock_t agbno; + xfs_extlen_t minlen; + xfs_extlen_t maxlen; + xfs_extlen_t mod; + xfs_extlen_t prod; + xfs_extlen_t minleft; + xfs_extlen_t total; + xfs_extlen_t alignment; + xfs_extlen_t minalignslop; + xfs_extlen_t len; + char wasdel; + char wasfromfl; + int resv; + int datatype; + xfs_agnumber_t highest_agno; + char __data[0]; +}; + +struct trace_event_raw_xfs_alloc_cur_check { + struct trace_entry ent; + dev_t dev; + u32 __data_loc_name; + xfs_agblock_t bno; + xfs_extlen_t len; + xfs_extlen_t diff; + bool new; + char __data[0]; +}; + +struct trace_event_raw_xfs_da_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + u32 __data_loc_name; + int namelen; + xfs_dahash_t hashval; + xfs_ino_t inumber; + uint32_t op_flags; + xfs_ino_t owner; + char __data[0]; +}; + +struct trace_event_raw_xfs_attr_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + u32 __data_loc_name; + int namelen; + int valuelen; + xfs_dahash_t hashval; + unsigned int attr_filter; + uint32_t op_flags; + char __data[0]; +}; + +struct trace_event_raw_xfs_dir2_space_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + uint32_t op_flags; + int idx; + char __data[0]; +}; + +struct trace_event_raw_xfs_dir2_leafn_moveents { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + uint32_t op_flags; + int src_idx; + int dst_idx; + int count; + char __data[0]; +}; + +struct trace_event_raw_xfs_swap_extent_class { + struct trace_entry ent; + dev_t dev; + int which; + xfs_ino_t ino; + int format; + xfs_extnum_t nex; + int broot_size; + int fork_off; + char __data[0]; +}; + +struct trace_event_raw_xfs_log_recover { + struct trace_entry ent; + dev_t dev; + xfs_daddr_t headblk; + xfs_daddr_t tailblk; + char __data[0]; +}; + +struct trace_event_raw_xfs_log_recover_record { + struct trace_entry ent; + dev_t dev; + xfs_lsn_t lsn; + int len; + int num_logops; + int pass; + char __data[0]; +}; + +struct trace_event_raw_xfs_log_recover_item_class { + struct trace_entry ent; + dev_t dev; + long unsigned int item; + xlog_tid_t tid; + xfs_lsn_t lsn; + int type; + int pass; + int count; + int total; + char __data[0]; +}; + +struct trace_event_raw_xfs_log_recover_buf_item_class { + struct trace_entry ent; + dev_t dev; + int64_t blkno; + short unsigned int len; + short unsigned int flags; + short unsigned int size; + unsigned int map_size; + char __data[0]; +}; + +struct trace_event_raw_xfs_log_recover_ino_item_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + short unsigned int size; + int fields; + short unsigned int asize; + short unsigned int dsize; + int64_t blkno; + int len; + int boffset; + char __data[0]; +}; + +struct trace_event_raw_xfs_log_recover_icreate_item_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agblock_t agbno; + unsigned int count; + unsigned int isize; + xfs_agblock_t length; + unsigned int gen; + char __data[0]; +}; + +struct trace_event_raw_xfs_discard_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agblock_t agbno; + xfs_extlen_t len; + char __data[0]; +}; + +struct trace_event_raw_xfs_rtdiscard_class { + struct trace_entry ent; + dev_t dev; + xfs_rtblock_t rtbno; + xfs_rtblock_t len; + char __data[0]; +}; + +struct trace_event_raw_xfs_btree_cur_class { + struct trace_entry ent; + dev_t dev; + u32 __data_loc_name; + int level; + int nlevels; + int ptr; + xfs_daddr_t daddr; + char __data[0]; +}; + +struct trace_event_raw_xfs_btree_alloc_block { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_ino_t ino; + u32 __data_loc_name; + int error; + xfs_agblock_t agbno; + char __data[0]; +}; + +struct trace_event_raw_xfs_btree_free_block { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_ino_t ino; + u32 __data_loc_name; + xfs_agblock_t agbno; + char __data[0]; +}; + +struct trace_event_raw_xfs_defer_class { + struct trace_entry ent; + dev_t dev; + struct xfs_trans *tp; + char committed; + long unsigned int caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_defer_error_class { + struct trace_entry ent; + dev_t dev; + struct xfs_trans *tp; + char committed; + int error; + char __data[0]; +}; + +struct trace_event_raw_xfs_defer_pending_class { + struct trace_entry ent; + dev_t dev; + u32 __data_loc_name; + void *intent; + unsigned int flags; + char committed; + int nr; + char __data[0]; +}; + +struct trace_event_raw_xfs_free_extent_deferred_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agblock_t agbno; + xfs_extlen_t len; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_xfs_defer_pending_item_class { + struct trace_entry ent; + dev_t dev; + u32 __data_loc_name; + void *intent; + void *item; + char committed; + unsigned int flags; + int nr; + char __data[0]; +}; + +struct trace_event_raw_xfs_rmap_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agblock_t agbno; + xfs_extlen_t len; + uint64_t owner; + uint64_t offset; + long unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_xfs_btree_error_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_ino_t ino; + int error; + long unsigned int caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_rmap_convert_state { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_ino_t ino; + int state; + long unsigned int caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_rmapbt_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agblock_t agbno; + xfs_extlen_t len; + uint64_t owner; + uint64_t offset; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_xfs_rmap_deferred_class { + struct trace_entry ent; + dev_t dev; + long long unsigned int owner; + xfs_agnumber_t agno; + xfs_agblock_t agbno; + int whichfork; + xfs_fileoff_t l_loff; + xfs_filblks_t l_len; + xfs_exntst_t l_state; + int op; + char __data[0]; +}; + +struct trace_event_raw_xfs_bmap_deferred_class { + struct trace_entry ent; + dev_t dev; + dev_t opdev; + xfs_agnumber_t agno; + xfs_ino_t ino; + xfs_agblock_t agbno; + xfs_fsblock_t rtbno; + int whichfork; + xfs_fileoff_t l_loff; + xfs_filblks_t l_len; + xfs_exntst_t l_state; + int op; + char __data[0]; +}; + +struct trace_event_raw_xfs_ag_resv_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + int resv; + xfs_extlen_t freeblks; + xfs_extlen_t flcount; + xfs_extlen_t reserved; + xfs_extlen_t asked; + xfs_extlen_t len; + char __data[0]; +}; + +struct trace_event_raw_xfs_ag_error_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + int error; + long unsigned int caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_refcount_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agblock_t agbno; + xfs_extlen_t len; + char __data[0]; +}; + +struct trace_event_raw_xfs_refcount_lookup { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agblock_t agbno; + xfs_lookup_t dir; + char __data[0]; +}; + +struct trace_event_raw_xfs_refcount_extent_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + enum xfs_refc_domain domain; + xfs_agblock_t startblock; + xfs_extlen_t blockcount; + xfs_nlink_t refcount; + char __data[0]; +}; + +struct trace_event_raw_xfs_refcount_extent_at_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + enum xfs_refc_domain domain; + xfs_agblock_t startblock; + xfs_extlen_t blockcount; + xfs_nlink_t refcount; + xfs_agblock_t agbno; + char __data[0]; +}; + +struct trace_event_raw_xfs_refcount_double_extent_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + enum xfs_refc_domain i1_domain; + xfs_agblock_t i1_startblock; + xfs_extlen_t i1_blockcount; + xfs_nlink_t i1_refcount; + enum xfs_refc_domain i2_domain; + xfs_agblock_t i2_startblock; + xfs_extlen_t i2_blockcount; + xfs_nlink_t i2_refcount; + char __data[0]; +}; + +struct trace_event_raw_xfs_refcount_double_extent_at_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + enum xfs_refc_domain i1_domain; + xfs_agblock_t i1_startblock; + xfs_extlen_t i1_blockcount; + xfs_nlink_t i1_refcount; + enum xfs_refc_domain i2_domain; + xfs_agblock_t i2_startblock; + xfs_extlen_t i2_blockcount; + xfs_nlink_t i2_refcount; + xfs_agblock_t agbno; + char __data[0]; +}; + +struct trace_event_raw_xfs_refcount_triple_extent_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + enum xfs_refc_domain i1_domain; + xfs_agblock_t i1_startblock; + xfs_extlen_t i1_blockcount; + xfs_nlink_t i1_refcount; + enum xfs_refc_domain i2_domain; + xfs_agblock_t i2_startblock; + xfs_extlen_t i2_blockcount; + xfs_nlink_t i2_refcount; + enum xfs_refc_domain i3_domain; + xfs_agblock_t i3_startblock; + xfs_extlen_t i3_blockcount; + xfs_nlink_t i3_refcount; + char __data[0]; +}; + +struct trace_event_raw_xfs_refcount_deferred_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + int op; + xfs_agblock_t agbno; + xfs_extlen_t len; + char __data[0]; +}; + +struct trace_event_raw_xfs_inode_error_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + int error; + long unsigned int caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_double_io_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t src_ino; + loff_t src_isize; + loff_t src_disize; + loff_t src_offset; + long long int len; + xfs_ino_t dest_ino; + loff_t dest_isize; + loff_t dest_disize; + loff_t dest_offset; + char __data[0]; +}; + +struct trace_event_raw_xfs_inode_irec_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + xfs_fileoff_t lblk; + xfs_extlen_t len; + xfs_fsblock_t pblk; + int state; + char __data[0]; +}; + +struct trace_event_raw_xfs_wb_invalid_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + u64 addr; + loff_t pos; + u64 len; + u16 type; + u16 flags; + u32 wpcseq; + u32 forkseq; + char __data[0]; +}; + +struct trace_event_raw_xfs_iomap_invalid_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + u64 addr; + loff_t pos; + u64 len; + u64 validity_cookie; + u64 inodeseq; + u16 type; + u16 flags; + char __data[0]; +}; + +struct trace_event_raw_xfs_reflink_remap_blocks { + struct trace_entry ent; + dev_t dev; + xfs_ino_t src_ino; + xfs_fileoff_t src_lblk; + xfs_filblks_t len; + xfs_ino_t dest_ino; + xfs_fileoff_t dest_lblk; + char __data[0]; +}; + +struct trace_event_raw_xfs_ioctl_clone { + struct trace_entry ent; + dev_t dev; + long unsigned int src_ino; + loff_t src_isize; + long unsigned int dest_ino; + loff_t dest_isize; + char __data[0]; +}; + +struct trace_event_raw_xfs_fsmap_class { + struct trace_entry ent; + dev_t dev; + dev_t keydev; + xfs_agnumber_t agno; + xfs_fsblock_t bno; + xfs_filblks_t len; + uint64_t owner; + uint64_t offset; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_xfs_fsmap_linear_class { + struct trace_entry ent; + dev_t dev; + dev_t keydev; + xfs_fsblock_t bno; + char __data[0]; +}; + +struct trace_event_raw_xfs_getfsmap_class { + struct trace_entry ent; + dev_t dev; + dev_t keydev; + xfs_daddr_t block; + xfs_daddr_t len; + uint64_t owner; + uint64_t offset; + uint64_t flags; + char __data[0]; +}; + +struct trace_event_raw_xfs_trans_resv_class { + struct trace_entry ent; + dev_t dev; + int type; + uint logres; + int logcount; + int logflags; + char __data[0]; +}; + +struct trace_event_raw_xfs_log_get_max_trans_res { + struct trace_entry ent; + dev_t dev; + uint logres; + int logcount; + char __data[0]; +}; + +struct trace_event_raw_xfs_trans_class { + struct trace_entry ent; + dev_t dev; + uint32_t tid; + uint32_t flags; + long unsigned int caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_iunlink_update_bucket { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + unsigned int bucket; + xfs_agino_t old_ptr; + xfs_agino_t new_ptr; + char __data[0]; +}; + +struct trace_event_raw_xfs_iunlink_update_dinode { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agino_t agino; + xfs_agino_t old_ptr; + xfs_agino_t new_ptr; + char __data[0]; +}; + +struct trace_event_raw_xfs_iunlink_reload_next { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agino_t agino; + xfs_agino_t prev_agino; + xfs_agino_t next_agino; + char __data[0]; +}; + +struct trace_event_raw_xfs_inode_reload_unlinked_bucket { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agino_t agino; + char __data[0]; +}; + +struct trace_event_raw_xfs_ag_inode_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agino_t agino; + char __data[0]; +}; + +struct trace_event_raw_xfs_fs_corrupt_class { + struct trace_entry ent; + dev_t dev; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_xfs_ag_corrupt_class { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_xfs_inode_corrupt_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_xfs_iwalk_ag { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agino_t startino; + char __data[0]; +}; + +struct trace_event_raw_xfs_iwalk_ag_rec { + struct trace_entry ent; + dev_t dev; + xfs_agnumber_t agno; + xfs_agino_t startino; + uint64_t freemask; + char __data[0]; +}; + +struct trace_event_raw_xfs_pwork_init { + struct trace_entry ent; + dev_t dev; + unsigned int nr_threads; + pid_t pid; + char __data[0]; +}; + +struct trace_event_raw_xfs_check_new_dalign { + struct trace_entry ent; + dev_t dev; + int new_dalign; + xfs_ino_t sb_rootino; + xfs_ino_t calc_rootino; + char __data[0]; +}; + +struct trace_event_raw_xfs_btree_commit_afakeroot { + struct trace_entry ent; + dev_t dev; + u32 __data_loc_name; + xfs_agnumber_t agno; + xfs_agblock_t agbno; + unsigned int levels; + unsigned int blocks; + char __data[0]; +}; + +struct trace_event_raw_xfs_btree_commit_ifakeroot { + struct trace_entry ent; + dev_t dev; + u32 __data_loc_name; + xfs_agnumber_t agno; + xfs_agino_t agino; + unsigned int levels; + unsigned int blocks; + int whichfork; + char __data[0]; +}; + +struct trace_event_raw_xfs_btree_bload_level_geometry { + struct trace_entry ent; + dev_t dev; + u32 __data_loc_name; + unsigned int level; + unsigned int nlevels; + uint64_t nr_this_level; + unsigned int nr_per_block; + unsigned int desired_npb; + long long unsigned int blocks; + long long unsigned int blocks_with_extra; + char __data[0]; +}; + +struct trace_event_raw_xfs_btree_bload_block { + struct trace_entry ent; + dev_t dev; + u32 __data_loc_name; + unsigned int level; + long long unsigned int block_idx; + long long unsigned int nr_blocks; + xfs_agnumber_t agno; + xfs_agblock_t agbno; + unsigned int nr_records; + char __data[0]; +}; + +struct trace_event_raw_xfs_timestamp_range_class { + struct trace_entry ent; + dev_t dev; + long long int min; + long long int max; + char __data[0]; +}; + +struct trace_event_raw_xfs_icwalk_class { + struct trace_entry ent; + dev_t dev; + __u32 flags; + uint32_t uid; + uint32_t gid; + prid_t prid; + __u64 min_file_size; + long int scan_limit; + long unsigned int caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xlog_iclog_class { + struct trace_entry ent; + dev_t dev; + uint32_t state; + int32_t refcount; + uint32_t offset; + uint32_t flags; + long long unsigned int lsn; + long unsigned int caller_ip; + char __data[0]; +}; + +struct trace_event_raw_xfs_das_state_class { + struct trace_entry ent; + int das; + xfs_ino_t ino; + char __data[0]; +}; + +struct trace_event_raw_xfs_force_shutdown { + struct trace_entry ent; + dev_t dev; + int ptag; + int flags; + u32 __data_loc_fname; + int line_num; + char __data[0]; +}; + +struct trace_event_raw_xfs_exchrange_inode_class { + struct trace_entry ent; + dev_t dev; + int whichfile; + xfs_ino_t ino; + int format; + xfs_extnum_t nex; + int broot_size; + int fork_off; + char __data[0]; +}; + +struct trace_event_raw_xfs_exchrange_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ip1_ino; + loff_t ip1_isize; + loff_t ip1_disize; + xfs_ino_t ip2_ino; + loff_t ip2_isize; + loff_t ip2_disize; + loff_t file1_offset; + loff_t file2_offset; + long long unsigned int length; + long long unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_xfs_exchrange_freshness { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ip2_ino; + long long int ip2_mtime; + long long int ip2_ctime; + int ip2_mtime_nsec; + int ip2_ctime_nsec; + xfs_ino_t file2_ino; + long long int file2_mtime; + long long int file2_ctime; + int file2_mtime_nsec; + int file2_ctime_nsec; + char __data[0]; +}; + +struct trace_event_raw_xfs_exchmaps_overhead { + struct trace_entry ent; + dev_t dev; + long long unsigned int bmbt_blocks; + long long unsigned int rmapbt_blocks; + char __data[0]; +}; + +struct trace_event_raw_xfs_exchmaps_estimate_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino1; + xfs_ino_t ino2; + xfs_fileoff_t startoff1; + xfs_fileoff_t startoff2; + xfs_filblks_t blockcount; + uint64_t flags; + xfs_filblks_t ip1_bcount; + xfs_filblks_t ip2_bcount; + xfs_filblks_t ip1_rtbcount; + xfs_filblks_t ip2_rtbcount; + long long unsigned int resblks; + long long unsigned int nr_exchanges; + char __data[0]; +}; + +struct trace_event_raw_xfs_exchmaps_intent_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino1; + xfs_ino_t ino2; + uint64_t flags; + xfs_fileoff_t startoff1; + xfs_fileoff_t startoff2; + xfs_filblks_t blockcount; + xfs_fsize_t isize1; + xfs_fsize_t isize2; + xfs_fsize_t new_isize1; + xfs_fsize_t new_isize2; + char __data[0]; +}; + +struct trace_event_raw_xfs_exchmaps_delta_nextents_step { + struct trace_entry ent; + dev_t dev; + xfs_fileoff_t loff; + xfs_fsblock_t lstart; + xfs_filblks_t lcount; + xfs_fileoff_t coff; + xfs_fsblock_t cstart; + xfs_filblks_t ccount; + xfs_fileoff_t noff; + xfs_fsblock_t nstart; + xfs_filblks_t ncount; + xfs_fileoff_t roff; + xfs_fsblock_t rstart; + xfs_filblks_t rcount; + int delta; + unsigned int state; + char __data[0]; +}; + +struct trace_event_raw_xfs_exchmaps_delta_nextents { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino1; + xfs_ino_t ino2; + xfs_extnum_t nexts1; + xfs_extnum_t nexts2; + int64_t d_nexts1; + int64_t d_nexts2; + char __data[0]; +}; + +struct trace_event_raw_xfs_getparents_rec_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + unsigned int firstu; + short unsigned int reclen; + unsigned int bufsize; + xfs_ino_t parent_ino; + unsigned int parent_gen; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_xfs_getparents_class { + struct trace_entry ent; + dev_t dev; + xfs_ino_t ino; + short unsigned int iflags; + short unsigned int oflags; + unsigned int bufsize; + unsigned int hashval; + unsigned int blkno; + unsigned int offset; + int initted; + char __data[0]; +}; + +struct trace_event_data_offsets_xfs_attr_list_class {}; + +struct trace_event_data_offsets_xlog_intent_recovery_failed { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_xfs_perag_class {}; + +struct trace_event_data_offsets_xfs_inodegc_worker {}; + +struct trace_event_data_offsets_xfs_fs_class {}; + +struct trace_event_data_offsets_xfs_inodegc_shrinker_scan {}; + +struct trace_event_data_offsets_xfs_ag_class {}; + +struct trace_event_data_offsets_xfs_attr_list_node_descend {}; + +struct trace_event_data_offsets_xfs_bmap_class {}; + +struct trace_event_data_offsets_xfs_buf_class {}; + +struct trace_event_data_offsets_xfs_buf_flags_class {}; + +struct trace_event_data_offsets_xfs_buf_ioerror {}; + +struct trace_event_data_offsets_xfs_buf_item_class {}; + +struct trace_event_data_offsets_xfs_filestream_class {}; + +struct trace_event_data_offsets_xfs_filestream_pick {}; + +struct trace_event_data_offsets_xfs_lock_class {}; + +struct trace_event_data_offsets_xfs_inode_class {}; + +struct trace_event_data_offsets_xfs_filemap_fault {}; + +struct trace_event_data_offsets_xfs_iref_class {}; + +struct trace_event_data_offsets_xfs_iomap_prealloc_size {}; + +struct trace_event_data_offsets_xfs_irec_merge_pre {}; + +struct trace_event_data_offsets_xfs_irec_merge_post {}; + +struct trace_event_data_offsets_xfs_namespace_class { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_xfs_rename { + u32 src_name; + const void *src_name_ptr_; + u32 target_name; + const void *target_name_ptr_; +}; + +struct trace_event_data_offsets_xfs_dquot_class {}; + +struct trace_event_data_offsets_xfs_trans_mod_dquot {}; + +struct trace_event_data_offsets_xfs_dqtrx_class {}; + +struct trace_event_data_offsets_xfs_loggrant_class {}; + +struct trace_event_data_offsets_xfs_log_item_class {}; + +struct trace_event_data_offsets_xfs_log_force {}; + +struct trace_event_data_offsets_xfs_ail_class {}; + +struct trace_event_data_offsets_xfs_log_assign_tail_lsn {}; + +struct trace_event_data_offsets_xfs_file_class {}; + +struct trace_event_data_offsets_xfs_imap_class {}; + +struct trace_event_data_offsets_xfs_simple_io_class {}; + +struct trace_event_data_offsets_xfs_itrunc_class {}; + +struct trace_event_data_offsets_xfs_pagecache_inval {}; + +struct trace_event_data_offsets_xfs_bunmap {}; + +struct trace_event_data_offsets_xfs_extent_busy_class {}; + +struct trace_event_data_offsets_xfs_extent_busy_trim {}; + +struct trace_event_data_offsets_xfs_agf_class {}; + +struct trace_event_data_offsets_xfs_free_extent {}; + +struct trace_event_data_offsets_xfs_alloc_class {}; + +struct trace_event_data_offsets_xfs_alloc_cur_check { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_xfs_da_class { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_xfs_attr_class { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_xfs_dir2_space_class {}; + +struct trace_event_data_offsets_xfs_dir2_leafn_moveents {}; + +struct trace_event_data_offsets_xfs_swap_extent_class {}; + +struct trace_event_data_offsets_xfs_log_recover {}; + +struct trace_event_data_offsets_xfs_log_recover_record {}; + +struct trace_event_data_offsets_xfs_log_recover_item_class {}; + +struct trace_event_data_offsets_xfs_log_recover_buf_item_class {}; + +struct trace_event_data_offsets_xfs_log_recover_ino_item_class {}; + +struct trace_event_data_offsets_xfs_log_recover_icreate_item_class {}; + +struct trace_event_data_offsets_xfs_discard_class {}; + +struct trace_event_data_offsets_xfs_rtdiscard_class {}; + +struct trace_event_data_offsets_xfs_btree_cur_class { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_xfs_btree_alloc_block { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_xfs_btree_free_block { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_xfs_defer_class {}; + +struct trace_event_data_offsets_xfs_defer_error_class {}; + +struct trace_event_data_offsets_xfs_defer_pending_class { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_xfs_free_extent_deferred_class {}; + +struct trace_event_data_offsets_xfs_defer_pending_item_class { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_xfs_rmap_class {}; + +struct trace_event_data_offsets_xfs_btree_error_class {}; + +struct trace_event_data_offsets_xfs_rmap_convert_state {}; + +struct trace_event_data_offsets_xfs_rmapbt_class {}; + +struct trace_event_data_offsets_xfs_rmap_deferred_class {}; + +struct trace_event_data_offsets_xfs_bmap_deferred_class {}; + +struct trace_event_data_offsets_xfs_ag_resv_class {}; + +struct trace_event_data_offsets_xfs_ag_error_class {}; + +struct trace_event_data_offsets_xfs_refcount_class {}; + +struct trace_event_data_offsets_xfs_refcount_lookup {}; + +struct trace_event_data_offsets_xfs_refcount_extent_class {}; + +struct trace_event_data_offsets_xfs_refcount_extent_at_class {}; + +struct trace_event_data_offsets_xfs_refcount_double_extent_class {}; + +struct trace_event_data_offsets_xfs_refcount_double_extent_at_class {}; + +struct trace_event_data_offsets_xfs_refcount_triple_extent_class {}; + +struct trace_event_data_offsets_xfs_refcount_deferred_class {}; + +struct trace_event_data_offsets_xfs_inode_error_class {}; + +struct trace_event_data_offsets_xfs_double_io_class {}; + +struct trace_event_data_offsets_xfs_inode_irec_class {}; + +struct trace_event_data_offsets_xfs_wb_invalid_class {}; + +struct trace_event_data_offsets_xfs_iomap_invalid_class {}; + +struct trace_event_data_offsets_xfs_reflink_remap_blocks {}; + +struct trace_event_data_offsets_xfs_ioctl_clone {}; + +struct trace_event_data_offsets_xfs_fsmap_class {}; + +struct trace_event_data_offsets_xfs_fsmap_linear_class {}; + +struct trace_event_data_offsets_xfs_getfsmap_class {}; + +struct trace_event_data_offsets_xfs_trans_resv_class {}; + +struct trace_event_data_offsets_xfs_log_get_max_trans_res {}; + +struct trace_event_data_offsets_xfs_trans_class {}; + +struct trace_event_data_offsets_xfs_iunlink_update_bucket {}; + +struct trace_event_data_offsets_xfs_iunlink_update_dinode {}; + +struct trace_event_data_offsets_xfs_iunlink_reload_next {}; + +struct trace_event_data_offsets_xfs_inode_reload_unlinked_bucket {}; + +struct trace_event_data_offsets_xfs_ag_inode_class {}; + +struct trace_event_data_offsets_xfs_fs_corrupt_class {}; + +struct trace_event_data_offsets_xfs_ag_corrupt_class {}; + +struct trace_event_data_offsets_xfs_inode_corrupt_class {}; + +struct trace_event_data_offsets_xfs_iwalk_ag {}; + +struct trace_event_data_offsets_xfs_iwalk_ag_rec {}; + +struct trace_event_data_offsets_xfs_pwork_init {}; + +struct trace_event_data_offsets_xfs_check_new_dalign {}; + +struct trace_event_data_offsets_xfs_btree_commit_afakeroot { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_xfs_btree_commit_ifakeroot { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_xfs_btree_bload_level_geometry { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_xfs_btree_bload_block { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_xfs_timestamp_range_class {}; + +struct trace_event_data_offsets_xfs_icwalk_class {}; + +struct trace_event_data_offsets_xlog_iclog_class {}; + +struct trace_event_data_offsets_xfs_das_state_class {}; + +struct trace_event_data_offsets_xfs_force_shutdown { + u32 fname; + const void *fname_ptr_; +}; + +struct trace_event_data_offsets_xfs_exchrange_inode_class {}; + +struct trace_event_data_offsets_xfs_exchrange_class {}; + +struct trace_event_data_offsets_xfs_exchrange_freshness {}; + +struct trace_event_data_offsets_xfs_exchmaps_overhead {}; + +struct trace_event_data_offsets_xfs_exchmaps_estimate_class {}; + +struct trace_event_data_offsets_xfs_exchmaps_intent_class {}; + +struct trace_event_data_offsets_xfs_exchmaps_delta_nextents_step {}; + +struct trace_event_data_offsets_xfs_exchmaps_delta_nextents {}; + +struct trace_event_data_offsets_xfs_getparents_rec_class { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_xfs_getparents_class {}; + +typedef void (*btf_trace_xfs_attr_list_sf)(void *, struct xfs_attr_list_context *); + +typedef void (*btf_trace_xfs_attr_list_sf_all)(void *, struct xfs_attr_list_context *); + +typedef void (*btf_trace_xfs_attr_list_leaf)(void *, struct xfs_attr_list_context *); + +typedef void (*btf_trace_xfs_attr_list_leaf_end)(void *, struct xfs_attr_list_context *); + +typedef void (*btf_trace_xfs_attr_list_full)(void *, struct xfs_attr_list_context *); + +typedef void (*btf_trace_xfs_attr_list_add)(void *, struct xfs_attr_list_context *); + +typedef void (*btf_trace_xfs_attr_list_wrong_blk)(void *, struct xfs_attr_list_context *); + +typedef void (*btf_trace_xfs_attr_list_notfound)(void *, struct xfs_attr_list_context *); + +typedef void (*btf_trace_xfs_attr_leaf_list)(void *, struct xfs_attr_list_context *); + +typedef void (*btf_trace_xfs_attr_node_list)(void *, struct xfs_attr_list_context *); + +typedef void (*btf_trace_xlog_intent_recovery_failed)(void *, struct xfs_mount *, const struct xfs_defer_op_type *, int); + +typedef void (*btf_trace_xfs_perag_get)(void *, struct xfs_perag *, long unsigned int); + +typedef void (*btf_trace_xfs_perag_hold)(void *, struct xfs_perag *, long unsigned int); + +typedef void (*btf_trace_xfs_perag_put)(void *, struct xfs_perag *, long unsigned int); + +typedef void (*btf_trace_xfs_perag_grab)(void *, struct xfs_perag *, long unsigned int); + +typedef void (*btf_trace_xfs_perag_grab_next_tag)(void *, struct xfs_perag *, long unsigned int); + +typedef void (*btf_trace_xfs_perag_rele)(void *, struct xfs_perag *, long unsigned int); + +typedef void (*btf_trace_xfs_perag_set_inode_tag)(void *, struct xfs_perag *, long unsigned int); + +typedef void (*btf_trace_xfs_perag_clear_inode_tag)(void *, struct xfs_perag *, long unsigned int); + +typedef void (*btf_trace_xfs_reclaim_inodes_count)(void *, struct xfs_perag *, long unsigned int); + +typedef void (*btf_trace_xfs_inodegc_worker)(void *, struct xfs_mount *, unsigned int); + +typedef void (*btf_trace_xfs_inodegc_flush)(void *, struct xfs_mount *, void *); + +typedef void (*btf_trace_xfs_inodegc_push)(void *, struct xfs_mount *, void *); + +typedef void (*btf_trace_xfs_inodegc_start)(void *, struct xfs_mount *, void *); + +typedef void (*btf_trace_xfs_inodegc_stop)(void *, struct xfs_mount *, void *); + +typedef void (*btf_trace_xfs_inodegc_queue)(void *, struct xfs_mount *, void *); + +typedef void (*btf_trace_xfs_inodegc_throttle)(void *, struct xfs_mount *, void *); + +typedef void (*btf_trace_xfs_fs_sync_fs)(void *, struct xfs_mount *, void *); + +typedef void (*btf_trace_xfs_blockgc_start)(void *, struct xfs_mount *, void *); + +typedef void (*btf_trace_xfs_blockgc_stop)(void *, struct xfs_mount *, void *); + +typedef void (*btf_trace_xfs_blockgc_worker)(void *, struct xfs_mount *, void *); + +typedef void (*btf_trace_xfs_blockgc_flush_all)(void *, struct xfs_mount *, void *); + +typedef void (*btf_trace_xfs_inodegc_shrinker_scan)(void *, struct xfs_mount *, struct shrink_control *, void *); + +typedef void (*btf_trace_xfs_read_agf)(void *, struct xfs_mount *, xfs_agnumber_t); + +typedef void (*btf_trace_xfs_alloc_read_agf)(void *, struct xfs_mount *, xfs_agnumber_t); + +typedef void (*btf_trace_xfs_read_agi)(void *, struct xfs_mount *, xfs_agnumber_t); + +typedef void (*btf_trace_xfs_ialloc_read_agi)(void *, struct xfs_mount *, xfs_agnumber_t); + +typedef void (*btf_trace_xfs_attr_list_node_descend)(void *, struct xfs_attr_list_context *, struct xfs_da_node_entry *); + +typedef void (*btf_trace_xfs_iext_insert)(void *, struct xfs_inode *, struct xfs_iext_cursor *, int, long unsigned int); + +typedef void (*btf_trace_xfs_iext_remove)(void *, struct xfs_inode *, struct xfs_iext_cursor *, int, long unsigned int); + +typedef void (*btf_trace_xfs_bmap_pre_update)(void *, struct xfs_inode *, struct xfs_iext_cursor *, int, long unsigned int); + +typedef void (*btf_trace_xfs_bmap_post_update)(void *, struct xfs_inode *, struct xfs_iext_cursor *, int, long unsigned int); + +typedef void (*btf_trace_xfs_read_extent)(void *, struct xfs_inode *, struct xfs_iext_cursor *, int, long unsigned int); + +typedef void (*btf_trace_xfs_write_extent)(void *, struct xfs_inode *, struct xfs_iext_cursor *, int, long unsigned int); + +typedef void (*btf_trace_xfs_buf_init)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_free)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_hold)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_rele)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_iodone)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_submit)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_lock)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_lock_done)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_trylock_fail)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_trylock)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_unlock)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_iowait)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_iowait_done)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_delwri_queue)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_delwri_queued)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_delwri_split)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_delwri_pushbuf)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_get_uncached)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_item_relse)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_iodone_async)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_error_relse)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_drain_buftarg)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_trans_read_buf_shut)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_btree_corrupt)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_reset_dqcounts)(void *, struct xfs_buf *, long unsigned int); + +typedef void (*btf_trace_xfs_buf_find)(void *, struct xfs_buf *, unsigned int, long unsigned int); + +typedef void (*btf_trace_xfs_buf_get)(void *, struct xfs_buf *, unsigned int, long unsigned int); + +typedef void (*btf_trace_xfs_buf_read)(void *, struct xfs_buf *, unsigned int, long unsigned int); + +typedef void (*btf_trace_xfs_buf_ioerror)(void *, struct xfs_buf *, int, xfs_failaddr_t); + +typedef void (*btf_trace_xfs_buf_item_size)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_buf_item_size_ordered)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_buf_item_size_stale)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_buf_item_format)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_buf_item_format_stale)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_buf_item_ordered)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_buf_item_pin)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_buf_item_unpin)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_buf_item_unpin_stale)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_buf_item_release)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_buf_item_committed)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_buf_item_push)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_trans_get_buf)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_trans_get_buf_recur)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_trans_getsb)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_trans_getsb_recur)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_trans_read_buf)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_trans_read_buf_recur)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_trans_log_buf)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_trans_brelse)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_trans_bdetach)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_trans_bjoin)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_trans_bhold)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_trans_bhold_release)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_trans_binval)(void *, struct xfs_buf_log_item *); + +typedef void (*btf_trace_xfs_filestream_free)(void *, struct xfs_perag *, xfs_ino_t); + +typedef void (*btf_trace_xfs_filestream_lookup)(void *, struct xfs_perag *, xfs_ino_t); + +typedef void (*btf_trace_xfs_filestream_scan)(void *, struct xfs_perag *, xfs_ino_t); + +typedef void (*btf_trace_xfs_filestream_pick)(void *, struct xfs_perag *, xfs_ino_t); + +typedef void (*btf_trace_xfs_ilock)(void *, struct xfs_inode *, unsigned int, long unsigned int); + +typedef void (*btf_trace_xfs_ilock_nowait)(void *, struct xfs_inode *, unsigned int, long unsigned int); + +typedef void (*btf_trace_xfs_ilock_demote)(void *, struct xfs_inode *, unsigned int, long unsigned int); + +typedef void (*btf_trace_xfs_iunlock)(void *, struct xfs_inode *, unsigned int, long unsigned int); + +typedef void (*btf_trace_xfs_iget_skip)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_iget_recycle)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_iget_recycle_fail)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_iget_hit)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_iget_miss)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_getattr)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_setattr)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_readlink)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_inactive_symlink)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_alloc_file_space)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_free_file_space)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_zero_file_space)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_collapse_file_space)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_insert_file_space)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_readdir)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_vm_bmap)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_file_ioctl)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_file_compat_ioctl)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_ioctl_setattr)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_dir_fsync)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_file_fsync)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_destroy_inode)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_update_time)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_dquot_dqalloc)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_dquot_dqdetach)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_inode_set_eofblocks_tag)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_inode_clear_eofblocks_tag)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_inode_free_eofblocks_invalid)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_inode_set_cowblocks_tag)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_inode_clear_cowblocks_tag)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_inode_free_cowblocks_invalid)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_inode_set_reclaimable)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_inode_reclaiming)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_inode_set_need_inactive)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_inode_inactivating)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_filemap_fault)(void *, struct xfs_inode *, unsigned int, bool); + +typedef void (*btf_trace_xfs_iomap_prealloc_size)(void *, struct xfs_inode *, xfs_fsblock_t, int, unsigned int); + +typedef void (*btf_trace_xfs_irec_merge_pre)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agino_t, uint16_t, xfs_agino_t, uint16_t); + +typedef void (*btf_trace_xfs_irec_merge_post)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agino_t, uint16_t); + +typedef void (*btf_trace_xfs_irele)(void *, struct xfs_inode *, long unsigned int); + +typedef void (*btf_trace_xfs_inode_pin)(void *, struct xfs_inode *, long unsigned int); + +typedef void (*btf_trace_xfs_inode_unpin)(void *, struct xfs_inode *, long unsigned int); + +typedef void (*btf_trace_xfs_inode_unpin_nowait)(void *, struct xfs_inode *, long unsigned int); + +typedef void (*btf_trace_xfs_remove)(void *, struct xfs_inode *, const struct xfs_name *); + +typedef void (*btf_trace_xfs_link)(void *, struct xfs_inode *, const struct xfs_name *); + +typedef void (*btf_trace_xfs_lookup)(void *, struct xfs_inode *, const struct xfs_name *); + +typedef void (*btf_trace_xfs_create)(void *, struct xfs_inode *, const struct xfs_name *); + +typedef void (*btf_trace_xfs_symlink)(void *, struct xfs_inode *, const struct xfs_name *); + +typedef void (*btf_trace_xfs_rename)(void *, struct xfs_inode *, struct xfs_inode *, struct xfs_name *, struct xfs_name *); + +typedef void (*btf_trace_xfs_dqadjust)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqreclaim_want)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqreclaim_dirty)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqreclaim_busy)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqreclaim_done)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqattach_found)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqattach_get)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqalloc)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqtobp_read)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqread)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqread_fail)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqget_hit)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqget_miss)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqget_freeing)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqget_dup)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqput)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqput_free)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqrele)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqflush)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqflush_force)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_dqflush_done)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_trans_apply_dquot_deltas_before)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_trans_apply_dquot_deltas_after)(void *, struct xfs_dquot *); + +typedef void (*btf_trace_xfs_trans_mod_dquot)(void *, struct xfs_trans *, struct xfs_dquot *, unsigned int, int64_t); + +typedef void (*btf_trace_xfs_trans_apply_dquot_deltas)(void *, struct xfs_dqtrx *); + +typedef void (*btf_trace_xfs_trans_mod_dquot_before)(void *, struct xfs_dqtrx *); + +typedef void (*btf_trace_xfs_trans_mod_dquot_after)(void *, struct xfs_dqtrx *); + +typedef void (*btf_trace_xfs_log_umount_write)(void *, struct xlog *, struct xlog_ticket *); + +typedef void (*btf_trace_xfs_log_grant_sleep)(void *, struct xlog *, struct xlog_ticket *); + +typedef void (*btf_trace_xfs_log_grant_wake)(void *, struct xlog *, struct xlog_ticket *); + +typedef void (*btf_trace_xfs_log_grant_wake_up)(void *, struct xlog *, struct xlog_ticket *); + +typedef void (*btf_trace_xfs_log_reserve)(void *, struct xlog *, struct xlog_ticket *); + +typedef void (*btf_trace_xfs_log_reserve_exit)(void *, struct xlog *, struct xlog_ticket *); + +typedef void (*btf_trace_xfs_log_regrant)(void *, struct xlog *, struct xlog_ticket *); + +typedef void (*btf_trace_xfs_log_regrant_exit)(void *, struct xlog *, struct xlog_ticket *); + +typedef void (*btf_trace_xfs_log_ticket_regrant)(void *, struct xlog *, struct xlog_ticket *); + +typedef void (*btf_trace_xfs_log_ticket_regrant_exit)(void *, struct xlog *, struct xlog_ticket *); + +typedef void (*btf_trace_xfs_log_ticket_regrant_sub)(void *, struct xlog *, struct xlog_ticket *); + +typedef void (*btf_trace_xfs_log_ticket_ungrant)(void *, struct xlog *, struct xlog_ticket *); + +typedef void (*btf_trace_xfs_log_ticket_ungrant_sub)(void *, struct xlog *, struct xlog_ticket *); + +typedef void (*btf_trace_xfs_log_ticket_ungrant_exit)(void *, struct xlog *, struct xlog_ticket *); + +typedef void (*btf_trace_xfs_log_cil_wait)(void *, struct xlog *, struct xlog_ticket *); + +typedef void (*btf_trace_xfs_log_cil_return)(void *, struct xlog *, struct xlog_ticket *); + +typedef void (*btf_trace_xfs_log_force)(void *, struct xfs_mount *, xfs_lsn_t, long unsigned int); + +typedef void (*btf_trace_xfs_ail_push)(void *, struct xfs_log_item *); + +typedef void (*btf_trace_xfs_ail_pinned)(void *, struct xfs_log_item *); + +typedef void (*btf_trace_xfs_ail_locked)(void *, struct xfs_log_item *); + +typedef void (*btf_trace_xfs_ail_flushing)(void *, struct xfs_log_item *); + +typedef void (*btf_trace_xfs_cil_whiteout_mark)(void *, struct xfs_log_item *); + +typedef void (*btf_trace_xfs_cil_whiteout_skip)(void *, struct xfs_log_item *); + +typedef void (*btf_trace_xfs_cil_whiteout_unpin)(void *, struct xfs_log_item *); + +typedef void (*btf_trace_xfs_ail_insert)(void *, struct xfs_log_item *, xfs_lsn_t, xfs_lsn_t); + +typedef void (*btf_trace_xfs_ail_move)(void *, struct xfs_log_item *, xfs_lsn_t, xfs_lsn_t); + +typedef void (*btf_trace_xfs_ail_delete)(void *, struct xfs_log_item *, xfs_lsn_t, xfs_lsn_t); + +typedef void (*btf_trace_xfs_log_assign_tail_lsn)(void *, struct xlog *, xfs_lsn_t); + +typedef void (*btf_trace_xfs_file_buffered_read)(void *, struct kiocb *, struct iov_iter *); + +typedef void (*btf_trace_xfs_file_direct_read)(void *, struct kiocb *, struct iov_iter *); + +typedef void (*btf_trace_xfs_file_dax_read)(void *, struct kiocb *, struct iov_iter *); + +typedef void (*btf_trace_xfs_file_buffered_write)(void *, struct kiocb *, struct iov_iter *); + +typedef void (*btf_trace_xfs_file_direct_write)(void *, struct kiocb *, struct iov_iter *); + +typedef void (*btf_trace_xfs_file_dax_write)(void *, struct kiocb *, struct iov_iter *); + +typedef void (*btf_trace_xfs_reflink_bounce_dio_write)(void *, struct kiocb *, struct iov_iter *); + +typedef void (*btf_trace_xfs_map_blocks_found)(void *, struct xfs_inode *, xfs_off_t, ssize_t, int, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_map_blocks_alloc)(void *, struct xfs_inode *, xfs_off_t, ssize_t, int, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_iomap_alloc)(void *, struct xfs_inode *, xfs_off_t, ssize_t, int, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_iomap_found)(void *, struct xfs_inode *, xfs_off_t, ssize_t, int, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_delalloc_enospc)(void *, struct xfs_inode *, xfs_off_t, ssize_t); + +typedef void (*btf_trace_xfs_unwritten_convert)(void *, struct xfs_inode *, xfs_off_t, ssize_t); + +typedef void (*btf_trace_xfs_setfilesize)(void *, struct xfs_inode *, xfs_off_t, ssize_t); + +typedef void (*btf_trace_xfs_zero_eof)(void *, struct xfs_inode *, xfs_off_t, ssize_t); + +typedef void (*btf_trace_xfs_end_io_direct_write)(void *, struct xfs_inode *, xfs_off_t, ssize_t); + +typedef void (*btf_trace_xfs_end_io_direct_write_unwritten)(void *, struct xfs_inode *, xfs_off_t, ssize_t); + +typedef void (*btf_trace_xfs_end_io_direct_write_append)(void *, struct xfs_inode *, xfs_off_t, ssize_t); + +typedef void (*btf_trace_xfs_file_splice_read)(void *, struct xfs_inode *, xfs_off_t, ssize_t); + +typedef void (*btf_trace_xfs_itruncate_extents_start)(void *, struct xfs_inode *, xfs_fsize_t); + +typedef void (*btf_trace_xfs_itruncate_extents_end)(void *, struct xfs_inode *, xfs_fsize_t); + +typedef void (*btf_trace_xfs_pagecache_inval)(void *, struct xfs_inode *, xfs_off_t, xfs_off_t); + +typedef void (*btf_trace_xfs_bunmap)(void *, struct xfs_inode *, xfs_fileoff_t, xfs_filblks_t, int, long unsigned int); + +typedef void (*btf_trace_xfs_extent_busy)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t); + +typedef void (*btf_trace_xfs_extent_busy_force)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t); + +typedef void (*btf_trace_xfs_extent_busy_reuse)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t); + +typedef void (*btf_trace_xfs_extent_busy_clear)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t); + +typedef void (*btf_trace_xfs_extent_busy_trim)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t, xfs_agblock_t, xfs_extlen_t); + +typedef void (*btf_trace_xfs_agf)(void *, struct xfs_mount *, struct xfs_agf *, int, long unsigned int); + +typedef void (*btf_trace_xfs_agfl_reset)(void *, struct xfs_mount *, struct xfs_agf *, int, long unsigned int); + +typedef void (*btf_trace_xfs_free_extent)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t, enum xfs_ag_resv_type, int, int); + +typedef void (*btf_trace_xfs_alloc_exact_done)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_exact_notfound)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_exact_error)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_near_nominleft)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_near_first)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_cur)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_cur_right)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_cur_left)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_cur_lookup)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_cur_lookup_done)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_near_error)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_near_noentry)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_near_busy)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_size_neither)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_size_noentry)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_size_nominleft)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_size_done)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_size_error)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_size_busy)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_small_freelist)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_small_notenough)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_small_done)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_small_error)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_vextent_badargs)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_vextent_skip_deadlock)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_vextent_nofix)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_vextent_noagbp)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_vextent_loopfailed)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_vextent_allfailed)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_vextent_this_ag)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_vextent_start_ag)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_vextent_first_ag)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_vextent_exact_bno)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_vextent_near_bno)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_vextent_finish)(void *, struct xfs_alloc_arg *); + +typedef void (*btf_trace_xfs_alloc_cur_check)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, xfs_extlen_t, bool); + +typedef void (*btf_trace_xfs_dir2_sf_addname)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_sf_create)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_sf_lookup)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_sf_replace)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_sf_removename)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_sf_toino4)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_sf_toino8)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_sf_to_block)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_block_addname)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_block_lookup)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_block_replace)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_block_removename)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_block_to_sf)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_block_to_leaf)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_leaf_addname)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_leaf_lookup)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_leaf_replace)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_leaf_removename)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_leaf_to_block)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_leaf_to_node)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_node_addname)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_node_lookup)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_node_replace)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_node_removename)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_node_to_leaf)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_sf_add)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_sf_addname)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_sf_create)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_sf_lookup)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_sf_remove)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_sf_to_leaf)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_add)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_add_old)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_add_new)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_add_work)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_create)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_compact)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_get)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_lookup)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_replace)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_remove)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_removename)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_split)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_split_before)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_split_after)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_clearflag)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_setflag)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_flipflags)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_to_sf)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_to_node)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_rebalance)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_unbalance)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_leaf_toosmall)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_node_addname)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_node_get)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_node_replace)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_node_removename)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_fillstate)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_refillstate)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_rmtval_get)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_attr_rmtval_set)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_split)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_join)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_link_before)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_link_after)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_unlink_back)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_unlink_forward)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_root_split)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_root_join)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_node_add)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_node_create)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_node_split)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_node_remove)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_node_rebalance)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_node_unbalance)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_node_toosmall)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_swap_lastblock)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_grow_inode)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_shrink_inode)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_fixhashpath)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_da_path_shift)(void *, struct xfs_da_args *); + +typedef void (*btf_trace_xfs_dir2_leafn_add)(void *, struct xfs_da_args *, int); + +typedef void (*btf_trace_xfs_dir2_leafn_remove)(void *, struct xfs_da_args *, int); + +typedef void (*btf_trace_xfs_dir2_grow_inode)(void *, struct xfs_da_args *, int); + +typedef void (*btf_trace_xfs_dir2_shrink_inode)(void *, struct xfs_da_args *, int); + +typedef void (*btf_trace_xfs_dir2_leafn_moveents)(void *, struct xfs_da_args *, int, int, int); + +typedef void (*btf_trace_xfs_swap_extent_before)(void *, struct xfs_inode *, int); + +typedef void (*btf_trace_xfs_swap_extent_after)(void *, struct xfs_inode *, int); + +typedef void (*btf_trace_xfs_log_recover)(void *, struct xlog *, xfs_daddr_t, xfs_daddr_t); + +typedef void (*btf_trace_xfs_log_recover_record)(void *, struct xlog *, struct xlog_rec_header *, int); + +typedef void (*btf_trace_xfs_log_recover_item_add)(void *, struct xlog *, struct xlog_recover *, struct xlog_recover_item *, int); + +typedef void (*btf_trace_xfs_log_recover_item_add_cont)(void *, struct xlog *, struct xlog_recover *, struct xlog_recover_item *, int); + +typedef void (*btf_trace_xfs_log_recover_item_reorder_head)(void *, struct xlog *, struct xlog_recover *, struct xlog_recover_item *, int); + +typedef void (*btf_trace_xfs_log_recover_item_reorder_tail)(void *, struct xlog *, struct xlog_recover *, struct xlog_recover_item *, int); + +typedef void (*btf_trace_xfs_log_recover_item_recover)(void *, struct xlog *, struct xlog_recover *, struct xlog_recover_item *, int); + +typedef void (*btf_trace_xfs_log_recover_buf_not_cancel)(void *, struct xlog *, struct xfs_buf_log_format *); + +typedef void (*btf_trace_xfs_log_recover_buf_cancel)(void *, struct xlog *, struct xfs_buf_log_format *); + +typedef void (*btf_trace_xfs_log_recover_buf_cancel_add)(void *, struct xlog *, struct xfs_buf_log_format *); + +typedef void (*btf_trace_xfs_log_recover_buf_cancel_ref_inc)(void *, struct xlog *, struct xfs_buf_log_format *); + +typedef void (*btf_trace_xfs_log_recover_buf_recover)(void *, struct xlog *, struct xfs_buf_log_format *); + +typedef void (*btf_trace_xfs_log_recover_buf_skip)(void *, struct xlog *, struct xfs_buf_log_format *); + +typedef void (*btf_trace_xfs_log_recover_buf_inode_buf)(void *, struct xlog *, struct xfs_buf_log_format *); + +typedef void (*btf_trace_xfs_log_recover_buf_reg_buf)(void *, struct xlog *, struct xfs_buf_log_format *); + +typedef void (*btf_trace_xfs_log_recover_buf_dquot_buf)(void *, struct xlog *, struct xfs_buf_log_format *); + +typedef void (*btf_trace_xfs_log_recover_inode_recover)(void *, struct xlog *, struct xfs_inode_log_format *); + +typedef void (*btf_trace_xfs_log_recover_inode_cancel)(void *, struct xlog *, struct xfs_inode_log_format *); + +typedef void (*btf_trace_xfs_log_recover_inode_skip)(void *, struct xlog *, struct xfs_inode_log_format *); + +typedef void (*btf_trace_xfs_log_recover_icreate_cancel)(void *, struct xlog *, struct xfs_icreate_log *); + +typedef void (*btf_trace_xfs_log_recover_icreate_recover)(void *, struct xlog *, struct xfs_icreate_log *); + +typedef void (*btf_trace_xfs_discard_extent)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t); + +typedef void (*btf_trace_xfs_discard_toosmall)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t); + +typedef void (*btf_trace_xfs_discard_exclude)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t); + +typedef void (*btf_trace_xfs_discard_busy)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t); + +typedef void (*btf_trace_xfs_discard_rtextent)(void *, struct xfs_mount *, xfs_rtblock_t, xfs_rtblock_t); + +typedef void (*btf_trace_xfs_discard_rttoosmall)(void *, struct xfs_mount *, xfs_rtblock_t, xfs_rtblock_t); + +typedef void (*btf_trace_xfs_discard_rtrelax)(void *, struct xfs_mount *, xfs_rtblock_t, xfs_rtblock_t); + +typedef void (*btf_trace_xfs_btree_updkeys)(void *, struct xfs_btree_cur *, int, struct xfs_buf *); + +typedef void (*btf_trace_xfs_btree_overlapped_query_range)(void *, struct xfs_btree_cur *, int, struct xfs_buf *); + +typedef void (*btf_trace_xfs_btree_alloc_block)(void *, struct xfs_btree_cur *, union xfs_btree_ptr *, int, int); + +typedef void (*btf_trace_xfs_btree_free_block)(void *, struct xfs_btree_cur *, struct xfs_buf *); + +typedef void (*btf_trace_xfs_defer_cancel)(void *, struct xfs_trans *, long unsigned int); + +typedef void (*btf_trace_xfs_defer_trans_roll)(void *, struct xfs_trans *, long unsigned int); + +typedef void (*btf_trace_xfs_defer_trans_abort)(void *, struct xfs_trans *, long unsigned int); + +typedef void (*btf_trace_xfs_defer_finish)(void *, struct xfs_trans *, long unsigned int); + +typedef void (*btf_trace_xfs_defer_finish_done)(void *, struct xfs_trans *, long unsigned int); + +typedef void (*btf_trace_xfs_defer_trans_roll_error)(void *, struct xfs_trans *, int); + +typedef void (*btf_trace_xfs_defer_finish_error)(void *, struct xfs_trans *, int); + +typedef void (*btf_trace_xfs_defer_create_intent)(void *, struct xfs_mount *, struct xfs_defer_pending *); + +typedef void (*btf_trace_xfs_defer_cancel_list)(void *, struct xfs_mount *, struct xfs_defer_pending *); + +typedef void (*btf_trace_xfs_defer_pending_finish)(void *, struct xfs_mount *, struct xfs_defer_pending *); + +typedef void (*btf_trace_xfs_defer_pending_abort)(void *, struct xfs_mount *, struct xfs_defer_pending *); + +typedef void (*btf_trace_xfs_defer_relog_intent)(void *, struct xfs_mount *, struct xfs_defer_pending *); + +typedef void (*btf_trace_xfs_defer_isolate_paused)(void *, struct xfs_mount *, struct xfs_defer_pending *); + +typedef void (*btf_trace_xfs_defer_item_pause)(void *, struct xfs_mount *, struct xfs_defer_pending *); + +typedef void (*btf_trace_xfs_defer_item_unpause)(void *, struct xfs_mount *, struct xfs_defer_pending *); + +typedef void (*btf_trace_xfs_agfl_free_defer)(void *, struct xfs_mount *, struct xfs_extent_free_item *); + +typedef void (*btf_trace_xfs_agfl_free_deferred)(void *, struct xfs_mount *, struct xfs_extent_free_item *); + +typedef void (*btf_trace_xfs_extent_free_defer)(void *, struct xfs_mount *, struct xfs_extent_free_item *); + +typedef void (*btf_trace_xfs_extent_free_deferred)(void *, struct xfs_mount *, struct xfs_extent_free_item *); + +typedef void (*btf_trace_xfs_defer_add_item)(void *, struct xfs_mount *, struct xfs_defer_pending *, void *); + +typedef void (*btf_trace_xfs_defer_cancel_item)(void *, struct xfs_mount *, struct xfs_defer_pending *, void *); + +typedef void (*btf_trace_xfs_defer_finish_item)(void *, struct xfs_mount *, struct xfs_defer_pending *, void *); + +typedef void (*btf_trace_xfs_rmap_unmap)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, bool, const struct xfs_owner_info *); + +typedef void (*btf_trace_xfs_rmap_unmap_done)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, bool, const struct xfs_owner_info *); + +typedef void (*btf_trace_xfs_rmap_unmap_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_rmap_map)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, bool, const struct xfs_owner_info *); + +typedef void (*btf_trace_xfs_rmap_map_done)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, bool, const struct xfs_owner_info *); + +typedef void (*btf_trace_xfs_rmap_map_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_rmap_convert)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, bool, const struct xfs_owner_info *); + +typedef void (*btf_trace_xfs_rmap_convert_done)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, bool, const struct xfs_owner_info *); + +typedef void (*btf_trace_xfs_rmap_convert_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_rmap_convert_state)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_rmap_defer)(void *, struct xfs_mount *, struct xfs_rmap_intent *); + +typedef void (*btf_trace_xfs_rmap_deferred)(void *, struct xfs_mount *, struct xfs_rmap_intent *); + +typedef void (*btf_trace_xfs_rmap_update)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); + +typedef void (*btf_trace_xfs_rmap_insert)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); + +typedef void (*btf_trace_xfs_rmap_delete)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); + +typedef void (*btf_trace_xfs_rmap_insert_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_rmap_delete_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_rmap_update_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_rmap_find_left_neighbor_candidate)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); + +typedef void (*btf_trace_xfs_rmap_find_left_neighbor_query)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); + +typedef void (*btf_trace_xfs_rmap_lookup_le_range_candidate)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); + +typedef void (*btf_trace_xfs_rmap_lookup_le_range)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); + +typedef void (*btf_trace_xfs_rmap_lookup_le_range_result)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); + +typedef void (*btf_trace_xfs_rmap_find_right_neighbor_result)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); + +typedef void (*btf_trace_xfs_rmap_find_left_neighbor_result)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); + +typedef void (*btf_trace_xfs_bmap_defer)(void *, struct xfs_bmap_intent *); + +typedef void (*btf_trace_xfs_bmap_deferred)(void *, struct xfs_bmap_intent *); + +typedef void (*btf_trace_xfs_ag_resv_init)(void *, struct xfs_perag *, enum xfs_ag_resv_type, xfs_extlen_t); + +typedef void (*btf_trace_xfs_ag_resv_free)(void *, struct xfs_perag *, enum xfs_ag_resv_type, xfs_extlen_t); + +typedef void (*btf_trace_xfs_ag_resv_alloc_extent)(void *, struct xfs_perag *, enum xfs_ag_resv_type, xfs_extlen_t); + +typedef void (*btf_trace_xfs_ag_resv_free_extent)(void *, struct xfs_perag *, enum xfs_ag_resv_type, xfs_extlen_t); + +typedef void (*btf_trace_xfs_ag_resv_critical)(void *, struct xfs_perag *, enum xfs_ag_resv_type, xfs_extlen_t); + +typedef void (*btf_trace_xfs_ag_resv_needed)(void *, struct xfs_perag *, enum xfs_ag_resv_type, xfs_extlen_t); + +typedef void (*btf_trace_xfs_ag_resv_init_error)(void *, struct xfs_mount *, xfs_agnumber_t, int, long unsigned int); + +typedef void (*btf_trace_xfs_refcount_lookup)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_lookup_t); + +typedef void (*btf_trace_xfs_refcount_get)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *); + +typedef void (*btf_trace_xfs_refcount_update)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *); + +typedef void (*btf_trace_xfs_refcount_insert)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *); + +typedef void (*btf_trace_xfs_refcount_delete)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *); + +typedef void (*btf_trace_xfs_refcount_insert_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_refcount_delete_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_refcount_update_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_refcount_increase)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t); + +typedef void (*btf_trace_xfs_refcount_decrease)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t); + +typedef void (*btf_trace_xfs_refcount_cow_increase)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t); + +typedef void (*btf_trace_xfs_refcount_cow_decrease)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t); + +typedef void (*btf_trace_xfs_refcount_merge_center_extents)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *, struct xfs_refcount_irec *, struct xfs_refcount_irec *); + +typedef void (*btf_trace_xfs_refcount_modify_extent)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *); + +typedef void (*btf_trace_xfs_refcount_split_extent)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *, xfs_agblock_t); + +typedef void (*btf_trace_xfs_refcount_merge_left_extent)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *, struct xfs_refcount_irec *); + +typedef void (*btf_trace_xfs_refcount_merge_right_extent)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *, struct xfs_refcount_irec *); + +typedef void (*btf_trace_xfs_refcount_find_left_extent)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *, struct xfs_refcount_irec *, xfs_agblock_t); + +typedef void (*btf_trace_xfs_refcount_find_right_extent)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *, struct xfs_refcount_irec *, xfs_agblock_t); + +typedef void (*btf_trace_xfs_refcount_adjust_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_refcount_adjust_cow_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_refcount_merge_center_extents_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_refcount_modify_extent_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_refcount_split_extent_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_refcount_merge_left_extent_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_refcount_merge_right_extent_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_refcount_find_left_extent_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_refcount_find_right_extent_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_refcount_find_shared)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t); + +typedef void (*btf_trace_xfs_refcount_find_shared_result)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t); + +typedef void (*btf_trace_xfs_refcount_find_shared_error)(void *, struct xfs_btree_cur *, int, long unsigned int); + +typedef void (*btf_trace_xfs_refcount_defer)(void *, struct xfs_mount *, struct xfs_refcount_intent *); + +typedef void (*btf_trace_xfs_refcount_deferred)(void *, struct xfs_mount *, struct xfs_refcount_intent *); + +typedef void (*btf_trace_xfs_refcount_finish_one_leftover)(void *, struct xfs_mount *, struct xfs_refcount_intent *); + +typedef void (*btf_trace_xfs_wb_cow_iomap_invalid)(void *, struct xfs_inode *, const struct iomap *, unsigned int, int); + +typedef void (*btf_trace_xfs_wb_data_iomap_invalid)(void *, struct xfs_inode *, const struct iomap *, unsigned int, int); + +typedef void (*btf_trace_xfs_iomap_invalid)(void *, struct xfs_inode *, const struct iomap *); + +typedef void (*btf_trace_xfs_reflink_set_inode_flag)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_reflink_unset_inode_flag)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_reflink_update_inode_size)(void *, struct xfs_inode *, xfs_fsize_t); + +typedef void (*btf_trace_xfs_reflink_remap_blocks)(void *, struct xfs_inode *, xfs_fileoff_t, xfs_filblks_t, struct xfs_inode *, xfs_fileoff_t); + +typedef void (*btf_trace_xfs_reflink_remap_range)(void *, struct xfs_inode *, xfs_off_t, xfs_off_t, struct xfs_inode *, xfs_off_t); + +typedef void (*btf_trace_xfs_reflink_remap_range_error)(void *, struct xfs_inode *, int, long unsigned int); + +typedef void (*btf_trace_xfs_reflink_set_inode_flag_error)(void *, struct xfs_inode *, int, long unsigned int); + +typedef void (*btf_trace_xfs_reflink_update_inode_size_error)(void *, struct xfs_inode *, int, long unsigned int); + +typedef void (*btf_trace_xfs_reflink_remap_blocks_error)(void *, struct xfs_inode *, int, long unsigned int); + +typedef void (*btf_trace_xfs_reflink_remap_extent_error)(void *, struct xfs_inode *, int, long unsigned int); + +typedef void (*btf_trace_xfs_reflink_remap_extent_src)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_reflink_remap_extent_dest)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_reflink_compare_extents)(void *, struct xfs_inode *, xfs_off_t, xfs_off_t, struct xfs_inode *, xfs_off_t); + +typedef void (*btf_trace_xfs_reflink_compare_extents_error)(void *, struct xfs_inode *, int, long unsigned int); + +typedef void (*btf_trace_xfs_ioctl_clone)(void *, struct inode *, struct inode *); + +typedef void (*btf_trace_xfs_reflink_unshare)(void *, struct xfs_inode *, xfs_off_t, ssize_t); + +typedef void (*btf_trace_xfs_reflink_unshare_error)(void *, struct xfs_inode *, int, long unsigned int); + +typedef void (*btf_trace_xfs_reflink_trim_around_shared)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_reflink_cow_found)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_reflink_cow_enospc)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_reflink_convert_cow)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_reflink_cancel_cow_range)(void *, struct xfs_inode *, xfs_off_t, ssize_t); + +typedef void (*btf_trace_xfs_reflink_end_cow)(void *, struct xfs_inode *, xfs_off_t, ssize_t); + +typedef void (*btf_trace_xfs_reflink_cow_remap_from)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_reflink_cow_remap_to)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_reflink_cancel_cow_range_error)(void *, struct xfs_inode *, int, long unsigned int); + +typedef void (*btf_trace_xfs_reflink_end_cow_error)(void *, struct xfs_inode *, int, long unsigned int); + +typedef void (*btf_trace_xfs_reflink_cancel_cow)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_swap_extent_rmap_remap)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_swap_extent_rmap_remap_piece)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_swap_extent_rmap_error)(void *, struct xfs_inode *, int, long unsigned int); + +typedef void (*btf_trace_xfs_fsmap_low_key)(void *, struct xfs_mount *, u32, xfs_agnumber_t, const struct xfs_rmap_irec *); + +typedef void (*btf_trace_xfs_fsmap_high_key)(void *, struct xfs_mount *, u32, xfs_agnumber_t, const struct xfs_rmap_irec *); + +typedef void (*btf_trace_xfs_fsmap_mapping)(void *, struct xfs_mount *, u32, xfs_agnumber_t, const struct xfs_rmap_irec *); + +typedef void (*btf_trace_xfs_fsmap_low_key_linear)(void *, struct xfs_mount *, u32, uint64_t); + +typedef void (*btf_trace_xfs_fsmap_high_key_linear)(void *, struct xfs_mount *, u32, uint64_t); + +typedef void (*btf_trace_xfs_getfsmap_low_key)(void *, struct xfs_mount *, struct xfs_fsmap *); + +typedef void (*btf_trace_xfs_getfsmap_high_key)(void *, struct xfs_mount *, struct xfs_fsmap *); + +typedef void (*btf_trace_xfs_getfsmap_mapping)(void *, struct xfs_mount *, struct xfs_fsmap *); + +typedef void (*btf_trace_xfs_trans_resv_calc)(void *, struct xfs_mount *, unsigned int, struct xfs_trans_res *); + +typedef void (*btf_trace_xfs_trans_resv_calc_minlogsize)(void *, struct xfs_mount *, unsigned int, struct xfs_trans_res *); + +typedef void (*btf_trace_xfs_log_get_max_trans_res)(void *, struct xfs_mount *, const struct xfs_trans_res *); + +typedef void (*btf_trace_xfs_trans_alloc)(void *, struct xfs_trans *, long unsigned int); + +typedef void (*btf_trace_xfs_trans_cancel)(void *, struct xfs_trans *, long unsigned int); + +typedef void (*btf_trace_xfs_trans_commit)(void *, struct xfs_trans *, long unsigned int); + +typedef void (*btf_trace_xfs_trans_dup)(void *, struct xfs_trans *, long unsigned int); + +typedef void (*btf_trace_xfs_trans_free)(void *, struct xfs_trans *, long unsigned int); + +typedef void (*btf_trace_xfs_trans_roll)(void *, struct xfs_trans *, long unsigned int); + +typedef void (*btf_trace_xfs_trans_add_item)(void *, struct xfs_trans *, long unsigned int); + +typedef void (*btf_trace_xfs_trans_commit_items)(void *, struct xfs_trans *, long unsigned int); + +typedef void (*btf_trace_xfs_trans_free_items)(void *, struct xfs_trans *, long unsigned int); + +typedef void (*btf_trace_xfs_iunlink_update_bucket)(void *, struct xfs_mount *, xfs_agnumber_t, unsigned int, xfs_agino_t, xfs_agino_t); + +typedef void (*btf_trace_xfs_iunlink_update_dinode)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agino_t, xfs_agino_t, xfs_agino_t); + +typedef void (*btf_trace_xfs_iunlink_reload_next)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_inode_reload_unlinked_bucket)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_iunlink)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_iunlink_remove)(void *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_fs_mark_sick)(void *, struct xfs_mount *, unsigned int); + +typedef void (*btf_trace_xfs_fs_mark_corrupt)(void *, struct xfs_mount *, unsigned int); + +typedef void (*btf_trace_xfs_fs_mark_healthy)(void *, struct xfs_mount *, unsigned int); + +typedef void (*btf_trace_xfs_fs_unfixed_corruption)(void *, struct xfs_mount *, unsigned int); + +typedef void (*btf_trace_xfs_rt_mark_sick)(void *, struct xfs_mount *, unsigned int); + +typedef void (*btf_trace_xfs_rt_mark_corrupt)(void *, struct xfs_mount *, unsigned int); + +typedef void (*btf_trace_xfs_rt_mark_healthy)(void *, struct xfs_mount *, unsigned int); + +typedef void (*btf_trace_xfs_rt_unfixed_corruption)(void *, struct xfs_mount *, unsigned int); + +typedef void (*btf_trace_xfs_ag_mark_sick)(void *, struct xfs_mount *, xfs_agnumber_t, unsigned int); + +typedef void (*btf_trace_xfs_ag_mark_corrupt)(void *, struct xfs_mount *, xfs_agnumber_t, unsigned int); + +typedef void (*btf_trace_xfs_ag_mark_healthy)(void *, struct xfs_mount *, xfs_agnumber_t, unsigned int); + +typedef void (*btf_trace_xfs_ag_unfixed_corruption)(void *, struct xfs_mount *, xfs_agnumber_t, unsigned int); + +typedef void (*btf_trace_xfs_inode_mark_sick)(void *, struct xfs_inode *, unsigned int); + +typedef void (*btf_trace_xfs_inode_mark_corrupt)(void *, struct xfs_inode *, unsigned int); + +typedef void (*btf_trace_xfs_inode_mark_healthy)(void *, struct xfs_inode *, unsigned int); + +typedef void (*btf_trace_xfs_inode_unfixed_corruption)(void *, struct xfs_inode *, unsigned int); + +typedef void (*btf_trace_xfs_iwalk_ag)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agino_t); + +typedef void (*btf_trace_xfs_iwalk_ag_rec)(void *, struct xfs_mount *, xfs_agnumber_t, struct xfs_inobt_rec_incore *); + +typedef void (*btf_trace_xfs_pwork_init)(void *, struct xfs_mount *, unsigned int, pid_t); + +typedef void (*btf_trace_xfs_check_new_dalign)(void *, struct xfs_mount *, int, xfs_ino_t); + +typedef void (*btf_trace_xfs_btree_commit_afakeroot)(void *, struct xfs_btree_cur *); + +typedef void (*btf_trace_xfs_btree_commit_ifakeroot)(void *, struct xfs_btree_cur *); + +typedef void (*btf_trace_xfs_btree_bload_level_geometry)(void *, struct xfs_btree_cur *, unsigned int, uint64_t, unsigned int, unsigned int, uint64_t, uint64_t); + +typedef void (*btf_trace_xfs_btree_bload_block)(void *, struct xfs_btree_cur *, unsigned int, uint64_t, uint64_t, union xfs_btree_ptr *, unsigned int); + +typedef void (*btf_trace_xfs_inode_timestamp_range)(void *, struct xfs_mount *, long long int, long long int); + +typedef void (*btf_trace_xfs_quota_expiry_range)(void *, struct xfs_mount *, long long int, long long int); + +typedef void (*btf_trace_xfs_ioc_free_eofblocks)(void *, struct xfs_mount *, struct xfs_icwalk *, long unsigned int); + +typedef void (*btf_trace_xfs_blockgc_free_space)(void *, struct xfs_mount *, struct xfs_icwalk *, long unsigned int); + +typedef void (*btf_trace_xlog_iclog_activate)(void *, struct xlog_in_core *, long unsigned int); + +typedef void (*btf_trace_xlog_iclog_clean)(void *, struct xlog_in_core *, long unsigned int); + +typedef void (*btf_trace_xlog_iclog_callback)(void *, struct xlog_in_core *, long unsigned int); + +typedef void (*btf_trace_xlog_iclog_callbacks_start)(void *, struct xlog_in_core *, long unsigned int); + +typedef void (*btf_trace_xlog_iclog_callbacks_done)(void *, struct xlog_in_core *, long unsigned int); + +typedef void (*btf_trace_xlog_iclog_force)(void *, struct xlog_in_core *, long unsigned int); + +typedef void (*btf_trace_xlog_iclog_force_lsn)(void *, struct xlog_in_core *, long unsigned int); + +typedef void (*btf_trace_xlog_iclog_get_space)(void *, struct xlog_in_core *, long unsigned int); + +typedef void (*btf_trace_xlog_iclog_release)(void *, struct xlog_in_core *, long unsigned int); + +typedef void (*btf_trace_xlog_iclog_switch)(void *, struct xlog_in_core *, long unsigned int); + +typedef void (*btf_trace_xlog_iclog_sync)(void *, struct xlog_in_core *, long unsigned int); + +typedef void (*btf_trace_xlog_iclog_syncing)(void *, struct xlog_in_core *, long unsigned int); + +typedef void (*btf_trace_xlog_iclog_sync_done)(void *, struct xlog_in_core *, long unsigned int); + +typedef void (*btf_trace_xlog_iclog_want_sync)(void *, struct xlog_in_core *, long unsigned int); + +typedef void (*btf_trace_xlog_iclog_wait_on)(void *, struct xlog_in_core *, long unsigned int); + +typedef void (*btf_trace_xlog_iclog_write)(void *, struct xlog_in_core *, long unsigned int); + +typedef void (*btf_trace_xfs_attr_sf_addname_return)(void *, int, struct xfs_inode *); + +typedef void (*btf_trace_xfs_attr_set_iter_return)(void *, int, struct xfs_inode *); + +typedef void (*btf_trace_xfs_attr_leaf_addname_return)(void *, int, struct xfs_inode *); + +typedef void (*btf_trace_xfs_attr_node_addname_return)(void *, int, struct xfs_inode *); + +typedef void (*btf_trace_xfs_attr_remove_iter_return)(void *, int, struct xfs_inode *); + +typedef void (*btf_trace_xfs_attr_rmtval_alloc)(void *, int, struct xfs_inode *); + +typedef void (*btf_trace_xfs_attr_rmtval_remove_return)(void *, int, struct xfs_inode *); + +typedef void (*btf_trace_xfs_attr_defer_add)(void *, int, struct xfs_inode *); + +typedef void (*btf_trace_xfs_force_shutdown)(void *, struct xfs_mount *, int, int, const char *, int); + +typedef void (*btf_trace_xfs_exchmaps_mapping1_skip)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_exchmaps_mapping1)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_exchmaps_mapping2)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); + +typedef void (*btf_trace_xfs_exchmaps_update_inode_size)(void *, struct xfs_inode *, xfs_fsize_t); + +typedef void (*btf_trace_xfs_exchrange_before)(void *, struct xfs_inode *, int); + +typedef void (*btf_trace_xfs_exchrange_after)(void *, struct xfs_inode *, int); + +typedef void (*btf_trace_xfs_exchrange_error)(void *, struct xfs_inode *, int, long unsigned int); + +typedef void (*btf_trace_xfs_exchrange_prep)(void *, const struct xfs_exchrange *, struct xfs_inode *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_exchrange_flush)(void *, const struct xfs_exchrange *, struct xfs_inode *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_exchrange_mappings)(void *, const struct xfs_exchrange *, struct xfs_inode *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_exchrange_freshness)(void *, const struct xfs_exchrange *, struct xfs_inode *); + +typedef void (*btf_trace_xfs_exchmaps_overhead)(void *, struct xfs_mount *, long long unsigned int, long long unsigned int); + +typedef void (*btf_trace_xfs_exchmaps_initial_estimate)(void *, const struct xfs_exchmaps_req *); + +typedef void (*btf_trace_xfs_exchmaps_final_estimate)(void *, const struct xfs_exchmaps_req *); + +typedef void (*btf_trace_xfs_exchmaps_defer)(void *, struct xfs_mount *, const struct xfs_exchmaps_intent *); + +typedef void (*btf_trace_xfs_exchmaps_recover)(void *, struct xfs_mount *, const struct xfs_exchmaps_intent *); + +typedef void (*btf_trace_xfs_exchmaps_delta_nextents_step)(void *, struct xfs_mount *, const struct xfs_bmbt_irec *, const struct xfs_bmbt_irec *, const struct xfs_bmbt_irec *, const struct xfs_bmbt_irec *, int, unsigned int); + +typedef void (*btf_trace_xfs_exchmaps_delta_nextents)(void *, const struct xfs_exchmaps_req *, int64_t, int64_t); + +typedef void (*btf_trace_xfs_getparents_put_listent)(void *, struct xfs_inode *, const struct xfs_getparents *, const struct xfs_attr_list_context *, const struct xfs_getparents_rec *); + +typedef void (*btf_trace_xfs_getparents_expand_lastrec)(void *, struct xfs_inode *, const struct xfs_getparents *, const struct xfs_attr_list_context *, const struct xfs_getparents_rec *); + +typedef void (*btf_trace_xfs_getparents_begin)(void *, struct xfs_inode *, const struct xfs_getparents *, const struct xfs_attrlist_cursor_kern *); + +typedef void (*btf_trace_xfs_getparents_end)(void *, struct xfs_inode *, const struct xfs_getparents *, const struct xfs_attrlist_cursor_kern *); + +struct scrub_sector_verification; + +struct scrub_stripe { + struct scrub_ctx *sctx; + struct btrfs_block_group *bg; + struct page *pages[16]; + struct scrub_sector_verification *sectors; + struct btrfs_device *dev; + u64 logical; + u64 physical; + u16 mirror_num; + u16 nr_sectors; + u16 nr_data_extents; + u16 nr_meta_extents; + atomic_t pending_io; + wait_queue_head_t io_wait; + wait_queue_head_t repair_wait; + long unsigned int state; + long unsigned int extent_sector_bitmap; + long unsigned int init_error_bitmap; + unsigned int init_nr_io_errors; + unsigned int init_nr_csum_errors; + unsigned int init_nr_meta_errors; + unsigned int init_nr_meta_gen_errors; + long unsigned int error_bitmap; + long unsigned int io_error_bitmap; + long unsigned int csum_error_bitmap; + long unsigned int meta_error_bitmap; + long unsigned int meta_gen_error_bitmap; + long unsigned int write_error_bitmap; + spinlock_t write_error_lock; + u8 *csums; + struct work_struct work; +}; + +struct scrub_ctx { + struct scrub_stripe stripes[128]; + struct scrub_stripe *raid56_data_stripes; + struct btrfs_fs_info *fs_info; + struct btrfs_path extent_path; + struct btrfs_path csum_path; + int first_free; + int cur_stripe; + atomic_t cancel_req; + int readonly; + ktime_t throttle_deadline; + u64 throttle_sent; + int is_dev_replace; + u64 write_pointer; + struct mutex wr_lock; + struct btrfs_device *wr_tgtdev; + struct btrfs_scrub_progress stat; + spinlock_t stat_lock; + refcount_t refs; +}; + +enum btrfs_rbio_ops { + BTRFS_RBIO_WRITE = 0, + BTRFS_RBIO_READ_REBUILD = 1, + BTRFS_RBIO_PARITY_SCRUB = 2, +}; + +struct sector_ptr; + +struct btrfs_raid_bio { + struct btrfs_io_context *bioc; + struct list_head hash_list; + struct list_head stripe_cache; + struct work_struct work; + struct bio_list bio_list; + spinlock_t bio_list_lock; + struct list_head plug_list; + long unsigned int flags; + enum btrfs_rbio_ops operation; + u16 nr_pages; + u16 nr_sectors; + u8 nr_data; + u8 real_stripes; + u8 stripe_npages; + u8 stripe_nsectors; + u8 scrubp; + int bio_list_bytes; + refcount_t refs; + atomic_t stripes_pending; + wait_queue_head_t io_wait; + long unsigned int dbitmap; + long unsigned int finish_pbitmap; + struct page **stripe_pages; + struct sector_ptr *bio_sectors; + struct sector_ptr *stripe_sectors; + void **finish_pointers; + long unsigned int *error_bitmap; + u8 *csum_buf; + long unsigned int *csum_bitmap; +}; + +struct scrub_sector_verification { + bool is_metadata; + union { + u8 *csum; + u64 generation; + }; +}; + +enum scrub_stripe_flags { + SCRUB_STRIPE_FLAG_INITIALIZED = 0, + SCRUB_STRIPE_FLAG_REPAIR_DONE = 1, + SCRUB_STRIPE_FLAG_NO_REPORT = 2, +}; + +struct scrub_warning { + struct btrfs_path *path; + u64 extent_item_size; + const char *errstr; + u64 physical; + u64 logical; + struct btrfs_device *dev; +}; + +struct btrfs_fiemap_entry { + u64 offset; + u64 phys; + u64 len; + u32 flags; +}; + +struct fiemap_cache { + struct btrfs_fiemap_entry *entries; + int entries_size; + int entries_pos; + u64 next_search_offset; + unsigned int extents_mapped; + u64 offset; + u64 phys; + u64 len; + u32 flags; + bool cached; +}; + +struct erofs_inode_chunk_info { + __le16 format; + __le16 reserved; +}; + +union erofs_inode_i_u { + __le32 compressed_blocks; + __le32 raw_blkaddr; + __le32 rdev; + struct erofs_inode_chunk_info c; +}; + +struct erofs_inode_compact { + __le16 i_format; + __le16 i_xattr_icount; + __le16 i_mode; + __le16 i_nlink; + __le32 i_size; + __le32 i_reserved; + union erofs_inode_i_u i_u; + __le32 i_ino; + __le16 i_uid; + __le16 i_gid; + __le32 i_reserved2; +}; + +struct erofs_inode_extended { + __le16 i_format; + __le16 i_xattr_icount; + __le16 i_mode; + __le16 i_reserved; + __le64 i_size; + union erofs_inode_i_u i_u; + __le32 i_ino; + __le32 i_uid; + __le32 i_gid; + __le64 i_mtime; + __le32 i_mtime_nsec; + __le32 i_nlink; + __u8 i_reserved2[16]; +}; + +enum { + EROFS_SYNC_DECOMPRESS_AUTO = 0, + EROFS_SYNC_DECOMPRESS_FORCE_ON = 1, + EROFS_SYNC_DECOMPRESS_FORCE_OFF = 2, +}; + +enum { + attr_feature = 0, + attr_pointer_ui = 1, + attr_pointer_bool = 2, +}; + +enum { + struct_erofs_sb_info = 0, + struct_erofs_mount_opts = 1, +}; + +struct erofs_attr { + struct attribute attr; + short int attr_id; + int struct_type; + int offset; +}; + +typedef int __kernel_ipc_pid_t; + +struct msgbuf { + __kernel_long_t mtype; + char mtext[1]; +}; + +struct msg; + +struct msqid_ds { + struct ipc_perm msg_perm; + struct msg *msg_first; + struct msg *msg_last; + __kernel_old_time_t msg_stime; + __kernel_old_time_t msg_rtime; + __kernel_old_time_t msg_ctime; + long unsigned int msg_lcbytes; + long unsigned int msg_lqbytes; + short unsigned int msg_cbytes; + short unsigned int msg_qnum; + short unsigned int msg_qbytes; + __kernel_ipc_pid_t msg_lspid; + __kernel_ipc_pid_t msg_lrpid; +}; + +struct msqid64_ds { + struct ipc64_perm msg_perm; + long int msg_stime; + long int msg_rtime; + long int msg_ctime; + long unsigned int msg_cbytes; + long unsigned int msg_qnum; + long unsigned int msg_qbytes; + __kernel_pid_t msg_lspid; + __kernel_pid_t msg_lrpid; + long unsigned int __unused4; + long unsigned int __unused5; +}; + +struct msginfo { + int msgpool; + int msgmap; + int msgmax; + int msgmnb; + int msgmni; + int msgssz; + int msgtql; + short unsigned int msgseg; +}; + +struct msg_msgseg; + +struct msg_msg { + struct list_head m_list; + long int m_type; + size_t m_ts; + struct msg_msgseg *next; + void *security; +}; + +struct msg_queue { + struct kern_ipc_perm q_perm; + time64_t q_stime; + time64_t q_rtime; + time64_t q_ctime; + long unsigned int q_cbytes; + long unsigned int q_qnum; + long unsigned int q_qbytes; + struct pid *q_lspid; + struct pid *q_lrpid; + struct list_head q_messages; + struct list_head q_receivers; + struct list_head q_senders; + long: 64; + long: 64; +}; + +struct msg_receiver { + struct list_head r_list; + struct task_struct *r_tsk; + int r_mode; + long int r_msgtype; + long int r_maxsize; + struct msg_msg *r_msg; +}; + +struct msg_sender { + struct list_head list; + struct task_struct *tsk; + size_t msgsz; +}; + +struct trusted_key_ops { + unsigned char migratable; + int (*init)(void); + int (*seal)(struct trusted_key_payload *, char *); + int (*unseal)(struct trusted_key_payload *, char *); + int (*get_random)(unsigned char *, size_t); + void (*exit)(void); +}; + +struct trusted_key_source { + char *name; + struct trusted_key_ops *ops; +}; + +enum { + Opt_err___8 = 0, + Opt_new___2 = 1, + Opt_load___2 = 2, + Opt_update___2 = 3, +}; + +struct crypto_akcipher_sync_data { + struct crypto_akcipher *tfm; + const void *src; + void *dst; + unsigned int slen; + unsigned int dlen; + struct akcipher_request *req; + struct crypto_wait cwait; + struct scatterlist sg; + u8 *buf; +}; + +struct lrw_tfm_ctx { + struct crypto_skcipher *child; + struct gf128mul_64k *table; + be128 mulinc[128]; +}; + +struct lrw_request_ctx { + be128 t; + struct skcipher_request subreq; +}; + +struct cast5_ctx { + u32 Km[16]; + u8 Kr[16]; + int rr; +}; + +struct lz4_ctx { + void *lz4_comp_mem; +}; + +typedef unsigned char u8___2; + +struct rand_data { + void *hash_state; + __u64 prev_time; + __u64 last_delta; + __s64 last_delta2; + unsigned int flags; + unsigned int osr; + unsigned char *mem; + unsigned int memlocation; + unsigned int memblocks; + unsigned int memblocksize; + unsigned int memaccessloops; + unsigned int rct_count; + unsigned int apt_cutoff; + unsigned int apt_cutoff_permanent; + unsigned int apt_observations; + unsigned int apt_count; + unsigned int apt_base; + unsigned int health_failure; + unsigned int apt_base_set: 1; +}; + +enum { + PERCPU_REF_INIT_ATOMIC = 1, + PERCPU_REF_INIT_DEAD = 2, + PERCPU_REF_ALLOW_REINIT = 4, +}; + +struct blk_plug_cb; + +typedef void (*blk_plug_cb_fn)(struct blk_plug_cb *, bool); + +struct blk_plug_cb { + struct list_head list; + blk_plug_cb_fn callback; + void *data; +}; + +enum { + BLK_MQ_REQ_NOWAIT = 1, + BLK_MQ_REQ_RESERVED = 2, + BLK_MQ_REQ_PM = 4, +}; + +enum blktrace_act { + __BLK_TA_QUEUE = 1, + __BLK_TA_BACKMERGE = 2, + __BLK_TA_FRONTMERGE = 3, + __BLK_TA_GETRQ = 4, + __BLK_TA_SLEEPRQ = 5, + __BLK_TA_REQUEUE = 6, + __BLK_TA_ISSUE = 7, + __BLK_TA_COMPLETE = 8, + __BLK_TA_PLUG = 9, + __BLK_TA_UNPLUG_IO = 10, + __BLK_TA_UNPLUG_TIMER = 11, + __BLK_TA_INSERT = 12, + __BLK_TA_SPLIT = 13, + __BLK_TA_BOUNCE = 14, + __BLK_TA_REMAP = 15, + __BLK_TA_ABORT = 16, + __BLK_TA_DRV_DATA = 17, + __BLK_TA_CGROUP = 256, +}; + +struct trace_event_raw_block_buffer { + struct trace_entry ent; + dev_t dev; + sector_t sector; + size_t size; + char __data[0]; +}; + +struct trace_event_raw_block_rq_requeue { + struct trace_entry ent; + dev_t dev; + sector_t sector; + unsigned int nr_sector; + short unsigned int ioprio; + char rwbs[8]; + u32 __data_loc_cmd; + char __data[0]; +}; + +struct trace_event_raw_block_rq_completion { + struct trace_entry ent; + dev_t dev; + sector_t sector; + unsigned int nr_sector; + int error; + short unsigned int ioprio; + char rwbs[8]; + u32 __data_loc_cmd; + char __data[0]; +}; + +struct trace_event_raw_block_rq { + struct trace_entry ent; + dev_t dev; + sector_t sector; + unsigned int nr_sector; + unsigned int bytes; + short unsigned int ioprio; + char rwbs[8]; + char comm[16]; + u32 __data_loc_cmd; + char __data[0]; +}; + +struct trace_event_raw_block_bio_complete { + struct trace_entry ent; + dev_t dev; + sector_t sector; + unsigned int nr_sector; + int error; + char rwbs[8]; + char __data[0]; +}; + +struct trace_event_raw_block_bio { + struct trace_entry ent; + dev_t dev; + sector_t sector; + unsigned int nr_sector; + char rwbs[8]; + char comm[16]; + char __data[0]; +}; + +struct trace_event_raw_block_plug { + struct trace_entry ent; + char comm[16]; + char __data[0]; +}; + +struct trace_event_raw_block_unplug { + struct trace_entry ent; + int nr_rq; + char comm[16]; + char __data[0]; +}; + +struct trace_event_raw_block_split { + struct trace_entry ent; + dev_t dev; + sector_t sector; + sector_t new_sector; + char rwbs[8]; + char comm[16]; + char __data[0]; +}; + +struct trace_event_raw_block_bio_remap { + struct trace_entry ent; + dev_t dev; + sector_t sector; + unsigned int nr_sector; + dev_t old_dev; + sector_t old_sector; + char rwbs[8]; + char __data[0]; +}; + +struct trace_event_raw_block_rq_remap { + struct trace_entry ent; + dev_t dev; + sector_t sector; + unsigned int nr_sector; + dev_t old_dev; + sector_t old_sector; + unsigned int nr_bios; + char rwbs[8]; + char __data[0]; +}; + +struct trace_event_data_offsets_block_buffer {}; + +struct trace_event_data_offsets_block_rq_requeue { + u32 cmd; + const void *cmd_ptr_; +}; + +struct trace_event_data_offsets_block_rq_completion { + u32 cmd; + const void *cmd_ptr_; +}; + +struct trace_event_data_offsets_block_rq { + u32 cmd; + const void *cmd_ptr_; +}; + +struct trace_event_data_offsets_block_bio_complete {}; + +struct trace_event_data_offsets_block_bio {}; + +struct trace_event_data_offsets_block_plug {}; + +struct trace_event_data_offsets_block_unplug {}; + +struct trace_event_data_offsets_block_split {}; + +struct trace_event_data_offsets_block_bio_remap {}; + +struct trace_event_data_offsets_block_rq_remap {}; + +typedef void (*btf_trace_block_touch_buffer)(void *, struct buffer_head *); + +typedef void (*btf_trace_block_dirty_buffer)(void *, struct buffer_head *); + +typedef void (*btf_trace_block_rq_requeue)(void *, struct request *); + +typedef void (*btf_trace_block_rq_complete)(void *, struct request *, blk_status_t, unsigned int); + +typedef void (*btf_trace_block_rq_error)(void *, struct request *, blk_status_t, unsigned int); + +typedef void (*btf_trace_block_rq_insert)(void *, struct request *); + +typedef void (*btf_trace_block_rq_issue)(void *, struct request *); + +typedef void (*btf_trace_block_rq_merge)(void *, struct request *); + +typedef void (*btf_trace_block_io_start)(void *, struct request *); + +typedef void (*btf_trace_block_io_done)(void *, struct request *); + +typedef void (*btf_trace_block_bio_complete)(void *, struct request_queue *, struct bio *); + +typedef void (*btf_trace_block_bio_bounce)(void *, struct bio *); + +typedef void (*btf_trace_block_bio_backmerge)(void *, struct bio *); + +typedef void (*btf_trace_block_bio_frontmerge)(void *, struct bio *); + +typedef void (*btf_trace_block_bio_queue)(void *, struct bio *); + +typedef void (*btf_trace_block_getrq)(void *, struct bio *); + +typedef void (*btf_trace_block_plug)(void *, struct request_queue *); + +typedef void (*btf_trace_block_unplug)(void *, struct request_queue *, unsigned int, bool); + +typedef void (*btf_trace_block_split)(void *, struct bio *, unsigned int); + +typedef void (*btf_trace_block_bio_remap)(void *, struct bio *, dev_t, sector_t); + +typedef void (*btf_trace_block_rq_remap)(void *, struct request *, dev_t, sector_t); + +struct throtl_grp; + +struct throtl_qnode { + struct list_head node; + struct bio_list bios; + struct throtl_grp *tg; +}; + +struct throtl_service_queue { + struct throtl_service_queue *parent_sq; + struct list_head queued[2]; + unsigned int nr_queued[2]; + struct rb_root_cached pending_tree; + unsigned int nr_pending; + long unsigned int first_pending_disptime; + struct timer_list pending_timer; +}; + +struct throtl_grp { + struct blkg_policy_data pd; + struct rb_node rb_node; + struct throtl_data *td; + struct throtl_service_queue service_queue; + struct throtl_qnode qnode_on_self[2]; + struct throtl_qnode qnode_on_parent[2]; + long unsigned int disptime; + unsigned int flags; + bool has_rules_bps[2]; + bool has_rules_iops[2]; + uint64_t bps[2]; + unsigned int iops[2]; + uint64_t bytes_disp[2]; + unsigned int io_disp[2]; + uint64_t last_bytes_disp[2]; + unsigned int last_io_disp[2]; + long long int carryover_bytes[2]; + int carryover_ios[2]; + long unsigned int last_check_time; + long unsigned int slice_start[2]; + long unsigned int slice_end[2]; + struct blkg_rwstat stat_bytes; + struct blkg_rwstat stat_ios; +}; + +typedef bool (*sb_for_each_fn)(struct sbitmap *, unsigned int, void *); + +struct sbq_wait { + struct sbitmap_queue *sbq; + struct wait_queue_entry wait; +}; + +struct trace_event_raw_kyber_latency { + struct trace_entry ent; + dev_t dev; + char domain[16]; + char type[8]; + u8 percentile; + u8 numerator; + u8 denominator; + unsigned int samples; + char __data[0]; +}; + +struct trace_event_raw_kyber_adjust { + struct trace_entry ent; + dev_t dev; + char domain[16]; + unsigned int depth; + char __data[0]; +}; + +struct trace_event_raw_kyber_throttled { + struct trace_entry ent; + dev_t dev; + char domain[16]; + char __data[0]; +}; + +struct trace_event_data_offsets_kyber_latency {}; + +struct trace_event_data_offsets_kyber_adjust {}; + +struct trace_event_data_offsets_kyber_throttled {}; + +typedef void (*btf_trace_kyber_latency)(void *, dev_t, const char *, const char *, unsigned int, unsigned int, unsigned int, unsigned int); + +typedef void (*btf_trace_kyber_adjust)(void *, dev_t, const char *, unsigned int); + +typedef void (*btf_trace_kyber_throttled)(void *, dev_t, const char *); + +enum { + KYBER_READ = 0, + KYBER_WRITE = 1, + KYBER_DISCARD = 2, + KYBER_OTHER = 3, + KYBER_NUM_DOMAINS = 4, +}; + +enum { + KYBER_ASYNC_PERCENT = 75, +}; + +enum { + KYBER_LATENCY_SHIFT = 2, + KYBER_GOOD_BUCKETS = 4, + KYBER_LATENCY_BUCKETS = 8, +}; + +enum { + KYBER_TOTAL_LATENCY = 0, + KYBER_IO_LATENCY = 1, +}; + +struct kyber_cpu_latency { + atomic_t buckets[48]; +}; + +struct kyber_ctx_queue { + spinlock_t lock; + struct list_head rq_list[4]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct kyber_queue_data { + struct request_queue *q; + dev_t dev; + struct sbitmap_queue domain_tokens[4]; + unsigned int async_depth; + struct kyber_cpu_latency *cpu_latency; + struct timer_list timer; + unsigned int latency_buckets[48]; + long unsigned int latency_timeout[3]; + int domain_p99[3]; + u64 latency_targets[3]; +}; + +struct kyber_hctx_data { + spinlock_t lock; + struct list_head rqs[4]; + unsigned int cur_domain; + unsigned int batching; + struct kyber_ctx_queue *kcqs; + struct sbitmap kcq_map[4]; + struct sbq_wait domain_wait[4]; + struct sbq_wait_state *domain_ws[4]; + atomic_t wait_index[4]; +}; + +struct flush_kcq_data { + struct kyber_hctx_data *khd; + unsigned int sched_domain; + struct list_head *list; +}; + +struct io_splice { + struct file *file_out; + loff_t off_out; + loff_t off_in; + u64 len; + int splice_fd_in; + unsigned int flags; +}; + +struct io_uring_sync_cancel_reg { + __u64 addr; + __s32 fd; + __u32 flags; + struct __kernel_timespec timeout; + __u8 opcode; + __u8 pad[7]; + __u64 pad2[3]; +}; + +struct io_cancel { + struct file *file; + u64 addr; + u32 flags; + s32 fd; + u8 opcode; +}; + +struct once_work { + struct work_struct work; + struct static_key_true *key; + struct module *module; +}; + +typedef enum { + ZSTD_no_overlap = 0, + ZSTD_overlap_src_before_dst = 1, +} ZSTD_overlap_e; + +typedef enum { + ZSTD_dtlm_fast = 0, + ZSTD_dtlm_full = 1, +} ZSTD_dictTableLoadMethod_e; + +enum dim_tune_state { + DIM_PARKING_ON_TOP = 0, + DIM_PARKING_TIRED = 1, + DIM_GOING_RIGHT = 2, + DIM_GOING_LEFT = 3, +}; + +enum dim_stats_state { + DIM_STATS_WORSE = 0, + DIM_STATS_SAME = 1, + DIM_STATS_BETTER = 2, +}; + +enum dim_step_result { + DIM_STEPPED = 0, + DIM_TOO_TIRED = 1, + DIM_ON_EDGE = 2, +}; + +union handle_parts { + depot_stack_handle_t handle; + struct { + u32 pool_index_plus_1: 17; + u32 offset: 10; + u32 extra: 5; + }; +}; + +struct stack_record { + struct list_head hash_list; + u32 hash; + u32 size; + union handle_parts handle; + refcount_t count; + union { + long unsigned int entries[64]; + struct { + struct list_head free_list; + long unsigned int rcu_state; + }; + }; +}; + +typedef u32 depot_flags_t; + +enum depot_counter_id { + DEPOT_COUNTER_REFD_ALLOCS = 0, + DEPOT_COUNTER_REFD_FREES = 1, + DEPOT_COUNTER_REFD_INUSE = 2, + DEPOT_COUNTER_FREELIST_SIZE = 3, + DEPOT_COUNTER_PERSIST_COUNT = 4, + DEPOT_COUNTER_PERSIST_BYTES = 5, + DEPOT_COUNTER_COUNT = 6, +}; + +struct its_vpe; + +struct its_vm { + struct fwnode_handle *fwnode; + struct irq_domain *domain; + struct page *vprop_page; + struct its_vpe **vpes; + int nr_vpes; + irq_hw_number_t db_lpi_base; + long unsigned int *db_bitmap; + int nr_db_lpis; + raw_spinlock_t vmapp_lock; + u32 vlpi_count[16]; +}; + +struct its_vpe { + struct page *vpt_page; + struct its_vm *its_vm; + atomic_t vlpi_count; + int irq; + irq_hw_number_t vpe_db_lpi; + bool resident; + bool ready; + union { + struct { + int vpe_proxy_event; + bool idai; + }; + struct { + struct fwnode_handle *fwnode; + struct irq_domain *sgi_domain; + struct { + u8 priority; + bool enabled; + bool group; + } sgi_config[16]; + }; + }; + atomic_t vmapp_count; + raw_spinlock_t vpe_lock; + u16 col_idx; + u16 vpe_id; + bool pending_last; +}; + +struct its_vlpi_map { + struct its_vm *vm; + struct its_vpe *vpe; + u32 vintid; + u8 properties; + bool db_enabled; +}; + +enum its_vcpu_info_cmd_type { + MAP_VLPI = 0, + GET_VLPI = 1, + PROP_UPDATE_VLPI = 2, + PROP_UPDATE_AND_INV_VLPI = 3, + SCHEDULE_VPE = 4, + DESCHEDULE_VPE = 5, + COMMIT_VPE = 6, + INVALL_VPE = 7, + PROP_UPDATE_VSGI = 8, +}; + +struct its_cmd_info { + enum its_vcpu_info_cmd_type cmd_type; + union { + struct its_vlpi_map *map; + u8 config; + bool req_db; + struct { + bool g0en; + bool g1en; + }; + struct { + u8 priority; + bool group; + }; + }; +}; + +struct hotplug_slot_ops; + +struct hotplug_slot { + const struct hotplug_slot_ops *ops; + struct list_head slot_list; + struct pci_slot *pci_slot; + struct module *owner; + const char *mod_name; +}; + +enum pcie_reset_state { + pcie_deassert_reset = 1, + pcie_warm_reset = 2, + pcie_hot_reset = 3, +}; + +enum { + PCI_REASSIGN_ALL_RSRC = 1, + PCI_REASSIGN_ALL_BUS = 2, + PCI_PROBE_ONLY = 4, + PCI_CAN_SKIP_ISA_ALIGN = 8, + PCI_ENABLE_PROC_DOMAINS = 16, + PCI_COMPAT_DOMAIN_0 = 32, + PCI_SCAN_ALL_PCIE_DEVS = 64, +}; + +enum pcie_bus_config_types { + PCIE_BUS_TUNE_OFF = 0, + PCIE_BUS_DEFAULT = 1, + PCIE_BUS_SAFE = 2, + PCIE_BUS_PERFORMANCE = 3, + PCIE_BUS_PEER2PEER = 4, +}; + +typedef int (*arch_set_vga_state_t)(struct pci_dev *, bool, unsigned int, u32); + +enum pci_fixup_pass { + pci_fixup_early = 0, + pci_fixup_header = 1, + pci_fixup_final = 2, + pci_fixup_enable = 3, + pci_fixup_resume = 4, + pci_fixup_suspend = 5, + pci_fixup_resume_early = 6, + pci_fixup_suspend_late = 7, +}; + +struct hotplug_slot_ops { + int (*enable_slot)(struct hotplug_slot *); + int (*disable_slot)(struct hotplug_slot *); + int (*set_attention_status)(struct hotplug_slot *, u8); + int (*hardware_test)(struct hotplug_slot *, u32); + int (*get_power_status)(struct hotplug_slot *, u8 *); + int (*get_attention_status)(struct hotplug_slot *, u8 *); + int (*get_latch_status)(struct hotplug_slot *, u8 *); + int (*get_adapter_status)(struct hotplug_slot *, u8 *); + int (*reset_slot)(struct hotplug_slot *, bool); +}; + +struct pcie_tlp_log { + u32 dw[4]; +}; + +struct pci_reset_fn_method { + int (*reset_fn)(struct pci_dev *, bool); + char *name; +}; + +struct pci_pme_device { + struct list_head list; + struct pci_dev *dev; +}; + +struct pci_acs { + u16 cap; + u16 ctrl; + u16 fw_ctrl; +}; + +struct pci_saved_state { + u32 config_space[16]; + struct pci_cap_saved_data cap[0]; +}; + +struct vga_device { + struct list_head list; + struct pci_dev *pdev; + unsigned int decodes; + unsigned int owns; + unsigned int locks; + unsigned int io_lock_cnt; + unsigned int mem_lock_cnt; + unsigned int io_norm_cnt; + unsigned int mem_norm_cnt; + bool bridge_has_one_vga; + bool is_firmware_default; + unsigned int (*set_decode)(struct pci_dev *, bool); +}; + +struct vga_arb_user_card { + struct pci_dev *pdev; + unsigned int mem_cnt; + unsigned int io_cnt; +}; + +struct vga_arb_private { + struct list_head list; + struct pci_dev *target; + struct vga_arb_user_card cards[16]; + spinlock_t lock; +}; + +typedef void (*of_init_fn_1)(struct device_node *); + +struct clk_fixed_factor { + struct clk_hw hw; + unsigned int mult; + unsigned int div; + long unsigned int acc; + unsigned int flags; +}; + +enum { + VP_MSIX_CONFIG_VECTOR = 0, + VP_MSIX_VQ_VECTOR = 1, +}; + +enum vp_vq_vector_policy { + VP_VQ_VECTOR_POLICY_EACH = 0, + VP_VQ_VECTOR_POLICY_SHARED_SLOW = 1, + VP_VQ_VECTOR_POLICY_SHARED = 2, +}; + +struct vt_notifier_param { + struct vc_data *vc; + unsigned int c; +}; + +struct vcs_poll_data { + struct notifier_block notifier; + unsigned int cons_num; + int event; + wait_queue_head_t waitq; + struct fasync_struct *fasync; +}; + +struct serial8250_config { + const char *name; + short unsigned int fifo_size; + short unsigned int tx_loadsz; + unsigned char fcr; + unsigned char rxtrig_bytes[4]; + unsigned int flags; +}; + +struct virtrng_info { + struct hwrng hwrng; + struct virtqueue *vq; + char name[25]; + int index; + bool hwrng_register_done; + bool hwrng_removed; + struct completion have_data; + unsigned int data_avail; + unsigned int data_idx; + u8 data[64]; +}; + +struct drm_mode_get_connector { + __u64 encoders_ptr; + __u64 modes_ptr; + __u64 props_ptr; + __u64 prop_values_ptr; + __u32 count_modes; + __u32 count_props; + __u32 count_encoders; + __u32 encoder_id; + __u32 connector_id; + __u32 connector_type; + __u32 connector_type_id; + __u32 connection; + __u32 mm_width; + __u32 mm_height; + __u32 subpixel; + __u32 pad; +}; + +struct drm_mode_connector_set_property { + __u64 value; + __u32 prop_id; + __u32 connector_id; +}; + +struct drm_mode_obj_set_property { + __u64 value; + __u32 prop_id; + __u32 obj_id; + __u32 obj_type; +}; + +struct drm_conn_prop_enum_list { + int type; + const char *name; + struct ida ida; +}; + +enum drm_vblank_seq_type { + _DRM_VBLANK_ABSOLUTE = 0, + _DRM_VBLANK_RELATIVE = 1, + _DRM_VBLANK_HIGH_CRTC_MASK = 62, + _DRM_VBLANK_EVENT = 67108864, + _DRM_VBLANK_FLIP = 134217728, + _DRM_VBLANK_NEXTONMISS = 268435456, + _DRM_VBLANK_SECONDARY = 536870912, + _DRM_VBLANK_SIGNAL = 1073741824, +}; + +struct drm_wait_vblank_request { + enum drm_vblank_seq_type type; + unsigned int sequence; + long unsigned int signal; +}; + +struct drm_wait_vblank_reply { + enum drm_vblank_seq_type type; + unsigned int sequence; + long int tval_sec; + long int tval_usec; +}; + +union drm_wait_vblank { + struct drm_wait_vblank_request request; + struct drm_wait_vblank_reply reply; +}; + +struct drm_crtc_get_sequence { + __u32 crtc_id; + __u32 active; + __u64 sequence; + __s64 sequence_ns; +}; + +struct drm_crtc_queue_sequence { + __u32 crtc_id; + __u32 flags; + __u64 sequence; + __u64 user_data; +}; + +typedef bool (*drm_vblank_get_scanout_position_func)(struct drm_crtc *, bool, int *, int *, ktime_t *, ktime_t *, const struct drm_display_mode *); + +struct drm_shadow_plane_state { + struct drm_plane_state base; + struct drm_format_conv_state fmtcnv_state; + struct iosys_map map[4]; + struct iosys_map data[4]; +}; + +struct drm_simple_display_pipe; + +struct drm_simple_display_pipe_funcs { + enum drm_mode_status (*mode_valid)(struct drm_simple_display_pipe *, const struct drm_display_mode *); + void (*enable)(struct drm_simple_display_pipe *, struct drm_crtc_state *, struct drm_plane_state *); + void (*disable)(struct drm_simple_display_pipe *); + int (*check)(struct drm_simple_display_pipe *, struct drm_plane_state *, struct drm_crtc_state *); + void (*update)(struct drm_simple_display_pipe *, struct drm_plane_state *); + int (*prepare_fb)(struct drm_simple_display_pipe *, struct drm_plane_state *); + void (*cleanup_fb)(struct drm_simple_display_pipe *, struct drm_plane_state *); + int (*begin_fb_access)(struct drm_simple_display_pipe *, struct drm_plane_state *); + void (*end_fb_access)(struct drm_simple_display_pipe *, struct drm_plane_state *); + int (*enable_vblank)(struct drm_simple_display_pipe *); + void (*disable_vblank)(struct drm_simple_display_pipe *); + void (*reset_crtc)(struct drm_simple_display_pipe *); + struct drm_crtc_state * (*duplicate_crtc_state)(struct drm_simple_display_pipe *); + void (*destroy_crtc_state)(struct drm_simple_display_pipe *, struct drm_crtc_state *); + void (*reset_plane)(struct drm_simple_display_pipe *); + struct drm_plane_state * (*duplicate_plane_state)(struct drm_simple_display_pipe *); + void (*destroy_plane_state)(struct drm_simple_display_pipe *, struct drm_plane_state *); +}; + +struct drm_simple_display_pipe { + struct drm_crtc crtc; + struct drm_plane plane; + struct drm_encoder encoder; + struct drm_connector *connector; + const struct drm_simple_display_pipe_funcs *funcs; +}; + +struct trace_event_raw_virtio_gpu_cmd { + struct trace_entry ent; + int dev; + unsigned int vq; + u32 __data_loc_name; + u32 type; + u32 flags; + u64 fence_id; + u32 ctx_id; + u32 num_free; + u32 seqno; + char __data[0]; +}; + +struct trace_event_data_offsets_virtio_gpu_cmd { + u32 name; + const void *name_ptr_; +}; + +typedef void (*btf_trace_virtio_gpu_cmd_queue)(void *, struct virtqueue *, struct virtio_gpu_ctrl_hdr *, u32); + +typedef void (*btf_trace_virtio_gpu_cmd_response)(void *, struct virtqueue *, struct virtio_gpu_ctrl_hdr *, u32); + +struct software_node_ref_args { + const struct software_node *node; + unsigned int nargs; + u64 args[16]; +}; + +struct swnode { + struct kobject kobj; + struct fwnode_handle fwnode; + const struct software_node *node; + int id; + struct ida child_ids; + struct list_head entry; + struct list_head children; + struct swnode *parent; + unsigned int allocated: 1; + unsigned int managed: 1; +}; + +struct scsi_mode_data { + __u32 length; + __u16 block_descriptor_length; + __u8 medium_type; + __u8 device_specific; + __u8 header_length; + __u8 longlba: 1; +}; + +enum scsi_host_prot_capabilities { + SHOST_DIF_TYPE1_PROTECTION = 1, + SHOST_DIF_TYPE2_PROTECTION = 2, + SHOST_DIF_TYPE3_PROTECTION = 4, + SHOST_DIX_TYPE0_PROTECTION = 8, + SHOST_DIX_TYPE1_PROTECTION = 16, + SHOST_DIX_TYPE2_PROTECTION = 32, + SHOST_DIX_TYPE3_PROTECTION = 64, +}; + +enum { + ACTION_FAIL = 0, + ACTION_REPREP = 1, + ACTION_DELAYED_REPREP = 2, + ACTION_RETRY = 3, + ACTION_DELAYED_RETRY = 4, +}; + +enum blake2s_iv { + BLAKE2S_IV0 = 1779033703, + BLAKE2S_IV1 = 3144134277, + BLAKE2S_IV2 = 1013904242, + BLAKE2S_IV3 = 2773480762, + BLAKE2S_IV4 = 1359893119, + BLAKE2S_IV5 = 2600822924, + BLAKE2S_IV6 = 528734635, + BLAKE2S_IV7 = 1541459225, +}; + +struct mdiobus_devres { + struct mii_bus *mii; +}; + +enum { + IFLA_TUN_UNSPEC = 0, + IFLA_TUN_OWNER = 1, + IFLA_TUN_GROUP = 2, + IFLA_TUN_TYPE = 3, + IFLA_TUN_PI = 4, + IFLA_TUN_VNET_HDR = 5, + IFLA_TUN_PERSIST = 6, + IFLA_TUN_MULTI_QUEUE = 7, + IFLA_TUN_NUM_QUEUES = 8, + IFLA_TUN_NUM_DISABLED_QUEUES = 9, + __IFLA_TUN_MAX = 10, +}; + +struct tun_pi { + __u16 flags; + __be16 proto; +}; + +struct tun_filter { + __u16 flags; + __u16 count; + __u8 addr[0]; +}; + +struct tap_filter { + unsigned int count; + u32 mask[2]; + unsigned char addr[48]; +}; + +struct tun_struct; + +struct tun_file { + struct sock sk; + struct socket socket; + struct tun_struct *tun; + struct fasync_struct *fasync; + unsigned int flags; + union { + u16 queue_index; + unsigned int ifindex; + }; + struct napi_struct napi; + bool napi_enabled; + bool napi_frags_enabled; + struct mutex napi_mutex; + struct list_head next; + struct tun_struct *detached; + long: 64; + long: 64; + long: 64; + struct ptr_ring tx_ring; + struct xdp_rxq_info xdp_rxq; +}; + +struct tun_prog; + +struct tun_struct { + struct tun_file *tfiles[256]; + unsigned int numqueues; + unsigned int flags; + kuid_t owner; + kgid_t group; + struct net_device *dev; + netdev_features_t set_features; + int align; + int vnet_hdr_sz; + int sndbuf; + struct tap_filter txflt; + struct sock_fprog fprog; + bool filter_attached; + u32 msg_enable; + spinlock_t lock; + struct hlist_head flows[1024]; + struct timer_list flow_gc_timer; + long unsigned int ageing_time; + unsigned int numdisabled; + struct list_head disabled; + void *security; + u32 flow_count; + u32 rx_batched; + atomic_long_t rx_frame_errors; + struct bpf_prog *xdp_prog; + struct tun_prog *steering_prog; + struct tun_prog *filter_prog; + struct ethtool_link_ksettings link_ksettings; + struct file *file; + struct ifreq *ifr; +}; + +struct tun_page { + struct page *page; + int count; +}; + +struct tun_flow_entry { + struct hlist_node hash_link; + struct callback_head rcu; + struct tun_struct *tun; + u32 rxhash; + u32 rps_rxhash; + int queue_index; + long: 64; + long unsigned int updated; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct tun_prog { + struct callback_head rcu; + struct bpf_prog *prog; +}; + +struct veth { + __be16 h_vlan_proto; + __be16 h_vlan_TCI; +}; + +enum usb_port_connect_type { + USB_PORT_CONNECT_TYPE_UNKNOWN = 0, + USB_PORT_CONNECT_TYPE_HOT_PLUG = 1, + USB_PORT_CONNECT_TYPE_HARD_WIRED = 2, + USB_PORT_NOT_USED = 3, +}; + +struct usb_port_status { + __le16 wPortStatus; + __le16 wPortChange; + __le32 dwExtPortStatus; +}; + +struct usb_hub_status { + __le16 wHubStatus; + __le16 wHubChange; +}; + +struct typec_connector { + void (*attach)(struct typec_connector *, struct device *); + void (*deattach)(struct typec_connector *, struct device *); +}; + +typedef u32 usb_port_location_t; + +struct usb_port; + +struct usb_hub { + struct device *intfdev; + struct usb_device *hdev; + struct kref kref; + struct urb *urb; + u8 (*buffer)[8]; + union { + struct usb_hub_status hub; + struct usb_port_status port; + } *status; + struct mutex status_mutex; + int error; + int nerrors; + long unsigned int event_bits[1]; + long unsigned int change_bits[1]; + long unsigned int removed_bits[1]; + long unsigned int wakeup_bits[1]; + long unsigned int power_bits[1]; + long unsigned int child_usage_bits[1]; + long unsigned int warm_reset_bits[1]; + struct usb_hub_descriptor *descriptor; + struct usb_tt tt; + unsigned int mA_per_port; + unsigned int limited_power: 1; + unsigned int quiescing: 1; + unsigned int disconnected: 1; + unsigned int in_reset: 1; + unsigned int quirk_disable_autosuspend: 1; + unsigned int quirk_check_port_auto_suspend: 1; + unsigned int has_indicators: 1; + u8 indicator[31]; + struct delayed_work leds; + struct delayed_work init_work; + struct delayed_work post_resume_work; + struct work_struct events; + spinlock_t irq_urb_lock; + struct timer_list irq_urb_retry; + struct usb_port **ports; + struct list_head onboard_devs; +}; + +struct usb_port { + struct usb_device *child; + struct device dev; + struct usb_dev_state *port_owner; + struct usb_port *peer; + struct typec_connector *connector; + struct dev_pm_qos_request *req; + enum usb_port_connect_type connect_type; + enum usb_device_state state; + struct kernfs_node *state_kn; + usb_port_location_t location; + struct mutex status_lock; + u32 over_current_count; + u8 portnum; + u32 quirks; + unsigned int early_stop: 1; + unsigned int ignore_event: 1; + unsigned int is_superspeed: 1; + unsigned int usb3_lpm_u1_permit: 1; + unsigned int usb3_lpm_u2_permit: 1; +}; + +struct snap { + int slen; + char str[80]; +}; + +struct xhci_driver_overrides { + size_t extra_priv_size; + int (*reset)(struct usb_hcd *); + int (*start)(struct usb_hcd *); + int (*add_endpoint)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint *); + int (*drop_endpoint)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint *); + int (*check_bandwidth)(struct usb_hcd *, struct usb_device *); + void (*reset_bandwidth)(struct usb_hcd *, struct usb_device *); + int (*update_hub_device)(struct usb_hcd *, struct usb_device *, struct usb_tt *, gfp_t); + int (*hub_control)(struct usb_hcd *, u16, u16, u16, char *, u16); +}; + +typedef void (*xhci_get_quirks_t)(struct device *, struct xhci_hcd *); + +struct xhci_plat_priv { + const char *firmware_name; + long long unsigned int quirks; + void (*plat_start)(struct usb_hcd *); + int (*init_quirk)(struct usb_hcd *); + int (*suspend_quirk)(struct usb_hcd *); + int (*resume_quirk)(struct usb_hcd *); +}; + +struct cyberjack_private { + spinlock_t lock; + short int rdtodo; + unsigned char wrbuf[320]; + short int wrfilled; + short int wrsent; +}; + +struct iuu_private { + spinlock_t lock; + u8 line_status; + int tiostatus; + u8 reset; + int poll; + u8 *writebuf; + int writelen; + u8 *buf; + u8 len; + int vcc; + u32 boost; + u32 clk; +}; + +struct input_seq_state { + short unsigned int pos; + bool mutex_acquired; + int input_devices_state; +}; + +struct input_devres { + struct input_dev *input; +}; + +struct i2c_device_id { + char name[20]; + kernel_ulong_t driver_data; +}; + +struct i2c_device_identity { + u16 manufacturer_id; + u16 part_id; + u8 die_revision; +}; + +enum i2c_alert_protocol { + I2C_PROTOCOL_SMBUS_ALERT = 0, + I2C_PROTOCOL_SMBUS_HOST_NOTIFY = 1, +}; + +struct i2c_driver { + unsigned int class; + int (*probe)(struct i2c_client *); + void (*remove)(struct i2c_client *); + void (*shutdown)(struct i2c_client *); + void (*alert)(struct i2c_client *, enum i2c_alert_protocol, unsigned int); + int (*command)(struct i2c_client *, unsigned int, void *); + struct device_driver driver; + const struct i2c_device_id *id_table; + int (*detect)(struct i2c_client *, struct i2c_board_info *); + const short unsigned int *address_list; + struct list_head clients; + u32 flags; +}; + +struct i2c_timings { + u32 bus_freq_hz; + u32 scl_rise_ns; + u32 scl_fall_ns; + u32 scl_int_delay_ns; + u32 sda_fall_ns; + u32 sda_hold_ns; + u32 digital_filter_width_ns; + u32 analog_filter_cutoff_freq_hz; +}; + +struct trace_event_raw_i2c_write { + struct trace_entry ent; + int adapter_nr; + __u16 msg_nr; + __u16 addr; + __u16 flags; + __u16 len; + u32 __data_loc_buf; + char __data[0]; +}; + +struct trace_event_raw_i2c_read { + struct trace_entry ent; + int adapter_nr; + __u16 msg_nr; + __u16 addr; + __u16 flags; + __u16 len; + char __data[0]; +}; + +struct trace_event_raw_i2c_reply { + struct trace_entry ent; + int adapter_nr; + __u16 msg_nr; + __u16 addr; + __u16 flags; + __u16 len; + u32 __data_loc_buf; + char __data[0]; +}; + +struct trace_event_raw_i2c_result { + struct trace_entry ent; + int adapter_nr; + __u16 nr_msgs; + __s16 ret; + char __data[0]; +}; + +struct trace_event_data_offsets_i2c_write { + u32 buf; + const void *buf_ptr_; +}; + +struct trace_event_data_offsets_i2c_read {}; + +struct trace_event_data_offsets_i2c_reply { + u32 buf; + const void *buf_ptr_; +}; + +struct trace_event_data_offsets_i2c_result {}; + +typedef void (*btf_trace_i2c_write)(void *, const struct i2c_adapter *, const struct i2c_msg *, int); + +typedef void (*btf_trace_i2c_read)(void *, const struct i2c_adapter *, const struct i2c_msg *, int); + +typedef void (*btf_trace_i2c_reply)(void *, const struct i2c_adapter *, const struct i2c_msg *, int); + +typedef void (*btf_trace_i2c_result)(void *, const struct i2c_adapter *, int, int); + +struct i2c_cmd_arg { + unsigned int cmd; + void *arg; +}; + +struct led_trigger {}; + +struct mmc_clk_phase { + bool valid; + u16 in_deg; + u16 out_deg; +}; + +struct mmc_clk_phase_map { + struct mmc_clk_phase phase[11]; +}; + +struct hid_item { + unsigned int format; + __u8 size; + __u8 type; + __u8 tag; + union { + __u8 u8; + __s8 s8; + __u16 u16; + __s16 s16; + __u32 u32; + __s32 s32; + const __u8 *longdata; + } data; +}; + +struct hid_global { + unsigned int usage_page; + __s32 logical_minimum; + __s32 logical_maximum; + __s32 physical_minimum; + __s32 physical_maximum; + __s32 unit_exponent; + unsigned int unit; + unsigned int report_id; + unsigned int report_size; + unsigned int report_count; +}; + +struct hid_local { + unsigned int usage[12288]; + u8 usage_size[12288]; + unsigned int collection_index[12288]; + unsigned int usage_index; + unsigned int usage_minimum; + unsigned int delimiter_depth; + unsigned int delimiter_branch; +}; + +struct hid_parser { + struct hid_global global; + struct hid_global global_stack[4]; + unsigned int global_stack_ptr; + struct hid_local local; + unsigned int *collection_stack; + unsigned int collection_stack_ptr; + unsigned int collection_stack_size; + struct hid_device *device; + unsigned int scan_flags; +}; + +struct hidraw { + unsigned int minor; + int exist; + int open; + wait_queue_head_t wait; + struct hid_device *hid; + struct device *dev; + spinlock_t list_lock; + struct list_head list; +}; + +struct hid_dynid { + struct list_head list; + struct hid_device_id id; +}; + +struct alias_prop { + struct list_head link; + const char *alias; + struct device_node *np; + int id; + char stem[0]; +}; + +struct sk_buff_fclones { + struct sk_buff skb1; + struct sk_buff skb2; + refcount_t fclone_ref; +}; + +struct skb_seq_state { + __u32 lower_offset; + __u32 upper_offset; + __u32 frag_idx; + __u32 stepped_offset; + struct sk_buff *root_skb; + struct sk_buff *cur_skb; + __u8 *frag_data; + __u32 frag_off; +}; + +struct partial_page { + unsigned int offset; + unsigned int len; + long unsigned int private; +}; + +struct splice_pipe_desc { + struct page **pages; + struct partial_page *partial; + int nr_pages; + unsigned int nr_pages_max; + const struct pipe_buf_operations *ops; + void (*spd_release)(struct splice_pipe_desc *, unsigned int); +}; + +enum skb_drop_reason_subsys { + SKB_DROP_REASON_SUBSYS_CORE = 0, + SKB_DROP_REASON_SUBSYS_MAC80211_UNUSABLE = 1, + SKB_DROP_REASON_SUBSYS_MAC80211_MONITOR = 2, + SKB_DROP_REASON_SUBSYS_OPENVSWITCH = 3, + SKB_DROP_REASON_SUBSYS_NUM = 4, +}; + +struct drop_reason_list { + const char * const *reasons; + size_t n_reasons; +}; + +struct page_frag_1k { + void *va; + u16 offset; + bool pfmemalloc; +}; + +struct napi_alloc_cache { + local_lock_t bh_lock; + struct page_frag_cache page; + struct page_frag_1k page_small; + unsigned int skb_count; + void *skb_cache[64]; +}; + +struct skb_free_array { + unsigned int skb_count; + void *skb_array[16]; +}; + +typedef int (*sendmsg_func)(struct sock *, struct msghdr *); + +enum bpf_ret_code { + BPF_OK = 0, + BPF_DROP = 2, + BPF_REDIRECT = 7, + BPF_LWT_REROUTE = 128, + BPF_FLOW_DISSECTOR_CONTINUE = 129, +}; + +enum { + LWT_BPF_PROG_UNSPEC = 0, + LWT_BPF_PROG_FD = 1, + LWT_BPF_PROG_NAME = 2, + __LWT_BPF_PROG_MAX = 3, +}; + +enum { + LWT_BPF_UNSPEC = 0, + LWT_BPF_IN = 1, + LWT_BPF_OUT = 2, + LWT_BPF_XMIT = 3, + LWT_BPF_XMIT_HEADROOM = 4, + __LWT_BPF_MAX = 5, +}; + +struct bpf_lwt_prog { + struct bpf_prog *prog; + char *name; +}; + +struct bpf_lwt { + struct bpf_lwt_prog in; + struct bpf_lwt_prog out; + struct bpf_lwt_prog xmit; + int family; +}; + +struct tc_fifo_qopt { + __u32 limit; +}; + +enum tc_fifo_command { + TC_FIFO_REPLACE = 0, + TC_FIFO_DESTROY = 1, + TC_FIFO_STATS = 2, +}; + +struct tc_fifo_qopt_offload { + enum tc_fifo_command command; + u32 handle; + u32 parent; + union { + struct tc_qopt_offload_stats stats; + }; +}; + +enum { + TCA_U32_UNSPEC = 0, + TCA_U32_CLASSID = 1, + TCA_U32_HASH = 2, + TCA_U32_LINK = 3, + TCA_U32_DIVISOR = 4, + TCA_U32_SEL = 5, + TCA_U32_POLICE = 6, + TCA_U32_ACT = 7, + TCA_U32_INDEV = 8, + TCA_U32_PCNT = 9, + TCA_U32_MARK = 10, + TCA_U32_FLAGS = 11, + TCA_U32_PAD = 12, + __TCA_U32_MAX = 13, +}; + +struct tc_u32_key { + __be32 mask; + __be32 val; + int off; + int offmask; +}; + +struct tc_u32_sel_hdr { + unsigned char flags; + unsigned char offshift; + unsigned char nkeys; + __be16 offmask; + __u16 off; + short int offoff; + short int hoff; + __be32 hmask; +}; + +struct tc_u32_sel { + union { + struct { + unsigned char flags; + unsigned char offshift; + unsigned char nkeys; + __be16 offmask; + __u16 off; + short int offoff; + short int hoff; + __be32 hmask; + }; + struct tc_u32_sel_hdr hdr; + }; + struct tc_u32_key keys[0]; +}; + +struct tc_u32_mark { + __u32 val; + __u32 mask; + __u32 success; +}; + +struct tc_u32_pcnt { + __u64 rcnt; + __u64 rhit; + __u64 kcnts[0]; +}; + +struct tc_cls_u32_knode { + struct tcf_exts *exts; + struct tcf_result *res; + struct tc_u32_sel *sel; + u32 handle; + u32 val; + u32 mask; + u32 link_handle; + u8 fshift; +}; + +struct tc_cls_u32_hnode { + u32 handle; + u32 prio; + unsigned int divisor; +}; + +enum tc_clsu32_command { + TC_CLSU32_NEW_KNODE = 0, + TC_CLSU32_REPLACE_KNODE = 1, + TC_CLSU32_DELETE_KNODE = 2, + TC_CLSU32_NEW_HNODE = 3, + TC_CLSU32_REPLACE_HNODE = 4, + TC_CLSU32_DELETE_HNODE = 5, +}; + +struct tc_cls_u32_offload { + struct flow_cls_common_offload common; + enum tc_clsu32_command command; + union { + struct tc_cls_u32_knode knode; + struct tc_cls_u32_hnode hnode; + }; +}; + +struct tc_u_hnode; + +struct tc_u_knode { + struct tc_u_knode *next; + u32 handle; + struct tc_u_hnode *ht_up; + struct tcf_exts exts; + int ifindex; + u8 fshift; + struct tcf_result res; + struct tc_u_hnode *ht_down; + struct tc_u32_pcnt *pf; + u32 flags; + unsigned int in_hw_count; + u32 val; + u32 mask; + u32 *pcpu_success; + struct rcu_work rwork; + struct tc_u32_sel sel; +}; + +struct tc_u_hnode { + struct tc_u_hnode *next; + u32 handle; + u32 prio; + refcount_t refcnt; + unsigned int divisor; + struct idr handle_idr; + bool is_root; + struct callback_head rcu; + u32 flags; + struct tc_u_knode *ht[0]; +}; + +struct tc_u_common { + struct tc_u_hnode *hlist; + void *ptr; + refcount_t refcnt; + struct idr handle_idr; + struct hlist_node hnode; + long int knodes; +}; + +enum netlink_attribute_type { + NL_ATTR_TYPE_INVALID = 0, + NL_ATTR_TYPE_FLAG = 1, + NL_ATTR_TYPE_U8 = 2, + NL_ATTR_TYPE_U16 = 3, + NL_ATTR_TYPE_U32 = 4, + NL_ATTR_TYPE_U64 = 5, + NL_ATTR_TYPE_S8 = 6, + NL_ATTR_TYPE_S16 = 7, + NL_ATTR_TYPE_S32 = 8, + NL_ATTR_TYPE_S64 = 9, + NL_ATTR_TYPE_BINARY = 10, + NL_ATTR_TYPE_STRING = 11, + NL_ATTR_TYPE_NUL_STRING = 12, + NL_ATTR_TYPE_NESTED = 13, + NL_ATTR_TYPE_NESTED_ARRAY = 14, + NL_ATTR_TYPE_BITFIELD32 = 15, + NL_ATTR_TYPE_SINT = 16, + NL_ATTR_TYPE_UINT = 17, +}; + +enum netlink_policy_type_attr { + NL_POLICY_TYPE_ATTR_UNSPEC = 0, + NL_POLICY_TYPE_ATTR_TYPE = 1, + NL_POLICY_TYPE_ATTR_MIN_VALUE_S = 2, + NL_POLICY_TYPE_ATTR_MAX_VALUE_S = 3, + NL_POLICY_TYPE_ATTR_MIN_VALUE_U = 4, + NL_POLICY_TYPE_ATTR_MAX_VALUE_U = 5, + NL_POLICY_TYPE_ATTR_MIN_LENGTH = 6, + NL_POLICY_TYPE_ATTR_MAX_LENGTH = 7, + NL_POLICY_TYPE_ATTR_POLICY_IDX = 8, + NL_POLICY_TYPE_ATTR_POLICY_MAXTYPE = 9, + NL_POLICY_TYPE_ATTR_BITFIELD32_MASK = 10, + NL_POLICY_TYPE_ATTR_PAD = 11, + NL_POLICY_TYPE_ATTR_MASK = 12, + __NL_POLICY_TYPE_ATTR_MAX = 13, + NL_POLICY_TYPE_ATTR_MAX = 12, +}; + +struct netlink_policy_dump_state { + unsigned int policy_idx; + unsigned int attr_idx; + unsigned int n_alloc; + struct { + const struct nla_policy *policy; + unsigned int maxtype; + } policies[0]; +}; + +struct debug_reply_data { + struct ethnl_reply_data base; + u32 msg_mask; +}; + +enum ethtool_fec_config_bits { + ETHTOOL_FEC_NONE_BIT = 0, + ETHTOOL_FEC_AUTO_BIT = 1, + ETHTOOL_FEC_OFF_BIT = 2, + ETHTOOL_FEC_RS_BIT = 3, + ETHTOOL_FEC_BASER_BIT = 4, + ETHTOOL_FEC_LLRS_BIT = 5, +}; + +enum { + ETHTOOL_A_FEC_STAT_UNSPEC = 0, + ETHTOOL_A_FEC_STAT_PAD = 1, + ETHTOOL_A_FEC_STAT_CORRECTED = 2, + ETHTOOL_A_FEC_STAT_UNCORR = 3, + ETHTOOL_A_FEC_STAT_CORR_BITS = 4, + __ETHTOOL_A_FEC_STAT_CNT = 5, + ETHTOOL_A_FEC_STAT_MAX = 4, +}; + +struct fec_stat_grp { + u64 stats[9]; + u8 cnt; +}; + +struct fec_reply_data { + struct ethnl_reply_data base; + long unsigned int fec_link_modes[2]; + u32 active_fec; + u8 fec_auto; + struct fec_stat_grp corr; + struct fec_stat_grp uncorr; + struct fec_stat_grp corr_bits; +}; + +enum ctattr_l4proto { + CTA_PROTO_UNSPEC = 0, + CTA_PROTO_NUM = 1, + CTA_PROTO_SRC_PORT = 2, + CTA_PROTO_DST_PORT = 3, + CTA_PROTO_ICMP_ID = 4, + CTA_PROTO_ICMP_TYPE = 5, + CTA_PROTO_ICMP_CODE = 6, + CTA_PROTO_ICMPV6_ID = 7, + CTA_PROTO_ICMPV6_TYPE = 8, + CTA_PROTO_ICMPV6_CODE = 9, + __CTA_PROTO_MAX = 10, +}; + +enum ctattr_timeout_icmp { + CTA_TIMEOUT_ICMP_UNSPEC = 0, + CTA_TIMEOUT_ICMP_TIMEOUT = 1, + __CTA_TIMEOUT_ICMP_MAX = 2, +}; + +enum ctattr_timeout_icmpv6 { + CTA_TIMEOUT_ICMPV6_UNSPEC = 0, + CTA_TIMEOUT_ICMPV6_TIMEOUT = 1, + __CTA_TIMEOUT_ICMPV6_MAX = 2, +}; + +struct nf_conn_synproxy { + u32 isn; + u32 its; + u32 tsoff; +}; + +enum nft_secmark_attributes { + NFTA_SECMARK_UNSPEC = 0, + NFTA_SECMARK_CTX = 1, + __NFTA_SECMARK_MAX = 2, +}; + +struct nft_secmark { + u32 secid; + char *ctx; +}; + +enum nft_limit_type { + NFT_LIMIT_PKTS = 0, + NFT_LIMIT_PKT_BYTES = 1, +}; + +enum nft_limit_flags { + NFT_LIMIT_F_INV = 1, +}; + +enum nft_limit_attributes { + NFTA_LIMIT_UNSPEC = 0, + NFTA_LIMIT_RATE = 1, + NFTA_LIMIT_UNIT = 2, + NFTA_LIMIT_BURST = 3, + NFTA_LIMIT_TYPE = 4, + NFTA_LIMIT_FLAGS = 5, + NFTA_LIMIT_PAD = 6, + __NFTA_LIMIT_MAX = 7, +}; + +struct nft_limit { + spinlock_t lock; + u64 last; + u64 tokens; +}; + +struct nft_limit_priv { + struct nft_limit *limit; + u64 tokens_max; + u64 rate; + u64 nsecs; + u32 burst; + bool invert; +}; + +struct nft_limit_priv_pkts { + struct nft_limit_priv limit; + u64 cost; +}; + +struct xt_tee_priv; + +struct xt_tee_tginfo { + union nf_inet_addr gw; + char oif[16]; + struct xt_tee_priv *priv; +}; + +struct xt_tee_priv { + struct list_head list; + struct xt_tee_tginfo *tginfo; + int oif; +}; + +struct tee_net { + struct list_head priv_list; + struct mutex lock; +}; + +enum xt_l2tp_type { + XT_L2TP_TYPE_CONTROL = 0, + XT_L2TP_TYPE_DATA = 1, +}; + +struct xt_l2tp_info { + __u32 tid; + __u32 sid; + __u8 version; + __u8 type; + __u8 flags; +}; + +enum { + XT_L2TP_TID = 1, + XT_L2TP_SID = 2, + XT_L2TP_VERSION = 4, + XT_L2TP_TYPE = 8, +}; + +struct l2tp_data { + u32 tid; + u32 sid; + u8 type; + u8 version; +}; + +union l2tp_val { + __be16 val16[2]; + __be32 val32; +}; + +struct xt_physdev_info { + char physindev[16]; + char in_mask[16]; + char physoutdev[16]; + char out_mask[16]; + __u8 invert; + __u8 bitmask; +}; + +struct xt_time_info { + __u32 date_start; + __u32 date_stop; + __u32 daytime_start; + __u32 daytime_stop; + __u32 monthdays_match; + __u8 weekdays_match; + __u8 flags; +}; + +enum { + XT_TIME_LOCAL_TZ = 1, + XT_TIME_CONTIGUOUS = 2, + XT_TIME_ALL_MONTHDAYS = 4294967294, + XT_TIME_ALL_WEEKDAYS = 254, + XT_TIME_MIN_DAYTIME = 0, + XT_TIME_MAX_DAYTIME = 86399, +}; + +struct xtm { + u_int8_t month; + u_int8_t monthday; + u_int8_t weekday; + u_int8_t hour; + u_int8_t minute; + u_int8_t second; + unsigned int dse; +}; + +enum { + DSE_FIRST = 2039, + SECONDS_PER_DAY = 86400, +}; + +enum { + IP_VS_TCP_S_NONE = 0, + IP_VS_TCP_S_ESTABLISHED = 1, + IP_VS_TCP_S_SYN_SENT = 2, + IP_VS_TCP_S_SYN_RECV = 3, + IP_VS_TCP_S_FIN_WAIT = 4, + IP_VS_TCP_S_TIME_WAIT = 5, + IP_VS_TCP_S_CLOSE = 6, + IP_VS_TCP_S_CLOSE_WAIT = 7, + IP_VS_TCP_S_LAST_ACK = 8, + IP_VS_TCP_S_LISTEN = 9, + IP_VS_TCP_S_SYNACK = 10, + IP_VS_TCP_S_LAST = 11, +}; + +enum ip_vs_sctp_states { + IP_VS_SCTP_S_NONE = 0, + IP_VS_SCTP_S_INIT1 = 1, + IP_VS_SCTP_S_INIT = 2, + IP_VS_SCTP_S_COOKIE_SENT = 3, + IP_VS_SCTP_S_COOKIE_REPLIED = 4, + IP_VS_SCTP_S_COOKIE_WAIT = 5, + IP_VS_SCTP_S_COOKIE = 6, + IP_VS_SCTP_S_COOKIE_ECHOED = 7, + IP_VS_SCTP_S_ESTABLISHED = 8, + IP_VS_SCTP_S_SHUTDOWN_SENT = 9, + IP_VS_SCTP_S_SHUTDOWN_RECEIVED = 10, + IP_VS_SCTP_S_SHUTDOWN_ACK_SENT = 11, + IP_VS_SCTP_S_REJECTED = 12, + IP_VS_SCTP_S_CLOSED = 13, + IP_VS_SCTP_S_LAST = 14, +}; + +struct ip_vs_aligned_lock { + spinlock_t l; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct ip_vs_iter_state { + struct seq_net_private p; + struct hlist_head *l; +}; + +struct nhmsg { + unsigned char nh_family; + unsigned char nh_scope; + unsigned char nh_protocol; + unsigned char resvd; + unsigned int nh_flags; +}; + +struct nexthop_grp { + __u32 id; + __u8 weight; + __u8 weight_high; + __u16 resvd2; +}; + +enum { + NEXTHOP_GRP_TYPE_MPATH = 0, + NEXTHOP_GRP_TYPE_RES = 1, + __NEXTHOP_GRP_TYPE_MAX = 2, +}; + +enum { + NHA_UNSPEC = 0, + NHA_ID = 1, + NHA_GROUP = 2, + NHA_GROUP_TYPE = 3, + NHA_BLACKHOLE = 4, + NHA_OIF = 5, + NHA_GATEWAY = 6, + NHA_ENCAP_TYPE = 7, + NHA_ENCAP = 8, + NHA_GROUPS = 9, + NHA_MASTER = 10, + NHA_FDB = 11, + NHA_RES_GROUP = 12, + NHA_RES_BUCKET = 13, + NHA_OP_FLAGS = 14, + NHA_GROUP_STATS = 15, + NHA_HW_STATS_ENABLE = 16, + NHA_HW_STATS_USED = 17, + __NHA_MAX = 18, +}; + +enum { + NHA_RES_GROUP_UNSPEC = 0, + NHA_RES_GROUP_PAD = 0, + NHA_RES_GROUP_BUCKETS = 1, + NHA_RES_GROUP_IDLE_TIMER = 2, + NHA_RES_GROUP_UNBALANCED_TIMER = 3, + NHA_RES_GROUP_UNBALANCED_TIME = 4, + __NHA_RES_GROUP_MAX = 5, +}; + +enum { + NHA_RES_BUCKET_UNSPEC = 0, + NHA_RES_BUCKET_PAD = 0, + NHA_RES_BUCKET_INDEX = 1, + NHA_RES_BUCKET_IDLE_TIME = 2, + NHA_RES_BUCKET_NH_ID = 3, + __NHA_RES_BUCKET_MAX = 4, +}; + +enum { + NHA_GROUP_STATS_UNSPEC = 0, + NHA_GROUP_STATS_ENTRY = 1, + __NHA_GROUP_STATS_MAX = 2, +}; + +enum { + NHA_GROUP_STATS_ENTRY_UNSPEC = 0, + NHA_GROUP_STATS_ENTRY_ID = 1, + NHA_GROUP_STATS_ENTRY_PACKETS = 2, + NHA_GROUP_STATS_ENTRY_PACKETS_HW = 3, + __NHA_GROUP_STATS_ENTRY_MAX = 4, +}; + +struct netdev_notifier_info_ext { + struct netdev_notifier_info info; + union { + u32 mtu; + } ext; +}; + +struct nh_config { + u32 nh_id; + u8 nh_family; + u8 nh_protocol; + u8 nh_blackhole; + u8 nh_fdb; + u32 nh_flags; + int nh_ifindex; + struct net_device *dev; + union { + __be32 ipv4; + struct in6_addr ipv6; + } gw; + struct nlattr *nh_grp; + u16 nh_grp_type; + u16 nh_grp_res_num_buckets; + long unsigned int nh_grp_res_idle_timer; + long unsigned int nh_grp_res_unbalanced_timer; + bool nh_grp_res_has_num_buckets; + bool nh_grp_res_has_idle_timer; + bool nh_grp_res_has_unbalanced_timer; + bool nh_hw_stats; + struct nlattr *nh_encap; + u16 nh_encap_type; + u32 nlflags; + struct nl_info nlinfo; +}; + +enum nexthop_event_type { + NEXTHOP_EVENT_DEL = 0, + NEXTHOP_EVENT_REPLACE = 1, + NEXTHOP_EVENT_RES_TABLE_PRE_REPLACE = 2, + NEXTHOP_EVENT_BUCKET_REPLACE = 3, + NEXTHOP_EVENT_HW_STATS_REPORT_DELTA = 4, +}; + +enum nh_notifier_info_type { + NH_NOTIFIER_INFO_TYPE_SINGLE = 0, + NH_NOTIFIER_INFO_TYPE_GRP = 1, + NH_NOTIFIER_INFO_TYPE_RES_TABLE = 2, + NH_NOTIFIER_INFO_TYPE_RES_BUCKET = 3, + NH_NOTIFIER_INFO_TYPE_GRP_HW_STATS = 4, +}; + +struct nh_notifier_single_info { + struct net_device *dev; + u8 gw_family; + union { + __be32 ipv4; + struct in6_addr ipv6; + }; + u32 id; + u8 is_reject: 1; + u8 is_fdb: 1; + u8 has_encap: 1; +}; + +struct nh_notifier_grp_entry_info { + u16 weight; + struct nh_notifier_single_info nh; +}; + +struct nh_notifier_grp_info { + u16 num_nh; + bool is_fdb; + bool hw_stats; + struct nh_notifier_grp_entry_info nh_entries[0]; +}; + +struct nh_notifier_res_bucket_info { + u16 bucket_index; + unsigned int idle_timer_ms; + bool force; + struct nh_notifier_single_info old_nh; + struct nh_notifier_single_info new_nh; +}; + +struct nh_notifier_res_table_info { + u16 num_nh_buckets; + bool hw_stats; + struct nh_notifier_single_info nhs[0]; +}; + +struct nh_notifier_grp_hw_stats_entry_info { + u32 id; + u64 packets; +}; + +struct nh_notifier_grp_hw_stats_info { + u16 num_nh; + bool hw_stats_used; + struct nh_notifier_grp_hw_stats_entry_info stats[0]; +}; + +struct nh_notifier_info { + struct net *net; + struct netlink_ext_ack *extack; + u32 id; + enum nh_notifier_info_type type; + union { + struct nh_notifier_single_info *nh; + struct nh_notifier_grp_info *nh_grp; + struct nh_notifier_res_table_info *nh_res_table; + struct nh_notifier_res_bucket_info *nh_res_bucket; + struct nh_notifier_grp_hw_stats_info *nh_grp_hw_stats; + }; +}; + +struct nh_dump_filter { + u32 nh_id; + int dev_idx; + int master_idx; + bool group_filter; + bool fdb_filter; + u32 res_bucket_nh_id; + u32 op_flags; +}; + +struct rtm_dump_nh_ctx { + u32 idx; +}; + +struct rtm_dump_res_bucket_ctx { + struct rtm_dump_nh_ctx nh; + u16 bucket_index; +}; + +struct rtm_dump_nexthop_bucket_data { + struct rtm_dump_res_bucket_ctx *ctx; + struct nh_dump_filter filter; +}; + +enum { + UDP_BPF_IPV4 = 0, + UDP_BPF_IPV6 = 1, + UDP_BPF_NUM_PROTS = 2, +}; + +struct ipcomp_data { + u16 threshold; + struct crypto_comp **tfms; +}; + +struct ipcomp_tfms { + struct list_head list; + struct crypto_comp **tfms; + int users; +}; + +struct ipv6_sr_hdr { + __u8 nexthdr; + __u8 hdrlen; + __u8 type; + __u8 segments_left; + __u8 first_segment; + __u8 flags; + __u16 tag; + struct in6_addr segments[0]; +}; + +struct ip6_tnl_encap_ops { + size_t (*encap_hlen)(struct ip_tunnel_encap *); + int (*build_header)(struct sk_buff *, struct ip_tunnel_encap *, u8 *, struct flowi6 *); + int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); +}; + +struct ip6t_opts { + __u32 hdrlen; + __u8 flags; + __u8 invflags; + __u16 opts[16]; + __u8 optsnr; +}; + +struct nf_br_ops { + int (*br_dev_xmit_hook)(struct sk_buff *); +}; + +struct ebt_mark_m_info { + long unsigned int mark; + long unsigned int mask; + __u8 invert; + __u8 bitmask; +}; + +enum { + SVC_HANDSHAKE_TO = 5000, +}; + +struct crypto_sync_skcipher { + struct crypto_skcipher base; +}; + +struct krb5_ctx; + +struct gss_krb5_enctype { + const u32 etype; + const u32 ctype; + const char *name; + const char *encrypt_name; + const char *aux_cipher; + const char *cksum_name; + const u16 signalg; + const u16 sealalg; + const u32 cksumlength; + const u32 keyed_cksum; + const u32 keybytes; + const u32 keylength; + const u32 Kc_length; + const u32 Ke_length; + const u32 Ki_length; + int (*derive_key)(const struct gss_krb5_enctype *, const struct xdr_netobj *, struct xdr_netobj *, const struct xdr_netobj *, gfp_t); + u32 (*encrypt)(struct krb5_ctx *, u32, struct xdr_buf *, struct page **); + u32 (*decrypt)(struct krb5_ctx *, u32, u32, struct xdr_buf *, u32 *, u32 *); + u32 (*get_mic)(struct krb5_ctx *, struct xdr_buf *, struct xdr_netobj *); + u32 (*verify_mic)(struct krb5_ctx *, struct xdr_buf *, struct xdr_netobj *); + u32 (*wrap)(struct krb5_ctx *, int, struct xdr_buf *, struct page **); + u32 (*unwrap)(struct krb5_ctx *, int, int, struct xdr_buf *, unsigned int *, unsigned int *); +}; + +struct krb5_ctx { + int initiate; + u32 enctype; + u32 flags; + const struct gss_krb5_enctype *gk5e; + struct crypto_sync_skcipher *enc; + struct crypto_sync_skcipher *seq; + struct crypto_sync_skcipher *acceptor_enc; + struct crypto_sync_skcipher *initiator_enc; + struct crypto_sync_skcipher *acceptor_enc_aux; + struct crypto_sync_skcipher *initiator_enc_aux; + struct crypto_ahash *acceptor_sign; + struct crypto_ahash *initiator_sign; + struct crypto_ahash *initiator_integ; + struct crypto_ahash *acceptor_integ; + u8 Ksess[32]; + u8 cksum[32]; + atomic_t seq_send; + atomic64_t seq_send64; + time64_t endtime; + struct xdr_netobj mech_used; +}; + +struct encryptor_desc { + u8 iv[16]; + struct skcipher_request *req; + int pos; + struct xdr_buf *outbuf; + struct page **pages; + struct scatterlist infrags[4]; + struct scatterlist outfrags[4]; + int fragno; + int fraglen; +}; + +struct decryptor_desc { + u8 iv[16]; + struct skcipher_request *req; + struct scatterlist frags[4]; + int fragno; + int fraglen; +}; + +enum sctp_spinfo_state { + SCTP_INACTIVE = 0, + SCTP_PF = 1, + SCTP_ACTIVE = 2, + SCTP_UNCONFIRMED = 3, + SCTP_UNKNOWN = 65535, +}; + +enum { + SCTP_PARAM_ACTION_DISCARD = 0, + SCTP_PARAM_ACTION_DISCARD_ERR = 64, + SCTP_PARAM_ACTION_SKIP = 128, + SCTP_PARAM_ACTION_SKIP_ERR = 192, +}; + +enum { + SCTP_PARAM_ACTION_MASK = 192, +}; + +struct sctp_addip_chunk { + struct sctp_chunkhdr chunk_hdr; + struct sctp_addiphdr addip_hdr; +}; + +struct sctp_strreset_outreq { + struct sctp_paramhdr param_hdr; + __be32 request_seq; + __be32 response_seq; + __be32 send_reset_at_tsn; + __be16 list_of_streams[0]; +}; + +struct sctp_strreset_inreq { + struct sctp_paramhdr param_hdr; + __be32 request_seq; + __be16 list_of_streams[0]; +}; + +struct sctp_strreset_tsnreq { + struct sctp_paramhdr param_hdr; + __be32 request_seq; +}; + +struct sctp_strreset_addstrm { + struct sctp_paramhdr param_hdr; + __be32 request_seq; + __be16 number_of_streams; + __be16 reserved; +}; + +struct sctp_strreset_resp { + struct sctp_paramhdr param_hdr; + __be32 response_seq; + __be32 result; +}; + +struct sctp_strreset_resptsn { + struct sctp_paramhdr param_hdr; + __be32 response_seq; + __be32 result; + __be32 senders_next_tsn; + __be32 receivers_next_tsn; +}; + +struct sctp_new_encap_port_hdr { + __be16 cur_port; + __be16 new_port; +}; + +enum { + SCTP_MAX_CHUNK_LEN = 65532, +}; + +struct __sctp_missing { + __be32 num_missing; + __be16 type; +} __attribute__((packed)); + +enum sctp_sched_type { + SCTP_SS_FCFS = 0, + SCTP_SS_DEFAULT = 0, + SCTP_SS_PRIO = 1, + SCTP_SS_RR = 2, + SCTP_SS_FC = 3, + SCTP_SS_WFQ = 4, + SCTP_SS_MAX = 4, +}; + +struct sctp_sched_ops { + int (*set)(struct sctp_stream *, __u16, __u16, gfp_t); + int (*get)(struct sctp_stream *, __u16, __u16 *); + int (*init)(struct sctp_stream *); + int (*init_sid)(struct sctp_stream *, __u16, gfp_t); + void (*free_sid)(struct sctp_stream *, __u16); + void (*enqueue)(struct sctp_outq *, struct sctp_datamsg *); + struct sctp_chunk * (*dequeue)(struct sctp_outq *); + void (*dequeue_done)(struct sctp_outq *, struct sctp_chunk *); + void (*sched_all)(struct sctp_stream *); + void (*unsched_all)(struct sctp_stream *); +}; + +struct internal_dev { + struct vport *vport; +}; + +struct xsk_dma_map { + dma_addr_t *dma_pages; + struct device *dev; + struct net_device *netdev; + refcount_t users; + struct list_head list; + u32 dma_pages_cnt; +}; + +struct xsk_cb_desc { + void *src; + u8 off; + u8 bytes; +}; + +struct ida_bitmap { + long unsigned int bitmap[16]; +}; + +struct klist_waiter { + struct list_head list; + struct klist_node *node; + struct task_struct *process; + int woken; +}; + +struct step_hook { + struct list_head node; + int (*fn)(struct pt_regs *, long unsigned int); +}; + +enum dbg_active_el { + DBG_ACTIVE_EL0 = 0, + DBG_ACTIVE_EL1 = 1, +}; + +enum aarch64_insn_imm_type { + AARCH64_INSN_IMM_ADR = 0, + AARCH64_INSN_IMM_26 = 1, + AARCH64_INSN_IMM_19 = 2, + AARCH64_INSN_IMM_16 = 3, + AARCH64_INSN_IMM_14 = 4, + AARCH64_INSN_IMM_12 = 5, + AARCH64_INSN_IMM_9 = 6, + AARCH64_INSN_IMM_7 = 7, + AARCH64_INSN_IMM_6 = 8, + AARCH64_INSN_IMM_S = 9, + AARCH64_INSN_IMM_R = 10, + AARCH64_INSN_IMM_N = 11, + AARCH64_INSN_IMM_MAX = 12, +}; + +enum aarch64_reloc_op { + RELOC_OP_NONE = 0, + RELOC_OP_ABS = 1, + RELOC_OP_PREL = 2, + RELOC_OP_PAGE = 3, +}; + +enum aarch64_insn_movw_imm_type { + AARCH64_INSN_IMM_MOVNZ = 0, + AARCH64_INSN_IMM_MOVKZ = 1, +}; + +enum { + HW_BREAKPOINT_LEN_1 = 1, + HW_BREAKPOINT_LEN_2 = 2, + HW_BREAKPOINT_LEN_3 = 3, + HW_BREAKPOINT_LEN_4 = 4, + HW_BREAKPOINT_LEN_5 = 5, + HW_BREAKPOINT_LEN_6 = 6, + HW_BREAKPOINT_LEN_7 = 7, + HW_BREAKPOINT_LEN_8 = 8, +}; + +enum { + HW_BREAKPOINT_EMPTY = 0, + HW_BREAKPOINT_R = 1, + HW_BREAKPOINT_W = 2, + HW_BREAKPOINT_RW = 3, + HW_BREAKPOINT_X = 4, + HW_BREAKPOINT_INVALID = 7, +}; + +enum bp_type_idx { + TYPE_INST = 0, + TYPE_DATA = 1, + TYPE_MAX = 2, +}; + +enum hw_breakpoint_ops { + HW_BREAKPOINT_INSTALL = 0, + HW_BREAKPOINT_UNINSTALL = 1, + HW_BREAKPOINT_RESTORE = 2, +}; + +typedef int (*ioremap_prot_hook_t)(phys_addr_t, size_t, pgprot_t *); + +struct clone_args { + __u64 flags; + __u64 pidfd; + __u64 child_tid; + __u64 parent_tid; + __u64 exit_signal; + __u64 stack; + __u64 stack_size; + __u64 tls; + __u64 set_tid; + __u64 set_tid_size; + __u64 cgroup; +}; + +struct kernel_clone_args { + u64 flags; + int *pidfd; + int *child_tid; + int *parent_tid; + const char *name; + int exit_signal; + u32 kthread: 1; + u32 io_thread: 1; + u32 user_worker: 1; + u32 no_files: 1; + long unsigned int stack; + long unsigned int stack_size; + long unsigned int tls; + pid_t *set_tid; + size_t set_tid_size; + int cgroup; + int idle; + int (*fn)(void *); + void *fn_arg; + struct cgroup *cgrp; + struct css_set *cset; + unsigned int kill_seq; +}; + +struct multiprocess_signals { + sigset_t signal; + struct hlist_node node; +}; + +typedef int (*proc_visitor)(struct task_struct *, void *); + +struct trace_event_raw_task_newtask { + struct trace_entry ent; + pid_t pid; + char comm[16]; + long unsigned int clone_flags; + short int oom_score_adj; + char __data[0]; +}; + +struct trace_event_raw_task_rename { + struct trace_entry ent; + pid_t pid; + char oldcomm[16]; + char newcomm[16]; + short int oom_score_adj; + char __data[0]; +}; + +struct trace_event_data_offsets_task_newtask {}; + +struct trace_event_data_offsets_task_rename {}; + +typedef void (*btf_trace_task_newtask)(void *, struct task_struct *, long unsigned int); + +typedef void (*btf_trace_task_rename)(void *, struct task_struct *, const char *); + +struct rt_wake_q_head { + struct wake_q_head head; + struct task_struct *rtlock_task; +}; + +enum rtmutex_chainwalk { + RT_MUTEX_MIN_CHAINWALK = 0, + RT_MUTEX_FULL_CHAINWALK = 1, +}; + +enum pci_p2pdma_map_type { + PCI_P2PDMA_MAP_UNKNOWN = 0, + PCI_P2PDMA_MAP_NOT_SUPPORTED = 1, + PCI_P2PDMA_MAP_BUS_ADDR = 2, + PCI_P2PDMA_MAP_THRU_HOST_BRIDGE = 3, +}; + +struct pci_p2pdma_map_state { + struct dev_pagemap *pgmap; + int map; + u64 bus_off; +}; + +struct latch_tree_root { + seqcount_latch_t seq; + struct rb_root tree[2]; +}; + +struct latch_tree_ops { + bool (*less)(struct latch_tree_node *, struct latch_tree_node *); + int (*comp)(void *, struct latch_tree_node *); +}; + +struct mod_tree_root { + struct latch_tree_root root; + long unsigned int addr_min; + long unsigned int addr_max; +}; + +enum kcmp_type { + KCMP_FILE = 0, + KCMP_VM = 1, + KCMP_FILES = 2, + KCMP_FS = 3, + KCMP_SIGHAND = 4, + KCMP_IO = 5, + KCMP_SYSVSEM = 6, + KCMP_EPOLL_TFD = 7, + KCMP_TYPES = 8, +}; + +struct kcmp_epoll_slot { + __u32 efd; + __u32 tfd; + __u32 toff; +}; + +struct posix_clock; + +struct posix_clock_context; + +struct posix_clock_operations { + struct module *owner; + int (*clock_adjtime)(struct posix_clock *, struct __kernel_timex *); + int (*clock_gettime)(struct posix_clock *, struct timespec64 *); + int (*clock_getres)(struct posix_clock *, struct timespec64 *); + int (*clock_settime)(struct posix_clock *, const struct timespec64 *); + long int (*ioctl)(struct posix_clock_context *, unsigned int, long unsigned int); + int (*open)(struct posix_clock_context *, fmode_t); + __poll_t (*poll)(struct posix_clock_context *, struct file *, poll_table *); + int (*release)(struct posix_clock_context *); + ssize_t (*read)(struct posix_clock_context *, uint, char *, size_t); +}; + +struct posix_clock { + struct posix_clock_operations ops; + struct cdev cdev; + struct device *dev; + struct rw_semaphore rwsem; + bool zombie; +}; + +struct posix_clock_context { + struct posix_clock *clk; + void *private_clkdata; +}; + +struct posix_clock_desc { + struct file *fp; + struct posix_clock *clk; +}; + +struct kallsym_iter { + loff_t pos; + loff_t pos_mod_end; + loff_t pos_ftrace_mod_end; + loff_t pos_bpf_end; + long unsigned int value; + unsigned int nameoff; + char type; + char name[512]; + char module_name[56]; + int exported; + int show_value; +}; + +struct bpf_iter__ksym { + union { + struct bpf_iter_meta *meta; + }; + union { + struct kallsym_iter *ksym; + }; +}; + +enum uts_proc { + UTS_PROC_ARCH = 0, + UTS_PROC_OSTYPE = 1, + UTS_PROC_OSRELEASE = 2, + UTS_PROC_VERSION = 3, + UTS_PROC_HOSTNAME = 4, + UTS_PROC_DOMAINNAME = 5, +}; + +struct ftrace_func_entry { + struct hlist_node hlist; + long unsigned int ip; + long unsigned int direct; +}; + +enum ftrace_bug_type { + FTRACE_BUG_UNKNOWN = 0, + FTRACE_BUG_INIT = 1, + FTRACE_BUG_NOP = 2, + FTRACE_BUG_CALL = 3, + FTRACE_BUG_UPDATE = 4, +}; + +enum { + FTRACE_UPDATE_IGNORE = 0, + FTRACE_UPDATE_MAKE_CALL = 1, + FTRACE_UPDATE_MODIFY_CALL = 2, + FTRACE_UPDATE_MAKE_NOP = 3, +}; + +enum { + FTRACE_ITER_FILTER = 1, + FTRACE_ITER_NOTRACE = 2, + FTRACE_ITER_PRINTALL = 4, + FTRACE_ITER_DO_PROBES = 8, + FTRACE_ITER_PROBE = 16, + FTRACE_ITER_MOD = 32, + FTRACE_ITER_ENABLED = 64, + FTRACE_ITER_TOUCHED = 128, + FTRACE_ITER_ADDRS = 256, +}; + +enum { + TRACE_PIDS = 1, + TRACE_NO_PIDS = 2, +}; + +struct ftrace_mod_load { + struct list_head list; + char *func; + char *module; + int enable; +}; + +enum { + FTRACE_HASH_FL_MOD = 1, +}; + +struct trace_parser { + bool cont; + bool fail; + char *buffer; + unsigned int idx; + unsigned int size; +}; + +enum regex_type { + MATCH_FULL = 0, + MATCH_FRONT_ONLY = 1, + MATCH_MIDDLE_ONLY = 2, + MATCH_END_ONLY = 3, + MATCH_GLOB = 4, + MATCH_INDEX = 5, +}; + +struct tracer_stat { + const char *name; + void * (*stat_start)(struct tracer_stat *); + void * (*stat_next)(void *, int); + cmp_func_t stat_cmp; + int (*stat_show)(struct seq_file *, void *); + void (*stat_release)(void *); + int (*stat_headers)(struct seq_file *); +}; + +enum { + FTRACE_MODIFY_ENABLE_FL = 1, + FTRACE_MODIFY_MAY_SLEEP_FL = 2, +}; + +struct ftrace_profile { + struct hlist_node node; + long unsigned int ip; + long unsigned int counter; +}; + +struct ftrace_profile_page { + struct ftrace_profile_page *next; + long unsigned int index; + struct ftrace_profile records[0]; +}; + +struct ftrace_profile_stat { + atomic_t disabled; + struct hlist_head *hash; + struct ftrace_profile_page *pages; + struct ftrace_profile_page *start; + struct tracer_stat stat; +}; + +struct ftrace_func_probe { + struct ftrace_probe_ops *probe_ops; + struct ftrace_ops ops; + struct trace_array *tr; + struct list_head list; + void *data; + int ref; +}; + +struct ftrace_page { + struct ftrace_page *next; + struct dyn_ftrace *records; + int index; + int order; +}; + +struct ftrace_rec_iter { + struct ftrace_page *pg; + int index; +}; + +struct ftrace_iterator { + loff_t pos; + loff_t func_pos; + loff_t mod_pos; + struct ftrace_page *pg; + struct dyn_ftrace *func; + struct ftrace_func_probe *probe; + struct ftrace_func_entry *probe_entry; + struct trace_parser parser; + struct ftrace_hash *hash; + struct ftrace_ops *ops; + struct trace_array *tr; + struct list_head *mod_list; + int pidx; + int idx; + unsigned int flags; +}; + +struct ftrace_glob { + char *search; + unsigned int len; + int type; +}; + +struct ftrace_func_map { + struct ftrace_func_entry entry; + void *data; +}; + +struct ftrace_func_mapper { + struct ftrace_hash hash; +}; + +struct ftrace_mod_func { + struct list_head list; + char *name; + long unsigned int ip; + unsigned int size; +}; + +struct ftrace_mod_map { + struct callback_head rcu; + struct list_head list; + struct module *mod; + long unsigned int start_addr; + long unsigned int end_addr; + struct list_head funcs; + unsigned int num_funcs; +}; + +struct ftrace_init_func { + struct list_head list; + long unsigned int ip; +}; + +struct kallsyms_data { + long unsigned int *addrs; + const char **syms; + size_t cnt; + size_t found; +}; + +enum bpf_perf_event_type { + BPF_PERF_EVENT_UNSPEC = 0, + BPF_PERF_EVENT_UPROBE = 1, + BPF_PERF_EVENT_URETPROBE = 2, + BPF_PERF_EVENT_KPROBE = 3, + BPF_PERF_EVENT_KRETPROBE = 4, + BPF_PERF_EVENT_TRACEPOINT = 5, + BPF_PERF_EVENT_EVENT = 6, +}; + +enum bpf_stats_type { + BPF_STATS_RUN_TIME = 0, +}; + +struct bpf_spin_lock { + __u32 val; +}; + +struct bpf_tramp_run_ctx { + struct bpf_run_ctx run_ctx; + u64 bpf_cookie; + struct bpf_run_ctx *saved_run_ctx; +}; + +struct bpf_attach_target_info { + struct btf_func_model fmodel; + long int tgt_addr; + struct module *tgt_mod; + const char *tgt_name; + const struct btf_type *tgt_type; +}; + +struct bpf_tracing_link { + struct bpf_tramp_link link; + enum bpf_attach_type attach_type; + struct bpf_trampoline *trampoline; + struct bpf_prog *tgt_prog; +}; + +enum perf_bpf_event_type { + PERF_BPF_EVENT_UNKNOWN = 0, + PERF_BPF_EVENT_PROG_LOAD = 1, + PERF_BPF_EVENT_PROG_UNLOAD = 2, + PERF_BPF_EVENT_MAX = 3, +}; + +enum bpf_audit { + BPF_AUDIT_LOAD = 0, + BPF_AUDIT_UNLOAD = 1, + BPF_AUDIT_MAX = 2, +}; + +struct bpf_prog_kstats { + u64 nsecs; + u64 cnt; + u64 misses; +}; + +struct bpf_perf_link { + struct bpf_link link; + struct file *perf_file; +}; + +typedef u64 (*btf_bpf_sys_bpf)(int, union bpf_attr *, u32); + +typedef u64 (*btf_bpf_sys_close)(u32); + +typedef u64 (*btf_bpf_kallsyms_lookup_name)(const char *, int, int, u64 *); + +struct bpf_devmap_val { + __u32 ifindex; + union { + int fd; + __u32 id; + } bpf_prog; +}; + +struct xdp_dev_bulk_queue { + struct xdp_frame *q[16]; + struct list_head flush_node; + struct net_device *dev; + struct net_device *dev_rx; + struct bpf_prog *xdp_prog; + unsigned int count; +}; + +struct bpf_dtab_netdev { + struct net_device *dev; + struct hlist_node index_hlist; + struct bpf_prog *xdp_prog; + struct callback_head rcu; + unsigned int idx; + struct bpf_devmap_val val; +}; + +struct bpf_dtab { + struct bpf_map map; + struct bpf_dtab_netdev **netdev_map; + struct list_head list; + struct hlist_head *dev_index_head; + spinlock_t index_lock; + unsigned int items; + u32 n_buckets; +}; + +struct parallel_data; + +struct padata_priv { + struct list_head list; + struct parallel_data *pd; + int cb_cpu; + unsigned int seq_nr; + int info; + void (*parallel)(struct padata_priv *); + void (*serial)(struct padata_priv *); +}; + +struct padata_cpumask { + cpumask_var_t pcpu; + cpumask_var_t cbcpu; +}; + +struct padata_shell; + +struct padata_list; + +struct padata_serial_queue; + +struct parallel_data { + struct padata_shell *ps; + struct padata_list *reorder_list; + struct padata_serial_queue *squeue; + refcount_t refcnt; + unsigned int seq_nr; + unsigned int processed; + int cpu; + struct padata_cpumask cpumask; + struct work_struct reorder_work; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + spinlock_t lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct padata_list { + struct list_head list; + spinlock_t lock; +}; + +struct padata_serial_queue { + struct padata_list serial; + struct work_struct work; + struct parallel_data *pd; +}; + +struct padata_instance; + +struct padata_shell { + struct padata_instance *pinst; + struct parallel_data *pd; + struct parallel_data *opd; + struct list_head list; +}; + +struct padata_instance { + struct hlist_node cpu_online_node; + struct hlist_node cpu_dead_node; + struct workqueue_struct *parallel_wq; + struct workqueue_struct *serial_wq; + struct list_head pslist; + struct padata_cpumask cpumask; + struct kobject kobj; + struct mutex lock; + u8 flags; +}; + +struct padata_work { + struct work_struct pw_work; + struct list_head pw_list; + void *pw_data; +}; + +struct padata_mt_job_state { + spinlock_t lock; + struct completion completion; + struct padata_mt_job *job; + int nworks; + int nworks_fini; + long unsigned int chunk_size; +}; + +struct padata_sysfs_entry { + struct attribute attr; + ssize_t (*show)(struct padata_instance *, struct attribute *, char *); + ssize_t (*store)(struct padata_instance *, struct attribute *, const char *, size_t); +}; + +enum { + LRU_GEN_ANON = 0, + LRU_GEN_FILE = 1, +}; + +struct mlock_fbatch { + local_lock_t lock; + struct folio_batch fbatch; +}; + +struct dma_block { + struct dma_block *next_block; + dma_addr_t dma; +}; + +struct dma_pool { + struct list_head page_list; + spinlock_t lock; + struct dma_block *next_block; + size_t nr_blocks; + size_t nr_active; + size_t nr_pages; + struct device *dev; + unsigned int size; + unsigned int allocation; + unsigned int boundary; + char name[32]; + struct list_head pools; +}; + +struct dma_page { + struct list_head page_list; + void *vaddr; + dma_addr_t dma; +}; + +struct cgroup_of_peak { + long unsigned int value; + struct list_head list; +}; + +struct mem_cgroup_reclaim_cookie { + pg_data_t *pgdat; + int generation; +}; + +struct lruvec_stats_percpu { + long int state[30]; + long int state_prev[30]; +}; + +struct lruvec_stats { + long int state[30]; + long int state_local[30]; + long int state_pending[30]; +}; + +struct memcg_vmstats { + long int state[37]; + long unsigned int events[24]; + long int state_local[37]; + long unsigned int events_local[24]; + long int state_pending[37]; + long unsigned int events_pending[24]; + atomic64_t stats_updates; +}; + +struct memcg_vmstats_percpu { + unsigned int stats_updates; + struct memcg_vmstats_percpu *parent; + struct memcg_vmstats *vmstats; + long int state[37]; + long unsigned int events[24]; + long int state_prev[37]; + long unsigned int events_prev[24]; + long: 64; + long: 64; + long: 64; +}; + +struct slabobj_ext { + struct obj_cgroup *objcg; +}; + +struct memory_stat { + const char *name; + unsigned int idx; +}; + +struct memcg_stock_pcp { + local_lock_t stock_lock; + struct mem_cgroup *cached; + unsigned int nr_pages; + struct obj_cgroup *cached_objcg; + struct pglist_data *cached_pgdat; + unsigned int nr_bytes; + int nr_slab_reclaimable_b; + int nr_slab_unreclaimable_b; + struct work_struct work; + long unsigned int flags; +}; + +enum { + MEMORY_RECLAIM_SWAPPINESS = 0, + MEMORY_RECLAIM_NULL = 1, +}; + +struct uncharge_gather { + struct mem_cgroup *memcg; + long unsigned int nr_memory; + long unsigned int pgpgout; + long unsigned int nr_kmem; + int nid; +}; + +struct prepend_buffer { + char *buf; + int len; +}; + +typedef struct siginfo siginfo_t; + +struct arch_elf_state { + int flags; +}; + +struct gnu_property { + u32 pr_type; + u32 pr_datasz; +}; + +struct memelfnote { + const char *name; + int type; + unsigned int datasz; + void *data; +}; + +struct elf_thread_core_info { + struct elf_thread_core_info *next; + struct task_struct *task; + struct elf_prstatus prstatus; + struct memelfnote notes[0]; +}; + +struct elf_note_info { + struct elf_thread_core_info *thread; + struct memelfnote psinfo; + struct memelfnote signote; + struct memelfnote auxv; + struct memelfnote files; + siginfo_t csigdata; + size_t size; + int thread_notes; +}; + +struct iomap_swapfile_info { + struct iomap iomap; + struct swap_info_struct *sis; + uint64_t lowest_ppage; + uint64_t highest_ppage; + long unsigned int nr_pages; + int nr_extents; + struct file *file; +}; + +struct kernfs_fs_context { + struct kernfs_root *root; + void *ns_tag; + long unsigned int magic; + bool new_sb_created; +}; + +struct ext4_extent_idx { + __le32 ei_block; + __le32 ei_leaf_lo; + __le16 ei_leaf_hi; + __u16 ei_unused; +}; + +struct ext4_extent_header { + __le16 eh_magic; + __le16 eh_entries; + __le16 eh_max; + __le16 eh_depth; + __le32 eh_generation; +}; + +struct ext4_ext_path { + ext4_fsblk_t p_block; + __u16 p_depth; + __u16 p_maxdepth; + struct ext4_extent *p_ext; + struct ext4_extent_idx *p_idx; + struct ext4_extent_header *p_hdr; + struct buffer_head *p_bh; +}; + +enum { + attr_noop = 0, + attr_delayed_allocation_blocks = 1, + attr_session_write_kbytes = 2, + attr_lifetime_write_kbytes = 3, + attr_reserved_clusters = 4, + attr_sra_exceeded_retry_limit = 5, + attr_inode_readahead = 6, + attr_trigger_test_error = 7, + attr_first_error_time = 8, + attr_last_error_time = 9, + attr_clusters_in_group = 10, + attr_mb_order = 11, + attr_feature___2 = 12, + attr_pointer_pi = 13, + attr_pointer_ui___2 = 14, + attr_pointer_ul = 15, + attr_pointer_u64 = 16, + attr_pointer_u8 = 17, + attr_pointer_string = 18, + attr_pointer_atomic = 19, + attr_journal_task = 20, +}; + +enum { + ptr_explicit = 0, + ptr_ext4_sb_info_offset = 1, + ptr_ext4_super_block_offset = 2, +}; + +struct ext4_attr { + struct attribute attr; + short int attr_id; + short int attr_ptr; + short unsigned int attr_size; + union { + int offset; + void *explicit_ptr; + } u; +}; + +struct jbd2_journal_block_tail { + __be32 t_checksum; +}; + +struct trace_event_raw_jbd2_checkpoint { + struct trace_entry ent; + dev_t dev; + int result; + char __data[0]; +}; + +struct trace_event_raw_jbd2_commit { + struct trace_entry ent; + dev_t dev; + char sync_commit; + tid_t transaction; + char __data[0]; +}; + +struct trace_event_raw_jbd2_end_commit { + struct trace_entry ent; + dev_t dev; + char sync_commit; + tid_t transaction; + tid_t head; + char __data[0]; +}; + +struct trace_event_raw_jbd2_submit_inode_data { + struct trace_entry ent; + dev_t dev; + ino_t ino; + char __data[0]; +}; + +struct trace_event_raw_jbd2_handle_start_class { + struct trace_entry ent; + dev_t dev; + tid_t tid; + unsigned int type; + unsigned int line_no; + int requested_blocks; + char __data[0]; +}; + +struct trace_event_raw_jbd2_handle_extend { + struct trace_entry ent; + dev_t dev; + tid_t tid; + unsigned int type; + unsigned int line_no; + int buffer_credits; + int requested_blocks; + char __data[0]; +}; + +struct trace_event_raw_jbd2_handle_stats { + struct trace_entry ent; + dev_t dev; + tid_t tid; + unsigned int type; + unsigned int line_no; + int interval; + int sync; + int requested_blocks; + int dirtied_blocks; + char __data[0]; +}; + +struct trace_event_raw_jbd2_run_stats { + struct trace_entry ent; + dev_t dev; + tid_t tid; + long unsigned int wait; + long unsigned int request_delay; + long unsigned int running; + long unsigned int locked; + long unsigned int flushing; + long unsigned int logging; + __u32 handle_count; + __u32 blocks; + __u32 blocks_logged; + char __data[0]; +}; + +struct trace_event_raw_jbd2_checkpoint_stats { + struct trace_entry ent; + dev_t dev; + tid_t tid; + long unsigned int chp_time; + __u32 forced_to_close; + __u32 written; + __u32 dropped; + char __data[0]; +}; + +struct trace_event_raw_jbd2_update_log_tail { + struct trace_entry ent; + dev_t dev; + tid_t tail_sequence; + tid_t first_tid; + long unsigned int block_nr; + long unsigned int freed; + char __data[0]; +}; + +struct trace_event_raw_jbd2_write_superblock { + struct trace_entry ent; + dev_t dev; + blk_opf_t write_flags; + char __data[0]; +}; + +struct trace_event_raw_jbd2_lock_buffer_stall { + struct trace_entry ent; + dev_t dev; + long unsigned int stall_ms; + char __data[0]; +}; + +struct trace_event_raw_jbd2_journal_shrink { + struct trace_entry ent; + dev_t dev; + long unsigned int nr_to_scan; + long unsigned int count; + char __data[0]; +}; + +struct trace_event_raw_jbd2_shrink_scan_exit { + struct trace_entry ent; + dev_t dev; + long unsigned int nr_to_scan; + long unsigned int nr_shrunk; + long unsigned int count; + char __data[0]; +}; + +struct trace_event_raw_jbd2_shrink_checkpoint_list { + struct trace_entry ent; + dev_t dev; + tid_t first_tid; + tid_t tid; + tid_t last_tid; + long unsigned int nr_freed; + tid_t next_tid; + char __data[0]; +}; + +struct trace_event_data_offsets_jbd2_checkpoint {}; + +struct trace_event_data_offsets_jbd2_commit {}; + +struct trace_event_data_offsets_jbd2_end_commit {}; + +struct trace_event_data_offsets_jbd2_submit_inode_data {}; + +struct trace_event_data_offsets_jbd2_handle_start_class {}; + +struct trace_event_data_offsets_jbd2_handle_extend {}; + +struct trace_event_data_offsets_jbd2_handle_stats {}; + +struct trace_event_data_offsets_jbd2_run_stats {}; + +struct trace_event_data_offsets_jbd2_checkpoint_stats {}; + +struct trace_event_data_offsets_jbd2_update_log_tail {}; + +struct trace_event_data_offsets_jbd2_write_superblock {}; + +struct trace_event_data_offsets_jbd2_lock_buffer_stall {}; + +struct trace_event_data_offsets_jbd2_journal_shrink {}; + +struct trace_event_data_offsets_jbd2_shrink_scan_exit {}; + +struct trace_event_data_offsets_jbd2_shrink_checkpoint_list {}; + +typedef void (*btf_trace_jbd2_checkpoint)(void *, journal_t *, int); + +typedef void (*btf_trace_jbd2_start_commit)(void *, journal_t *, transaction_t *); + +typedef void (*btf_trace_jbd2_commit_locking)(void *, journal_t *, transaction_t *); + +typedef void (*btf_trace_jbd2_commit_flushing)(void *, journal_t *, transaction_t *); + +typedef void (*btf_trace_jbd2_commit_logging)(void *, journal_t *, transaction_t *); + +typedef void (*btf_trace_jbd2_drop_transaction)(void *, journal_t *, transaction_t *); + +typedef void (*btf_trace_jbd2_end_commit)(void *, journal_t *, transaction_t *); + +typedef void (*btf_trace_jbd2_submit_inode_data)(void *, struct inode *); + +typedef void (*btf_trace_jbd2_handle_start)(void *, dev_t, tid_t, unsigned int, unsigned int, int); + +typedef void (*btf_trace_jbd2_handle_restart)(void *, dev_t, tid_t, unsigned int, unsigned int, int); + +typedef void (*btf_trace_jbd2_handle_extend)(void *, dev_t, tid_t, unsigned int, unsigned int, int, int); + +typedef void (*btf_trace_jbd2_handle_stats)(void *, dev_t, tid_t, unsigned int, unsigned int, int, int, int, int); + +typedef void (*btf_trace_jbd2_run_stats)(void *, dev_t, tid_t, struct transaction_run_stats_s *); + +typedef void (*btf_trace_jbd2_checkpoint_stats)(void *, dev_t, tid_t, struct transaction_chp_stats_s *); + +typedef void (*btf_trace_jbd2_update_log_tail)(void *, journal_t *, tid_t, long unsigned int, long unsigned int); + +typedef void (*btf_trace_jbd2_write_superblock)(void *, journal_t *, blk_opf_t); + +typedef void (*btf_trace_jbd2_lock_buffer_stall)(void *, dev_t, long unsigned int); + +typedef void (*btf_trace_jbd2_shrink_count)(void *, journal_t *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_jbd2_shrink_scan_enter)(void *, journal_t *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_jbd2_shrink_scan_exit)(void *, journal_t *, long unsigned int, long unsigned int, long unsigned int); + +typedef void (*btf_trace_jbd2_shrink_checkpoint_list)(void *, journal_t *, tid_t, tid_t, tid_t, long unsigned int, tid_t); + +struct jbd2_stats_proc_session { + journal_t *journal; + struct transaction_stats_s *stats; + int start; + int max; +}; + +struct nfs_fscache_inode_auxdata { + s64 mtime_sec; + s64 mtime_nsec; + s64 ctime_sec; + s64 ctime_nsec; + u64 change_attr; +}; + +struct nfs_netfs_io_data { + refcount_t refcount; + struct netfs_io_subrequest *sreq; + atomic64_t transferred; + int error; +}; + +enum nfs3_createmode { + NFS3_CREATE_UNCHECKED = 0, + NFS3_CREATE_GUARDED = 1, + NFS3_CREATE_EXCLUSIVE = 2, +}; + +enum nfs3_ftype { + NF3NON = 0, + NF3REG = 1, + NF3DIR = 2, + NF3BLK = 3, + NF3CHR = 4, + NF3LNK = 5, + NF3SOCK = 6, + NF3FIFO = 7, + NF3BAD = 8, +}; + +typedef struct svc_fh svc_fh; + +struct nfsd_fhandle { + struct svc_fh fh; +}; + +struct nfsd3_sattrargs { + struct svc_fh fh; + struct iattr attrs; + int check_guard; + struct timespec64 guardtime; +}; + +struct nfsd3_diropargs { + struct svc_fh fh; + char *name; + unsigned int len; +}; + +struct nfsd3_accessargs { + struct svc_fh fh; + __u32 access; +}; + +struct nfsd3_readargs { + struct svc_fh fh; + __u64 offset; + __u32 count; +}; + +struct nfsd3_writeargs { + svc_fh fh; + __u64 offset; + __u32 count; + int stable; + __u32 len; + struct xdr_buf payload; +}; + +struct nfsd3_createargs { + struct svc_fh fh; + char *name; + unsigned int len; + int createmode; + struct iattr attrs; + __be32 *verf; +}; + +struct nfsd3_mknodargs { + struct svc_fh fh; + char *name; + unsigned int len; + __u32 ftype; + __u32 major; + __u32 minor; + struct iattr attrs; +}; + +struct nfsd3_renameargs { + struct svc_fh ffh; + char *fname; + unsigned int flen; + struct svc_fh tfh; + char *tname; + unsigned int tlen; +}; + +struct nfsd3_linkargs { + struct svc_fh ffh; + struct svc_fh tfh; + char *tname; + unsigned int tlen; +}; + +struct nfsd3_symlinkargs { + struct svc_fh ffh; + char *fname; + unsigned int flen; + char *tname; + unsigned int tlen; + struct iattr attrs; + struct kvec first; +}; + +struct nfsd3_readdirargs { + struct svc_fh fh; + __u64 cookie; + __u32 count; + __be32 *verf; +}; + +struct nfsd3_commitargs { + struct svc_fh fh; + __u64 offset; + __u32 count; +}; + +struct nfsd3_attrstat { + __be32 status; + struct svc_fh fh; + struct kstat stat; +}; + +struct nfsd3_diropres { + __be32 status; + struct svc_fh dirfh; + struct svc_fh fh; +}; + +struct nfsd3_accessres { + __be32 status; + struct svc_fh fh; + __u32 access; + struct kstat stat; +}; + +struct nfsd3_readlinkres { + __be32 status; + struct svc_fh fh; + __u32 len; + struct page **pages; +}; + +struct nfsd3_readres { + __be32 status; + struct svc_fh fh; + long unsigned int count; + __u32 eof; + struct page **pages; +}; + +struct nfsd3_writeres { + __be32 status; + struct svc_fh fh; + long unsigned int count; + int committed; + __be32 verf[2]; +}; + +struct nfsd3_renameres { + __be32 status; + struct svc_fh ffh; + struct svc_fh tfh; +}; + +struct nfsd3_linkres { + __be32 status; + struct svc_fh tfh; + struct svc_fh fh; +}; + +struct nfsd3_readdirres { + __be32 status; + struct svc_fh fh; + __be32 verf[2]; + struct xdr_stream xdr; + struct xdr_buf dirlist; + struct svc_fh scratch; + struct readdir_cd common; + unsigned int cookie_offset; + struct svc_rqst *rqstp; +}; + +struct nfsd3_fsstatres { + __be32 status; + struct kstatfs stats; + __u32 invarsec; +}; + +struct nfsd3_fsinfores { + __be32 status; + __u32 f_rtmax; + __u32 f_rtpref; + __u32 f_rtmult; + __u32 f_wtmax; + __u32 f_wtpref; + __u32 f_wtmult; + __u32 f_dtpref; + __u64 f_maxfilesize; + __u32 f_properties; +}; + +struct nfsd3_pathconfres { + __be32 status; + __u32 p_link_max; + __u32 p_name_max; + __u32 p_no_trunc; + __u32 p_chown_restricted; + __u32 p_case_insensitive; + __u32 p_case_preserving; +}; + +struct nfsd3_commitres { + __be32 status; + struct svc_fh fh; + __be32 verf[2]; +}; + +struct smb2_create_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; + __u8 OplockLevel; + __u8 Flags; + __le32 CreateAction; + __le64 CreationTime; + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le64 AllocationSize; + __le64 EndofFile; + __le32 FileAttributes; + __le32 Reserved2; + __u64 PersistentFileId; + __u64 VolatileFileId; + __le32 CreateContextsOffset; + __le32 CreateContextsLength; + __u8 Buffer[0]; +}; + +struct smb2_query_info_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 OutputBufferOffset; + __le32 OutputBufferLength; + __u8 Buffer[0]; +}; + +struct create_posix_rsp { + u32 nlink; + u32 reparse_tag; + u32 mode; + struct smb_sid owner; + struct smb_sid group; +}; + +struct cached_dirent { + struct list_head entry; + char *name; + int namelen; + loff_t pos; + struct cifs_fattr fattr; +}; + +struct cached_dir_dentry { + struct list_head entry; + struct dentry *dentry; +}; + +struct smb2_ioctl_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 Reserved; + __le32 CtlCode; + __u64 PersistentFileId; + __u64 VolatileFileId; + __le32 InputOffset; + __le32 InputCount; + __le32 OutputOffset; + __le32 OutputCount; + __le32 Flags; + __le32 Reserved2; + __u8 Buffer[0]; +}; + +struct smb2_file_rename_info { + __u8 ReplaceIfExists; + __u8 Reserved[7]; + __u64 RootDirectory; + __le32 FileNameLength; + char FileName[0]; +} __attribute__((packed)); + +struct smb2_file_link_info { + __u8 ReplaceIfExists; + __u8 Reserved[7]; + __u64 RootDirectory; + __le32 FileNameLength; + char FileName[0]; +} __attribute__((packed)); + +struct smb2_file_full_ea_info { + __le32 next_entry_offset; + __u8 flags; + __u8 ea_name_length; + __le16 ea_value_length; + char ea_data[0]; +}; + +struct smb2_compound_vars { + struct cifs_open_parms oparms; + struct kvec rsp_iov[7]; + struct smb_rqst rqst[7]; + struct kvec open_iov[9]; + struct kvec qi_iov; + struct kvec io_iov[2]; + struct kvec si_iov[3]; + struct kvec close_iov; + struct smb2_file_rename_info rename_info; + struct smb2_file_link_info link_info; + struct kvec ea_iov; +}; + +enum smb2_compound_ops { + SMB2_OP_SET_DELETE = 1, + SMB2_OP_SET_INFO = 2, + SMB2_OP_QUERY_INFO = 3, + SMB2_OP_QUERY_DIR = 4, + SMB2_OP_MKDIR = 5, + SMB2_OP_RENAME = 6, + SMB2_OP_DELETE = 7, + SMB2_OP_HARDLINK = 8, + SMB2_OP_SET_EOF = 9, + SMB2_OP_RMDIR = 10, + SMB2_OP_POSIX_QUERY_INFO = 11, + SMB2_OP_SET_REPARSE = 12, + SMB2_OP_GET_REPARSE = 13, + SMB2_OP_QUERY_WSL_EA = 14, +}; + +struct wsl_query_ea { + __le32 next; + __u8 name_len; + __u8 name[7]; +}; + +enum IO_REPARSE_TAG { + IO_REPARSE_TAG_SYMBOLIC_LINK = 0, + IO_REPARSE_TAG_NAME_SURROGATE = 536870912, + IO_REPARSE_TAG_MICROSOFT = 2147483648, + IO_REPARSE_TAG_MOUNT_POINT = 2684354563, + IO_REPARSE_TAG_SYMLINK = 2684354572, + IO_REPARSE_TAG_HSM = 3221225476, + IO_REPARSE_TAG_SIS = 2147483655, + IO_REPARSE_TAG_DEDUP = 2147483667, + IO_REPARSE_TAG_COMPRESS = 2147483671, + IO_REPARSE_TAG_DFS = 2147483658, + IO_REPARSE_TAG_FILTER_MANAGER = 2147483659, + IO_REPARSE_TAG_IFSTEST_CONGRUENT = 9, + IO_REPARSE_TAG_ARKIVIO = 12, + IO_REPARSE_TAG_SOLUTIONSOFT = 536870925, + IO_REPARSE_TAG_COMMVAULT = 14, + IO_REPARSE_TAG_CLOUD = 2415919130, + IO_REPARSE_TAG_CLOUD_1 = 2415923226, + IO_REPARSE_TAG_CLOUD_2 = 2415927322, + IO_REPARSE_TAG_CLOUD_3 = 2415931418, + IO_REPARSE_TAG_CLOUD_4 = 2415935514, + IO_REPARSE_TAG_CLOUD_5 = 2415939610, + IO_REPARSE_TAG_CLOUD_6 = 2415943706, + IO_REPARSE_TAG_CLOUD_7 = 2415947802, + IO_REPARSE_TAG_CLOUD_8 = 2415951898, + IO_REPARSE_TAG_CLOUD_9 = 2415955994, + IO_REPARSE_TAG_CLOUD_A = 2415960090, + IO_REPARSE_TAG_CLOUD_B = 2415964186, + IO_REPARSE_TAG_CLOUD_C = 2415968282, + IO_REPARSE_TAG_CLOUD_D = 2415972378, + IO_REPARSE_TAG_CLOUD_E = 2415976474, + IO_REPARSE_TAG_CLOUD_F = 2415980570, +}; + +struct REPARSE_DATA_BUFFER { + __le32 ReparseTag; + __le16 ReparseDataLength; + __le16 Reserved; + union { + struct { + __le16 SubstituteNameOffset; + __le16 SubstituteNameLength; + __le16 PrintNameOffset; + __le16 PrintNameLength; + __le16 PathBuffer[0]; + } MountPointReparseBuffer; + struct { + __le16 SubstituteNameOffset; + __le16 SubstituteNameLength; + __le16 PrintNameOffset; + __le16 PrintNameLength; + __le32 Flags; + __le16 PathBuffer[0]; + } SymbolicLinkReparseBuffer; + struct { + __le32 WofVersion; + __le32 WofProvider; + __le32 ProviderVer; + __le32 CompressionFormat; + } CompressReparseBuffer; + struct { + u8 DataBuffer[1]; + } GenericReparseBuffer; + }; +}; + +enum REPARSE_SIGN { + REPARSE_NONE = 0, + REPARSE_COMPRESSED = 1, + REPARSE_DEDUPLICATED = 2, + REPARSE_LINK = 3, +}; + +struct autofs_packet_hdr { + int proto_version; + int type; +}; + +struct autofs_packet_missing { + struct autofs_packet_hdr hdr; + autofs_wqt_t wait_queue_token; + int len; + char name[256]; +}; + +struct autofs_packet_expire { + struct autofs_packet_hdr hdr; + int len; + char name[256]; +}; + +enum autofs_notify { + NFY_NONE = 0, + NFY_MOUNT = 1, + NFY_EXPIRE = 2, +}; + +struct autofs_packet_expire_multi { + struct autofs_packet_hdr hdr; + autofs_wqt_t wait_queue_token; + int len; + char name[256]; +}; + +union autofs_packet_union { + struct autofs_packet_hdr hdr; + struct autofs_packet_missing missing; + struct autofs_packet_expire expire; + struct autofs_packet_expire_multi expire_multi; +}; + +struct autofs_v5_packet { + struct autofs_packet_hdr hdr; + autofs_wqt_t wait_queue_token; + __u32 dev; + __u64 ino; + __u32 uid; + __u32 gid; + __u32 pid; + __u32 tgid; + __u32 len; + char name[256]; +}; + +typedef struct autofs_v5_packet autofs_packet_missing_indirect_t; + +typedef struct autofs_v5_packet autofs_packet_expire_indirect_t; + +typedef struct autofs_v5_packet autofs_packet_missing_direct_t; + +typedef struct autofs_v5_packet autofs_packet_expire_direct_t; + +union autofs_v5_packet_union { + struct autofs_packet_hdr hdr; + struct autofs_v5_packet v5_packet; + autofs_packet_missing_indirect_t missing_indirect; + autofs_packet_expire_indirect_t expire_indirect; + autofs_packet_missing_direct_t missing_direct; + autofs_packet_expire_direct_t expire_direct; +}; + +struct cuse_init_in { + uint32_t major; + uint32_t minor; + uint32_t unused; + uint32_t flags; +}; + +struct cuse_init_out { + uint32_t major; + uint32_t minor; + uint32_t unused; + uint32_t flags; + uint32_t max_read; + uint32_t max_write; + uint32_t dev_major; + uint32_t dev_minor; + uint32_t spare[10]; +}; + +struct fuse_io_priv { + struct kref refcnt; + int async; + spinlock_t lock; + unsigned int reqs; + ssize_t bytes; + size_t size; + __u64 offset; + bool write; + bool should_dirty; + int err; + struct kiocb *iocb; + struct completion *done; + bool blocking; +}; + +struct cuse_conn { + struct list_head list; + struct fuse_mount fm; + struct fuse_conn fc; + struct cdev *cdev; + struct device *dev; + bool unrestricted_ioctl; +}; + +struct cuse_devinfo { + const char *name; +}; + +struct cuse_init_args { + struct fuse_args_pages ap; + struct cuse_init_in in; + struct cuse_init_out out; + struct page *page; + struct fuse_page_desc desc; +}; + +struct xfs_da3_node_hdr { + struct xfs_da3_blkinfo info; + __be16 __count; + __be16 __level; + __be32 __pad32; +}; + +typedef struct xfs_da_intnode xfs_da_intnode_t; + +struct xfs_da3_intnode { + struct xfs_da3_node_hdr hdr; + struct xfs_da_node_entry __btree[0]; +}; + +struct xfs_dsymlink_hdr { + __be32 sl_magic; + __be32 sl_offset; + __be32 sl_bytes; + __be32 sl_crc; + uuid_t sl_uuid; + __be64 sl_owner; + __be64 sl_blkno; + __be64 sl_lsn; +}; + +enum layout_break_reason { + BREAK_WRITE = 0, + BREAK_UNMAP = 1, +}; + +struct extent_inode_elem; + +struct prelim_ref { + struct rb_node rbnode; + u64 root_id; + struct btrfs_key key_for_search; + u8 level; + int count; + struct extent_inode_elem *inode_list; + u64 parent; + u64 wanted_disk_byte; +}; + +struct btrfs_device_info { + struct btrfs_device *dev; + u64 dev_offset; + u64 max_avail; + u64 total_avail; +}; + +struct raid56_bio_trace_info { + u64 devid; + u32 offset; + u8 stripe_nr; +}; + +enum btrfs_extent_allocation_policy { + BTRFS_EXTENT_ALLOC_CLUSTERED = 0, + BTRFS_EXTENT_ALLOC_ZONED = 1, +}; + +struct find_free_extent_ctl { + u64 ram_bytes; + u64 num_bytes; + u64 min_alloc_size; + u64 empty_size; + u64 flags; + int delalloc; + u64 search_start; + u64 empty_cluster; + struct btrfs_free_cluster *last_ptr; + bool use_cluster; + bool have_caching_bg; + bool orig_have_caching_bg; + bool for_treelog; + bool for_data_reloc; + int index; + int loop; + bool retry_uncached; + int cached; + u64 max_extent_size; + u64 total_free_space; + u64 found_offset; + u64 hint_byte; + enum btrfs_extent_allocation_policy policy; + bool hinted; + enum btrfs_block_group_size_class size_class; +}; + +struct trace_event_raw_btrfs_transaction_commit { + struct trace_entry ent; + u8 fsid[16]; + u64 generation; + u64 root_objectid; + char __data[0]; +}; + +struct trace_event_raw_btrfs__inode { + struct trace_entry ent; + u8 fsid[16]; + u64 ino; + u64 blocks; + u64 disk_i_size; + u64 generation; + u64 last_trans; + u64 logged_trans; + u64 root_objectid; + char __data[0]; +}; + +struct trace_event_raw_btrfs_get_extent { + struct trace_entry ent; + u8 fsid[16]; + u64 root_objectid; + u64 ino; + u64 start; + u64 len; + u32 flags; + int refs; + char __data[0]; +}; + +struct trace_event_raw_btrfs_handle_em_exist { + struct trace_entry ent; + u8 fsid[16]; + u64 e_start; + u64 e_len; + u64 map_start; + u64 map_len; + u64 start; + u64 len; + char __data[0]; +}; + +struct trace_event_raw_btrfs__file_extent_item_regular { + struct trace_entry ent; + u8 fsid[16]; + u64 root_obj; + u64 ino; + loff_t isize; + u64 disk_isize; + u64 num_bytes; + u64 ram_bytes; + u64 disk_bytenr; + u64 disk_num_bytes; + u64 extent_offset; + u8 extent_type; + u8 compression; + u64 extent_start; + u64 extent_end; + char __data[0]; +}; + +struct trace_event_raw_btrfs__file_extent_item_inline { + struct trace_entry ent; + u8 fsid[16]; + u64 root_obj; + u64 ino; + loff_t isize; + u64 disk_isize; + u8 extent_type; + u8 compression; + u64 extent_start; + u64 extent_end; + char __data[0]; +}; + +struct trace_event_raw_btrfs__ordered_extent { + struct trace_entry ent; + u8 fsid[16]; + u64 ino; + u64 file_offset; + u64 start; + u64 len; + u64 disk_len; + u64 bytes_left; + long unsigned int flags; + int compress_type; + int refs; + u64 root_objectid; + u64 truncated_len; + char __data[0]; +}; + +struct trace_event_raw_btrfs_finish_ordered_extent { + struct trace_entry ent; + u8 fsid[16]; + u64 ino; + u64 start; + u64 len; + bool uptodate; + u64 root_objectid; + char __data[0]; +}; + +struct trace_event_raw_btrfs__writepage { + struct trace_entry ent; + u8 fsid[16]; + u64 ino; + long unsigned int index; + long int nr_to_write; + long int pages_skipped; + loff_t range_start; + loff_t range_end; + char for_kupdate; + char for_reclaim; + char range_cyclic; + long unsigned int writeback_index; + u64 root_objectid; + char __data[0]; +}; + +struct trace_event_raw_btrfs_writepage_end_io_hook { + struct trace_entry ent; + u8 fsid[16]; + u64 ino; + u64 start; + u64 end; + int uptodate; + u64 root_objectid; + char __data[0]; +}; + +struct trace_event_raw_btrfs_sync_file { + struct trace_entry ent; + u8 fsid[16]; + u64 ino; + u64 parent; + int datasync; + u64 root_objectid; + char __data[0]; +}; + +struct trace_event_raw_btrfs_sync_fs { + struct trace_entry ent; + u8 fsid[16]; + int wait; + char __data[0]; +}; + +struct trace_event_raw_btrfs_add_block_group { + struct trace_entry ent; + u8 fsid[16]; + u64 offset; + u64 size; + u64 flags; + u64 bytes_used; + u64 bytes_super; + int create; + char __data[0]; +}; + +struct trace_event_raw_btrfs_delayed_tree_ref { + struct trace_entry ent; + u8 fsid[16]; + u64 bytenr; + u64 num_bytes; + int action; + u64 parent; + u64 ref_root; + int level; + int type; + u64 seq; + char __data[0]; +}; + +struct trace_event_raw_btrfs_delayed_data_ref { + struct trace_entry ent; + u8 fsid[16]; + u64 bytenr; + u64 num_bytes; + int action; + u64 parent; + u64 ref_root; + u64 owner; + u64 offset; + int type; + u64 seq; + char __data[0]; +}; + +struct trace_event_raw_btrfs_delayed_ref_head { + struct trace_entry ent; + u8 fsid[16]; + u64 bytenr; + u64 num_bytes; + int action; + int is_data; + char __data[0]; +}; + +struct trace_event_raw_btrfs__chunk { + struct trace_entry ent; + u8 fsid[16]; + int num_stripes; + u64 type; + int sub_stripes; + u64 offset; + u64 size; + u64 root_objectid; + char __data[0]; +}; + +struct trace_event_raw_btrfs_cow_block { + struct trace_entry ent; + u8 fsid[16]; + u64 root_objectid; + u64 buf_start; + int refs; + u64 cow_start; + int buf_level; + int cow_level; + char __data[0]; +}; + +struct trace_event_raw_btrfs_space_reservation { + struct trace_entry ent; + u8 fsid[16]; + u32 __data_loc_type; + u64 val; + u64 bytes; + int reserve; + char __data[0]; +}; + +struct trace_event_raw_btrfs_trigger_flush { + struct trace_entry ent; + u8 fsid[16]; + u64 flags; + u64 bytes; + int flush; + u32 __data_loc_reason; + char __data[0]; +}; + +struct trace_event_raw_btrfs_flush_space { + struct trace_entry ent; + u8 fsid[16]; + u64 flags; + u64 num_bytes; + int state; + int ret; + bool for_preempt; + char __data[0]; +}; + +struct trace_event_raw_btrfs__reserved_extent { + struct trace_entry ent; + u8 fsid[16]; + u64 start; + u64 len; + char __data[0]; +}; + +struct trace_event_raw_find_free_extent { + struct trace_entry ent; + u8 fsid[16]; + u64 root_objectid; + u64 num_bytes; + u64 empty_size; + u64 flags; + char __data[0]; +}; + +struct trace_event_raw_find_free_extent_search_loop { + struct trace_entry ent; + u8 fsid[16]; + u64 root_objectid; + u64 num_bytes; + u64 empty_size; + u64 flags; + u64 loop; + char __data[0]; +}; + +struct trace_event_raw_find_free_extent_have_block_group { + struct trace_entry ent; + u8 fsid[16]; + u64 root_objectid; + u64 num_bytes; + u64 empty_size; + u64 flags; + u64 loop; + bool hinted; + u64 bg_start; + u64 bg_flags; + char __data[0]; +}; + +struct trace_event_raw_btrfs__reserve_extent { + struct trace_entry ent; + u8 fsid[16]; + u64 bg_objectid; + u64 flags; + int bg_size_class; + u64 start; + u64 len; + u64 loop; + bool hinted; + int size_class; + char __data[0]; +}; + +struct trace_event_raw_btrfs_find_cluster { + struct trace_entry ent; + u8 fsid[16]; + u64 bg_objectid; + u64 flags; + u64 start; + u64 bytes; + u64 empty_size; + u64 min_bytes; + char __data[0]; +}; + +struct trace_event_raw_btrfs_failed_cluster_setup { + struct trace_entry ent; + u8 fsid[16]; + u64 bg_objectid; + char __data[0]; +}; + +struct trace_event_raw_btrfs_setup_cluster { + struct trace_entry ent; + u8 fsid[16]; + u64 bg_objectid; + u64 flags; + u64 start; + u64 max_size; + u64 size; + int bitmap; + char __data[0]; +}; + +struct trace_event_raw_alloc_extent_state { + struct trace_entry ent; + const struct extent_state *state; + long unsigned int mask; + const void *ip; + char __data[0]; +}; + +struct trace_event_raw_free_extent_state { + struct trace_entry ent; + const struct extent_state *state; + const void *ip; + char __data[0]; +}; + +struct trace_event_raw_btrfs__work { + struct trace_entry ent; + u8 fsid[16]; + const void *work; + const void *wq; + const void *func; + const void *ordered_func; + const void *normal_work; + char __data[0]; +}; + +struct trace_event_raw_btrfs__work__done { + struct trace_entry ent; + u8 fsid[16]; + const void *wtag; + char __data[0]; +}; + +struct trace_event_raw_btrfs_workqueue { + struct trace_entry ent; + u8 fsid[16]; + const void *wq; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_btrfs_workqueue_done { + struct trace_entry ent; + u8 fsid[16]; + const void *wq; + char __data[0]; +}; + +struct trace_event_raw_btrfs__qgroup_rsv_data { + struct trace_entry ent; + u8 fsid[16]; + u64 rootid; + u64 ino; + u64 start; + u64 len; + u64 reserved; + int op; + char __data[0]; +}; + +struct trace_event_raw_btrfs_qgroup_extent { + struct trace_entry ent; + u8 fsid[16]; + u64 bytenr; + u64 num_bytes; + char __data[0]; +}; + +struct trace_event_raw_qgroup_num_dirty_extents { + struct trace_entry ent; + u8 fsid[16]; + u64 transid; + u64 num_dirty_extents; + char __data[0]; +}; + +struct trace_event_raw_btrfs_qgroup_account_extent { + struct trace_entry ent; + u8 fsid[16]; + u64 transid; + u64 bytenr; + u64 num_bytes; + u64 nr_old_roots; + u64 nr_new_roots; + char __data[0]; +}; + +struct trace_event_raw_qgroup_update_counters { + struct trace_entry ent; + u8 fsid[16]; + u64 qgid; + u64 old_rfer; + u64 old_excl; + u64 cur_old_count; + u64 cur_new_count; + char __data[0]; +}; + +struct trace_event_raw_qgroup_update_reserve { + struct trace_entry ent; + u8 fsid[16]; + u64 qgid; + u64 cur_reserved; + s64 diff; + int type; + char __data[0]; +}; + +struct trace_event_raw_qgroup_meta_reserve { + struct trace_entry ent; + u8 fsid[16]; + u64 refroot; + s64 diff; + int type; + char __data[0]; +}; + +struct trace_event_raw_qgroup_meta_convert { + struct trace_entry ent; + u8 fsid[16]; + u64 refroot; + s64 diff; + char __data[0]; +}; + +struct trace_event_raw_qgroup_meta_free_all_pertrans { + struct trace_entry ent; + u8 fsid[16]; + u64 refroot; + s64 diff; + int type; + char __data[0]; +}; + +struct trace_event_raw_btrfs__prelim_ref { + struct trace_entry ent; + u8 fsid[16]; + u64 root_id; + u64 objectid; + u8 type; + u64 offset; + int level; + int old_count; + u64 parent; + u64 bytenr; + int mod_count; + u64 tree_size; + char __data[0]; +}; + +struct trace_event_raw_btrfs_inode_mod_outstanding_extents { + struct trace_entry ent; + u8 fsid[16]; + u64 root_objectid; + u64 ino; + int mod; + unsigned int outstanding; + char __data[0]; +}; + +struct trace_event_raw_btrfs__block_group { + struct trace_entry ent; + u8 fsid[16]; + u64 bytenr; + u64 len; + u64 used; + u64 flags; + char __data[0]; +}; + +struct trace_event_raw_btrfs_set_extent_bit { + struct trace_entry ent; + u8 fsid[16]; + unsigned int owner; + u64 ino; + u64 rootid; + u64 start; + u64 len; + unsigned int set_bits; + char __data[0]; +}; + +struct trace_event_raw_btrfs_clear_extent_bit { + struct trace_entry ent; + u8 fsid[16]; + unsigned int owner; + u64 ino; + u64 rootid; + u64 start; + u64 len; + unsigned int clear_bits; + char __data[0]; +}; + +struct trace_event_raw_btrfs_convert_extent_bit { + struct trace_entry ent; + u8 fsid[16]; + unsigned int owner; + u64 ino; + u64 rootid; + u64 start; + u64 len; + unsigned int set_bits; + unsigned int clear_bits; + char __data[0]; +}; + +struct trace_event_raw_btrfs_dump_space_info { + struct trace_entry ent; + u8 fsid[16]; + u64 flags; + u64 total_bytes; + u64 bytes_used; + u64 bytes_pinned; + u64 bytes_reserved; + u64 bytes_may_use; + u64 bytes_readonly; + u64 reclaim_size; + int clamp; + u64 global_reserved; + u64 trans_reserved; + u64 delayed_refs_reserved; + u64 delayed_reserved; + u64 free_chunk_space; + u64 delalloc_bytes; + u64 ordered_bytes; + char __data[0]; +}; + +struct trace_event_raw_btrfs_reserve_ticket { + struct trace_entry ent; + u8 fsid[16]; + u64 flags; + u64 bytes; + u64 start_ns; + int flush; + int error; + char __data[0]; +}; + +struct trace_event_raw_btrfs_sleep_tree_lock { + struct trace_entry ent; + u8 fsid[16]; + u64 block; + u64 generation; + u64 start_ns; + u64 end_ns; + u64 diff_ns; + u64 owner; + int is_log_tree; + char __data[0]; +}; + +struct trace_event_raw_btrfs_locking_events { + struct trace_entry ent; + u8 fsid[16]; + u64 block; + u64 generation; + u64 owner; + int is_log_tree; + char __data[0]; +}; + +struct trace_event_raw_btrfs__space_info_update { + struct trace_entry ent; + u8 fsid[16]; + u64 type; + u64 old; + s64 diff; + char __data[0]; +}; + +struct trace_event_raw_btrfs_raid56_bio { + struct trace_entry ent; + u8 fsid[16]; + u64 full_stripe; + u64 physical; + u64 devid; + u32 offset; + u32 len; + u8 opf; + u8 total_stripes; + u8 real_stripes; + u8 nr_data; + u8 stripe_nr; + char __data[0]; +}; + +struct trace_event_raw_btrfs_insert_one_raid_extent { + struct trace_entry ent; + u8 fsid[16]; + u64 logical; + u64 length; + int num_stripes; + char __data[0]; +}; + +struct trace_event_raw_btrfs_raid_extent_delete { + struct trace_entry ent; + u8 fsid[16]; + u64 start; + u64 end; + u64 found_start; + u64 found_end; + char __data[0]; +}; + +struct trace_event_raw_btrfs_get_raid_extent_offset { + struct trace_entry ent; + u8 fsid[16]; + u64 logical; + u64 length; + u64 physical; + u64 devid; + char __data[0]; +}; + +struct trace_event_raw_btrfs_extent_map_shrinker_count { + struct trace_entry ent; + u8 fsid[16]; + long int nr; + char __data[0]; +}; + +struct trace_event_raw_btrfs_extent_map_shrinker_scan_enter { + struct trace_entry ent; + u8 fsid[16]; + long int nr_to_scan; + long int nr; + u64 last_root_id; + u64 last_ino; + char __data[0]; +}; + +struct trace_event_raw_btrfs_extent_map_shrinker_scan_exit { + struct trace_entry ent; + u8 fsid[16]; + long int nr_dropped; + long int nr; + u64 last_root_id; + u64 last_ino; + char __data[0]; +}; + +struct trace_event_raw_btrfs_extent_map_shrinker_remove_em { + struct trace_entry ent; + u8 fsid[16]; + u64 ino; + u64 root_id; + u64 start; + u64 len; + u32 flags; + char __data[0]; +}; + +struct trace_event_data_offsets_btrfs_transaction_commit {}; + +struct trace_event_data_offsets_btrfs__inode {}; + +struct trace_event_data_offsets_btrfs_get_extent {}; + +struct trace_event_data_offsets_btrfs_handle_em_exist {}; + +struct trace_event_data_offsets_btrfs__file_extent_item_regular {}; + +struct trace_event_data_offsets_btrfs__file_extent_item_inline {}; + +struct trace_event_data_offsets_btrfs__ordered_extent {}; + +struct trace_event_data_offsets_btrfs_finish_ordered_extent {}; + +struct trace_event_data_offsets_btrfs__writepage {}; + +struct trace_event_data_offsets_btrfs_writepage_end_io_hook {}; + +struct trace_event_data_offsets_btrfs_sync_file {}; + +struct trace_event_data_offsets_btrfs_sync_fs {}; + +struct trace_event_data_offsets_btrfs_add_block_group {}; + +struct trace_event_data_offsets_btrfs_delayed_tree_ref {}; + +struct trace_event_data_offsets_btrfs_delayed_data_ref {}; + +struct trace_event_data_offsets_btrfs_delayed_ref_head {}; + +struct trace_event_data_offsets_btrfs__chunk {}; + +struct trace_event_data_offsets_btrfs_cow_block {}; + +struct trace_event_data_offsets_btrfs_space_reservation { + u32 type; + const void *type_ptr_; +}; + +struct trace_event_data_offsets_btrfs_trigger_flush { + u32 reason; + const void *reason_ptr_; +}; + +struct trace_event_data_offsets_btrfs_flush_space {}; + +struct trace_event_data_offsets_btrfs__reserved_extent {}; + +struct trace_event_data_offsets_find_free_extent {}; + +struct trace_event_data_offsets_find_free_extent_search_loop {}; + +struct trace_event_data_offsets_find_free_extent_have_block_group {}; + +struct trace_event_data_offsets_btrfs__reserve_extent {}; + +struct trace_event_data_offsets_btrfs_find_cluster {}; + +struct trace_event_data_offsets_btrfs_failed_cluster_setup {}; + +struct trace_event_data_offsets_btrfs_setup_cluster {}; + +struct trace_event_data_offsets_alloc_extent_state {}; + +struct trace_event_data_offsets_free_extent_state {}; + +struct trace_event_data_offsets_btrfs__work {}; + +struct trace_event_data_offsets_btrfs__work__done {}; + +struct trace_event_data_offsets_btrfs_workqueue { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_btrfs_workqueue_done {}; + +struct trace_event_data_offsets_btrfs__qgroup_rsv_data {}; + +struct trace_event_data_offsets_btrfs_qgroup_extent {}; + +struct trace_event_data_offsets_qgroup_num_dirty_extents {}; + +struct trace_event_data_offsets_btrfs_qgroup_account_extent {}; + +struct trace_event_data_offsets_qgroup_update_counters {}; + +struct trace_event_data_offsets_qgroup_update_reserve {}; + +struct trace_event_data_offsets_qgroup_meta_reserve {}; + +struct trace_event_data_offsets_qgroup_meta_convert {}; + +struct trace_event_data_offsets_qgroup_meta_free_all_pertrans {}; + +struct trace_event_data_offsets_btrfs__prelim_ref {}; + +struct trace_event_data_offsets_btrfs_inode_mod_outstanding_extents {}; + +struct trace_event_data_offsets_btrfs__block_group {}; + +struct trace_event_data_offsets_btrfs_set_extent_bit {}; + +struct trace_event_data_offsets_btrfs_clear_extent_bit {}; + +struct trace_event_data_offsets_btrfs_convert_extent_bit {}; + +struct trace_event_data_offsets_btrfs_dump_space_info {}; + +struct trace_event_data_offsets_btrfs_reserve_ticket {}; + +struct trace_event_data_offsets_btrfs_sleep_tree_lock {}; + +struct trace_event_data_offsets_btrfs_locking_events {}; + +struct trace_event_data_offsets_btrfs__space_info_update {}; + +struct trace_event_data_offsets_btrfs_raid56_bio {}; + +struct trace_event_data_offsets_btrfs_insert_one_raid_extent {}; + +struct trace_event_data_offsets_btrfs_raid_extent_delete {}; + +struct trace_event_data_offsets_btrfs_get_raid_extent_offset {}; + +struct trace_event_data_offsets_btrfs_extent_map_shrinker_count {}; + +struct trace_event_data_offsets_btrfs_extent_map_shrinker_scan_enter {}; + +struct trace_event_data_offsets_btrfs_extent_map_shrinker_scan_exit {}; + +struct trace_event_data_offsets_btrfs_extent_map_shrinker_remove_em {}; + +typedef void (*btf_trace_btrfs_transaction_commit)(void *, const struct btrfs_fs_info *); + +typedef void (*btf_trace_btrfs_inode_new)(void *, const struct inode *); + +typedef void (*btf_trace_btrfs_inode_request)(void *, const struct inode *); + +typedef void (*btf_trace_btrfs_inode_evict)(void *, const struct inode *); + +typedef void (*btf_trace_btrfs_get_extent)(void *, const struct btrfs_root *, const struct btrfs_inode *, const struct extent_map *); + +typedef void (*btf_trace_btrfs_handle_em_exist)(void *, const struct btrfs_fs_info *, const struct extent_map *, const struct extent_map *, u64, u64); + +typedef void (*btf_trace_btrfs_get_extent_show_fi_regular)(void *, const struct btrfs_inode *, const struct extent_buffer *, const struct btrfs_file_extent_item *, u64); + +typedef void (*btf_trace_btrfs_truncate_show_fi_regular)(void *, const struct btrfs_inode *, const struct extent_buffer *, const struct btrfs_file_extent_item *, u64); + +typedef void (*btf_trace_btrfs_get_extent_show_fi_inline)(void *, const struct btrfs_inode *, const struct extent_buffer *, const struct btrfs_file_extent_item *, int, u64); + +typedef void (*btf_trace_btrfs_truncate_show_fi_inline)(void *, const struct btrfs_inode *, const struct extent_buffer *, const struct btrfs_file_extent_item *, int, u64); + +typedef void (*btf_trace_btrfs_ordered_extent_add)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); + +typedef void (*btf_trace_btrfs_ordered_extent_remove)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); + +typedef void (*btf_trace_btrfs_ordered_extent_start)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); + +typedef void (*btf_trace_btrfs_ordered_extent_put)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); + +typedef void (*btf_trace_btrfs_ordered_extent_lookup)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); + +typedef void (*btf_trace_btrfs_ordered_extent_lookup_range)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); + +typedef void (*btf_trace_btrfs_ordered_extent_lookup_first_range)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); + +typedef void (*btf_trace_btrfs_ordered_extent_lookup_for_logging)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); + +typedef void (*btf_trace_btrfs_ordered_extent_lookup_first)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); + +typedef void (*btf_trace_btrfs_ordered_extent_split)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); + +typedef void (*btf_trace_btrfs_ordered_extent_dec_test_pending)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); + +typedef void (*btf_trace_btrfs_ordered_extent_mark_finished)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); + +typedef void (*btf_trace_btrfs_finish_ordered_extent)(void *, const struct btrfs_inode *, u64, u64, bool); + +typedef void (*btf_trace_extent_writepage)(void *, const struct folio *, const struct inode *, const struct writeback_control *); + +typedef void (*btf_trace_btrfs_writepage_end_io_hook)(void *, const struct btrfs_inode *, u64, u64, int); + +typedef void (*btf_trace_btrfs_sync_file)(void *, const struct file *, int); + +typedef void (*btf_trace_btrfs_sync_fs)(void *, const struct btrfs_fs_info *, int); + +typedef void (*btf_trace_btrfs_add_block_group)(void *, const struct btrfs_fs_info *, const struct btrfs_block_group *, int); + +typedef void (*btf_trace_add_delayed_tree_ref)(void *, const struct btrfs_fs_info *, const struct btrfs_delayed_ref_node *); + +typedef void (*btf_trace_run_delayed_tree_ref)(void *, const struct btrfs_fs_info *, const struct btrfs_delayed_ref_node *); + +typedef void (*btf_trace_add_delayed_data_ref)(void *, const struct btrfs_fs_info *, const struct btrfs_delayed_ref_node *); + +typedef void (*btf_trace_run_delayed_data_ref)(void *, const struct btrfs_fs_info *, const struct btrfs_delayed_ref_node *); + +typedef void (*btf_trace_add_delayed_ref_head)(void *, const struct btrfs_fs_info *, const struct btrfs_delayed_ref_head *, int); + +typedef void (*btf_trace_run_delayed_ref_head)(void *, const struct btrfs_fs_info *, const struct btrfs_delayed_ref_head *, int); + +typedef void (*btf_trace_btrfs_chunk_alloc)(void *, const struct btrfs_fs_info *, const struct btrfs_chunk_map *, u64, u64); + +typedef void (*btf_trace_btrfs_chunk_free)(void *, const struct btrfs_fs_info *, const struct btrfs_chunk_map *, u64, u64); + +typedef void (*btf_trace_btrfs_cow_block)(void *, const struct btrfs_root *, const struct extent_buffer *, const struct extent_buffer *); + +typedef void (*btf_trace_btrfs_space_reservation)(void *, const struct btrfs_fs_info *, const char *, u64, u64, int); + +typedef void (*btf_trace_btrfs_trigger_flush)(void *, const struct btrfs_fs_info *, u64, u64, int, const char *); + +typedef void (*btf_trace_btrfs_flush_space)(void *, const struct btrfs_fs_info *, u64, u64, int, int, bool); + +typedef void (*btf_trace_btrfs_reserved_extent_alloc)(void *, const struct btrfs_fs_info *, u64, u64); + +typedef void (*btf_trace_btrfs_reserved_extent_free)(void *, const struct btrfs_fs_info *, u64, u64); + +typedef void (*btf_trace_find_free_extent)(void *, const struct btrfs_root *, const struct find_free_extent_ctl *); + +typedef void (*btf_trace_find_free_extent_search_loop)(void *, const struct btrfs_root *, const struct find_free_extent_ctl *); + +typedef void (*btf_trace_find_free_extent_have_block_group)(void *, const struct btrfs_root *, const struct find_free_extent_ctl *, const struct btrfs_block_group *); + +typedef void (*btf_trace_btrfs_reserve_extent)(void *, const struct btrfs_block_group *, const struct find_free_extent_ctl *); + +typedef void (*btf_trace_btrfs_reserve_extent_cluster)(void *, const struct btrfs_block_group *, const struct find_free_extent_ctl *); + +typedef void (*btf_trace_btrfs_find_cluster)(void *, const struct btrfs_block_group *, u64, u64, u64, u64); + +typedef void (*btf_trace_btrfs_failed_cluster_setup)(void *, const struct btrfs_block_group *); + +typedef void (*btf_trace_btrfs_setup_cluster)(void *, const struct btrfs_block_group *, const struct btrfs_free_cluster *, u64, int); + +typedef void (*btf_trace_alloc_extent_state)(void *, const struct extent_state *, gfp_t, long unsigned int); + +typedef void (*btf_trace_free_extent_state)(void *, const struct extent_state *, long unsigned int); + +typedef void (*btf_trace_btrfs_work_queued)(void *, const struct btrfs_work *); + +typedef void (*btf_trace_btrfs_work_sched)(void *, const struct btrfs_work *); + +typedef void (*btf_trace_btrfs_all_work_done)(void *, const struct btrfs_fs_info *, const void *); + +typedef void (*btf_trace_btrfs_ordered_sched)(void *, const struct btrfs_work *); + +typedef void (*btf_trace_btrfs_workqueue_alloc)(void *, const struct btrfs_workqueue *, const char *); + +typedef void (*btf_trace_btrfs_workqueue_destroy)(void *, const struct btrfs_workqueue *); + +typedef void (*btf_trace_btrfs_qgroup_reserve_data)(void *, const struct inode *, u64, u64, u64, int); + +typedef void (*btf_trace_btrfs_qgroup_release_data)(void *, const struct inode *, u64, u64, u64, int); + +typedef void (*btf_trace_btrfs_qgroup_account_extents)(void *, const struct btrfs_fs_info *, const struct btrfs_qgroup_extent_record *); + +typedef void (*btf_trace_btrfs_qgroup_trace_extent)(void *, const struct btrfs_fs_info *, const struct btrfs_qgroup_extent_record *); + +typedef void (*btf_trace_qgroup_num_dirty_extents)(void *, const struct btrfs_fs_info *, u64, u64); + +typedef void (*btf_trace_btrfs_qgroup_account_extent)(void *, const struct btrfs_fs_info *, u64, u64, u64, u64, u64); + +typedef void (*btf_trace_qgroup_update_counters)(void *, const struct btrfs_fs_info *, const struct btrfs_qgroup *, u64, u64); + +typedef void (*btf_trace_qgroup_update_reserve)(void *, const struct btrfs_fs_info *, const struct btrfs_qgroup *, s64, int); + +typedef void (*btf_trace_qgroup_meta_reserve)(void *, const struct btrfs_root *, s64, int); + +typedef void (*btf_trace_qgroup_meta_convert)(void *, const struct btrfs_root *, s64); + +typedef void (*btf_trace_qgroup_meta_free_all_pertrans)(void *, struct btrfs_root *); + +typedef void (*btf_trace_btrfs_prelim_ref_merge)(void *, const struct btrfs_fs_info *, const struct prelim_ref *, const struct prelim_ref *, u64); + +typedef void (*btf_trace_btrfs_prelim_ref_insert)(void *, const struct btrfs_fs_info *, const struct prelim_ref *, const struct prelim_ref *, u64); + +typedef void (*btf_trace_btrfs_inode_mod_outstanding_extents)(void *, const struct btrfs_root *, u64, int, unsigned int); + +typedef void (*btf_trace_btrfs_remove_block_group)(void *, const struct btrfs_block_group *); + +typedef void (*btf_trace_btrfs_add_unused_block_group)(void *, const struct btrfs_block_group *); + +typedef void (*btf_trace_btrfs_add_reclaim_block_group)(void *, const struct btrfs_block_group *); + +typedef void (*btf_trace_btrfs_reclaim_block_group)(void *, const struct btrfs_block_group *); + +typedef void (*btf_trace_btrfs_skip_unused_block_group)(void *, const struct btrfs_block_group *); + +typedef void (*btf_trace_btrfs_set_extent_bit)(void *, const struct extent_io_tree *, u64, u64, unsigned int); + +typedef void (*btf_trace_btrfs_clear_extent_bit)(void *, const struct extent_io_tree *, u64, u64, unsigned int); + +typedef void (*btf_trace_btrfs_convert_extent_bit)(void *, const struct extent_io_tree *, u64, u64, unsigned int, unsigned int); + +typedef void (*btf_trace_btrfs_done_preemptive_reclaim)(void *, struct btrfs_fs_info *, const struct btrfs_space_info *); + +typedef void (*btf_trace_btrfs_fail_all_tickets)(void *, struct btrfs_fs_info *, const struct btrfs_space_info *); + +typedef void (*btf_trace_btrfs_reserve_ticket)(void *, const struct btrfs_fs_info *, u64, u64, u64, int, int); + +typedef void (*btf_trace_btrfs_tree_read_lock)(void *, const struct extent_buffer *, u64); + +typedef void (*btf_trace_btrfs_tree_lock)(void *, const struct extent_buffer *, u64); + +typedef void (*btf_trace_btrfs_tree_unlock)(void *, const struct extent_buffer *); + +typedef void (*btf_trace_btrfs_tree_read_unlock)(void *, const struct extent_buffer *); + +typedef void (*btf_trace_btrfs_tree_read_unlock_blocking)(void *, const struct extent_buffer *); + +typedef void (*btf_trace_btrfs_set_lock_blocking_read)(void *, const struct extent_buffer *); + +typedef void (*btf_trace_btrfs_set_lock_blocking_write)(void *, const struct extent_buffer *); + +typedef void (*btf_trace_btrfs_try_tree_read_lock)(void *, const struct extent_buffer *); + +typedef void (*btf_trace_btrfs_try_tree_write_lock)(void *, const struct extent_buffer *); + +typedef void (*btf_trace_btrfs_tree_read_lock_atomic)(void *, const struct extent_buffer *); + +typedef void (*btf_trace_update_bytes_may_use)(void *, const struct btrfs_fs_info *, const struct btrfs_space_info *, u64, s64); + +typedef void (*btf_trace_update_bytes_pinned)(void *, const struct btrfs_fs_info *, const struct btrfs_space_info *, u64, s64); + +typedef void (*btf_trace_update_bytes_zone_unusable)(void *, const struct btrfs_fs_info *, const struct btrfs_space_info *, u64, s64); + +typedef void (*btf_trace_raid56_read)(void *, const struct btrfs_raid_bio *, const struct bio *, const struct raid56_bio_trace_info *); + +typedef void (*btf_trace_raid56_write)(void *, const struct btrfs_raid_bio *, const struct bio *, const struct raid56_bio_trace_info *); + +typedef void (*btf_trace_btrfs_insert_one_raid_extent)(void *, const struct btrfs_fs_info *, u64, u64, int); + +typedef void (*btf_trace_btrfs_raid_extent_delete)(void *, const struct btrfs_fs_info *, u64, u64, u64, u64); + +typedef void (*btf_trace_btrfs_get_raid_extent_offset)(void *, const struct btrfs_fs_info *, u64, u64, u64, u64); + +typedef void (*btf_trace_btrfs_extent_map_shrinker_count)(void *, const struct btrfs_fs_info *, long int); + +typedef void (*btf_trace_btrfs_extent_map_shrinker_scan_enter)(void *, const struct btrfs_fs_info *, long int, long int, u64, u64); + +typedef void (*btf_trace_btrfs_extent_map_shrinker_scan_exit)(void *, const struct btrfs_fs_info *, long int, long int, u64, u64); + +typedef void (*btf_trace_btrfs_extent_map_shrinker_remove_em)(void *, const struct btrfs_inode *, const struct extent_map *); + +struct btrfs_fs_context { + char *subvol_name; + u64 subvol_objectid; + u64 max_inline; + u32 commit_interval; + u32 metadata_ratio; + u32 thread_pool_size; + long long unsigned int mount_opt; + long unsigned int compress_type: 4; + unsigned int compress_level; + refcount_t refs; +}; + +enum { + Opt_acl___5 = 0, + Opt_clear_cache = 1, + Opt_commit_interval = 2, + Opt_compress___2 = 3, + Opt_compress_force = 4, + Opt_compress_force_type = 5, + Opt_compress_type = 6, + Opt_degraded = 7, + Opt_device = 8, + Opt_fatal_errors = 9, + Opt_flushoncommit = 10, + Opt_max_inline = 11, + Opt_barrier___3 = 12, + Opt_datacow = 13, + Opt_datasum = 14, + Opt_defrag = 15, + Opt_discard___6 = 16, + Opt_discard_mode = 17, + Opt_ratio = 18, + Opt_rescan_uuid_tree = 19, + Opt_skip_balance = 20, + Opt_space_cache = 21, + Opt_space_cache_version = 22, + Opt_ssd = 23, + Opt_ssd_spread = 24, + Opt_subvol = 25, + Opt_subvol_empty = 26, + Opt_subvolid = 27, + Opt_thread_pool = 28, + Opt_treelog = 29, + Opt_user_subvol_rm_allowed = 30, + Opt_norecovery___3 = 31, + Opt_rescue = 32, + Opt_usebackuproot = 33, + Opt_nologreplay = 34, + Opt_enospc_debug = 35, + Opt_err___9 = 36, +}; + +enum { + Opt_fatal_errors_panic = 0, + Opt_fatal_errors_bug = 1, +}; + +enum { + Opt_discard_sync = 0, + Opt_discard_async = 1, +}; + +enum { + Opt_space_cache_v1 = 0, + Opt_space_cache_v2 = 1, +}; + +enum { + Opt_rescue_usebackuproot = 0, + Opt_rescue_nologreplay = 1, + Opt_rescue_ignorebadroots = 2, + Opt_rescue_ignoredatacsums = 3, + Opt_rescue_ignoremetacsums = 4, + Opt_rescue_ignoresuperflags = 5, + Opt_rescue_parameter_all = 6, +}; + +struct init_sequence { + int (*init_func)(void); + void (*exit_func)(void); +}; + +struct rb_simple_node { + struct rb_node rb_node; + u64 bytenr; +}; + +struct extent_inode_elem { + u64 inum; + u64 offset; + u64 num_bytes; + struct extent_inode_elem *next; +}; + +struct btrfs_backref_iter { + u64 bytenr; + struct btrfs_path *path; + struct btrfs_fs_info *fs_info; + struct btrfs_key cur_key; + u32 item_ptr; + u32 cur_ptr; + u32 end_ptr; +}; + +struct btrfs_backref_node { + struct { + struct rb_node rb_node; + u64 bytenr; + }; + u64 new_bytenr; + u64 owner; + struct list_head list; + struct list_head upper; + struct list_head lower; + struct btrfs_root *root; + struct extent_buffer *eb; + unsigned int level: 8; + unsigned int cowonly: 1; + unsigned int lowest: 1; + unsigned int locked: 1; + unsigned int processed: 1; + unsigned int checked: 1; + unsigned int pending: 1; + unsigned int detached: 1; + unsigned int is_reloc_root: 1; +}; + +struct btrfs_backref_edge { + struct list_head list[2]; + struct btrfs_backref_node *node[2]; +}; + +struct btrfs_backref_cache { + struct rb_root rb_root; + struct btrfs_backref_node *path[8]; + struct list_head pending[8]; + struct list_head leaves; + struct list_head changed; + struct list_head detached; + u64 last_trans; + int nr_nodes; + int nr_edges; + struct list_head pending_edge; + struct list_head useless_node; + struct btrfs_fs_info *fs_info; + bool is_reloc; +}; + +struct btrfs_seq_list { + struct list_head list; + u64 seq; +}; + +enum btrfs_inline_ref_type { + BTRFS_REF_TYPE_INVALID = 0, + BTRFS_REF_TYPE_BLOCK = 1, + BTRFS_REF_TYPE_DATA = 2, + BTRFS_REF_TYPE_ANY = 3, +}; + +struct preftree { + struct rb_root_cached root; + unsigned int count; +}; + +struct preftrees { + struct preftree direct; + struct preftree indirect; + struct preftree indirect_missing_keys; +}; + +struct share_check { + struct btrfs_backref_share_check_ctx *ctx; + struct btrfs_root *root; + u64 inum; + u64 data_bytenr; + u64 data_extent_gen; + int share_count; + int self_ref_count; + bool have_delayed_delete_refs; +}; + +struct f2fs_dir_entry { + __le32 hash_code; + __le32 ino; + __le16 name_len; + __u8 file_type; +} __attribute__((packed)); + +struct f2fs_filename { + const struct qstr *usr_fname; + struct fscrypt_str disk_name; + f2fs_hash_t hash; + struct fscrypt_str crypto_buf; +}; + +struct shmid_ds { + struct ipc_perm shm_perm; + int shm_segsz; + __kernel_old_time_t shm_atime; + __kernel_old_time_t shm_dtime; + __kernel_old_time_t shm_ctime; + __kernel_ipc_pid_t shm_cpid; + __kernel_ipc_pid_t shm_lpid; + short unsigned int shm_nattch; + short unsigned int shm_unused; + void *shm_unused2; + void *shm_unused3; +}; + +struct shmid64_ds { + struct ipc64_perm shm_perm; + __kernel_size_t shm_segsz; + long int shm_atime; + long int shm_dtime; + long int shm_ctime; + __kernel_pid_t shm_cpid; + __kernel_pid_t shm_lpid; + long unsigned int shm_nattch; + long unsigned int __unused4; + long unsigned int __unused5; +}; + +struct shminfo64 { + long unsigned int shmmax; + long unsigned int shmmin; + long unsigned int shmmni; + long unsigned int shmseg; + long unsigned int shmall; + long unsigned int __unused1; + long unsigned int __unused2; + long unsigned int __unused3; + long unsigned int __unused4; +}; + +struct shminfo { + int shmmax; + int shmmin; + int shmmni; + int shmseg; + int shmall; +}; + +struct shm_info { + int used_ids; + __kernel_ulong_t shm_tot; + __kernel_ulong_t shm_rss; + __kernel_ulong_t shm_swp; + __kernel_ulong_t swap_attempts; + __kernel_ulong_t swap_successes; +}; + +struct shared_policy {}; + +struct shmem_inode_info { + spinlock_t lock; + unsigned int seals; + long unsigned int flags; + long unsigned int alloced; + long unsigned int swapped; + union { + struct offset_ctx dir_offsets; + struct { + struct list_head shrinklist; + struct list_head swaplist; + }; + }; + struct timespec64 i_crtime; + struct shared_policy policy; + struct simple_xattrs xattrs; + long unsigned int fallocend; + unsigned int fsflags; + atomic_t stop_eviction; + struct inode vfs_inode; +}; + +struct shmid_kernel { + struct kern_ipc_perm shm_perm; + struct file *shm_file; + long unsigned int shm_nattch; + long unsigned int shm_segsz; + time64_t shm_atim; + time64_t shm_dtim; + time64_t shm_ctim; + struct pid *shm_cprid; + struct pid *shm_lprid; + struct ucounts *mlock_ucounts; + struct task_struct *shm_creator; + struct list_head shm_clist; + struct ipc_namespace *ns; + long: 64; + long: 64; + long: 64; +}; + +struct shm_file_data { + int id; + struct ipc_namespace *ns; + struct file *file; + const struct vm_operations_struct *vm_ops; +}; + +enum { + Opt_err___10 = 0, + Opt_enc = 1, + Opt_hash = 2, +}; + +struct crypto_shash_spawn { + struct crypto_spawn base; +}; + +struct chachapoly_instance_ctx { + struct crypto_skcipher_spawn chacha; + struct crypto_ahash_spawn poly; + unsigned int saltlen; +}; + +struct chachapoly_ctx { + struct crypto_skcipher *chacha; + struct crypto_ahash *poly; + unsigned int saltlen; + u8 salt[0]; +}; + +struct poly_req { + u8 pad[16]; + struct { + __le64 assoclen; + __le64 cryptlen; + } tail; + struct scatterlist src[1]; + struct ahash_request req; +}; + +struct chacha_req { + u8 iv[16]; + struct scatterlist src[1]; + struct skcipher_request req; +}; + +struct chachapoly_req_ctx { + struct scatterlist src[2]; + struct scatterlist dst[2]; + u8 key[32]; + u8 tag[16]; + unsigned int cryptlen; + unsigned int assoclen; + u32 flags; + union { + struct poly_req poly; + struct chacha_req chacha; + } u; +}; + +struct tea_ctx { + u32 KEY[4]; +}; + +struct xtea_ctx { + u32 KEY[4]; +}; + +struct authenc_esn_instance_ctx { + struct crypto_ahash_spawn auth; + struct crypto_skcipher_spawn enc; +}; + +struct crypto_authenc_esn_ctx { + unsigned int reqoff; + struct crypto_ahash *auth; + struct crypto_skcipher *enc; + struct crypto_sync_skcipher *null; +}; + +struct authenc_esn_request_ctx { + struct scatterlist src[2]; + struct scatterlist dst[2]; + char tail[0]; +}; + +enum x509_actions { + ACT_x509_extract_key_data = 0, + ACT_x509_extract_name_segment = 1, + ACT_x509_note_OID = 2, + ACT_x509_note_issuer = 3, + ACT_x509_note_not_after = 4, + ACT_x509_note_not_before = 5, + ACT_x509_note_params = 6, + ACT_x509_note_serial = 7, + ACT_x509_note_sig_algo = 8, + ACT_x509_note_signature = 9, + ACT_x509_note_subject = 10, + ACT_x509_note_tbs_certificate = 11, + ACT_x509_process_extension = 12, + NR__x509_actions = 13, +}; + +enum x509_akid_actions { + ACT_x509_akid_note_kid = 0, + ACT_x509_akid_note_name = 1, + ACT_x509_akid_note_serial = 2, + ACT_x509_extract_name_segment___2 = 3, + ACT_x509_note_OID___2 = 4, + NR__x509_akid_actions = 5, +}; + +struct x509_parse_context { + struct x509_certificate *cert; + long unsigned int data; + const void *key; + size_t key_size; + const void *params; + size_t params_size; + enum OID key_algo; + enum OID last_oid; + enum OID sig_algo; + u8 o_size; + u8 cn_size; + u8 email_size; + u16 o_offset; + u16 cn_offset; + u16 email_offset; + unsigned int raw_akid_size; + const void *raw_akid; + const void *akid_raw_issuer; + unsigned int akid_raw_issuer_size; +}; + +struct queue_sysfs_entry { + struct attribute attr; + ssize_t (*show)(struct gendisk *, char *); + int (*load_module)(struct gendisk *, const char *, size_t); + ssize_t (*store)(struct gendisk *, const char *, size_t); +}; + +enum { + BLK_MQ_UNIQUE_TAG_BITS = 16, + BLK_MQ_UNIQUE_TAG_MASK = 65535, +}; + +enum { + BLK_MQ_NO_TAG = 4294967295, + BLK_MQ_TAG_MIN = 1, + BLK_MQ_TAG_MAX = 4294967294, +}; + +struct mq_inflight { + struct block_device *part; + unsigned int inflight[2]; +}; + +struct blk_rq_wait { + struct completion done; + blk_status_t ret; +}; + +struct blk_expired_data { + bool has_timedout_rq; + long unsigned int next; + long unsigned int timeout_start; +}; + +struct flush_busy_ctx_data { + struct blk_mq_hw_ctx *hctx; + struct list_head *list; +}; + +struct dispatch_rq_data { + struct blk_mq_hw_ctx *hctx; + struct request *rq; +}; + +enum prep_dispatch { + PREP_DISPATCH_OK = 0, + PREP_DISPATCH_NO_TAG = 1, + PREP_DISPATCH_NO_BUDGET = 2, +}; + +struct rq_iter_data { + struct blk_mq_hw_ctx *hctx; + bool has_rq; +}; + +struct blk_mq_qe_pair { + struct list_head node; + struct request_queue *q; + struct elevator_type *type; +}; + +struct io_sqring_offsets { + __u32 head; + __u32 tail; + __u32 ring_mask; + __u32 ring_entries; + __u32 flags; + __u32 dropped; + __u32 array; + __u32 resv1; + __u64 user_addr; +}; + +struct io_cqring_offsets { + __u32 head; + __u32 tail; + __u32 ring_mask; + __u32 ring_entries; + __u32 overflow; + __u32 cqes; + __u32 flags; + __u32 resv1; + __u64 user_addr; +}; + +struct io_uring_params { + __u32 sq_entries; + __u32 cq_entries; + __u32 flags; + __u32 sq_thread_cpu; + __u32 sq_thread_idle; + __u32 features; + __u32 wq_fd; + __u32 resv[3]; + struct io_sqring_offsets sq_off; + struct io_cqring_offsets cq_off; +}; + +enum { + IO_SQ_THREAD_SHOULD_STOP = 0, + IO_SQ_THREAD_SHOULD_PARK = 1, +}; + +union nested_table { + union nested_table *table; + struct rhash_lock_head *bucket; +}; + +typedef ZSTD_DCtx zstd_dctx; + +typedef ZSTD_DDict zstd_ddict; + +typedef ZSTD_frameHeader zstd_frame_header; + +typedef struct { + size_t error; + int lowerBound; + int upperBound; +} ZSTD_bounds; + +typedef enum { + ZSTD_d_windowLogMax = 100, + ZSTD_d_experimentalParam1 = 1000, + ZSTD_d_experimentalParam2 = 1001, + ZSTD_d_experimentalParam3 = 1002, + ZSTD_d_experimentalParam4 = 1003, +} ZSTD_dParameter; + +typedef enum { + ZSTDnit_frameHeader = 0, + ZSTDnit_blockHeader = 1, + ZSTDnit_block = 2, + ZSTDnit_lastBlock = 3, + ZSTDnit_checksum = 4, + ZSTDnit_skippableFrame = 5, +} ZSTD_nextInputType_e; + +typedef struct { + size_t compressedSize; + long long unsigned int decompressedBound; +} ZSTD_frameSizeInfo; + +typedef struct { + blockType_e blockType; + U32 lastBlock; + U32 origSize; +} blockProperties_t; + +typedef enum { + not_streaming = 0, + is_streaming = 1, +} streaming_operation; + +struct resource_entry { + struct list_head node; + struct resource *res; + resource_size_t offset; + struct resource __res; +}; + +struct pci_bus_resource { + struct list_head list; + struct resource *res; + unsigned int flags; +}; + +struct walk_rcec_data { + struct pci_dev *rcec; + int (*user_callback)(struct pci_dev *, void *); + void *user_data; +}; + +enum hwparam_type { + hwparam_ioport = 0, + hwparam_iomem = 1, + hwparam_ioport_or_iomem = 2, + hwparam_irq = 3, + hwparam_dma = 4, + hwparam_dma_addr = 5, + hwparam_other = 6, +}; + +struct plat_serial8250_port { + long unsigned int iobase; + void *membase; + resource_size_t mapbase; + resource_size_t mapsize; + unsigned int uartclk; + unsigned int irq; + long unsigned int irqflags; + void *private_data; + unsigned char regshift; + unsigned char iotype; + unsigned char hub6; + unsigned char has_sysrq; + unsigned int type; + upf_t flags; + u16 bugs; + unsigned int (*serial_in)(struct uart_port *, int); + void (*serial_out)(struct uart_port *, int, int); + u32 (*dl_read)(struct uart_8250_port *); + void (*dl_write)(struct uart_8250_port *, u32); + void (*set_termios)(struct uart_port *, struct ktermios *, const struct ktermios *); + void (*set_ldisc)(struct uart_port *, struct ktermios *); + unsigned int (*get_mctrl)(struct uart_port *); + int (*handle_irq)(struct uart_port *); + void (*pm)(struct uart_port *, unsigned int, unsigned int); + void (*handle_break)(struct uart_port *); +}; + +enum { + PLAT8250_DEV_LEGACY = -1, + PLAT8250_DEV_PLATFORM = 0, + PLAT8250_DEV_PLATFORM1 = 1, + PLAT8250_DEV_PLATFORM2 = 2, + PLAT8250_DEV_FOURPORT = 3, + PLAT8250_DEV_ACCENT = 4, + PLAT8250_DEV_BOCA = 5, + PLAT8250_DEV_EXAR_ST16C554 = 6, + PLAT8250_DEV_HUB6 = 7, + PLAT8250_DEV_AU1X00 = 8, + PLAT8250_DEV_SM501 = 9, +}; + +struct old_serial_port { + unsigned int uart; + unsigned int baud_base; + unsigned int port; + unsigned int irq; + upf_t flags; + unsigned char io_type; + unsigned char *iomem_base; + short unsigned int iomem_reg_shift; +}; + +typedef void (*serial8250_isa_config_fn)(int, struct uart_port *, u32 *); + +struct drm_gem_close { + __u32 handle; + __u32 pad; +}; + +struct drm_gem_flink { + __u32 handle; + __u32 name; +}; + +struct drm_gem_open { + __u32 name; + __u32 handle; + __u64 size; +}; + +struct ww_class { + atomic_long_t stamp; + struct lock_class_key acquire_key; + struct lock_class_key mutex_key; + const char *acquire_name; + const char *mutex_name; + unsigned int is_wait_die; +}; + +struct drm_flip_work; + +typedef void (*drm_flip_func_t)(struct drm_flip_work *, void *); + +struct drm_flip_work { + const char *name; + drm_flip_func_t func; + struct work_struct worker; + struct list_head queued; + struct list_head commited; + spinlock_t lock; +}; + +struct drm_flip_task { + struct list_head node; + void *data; +}; + +enum virtio_gpu_shm_id { + VIRTIO_GPU_SHM_ID_UNDEFINED = 0, + VIRTIO_GPU_SHM_ID_HOST_VISIBLE = 1, +}; + +struct virtio_gpu_config { + __le32 events_read; + __le32 events_clear; + __le32 num_scanouts; + __le32 num_capsets; +}; + +struct cache_type_info { + const char *size_prop; + const char *line_size_props[2]; + const char *nr_sets_prop; +}; + +struct trace_event_raw_devres { + struct trace_entry ent; + u32 __data_loc_devname; + struct device *dev; + const char *op; + void *node; + u32 __data_loc_name; + size_t size; + char __data[0]; +}; + +struct trace_event_data_offsets_devres { + u32 devname; + const void *devname_ptr_; + u32 name; + const void *name_ptr_; +}; + +typedef void (*btf_trace_devres_log)(void *, struct device *, const char *, void *, const char *, size_t); + +struct request_sense; + +struct cdrom_generic_command { + unsigned char cmd[12]; + unsigned char *buffer; + unsigned int buflen; + int stat; + struct request_sense *sense; + unsigned char data_direction; + int quiet; + int timeout; + union { + void *reserved[1]; + void *unused; + }; +}; + +struct request_sense { + __u8 error_code: 7; + __u8 valid: 1; + __u8 segment_number; + __u8 sense_key: 4; + __u8 reserved2: 1; + __u8 ili: 1; + __u8 reserved1: 2; + __u8 information[4]; + __u8 add_sense_len; + __u8 command_info[4]; + __u8 asc; + __u8 ascq; + __u8 fruc; + __u8 sks[3]; + __u8 asb[46]; +}; + +enum scsi_msg_byte { + COMMAND_COMPLETE = 0, + EXTENDED_MESSAGE = 1, + SAVE_POINTERS = 2, + RESTORE_POINTERS = 3, + DISCONNECT = 4, + INITIATOR_ERROR = 5, + ABORT_TASK_SET = 6, + MESSAGE_REJECT = 7, + NOP = 8, + MSG_PARITY_ERROR = 9, + LINKED_CMD_COMPLETE = 10, + LINKED_FLG_CMD_COMPLETE = 11, + TARGET_RESET = 12, + ABORT_TASK = 13, + CLEAR_TASK_SET = 14, + INITIATE_RECOVERY = 15, + RELEASE_RECOVERY = 16, + TERMINATE_IO_PROC = 17, + CLEAR_ACA = 22, + LOGICAL_UNIT_RESET = 23, + SIMPLE_QUEUE_TAG = 32, + HEAD_OF_QUEUE_TAG = 33, + ORDERED_QUEUE_TAG = 34, + IGNORE_WIDE_RESIDUE = 35, + ACA = 36, + QAS_REQUEST = 85, + BUS_DEVICE_RESET = 12, + ABORT = 6, +}; + +struct scsi_ioctl_command { + unsigned int inlen; + unsigned int outlen; + unsigned char data[0]; +}; + +struct scsi_idlun { + __u32 dev_id; + __u32 host_unique_id; +}; + +struct sg_io_hdr { + int interface_id; + int dxfer_direction; + unsigned char cmd_len; + unsigned char mx_sb_len; + short unsigned int iovec_count; + unsigned int dxfer_len; + void *dxferp; + unsigned char *cmdp; + void *sbp; + unsigned int timeout; + unsigned int flags; + int pack_id; + void *usr_ptr; + unsigned char status; + unsigned char masked_status; + unsigned char msg_status; + unsigned char sb_len_wr; + short unsigned int host_status; + short unsigned int driver_status; + int resid; + unsigned int duration; + unsigned int info; +}; + +enum { + BOND_OPTFLAG_NOSLAVES = 1, + BOND_OPTFLAG_IFDOWN = 2, + BOND_OPTFLAG_RAWVAL = 4, +}; + +enum { + BOND_VALFLAG_DEFAULT = 1, + BOND_VALFLAG_MIN = 2, + BOND_VALFLAG_MAX = 4, +}; + +typedef struct { + long unsigned int key[2]; +} hsiphash_key_t; + +struct ratelimiter_entry { + u64 last_time_ns; + u64 tokens; + u64 ip; + void *net; + spinlock_t lock; + struct hlist_node hash; + struct callback_head rcu; +}; + +enum { + PACKETS_PER_SECOND = 20, + PACKETS_BURSTABLE = 5, + PACKET_COST = 50000000, + TOKEN_MAX = 250000000, +}; + +struct cvmx_smix_en_s { + u64 en: 1; + u64 reserved_1_63: 63; +}; + +union cvmx_smix_en { + u64 u64; + struct cvmx_smix_en_s s; +}; + +struct thunder_mdiobus_nexus { + void *bar0; + struct cavium_mdiobus *buses[4]; +}; + +enum { + IFLA_GENEVE_UNSPEC = 0, + IFLA_GENEVE_ID = 1, + IFLA_GENEVE_REMOTE = 2, + IFLA_GENEVE_TTL = 3, + IFLA_GENEVE_TOS = 4, + IFLA_GENEVE_PORT = 5, + IFLA_GENEVE_COLLECT_METADATA = 6, + IFLA_GENEVE_REMOTE6 = 7, + IFLA_GENEVE_UDP_CSUM = 8, + IFLA_GENEVE_UDP_ZERO_CSUM6_TX = 9, + IFLA_GENEVE_UDP_ZERO_CSUM6_RX = 10, + IFLA_GENEVE_LABEL = 11, + IFLA_GENEVE_TTL_INHERIT = 12, + IFLA_GENEVE_DF = 13, + IFLA_GENEVE_INNER_PROTO_INHERIT = 14, + __IFLA_GENEVE_MAX = 15, +}; + +enum ifla_geneve_df { + GENEVE_DF_UNSET = 0, + GENEVE_DF_SET = 1, + GENEVE_DF_INHERIT = 2, + __GENEVE_DF_END = 3, + GENEVE_DF_MAX = 2, +}; + +struct geneve_net { + struct list_head geneve_list; + struct list_head sock_list; +}; + +struct geneve_dev; + +struct geneve_dev_node { + struct hlist_node hlist; + struct geneve_dev *geneve; +}; + +struct geneve_config { + struct ip_tunnel_info info; + bool collect_md; + bool use_udp6_rx_checksums; + bool ttl_inherit; + enum ifla_geneve_df df; + bool inner_proto_inherit; +}; + +struct geneve_sock; + +struct geneve_dev { + struct geneve_dev_node hlist4; + struct geneve_dev_node hlist6; + struct net *net; + struct net_device *dev; + struct geneve_sock *sock4; + struct geneve_sock *sock6; + struct list_head next; + struct gro_cells gro_cells; + struct geneve_config cfg; +}; + +struct geneve_sock { + bool collect_md; + struct list_head list; + struct socket *sock; + struct callback_head rcu; + int refcnt; + struct hlist_head vni_list[1024]; +}; + +struct class_info { + int class; + char *class_name; +}; + +struct usb_ohci_pdata { + unsigned int big_endian_desc: 1; + unsigned int big_endian_mmio: 1; + unsigned int no_big_frame_no: 1; + unsigned int num_ports; + int (*power_on)(struct platform_device *); + void (*power_off)(struct platform_device *); + void (*power_suspend)(struct platform_device *); +}; + +typedef __u32 __hc32; + +typedef __u16 __hc16; + +struct td; + +struct ed { + __hc32 hwINFO; + __hc32 hwTailP; + __hc32 hwHeadP; + __hc32 hwNextED; + dma_addr_t dma; + struct td *dummy; + struct ed *ed_next; + struct ed *ed_prev; + struct list_head td_list; + struct list_head in_use_list; + u8 state; + u8 type; + u8 branch; + u16 interval; + u16 load; + u16 last_iso; + u16 tick; + unsigned int takeback_wdh_cnt; + struct td *pending_td; + long: 64; +}; + +struct td { + __hc32 hwINFO; + __hc32 hwCBP; + __hc32 hwNextTD; + __hc32 hwBE; + __hc16 hwPSW[2]; + __u8 index; + struct ed *ed; + struct td *td_hash; + struct td *next_dl_td; + struct urb *urb; + dma_addr_t td_dma; + dma_addr_t data_dma; + struct list_head td_list; + long: 64; +}; + +struct ohci_hcca { + __hc32 int_table[32]; + __hc32 frame_no; + __hc32 done_head; + u8 reserved_for_hc[116]; + u8 what[4]; +}; + +struct ohci_roothub_regs { + __hc32 a; + __hc32 b; + __hc32 status; + __hc32 portstatus[15]; +}; + +struct ohci_regs { + __hc32 revision; + __hc32 control; + __hc32 cmdstatus; + __hc32 intrstatus; + __hc32 intrenable; + __hc32 intrdisable; + __hc32 hcca; + __hc32 ed_periodcurrent; + __hc32 ed_controlhead; + __hc32 ed_controlcurrent; + __hc32 ed_bulkhead; + __hc32 ed_bulkcurrent; + __hc32 donehead; + __hc32 fminterval; + __hc32 fmremaining; + __hc32 fmnumber; + __hc32 periodicstart; + __hc32 lsthresh; + struct ohci_roothub_regs roothub; + long: 64; + long: 64; +}; + +enum ohci_rh_state { + OHCI_RH_HALTED = 0, + OHCI_RH_SUSPENDED = 1, + OHCI_RH_RUNNING = 2, +}; + +struct ohci_hcd { + spinlock_t lock; + struct ohci_regs *regs; + struct ohci_hcca *hcca; + dma_addr_t hcca_dma; + struct ed *ed_rm_list; + struct ed *ed_bulktail; + struct ed *ed_controltail; + struct ed *periodic[32]; + void (*start_hnp)(struct ohci_hcd *); + struct dma_pool *td_cache; + struct dma_pool *ed_cache; + struct td *td_hash[64]; + struct td *dl_start; + struct td *dl_end; + struct list_head pending; + struct list_head eds_in_use; + enum ohci_rh_state rh_state; + int num_ports; + int load[32]; + u32 hc_control; + long unsigned int next_statechange; + u32 fminterval; + unsigned int autostop: 1; + unsigned int working: 1; + unsigned int restart_work: 1; + long unsigned int flags; + unsigned int prev_frame_no; + unsigned int wdh_cnt; + unsigned int prev_wdh_cnt; + u32 prev_donehead; + struct timer_list io_watchdog; + struct work_struct nec_work; + struct dentry *debug_dir; + long unsigned int priv[0]; +}; + +struct ohci_driver_overrides { + const char *product_desc; + size_t extra_priv_size; + int (*reset)(struct usb_hcd *); +}; + +struct ohci_platform_priv { + struct clk *clks[4]; + struct reset_control *resets; +}; + +struct usbtmc_request { + __u8 bRequestType; + __u8 bRequest; + __u16 wValue; + __u16 wIndex; + __u16 wLength; +}; + +struct usbtmc_ctrlrequest { + struct usbtmc_request req; + void *data; +}; + +struct usbtmc_termchar { + __u8 term_char; + __u8 term_char_enabled; +}; + +struct usbtmc_message { + __u32 transfer_size; + __u32 transferred; + __u32 flags; + void *message; +} __attribute__((packed)); + +struct usbtmc_dev_capabilities { + __u8 interface_capabilities; + __u8 device_capabilities; + __u8 usb488_interface_capabilities; + __u8 usb488_device_capabilities; +}; + +struct usbtmc_device_data { + const struct usb_device_id *id; + struct usb_device *usb_dev; + struct usb_interface *intf; + struct list_head file_list; + unsigned int bulk_in; + unsigned int bulk_out; + u8 bTag; + u8 bTag_last_write; + u8 bTag_last_read; + u16 wMaxPacketSize; + u8 bNotify1; + u8 bNotify2; + u16 ifnum; + u8 iin_bTag; + u8 *iin_buffer; + atomic_t iin_data_valid; + unsigned int iin_ep; + int iin_ep_present; + int iin_interval; + struct urb *iin_urb; + u16 iin_wMaxPacketSize; + __u8 usb488_caps; + bool zombie; + struct usbtmc_dev_capabilities capabilities; + struct kref kref; + struct mutex io_mutex; + wait_queue_head_t waitq; + struct fasync_struct *fasync; + spinlock_t dev_lock; +}; + +struct usbtmc_file_data { + struct usbtmc_device_data *data; + struct list_head file_elem; + u32 timeout; + u8 srq_byte; + atomic_t srq_asserted; + atomic_t closing; + u8 bmTransferAttributes; + u8 eom_val; + u8 term_char; + bool term_char_enabled; + bool auto_abort; + spinlock_t err_lock; + struct usb_anchor submitted; + struct semaphore limit_write_sem; + u32 out_transfer_size; + int out_status; + u32 in_transfer_size; + int in_status; + int in_urbs_used; + struct usb_anchor in_anchor; + wait_queue_head_t wait_bulk_in; +}; + +struct bulk_cb_wrap { + __le32 Signature; + __u32 Tag; + __le32 DataTransferLength; + __u8 Flags; + __u8 Lun; + __u8 Length; + __u8 CDB[16]; +}; + +struct bulk_cs_wrap { + __le32 Signature; + __u32 Tag; + __le32 Residue; + __u8 Status; +}; + +struct ms_bootblock_cis { + u8 bCistplDEVICE[6]; + u8 bCistplDEVICE0C[6]; + u8 bCistplJEDECC[4]; + u8 bCistplMANFID[6]; + u8 bCistplVER1[32]; + u8 bCistplFUNCID[4]; + u8 bCistplFUNCE0[4]; + u8 bCistplFUNCE1[5]; + u8 bCistplCONF[7]; + u8 bCistplCFTBLENT0[10]; + u8 bCistplCFTBLENT1[8]; + u8 bCistplCFTBLENT2[12]; + u8 bCistplCFTBLENT3[8]; + u8 bCistplCFTBLENT4[17]; + u8 bCistplCFTBLENT5[8]; + u8 bCistplCFTBLENT6[17]; + u8 bCistplCFTBLENT7[8]; + u8 bCistplNOLINK[3]; +}; + +struct ms_bootblock_idi { + u16 wIDIgeneralConfiguration; + u16 wIDInumberOfCylinder; + u16 wIDIreserved0; + u16 wIDInumberOfHead; + u16 wIDIbytesPerTrack; + u16 wIDIbytesPerSector; + u16 wIDIsectorsPerTrack; + u16 wIDItotalSectors[2]; + u16 wIDIreserved1[11]; + u16 wIDIbufferType; + u16 wIDIbufferSize; + u16 wIDIlongCmdECC; + u16 wIDIfirmVersion[4]; + u16 wIDImodelName[20]; + u16 wIDIreserved2; + u16 wIDIlongWordSupported; + u16 wIDIdmaSupported; + u16 wIDIreserved3; + u16 wIDIpioTiming; + u16 wIDIdmaTiming; + u16 wIDItransferParameter; + u16 wIDIformattedCylinder; + u16 wIDIformattedHead; + u16 wIDIformattedSectorsPerTrack; + u16 wIDIformattedTotalSectors[2]; + u16 wIDImultiSector; + u16 wIDIlbaSectors[2]; + u16 wIDIsingleWordDMA; + u16 wIDImultiWordDMA; + u16 wIDIreserved4[192]; +}; + +struct ms_bootblock_sysent_rec { + u32 dwStart; + u32 dwSize; + u8 bType; + u8 bReserved[3]; +}; + +struct ms_bootblock_sysent { + struct ms_bootblock_sysent_rec entry[4]; +}; + +struct ms_bootblock_sysinf { + u8 bMsClass; + u8 bCardType; + u16 wBlockSize; + u16 wBlockNumber; + u16 wTotalBlockNumber; + u16 wPageSize; + u8 bExtraSize; + u8 bSecuritySupport; + u8 bAssemblyDate[8]; + u8 bFactoryArea[4]; + u8 bAssemblyMakerCode; + u8 bAssemblyMachineCode[3]; + u16 wMemoryMakerCode; + u16 wMemoryDeviceCode; + u16 wMemorySize; + u8 bReserved1; + u8 bReserved2; + u8 bVCC; + u8 bVPP; + u16 wControllerChipNumber; + u16 wControllerFunction; + u8 bReserved3[9]; + u8 bParallelSupport; + u16 wFormatValue; + u8 bFormatType; + u8 bUsage; + u8 bDeviceType; + u8 bReserved4[22]; + u8 bFUValue3; + u8 bFUValue4; + u8 bReserved5[15]; +}; + +struct ms_bootblock_header { + u16 wBlockID; + u16 wFormatVersion; + u8 bReserved1[184]; + u8 bNumberOfDataEntry; + u8 bReserved2[179]; +}; + +struct ms_bootblock_page0 { + struct ms_bootblock_header header; + struct ms_bootblock_sysent sysent; + struct ms_bootblock_sysinf sysinf; +}; + +struct ms_bootblock_cis_idi { + union { + struct ms_bootblock_cis cis; + u8 dmy[256]; + } cis; + union { + struct ms_bootblock_idi idi; + u8 dmy[256]; + } idi; +}; + +struct ms_lib_type_extdat { + u8 reserved; + u8 intr; + u8 status0; + u8 status1; + u8 ovrflg; + u8 mngflg; + u16 logadr; +}; + +struct ms_lib_ctrl { + u32 flags; + u32 BytesPerSector; + u32 NumberOfCylinder; + u32 SectorsPerCylinder; + u16 cardType; + u16 blockSize; + u16 PagesPerBlock; + u16 NumberOfPhyBlock; + u16 NumberOfLogBlock; + u16 NumberOfSegment; + u16 *Phy2LogMap; + u16 *Log2PhyMap; + u16 wrtblk; + unsigned char *pagemap[4]; + unsigned char *blkpag; + struct ms_lib_type_extdat *blkext; + unsigned char copybuf[512]; +}; + +struct ene_ub6250_info { + u8 *bbuf; + u8 SD_Status; + u8 MS_Status; + u8 SM_Status; + u16 SD_Block_Mult; + u8 SD_READ_BL_LEN; + u16 SD_C_SIZE; + u8 SD_C_SIZE_MULT; + u8 SD_SPEC_VER; + u8 SD_CSD_VER; + u8 SD20_HIGH_CAPACITY; + u32 HC_C_SIZE; + u8 MMC_SPEC_VER; + u8 MMC_BusWidth; + u8 MMC_HIGH_CAPACITY; + bool MS_SWWP; + u32 MSP_TotalBlock; + struct ms_lib_ctrl MS_Lib; + bool MS_IsRWPage; + u16 MS_Model; + u8 SM_DeviceID; + u8 SM_CardID; + unsigned char *testbuf; + u8 BIN_FLAG; + u32 bl_num; + int SrbStatus; + bool Power_IsResum; +}; + +struct digi_serial { + spinlock_t ds_serial_lock; + struct usb_serial_port *ds_oob_port; + int ds_oob_port_num; + int ds_device_started; +}; + +struct digi_port { + spinlock_t dp_port_lock; + int dp_port_num; + int dp_out_buf_len; + unsigned char dp_out_buf[8]; + int dp_write_urb_in_use; + unsigned int dp_modem_signals; + int dp_transmit_idle; + wait_queue_head_t dp_transmit_idle_wait; + int dp_throttled; + int dp_throttle_restart; + wait_queue_head_t dp_flush_wait; + wait_queue_head_t dp_close_wait; + wait_queue_head_t write_wait; + struct usb_serial_port *dp_port; +}; + +struct mct_u232_private { + struct urb *read_urb; + spinlock_t lock; + unsigned int control_state; + unsigned char last_lcr; + unsigned char last_lsr; + unsigned char last_msr; + unsigned int rx_flags; +}; + +struct qt2_device_detail { + int product_id; + int num_ports; +}; + +struct qt2_serial_private { + unsigned char current_port; + struct urb *read_urb; + char *read_buffer; +}; + +struct qt2_port_private { + u8 device_port; + spinlock_t urb_lock; + bool urb_in_use; + struct urb *write_urb; + char *write_buffer; + spinlock_t lock; + u8 shadowLSR; + u8 shadowMSR; + struct usb_serial_port *port; +}; + +typedef void * (*devcon_match_fn_t)(const struct fwnode_handle *, const char *, void *); + +enum typec_orientation { + TYPEC_ORIENTATION_NONE = 0, + TYPEC_ORIENTATION_NORMAL = 1, + TYPEC_ORIENTATION_REVERSE = 2, +}; + +struct typec_switch_dev; + +struct typec_switch { + struct typec_switch_dev *sw_devs[3]; + unsigned int num_sw_devs; +}; + +struct typec_mux_dev; + +struct typec_mux { + struct typec_mux_dev *mux_devs[3]; + unsigned int num_mux_devs; +}; + +typedef int (*typec_switch_set_fn_t)(struct typec_switch_dev *, enum typec_orientation); + +struct typec_switch_dev { + struct device dev; + typec_switch_set_fn_t set; +}; + +struct typec_switch_desc { + struct fwnode_handle *fwnode; + typec_switch_set_fn_t set; + const char *name; + void *drvdata; +}; + +typedef int (*typec_mux_set_fn_t)(struct typec_mux_dev *, struct typec_mux_state *); + +struct typec_mux_dev { + struct device dev; + typec_mux_set_fn_t set; +}; + +struct typec_mux_desc { + struct fwnode_handle *fwnode; + typec_mux_set_fn_t set; + const char *name; + void *drvdata; +}; + +struct stripe { + struct dm_dev *dev; + sector_t physical_start; + atomic_t error_count; +}; + +struct stripe_c { + uint32_t stripes; + int stripes_shift; + sector_t stripe_width; + uint32_t chunk_size; + int chunk_size_shift; + struct dm_target *ti; + struct work_struct trigger_event; + struct stripe stripe[0]; +}; + +struct net_device_devres { + struct net_device *ndev; +}; + +enum tcx_action_base { + TCX_NEXT = -1, + TCX_PASS = 0, + TCX_DROP = 2, + TCX_REDIRECT = 7, +}; + +enum netdev_queue_type { + NETDEV_QUEUE_TYPE_RX = 0, + NETDEV_QUEUE_TYPE_TX = 1, +}; + +struct net_device_path_stack { + int num_paths; + struct net_device_path path[5]; +}; + +struct bpf_xdp_link { + struct bpf_link link; + struct net_device *dev; + int flags; +}; + +struct netdev_net_notifier { + struct list_head list; + struct notifier_block *nb; +}; + +struct phy_link_topology { + struct xarray phys; + u32 next_phy_index; +}; + +struct devlink; + +enum devlink_port_type { + DEVLINK_PORT_TYPE_NOTSET = 0, + DEVLINK_PORT_TYPE_AUTO = 1, + DEVLINK_PORT_TYPE_ETH = 2, + DEVLINK_PORT_TYPE_IB = 3, +}; + +struct ib_device; + +enum devlink_port_flavour { + DEVLINK_PORT_FLAVOUR_PHYSICAL = 0, + DEVLINK_PORT_FLAVOUR_CPU = 1, + DEVLINK_PORT_FLAVOUR_DSA = 2, + DEVLINK_PORT_FLAVOUR_PCI_PF = 3, + DEVLINK_PORT_FLAVOUR_PCI_VF = 4, + DEVLINK_PORT_FLAVOUR_VIRTUAL = 5, + DEVLINK_PORT_FLAVOUR_UNUSED = 6, + DEVLINK_PORT_FLAVOUR_PCI_SF = 7, +}; + +struct devlink_port_phys_attrs { + u32 port_number; + u32 split_subport_number; +}; + +struct devlink_port_pci_pf_attrs { + u32 controller; + u16 pf; + u8 external: 1; +}; + +struct devlink_port_pci_vf_attrs { + u32 controller; + u16 pf; + u16 vf; + u8 external: 1; +}; + +struct devlink_port_pci_sf_attrs { + u32 controller; + u32 sf; + u16 pf; + u8 external: 1; +}; + +struct devlink_port_attrs { + u8 split: 1; + u8 splittable: 1; + u32 lanes; + enum devlink_port_flavour flavour; + struct netdev_phys_item_id switch_id; + union { + struct devlink_port_phys_attrs phys; + struct devlink_port_pci_pf_attrs pci_pf; + struct devlink_port_pci_vf_attrs pci_vf; + struct devlink_port_pci_sf_attrs pci_sf; + }; +}; + +struct devlink_linecard; + +struct devlink_port_ops; + +struct devlink_rate; + +struct devlink_port { + struct list_head list; + struct list_head region_list; + struct devlink *devlink; + const struct devlink_port_ops *ops; + unsigned int index; + spinlock_t type_lock; + enum devlink_port_type type; + enum devlink_port_type desired_type; + union { + struct { + struct net_device *netdev; + int ifindex; + char ifname[16]; + } type_eth; + struct { + struct ib_device *ibdev; + } type_ib; + }; + struct devlink_port_attrs attrs; + u8 attrs_set: 1; + u8 switch_port: 1; + u8 registered: 1; + u8 initialized: 1; + struct delayed_work type_warn_dw; + struct list_head reporter_list; + struct devlink_rate *devlink_rate; + struct devlink_linecard *linecard; + u32 rel_index; +}; + +struct netdev_notifier_changelowerstate_info { + struct netdev_notifier_info info; + void *lower_state_info; +}; + +struct netdev_notifier_pre_changeaddr_info { + struct netdev_notifier_info info; + const unsigned char *dev_addr; +}; + +enum netdev_offload_xstats_type { + NETDEV_OFFLOAD_XSTATS_TYPE_L3 = 1, +}; + +struct netdev_notifier_offload_xstats_rd { + struct rtnl_hw_stats64 stats; + bool used; +}; + +struct netdev_notifier_offload_xstats_ru { + bool used; +}; + +struct netdev_notifier_offload_xstats_info { + struct netdev_notifier_info info; + enum netdev_offload_xstats_type type; + union { + struct netdev_notifier_offload_xstats_rd *report_delta; + struct netdev_notifier_offload_xstats_ru *report_used; + }; +}; + +enum { + NESTED_SYNC_IMM_BIT = 0, + NESTED_SYNC_TODO_BIT = 1, +}; + +struct netdev_notifier_bonding_info { + struct netdev_notifier_info info; + struct netdev_bonding_info bonding_info; +}; + +enum qdisc_state2_t { + __QDISC_STATE2_RUNNING = 0, +}; + +enum devlink_rate_type { + DEVLINK_RATE_TYPE_LEAF = 0, + DEVLINK_RATE_TYPE_NODE = 1, +}; + +enum devlink_port_fn_state { + DEVLINK_PORT_FN_STATE_INACTIVE = 0, + DEVLINK_PORT_FN_STATE_ACTIVE = 1, +}; + +enum devlink_port_fn_opstate { + DEVLINK_PORT_FN_OPSTATE_DETACHED = 0, + DEVLINK_PORT_FN_OPSTATE_ATTACHED = 1, +}; + +struct devlink_rate { + struct list_head list; + enum devlink_rate_type type; + struct devlink *devlink; + void *priv; + u64 tx_share; + u64 tx_max; + struct devlink_rate *parent; + union { + struct devlink_port *devlink_port; + struct { + char *name; + refcount_t refcnt; + }; + }; + u32 tx_priority; + u32 tx_weight; +}; + +struct devlink_port_ops { + int (*port_split)(struct devlink *, struct devlink_port *, unsigned int, struct netlink_ext_ack *); + int (*port_unsplit)(struct devlink *, struct devlink_port *, struct netlink_ext_ack *); + int (*port_type_set)(struct devlink_port *, enum devlink_port_type); + int (*port_del)(struct devlink *, struct devlink_port *, struct netlink_ext_ack *); + int (*port_fn_hw_addr_get)(struct devlink_port *, u8 *, int *, struct netlink_ext_ack *); + int (*port_fn_hw_addr_set)(struct devlink_port *, const u8 *, int, struct netlink_ext_ack *); + int (*port_fn_roce_get)(struct devlink_port *, bool *, struct netlink_ext_ack *); + int (*port_fn_roce_set)(struct devlink_port *, bool, struct netlink_ext_ack *); + int (*port_fn_migratable_get)(struct devlink_port *, bool *, struct netlink_ext_ack *); + int (*port_fn_migratable_set)(struct devlink_port *, bool, struct netlink_ext_ack *); + int (*port_fn_state_get)(struct devlink_port *, enum devlink_port_fn_state *, enum devlink_port_fn_opstate *, struct netlink_ext_ack *); + int (*port_fn_state_set)(struct devlink_port *, enum devlink_port_fn_state, struct netlink_ext_ack *); + int (*port_fn_ipsec_crypto_get)(struct devlink_port *, bool *, struct netlink_ext_ack *); + int (*port_fn_ipsec_crypto_set)(struct devlink_port *, bool, struct netlink_ext_ack *); + int (*port_fn_ipsec_packet_get)(struct devlink_port *, bool *, struct netlink_ext_ack *); + int (*port_fn_ipsec_packet_set)(struct devlink_port *, bool, struct netlink_ext_ack *); + int (*port_fn_max_io_eqs_get)(struct devlink_port *, u32 *, struct netlink_ext_ack *); + int (*port_fn_max_io_eqs_set)(struct devlink_port *, u32, struct netlink_ext_ack *); +}; + +struct rps_map { + unsigned int len; + struct callback_head rcu; + u16 cpus[0]; +}; + +struct rps_dev_flow { + u16 cpu; + u16 filter; + unsigned int last_qtail; +}; + +struct rps_dev_flow_table { + unsigned int mask; + struct callback_head rcu; + struct rps_dev_flow flows[0]; +}; + +typedef int (*bpf_op_t)(struct net_device *, struct netdev_bpf *); + +struct dev_kfree_skb_cb { + enum skb_drop_reason reason; +}; + +enum { + NAPI_F_PREFER_BUSY_POLL = 1, + NAPI_F_END_ON_RESCHED = 2, +}; + +struct netdev_adjacent { + struct net_device *dev; + netdevice_tracker dev_tracker; + bool master; + bool ignore; + u16 ref_nr; + void *private; + struct list_head list; + struct callback_head rcu; +}; + +struct tc_defact { + __u32 index; + __u32 capab; + int action; + int refcnt; + int bindcnt; +}; + +enum { + TCA_DEF_UNSPEC = 0, + TCA_DEF_TM = 1, + TCA_DEF_PARMS = 2, + TCA_DEF_DATA = 3, + TCA_DEF_PAD = 4, + __TCA_DEF_MAX = 5, +}; + +struct tcf_defact { + struct tc_action common; + u32 tcfd_datalen; + void *tcfd_defdata; +}; + +struct tc_sfq_qopt { + unsigned int quantum; + int perturb_period; + __u32 limit; + unsigned int divisor; + unsigned int flows; +}; + +struct tc_sfqred_stats { + __u32 prob_drop; + __u32 forced_drop; + __u32 prob_mark; + __u32 forced_mark; + __u32 prob_mark_head; + __u32 forced_mark_head; +}; + +struct tc_sfq_qopt_v1 { + struct tc_sfq_qopt v0; + unsigned int depth; + unsigned int headdrop; + __u32 limit; + __u32 qth_min; + __u32 qth_max; + unsigned char Wlog; + unsigned char Plog; + unsigned char Scell_log; + unsigned char flags; + __u32 max_P; + struct tc_sfqred_stats stats; +}; + +struct tc_sfq_xstats { + __s32 allot; +}; + +typedef u16 sfq_index; + +struct sfq_head { + sfq_index next; + sfq_index prev; +}; + +struct sfq_slot { + struct sk_buff *skblist_next; + struct sk_buff *skblist_prev; + sfq_index qlen; + sfq_index next; + struct sfq_head dep; + short unsigned int hash; + int allot; + unsigned int backlog; + struct red_vars vars; +}; + +struct sfq_sched_data { + int limit; + unsigned int divisor; + u8 headdrop; + u8 maxdepth; + siphash_key_t perturbation; + u8 cur_depth; + u8 flags; + struct tcf_proto *filter_list; + struct tcf_block *block; + sfq_index *ht; + struct sfq_slot *slots; + struct red_parms *red_parms; + struct tc_sfqred_stats stats; + struct sfq_slot *tail; + struct sfq_head dep[128]; + unsigned int maxflows; + int perturb_period; + unsigned int quantum; + struct timer_list perturb_timer; + struct Qdisc *sch; +}; + +struct sockaddr_nl { + __kernel_sa_family_t nl_family; + short unsigned int nl_pad; + __u32 nl_pid; + __u32 nl_groups; +}; + +enum nlmsgerr_attrs { + NLMSGERR_ATTR_UNUSED = 0, + NLMSGERR_ATTR_MSG = 1, + NLMSGERR_ATTR_OFFS = 2, + NLMSGERR_ATTR_COOKIE = 3, + NLMSGERR_ATTR_POLICY = 4, + NLMSGERR_ATTR_MISS_TYPE = 5, + NLMSGERR_ATTR_MISS_NEST = 6, + __NLMSGERR_ATTR_MAX = 7, + NLMSGERR_ATTR_MAX = 6, +}; + +struct nl_pktinfo { + __u32 group; +}; + +enum { + NETLINK_UNCONNECTED = 0, + NETLINK_CONNECTED = 1, +}; + +enum netlink_skb_flags { + NETLINK_SKB_DST = 8, +}; + +struct netlink_tap { + struct net_device *dev; + struct module *module; + struct list_head list; +}; + +struct trace_event_raw_netlink_extack { + struct trace_entry ent; + u32 __data_loc_msg; + char __data[0]; +}; + +struct trace_event_data_offsets_netlink_extack { + u32 msg; + const void *msg_ptr_; +}; + +typedef void (*btf_trace_netlink_extack)(void *, const char *); + +struct listeners { + struct callback_head rcu; + long unsigned int masks[0]; +}; + +struct netlink_tap_net { + struct list_head netlink_tap_all; + struct mutex netlink_tap_lock; +}; + +struct netlink_compare_arg { + possible_net_t pnet; + u32 portid; +}; + +struct netlink_broadcast_data { + struct sock *exclude_sk; + struct net *net; + u32 portid; + u32 group; + int failure; + int delivery_failure; + int congested; + int delivered; + gfp_t allocation; + struct sk_buff *skb; + struct sk_buff *skb2; + int (*tx_filter)(struct sock *, struct sk_buff *, void *); + void *tx_data; +}; + +struct netlink_set_err_data { + struct sock *exclude_sk; + u32 portid; + u32 group; + int code; +}; + +struct nl_seq_iter { + struct seq_net_private p; + struct rhashtable_iter hti; + int link; +}; + +struct bpf_iter__netlink { + union { + struct bpf_iter_meta *meta; + }; + union { + struct netlink_sock *sk; + }; +}; + +enum { + ETHTOOL_A_PAUSE_STAT_UNSPEC = 0, + ETHTOOL_A_PAUSE_STAT_PAD = 1, + ETHTOOL_A_PAUSE_STAT_TX_FRAMES = 2, + ETHTOOL_A_PAUSE_STAT_RX_FRAMES = 3, + __ETHTOOL_A_PAUSE_STAT_CNT = 4, + ETHTOOL_A_PAUSE_STAT_MAX = 3, +}; + +struct pause_req_info { + struct ethnl_req_info base; + enum ethtool_mac_stats_src src; +}; + +struct pause_reply_data { + struct ethnl_reply_data base; + struct ethtool_pauseparam pauseparam; + struct ethtool_pause_stats pausestat; +}; + +struct nf_hook_entries_rcu_head { + struct callback_head head; + void *allocation; +}; + +struct nf_nat_hook { + int (*parse_nat_setup)(struct nf_conn *, enum nf_nat_manip_type, const struct nlattr *); + void (*decode_session)(struct sk_buff *, struct flowi *); + void (*remove_nat_bysrc)(struct nf_conn *); +}; + +struct nf_ct_hook { + int (*update)(struct net *, struct sk_buff *); + void (*destroy)(struct nf_conntrack *); + bool (*get_tuple_skb)(struct nf_conntrack_tuple *, const struct sk_buff *); + void (*attach)(struct sk_buff *, const struct sk_buff *); + void (*set_closing)(struct nf_conntrack *); + int (*confirm)(struct sk_buff *); +}; + +enum ctattr_timeout_udp { + CTA_TIMEOUT_UDP_UNSPEC = 0, + CTA_TIMEOUT_UDP_UNREPLIED = 1, + CTA_TIMEOUT_UDP_REPLIED = 2, + __CTA_TIMEOUT_UDP_MAX = 3, +}; + +enum ctattr_protoinfo_sctp { + CTA_PROTOINFO_SCTP_UNSPEC = 0, + CTA_PROTOINFO_SCTP_STATE = 1, + CTA_PROTOINFO_SCTP_VTAG_ORIGINAL = 2, + CTA_PROTOINFO_SCTP_VTAG_REPLY = 3, + __CTA_PROTOINFO_SCTP_MAX = 4, +}; + +enum ctattr_timeout_sctp { + CTA_TIMEOUT_SCTP_UNSPEC = 0, + CTA_TIMEOUT_SCTP_CLOSED = 1, + CTA_TIMEOUT_SCTP_COOKIE_WAIT = 2, + CTA_TIMEOUT_SCTP_COOKIE_ECHOED = 3, + CTA_TIMEOUT_SCTP_ESTABLISHED = 4, + CTA_TIMEOUT_SCTP_SHUTDOWN_SENT = 5, + CTA_TIMEOUT_SCTP_SHUTDOWN_RECD = 6, + CTA_TIMEOUT_SCTP_SHUTDOWN_ACK_SENT = 7, + CTA_TIMEOUT_SCTP_HEARTBEAT_SENT = 8, + CTA_TIMEOUT_SCTP_HEARTBEAT_ACKED = 9, + __CTA_TIMEOUT_SCTP_MAX = 10, +}; + +enum nft_hook_attributes { + NFTA_HOOK_UNSPEC = 0, + NFTA_HOOK_HOOKNUM = 1, + NFTA_HOOK_PRIORITY = 2, + NFTA_HOOK_DEV = 3, + NFTA_HOOK_DEVS = 4, + __NFTA_HOOK_MAX = 5, +}; + +enum nft_table_attributes { + NFTA_TABLE_UNSPEC = 0, + NFTA_TABLE_NAME = 1, + NFTA_TABLE_FLAGS = 2, + NFTA_TABLE_USE = 3, + NFTA_TABLE_HANDLE = 4, + NFTA_TABLE_PAD = 5, + NFTA_TABLE_USERDATA = 6, + NFTA_TABLE_OWNER = 7, + __NFTA_TABLE_MAX = 8, +}; + +enum nft_chain_attributes { + NFTA_CHAIN_UNSPEC = 0, + NFTA_CHAIN_TABLE = 1, + NFTA_CHAIN_HANDLE = 2, + NFTA_CHAIN_NAME = 3, + NFTA_CHAIN_HOOK = 4, + NFTA_CHAIN_POLICY = 5, + NFTA_CHAIN_USE = 6, + NFTA_CHAIN_TYPE = 7, + NFTA_CHAIN_COUNTERS = 8, + NFTA_CHAIN_PAD = 9, + NFTA_CHAIN_FLAGS = 10, + NFTA_CHAIN_ID = 11, + NFTA_CHAIN_USERDATA = 12, + __NFTA_CHAIN_MAX = 13, +}; + +enum nft_set_policies { + NFT_SET_POL_PERFORMANCE = 0, + NFT_SET_POL_MEMORY = 1, +}; + +enum nft_set_desc_attributes { + NFTA_SET_DESC_UNSPEC = 0, + NFTA_SET_DESC_SIZE = 1, + NFTA_SET_DESC_CONCAT = 2, + __NFTA_SET_DESC_MAX = 3, +}; + +enum nft_set_field_attributes { + NFTA_SET_FIELD_UNSPEC = 0, + NFTA_SET_FIELD_LEN = 1, + __NFTA_SET_FIELD_MAX = 2, +}; + +enum nft_set_elem_attributes { + NFTA_SET_ELEM_UNSPEC = 0, + NFTA_SET_ELEM_KEY = 1, + NFTA_SET_ELEM_DATA = 2, + NFTA_SET_ELEM_FLAGS = 3, + NFTA_SET_ELEM_TIMEOUT = 4, + NFTA_SET_ELEM_EXPIRATION = 5, + NFTA_SET_ELEM_USERDATA = 6, + NFTA_SET_ELEM_EXPR = 7, + NFTA_SET_ELEM_PAD = 8, + NFTA_SET_ELEM_OBJREF = 9, + NFTA_SET_ELEM_KEY_END = 10, + NFTA_SET_ELEM_EXPRESSIONS = 11, + __NFTA_SET_ELEM_MAX = 12, +}; + +enum nft_set_elem_list_attributes { + NFTA_SET_ELEM_LIST_UNSPEC = 0, + NFTA_SET_ELEM_LIST_TABLE = 1, + NFTA_SET_ELEM_LIST_SET = 2, + NFTA_SET_ELEM_LIST_ELEMENTS = 3, + NFTA_SET_ELEM_LIST_SET_ID = 4, + __NFTA_SET_ELEM_LIST_MAX = 5, +}; + +enum nft_data_attributes { + NFTA_DATA_UNSPEC = 0, + NFTA_DATA_VALUE = 1, + NFTA_DATA_VERDICT = 2, + __NFTA_DATA_MAX = 3, +}; + +enum nft_verdict_attributes { + NFTA_VERDICT_UNSPEC = 0, + NFTA_VERDICT_CODE = 1, + NFTA_VERDICT_CHAIN = 2, + NFTA_VERDICT_CHAIN_ID = 3, + __NFTA_VERDICT_MAX = 4, +}; + +enum nft_expr_attributes { + NFTA_EXPR_UNSPEC = 0, + NFTA_EXPR_NAME = 1, + NFTA_EXPR_DATA = 2, + __NFTA_EXPR_MAX = 3, +}; + +enum nft_counter_attributes { + NFTA_COUNTER_UNSPEC = 0, + NFTA_COUNTER_BYTES = 1, + NFTA_COUNTER_PACKETS = 2, + NFTA_COUNTER_PAD = 3, + __NFTA_COUNTER_MAX = 4, +}; + +enum nft_gen_attributes { + NFTA_GEN_UNSPEC = 0, + NFTA_GEN_ID = 1, + NFTA_GEN_PROC_PID = 2, + NFTA_GEN_PROC_NAME = 3, + __NFTA_GEN_MAX = 4, +}; + +enum nft_object_attributes { + NFTA_OBJ_UNSPEC = 0, + NFTA_OBJ_TABLE = 1, + NFTA_OBJ_NAME = 2, + NFTA_OBJ_TYPE = 3, + NFTA_OBJ_DATA = 4, + NFTA_OBJ_USE = 5, + NFTA_OBJ_HANDLE = 6, + NFTA_OBJ_PAD = 7, + NFTA_OBJ_USERDATA = 8, + __NFTA_OBJ_MAX = 9, +}; + +enum nft_flowtable_flags { + NFT_FLOWTABLE_HW_OFFLOAD = 1, + NFT_FLOWTABLE_COUNTER = 2, + NFT_FLOWTABLE_MASK = 3, +}; + +enum nft_flowtable_attributes { + NFTA_FLOWTABLE_UNSPEC = 0, + NFTA_FLOWTABLE_TABLE = 1, + NFTA_FLOWTABLE_NAME = 2, + NFTA_FLOWTABLE_HOOK = 3, + NFTA_FLOWTABLE_USE = 4, + NFTA_FLOWTABLE_HANDLE = 5, + NFTA_FLOWTABLE_PAD = 6, + NFTA_FLOWTABLE_FLAGS = 7, + __NFTA_FLOWTABLE_MAX = 8, +}; + +enum nft_flowtable_hook_attributes { + NFTA_FLOWTABLE_HOOK_UNSPEC = 0, + NFTA_FLOWTABLE_HOOK_NUM = 1, + NFTA_FLOWTABLE_HOOK_PRIORITY = 2, + NFTA_FLOWTABLE_HOOK_DEVS = 3, + __NFTA_FLOWTABLE_HOOK_MAX = 4, +}; + +enum nft_devices_attributes { + NFTA_DEVICE_UNSPEC = 0, + NFTA_DEVICE_NAME = 1, + __NFTA_DEVICE_MAX = 2, +}; + +enum nft_data_desc_flags { + NFT_DATA_DESC_SETELEM = 1, +}; + +struct nft_userdata { + u8 len; + unsigned char data[0]; +}; + +struct nft_rule_dp_last { + struct nft_rule_dp end; + struct callback_head h; + struct nft_rule_blob *blob; + const struct nft_chain *chain; +}; + +struct nft_flowtable { + struct list_head list; + struct nft_table *table; + char *name; + int hooknum; + int ops_len; + u32 genmask: 2; + u32 use; + u64 handle; + long: 64; + struct list_head hook_list; + struct nf_flowtable data; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct nft_trans_set { + struct nft_trans_binding nft_trans_binding; + struct list_head list_trans_newset; + struct nft_set *set; + u32 set_id; + u32 gc_int; + u64 timeout; + bool update; + bool bound; + u32 size; +}; + +struct nft_trans_table { + struct nft_trans nft_trans; + bool update; +}; + +enum nft_trans_elem_flags { + NFT_TRANS_UPD_TIMEOUT = 1, + NFT_TRANS_UPD_EXPIRATION = 2, +}; + +struct nft_trans_elem { + struct nft_trans nft_trans; + struct nft_set *set; + struct nft_elem_priv *elem_priv; + u64 timeout; + u64 expiration; + u8 update_flags; + bool bound; +}; + +struct nft_trans_obj { + struct nft_trans nft_trans; + struct nft_object *obj; + struct nft_object *newobj; + bool update; +}; + +struct nft_trans_flowtable { + struct nft_trans nft_trans; + struct nft_flowtable *flowtable; + struct list_head hook_list; + u32 flags; + bool update; +}; + +enum { + NFT_VALIDATE_SKIP = 0, + NFT_VALIDATE_NEED = 1, + NFT_VALIDATE_DO = 2, +}; + +struct nft_audit_data { + struct nft_table *table; + int entries; + int op; + struct list_head list; +}; + +struct nft_set_elem_catchall { + struct list_head list; + struct callback_head rcu; + struct nft_elem_priv *elem; +}; + +struct nft_module_request { + struct list_head list; + char module[56]; + bool done; +}; + +struct nftnl_skb_parms { + bool report; +}; + +struct nft_chain_hook { + u32 num; + s32 priority; + const struct nft_chain_type *type; + struct list_head list; +}; + +struct nft_rule_dump_ctx { + unsigned int s_idx; + char *table; + char *chain; + bool reset; +}; + +struct nft_set_dump_args { + const struct netlink_callback *cb; + struct nft_set_iter iter; + struct sk_buff *skb; + bool reset; +}; + +struct nft_set_dump_ctx { + const struct nft_set *set; + struct nft_ctx ctx; + bool reset; +}; + +struct nft_obj_dump_ctx { + unsigned int s_idx; + char *table; + u32 type; + bool reset; +}; + +struct nft_flowtable_hook { + u32 num; + int priority; + struct list_head list; +}; + +struct nft_flowtable_filter { + char *table; +}; + +enum nft_osf_attributes { + NFTA_OSF_UNSPEC = 0, + NFTA_OSF_DREG = 1, + NFTA_OSF_TTL = 2, + NFTA_OSF_FLAGS = 3, + __NFTA_OSF_MAX = 4, +}; + +enum nft_osf_flags { + NFT_OSF_F_VERSION = 1, +}; + +struct nf_osf_data { + const char *genre; + const char *version; +}; + +struct nft_osf { + u8 dreg; + u8 ttl; + u32 flags; +}; + +enum xt_multiport_flags { + XT_MULTIPORT_SOURCE = 0, + XT_MULTIPORT_DESTINATION = 1, + XT_MULTIPORT_EITHER = 2, +}; + +struct xt_multiport_v1 { + __u8 flags; + __u8 count; + __u16 ports[15]; + __u8 pflags[15]; + __u8 invert; +}; + +struct hash_netport4_elem { + __be32 ip; + __be16 port; + u8 proto; + u8 cidr: 7; + u8 nomatch: 1; +}; + +struct hash_netport4 { + struct htable *table; + struct htable_gc gc; + u32 maxelem; + u32 initval; + u8 bucketsize; + struct list_head ad; + struct hash_netport4_elem next; + struct net_prefixes nets[32]; +}; + +struct hash_netport4_resize_ad { + struct list_head list; + enum ipset_adt ad; + struct hash_netport4_elem d; + struct ip_set_ext ext; + struct ip_set_ext mext; + u32 flags; +}; + +struct hash_netport6_elem { + union nf_inet_addr ip; + __be16 port; + u8 proto; + u8 cidr: 7; + u8 nomatch: 1; +}; + +struct hash_netport6 { + struct htable *table; + struct htable_gc gc; + u32 maxelem; + u32 initval; + u8 bucketsize; + struct list_head ad; + struct hash_netport6_elem next; + struct net_prefixes nets[128]; +}; + +struct hash_netport6_resize_ad { + struct list_head list; + enum ipset_adt ad; + struct hash_netport6_elem d; + struct ip_set_ext ext; + struct ip_set_ext mext; + u32 flags; +}; + +enum { + IP_VS_UDP_S_NORMAL = 0, + IP_VS_UDP_S_LAST = 1, +}; + +enum { + IP_VS_DIR_INPUT = 0, + IP_VS_DIR_OUTPUT = 1, + IP_VS_DIR_INPUT_ONLY = 2, + IP_VS_DIR_LAST = 3, +}; + +struct ifaddrmsg { + __u8 ifa_family; + __u8 ifa_prefixlen; + __u8 ifa_flags; + __u8 ifa_scope; + __u32 ifa_index; +}; + +enum { + IFA_UNSPEC = 0, + IFA_ADDRESS = 1, + IFA_LOCAL = 2, + IFA_LABEL = 3, + IFA_BROADCAST = 4, + IFA_ANYCAST = 5, + IFA_CACHEINFO = 6, + IFA_MULTICAST = 7, + IFA_FLAGS = 8, + IFA_RT_PRIORITY = 9, + IFA_TARGET_NETNSID = 10, + IFA_PROTO = 11, + __IFA_MAX = 12, +}; + +struct ifa_cacheinfo { + __u32 ifa_prefered; + __u32 ifa_valid; + __u32 cstamp; + __u32 tstamp; +}; + +enum { + IFLA_INET_UNSPEC = 0, + IFLA_INET_CONF = 1, + __IFLA_INET_MAX = 2, +}; + +struct in_validator_info { + __be32 ivi_addr; + struct in_device *ivi_dev; + struct netlink_ext_ack *extack; +}; + +struct inet_fill_args { + u32 portid; + u32 seq; + int event; + unsigned int flags; + int netnsid; + int ifindex; +}; + +struct devinet_sysctl_table { + struct ctl_table_header *sysctl_header; + struct ctl_table devinet_vars[33]; +}; + +struct bpf_fou_encap { + __be16 sport; + __be16 dport; +}; + +enum bpf_fou_encap_type { + FOU_BPF_ENCAP_FOU = 0, + FOU_BPF_ENCAP_GUE = 1, +}; + +enum __sk_action { + __SK_DROP = 0, + __SK_PASS = 1, + __SK_REDIRECT = 2, + __SK_NONE = 3, +}; + +enum sk_psock_state_bits { + SK_PSOCK_TX_ENABLED = 0, + SK_PSOCK_RX_STRP_ENABLED = 1, +}; + +struct tx_work { + struct delayed_work work; + struct sock *sk; +}; + +struct tls_rec; + +struct tls_sw_context_tx { + struct crypto_aead *aead_send; + struct crypto_wait async_wait; + struct tx_work tx_work; + struct tls_rec *open_rec; + struct list_head tx_list; + atomic_t encrypt_pending; + u8 async_capable: 1; + long unsigned int tx_bitmask; +}; + +enum { + TCP_BPF_IPV4 = 0, + TCP_BPF_IPV6 = 1, + TCP_BPF_NUM_PROTS = 2, +}; + +enum { + TCP_BPF_BASE = 0, + TCP_BPF_TX = 1, + TCP_BPF_RX = 2, + TCP_BPF_TXRX = 3, + TCP_BPF_NUM_CFGS = 4, +}; + +struct ip_beet_phdr { + __u8 nexthdr; + __u8 hdrlen; + __u8 padlen; + __u8 reserved; +}; + +enum { + XFRM_MODE_FLAG_TUNNEL = 1, +}; + +enum { + BPF_F_CURRENT_NETNS = -1, +}; + +struct bpf_xfrm_state_opts { + s32 error; + s32 netns_id; + u32 mark; + xfrm_address_t daddr; + __be32 spi; + u8 proto; + u16 family; +}; + +enum { + BPF_XFRM_STATE_OPTS_SZ = 36, +}; + +struct ipv6_params { + __s32 disable_ipv6; + __s32 autoconf; +}; + +struct icmp6_filter { + __u32 data[8]; +}; + +struct raw6_sock { + struct inet_sock inet; + __u32 checksum; + __u32 offset; + struct icmp6_filter filter; + __u32 ip6mr_table; + struct ipv6_pinfo inet6; +}; + +struct raw_iter_state { + struct seq_net_private p; + int bucket; +}; + +typedef int mh_filter_t(struct sock *, struct sk_buff *); + +struct raw6_frag_vec { + struct msghdr *msg; + int hlen; + char c[4]; +}; + +struct ipv6_rpl_sr_hdr { + __u8 nexthdr; + __u8 hdrlen; + __u8 type; + __u8 segments_left; + __u32 cmpre: 4; + __u32 cmpri: 4; + __u32 reserved: 4; + __u32 pad: 4; + __u32 reserved1: 16; + union { + struct { + struct {} __empty_addr; + struct in6_addr addr[0]; + }; + struct { + struct {} __empty_data; + __u8 data[0]; + }; + } segments; +}; + +enum { + ILA_ATTR_UNSPEC = 0, + ILA_ATTR_LOCATOR = 1, + ILA_ATTR_IDENTIFIER = 2, + ILA_ATTR_LOCATOR_MATCH = 3, + ILA_ATTR_IFINDEX = 4, + ILA_ATTR_DIR = 5, + ILA_ATTR_PAD = 6, + ILA_ATTR_CSUM_MODE = 7, + ILA_ATTR_IDENT_TYPE = 8, + ILA_ATTR_HOOK_TYPE = 9, + __ILA_ATTR_MAX = 10, +}; + +enum { + ILA_CMD_UNSPEC = 0, + ILA_CMD_ADD = 1, + ILA_CMD_DEL = 2, + ILA_CMD_GET = 3, + ILA_CMD_FLUSH = 4, + __ILA_CMD_MAX = 5, +}; + +struct xfrm6_tunnel { + int (*handler)(struct sk_buff *); + int (*cb_handler)(struct sk_buff *, int); + int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); + struct xfrm6_tunnel *next; + int priority; +}; + +struct ip6_tnl_parm { + char name[16]; + int link; + __u8 proto; + __u8 encap_limit; + __u8 hop_limit; + __be32 flowinfo; + __u32 flags; + struct in6_addr laddr; + struct in6_addr raddr; +}; + +struct ip6_tnl_net { + struct net_device *fb_tnl_dev; + struct ip6_tnl *tnls_r_l[32]; + struct ip6_tnl *tnls_wc[1]; + struct ip6_tnl **tnls[2]; + struct ip6_tnl *collect_md_tun; +}; + +struct ipv6_tel_txoption { + struct ipv6_txoptions ops; + __u8 dst_opt[8]; +}; + +enum { + PIM_TYPE_HELLO = 0, + PIM_TYPE_REGISTER = 1, + PIM_TYPE_REGISTER_STOP = 2, + PIM_TYPE_JOIN_PRUNE = 3, + PIM_TYPE_BOOTSTRAP = 4, + PIM_TYPE_ASSERT = 5, + PIM_TYPE_GRAFT = 6, + PIM_TYPE_GRAFT_ACK = 7, + PIM_TYPE_CANDIDATE_RP_ADV = 8, +}; + +struct pimhdr { + __u8 type; + __u8 reserved; + __be16 csum; +}; + +enum { + BRIDGE_QUERIER_UNSPEC = 0, + BRIDGE_QUERIER_IP_ADDRESS = 1, + BRIDGE_QUERIER_IP_PORT = 2, + BRIDGE_QUERIER_IP_OTHER_TIMER = 3, + BRIDGE_QUERIER_PAD = 4, + BRIDGE_QUERIER_IPV6_ADDRESS = 5, + BRIDGE_QUERIER_IPV6_PORT = 6, + BRIDGE_QUERIER_IPV6_OTHER_TIMER = 7, + __BRIDGE_QUERIER_MAX = 8, +}; + +struct br_ip_list { + struct list_head list; + struct br_ip addr; +}; + +struct net_bridge_group_src { + struct hlist_node node; + struct br_ip addr; + struct net_bridge_port_group *pg; + u8 flags; + u8 src_query_rexmit_cnt; + struct timer_list timer; + struct net_bridge *br; + struct net_bridge_mcast_gc mcast_gc; + struct callback_head rcu; +}; + +struct ebt_arp_info { + __be16 htype; + __be16 ptype; + __be16 opcode; + __be32 saddr; + __be32 smsk; + __be32 daddr; + __be32 dmsk; + unsigned char smaddr[6]; + unsigned char smmsk[6]; + unsigned char dmaddr[6]; + unsigned char dmmsk[6]; + __u8 bitmask; + __u8 invflags; +}; + +struct ebt_redirect_info { + int target; +}; + +enum rpc_reply_stat { + RPC_MSG_ACCEPTED = 0, + RPC_MSG_DENIED = 1, +}; + +enum rpc_reject_stat { + RPC_MISMATCH = 0, + RPC_AUTH_ERROR = 1, +}; + +enum { + SVC_POOL_AUTO = -1, + SVC_POOL_GLOBAL = 0, + SVC_POOL_PERCPU = 1, + SVC_POOL_PERNODE = 2, +}; + +struct svc_pool_map { + int count; + int mode; + unsigned int npools; + unsigned int *pool_to; + unsigned int *to_pool; +}; + +typedef struct xdr_netobj gssx_buffer; + +typedef struct xdr_netobj utf8string; + +typedef struct xdr_netobj gssx_OID; + +struct gssx_option { + gssx_buffer option; + gssx_buffer value; +}; + +struct gssx_option_array { + u32 count; + struct gssx_option *data; +}; + +struct gssx_status { + u64 major_status; + gssx_OID mech; + u64 minor_status; + utf8string major_status_string; + utf8string minor_status_string; + gssx_buffer server_ctx; + struct gssx_option_array options; +}; + +struct gssx_call_ctx { + utf8string locale; + gssx_buffer server_ctx; + struct gssx_option_array options; +}; + +struct gssx_name_attr { + gssx_buffer attr; + gssx_buffer value; + struct gssx_option_array extensions; +}; + +struct gssx_name_attr_array { + u32 count; + struct gssx_name_attr *data; +}; + +struct gssx_name { + gssx_buffer display_name; +}; + +typedef struct gssx_name gssx_name; + +struct gssx_cred_element { + gssx_name MN; + gssx_OID mech; + u32 cred_usage; + u64 initiator_time_rec; + u64 acceptor_time_rec; + struct gssx_option_array options; +}; + +struct gssx_cred_element_array { + u32 count; + struct gssx_cred_element *data; +}; + +struct gssx_cred { + gssx_name desired_name; + struct gssx_cred_element_array elements; + gssx_buffer cred_handle_reference; + u32 needs_release; +}; + +struct gssx_ctx { + gssx_buffer exported_context_token; + gssx_buffer state; + u32 need_release; + gssx_OID mech; + gssx_name src_name; + gssx_name targ_name; + u64 lifetime; + u64 ctx_flags; + u32 locally_initiated; + u32 open; + struct gssx_option_array options; +}; + +struct gssx_cb { + u64 initiator_addrtype; + gssx_buffer initiator_address; + u64 acceptor_addrtype; + gssx_buffer acceptor_address; + gssx_buffer application_data; +}; + +struct gssp_in_token { + struct page **pages; + unsigned int page_base; + unsigned int page_len; +}; + +struct gssx_arg_accept_sec_context { + struct gssx_call_ctx call_ctx; + struct gssx_ctx *context_handle; + struct gssx_cred *cred_handle; + struct gssp_in_token input_token; + struct gssx_cb *input_cb; + u32 ret_deleg_cred; + struct gssx_option_array options; + struct page **pages; + unsigned int npages; +}; + +struct gssx_res_accept_sec_context { + struct gssx_status status; + struct gssx_ctx *context_handle; + gssx_buffer *output_token; + struct gssx_option_array options; +}; + +enum sctp_sn_error { + SCTP_FAILED_THRESHOLD = 0, + SCTP_RECEIVED_SACK = 1, + SCTP_HEARTBEAT_SUCCESS = 2, + SCTP_RESPONSE_TO_USER_REQ = 3, + SCTP_INTERNAL_ERROR = 4, + SCTP_SHUTDOWN_GUARD_EXPIRES = 5, + SCTP_PEER_FAULTY = 6, +}; + +typedef enum sctp_sn_error sctp_sn_error_t; + +enum sctp_transport_cmd { + SCTP_TRANSPORT_UP = 0, + SCTP_TRANSPORT_DOWN = 1, + SCTP_TRANSPORT_PF = 2, +}; + +enum sctp_retransmit_reason { + SCTP_RTXR_T3_RTX = 0, + SCTP_RTXR_FAST_RTX = 1, + SCTP_RTXR_PMTUD = 2, + SCTP_RTXR_T1_RTX = 3, +}; + +enum sctp_lower_cwnd { + SCTP_LOWER_CWND_T3_RTX = 0, + SCTP_LOWER_CWND_FAST_RTX = 1, + SCTP_LOWER_CWND_ECNE = 2, + SCTP_LOWER_CWND_INACTIVE = 3, +}; + +typedef enum sctp_disposition sctp_state_fn_t(struct net *, const struct sctp_endpoint *, const struct sctp_association *, const union sctp_subtype, void *, struct sctp_cmd_seq *); + +typedef void sctp_timer_event_t(struct timer_list *); + +struct sctp_sm_table_entry { + sctp_state_fn_t *fn; + const char *name; +}; + +typedef const char *printfn_t(union sctp_subtype); + +struct virtio_9p_config { + __virtio16 tag_len; + __u8 tag[0]; +}; + +struct virtio_chan { + bool inuse; + spinlock_t lock; + struct p9_client *client; + struct virtio_device *vdev; + struct virtqueue *vq; + int ring_bufs_avail; + wait_queue_head_t *vc_wq; + long unsigned int p9_max_pages; + struct scatterlist sg[128]; + char *tag; + struct list_head chan_list; +}; + +struct ovs_header { + int dp_ifindex; +}; + +struct ovs_key_ct_tuple_ipv4 { + __be32 ipv4_src; + __be32 ipv4_dst; + __be16 src_port; + __be16 dst_port; + __u8 ipv4_proto; +}; + +struct ovs_key_ct_tuple_ipv6 { + __be32 ipv6_src[4]; + __be32 ipv6_dst[4]; + __be16 src_port; + __be16 dst_port; + __u8 ipv6_proto; +}; + +enum ovs_ct_attr { + OVS_CT_ATTR_UNSPEC = 0, + OVS_CT_ATTR_COMMIT = 1, + OVS_CT_ATTR_ZONE = 2, + OVS_CT_ATTR_MARK = 3, + OVS_CT_ATTR_LABELS = 4, + OVS_CT_ATTR_HELPER = 5, + OVS_CT_ATTR_NAT = 6, + OVS_CT_ATTR_FORCE_COMMIT = 7, + OVS_CT_ATTR_EVENTMASK = 8, + OVS_CT_ATTR_TIMEOUT = 9, + __OVS_CT_ATTR_MAX = 10, +}; + +enum ovs_nat_attr { + OVS_NAT_ATTR_UNSPEC = 0, + OVS_NAT_ATTR_SRC = 1, + OVS_NAT_ATTR_DST = 2, + OVS_NAT_ATTR_IP_MIN = 3, + OVS_NAT_ATTR_IP_MAX = 4, + OVS_NAT_ATTR_PROTO_MIN = 5, + OVS_NAT_ATTR_PROTO_MAX = 6, + OVS_NAT_ATTR_PERSISTENT = 7, + OVS_NAT_ATTR_PROTO_HASH = 8, + OVS_NAT_ATTR_PROTO_RANDOM = 9, + __OVS_NAT_ATTR_MAX = 10, +}; + +enum ovs_action_attr { + OVS_ACTION_ATTR_UNSPEC = 0, + OVS_ACTION_ATTR_OUTPUT = 1, + OVS_ACTION_ATTR_USERSPACE = 2, + OVS_ACTION_ATTR_SET = 3, + OVS_ACTION_ATTR_PUSH_VLAN = 4, + OVS_ACTION_ATTR_POP_VLAN = 5, + OVS_ACTION_ATTR_SAMPLE = 6, + OVS_ACTION_ATTR_RECIRC = 7, + OVS_ACTION_ATTR_HASH = 8, + OVS_ACTION_ATTR_PUSH_MPLS = 9, + OVS_ACTION_ATTR_POP_MPLS = 10, + OVS_ACTION_ATTR_SET_MASKED = 11, + OVS_ACTION_ATTR_CT = 12, + OVS_ACTION_ATTR_TRUNC = 13, + OVS_ACTION_ATTR_PUSH_ETH = 14, + OVS_ACTION_ATTR_POP_ETH = 15, + OVS_ACTION_ATTR_CT_CLEAR = 16, + OVS_ACTION_ATTR_PUSH_NSH = 17, + OVS_ACTION_ATTR_POP_NSH = 18, + OVS_ACTION_ATTR_METER = 19, + OVS_ACTION_ATTR_CLONE = 20, + OVS_ACTION_ATTR_CHECK_PKT_LEN = 21, + OVS_ACTION_ATTR_ADD_MPLS = 22, + OVS_ACTION_ATTR_DEC_TTL = 23, + OVS_ACTION_ATTR_DROP = 24, + OVS_ACTION_ATTR_PSAMPLE = 25, + __OVS_ACTION_ATTR_MAX = 26, + OVS_ACTION_ATTR_SET_TO_MASKED = 27, +}; + +enum ovs_ct_limit_cmd { + OVS_CT_LIMIT_CMD_UNSPEC = 0, + OVS_CT_LIMIT_CMD_SET = 1, + OVS_CT_LIMIT_CMD_DEL = 2, + OVS_CT_LIMIT_CMD_GET = 3, +}; + +enum ovs_ct_limit_attr { + OVS_CT_LIMIT_ATTR_UNSPEC = 0, + OVS_CT_LIMIT_ATTR_ZONE_LIMIT = 1, + __OVS_CT_LIMIT_ATTR_MAX = 2, +}; + +struct ovs_zone_limit { + int zone_id; + __u32 limit; + __u32 count; +}; + +struct nf_conn_act_ct_ext { + int ifindex[2]; +}; + +struct ovs_ct_limit_info { + u32 default_limit; + struct hlist_head *limits; + struct nf_conncount_data *data; +}; + +enum ovs_drop_reason { + __OVS_DROP_REASON = 196608, + OVS_DROP_LAST_ACTION = 196609, + OVS_DROP_ACTION_ERROR = 196610, + OVS_DROP_EXPLICIT = 196611, + OVS_DROP_EXPLICIT_WITH_ERROR = 196612, + OVS_DROP_METER = 196613, + OVS_DROP_RECURSION_LIMIT = 196614, + OVS_DROP_DEFERRED_LIMIT = 196615, + OVS_DROP_FRAG_L2_TOO_LONG = 196616, + OVS_DROP_FRAG_INVALID_PROTO = 196617, + OVS_DROP_CONNTRACK = 196618, + OVS_DROP_IP_TTL = 196619, + OVS_DROP_MAX = 196620, +}; + +struct ovs_ct_len_tbl { + int maxlen; + int minlen; +}; + +struct md_mark { + u32 value; + u32 mask; +}; + +struct md_labels { + struct ovs_key_ct_labels value; + struct ovs_key_ct_labels mask; +}; + +enum ovs_ct_nat { + OVS_CT_NAT = 1, + OVS_CT_SRC_NAT = 2, + OVS_CT_DST_NAT = 4, +}; + +struct ovs_conntrack_info { + struct nf_conntrack_helper *helper; + struct nf_conntrack_zone zone; + struct nf_conn *ct; + u8 commit: 1; + u8 nat: 3; + u8 force: 1; + u8 have_eventmask: 1; + u16 family; + u32 eventmask; + struct md_mark mark; + struct md_labels labels; + char timeout[32]; + struct nf_ct_timeout *nf_ct_timeout; + struct nf_nat_range2 range; +}; + +struct ovs_ct_limit { + struct hlist_node hlist_node; + struct callback_head rcu; + u16 zone; + u32 limit; +}; + +enum l3mdev_type { + L3MDEV_TYPE_UNSPEC = 0, + L3MDEV_TYPE_VRF = 1, + __L3MDEV_TYPE_MAX = 2, +}; + +typedef int (*lookup_by_table_id_t)(struct net *, u32); + +struct l3mdev_handler { + lookup_by_table_id_t dev_lookup; +}; + +struct maple_metadata { + unsigned char end; + unsigned char gap; +}; + +struct maple_pnode; + +struct maple_range_64 { + struct maple_pnode *parent; + long unsigned int pivot[15]; + union { + void *slot[16]; + struct { + void *pad[15]; + struct maple_metadata meta; + }; + }; +}; + +struct maple_arange_64 { + struct maple_pnode *parent; + long unsigned int pivot[9]; + void *slot[10]; + long unsigned int gap[10]; + struct maple_metadata meta; +}; + +struct maple_topiary { + struct maple_pnode *parent; + struct maple_enode *next; +}; + +enum maple_type { + maple_dense = 0, + maple_leaf_64 = 1, + maple_range_64 = 2, + maple_arange_64 = 3, +}; + +struct maple_node { + union { + struct { + struct maple_pnode *parent; + void *slot[31]; + }; + struct { + void *pad; + struct callback_head rcu; + struct maple_enode *piv_parent; + unsigned char parent_slot; + enum maple_type type; + unsigned char slot_len; + unsigned int ma_flags; + }; + struct maple_range_64 mr64; + struct maple_arange_64 ma64; + struct maple_alloc alloc; + }; +}; + +struct ma_topiary { + struct maple_enode *head; + struct maple_enode *tail; + struct maple_tree *mtree; +}; + +struct ma_wr_state { + struct ma_state *mas; + struct maple_node *node; + long unsigned int r_min; + long unsigned int r_max; + enum maple_type type; + unsigned char offset_end; + long unsigned int *pivots; + long unsigned int end_piv; + void **slots; + void *entry; + void *content; +}; + +struct trace_event_raw_ma_op { + struct trace_entry ent; + const char *fn; + long unsigned int min; + long unsigned int max; + long unsigned int index; + long unsigned int last; + void *node; + char __data[0]; +}; + +struct trace_event_raw_ma_read { + struct trace_entry ent; + const char *fn; + long unsigned int min; + long unsigned int max; + long unsigned int index; + long unsigned int last; + void *node; + char __data[0]; +}; + +struct trace_event_raw_ma_write { + struct trace_entry ent; + const char *fn; + long unsigned int min; + long unsigned int max; + long unsigned int index; + long unsigned int last; + long unsigned int piv; + void *val; + void *node; + char __data[0]; +}; + +struct trace_event_data_offsets_ma_op {}; + +struct trace_event_data_offsets_ma_read {}; + +struct trace_event_data_offsets_ma_write {}; + +typedef void (*btf_trace_ma_op)(void *, const char *, struct ma_state *); + +typedef void (*btf_trace_ma_read)(void *, const char *, struct ma_state *); + +typedef void (*btf_trace_ma_write)(void *, const char *, struct ma_state *, long unsigned int, void *); + +struct maple_big_node { + struct maple_pnode *parent; + long unsigned int pivot[33]; + union { + struct maple_enode *slot[34]; + struct { + long unsigned int padding[21]; + long unsigned int gap[21]; + }; + }; + unsigned char b_end; + enum maple_type type; +}; + +struct maple_subtree_state { + struct ma_state *orig_l; + struct ma_state *orig_r; + struct ma_state *l; + struct ma_state *m; + struct ma_state *r; + struct ma_topiary *free; + struct ma_topiary *destroy; + struct maple_big_node *bn; +}; + +enum { + MAX_IORES_LEVEL = 5, +}; + +struct region_devres { + struct resource *parent; + resource_size_t start; + resource_size_t n; +}; + +struct semaphore_waiter { + struct list_head list; + struct task_struct *task; + bool up; +}; + +enum rwsem_waiter_type { + RWSEM_WAITING_FOR_WRITE = 0, + RWSEM_WAITING_FOR_READ = 1, +}; + +struct rwsem_waiter { + struct list_head list; + struct task_struct *task; + enum rwsem_waiter_type type; + long unsigned int timeout; + bool handoff_set; +}; + +enum rwsem_wake_type { + RWSEM_WAKE_ANY = 0, + RWSEM_WAKE_READERS = 1, + RWSEM_WAKE_READ_OWNED = 2, +}; + +enum owner_state { + OWNER_NULL = 1, + OWNER_WRITER = 2, + OWNER_READER = 4, + OWNER_NONSPINNABLE = 8, +}; + +struct module_sect_attr { + struct bin_attribute battr; + long unsigned int address; +}; + +struct module_sect_attrs { + struct attribute_group grp; + unsigned int nsections; + struct module_sect_attr attrs[0]; +}; + +struct module_notes_attrs { + struct kobject *dir; + unsigned int notes; + struct bin_attribute attrs[0]; +}; + +struct stacktrace_cookie { + long unsigned int *store; + unsigned int size; + unsigned int skip; + unsigned int len; +}; + +typedef struct { + spinlock_t *lock; +} class_spinlock_irq_t; + +typedef struct sigevent sigevent_t; + +struct cgroup_fs_context { + struct kernfs_fs_context kfc; + struct cgroup_root *root; + struct cgroup_namespace *ns; + unsigned int flags; + bool cpuset_clone_children; + bool none; + bool all_ss; + u16 subsys_mask; + char *name; + char *release_agent; +}; + +enum cgroup_filetype { + CGROUP_FILE_PROCS = 0, + CGROUP_FILE_TASKS = 1, +}; + +struct cgroup_pidlist { + struct { + enum cgroup_filetype type; + struct pid_namespace *ns; + } key; + pid_t *list; + int length; + struct list_head links; + struct cgroup *owner; + struct delayed_work destroy_dwork; +}; + +struct cgroup_file_ctx { + struct cgroup_namespace *ns; + struct { + void *trigger; + } psi; + struct { + bool started; + struct css_task_iter iter; + } procs; + struct { + struct cgroup_pidlist *pidlist; + } procs1; + struct cgroup_of_peak peak; +}; + +struct cgrp_cset_link { + struct cgroup *cgrp; + struct css_set *cset; + struct list_head cset_link; + struct list_head cgrp_link; +}; + +struct cgroup_mgctx { + struct list_head preloaded_src_csets; + struct list_head preloaded_dst_csets; + struct cgroup_taskset tset; + u16 ss_mask; +}; + +enum cgroup1_param { + Opt_all = 0, + Opt_clone_children = 1, + Opt_cpuset_v2_mode = 2, + Opt_name = 3, + Opt_none = 4, + Opt_noprefix = 5, + Opt_release_agent = 6, + Opt_xattr = 7, + Opt_favordynmods = 8, + Opt_nofavordynmods = 9, +}; + +struct stat_node { + struct rb_node node; + void *stat; +}; + +struct stat_session { + struct list_head session_list; + struct tracer_stat *ts; + struct rb_root stat_root; + struct mutex stat_mutex; + struct dentry *file; +}; + +struct module_string { + struct list_head next; + struct module *module; + char *str; +}; + +enum { + FORMAT_HEADER = 1, + FORMAT_FIELD_SEPERATOR = 2, + FORMAT_PRINTFMT = 3, +}; + +struct boot_triggers { + const char *event; + char *trigger; +}; + +struct event_probe_data { + struct trace_event_file *file; + long unsigned int count; + int ref; + bool enable; +}; + +struct bpf_timer { + __u64 __opaque[2]; +}; + +struct bpf_wq { + __u64 __opaque[2]; +}; + +struct bpf_list_head { + __u64 __opaque[2]; +}; + +struct bpf_list_node { + __u64 __opaque[3]; +}; + +struct bpf_rb_root { + __u64 __opaque[2]; +}; + +struct bpf_rb_node { + __u64 __opaque[4]; +}; + +struct bpf_refcount { + __u32 __opaque[1]; +}; + +struct bpf_pidns_info { + __u32 pid; + __u32 tgid; +}; + +enum { + BPF_F_TIMER_ABS = 1, + BPF_F_TIMER_CPU_PIN = 2, +}; + +enum bpf_kfunc_flags { + BPF_F_PAD_ZEROS = 1, +}; + +struct bpf_rb_node_kern { + struct rb_node rb_node; + void *owner; +}; + +struct bpf_list_node_kern { + struct list_head list_head; + void *owner; +}; + +typedef u64 (*btf_bpf_map_lookup_elem)(struct bpf_map *, void *); + +typedef u64 (*btf_bpf_map_update_elem)(struct bpf_map *, void *, void *, u64); + +typedef u64 (*btf_bpf_map_delete_elem)(struct bpf_map *, void *); + +typedef u64 (*btf_bpf_map_push_elem)(struct bpf_map *, void *, u64); + +typedef u64 (*btf_bpf_map_pop_elem)(struct bpf_map *, void *); + +typedef u64 (*btf_bpf_map_peek_elem)(struct bpf_map *, void *); + +typedef u64 (*btf_bpf_map_lookup_percpu_elem)(struct bpf_map *, void *, u32); + +typedef u64 (*btf_bpf_get_smp_processor_id)(void); + +typedef u64 (*btf_bpf_get_numa_node_id)(void); + +typedef u64 (*btf_bpf_ktime_get_ns)(void); + +typedef u64 (*btf_bpf_ktime_get_boot_ns)(void); + +typedef u64 (*btf_bpf_ktime_get_coarse_ns)(void); + +typedef u64 (*btf_bpf_ktime_get_tai_ns)(void); + +typedef u64 (*btf_bpf_get_current_pid_tgid)(void); + +typedef u64 (*btf_bpf_get_current_uid_gid)(void); + +typedef u64 (*btf_bpf_get_current_comm)(char *, u32); + +typedef u64 (*btf_bpf_spin_lock)(struct bpf_spin_lock *); + +typedef u64 (*btf_bpf_spin_unlock)(struct bpf_spin_lock *); + +typedef u64 (*btf_bpf_jiffies64)(void); + +typedef u64 (*btf_bpf_get_current_cgroup_id)(void); + +typedef u64 (*btf_bpf_get_current_ancestor_cgroup_id)(int); + +typedef u64 (*btf_bpf_strtol)(const char *, size_t, u64, s64 *); + +typedef u64 (*btf_bpf_strtoul)(const char *, size_t, u64, u64 *); + +typedef u64 (*btf_bpf_strncmp)(const char *, u32, const char *); + +typedef u64 (*btf_bpf_get_ns_current_pid_tgid)(u64, u64, struct bpf_pidns_info *, u32); + +typedef u64 (*btf_bpf_event_output_data)(void *, struct bpf_map *, u64, void *, u64); + +typedef u64 (*btf_bpf_copy_from_user)(void *, u32, const void *); + +typedef u64 (*btf_bpf_copy_from_user_task)(void *, u32, const void *, struct task_struct *, u64); + +typedef u64 (*btf_bpf_per_cpu_ptr)(const void *, u32); + +typedef u64 (*btf_bpf_this_cpu_ptr)(const void *); + +struct bpf_bprintf_buffers { + char bin_args[512]; + char buf[1024]; +}; + +typedef u64 (*btf_bpf_snprintf)(char *, u32, char *, const void *, u32); + +struct bpf_async_cb { + struct bpf_map *map; + struct bpf_prog *prog; + void *callback_fn; + void *value; + union { + struct callback_head rcu; + struct work_struct delete_work; + }; + u64 flags; +}; + +struct bpf_hrtimer { + struct bpf_async_cb cb; + struct hrtimer timer; + atomic_t cancelling; +}; + +struct bpf_work { + struct bpf_async_cb cb; + struct work_struct work; + struct work_struct delete_work; +}; + +struct bpf_async_kern { + union { + struct bpf_async_cb *cb; + struct bpf_hrtimer *timer; + struct bpf_work *work; + }; + struct bpf_spin_lock lock; +}; + +enum bpf_async_type { + BPF_ASYNC_TYPE_TIMER = 0, + BPF_ASYNC_TYPE_WQ = 1, +}; + +typedef u64 (*btf_bpf_timer_init)(struct bpf_async_kern *, struct bpf_map *, u64); + +typedef u64 (*btf_bpf_timer_set_callback)(struct bpf_async_kern *, void *, struct bpf_prog_aux *); + +typedef u64 (*btf_bpf_timer_start)(struct bpf_async_kern *, u64, u64); + +typedef u64 (*btf_bpf_timer_cancel)(struct bpf_async_kern *); + +typedef u64 (*btf_bpf_kptr_xchg)(void *, void *); + +typedef u64 (*btf_bpf_dynptr_from_mem)(void *, u32, u64, struct bpf_dynptr_kern *); + +typedef u64 (*btf_bpf_dynptr_read)(void *, u32, const struct bpf_dynptr_kern *, u32, u64); + +typedef u64 (*btf_bpf_dynptr_write)(const struct bpf_dynptr_kern *, u32, void *, u32, u64); + +typedef u64 (*btf_bpf_dynptr_data)(const struct bpf_dynptr_kern *, u32, u32); + +typedef u64 (*btf_bpf_current_task_under_cgroup)(struct bpf_map *, u32); + +struct bpf_throw_ctx { + struct bpf_prog_aux *aux; + u64 sp; + u64 bp; + int cnt; +}; + +struct bpf_iter_bits { + __u64 __opaque[2]; +}; + +struct bpf_iter_bits_kern { + union { + __u64 *bits; + __u64 bits_copy; + }; + int nr_bits; + int bit; +}; + +struct bpf_mem_cache { + struct llist_head free_llist; + local_t active; + struct llist_head free_llist_extra; + struct irq_work refill_work; + struct obj_cgroup *objcg; + int unit_size; + int free_cnt; + int low_watermark; + int high_watermark; + int batch; + int percpu_size; + bool draining; + struct bpf_mem_cache *tgt; + struct llist_head free_by_rcu; + struct llist_node *free_by_rcu_tail; + struct llist_head waiting_for_gp; + struct llist_node *waiting_for_gp_tail; + struct callback_head rcu; + atomic_t call_rcu_in_progress; + struct llist_head free_llist_extra_rcu; + struct llist_head free_by_rcu_ttrace; + struct llist_head waiting_for_gp_ttrace; + struct callback_head rcu_ttrace; + atomic_t call_rcu_ttrace_in_progress; +}; + +struct bpf_mem_caches { + struct bpf_mem_cache cache[11]; +}; + +enum btf_field_iter_kind { + BTF_FIELD_ITER_IDS = 0, + BTF_FIELD_ITER_STRS = 1, +}; + +struct btf_field_desc { + int t_off_cnt; + int t_offs[2]; + int m_sz; + int m_off_cnt; + int m_offs[1]; +}; + +struct btf_field_iter { + struct btf_field_desc desc; + void *p; + int m_idx; + int off_idx; + int vlen; +}; + +struct btf_relocate { + struct btf *btf; + const struct btf *base_btf; + const struct btf *dist_base_btf; + unsigned int nr_base_types; + unsigned int nr_split_types; + unsigned int nr_dist_base_types; + int dist_str_len; + int base_str_len; + __u32 *id_map; + __u32 *str_map; +}; + +struct btf_name_info { + const char *name; + bool needs_size: 1; + unsigned int size: 31; + __u32 id; +}; + +typedef struct { + void *lock; + long unsigned int flags; +} class_irqsave_t; + +enum perf_event_task_context { + perf_invalid_context = -1, + perf_hw_context = 0, + perf_sw_context = 1, + perf_nr_task_contexts = 2, +}; + +enum perf_branch_sample_type { + PERF_SAMPLE_BRANCH_USER = 1, + PERF_SAMPLE_BRANCH_KERNEL = 2, + PERF_SAMPLE_BRANCH_HV = 4, + PERF_SAMPLE_BRANCH_ANY = 8, + PERF_SAMPLE_BRANCH_ANY_CALL = 16, + PERF_SAMPLE_BRANCH_ANY_RETURN = 32, + PERF_SAMPLE_BRANCH_IND_CALL = 64, + PERF_SAMPLE_BRANCH_ABORT_TX = 128, + PERF_SAMPLE_BRANCH_IN_TX = 256, + PERF_SAMPLE_BRANCH_NO_TX = 512, + PERF_SAMPLE_BRANCH_COND = 1024, + PERF_SAMPLE_BRANCH_CALL_STACK = 2048, + PERF_SAMPLE_BRANCH_IND_JUMP = 4096, + PERF_SAMPLE_BRANCH_CALL = 8192, + PERF_SAMPLE_BRANCH_NO_FLAGS = 16384, + PERF_SAMPLE_BRANCH_NO_CYCLES = 32768, + PERF_SAMPLE_BRANCH_TYPE_SAVE = 65536, + PERF_SAMPLE_BRANCH_HW_INDEX = 131072, + PERF_SAMPLE_BRANCH_PRIV_SAVE = 262144, + PERF_SAMPLE_BRANCH_COUNTERS = 524288, + PERF_SAMPLE_BRANCH_MAX = 1048576, +}; + +enum perf_sample_regs_abi { + PERF_SAMPLE_REGS_ABI_NONE = 0, + PERF_SAMPLE_REGS_ABI_32 = 1, + PERF_SAMPLE_REGS_ABI_64 = 2, +}; + +enum perf_event_read_format { + PERF_FORMAT_TOTAL_TIME_ENABLED = 1, + PERF_FORMAT_TOTAL_TIME_RUNNING = 2, + PERF_FORMAT_ID = 4, + PERF_FORMAT_GROUP = 8, + PERF_FORMAT_LOST = 16, + PERF_FORMAT_MAX = 32, +}; + +enum perf_event_ioc_flags { + PERF_IOC_FLAG_GROUP = 1, +}; + +struct perf_event_header { + __u32 type; + __u16 misc; + __u16 size; +}; + +struct perf_ns_link_info { + __u64 dev; + __u64 ino; +}; + +enum { + NET_NS_INDEX = 0, + UTS_NS_INDEX = 1, + IPC_NS_INDEX = 2, + PID_NS_INDEX = 3, + USER_NS_INDEX = 4, + MNT_NS_INDEX = 5, + CGROUP_NS_INDEX = 6, + NR_NAMESPACES = 7, +}; + +enum perf_event_type { + PERF_RECORD_MMAP = 1, + PERF_RECORD_LOST = 2, + PERF_RECORD_COMM = 3, + PERF_RECORD_EXIT = 4, + PERF_RECORD_THROTTLE = 5, + PERF_RECORD_UNTHROTTLE = 6, + PERF_RECORD_FORK = 7, + PERF_RECORD_READ = 8, + PERF_RECORD_SAMPLE = 9, + PERF_RECORD_MMAP2 = 10, + PERF_RECORD_AUX = 11, + PERF_RECORD_ITRACE_START = 12, + PERF_RECORD_LOST_SAMPLES = 13, + PERF_RECORD_SWITCH = 14, + PERF_RECORD_SWITCH_CPU_WIDE = 15, + PERF_RECORD_NAMESPACES = 16, + PERF_RECORD_KSYMBOL = 17, + PERF_RECORD_BPF_EVENT = 18, + PERF_RECORD_CGROUP = 19, + PERF_RECORD_TEXT_POKE = 20, + PERF_RECORD_AUX_OUTPUT_HW_ID = 21, + PERF_RECORD_MAX = 22, +}; + +enum perf_event_arm_regs { + PERF_REG_ARM64_X0 = 0, + PERF_REG_ARM64_X1 = 1, + PERF_REG_ARM64_X2 = 2, + PERF_REG_ARM64_X3 = 3, + PERF_REG_ARM64_X4 = 4, + PERF_REG_ARM64_X5 = 5, + PERF_REG_ARM64_X6 = 6, + PERF_REG_ARM64_X7 = 7, + PERF_REG_ARM64_X8 = 8, + PERF_REG_ARM64_X9 = 9, + PERF_REG_ARM64_X10 = 10, + PERF_REG_ARM64_X11 = 11, + PERF_REG_ARM64_X12 = 12, + PERF_REG_ARM64_X13 = 13, + PERF_REG_ARM64_X14 = 14, + PERF_REG_ARM64_X15 = 15, + PERF_REG_ARM64_X16 = 16, + PERF_REG_ARM64_X17 = 17, + PERF_REG_ARM64_X18 = 18, + PERF_REG_ARM64_X19 = 19, + PERF_REG_ARM64_X20 = 20, + PERF_REG_ARM64_X21 = 21, + PERF_REG_ARM64_X22 = 22, + PERF_REG_ARM64_X23 = 23, + PERF_REG_ARM64_X24 = 24, + PERF_REG_ARM64_X25 = 25, + PERF_REG_ARM64_X26 = 26, + PERF_REG_ARM64_X27 = 27, + PERF_REG_ARM64_X28 = 28, + PERF_REG_ARM64_X29 = 29, + PERF_REG_ARM64_LR = 30, + PERF_REG_ARM64_SP = 31, + PERF_REG_ARM64_PC = 32, + PERF_REG_ARM64_MAX = 33, + PERF_REG_ARM64_VG = 46, + PERF_REG_ARM64_EXTENDED_MAX = 47, +}; + +enum perf_pmu_scope { + PERF_PMU_SCOPE_NONE = 0, + PERF_PMU_SCOPE_CORE = 1, + PERF_PMU_SCOPE_DIE = 2, + PERF_PMU_SCOPE_CLUSTER = 3, + PERF_PMU_SCOPE_PKG = 4, + PERF_PMU_SCOPE_SYS_WIDE = 5, + PERF_PMU_MAX_SCOPE = 6, +}; + +enum perf_addr_filter_action_t { + PERF_ADDR_FILTER_ACTION_STOP = 0, + PERF_ADDR_FILTER_ACTION_START = 1, + PERF_ADDR_FILTER_ACTION_FILTER = 2, +}; + +struct perf_addr_filter { + struct list_head entry; + struct path path; + long unsigned int offset; + long unsigned int size; + enum perf_addr_filter_action_t action; +}; + +struct swevent_hlist { + struct hlist_head heads[256]; + struct callback_head callback_head; +}; + +struct pmu_event_list { + raw_spinlock_t lock; + struct list_head list; +}; + +struct perf_cpu_context { + struct perf_event_context ctx; + struct perf_event_context *task_ctx; + int online; + struct perf_cgroup *cgrp; + int heap_size; + struct perf_event **heap; + struct perf_event *heap_default[2]; +}; + +struct perf_pmu_events_attr { + struct device_attribute attr; + u64 id; + const char *event_str; +}; + +struct min_heap_char { + int nr; + int size; + char *data; + char preallocated[0]; +}; + +typedef struct min_heap_char min_heap_char; + +struct min_heap_callbacks { + bool (*less)(const void *, const void *, void *); + void (*swp)(void *, void *, void *); +}; + +typedef int (*remote_function_f)(void *); + +struct remote_function_call { + struct task_struct *p; + remote_function_f func; + void *info; + int ret; +}; + +enum event_type_t { + EVENT_FLEXIBLE = 1, + EVENT_PINNED = 2, + EVENT_TIME = 4, + EVENT_FROZEN = 8, + EVENT_CPU = 16, + EVENT_CGROUP = 32, + EVENT_ALL = 3, + EVENT_TIME_FROZEN = 12, +}; + +typedef struct { + struct perf_cpu_context *cpuctx; + struct perf_event_context *ctx; +} class_perf_ctx_lock_t; + +typedef void (*event_f)(struct perf_event *, struct perf_cpu_context *, struct perf_event_context *, void *); + +struct event_function_struct { + struct perf_event *event; + event_f func; + void *data; +}; + +struct __group_key { + int cpu; + struct pmu *pmu; + struct cgroup *cgroup; +}; + +struct stop_event_data { + struct perf_event *event; + unsigned int restart; +}; + +struct perf_event_min_heap { + int nr; + int size; + struct perf_event **data; + struct perf_event *preallocated[0]; +}; + +struct perf_read_data { + struct perf_event *event; + bool group; + int ret; +}; + +struct perf_read_event { + struct perf_event_header header; + u32 pid; + u32 tid; +}; + +typedef void perf_iterate_f(struct perf_event *, void *); + +struct remote_output { + struct perf_buffer *rb; + int err; +}; + +struct perf_task_event { + struct task_struct *task; + struct perf_event_context *task_ctx; + struct { + struct perf_event_header header; + u32 pid; + u32 ppid; + u32 tid; + u32 ptid; + u64 time; + } event_id; +}; + +struct perf_comm_event { + struct task_struct *task; + char *comm; + int comm_size; + struct { + struct perf_event_header header; + u32 pid; + u32 tid; + } event_id; +}; + +struct perf_namespaces_event { + struct task_struct *task; + struct { + struct perf_event_header header; + u32 pid; + u32 tid; + u64 nr_namespaces; + struct perf_ns_link_info link_info[7]; + } event_id; +}; + +struct perf_cgroup_event { + char *path; + int path_size; + struct { + struct perf_event_header header; + u64 id; + char path[0]; + } event_id; +}; + +struct perf_mmap_event { + struct vm_area_struct *vma; + const char *file_name; + int file_size; + int maj; + int min; + u64 ino; + u64 ino_generation; + u32 prot; + u32 flags; + u8 build_id[20]; + u32 build_id_size; + struct { + struct perf_event_header header; + u32 pid; + u32 tid; + u64 start; + u64 len; + u64 pgoff; + } event_id; +}; + +struct perf_switch_event { + struct task_struct *task; + struct task_struct *next_prev; + struct { + struct perf_event_header header; + u32 next_prev_pid; + u32 next_prev_tid; + } event_id; +}; + +struct perf_ksymbol_event { + const char *name; + int name_len; + struct { + struct perf_event_header header; + u64 addr; + u32 len; + u16 ksym_type; + u16 flags; + } event_id; +}; + +struct perf_bpf_event { + struct bpf_prog *prog; + struct { + struct perf_event_header header; + u16 type; + u16 flags; + u32 id; + u8 tag[8]; + } event_id; +}; + +struct perf_text_poke_event { + const void *old_bytes; + const void *new_bytes; + size_t pad; + u16 old_len; + u16 new_len; + struct { + struct perf_event_header header; + u64 addr; + } event_id; +}; + +struct swevent_htable { + struct swevent_hlist *swevent_hlist; + struct mutex hlist_mutex; + int hlist_refcount; +}; + +enum perf_probe_config { + PERF_PROBE_CONFIG_IS_RETPROBE = 1, + PERF_UPROBE_REF_CTR_OFFSET_BITS = 32, + PERF_UPROBE_REF_CTR_OFFSET_SHIFT = 32, +}; + +enum { + IF_ACT_NONE = -1, + IF_ACT_FILTER = 0, + IF_ACT_START = 1, + IF_ACT_STOP = 2, + IF_SRC_FILE = 3, + IF_SRC_KERNEL = 4, + IF_SRC_FILEADDR = 5, + IF_SRC_KERNELADDR = 6, +}; + +enum { + IF_STATE_ACTION = 0, + IF_STATE_SOURCE = 1, + IF_STATE_END = 2, +}; + +struct perf_aux_event { + struct perf_event_header header; + u64 hw_id; +}; + +struct perf_aux_event___2 { + struct perf_event_header header; + u32 pid; + u32 tid; +}; + +struct perf_aux_event___3 { + struct perf_event_header header; + u64 offset; + u64 size; + u64 flags; +}; + +struct reserve_mem_table { + char name[16]; + phys_addr_t start; + phys_addr_t size; +}; + +enum { + RES_USAGE = 0, + RES_RSVD_USAGE = 1, + RES_LIMIT = 2, + RES_RSVD_LIMIT = 3, + RES_MAX_USAGE = 4, + RES_RSVD_MAX_USAGE = 5, + RES_FAILCNT = 6, + RES_RSVD_FAILCNT = 7, +}; + +typedef int class_get_unused_fd_t; + +struct mnt_ns_info { + __u32 size; + __u32 nr_mounts; + __u64 mnt_ns_id; +}; + +struct ns_get_path_task_args { + const struct proc_ns_operations *ns_ops; + struct task_struct *task; +}; + +struct dio_submit { + struct bio *bio; + unsigned int blkbits; + unsigned int blkfactor; + unsigned int start_zero_done; + int pages_in_io; + sector_t block_in_file; + unsigned int blocks_available; + int reap_counter; + sector_t final_block_in_request; + int boundary; + get_block_t *get_block; + loff_t logical_offset_in_bio; + sector_t final_block_in_bio; + sector_t next_block_for_io; + struct page *cur_page; + unsigned int cur_page_offset; + unsigned int cur_page_len; + sector_t cur_page_block; + loff_t cur_page_fs_offset; + struct iov_iter *iter; + unsigned int head; + unsigned int tail; + size_t from; + size_t to; +}; + +struct dio { + int flags; + blk_opf_t opf; + struct gendisk *bio_disk; + struct inode *inode; + loff_t i_size; + dio_iodone_t *end_io; + bool is_pinned; + void *private; + spinlock_t bio_lock; + int page_errors; + int is_async; + bool defer_completion; + bool should_dirty; + int io_error; + long unsigned int refcount; + struct bio *bio_list; + struct task_struct *waiter; + struct kiocb *iocb; + ssize_t result; + union { + struct page *pages[64]; + struct work_struct complete_work; + }; + long: 64; +}; + +struct fscrypt_nokey_name { + u32 dirhash[2]; + u8 bytes[149]; + u8 sha256[32]; +}; + +struct ext4_filename { + const struct qstr *usr_fname; + struct fscrypt_str disk_name; + struct dx_hash_info hinfo; + struct fscrypt_str crypto_buf; +}; + +struct ext4_xattr_entry { + __u8 e_name_len; + __u8 e_name_index; + __le16 e_value_offs; + __le32 e_value_inum; + __le32 e_value_size; + __le32 e_hash; + char e_name[0]; +}; + +struct ext4_xattr_info { + const char *name; + const void *value; + size_t value_len; + int name_index; + int in_inode; +}; + +struct ext4_xattr_search { + struct ext4_xattr_entry *first; + void *base; + void *end; + struct ext4_xattr_entry *here; + int not_found; +}; + +struct ext4_xattr_ibody_find { + struct ext4_xattr_search s; + struct ext4_iloc iloc; +}; + +struct squashfs_stream { + void *stream; + struct mutex mutex; +}; + +struct fatent_ra { + sector_t cur; + sector_t limit; + unsigned int ra_blocks; + sector_t ra_advance; + sector_t ra_next; + sector_t ra_limit; +}; + +struct SU_SP_s { + __u8 magic[2]; + __u8 skip; +}; + +struct SU_CE_s { + __u8 extent[8]; + __u8 offset[8]; + __u8 size[8]; +}; + +struct SU_ER_s { + __u8 len_id; + __u8 len_des; + __u8 len_src; + __u8 ext_ver; + __u8 data[0]; +}; + +struct RR_RR_s { + __u8 flags[1]; +}; + +struct RR_PX_s { + __u8 mode[8]; + __u8 n_links[8]; + __u8 uid[8]; + __u8 gid[8]; +}; + +struct RR_PN_s { + __u8 dev_high[8]; + __u8 dev_low[8]; +}; + +struct SL_component { + __u8 flags; + __u8 len; + __u8 text[0]; +}; + +struct RR_SL_s { + __u8 flags; + struct SL_component link; +}; + +struct RR_NM_s { + __u8 flags; + char name[0]; +}; + +struct RR_CL_s { + __u8 location[8]; +}; + +struct RR_PL_s { + __u8 location[8]; +}; + +struct RR_TF_s { + __u8 flags; + __u8 data[0]; +}; + +struct RR_ZF_s { + __u8 algorithm[2]; + __u8 parms[2]; + __u8 real_size[8]; +}; + +struct rock_ridge { + __u8 signature[2]; + __u8 len; + __u8 version; + union { + struct SU_SP_s SP; + struct SU_CE_s CE; + struct SU_ER_s ER; + struct RR_RR_s RR; + struct RR_PX_s PX; + struct RR_PN_s PN; + struct RR_SL_s SL; + struct RR_NM_s NM; + struct RR_CL_s CL; + struct RR_PL_s PL; + struct RR_TF_s TF; + struct RR_ZF_s ZF; + } u; +}; + +struct rock_state { + void *buffer; + unsigned char *chr; + int len; + int cont_size; + int cont_extent; + int cont_offset; + int cont_loops; + struct inode *inode; +}; + +struct nfs3_sattrargs { + struct nfs_fh *fh; + struct iattr *sattr; + unsigned int guard; + struct timespec64 guardtime; +}; + +struct nfs3_diropargs { + struct nfs_fh *fh; + const char *name; + unsigned int len; +}; + +struct nfs3_accessargs { + struct nfs_fh *fh; + __u32 access; +}; + +struct nfs3_createargs { + struct nfs_fh *fh; + const char *name; + unsigned int len; + struct iattr *sattr; + enum nfs3_createmode createmode; + __be32 verifier[2]; +}; + +struct nfs3_mkdirargs { + struct nfs_fh *fh; + const char *name; + unsigned int len; + struct iattr *sattr; +}; + +struct nfs3_symlinkargs { + struct nfs_fh *fromfh; + const char *fromname; + unsigned int fromlen; + struct page **pages; + unsigned int pathlen; + struct iattr *sattr; +}; + +struct nfs3_mknodargs { + struct nfs_fh *fh; + const char *name; + unsigned int len; + enum nfs3_ftype type; + struct iattr *sattr; + dev_t rdev; +}; + +struct nfs3_linkargs { + struct nfs_fh *fromfh; + struct nfs_fh *tofh; + const char *toname; + unsigned int tolen; +}; + +struct nfs3_readdirargs { + struct nfs_fh *fh; + __u64 cookie; + __be32 verf[2]; + bool plus; + unsigned int count; + struct page **pages; +}; + +struct nfs3_diropres { + struct nfs_fattr *dir_attr; + struct nfs_fh *fh; + struct nfs_fattr *fattr; +}; + +struct nfs3_accessres { + struct nfs_fattr *fattr; + __u32 access; +}; + +struct nfs3_readlinkargs { + struct nfs_fh *fh; + unsigned int pgbase; + unsigned int pglen; + struct page **pages; +}; + +struct nfs3_linkres { + struct nfs_fattr *dir_attr; + struct nfs_fattr *fattr; +}; + +struct nfs3_readdirres { + struct nfs_fattr *dir_attr; + __be32 *verf; + bool plus; +}; + +struct nfs3_createdata { + struct rpc_message msg; + union { + struct nfs3_createargs create; + struct nfs3_mkdirargs mkdir; + struct nfs3_symlinkargs symlink; + struct nfs3_mknodargs mknod; + } arg; + struct nfs3_diropres res; + struct nfs_fh fh; + struct nfs_fattr fattr; + struct nfs_fattr dir_attr; +}; + +struct rpc_add_xprt_test { + void (*add_xprt_test)(struct rpc_clnt *, struct rpc_xprt *, void *); + void *data; +}; + +struct nfs4_add_xprt_data { + struct nfs_client *clp; + const struct cred *cred; +}; + +struct smb2_read_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; + __u8 DataOffset; + __u8 Reserved; + __le32 DataLength; + __le32 DataRemaining; + __le32 Flags; + __u8 Buffer[0]; +}; + +struct smb2_query_directory_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 OutputBufferOffset; + __le32 OutputBufferLength; + __u8 Buffer[0]; +}; + +struct create_context_hdr { + __le32 Next; + __le16 NameOffset; + __le16 NameLength; + __le16 Reserved; + __le16 DataOffset; + __le32 DataLength; +}; + +struct lease_context { + __u8 LeaseKey[16]; + __le32 LeaseState; + __le32 LeaseFlags; + __le64 LeaseDuration; +}; + +struct lease_context_v2 { + __u8 LeaseKey[16]; + __le32 LeaseState; + __le32 LeaseFlags; + __le64 LeaseDuration; + __u8 ParentLeaseKey[16]; + __le16 Epoch; + __le16 Reserved; +} __attribute__((packed)); + +struct create_lease { + struct create_context_hdr ccontext; + __u8 Name[8]; + struct lease_context lcontext; +}; + +struct create_lease_v2 { + struct create_context_hdr ccontext; + __u8 Name[8]; + struct lease_context_v2 lcontext; + __u8 Pad[4]; +}; + +struct file_zero_data_information { + __le64 FileOffset; + __le64 BeyondFinalZero; +}; + +struct duplicate_extents_to_file { + __u64 PersistentFileHandle; + __u64 VolatileFileHandle; + __le64 SourceFileOffset; + __le64 TargetFileOffset; + __le64 ByteCount; +}; + +struct fsctl_set_integrity_information_req { + __le16 ChecksumAlgorithm; + __le16 Reserved; + __le32 Flags; +}; + +struct file_allocated_range_buffer { + __le64 file_offset; + __le64 length; +}; + +struct smb2_fs_full_size_info { + __le64 TotalAllocationUnits; + __le64 CallerAvailableAllocationUnits; + __le64 ActualAvailableAllocationUnits; + __le32 SectorsPerAllocationUnit; + __le32 BytesPerSector; +}; + +struct resume_key_req { + char ResumeKey[24]; + __le32 ContextLength; + char Context[0]; +}; + +struct copychunk_ioctl { + char SourceKey[24]; + __le32 ChunkCount; + __le32 Reserved; + __le64 SourceOffset; + __le64 TargetOffset; + __le32 Length; + __u32 Reserved2; +}; + +struct copychunk_ioctl_rsp { + __le32 ChunksWritten; + __le32 ChunkBytesWritten; + __le32 TotalBytesWritten; +}; + +struct fsctl_get_dfs_referral_req { + __le16 MaxReferralLevel; + __u8 RequestFileName[0]; +}; + +struct network_interface_info_ioctl_rsp { + __le32 Next; + __le32 IfIndex; + __le32 Capability; + __le32 Reserved; + __le64 LinkSpeed; + __le16 Family; + __u8 Buffer[126]; +}; + +struct iface_info_ipv4 { + __be16 Port; + __be32 IPv4Address; + __be64 Reserved; +} __attribute__((packed)); + +struct iface_info_ipv6 { + __be16 Port; + __be32 FlowInfo; + __u8 IPv6Address[16]; + __be32 ScopeId; +} __attribute__((packed)); + +struct smb2_file_network_open_info { + union { + struct { + __le64 CreationTime; + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le64 AllocationSize; + __le64 EndOfFile; + __le32 Attributes; + } __attribute__((packed)); + struct { + __le64 CreationTime; + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le64 AllocationSize; + __le64 EndOfFile; + __le32 Attributes; + } __attribute__((packed)) network_open_info; + }; + __le32 Reserved; +}; + +struct smb_snapshot_array { + __u32 number_of_snapshots; + __u32 number_of_snapshots_returned; + __u32 snapshot_array_size; +}; + +struct smb_query_info { + __u32 info_type; + __u32 file_info_class; + __u32 additional_information; + __u32 flags; + __u32 input_buffer_length; + __u32 output_buffer_length; +}; + +struct smb3_notify_info { + __u32 completion_filter; + bool watch_tree; + __u32 data_len; + __u8 notify_data[0]; +} __attribute__((packed)); + +struct smb2_decrypt_work { + struct work_struct decrypt; + struct TCP_Server_Info *server; + struct folio_queue *buffer; + char *buf; + unsigned int len; +}; + +struct fuse_kstatfs { + uint64_t blocks; + uint64_t bfree; + uint64_t bavail; + uint64_t files; + uint64_t ffree; + uint32_t bsize; + uint32_t namelen; + uint32_t frsize; + uint32_t padding; + uint32_t spare[6]; +}; + +struct fuse_statfs_out { + struct fuse_kstatfs st; +}; + +struct fuse_init_in { + uint32_t major; + uint32_t minor; + uint32_t max_readahead; + uint32_t flags; + uint32_t flags2; + uint32_t unused[11]; +}; + +struct fuse_init_out { + uint32_t major; + uint32_t minor; + uint32_t max_readahead; + uint32_t flags; + uint16_t max_background; + uint16_t congestion_threshold; + uint32_t max_write; + uint32_t time_gran; + uint16_t max_pages; + uint16_t map_alignment; + uint32_t flags2; + uint32_t max_stack_depth; + uint32_t unused[6]; +}; + +struct fuse_syncfs_in { + uint64_t padding; +}; + +enum { + OPT_SOURCE = 0, + OPT_SUBTYPE___2 = 1, + OPT_FD = 2, + OPT_ROOTMODE = 3, + OPT_USER_ID = 4, + OPT_GROUP_ID = 5, + OPT_DEFAULT_PERMISSIONS = 6, + OPT_ALLOW_OTHER = 7, + OPT_MAX_READ = 8, + OPT_BLKSIZE = 9, + OPT_ERR = 10, +}; + +struct fuse_inode_handle { + u64 nodeid; + u32 generation; +}; + +struct fuse_init_args { + struct fuse_args args; + struct fuse_init_in in; + struct fuse_init_out out; +}; + +struct extent_ad { + __le32 extLength; + __le32 extLocation; +}; + +struct logicalVolIntegrityDesc { + struct tag descTag; + struct timestamp recordingDateAndTime; + __le32 integrityType; + struct extent_ad nextIntegrityExt; + uint8_t logicalVolContentsUse[32]; + __le32 numOfPartitions; + __le32 lengthOfImpUse; + __le32 freeSpaceTable[0]; +}; + +struct xfs_btree_split_args { + struct xfs_btree_cur *cur; + int level; + union xfs_btree_ptr *ptrp; + union xfs_btree_key *key; + struct xfs_btree_cur **curp; + int *stat; + int result; + bool kswapd; + struct completion *done; + struct work_struct work; +}; + +struct xfs_btree_block_change_owner_info { + uint64_t new_owner; + struct list_head *buffer_list; +}; + +struct xfs_btree_has_records { + union xfs_btree_key start_key; + union xfs_btree_key end_key; + const union xfs_btree_key *key_mask; + union xfs_btree_key high_key; + enum xbtree_recpacking outcome; +}; + +struct xfs_fsop_geom { + __u32 blocksize; + __u32 rtextsize; + __u32 agblocks; + __u32 agcount; + __u32 logblocks; + __u32 sectsize; + __u32 inodesize; + __u32 imaxpct; + __u64 datablocks; + __u64 rtblocks; + __u64 rtextents; + __u64 logstart; + unsigned char uuid[16]; + __u32 sunit; + __u32 swidth; + __s32 version; + __u32 flags; + __u32 logsectsize; + __u32 rtsectsize; + __u32 dirblocksize; + __u32 logsunit; + uint32_t sick; + uint32_t checked; + __u64 reserved[17]; +}; + +struct xfs_extent_busy { + struct rb_node rb_node; + struct list_head list; + xfs_agnumber_t agno; + xfs_agblock_t bno; + xfs_extlen_t length; + unsigned int flags; +}; + +enum xfs_icwalk_goal { + XFS_ICWALK_BLOCKGC = 1, + XFS_ICWALK_RECLAIM = 0, +}; + +struct p9_rstatfs { + u32 type; + u32 bsize; + u64 blocks; + u64 bfree; + u64 bavail; + u64 files; + u64 ffree; + u64 fsid; + u32 namelen; +}; + +struct btrfs_raid_stride { + __le64 devid; + __le64 physical; +}; + +struct btrfs_stripe_extent { + struct { + struct {} __empty_strides; + struct btrfs_raid_stride strides[0]; + }; +}; + +struct btrfs_extent_owner_ref { + __le64 root_id; +}; + +struct root_name_map { + u64 id; + const char *name; +}; + +struct inode_defrag { + struct rb_node rb_node; + u64 ino; + u64 transid; + u64 root; + u32 extent_thresh; +}; + +struct defrag_target_range { + struct list_head list; + u64 start; + u64 len; +}; + +struct btrfs_disk_balance_args { + __le64 profiles; + union { + __le64 usage; + struct { + __le32 usage_min; + __le32 usage_max; + }; + }; + __le64 devid; + __le64 pstart; + __le64 pend; + __le64 vstart; + __le64 vend; + __le64 target; + __le64 flags; + union { + __le64 limit; + struct { + __le32 limit_min; + __le32 limit_max; + }; + }; + __le32 stripes_min; + __le32 stripes_max; + __le64 unused[6]; +}; + +struct btrfs_balance_item { + __le64 flags; + struct btrfs_disk_balance_args data; + struct btrfs_disk_balance_args meta; + struct btrfs_disk_balance_args sys; + __le64 unused[4]; +}; + +struct btrfs_dev_stats_item { + __le64 values[5]; +}; + +struct btrfs_discard_stripe { + struct btrfs_device *dev; + u64 physical; + u64 length; +}; + +struct btrfs_io_geometry { + u32 stripe_index; + u32 stripe_nr; + int mirror_num; + int num_stripes; + u64 stripe_offset; + u64 raid56_full_stripe_start; + int max_errors; + enum btrfs_map_op op; +}; + +struct alloc_chunk_ctl { + u64 start; + u64 type; + int num_stripes; + int sub_stripes; + int dev_stripes; + int devs_max; + int devs_min; + int devs_increment; + int ncopies; + int nparity; + u64 max_stripe_size; + u64 max_chunk_size; + u64 dev_extent_min; + u64 stripe_size; + u64 chunk_size; + int ndevs; +}; + +enum btrfs_mod_log_op { + BTRFS_MOD_LOG_KEY_REPLACE = 0, + BTRFS_MOD_LOG_KEY_ADD = 1, + BTRFS_MOD_LOG_KEY_REMOVE = 2, + BTRFS_MOD_LOG_KEY_REMOVE_WHILE_FREEING = 3, + BTRFS_MOD_LOG_KEY_REMOVE_WHILE_MOVING = 4, + BTRFS_MOD_LOG_MOVE_KEYS = 5, + BTRFS_MOD_LOG_ROOT_REPLACE = 6, +}; + +struct tree_mod_root { + u64 logical; + u8 level; +}; + +struct tree_mod_elem { + struct rb_node node; + u64 logical; + u64 seq; + enum btrfs_mod_log_op op; + int slot; + u64 generation; + struct btrfs_disk_key key; + u64 blockptr; + struct { + int dst_slot; + int nr_items; + } move; + struct tree_mod_root old_root; +}; + +struct f2fs_dentry_block { + __u8 dentry_bitmap[27]; + __u8 reserved[3]; + struct f2fs_dir_entry dentry[214]; + __u8 filename[1712]; +}; + +struct f2fs_dentry_ptr { + struct inode *inode; + void *bitmap; + struct f2fs_dir_entry *dentry; + __u8 (*filename)[8]; + int max; + int nr_bitmap; +}; + +struct z_erofs_lz4_cfgs { + __le16 max_distance; + __le16 max_pclusterblks; + u8 reserved[10]; +}; + +enum { + Z_EROFS_COMPRESSION_SHIFTED = 4, + Z_EROFS_COMPRESSION_INTERLACED = 5, + Z_EROFS_COMPRESSION_RUNTIME_MAX = 6, +}; + +struct z_erofs_lz4_decompress_ctx { + struct z_erofs_decompress_req *rq; + unsigned int inpages; + unsigned int outpages; + unsigned int oend; +}; + +struct lsm_network_audit { + int netif; + const struct sock *sk; + u16 family; + __be16 dport; + __be16 sport; + union { + struct { + __be32 daddr; + __be32 saddr; + } v4; + struct { + struct in6_addr daddr; + struct in6_addr saddr; + } v6; + } fam; +}; + +struct lsm_ioctlop_audit { + struct path path; + u16 cmd; +}; + +struct lsm_ibpkey_audit { + u64 subnet_prefix; + u16 pkey; +}; + +struct lsm_ibendport_audit { + const char *dev_name; + u8 port; +}; + +struct common_audit_data { + char type; + union { + struct path path; + struct dentry *dentry; + struct inode *inode; + struct lsm_network_audit *net; + int cap; + int ipc_id; + struct task_struct *tsk; + struct { + key_serial_t key; + char *key_desc; + } key_struct; + char *kmod_name; + struct lsm_ioctlop_audit *op; + struct file *file; + struct lsm_ibpkey_audit *ibpkey; + struct lsm_ibendport_audit *ibendport; + int reason; + const char *anonclass; + } u; + union {}; +}; + +struct akcipher_instance { + void (*free)(struct akcipher_instance *); + union { + struct { + char head[72]; + struct crypto_instance base; + } s; + struct akcipher_alg alg; + }; +}; + +struct crypto_akcipher_spawn { + struct crypto_spawn base; +}; + +struct rsa_asn1_template { + const char *name; + const u8 *data; + size_t size; +}; + +struct pkcs1pad_ctx { + struct crypto_akcipher *child; + unsigned int key_size; +}; + +struct pkcs1pad_inst_ctx { + struct crypto_akcipher_spawn spawn; + const struct rsa_asn1_template *digest_info; +}; + +struct pkcs1pad_request { + struct scatterlist in_sg[2]; + struct scatterlist out_sg[1]; + uint8_t *in_buf; + uint8_t *out_buf; + struct akcipher_request child_req; +}; + +struct vmac_tfm_ctx { + struct crypto_cipher *cipher; + u64 nhkey[16]; + u64 polykey[2]; + u64 l3key[2]; +}; + +struct vmac_desc_ctx { + union { + u8 partial[128]; + __le64 partial_words[16]; + }; + unsigned int partial_size; + bool first_block_processed; + u64 polytmp[2]; + union { + u8 bytes[16]; + __be64 pads[2]; + } nonce; + unsigned int nonce_size; +}; + +struct sha512_state { + u64 state[8]; + u64 count[2]; + u8 buf[128]; +}; + +typedef void sha512_block_fn(struct sha512_state *, const u8 *, int); + +struct crypto_kw_block { + __be64 A; + __be64 R; +}; + +struct lzo_ctx { + void *lzo_comp_mem; +}; + +struct ghash_ctx { + struct gf128mul_4k *gf128; +}; + +struct ghash_desc_ctx___2 { + u8 buffer[16]; + u32 bytes; +}; + +enum { + REQ_FSEQ_PREFLUSH = 1, + REQ_FSEQ_DATA = 2, + REQ_FSEQ_POSTFLUSH = 4, + REQ_FSEQ_DONE = 8, + REQ_FSEQ_ACTIONS = 7, + FLUSH_PENDING_TIMEOUT = 5000, +}; + +enum msdos_sys_ind { + DOS_EXTENDED_PARTITION = 5, + LINUX_EXTENDED_PARTITION = 133, + WIN98_EXTENDED_PARTITION = 15, + LINUX_DATA_PARTITION = 131, + LINUX_LVM_PARTITION = 142, + LINUX_RAID_PARTITION = 253, + SOLARIS_X86_PARTITION = 130, + NEW_SOLARIS_X86_PARTITION = 191, + DM6_AUX1PARTITION = 81, + DM6_AUX3PARTITION = 83, + DM6_PARTITION = 84, + EZD_PARTITION = 85, + FREEBSD_PARTITION = 165, + OPENBSD_PARTITION = 166, + NETBSD_PARTITION = 169, + BSDI_PARTITION = 183, + MINIX_PARTITION = 129, + UNIXWARE_PARTITION = 99, +}; + +struct parsed_partitions { + struct gendisk *disk; + char name[32]; + struct { + sector_t from; + sector_t size; + int flags; + bool has_info; + struct partition_meta_info info; + } *parts; + int next; + int limit; + bool access_beyond_eod; + char *pp_buf; +}; + +typedef struct { + struct folio *v; +} Sector; + +struct bsg_device { + struct request_queue *queue; + struct device device; + struct cdev cdev; + int max_queue; + unsigned int timeout; + unsigned int reserved_size; + bsg_sg_io_fn *sg_io_fn; +}; + +struct io_xattr { + struct file *file; + struct xattr_ctx ctx; + struct filename *filename; +}; + +struct statx_timestamp { + __s64 tv_sec; + __u32 tv_nsec; + __s32 __reserved; +}; + +struct statx { + __u32 stx_mask; + __u32 stx_blksize; + __u64 stx_attributes; + __u32 stx_nlink; + __u32 stx_uid; + __u32 stx_gid; + __u16 stx_mode; + __u16 __spare0[1]; + __u64 stx_ino; + __u64 stx_size; + __u64 stx_blocks; + __u64 stx_attributes_mask; + struct statx_timestamp stx_atime; + struct statx_timestamp stx_btime; + struct statx_timestamp stx_ctime; + struct statx_timestamp stx_mtime; + __u32 stx_rdev_major; + __u32 stx_rdev_minor; + __u32 stx_dev_major; + __u32 stx_dev_minor; + __u64 stx_mnt_id; + __u32 stx_dio_mem_align; + __u32 stx_dio_offset_align; + __u64 stx_subvol; + __u32 stx_atomic_write_unit_min; + __u32 stx_atomic_write_unit_max; + __u32 stx_atomic_write_segments_max; + __u32 __spare1[1]; + __u64 __spare3[9]; +}; + +struct io_statx { + struct file *file; + int dfd; + unsigned int mask; + unsigned int flags; + struct filename *filename; + struct statx *buffer; +}; + +struct wrapper { + cmp_func_t cmp; + swap_func_t swap; +}; + +struct genradix_iter { + size_t offset; + size_t pos; +}; + +typedef struct { + unsigned char op; + unsigned char bits; + short unsigned int val; +} code; + +typedef enum { + CODES = 0, + LENS = 1, + DISTS = 2, +} codetype; + +typedef enum { + HEAD = 0, + FLAGS = 1, + TIME = 2, + OS = 3, + EXLEN = 4, + EXTRA = 5, + NAME = 6, + COMMENT = 7, + HCRC = 8, + DICTID = 9, + DICT = 10, + TYPE = 11, + TYPEDO = 12, + STORED = 13, + COPY = 14, + TABLE = 15, + LENLENS = 16, + CODELENS = 17, + LEN = 18, + LENEXT = 19, + DIST = 20, + DISTEXT = 21, + MATCH = 22, + LIT = 23, + CHECK = 24, + LENGTH = 25, + DONE = 26, + BAD = 27, + MEM = 28, + SYNC = 29, +} inflate_mode; + +struct inflate_state { + inflate_mode mode; + int last; + int wrap; + int havedict; + int flags; + unsigned int dmax; + long unsigned int check; + long unsigned int total; + unsigned int wbits; + unsigned int wsize; + unsigned int whave; + unsigned int write; + unsigned char *window; + long unsigned int hold; + unsigned int bits; + unsigned int length; + unsigned int offset; + unsigned int extra; + const code *lencode; + const code *distcode; + unsigned int lenbits; + unsigned int distbits; + unsigned int ncode; + unsigned int nlen; + unsigned int ndist; + unsigned int have; + code *next; + short unsigned int lens[320]; + short unsigned int work[288]; + code codes[2048]; +}; + +struct inflate_workspace { + struct inflate_state inflate_state; + unsigned char working_window[32768]; +}; + +typedef struct { + BYTE maxTableLog; + BYTE tableType; + BYTE tableLog; + BYTE reserved; +} DTableDesc; + +typedef struct { + BYTE nbBits; + BYTE byte; +} HUF_DEltX1; + +typedef struct { + U32 rankVal[13]; + U32 rankStart[13]; + U32 statsWksp[218]; + BYTE symbols[256]; + BYTE huffWeight[256]; +} HUF_ReadDTableX1_Workspace; + +typedef struct { + U16 sequence; + BYTE nbBits; + BYTE length; +} HUF_DEltX2; + +typedef struct { + BYTE symbol; +} sortedSymbol_t; + +typedef U32 rankValCol_t[13]; + +typedef struct { + U32 rankVal[156]; + U32 rankStats[13]; + U32 rankStart0[15]; + sortedSymbol_t sortedSymbol[256]; + BYTE weightList[256]; + U32 calleeWksp[218]; +} HUF_ReadDTableX2_Workspace; + +typedef struct { + U32 tableTime; + U32 decode256Time; +} algo_time_t; + +struct node_groups { + unsigned int id; + union { + unsigned int ngroups; + unsigned int ncpus; + }; +}; + +struct gpiochip_info { + char name[32]; + char label[32]; + __u32 lines; +}; + +enum gpio_v2_line_flag { + GPIO_V2_LINE_FLAG_USED = 1, + GPIO_V2_LINE_FLAG_ACTIVE_LOW = 2, + GPIO_V2_LINE_FLAG_INPUT = 4, + GPIO_V2_LINE_FLAG_OUTPUT = 8, + GPIO_V2_LINE_FLAG_EDGE_RISING = 16, + GPIO_V2_LINE_FLAG_EDGE_FALLING = 32, + GPIO_V2_LINE_FLAG_OPEN_DRAIN = 64, + GPIO_V2_LINE_FLAG_OPEN_SOURCE = 128, + GPIO_V2_LINE_FLAG_BIAS_PULL_UP = 256, + GPIO_V2_LINE_FLAG_BIAS_PULL_DOWN = 512, + GPIO_V2_LINE_FLAG_BIAS_DISABLED = 1024, + GPIO_V2_LINE_FLAG_EVENT_CLOCK_REALTIME = 2048, + GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE = 4096, +}; + +struct gpio_v2_line_values { + __u64 bits; + __u64 mask; +}; + +enum gpio_v2_line_attr_id { + GPIO_V2_LINE_ATTR_ID_FLAGS = 1, + GPIO_V2_LINE_ATTR_ID_OUTPUT_VALUES = 2, + GPIO_V2_LINE_ATTR_ID_DEBOUNCE = 3, +}; + +struct gpio_v2_line_attribute { + __u32 id; + __u32 padding; + union { + __u64 flags; + __u64 values; + __u32 debounce_period_us; + }; +}; + +struct gpio_v2_line_config_attribute { + struct gpio_v2_line_attribute attr; + __u64 mask; +}; + +struct gpio_v2_line_config { + __u64 flags; + __u32 num_attrs; + __u32 padding[5]; + struct gpio_v2_line_config_attribute attrs[10]; +}; + +struct gpio_v2_line_request { + __u32 offsets[64]; + char consumer[32]; + struct gpio_v2_line_config config; + __u32 num_lines; + __u32 event_buffer_size; + __u32 padding[5]; + __s32 fd; +}; + +struct gpio_v2_line_info { + char name[32]; + char consumer[32]; + __u32 offset; + __u32 num_attrs; + __u64 flags; + struct gpio_v2_line_attribute attrs[10]; + __u32 padding[4]; +}; + +enum gpio_v2_line_changed_type { + GPIO_V2_LINE_CHANGED_REQUESTED = 1, + GPIO_V2_LINE_CHANGED_RELEASED = 2, + GPIO_V2_LINE_CHANGED_CONFIG = 3, +}; + +struct gpio_v2_line_info_changed { + struct gpio_v2_line_info info; + __u64 timestamp_ns; + __u32 event_type; + __u32 padding[5]; +}; + +enum gpio_v2_line_event_id { + GPIO_V2_LINE_EVENT_RISING_EDGE = 1, + GPIO_V2_LINE_EVENT_FALLING_EDGE = 2, +}; + +struct gpio_v2_line_event { + __u64 timestamp_ns; + __u32 id; + __u32 offset; + __u32 seqno; + __u32 line_seqno; + __u32 padding[6]; +}; + +struct gpioline_info { + __u32 line_offset; + __u32 flags; + char name[32]; + char consumer[32]; +}; + +struct gpioline_info_changed { + struct gpioline_info info; + __u64 timestamp; + __u32 event_type; + __u32 padding[5]; +}; + +struct gpiohandle_request { + __u32 lineoffsets[64]; + __u32 flags; + __u8 default_values[64]; + char consumer_label[32]; + __u32 lines; + int fd; +}; + +struct gpiohandle_config { + __u32 flags; + __u8 default_values[64]; + __u32 padding[4]; +}; + +struct gpiohandle_data { + __u8 values[64]; +}; + +struct gpioevent_request { + __u32 lineoffset; + __u32 handleflags; + __u32 eventflags; + char consumer_label[32]; + int fd; +}; + +struct gpioevent_data { + __u64 timestamp; + __u32 id; +}; + +struct linehandle_state { + struct gpio_device *gdev; + const char *label; + struct gpio_desc *descs[64]; + u32 num_descs; +}; + +struct linereq; + +struct line { + struct rb_node node; + struct gpio_desc *desc; + struct linereq *req; + unsigned int irq; + u64 edflags; + u64 timestamp_ns; + u32 req_seqno; + u32 line_seqno; + struct delayed_work work; + unsigned int debounce_period_us; + unsigned int sw_debounced; + unsigned int level; +}; + +struct linereq { + struct gpio_device *gdev; + const char *label; + u32 num_lines; + wait_queue_head_t wait; + struct notifier_block device_unregistered_nb; + u32 event_buffer_size; + struct { + union { + struct __kfifo kfifo; + struct gpio_v2_line_event *type; + const struct gpio_v2_line_event *const_type; + char (*rectype)[0]; + struct gpio_v2_line_event *ptr; + const struct gpio_v2_line_event *ptr_const; + }; + struct gpio_v2_line_event buf[0]; + } events; + atomic_t seqno; + struct mutex config_mutex; + struct line lines[0]; +}; + +struct lineevent_state { + struct gpio_device *gdev; + const char *label; + struct gpio_desc *desc; + u32 eflags; + int irq; + wait_queue_head_t wait; + struct notifier_block device_unregistered_nb; + struct { + union { + struct __kfifo kfifo; + struct gpioevent_data *type; + const struct gpioevent_data *const_type; + char (*rectype)[0]; + struct gpioevent_data *ptr; + const struct gpioevent_data *ptr_const; + }; + struct gpioevent_data buf[16]; + } events; + u64 timestamp; +}; + +struct gpio_chardev_data { + struct gpio_device *gdev; + wait_queue_head_t wait; + struct { + union { + struct __kfifo kfifo; + struct gpio_v2_line_info_changed *type; + const struct gpio_v2_line_info_changed *const_type; + char (*rectype)[0]; + struct gpio_v2_line_info_changed *ptr; + const struct gpio_v2_line_info_changed *ptr_const; + }; + struct gpio_v2_line_info_changed buf[32]; + } events; + struct notifier_block lineinfo_changed_nb; + struct notifier_block device_unregistered_nb; + long unsigned int *watched_lines; + atomic_t watch_abi_version; +}; + +struct virtio_balloon_config { + __le32 num_pages; + __le32 actual; + union { + __le32 free_page_hint_cmd_id; + __le32 free_page_report_cmd_id; + }; + __le32 poison_val; +}; + +struct virtio_balloon_stat { + __virtio16 tag; + __virtio64 val; +} __attribute__((packed)); + +enum virtio_balloon_vq { + VIRTIO_BALLOON_VQ_INFLATE = 0, + VIRTIO_BALLOON_VQ_DEFLATE = 1, + VIRTIO_BALLOON_VQ_STATS = 2, + VIRTIO_BALLOON_VQ_FREE_PAGE = 3, + VIRTIO_BALLOON_VQ_REPORTING = 4, + VIRTIO_BALLOON_VQ_MAX = 5, +}; + +enum virtio_balloon_config_read { + VIRTIO_BALLOON_CONFIG_READ_CMD_ID = 0, +}; + +struct virtio_balloon { + struct virtio_device *vdev; + struct virtqueue *inflate_vq; + struct virtqueue *deflate_vq; + struct virtqueue *stats_vq; + struct virtqueue *free_page_vq; + struct workqueue_struct *balloon_wq; + struct work_struct report_free_page_work; + struct work_struct update_balloon_stats_work; + struct work_struct update_balloon_size_work; + spinlock_t stop_update_lock; + bool stop_update; + long unsigned int config_read_bitmap; + struct list_head free_page_list; + spinlock_t free_page_list_lock; + long unsigned int num_free_page_blocks; + u32 cmd_id_received_cache; + __virtio32 cmd_id_active; + __virtio32 cmd_id_stop; + wait_queue_head_t acked; + unsigned int num_pages; + struct balloon_dev_info vb_dev_info; + struct mutex balloon_lock; + unsigned int num_pfns; + __virtio32 pfns[256]; + struct virtio_balloon_stat stats[16]; + struct shrinker *shrinker; + struct notifier_block oom_nb; + struct virtqueue *reporting_vq; + struct page_reporting_dev_info pr_dev_info; + spinlock_t wakeup_lock; + bool processing_wakeup_event; + u32 wakeup_signal_mask; +}; + +struct kbentry { + unsigned char kb_table; + unsigned char kb_index; + short unsigned int kb_value; +}; + +struct kbsentry { + unsigned char kb_func; + unsigned char kb_string[512]; +}; + +struct kbdiacr { + unsigned char diacr; + unsigned char base; + unsigned char result; +}; + +struct kbdiacrs { + unsigned int kb_cnt; + struct kbdiacr kbdiacr[256]; +}; + +struct kbdiacruc { + unsigned int diacr; + unsigned int base; + unsigned int result; +}; + +struct kbdiacrsuc { + unsigned int kb_cnt; + struct kbdiacruc kbdiacruc[256]; +}; + +struct kbkeycode { + unsigned int scancode; + unsigned int keycode; +}; + +struct kbd_repeat { + int delay; + int period; +}; + +struct keyboard_notifier_param { + struct vc_data *vc; + int down; + int shift; + int ledstate; + unsigned int value; +}; + +struct kbd_struct { + unsigned char lockstate; + unsigned char slockstate; + unsigned char ledmode: 1; + unsigned char ledflagstate: 4; + char: 3; + unsigned char default_ledflagstate: 4; + unsigned char kbdmode: 3; + int: 1; + unsigned char modeflags: 5; +}; + +struct vt_spawn_console { + spinlock_t lock; + struct pid *pid; + int sig; +}; + +typedef void k_handler_fn(struct vc_data *, unsigned char, char); + +typedef void fn_handler_fn(struct vc_data *); + +struct getset_keycode_data { + struct input_keymap_entry ke; + int error; +}; + +enum mctrl_gpio_idx { + UART_GPIO_CTS = 0, + UART_GPIO_DSR = 1, + UART_GPIO_DCD = 2, + UART_GPIO_RNG = 3, + UART_GPIO_RI = 3, + UART_GPIO_RTS = 4, + UART_GPIO_DTR = 5, + UART_GPIO_MAX = 6, +}; + +struct mctrl_gpios { + struct uart_port *port; + struct gpio_desc *gpio[6]; + int irq[6]; + unsigned int mctrl_prev; + bool mctrl_on; +}; + +struct drm_version { + int version_major; + int version_minor; + int version_patchlevel; + __kernel_size_t name_len; + char *name; + __kernel_size_t date_len; + char *date; + __kernel_size_t desc_len; + char *desc; +}; + +struct drm_unique { + __kernel_size_t unique_len; + char *unique; +}; + +struct drm_client { + int idx; + int auth; + long unsigned int pid; + long unsigned int uid; + long unsigned int magic; + long unsigned int iocs; +}; + +enum drm_stat_type { + _DRM_STAT_LOCK = 0, + _DRM_STAT_OPENS = 1, + _DRM_STAT_CLOSES = 2, + _DRM_STAT_IOCTLS = 3, + _DRM_STAT_LOCKS = 4, + _DRM_STAT_UNLOCKS = 5, + _DRM_STAT_VALUE = 6, + _DRM_STAT_BYTE = 7, + _DRM_STAT_COUNT = 8, + _DRM_STAT_IRQ = 9, + _DRM_STAT_PRIMARY = 10, + _DRM_STAT_SECONDARY = 11, + _DRM_STAT_DMA = 12, + _DRM_STAT_SPECIAL = 13, + _DRM_STAT_MISSED = 14, +}; + +struct drm_stats { + long unsigned int count; + struct { + long unsigned int value; + enum drm_stat_type type; + } data[15]; +}; + +struct drm_set_version { + int drm_di_major; + int drm_di_minor; + int drm_dd_major; + int drm_dd_minor; +}; + +struct drm_get_cap { + __u64 capability; + __u64 value; +}; + +struct drm_set_client_cap { + __u64 capability; + __u64 value; +}; + +struct drm_syncobj_create { + __u32 handle; + __u32 flags; +}; + +struct drm_syncobj_destroy { + __u32 handle; + __u32 pad; +}; + +struct drm_syncobj_handle { + __u32 handle; + __u32 flags; + __s32 fd; + __u32 pad; +}; + +struct drm_syncobj_transfer { + __u32 src_handle; + __u32 dst_handle; + __u64 src_point; + __u64 dst_point; + __u32 flags; + __u32 pad; +}; + +struct drm_syncobj_wait { + __u64 handles; + __s64 timeout_nsec; + __u32 count_handles; + __u32 flags; + __u32 first_signaled; + __u32 pad; + __u64 deadline_nsec; +}; + +struct drm_syncobj_timeline_wait { + __u64 handles; + __u64 points; + __s64 timeout_nsec; + __u32 count_handles; + __u32 flags; + __u32 first_signaled; + __u32 pad; + __u64 deadline_nsec; +}; + +struct drm_syncobj_eventfd { + __u32 handle; + __u32 flags; + __u64 point; + __s32 fd; + __u32 pad; +}; + +struct drm_syncobj_array { + __u64 handles; + __u32 count_handles; + __u32 pad; +}; + +struct drm_syncobj_timeline_array { + __u64 handles; + __u64 points; + __u32 count_handles; + __u32 flags; +}; + +struct syncobj_wait_entry { + struct list_head node; + struct task_struct *task; + struct dma_fence *fence; + struct dma_fence_cb fence_cb; + u64 point; +}; + +struct syncobj_eventfd_entry { + struct list_head node; + struct dma_fence *fence; + struct dma_fence_cb fence_cb; + struct drm_syncobj *syncobj; + struct eventfd_ctx *ev_fd_ctx; + u64 point; + u32 flags; +}; + +struct drm_virtgpu_map { + __u64 offset; + __u32 handle; + __u32 pad; +}; + +struct drm_virtgpu_getparam { + __u64 param; + __u64 value; +}; + +struct drm_virtgpu_resource_create { + __u32 target; + __u32 format; + __u32 bind; + __u32 width; + __u32 height; + __u32 depth; + __u32 array_size; + __u32 last_level; + __u32 nr_samples; + __u32 flags; + __u32 bo_handle; + __u32 res_handle; + __u32 size; + __u32 stride; +}; + +struct drm_virtgpu_resource_info { + __u32 bo_handle; + __u32 res_handle; + __u32 size; + __u32 blob_mem; +}; + +struct drm_virtgpu_3d_transfer_to_host { + __u32 bo_handle; + struct drm_virtgpu_3d_box box; + __u32 level; + __u32 offset; + __u32 stride; + __u32 layer_stride; +}; + +struct drm_virtgpu_3d_transfer_from_host { + __u32 bo_handle; + struct drm_virtgpu_3d_box box; + __u32 level; + __u32 offset; + __u32 stride; + __u32 layer_stride; +}; + +struct drm_virtgpu_3d_wait { + __u32 handle; + __u32 flags; +}; + +struct drm_virtgpu_get_caps { + __u32 cap_set_id; + __u32 cap_set_ver; + __u64 addr; + __u32 size; + __u32 pad; +}; + +struct drm_virtgpu_resource_create_blob { + __u32 blob_mem; + __u32 blob_flags; + __u32 bo_handle; + __u32 res_handle; + __u64 size; + __u32 pad; + __u32 cmd_size; + __u64 cmd; + __u64 blob_id; +}; + +struct drm_virtgpu_context_set_param { + __u64 param; + __u64 value; +}; + +struct drm_virtgpu_context_init { + __u32 num_params; + __u32 pad; + __u64 ctx_set_params; +}; + +struct scsi_host_busy_iter_data { + bool (*fn)(struct scsi_cmnd *, void *); + void *priv; +}; + +enum bip_flags { + BIP_BLOCK_INTEGRITY = 1, + BIP_MAPPED_INTEGRITY = 2, + BIP_CTRL_NOCHECK = 4, + BIP_DISK_NOCHECK = 8, + BIP_IP_CHECKSUM = 16, + BIP_COPY_USER = 32, +}; + +enum pr_status { + PR_STS_SUCCESS = 0, + PR_STS_IOERR = 2, + PR_STS_RESERVATION_CONFLICT = 24, + PR_STS_RETRY_PATH_FAILURE = 917504, + PR_STS_PATH_FAST_FAILED = 983040, + PR_STS_PATH_FAILED = 65536, +}; + +enum t10_dif_type { + T10_PI_TYPE0_PROTECTION = 0, + T10_PI_TYPE1_PROTECTION = 1, + T10_PI_TYPE2_PROTECTION = 2, + T10_PI_TYPE3_PROTECTION = 3, +}; + +struct scsi_io_group_descriptor { + u8 ic_enable: 1; + u8 cs_enble: 1; + u8 st_enble: 1; + u8 reserved1: 3; + u8 io_advice_hints_mode: 2; + u8 reserved2[3]; + u8 lbm_descriptor_type: 4; + u8 rlbsr: 2; + u8 reserved3: 1; + u8 acdlu: 1; + u8 params[2]; + u8 reserved4; + u8 reserved5[8]; +}; + +struct scsi_stream_status { + u8 reserved1: 7; + u8 perm: 1; + u8 reserved2; + __be16 stream_identifier; + u8 rel_lifetime: 6; + u8 reserved3: 2; + u8 reserved4[3]; +}; + +struct scsi_stream_status_header { + __be32 len; + u16 reserved; + __be16 number_of_open_streams; + struct { + struct {} __empty_stream_status; + struct scsi_stream_status stream_status[0]; + }; +}; + +enum scsi_pr_type { + SCSI_PR_WRITE_EXCLUSIVE = 1, + SCSI_PR_EXCLUSIVE_ACCESS = 3, + SCSI_PR_WRITE_EXCLUSIVE_REG_ONLY = 5, + SCSI_PR_EXCLUSIVE_ACCESS_REG_ONLY = 6, + SCSI_PR_WRITE_EXCLUSIVE_ALL_REGS = 7, + SCSI_PR_EXCLUSIVE_ACCESS_ALL_REGS = 8, +}; + +enum scsi_prot_flags { + SCSI_PROT_TRANSFER_PI = 1, + SCSI_PROT_GUARD_CHECK = 2, + SCSI_PROT_REF_CHECK = 4, + SCSI_PROT_REF_INCREMENT = 8, + SCSI_PROT_IP_CHECKSUM = 16, +}; + +enum { + SD_EXT_CDB_SIZE = 32, + SD_MEMPOOL_SIZE = 2, +}; + +enum { + SD_DEF_XFER_BLOCKS = 65535, + SD_MAX_XFER_BLOCKS = 4294967295, + SD_MAX_WS10_BLOCKS = 65535, + SD_MAX_WS16_BLOCKS = 8388607, +}; + +enum { + SD_LBP_FULL = 0, + SD_LBP_UNMAP = 1, + SD_LBP_WS16 = 2, + SD_LBP_WS10 = 3, + SD_LBP_ZERO = 4, + SD_LBP_DISABLE = 5, +}; + +enum { + SD_ZERO_WRITE = 0, + SD_ZERO_WS = 1, + SD_ZERO_WS16_UNMAP = 2, + SD_ZERO_WS10_UNMAP = 3, +}; + +struct opal_dev; + +struct scsi_disk { + struct scsi_device *device; + struct device disk_dev; + struct gendisk *disk; + struct opal_dev *opal_dev; + atomic_t openers; + sector_t capacity; + int max_retries; + u32 min_xfer_blocks; + u32 max_xfer_blocks; + u32 opt_xfer_blocks; + u32 max_ws_blocks; + u32 max_unmap_blocks; + u32 unmap_granularity; + u32 unmap_alignment; + u32 max_atomic; + u32 atomic_alignment; + u32 atomic_granularity; + u32 max_atomic_with_boundary; + u32 max_atomic_boundary; + u32 index; + unsigned int physical_block_size; + unsigned int max_medium_access_timeouts; + unsigned int medium_access_timed_out; + u16 permanent_stream_count; + u8 media_present; + u8 write_prot; + u8 protection_type; + u8 provisioning_mode; + u8 zeroing_mode; + u8 nr_actuators; + bool suspended; + unsigned int ATO: 1; + unsigned int cache_override: 1; + unsigned int WCE: 1; + unsigned int RCD: 1; + unsigned int DPOFUA: 1; + unsigned int first_scan: 1; + unsigned int lbpme: 1; + unsigned int lbprz: 1; + unsigned int lbpu: 1; + unsigned int lbpws: 1; + unsigned int lbpws10: 1; + unsigned int lbpvpd: 1; + unsigned int ws10: 1; + unsigned int ws16: 1; + unsigned int rc_basis: 2; + unsigned int zoned: 2; + unsigned int urswrz: 1; + unsigned int security: 1; + unsigned int ignore_medium_access_errors: 1; + unsigned int rscs: 1; + unsigned int use_atomic_write_boundary: 1; +}; + +enum cookie_values { + COOKIE_SECRET_MAX_AGE = 120, + COOKIE_SECRET_LATENCY = 5, + COOKIE_NONCE_LEN = 24, + COOKIE_LEN = 16, +}; + +enum { + COOKIE_KEY_LABEL_LEN = 8, +}; + +struct swmii_regs { + u16 bmsr; + u16 lpa; + u16 lpagb; + u16 estat; +}; + +enum { + SWMII_SPEED_10 = 0, + SWMII_SPEED_100 = 1, + SWMII_SPEED_1000 = 2, + SWMII_DUPLEX_HALF = 0, + SWMII_DUPLEX_FULL = 1, +}; + +struct fixed_mdio_bus { + struct mii_bus *mii_bus; + struct list_head phys; +}; + +struct fixed_phy { + int addr; + struct phy_device *phydev; + struct fixed_phy_status status; + bool no_carrier; + int (*link_update)(struct net_device *, struct fixed_phy_status *); + struct list_head node; + struct gpio_desc *link_gpiod; +}; + +struct nlmon { + struct netlink_tap nt; +}; + +struct usb_otg_caps { + u16 otg_rev; + bool hnp_support; + bool srp_support; + bool adp_support; +}; + +enum usb_dr_mode { + USB_DR_MODE_UNKNOWN = 0, + USB_DR_MODE_HOST = 1, + USB_DR_MODE_PERIPHERAL = 2, + USB_DR_MODE_OTG = 3, +}; + +typedef void (*companion_fn)(struct pci_dev *, struct usb_hcd *, struct pci_dev *, struct usb_hcd *); + +struct sddr55_card_info { + long unsigned int capacity; + int max_log_blks; + int pageshift; + int smallpageshift; + int blocksize; + int blockshift; + int blockmask; + int read_only; + int force_read_only; + int *lba_to_pba; + int *pba_to_lba; + int fatal_error; + long unsigned int last_access; + unsigned char sense_data[18]; +}; + +struct ti_i2c_desc { + __u8 Type; + __le16 Size; + __u8 CheckSum; + __u8 Data[0]; +} __attribute__((packed)); + +struct ti_i2c_firmware_rec { + __u8 Ver_Major; + __u8 Ver_Minor; + __u8 Data[0]; +}; + +struct ti_i2c_image_header { + __le16 Length; + __u8 CheckSum; +} __attribute__((packed)); + +struct edge_ti_manuf_descriptor { + __u8 IonConfig; + __u8 IonConfig2; + __u8 Version; + __u8 CpuRev_BoardRev; + __u8 NumPorts; + __u8 NumVirtualPorts; + __u8 HubConfig1; + __u8 HubConfig2; + __u8 TotalPorts; + __u8 Reserved; +}; + +struct out_endpoint_desc_block { + u8 Configuration; + u8 XBufAddr; + u8 XByteCount; + u8 Unused1; + u8 Unused2; + u8 YBufAddr; + u8 YByteCount; + u8 BufferSize; +}; + +struct ump_uart_config { + u16 wBaudRate; + u16 wFlags; + u8 bDataBits; + u8 bParity; + u8 bStopBits; + char cXon; + char cXoff; + u8 bUartMode; +}; + +struct product_info { + int TiMode; + u8 hardware_type; +} __attribute__((packed)); + +struct edgeport_fw_hdr { + u8 major_version; + u8 minor_version; + __le16 build_number; + __le16 length; + u8 checksum; +} __attribute__((packed)); + +struct edgeport_serial; + +struct edgeport_port { + u16 uart_base; + u16 dma_address; + u8 shadow_msr; + u8 shadow_mcr; + u8 shadow_lsr; + u8 lsr_mask; + u32 ump_read_timeout; + int baud_rate; + int close_pending; + int lsr_event; + struct edgeport_serial *edge_serial; + struct usb_serial_port *port; + u8 bUartMode; + spinlock_t ep_lock; + int ep_read_urb_state; + int ep_write_urb_in_use; +}; + +struct edgeport_serial { + struct product_info product_info; + u8 TI_I2C_Type; + u8 TiReadI2C; + struct mutex es_lock; + int num_ports_open; + struct usb_serial *serial; + struct delayed_work heartbeat_work; + int fw_version; + bool use_heartbeat; +}; + +enum mos7840_flag { + MOS7840_FLAG_LED_BUSY = 0, +}; + +struct moschip_port___2 { + int port_num; + struct urb *read_urb; + __u8 shadowLCR; + __u8 shadowMCR; + struct usb_serial_port *port; + __u8 SpRegOffset; + __u8 ControlRegOffset; + __u8 DcrRegOffset; + spinlock_t pool_lock; + struct urb *write_urb_pool[16]; + char busy[16]; + bool read_urb_busy; + bool has_led; + struct timer_list led_timer1; + struct timer_list led_timer2; + struct urb *led_urb; + struct usb_ctrlrequest *led_dr; + long unsigned int flags; +}; + +struct amba_kmi_port { + struct serio *io; + struct clk *clk; + void *base; + unsigned int irq; + unsigned int divisor; + unsigned int open; +}; + +struct ml_effect_state { + struct ff_effect *effect; + long unsigned int flags; + int count; + long unsigned int play_at; + long unsigned int stop_at; + long unsigned int adj_at; +}; + +struct ml_device { + void *private; + struct ml_effect_state states[16]; + int gain; + struct timer_list timer; + struct input_dev *dev; + int (*play_effect)(struct input_dev *, void *, struct ff_effect *); +}; + +struct i2c_smbus_ioctl_data { + __u8 read_write; + __u8 command; + __u32 size; + union i2c_smbus_data *data; +}; + +struct i2c_rdwr_ioctl_data { + struct i2c_msg *msgs; + __u32 nmsgs; +}; + +struct i2c_dev { + struct list_head list; + struct i2c_adapter *adap; + struct device dev; + struct cdev cdev; +}; + +struct dm_rq_target_io; + +struct dm_rq_clone_bio_info { + struct bio *orig; + struct dm_rq_target_io *tio; + struct bio clone; +}; + +struct dm_rq_target_io { + struct mapped_device *md; + struct dm_target *ti; + struct request *orig; + struct request *clone; + struct kthread_work work; + blk_status_t error; + union map_info___2 info; + struct dm_stats_aux stats_aux; + long unsigned int duration_jiffies; + unsigned int n_sectors; + unsigned int completed; +}; + +struct hid_class_descriptor { + __u8 bDescriptorType; + __le16 wDescriptorLength; +} __attribute__((packed)); + +struct hid_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __le16 bcdHID; + __u8 bCountryCode; + __u8 bNumDescriptors; + struct hid_class_descriptor rpt_desc; + struct hid_class_descriptor opt_descs[0]; +} __attribute__((packed)); + +struct dmabuf_token { + __u32 token_start; + __u32 token_count; +}; + +struct linger { + int l_onoff; + int l_linger; +}; + +struct so_timestamping { + int flags; + int bind_phc; +}; + +enum txtime_flags { + SOF_TXTIME_DEADLINE_MODE = 1, + SOF_TXTIME_REPORT_ERRORS = 2, + SOF_TXTIME_FLAGS_LAST = 2, + SOF_TXTIME_FLAGS_MASK = 3, +}; + +struct sock_txtime { + __kernel_clockid_t clockid; + __u32 flags; +}; + +struct netdev_queue_attribute { + struct attribute attr; + ssize_t (*show)(struct netdev_queue *, char *); + ssize_t (*store)(struct netdev_queue *, const char *, size_t); +}; + +struct tc_prio_qopt { + int bands; + __u8 priomap[16]; +}; + +struct skb_array { + struct ptr_ring ring; +}; + +struct psched_ratecfg { + u64 rate_bytes_ps; + u32 mult; + u16 overhead; + u16 mpu; + u8 linklayer; + u8 shift; +}; + +struct psched_pktrate { + u64 rate_pkts_ps; + u32 mult; + u8 shift; +}; + +struct pfifo_fast_priv { + struct skb_array q[3]; +}; + +enum { + TCA_SFB_UNSPEC = 0, + TCA_SFB_PARMS = 1, + __TCA_SFB_MAX = 2, +}; + +struct tc_sfb_qopt { + __u32 rehash_interval; + __u32 warmup_time; + __u32 max; + __u32 bin_size; + __u32 increment; + __u32 decrement; + __u32 limit; + __u32 penalty_rate; + __u32 penalty_burst; +}; + +struct tc_sfb_xstats { + __u32 earlydrop; + __u32 penaltydrop; + __u32 bucketdrop; + __u32 queuedrop; + __u32 childdrop; + __u32 marked; + __u32 maxqlen; + __u32 maxprob; + __u32 avgprob; +}; + +struct sfb_bucket { + u16 qlen; + u16 p_mark; +}; + +struct sfb_bins { + siphash_key_t perturbation; + struct sfb_bucket bins[128]; +}; + +struct sfb_sched_data { + struct Qdisc *qdisc; + struct tcf_proto *filter_list; + struct tcf_block *block; + long unsigned int rehash_interval; + long unsigned int warmup_time; + u32 max; + u32 bin_size; + u32 increment; + u32 decrement; + u32 limit; + u32 penalty_rate; + u32 penalty_burst; + u32 tokens_avail; + long unsigned int rehash_time; + long unsigned int token_time; + u8 slot; + bool double_buffering; + struct sfb_bins bins[2]; + struct { + u32 earlydrop; + u32 penaltydrop; + u32 bucketdrop; + u32 queuedrop; + u32 childdrop; + u32 marked; + } stats; +}; + +struct sfb_skb_cb { + u32 hashes[2]; +}; + +struct tc_multiq_qopt { + __u16 bands; + __u16 max_bands; +}; + +struct multiq_sched_data { + u16 bands; + u16 max_bands; + u16 curband; + struct tcf_proto *filter_list; + struct tcf_block *block; + struct Qdisc **queues; +}; + +struct bpf_dummy_ops_state { + int val; +}; + +struct bpf_dummy_ops { + int (*test_1)(struct bpf_dummy_ops_state *); + int (*test_2)(struct bpf_dummy_ops_state *, int, short unsigned int, char, long unsigned int); + int (*test_sleepable)(struct bpf_dummy_ops_state *); +}; + +typedef int (*dummy_ops_test_ret_fn)(struct bpf_dummy_ops_state *, ...); + +struct bpf_dummy_ops_test_args { + u64 args[12]; + struct bpf_dummy_ops_state state; +}; + +struct bpf_struct_ops_bpf_dummy_ops { + struct bpf_struct_ops_common_value common; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct bpf_dummy_ops data; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct eee_reply_data { + struct ethnl_reply_data base; + struct ethtool_keee eee; +}; + +enum phy_upstream { + PHY_UPSTREAM_MAC = 0, + PHY_UPSTREAM_PHY = 1, +}; + +struct phy_device_node { + enum phy_upstream upstream_type; + union { + struct net_device *netdev; + struct phy_device *phydev; + } upstream; + struct sfp_bus *parent_sfp_bus; + struct phy_device *phy; +}; + +struct phy_req_info { + struct ethnl_req_info base; + struct phy_device_node *pdn; +}; + +struct ethnl_phy_dump_ctx { + struct phy_req_info *phy_req_info; + long unsigned int ifindex; + long unsigned int phy_index; +}; + +struct nf_ct_tcp_flags { + __u8 flags; + __u8 mask; +}; + +enum nf_ct_tcp_action { + NFCT_TCP_IGNORE = 0, + NFCT_TCP_INVALID = 1, + NFCT_TCP_ACCEPT = 2, +}; + +enum tcp_bit_set { + TCP_SYN_SET = 0, + TCP_SYNACK_SET = 1, + TCP_FIN_SET = 2, + TCP_ACK_SET = 3, + TCP_RST_SET = 4, + TCP_NONE_SET = 5, +}; + +enum ctattr_protoinfo_tcp { + CTA_PROTOINFO_TCP_UNSPEC = 0, + CTA_PROTOINFO_TCP_STATE = 1, + CTA_PROTOINFO_TCP_WSCALE_ORIGINAL = 2, + CTA_PROTOINFO_TCP_WSCALE_REPLY = 3, + CTA_PROTOINFO_TCP_FLAGS_ORIGINAL = 4, + CTA_PROTOINFO_TCP_FLAGS_REPLY = 5, + __CTA_PROTOINFO_TCP_MAX = 6, +}; + +enum ctattr_timeout_tcp { + CTA_TIMEOUT_TCP_UNSPEC = 0, + CTA_TIMEOUT_TCP_SYN_SENT = 1, + CTA_TIMEOUT_TCP_SYN_RECV = 2, + CTA_TIMEOUT_TCP_ESTABLISHED = 3, + CTA_TIMEOUT_TCP_FIN_WAIT = 4, + CTA_TIMEOUT_TCP_CLOSE_WAIT = 5, + CTA_TIMEOUT_TCP_LAST_ACK = 6, + CTA_TIMEOUT_TCP_TIME_WAIT = 7, + CTA_TIMEOUT_TCP_CLOSE = 8, + CTA_TIMEOUT_TCP_SYN_SENT2 = 9, + CTA_TIMEOUT_TCP_RETRANS = 10, + CTA_TIMEOUT_TCP_UNACK = 11, + __CTA_TIMEOUT_TCP_MAX = 12, +}; + +enum nft_lookup_flags { + NFT_LOOKUP_F_INV = 1, +}; + +enum nft_lookup_attributes { + NFTA_LOOKUP_UNSPEC = 0, + NFTA_LOOKUP_SET = 1, + NFTA_LOOKUP_SREG = 2, + NFTA_LOOKUP_DREG = 3, + NFTA_LOOKUP_SET_ID = 4, + NFTA_LOOKUP_FLAGS = 5, + __NFTA_LOOKUP_MAX = 6, +}; + +struct nft_lookup { + struct nft_set *set; + u8 sreg; + u8 dreg; + bool dreg_set; + bool invert; + struct nft_set_binding binding; +}; + +struct nft_rhash { + struct rhashtable ht; + struct delayed_work gc_work; + u32 wq_gc_seq; +}; + +struct nft_rhash_elem { + struct nft_elem_priv priv; + struct rhash_head node; + u32 wq_gc_seq; + long: 0; + struct nft_set_ext ext; +}; + +struct nft_rhash_cmp_arg { + const struct nft_set *set; + const u32 *key; + u8 genmask; + u64 tstamp; +}; + +struct nft_rhash_ctx { + const struct nft_ctx ctx; + const struct nft_set *set; +}; + +struct nft_hash { + u32 seed; + u32 buckets; + struct hlist_head table[0]; +}; + +struct nft_hash_elem { + struct nft_elem_priv priv; + struct hlist_node node; + struct nft_set_ext ext; +}; + +struct xt_mark_tginfo2 { + __u32 mark; + __u32 mask; +}; + +struct xt_mark_mtinfo1 { + __u32 mark; + __u32 mask; + __u8 invert; +}; + +struct xt_rateest_target_info { + char name[16]; + __s8 interval; + __u8 ewma_log; + struct xt_rateest *est; +}; + +struct xt_rateest_net { + struct mutex hash_lock; + struct hlist_head hash[16]; +}; + +struct xt_cpu_info { + __u32 cpu; + __u32 invert; +}; + +struct nf_osf_info { + char genre[32]; + __u32 len; + __u32 flags; + __u32 loglevel; + __u32 ttl; +}; + +enum { + XT_SOCKET_TRANSPARENT = 1, + XT_SOCKET_NOWILDCARD = 2, + XT_SOCKET_RESTORESKMARK = 4, +}; + +struct xt_socket_mtinfo1 { + __u8 flags; +}; + +struct xt_socket_mtinfo2 { + __u8 flags; +}; + +struct xt_socket_mtinfo3 { + __u8 flags; +}; + +struct hash_ipportnet4_elem { + __be32 ip; + __be32 ip2; + __be16 port; + u8 cidr: 7; + u8 nomatch: 1; + u8 proto; +}; + +struct hash_ipportnet4 { + struct htable *table; + struct htable_gc gc; + u32 maxelem; + u32 initval; + u8 bucketsize; + struct list_head ad; + struct hash_ipportnet4_elem next; + struct net_prefixes nets[32]; +}; + +struct hash_ipportnet4_resize_ad { + struct list_head list; + enum ipset_adt ad; + struct hash_ipportnet4_elem d; + struct ip_set_ext ext; + struct ip_set_ext mext; + u32 flags; +}; + +struct hash_ipportnet6_elem { + union nf_inet_addr ip; + union nf_inet_addr ip2; + __be16 port; + u8 cidr: 7; + u8 nomatch: 1; + u8 proto; +}; + +struct hash_ipportnet6 { + struct htable *table; + struct htable_gc gc; + u32 maxelem; + u32 initval; + u8 bucketsize; + struct list_head ad; + struct hash_ipportnet6_elem next; + struct net_prefixes nets[128]; +}; + +struct hash_ipportnet6_resize_ad { + struct list_head list; + enum ipset_adt ad; + struct hash_ipportnet6_elem d; + struct ip_set_ext ext; + struct ip_set_ext mext; + u32 flags; +}; + +struct tcp_plb_state { + u8 consec_cong_rounds: 5; + u8 unused: 3; + u32 pause_until; +}; + +struct fib_result_nl { + __be32 fl_addr; + u32 fl_mark; + unsigned char fl_tos; + unsigned char fl_scope; + unsigned char tb_id_in; + unsigned char tb_id; + unsigned char prefixlen; + unsigned char nh_sel; + unsigned char type; + unsigned char scope; + int err; +}; + +struct arpt_getinfo { + char name[32]; + unsigned int valid_hooks; + unsigned int hook_entry[3]; + unsigned int underflow[3]; + unsigned int num_entries; + unsigned int size; +}; + +struct arpt_get_entries { + char name[32]; + unsigned int size; + struct arpt_entry entrytable[0]; +}; + +struct arpt_standard { + struct arpt_entry entry; + struct xt_standard_target target; +}; + +struct arpt_error { + struct arpt_entry entry; + struct xt_error_target target; +}; + +enum { + IFLA_INET6_UNSPEC = 0, + IFLA_INET6_FLAGS = 1, + IFLA_INET6_CONF = 2, + IFLA_INET6_STATS = 3, + IFLA_INET6_MCAST = 4, + IFLA_INET6_CACHEINFO = 5, + IFLA_INET6_ICMP6STATS = 6, + IFLA_INET6_TOKEN = 7, + IFLA_INET6_ADDR_GEN_MODE = 8, + IFLA_INET6_RA_MTU = 9, + __IFLA_INET6_MAX = 10, +}; + +struct ifla_cacheinfo { + __u32 max_reasm_len; + __u32 tstamp; + __u32 reachable_time; + __u32 retrans_time; +}; + +struct prefixmsg { + unsigned char prefix_family; + unsigned char prefix_pad1; + short unsigned int prefix_pad2; + int prefix_ifindex; + unsigned char prefix_type; + unsigned char prefix_len; + unsigned char prefix_flags; + unsigned char prefix_pad3; +}; + +enum { + PREFIX_UNSPEC = 0, + PREFIX_ADDRESS = 1, + PREFIX_CACHEINFO = 2, + __PREFIX_MAX = 3, +}; + +struct prefix_cacheinfo { + __u32 preferred_time; + __u32 valid_time; +}; + +struct in6_ifreq { + struct in6_addr ifr6_addr; + __u32 ifr6_prefixlen; + int ifr6_ifindex; +}; + +enum { + DEVCONF_FORWARDING = 0, + DEVCONF_HOPLIMIT = 1, + DEVCONF_MTU6 = 2, + DEVCONF_ACCEPT_RA = 3, + DEVCONF_ACCEPT_REDIRECTS = 4, + DEVCONF_AUTOCONF = 5, + DEVCONF_DAD_TRANSMITS = 6, + DEVCONF_RTR_SOLICITS = 7, + DEVCONF_RTR_SOLICIT_INTERVAL = 8, + DEVCONF_RTR_SOLICIT_DELAY = 9, + DEVCONF_USE_TEMPADDR = 10, + DEVCONF_TEMP_VALID_LFT = 11, + DEVCONF_TEMP_PREFERED_LFT = 12, + DEVCONF_REGEN_MAX_RETRY = 13, + DEVCONF_MAX_DESYNC_FACTOR = 14, + DEVCONF_MAX_ADDRESSES = 15, + DEVCONF_FORCE_MLD_VERSION = 16, + DEVCONF_ACCEPT_RA_DEFRTR = 17, + DEVCONF_ACCEPT_RA_PINFO = 18, + DEVCONF_ACCEPT_RA_RTR_PREF = 19, + DEVCONF_RTR_PROBE_INTERVAL = 20, + DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN = 21, + DEVCONF_PROXY_NDP = 22, + DEVCONF_OPTIMISTIC_DAD = 23, + DEVCONF_ACCEPT_SOURCE_ROUTE = 24, + DEVCONF_MC_FORWARDING = 25, + DEVCONF_DISABLE_IPV6 = 26, + DEVCONF_ACCEPT_DAD = 27, + DEVCONF_FORCE_TLLAO = 28, + DEVCONF_NDISC_NOTIFY = 29, + DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL = 30, + DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL = 31, + DEVCONF_SUPPRESS_FRAG_NDISC = 32, + DEVCONF_ACCEPT_RA_FROM_LOCAL = 33, + DEVCONF_USE_OPTIMISTIC = 34, + DEVCONF_ACCEPT_RA_MTU = 35, + DEVCONF_STABLE_SECRET = 36, + DEVCONF_USE_OIF_ADDRS_ONLY = 37, + DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT = 38, + DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN = 39, + DEVCONF_DROP_UNICAST_IN_L2_MULTICAST = 40, + DEVCONF_DROP_UNSOLICITED_NA = 41, + DEVCONF_KEEP_ADDR_ON_DOWN = 42, + DEVCONF_RTR_SOLICIT_MAX_INTERVAL = 43, + DEVCONF_SEG6_ENABLED = 44, + DEVCONF_SEG6_REQUIRE_HMAC = 45, + DEVCONF_ENHANCED_DAD = 46, + DEVCONF_ADDR_GEN_MODE = 47, + DEVCONF_DISABLE_POLICY = 48, + DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN = 49, + DEVCONF_NDISC_TCLASS = 50, + DEVCONF_RPL_SEG_ENABLED = 51, + DEVCONF_RA_DEFRTR_METRIC = 52, + DEVCONF_IOAM6_ENABLED = 53, + DEVCONF_IOAM6_ID = 54, + DEVCONF_IOAM6_ID_WIDE = 55, + DEVCONF_NDISC_EVICT_NOCARRIER = 56, + DEVCONF_ACCEPT_UNTRACKED_NA = 57, + DEVCONF_ACCEPT_RA_MIN_LFT = 58, + DEVCONF_MAX = 59, +}; + +enum { + INET6_IFADDR_STATE_PREDAD = 0, + INET6_IFADDR_STATE_DAD = 1, + INET6_IFADDR_STATE_POSTDAD = 2, + INET6_IFADDR_STATE_ERRDAD = 3, + INET6_IFADDR_STATE_DEAD = 4, +}; + +struct in6_validator_info { + struct in6_addr i6vi_addr; + struct inet6_dev *i6vi_dev; + struct netlink_ext_ack *extack; +}; + +struct ifa6_config { + const struct in6_addr *pfx; + unsigned int plen; + u8 ifa_proto; + const struct in6_addr *peer_pfx; + u32 rt_priority; + u32 ifa_flags; + u32 preferred_lft; + u32 valid_lft; + u16 scope; +}; + +union fwnet_hwaddr { + u8 u[16]; + struct { + __be64 uniq_id; + u8 max_rec; + u8 sspd; + u8 fifo[6]; + } uc; +}; + +enum cleanup_prefix_rt_t { + CLEANUP_PREFIX_RT_NOP = 0, + CLEANUP_PREFIX_RT_DEL = 1, + CLEANUP_PREFIX_RT_EXPIRE = 2, +}; + +enum { + IPV6_SADDR_RULE_INIT = 0, + IPV6_SADDR_RULE_LOCAL = 1, + IPV6_SADDR_RULE_SCOPE = 2, + IPV6_SADDR_RULE_PREFERRED = 3, + IPV6_SADDR_RULE_HOA = 4, + IPV6_SADDR_RULE_OIF = 5, + IPV6_SADDR_RULE_LABEL = 6, + IPV6_SADDR_RULE_PRIVACY = 7, + IPV6_SADDR_RULE_ORCHID = 8, + IPV6_SADDR_RULE_PREFIX = 9, + IPV6_SADDR_RULE_MAX = 10, +}; + +struct ipv6_saddr_score { + int rule; + int addr_type; + struct inet6_ifaddr *ifa; + long unsigned int scorebits[1]; + int scopedist; + int matchlen; +}; + +struct ipv6_saddr_dst { + const struct in6_addr *addr; + int ifindex; + int scope; + int label; + unsigned int prefs; +}; + +struct if6_iter_state { + struct seq_net_private p; + int bucket; + int offset; +}; + +enum addr_type_t { + UNICAST_ADDR = 0, + MULTICAST_ADDR = 1, + ANYCAST_ADDR = 2, +}; + +struct inet6_fill_args { + u32 portid; + u32 seq; + int event; + unsigned int flags; + int netnsid; + int ifindex; + enum addr_type_t type; +}; + +enum { + DAD_PROCESS = 0, + DAD_BEGIN = 1, + DAD_ABORT = 2, +}; + +struct xfrm_input_afinfo { + u8 family; + bool is_ipip; + int (*callback)(struct sk_buff *, u8, int); +}; + +enum ip6t_reject_with { + IP6T_ICMP6_NO_ROUTE = 0, + IP6T_ICMP6_ADM_PROHIBITED = 1, + IP6T_ICMP6_NOT_NEIGHBOUR = 2, + IP6T_ICMP6_ADDR_UNREACH = 3, + IP6T_ICMP6_PORT_UNREACH = 4, + IP6T_ICMP6_ECHOREPLY = 5, + IP6T_TCP_RESET = 6, + IP6T_ICMP6_POLICY_FAIL = 7, + IP6T_ICMP6_REJECT_ROUTE = 8, +}; + +struct ip6t_reject_info { + __u32 with; +}; + +enum { + FDB_NOTIFY_BIT = 1, + FDB_NOTIFY_INACTIVE_BIT = 2, +}; + +enum { + NFEA_UNSPEC = 0, + NFEA_ACTIVITY_NOTIFY = 1, + NFEA_DONT_REFRESH = 2, + __NFEA_MAX = 3, +}; + +struct __fdb_entry { + __u8 mac_addr[6]; + __u8 port_no; + __u8 is_local; + __u32 ageing_timer_value; + __u8 port_hi; + __u8 pad0; + __u16 unused; +}; + +enum switchdev_obj_id { + SWITCHDEV_OBJ_ID_UNDEFINED = 0, + SWITCHDEV_OBJ_ID_PORT_VLAN = 1, + SWITCHDEV_OBJ_ID_PORT_MDB = 2, + SWITCHDEV_OBJ_ID_HOST_MDB = 3, + SWITCHDEV_OBJ_ID_MRP = 4, + SWITCHDEV_OBJ_ID_RING_TEST_MRP = 5, + SWITCHDEV_OBJ_ID_RING_ROLE_MRP = 6, + SWITCHDEV_OBJ_ID_RING_STATE_MRP = 7, + SWITCHDEV_OBJ_ID_IN_TEST_MRP = 8, + SWITCHDEV_OBJ_ID_IN_ROLE_MRP = 9, + SWITCHDEV_OBJ_ID_IN_STATE_MRP = 10, +}; + +struct switchdev_obj { + struct list_head list; + struct net_device *orig_dev; + enum switchdev_obj_id id; + u32 flags; + void *complete_priv; + void (*complete)(struct net_device *, int, void *); +}; + +struct switchdev_obj_port_vlan { + struct switchdev_obj obj; + u16 flags; + u16 vid; + bool changed; +}; + +struct switchdev_obj_port_mdb { + struct switchdev_obj obj; + unsigned char addr[6]; + u16 vid; +}; + +enum switchdev_notifier_type { + SWITCHDEV_FDB_ADD_TO_BRIDGE = 1, + SWITCHDEV_FDB_DEL_TO_BRIDGE = 2, + SWITCHDEV_FDB_ADD_TO_DEVICE = 3, + SWITCHDEV_FDB_DEL_TO_DEVICE = 4, + SWITCHDEV_FDB_OFFLOADED = 5, + SWITCHDEV_FDB_FLUSH_TO_BRIDGE = 6, + SWITCHDEV_PORT_OBJ_ADD = 7, + SWITCHDEV_PORT_OBJ_DEL = 8, + SWITCHDEV_PORT_ATTR_SET = 9, + SWITCHDEV_VXLAN_FDB_ADD_TO_BRIDGE = 10, + SWITCHDEV_VXLAN_FDB_DEL_TO_BRIDGE = 11, + SWITCHDEV_VXLAN_FDB_ADD_TO_DEVICE = 12, + SWITCHDEV_VXLAN_FDB_DEL_TO_DEVICE = 13, + SWITCHDEV_VXLAN_FDB_OFFLOADED = 14, + SWITCHDEV_BRPORT_OFFLOADED = 15, + SWITCHDEV_BRPORT_UNOFFLOADED = 16, + SWITCHDEV_BRPORT_REPLAY = 17, +}; + +struct switchdev_notifier_info { + struct net_device *dev; + struct netlink_ext_ack *extack; + const void *ctx; +}; + +struct switchdev_notifier_fdb_info { + struct switchdev_notifier_info info; + const unsigned char *addr; + u16 vid; + u8 added_by_user: 1; + u8 is_local: 1; + u8 locked: 1; + u8 offloaded: 1; +}; + +struct switchdev_notifier_port_obj_info { + struct switchdev_notifier_info info; + const struct switchdev_obj *obj; + bool handled; +}; + +struct switchdev_notifier_port_attr_info { + struct switchdev_notifier_info info; + const struct switchdev_attr *attr; + bool handled; +}; + +struct br_switchdev_mdb_complete_info { + struct net_bridge_port *port; + struct br_ip ip; +}; + +struct ebt_stp_config_info { + __u8 flags; + __u16 root_priol; + __u16 root_priou; + char root_addr[6]; + char root_addrmsk[6]; + __u32 root_costl; + __u32 root_costu; + __u16 sender_priol; + __u16 sender_priou; + char sender_addr[6]; + char sender_addrmsk[6]; + __u16 portl; + __u16 portu; + __u16 msg_agel; + __u16 msg_ageu; + __u16 max_agel; + __u16 max_ageu; + __u16 hello_timel; + __u16 hello_timeu; + __u16 forward_delayl; + __u16 forward_delayu; +}; + +struct ebt_stp_info { + __u8 type; + struct ebt_stp_config_info config; + __u16 bitmask; + __u16 invflags; +}; + +struct stp_header { + u8 dsap; + u8 ssap; + u8 ctrl; + u8 pid; + u8 vers; + u8 type; +}; + +struct stp_config_pdu { + u8 flags; + u8 root[8]; + u8 root_cost[4]; + u8 sender[8]; + u8 port[2]; + u8 msg_age[2]; + u8 max_age[2]; + u8 hello_time[2]; + u8 forward_delay[2]; +}; + +struct unix_domain { + struct auth_domain h; +}; + +struct ip_map { + struct cache_head h; + char m_class[8]; + struct in6_addr m_addr; + struct unix_domain *m_client; + struct callback_head m_rcu; +}; + +struct unix_gid { + struct cache_head h; + kuid_t uid; + struct group_info *gi; + struct callback_head rcu; +}; + +union sctp_sack_variable { + struct sctp_gap_ack_block gab; + __be32 dup; +}; + +struct sctp_flush_ctx { + struct sctp_outq *q; + struct sctp_transport *transport; + struct list_head transport_list; + struct sctp_association *asoc; + struct sctp_packet *packet; + gfp_t gfp; +}; + +enum p9_fid_reftype { + P9_FID_REF_CREATE = 0, + P9_FID_REF_GET = 1, + P9_FID_REF_PUT = 2, + P9_FID_REF_DESTROY = 3, +} __attribute__((mode(byte))); + +struct trace_event_raw_9p_client_req { + struct trace_entry ent; + void *clnt; + __u8 type; + __u32 tag; + char __data[0]; +}; + +struct trace_event_raw_9p_client_res { + struct trace_entry ent; + void *clnt; + __u8 type; + __u32 tag; + __u32 err; + char __data[0]; +}; + +struct trace_event_raw_9p_protocol_dump { + struct trace_entry ent; + void *clnt; + __u8 type; + __u16 tag; + u32 __data_loc_line; + char __data[0]; +}; + +struct trace_event_raw_9p_fid_ref { + struct trace_entry ent; + int fid; + int refcount; + __u8 type; + char __data[0]; +}; + +struct trace_event_data_offsets_9p_client_req {}; + +struct trace_event_data_offsets_9p_client_res {}; + +struct trace_event_data_offsets_9p_protocol_dump { + u32 line; + const void *line_ptr_; +}; + +struct trace_event_data_offsets_9p_fid_ref {}; + +typedef void (*btf_trace_9p_client_req)(void *, struct p9_client *, int8_t, int); + +typedef void (*btf_trace_9p_client_res)(void *, struct p9_client *, int8_t, int, int); + +typedef void (*btf_trace_9p_protocol_dump)(void *, struct p9_client *, struct p9_fcall *); + +typedef void (*btf_trace_9p_fid_ref)(void *, struct p9_fid *, __u8); + +enum { + Opt_msize = 0, + Opt_trans = 1, + Opt_legacy = 2, + Opt_version = 3, + Opt_err___11 = 4, +}; + +struct mpls_iptunnel_encap { + u8 labels; + u8 ttl_propagate; + u8 default_ttl; + u8 reserved1; + u32 label[0]; +}; + +enum { + MPLS_IPTUNNEL_UNSPEC = 0, + MPLS_IPTUNNEL_DST = 1, + MPLS_IPTUNNEL_TTL = 2, + __MPLS_IPTUNNEL_MAX = 3, +}; + +typedef __u32 Elf32_Addr; + +typedef __u16 Elf32_Half; + +typedef __u32 Elf32_Off; + +struct elf32_hdr { + unsigned char e_ident[16]; + Elf32_Half e_type; + Elf32_Half e_machine; + Elf32_Word e_version; + Elf32_Addr e_entry; + Elf32_Off e_phoff; + Elf32_Off e_shoff; + Elf32_Word e_flags; + Elf32_Half e_ehsize; + Elf32_Half e_phentsize; + Elf32_Half e_phnum; + Elf32_Half e_shentsize; + Elf32_Half e_shnum; + Elf32_Half e_shstrndx; +}; + +typedef struct elf32_hdr Elf32_Ehdr; + +struct elf32_phdr { + Elf32_Word p_type; + Elf32_Off p_offset; + Elf32_Addr p_vaddr; + Elf32_Addr p_paddr; + Elf32_Word p_filesz; + Elf32_Word p_memsz; + Elf32_Word p_flags; + Elf32_Word p_align; +}; + +typedef struct elf32_phdr Elf32_Phdr; + +typedef struct elf64_phdr Elf64_Phdr; + +typedef struct elf32_note Elf32_Nhdr; + +struct freader { + void *buf; + u32 buf_sz; + int err; + union { + struct { + struct file *file; + struct folio *folio; + void *addr; + loff_t folio_off; + bool may_fault; + }; + struct { + const char *data; + u64 data_sz; + }; + }; +}; + +struct cpio_data { + void *data; + size_t size; + char name[18]; +}; + +enum cpio_fields { + C_MAGIC = 0, + C_INO = 1, + C_MODE = 2, + C_UID = 3, + C_GID = 4, + C_NLINK = 5, + C_MTIME = 6, + C_FILESIZE = 7, + C_MAJ = 8, + C_MIN = 9, + C_RMAJ = 10, + C_RMIN = 11, + C_NAMESIZE = 12, + C_CHKSUM = 13, + C_NFIELDS = 14, +}; + +struct cpuinfo_32bit { + u32 reg_id_dfr0; + u32 reg_id_dfr1; + u32 reg_id_isar0; + u32 reg_id_isar1; + u32 reg_id_isar2; + u32 reg_id_isar3; + u32 reg_id_isar4; + u32 reg_id_isar5; + u32 reg_id_isar6; + u32 reg_id_mmfr0; + u32 reg_id_mmfr1; + u32 reg_id_mmfr2; + u32 reg_id_mmfr3; + u32 reg_id_mmfr4; + u32 reg_id_mmfr5; + u32 reg_id_pfr0; + u32 reg_id_pfr1; + u32 reg_id_pfr2; + u32 reg_mvfr0; + u32 reg_mvfr1; + u32 reg_mvfr2; +}; + +struct cpuinfo_arm64 { + struct kobject kobj; + u64 reg_ctr; + u64 reg_cntfrq; + u64 reg_dczid; + u64 reg_midr; + u64 reg_revidr; + u64 reg_gmid; + u64 reg_smidr; + u64 reg_id_aa64dfr0; + u64 reg_id_aa64dfr1; + u64 reg_id_aa64isar0; + u64 reg_id_aa64isar1; + u64 reg_id_aa64isar2; + u64 reg_id_aa64isar3; + u64 reg_id_aa64mmfr0; + u64 reg_id_aa64mmfr1; + u64 reg_id_aa64mmfr2; + u64 reg_id_aa64mmfr3; + u64 reg_id_aa64mmfr4; + u64 reg_id_aa64pfr0; + u64 reg_id_aa64pfr1; + u64 reg_id_aa64pfr2; + u64 reg_id_aa64zfr0; + u64 reg_id_aa64smfr0; + u64 reg_id_aa64fpfr0; + struct cpuinfo_32bit aarch32; +}; + +typedef void text_poke_f(void *, void *, size_t, size_t); + +struct aarch64_insn_patch { + void **text_addrs; + u32 *new_insns; + int insn_cnt; + atomic_t cpu_count; +}; + +typedef volatile long int prel64_t; + +typedef bool filter_t(u64); + +struct ftr_set_desc { + char name[20]; + union { + struct arm64_ftr_override *override; + prel64_t override_prel; + }; + struct { + char name[10]; + u8 shift; + u8 width; + union { + filter_t *filter; + prel64_t filter_prel; + }; + } fields[0]; +}; + +enum aarch64_insn_system_register { + AARCH64_INSN_SYSREG_TPIDR_EL1 = 18052, + AARCH64_INSN_SYSREG_TPIDR_EL2 = 26242, + AARCH64_INSN_SYSREG_SP_EL0 = 16904, +}; + +enum aarch64_insn_condition { + AARCH64_INSN_COND_EQ = 0, + AARCH64_INSN_COND_NE = 1, + AARCH64_INSN_COND_CS = 2, + AARCH64_INSN_COND_CC = 3, + AARCH64_INSN_COND_MI = 4, + AARCH64_INSN_COND_PL = 5, + AARCH64_INSN_COND_VS = 6, + AARCH64_INSN_COND_VC = 7, + AARCH64_INSN_COND_HI = 8, + AARCH64_INSN_COND_LS = 9, + AARCH64_INSN_COND_GE = 10, + AARCH64_INSN_COND_LT = 11, + AARCH64_INSN_COND_GT = 12, + AARCH64_INSN_COND_LE = 13, + AARCH64_INSN_COND_AL = 14, +}; + +enum aarch64_insn_size_type { + AARCH64_INSN_SIZE_8 = 0, + AARCH64_INSN_SIZE_16 = 1, + AARCH64_INSN_SIZE_32 = 2, + AARCH64_INSN_SIZE_64 = 3, +}; + +enum aarch64_insn_ldst_type { + AARCH64_INSN_LDST_LOAD_REG_OFFSET = 0, + AARCH64_INSN_LDST_STORE_REG_OFFSET = 1, + AARCH64_INSN_LDST_LOAD_IMM_OFFSET = 2, + AARCH64_INSN_LDST_STORE_IMM_OFFSET = 3, + AARCH64_INSN_LDST_LOAD_PAIR_PRE_INDEX = 4, + AARCH64_INSN_LDST_STORE_PAIR_PRE_INDEX = 5, + AARCH64_INSN_LDST_LOAD_PAIR_POST_INDEX = 6, + AARCH64_INSN_LDST_STORE_PAIR_POST_INDEX = 7, + AARCH64_INSN_LDST_LOAD_EX = 8, + AARCH64_INSN_LDST_LOAD_ACQ_EX = 9, + AARCH64_INSN_LDST_STORE_EX = 10, + AARCH64_INSN_LDST_STORE_REL_EX = 11, + AARCH64_INSN_LDST_SIGNED_LOAD_IMM_OFFSET = 12, + AARCH64_INSN_LDST_SIGNED_LOAD_REG_OFFSET = 13, +}; + +enum aarch64_insn_adsb_type { + AARCH64_INSN_ADSB_ADD = 0, + AARCH64_INSN_ADSB_SUB = 1, + AARCH64_INSN_ADSB_ADD_SETFLAGS = 2, + AARCH64_INSN_ADSB_SUB_SETFLAGS = 3, +}; + +enum aarch64_insn_bitfield_type { + AARCH64_INSN_BITFIELD_MOVE = 0, + AARCH64_INSN_BITFIELD_MOVE_UNSIGNED = 1, + AARCH64_INSN_BITFIELD_MOVE_SIGNED = 2, +}; + +enum aarch64_insn_data1_type { + AARCH64_INSN_DATA1_REVERSE_16 = 0, + AARCH64_INSN_DATA1_REVERSE_32 = 1, + AARCH64_INSN_DATA1_REVERSE_64 = 2, +}; + +enum aarch64_insn_data2_type { + AARCH64_INSN_DATA2_UDIV = 0, + AARCH64_INSN_DATA2_SDIV = 1, + AARCH64_INSN_DATA2_LSLV = 2, + AARCH64_INSN_DATA2_LSRV = 3, + AARCH64_INSN_DATA2_ASRV = 4, + AARCH64_INSN_DATA2_RORV = 5, +}; + +enum aarch64_insn_data3_type { + AARCH64_INSN_DATA3_MADD = 0, + AARCH64_INSN_DATA3_MSUB = 1, +}; + +enum aarch64_insn_adr_type { + AARCH64_INSN_ADR_TYPE_ADRP = 0, + AARCH64_INSN_ADR_TYPE_ADR = 1, +}; + +enum aarch64_insn_mem_atomic_op { + AARCH64_INSN_MEM_ATOMIC_ADD = 0, + AARCH64_INSN_MEM_ATOMIC_CLR = 1, + AARCH64_INSN_MEM_ATOMIC_EOR = 2, + AARCH64_INSN_MEM_ATOMIC_SET = 3, + AARCH64_INSN_MEM_ATOMIC_SWP = 4, +}; + +enum aarch64_insn_mem_order_type { + AARCH64_INSN_MEM_ORDER_NONE = 0, + AARCH64_INSN_MEM_ORDER_ACQ = 1, + AARCH64_INSN_MEM_ORDER_REL = 2, + AARCH64_INSN_MEM_ORDER_ACQREL = 3, +}; + +enum aarch64_insn_mb_type { + AARCH64_INSN_MB_SY = 0, + AARCH64_INSN_MB_ST = 1, + AARCH64_INSN_MB_LD = 2, + AARCH64_INSN_MB_ISH = 3, + AARCH64_INSN_MB_ISHST = 4, + AARCH64_INSN_MB_ISHLD = 5, + AARCH64_INSN_MB_NSH = 6, + AARCH64_INSN_MB_NSHST = 7, + AARCH64_INSN_MB_NSHLD = 8, + AARCH64_INSN_MB_OSH = 9, + AARCH64_INSN_MB_OSHST = 10, + AARCH64_INSN_MB_OSHLD = 11, +}; + +typedef u64 (*bpf_trampoline_enter_t)(struct bpf_prog *, struct bpf_tramp_run_ctx *); + +typedef void (*bpf_trampoline_exit_t)(struct bpf_prog *, u64, struct bpf_tramp_run_ctx *); + +enum bpf_text_poke_type { + BPF_MOD_CALL = 0, + BPF_MOD_JUMP = 1, +}; + +struct bpf_binary_header { + u32 size; + long: 0; + u8 image[0]; +}; + +typedef void (*bpf_jit_fill_hole_t)(void *, unsigned int); + +struct jit_ctx { + const struct bpf_prog *prog; + int idx; + int epilogue_offset; + int *offset; + int exentry_idx; + int nr_used_callee_reg; + u8 used_callee_reg[8]; + __le32 *image; + __le32 *ro_image; + u32 stack_size; + u64 user_vm_start; + u64 arena_vm_start; + bool fp_used; + bool write; +}; + +struct bpf_plt { + u32 insn_ldr; + u32 insn_br; + u64 target; +}; + +struct arm64_jit_data { + struct bpf_binary_header *header; + u8 *ro_image; + struct bpf_binary_header *ro_header; + struct jit_ctx ctx; +}; + +struct taint_flag { + char c_true; + char c_false; + bool module; + const char *desc; +}; + +enum ctx_state { + CT_STATE_DISABLED = -1, + CT_STATE_KERNEL = 0, + CT_STATE_IDLE = 1, + CT_STATE_USER = 2, + CT_STATE_GUEST = 3, + CT_STATE_MAX = 4, +}; + +struct context_tracking { + atomic_t state; + long int nesting; + long int nmi_nesting; +}; + +struct warn_args { + const char *fmt; + va_list args; +}; + +struct sigaltstack { + void *ss_sp; + int ss_flags; + __kernel_size_t ss_size; +}; + +typedef struct sigaltstack stack_t; + +enum { + TRACE_SIGNAL_DELIVERED = 0, + TRACE_SIGNAL_IGNORED = 1, + TRACE_SIGNAL_ALREADY_PENDING = 2, + TRACE_SIGNAL_OVERFLOW_FAIL = 3, + TRACE_SIGNAL_LOSE_INFO = 4, +}; + +struct trace_event_raw_signal_generate { + struct trace_entry ent; + int sig; + int errno; + int code; + char comm[16]; + pid_t pid; + int group; + int result; + char __data[0]; +}; + +struct trace_event_raw_signal_deliver { + struct trace_entry ent; + int sig; + int errno; + int code; + long unsigned int sa_handler; + long unsigned int sa_flags; + char __data[0]; +}; + +struct trace_event_data_offsets_signal_generate {}; + +struct trace_event_data_offsets_signal_deliver {}; + +typedef void (*btf_trace_signal_generate)(void *, int, struct kernel_siginfo *, struct task_struct *, int, int); + +typedef void (*btf_trace_signal_deliver)(void *, int, struct kernel_siginfo *, struct k_sigaction *); + +enum sig_handler { + HANDLER_CURRENT = 0, + HANDLER_SIG_DFL = 1, + HANDLER_EXIT = 2, +}; + +enum mod_license { + NOT_GPL_ONLY = 0, + GPL_ONLY = 1, +}; + +struct find_symbol_arg { + const char *name; + bool gplok; + bool warn; + struct module *owner; + const s32 *crc; + const struct kernel_symbol *sym; + enum mod_license license; +}; + +enum fail_dup_mod_reason { + FAIL_DUP_MOD_BECOMING = 0, + FAIL_DUP_MOD_LOAD = 1, +}; + +struct trace_event_raw_module_load { + struct trace_entry ent; + unsigned int taints; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_module_free { + struct trace_entry ent; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_module_request { + struct trace_entry ent; + long unsigned int ip; + bool wait; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_data_offsets_module_load { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_module_free { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_module_request { + u32 name; + const void *name_ptr_; +}; + +typedef void (*btf_trace_module_load)(void *, struct module *); + +typedef void (*btf_trace_module_free)(void *, struct module *); + +typedef void (*btf_trace_module_request)(void *, char *, bool, long unsigned int); + +struct symsearch { + const struct kernel_symbol *start; + const struct kernel_symbol *stop; + const s32 *crcs; + enum mod_license license; +}; + +struct mod_initfree { + struct llist_node node; + void *init_text; + void *init_data; + void *init_rodata; +}; + +struct idempotent { + const void *cookie; + struct hlist_node entry; + struct completion complete; + int ret; +}; + +enum { + Q_REQUEUE_PI_NONE = 0, + Q_REQUEUE_PI_IGNORE = 1, + Q_REQUEUE_PI_IN_PROGRESS = 2, + Q_REQUEUE_PI_WAIT = 3, + Q_REQUEUE_PI_DONE = 4, + Q_REQUEUE_PI_LOCKED = 5, +}; + +struct audit_fsnotify_mark { + dev_t dev; + long unsigned int ino; + char *path; + struct fsnotify_mark mark; + struct audit_krule *rule; +}; + +struct trace_buffer_meta { + __u32 meta_page_size; + __u32 meta_struct_len; + __u32 subbuf_size; + __u32 nr_subbufs; + struct { + __u64 lost_events; + __u32 id; + __u32 read; + } reader; + __u64 flags; + __u64 entries; + __u64 overrun; + __u64 read; + __u64 Reserved1; + __u64 Reserved2; +}; + +enum ring_buffer_type { + RINGBUF_TYPE_DATA_TYPE_LEN_MAX = 28, + RINGBUF_TYPE_PADDING = 29, + RINGBUF_TYPE_TIME_EXTEND = 30, + RINGBUF_TYPE_TIME_STAMP = 31, +}; + +typedef bool (*ring_buffer_cond_fn)(void *); + +enum ring_buffer_flags { + RB_FL_OVERWRITE = 1, +}; + +typedef struct { + void *lock; +} class_cpus_read_lock_t; + +struct ring_buffer_per_cpu; + +struct buffer_page; + +struct ring_buffer_iter { + struct ring_buffer_per_cpu *cpu_buffer; + long unsigned int head; + long unsigned int next_event; + struct buffer_page *head_page; + struct buffer_page *cache_reader_page; + long unsigned int cache_read; + long unsigned int cache_pages_removed; + u64 read_stamp; + u64 page_stamp; + struct ring_buffer_event *event; + size_t event_size; + int missed_events; +}; + +struct rb_irq_work { + struct irq_work work; + wait_queue_head_t waiters; + wait_queue_head_t full_waiters; + atomic_t seq; + bool waiters_pending; + bool full_waiters_pending; + bool wakeup_full; +}; + +struct trace_buffer { + unsigned int flags; + int cpus; + atomic_t record_disabled; + atomic_t resizing; + cpumask_var_t cpumask; + struct lock_class_key *reader_lock_key; + struct mutex mutex; + struct ring_buffer_per_cpu **buffers; + struct hlist_node node; + u64 (*clock)(void); + struct rb_irq_work irq_work; + bool time_stamp_abs; + long unsigned int range_addr_start; + long unsigned int range_addr_end; + long int last_text_delta; + long int last_data_delta; + unsigned int subbuf_size; + unsigned int subbuf_order; + unsigned int max_data_size; +}; + +struct ring_buffer_meta { + int magic; + int struct_size; + long unsigned int text_addr; + long unsigned int data_addr; + long unsigned int first_buffer; + long unsigned int head_buffer; + long unsigned int commit_buffer; + __u32 subbuf_size; + __u32 nr_subbufs; + int buffers[0]; +}; + +enum { + RB_LEN_TIME_EXTEND = 8, + RB_LEN_TIME_STAMP = 8, +}; + +struct buffer_data_page { + u64 time_stamp; + local_t commit; + unsigned char data[0]; +}; + +struct buffer_data_read_page { + unsigned int order; + struct buffer_data_page *data; +}; + +struct buffer_page { + struct list_head list; + local_t write; + unsigned int read; + local_t entries; + long unsigned int real_end; + unsigned int order; + u32 id: 30; + u32 range: 1; + struct buffer_data_page *page; +}; + +struct rb_event_info { + u64 ts; + u64 delta; + u64 before; + u64 after; + long unsigned int length; + struct buffer_page *tail_page; + int add_timestamp; +}; + +enum { + RB_ADD_STAMP_NONE = 0, + RB_ADD_STAMP_EXTEND = 2, + RB_ADD_STAMP_ABSOLUTE = 4, + RB_ADD_STAMP_FORCE = 8, +}; + +enum { + RB_CTX_TRANSITION = 0, + RB_CTX_NMI = 1, + RB_CTX_IRQ = 2, + RB_CTX_SOFTIRQ = 3, + RB_CTX_NORMAL = 4, + RB_CTX_MAX = 5, +}; + +struct rb_time_struct { + local64_t time; +}; + +typedef struct rb_time_struct rb_time_t; + +struct ring_buffer_per_cpu { + int cpu; + atomic_t record_disabled; + atomic_t resize_disabled; + struct trace_buffer *buffer; + raw_spinlock_t reader_lock; + arch_spinlock_t lock; + struct lock_class_key lock_key; + struct buffer_data_page *free_page; + long unsigned int nr_pages; + unsigned int current_context; + struct list_head *pages; + long unsigned int cnt; + struct buffer_page *head_page; + struct buffer_page *tail_page; + struct buffer_page *commit_page; + struct buffer_page *reader_page; + long unsigned int lost_events; + long unsigned int last_overrun; + long unsigned int nest; + local_t entries_bytes; + local_t entries; + local_t overrun; + local_t commit_overrun; + local_t dropped_events; + local_t committing; + local_t commits; + local_t pages_touched; + local_t pages_lost; + local_t pages_read; + long int last_pages_touch; + size_t shortest_full; + long unsigned int read; + long unsigned int read_bytes; + rb_time_t write_stamp; + rb_time_t before_stamp; + u64 event_stamp[5]; + u64 read_stamp; + long unsigned int pages_removed; + unsigned int mapped; + unsigned int user_mapped; + struct mutex mapping_lock; + long unsigned int *subbuf_ids; + struct trace_buffer_meta *meta_page; + struct ring_buffer_meta *ring_meta; + long int nr_pages_to_update; + struct list_head new_pages; + struct work_struct update_pages_work; + struct completion update_done; + struct rb_irq_work irq_work; +}; + +struct rb_wait_data { + struct rb_irq_work *irq_work; + int seq; +}; + +struct btf_anon_stack { + u32 tid; + u32 offset; +}; + +struct trace_uprobe { + struct dyn_event devent; + struct uprobe_consumer consumer; + struct path path; + char *filename; + struct uprobe *uprobe; + long unsigned int offset; + long unsigned int ref_ctr_offset; + long unsigned int *nhits; + struct trace_probe tp; +}; + +struct uprobe_trace_entry_head { + struct trace_entry ent; + long unsigned int vaddr[0]; +}; + +struct uprobe_cpu_buffer { + struct mutex mutex; + void *buf; + int dsize; +}; + +typedef bool (*filter_func_t)(struct uprobe_consumer *, struct mm_struct *); + +struct bpf_bloom_filter { + struct bpf_map map; + u32 bitset_mask; + u32 hash_seed; + u32 nr_hash_funcs; + long unsigned int bitset[0]; +}; + +enum { + BPF_F_SYSCTL_BASE_NAME = 1, +}; + +struct bpf_sockopt_buf { + u8 data[32]; +}; + +struct bpf_cgroup_link { + struct bpf_link link; + struct cgroup *cgroup; + enum bpf_attach_type type; +}; + +struct bpf_prog_list { + struct hlist_node node; + struct bpf_prog *prog; + struct bpf_cgroup_link *link; + struct bpf_cgroup_storage *storage[2]; + u32 flags; +}; + +struct cgroup_lsm_atype { + u32 attach_btf_id; + int refcnt; +}; + +typedef u64 (*btf_bpf_get_local_storage)(struct bpf_map *, u64); + +typedef u64 (*btf_bpf_get_retval)(void); + +typedef u64 (*btf_bpf_set_retval)(int); + +typedef u64 (*btf_bpf_sysctl_get_name)(struct bpf_sysctl_kern *, char *, size_t, u64); + +typedef u64 (*btf_bpf_sysctl_get_current_value)(struct bpf_sysctl_kern *, char *, size_t); + +typedef u64 (*btf_bpf_sysctl_get_new_value)(struct bpf_sysctl_kern *, char *, size_t); + +typedef u64 (*btf_bpf_sysctl_set_new_value)(struct bpf_sysctl_kern *, const char *, size_t); + +typedef u64 (*btf_bpf_get_netns_cookie_sockopt)(struct bpf_sockopt_kern *); + +enum rseq_cpu_id_state { + RSEQ_CPU_ID_UNINITIALIZED = -1, + RSEQ_CPU_ID_REGISTRATION_FAILED = -2, +}; + +enum rseq_flags { + RSEQ_FLAG_UNREGISTER = 1, +}; + +enum rseq_cs_flags { + RSEQ_CS_FLAG_NO_RESTART_ON_PREEMPT = 1, + RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL = 2, + RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE = 4, +}; + +struct rseq_cs { + __u32 version; + __u32 flags; + __u64 start_ip; + __u64 post_commit_offset; + __u64 abort_ip; +}; + +typedef struct { + void *lock; +} class_irq_t; + +struct trace_event_raw_rseq_update { + struct trace_entry ent; + s32 cpu_id; + s32 node_id; + s32 mm_cid; + char __data[0]; +}; + +struct trace_event_raw_rseq_ip_fixup { + struct trace_entry ent; + long unsigned int regs_ip; + long unsigned int start_ip; + long unsigned int post_commit_offset; + long unsigned int abort_ip; + char __data[0]; +}; + +struct trace_event_data_offsets_rseq_update {}; + +struct trace_event_data_offsets_rseq_ip_fixup {}; + +typedef void (*btf_trace_rseq_update)(void *, struct task_struct *); + +typedef void (*btf_trace_rseq_ip_fixup)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + +enum lruvec_flags { + LRUVEC_CGROUP_CONGESTED = 0, + LRUVEC_NODE_CONGESTED = 1, +}; + +enum { + LRU_GEN_CORE = 0, + LRU_GEN_MM_WALK = 1, + LRU_GEN_NONLEAF_YOUNG = 2, + NR_LRU_GEN_CAPS = 3, +}; + +enum { + MM_LEAF_TOTAL = 0, + MM_LEAF_YOUNG = 1, + MM_NONLEAF_FOUND = 2, + MM_NONLEAF_ADDED = 3, + NR_MM_STATS = 4, +}; + +enum pgdat_flags { + PGDAT_DIRTY = 0, + PGDAT_WRITEBACK = 1, + PGDAT_RECLAIM_LOCKED = 2, +}; + +struct reclaim_stat { + unsigned int nr_dirty; + unsigned int nr_unqueued_dirty; + unsigned int nr_congested; + unsigned int nr_writeback; + unsigned int nr_immediate; + unsigned int nr_pageout; + unsigned int nr_activate[2]; + unsigned int nr_ref_keep; + unsigned int nr_unmap_fail; + unsigned int nr_lazyfree_fail; + unsigned int nr_demoted; +}; + +struct trace_event_raw_mm_vmscan_kswapd_sleep { + struct trace_entry ent; + int nid; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_kswapd_wake { + struct trace_entry ent; + int nid; + int zid; + int order; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_wakeup_kswapd { + struct trace_entry ent; + int nid; + int zid; + int order; + long unsigned int gfp_flags; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_direct_reclaim_begin_template { + struct trace_entry ent; + int order; + long unsigned int gfp_flags; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_direct_reclaim_end_template { + struct trace_entry ent; + long unsigned int nr_reclaimed; + char __data[0]; +}; + +struct trace_event_raw_mm_shrink_slab_start { + struct trace_entry ent; + struct shrinker *shr; + void *shrink; + int nid; + long int nr_objects_to_shrink; + long unsigned int gfp_flags; + long unsigned int cache_items; + long long unsigned int delta; + long unsigned int total_scan; + int priority; + char __data[0]; +}; + +struct trace_event_raw_mm_shrink_slab_end { + struct trace_entry ent; + struct shrinker *shr; + int nid; + void *shrink; + long int unused_scan; + long int new_scan; + int retval; + long int total_scan; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_lru_isolate { + struct trace_entry ent; + int highest_zoneidx; + int order; + long unsigned int nr_requested; + long unsigned int nr_scanned; + long unsigned int nr_skipped; + long unsigned int nr_taken; + int lru; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_write_folio { + struct trace_entry ent; + long unsigned int pfn; + int reclaim_flags; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_lru_shrink_inactive { + struct trace_entry ent; + int nid; + long unsigned int nr_scanned; + long unsigned int nr_reclaimed; + long unsigned int nr_dirty; + long unsigned int nr_writeback; + long unsigned int nr_congested; + long unsigned int nr_immediate; + unsigned int nr_activate0; + unsigned int nr_activate1; + long unsigned int nr_ref_keep; + long unsigned int nr_unmap_fail; + int priority; + int reclaim_flags; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_lru_shrink_active { + struct trace_entry ent; + int nid; + long unsigned int nr_taken; + long unsigned int nr_active; + long unsigned int nr_deactivated; + long unsigned int nr_referenced; + int priority; + int reclaim_flags; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_node_reclaim_begin { + struct trace_entry ent; + int nid; + int order; + long unsigned int gfp_flags; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_throttled { + struct trace_entry ent; + int nid; + int usec_timeout; + int usec_delayed; + int reason; + char __data[0]; +}; + +struct trace_event_data_offsets_mm_vmscan_kswapd_sleep {}; + +struct trace_event_data_offsets_mm_vmscan_kswapd_wake {}; + +struct trace_event_data_offsets_mm_vmscan_wakeup_kswapd {}; + +struct trace_event_data_offsets_mm_vmscan_direct_reclaim_begin_template {}; + +struct trace_event_data_offsets_mm_vmscan_direct_reclaim_end_template {}; + +struct trace_event_data_offsets_mm_shrink_slab_start {}; + +struct trace_event_data_offsets_mm_shrink_slab_end {}; + +struct trace_event_data_offsets_mm_vmscan_lru_isolate {}; + +struct trace_event_data_offsets_mm_vmscan_write_folio {}; + +struct trace_event_data_offsets_mm_vmscan_lru_shrink_inactive {}; + +struct trace_event_data_offsets_mm_vmscan_lru_shrink_active {}; + +struct trace_event_data_offsets_mm_vmscan_node_reclaim_begin {}; + +struct trace_event_data_offsets_mm_vmscan_throttled {}; + +typedef void (*btf_trace_mm_vmscan_kswapd_sleep)(void *, int); + +typedef void (*btf_trace_mm_vmscan_kswapd_wake)(void *, int, int, int); + +typedef void (*btf_trace_mm_vmscan_wakeup_kswapd)(void *, int, int, int, gfp_t); + +typedef void (*btf_trace_mm_vmscan_direct_reclaim_begin)(void *, int, gfp_t); + +typedef void (*btf_trace_mm_vmscan_memcg_reclaim_begin)(void *, int, gfp_t); + +typedef void (*btf_trace_mm_vmscan_memcg_softlimit_reclaim_begin)(void *, int, gfp_t); + +typedef void (*btf_trace_mm_vmscan_direct_reclaim_end)(void *, long unsigned int); + +typedef void (*btf_trace_mm_vmscan_memcg_reclaim_end)(void *, long unsigned int); + +typedef void (*btf_trace_mm_vmscan_memcg_softlimit_reclaim_end)(void *, long unsigned int); + +typedef void (*btf_trace_mm_shrink_slab_start)(void *, struct shrinker *, struct shrink_control *, long int, long unsigned int, long long unsigned int, long unsigned int, int); + +typedef void (*btf_trace_mm_shrink_slab_end)(void *, struct shrinker *, int, int, long int, long int, long int); + +typedef void (*btf_trace_mm_vmscan_lru_isolate)(void *, int, int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int); + +typedef void (*btf_trace_mm_vmscan_write_folio)(void *, struct folio *); + +typedef void (*btf_trace_mm_vmscan_lru_shrink_inactive)(void *, int, long unsigned int, long unsigned int, struct reclaim_stat *, int, int); + +typedef void (*btf_trace_mm_vmscan_lru_shrink_active)(void *, int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int, int); + +typedef void (*btf_trace_mm_vmscan_node_reclaim_begin)(void *, int, int, gfp_t); + +typedef void (*btf_trace_mm_vmscan_node_reclaim_end)(void *, long unsigned int); + +typedef void (*btf_trace_mm_vmscan_throttled)(void *, int, int, int, int); + +struct scan_control { + long unsigned int nr_to_reclaim; + nodemask_t *nodemask; + struct mem_cgroup *target_mem_cgroup; + long unsigned int anon_cost; + long unsigned int file_cost; + int *proactive_swappiness; + unsigned int may_deactivate: 2; + unsigned int force_deactivate: 1; + unsigned int skipped_deactivate: 1; + unsigned int may_writepage: 1; + unsigned int may_unmap: 1; + unsigned int may_swap: 1; + unsigned int no_cache_trim_mode: 1; + unsigned int cache_trim_mode_failed: 1; + unsigned int proactive: 1; + unsigned int memcg_low_reclaim: 1; + unsigned int memcg_low_skipped: 1; + unsigned int memcg_full_walk: 1; + unsigned int hibernation_mode: 1; + unsigned int compaction_ready: 1; + unsigned int cache_trim_mode: 1; + unsigned int file_is_tiny: 1; + unsigned int no_demotion: 1; + s8 order; + s8 priority; + s8 reclaim_idx; + gfp_t gfp_mask; + long unsigned int nr_scanned; + long unsigned int nr_reclaimed; + struct { + unsigned int dirty; + unsigned int unqueued_dirty; + unsigned int congested; + unsigned int writeback; + unsigned int immediate; + unsigned int file_taken; + unsigned int taken; + } nr; + struct reclaim_state reclaim_state; +}; + +typedef enum { + PAGE_KEEP = 0, + PAGE_ACTIVATE = 1, + PAGE_SUCCESS = 2, + PAGE_CLEAN = 3, +} pageout_t; + +enum folio_references { + FOLIOREF_RECLAIM = 0, + FOLIOREF_RECLAIM_CLEAN = 1, + FOLIOREF_KEEP = 2, + FOLIOREF_ACTIVATE = 3, +}; + +enum scan_balance { + SCAN_EQUAL = 0, + SCAN_FRACT = 1, + SCAN_ANON = 2, + SCAN_FILE = 3, +}; + +struct ctrl_pos { + long unsigned int refaulted; + long unsigned int total; + int gain; +}; + +enum { + MEMCG_LRU_NOP = 0, + MEMCG_LRU_HEAD = 1, + MEMCG_LRU_TAIL = 2, + MEMCG_LRU_OLD = 3, + MEMCG_LRU_YOUNG = 4, +}; + +struct thpsize { + struct kobject kobj; + struct list_head node; + int order; +}; + +struct trace_event_raw_migration_pmd { + struct trace_entry ent; + long unsigned int addr; + long unsigned int pmd; + char __data[0]; +}; + +struct trace_event_data_offsets_migration_pmd {}; + +typedef void (*btf_trace_set_migration_pmd)(void *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_remove_migration_pmd)(void *, long unsigned int, long unsigned int); + +struct file_clone_range { + __s64 src_fd; + __u64 src_offset; + __u64 src_length; + __u64 dest_offset; +}; + +struct fsuuid2 { + __u8 len; + __u8 uuid[16]; +}; + +struct fs_sysfs_path { + __u8 len; + __u8 name[128]; +}; + +struct file_dedupe_range_info { + __s64 dest_fd; + __u64 dest_offset; + __u64 bytes_deduped; + __s32 status; + __u32 reserved; +}; + +struct file_dedupe_range { + __u64 src_offset; + __u64 src_length; + __u16 dest_count; + __u16 reserved1; + __u32 reserved2; + struct file_dedupe_range_info info[0]; +}; + +struct fsxattr { + __u32 fsx_xflags; + __u32 fsx_extsize; + __u32 fsx_nextents; + __u32 fsx_projid; + __u32 fsx_cowextsize; + unsigned char fsx_pad[8]; +}; + +struct space_resv { + __s16 l_type; + __s16 l_whence; + __s64 l_start; + __s64 l_len; + __s32 l_sysid; + __u32 l_pid; + __s32 l_pad[4]; +}; + +struct fiemap { + __u64 fm_start; + __u64 fm_length; + __u32 fm_flags; + __u32 fm_mapped_extents; + __u32 fm_extent_count; + __u32 fm_reserved; + struct fiemap_extent fm_extents[0]; +}; + +struct fscrypt_get_policy_ex_arg { + __u64 policy_size; + union { + __u8 version; + struct fscrypt_policy_v1 v1; + struct fscrypt_policy_v2 v2; + } policy; +}; + +struct pde_opener { + struct list_head lh; + struct file *file; + bool closing; + struct completion *c; +}; + +enum { + BIAS = 2147483648, +}; + +struct pending_reservation { + struct rb_node rb_node; + ext4_lblk_t lclu; +}; + +struct rsvd_count { + int ndelayed; + bool first_do_lblk_found; + ext4_lblk_t first_do_lblk; + ext4_lblk_t last_do_lblk; + struct extent_status *left_es; + bool partial; + ext4_lblk_t lclu; +}; + +struct ext4_fc_tl { + __le16 fc_tag; + __le16 fc_len; +}; + +struct ext4_fc_head { + __le32 fc_features; + __le32 fc_tid; +}; + +struct ext4_fc_add_range { + __le32 fc_ino; + __u8 fc_ex[12]; +}; + +struct ext4_fc_del_range { + __le32 fc_ino; + __le32 fc_lblk; + __le32 fc_len; +}; + +struct ext4_fc_dentry_info { + __le32 fc_parent_ino; + __le32 fc_ino; + __u8 fc_dname[0]; +}; + +struct ext4_fc_inode { + __le32 fc_ino; + __u8 fc_raw_inode[0]; +}; + +struct ext4_fc_tail { + __le32 fc_tid; + __le32 fc_crc; +}; + +enum { + EXT4_FC_STATUS_OK = 0, + EXT4_FC_STATUS_INELIGIBLE = 1, + EXT4_FC_STATUS_SKIPPED = 2, + EXT4_FC_STATUS_FAILED = 3, +}; + +struct ext4_fc_dentry_update { + int fcd_op; + int fcd_parent; + int fcd_ino; + struct qstr fcd_name; + unsigned char fcd_iname[40]; + struct list_head fcd_list; + struct list_head fcd_dilist; +}; + +struct __track_dentry_update_args { + struct dentry *dentry; + int op; +}; + +struct __track_range_args { + ext4_lblk_t start; + ext4_lblk_t end; +}; + +struct dentry_info_args { + int parent_ino; + int dname_len; + int ino; + int inode_len; + char *dname; +}; + +struct ext4_fc_tl_mem { + u16 fc_tag; + u16 fc_len; +}; + +struct cdrom_tocentry { + __u8 cdte_track; + __u8 cdte_adr: 4; + __u8 cdte_ctrl: 4; + __u8 cdte_format; + union cdrom_addr cdte_addr; + __u8 cdte_datamode; +}; + +struct iso_volume_descriptor { + __u8 type[1]; + char id[5]; + __u8 version[1]; + __u8 data[2041]; +}; + +struct iso_primary_descriptor { + __u8 type[1]; + char id[5]; + __u8 version[1]; + __u8 unused1[1]; + char system_id[32]; + char volume_id[32]; + __u8 unused2[8]; + __u8 volume_space_size[8]; + __u8 unused3[32]; + __u8 volume_set_size[4]; + __u8 volume_sequence_number[4]; + __u8 logical_block_size[4]; + __u8 path_table_size[8]; + __u8 type_l_path_table[4]; + __u8 opt_type_l_path_table[4]; + __u8 type_m_path_table[4]; + __u8 opt_type_m_path_table[4]; + __u8 root_directory_record[34]; + char volume_set_id[128]; + char publisher_id[128]; + char preparer_id[128]; + char application_id[128]; + char copyright_file_id[37]; + char abstract_file_id[37]; + char bibliographic_file_id[37]; + __u8 creation_date[17]; + __u8 modification_date[17]; + __u8 expiration_date[17]; + __u8 effective_date[17]; + __u8 file_structure_version[1]; + __u8 unused4[1]; + __u8 application_data[512]; + __u8 unused5[653]; +}; + +struct iso_supplementary_descriptor { + __u8 type[1]; + char id[5]; + __u8 version[1]; + __u8 flags[1]; + char system_id[32]; + char volume_id[32]; + __u8 unused2[8]; + __u8 volume_space_size[8]; + __u8 escape[32]; + __u8 volume_set_size[4]; + __u8 volume_sequence_number[4]; + __u8 logical_block_size[4]; + __u8 path_table_size[8]; + __u8 type_l_path_table[4]; + __u8 opt_type_l_path_table[4]; + __u8 type_m_path_table[4]; + __u8 opt_type_m_path_table[4]; + __u8 root_directory_record[34]; + char volume_set_id[128]; + char publisher_id[128]; + char preparer_id[128]; + char application_id[128]; + char copyright_file_id[37]; + char abstract_file_id[37]; + char bibliographic_file_id[37]; + __u8 creation_date[17]; + __u8 modification_date[17]; + __u8 expiration_date[17]; + __u8 effective_date[17]; + __u8 file_structure_version[1]; + __u8 unused4[1]; + __u8 application_data[512]; + __u8 unused5[653]; +}; + +struct hs_volume_descriptor { + __u8 foo[8]; + __u8 type[1]; + char id[5]; + __u8 version[1]; + __u8 data[2033]; +}; + +struct hs_primary_descriptor { + __u8 foo[8]; + __u8 type[1]; + __u8 id[5]; + __u8 version[1]; + __u8 unused1[1]; + char system_id[32]; + char volume_id[32]; + __u8 unused2[8]; + __u8 volume_space_size[8]; + __u8 unused3[32]; + __u8 volume_set_size[4]; + __u8 volume_sequence_number[4]; + __u8 logical_block_size[4]; + __u8 path_table_size[8]; + __u8 type_l_path_table[4]; + __u8 unused4[28]; + __u8 root_directory_record[34]; +}; + +enum isofs_file_format { + isofs_file_normal = 0, + isofs_file_sparse = 1, + isofs_file_compressed = 2, +}; + +struct isofs_options { + unsigned int rock: 1; + unsigned int joliet: 1; + unsigned int cruft: 1; + unsigned int hide: 1; + unsigned int showassoc: 1; + unsigned int nocompress: 1; + unsigned int overriderockperm: 1; + unsigned int uid_set: 1; + unsigned int gid_set: 1; + unsigned char map; + unsigned char check; + unsigned int blocksize; + umode_t fmode; + umode_t dmode; + kgid_t gid; + kuid_t uid; + char *iocharset; + s32 session; + s32 sbsector; +}; + +enum { + Opt_block = 0, + Opt_check___2 = 1, + Opt_cruft = 2, + Opt_gid___7 = 3, + Opt_ignore___2 = 4, + Opt_iocharset___3 = 5, + Opt_map = 6, + Opt_mode___6 = 7, + Opt_nojoliet = 8, + Opt_norock = 9, + Opt_sb___2 = 10, + Opt_session = 11, + Opt_uid___7 = 12, + Opt_unhide = 13, + Opt_utf8___2 = 14, + Opt_err___12 = 15, + Opt_nocompress = 16, + Opt_hide = 17, + Opt_showassoc = 18, + Opt_dmode = 19, + Opt_overriderockperm = 20, +}; + +struct isofs_iget5_callback_data { + long unsigned int block; + long unsigned int offset; +}; + +struct nfs_referral_count { + struct list_head list; + const struct task_struct *task; + unsigned int referral_count; +}; + +struct nfs_closeargs { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fh; + nfs4_stateid stateid; + struct nfs_seqid *seqid; + fmode_t fmode; + u32 share_access; + const u32 *bitmask; + u32 bitmask_store[3]; + struct nfs4_layoutreturn_args *lr_args; +}; + +struct nfs_closeres { + struct nfs4_sequence_res seq_res; + nfs4_stateid stateid; + struct nfs_fattr *fattr; + struct nfs_seqid *seqid; + const struct nfs_server *server; + struct nfs4_layoutreturn_res *lr_res; + int lr_ret; +}; + +struct nfs4_delegattr { + struct timespec64 atime; + struct timespec64 mtime; + bool atime_set; + bool mtime_set; +}; + +struct nfs4_delegreturnargs { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *fhandle; + const nfs4_stateid *stateid; + const u32 *bitmask; + u32 bitmask_store[3]; + struct nfs4_layoutreturn_args *lr_args; + struct nfs4_delegattr *sattr_args; +}; + +struct nfs4_delegreturnres { + struct nfs4_sequence_res seq_res; + struct nfs_fattr *fattr; + struct nfs_server *server; + struct nfs4_layoutreturn_res *lr_res; + int lr_ret; + bool sattr_res; + int sattr_ret; +}; + +struct trace_event_raw_nfs4_clientid_event { + struct trace_entry ent; + u32 __data_loc_dstaddr; + long unsigned int error; + char __data[0]; +}; + +struct trace_event_raw_nfs4_trunked_exchange_id { + struct trace_entry ent; + u32 __data_loc_main_addr; + u32 __data_loc_trunk_addr; + long unsigned int error; + char __data[0]; +}; + +struct trace_event_raw_nfs4_sequence_done { + struct trace_entry ent; + unsigned int session; + unsigned int slot_nr; + unsigned int seq_nr; + unsigned int highest_slotid; + unsigned int target_highest_slotid; + long unsigned int status_flags; + long unsigned int error; + char __data[0]; +}; + +struct trace_event_raw_nfs4_cb_sequence { + struct trace_entry ent; + unsigned int session; + unsigned int slot_nr; + unsigned int seq_nr; + unsigned int highest_slotid; + unsigned int cachethis; + long unsigned int error; + char __data[0]; +}; + +struct trace_event_raw_nfs4_cb_seqid_err { + struct trace_entry ent; + unsigned int session; + unsigned int slot_nr; + unsigned int seq_nr; + unsigned int highest_slotid; + unsigned int cachethis; + long unsigned int error; + char __data[0]; +}; + +struct trace_event_raw_nfs4_cb_offload { + struct trace_entry ent; + long unsigned int error; + u32 fhandle; + loff_t cb_count; + int cb_how; + int cb_stateid_seq; + u32 cb_stateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_setup_sequence { + struct trace_entry ent; + unsigned int session; + unsigned int slot_nr; + unsigned int seq_nr; + unsigned int highest_used_slotid; + char __data[0]; +}; + +struct trace_event_raw_nfs4_state_mgr { + struct trace_entry ent; + long unsigned int state; + u32 __data_loc_hostname; + char __data[0]; +}; + +struct trace_event_raw_nfs4_state_mgr_failed { + struct trace_entry ent; + long unsigned int error; + long unsigned int state; + u32 __data_loc_hostname; + u32 __data_loc_section; + char __data[0]; +}; + +struct trace_event_raw_nfs4_xdr_bad_operation { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + u32 xid; + u32 op; + u32 expected; + char __data[0]; +}; + +struct trace_event_raw_nfs4_xdr_event { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + u32 xid; + u32 op; + long unsigned int error; + char __data[0]; +}; + +struct trace_event_raw_nfs4_cb_error_class { + struct trace_entry ent; + u32 xid; + u32 cbident; + char __data[0]; +}; + +struct trace_event_raw_nfs4_open_event { + struct trace_entry ent; + long unsigned int error; + long unsigned int flags; + long unsigned int fmode; + dev_t dev; + u32 fhandle; + u64 fileid; + u64 dir; + u32 __data_loc_name; + int stateid_seq; + u32 stateid_hash; + int openstateid_seq; + u32 openstateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_cached_open { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + unsigned int fmode; + int stateid_seq; + u32 stateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_close { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + unsigned int fmode; + long unsigned int error; + int stateid_seq; + u32 stateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_lock_event { + struct trace_entry ent; + long unsigned int error; + long unsigned int cmd; + long unsigned int type; + loff_t start; + loff_t end; + dev_t dev; + u32 fhandle; + u64 fileid; + int stateid_seq; + u32 stateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_set_lock { + struct trace_entry ent; + long unsigned int error; + long unsigned int cmd; + long unsigned int type; + loff_t start; + loff_t end; + dev_t dev; + u32 fhandle; + u64 fileid; + int stateid_seq; + u32 stateid_hash; + int lockstateid_seq; + u32 lockstateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_state_lock_reclaim { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + long unsigned int state_flags; + long unsigned int lock_flags; + int stateid_seq; + u32 stateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_set_delegation_event { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + unsigned int fmode; + char __data[0]; +}; + +struct trace_event_raw_nfs4_delegreturn_exit { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + long unsigned int error; + int stateid_seq; + u32 stateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_test_stateid_event { + struct trace_entry ent; + long unsigned int error; + dev_t dev; + u32 fhandle; + u64 fileid; + int stateid_seq; + u32 stateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_lookup_event { + struct trace_entry ent; + dev_t dev; + long unsigned int error; + u64 dir; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfs4_lookupp { + struct trace_entry ent; + dev_t dev; + u64 ino; + long unsigned int error; + char __data[0]; +}; + +struct trace_event_raw_nfs4_rename { + struct trace_entry ent; + dev_t dev; + long unsigned int error; + u64 olddir; + u32 __data_loc_oldname; + u64 newdir; + u32 __data_loc_newname; + char __data[0]; +}; + +struct trace_event_raw_nfs4_inode_event { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + long unsigned int error; + char __data[0]; +}; + +struct trace_event_raw_nfs4_inode_stateid_event { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + long unsigned int error; + int stateid_seq; + u32 stateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_getattr_event { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + unsigned int valid; + long unsigned int error; + char __data[0]; +}; + +struct trace_event_raw_nfs4_inode_callback_event { + struct trace_entry ent; + long unsigned int error; + dev_t dev; + u32 fhandle; + u64 fileid; + u32 __data_loc_dstaddr; + char __data[0]; +}; + +struct trace_event_raw_nfs4_inode_stateid_callback_event { + struct trace_entry ent; + long unsigned int error; + dev_t dev; + u32 fhandle; + u64 fileid; + u32 __data_loc_dstaddr; + int stateid_seq; + u32 stateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_idmap_event { + struct trace_entry ent; + long unsigned int error; + u32 id; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfs4_read_event { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + loff_t offset; + u32 arg_count; + u32 res_count; + long unsigned int error; + int stateid_seq; + u32 stateid_hash; + int layoutstateid_seq; + u32 layoutstateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_write_event { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + loff_t offset; + u32 arg_count; + u32 res_count; + long unsigned int error; + int stateid_seq; + u32 stateid_hash; + int layoutstateid_seq; + u32 layoutstateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_commit_event { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + long unsigned int error; + loff_t offset; + u32 count; + int layoutstateid_seq; + u32 layoutstateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_layoutget { + struct trace_entry ent; + dev_t dev; + u32 fhandle; + u64 fileid; + u32 iomode; + u64 offset; + u64 count; + long unsigned int error; + int stateid_seq; + u32 stateid_hash; + int layoutstateid_seq; + u32 layoutstateid_hash; + char __data[0]; +}; + +struct trace_event_raw_pnfs_update_layout { + struct trace_entry ent; + dev_t dev; + u64 fileid; + u32 fhandle; + loff_t pos; + u64 count; + enum pnfs_iomode iomode; + int layoutstateid_seq; + u32 layoutstateid_hash; + long int lseg; + enum pnfs_update_layout_reason reason; + char __data[0]; +}; + +struct trace_event_raw_pnfs_layout_event { + struct trace_entry ent; + dev_t dev; + u64 fileid; + u32 fhandle; + loff_t pos; + u64 count; + enum pnfs_iomode iomode; + int layoutstateid_seq; + u32 layoutstateid_hash; + long int lseg; + char __data[0]; +}; + +struct trace_event_raw_nfs4_deviceid_event { + struct trace_entry ent; + u32 __data_loc_dstaddr; + unsigned char deviceid[16]; + char __data[0]; +}; + +struct trace_event_raw_nfs4_deviceid_status { + struct trace_entry ent; + dev_t dev; + int status; + u32 __data_loc_dstaddr; + unsigned char deviceid[16]; + char __data[0]; +}; + +struct trace_event_raw_fl_getdevinfo { + struct trace_entry ent; + u32 __data_loc_mds_addr; + unsigned char deviceid[16]; + u32 __data_loc_ds_ips; + char __data[0]; +}; + +struct trace_event_raw_nfs4_flexfiles_io_event { + struct trace_entry ent; + long unsigned int error; + dev_t dev; + u32 fhandle; + u64 fileid; + loff_t offset; + u32 count; + int stateid_seq; + u32 stateid_hash; + u32 __data_loc_dstaddr; + char __data[0]; +}; + +struct trace_event_raw_ff_layout_commit_error { + struct trace_entry ent; + long unsigned int error; + dev_t dev; + u32 fhandle; + u64 fileid; + loff_t offset; + u32 count; + u32 __data_loc_dstaddr; + char __data[0]; +}; + +struct trace_event_raw_pnfs_bl_pr_key_class { + struct trace_entry ent; + u64 key; + dev_t dev; + u32 __data_loc_device; + char __data[0]; +}; + +struct trace_event_raw_pnfs_bl_pr_key_err_class { + struct trace_entry ent; + u64 key; + dev_t dev; + long unsigned int status; + u32 __data_loc_device; + char __data[0]; +}; + +struct trace_event_raw_nfs4_llseek { + struct trace_entry ent; + long unsigned int error; + u32 fhandle; + u32 fileid; + dev_t dev; + int stateid_seq; + u32 stateid_hash; + loff_t offset_s; + u32 what; + loff_t offset_r; + u32 eof; + char __data[0]; +}; + +struct trace_event_raw_nfs4_sparse_event { + struct trace_entry ent; + long unsigned int error; + loff_t offset; + loff_t len; + dev_t dev; + u32 fhandle; + u64 fileid; + int stateid_seq; + u32 stateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_copy { + struct trace_entry ent; + long unsigned int error; + u32 src_fhandle; + u32 src_fileid; + u32 dst_fhandle; + u32 dst_fileid; + dev_t src_dev; + dev_t dst_dev; + int src_stateid_seq; + u32 src_stateid_hash; + int dst_stateid_seq; + u32 dst_stateid_hash; + loff_t src_offset; + loff_t dst_offset; + bool sync; + loff_t len; + int res_stateid_seq; + u32 res_stateid_hash; + loff_t res_count; + bool res_sync; + bool res_cons; + bool intra; + char __data[0]; +}; + +struct trace_event_raw_nfs4_clone { + struct trace_entry ent; + long unsigned int error; + u32 src_fhandle; + u32 src_fileid; + u32 dst_fhandle; + u32 dst_fileid; + dev_t src_dev; + dev_t dst_dev; + loff_t src_offset; + loff_t dst_offset; + int src_stateid_seq; + u32 src_stateid_hash; + int dst_stateid_seq; + u32 dst_stateid_hash; + loff_t len; + char __data[0]; +}; + +struct trace_event_raw_nfs4_copy_notify { + struct trace_entry ent; + long unsigned int error; + u32 fhandle; + u32 fileid; + dev_t dev; + int stateid_seq; + u32 stateid_hash; + int res_stateid_seq; + u32 res_stateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_offload_cancel { + struct trace_entry ent; + long unsigned int error; + u32 fhandle; + int stateid_seq; + u32 stateid_hash; + char __data[0]; +}; + +struct trace_event_raw_nfs4_xattr_event { + struct trace_entry ent; + long unsigned int error; + dev_t dev; + u32 fhandle; + u64 fileid; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_data_offsets_nfs4_clientid_event { + u32 dstaddr; + const void *dstaddr_ptr_; +}; + +struct trace_event_data_offsets_nfs4_trunked_exchange_id { + u32 main_addr; + const void *main_addr_ptr_; + u32 trunk_addr; + const void *trunk_addr_ptr_; +}; + +struct trace_event_data_offsets_nfs4_sequence_done {}; + +struct trace_event_data_offsets_nfs4_cb_sequence {}; + +struct trace_event_data_offsets_nfs4_cb_seqid_err {}; + +struct trace_event_data_offsets_nfs4_cb_offload {}; + +struct trace_event_data_offsets_nfs4_setup_sequence {}; + +struct trace_event_data_offsets_nfs4_state_mgr { + u32 hostname; + const void *hostname_ptr_; +}; + +struct trace_event_data_offsets_nfs4_state_mgr_failed { + u32 hostname; + const void *hostname_ptr_; + u32 section; + const void *section_ptr_; +}; + +struct trace_event_data_offsets_nfs4_xdr_bad_operation {}; + +struct trace_event_data_offsets_nfs4_xdr_event {}; + +struct trace_event_data_offsets_nfs4_cb_error_class {}; + +struct trace_event_data_offsets_nfs4_open_event { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfs4_cached_open {}; + +struct trace_event_data_offsets_nfs4_close {}; + +struct trace_event_data_offsets_nfs4_lock_event {}; + +struct trace_event_data_offsets_nfs4_set_lock {}; + +struct trace_event_data_offsets_nfs4_state_lock_reclaim {}; + +struct trace_event_data_offsets_nfs4_set_delegation_event {}; + +struct trace_event_data_offsets_nfs4_delegreturn_exit {}; + +struct trace_event_data_offsets_nfs4_test_stateid_event {}; + +struct trace_event_data_offsets_nfs4_lookup_event { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfs4_lookupp {}; + +struct trace_event_data_offsets_nfs4_rename { + u32 oldname; + const void *oldname_ptr_; + u32 newname; + const void *newname_ptr_; +}; + +struct trace_event_data_offsets_nfs4_inode_event {}; + +struct trace_event_data_offsets_nfs4_inode_stateid_event {}; + +struct trace_event_data_offsets_nfs4_getattr_event {}; + +struct trace_event_data_offsets_nfs4_inode_callback_event { + u32 dstaddr; + const void *dstaddr_ptr_; +}; + +struct trace_event_data_offsets_nfs4_inode_stateid_callback_event { + u32 dstaddr; + const void *dstaddr_ptr_; +}; + +struct trace_event_data_offsets_nfs4_idmap_event { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfs4_read_event {}; + +struct trace_event_data_offsets_nfs4_write_event {}; + +struct trace_event_data_offsets_nfs4_commit_event {}; + +struct trace_event_data_offsets_nfs4_layoutget {}; + +struct trace_event_data_offsets_pnfs_update_layout {}; + +struct trace_event_data_offsets_pnfs_layout_event {}; + +struct trace_event_data_offsets_nfs4_deviceid_event { + u32 dstaddr; + const void *dstaddr_ptr_; +}; + +struct trace_event_data_offsets_nfs4_deviceid_status { + u32 dstaddr; + const void *dstaddr_ptr_; +}; + +struct trace_event_data_offsets_fl_getdevinfo { + u32 mds_addr; + const void *mds_addr_ptr_; + u32 ds_ips; + const void *ds_ips_ptr_; +}; + +struct trace_event_data_offsets_nfs4_flexfiles_io_event { + u32 dstaddr; + const void *dstaddr_ptr_; +}; + +struct trace_event_data_offsets_ff_layout_commit_error { + u32 dstaddr; + const void *dstaddr_ptr_; +}; + +struct trace_event_data_offsets_pnfs_bl_pr_key_class { + u32 device; + const void *device_ptr_; +}; + +struct trace_event_data_offsets_pnfs_bl_pr_key_err_class { + u32 device; + const void *device_ptr_; +}; + +struct trace_event_data_offsets_nfs4_llseek {}; + +struct trace_event_data_offsets_nfs4_sparse_event {}; + +struct trace_event_data_offsets_nfs4_copy {}; + +struct trace_event_data_offsets_nfs4_clone {}; + +struct trace_event_data_offsets_nfs4_copy_notify {}; + +struct trace_event_data_offsets_nfs4_offload_cancel {}; + +struct trace_event_data_offsets_nfs4_xattr_event { + u32 name; + const void *name_ptr_; +}; + +typedef void (*btf_trace_nfs4_setclientid)(void *, const struct nfs_client *, int); + +typedef void (*btf_trace_nfs4_setclientid_confirm)(void *, const struct nfs_client *, int); + +typedef void (*btf_trace_nfs4_renew)(void *, const struct nfs_client *, int); + +typedef void (*btf_trace_nfs4_renew_async)(void *, const struct nfs_client *, int); + +typedef void (*btf_trace_nfs4_exchange_id)(void *, const struct nfs_client *, int); + +typedef void (*btf_trace_nfs4_create_session)(void *, const struct nfs_client *, int); + +typedef void (*btf_trace_nfs4_destroy_session)(void *, const struct nfs_client *, int); + +typedef void (*btf_trace_nfs4_destroy_clientid)(void *, const struct nfs_client *, int); + +typedef void (*btf_trace_nfs4_bind_conn_to_session)(void *, const struct nfs_client *, int); + +typedef void (*btf_trace_nfs4_sequence)(void *, const struct nfs_client *, int); + +typedef void (*btf_trace_nfs4_reclaim_complete)(void *, const struct nfs_client *, int); + +typedef void (*btf_trace_nfs4_trunked_exchange_id)(void *, const struct nfs_client *, const char *, int); + +typedef void (*btf_trace_nfs4_sequence_done)(void *, const struct nfs4_session *, const struct nfs4_sequence_res *); + +typedef void (*btf_trace_nfs4_cb_sequence)(void *, const struct cb_sequenceargs *, const struct cb_sequenceres *, __be32); + +typedef void (*btf_trace_nfs4_cb_seqid_err)(void *, const struct cb_sequenceargs *, __be32); + +typedef void (*btf_trace_nfs4_cb_offload)(void *, const struct nfs_fh *, const nfs4_stateid *, uint64_t, int, int); + +typedef void (*btf_trace_nfs4_setup_sequence)(void *, const struct nfs4_session *, const struct nfs4_sequence_args *); + +typedef void (*btf_trace_nfs4_state_mgr)(void *, const struct nfs_client *); + +typedef void (*btf_trace_nfs4_state_mgr_failed)(void *, const struct nfs_client *, const char *, int); + +typedef void (*btf_trace_nfs4_xdr_bad_operation)(void *, const struct xdr_stream *, u32, u32); + +typedef void (*btf_trace_nfs4_xdr_status)(void *, const struct xdr_stream *, u32, u32); + +typedef void (*btf_trace_nfs4_xdr_bad_filehandle)(void *, const struct xdr_stream *, u32, u32); + +typedef void (*btf_trace_nfs_cb_no_clp)(void *, __be32, u32); + +typedef void (*btf_trace_nfs_cb_badprinc)(void *, __be32, u32); + +typedef void (*btf_trace_nfs4_open_reclaim)(void *, const struct nfs_open_context *, int, int); + +typedef void (*btf_trace_nfs4_open_expired)(void *, const struct nfs_open_context *, int, int); + +typedef void (*btf_trace_nfs4_open_file)(void *, const struct nfs_open_context *, int, int); + +typedef void (*btf_trace_nfs4_cached_open)(void *, const struct nfs4_state *); + +typedef void (*btf_trace_nfs4_close)(void *, const struct nfs4_state *, const struct nfs_closeargs *, const struct nfs_closeres *, int); + +typedef void (*btf_trace_nfs4_get_lock)(void *, const struct file_lock *, const struct nfs4_state *, int, int); + +typedef void (*btf_trace_nfs4_unlock)(void *, const struct file_lock *, const struct nfs4_state *, int, int); + +typedef void (*btf_trace_nfs4_set_lock)(void *, const struct file_lock *, const struct nfs4_state *, const nfs4_stateid *, int, int); + +typedef void (*btf_trace_nfs4_state_lock_reclaim)(void *, const struct nfs4_state *, const struct nfs4_lock_state *); + +typedef void (*btf_trace_nfs4_set_delegation)(void *, const struct inode *, fmode_t); + +typedef void (*btf_trace_nfs4_reclaim_delegation)(void *, const struct inode *, fmode_t); + +typedef void (*btf_trace_nfs4_delegreturn_exit)(void *, const struct nfs4_delegreturnargs *, const struct nfs4_delegreturnres *, int); + +typedef void (*btf_trace_nfs4_test_delegation_stateid)(void *, const struct nfs4_state *, const struct nfs4_lock_state *, int); + +typedef void (*btf_trace_nfs4_test_open_stateid)(void *, const struct nfs4_state *, const struct nfs4_lock_state *, int); + +typedef void (*btf_trace_nfs4_test_lock_stateid)(void *, const struct nfs4_state *, const struct nfs4_lock_state *, int); + +typedef void (*btf_trace_nfs4_lookup)(void *, const struct inode *, const struct qstr *, int); + +typedef void (*btf_trace_nfs4_symlink)(void *, const struct inode *, const struct qstr *, int); + +typedef void (*btf_trace_nfs4_mkdir)(void *, const struct inode *, const struct qstr *, int); + +typedef void (*btf_trace_nfs4_mknod)(void *, const struct inode *, const struct qstr *, int); + +typedef void (*btf_trace_nfs4_remove)(void *, const struct inode *, const struct qstr *, int); + +typedef void (*btf_trace_nfs4_get_fs_locations)(void *, const struct inode *, const struct qstr *, int); + +typedef void (*btf_trace_nfs4_secinfo)(void *, const struct inode *, const struct qstr *, int); + +typedef void (*btf_trace_nfs4_lookupp)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs4_rename)(void *, const struct inode *, const struct qstr *, const struct inode *, const struct qstr *, int); + +typedef void (*btf_trace_nfs4_access)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs4_readlink)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs4_readdir)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs4_get_acl)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs4_set_acl)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs4_get_security_label)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs4_set_security_label)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfs4_setattr)(void *, const struct inode *, const nfs4_stateid *, int); + +typedef void (*btf_trace_nfs4_delegreturn)(void *, const struct inode *, const nfs4_stateid *, int); + +typedef void (*btf_trace_nfs4_open_stateid_update)(void *, const struct inode *, const nfs4_stateid *, int); + +typedef void (*btf_trace_nfs4_open_stateid_update_wait)(void *, const struct inode *, const nfs4_stateid *, int); + +typedef void (*btf_trace_nfs4_close_stateid_update_wait)(void *, const struct inode *, const nfs4_stateid *, int); + +typedef void (*btf_trace_nfs4_getattr)(void *, const struct nfs_server *, const struct nfs_fh *, const struct nfs_fattr *, int); + +typedef void (*btf_trace_nfs4_lookup_root)(void *, const struct nfs_server *, const struct nfs_fh *, const struct nfs_fattr *, int); + +typedef void (*btf_trace_nfs4_fsinfo)(void *, const struct nfs_server *, const struct nfs_fh *, const struct nfs_fattr *, int); + +typedef void (*btf_trace_nfs4_cb_getattr)(void *, const struct nfs_client *, const struct nfs_fh *, const struct inode *, int); + +typedef void (*btf_trace_nfs4_cb_recall)(void *, const struct nfs_client *, const struct nfs_fh *, const struct inode *, const nfs4_stateid *, int); + +typedef void (*btf_trace_nfs4_cb_layoutrecall_file)(void *, const struct nfs_client *, const struct nfs_fh *, const struct inode *, const nfs4_stateid *, int); + +typedef void (*btf_trace_nfs4_map_name_to_uid)(void *, const char *, int, u32, int); + +typedef void (*btf_trace_nfs4_map_group_to_gid)(void *, const char *, int, u32, int); + +typedef void (*btf_trace_nfs4_map_uid_to_name)(void *, const char *, int, u32, int); + +typedef void (*btf_trace_nfs4_map_gid_to_group)(void *, const char *, int, u32, int); + +typedef void (*btf_trace_nfs4_read)(void *, const struct nfs_pgio_header *, int); + +typedef void (*btf_trace_nfs4_pnfs_read)(void *, const struct nfs_pgio_header *, int); + +typedef void (*btf_trace_nfs4_write)(void *, const struct nfs_pgio_header *, int); + +typedef void (*btf_trace_nfs4_pnfs_write)(void *, const struct nfs_pgio_header *, int); + +typedef void (*btf_trace_nfs4_commit)(void *, const struct nfs_commit_data *, int); + +typedef void (*btf_trace_nfs4_pnfs_commit_ds)(void *, const struct nfs_commit_data *, int); + +typedef void (*btf_trace_nfs4_layoutget)(void *, const struct nfs_open_context *, const struct pnfs_layout_range *, const struct pnfs_layout_range *, const nfs4_stateid *, int); + +typedef void (*btf_trace_nfs4_layoutcommit)(void *, const struct inode *, const nfs4_stateid *, int); + +typedef void (*btf_trace_nfs4_layoutreturn)(void *, const struct inode *, const nfs4_stateid *, int); + +typedef void (*btf_trace_nfs4_layoutreturn_on_close)(void *, const struct inode *, const nfs4_stateid *, int); + +typedef void (*btf_trace_nfs4_layouterror)(void *, const struct inode *, const nfs4_stateid *, int); + +typedef void (*btf_trace_nfs4_layoutstats)(void *, const struct inode *, const nfs4_stateid *, int); + +typedef void (*btf_trace_pnfs_update_layout)(void *, struct inode *, loff_t, u64, enum pnfs_iomode, struct pnfs_layout_hdr *, struct pnfs_layout_segment *, enum pnfs_update_layout_reason); + +typedef void (*btf_trace_pnfs_mds_fallback_pg_init_read)(void *, struct inode *, loff_t, u64, enum pnfs_iomode, struct pnfs_layout_hdr *, struct pnfs_layout_segment *); + +typedef void (*btf_trace_pnfs_mds_fallback_pg_init_write)(void *, struct inode *, loff_t, u64, enum pnfs_iomode, struct pnfs_layout_hdr *, struct pnfs_layout_segment *); + +typedef void (*btf_trace_pnfs_mds_fallback_pg_get_mirror_count)(void *, struct inode *, loff_t, u64, enum pnfs_iomode, struct pnfs_layout_hdr *, struct pnfs_layout_segment *); + +typedef void (*btf_trace_pnfs_mds_fallback_read_done)(void *, struct inode *, loff_t, u64, enum pnfs_iomode, struct pnfs_layout_hdr *, struct pnfs_layout_segment *); + +typedef void (*btf_trace_pnfs_mds_fallback_write_done)(void *, struct inode *, loff_t, u64, enum pnfs_iomode, struct pnfs_layout_hdr *, struct pnfs_layout_segment *); + +typedef void (*btf_trace_pnfs_mds_fallback_read_pagelist)(void *, struct inode *, loff_t, u64, enum pnfs_iomode, struct pnfs_layout_hdr *, struct pnfs_layout_segment *); + +typedef void (*btf_trace_pnfs_mds_fallback_write_pagelist)(void *, struct inode *, loff_t, u64, enum pnfs_iomode, struct pnfs_layout_hdr *, struct pnfs_layout_segment *); + +typedef void (*btf_trace_nfs4_deviceid_free)(void *, const struct nfs_client *, const struct nfs4_deviceid *); + +typedef void (*btf_trace_nfs4_getdeviceinfo)(void *, const struct nfs_server *, const struct nfs4_deviceid *, int); + +typedef void (*btf_trace_nfs4_find_deviceid)(void *, const struct nfs_server *, const struct nfs4_deviceid *, int); + +typedef void (*btf_trace_fl_getdevinfo)(void *, const struct nfs_server *, const struct nfs4_deviceid *, char *); + +typedef void (*btf_trace_ff_layout_read_error)(void *, const struct nfs_pgio_header *); + +typedef void (*btf_trace_ff_layout_write_error)(void *, const struct nfs_pgio_header *); + +typedef void (*btf_trace_ff_layout_commit_error)(void *, const struct nfs_commit_data *); + +typedef void (*btf_trace_bl_pr_key_reg)(void *, const struct block_device *, u64); + +typedef void (*btf_trace_bl_pr_key_unreg)(void *, const struct block_device *, u64); + +typedef void (*btf_trace_bl_pr_key_reg_err)(void *, const struct block_device *, u64, int); + +typedef void (*btf_trace_bl_pr_key_unreg_err)(void *, const struct block_device *, u64, int); + +typedef void (*btf_trace_nfs4_llseek)(void *, const struct inode *, const struct nfs42_seek_args *, const struct nfs42_seek_res *, int); + +typedef void (*btf_trace_nfs4_fallocate)(void *, const struct inode *, const struct nfs42_falloc_args *, int); + +typedef void (*btf_trace_nfs4_deallocate)(void *, const struct inode *, const struct nfs42_falloc_args *, int); + +typedef void (*btf_trace_nfs4_copy)(void *, const struct inode *, const struct inode *, const struct nfs42_copy_args *, const struct nfs42_copy_res *, const struct nl4_server *, int); + +typedef void (*btf_trace_nfs4_clone)(void *, const struct inode *, const struct inode *, const struct nfs42_clone_args *, int); + +typedef void (*btf_trace_nfs4_copy_notify)(void *, const struct inode *, const struct nfs42_copy_notify_args *, const struct nfs42_copy_notify_res *, int); + +typedef void (*btf_trace_nfs4_offload_cancel)(void *, const struct nfs42_offload_status_args *, int); + +typedef void (*btf_trace_nfs4_getxattr)(void *, const struct inode *, const char *, int); + +typedef void (*btf_trace_nfs4_setxattr)(void *, const struct inode *, const char *, int); + +typedef void (*btf_trace_nfs4_removexattr)(void *, const struct inode *, const char *, int); + +typedef void (*btf_trace_nfs4_listxattr)(void *, const struct inode *, int); + +enum nfs3_time_how { + DONT_CHANGE = 0, + SET_TO_SERVER_TIME = 1, + SET_TO_CLIENT_TIME = 2, +}; + +struct nfsd3_fhandle_pair { + __u32 dummy; + struct svc_fh fh1; + struct svc_fh fh2; +}; + +struct _SECURITY_BUFFER { + __le16 Length; + __le16 MaximumLength; + __le32 BufferOffset; +}; + +typedef struct _SECURITY_BUFFER SECURITY_BUFFER; + +struct _NEGOTIATE_MESSAGE { + __u8 Signature[8]; + __le32 MessageType; + __le32 NegotiateFlags; + SECURITY_BUFFER DomainName; + SECURITY_BUFFER WorkstationName; + char DomainString[0]; +}; + +typedef struct _NEGOTIATE_MESSAGE NEGOTIATE_MESSAGE; + +struct ntlmssp_version { + __u8 ProductMajorVersion; + __u8 ProductMinorVersion; + __le16 ProductBuild; + __u8 Reserved[3]; + __u8 NTLMRevisionCurrent; +}; + +struct negotiate_message { + __u8 Signature[8]; + __le32 MessageType; + __le32 NegotiateFlags; + SECURITY_BUFFER DomainName; + SECURITY_BUFFER WorkstationName; + struct ntlmssp_version Version; + char DomainString[0]; +}; + +struct _CHALLENGE_MESSAGE { + __u8 Signature[8]; + __le32 MessageType; + SECURITY_BUFFER TargetName; + __le32 NegotiateFlags; + __u8 Challenge[8]; + __u8 Reserved[8]; + SECURITY_BUFFER TargetInfoArray; +}; + +typedef struct _CHALLENGE_MESSAGE CHALLENGE_MESSAGE; + +struct _AUTHENTICATE_MESSAGE { + __u8 Signature[8]; + __le32 MessageType; + SECURITY_BUFFER LmChallengeResponse; + SECURITY_BUFFER NtChallengeResponse; + SECURITY_BUFFER DomainName; + SECURITY_BUFFER UserName; + SECURITY_BUFFER WorkstationName; + SECURITY_BUFFER SessionKey; + __le32 NegotiateFlags; + struct ntlmssp_version Version; + char UserString[0]; +}; + +typedef struct _AUTHENTICATE_MESSAGE AUTHENTICATE_MESSAGE; + +enum get_block_ctx { + GET_BLOCK_GENERAL = 0, + GET_BLOCK_WRITE_BEGIN = 1, + GET_BLOCK_DIRECT_IO_R = 2, + GET_BLOCK_DIRECT_IO_W = 3, + GET_BLOCK_BMAP = 4, +}; + +struct fuse_ioctl_in { + uint64_t fh; + uint32_t flags; + uint32_t cmd; + uint64_t arg; + uint32_t in_size; + uint32_t out_size; +}; + +struct fuse_ioctl_iovec { + uint64_t base; + uint64_t len; +}; + +struct fuse_ioctl_out { + int32_t result; + uint32_t flags; + uint32_t in_iovs; + uint32_t out_iovs; +}; + +struct fsverity_enable_arg { + __u32 version; + __u32 hash_algorithm; + __u32 block_size; + __u32 salt_size; + __u64 salt_ptr; + __u32 sig_size; + __u32 __reserved1; + __u64 sig_ptr; + __u64 __reserved2[11]; +}; + +struct fsverity_digest { + __u16 digest_algorithm; + __u16 digest_size; + __u8 digest[0]; +}; + +struct logicalVolIntegrityDescImpUse { + struct regid impIdent; + __le32 numFiles; + __le32 numDirs; + __le16 minUDFReadRev; + __le16 minUDFWriteRev; + __le16 maxUDFWriteRev; + uint8_t impUse[0]; +} __attribute__((packed)); + +struct allocDescImpUse { + __le16 flags; + uint8_t impUse[4]; +}; + +struct xfs_iext_rec { + uint64_t lo; + uint64_t hi; +}; + +struct xfs_iext_leaf { + struct xfs_iext_rec recs[15]; + struct xfs_iext_leaf *prev; + struct xfs_iext_leaf *next; +}; + +enum { + NODE_SIZE = 256, + KEYS_PER_NODE = 16, + RECS_PER_LEAF = 15, +}; + +struct xfs_iext_node { + uint64_t keys[16]; + void *ptrs[16]; +}; + +struct ioctl_sick_map { + unsigned int sick_mask; + unsigned int ioctl_mask; +}; + +struct xstats_entry { + char *desc; + int endpoint; +}; + +struct xfs_defer_resources { + struct xfs_buf *dr_bp[2]; + struct xfs_inode *dr_ip[5]; + short unsigned int dr_bufs; + short unsigned int dr_ordered; + short unsigned int dr_inos; +}; + +struct xfs_defer_capture { + struct list_head dfc_list; + struct list_head dfc_dfops; + unsigned int dfc_tpflags; + unsigned int dfc_blkres; + unsigned int dfc_rtxres; + unsigned int dfc_logres; + struct xfs_defer_resources dfc_held; +}; + +enum p9_cache_shortcuts { + CACHE_SC_NONE = 0, + CACHE_SC_READAHEAD = 1, + CACHE_SC_MMAP = 5, + CACHE_SC_LOOSE = 15, + CACHE_SC_FSCACHE = 143, +}; + +struct v9fs_inode { + struct netfs_inode netfs; + struct p9_qid qid; + unsigned int cache_validity; + struct mutex v_mutex; +}; + +enum { + Opt_debug___3 = 0, + Opt_dfltuid = 1, + Opt_dfltgid = 2, + Opt_afid = 3, + Opt_uname = 4, + Opt_remotename = 5, + Opt_cache___2 = 6, + Opt_cachetag = 7, + Opt_nodevmap = 8, + Opt_noxattr = 9, + Opt_directio = 10, + Opt_ignoreqv = 11, + Opt_access = 12, + Opt_posixacl = 13, + Opt_locktimeout = 14, + Opt_err___13 = 15, +}; + +enum cachefiles_trunc_trace { + cachefiles_trunc_dio_adjust = 0, + cachefiles_trunc_expand_tmpfile = 1, + cachefiles_trunc_shrink = 2, +}; + +struct btrfs_feature_attr { + struct kobj_attribute kobj_attr; + enum btrfs_feature_set feature_set; + u64 feature_bit; +}; + +struct raid_kobject { + u64 flags; + struct kobject kobj; +}; + +struct btrfs_dev_replace_item { + __le64 src_devid; + __le64 cursor_left; + __le64 cursor_right; + __le64 cont_reading_from_srcdev_mode; + __le64 replace_state; + __le64 time_started; + __le64 time_stopped; + __le64 num_write_errors; + __le64 num_uncorrectable_read_errors; +}; + +struct hmac_ctx { + struct crypto_shash *hash; + u8 pads[0]; +}; + +struct fcrypt_ctx { + __be32 sched[16]; +}; + +union lc4 { + __be32 l; + u8 c[4]; +}; + +struct aead_tfm { + struct crypto_aead *aead; + struct crypto_sync_skcipher *null_tfm; +}; + +struct req_iterator { + struct bvec_iter iter; + struct bio *bio; +}; + +enum bio_merge_status { + BIO_MERGE_OK = 0, + BIO_MERGE_NONE = 1, + BIO_MERGE_FAILED = 2, +}; + +struct uuidcmp { + const char *uuid; + int len; +}; + +enum { + IOBL_BUF_RING = 1, + IOBL_MMAP = 2, + IOBL_INC = 4, +}; + +struct io_async_rw { + size_t bytes_done; + struct iov_iter iter; + struct iov_iter_state iter_state; + struct iovec fast_iov; + struct iovec *free_iovec; + int free_iov_nr; + struct wait_page_queue wpq; +}; + +struct io_rw { + struct kiocb kiocb; + u64 addr; + u32 len; + rwf_t flags; +}; + +struct io_overflow_cqe { + struct list_head list; + struct io_uring_cqe cqe; +}; + +enum chacha20poly1305_lengths { + XCHACHA20POLY1305_NONCE_SIZE = 24, + CHACHA20POLY1305_KEY_SIZE = 32, + CHACHA20POLY1305_AUTHTAG_SIZE = 16, +}; + +typedef long unsigned int (*genpool_algo_t)(long unsigned int *, long unsigned int, long unsigned int, unsigned int, void *, struct gen_pool *, long unsigned int); + +struct gen_pool { + spinlock_t lock; + struct list_head chunks; + int min_alloc_order; + genpool_algo_t algo; + void *data; + const char *name; +}; + +struct gen_pool_chunk { + struct list_head next_chunk; + atomic_long_t avail; + phys_addr_t phys_addr; + void *owner; + long unsigned int start_addr; + long unsigned int end_addr; + long unsigned int bits[0]; +}; + +struct genpool_data_align { + int align; +}; + +struct genpool_data_fixed { + long unsigned int offset; +}; + +struct mbi_range { + u32 spi_start; + u32 nr_spis; + long unsigned int *bm; +}; + +enum tty_flow_change { + TTY_FLOW_NO_CHANGE = 0, + TTY_THROTTLE_SAFE = 1, + TTY_UNTHROTTLE_SAFE = 2, +}; + +struct n_tty_data { + size_t read_head; + size_t commit_head; + size_t canon_head; + size_t echo_head; + size_t echo_commit; + size_t echo_mark; + long unsigned int char_map[4]; + long unsigned int overrun_time; + unsigned int num_overrun; + bool no_room; + unsigned char lnext: 1; + unsigned char erasing: 1; + unsigned char raw: 1; + unsigned char real_raw: 1; + unsigned char icanon: 1; + unsigned char push: 1; + u8 read_buf[4096]; + long unsigned int read_flags[64]; + u8 echo_buf[4096]; + size_t read_tail; + size_t line_start; + size_t lookahead_count; + unsigned int column; + unsigned int canon_column; + size_t echo_tail; + struct mutex atomic_read_lock; + struct mutex output_lock; +}; + +enum { + ERASE = 0, + WERASE = 1, + KILL = 2, +}; + +struct dw8250_port_data { + int line; + struct uart_8250_dma dma; + u32 cpr_value; + u8 dlf_size; + bool hw_rs485_support; +}; + +struct pericom8250 { + void *virt; + unsigned int nr; + int line[0]; +}; + +struct timer_rand_state { + long unsigned int last_time; + long int last_delta; + long int last_delta2; +}; + +struct vdso_rng_data { + u64 generation; + u8 is_ready; +}; + +enum { + CRNG_EMPTY = 0, + CRNG_EARLY = 1, + CRNG_READY = 2, +}; + +enum { + CRNG_RESEED_START_INTERVAL = 1000, + CRNG_RESEED_INTERVAL = 60000, +}; + +struct crng { + u8 key[32]; + long unsigned int generation; + local_lock_t lock; +}; + +struct batch_u8 { + u8 entropy[96]; + local_lock_t lock; + long unsigned int generation; + unsigned int position; +}; + +struct batch_u16 { + u16 entropy[48]; + local_lock_t lock; + long unsigned int generation; + unsigned int position; +}; + +struct batch_u32 { + u32 entropy[24]; + local_lock_t lock; + long unsigned int generation; + unsigned int position; +}; + +struct batch_u64 { + u64 entropy[12]; + local_lock_t lock; + long unsigned int generation; + unsigned int position; +}; + +enum { + POOL_BITS = 256, + POOL_READY_BITS = 256, + POOL_EARLY_BITS = 128, +}; + +struct fast_pool { + long unsigned int pool[4]; + long unsigned int last; + unsigned int count; + struct timer_list mix; +}; + +struct entropy_timer_state { + long unsigned int entropy; + struct timer_list timer; + atomic_t samples; + unsigned int samples_per_bit; +}; + +enum { + NUM_TRIAL_SAMPLES = 8192, + MAX_SAMPLES_PER_BIT = 66, +}; + +enum { + MIX_INFLIGHT = 2147483648, +}; + +struct drmres_node { + struct list_head entry; + drmres_release_t release; + const char *name; + size_t size; +}; + +struct drmres { + struct drmres_node node; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + u8 data[0]; +}; + +struct drm_encoder_slave_funcs { + void (*set_config)(struct drm_encoder *, void *); + void (*destroy)(struct drm_encoder *); + void (*dpms)(struct drm_encoder *, int); + void (*save)(struct drm_encoder *); + void (*restore)(struct drm_encoder *); + bool (*mode_fixup)(struct drm_encoder *, const struct drm_display_mode *, struct drm_display_mode *); + int (*mode_valid)(struct drm_encoder *, struct drm_display_mode *); + void (*mode_set)(struct drm_encoder *, struct drm_display_mode *, struct drm_display_mode *); + enum drm_connector_status (*detect)(struct drm_encoder *, struct drm_connector *); + int (*get_modes)(struct drm_encoder *, struct drm_connector *); + int (*create_resources)(struct drm_encoder *, struct drm_connector *); + int (*set_property)(struct drm_encoder *, struct drm_connector *, struct drm_property *, uint64_t); +}; + +struct drm_encoder_slave { + struct drm_encoder base; + const struct drm_encoder_slave_funcs *slave_funcs; + void *slave_priv; + void *bus_priv; +}; + +struct drm_i2c_encoder_driver { + struct i2c_driver i2c_driver; + int (*encoder_init)(struct i2c_client *, struct drm_device *, struct drm_encoder_slave *); +}; + +enum virtio_gpu_formats { + VIRTIO_GPU_FORMAT_B8G8R8A8_UNORM = 1, + VIRTIO_GPU_FORMAT_B8G8R8X8_UNORM = 2, + VIRTIO_GPU_FORMAT_A8R8G8B8_UNORM = 3, + VIRTIO_GPU_FORMAT_X8R8G8B8_UNORM = 4, + VIRTIO_GPU_FORMAT_R8G8B8A8_UNORM = 67, + VIRTIO_GPU_FORMAT_X8B8G8R8_UNORM = 68, + VIRTIO_GPU_FORMAT_A8B8G8R8_UNORM = 121, + VIRTIO_GPU_FORMAT_R8G8B8X8_UNORM = 134, +}; + +struct virtio_gpu_framebuffer { + struct drm_framebuffer base; + struct virtio_gpu_fence *fence; +}; + +struct virtio_gpu_plane_state { + struct drm_plane_state base; + struct virtio_gpu_fence *fence; +}; + +enum { + NBD_CMD_READ = 0, + NBD_CMD_WRITE = 1, + NBD_CMD_DISC = 2, + NBD_CMD_FLUSH = 3, + NBD_CMD_TRIM = 4, + NBD_CMD_WRITE_ZEROES = 6, +}; + +struct nbd_request { + __be32 magic; + __be32 type; + union { + __be64 cookie; + char handle[8]; + }; + __be64 from; + __be32 len; +} __attribute__((packed)); + +struct nbd_reply { + __be32 magic; + __be32 error; + union { + __be64 cookie; + char handle[8]; + }; +}; + +enum { + NBD_ATTR_UNSPEC = 0, + NBD_ATTR_INDEX = 1, + NBD_ATTR_SIZE_BYTES = 2, + NBD_ATTR_BLOCK_SIZE_BYTES = 3, + NBD_ATTR_TIMEOUT = 4, + NBD_ATTR_SERVER_FLAGS = 5, + NBD_ATTR_CLIENT_FLAGS = 6, + NBD_ATTR_SOCKETS = 7, + NBD_ATTR_DEAD_CONN_TIMEOUT = 8, + NBD_ATTR_DEVICE_LIST = 9, + NBD_ATTR_BACKEND_IDENTIFIER = 10, + __NBD_ATTR_MAX = 11, +}; + +enum { + NBD_DEVICE_ITEM_UNSPEC = 0, + NBD_DEVICE_ITEM = 1, + __NBD_DEVICE_ITEM_MAX = 2, +}; + +enum { + NBD_DEVICE_UNSPEC = 0, + NBD_DEVICE_INDEX = 1, + NBD_DEVICE_CONNECTED = 2, + __NBD_DEVICE_MAX = 3, +}; + +enum { + NBD_SOCK_ITEM_UNSPEC = 0, + NBD_SOCK_ITEM = 1, + __NBD_SOCK_ITEM_MAX = 2, +}; + +enum { + NBD_SOCK_UNSPEC = 0, + NBD_SOCK_FD = 1, + __NBD_SOCK_MAX = 2, +}; + +enum { + NBD_CMD_UNSPEC = 0, + NBD_CMD_CONNECT = 1, + NBD_CMD_DISCONNECT = 2, + NBD_CMD_RECONFIGURE = 3, + NBD_CMD_LINK_DEAD = 4, + NBD_CMD_STATUS = 5, + __NBD_CMD_MAX = 6, +}; + +struct trace_event_raw_nbd_transport_event { + struct trace_entry ent; + struct request *req; + u64 handle; + char __data[0]; +}; + +struct trace_event_raw_nbd_send_request { + struct trace_entry ent; + struct nbd_request *nbd_request; + u64 dev_index; + struct request *request; + char __data[0]; +}; + +struct trace_event_data_offsets_nbd_transport_event {}; + +struct trace_event_data_offsets_nbd_send_request {}; + +typedef void (*btf_trace_nbd_header_sent)(void *, struct request *, u64); + +typedef void (*btf_trace_nbd_payload_sent)(void *, struct request *, u64); + +typedef void (*btf_trace_nbd_header_received)(void *, struct request *, u64); + +typedef void (*btf_trace_nbd_payload_received)(void *, struct request *, u64); + +typedef void (*btf_trace_nbd_send_request)(void *, struct nbd_request *, int, struct request *); + +struct nbd_sock { + struct socket *sock; + struct mutex tx_lock; + struct request *pending; + int sent; + bool dead; + int fallback_index; + int cookie; +}; + +struct nbd_device; + +struct recv_thread_args { + struct work_struct work; + struct nbd_device *nbd; + struct nbd_sock *nsock; + int index; +}; + +struct nbd_config; + +struct nbd_device { + struct blk_mq_tag_set tag_set; + int index; + refcount_t config_refs; + refcount_t refs; + struct nbd_config *config; + struct mutex config_lock; + struct gendisk *disk; + struct workqueue_struct *recv_workq; + struct work_struct remove_work; + struct list_head list; + struct task_struct *task_setup; + long unsigned int flags; + pid_t pid; + char *backend; +}; + +struct link_dead_args { + struct work_struct work; + int index; +}; + +struct nbd_config { + u32 flags; + long unsigned int runtime_flags; + u64 dead_conn_timeout; + struct nbd_sock **socks; + int num_connections; + atomic_t live_connections; + wait_queue_head_t conn_wait; + atomic_t recv_threads; + wait_queue_head_t recv_wq; + unsigned int blksize_bits; + loff_t bytesize; + struct dentry *dbg_dir; +}; + +struct nbd_cmd { + struct nbd_device *nbd; + struct mutex lock; + int index; + int cookie; + int retries; + blk_status_t status; + long unsigned int flags; + u32 cmd_cookie; +}; + +struct ipvlan_netns { + unsigned int ipvl_nf_hook_refcnt; +}; + +enum { + MAX_ALLOWEDIPS_DEPTH = 129, +}; + +enum ifla_gtp_role { + GTP_ROLE_GGSN = 0, + GTP_ROLE_SGSN = 1, +}; + +enum { + IFLA_GTP_UNSPEC = 0, + IFLA_GTP_FD0 = 1, + IFLA_GTP_FD1 = 2, + IFLA_GTP_PDP_HASHSIZE = 3, + IFLA_GTP_ROLE = 4, + IFLA_GTP_CREATE_SOCKETS = 5, + IFLA_GTP_RESTART_COUNT = 6, + IFLA_GTP_LOCAL = 7, + IFLA_GTP_LOCAL6 = 8, + __IFLA_GTP_MAX = 9, +}; + +enum gtp_genl_cmds { + GTP_CMD_NEWPDP = 0, + GTP_CMD_DELPDP = 1, + GTP_CMD_GETPDP = 2, + GTP_CMD_ECHOREQ = 3, + GTP_CMD_MAX = 4, +}; + +enum gtp_version { + GTP_V0 = 0, + GTP_V1 = 1, +}; + +enum gtp_attrs { + GTPA_UNSPEC = 0, + GTPA_LINK = 1, + GTPA_VERSION = 2, + GTPA_TID = 3, + GTPA_PEER_ADDRESS = 4, + GTPA_MS_ADDRESS = 5, + GTPA_FLOW = 6, + GTPA_NET_NS_FD = 7, + GTPA_I_TEI = 8, + GTPA_O_TEI = 9, + GTPA_PAD = 10, + GTPA_PEER_ADDR6 = 11, + GTPA_MS_ADDR6 = 12, + GTPA_FAMILY = 13, + __GTPA_MAX = 14, +}; + +struct gtp0_header { + __u8 flags; + __u8 type; + __be16 length; + __be16 seq; + __be16 flow; + __u8 number; + __u8 spare[3]; + __be64 tid; +} __attribute__((packed)); + +struct gtp1_header { + __u8 flags; + __u8 type; + __be16 length; + __be32 tid; +}; + +struct gtp1_header_long { + __u8 flags; + __u8 type; + __be16 length; + __be32 tid; + __be16 seq; + __u8 npdu; + __u8 next; +}; + +struct gtp_ie { + __u8 tag; + __u8 val; +}; + +struct gtp0_packet { + struct gtp0_header gtp0_h; + struct gtp_ie ie; +}; + +struct gtp1u_packet { + struct gtp1_header_long gtp1u_h; + struct gtp_ie ie; +} __attribute__((packed)); + +struct gtp_ext_hdr { + __u8 len; + __u8 data[0]; +}; + +struct pdp_ctx { + struct hlist_node hlist_tid; + struct hlist_node hlist_addr; + union { + struct { + u64 tid; + u16 flow; + } v0; + struct { + u32 i_tei; + u32 o_tei; + } v1; + } u; + u8 gtp_version; + u16 af; + union { + struct in_addr addr; + struct in6_addr addr6; + } ms; + union { + struct in_addr addr; + struct in6_addr addr6; + } peer; + struct sock *sk; + struct net_device *dev; + atomic_t tx_seq; + struct callback_head callback_head; +}; + +struct gtp_dev { + struct list_head list; + struct sock *sk0; + struct sock *sk1u; + u8 sk_created; + struct net_device *dev; + struct net *net; + unsigned int role; + unsigned int hash_size; + struct hlist_head *tid_hash; + struct hlist_head *addr_hash; + u8 restart_count; +}; + +struct echo_info { + u16 af; + u8 gtp_version; + union { + struct in_addr addr; + } ms; + union { + struct in_addr addr; + } peer; +}; + +struct gtp_net { + struct list_head gtp_dev_list; +}; + +enum gtp_multicast_groups { + GTP_GENL_MCGRP = 0, +}; + +struct gtp_pktinfo { + struct sock *sk; + union { + struct flowi4 fl4; + struct flowi6 fl6; + }; + union { + struct rtable *rt; + struct rt6_info *rt6; + }; + struct pdp_ctx *pctx; + struct net_device *dev; + __u8 tos; + __be16 gtph_port; +}; + +struct usb_descriptor_header { + __u8 bLength; + __u8 bDescriptorType; +}; + +struct usb_dev_cap_header { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDevCapabilityType; +}; + +struct uhci_td; + +struct uhci_qh { + __le32 link; + __le32 element; + dma_addr_t dma_handle; + struct list_head node; + struct usb_host_endpoint *hep; + struct usb_device *udev; + struct list_head queue; + struct uhci_td *dummy_td; + struct uhci_td *post_td; + struct usb_iso_packet_descriptor *iso_packet_desc; + long unsigned int advance_jiffies; + unsigned int unlink_frame; + unsigned int period; + short int phase; + short int load; + unsigned int iso_frame; + int state; + int type; + int skel; + unsigned int initial_toggle: 1; + unsigned int needs_fixup: 1; + unsigned int is_stopped: 1; + unsigned int wait_expired: 1; + unsigned int bandwidth_reserved: 1; +}; + +struct uhci_td { + __le32 link; + __le32 status; + __le32 token; + __le32 buffer; + dma_addr_t dma_handle; + struct list_head list; + int frame; + struct list_head fl_list; +}; + +enum uhci_rh_state { + UHCI_RH_RESET = 0, + UHCI_RH_SUSPENDED = 1, + UHCI_RH_AUTO_STOPPED = 2, + UHCI_RH_RESUMING = 3, + UHCI_RH_SUSPENDING = 4, + UHCI_RH_RUNNING = 5, + UHCI_RH_RUNNING_NODEVS = 6, +}; + +struct uhci_hcd { + long unsigned int io_addr; + void *regs; + struct dma_pool *qh_pool; + struct dma_pool *td_pool; + struct uhci_td *term_td; + struct uhci_qh *skelqh[11]; + struct uhci_qh *next_qh; + spinlock_t lock; + dma_addr_t frame_dma_handle; + __le32 *frame; + void **frame_cpu; + enum uhci_rh_state rh_state; + long unsigned int auto_stop_time; + unsigned int frame_number; + unsigned int is_stopped; + unsigned int last_iso_frame; + unsigned int cur_iso_frame; + unsigned int scan_in_progress: 1; + unsigned int need_rescan: 1; + unsigned int dead: 1; + unsigned int RD_enable: 1; + unsigned int is_initialized: 1; + unsigned int fsbr_is_on: 1; + unsigned int fsbr_is_wanted: 1; + unsigned int fsbr_expiring: 1; + struct timer_list fsbr_timer; + unsigned int oc_low: 1; + unsigned int wait_for_hp: 1; + unsigned int big_endian_mmio: 1; + unsigned int big_endian_desc: 1; + unsigned int is_aspeed: 1; + long unsigned int port_c_suspend; + long unsigned int resuming_ports; + long unsigned int ports_timeout; + struct list_head idle_qh_list; + int rh_numports; + wait_queue_head_t waitqh; + int num_waiting; + int total_load; + short int load[32]; + struct clk *clk; + void (*reset_hc)(struct uhci_hcd *); + int (*check_and_reset_hc)(struct uhci_hcd *); + void (*configure_hc)(struct uhci_hcd *); + int (*resume_detect_interrupts_are_broken)(struct uhci_hcd *); + int (*global_suspend_mode_is_broken)(struct uhci_hcd *); +}; + +struct urb_priv___2 { + struct list_head node; + struct urb *urb; + struct uhci_qh *qh; + struct list_head td_list; + unsigned int fsbr: 1; +}; + +enum { + ATA_MAX_DEVICES = 2, + ATA_MAX_PRD = 256, + ATA_SECT_SIZE = 512, + ATA_MAX_SECTORS_128 = 128, + ATA_MAX_SECTORS = 256, + ATA_MAX_SECTORS_1024 = 1024, + ATA_MAX_SECTORS_LBA48 = 65535, + ATA_MAX_SECTORS_TAPE = 65535, + ATA_MAX_TRIM_RNUM = 64, + ATA_ID_WORDS = 256, + ATA_ID_CONFIG = 0, + ATA_ID_CYLS = 1, + ATA_ID_HEADS = 3, + ATA_ID_SECTORS = 6, + ATA_ID_SERNO = 10, + ATA_ID_BUF_SIZE = 21, + ATA_ID_FW_REV = 23, + ATA_ID_PROD = 27, + ATA_ID_MAX_MULTSECT = 47, + ATA_ID_DWORD_IO = 48, + ATA_ID_TRUSTED = 48, + ATA_ID_CAPABILITY = 49, + ATA_ID_OLD_PIO_MODES = 51, + ATA_ID_OLD_DMA_MODES = 52, + ATA_ID_FIELD_VALID = 53, + ATA_ID_CUR_CYLS = 54, + ATA_ID_CUR_HEADS = 55, + ATA_ID_CUR_SECTORS = 56, + ATA_ID_MULTSECT = 59, + ATA_ID_LBA_CAPACITY = 60, + ATA_ID_SWDMA_MODES = 62, + ATA_ID_MWDMA_MODES = 63, + ATA_ID_PIO_MODES = 64, + ATA_ID_EIDE_DMA_MIN = 65, + ATA_ID_EIDE_DMA_TIME = 66, + ATA_ID_EIDE_PIO = 67, + ATA_ID_EIDE_PIO_IORDY = 68, + ATA_ID_ADDITIONAL_SUPP = 69, + ATA_ID_QUEUE_DEPTH = 75, + ATA_ID_SATA_CAPABILITY = 76, + ATA_ID_SATA_CAPABILITY_2 = 77, + ATA_ID_FEATURE_SUPP = 78, + ATA_ID_MAJOR_VER = 80, + ATA_ID_COMMAND_SET_1 = 82, + ATA_ID_COMMAND_SET_2 = 83, + ATA_ID_CFSSE = 84, + ATA_ID_CFS_ENABLE_1 = 85, + ATA_ID_CFS_ENABLE_2 = 86, + ATA_ID_CSF_DEFAULT = 87, + ATA_ID_UDMA_MODES = 88, + ATA_ID_HW_CONFIG = 93, + ATA_ID_SPG = 98, + ATA_ID_LBA_CAPACITY_2 = 100, + ATA_ID_SECTOR_SIZE = 106, + ATA_ID_WWN = 108, + ATA_ID_LOGICAL_SECTOR_SIZE = 117, + ATA_ID_COMMAND_SET_3 = 119, + ATA_ID_COMMAND_SET_4 = 120, + ATA_ID_LAST_LUN = 126, + ATA_ID_DLF = 128, + ATA_ID_CSFO = 129, + ATA_ID_CFA_POWER = 160, + ATA_ID_CFA_KEY_MGMT = 162, + ATA_ID_CFA_MODES = 163, + ATA_ID_DATA_SET_MGMT = 169, + ATA_ID_SCT_CMD_XPORT = 206, + ATA_ID_ROT_SPEED = 217, + ATA_ID_PIO4 = 2, + ATA_ID_SERNO_LEN = 20, + ATA_ID_FW_REV_LEN = 8, + ATA_ID_PROD_LEN = 40, + ATA_ID_WWN_LEN = 8, + ATA_PCI_CTL_OFS = 2, + ATA_PIO0 = 1, + ATA_PIO1 = 3, + ATA_PIO2 = 7, + ATA_PIO3 = 15, + ATA_PIO4 = 31, + ATA_PIO5 = 63, + ATA_PIO6 = 127, + ATA_PIO4_ONLY = 16, + ATA_SWDMA0 = 1, + ATA_SWDMA1 = 3, + ATA_SWDMA2 = 7, + ATA_SWDMA2_ONLY = 4, + ATA_MWDMA0 = 1, + ATA_MWDMA1 = 3, + ATA_MWDMA2 = 7, + ATA_MWDMA3 = 15, + ATA_MWDMA4 = 31, + ATA_MWDMA12_ONLY = 6, + ATA_MWDMA2_ONLY = 4, + ATA_UDMA0 = 1, + ATA_UDMA1 = 3, + ATA_UDMA2 = 7, + ATA_UDMA3 = 15, + ATA_UDMA4 = 31, + ATA_UDMA5 = 63, + ATA_UDMA6 = 127, + ATA_UDMA7 = 255, + ATA_UDMA24_ONLY = 20, + ATA_UDMA_MASK_40C = 7, + ATA_PRD_SZ = 8, + ATA_PRD_TBL_SZ = 2048, + ATA_PRD_EOT = -2147483648, + ATA_DMA_TABLE_OFS = 4, + ATA_DMA_STATUS = 2, + ATA_DMA_CMD = 0, + ATA_DMA_WR = 8, + ATA_DMA_START = 1, + ATA_DMA_INTR = 4, + ATA_DMA_ERR = 2, + ATA_DMA_ACTIVE = 1, + ATA_HOB = 128, + ATA_NIEN = 2, + ATA_LBA = 64, + ATA_DEV1 = 16, + ATA_DEVICE_OBS = 160, + ATA_DEVCTL_OBS = 8, + ATA_BUSY = 128, + ATA_DRDY = 64, + ATA_DF = 32, + ATA_DSC = 16, + ATA_DRQ = 8, + ATA_CORR = 4, + ATA_SENSE = 2, + ATA_ERR = 1, + ATA_SRST = 4, + ATA_ICRC = 128, + ATA_BBK = 128, + ATA_UNC = 64, + ATA_MC = 32, + ATA_IDNF = 16, + ATA_MCR = 8, + ATA_ABORTED = 4, + ATA_TRK0NF = 2, + ATA_AMNF = 1, + ATAPI_LFS = 240, + ATAPI_EOM = 2, + ATAPI_ILI = 1, + ATAPI_IO = 2, + ATAPI_COD = 1, + ATA_REG_DATA = 0, + ATA_REG_ERR = 1, + ATA_REG_NSECT = 2, + ATA_REG_LBAL = 3, + ATA_REG_LBAM = 4, + ATA_REG_LBAH = 5, + ATA_REG_DEVICE = 6, + ATA_REG_STATUS = 7, + ATA_REG_FEATURE = 1, + ATA_REG_CMD = 7, + ATA_REG_BYTEL = 4, + ATA_REG_BYTEH = 5, + ATA_REG_DEVSEL = 6, + ATA_REG_IRQ = 2, + ATA_CMD_DEV_RESET = 8, + ATA_CMD_CHK_POWER = 229, + ATA_CMD_STANDBY = 226, + ATA_CMD_IDLE = 227, + ATA_CMD_EDD = 144, + ATA_CMD_DOWNLOAD_MICRO = 146, + ATA_CMD_DOWNLOAD_MICRO_DMA = 147, + ATA_CMD_NOP = 0, + ATA_CMD_FLUSH = 231, + ATA_CMD_FLUSH_EXT = 234, + ATA_CMD_ID_ATA = 236, + ATA_CMD_ID_ATAPI = 161, + ATA_CMD_SERVICE = 162, + ATA_CMD_READ = 200, + ATA_CMD_READ_EXT = 37, + ATA_CMD_READ_QUEUED = 38, + ATA_CMD_READ_STREAM_EXT = 43, + ATA_CMD_READ_STREAM_DMA_EXT = 42, + ATA_CMD_WRITE = 202, + ATA_CMD_WRITE_EXT = 53, + ATA_CMD_WRITE_QUEUED = 54, + ATA_CMD_WRITE_STREAM_EXT = 59, + ATA_CMD_WRITE_STREAM_DMA_EXT = 58, + ATA_CMD_WRITE_FUA_EXT = 61, + ATA_CMD_WRITE_QUEUED_FUA_EXT = 62, + ATA_CMD_FPDMA_READ = 96, + ATA_CMD_FPDMA_WRITE = 97, + ATA_CMD_NCQ_NON_DATA = 99, + ATA_CMD_FPDMA_SEND = 100, + ATA_CMD_FPDMA_RECV = 101, + ATA_CMD_PIO_READ = 32, + ATA_CMD_PIO_READ_EXT = 36, + ATA_CMD_PIO_WRITE = 48, + ATA_CMD_PIO_WRITE_EXT = 52, + ATA_CMD_READ_MULTI = 196, + ATA_CMD_READ_MULTI_EXT = 41, + ATA_CMD_WRITE_MULTI = 197, + ATA_CMD_WRITE_MULTI_EXT = 57, + ATA_CMD_WRITE_MULTI_FUA_EXT = 206, + ATA_CMD_SET_FEATURES = 239, + ATA_CMD_SET_MULTI = 198, + ATA_CMD_PACKET = 160, + ATA_CMD_VERIFY = 64, + ATA_CMD_VERIFY_EXT = 66, + ATA_CMD_WRITE_UNCORR_EXT = 69, + ATA_CMD_STANDBYNOW1 = 224, + ATA_CMD_IDLEIMMEDIATE = 225, + ATA_CMD_SLEEP = 230, + ATA_CMD_INIT_DEV_PARAMS = 145, + ATA_CMD_READ_NATIVE_MAX = 248, + ATA_CMD_READ_NATIVE_MAX_EXT = 39, + ATA_CMD_SET_MAX = 249, + ATA_CMD_SET_MAX_EXT = 55, + ATA_CMD_READ_LOG_EXT = 47, + ATA_CMD_WRITE_LOG_EXT = 63, + ATA_CMD_READ_LOG_DMA_EXT = 71, + ATA_CMD_WRITE_LOG_DMA_EXT = 87, + ATA_CMD_TRUSTED_NONDATA = 91, + ATA_CMD_TRUSTED_RCV = 92, + ATA_CMD_TRUSTED_RCV_DMA = 93, + ATA_CMD_TRUSTED_SND = 94, + ATA_CMD_TRUSTED_SND_DMA = 95, + ATA_CMD_PMP_READ = 228, + ATA_CMD_PMP_READ_DMA = 233, + ATA_CMD_PMP_WRITE = 232, + ATA_CMD_PMP_WRITE_DMA = 235, + ATA_CMD_CONF_OVERLAY = 177, + ATA_CMD_SEC_SET_PASS = 241, + ATA_CMD_SEC_UNLOCK = 242, + ATA_CMD_SEC_ERASE_PREP = 243, + ATA_CMD_SEC_ERASE_UNIT = 244, + ATA_CMD_SEC_FREEZE_LOCK = 245, + ATA_CMD_SEC_DISABLE_PASS = 246, + ATA_CMD_CONFIG_STREAM = 81, + ATA_CMD_SMART = 176, + ATA_CMD_MEDIA_LOCK = 222, + ATA_CMD_MEDIA_UNLOCK = 223, + ATA_CMD_DSM = 6, + ATA_CMD_CHK_MED_CRD_TYP = 209, + ATA_CMD_CFA_REQ_EXT_ERR = 3, + ATA_CMD_CFA_WRITE_NE = 56, + ATA_CMD_CFA_TRANS_SECT = 135, + ATA_CMD_CFA_ERASE = 192, + ATA_CMD_CFA_WRITE_MULT_NE = 205, + ATA_CMD_REQ_SENSE_DATA = 11, + ATA_CMD_SANITIZE_DEVICE = 180, + ATA_CMD_ZAC_MGMT_IN = 74, + ATA_CMD_ZAC_MGMT_OUT = 159, + ATA_CMD_RESTORE = 16, + ATA_SUBCMD_FPDMA_RECV_RD_LOG_DMA_EXT = 1, + ATA_SUBCMD_FPDMA_RECV_ZAC_MGMT_IN = 2, + ATA_SUBCMD_FPDMA_SEND_DSM = 0, + ATA_SUBCMD_FPDMA_SEND_WR_LOG_DMA_EXT = 2, + ATA_SUBCMD_NCQ_NON_DATA_ABORT_QUEUE = 0, + ATA_SUBCMD_NCQ_NON_DATA_SET_FEATURES = 5, + ATA_SUBCMD_NCQ_NON_DATA_ZERO_EXT = 6, + ATA_SUBCMD_NCQ_NON_DATA_ZAC_MGMT_OUT = 7, + ATA_SUBCMD_ZAC_MGMT_IN_REPORT_ZONES = 0, + ATA_SUBCMD_ZAC_MGMT_OUT_CLOSE_ZONE = 1, + ATA_SUBCMD_ZAC_MGMT_OUT_FINISH_ZONE = 2, + ATA_SUBCMD_ZAC_MGMT_OUT_OPEN_ZONE = 3, + ATA_SUBCMD_ZAC_MGMT_OUT_RESET_WRITE_POINTER = 4, + ATA_LOG_DIRECTORY = 0, + ATA_LOG_SATA_NCQ = 16, + ATA_LOG_NCQ_NON_DATA = 18, + ATA_LOG_NCQ_SEND_RECV = 19, + ATA_LOG_CDL = 24, + ATA_LOG_CDL_SIZE = 512, + ATA_LOG_IDENTIFY_DEVICE = 48, + ATA_LOG_SENSE_NCQ = 15, + ATA_LOG_SENSE_NCQ_SIZE = 1024, + ATA_LOG_CONCURRENT_POSITIONING_RANGES = 71, + ATA_LOG_SUPPORTED_CAPABILITIES = 3, + ATA_LOG_CURRENT_SETTINGS = 4, + ATA_LOG_SECURITY = 6, + ATA_LOG_SATA_SETTINGS = 8, + ATA_LOG_ZONED_INFORMATION = 9, + ATA_LOG_DEVSLP_OFFSET = 48, + ATA_LOG_DEVSLP_SIZE = 8, + ATA_LOG_DEVSLP_MDAT = 0, + ATA_LOG_DEVSLP_MDAT_MASK = 31, + ATA_LOG_DEVSLP_DETO = 1, + ATA_LOG_DEVSLP_VALID = 7, + ATA_LOG_DEVSLP_VALID_MASK = 128, + ATA_LOG_NCQ_PRIO_OFFSET = 9, + ATA_LOG_NCQ_SEND_RECV_SUBCMDS_OFFSET = 0, + ATA_LOG_NCQ_SEND_RECV_SUBCMDS_DSM = 1, + ATA_LOG_NCQ_SEND_RECV_DSM_OFFSET = 4, + ATA_LOG_NCQ_SEND_RECV_DSM_TRIM = 1, + ATA_LOG_NCQ_SEND_RECV_RD_LOG_OFFSET = 8, + ATA_LOG_NCQ_SEND_RECV_RD_LOG_SUPPORTED = 1, + ATA_LOG_NCQ_SEND_RECV_WR_LOG_OFFSET = 12, + ATA_LOG_NCQ_SEND_RECV_WR_LOG_SUPPORTED = 1, + ATA_LOG_NCQ_SEND_RECV_ZAC_MGMT_OFFSET = 16, + ATA_LOG_NCQ_SEND_RECV_ZAC_MGMT_OUT_SUPPORTED = 1, + ATA_LOG_NCQ_SEND_RECV_ZAC_MGMT_IN_SUPPORTED = 2, + ATA_LOG_NCQ_SEND_RECV_SIZE = 20, + ATA_LOG_NCQ_NON_DATA_SUBCMDS_OFFSET = 0, + ATA_LOG_NCQ_NON_DATA_ABORT_OFFSET = 0, + ATA_LOG_NCQ_NON_DATA_ABORT_NCQ = 1, + ATA_LOG_NCQ_NON_DATA_ABORT_ALL = 2, + ATA_LOG_NCQ_NON_DATA_ABORT_STREAMING = 4, + ATA_LOG_NCQ_NON_DATA_ABORT_NON_STREAMING = 8, + ATA_LOG_NCQ_NON_DATA_ABORT_SELECTED = 16, + ATA_LOG_NCQ_NON_DATA_ZAC_MGMT_OFFSET = 28, + ATA_LOG_NCQ_NON_DATA_ZAC_MGMT_OUT = 1, + ATA_LOG_NCQ_NON_DATA_SIZE = 64, + ATA_CMD_READ_LONG = 34, + ATA_CMD_READ_LONG_ONCE = 35, + ATA_CMD_WRITE_LONG = 50, + ATA_CMD_WRITE_LONG_ONCE = 51, + SETFEATURES_XFER = 3, + XFER_UDMA_7 = 71, + XFER_UDMA_6 = 70, + XFER_UDMA_5 = 69, + XFER_UDMA_4 = 68, + XFER_UDMA_3 = 67, + XFER_UDMA_2 = 66, + XFER_UDMA_1 = 65, + XFER_UDMA_0 = 64, + XFER_MW_DMA_4 = 36, + XFER_MW_DMA_3 = 35, + XFER_MW_DMA_2 = 34, + XFER_MW_DMA_1 = 33, + XFER_MW_DMA_0 = 32, + XFER_SW_DMA_2 = 18, + XFER_SW_DMA_1 = 17, + XFER_SW_DMA_0 = 16, + XFER_PIO_6 = 14, + XFER_PIO_5 = 13, + XFER_PIO_4 = 12, + XFER_PIO_3 = 11, + XFER_PIO_2 = 10, + XFER_PIO_1 = 9, + XFER_PIO_0 = 8, + XFER_PIO_SLOW = 0, + SETFEATURES_WC_ON = 2, + SETFEATURES_WC_OFF = 130, + SETFEATURES_RA_ON = 170, + SETFEATURES_RA_OFF = 85, + SETFEATURES_AAM_ON = 66, + SETFEATURES_AAM_OFF = 194, + SETFEATURES_SPINUP = 7, + SETFEATURES_SPINUP_TIMEOUT = 30000, + SETFEATURES_SATA_ENABLE = 16, + SETFEATURES_SATA_DISABLE = 144, + SETFEATURES_CDL = 13, + SATA_FPDMA_OFFSET = 1, + SATA_FPDMA_AA = 2, + SATA_DIPM = 3, + SATA_FPDMA_IN_ORDER = 4, + SATA_AN = 5, + SATA_SSP = 6, + SATA_DEVSLP = 9, + SETFEATURE_SENSE_DATA = 195, + SETFEATURE_SENSE_DATA_SUCC_NCQ = 196, + ATA_SET_MAX_ADDR = 0, + ATA_SET_MAX_PASSWD = 1, + ATA_SET_MAX_LOCK = 2, + ATA_SET_MAX_UNLOCK = 3, + ATA_SET_MAX_FREEZE_LOCK = 4, + ATA_SET_MAX_PASSWD_DMA = 5, + ATA_SET_MAX_UNLOCK_DMA = 6, + ATA_DCO_RESTORE = 192, + ATA_DCO_FREEZE_LOCK = 193, + ATA_DCO_IDENTIFY = 194, + ATA_DCO_SET = 195, + ATA_SMART_ENABLE = 216, + ATA_SMART_READ_VALUES = 208, + ATA_SMART_READ_THRESHOLDS = 209, + ATA_DSM_TRIM = 1, + ATA_SMART_LBAM_PASS = 79, + ATA_SMART_LBAH_PASS = 194, + ATAPI_PKT_DMA = 1, + ATAPI_DMADIR = 4, + ATAPI_CDB_LEN = 16, + SATA_PMP_MAX_PORTS = 15, + SATA_PMP_CTRL_PORT = 15, + SATA_PMP_GSCR_DWORDS = 128, + SATA_PMP_GSCR_PROD_ID = 0, + SATA_PMP_GSCR_REV = 1, + SATA_PMP_GSCR_PORT_INFO = 2, + SATA_PMP_GSCR_ERROR = 32, + SATA_PMP_GSCR_ERROR_EN = 33, + SATA_PMP_GSCR_FEAT = 64, + SATA_PMP_GSCR_FEAT_EN = 96, + SATA_PMP_PSCR_STATUS = 0, + SATA_PMP_PSCR_ERROR = 1, + SATA_PMP_PSCR_CONTROL = 2, + SATA_PMP_FEAT_BIST = 1, + SATA_PMP_FEAT_PMREQ = 2, + SATA_PMP_FEAT_DYNSSC = 4, + SATA_PMP_FEAT_NOTIFY = 8, + ATA_CBL_NONE = 0, + ATA_CBL_PATA40 = 1, + ATA_CBL_PATA80 = 2, + ATA_CBL_PATA40_SHORT = 3, + ATA_CBL_PATA_UNK = 4, + ATA_CBL_PATA_IGN = 5, + ATA_CBL_SATA = 6, + SCR_STATUS = 0, + SCR_ERROR = 1, + SCR_CONTROL = 2, + SCR_ACTIVE = 3, + SCR_NOTIFICATION = 4, + SERR_DATA_RECOVERED = 1, + SERR_COMM_RECOVERED = 2, + SERR_DATA = 256, + SERR_PERSISTENT = 512, + SERR_PROTOCOL = 1024, + SERR_INTERNAL = 2048, + SERR_PHYRDY_CHG = 65536, + SERR_PHY_INT_ERR = 131072, + SERR_COMM_WAKE = 262144, + SERR_10B_8B_ERR = 524288, + SERR_DISPARITY = 1048576, + SERR_CRC = 2097152, + SERR_HANDSHAKE = 4194304, + SERR_LINK_SEQ_ERR = 8388608, + SERR_TRANS_ST_ERROR = 16777216, + SERR_UNRECOG_FIS = 33554432, + SERR_DEV_XCHG = 67108864, +}; + +struct f81232_private { + struct mutex lock; + u8 modem_control; + u8 modem_status; + u8 shadow_lcr; + speed_t baud_base; + struct work_struct lsr_work; + struct work_struct interrupt_work; + struct usb_serial_port *port; +}; + +struct keyspan_pda_private { + int tx_room; + struct work_struct unthrottle_work; + struct usb_serial *serial; + struct usb_serial_port *port; +}; + +struct sierra_iface_list { + const u8 *nums; + size_t count; +}; + +struct sierra_intf_private { + spinlock_t susp_lock; + unsigned int suspended: 1; + int in_flight; + unsigned int open_ports; +}; + +struct sierra_port_private { + spinlock_t lock; + int outstanding_urbs; + struct usb_anchor active; + struct usb_anchor delayed; + int num_out_urbs; + int num_in_urbs; + struct urb *in_urbs[8]; + int rts_state; + int dtr_state; + int cts_state; + int dsr_state; + int dcd_state; + int ri_state; +}; + +enum typec_port_type { + TYPEC_PORT_SRC = 0, + TYPEC_PORT_SNK = 1, + TYPEC_PORT_DRP = 2, +}; + +enum typec_plug_type { + USB_PLUG_NONE = 0, + USB_PLUG_TYPE_A = 1, + USB_PLUG_TYPE_B = 2, + USB_PLUG_TYPE_C = 3, + USB_PLUG_CAPTIVE = 4, +}; + +enum typec_data_role { + TYPEC_DEVICE = 0, + TYPEC_HOST = 1, +}; + +enum typec_role { + TYPEC_SINK = 0, + TYPEC_SOURCE = 1, +}; + +enum typec_pwr_opmode { + TYPEC_PWR_MODE_USB = 0, + TYPEC_PWR_MODE_1_5A = 1, + TYPEC_PWR_MODE_3_0A = 2, + TYPEC_PWR_MODE_PD = 3, +}; + +enum typec_accessory { + TYPEC_ACCESSORY_NONE = 0, + TYPEC_ACCESSORY_AUDIO = 1, + TYPEC_ACCESSORY_DEBUG = 2, +}; + +struct usb_pd_identity { + u32 id_header; + u32 cert_stat; + u32 product; + u32 vdo[3]; +}; + +struct typec_altmode_desc { + u16 svid; + u8 mode; + u32 vdo; + enum typec_port_data roles; +}; + +struct typec_plug_desc { + enum typec_plug_index index; +}; + +struct typec_cable_desc { + enum typec_plug_type type; + unsigned int active: 1; + struct usb_pd_identity *identity; + u16 pd_revision; +}; + +struct typec_partner; + +struct typec_partner_desc { + unsigned int usb_pd: 1; + enum typec_accessory accessory; + struct usb_pd_identity *identity; + u16 pd_revision; + void (*attach)(struct typec_partner *, struct device *); + void (*deattach)(struct typec_partner *, struct device *); +}; + +enum usb_pd_svdm_ver { + SVDM_VER_1_0 = 0, + SVDM_VER_2_0 = 1, + SVDM_VER_MAX = 1, +}; + +struct usb_power_delivery; + +struct typec_partner { + struct device dev; + unsigned int usb_pd: 1; + struct usb_pd_identity *identity; + enum typec_accessory accessory; + struct ida mode_ids; + int num_altmodes; + u16 pd_revision; + enum usb_pd_svdm_ver svdm_version; + struct usb_power_delivery *pd; + void (*attach)(struct typec_partner *, struct device *); + void (*deattach)(struct typec_partner *, struct device *); +}; + +struct typec_port; + +struct typec_operations { + int (*try_role)(struct typec_port *, int); + int (*dr_set)(struct typec_port *, enum typec_data_role); + int (*pr_set)(struct typec_port *, enum typec_role); + int (*vconn_set)(struct typec_port *, enum typec_role); + int (*port_type_set)(struct typec_port *, enum typec_port_type); + struct usb_power_delivery ** (*pd_get)(struct typec_port *); + int (*pd_set)(struct typec_port *, struct usb_power_delivery *); +}; + +struct typec_capability; + +struct typec_port { + unsigned int id; + struct device dev; + struct ida mode_ids; + struct usb_power_delivery *pd; + int prefer_role; + enum typec_data_role data_role; + enum typec_role pwr_role; + enum typec_role vconn_role; + enum typec_pwr_opmode pwr_opmode; + enum typec_port_type port_type; + struct mutex port_type_lock; + struct mutex partner_link_lock; + enum typec_orientation orientation; + struct typec_switch *sw; + struct typec_mux *mux; + struct typec_retimer *retimer; + const struct typec_capability *cap; + const struct typec_operations *ops; + struct typec_connector con; + struct device *usb2_dev; + struct device *usb3_dev; +}; + +struct usb_power_delivery { + struct device dev; + int id; + u16 revision; + u16 version; +}; + +struct typec_capability { + enum typec_port_type type; + enum typec_port_data data; + u16 revision; + u16 pd_revision; + enum usb_pd_svdm_ver svdm_version; + int prefer_role; + enum typec_accessory accessory[3]; + unsigned int orientation_aware: 1; + struct fwnode_handle *fwnode; + void *driver_data; + struct usb_power_delivery *pd; + const struct typec_operations *ops; +}; + +struct usb_power_delivery_desc { + u16 revision; + u16 version; +}; + +struct typec_plug { + struct device dev; + enum typec_plug_index index; + struct ida mode_ids; + int num_altmodes; +}; + +struct typec_cable { + struct device dev; + enum typec_plug_type type; + struct usb_pd_identity *identity; + unsigned int active: 1; + u16 pd_revision; + enum usb_pd_svdm_ver svdm_version; +}; + +enum pd_pdo_type { + PDO_TYPE_FIXED = 0, + PDO_TYPE_BATT = 1, + PDO_TYPE_VAR = 2, + PDO_TYPE_APDO = 3, +}; + +enum pd_apdo_type { + APDO_TYPE_PPS = 0, +}; + +struct usb_power_delivery_capabilities_desc { + u32 pdo[7]; + enum typec_role role; +}; + +struct usb_power_delivery_capabilities { + struct device dev; + struct usb_power_delivery *pd; + enum typec_role role; +}; + +struct pdo { + struct device dev; + int object_position; + u32 pdo; +}; + +enum usb_role { + USB_ROLE_NONE = 0, + USB_ROLE_HOST = 1, + USB_ROLE_DEVICE = 2, +}; + +struct usb_role_switch; + +typedef int (*usb_role_switch_set_t)(struct usb_role_switch *, enum usb_role); + +typedef enum usb_role (*usb_role_switch_get_t)(struct usb_role_switch *); + +struct usb_role_switch { + struct device dev; + struct lock_class_key key; + struct mutex lock; + struct module *module; + enum usb_role role; + bool registered; + struct device *usb2_port; + struct device *usb3_port; + struct device *udc; + usb_role_switch_set_t set; + usb_role_switch_get_t get; + bool allow_userspace_control; +}; + +struct usb_role_switch_desc { + struct fwnode_handle *fwnode; + struct device *usb2_port; + struct device *usb3_port; + struct device *udc; + usb_role_switch_set_t set; + usb_role_switch_get_t get; + bool allow_userspace_control; + void *driver_data; + const char *name; +}; + +typedef int (*nvmem_reg_read_t)(void *, unsigned int, void *, size_t); + +typedef int (*nvmem_reg_write_t)(void *, unsigned int, void *, size_t); + +typedef int (*nvmem_cell_post_process_t)(void *, const char *, int, unsigned int, void *, size_t); + +enum nvmem_type { + NVMEM_TYPE_UNKNOWN = 0, + NVMEM_TYPE_EEPROM = 1, + NVMEM_TYPE_OTP = 2, + NVMEM_TYPE_BATTERY_BACKED = 3, + NVMEM_TYPE_FRAM = 4, +}; + +struct nvmem_keepout { + unsigned int start; + unsigned int end; + unsigned char value; +}; + +struct nvmem_cell_info { + const char *name; + unsigned int offset; + size_t raw_len; + unsigned int bytes; + unsigned int bit_offset; + unsigned int nbits; + struct device_node *np; + nvmem_cell_post_process_t read_post_process; + void *priv; +}; + +struct nvmem_device; + +struct nvmem_layout; + +struct nvmem_config { + struct device *dev; + const char *name; + int id; + struct module *owner; + const struct nvmem_cell_info *cells; + int ncells; + bool add_legacy_fixed_of_cells; + void (*fixup_dt_cell_info)(struct nvmem_device *, struct nvmem_cell_info *); + const struct nvmem_keepout *keepout; + unsigned int nkeepout; + enum nvmem_type type; + bool read_only; + bool root_only; + bool ignore_wp; + struct nvmem_layout *layout; + struct device_node *of_node; + nvmem_reg_read_t reg_read; + nvmem_reg_write_t reg_write; + int size; + int word_size; + int stride; + void *priv; + bool compat; + struct device *base_dev; +}; + +struct nvmem_layout { + struct device dev; + struct nvmem_device *nvmem; + int (*add_cells)(struct nvmem_layout *); +}; + +enum hwmon_sensor_types { + hwmon_chip = 0, + hwmon_temp = 1, + hwmon_in = 2, + hwmon_curr = 3, + hwmon_power = 4, + hwmon_energy = 5, + hwmon_humidity = 6, + hwmon_fan = 7, + hwmon_pwm = 8, + hwmon_intrusion = 9, + hwmon_max = 10, +}; + +struct hwmon_ops { + umode_t (*is_visible)(const void *, enum hwmon_sensor_types, u32, int); + int (*read)(struct device *, enum hwmon_sensor_types, u32, int, long int *); + int (*read_string)(struct device *, enum hwmon_sensor_types, u32, int, const char **); + int (*write)(struct device *, enum hwmon_sensor_types, u32, int, long int); +}; + +struct hwmon_channel_info { + enum hwmon_sensor_types type; + const u32 *config; +}; + +struct hwmon_chip_info { + const struct hwmon_ops *ops; + const struct hwmon_channel_info * const *info; +}; + +struct ds3232 { + struct device *dev; + struct regmap *regmap; + int irq; + struct rtc_device *rtc; + bool suspended; +}; + +struct linear_c { + struct dm_dev *dev; + sector_t start; +}; + +struct des_ctx { + u32 expkey[32]; +}; + +struct sec_bd_info { + u32 w0; + u32 w1; + u32 w2; + u32 w3; + union { + u32 authkey_addr_lo; + u32 authiv_addr_lo; + }; + union { + u32 authkey_addr_hi; + u32 authiv_addr_hi; + }; + u32 cipher_key_addr_lo; + u32 cipher_key_addr_hi; + u32 cipher_iv_addr_lo; + u32 cipher_iv_addr_hi; + u32 data_addr_lo; + u32 data_addr_hi; + u32 mac_addr_lo; + u32 mac_addr_hi; + u32 cipher_destin_addr_lo; + u32 cipher_destin_addr_hi; +}; + +enum sec_mem_region { + SEC_COMMON = 0, + SEC_SAA = 1, + SEC_NUM_ADDR_REGIONS = 2, +}; + +struct sec_queue_ring_cmd { + atomic_t used; + struct mutex lock; + struct sec_bd_info *vaddr; + dma_addr_t paddr; + void (*callback)(struct sec_bd_info *, void *); +}; + +struct sec_debug_bd_info; + +struct sec_queue_ring_db { + struct sec_debug_bd_info *vaddr; + dma_addr_t paddr; +}; + +struct sec_out_bd_info; + +struct sec_queue_ring_cq { + struct sec_out_bd_info *vaddr; + dma_addr_t paddr; +}; + +enum sec_cipher_alg { + SEC_C_DES_ECB_64 = 0, + SEC_C_DES_CBC_64 = 1, + SEC_C_3DES_ECB_192_3KEY = 2, + SEC_C_3DES_ECB_192_2KEY = 3, + SEC_C_3DES_CBC_192_3KEY = 4, + SEC_C_3DES_CBC_192_2KEY = 5, + SEC_C_AES_ECB_128 = 6, + SEC_C_AES_ECB_192 = 7, + SEC_C_AES_ECB_256 = 8, + SEC_C_AES_CBC_128 = 9, + SEC_C_AES_CBC_192 = 10, + SEC_C_AES_CBC_256 = 11, + SEC_C_AES_CTR_128 = 12, + SEC_C_AES_CTR_192 = 13, + SEC_C_AES_CTR_256 = 14, + SEC_C_AES_XTS_128 = 15, + SEC_C_AES_XTS_256 = 16, + SEC_C_NULL = 17, +}; + +struct sec_queue; + +struct sec_alg_tfm_ctx { + enum sec_cipher_alg cipher_alg; + u8 *key; + dma_addr_t pkey; + struct sec_bd_info req_template; + struct sec_queue *queue; + struct mutex lock; + u8 *auth_buf; + struct list_head backlog; +}; + +struct sec_dev_info; + +struct sec_request_el; + +struct sec_queue { + struct sec_dev_info *dev_info; + int task_irq; + char name[64]; + struct sec_queue_ring_cmd ring_cmd; + struct sec_queue_ring_cq ring_cq; + struct sec_queue_ring_db ring_db; + void *regs; + u32 queue_id; + bool in_use; + int expected; + long unsigned int unprocessed[8]; + struct { + union { + struct __kfifo kfifo; + struct sec_request_el **type; + struct sec_request_el * const *const_type; + char (*rectype)[0]; + struct sec_request_el **ptr; + struct sec_request_el * const *ptr_const; + }; + struct sec_request_el *buf[0]; + } softqueue; + bool havesoftqueue; + spinlock_t queuelock; + void *shadow[512]; +}; + +struct sec_request { + struct list_head elements; + int num_elements; + struct mutex lock; + struct sec_alg_tfm_ctx *tfm_ctx; + int len_in; + int len_out; + dma_addr_t dma_iv; + int err; + struct crypto_async_request *req_base; + void (*cb)(struct sec_bd_info *, struct crypto_async_request *); + struct list_head backlog_head; +}; + +struct sec_hw_sgl; + +struct sec_request_el { + struct list_head head; + struct sec_bd_info req; + struct sec_hw_sgl *in; + dma_addr_t dma_in; + struct scatterlist *sgl_in; + struct sec_hw_sgl *out; + dma_addr_t dma_out; + struct scatterlist *sgl_out; + struct sec_request *sec_req; + size_t el_length; +}; + +struct sec_hw_sge { + dma_addr_t buf; + unsigned int len; + unsigned int pad; +}; + +struct sec_hw_sgl { + dma_addr_t next_sgl; + u16 entry_sum_in_chain; + u16 entry_sum_in_sgl; + u32 flag; + u64 serial_num; + u32 cpuid; + u32 data_bytes_in_sgl; + struct sec_hw_sgl *next; + u64 reserved; + struct sec_hw_sge sge_entries[64]; + u8 node[16]; +}; + +struct sec_dev_info { + int sec_id; + int num_saas; + void *regs[2]; + struct mutex dev_lock; + int queues_in_use; + struct sec_queue queues[16]; + struct device *dev; + struct dma_pool *hw_sgl_pool; +}; + +struct sec_c_alg_cfg { + unsigned int c_alg: 3; + unsigned int c_mode: 3; + unsigned int key_len: 2; + unsigned int c_width: 2; +}; + +struct vhost_vring_file { + unsigned int index; + int fd; +}; + +enum { + VHOST_NET_FEATURES = 1113419972608ULL, +}; + +enum { + VHOST_NET_BACKEND_FEATURES = 2, +}; + +enum { + VHOST_NET_VQ_RX = 0, + VHOST_NET_VQ_TX = 1, + VHOST_NET_VQ_MAX = 2, +}; + +struct vhost_net_ubuf_ref { + atomic_t refcount; + wait_queue_head_t wait; + struct vhost_virtqueue *vq; + struct callback_head rcu; +}; + +struct vhost_net_buf { + void **queue; + int tail; + int head; +}; + +struct vhost_net_virtqueue { + struct vhost_virtqueue vq; + size_t vhost_hlen; + size_t sock_hlen; + int upend_idx; + int done_idx; + int batched_xdp; + struct ubuf_info_msgzc *ubuf_info; + struct vhost_net_ubuf_ref *ubufs; + struct ptr_ring *rx_ring; + struct vhost_net_buf rxq; + struct xdp_buff *xdp; +}; + +struct vhost_net { + struct vhost_dev dev; + struct vhost_net_virtqueue vqs[2]; + struct vhost_poll poll[2]; + unsigned int tx_packets; + unsigned int tx_zcopy_err; + bool tx_flush; + struct page_frag_cache pf_cache; +}; + +enum netdev_xdp_rx_metadata { + NETDEV_XDP_RX_METADATA_TIMESTAMP = 1, + NETDEV_XDP_RX_METADATA_HASH = 2, + NETDEV_XDP_RX_METADATA_VLAN_TAG = 4, +}; + +enum netdev_xsk_flags { + NETDEV_XSK_FLAGS_TX_TIMESTAMP = 1, + NETDEV_XSK_FLAGS_TX_CHECKSUM = 2, +}; + +enum netdev_qstats_scope { + NETDEV_QSTATS_SCOPE_QUEUE = 1, +}; + +enum { + NETDEV_A_DEV_IFINDEX = 1, + NETDEV_A_DEV_PAD = 2, + NETDEV_A_DEV_XDP_FEATURES = 3, + NETDEV_A_DEV_XDP_ZC_MAX_SEGS = 4, + NETDEV_A_DEV_XDP_RX_METADATA_FEATURES = 5, + NETDEV_A_DEV_XSK_FEATURES = 6, + __NETDEV_A_DEV_MAX = 7, + NETDEV_A_DEV_MAX = 6, +}; + +enum { + NETDEV_A_PAGE_POOL_ID = 1, + NETDEV_A_PAGE_POOL_IFINDEX = 2, + NETDEV_A_PAGE_POOL_NAPI_ID = 3, + NETDEV_A_PAGE_POOL_INFLIGHT = 4, + NETDEV_A_PAGE_POOL_INFLIGHT_MEM = 5, + NETDEV_A_PAGE_POOL_DETACH_TIME = 6, + NETDEV_A_PAGE_POOL_DMABUF = 7, + __NETDEV_A_PAGE_POOL_MAX = 8, + NETDEV_A_PAGE_POOL_MAX = 7, +}; + +enum { + NETDEV_A_NAPI_IFINDEX = 1, + NETDEV_A_NAPI_ID = 2, + NETDEV_A_NAPI_IRQ = 3, + NETDEV_A_NAPI_PID = 4, + __NETDEV_A_NAPI_MAX = 5, + NETDEV_A_NAPI_MAX = 4, +}; + +enum { + NETDEV_A_QUEUE_ID = 1, + NETDEV_A_QUEUE_IFINDEX = 2, + NETDEV_A_QUEUE_TYPE = 3, + NETDEV_A_QUEUE_NAPI_ID = 4, + NETDEV_A_QUEUE_DMABUF = 5, + __NETDEV_A_QUEUE_MAX = 6, + NETDEV_A_QUEUE_MAX = 5, +}; + +enum { + NETDEV_A_QSTATS_IFINDEX = 1, + NETDEV_A_QSTATS_QUEUE_TYPE = 2, + NETDEV_A_QSTATS_QUEUE_ID = 3, + NETDEV_A_QSTATS_SCOPE = 4, + NETDEV_A_QSTATS_RX_PACKETS = 8, + NETDEV_A_QSTATS_RX_BYTES = 9, + NETDEV_A_QSTATS_TX_PACKETS = 10, + NETDEV_A_QSTATS_TX_BYTES = 11, + NETDEV_A_QSTATS_RX_ALLOC_FAIL = 12, + NETDEV_A_QSTATS_RX_HW_DROPS = 13, + NETDEV_A_QSTATS_RX_HW_DROP_OVERRUNS = 14, + NETDEV_A_QSTATS_RX_CSUM_COMPLETE = 15, + NETDEV_A_QSTATS_RX_CSUM_UNNECESSARY = 16, + NETDEV_A_QSTATS_RX_CSUM_NONE = 17, + NETDEV_A_QSTATS_RX_CSUM_BAD = 18, + NETDEV_A_QSTATS_RX_HW_GRO_PACKETS = 19, + NETDEV_A_QSTATS_RX_HW_GRO_BYTES = 20, + NETDEV_A_QSTATS_RX_HW_GRO_WIRE_PACKETS = 21, + NETDEV_A_QSTATS_RX_HW_GRO_WIRE_BYTES = 22, + NETDEV_A_QSTATS_RX_HW_DROP_RATELIMITS = 23, + NETDEV_A_QSTATS_TX_HW_DROPS = 24, + NETDEV_A_QSTATS_TX_HW_DROP_ERRORS = 25, + NETDEV_A_QSTATS_TX_CSUM_NONE = 26, + NETDEV_A_QSTATS_TX_NEEDS_CSUM = 27, + NETDEV_A_QSTATS_TX_HW_GSO_PACKETS = 28, + NETDEV_A_QSTATS_TX_HW_GSO_BYTES = 29, + NETDEV_A_QSTATS_TX_HW_GSO_WIRE_PACKETS = 30, + NETDEV_A_QSTATS_TX_HW_GSO_WIRE_BYTES = 31, + NETDEV_A_QSTATS_TX_HW_DROP_RATELIMITS = 32, + NETDEV_A_QSTATS_TX_STOP = 33, + NETDEV_A_QSTATS_TX_WAKE = 34, + __NETDEV_A_QSTATS_MAX = 35, + NETDEV_A_QSTATS_MAX = 34, +}; + +enum { + NETDEV_A_DMABUF_IFINDEX = 1, + NETDEV_A_DMABUF_QUEUES = 2, + NETDEV_A_DMABUF_FD = 3, + NETDEV_A_DMABUF_ID = 4, + __NETDEV_A_DMABUF_MAX = 5, + NETDEV_A_DMABUF_MAX = 4, +}; + +enum { + NETDEV_CMD_DEV_GET = 1, + NETDEV_CMD_DEV_ADD_NTF = 2, + NETDEV_CMD_DEV_DEL_NTF = 3, + NETDEV_CMD_DEV_CHANGE_NTF = 4, + NETDEV_CMD_PAGE_POOL_GET = 5, + NETDEV_CMD_PAGE_POOL_ADD_NTF = 6, + NETDEV_CMD_PAGE_POOL_DEL_NTF = 7, + NETDEV_CMD_PAGE_POOL_CHANGE_NTF = 8, + NETDEV_CMD_PAGE_POOL_STATS_GET = 9, + NETDEV_CMD_QUEUE_GET = 10, + NETDEV_CMD_NAPI_GET = 11, + NETDEV_CMD_QSTATS_GET = 12, + NETDEV_CMD_BIND_RX = 13, + __NETDEV_CMD_MAX = 14, + NETDEV_CMD_MAX = 13, +}; + +enum { + NETDEV_NLGRP_MGMT = 0, + NETDEV_NLGRP_PAGE_POOL = 1, +}; + +struct netdev_nl_dump_ctx { + long unsigned int ifindex; + unsigned int rxq_idx; + unsigned int txq_idx; + unsigned int napi_id; +}; + +struct dst_cache_pcpu { + long unsigned int refresh_ts; + struct dst_entry *dst; + u32 cookie; + union { + struct in_addr in_saddr; + struct in6_addr in6_saddr; + }; +}; + +enum { + TCA_CSUM_UNSPEC = 0, + TCA_CSUM_PARMS = 1, + TCA_CSUM_TM = 2, + TCA_CSUM_PAD = 3, + __TCA_CSUM_MAX = 4, +}; + +enum { + TCA_CSUM_UPDATE_FLAG_IPV4HDR = 1, + TCA_CSUM_UPDATE_FLAG_ICMP = 2, + TCA_CSUM_UPDATE_FLAG_IGMP = 4, + TCA_CSUM_UPDATE_FLAG_TCP = 8, + TCA_CSUM_UPDATE_FLAG_UDP = 16, + TCA_CSUM_UPDATE_FLAG_UDPLITE = 32, + TCA_CSUM_UPDATE_FLAG_SCTP = 64, +}; + +struct tc_csum { + __u32 index; + __u32 capab; + int action; + int refcnt; + int bindcnt; + __u32 update_flags; +}; + +struct tcf_csum_params { + u32 update_flags; + struct callback_head rcu; +}; + +struct tcf_csum { + struct tc_action common; + struct tcf_csum_params *params; + long: 64; +}; + +enum { + TCA_CHOKE_UNSPEC = 0, + TCA_CHOKE_PARMS = 1, + TCA_CHOKE_STAB = 2, + TCA_CHOKE_MAX_P = 3, + __TCA_CHOKE_MAX = 4, +}; + +struct tc_choke_xstats { + __u32 early; + __u32 pdrop; + __u32 other; + __u32 marked; + __u32 matched; +}; + +struct flow_keys_digest { + u8 data[16]; +}; + +struct choke_sched_data { + u32 limit; + unsigned char flags; + struct red_parms parms; + struct red_vars vars; + struct { + u32 prob_drop; + u32 prob_mark; + u32 forced_drop; + u32 forced_mark; + u32 pdrop; + u32 matched; + } stats; + unsigned int head; + unsigned int tail; + unsigned int tab_mask; + struct sk_buff **tab; +}; + +struct choke_skb_cb { + u8 keys_valid; + struct flow_keys_digest keys; +}; + +struct link_mode_info { + int speed; + u8 lanes; + u8 duplex; +}; + +struct linkmodes_reply_data { + struct ethnl_reply_data base; + struct ethtool_link_ksettings ksettings; + struct ethtool_link_settings *lsettings; + bool peer_empty; +}; + +enum { + ETHTOOL_A_TS_STAT_UNSPEC = 0, + ETHTOOL_A_TS_STAT_TX_PKTS = 1, + ETHTOOL_A_TS_STAT_TX_LOST = 2, + ETHTOOL_A_TS_STAT_TX_ERR = 3, + __ETHTOOL_A_TS_STAT_CNT = 4, + ETHTOOL_A_TS_STAT_MAX = 3, +}; + +struct tsinfo_reply_data { + struct ethnl_reply_data base; + struct kernel_ethtool_ts_info ts_info; + struct ethtool_ts_stats stats; +}; + +struct ethtool_cmis_cdb_rpl_hdr { + u8 rpl_len; + u8 rpl_chk_code; +}; + +struct ethtool_cmis_cdb_rpl { + struct ethtool_cmis_cdb_rpl_hdr hdr; + u8 payload[120]; +}; + +struct cmis_rev_rpl { + u8 rev; +}; + +struct cmis_cdb_advert_rpl { + u8 inst_supported; + u8 read_write_len_ext; + u8 resv1; + u8 resv2; +}; + +struct cmis_password_entry_pl { + __be32 password; +}; + +struct cmis_cdb_query_status_pl { + u16 response_delay; +}; + +struct cmis_cdb_query_status_rpl { + u8 length; + u8 status; +}; + +struct cmis_cdb_module_features_rpl { + u8 resv1[34]; + __be16 max_completion_time; +}; + +struct cmis_wait_for_cond_rpl { + u8 state; +}; + +struct ct_expect_iter_state { + struct seq_net_private p; + unsigned int bucket; +}; + +enum ctnl_timeout_msg_types { + IPCTNL_MSG_TIMEOUT_NEW = 0, + IPCTNL_MSG_TIMEOUT_GET = 1, + IPCTNL_MSG_TIMEOUT_DELETE = 2, + IPCTNL_MSG_TIMEOUT_DEFAULT_SET = 3, + IPCTNL_MSG_TIMEOUT_DEFAULT_GET = 4, + IPCTNL_MSG_TIMEOUT_MAX = 5, +}; + +enum ctattr_timeout { + CTA_TIMEOUT_UNSPEC = 0, + CTA_TIMEOUT_NAME = 1, + CTA_TIMEOUT_L3PROTO = 2, + CTA_TIMEOUT_L4PROTO = 3, + CTA_TIMEOUT_DATA = 4, + CTA_TIMEOUT_USE = 5, + __CTA_TIMEOUT_MAX = 6, +}; + +struct ctnl_timeout { + struct list_head head; + struct list_head free_head; + struct callback_head callback_head; + refcount_t refcnt; + char name[32]; + struct nf_ct_timeout timeout; +}; + +struct nfct_timeout_pernet { + struct list_head nfct_timeout_list; + struct list_head nfct_timeout_freelist; +}; + +enum nft_trace_attributes { + NFTA_TRACE_UNSPEC = 0, + NFTA_TRACE_TABLE = 1, + NFTA_TRACE_CHAIN = 2, + NFTA_TRACE_RULE_HANDLE = 3, + NFTA_TRACE_TYPE = 4, + NFTA_TRACE_VERDICT = 5, + NFTA_TRACE_ID = 6, + NFTA_TRACE_LL_HEADER = 7, + NFTA_TRACE_NETWORK_HEADER = 8, + NFTA_TRACE_TRANSPORT_HEADER = 9, + NFTA_TRACE_IIF = 10, + NFTA_TRACE_IIFTYPE = 11, + NFTA_TRACE_OIF = 12, + NFTA_TRACE_OIFTYPE = 13, + NFTA_TRACE_MARK = 14, + NFTA_TRACE_NFPROTO = 15, + NFTA_TRACE_POLICY = 16, + NFTA_TRACE_PAD = 17, + __NFTA_TRACE_MAX = 18, +}; + +enum nft_rt_keys { + NFT_RT_CLASSID = 0, + NFT_RT_NEXTHOP4 = 1, + NFT_RT_NEXTHOP6 = 2, + NFT_RT_TCPMSS = 3, + NFT_RT_XFRM = 4, + __NFT_RT_MAX = 5, +}; + +enum nft_rt_attributes { + NFTA_RT_UNSPEC = 0, + NFTA_RT_DREG = 1, + NFTA_RT_KEY = 2, + __NFTA_RT_MAX = 3, +}; + +struct nft_rt { + enum nft_rt_keys key: 8; + u8 dreg; +}; + +enum nft_ct_keys { + NFT_CT_STATE = 0, + NFT_CT_DIRECTION = 1, + NFT_CT_STATUS = 2, + NFT_CT_MARK = 3, + NFT_CT_SECMARK = 4, + NFT_CT_EXPIRATION = 5, + NFT_CT_HELPER = 6, + NFT_CT_L3PROTOCOL = 7, + NFT_CT_SRC = 8, + NFT_CT_DST = 9, + NFT_CT_PROTOCOL = 10, + NFT_CT_PROTO_SRC = 11, + NFT_CT_PROTO_DST = 12, + NFT_CT_LABELS = 13, + NFT_CT_PKTS = 14, + NFT_CT_BYTES = 15, + NFT_CT_AVGPKT = 16, + NFT_CT_ZONE = 17, + NFT_CT_EVENTMASK = 18, + NFT_CT_SRC_IP = 19, + NFT_CT_DST_IP = 20, + NFT_CT_SRC_IP6 = 21, + NFT_CT_DST_IP6 = 22, + NFT_CT_ID = 23, + __NFT_CT_MAX = 24, +}; + +enum nft_ct_attributes { + NFTA_CT_UNSPEC = 0, + NFTA_CT_DREG = 1, + NFTA_CT_KEY = 2, + NFTA_CT_DIRECTION = 3, + NFTA_CT_SREG = 4, + __NFTA_CT_MAX = 5, +}; + +enum nft_ct_helper_attributes { + NFTA_CT_HELPER_UNSPEC = 0, + NFTA_CT_HELPER_NAME = 1, + NFTA_CT_HELPER_L3PROTO = 2, + NFTA_CT_HELPER_L4PROTO = 3, + __NFTA_CT_HELPER_MAX = 4, +}; + +enum nft_ct_timeout_timeout_attributes { + NFTA_CT_TIMEOUT_UNSPEC = 0, + NFTA_CT_TIMEOUT_L3PROTO = 1, + NFTA_CT_TIMEOUT_L4PROTO = 2, + NFTA_CT_TIMEOUT_DATA = 3, + __NFTA_CT_TIMEOUT_MAX = 4, +}; + +enum nft_ct_expectation_attributes { + NFTA_CT_EXPECT_UNSPEC = 0, + NFTA_CT_EXPECT_L3PROTO = 1, + NFTA_CT_EXPECT_L4PROTO = 2, + NFTA_CT_EXPECT_DPORT = 3, + NFTA_CT_EXPECT_TIMEOUT = 4, + NFTA_CT_EXPECT_SIZE = 5, + __NFTA_CT_EXPECT_MAX = 6, +}; + +struct nft_ct { + enum nft_ct_keys key: 8; + enum ip_conntrack_dir dir: 8; + u8 len; + union { + u8 dreg; + u8 sreg; + }; +}; + +struct nft_ct_helper_obj { + struct nf_conntrack_helper *helper4; + struct nf_conntrack_helper *helper6; + u8 l4proto; +}; + +struct nft_ct_timeout_obj { + struct nf_ct_timeout *timeout; + u8 l4proto; +}; + +struct nft_ct_expect_obj { + u16 l3num; + __be16 dport; + u8 l4proto; + u8 size; + u32 timeout; +}; + +enum { + IPT_TTL_SET = 0, + IPT_TTL_INC = 1, + IPT_TTL_DEC = 2, +}; + +struct ipt_TTL_info { + __u8 mode; + __u8 ttl; +}; + +enum { + IP6T_HL_SET = 0, + IP6T_HL_INC = 1, + IP6T_HL_DEC = 2, +}; + +struct ip6t_HL_info { + __u8 mode; + __u8 hop_limit; +}; + +struct xt_tcp { + __u16 spts[2]; + __u16 dpts[2]; + __u8 option; + __u8 flg_mask; + __u8 flg_cmp; + __u8 invflags; +}; + +struct xt_tcpmss_info { + __u16 mss; +}; + +struct xt_mac_info { + unsigned char srcaddr[6]; + int invert; +}; + +enum { + XT_STRING_FLAG_INVERT = 1, + XT_STRING_FLAG_IGNORECASE = 2, +}; + +struct xt_string_info { + __u16 from_offset; + __u16 to_offset; + char algo[16]; + char pattern[128]; + __u8 patlen; + union { + struct { + __u8 invert; + } v0; + struct { + __u8 flags; + } v1; + } u; + struct ts_config *config; +}; + +enum { + IP_VS_CONN_F_TUNNEL_TYPE_IPIP = 0, + IP_VS_CONN_F_TUNNEL_TYPE_GUE = 1, + IP_VS_CONN_F_TUNNEL_TYPE_GRE = 2, + IP_VS_CONN_F_TUNNEL_TYPE_MAX = 3, +}; + +enum { + IP_VS_RT_MODE_LOCAL = 1, + IP_VS_RT_MODE_NON_LOCAL = 2, + IP_VS_RT_MODE_RDR = 4, + IP_VS_RT_MODE_CONNECT = 8, + IP_VS_RT_MODE_KNOWN_NH = 16, + IP_VS_RT_MODE_TUNNEL = 32, +}; + +typedef struct sock * (*udp_lookup_t)(const struct sk_buff *, __be16, __be16); + +typedef struct sk_buff * (*gro_receive_sk_t)(struct sock *, struct list_head *, struct sk_buff *); + +struct pimreghdr { + __u8 type; + __u8 reserved; + __be16 csum; + __be32 flags; +}; + +typedef short unsigned int vifi_t; + +struct vifctl { + vifi_t vifc_vifi; + unsigned char vifc_flags; + unsigned char vifc_threshold; + unsigned int vifc_rate_limit; + union { + struct in_addr vifc_lcl_addr; + int vifc_lcl_ifindex; + }; + struct in_addr vifc_rmt_addr; +}; + +struct mfcctl { + struct in_addr mfcc_origin; + struct in_addr mfcc_mcastgrp; + vifi_t mfcc_parent; + unsigned char mfcc_ttls[32]; + unsigned int mfcc_pkt_cnt; + unsigned int mfcc_byte_cnt; + unsigned int mfcc_wrong_if; + int mfcc_expire; +}; + +struct sioc_sg_req { + struct in_addr src; + struct in_addr grp; + long unsigned int pktcnt; + long unsigned int bytecnt; + long unsigned int wrong_if; +}; + +struct sioc_vif_req { + vifi_t vifi; + long unsigned int icount; + long unsigned int ocount; + long unsigned int ibytes; + long unsigned int obytes; +}; + +struct igmpmsg { + __u32 unused1; + __u32 unused2; + unsigned char im_msgtype; + unsigned char im_mbz; + unsigned char im_vif; + unsigned char im_vif_hi; + struct in_addr im_src; + struct in_addr im_dst; +}; + +enum { + IPMRA_TABLE_UNSPEC = 0, + IPMRA_TABLE_ID = 1, + IPMRA_TABLE_CACHE_RES_QUEUE_LEN = 2, + IPMRA_TABLE_MROUTE_REG_VIF_NUM = 3, + IPMRA_TABLE_MROUTE_DO_ASSERT = 4, + IPMRA_TABLE_MROUTE_DO_PIM = 5, + IPMRA_TABLE_VIFS = 6, + IPMRA_TABLE_MROUTE_DO_WRVIFWHOLE = 7, + __IPMRA_TABLE_MAX = 8, +}; + +enum { + IPMRA_VIF_UNSPEC = 0, + IPMRA_VIF = 1, + __IPMRA_VIF_MAX = 2, +}; + +enum { + IPMRA_VIFA_UNSPEC = 0, + IPMRA_VIFA_IFINDEX = 1, + IPMRA_VIFA_VIF_ID = 2, + IPMRA_VIFA_FLAGS = 3, + IPMRA_VIFA_BYTES_IN = 4, + IPMRA_VIFA_BYTES_OUT = 5, + IPMRA_VIFA_PACKETS_IN = 6, + IPMRA_VIFA_PACKETS_OUT = 7, + IPMRA_VIFA_LOCAL_ADDR = 8, + IPMRA_VIFA_REMOTE_ADDR = 9, + IPMRA_VIFA_PAD = 10, + __IPMRA_VIFA_MAX = 11, +}; + +enum { + IPMRA_CREPORT_UNSPEC = 0, + IPMRA_CREPORT_MSGTYPE = 1, + IPMRA_CREPORT_VIF_ID = 2, + IPMRA_CREPORT_SRC_ADDR = 3, + IPMRA_CREPORT_DST_ADDR = 4, + IPMRA_CREPORT_PKT = 5, + IPMRA_CREPORT_TABLE = 6, + __IPMRA_CREPORT_MAX = 7, +}; + +struct mfc_cache_cmp_arg { + __be32 mfc_mcastgrp; + __be32 mfc_origin; +}; + +struct mfc_cache { + struct mr_mfc _c; + union { + struct { + __be32 mfc_mcastgrp; + __be32 mfc_origin; + }; + struct mfc_cache_cmp_arg cmparg; + }; +}; + +struct icmp_filter { + __u32 data; +}; + +struct raw_sock { + struct inet_sock inet; + struct icmp_filter filter; + u32 ipmr_table; +}; + +struct ipmr_result { + struct mr_table *mrt; +}; + +struct arpt_mangle { + char src_devaddr[16]; + char tgt_devaddr[16]; + union { + struct in_addr src_ip; + } u_s; + union { + struct in_addr tgt_ip; + } u_t; + __u8 flags; + int target; +}; + +enum fib6_walk_state { + FWS_S = 0, + FWS_L = 1, + FWS_R = 2, + FWS_C = 3, + FWS_U = 4, +}; + +struct fib6_walker { + struct list_head lh; + struct fib6_node *root; + struct fib6_node *node; + struct fib6_info *leaf; + enum fib6_walk_state state; + unsigned int skip; + unsigned int count; + unsigned int skip_in_node; + int (*func)(struct fib6_walker *); + void *args; +}; + +struct fib6_entry_notifier_info { + struct fib_notifier_info info; + struct fib6_info *rt; + unsigned int nsiblings; +}; + +struct ipv6_route_iter { + struct seq_net_private p; + struct fib6_walker w; + loff_t skip; + struct fib6_table *tbl; + int sernum; +}; + +struct bpf_iter__ipv6_route { + union { + struct bpf_iter_meta *meta; + }; + union { + struct fib6_info *rt; + }; +}; + +struct fib6_cleaner { + struct fib6_walker w; + struct net *net; + int (*func)(struct fib6_info *, void *); + int sernum; + void *arg; + bool skip_notify; +}; + +enum { + FIB6_NO_SERNUM_CHANGE = 0, +}; + +struct fib6_dump_arg { + struct net *net; + struct notifier_block *nb; + struct netlink_ext_ack *extack; +}; + +struct fib6_nh_pcpu_arg { + struct fib6_info *from; + const struct fib6_table *table; +}; + +struct lookup_args { + int offset; + const struct in6_addr *addr; +}; + +struct in6_flowlabel_req { + struct in6_addr flr_dst; + __be32 flr_label; + __u8 flr_action; + __u8 flr_share; + __u16 flr_flags; + __u16 flr_expires; + __u16 flr_linger; + __u32 __flr_pad; +}; + +struct ip6fl_iter_state { + struct seq_net_private p; + struct pid_namespace *pid_ns; + int bucket; +}; + +struct ip6t_rt { + __u32 rt_type; + __u32 segsleft[2]; + __u32 hdrlen; + __u8 flags; + __u8 invflags; + struct in6_addr addrs[16]; + __u8 addrnr; +}; + +struct packet_diag_req { + __u8 sdiag_family; + __u8 sdiag_protocol; + __u16 pad; + __u32 pdiag_ino; + __u32 pdiag_show; + __u32 pdiag_cookie[2]; +}; + +struct packet_diag_msg { + __u8 pdiag_family; + __u8 pdiag_type; + __u16 pdiag_num; + __u32 pdiag_ino; + __u32 pdiag_cookie[2]; +}; + +enum { + PACKET_DIAG_INFO = 0, + PACKET_DIAG_MCLIST = 1, + PACKET_DIAG_RX_RING = 2, + PACKET_DIAG_TX_RING = 3, + PACKET_DIAG_FANOUT = 4, + PACKET_DIAG_UID = 5, + PACKET_DIAG_MEMINFO = 6, + PACKET_DIAG_FILTER = 7, + __PACKET_DIAG_MAX = 8, +}; + +struct packet_diag_info { + __u32 pdi_index; + __u32 pdi_version; + __u32 pdi_reserve; + __u32 pdi_copy_thresh; + __u32 pdi_tstamp; + __u32 pdi_flags; +}; + +struct packet_diag_mclist { + __u32 pdmc_index; + __u32 pdmc_count; + __u16 pdmc_type; + __u16 pdmc_alen; + __u8 pdmc_addr[32]; +}; + +struct packet_diag_ring { + __u32 pdr_block_size; + __u32 pdr_block_nr; + __u32 pdr_frame_size; + __u32 pdr_frame_nr; + __u32 pdr_retire_tmo; + __u32 pdr_sizeof_priv; + __u32 pdr_features; +}; + +struct brport_attribute { + struct attribute attr; + ssize_t (*show)(struct net_bridge_port *, char *); + int (*store)(struct net_bridge_port *, long unsigned int); + int (*store_raw)(struct net_bridge_port *, char *); +}; + +struct ebt_replace { + char name[32]; + unsigned int valid_hooks; + unsigned int nentries; + unsigned int entries_size; + struct ebt_entries *hook_entry[6]; + unsigned int num_counters; + struct ebt_counter *counters; + char *entries; +}; + +struct ebt_entry_match { + union { + struct { + char name[31]; + __u8 revision; + }; + struct xt_match *match; + } u; + unsigned int match_size; + long: 0; + unsigned char data[0]; +}; + +struct ebt_entry_watcher { + union { + struct { + char name[31]; + __u8 revision; + }; + struct xt_target *watcher; + } u; + unsigned int watcher_size; + long: 0; + unsigned char data[0]; +}; + +struct ebt_entry_target { + union { + struct { + char name[31]; + __u8 revision; + }; + struct xt_target *target; + } u; + unsigned int target_size; + long: 0; + unsigned char data[0]; +}; + +struct ebt_standard_target { + struct ebt_entry_target target; + int verdict; +}; + +struct ebt_pernet { + struct list_head tables; +}; + +struct ebt_template { + struct list_head list; + char name[32]; + struct module *owner; + int (*table_init)(struct net *); +}; + +struct ebt_cl_stack { + struct ebt_chainstack cs; + int from; + unsigned int hookmask; +}; + +struct ebt_log_info { + __u8 loglevel; + __u8 prefix[30]; + __u32 bitmask; +}; + +struct tcpudphdr { + __be16 src; + __be16 dst; +}; + +struct sctp_reset_streams { + sctp_assoc_t srs_assoc_id; + uint16_t srs_flags; + uint16_t srs_number_streams; + uint16_t srs_stream_list[0]; +}; + +struct sctp_add_streams { + sctp_assoc_t sas_assoc_id; + uint16_t sas_instrms; + uint16_t sas_outstrms; +}; + +enum { + SCTP_STRRESET_NOTHING_TO_DO = 0, + SCTP_STRRESET_PERFORMED = 1, + SCTP_STRRESET_DENIED = 2, + SCTP_STRRESET_ERR_WRONG_SSN = 3, + SCTP_STRRESET_ERR_IN_PROGRESS = 4, + SCTP_STRRESET_ERR_BAD_SEQNO = 5, + SCTP_STRRESET_IN_PROGRESS = 6, +}; + +enum { + dns_key_data = 0, + dns_key_error = 1, +}; + +struct sw_flow_match { + struct sw_flow_key *key; + struct sw_flow_key_range range; + struct sw_flow_mask *mask; +}; + +struct mask_count { + int index; + u64 counter; +}; + +struct secondary_data { + struct task_struct *task; + long int status; +}; + +enum kvm_bus { + KVM_MMIO_BUS = 0, + KVM_PIO_BUS = 1, + KVM_VIRTIO_CCW_NOTIFY_BUS = 2, + KVM_FAST_MMIO_BUS = 3, + KVM_NR_BUSES = 4, +}; + +enum ipi_msg_type { + IPI_RESCHEDULE = 0, + IPI_CALL_FUNC = 1, + IPI_CPU_STOP = 2, + IPI_CPU_STOP_NMI = 3, + IPI_TIMER = 4, + IPI_IRQ_WORK = 5, + NR_IPI = 6, + IPI_CPU_BACKTRACE = 6, + IPI_KGDB_ROUNDUP = 7, + MAX_IPI = 8, +}; + +struct pvclock_vcpu_stolen_time { + __le32 revision; + __le32 attributes; + __le64 stolen_time; + u8 padding[48]; +}; + +struct pv_time_stolen_time_region { + struct pvclock_vcpu_stolen_time *kaddr; +}; + +struct page_change_data { + pgprot_t set_mask; + pgprot_t clear_mask; +}; + +struct sha1_ce_state { + struct sha1_state sst; + u32 finalize; +}; + +struct aesbs_ctx { + u8 rk[1696]; + int rounds; + long: 64; +}; + +struct aesbs_cbc_ctr_ctx { + struct aesbs_ctx key; + u32 enc[60]; +}; + +struct aesbs_xts_ctx { + struct aesbs_ctx key; + u32 twkey[60]; + struct crypto_aes_ctx cts; + long: 64; +}; + +typedef struct { + void *lock; +} class_preempt_t; + +typedef struct { + raw_spinlock_t *lock; +} class_raw_spinlock_irq_t; + +typedef int (*task_call_f)(struct task_struct *, void *); + +struct trace_event_raw_sched_kthread_stop { + struct trace_entry ent; + char comm[16]; + pid_t pid; + char __data[0]; +}; + +struct trace_event_raw_sched_kthread_stop_ret { + struct trace_entry ent; + int ret; + char __data[0]; +}; + +struct trace_event_raw_sched_kthread_work_queue_work { + struct trace_entry ent; + void *work; + void *function; + void *worker; + char __data[0]; +}; + +struct trace_event_raw_sched_kthread_work_execute_start { + struct trace_entry ent; + void *work; + void *function; + char __data[0]; +}; + +struct trace_event_raw_sched_kthread_work_execute_end { + struct trace_entry ent; + void *work; + void *function; + char __data[0]; +}; + +struct trace_event_raw_sched_wakeup_template { + struct trace_entry ent; + char comm[16]; + pid_t pid; + int prio; + int target_cpu; + char __data[0]; +}; + +struct trace_event_raw_sched_switch { + struct trace_entry ent; + char prev_comm[16]; + pid_t prev_pid; + int prev_prio; + long int prev_state; + char next_comm[16]; + pid_t next_pid; + int next_prio; + char __data[0]; +}; + +struct trace_event_raw_sched_migrate_task { + struct trace_entry ent; + char comm[16]; + pid_t pid; + int prio; + int orig_cpu; + int dest_cpu; + char __data[0]; +}; + +struct trace_event_raw_sched_process_template { + struct trace_entry ent; + char comm[16]; + pid_t pid; + int prio; + char __data[0]; +}; + +struct trace_event_raw_sched_process_wait { + struct trace_entry ent; + char comm[16]; + pid_t pid; + int prio; + char __data[0]; +}; + +struct trace_event_raw_sched_process_fork { + struct trace_entry ent; + char parent_comm[16]; + pid_t parent_pid; + char child_comm[16]; + pid_t child_pid; + char __data[0]; +}; + +struct trace_event_raw_sched_process_exec { + struct trace_entry ent; + u32 __data_loc_filename; + pid_t pid; + pid_t old_pid; + char __data[0]; +}; + +struct trace_event_raw_sched_prepare_exec { + struct trace_entry ent; + u32 __data_loc_interp; + u32 __data_loc_filename; + pid_t pid; + u32 __data_loc_comm; + char __data[0]; +}; + +struct trace_event_raw_sched_stat_runtime { + struct trace_entry ent; + char comm[16]; + pid_t pid; + u64 runtime; + char __data[0]; +}; + +struct trace_event_raw_sched_pi_setprio { + struct trace_entry ent; + char comm[16]; + pid_t pid; + int oldprio; + int newprio; + char __data[0]; +}; + +struct trace_event_raw_sched_move_numa { + struct trace_entry ent; + pid_t pid; + pid_t tgid; + pid_t ngid; + int src_cpu; + int src_nid; + int dst_cpu; + int dst_nid; + char __data[0]; +}; + +struct trace_event_raw_sched_numa_pair_template { + struct trace_entry ent; + pid_t src_pid; + pid_t src_tgid; + pid_t src_ngid; + int src_cpu; + int src_nid; + pid_t dst_pid; + pid_t dst_tgid; + pid_t dst_ngid; + int dst_cpu; + int dst_nid; + char __data[0]; +}; + +struct trace_event_raw_sched_wake_idle_without_ipi { + struct trace_entry ent; + int cpu; + char __data[0]; +}; + +struct trace_event_data_offsets_sched_kthread_stop {}; + +struct trace_event_data_offsets_sched_kthread_stop_ret {}; + +struct trace_event_data_offsets_sched_kthread_work_queue_work {}; + +struct trace_event_data_offsets_sched_kthread_work_execute_start {}; + +struct trace_event_data_offsets_sched_kthread_work_execute_end {}; + +struct trace_event_data_offsets_sched_wakeup_template {}; + +struct trace_event_data_offsets_sched_switch {}; + +struct trace_event_data_offsets_sched_migrate_task {}; + +struct trace_event_data_offsets_sched_process_template {}; + +struct trace_event_data_offsets_sched_process_wait {}; + +struct trace_event_data_offsets_sched_process_fork {}; + +struct trace_event_data_offsets_sched_process_exec { + u32 filename; + const void *filename_ptr_; +}; + +struct trace_event_data_offsets_sched_prepare_exec { + u32 interp; + const void *interp_ptr_; + u32 filename; + const void *filename_ptr_; + u32 comm; + const void *comm_ptr_; +}; + +struct trace_event_data_offsets_sched_stat_runtime {}; + +struct trace_event_data_offsets_sched_pi_setprio {}; + +struct trace_event_data_offsets_sched_move_numa {}; + +struct trace_event_data_offsets_sched_numa_pair_template {}; + +struct trace_event_data_offsets_sched_wake_idle_without_ipi {}; + +typedef void (*btf_trace_sched_kthread_stop)(void *, struct task_struct *); + +typedef void (*btf_trace_sched_kthread_stop_ret)(void *, int); + +typedef void (*btf_trace_sched_kthread_work_queue_work)(void *, struct kthread_worker *, struct kthread_work *); + +typedef void (*btf_trace_sched_kthread_work_execute_start)(void *, struct kthread_work *); + +typedef void (*btf_trace_sched_kthread_work_execute_end)(void *, struct kthread_work *, kthread_work_func_t); + +typedef void (*btf_trace_sched_waking)(void *, struct task_struct *); + +typedef void (*btf_trace_sched_wakeup)(void *, struct task_struct *); + +typedef void (*btf_trace_sched_wakeup_new)(void *, struct task_struct *); + +typedef void (*btf_trace_sched_switch)(void *, bool, struct task_struct *, struct task_struct *, unsigned int); + +typedef void (*btf_trace_sched_migrate_task)(void *, struct task_struct *, int); + +typedef void (*btf_trace_sched_process_free)(void *, struct task_struct *); + +typedef void (*btf_trace_sched_process_exit)(void *, struct task_struct *); + +typedef void (*btf_trace_sched_wait_task)(void *, struct task_struct *); + +typedef void (*btf_trace_sched_process_wait)(void *, struct pid *); + +typedef void (*btf_trace_sched_process_fork)(void *, struct task_struct *, struct task_struct *); + +typedef void (*btf_trace_sched_process_exec)(void *, struct task_struct *, pid_t, struct linux_binprm *); + +typedef void (*btf_trace_sched_prepare_exec)(void *, struct task_struct *, struct linux_binprm *); + +typedef void (*btf_trace_sched_stat_runtime)(void *, struct task_struct *, u64); + +typedef void (*btf_trace_sched_pi_setprio)(void *, struct task_struct *, struct task_struct *); + +typedef void (*btf_trace_sched_move_numa)(void *, struct task_struct *, int, int); + +typedef void (*btf_trace_sched_stick_numa)(void *, struct task_struct *, int, struct task_struct *, int); + +typedef void (*btf_trace_sched_swap_numa)(void *, struct task_struct *, int, struct task_struct *, int); + +typedef void (*btf_trace_sched_wake_idle_without_ipi)(void *, int); + +typedef void (*btf_trace_pelt_cfs_tp)(void *, struct cfs_rq *); + +typedef void (*btf_trace_pelt_rt_tp)(void *, struct rq *); + +typedef void (*btf_trace_pelt_dl_tp)(void *, struct rq *); + +typedef void (*btf_trace_pelt_hw_tp)(void *, struct rq *); + +typedef void (*btf_trace_pelt_irq_tp)(void *, struct rq *); + +typedef void (*btf_trace_pelt_se_tp)(void *, struct sched_entity *); + +typedef void (*btf_trace_sched_cpu_capacity_tp)(void *, struct rq *); + +typedef void (*btf_trace_sched_overutilized_tp)(void *, struct root_domain *, bool); + +typedef void (*btf_trace_sched_util_est_cfs_tp)(void *, struct cfs_rq *); + +typedef void (*btf_trace_sched_util_est_se_tp)(void *, struct sched_entity *); + +typedef void (*btf_trace_sched_update_nr_running_tp)(void *, struct rq *, int); + +typedef void (*btf_trace_sched_compute_energy_tp)(void *, struct task_struct *, int, long unsigned int, long unsigned int, long unsigned int); + +struct trace_event_raw_ipi_raise { + struct trace_entry ent; + u32 __data_loc_target_cpus; + const char *reason; + char __data[0]; +}; + +struct trace_event_raw_ipi_send_cpu { + struct trace_entry ent; + unsigned int cpu; + void *callsite; + void *callback; + char __data[0]; +}; + +struct trace_event_raw_ipi_send_cpumask { + struct trace_entry ent; + u32 __data_loc_cpumask; + void *callsite; + void *callback; + char __data[0]; +}; + +struct trace_event_raw_ipi_handler { + struct trace_entry ent; + const char *reason; + char __data[0]; +}; + +struct trace_event_data_offsets_ipi_raise { + u32 target_cpus; + const void *target_cpus_ptr_; +}; + +struct trace_event_data_offsets_ipi_send_cpu {}; + +struct trace_event_data_offsets_ipi_send_cpumask { + u32 cpumask; + const void *cpumask_ptr_; +}; + +struct trace_event_data_offsets_ipi_handler {}; + +typedef void (*btf_trace_ipi_raise)(void *, const struct cpumask *, const char *); + +typedef void (*btf_trace_ipi_send_cpu)(void *, const unsigned int, long unsigned int, void *); + +typedef void (*btf_trace_ipi_send_cpumask)(void *, const struct cpumask *, long unsigned int, void *); + +typedef void (*btf_trace_ipi_entry)(void *, const char *); + +typedef void (*btf_trace_ipi_exit)(void *, const char *); + +struct set_affinity_pending; + +struct migration_arg { + struct task_struct *task; + int dest_cpu; + struct set_affinity_pending *pending; +}; + +struct set_affinity_pending { + refcount_t refs; + unsigned int stop_pending; + struct completion done; + struct cpu_stop_work stop_work; + struct migration_arg arg; +}; + +struct cfs_schedulable_data { + struct task_group *tg; + u64 period; + u64 quota; +}; + +enum { + cpuset = 0, + possible = 1, + fail = 2, +}; + +union cpumask_rcuhead { + cpumask_t cpumask; + struct callback_head rcu; +}; + +struct audit_parent; + +struct audit_watch { + refcount_t count; + dev_t dev; + char *path; + long unsigned int ino; + struct audit_parent *parent; + struct list_head wlist; + struct list_head rules; +}; + +struct audit_parent { + struct list_head watches; + struct fsnotify_mark mark; +}; + +struct bpf_mount_opts { + kuid_t uid; + kgid_t gid; + umode_t mode; + u64 delegate_cmds; + u64 delegate_maps; + u64 delegate_progs; + u64 delegate_attachs; +}; + +enum bpf_lru_list_type { + BPF_LRU_LIST_T_ACTIVE = 0, + BPF_LRU_LIST_T_INACTIVE = 1, + BPF_LRU_LIST_T_FREE = 2, + BPF_LRU_LOCAL_LIST_T_FREE = 3, + BPF_LRU_LOCAL_LIST_T_PENDING = 4, +}; + +struct bpf_queue_stack { + struct bpf_map map; + raw_spinlock_t lock; + u32 head; + u32 tail; + u32 size; + char elements[0]; +}; + +struct bpf_arena { + struct bpf_map map; + u64 user_vm_start; + u64 user_vm_end; + struct vm_struct *kern_vm; + struct maple_tree mt; + struct list_head vma_list; + struct mutex lock; +}; + +struct vma_list { + struct vm_area_struct *vma; + struct list_head head; + refcount_t mmap_count; +}; + +struct bpf_cpumap_val { + __u32 qsize; + union { + int fd; + __u32 id; + } bpf_prog; +}; + +struct xdp_cpumap_stats { + unsigned int redirect; + unsigned int pass; + unsigned int drop; +}; + +struct bpf_cpu_map_entry; + +struct xdp_bulk_queue { + void *q[8]; + struct list_head flush_node; + struct bpf_cpu_map_entry *obj; + unsigned int count; +}; + +struct bpf_cpu_map_entry { + u32 cpu; + int map_id; + struct xdp_bulk_queue *bulkq; + struct ptr_ring *queue; + struct task_struct *kthread; + struct bpf_cpumap_val value; + struct bpf_prog *prog; + struct completion kthread_running; + struct rcu_work free_work; +}; + +struct bpf_cpu_map { + struct bpf_map map; + struct bpf_cpu_map_entry **cpu_map; +}; + +struct swap_slots_cache { + bool lock_initialized; + struct mutex alloc_lock; + swp_entry_t *slots; + int nr; + int cur; + spinlock_t free_lock; + swp_entry_t *slots_ret; + int n_ret; +}; + +enum vmpressure_levels { + VMPRESSURE_LOW = 0, + VMPRESSURE_MEDIUM = 1, + VMPRESSURE_CRITICAL = 2, + VMPRESSURE_NUM_LEVELS = 3, +}; + +enum vmpressure_modes { + VMPRESSURE_NO_PASSTHROUGH = 0, + VMPRESSURE_HIERARCHY = 1, + VMPRESSURE_LOCAL = 2, + VMPRESSURE_NUM_MODES = 3, +}; + +struct vmpressure_event { + struct eventfd_ctx *efd; + enum vmpressure_levels level; + enum vmpressure_modes mode; + struct list_head node; +}; + +struct dentry_stat_t { + long int nr_dentry; + long int nr_unused; + long int age_limit; + long int want_pages; + long int nr_negative; + long int dummy; +}; + +struct external_name { + union { + atomic_t count; + struct callback_head head; + } u; + unsigned char name[0]; +}; + +enum d_walk_ret { + D_WALK_CONTINUE = 0, + D_WALK_QUIT = 1, + D_WALK_NORETRY = 2, + D_WALK_SKIP = 3, +}; + +struct check_mount { + struct vfsmount *mnt; + unsigned int mounted; +}; + +struct select_data { + struct dentry *start; + union { + long int found; + struct dentry *victim; + }; + struct list_head dispose; +}; + +struct proc_fs_opts { + int flag; + const char *str; +}; + +struct fscrypt_key { + __u32 mode; + __u8 raw[64]; + __u32 size; +}; + +struct fscrypt_direct_key { + struct super_block *dk_sb; + struct hlist_node dk_node; + refcount_t dk_refcount; + const struct fscrypt_mode *dk_mode; + struct fscrypt_prepared_key dk_key; + u8 dk_descriptor[8]; + u8 dk_raw[64]; +}; + +struct iomap_folio_state { + spinlock_t state_lock; + unsigned int read_bytes_pending; + atomic_t write_bytes_pending; + long unsigned int state[0]; +}; + +struct iomap_readpage_ctx { + struct folio *cur_folio; + bool cur_folio_in_bio; + struct bio *bio; + struct readahead_control *rac; +}; + +struct fs_disk_quota { + __s8 d_version; + __s8 d_flags; + __u16 d_fieldmask; + __u32 d_id; + __u64 d_blk_hardlimit; + __u64 d_blk_softlimit; + __u64 d_ino_hardlimit; + __u64 d_ino_softlimit; + __u64 d_bcount; + __u64 d_icount; + __s32 d_itimer; + __s32 d_btimer; + __u16 d_iwarns; + __u16 d_bwarns; + __s8 d_itimer_hi; + __s8 d_btimer_hi; + __s8 d_rtbtimer_hi; + __s8 d_padding2; + __u64 d_rtb_hardlimit; + __u64 d_rtb_softlimit; + __u64 d_rtbcount; + __s32 d_rtbtimer; + __u16 d_rtbwarns; + __s16 d_padding3; + char d_padding4[8]; +}; + +struct fs_qfilestat { + __u64 qfs_ino; + __u64 qfs_nblks; + __u32 qfs_nextents; +}; + +typedef struct fs_qfilestat fs_qfilestat_t; + +struct fs_quota_stat { + __s8 qs_version; + __u16 qs_flags; + __s8 qs_pad; + fs_qfilestat_t qs_uquota; + fs_qfilestat_t qs_gquota; + __u32 qs_incoredqs; + __s32 qs_btimelimit; + __s32 qs_itimelimit; + __s32 qs_rtbtimelimit; + __u16 qs_bwarnlimit; + __u16 qs_iwarnlimit; +}; + +struct fs_qfilestatv { + __u64 qfs_ino; + __u64 qfs_nblks; + __u32 qfs_nextents; + __u32 qfs_pad; +}; + +struct fs_quota_statv { + __s8 qs_version; + __u8 qs_pad1; + __u16 qs_flags; + __u32 qs_incoredqs; + struct fs_qfilestatv qs_uquota; + struct fs_qfilestatv qs_gquota; + struct fs_qfilestatv qs_pquota; + __s32 qs_btimelimit; + __s32 qs_itimelimit; + __s32 qs_rtbtimelimit; + __u16 qs_bwarnlimit; + __u16 qs_iwarnlimit; + __u16 qs_rtbwarnlimit; + __u16 qs_pad3; + __u32 qs_pad4; + __u64 qs_pad2[7]; +}; + +struct if_dqblk { + __u64 dqb_bhardlimit; + __u64 dqb_bsoftlimit; + __u64 dqb_curspace; + __u64 dqb_ihardlimit; + __u64 dqb_isoftlimit; + __u64 dqb_curinodes; + __u64 dqb_btime; + __u64 dqb_itime; + __u32 dqb_valid; +}; + +struct if_nextdqblk { + __u64 dqb_bhardlimit; + __u64 dqb_bsoftlimit; + __u64 dqb_curspace; + __u64 dqb_ihardlimit; + __u64 dqb_isoftlimit; + __u64 dqb_curinodes; + __u64 dqb_btime; + __u64 dqb_itime; + __u32 dqb_valid; + __u32 dqb_id; +}; + +struct if_dqinfo { + __u64 dqi_bgrace; + __u64 dqi_igrace; + __u32 dqi_flags; + __u32 dqi_valid; +}; + +typedef u64 compat_u64; + +struct compat_if_dqblk { + compat_u64 dqb_bhardlimit; + compat_u64 dqb_bsoftlimit; + compat_u64 dqb_curspace; + compat_u64 dqb_ihardlimit; + compat_u64 dqb_isoftlimit; + compat_u64 dqb_curinodes; + compat_u64 dqb_btime; + compat_u64 dqb_itime; + compat_uint_t dqb_valid; +}; + +struct fsmap { + __u32 fmr_device; + __u32 fmr_flags; + __u64 fmr_physical; + __u64 fmr_owner; + __u64 fmr_offset; + __u64 fmr_length; + __u64 fmr_reserved[3]; +}; + +struct ext4_fsmap_head { + uint32_t fmh_iflags; + uint32_t fmh_oflags; + unsigned int fmh_count; + unsigned int fmh_entries; + struct ext4_fsmap fmh_keys[2]; +}; + +typedef int (*ext4_fsmap_format_t)(struct ext4_fsmap *, void *); + +struct ext4_getfsmap_info { + struct ext4_fsmap_head *gfi_head; + ext4_fsmap_format_t gfi_formatter; + void *gfi_format_arg; + ext4_fsblk_t gfi_next_fsblk; + u32 gfi_dev; + ext4_group_t gfi_agno; + struct ext4_fsmap gfi_low; + struct ext4_fsmap gfi_high; + struct ext4_fsmap gfi_lastfree; + struct list_head gfi_meta_list; + bool gfi_last; +}; + +struct ext4_getfsmap_dev { + int (*gfd_fn)(struct super_block *, struct ext4_fsmap *, struct ext4_getfsmap_info *); + u32 gfd_dev; +}; + +struct squashfs_dir_entry { + __le16 offset; + __le16 inode_number; + __le16 type; + __le16 size; + char name[0]; +}; + +struct squashfs_dir_header { + __le32 count; + __le32 start_block; + __le32 inode_number; +}; + +struct squashfs_lzo { + void *input; + void *output; +}; + +struct __fat_dirent { + long int d_ino; + __kernel_off_t d_off; + short unsigned int d_reclen; + char d_name[256]; +}; + +enum { + PARSE_INVALID = 1, + PARSE_NOT_LONGNAME = 2, + PARSE_EOF = 3, +}; + +struct fat_ioctl_filldir_callback { + struct dir_context ctx; + void *dirent; + int result; + const char *longname; + int long_len; + const char *shortname; + int short_len; +}; + +enum pnfs_notify_deviceid_type4 { + NOTIFY_DEVICEID4_CHANGE = 2, + NOTIFY_DEVICEID4_DELETE = 4, +}; + +struct nfs4_get_lease_time_args { + struct nfs4_sequence_args la_seq_args; +}; + +struct nfs4_get_lease_time_res { + struct nfs4_sequence_res lr_seq_res; + struct nfs_fsinfo *lr_fsinfo; +}; + +struct nfs4_getdeviceinfo_args { + struct nfs4_sequence_args seq_args; + struct pnfs_device *pdev; + __u32 notify_types; +}; + +struct nfs4_getdeviceinfo_res { + struct nfs4_sequence_res seq_res; + struct pnfs_device *pdev; + __u32 notification; +}; + +struct nfs_lock_args { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fh; + struct file_lock *fl; + struct nfs_seqid *lock_seqid; + nfs4_stateid lock_stateid; + struct nfs_seqid *open_seqid; + nfs4_stateid open_stateid; + struct nfs_lowner lock_owner; + unsigned char block: 1; + unsigned char reclaim: 1; + unsigned char new_lock: 1; + unsigned char new_lock_owner: 1; +}; + +struct nfs_lock_res { + struct nfs4_sequence_res seq_res; + nfs4_stateid stateid; + struct nfs_seqid *lock_seqid; + struct nfs_seqid *open_seqid; +}; + +struct nfs_locku_args { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fh; + struct file_lock *fl; + struct nfs_seqid *seqid; + nfs4_stateid stateid; +}; + +struct nfs_locku_res { + struct nfs4_sequence_res seq_res; + nfs4_stateid stateid; + struct nfs_seqid *seqid; +}; + +struct nfs_lockt_args { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fh; + struct file_lock *fl; + struct nfs_lowner lock_owner; +}; + +struct nfs_lockt_res { + struct nfs4_sequence_res seq_res; + struct file_lock *denied; +}; + +struct nfs_release_lockowner_args { + struct nfs4_sequence_args seq_args; + struct nfs_lowner lock_owner; +}; + +struct nfs_release_lockowner_res { + struct nfs4_sequence_res seq_res; +}; + +struct nfs_setattrargs { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fh; + nfs4_stateid stateid; + struct iattr *iap; + const struct nfs_server *server; + const u32 *bitmask; + const struct nfs4_label *label; +}; + +enum nfs4_acl_type { + NFS4ACL_NONE = 0, + NFS4ACL_ACL = 1, + NFS4ACL_DACL = 2, + NFS4ACL_SACL = 3, +}; + +struct nfs_setaclargs { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fh; + enum nfs4_acl_type acl_type; + size_t acl_len; + struct page **acl_pages; +}; + +struct nfs_setaclres { + struct nfs4_sequence_res seq_res; +}; + +struct nfs_getaclargs { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fh; + enum nfs4_acl_type acl_type; + size_t acl_len; + struct page **acl_pages; +}; + +struct nfs_getaclres { + struct nfs4_sequence_res seq_res; + enum nfs4_acl_type acl_type; + size_t acl_len; + size_t acl_data_offset; + int acl_flags; + struct page *acl_scratch; +}; + +struct nfs_setattrres { + struct nfs4_sequence_res seq_res; + struct nfs_fattr *fattr; + const struct nfs_server *server; +}; + +typedef u64 clientid4; + +struct nfs4_accessargs { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *fh; + const u32 *bitmask; + u32 access; +}; + +struct nfs4_accessres { + struct nfs4_sequence_res seq_res; + const struct nfs_server *server; + struct nfs_fattr *fattr; + u32 supported; + u32 access; +}; + +struct nfs4_create_arg { + struct nfs4_sequence_args seq_args; + u32 ftype; + union { + struct { + struct page **pages; + unsigned int len; + } symlink; + struct { + u32 specdata1; + u32 specdata2; + } device; + } u; + const struct qstr *name; + const struct nfs_server *server; + const struct iattr *attrs; + const struct nfs_fh *dir_fh; + const u32 *bitmask; + const struct nfs4_label *label; + umode_t umask; +}; + +struct nfs4_create_res { + struct nfs4_sequence_res seq_res; + const struct nfs_server *server; + struct nfs_fh *fh; + struct nfs_fattr *fattr; + struct nfs4_change_info dir_cinfo; +}; + +struct nfs4_fsinfo_arg { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *fh; + const u32 *bitmask; +}; + +struct nfs4_fsinfo_res { + struct nfs4_sequence_res seq_res; + struct nfs_fsinfo *fsinfo; +}; + +struct nfs4_getattr_arg { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *fh; + const u32 *bitmask; +}; + +struct nfs4_getattr_res { + struct nfs4_sequence_res seq_res; + const struct nfs_server *server; + struct nfs_fattr *fattr; +}; + +struct nfs4_link_arg { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *fh; + const struct nfs_fh *dir_fh; + const struct qstr *name; + const u32 *bitmask; +}; + +struct nfs4_link_res { + struct nfs4_sequence_res seq_res; + const struct nfs_server *server; + struct nfs_fattr *fattr; + struct nfs4_change_info cinfo; + struct nfs_fattr *dir_attr; +}; + +struct nfs4_lookup_arg { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *dir_fh; + const struct qstr *name; + const u32 *bitmask; +}; + +struct nfs4_lookup_res { + struct nfs4_sequence_res seq_res; + const struct nfs_server *server; + struct nfs_fattr *fattr; + struct nfs_fh *fh; +}; + +struct nfs4_lookupp_arg { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *fh; + const u32 *bitmask; +}; + +struct nfs4_lookupp_res { + struct nfs4_sequence_res seq_res; + const struct nfs_server *server; + struct nfs_fattr *fattr; + struct nfs_fh *fh; +}; + +struct nfs4_lookup_root_arg { + struct nfs4_sequence_args seq_args; + const u32 *bitmask; +}; + +struct nfs4_pathconf_arg { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *fh; + const u32 *bitmask; +}; + +struct nfs4_pathconf_res { + struct nfs4_sequence_res seq_res; + struct nfs_pathconf *pathconf; +}; + +struct nfs4_readdir_arg { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *fh; + u64 cookie; + nfs4_verifier verifier; + u32 count; + struct page **pages; + unsigned int pgbase; + const u32 *bitmask; + bool plus; +}; + +struct nfs4_readdir_res { + struct nfs4_sequence_res seq_res; + nfs4_verifier verifier; + unsigned int pgbase; +}; + +struct nfs4_readlink { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *fh; + unsigned int pgbase; + unsigned int pglen; + struct page **pages; +}; + +struct nfs4_readlink_res { + struct nfs4_sequence_res seq_res; +}; + +struct nfs4_setclientid { + const nfs4_verifier *sc_verifier; + u32 sc_prog; + unsigned int sc_netid_len; + char sc_netid[6]; + unsigned int sc_uaddr_len; + char sc_uaddr[58]; + struct nfs_client *sc_clnt; + struct rpc_cred *sc_cred; +}; + +struct nfs4_statfs_arg { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *fh; + const u32 *bitmask; +}; + +struct nfs4_statfs_res { + struct nfs4_sequence_res seq_res; + struct nfs_fsstat *fsstat; +}; + +struct nfs4_open_caps { + u32 oa_share_access[1]; + u32 oa_share_deny[1]; + u32 oa_share_access_want[1]; + u32 oa_open_claim[1]; + u32 oa_createmode[1]; +}; + +struct nfs4_server_caps_arg { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fhandle; + const u32 *bitmask; +}; + +struct nfs4_server_caps_res { + struct nfs4_sequence_res seq_res; + u32 attr_bitmask[3]; + u32 exclcreat_bitmask[3]; + u32 acl_bitmask; + u32 has_links; + u32 has_symlinks; + u32 fh_expire_type; + u32 case_insensitive; + u32 case_preserving; + struct nfs4_open_caps open_caps; +}; + +struct nfs4_fs_locations_arg { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *dir_fh; + const struct nfs_fh *fh; + const struct qstr *name; + struct page *page; + const u32 *bitmask; + clientid4 clientid; + unsigned char migration: 1; + unsigned char renew: 1; +}; + +struct nfs4_fs_locations_res { + struct nfs4_sequence_res seq_res; + struct nfs4_fs_locations *fs_locations; + unsigned char migration: 1; + unsigned char renew: 1; +}; + +struct nfs4_secinfo_arg { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *dir_fh; + const struct qstr *name; +}; + +struct nfs4_secinfo_res { + struct nfs4_sequence_res seq_res; + struct nfs4_secinfo_flavors *flavors; +}; + +struct nfs4_fsid_present_arg { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *fh; + clientid4 clientid; + unsigned char renew: 1; +}; + +struct nfs4_fsid_present_res { + struct nfs4_sequence_res seq_res; + struct nfs_fh *fh; + unsigned char renew: 1; +}; + +struct nfs41_state_protection { + u32 how; + struct nfs4_op_map enforce; + struct nfs4_op_map allow; +}; + +struct nfs41_exchange_id_args { + struct nfs_client *client; + nfs4_verifier verifier; + u32 flags; + struct nfs41_state_protection state_protect; +}; + +struct nfs41_bind_conn_to_session_args { + struct nfs_client *client; + struct nfs4_sessionid sessionid; + u32 dir; + bool use_conn_in_rdma_mode; + int retries; +}; + +struct nfs41_bind_conn_to_session_res { + struct nfs4_sessionid sessionid; + u32 dir; + bool use_conn_in_rdma_mode; +}; + +struct nfs41_exchange_id_res { + u64 clientid; + u32 seqid; + u32 flags; + struct nfs41_server_owner *server_owner; + struct nfs41_server_scope *server_scope; + struct nfs41_impl_id *impl_id; + struct nfs41_state_protection state_protect; +}; + +struct nfs41_create_session_args { + struct nfs_client *client; + u64 clientid; + uint32_t seqid; + uint32_t flags; + uint32_t cb_program; + struct nfs4_channel_attrs fc_attrs; + struct nfs4_channel_attrs bc_attrs; +}; + +struct nfs41_create_session_res { + struct nfs4_sessionid sessionid; + uint32_t seqid; + uint32_t flags; + struct nfs4_channel_attrs fc_attrs; + struct nfs4_channel_attrs bc_attrs; +}; + +struct nfs41_reclaim_complete_args { + struct nfs4_sequence_args seq_args; + unsigned char one_fs: 1; +}; + +struct nfs41_reclaim_complete_res { + struct nfs4_sequence_res seq_res; +}; + +struct nfs41_secinfo_no_name_args { + struct nfs4_sequence_args seq_args; + int style; +}; + +struct nfs41_test_stateid_args { + struct nfs4_sequence_args seq_args; + nfs4_stateid stateid; +}; + +struct nfs41_test_stateid_res { + struct nfs4_sequence_res seq_res; + unsigned int status; +}; + +struct nfs41_free_stateid_args { + struct nfs4_sequence_args seq_args; + nfs4_stateid stateid; +}; + +struct nfs41_free_stateid_res { + struct nfs4_sequence_res seq_res; + unsigned int status; +}; + +struct nfs4_cached_acl { + enum nfs4_acl_type type; + int cached; + size_t len; + char data[0]; +}; + +enum nfs4_session_state { + NFS4_SESSION_INITING = 0, + NFS4_SESSION_ESTABLISHED = 1, +}; + +struct nfs4_call_sync_data { + const struct nfs_server *seq_server; + struct nfs4_sequence_args *seq_args; + struct nfs4_sequence_res *seq_res; +}; + +struct nfs4_open_createattrs { + struct nfs4_label *label; + struct iattr *sattr; + const __u32 verf[2]; +}; + +struct nfs4_closedata { + struct inode *inode; + struct nfs4_state *state; + struct nfs_closeargs arg; + struct nfs_closeres res; + struct { + struct nfs4_layoutreturn_args arg; + struct nfs4_layoutreturn_res res; + struct nfs4_xdr_opaque_data ld_private; + u32 roc_barrier; + bool roc; + } lr; + struct nfs_fattr fattr; + long unsigned int timestamp; +}; + +struct nfs4_createdata { + struct rpc_message msg; + struct nfs4_create_arg arg; + struct nfs4_create_res res; + struct nfs_fh fh; + struct nfs_fattr fattr; +}; + +struct nfs4_renewdata { + struct nfs_client *client; + long unsigned int timestamp; +}; + +struct nfs4_delegreturndata { + struct nfs4_delegreturnargs args; + struct nfs4_delegreturnres res; + struct nfs_fh fh; + nfs4_stateid stateid; + long unsigned int timestamp; + struct { + struct nfs4_layoutreturn_args arg; + struct nfs4_layoutreturn_res res; + struct nfs4_xdr_opaque_data ld_private; + u32 roc_barrier; + bool roc; + } lr; + struct nfs4_delegattr sattr; + struct nfs_fattr fattr; + int rpc_status; + struct inode *inode; +}; + +struct nfs4_unlockdata { + struct nfs_locku_args arg; + struct nfs_locku_res res; + struct nfs4_lock_state *lsp; + struct nfs_open_context *ctx; + struct nfs_lock_context *l_ctx; + struct file_lock fl; + struct nfs_server *server; + long unsigned int timestamp; +}; + +struct nfs4_lockdata { + struct nfs_lock_args arg; + struct nfs_lock_res res; + struct nfs4_lock_state *lsp; + struct nfs_open_context *ctx; + struct file_lock fl; + long unsigned int timestamp; + int rpc_status; + int cancelled; + struct nfs_server *server; +}; + +struct nfs4_lock_waiter { + struct inode *inode; + struct nfs_lowner owner; + wait_queue_entry_t wait; +}; + +struct nfs_release_lockowner_data { + struct nfs4_lock_state *lsp; + struct nfs_server *server; + struct nfs_release_lockowner_args args; + struct nfs_release_lockowner_res res; + long unsigned int timestamp; +}; + +struct rpc_bind_conn_calldata { + struct nfs_client *clp; + const struct cred *cred; +}; + +struct nfs41_exchange_id_data { + struct nfs41_exchange_id_res res; + struct nfs41_exchange_id_args args; +}; + +struct nfs4_get_lease_time_data { + struct nfs4_get_lease_time_args *args; + struct nfs4_get_lease_time_res *res; + struct nfs_client *clp; +}; + +struct nfs4_sequence_data { + struct nfs_client *clp; + struct nfs4_sequence_args args; + struct nfs4_sequence_res res; +}; + +struct nfs4_reclaim_complete_data { + struct nfs_client *clp; + struct nfs41_reclaim_complete_args arg; + struct nfs41_reclaim_complete_res res; +}; + +struct nfs_free_stateid_data { + struct nfs_server *server; + struct nfs41_free_stateid_args args; + struct nfs41_free_stateid_res res; +}; + +enum { + RCA4_TYPE_MASK_RDATA_DLG = 0, + RCA4_TYPE_MASK_WDATA_DLG = 1, + RCA4_TYPE_MASK_DIR_DLG = 2, + RCA4_TYPE_MASK_FILE_LAYOUT = 3, + RCA4_TYPE_MASK_BLK_LAYOUT = 4, + RCA4_TYPE_MASK_OBJ_LAYOUT_MIN = 8, + RCA4_TYPE_MASK_OBJ_LAYOUT_MAX = 9, + RCA4_TYPE_MASK_OTHER_LAYOUT_MIN = 12, + RCA4_TYPE_MASK_OTHER_LAYOUT_MAX = 15, +}; + +struct nfs4_layout_stateid { + struct nfs4_stid ls_stid; + struct list_head ls_perclnt; + struct list_head ls_perfile; + spinlock_t ls_lock; + struct list_head ls_layouts; + u32 ls_layout_type; + struct nfsd_file *ls_file; + struct nfsd4_callback ls_recall; + stateid_t ls_recall_sid; + bool ls_recalled; + struct mutex ls_mutex; +}; + +struct bloom_pair { + int entries; + int old_entries; + time64_t swap_time; + int new; + long unsigned int set[8]; +}; + +enum rp_lock { + RP_UNLOCKED = 0, + RP_LOCKED = 1, + RP_UNHASHED = 2, +}; + +struct laundry_time { + time64_t cutoff; + time64_t new_timeo; +}; + +struct smb3_sd { + __u8 Revision; + __u8 Sbz1; + __le16 Control; + __le32 OffsetOwner; + __le32 OffsetGroup; + __le32 OffsetSacl; + __le32 OffsetDacl; +}; + +struct smb3_acl { + u8 AclRevision; + u8 Sbz1; + __le16 AclSize; + __le16 AceCount; + __le16 Sbz2; +}; + +struct owner_group_sids { + struct owner_sid owner; + struct owner_sid group; +}; + +struct smb3_hdr_req { + __le32 ProtocolId; + __le16 StructureSize; + __le16 CreditCharge; + __le16 ChannelSequence; + __le16 Reserved; + __le16 Command; + __le16 CreditRequest; + __le32 Flags; + __le32 NextCommand; + __le64 MessageId; + union { + struct { + __le32 ProcessId; + __le32 TreeId; + } SyncId; + __le64 AsyncId; + } Id; + __le64 SessionId; + __u8 Signature[16]; +}; + +struct smb2_pdu { + struct smb2_hdr hdr; + __le16 StructureSize2; +} __attribute__((packed)); + +struct smb2_tree_connect_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 Flags; + __le16 PathOffset; + __le16 PathLength; + __u8 Buffer[0]; +}; + +struct smb2_tree_connect_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; + __u8 ShareType; + __u8 Reserved; + __le32 ShareFlags; + __le32 Capabilities; + __le32 MaximalAccess; +}; + +struct smb2_tree_disconnect_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 Reserved; +} __attribute__((packed)); + +struct smb2_neg_context { + __le16 ContextType; + __le16 DataLength; + __le32 Reserved; +}; + +struct smb2_preauth_neg_context { + __le16 ContextType; + __le16 DataLength; + __le32 Reserved; + __le16 HashAlgorithmCount; + __le16 SaltLength; + __le16 HashAlgorithms; + __u8 Salt[32]; +} __attribute__((packed)); + +struct smb2_encryption_neg_context { + __le16 ContextType; + __le16 DataLength; + __le32 Reserved; + __le16 CipherCount; + __le16 Ciphers[0]; +} __attribute__((packed)); + +struct smb2_compression_capabilities_context { + __le16 ContextType; + __le16 DataLength; + __le32 Reserved; + __le16 CompressionAlgorithmCount; + __le16 Padding; + __le32 Flags; + __le16 CompressionAlgorithms[3]; + __u16 Pad; +}; + +struct smb2_netname_neg_context { + __le16 ContextType; + __le16 DataLength; + __le32 Reserved; + __le16 NetName[0]; +}; + +struct smb2_signing_capabilities { + __le16 ContextType; + __le16 DataLength; + __le32 Reserved; + __le16 SigningAlgorithmCount; + __le16 SigningAlgorithms[0]; +} __attribute__((packed)); + +struct smb2_posix_neg_context { + __le16 ContextType; + __le16 DataLength; + __le32 Reserved; + __u8 Name[16]; +}; + +struct smb2_negotiate_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 DialectCount; + __le16 SecurityMode; + __le16 Reserved; + __le32 Capabilities; + __u8 ClientGUID[16]; + __le32 NegotiateContextOffset; + __le16 NegotiateContextCount; + __le16 Reserved2; + __le16 Dialects[0]; +} __attribute__((packed)); + +struct smb2_negotiate_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 SecurityMode; + __le16 DialectRevision; + __le16 NegotiateContextCount; + __u8 ServerGUID[16]; + __le32 Capabilities; + __le32 MaxTransactSize; + __le32 MaxReadSize; + __le32 MaxWriteSize; + __le64 SystemTime; + __le64 ServerStartTime; + __le16 SecurityBufferOffset; + __le16 SecurityBufferLength; + __le32 NegotiateContextOffset; + __u8 Buffer[0]; +}; + +struct smb2_sess_setup_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __u8 Flags; + __u8 SecurityMode; + __le32 Capabilities; + __le32 Channel; + __le16 SecurityBufferOffset; + __le16 SecurityBufferLength; + __le64 PreviousSessionId; + __u8 Buffer[0]; +}; + +struct smb2_sess_setup_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 SessionFlags; + __le16 SecurityBufferOffset; + __le16 SecurityBufferLength; + __u8 Buffer[0]; +}; + +struct smb2_logoff_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 Reserved; +} __attribute__((packed)); + +struct smb2_close_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 Flags; + __le32 Reserved; + __u64 PersistentFileId; + __u64 VolatileFileId; +}; + +struct smb2_close_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 Flags; + __le32 Reserved; + union { + struct { + __le64 CreationTime; + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le64 AllocationSize; + __le64 EndOfFile; + __le32 Attributes; + } __attribute__((packed)); + struct { + __le64 CreationTime; + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le64 AllocationSize; + __le64 EndOfFile; + __le32 Attributes; + } __attribute__((packed)) network_open_info; + }; +} __attribute__((packed)); + +struct smb2_read_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __u8 Padding; + __u8 Flags; + __le32 Length; + __le64 Offset; + __u64 PersistentFileId; + __u64 VolatileFileId; + __le32 MinimumCount; + __le32 Channel; + __le32 RemainingBytes; + __le16 ReadChannelInfoOffset; + __le16 ReadChannelInfoLength; + __u8 Buffer[0]; +}; + +struct smb2_write_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 DataOffset; + __le32 Length; + __le64 Offset; + __u64 PersistentFileId; + __u64 VolatileFileId; + __le32 Channel; + __le32 RemainingBytes; + __le16 WriteChannelInfoOffset; + __le16 WriteChannelInfoLength; + __le32 Flags; + __u8 Buffer[0]; +}; + +struct smb2_write_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; + __u8 DataOffset; + __u8 Reserved; + __le32 DataLength; + __le32 DataRemaining; + __u32 Reserved2; + __u8 Buffer[0]; +}; + +struct smb2_flush_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 Reserved1; + __le32 Reserved2; + __u64 PersistentFileId; + __u64 VolatileFileId; +}; + +struct smb2_lock_element { + __le64 Offset; + __le64 Length; + __le32 Flags; + __le32 Reserved; +}; + +struct smb2_lock_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 LockCount; + __le32 LockSequenceNumber; + __u64 PersistentFileId; + __u64 VolatileFileId; + union { + struct smb2_lock_element lock; + struct { + struct {} __empty_locks; + struct smb2_lock_element locks[0]; + }; + }; +}; + +struct smb2_echo_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __u16 Reserved; +} __attribute__((packed)); + +struct smb2_echo_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; + __u16 Reserved; +} __attribute__((packed)); + +struct smb2_query_directory_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __u8 FileInformationClass; + __u8 Flags; + __le32 FileIndex; + __u64 PersistentFileId; + __u64 VolatileFileId; + __le16 FileNameOffset; + __le16 FileNameLength; + __le32 OutputBufferLength; + __u8 Buffer[0]; +}; + +struct smb2_set_info_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __u8 InfoType; + __u8 FileInfoClass; + __le32 BufferLength; + __le16 BufferOffset; + __u16 Reserved; + __le32 AdditionalInformation; + __u64 PersistentFileId; + __u64 VolatileFileId; + __u8 Buffer[0]; +}; + +struct smb2_set_info_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; +} __attribute__((packed)); + +struct smb2_change_notify_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 Flags; + __le32 OutputBufferLength; + __u64 PersistentFileId; + __u64 VolatileFileId; + __le32 CompletionFilter; + __u32 Reserved; +}; + +struct smb2_change_notify_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 OutputBufferOffset; + __le32 OutputBufferLength; + __u8 Buffer[0]; +}; + +struct create_context { + union { + struct { + __le32 Next; + __le16 NameOffset; + __le16 NameLength; + __le16 Reserved; + __le16 DataOffset; + __le32 DataLength; + }; + struct create_context_hdr hdr; + }; + __u8 Buffer[0]; +}; + +struct smb2_create_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __u8 SecurityFlags; + __u8 RequestedOplockLevel; + __le32 ImpersonationLevel; + __le64 SmbCreateFlags; + __le64 Reserved; + __le32 DesiredAccess; + __le32 FileAttributes; + __le32 ShareAccess; + __le32 CreateDisposition; + __le32 CreateOptions; + __le16 NameOffset; + __le16 NameLength; + __le32 CreateContextsOffset; + __le32 CreateContextsLength; + __u8 Buffer[0]; +}; + +struct create_posix { + struct create_context_hdr ccontext; + __u8 Name[16]; + __le32 Mode; + __u32 Reserved; +}; + +struct create_durable { + struct create_context_hdr ccontext; + __u8 Name[8]; + union { + __u8 Reserved[16]; + struct { + __u64 PersistentFileId; + __u64 VolatileFileId; + } Fid; + } Data; +}; + +struct create_disk_id_rsp { + struct create_context_hdr ccontext; + __u8 Name[8]; + __le64 DiskFileId; + __le64 VolumeId; + __u8 Reserved[16]; +}; + +struct smb2_ioctl_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 Reserved; + __le32 CtlCode; + __u64 PersistentFileId; + __u64 VolatileFileId; + __le32 InputOffset; + __le32 InputCount; + __le32 MaxInputResponse; + __le32 OutputOffset; + __le32 OutputCount; + __le32 MaxOutputResponse; + __le32 Flags; + __le32 Reserved2; + __u8 Buffer[0]; +}; + +struct validate_negotiate_info_req { + __le32 Capabilities; + __u8 Guid[16]; + __le16 SecurityMode; + __le16 DialectCount; + __le16 Dialects[4]; +}; + +struct validate_negotiate_info_rsp { + __le32 Capabilities; + __u8 Guid[16]; + __le16 SecurityMode; + __le16 Dialect; +}; + +struct smb2_query_info_req { + struct smb2_hdr hdr; + __le16 StructureSize; + __u8 InfoType; + __u8 FileInfoClass; + __le32 OutputBufferLength; + __le16 InputBufferOffset; + __u16 Reserved; + __le32 InputBufferLength; + __le32 AdditionalInformation; + __le32 Flags; + __u64 PersistentFileId; + __u64 VolatileFileId; + __u8 Buffer[0]; +}; + +struct smb2_file_eof_info { + __le64 EndOfFile; +}; + +struct smb3_fs_ss_info { + __le32 LogicalBytesPerSector; + __le32 PhysicalBytesPerSectorForAtomicity; + __le32 PhysicalBytesPerSectorForPerf; + __le32 FSEffPhysicalBytesPerSectorForAtomicity; + __le32 Flags; + __le32 ByteOffsetForSectorAlignment; + __le32 ByteOffsetForPartitionAlignment; +}; + +struct smb3_fs_vol_info { + __le64 VolumeCreationTime; + __u32 VolumeSerialNumber; + __le32 VolumeLabelLength; + __u8 SupportsObjects; + __u8 Reserved; + __u8 VolumeLabel[0]; +} __attribute__((packed)); + +struct smb2_oplock_break { + struct smb2_hdr hdr; + __le16 StructureSize; + __u8 OplockLevel; + __u8 Reserved; + __le32 Reserved2; + __u64 PersistentFid; + __u64 VolatileFid; +}; + +struct smb2_lease_ack { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 Reserved; + __le32 Flags; + __u8 LeaseKey[16]; + __le32 LeaseState; + __le64 LeaseDuration; +} __attribute__((packed)); + +struct durable_context_v2 { + __le32 Timeout; + __le32 Flags; + __u64 Reserved; + __u8 CreateGuid[16]; +}; + +struct create_durable_v2 { + struct create_context_hdr ccontext; + __u8 Name[8]; + struct durable_context_v2 dcontext; +}; + +struct durable_reconnect_context_v2 { + struct { + __u64 PersistentFileId; + __u64 VolatileFileId; + } Fid; + __u8 CreateGuid[16]; + __le32 Flags; +} __attribute__((packed)); + +struct create_durable_handle_reconnect_v2 { + struct create_context_hdr ccontext; + __u8 Name[8]; + struct durable_reconnect_context_v2 dcontext; + __u8 Pad[4]; +}; + +struct crt_twarp_ctxt { + struct create_context_hdr ccontext; + __u8 Name[8]; + __le64 Timestamp; +}; + +struct crt_query_id_ctxt { + struct create_context_hdr ccontext; + __u8 Name[8]; +}; + +struct crt_sd_ctxt { + struct create_context_hdr ccontext; + __u8 Name[8]; + struct smb3_sd sd; +}; + +struct compress_ioctl { + __le16 CompressionState; +}; + +struct smb2_posix_info { + __le32 NextEntryOffset; + __u32 Ignored; + __le64 CreationTime; + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le64 EndOfFile; + __le64 AllocationSize; + __le32 DosAttributes; + __le64 Inode; + __le32 DeviceId; + __le32 Zero; + __le32 HardLinks; + __le32 ReparseTag; + __le32 Mode; +} __attribute__((packed)); + +struct smb2_posix_info_parsed { + const struct smb2_posix_info *base; + size_t size; + struct smb_sid owner; + struct smb_sid group; + int name_len; + const u8 *name; +}; + +typedef struct { + __le32 OptimalTransferSize; + __le32 BlockSize; + __le64 TotalBlocks; + __le64 BlocksAvail; + __le64 UserBlocksAvail; + __le64 TotalFileNodes; + __le64 FreeFileNodes; + __le64 FileSysIdentifier; +} FILE_SYSTEM_POSIX_INFO; + +typedef struct { + __le32 NextEntryOffset; + __u32 FileIndex; + __le64 CreationTime; + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le64 EndOfFile; + __le64 AllocationSize; + __le32 ExtFileAttributes; + __le32 FileNameLength; + char FileName[0]; +} FILE_DIRECTORY_INFO; + +struct SMB2_sess_data { + unsigned int xid; + struct cifs_ses *ses; + struct TCP_Server_Info *server; + struct nls_table *nls_cp; + void (*func)(struct SMB2_sess_data *); + int result; + u64 previous_session; + int buf0_type; + struct kvec iov[2]; +}; + +struct rb_node_key { + struct rb_node node; + size_t key; +}; + +struct e_node { + struct rb_node_key start; + struct rb_node_key count; +}; + +typedef __le64 bitmap_ulong; + +struct fuse_file_lock { + uint64_t start; + uint64_t end; + uint32_t type; + uint32_t pid; +}; + +struct fuse_open_in { + uint32_t flags; + uint32_t open_flags; +}; + +struct fuse_flush_in { + uint64_t fh; + uint32_t unused; + uint32_t padding; + uint64_t lock_owner; +}; + +struct fuse_read_in { + uint64_t fh; + uint64_t offset; + uint32_t size; + uint32_t read_flags; + uint64_t lock_owner; + uint32_t flags; + uint32_t padding; +}; + +struct fuse_write_in { + uint64_t fh; + uint64_t offset; + uint32_t size; + uint32_t write_flags; + uint64_t lock_owner; + uint32_t flags; + uint32_t padding; +}; + +struct fuse_write_out { + uint32_t size; + uint32_t padding; +}; + +struct fuse_fsync_in { + uint64_t fh; + uint32_t fsync_flags; + uint32_t padding; +}; + +struct fuse_lk_in { + uint64_t fh; + uint64_t owner; + struct fuse_file_lock lk; + uint32_t lk_flags; + uint32_t padding; +}; + +struct fuse_lk_out { + struct fuse_file_lock lk; +}; + +struct fuse_bmap_in { + uint64_t block; + uint32_t blocksize; + uint32_t padding; +}; + +struct fuse_bmap_out { + uint64_t block; +}; + +struct fuse_poll_in { + uint64_t fh; + uint64_t kh; + uint32_t flags; + uint32_t events; +}; + +struct fuse_poll_out { + uint32_t revents; + uint32_t padding; +}; + +struct fuse_fallocate_in { + uint64_t fh; + uint64_t offset; + uint64_t length; + uint32_t mode; + uint32_t padding; +}; + +struct fuse_lseek_in { + uint64_t fh; + uint64_t offset; + uint32_t whence; + uint32_t padding; +}; + +struct fuse_lseek_out { + uint64_t offset; +}; + +struct fuse_copy_file_range_in { + uint64_t fh_in; + uint64_t off_in; + uint64_t nodeid_out; + uint64_t fh_out; + uint64_t off_out; + uint64_t len; + uint64_t flags; +}; + +struct fuse_io_args { + union { + struct { + struct fuse_read_in in; + u64 attr_ver; + } read; + struct { + struct fuse_write_in in; + struct fuse_write_out out; + bool page_locked; + } write; + }; + struct fuse_args_pages ap; + struct fuse_io_priv *io; + struct fuse_file *ff; +}; + +struct fuse_writepage_args { + struct fuse_io_args ia; + struct rb_node writepages_entry; + struct list_head queue_entry; + struct fuse_writepage_args *next; + struct inode *inode; + struct fuse_sync_bucket *bucket; +}; + +struct fuse_fill_wb_data { + struct fuse_writepage_args *wpa; + struct fuse_file *ff; + struct inode *inode; + struct page **orig_pages; + unsigned int max_pages; +}; + +struct ovl_dir_cache { + long int refcount; + u64 version; + struct list_head entries; + struct rb_root root; +}; + +struct ovl_cache_entry { + unsigned int len; + unsigned int type; + u64 real_ino; + u64 ino; + struct list_head l_node; + struct rb_node node; + struct ovl_cache_entry *next_maybe_whiteout; + bool is_upper; + bool is_whiteout; + bool check_xwhiteout; + char name[0]; +}; + +struct ovl_readdir_data { + struct dir_context ctx; + struct dentry *dentry; + bool is_lowest; + struct rb_root *root; + struct list_head *list; + struct list_head middle; + struct ovl_cache_entry *first_maybe_whiteout; + int count; + int err; + bool is_upper; + bool d_type_supported; + bool in_xwhiteouts_dir; +}; + +struct ovl_dir_file { + bool is_real; + bool is_upper; + struct ovl_dir_cache *cache; + struct list_head *cursor; + struct file *realfile; + struct file *upperfile; +}; + +struct ovl_readdir_translate { + struct dir_context *orig_ctx; + struct ovl_dir_cache *cache; + struct dir_context ctx; + u64 parent_ino; + int fsid; + int xinobits; + bool xinowarn; +}; + +struct charspec { + uint8_t charSetType; + uint8_t charSetInfo[63]; +}; + +typedef uint8_t dstring; + +struct volStructDesc { + uint8_t structType; + uint8_t stdIdent[5]; + uint8_t structVersion; + uint8_t structData[2041]; +}; + +struct kernel_extent_ad { + uint32_t extLength; + uint32_t extLocation; +}; + +struct primaryVolDesc { + struct tag descTag; + __le32 volDescSeqNum; + __le32 primaryVolDescNum; + dstring volIdent[32]; + __le16 volSeqNum; + __le16 maxVolSeqNum; + __le16 interchangeLvl; + __le16 maxInterchangeLvl; + __le32 charSetList; + __le32 maxCharSetList; + dstring volSetIdent[128]; + struct charspec descCharSet; + struct charspec explanatoryCharSet; + struct extent_ad volAbstract; + struct extent_ad volCopyright; + struct regid appIdent; + struct timestamp recordingDateAndTime; + struct regid impIdent; + uint8_t impUse[64]; + __le32 predecessorVolDescSeqLocation; + __le16 flags; + uint8_t reserved[22]; +}; + +struct anchorVolDescPtr { + struct tag descTag; + struct extent_ad mainVolDescSeqExt; + struct extent_ad reserveVolDescSeqExt; + uint8_t reserved[480]; +}; + +struct volDescPtr { + struct tag descTag; + __le32 volDescSeqNum; + struct extent_ad nextVolDescSeqExt; + uint8_t reserved[484]; +}; + +struct partitionDesc { + struct tag descTag; + __le32 volDescSeqNum; + __le16 partitionFlags; + __le16 partitionNumber; + struct regid partitionContents; + uint8_t partitionContentsUse[128]; + __le32 accessType; + __le32 partitionStartingLocation; + __le32 partitionLength; + struct regid impIdent; + uint8_t impUse[128]; + uint8_t reserved[156]; +}; + +struct logicalVolDesc { + struct tag descTag; + __le32 volDescSeqNum; + struct charspec descCharSet; + dstring logicalVolIdent[128]; + __le32 logicalBlockSize; + struct regid domainIdent; + uint8_t logicalVolContentsUse[16]; + __le32 mapTableLength; + __le32 numPartitionMaps; + struct regid impIdent; + uint8_t impUse[128]; + struct extent_ad integritySeqExt; + uint8_t partitionMaps[0]; +}; + +struct genericPartitionMap { + uint8_t partitionMapType; + uint8_t partitionMapLength; + uint8_t partitionMapping[0]; +}; + +struct genericPartitionMap1 { + uint8_t partitionMapType; + uint8_t partitionMapLength; + __le16 volSeqNum; + __le16 partitionNum; +}; + +struct fileSetDesc { + struct tag descTag; + struct timestamp recordingDateAndTime; + __le16 interchangeLvl; + __le16 maxInterchangeLvl; + __le32 charSetList; + __le32 maxCharSetList; + __le32 fileSetNum; + __le32 fileSetDescNum; + struct charspec logicalVolIdentCharSet; + dstring logicalVolIdent[128]; + struct charspec fileSetCharSet; + dstring fileSetIdent[32]; + dstring copyrightFileIdent[32]; + dstring abstractFileIdent[32]; + struct long_ad rootDirectoryICB; + struct regid domainIdent; + struct long_ad nextExt; + struct long_ad streamDirectoryICB; + uint8_t reserved[32]; +}; + +struct partitionHeaderDesc { + struct short_ad unallocSpaceTable; + struct short_ad unallocSpaceBitmap; + struct short_ad partitionIntegrityTable; + struct short_ad freedSpaceTable; + struct short_ad freedSpaceBitmap; + uint8_t reserved[88]; +}; + +struct spaceBitmapDesc { + struct tag descTag; + __le32 numOfBits; + __le32 numOfBytes; + uint8_t bitmap[0]; +}; + +struct logicalVolHeaderDesc { + __le64 uniqueID; + uint8_t reserved[24]; +}; + +struct domainIdentSuffix { + __le16 UDFRevision; + uint8_t domainFlags; + uint8_t reserved[5]; +}; + +struct udfPartitionMap2 { + uint8_t partitionMapType; + uint8_t partitionMapLength; + uint8_t reserved1[2]; + struct regid partIdent; + __le16 volSeqNum; + __le16 partitionNum; +}; + +struct sparablePartitionMap { + uint8_t partitionMapType; + uint8_t partitionMapLength; + uint8_t reserved1[2]; + struct regid partIdent; + __le16 volSeqNum; + __le16 partitionNum; + __le16 packetLength; + uint8_t numSparingTables; + uint8_t reserved2[1]; + __le32 sizeSparingTable; + __le32 locSparingTable[4]; +}; + +struct metadataPartitionMap { + uint8_t partitionMapType; + uint8_t partitionMapLength; + uint8_t reserved1[2]; + struct regid partIdent; + __le16 volSeqNum; + __le16 partitionNum; + __le32 metadataFileLoc; + __le32 metadataMirrorFileLoc; + __le32 metadataBitmapFileLoc; + __le32 allocUnitSize; + __le16 alignUnitSize; + uint8_t flags; + uint8_t reserved2[5]; +}; + +struct virtualAllocationTable20 { + __le16 lengthHeader; + __le16 lengthImpUse; + dstring logicalVolIdent[128]; + __le32 previousVATICBLoc; + __le32 numFiles; + __le32 numDirs; + __le16 minUDFReadRev; + __le16 minUDFWriteRev; + __le16 maxUDFWriteRev; + __le16 reserved; + uint8_t impUse[0]; +}; + +struct udf_vds_record { + uint32_t block; + uint32_t volDescSeqNum; +}; + +struct generic_desc { + struct tag descTag; + __le32 volDescSeqNum; +}; + +enum { + VDS_POS_PRIMARY_VOL_DESC = 0, + VDS_POS_UNALLOC_SPACE_DESC = 1, + VDS_POS_LOGICAL_VOL_DESC = 2, + VDS_POS_IMP_USE_VOL_DESC = 3, + VDS_POS_LENGTH = 4, +}; + +enum { + UDF_MAX_LINKS = 65535, +}; + +struct udf_options { + unsigned int blocksize; + unsigned int session; + unsigned int lastblock; + unsigned int anchor; + unsigned int flags; + umode_t umask; + kgid_t gid; + kuid_t uid; + umode_t fmode; + umode_t dmode; + struct nls_table *nls_map; +}; + +enum { + Opt_novrs = 0, + Opt_nostrict = 1, + Opt_bs = 2, + Opt_unhide___2 = 3, + Opt_undelete = 4, + Opt_noadinicb = 5, + Opt_adinicb = 6, + Opt_shortad = 7, + Opt_longad = 8, + Opt_gid___8 = 9, + Opt_uid___8 = 10, + Opt_umask___3 = 11, + Opt_session___2 = 12, + Opt_lastblock = 13, + Opt_anchor = 14, + Opt_volume = 15, + Opt_partition = 16, + Opt_fileset = 17, + Opt_rootdir = 18, + Opt_utf8___3 = 19, + Opt_iocharset___4 = 20, + Opt_err___14 = 21, + Opt_fmode = 22, + Opt_dmode___2 = 23, +}; + +struct part_desc_seq_scan_data { + struct udf_vds_record rec; + u32 partnum; +}; + +struct desc_seq_scan_data { + struct udf_vds_record vds[4]; + unsigned int size_part_descs; + unsigned int num_part_descs; + struct part_desc_seq_scan_data *part_descs_loc; +}; + +struct dioattr { + __u32 d_mem; + __u32 d_miniosz; + __u32 d_maxiosz; +}; + +struct getbmapx { + __s64 bmv_offset; + __s64 bmv_block; + __s64 bmv_length; + __s32 bmv_count; + __s32 bmv_entries; + __s32 bmv_iflags; + __s32 bmv_oflags; + __s32 bmv_unused1; + __s32 bmv_unused2; +}; + +struct xfs_fsop_counts { + __u64 freedata; + __u64 freertx; + __u64 freeino; + __u64 allocino; +}; + +struct xfs_fsop_resblks { + __u64 resblks; + __u64 resblks_avail; +}; + +struct xfs_growfs_data { + __u64 newblocks; + __u32 imaxpct; +}; + +struct xfs_growfs_log { + __u32 newblocks; + __u32 isint; +}; + +struct xfs_growfs_rt { + __u64 newblocks; + __u32 extsize; +}; + +typedef struct xfs_growfs_rt xfs_growfs_rt_t; + +struct xfs_fsop_bulkreq { + __u64 *lastip; + __s32 icount; + void *ubuffer; + __s32 *ocount; +}; + +struct xfs_bulk_ireq { + uint64_t ino; + uint32_t flags; + uint32_t icount; + uint32_t ocount; + uint32_t agno; + uint64_t reserved[5]; +}; + +struct xfs_bulkstat_req { + struct xfs_bulk_ireq hdr; + struct xfs_bulkstat bulkstat[0]; +}; + +struct xfs_inumbers_req { + struct xfs_bulk_ireq hdr; + struct xfs_inumbers inumbers[0]; +}; + +struct xfs_error_injection { + __s32 fd; + __s32 errtag; +}; + +typedef struct xfs_error_injection xfs_error_injection_t; + +struct xfs_fs_eofblocks { + __u32 eof_version; + __u32 eof_flags; + uid_t eof_uid; + gid_t eof_gid; + prid_t eof_prid; + __u32 pad32; + __u64 eof_min_file_size; + __u64 pad64[12]; +}; + +struct xfs_swapext { + int64_t sx_version; + int64_t sx_fdtarget; + int64_t sx_fdtmp; + xfs_off_t sx_offset; + xfs_off_t sx_length; + char sx_pad[16]; + struct xfs_bstat sx_stat; +}; + +typedef struct xfs_swapext xfs_swapext_t; + +struct kgetbmap { + __s64 bmv_offset; + __s64 bmv_block; + __s64 bmv_length; + __s32 bmv_oflags; +}; + +struct fsmap_head { + __u32 fmh_iflags; + __u32 fmh_oflags; + __u32 fmh_count; + __u32 fmh_entries; + __u64 fmh_reserved[6]; + struct fsmap fmh_keys[2]; + struct fsmap fmh_recs[0]; +}; + +struct xfs_extent { + xfs_fsblock_t ext_start; + xfs_extlen_t ext_len; +}; + +typedef struct xfs_extent xfs_extent_t; + +struct xfs_extent_32 { + uint64_t ext_start; + uint32_t ext_len; +} __attribute__((packed)); + +typedef struct xfs_extent_32 xfs_extent_32_t; + +struct xfs_extent_64 { + uint64_t ext_start; + uint32_t ext_len; + uint32_t ext_pad; +}; + +typedef struct xfs_extent_64 xfs_extent_64_t; + +struct xfs_efi_log_format { + uint16_t efi_type; + uint16_t efi_size; + uint32_t efi_nextents; + uint64_t efi_id; + xfs_extent_t efi_extents[0]; +}; + +typedef struct xfs_efi_log_format xfs_efi_log_format_t; + +struct xfs_efi_log_format_32 { + uint16_t efi_type; + uint16_t efi_size; + uint32_t efi_nextents; + uint64_t efi_id; + xfs_extent_32_t efi_extents[0]; +}; + +typedef struct xfs_efi_log_format_32 xfs_efi_log_format_32_t; + +struct xfs_efi_log_format_64 { + uint16_t efi_type; + uint16_t efi_size; + uint32_t efi_nextents; + uint64_t efi_id; + xfs_extent_64_t efi_extents[0]; +}; + +typedef struct xfs_efi_log_format_64 xfs_efi_log_format_64_t; + +struct xfs_efd_log_format { + uint16_t efd_type; + uint16_t efd_size; + uint32_t efd_nextents; + uint64_t efd_efi_id; + xfs_extent_t efd_extents[0]; +}; + +typedef struct xfs_efd_log_format xfs_efd_log_format_t; + +struct xfs_efi_log_item { + struct xfs_log_item efi_item; + atomic_t efi_refcount; + atomic_t efi_next_extent; + xfs_efi_log_format_t efi_format; +}; + +struct xfs_efd_log_item { + struct xfs_log_item efd_item; + struct xfs_efi_log_item *efd_efip; + uint efd_next_extent; + xfs_efd_log_format_t efd_format; +}; + +struct btrfs_fid { + u64 objectid; + u64 root_objectid; + u32 gen; + u64 parent_objectid; + u32 parent_gen; + u64 parent_root_objectid; +} __attribute__((packed)); + +struct file_extent_cluster { + u64 start; + u64 end; + u64 boundary[128]; + unsigned int nr; + u64 owning_root; +}; + +struct mapping_tree { + struct rb_root rb_root; + spinlock_t lock; +}; + +enum reloc_stage { + MOVE_DATA_EXTENTS = 0, + UPDATE_DATA_PTRS = 1, +}; + +struct reloc_control { + struct btrfs_block_group *block_group; + struct btrfs_root *extent_root; + struct inode *data_inode; + struct btrfs_block_rsv *block_rsv; + struct btrfs_backref_cache backref_cache; + struct file_extent_cluster cluster; + struct extent_io_tree processed_blocks; + struct mapping_tree reloc_root_tree; + struct list_head reloc_roots; + struct list_head dirty_subvol_roots; + u64 merging_rsv_size; + u64 nodes_relocated; + u64 reserved_bytes; + u64 search_start; + u64 extents_found; + enum reloc_stage stage; + bool create_reloc_tree; + bool merge_reloc_tree; + bool found_file_extent; +}; + +struct mapping_node { + struct { + struct rb_node rb_node; + u64 bytenr; + }; + void *data; +}; + +struct tree_block { + struct { + struct rb_node rb_node; + u64 bytenr; + }; + u64 owner; + struct btrfs_key key; + u8 level; + bool key_ready; +}; + +struct inode_entry { + struct list_head list; + struct inode *inode; +}; + +struct gc_inode_list { + struct list_head ilist; + struct xarray iroot; +}; + +struct victim_entry { + struct rb_node rb_node; + long long unsigned int mtime; + unsigned int segno; + struct list_head list; +}; + +struct z_erofs_gbuf { + spinlock_t lock; + void *ptr; + struct page **pages; + unsigned int nrpages; +}; + +struct mqueue_fs_context { + struct ipc_namespace *ipc_ns; + bool newns; +}; + +struct posix_msg_tree_node { + struct rb_node rb_node; + struct list_head msg_list; + int priority; +}; + +struct ext_wait_queue { + struct task_struct *task; + struct list_head list; + struct msg_msg *msg; + int state; +}; + +struct mqueue_inode_info { + spinlock_t lock; + struct inode vfs_inode; + wait_queue_head_t wait_q; + struct rb_root msg_tree; + struct rb_node *msg_tree_rightmost; + struct posix_msg_tree_node *node_cache; + struct mq_attr attr; + struct sigevent notify; + struct pid *notify_owner; + u32 notify_self_exec_id; + struct user_namespace *notify_user_ns; + struct ucounts *ucounts; + struct sock *notify_sock; + struct sk_buff *notify_cookie; + struct ext_wait_queue e_wait_q[2]; + long unsigned int qsize; +}; + +enum blake2b_lengths { + BLAKE2B_BLOCK_SIZE = 128, + BLAKE2B_HASH_SIZE = 64, + BLAKE2B_KEY_SIZE = 64, + BLAKE2B_160_HASH_SIZE = 20, + BLAKE2B_256_HASH_SIZE = 32, + BLAKE2B_384_HASH_SIZE = 48, + BLAKE2B_512_HASH_SIZE = 64, +}; + +struct blake2b_state { + u64 h[8]; + u64 t[2]; + u64 f[2]; + u8 buf[128]; + unsigned int buflen; + unsigned int outlen; +}; + +enum blake2b_iv { + BLAKE2B_IV0 = 7640891576956012808ULL, + BLAKE2B_IV1 = 13503953896175478587ULL, + BLAKE2B_IV2 = 4354685564936845355ULL, + BLAKE2B_IV3 = 11912009170470909681ULL, + BLAKE2B_IV4 = 5840696475078001361ULL, + BLAKE2B_IV5 = 11170449401992604703ULL, + BLAKE2B_IV6 = 2270897969802886507ULL, + BLAKE2B_IV7 = 6620516959819538809ULL, +}; + +typedef void (*blake2b_compress_t)(struct blake2b_state *, const u8 *, size_t, u32); + +struct blake2b_tfm_ctx { + u8 key[64]; + unsigned int keylen; +}; + +struct xts_tfm_ctx { + struct crypto_skcipher *child; + struct crypto_cipher *tweak; +}; + +struct xts_instance_ctx { + struct crypto_skcipher_spawn spawn; + struct crypto_cipher_spawn tweak_spawn; +}; + +struct xts_request_ctx { + le128 t; + struct scatterlist *tail; + struct scatterlist sg[2]; + struct skcipher_request subreq; +}; + +struct lzorle_ctx { + void *lzorle_comp_mem; +}; + +struct rng_ctx { + unsigned int len; + struct crypto_rng *drng; + u8 *addtl; + size_t addtl_len; +}; + +struct rng_parent_ctx { + struct crypto_rng *drng; + u8 *entropy; +}; + +enum io_uring_register_pbuf_ring_flags { + IOU_PBUF_RING_MMAP = 1, + IOU_PBUF_RING_INC = 2, +}; + +struct io_uring_buf_reg { + __u64 ring_addr; + __u32 ring_entries; + __u16 bgid; + __u16 flags; + __u64 resv[3]; +}; + +struct io_uring_buf_status { + __u32 buf_group; + __u32 head; + __u32 resv[8]; +}; + +enum { + KBUF_MODE_EXPAND = 1, + KBUF_MODE_FREE = 2, +}; + +struct buf_sel_arg { + struct iovec *iovs; + size_t out_len; + size_t max_len; + short unsigned int nr_iovs; + short unsigned int mode; + short unsigned int partial_map; +}; + +struct io_provide_buf { + struct file *file; + __u64 addr; + __u32 len; + __u32 bgid; + __u32 nbufs; + __u16 bid; +}; + +struct io_nop { + struct file *file; + int result; +}; + +struct epoll_event { + __poll_t events; + __u64 data; +}; + +struct io_epoll { + struct file *file; + int epfd; + int op; + int fd; + struct epoll_event event; +}; + +struct io_futex { + struct file *file; + union { + u32 *uaddr; + struct futex_waitv *uwaitv; + }; + long unsigned int futex_val; + long unsigned int futex_mask; + long unsigned int futexv_owned; + u32 futex_flags; + unsigned int futex_nr; + bool futexv_unqueued; +}; + +struct io_futex_data { + struct futex_q q; + struct io_kiocb *req; +}; + +typedef enum { + ZSTD_noDict = 0, + ZSTD_extDict = 1, + ZSTD_dictMatchState = 2, + ZSTD_dedicatedDictSearch = 3, +} ZSTD_dictMode_e; + +typedef U64 ZSTD_VecMask; + +typedef enum { + search_hashChain = 0, + search_binaryTree = 1, + search_rowHash = 2, +} searchMethod_e; + +struct pcim_iomap_devres { + void *table[11]; +}; + +struct pcim_intx_devres { + int orig_intx; +}; + +enum pcim_addr_devres_type { + PCIM_ADDR_DEVRES_TYPE_INVALID = 0, + PCIM_ADDR_DEVRES_TYPE_REGION = 1, + PCIM_ADDR_DEVRES_TYPE_REGION_MAPPING = 2, + PCIM_ADDR_DEVRES_TYPE_MAPPING = 3, +}; + +struct pcim_addr_devres { + enum pcim_addr_devres_type type; + void *baseaddr; + long unsigned int offset; + long unsigned int len; + int bar; +}; + +struct u32_fract { + __u32 numerator; + __u32 denominator; +}; + +struct clk_fractional_divider { + struct clk_hw hw; + void *reg; + u8 mshift; + u8 mwidth; + u8 nshift; + u8 nwidth; + u8 flags; + void (*approximation)(struct clk_hw *, long unsigned int, long unsigned int *, long unsigned int *, long unsigned int *); + spinlock_t *lock; +}; + +struct unipair { + short unsigned int unicode; + short unsigned int fontpos; +}; + +struct unimapdesc { + short unsigned int entry_ct; + struct unipair *entries; +}; + +struct console_font_op { + unsigned int op; + unsigned int flags; + unsigned int width; + unsigned int height; + unsigned int charcount; + unsigned char *data; +}; + +struct vt_stat { + short unsigned int v_active; + short unsigned int v_signal; + short unsigned int v_state; +}; + +struct vt_sizes { + short unsigned int v_rows; + short unsigned int v_cols; + short unsigned int v_scrollsize; +}; + +struct vt_consize { + short unsigned int v_rows; + short unsigned int v_cols; + short unsigned int v_vlin; + short unsigned int v_clin; + short unsigned int v_vcol; + short unsigned int v_ccol; +}; + +struct vt_event { + unsigned int event; + unsigned int oldev; + unsigned int newev; + unsigned int pad[4]; +}; + +struct vt_setactivate { + unsigned int console; + struct vt_mode mode; +}; + +struct vt_event_wait { + struct list_head list; + struct vt_event event; + int done; +}; + +enum pci_ers_result { + PCI_ERS_RESULT_NONE = 1, + PCI_ERS_RESULT_CAN_RECOVER = 2, + PCI_ERS_RESULT_NEED_RESET = 3, + PCI_ERS_RESULT_DISCONNECT = 4, + PCI_ERS_RESULT_RECOVERED = 5, + PCI_ERS_RESULT_NO_AER_DRIVER = 6, +}; + +struct pciserial_board { + unsigned int flags; + unsigned int num_ports; + unsigned int base_baud; + unsigned int uart_offset; + unsigned int reg_shift; + unsigned int first_offset; +}; + +struct serial_private; + +struct pci_serial_quirk { + u32 vendor; + u32 device; + u32 subvendor; + u32 subdevice; + int (*probe)(struct pci_dev *); + int (*init)(struct pci_dev *); + int (*setup)(struct serial_private *, const struct pciserial_board *, struct uart_8250_port *, int); + void (*exit)(struct pci_dev *); +}; + +struct serial_private { + struct pci_dev *dev; + unsigned int nr; + struct pci_serial_quirk *quirk; + const struct pciserial_board *board; + int line[0]; +}; + +struct f815xxa_data { + spinlock_t lock; + int idx; +}; + +struct timedia_struct { + int num; + const short unsigned int *ids; +}; + +enum { + MOXA_SUPP_RS232 = 1, + MOXA_SUPP_RS422 = 2, + MOXA_SUPP_RS485 = 4, +}; + +enum pci_board_num_t { + pbn_default = 0, + pbn_b0_1_115200 = 1, + pbn_b0_2_115200 = 2, + pbn_b0_4_115200 = 3, + pbn_b0_5_115200 = 4, + pbn_b0_8_115200 = 5, + pbn_b0_1_921600 = 6, + pbn_b0_2_921600 = 7, + pbn_b0_4_921600 = 8, + pbn_b0_2_1130000 = 9, + pbn_b0_4_1152000 = 10, + pbn_b0_4_1250000 = 11, + pbn_b0_2_1843200 = 12, + pbn_b0_4_1843200 = 13, + pbn_b0_1_15625000 = 14, + pbn_b0_bt_1_115200 = 15, + pbn_b0_bt_2_115200 = 16, + pbn_b0_bt_4_115200 = 17, + pbn_b0_bt_8_115200 = 18, + pbn_b0_bt_1_460800 = 19, + pbn_b0_bt_2_460800 = 20, + pbn_b0_bt_4_460800 = 21, + pbn_b0_bt_1_921600 = 22, + pbn_b0_bt_2_921600 = 23, + pbn_b0_bt_4_921600 = 24, + pbn_b0_bt_8_921600 = 25, + pbn_b1_1_115200 = 26, + pbn_b1_2_115200 = 27, + pbn_b1_4_115200 = 28, + pbn_b1_8_115200 = 29, + pbn_b1_16_115200 = 30, + pbn_b1_1_921600 = 31, + pbn_b1_2_921600 = 32, + pbn_b1_4_921600 = 33, + pbn_b1_8_921600 = 34, + pbn_b1_2_1250000 = 35, + pbn_b1_bt_1_115200 = 36, + pbn_b1_bt_2_115200 = 37, + pbn_b1_bt_4_115200 = 38, + pbn_b1_bt_2_921600 = 39, + pbn_b1_1_1382400 = 40, + pbn_b1_2_1382400 = 41, + pbn_b1_4_1382400 = 42, + pbn_b1_8_1382400 = 43, + pbn_b2_1_115200 = 44, + pbn_b2_2_115200 = 45, + pbn_b2_4_115200 = 46, + pbn_b2_8_115200 = 47, + pbn_b2_1_460800 = 48, + pbn_b2_4_460800 = 49, + pbn_b2_8_460800 = 50, + pbn_b2_16_460800 = 51, + pbn_b2_1_921600 = 52, + pbn_b2_4_921600 = 53, + pbn_b2_8_921600 = 54, + pbn_b2_8_1152000 = 55, + pbn_b2_bt_1_115200 = 56, + pbn_b2_bt_2_115200 = 57, + pbn_b2_bt_4_115200 = 58, + pbn_b2_bt_2_921600 = 59, + pbn_b2_bt_4_921600 = 60, + pbn_b3_2_115200 = 61, + pbn_b3_4_115200 = 62, + pbn_b3_8_115200 = 63, + pbn_b4_bt_2_921600 = 64, + pbn_b4_bt_4_921600 = 65, + pbn_b4_bt_8_921600 = 66, + pbn_panacom = 67, + pbn_panacom2 = 68, + pbn_panacom4 = 69, + pbn_plx_romulus = 70, + pbn_oxsemi = 71, + pbn_oxsemi_1_15625000 = 72, + pbn_oxsemi_2_15625000 = 73, + pbn_oxsemi_4_15625000 = 74, + pbn_oxsemi_8_15625000 = 75, + pbn_intel_i960 = 76, + pbn_sgi_ioc3 = 77, + pbn_computone_4 = 78, + pbn_computone_6 = 79, + pbn_computone_8 = 80, + pbn_sbsxrsio = 81, + pbn_pasemi_1682M = 82, + pbn_ni8430_2 = 83, + pbn_ni8430_4 = 84, + pbn_ni8430_8 = 85, + pbn_ni8430_16 = 86, + pbn_ADDIDATA_PCIe_1_3906250 = 87, + pbn_ADDIDATA_PCIe_2_3906250 = 88, + pbn_ADDIDATA_PCIe_4_3906250 = 89, + pbn_ADDIDATA_PCIe_8_3906250 = 90, + pbn_ce4100_1_115200 = 91, + pbn_omegapci = 92, + pbn_NETMOS9900_2s_115200 = 93, + pbn_brcm_trumanage = 94, + pbn_fintek_4 = 95, + pbn_fintek_8 = 96, + pbn_fintek_12 = 97, + pbn_fintek_F81504A = 98, + pbn_fintek_F81508A = 99, + pbn_fintek_F81512A = 100, + pbn_wch382_2 = 101, + pbn_wch384_4 = 102, + pbn_wch384_8 = 103, + pbn_sunix_pci_1s = 104, + pbn_sunix_pci_2s = 105, + pbn_sunix_pci_4s = 106, + pbn_sunix_pci_8s = 107, + pbn_sunix_pci_16s = 108, + pbn_titan_1_4000000 = 109, + pbn_titan_2_4000000 = 110, + pbn_titan_4_4000000 = 111, + pbn_titan_8_4000000 = 112, + pbn_moxa_2 = 113, + pbn_moxa_4 = 114, + pbn_moxa_8 = 115, +}; + +struct drm_mode_crtc_lut { + __u32 crtc_id; + __u32 gamma_size; + __u64 red; + __u64 green; + __u64 blue; +}; + +struct drm_color_lut { + __u16 red; + __u16 green; + __u16 blue; + __u16 reserved; +}; + +enum drm_color_lut_tests { + DRM_COLOR_LUT_EQUAL_CHANNELS = 1, + DRM_COLOR_LUT_NON_DECREASING = 2, +}; + +struct drm_print_iterator { + void *data; + ssize_t start; + ssize_t remain; + ssize_t offset; +}; + +struct subsys_private { + struct kset subsys; + struct kset *devices_kset; + struct list_head interfaces; + struct mutex mutex; + struct kset *drivers_kset; + struct klist klist_devices; + struct klist klist_drivers; + struct blocking_notifier_head bus_notifier; + unsigned int drivers_autoprobe: 1; + const struct bus_type *bus; + struct device *dev_root; + struct kset glue_dirs; + const struct class *class; + struct lock_class_key lock_key; +}; + +struct subsys_interface { + const char *name; + const struct bus_type *subsys; + struct list_head node; + int (*add_dev)(struct device *, struct subsys_interface *); + void (*remove_dev)(struct device *, struct subsys_interface *); +}; + +struct subsys_dev_iter { + struct klist_iter ki; + const struct device_type *type; +}; + +struct reg_field { + unsigned int reg; + unsigned int lsb; + unsigned int msb; + unsigned int id_size; + unsigned int id_offset; +}; + +struct regmap_field { + struct regmap *regmap; + unsigned int mask; + unsigned int shift; + unsigned int reg; + unsigned int id_size; + unsigned int id_offset; +}; + +struct trace_event_raw_regmap_reg { + struct trace_entry ent; + u32 __data_loc_name; + unsigned int reg; + unsigned int val; + char __data[0]; +}; + +struct trace_event_raw_regmap_bulk { + struct trace_entry ent; + u32 __data_loc_name; + unsigned int reg; + u32 __data_loc_buf; + int val_len; + char __data[0]; +}; + +struct trace_event_raw_regmap_block { + struct trace_entry ent; + u32 __data_loc_name; + unsigned int reg; + int count; + char __data[0]; +}; + +struct trace_event_raw_regcache_sync { + struct trace_entry ent; + u32 __data_loc_name; + u32 __data_loc_status; + u32 __data_loc_type; + char __data[0]; +}; + +struct trace_event_raw_regmap_bool { + struct trace_entry ent; + u32 __data_loc_name; + int flag; + char __data[0]; +}; + +struct trace_event_raw_regmap_async { + struct trace_entry ent; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_regcache_drop_region { + struct trace_entry ent; + u32 __data_loc_name; + unsigned int from; + unsigned int to; + char __data[0]; +}; + +struct trace_event_data_offsets_regmap_reg { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_regmap_bulk { + u32 name; + const void *name_ptr_; + u32 buf; + const void *buf_ptr_; +}; + +struct trace_event_data_offsets_regmap_block { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_regcache_sync { + u32 name; + const void *name_ptr_; + u32 status; + const void *status_ptr_; + u32 type; + const void *type_ptr_; +}; + +struct trace_event_data_offsets_regmap_bool { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_regmap_async { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_regcache_drop_region { + u32 name; + const void *name_ptr_; +}; + +typedef void (*btf_trace_regmap_reg_write)(void *, struct regmap *, unsigned int, unsigned int); + +typedef void (*btf_trace_regmap_reg_read)(void *, struct regmap *, unsigned int, unsigned int); + +typedef void (*btf_trace_regmap_reg_read_cache)(void *, struct regmap *, unsigned int, unsigned int); + +typedef void (*btf_trace_regmap_bulk_write)(void *, struct regmap *, unsigned int, const void *, int); + +typedef void (*btf_trace_regmap_bulk_read)(void *, struct regmap *, unsigned int, const void *, int); + +typedef void (*btf_trace_regmap_hw_read_start)(void *, struct regmap *, unsigned int, int); + +typedef void (*btf_trace_regmap_hw_read_done)(void *, struct regmap *, unsigned int, int); + +typedef void (*btf_trace_regmap_hw_write_start)(void *, struct regmap *, unsigned int, int); + +typedef void (*btf_trace_regmap_hw_write_done)(void *, struct regmap *, unsigned int, int); + +typedef void (*btf_trace_regcache_sync)(void *, struct regmap *, const char *, const char *); + +typedef void (*btf_trace_regmap_cache_only)(void *, struct regmap *, bool); + +typedef void (*btf_trace_regmap_cache_bypass)(void *, struct regmap *, bool); + +typedef void (*btf_trace_regmap_async_write_start)(void *, struct regmap *, unsigned int, int); + +typedef void (*btf_trace_regmap_async_io_complete)(void *, struct regmap *); + +typedef void (*btf_trace_regmap_async_complete_start)(void *, struct regmap *); + +typedef void (*btf_trace_regmap_async_complete_done)(void *, struct regmap *); + +typedef void (*btf_trace_regcache_drop_region)(void *, struct regmap *, unsigned int, unsigned int); + +enum { + SCSI_DH_OK = 0, + SCSI_DH_DEV_FAILED = 1, + SCSI_DH_DEV_TEMP_BUSY = 2, + SCSI_DH_DEV_UNSUPP = 3, + SCSI_DH_DEVICE_MAX = 4, + SCSI_DH_NOTCONN = 5, + SCSI_DH_CONN_FAILURE = 6, + SCSI_DH_TRANSPORT_MAX = 7, + SCSI_DH_IO = 8, + SCSI_DH_INVALID_IO = 9, + SCSI_DH_RETRY = 10, + SCSI_DH_IMM_RETRY = 11, + SCSI_DH_TIMED_OUT = 12, + SCSI_DH_RES_TEMP_UNAVAIL = 13, + SCSI_DH_DEV_OFFLINED = 14, + SCSI_DH_NOMEM = 15, + SCSI_DH_NOSYS = 16, + SCSI_DH_DRIVER_MAX = 17, +}; + +struct scsi_dh_blist { + const char *vendor; + const char *model; + const char *driver; +}; + +struct bsd_dict { + union { + long unsigned int fcode; + struct { + short unsigned int prefix; + unsigned char suffix; + unsigned char pad; + } hs; + } f; + short unsigned int codem1; + short unsigned int cptr; +}; + +struct bsd_db { + int totlen; + unsigned int hsize; + unsigned char hshift; + unsigned char n_bits; + unsigned char maxbits; + unsigned char debug; + unsigned char unit; + short unsigned int seqno; + unsigned int mru; + unsigned int maxmaxcode; + unsigned int max_ent; + unsigned int in_count; + unsigned int bytes_out; + unsigned int ratio; + unsigned int checkpoint; + unsigned int clear_count; + unsigned int incomp_count; + unsigned int incomp_bytes; + unsigned int uncomp_count; + unsigned int uncomp_bytes; + unsigned int comp_count; + unsigned int comp_bytes; + short unsigned int *lens; + struct bsd_dict *dict; +}; + +struct find_interface_arg { + int minor; + struct device_driver *drv; +}; + +struct each_dev_arg { + void *data; + int (*fn)(struct usb_device *, void *); +}; + +struct dbc_regs { + __le32 capability; + __le32 doorbell; + __le32 ersts; + __le32 __reserved_0; + __le64 erstba; + __le64 erdp; + __le32 control; + __le32 status; + __le32 portsc; + __le32 __reserved_1; + __le64 dccp; + __le32 devinfo1; + __le32 devinfo2; +}; + +struct dbc_str_descs { + char string0[64]; + char manufacturer[64]; + char product[64]; + char serial[64]; +}; + +enum dbc_state { + DS_DISABLED = 0, + DS_INITIALIZED = 1, + DS_ENABLED = 2, + DS_CONNECTED = 3, + DS_CONFIGURED = 4, + DS_MAX = 5, +}; + +struct xhci_dbc; + +struct dbc_ep { + struct xhci_dbc *dbc; + struct list_head list_pending; + struct xhci_ring *ring; + unsigned int direction: 1; + unsigned int halted: 1; +}; + +struct dbc_driver; + +struct xhci_dbc { + spinlock_t lock; + struct device *dev; + struct xhci_hcd *xhci; + struct dbc_regs *regs; + struct xhci_ring *ring_evt; + struct xhci_ring *ring_in; + struct xhci_ring *ring_out; + struct xhci_erst erst; + struct xhci_container_ctx *ctx; + struct dbc_str_descs *string; + dma_addr_t string_dma; + size_t string_size; + u16 idVendor; + u16 idProduct; + u16 bcdDevice; + u8 bInterfaceProtocol; + enum dbc_state state; + struct delayed_work event_work; + unsigned int poll_interval; + long unsigned int xfer_timestamp; + unsigned int resume_required: 1; + struct dbc_ep eps[2]; + const struct dbc_driver *driver; + void *priv; +}; + +struct dbc_driver { + int (*configure)(struct xhci_dbc *); + void (*disconnect)(struct xhci_dbc *); +}; + +struct dbc_request { + void *buf; + unsigned int length; + dma_addr_t dma; + void (*complete)(struct xhci_dbc *, struct dbc_request *); + struct list_head list_pool; + int status; + unsigned int actual; + struct xhci_dbc *dbc; + struct list_head list_pending; + dma_addr_t trb_dma; + union xhci_trb *trb; + unsigned int direction: 1; +}; + +struct trace_event_raw_xhci_log_msg { + struct trace_entry ent; + u32 __data_loc_msg; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_ctx { + struct trace_entry ent; + int ctx_64; + unsigned int ctx_type; + dma_addr_t ctx_dma; + u8 *ctx_va; + unsigned int ctx_ep_num; + u32 __data_loc_ctx_data; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_trb { + struct trace_entry ent; + u32 type; + u32 field0; + u32 field1; + u32 field2; + u32 field3; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_free_virt_dev { + struct trace_entry ent; + void *vdev; + long long unsigned int out_ctx; + long long unsigned int in_ctx; + int slot_id; + u16 current_mel; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_virt_dev { + struct trace_entry ent; + void *vdev; + long long unsigned int out_ctx; + long long unsigned int in_ctx; + int devnum; + int state; + int speed; + u8 portnum; + u8 level; + int slot_id; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_urb { + struct trace_entry ent; + u32 __data_loc_devname; + void *urb; + unsigned int pipe; + unsigned int stream; + int status; + unsigned int flags; + int num_mapped_sgs; + int num_sgs; + int length; + int actual; + int epnum; + int dir_in; + int type; + int slot_id; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_ep_ctx { + struct trace_entry ent; + u32 info; + u32 info2; + u64 deq; + u32 tx_info; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_slot_ctx { + struct trace_entry ent; + u32 info; + u32 info2; + u32 tt_info; + u32 state; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_ctrl_ctx { + struct trace_entry ent; + u32 drop; + u32 add; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_ring { + struct trace_entry ent; + u32 type; + void *ring; + dma_addr_t enq; + dma_addr_t deq; + dma_addr_t enq_seg; + dma_addr_t deq_seg; + unsigned int num_segs; + unsigned int stream_id; + unsigned int cycle_state; + unsigned int bounce_buf_len; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_portsc { + struct trace_entry ent; + u32 busnum; + u32 portnum; + u32 portsc; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_doorbell { + struct trace_entry ent; + u32 slot; + u32 doorbell; + char __data[0]; +}; + +struct trace_event_raw_xhci_dbc_log_request { + struct trace_entry ent; + struct dbc_request *req; + bool dir; + unsigned int actual; + unsigned int length; + int status; + char __data[0]; +}; + +struct trace_event_data_offsets_xhci_log_msg { + u32 msg; + const void *msg_ptr_; +}; + +struct trace_event_data_offsets_xhci_log_ctx { + u32 ctx_data; + const void *ctx_data_ptr_; +}; + +struct trace_event_data_offsets_xhci_log_trb {}; + +struct trace_event_data_offsets_xhci_log_free_virt_dev {}; + +struct trace_event_data_offsets_xhci_log_virt_dev {}; + +struct trace_event_data_offsets_xhci_log_urb { + u32 devname; + const void *devname_ptr_; +}; + +struct trace_event_data_offsets_xhci_log_ep_ctx {}; + +struct trace_event_data_offsets_xhci_log_slot_ctx {}; + +struct trace_event_data_offsets_xhci_log_ctrl_ctx {}; + +struct trace_event_data_offsets_xhci_log_ring {}; + +struct trace_event_data_offsets_xhci_log_portsc {}; + +struct trace_event_data_offsets_xhci_log_doorbell {}; + +struct trace_event_data_offsets_xhci_dbc_log_request {}; + +typedef void (*btf_trace_xhci_dbg_address)(void *, struct va_format *); + +typedef void (*btf_trace_xhci_dbg_context_change)(void *, struct va_format *); + +typedef void (*btf_trace_xhci_dbg_quirks)(void *, struct va_format *); + +typedef void (*btf_trace_xhci_dbg_reset_ep)(void *, struct va_format *); + +typedef void (*btf_trace_xhci_dbg_cancel_urb)(void *, struct va_format *); + +typedef void (*btf_trace_xhci_dbg_init)(void *, struct va_format *); + +typedef void (*btf_trace_xhci_dbg_ring_expansion)(void *, struct va_format *); + +typedef void (*btf_trace_xhci_address_ctx)(void *, struct xhci_hcd *, struct xhci_container_ctx *, unsigned int); + +typedef void (*btf_trace_xhci_handle_event)(void *, struct xhci_ring *, struct xhci_generic_trb *); + +typedef void (*btf_trace_xhci_handle_command)(void *, struct xhci_ring *, struct xhci_generic_trb *); + +typedef void (*btf_trace_xhci_handle_transfer)(void *, struct xhci_ring *, struct xhci_generic_trb *); + +typedef void (*btf_trace_xhci_queue_trb)(void *, struct xhci_ring *, struct xhci_generic_trb *); + +typedef void (*btf_trace_xhci_dbc_handle_event)(void *, struct xhci_ring *, struct xhci_generic_trb *); + +typedef void (*btf_trace_xhci_dbc_handle_transfer)(void *, struct xhci_ring *, struct xhci_generic_trb *); + +typedef void (*btf_trace_xhci_dbc_gadget_ep_queue)(void *, struct xhci_ring *, struct xhci_generic_trb *); + +typedef void (*btf_trace_xhci_free_virt_device)(void *, struct xhci_virt_device *); + +typedef void (*btf_trace_xhci_alloc_virt_device)(void *, struct xhci_virt_device *); + +typedef void (*btf_trace_xhci_setup_device)(void *, struct xhci_virt_device *); + +typedef void (*btf_trace_xhci_setup_addressable_virt_device)(void *, struct xhci_virt_device *); + +typedef void (*btf_trace_xhci_stop_device)(void *, struct xhci_virt_device *); + +typedef void (*btf_trace_xhci_urb_enqueue)(void *, struct urb *); + +typedef void (*btf_trace_xhci_urb_giveback)(void *, struct urb *); + +typedef void (*btf_trace_xhci_urb_dequeue)(void *, struct urb *); + +typedef void (*btf_trace_xhci_handle_cmd_stop_ep)(void *, struct xhci_ep_ctx *); + +typedef void (*btf_trace_xhci_handle_cmd_set_deq_ep)(void *, struct xhci_ep_ctx *); + +typedef void (*btf_trace_xhci_handle_cmd_reset_ep)(void *, struct xhci_ep_ctx *); + +typedef void (*btf_trace_xhci_handle_cmd_config_ep)(void *, struct xhci_ep_ctx *); + +typedef void (*btf_trace_xhci_add_endpoint)(void *, struct xhci_ep_ctx *); + +typedef void (*btf_trace_xhci_alloc_dev)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_free_dev)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_handle_cmd_disable_slot)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_discover_or_reset_device)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_setup_device_slot)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_handle_cmd_addr_dev)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_handle_cmd_reset_dev)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_handle_cmd_set_deq)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_configure_endpoint)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_address_ctrl_ctx)(void *, struct xhci_input_control_ctx *); + +typedef void (*btf_trace_xhci_configure_endpoint_ctrl_ctx)(void *, struct xhci_input_control_ctx *); + +typedef void (*btf_trace_xhci_ring_alloc)(void *, struct xhci_ring *); + +typedef void (*btf_trace_xhci_ring_free)(void *, struct xhci_ring *); + +typedef void (*btf_trace_xhci_ring_expansion)(void *, struct xhci_ring *); + +typedef void (*btf_trace_xhci_inc_enq)(void *, struct xhci_ring *); + +typedef void (*btf_trace_xhci_inc_deq)(void *, struct xhci_ring *); + +typedef void (*btf_trace_xhci_handle_port_status)(void *, struct xhci_port *, u32); + +typedef void (*btf_trace_xhci_get_port_status)(void *, struct xhci_port *, u32); + +typedef void (*btf_trace_xhci_hub_status_data)(void *, struct xhci_port *, u32); + +typedef void (*btf_trace_xhci_ring_ep_doorbell)(void *, u32, u32); + +typedef void (*btf_trace_xhci_ring_host_doorbell)(void *, u32, u32); + +typedef void (*btf_trace_xhci_dbc_alloc_request)(void *, struct dbc_request *); + +typedef void (*btf_trace_xhci_dbc_free_request)(void *, struct dbc_request *); + +typedef void (*btf_trace_xhci_dbc_queue_request)(void *, struct dbc_request *); + +typedef void (*btf_trace_xhci_dbc_giveback_request)(void *, struct dbc_request *); + +struct edge_compatibility_bits { + __u32 VendEnableSuspend: 1; + __u32 VendUnused: 31; + __u32 IOSPOpen: 1; + __u32 IOSPClose: 1; + __u32 IOSPChase: 1; + __u32 IOSPSetRxFlow: 1; + __u32 IOSPSetTxFlow: 1; + __u32 IOSPSetXChar: 1; + __u32 IOSPRxCheck: 1; + __u32 IOSPSetClrBreak: 1; + __u32 IOSPWriteMCR: 1; + __u32 IOSPWriteLCR: 1; + __u32 IOSPSetBaudRate: 1; + __u32 IOSPDisableIntPipe: 1; + __u32 IOSPRxDataAvail: 1; + __u32 IOSPTxPurge: 1; + __u32 IOSPUnused: 18; + __u32 TrueEdgeport: 1; + __u32 GenUnused: 31; +}; + +struct edge_compatibility_descriptor { + __u8 Length; + __u8 DescType; + __u8 EpicVer; + __u8 NumPorts; + __u8 iDownloadFile; + __u8 Unused[3]; + __u8 MajorVersion; + __u8 MinorVersion; + __le16 BuildNumber; + struct edge_compatibility_bits Supports; +}; + +struct edge_manuf_descriptor { + __u16 RootDescTable[16]; + __u8 DescriptorArea[736]; + __u8 Length; + __u8 DescType; + __u8 DescVer; + __u8 NumRootDescEntries; + __u8 RomSize; + __u8 RamSize; + __u8 CpuRev; + __u8 BoardRev; + __u8 NumPorts; + __u8 DescDate[3]; + __u8 SerNumLength; + __u8 SerNumDescType; + __le16 SerialNumber[12]; + __u8 AssemblyNumLength; + __u8 AssemblyNumDescType; + __le16 AssemblyNumber[14]; + __u8 OemAssyNumLength; + __u8 OemAssyNumDescType; + __le16 OemAssyNumber[14]; + __u8 ManufDateLength; + __u8 ManufDateDescType; + __le16 ManufDate[6]; + __u8 Reserved3[77]; + __u8 UartType; + __u8 IonPid; + __u8 IonConfig; +}; + +struct edge_boot_descriptor { + __u8 Length; + __u8 DescType; + __u8 DescVer; + __u8 Reserved1; + __le16 BootCodeLength; + __u8 MajorVersion; + __u8 MinorVersion; + __le16 BuildNumber; + __u16 EnumRootDescTable; + __u8 NumDescTypes; + __u8 Reserved4; + __le16 Capabilities; + __u8 Reserved2[40]; + __u8 UConfig0; + __u8 UConfig1; + __u8 Reserved3[6]; +}; + +struct edgeport_product_info { + __u16 ProductId; + __u8 NumPorts; + __u8 ProdInfoVer; + __u32 IsServer: 1; + __u32 IsRS232: 1; + __u32 IsRS422: 1; + __u32 IsRS485: 1; + __u32 IsReserved: 28; + __u8 RomSize; + __u8 RamSize; + __u8 CpuRev; + __u8 BoardRev; + __u8 BootMajorVersion; + __u8 BootMinorVersion; + __le16 BootBuildNumber; + __u8 FirmwareMajorVersion; + __u8 FirmwareMinorVersion; + __le16 FirmwareBuildNumber; + __u8 ManufactureDescDate[3]; + __u8 HardwareType; + __u8 iDownloadFile; + __u8 EpicVer; + struct edge_compatibility_bits Epic; +}; + +enum RXSTATE { + EXPECT_HDR1 = 0, + EXPECT_HDR2 = 1, + EXPECT_DATA = 2, + EXPECT_HDR3 = 3, +}; + +struct TxFifo { + unsigned int head; + unsigned int tail; + unsigned int count; + unsigned int size; + unsigned char *fifo; +}; + +struct edgeport_port___2 { + __u16 txCredits; + __u16 maxTxCredits; + struct TxFifo txfifo; + struct urb *write_urb; + bool write_in_progress; + spinlock_t ep_lock; + __u8 shadowLCR; + __u8 shadowMCR; + __u8 shadowMSR; + __u8 shadowLSR; + __u8 shadowXonChar; + __u8 shadowXoffChar; + __u8 validDataMask; + __u32 baudRate; + bool open; + bool openPending; + bool commandPending; + bool closePending; + bool chaseResponsePending; + wait_queue_head_t wait_chase; + wait_queue_head_t wait_open; + wait_queue_head_t wait_command; + struct usb_serial_port *port; +}; + +struct edgeport_serial___2 { + char name[66]; + struct edge_manuf_descriptor manuf_descriptor; + struct edge_boot_descriptor boot_descriptor; + struct edgeport_product_info product_info; + struct edge_compatibility_descriptor epic_descriptor; + int is_epic; + __u8 interrupt_in_endpoint; + unsigned char *interrupt_in_buffer; + struct urb *interrupt_read_urb; + __u8 bulk_in_endpoint; + unsigned char *bulk_in_buffer; + struct urb *read_urb; + bool read_in_progress; + spinlock_t es_lock; + __u8 bulk_out_endpoint; + __s16 rxBytesAvail; + enum RXSTATE rxState; + __u8 rxHeader1; + __u8 rxHeader2; + __u8 rxHeader3; + __u8 rxPort; + __u8 rxStatusCode; + __u8 rxStatusParam; + __s16 rxBytesRemaining; + struct usb_serial *serial; +}; + +struct divisor_table_entry___2 { + __u32 BaudRate; + __u16 Divisor; +}; + +struct ti_uart_config { + __be16 wBaudRate; + __be16 wFlags; + u8 bDataBits; + u8 bParity; + u8 bStopBits; + char cXon; + char cXoff; + u8 bUartMode; +}; + +struct ti_port_status { + u8 bCmdCode; + u8 bModuleId; + u8 bErrorCode; + u8 bMSR; + u8 bLSR; +}; + +struct ti_write_data_bytes { + u8 bAddrType; + u8 bDataType; + u8 bDataCounter; + __be16 wBaseAddrHi; + __be16 wBaseAddrLo; + u8 bData[0]; +} __attribute__((packed)); + +struct ti_firmware_header { + __le16 wLength; + u8 bCheckSum; +} __attribute__((packed)); + +struct ti_device; + +struct ti_port { + int tp_is_open; + u8 tp_msr; + u8 tp_shadow_mcr; + u8 tp_uart_mode; + unsigned int tp_uart_base_addr; + struct ti_device *tp_tdev; + struct usb_serial_port *tp_port; + spinlock_t tp_lock; + int tp_read_urb_state; + int tp_write_urb_in_use; +}; + +struct ti_device { + struct mutex td_open_close_lock; + int td_open_port_count; + struct usb_serial *td_serial; + int td_is_3410; + bool td_rs485_only; +}; + +struct input_mask { + __u32 type; + __u32 codes_size; + __u64 codes_ptr; +}; + +struct evdev_client; + +struct evdev { + int open; + struct input_handle handle; + struct evdev_client *grab; + struct list_head client_list; + spinlock_t client_lock; + struct mutex mutex; + struct device dev; + struct cdev cdev; + bool exist; +}; + +struct evdev_client { + unsigned int head; + unsigned int tail; + unsigned int packet_head; + spinlock_t buffer_lock; + wait_queue_head_t wait; + struct fasync_struct *fasync; + struct evdev *evdev; + struct list_head node; + enum input_clock_type clk_type; + bool revoked; + long unsigned int *evmasks[32]; + unsigned int bufsize; + struct input_event buffer[0]; +}; + +struct dm_io_client { + mempool_t pool; + struct bio_set bios; +}; + +struct io { + long unsigned int error_bits; + atomic_t count; + struct dm_io_client *client; + io_notify_fn callback; + void *context; + void *vma_invalidate_address; + long unsigned int vma_invalidate_size; + long: 64; +}; + +struct dpages { + void (*get_page)(struct dpages *, struct page **, long unsigned int *, unsigned int *); + void (*next_page)(struct dpages *); + union { + unsigned int context_u; + struct bvec_iter context_bi; + }; + void *context_ptr; + void *vma_invalidate_address; + long unsigned int vma_invalidate_size; +}; + +struct sync_io { + long unsigned int error_bits; + struct completion wait; +}; + +struct arm_pmu; + +struct pmu_hw_events { + struct perf_event *events[33]; + long unsigned int used_mask[1]; + struct arm_pmu *percpu_pmu; + int irq; +}; + +struct arm_pmu { + struct pmu pmu; + cpumask_t supported_cpus; + char *name; + int pmuver; + irqreturn_t (*handle_irq)(struct arm_pmu *); + void (*enable)(struct perf_event *); + void (*disable)(struct perf_event *); + int (*get_event_idx)(struct pmu_hw_events *, struct perf_event *); + void (*clear_event_idx)(struct pmu_hw_events *, struct perf_event *); + int (*set_event_filter)(struct hw_perf_event *, struct perf_event_attr *); + u64 (*read_counter)(struct perf_event *); + void (*write_counter)(struct perf_event *, u64); + void (*start)(struct arm_pmu *); + void (*stop)(struct arm_pmu *); + void (*reset)(void *); + int (*map_event)(struct perf_event *); + long unsigned int cntr_mask[1]; + bool secure_access; + long unsigned int pmceid_bitmap[1]; + long unsigned int pmceid_ext_bitmap[1]; + struct platform_device *plat_device; + struct pmu_hw_events *hw_events; + struct hlist_node node; + struct notifier_block cpu_pm_nb; + const struct attribute_group *attr_groups[5]; + u64 reg_pmmir; + long unsigned int acpi_cpuid; +}; + +typedef int (*armpmu_init_fn)(struct arm_pmu *); + +struct pmu_probe_info { + unsigned int cpuid; + unsigned int mask; + armpmu_init_fn init; +}; + +struct fib_notifier_net { + struct list_head fib_notifier_ops; + struct atomic_notifier_head fib_chain; +}; + +enum ethtool_test_flags { + ETH_TEST_FL_OFFLINE = 1, + ETH_TEST_FL_FAILED = 2, + ETH_TEST_FL_EXTERNAL_LB = 4, + ETH_TEST_FL_EXTERNAL_LB_DONE = 8, +}; + +struct net_packet_attrs { + const unsigned char *src; + const unsigned char *dst; + u32 ip_src; + u32 ip_dst; + bool tcp; + u16 sport; + u16 dport; + int timeout; + int size; + int max_size; + u8 id; + u16 queue_mapping; +}; + +struct net_test_priv { + struct net_packet_attrs *packet; + struct packet_type pt; + struct completion comp; + int double_vlan; + int vlan_id; + int ok; +}; + +struct netsfhdr { + __be32 version; + __be64 magic; + u8 id; +} __attribute__((packed)); + +struct net_test { + char name[32]; + int (*fn)(struct net_device *); +}; + +struct sch_frag_data { + long unsigned int dst; + struct qdisc_skb_cb cb; + __be16 inner_protocol; + u16 vlan_tci; + __be16 vlan_proto; + unsigned int l2_len; + u8 l2_data[18]; + int (*xmit)(struct sk_buff *); +}; + +struct tc_tbf_qopt { + struct tc_ratespec rate; + struct tc_ratespec peakrate; + __u32 limit; + __u32 buffer; + __u32 mtu; +}; + +enum { + TCA_TBF_UNSPEC = 0, + TCA_TBF_PARMS = 1, + TCA_TBF_RTAB = 2, + TCA_TBF_PTAB = 3, + TCA_TBF_RATE64 = 4, + TCA_TBF_PRATE64 = 5, + TCA_TBF_BURST = 6, + TCA_TBF_PBURST = 7, + TCA_TBF_PAD = 8, + __TCA_TBF_MAX = 9, +}; + +enum tc_tbf_command { + TC_TBF_REPLACE = 0, + TC_TBF_DESTROY = 1, + TC_TBF_STATS = 2, + TC_TBF_GRAFT = 3, +}; + +struct tc_tbf_qopt_offload_replace_params { + struct psched_ratecfg rate; + u32 max_size; + struct gnet_stats_queue *qstats; +}; + +struct tc_tbf_qopt_offload { + enum tc_tbf_command command; + u32 handle; + u32 parent; + union { + struct tc_tbf_qopt_offload_replace_params replace_params; + struct tc_qopt_offload_stats stats; + u32 child_handle; + }; +}; + +struct tbf_sched_data { + u32 limit; + u32 max_size; + s64 buffer; + s64 mtu; + struct psched_ratecfg rate; + struct psched_ratecfg peak; + s64 tokens; + s64 ptokens; + s64 t_c; + struct Qdisc *qdisc; + struct qdisc_watchdog watchdog; +}; + +enum { + FLOW_KEY_SRC = 0, + FLOW_KEY_DST = 1, + FLOW_KEY_PROTO = 2, + FLOW_KEY_PROTO_SRC = 3, + FLOW_KEY_PROTO_DST = 4, + FLOW_KEY_IIF = 5, + FLOW_KEY_PRIORITY = 6, + FLOW_KEY_MARK = 7, + FLOW_KEY_NFCT = 8, + FLOW_KEY_NFCT_SRC = 9, + FLOW_KEY_NFCT_DST = 10, + FLOW_KEY_NFCT_PROTO_SRC = 11, + FLOW_KEY_NFCT_PROTO_DST = 12, + FLOW_KEY_RTCLASSID = 13, + FLOW_KEY_SKUID = 14, + FLOW_KEY_SKGID = 15, + FLOW_KEY_VLAN_TAG = 16, + FLOW_KEY_RXHASH = 17, + __FLOW_KEY_MAX = 18, +}; + +enum { + FLOW_MODE_MAP = 0, + FLOW_MODE_HASH = 1, +}; + +enum { + TCA_FLOW_UNSPEC = 0, + TCA_FLOW_KEYS = 1, + TCA_FLOW_MODE = 2, + TCA_FLOW_BASECLASS = 3, + TCA_FLOW_RSHIFT = 4, + TCA_FLOW_ADDEND = 5, + TCA_FLOW_MASK = 6, + TCA_FLOW_XOR = 7, + TCA_FLOW_DIVISOR = 8, + TCA_FLOW_ACT = 9, + TCA_FLOW_POLICE = 10, + TCA_FLOW_EMATCHES = 11, + TCA_FLOW_PERTURB = 12, + __TCA_FLOW_MAX = 13, +}; + +struct flow_head { + struct list_head filters; + struct callback_head rcu; +}; + +struct flow_filter { + struct list_head list; + struct tcf_exts exts; + struct tcf_ematch_tree ematches; + struct tcf_proto *tp; + struct timer_list perturb_timer; + u32 perturb_period; + u32 handle; + u32 nkeys; + u32 keymask; + u32 mode; + u32 mask; + u32 xor; + u32 rshift; + u32 addend; + u32 divisor; + u32 baseclass; + u32 hashrnd; + struct rcu_work rwork; +}; + +struct channels_reply_data { + struct ethnl_reply_data base; + struct ethtool_channels channels; +}; + +struct bpf_nf_link { + struct bpf_link link; + struct nf_hook_ops hook_ops; + netns_tracker ns_tracker; + struct net *net; + u32 dead; + const struct nf_defrag_hook *defrag_hook; +}; + +enum ctattr_timeout_generic { + CTA_TIMEOUT_GENERIC_UNSPEC = 0, + CTA_TIMEOUT_GENERIC_TIMEOUT = 1, + __CTA_TIMEOUT_GENERIC_MAX = 2, +}; + +struct nf_conn___init { + struct nf_conn ct; +}; + +struct bpf_ct_opts { + s32 netns_id; + s32 error; + u8 l4proto; + u8 dir; + u16 ct_zone_id; + u8 ct_zone_dir; + u8 reserved[3]; +}; + +enum { + NF_BPF_CT_OPTS_SZ = 16, +}; + +enum nft_immediate_attributes { + NFTA_IMMEDIATE_UNSPEC = 0, + NFTA_IMMEDIATE_DREG = 1, + NFTA_IMMEDIATE_DATA = 2, + __NFTA_IMMEDIATE_MAX = 3, +}; + +struct nft_immediate_expr { + struct nft_data data; + u8 dreg; + u8 dlen; +}; + +enum nft_ng_attributes { + NFTA_NG_UNSPEC = 0, + NFTA_NG_DREG = 1, + NFTA_NG_MODULUS = 2, + NFTA_NG_TYPE = 3, + NFTA_NG_OFFSET = 4, + NFTA_NG_SET_NAME = 5, + NFTA_NG_SET_ID = 6, + __NFTA_NG_MAX = 7, +}; + +enum nft_ng_types { + NFT_NG_INCREMENTAL = 0, + NFT_NG_RANDOM = 1, + __NFT_NG_MAX = 2, +}; + +struct nft_ng_inc { + u8 dreg; + u32 modulus; + atomic_t *counter; + u32 offset; +}; + +struct nft_ng_random { + u8 dreg; + u32 modulus; + u32 offset; +}; + +enum nft_log_attributes { + NFTA_LOG_UNSPEC = 0, + NFTA_LOG_GROUP = 1, + NFTA_LOG_PREFIX = 2, + NFTA_LOG_SNAPLEN = 3, + NFTA_LOG_QTHRESHOLD = 4, + NFTA_LOG_LEVEL = 5, + NFTA_LOG_FLAGS = 6, + __NFTA_LOG_MAX = 7, +}; + +enum nft_log_level { + NFT_LOGLEVEL_EMERG = 0, + NFT_LOGLEVEL_ALERT = 1, + NFT_LOGLEVEL_CRIT = 2, + NFT_LOGLEVEL_ERR = 3, + NFT_LOGLEVEL_WARNING = 4, + NFT_LOGLEVEL_NOTICE = 5, + NFT_LOGLEVEL_INFO = 6, + NFT_LOGLEVEL_DEBUG = 7, + NFT_LOGLEVEL_AUDIT = 8, + __NFT_LOGLEVEL_MAX = 9, +}; + +struct nft_log { + struct nf_loginfo loginfo; + char *prefix; +}; + +struct xt_nflog_info { + __u32 len; + __u16 group; + __u16 threshold; + __u16 flags; + __u16 pad; + char prefix[64]; +}; + +struct xt_ecn_info { + __u8 operation; + __u8 invert; + __u8 ip_ect; + union { + struct { + __u8 ect; + } tcp; + } proto; +}; + +struct xt_nfacct_match_info { + char name[32]; + struct nf_acct *nfacct; +}; + +struct xt_realm_info { + __u32 id; + __u32 mask; + __u8 invert; +}; + +struct hash_ip4_elem { + __be32 ip; +}; + +struct hash_ip4 { + struct htable *table; + struct htable_gc gc; + u32 maxelem; + u32 initval; + u8 bucketsize; + u8 netmask; + union nf_inet_addr bitmask; + struct list_head ad; + struct hash_ip4_elem next; +}; + +struct hash_ip4_resize_ad { + struct list_head list; + enum ipset_adt ad; + struct hash_ip4_elem d; + struct ip_set_ext ext; + struct ip_set_ext mext; + u32 flags; +}; + +struct hash_ip6_elem { + union nf_inet_addr ip; +}; + +struct hash_ip6 { + struct htable *table; + struct htable_gc gc; + u32 maxelem; + u32 initval; + u8 bucketsize; + u8 netmask; + union nf_inet_addr bitmask; + struct list_head ad; + struct hash_ip6_elem next; +}; + +struct hash_ip6_resize_ad { + struct list_head list; + enum ipset_adt ad; + struct hash_ip6_elem d; + struct ip_set_ext ext; + struct ip_set_ext mext; + u32 flags; +}; + +enum tcp_metric_index { + TCP_METRIC_RTT = 0, + TCP_METRIC_RTTVAR = 1, + TCP_METRIC_SSTHRESH = 2, + TCP_METRIC_CWND = 3, + TCP_METRIC_REORDERING = 4, + TCP_METRIC_RTT_US = 5, + TCP_METRIC_RTTVAR_US = 6, + __TCP_METRIC_MAX = 7, +}; + +enum { + TCP_METRICS_ATTR_UNSPEC = 0, + TCP_METRICS_ATTR_ADDR_IPV4 = 1, + TCP_METRICS_ATTR_ADDR_IPV6 = 2, + TCP_METRICS_ATTR_AGE = 3, + TCP_METRICS_ATTR_TW_TSVAL = 4, + TCP_METRICS_ATTR_TW_TS_STAMP = 5, + TCP_METRICS_ATTR_VALS = 6, + TCP_METRICS_ATTR_FOPEN_MSS = 7, + TCP_METRICS_ATTR_FOPEN_SYN_DROPS = 8, + TCP_METRICS_ATTR_FOPEN_SYN_DROP_TS = 9, + TCP_METRICS_ATTR_FOPEN_COOKIE = 10, + TCP_METRICS_ATTR_SADDR_IPV4 = 11, + TCP_METRICS_ATTR_SADDR_IPV6 = 12, + TCP_METRICS_ATTR_PAD = 13, + __TCP_METRICS_ATTR_MAX = 14, +}; + +enum { + TCP_METRICS_CMD_UNSPEC = 0, + TCP_METRICS_CMD_GET = 1, + TCP_METRICS_CMD_DEL = 2, + __TCP_METRICS_CMD_MAX = 3, +}; + +struct tcp_fastopen_metrics { + u16 mss; + u16 syn_loss: 10; + u16 try_exp: 2; + long unsigned int last_syn_loss; + struct tcp_fastopen_cookie cookie; +}; + +struct tcp_metrics_block { + struct tcp_metrics_block *tcpm_next; + struct net *tcpm_net; + struct inetpeer_addr tcpm_saddr; + struct inetpeer_addr tcpm_daddr; + long unsigned int tcpm_stamp; + u32 tcpm_lock; + u32 tcpm_vals[5]; + struct tcp_fastopen_metrics tcpm_fastopen; + struct callback_head callback_head; +}; + +struct tcpm_hash_bucket { + struct tcp_metrics_block *chain; +}; + +struct ipfrag_skb_cb { + union { + struct inet_skb_parm h4; + struct inet6_skb_parm h6; + }; + struct sk_buff *next_frag; + int frag_run_len; + int ip_defrag_offset; +}; + +struct ah_data { + int icv_full_len; + int icv_trunc_len; + struct crypto_ahash *ahash; +}; + +struct ah_skb_cb { + struct xfrm_skb_cb xfrm; + void *tmp; +}; + +enum { + XFRM_LOOKUP_ICMP = 1, + XFRM_LOOKUP_QUEUE = 2, + XFRM_LOOKUP_KEEP_DST_REF = 4, +}; + +struct xfrm_if_decode_session_result { + struct net *net; + u32 if_id; +}; + +struct xfrm_if_cb { + bool (*decode_session)(struct sk_buff *, short unsigned int, struct xfrm_if_decode_session_result *); +}; + +struct xfrm_flo { + struct dst_entry *dst_orig; + u8 flags; +}; + +struct xfrm_pol_inexact_node { + struct rb_node node; + union { + xfrm_address_t addr; + struct callback_head rcu; + }; + u8 prefixlen; + struct rb_root root; + struct hlist_head hhead; +}; + +struct xfrm_pol_inexact_key { + possible_net_t net; + u32 if_id; + u16 family; + u8 dir; + u8 type; +}; + +struct xfrm_pol_inexact_bin { + struct xfrm_pol_inexact_key k; + struct rhash_head head; + struct hlist_head hhead; + seqcount_spinlock_t count; + struct rb_root root_d; + struct rb_root root_s; + struct list_head inexact_bins; + struct callback_head rcu; +}; + +enum xfrm_pol_inexact_candidate_type { + XFRM_POL_CAND_BOTH = 0, + XFRM_POL_CAND_SADDR = 1, + XFRM_POL_CAND_DADDR = 2, + XFRM_POL_CAND_ANY = 3, + XFRM_POL_CAND_MAX = 4, +}; + +struct xfrm_pol_inexact_candidates { + struct hlist_head *res[4]; +}; + +struct xfrm_flow_keys { + struct flow_dissector_key_basic basic; + struct flow_dissector_key_control control; + union { + struct flow_dissector_key_ipv4_addrs ipv4; + struct flow_dissector_key_ipv6_addrs ipv6; + } addrs; + struct flow_dissector_key_ip ip; + struct flow_dissector_key_icmp icmp; + struct flow_dissector_key_ports ports; + struct flow_dissector_key_keyid gre; +}; + +struct ipv6_mreq { + struct in6_addr ipv6mr_multiaddr; + int ipv6mr_ifindex; +}; + +struct group_req { + __u32 gr_interface; + struct __kernel_sockaddr_storage gr_group; +}; + +struct compat_group_req { + __u32 gr_interface; + struct __kernel_sockaddr_storage gr_group; +} __attribute__((packed)); + +struct compat_group_source_req { + __u32 gsr_interface; + struct __kernel_sockaddr_storage gsr_group; + struct __kernel_sockaddr_storage gsr_source; +} __attribute__((packed)); + +struct compat_group_filter { + union { + struct { + __u32 gf_interface_aux; + struct __kernel_sockaddr_storage gf_group_aux; + __u32 gf_fmode_aux; + __u32 gf_numsrc_aux; + struct __kernel_sockaddr_storage gf_slist[1]; + } __attribute__((packed)); + struct { + __u32 gf_interface; + struct __kernel_sockaddr_storage gf_group; + __u32 gf_fmode; + __u32 gf_numsrc; + struct __kernel_sockaddr_storage gf_slist_flex[0]; + } __attribute__((packed)); + }; +}; + +struct ip6_ra_chain { + struct ip6_ra_chain *next; + struct sock *sk; + int sel; + void (*destructor)(struct sock *); +}; + +struct sr6_tlv { + __u8 type; + __u8 len; + __u8 data[0]; +}; + +enum { + SEG6_ATTR_UNSPEC = 0, + SEG6_ATTR_DST = 1, + SEG6_ATTR_DSTLEN = 2, + SEG6_ATTR_HMACKEYID = 3, + SEG6_ATTR_SECRET = 4, + SEG6_ATTR_SECRETLEN = 5, + SEG6_ATTR_ALGID = 6, + SEG6_ATTR_HMACINFO = 7, + __SEG6_ATTR_MAX = 8, +}; + +enum { + SEG6_CMD_UNSPEC = 0, + SEG6_CMD_SETHMAC = 1, + SEG6_CMD_DUMPHMAC = 2, + SEG6_CMD_SET_TUNSRC = 3, + SEG6_CMD_GET_TUNSRC = 4, + __SEG6_CMD_MAX = 5, +}; + +struct rt0_hdr { + struct ipv6_rt_hdr rt_hdr; + __u32 reserved; + struct in6_addr addr[0]; +}; + +struct tmp_ext { + struct in6_addr saddr; + struct in6_addr daddr; + char hdrs[0]; +}; + +struct __bridge_info { + __u64 designated_root; + __u64 bridge_id; + __u32 root_path_cost; + __u32 max_age; + __u32 hello_time; + __u32 forward_delay; + __u32 bridge_max_age; + __u32 bridge_hello_time; + __u32 bridge_forward_delay; + __u8 topology_change; + __u8 topology_change_detected; + __u8 root_port; + __u8 stp_enabled; + __u32 ageing_time; + __u32 gc_interval; + __u32 hello_timer_value; + __u32 tcn_timer_value; + __u32 topology_change_timer_value; + __u32 gc_timer_value; +}; + +struct __port_info { + __u64 designated_root; + __u64 designated_bridge; + __u16 port_id; + __u16 designated_port; + __u32 path_cost; + __u32 designated_cost; + __u8 state; + __u8 top_change_ack; + __u8 config_pending; + __u8 unused0; + __u32 message_age_timer_value; + __u32 forward_delay_timer_value; + __u32 hold_timer_value; +}; + +struct brnf_net { + bool enabled; + struct ctl_table_header *ctl_hdr; + int call_iptables; + int call_ip6tables; + int call_arptables; + int filter_vlan_tagged; + int filter_pppoe_tagged; + int pass_vlan_indev; +}; + +struct brnf_frag_data { + local_lock_t bh_lock; + char mac[22]; + u8 encap_size; + u8 size; + u16 vlan_tci; + __be16 vlan_proto; +}; + +struct ebt_nflog_info { + __u32 len; + __u16 group; + __u16 threshold; + __u16 flags; + __u16 pad; + char prefix[64]; +}; + +struct thread_deferred_req { + struct cache_deferred_req handle; + struct completion completion; +}; + +struct cache_queue { + struct list_head list; + int reader; +}; + +struct cache_request { + struct cache_queue q; + struct cache_head *item; + char *buf; + int len; + int readers; +}; + +struct cache_reader { + struct cache_queue q; + int offset; +}; + +enum sctp_spc_state { + SCTP_ADDR_AVAILABLE = 0, + SCTP_ADDR_UNREACHABLE = 1, + SCTP_ADDR_REMOVED = 2, + SCTP_ADDR_ADDED = 3, + SCTP_ADDR_MADE_PRIM = 4, + SCTP_ADDR_CONFIRMED = 5, + SCTP_ADDR_POTENTIALLY_FAILED = 6, +}; + +enum ovs_datapath_cmd { + OVS_DP_CMD_UNSPEC = 0, + OVS_DP_CMD_NEW = 1, + OVS_DP_CMD_DEL = 2, + OVS_DP_CMD_GET = 3, + OVS_DP_CMD_SET = 4, +}; + +enum ovs_datapath_attr { + OVS_DP_ATTR_UNSPEC = 0, + OVS_DP_ATTR_NAME = 1, + OVS_DP_ATTR_UPCALL_PID = 2, + OVS_DP_ATTR_STATS = 3, + OVS_DP_ATTR_MEGAFLOW_STATS = 4, + OVS_DP_ATTR_USER_FEATURES = 5, + OVS_DP_ATTR_PAD = 6, + OVS_DP_ATTR_MASKS_CACHE_SIZE = 7, + OVS_DP_ATTR_PER_CPU_PIDS = 8, + OVS_DP_ATTR_IFINDEX = 9, + __OVS_DP_ATTR_MAX = 10, +}; + +struct ovs_dp_stats { + __u64 n_hit; + __u64 n_missed; + __u64 n_lost; + __u64 n_flows; +}; + +struct ovs_dp_megaflow_stats { + __u64 n_mask_hit; + __u32 n_masks; + __u32 pad0; + __u64 n_cache_hit; + __u64 pad1; +}; + +struct ovs_vport_stats { + __u64 rx_packets; + __u64 tx_packets; + __u64 rx_bytes; + __u64 tx_bytes; + __u64 rx_errors; + __u64 tx_errors; + __u64 rx_dropped; + __u64 tx_dropped; +}; + +enum ovs_packet_cmd { + OVS_PACKET_CMD_UNSPEC = 0, + OVS_PACKET_CMD_MISS = 1, + OVS_PACKET_CMD_ACTION = 2, + OVS_PACKET_CMD_EXECUTE = 3, +}; + +enum ovs_packet_attr { + OVS_PACKET_ATTR_UNSPEC = 0, + OVS_PACKET_ATTR_PACKET = 1, + OVS_PACKET_ATTR_KEY = 2, + OVS_PACKET_ATTR_ACTIONS = 3, + OVS_PACKET_ATTR_USERDATA = 4, + OVS_PACKET_ATTR_EGRESS_TUN_KEY = 5, + OVS_PACKET_ATTR_UNUSED1 = 6, + OVS_PACKET_ATTR_UNUSED2 = 7, + OVS_PACKET_ATTR_PROBE = 8, + OVS_PACKET_ATTR_MRU = 9, + OVS_PACKET_ATTR_LEN = 10, + OVS_PACKET_ATTR_HASH = 11, + __OVS_PACKET_ATTR_MAX = 12, +}; + +enum ovs_vport_attr { + OVS_VPORT_ATTR_UNSPEC = 0, + OVS_VPORT_ATTR_PORT_NO = 1, + OVS_VPORT_ATTR_TYPE = 2, + OVS_VPORT_ATTR_NAME = 3, + OVS_VPORT_ATTR_OPTIONS = 4, + OVS_VPORT_ATTR_UPCALL_PID = 5, + OVS_VPORT_ATTR_STATS = 6, + OVS_VPORT_ATTR_PAD = 7, + OVS_VPORT_ATTR_IFINDEX = 8, + OVS_VPORT_ATTR_NETNSID = 9, + OVS_VPORT_ATTR_UPCALL_STATS = 10, + __OVS_VPORT_ATTR_MAX = 11, +}; + +enum ovs_flow_cmd { + OVS_FLOW_CMD_UNSPEC = 0, + OVS_FLOW_CMD_NEW = 1, + OVS_FLOW_CMD_DEL = 2, + OVS_FLOW_CMD_GET = 3, + OVS_FLOW_CMD_SET = 4, +}; + +enum ovs_flow_attr { + OVS_FLOW_ATTR_UNSPEC = 0, + OVS_FLOW_ATTR_KEY = 1, + OVS_FLOW_ATTR_ACTIONS = 2, + OVS_FLOW_ATTR_STATS = 3, + OVS_FLOW_ATTR_TCP_FLAGS = 4, + OVS_FLOW_ATTR_USED = 5, + OVS_FLOW_ATTR_CLEAR = 6, + OVS_FLOW_ATTR_MASK = 7, + OVS_FLOW_ATTR_PROBE = 8, + OVS_FLOW_ATTR_UFID = 9, + OVS_FLOW_ATTR_UFID_FLAGS = 10, + OVS_FLOW_ATTR_PAD = 11, + __OVS_FLOW_ATTR_MAX = 12, +}; + +enum ovs_pkt_hash_types { + OVS_PACKET_HASH_SW_BIT = 4294967296ULL, + OVS_PACKET_HASH_L4_BIT = 8589934592ULL, +}; + +union vdso_data_store { + struct vdso_data data[2]; + u8 page[4096]; +}; + +enum vvar_pages { + VVAR_DATA_PAGE_OFFSET = 0, + VVAR_TIMENS_PAGE_OFFSET = 1, + VVAR_NR_PAGES = 2, +}; + +enum vdso_abi { + VDSO_ABI_AA64 = 0, + VDSO_ABI_AA32 = 1, +}; + +struct vdso_abi_info { + const char *name; + const char *vdso_code_start; + const char *vdso_code_end; + long unsigned int vdso_pages; + struct vm_special_mapping *dm; + struct vm_special_mapping *cm; +}; + +enum aarch64_map { + AA64_MAP_VVAR = 0, + AA64_MAP_VDSO = 1, +}; + +enum { + CAP_HWCAP = 1, +}; + +enum kvm_mode { + KVM_MODE_DEFAULT = 0, + KVM_MODE_PROTECTED = 1, + KVM_MODE_NV = 2, + KVM_MODE_NONE = 3, +}; + +struct __ftr_reg_entry { + u32 sys_id; + struct arm64_ftr_reg *reg; +}; + +typedef void kpti_remap_fn(int, int, phys_addr_t, long unsigned int); + +struct fault_info { + int (*fn)(long unsigned int, long unsigned int, struct pt_regs *); + int sig; + int code; + const char *name; +}; + +typedef struct { + rwlock_t *lock; +} class_write_lock_irq_t; + +struct ptrace_peeksiginfo_args { + __u64 off; + __u32 flags; + __s32 nr; +}; + +struct ptrace_syscall_info { + __u8 op; + __u8 pad[3]; + __u32 arch; + __u64 instruction_pointer; + __u64 stack_pointer; + union { + struct { + __u64 nr; + __u64 args[6]; + } entry; + struct { + __s64 rval; + __u8 is_error; + } exit; + struct { + __u64 nr; + __u64 args[6]; + __u32 ret_data; + } seccomp; + }; +}; + +struct ptrace_rseq_configuration { + __u64 rseq_abi_pointer; + __u32 rseq_abi_size; + __u32 signature; + __u32 flags; + __u32 pad; +}; + +enum vhost_task_flags { + VHOST_TASK_FLAGS_STOP = 0, + VHOST_TASK_FLAGS_KILLED = 1, +}; + +struct vhost_task { + bool (*fn)(void *); + void (*handle_sigkill)(void *); + void *data; + struct completion exited; + long unsigned int flags; + struct task_struct *task; + struct mutex exit_mutex; +}; + +struct nbcon_state { + union { + unsigned int atom; + struct { + unsigned int prio: 2; + unsigned int req_prio: 2; + unsigned int unsafe: 1; + unsigned int unsafe_takeover: 1; + unsigned int cpu: 24; + }; + }; +}; + +enum { + IRQ_STARTUP_NORMAL = 0, + IRQ_STARTUP_MANAGED = 1, + IRQ_STARTUP_ABORT = 2, +}; + +struct cma; + +struct ce_unbind { + struct clock_event_device *ce; + int res; +}; + +struct trace_event_raw_csd_queue_cpu { + struct trace_entry ent; + unsigned int cpu; + void *callsite; + void *func; + void *csd; + char __data[0]; +}; + +struct trace_event_raw_csd_function { + struct trace_entry ent; + void *func; + void *csd; + char __data[0]; +}; + +struct trace_event_data_offsets_csd_queue_cpu {}; + +struct trace_event_data_offsets_csd_function {}; + +typedef void (*btf_trace_csd_queue_cpu)(void *, const unsigned int, long unsigned int, smp_call_func_t, call_single_data_t *); + +typedef void (*btf_trace_csd_function_entry)(void *, smp_call_func_t, call_single_data_t *); + +typedef void (*btf_trace_csd_function_exit)(void *, smp_call_func_t, call_single_data_t *); + +struct call_function_data { + call_single_data_t *csd; + cpumask_var_t cpumask; + cpumask_var_t cpumask_ipi; +}; + +struct smp_call_on_cpu_struct { + struct work_struct work; + struct completion done; + int (*func)(void *); + void *data; + int ret; + int cpu; +}; + +struct action_cache { + long unsigned int allow_native[8]; +}; + +struct notification; + +struct seccomp_filter { + refcount_t refs; + refcount_t users; + bool log; + bool wait_killable_recv; + struct action_cache cache; + struct seccomp_filter *prev; + struct bpf_prog *prog; + struct notification *notif; + struct mutex notify_lock; + wait_queue_head_t wqh; +}; + +struct seccomp_metadata { + __u64 filter_off; + __u64 flags; +}; + +struct seccomp_notif_sizes { + __u16 seccomp_notif; + __u16 seccomp_notif_resp; + __u16 seccomp_data; +}; + +struct seccomp_notif { + __u64 id; + __u32 pid; + __u32 flags; + struct seccomp_data data; +}; + +struct seccomp_notif_resp { + __u64 id; + __s64 val; + __s32 error; + __u32 flags; +}; + +struct seccomp_notif_addfd { + __u64 id; + __u32 flags; + __u32 srcfd; + __u32 newfd; + __u32 newfd_flags; +}; + +enum notify_state { + SECCOMP_NOTIFY_INIT = 0, + SECCOMP_NOTIFY_SENT = 1, + SECCOMP_NOTIFY_REPLIED = 2, +}; + +struct seccomp_knotif { + struct task_struct *task; + u64 id; + const struct seccomp_data *data; + enum notify_state state; + int error; + long int val; + u32 flags; + struct completion ready; + struct list_head list; + struct list_head addfd; +}; + +struct seccomp_kaddfd { + struct file *file; + int fd; + unsigned int flags; + __u32 ioctl_flags; + union { + bool setfd; + int ret; + }; + struct completion completion; + struct list_head list; +}; + +struct notification { + atomic_t requests; + u32 flags; + u64 next_id; + struct list_head notifications; +}; + +struct seccomp_log_name { + u32 log; + const char *name; +}; + +struct eprobe_trace_entry_head { + struct trace_entry ent; +}; + +struct trace_eprobe { + const char *event_system; + const char *event_name; + char *filter_str; + struct trace_event_call *event; + struct dyn_event devent; + struct trace_probe tp; +}; + +struct eprobe_data { + struct trace_event_file *file; + struct trace_eprobe *ep; +}; + +struct bpf_kfunc_desc { + struct btf_func_model func_model; + u32 func_id; + s32 imm; + u16 offset; + long unsigned int addr; +}; + +struct bpf_kfunc_desc_tab { + struct bpf_kfunc_desc descs[256]; + u32 nr_descs; +}; + +struct bpf_kfunc_btf { + struct btf *btf; + struct module *module; + u16 offset; +}; + +struct bpf_kfunc_btf_tab { + struct bpf_kfunc_btf descs[256]; + u32 nr_descs; +}; + +enum { + BPF_MAX_LOOPS = 8388608, +}; + +typedef u32 (*bpf_convert_ctx_access_t)(enum bpf_access_type, const struct bpf_insn *, struct bpf_insn *, struct bpf_prog *, u32 *); + +struct bpf_verifier_stack_elem { + struct bpf_verifier_state st; + int insn_idx; + int prev_insn_idx; + struct bpf_verifier_stack_elem *next; + u32 log_pos; +}; + +struct bpf_call_arg_meta { + struct bpf_map *map_ptr; + bool raw_mode; + bool pkt_access; + u8 release_regno; + int regno; + int access_size; + int mem_size; + u64 msize_max_value; + int ref_obj_id; + int dynptr_id; + int map_uid; + int func_id; + struct btf *btf; + u32 btf_id; + struct btf *ret_btf; + u32 ret_btf_id; + u32 subprogno; + struct btf_field *kptr_field; +}; + +struct bpf_kfunc_call_arg_meta { + struct btf *btf; + u32 func_id; + u32 kfunc_flags; + const struct btf_type *func_proto; + const char *func_name; + u32 ref_obj_id; + u8 release_regno; + bool r0_rdonly; + u32 ret_btf_id; + u64 r0_size; + u32 subprogno; + struct { + u64 value; + bool found; + } arg_constant; + struct btf *arg_btf; + u32 arg_btf_id; + bool arg_owning_ref; + struct { + struct btf_field *field; + } arg_list_head; + struct { + struct btf_field *field; + } arg_rbtree_root; + struct { + enum bpf_dynptr_type type; + u32 id; + u32 ref_obj_id; + } initialized_dynptr; + struct { + u8 spi; + u8 frameno; + } iter; + struct { + struct bpf_map *ptr; + int uid; + } map; + u64 mem_size; +}; + +enum reg_arg_type { + SRC_OP = 0, + DST_OP = 1, + DST_OP_NO_MARK = 2, +}; + +struct linked_reg { + u8 frameno; + union { + u8 spi; + u8 regno; + }; + bool is_reg; +}; + +struct linked_regs { + int cnt; + struct linked_reg entries[6]; +}; + +enum bpf_access_src { + ACCESS_DIRECT = 1, + ACCESS_HELPER = 2, +}; + +struct task_struct__safe_rcu { + const cpumask_t *cpus_ptr; + struct css_set *cgroups; + struct task_struct *real_parent; + struct task_struct *group_leader; +}; + +struct cgroup__safe_rcu { + struct kernfs_node *kn; +}; + +struct css_set__safe_rcu { + struct cgroup *dfl_cgrp; +}; + +struct mm_struct__safe_rcu_or_null { + struct file *exe_file; +}; + +struct sk_buff__safe_rcu_or_null { + struct sock *sk; +}; + +struct request_sock__safe_rcu_or_null { + struct sock *sk; +}; + +struct bpf_iter_meta__safe_trusted { + struct seq_file *seq; +}; + +struct bpf_iter__task__safe_trusted { + struct bpf_iter_meta *meta; + struct task_struct *task; +}; + +struct linux_binprm__safe_trusted { + struct file *file; +}; + +struct file__safe_trusted { + struct inode *f_inode; +}; + +struct dentry__safe_trusted { + struct inode *d_inode; +}; + +struct socket__safe_trusted_or_null { + struct sock *sk; +}; + +struct bpf_reg_types { + const enum bpf_reg_type types[10]; + u32 *btf_id; +}; + +enum { + AT_PKT_END = -1, + BEYOND_PKT_END = -2, +}; + +typedef int (*set_callee_state_fn)(struct bpf_verifier_env *, struct bpf_func_state *, struct bpf_func_state *, int); + +enum { + KF_ARG_DYNPTR_ID = 0, + KF_ARG_LIST_HEAD_ID = 1, + KF_ARG_LIST_NODE_ID = 2, + KF_ARG_RB_ROOT_ID = 3, + KF_ARG_RB_NODE_ID = 4, + KF_ARG_WORKQUEUE_ID = 5, +}; + +enum kfunc_ptr_arg_type { + KF_ARG_PTR_TO_CTX = 0, + KF_ARG_PTR_TO_ALLOC_BTF_ID = 1, + KF_ARG_PTR_TO_REFCOUNTED_KPTR = 2, + KF_ARG_PTR_TO_DYNPTR = 3, + KF_ARG_PTR_TO_ITER = 4, + KF_ARG_PTR_TO_LIST_HEAD = 5, + KF_ARG_PTR_TO_LIST_NODE = 6, + KF_ARG_PTR_TO_BTF_ID = 7, + KF_ARG_PTR_TO_MEM = 8, + KF_ARG_PTR_TO_MEM_SIZE = 9, + KF_ARG_PTR_TO_CALLBACK = 10, + KF_ARG_PTR_TO_RB_ROOT = 11, + KF_ARG_PTR_TO_RB_NODE = 12, + KF_ARG_PTR_TO_NULL = 13, + KF_ARG_PTR_TO_CONST_STR = 14, + KF_ARG_PTR_TO_MAP = 15, + KF_ARG_PTR_TO_WORKQUEUE = 16, +}; + +enum special_kfunc_type { + KF_bpf_obj_new_impl = 0, + KF_bpf_obj_drop_impl = 1, + KF_bpf_refcount_acquire_impl = 2, + KF_bpf_list_push_front_impl = 3, + KF_bpf_list_push_back_impl = 4, + KF_bpf_list_pop_front = 5, + KF_bpf_list_pop_back = 6, + KF_bpf_cast_to_kern_ctx = 7, + KF_bpf_rdonly_cast = 8, + KF_bpf_rcu_read_lock = 9, + KF_bpf_rcu_read_unlock = 10, + KF_bpf_rbtree_remove = 11, + KF_bpf_rbtree_add_impl = 12, + KF_bpf_rbtree_first = 13, + KF_bpf_dynptr_from_skb = 14, + KF_bpf_dynptr_from_xdp = 15, + KF_bpf_dynptr_slice = 16, + KF_bpf_dynptr_slice_rdwr = 17, + KF_bpf_dynptr_clone = 18, + KF_bpf_percpu_obj_new_impl = 19, + KF_bpf_percpu_obj_drop_impl = 20, + KF_bpf_throw = 21, + KF_bpf_wq_set_callback_impl = 22, + KF_bpf_preempt_disable = 23, + KF_bpf_preempt_enable = 24, + KF_bpf_iter_css_task_new = 25, + KF_bpf_session_cookie = 26, +}; + +enum { + REASON_BOUNDS = -1, + REASON_TYPE = -2, + REASON_PATHS = -3, + REASON_LIMIT = -4, + REASON_STACK = -5, +}; + +struct bpf_sanitize_info { + struct bpf_insn_aux_data aux; + bool mask_to_left; +}; + +enum { + DISCOVERED = 16, + EXPLORED = 32, + FALLTHROUGH = 1, + BRANCH = 2, +}; + +enum { + DONE_EXPLORING = 0, + KEEP_EXPLORING = 1, +}; + +enum exact_level { + NOT_EXACT = 0, + EXACT = 1, + RANGE_WITHIN = 2, +}; + +struct bpf_iter; + +union __u128_halves { + u128 full; + struct { + u64 low; + u64 high; + }; +}; + +struct kmem_cache_cpu { + union { + struct { + void **freelist; + long unsigned int tid; + }; + freelist_aba_t freelist_tid; + }; + struct slab *slab; + struct slab *partial; + local_lock_t lock; +}; + +struct kmem_cache_node { + spinlock_t list_lock; + long unsigned int nr_partial; + struct list_head partial; + atomic_long_t nr_slabs; + atomic_long_t total_objects; + struct list_head full; +}; + +struct memory_notify { + long unsigned int altmap_start_pfn; + long unsigned int altmap_nr_pages; + long unsigned int start_pfn; + long unsigned int nr_pages; + int status_change_nid_normal; + int status_change_nid; +}; + +struct partial_context { + gfp_t flags; + unsigned int orig_size; + void *object; +}; + +struct track { + long unsigned int addr; + depot_stack_handle_t handle; + int cpu; + int pid; + long unsigned int when; +}; + +enum track_item { + TRACK_ALLOC = 0, + TRACK_FREE = 1, +}; + +enum stat_item { + ALLOC_FASTPATH = 0, + ALLOC_SLOWPATH = 1, + FREE_FASTPATH = 2, + FREE_SLOWPATH = 3, + FREE_FROZEN = 4, + FREE_ADD_PARTIAL = 5, + FREE_REMOVE_PARTIAL = 6, + ALLOC_FROM_PARTIAL = 7, + ALLOC_SLAB = 8, + ALLOC_REFILL = 9, + ALLOC_NODE_MISMATCH = 10, + FREE_SLAB = 11, + CPUSLAB_FLUSH = 12, + DEACTIVATE_FULL = 13, + DEACTIVATE_EMPTY = 14, + DEACTIVATE_TO_HEAD = 15, + DEACTIVATE_TO_TAIL = 16, + DEACTIVATE_REMOTE_FREES = 17, + DEACTIVATE_BYPASS = 18, + ORDER_FALLBACK = 19, + CMPXCHG_DOUBLE_CPU_FAIL = 20, + CMPXCHG_DOUBLE_FAIL = 21, + CPU_PARTIAL_ALLOC = 22, + CPU_PARTIAL_FREE = 23, + CPU_PARTIAL_NODE = 24, + CPU_PARTIAL_DRAIN = 25, + NR_SLUB_STAT_ITEMS = 26, +}; + +struct slub_flush_work { + struct work_struct work; + struct kmem_cache *s; + bool skip; +}; + +struct detached_freelist { + struct slab *slab; + void *tail; + void *freelist; + int cnt; + struct kmem_cache *s; +}; + +struct location { + depot_stack_handle_t handle; + long unsigned int count; + long unsigned int addr; + long unsigned int waste; + long long int sum_time; + long int min_time; + long int max_time; + long int min_pid; + long int max_pid; + long unsigned int cpus[1]; + nodemask_t nodes; +}; + +struct loc_track { + long unsigned int max; + long unsigned int count; + struct location *loc; + loff_t idx; +}; + +enum slab_stat_type { + SL_ALL = 0, + SL_PARTIAL = 1, + SL_CPU = 2, + SL_OBJECTS = 3, + SL_TOTAL = 4, +}; + +struct slab_attribute { + struct attribute attr; + ssize_t (*show)(struct kmem_cache *, char *); + ssize_t (*store)(struct kmem_cache *, const char *, size_t); +}; + +struct saved_alias { + struct kmem_cache *s; + const char *name; + struct saved_alias *next; +}; + +typedef freelist_full_t pcp_op_T__; + +struct stat { + long unsigned int st_dev; + long unsigned int st_ino; + unsigned int st_mode; + unsigned int st_nlink; + unsigned int st_uid; + unsigned int st_gid; + long unsigned int st_rdev; + long unsigned int __pad1; + long int st_size; + int st_blksize; + int __pad2; + long int st_blocks; + long int st_atime; + long unsigned int st_atime_nsec; + long int st_mtime; + long unsigned int st_mtime_nsec; + long int st_ctime; + long unsigned int st_ctime_nsec; + unsigned int __unused4; + unsigned int __unused5; +}; + +struct simple_transaction_argresp { + ssize_t size; + char data[0]; +}; + +enum { + DIR_OFFSET_FIRST = 2, + DIR_OFFSET_EOD = 2147483647, +}; + +enum { + DIR_OFFSET_MIN = 3, + DIR_OFFSET_MAX = 2147483646, +}; + +struct simple_attr { + int (*get)(void *, u64 *); + int (*set)(void *, u64); + char get_buf[24]; + char set_buf[24]; + void *data; + const char *fmt; + struct mutex mutex; +}; + +enum fsconfig_command { + FSCONFIG_SET_FLAG = 0, + FSCONFIG_SET_STRING = 1, + FSCONFIG_SET_BINARY = 2, + FSCONFIG_SET_PATH = 3, + FSCONFIG_SET_PATH_EMPTY = 4, + FSCONFIG_SET_FD = 5, + FSCONFIG_CMD_CREATE = 6, + FSCONFIG_CMD_RECONFIGURE = 7, + FSCONFIG_CMD_CREATE_EXCL = 8, +}; + +struct timerfd_ctx { + union { + struct hrtimer tmr; + struct alarm alarm; + } t; + ktime_t tintv; + ktime_t moffs; + wait_queue_head_t wqh; + u64 ticks; + int clockid; + short unsigned int expired; + short unsigned int settime_flags; + struct callback_head rcu; + struct list_head clist; + spinlock_t cancel_lock; + bool might_cancel; +}; + +enum { + MBE_REFERENCED_B = 0, + MBE_REUSABLE_B = 1, +}; + +struct mb_cache_entry { + struct list_head e_list; + struct hlist_bl_node e_hash_list; + atomic_t e_refcnt; + u32 e_key; + long unsigned int e_flags; + u64 e_value; +}; + +struct mb_cache { + struct hlist_bl_head *c_hash; + int c_bucket_bits; + long unsigned int c_max_entries; + spinlock_t c_list_lock; + struct list_head c_list; + long unsigned int c_entry_count; + struct shrinker *c_shrink; + struct work_struct c_shrink_work; +}; + +enum handle_to_path_flags { + HANDLE_CHECK_PERMS = 1, + HANDLE_CHECK_SUBTREE = 2, +}; + +struct handle_to_path_ctx { + struct path root; + enum handle_to_path_flags flags; + unsigned int fh_flags; +}; + +enum SHIFT_DIRECTION { + SHIFT_LEFT = 0, + SHIFT_RIGHT = 1, +}; + +struct ext4_extent_tail { + __le32 et_checksum; +}; + +struct ext4_dir_entry { + __le32 inode; + __le16 rec_len; + __le16 name_len; + char name[255]; +}; + +struct ext4_dir_entry_tail { + __le32 det_reserved_zero1; + __le16 det_rec_len; + __u8 det_reserved_zero2; + __u8 det_reserved_ft; + __le32 det_checksum; +}; + +typedef enum { + EITHER = 0, + INDEX = 1, + DIRENT = 2, + DIRENT_HTREE = 3, +} dirblock_type_t; + +struct fake_dirent { + __le32 inode; + __le16 rec_len; + u8 name_len; + u8 file_type; +}; + +struct dx_countlimit { + __le16 limit; + __le16 count; +}; + +struct dx_entry { + __le32 hash; + __le32 block; +}; + +struct dx_root_info { + __le32 reserved_zero; + u8 hash_version; + u8 info_length; + u8 indirect_levels; + u8 unused_flags; +}; + +struct dx_root { + struct fake_dirent dot; + char dot_name[4]; + struct fake_dirent dotdot; + char dotdot_name[4]; + struct dx_root_info info; + struct dx_entry entries[0]; +}; + +struct dx_node { + struct fake_dirent fake; + struct dx_entry entries[0]; +}; + +struct dx_frame { + struct buffer_head *bh; + struct dx_entry *entries; + struct dx_entry *at; +}; + +struct dx_map_entry { + u32 hash; + u16 offs; + u16 size; +}; + +struct dx_tail { + u32 dt_reserved; + __le32 dt_checksum; +}; + +struct ext4_renament { + struct inode *dir; + struct dentry *dentry; + struct inode *inode; + bool is_dir; + int dir_nlink_delta; + struct buffer_head *bh; + struct ext4_dir_entry_2 *de; + int inlined; + struct buffer_head *dir_bh; + struct ext4_dir_entry_2 *parent_de; + int dir_inlined; +}; + +struct squashfs_xattr_id { + __le64 xattr; + __le32 count; + __le32 size; +}; + +struct squashfs_xattr_id_table { + __le64 xattr_table_start; + __le32 xattr_ids; + __le32 unused; +}; + +struct boot_sector { + __u8 jmp_boot[3]; + __u8 fs_name[8]; + __u8 must_be_zero[53]; + __le64 partition_offset; + __le64 vol_length; + __le32 fat_offset; + __le32 fat_length; + __le32 clu_offset; + __le32 clu_count; + __le32 root_cluster; + __le32 vol_serial; + __u8 fs_revision[2]; + __le16 vol_flags; + __u8 sect_size_bits; + __u8 sect_per_clus_bits; + __u8 num_fats; + __u8 drv_sel; + __u8 percent_in_use; + __u8 reserved[7]; + __u8 boot_code[390]; + __le16 signature; +}; + +enum { + Opt_uid___9 = 0, + Opt_gid___9 = 1, + Opt_umask___4 = 2, + Opt_dmask___3 = 3, + Opt_fmask___3 = 4, + Opt_allow_utime___2 = 5, + Opt_charset___2 = 6, + Opt_errors___5 = 7, + Opt_discard___7 = 8, + Opt_keep_last_dots = 9, + Opt_sys_tz = 10, + Opt_time_offset___2 = 11, + Opt_zero_size_dir = 12, + Opt_utf8___4 = 13, + Opt_debug___4 = 14, + Opt_namecase = 15, + Opt_codepage___2 = 16, +}; + +struct nfs_find_desc { + struct nfs_fh *fh; + struct nfs_fattr *fattr; +}; + +struct compound_hdr { + int32_t status; + uint32_t nops; + __be32 *nops_p; + uint32_t taglen; + char *tag; + uint32_t replen; + u32 minorversion; +}; + +struct read_plus_segment { + enum data_content4 type; + uint64_t offset; + union { + struct { + uint64_t length; + } hole; + struct { + uint32_t length; + unsigned int from; + } data; + }; +}; + +struct bl_pipe_msg { + struct rpc_pipe_msg msg; + wait_queue_head_t *bl_wq; +}; + +struct bl_msg_hdr { + u8 type; + u16 totallen; +}; + +struct nfsd_fcache_disposal { + spinlock_t lock; + struct list_head freeme; +}; + +struct trace_event_raw_nlmclnt_lock_event { + struct trace_entry ent; + u32 oh; + u32 svid; + u32 fh; + long unsigned int status; + u64 start; + u64 len; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_data_offsets_nlmclnt_lock_event { + u32 addr; + const void *addr_ptr_; +}; + +typedef void (*btf_trace_nlmclnt_test)(void *, const struct nlm_lock *, const struct sockaddr *, unsigned int, __be32); + +typedef void (*btf_trace_nlmclnt_lock)(void *, const struct nlm_lock *, const struct sockaddr *, unsigned int, __be32); + +typedef void (*btf_trace_nlmclnt_unlock)(void *, const struct nlm_lock *, const struct sockaddr *, unsigned int, __be32); + +typedef void (*btf_trace_nlmclnt_grant)(void *, const struct nlm_lock *, const struct sockaddr *, unsigned int, __be32); + +struct reparse_symlink_data_buffer { + __le32 ReparseTag; + __le16 ReparseDataLength; + __u16 Reserved; + __le16 SubstituteNameOffset; + __le16 SubstituteNameLength; + __le16 PrintNameOffset; + __le16 PrintNameLength; + __le32 Flags; + __u8 PathBuffer[0]; +}; + +struct smb2_create_ea_ctx { + struct create_context_hdr ctx; + __u8 name[8]; + struct smb2_file_full_ea_info ea; +}; + +struct wsl_xattr { + const char *name; + __le64 value; + u16 size; + u32 next; +}; + +struct INDEX_NAMES { + const __le16 *name; + u8 name_len; +}; + +struct bmp_buf { + struct ATTRIB *b; + struct mft_inode *mi; + struct buffer_head *bh; + ulong *buf; + size_t bit; + u32 nbits; + u64 new_valid; +}; + +struct fuse_setxattr_in { + uint32_t size; + uint32_t flags; + uint32_t setxattr_flags; + uint32_t padding; +}; + +struct fuse_getxattr_in { + uint32_t size; + uint32_t padding; +}; + +struct fuse_getxattr_out { + uint32_t size; + uint32_t padding; +}; + +struct ovl_copy_up_ctx { + struct dentry *parent; + struct dentry *dentry; + struct path lowerpath; + struct kstat stat; + struct kstat pstat; + const char *link; + struct dentry *destdir; + struct qstr destname; + struct dentry *workdir; + const struct ovl_fh *origin_fh; + bool origin; + bool indexed; + bool metacopy; + bool metacopy_digest; + bool metadata_fsync; +}; + +struct ovl_cu_creds { + const struct cred *old; + struct cred *new; +}; + +struct xfs_dir3_data_hdr { + struct xfs_dir3_blk_hdr hdr; + xfs_dir2_data_free_t best_free[3]; + __be32 pad; +}; + +struct xfs_attr_sf_hdr { + __be16 totsize; + __u8 count; + __u8 padding; +}; + +struct xfs_sysfs_attr { + struct attribute attr; + ssize_t (*show)(struct kobject *, char *); + ssize_t (*store)(struct kobject *, const char *, size_t); +}; + +struct xfs_error_init { + char *name; + int max_retries; + int retry_timeout; +}; + +struct xfs_buf_cancel { + xfs_daddr_t bc_blkno; + uint bc_len; + int bc_refcount; + struct list_head bc_list; +}; + +enum p9_perm_t { + P9_DMDIR = 2147483648, + P9_DMAPPEND = 1073741824, + P9_DMEXCL = 536870912, + P9_DMMOUNT = 268435456, + P9_DMAUTH = 134217728, + P9_DMTMP = 67108864, + P9_DMSYMLINK = 33554432, + P9_DMLINK = 16777216, + P9_DMDEVICE = 8388608, + P9_DMNAMEDPIPE = 2097152, + P9_DMSOCKET = 1048576, + P9_DMSETUID = 524288, + P9_DMSETGID = 262144, + P9_DMSETVTX = 65536, +}; + +struct p9_rdir { + int head; + int tail; + uint8_t buf[0]; +}; + +enum btrfs_csum_type { + BTRFS_CSUM_TYPE_CRC32 = 0, + BTRFS_CSUM_TYPE_XXHASH = 1, + BTRFS_CSUM_TYPE_SHA256 = 2, + BTRFS_CSUM_TYPE_BLAKE2 = 3, +}; + +struct prop_handler { + struct hlist_node node; + const char *xattr_name; + int (*validate)(const struct btrfs_inode *, const char *, size_t); + int (*apply)(struct inode *, const char *, size_t); + const char * (*extract)(const struct inode *); + bool (*ignore)(const struct btrfs_inode *); + int inheritable; +}; + +struct f2fs_orphan_block { + __le32 ino[1020]; + __le32 reserved; + __le16 blk_addr; + __le16 blk_count; + __le32 entry_count; + __le32 check_sum; +}; + +struct ino_entry { + struct list_head list; + nid_t ino; + unsigned int dirty_device; +}; + +struct ckpt_req { + struct completion wait; + struct llist_node llnode; + int ret; + ktime_t queue_time; +}; + +struct f2fs_sit_block { + struct f2fs_sit_entry entries[55]; +}; + +struct discard_entry { + struct list_head list; + block_t start_blkaddr; + unsigned char discard_map[64]; +}; + +enum { + D_PREP = 0, + D_PARTIAL = 1, + D_SUBMIT = 2, + D_DONE = 3, +}; + +struct discard_info { + block_t lstart; + block_t len; + block_t start; +}; + +struct discard_cmd { + struct rb_node rb_node; + struct discard_info di; + struct list_head list; + struct completion wait; + struct block_device *bdev; + short unsigned int ref; + unsigned char state; + unsigned char queued; + int error; + spinlock_t lock; + short unsigned int bio_ref; +}; + +enum { + DPOLICY_BG = 0, + DPOLICY_FORCE = 1, + DPOLICY_FSTRIM = 2, + DPOLICY_UMOUNT = 3, + MAX_DPOLICY = 4, +}; + +enum { + DPOLICY_IO_AWARE_DISABLE = 0, + DPOLICY_IO_AWARE_ENABLE = 1, + DPOLICY_IO_AWARE_MAX = 2, +}; + +struct discard_policy { + int type; + unsigned int min_interval; + unsigned int mid_interval; + unsigned int max_interval; + unsigned int max_requests; + unsigned int io_aware_gran; + bool io_aware; + bool sync; + bool ordered; + bool timeout; + unsigned int granularity; +}; + +struct flush_cmd { + struct completion wait; + struct llist_node llnode; + nid_t ino; + int ret; +}; + +struct revoke_entry { + struct list_head list; + block_t old_addr; + long unsigned int index; +}; + +struct sit_entry_set { + struct list_head set_list; + unsigned int start_segno; + unsigned int entry_cnt; +}; + +struct f2fs_acl_entry { + __le16 e_tag; + __le16 e_perm; + __le32 e_id; +}; + +struct f2fs_acl_header { + __le32 a_version; +}; + +struct erofs_deviceslot { + u8 tag[64]; + __le32 blocks; + __le32 mapped_blkaddr; + u8 reserved[56]; +}; + +struct z_erofs_map_header { + union { + __le32 h_fragmentoff; + struct { + __le16 h_reserved1; + __le16 h_idata_size; + }; + }; + __le16 h_advise; + __u8 h_algorithmtype; + __u8 h_clusterbits; +}; + +enum { + EROFS_ZIP_CACHE_DISABLED = 0, + EROFS_ZIP_CACHE_READAHEAD = 1, + EROFS_ZIP_CACHE_READAROUND = 2, +}; + +struct trace_event_raw_erofs_lookup { + struct trace_entry ent; + dev_t dev; + erofs_nid_t nid; + u32 __data_loc_name; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_erofs_fill_inode { + struct trace_entry ent; + dev_t dev; + erofs_nid_t nid; + erofs_blk_t blkaddr; + unsigned int ofs; + char __data[0]; +}; + +struct trace_event_raw_erofs_read_folio { + struct trace_entry ent; + dev_t dev; + erofs_nid_t nid; + int dir; + long unsigned int index; + int uptodate; + bool raw; + char __data[0]; +}; + +struct trace_event_raw_erofs_readahead { + struct trace_entry ent; + dev_t dev; + erofs_nid_t nid; + long unsigned int start; + unsigned int nrpage; + bool raw; + char __data[0]; +}; + +struct trace_event_raw_erofs_map_blocks_enter { + struct trace_entry ent; + dev_t dev; + erofs_nid_t nid; + erofs_off_t la; + u64 llen; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_erofs_map_blocks_exit { + struct trace_entry ent; + dev_t dev; + erofs_nid_t nid; + unsigned int flags; + erofs_off_t la; + erofs_off_t pa; + u64 llen; + u64 plen; + unsigned int mflags; + int ret; + char __data[0]; +}; + +struct trace_event_data_offsets_erofs_lookup { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_erofs_fill_inode {}; + +struct trace_event_data_offsets_erofs_read_folio {}; + +struct trace_event_data_offsets_erofs_readahead {}; + +struct trace_event_data_offsets_erofs_map_blocks_enter {}; + +struct trace_event_data_offsets_erofs_map_blocks_exit {}; + +typedef void (*btf_trace_erofs_lookup)(void *, struct inode *, struct dentry *, unsigned int); + +typedef void (*btf_trace_erofs_fill_inode)(void *, struct inode *); + +typedef void (*btf_trace_erofs_read_folio)(void *, struct folio *, bool); + +typedef void (*btf_trace_erofs_readahead)(void *, struct inode *, long unsigned int, unsigned int, bool); + +typedef void (*btf_trace_erofs_map_blocks_enter)(void *, struct inode *, struct erofs_map_blocks *, unsigned int); + +typedef void (*btf_trace_erofs_map_blocks_exit)(void *, struct inode *, struct erofs_map_blocks *, unsigned int, int); + +enum { + Opt_user_xattr___4 = 0, + Opt_acl___6 = 1, + Opt_cache_strategy = 2, + Opt_dax___3 = 3, + Opt_dax_enum___2 = 4, + Opt_device___2 = 5, + Opt_fsid = 6, + Opt_domain_id = 7, + Opt_directio___2 = 8, + Opt_err___15 = 9, +}; + +struct sem_undo_list { + refcount_t refcnt; + spinlock_t lock; + struct list_head list_proc; +}; + +struct sem; + +struct sem_queue; + +struct sem_undo; + +struct semid_ds { + struct ipc_perm sem_perm; + __kernel_old_time_t sem_otime; + __kernel_old_time_t sem_ctime; + struct sem *sem_base; + struct sem_queue *sem_pending; + struct sem_queue **sem_pending_last; + struct sem_undo *undo; + short unsigned int sem_nsems; +}; + +struct sem { + int semval; + struct pid *sempid; + spinlock_t lock; + struct list_head pending_alter; + struct list_head pending_const; + time64_t sem_otime; +}; + +struct sem_queue { + struct list_head list; + struct task_struct *sleeper; + struct sem_undo *undo; + struct pid *pid; + int status; + struct sembuf *sops; + struct sembuf *blocking; + int nsops; + bool alter; + bool dupsop; +}; + +struct sem_undo { + struct list_head list_proc; + struct callback_head rcu; + struct sem_undo_list *ulp; + struct list_head list_id; + int semid; + short int semadj[0]; +}; + +struct semid64_ds { + struct ipc64_perm sem_perm; + long int sem_otime; + long int sem_ctime; + long unsigned int sem_nsems; + long unsigned int __unused3; + long unsigned int __unused4; +}; + +struct seminfo { + int semmap; + int semmni; + int semmns; + int semmnu; + int semmsl; + int semopm; + int semume; + int semusz; + int semvmx; + int semaem; +}; + +struct sem_array { + struct kern_ipc_perm sem_perm; + time64_t sem_ctime; + struct list_head pending_alter; + struct list_head pending_const; + struct list_head list_id; + int sem_nsems; + int complex_count; + unsigned int use_global_lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct sem sems[0]; +}; + +enum { + SKCIPHER_WALK_PHYS = 1, + SKCIPHER_WALK_SLOW = 2, + SKCIPHER_WALK_COPY = 4, + SKCIPHER_WALK_DIFF = 8, + SKCIPHER_WALK_SLEEP = 16, +}; + +struct skcipher_walk_buffer { + struct list_head entry; + struct scatter_walk dst; + unsigned int len; + u8 *data; + u8 buffer[0]; +}; + +struct xcbc_tfm_ctx { + struct crypto_cipher *child; + u8 consts[0]; +}; + +struct xcbc_desc_ctx { + unsigned int len; + u8 odds[0]; +}; + +struct des3_ede_ctx { + u32 expkey[96]; +}; + +enum { + IOPRIO_WHO_PROCESS = 1, + IOPRIO_WHO_PGRP = 2, + IOPRIO_WHO_USER = 3, +}; + +struct throtl_data { + struct throtl_service_queue service_queue; + struct request_queue *queue; + unsigned int nr_queued[2]; + unsigned int throtl_slice; + struct work_struct dispatch_work; + bool track_bio_latency; +}; + +enum tg_state_flags { + THROTL_TG_PENDING = 1, + THROTL_TG_WAS_EMPTY = 2, + THROTL_TG_CANCELING = 4, +}; + +struct io_rename { + struct file *file; + int old_dfd; + int new_dfd; + struct filename *oldpath; + struct filename *newpath; + int flags; +}; + +struct io_unlink { + struct file *file; + int dfd; + int flags; + struct filename *filename; +}; + +struct io_mkdir { + struct file *file; + int dfd; + umode_t mode; + struct filename *filename; +}; + +struct io_link { + struct file *file; + int old_dfd; + int new_dfd; + struct filename *oldpath; + struct filename *newpath; + int flags; +}; + +typedef U32 (*ZSTD_getAllMatchesFn)(ZSTD_match_t *, ZSTD_matchState_t *, U32 *, const BYTE *, const BYTE *, const U32 *, const U32, const U32); + +typedef struct { + rawSeqStore_t seqStore; + U32 startPosInBlock; + U32 endPosInBlock; + U32 offset; +} ZSTD_optLdm_t; + +struct sg_pool { + size_t size; + char *name; + struct kmem_cache *slab; + mempool_t *pool; +}; + +struct v2m_data { + struct list_head entry; + struct fwnode_handle *fwnode; + struct resource res; + void *base; + u32 spi_start; + u32 nr_spis; + u32 spi_offset; + long unsigned int *bm; + u32 flags; +}; + +struct pl061 { + raw_spinlock_t lock; + void *base; + struct gpio_chip gc; + int parent_irq; +}; + +struct clk_mux { + struct clk_hw hw; + void *reg; + const u32 *table; + u32 mask; + u8 shift; + u8 flags; + spinlock_t *lock; +}; + +struct drm_mode_map_dumb { + __u32 handle; + __u32 pad; + __u64 offset; +}; + +struct drm_mode_destroy_dumb { + __u32 handle; +}; + +struct panel_bridge { + struct drm_bridge bridge; + struct drm_connector connector; + struct drm_panel *panel; + u32 connector_type; +}; + +struct container_dev { + struct device dev; + int (*offline)(struct container_dev *); +}; + +struct builtin_fw { + char *name; + void *data; + long unsigned int size; +}; + +struct virtio_blk_geometry { + __virtio16 cylinders; + __u8 heads; + __u8 sectors; +}; + +struct virtio_blk_zoned_characteristics { + __virtio32 zone_sectors; + __virtio32 max_open_zones; + __virtio32 max_active_zones; + __virtio32 max_append_sectors; + __virtio32 write_granularity; + __u8 model; + __u8 unused2[3]; +}; + +struct virtio_blk_config { + __virtio64 capacity; + __virtio32 size_max; + __virtio32 seg_max; + struct virtio_blk_geometry geometry; + __virtio32 blk_size; + __u8 physical_block_exp; + __u8 alignment_offset; + __virtio16 min_io_size; + __virtio32 opt_io_size; + __u8 wce; + __u8 unused; + __virtio16 num_queues; + __virtio32 max_discard_sectors; + __virtio32 max_discard_seg; + __virtio32 discard_sector_alignment; + __virtio32 max_write_zeroes_sectors; + __virtio32 max_write_zeroes_seg; + __u8 write_zeroes_may_unmap; + __u8 unused1[3]; + __virtio32 max_secure_erase_sectors; + __virtio32 max_secure_erase_seg; + __virtio32 secure_erase_sector_alignment; + struct virtio_blk_zoned_characteristics zoned; +}; + +struct virtio_blk_outhdr { + __virtio32 type; + __virtio32 ioprio; + __virtio64 sector; +}; + +struct virtio_blk_discard_write_zeroes { + __le64 sector; + __le32 num_sectors; + __le32 flags; +}; + +struct virtio_blk_vq { + struct virtqueue *vq; + spinlock_t lock; + char name[16]; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct virtio_blk { + struct mutex vdev_mutex; + struct virtio_device *vdev; + struct gendisk *disk; + struct blk_mq_tag_set tag_set; + struct work_struct config_work; + int index; + int num_vqs; + int io_queues[3]; + struct virtio_blk_vq *vqs; + unsigned int zone_sectors; +}; + +struct virtblk_req { + struct virtio_blk_outhdr out_hdr; + union { + u8 status; + struct { + __virtio64 sector; + u8 status; + } zone_append; + } in_hdr; + size_t in_hdr_len; + struct sg_table sg_table; + struct scatterlist sg[0]; +}; + +struct slave_attribute { + struct attribute attr; + ssize_t (*show)(struct slave *, char *); +}; + +struct mdio_device_id { + __u32 phy_id; + __u32 phy_id_mask; +}; + +struct smsc_hw_stat { + const char *string; + u8 reg; + u8 bits; +}; + +struct smsc_phy_priv { + unsigned int edpd_enable: 1; + unsigned int edpd_mode_set_by_user: 1; + unsigned int edpd_max_wait_ms; + bool wol_arp; +}; + +enum { + MDBA_UNSPEC = 0, + MDBA_MDB = 1, + MDBA_ROUTER = 2, + __MDBA_MAX = 3, +}; + +enum { + MDBA_MDB_UNSPEC = 0, + MDBA_MDB_ENTRY = 1, + __MDBA_MDB_MAX = 2, +}; + +enum { + MDBA_MDB_ENTRY_UNSPEC = 0, + MDBA_MDB_ENTRY_INFO = 1, + __MDBA_MDB_ENTRY_MAX = 2, +}; + +enum { + MDBA_MDB_EATTR_UNSPEC = 0, + MDBA_MDB_EATTR_TIMER = 1, + MDBA_MDB_EATTR_SRC_LIST = 2, + MDBA_MDB_EATTR_GROUP_MODE = 3, + MDBA_MDB_EATTR_SOURCE = 4, + MDBA_MDB_EATTR_RTPROT = 5, + MDBA_MDB_EATTR_DST = 6, + MDBA_MDB_EATTR_DST_PORT = 7, + MDBA_MDB_EATTR_VNI = 8, + MDBA_MDB_EATTR_IFINDEX = 9, + MDBA_MDB_EATTR_SRC_VNI = 10, + __MDBA_MDB_EATTR_MAX = 11, +}; + +enum { + MDBA_MDB_SRCLIST_UNSPEC = 0, + MDBA_MDB_SRCLIST_ENTRY = 1, + __MDBA_MDB_SRCLIST_MAX = 2, +}; + +enum { + MDBA_MDB_SRCATTR_UNSPEC = 0, + MDBA_MDB_SRCATTR_ADDRESS = 1, + MDBA_MDB_SRCATTR_TIMER = 2, + __MDBA_MDB_SRCATTR_MAX = 3, +}; + +struct br_port_msg { + __u8 family; + __u32 ifindex; +}; + +struct br_mdb_entry { + __u32 ifindex; + __u8 state; + __u8 flags; + __u16 vid; + struct { + union { + __be32 ip4; + struct in6_addr ip6; + unsigned char mac_addr[6]; + } u; + __be16 proto; + } addr; +}; + +enum { + MDBA_SET_ENTRY_UNSPEC = 0, + MDBA_SET_ENTRY = 1, + MDBA_SET_ENTRY_ATTRS = 2, + __MDBA_SET_ENTRY_MAX = 3, +}; + +enum { + MDBA_GET_ENTRY_UNSPEC = 0, + MDBA_GET_ENTRY = 1, + MDBA_GET_ENTRY_ATTRS = 2, + __MDBA_GET_ENTRY_MAX = 3, +}; + +enum { + MDBE_ATTR_UNSPEC = 0, + MDBE_ATTR_SOURCE = 1, + MDBE_ATTR_SRC_LIST = 2, + MDBE_ATTR_GROUP_MODE = 3, + MDBE_ATTR_RTPROT = 4, + MDBE_ATTR_DST = 5, + MDBE_ATTR_DST_PORT = 6, + MDBE_ATTR_VNI = 7, + MDBE_ATTR_IFINDEX = 8, + MDBE_ATTR_SRC_VNI = 9, + MDBE_ATTR_STATE_MASK = 10, + __MDBE_ATTR_MAX = 11, +}; + +enum { + MDBE_SRC_LIST_UNSPEC = 0, + MDBE_SRC_LIST_ENTRY = 1, + __MDBE_SRC_LIST_MAX = 2, +}; + +enum { + MDBE_SRCATTR_UNSPEC = 0, + MDBE_SRCATTR_ADDRESS = 1, + __MDBE_SRCATTR_MAX = 2, +}; + +struct vxlan_mdb_entry_key { + union vxlan_addr src; + union vxlan_addr dst; + __be32 vni; +}; + +struct vxlan_mdb_entry { + struct rhash_head rhnode; + struct list_head remotes; + struct vxlan_mdb_entry_key key; + struct hlist_node mdb_node; + struct callback_head rcu; +}; + +struct vxlan_mdb_remote { + struct list_head list; + struct vxlan_rdst *rd; + u8 flags; + u8 filter_mode; + u8 rt_protocol; + struct hlist_head src_list; + struct callback_head rcu; +}; + +struct vxlan_mdb_src_entry { + struct hlist_node node; + union vxlan_addr addr; + u8 flags; +}; + +struct vxlan_mdb_dump_ctx { + long int reserved; + long int entry_idx; + long int remote_idx; +}; + +struct vxlan_mdb_config_src_entry { + union vxlan_addr addr; + struct list_head node; +}; + +struct vxlan_mdb_config { + struct vxlan_dev *vxlan; + struct vxlan_mdb_entry_key group; + struct list_head src_list; + union vxlan_addr remote_ip; + u32 remote_ifindex; + __be32 remote_vni; + __be16 remote_port; + u16 nlflags; + u8 flags; + u8 filter_mode; + u8 rt_protocol; +}; + +struct vxlan_mdb_flush_desc { + union vxlan_addr remote_ip; + __be32 src_vni; + __be32 remote_vni; + __be16 remote_port; + u8 rt_protocol; +}; + +enum usb_led_event { + USB_LED_EVENT_HOST = 0, + USB_LED_EVENT_GADGET = 1, +}; + +struct iommu_fault_page_request { + u32 flags; + u32 pasid; + u32 grpid; + u32 perm; + u64 addr; + u64 private_data[2]; +}; + +struct iommu_fault { + u32 type; + struct iommu_fault_page_request prm; +}; + +struct iopf_fault { + struct iommu_fault fault; + struct list_head list; +}; + +struct iommu_attach_handle; + +struct iommu_fault_param; + +struct iopf_group { + struct iopf_fault last_fault; + struct list_head faults; + size_t fault_count; + struct list_head pending_node; + struct work_struct work; + struct iommu_attach_handle *attach_handle; + struct iommu_fault_param *fault_param; + struct list_head node; + u32 cookie; +}; + +struct iommu_fault_param {}; + +struct iommu_domain; + +typedef int (*iommu_fault_handler_t)(struct iommu_domain *, struct device *, long unsigned int, int, void *); + +struct iommu_domain_ops; + +struct iommu_domain_geometry { + dma_addr_t aperture_start; + dma_addr_t aperture_end; + bool force_aperture; +}; + +struct iommu_dma_cookie; + +struct iommu_dirty_ops; + +struct iommu_ops; + +struct iommu_domain { + unsigned int type; + const struct iommu_domain_ops *ops; + const struct iommu_dirty_ops *dirty_ops; + const struct iommu_ops *owner; + long unsigned int pgsize_bitmap; + struct iommu_domain_geometry geometry; + struct iommu_dma_cookie *iova_cookie; + int (*iopf_handler)(struct iopf_group *); + void *fault_data; + union { + struct { + iommu_fault_handler_t handler; + void *handler_token; + }; + struct { + struct mm_struct *mm; + int users; + struct list_head next; + }; + }; +}; + +struct iommu_dirty_ops {}; + +struct iommu_ops {}; + +enum xhci_overhead_type { + LS_OVERHEAD_TYPE = 0, + FS_OVERHEAD_TYPE = 1, + HS_OVERHEAD_TYPE = 2, +}; + +struct rts51x_status { + u16 vid; + u16 pid; + u8 cur_lun; + u8 card_type; + u8 total_lun; + u16 fw_ver; + u8 phy_exist; + u8 multi_flag; + u8 multi_card; + u8 log_exist; + union { + u8 detailed_type1; + u8 detailed_type2; + } detailed_type; + u8 function[2]; +}; + +struct rts51x_chip { + u16 vendor_id; + u16 product_id; + char max_lun; + struct rts51x_status *status; + int status_len; + u32 flag; + struct us_data *us; + proto_cmnd proto_handler_backup; +}; + +struct f81534_serial_private { + u8 conf_data[12]; + int tty_idx[4]; + u8 setting_idx; + int opened_port; + struct mutex urb_mutex; +}; + +struct f81534_port_private { + struct mutex mcr_mutex; + struct mutex lcr_mutex; + struct work_struct lsr_work; + struct usb_serial_port *port; + long unsigned int tx_empty; + spinlock_t msr_lock; + u32 baud_base; + u8 shadow_mcr; + u8 shadow_lcr; + u8 shadow_msr; + u8 shadow_clk; + u8 phy_num; +}; + +struct f81534_pin_data { + const u16 reg_addr; + const u8 reg_mask; +}; + +struct f81534_port_out_pin { + struct f81534_pin_data pin[3]; +}; + +enum pl2303_type { + TYPE_H = 0, + TYPE_HX = 1, + TYPE_TA = 2, + TYPE_TB = 3, + TYPE_HXD = 4, + TYPE_HXN = 5, + TYPE_COUNT = 6, +}; + +struct pl2303_type_data { + const char *name; + speed_t max_baud_rate; + long unsigned int quirks; + unsigned int no_autoxonxoff: 1; + unsigned int no_divisors: 1; + unsigned int alt_divisors: 1; +}; + +struct pl2303_serial_private { + const struct pl2303_type_data *type; + long unsigned int quirks; +}; + +struct pl2303_private { + spinlock_t lock; + u8 line_control; + u8 line_status; + u8 line_settings[7]; +}; + +struct typec_retimer_desc { + struct fwnode_handle *fwnode; + typec_retimer_set_fn_t set; + const char *name; + void *drvdata; +}; + +struct mousedev_hw_data { + int dx; + int dy; + int dz; + int x; + int y; + int abs_event; + long unsigned int buttons; +}; + +struct mousedev { + int open; + struct input_handle handle; + wait_queue_head_t wait; + struct list_head client_list; + spinlock_t client_lock; + struct mutex mutex; + struct device dev; + struct cdev cdev; + bool exist; + struct list_head mixdev_node; + bool opened_by_mixdev; + struct mousedev_hw_data packet; + unsigned int pkt_count; + int old_x[4]; + int old_y[4]; + int frac_dx; + int frac_dy; + long unsigned int touch; + int (*open_device)(struct mousedev *); + void (*close_device)(struct mousedev *); +}; + +enum mousedev_emul { + MOUSEDEV_EMUL_PS2 = 0, + MOUSEDEV_EMUL_IMPS = 1, + MOUSEDEV_EMUL_EXPS = 2, +}; + +struct mousedev_motion { + int dx; + int dy; + int dz; + long unsigned int buttons; +}; + +struct mousedev_client { + struct fasync_struct *fasync; + struct mousedev *mousedev; + struct list_head node; + struct mousedev_motion packets[16]; + unsigned int head; + unsigned int tail; + spinlock_t packet_lock; + int pos_x; + int pos_y; + u8 ps2[6]; + unsigned char ready; + unsigned char buffer; + unsigned char bufsiz; + unsigned char imexseq; + unsigned char impsseq; + enum mousedev_emul mode; + long unsigned int last_buttons; +}; + +enum { + FRACTION_DENOM = 128, +}; + +struct octeon_i2c_reg_offset { + unsigned int sw_twsi; + unsigned int twsi_int; + unsigned int sw_twsi_ext; + unsigned int mode; +}; + +struct octeon_i2c { + wait_queue_head_t queue; + struct i2c_adapter adap; + struct octeon_i2c_reg_offset roff; + struct clk *clk; + int irq; + int hlc_irq; + u32 twsi_freq; + int sys_freq; + void *twsi_base; + struct device *dev; + bool hlc_enabled; + bool broken_irq_mode; + bool broken_irq_check; + void (*int_enable)(struct octeon_i2c *); + void (*int_disable)(struct octeon_i2c *); + void (*hlc_int_enable)(struct octeon_i2c *); + void (*hlc_int_disable)(struct octeon_i2c *); + atomic_t int_enable_cnt; + atomic_t hlc_int_enable_cnt; + struct i2c_smbus_alert_setup alert_data; + struct i2c_client *ara; +}; + +struct trace_event_raw_mmc_request_start { + struct trace_entry ent; + u32 cmd_opcode; + u32 cmd_arg; + unsigned int cmd_flags; + unsigned int cmd_retries; + u32 stop_opcode; + u32 stop_arg; + unsigned int stop_flags; + unsigned int stop_retries; + u32 sbc_opcode; + u32 sbc_arg; + unsigned int sbc_flags; + unsigned int sbc_retries; + unsigned int blocks; + unsigned int blk_addr; + unsigned int blksz; + unsigned int data_flags; + int tag; + unsigned int can_retune; + unsigned int doing_retune; + unsigned int retune_now; + int need_retune; + int hold_retune; + unsigned int retune_period; + struct mmc_request *mrq; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_mmc_request_done { + struct trace_entry ent; + u32 cmd_opcode; + int cmd_err; + u32 cmd_resp[4]; + unsigned int cmd_retries; + u32 stop_opcode; + int stop_err; + u32 stop_resp[4]; + unsigned int stop_retries; + u32 sbc_opcode; + int sbc_err; + u32 sbc_resp[4]; + unsigned int sbc_retries; + unsigned int bytes_xfered; + int data_err; + int tag; + unsigned int can_retune; + unsigned int doing_retune; + unsigned int retune_now; + int need_retune; + int hold_retune; + unsigned int retune_period; + struct mmc_request *mrq; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_data_offsets_mmc_request_start { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_mmc_request_done { + u32 name; + const void *name_ptr_; +}; + +typedef void (*btf_trace_mmc_request_start)(void *, struct mmc_host *, struct mmc_request *); + +typedef void (*btf_trace_mmc_request_done)(void *, struct mmc_host *, struct mmc_request *); + +enum perf_hw_id { + PERF_COUNT_HW_CPU_CYCLES = 0, + PERF_COUNT_HW_INSTRUCTIONS = 1, + PERF_COUNT_HW_CACHE_REFERENCES = 2, + PERF_COUNT_HW_CACHE_MISSES = 3, + PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 4, + PERF_COUNT_HW_BRANCH_MISSES = 5, + PERF_COUNT_HW_BUS_CYCLES = 6, + PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 7, + PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 8, + PERF_COUNT_HW_REF_CPU_CYCLES = 9, + PERF_COUNT_HW_MAX = 10, +}; + +enum perf_hw_cache_id { + PERF_COUNT_HW_CACHE_L1D = 0, + PERF_COUNT_HW_CACHE_L1I = 1, + PERF_COUNT_HW_CACHE_LL = 2, + PERF_COUNT_HW_CACHE_DTLB = 3, + PERF_COUNT_HW_CACHE_ITLB = 4, + PERF_COUNT_HW_CACHE_BPU = 5, + PERF_COUNT_HW_CACHE_NODE = 6, + PERF_COUNT_HW_CACHE_MAX = 7, +}; + +enum perf_hw_cache_op_id { + PERF_COUNT_HW_CACHE_OP_READ = 0, + PERF_COUNT_HW_CACHE_OP_WRITE = 1, + PERF_COUNT_HW_CACHE_OP_PREFETCH = 2, + PERF_COUNT_HW_CACHE_OP_MAX = 3, +}; + +enum perf_hw_cache_op_result_id { + PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0, + PERF_COUNT_HW_CACHE_RESULT_MISS = 1, + PERF_COUNT_HW_CACHE_RESULT_MAX = 2, +}; + +enum armpmu_attr_groups { + ARMPMU_ATTR_GROUP_COMMON = 0, + ARMPMU_ATTR_GROUP_EVENTS = 1, + ARMPMU_ATTR_GROUP_FORMATS = 2, + ARMPMU_ATTR_GROUP_CAPS = 3, + ARMPMU_NR_ATTR_GROUPS = 4, +}; + +struct armv8pmu_probe_info { + struct arm_pmu *pmu; + bool present; +}; + +enum { + TCA_FLOWER_KEY_CT_FLAGS_NEW = 1, + TCA_FLOWER_KEY_CT_FLAGS_ESTABLISHED = 2, + TCA_FLOWER_KEY_CT_FLAGS_RELATED = 4, + TCA_FLOWER_KEY_CT_FLAGS_TRACKED = 8, + TCA_FLOWER_KEY_CT_FLAGS_INVALID = 16, + TCA_FLOWER_KEY_CT_FLAGS_REPLY = 32, + __TCA_FLOWER_KEY_CT_FLAGS_MAX = 33, +}; + +enum flow_dissect_ret { + FLOW_DISSECT_RET_OUT_GOOD = 0, + FLOW_DISSECT_RET_OUT_BAD = 1, + FLOW_DISSECT_RET_PROTO_AGAIN = 2, + FLOW_DISSECT_RET_IPPROTO_AGAIN = 3, + FLOW_DISSECT_RET_CONTINUE = 4, +}; + +struct flow_dissector_key_hash { + u32 hash; +}; + +struct flow_dissector_key_num_of_vlans { + u8 num_of_vlans; +}; + +struct flow_dissector_key_cfm { + u8 mdl_ver; + u8 opcode; +}; + +enum { + BPF_FLOW_DISSECTOR_F_PARSE_1ST_FRAG = 1, + BPF_FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL = 2, + BPF_FLOW_DISSECTOR_F_STOP_AT_ENCAP = 4, +}; + +struct gre_full_hdr { + struct gre_base_hdr fixed_header; + __be16 csum; + __be16 reserved1; + __be32 key; + __be32 seq; +}; + +struct pptp_gre_header { + struct gre_base_hdr gre_hd; + __be16 payload_len; + __be16 call_id; + __be32 seq; + __be32 ack; +}; + +struct tipc_basic_hdr { + __be32 w[4]; +}; + +struct hsr_tag { + __be16 path_and_LSDU_size; + __be16 sequence_nr; + __be16 encap_proto; +}; + +struct mpls_label { + __be32 entry; +}; + +struct clock_identity { + u8 id[8]; +}; + +struct port_identity { + struct clock_identity clock_identity; + __be16 port_number; +}; + +struct ptp_header { + u8 tsmt; + u8 ver; + __be16 message_length; + u8 domain_number; + u8 reserved1; + u8 flag_field[2]; + __be64 correction; + __be32 reserved2; + struct port_identity source_port_identity; + __be16 sequence_id; + u8 control; + u8 log_message_interval; +} __attribute__((packed)); + +enum batadv_packettype { + BATADV_IV_OGM = 0, + BATADV_BCAST = 1, + BATADV_CODED = 2, + BATADV_ELP = 3, + BATADV_OGM2 = 4, + BATADV_MCAST = 5, + BATADV_UNICAST = 64, + BATADV_UNICAST_FRAG = 65, + BATADV_UNICAST_4ADDR = 66, + BATADV_ICMP = 67, + BATADV_UNICAST_TVLV = 68, +}; + +struct batadv_unicast_packet { + __u8 packet_type; + __u8 version; + __u8 ttl; + __u8 ttvn; + __u8 dest[6]; +}; + +struct _flow_keys_digest_data { + __be16 n_proto; + u8 ip_proto; + u8 padding; + __be32 ports; + __be32 src; + __be32 dst; +}; + +enum { + NETDEV_A_PAGE_POOL_STATS_INFO = 1, + NETDEV_A_PAGE_POOL_STATS_ALLOC_FAST = 8, + NETDEV_A_PAGE_POOL_STATS_ALLOC_SLOW = 9, + NETDEV_A_PAGE_POOL_STATS_ALLOC_SLOW_HIGH_ORDER = 10, + NETDEV_A_PAGE_POOL_STATS_ALLOC_EMPTY = 11, + NETDEV_A_PAGE_POOL_STATS_ALLOC_REFILL = 12, + NETDEV_A_PAGE_POOL_STATS_ALLOC_WAIVE = 13, + NETDEV_A_PAGE_POOL_STATS_RECYCLE_CACHED = 14, + NETDEV_A_PAGE_POOL_STATS_RECYCLE_CACHE_FULL = 15, + NETDEV_A_PAGE_POOL_STATS_RECYCLE_RING = 16, + NETDEV_A_PAGE_POOL_STATS_RECYCLE_RING_FULL = 17, + NETDEV_A_PAGE_POOL_STATS_RECYCLE_RELEASED_REFCNT = 18, + __NETDEV_A_PAGE_POOL_STATS_MAX = 19, + NETDEV_A_PAGE_POOL_STATS_MAX = 18, +}; + +struct trace_event_raw_kfree_skb { + struct trace_entry ent; + void *skbaddr; + void *location; + void *rx_sk; + short unsigned int protocol; + enum skb_drop_reason reason; + char __data[0]; +}; + +struct trace_event_raw_consume_skb { + struct trace_entry ent; + void *skbaddr; + void *location; + char __data[0]; +}; + +struct trace_event_raw_skb_copy_datagram_iovec { + struct trace_entry ent; + const void *skbaddr; + int len; + char __data[0]; +}; + +struct trace_event_data_offsets_kfree_skb {}; + +struct trace_event_data_offsets_consume_skb {}; + +struct trace_event_data_offsets_skb_copy_datagram_iovec {}; + +typedef void (*btf_trace_kfree_skb)(void *, struct sk_buff *, void *, enum skb_drop_reason, struct sock *); + +typedef void (*btf_trace_consume_skb)(void *, struct sk_buff *, void *); + +typedef void (*btf_trace_skb_copy_datagram_iovec)(void *, const struct sk_buff *, int); + +struct trace_event_raw_net_dev_start_xmit { + struct trace_entry ent; + u32 __data_loc_name; + u16 queue_mapping; + const void *skbaddr; + bool vlan_tagged; + u16 vlan_proto; + u16 vlan_tci; + u16 protocol; + u8 ip_summed; + unsigned int len; + unsigned int data_len; + int network_offset; + bool transport_offset_valid; + int transport_offset; + u8 tx_flags; + u16 gso_size; + u16 gso_segs; + u16 gso_type; + char __data[0]; +}; + +struct trace_event_raw_net_dev_xmit { + struct trace_entry ent; + void *skbaddr; + unsigned int len; + int rc; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_net_dev_xmit_timeout { + struct trace_entry ent; + u32 __data_loc_name; + u32 __data_loc_driver; + int queue_index; + char __data[0]; +}; + +struct trace_event_raw_net_dev_template { + struct trace_entry ent; + void *skbaddr; + unsigned int len; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_net_dev_rx_verbose_template { + struct trace_entry ent; + u32 __data_loc_name; + unsigned int napi_id; + u16 queue_mapping; + const void *skbaddr; + bool vlan_tagged; + u16 vlan_proto; + u16 vlan_tci; + u16 protocol; + u8 ip_summed; + u32 hash; + bool l4_hash; + unsigned int len; + unsigned int data_len; + unsigned int truesize; + bool mac_header_valid; + int mac_header; + unsigned char nr_frags; + u16 gso_size; + u16 gso_type; + char __data[0]; +}; + +struct trace_event_raw_net_dev_rx_exit_template { + struct trace_entry ent; + int ret; + char __data[0]; +}; + +struct trace_event_data_offsets_net_dev_start_xmit { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_net_dev_xmit { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_net_dev_xmit_timeout { + u32 name; + const void *name_ptr_; + u32 driver; + const void *driver_ptr_; +}; + +struct trace_event_data_offsets_net_dev_template { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_net_dev_rx_verbose_template { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_net_dev_rx_exit_template {}; + +typedef void (*btf_trace_net_dev_start_xmit)(void *, const struct sk_buff *, const struct net_device *); + +typedef void (*btf_trace_net_dev_xmit)(void *, struct sk_buff *, int, struct net_device *, unsigned int); + +typedef void (*btf_trace_net_dev_xmit_timeout)(void *, struct net_device *, int); + +typedef void (*btf_trace_net_dev_queue)(void *, struct sk_buff *); + +typedef void (*btf_trace_netif_receive_skb)(void *, struct sk_buff *); + +typedef void (*btf_trace_netif_rx)(void *, struct sk_buff *); + +typedef void (*btf_trace_napi_gro_frags_entry)(void *, const struct sk_buff *); + +typedef void (*btf_trace_napi_gro_receive_entry)(void *, const struct sk_buff *); + +typedef void (*btf_trace_netif_receive_skb_entry)(void *, const struct sk_buff *); + +typedef void (*btf_trace_netif_receive_skb_list_entry)(void *, const struct sk_buff *); + +typedef void (*btf_trace_netif_rx_entry)(void *, const struct sk_buff *); + +typedef void (*btf_trace_napi_gro_frags_exit)(void *, int); + +typedef void (*btf_trace_napi_gro_receive_exit)(void *, int); + +typedef void (*btf_trace_netif_receive_skb_exit)(void *, int); + +typedef void (*btf_trace_netif_rx_exit)(void *, int); + +typedef void (*btf_trace_netif_receive_skb_list_exit)(void *, int); + +struct trace_event_raw_napi_poll { + struct trace_entry ent; + struct napi_struct *napi; + u32 __data_loc_dev_name; + int work; + int budget; + char __data[0]; +}; + +struct trace_event_raw_dql_stall_detected { + struct trace_entry ent; + short unsigned int thrs; + unsigned int len; + long unsigned int last_reap; + long unsigned int hist_head; + long unsigned int now; + long unsigned int hist[4]; + char __data[0]; +}; + +struct trace_event_data_offsets_napi_poll { + u32 dev_name; + const void *dev_name_ptr_; +}; + +struct trace_event_data_offsets_dql_stall_detected {}; + +typedef void (*btf_trace_napi_poll)(void *, struct napi_struct *, int, int); + +typedef void (*btf_trace_dql_stall_detected)(void *, short unsigned int, unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int *); + +struct trace_event_raw_sock_rcvqueue_full { + struct trace_entry ent; + int rmem_alloc; + unsigned int truesize; + int sk_rcvbuf; + char __data[0]; +}; + +struct trace_event_raw_sock_exceed_buf_limit { + struct trace_entry ent; + char name[32]; + long int sysctl_mem[3]; + long int allocated; + int sysctl_rmem; + int rmem_alloc; + int sysctl_wmem; + int wmem_alloc; + int wmem_queued; + int kind; + char __data[0]; +}; + +struct trace_event_raw_inet_sock_set_state { + struct trace_entry ent; + const void *skaddr; + int oldstate; + int newstate; + __u16 sport; + __u16 dport; + __u16 family; + __u16 protocol; + __u8 saddr[4]; + __u8 daddr[4]; + __u8 saddr_v6[16]; + __u8 daddr_v6[16]; + char __data[0]; +}; + +struct trace_event_raw_inet_sk_error_report { + struct trace_entry ent; + int error; + __u16 sport; + __u16 dport; + __u16 family; + __u16 protocol; + __u8 saddr[4]; + __u8 daddr[4]; + __u8 saddr_v6[16]; + __u8 daddr_v6[16]; + char __data[0]; +}; + +struct trace_event_raw_sk_data_ready { + struct trace_entry ent; + const void *skaddr; + __u16 family; + __u16 protocol; + long unsigned int ip; + char __data[0]; +}; + +struct trace_event_raw_sock_msg_length { + struct trace_entry ent; + void *sk; + __u16 family; + __u16 protocol; + int ret; + int flags; + char __data[0]; +}; + +struct trace_event_data_offsets_sock_rcvqueue_full {}; + +struct trace_event_data_offsets_sock_exceed_buf_limit {}; + +struct trace_event_data_offsets_inet_sock_set_state {}; + +struct trace_event_data_offsets_inet_sk_error_report {}; + +struct trace_event_data_offsets_sk_data_ready {}; + +struct trace_event_data_offsets_sock_msg_length {}; + +typedef void (*btf_trace_sock_rcvqueue_full)(void *, struct sock *, struct sk_buff *); + +typedef void (*btf_trace_sock_exceed_buf_limit)(void *, struct sock *, struct proto *, long int, int); + +typedef void (*btf_trace_inet_sock_set_state)(void *, const struct sock *, const int, const int); + +typedef void (*btf_trace_inet_sk_error_report)(void *, const struct sock *); + +typedef void (*btf_trace_sk_data_ready)(void *, const struct sock *); + +typedef void (*btf_trace_sock_send_length)(void *, struct sock *, int, int); + +typedef void (*btf_trace_sock_recv_length)(void *, struct sock *, int, int); + +struct trace_event_raw_udp_fail_queue_rcv_skb { + struct trace_entry ent; + int rc; + __u16 sport; + __u16 dport; + __u16 family; + __u8 saddr[28]; + __u8 daddr[28]; + char __data[0]; +}; + +struct trace_event_data_offsets_udp_fail_queue_rcv_skb {}; + +typedef void (*btf_trace_udp_fail_queue_rcv_skb)(void *, int, struct sock *, struct sk_buff *); + +struct trace_event_raw_tcp_event_sk_skb { + struct trace_entry ent; + const void *skbaddr; + const void *skaddr; + int state; + __u16 sport; + __u16 dport; + __u16 family; + __u8 saddr[4]; + __u8 daddr[4]; + __u8 saddr_v6[16]; + __u8 daddr_v6[16]; + char __data[0]; +}; + +struct trace_event_raw_tcp_send_reset { + struct trace_entry ent; + const void *skbaddr; + const void *skaddr; + int state; + enum sk_rst_reason reason; + __u8 saddr[28]; + __u8 daddr[28]; + char __data[0]; +}; + +struct trace_event_raw_tcp_event_sk { + struct trace_entry ent; + const void *skaddr; + __u16 sport; + __u16 dport; + __u16 family; + __u8 saddr[4]; + __u8 daddr[4]; + __u8 saddr_v6[16]; + __u8 daddr_v6[16]; + __u64 sock_cookie; + char __data[0]; +}; + +struct trace_event_raw_tcp_retransmit_synack { + struct trace_entry ent; + const void *skaddr; + const void *req; + __u16 sport; + __u16 dport; + __u16 family; + __u8 saddr[4]; + __u8 daddr[4]; + __u8 saddr_v6[16]; + __u8 daddr_v6[16]; + char __data[0]; +}; + +struct trace_event_raw_tcp_probe { + struct trace_entry ent; + __u8 saddr[28]; + __u8 daddr[28]; + __u16 sport; + __u16 dport; + __u16 family; + __u32 mark; + __u16 data_len; + __u32 snd_nxt; + __u32 snd_una; + __u32 snd_cwnd; + __u32 ssthresh; + __u32 snd_wnd; + __u32 srtt; + __u32 rcv_wnd; + __u64 sock_cookie; + const void *skbaddr; + const void *skaddr; + char __data[0]; +}; + +struct trace_event_raw_tcp_event_skb { + struct trace_entry ent; + const void *skbaddr; + __u8 saddr[28]; + __u8 daddr[28]; + char __data[0]; +}; + +struct trace_event_raw_tcp_cong_state_set { + struct trace_entry ent; + const void *skaddr; + __u16 sport; + __u16 dport; + __u16 family; + __u8 saddr[4]; + __u8 daddr[4]; + __u8 saddr_v6[16]; + __u8 daddr_v6[16]; + __u8 cong_state; + char __data[0]; +}; + +struct trace_event_raw_tcp_hash_event { + struct trace_entry ent; + __u64 net_cookie; + const void *skbaddr; + const void *skaddr; + int state; + __u8 saddr[28]; + __u8 daddr[28]; + int l3index; + __u16 sport; + __u16 dport; + __u16 family; + bool fin; + bool syn; + bool rst; + bool psh; + bool ack; + char __data[0]; +}; + +struct trace_event_raw_tcp_ao_event { + struct trace_entry ent; + __u64 net_cookie; + const void *skbaddr; + const void *skaddr; + int state; + __u8 saddr[28]; + __u8 daddr[28]; + int l3index; + __u16 sport; + __u16 dport; + __u16 family; + bool fin; + bool syn; + bool rst; + bool psh; + bool ack; + __u8 keyid; + __u8 rnext; + __u8 maclen; + char __data[0]; +}; + +struct trace_event_raw_tcp_ao_event_sk { + struct trace_entry ent; + __u64 net_cookie; + const void *skaddr; + int state; + __u8 saddr[28]; + __u8 daddr[28]; + __u16 sport; + __u16 dport; + __u16 family; + __u8 keyid; + __u8 rnext; + char __data[0]; +}; + +struct trace_event_raw_tcp_ao_event_sne { + struct trace_entry ent; + __u64 net_cookie; + const void *skaddr; + int state; + __u8 saddr[28]; + __u8 daddr[28]; + __u16 sport; + __u16 dport; + __u16 family; + __u32 new_sne; + char __data[0]; +}; + +struct trace_event_data_offsets_tcp_event_sk_skb {}; + +struct trace_event_data_offsets_tcp_send_reset {}; + +struct trace_event_data_offsets_tcp_event_sk {}; + +struct trace_event_data_offsets_tcp_retransmit_synack {}; + +struct trace_event_data_offsets_tcp_probe {}; + +struct trace_event_data_offsets_tcp_event_skb {}; + +struct trace_event_data_offsets_tcp_cong_state_set {}; + +struct trace_event_data_offsets_tcp_hash_event {}; + +struct trace_event_data_offsets_tcp_ao_event {}; + +struct trace_event_data_offsets_tcp_ao_event_sk {}; + +struct trace_event_data_offsets_tcp_ao_event_sne {}; + +typedef void (*btf_trace_tcp_retransmit_skb)(void *, const struct sock *, const struct sk_buff *); + +typedef void (*btf_trace_tcp_send_reset)(void *, const struct sock *, const struct sk_buff *, const enum sk_rst_reason); + +typedef void (*btf_trace_tcp_receive_reset)(void *, struct sock *); + +typedef void (*btf_trace_tcp_destroy_sock)(void *, struct sock *); + +typedef void (*btf_trace_tcp_rcv_space_adjust)(void *, struct sock *); + +typedef void (*btf_trace_tcp_retransmit_synack)(void *, const struct sock *, const struct request_sock *); + +typedef void (*btf_trace_tcp_probe)(void *, struct sock *, struct sk_buff *); + +typedef void (*btf_trace_tcp_bad_csum)(void *, const struct sk_buff *); + +typedef void (*btf_trace_tcp_cong_state_set)(void *, struct sock *, const u8); + +typedef void (*btf_trace_tcp_hash_bad_header)(void *, const struct sock *, const struct sk_buff *); + +typedef void (*btf_trace_tcp_hash_md5_required)(void *, const struct sock *, const struct sk_buff *); + +typedef void (*btf_trace_tcp_hash_md5_unexpected)(void *, const struct sock *, const struct sk_buff *); + +typedef void (*btf_trace_tcp_hash_md5_mismatch)(void *, const struct sock *, const struct sk_buff *); + +typedef void (*btf_trace_tcp_hash_ao_required)(void *, const struct sock *, const struct sk_buff *); + +typedef void (*btf_trace_tcp_ao_handshake_failure)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); + +typedef void (*btf_trace_tcp_ao_wrong_maclen)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); + +typedef void (*btf_trace_tcp_ao_mismatch)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); + +typedef void (*btf_trace_tcp_ao_key_not_found)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); + +typedef void (*btf_trace_tcp_ao_rnext_request)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); + +typedef void (*btf_trace_tcp_ao_synack_no_key)(void *, const struct sock *, const __u8, const __u8); + +typedef void (*btf_trace_tcp_ao_snd_sne_update)(void *, const struct sock *, __u32); + +typedef void (*btf_trace_tcp_ao_rcv_sne_update)(void *, const struct sock *, __u32); + +struct trace_event_raw_fib_table_lookup { + struct trace_entry ent; + u32 tb_id; + int err; + int oif; + int iif; + u8 proto; + __u8 tos; + __u8 scope; + __u8 flags; + __u8 src[4]; + __u8 dst[4]; + __u8 gw4[4]; + __u8 gw6[16]; + u16 sport; + u16 dport; + char name[16]; + char __data[0]; +}; + +struct trace_event_data_offsets_fib_table_lookup {}; + +typedef void (*btf_trace_fib_table_lookup)(void *, u32, const struct flowi4 *, const struct fib_nh_common *, int); + +struct trace_event_raw_qdisc_dequeue { + struct trace_entry ent; + struct Qdisc *qdisc; + const struct netdev_queue *txq; + int packets; + void *skbaddr; + int ifindex; + u32 handle; + u32 parent; + long unsigned int txq_state; + char __data[0]; +}; + +struct trace_event_raw_qdisc_enqueue { + struct trace_entry ent; + struct Qdisc *qdisc; + const struct netdev_queue *txq; + void *skbaddr; + int ifindex; + u32 handle; + u32 parent; + char __data[0]; +}; + +struct trace_event_raw_qdisc_reset { + struct trace_entry ent; + u32 __data_loc_dev; + u32 __data_loc_kind; + u32 parent; + u32 handle; + char __data[0]; +}; + +struct trace_event_raw_qdisc_destroy { + struct trace_entry ent; + u32 __data_loc_dev; + u32 __data_loc_kind; + u32 parent; + u32 handle; + char __data[0]; +}; + +struct trace_event_raw_qdisc_create { + struct trace_entry ent; + u32 __data_loc_dev; + u32 __data_loc_kind; + u32 parent; + char __data[0]; +}; + +struct trace_event_data_offsets_qdisc_dequeue {}; + +struct trace_event_data_offsets_qdisc_enqueue {}; + +struct trace_event_data_offsets_qdisc_reset { + u32 dev; + const void *dev_ptr_; + u32 kind; + const void *kind_ptr_; +}; + +struct trace_event_data_offsets_qdisc_destroy { + u32 dev; + const void *dev_ptr_; + u32 kind; + const void *kind_ptr_; +}; + +struct trace_event_data_offsets_qdisc_create { + u32 dev; + const void *dev_ptr_; + u32 kind; + const void *kind_ptr_; +}; + +typedef void (*btf_trace_qdisc_dequeue)(void *, struct Qdisc *, const struct netdev_queue *, int, struct sk_buff *); + +typedef void (*btf_trace_qdisc_enqueue)(void *, struct Qdisc *, const struct netdev_queue *, struct sk_buff *); + +typedef void (*btf_trace_qdisc_reset)(void *, struct Qdisc *); + +typedef void (*btf_trace_qdisc_destroy)(void *, struct Qdisc *); + +typedef void (*btf_trace_qdisc_create)(void *, const struct Qdisc_ops *, struct net_device *, u32); + +struct trace_event_raw_br_fdb_add { + struct trace_entry ent; + u8 ndm_flags; + u32 __data_loc_dev; + unsigned char addr[6]; + u16 vid; + u16 nlh_flags; + char __data[0]; +}; + +struct trace_event_raw_br_fdb_external_learn_add { + struct trace_entry ent; + u32 __data_loc_br_dev; + u32 __data_loc_dev; + unsigned char addr[6]; + u16 vid; + char __data[0]; +}; + +struct trace_event_raw_fdb_delete { + struct trace_entry ent; + u32 __data_loc_br_dev; + u32 __data_loc_dev; + unsigned char addr[6]; + u16 vid; + char __data[0]; +}; + +struct trace_event_raw_br_fdb_update { + struct trace_entry ent; + u32 __data_loc_br_dev; + u32 __data_loc_dev; + unsigned char addr[6]; + u16 vid; + long unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_br_mdb_full { + struct trace_entry ent; + u32 __data_loc_dev; + int af; + u16 vid; + __u8 src[16]; + __u8 grp[16]; + __u8 grpmac[6]; + char __data[0]; +}; + +struct trace_event_data_offsets_br_fdb_add { + u32 dev; + const void *dev_ptr_; +}; + +struct trace_event_data_offsets_br_fdb_external_learn_add { + u32 br_dev; + const void *br_dev_ptr_; + u32 dev; + const void *dev_ptr_; +}; + +struct trace_event_data_offsets_fdb_delete { + u32 br_dev; + const void *br_dev_ptr_; + u32 dev; + const void *dev_ptr_; +}; + +struct trace_event_data_offsets_br_fdb_update { + u32 br_dev; + const void *br_dev_ptr_; + u32 dev; + const void *dev_ptr_; +}; + +struct trace_event_data_offsets_br_mdb_full { + u32 dev; + const void *dev_ptr_; +}; + +typedef void (*btf_trace_br_fdb_add)(void *, struct ndmsg *, struct net_device *, const unsigned char *, u16, u16); + +typedef void (*btf_trace_br_fdb_external_learn_add)(void *, struct net_bridge *, struct net_bridge_port *, const unsigned char *, u16); + +typedef void (*btf_trace_fdb_delete)(void *, struct net_bridge *, struct net_bridge_fdb_entry *); + +typedef void (*btf_trace_br_fdb_update)(void *, struct net_bridge *, struct net_bridge_port *, const unsigned char *, u16, long unsigned int); + +typedef void (*btf_trace_br_mdb_full)(void *, const struct net_device *, const struct br_ip *); + +struct trace_event_raw_page_pool_release { + struct trace_entry ent; + const struct page_pool *pool; + s32 inflight; + u32 hold; + u32 release; + u64 cnt; + char __data[0]; +}; + +struct trace_event_raw_page_pool_state_release { + struct trace_entry ent; + const struct page_pool *pool; + long unsigned int netmem; + u32 release; + long unsigned int pfn; + char __data[0]; +}; + +struct trace_event_raw_page_pool_state_hold { + struct trace_entry ent; + const struct page_pool *pool; + long unsigned int netmem; + u32 hold; + long unsigned int pfn; + char __data[0]; +}; + +struct trace_event_raw_page_pool_update_nid { + struct trace_entry ent; + const struct page_pool *pool; + int pool_nid; + int new_nid; + char __data[0]; +}; + +struct trace_event_data_offsets_page_pool_release {}; + +struct trace_event_data_offsets_page_pool_state_release {}; + +struct trace_event_data_offsets_page_pool_state_hold {}; + +struct trace_event_data_offsets_page_pool_update_nid {}; + +typedef void (*btf_trace_page_pool_release)(void *, const struct page_pool *, s32, u32, u32); + +typedef void (*btf_trace_page_pool_state_release)(void *, const struct page_pool *, netmem_ref, u32); + +typedef void (*btf_trace_page_pool_state_hold)(void *, const struct page_pool *, netmem_ref, u32); + +typedef void (*btf_trace_page_pool_update_nid)(void *, const struct page_pool *, int); + +struct trace_event_raw_neigh_create { + struct trace_entry ent; + u32 family; + u32 __data_loc_dev; + int entries; + u8 created; + u8 gc_exempt; + u8 primary_key4[4]; + u8 primary_key6[16]; + char __data[0]; +}; + +struct trace_event_raw_neigh_update { + struct trace_entry ent; + u32 family; + u32 __data_loc_dev; + u8 lladdr[32]; + u8 lladdr_len; + u8 flags; + u8 nud_state; + u8 type; + u8 dead; + int refcnt; + __u8 primary_key4[4]; + __u8 primary_key6[16]; + long unsigned int confirmed; + long unsigned int updated; + long unsigned int used; + u8 new_lladdr[32]; + u8 new_state; + u32 update_flags; + u32 pid; + char __data[0]; +}; + +struct trace_event_raw_neigh__update { + struct trace_entry ent; + u32 family; + u32 __data_loc_dev; + u8 lladdr[32]; + u8 lladdr_len; + u8 flags; + u8 nud_state; + u8 type; + u8 dead; + int refcnt; + __u8 primary_key4[4]; + __u8 primary_key6[16]; + long unsigned int confirmed; + long unsigned int updated; + long unsigned int used; + u32 err; + char __data[0]; +}; + +struct trace_event_data_offsets_neigh_create { + u32 dev; + const void *dev_ptr_; +}; + +struct trace_event_data_offsets_neigh_update { + u32 dev; + const void *dev_ptr_; +}; + +struct trace_event_data_offsets_neigh__update { + u32 dev; + const void *dev_ptr_; +}; + +typedef void (*btf_trace_neigh_create)(void *, struct neigh_table *, struct net_device *, const void *, const struct neighbour *, bool); + +typedef void (*btf_trace_neigh_update)(void *, struct neighbour *, const u8 *, u8, u32, u32); + +typedef void (*btf_trace_neigh_update_done)(void *, struct neighbour *, int); + +typedef void (*btf_trace_neigh_timer_handler)(void *, struct neighbour *, int); + +typedef void (*btf_trace_neigh_event_send_done)(void *, struct neighbour *, int); + +typedef void (*btf_trace_neigh_event_send_dead)(void *, struct neighbour *, int); + +typedef void (*btf_trace_neigh_cleanup_and_release)(void *, struct neighbour *, int); + +struct tc_hfsc_qopt { + __u16 defcls; +}; + +struct tc_service_curve { + __u32 m1; + __u32 d; + __u32 m2; +}; + +struct tc_hfsc_stats { + __u64 work; + __u64 rtwork; + __u32 period; + __u32 level; +}; + +enum { + TCA_HFSC_UNSPEC = 0, + TCA_HFSC_RSC = 1, + TCA_HFSC_FSC = 2, + TCA_HFSC_USC = 3, + __TCA_HFSC_MAX = 4, +}; + +struct internal_sc { + u64 sm1; + u64 ism1; + u64 dx; + u64 dy; + u64 sm2; + u64 ism2; +}; + +struct runtime_sc { + u64 x; + u64 y; + u64 sm1; + u64 ism1; + u64 dx; + u64 dy; + u64 sm2; + u64 ism2; +}; + +enum hfsc_class_flags { + HFSC_RSC = 1, + HFSC_FSC = 2, + HFSC_USC = 4, +}; + +struct hfsc_sched; + +struct hfsc_class { + struct Qdisc_class_common cl_common; + long: 64; + struct gnet_stats_basic_sync bstats; + struct gnet_stats_queue qstats; + struct net_rate_estimator *rate_est; + struct tcf_proto *filter_list; + struct tcf_block *block; + unsigned int level; + struct hfsc_sched *sched; + struct hfsc_class *cl_parent; + struct list_head siblings; + struct list_head children; + struct Qdisc *qdisc; + struct rb_node el_node; + struct rb_root vt_tree; + struct rb_node vt_node; + struct rb_root cf_tree; + struct rb_node cf_node; + u64 cl_total; + u64 cl_cumul; + u64 cl_d; + u64 cl_e; + u64 cl_vt; + u64 cl_f; + u64 cl_myf; + u64 cl_cfmin; + u64 cl_cvtmin; + u64 cl_vtadj; + u64 cl_cvtoff; + struct internal_sc cl_rsc; + struct internal_sc cl_fsc; + struct internal_sc cl_usc; + struct runtime_sc cl_deadline; + struct runtime_sc cl_eligible; + struct runtime_sc cl_virtual; + struct runtime_sc cl_ulimit; + u8 cl_flags; + u32 cl_vtperiod; + u32 cl_parentperiod; + u32 cl_nactive; +}; + +struct hfsc_sched { + u16 defcls; + long: 64; + struct hfsc_class root; + struct Qdisc_class_hash clhash; + struct rb_root eligible; + struct qdisc_watchdog watchdog; + long: 64; +}; + +enum { + TCA_DRR_UNSPEC = 0, + TCA_DRR_QUANTUM = 1, + __TCA_DRR_MAX = 2, +}; + +struct tc_drr_stats { + __u32 deficit; +}; + +struct drr_class { + struct Qdisc_class_common common; + long: 64; + struct gnet_stats_basic_sync bstats; + struct gnet_stats_queue qstats; + struct net_rate_estimator *rate_est; + struct list_head alist; + struct Qdisc *qdisc; + u32 quantum; + u32 deficit; +}; + +struct drr_sched { + struct list_head active; + struct tcf_proto *filter_list; + struct tcf_block *block; + struct Qdisc_class_hash clhash; +}; + +struct ethtool_cmd { + __u32 cmd; + __u32 supported; + __u32 advertising; + __u16 speed; + __u8 duplex; + __u8 port; + __u8 phy_address; + __u8 transceiver; + __u8 autoneg; + __u8 mdio_support; + __u32 maxtxpkt; + __u32 maxrxpkt; + __u16 speed_hi; + __u8 eth_tp_mdix; + __u8 eth_tp_mdix_ctrl; + __u32 lp_advertising; + __u32 reserved[2]; +}; + +struct ethtool_value { + __u32 cmd; + __u32 data; +}; + +enum tunable_type_id { + ETHTOOL_TUNABLE_UNSPEC = 0, + ETHTOOL_TUNABLE_U8 = 1, + ETHTOOL_TUNABLE_U16 = 2, + ETHTOOL_TUNABLE_U32 = 3, + ETHTOOL_TUNABLE_U64 = 4, + ETHTOOL_TUNABLE_STRING = 5, + ETHTOOL_TUNABLE_S8 = 6, + ETHTOOL_TUNABLE_S16 = 7, + ETHTOOL_TUNABLE_S32 = 8, + ETHTOOL_TUNABLE_S64 = 9, +}; + +struct ethtool_eee { + __u32 cmd; + __u32 supported; + __u32 advertised; + __u32 lp_advertised; + __u32 eee_active; + __u32 eee_enabled; + __u32 tx_lpi_enabled; + __u32 tx_lpi_timer; + __u32 reserved[2]; +}; + +struct ethtool_gstrings { + __u32 cmd; + __u32 string_set; + __u32 len; + __u8 data[0]; +}; + +struct ethtool_sset_info { + __u32 cmd; + __u32 reserved; + __u64 sset_mask; + __u32 data[0]; +}; + +struct ethtool_perm_addr { + __u32 cmd; + __u32 size; + __u8 data[0]; +}; + +enum ethtool_flags { + ETH_FLAG_TXVLAN = 128, + ETH_FLAG_RXVLAN = 256, + ETH_FLAG_LRO = 32768, + ETH_FLAG_NTUPLE = 134217728, + ETH_FLAG_RXHASH = 268435456, +}; + +struct ethtool_rxfh { + __u32 cmd; + __u32 rss_context; + __u32 indir_size; + __u32 key_size; + __u8 hfunc; + __u8 input_xfrm; + __u8 rsvd8[2]; + __u32 rsvd32; + __u32 rss_config[0]; +}; + +struct ethtool_get_features_block { + __u32 available; + __u32 requested; + __u32 active; + __u32 never_changed; +}; + +struct ethtool_gfeatures { + __u32 cmd; + __u32 size; + struct ethtool_get_features_block features[0]; +}; + +struct ethtool_set_features_block { + __u32 valid; + __u32 requested; +}; + +struct ethtool_sfeatures { + __u32 cmd; + __u32 size; + struct ethtool_set_features_block features[0]; +}; + +struct ethtool_ts_info { + __u32 cmd; + __u32 so_timestamping; + __s32 phc_index; + __u32 tx_types; + __u32 tx_reserved[3]; + __u32 rx_filters; + __u32 rx_reserved[3]; +}; + +enum ethtool_sfeatures_retval_bits { + ETHTOOL_F_UNSUPPORTED__BIT = 0, + ETHTOOL_F_WISH__BIT = 1, + ETHTOOL_F_COMPAT__BIT = 2, +}; + +struct ethtool_per_queue_op { + __u32 cmd; + __u32 sub_command; + __u32 queue_mask[128]; + char data[0]; +}; + +struct ethtool_rx_flow_rule { + struct flow_rule *rule; + long unsigned int priv[0]; +}; + +struct ethtool_rx_flow_spec_input { + const struct ethtool_rx_flow_spec *fs; + u32 rss_ctx; +}; + +struct ethtool_devlink_compat { + struct devlink *devlink; + union { + struct ethtool_flash efl; + struct ethtool_drvinfo info; + }; +}; + +struct ethtool_link_usettings { + struct ethtool_link_settings base; + struct { + __u32 supported[4]; + __u32 advertising[4]; + __u32 lp_advertising[4]; + } link_modes; +}; + +struct ethtool_rx_flow_key { + struct flow_dissector_key_basic basic; + union { + struct flow_dissector_key_ipv4_addrs ipv4; + struct flow_dissector_key_ipv6_addrs ipv6; + }; + struct flow_dissector_key_ports tp; + struct flow_dissector_key_ip ip; + struct flow_dissector_key_vlan vlan; + struct flow_dissector_key_eth_addrs eth_addrs; +}; + +struct ethtool_rx_flow_match { + struct flow_dissector dissector; + struct ethtool_rx_flow_key key; + struct ethtool_rx_flow_key mask; +}; + +enum ethtool_module_fw_flash_status { + ETHTOOL_MODULE_FW_FLASH_STATUS_STARTED = 1, + ETHTOOL_MODULE_FW_FLASH_STATUS_IN_PROGRESS = 2, + ETHTOOL_MODULE_FW_FLASH_STATUS_COMPLETED = 3, + ETHTOOL_MODULE_FW_FLASH_STATUS_ERROR = 4, +}; + +enum { + SFF8024_ID_UNK = 0, + SFF8024_ID_SFF_8472 = 2, + SFF8024_ID_SFP = 3, + SFF8024_ID_DWDM_SFP = 11, + SFF8024_ID_QSFP_8438 = 12, + SFF8024_ID_QSFP_8436_8636 = 13, + SFF8024_ID_QSFP28_8636 = 17, + SFF8024_ID_QSFP_DD = 24, + SFF8024_ID_OSFP = 25, + SFF8024_ID_DSFP = 27, + SFF8024_ID_QSFP_PLUS_CMIS = 30, + SFF8024_ID_SFP_DD_CMIS = 31, + SFF8024_ID_SFP_PLUS_CMIS = 32, + SFF8024_ENCODING_UNSPEC = 0, + SFF8024_ENCODING_8B10B = 1, + SFF8024_ENCODING_4B5B = 2, + SFF8024_ENCODING_NRZ = 3, + SFF8024_ENCODING_8472_MANCHESTER = 4, + SFF8024_ENCODING_8472_SONET = 5, + SFF8024_ENCODING_8472_64B66B = 6, + SFF8024_ENCODING_8436_MANCHESTER = 6, + SFF8024_ENCODING_8436_SONET = 4, + SFF8024_ENCODING_8436_64B66B = 5, + SFF8024_ENCODING_256B257B = 7, + SFF8024_ENCODING_PAM4 = 8, + SFF8024_CONNECTOR_UNSPEC = 0, + SFF8024_CONNECTOR_SC = 1, + SFF8024_CONNECTOR_FIBERJACK = 6, + SFF8024_CONNECTOR_LC = 7, + SFF8024_CONNECTOR_MT_RJ = 8, + SFF8024_CONNECTOR_MU = 9, + SFF8024_CONNECTOR_SG = 10, + SFF8024_CONNECTOR_OPTICAL_PIGTAIL = 11, + SFF8024_CONNECTOR_MPO_1X12 = 12, + SFF8024_CONNECTOR_MPO_2X16 = 13, + SFF8024_CONNECTOR_HSSDC_II = 32, + SFF8024_CONNECTOR_COPPER_PIGTAIL = 33, + SFF8024_CONNECTOR_RJ45 = 34, + SFF8024_CONNECTOR_NOSEPARATE = 35, + SFF8024_CONNECTOR_MXC_2X16 = 36, + SFF8024_ECC_UNSPEC = 0, + SFF8024_ECC_100G_25GAUI_C2M_AOC = 1, + SFF8024_ECC_100GBASE_SR4_25GBASE_SR = 2, + SFF8024_ECC_100GBASE_LR4_25GBASE_LR = 3, + SFF8024_ECC_100GBASE_ER4_25GBASE_ER = 4, + SFF8024_ECC_100GBASE_SR10 = 5, + SFF8024_ECC_100GBASE_CR4 = 11, + SFF8024_ECC_25GBASE_CR_S = 12, + SFF8024_ECC_25GBASE_CR_N = 13, + SFF8024_ECC_10GBASE_T_SFI = 22, + SFF8024_ECC_10GBASE_T_SR = 28, + SFF8024_ECC_5GBASE_T = 29, + SFF8024_ECC_2_5GBASE_T = 30, +}; + +enum { + SFP_PHYS_ID = 0, + SFP_PHYS_EXT_ID = 1, + SFP_PHYS_EXT_ID_SFP = 4, + SFP_CONNECTOR = 2, + SFP_COMPLIANCE = 3, + SFP_ENCODING = 11, + SFP_BR_NOMINAL = 12, + SFP_RATE_ID = 13, + SFF_RID_8079 = 1, + SFF_RID_8431_RX_ONLY = 2, + SFF_RID_8431_TX_ONLY = 4, + SFF_RID_8431 = 6, + SFF_RID_10G8G = 14, + SFP_LINK_LEN_SM_KM = 14, + SFP_LINK_LEN_SM_100M = 15, + SFP_LINK_LEN_50UM_OM2_10M = 16, + SFP_LINK_LEN_62_5UM_OM1_10M = 17, + SFP_LINK_LEN_COPPER_1M = 18, + SFP_LINK_LEN_50UM_OM4_10M = 18, + SFP_LINK_LEN_50UM_OM3_10M = 19, + SFP_VENDOR_NAME = 20, + SFP_VENDOR_OUI = 37, + SFP_VENDOR_PN = 40, + SFP_VENDOR_REV = 56, + SFP_OPTICAL_WAVELENGTH_MSB = 60, + SFP_OPTICAL_WAVELENGTH_LSB = 61, + SFP_CABLE_SPEC = 60, + SFP_CC_BASE = 63, + SFP_OPTIONS = 64, + SFP_OPTIONS_HIGH_POWER_LEVEL = 8192, + SFP_OPTIONS_PAGING_A2 = 4096, + SFP_OPTIONS_RETIMER = 2048, + SFP_OPTIONS_COOLED_XCVR = 1024, + SFP_OPTIONS_POWER_DECL = 512, + SFP_OPTIONS_RX_LINEAR_OUT = 256, + SFP_OPTIONS_RX_DECISION_THRESH = 128, + SFP_OPTIONS_TUNABLE_TX = 64, + SFP_OPTIONS_RATE_SELECT = 32, + SFP_OPTIONS_TX_DISABLE = 16, + SFP_OPTIONS_TX_FAULT = 8, + SFP_OPTIONS_LOS_INVERTED = 4, + SFP_OPTIONS_LOS_NORMAL = 2, + SFP_BR_MAX = 66, + SFP_BR_MIN = 67, + SFP_VENDOR_SN = 68, + SFP_DATECODE = 84, + SFP_DIAGMON = 92, + SFP_DIAGMON_DDM = 64, + SFP_DIAGMON_INT_CAL = 32, + SFP_DIAGMON_EXT_CAL = 16, + SFP_DIAGMON_RXPWR_AVG = 8, + SFP_DIAGMON_ADDRMODE = 4, + SFP_ENHOPTS = 93, + SFP_ENHOPTS_ALARMWARN = 128, + SFP_ENHOPTS_SOFT_TX_DISABLE = 64, + SFP_ENHOPTS_SOFT_TX_FAULT = 32, + SFP_ENHOPTS_SOFT_RX_LOS = 16, + SFP_ENHOPTS_SOFT_RATE_SELECT = 8, + SFP_ENHOPTS_APP_SELECT_SFF8079 = 4, + SFP_ENHOPTS_SOFT_RATE_SFF8431 = 2, + SFP_SFF8472_COMPLIANCE = 94, + SFP_SFF8472_COMPLIANCE_NONE = 0, + SFP_SFF8472_COMPLIANCE_REV9_3 = 1, + SFP_SFF8472_COMPLIANCE_REV9_5 = 2, + SFP_SFF8472_COMPLIANCE_REV10_2 = 3, + SFP_SFF8472_COMPLIANCE_REV10_4 = 4, + SFP_SFF8472_COMPLIANCE_REV11_0 = 5, + SFP_SFF8472_COMPLIANCE_REV11_3 = 6, + SFP_SFF8472_COMPLIANCE_REV11_4 = 7, + SFP_SFF8472_COMPLIANCE_REV12_0 = 8, + SFP_CC_EXT = 95, +}; + +enum ethnl_sock_type { + ETHTOOL_SOCK_TYPE_MODULE_FW_FLASH = 0, +}; + +struct ethnl_sock_priv { + struct net_device *dev; + u32 portid; + enum ethnl_sock_type type; +}; + +struct ethtool_module_fw_flash { + struct list_head list; + netdevice_tracker dev_tracker; + struct work_struct work; + struct ethtool_cmis_fw_update_params fw_update; +}; + +struct module_reply_data { + struct ethnl_reply_data base; + struct ethtool_module_power_mode_params power; +}; + +struct nf_ct_helper_expectfn { + struct list_head head; + const char *name; + void (*expectfn)(struct nf_conn *, struct nf_conntrack_expect *); +}; + +struct nf_conntrack_nat_helper { + struct list_head list; + char mod_name[16]; + struct module *module; +}; + +enum nft_cmp_ops { + NFT_CMP_EQ = 0, + NFT_CMP_NEQ = 1, + NFT_CMP_LT = 2, + NFT_CMP_LTE = 3, + NFT_CMP_GT = 4, + NFT_CMP_GTE = 5, +}; + +enum nft_cmp_attributes { + NFTA_CMP_UNSPEC = 0, + NFTA_CMP_SREG = 1, + NFTA_CMP_OP = 2, + NFTA_CMP_DATA = 3, + __NFTA_CMP_MAX = 4, +}; + +enum nft_offload_reg_flags { + NFT_OFFLOAD_F_NETWORK2HOST = 1, +}; + +struct nft_cmp_expr { + struct nft_data data; + u8 sreg; + u8 len; + enum nft_cmp_ops op: 8; +}; + +union nft_cmp_offload_data { + u16 val16; + u32 val32; + u64 val64; +}; + +enum nft_queue_attributes { + NFTA_QUEUE_UNSPEC = 0, + NFTA_QUEUE_NUM = 1, + NFTA_QUEUE_TOTAL = 2, + NFTA_QUEUE_FLAGS = 3, + NFTA_QUEUE_SREG_QNUM = 4, + __NFTA_QUEUE_MAX = 5, +}; + +struct nft_queue { + u8 sreg_qnum; + u16 queuenum; + u16 queues_total; + u16 flags; +}; + +struct xt_udp { + __u16 spts[2]; + __u16 dpts[2]; + __u8 invflags; +}; + +struct ipt_icmp { + __u8 type; + __u8 code[2]; + __u8 invflags; +}; + +struct ip6t_icmp { + __u8 type; + __u8 code[2]; + __u8 invflags; +}; + +struct xt_bpf_info { + __u16 bpf_program_num_elem; + struct sock_filter bpf_program[64]; + struct bpf_prog *filter; +}; + +enum xt_bpf_modes { + XT_BPF_MODE_BYTECODE = 0, + XT_BPF_MODE_FD_PINNED = 1, + XT_BPF_MODE_FD_ELF = 2, +}; + +struct xt_bpf_info_v1 { + __u16 mode; + __u16 bpf_program_num_elem; + __s32 fd; + union { + struct sock_filter bpf_program[64]; + char path[512]; + }; + struct bpf_prog *filter; +}; + +enum { + XT_OWNER_UID = 1, + XT_OWNER_GID = 2, + XT_OWNER_SOCKET = 4, + XT_OWNER_SUPPL_GROUPS = 8, +}; + +struct xt_owner_match_info { + __u32 uid_min; + __u32 uid_max; + __u32 gid_min; + __u32 gid_max; + __u8 match; + __u8 invert; +}; + +struct xt_sctp_flag_info { + __u8 chunktype; + __u8 flag; + __u8 flag_mask; +}; + +struct xt_sctp_info { + __u16 dpts[2]; + __u16 spts[2]; + __u32 chunkmap[64]; + __u32 chunk_match_type; + struct xt_sctp_flag_info flag_info[4]; + int flag_count; + __u32 flags; + __u32 invflags; +}; + +struct hash_ipportip4_elem { + __be32 ip; + __be32 ip2; + __be16 port; + u8 proto; + u8 padding; +}; + +struct hash_ipportip4 { + struct htable *table; + struct htable_gc gc; + u32 maxelem; + u32 initval; + u8 bucketsize; + struct list_head ad; + struct hash_ipportip4_elem next; +}; + +struct hash_ipportip4_resize_ad { + struct list_head list; + enum ipset_adt ad; + struct hash_ipportip4_elem d; + struct ip_set_ext ext; + struct ip_set_ext mext; + u32 flags; +}; + +struct hash_ipportip6_elem { + union nf_inet_addr ip; + union nf_inet_addr ip2; + __be16 port; + u8 proto; + u8 padding; +}; + +struct hash_ipportip6 { + struct htable *table; + struct htable_gc gc; + u32 maxelem; + u32 initval; + u8 bucketsize; + struct list_head ad; + struct hash_ipportip6_elem next; +}; + +struct hash_ipportip6_resize_ad { + struct list_head list; + enum ipset_adt ad; + struct hash_ipportip6_elem d; + struct ip_set_ext ext; + struct ip_set_ext mext; + u32 flags; +}; + +struct raw_frag_vec { + struct msghdr *msg; + union { + struct icmphdr icmph; + char c[1]; + } hdr; + int hlen; +}; + +struct fib4_rule { + struct fib_rule common; + u8 dst_len; + u8 src_len; + dscp_t dscp; + u8 dscp_full: 1; + __be32 src; + __be32 srcmask; + __be32 dst; + __be32 dstmask; + u32 tclassid; +}; + +struct xfrm_hash_state_ptrs { + const struct hlist_head *bydst; + const struct hlist_head *bysrc; + const struct hlist_head *byspi; + unsigned int hmask; +}; + +struct xfrm6_tunnel_net { + struct hlist_head spi_byaddr[256]; + struct hlist_head spi_byspi[256]; + u32 spi; +}; + +struct xfrm6_tunnel_spi { + struct hlist_node list_byaddr; + struct hlist_node list_byspi; + xfrm_address_t addr; + u32 spi; + refcount_t refcnt; + struct callback_head callback_head; +}; + +struct stp_proto { + unsigned char group_address[6]; + void (*rcv)(const struct stp_proto *, struct sk_buff *, struct net_device *); + void *data; +}; + +struct switchdev_brport { + struct net_device *dev; + const void *ctx; + struct notifier_block *atomic_nb; + struct notifier_block *blocking_nb; + bool tx_fwd_offload; +}; + +struct switchdev_notifier_brport_info { + struct switchdev_notifier_info info; + const struct switchdev_brport brport; +}; + +enum { + MDBA_ROUTER_UNSPEC = 0, + MDBA_ROUTER_PORT = 1, + __MDBA_ROUTER_MAX = 2, +}; + +enum { + MDBA_ROUTER_PATTR_UNSPEC = 0, + MDBA_ROUTER_PATTR_TIMER = 1, + MDBA_ROUTER_PATTR_TYPE = 2, + MDBA_ROUTER_PATTR_INET_TIMER = 3, + MDBA_ROUTER_PATTR_INET6_TIMER = 4, + MDBA_ROUTER_PATTR_VID = 5, + __MDBA_ROUTER_PATTR_MAX = 6, +}; + +struct br_mdb_src_entry { + struct br_ip addr; +}; + +struct br_mdb_config { + struct net_bridge *br; + struct net_bridge_port *p; + struct br_mdb_entry *entry; + struct br_ip group; + bool src_entry; + u8 filter_mode; + u16 nlflags; + struct br_mdb_src_entry *src_entries; + int num_src_entries; + u8 rt_protocol; +}; + +struct br_mdb_flush_desc { + u32 port_ifindex; + u16 vid; + u8 rt_protocol; + u8 state; + u8 state_mask; +}; + +struct hdr_ui { + __u8 dsap; + __u8 ssap; + __u8 ctrl; + __u8 orig[3]; + __be16 type; +}; + +struct hdr_ni { + __u8 dsap; + __u8 ssap; + __be16 ctrl; + __u8 orig[3]; + __be16 type; +}; + +struct ebt_802_3_hdr { + __u8 daddr[6]; + __u8 saddr[6]; + __be16 len; + union { + struct hdr_ui ui; + struct hdr_ni ni; + } llc; +}; + +struct ebt_802_3_info { + __u8 sap; + __be16 type; + __u8 bitmask; + __u8 invflags; +}; + +enum { + SUNRPC_PIPEFS_NFS_PRIO = 0, + SUNRPC_PIPEFS_RPC_PRIO = 1, +}; + +struct rpc_cb_add_xprt_calldata { + struct rpc_xprt_switch *xps; + struct rpc_xprt *xprt; +}; + +struct connect_timeout_data { + long unsigned int connect_timeout; + long unsigned int reconnect_timeout; +}; + +struct xprt_addr { + const char *addr; + struct callback_head rcu; +}; + +enum vlan_name_types { + VLAN_NAME_TYPE_PLUS_VID = 0, + VLAN_NAME_TYPE_RAW_PLUS_VID = 1, + VLAN_NAME_TYPE_PLUS_VID_NO_PAD = 2, + VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD = 3, + VLAN_NAME_TYPE_HIGHEST = 4, +}; + +struct vlan_net { + struct proc_dir_entry *proc_vlan_dir; + struct proc_dir_entry *proc_vlan_conf; + short unsigned int name_type; +}; + +struct sctp_hash_cmp_arg { + const union sctp_addr *paddr; + const struct net *net; + __be16 lport; +}; + +enum ovs_meter_cmd { + OVS_METER_CMD_UNSPEC = 0, + OVS_METER_CMD_FEATURES = 1, + OVS_METER_CMD_SET = 2, + OVS_METER_CMD_DEL = 3, + OVS_METER_CMD_GET = 4, +}; + +enum ovs_meter_attr { + OVS_METER_ATTR_UNSPEC = 0, + OVS_METER_ATTR_ID = 1, + OVS_METER_ATTR_KBPS = 2, + OVS_METER_ATTR_STATS = 3, + OVS_METER_ATTR_BANDS = 4, + OVS_METER_ATTR_USED = 5, + OVS_METER_ATTR_CLEAR = 6, + OVS_METER_ATTR_MAX_METERS = 7, + OVS_METER_ATTR_MAX_BANDS = 8, + OVS_METER_ATTR_PAD = 9, + __OVS_METER_ATTR_MAX = 10, +}; + +enum ovs_band_attr { + OVS_BAND_ATTR_UNSPEC = 0, + OVS_BAND_ATTR_TYPE = 1, + OVS_BAND_ATTR_RATE = 2, + OVS_BAND_ATTR_BURST = 3, + OVS_BAND_ATTR_STATS = 4, + __OVS_BAND_ATTR_MAX = 5, +}; + +enum ovs_meter_band_type { + OVS_METER_BAND_TYPE_UNSPEC = 0, + OVS_METER_BAND_TYPE_DROP = 1, + __OVS_METER_BAND_TYPE_MAX = 2, +}; + +struct trace_event_raw_handshake_event_class { + struct trace_entry ent; + const void *req; + const void *sk; + unsigned int netns_ino; + char __data[0]; +}; + +struct trace_event_raw_handshake_fd_class { + struct trace_entry ent; + const void *req; + const void *sk; + int fd; + unsigned int netns_ino; + char __data[0]; +}; + +struct trace_event_raw_handshake_error_class { + struct trace_entry ent; + const void *req; + const void *sk; + int err; + unsigned int netns_ino; + char __data[0]; +}; + +struct trace_event_raw_handshake_alert_class { + struct trace_entry ent; + __u8 saddr[28]; + __u8 daddr[28]; + unsigned int netns_ino; + long unsigned int level; + long unsigned int description; + char __data[0]; +}; + +struct trace_event_raw_handshake_complete { + struct trace_entry ent; + const void *req; + const void *sk; + int status; + unsigned int netns_ino; + char __data[0]; +}; + +struct trace_event_raw_tls_contenttype { + struct trace_entry ent; + __u8 saddr[28]; + __u8 daddr[28]; + unsigned int netns_ino; + long unsigned int type; + char __data[0]; +}; + +struct trace_event_data_offsets_handshake_event_class {}; + +struct trace_event_data_offsets_handshake_fd_class {}; + +struct trace_event_data_offsets_handshake_error_class {}; + +struct trace_event_data_offsets_handshake_alert_class {}; + +struct trace_event_data_offsets_handshake_complete {}; + +struct trace_event_data_offsets_tls_contenttype {}; + +typedef void (*btf_trace_handshake_submit)(void *, const struct net *, const struct handshake_req *, const struct sock *); + +typedef void (*btf_trace_handshake_submit_err)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); + +typedef void (*btf_trace_handshake_cancel)(void *, const struct net *, const struct handshake_req *, const struct sock *); + +typedef void (*btf_trace_handshake_cancel_none)(void *, const struct net *, const struct handshake_req *, const struct sock *); + +typedef void (*btf_trace_handshake_cancel_busy)(void *, const struct net *, const struct handshake_req *, const struct sock *); + +typedef void (*btf_trace_handshake_destruct)(void *, const struct net *, const struct handshake_req *, const struct sock *); + +typedef void (*btf_trace_handshake_complete)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); + +typedef void (*btf_trace_handshake_notify_err)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); + +typedef void (*btf_trace_handshake_cmd_accept)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); + +typedef void (*btf_trace_handshake_cmd_accept_err)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); + +typedef void (*btf_trace_handshake_cmd_done)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); + +typedef void (*btf_trace_handshake_cmd_done_err)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); + +typedef void (*btf_trace_tls_contenttype)(void *, const struct sock *, unsigned char); + +typedef void (*btf_trace_tls_alert_send)(void *, const struct sock *, unsigned char, unsigned char); + +typedef void (*btf_trace_tls_alert_recv)(void *, const struct sock *, unsigned char, unsigned char); + +struct user_pac_mask { + __u64 data_mask; + __u64 insn_mask; +}; + +struct user_pac_address_keys { + __int128 unsigned apiakey; + __int128 unsigned apibkey; + __int128 unsigned apdakey; + __int128 unsigned apdbkey; +}; + +struct user_pac_generic_keys { + __int128 unsigned apgakey; +}; + +struct trace_event_raw_sys_enter { + struct trace_entry ent; + long int id; + long unsigned int args[6]; + char __data[0]; +}; + +struct trace_event_raw_sys_exit { + struct trace_entry ent; + long int id; + long int ret; + char __data[0]; +}; + +struct trace_event_data_offsets_sys_enter {}; + +struct trace_event_data_offsets_sys_exit {}; + +typedef void (*btf_trace_sys_enter)(void *, struct pt_regs *, long int); + +typedef void (*btf_trace_sys_exit)(void *, struct pt_regs *, long int); + +struct pt_regs_offset { + const char *name; + int offset; +}; + +enum aarch64_regset { + REGSET_GPR = 0, + REGSET_FPR = 1, + REGSET_TLS = 2, + REGSET_HW_BREAK = 3, + REGSET_HW_WATCH = 4, + REGSET_FPMR = 5, + REGSET_SYSTEM_CALL = 6, + REGSET_PAC_MASK = 7, + REGSET_PAC_ENABLED_KEYS = 8, + REGSET_PACA_KEYS = 9, + REGSET_PACG_KEYS = 10, + REGSET_TAGGED_ADDR_CTRL = 11, + REGSET_POE = 12, +}; + +enum ptrace_syscall_dir { + PTRACE_SYSCALL_ENTER = 0, + PTRACE_SYSCALL_EXIT = 1, +}; + +struct trace_event_raw_contention_begin { + struct trace_entry ent; + void *lock_addr; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_contention_end { + struct trace_entry ent; + void *lock_addr; + int ret; + char __data[0]; +}; + +struct trace_event_data_offsets_contention_begin {}; + +struct trace_event_data_offsets_contention_end {}; + +typedef void (*btf_trace_contention_begin)(void *, void *, unsigned int); + +typedef void (*btf_trace_contention_end)(void *, void *, int); + +struct mutex_waiter { + struct list_head list; + struct task_struct *task; + struct ww_acquire_ctx *ww_ctx; +}; + +struct rcu_gp_oldstate { + long unsigned int rgos_norm; + long unsigned int rgos_exp; +}; + +struct rcu_exp_work { + long unsigned int rew_s; + struct kthread_work rew_work; +}; + +struct rcu_node { + raw_spinlock_t lock; + long unsigned int gp_seq; + long unsigned int gp_seq_needed; + long unsigned int completedqs; + long unsigned int qsmask; + long unsigned int rcu_gp_init_mask; + long unsigned int qsmaskinit; + long unsigned int qsmaskinitnext; + long unsigned int expmask; + long unsigned int expmaskinit; + long unsigned int expmaskinitnext; + struct kthread_worker *exp_kworker; + long unsigned int cbovldmask; + long unsigned int ffmask; + long unsigned int grpmask; + int grplo; + int grphi; + u8 grpnum; + u8 level; + bool wait_blkd_tasks; + struct rcu_node *parent; + struct list_head blkd_tasks; + struct list_head *gp_tasks; + struct list_head *exp_tasks; + struct list_head *boost_tasks; + struct rt_mutex boost_mtx; + long unsigned int boost_time; + struct mutex kthread_mutex; + struct task_struct *boost_kthread_task; + unsigned int boost_kthread_status; + long unsigned int n_boosts; + struct swait_queue_head nocb_gp_wq[2]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + raw_spinlock_t fqslock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + spinlock_t exp_lock; + long unsigned int exp_seq_rq; + wait_queue_head_t exp_wq[4]; + struct rcu_exp_work rew; + bool exp_need_flush; + raw_spinlock_t exp_poll_lock; + long unsigned int exp_seq_poll_rq; + struct work_struct exp_poll_wq; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +union rcu_noqs { + struct { + u8 norm; + u8 exp; + } b; + u16 s; +}; + +struct rcu_snap_record { + long unsigned int gp_seq; + u64 cputime_irq; + u64 cputime_softirq; + u64 cputime_system; + u64 nr_hardirqs; + unsigned int nr_softirqs; + long long unsigned int nr_csw; + long unsigned int jiffies; +}; + +struct rcu_data { + long unsigned int gp_seq; + long unsigned int gp_seq_needed; + union rcu_noqs cpu_no_qs; + bool core_needs_qs; + bool beenonline; + bool gpwrap; + bool cpu_started; + struct rcu_node *mynode; + long unsigned int grpmask; + long unsigned int ticks_this_gp; + struct irq_work defer_qs_iw; + int defer_qs_iw_pending; + struct work_struct strict_work; + struct rcu_segcblist cblist; + long int qlen_last_fqs_check; + long unsigned int n_cbs_invoked; + long unsigned int n_force_qs_snap; + long int blimit; + int watching_snap; + bool rcu_need_heavy_qs; + bool rcu_urgent_qs; + bool rcu_forced_tick; + bool rcu_forced_tick_exp; + long unsigned int barrier_seq_snap; + struct callback_head barrier_head; + int exp_watching_snap; + struct swait_queue_head nocb_cb_wq; + struct swait_queue_head nocb_state_wq; + struct task_struct *nocb_gp_kthread; + raw_spinlock_t nocb_lock; + int nocb_defer_wakeup; + struct timer_list nocb_timer; + long unsigned int nocb_gp_adv_time; + struct mutex nocb_gp_kthread_mutex; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + raw_spinlock_t nocb_bypass_lock; + struct rcu_cblist nocb_bypass; + long unsigned int nocb_bypass_first; + long unsigned int nocb_nobypass_last; + int nocb_nobypass_count; + long: 64; + raw_spinlock_t nocb_gp_lock; + u8 nocb_gp_sleep; + u8 nocb_gp_bypass; + u8 nocb_gp_gp; + long unsigned int nocb_gp_seq; + long unsigned int nocb_gp_loops; + struct swait_queue_head nocb_gp_wq; + bool nocb_cb_sleep; + struct task_struct *nocb_cb_kthread; + struct list_head nocb_head_rdp; + struct list_head nocb_entry_rdp; + struct rcu_data *nocb_toggling_rdp; + long: 64; + long: 64; + long: 64; + struct rcu_data *nocb_gp_rdp; + struct task_struct *rcu_cpu_kthread_task; + unsigned int rcu_cpu_kthread_status; + char rcu_cpu_has_work; + long unsigned int rcuc_activity; + unsigned int softirq_snap; + struct irq_work rcu_iw; + bool rcu_iw_pending; + long unsigned int rcu_iw_gp_seq; + long unsigned int rcu_ofl_gp_seq; + short int rcu_ofl_gp_state; + long unsigned int rcu_onl_gp_seq; + short int rcu_onl_gp_state; + long unsigned int last_fqs_resched; + long unsigned int last_sched_clock; + struct rcu_snap_record snap_record; + long int lazy_len; + int cpu; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct sr_wait_node { + atomic_t inuse; + struct llist_node node; +}; + +struct rcu_state { + struct rcu_node node[3]; + struct rcu_node *level[3]; + int ncpus; + int n_online_cpus; + long: 64; + long: 64; + long: 64; + long: 64; + long unsigned int gp_seq; + long unsigned int gp_max; + struct task_struct *gp_kthread; + struct swait_queue_head gp_wq; + short int gp_flags; + short int gp_state; + long unsigned int gp_wake_time; + long unsigned int gp_wake_seq; + long unsigned int gp_seq_polled; + long unsigned int gp_seq_polled_snap; + long unsigned int gp_seq_polled_exp_snap; + struct mutex barrier_mutex; + atomic_t barrier_cpu_count; + struct completion barrier_completion; + long unsigned int barrier_sequence; + raw_spinlock_t barrier_lock; + struct mutex exp_mutex; + struct mutex exp_wake_mutex; + long unsigned int expedited_sequence; + atomic_t expedited_need_qs; + struct swait_queue_head expedited_wq; + int ncpus_snap; + u8 cbovld; + u8 cbovldnext; + long unsigned int jiffies_force_qs; + long unsigned int jiffies_kick_kthreads; + long unsigned int n_force_qs; + long unsigned int gp_start; + long unsigned int gp_end; + long unsigned int gp_activity; + long unsigned int gp_req_activity; + long unsigned int jiffies_stall; + int nr_fqs_jiffies_stall; + long unsigned int jiffies_resched; + long unsigned int n_force_qs_gpstart; + const char *name; + char abbr; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + arch_spinlock_t ofl_lock; + struct llist_head srs_next; + struct llist_node *srs_wait_tail; + struct llist_node *srs_done_tail; + struct sr_wait_node srs_wait_nodes[5]; + struct work_struct srs_cleanup_work; + atomic_t srs_cleanups_pending; + struct mutex nocb_mutex; + int nocb_is_setup; +}; + +struct kvfree_rcu_bulk_data { + struct list_head list; + struct rcu_gp_oldstate gp_snap; + long unsigned int nr_records; + void *records[0]; +}; + +struct kfree_rcu_cpu; + +struct kfree_rcu_cpu_work { + struct rcu_work rcu_work; + struct callback_head *head_free; + struct rcu_gp_oldstate head_free_gp_snap; + struct list_head bulk_head_free[2]; + struct kfree_rcu_cpu *krcp; +}; + +struct kfree_rcu_cpu { + struct callback_head *head; + long unsigned int head_gp_snap; + atomic_t head_count; + struct list_head bulk_head[2]; + atomic_t bulk_count[2]; + struct kfree_rcu_cpu_work krw_arr[2]; + raw_spinlock_t lock; + struct delayed_work monitor_work; + bool initialized; + struct delayed_work page_cache_work; + atomic_t backoff_page_cache_fill; + atomic_t work_in_progress; + struct hrtimer hrtimer; + struct llist_head bkvcache; + int nr_bkv_objs; +}; + +enum audit_nlgrps { + AUDIT_NLGRP_NONE = 0, + AUDIT_NLGRP_READLOG = 1, + __AUDIT_NLGRP_MAX = 2, +}; + +struct audit_status { + __u32 mask; + __u32 enabled; + __u32 failure; + __u32 pid; + __u32 rate_limit; + __u32 backlog_limit; + __u32 lost; + __u32 backlog; + union { + __u32 version; + __u32 feature_bitmap; + }; + __u32 backlog_wait_time; + __u32 backlog_wait_time_actual; +}; + +struct audit_features { + __u32 vers; + __u32 mask; + __u32 features; + __u32 lock; +}; + +struct audit_tty_status { + __u32 enabled; + __u32 log_passwd; +}; + +struct audit_sig_info { + uid_t uid; + pid_t pid; + char ctx[0]; +}; + +struct audit_netlink_list { + __u32 portid; + struct net *net; + struct sk_buff_head q; +}; + +struct audit_net { + struct sock *sk; +}; + +struct auditd_connection { + struct pid *pid; + u32 portid; + struct net *net; + struct callback_head rcu; +}; + +struct audit_ctl_mutex { + struct mutex lock; + void *owner; +}; + +struct audit_buffer { + struct sk_buff *skb; + struct audit_context *ctx; + gfp_t gfp_mask; +}; + +struct audit_reply { + __u32 portid; + struct net *net; + struct sk_buff *skb; +}; + +typedef long unsigned int perf_trace_t[1024]; + +enum page_size_enum { + __PAGE_SIZE = 4096, +}; + +struct bpf_prog_pack { + struct list_head list; + void *ptr; + long unsigned int bitmap[0]; +}; + +struct bpf_prog_dummy { + struct bpf_prog prog; +}; + +typedef u64 (*btf_bpf_user_rnd_u32)(void); + +typedef u64 (*btf_bpf_get_raw_cpu_id)(void); + +struct _bpf_dtab_netdev { + struct net_device *dev; +}; + +struct trace_event_raw_xdp_exception { + struct trace_entry ent; + int prog_id; + u32 act; + int ifindex; + char __data[0]; +}; + +struct trace_event_raw_xdp_bulk_tx { + struct trace_entry ent; + int ifindex; + u32 act; + int drops; + int sent; + int err; + char __data[0]; +}; + +struct trace_event_raw_xdp_redirect_template { + struct trace_entry ent; + int prog_id; + u32 act; + int ifindex; + int err; + int to_ifindex; + u32 map_id; + int map_index; + char __data[0]; +}; + +struct trace_event_raw_xdp_cpumap_kthread { + struct trace_entry ent; + int map_id; + u32 act; + int cpu; + unsigned int drops; + unsigned int processed; + int sched; + unsigned int xdp_pass; + unsigned int xdp_drop; + unsigned int xdp_redirect; + char __data[0]; +}; + +struct trace_event_raw_xdp_cpumap_enqueue { + struct trace_entry ent; + int map_id; + u32 act; + int cpu; + unsigned int drops; + unsigned int processed; + int to_cpu; + char __data[0]; +}; + +struct trace_event_raw_xdp_devmap_xmit { + struct trace_entry ent; + int from_ifindex; + u32 act; + int to_ifindex; + int drops; + int sent; + int err; + char __data[0]; +}; + +struct trace_event_raw_mem_disconnect { + struct trace_entry ent; + const struct xdp_mem_allocator *xa; + u32 mem_id; + u32 mem_type; + const void *allocator; + char __data[0]; +}; + +struct trace_event_raw_mem_connect { + struct trace_entry ent; + const struct xdp_mem_allocator *xa; + u32 mem_id; + u32 mem_type; + const void *allocator; + const struct xdp_rxq_info *rxq; + int ifindex; + char __data[0]; +}; + +struct trace_event_raw_mem_return_failed { + struct trace_entry ent; + const struct page *page; + u32 mem_id; + u32 mem_type; + char __data[0]; +}; + +struct trace_event_raw_bpf_xdp_link_attach_failed { + struct trace_entry ent; + u32 __data_loc_msg; + char __data[0]; +}; + +struct trace_event_data_offsets_xdp_exception {}; + +struct trace_event_data_offsets_xdp_bulk_tx {}; + +struct trace_event_data_offsets_xdp_redirect_template {}; + +struct trace_event_data_offsets_xdp_cpumap_kthread {}; + +struct trace_event_data_offsets_xdp_cpumap_enqueue {}; + +struct trace_event_data_offsets_xdp_devmap_xmit {}; + +struct trace_event_data_offsets_mem_disconnect {}; + +struct trace_event_data_offsets_mem_connect {}; + +struct trace_event_data_offsets_mem_return_failed {}; + +struct trace_event_data_offsets_bpf_xdp_link_attach_failed { + u32 msg; + const void *msg_ptr_; +}; + +typedef void (*btf_trace_xdp_exception)(void *, const struct net_device *, const struct bpf_prog *, u32); + +typedef void (*btf_trace_xdp_bulk_tx)(void *, const struct net_device *, int, int, int); + +typedef void (*btf_trace_xdp_redirect)(void *, const struct net_device *, const struct bpf_prog *, const void *, int, enum bpf_map_type, u32, u32); + +typedef void (*btf_trace_xdp_redirect_err)(void *, const struct net_device *, const struct bpf_prog *, const void *, int, enum bpf_map_type, u32, u32); + +typedef void (*btf_trace_xdp_redirect_map)(void *, const struct net_device *, const struct bpf_prog *, const void *, int, enum bpf_map_type, u32, u32); + +typedef void (*btf_trace_xdp_redirect_map_err)(void *, const struct net_device *, const struct bpf_prog *, const void *, int, enum bpf_map_type, u32, u32); + +typedef void (*btf_trace_xdp_cpumap_kthread)(void *, int, unsigned int, unsigned int, int, struct xdp_cpumap_stats *); + +typedef void (*btf_trace_xdp_cpumap_enqueue)(void *, int, unsigned int, unsigned int, int); + +typedef void (*btf_trace_xdp_devmap_xmit)(void *, const struct net_device *, const struct net_device *, int, int, int); + +typedef void (*btf_trace_mem_disconnect)(void *, const struct xdp_mem_allocator *); + +typedef void (*btf_trace_mem_connect)(void *, const struct xdp_mem_allocator *, const struct xdp_rxq_info *); + +typedef void (*btf_trace_mem_return_failed)(void *, const struct xdp_mem_info *, const struct page *); + +typedef void (*btf_trace_bpf_xdp_link_attach_failed)(void *, const char *); + +struct tcx_link { + struct bpf_link link; + struct net_device *dev; + u32 location; +}; + +struct pcpu_group_info { + int nr_units; + long unsigned int base_offset; + unsigned int *cpu_map; +}; + +struct pcpu_alloc_info { + size_t static_size; + size_t reserved_size; + size_t dyn_size; + size_t unit_size; + size_t atom_size; + size_t alloc_size; + size_t __ai_size; + int nr_groups; + struct pcpu_group_info groups[0]; +}; + +typedef int pcpu_fc_cpu_to_node_fn_t(int); + +typedef int pcpu_fc_cpu_distance_fn_t(unsigned int, unsigned int); + +struct trace_event_raw_percpu_alloc_percpu { + struct trace_entry ent; + long unsigned int call_site; + bool reserved; + bool is_atomic; + size_t size; + size_t align; + void *base_addr; + int off; + void *ptr; + size_t bytes_alloc; + long unsigned int gfp_flags; + char __data[0]; +}; + +struct trace_event_raw_percpu_free_percpu { + struct trace_entry ent; + void *base_addr; + int off; + void *ptr; + char __data[0]; +}; + +struct trace_event_raw_percpu_alloc_percpu_fail { + struct trace_entry ent; + bool reserved; + bool is_atomic; + size_t size; + size_t align; + char __data[0]; +}; + +struct trace_event_raw_percpu_create_chunk { + struct trace_entry ent; + void *base_addr; + char __data[0]; +}; + +struct trace_event_raw_percpu_destroy_chunk { + struct trace_entry ent; + void *base_addr; + char __data[0]; +}; + +struct trace_event_data_offsets_percpu_alloc_percpu {}; + +struct trace_event_data_offsets_percpu_free_percpu {}; + +struct trace_event_data_offsets_percpu_alloc_percpu_fail {}; + +struct trace_event_data_offsets_percpu_create_chunk {}; + +struct trace_event_data_offsets_percpu_destroy_chunk {}; + +typedef void (*btf_trace_percpu_alloc_percpu)(void *, long unsigned int, bool, bool, size_t, size_t, void *, int, void *, size_t, gfp_t); + +typedef void (*btf_trace_percpu_free_percpu)(void *, void *, int, void *); + +typedef void (*btf_trace_percpu_alloc_percpu_fail)(void *, bool, bool, size_t, size_t); + +typedef void (*btf_trace_percpu_create_chunk)(void *, void *); + +typedef void (*btf_trace_percpu_destroy_chunk)(void *, void *); + +struct pcpu_block_md { + int scan_hint; + int scan_hint_start; + int contig_hint; + int contig_hint_start; + int left_free; + int right_free; + int first_free; + int nr_bits; +}; + +struct pcpuobj_ext { + struct obj_cgroup *cgroup; +}; + +struct pcpu_chunk { + struct list_head list; + int free_bytes; + struct pcpu_block_md chunk_md; + long unsigned int *bound_map; + void *base_addr; + long unsigned int *alloc_map; + struct pcpu_block_md *md_blocks; + void *data; + bool immutable; + bool isolated; + int start_offset; + int end_offset; + struct pcpuobj_ext *obj_exts; + int nr_pages; + int nr_populated; + int nr_empty_pop_pages; + long unsigned int populated[0]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum tlb_flush_reason { + TLB_FLUSH_ON_TASK_SWITCH = 0, + TLB_REMOTE_SHOOTDOWN = 1, + TLB_LOCAL_SHOOTDOWN = 2, + TLB_LOCAL_MM_SHOOTDOWN = 3, + TLB_REMOTE_SEND_IPI = 4, + NR_TLB_FLUSH_REASONS = 5, +}; + +struct trace_event_raw_tlb_flush { + struct trace_entry ent; + int reason; + long unsigned int pages; + char __data[0]; +}; + +struct trace_event_data_offsets_tlb_flush {}; + +typedef void (*btf_trace_tlb_flush)(void *, int, long unsigned int); + +struct trace_event_raw_mm_migrate_pages { + struct trace_entry ent; + long unsigned int succeeded; + long unsigned int failed; + long unsigned int thp_succeeded; + long unsigned int thp_failed; + long unsigned int thp_split; + long unsigned int large_folio_split; + enum migrate_mode mode; + int reason; + char __data[0]; +}; + +struct trace_event_raw_mm_migrate_pages_start { + struct trace_entry ent; + enum migrate_mode mode; + int reason; + char __data[0]; +}; + +struct trace_event_raw_migration_pte { + struct trace_entry ent; + long unsigned int addr; + long unsigned int pte; + int order; + char __data[0]; +}; + +struct trace_event_data_offsets_mm_migrate_pages {}; + +struct trace_event_data_offsets_mm_migrate_pages_start {}; + +struct trace_event_data_offsets_migration_pte {}; + +typedef void (*btf_trace_mm_migrate_pages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, enum migrate_mode, int); + +typedef void (*btf_trace_mm_migrate_pages_start)(void *, enum migrate_mode, int); + +typedef void (*btf_trace_set_migration_pte)(void *, long unsigned int, long unsigned int, int); + +typedef void (*btf_trace_remove_migration_pte)(void *, long unsigned int, long unsigned int, int); + +struct folio_referenced_arg { + int mapcount; + int referenced; + long unsigned int vm_flags; + struct mem_cgroup *memcg; +}; + +enum zs_mapmode { + ZS_MM_RW = 0, + ZS_MM_RO = 1, + ZS_MM_WO = 2, +}; + +struct zs_pool_stats { + atomic_long_t pages_compacted; +}; + +enum fullness_group { + ZS_INUSE_RATIO_0 = 0, + ZS_INUSE_RATIO_10 = 1, + ZS_INUSE_RATIO_99 = 10, + ZS_INUSE_RATIO_100 = 11, + NR_FULLNESS_GROUPS = 12, +}; + +enum class_stat_type { + ZS_OBJS_ALLOCATED = 12, + ZS_OBJS_INUSE = 13, + NR_CLASS_STAT_TYPES = 14, +}; + +struct zs_size_stat { + long unsigned int objs[14]; +}; + +struct size_class { + spinlock_t lock; + struct list_head fullness_list[12]; + int size; + int objs_per_zspage; + int pages_per_zspage; + unsigned int index; + struct zs_size_stat stats; +}; + +struct link_free { + union { + long unsigned int next; + long unsigned int handle; + }; +}; + +struct zs_pool { + const char *name; + struct size_class *size_class[255]; + struct kmem_cache *handle_cachep; + struct kmem_cache *zspage_cachep; + atomic_long_t pages_allocated; + struct zs_pool_stats stats; + struct shrinker *shrinker; + struct work_struct free_work; + rwlock_t migrate_lock; + atomic_t compaction_in_progress; +}; + +struct zspage { + struct { + unsigned int huge: 1; + unsigned int fullness: 4; + unsigned int class: 9; + unsigned int magic: 8; + }; + unsigned int inuse; + unsigned int freeobj; + struct page *first_page; + struct list_head list; + struct zs_pool *pool; + rwlock_t lock; +}; + +struct mapping_area { + local_lock_t lock; + char *vm_buf; + char *vm_addr; + enum zs_mapmode vm_mm; +}; + +struct files_stat_struct { + long unsigned int nr_files; + long unsigned int nr_free_files; + long unsigned int max_files; +}; + +struct backing_file { + struct file file; + struct path user_path; +}; + +struct postprocess_bh_ctx { + struct work_struct work; + struct buffer_head *bh; +}; + +struct bh_lru { + struct buffer_head *bhs[16]; +}; + +struct bh_accounting { + int nr; + int ratelimit; +}; + +struct proc_fs_context { + struct pid_namespace *pid_ns; + unsigned int mask; + enum proc_hidepid hidepid; + int gid; + enum proc_pidonly pidonly; +}; + +enum proc_param { + Opt_gid___10 = 0, + Opt_hidepid = 1, + Opt_subset = 2, +}; + +struct ext4_system_zone { + struct rb_node node; + ext4_fsblk_t start_blk; + unsigned int count; + u32 ino; +}; + +struct ext4_xattr_header { + __le32 h_magic; + __le32 h_refcount; + __le32 h_blocks; + __le32 h_hash; + __le32 h_checksum; + __u32 h_reserved[3]; +}; + +struct ext4_xattr_block_find { + struct ext4_xattr_search s; + struct buffer_head *bh; +}; + +struct cb_compound_hdr_arg { + unsigned int taglen; + const char *tag; + unsigned int minorversion; + unsigned int cb_ident; + unsigned int nops; +}; + +struct cb_compound_hdr_res { + __be32 *status; + unsigned int taglen; + const char *tag; + __be32 *nops; +}; + +struct callback_op { + __be32 (*process_op)(void *, void *, struct cb_process_state *); + __be32 (*decode_args)(struct svc_rqst *, struct xdr_stream *, void *); + __be32 (*encode_res)(struct svc_rqst *, struct xdr_stream *, const void *); + long int res_maxsize; +}; + +struct nlm_wait { + struct list_head b_list; + wait_queue_head_t b_wait; + struct nlm_host *b_host; + struct file_lock *b_lock; + __be32 b_status; +}; + +struct smb_mnt_fs_info { + __u32 version; + __u16 protocol_id; + __u16 tcon_flags; + __u32 vol_serial_number; + __u32 vol_create_time; + __u32 share_caps; + __u32 share_flags; + __u32 sector_flags; + __u32 optimal_sector_size; + __u32 max_bytes_chunk; + __u32 fs_attributes; + __u32 max_path_component; + __u32 device_type; + __u32 device_characteristics; + __u32 maximal_access; + __u64 cifs_posix_caps; +}; + +struct smb_mnt_tcon_info { + __u32 tid; + __u64 session_id; +} __attribute__((packed)); + +struct smb3_key_debug_info { + __u64 Suid; + __u16 cipher_type; + __u8 auth_key[16]; + __u8 smb3encryptionkey[16]; + __u8 smb3decryptionkey[16]; +} __attribute__((packed)); + +struct smb3_full_key_debug_info { + __u32 in_size; + __u64 session_id; + __u16 cipher_type; + __u8 session_key_length; + __u8 server_in_key_length; + __u8 server_out_key_length; + __u8 data[0]; +} __attribute__((packed)); + +struct smb2_err_rsp { + struct smb2_hdr hdr; + __le16 StructureSize; + __u8 ErrorContextCount; + __u8 Reserved; + __le32 ByteCount; + __u8 ErrorData[0]; +}; + +struct smb2_symlink_err_rsp { + __le32 SymLinkLength; + __le32 SymLinkErrorTag; + __le32 ReparseTag; + __le16 ReparseDataLength; + __le16 UnparsedPathLength; + __le16 SubstituteNameOffset; + __le16 SubstituteNameLength; + __le16 PrintNameOffset; + __le16 PrintNameLength; + __le32 Flags; + __u8 PathBuffer[0]; +}; + +struct smb2_error_context_rsp { + __le32 ErrorDataLength; + __le32 ErrorId; + __u8 ErrorContextData; +} __attribute__((packed)); + +struct network_resiliency_req { + __le32 Timeout; + __le32 Reserved; +}; + +struct cifs_fscache_volume_coherency_data { + __le64 resource_id; + __le64 vol_create_time; + __le32 vol_serial_number; +} __attribute__((packed)); + +struct cifs_fscache_inode_key { + __le64 uniqueid; + __le64 createtime; + u8 type; +} __attribute__((packed)); + +struct xfs_fsmap_head { + uint32_t fmh_iflags; + uint32_t fmh_oflags; + unsigned int fmh_count; + unsigned int fmh_entries; + struct xfs_fsmap fmh_keys[2]; +}; + +struct xfs_getfsmap_info { + struct xfs_fsmap_head *head; + struct fsmap *fsmap_recs; + struct xfs_buf *agf_bp; + struct xfs_perag *pag; + xfs_daddr_t next_daddr; + xfs_daddr_t low_daddr; + xfs_daddr_t end_daddr; + u64 missing_owner; + u32 dev; + struct xfs_rmap_irec low; + struct xfs_rmap_irec high; + bool last; +}; + +struct xfs_getfsmap_dev { + u32 dev; + int (*fn)(struct xfs_trans *, const struct xfs_fsmap *, struct xfs_getfsmap_info *); + sector_t nr_sectors; +}; + +struct xfs_rui_log_format { + uint16_t rui_type; + uint16_t rui_size; + uint32_t rui_nextents; + uint64_t rui_id; + struct xfs_map_extent rui_extents[0]; +}; + +struct xfs_rud_log_format { + uint16_t rud_type; + uint16_t rud_size; + uint32_t __pad; + uint64_t rud_rui_id; +}; + +struct xfs_rui_log_item { + struct xfs_log_item rui_item; + atomic_t rui_refcount; + atomic_t rui_next_extent; + struct xfs_rui_log_format rui_format; +}; + +struct xfs_rud_log_item { + struct xfs_log_item rud_item; + struct xfs_rui_log_item *rud_ruip; + struct xfs_rud_log_format rud_format; +}; + +struct dotl_openflag_map { + int open_flag; + int dotl_flag; +}; + +struct dotl_iattr_map { + int iattr_valid; + int p9_iattr_valid; +}; + +enum cachefiles_coherency_trace { + cachefiles_coherency_check_aux = 0, + cachefiles_coherency_check_content = 1, + cachefiles_coherency_check_dirty = 2, + cachefiles_coherency_check_len = 3, + cachefiles_coherency_check_objsize = 4, + cachefiles_coherency_check_ok = 5, + cachefiles_coherency_check_type = 6, + cachefiles_coherency_check_xattr = 7, + cachefiles_coherency_set_fail = 8, + cachefiles_coherency_set_ok = 9, + cachefiles_coherency_vol_check_cmp = 10, + cachefiles_coherency_vol_check_ok = 11, + cachefiles_coherency_vol_check_resv = 12, + cachefiles_coherency_vol_check_xattr = 13, + cachefiles_coherency_vol_set_fail = 14, + cachefiles_coherency_vol_set_ok = 15, +}; + +struct cachefiles_xattr { + __be64 object_size; + __be64 zero_point; + __u8 type; + __u8 content; + __u8 data[0]; +} __attribute__((packed)); + +struct cachefiles_vol_xattr { + __be32 reserved; + __u8 data[0]; +}; + +struct eventfs_root_inode { + struct eventfs_inode ei; + struct dentry *events_dir; +}; + +enum { + EVENTFS_SAVE_MODE = 65536, + EVENTFS_SAVE_UID = 131072, + EVENTFS_SAVE_GID = 262144, +}; + +struct btrfs_em_shrink_ctx { + long int nr_to_scan; + long int scanned; + u64 last_ino; + u64 last_root; +}; + +struct btrfs_dir_log_item { + __le64 end; +}; + +struct btrfs_log_ctx { + int log_ret; + int log_transid; + bool log_new_dentries; + bool logging_new_name; + bool logging_new_delayed_dentries; + bool logged_before; + struct btrfs_inode *inode; + struct list_head list; + struct list_head ordered_extents; + struct list_head conflict_inodes; + int num_conflict_inodes; + bool logging_conflict_inodes; + struct extent_buffer *scratch_eb; +}; + +enum { + LOG_INODE_ALL = 0, + LOG_INODE_EXISTS = 1, +}; + +enum { + LOG_WALK_PIN_ONLY = 0, + LOG_WALK_REPLAY_INODES = 1, + LOG_WALK_REPLAY_DIR_INDEX = 2, + LOG_WALK_REPLAY_ALL = 3, +}; + +struct walk_control { + int free; + int pin; + int stage; + bool ignore_cur_inode; + struct btrfs_root *replay_dest; + struct btrfs_trans_handle *trans; + int (*process_func)(struct btrfs_root *, struct extent_buffer *, struct walk_control *, u64, int); +}; + +struct btrfs_dir_list { + u64 ino; + struct list_head list; +}; + +struct btrfs_ino_list { + u64 ino; + u64 parent; + struct list_head list; +}; + +struct btrfs_failed_bio { + struct btrfs_bio *bbio; + int num_copies; + atomic_t repair_count; +}; + +struct async_submit_bio { + struct btrfs_bio *bbio; + struct btrfs_io_context *bioc; + struct btrfs_io_stripe smap; + int mirror_num; + struct btrfs_work work; +}; + +struct erofs_dirent { + __le64 nid; + __le16 nameoff; + __u8 file_type; + __u8 reserved; +} __attribute__((packed)); + +struct erofs_qstr { + const unsigned char *name; + const unsigned char *end; +}; + +struct msg_msgseg { + struct msg_msgseg *next; +}; + +struct scomp_scratch { + spinlock_t lock; + void *src; + void *dst; +}; + +struct ccm_instance_ctx { + struct crypto_skcipher_spawn ctr; + struct crypto_ahash_spawn mac; +}; + +struct crypto_ccm_ctx { + struct crypto_ahash *mac; + struct crypto_skcipher *ctr; +}; + +struct crypto_rfc4309_ctx { + struct crypto_aead *child; + u8 nonce[3]; +}; + +struct crypto_rfc4309_req_ctx { + struct scatterlist src[3]; + struct scatterlist dst[3]; + struct aead_request subreq; +}; + +struct crypto_ccm_req_priv_ctx { + u8 odata[16]; + u8 idata[16]; + u8 auth_tag[16]; + u32 flags; + struct scatterlist src[3]; + struct scatterlist dst[3]; + union { + struct ahash_request ahreq; + struct skcipher_request skreq; + }; +}; + +struct cbcmac_tfm_ctx { + struct crypto_cipher *child; +}; + +struct cbcmac_desc_ctx { + unsigned int len; + u8 dg[0]; +}; + +struct jitterentropy { + spinlock_t jent_lock; + struct rand_data *entropy_collector; + struct crypto_shash *tfm; + struct shash_desc *sdesc; +}; + +struct kdf_testvec { + unsigned char *key; + size_t keylen; + unsigned char *ikm; + size_t ikmlen; + struct kvec info; + unsigned char *expected; + size_t expectedlen; +}; + +struct blk_major_name { + struct blk_major_name *next; + int major; + char name[16]; + void (*probe)(dev_t); +}; + +struct bd_holder_disk { + struct list_head list; + struct kobject *holder_dir; + int refcnt; +}; + +struct io_uring_recvmsg_out { + __u32 namelen; + __u32 controllen; + __u32 payloadlen; + __u32 flags; +}; + +struct io_async_msghdr { + struct iovec fast_iov; + struct iovec *free_iov; + int free_iov_nr; + int namelen; + __kernel_size_t controllen; + __kernel_size_t payloadlen; + struct sockaddr *uaddr; + struct msghdr msg; + struct __kernel_sockaddr_storage addr; +}; + +struct io_shutdown { + struct file *file; + int how; +}; + +struct io_accept { + struct file *file; + struct sockaddr *addr; + int *addr_len; + int flags; + int iou_flags; + u32 file_slot; + long unsigned int nofile; +}; + +struct io_socket { + struct file *file; + int domain; + int type; + int protocol; + int flags; + u32 file_slot; + long unsigned int nofile; +}; + +struct io_connect { + struct file *file; + struct sockaddr *addr; + int addr_len; + bool in_progress; + bool seen_econnaborted; +}; + +struct io_bind { + struct file *file; + int addr_len; +}; + +struct io_listen { + struct file *file; + int backlog; +}; + +struct io_sr_msg { + struct file *file; + union { + struct compat_msghdr *umsg_compat; + struct user_msghdr *umsg; + void *buf; + }; + int len; + unsigned int done_io; + unsigned int msg_flags; + unsigned int nr_multishot_loops; + u16 flags; + u16 addr_len; + u16 buf_group; + short unsigned int retry_flags; + void *addr; + void *msg_control; + struct io_kiocb *notif; +}; + +enum sr_retry_flags { + IO_SR_MSG_RETRY = 1, + IO_SR_MSG_PARTIAL_MAP = 2, +}; + +struct io_recvmsg_multishot_hdr { + struct io_uring_recvmsg_out msg; + struct __kernel_sockaddr_storage addr; +}; + +typedef long int mpi_limb_signed_t; + +typedef enum { + trustInput = 0, + checkMaxSymbolValue = 1, +} HIST_checkInput_e; + +typedef struct { + U32 f1c; + U32 f1d; + U32 f7b; + U32 f7c; +} ZSTD_cpuid_t; + +typedef enum { + ZSTD_e_continue = 0, + ZSTD_e_flush = 1, + ZSTD_e_end = 2, +} ZSTD_EndDirective; + +typedef struct { + long long unsigned int ingested; + long long unsigned int consumed; + long long unsigned int produced; + long long unsigned int flushed; + unsigned int currentJobID; + unsigned int nbActiveWorkers; +} ZSTD_frameProgression; + +typedef enum { + ZSTD_cpm_noAttachDict = 0, + ZSTD_cpm_attachDict = 1, + ZSTD_cpm_createCDict = 2, + ZSTD_cpm_unknown = 3, +} ZSTD_cParamMode_e; + +typedef size_t (*ZSTD_blockCompressor)(ZSTD_matchState_t *, seqStore_t *, U32 *, const void *, size_t); + +typedef enum { + ZSTD_defaultDisallowed = 0, + ZSTD_defaultAllowed = 1, +} ZSTD_defaultPolicy_e; + +typedef enum { + ZSTDcrp_makeClean = 0, + ZSTDcrp_leaveDirty = 1, +} ZSTD_compResetPolicy_e; + +typedef enum { + ZSTDirp_continue = 0, + ZSTDirp_reset = 1, +} ZSTD_indexResetPolicy_e; + +typedef enum { + ZSTD_resetTarget_CDict = 0, + ZSTD_resetTarget_CCtx = 1, +} ZSTD_resetTarget_e; + +typedef struct { + U32 LLtype; + U32 Offtype; + U32 MLtype; + size_t size; + size_t lastCountSize; +} ZSTD_symbolEncodingTypeStats_t; + +enum { + ZSTDbss_compress = 0, + ZSTDbss_noCompress = 1, +}; + +typedef struct { + U32 *splitLocations; + size_t idx; +} seqStoreSplits; + +typedef struct { + U32 idx; + U32 posInSequence; + size_t posInSrc; +} ZSTD_sequencePosition; + +typedef size_t (*ZSTD_sequenceCopier)(ZSTD_CCtx *, ZSTD_sequencePosition *, const ZSTD_Sequence * const, size_t, const void *, size_t); + +enum of_gpio_flags { + OF_GPIO_ACTIVE_LOW = 1, + OF_GPIO_SINGLE_ENDED = 2, + OF_GPIO_OPEN_DRAIN = 4, + OF_GPIO_TRANSITORY = 8, + OF_GPIO_PULL_UP = 16, + OF_GPIO_PULL_DOWN = 32, + OF_GPIO_PULL_DISABLE = 64, +}; + +typedef struct gpio_desc * (*of_find_gpio_quirk)(struct device_node *, const char *, unsigned int, enum of_gpio_flags *); + +struct of_rename_gpio { + const char *con_id; + const char *legacy_id; + const char *compatible; +}; + +struct portdrv_service_data { + struct pcie_port_service_driver *drv; + struct device *dev; + u32 service; +}; + +typedef int (*pcie_callback_t)(struct pcie_device *); + +struct clk_gate { + struct clk_hw hw; + void *reg; + u8 bit_idx; + u8 flags; + spinlock_t *lock; +}; + +struct dma_chan_tbl_ent { + struct dma_chan *chan; +}; + +struct dmaengine_unmap_pool { + struct kmem_cache *cache; + const char *name; + mempool_t *pool; + size_t size; +}; + +struct tty_file_private { + struct tty_struct *tty; + struct file *file; + struct list_head list; +}; + +struct irq_info { + struct hlist_node node; + int irq; + spinlock_t lock; + struct list_head *head; +}; + +struct serport___2 { + struct tty_port *port; + struct tty_struct *tty; + struct tty_driver *tty_drv; + int tty_idx; + long unsigned int flags; +}; + +struct drm_mode_fb_cmd { + __u32 fb_id; + __u32 width; + __u32 height; + __u32 pitch; + __u32 bpp; + __u32 depth; + __u32 handle; +}; + +struct drm_mode_fb_dirty_cmd { + __u32 fb_id; + __u32 flags; + __u32 color; + __u32 num_clips; + __u64 clips_ptr; +}; + +struct drm_mode_closefb { + __u32 fb_id; + __u32 pad; +}; + +struct drm_mode_rmfb_work { + struct work_struct work; + struct list_head fbs; +}; + +enum drm_lvds_dual_link_pixels { + DRM_LVDS_DUAL_LINK_EVEN_ODD_PIXELS = 0, + DRM_LVDS_DUAL_LINK_ODD_EVEN_PIXELS = 1, +}; + +enum drm_of_lvds_pixels { + DRM_OF_LVDS_EVEN = 1, + DRM_OF_LVDS_ODD = 2, +}; + +struct pm_clk_notifier_block { + struct notifier_block nb; + struct dev_pm_domain *pm_domain; + char *con_ids[0]; +}; + +struct regmap_mmio_context { + void *regs; + unsigned int val_bytes; + bool big_endian; + bool attached_clk; + struct clk *clk; + void (*reg_write)(struct regmap_mmio_context *, unsigned int, unsigned int); + unsigned int (*reg_read)(struct regmap_mmio_context *, unsigned int); +}; + +struct trace_event_raw_scsi_dispatch_cmd_start { + struct trace_entry ent; + unsigned int host_no; + unsigned int channel; + unsigned int id; + unsigned int lun; + unsigned int opcode; + unsigned int cmd_len; + int driver_tag; + int scheduler_tag; + unsigned int data_sglen; + unsigned int prot_sglen; + unsigned char prot_op; + u32 __data_loc_cmnd; + char __data[0]; +}; + +struct trace_event_raw_scsi_dispatch_cmd_error { + struct trace_entry ent; + unsigned int host_no; + unsigned int channel; + unsigned int id; + unsigned int lun; + int rtn; + unsigned int opcode; + unsigned int cmd_len; + int driver_tag; + int scheduler_tag; + unsigned int data_sglen; + unsigned int prot_sglen; + unsigned char prot_op; + u32 __data_loc_cmnd; + char __data[0]; +}; + +struct trace_event_raw_scsi_cmd_done_timeout_template { + struct trace_entry ent; + unsigned int host_no; + unsigned int channel; + unsigned int id; + unsigned int lun; + int result; + unsigned int opcode; + unsigned int cmd_len; + int driver_tag; + int scheduler_tag; + unsigned int data_sglen; + unsigned int prot_sglen; + unsigned char prot_op; + u32 __data_loc_cmnd; + u8 sense_key; + u8 asc; + u8 ascq; + char __data[0]; +}; + +struct trace_event_raw_scsi_eh_wakeup { + struct trace_entry ent; + unsigned int host_no; + char __data[0]; +}; + +struct trace_event_data_offsets_scsi_dispatch_cmd_start { + u32 cmnd; + const void *cmnd_ptr_; +}; + +struct trace_event_data_offsets_scsi_dispatch_cmd_error { + u32 cmnd; + const void *cmnd_ptr_; +}; + +struct trace_event_data_offsets_scsi_cmd_done_timeout_template { + u32 cmnd; + const void *cmnd_ptr_; +}; + +struct trace_event_data_offsets_scsi_eh_wakeup {}; + +typedef void (*btf_trace_scsi_dispatch_cmd_start)(void *, struct scsi_cmnd *); + +typedef void (*btf_trace_scsi_dispatch_cmd_error)(void *, struct scsi_cmnd *, int); + +typedef void (*btf_trace_scsi_dispatch_cmd_done)(void *, struct scsi_cmnd *); + +typedef void (*btf_trace_scsi_dispatch_cmd_timeout)(void *, struct scsi_cmnd *); + +typedef void (*btf_trace_scsi_eh_wakeup)(void *, struct Scsi_Host *); + +enum scsi_vpd_parameters { + SCSI_VPD_HEADER_SIZE = 4, + SCSI_VPD_LIST_SIZE = 36, +}; + +enum { + IFLA_IPVLAN_UNSPEC = 0, + IFLA_IPVLAN_MODE = 1, + IFLA_IPVLAN_FLAGS = 2, + __IFLA_IPVLAN_MAX = 3, +}; + +struct phy_fixup { + struct list_head list; + char bus_id[64]; + u32 phy_uid; + u32 phy_uid_mask; + int (*run)(struct phy_device *); +}; + +struct sfp_eeprom_base { + u8 phys_id; + u8 phys_ext_id; + u8 connector; + u8 if_1x_copper_passive: 1; + u8 if_1x_copper_active: 1; + u8 if_1x_lx: 1; + u8 if_1x_sx: 1; + u8 e10g_base_sr: 1; + u8 e10g_base_lr: 1; + u8 e10g_base_lrm: 1; + u8 e10g_base_er: 1; + u8 sonet_oc3_short_reach: 1; + u8 sonet_oc3_smf_intermediate_reach: 1; + u8 sonet_oc3_smf_long_reach: 1; + u8 unallocated_5_3: 1; + u8 sonet_oc12_short_reach: 1; + u8 sonet_oc12_smf_intermediate_reach: 1; + u8 sonet_oc12_smf_long_reach: 1; + u8 unallocated_5_7: 1; + u8 sonet_oc48_short_reach: 1; + u8 sonet_oc48_intermediate_reach: 1; + u8 sonet_oc48_long_reach: 1; + u8 sonet_reach_bit2: 1; + u8 sonet_reach_bit1: 1; + u8 sonet_oc192_short_reach: 1; + u8 escon_smf_1310_laser: 1; + u8 escon_mmf_1310_led: 1; + u8 e1000_base_sx: 1; + u8 e1000_base_lx: 1; + u8 e1000_base_cx: 1; + u8 e1000_base_t: 1; + u8 e100_base_lx: 1; + u8 e100_base_fx: 1; + u8 e_base_bx10: 1; + u8 e_base_px: 1; + u8 fc_tech_electrical_inter_enclosure: 1; + u8 fc_tech_lc: 1; + u8 fc_tech_sa: 1; + u8 fc_ll_m: 1; + u8 fc_ll_l: 1; + u8 fc_ll_i: 1; + u8 fc_ll_s: 1; + u8 fc_ll_v: 1; + u8 unallocated_8_0: 1; + u8 unallocated_8_1: 1; + u8 sfp_ct_passive: 1; + u8 sfp_ct_active: 1; + u8 fc_tech_ll: 1; + u8 fc_tech_sl: 1; + u8 fc_tech_sn: 1; + u8 fc_tech_electrical_intra_enclosure: 1; + u8 fc_media_sm: 1; + u8 unallocated_9_1: 1; + u8 fc_media_m5: 1; + u8 fc_media_m6: 1; + u8 fc_media_tv: 1; + u8 fc_media_mi: 1; + u8 fc_media_tp: 1; + u8 fc_media_tw: 1; + u8 fc_speed_100: 1; + u8 unallocated_10_1: 1; + u8 fc_speed_200: 1; + u8 fc_speed_3200: 1; + u8 fc_speed_400: 1; + u8 fc_speed_1600: 1; + u8 fc_speed_800: 1; + u8 fc_speed_1200: 1; + u8 encoding; + u8 br_nominal; + u8 rate_id; + u8 link_len[6]; + char vendor_name[16]; + u8 extended_cc; + char vendor_oui[3]; + char vendor_pn[16]; + char vendor_rev[4]; + union { + __be16 optical_wavelength; + __be16 cable_compliance; + struct { + u8 sff8431_app_e: 1; + u8 fc_pi_4_app_h: 1; + u8 reserved60_2: 6; + u8 reserved61: 8; + } passive; + struct { + u8 sff8431_app_e: 1; + u8 fc_pi_4_app_h: 1; + u8 sff8431_lim: 1; + u8 fc_pi_4_lim: 1; + u8 reserved60_4: 4; + u8 reserved61: 8; + } active; + }; + u8 reserved62; + u8 cc_base; +}; + +struct sfp_eeprom_ext { + __be16 options; + u8 br_max; + u8 br_min; + char vendor_sn[16]; + char datecode[8]; + u8 diagmon; + u8 enhopts; + u8 sff8472_compliance; + u8 cc_ext; +}; + +struct sfp_eeprom_id { + struct sfp_eeprom_base base; + struct sfp_eeprom_ext ext; +}; + +struct sfp_upstream_ops { + void (*attach)(void *, struct sfp_bus *); + void (*detach)(void *, struct sfp_bus *); + int (*module_insert)(void *, const struct sfp_eeprom_id *); + void (*module_remove)(void *); + int (*module_start)(void *); + void (*module_stop)(void *); + void (*link_down)(void *); + void (*link_up)(void *); + int (*connect_phy)(void *, struct phy_device *); + void (*disconnect_phy)(void *, struct phy_device *); +}; + +typedef unsigned char u_char; + +struct sha_pad { + unsigned char sha_pad1[40]; + unsigned char sha_pad2[40]; +}; + +struct ppp_mppe_state { + struct arc4_ctx arc4; + struct shash_desc *sha1; + unsigned char *sha1_digest; + unsigned char master_key[16]; + unsigned char session_key[16]; + unsigned int keylen; + unsigned char bits; + unsigned int ccount; + unsigned int stateful; + int discard; + int sanity_errors; + int unit; + int debug; + struct compstat stats; +}; + +struct uio_map; + +struct uio_mem { + const char *name; + phys_addr_t addr; + dma_addr_t dma_addr; + long unsigned int offs; + resource_size_t size; + int memtype; + void *internal_addr; + struct device *dma_device; + struct uio_map *map; +}; + +struct uio_map { + struct kobject kobj; + struct uio_mem *mem; +}; + +struct uio_portio; + +struct uio_port { + const char *name; + long unsigned int start; + long unsigned int size; + int porttype; + struct uio_portio *portio; +}; + +struct uio_portio { + struct kobject kobj; + struct uio_port *port; +}; + +struct uio_info; + +struct uio_device { + struct module *owner; + struct device dev; + int minor; + atomic_t event; + struct fasync_struct *async_queue; + wait_queue_head_t wait; + struct uio_info *info; + struct mutex info_lock; + struct kobject *map_dir; + struct kobject *portio_dir; +}; + +struct uio_info { + struct uio_device *uio_dev; + const char *name; + const char *version; + struct uio_mem mem[5]; + struct uio_port port[5]; + long int irq; + long unsigned int irq_flags; + void *priv; + irqreturn_t (*handler)(int, struct uio_info *); + int (*mmap)(struct uio_info *, struct vm_area_struct *); + int (*open)(struct uio_info *, struct inode *); + int (*release)(struct uio_info *, struct inode *); + int (*irqcontrol)(struct uio_info *, s32); +}; + +struct map_sysfs_entry { + struct attribute attr; + ssize_t (*show)(struct uio_mem *, char *); + ssize_t (*store)(struct uio_mem *, const char *, size_t); +}; + +struct portio_sysfs_entry { + struct attribute attr; + ssize_t (*show)(struct uio_port *, char *); + ssize_t (*store)(struct uio_port *, const char *, size_t); +}; + +struct uio_listener { + struct uio_device *dev; + s32 event_count; +}; + +struct api_context { + struct completion done; + int status; +}; + +struct set_config_request { + struct usb_device *udev; + int config; + struct work_struct work; + struct list_head node; +}; + +enum usb_phy_interface { + USBPHY_INTERFACE_MODE_UNKNOWN = 0, + USBPHY_INTERFACE_MODE_UTMI = 1, + USBPHY_INTERFACE_MODE_UTMIW = 2, + USBPHY_INTERFACE_MODE_ULPI = 3, + USBPHY_INTERFACE_MODE_SERIAL = 4, + USBPHY_INTERFACE_MODE_HSIC = 5, +}; + +struct xhci_regset { + char name[32]; + struct debugfs_regset32 regset; + size_t nregs; + struct list_head list; +}; + +struct xhci_file_map { + const char *name; + int (*show)(struct seq_file *, void *); +}; + +struct xhci_ep_priv { + char name[32]; + struct dentry *root; + struct xhci_stream_info *stream_info; + struct xhci_ring *show_ring; + unsigned int stream_id; +}; + +struct xhci_slot_priv { + char name[32]; + struct dentry *root; + struct xhci_ep_priv *eps[31]; + struct xhci_virt_device *dev; +}; + +struct usbcons_info { + int magic; + int break_flag; + struct usb_serial_port *port; +}; + +enum { + kl5kusb105a_sio_b115200 = 0, + kl5kusb105a_sio_b57600 = 1, + kl5kusb105a_sio_b38400 = 2, + kl5kusb105a_sio_b19200 = 4, + kl5kusb105a_sio_b14400 = 5, + kl5kusb105a_sio_b9600 = 6, + kl5kusb105a_sio_b4800 = 8, + kl5kusb105a_sio_b2400 = 9, + kl5kusb105a_sio_b1200 = 10, + kl5kusb105a_sio_b600 = 11, +}; + +struct klsi_105_port_settings { + u8 pktlen; + u8 baudrate; + u8 databits; + u8 unknown1; + u8 unknown2; +}; + +struct klsi_105_private { + struct klsi_105_port_settings cfg; + long unsigned int line_state; + spinlock_t lock; +}; + +struct mxuport_port { + u8 mcr_state; + u8 msr_state; + struct mutex mutex; + spinlock_t spinlock; +}; + +enum power_supply_notifier_events { + PSY_EVENT_PROP_CHANGED = 0, +}; + +struct power_supply_config { + struct device_node *of_node; + struct fwnode_handle *fwnode; + void *drv_data; + const struct attribute_group **attr_grp; + char **supplied_to; + size_t num_supplicants; +}; + +struct psy_am_i_supplied_data { + struct power_supply *psy; + unsigned int count; +}; + +struct psy_get_supplier_prop_data { + struct power_supply *psy; + enum power_supply_property psp; + union power_supply_propval *val; +}; + +struct dm_stats_last_position { + sector_t last_sector; + unsigned int last_rw; +}; + +struct dm_stat_percpu { + long long unsigned int sectors[2]; + long long unsigned int ios[2]; + long long unsigned int merges[2]; + long long unsigned int ticks[2]; + long long unsigned int io_ticks[2]; + long long unsigned int io_ticks_total; + long long unsigned int time_in_queue; + long long unsigned int *histogram; +}; + +struct dm_stat_shared { + atomic_t in_flight[2]; + long long unsigned int stamp; + struct dm_stat_percpu tmp; +}; + +struct dm_stat { + struct list_head list_entry; + int id; + unsigned int stat_flags; + size_t n_entries; + sector_t start; + sector_t end; + sector_t step; + unsigned int n_histogram_entries; + long long unsigned int *histogram_boundaries; + const char *program_id; + const char *aux_data; + struct callback_head callback_head; + size_t shared_alloc_size; + size_t percpu_alloc_size; + size_t histogram_alloc_size; + struct dm_stat_percpu *stat_percpu[24]; + struct dm_stat_shared stat_shared[0]; +}; + +typedef int tpl_parse_t(struct mmc_card *, struct sdio_func *, const unsigned char *, unsigned int); + +struct cis_tpl { + unsigned char code; + unsigned char min_size; + tpl_parse_t *parse; +}; + +struct mmc_pwrseq_emmc { + struct mmc_pwrseq pwrseq; + struct notifier_block reset_nb; + struct gpio_desc *reset_gpio; +}; + +struct mhu_db_link { + unsigned int irq; + void *tx_reg; + void *rx_reg; +}; + +struct arm_mhu___2 { + void *base; + struct mhu_db_link mlink[3]; + struct mbox_controller mbox; + struct device *dev; +}; + +struct mhu_db_channel { + struct arm_mhu___2 *mhu; + unsigned int pchan; + unsigned int doorbell; +}; + +struct fib_rule_uid_range { + __u32 start; + __u32 end; +}; + +struct fib_rule_notifier_info { + struct fib_notifier_info info; + struct fib_rule *rule; +}; + +struct tc_htb_opt { + struct tc_ratespec rate; + struct tc_ratespec ceil; + __u32 buffer; + __u32 cbuffer; + __u32 quantum; + __u32 level; + __u32 prio; +}; + +struct tc_htb_glob { + __u32 version; + __u32 rate2quantum; + __u32 defcls; + __u32 debug; + __u32 direct_pkts; +}; + +enum { + TCA_HTB_UNSPEC = 0, + TCA_HTB_PARMS = 1, + TCA_HTB_INIT = 2, + TCA_HTB_CTAB = 3, + TCA_HTB_RTAB = 4, + TCA_HTB_DIRECT_QLEN = 5, + TCA_HTB_RATE64 = 6, + TCA_HTB_CEIL64 = 7, + TCA_HTB_PAD = 8, + TCA_HTB_OFFLOAD = 9, + __TCA_HTB_MAX = 10, +}; + +struct tc_htb_xstats { + __u32 lends; + __u32 borrows; + __u32 giants; + __s32 tokens; + __s32 ctokens; +}; + +enum tc_htb_command { + TC_HTB_CREATE = 0, + TC_HTB_DESTROY = 1, + TC_HTB_LEAF_ALLOC_QUEUE = 2, + TC_HTB_LEAF_TO_INNER = 3, + TC_HTB_LEAF_DEL = 4, + TC_HTB_LEAF_DEL_LAST = 5, + TC_HTB_LEAF_DEL_LAST_FORCE = 6, + TC_HTB_NODE_MODIFY = 7, + TC_HTB_LEAF_QUERY_QUEUE = 8, +}; + +struct tc_htb_qopt_offload { + struct netlink_ext_ack *extack; + enum tc_htb_command command; + u32 parent_classid; + u16 classid; + u16 qid; + u32 quantum; + u64 rate; + u64 ceil; + u8 prio; +}; + +enum htb_cmode { + HTB_CANT_SEND = 0, + HTB_MAY_BORROW = 1, + HTB_CAN_SEND = 2, +}; + +struct htb_prio { + union { + struct rb_root row; + struct rb_root feed; + }; + struct rb_node *ptr; + u32 last_ptr_id; +}; + +struct htb_class_leaf { + int deficit[8]; + struct Qdisc *q; + struct netdev_queue *offload_queue; +}; + +struct htb_class_inner { + struct htb_prio clprio[8]; +}; + +struct htb_class { + struct Qdisc_class_common common; + struct psched_ratecfg rate; + struct psched_ratecfg ceil; + s64 buffer; + s64 cbuffer; + s64 mbuffer; + u32 prio; + int quantum; + struct tcf_proto *filter_list; + struct tcf_block *block; + int level; + unsigned int children; + struct htb_class *parent; + struct net_rate_estimator *rate_est; + struct gnet_stats_basic_sync bstats; + struct gnet_stats_basic_sync bstats_bias; + struct tc_htb_xstats xstats; + s64 tokens; + s64 ctokens; + s64 t_c; + union { + struct htb_class_leaf leaf; + struct htb_class_inner inner; + }; + s64 pq_key; + int prio_activity; + enum htb_cmode cmode; + struct rb_node pq_node; + struct rb_node node[8]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + unsigned int drops; + unsigned int overlimits; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct htb_level { + struct rb_root wait_pq; + struct htb_prio hprio[8]; +}; + +struct htb_sched { + struct Qdisc_class_hash clhash; + int defcls; + int rate2quantum; + struct tcf_proto *filter_list; + struct tcf_block *block; + unsigned int warned; + int direct_qlen; + struct work_struct work; + struct qdisc_skb_head direct_queue; + u32 direct_pkts; + u32 overlimits; + struct qdisc_watchdog watchdog; + s64 now; + s64 near_ev_cache[8]; + int row_mask[8]; + struct htb_level hlevel[8]; + struct Qdisc **direct_qdiscs; + unsigned int num_direct_qdiscs; + bool offload; +}; + +enum { + TCA_CGROUP_UNSPEC = 0, + TCA_CGROUP_ACT = 1, + TCA_CGROUP_POLICE = 2, + TCA_CGROUP_EMATCHES = 3, + __TCA_CGROUP_MAX = 4, +}; + +struct cls_cgroup_head { + u32 handle; + struct tcf_exts exts; + struct tcf_ematch_tree ematches; + struct tcf_proto *tp; + struct rcu_work rwork; +}; + +enum { + ETHTOOL_A_STRING_UNSPEC = 0, + ETHTOOL_A_STRING_INDEX = 1, + ETHTOOL_A_STRING_VALUE = 2, + __ETHTOOL_A_STRING_CNT = 3, + ETHTOOL_A_STRING_MAX = 2, +}; + +enum { + ETHTOOL_A_STRINGS_UNSPEC = 0, + ETHTOOL_A_STRINGS_STRING = 1, + __ETHTOOL_A_STRINGS_CNT = 2, + ETHTOOL_A_STRINGS_MAX = 1, +}; + +enum { + ETHTOOL_A_STRINGSET_UNSPEC = 0, + ETHTOOL_A_STRINGSET_ID = 1, + ETHTOOL_A_STRINGSET_COUNT = 2, + ETHTOOL_A_STRINGSET_STRINGS = 3, + __ETHTOOL_A_STRINGSET_CNT = 4, + ETHTOOL_A_STRINGSET_MAX = 3, +}; + +enum { + ETHTOOL_A_STRINGSETS_UNSPEC = 0, + ETHTOOL_A_STRINGSETS_STRINGSET = 1, + __ETHTOOL_A_STRINGSETS_CNT = 2, + ETHTOOL_A_STRINGSETS_MAX = 1, +}; + +enum { + ETHTOOL_UDP_TUNNEL_TYPE_VXLAN = 0, + ETHTOOL_UDP_TUNNEL_TYPE_GENEVE = 1, + ETHTOOL_UDP_TUNNEL_TYPE_VXLAN_GPE = 2, + __ETHTOOL_UDP_TUNNEL_TYPE_CNT = 3, +}; + +struct strset_info { + bool per_dev; + bool free_strings; + unsigned int count; + const char (*strings)[32]; +}; + +struct strset_req_info { + struct ethnl_req_info base; + u32 req_ids; + bool counts_only; +}; + +struct strset_reply_data { + struct ethnl_reply_data base; + struct strset_info sets[21]; +}; + +struct phc_vclocks_reply_data { + struct ethnl_reply_data base; + int num; + int *index; +}; + +struct nf_log_buf { + unsigned int count; + char buf[1020]; +}; + +struct conntrack_gc_work { + struct delayed_work dwork; + u32 next_bucket; + u32 avg_timeout; + u32 count; + u32 start_time; + bool exiting; + bool early_drop; +}; + +struct nft_counter { + u64_stats_t bytes; + u64_stats_t packets; +}; + +struct nft_counter_tot { + s64 bytes; + s64 packets; +}; + +struct nft_counter_percpu_priv { + struct nft_counter *counter; +}; + +enum nft_tunnel_key_ip_attributes { + NFTA_TUNNEL_KEY_IP_UNSPEC = 0, + NFTA_TUNNEL_KEY_IP_SRC = 1, + NFTA_TUNNEL_KEY_IP_DST = 2, + __NFTA_TUNNEL_KEY_IP_MAX = 3, +}; + +enum nft_tunnel_ip6_attributes { + NFTA_TUNNEL_KEY_IP6_UNSPEC = 0, + NFTA_TUNNEL_KEY_IP6_SRC = 1, + NFTA_TUNNEL_KEY_IP6_DST = 2, + NFTA_TUNNEL_KEY_IP6_FLOWLABEL = 3, + __NFTA_TUNNEL_KEY_IP6_MAX = 4, +}; + +enum nft_tunnel_opts_attributes { + NFTA_TUNNEL_KEY_OPTS_UNSPEC = 0, + NFTA_TUNNEL_KEY_OPTS_VXLAN = 1, + NFTA_TUNNEL_KEY_OPTS_ERSPAN = 2, + NFTA_TUNNEL_KEY_OPTS_GENEVE = 3, + __NFTA_TUNNEL_KEY_OPTS_MAX = 4, +}; + +enum nft_tunnel_opts_vxlan_attributes { + NFTA_TUNNEL_KEY_VXLAN_UNSPEC = 0, + NFTA_TUNNEL_KEY_VXLAN_GBP = 1, + __NFTA_TUNNEL_KEY_VXLAN_MAX = 2, +}; + +enum nft_tunnel_opts_erspan_attributes { + NFTA_TUNNEL_KEY_ERSPAN_UNSPEC = 0, + NFTA_TUNNEL_KEY_ERSPAN_VERSION = 1, + NFTA_TUNNEL_KEY_ERSPAN_V1_INDEX = 2, + NFTA_TUNNEL_KEY_ERSPAN_V2_HWID = 3, + NFTA_TUNNEL_KEY_ERSPAN_V2_DIR = 4, + __NFTA_TUNNEL_KEY_ERSPAN_MAX = 5, +}; + +enum nft_tunnel_opts_geneve_attributes { + NFTA_TUNNEL_KEY_GENEVE_UNSPEC = 0, + NFTA_TUNNEL_KEY_GENEVE_CLASS = 1, + NFTA_TUNNEL_KEY_GENEVE_TYPE = 2, + NFTA_TUNNEL_KEY_GENEVE_DATA = 3, + __NFTA_TUNNEL_KEY_GENEVE_MAX = 4, +}; + +enum nft_tunnel_flags { + NFT_TUNNEL_F_ZERO_CSUM_TX = 1, + NFT_TUNNEL_F_DONT_FRAGMENT = 2, + NFT_TUNNEL_F_SEQ_NUMBER = 4, +}; + +enum nft_tunnel_key_attributes { + NFTA_TUNNEL_KEY_UNSPEC = 0, + NFTA_TUNNEL_KEY_ID = 1, + NFTA_TUNNEL_KEY_IP = 2, + NFTA_TUNNEL_KEY_IP6 = 3, + NFTA_TUNNEL_KEY_FLAGS = 4, + NFTA_TUNNEL_KEY_TOS = 5, + NFTA_TUNNEL_KEY_TTL = 6, + NFTA_TUNNEL_KEY_SPORT = 7, + NFTA_TUNNEL_KEY_DPORT = 8, + NFTA_TUNNEL_KEY_OPTS = 9, + __NFTA_TUNNEL_KEY_MAX = 10, +}; + +enum nft_tunnel_keys { + NFT_TUNNEL_PATH = 0, + NFT_TUNNEL_ID = 1, + __NFT_TUNNEL_MAX = 2, +}; + +enum nft_tunnel_mode { + NFT_TUNNEL_MODE_NONE = 0, + NFT_TUNNEL_MODE_RX = 1, + NFT_TUNNEL_MODE_TX = 2, + __NFT_TUNNEL_MODE_MAX = 3, +}; + +enum nft_tunnel_attributes { + NFTA_TUNNEL_UNSPEC = 0, + NFTA_TUNNEL_KEY = 1, + NFTA_TUNNEL_DREG = 2, + NFTA_TUNNEL_MODE = 3, + __NFTA_TUNNEL_MAX = 4, +}; + +struct vxlan_metadata { + u32 gbp; +}; + +struct geneve_opt { + __be16 opt_class; + u8 type; + u8 length: 5; + u8 r3: 1; + u8 r2: 1; + u8 r1: 1; + u8 opt_data[0]; +}; + +struct nft_tunnel { + enum nft_tunnel_keys key: 8; + u8 dreg; + enum nft_tunnel_mode mode: 8; + u8 len; +}; + +struct nft_tunnel_opts { + union { + struct vxlan_metadata vxlan; + struct erspan_metadata erspan; + u8 data[255]; + } u; + long unsigned int flags[1]; + u32 len; +}; + +struct nft_tunnel_obj { + struct metadata_dst *md; + struct nft_tunnel_opts opts; +}; + +struct xt_CHECKSUM_info { + __u8 operation; +}; + +struct idletimer_tg; + +struct idletimer_tg_info { + __u32 timeout; + char label[28]; + struct idletimer_tg *timer; +}; + +struct idletimer_tg { + struct list_head entry; + struct alarm alarm; + struct timer_list timer; + struct work_struct work; + struct kobject *kobj; + struct device_attribute attr; + unsigned int refcnt; + u8 timer_type; +}; + +struct idletimer_tg_info_v1 { + __u32 timeout; + char label[28]; + __u8 send_nl_msg; + __u8 timer_type; + struct idletimer_tg *timer; +}; + +struct xt_limit_priv; + +struct xt_rateinfo { + __u32 avg; + __u32 burst; + long unsigned int prev; + __u32 credit; + __u32 credit_cap; + __u32 cost; + struct xt_limit_priv *master; +}; + +struct xt_limit_priv { + long unsigned int prev; + u32 credit; +}; + +enum xt_u32_ops { + XT_U32_AND = 0, + XT_U32_LEFTSH = 1, + XT_U32_RIGHTSH = 2, + XT_U32_AT = 3, +}; + +struct xt_u32_location_element { + __u32 number; + __u8 nextop; +}; + +struct xt_u32_value_element { + __u32 min; + __u32 max; +}; + +struct xt_u32_test { + struct xt_u32_location_element location[11]; + struct xt_u32_value_element value[11]; + __u8 nnums; + __u8 nvalues; +}; + +struct xt_u32 { + struct xt_u32_test tests[11]; + __u8 ntests; + __u8 invert; +}; + +struct ip_vs_sync_mesg; + +struct ip_vs_sync_buff { + struct list_head list; + long unsigned int firstuse; + struct ip_vs_sync_mesg *mesg; + unsigned char *head; + unsigned char *end; +}; + +struct ip_vs_sync_thread_data { + struct task_struct *task; + struct netns_ipvs *ipvs; + struct socket *sock; + char *buf; + int id; +}; + +struct ip_vs_sync_conn_v0 { + __u8 reserved; + __u8 protocol; + __be16 cport; + __be16 vport; + __be16 dport; + __be32 caddr; + __be32 vaddr; + __be32 daddr; + __be16 flags; + __be16 state; +}; + +struct ip_vs_sync_conn_options { + struct ip_vs_seq in_seq; + struct ip_vs_seq out_seq; +}; + +struct ip_vs_sync_v4 { + __u8 type; + __u8 protocol; + __be16 ver_size; + __be32 flags; + __be16 state; + __be16 cport; + __be16 vport; + __be16 dport; + __be32 fwmark; + __be32 timeout; + __be32 caddr; + __be32 vaddr; + __be32 daddr; +}; + +struct ip_vs_sync_v6 { + __u8 type; + __u8 protocol; + __be16 ver_size; + __be32 flags; + __be16 state; + __be16 cport; + __be16 vport; + __be16 dport; + __be32 fwmark; + __be32 timeout; + struct in6_addr caddr; + struct in6_addr vaddr; + struct in6_addr daddr; +}; + +union ip_vs_sync_conn { + struct ip_vs_sync_v4 v4; + struct ip_vs_sync_v6 v6; +}; + +struct ip_vs_sync_mesg_v0 { + __u8 nr_conns; + __u8 syncid; + __be16 size; +}; + +struct ip_vs_sync_mesg { + __u8 reserved; + __u8 syncid; + __be16 size; + __u8 nr_conns; + __s8 version; + __u16 spare; +}; + +union ipvs_sockaddr { + struct sockaddr_in in; + struct sockaddr_in6 in6; +}; + +enum lwtunnel_ip_t { + LWTUNNEL_IP_UNSPEC = 0, + LWTUNNEL_IP_ID = 1, + LWTUNNEL_IP_DST = 2, + LWTUNNEL_IP_SRC = 3, + LWTUNNEL_IP_TTL = 4, + LWTUNNEL_IP_TOS = 5, + LWTUNNEL_IP_FLAGS = 6, + LWTUNNEL_IP_PAD = 7, + LWTUNNEL_IP_OPTS = 8, + __LWTUNNEL_IP_MAX = 9, +}; + +enum lwtunnel_ip6_t { + LWTUNNEL_IP6_UNSPEC = 0, + LWTUNNEL_IP6_ID = 1, + LWTUNNEL_IP6_DST = 2, + LWTUNNEL_IP6_SRC = 3, + LWTUNNEL_IP6_HOPLIMIT = 4, + LWTUNNEL_IP6_TC = 5, + LWTUNNEL_IP6_FLAGS = 6, + LWTUNNEL_IP6_PAD = 7, + LWTUNNEL_IP6_OPTS = 8, + __LWTUNNEL_IP6_MAX = 9, +}; + +enum { + LWTUNNEL_IP_OPTS_UNSPEC = 0, + LWTUNNEL_IP_OPTS_GENEVE = 1, + LWTUNNEL_IP_OPTS_VXLAN = 2, + LWTUNNEL_IP_OPTS_ERSPAN = 3, + __LWTUNNEL_IP_OPTS_MAX = 4, +}; + +enum { + LWTUNNEL_IP_OPT_GENEVE_UNSPEC = 0, + LWTUNNEL_IP_OPT_GENEVE_CLASS = 1, + LWTUNNEL_IP_OPT_GENEVE_TYPE = 2, + LWTUNNEL_IP_OPT_GENEVE_DATA = 3, + __LWTUNNEL_IP_OPT_GENEVE_MAX = 4, +}; + +enum { + LWTUNNEL_IP_OPT_VXLAN_UNSPEC = 0, + LWTUNNEL_IP_OPT_VXLAN_GBP = 1, + __LWTUNNEL_IP_OPT_VXLAN_MAX = 2, +}; + +enum { + LWTUNNEL_IP_OPT_ERSPAN_UNSPEC = 0, + LWTUNNEL_IP_OPT_ERSPAN_VER = 1, + LWTUNNEL_IP_OPT_ERSPAN_INDEX = 2, + LWTUNNEL_IP_OPT_ERSPAN_DIR = 3, + LWTUNNEL_IP_OPT_ERSPAN_HWID = 4, + __LWTUNNEL_IP_OPT_ERSPAN_MAX = 5, +}; + +struct gre_protocol { + int (*handler)(struct sk_buff *); + void (*err_handler)(struct sk_buff *, u32); +}; + +struct ipt_getinfo { + char name[32]; + unsigned int valid_hooks; + unsigned int hook_entry[5]; + unsigned int underflow[5]; + unsigned int num_entries; + unsigned int size; +}; + +struct ipt_get_entries { + char name[32]; + unsigned int size; + struct ipt_entry entrytable[0]; +}; + +struct ipt_error { + struct ipt_entry entry; + struct xt_error_target target; +}; + +enum nf_ip_trace_comments___2 { + NF_IP_TRACE_COMMENT_RULE = 0, + NF_IP_TRACE_COMMENT_RETURN = 1, + NF_IP_TRACE_COMMENT_POLICY = 2, +}; + +enum ipt_reject_with { + IPT_ICMP_NET_UNREACHABLE = 0, + IPT_ICMP_HOST_UNREACHABLE = 1, + IPT_ICMP_PROT_UNREACHABLE = 2, + IPT_ICMP_PORT_UNREACHABLE = 3, + IPT_ICMP_ECHOREPLY = 4, + IPT_ICMP_NET_PROHIBITED = 5, + IPT_ICMP_HOST_PROHIBITED = 6, + IPT_TCP_RESET = 7, + IPT_ICMP_ADMIN_PROHIBITED = 8, +}; + +struct ipt_reject_info { + enum ipt_reject_with with; +}; + +struct inet_diag_req { + __u8 idiag_family; + __u8 idiag_src_len; + __u8 idiag_dst_len; + __u8 idiag_ext; + struct inet_diag_sockid id; + __u32 idiag_states; + __u32 idiag_dbs; +}; + +struct inet_diag_bc_op { + unsigned char code; + unsigned char yes; + short unsigned int no; +}; + +enum { + INET_DIAG_BC_NOP = 0, + INET_DIAG_BC_JMP = 1, + INET_DIAG_BC_S_GE = 2, + INET_DIAG_BC_S_LE = 3, + INET_DIAG_BC_D_GE = 4, + INET_DIAG_BC_D_LE = 5, + INET_DIAG_BC_AUTO = 6, + INET_DIAG_BC_S_COND = 7, + INET_DIAG_BC_D_COND = 8, + INET_DIAG_BC_DEV_COND = 9, + INET_DIAG_BC_MARK_COND = 10, + INET_DIAG_BC_S_EQ = 11, + INET_DIAG_BC_D_EQ = 12, + INET_DIAG_BC_CGROUP_COND = 13, +}; + +struct inet_diag_hostcond { + __u8 family; + __u8 prefix_len; + int port; + __be32 addr[0]; +}; + +struct inet_diag_markcond { + __u32 mark; + __u32 mask; +}; + +enum { + INET_DIAG_NONE = 0, + INET_DIAG_MEMINFO = 1, + INET_DIAG_INFO = 2, + INET_DIAG_VEGASINFO = 3, + INET_DIAG_CONG = 4, + INET_DIAG_TOS = 5, + INET_DIAG_TCLASS = 6, + INET_DIAG_SKMEMINFO = 7, + INET_DIAG_SHUTDOWN = 8, + INET_DIAG_DCTCPINFO = 9, + INET_DIAG_PROTOCOL = 10, + INET_DIAG_SKV6ONLY = 11, + INET_DIAG_LOCALS = 12, + INET_DIAG_PEERS = 13, + INET_DIAG_PAD = 14, + INET_DIAG_MARK = 15, + INET_DIAG_BBRINFO = 16, + INET_DIAG_CLASS_ID = 17, + INET_DIAG_MD5SIG = 18, + INET_DIAG_ULP_INFO = 19, + INET_DIAG_SK_BPF_STORAGES = 20, + INET_DIAG_CGROUP_ID = 21, + INET_DIAG_SOCKOPT = 22, + __INET_DIAG_MAX = 23, +}; + +struct inet_diag_meminfo { + __u32 idiag_rmem; + __u32 idiag_wmem; + __u32 idiag_fmem; + __u32 idiag_tmem; +}; + +struct inet_diag_sockopt { + __u8 recverr: 1; + __u8 is_icsk: 1; + __u8 freebind: 1; + __u8 hdrincl: 1; + __u8 mc_loop: 1; + __u8 transparent: 1; + __u8 mc_all: 1; + __u8 nodefrag: 1; + __u8 bind_address_no_port: 1; + __u8 recverr_rfc4884: 1; + __u8 defer_connect: 1; + __u8 unused: 5; +}; + +struct inet_diag_entry { + const __be32 *saddr; + const __be32 *daddr; + u16 sport; + u16 dport; + u16 family; + u16 userlocks; + u32 ifindex; + u32 mark; + u64 cgroup_id; +}; + +typedef void ip6_icmp_send_t(struct sk_buff *, u8, u8, __u32, const struct in6_addr *, const struct inet6_skb_parm *); + +struct icmpv6_msg { + struct sk_buff *skb; + int offset; + uint8_t type; +}; + +struct icmp6_err { + int err; + int fatal; +}; + +struct ip6_fraglist_iter { + struct ipv6hdr *tmp_hdr; + struct sk_buff *frag; + int offset; + unsigned int hlen; + __be32 frag_id; + u8 nexthdr; +}; + +struct ip6_frag_state { + u8 *prevhdr; + unsigned int hlen; + unsigned int mtu; + unsigned int left; + int offset; + int ptr; + int hroom; + int troom; + __be32 frag_id; + u8 nexthdr; +}; + +struct nf_bridge_frag_data; + +enum { + ILA_ATYPE_IID = 0, + ILA_ATYPE_LUID = 1, + ILA_ATYPE_VIRT_V4 = 2, + ILA_ATYPE_VIRT_UNI_V6 = 3, + ILA_ATYPE_VIRT_MULTI_V6 = 4, + ILA_ATYPE_NONLOCAL_ADDR = 5, + ILA_ATYPE_RSVD_1 = 6, + ILA_ATYPE_RSVD_2 = 7, + ILA_ATYPE_USE_FORMAT = 32, +}; + +struct ila_net { + struct { + struct rhashtable rhash_table; + spinlock_t *locks; + unsigned int locks_mask; + bool hooks_registered; + } xlat; +}; + +struct ila_xlat_params { + struct ila_params ip; + int ifindex; +}; + +struct ila_map { + struct ila_xlat_params xp; + struct rhash_head node; + struct ila_map *next; + struct callback_head rcu; +}; + +struct ila_dump_iter { + struct rhashtable_iter rhiter; + int skip; +}; + +struct ip6t_ah { + __u32 spis[2]; + __u32 hdrlen; + __u8 hdrres; + __u8 invflags; +}; + +struct ebt_mac_wormhash_tuple { + __u32 cmp[2]; + __be32 ip; +}; + +struct ebt_mac_wormhash { + int table[257]; + int poolsize; + struct ebt_mac_wormhash_tuple pool[0]; +}; + +struct ebt_among_info { + int wh_dst_ofs; + int wh_src_ofs; + int bitmask; +}; + +struct ebt_nat_info { + unsigned char mac[6]; + int target; +}; + +enum vlan_ioctl_cmds { + ADD_VLAN_CMD = 0, + DEL_VLAN_CMD = 1, + SET_VLAN_INGRESS_PRIORITY_CMD = 2, + SET_VLAN_EGRESS_PRIORITY_CMD = 3, + GET_VLAN_INGRESS_PRIORITY_CMD = 4, + GET_VLAN_EGRESS_PRIORITY_CMD = 5, + SET_VLAN_NAME_TYPE_CMD = 6, + SET_VLAN_FLAG_CMD = 7, + GET_VLAN_REALDEV_NAME_CMD = 8, + GET_VLAN_VID_CMD = 9, +}; + +struct vlan_ioctl_args { + int cmd; + char device1[24]; + union { + char device2[24]; + int VID; + unsigned int skb_priority; + unsigned int name_type; + unsigned int bind_type; + unsigned int flag; + } u; + short int vlan_qos; +}; + +enum dns_payload_content_type { + DNS_PAYLOAD_IS_SERVER_LIST = 0, +}; + +enum dns_lookup_status { + DNS_LOOKUP_NOT_DONE = 0, + DNS_LOOKUP_GOOD = 1, + DNS_LOOKUP_GOOD_WITH_BAD = 2, + DNS_LOOKUP_BAD = 3, + DNS_LOOKUP_GOT_NOT_FOUND = 4, + DNS_LOOKUP_GOT_LOCAL_FAILURE = 5, + DNS_LOOKUP_GOT_TEMP_FAILURE = 6, + DNS_LOOKUP_GOT_NS_FAILURE = 7, + NR__dns_lookup_status = 8, +}; + +struct dns_payload_header { + __u8 zero; + __u8 content; + __u8 version; +}; + +struct dns_server_list_v1_header { + struct dns_payload_header hdr; + __u8 source; + __u8 status; + __u8 nr_servers; +}; + +enum ovs_tunnel_key_attr { + OVS_TUNNEL_KEY_ATTR_ID = 0, + OVS_TUNNEL_KEY_ATTR_IPV4_SRC = 1, + OVS_TUNNEL_KEY_ATTR_IPV4_DST = 2, + OVS_TUNNEL_KEY_ATTR_TOS = 3, + OVS_TUNNEL_KEY_ATTR_TTL = 4, + OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT = 5, + OVS_TUNNEL_KEY_ATTR_CSUM = 6, + OVS_TUNNEL_KEY_ATTR_OAM = 7, + OVS_TUNNEL_KEY_ATTR_GENEVE_OPTS = 8, + OVS_TUNNEL_KEY_ATTR_TP_SRC = 9, + OVS_TUNNEL_KEY_ATTR_TP_DST = 10, + OVS_TUNNEL_KEY_ATTR_VXLAN_OPTS = 11, + OVS_TUNNEL_KEY_ATTR_IPV6_SRC = 12, + OVS_TUNNEL_KEY_ATTR_IPV6_DST = 13, + OVS_TUNNEL_KEY_ATTR_PAD = 14, + OVS_TUNNEL_KEY_ATTR_ERSPAN_OPTS = 15, + OVS_TUNNEL_KEY_ATTR_IPV4_INFO_BRIDGE = 16, + __OVS_TUNNEL_KEY_ATTR_MAX = 17, +}; + +struct ovs_key_ethernet { + __u8 eth_src[6]; + __u8 eth_dst[6]; +}; + +struct ovs_key_mpls { + __be32 mpls_lse; +}; + +struct ovs_key_ipv4 { + __be32 ipv4_src; + __be32 ipv4_dst; + __u8 ipv4_proto; + __u8 ipv4_tos; + __u8 ipv4_ttl; + __u8 ipv4_frag; +}; + +struct ovs_key_ipv6 { + __be32 ipv6_src[4]; + __be32 ipv6_dst[4]; + __be32 ipv6_label; + __u8 ipv6_proto; + __u8 ipv6_tclass; + __u8 ipv6_hlimit; + __u8 ipv6_frag; +}; + +struct ovs_key_ipv6_exthdrs { + __u16 hdrs; +}; + +struct ovs_key_tcp { + __be16 tcp_src; + __be16 tcp_dst; +}; + +struct ovs_key_udp { + __be16 udp_src; + __be16 udp_dst; +}; + +struct ovs_key_sctp { + __be16 sctp_src; + __be16 sctp_dst; +}; + +struct ovs_key_icmp { + __u8 icmp_type; + __u8 icmp_code; +}; + +struct ovs_key_icmpv6 { + __u8 icmpv6_type; + __u8 icmpv6_code; +}; + +struct ovs_key_arp { + __be32 arp_sip; + __be32 arp_tip; + __be16 arp_op; + __u8 arp_sha[6]; + __u8 arp_tha[6]; +}; + +struct ovs_key_nd { + __be32 nd_target[4]; + __u8 nd_sll[6]; + __u8 nd_tll[6]; +}; + +enum ovs_nsh_key_attr { + OVS_NSH_KEY_ATTR_UNSPEC = 0, + OVS_NSH_KEY_ATTR_BASE = 1, + OVS_NSH_KEY_ATTR_MD1 = 2, + OVS_NSH_KEY_ATTR_MD2 = 3, + __OVS_NSH_KEY_ATTR_MAX = 4, +}; + +struct ovs_nsh_key_md1 { + __be32 context[4]; +}; + +enum ovs_sample_attr { + OVS_SAMPLE_ATTR_UNSPEC = 0, + OVS_SAMPLE_ATTR_PROBABILITY = 1, + OVS_SAMPLE_ATTR_ACTIONS = 2, + __OVS_SAMPLE_ATTR_MAX = 3, + OVS_SAMPLE_ATTR_ARG = 4, +}; + +struct sample_arg { + bool exec; + u32 probability; +}; + +enum ovs_userspace_attr { + OVS_USERSPACE_ATTR_UNSPEC = 0, + OVS_USERSPACE_ATTR_PID = 1, + OVS_USERSPACE_ATTR_USERDATA = 2, + OVS_USERSPACE_ATTR_EGRESS_TUN_PORT = 3, + OVS_USERSPACE_ATTR_ACTIONS = 4, + __OVS_USERSPACE_ATTR_MAX = 5, +}; + +struct ovs_action_trunc { + __u32 max_len; +}; + +struct ovs_action_push_mpls { + __be32 mpls_lse; + __be16 mpls_ethertype; +}; + +struct ovs_action_add_mpls { + __be32 mpls_lse; + __be16 mpls_ethertype; + __u16 tun_flags; +}; + +struct ovs_action_push_vlan { + __be16 vlan_tpid; + __be16 vlan_tci; +}; + +enum ovs_hash_alg { + OVS_HASH_ALG_L4 = 0, + OVS_HASH_ALG_SYM_L4 = 1, +}; + +struct ovs_action_hash { + __u32 hash_alg; + __u32 hash_basis; +}; + +enum ovs_check_pkt_len_attr { + OVS_CHECK_PKT_LEN_ATTR_UNSPEC = 0, + OVS_CHECK_PKT_LEN_ATTR_PKT_LEN = 1, + OVS_CHECK_PKT_LEN_ATTR_ACTIONS_IF_GREATER = 2, + OVS_CHECK_PKT_LEN_ATTR_ACTIONS_IF_LESS_EQUAL = 3, + __OVS_CHECK_PKT_LEN_ATTR_MAX = 4, + OVS_CHECK_PKT_LEN_ATTR_ARG = 5, +}; + +struct check_pkt_len_arg { + u16 pkt_len; + bool exec_for_greater; + bool exec_for_lesser_equal; +}; + +enum ovs_psample_attr { + OVS_PSAMPLE_ATTR_GROUP = 1, + OVS_PSAMPLE_ATTR_COOKIE = 2, + __OVS_PSAMPLE_ATTR_MAX = 3, +}; + +enum ovs_dec_ttl_attr { + OVS_DEC_TTL_ATTR_UNSPEC = 0, + OVS_DEC_TTL_ATTR_ACTION = 1, + __OVS_DEC_TTL_ATTR_MAX = 2, +}; + +struct ovs_tunnel_info { + struct metadata_dst *tun_dst; +}; + +struct ovs_len_tbl { + int len; + const struct ovs_len_tbl *next; +}; + +typedef void switchdev_deferred_func_t(struct net_device *, const void *); + +struct switchdev_deferred_item { + struct list_head list; + struct net_device *dev; + netdevice_tracker dev_tracker; + switchdev_deferred_func_t *func; + long unsigned int data[0]; +}; + +struct switchdev_nested_priv { + bool (*check_cb)(const struct net_device *); + bool (*foreign_dev_check_cb)(const struct net_device *, const struct net_device *); + const struct net_device *dev; + struct net_device *lower_dev; +}; + +struct die_args { + struct pt_regs *regs; + const char *str; + long int err; + int trapnr; + int signr; +}; + +struct trace_event_raw_notifier_info { + struct trace_entry ent; + void *cb; + char __data[0]; +}; + +struct trace_event_data_offsets_notifier_info {}; + +typedef void (*btf_trace_notifier_register)(void *, void *); + +typedef void (*btf_trace_notifier_unregister)(void *, void *); + +typedef void (*btf_trace_notifier_run)(void *, void *); + +enum proc_cn_event { + PROC_EVENT_NONE = 0, + PROC_EVENT_FORK = 1, + PROC_EVENT_EXEC = 2, + PROC_EVENT_UID = 4, + PROC_EVENT_GID = 64, + PROC_EVENT_SID = 128, + PROC_EVENT_PTRACE = 256, + PROC_EVENT_COMM = 512, + PROC_EVENT_NONZERO_EXIT = 536870912, + PROC_EVENT_COREDUMP = 1073741824, + PROC_EVENT_EXIT = 2147483648, +}; + +struct irqchip_fwid { + struct fwnode_handle fwnode; + unsigned int type; + char *name; + phys_addr_t *pa; +}; + +typedef struct { + spinlock_t *lock; + long unsigned int flags; +} class_spinlock_irqsave_t; + +struct __kernel_old_itimerval { + struct __kernel_old_timeval it_interval; + struct __kernel_old_timeval it_value; +}; + +struct trace_event_raw_cgroup_root { + struct trace_entry ent; + int root; + u16 ss_mask; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_cgroup { + struct trace_entry ent; + int root; + int level; + u64 id; + u32 __data_loc_path; + char __data[0]; +}; + +struct trace_event_raw_cgroup_migrate { + struct trace_entry ent; + int dst_root; + int dst_level; + u64 dst_id; + int pid; + u32 __data_loc_dst_path; + u32 __data_loc_comm; + char __data[0]; +}; + +struct trace_event_raw_cgroup_event { + struct trace_entry ent; + int root; + int level; + u64 id; + u32 __data_loc_path; + int val; + char __data[0]; +}; + +struct trace_event_raw_cgroup_rstat { + struct trace_entry ent; + int root; + int level; + u64 id; + int cpu; + bool contended; + char __data[0]; +}; + +struct trace_event_data_offsets_cgroup_root { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_cgroup { + u32 path; + const void *path_ptr_; +}; + +struct trace_event_data_offsets_cgroup_migrate { + u32 dst_path; + const void *dst_path_ptr_; + u32 comm; + const void *comm_ptr_; +}; + +struct trace_event_data_offsets_cgroup_event { + u32 path; + const void *path_ptr_; +}; + +struct trace_event_data_offsets_cgroup_rstat {}; + +typedef void (*btf_trace_cgroup_setup_root)(void *, struct cgroup_root *); + +typedef void (*btf_trace_cgroup_destroy_root)(void *, struct cgroup_root *); + +typedef void (*btf_trace_cgroup_remount)(void *, struct cgroup_root *); + +typedef void (*btf_trace_cgroup_mkdir)(void *, struct cgroup *, const char *); + +typedef void (*btf_trace_cgroup_rmdir)(void *, struct cgroup *, const char *); + +typedef void (*btf_trace_cgroup_release)(void *, struct cgroup *, const char *); + +typedef void (*btf_trace_cgroup_rename)(void *, struct cgroup *, const char *); + +typedef void (*btf_trace_cgroup_freeze)(void *, struct cgroup *, const char *); + +typedef void (*btf_trace_cgroup_unfreeze)(void *, struct cgroup *, const char *); + +typedef void (*btf_trace_cgroup_attach_task)(void *, struct cgroup *, const char *, struct task_struct *, bool); + +typedef void (*btf_trace_cgroup_transfer_tasks)(void *, struct cgroup *, const char *, struct task_struct *, bool); + +typedef void (*btf_trace_cgroup_notify_populated)(void *, struct cgroup *, const char *, int); + +typedef void (*btf_trace_cgroup_notify_frozen)(void *, struct cgroup *, const char *, int); + +typedef void (*btf_trace_cgroup_rstat_lock_contended)(void *, struct cgroup *, int, bool); + +typedef void (*btf_trace_cgroup_rstat_locked)(void *, struct cgroup *, int, bool); + +typedef void (*btf_trace_cgroup_rstat_unlock)(void *, struct cgroup *, int, bool); + +typedef void (*btf_trace_cgroup_rstat_cpu_lock_contended)(void *, struct cgroup *, int, bool); + +typedef void (*btf_trace_cgroup_rstat_cpu_lock_contended_fastpath)(void *, struct cgroup *, int, bool); + +typedef void (*btf_trace_cgroup_rstat_cpu_locked)(void *, struct cgroup *, int, bool); + +typedef void (*btf_trace_cgroup_rstat_cpu_locked_fastpath)(void *, struct cgroup *, int, bool); + +typedef void (*btf_trace_cgroup_rstat_cpu_unlock)(void *, struct cgroup *, int, bool); + +typedef void (*btf_trace_cgroup_rstat_cpu_unlock_fastpath)(void *, struct cgroup *, int, bool); + +enum cgroup_opt_features { + OPT_FEATURE_PRESSURE = 0, + OPT_FEATURE_COUNT = 1, +}; + +enum cgroup2_param { + Opt_nsdelegate = 0, + Opt_favordynmods___2 = 1, + Opt_memory_localevents = 2, + Opt_memory_recursiveprot = 3, + Opt_memory_hugetlb_accounting = 4, + Opt_pids_localevents = 5, + nr__cgroup2_params = 6, +}; + +enum cpuset_param { + Opt_cpuset_v2_mode___2 = 0, +}; + +struct trace_event_raw_cpu { + struct trace_entry ent; + u32 state; + u32 cpu_id; + char __data[0]; +}; + +struct trace_event_raw_cpu_idle_miss { + struct trace_entry ent; + u32 cpu_id; + u32 state; + bool below; + char __data[0]; +}; + +struct trace_event_raw_powernv_throttle { + struct trace_entry ent; + int chip_id; + u32 __data_loc_reason; + int pmax; + char __data[0]; +}; + +struct trace_event_raw_pstate_sample { + struct trace_entry ent; + u32 core_busy; + u32 scaled_busy; + u32 from; + u32 to; + u64 mperf; + u64 aperf; + u64 tsc; + u32 freq; + u32 io_boost; + char __data[0]; +}; + +struct trace_event_raw_cpu_frequency_limits { + struct trace_entry ent; + u32 min_freq; + u32 max_freq; + u32 cpu_id; + char __data[0]; +}; + +struct trace_event_raw_device_pm_callback_start { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_driver; + u32 __data_loc_parent; + u32 __data_loc_pm_ops; + int event; + char __data[0]; +}; + +struct trace_event_raw_device_pm_callback_end { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_driver; + int error; + char __data[0]; +}; + +struct trace_event_raw_suspend_resume { + struct trace_entry ent; + const char *action; + int val; + bool start; + char __data[0]; +}; + +struct trace_event_raw_wakeup_source { + struct trace_entry ent; + u32 __data_loc_name; + u64 state; + char __data[0]; +}; + +struct trace_event_raw_clock { + struct trace_entry ent; + u32 __data_loc_name; + u64 state; + u64 cpu_id; + char __data[0]; +}; + +struct trace_event_raw_power_domain { + struct trace_entry ent; + u32 __data_loc_name; + u64 state; + u64 cpu_id; + char __data[0]; +}; + +struct trace_event_raw_cpu_latency_qos_request { + struct trace_entry ent; + s32 value; + char __data[0]; +}; + +struct trace_event_raw_pm_qos_update { + struct trace_entry ent; + enum pm_qos_req_action action; + int prev_value; + int curr_value; + char __data[0]; +}; + +struct trace_event_raw_dev_pm_qos_request { + struct trace_entry ent; + u32 __data_loc_name; + enum dev_pm_qos_req_type type; + s32 new_value; + char __data[0]; +}; + +struct trace_event_raw_guest_halt_poll_ns { + struct trace_entry ent; + bool grow; + unsigned int new; + unsigned int old; + char __data[0]; +}; + +struct trace_event_data_offsets_cpu {}; + +struct trace_event_data_offsets_cpu_idle_miss {}; + +struct trace_event_data_offsets_powernv_throttle { + u32 reason; + const void *reason_ptr_; +}; + +struct trace_event_data_offsets_pstate_sample {}; + +struct trace_event_data_offsets_cpu_frequency_limits {}; + +struct trace_event_data_offsets_device_pm_callback_start { + u32 device; + const void *device_ptr_; + u32 driver; + const void *driver_ptr_; + u32 parent; + const void *parent_ptr_; + u32 pm_ops; + const void *pm_ops_ptr_; +}; + +struct trace_event_data_offsets_device_pm_callback_end { + u32 device; + const void *device_ptr_; + u32 driver; + const void *driver_ptr_; +}; + +struct trace_event_data_offsets_suspend_resume {}; + +struct trace_event_data_offsets_wakeup_source { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_clock { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_power_domain { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_cpu_latency_qos_request {}; + +struct trace_event_data_offsets_pm_qos_update {}; + +struct trace_event_data_offsets_dev_pm_qos_request { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_guest_halt_poll_ns {}; + +typedef void (*btf_trace_cpu_idle)(void *, unsigned int, unsigned int); + +typedef void (*btf_trace_cpu_idle_miss)(void *, unsigned int, unsigned int, bool); + +typedef void (*btf_trace_powernv_throttle)(void *, int, const char *, int); + +typedef void (*btf_trace_pstate_sample)(void *, u32, u32, u32, u32, u64, u64, u64, u32, u32); + +typedef void (*btf_trace_cpu_frequency)(void *, unsigned int, unsigned int); + +typedef void (*btf_trace_cpu_frequency_limits)(void *, struct cpufreq_policy *); + +typedef void (*btf_trace_device_pm_callback_start)(void *, struct device *, const char *, int); + +typedef void (*btf_trace_device_pm_callback_end)(void *, struct device *, int); + +typedef void (*btf_trace_suspend_resume)(void *, const char *, int, bool); + +typedef void (*btf_trace_wakeup_source_activate)(void *, const char *, unsigned int); + +typedef void (*btf_trace_wakeup_source_deactivate)(void *, const char *, unsigned int); + +typedef void (*btf_trace_clock_enable)(void *, const char *, unsigned int, unsigned int); + +typedef void (*btf_trace_clock_disable)(void *, const char *, unsigned int, unsigned int); + +typedef void (*btf_trace_clock_set_rate)(void *, const char *, unsigned int, unsigned int); + +typedef void (*btf_trace_power_domain_target)(void *, const char *, unsigned int, unsigned int); + +typedef void (*btf_trace_pm_qos_add_request)(void *, s32); + +typedef void (*btf_trace_pm_qos_update_request)(void *, s32); + +typedef void (*btf_trace_pm_qos_remove_request)(void *, s32); + +typedef void (*btf_trace_pm_qos_update_target)(void *, enum pm_qos_req_action, int, int); + +typedef void (*btf_trace_pm_qos_update_flags)(void *, enum pm_qos_req_action, int, int); + +typedef void (*btf_trace_dev_pm_qos_add_request)(void *, const char *, enum dev_pm_qos_req_type, s32); + +typedef void (*btf_trace_dev_pm_qos_update_request)(void *, const char *, enum dev_pm_qos_req_type, s32); + +typedef void (*btf_trace_dev_pm_qos_remove_request)(void *, const char *, enum dev_pm_qos_req_type, s32); + +typedef void (*btf_trace_guest_halt_poll_ns)(void *, bool, unsigned int, unsigned int); + +struct bpf_iter_seq_link_info { + u32 link_id; +}; + +struct bpf_iter__bpf_link { + union { + struct bpf_iter_meta *meta; + }; + union { + struct bpf_link *link; + }; +}; + +struct bpf_storage_blob { + struct bpf_local_storage *storage; +}; + +typedef u64 (*btf_bpf_inode_storage_get)(struct bpf_map *, struct inode *, void *, u64, gfp_t); + +typedef u64 (*btf_bpf_inode_storage_delete)(struct bpf_map *, struct inode *); + +struct reuseport_array { + struct bpf_map map; + struct sock *ptrs[0]; +}; + +struct static_key_mod { + struct static_key_mod *next; + struct jump_entry *entries; + struct module *mod; +}; + +struct static_key_deferred { + struct static_key key; + long unsigned int timeout; + struct delayed_work work; +}; + +struct trace_event_raw_vm_unmapped_area { + struct trace_entry ent; + long unsigned int addr; + long unsigned int total_vm; + long unsigned int flags; + long unsigned int length; + long unsigned int low_limit; + long unsigned int high_limit; + long unsigned int align_mask; + long unsigned int align_offset; + char __data[0]; +}; + +struct trace_event_raw_vma_mas_szero { + struct trace_entry ent; + struct maple_tree *mt; + long unsigned int start; + long unsigned int end; + char __data[0]; +}; + +struct trace_event_raw_vma_store { + struct trace_entry ent; + struct maple_tree *mt; + struct vm_area_struct *vma; + long unsigned int vm_start; + long unsigned int vm_end; + char __data[0]; +}; + +struct trace_event_raw_exit_mmap { + struct trace_entry ent; + struct mm_struct *mm; + struct maple_tree *mt; + char __data[0]; +}; + +struct trace_event_data_offsets_vm_unmapped_area {}; + +struct trace_event_data_offsets_vma_mas_szero {}; + +struct trace_event_data_offsets_vma_store {}; + +struct trace_event_data_offsets_exit_mmap {}; + +typedef void (*btf_trace_vm_unmapped_area)(void *, long unsigned int, struct vm_unmapped_area_info *); + +typedef void (*btf_trace_vma_mas_szero)(void *, struct maple_tree *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_vma_store)(void *, struct maple_tree *, struct vm_area_struct *); + +typedef void (*btf_trace_exit_mmap)(void *, struct mm_struct *); + +struct memcg1_events_percpu { + long unsigned int nr_page_events; + long unsigned int targets[2]; +}; + +enum mem_cgroup_events_target { + MEM_CGROUP_TARGET_THRESH = 0, + MEM_CGROUP_TARGET_SOFTLIMIT = 1, + MEM_CGROUP_NTARGETS = 2, +}; + +enum res_type { + _MEM = 0, + _MEMSWAP = 1, + _KMEM = 2, + _TCP = 3, +}; + +struct mem_cgroup_tree_per_node { + struct rb_root rb_root; + struct rb_node *rb_rightmost; + spinlock_t lock; +}; + +struct mem_cgroup_tree { + struct mem_cgroup_tree_per_node *rb_tree_per_node[1]; +}; + +struct move_charge_struct { + spinlock_t lock; + struct mm_struct *mm; + struct mem_cgroup *from; + struct mem_cgroup *to; + long unsigned int flags; + long unsigned int precharge; + long unsigned int moved_charge; + long unsigned int moved_swap; + struct task_struct *moving_task; + wait_queue_head_t waitq; +}; + +struct mem_cgroup_eventfd_list { + struct list_head list; + struct eventfd_ctx *eventfd; +}; + +struct mem_cgroup_event { + struct mem_cgroup *memcg; + struct eventfd_ctx *eventfd; + struct list_head list; + int (*register_event)(struct mem_cgroup *, struct eventfd_ctx *, const char *); + void (*unregister_event)(struct mem_cgroup *, struct eventfd_ctx *); + poll_table pt; + wait_queue_head_t *wqh; + wait_queue_entry_t wait; + struct work_struct remove; +}; + +enum { + RES_USAGE___2 = 0, + RES_LIMIT___2 = 1, + RES_MAX_USAGE___2 = 2, + RES_FAILCNT___2 = 3, + RES_SOFT_LIMIT = 4, +}; + +union mc_target { + struct folio *folio; + swp_entry_t ent; +}; + +enum mc_target_type { + MC_TARGET_NONE = 0, + MC_TARGET_PAGE = 1, + MC_TARGET_SWAP = 2, + MC_TARGET_DEVICE = 3, +}; + +struct oom_wait_info { + struct mem_cgroup *memcg; + wait_queue_entry_t wait; +}; + +struct linux_dirent64 { + u64 d_ino; + s64 d_off; + short unsigned int d_reclen; + unsigned char d_type; + char d_name[0]; +}; + +struct linux_dirent { + long unsigned int d_ino; + long unsigned int d_off; + short unsigned int d_reclen; + char d_name[0]; +}; + +struct getdents_callback___2 { + struct dir_context ctx; + struct linux_dirent *current_dir; + int prev_reclen; + int count; + int error; +}; + +struct getdents_callback64 { + struct dir_context ctx; + struct linux_dirent64 *current_dir; + int prev_reclen; + int count; + int error; +}; + +struct mpage_readpage_args { + struct bio *bio; + struct folio *folio; + unsigned int nr_pages; + bool is_readahead; + sector_t last_block_in_bio; + struct buffer_head map_bh; + long unsigned int first_logical_block; + get_block_t *get_block; +}; + +struct mpage_data { + struct bio *bio; + sector_t last_block_in_bio; + get_block_t *get_block; +}; + +struct epoll_params { + __u32 busy_poll_usecs; + __u16 busy_poll_budget; + __u8 prefer_busy_poll; + __u8 __pad; +}; + +struct epoll_filefd { + struct file *file; + int fd; +} __attribute__((packed)); + +struct epitem; + +struct eppoll_entry { + struct eppoll_entry *next; + struct epitem *base; + wait_queue_entry_t wait; + wait_queue_head_t *whead; +}; + +struct eventpoll; + +struct epitem { + union { + struct rb_node rbn; + struct callback_head rcu; + }; + struct list_head rdllink; + struct epitem *next; + struct epoll_filefd ffd; + bool dying; + struct eppoll_entry *pwqlist; + struct eventpoll *ep; + struct hlist_node fllink; + struct wakeup_source *ws; + struct epoll_event event; +}; + +struct eventpoll { + struct mutex mtx; + wait_queue_head_t wq; + wait_queue_head_t poll_wait; + struct list_head rdllist; + spinlock_t lock; + struct rb_root_cached rbr; + struct epitem *ovflist; + struct wakeup_source *ws; + struct user_struct *user; + struct file *file; + u64 gen; + struct hlist_head refs; + u8 loop_check_depth; + refcount_t refcount; + unsigned int napi_id; + u32 busy_poll_usecs; + u16 busy_poll_budget; + bool prefer_busy_poll; +}; + +struct ep_pqueue { + poll_table pt; + struct epitem *epi; +}; + +struct epitems_head { + struct hlist_head epitems; + struct epitems_head *next; +}; + +struct page_region { + __u64 start; + __u64 end; + __u64 categories; +}; + +struct pm_scan_arg { + __u64 size; + __u64 flags; + __u64 start; + __u64 end; + __u64 walk_end; + __u64 vec; + __u64 vec_len; + __u64 max_pages; + __u64 category_inverted; + __u64 category_mask; + __u64 category_anyof_mask; + __u64 return_mask; +}; + +enum procmap_query_flags { + PROCMAP_QUERY_VMA_READABLE = 1, + PROCMAP_QUERY_VMA_WRITABLE = 2, + PROCMAP_QUERY_VMA_EXECUTABLE = 4, + PROCMAP_QUERY_VMA_SHARED = 8, + PROCMAP_QUERY_COVERING_OR_NEXT_VMA = 16, + PROCMAP_QUERY_FILE_BACKED_VMA = 32, +}; + +struct procmap_query { + __u64 size; + __u64 query_flags; + __u64 query_addr; + __u64 vma_start; + __u64 vma_end; + __u64 vma_flags; + __u64 vma_page_size; + __u64 vma_offset; + __u64 inode; + __u32 dev_major; + __u32 dev_minor; + __u32 vma_name_size; + __u32 build_id_size; + __u64 vma_name_addr; + __u64 build_id_addr; +}; + +struct proc_maps_private { + struct inode *inode; + struct task_struct *task; + struct mm_struct *mm; + struct vma_iterator iter; +}; + +struct mem_size_stats { + long unsigned int resident; + long unsigned int shared_clean; + long unsigned int shared_dirty; + long unsigned int private_clean; + long unsigned int private_dirty; + long unsigned int referenced; + long unsigned int anonymous; + long unsigned int lazyfree; + long unsigned int anonymous_thp; + long unsigned int shmem_thp; + long unsigned int file_thp; + long unsigned int swap; + long unsigned int shared_hugetlb; + long unsigned int private_hugetlb; + long unsigned int ksm; + u64 pss; + u64 pss_anon; + u64 pss_file; + u64 pss_shmem; + u64 pss_dirty; + u64 pss_locked; + u64 swap_pss; +}; + +enum clear_refs_types { + CLEAR_REFS_ALL = 1, + CLEAR_REFS_ANON = 2, + CLEAR_REFS_MAPPED = 3, + CLEAR_REFS_SOFT_DIRTY = 4, + CLEAR_REFS_MM_HIWATER_RSS = 5, + CLEAR_REFS_LAST = 6, +}; + +struct clear_refs_private { + enum clear_refs_types type; +}; + +typedef struct { + u64 pme; +} pagemap_entry_t; + +struct pagemapread { + int pos; + int len; + pagemap_entry_t *buffer; + bool show_pfn; +}; + +struct pagemap_scan_private { + struct pm_scan_arg arg; + long unsigned int masks_of_interest; + long unsigned int cur_vma_category; + struct page_region *vec_buf; + long unsigned int vec_buf_len; + long unsigned int vec_buf_index; + long unsigned int found_pages; + struct page_region *vec_out; +}; + +typedef struct { + __le32 *p; + __le32 key; + struct buffer_head *bh; +} Indirect; + +enum bio_post_read_step___2 { + STEP_INITIAL = 0, + STEP_DECRYPT___2 = 1, + STEP_VERITY___2 = 2, + STEP_MAX = 3, +}; + +struct bio_post_read_ctx___2 { + struct bio *bio; + struct work_struct work; + unsigned int cur_step; + unsigned int enabled_steps; +}; + +struct squashfs_fragment_entry { + __le64 start_block; + __le32 size; + unsigned int unused; +}; + +struct fat_cache { + struct list_head cache_list; + int nr_contig; + int fcluster; + int dcluster; +}; + +struct fat_cache_id { + unsigned int id; + int nr_contig; + int fcluster; + int dcluster; +}; + +struct nfsd_genl_rqstp { + struct sockaddr rq_daddr; + struct sockaddr rq_saddr; + long unsigned int rq_flags; + ktime_t rq_stime; + __be32 rq_xid; + u32 rq_vers; + u32 rq_prog; + u32 rq_proc; + u32 rq_opcnt; + u32 rq_opnum[50]; +}; + +enum { + NFSD_A_RPC_STATUS_XID = 1, + NFSD_A_RPC_STATUS_FLAGS = 2, + NFSD_A_RPC_STATUS_PROG = 3, + NFSD_A_RPC_STATUS_VERSION = 4, + NFSD_A_RPC_STATUS_PROC = 5, + NFSD_A_RPC_STATUS_SERVICE_TIME = 6, + NFSD_A_RPC_STATUS_PAD = 7, + NFSD_A_RPC_STATUS_SADDR4 = 8, + NFSD_A_RPC_STATUS_DADDR4 = 9, + NFSD_A_RPC_STATUS_SADDR6 = 10, + NFSD_A_RPC_STATUS_DADDR6 = 11, + NFSD_A_RPC_STATUS_SPORT = 12, + NFSD_A_RPC_STATUS_DPORT = 13, + NFSD_A_RPC_STATUS_COMPOUND_OPS = 14, + __NFSD_A_RPC_STATUS_MAX = 15, + NFSD_A_RPC_STATUS_MAX = 14, +}; + +enum { + NFSD_Root = 1, + NFSD_List = 2, + NFSD_Export_Stats = 3, + NFSD_Export_features = 4, + NFSD_Fh = 5, + NFSD_FO_UnlockIP = 6, + NFSD_FO_UnlockFS = 7, + NFSD_Threads = 8, + NFSD_Pool_Threads = 9, + NFSD_Pool_Stats = 10, + NFSD_Reply_Cache_Stats = 11, + NFSD_Versions = 12, + NFSD_Ports = 13, + NFSD_MaxBlkSize = 14, + NFSD_MaxConnections = 15, + NFSD_Filecache = 16, + NFSD_Leasetime = 17, + NFSD_Gracetime = 18, + NFSD_RecoveryDir = 19, + NFSD_V4EndGrace = 20, + NFSD_MaxReserved = 21, +}; + +typedef struct { + __u16 Day: 5; + __u16 Month: 4; + __u16 Year: 7; +} SMB_DATE; + +typedef struct { + __u16 TwoSeconds: 5; + __u16 Minutes: 6; + __u16 Hours: 5; +} SMB_TIME; + +struct smb_to_posix_error { + __u16 smb_err; + int posix_code; +}; + +struct ntfs_run { + CLST vcn; + CLST len; + CLST lcn; +}; + +struct fuse_dirent { + uint64_t ino; + uint64_t off; + uint32_t namelen; + uint32_t type; + char name[0]; +}; + +struct fuse_direntplus { + struct fuse_entry_out entry_out; + struct fuse_dirent dirent; +}; + +enum fuse_parse_result { + FOUND_ERR = -1, + FOUND_NONE = 0, + FOUND_SOME = 1, + FOUND_ALL = 2, +}; + +struct kernel_long_ad { + uint32_t extLength; + struct kernel_lb_addr extLocation; + uint8_t impUse[6]; +}; + +struct allocExtDesc { + struct tag descTag; + __le32 previousAllocExtLocation; + __le32 lengthAllocDescs; +}; + +struct icbtag { + __le32 priorRecordedNumDirectEntries; + __le16 strategyType; + __le16 strategyParameter; + __le16 numEntries; + uint8_t reserved; + uint8_t fileType; + struct lb_addr parentICBLocation; + __le16 flags; +}; + +struct indirectEntry { + struct tag descTag; + struct icbtag icbTag; + struct long_ad indirectICB; +}; + +struct fileEntry { + struct tag descTag; + struct icbtag icbTag; + __le32 uid; + __le32 gid; + __le32 permissions; + __le16 fileLinkCount; + uint8_t recordFormat; + uint8_t recordDisplayAttr; + __le32 recordLength; + __le64 informationLength; + __le64 logicalBlocksRecorded; + struct timestamp accessTime; + struct timestamp modificationTime; + struct timestamp attrTime; + __le32 checkpoint; + struct long_ad extendedAttrICB; + struct regid impIdent; + __le64 uniqueID; + __le32 lengthExtendedAttr; + __le32 lengthAllocDescs; + uint8_t extendedAttr[0]; +}; + +struct deviceSpec { + __le32 attrType; + uint8_t attrSubtype; + uint8_t reserved[3]; + __le32 attrLength; + __le32 impUseLength; + __le32 majorDeviceIdent; + __le32 minorDeviceIdent; + uint8_t impUse[0]; +}; + +struct unallocSpaceEntry { + struct tag descTag; + struct icbtag icbTag; + __le32 lengthAllocDescs; + uint8_t allocDescs[0]; +}; + +struct extendedFileEntry { + struct tag descTag; + struct icbtag icbTag; + __le32 uid; + __le32 gid; + __le32 permissions; + __le16 fileLinkCount; + uint8_t recordFormat; + uint8_t recordDisplayAttr; + __le32 recordLength; + __le64 informationLength; + __le64 objectSize; + __le64 logicalBlocksRecorded; + struct timestamp accessTime; + struct timestamp modificationTime; + struct timestamp createTime; + struct timestamp attrTime; + __le32 checkpoint; + __le32 reserved; + struct long_ad extendedAttrICB; + struct long_ad streamDirectoryICB; + struct regid impIdent; + __le64 uniqueID; + __le32 lengthExtendedAttr; + __le32 lengthAllocDescs; + uint8_t extendedAttr[0]; +}; + +struct udf_map_rq { + sector_t lblk; + udf_pblk_t pblk; + int iflags; + int oflags; +}; + +struct xfs_attr_sf_entry { + __u8 namelen; + __u8 valuelen; + __u8 flags; + __u8 nameval[0]; +}; + +struct xfs_attr_leaf_name_local { + __be16 valuelen; + __u8 namelen; + __u8 nameval[0]; +}; + +typedef struct xfs_attr_leaf_name_local xfs_attr_leaf_name_local_t; + +struct xfs_attr_sf_sort { + uint8_t entno; + uint8_t namelen; + uint8_t valuelen; + uint8_t flags; + xfs_dahash_t hash; + unsigned char *name; + void *value; +}; + +typedef struct xfs_attr_sf_sort xfs_attr_sf_sort_t; + +struct xfs_icreate_item { + struct xfs_log_item ic_item; + struct xfs_icreate_log ic_format; +}; + +struct btrfs_csums { + u16 size; + const char name[10]; + const char driver[12]; +}; + +struct workspace___2 { + z_stream strm; + char *buf; + unsigned int buf_size; + struct list_head list; + int level; +}; + +struct btrfs_stripe_hash { + struct list_head hash_list; + spinlock_t lock; +}; + +struct btrfs_stripe_hash_table { + struct list_head stripe_cache; + spinlock_t cache_lock; + int cache_size; + struct btrfs_stripe_hash table[0]; +}; + +struct sector_ptr { + struct page *page; + unsigned int pgoff: 24; + unsigned int uptodate: 8; +}; + +struct btrfs_plug_cb { + struct blk_plug_cb cb; + struct btrfs_fs_info *info; + struct list_head rbio_list; +}; + +enum { + Z_EROFS_LCLUSTER_TYPE_PLAIN = 0, + Z_EROFS_LCLUSTER_TYPE_HEAD1 = 1, + Z_EROFS_LCLUSTER_TYPE_NONHEAD = 2, + Z_EROFS_LCLUSTER_TYPE_HEAD2 = 3, + Z_EROFS_LCLUSTER_TYPE_MAX = 4, +}; + +struct z_erofs_lcluster_index { + __le16 di_advise; + __le16 di_clusterofs; + union { + __le32 blkaddr; + __le16 delta[2]; + } di_u; +}; + +struct z_erofs_maprecorder { + struct inode *inode; + struct erofs_map_blocks *map; + long unsigned int lcn; + u8 type; + u8 headtype; + u16 clusterofs; + u16 delta[2]; + erofs_blk_t pblk; + erofs_blk_t compressedblks; + erofs_off_t nextpackoff; + bool partialref; +}; + +enum lsm_event { + LSM_POLICY_CHANGE = 0, +}; + +struct gcm_instance_ctx { + struct crypto_skcipher_spawn ctr; + struct crypto_ahash_spawn ghash; +}; + +struct crypto_gcm_ctx { + struct crypto_skcipher *ctr; + struct crypto_ahash *ghash; +}; + +struct crypto_rfc4106_ctx { + struct crypto_aead *child; + u8 nonce[4]; +}; + +struct crypto_rfc4106_req_ctx { + struct scatterlist src[3]; + struct scatterlist dst[3]; + struct aead_request subreq; +}; + +struct crypto_rfc4543_instance_ctx { + struct crypto_aead_spawn aead; +}; + +struct crypto_rfc4543_ctx { + struct crypto_aead *child; + struct crypto_sync_skcipher *null; + u8 nonce[4]; +}; + +struct crypto_rfc4543_req_ctx { + struct aead_request subreq; +}; + +struct crypto_gcm_ghash_ctx { + unsigned int cryptlen; + struct scatterlist *src; + int (*complete)(struct aead_request *, u32); +}; + +struct crypto_gcm_req_priv_ctx { + u8 iv[16]; + u8 auth_tag[16]; + u8 iauth_tag[16]; + struct scatterlist src[3]; + struct scatterlist dst[3]; + struct scatterlist sg; + struct crypto_gcm_ghash_ctx ghash_ctx; + union { + struct ahash_request ahreq; + struct skcipher_request skreq; + } u; +}; + +struct seed_ctx { + u32 keysched[32]; +}; + +struct lz4hc_ctx { + void *lz4hc_comp_mem; +}; + +struct prng_context { + spinlock_t prng_lock; + unsigned char rand_data[16]; + unsigned char last_rand_data[16]; + unsigned char DT[16]; + unsigned char I[16]; + unsigned char V[16]; + u32 rand_data_valid; + struct crypto_cipher *tfm; + u32 flags; +}; + +enum { + DIO_SHOULD_DIRTY = 1, + DIO_IS_SYNC = 2, +}; + +struct blkdev_dio { + union { + struct kiocb *iocb; + struct task_struct *waiter; + }; + size_t size; + atomic_t ref; + unsigned int flags; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct bio bio; + long: 64; + long: 64; +}; + +enum dd_data_dir { + DD_READ = 0, + DD_WRITE = 1, +}; + +enum { + DD_DIR_COUNT = 2, +}; + +enum dd_prio { + DD_RT_PRIO = 0, + DD_BE_PRIO = 1, + DD_IDLE_PRIO = 2, + DD_PRIO_MAX = 2, +}; + +enum { + DD_PRIO_COUNT = 3, +}; + +struct io_stats_per_prio { + uint32_t inserted; + uint32_t merged; + uint32_t dispatched; + atomic_t completed; +}; + +struct dd_per_prio { + struct list_head dispatch; + struct rb_root sort_list[2]; + struct list_head fifo_list[2]; + sector_t latest_pos[2]; + struct io_stats_per_prio stats; +}; + +struct deadline_data { + struct dd_per_prio per_prio[3]; + enum dd_data_dir last_dir; + unsigned int batching; + unsigned int starved; + int fifo_expire[2]; + int fifo_batch; + int writes_starved; + int front_merges; + u32 async_depth; + int prio_aging_expire; + spinlock_t lock; +}; + +struct io_uring_rsrc_update { + __u32 offset; + __u32 resv; + __u64 data; +}; + +enum io_uring_msg_ring_flags { + IORING_MSG_DATA = 0, + IORING_MSG_SEND_FD = 1, +}; + +struct io_msg { + struct file *file; + struct file *src_file; + struct callback_head tw; + u64 user_data; + u32 len; + u32 cmd; + u32 src_fd; + union { + u32 dst_fd; + u32 cqe_flags; + }; + u32 flags; +}; + +typedef long unsigned int uint64x2_t[2]; + +struct reciprocal_value_adv { + u32 m; + u8 sh; + u8 exp; + bool is_wide_m; +}; + +enum devm_ioremap_type { + DEVM_IOREMAP = 0, + DEVM_IOREMAP_UC = 1, + DEVM_IOREMAP_WC = 2, + DEVM_IOREMAP_NP = 3, +}; + +struct arch_io_reserve_memtype_wc_devres { + resource_size_t start; + resource_size_t size; +}; + +typedef struct { + S16 norm[53]; + U32 wksp[285]; +} ZSTD_BuildCTableWksp; + +typedef struct { + U64 rolling; + U64 stopMask; +} ldmRollingHashState_t; + +typedef struct { + U32 fastMode; + U32 tableLog; +} ZSTD_seqSymbol_header; + +typedef struct { + size_t litLength; + size_t matchLength; + size_t offset; +} seq_t; + +typedef struct { + size_t state; + const ZSTD_seqSymbol *table; +} ZSTD_fseState; + +typedef struct { + BIT_DStream_t DStream; + ZSTD_fseState stateLL; + ZSTD_fseState stateOffb; + ZSTD_fseState stateML; + size_t prevOffset[3]; +} seqState_t; + +typedef enum { + ZSTD_lo_isRegularOffset = 0, + ZSTD_lo_isLongOffset = 1, +} ZSTD_longOffset_e; + +struct its_collection { + u64 target_address; + u16 col_id; +}; + +struct its_baser { + void *base; + u64 val; + u32 order; + u32 psz; +}; + +struct its_cmd_block; + +struct its_device; + +struct its_node { + raw_spinlock_t lock; + struct mutex dev_alloc_lock; + struct list_head entry; + void *base; + void *sgir_base; + phys_addr_t phys_base; + struct its_cmd_block *cmd_base; + struct its_cmd_block *cmd_write; + struct its_baser tables[8]; + struct its_collection *collections; + struct fwnode_handle *fwnode_handle; + u64 (*get_msi_base)(struct its_device *); + u64 typer; + u64 cbaser_save; + u32 ctlr_save; + u32 mpidr; + struct list_head its_device_list; + u64 flags; + long unsigned int list_nr; + int numa_node; + unsigned int msi_domain_flags; + u32 pre_its_base; + int vlpi_redist_offset; +}; + +struct its_cmd_block { + union { + u64 raw_cmd[4]; + __le64 raw_cmd_le[4]; + }; +}; + +struct event_lpi_map { + long unsigned int *lpi_map; + u16 *col_map; + irq_hw_number_t lpi_base; + int nr_lpis; + raw_spinlock_t vlpi_lock; + struct its_vm *vm; + struct its_vlpi_map *vlpi_maps; + int nr_vlpis; +}; + +struct its_device { + struct list_head entry; + struct its_node *its; + struct event_lpi_map event_map; + void *itt; + u32 nr_ites; + u32 device_id; + bool shared; +}; + +struct cpu_lpi_count { + atomic_t managed; + atomic_t unmanaged; +}; + +struct its_cmd_desc { + union { + struct { + struct its_device *dev; + u32 event_id; + } its_inv_cmd; + struct { + struct its_device *dev; + u32 event_id; + } its_clear_cmd; + struct { + struct its_device *dev; + u32 event_id; + } its_int_cmd; + struct { + struct its_device *dev; + int valid; + } its_mapd_cmd; + struct { + struct its_collection *col; + int valid; + } its_mapc_cmd; + struct { + struct its_device *dev; + u32 phys_id; + u32 event_id; + } its_mapti_cmd; + struct { + struct its_device *dev; + struct its_collection *col; + u32 event_id; + } its_movi_cmd; + struct { + struct its_device *dev; + u32 event_id; + } its_discard_cmd; + struct { + struct its_collection *col; + } its_invall_cmd; + struct { + struct its_vpe *vpe; + } its_vinvall_cmd; + struct { + struct its_vpe *vpe; + struct its_collection *col; + bool valid; + } its_vmapp_cmd; + struct { + struct its_vpe *vpe; + struct its_device *dev; + u32 virt_id; + u32 event_id; + bool db_enabled; + } its_vmapti_cmd; + struct { + struct its_vpe *vpe; + struct its_device *dev; + u32 event_id; + bool db_enabled; + } its_vmovi_cmd; + struct { + struct its_vpe *vpe; + struct its_collection *col; + u16 seq_num; + u16 its_list; + } its_vmovp_cmd; + struct { + struct its_vpe *vpe; + } its_invdb_cmd; + struct { + struct its_vpe *vpe; + u8 sgi; + u8 priority; + bool enable; + bool group; + bool clear; + } its_vsgi_cmd; + }; +}; + +typedef struct its_collection * (*its_cmd_builder_t)(struct its_node *, struct its_cmd_block *, struct its_cmd_desc *); + +typedef struct its_vpe * (*its_cmd_vbuilder_t)(struct its_node *, struct its_cmd_block *, struct its_cmd_desc *); + +struct lpi_range { + struct list_head entry; + u32 base_id; + u32 span; +}; + +struct clk_fixed_rate { + struct clk_hw hw; + long unsigned int fixed_rate; + long unsigned int fixed_accuracy; + long unsigned int flags; +}; + +struct reset_control_bulk_data { + const char *id; + struct reset_control *rstc; +}; + +struct reset_controller_dev; + +struct reset_control { + struct reset_controller_dev *rcdev; + struct list_head list; + unsigned int id; + struct kref refcnt; + bool acquired; + bool shared; + bool array; + atomic_t deassert_count; + atomic_t triggered_count; +}; + +struct reset_control_ops { + int (*reset)(struct reset_controller_dev *, long unsigned int); + int (*assert)(struct reset_controller_dev *, long unsigned int); + int (*deassert)(struct reset_controller_dev *, long unsigned int); + int (*status)(struct reset_controller_dev *, long unsigned int); +}; + +struct reset_controller_dev { + const struct reset_control_ops *ops; + struct module *owner; + struct list_head list; + struct list_head reset_control_head; + struct device *dev; + struct device_node *of_node; + const struct of_phandle_args *of_args; + int of_reset_n_cells; + int (*of_xlate)(struct reset_controller_dev *, const struct of_phandle_args *); + unsigned int nr_resets; +}; + +struct reset_control_lookup { + struct list_head list; + const char *provider; + unsigned int index; + const char *dev_id; + const char *con_id; +}; + +struct reset_control_array { + struct reset_control base; + unsigned int num_rstcs; + struct reset_control *rstc[0]; +}; + +struct reset_control_bulk_devres { + int num_rstcs; + struct reset_control_bulk_data *rstcs; +}; + +typedef short unsigned int u_short; + +enum translation_map { + LAT1_MAP = 0, + GRAF_MAP = 1, + IBMPC_MAP = 2, + USER_MAP = 3, + FIRST_MAP = 0, + LAST_MAP = 3, +}; + +struct uni_pagedict { + u16 **uni_pgdir[32]; + long unsigned int refcount; + long unsigned int sum; + unsigned char *inverse_translations[4]; + u16 *inverse_trans_unicode; +}; + +struct dw8250_platform_data { + u8 usr_reg; + u32 cpr_value; + unsigned int quirks; +}; + +struct dw8250_data { + struct dw8250_port_data data; + const struct dw8250_platform_data *pdata; + int msr_mask_on; + int msr_mask_off; + struct clk *clk; + struct clk *pclk; + struct notifier_block clk_notifier; + struct work_struct clk_work; + struct reset_control *rst; + unsigned int skip_autocfg: 1; + unsigned int uart_16550_compatible: 1; +}; + +struct drm_auth { + drm_magic_t magic; +}; + +struct drm_edid_ident { + u32 panel_id; + const char *name; +}; + +struct displayid_block { + u8 tag; + u8 rev; + u8 num_bytes; +}; + +struct displayid_tiled_block { + struct displayid_block base; + u8 tile_cap; + u8 topo[3]; + u8 tile_size[4]; + u8 tile_pixel_bezel[5]; + u8 topology_id[8]; +}; + +struct displayid_detailed_timings_1 { + u8 pixel_clock[3]; + u8 flags; + u8 hactive[2]; + u8 hblank[2]; + u8 hsync[2]; + u8 hsw[2]; + u8 vactive[2]; + u8 vblank[2]; + u8 vsync[2]; + u8 vsw[2]; +}; + +struct displayid_detailed_timing_block { + struct displayid_block base; + struct displayid_detailed_timings_1 timings[0]; +}; + +struct displayid_vesa_vendor_specific_block { + struct displayid_block base; + u8 oui[3]; + u8 data_structure_type; + u8 mso; +}; + +struct displayid_iter { + const struct drm_edid *drm_edid; + const u8 *section; + int length; + int idx; + int ext_index; + u8 version; + u8 primary_use; +}; + +struct detailed_mode_closure { + struct drm_connector *connector; + const struct drm_edid *drm_edid; + bool preferred; + int modes; +}; + +struct drm_edid_match_closure { + const struct drm_edid_ident *ident; + bool matched; +}; + +struct edid_quirk { + const struct drm_edid_ident ident; + u32 quirks; +}; + +struct minimode { + short int w; + short int h; + short int r; + short int rb; +}; + +struct drm_edid_iter { + const struct drm_edid *drm_edid; + int index; +}; + +enum edid_block_status { + EDID_BLOCK_OK = 0, + EDID_BLOCK_READ_FAIL = 1, + EDID_BLOCK_NULL = 2, + EDID_BLOCK_ZERO = 3, + EDID_BLOCK_HEADER_CORRUPT = 4, + EDID_BLOCK_HEADER_REPAIR = 5, + EDID_BLOCK_HEADER_FIXED = 6, + EDID_BLOCK_CHECKSUM = 7, + EDID_BLOCK_VERSION = 8, +}; + +typedef int read_block_fn(void *, u8 *, unsigned int, size_t); + +typedef void detailed_cb(const struct detailed_timing *, void *); + +struct stereo_mandatory_mode { + int width; + int height; + int vrefresh; + unsigned int flags; +}; + +struct cea_db_iter { + struct drm_edid_iter edid_iter; + struct displayid_iter displayid_iter; + const u8 *collection; + int index; + int end; +}; + +struct cea_db { + u8 tag_length; + u8 data[0]; +}; + +struct drm_fb_helper_funcs; + +struct fb_info; + +struct drm_fb_helper { + struct drm_client_dev client; + struct drm_client_buffer *buffer; + struct drm_framebuffer *fb; + struct drm_device *dev; + const struct drm_fb_helper_funcs *funcs; + struct fb_info *info; + u32 pseudo_palette[17]; + struct drm_clip_rect damage_clip; + spinlock_t damage_lock; + struct work_struct damage_work; + struct work_struct resume_work; + struct mutex lock; + struct list_head kernel_fb_list; + bool delayed_hotplug; + bool deferred_setup; + int preferred_bpp; +}; + +struct fb_fix_screeninfo { + char id[16]; + long unsigned int smem_start; + __u32 smem_len; + __u32 type; + __u32 type_aux; + __u32 visual; + __u16 xpanstep; + __u16 ypanstep; + __u16 ywrapstep; + __u32 line_length; + long unsigned int mmio_start; + __u32 mmio_len; + __u32 accel; + __u16 capabilities; + __u16 reserved[2]; +}; + +struct fb_bitfield { + __u32 offset; + __u32 length; + __u32 msb_right; +}; + +struct fb_var_screeninfo { + __u32 xres; + __u32 yres; + __u32 xres_virtual; + __u32 yres_virtual; + __u32 xoffset; + __u32 yoffset; + __u32 bits_per_pixel; + __u32 grayscale; + struct fb_bitfield red; + struct fb_bitfield green; + struct fb_bitfield blue; + struct fb_bitfield transp; + __u32 nonstd; + __u32 activate; + __u32 height; + __u32 width; + __u32 accel_flags; + __u32 pixclock; + __u32 left_margin; + __u32 right_margin; + __u32 upper_margin; + __u32 lower_margin; + __u32 hsync_len; + __u32 vsync_len; + __u32 sync; + __u32 vmode; + __u32 rotate; + __u32 colorspace; + __u32 reserved[4]; +}; + +struct fb_cmap { + __u32 start; + __u32 len; + __u16 *red; + __u16 *green; + __u16 *blue; + __u16 *transp; +}; + +struct fb_copyarea { + __u32 dx; + __u32 dy; + __u32 width; + __u32 height; + __u32 sx; + __u32 sy; +}; + +struct fb_fillrect { + __u32 dx; + __u32 dy; + __u32 width; + __u32 height; + __u32 color; + __u32 rop; +}; + +struct fb_image { + __u32 dx; + __u32 dy; + __u32 width; + __u32 height; + __u32 fg_color; + __u32 bg_color; + __u8 depth; + const char *data; + struct fb_cmap cmap; +}; + +struct fbcurpos { + __u16 x; + __u16 y; +}; + +struct fb_cursor { + __u16 set; + __u16 enable; + __u16 rop; + const char *mask; + struct fbcurpos hot; + struct fb_image image; +}; + +struct fb_chroma { + __u32 redx; + __u32 greenx; + __u32 bluex; + __u32 whitex; + __u32 redy; + __u32 greeny; + __u32 bluey; + __u32 whitey; +}; + +struct fb_videomode; + +struct fb_monspecs { + struct fb_chroma chroma; + struct fb_videomode *modedb; + __u8 manufacturer[4]; + __u8 monitor[14]; + __u8 serial_no[14]; + __u8 ascii[14]; + __u32 modedb_len; + __u32 model; + __u32 serial; + __u32 year; + __u32 week; + __u32 hfmin; + __u32 hfmax; + __u32 dclkmin; + __u32 dclkmax; + __u16 input; + __u16 dpms; + __u16 signal; + __u16 vfmin; + __u16 vfmax; + __u16 gamma; + __u16 gtf: 1; + __u16 misc; + __u8 version; + __u8 revision; + __u8 max_x; + __u8 max_y; +}; + +struct fb_videomode { + const char *name; + u32 refresh; + u32 xres; + u32 yres; + u32 pixclock; + u32 left_margin; + u32 right_margin; + u32 upper_margin; + u32 lower_margin; + u32 hsync_len; + u32 vsync_len; + u32 sync; + u32 vmode; + u32 flag; +}; + +struct fb_pixmap { + u8 *addr; + u32 size; + u32 offset; + u32 buf_align; + u32 scan_align; + u32 access_align; + u32 flags; + long unsigned int blit_x[1]; + long unsigned int blit_y[2]; + void (*writeio)(struct fb_info *, void *, void *, unsigned int); + void (*readio)(struct fb_info *, void *, void *, unsigned int); +}; + +struct fb_ops; + +struct fb_info { + refcount_t count; + int node; + int flags; + int fbcon_rotate_hint; + struct mutex lock; + struct mutex mm_lock; + struct fb_var_screeninfo var; + struct fb_fix_screeninfo fix; + struct fb_monspecs monspecs; + struct fb_pixmap pixmap; + struct fb_pixmap sprite; + struct fb_cmap cmap; + struct list_head modelist; + struct fb_videomode *mode; + const struct fb_ops *fbops; + struct device *device; + int class_flag; + union { + char *screen_base; + char *screen_buffer; + }; + long unsigned int screen_size; + void *pseudo_palette; + u32 state; + void *fbcon_par; + void *par; + bool skip_vt_switch; + bool skip_panic; +}; + +struct fb_blit_caps { + long unsigned int x[1]; + long unsigned int y[2]; + u32 len; + u32 flags; +}; + +struct fb_ops { + struct module *owner; + int (*fb_open)(struct fb_info *, int); + int (*fb_release)(struct fb_info *, int); + ssize_t (*fb_read)(struct fb_info *, char *, size_t, loff_t *); + ssize_t (*fb_write)(struct fb_info *, const char *, size_t, loff_t *); + int (*fb_check_var)(struct fb_var_screeninfo *, struct fb_info *); + int (*fb_set_par)(struct fb_info *); + int (*fb_setcolreg)(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, struct fb_info *); + int (*fb_setcmap)(struct fb_cmap *, struct fb_info *); + int (*fb_blank)(int, struct fb_info *); + int (*fb_pan_display)(struct fb_var_screeninfo *, struct fb_info *); + void (*fb_fillrect)(struct fb_info *, const struct fb_fillrect *); + void (*fb_copyarea)(struct fb_info *, const struct fb_copyarea *); + void (*fb_imageblit)(struct fb_info *, const struct fb_image *); + int (*fb_cursor)(struct fb_info *, struct fb_cursor *); + int (*fb_sync)(struct fb_info *); + int (*fb_ioctl)(struct fb_info *, unsigned int, long unsigned int); + int (*fb_compat_ioctl)(struct fb_info *, unsigned int, long unsigned int); + int (*fb_mmap)(struct fb_info *, struct vm_area_struct *); + void (*fb_get_caps)(struct fb_info *, struct fb_blit_caps *, struct fb_var_screeninfo *); + void (*fb_destroy)(struct fb_info *); + int (*fb_debug_enter)(struct fb_info *); + int (*fb_debug_leave)(struct fb_info *); +}; + +struct drm_fb_helper_surface_size { + u32 fb_width; + u32 fb_height; + u32 surface_width; + u32 surface_height; + u32 surface_bpp; + u32 surface_depth; +}; + +struct drm_fb_helper_funcs { + int (*fb_probe)(struct drm_fb_helper *, struct drm_fb_helper_surface_size *); + int (*fb_dirty)(struct drm_fb_helper *, struct drm_clip_rect *); +}; + +enum dpm_order { + DPM_ORDER_NONE = 0, + DPM_ORDER_DEV_AFTER_PARENT = 1, + DPM_ORDER_PARENT_BEFORE_DEV = 2, + DPM_ORDER_DEV_LAST = 3, +}; + +struct fwnode_link { + struct fwnode_handle *supplier; + struct list_head s_hook; + struct fwnode_handle *consumer; + struct list_head c_hook; + u8 flags; +}; + +union device_attr_group_devres { + const struct attribute_group *group; + const struct attribute_group **groups; +}; + +struct class_dir { + struct kobject kobj; + const struct class *class; +}; + +struct root_device { + struct device dev; + struct module *owner; +}; + +struct dma_resv_iter { + struct dma_resv *obj; + enum dma_resv_usage usage; + struct dma_fence *fence; + enum dma_resv_usage fence_usage; + unsigned int index; + struct dma_resv_list *fences; + unsigned int num_fences; + bool is_restarted; +}; + +struct dma_buf_sync { + __u64 flags; +}; + +struct dma_buf_export_sync_file { + __u32 flags; + __s32 fd; +}; + +struct dma_buf_import_sync_file { + __u32 flags; + __s32 fd; +}; + +typedef struct sg_io_hdr sg_io_hdr_t; + +struct compat_sg_io_hdr { + compat_int_t interface_id; + compat_int_t dxfer_direction; + unsigned char cmd_len; + unsigned char mx_sb_len; + short unsigned int iovec_count; + compat_uint_t dxfer_len; + compat_uint_t dxferp; + compat_uptr_t cmdp; + compat_uptr_t sbp; + compat_uint_t timeout; + compat_uint_t flags; + compat_int_t pack_id; + compat_uptr_t usr_ptr; + unsigned char status; + unsigned char masked_status; + unsigned char msg_status; + unsigned char sb_len_wr; + short unsigned int host_status; + short unsigned int driver_status; + compat_int_t resid; + compat_uint_t duration; + compat_uint_t info; +}; + +struct sg_scsi_id { + int host_no; + int channel; + int scsi_id; + int lun; + int scsi_type; + short int h_cmd_per_lun; + short int d_queue_depth; + int unused[2]; +}; + +typedef struct sg_scsi_id sg_scsi_id_t; + +struct sg_req_info { + char req_state; + char orphan; + char sg_io_owned; + char problem; + int pack_id; + void *usr_ptr; + unsigned int duration; + int unused; +}; + +typedef struct sg_req_info sg_req_info_t; + +struct sg_header { + int pack_len; + int reply_len; + int pack_id; + int result; + unsigned int twelve_byte: 1; + unsigned int target_status: 5; + unsigned int host_status: 8; + unsigned int driver_status: 8; + unsigned int other_flags: 10; + unsigned char sense_buffer[16]; +}; + +struct sg_scatter_hold { + short unsigned int k_use_sg; + unsigned int sglist_len; + unsigned int bufflen; + struct page **pages; + int page_order; + char dio_in_use; + unsigned char cmd_opcode; +}; + +typedef struct sg_scatter_hold Sg_scatter_hold; + +struct sg_fd; + +struct sg_request { + struct list_head entry; + struct sg_fd *parentfp; + Sg_scatter_hold data; + sg_io_hdr_t header; + unsigned char sense_b[96]; + char res_used; + char orphan; + char sg_io_owned; + char done; + struct request *rq; + struct bio *bio; + struct execute_work ew; +}; + +typedef struct sg_request Sg_request; + +struct sg_device; + +struct sg_fd { + struct list_head sfd_siblings; + struct sg_device *parentdp; + wait_queue_head_t read_wait; + rwlock_t rq_list_lock; + struct mutex f_mutex; + int timeout; + int timeout_user; + Sg_scatter_hold reserve; + struct list_head rq_list; + struct fasync_struct *async_qp; + Sg_request req_arr[16]; + char force_packid; + char cmd_q; + unsigned char next_cmd_len; + char keep_orphan; + char mmap_called; + char res_in_use; + struct kref f_ref; + struct execute_work ew; +}; + +struct sg_device { + struct scsi_device *device; + wait_queue_head_t open_wait; + struct mutex open_rel_lock; + int sg_tablesize; + u32 index; + struct list_head sfds; + rwlock_t sfd_lock; + atomic_t detaching; + bool exclude; + int open_cnt; + char sgdebug; + char name[32]; + struct cdev *cdev; + struct kref d_ref; +}; + +typedef struct sg_fd Sg_fd; + +typedef struct sg_device Sg_device; + +struct sg_proc_deviter { + loff_t index; + size_t max; +}; + +enum { + IFLA_MACVLAN_UNSPEC = 0, + IFLA_MACVLAN_MODE = 1, + IFLA_MACVLAN_FLAGS = 2, + IFLA_MACVLAN_MACADDR_MODE = 3, + IFLA_MACVLAN_MACADDR = 4, + IFLA_MACVLAN_MACADDR_DATA = 5, + IFLA_MACVLAN_MACADDR_COUNT = 6, + IFLA_MACVLAN_BC_QUEUE_LEN = 7, + IFLA_MACVLAN_BC_QUEUE_LEN_USED = 8, + IFLA_MACVLAN_BC_CUTOFF = 9, + __IFLA_MACVLAN_MAX = 10, +}; + +enum macvlan_macaddr_mode { + MACVLAN_MACADDR_ADD = 0, + MACVLAN_MACADDR_DEL = 1, + MACVLAN_MACADDR_FLUSH = 2, + MACVLAN_MACADDR_SET = 3, +}; + +struct macvlan_port { + struct net_device *dev; + struct hlist_head vlan_hash[256]; + struct list_head vlans; + struct sk_buff_head bc_queue; + struct work_struct bc_work; + u32 bc_queue_len_used; + int bc_cutoff; + u32 flags; + int count; + struct hlist_head vlan_source_hash[256]; + long unsigned int bc_filter[4]; + long unsigned int mc_filter[4]; + unsigned char perm_addr[6]; +}; + +struct macvlan_source_entry { + struct hlist_node hlist; + struct macvlan_dev *vlan; + unsigned char addr[8]; + struct callback_head rcu; +}; + +struct macvlan_skb_cb { + const struct macvlan_dev *src; +}; + +struct asyncppp { + struct tty_struct *tty; + unsigned int flags; + unsigned int state; + unsigned int rbits; + int mru; + spinlock_t xmit_lock; + spinlock_t recv_lock; + long unsigned int xmit_flags; + u32 xaccm[8]; + u32 raccm; + unsigned int bytes_sent; + unsigned int bytes_rcvd; + struct sk_buff *tpkt; + int tpkt_pos; + u16 tfcs; + unsigned char *optr; + unsigned char *olim; + long unsigned int last_xmit; + struct sk_buff *rpkt; + int lcp_fcs; + struct sk_buff_head rqueue; + struct tasklet_struct tsk; + refcount_t refcnt; + struct completion dead; + struct ppp_channel chan; + unsigned char obuf[4096]; +}; + +struct usb_qualifier_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __le16 bcdUSB; + __u8 bDeviceClass; + __u8 bDeviceSubClass; + __u8 bDeviceProtocol; + __u8 bMaxPacketSize0; + __u8 bNumConfigurations; + __u8 bRESERVED; +}; + +struct usbdevfs_hub_portinfo { + char nports; + char port[127]; +}; + +enum hub_led_mode { + INDICATOR_AUTO = 0, + INDICATOR_CYCLE = 1, + INDICATOR_GREEN_BLINK = 2, + INDICATOR_GREEN_BLINK_OFF = 3, + INDICATOR_AMBER_BLINK = 4, + INDICATOR_AMBER_BLINK_OFF = 5, + INDICATOR_ALT_BLINK = 6, + INDICATOR_ALT_BLINK_OFF = 7, +} __attribute__((mode(byte))); + +struct usb_tt_clear { + struct list_head clear_list; + unsigned int tt; + u16 devinfo; + struct usb_hcd *hcd; + struct usb_host_endpoint *ep; +}; + +enum hub_activation_type { + HUB_INIT = 0, + HUB_INIT2 = 1, + HUB_INIT3 = 2, + HUB_POST_RESET = 3, + HUB_RESUME = 4, + HUB_RESET_RESUME = 5, +}; + +enum hub_quiescing_type { + HUB_DISCONNECT = 0, + HUB_PRE_RESET = 1, + HUB_SUSPEND = 2, +}; + +union ata_cdb { + struct { + unsigned char SignatureByte0; + unsigned char SignatureByte1; + unsigned char ActionSelect; + unsigned char RegisterSelect; + unsigned char TransferBlockSize; + unsigned char WriteData3F6; + unsigned char WriteData1F1; + unsigned char WriteData1F2; + unsigned char WriteData1F3; + unsigned char WriteData1F4; + unsigned char WriteData1F5; + unsigned char WriteData1F6; + unsigned char WriteData1F7; + unsigned char Reserved[3]; + } generic; + struct { + unsigned char SignatureByte0; + unsigned char SignatureByte1; + unsigned char ActionSelect; + unsigned char RegisterSelect; + unsigned char TransferBlockSize; + unsigned char AlternateStatusByte; + unsigned char ErrorByte; + unsigned char SectorCountByte; + unsigned char SectorNumberByte; + unsigned char CylinderLowByte; + unsigned char CylinderHighByte; + unsigned char DeviceHeadByte; + unsigned char StatusByte; + unsigned char Reserved[3]; + } read; + struct { + unsigned char SignatureByte0; + unsigned char SignatureByte1; + unsigned char ActionSelect; + unsigned char RegisterSelect; + unsigned char TransferBlockSize; + unsigned char DeviceControlByte; + unsigned char FeaturesByte; + unsigned char SectorCountByte; + unsigned char SectorNumberByte; + unsigned char CylinderLowByte; + unsigned char CylinderHighByte; + unsigned char DeviceHeadByte; + unsigned char CommandByte; + unsigned char Reserved[3]; + } write; +}; + +struct inquiry_data { + unsigned char DeviceType; + unsigned char DeviceTypeModifier; + unsigned char Versions; + unsigned char Format; + unsigned char AdditionalLength; + unsigned char Reserved[2]; + unsigned char Capability; + unsigned char VendorId[8]; + unsigned char ProductId[16]; + unsigned char ProductRevisionLevel[4]; + unsigned char VendorSpecific[20]; + unsigned char Reserved3[40]; +}; + +struct isd200_config { + unsigned char EventNotification; + unsigned char ExternalClock; + unsigned char ATAInitTimeout; + unsigned char ATAConfig; + unsigned char ATAMajorCommand; + unsigned char ATAMinorCommand; + unsigned char ATAExtraConfig; + unsigned char Capability; +}; + +struct isd200_info { + struct inquiry_data InquiryData; + u16 *id; + struct isd200_config ConfigData; + unsigned char *RegsBuf; + unsigned char ATARegs[8]; + unsigned char DeviceHead; + unsigned char DeviceFlags; + unsigned char MaxLUNs; + unsigned char cmnd[16]; + struct scsi_cmnd srb; + struct scatterlist sg; +}; + +struct read_capacity_data { + __be32 LogicalBlockAddress; + __be32 BytesPerBlock; +}; + +struct sense_data { + unsigned char ErrorCode; + unsigned char SegmentNumber; + unsigned char Flags; + unsigned char Information[4]; + unsigned char AdditionalSenseLength; + unsigned char CommandSpecificInformation[4]; + unsigned char AdditionalSenseCode; + unsigned char AdditionalSenseCodeQualifier; + unsigned char FieldReplaceableUnitCode; + unsigned char SenseKeySpecific[3]; +}; + +struct belkin_sa_private { + spinlock_t lock; + long unsigned int control_state; + unsigned char last_lsr; + unsigned char last_msr; + int bad_flow_control; +}; + +struct keyspan_device_details { + int product_id; + enum { + msg_usa26 = 0, + msg_usa28 = 1, + msg_usa49 = 2, + msg_usa90 = 3, + msg_usa67 = 4, + } msg_format; + int num_ports; + int indat_endp_flip; + int outdat_endp_flip; + int indat_endpoints[4]; + int outdat_endpoints[4]; + int inack_endpoints[4]; + int outcont_endpoints[4]; + int instat_endpoint; + int indat_endpoint; + int glocont_endpoint; + int (*calculate_baud_rate)(struct usb_serial_port *, u32, u32, u8 *, u8 *, u8 *, int); + u32 baudclk; +}; + +struct keyspan_serial_private { + const struct keyspan_device_details *device_details; + struct urb *instat_urb; + char *instat_buf; + struct urb *indat_urb; + char *indat_buf; + struct urb *glocont_urb; + char *glocont_buf; + char *ctrl_buf; +}; + +struct keyspan_port_private { + int in_flip; + int out_flip; + const struct keyspan_device_details *device_details; + struct urb *in_urbs[2]; + char *in_buffer[2]; + struct urb *out_urbs[2]; + char *out_buffer[2]; + struct urb *inack_urb; + char *inack_buffer; + struct urb *outcont_urb; + char *outcont_buffer; + int baud; + int old_baud; + unsigned int cflag; + unsigned int old_cflag; + enum { + flow_none = 0, + flow_cts = 1, + flow_xon = 2, + } flow_control; + int rts_state; + int dtr_state; + int cts_state; + int dsr_state; + int dcd_state; + int ri_state; + int break_on; + long unsigned int tx_start_time[2]; + int resend_cont; +}; + +struct keyspan_usa26_portControlMessage { + u8 setClocking; + u8 baudLo; + u8 baudHi; + u8 externalClock_txClocking; + u8 rxClocking; + u8 setLcr; + u8 lcr; + u8 setFlowControl; + u8 ctsFlowControl; + u8 xonFlowControl; + u8 xonChar; + u8 xoffChar; + u8 setTxTriState_setRts; + u8 txTriState_rts; + u8 setHskoa_setDtr; + u8 hskoa_dtr; + u8 setPrescaler; + u8 prescaler; + u8 forwardingLength; + u8 reportHskiaChanges_dsrFlowControl; + u8 txAckThreshold; + u8 loopbackMode; + u8 _txOn; + u8 _txOff; + u8 txFlush; + u8 txBreak; + u8 rxOn; + u8 rxOff; + u8 rxFlush; + u8 rxForward; + u8 returnStatus; + u8 resetDataToggle; +}; + +struct keyspan_usa26_portStatusMessage { + u8 port; + u8 hskia_cts; + u8 gpia_dcd; + u8 dsr; + u8 ri; + u8 _txOff; + u8 _txXoff; + u8 rxEnabled; + u8 controlResponse; +}; + +struct keyspan_usa28_portControlMessage { + u8 setBaudRate; + u8 baudLo; + u8 baudHi; + u8 parity; + u8 ctsFlowControl; + u8 xonFlowControl; + u8 rts; + u8 dtr; + u8 forwardingLength; + u8 forwardMs; + u8 breakThreshold; + u8 xonChar; + u8 xoffChar; + u8 _txOn; + u8 _txOff; + u8 txFlush; + u8 txForceXoff; + u8 txBreak; + u8 rxOn; + u8 rxOff; + u8 rxFlush; + u8 rxForward; + u8 returnStatus; + u8 resetDataToggle; +}; + +struct keyspan_usa28_portStatusMessage { + u8 port; + u8 cts; + u8 dsr; + u8 dcd; + u8 ri; + u8 _txOff; + u8 _txXoff; + u8 dataLost; + u8 rxEnabled; + u8 rxBreak; + u8 rs232invalid; + u8 controlResponse; +}; + +struct keyspan_usa49_portControlMessage { + u8 portNumber; + u8 setClocking; + u8 baudLo; + u8 baudHi; + u8 prescaler; + u8 txClocking; + u8 rxClocking; + u8 setLcr; + u8 lcr; + u8 setFlowControl; + u8 ctsFlowControl; + u8 xonFlowControl; + u8 xonChar; + u8 xoffChar; + u8 setRts; + u8 rts; + u8 setDtr; + u8 dtr; + u8 forwardingLength; + u8 dsrFlowControl; + u8 txAckThreshold; + u8 loopbackMode; + u8 _txOn; + u8 _txOff; + u8 txFlush; + u8 txBreak; + u8 rxOn; + u8 rxOff; + u8 rxFlush; + u8 rxForward; + u8 returnStatus; + u8 resetDataToggle; + u8 enablePort; + u8 disablePort; +}; + +struct keyspan_usa49_portStatusMessage { + u8 portNumber; + u8 cts; + u8 dcd; + u8 dsr; + u8 ri; + u8 _txOff; + u8 _txXoff; + u8 rxEnabled; + u8 controlResponse; + u8 txAck; + u8 rs232valid; +}; + +struct keyspan_usa90_portControlMessage { + u8 setClocking; + u8 baudLo; + u8 baudHi; + u8 setLcr; + u8 lcr; + u8 setRxMode; + u8 rxMode; + u8 setTxMode; + u8 txMode; + u8 setTxFlowControl; + u8 txFlowControl; + u8 setRxFlowControl; + u8 rxFlowControl; + u8 sendXoff; + u8 sendXon; + u8 xonChar; + u8 xoffChar; + u8 sendChar; + u8 txChar; + u8 setRts; + u8 rts; + u8 setDtr; + u8 dtr; + u8 rxForwardingLength; + u8 rxForwardingTimeout; + u8 txAckSetting; + u8 portEnabled; + u8 txFlush; + u8 txBreak; + u8 loopbackMode; + u8 rxFlush; + u8 rxForward; + u8 cancelRxXoff; + u8 returnStatus; +}; + +struct keyspan_usa90_portStatusMessage { + u8 msr; + u8 cts; + u8 dcd; + u8 dsr; + u8 ri; + u8 _txXoff; + u8 rxBreak; + u8 rxOverrun; + u8 rxParity; + u8 rxFrame; + u8 portState; + u8 messageAck; + u8 charAck; + u8 controlResponse; +}; + +struct keyspan_usa67_portControlMessage { + u8 port; + u8 setClocking; + u8 baudLo; + u8 baudHi; + u8 externalClock_txClocking; + u8 setLcr; + u8 lcr; + u8 setFlowControl; + u8 ctsFlowControl; + u8 xonFlowControl; + u8 xonChar; + u8 xoffChar; + u8 setTxTriState_setRts; + u8 txTriState_rts; + u8 setHskoa_setDtr; + u8 hskoa_dtr; + u8 setPrescaler; + u8 prescaler; + u8 forwardingLength; + u8 reportHskiaChanges_dsrFlowControl; + u8 txAckThreshold; + u8 loopbackMode; + u8 _txOn; + u8 _txOff; + u8 txFlush; + u8 txBreak; + u8 rxOn; + u8 rxOff; + u8 rxFlush; + u8 rxForward; + u8 returnStatus; + u8 resetDataToggle; +}; + +struct keyspan_usa67_portStatusMessage { + u8 port; + u8 hskia_cts; + u8 gpia_dcd; + u8 _txOff; + u8 _txXoff; + u8 txAck; + u8 rxEnabled; + u8 controlResponse; +}; + +struct callbacks { + void (*instat_callback)(struct urb *); + void (*glocont_callback)(struct urb *); + void (*indat_callback)(struct urb *); + void (*outdat_callback)(struct urb *); + void (*inack_callback)(struct urb *); + void (*outcont_callback)(struct urb *); +}; + +enum qcserial_layouts { + QCSERIAL_G2K = 0, + QCSERIAL_G1K = 1, + QCSERIAL_SWI = 2, + QCSERIAL_HWI = 3, +}; + +enum serio_event_type { + SERIO_RESCAN_PORT = 0, + SERIO_RECONNECT_PORT = 1, + SERIO_RECONNECT_SUBTREE = 2, + SERIO_REGISTER_PORT = 3, + SERIO_ATTACH_DRIVER = 4, +}; + +struct serio_event { + enum serio_event_type type; + void *object; + struct module *owner; + struct list_head node; +}; + +struct i2c_smbus_alert { + struct work_struct alert; + struct i2c_client *ara; +}; + +struct alert_data { + short unsigned int addr; + enum i2c_alert_protocol type; + unsigned int data; +}; + +struct cpuidle_state_kobj { + struct cpuidle_state *state; + struct cpuidle_state_usage *state_usage; + struct completion kobj_unregister; + struct kobject kobj; + struct cpuidle_device *device; +}; + +struct cpuidle_driver_kobj { + struct cpuidle_driver *drv; + struct completion kobj_unregister; + struct kobject kobj; +}; + +struct cpuidle_device_kobj { + struct cpuidle_device *dev; + struct completion kobj_unregister; + struct kobject kobj; +}; + +struct cpuidle_attr { + struct attribute attr; + ssize_t (*show)(struct cpuidle_device *, char *); + ssize_t (*store)(struct cpuidle_device *, const char *, size_t); +}; + +struct cpuidle_state_attr { + struct attribute attr; + ssize_t (*show)(struct cpuidle_state *, struct cpuidle_state_usage *, char *); + ssize_t (*store)(struct cpuidle_state *, struct cpuidle_state_usage *, const char *, size_t); +}; + +struct cpuidle_driver_attr { + struct attribute attr; + ssize_t (*show)(struct cpuidle_driver *, char *); + ssize_t (*store)(struct cpuidle_driver *, const char *, size_t); +}; + +struct mmc_gpio { + struct gpio_desc *ro_gpio; + struct gpio_desc *cd_gpio; + irq_handler_t cd_gpio_isr; + char *ro_label; + char *cd_label; + u32 cd_debounce_delay_ms; + int cd_irq; +}; + +struct vhost_vring_state { + unsigned int index; + unsigned int num; +}; + +struct vhost_vring_addr { + unsigned int index; + unsigned int flags; + __u64 desc_user_addr; + __u64 used_user_addr; + __u64 avail_user_addr; + __u64 log_guest_addr; +}; + +struct vhost_worker_state { + unsigned int worker_id; +}; + +struct vhost_vring_worker { + unsigned int index; + unsigned int worker_id; +}; + +struct vhost_msg { + int type; + union { + struct vhost_iotlb_msg iotlb; + __u8 padding[64]; + }; +}; + +struct vhost_msg_v2 { + __u32 type; + __u32 asid; + union { + struct vhost_iotlb_msg iotlb; + __u8 padding[64]; + }; +}; + +struct vhost_memory_region { + __u64 guest_phys_addr; + __u64 memory_size; + __u64 userspace_addr; + __u64 flags_padding; +}; + +struct vhost_memory { + __u32 nregions; + __u32 padding; + struct vhost_memory_region regions[0]; +}; + +struct vhost_msg_node { + union { + struct vhost_msg msg; + struct vhost_msg_v2 msg_v2; + }; + struct vhost_virtqueue *vq; + struct list_head node; +}; + +struct vhost_flush_struct { + struct vhost_work work; + struct completion wait_event; +}; + +struct vhost_attach_cgroups_struct { + struct vhost_work work; + struct task_struct *owner; + int ret; +}; + +struct tc_police { + __u32 index; + int action; + __u32 limit; + __u32 burst; + __u32 mtu; + struct tc_ratespec rate; + struct tc_ratespec peakrate; + int refcnt; + int bindcnt; + __u32 capab; +}; + +enum { + TCA_POLICE_UNSPEC = 0, + TCA_POLICE_TBF = 1, + TCA_POLICE_RATE = 2, + TCA_POLICE_PEAKRATE = 3, + TCA_POLICE_AVRATE = 4, + TCA_POLICE_RESULT = 5, + TCA_POLICE_TM = 6, + TCA_POLICE_PAD = 7, + TCA_POLICE_RATE64 = 8, + TCA_POLICE_PEAKRATE64 = 9, + TCA_POLICE_PKTRATE64 = 10, + TCA_POLICE_PKTBURST64 = 11, + __TCA_POLICE_MAX = 12, +}; + +struct tcf_police_params { + int tcfp_result; + u32 tcfp_ewma_rate; + s64 tcfp_burst; + u32 tcfp_mtu; + s64 tcfp_mtu_ptoks; + s64 tcfp_pkt_burst; + struct psched_ratecfg rate; + bool rate_present; + struct psched_ratecfg peak; + bool peak_present; + struct psched_pktrate ppsrate; + bool pps_present; + struct callback_head rcu; +}; + +struct tcf_police { + struct tc_action common; + struct tcf_police_params *params; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + spinlock_t tcfp_lock; + s64 tcfp_toks; + s64 tcfp_ptoks; + s64 tcfp_pkttoks; + s64 tcfp_t_c; + long: 64; + long: 64; + long: 64; +}; + +enum { + TC_FP_EXPRESS = 1, + TC_FP_PREEMPTIBLE = 2, +}; + +struct tc_mqprio_qopt { + __u8 num_tc; + __u8 prio_tc_map[16]; + __u8 hw; + __u16 count[16]; + __u16 offset[16]; +}; + +struct tc_mqprio_qopt_offload { + struct tc_mqprio_qopt qopt; + struct netlink_ext_ack *extack; + u16 mode; + u16 shaper; + u32 flags; + u64 min_rate[16]; + u64 max_rate[16]; + long unsigned int preemptible_tcs; +}; + +struct tc_matchall_pcnt { + __u64 rhit; +}; + +enum { + TCA_MATCHALL_UNSPEC = 0, + TCA_MATCHALL_CLASSID = 1, + TCA_MATCHALL_ACT = 2, + TCA_MATCHALL_FLAGS = 3, + TCA_MATCHALL_PCNT = 4, + TCA_MATCHALL_PAD = 5, + __TCA_MATCHALL_MAX = 6, +}; + +enum tc_matchall_command { + TC_CLSMATCHALL_REPLACE = 0, + TC_CLSMATCHALL_DESTROY = 1, + TC_CLSMATCHALL_STATS = 2, +}; + +struct tc_cls_matchall_offload { + struct flow_cls_common_offload common; + enum tc_matchall_command command; + struct flow_rule *rule; + struct flow_stats stats; + bool use_act_stats; + long unsigned int cookie; +}; + +struct cls_mall_head { + struct tcf_exts exts; + struct tcf_result res; + u32 handle; + u32 flags; + unsigned int in_hw_count; + struct tc_matchall_pcnt *pf; + struct rcu_work rwork; + bool deleting; +}; + +enum ethtool_supported_ring_param { + ETHTOOL_RING_USE_RX_BUF_LEN = 1, + ETHTOOL_RING_USE_CQE_SIZE = 2, + ETHTOOL_RING_USE_TX_PUSH = 4, + ETHTOOL_RING_USE_RX_PUSH = 8, + ETHTOOL_RING_USE_TX_PUSH_BUF_LEN = 16, + ETHTOOL_RING_USE_TCP_DATA_SPLIT = 32, +}; + +enum { + ETHTOOL_TCP_DATA_SPLIT_UNKNOWN = 0, + ETHTOOL_TCP_DATA_SPLIT_DISABLED = 1, + ETHTOOL_TCP_DATA_SPLIT_ENABLED = 2, +}; + +struct rings_reply_data { + struct ethnl_reply_data base; + struct ethtool_ringparam ringparam; + struct kernel_ethtool_ringparam kernel_ringparam; + u32 supported_ring_params; +}; + +enum { + ETHTOOL_A_MM_STAT_UNSPEC = 0, + ETHTOOL_A_MM_STAT_PAD = 1, + ETHTOOL_A_MM_STAT_REASSEMBLY_ERRORS = 2, + ETHTOOL_A_MM_STAT_SMD_ERRORS = 3, + ETHTOOL_A_MM_STAT_REASSEMBLY_OK = 4, + ETHTOOL_A_MM_STAT_RX_FRAG_COUNT = 5, + ETHTOOL_A_MM_STAT_TX_FRAG_COUNT = 6, + ETHTOOL_A_MM_STAT_HOLD_COUNT = 7, + __ETHTOOL_A_MM_STAT_CNT = 8, + ETHTOOL_A_MM_STAT_MAX = 7, +}; + +struct mm_reply_data { + struct ethnl_reply_data base; + struct ethtool_mm_state state; + struct ethtool_mm_stats stats; +}; + +enum nfqnl_msg_types { + NFQNL_MSG_PACKET = 0, + NFQNL_MSG_VERDICT = 1, + NFQNL_MSG_CONFIG = 2, + NFQNL_MSG_VERDICT_BATCH = 3, + NFQNL_MSG_MAX = 4, +}; + +struct nfqnl_msg_packet_hdr { + __be32 packet_id; + __be16 hw_protocol; + __u8 hook; +} __attribute__((packed)); + +struct nfqnl_msg_packet_hw { + __be16 hw_addrlen; + __u16 _pad; + __u8 hw_addr[8]; +}; + +struct nfqnl_msg_packet_timestamp { + __be64 sec; + __be64 usec; +}; + +enum nfqnl_vlan_attr { + NFQA_VLAN_UNSPEC = 0, + NFQA_VLAN_PROTO = 1, + NFQA_VLAN_TCI = 2, + __NFQA_VLAN_MAX = 3, +}; + +enum nfqnl_attr_type { + NFQA_UNSPEC = 0, + NFQA_PACKET_HDR = 1, + NFQA_VERDICT_HDR = 2, + NFQA_MARK = 3, + NFQA_TIMESTAMP = 4, + NFQA_IFINDEX_INDEV = 5, + NFQA_IFINDEX_OUTDEV = 6, + NFQA_IFINDEX_PHYSINDEV = 7, + NFQA_IFINDEX_PHYSOUTDEV = 8, + NFQA_HWADDR = 9, + NFQA_PAYLOAD = 10, + NFQA_CT = 11, + NFQA_CT_INFO = 12, + NFQA_CAP_LEN = 13, + NFQA_SKB_INFO = 14, + NFQA_EXP = 15, + NFQA_UID = 16, + NFQA_GID = 17, + NFQA_SECCTX = 18, + NFQA_VLAN = 19, + NFQA_L2HDR = 20, + NFQA_PRIORITY = 21, + NFQA_CGROUP_CLASSID = 22, + __NFQA_MAX = 23, +}; + +struct nfqnl_msg_verdict_hdr { + __be32 verdict; + __be32 id; +}; + +enum nfqnl_msg_config_cmds { + NFQNL_CFG_CMD_NONE = 0, + NFQNL_CFG_CMD_BIND = 1, + NFQNL_CFG_CMD_UNBIND = 2, + NFQNL_CFG_CMD_PF_BIND = 3, + NFQNL_CFG_CMD_PF_UNBIND = 4, +}; + +struct nfqnl_msg_config_cmd { + __u8 command; + __u8 _pad; + __be16 pf; +}; + +enum nfqnl_config_mode { + NFQNL_COPY_NONE = 0, + NFQNL_COPY_META = 1, + NFQNL_COPY_PACKET = 2, +}; + +struct nfqnl_msg_config_params { + __be32 copy_range; + __u8 copy_mode; +} __attribute__((packed)); + +enum nfqnl_attr_config { + NFQA_CFG_UNSPEC = 0, + NFQA_CFG_CMD = 1, + NFQA_CFG_PARAMS = 2, + NFQA_CFG_QUEUE_MAXLEN = 3, + NFQA_CFG_MASK = 4, + NFQA_CFG_FLAGS = 5, + __NFQA_CFG_MAX = 6, +}; + +struct nfqnl_instance { + struct hlist_node hlist; + struct callback_head rcu; + u32 peer_portid; + unsigned int queue_maxlen; + unsigned int copy_range; + unsigned int queue_dropped; + unsigned int queue_user_dropped; + u_int16_t queue_num; + u_int8_t copy_mode; + u_int32_t flags; + long: 0; + spinlock_t lock; + unsigned int queue_total; + unsigned int id_sequence; + struct list_head queue_list; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +typedef int (*nfqnl_cmpfn)(struct nf_queue_entry *, long unsigned int); + +struct nfnl_queue_net { + spinlock_t instances_lock; + struct hlist_head instance_table[16]; +}; + +struct nf_nat_lookup_hook_priv { + struct nf_hook_entries *entries; + struct callback_head callback_head; +}; + +struct nf_nat_hooks_net { + struct nf_hook_ops *nat_hook_ops; + unsigned int users; +}; + +struct nat_net { + struct nf_nat_hooks_net nat_proto_net[11]; +}; + +struct nf_nat_proto_clean { + u8 l3proto; + u8 l4proto; +}; + +enum ctattr_nat { + CTA_NAT_UNSPEC = 0, + CTA_NAT_V4_MINIP = 1, + CTA_NAT_V4_MAXIP = 2, + CTA_NAT_PROTO = 3, + CTA_NAT_V6_MINIP = 4, + CTA_NAT_V6_MAXIP = 5, + __CTA_NAT_MAX = 6, +}; + +enum ctattr_protonat { + CTA_PROTONAT_UNSPEC = 0, + CTA_PROTONAT_PORT_MIN = 1, + CTA_PROTONAT_PORT_MAX = 2, + __CTA_PROTONAT_MAX = 3, +}; + +enum nft_payload_csum_types { + NFT_PAYLOAD_CSUM_NONE = 0, + NFT_PAYLOAD_CSUM_INET = 1, + NFT_PAYLOAD_CSUM_SCTP = 2, +}; + +enum nft_payload_csum_flags { + NFT_PAYLOAD_L4CSUM_PSEUDOHDR = 1, +}; + +enum nft_payload_attributes { + NFTA_PAYLOAD_UNSPEC = 0, + NFTA_PAYLOAD_DREG = 1, + NFTA_PAYLOAD_BASE = 2, + NFTA_PAYLOAD_OFFSET = 3, + NFTA_PAYLOAD_LEN = 4, + NFTA_PAYLOAD_SREG = 5, + NFTA_PAYLOAD_CSUM_TYPE = 6, + NFTA_PAYLOAD_CSUM_OFFSET = 7, + NFTA_PAYLOAD_CSUM_FLAGS = 8, + __NFTA_PAYLOAD_MAX = 9, +}; + +struct nft_payload_set { + enum nft_payload_bases base: 8; + u8 offset; + u8 len; + u8 sreg; + u8 csum_type; + u8 csum_offset; + u8 csum_flags; +}; + +struct nft_payload_vlan_hdr { + __be16 h_vlan_proto; + __be16 h_vlan_TCI; +}; + +enum nft_nat_types { + NFT_NAT_SNAT = 0, + NFT_NAT_DNAT = 1, +}; + +enum nft_nat_attributes { + NFTA_NAT_UNSPEC = 0, + NFTA_NAT_TYPE = 1, + NFTA_NAT_FAMILY = 2, + NFTA_NAT_REG_ADDR_MIN = 3, + NFTA_NAT_REG_ADDR_MAX = 4, + NFTA_NAT_REG_PROTO_MIN = 5, + NFTA_NAT_REG_PROTO_MAX = 6, + NFTA_NAT_FLAGS = 7, + __NFTA_NAT_MAX = 8, +}; + +struct nft_nat { + u8 sreg_addr_min; + u8 sreg_addr_max; + u8 sreg_proto_min; + u8 sreg_proto_max; + enum nf_nat_manip_type type: 8; + u8 family; + u16 flags; +}; + +enum { + XT_CONNMARK_SET = 0, + XT_CONNMARK_SAVE = 1, + XT_CONNMARK_RESTORE = 2, +}; + +enum { + D_SHIFT_LEFT = 0, + D_SHIFT_RIGHT = 1, +}; + +struct xt_connmark_tginfo1 { + __u32 ctmark; + __u32 ctmask; + __u32 nfmask; + __u8 mode; +}; + +struct xt_connmark_tginfo2 { + __u32 ctmark; + __u32 ctmask; + __u32 nfmask; + __u8 shift_dir; + __u8 shift_bits; + __u8 mode; +}; + +struct xt_connmark_mtinfo1 { + __u32 mark; + __u32 mask; + __u8 invert; +}; + +enum xt_connbytes_what { + XT_CONNBYTES_PKTS = 0, + XT_CONNBYTES_BYTES = 1, + XT_CONNBYTES_AVGPKT = 2, +}; + +enum xt_connbytes_direction { + XT_CONNBYTES_DIR_ORIGINAL = 0, + XT_CONNBYTES_DIR_REPLY = 1, + XT_CONNBYTES_DIR_BOTH = 2, +}; + +struct xt_connbytes_info { + struct { + __u64 from; + __u64 to; + } count; + __u8 what; + __u8 direction; +}; + +enum { + IPT_TTL_EQ = 0, + IPT_TTL_NE = 1, + IPT_TTL_LT = 2, + IPT_TTL_GT = 3, +}; + +struct ipt_ttl_info { + __u8 mode; + __u8 ttl; +}; + +enum { + IP6T_HL_EQ = 0, + IP6T_HL_NE = 1, + IP6T_HL_LT = 2, + IP6T_HL_GT = 3, +}; + +struct ip6t_hl_info { + __u8 mode; + __u8 hop_limit; +}; + +struct xt_state_info { + unsigned int statemask; +}; + +struct icmp_ext_hdr { + __u8 reserved1: 4; + __u8 version: 4; + __u8 reserved2; + __sum16 checksum; +}; + +struct icmp_extobj_hdr { + __be16 length; + __u8 class_num; + __u8 class_type; +}; + +struct icmp_ext_echo_ctype3_hdr { + __be16 afi; + __u8 addrlen; + __u8 reserved; +}; + +struct icmp_ext_echo_iio { + struct icmp_extobj_hdr extobj_hdr; + union { + char name[16]; + __be32 ifindex; + struct { + struct icmp_ext_echo_ctype3_hdr ctype3_hdr; + union { + __be32 ipv4_addr; + struct in6_addr ipv6_addr; + } ip_addr; + } addr; + } ident; +}; + +struct trace_event_raw_icmp_send { + struct trace_entry ent; + const void *skbaddr; + int type; + int code; + __u8 saddr[4]; + __u8 daddr[4]; + __u16 sport; + __u16 dport; + short unsigned int ulen; + char __data[0]; +}; + +struct trace_event_data_offsets_icmp_send {}; + +typedef void (*btf_trace_icmp_send)(void *, const struct sk_buff *, int, int); + +struct icmp_bxm { + struct sk_buff *skb; + int offset; + int data_len; + struct { + struct icmphdr icmph; + __be32 times[3]; + } data; + int head_len; + struct ip_options_data replyopts; +}; + +struct icmp_control { + enum skb_drop_reason (*handler)(struct sk_buff *); + short int error; +}; + +enum { + XT_RPFILTER_LOOSE = 1, + XT_RPFILTER_VALID_MARK = 2, + XT_RPFILTER_ACCEPT_LOCAL = 4, + XT_RPFILTER_INVERT = 8, + XT_RPFILTER_OPTION_MASK = 15, +}; + +struct xt_rpfilter_info { + __u8 flags; +}; + +enum { + INET_ULP_INFO_UNSPEC = 0, + INET_ULP_INFO_NAME = 1, + INET_ULP_INFO_TLS = 2, + INET_ULP_INFO_MPTCP = 3, + __INET_ULP_INFO_MAX = 4, +}; + +struct xfrm_trans_tasklet { + struct work_struct work; + spinlock_t queue_lock; + struct sk_buff_head queue; +}; + +struct xfrm_trans_cb { + union { + struct inet_skb_parm h4; + struct inet6_skb_parm h6; + } header; + int (*finish)(struct net *, struct sock *, struct sk_buff *); + struct net *net; +}; + +struct ioam6_hdr { + __u8 opt_type; + __u8 opt_len; + char: 8; + __u8 type; +}; + +struct ip6t_mh { + __u8 types[2]; + __u8 invflags; +}; + +struct ebt_vlan_info { + __u16 id; + __u8 prio; + __be16 encap; + __u8 bitmask; + __u8 invflags; +}; + +struct sctp_prinfo { + __u16 pr_policy; + __u32 pr_value; +}; + +struct sctp_authinfo { + __u16 auth_keynumber; +}; + +struct sctp_event_subscribe { + __u8 sctp_data_io_event; + __u8 sctp_association_event; + __u8 sctp_address_event; + __u8 sctp_send_failure_event; + __u8 sctp_peer_error_event; + __u8 sctp_shutdown_event; + __u8 sctp_partial_delivery_event; + __u8 sctp_adaptation_layer_event; + __u8 sctp_authentication_event; + __u8 sctp_sender_dry_event; + __u8 sctp_stream_reset_event; + __u8 sctp_assoc_reset_event; + __u8 sctp_stream_change_event; + __u8 sctp_send_failure_event_event; +}; + +struct sctp_setpeerprim { + sctp_assoc_t sspp_assoc_id; + struct __kernel_sockaddr_storage sspp_addr; +} __attribute__((packed)); + +struct sctp_prim { + sctp_assoc_t ssp_assoc_id; + struct __kernel_sockaddr_storage ssp_addr; +} __attribute__((packed)); + +struct sctp_setadaptation { + __u32 ssb_adaptation_ind; +}; + +struct sctp_authchunk { + __u8 sauth_chunk; +}; + +struct sctp_authkeyid { + sctp_assoc_t scact_assoc_id; + __u16 scact_keynumber; +}; + +struct sctp_sack_info { + sctp_assoc_t sack_assoc_id; + uint32_t sack_delay; + uint32_t sack_freq; +}; + +struct sctp_assoc_value { + sctp_assoc_t assoc_id; + uint32_t assoc_value; +}; + +struct sctp_stream_value { + sctp_assoc_t assoc_id; + uint16_t stream_id; + uint16_t stream_value; +}; + +struct sctp_paddrinfo { + sctp_assoc_t spinfo_assoc_id; + struct __kernel_sockaddr_storage spinfo_address; + __s32 spinfo_state; + __u32 spinfo_cwnd; + __u32 spinfo_srtt; + __u32 spinfo_rto; + __u32 spinfo_mtu; +} __attribute__((packed)); + +struct sctp_status { + sctp_assoc_t sstat_assoc_id; + __s32 sstat_state; + __u32 sstat_rwnd; + __u16 sstat_unackdata; + __u16 sstat_penddata; + __u16 sstat_instrms; + __u16 sstat_outstrms; + __u32 sstat_fragmentation_point; + struct sctp_paddrinfo sstat_primary; +}; + +struct sctp_authchunks { + sctp_assoc_t gauth_assoc_id; + __u32 gauth_number_of_chunks; + uint8_t gauth_chunks[0]; +}; + +enum sctp_sstat_state { + SCTP_EMPTY = 0, + SCTP_CLOSED = 1, + SCTP_COOKIE_WAIT = 2, + SCTP_COOKIE_ECHOED = 3, + SCTP_ESTABLISHED = 4, + SCTP_SHUTDOWN_PENDING = 5, + SCTP_SHUTDOWN_SENT = 6, + SCTP_SHUTDOWN_RECEIVED = 7, + SCTP_SHUTDOWN_ACK_SENT = 8, +}; + +struct sctp_assoc_ids { + __u32 gaids_number_of_ids; + sctp_assoc_t gaids_assoc_id[0]; +}; + +struct sctp_getaddrs_old { + sctp_assoc_t assoc_id; + int addr_num; + struct sockaddr *addrs; +}; + +struct sctp_getaddrs { + sctp_assoc_t assoc_id; + __u32 addr_num; + __u8 addrs[0]; +}; + +struct sctp_assoc_stats { + sctp_assoc_t sas_assoc_id; + struct __kernel_sockaddr_storage sas_obs_rto_ipaddr; + __u64 sas_maxrto; + __u64 sas_isacks; + __u64 sas_osacks; + __u64 sas_opackets; + __u64 sas_ipackets; + __u64 sas_rtxchunks; + __u64 sas_outofseqtsns; + __u64 sas_idupchunks; + __u64 sas_gapcnt; + __u64 sas_ouodchunks; + __u64 sas_iuodchunks; + __u64 sas_oodchunks; + __u64 sas_iodchunks; + __u64 sas_octrlchunks; + __u64 sas_ictrlchunks; +}; + +typedef struct { + sctp_assoc_t associd; + int sd; +} sctp_peeloff_arg_t; + +typedef struct { + sctp_peeloff_arg_t p_arg; + unsigned int flags; +} sctp_peeloff_flags_arg_t; + +struct sctp_paddrthlds_v2 { + sctp_assoc_t spt_assoc_id; + struct __kernel_sockaddr_storage spt_address; + __u16 spt_pathmaxrxt; + __u16 spt_pathpfthld; + __u16 spt_pathcpthld; +}; + +struct sctp_prstatus { + sctp_assoc_t sprstat_assoc_id; + __u16 sprstat_sid; + __u16 sprstat_policy; + __u64 sprstat_abandoned_unsent; + __u64 sprstat_abandoned_sent; +}; + +struct sctp_default_prinfo { + sctp_assoc_t pr_assoc_id; + __u32 pr_value; + __u16 pr_policy; +}; + +struct sctp_info { + __u32 sctpi_tag; + __u32 sctpi_state; + __u32 sctpi_rwnd; + __u16 sctpi_unackdata; + __u16 sctpi_penddata; + __u16 sctpi_instrms; + __u16 sctpi_outstrms; + __u32 sctpi_fragmentation_point; + __u32 sctpi_inqueue; + __u32 sctpi_outqueue; + __u32 sctpi_overall_error; + __u32 sctpi_max_burst; + __u32 sctpi_maxseg; + __u32 sctpi_peer_rwnd; + __u32 sctpi_peer_tag; + __u8 sctpi_peer_capable; + __u8 sctpi_peer_sack; + __u16 __reserved1; + __u64 sctpi_isacks; + __u64 sctpi_osacks; + __u64 sctpi_opackets; + __u64 sctpi_ipackets; + __u64 sctpi_rtxchunks; + __u64 sctpi_outofseqtsns; + __u64 sctpi_idupchunks; + __u64 sctpi_gapcnt; + __u64 sctpi_ouodchunks; + __u64 sctpi_iuodchunks; + __u64 sctpi_oodchunks; + __u64 sctpi_iodchunks; + __u64 sctpi_octrlchunks; + __u64 sctpi_ictrlchunks; + struct __kernel_sockaddr_storage sctpi_p_address; + __s32 sctpi_p_state; + __u32 sctpi_p_cwnd; + __u32 sctpi_p_srtt; + __u32 sctpi_p_rto; + __u32 sctpi_p_hbinterval; + __u32 sctpi_p_pathmaxrxt; + __u32 sctpi_p_sackdelay; + __u32 sctpi_p_sackfreq; + __u32 sctpi_p_ssthresh; + __u32 sctpi_p_partial_bytes_acked; + __u32 sctpi_p_flight_size; + __u16 sctpi_p_error; + __u16 __reserved2; + __u32 sctpi_s_autoclose; + __u32 sctpi_s_adaptation_ind; + __u32 sctpi_s_pd_point; + __u8 sctpi_s_nodelay; + __u8 sctpi_s_disable_fragments; + __u8 sctpi_s_v4mapped; + __u8 sctpi_s_frag_interleave; + __u32 sctpi_s_type; + __u32 __reserved3; +}; + +struct sctp_event { + sctp_assoc_t se_assoc_id; + uint16_t se_type; + uint8_t se_on; +}; + +struct sctp_udpencaps { + sctp_assoc_t sue_assoc_id; + struct __kernel_sockaddr_storage sue_address; + uint16_t sue_port; +}; + +struct sctp_probeinterval { + sctp_assoc_t spi_assoc_id; + struct __kernel_sockaddr_storage spi_address; + __u32 spi_interval; +}; + +struct sctp_cmsgs { + struct sctp_initmsg *init; + struct sctp_sndrcvinfo *srinfo; + struct sctp_sndinfo *sinfo; + struct sctp_prinfo *prinfo; + struct sctp_authinfo *authinfo; + struct msghdr *addrs_msg; +}; + +typedef int (*sctp_callback_t)(struct sctp_endpoint *, struct sctp_transport *, void *); + +enum ovs_vport_upcall_attr { + OVS_VPORT_UPCALL_ATTR_SUCCESS = 0, + OVS_VPORT_UPCALL_ATTR_FAIL = 1, + __OVS_VPORT_UPCALL_ATTR_MAX = 2, +}; + +struct vsock_diag_req { + __u8 sdiag_family; + __u8 sdiag_protocol; + __u16 pad; + __u32 vdiag_states; + __u32 vdiag_ino; + __u32 vdiag_show; + __u32 vdiag_cookie[2]; +}; + +struct vsock_diag_msg { + __u8 vdiag_family; + __u8 vdiag_type; + __u8 vdiag_state; + __u8 vdiag_shutdown; + __u32 vdiag_src_cid; + __u32 vdiag_src_port; + __u32 vdiag_dst_cid; + __u32 vdiag_dst_port; + __u32 vdiag_ino; + __u32 vdiag_cookie[2]; +}; + +typedef long unsigned int cycles_t; + +struct sigcontext { + __u64 fault_address; + __u64 regs[31]; + __u64 sp; + __u64 pc; + __u64 pstate; + long: 64; + __u8 __reserved[4096]; +}; + +struct _aarch64_ctx { + __u32 magic; + __u32 size; +}; + +struct fpsimd_context { + struct _aarch64_ctx head; + __u32 fpsr; + __u32 fpcr; + __int128 unsigned vregs[32]; +}; + +struct esr_context { + struct _aarch64_ctx head; + __u64 esr; +}; + +struct poe_context { + struct _aarch64_ctx head; + __u64 por_el0; +}; + +struct extra_context { + struct _aarch64_ctx head; + __u64 datap; + __u32 size; + __u32 __reserved[3]; +}; + +struct sve_context { + struct _aarch64_ctx head; + __u16 vl; + __u16 flags; + __u16 __reserved[2]; +}; + +struct tpidr2_context { + struct _aarch64_ctx head; + __u64 tpidr2; +}; + +struct fpmr_context { + struct _aarch64_ctx head; + __u64 fpmr; +}; + +struct za_context { + struct _aarch64_ctx head; + __u16 vl; + __u16 __reserved[3]; +}; + +struct zt_context { + struct _aarch64_ctx head; + __u16 nregs; + __u16 __reserved[3]; +}; + +struct ucontext { + long unsigned int uc_flags; + struct ucontext *uc_link; + stack_t uc_stack; + sigset_t uc_sigmask; + __u8 __unused[120]; + long: 64; + struct sigcontext uc_mcontext; +}; + +struct rt_sigframe { + struct siginfo info; + struct ucontext uc; +}; + +struct frame_record { + u64 fp; + u64 lr; +}; + +struct rt_sigframe_user_layout { + struct rt_sigframe *sigframe; + struct frame_record *next_frame; + long unsigned int size; + long unsigned int limit; + long unsigned int fpsimd_offset; + long unsigned int esr_offset; + long unsigned int sve_offset; + long unsigned int tpidr2_offset; + long unsigned int za_offset; + long unsigned int zt_offset; + long unsigned int fpmr_offset; + long unsigned int poe_offset; + long unsigned int extra_offset; + long unsigned int end_offset; +}; + +struct user_access_state { + u64 por_el0; +}; + +struct user_ctxs { + struct fpsimd_context *fpsimd; + u32 fpsimd_size; + struct sve_context *sve; + u32 sve_size; + struct tpidr2_context *tpidr2; + u32 tpidr2_size; + struct za_context *za; + u32 za_size; + struct zt_context *zt; + u32 zt_size; + struct fpmr_context *fpmr; + u32 fpmr_size; + struct poe_context *poe; + u32 poe_size; +}; + +enum { + NDD_UNARMED = 1, + NDD_LOCKED = 2, + NDD_SECURITY_OVERWRITE = 3, + NDD_WORK_PENDING = 4, + NDD_LABELING = 6, + NDD_INCOHERENT = 7, + NDD_REGISTER_SYNC = 8, + ND_IOCTL_MAX_BUFLEN = 4194304, + ND_CMD_MAX_ELEM = 5, + ND_CMD_MAX_ENVELOPE = 256, + ND_MAX_MAPPINGS = 32, + ND_REGION_PAGEMAP = 0, + ND_REGION_PERSIST_CACHE = 1, + ND_REGION_PERSIST_MEMCTRL = 2, + ND_REGION_ASYNC = 3, + ND_REGION_CXL = 4, + DPA_RESOURCE_ADJUSTED = 1, +}; + +struct prb_data_block { + long unsigned int id; + char data[0]; +}; + +struct trace_event_raw_rcu_utilization { + struct trace_entry ent; + const char *s; + char __data[0]; +}; + +struct trace_event_raw_rcu_stall_warning { + struct trace_entry ent; + const char *rcuname; + const char *msg; + char __data[0]; +}; + +struct trace_event_data_offsets_rcu_utilization {}; + +struct trace_event_data_offsets_rcu_stall_warning {}; + +typedef void (*btf_trace_rcu_utilization)(void *, const char *); + +typedef void (*btf_trace_rcu_stall_warning)(void *, const char *, const char *); + +struct rcu_tasks; + +typedef void (*rcu_tasks_gp_func_t)(struct rcu_tasks *); + +typedef void (*pregp_func_t)(struct list_head *); + +typedef void (*pertask_func_t)(struct task_struct *, struct list_head *); + +typedef void (*postscan_func_t)(struct list_head *); + +typedef void (*holdouts_func_t)(struct list_head *, bool, bool *); + +typedef void (*postgp_func_t)(struct rcu_tasks *); + +struct rcu_tasks_percpu; + +struct rcu_tasks { + struct rcuwait cbs_wait; + raw_spinlock_t cbs_gbl_lock; + struct mutex tasks_gp_mutex; + int gp_state; + int gp_sleep; + int init_fract; + long unsigned int gp_jiffies; + long unsigned int gp_start; + long unsigned int tasks_gp_seq; + long unsigned int n_ipis; + long unsigned int n_ipis_fails; + struct task_struct *kthread_ptr; + long unsigned int lazy_jiffies; + rcu_tasks_gp_func_t gp_func; + pregp_func_t pregp_func; + pertask_func_t pertask_func; + postscan_func_t postscan_func; + holdouts_func_t holdouts_func; + postgp_func_t postgp_func; + call_rcu_func_t call_func; + unsigned int wait_state; + struct rcu_tasks_percpu *rtpcpu; + struct rcu_tasks_percpu **rtpcp_array; + int percpu_enqueue_shift; + int percpu_enqueue_lim; + int percpu_dequeue_lim; + long unsigned int percpu_dequeue_gpseq; + struct mutex barrier_q_mutex; + atomic_t barrier_q_count; + struct completion barrier_q_completion; + long unsigned int barrier_q_seq; + long unsigned int barrier_q_start; + char *name; + char *kname; +}; + +struct rcu_tasks_percpu { + struct rcu_segcblist cblist; + raw_spinlock_t lock; + long unsigned int rtp_jiffies; + long unsigned int rtp_n_lock_retries; + struct timer_list lazy_timer; + unsigned int urgent_gp; + struct work_struct rtp_work; + struct irq_work rtp_irq_work; + struct callback_head barrier_q_head; + struct list_head rtp_blkd_tasks; + struct list_head rtp_exit_list; + int cpu; + int index; + struct rcu_tasks *rtpp; +}; + +struct trc_stall_chk_rdr { + int nesting; + int ipi_to_cpu; + u8 needqs; +}; + +struct trace_event_raw_alarmtimer_suspend { + struct trace_entry ent; + s64 expires; + unsigned char alarm_type; + char __data[0]; +}; + +struct trace_event_raw_alarm_class { + struct trace_entry ent; + void *alarm; + unsigned char alarm_type; + s64 expires; + s64 now; + char __data[0]; +}; + +struct trace_event_data_offsets_alarmtimer_suspend {}; + +struct trace_event_data_offsets_alarm_class {}; + +typedef void (*btf_trace_alarmtimer_suspend)(void *, ktime_t, int); + +typedef void (*btf_trace_alarmtimer_fired)(void *, struct alarm *, ktime_t); + +typedef void (*btf_trace_alarmtimer_start)(void *, struct alarm *, ktime_t); + +typedef void (*btf_trace_alarmtimer_cancel)(void *, struct alarm *, ktime_t); + +struct alarm_base { + spinlock_t lock; + struct timerqueue_head timerqueue; + ktime_t (*get_ktime)(void); + void (*get_timespec)(struct timespec64 *); + clockid_t base_clockid; +}; + +struct trace_export { + struct trace_export *next; + void (*write)(struct trace_export *, const void *, unsigned int); + int flags; +}; + +typedef bool (*cond_update_fn_t)(struct trace_array *, void *); + +struct trace_min_max_param { + struct mutex *lock; + u64 *val; + u64 *min; + u64 *max; +}; + +struct pipe_wait { + struct trace_iterator *iter; + int wait_index; +}; + +struct ftrace_stack { + long unsigned int calls[1024]; +}; + +struct ftrace_stacks { + struct ftrace_stack stacks[4]; +}; + +struct trace_buffer_struct { + int nesting; + char buffer[4096]; +}; + +struct ftrace_buffer_info { + struct trace_iterator iter; + void *spare; + unsigned int spare_cpu; + unsigned int spare_size; + unsigned int read; +}; + +struct err_info { + const char **errs; + u8 type; + u16 pos; + u64 ts; +}; + +struct tracing_log_err { + struct list_head list; + struct err_info info; + char loc[128]; + char *cmd; +}; + +struct buffer_ref { + struct trace_buffer *buffer; + void *page; + int cpu; + refcount_t refcount; +}; + +struct bpf_preload_info { + char link_name[16]; + struct bpf_link *link; +}; + +struct bpf_preload_ops { + int (*preload)(struct bpf_preload_info *); + struct module *owner; +}; + +enum bpf_type { + BPF_TYPE_UNSPEC = 0, + BPF_TYPE_PROG = 1, + BPF_TYPE_MAP = 2, + BPF_TYPE_LINK = 3, +}; + +struct map_iter { + void *key; + bool done; +}; + +struct bpffs_btf_enums { + const struct btf *btf; + const struct btf_type *cmd_t; + const struct btf_type *map_t; + const struct btf_type *prog_t; + const struct btf_type *attach_t; +}; + +enum { + OPT_UID = 0, + OPT_GID = 1, + OPT_MODE = 2, + OPT_DELEGATE_CMDS = 3, + OPT_DELEGATE_MAPS = 4, + OPT_DELEGATE_PROGS = 5, + OPT_DELEGATE_ATTACHS = 6, +}; + +struct bpf_shim_tramp_link { + struct bpf_tramp_link link; + struct bpf_trampoline *trampoline; +}; + +struct bpf_cpumask { + cpumask_t cpumask; + refcount_t usage; +}; + +struct shmem_quota_limits { + qsize_t usrquota_bhardlimit; + qsize_t usrquota_ihardlimit; + qsize_t grpquota_bhardlimit; + qsize_t grpquota_ihardlimit; +}; + +struct shmem_sb_info { + long unsigned int max_blocks; + struct percpu_counter used_blocks; + long unsigned int max_inodes; + long unsigned int free_ispace; + raw_spinlock_t stat_lock; + umode_t mode; + unsigned char huge; + kuid_t uid; + kgid_t gid; + bool full_inums; + bool noswap; + ino_t next_ino; + ino_t *ino_batch; + struct mempolicy *mpol; + spinlock_t shrinklist_lock; + struct list_head shrinklist; + long unsigned int shrinklist_len; + struct shmem_quota_limits qlimits; +}; + +struct shmem_falloc { + wait_queue_head_t *waitq; + long unsigned int start; + long unsigned int next; + long unsigned int nr_falloced; + long unsigned int nr_unswapped; +}; + +struct shmem_options { + long long unsigned int blocks; + long long unsigned int inodes; + struct mempolicy *mpol; + kuid_t uid; + kgid_t gid; + umode_t mode; + bool full_inums; + int huge; + int seen; + bool noswap; + short unsigned int quota_types; + struct shmem_quota_limits qlimits; +}; + +enum shmem_param { + Opt_gid___11 = 0, + Opt_huge = 1, + Opt_mode___7 = 2, + Opt_mpol = 3, + Opt_nr_blocks = 4, + Opt_nr_inodes___2 = 5, + Opt_size___2 = 6, + Opt_uid___10 = 7, + Opt_inode32___2 = 8, + Opt_inode64___2 = 9, + Opt_noswap = 10, + Opt_quota___4 = 11, + Opt_usrquota___4 = 12, + Opt_grpquota___4 = 13, + Opt_usrquota_block_hardlimit = 14, + Opt_usrquota_inode_hardlimit = 15, + Opt_grpquota_block_hardlimit = 16, + Opt_grpquota_inode_hardlimit = 17, +}; + +struct crypto_acomp_ctx { + struct crypto_acomp *acomp; + struct acomp_req *req; + struct crypto_wait wait; + u8 *buffer; + struct mutex mutex; + bool is_sleepable; +}; + +struct zswap_pool { + struct zpool *zpool; + struct crypto_acomp_ctx *acomp_ctx; + struct percpu_ref ref; + struct list_head list; + struct work_struct release_work; + struct hlist_node node; + char tfm_name[128]; +}; + +struct zswap_entry { + swp_entry_t swpentry; + unsigned int length; + bool referenced; + struct zswap_pool *pool; + long unsigned int handle; + struct obj_cgroup *objcg; + struct list_head lru; +}; + +enum zswap_init_type { + ZSWAP_UNINIT = 0, + ZSWAP_INIT_SUCCEED = 1, + ZSWAP_INIT_FAILED = 2, +}; + +struct saved { + struct path link; + struct delayed_call done; + const char *name; + unsigned int seq; +}; + +struct nameidata { + struct path path; + struct qstr last; + struct path root; + struct inode *inode; + unsigned int flags; + unsigned int state; + unsigned int seq; + unsigned int next_seq; + unsigned int m_seq; + unsigned int r_seq; + int last_type; + unsigned int depth; + int total_link_count; + struct saved *stack; + struct saved internal[2]; + struct filename *name; + struct nameidata *saved; + unsigned int root_seq; + int dfd; + vfsuid_t dir_vfsuid; + umode_t dir_mode; +}; + +enum { + LAST_NORM = 0, + LAST_ROOT = 1, + LAST_DOT = 2, + LAST_DOTDOT = 3, +}; + +enum { + WALK_TRAILING = 1, + WALK_MORE = 2, + WALK_NOFOLLOW = 4, +}; + +struct eventfd_ctx { + struct kref kref; + wait_queue_head_t wqh; + __u64 count; + unsigned int flags; + int id; +}; + +enum { + QUOTA_NL_C_UNSPEC = 0, + QUOTA_NL_C_WARNING = 1, + __QUOTA_NL_C_MAX = 2, +}; + +enum { + QUOTA_NL_A_UNSPEC = 0, + QUOTA_NL_A_QTYPE = 1, + QUOTA_NL_A_EXCESS_ID = 2, + QUOTA_NL_A_WARNING = 3, + QUOTA_NL_A_DEV_MAJOR = 4, + QUOTA_NL_A_DEV_MINOR = 5, + QUOTA_NL_A_CAUSED_ID = 6, + QUOTA_NL_A_PAD = 7, + __QUOTA_NL_A_MAX = 8, +}; + +struct trace_event_raw_fscache_cache { + struct trace_entry ent; + unsigned int cache; + int usage; + enum fscache_cache_trace where; + char __data[0]; +}; + +struct trace_event_raw_fscache_volume { + struct trace_entry ent; + unsigned int volume; + int usage; + enum fscache_volume_trace where; + char __data[0]; +}; + +struct trace_event_raw_fscache_cookie { + struct trace_entry ent; + unsigned int cookie; + int ref; + enum fscache_cookie_trace where; + char __data[0]; +}; + +struct trace_event_raw_fscache_active { + struct trace_entry ent; + unsigned int cookie; + int ref; + int n_active; + int n_accesses; + enum fscache_active_trace why; + char __data[0]; +}; + +struct trace_event_raw_fscache_access_cache { + struct trace_entry ent; + unsigned int cache; + int ref; + int n_accesses; + enum fscache_access_trace why; + char __data[0]; +}; + +struct trace_event_raw_fscache_access_volume { + struct trace_entry ent; + unsigned int volume; + unsigned int cookie; + int ref; + int n_accesses; + enum fscache_access_trace why; + char __data[0]; +}; + +struct trace_event_raw_fscache_access { + struct trace_entry ent; + unsigned int cookie; + int ref; + int n_accesses; + enum fscache_access_trace why; + char __data[0]; +}; + +struct trace_event_raw_fscache_acquire { + struct trace_entry ent; + unsigned int cookie; + unsigned int volume; + int v_ref; + int v_n_cookies; + char __data[0]; +}; + +struct trace_event_raw_fscache_relinquish { + struct trace_entry ent; + unsigned int cookie; + unsigned int volume; + int ref; + int n_active; + u8 flags; + bool retire; + char __data[0]; +}; + +struct trace_event_raw_fscache_invalidate { + struct trace_entry ent; + unsigned int cookie; + loff_t new_size; + char __data[0]; +}; + +struct trace_event_raw_fscache_resize { + struct trace_entry ent; + unsigned int cookie; + loff_t old_size; + loff_t new_size; + char __data[0]; +}; + +struct trace_event_data_offsets_fscache_cache {}; + +struct trace_event_data_offsets_fscache_volume {}; + +struct trace_event_data_offsets_fscache_cookie {}; + +struct trace_event_data_offsets_fscache_active {}; + +struct trace_event_data_offsets_fscache_access_cache {}; + +struct trace_event_data_offsets_fscache_access_volume {}; + +struct trace_event_data_offsets_fscache_access {}; + +struct trace_event_data_offsets_fscache_acquire {}; + +struct trace_event_data_offsets_fscache_relinquish {}; + +struct trace_event_data_offsets_fscache_invalidate {}; + +struct trace_event_data_offsets_fscache_resize {}; + +typedef void (*btf_trace_fscache_cache)(void *, unsigned int, int, enum fscache_cache_trace); + +typedef void (*btf_trace_fscache_volume)(void *, unsigned int, int, enum fscache_volume_trace); + +typedef void (*btf_trace_fscache_cookie)(void *, unsigned int, int, enum fscache_cookie_trace); + +typedef void (*btf_trace_fscache_active)(void *, unsigned int, int, int, int, enum fscache_active_trace); + +typedef void (*btf_trace_fscache_access_cache)(void *, unsigned int, int, int, enum fscache_access_trace); + +typedef void (*btf_trace_fscache_access_volume)(void *, unsigned int, unsigned int, int, int, enum fscache_access_trace); + +typedef void (*btf_trace_fscache_access)(void *, unsigned int, int, int, enum fscache_access_trace); + +typedef void (*btf_trace_fscache_acquire)(void *, struct fscache_cookie *); + +typedef void (*btf_trace_fscache_relinquish)(void *, struct fscache_cookie *, bool); + +typedef void (*btf_trace_fscache_invalidate)(void *, struct fscache_cookie *, loff_t); + +typedef void (*btf_trace_fscache_resize)(void *, struct fscache_cookie *, loff_t); + +struct migrate_struct { + ext4_lblk_t first_block; + ext4_lblk_t last_block; + ext4_lblk_t curr_block; + ext4_fsblk_t first_pblock; + ext4_fsblk_t last_pblock; +}; + +struct recovery_info { + tid_t start_transaction; + tid_t end_transaction; + long unsigned int head_block; + int nr_replays; + int nr_revokes; + int nr_revoke_hits; +}; + +struct squashfs_xattr_entry { + __le16 type; + __le16 size; + char data[0]; +}; + +struct squashfs_xattr_val { + __le32 vsize; + char value[0]; +}; + +struct nfs_io_completion { + void (*complete)(void *); + void *data; + struct kref refcount; +}; + +struct nfs4_ds_server { + struct list_head list; + struct rpc_clnt *rpc_clnt; +}; + +struct nlmclnt_initdata { + const char *hostname; + const struct sockaddr *address; + size_t addrlen; + short unsigned int protocol; + u32 nfs_version; + int noresvport; + struct net *net; + const struct nlmclnt_operations *nlmclnt_ops; + const struct cred *cred; +}; + +struct smb2_lease_break { + struct smb2_hdr hdr; + __le16 StructureSize; + __le16 Epoch; + __le32 Flags; + __u8 LeaseKey[16]; + __le32 CurrentLeaseState; + __le32 NewLeaseState; + __le32 BreakReason; + __le32 AccessMaskHint; + __le32 ShareMaskHint; +} __attribute__((packed)); + +struct close_cancelled_open { + struct cifs_fid fid; + struct cifs_tcon *tcon; + struct work_struct work; + __u64 mid; + __u16 cmd; +}; + +struct smb2_lease_break_work { + struct work_struct lease_break; + struct tcon_link *tlink; + __u8 lease_key[16]; + __le32 lease_state; +}; + +enum { + AUTOFS_IOC_READY_CMD = 96, + AUTOFS_IOC_FAIL_CMD = 97, + AUTOFS_IOC_CATATONIC_CMD = 98, + AUTOFS_IOC_PROTOVER_CMD = 99, + AUTOFS_IOC_SETTIMEOUT_CMD = 100, + AUTOFS_IOC_EXPIRE_CMD = 101, +}; + +enum { + AUTOFS_IOC_EXPIRE_MULTI_CMD = 102, + AUTOFS_IOC_PROTOSUBVER_CMD = 103, + AUTOFS_IOC_ASKUMOUNT_CMD = 112, +}; + +enum ovl_copyop { + OVL_COPY = 0, + OVL_CLONE = 1, + OVL_DEDUPE = 2, +}; + +enum btrfs_caching_type { + BTRFS_CACHE_NO = 0, + BTRFS_CACHE_STARTED = 1, + BTRFS_CACHE_FINISHED = 2, + BTRFS_CACHE_ERROR = 3, +}; + +enum btrfs_loop_type { + LOOP_CACHING_NOWAIT = 0, + LOOP_CACHING_WAIT = 1, + LOOP_UNSET_SIZE_CLASS = 2, + LOOP_ALLOC_CHUNK = 3, + LOOP_WRONG_SIZE_CLASS = 4, + LOOP_NO_EMPTY_SIZE = 5, +}; + +struct walk_control___2 { + u64 refs[8]; + u64 flags[8]; + struct btrfs_key update_progress; + struct btrfs_key drop_progress; + int drop_level; + int stage; + int level; + int shared_level; + int update_ref; + int keep_locks; + int reada_slot; + int reada_count; + int restarted; + int lookup_info; +}; + +struct btrfs_compr_pool { + struct shrinker *shrinker; + spinlock_t lock; + struct list_head list; + int count; + int thresh; +}; + +struct bucket_item { + u32 count; +}; + +struct heuristic_ws { + u8 *sample; + u32 sample_size; + struct bucket_item *bucket; + struct bucket_item *bucket_b; + struct list_head list; +}; + +enum { + GC_THREAD = 0, + SM_INFO = 1, + DCC_INFO = 2, + NM_INFO = 3, + F2FS_SBI = 4, + STAT_INFO = 5, + RESERVED_BLOCKS = 6, + CPRC_INFO = 7, + ATGC_INFO = 8, +}; + +struct f2fs_attr { + struct attribute attr; + ssize_t (*show)(struct f2fs_attr *, struct f2fs_sb_info *, char *); + ssize_t (*store)(struct f2fs_attr *, struct f2fs_sb_info *, const char *, size_t); + int struct_type; + int offset; + int id; +}; + +struct f2fs_base_attr { + struct attribute attr; + ssize_t (*show)(struct f2fs_base_attr *, char *); + ssize_t (*store)(struct f2fs_base_attr *, const char *, size_t); +}; + +enum ecryptfs_token_types { + ECRYPTFS_PASSWORD = 0, + ECRYPTFS_PRIVATE_KEY = 1, +}; + +struct bf_ctx { + u32 p[18]; + u32 s[1024]; +}; + +struct michael_mic_ctx { + u32 l; + u32 r; +}; + +struct michael_mic_desc_ctx { + __le32 pending; + size_t pending_len; + u32 l; + u32 r; +}; + +enum io_uring_socket_op { + SOCKET_URING_OP_SIOCINQ = 0, + SOCKET_URING_OP_SIOCOUTQ = 1, + SOCKET_URING_OP_GETSOCKOPT = 2, + SOCKET_URING_OP_SETSOCKOPT = 3, +}; + +struct uring_cache { + struct io_uring_sqe sqes[2]; +}; + +struct io_timeout_data { + struct io_kiocb *req; + struct hrtimer timer; + struct timespec64 ts; + enum hrtimer_mode mode; + u32 flags; +}; + +struct io_timeout { + struct file *file; + u32 off; + u32 target_seq; + u32 repeats; + struct list_head list; + struct io_kiocb *head; + struct io_kiocb *prev; +}; + +struct io_timeout_rem { + struct file *file; + u64 addr; + struct timespec64 ts; + u32 flags; + bool ltimeout; +}; + +struct region { + unsigned int start; + unsigned int off; + unsigned int group_len; + unsigned int end; + unsigned int nbits; +}; + +union uu { + short unsigned int us; + unsigned char b[2]; +}; + +typedef struct tree_desc_s tree_desc; + +struct ts_bm { + u8 *pattern; + unsigned int patlen; + unsigned int bad_shift[256]; + unsigned int good_shift[0]; +}; + +struct dp_sdp_header { + u8 HB0; + u8 HB1; + u8 HB2; + u8 HB3; +}; + +struct dp_sdp { + struct dp_sdp_header sdp_header; + u8 db[32]; +}; + +struct of_dma { + struct list_head of_dma_controllers; + struct device_node *of_node; + struct dma_chan * (*of_dma_xlate)(struct of_phandle_args *, struct of_dma *); + void * (*of_dma_route_allocate)(struct of_phandle_args *, struct of_dma *); + struct dma_router *dma_router; + void *of_dma_data; +}; + +struct of_dma_filter_info { + dma_cap_mask_t dma_cap; + dma_filter_fn filter_fn; +}; + +struct tiocl_selection { + short unsigned int xs; + short unsigned int ys; + short unsigned int xe; + short unsigned int ye; + short unsigned int sel_mode; +}; + +struct vc_selection { + struct mutex lock; + struct vc_data *cons; + char *buffer; + unsigned int buf_len; + volatile int start; + int end; +}; + +struct pnp_device_id { + __u8 id[8]; + kernel_ulong_t driver_data; +}; + +struct pnp_card_device_id { + __u8 id[8]; + kernel_ulong_t driver_data; + struct { + __u8 id[8]; + } devs[8]; +}; + +struct pnp_protocol; + +struct pnp_id; + +struct pnp_card { + struct device dev; + unsigned char number; + struct list_head global_list; + struct list_head protocol_list; + struct list_head devices; + struct pnp_protocol *protocol; + struct pnp_id *id; + char name[50]; + unsigned char pnpver; + unsigned char productver; + unsigned int serial; + unsigned char checksum; + struct proc_dir_entry *procdir; +}; + +struct pnp_dev; + +struct pnp_protocol { + struct list_head protocol_list; + char *name; + int (*get)(struct pnp_dev *); + int (*set)(struct pnp_dev *); + int (*disable)(struct pnp_dev *); + bool (*can_wakeup)(struct pnp_dev *); + int (*suspend)(struct pnp_dev *, pm_message_t); + int (*resume)(struct pnp_dev *); + unsigned char number; + struct device dev; + struct list_head cards; + struct list_head devices; +}; + +struct pnp_id { + char id[8]; + struct pnp_id *next; +}; + +struct pnp_card_driver; + +struct pnp_card_link { + struct pnp_card *card; + struct pnp_card_driver *driver; + void *driver_data; + pm_message_t pm_state; +}; + +struct pnp_driver { + const char *name; + const struct pnp_device_id *id_table; + unsigned int flags; + int (*probe)(struct pnp_dev *, const struct pnp_device_id *); + void (*remove)(struct pnp_dev *); + void (*shutdown)(struct pnp_dev *); + int (*suspend)(struct pnp_dev *, pm_message_t); + int (*resume)(struct pnp_dev *); + struct device_driver driver; +}; + +struct pnp_card_driver { + struct list_head global_list; + char *name; + const struct pnp_card_device_id *id_table; + unsigned int flags; + int (*probe)(struct pnp_card_link *, const struct pnp_card_device_id *); + void (*remove)(struct pnp_card_link *); + int (*suspend)(struct pnp_card_link *, pm_message_t); + int (*resume)(struct pnp_card_link *); + struct pnp_driver link; +}; + +struct pnp_dev { + struct device dev; + u64 dma_mask; + unsigned int number; + int status; + struct list_head global_list; + struct list_head protocol_list; + struct list_head card_list; + struct list_head rdev_list; + struct pnp_protocol *protocol; + struct pnp_card *card; + struct pnp_driver *driver; + struct pnp_card_link *card_link; + struct pnp_id *id; + int active; + int capabilities; + unsigned int num_dependent_sets; + struct list_head resources; + struct list_head options; + char name[50]; + int flags; + struct proc_dir_entry *procent; + void *data; +}; + +struct of_serial_info { + struct clk *clk; + struct reset_control *rst; + int type; + int line; + struct notifier_block clk_notifier; +}; + +struct drm_mode_crtc { + __u64 set_connectors_ptr; + __u32 count_connectors; + __u32 crtc_id; + __u32 fb_id; + __u32 x; + __u32 y; + __u32 gamma_size; + __u32 mode_valid; + struct drm_mode_modeinfo mode; +}; + +struct drm_mode_property_enum { + __u64 value; + char name[32]; +}; + +struct drm_mode_get_property { + __u64 values_ptr; + __u64 enum_blob_ptr; + __u32 prop_id; + __u32 flags; + char name[32]; + __u32 count_values; + __u32 count_enum_blobs; +}; + +struct drm_mode_get_blob { + __u32 blob_id; + __u32 length; + __u64 data; +}; + +struct drm_mode_create_blob { + __u64 data; + __u32 length; + __u32 blob_id; +}; + +struct drm_mode_destroy_blob { + __u32 blob_id; +}; + +struct drm_property_enum { + uint64_t value; + struct list_head head; + char name[32]; +}; + +struct drm_exec { + u32 flags; + struct ww_acquire_ctx ticket; + unsigned int num_objects; + unsigned int max_objects; + struct drm_gem_object **objects; + struct drm_gem_object *contended; + struct drm_gem_object *prelocked; +}; + +enum drm_gpuva_flags { + DRM_GPUVA_INVALIDATED = 1, + DRM_GPUVA_SPARSE = 2, + DRM_GPUVA_USERBITS = 4, +}; + +struct drm_gpuvm; + +struct drm_gpuvm_bo; + +struct drm_gpuva { + struct drm_gpuvm *vm; + struct drm_gpuvm_bo *vm_bo; + enum drm_gpuva_flags flags; + struct { + u64 addr; + u64 range; + } va; + struct { + u64 offset; + struct drm_gem_object *obj; + struct list_head entry; + } gem; + struct { + struct rb_node node; + struct list_head entry; + u64 __subtree_last; + } rb; +}; + +enum drm_gpuvm_flags { + DRM_GPUVM_RESV_PROTECTED = 1, + DRM_GPUVM_USERBITS = 2, +}; + +struct drm_gpuvm_ops; + +struct drm_gpuvm { + const char *name; + enum drm_gpuvm_flags flags; + struct drm_device *drm; + u64 mm_start; + u64 mm_range; + struct { + struct rb_root_cached tree; + struct list_head list; + } rb; + struct kref kref; + struct drm_gpuva kernel_alloc_node; + const struct drm_gpuvm_ops *ops; + struct drm_gem_object *r_obj; + struct { + struct list_head list; + struct list_head *local_list; + spinlock_t lock; + } extobj; + struct { + struct list_head list; + struct list_head *local_list; + spinlock_t lock; + } evict; +}; + +struct drm_gpuvm_bo { + struct drm_gpuvm *vm; + struct drm_gem_object *obj; + bool evicted; + struct kref kref; + struct { + struct list_head gpuva; + struct { + struct list_head gem; + struct list_head extobj; + struct list_head evict; + } entry; + } list; +}; + +struct drm_gpuva_op; + +struct drm_gpuvm_ops { + void (*vm_free)(struct drm_gpuvm *); + struct drm_gpuva_op * (*op_alloc)(void); + void (*op_free)(struct drm_gpuva_op *); + struct drm_gpuvm_bo * (*vm_bo_alloc)(void); + void (*vm_bo_free)(struct drm_gpuvm_bo *); + int (*vm_bo_validate)(struct drm_gpuvm_bo *, struct drm_exec *); + int (*sm_step_map)(struct drm_gpuva_op *, void *); + int (*sm_step_remap)(struct drm_gpuva_op *, void *); + int (*sm_step_unmap)(struct drm_gpuva_op *, void *); +}; + +enum drm_gpuva_op_type { + DRM_GPUVA_OP_MAP = 0, + DRM_GPUVA_OP_REMAP = 1, + DRM_GPUVA_OP_UNMAP = 2, + DRM_GPUVA_OP_PREFETCH = 3, +}; + +struct drm_gpuva_op_map { + struct { + u64 addr; + u64 range; + } va; + struct { + u64 offset; + struct drm_gem_object *obj; + } gem; +}; + +struct drm_gpuva_op_unmap { + struct drm_gpuva *va; + bool keep; +}; + +struct drm_gpuva_op_remap { + struct drm_gpuva_op_map *prev; + struct drm_gpuva_op_map *next; + struct drm_gpuva_op_unmap *unmap; +}; + +struct drm_gpuva_op_prefetch { + struct drm_gpuva *va; +}; + +struct drm_gpuva_op { + struct list_head entry; + enum drm_gpuva_op_type op; + union { + struct drm_gpuva_op_map map; + struct drm_gpuva_op_remap remap; + struct drm_gpuva_op_unmap unmap; + struct drm_gpuva_op_prefetch prefetch; + }; +}; + +struct transport_class { + struct class class; + int (*setup)(struct transport_container *, struct device *, struct device *); + int (*configure)(struct transport_container *, struct device *, struct device *); + int (*remove)(struct transport_container *, struct device *, struct device *); +}; + +struct anon_transport_class { + struct transport_class tclass; + struct attribute_container container; +}; + +typedef void (*irq_write_msi_msg_t)(struct msi_desc *, struct msi_msg *); + +struct dma_resv_list { + struct callback_head rcu; + u32 num_fences; + u32 max_fences; + struct dma_fence *table[0]; +}; + +struct learning_pkt { + u8 mac_dst[6]; + u8 mac_src[6]; + __be16 type; + u8 padding[46]; +}; + +struct arp_pkt { + __be16 hw_addr_space; + __be16 prot_addr_space; + u8 hw_addr_len; + u8 prot_addr_len; + __be16 op_code; + u8 mac_src[6]; + __be32 ip_src; + u8 mac_dst[6]; + __be32 ip_dst; +} __attribute__((packed)); + +struct alb_walk_data { + struct bonding *bond; + struct slave *slave; + const u8 *mac_addr; + bool strict_match; +}; + +struct mdio_board_entry { + struct list_head list; + struct mdio_board_info board_info; +}; + +struct lan88xx_priv { + int chip_id; + int chip_rev; + __u32 wolopts; +}; + +struct tunnel_msg { + __u8 family; + __u8 flags; + __u16 reserved2; + __u32 ifindex; +}; + +enum { + VNIFILTER_ENTRY_STATS_UNSPEC = 0, + VNIFILTER_ENTRY_STATS_RX_BYTES = 1, + VNIFILTER_ENTRY_STATS_RX_PKTS = 2, + VNIFILTER_ENTRY_STATS_RX_DROPS = 3, + VNIFILTER_ENTRY_STATS_RX_ERRORS = 4, + VNIFILTER_ENTRY_STATS_TX_BYTES = 5, + VNIFILTER_ENTRY_STATS_TX_PKTS = 6, + VNIFILTER_ENTRY_STATS_TX_DROPS = 7, + VNIFILTER_ENTRY_STATS_TX_ERRORS = 8, + VNIFILTER_ENTRY_STATS_PAD = 9, + __VNIFILTER_ENTRY_STATS_MAX = 10, +}; + +enum { + VXLAN_VNIFILTER_ENTRY_UNSPEC = 0, + VXLAN_VNIFILTER_ENTRY_START = 1, + VXLAN_VNIFILTER_ENTRY_END = 2, + VXLAN_VNIFILTER_ENTRY_GROUP = 3, + VXLAN_VNIFILTER_ENTRY_GROUP6 = 4, + VXLAN_VNIFILTER_ENTRY_STATS = 5, + __VXLAN_VNIFILTER_ENTRY_MAX = 6, +}; + +enum { + VXLAN_VNIFILTER_UNSPEC = 0, + VXLAN_VNIFILTER_ENTRY = 1, + __VXLAN_VNIFILTER_MAX = 2, +}; + +enum { + VXLAN_VNI_STATS_RX = 0, + VXLAN_VNI_STATS_RX_DROPS = 1, + VXLAN_VNI_STATS_RX_ERRORS = 2, + VXLAN_VNI_STATS_TX = 3, + VXLAN_VNI_STATS_TX_DROPS = 4, + VXLAN_VNI_STATS_TX_ERRORS = 5, +}; + +struct urb_priv___3 { + struct ed *ed; + u16 length; + u16 td_cnt; + struct list_head pending; + struct td *td[0]; +}; + +typedef struct urb_priv___3 urb_priv_t; + +struct debug_buffer { + ssize_t (*fill_func)(struct debug_buffer *); + struct ohci_hcd *ohci; + struct mutex mutex; + size_t count; + char *page; +}; + +struct iu { + __u8 iu_id; + __u8 rsvd1; + __be16 tag; +}; + +enum { + IU_ID_COMMAND = 1, + IU_ID_STATUS = 3, + IU_ID_RESPONSE = 4, + IU_ID_TASK_MGMT = 5, + IU_ID_READ_READY = 6, + IU_ID_WRITE_READY = 7, +}; + +enum { + RC_TMF_COMPLETE = 0, + RC_INVALID_INFO_UNIT = 2, + RC_TMF_NOT_SUPPORTED = 4, + RC_TMF_FAILED = 5, + RC_TMF_SUCCEEDED = 8, + RC_INCORRECT_LUN = 9, + RC_OVERLAPPED_TAG = 10, +}; + +struct command_iu { + __u8 iu_id; + __u8 rsvd1; + __be16 tag; + __u8 prio_attr; + __u8 rsvd5; + __u8 len; + __u8 rsvd7; + struct scsi_lun lun; + __u8 cdb[16]; +}; + +struct sense_iu { + __u8 iu_id; + __u8 rsvd1; + __be16 tag; + __be16 status_qual; + __u8 status; + __u8 rsvd7[7]; + __be16 len; + __u8 sense[96]; +}; + +struct response_iu { + __u8 iu_id; + __u8 rsvd1; + __be16 tag; + __u8 add_response_info[3]; + __u8 response_code; +}; + +enum { + CMD_PIPE_ID = 1, + STATUS_PIPE_ID = 2, + DATA_IN_PIPE_ID = 3, + DATA_OUT_PIPE_ID = 4, + UAS_SIMPLE_TAG = 0, + UAS_HEAD_TAG = 1, + UAS_ORDERED_TAG = 2, + UAS_ACA = 4, +}; + +struct uas_dev_info { + struct usb_interface *intf; + struct usb_device *udev; + struct usb_anchor cmd_urbs; + struct usb_anchor sense_urbs; + struct usb_anchor data_urbs; + u64 flags; + int qdepth; + int resetting; + unsigned int cmd_pipe; + unsigned int status_pipe; + unsigned int data_in_pipe; + unsigned int data_out_pipe; + unsigned int use_streams: 1; + unsigned int shutdown: 1; + struct scsi_cmnd *cmnd[256]; + spinlock_t lock; + struct work_struct work; + struct work_struct scan_work; +}; + +enum { + SUBMIT_STATUS_URB = 2, + ALLOC_DATA_IN_URB = 4, + SUBMIT_DATA_IN_URB = 8, + ALLOC_DATA_OUT_URB = 16, + SUBMIT_DATA_OUT_URB = 32, + ALLOC_CMD_URB = 64, + SUBMIT_CMD_URB = 128, + COMMAND_INFLIGHT = 256, + DATA_IN_URB_INFLIGHT = 512, + DATA_OUT_URB_INFLIGHT = 1024, + COMMAND_ABORTED = 2048, + IS_IN_WORK_LIST = 4096, +}; + +struct uas_cmd_info { + unsigned int state; + unsigned int uas_tag; + struct urb *cmd_urb; + struct urb *data_in_urb; + struct urb *data_out_urb; +}; + +struct jumpshot_info { + long unsigned int sectors; + long unsigned int ssize; + unsigned char sense_key; + long unsigned int sense_asc; + long unsigned int sense_ascq; +}; + +enum ftdi_sio_baudrate { + ftdi_sio_b300 = 0, + ftdi_sio_b600 = 1, + ftdi_sio_b1200 = 2, + ftdi_sio_b2400 = 3, + ftdi_sio_b4800 = 4, + ftdi_sio_b9600 = 5, + ftdi_sio_b19200 = 6, + ftdi_sio_b38400 = 7, + ftdi_sio_b57600 = 8, + ftdi_sio_b115200 = 9, +}; + +enum ftdi_chip_type { + SIO = 0, + FT232A = 1, + FT232B = 2, + FT2232C = 3, + FT232R = 4, + FT232H = 5, + FT2232H = 6, + FT4232H = 7, + FT4232HA = 8, + FT232HP = 9, + FT233HP = 10, + FT2232HP = 11, + FT2233HP = 12, + FT4232HP = 13, + FT4233HP = 14, + FTX = 15, +}; + +struct ftdi_private { + enum ftdi_chip_type chip_type; + int baud_base; + int custom_divisor; + u16 last_set_data_value; + int flags; + long unsigned int last_dtr_rts; + char prev_status; + char transmit_empty; + u16 channel; + speed_t force_baud; + int force_rtscts; + unsigned int latency; + short unsigned int max_packet_size; + struct mutex cfg_lock; + struct gpio_chip gc; + struct mutex gpio_lock; + bool gpio_registered; + bool gpio_used; + u8 gpio_altfunc; + u8 gpio_output; + u8 gpio_value; +}; + +struct ftdi_quirk { + int (*probe)(struct usb_serial *); + void (*port_probe)(struct ftdi_private *); +}; + +struct kobil_private { + unsigned char buf[300]; + int filled; + int cur_pos; + __u16 device_type; +}; + +struct visor_connection_info { + __le16 num_ports; + struct { + __u8 port_function_id; + __u8 port; + } connections[2]; +}; + +struct palm_ext_connection_info { + __u8 num_ports; + __u8 endpoint_numbers_different; + __le16 reserved1; + struct { + __u32 port_function_id; + __u8 port; + __u8 end_point_info; + __le16 reserved; + } connections[2]; +}; + +struct trace_event_raw_rtc_time_alarm_class { + struct trace_entry ent; + time64_t secs; + int err; + char __data[0]; +}; + +struct trace_event_raw_rtc_irq_set_freq { + struct trace_entry ent; + int freq; + int err; + char __data[0]; +}; + +struct trace_event_raw_rtc_irq_set_state { + struct trace_entry ent; + int enabled; + int err; + char __data[0]; +}; + +struct trace_event_raw_rtc_alarm_irq_enable { + struct trace_entry ent; + unsigned int enabled; + int err; + char __data[0]; +}; + +struct trace_event_raw_rtc_offset_class { + struct trace_entry ent; + long int offset; + int err; + char __data[0]; +}; + +struct trace_event_raw_rtc_timer_class { + struct trace_entry ent; + struct rtc_timer *timer; + ktime_t expires; + ktime_t period; + char __data[0]; +}; + +struct trace_event_data_offsets_rtc_time_alarm_class {}; + +struct trace_event_data_offsets_rtc_irq_set_freq {}; + +struct trace_event_data_offsets_rtc_irq_set_state {}; + +struct trace_event_data_offsets_rtc_alarm_irq_enable {}; + +struct trace_event_data_offsets_rtc_offset_class {}; + +struct trace_event_data_offsets_rtc_timer_class {}; + +typedef void (*btf_trace_rtc_set_time)(void *, time64_t, int); + +typedef void (*btf_trace_rtc_read_time)(void *, time64_t, int); + +typedef void (*btf_trace_rtc_set_alarm)(void *, time64_t, int); + +typedef void (*btf_trace_rtc_read_alarm)(void *, time64_t, int); + +typedef void (*btf_trace_rtc_irq_set_freq)(void *, int, int); + +typedef void (*btf_trace_rtc_irq_set_state)(void *, int, int); + +typedef void (*btf_trace_rtc_alarm_irq_enable)(void *, unsigned int, int); + +typedef void (*btf_trace_rtc_set_offset)(void *, long int, int); + +typedef void (*btf_trace_rtc_read_offset)(void *, long int, int); + +typedef void (*btf_trace_rtc_timer_enqueue)(void *, struct rtc_timer *); + +typedef void (*btf_trace_rtc_timer_dequeue)(void *, struct rtc_timer *); + +typedef void (*btf_trace_rtc_timer_fired)(void *, struct rtc_timer *); + +enum { + none = 0, + day = 1, + month = 2, + year = 3, +}; + +enum { + DM_TIO_INSIDE_DM_IO = 0, + DM_TIO_IS_DUPLICATE_BIO = 1, +}; + +enum { + DM_IO_ACCOUNTED = 0, + DM_IO_WAS_SPLIT = 1, + DM_IO_BLK_STAT = 2, +}; + +struct clone_info { + struct dm_table *map; + struct bio *bio; + struct dm_io *io; + sector_t sector; + unsigned int sector_count; + bool is_abnormal_io: 1; + bool submit_as_polled: 1; +}; + +struct table_device { + struct list_head list; + refcount_t count; + struct dm_dev dm_dev; +}; + +struct dm_pr { + u64 old_key; + u64 new_key; + u32 flags; + bool abort; + bool fail_early; + int ret; + enum pr_type type; + struct pr_keys *read_keys; + struct pr_held_reservation *rsv; +}; + +struct psci_0_1_function_ids { + u32 cpu_suspend; + u32 cpu_on; + u32 cpu_off; + u32 migrate; +}; + +typedef int suspend_state_t; + +struct platform_suspend_ops { + int (*valid)(suspend_state_t); + int (*begin)(suspend_state_t); + int (*prepare)(void); + int (*prepare_late)(void); + int (*enter)(suspend_state_t); + void (*wake)(void); + void (*finish)(void); + bool (*suspend_again)(void); + void (*end)(void); + void (*recover)(void); +}; + +typedef long unsigned int psci_fn(long unsigned int, long unsigned int, long unsigned int, long unsigned int); + +typedef int (*psci_initcall_t)(const struct device_node *); + +struct usage_priority { + __u32 usage; + bool global; + unsigned int slot_overwrite; +}; + +typedef bool (*hid_usage_cmp_t)(struct hid_usage *, unsigned int, unsigned int); + +struct rmem_assigned_device { + struct device *dev; + struct reserved_mem *rmem; + struct list_head list; +}; + +struct csum_state { + __wsum csum; + size_t off; +}; + +struct rtnl_link_stats { + __u32 rx_packets; + __u32 tx_packets; + __u32 rx_bytes; + __u32 tx_bytes; + __u32 rx_errors; + __u32 tx_errors; + __u32 rx_dropped; + __u32 tx_dropped; + __u32 multicast; + __u32 collisions; + __u32 rx_length_errors; + __u32 rx_over_errors; + __u32 rx_crc_errors; + __u32 rx_frame_errors; + __u32 rx_fifo_errors; + __u32 rx_missed_errors; + __u32 tx_aborted_errors; + __u32 tx_carrier_errors; + __u32 tx_fifo_errors; + __u32 tx_heartbeat_errors; + __u32 tx_window_errors; + __u32 rx_compressed; + __u32 tx_compressed; + __u32 rx_nohandler; +}; + +struct rtnl_link_ifmap { + __u64 mem_start; + __u64 mem_end; + __u64 base_addr; + __u16 irq; + __u8 dma; + __u8 port; +}; + +enum { + IFLA_PROTO_DOWN_REASON_UNSPEC = 0, + IFLA_PROTO_DOWN_REASON_MASK = 1, + IFLA_PROTO_DOWN_REASON_VALUE = 2, + __IFLA_PROTO_DOWN_REASON_CNT = 3, + IFLA_PROTO_DOWN_REASON_MAX = 2, +}; + +enum { + IFLA_INFO_UNSPEC = 0, + IFLA_INFO_KIND = 1, + IFLA_INFO_DATA = 2, + IFLA_INFO_XSTATS = 3, + IFLA_INFO_SLAVE_KIND = 4, + IFLA_INFO_SLAVE_DATA = 5, + __IFLA_INFO_MAX = 6, +}; + +enum { + IFLA_VF_INFO_UNSPEC = 0, + IFLA_VF_INFO = 1, + __IFLA_VF_INFO_MAX = 2, +}; + +enum { + IFLA_VF_UNSPEC = 0, + IFLA_VF_MAC = 1, + IFLA_VF_VLAN = 2, + IFLA_VF_TX_RATE = 3, + IFLA_VF_SPOOFCHK = 4, + IFLA_VF_LINK_STATE = 5, + IFLA_VF_RATE = 6, + IFLA_VF_RSS_QUERY_EN = 7, + IFLA_VF_STATS = 8, + IFLA_VF_TRUST = 9, + IFLA_VF_IB_NODE_GUID = 10, + IFLA_VF_IB_PORT_GUID = 11, + IFLA_VF_VLAN_LIST = 12, + IFLA_VF_BROADCAST = 13, + __IFLA_VF_MAX = 14, +}; + +struct ifla_vf_mac { + __u32 vf; + __u8 mac[32]; +}; + +struct ifla_vf_broadcast { + __u8 broadcast[32]; +}; + +struct ifla_vf_vlan { + __u32 vf; + __u32 vlan; + __u32 qos; +}; + +enum { + IFLA_VF_VLAN_INFO_UNSPEC = 0, + IFLA_VF_VLAN_INFO = 1, + __IFLA_VF_VLAN_INFO_MAX = 2, +}; + +struct ifla_vf_vlan_info { + __u32 vf; + __u32 vlan; + __u32 qos; + __be16 vlan_proto; +}; + +struct ifla_vf_tx_rate { + __u32 vf; + __u32 rate; +}; + +struct ifla_vf_rate { + __u32 vf; + __u32 min_tx_rate; + __u32 max_tx_rate; +}; + +struct ifla_vf_spoofchk { + __u32 vf; + __u32 setting; +}; + +struct ifla_vf_link_state { + __u32 vf; + __u32 link_state; +}; + +struct ifla_vf_rss_query_en { + __u32 vf; + __u32 setting; +}; + +enum { + IFLA_VF_STATS_RX_PACKETS = 0, + IFLA_VF_STATS_TX_PACKETS = 1, + IFLA_VF_STATS_RX_BYTES = 2, + IFLA_VF_STATS_TX_BYTES = 3, + IFLA_VF_STATS_BROADCAST = 4, + IFLA_VF_STATS_MULTICAST = 5, + IFLA_VF_STATS_PAD = 6, + IFLA_VF_STATS_RX_DROPPED = 7, + IFLA_VF_STATS_TX_DROPPED = 8, + __IFLA_VF_STATS_MAX = 9, +}; + +struct ifla_vf_trust { + __u32 vf; + __u32 setting; +}; + +enum { + IFLA_VF_PORT_UNSPEC = 0, + IFLA_VF_PORT = 1, + __IFLA_VF_PORT_MAX = 2, +}; + +enum { + IFLA_PORT_UNSPEC = 0, + IFLA_PORT_VF = 1, + IFLA_PORT_PROFILE = 2, + IFLA_PORT_VSI_TYPE = 3, + IFLA_PORT_INSTANCE_UUID = 4, + IFLA_PORT_HOST_UUID = 5, + IFLA_PORT_REQUEST = 6, + IFLA_PORT_RESPONSE = 7, + __IFLA_PORT_MAX = 8, +}; + +struct if_stats_msg { + __u8 family; + __u8 pad1; + __u16 pad2; + __u32 ifindex; + __u32 filter_mask; +}; + +enum { + IFLA_STATS_GETSET_UNSPEC = 0, + IFLA_STATS_GET_FILTERS = 1, + IFLA_STATS_SET_OFFLOAD_XSTATS_L3_STATS = 2, + __IFLA_STATS_GETSET_MAX = 3, +}; + +enum { + IFLA_OFFLOAD_XSTATS_UNSPEC = 0, + IFLA_OFFLOAD_XSTATS_CPU_HIT = 1, + IFLA_OFFLOAD_XSTATS_HW_S_INFO = 2, + IFLA_OFFLOAD_XSTATS_L3_STATS = 3, + __IFLA_OFFLOAD_XSTATS_MAX = 4, +}; + +enum { + IFLA_OFFLOAD_XSTATS_HW_S_INFO_UNSPEC = 0, + IFLA_OFFLOAD_XSTATS_HW_S_INFO_REQUEST = 1, + IFLA_OFFLOAD_XSTATS_HW_S_INFO_USED = 2, + __IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX = 3, +}; + +enum { + XDP_ATTACHED_NONE = 0, + XDP_ATTACHED_DRV = 1, + XDP_ATTACHED_SKB = 2, + XDP_ATTACHED_HW = 3, + XDP_ATTACHED_MULTI = 4, +}; + +enum { + IFLA_XDP_UNSPEC = 0, + IFLA_XDP_FD = 1, + IFLA_XDP_ATTACHED = 2, + IFLA_XDP_FLAGS = 3, + IFLA_XDP_PROG_ID = 4, + IFLA_XDP_DRV_PROG_ID = 5, + IFLA_XDP_SKB_PROG_ID = 6, + IFLA_XDP_HW_PROG_ID = 7, + IFLA_XDP_EXPECTED_FD = 8, + __IFLA_XDP_MAX = 9, +}; + +enum { + IFLA_EVENT_NONE = 0, + IFLA_EVENT_REBOOT = 1, + IFLA_EVENT_FEATURES = 2, + IFLA_EVENT_BONDING_FAILOVER = 3, + IFLA_EVENT_NOTIFY_PEERS = 4, + IFLA_EVENT_IGMP_RESEND = 5, + IFLA_EVENT_BONDING_OPTIONS = 6, +}; + +struct rta_cacheinfo { + __u32 rta_clntref; + __u32 rta_lastuse; + __s32 rta_expires; + __u32 rta_error; + __u32 rta_used; + __u32 rta_id; + __u32 rta_ts; + __u32 rta_tsage; +}; + +enum rtnl_kinds { + RTNL_KIND_NEW = 0, + RTNL_KIND_DEL = 1, + RTNL_KIND_GET = 2, + RTNL_KIND_SET = 3, +}; + +struct rtnl_link { + rtnl_doit_func doit; + rtnl_dumpit_func dumpit; + struct module *owner; + unsigned int flags; + struct callback_head rcu; +}; + +struct rtnl_newlink_tbs { + struct nlattr *tb[66]; + struct nlattr *attr[51]; + struct nlattr *slave_attr[45]; +}; + +struct rtnl_offload_xstats_request_used { + bool request; + bool used; +}; + +struct rtnl_stats_dump_filters { + u32 mask[6]; +}; + +struct rtnl_mdb_dump_ctx { + long int idx; +}; + +typedef int (*pp_nl_fill_cb)(struct sk_buff *, const struct page_pool *, const struct genl_info *); + +struct page_pool_dump_cb { + long unsigned int ifindex; + u32 pp_id; +}; + +struct update_classid_context { + u32 classid; + unsigned int batch; +}; + +struct tc_gact { + __u32 index; + __u32 capab; + int action; + int refcnt; + int bindcnt; +}; + +struct tc_gact_p { + __u16 ptype; + __u16 pval; + int paction; +}; + +enum { + TCA_GACT_UNSPEC = 0, + TCA_GACT_TM = 1, + TCA_GACT_PARMS = 2, + TCA_GACT_PROB = 3, + TCA_GACT_PAD = 4, + __TCA_GACT_MAX = 5, +}; + +struct tcf_gact { + struct tc_action common; + u16 tcfg_ptype; + u16 tcfg_pval; + int tcfg_paction; + atomic_t packets; +}; + +typedef int (*g_rand)(struct tcf_gact *); + +enum { + TC_MQPRIO_HW_OFFLOAD_NONE = 0, + TC_MQPRIO_HW_OFFLOAD_TCS = 1, + __TC_MQPRIO_HW_OFFLOAD_MAX = 2, +}; + +enum { + TC_MQPRIO_MODE_DCB = 0, + TC_MQPRIO_MODE_CHANNEL = 1, + __TC_MQPRIO_MODE_MAX = 2, +}; + +enum { + TC_MQPRIO_SHAPER_DCB = 0, + TC_MQPRIO_SHAPER_BW_RATE = 1, + __TC_MQPRIO_SHAPER_MAX = 2, +}; + +enum { + TCA_MQPRIO_TC_ENTRY_UNSPEC = 0, + TCA_MQPRIO_TC_ENTRY_INDEX = 1, + TCA_MQPRIO_TC_ENTRY_FP = 2, + __TCA_MQPRIO_TC_ENTRY_CNT = 3, + TCA_MQPRIO_TC_ENTRY_MAX = 2, +}; + +enum { + TCA_MQPRIO_UNSPEC = 0, + TCA_MQPRIO_MODE = 1, + TCA_MQPRIO_SHAPER = 2, + TCA_MQPRIO_MIN_RATE64 = 3, + TCA_MQPRIO_MAX_RATE64 = 4, + TCA_MQPRIO_TC_ENTRY = 5, + __TCA_MQPRIO_MAX = 6, +}; + +struct tc_mqprio_caps { + bool validate_queue_counts: 1; +}; + +struct mqprio_sched { + struct Qdisc **qdiscs; + u16 mode; + u16 shaper; + int hw_offload; + u32 flags; + u64 min_rate[16]; + u64 max_rate[16]; + u32 fp[16]; +}; + +enum ethtool_multicast_groups { + ETHNL_MCGRP_MONITOR = 0, +}; + +struct ethnl_dump_ctx { + const struct ethnl_request_ops *ops; + struct ethnl_req_info *req_info; + struct ethnl_reply_data *reply_data; + long unsigned int pos_ifindex; +}; + +typedef void (*ethnl_notify_handler_t)(struct net_device *, unsigned int, const void *); + +enum { + ETHTOOL_A_TUNNEL_UDP_UNSPEC = 0, + ETHTOOL_A_TUNNEL_UDP_TABLE = 1, + __ETHTOOL_A_TUNNEL_UDP_CNT = 2, + ETHTOOL_A_TUNNEL_UDP_MAX = 1, +}; + +struct ethnl_tunnel_info_dump_ctx { + struct ethnl_req_info req_info; + long unsigned int ifindex; +}; + +struct nf_osf_wc { + __u32 wc; + __u32 val; +}; + +struct nf_osf_opt { + __u16 kind; + __u16 length; + struct nf_osf_wc wc; +}; + +struct nf_osf_user_finger { + struct nf_osf_wc wss; + __u8 ttl; + __u8 df; + __u16 ss; + __u16 mss; + __u16 opt_num; + char genre[32]; + char version[32]; + char subtype[32]; + struct nf_osf_opt opt[40]; +}; + +enum iana_options { + OSFOPT_EOL = 0, + OSFOPT_NOP = 1, + OSFOPT_MSS = 2, + OSFOPT_WSO = 3, + OSFOPT_SACKP = 4, + OSFOPT_SACK = 5, + OSFOPT_ECHO = 6, + OSFOPT_ECHOREPLY = 7, + OSFOPT_TS = 8, + OSFOPT_POCP = 9, + OSFOPT_POSP = 10, + OSFOPT_EMPTY = 255, +}; + +enum nf_osf_window_size_options { + OSF_WSS_PLAIN = 0, + OSF_WSS_MSS = 1, + OSF_WSS_MTU = 2, + OSF_WSS_MODULO = 3, + OSF_WSS_MAX = 4, +}; + +enum nf_osf_attr_type { + OSF_ATTR_UNSPEC = 0, + OSF_ATTR_FINGER = 1, + OSF_ATTR_MAX = 2, +}; + +enum nf_osf_msg_types { + OSF_MSG_ADD = 0, + OSF_MSG_REMOVE = 1, + OSF_MSG_MAX = 2, +}; + +enum osf_fmatch_states { + FMATCH_WRONG = 0, + FMATCH_OK = 1, + FMATCH_OPT_WRONG = 2, +}; + +struct nf_osf_finger { + struct callback_head callback_head; + struct list_head finger_entry; + struct nf_osf_user_finger finger; +}; + +struct nf_osf_hdr_ctx { + bool df; + u16 window; + u16 totlen; + const unsigned char *optp; + unsigned int optsize; +}; + +enum nft_objref_attributes { + NFTA_OBJREF_UNSPEC = 0, + NFTA_OBJREF_IMM_TYPE = 1, + NFTA_OBJREF_IMM_NAME = 2, + NFTA_OBJREF_SET_SREG = 3, + NFTA_OBJREF_SET_NAME = 4, + NFTA_OBJREF_SET_ID = 5, + __NFTA_OBJREF_MAX = 6, +}; + +struct nft_objref_map { + struct nft_set *set; + u8 sreg; + struct nft_set_binding binding; +}; + +enum nft_masq_attributes { + NFTA_MASQ_UNSPEC = 0, + NFTA_MASQ_FLAGS = 1, + NFTA_MASQ_REG_PROTO_MIN = 2, + NFTA_MASQ_REG_PROTO_MAX = 3, + __NFTA_MASQ_MAX = 4, +}; + +struct nft_masq { + u32 flags; + u8 sreg_proto_min; + u8 sreg_proto_max; +}; + +struct xt_NFQ_info { + __u16 queuenum; +}; + +struct xt_NFQ_info_v1 { + __u16 queuenum; + __u16 queues_total; +}; + +struct xt_NFQ_info_v2 { + __u16 queuenum; + __u16 queues_total; + __u16 bypass; +}; + +struct xt_NFQ_info_v3 { + __u16 queuenum; + __u16 queues_total; + __u16 flags; +}; + +struct xt_dscp_info { + __u8 dscp; + __u8 invert; +}; + +struct xt_tos_match_info { + __u8 tos_mask; + __u8 tos_value; + __u8 invert; +}; + +enum xt_quota_flags { + XT_QUOTA_INVERT = 1, +}; + +struct xt_quota_priv; + +struct xt_quota_info { + __u32 flags; + __u32 pad; + __u64 quota; + struct xt_quota_priv *master; +}; + +struct xt_quota_priv { + spinlock_t lock; + uint64_t quota; +}; + +struct ip_vs_service_user { + __u16 protocol; + __be32 addr; + __be16 port; + __u32 fwmark; + char sched_name[16]; + unsigned int flags; + unsigned int timeout; + __be32 netmask; +}; + +struct ip_vs_dest_user { + __be32 addr; + __be16 port; + unsigned int conn_flags; + int weight; + __u32 u_threshold; + __u32 l_threshold; +}; + +struct ip_vs_stats_user { + __u32 conns; + __u32 inpkts; + __u32 outpkts; + __u64 inbytes; + __u64 outbytes; + __u32 cps; + __u32 inpps; + __u32 outpps; + __u32 inbps; + __u32 outbps; +}; + +struct ip_vs_getinfo { + unsigned int version; + unsigned int size; + unsigned int num_services; +}; + +struct ip_vs_service_entry { + __u16 protocol; + __be32 addr; + __be16 port; + __u32 fwmark; + char sched_name[16]; + unsigned int flags; + unsigned int timeout; + __be32 netmask; + unsigned int num_dests; + struct ip_vs_stats_user stats; +}; + +struct ip_vs_dest_entry { + __be32 addr; + __be16 port; + unsigned int conn_flags; + int weight; + __u32 u_threshold; + __u32 l_threshold; + __u32 activeconns; + __u32 inactconns; + __u32 persistconns; + struct ip_vs_stats_user stats; +}; + +struct ip_vs_get_dests { + __u16 protocol; + __be32 addr; + __be16 port; + __u32 fwmark; + unsigned int num_dests; + struct ip_vs_dest_entry entrytable[0]; +}; + +struct ip_vs_get_services { + unsigned int num_services; + struct ip_vs_service_entry entrytable[0]; +}; + +struct ip_vs_timeout_user { + int tcp_timeout; + int tcp_fin_timeout; + int udp_timeout; +}; + +struct ip_vs_daemon_user { + int state; + char mcast_ifn[16]; + int syncid; +}; + +struct ip_vs_flags { + __u32 flags; + __u32 mask; +}; + +enum { + IPVS_CMD_UNSPEC = 0, + IPVS_CMD_NEW_SERVICE = 1, + IPVS_CMD_SET_SERVICE = 2, + IPVS_CMD_DEL_SERVICE = 3, + IPVS_CMD_GET_SERVICE = 4, + IPVS_CMD_NEW_DEST = 5, + IPVS_CMD_SET_DEST = 6, + IPVS_CMD_DEL_DEST = 7, + IPVS_CMD_GET_DEST = 8, + IPVS_CMD_NEW_DAEMON = 9, + IPVS_CMD_DEL_DAEMON = 10, + IPVS_CMD_GET_DAEMON = 11, + IPVS_CMD_SET_CONFIG = 12, + IPVS_CMD_GET_CONFIG = 13, + IPVS_CMD_SET_INFO = 14, + IPVS_CMD_GET_INFO = 15, + IPVS_CMD_ZERO = 16, + IPVS_CMD_FLUSH = 17, + __IPVS_CMD_MAX = 18, +}; + +enum { + IPVS_CMD_ATTR_UNSPEC = 0, + IPVS_CMD_ATTR_SERVICE = 1, + IPVS_CMD_ATTR_DEST = 2, + IPVS_CMD_ATTR_DAEMON = 3, + IPVS_CMD_ATTR_TIMEOUT_TCP = 4, + IPVS_CMD_ATTR_TIMEOUT_TCP_FIN = 5, + IPVS_CMD_ATTR_TIMEOUT_UDP = 6, + __IPVS_CMD_ATTR_MAX = 7, +}; + +enum { + IPVS_SVC_ATTR_UNSPEC = 0, + IPVS_SVC_ATTR_AF = 1, + IPVS_SVC_ATTR_PROTOCOL = 2, + IPVS_SVC_ATTR_ADDR = 3, + IPVS_SVC_ATTR_PORT = 4, + IPVS_SVC_ATTR_FWMARK = 5, + IPVS_SVC_ATTR_SCHED_NAME = 6, + IPVS_SVC_ATTR_FLAGS = 7, + IPVS_SVC_ATTR_TIMEOUT = 8, + IPVS_SVC_ATTR_NETMASK = 9, + IPVS_SVC_ATTR_STATS = 10, + IPVS_SVC_ATTR_PE_NAME = 11, + IPVS_SVC_ATTR_STATS64 = 12, + __IPVS_SVC_ATTR_MAX = 13, +}; + +enum { + IPVS_DEST_ATTR_UNSPEC = 0, + IPVS_DEST_ATTR_ADDR = 1, + IPVS_DEST_ATTR_PORT = 2, + IPVS_DEST_ATTR_FWD_METHOD = 3, + IPVS_DEST_ATTR_WEIGHT = 4, + IPVS_DEST_ATTR_U_THRESH = 5, + IPVS_DEST_ATTR_L_THRESH = 6, + IPVS_DEST_ATTR_ACTIVE_CONNS = 7, + IPVS_DEST_ATTR_INACT_CONNS = 8, + IPVS_DEST_ATTR_PERSIST_CONNS = 9, + IPVS_DEST_ATTR_STATS = 10, + IPVS_DEST_ATTR_ADDR_FAMILY = 11, + IPVS_DEST_ATTR_STATS64 = 12, + IPVS_DEST_ATTR_TUN_TYPE = 13, + IPVS_DEST_ATTR_TUN_PORT = 14, + IPVS_DEST_ATTR_TUN_FLAGS = 15, + __IPVS_DEST_ATTR_MAX = 16, +}; + +enum { + IPVS_DAEMON_ATTR_UNSPEC = 0, + IPVS_DAEMON_ATTR_STATE = 1, + IPVS_DAEMON_ATTR_MCAST_IFN = 2, + IPVS_DAEMON_ATTR_SYNC_ID = 3, + IPVS_DAEMON_ATTR_SYNC_MAXLEN = 4, + IPVS_DAEMON_ATTR_MCAST_GROUP = 5, + IPVS_DAEMON_ATTR_MCAST_GROUP6 = 6, + IPVS_DAEMON_ATTR_MCAST_PORT = 7, + IPVS_DAEMON_ATTR_MCAST_TTL = 8, + __IPVS_DAEMON_ATTR_MAX = 9, +}; + +enum { + IPVS_STATS_ATTR_UNSPEC = 0, + IPVS_STATS_ATTR_CONNS = 1, + IPVS_STATS_ATTR_INPKTS = 2, + IPVS_STATS_ATTR_OUTPKTS = 3, + IPVS_STATS_ATTR_INBYTES = 4, + IPVS_STATS_ATTR_OUTBYTES = 5, + IPVS_STATS_ATTR_CPS = 6, + IPVS_STATS_ATTR_INPPS = 7, + IPVS_STATS_ATTR_OUTPPS = 8, + IPVS_STATS_ATTR_INBPS = 9, + IPVS_STATS_ATTR_OUTBPS = 10, + IPVS_STATS_ATTR_PAD = 11, + __IPVS_STATS_ATTR_MAX = 12, +}; + +enum { + IPVS_INFO_ATTR_UNSPEC = 0, + IPVS_INFO_ATTR_VERSION = 1, + IPVS_INFO_ATTR_CONN_TAB_SIZE = 2, + __IPVS_INFO_ATTR_MAX = 3, +}; + +struct ip_vs_service_user_kern { + u16 af; + u16 protocol; + union nf_inet_addr addr; + __be16 port; + u32 fwmark; + char *sched_name; + char *pe_name; + unsigned int flags; + unsigned int timeout; + __be32 netmask; +}; + +struct ip_vs_dest_user_kern { + union nf_inet_addr addr; + __be16 port; + unsigned int conn_flags; + int weight; + u32 u_threshold; + u32 l_threshold; + u16 af; + u16 tun_type; + __be16 tun_port; + u16 tun_flags; +}; + +struct ip_vs_iter { + struct seq_net_private p; + struct hlist_head *table; + int bucket; +}; + +enum { + BPF_WRITE_HDR_TCP_CURRENT_MSS = 1, + BPF_WRITE_HDR_TCP_SYNACK_COOKIE = 2, +}; + +enum tsq_flags { + TSQF_THROTTLED = 1, + TSQF_QUEUED = 2, + TCPF_TSQ_DEFERRED = 4, + TCPF_WRITE_TIMER_DEFERRED = 8, + TCPF_DELACK_TIMER_DEFERRED = 16, + TCPF_MTU_REDUCED_DEFERRED = 32, + TCPF_ACK_DEFERRED = 64, +}; + +struct mptcp_out_options {}; + +struct tcp_out_options { + u16 options; + u16 mss; + u8 ws; + u8 num_sack_blocks; + u8 hash_size; + u8 bpf_opt_len; + __u8 *hash_location; + __u32 tsval; + __u32 tsecr; + struct tcp_fastopen_cookie *fastopen_cookie; + struct mptcp_out_options mptcp; +}; + +struct tsq_tasklet { + struct tasklet_struct tasklet; + struct list_head head; +}; + +struct ipt_ah { + __u32 spis[2]; + __u8 invflags; +}; + +struct frag_queue { + struct inet_frag_queue q; + int iif; + __u16 nhoffset; + u8 ecn; +}; + +enum { + ILA_HOOK_ROUTE_OUTPUT = 0, + ILA_HOOK_ROUTE_INPUT = 1, +}; + +struct ila_lwt { + struct ila_params p; + struct dst_cache dst_cache; + u32 connected: 1; + u32 lwt_output: 1; +}; + +struct nft_dup_ipv6 { + u8 sreg_addr; + u8 sreg_dev; +}; + +struct vti6_net { + struct net_device *fb_tnl_dev; + struct ip6_tnl *tnls_r_l[32]; + struct ip6_tnl *tnls_wc[1]; + struct ip6_tnl **tnls[2]; +}; + +union net_bridge_eht_addr { + __be32 ip4; + struct in6_addr ip6; +}; + +struct net_bridge_group_eht_host { + struct rb_node rb_node; + union net_bridge_eht_addr h_addr; + struct hlist_head set_entries; + unsigned int num_entries; + unsigned char filter_mode; + struct net_bridge_port_group *pg; +}; + +struct net_bridge_group_eht_set; + +struct net_bridge_group_eht_set_entry { + struct rb_node rb_node; + struct hlist_node host_list; + union net_bridge_eht_addr h_addr; + struct timer_list timer; + struct net_bridge *br; + struct net_bridge_group_eht_set *eht_set; + struct net_bridge_group_eht_host *h_parent; + struct net_bridge_mcast_gc mcast_gc; +}; + +struct net_bridge_group_eht_set { + struct rb_node rb_node; + union net_bridge_eht_addr src_addr; + struct rb_root entry_tree; + struct timer_list timer; + struct net_bridge_port_group *pg; + struct net_bridge *br; + struct net_bridge_mcast_gc mcast_gc; +}; + +struct gssp_upcall_data { + struct xdr_netobj in_handle; + struct gssp_in_token in_token; + struct xdr_netobj out_handle; + struct xdr_netobj out_token; + struct rpcsec_gss_oid mech_oid; + struct svc_cred creds; + int found_creds; + int major_status; + int minor_status; +}; + +enum { + GSSX_NULL = 0, + GSSX_INDICATE_MECHS = 1, + GSSX_GET_CALL_CONTEXT = 2, + GSSX_IMPORT_AND_CANON_NAME = 3, + GSSX_EXPORT_CRED = 4, + GSSX_IMPORT_CRED = 5, + GSSX_ACQUIRE_CRED = 6, + GSSX_STORE_CRED = 7, + GSSX_INIT_SEC_CONTEXT = 8, + GSSX_ACCEPT_SEC_CONTEXT = 9, + GSSX_RELEASE_HANDLE = 10, + GSSX_GET_MIC = 11, + GSSX_VERIFY = 12, + GSSX_WRAP = 13, + GSSX_UNWRAP = 14, + GSSX_WRAP_SIZE_LIMIT = 15, +}; + +enum { + SCTP_DEFAULT_OUTSTREAMS = 10, +}; + +enum { + SCTP_DEFAULT_INSTREAMS = 65535, +}; + +struct errormap { + char *name; + int val; + int namelen; + struct hlist_node list; +}; + +struct ovs_action_push_eth { + struct ovs_key_ethernet addresses; +}; + +struct deferred_action { + struct sk_buff *skb; + const struct nlattr *actions; + int actions_len; + struct sw_flow_key pkt_key; +}; + +struct ovs_frag_data { + long unsigned int dst; + struct vport *vport; + struct ovs_skb_cb cb; + __be16 inner_protocol; + u16 network_offset; + u16 vlan_tci; + __be16 vlan_proto; + unsigned int l2_len; + u8 mac_proto; + u8 l2_data[30]; +}; + +struct action_fifo { + int head; + int tail; + struct deferred_action fifo[10]; +}; + +struct action_flow_keys { + struct sw_flow_key key[3]; +}; + +enum virtio_vsock_event_id { + VIRTIO_VSOCK_EVENT_TRANSPORT_RESET = 0, +}; + +struct virtio_vsock_event { + __le32 id; +}; + +struct virtio_vsock { + struct virtio_device *vdev; + struct virtqueue *vqs[3]; + struct work_struct tx_work; + struct work_struct rx_work; + struct work_struct event_work; + struct mutex tx_lock; + bool tx_run; + long: 0; + struct work_struct send_pkt_work; + struct sk_buff_head send_pkt_queue; + atomic_t queued_replies; + long: 0; + struct mutex rx_lock; + bool rx_run; + int: 0; + int rx_buf_nr; + int rx_buf_max_nr; + long: 0; + struct mutex event_lock; + bool event_run; + struct virtio_vsock_event event_list[8]; + int: 0; + u32 guest_cid; + bool seqpacket_allow; + long: 0; + struct scatterlist *out_sgs[18]; + struct scatterlist out_bufs[18]; +} __attribute__((packed)); + +struct handshake_net { + spinlock_t hn_lock; + int hn_pending; + int hn_pending_max; + struct list_head hn_requests; + long unsigned int hn_flags; +}; + +enum hn_flags_bits { + HANDSHAKE_F_NET_DRAINING = 0, +}; + +struct wchan_info { + long unsigned int pc; + int count; +}; + +struct prctl_mm_map { + __u64 start_code; + __u64 end_code; + __u64 start_data; + __u64 end_data; + __u64 start_brk; + __u64 brk; + __u64 start_stack; + __u64 arg_start; + __u64 arg_end; + __u64 env_start; + __u64 env_end; + __u64 *auxv; + __u32 auxv_size; + __u32 exe_fd; +}; + +struct rlimit64 { + __u64 rlim_cur; + __u64 rlim_max; +}; + +struct tms { + __kernel_clock_t tms_utime; + __kernel_clock_t tms_stime; + __kernel_clock_t tms_cutime; + __kernel_clock_t tms_cstime; +}; + +struct getcpu_cache { + long unsigned int blob[16]; +}; + +enum { + AFFINITY = 0, + AFFINITY_LIST = 1, + EFFECTIVE = 2, + EFFECTIVE_LIST = 3, +}; + +struct modversion_info { + long unsigned int crc; + char name[56]; +}; + +enum freezer_state_flags { + CGROUP_FREEZER_ONLINE = 1, + CGROUP_FREEZING_SELF = 2, + CGROUP_FREEZING_PARENT = 4, + CGROUP_FROZEN = 8, + CGROUP_FREEZING = 6, +}; + +struct freezer { + struct cgroup_subsys_state css; + unsigned int state; +}; + +struct audit_rule_data { + __u32 flags; + __u32 action; + __u32 field_count; + __u32 mask[64]; + __u32 fields[64]; + __u32 values[64]; + __u32 fieldflags[64]; + __u32 buflen; + char buf[0]; +}; + +struct filter_pred; + +struct prog_entry { + int target; + int when_to_branch; + struct filter_pred *pred; +}; + +struct regex; + +typedef int (*regex_match_func)(char *, struct regex *, int); + +struct regex { + char pattern[256]; + int len; + int field_len; + regex_match_func match; +}; + +enum filter_op_ids { + OP_GLOB = 0, + OP_NE = 1, + OP_EQ = 2, + OP_LE = 3, + OP_LT = 4, + OP_GE = 5, + OP_GT = 6, + OP_BAND = 7, + OP_MAX = 8, +}; + +enum filter_pred_fn { + FILTER_PRED_FN_NOP = 0, + FILTER_PRED_FN_64 = 1, + FILTER_PRED_FN_64_CPUMASK = 2, + FILTER_PRED_FN_S64 = 3, + FILTER_PRED_FN_U64 = 4, + FILTER_PRED_FN_32 = 5, + FILTER_PRED_FN_32_CPUMASK = 6, + FILTER_PRED_FN_S32 = 7, + FILTER_PRED_FN_U32 = 8, + FILTER_PRED_FN_16 = 9, + FILTER_PRED_FN_16_CPUMASK = 10, + FILTER_PRED_FN_S16 = 11, + FILTER_PRED_FN_U16 = 12, + FILTER_PRED_FN_8 = 13, + FILTER_PRED_FN_8_CPUMASK = 14, + FILTER_PRED_FN_S8 = 15, + FILTER_PRED_FN_U8 = 16, + FILTER_PRED_FN_COMM = 17, + FILTER_PRED_FN_STRING = 18, + FILTER_PRED_FN_STRLOC = 19, + FILTER_PRED_FN_STRRELLOC = 20, + FILTER_PRED_FN_PCHAR_USER = 21, + FILTER_PRED_FN_PCHAR = 22, + FILTER_PRED_FN_CPU = 23, + FILTER_PRED_FN_CPU_CPUMASK = 24, + FILTER_PRED_FN_CPUMASK = 25, + FILTER_PRED_FN_CPUMASK_CPU = 26, + FILTER_PRED_FN_FUNCTION = 27, + FILTER_PRED_FN_ = 28, + FILTER_PRED_TEST_VISITED = 29, +}; + +struct filter_pred { + struct regex *regex; + struct cpumask *mask; + short unsigned int *ops; + struct ftrace_event_field *field; + u64 val; + u64 val2; + enum filter_pred_fn fn_num; + int offset; + int not; + int op; +}; + +enum { + FILT_ERR_NONE = 0, + FILT_ERR_INVALID_OP = 1, + FILT_ERR_TOO_MANY_OPEN = 2, + FILT_ERR_TOO_MANY_CLOSE = 3, + FILT_ERR_MISSING_QUOTE = 4, + FILT_ERR_MISSING_BRACE_OPEN = 5, + FILT_ERR_MISSING_BRACE_CLOSE = 6, + FILT_ERR_OPERAND_TOO_LONG = 7, + FILT_ERR_EXPECT_STRING = 8, + FILT_ERR_EXPECT_DIGIT = 9, + FILT_ERR_ILLEGAL_FIELD_OP = 10, + FILT_ERR_FIELD_NOT_FOUND = 11, + FILT_ERR_ILLEGAL_INTVAL = 12, + FILT_ERR_BAD_SUBSYS_FILTER = 13, + FILT_ERR_TOO_MANY_PREDS = 14, + FILT_ERR_INVALID_FILTER = 15, + FILT_ERR_INVALID_CPULIST = 16, + FILT_ERR_IP_FIELD_ONLY = 17, + FILT_ERR_INVALID_VALUE = 18, + FILT_ERR_NO_FUNCTION = 19, + FILT_ERR_ERRNO = 20, + FILT_ERR_NO_FILTER = 21, +}; + +struct filter_parse_error { + int lasterr; + int lasterr_pos; +}; + +typedef int (*parse_pred_fn)(const char *, void *, int, struct filter_parse_error *, struct filter_pred **); + +enum { + INVERT = 1, + PROCESS_AND = 2, + PROCESS_OR = 4, +}; + +struct ustring_buffer { + char buffer[1024]; +}; + +enum { + TOO_MANY_CLOSE = -1, + TOO_MANY_OPEN = -2, + MISSING_QUOTE = -3, +}; + +struct filter_list { + struct list_head list; + struct event_filter *filter; +}; + +struct function_filter_data { + struct ftrace_ops *ops; + int first_filter; + int first_notrace; +}; + +struct bpf_iter_num { + __u64 __opaque[1]; +}; + +struct bpf_iter_target_info { + struct list_head list; + const struct bpf_iter_reg *reg_info; + u32 btf_id; +}; + +struct bpf_iter_link { + struct bpf_link link; + struct bpf_iter_aux_info aux; + struct bpf_iter_target_info *tinfo; +}; + +struct bpf_iter_priv_data { + struct bpf_iter_target_info *tinfo; + const struct bpf_iter_seq_info *seq_info; + struct bpf_prog *prog; + u64 session_id; + u64 seq_num; + bool done_stop; + long: 0; + u8 target_private[0]; +}; + +typedef u64 (*btf_bpf_for_each_map_elem)(struct bpf_map *, void *, void *, u64); + +typedef u64 (*btf_bpf_loop)(u32, void *, void *, u64); + +struct bpf_iter_num_kern { + int cur; + int end; +}; + +struct bpf_iter__cgroup { + union { + struct bpf_iter_meta *meta; + }; + union { + struct cgroup *cgroup; + }; +}; + +struct cgroup_iter_priv { + struct cgroup_subsys_state *start_css; + bool visited_all; + bool terminate; + int order; +}; + +struct bpf_iter_css { + __u64 __opaque[3]; +}; + +struct bpf_iter_css_kern { + struct cgroup_subsys_state *start; + struct cgroup_subsys_state *pos; + unsigned int flags; +}; + +struct bp_slots_histogram { + atomic_t *count; +}; + +struct bp_cpuinfo { + unsigned int cpu_pinned; + struct bp_slots_histogram tsk_pinned; +}; + +struct trace_event_raw_mm_lru_insertion { + struct trace_entry ent; + struct folio *folio; + long unsigned int pfn; + enum lru_list lru; + long unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_mm_lru_activate { + struct trace_entry ent; + struct folio *folio; + long unsigned int pfn; + char __data[0]; +}; + +struct trace_event_data_offsets_mm_lru_insertion {}; + +struct trace_event_data_offsets_mm_lru_activate {}; + +typedef void (*btf_trace_mm_lru_insertion)(void *, struct folio *); + +typedef void (*btf_trace_mm_lru_activate)(void *, struct folio *); + +struct cpu_fbatches { + local_lock_t lock; + struct folio_batch lru_add; + struct folio_batch lru_deactivate_file; + struct folio_batch lru_deactivate; + struct folio_batch lru_lazyfree; + struct folio_batch lru_activate; + local_lock_t lock_irq; + struct folio_batch lru_move_tail; +}; + +typedef void (*move_fn_t)(struct lruvec *, struct folio *); + +struct trace_event_raw_mm_compaction_isolate_template { + struct trace_entry ent; + long unsigned int start_pfn; + long unsigned int end_pfn; + long unsigned int nr_scanned; + long unsigned int nr_taken; + char __data[0]; +}; + +struct trace_event_raw_mm_compaction_migratepages { + struct trace_entry ent; + long unsigned int nr_migrated; + long unsigned int nr_failed; + char __data[0]; +}; + +struct trace_event_raw_mm_compaction_begin { + struct trace_entry ent; + long unsigned int zone_start; + long unsigned int migrate_pfn; + long unsigned int free_pfn; + long unsigned int zone_end; + bool sync; + char __data[0]; +}; + +struct trace_event_raw_mm_compaction_end { + struct trace_entry ent; + long unsigned int zone_start; + long unsigned int migrate_pfn; + long unsigned int free_pfn; + long unsigned int zone_end; + bool sync; + int status; + char __data[0]; +}; + +struct trace_event_raw_mm_compaction_try_to_compact_pages { + struct trace_entry ent; + int order; + long unsigned int gfp_mask; + int prio; + char __data[0]; +}; + +struct trace_event_raw_mm_compaction_suitable_template { + struct trace_entry ent; + int nid; + enum zone_type idx; + int order; + int ret; + char __data[0]; +}; + +struct trace_event_raw_mm_compaction_defer_template { + struct trace_entry ent; + int nid; + enum zone_type idx; + int order; + unsigned int considered; + unsigned int defer_shift; + int order_failed; + char __data[0]; +}; + +struct trace_event_raw_mm_compaction_kcompactd_sleep { + struct trace_entry ent; + int nid; + char __data[0]; +}; + +struct trace_event_raw_kcompactd_wake_template { + struct trace_entry ent; + int nid; + int order; + enum zone_type highest_zoneidx; + char __data[0]; +}; + +struct trace_event_data_offsets_mm_compaction_isolate_template {}; + +struct trace_event_data_offsets_mm_compaction_migratepages {}; + +struct trace_event_data_offsets_mm_compaction_begin {}; + +struct trace_event_data_offsets_mm_compaction_end {}; + +struct trace_event_data_offsets_mm_compaction_try_to_compact_pages {}; + +struct trace_event_data_offsets_mm_compaction_suitable_template {}; + +struct trace_event_data_offsets_mm_compaction_defer_template {}; + +struct trace_event_data_offsets_mm_compaction_kcompactd_sleep {}; + +struct trace_event_data_offsets_kcompactd_wake_template {}; + +typedef void (*btf_trace_mm_compaction_isolate_migratepages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + +typedef void (*btf_trace_mm_compaction_isolate_freepages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + +typedef void (*btf_trace_mm_compaction_fast_isolate_freepages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + +typedef void (*btf_trace_mm_compaction_migratepages)(void *, unsigned int, unsigned int); + +typedef void (*btf_trace_mm_compaction_begin)(void *, struct compact_control *, long unsigned int, long unsigned int, bool); + +typedef void (*btf_trace_mm_compaction_end)(void *, struct compact_control *, long unsigned int, long unsigned int, bool, int); + +typedef void (*btf_trace_mm_compaction_try_to_compact_pages)(void *, int, gfp_t, int); + +typedef void (*btf_trace_mm_compaction_finished)(void *, struct zone *, int, int); + +typedef void (*btf_trace_mm_compaction_suitable)(void *, struct zone *, int, int); + +typedef void (*btf_trace_mm_compaction_deferred)(void *, struct zone *, int); + +typedef void (*btf_trace_mm_compaction_defer_compaction)(void *, struct zone *, int); + +typedef void (*btf_trace_mm_compaction_defer_reset)(void *, struct zone *, int); + +typedef void (*btf_trace_mm_compaction_kcompactd_sleep)(void *, int); + +typedef void (*btf_trace_mm_compaction_wakeup_kcompactd)(void *, int, int, enum zone_type); + +typedef void (*btf_trace_mm_compaction_kcompactd_wake)(void *, int, int, enum zone_type); + +typedef enum { + ISOLATE_ABORT = 0, + ISOLATE_NONE = 1, + ISOLATE_SUCCESS = 2, +} isolate_migrate_t; + +union swap_header { + struct { + char reserved[4086]; + char magic[10]; + } magic; + struct { + char bootbits[1024]; + __u32 version; + __u32 last_page; + __u32 nr_badpages; + unsigned char sws_uuid[16]; + unsigned char sws_volume[16]; + __u32 padding[117]; + __u32 badpages[1]; + } info; +}; + +struct swap_extent { + struct rb_node rb_node; + long unsigned int start_page; + long unsigned int nr_pages; + sector_t start_block; +}; + +struct mnt_idmap { + struct uid_gid_map uid_map; + struct uid_gid_map gid_map; + refcount_t count; +}; + +struct kioctx; + +struct kioctx_table { + struct callback_head rcu; + unsigned int nr; + struct kioctx *table[0]; +}; + +typedef __kernel_ulong_t aio_context_t; + +enum { + IOCB_CMD_PREAD = 0, + IOCB_CMD_PWRITE = 1, + IOCB_CMD_FSYNC = 2, + IOCB_CMD_FDSYNC = 3, + IOCB_CMD_POLL = 5, + IOCB_CMD_NOOP = 6, + IOCB_CMD_PREADV = 7, + IOCB_CMD_PWRITEV = 8, +}; + +struct io_event { + __u64 data; + __u64 obj; + __s64 res; + __s64 res2; +}; + +struct iocb { + __u64 aio_data; + __u32 aio_key; + __kernel_rwf_t aio_rw_flags; + __u16 aio_lio_opcode; + __s16 aio_reqprio; + __u32 aio_fildes; + __u64 aio_buf; + __u64 aio_nbytes; + __s64 aio_offset; + __u64 aio_reserved2; + __u32 aio_flags; + __u32 aio_resfd; +}; + +typedef int kiocb_cancel_fn(struct kiocb *); + +struct aio_ring { + unsigned int id; + unsigned int nr; + unsigned int head; + unsigned int tail; + unsigned int magic; + unsigned int compat_features; + unsigned int incompat_features; + unsigned int header_length; + struct io_event io_events[0]; +}; + +struct kioctx_cpu; + +struct ctx_rq_wait; + +struct kioctx { + struct percpu_ref users; + atomic_t dead; + struct percpu_ref reqs; + long unsigned int user_id; + struct kioctx_cpu *cpu; + unsigned int req_batch; + unsigned int max_reqs; + unsigned int nr_events; + long unsigned int mmap_base; + long unsigned int mmap_size; + struct folio **ring_folios; + long int nr_pages; + struct rcu_work free_rwork; + struct ctx_rq_wait *rq_wait; + long: 64; + long: 64; + long: 64; + struct { + atomic_t reqs_available; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + }; + struct { + spinlock_t ctx_lock; + struct list_head active_reqs; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + }; + struct { + struct mutex ring_lock; + wait_queue_head_t wait; + long: 64; + }; + struct { + unsigned int tail; + unsigned int completed_events; + spinlock_t completion_lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + }; + struct folio *internal_folios[8]; + struct file *aio_ring_file; + unsigned int id; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct kioctx_cpu { + unsigned int reqs_available; +}; + +struct ctx_rq_wait { + struct completion comp; + atomic_t count; +}; + +struct fsync_iocb { + struct file *file; + struct work_struct work; + bool datasync; + struct cred *creds; +}; + +struct poll_iocb { + struct file *file; + struct wait_queue_head *head; + __poll_t events; + bool cancelled; + bool work_scheduled; + bool work_need_resched; + struct wait_queue_entry wait; + struct work_struct work; +}; + +struct aio_kiocb { + union { + struct file *ki_filp; + struct kiocb rw; + struct fsync_iocb fsync; + struct poll_iocb poll; + }; + struct kioctx *ki_ctx; + kiocb_cancel_fn *ki_cancel; + struct io_event ki_res; + struct list_head ki_list; + refcount_t ki_refcnt; + struct eventfd_ctx *ki_eventfd; +}; + +struct aio_waiter { + struct wait_queue_entry w; + size_t min_nr; +}; + +struct aio_poll_table { + struct poll_table_struct pt; + struct aio_kiocb *iocb; + bool queued; + int error; +}; + +struct __aio_sigset { + const sigset_t *sigmask; + size_t sigsetsize; +}; + +struct pts_mount_opts { + int setuid; + int setgid; + kuid_t uid; + kgid_t gid; + umode_t mode; + umode_t ptmxmode; + int reserve; + int max; +}; + +enum { + Opt_uid___11 = 0, + Opt_gid___12 = 1, + Opt_mode___8 = 2, + Opt_ptmxmode = 3, + Opt_newinstance = 4, + Opt_max = 5, + Opt_err___16 = 6, +}; + +struct pts_fs_info { + struct ida allocated_ptys; + struct pts_mount_opts mount_opts; + struct super_block *sb; + struct dentry *ptmx_dentry; +}; + +struct fsuuid { + __u32 fsu_len; + __u32 fsu_flags; + __u8 fsu_uuid[0]; +}; + +struct move_extent { + __u32 reserved; + __u32 donor_fd; + __u64 orig_start; + __u64 donor_start; + __u64 len; + __u64 moved_len; +}; + +struct ext4_new_group_input { + __u32 group; + __u64 block_bitmap; + __u64 inode_bitmap; + __u64 inode_table; + __u32 blocks_count; + __u16 reserved_blocks; + __u16 unused; +}; + +typedef void ext4_update_sb_callback(struct ext4_super_block *, const void *); + +struct getfsmap_info { + struct super_block *gi_sb; + struct fsmap_head *gi_data; + unsigned int gi_idx; + __u32 gi_last_flags; +}; + +struct workspace___3 { + void *mem; + size_t mem_size; + size_t window_size; +}; + +enum exfat_validate_dentry_mode { + ES_MODE_GET_FILE_ENTRY = 0, + ES_MODE_GET_STRM_ENTRY = 1, + ES_MODE_GET_NAME_ENTRY = 2, + ES_MODE_GET_CRITICAL_SEC_ENTRY = 3, + ES_MODE_GET_BENIGN_SEC_ENTRY = 4, +}; + +enum { + DIRENT_STEP_FILE = 0, + DIRENT_STEP_STRM = 1, + DIRENT_STEP_NAME = 2, + DIRENT_STEP_SECD = 3, +}; + +struct nfs2_fh { + char data[32]; +}; + +struct nfs3_fh { + short unsigned int size; + unsigned char data[64]; +}; + +struct nfs_mount_data { + int version; + int fd; + struct nfs2_fh old_root; + int flags; + int rsize; + int wsize; + int timeo; + int retrans; + int acregmin; + int acregmax; + int acdirmin; + int acdirmax; + struct sockaddr_in addr; + char hostname[256]; + int namlen; + unsigned int bsize; + struct nfs3_fh root; + int pseudoflavor; + char context[257]; +}; + +struct nfs_string { + unsigned int len; + const char *data; +}; + +struct nfs4_mount_data { + int version; + int flags; + int rsize; + int wsize; + int timeo; + int retrans; + int acregmin; + int acregmax; + int acdirmin; + int acdirmax; + struct nfs_string client_addr; + struct nfs_string mnt_path; + struct nfs_string hostname; + unsigned int host_addrlen; + struct sockaddr *host_addr; + int proto; + int auth_flavourlen; + int *auth_flavours; +}; + +enum nfs_param { + Opt_ac = 0, + Opt_acdirmax___2 = 1, + Opt_acdirmin = 2, + Opt_acl___7 = 3, + Opt_acregmax___2 = 4, + Opt_acregmin = 5, + Opt_actimeo___2 = 6, + Opt_addr = 7, + Opt_bg = 8, + Opt_bsize = 9, + Opt_clientaddr = 10, + Opt_cto = 11, + Opt_alignwrite = 12, + Opt_fg = 13, + Opt_fscache = 14, + Opt_fscache_flag = 15, + Opt_hard___2 = 16, + Opt_intr___2 = 17, + Opt_local_lock = 18, + Opt_lock = 19, + Opt_lookupcache = 20, + Opt_migration = 21, + Opt_minorversion = 22, + Opt_mountaddr = 23, + Opt_mounthost = 24, + Opt_mountport = 25, + Opt_mountproto = 26, + Opt_mountvers = 27, + Opt_namelen = 28, + Opt_nconnect = 29, + Opt_max_connect = 30, + Opt_port___3 = 31, + Opt_posix = 32, + Opt_proto = 33, + Opt_rdirplus = 34, + Opt_rdma___2 = 35, + Opt_resvport = 36, + Opt_retrans___2 = 37, + Opt_retry = 38, + Opt_rsize___2 = 39, + Opt_sec___2 = 40, + Opt_sharecache = 41, + Opt_sloppy___2 = 42, + Opt_soft___2 = 43, + Opt_softerr = 44, + Opt_softreval = 45, + Opt_source___3 = 46, + Opt_tcp = 47, + Opt_timeo = 48, + Opt_trunkdiscovery = 49, + Opt_udp = 50, + Opt_v = 51, + Opt_vers___2 = 52, + Opt_wsize___2 = 53, + Opt_write = 54, + Opt_xprtsec = 55, +}; + +enum { + Opt_local_lock_all = 0, + Opt_local_lock_flock = 1, + Opt_local_lock_none = 2, + Opt_local_lock_posix = 3, +}; + +enum { + Opt_lookupcache_all = 0, + Opt_lookupcache_none = 1, + Opt_lookupcache_positive = 2, +}; + +enum { + Opt_write_lazy = 0, + Opt_write_eager = 1, + Opt_write_wait = 2, +}; + +enum { + Opt_vers_2 = 0, + Opt_vers_3 = 1, + Opt_vers_4 = 2, + Opt_vers_4_0 = 3, + Opt_vers_4_1 = 4, + Opt_vers_4_2 = 5, +}; + +enum { + Opt_xprt_rdma = 0, + Opt_xprt_rdma6 = 1, + Opt_xprt_tcp = 2, + Opt_xprt_tcp6 = 3, + Opt_xprt_udp = 4, + Opt_xprt_udp6 = 5, + nr__Opt_xprt = 6, +}; + +enum { + Opt_sec_krb5___2 = 0, + Opt_sec_krb5i___2 = 1, + Opt_sec_krb5p___2 = 2, + Opt_sec_lkey = 3, + Opt_sec_lkeyi = 4, + Opt_sec_lkeyp = 5, + Opt_sec_none___2 = 6, + Opt_sec_spkm = 7, + Opt_sec_spkmi = 8, + Opt_sec_spkmp = 9, + Opt_sec_sys = 10, + nr__Opt_sec = 11, +}; + +enum { + Opt_xprtsec_none = 0, + Opt_xprtsec_tls = 1, + Opt_xprtsec_mtls = 2, + nr__Opt_xprtsec = 3, +}; + +struct compat_nfs_string { + compat_uint_t len; + compat_uptr_t data; +}; + +struct compat_nfs4_mount_data_v1 { + compat_int_t version; + compat_int_t flags; + compat_int_t rsize; + compat_int_t wsize; + compat_int_t timeo; + compat_int_t retrans; + compat_int_t acregmin; + compat_int_t acregmax; + compat_int_t acdirmin; + compat_int_t acdirmax; + struct compat_nfs_string client_addr; + struct compat_nfs_string mnt_path; + struct compat_nfs_string hostname; + compat_uint_t host_addrlen; + compat_uptr_t host_addr; + compat_int_t proto; + compat_int_t auth_flavourlen; + compat_uptr_t auth_flavours; +}; + +struct nfs4_xattr_bucket { + spinlock_t lock; + struct hlist_head hlist; + struct nfs4_xattr_cache *cache; + bool draining; +}; + +struct nfs4_xattr_entry; + +struct nfs4_xattr_cache { + struct kref ref; + struct nfs4_xattr_bucket buckets[64]; + struct list_head lru; + struct list_head dispose; + atomic_long_t nent; + spinlock_t listxattr_lock; + struct inode *inode; + struct nfs4_xattr_entry *listxattr; +}; + +struct nfs4_xattr_entry { + struct kref ref; + struct hlist_node hnode; + struct list_head lru; + struct list_head dispose; + char *xattr_name; + void *xattr_value; + size_t xattr_size; + struct nfs4_xattr_bucket *bucket; + uint32_t flags; +}; + +typedef long unsigned int (*count_objects_cb)(struct shrinker *, struct shrink_control *); + +typedef long unsigned int (*scan_objects_cb)(struct shrinker *, struct shrink_control *); + +struct trace_event_raw_nfsd_xdr_err_class { + struct trace_entry ent; + unsigned int netns_ino; + u32 xid; + u32 vers; + u32 proc; + u32 __data_loc_server; + u32 __data_loc_client; + char __data[0]; +}; + +struct trace_event_raw_nfsd_compound { + struct trace_entry ent; + u32 xid; + u32 opcnt; + u32 __data_loc_tag; + char __data[0]; +}; + +struct trace_event_raw_nfsd_compound_status { + struct trace_entry ent; + u32 args_opcnt; + u32 resp_opcnt; + int status; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfsd_compound_decode_err { + struct trace_entry ent; + unsigned int netns_ino; + u32 xid; + long unsigned int status; + unsigned char server[28]; + unsigned char client[28]; + u32 args_opcnt; + u32 resp_opcnt; + u32 opnum; + char __data[0]; +}; + +struct trace_event_raw_nfsd_compound_encode_err { + struct trace_entry ent; + unsigned int netns_ino; + u32 xid; + long unsigned int status; + unsigned char server[28]; + unsigned char client[28]; + u32 opnum; + char __data[0]; +}; + +struct trace_event_raw_nfsd_fh_verify { + struct trace_entry ent; + unsigned int netns_ino; + u32 __data_loc_server; + u32 __data_loc_client; + u32 xid; + u32 fh_hash; + const void *inode; + long unsigned int type; + long unsigned int access; + char __data[0]; +}; + +struct trace_event_raw_nfsd_fh_verify_err { + struct trace_entry ent; + unsigned int netns_ino; + u32 __data_loc_server; + u32 __data_loc_client; + u32 xid; + u32 fh_hash; + const void *inode; + long unsigned int type; + long unsigned int access; + int error; + char __data[0]; +}; + +struct trace_event_raw_nfsd_fh_err_class { + struct trace_entry ent; + u32 xid; + u32 fh_hash; + int status; + char __data[0]; +}; + +struct trace_event_raw_nfsd_exp_find_key { + struct trace_entry ent; + int fsidtype; + u32 fsid[6]; + u32 __data_loc_auth_domain; + int status; + char __data[0]; +}; + +struct trace_event_raw_nfsd_expkey_update { + struct trace_entry ent; + int fsidtype; + u32 fsid[6]; + u32 __data_loc_auth_domain; + u32 __data_loc_path; + bool cache; + char __data[0]; +}; + +struct trace_event_raw_nfsd_exp_get_by_name { + struct trace_entry ent; + u32 __data_loc_path; + u32 __data_loc_auth_domain; + int status; + char __data[0]; +}; + +struct trace_event_raw_nfsd_export_update { + struct trace_entry ent; + u32 __data_loc_path; + u32 __data_loc_auth_domain; + bool cache; + char __data[0]; +}; + +struct trace_event_raw_nfsd_io_class { + struct trace_entry ent; + u32 xid; + u32 fh_hash; + u64 offset; + u32 len; + char __data[0]; +}; + +struct trace_event_raw_nfsd_err_class { + struct trace_entry ent; + u32 xid; + u32 fh_hash; + loff_t offset; + int status; + char __data[0]; +}; + +struct trace_event_raw_nfsd_dirent { + struct trace_entry ent; + u32 fh_hash; + u64 ino; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfsd_copy_err_class { + struct trace_entry ent; + u32 xid; + u32 src_fh_hash; + loff_t src_offset; + u32 dst_fh_hash; + loff_t dst_offset; + u64 count; + int status; + char __data[0]; +}; + +struct trace_event_raw_nfsd_delegret_wakeup { + struct trace_entry ent; + u32 xid; + const void *inode; + long int timeo; + char __data[0]; +}; + +struct trace_event_raw_nfsd_stateid_class { + struct trace_entry ent; + u32 cl_boot; + u32 cl_id; + u32 si_id; + u32 si_generation; + char __data[0]; +}; + +struct trace_event_raw_nfsd_stateseqid_class { + struct trace_entry ent; + u32 seqid; + u32 cl_boot; + u32 cl_id; + u32 si_id; + u32 si_generation; + char __data[0]; +}; + +struct trace_event_raw_nfsd_stid_class { + struct trace_entry ent; + long unsigned int sc_type; + long unsigned int sc_status; + int sc_count; + u32 cl_boot; + u32 cl_id; + u32 si_id; + u32 si_generation; + char __data[0]; +}; + +struct trace_event_raw_nfsd_stateowner_replay { + struct trace_entry ent; + long unsigned int status; + u32 opnum; + char __data[0]; +}; + +struct trace_event_raw_nfsd_seq4_status { + struct trace_entry ent; + unsigned int netns_ino; + u32 xid; + u32 cl_boot; + u32 cl_id; + u32 seqno; + u32 reserved; + long unsigned int status_flags; + char __data[0]; +}; + +struct trace_event_raw_nfsd_cs_slot_class { + struct trace_entry ent; + u32 seqid; + u32 slot_seqid; + u32 cl_boot; + u32 cl_id; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_nfsd_slot_seqid_sequence { + struct trace_entry ent; + u32 seqid; + u32 slot_seqid; + u32 cl_boot; + u32 cl_id; + u32 __data_loc_addr; + bool in_use; + char __data[0]; +}; + +struct trace_event_raw_nfsd_clientid_class { + struct trace_entry ent; + u32 cl_boot; + u32 cl_id; + char __data[0]; +}; + +struct trace_event_raw_nfsd_mark_client_expired { + struct trace_entry ent; + int cl_rpc_users; + u32 cl_boot; + u32 cl_id; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_nfsd_net_class { + struct trace_entry ent; + long long unsigned int boot_time; + char __data[0]; +}; + +struct trace_event_raw_nfsd_writeverf_reset { + struct trace_entry ent; + long long unsigned int boot_time; + u32 xid; + int error; + unsigned char verifier[8]; + char __data[0]; +}; + +struct trace_event_raw_nfsd_clid_cred_mismatch { + struct trace_entry ent; + u32 cl_boot; + u32 cl_id; + long unsigned int cl_flavor; + long unsigned int new_flavor; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_nfsd_clid_verf_mismatch { + struct trace_entry ent; + u32 cl_boot; + u32 cl_id; + unsigned char cl_verifier[8]; + unsigned char new_verifier[8]; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_nfsd_clid_class { + struct trace_entry ent; + u32 cl_boot; + u32 cl_id; + unsigned char addr[28]; + long unsigned int flavor; + unsigned char verifier[8]; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfsd_file_class { + struct trace_entry ent; + void *nf_inode; + int nf_ref; + long unsigned int nf_flags; + unsigned char nf_may; + struct file *nf_file; + char __data[0]; +}; + +struct trace_event_raw_nfsd_file_alloc { + struct trace_entry ent; + const void *nf_inode; + long unsigned int nf_flags; + long unsigned int nf_may; + unsigned int nf_ref; + char __data[0]; +}; + +struct trace_event_raw_nfsd_file_acquire { + struct trace_entry ent; + u32 xid; + const void *inode; + long unsigned int may_flags; + unsigned int nf_ref; + long unsigned int nf_flags; + long unsigned int nf_may; + const void *nf_file; + u32 status; + char __data[0]; +}; + +struct trace_event_raw_nfsd_file_insert_err { + struct trace_entry ent; + u32 xid; + const void *inode; + long unsigned int may_flags; + long int error; + char __data[0]; +}; + +struct trace_event_raw_nfsd_file_cons_err { + struct trace_entry ent; + u32 xid; + const void *inode; + long unsigned int may_flags; + unsigned int nf_ref; + long unsigned int nf_flags; + long unsigned int nf_may; + const void *nf_file; + char __data[0]; +}; + +struct trace_event_raw_nfsd_file_open_class { + struct trace_entry ent; + void *nf_inode; + int nf_ref; + long unsigned int nf_flags; + long unsigned int nf_may; + void *nf_file; + char __data[0]; +}; + +struct trace_event_raw_nfsd_file_is_cached { + struct trace_entry ent; + const struct inode *inode; + int found; + char __data[0]; +}; + +struct trace_event_raw_nfsd_file_fsnotify_handle_event { + struct trace_entry ent; + struct inode *inode; + unsigned int nlink; + umode_t mode; + u32 mask; + char __data[0]; +}; + +struct trace_event_raw_nfsd_file_gc_class { + struct trace_entry ent; + void *nf_inode; + void *nf_file; + int nf_ref; + long unsigned int nf_flags; + char __data[0]; +}; + +struct trace_event_raw_nfsd_file_lruwalk_class { + struct trace_entry ent; + long unsigned int removed; + long unsigned int remaining; + char __data[0]; +}; + +struct trace_event_raw_nfsd_file_close { + struct trace_entry ent; + const void *inode; + char __data[0]; +}; + +struct trace_event_raw_nfsd_drc_found { + struct trace_entry ent; + long long unsigned int boot_time; + long unsigned int result; + u32 xid; + char __data[0]; +}; + +struct trace_event_raw_nfsd_drc_mismatch { + struct trace_entry ent; + long long unsigned int boot_time; + u32 xid; + u32 cached; + u32 ingress; + char __data[0]; +}; + +struct trace_event_raw_nfsd_cb_args { + struct trace_entry ent; + u32 cl_boot; + u32 cl_id; + u32 prog; + u32 ident; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_nfsd_cb_nodelegs { + struct trace_entry ent; + u32 cl_boot; + u32 cl_id; + char __data[0]; +}; + +struct trace_event_raw_nfsd_cb_class { + struct trace_entry ent; + long unsigned int state; + u32 cl_boot; + u32 cl_id; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_nfsd_cb_setup { + struct trace_entry ent; + u32 cl_boot; + u32 cl_id; + long unsigned int authflavor; + u32 __data_loc_addr; + u32 __data_loc_netid; + char __data[0]; +}; + +struct trace_event_raw_nfsd_cb_setup_err { + struct trace_entry ent; + long int error; + u32 cl_boot; + u32 cl_id; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_nfsd_cb_lifetime_class { + struct trace_entry ent; + u32 cl_boot; + u32 cl_id; + const void *cb; + long unsigned int opcode; + bool need_restart; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_nfsd_cb_seq_status { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + u32 cl_boot; + u32 cl_id; + u32 seqno; + u32 reserved; + int tk_status; + int seq_status; + char __data[0]; +}; + +struct trace_event_raw_nfsd_cb_free_slot { + struct trace_entry ent; + unsigned int task_id; + unsigned int client_id; + u32 cl_boot; + u32 cl_id; + u32 seqno; + u32 reserved; + u32 slot_seqno; + char __data[0]; +}; + +struct trace_event_raw_nfsd_cb_recall { + struct trace_entry ent; + u32 cl_boot; + u32 cl_id; + u32 si_id; + u32 si_generation; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_nfsd_cb_notify_lock { + struct trace_entry ent; + u32 cl_boot; + u32 cl_id; + u32 fh_hash; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_nfsd_cb_offload { + struct trace_entry ent; + u32 cl_boot; + u32 cl_id; + u32 si_id; + u32 si_generation; + u32 fh_hash; + int status; + u64 count; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_nfsd_cb_recall_any { + struct trace_entry ent; + u32 cl_boot; + u32 cl_id; + u32 keep; + long unsigned int bmval0; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_nfsd_cb_done_class { + struct trace_entry ent; + u32 cl_boot; + u32 cl_id; + u32 si_id; + u32 si_generation; + int status; + char __data[0]; +}; + +struct trace_event_raw_nfsd_cb_recall_any_done { + struct trace_entry ent; + u32 cl_boot; + u32 cl_id; + int status; + char __data[0]; +}; + +struct trace_event_raw_nfsd_ctl_unlock_ip { + struct trace_entry ent; + unsigned int netns_ino; + u32 __data_loc_address; + char __data[0]; +}; + +struct trace_event_raw_nfsd_ctl_unlock_fs { + struct trace_entry ent; + unsigned int netns_ino; + u32 __data_loc_path; + char __data[0]; +}; + +struct trace_event_raw_nfsd_ctl_filehandle { + struct trace_entry ent; + unsigned int netns_ino; + int maxsize; + u32 __data_loc_domain; + u32 __data_loc_path; + char __data[0]; +}; + +struct trace_event_raw_nfsd_ctl_threads { + struct trace_entry ent; + unsigned int netns_ino; + int newthreads; + char __data[0]; +}; + +struct trace_event_raw_nfsd_ctl_pool_threads { + struct trace_entry ent; + unsigned int netns_ino; + int pool; + int nrthreads; + char __data[0]; +}; + +struct trace_event_raw_nfsd_ctl_version { + struct trace_entry ent; + unsigned int netns_ino; + u32 __data_loc_mesg; + char __data[0]; +}; + +struct trace_event_raw_nfsd_ctl_ports_addfd { + struct trace_entry ent; + unsigned int netns_ino; + int fd; + char __data[0]; +}; + +struct trace_event_raw_nfsd_ctl_ports_addxprt { + struct trace_entry ent; + unsigned int netns_ino; + int port; + u32 __data_loc_transport; + char __data[0]; +}; + +struct trace_event_raw_nfsd_ctl_maxblksize { + struct trace_entry ent; + unsigned int netns_ino; + int bsize; + char __data[0]; +}; + +struct trace_event_raw_nfsd_ctl_maxconn { + struct trace_entry ent; + unsigned int netns_ino; + int maxconn; + char __data[0]; +}; + +struct trace_event_raw_nfsd_ctl_time { + struct trace_entry ent; + unsigned int netns_ino; + int time; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_nfsd_ctl_recoverydir { + struct trace_entry ent; + unsigned int netns_ino; + u32 __data_loc_recdir; + char __data[0]; +}; + +struct trace_event_raw_nfsd_end_grace { + struct trace_entry ent; + unsigned int netns_ino; + char __data[0]; +}; + +struct trace_event_raw_nfsd_copy_class { + struct trace_entry ent; + bool intra; + bool async; + u32 src_cl_boot; + u32 src_cl_id; + u32 src_so_id; + u32 src_si_generation; + u32 dst_cl_boot; + u32 dst_cl_id; + u32 dst_so_id; + u32 dst_si_generation; + u32 cb_cl_boot; + u32 cb_cl_id; + u32 cb_so_id; + u32 cb_si_generation; + u64 src_cp_pos; + u64 dst_cp_pos; + u64 cp_count; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_nfsd_copy_done { + struct trace_entry ent; + int status; + bool intra; + bool async; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_raw_nfsd_copy_async_done { + struct trace_entry ent; + int status; + bool intra; + bool async; + u32 src_cl_boot; + u32 src_cl_id; + u32 src_so_id; + u32 src_si_generation; + u32 dst_cl_boot; + u32 dst_cl_id; + u32 dst_so_id; + u32 dst_si_generation; + u32 cb_cl_boot; + u32 cb_cl_id; + u32 cb_so_id; + u32 cb_si_generation; + u64 src_cp_pos; + u64 dst_cp_pos; + u64 cp_count; + u32 __data_loc_addr; + char __data[0]; +}; + +struct trace_event_data_offsets_nfsd_xdr_err_class { + u32 server; + const void *server_ptr_; + u32 client; + const void *client_ptr_; +}; + +struct trace_event_data_offsets_nfsd_compound { + u32 tag; + const void *tag_ptr_; +}; + +struct trace_event_data_offsets_nfsd_compound_status { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfsd_compound_decode_err {}; + +struct trace_event_data_offsets_nfsd_compound_encode_err {}; + +struct trace_event_data_offsets_nfsd_fh_verify { + u32 server; + const void *server_ptr_; + u32 client; + const void *client_ptr_; +}; + +struct trace_event_data_offsets_nfsd_fh_verify_err { + u32 server; + const void *server_ptr_; + u32 client; + const void *client_ptr_; +}; + +struct trace_event_data_offsets_nfsd_fh_err_class {}; + +struct trace_event_data_offsets_nfsd_exp_find_key { + u32 auth_domain; + const void *auth_domain_ptr_; +}; + +struct trace_event_data_offsets_nfsd_expkey_update { + u32 auth_domain; + const void *auth_domain_ptr_; + u32 path; + const void *path_ptr_; +}; + +struct trace_event_data_offsets_nfsd_exp_get_by_name { + u32 path; + const void *path_ptr_; + u32 auth_domain; + const void *auth_domain_ptr_; +}; + +struct trace_event_data_offsets_nfsd_export_update { + u32 path; + const void *path_ptr_; + u32 auth_domain; + const void *auth_domain_ptr_; +}; + +struct trace_event_data_offsets_nfsd_io_class {}; + +struct trace_event_data_offsets_nfsd_err_class {}; + +struct trace_event_data_offsets_nfsd_dirent { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfsd_copy_err_class {}; + +struct trace_event_data_offsets_nfsd_delegret_wakeup {}; + +struct trace_event_data_offsets_nfsd_stateid_class {}; + +struct trace_event_data_offsets_nfsd_stateseqid_class {}; + +struct trace_event_data_offsets_nfsd_stid_class {}; + +struct trace_event_data_offsets_nfsd_stateowner_replay {}; + +struct trace_event_data_offsets_nfsd_seq4_status {}; + +struct trace_event_data_offsets_nfsd_cs_slot_class { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_nfsd_slot_seqid_sequence { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_nfsd_clientid_class {}; + +struct trace_event_data_offsets_nfsd_mark_client_expired { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_nfsd_net_class {}; + +struct trace_event_data_offsets_nfsd_writeverf_reset {}; + +struct trace_event_data_offsets_nfsd_clid_cred_mismatch { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_nfsd_clid_verf_mismatch { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_nfsd_clid_class { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfsd_file_class {}; + +struct trace_event_data_offsets_nfsd_file_alloc {}; + +struct trace_event_data_offsets_nfsd_file_acquire {}; + +struct trace_event_data_offsets_nfsd_file_insert_err {}; + +struct trace_event_data_offsets_nfsd_file_cons_err {}; + +struct trace_event_data_offsets_nfsd_file_open_class {}; + +struct trace_event_data_offsets_nfsd_file_is_cached {}; + +struct trace_event_data_offsets_nfsd_file_fsnotify_handle_event {}; + +struct trace_event_data_offsets_nfsd_file_gc_class {}; + +struct trace_event_data_offsets_nfsd_file_lruwalk_class {}; + +struct trace_event_data_offsets_nfsd_file_close {}; + +struct trace_event_data_offsets_nfsd_drc_found {}; + +struct trace_event_data_offsets_nfsd_drc_mismatch {}; + +struct trace_event_data_offsets_nfsd_cb_args { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_nfsd_cb_nodelegs {}; + +struct trace_event_data_offsets_nfsd_cb_class { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_nfsd_cb_setup { + u32 addr; + const void *addr_ptr_; + u32 netid; + const void *netid_ptr_; +}; + +struct trace_event_data_offsets_nfsd_cb_setup_err { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_nfsd_cb_lifetime_class { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_nfsd_cb_seq_status {}; + +struct trace_event_data_offsets_nfsd_cb_free_slot {}; + +struct trace_event_data_offsets_nfsd_cb_recall { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_nfsd_cb_notify_lock { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_nfsd_cb_offload { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_nfsd_cb_recall_any { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_nfsd_cb_done_class {}; + +struct trace_event_data_offsets_nfsd_cb_recall_any_done {}; + +struct trace_event_data_offsets_nfsd_ctl_unlock_ip { + u32 address; + const void *address_ptr_; +}; + +struct trace_event_data_offsets_nfsd_ctl_unlock_fs { + u32 path; + const void *path_ptr_; +}; + +struct trace_event_data_offsets_nfsd_ctl_filehandle { + u32 domain; + const void *domain_ptr_; + u32 path; + const void *path_ptr_; +}; + +struct trace_event_data_offsets_nfsd_ctl_threads {}; + +struct trace_event_data_offsets_nfsd_ctl_pool_threads {}; + +struct trace_event_data_offsets_nfsd_ctl_version { + u32 mesg; + const void *mesg_ptr_; +}; + +struct trace_event_data_offsets_nfsd_ctl_ports_addfd {}; + +struct trace_event_data_offsets_nfsd_ctl_ports_addxprt { + u32 transport; + const void *transport_ptr_; +}; + +struct trace_event_data_offsets_nfsd_ctl_maxblksize {}; + +struct trace_event_data_offsets_nfsd_ctl_maxconn {}; + +struct trace_event_data_offsets_nfsd_ctl_time { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_nfsd_ctl_recoverydir { + u32 recdir; + const void *recdir_ptr_; +}; + +struct trace_event_data_offsets_nfsd_end_grace {}; + +struct trace_event_data_offsets_nfsd_copy_class { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_nfsd_copy_done { + u32 addr; + const void *addr_ptr_; +}; + +struct trace_event_data_offsets_nfsd_copy_async_done { + u32 addr; + const void *addr_ptr_; +}; + +typedef void (*btf_trace_nfsd_garbage_args_err)(void *, const struct svc_rqst *); + +typedef void (*btf_trace_nfsd_cant_encode_err)(void *, const struct svc_rqst *); + +typedef void (*btf_trace_nfsd_compound)(void *, const struct svc_rqst *, const char *, u32, u32); + +typedef void (*btf_trace_nfsd_compound_status)(void *, u32, u32, __be32, const char *); + +typedef void (*btf_trace_nfsd_compound_decode_err)(void *, const struct svc_rqst *, u32, u32, u32, __be32); + +typedef void (*btf_trace_nfsd_compound_encode_err)(void *, const struct svc_rqst *, u32, __be32); + +typedef void (*btf_trace_nfsd_fh_verify)(void *, const struct svc_rqst *, const struct svc_fh *, umode_t, int); + +typedef void (*btf_trace_nfsd_fh_verify_err)(void *, const struct svc_rqst *, const struct svc_fh *, umode_t, int, __be32); + +typedef void (*btf_trace_nfsd_set_fh_dentry_badexport)(void *, struct svc_rqst *, struct svc_fh *, int); + +typedef void (*btf_trace_nfsd_set_fh_dentry_badhandle)(void *, struct svc_rqst *, struct svc_fh *, int); + +typedef void (*btf_trace_nfsd_exp_find_key)(void *, const struct svc_expkey *, int); + +typedef void (*btf_trace_nfsd_expkey_update)(void *, const struct svc_expkey *, const char *); + +typedef void (*btf_trace_nfsd_exp_get_by_name)(void *, const struct svc_export *, int); + +typedef void (*btf_trace_nfsd_export_update)(void *, const struct svc_export *); + +typedef void (*btf_trace_nfsd_read_start)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); + +typedef void (*btf_trace_nfsd_read_splice)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); + +typedef void (*btf_trace_nfsd_read_vector)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); + +typedef void (*btf_trace_nfsd_read_io_done)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); + +typedef void (*btf_trace_nfsd_read_done)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); + +typedef void (*btf_trace_nfsd_write_start)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); + +typedef void (*btf_trace_nfsd_write_opened)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); + +typedef void (*btf_trace_nfsd_write_io_done)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); + +typedef void (*btf_trace_nfsd_write_done)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); + +typedef void (*btf_trace_nfsd_read_err)(void *, struct svc_rqst *, struct svc_fh *, loff_t, int); + +typedef void (*btf_trace_nfsd_write_err)(void *, struct svc_rqst *, struct svc_fh *, loff_t, int); + +typedef void (*btf_trace_nfsd_dirent)(void *, struct svc_fh *, u64, const char *, int); + +typedef void (*btf_trace_nfsd_clone_file_range_err)(void *, struct svc_rqst *, struct svc_fh *, loff_t, struct svc_fh *, loff_t, u64, int); + +typedef void (*btf_trace_nfsd_delegret_wakeup)(void *, const struct svc_rqst *, const struct inode *, long int); + +typedef void (*btf_trace_nfsd_layoutstate_alloc)(void *, stateid_t *); + +typedef void (*btf_trace_nfsd_layoutstate_unhash)(void *, stateid_t *); + +typedef void (*btf_trace_nfsd_layoutstate_free)(void *, stateid_t *); + +typedef void (*btf_trace_nfsd_layout_get_lookup_fail)(void *, stateid_t *); + +typedef void (*btf_trace_nfsd_layout_commit_lookup_fail)(void *, stateid_t *); + +typedef void (*btf_trace_nfsd_layout_return_lookup_fail)(void *, stateid_t *); + +typedef void (*btf_trace_nfsd_layout_recall)(void *, stateid_t *); + +typedef void (*btf_trace_nfsd_layout_recall_done)(void *, stateid_t *); + +typedef void (*btf_trace_nfsd_layout_recall_fail)(void *, stateid_t *); + +typedef void (*btf_trace_nfsd_layout_recall_release)(void *, stateid_t *); + +typedef void (*btf_trace_nfsd_open)(void *, stateid_t *); + +typedef void (*btf_trace_nfsd_deleg_read)(void *, stateid_t *); + +typedef void (*btf_trace_nfsd_deleg_write)(void *, stateid_t *); + +typedef void (*btf_trace_nfsd_deleg_return)(void *, stateid_t *); + +typedef void (*btf_trace_nfsd_deleg_recall)(void *, stateid_t *); + +typedef void (*btf_trace_nfsd_preprocess)(void *, u32, const stateid_t *); + +typedef void (*btf_trace_nfsd_open_confirm)(void *, u32, const stateid_t *); + +typedef void (*btf_trace_nfsd_stid_revoke)(void *, const struct nfs4_stid *); + +typedef void (*btf_trace_nfsd_stateowner_replay)(void *, u32, const struct nfs4_replay *); + +typedef void (*btf_trace_nfsd_seq4_status)(void *, const struct svc_rqst *, const struct nfsd4_sequence *); + +typedef void (*btf_trace_nfsd_slot_seqid_conf)(void *, const struct nfs4_client *, const struct nfsd4_create_session *); + +typedef void (*btf_trace_nfsd_slot_seqid_unconf)(void *, const struct nfs4_client *, const struct nfsd4_create_session *); + +typedef void (*btf_trace_nfsd_slot_seqid_sequence)(void *, const struct nfs4_client *, const struct nfsd4_sequence *, const struct nfsd4_slot *); + +typedef void (*btf_trace_nfsd_clid_expire_unconf)(void *, const clientid_t *); + +typedef void (*btf_trace_nfsd_clid_reclaim_complete)(void *, const clientid_t *); + +typedef void (*btf_trace_nfsd_clid_confirmed)(void *, const clientid_t *); + +typedef void (*btf_trace_nfsd_clid_destroyed)(void *, const clientid_t *); + +typedef void (*btf_trace_nfsd_clid_admin_expired)(void *, const clientid_t *); + +typedef void (*btf_trace_nfsd_clid_replaced)(void *, const clientid_t *); + +typedef void (*btf_trace_nfsd_clid_purged)(void *, const clientid_t *); + +typedef void (*btf_trace_nfsd_clid_renew)(void *, const clientid_t *); + +typedef void (*btf_trace_nfsd_clid_stale)(void *, const clientid_t *); + +typedef void (*btf_trace_nfsd_mark_client_expired)(void *, const struct nfs4_client *, int); + +typedef void (*btf_trace_nfsd_grace_start)(void *, const struct nfsd_net *); + +typedef void (*btf_trace_nfsd_grace_complete)(void *, const struct nfsd_net *); + +typedef void (*btf_trace_nfsd_writeverf_reset)(void *, const struct nfsd_net *, const struct svc_rqst *, int); + +typedef void (*btf_trace_nfsd_clid_cred_mismatch)(void *, const struct nfs4_client *, const struct svc_rqst *); + +typedef void (*btf_trace_nfsd_clid_verf_mismatch)(void *, const struct nfs4_client *, const struct svc_rqst *, const nfs4_verifier *); + +typedef void (*btf_trace_nfsd_clid_fresh)(void *, const struct nfs4_client *); + +typedef void (*btf_trace_nfsd_clid_confirmed_r)(void *, const struct nfs4_client *); + +typedef void (*btf_trace_nfsd_file_free)(void *, struct nfsd_file *); + +typedef void (*btf_trace_nfsd_file_unhash)(void *, struct nfsd_file *); + +typedef void (*btf_trace_nfsd_file_put)(void *, struct nfsd_file *); + +typedef void (*btf_trace_nfsd_file_closing)(void *, struct nfsd_file *); + +typedef void (*btf_trace_nfsd_file_unhash_and_queue)(void *, struct nfsd_file *); + +typedef void (*btf_trace_nfsd_file_alloc)(void *, const struct nfsd_file *); + +typedef void (*btf_trace_nfsd_file_acquire)(void *, const struct svc_rqst *, const struct inode *, unsigned int, const struct nfsd_file *, __be32); + +typedef void (*btf_trace_nfsd_file_insert_err)(void *, const struct svc_rqst *, const struct inode *, unsigned int, long int); + +typedef void (*btf_trace_nfsd_file_cons_err)(void *, const struct svc_rqst *, const struct inode *, unsigned int, const struct nfsd_file *); + +typedef void (*btf_trace_nfsd_file_open)(void *, const struct nfsd_file *, __be32); + +typedef void (*btf_trace_nfsd_file_opened)(void *, const struct nfsd_file *, __be32); + +typedef void (*btf_trace_nfsd_file_is_cached)(void *, const struct inode *, int); + +typedef void (*btf_trace_nfsd_file_fsnotify_handle_event)(void *, struct inode *, u32); + +typedef void (*btf_trace_nfsd_file_lru_add)(void *, const struct nfsd_file *); + +typedef void (*btf_trace_nfsd_file_lru_add_disposed)(void *, const struct nfsd_file *); + +typedef void (*btf_trace_nfsd_file_lru_del)(void *, const struct nfsd_file *); + +typedef void (*btf_trace_nfsd_file_lru_del_disposed)(void *, const struct nfsd_file *); + +typedef void (*btf_trace_nfsd_file_gc_in_use)(void *, const struct nfsd_file *); + +typedef void (*btf_trace_nfsd_file_gc_writeback)(void *, const struct nfsd_file *); + +typedef void (*btf_trace_nfsd_file_gc_referenced)(void *, const struct nfsd_file *); + +typedef void (*btf_trace_nfsd_file_gc_disposed)(void *, const struct nfsd_file *); + +typedef void (*btf_trace_nfsd_file_gc_removed)(void *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_nfsd_file_shrinker_removed)(void *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_nfsd_file_close)(void *, const struct inode *); + +typedef void (*btf_trace_nfsd_drc_found)(void *, const struct nfsd_net *, const struct svc_rqst *, int); + +typedef void (*btf_trace_nfsd_drc_mismatch)(void *, const struct nfsd_net *, const struct nfsd_cacherep *, const struct nfsd_cacherep *); + +typedef void (*btf_trace_nfsd_cb_args)(void *, const struct nfs4_client *, const struct nfs4_cb_conn *); + +typedef void (*btf_trace_nfsd_cb_nodelegs)(void *, const struct nfs4_client *); + +typedef void (*btf_trace_nfsd_cb_start)(void *, const struct nfs4_client *); + +typedef void (*btf_trace_nfsd_cb_new_state)(void *, const struct nfs4_client *); + +typedef void (*btf_trace_nfsd_cb_probe)(void *, const struct nfs4_client *); + +typedef void (*btf_trace_nfsd_cb_lost)(void *, const struct nfs4_client *); + +typedef void (*btf_trace_nfsd_cb_shutdown)(void *, const struct nfs4_client *); + +typedef void (*btf_trace_nfsd_cb_rpc_prepare)(void *, const struct nfs4_client *); + +typedef void (*btf_trace_nfsd_cb_rpc_done)(void *, const struct nfs4_client *); + +typedef void (*btf_trace_nfsd_cb_rpc_release)(void *, const struct nfs4_client *); + +typedef void (*btf_trace_nfsd_cb_setup)(void *, const struct nfs4_client *, const char *, rpc_authflavor_t); + +typedef void (*btf_trace_nfsd_cb_setup_err)(void *, const struct nfs4_client *, long int); + +typedef void (*btf_trace_nfsd_cb_queue)(void *, const struct nfs4_client *, const struct nfsd4_callback *); + +typedef void (*btf_trace_nfsd_cb_destroy)(void *, const struct nfs4_client *, const struct nfsd4_callback *); + +typedef void (*btf_trace_nfsd_cb_restart)(void *, const struct nfs4_client *, const struct nfsd4_callback *); + +typedef void (*btf_trace_nfsd_cb_bc_update)(void *, const struct nfs4_client *, const struct nfsd4_callback *); + +typedef void (*btf_trace_nfsd_cb_bc_shutdown)(void *, const struct nfs4_client *, const struct nfsd4_callback *); + +typedef void (*btf_trace_nfsd_cb_seq_status)(void *, const struct rpc_task *, const struct nfsd4_callback *); + +typedef void (*btf_trace_nfsd_cb_free_slot)(void *, const struct rpc_task *, const struct nfsd4_callback *); + +typedef void (*btf_trace_nfsd_cb_recall)(void *, const struct nfs4_stid *); + +typedef void (*btf_trace_nfsd_cb_notify_lock)(void *, const struct nfs4_lockowner *, const struct nfsd4_blocked_lock *); + +typedef void (*btf_trace_nfsd_cb_offload)(void *, const struct nfs4_client *, const stateid_t *, const struct knfsd_fh *, u64, __be32); + +typedef void (*btf_trace_nfsd_cb_recall_any)(void *, const struct nfsd4_cb_recall_any *); + +typedef void (*btf_trace_nfsd_cb_recall_done)(void *, const stateid_t *, const struct rpc_task *); + +typedef void (*btf_trace_nfsd_cb_notify_lock_done)(void *, const stateid_t *, const struct rpc_task *); + +typedef void (*btf_trace_nfsd_cb_layout_done)(void *, const stateid_t *, const struct rpc_task *); + +typedef void (*btf_trace_nfsd_cb_offload_done)(void *, const stateid_t *, const struct rpc_task *); + +typedef void (*btf_trace_nfsd_cb_getattr_done)(void *, const stateid_t *, const struct rpc_task *); + +typedef void (*btf_trace_nfsd_cb_recall_any_done)(void *, const struct nfsd4_callback *, const struct rpc_task *); + +typedef void (*btf_trace_nfsd_ctl_unlock_ip)(void *, const struct net *, const char *); + +typedef void (*btf_trace_nfsd_ctl_unlock_fs)(void *, const struct net *, const char *); + +typedef void (*btf_trace_nfsd_ctl_filehandle)(void *, const struct net *, const char *, const char *, int); + +typedef void (*btf_trace_nfsd_ctl_threads)(void *, const struct net *, int); + +typedef void (*btf_trace_nfsd_ctl_pool_threads)(void *, const struct net *, int, int); + +typedef void (*btf_trace_nfsd_ctl_version)(void *, const struct net *, const char *); + +typedef void (*btf_trace_nfsd_ctl_ports_addfd)(void *, const struct net *, int); + +typedef void (*btf_trace_nfsd_ctl_ports_addxprt)(void *, const struct net *, const char *, int); + +typedef void (*btf_trace_nfsd_ctl_maxblksize)(void *, const struct net *, int); + +typedef void (*btf_trace_nfsd_ctl_maxconn)(void *, const struct net *, int); + +typedef void (*btf_trace_nfsd_ctl_time)(void *, const struct net *, const char *, size_t, int); + +typedef void (*btf_trace_nfsd_ctl_recoverydir)(void *, const struct net *, const char *); + +typedef void (*btf_trace_nfsd_end_grace)(void *, const struct net *); + +typedef void (*btf_trace_nfsd_copy_inter)(void *, const struct nfsd4_copy *); + +typedef void (*btf_trace_nfsd_copy_intra)(void *, const struct nfsd4_copy *); + +typedef void (*btf_trace_nfsd_copy_async)(void *, const struct nfsd4_copy *); + +typedef void (*btf_trace_nfsd_copy_done)(void *, const struct nfsd4_copy *, __be32); + +typedef void (*btf_trace_nfsd_copy_async_done)(void *, const struct nfsd4_copy *); + +typedef struct { + __le32 NextEntryOffset; + __u32 ResumeKey; + FILE_UNIX_BASIC_INFO basic; + union { + char __pad; + struct { + struct {} __empty_FileName; + char FileName[0]; + }; + }; +} __attribute__((packed)) FILE_UNIX_INFO; + +typedef struct { + __le32 NextEntryOffset; + __u32 FileIndex; + __le64 CreationTime; + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le64 EndOfFile; + __le64 AllocationSize; + __le32 ExtFileAttributes; + __le32 FileNameLength; + __le32 EaSize; + char FileName[0]; +} __attribute__((packed)) FILE_FULL_DIRECTORY_INFO; + +typedef struct { + __le32 NextEntryOffset; + __u32 FileIndex; + __le64 CreationTime; + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le64 EndOfFile; + __le64 AllocationSize; + __le32 ExtFileAttributes; + __le32 FileNameLength; + __le32 EaSize; + __le32 Reserved; + __le64 UniqueId; + char FileName[0]; +} SEARCH_ID_FULL_DIR_INFO; + +typedef struct { + __le32 NextEntryOffset; + __u32 FileIndex; + __le64 CreationTime; + __le64 LastAccessTime; + __le64 LastWriteTime; + __le64 ChangeTime; + __le64 EndOfFile; + __le64 AllocationSize; + __le32 ExtFileAttributes; + __le32 FileNameLength; + __le32 EaSize; + __u8 ShortNameLength; + __u8 Reserved; + __u8 ShortName[24]; + char FileName[0]; +} __attribute__((packed)) FILE_BOTH_DIRECTORY_INFO; + +typedef struct { + __u32 ResumeKey; + __le16 CreationDate; + __le16 CreationTime; + __le16 LastAccessDate; + __le16 LastAccessTime; + __le16 LastWriteDate; + __le16 LastWriteTime; + __le32 DataSize; + __le32 AllocationSize; + __le16 Attributes; + __u8 FileNameLength; + char FileName[0]; +} __attribute__((packed)) FIND_FILE_STANDARD_INFO; + +struct cifs_dirent { + const char *name; + size_t namelen; + u32 resume_key; + u64 ino; +}; + +struct derivation { + struct kvec label; + struct kvec context; +}; + +struct derivation_triplet { + struct derivation signing; + struct derivation encryption; + struct derivation decryption; +}; + +enum { + Opt_direct = 0, + Opt_fd = 1, + Opt_gid___13 = 2, + Opt_ignore___3 = 3, + Opt_indirect = 4, + Opt_maxproto = 5, + Opt_minproto = 6, + Opt_offset = 7, + Opt_pgrp = 8, + Opt_strictexpire = 9, + Opt_uid___12 = 10, +}; + +struct autofs_fs_context { + kuid_t uid; + kgid_t gid; + int pgrp; + bool pgrp_set; +}; + +struct xfs_trim_cur { + xfs_agblock_t start; + xfs_extlen_t count; + xfs_agblock_t end; + xfs_extlen_t minlen; + bool by_bno; +}; + +struct xfs_unmount_log_format { + uint16_t magic; + uint16_t pad1; + uint32_t pad2; +}; + +typedef struct xlog_ticket xlog_ticket_t; + +struct cachefiles_open { + __u32 volume_key_size; + __u32 cookie_key_size; + __u32 fd; + __u32 flags; + __u8 data[0]; +}; + +struct cachefiles_read { + __u64 off; + __u64 len; +}; + +struct trace_event_raw_cachefiles_ref { + struct trace_entry ent; + unsigned int obj; + unsigned int cookie; + enum cachefiles_obj_ref_trace why; + int usage; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_lookup { + struct trace_entry ent; + unsigned int obj; + short int error; + long unsigned int dino; + long unsigned int ino; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_mkdir { + struct trace_entry ent; + unsigned int dir; + unsigned int subdir; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_tmpfile { + struct trace_entry ent; + unsigned int obj; + unsigned int backer; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_link { + struct trace_entry ent; + unsigned int obj; + unsigned int backer; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_unlink { + struct trace_entry ent; + unsigned int obj; + unsigned int ino; + enum fscache_why_object_killed why; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_rename { + struct trace_entry ent; + unsigned int obj; + unsigned int ino; + enum fscache_why_object_killed why; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_coherency { + struct trace_entry ent; + unsigned int obj; + enum cachefiles_coherency_trace why; + enum cachefiles_content content; + u64 ino; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_vol_coherency { + struct trace_entry ent; + unsigned int vol; + enum cachefiles_coherency_trace why; + u64 ino; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_prep_read { + struct trace_entry ent; + unsigned int obj; + short unsigned int flags; + enum netfs_io_source source; + enum cachefiles_prepare_read_trace why; + size_t len; + loff_t start; + unsigned int netfs_inode; + unsigned int cache_inode; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_read { + struct trace_entry ent; + unsigned int obj; + unsigned int backer; + size_t len; + loff_t start; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_write { + struct trace_entry ent; + unsigned int obj; + unsigned int backer; + size_t len; + loff_t start; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_trunc { + struct trace_entry ent; + unsigned int obj; + unsigned int backer; + enum cachefiles_trunc_trace why; + loff_t from; + loff_t to; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_mark_active { + struct trace_entry ent; + unsigned int obj; + ino_t inode; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_mark_failed { + struct trace_entry ent; + unsigned int obj; + ino_t inode; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_mark_inactive { + struct trace_entry ent; + unsigned int obj; + ino_t inode; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_vfs_error { + struct trace_entry ent; + unsigned int obj; + unsigned int backer; + enum cachefiles_error_trace where; + short int error; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_io_error { + struct trace_entry ent; + unsigned int obj; + unsigned int backer; + enum cachefiles_error_trace where; + short int error; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_ondemand_open { + struct trace_entry ent; + unsigned int obj; + unsigned int msg_id; + unsigned int object_id; + unsigned int fd; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_ondemand_copen { + struct trace_entry ent; + unsigned int obj; + unsigned int msg_id; + long int len; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_ondemand_close { + struct trace_entry ent; + unsigned int obj; + unsigned int msg_id; + unsigned int object_id; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_ondemand_read { + struct trace_entry ent; + unsigned int obj; + unsigned int msg_id; + unsigned int object_id; + loff_t start; + size_t len; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_ondemand_cread { + struct trace_entry ent; + unsigned int obj; + unsigned int msg_id; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_ondemand_fd_write { + struct trace_entry ent; + unsigned int obj; + unsigned int backer; + loff_t start; + size_t len; + char __data[0]; +}; + +struct trace_event_raw_cachefiles_ondemand_fd_release { + struct trace_entry ent; + unsigned int obj; + unsigned int object_id; + char __data[0]; +}; + +struct trace_event_data_offsets_cachefiles_ref {}; + +struct trace_event_data_offsets_cachefiles_lookup {}; + +struct trace_event_data_offsets_cachefiles_mkdir {}; + +struct trace_event_data_offsets_cachefiles_tmpfile {}; + +struct trace_event_data_offsets_cachefiles_link {}; + +struct trace_event_data_offsets_cachefiles_unlink {}; + +struct trace_event_data_offsets_cachefiles_rename {}; + +struct trace_event_data_offsets_cachefiles_coherency {}; + +struct trace_event_data_offsets_cachefiles_vol_coherency {}; + +struct trace_event_data_offsets_cachefiles_prep_read {}; + +struct trace_event_data_offsets_cachefiles_read {}; + +struct trace_event_data_offsets_cachefiles_write {}; + +struct trace_event_data_offsets_cachefiles_trunc {}; + +struct trace_event_data_offsets_cachefiles_mark_active {}; + +struct trace_event_data_offsets_cachefiles_mark_failed {}; + +struct trace_event_data_offsets_cachefiles_mark_inactive {}; + +struct trace_event_data_offsets_cachefiles_vfs_error {}; + +struct trace_event_data_offsets_cachefiles_io_error {}; + +struct trace_event_data_offsets_cachefiles_ondemand_open {}; + +struct trace_event_data_offsets_cachefiles_ondemand_copen {}; + +struct trace_event_data_offsets_cachefiles_ondemand_close {}; + +struct trace_event_data_offsets_cachefiles_ondemand_read {}; + +struct trace_event_data_offsets_cachefiles_ondemand_cread {}; + +struct trace_event_data_offsets_cachefiles_ondemand_fd_write {}; + +struct trace_event_data_offsets_cachefiles_ondemand_fd_release {}; + +typedef void (*btf_trace_cachefiles_ref)(void *, unsigned int, unsigned int, int, enum cachefiles_obj_ref_trace); + +typedef void (*btf_trace_cachefiles_lookup)(void *, struct cachefiles_object *, struct dentry *, struct dentry *); + +typedef void (*btf_trace_cachefiles_mkdir)(void *, struct dentry *, struct dentry *); + +typedef void (*btf_trace_cachefiles_tmpfile)(void *, struct cachefiles_object *, struct inode *); + +typedef void (*btf_trace_cachefiles_link)(void *, struct cachefiles_object *, struct inode *); + +typedef void (*btf_trace_cachefiles_unlink)(void *, struct cachefiles_object *, ino_t, enum fscache_why_object_killed); + +typedef void (*btf_trace_cachefiles_rename)(void *, struct cachefiles_object *, ino_t, enum fscache_why_object_killed); + +typedef void (*btf_trace_cachefiles_coherency)(void *, struct cachefiles_object *, ino_t, enum cachefiles_content, enum cachefiles_coherency_trace); + +typedef void (*btf_trace_cachefiles_vol_coherency)(void *, struct cachefiles_volume *, ino_t, enum cachefiles_coherency_trace); + +typedef void (*btf_trace_cachefiles_prep_read)(void *, struct cachefiles_object *, loff_t, size_t, short unsigned int, enum netfs_io_source, enum cachefiles_prepare_read_trace, ino_t, ino_t); + +typedef void (*btf_trace_cachefiles_read)(void *, struct cachefiles_object *, struct inode *, loff_t, size_t); + +typedef void (*btf_trace_cachefiles_write)(void *, struct cachefiles_object *, struct inode *, loff_t, size_t); + +typedef void (*btf_trace_cachefiles_trunc)(void *, struct cachefiles_object *, struct inode *, loff_t, loff_t, enum cachefiles_trunc_trace); + +typedef void (*btf_trace_cachefiles_mark_active)(void *, struct cachefiles_object *, struct inode *); + +typedef void (*btf_trace_cachefiles_mark_failed)(void *, struct cachefiles_object *, struct inode *); + +typedef void (*btf_trace_cachefiles_mark_inactive)(void *, struct cachefiles_object *, struct inode *); + +typedef void (*btf_trace_cachefiles_vfs_error)(void *, struct cachefiles_object *, struct inode *, int, enum cachefiles_error_trace); + +typedef void (*btf_trace_cachefiles_io_error)(void *, struct cachefiles_object *, struct inode *, int, enum cachefiles_error_trace); + +typedef void (*btf_trace_cachefiles_ondemand_open)(void *, struct cachefiles_object *, struct cachefiles_msg *, struct cachefiles_open *); + +typedef void (*btf_trace_cachefiles_ondemand_copen)(void *, struct cachefiles_object *, unsigned int, long int); + +typedef void (*btf_trace_cachefiles_ondemand_close)(void *, struct cachefiles_object *, struct cachefiles_msg *); + +typedef void (*btf_trace_cachefiles_ondemand_read)(void *, struct cachefiles_object *, struct cachefiles_msg *, struct cachefiles_read *); + +typedef void (*btf_trace_cachefiles_ondemand_cread)(void *, struct cachefiles_object *, unsigned int); + +typedef void (*btf_trace_cachefiles_ondemand_fd_write)(void *, struct cachefiles_object *, struct inode *, loff_t, size_t); + +typedef void (*btf_trace_cachefiles_ondemand_fd_release)(void *, struct cachefiles_object *, int); + +struct falloc_range { + struct list_head list; + u64 start; + u64 len; +}; + +enum { + RANGE_BOUNDARY_WRITTEN_EXTENT = 0, + RANGE_BOUNDARY_PREALLOC_EXTENT = 1, + RANGE_BOUNDARY_HOLE = 2, +}; + +struct workspace___4 { + void *mem; + void *buf; + void *cbuf; + struct list_head list; +}; + +struct btrfs_free_space_info { + __le32 extent_count; + __le32 flags; +}; + +struct fsync_inode_entry { + struct list_head list; + struct inode *inode; + block_t blkaddr; + block_t last_dentry; +}; + +struct erofs_xattr_ibody_header { + __le32 h_name_filter; + __u8 h_shared_count; + __u8 h_reserved2[7]; + __le32 h_shared_xattrs[0]; +}; + +struct erofs_xattr_entry { + __u8 e_name_len; + __u8 e_name_index; + __le16 e_value_size; + char e_name[0]; +}; + +struct erofs_xattr_iter { + struct super_block *sb; + struct erofs_buf buf; + erofs_off_t pos; + void *kaddr; + char *buffer; + int buffer_size; + int buffer_ofs; + int index; + int infix_len; + struct qstr name; + struct dentry *dentry; +}; + +struct z_erofs_bvec { + struct page *page; + int offset; + unsigned int end; +}; + +struct z_erofs_bvset { + struct page *nextpage; + struct z_erofs_bvec bvec[0]; +}; + +struct z_erofs_bvset_inline { + struct page *nextpage; + struct z_erofs_bvec bvec[2]; +}; + +struct z_erofs_pcluster { + struct mutex lock; + struct lockref lockref; + struct z_erofs_pcluster *next; + erofs_off_t index; + unsigned int length; + unsigned int vcnt; + unsigned int pclustersize; + short unsigned int pageofs_out; + short unsigned int pageofs_in; + union { + struct z_erofs_bvset_inline bvset; + struct callback_head rcu; + }; + unsigned char algorithmformat; + bool partial; + bool besteffort; + struct z_erofs_bvec compressed_bvecs[0]; +}; + +struct z_erofs_decompressqueue { + struct super_block *sb; + struct z_erofs_pcluster *head; + atomic_t pending_bios; + union { + struct completion done; + struct work_struct work; + struct kthread_work kthread_work; + } u; + bool eio; + bool sync; +}; + +struct z_erofs_pcluster_slab { + struct kmem_cache *slab; + unsigned int maxpages; + char name[48]; +}; + +struct z_erofs_bvec_iter { + struct page *bvpage; + struct z_erofs_bvset *bvset; + unsigned int nr; + unsigned int cur; +}; + +enum z_erofs_pclustermode { + Z_EROFS_PCLUSTER_INFLIGHT = 0, + Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE = 1, + Z_EROFS_PCLUSTER_FOLLOWED = 2, +}; + +struct z_erofs_frontend { + struct inode * const inode; + struct erofs_map_blocks map; + struct z_erofs_bvec_iter biter; + struct page *pagepool; + struct page *candidate_bvpage; + struct z_erofs_pcluster *pcl; + struct z_erofs_pcluster *head; + enum z_erofs_pclustermode mode; + erofs_off_t headoffset; + unsigned int icur; +}; + +struct z_erofs_backend { + struct page *onstack_pages[32]; + struct super_block *sb; + struct z_erofs_pcluster *pcl; + struct page **decompressed_pages; + struct page **compressed_pages; + struct list_head decompressed_secondary_bvecs; + struct page **pagepool; + unsigned int onstack_used; + unsigned int nr_pages; + bool keepxcpy; +}; + +struct z_erofs_bvec_item { + struct z_erofs_bvec bvec; + struct list_head list; +}; + +enum { + JQ_BYPASS = 0, + JQ_SUBMIT = 1, + NR_JOBQUEUES = 2, +}; + +struct keyring_read_iterator_context { + size_t buflen; + size_t count; + key_serial_t *buffer; +}; + +struct kpp_instance { + void (*free)(struct kpp_instance *); + union { + struct { + char head[48]; + struct crypto_instance base; + } s; + struct kpp_alg alg; + }; +}; + +struct crypto_kpp_spawn { + struct crypto_spawn base; +}; + +struct khazad_ctx { + u64 E[9]; + u64 D[9]; +}; + +struct authenc_instance_ctx { + struct crypto_ahash_spawn auth; + struct crypto_skcipher_spawn enc; + unsigned int reqoff; +}; + +struct crypto_authenc_ctx { + struct crypto_ahash *auth; + struct crypto_skcipher *enc; + struct crypto_sync_skcipher *null; +}; + +struct authenc_request_ctx { + struct scatterlist src[2]; + struct scatterlist dst[2]; + char tail[0]; +}; + +struct bt_iter_data { + struct blk_mq_hw_ctx *hctx; + struct request_queue *q; + busy_tag_iter_fn *fn; + void *data; + bool reserved; +}; + +struct bt_tags_iter_data { + struct blk_mq_tags *tags; + busy_tag_iter_fn *fn; + void *data; + unsigned int flags; +}; + +typedef guid_t efi_guid_t; + +struct _gpt_header { + __le64 signature; + __le32 revision; + __le32 header_size; + __le32 header_crc32; + __le32 reserved1; + __le64 my_lba; + __le64 alternate_lba; + __le64 first_usable_lba; + __le64 last_usable_lba; + efi_guid_t disk_guid; + __le64 partition_entry_lba; + __le32 num_partition_entries; + __le32 sizeof_partition_entry; + __le32 partition_entry_array_crc32; +} __attribute__((packed)); + +typedef struct _gpt_header gpt_header; + +struct _gpt_entry_attributes { + u64 required_to_function: 1; + u64 reserved: 47; + u64 type_guid_specific: 16; +}; + +typedef struct _gpt_entry_attributes gpt_entry_attributes; + +struct _gpt_entry { + efi_guid_t partition_type_guid; + efi_guid_t unique_partition_guid; + __le64 starting_lba; + __le64 ending_lba; + gpt_entry_attributes attributes; + __le16 partition_name[36]; +}; + +typedef struct _gpt_entry gpt_entry; + +struct _gpt_mbr_record { + u8 boot_indicator; + u8 start_head; + u8 start_sector; + u8 start_track; + u8 os_type; + u8 end_head; + u8 end_sector; + u8 end_track; + __le32 starting_lba; + __le32 size_in_lba; +}; + +typedef struct _gpt_mbr_record gpt_mbr_record; + +struct _legacy_mbr { + u8 boot_code[440]; + __le32 unique_mbr_signature; + __le16 unknown; + gpt_mbr_record partition_record[4]; + __le16 signature; +} __attribute__((packed)); + +typedef struct _legacy_mbr legacy_mbr; + +struct io_uring_getevents_arg { + __u64 sigmask; + __u32 sigmask_sz; + __u32 min_wait_usec; + __u64 ts; +}; + +struct trace_event_raw_io_uring_create { + struct trace_entry ent; + int fd; + void *ctx; + u32 sq_entries; + u32 cq_entries; + u32 flags; + char __data[0]; +}; + +struct trace_event_raw_io_uring_register { + struct trace_entry ent; + void *ctx; + unsigned int opcode; + unsigned int nr_files; + unsigned int nr_bufs; + long int ret; + char __data[0]; +}; + +struct trace_event_raw_io_uring_file_get { + struct trace_entry ent; + void *ctx; + void *req; + u64 user_data; + int fd; + char __data[0]; +}; + +struct trace_event_raw_io_uring_queue_async_work { + struct trace_entry ent; + void *ctx; + void *req; + u64 user_data; + u8 opcode; + long long unsigned int flags; + struct io_wq_work *work; + int rw; + u32 __data_loc_op_str; + char __data[0]; +}; + +struct trace_event_raw_io_uring_defer { + struct trace_entry ent; + void *ctx; + void *req; + long long unsigned int data; + u8 opcode; + u32 __data_loc_op_str; + char __data[0]; +}; + +struct trace_event_raw_io_uring_link { + struct trace_entry ent; + void *ctx; + void *req; + void *target_req; + char __data[0]; +}; + +struct trace_event_raw_io_uring_cqring_wait { + struct trace_entry ent; + void *ctx; + int min_events; + char __data[0]; +}; + +struct trace_event_raw_io_uring_fail_link { + struct trace_entry ent; + void *ctx; + void *req; + long long unsigned int user_data; + u8 opcode; + void *link; + u32 __data_loc_op_str; + char __data[0]; +}; + +struct trace_event_raw_io_uring_complete { + struct trace_entry ent; + void *ctx; + void *req; + u64 user_data; + int res; + unsigned int cflags; + u64 extra1; + u64 extra2; + char __data[0]; +}; + +struct trace_event_raw_io_uring_submit_req { + struct trace_entry ent; + void *ctx; + void *req; + long long unsigned int user_data; + u8 opcode; + long long unsigned int flags; + bool sq_thread; + u32 __data_loc_op_str; + char __data[0]; +}; + +struct trace_event_raw_io_uring_poll_arm { + struct trace_entry ent; + void *ctx; + void *req; + long long unsigned int user_data; + u8 opcode; + int mask; + int events; + u32 __data_loc_op_str; + char __data[0]; +}; + +struct trace_event_raw_io_uring_task_add { + struct trace_entry ent; + void *ctx; + void *req; + long long unsigned int user_data; + u8 opcode; + int mask; + u32 __data_loc_op_str; + char __data[0]; +}; + +struct trace_event_raw_io_uring_req_failed { + struct trace_entry ent; + void *ctx; + void *req; + long long unsigned int user_data; + u8 opcode; + u8 flags; + u8 ioprio; + u64 off; + u64 addr; + u32 len; + u32 op_flags; + u16 buf_index; + u16 personality; + u32 file_index; + u64 pad1; + u64 addr3; + int error; + u32 __data_loc_op_str; + char __data[0]; +}; + +struct trace_event_raw_io_uring_cqe_overflow { + struct trace_entry ent; + void *ctx; + long long unsigned int user_data; + s32 res; + u32 cflags; + void *ocqe; + char __data[0]; +}; + +struct trace_event_raw_io_uring_task_work_run { + struct trace_entry ent; + void *tctx; + unsigned int count; + char __data[0]; +}; + +struct trace_event_raw_io_uring_short_write { + struct trace_entry ent; + void *ctx; + u64 fpos; + u64 wanted; + u64 got; + char __data[0]; +}; + +struct trace_event_raw_io_uring_local_work_run { + struct trace_entry ent; + void *ctx; + int count; + unsigned int loops; + char __data[0]; +}; + +struct trace_event_data_offsets_io_uring_create {}; + +struct trace_event_data_offsets_io_uring_register {}; + +struct trace_event_data_offsets_io_uring_file_get {}; + +struct trace_event_data_offsets_io_uring_queue_async_work { + u32 op_str; + const void *op_str_ptr_; +}; + +struct trace_event_data_offsets_io_uring_defer { + u32 op_str; + const void *op_str_ptr_; +}; + +struct trace_event_data_offsets_io_uring_link {}; + +struct trace_event_data_offsets_io_uring_cqring_wait {}; + +struct trace_event_data_offsets_io_uring_fail_link { + u32 op_str; + const void *op_str_ptr_; +}; + +struct trace_event_data_offsets_io_uring_complete {}; + +struct trace_event_data_offsets_io_uring_submit_req { + u32 op_str; + const void *op_str_ptr_; +}; + +struct trace_event_data_offsets_io_uring_poll_arm { + u32 op_str; + const void *op_str_ptr_; +}; + +struct trace_event_data_offsets_io_uring_task_add { + u32 op_str; + const void *op_str_ptr_; +}; + +struct trace_event_data_offsets_io_uring_req_failed { + u32 op_str; + const void *op_str_ptr_; +}; + +struct trace_event_data_offsets_io_uring_cqe_overflow {}; + +struct trace_event_data_offsets_io_uring_task_work_run {}; + +struct trace_event_data_offsets_io_uring_short_write {}; + +struct trace_event_data_offsets_io_uring_local_work_run {}; + +typedef void (*btf_trace_io_uring_create)(void *, int, void *, u32, u32, u32); + +typedef void (*btf_trace_io_uring_register)(void *, void *, unsigned int, unsigned int, unsigned int, long int); + +typedef void (*btf_trace_io_uring_file_get)(void *, struct io_kiocb *, int); + +typedef void (*btf_trace_io_uring_queue_async_work)(void *, struct io_kiocb *, int); + +typedef void (*btf_trace_io_uring_defer)(void *, struct io_kiocb *); + +typedef void (*btf_trace_io_uring_link)(void *, struct io_kiocb *, struct io_kiocb *); + +typedef void (*btf_trace_io_uring_cqring_wait)(void *, void *, int); + +typedef void (*btf_trace_io_uring_fail_link)(void *, struct io_kiocb *, struct io_kiocb *); + +typedef void (*btf_trace_io_uring_complete)(void *, void *, void *, u64, int, unsigned int, u64, u64); + +typedef void (*btf_trace_io_uring_submit_req)(void *, struct io_kiocb *); + +typedef void (*btf_trace_io_uring_poll_arm)(void *, struct io_kiocb *, int, int); + +typedef void (*btf_trace_io_uring_task_add)(void *, struct io_kiocb *, int); + +typedef void (*btf_trace_io_uring_req_failed)(void *, const struct io_uring_sqe *, struct io_kiocb *, int); + +typedef void (*btf_trace_io_uring_cqe_overflow)(void *, void *, long long unsigned int, s32, u32, void *); + +typedef void (*btf_trace_io_uring_task_work_run)(void *, void *, unsigned int); + +typedef void (*btf_trace_io_uring_short_write)(void *, void *, u64, u64, u64); + +typedef void (*btf_trace_io_uring_local_work_run)(void *, void *, int, unsigned int); + +struct io_defer_entry { + struct list_head list; + struct io_kiocb *req; + u32 seq; +}; + +struct ext_arg { + size_t argsz; + struct __kernel_timespec *ts; + const sigset_t *sig; + ktime_t min_time; +}; + +struct io_tctx_exit { + struct callback_head task_work; + struct completion completion; + struct io_ring_ctx *ctx; +}; + +struct io_task_cancel { + struct task_struct *task; + bool all; +}; + +struct creds; + +typedef uint64_t vli_type; + +enum xz_check { + XZ_CHECK_NONE = 0, + XZ_CHECK_CRC32 = 1, + XZ_CHECK_CRC64 = 4, + XZ_CHECK_SHA256 = 10, +}; + +struct xz_dec_hash { + vli_type unpadded; + vli_type uncompressed; + uint32_t crc32; +}; + +struct xz_dec_bcj; + +struct xz_dec { + enum { + SEQ_STREAM_HEADER = 0, + SEQ_BLOCK_START = 1, + SEQ_BLOCK_HEADER = 2, + SEQ_BLOCK_UNCOMPRESS = 3, + SEQ_BLOCK_PADDING = 4, + SEQ_BLOCK_CHECK = 5, + SEQ_INDEX = 6, + SEQ_INDEX_PADDING = 7, + SEQ_INDEX_CRC32 = 8, + SEQ_STREAM_FOOTER = 9, + } sequence; + uint32_t pos; + vli_type vli; + size_t in_start; + size_t out_start; + uint32_t crc32; + enum xz_check check_type; + enum xz_mode mode; + bool allow_buf_error; + struct { + vli_type compressed; + vli_type uncompressed; + uint32_t size; + } block_header; + struct { + vli_type compressed; + vli_type uncompressed; + vli_type count; + struct xz_dec_hash hash; + } block; + struct { + enum { + SEQ_INDEX_COUNT = 0, + SEQ_INDEX_UNPADDED = 1, + SEQ_INDEX_UNCOMPRESSED = 2, + } sequence; + vli_type size; + vli_type count; + struct xz_dec_hash hash; + } index; + struct { + size_t pos; + size_t size; + uint8_t buf[1024]; + } temp; + struct xz_dec_lzma2 *lzma2; + struct xz_dec_bcj *bcj; + bool bcj_active; +}; + +struct xz_dec_bcj { + enum { + BCJ_X86 = 4, + BCJ_POWERPC = 5, + BCJ_IA64 = 6, + BCJ_ARM = 7, + BCJ_ARMTHUMB = 8, + BCJ_SPARC = 9, + BCJ_ARM64 = 10, + BCJ_RISCV = 11, + } type; + enum xz_ret ret; + bool single_call; + uint32_t pos; + uint32_t x86_prev_mask; + uint8_t *out; + size_t out_pos; + size_t out_size; + struct { + size_t filtered; + size_t size; + uint8_t buf[16]; + } temp; +}; + +struct ts_kmp { + u8 *pattern; + unsigned int pattern_len; + unsigned int prefix_tbl[0]; +}; + +enum pci_bar_type { + pci_bar_unknown = 0, + pci_bar_io = 1, + pci_bar_mem32 = 2, + pci_bar_mem64 = 3, +}; + +struct pci_domain_busn_res { + struct list_head list; + struct resource res; + int domain_nr; +}; + +struct pci_fixup { + u16 vendor; + u16 device; + u32 class; + unsigned int class_shift; + int hook_offset; +}; + +enum { + NVME_REG_CAP = 0, + NVME_REG_VS = 8, + NVME_REG_INTMS = 12, + NVME_REG_INTMC = 16, + NVME_REG_CC = 20, + NVME_REG_CSTS = 28, + NVME_REG_NSSR = 32, + NVME_REG_AQA = 36, + NVME_REG_ASQ = 40, + NVME_REG_ACQ = 48, + NVME_REG_CMBLOC = 56, + NVME_REG_CMBSZ = 60, + NVME_REG_BPINFO = 64, + NVME_REG_BPRSEL = 68, + NVME_REG_BPMBL = 72, + NVME_REG_CMBMSC = 80, + NVME_REG_CRTO = 104, + NVME_REG_PMRCAP = 3584, + NVME_REG_PMRCTL = 3588, + NVME_REG_PMRSTS = 3592, + NVME_REG_PMREBS = 3596, + NVME_REG_PMRSWTP = 3600, + NVME_REG_DBS = 4096, +}; + +enum { + NVME_CC_ENABLE = 1, + NVME_CC_EN_SHIFT = 0, + NVME_CC_CSS_SHIFT = 4, + NVME_CC_MPS_SHIFT = 7, + NVME_CC_AMS_SHIFT = 11, + NVME_CC_SHN_SHIFT = 14, + NVME_CC_IOSQES_SHIFT = 16, + NVME_CC_IOCQES_SHIFT = 20, + NVME_CC_CSS_NVM = 0, + NVME_CC_CSS_CSI = 96, + NVME_CC_CSS_MASK = 112, + NVME_CC_AMS_RR = 0, + NVME_CC_AMS_WRRU = 2048, + NVME_CC_AMS_VS = 14336, + NVME_CC_SHN_NONE = 0, + NVME_CC_SHN_NORMAL = 16384, + NVME_CC_SHN_ABRUPT = 32768, + NVME_CC_SHN_MASK = 49152, + NVME_CC_IOSQES = 393216, + NVME_CC_IOCQES = 4194304, + NVME_CC_CRIME = 16777216, +}; + +enum { + NVME_CSTS_RDY = 1, + NVME_CSTS_CFS = 2, + NVME_CSTS_NSSRO = 16, + NVME_CSTS_PP = 32, + NVME_CSTS_SHST_NORMAL = 0, + NVME_CSTS_SHST_OCCUR = 4, + NVME_CSTS_SHST_CMPLT = 8, + NVME_CSTS_SHST_MASK = 12, +}; + +enum { + NVME_AEN_BIT_NS_ATTR = 8, + NVME_AEN_BIT_FW_ACT = 9, + NVME_AEN_BIT_ANA_CHANGE = 11, + NVME_AEN_BIT_DISC_CHANGE = 31, +}; + +enum { + SWITCHTEC_GAS_MRPC_OFFSET = 0, + SWITCHTEC_GAS_TOP_CFG_OFFSET = 4096, + SWITCHTEC_GAS_SW_EVENT_OFFSET = 6144, + SWITCHTEC_GAS_SYS_INFO_OFFSET = 8192, + SWITCHTEC_GAS_FLASH_INFO_OFFSET = 8704, + SWITCHTEC_GAS_PART_CFG_OFFSET = 16384, + SWITCHTEC_GAS_NTB_OFFSET = 65536, + SWITCHTEC_GAS_PFF_CSR_OFFSET = 1261568, +}; + +enum { + SWITCHTEC_NTB_REG_INFO_OFFSET = 0, + SWITCHTEC_NTB_REG_CTRL_OFFSET = 16384, + SWITCHTEC_NTB_REG_DBMSG_OFFSET = 409600, +}; + +struct nt_partition_info { + u32 xlink_enabled; + u32 target_part_low; + u32 target_part_high; + u32 reserved; +}; + +struct ntb_info_regs { + u8 partition_count; + u8 partition_id; + u16 reserved1; + u64 ep_map; + u16 requester_id; + u16 reserved2; + u32 reserved3[4]; + struct nt_partition_info ntp_info[48]; +} __attribute__((packed)); + +struct ntb_ctrl_regs { + u32 partition_status; + u32 partition_op; + u32 partition_ctrl; + u32 bar_setup; + u32 bar_error; + u16 lut_table_entries; + u16 lut_table_offset; + u32 lut_error; + u16 req_id_table_size; + u16 req_id_table_offset; + u32 req_id_error; + u32 reserved1[7]; + struct { + u32 ctl; + u32 win_size; + u64 xlate_addr; + } bar_entry[6]; + struct { + u32 win_size; + u32 reserved[3]; + } bar_ext_entry[6]; + u32 reserved2[192]; + u32 req_id_table[512]; + u32 reserved3[256]; + u64 lut_entry[512]; +}; + +struct pci_dev_reset_methods { + u16 vendor; + u16 device; + int (*reset)(struct pci_dev *, bool); +}; + +struct pci_dev_acs_enabled { + u16 vendor; + u16 device; + int (*acs_enabled)(struct pci_dev *, u16); +}; + +struct pci_dev_acs_ops { + u16 vendor; + u16 device; + int (*enable_acs)(struct pci_dev *); + int (*disable_acs_redir)(struct pci_dev *); +}; + +struct termios { + tcflag_t c_iflag; + tcflag_t c_oflag; + tcflag_t c_cflag; + tcflag_t c_lflag; + cc_t c_line; + cc_t c_cc[19]; +}; + +struct termios2 { + tcflag_t c_iflag; + tcflag_t c_oflag; + tcflag_t c_cflag; + tcflag_t c_lflag; + cc_t c_line; + cc_t c_cc[19]; + speed_t c_ispeed; + speed_t c_ospeed; +}; + +struct termio { + short unsigned int c_iflag; + short unsigned int c_oflag; + short unsigned int c_cflag; + short unsigned int c_lflag; + unsigned char c_line; + unsigned char c_cc[8]; +}; + +struct con_driver { + const struct consw *con; + const char *desc; + struct device *dev; + int node; + int first; + int last; + int flag; +}; + +enum { + blank_off = 0, + blank_normal_wait = 1, + blank_vesa_wait = 2, +}; + +enum { + EPecma = 0, + EPdec = 1, + EPeq = 2, + EPgt = 3, + EPlt = 4, +}; + +enum CSI_J { + CSI_J_CURSOR_TO_END = 0, + CSI_J_START_TO_CURSOR = 1, + CSI_J_VISIBLE = 2, + CSI_J_FULL = 3, +}; + +enum { + CSI_K_CURSOR_TO_LINEEND = 0, + CSI_K_LINESTART_TO_CURSOR = 1, + CSI_K_LINE = 2, +}; + +struct rgb { + u8 r; + u8 g; + u8 b; +}; + +enum { + CSI_m_DEFAULT = 0, + CSI_m_BOLD = 1, + CSI_m_HALF_BRIGHT = 2, + CSI_m_ITALIC = 3, + CSI_m_UNDERLINE = 4, + CSI_m_BLINK = 5, + CSI_m_REVERSE = 7, + CSI_m_PRI_FONT = 10, + CSI_m_ALT_FONT1 = 11, + CSI_m_ALT_FONT2 = 12, + CSI_m_DOUBLE_UNDERLINE = 21, + CSI_m_NORMAL_INTENSITY = 22, + CSI_m_NO_ITALIC = 23, + CSI_m_NO_UNDERLINE = 24, + CSI_m_NO_BLINK = 25, + CSI_m_NO_REVERSE = 27, + CSI_m_FG_COLOR_BEG = 30, + CSI_m_FG_COLOR_END = 37, + CSI_m_FG_COLOR = 38, + CSI_m_DEFAULT_FG_COLOR = 39, + CSI_m_BG_COLOR_BEG = 40, + CSI_m_BG_COLOR_END = 47, + CSI_m_BG_COLOR = 48, + CSI_m_DEFAULT_BG_COLOR = 49, + CSI_m_BRIGHT_FG_COLOR_BEG = 90, + CSI_m_BRIGHT_FG_COLOR_END = 97, + CSI_m_BRIGHT_FG_COLOR_OFF = 60, + CSI_m_BRIGHT_BG_COLOR_BEG = 100, + CSI_m_BRIGHT_BG_COLOR_END = 107, + CSI_m_BRIGHT_BG_COLOR_OFF = 60, +}; + +enum { + CSI_DEC_hl_CURSOR_KEYS = 1, + CSI_DEC_hl_132_COLUMNS = 3, + CSI_DEC_hl_REVERSE_VIDEO = 5, + CSI_DEC_hl_ORIGIN_MODE = 6, + CSI_DEC_hl_AUTOWRAP = 7, + CSI_DEC_hl_AUTOREPEAT = 8, + CSI_DEC_hl_MOUSE_X10 = 9, + CSI_DEC_hl_SHOW_CURSOR = 25, + CSI_DEC_hl_MOUSE_VT200 = 1000, +}; + +enum { + CSI_hl_DISPLAY_CTRL = 3, + CSI_hl_INSERT = 4, + CSI_hl_AUTO_NL = 20, +}; + +enum CSI_right_square_bracket { + CSI_RSB_COLOR_FOR_UNDERLINE = 1, + CSI_RSB_COLOR_FOR_HALF_BRIGHT = 2, + CSI_RSB_MAKE_CUR_COLOR_DEFAULT = 8, + CSI_RSB_BLANKING_INTERVAL = 9, + CSI_RSB_BELL_FREQUENCY = 10, + CSI_RSB_BELL_DURATION = 11, + CSI_RSB_BRING_CONSOLE_TO_FRONT = 12, + CSI_RSB_UNBLANK = 13, + CSI_RSB_VESA_OFF_INTERVAL = 14, + CSI_RSB_BRING_PREV_CONSOLE_TO_FRONT = 15, + CSI_RSB_CURSOR_BLINK_INTERVAL = 16, +}; + +enum vc_ctl_state { + ESnormal = 0, + ESesc = 1, + ESsquare = 2, + ESgetpars = 3, + ESfunckey = 4, + EShash = 5, + ESsetG0 = 6, + ESsetG1 = 7, + ESpercent = 8, + EScsiignore = 9, + ESnonstd = 10, + ESpalette = 11, + ESosc = 12, + ESANSI_first = 12, + ESapc = 13, + ESpm = 14, + ESdcs = 15, + ESANSI_last = 15, +}; + +enum { + ASCII_NULL = 0, + ASCII_BELL = 7, + ASCII_BACKSPACE = 8, + ASCII_IGNORE_FIRST = 8, + ASCII_HTAB = 9, + ASCII_LINEFEED = 10, + ASCII_VTAB = 11, + ASCII_FORMFEED = 12, + ASCII_CAR_RET = 13, + ASCII_IGNORE_LAST = 13, + ASCII_SHIFTOUT = 14, + ASCII_SHIFTIN = 15, + ASCII_CANCEL = 24, + ASCII_SUBSTITUTE = 26, + ASCII_ESCAPE = 27, + ASCII_CSI_IGNORE_FIRST = 32, + ASCII_CSI_IGNORE_LAST = 63, + ASCII_DEL = 127, + ASCII_EXT_CSI = 155, +}; + +struct interval { + uint32_t first; + uint32_t last; +}; + +struct vc_draw_region { + long unsigned int from; + long unsigned int to; + int x; +}; + +struct amba_pl011_data { + bool (*dma_filter)(struct dma_chan *, void *); + void *dma_rx_param; + void *dma_tx_param; + bool dma_rx_poll_enable; + unsigned int dma_rx_poll_rate; + unsigned int dma_rx_poll_timeout; + void (*init)(void); + void (*exit)(void); +}; + +enum { + REG_DR = 0, + REG_ST_DMAWM = 1, + REG_ST_TIMEOUT = 2, + REG_FR = 3, + REG_LCRH_RX = 4, + REG_LCRH_TX = 5, + REG_IBRD = 6, + REG_FBRD = 7, + REG_CR = 8, + REG_IFLS = 9, + REG_IMSC = 10, + REG_RIS = 11, + REG_MIS = 12, + REG_ICR = 13, + REG_DMACR = 14, + REG_ST_XFCR = 15, + REG_ST_XON1 = 16, + REG_ST_XON2 = 17, + REG_ST_XOFF1 = 18, + REG_ST_XOFF2 = 19, + REG_ST_ITCR = 20, + REG_ST_ITIP = 21, + REG_ST_ABCR = 22, + REG_ST_ABIMSC = 23, + REG_ARRAY_SIZE = 24, +}; + +struct vendor_data { + const u16 *reg_offset; + unsigned int ifls; + unsigned int fr_busy; + unsigned int fr_dsr; + unsigned int fr_cts; + unsigned int fr_ri; + unsigned int inv_fr; + bool access_32b; + bool oversampling; + bool dma_threshold; + bool cts_event_workaround; + bool always_enabled; + bool fixed_options; + unsigned int (*get_fifosize)(struct amba_device *); +}; + +struct pl011_dmabuf { + dma_addr_t dma; + size_t len; + char *buf; +}; + +struct pl011_dmarx_data { + struct dma_chan *chan; + struct completion complete; + bool use_buf_b; + struct pl011_dmabuf dbuf_a; + struct pl011_dmabuf dbuf_b; + dma_cookie_t cookie; + bool running; + struct timer_list timer; + unsigned int last_residue; + long unsigned int last_jiffies; + bool auto_poll_rate; + unsigned int poll_rate; + unsigned int poll_timeout; +}; + +struct pl011_dmatx_data { + struct dma_chan *chan; + dma_addr_t dma; + size_t len; + char *buf; + bool queued; +}; + +struct uart_amba_port { + struct uart_port port; + const u16 *reg_offset; + struct clk *clk; + const struct vendor_data *vendor; + unsigned int im; + unsigned int old_status; + unsigned int fifosize; + unsigned int fixed_baud; + char type[12]; + bool rs485_tx_started; + unsigned int rs485_tx_drain_interval; + unsigned int dmacr; + bool using_tx_dma; + bool using_rx_dma; + struct pl011_dmarx_data dmarx; + struct pl011_dmatx_data dmatx; + bool dma_probed; +}; + +struct displayid_header { + u8 rev; + u8 bytes; + u8 prod_id; + u8 ext_count; +}; + +struct drm_mode_obj_get_properties { + __u64 props_ptr; + __u64 prop_values_ptr; + __u32 count_props; + __u32 obj_id; + __u32 obj_type; +}; + +struct drm_atomic_helper_damage_iter { + struct drm_rect plane_src; + const struct drm_rect *clips; + uint32_t num_clips; + uint32_t curr_clip; + bool full_update; +}; + +struct ewma_psr_time { + long unsigned int internal; +}; + +struct drm_self_refresh_data { + struct drm_crtc *crtc; + struct delayed_work entry_work; + struct mutex avg_mutex; + struct ewma_psr_time entry_avg_ms; + struct ewma_psr_time exit_avg_ms; +}; + +struct class_compat { + struct kobject *kobj; +}; + +enum fw_opt { + FW_OPT_UEVENT = 1, + FW_OPT_NOWAIT = 2, + FW_OPT_USERHELPER = 4, + FW_OPT_NO_WARN = 8, + FW_OPT_NOCACHE = 16, + FW_OPT_NOFALLBACK_SYSFS = 32, + FW_OPT_FALLBACK_PLATFORM = 64, + FW_OPT_PARTIAL = 128, +}; + +enum fw_status { + FW_STATUS_UNKNOWN = 0, + FW_STATUS_LOADING = 1, + FW_STATUS_DONE = 2, + FW_STATUS_ABORTED = 3, +}; + +struct fw_state { + struct completion completion; + enum fw_status status; +}; + +struct firmware_cache; + +struct fw_priv { + struct kref ref; + struct list_head list; + struct firmware_cache *fwc; + struct fw_state fw_st; + void *data; + size_t size; + size_t allocated_size; + size_t offset; + u32 opt_flags; + const char *fw_name; +}; + +struct firmware_cache { + spinlock_t lock; + struct list_head head; + int state; +}; + +struct firmware_work { + struct work_struct work; + struct module *module; + const char *name; + struct device *device; + void *context; + void (*cont)(const struct firmware *, void *); + u32 opt_flags; +}; + +typedef unsigned int __kernel_old_dev_t; + +enum { + LO_FLAGS_READ_ONLY = 1, + LO_FLAGS_AUTOCLEAR = 4, + LO_FLAGS_PARTSCAN = 8, + LO_FLAGS_DIRECT_IO = 16, +}; + +struct loop_info { + int lo_number; + __kernel_old_dev_t lo_device; + long unsigned int lo_inode; + __kernel_old_dev_t lo_rdevice; + int lo_offset; + int lo_encrypt_type; + int lo_encrypt_key_size; + int lo_flags; + char lo_name[64]; + unsigned char lo_encrypt_key[32]; + long unsigned int lo_init[2]; + char reserved[4]; +}; + +struct loop_info64 { + __u64 lo_device; + __u64 lo_inode; + __u64 lo_rdevice; + __u64 lo_offset; + __u64 lo_sizelimit; + __u32 lo_number; + __u32 lo_encrypt_type; + __u32 lo_encrypt_key_size; + __u32 lo_flags; + __u8 lo_file_name[64]; + __u8 lo_crypt_name[64]; + __u8 lo_encrypt_key[32]; + __u64 lo_init[2]; +}; + +struct loop_config { + __u32 fd; + __u32 block_size; + struct loop_info64 info; + __u64 __reserved[8]; +}; + +enum { + Lo_unbound = 0, + Lo_bound = 1, + Lo_rundown = 2, + Lo_deleting = 3, +}; + +struct loop_device { + int lo_number; + loff_t lo_offset; + loff_t lo_sizelimit; + int lo_flags; + char lo_file_name[64]; + struct file *lo_backing_file; + struct block_device *lo_device; + gfp_t old_gfp_mask; + spinlock_t lo_lock; + int lo_state; + spinlock_t lo_work_lock; + struct workqueue_struct *workqueue; + struct work_struct rootcg_work; + struct list_head rootcg_cmd_list; + struct list_head idle_worker_list; + struct rb_root worker_tree; + struct timer_list timer; + bool use_dio; + bool sysfs_inited; + struct request_queue *lo_queue; + struct blk_mq_tag_set tag_set; + struct gendisk *lo_disk; + struct mutex lo_mutex; + bool idr_visible; +}; + +struct loop_cmd { + struct list_head list_entry; + bool use_aio; + atomic_t ref; + long int ret; + struct kiocb iocb; + struct bio_vec *bvec; + struct cgroup_subsys_state *blkcg_css; + struct cgroup_subsys_state *memcg_css; +}; + +struct loop_worker { + struct rb_node rb_node; + struct work_struct work; + struct list_head cmd_list; + struct list_head idle_list; + struct loop_device *lo; + struct cgroup_subsys_state *blkcg_css; + long unsigned int last_ran_at; +}; + +struct scsi_varlen_cdb_hdr { + __u8 opcode; + __u8 control; + __u8 misc[5]; + __u8 additional_cdb_length; + __be16 service_action; +}; + +enum { + IFLA_VXLAN_UNSPEC = 0, + IFLA_VXLAN_ID = 1, + IFLA_VXLAN_GROUP = 2, + IFLA_VXLAN_LINK = 3, + IFLA_VXLAN_LOCAL = 4, + IFLA_VXLAN_TTL = 5, + IFLA_VXLAN_TOS = 6, + IFLA_VXLAN_LEARNING = 7, + IFLA_VXLAN_AGEING = 8, + IFLA_VXLAN_LIMIT = 9, + IFLA_VXLAN_PORT_RANGE = 10, + IFLA_VXLAN_PROXY = 11, + IFLA_VXLAN_RSC = 12, + IFLA_VXLAN_L2MISS = 13, + IFLA_VXLAN_L3MISS = 14, + IFLA_VXLAN_PORT = 15, + IFLA_VXLAN_GROUP6 = 16, + IFLA_VXLAN_LOCAL6 = 17, + IFLA_VXLAN_UDP_CSUM = 18, + IFLA_VXLAN_UDP_ZERO_CSUM6_TX = 19, + IFLA_VXLAN_UDP_ZERO_CSUM6_RX = 20, + IFLA_VXLAN_REMCSUM_TX = 21, + IFLA_VXLAN_REMCSUM_RX = 22, + IFLA_VXLAN_GBP = 23, + IFLA_VXLAN_REMCSUM_NOPARTIAL = 24, + IFLA_VXLAN_COLLECT_METADATA = 25, + IFLA_VXLAN_LABEL = 26, + IFLA_VXLAN_GPE = 27, + IFLA_VXLAN_TTL_INHERIT = 28, + IFLA_VXLAN_DF = 29, + IFLA_VXLAN_VNIFILTER = 30, + IFLA_VXLAN_LOCALBYPASS = 31, + IFLA_VXLAN_LABEL_POLICY = 32, + __IFLA_VXLAN_MAX = 33, +}; + +struct ifla_vxlan_port_range { + __be16 low; + __be16 high; +}; + +struct vxlanhdr { + __be32 vx_flags; + __be32 vx_vni; +}; + +struct vxlanhdr_gbp { + u8 vx_flags; + u8 reserved_flags1: 3; + u8 policy_applied: 1; + u8 reserved_flags2: 2; + u8 dont_learn: 1; + u8 reserved_flags3: 1; + __be16 policy_id; + __be32 vx_vni; +}; + +struct vxlanhdr_gpe { + u8 oam_flag: 1; + u8 reserved_flags1: 1; + u8 np_applied: 1; + u8 instance_applied: 1; + u8 version: 2; + u8 reserved_flags2: 2; + u8 reserved_flags3; + u8 reserved_flags4; + u8 next_protocol; + __be32 vx_vni; +}; + +struct switchdev_notifier_vxlan_fdb_info { + struct switchdev_notifier_info info; + union vxlan_addr remote_ip; + __be16 remote_port; + __be32 remote_vni; + u32 remote_ifindex; + u8 eth_addr[6]; + __be32 vni; + bool offloaded; + bool added_by_user; +}; + +struct vxlan_fdb { + struct hlist_node hlist; + struct callback_head rcu; + long unsigned int updated; + long unsigned int used; + struct list_head remotes; + u8 eth_addr[6]; + u16 state; + __be32 vni; + u16 flags; + struct list_head nh_list; + struct nexthop *nh; + struct vxlan_dev *vdev; +}; + +struct vxlan_fdb_flush_desc { + bool ignore_default_entry; + long unsigned int state; + long unsigned int state_mask; + long unsigned int flags; + long unsigned int flags_mask; + __be32 src_vni; + u32 nhid; + __be32 vni; + __be16 port; + union vxlan_addr dst_ip; +}; + +struct ehci_iso_packet { + u64 bufp; + __le32 transaction; + u8 cross; + u32 buf1; +}; + +struct ehci_iso_sched { + struct list_head td_list; + unsigned int span; + unsigned int first_packet; + struct ehci_iso_packet packet[0]; +}; + +struct ehci_tt { + u16 bandwidth[8]; + struct list_head tt_list; + struct list_head ps_list; + struct usb_tt *usb_tt; + int tt_port; +}; + +struct metrousb_private { + spinlock_t lock; + int throttled; + long unsigned int control_state; +}; + +struct urb_to_usbip_flags { + u32 urb_flag; + u32 usbip_flag; +}; + +struct key_entry { + int type; + u32 code; + union { + u16 keycode; + struct { + u8 code; + u8 value; + } sw; + }; +}; + +struct pl031_vendor_data { + struct rtc_class_ops ops; + bool clockwatch; + bool st_weekday; + long unsigned int irqflags; + time64_t range_min; + timeu64_t range_max; +}; + +struct pl031_local { + struct pl031_vendor_data *vendor; + struct rtc_device *rtc; + void *base; +}; + +struct sdio_device_id { + __u8 class; + __u16 vendor; + __u16 device; + kernel_ulong_t driver_data; +}; + +struct sdio_driver { + char *name; + const struct sdio_device_id *id_table; + int (*probe)(struct sdio_func *, const struct sdio_device_id *); + void (*remove)(struct sdio_func *); + struct device_driver drv; +}; + +struct sec_debug_bd_info { + u32 soft_err_check; + u32 hard_err_check; + u32 icv_mac1st_word; + u32 sec_get_id; + u32 reserv_left[12]; +}; + +struct sec_out_bd_info { + u16 data; +}; + +struct pmu_irq_ops { + void (*enable_pmuirq)(unsigned int); + void (*disable_pmuirq)(unsigned int); + void (*free_pmuirq)(unsigned int, int, void *); +}; + +struct net_rate_estimator { + struct gnet_stats_basic_sync *bstats; + spinlock_t *stats_lock; + bool running; + struct gnet_stats_basic_sync *cpu_bstats; + u8 ewma_log; + u8 intvl_log; + seqcount_t seq; + u64 last_packets; + u64 last_bytes; + u64 avpps; + u64 avbps; + long unsigned int next_jiffies; + struct timer_list timer; + struct callback_head rcu; +}; + +struct compat_ifconf { + compat_int_t ifc_len; + compat_caddr_t ifcbuf; +}; + +enum tc_mq_command { + TC_MQ_CREATE = 0, + TC_MQ_DESTROY = 1, + TC_MQ_STATS = 2, + TC_MQ_GRAFT = 3, +}; + +struct tc_mq_opt_offload_graft_params { + long unsigned int queue; + u32 child_handle; +}; + +struct tc_mq_qopt_offload { + enum tc_mq_command command; + u32 handle; + union { + struct tc_qopt_offload_stats stats; + struct tc_mq_opt_offload_graft_params graft_params; + }; +}; + +struct mq_sched { + struct Qdisc **qdiscs; +}; + +struct tc_mirred { + __u32 index; + __u32 capab; + int action; + int refcnt; + int bindcnt; + int eaction; + __u32 ifindex; +}; + +enum { + TCA_MIRRED_UNSPEC = 0, + TCA_MIRRED_TM = 1, + TCA_MIRRED_PARMS = 2, + TCA_MIRRED_PAD = 3, + TCA_MIRRED_BLOCKID = 4, + __TCA_MIRRED_MAX = 5, +}; + +struct tcf_mirred { + struct tc_action common; + int tcfm_eaction; + u32 tcfm_blockid; + bool tcfm_mac_header_xmit; + struct net_device *tcfm_dev; + netdevice_tracker tcfm_dev_tracker; + struct list_head tcfm_list; + long: 64; +}; + +enum tc_prio_command { + TC_PRIO_REPLACE = 0, + TC_PRIO_DESTROY = 1, + TC_PRIO_STATS = 2, + TC_PRIO_GRAFT = 3, +}; + +struct tc_prio_qopt_offload_params { + int bands; + u8 priomap[16]; + struct gnet_stats_queue *qstats; +}; + +struct tc_prio_qopt_offload_graft_params { + u8 band; + u32 child_handle; +}; + +struct tc_prio_qopt_offload { + enum tc_prio_command command; + u32 handle; + u32 parent; + union { + struct tc_prio_qopt_offload_params replace_params; + struct tc_qopt_offload_stats stats; + struct tc_prio_qopt_offload_graft_params graft_params; + }; +}; + +struct prio_sched_data { + int bands; + struct tcf_proto *filter_list; + struct tcf_block *block; + u8 prio2band[16]; + struct Qdisc *queues[16]; +}; + +struct ethtool_forced_speed_map { + u32 speed; + long unsigned int caps[2]; + const u32 *cap_arr; + u32 arr_size; +}; + +enum { + ETHTOOL_A_PROFILE_UNSPEC = 0, + ETHTOOL_A_PROFILE_IRQ_MODERATION = 1, + __ETHTOOL_A_PROFILE_CNT = 2, + ETHTOOL_A_PROFILE_MAX = 1, +}; + +enum { + ETHTOOL_A_IRQ_MODERATION_UNSPEC = 0, + ETHTOOL_A_IRQ_MODERATION_USEC = 1, + ETHTOOL_A_IRQ_MODERATION_PKTS = 2, + ETHTOOL_A_IRQ_MODERATION_COMPS = 3, + __ETHTOOL_A_IRQ_MODERATION_CNT = 4, + ETHTOOL_A_IRQ_MODERATION_MAX = 3, +}; + +struct coalesce_reply_data { + struct ethnl_reply_data base; + struct ethtool_coalesce coalesce; + struct kernel_ethtool_coalesce kernel_coalesce; + u32 supported_params; +}; + +struct plca_reply_data { + struct ethnl_reply_data base; + struct phy_plca_cfg plca_cfg; + struct phy_plca_status plca_st; +}; + +enum cntl_msg_types { + IPCTNL_MSG_CT_NEW = 0, + IPCTNL_MSG_CT_GET = 1, + IPCTNL_MSG_CT_DELETE = 2, + IPCTNL_MSG_CT_GET_CTRZERO = 3, + IPCTNL_MSG_CT_GET_STATS_CPU = 4, + IPCTNL_MSG_CT_GET_STATS = 5, + IPCTNL_MSG_CT_GET_DYING = 6, + IPCTNL_MSG_CT_GET_UNCONFIRMED = 7, + IPCTNL_MSG_MAX = 8, +}; + +enum ctnl_exp_msg_types { + IPCTNL_MSG_EXP_NEW = 0, + IPCTNL_MSG_EXP_GET = 1, + IPCTNL_MSG_EXP_DELETE = 2, + IPCTNL_MSG_EXP_GET_STATS_CPU = 3, + IPCTNL_MSG_EXP_MAX = 4, +}; + +enum ctattr_type { + CTA_UNSPEC = 0, + CTA_TUPLE_ORIG = 1, + CTA_TUPLE_REPLY = 2, + CTA_STATUS = 3, + CTA_PROTOINFO = 4, + CTA_HELP = 5, + CTA_NAT_SRC = 6, + CTA_TIMEOUT = 7, + CTA_MARK = 8, + CTA_COUNTERS_ORIG = 9, + CTA_COUNTERS_REPLY = 10, + CTA_USE = 11, + CTA_ID = 12, + CTA_NAT_DST = 13, + CTA_TUPLE_MASTER = 14, + CTA_SEQ_ADJ_ORIG = 15, + CTA_NAT_SEQ_ADJ_ORIG = 15, + CTA_SEQ_ADJ_REPLY = 16, + CTA_NAT_SEQ_ADJ_REPLY = 16, + CTA_SECMARK = 17, + CTA_ZONE = 18, + CTA_SECCTX = 19, + CTA_TIMESTAMP = 20, + CTA_MARK_MASK = 21, + CTA_LABELS = 22, + CTA_LABELS_MASK = 23, + CTA_SYNPROXY = 24, + CTA_FILTER = 25, + CTA_STATUS_MASK = 26, + __CTA_MAX = 27, +}; + +enum ctattr_tuple { + CTA_TUPLE_UNSPEC = 0, + CTA_TUPLE_IP = 1, + CTA_TUPLE_PROTO = 2, + CTA_TUPLE_ZONE = 3, + __CTA_TUPLE_MAX = 4, +}; + +enum ctattr_ip { + CTA_IP_UNSPEC = 0, + CTA_IP_V4_SRC = 1, + CTA_IP_V4_DST = 2, + CTA_IP_V6_SRC = 3, + CTA_IP_V6_DST = 4, + __CTA_IP_MAX = 5, +}; + +enum ctattr_counters { + CTA_COUNTERS_UNSPEC = 0, + CTA_COUNTERS_PACKETS = 1, + CTA_COUNTERS_BYTES = 2, + CTA_COUNTERS32_PACKETS = 3, + CTA_COUNTERS32_BYTES = 4, + CTA_COUNTERS_PAD = 5, + __CTA_COUNTERS_MAX = 6, +}; + +enum ctattr_tstamp { + CTA_TIMESTAMP_UNSPEC = 0, + CTA_TIMESTAMP_START = 1, + CTA_TIMESTAMP_STOP = 2, + CTA_TIMESTAMP_PAD = 3, + __CTA_TIMESTAMP_MAX = 4, +}; + +enum ctattr_seqadj { + CTA_SEQADJ_UNSPEC = 0, + CTA_SEQADJ_CORRECTION_POS = 1, + CTA_SEQADJ_OFFSET_BEFORE = 2, + CTA_SEQADJ_OFFSET_AFTER = 3, + __CTA_SEQADJ_MAX = 4, +}; + +enum ctattr_synproxy { + CTA_SYNPROXY_UNSPEC = 0, + CTA_SYNPROXY_ISN = 1, + CTA_SYNPROXY_ITS = 2, + CTA_SYNPROXY_TSOFF = 3, + __CTA_SYNPROXY_MAX = 4, +}; + +enum ctattr_expect { + CTA_EXPECT_UNSPEC = 0, + CTA_EXPECT_MASTER = 1, + CTA_EXPECT_TUPLE = 2, + CTA_EXPECT_MASK = 3, + CTA_EXPECT_TIMEOUT = 4, + CTA_EXPECT_ID = 5, + CTA_EXPECT_HELP_NAME = 6, + CTA_EXPECT_ZONE = 7, + CTA_EXPECT_FLAGS = 8, + CTA_EXPECT_CLASS = 9, + CTA_EXPECT_NAT = 10, + CTA_EXPECT_FN = 11, + __CTA_EXPECT_MAX = 12, +}; + +enum ctattr_expect_nat { + CTA_EXPECT_NAT_UNSPEC = 0, + CTA_EXPECT_NAT_DIR = 1, + CTA_EXPECT_NAT_TUPLE = 2, + __CTA_EXPECT_NAT_MAX = 3, +}; + +enum ctattr_stats_cpu { + CTA_STATS_UNSPEC = 0, + CTA_STATS_SEARCHED = 1, + CTA_STATS_FOUND = 2, + CTA_STATS_NEW = 3, + CTA_STATS_INVALID = 4, + CTA_STATS_IGNORE = 5, + CTA_STATS_DELETE = 6, + CTA_STATS_DELETE_LIST = 7, + CTA_STATS_INSERT = 8, + CTA_STATS_INSERT_FAILED = 9, + CTA_STATS_DROP = 10, + CTA_STATS_EARLY_DROP = 11, + CTA_STATS_ERROR = 12, + CTA_STATS_SEARCH_RESTART = 13, + CTA_STATS_CLASH_RESOLVE = 14, + CTA_STATS_CHAIN_TOOLONG = 15, + __CTA_STATS_MAX = 16, +}; + +enum ctattr_stats_global { + CTA_STATS_GLOBAL_UNSPEC = 0, + CTA_STATS_GLOBAL_ENTRIES = 1, + CTA_STATS_GLOBAL_MAX_ENTRIES = 2, + __CTA_STATS_GLOBAL_MAX = 3, +}; + +enum ctattr_expect_stats { + CTA_STATS_EXP_UNSPEC = 0, + CTA_STATS_EXP_NEW = 1, + CTA_STATS_EXP_CREATE = 2, + CTA_STATS_EXP_DELETE = 3, + __CTA_STATS_EXP_MAX = 4, +}; + +enum ctattr_filter { + CTA_FILTER_UNSPEC = 0, + CTA_FILTER_ORIG_FLAGS = 1, + CTA_FILTER_REPLY_FLAGS = 2, + __CTA_FILTER_MAX = 3, +}; + +struct ctnetlink_list_dump_ctx { + struct nf_conn *last; + unsigned int cpu; + bool done; +}; + +struct ctnetlink_filter_u32 { + u32 val; + u32 mask; +}; + +struct ctnetlink_filter { + u8 family; + bool zone_filter; + u_int32_t orig_flags; + u_int32_t reply_flags; + struct nf_conntrack_tuple orig; + struct nf_conntrack_tuple reply; + struct nf_conntrack_zone zone; + struct ctnetlink_filter_u32 mark; + struct ctnetlink_filter_u32 status; +}; + +enum { + XT_CT_NOTRACK = 1, + XT_CT_NOTRACK_ALIAS = 2, + XT_CT_ZONE_DIR_ORIG = 4, + XT_CT_ZONE_DIR_REPL = 8, + XT_CT_ZONE_MARK = 16, + XT_CT_MASK = 31, +}; + +struct xt_ct_target_info { + __u16 flags; + __u16 zone; + __u32 ct_events; + __u32 exp_events; + char helper[16]; + struct nf_conn *ct; +}; + +struct xt_ct_target_info_v1 { + __u16 flags; + __u16 zone; + __u32 ct_events; + __u32 exp_events; + char helper[16]; + char timeout[32]; + struct nf_conn *ct; +}; + +enum { + XT_CONNLIMIT_INVERT = 1, + XT_CONNLIMIT_DADDR = 2, +}; + +struct xt_connlimit_info { + union { + union nf_inet_addr mask; + }; + unsigned int limit; + __u32 flags; + struct nf_conncount_data *data; +}; + +struct xt_ipcomp { + __u32 spis[2]; + __u8 invflags; + __u8 hdrres; +}; + +struct xt_pkttype_info { + int pkttype; + int invert; +}; + +struct hash_net4_elem { + __be32 ip; + u16 padding0; + u8 nomatch; + u8 cidr; +}; + +struct hash_net4 { + struct htable *table; + struct htable_gc gc; + u32 maxelem; + u32 initval; + u8 bucketsize; + struct list_head ad; + struct hash_net4_elem next; + struct net_prefixes nets[32]; +}; + +struct hash_net4_resize_ad { + struct list_head list; + enum ipset_adt ad; + struct hash_net4_elem d; + struct ip_set_ext ext; + struct ip_set_ext mext; + u32 flags; +}; + +struct hash_net6_elem { + union nf_inet_addr ip; + u16 padding0; + u8 nomatch; + u8 cidr; +}; + +struct hash_net6 { + struct htable *table; + struct htable_gc gc; + u32 maxelem; + u32 initval; + u8 bucketsize; + struct list_head ad; + struct hash_net6_elem next; + struct net_prefixes nets[128]; +}; + +struct hash_net6_resize_ad { + struct list_head list; + enum ipset_adt ad; + struct hash_net6_elem d; + struct ip_set_ext ext; + struct ip_set_ext mext; + u32 flags; +}; + +struct tcp_states_t { + int next_state[11]; +}; + +struct sock_bh_locked { + struct sock *sock; + local_lock_t bh_lock; +}; + +struct bpf_tcp_iter_state { + struct tcp_iter_state state; + unsigned int cur_sk; + unsigned int end_sk; + unsigned int max_sk; + struct sock **batch; + bool st_bucket_done; +}; + +struct bpf_iter__tcp { + union { + struct bpf_iter_meta *meta; + }; + union { + struct sock_common *sk_common; + }; + uid_t uid; +}; + +struct ipt_ECN_info { + __u8 operation; + __u8 ip_ect; + union { + struct { + __u8 ece: 1; + __u8 cwr: 1; + } tcp; + } proto; +}; + +struct ac6_iter_state { + struct seq_net_private p; + struct net_device *dev; +}; + +struct nft_ct_frag6_pernet { + struct ctl_table_header *nf_frag_frags_hdr; + struct fqdir *fqdir; +}; + +struct br_frame_type { + __be16 type; + int (*frame_handler)(struct net_bridge_port *, struct sk_buff *); + struct hlist_node list; +}; + +enum { + IFLA_BRIDGE_MST_UNSPEC = 0, + IFLA_BRIDGE_MST_ENTRY = 1, + __IFLA_BRIDGE_MST_MAX = 2, +}; + +enum { + IFLA_BRIDGE_MST_ENTRY_UNSPEC = 0, + IFLA_BRIDGE_MST_ENTRY_MSTI = 1, + IFLA_BRIDGE_MST_ENTRY_STATE = 2, + __IFLA_BRIDGE_MST_ENTRY_MAX = 3, +}; + +struct ebt_ip_info { + __be32 saddr; + __be32 daddr; + __be32 smsk; + __be32 dmsk; + __u8 tos; + __u8 protocol; + __u8 bitmask; + __u8 invflags; + union { + __u16 sport[2]; + __u8 icmp_type[2]; + __u8 igmp_type[2]; + }; + union { + __u16 dport[2]; + __u8 icmp_code[2]; + }; +}; + +union pkthdr___2 { + struct { + __be16 src; + __be16 dst; + } tcpudphdr; + struct { + u8 type; + u8 code; + } icmphdr; + struct { + u8 type; + } igmphdr; +}; + +struct ebt_mark_t_info { + long unsigned int mark; + int target; +}; + +enum xprt_xid_rb_cmp { + XID_RB_EQUAL = 0, + XID_RB_LEFT = 1, + XID_RB_RIGHT = 2, +}; + +struct rsc; + +struct gss_svc_data { + struct rpc_gss_wire_cred clcred; + u32 gsd_databody_offset; + struct rsc *rsci; + __be32 gsd_seq_num; + u8 gsd_scratch[40]; +}; + +struct gss_svc_seq_data { + u32 sd_max; + long unsigned int sd_win[2]; + spinlock_t sd_lock; +}; + +struct rsc { + struct cache_head h; + struct xdr_netobj handle; + struct svc_cred cred; + struct gss_svc_seq_data seqdata; + struct gss_ctx *mechctx; + struct callback_head callback_head; +}; + +struct rsi { + struct cache_head h; + struct xdr_netobj in_handle; + struct xdr_netobj in_token; + struct xdr_netobj out_handle; + struct xdr_netobj out_token; + int major_status; + int minor_status; + struct callback_head callback_head; +}; + +struct gss_domain { + struct auth_domain h; + u32 pseudoflavor; +}; + +enum sctp_ssf_flags { + SCTP_DATA_UNSENT = 0, + SCTP_DATA_SENT = 1, +}; + +enum { + SCTP_ARBITRARY_COOKIE_ECHO_LEN = 200, +}; + +struct sctp_infox { + struct sctp_info *sctpinfo; + struct sctp_association *asoc; +}; + +struct sctp_comm_param { + struct sk_buff *skb; + struct netlink_callback *cb; + const struct inet_diag_req_v2 *r; + const struct nlmsghdr *nlh; + bool net_admin; +}; + +#ifndef BPF_NO_PRESERVE_ACCESS_INDEX +#pragma clang attribute pop +#endif + +#endif /* __VMLINUX_H__ */ From 76dbf15d324226c5833a4755adc298efb9ebc888 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 11:04:36 +0800 Subject: [PATCH 18/33] feat(ebpf): commit vmlinux-x86_64.h, drop the temporary CI fetch step The Dockerfile ebpf-builder now regenerates the CO-RE bytecode per TARGETARCH from committed prog/vmlinux-.h; both headers are in place. Remove the one-shot CI artifact step that fetched the x86_64 dump. --- .github/workflows/execd-test.yml | 21 - .../execd/pkg/ebpf/prog/vmlinux-x86_64.h | 161230 +++++++++++++++ 2 files changed, 161230 insertions(+), 21 deletions(-) create mode 100644 components/execd/pkg/ebpf/prog/vmlinux-x86_64.h diff --git a/.github/workflows/execd-test.yml b/.github/workflows/execd-test.yml index 6ba814c20..190b14ba2 100644 --- a/.github/workflows/execd-test.yml +++ b/.github/workflows/execd-test.yml @@ -60,27 +60,6 @@ jobs: run: | CGO_ENABLED=1 go test -tags ebpf -count=1 ./pkg/ebpf/ - - name: TEMP fetch x86_64 vmlinux.h (one-shot, remove after committing) - if: runner.os == 'Linux' - run: | - docker run --rm --privileged \ - -v /sys/kernel/btf:/sys/kernel/btf:ro \ - -v /tmp/ebpf-dump:/out ubuntu:24.04 bash -c ' - apt-get update -qq >/dev/null 2>&1 && apt-get install -y -qq linux-tools-generic >/dev/null 2>&1 - BPFT=$(ls /usr/lib/linux-tools/*/bpftool 2>/dev/null | head -1) - [ -n "$BPFT" ] || { echo "no bpftool" >&2; exit 1; } - $BPFT btf dump file /sys/kernel/btf/vmlinux format c > /out/vmlinux-x86_64.h - ' - test -s /tmp/ebpf-dump/vmlinux-x86_64.h - - - name: Upload x86_64 vmlinux.h (one-shot) - if: runner.os == 'Linux' && always() - uses: actions/upload-artifact@v7 - with: - name: vmlinux-x86_64 - path: /tmp/ebpf-dump/vmlinux-x86_64.h - if-no-files-found: ignore - - name: Upload per-arch vmlinux.h (for bytecode regeneration) if: runner.os == 'Linux' && always() uses: actions/upload-artifact@v7 diff --git a/components/execd/pkg/ebpf/prog/vmlinux-x86_64.h b/components/execd/pkg/ebpf/prog/vmlinux-x86_64.h new file mode 100644 index 000000000..f30e6aae0 --- /dev/null +++ b/components/execd/pkg/ebpf/prog/vmlinux-x86_64.h @@ -0,0 +1,161230 @@ +#ifndef __VMLINUX_H__ +#define __VMLINUX_H__ + +#ifndef BPF_NO_PRESERVE_ACCESS_INDEX +#pragma clang attribute push (__attribute__((preserve_access_index)), apply_to = record) +#endif + +typedef unsigned char __u8; + +typedef short unsigned int __u16; + +typedef int __s32; + +typedef unsigned int __u32; + +typedef long long int __s64; + +typedef long long unsigned int __u64; + +typedef __u8 u8; + +typedef __u16 u16; + +typedef __s32 s32; + +typedef __u32 u32; + +typedef __s64 s64; + +typedef __u64 u64; + +enum { + false = 0, + true = 1, +}; + +typedef long int __kernel_long_t; + +typedef long unsigned int __kernel_ulong_t; + +typedef int __kernel_pid_t; + +typedef unsigned int __kernel_uid32_t; + +typedef __kernel_ulong_t __kernel_size_t; + +typedef __kernel_long_t __kernel_ssize_t; + +typedef long long int __kernel_time64_t; + +typedef __kernel_long_t __kernel_clock_t; + +typedef int __kernel_timer_t; + +typedef int __kernel_clockid_t; + +typedef __kernel_pid_t pid_t; + +typedef __kernel_clockid_t clockid_t; + +typedef _Bool bool; + +typedef __kernel_uid32_t uid_t; + +typedef long unsigned int uintptr_t; + +typedef __kernel_size_t size_t; + +typedef __kernel_ssize_t ssize_t; + +typedef s64 ktime_t; + +typedef struct { + int counter; +} atomic_t; + +typedef struct { + s64 counter; +} atomic64_t; + +struct list_head { + struct list_head *next; + struct list_head *prev; +}; + +struct hlist_node; + +struct hlist_head { + struct hlist_node *first; +}; + +struct hlist_node { + struct hlist_node *next; + struct hlist_node **pprev; +}; + +struct callback_head { + struct callback_head *next; + void (*func)(struct callback_head *); +}; + +struct thread_info { + long unsigned int flags; + long unsigned int syscall_work; + u32 status; + u32 cpu; +}; + +struct refcount_struct { + atomic_t refs; +}; + +typedef struct refcount_struct refcount_t; + +struct llist_node { + struct llist_node *next; +}; + +struct __call_single_node { + struct llist_node llist; + union { + unsigned int u_flags; + atomic_t a_flags; + }; + u16 src; + u16 dst; +}; + +struct load_weight { + long unsigned int weight; + u32 inv_weight; +}; + +struct rb_node { + long unsigned int __rb_parent_color; + struct rb_node *rb_right; + struct rb_node *rb_left; +}; + +struct sched_avg { + u64 last_update_time; + u64 load_sum; + u64 runnable_sum; + u32 util_sum; + u32 period_contrib; + long unsigned int load_avg; + long unsigned int runnable_avg; + long unsigned int util_avg; + unsigned int util_est; +}; + +struct cfs_rq; + +struct sched_entity { + struct load_weight load; + struct rb_node run_node; + u64 deadline; + u64 min_vruntime; + u64 min_slice; + struct list_head group_node; + unsigned char on_rq; + unsigned char sched_delayed; + unsigned char rel_deadline; + unsigned char custom_slice; + u64 exec_start; + u64 sum_exec_runtime; + u64 prev_sum_exec_runtime; + u64 vruntime; + union { + s64 vlag; + u64 vprot; + }; + u64 slice; + u64 nr_migrations; + int depth; + struct sched_entity *parent; + struct cfs_rq *cfs_rq; + struct cfs_rq *my_q; + long unsigned int runnable_weight; + long: 64; + struct sched_avg avg; +}; + +struct sched_rt_entity { + struct list_head run_list; + long unsigned int timeout; + long unsigned int watchdog_stamp; + unsigned int time_slice; + short unsigned int on_rq; + short unsigned int on_list; + struct sched_rt_entity *back; +}; + +struct timerqueue_node { + struct rb_node node; + ktime_t expires; +}; + +enum hrtimer_restart { + HRTIMER_NORESTART = 0, + HRTIMER_RESTART = 1, +}; + +struct hrtimer_clock_base; + +struct hrtimer { + struct timerqueue_node node; + ktime_t _softexpires; + enum hrtimer_restart (*function)(struct hrtimer *); + struct hrtimer_clock_base *base; + u8 state; + u8 is_rel; + u8 is_soft; + u8 is_hard; +}; + +struct task_struct; + +struct sched_dl_entity; + +typedef struct task_struct * (*dl_server_pick_f)(struct sched_dl_entity *); + +struct rq; + +struct sched_dl_entity { + struct rb_node rb_node; + u64 dl_runtime; + u64 dl_deadline; + u64 dl_period; + u64 dl_bw; + u64 dl_density; + s64 runtime; + u64 deadline; + unsigned int flags; + unsigned int dl_throttled: 1; + unsigned int dl_yielded: 1; + unsigned int dl_non_contending: 1; + unsigned int dl_overrun: 1; + unsigned int dl_server: 1; + unsigned int dl_server_active: 1; + unsigned int dl_defer: 1; + unsigned int dl_defer_armed: 1; + unsigned int dl_defer_running: 1; + struct hrtimer dl_timer; + struct hrtimer inactive_timer; + struct rq *rq; + dl_server_pick_f server_pick_task; + struct sched_dl_entity *pi_se; +}; + +struct scx_dsq_list_node { + struct list_head node; + u32 flags; + u32 priv; +}; + +typedef atomic64_t atomic_long_t; + +struct scx_dispatch_q; + +struct cgroup; + +struct sched_ext_entity { + struct scx_dispatch_q *dsq; + struct scx_dsq_list_node dsq_list; + struct rb_node dsq_priq; + u32 dsq_seq; + u32 dsq_flags; + u32 flags; + u32 weight; + s32 sticky_cpu; + s32 holding_cpu; + s32 selected_cpu; + u32 kf_mask; + struct task_struct *kf_tasks[2]; + atomic_long_t ops_state; + struct list_head runnable_node; + long unsigned int runnable_at; + u64 core_sched_at; + u64 ddsp_dsq_id; + u64 ddsp_enq_flags; + u64 slice; + u64 dsq_vtime; + bool disallow; + struct cgroup *cgrp_moving_from; + struct list_head tasks_node; +}; + +struct uclamp_se { + unsigned int value: 11; + unsigned int bucket_id: 3; + unsigned int active: 1; + unsigned int user_defined: 1; +}; + +struct sched_statistics { + u64 wait_start; + u64 wait_max; + u64 wait_count; + u64 wait_sum; + u64 iowait_count; + u64 iowait_sum; + u64 sleep_start; + u64 sleep_max; + s64 sum_sleep_runtime; + u64 block_start; + u64 block_max; + s64 sum_block_runtime; + s64 exec_max; + u64 slice_max; + u64 nr_migrations_cold; + u64 nr_failed_migrations_affine; + u64 nr_failed_migrations_running; + u64 nr_failed_migrations_hot; + u64 nr_forced_migrations; + u64 nr_wakeups; + u64 nr_wakeups_sync; + u64 nr_wakeups_migrate; + u64 nr_wakeups_local; + u64 nr_wakeups_remote; + u64 nr_wakeups_affine; + u64 nr_wakeups_affine_attempts; + u64 nr_wakeups_passive; + u64 nr_wakeups_idle; + u64 core_forceidle_sum; + long: 64; + long: 64; + long: 64; +}; + +struct cpumask { + long unsigned int bits[128]; +}; + +typedef struct cpumask cpumask_t; + +union rcu_special { + struct { + u8 blocked; + u8 need_qs; + u8 exp_hint; + u8 need_mb; + } b; + u32 s; +}; + +struct sched_info { + long unsigned int pcount; + long long unsigned int run_delay; + long long unsigned int max_run_delay; + long long unsigned int min_run_delay; + long long unsigned int last_arrival; + long long unsigned int last_queued; +}; + +struct plist_node { + int prio; + struct list_head prio_list; + struct list_head node_list; +}; + +enum timespec_type { + TT_NONE = 0, + TT_NATIVE = 1, + TT_COMPAT = 2, +}; + +struct __kernel_timespec; + +struct old_timespec32; + +struct pollfd; + +struct restart_block { + long unsigned int arch_data; + long int (*fn)(struct restart_block *); + union { + struct { + u32 *uaddr; + u32 val; + u32 flags; + u32 bitset; + u64 time; + u32 *uaddr2; + } futex; + struct { + clockid_t clockid; + enum timespec_type type; + union { + struct __kernel_timespec *rmtp; + struct old_timespec32 *compat_rmtp; + }; + u64 expires; + } nanosleep; + struct { + struct pollfd *ufds; + int nfds; + int has_timeout; + long unsigned int tv_sec; + long unsigned int tv_nsec; + } poll; + }; +}; + +struct qspinlock { + union { + atomic_t val; + struct { + u8 locked; + u8 pending; + }; + struct { + u16 locked_pending; + u16 tail; + }; + }; +}; + +typedef struct qspinlock arch_spinlock_t; + +struct raw_spinlock { + arch_spinlock_t raw_lock; +}; + +typedef struct raw_spinlock raw_spinlock_t; + +struct prev_cputime { + u64 utime; + u64 stime; + raw_spinlock_t lock; +}; + +struct seqcount { + unsigned int sequence; +}; + +typedef struct seqcount seqcount_t; + +enum vtime_state { + VTIME_INACTIVE = 0, + VTIME_IDLE = 1, + VTIME_SYS = 2, + VTIME_USER = 3, + VTIME_GUEST = 4, +}; + +struct vtime { + seqcount_t seqcount; + long long unsigned int starttime; + enum vtime_state state; + unsigned int cpu; + u64 utime; + u64 stime; + u64 gtime; +}; + +struct rb_root { + struct rb_node *rb_node; +}; + +struct rb_root_cached { + struct rb_root rb_root; + struct rb_node *rb_leftmost; +}; + +struct timerqueue_head { + struct rb_root_cached rb_root; +}; + +struct posix_cputimer_base { + u64 nextevt; + struct timerqueue_head tqhead; +}; + +struct posix_cputimers { + struct posix_cputimer_base bases[3]; + unsigned int timers_active; + unsigned int expiry_active; +}; + +struct optimistic_spin_queue { + atomic_t tail; +}; + +struct mutex { + atomic_long_t owner; + raw_spinlock_t wait_lock; + struct optimistic_spin_queue osq; + struct list_head wait_list; +}; + +struct posix_cputimers_work { + struct callback_head work; + struct mutex mutex; + unsigned int scheduled; +}; + +struct sem_undo_list; + +struct sysv_sem { + struct sem_undo_list *undo_list; +}; + +struct sysv_shm { + struct list_head shm_clist; +}; + +typedef struct { + long unsigned int sig[1]; +} sigset_t; + +struct sigpending { + struct list_head list; + sigset_t signal; +}; + +typedef struct { + uid_t val; +} kuid_t; + +struct seccomp_filter; + +struct seccomp { + int mode; + atomic_t filter_count; + struct seccomp_filter *filter; +}; + +struct syscall_user_dispatch { + char *selector; + long unsigned int offset; + long unsigned int len; + bool on_dispatch; +}; + +struct spinlock { + union { + struct raw_spinlock rlock; + }; +}; + +typedef struct spinlock spinlock_t; + +struct wake_q_node { + struct wake_q_node *next; +}; + +struct task_io_accounting { + u64 rchar; + u64 wchar; + u64 syscr; + u64 syscw; + u64 read_bytes; + u64 write_bytes; + u64 cancelled_write_bytes; +}; + +typedef struct { + long unsigned int bits[16]; +} nodemask_t; + +struct seqcount_spinlock { + seqcount_t seqcount; +}; + +typedef struct seqcount_spinlock seqcount_spinlock_t; + +struct arch_tlbflush_unmap_batch { + struct cpumask cpumask; + bool unmapped_pages; +}; + +struct tlbflush_unmap_batch { + struct arch_tlbflush_unmap_batch arch; + bool flush_required; + bool writable; +}; + +struct page; + +struct page_frag { + struct page *page; + __u32 offset; + __u32 size; +}; + +struct latency_record { + long unsigned int backtrace[12]; + unsigned int count; + long unsigned int time; + long unsigned int max; +}; + +struct kmap_ctrl {}; + +struct timer_list { + struct hlist_node entry; + long unsigned int expires; + void (*function)(struct timer_list *); + u32 flags; +}; + +struct llist_head { + struct llist_node *first; +}; + +struct da_monitor { + bool monitoring; + unsigned int curr_state; +}; + +struct ltl_monitor {}; + +union rv_task_monitor { + struct da_monitor da_mon; + struct ltl_monitor ltl_mon; +}; + +struct desc_struct { + u16 limit0; + u16 base0; + u16 base1: 8; + u16 type: 4; + u16 s: 1; + u16 dpl: 2; + u16 p: 1; + u16 limit1: 4; + u16 avl: 1; + u16 l: 1; + u16 d: 1; + u16 g: 1; + u16 base2: 8; +}; + +struct thread_shstk { + u64 base; + u64 size; +}; + +struct perf_event; + +struct io_bitmap; + +struct thread_struct { + struct desc_struct tls_array[3]; + long unsigned int sp; + short unsigned int es; + short unsigned int ds; + short unsigned int fsindex; + short unsigned int gsindex; + long unsigned int fsbase; + long unsigned int gsbase; + struct perf_event *ptrace_bps[4]; + long unsigned int virtual_dr6; + long unsigned int ptrace_dr7; + long unsigned int cr2; + long unsigned int trap_nr; + long unsigned int error_code; + struct io_bitmap *io_bitmap; + long unsigned int iopl_emul; + unsigned int iopl_warn: 1; + u32 pkru; + long unsigned int features; + long unsigned int features_locked; + struct thread_shstk shstk; +}; + +struct sched_class; + +struct task_group; + +struct mm_struct; + +struct address_space; + +struct pid; + +struct completion; + +struct cred; + +struct key; + +struct nameidata; + +struct fs_struct; + +struct files_struct; + +struct io_uring_task; + +struct nsproxy; + +struct signal_struct; + +struct sighand_struct; + +struct audit_context; + +struct rt_mutex_waiter; + +struct bio_list; + +struct blk_plug; + +struct reclaim_state; + +struct io_context; + +struct capture_control; + +struct kernel_siginfo; + +typedef struct kernel_siginfo kernel_siginfo_t; + +struct css_set; + +struct robust_list_head; + +struct compat_robust_list_head; + +struct futex_pi_state; + +struct perf_event_context; + +struct perf_ctx_data; + +struct mempolicy; + +struct numa_group; + +struct rseq; + +struct pipe_inode_info; + +struct task_delay_info; + +struct mem_cgroup; + +struct obj_cgroup; + +struct gendisk; + +struct uprobe_task; + +struct vm_struct; + +struct bpf_local_storage; + +struct bpf_run_ctx; + +struct bpf_net_context; + +struct user_event_mm; + +struct task_struct { + struct thread_info thread_info; + unsigned int __state; + unsigned int saved_state; + void *stack; + refcount_t usage; + unsigned int flags; + unsigned int ptrace; + int on_cpu; + struct __call_single_node wake_entry; + unsigned int wakee_flips; + long unsigned int wakee_flip_decay_ts; + struct task_struct *last_wakee; + int recent_used_cpu; + int wake_cpu; + int on_rq; + int prio; + int static_prio; + int normal_prio; + unsigned int rt_priority; + struct sched_entity se; + struct sched_rt_entity rt; + struct sched_dl_entity dl; + struct sched_dl_entity *dl_server; + struct sched_ext_entity scx; + const struct sched_class *sched_class; + struct rb_node core_node; + long unsigned int core_cookie; + unsigned int core_occupation; + struct task_group *sched_task_group; + struct uclamp_se uclamp_req[2]; + struct uclamp_se uclamp[2]; + struct sched_statistics stats; + struct hlist_head preempt_notifiers; + unsigned int btrace_seq; + unsigned int policy; + long unsigned int max_allowed_capacity; + int nr_cpus_allowed; + const cpumask_t *cpus_ptr; + cpumask_t *user_cpus_ptr; + cpumask_t cpus_mask; + void *migration_pending; + short unsigned int migration_disabled; + short unsigned int migration_flags; + int trc_reader_nesting; + int trc_ipi_to_cpu; + union rcu_special trc_reader_special; + struct list_head trc_holdout_list; + struct list_head trc_blkd_node; + int trc_blkd_cpu; + struct sched_info sched_info; + struct list_head tasks; + struct plist_node pushable_tasks; + struct rb_node pushable_dl_tasks; + struct mm_struct *mm; + struct mm_struct *active_mm; + struct address_space *faults_disabled_mapping; + int exit_state; + int exit_code; + int exit_signal; + int pdeath_signal; + long unsigned int jobctl; + unsigned int personality; + unsigned int sched_reset_on_fork: 1; + unsigned int sched_contributes_to_load: 1; + unsigned int sched_migrated: 1; + unsigned int sched_task_hot: 1; + long: 28; + unsigned int sched_remote_wakeup: 1; + unsigned int sched_rt_mutex: 1; + unsigned int user_dumpable: 1; + unsigned int in_execve: 1; + unsigned int in_iowait: 1; + unsigned int restore_sigmask: 1; + unsigned int in_lru_fault: 1; + unsigned int no_cgroup_migration: 1; + unsigned int frozen: 1; + unsigned int use_memdelay: 1; + unsigned int in_memstall: 1; + unsigned int in_eventfd: 1; + unsigned int pasid_activated: 1; + unsigned int reported_split_lock: 1; + unsigned int in_thrashing: 1; + unsigned int in_nf_duplicate: 1; + long unsigned int atomic_flags; + struct restart_block restart_block; + pid_t pid; + pid_t tgid; + long unsigned int stack_canary; + struct task_struct *real_parent; + struct task_struct *parent; + struct list_head children; + struct list_head sibling; + struct task_struct *group_leader; + struct list_head ptraced; + struct list_head ptrace_entry; + struct pid *thread_pid; + struct hlist_node pid_links[4]; + struct list_head thread_node; + struct completion *vfork_done; + int *set_child_tid; + int *clear_child_tid; + void *worker_private; + u64 utime; + u64 stime; + u64 gtime; + struct prev_cputime prev_cputime; + struct vtime vtime; + atomic_t tick_dep_mask; + long unsigned int nvcsw; + long unsigned int nivcsw; + u64 start_time; + u64 start_boottime; + long unsigned int min_flt; + long unsigned int maj_flt; + struct posix_cputimers posix_cputimers; + struct posix_cputimers_work posix_cputimers_work; + const struct cred *ptracer_cred; + const struct cred *real_cred; + const struct cred *cred; + struct key *cached_requested_key; + char comm[16]; + struct nameidata *nameidata; + struct sysv_sem sysvsem; + struct sysv_shm sysvshm; + long unsigned int last_switch_count; + long unsigned int last_switch_time; + struct fs_struct *fs; + struct files_struct *files; + struct io_uring_task *io_uring; + struct nsproxy *nsproxy; + struct signal_struct *signal; + struct sighand_struct *sighand; + sigset_t blocked; + sigset_t real_blocked; + sigset_t saved_sigmask; + struct sigpending pending; + long unsigned int sas_ss_sp; + size_t sas_ss_size; + unsigned int sas_ss_flags; + struct callback_head *task_works; + struct audit_context *audit_context; + kuid_t loginuid; + unsigned int sessionid; + struct seccomp seccomp; + struct syscall_user_dispatch syscall_dispatch; + u64 parent_exec_id; + u64 self_exec_id; + spinlock_t alloc_lock; + raw_spinlock_t pi_lock; + struct wake_q_node wake_q; + struct rb_root_cached pi_waiters; + struct task_struct *pi_top_task; + struct rt_mutex_waiter *pi_blocked_on; + struct mutex *blocked_on; + long unsigned int blocker; + unsigned int in_ubsan; + void *journal_info; + struct bio_list *bio_list; + struct blk_plug *plug; + struct reclaim_state *reclaim_state; + struct io_context *io_context; + struct capture_control *capture_control; + long unsigned int ptrace_message; + kernel_siginfo_t *last_siginfo; + struct task_io_accounting ioac; + unsigned int psi_flags; + u64 acct_rss_mem1; + u64 acct_vm_mem1; + u64 acct_timexpd; + nodemask_t mems_allowed; + seqcount_spinlock_t mems_allowed_seq; + int cpuset_mem_spread_rotor; + struct css_set *cgroups; + struct list_head cg_list; + u32 closid; + u32 rmid; + struct robust_list_head *robust_list; + struct compat_robust_list_head *compat_robust_list; + struct list_head pi_state_list; + struct futex_pi_state *pi_state_cache; + struct mutex futex_exit_mutex; + unsigned int futex_state; + u8 perf_recursion[4]; + struct perf_event_context *perf_event_ctxp; + struct mutex perf_event_mutex; + struct list_head perf_event_list; + struct perf_ctx_data *perf_ctx_data; + struct mempolicy *mempolicy; + short int il_prev; + u8 il_weight; + short int pref_node_fork; + int numa_scan_seq; + unsigned int numa_scan_period; + unsigned int numa_scan_period_max; + int numa_preferred_nid; + long unsigned int numa_migrate_retry; + u64 node_stamp; + u64 last_task_numa_placement; + u64 last_sum_exec_runtime; + struct callback_head numa_work; + struct numa_group *numa_group; + long unsigned int *numa_faults; + long unsigned int total_numa_faults; + long unsigned int numa_faults_locality[3]; + long unsigned int numa_pages_migrated; + struct rseq *rseq; + u32 rseq_len; + u32 rseq_sig; + long unsigned int rseq_event_mask; + int mm_cid; + int last_mm_cid; + int migrate_from_cpu; + int mm_cid_active; + struct callback_head cid_work; + struct tlbflush_unmap_batch tlb_ubc; + struct pipe_inode_info *splice_pipe; + struct page_frag task_frag; + struct task_delay_info *delays; + int nr_dirtied; + int nr_dirtied_pause; + long unsigned int dirty_paused_when; + int latency_record_count; + struct latency_record latency_record[32]; + u64 timer_slack_ns; + u64 default_timer_slack_ns; + int curr_ret_stack; + int curr_ret_depth; + long unsigned int *ret_stack; + long long unsigned int ftrace_timestamp; + long long unsigned int ftrace_sleeptime; + atomic_t trace_overrun; + atomic_t tracing_graph_pause; + long unsigned int trace_recursion; + unsigned int memcg_nr_pages_over_high; + struct mem_cgroup *active_memcg; + struct obj_cgroup *objcg; + struct gendisk *throttle_disk; + struct uprobe_task *utask; + unsigned int sequential_io; + unsigned int sequential_io_avg; + struct kmap_ctrl kmap_ctrl; + struct callback_head rcu; + refcount_t rcu_users; + int pagefault_disabled; + struct task_struct *oom_reaper_list; + struct timer_list oom_reaper_timer; + struct vm_struct *stack_vm_area; + refcount_t stack_refcount; + int patch_state; + void *security; + struct bpf_local_storage *bpf_storage; + struct bpf_run_ctx *bpf_ctx; + struct bpf_net_context *bpf_net_context; + void *mce_vaddr; + __u64 mce_kflags; + u64 mce_addr; + __u64 mce_ripv: 1; + __u64 mce_whole_page: 1; + __u64 __mce_reserved: 62; + struct callback_head mce_kill_me; + int mce_count; + struct llist_head kretprobe_instances; + struct llist_head rethooks; + struct callback_head l1d_flush_kill; + union rv_task_monitor rv[2]; + struct user_event_mm *user_event_mm; + struct thread_struct thread; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +typedef __u32 Elf32_Word; + +struct elf32_note { + Elf32_Word n_namesz; + Elf32_Word n_descsz; + Elf32_Word n_type; +}; + +struct obs_kernel_param { + const char *str; + int (*setup_func)(char *); + int early; +}; + +struct __kernel_timespec { + __kernel_time64_t tv_sec; + long long int tv_nsec; +}; + +enum pid_type { + PIDTYPE_PID = 0, + PIDTYPE_TGID = 1, + PIDTYPE_PGID = 2, + PIDTYPE_SID = 3, + PIDTYPE_MAX = 4, +}; + +union sigval { + int sival_int; + void *sival_ptr; +}; + +typedef union sigval sigval_t; + +union __sifields { + struct { + __kernel_pid_t _pid; + __kernel_uid32_t _uid; + } _kill; + struct { + __kernel_timer_t _tid; + int _overrun; + sigval_t _sigval; + int _sys_private; + } _timer; + struct { + __kernel_pid_t _pid; + __kernel_uid32_t _uid; + sigval_t _sigval; + } _rt; + struct { + __kernel_pid_t _pid; + __kernel_uid32_t _uid; + int _status; + __kernel_clock_t _utime; + __kernel_clock_t _stime; + } _sigchld; + struct { + void *_addr; + union { + int _trapno; + short int _addr_lsb; + struct { + char _dummy_bnd[8]; + void *_lower; + void *_upper; + } _addr_bnd; + struct { + char _dummy_pkey[8]; + __u32 _pkey; + } _addr_pkey; + struct { + long unsigned int _data; + __u32 _type; + __u32 _flags; + } _perf; + }; + } _sigfault; + struct { + long int _band; + int _fd; + } _sigpoll; + struct { + void *_call_addr; + int _syscall; + unsigned int _arch; + } _sigsys; +}; + +struct kernel_siginfo { + struct { + int si_signo; + int si_errno; + int si_code; + union __sifields _sifields; + }; +}; + +enum fortify_func { + FORTIFY_FUNC_strncpy = 0, + FORTIFY_FUNC_strnlen = 1, + FORTIFY_FUNC_strlen = 2, + FORTIFY_FUNC_strscpy = 3, + FORTIFY_FUNC_strlcat = 4, + FORTIFY_FUNC_strcat = 5, + FORTIFY_FUNC_strncat = 6, + FORTIFY_FUNC_memset = 7, + FORTIFY_FUNC_memcpy = 8, + FORTIFY_FUNC_memmove = 9, + FORTIFY_FUNC_memscan = 10, + FORTIFY_FUNC_memcmp = 11, + FORTIFY_FUNC_memchr = 12, + FORTIFY_FUNC_memchr_inv = 13, + FORTIFY_FUNC_kmemdup = 14, + FORTIFY_FUNC_strcpy = 15, + FORTIFY_FUNC_UNKNOWN = 16, +}; + +struct rseq { + __u32 cpu_id_start; + __u32 cpu_id; + __u64 rseq_cs; + __u32 flags; + __u32 node_id; + __u32 mm_cid; + char end[0]; +}; + +struct rhash_head { + struct rhash_head *next; +}; + +struct scx_dispatch_q { + raw_spinlock_t lock; + struct list_head list; + struct rb_root priq; + u32 nr; + u32 seq; + u64 id; + struct rhash_head hash_node; + struct llist_node free_node; + struct callback_head rcu; +}; + +enum { + TASK_COMM_LEN = 16, +}; + +enum uclamp_id { + UCLAMP_MIN = 0, + UCLAMP_MAX = 1, + UCLAMP_CNT = 2, +}; + +struct rq_flags; + +struct affinity_context; + +struct sched_class { + int uclamp_enabled; + void (*enqueue_task)(struct rq *, struct task_struct *, int); + bool (*dequeue_task)(struct rq *, struct task_struct *, int); + void (*yield_task)(struct rq *); + bool (*yield_to_task)(struct rq *, struct task_struct *); + void (*wakeup_preempt)(struct rq *, struct task_struct *, int); + int (*balance)(struct rq *, struct task_struct *, struct rq_flags *); + struct task_struct * (*pick_task)(struct rq *); + struct task_struct * (*pick_next_task)(struct rq *, struct task_struct *); + void (*put_prev_task)(struct rq *, struct task_struct *, struct task_struct *); + void (*set_next_task)(struct rq *, struct task_struct *, bool); + int (*select_task_rq)(struct task_struct *, int, int); + void (*migrate_task_rq)(struct task_struct *, int); + void (*task_woken)(struct rq *, struct task_struct *); + void (*set_cpus_allowed)(struct task_struct *, struct affinity_context *); + void (*rq_online)(struct rq *); + void (*rq_offline)(struct rq *); + struct rq * (*find_lock_rq)(struct task_struct *, struct rq *); + void (*task_tick)(struct rq *, struct task_struct *, int); + void (*task_fork)(struct task_struct *); + void (*task_dead)(struct task_struct *); + void (*switching_to)(struct rq *, struct task_struct *); + void (*switched_from)(struct rq *, struct task_struct *); + void (*switched_to)(struct rq *, struct task_struct *); + void (*reweight_task)(struct rq *, struct task_struct *, const struct load_weight *); + void (*prio_changed)(struct rq *, struct task_struct *, int); + unsigned int (*get_rr_interval)(struct rq *, struct task_struct *); + void (*update_curr)(struct rq *); + void (*task_change_group)(struct task_struct *); + int (*task_is_throttled)(struct task_struct *, int); +}; + +typedef unsigned int __kernel_gid32_t; + +typedef __kernel_gid32_t gid_t; + +typedef struct { + gid_t val; +} kgid_t; + +typedef struct { + u64 val; +} kernel_cap_t; + +struct user_struct; + +struct user_namespace; + +struct ucounts; + +struct group_info; + +struct cred { + atomic_long_t usage; + kuid_t uid; + kgid_t gid; + kuid_t suid; + kgid_t sgid; + kuid_t euid; + kgid_t egid; + kuid_t fsuid; + kgid_t fsgid; + unsigned int securebits; + kernel_cap_t cap_inheritable; + kernel_cap_t cap_permitted; + kernel_cap_t cap_effective; + kernel_cap_t cap_bset; + kernel_cap_t cap_ambient; + unsigned char jit_keyring; + struct key *session_keyring; + struct key *process_keyring; + struct key *thread_keyring; + struct key *request_key_auth; + void *security; + struct user_struct *user; + struct user_namespace *user_ns; + struct ucounts *ucounts; + struct group_info *group_info; + union { + int non_rcu; + struct callback_head rcu; + }; +}; + +struct uts_namespace; + +struct ipc_namespace; + +struct mnt_namespace; + +struct pid_namespace; + +struct net; + +struct time_namespace; + +struct cgroup_namespace; + +struct nsproxy { + refcount_t count; + struct uts_namespace *uts_ns; + struct ipc_namespace *ipc_ns; + struct mnt_namespace *mnt_ns; + struct pid_namespace *pid_ns_for_children; + struct net *net_ns; + struct time_namespace *time_ns; + struct time_namespace *time_ns_for_children; + struct cgroup_namespace *cgroup_ns; +}; + +struct new_utsname { + char sysname[65]; + char nodename[65]; + char release[65]; + char version[65]; + char machine[65]; + char domainname[65]; +}; + +struct dentry; + +struct proc_ns_operations; + +struct ns_common { + struct dentry *stashed; + const struct proc_ns_operations *ops; + unsigned int inum; + refcount_t count; +}; + +struct uts_namespace { + struct new_utsname name; + struct user_namespace *user_ns; + struct ucounts *ucounts; + struct ns_common ns; +}; + +struct nsset { + unsigned int flags; + struct nsproxy *nsproxy; + struct fs_struct *fs; + const struct cred *cred; +}; + +struct proc_ns_operations { + const char *name; + const char *real_ns_name; + int type; + struct ns_common * (*get)(struct task_struct *); + void (*put)(struct ns_common *); + int (*install)(struct nsset *, struct ns_common *); + struct user_namespace * (*owner)(struct ns_common *); + struct ns_common * (*get_parent)(struct ns_common *); +}; + +enum init_ns_ino { + IPC_NS_INIT_INO = 4026531839, + UTS_NS_INIT_INO = 4026531838, + USER_NS_INIT_INO = 4026531837, + PID_NS_INIT_INO = 4026531836, + CGROUP_NS_INIT_INO = 4026531835, + TIME_NS_INIT_INO = 4026531834, + NET_NS_INIT_INO = 4026531833, + MNT_NS_INIT_INO = 4026531832, +}; + +enum { + PROC_IPC_INIT_INO = 4026531839, + PROC_UTS_INIT_INO = 4026531838, + PROC_USER_INIT_INO = 4026531837, + PROC_PID_INIT_INO = 4026531836, + PROC_CGROUP_INIT_INO = 4026531835, + PROC_TIME_INIT_INO = 4026531834, + PROC_NET_INIT_INO = 4026531833, + PROC_MNT_INIT_INO = 4026531832, +}; + +typedef signed char __s8; + +typedef short int __s16; + +typedef __s8 s8; + +typedef __s16 s16; + +typedef long long int __kernel_loff_t; + +typedef unsigned int __poll_t; + +typedef u32 __kernel_dev_t; + +typedef __kernel_dev_t dev_t; + +typedef short unsigned int umode_t; + +typedef __kernel_loff_t loff_t; + +typedef s32 int32_t; + +typedef u32 uint32_t; + +typedef u64 sector_t; + +typedef u64 blkcnt_t; + +typedef unsigned int gfp_t; + +typedef unsigned int fmode_t; + +typedef u64 phys_addr_t; + +typedef phys_addr_t resource_size_t; + +typedef struct { + atomic_t refcnt; +} rcuref_t; + +struct rcuwait { + struct task_struct *task; +}; + +struct lock_class_key {}; + +struct fs_context; + +struct fs_parameter_spec; + +struct super_block; + +struct module; + +struct file_system_type { + const char *name; + int fs_flags; + int (*init_fs_context)(struct fs_context *); + const struct fs_parameter_spec *parameters; + struct dentry * (*mount)(struct file_system_type *, int, const char *, void *); + void (*kill_sb)(struct super_block *); + struct module *owner; + struct file_system_type *next; + struct hlist_head fs_supers; + struct lock_class_key s_lock_key; + struct lock_class_key s_umount_key; + struct lock_class_key s_vfs_rename_key; + struct lock_class_key s_writers_key[3]; + struct lock_class_key i_lock_key; + struct lock_class_key i_mutex_key; + struct lock_class_key invalidate_lock_key; + struct lock_class_key i_mutex_dir_key; +}; + +struct qrwlock { + union { + atomic_t cnts; + struct { + u8 wlocked; + u8 __lstate[3]; + }; + }; + arch_spinlock_t wait_lock; +}; + +typedef struct qrwlock arch_rwlock_t; + +struct lockdep_map {}; + +struct ratelimit_state { + raw_spinlock_t lock; + int interval; + int burst; + atomic_t rs_n_left; + atomic_t missed; + unsigned int flags; + long unsigned int begin; +}; + +struct jump_entry { + s32 code; + s32 target; + long int key; +}; + +struct static_key_mod; + +struct static_key { + atomic_t enabled; + union { + long unsigned int type; + struct jump_entry *entries; + struct static_key_mod *next; + }; +}; + +struct static_key_true { + struct static_key key; +}; + +struct static_key_false { + struct static_key key; +}; + +struct _ddebug { + const char *modname; + const char *function; + const char *filename; + const char *format; + unsigned int lineno: 18; + unsigned int class_id: 6; + unsigned int flags: 8; + union { + struct static_key_true dd_key_true; + struct static_key_false dd_key_false; + } key; +}; + +enum class_map_type { + DD_CLASS_TYPE_DISJOINT_BITS = 0, + DD_CLASS_TYPE_LEVEL_NUM = 1, + DD_CLASS_TYPE_DISJOINT_NAMES = 2, + DD_CLASS_TYPE_LEVEL_NAMES = 3, +}; + +struct ddebug_class_map { + struct list_head link; + struct module *mod; + const char *mod_name; + const char **class_names; + const int length; + const int base; + enum class_map_type map_type; +}; + +enum module_state { + MODULE_STATE_LIVE = 0, + MODULE_STATE_COMING = 1, + MODULE_STATE_GOING = 2, + MODULE_STATE_UNFORMED = 3, +}; + +struct kref { + refcount_t refcount; +}; + +struct kset; + +struct kobj_type; + +struct kernfs_node; + +struct kobject { + const char *name; + struct list_head entry; + struct kobject *parent; + struct kset *kset; + const struct kobj_type *ktype; + struct kernfs_node *sd; + struct kref kref; + unsigned int state_initialized: 1; + unsigned int state_in_sysfs: 1; + unsigned int state_add_uevent_sent: 1; + unsigned int state_remove_uevent_sent: 1; + unsigned int uevent_suppress: 1; +}; + +struct module_param_attrs; + +struct module_kobject { + struct kobject kobj; + struct module *mod; + struct kobject *drivers_dir; + struct module_param_attrs *mp; + struct completion *kobj_completion; +}; + +struct latch_tree_node { + struct rb_node node[2]; +}; + +struct mod_tree_node { + struct module *mod; + struct latch_tree_node node; +}; + +struct module_memory { + void *base; + bool is_rox; + unsigned int size; + struct mod_tree_node mtn; +}; + +struct its_array { + void **pages; + int num; +}; + +struct mod_arch_specific { + struct its_array its_pages; +}; + +struct elf64_sym; + +typedef struct elf64_sym Elf64_Sym; + +struct mod_kallsyms { + Elf64_Sym *symtab; + unsigned int num_symtab; + char *strtab; + char *typetab; +}; + +typedef const int tracepoint_ptr_t; + +struct _ddebug_info { + struct _ddebug *descs; + struct ddebug_class_map *classes; + unsigned int num_descs; + unsigned int num_classes; +}; + +struct module_attribute; + +struct kernel_symbol; + +struct kernel_param; + +struct exception_table_entry; + +struct bug_entry; + +struct module_sect_attrs; + +struct module_notes_attrs; + +struct srcu_struct; + +struct bpf_raw_event_map; + +struct trace_event_call; + +struct trace_eval_map; + +struct static_call_site; + +struct klp_modinfo; + +struct error_injection_entry; + +struct module { + enum module_state state; + struct list_head list; + char name[56]; + struct module_kobject mkobj; + struct module_attribute *modinfo_attrs; + const char *version; + const char *srcversion; + struct kobject *holders_dir; + const struct kernel_symbol *syms; + const u32 *crcs; + unsigned int num_syms; + struct mutex param_lock; + struct kernel_param *kp; + unsigned int num_kp; + unsigned int num_gpl_syms; + const struct kernel_symbol *gpl_syms; + const u32 *gpl_crcs; + bool using_gplonly_symbols; + bool sig_ok; + bool async_probe_requested; + unsigned int num_exentries; + struct exception_table_entry *extable; + int (*init)(void); + struct module_memory mem[7]; + struct mod_arch_specific arch; + long unsigned int taints; + unsigned int num_bugs; + struct list_head bug_list; + struct bug_entry *bug_table; + struct mod_kallsyms *kallsyms; + struct mod_kallsyms core_kallsyms; + struct module_sect_attrs *sect_attrs; + struct module_notes_attrs *notes_attrs; + char *args; + void *percpu; + unsigned int percpu_size; + void *noinstr_text_start; + unsigned int noinstr_text_size; + unsigned int num_tracepoints; + tracepoint_ptr_t *tracepoints_ptrs; + unsigned int num_srcu_structs; + struct srcu_struct **srcu_struct_ptrs; + unsigned int num_bpf_raw_events; + struct bpf_raw_event_map *bpf_raw_events; + unsigned int btf_data_size; + unsigned int btf_base_data_size; + void *btf_data; + void *btf_base_data; + struct jump_entry *jump_entries; + unsigned int num_jump_entries; + unsigned int num_trace_bprintk_fmt; + const char **trace_bprintk_fmt_start; + struct trace_event_call **trace_events; + unsigned int num_trace_events; + struct trace_eval_map **trace_evals; + unsigned int num_trace_evals; + unsigned int num_ftrace_callsites; + long unsigned int *ftrace_callsites; + void *kprobes_text_start; + unsigned int kprobes_text_size; + long unsigned int *kprobe_blacklist; + unsigned int num_kprobe_blacklist; + int num_static_call_sites; + struct static_call_site *static_call_sites; + bool klp; + bool klp_alive; + struct klp_modinfo *klp_info; + struct list_head source_list; + struct list_head target_list; + void (*exit)(void); + atomic_t refcnt; + struct error_injection_entry *ei_funcs; + unsigned int num_ei_funcs; + struct _ddebug_info dyndbg_info; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct kernel_param_ops { + unsigned int flags; + int (*set)(const char *, const struct kernel_param *); + int (*get)(char *, const struct kernel_param *); + void (*free)(void *); +}; + +typedef unsigned int fop_flags_t; + +typedef void *fl_owner_t; + +struct file; + +struct kiocb; + +struct iov_iter; + +struct io_comp_batch; + +struct dir_context; + +struct poll_table_struct; + +struct vm_area_struct; + +struct inode; + +struct file_lock; + +struct file_lease; + +struct seq_file; + +struct io_uring_cmd; + +struct vm_area_desc; + +struct file_operations { + struct module *owner; + fop_flags_t fop_flags; + loff_t (*llseek)(struct file *, loff_t, int); + ssize_t (*read)(struct file *, char *, size_t, loff_t *); + ssize_t (*write)(struct file *, const char *, size_t, loff_t *); + ssize_t (*read_iter)(struct kiocb *, struct iov_iter *); + ssize_t (*write_iter)(struct kiocb *, struct iov_iter *); + int (*iopoll)(struct kiocb *, struct io_comp_batch *, unsigned int); + int (*iterate_shared)(struct file *, struct dir_context *); + __poll_t (*poll)(struct file *, struct poll_table_struct *); + long int (*unlocked_ioctl)(struct file *, unsigned int, long unsigned int); + long int (*compat_ioctl)(struct file *, unsigned int, long unsigned int); + int (*mmap)(struct file *, struct vm_area_struct *); + int (*open)(struct inode *, struct file *); + int (*flush)(struct file *, fl_owner_t); + int (*release)(struct inode *, struct file *); + int (*fsync)(struct file *, loff_t, loff_t, int); + int (*fasync)(int, struct file *, int); + int (*lock)(struct file *, int, struct file_lock *); + long unsigned int (*get_unmapped_area)(struct file *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + int (*check_flags)(int); + int (*flock)(struct file *, int, struct file_lock *); + ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int); + ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); + void (*splice_eof)(struct file *); + int (*setlease)(struct file *, int, struct file_lease **, void **); + long int (*fallocate)(struct file *, int, loff_t, loff_t); + void (*show_fdinfo)(struct seq_file *, struct file *); + ssize_t (*copy_file_range)(struct file *, loff_t, struct file *, loff_t, size_t, unsigned int); + loff_t (*remap_file_range)(struct file *, loff_t, struct file *, loff_t, loff_t, unsigned int); + int (*fadvise)(struct file *, loff_t, loff_t, int); + int (*uring_cmd)(struct io_uring_cmd *, unsigned int); + int (*uring_cmd_iopoll)(struct io_uring_cmd *, struct io_comp_batch *, unsigned int); + int (*mmap_prepare)(struct vm_area_desc *); +}; + +struct bug_entry { + int bug_addr_disp; + int file_disp; + short unsigned int line; + short unsigned int flags; +}; + +struct static_call_site { + s32 addr; + s32 key; +}; + +struct static_call_mod { + struct static_call_mod *next; + struct module *mod; + struct static_call_site *sites; +}; + +struct static_call_key { + void *func; + union { + long unsigned int type; + struct static_call_mod *mods; + struct static_call_site *sites; + }; +}; + +typedef struct { + seqcount_spinlock_t seqcount; + spinlock_t lock; +} seqlock_t; + +struct cacheline_padding { + char x[0]; +}; + +struct free_area { + struct list_head free_list[6]; + long unsigned int nr_free; +}; + +struct work_struct; + +typedef void (*work_func_t)(struct work_struct *); + +struct work_struct { + atomic_long_t data; + struct list_head entry; + work_func_t func; +}; + +struct pglist_data; + +struct per_cpu_pages; + +struct per_cpu_zonestat; + +struct zone { + long unsigned int _watermark[4]; + long unsigned int watermark_boost; + long unsigned int nr_reserved_highatomic; + long unsigned int nr_free_highatomic; + long int lowmem_reserve[5]; + int node; + struct pglist_data *zone_pgdat; + struct per_cpu_pages *per_cpu_pageset; + struct per_cpu_zonestat *per_cpu_zonestats; + int pageset_high_min; + int pageset_high_max; + int pageset_batch; + long unsigned int zone_start_pfn; + atomic_long_t managed_pages; + long unsigned int spanned_pages; + long unsigned int present_pages; + long unsigned int present_early_pages; + long unsigned int cma_pages; + const char *name; + long unsigned int nr_isolate_pageblock; + seqlock_t span_seqlock; + int initialized; + long: 64; + long: 64; + long: 64; + long: 64; + struct cacheline_padding _pad1_; + struct free_area free_area[11]; + struct list_head unaccepted_pages; + struct work_struct unaccepted_cleanup; + long unsigned int flags; + spinlock_t lock; + struct llist_head trylock_free_pages; + struct cacheline_padding _pad2_; + long unsigned int percpu_drift_mark; + long unsigned int compact_cached_free_pfn; + long unsigned int compact_cached_migrate_pfn[2]; + long unsigned int compact_init_migrate_pfn; + long unsigned int compact_init_free_pfn; + unsigned int compact_considered; + unsigned int compact_defer_shift; + int compact_order_failed; + bool compact_blockskip_flush; + bool contiguous; + long: 0; + struct cacheline_padding _pad3_; + atomic_long_t vm_stat[12]; + atomic_long_t vm_numa_event[6]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct zoneref { + struct zone *zone; + int zone_idx; +}; + +struct zonelist { + struct zoneref _zonerefs[5121]; +}; + +struct wait_queue_head { + spinlock_t lock; + struct list_head head; +}; + +typedef struct wait_queue_head wait_queue_head_t; + +enum zone_type { + ZONE_DMA = 0, + ZONE_DMA32 = 1, + ZONE_NORMAL = 2, + ZONE_MOVABLE = 3, + ZONE_DEVICE = 4, + __MAX_NR_ZONES = 5, +}; + +struct deferred_split { + spinlock_t split_queue_lock; + struct list_head split_queue; + long unsigned int split_queue_len; +}; + +struct hlist_nulls_node { + struct hlist_nulls_node *next; + struct hlist_nulls_node **pprev; +}; + +struct lru_gen_folio { + long unsigned int max_seq; + long unsigned int min_seq[2]; + long unsigned int timestamps[4]; + struct list_head folios[40]; + long int nr_pages[40]; + long unsigned int avg_refaulted[8]; + long unsigned int avg_total[8]; + long unsigned int protected[8]; + atomic_long_t evicted[8]; + atomic_long_t refaulted[8]; + bool enabled; + u8 gen; + u8 seg; + struct hlist_nulls_node list; +}; + +struct lru_gen_mm_state { + long unsigned int seq; + struct list_head *head; + struct list_head *tail; + long unsigned int *filters[2]; + long unsigned int stats[4]; +}; + +struct zswap_lruvec_state { + atomic_long_t nr_disk_swapins; +}; + +struct lruvec { + struct list_head lists[5]; + spinlock_t lru_lock; + long unsigned int anon_cost; + long unsigned int file_cost; + atomic_long_t nonresident_age; + long unsigned int refaults[2]; + long unsigned int flags; + struct lru_gen_folio lrugen; + struct lru_gen_mm_state mm_state; + struct pglist_data *pgdat; + struct zswap_lruvec_state zswap_lruvec_state; +}; + +struct lru_gen_mm_walk { + struct lruvec *lruvec; + long unsigned int seq; + long unsigned int next_addr; + int nr_pages[40]; + int mm_stats[4]; + int batched; + int swappiness; + bool force_scan; +}; + +struct hlist_nulls_head { + struct hlist_nulls_node *first; +}; + +struct lru_gen_memcg { + long unsigned int seq; + long unsigned int nr_memcgs[3]; + struct hlist_nulls_head fifo[24]; + spinlock_t lock; +}; + +struct memory_failure_stats { + long unsigned int total; + long unsigned int ignored; + long unsigned int failed; + long unsigned int delayed; + long unsigned int recovered; +}; + +struct per_cpu_nodestat; + +struct memory_tier; + +struct pglist_data { + struct zone node_zones[5]; + struct zonelist node_zonelists[2]; + int nr_zones; + spinlock_t node_size_lock; + long unsigned int node_start_pfn; + long unsigned int node_present_pages; + long unsigned int node_spanned_pages; + int node_id; + wait_queue_head_t kswapd_wait; + wait_queue_head_t pfmemalloc_wait; + wait_queue_head_t reclaim_wait[4]; + atomic_t nr_writeback_throttled; + long unsigned int nr_reclaim_start; + struct mutex kswapd_lock; + struct task_struct *kswapd; + int kswapd_order; + enum zone_type kswapd_highest_zoneidx; + int kswapd_failures; + int kcompactd_max_order; + enum zone_type kcompactd_highest_zoneidx; + wait_queue_head_t kcompactd_wait; + struct task_struct *kcompactd; + bool proactive_compact_trigger; + long unsigned int totalreserve_pages; + long unsigned int min_unmapped_pages; + long unsigned int min_slab_pages; + long: 64; + long: 64; + long: 64; + struct cacheline_padding _pad1_; + struct deferred_split deferred_split_queue; + unsigned int nbp_rl_start; + long unsigned int nbp_rl_nr_cand; + unsigned int nbp_threshold; + unsigned int nbp_th_start; + long unsigned int nbp_th_nr_cand; + struct lruvec __lruvec; + long unsigned int flags; + struct lru_gen_mm_walk mm_walk; + struct lru_gen_memcg memcg_lru; + long: 64; + struct cacheline_padding _pad2_; + struct per_cpu_nodestat *per_cpu_nodestats; + atomic_long_t vm_stat[49]; + struct memory_tier *memtier; + struct memory_failure_stats mf_stats; +}; + +struct attribute; + +struct bin_attribute; + +struct attribute_group { + const char *name; + umode_t (*is_visible)(struct kobject *, struct attribute *, int); + umode_t (*is_bin_visible)(struct kobject *, const struct bin_attribute *, int); + size_t (*bin_size)(struct kobject *, const struct bin_attribute *, int); + struct attribute **attrs; + union { + const struct bin_attribute * const *bin_attrs; + const struct bin_attribute * const *bin_attrs_new; + }; +}; + +struct fred_cs { + u64 cs: 16; + u64 sl: 2; + u64 wfe: 1; +}; + +struct fred_ss { + u64 ss: 16; + u64 sti: 1; + u64 swevent: 1; + u64 nmi: 1; + int: 13; + u64 vector: 8; + short: 8; + u64 type: 4; + char: 4; + u64 enclave: 1; + u64 lm: 1; + u64 nested: 1; + char: 1; + u64 insnlen: 4; +}; + +struct pt_regs { + long unsigned int r15; + long unsigned int r14; + long unsigned int r13; + long unsigned int r12; + long unsigned int bp; + long unsigned int bx; + long unsigned int r11; + long unsigned int r10; + long unsigned int r9; + long unsigned int r8; + long unsigned int ax; + long unsigned int cx; + long unsigned int dx; + long unsigned int si; + long unsigned int di; + long unsigned int orig_ax; + long unsigned int ip; + union { + u16 cs; + u64 csx; + struct fred_cs fred_cs; + }; + long unsigned int flags; + long unsigned int sp; + union { + u16 ss; + u64 ssx; + struct fred_ss fred_ss; + }; +}; + +typedef long unsigned int pteval_t; + +typedef long unsigned int pmdval_t; + +typedef long unsigned int pudval_t; + +typedef long unsigned int pgdval_t; + +typedef long unsigned int pgprotval_t; + +typedef struct { + pteval_t pte; +} pte_t; + +typedef struct { + pmdval_t pmd; +} pmd_t; + +struct pgprot { + pgprotval_t pgprot; +}; + +typedef struct pgprot pgprot_t; + +typedef struct { + pgdval_t pgd; +} pgd_t; + +typedef struct { + pudval_t pud; +} pud_t; + +typedef struct page *pgtable_t; + +struct page_pool; + +struct page { + long unsigned int flags; + union { + struct { + union { + struct list_head lru; + struct { + void *__filler; + unsigned int mlock_count; + }; + struct list_head buddy_list; + struct list_head pcp_list; + struct { + struct llist_node pcp_llist; + unsigned int order; + }; + }; + struct address_space *mapping; + union { + long unsigned int __folio_index; + long unsigned int share; + }; + long unsigned int private; + }; + struct { + long unsigned int pp_magic; + struct page_pool *pp; + long unsigned int _pp_mapping_pad; + long unsigned int dma_addr; + atomic_long_t pp_ref_count; + }; + struct { + long unsigned int compound_head; + }; + struct { + void *_unused_pgmap_compound_head; + void *zone_device_data; + }; + struct callback_head callback_head; + }; + union { + unsigned int page_type; + atomic_t _mapcount; + }; + atomic_t _refcount; + long unsigned int memcg_data; +}; + +typedef struct {} lockdep_map_p; + +struct maple_tree { + union { + spinlock_t ma_lock; + lockdep_map_p ma_external_lock; + }; + unsigned int ma_flags; + void *ma_root; +}; + +struct rw_semaphore { + atomic_long_t count; + atomic_long_t owner; + struct optimistic_spin_queue osq; + raw_spinlock_t wait_lock; + struct list_head wait_list; +}; + +typedef long unsigned int vm_flags_t; + +struct percpu_counter { + raw_spinlock_t lock; + s64 count; + struct list_head list; + s32 *counters; +}; + +struct ldt_struct; + +struct vdso_image; + +typedef struct { + u64 ctx_id; + atomic64_t tlb_gen; + long unsigned int next_trim_cpumask; + struct rw_semaphore ldt_usr_sem; + struct ldt_struct *ldt; + long unsigned int flags; + struct mutex lock; + void *vdso; + const struct vdso_image *vdso_image; + atomic_t perf_rdpmc_allowed; + u16 pkey_allocation_map; + s16 execute_only_pkey; + u16 global_asid; + bool asid_transition; +} mm_context_t; + +struct xol_area; + +struct uprobes_state { + struct xol_area *xol_area; +}; + +typedef unsigned int mm_id_t; + +struct mm_cid; + +struct futex_private_hash; + +struct linux_binfmt; + +struct kioctx_table; + +struct mmu_notifier_subscriptions; + +struct iommu_mm_data; + +struct mm_struct { + struct { + struct { + atomic_t mm_count; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + }; + struct maple_tree mm_mt; + long unsigned int mmap_base; + long unsigned int mmap_legacy_base; + long unsigned int mmap_compat_base; + long unsigned int mmap_compat_legacy_base; + long unsigned int task_size; + pgd_t *pgd; + atomic_t membarrier_state; + atomic_t mm_users; + struct mm_cid *pcpu_cid; + long unsigned int mm_cid_next_scan; + unsigned int nr_cpus_allowed; + atomic_t max_nr_cid; + raw_spinlock_t cpus_allowed_lock; + atomic_long_t pgtables_bytes; + int map_count; + spinlock_t page_table_lock; + struct rw_semaphore mmap_lock; + struct list_head mmlist; + struct rcuwait vma_writer_wait; + seqcount_t mm_lock_seq; + struct mutex futex_hash_lock; + struct futex_private_hash *futex_phash; + struct futex_private_hash *futex_phash_new; + long unsigned int futex_batches; + struct callback_head futex_rcu; + atomic_long_t futex_atomic; + unsigned int *futex_ref; + long unsigned int hiwater_rss; + long unsigned int hiwater_vm; + long unsigned int total_vm; + long unsigned int locked_vm; + atomic64_t pinned_vm; + long unsigned int data_vm; + long unsigned int exec_vm; + long unsigned int stack_vm; + vm_flags_t def_flags; + seqcount_t write_protect_seq; + spinlock_t arg_lock; + long unsigned int start_code; + long unsigned int end_code; + long unsigned int start_data; + long unsigned int end_data; + long unsigned int start_brk; + long unsigned int brk; + long unsigned int start_stack; + long unsigned int arg_start; + long unsigned int arg_end; + long unsigned int env_start; + long unsigned int env_end; + long unsigned int saved_auxv[52]; + struct percpu_counter rss_stat[4]; + struct linux_binfmt *binfmt; + mm_context_t context; + long unsigned int flags; + spinlock_t ioctx_lock; + struct kioctx_table *ioctx_table; + struct task_struct *owner; + struct user_namespace *user_ns; + struct file *exe_file; + struct mmu_notifier_subscriptions *notifier_subscriptions; + long unsigned int numa_next_scan; + long unsigned int numa_scan_offset; + int numa_scan_seq; + atomic_t tlb_flush_pending; + atomic_t tlb_flush_batched; + struct uprobes_state uprobes_state; + atomic_long_t hugetlb_usage; + struct work_struct async_put_work; + struct iommu_mm_data *iommu_mm; + long unsigned int ksm_merging_pages; + long unsigned int ksm_rmap_items; + atomic_long_t ksm_zero_pages; + struct { + struct list_head list; + long unsigned int bitmap; + struct mem_cgroup *memcg; + } lru_gen; + mm_id_t mm_id; + long: 64; + long: 64; + long: 64; + }; + long unsigned int cpu_bitmap[0]; +}; + +struct range { + u64 start; + u64 end; +}; + +struct seq_operations { + void * (*start)(struct seq_file *, loff_t *); + void (*stop)(struct seq_file *, void *); + void * (*next)(struct seq_file *, void *, loff_t *); + int (*show)(struct seq_file *, void *); +}; + +enum perf_event_state { + PERF_EVENT_STATE_DEAD = -5, + PERF_EVENT_STATE_REVOKED = -4, + PERF_EVENT_STATE_EXIT = -3, + PERF_EVENT_STATE_ERROR = -2, + PERF_EVENT_STATE_OFF = -1, + PERF_EVENT_STATE_INACTIVE = 0, + PERF_EVENT_STATE_ACTIVE = 1, +}; + +typedef struct { + atomic_long_t a; +} local_t; + +typedef struct { + local_t a; +} local64_t; + +struct perf_event_attr { + __u32 type; + __u32 size; + __u64 config; + union { + __u64 sample_period; + __u64 sample_freq; + }; + __u64 sample_type; + __u64 read_format; + __u64 disabled: 1; + __u64 inherit: 1; + __u64 pinned: 1; + __u64 exclusive: 1; + __u64 exclude_user: 1; + __u64 exclude_kernel: 1; + __u64 exclude_hv: 1; + __u64 exclude_idle: 1; + __u64 mmap: 1; + __u64 comm: 1; + __u64 freq: 1; + __u64 inherit_stat: 1; + __u64 enable_on_exec: 1; + __u64 task: 1; + __u64 watermark: 1; + __u64 precise_ip: 2; + __u64 mmap_data: 1; + __u64 sample_id_all: 1; + __u64 exclude_host: 1; + __u64 exclude_guest: 1; + __u64 exclude_callchain_kernel: 1; + __u64 exclude_callchain_user: 1; + __u64 mmap2: 1; + __u64 comm_exec: 1; + __u64 use_clockid: 1; + __u64 context_switch: 1; + __u64 write_backward: 1; + __u64 namespaces: 1; + __u64 ksymbol: 1; + __u64 bpf_event: 1; + __u64 aux_output: 1; + __u64 cgroup: 1; + __u64 text_poke: 1; + __u64 build_id: 1; + __u64 inherit_thread: 1; + __u64 remove_on_exec: 1; + __u64 sigtrap: 1; + __u64 __reserved_1: 26; + union { + __u32 wakeup_events; + __u32 wakeup_watermark; + }; + __u32 bp_type; + union { + __u64 bp_addr; + __u64 kprobe_func; + __u64 uprobe_path; + __u64 config1; + }; + union { + __u64 bp_len; + __u64 kprobe_addr; + __u64 probe_offset; + __u64 config2; + }; + __u64 branch_sample_type; + __u64 sample_regs_user; + __u32 sample_stack_user; + __s32 clockid; + __u64 sample_regs_intr; + __u32 aux_watermark; + __u16 sample_max_stack; + __u16 __reserved_2; + __u32 aux_sample_size; + union { + __u32 aux_action; + struct { + __u32 aux_start_paused: 1; + __u32 aux_pause: 1; + __u32 aux_resume: 1; + __u32 __reserved_3: 29; + }; + }; + __u64 sig_data; + __u64 config3; +}; + +struct hw_perf_event_extra { + u64 config; + unsigned int reg; + int alloc; + int idx; +}; + +struct arch_hw_breakpoint { + long unsigned int address; + long unsigned int mask; + u8 len; + u8 type; +}; + +struct rhlist_head { + struct rhash_head rhead; + struct rhlist_head *next; +}; + +struct hw_perf_event { + union { + struct { + u64 config; + u64 config1; + u64 last_tag; + u64 dyn_constraint; + long unsigned int config_base; + long unsigned int event_base; + int event_base_rdpmc; + int idx; + int last_cpu; + int flags; + struct hw_perf_event_extra extra_reg; + struct hw_perf_event_extra branch_reg; + }; + struct { + u64 aux_config; + unsigned int aux_paused; + }; + struct { + struct hrtimer hrtimer; + }; + struct { + struct list_head tp_list; + }; + struct { + u64 pwr_acc; + u64 ptsc; + }; + struct { + struct arch_hw_breakpoint info; + struct rhlist_head bp_list; + }; + struct { + u8 iommu_bank; + u8 iommu_cntr; + u16 padding; + u64 conf; + u64 conf1; + }; + }; + struct task_struct *target; + void *addr_filters; + long unsigned int addr_filters_gen; + int state; + local64_t prev_count; + u64 sample_period; + union { + struct { + u64 last_period; + local64_t period_left; + }; + struct { + u64 saved_metric; + u64 saved_slots; + }; + }; + u64 interrupts_seq; + u64 interrupts; + u64 freq_time_stamp; + u64 freq_count_stamp; +}; + +struct irq_work { + struct __call_single_node node; + void (*func)(struct irq_work *); + struct rcuwait irqwait; +}; + +struct perf_addr_filters_head { + struct list_head list; + raw_spinlock_t lock; + unsigned int nr_file_filters; +}; + +struct perf_sample_data; + +typedef void (*perf_overflow_handler_t)(struct perf_event *, struct perf_sample_data *, struct pt_regs *); + +struct ftrace_ops; + +struct ftrace_regs; + +typedef void (*ftrace_func_t)(long unsigned int, long unsigned int, struct ftrace_ops *, struct ftrace_regs *); + +struct ftrace_hash; + +struct ftrace_ops_hash { + struct ftrace_hash *notrace_hash; + struct ftrace_hash *filter_hash; + struct mutex regex_lock; +}; + +enum ftrace_ops_cmd { + FTRACE_OPS_CMD_ENABLE_SHARE_IPMODIFY_SELF = 0, + FTRACE_OPS_CMD_ENABLE_SHARE_IPMODIFY_PEER = 1, + FTRACE_OPS_CMD_DISABLE_SHARE_IPMODIFY_PEER = 2, +}; + +typedef int (*ftrace_ops_func_t)(struct ftrace_ops *, enum ftrace_ops_cmd); + +struct ftrace_ops { + ftrace_func_t func; + struct ftrace_ops *next; + long unsigned int flags; + void *private; + ftrace_func_t saved_func; + struct ftrace_ops_hash local_hash; + struct ftrace_ops_hash *func_hash; + struct ftrace_ops_hash old_hash; + long unsigned int trampoline; + long unsigned int trampoline_size; + struct list_head list; + struct list_head subop_list; + ftrace_ops_func_t ops_func; + struct ftrace_ops *managed; + long unsigned int direct_call; +}; + +struct pmu; + +struct perf_event_pmu_context; + +struct perf_buffer; + +struct fasync_struct; + +struct perf_addr_filter_range; + +struct bpf_prog; + +struct event_filter; + +struct perf_cgroup; + +struct perf_event { + struct list_head event_entry; + struct list_head sibling_list; + struct list_head active_list; + struct rb_node group_node; + u64 group_index; + struct list_head migrate_entry; + struct hlist_node hlist_entry; + struct list_head active_entry; + int nr_siblings; + int event_caps; + int group_caps; + unsigned int group_generation; + struct perf_event *group_leader; + struct pmu *pmu; + void *pmu_private; + enum perf_event_state state; + unsigned int attach_state; + local64_t count; + atomic64_t child_count; + u64 total_time_enabled; + u64 total_time_running; + u64 tstamp; + struct perf_event_attr attr; + u16 header_size; + u16 id_header_size; + u16 read_size; + struct hw_perf_event hw; + struct perf_event_context *ctx; + struct perf_event_pmu_context *pmu_ctx; + atomic_long_t refcount; + atomic64_t child_total_time_enabled; + atomic64_t child_total_time_running; + struct mutex child_mutex; + struct list_head child_list; + struct perf_event *parent; + int oncpu; + int cpu; + struct list_head owner_entry; + struct task_struct *owner; + struct mutex mmap_mutex; + atomic_t mmap_count; + struct perf_buffer *rb; + struct list_head rb_entry; + long unsigned int rcu_batches; + int rcu_pending; + wait_queue_head_t waitq; + struct fasync_struct *fasync; + unsigned int pending_wakeup; + unsigned int pending_kill; + unsigned int pending_disable; + long unsigned int pending_addr; + struct irq_work pending_irq; + struct irq_work pending_disable_irq; + struct callback_head pending_task; + unsigned int pending_work; + atomic_t event_limit; + struct perf_addr_filters_head addr_filters; + struct perf_addr_filter_range *addr_filter_ranges; + long unsigned int addr_filters_gen; + struct perf_event *aux_event; + void (*destroy)(struct perf_event *); + struct callback_head callback_head; + struct pid_namespace *ns; + u64 id; + atomic64_t lost_samples; + u64 (*clock)(void); + perf_overflow_handler_t overflow_handler; + void *overflow_handler_context; + struct bpf_prog *prog; + u64 bpf_cookie; + struct trace_event_call *tp_event; + struct event_filter *filter; + struct ftrace_ops ftrace_ops; + struct perf_cgroup *cgrp; + void *security; + struct list_head sb_list; + struct list_head pmu_list; + u32 orig_type; +}; + +typedef s32 old_time32_t; + +struct old_timespec32 { + old_time32_t tv_sec; + s32 tv_nsec; +}; + +struct pollfd { + int fd; + short int events; + short int revents; +}; + +typedef struct cpumask *cpumask_var_t; + +struct xarray { + spinlock_t xa_lock; + gfp_t xa_flags; + void *xa_head; +}; + +struct idr { + struct xarray idr_rt; + unsigned int idr_base; + unsigned int idr_next; +}; + +struct ctl_table; + +struct ctl_table_root; + +struct ctl_table_set; + +struct ctl_dir; + +struct ctl_node; + +struct ctl_table_header { + union { + struct { + const struct ctl_table *ctl_table; + int ctl_table_size; + int used; + int count; + int nreg; + }; + struct callback_head rcu; + }; + struct completion *unregistering; + const struct ctl_table *ctl_table_arg; + struct ctl_table_root *root; + struct ctl_table_set *set; + struct ctl_dir *parent; + struct ctl_node *node; + struct hlist_head inodes; + enum { + SYSCTL_TABLE_TYPE_DEFAULT = 0, + SYSCTL_TABLE_TYPE_PERMANENTLY_EMPTY = 1, + } type; +}; + +struct ctl_dir { + struct ctl_table_header header; + struct rb_root root; +}; + +struct ctl_table_set { + int (*is_seen)(struct ctl_table_set *); + struct ctl_dir dir; +}; + +struct kmem_cache; + +struct fs_pin; + +struct pid_namespace { + struct idr idr; + struct callback_head rcu; + unsigned int pid_allocated; + struct task_struct *child_reaper; + struct kmem_cache *pid_cachep; + unsigned int level; + int pid_max; + struct pid_namespace *parent; + struct fs_pin *bacct; + struct user_namespace *user_ns; + struct ucounts *ucounts; + int reboot; + struct ns_common ns; + struct work_struct work; + struct ctl_table_set set; + struct ctl_table_header *sysctls; + int memfd_noexec_scope; +}; + +typedef struct { + arch_rwlock_t raw_lock; +} rwlock_t; + +struct seqcount_raw_spinlock { + seqcount_t seqcount; +}; + +typedef struct seqcount_raw_spinlock seqcount_raw_spinlock_t; + +struct hrtimer_cpu_base; + +struct hrtimer_clock_base { + struct hrtimer_cpu_base *cpu_base; + unsigned int index; + clockid_t clockid; + seqcount_raw_spinlock_t seq; + struct hrtimer *running; + struct timerqueue_head active; + ktime_t (*get_time)(void); + ktime_t offset; +}; + +struct rlimit { + __kernel_ulong_t rlim_cur; + __kernel_ulong_t rlim_max; +}; + +struct task_cputime { + u64 stime; + u64 utime; + long long unsigned int sum_exec_runtime; +}; + +typedef void __signalfn_t(int); + +typedef __signalfn_t *__sighandler_t; + +typedef void __restorefn_t(void); + +typedef __restorefn_t *__sigrestore_t; + +struct ucounts { + struct hlist_nulls_node node; + struct user_namespace *ns; + kuid_t uid; + struct callback_head rcu; + rcuref_t count; + atomic_long_t ucount[12]; + atomic_long_t rlimit[4]; +}; + +struct sigaction { + __sighandler_t sa_handler; + long unsigned int sa_flags; + __sigrestore_t sa_restorer; + sigset_t sa_mask; +}; + +struct k_sigaction { + struct sigaction sa; +}; + +enum { + ___GFP_DMA_BIT = 0, + ___GFP_HIGHMEM_BIT = 1, + ___GFP_DMA32_BIT = 2, + ___GFP_MOVABLE_BIT = 3, + ___GFP_RECLAIMABLE_BIT = 4, + ___GFP_HIGH_BIT = 5, + ___GFP_IO_BIT = 6, + ___GFP_FS_BIT = 7, + ___GFP_ZERO_BIT = 8, + ___GFP_UNUSED_BIT = 9, + ___GFP_DIRECT_RECLAIM_BIT = 10, + ___GFP_KSWAPD_RECLAIM_BIT = 11, + ___GFP_WRITE_BIT = 12, + ___GFP_NOWARN_BIT = 13, + ___GFP_RETRY_MAYFAIL_BIT = 14, + ___GFP_NOFAIL_BIT = 15, + ___GFP_NORETRY_BIT = 16, + ___GFP_MEMALLOC_BIT = 17, + ___GFP_COMP_BIT = 18, + ___GFP_NOMEMALLOC_BIT = 19, + ___GFP_HARDWALL_BIT = 20, + ___GFP_THISNODE_BIT = 21, + ___GFP_ACCOUNT_BIT = 22, + ___GFP_ZEROTAGS_BIT = 23, + ___GFP_NO_OBJ_EXT_BIT = 24, + ___GFP_LAST_BIT = 25, +}; + +typedef void (*smp_call_func_t)(void *); + +struct __call_single_data { + struct __call_single_node node; + smp_call_func_t func; + void *info; +}; + +typedef struct __call_single_data call_single_data_t; + +struct hlist_bl_node { + struct hlist_bl_node *next; + struct hlist_bl_node **pprev; +}; + +struct qstr { + union { + struct { + u32 hash; + u32 len; + }; + u64 hash_len; + }; + const unsigned char *name; +}; + +union shortname_store { + unsigned char string[40]; + long unsigned int words[5]; +}; + +struct lockref { + union { + __u64 lock_count; + struct { + spinlock_t lock; + int count; + }; + }; +}; + +struct dentry_operations; + +struct dentry { + unsigned int d_flags; + seqcount_spinlock_t d_seq; + struct hlist_bl_node d_hash; + struct dentry *d_parent; + struct qstr d_name; + struct inode *d_inode; + union shortname_store d_shortname; + const struct dentry_operations *d_op; + struct super_block *d_sb; + long unsigned int d_time; + void *d_fsdata; + struct lockref d_lockref; + union { + struct list_head d_lru; + wait_queue_head_t *d_wait; + }; + struct hlist_node d_sib; + struct hlist_head d_children; + union { + struct hlist_node d_alias; + struct hlist_bl_node d_in_lookup_hash; + struct callback_head d_rcu; + } d_u; +}; + +struct tracepoint_func { + void *func; + void *data; + int prio; +}; + +struct tracepoint_ext { + int (*regfunc)(void); + void (*unregfunc)(void); + unsigned int faultable: 1; +}; + +struct tracepoint { + const char *name; + struct static_key_false key; + struct static_call_key *static_call_key; + void *static_call_tramp; + void *iterator; + void *probestub; + struct tracepoint_func *funcs; + struct tracepoint_ext *ext; +}; + +struct bpf_raw_event_map { + struct tracepoint *tp; + void *bpf_func; + u32 num_args; + u32 writable_size; + long: 64; +}; + +struct codetag { + unsigned int flags; + unsigned int lineno; + const char *modname; + const char *function; + const char *filename; +}; + +struct alloc_tag_counters { + u64 bytes; + u64 calls; +}; + +struct alloc_tag { + struct codetag ct; + struct alloc_tag_counters *counters; +}; + +struct percpu_ref_data; + +struct percpu_ref { + long unsigned int percpu_count_ptr; + struct percpu_ref_data *data; +}; + +struct workqueue_struct; + +struct rcu_work { + struct work_struct work; + struct callback_head rcu; + struct workqueue_struct *wq; +}; + +struct cgroup_subsys; + +struct css_rstat_cpu; + +struct cgroup_subsys_state { + struct cgroup *cgroup; + struct cgroup_subsys *ss; + struct percpu_ref refcnt; + struct css_rstat_cpu *rstat_cpu; + struct list_head sibling; + struct list_head children; + int id; + unsigned int flags; + u64 serial_nr; + atomic_t online_cnt; + struct work_struct destroy_work; + struct rcu_work destroy_rwork; + struct cgroup_subsys_state *parent; + int nr_descendants; + struct cgroup_subsys_state *rstat_flush_next; +}; + +struct cgroup_file { + struct kernfs_node *kn; + long unsigned int notified_at; + struct timer_list notify_timer; +}; + +struct cgroup_base_stat { + struct task_cputime cputime; + u64 forceidle_sum; + u64 ntime; +}; + +struct bpf_prog_array; + +struct cgroup_bpf { + struct bpf_prog_array *effective[38]; + struct hlist_head progs[38]; + u8 flags[38]; + u64 revisions[38]; + struct list_head storages; + struct bpf_prog_array *inactive; + struct percpu_ref refcnt; + struct work_struct release_work; +}; + +struct cgroup_freezer_state { + bool freeze; + bool e_freeze; + int nr_frozen_descendants; + int nr_frozen_tasks; +}; + +struct cgroup_root; + +struct cgroup_rstat_base_cpu; + +struct psi_group; + +struct cgroup { + struct cgroup_subsys_state self; + long unsigned int flags; + int level; + int max_depth; + int nr_descendants; + int nr_dying_descendants; + int max_descendants; + int nr_populated_csets; + int nr_populated_domain_children; + int nr_populated_threaded_children; + int nr_threaded_children; + unsigned int kill_seq; + struct kernfs_node *kn; + struct cgroup_file procs_file; + struct cgroup_file events_file; + struct cgroup_file psi_files[3]; + u16 subtree_control; + u16 subtree_ss_mask; + u16 old_subtree_control; + u16 old_subtree_ss_mask; + struct cgroup_subsys_state *subsys[15]; + int nr_dying_subsys[15]; + struct cgroup_root *root; + struct list_head cset_links; + struct list_head e_csets[15]; + struct cgroup *dom_cgrp; + struct cgroup *old_dom_cgrp; + struct cgroup_rstat_base_cpu *rstat_base_cpu; + struct cacheline_padding _pad_; + struct cgroup_base_stat last_bstat; + struct cgroup_base_stat bstat; + struct prev_cputime prev_cputime; + struct list_head pidlists; + struct mutex pidlist_mutex; + wait_queue_head_t offline_waitq; + struct work_struct release_agent_work; + struct psi_group *psi; + struct cgroup_bpf bpf; + struct cgroup_freezer_state freezer; + struct bpf_local_storage *bpf_cgrp_storage; + struct cgroup *ancestors[0]; + long: 64; + long: 64; +}; + +typedef u32 errseq_t; + +struct address_space_operations; + +struct address_space { + struct inode *host; + struct xarray i_pages; + struct rw_semaphore invalidate_lock; + gfp_t gfp_mask; + atomic_t i_mmap_writable; + struct rb_root_cached i_mmap; + long unsigned int nrpages; + long unsigned int writeback_index; + const struct address_space_operations *a_ops; + long unsigned int flags; + errseq_t wb_err; + spinlock_t i_private_lock; + struct list_head i_private_list; + struct rw_semaphore i_mmap_rwsem; + void *i_private_data; +}; + +struct upid { + int nr; + struct pid_namespace *ns; +}; + +struct pidfs_attr; + +struct pid { + refcount_t count; + unsigned int level; + spinlock_t lock; + struct { + u64 ino; + struct rb_node pidfs_node; + struct dentry *stashed; + struct pidfs_attr *attr; + }; + struct hlist_head tasks[4]; + struct hlist_head inodes; + wait_queue_head_t wait_pidfd; + struct callback_head rcu; + struct upid numbers[0]; +}; + +struct swait_queue_head { + raw_spinlock_t lock; + struct list_head task_list; +}; + +struct completion { + unsigned int done; + struct swait_queue_head wait; +}; + +typedef int32_t key_serial_t; + +typedef __s64 time64_t; + +typedef uint32_t key_perm_t; + +struct key_type; + +struct key_tag; + +struct keyring_index_key { + long unsigned int hash; + union { + struct { + u16 desc_len; + char desc[6]; + }; + long unsigned int x; + }; + struct key_type *type; + struct key_tag *domain_tag; + const char *description; +}; + +union key_payload { + void *rcu_data0; + void *data[4]; +}; + +struct assoc_array_ptr; + +struct assoc_array { + struct assoc_array_ptr *root; + long unsigned int nr_leaves_on_tree; +}; + +struct watch_list; + +struct key_user; + +struct key_restriction; + +struct key { + refcount_t usage; + key_serial_t serial; + union { + struct list_head graveyard_link; + struct rb_node serial_node; + }; + struct watch_list *watchers; + struct rw_semaphore sem; + struct key_user *user; + void *security; + union { + time64_t expiry; + time64_t revoked_at; + }; + time64_t last_used_at; + kuid_t uid; + kgid_t gid; + key_perm_t perm; + short unsigned int quotalen; + short unsigned int datalen; + short int state; + long unsigned int flags; + union { + struct keyring_index_key index_key; + struct { + long unsigned int hash; + long unsigned int len_desc; + struct key_type *type; + struct key_tag *domain_tag; + char *description; + }; + }; + union { + union key_payload payload; + struct { + struct list_head name_link; + struct assoc_array keys; + }; + }; + struct key_restriction *restrict_link; +}; + +struct cpu_itimer { + u64 expires; + u64 incr; +}; + +struct task_cputime_atomic { + atomic64_t utime; + atomic64_t stime; + atomic64_t sum_exec_runtime; +}; + +struct thread_group_cputimer { + struct task_cputime_atomic cputime_atomic; +}; + +struct pacct_struct { + int ac_flag; + long int ac_exitcode; + long unsigned int ac_mem; + u64 ac_utime; + u64 ac_stime; + long unsigned int ac_minflt; + long unsigned int ac_majflt; +}; + +struct core_state; + +struct tty_struct; + +struct autogroup; + +struct taskstats; + +struct tty_audit_buf; + +struct signal_struct { + refcount_t sigcnt; + atomic_t live; + int nr_threads; + int quick_threads; + struct list_head thread_head; + wait_queue_head_t wait_chldexit; + struct task_struct *curr_target; + struct sigpending shared_pending; + struct hlist_head multiprocess; + int group_exit_code; + int notify_count; + struct task_struct *group_exec_task; + int group_stop_count; + unsigned int flags; + struct core_state *core_state; + unsigned int is_child_subreaper: 1; + unsigned int has_child_subreaper: 1; + unsigned int timer_create_restore_ids: 1; + atomic_t next_posix_timer_id; + struct hlist_head posix_timers; + struct hlist_head ignored_posix_timers; + struct hrtimer real_timer; + ktime_t it_real_incr; + struct cpu_itimer it[2]; + struct thread_group_cputimer cputimer; + struct posix_cputimers posix_cputimers; + struct pid *pids[4]; + atomic_t tick_dep_mask; + struct pid *tty_old_pgrp; + int leader; + struct tty_struct *tty; + struct autogroup *autogroup; + seqlock_t stats_lock; + u64 utime; + u64 stime; + u64 cutime; + u64 cstime; + u64 gtime; + u64 cgtime; + struct prev_cputime prev_cputime; + long unsigned int nvcsw; + long unsigned int nivcsw; + long unsigned int cnvcsw; + long unsigned int cnivcsw; + long unsigned int min_flt; + long unsigned int maj_flt; + long unsigned int cmin_flt; + long unsigned int cmaj_flt; + long unsigned int inblock; + long unsigned int oublock; + long unsigned int cinblock; + long unsigned int coublock; + long unsigned int maxrss; + long unsigned int cmaxrss; + struct task_io_accounting ioac; + long long unsigned int sum_sched_runtime; + struct rlimit rlim[16]; + struct pacct_struct pacct; + struct taskstats *stats; + unsigned int audit_tty; + struct tty_audit_buf *tty_audit_buf; + bool oom_flag_origin; + short int oom_score_adj; + short int oom_score_adj_min; + struct mm_struct *oom_mm; + struct mutex cred_guard_mutex; + struct rw_semaphore exec_update_lock; +}; + +struct sighand_struct { + spinlock_t siglock; + refcount_t count; + wait_queue_head_t signalfd_wqh; + struct k_sigaction action[64]; +}; + +struct bio; + +struct bio_list { + struct bio *head; + struct bio *tail; +}; + +struct request; + +struct rq_list { + struct request *head; + struct request *tail; +}; + +struct blk_plug { + struct rq_list mq_list; + struct rq_list cached_rqs; + u64 cur_ktime; + short unsigned int nr_ios; + short unsigned int rq_count; + bool multiple_queues; + bool has_elevator; + struct list_head cb_list; +}; + +struct io_cq; + +struct io_context { + atomic_long_t refcount; + atomic_t active_ref; + short unsigned int ioprio; + spinlock_t lock; + struct xarray icq_tree; + struct io_cq *icq_hint; + struct hlist_head icq_list; + struct work_struct release_work; +}; + +struct css_set { + struct cgroup_subsys_state *subsys[15]; + refcount_t refcount; + struct css_set *dom_cset; + struct cgroup *dfl_cgrp; + int nr_tasks; + struct list_head tasks; + struct list_head mg_tasks; + struct list_head dying_tasks; + struct list_head task_iters; + struct list_head e_cset_node[15]; + struct list_head threaded_csets; + struct list_head threaded_csets_node; + struct hlist_node hlist; + struct list_head cgrp_links; + struct list_head mg_src_preload_node; + struct list_head mg_dst_preload_node; + struct list_head mg_node; + struct cgroup *mg_src_cgrp; + struct cgroup *mg_dst_cgrp; + struct css_set *mg_dst_cset; + bool dead; + struct callback_head callback_head; +}; + +typedef u32 compat_uptr_t; + +struct compat_robust_list { + compat_uptr_t next; +}; + +typedef s32 compat_long_t; + +struct compat_robust_list_head { + struct compat_robust_list list; + compat_long_t futex_offset; + compat_uptr_t list_op_pending; +}; + +struct perf_event_groups { + struct rb_root tree; + u64 index; +}; + +struct perf_event_context { + raw_spinlock_t lock; + struct mutex mutex; + struct list_head pmu_ctx_list; + struct perf_event_groups pinned_groups; + struct perf_event_groups flexible_groups; + struct list_head event_list; + int nr_events; + int nr_user; + int is_active; + int nr_stat; + int nr_freq; + int rotate_disable; + refcount_t refcount; + struct task_struct *task; + u64 time; + u64 timestamp; + u64 timeoffset; + struct perf_event_context *parent_ctx; + u64 parent_gen; + u64 generation; + int pin_count; + int nr_cgroups; + struct callback_head callback_head; + local_t nr_no_switch_fast; +}; + +struct perf_ctx_data { + struct callback_head callback_head; + refcount_t refcount; + int global; + struct kmem_cache *ctx_cache; + void *data; +}; + +struct mem_cgroup_id { + int id; + refcount_t ref; +}; + +struct page_counter { + atomic_long_t usage; + long unsigned int failcnt; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct cacheline_padding _pad1_; + long unsigned int emin; + atomic_long_t min_usage; + atomic_long_t children_min_usage; + long unsigned int elow; + atomic_long_t low_usage; + atomic_long_t children_low_usage; + long unsigned int watermark; + long unsigned int local_watermark; + struct cacheline_padding _pad2_; + bool protection_support; + bool track_failcnt; + long unsigned int min; + long unsigned int low; + long unsigned int high; + long unsigned int max; + struct page_counter *parent; + long: 64; + long: 64; +}; + +struct vmpressure { + long unsigned int scanned; + long unsigned int reclaimed; + long unsigned int tree_scanned; + long unsigned int tree_reclaimed; + spinlock_t sr_lock; + struct list_head events; + struct mutex events_lock; + struct work_struct work; +}; + +struct fprop_global { + struct percpu_counter events; + unsigned int period; + seqcount_t sequence; +}; + +struct wb_domain { + spinlock_t lock; + struct fprop_global completions; + struct timer_list period_timer; + long unsigned int period_time; + long unsigned int dirty_limit_tstamp; + long unsigned int dirty_limit; +}; + +struct wb_completion { + atomic_t cnt; + wait_queue_head_t *waitq; +}; + +struct memcg_cgwb_frn { + u64 bdi_id; + int memcg_id; + u64 at; + struct wb_completion done; +}; + +struct lru_gen_mm_list { + struct list_head fifo; + spinlock_t lock; +}; + +struct memcg_vmstats; + +struct memcg_vmstats_percpu; + +struct mem_cgroup_per_node; + +struct mem_cgroup { + struct cgroup_subsys_state css; + struct mem_cgroup_id id; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct page_counter memory; + union { + struct page_counter swap; + struct page_counter memsw; + }; + struct list_head memory_peaks; + struct list_head swap_peaks; + spinlock_t peaks_lock; + struct work_struct high_work; + long unsigned int zswap_max; + bool zswap_writeback; + struct vmpressure vmpressure; + bool oom_group; + int swappiness; + struct cgroup_file events_file; + struct cgroup_file events_local_file; + struct cgroup_file swap_events_file; + struct memcg_vmstats *vmstats; + atomic_long_t memory_events[9]; + atomic_long_t memory_events_local[9]; + u64 socket_pressure; + int kmemcg_id; + struct obj_cgroup *objcg; + struct obj_cgroup *orig_objcg; + struct list_head objcg_list; + struct memcg_vmstats_percpu *vmstats_percpu; + struct list_head cgwb_list; + struct wb_domain cgwb_domain; + struct memcg_cgwb_frn cgwb_frn[4]; + struct deferred_split deferred_split_queue; + struct lru_gen_mm_list mm_list; + struct mem_cgroup_per_node *nodeinfo[0]; + long: 64; + long: 64; +}; + +struct obj_cgroup { + struct percpu_ref refcnt; + struct mem_cgroup *memcg; + atomic_t nr_charged_bytes; + union { + struct list_head list; + struct callback_head rcu; + }; +}; + +typedef void *mempool_alloc_t(gfp_t, void *); + +typedef void mempool_free_t(void *, void *); + +struct mempool_s { + spinlock_t lock; + int min_nr; + int curr_nr; + void **elements; + void *pool_data; + mempool_alloc_t *alloc; + mempool_free_t *free; + wait_queue_head_t wait; +}; + +typedef struct mempool_s mempool_t; + +struct bio_alloc_cache; + +struct bio_set { + struct kmem_cache *bio_slab; + unsigned int front_pad; + struct bio_alloc_cache *cache; + mempool_t bio_pool; + mempool_t bvec_pool; + unsigned int back_pad; + spinlock_t rescue_lock; + struct bio_list rescue_list; + struct work_struct rescue_work; + struct workqueue_struct *rescue_workqueue; + struct hlist_node cpuhp_dead; +}; + +typedef unsigned int blk_mode_t; + +struct block_device; + +struct block_device_operations; + +struct request_queue; + +struct backing_dev_info; + +struct timer_rand_state; + +struct disk_events; + +struct cdrom_device_info; + +struct badblocks; + +struct blk_independent_access_ranges; + +struct gendisk { + int major; + int first_minor; + int minors; + char disk_name[32]; + short unsigned int events; + short unsigned int event_flags; + struct xarray part_tbl; + struct block_device *part0; + const struct block_device_operations *fops; + struct request_queue *queue; + void *private_data; + struct bio_set bio_split; + int flags; + long unsigned int state; + struct mutex open_mutex; + unsigned int open_partitions; + struct backing_dev_info *bdi; + struct kobject queue_kobj; + struct kobject *slave_dir; + struct list_head slave_bdevs; + struct timer_rand_state *random; + struct disk_events *ev; + unsigned int nr_zones; + unsigned int zone_capacity; + unsigned int last_zone_capacity; + long unsigned int *conv_zones_bitmap; + unsigned int zone_wplugs_hash_bits; + atomic_t nr_zone_wplugs; + spinlock_t zone_wplugs_lock; + struct mempool_s *zone_wplugs_pool; + struct hlist_head *zone_wplugs_hash; + struct workqueue_struct *zone_wplugs_wq; + struct cdrom_device_info *cdi; + int node_id; + struct badblocks *bb; + struct lockdep_map lockdep_map; + u64 diskseq; + blk_mode_t open_mode; + struct blk_independent_access_ranges *ia_ranges; + struct mutex rqos_state_mutex; +}; + +enum uprobe_task_state { + UTASK_RUNNING = 0, + UTASK_SSTEP = 1, + UTASK_SSTEP_ACK = 2, + UTASK_SSTEP_TRAPPED = 3, +}; + +struct arch_uprobe_task { + long unsigned int saved_scratch_register; + unsigned int saved_trap_nr; + unsigned int saved_tf; +}; + +struct return_instance; + +struct uprobe; + +struct arch_uprobe; + +struct uprobe_task { + enum uprobe_task_state state; + unsigned int depth; + struct return_instance *return_instances; + struct return_instance *ri_pool; + struct timer_list ri_timer; + seqcount_t ri_seqcount; + union { + struct { + struct arch_uprobe_task autask; + long unsigned int vaddr; + }; + struct { + struct callback_head dup_xol_work; + long unsigned int dup_xol_addr; + }; + }; + struct uprobe *active_uprobe; + long unsigned int xol_vaddr; + bool signal_denied; + struct arch_uprobe *auprobe; +}; + +struct bpf_run_ctx {}; + +struct timespec64 { + time64_t tv_sec; + long int tv_nsec; +}; + +struct delayed_work { + struct work_struct work; + struct timer_list timer; + struct workqueue_struct *wq; + int cpu; +}; + +struct rcu_segcblist { + struct callback_head *head; + struct callback_head **tails[4]; + long unsigned int gp_seq[4]; + atomic_long_t len; + long int seglen[4]; + u8 flags; +}; + +struct srcu_ctr { + atomic_long_t srcu_locks; + atomic_long_t srcu_unlocks; +}; + +struct srcu_node; + +struct srcu_data { + struct srcu_ctr srcu_ctrs[2]; + int srcu_reader_flavor; + long: 64; + long: 64; + long: 64; + spinlock_t lock; + struct rcu_segcblist srcu_cblist; + long unsigned int srcu_gp_seq_needed; + long unsigned int srcu_gp_seq_needed_exp; + bool srcu_cblist_invoking; + struct timer_list delay_work; + struct work_struct work; + struct callback_head srcu_barrier_head; + struct srcu_node *mynode; + long unsigned int grpmask; + int cpu; + struct srcu_struct *ssp; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct srcu_node { + spinlock_t lock; + long unsigned int srcu_have_cbs[4]; + long unsigned int srcu_data_have_cbs[4]; + long unsigned int srcu_gp_seq_needed_exp; + struct srcu_node *srcu_parent; + int grplo; + int grphi; +}; + +struct srcu_usage; + +struct srcu_struct { + struct srcu_ctr *srcu_ctrp; + struct srcu_data *sda; + struct lockdep_map dep_map; + struct srcu_usage *srcu_sup; +}; + +struct srcu_usage { + struct srcu_node *node; + struct srcu_node *level[4]; + int srcu_size_state; + struct mutex srcu_cb_mutex; + spinlock_t lock; + struct mutex srcu_gp_mutex; + long unsigned int srcu_gp_seq; + long unsigned int srcu_gp_seq_needed; + long unsigned int srcu_gp_seq_needed_exp; + long unsigned int srcu_gp_start; + long unsigned int srcu_last_gp_end; + long unsigned int srcu_size_jiffies; + long unsigned int srcu_n_lock_retries; + long unsigned int srcu_n_exp_nodelay; + bool sda_is_static; + long unsigned int srcu_barrier_seq; + struct mutex srcu_barrier_mutex; + struct completion srcu_barrier_completion; + atomic_t srcu_barrier_cpu_cnt; + long unsigned int reschedule_jiffies; + long unsigned int reschedule_count; + struct delayed_work work; + struct srcu_struct *srcu_ssp; +}; + +struct uprobe_xol_ops; + +struct arch_uprobe { + union { + u8 insn[16]; + u8 ixol[16]; + }; + const struct uprobe_xol_ops *ops; + union { + struct { + s32 offs; + u8 ilen; + u8 opc1; + } branch; + struct { + u8 fixups; + u8 ilen; + } defparam; + struct { + u8 reg_offset; + u8 ilen; + } push; + }; +}; + +struct uprobe_xol_ops { + bool (*emulate)(struct arch_uprobe *, struct pt_regs *); + int (*pre_xol)(struct arch_uprobe *, struct pt_regs *); + int (*post_xol)(struct arch_uprobe *, struct pt_regs *); + void (*abort)(struct arch_uprobe *, struct pt_regs *); +}; + +enum hprobe_state { + HPROBE_LEASED = 0, + HPROBE_STABLE = 1, + HPROBE_GONE = 2, + HPROBE_CONSUMED = 3, +}; + +struct hprobe { + enum hprobe_state state; + int srcu_idx; + struct uprobe *uprobe; +}; + +struct return_consumer { + __u64 cookie; + __u64 id; +}; + +struct return_instance { + struct hprobe hprobe; + long unsigned int func; + long unsigned int stack; + long unsigned int orig_ret_vaddr; + bool chained; + int cons_cnt; + struct return_instance *next; + struct callback_head rcu; + struct return_consumer consumer; + struct return_consumer *extra_consumers; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct vdso_image { + void *data; + long unsigned int size; + long unsigned int alt; + long unsigned int alt_len; + long unsigned int extable_base; + long unsigned int extable_len; + const void *extable; + long int sym_VDSO32_NOTE_MASK; + long int sym___kernel_sigreturn; + long int sym___kernel_rt_sigreturn; + long int sym___kernel_vsyscall; + long int sym_int80_landing_pad; + long int sym_vdso32_sigreturn_landing_pad; + long int sym_vdso32_rt_sigreturn_landing_pad; +}; + +typedef struct { + long unsigned int val; +} swp_entry_t; + +typedef int mm_id_mapcount_t; + +struct vmem_altmap { + long unsigned int base_pfn; + const long unsigned int end_pfn; + const long unsigned int reserve; + long unsigned int free; + long unsigned int align; + long unsigned int alloc; + bool inaccessible; +}; + +enum memory_type { + MEMORY_DEVICE_PRIVATE = 1, + MEMORY_DEVICE_COHERENT = 2, + MEMORY_DEVICE_FS_DAX = 3, + MEMORY_DEVICE_GENERIC = 4, + MEMORY_DEVICE_PCI_P2PDMA = 5, +}; + +struct dev_pagemap_ops; + +struct dev_pagemap { + struct vmem_altmap altmap; + struct percpu_ref ref; + struct completion done; + enum memory_type type; + unsigned int flags; + long unsigned int vmemmap_shift; + const struct dev_pagemap_ops *ops; + void *owner; + int nr_range; + union { + struct range range; + struct { + struct {} __empty_ranges; + struct range ranges[0]; + }; + }; +}; + +struct folio { + union { + struct { + long unsigned int flags; + union { + struct list_head lru; + struct { + void *__filler; + unsigned int mlock_count; + }; + struct dev_pagemap *pgmap; + }; + struct address_space *mapping; + union { + long unsigned int index; + long unsigned int share; + }; + union { + void *private; + swp_entry_t swap; + }; + atomic_t _mapcount; + atomic_t _refcount; + long unsigned int memcg_data; + }; + struct page page; + }; + union { + struct { + long unsigned int _flags_1; + long unsigned int _head_1; + union { + struct { + atomic_t _large_mapcount; + atomic_t _nr_pages_mapped; + atomic_t _entire_mapcount; + atomic_t _pincount; + mm_id_mapcount_t _mm_id_mapcount[2]; + union { + mm_id_t _mm_id[2]; + long unsigned int _mm_ids; + }; + }; + long unsigned int _usable_1[4]; + }; + atomic_t _mapcount_1; + atomic_t _refcount_1; + unsigned int _nr_pages; + }; + struct page __page_1; + }; + union { + struct { + long unsigned int _flags_2; + long unsigned int _head_2; + struct list_head _deferred_list; + }; + struct page __page_2; + }; + union { + struct { + long unsigned int _flags_3; + long unsigned int _head_3; + void *_hugetlb_subpool; + void *_hugetlb_cgroup; + void *_hugetlb_cgroup_rsvd; + void *_hugetlb_hwpoison; + }; + struct page __page_3; + }; +}; + +typedef struct { + long unsigned int v; +} freeptr_t; + +struct vfsmount; + +struct path { + struct vfsmount *mnt; + struct dentry *dentry; +}; + +struct file_ra_state { + long unsigned int start; + unsigned int size; + unsigned int async_size; + unsigned int ra_pages; + short unsigned int order; + short unsigned int mmap_miss; + loff_t prev_pos; +}; + +typedef struct { + atomic64_t refcnt; +} file_ref_t; + +struct fown_struct; + +struct file { + spinlock_t f_lock; + fmode_t f_mode; + const struct file_operations *f_op; + struct address_space *f_mapping; + void *private_data; + struct inode *f_inode; + unsigned int f_flags; + unsigned int f_iocb_flags; + const struct cred *f_cred; + struct fown_struct *f_owner; + struct path f_path; + union { + struct mutex f_pos_lock; + u64 f_pipe; + }; + loff_t f_pos; + void *f_security; + errseq_t f_wb_err; + errseq_t f_sb_err; + struct hlist_head *f_ep; + union { + struct callback_head f_task_work; + struct llist_node f_llist; + struct file_ra_state f_ra; + freeptr_t f_freeptr; + }; + file_ref_t f_ref; +}; + +struct userfaultfd_ctx; + +struct vm_userfaultfd_ctx { + struct userfaultfd_ctx *ctx; +}; + +struct anon_vma_name { + struct kref kref; + char name[0]; +}; + +struct vma_numab_state { + long unsigned int next_scan; + long unsigned int pids_active_reset; + long unsigned int pids_active[2]; + int start_scan_seq; + int prev_scan_seq; +}; + +struct pfnmap_track_ctx { + struct kref kref; + long unsigned int pfn; + long unsigned int size; +}; + +struct vm_operations_struct; + +struct vm_area_desc { + struct mm_struct *mm; + long unsigned int start; + long unsigned int end; + long unsigned int pgoff; + struct file *file; + vm_flags_t vm_flags; + pgprot_t page_prot; + const struct vm_operations_struct *vm_ops; + void *private_data; +}; + +typedef unsigned int vm_fault_t; + +struct vm_fault; + +struct vm_operations_struct { + void (*open)(struct vm_area_struct *); + void (*close)(struct vm_area_struct *); + int (*may_split)(struct vm_area_struct *, long unsigned int); + int (*mremap)(struct vm_area_struct *); + int (*mprotect)(struct vm_area_struct *, long unsigned int, long unsigned int, long unsigned int); + vm_fault_t (*fault)(struct vm_fault *); + vm_fault_t (*huge_fault)(struct vm_fault *, unsigned int); + vm_fault_t (*map_pages)(struct vm_fault *, long unsigned int, long unsigned int); + long unsigned int (*pagesize)(struct vm_area_struct *); + vm_fault_t (*page_mkwrite)(struct vm_fault *); + vm_fault_t (*pfn_mkwrite)(struct vm_fault *); + int (*access)(struct vm_area_struct *, long unsigned int, void *, int, int); + const char * (*name)(struct vm_area_struct *); + int (*set_policy)(struct vm_area_struct *, struct mempolicy *); + struct mempolicy * (*get_policy)(struct vm_area_struct *, long unsigned int, long unsigned int *); + struct page * (*find_special_page)(struct vm_area_struct *, long unsigned int); +}; + +struct anon_vma; + +struct vm_area_struct { + union { + struct { + long unsigned int vm_start; + long unsigned int vm_end; + }; + freeptr_t vm_freeptr; + }; + struct mm_struct *vm_mm; + pgprot_t vm_page_prot; + union { + const vm_flags_t vm_flags; + vm_flags_t __vm_flags; + }; + unsigned int vm_lock_seq; + struct list_head anon_vma_chain; + struct anon_vma *anon_vma; + const struct vm_operations_struct *vm_ops; + long unsigned int vm_pgoff; + struct file *vm_file; + void *vm_private_data; + atomic_long_t swap_readahead_info; + struct mempolicy *vm_policy; + struct vma_numab_state *numab_state; + refcount_t vm_refcnt; + struct { + struct rb_node rb; + long unsigned int rb_subtree_last; + } shared; + struct anon_vma_name *anon_name; + struct vm_userfaultfd_ctx vm_userfaultfd_ctx; + struct pfnmap_track_ctx *pfnmap_track_ctx; +}; + +struct mm_cid { + u64 time; + int cid; + int recent_cid; +}; + +struct uid_gid_extent { + u32 first; + u32 lower_first; + u32 count; +}; + +struct uid_gid_map { + union { + struct { + struct uid_gid_extent extent[5]; + u32 nr_extents; + }; + struct { + struct uid_gid_extent *forward; + struct uid_gid_extent *reverse; + }; + }; +}; + +struct binfmt_misc; + +struct user_namespace { + struct uid_gid_map uid_map; + struct uid_gid_map gid_map; + struct uid_gid_map projid_map; + struct user_namespace *parent; + int level; + kuid_t owner; + kgid_t group; + struct ns_common ns; + long unsigned int flags; + bool parent_could_setfcap; + struct list_head keyring_name_list; + struct key *user_keyring_register; + struct rw_semaphore keyring_sem; + struct key *persistent_keyring_register; + struct work_struct work; + struct ctl_table_set set; + struct ctl_table_header *sysctls; + struct ucounts *ucounts; + long int ucount_max[12]; + long int rlimit_max[4]; + struct binfmt_misc *binfmt_misc; +}; + +enum fault_flag { + FAULT_FLAG_WRITE = 1, + FAULT_FLAG_MKWRITE = 2, + FAULT_FLAG_ALLOW_RETRY = 4, + FAULT_FLAG_RETRY_NOWAIT = 8, + FAULT_FLAG_KILLABLE = 16, + FAULT_FLAG_TRIED = 32, + FAULT_FLAG_USER = 64, + FAULT_FLAG_REMOTE = 128, + FAULT_FLAG_INSTRUCTION = 256, + FAULT_FLAG_INTERRUPTIBLE = 512, + FAULT_FLAG_UNSHARE = 1024, + FAULT_FLAG_ORIG_PTE_VALID = 2048, + FAULT_FLAG_VMA_LOCK = 4096, +}; + +struct vm_fault { + const struct { + struct vm_area_struct *vma; + gfp_t gfp_mask; + long unsigned int pgoff; + long unsigned int address; + long unsigned int real_address; + }; + enum fault_flag flags; + pmd_t *pmd; + pud_t *pud; + union { + pte_t orig_pte; + pmd_t orig_pmd; + }; + struct page *cow_page; + struct page *page; + pte_t *pte; + spinlock_t *ptl; + pgtable_t prealloc_pte; +}; + +struct per_cpu_pages { + spinlock_t lock; + int count; + int high; + int high_min; + int high_max; + int batch; + u8 flags; + u8 alloc_factor; + u8 expire; + short int free_count; + struct list_head lists[14]; +}; + +struct per_cpu_zonestat { + s8 vm_stat_diff[12]; + s8 stat_threshold; + long unsigned int vm_numa_event[6]; +}; + +struct per_cpu_nodestat { + s8 stat_threshold; + s8 vm_node_stat_diff[49]; +}; + +struct list_lru_node; + +struct list_lru { + struct list_lru_node *node; + struct list_head list; + int shrinker_id; + bool memcg_aware; + struct xarray xa; +}; + +struct kernfs_root; + +struct kernfs_elem_dir { + long unsigned int subdirs; + struct rb_root children; + struct kernfs_root *root; + long unsigned int rev; +}; + +struct kernfs_elem_symlink { + struct kernfs_node *target_kn; +}; + +struct kernfs_ops; + +struct kernfs_open_node; + +struct kernfs_elem_attr { + const struct kernfs_ops *ops; + struct kernfs_open_node *open; + loff_t size; + struct kernfs_node *notify_next; +}; + +struct kernfs_iattrs; + +struct kernfs_node { + atomic_t count; + atomic_t active; + struct kernfs_node *__parent; + const char *name; + struct rb_node rb; + const void *ns; + unsigned int hash; + short unsigned int flags; + umode_t mode; + union { + struct kernfs_elem_dir dir; + struct kernfs_elem_symlink symlink; + struct kernfs_elem_attr attr; + }; + u64 id; + void *priv; + struct kernfs_iattrs *iattr; + struct callback_head rcu; +}; + +struct kernfs_open_file; + +struct kernfs_ops { + int (*open)(struct kernfs_open_file *); + void (*release)(struct kernfs_open_file *); + int (*seq_show)(struct seq_file *, void *); + void * (*seq_start)(struct seq_file *, loff_t *); + void * (*seq_next)(struct seq_file *, void *, loff_t *); + void (*seq_stop)(struct seq_file *, void *); + ssize_t (*read)(struct kernfs_open_file *, char *, size_t, loff_t); + size_t atomic_write_len; + bool prealloc; + ssize_t (*write)(struct kernfs_open_file *, char *, size_t, loff_t); + __poll_t (*poll)(struct kernfs_open_file *, struct poll_table_struct *); + int (*mmap)(struct kernfs_open_file *, struct vm_area_struct *); + loff_t (*llseek)(struct kernfs_open_file *, loff_t, int); +}; + +struct seq_file { + char *buf; + size_t size; + size_t from; + size_t count; + size_t pad_until; + loff_t index; + loff_t read_pos; + struct mutex lock; + const struct seq_operations *op; + int poll_event; + const struct file *file; + void *private; +}; + +struct kernfs_open_file { + struct kernfs_node *kn; + struct file *file; + struct seq_file *seq_file; + void *priv; + struct mutex mutex; + struct mutex prealloc_mutex; + int event; + struct list_head list; + char *prealloc_buf; + size_t atomic_write_len; + bool mmapped: 1; + bool released: 1; + const struct vm_operations_struct *vm_ops; +}; + +typedef void (*poll_queue_proc)(struct file *, wait_queue_head_t *, struct poll_table_struct *); + +struct poll_table_struct { + poll_queue_proc _qproc; + __poll_t _key; +}; + +enum kobj_ns_type { + KOBJ_NS_TYPE_NONE = 0, + KOBJ_NS_TYPE_NET = 1, + KOBJ_NS_TYPES = 2, +}; + +struct sock; + +struct kobj_ns_type_operations { + enum kobj_ns_type type; + bool (*current_may_mount)(void); + void * (*grab_current_ns)(void); + const void * (*netlink_ns)(struct sock *); + const void * (*initial_ns)(void); + void (*drop_ns)(void *); +}; + +struct kstat { + u32 result_mask; + umode_t mode; + unsigned int nlink; + uint32_t blksize; + u64 attributes; + u64 attributes_mask; + u64 ino; + dev_t dev; + dev_t rdev; + kuid_t uid; + kgid_t gid; + loff_t size; + struct timespec64 atime; + struct timespec64 mtime; + struct timespec64 ctime; + struct timespec64 btime; + u64 blocks; + u64 mnt_id; + u64 change_cookie; + u64 subvol; + u32 dio_mem_align; + u32 dio_offset_align; + u32 dio_read_offset_align; + u32 atomic_write_unit_min; + u32 atomic_write_unit_max; + u32 atomic_write_unit_max_opt; + u32 atomic_write_segments_max; +}; + +struct attribute { + const char *name; + umode_t mode; +}; + +struct bin_attribute { + struct attribute attr; + size_t size; + void *private; + struct address_space * (*f_mapping)(void); + ssize_t (*read)(struct file *, struct kobject *, const struct bin_attribute *, char *, loff_t, size_t); + ssize_t (*read_new)(struct file *, struct kobject *, const struct bin_attribute *, char *, loff_t, size_t); + ssize_t (*write)(struct file *, struct kobject *, const struct bin_attribute *, char *, loff_t, size_t); + ssize_t (*write_new)(struct file *, struct kobject *, const struct bin_attribute *, char *, loff_t, size_t); + loff_t (*llseek)(struct file *, struct kobject *, const struct bin_attribute *, loff_t, int); + int (*mmap)(struct file *, struct kobject *, const struct bin_attribute *, struct vm_area_struct *); +}; + +struct sysfs_ops { + ssize_t (*show)(struct kobject *, struct attribute *, char *); + ssize_t (*store)(struct kobject *, struct attribute *, const char *, size_t); +}; + +struct kset_uevent_ops; + +struct kset { + struct list_head list; + spinlock_t list_lock; + struct kobject kobj; + const struct kset_uevent_ops *uevent_ops; +}; + +struct kobj_type { + void (*release)(struct kobject *); + const struct sysfs_ops *sysfs_ops; + const struct attribute_group **default_groups; + const struct kobj_ns_type_operations * (*child_ns_type)(const struct kobject *); + const void * (*namespace)(const struct kobject *); + void (*get_ownership)(const struct kobject *, kuid_t *, kgid_t *); +}; + +struct kobj_uevent_env { + char *argv[3]; + char *envp[64]; + int envp_idx; + char buf[2048]; + int buflen; +}; + +struct kset_uevent_ops { + int (* const filter)(const struct kobject *); + const char * (* const name)(const struct kobject *); + int (* const uevent)(const struct kobject *, struct kobj_uevent_env *); +}; + +struct em_perf_state { + long unsigned int performance; + long unsigned int frequency; + long unsigned int power; + long unsigned int cost; + long unsigned int flags; +}; + +struct em_perf_table { + struct callback_head rcu; + struct kref kref; + struct em_perf_state state[0]; +}; + +struct em_perf_domain { + struct em_perf_table *em_table; + int nr_perf_states; + int min_perf_state; + int max_perf_state; + long unsigned int flags; + long unsigned int cpus[0]; +}; + +enum dl_dev_state { + DL_DEV_NO_DRIVER = 0, + DL_DEV_PROBING = 1, + DL_DEV_DRIVER_BOUND = 2, + DL_DEV_UNBINDING = 3, +}; + +struct dev_links_info { + struct list_head suppliers; + struct list_head consumers; + struct list_head defer_sync; + enum dl_dev_state status; +}; + +struct pm_message { + int event; +}; + +typedef struct pm_message pm_message_t; + +enum rpm_request { + RPM_REQ_NONE = 0, + RPM_REQ_IDLE = 1, + RPM_REQ_SUSPEND = 2, + RPM_REQ_AUTOSUSPEND = 3, + RPM_REQ_RESUME = 4, +}; + +enum rpm_status { + RPM_INVALID = -1, + RPM_ACTIVE = 0, + RPM_RESUMING = 1, + RPM_SUSPENDED = 2, + RPM_SUSPENDING = 3, + RPM_BLOCKED = 4, +}; + +struct wakeup_source; + +struct wake_irq; + +struct pm_subsys_data; + +struct device; + +struct dev_pm_qos; + +struct dev_pm_info { + pm_message_t power_state; + bool can_wakeup: 1; + bool async_suspend: 1; + bool in_dpm_list: 1; + bool is_prepared: 1; + bool is_suspended: 1; + bool is_noirq_suspended: 1; + bool is_late_suspended: 1; + bool no_pm: 1; + bool early_init: 1; + bool direct_complete: 1; + u32 driver_flags; + spinlock_t lock; + struct list_head entry; + struct completion completion; + struct wakeup_source *wakeup; + bool wakeup_path: 1; + bool syscore: 1; + bool no_pm_callbacks: 1; + bool work_in_progress: 1; + bool smart_suspend: 1; + bool must_resume: 1; + bool may_skip_resume: 1; + bool strict_midlayer: 1; + struct hrtimer suspend_timer; + u64 timer_expires; + struct work_struct work; + wait_queue_head_t wait_queue; + struct wake_irq *wakeirq; + atomic_t usage_count; + atomic_t child_count; + unsigned int disable_depth: 3; + bool idle_notification: 1; + bool request_pending: 1; + bool deferred_resume: 1; + bool needs_force_resume: 1; + bool runtime_auto: 1; + bool ignore_children: 1; + bool no_callbacks: 1; + bool irq_safe: 1; + bool use_autosuspend: 1; + bool timer_autosuspends: 1; + bool memalloc_noio: 1; + unsigned int links_count; + enum rpm_request request; + enum rpm_status runtime_status; + enum rpm_status last_status; + int runtime_error; + int autosuspend_delay; + u64 last_busy; + u64 active_time; + u64 suspended_time; + u64 accounting_timestamp; + struct pm_subsys_data *subsys_data; + void (*set_latency_tolerance)(struct device *, s32); + struct dev_pm_qos *qos; + bool detach_power_off: 1; +}; + +struct irq_domain; + +struct msi_device_data; + +struct dev_msi_info { + struct irq_domain *domain; + struct msi_device_data *data; +}; + +struct dev_archdata {}; + +enum device_removable { + DEVICE_REMOVABLE_NOT_SUPPORTED = 0, + DEVICE_REMOVABLE_UNKNOWN = 1, + DEVICE_FIXED = 2, + DEVICE_REMOVABLE = 3, +}; + +struct device_private; + +struct device_type; + +struct bus_type; + +struct device_driver; + +struct dev_pm_domain; + +struct dev_pin_info; + +struct dma_map_ops; + +struct bus_dma_region; + +struct device_dma_parameters; + +struct cma; + +struct io_tlb_mem; + +struct device_node; + +struct fwnode_handle; + +struct class; + +struct iommu_group; + +struct dev_iommu; + +struct device_physical_location; + +struct device { + struct kobject kobj; + struct device *parent; + struct device_private *p; + const char *init_name; + const struct device_type *type; + const struct bus_type *bus; + struct device_driver *driver; + void *platform_data; + void *driver_data; + struct mutex mutex; + struct dev_links_info links; + struct dev_pm_info power; + struct dev_pm_domain *pm_domain; + struct em_perf_domain *em_pd; + struct dev_pin_info *pins; + struct dev_msi_info msi; + const struct dma_map_ops *dma_ops; + u64 *dma_mask; + u64 coherent_dma_mask; + u64 bus_dma_limit; + const struct bus_dma_region *dma_range_map; + struct device_dma_parameters *dma_parms; + struct list_head dma_pools; + struct cma *cma_area; + struct io_tlb_mem *dma_io_tlb_mem; + struct list_head dma_io_tlb_pools; + spinlock_t dma_io_tlb_lock; + bool dma_uses_io_tlb; + struct dev_archdata archdata; + struct device_node *of_node; + struct fwnode_handle *fwnode; + int numa_node; + dev_t devt; + u32 id; + spinlock_t devres_lock; + struct list_head devres_head; + const struct class *class; + const struct attribute_group **groups; + void (*release)(struct device *); + struct iommu_group *iommu_group; + struct dev_iommu *iommu; + struct device_physical_location *physical_location; + enum device_removable removable; + bool offline_disabled: 1; + bool offline: 1; + bool of_node_reused: 1; + bool state_synced: 1; + bool can_match: 1; + bool dma_skip_sync: 1; + bool dma_iommu: 1; +}; + +struct resource { + resource_size_t start; + resource_size_t end; + const char *name; + long unsigned int flags; + long unsigned int desc; + struct resource *parent; + struct resource *sibling; + struct resource *child; +}; + +struct dev_pm_ops { + int (*prepare)(struct device *); + void (*complete)(struct device *); + int (*suspend)(struct device *); + int (*resume)(struct device *); + int (*freeze)(struct device *); + int (*thaw)(struct device *); + int (*poweroff)(struct device *); + int (*restore)(struct device *); + int (*suspend_late)(struct device *); + int (*resume_early)(struct device *); + int (*freeze_late)(struct device *); + int (*thaw_early)(struct device *); + int (*poweroff_late)(struct device *); + int (*restore_early)(struct device *); + int (*suspend_noirq)(struct device *); + int (*resume_noirq)(struct device *); + int (*freeze_noirq)(struct device *); + int (*thaw_noirq)(struct device *); + int (*poweroff_noirq)(struct device *); + int (*restore_noirq)(struct device *); + int (*runtime_suspend)(struct device *); + int (*runtime_resume)(struct device *); + int (*runtime_idle)(struct device *); +}; + +struct pm_domain_data; + +struct pm_subsys_data { + spinlock_t lock; + unsigned int refcount; + unsigned int clock_op_might_sleep; + struct mutex clock_mutex; + struct list_head clock_list; + struct pm_domain_data *domain_data; +}; + +struct wakeup_source { + const char *name; + int id; + struct list_head entry; + spinlock_t lock; + struct wake_irq *wakeirq; + struct timer_list timer; + long unsigned int timer_expires; + ktime_t total_time; + ktime_t max_time; + ktime_t last_time; + ktime_t start_prevent_time; + ktime_t prevent_sleep_time; + long unsigned int event_count; + long unsigned int active_count; + long unsigned int relax_count; + long unsigned int expire_count; + long unsigned int wakeup_count; + struct device *dev; + bool active: 1; + bool autosleep_enabled: 1; +}; + +struct dev_pm_domain { + struct dev_pm_ops ops; + int (*start)(struct device *); + void (*detach)(struct device *, bool); + int (*activate)(struct device *); + void (*sync)(struct device *); + void (*dismiss)(struct device *); + int (*set_performance_state)(struct device *, unsigned int); +}; + +struct bus_type { + const char *name; + const char *dev_name; + const struct attribute_group **bus_groups; + const struct attribute_group **dev_groups; + const struct attribute_group **drv_groups; + int (*match)(struct device *, const struct device_driver *); + int (*uevent)(const struct device *, struct kobj_uevent_env *); + int (*probe)(struct device *); + void (*sync_state)(struct device *); + void (*remove)(struct device *); + void (*shutdown)(struct device *); + const struct cpumask * (*irq_get_affinity)(struct device *, unsigned int); + int (*online)(struct device *); + int (*offline)(struct device *); + int (*suspend)(struct device *, pm_message_t); + int (*resume)(struct device *); + int (*num_vf)(struct device *); + int (*dma_configure)(struct device *); + void (*dma_cleanup)(struct device *); + const struct dev_pm_ops *pm; + bool need_parent_lock; +}; + +enum probe_type { + PROBE_DEFAULT_STRATEGY = 0, + PROBE_PREFER_ASYNCHRONOUS = 1, + PROBE_FORCE_SYNCHRONOUS = 2, +}; + +struct of_device_id; + +struct acpi_device_id; + +struct driver_private; + +struct device_driver { + const char *name; + const struct bus_type *bus; + struct module *owner; + const char *mod_name; + bool suppress_bind_attrs; + enum probe_type probe_type; + const struct of_device_id *of_match_table; + const struct acpi_device_id *acpi_match_table; + int (*probe)(struct device *); + void (*sync_state)(struct device *); + int (*remove)(struct device *); + void (*shutdown)(struct device *); + int (*suspend)(struct device *, pm_message_t); + int (*resume)(struct device *); + const struct attribute_group **groups; + const struct attribute_group **dev_groups; + const struct dev_pm_ops *pm; + void (*coredump)(struct device *); + struct driver_private *p; +}; + +struct class { + const char *name; + const struct attribute_group **class_groups; + const struct attribute_group **dev_groups; + int (*dev_uevent)(const struct device *, struct kobj_uevent_env *); + char * (*devnode)(const struct device *, umode_t *); + void (*class_release)(const struct class *); + void (*dev_release)(struct device *); + int (*shutdown_pre)(struct device *); + const struct kobj_ns_type_operations *ns_type; + const void * (*namespace)(const struct device *); + void (*get_ownership)(const struct device *, kuid_t *, kgid_t *); + const struct dev_pm_ops *pm; +}; + +struct device_type { + const char *name; + const struct attribute_group **groups; + int (*uevent)(const struct device *, struct kobj_uevent_env *); + char * (*devnode)(const struct device *, umode_t *, kuid_t *, kgid_t *); + void (*release)(struct device *); + const struct dev_pm_ops *pm; +}; + +typedef int proc_handler(const struct ctl_table *, int, void *, size_t *, loff_t *); + +struct ctl_table_poll; + +struct ctl_table { + const char *procname; + void *data; + int maxlen; + umode_t mode; + proc_handler *proc_handler; + struct ctl_table_poll *poll; + void *extra1; + void *extra2; +}; + +struct ctl_table_poll { + atomic_t event; + wait_queue_head_t wait; +}; + +struct ctl_node { + struct rb_node node; + struct ctl_table_header *header; +}; + +struct ctl_table_root { + struct ctl_table_set default_set; + struct ctl_table_set * (*lookup)(struct ctl_table_root *); + void (*set_ownership)(struct ctl_table_header *, kuid_t *, kgid_t *); + int (*permissions)(struct ctl_table_header *, const struct ctl_table *); +}; + +enum umh_disable_depth { + UMH_ENABLED = 0, + UMH_FREEZING = 1, + UMH_DISABLED = 2, +}; + +struct iovec { + void *iov_base; + __kernel_size_t iov_len; +}; + +struct kvec { + void *iov_base; + size_t iov_len; +}; + +struct bio_vec { + struct page *bv_page; + unsigned int bv_len; + unsigned int bv_offset; +}; + +struct folio_batch { + unsigned char nr; + unsigned char i; + bool percpu_pvec_drained; + struct folio *folios[31]; +}; + +struct folio_queue { + struct folio_batch vec; + u8 orders[31]; + struct folio_queue *next; + struct folio_queue *prev; + long unsigned int marks; + long unsigned int marks2; + unsigned int rreq_id; + unsigned int debug_id; +}; + +struct iov_iter { + u8 iter_type; + bool nofault; + bool data_source; + size_t iov_offset; + union { + struct iovec __ubuf_iovec; + struct { + union { + const struct iovec *__iov; + const struct kvec *kvec; + const struct bio_vec *bvec; + const struct folio_queue *folioq; + struct xarray *xarray; + void *ubuf; + }; + size_t count; + }; + }; + union { + long unsigned int nr_segs; + u8 folioq_slot; + loff_t xarray_start; + }; +}; + +struct wait_page_queue; + +struct kiocb { + struct file *ki_filp; + loff_t ki_pos; + void (*ki_complete)(struct kiocb *, long int); + void *private; + int ki_flags; + u16 ki_ioprio; + u8 ki_write_stream; + union { + struct wait_page_queue *ki_waitq; + ssize_t (*dio_complete)(void *); + }; +}; + +struct hlist_bl_head { + struct hlist_bl_node *first; +}; + +enum rw_hint { + WRITE_LIFE_NOT_SET = 0, + WRITE_LIFE_NONE = 1, + WRITE_LIFE_SHORT = 2, + WRITE_LIFE_MEDIUM = 3, + WRITE_LIFE_LONG = 4, + WRITE_LIFE_EXTREME = 5, +} __attribute__((mode(byte))); + +struct posix_acl; + +struct inode_operations; + +struct bdi_writeback; + +struct file_lock_context; + +struct cdev; + +struct fsnotify_mark_connector; + +struct fscrypt_inode_info; + +struct fsverity_info; + +struct inode { + umode_t i_mode; + short unsigned int i_opflags; + kuid_t i_uid; + kgid_t i_gid; + unsigned int i_flags; + struct posix_acl *i_acl; + struct posix_acl *i_default_acl; + const struct inode_operations *i_op; + struct super_block *i_sb; + struct address_space *i_mapping; + void *i_security; + long unsigned int i_ino; + union { + const unsigned int i_nlink; + unsigned int __i_nlink; + }; + dev_t i_rdev; + loff_t i_size; + time64_t i_atime_sec; + time64_t i_mtime_sec; + time64_t i_ctime_sec; + u32 i_atime_nsec; + u32 i_mtime_nsec; + u32 i_ctime_nsec; + u32 i_generation; + spinlock_t i_lock; + short unsigned int i_bytes; + u8 i_blkbits; + enum rw_hint i_write_hint; + blkcnt_t i_blocks; + u32 i_state; + struct rw_semaphore i_rwsem; + long unsigned int dirtied_when; + long unsigned int dirtied_time_when; + struct hlist_node i_hash; + struct list_head i_io_list; + struct bdi_writeback *i_wb; + int i_wb_frn_winner; + u16 i_wb_frn_avg_time; + u16 i_wb_frn_history; + struct list_head i_lru; + struct list_head i_sb_list; + struct list_head i_wb_list; + union { + struct hlist_head i_dentry; + struct callback_head i_rcu; + }; + atomic64_t i_version; + atomic64_t i_sequence; + atomic_t i_count; + atomic_t i_dio_count; + atomic_t i_writecount; + atomic_t i_readcount; + union { + const struct file_operations *i_fop; + void (*free_inode)(struct inode *); + }; + struct file_lock_context *i_flctx; + struct address_space i_data; + union { + struct list_head i_devices; + int i_linklen; + }; + union { + struct pipe_inode_info *i_pipe; + struct cdev *i_cdev; + char *i_link; + unsigned int i_dir_seq; + }; + __u32 i_fsnotify_mask; + struct fsnotify_mark_connector *i_fsnotify_marks; + struct fscrypt_inode_info *i_crypt_info; + struct fsverity_info *i_verity_info; + void *i_private; +}; + +enum d_real_type { + D_REAL_DATA = 0, + D_REAL_METADATA = 1, +}; + +struct dentry_operations { + int (*d_revalidate)(struct inode *, const struct qstr *, struct dentry *, unsigned int); + int (*d_weak_revalidate)(struct dentry *, unsigned int); + int (*d_hash)(const struct dentry *, struct qstr *); + int (*d_compare)(const struct dentry *, unsigned int, const char *, const struct qstr *); + int (*d_delete)(const struct dentry *); + int (*d_init)(struct dentry *); + void (*d_release)(struct dentry *); + void (*d_prune)(struct dentry *); + void (*d_iput)(struct dentry *, struct inode *); + char * (*d_dname)(struct dentry *, char *, int); + struct vfsmount * (*d_automount)(struct path *); + int (*d_manage)(const struct path *, bool); + struct dentry * (*d_real)(struct dentry *, enum d_real_type); + bool (*d_unalias_trylock)(const struct dentry *); + void (*d_unalias_unlock)(const struct dentry *); + long: 64; +}; + +struct mtd_info; + +typedef long long int qsize_t; + +struct quota_format_type; + +struct mem_dqinfo { + struct quota_format_type *dqi_format; + int dqi_fmt_id; + struct list_head dqi_dirty_list; + long unsigned int dqi_flags; + unsigned int dqi_bgrace; + unsigned int dqi_igrace; + qsize_t dqi_max_spc_limit; + qsize_t dqi_max_ino_limit; + void *dqi_priv; +}; + +struct quota_format_ops; + +struct quota_info { + unsigned int flags; + struct rw_semaphore dqio_sem; + struct inode *files[3]; + struct mem_dqinfo info[3]; + const struct quota_format_ops *ops[3]; +}; + +struct rcu_sync { + int gp_state; + int gp_count; + wait_queue_head_t gp_wait; + struct callback_head cb_head; +}; + +struct percpu_rw_semaphore { + struct rcu_sync rss; + unsigned int *read_count; + struct rcuwait writer; + wait_queue_head_t waiters; + atomic_t block; +}; + +struct sb_writers { + short unsigned int frozen; + int freeze_kcount; + int freeze_ucount; + const void *freeze_owner; + struct percpu_rw_semaphore rw_sem[3]; +}; + +typedef struct { + __u8 b[16]; +} uuid_t; + +struct super_operations; + +struct dquot_operations; + +struct quotactl_ops; + +struct export_operations; + +struct xattr_handler; + +struct fscrypt_operations; + +struct fscrypt_keyring; + +struct fsverity_operations; + +struct unicode_map; + +struct fsnotify_sb_info; + +struct shrinker; + +struct super_block { + struct list_head s_list; + dev_t s_dev; + unsigned char s_blocksize_bits; + long unsigned int s_blocksize; + loff_t s_maxbytes; + struct file_system_type *s_type; + const struct super_operations *s_op; + const struct dquot_operations *dq_op; + const struct quotactl_ops *s_qcop; + const struct export_operations *s_export_op; + long unsigned int s_flags; + long unsigned int s_iflags; + long unsigned int s_magic; + struct dentry *s_root; + struct rw_semaphore s_umount; + int s_count; + atomic_t s_active; + void *s_security; + const struct xattr_handler * const *s_xattr; + const struct fscrypt_operations *s_cop; + struct fscrypt_keyring *s_master_keys; + const struct fsverity_operations *s_vop; + struct unicode_map *s_encoding; + __u16 s_encoding_flags; + struct hlist_bl_head s_roots; + struct list_head s_mounts; + struct block_device *s_bdev; + struct file *s_bdev_file; + struct backing_dev_info *s_bdi; + struct mtd_info *s_mtd; + struct hlist_node s_instances; + unsigned int s_quota_types; + struct quota_info s_dquot; + struct sb_writers s_writers; + void *s_fs_info; + u32 s_time_gran; + time64_t s_time_min; + time64_t s_time_max; + u32 s_fsnotify_mask; + struct fsnotify_sb_info *s_fsnotify_info; + char s_id[32]; + uuid_t s_uuid; + u8 s_uuid_len; + char s_sysfs_name[37]; + unsigned int s_max_links; + unsigned int s_d_flags; + struct mutex s_vfs_rename_mutex; + const char *s_subtype; + const struct dentry_operations *__s_d_op; + struct shrinker *s_shrink; + atomic_long_t s_remove_count; + int s_readonly_remount; + errseq_t s_wb_err; + struct workqueue_struct *s_dio_done_wq; + struct hlist_head s_pins; + struct user_namespace *s_user_ns; + struct list_lru s_dentry_lru; + struct list_lru s_inode_lru; + struct callback_head rcu; + struct work_struct destroy_work; + struct mutex s_sync_lock; + int s_stack_depth; + long: 0; + spinlock_t s_inode_list_lock; + struct list_head s_inodes; + spinlock_t s_inode_wblist_lock; + struct list_head s_inodes_wb; + long: 64; + long: 64; +}; + +struct mnt_idmap; + +struct vfsmount { + struct dentry *mnt_root; + struct super_block *mnt_sb; + int mnt_flags; + struct mnt_idmap *mnt_idmap; +}; + +struct shrinker_info_unit { + atomic_long_t nr_deferred[64]; + long unsigned int map[1]; +}; + +struct shrinker_info { + struct callback_head rcu; + int map_nr_max; + struct shrinker_info_unit *unit[0]; +}; + +struct shrink_control { + gfp_t gfp_mask; + int nid; + long unsigned int nr_to_scan; + long unsigned int nr_scanned; + struct mem_cgroup *memcg; +}; + +struct shrinker { + long unsigned int (*count_objects)(struct shrinker *, struct shrink_control *); + long unsigned int (*scan_objects)(struct shrinker *, struct shrink_control *); + long int batch; + int seeks; + unsigned int flags; + refcount_t refcount; + struct completion done; + struct callback_head rcu; + void *private_data; + struct list_head list; + int id; + atomic_long_t *nr_deferred; +}; + +struct list_lru_one { + struct list_head list; + long int nr_items; + spinlock_t lock; +}; + +struct list_lru_node { + struct list_lru_one lru; + atomic_long_t nr_items; + long: 64; + long: 64; + long: 64; +}; + +enum migrate_mode { + MIGRATE_ASYNC = 0, + MIGRATE_SYNC_LIGHT = 1, + MIGRATE_SYNC = 2, +}; + +struct exception_table_entry { + int insn; + int fixup; + int data; +}; + +struct key_tag { + struct callback_head rcu; + refcount_t usage; + bool removed; +}; + +typedef int (*request_key_actor_t)(struct key *, void *); + +struct key_preparsed_payload; + +struct key_match_data; + +struct kernel_pkey_params; + +struct kernel_pkey_query; + +struct key_type { + const char *name; + size_t def_datalen; + unsigned int flags; + int (*vet_description)(const char *); + int (*preparse)(struct key_preparsed_payload *); + void (*free_preparse)(struct key_preparsed_payload *); + int (*instantiate)(struct key *, struct key_preparsed_payload *); + int (*update)(struct key *, struct key_preparsed_payload *); + int (*match_preparse)(struct key_match_data *); + void (*match_free)(struct key_match_data *); + void (*revoke)(struct key *); + void (*destroy)(struct key *); + void (*describe)(const struct key *, struct seq_file *); + long int (*read)(const struct key *, char *, size_t); + request_key_actor_t request_key; + struct key_restriction * (*lookup_restriction)(const char *); + int (*asym_query)(const struct kernel_pkey_params *, struct kernel_pkey_query *); + int (*asym_eds_op)(struct kernel_pkey_params *, const void *, void *); + int (*asym_verify_signature)(struct kernel_pkey_params *, const void *, const void *); + struct list_head link; + struct lock_class_key lock_class; +}; + +typedef int (*key_restrict_link_func_t)(struct key *, const struct key_type *, const union key_payload *, struct key *); + +struct key_restriction { + key_restrict_link_func_t check; + struct key *key; + struct key_type *keytype; +}; + +struct user_struct { + refcount_t __count; + struct percpu_counter epoll_watches; + long unsigned int unix_inflight; + atomic_long_t pipe_bufs; + struct hlist_node uidhash_node; + kuid_t uid; + atomic_long_t locked_vm; + atomic_t nr_watches; + struct ratelimit_state ratelimit; +}; + +struct group_info { + refcount_t usage; + int ngroups; + kgid_t gid[0]; +}; + +struct hrtimer_cpu_base { + raw_spinlock_t lock; + unsigned int cpu; + unsigned int active_bases; + unsigned int clock_was_set_seq; + unsigned int hres_active: 1; + unsigned int in_hrtirq: 1; + unsigned int hang_detected: 1; + unsigned int softirq_activated: 1; + unsigned int online: 1; + unsigned int nr_events; + short unsigned int nr_retries; + short unsigned int nr_hangs; + unsigned int max_hang_time; + ktime_t expires_next; + struct hrtimer *next_timer; + ktime_t softirq_expires_next; + struct hrtimer *softirq_next_timer; + struct hrtimer_clock_base clock_base[8]; + call_single_data_t csd; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct core_thread { + struct task_struct *task; + struct core_thread *next; +}; + +struct core_state { + atomic_t nr_threads; + struct core_thread dumper; + struct completion startup; +}; + +struct taskstats { + __u16 version; + __u32 ac_exitcode; + __u8 ac_flag; + __u8 ac_nice; + __u64 cpu_count; + __u64 cpu_delay_total; + __u64 blkio_count; + __u64 blkio_delay_total; + __u64 swapin_count; + __u64 swapin_delay_total; + __u64 cpu_run_real_total; + __u64 cpu_run_virtual_total; + char ac_comm[32]; + __u8 ac_sched; + __u8 ac_pad[3]; + long: 0; + __u32 ac_uid; + __u32 ac_gid; + __u32 ac_pid; + __u32 ac_ppid; + __u32 ac_btime; + __u64 ac_etime; + __u64 ac_utime; + __u64 ac_stime; + __u64 ac_minflt; + __u64 ac_majflt; + __u64 coremem; + __u64 virtmem; + __u64 hiwater_rss; + __u64 hiwater_vm; + __u64 read_char; + __u64 write_char; + __u64 read_syscalls; + __u64 write_syscalls; + __u64 read_bytes; + __u64 write_bytes; + __u64 cancelled_write_bytes; + __u64 nvcsw; + __u64 nivcsw; + __u64 ac_utimescaled; + __u64 ac_stimescaled; + __u64 cpu_scaled_run_real_total; + __u64 freepages_count; + __u64 freepages_delay_total; + __u64 thrashing_count; + __u64 thrashing_delay_total; + __u64 ac_btime64; + __u64 compact_count; + __u64 compact_delay_total; + __u32 ac_tgid; + __u64 ac_tgetime; + __u64 ac_exe_dev; + __u64 ac_exe_inode; + __u64 wpcopy_count; + __u64 wpcopy_delay_total; + __u64 irq_count; + __u64 irq_delay_total; + __u64 cpu_delay_max; + __u64 cpu_delay_min; + __u64 blkio_delay_max; + __u64 blkio_delay_min; + __u64 swapin_delay_max; + __u64 swapin_delay_min; + __u64 freepages_delay_max; + __u64 freepages_delay_min; + __u64 thrashing_delay_max; + __u64 thrashing_delay_min; + __u64 compact_delay_max; + __u64 compact_delay_min; + __u64 wpcopy_delay_max; + __u64 wpcopy_delay_min; + __u64 irq_delay_max; + __u64 irq_delay_min; +}; + +struct delayed_call { + void (*fn)(void *); + void *arg; +}; + +struct io_cq { + struct request_queue *q; + struct io_context *ioc; + union { + struct list_head q_node; + struct kmem_cache *__rcu_icq_cache; + }; + union { + struct hlist_node ioc_node; + struct callback_head __rcu_head; + }; + unsigned int flags; +}; + +typedef unsigned int blk_features_t; + +typedef unsigned int blk_flags_t; + +enum blk_integrity_checksum { + BLK_INTEGRITY_CSUM_NONE = 0, + BLK_INTEGRITY_CSUM_IP = 1, + BLK_INTEGRITY_CSUM_CRC = 2, + BLK_INTEGRITY_CSUM_CRC64 = 3, +} __attribute__((mode(byte))); + +struct blk_integrity { + unsigned char flags; + enum blk_integrity_checksum csum_type; + unsigned char metadata_size; + unsigned char pi_offset; + unsigned char interval_exp; + unsigned char tag_size; + unsigned char pi_tuple_size; +}; + +struct queue_limits { + blk_features_t features; + blk_flags_t flags; + long unsigned int seg_boundary_mask; + long unsigned int virt_boundary_mask; + unsigned int max_hw_sectors; + unsigned int max_dev_sectors; + unsigned int chunk_sectors; + unsigned int max_sectors; + unsigned int max_user_sectors; + unsigned int max_segment_size; + unsigned int min_segment_size; + unsigned int physical_block_size; + unsigned int logical_block_size; + unsigned int alignment_offset; + unsigned int io_min; + unsigned int io_opt; + unsigned int max_discard_sectors; + unsigned int max_hw_discard_sectors; + unsigned int max_user_discard_sectors; + unsigned int max_secure_erase_sectors; + unsigned int max_write_zeroes_sectors; + unsigned int max_wzeroes_unmap_sectors; + unsigned int max_hw_wzeroes_unmap_sectors; + unsigned int max_user_wzeroes_unmap_sectors; + unsigned int max_hw_zone_append_sectors; + unsigned int max_zone_append_sectors; + unsigned int discard_granularity; + unsigned int discard_alignment; + unsigned int zone_write_granularity; + unsigned int atomic_write_hw_max; + unsigned int atomic_write_max_sectors; + unsigned int atomic_write_hw_boundary; + unsigned int atomic_write_boundary_sectors; + unsigned int atomic_write_hw_unit_min; + unsigned int atomic_write_unit_min; + unsigned int atomic_write_hw_unit_max; + unsigned int atomic_write_unit_max; + short unsigned int max_segments; + short unsigned int max_integrity_segments; + short unsigned int max_discard_segments; + short unsigned int max_write_streams; + unsigned int write_stream_granularity; + unsigned int max_open_zones; + unsigned int max_active_zones; + unsigned int dma_alignment; + unsigned int dma_pad_mask; + struct blk_integrity integrity; +}; + +struct elevator_queue; + +struct blk_mq_ops; + +struct blk_mq_ctx; + +struct blk_queue_stats; + +struct rq_qos; + +struct blk_crypto_profile; + +struct blk_mq_tags; + +struct blkcg_gq; + +struct blk_trace; + +struct blk_flush_queue; + +struct throtl_data; + +struct blk_mq_tag_set; + +struct request_queue { + void *queuedata; + struct elevator_queue *elevator; + const struct blk_mq_ops *mq_ops; + struct blk_mq_ctx *queue_ctx; + long unsigned int queue_flags; + unsigned int rq_timeout; + unsigned int queue_depth; + refcount_t refs; + unsigned int nr_hw_queues; + struct xarray hctx_table; + struct percpu_ref q_usage_counter; + struct lock_class_key io_lock_cls_key; + struct lockdep_map io_lockdep_map; + struct lock_class_key q_lock_cls_key; + struct lockdep_map q_lockdep_map; + struct request *last_merge; + spinlock_t queue_lock; + int quiesce_depth; + struct gendisk *disk; + struct kobject *mq_kobj; + struct queue_limits limits; + struct device *dev; + enum rpm_status rpm_status; + atomic_t pm_only; + struct blk_queue_stats *stats; + struct rq_qos *rq_qos; + struct mutex rq_qos_mutex; + int id; + long unsigned int nr_requests; + struct blk_crypto_profile *crypto_profile; + struct kobject *crypto_kobject; + struct timer_list timeout; + struct work_struct timeout_work; + atomic_t nr_active_requests_shared_tags; + struct blk_mq_tags *sched_shared_tags; + struct list_head icq_list; + long unsigned int blkcg_pols[1]; + struct blkcg_gq *root_blkg; + struct list_head blkg_list; + struct mutex blkcg_mutex; + int node; + spinlock_t requeue_lock; + struct list_head requeue_list; + struct delayed_work requeue_work; + struct blk_trace *blk_trace; + struct blk_flush_queue *fq; + struct list_head flush_list; + struct mutex elevator_lock; + struct mutex sysfs_lock; + struct mutex limits_lock; + struct list_head unused_hctx_list; + spinlock_t unused_hctx_lock; + int mq_freeze_depth; + struct throtl_data *td; + struct callback_head callback_head; + wait_queue_head_t mq_freeze_wq; + struct mutex mq_freeze_lock; + struct blk_mq_tag_set *tag_set; + struct list_head tag_set_list; + struct dentry *debugfs_dir; + struct dentry *sched_debugfs_dir; + struct dentry *rqos_debugfs_dir; + struct mutex debugfs_mutex; +}; + +typedef struct { + uid_t val; +} vfsuid_t; + +typedef struct { + gid_t val; +} vfsgid_t; + +typedef void percpu_ref_func_t(struct percpu_ref *); + +struct percpu_ref_data { + atomic_long_t count; + percpu_ref_func_t *release; + percpu_ref_func_t *confirm_switch; + bool force_atomic: 1; + bool allow_reinit: 1; + struct callback_head rcu; + struct percpu_ref *ref; +}; + +enum kmalloc_cache_type { + KMALLOC_NORMAL = 0, + KMALLOC_RANDOM_START = 0, + KMALLOC_RANDOM_END = 15, + KMALLOC_RECLAIM = 16, + KMALLOC_DMA = 17, + KMALLOC_CGROUP = 18, + NR_KMALLOC_TYPES = 19, +}; + +struct utf8data; + +struct utf8data_table; + +struct unicode_map { + unsigned int version; + const struct utf8data *ntab[2]; + const struct utf8data_table *tables; +}; + +struct utf8data { + unsigned int maxage; + unsigned int offset; +}; + +struct utf8data_table { + const unsigned int *utf8agetab; + int utf8agetab_size; + const struct utf8data *utf8nfdicfdata; + int utf8nfdicfdata_size; + const struct utf8data *utf8nfdidata; + int utf8nfdidata_size; + const unsigned char *utf8data; +}; + +struct iattr { + unsigned int ia_valid; + umode_t ia_mode; + union { + kuid_t ia_uid; + vfsuid_t ia_vfsuid; + }; + union { + kgid_t ia_gid; + vfsgid_t ia_vfsgid; + }; + loff_t ia_size; + struct timespec64 ia_atime; + struct timespec64 ia_mtime; + struct timespec64 ia_ctime; + struct file *ia_file; +}; + +typedef __kernel_uid32_t projid_t; + +typedef struct { + projid_t val; +} kprojid_t; + +enum quota_type { + USRQUOTA = 0, + GRPQUOTA = 1, + PRJQUOTA = 2, +}; + +struct kqid { + union { + kuid_t uid; + kgid_t gid; + kprojid_t projid; + }; + enum quota_type type; +}; + +struct mem_dqblk { + qsize_t dqb_bhardlimit; + qsize_t dqb_bsoftlimit; + qsize_t dqb_curspace; + qsize_t dqb_rsvspace; + qsize_t dqb_ihardlimit; + qsize_t dqb_isoftlimit; + qsize_t dqb_curinodes; + time64_t dqb_btime; + time64_t dqb_itime; +}; + +struct dquot { + struct hlist_node dq_hash; + struct list_head dq_inuse; + struct list_head dq_free; + struct list_head dq_dirty; + struct mutex dq_lock; + spinlock_t dq_dqb_lock; + atomic_t dq_count; + struct super_block *dq_sb; + struct kqid dq_id; + loff_t dq_off; + long unsigned int dq_flags; + struct mem_dqblk dq_dqb; +}; + +struct quota_format_type { + int qf_fmt_id; + const struct quota_format_ops *qf_ops; + struct module *qf_owner; + struct quota_format_type *qf_next; +}; + +struct quota_format_ops { + int (*check_quota_file)(struct super_block *, int); + int (*read_file_info)(struct super_block *, int); + int (*write_file_info)(struct super_block *, int); + int (*free_file_info)(struct super_block *, int); + int (*read_dqblk)(struct dquot *); + int (*commit_dqblk)(struct dquot *); + int (*release_dqblk)(struct dquot *); + int (*get_next_id)(struct super_block *, struct kqid *); +}; + +struct dquot_operations { + int (*write_dquot)(struct dquot *); + struct dquot * (*alloc_dquot)(struct super_block *, int); + void (*destroy_dquot)(struct dquot *); + int (*acquire_dquot)(struct dquot *); + int (*release_dquot)(struct dquot *); + int (*mark_dirty)(struct dquot *); + int (*write_info)(struct super_block *, int); + qsize_t * (*get_reserved_space)(struct inode *); + int (*get_projid)(struct inode *, kprojid_t *); + int (*get_inode_usage)(struct inode *, qsize_t *); + int (*get_next_id)(struct super_block *, struct kqid *); +}; + +struct qc_dqblk { + int d_fieldmask; + u64 d_spc_hardlimit; + u64 d_spc_softlimit; + u64 d_ino_hardlimit; + u64 d_ino_softlimit; + u64 d_space; + u64 d_ino_count; + s64 d_ino_timer; + s64 d_spc_timer; + int d_ino_warns; + int d_spc_warns; + u64 d_rt_spc_hardlimit; + u64 d_rt_spc_softlimit; + u64 d_rt_space; + s64 d_rt_spc_timer; + int d_rt_spc_warns; +}; + +struct qc_type_state { + unsigned int flags; + unsigned int spc_timelimit; + unsigned int ino_timelimit; + unsigned int rt_spc_timelimit; + unsigned int spc_warnlimit; + unsigned int ino_warnlimit; + unsigned int rt_spc_warnlimit; + long long unsigned int ino; + blkcnt_t blocks; + blkcnt_t nextents; +}; + +struct qc_state { + unsigned int s_incoredqs; + struct qc_type_state s_state[3]; +}; + +struct qc_info { + int i_fieldmask; + unsigned int i_flags; + unsigned int i_spc_timelimit; + unsigned int i_ino_timelimit; + unsigned int i_rt_spc_timelimit; + unsigned int i_spc_warnlimit; + unsigned int i_ino_warnlimit; + unsigned int i_rt_spc_warnlimit; +}; + +struct quotactl_ops { + int (*quota_on)(struct super_block *, int, int, const struct path *); + int (*quota_off)(struct super_block *, int); + int (*quota_enable)(struct super_block *, unsigned int); + int (*quota_disable)(struct super_block *, unsigned int); + int (*quota_sync)(struct super_block *, int); + int (*set_info)(struct super_block *, int, struct qc_info *); + int (*get_dqblk)(struct super_block *, struct kqid, struct qc_dqblk *); + int (*get_nextdqblk)(struct super_block *, struct kqid *, struct qc_dqblk *); + int (*set_dqblk)(struct super_block *, struct kqid, struct qc_dqblk *); + int (*get_state)(struct super_block *, struct qc_state *); + int (*rm_xquota)(struct super_block *, unsigned int); +}; + +struct writeback_control; + +struct readahead_control; + +struct swap_info_struct; + +struct address_space_operations { + int (*read_folio)(struct file *, struct folio *); + int (*writepages)(struct address_space *, struct writeback_control *); + bool (*dirty_folio)(struct address_space *, struct folio *); + void (*readahead)(struct readahead_control *); + int (*write_begin)(const struct kiocb *, struct address_space *, loff_t, unsigned int, struct folio **, void **); + int (*write_end)(const struct kiocb *, struct address_space *, loff_t, unsigned int, unsigned int, struct folio *, void *); + sector_t (*bmap)(struct address_space *, sector_t); + void (*invalidate_folio)(struct folio *, size_t, size_t); + bool (*release_folio)(struct folio *, gfp_t); + void (*free_folio)(struct folio *); + ssize_t (*direct_IO)(struct kiocb *, struct iov_iter *); + int (*migrate_folio)(struct address_space *, struct folio *, struct folio *, enum migrate_mode); + int (*launder_folio)(struct folio *); + bool (*is_partially_uptodate)(struct folio *, size_t, size_t); + void (*is_dirty_writeback)(struct folio *, bool *, bool *); + int (*error_remove_folio)(struct address_space *, struct folio *); + int (*swap_activate)(struct swap_info_struct *, struct file *, sector_t *); + void (*swap_deactivate)(struct file *); + int (*swap_rw)(struct kiocb *, struct iov_iter *); +}; + +enum writeback_sync_modes { + WB_SYNC_NONE = 0, + WB_SYNC_ALL = 1, +}; + +struct writeback_control { + long int nr_to_write; + long int pages_skipped; + loff_t range_start; + loff_t range_end; + enum writeback_sync_modes sync_mode; + unsigned int for_kupdate: 1; + unsigned int for_background: 1; + unsigned int tagged_writepages: 1; + unsigned int range_cyclic: 1; + unsigned int for_sync: 1; + unsigned int unpinned_netfs_wb: 1; + unsigned int no_cgroup_owner: 1; + struct folio_batch fbatch; + long unsigned int index; + int saved_err; + struct bdi_writeback *wb; + struct inode *inode; + int wb_id; + int wb_lcand_id; + int wb_tcand_id; + size_t wb_bytes; + size_t wb_lcand_bytes; + size_t wb_tcand_bytes; +}; + +struct fiemap_extent_info; + +struct file_kattr; + +struct offset_ctx; + +struct inode_operations { + struct dentry * (*lookup)(struct inode *, struct dentry *, unsigned int); + const char * (*get_link)(struct dentry *, struct inode *, struct delayed_call *); + int (*permission)(struct mnt_idmap *, struct inode *, int); + struct posix_acl * (*get_inode_acl)(struct inode *, int, bool); + int (*readlink)(struct dentry *, char *, int); + int (*create)(struct mnt_idmap *, struct inode *, struct dentry *, umode_t, bool); + int (*link)(struct dentry *, struct inode *, struct dentry *); + int (*unlink)(struct inode *, struct dentry *); + int (*symlink)(struct mnt_idmap *, struct inode *, struct dentry *, const char *); + struct dentry * (*mkdir)(struct mnt_idmap *, struct inode *, struct dentry *, umode_t); + int (*rmdir)(struct inode *, struct dentry *); + int (*mknod)(struct mnt_idmap *, struct inode *, struct dentry *, umode_t, dev_t); + int (*rename)(struct mnt_idmap *, struct inode *, struct dentry *, struct inode *, struct dentry *, unsigned int); + int (*setattr)(struct mnt_idmap *, struct dentry *, struct iattr *); + int (*getattr)(struct mnt_idmap *, const struct path *, struct kstat *, u32, unsigned int); + ssize_t (*listxattr)(struct dentry *, char *, size_t); + int (*fiemap)(struct inode *, struct fiemap_extent_info *, u64, u64); + int (*update_time)(struct inode *, int); + int (*atomic_open)(struct inode *, struct dentry *, struct file *, unsigned int, umode_t); + int (*tmpfile)(struct mnt_idmap *, struct inode *, struct file *, umode_t); + struct posix_acl * (*get_acl)(struct mnt_idmap *, struct dentry *, int); + int (*set_acl)(struct mnt_idmap *, struct dentry *, struct posix_acl *, int); + int (*fileattr_set)(struct mnt_idmap *, struct dentry *, struct file_kattr *); + int (*fileattr_get)(struct dentry *, struct file_kattr *); + struct offset_ctx * (*get_offset_ctx)(struct inode *); + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct fprop_local_percpu { + struct percpu_counter events; + unsigned int period; + raw_spinlock_t lock; +}; + +enum wb_reason { + WB_REASON_BACKGROUND = 0, + WB_REASON_VMSCAN = 1, + WB_REASON_SYNC = 2, + WB_REASON_PERIODIC = 3, + WB_REASON_LAPTOP_TIMER = 4, + WB_REASON_FS_FREE_SPACE = 5, + WB_REASON_FORKER_THREAD = 6, + WB_REASON_FOREIGN_FLUSH = 7, + WB_REASON_MAX = 8, +}; + +struct bdi_writeback { + struct backing_dev_info *bdi; + long unsigned int state; + long unsigned int last_old_flush; + struct list_head b_dirty; + struct list_head b_io; + struct list_head b_more_io; + struct list_head b_dirty_time; + spinlock_t list_lock; + atomic_t writeback_inodes; + struct percpu_counter stat[4]; + long unsigned int bw_time_stamp; + long unsigned int dirtied_stamp; + long unsigned int written_stamp; + long unsigned int write_bandwidth; + long unsigned int avg_write_bandwidth; + long unsigned int dirty_ratelimit; + long unsigned int balanced_dirty_ratelimit; + struct fprop_local_percpu completions; + int dirty_exceeded; + enum wb_reason start_all_reason; + spinlock_t work_lock; + struct list_head work_list; + struct delayed_work dwork; + struct delayed_work bw_dwork; + struct list_head bdi_node; + struct percpu_ref refcnt; + struct fprop_local_percpu memcg_completions; + struct cgroup_subsys_state *memcg_css; + struct cgroup_subsys_state *blkcg_css; + struct list_head memcg_node; + struct list_head blkcg_node; + struct list_head b_attached; + struct list_head offline_node; + union { + struct work_struct release_work; + struct callback_head rcu; + }; +}; + +struct fown_struct { + struct file *file; + rwlock_t lock; + struct pid *pid; + enum pid_type pid_type; + kuid_t uid; + kuid_t euid; + int signum; +}; + +struct fasync_struct { + rwlock_t fa_lock; + int magic; + int fa_fd; + struct fasync_struct *fa_next; + struct file *fa_file; + struct callback_head fa_rcu; +}; + +enum freeze_holder { + FREEZE_HOLDER_KERNEL = 1, + FREEZE_HOLDER_USERSPACE = 2, + FREEZE_MAY_NEST = 4, + FREEZE_EXCL = 8, +}; + +struct kstatfs; + +struct super_operations { + struct inode * (*alloc_inode)(struct super_block *); + void (*destroy_inode)(struct inode *); + void (*free_inode)(struct inode *); + void (*dirty_inode)(struct inode *, int); + int (*write_inode)(struct inode *, struct writeback_control *); + int (*drop_inode)(struct inode *); + void (*evict_inode)(struct inode *); + void (*put_super)(struct super_block *); + int (*sync_fs)(struct super_block *, int); + int (*freeze_super)(struct super_block *, enum freeze_holder, const void *); + int (*freeze_fs)(struct super_block *); + int (*thaw_super)(struct super_block *, enum freeze_holder, const void *); + int (*unfreeze_fs)(struct super_block *); + int (*statfs)(struct dentry *, struct kstatfs *); + int (*remount_fs)(struct super_block *, int *, char *); + void (*umount_begin)(struct super_block *); + int (*show_options)(struct seq_file *, struct dentry *); + int (*show_devname)(struct seq_file *, struct dentry *); + int (*show_path)(struct seq_file *, struct dentry *); + int (*show_stats)(struct seq_file *, struct dentry *); + ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t); + ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t); + struct dquot ** (*get_dquots)(struct inode *); + long int (*nr_cached_objects)(struct super_block *, struct shrink_control *); + long int (*free_cached_objects)(struct super_block *, struct shrink_control *); + int (*remove_bdev)(struct super_block *, struct block_device *); + void (*shutdown)(struct super_block *); +}; + +struct fid; + +struct iomap; + +struct handle_to_path_ctx; + +struct export_operations { + int (*encode_fh)(struct inode *, __u32 *, int *, struct inode *); + struct dentry * (*fh_to_dentry)(struct super_block *, struct fid *, int, int); + struct dentry * (*fh_to_parent)(struct super_block *, struct fid *, int, int); + int (*get_name)(struct dentry *, char *, struct dentry *); + struct dentry * (*get_parent)(struct dentry *); + int (*commit_metadata)(struct inode *); + int (*get_uuid)(struct super_block *, u8 *, u32 *, u64 *); + int (*map_blocks)(struct inode *, loff_t, u64, struct iomap *, bool, u32 *); + int (*commit_blocks)(struct inode *, struct iomap *, int, struct iattr *); + int (*permission)(struct handle_to_path_ctx *, unsigned int); + struct file * (*open)(struct path *, unsigned int); + long unsigned int flags; +}; + +struct xattr_handler { + const char *name; + const char *prefix; + int flags; + bool (*list)(struct dentry *); + int (*get)(const struct xattr_handler *, struct dentry *, struct inode *, const char *, void *, size_t); + int (*set)(const struct xattr_handler *, struct mnt_idmap *, struct dentry *, struct inode *, const char *, const void *, size_t, int); +}; + +union fscrypt_policy; + +struct fscrypt_operations { + unsigned int needs_bounce_pages: 1; + unsigned int has_32bit_inodes: 1; + unsigned int supports_subblock_data_units: 1; + const char *legacy_key_prefix; + int (*get_context)(struct inode *, void *, size_t); + int (*set_context)(struct inode *, const void *, size_t, void *); + const union fscrypt_policy * (*get_dummy_policy)(struct super_block *); + bool (*empty_dir)(struct inode *); + bool (*has_stable_inodes)(struct super_block *); + struct block_device ** (*get_devices)(struct super_block *, unsigned int *); +}; + +struct fsverity_operations { + int (*begin_enable_verity)(struct file *); + int (*end_enable_verity)(struct file *, const void *, size_t, u64); + int (*get_verity_descriptor)(struct inode *, void *, size_t); + struct page * (*read_merkle_tree_page)(struct inode *, long unsigned int, long unsigned int); + int (*write_merkle_tree_block)(struct inode *, const void *, u64, unsigned int); +}; + +struct disk_stats; + +struct blk_holder_ops; + +struct partition_meta_info; + +struct block_device { + sector_t bd_start_sect; + sector_t bd_nr_sectors; + struct gendisk *bd_disk; + struct request_queue *bd_queue; + struct disk_stats *bd_stats; + long unsigned int bd_stamp; + atomic_t __bd_flags; + dev_t bd_dev; + struct address_space *bd_mapping; + atomic_t bd_openers; + spinlock_t bd_size_lock; + void *bd_claiming; + void *bd_holder; + const struct blk_holder_ops *bd_holder_ops; + struct mutex bd_holder_lock; + int bd_holders; + struct kobject *bd_holder_dir; + atomic_t bd_fsfreeze_count; + struct mutex bd_fsfreeze_mutex; + struct partition_meta_info *bd_meta_info; + int bd_writers; + void *bd_security; + struct device bd_device; +}; + +struct backing_dev_info { + u64 id; + struct rb_node rb_node; + struct list_head bdi_list; + long unsigned int ra_pages; + long unsigned int io_pages; + struct kref refcnt; + unsigned int capabilities; + unsigned int min_ratio; + unsigned int max_ratio; + unsigned int max_prop_frac; + atomic_long_t tot_write_bandwidth; + long unsigned int last_bdp_sleep; + struct bdi_writeback wb; + struct list_head wb_list; + struct xarray cgwb_tree; + struct mutex cgwb_release_mutex; + struct rw_semaphore wb_switch_rwsem; + wait_queue_head_t wb_waitq; + struct device *dev; + char dev_name[64]; + struct device *owner; + struct timer_list laptop_mode_wb_timer; + struct dentry *debug_dir; +}; + +typedef bool (*filldir_t)(struct dir_context *, const char *, int, loff_t, u64, unsigned int); + +struct dir_context { + filldir_t actor; + loff_t pos; + int count; + unsigned int dt_flags_mask; +}; + +struct io_comp_batch { + struct rq_list req_list; + bool need_ts; + void (*complete)(struct io_comp_batch *); +}; + +struct offset_ctx { + struct maple_tree mt; + long unsigned int next_offset; +}; + +struct p_log; + +struct fs_parameter; + +struct fs_parse_result; + +typedef int fs_param_type(struct p_log *, const struct fs_parameter_spec *, struct fs_parameter *, struct fs_parse_result *); + +struct fs_parameter_spec { + const char *name; + fs_param_type *type; + u8 opt; + short unsigned int flags; + const void *data; +}; + +typedef __u32 blk_opf_t; + +typedef u8 blk_status_t; + +struct bvec_iter { + sector_t bi_sector; + unsigned int bi_size; + unsigned int bi_idx; + unsigned int bi_bvec_done; +} __attribute__((packed)); + +typedef unsigned int blk_qc_t; + +typedef void bio_end_io_t(struct bio *); + +struct bio_crypt_ctx; + +struct bio_integrity_payload; + +struct bio { + struct bio *bi_next; + struct block_device *bi_bdev; + blk_opf_t bi_opf; + short unsigned int bi_flags; + short unsigned int bi_ioprio; + enum rw_hint bi_write_hint; + u8 bi_write_stream; + blk_status_t bi_status; + atomic_t __bi_remaining; + struct bvec_iter bi_iter; + union { + blk_qc_t bi_cookie; + unsigned int __bi_nr_segments; + }; + bio_end_io_t *bi_end_io; + void *bi_private; + struct blkcg_gq *bi_blkg; + u64 issue_time_ns; + u64 bi_iocost_cost; + struct bio_crypt_ctx *bi_crypt_context; + struct bio_integrity_payload *bi_integrity; + short unsigned int bi_vcnt; + short unsigned int bi_max_vecs; + atomic_t __bi_cnt; + struct bio_vec *bi_io_vec; + struct bio_set *bi_pool; + struct bio_vec bi_inline_vecs[0]; +}; + +typedef __u64 Elf64_Addr; + +typedef __u16 Elf64_Half; + +typedef __u64 Elf64_Off; + +typedef __u32 Elf64_Word; + +typedef __u64 Elf64_Xword; + +struct elf64_sym { + Elf64_Word st_name; + unsigned char st_info; + unsigned char st_other; + Elf64_Half st_shndx; + Elf64_Addr st_value; + Elf64_Xword st_size; +}; + +struct elf64_hdr { + unsigned char e_ident[16]; + Elf64_Half e_type; + Elf64_Half e_machine; + Elf64_Word e_version; + Elf64_Addr e_entry; + Elf64_Off e_phoff; + Elf64_Off e_shoff; + Elf64_Word e_flags; + Elf64_Half e_ehsize; + Elf64_Half e_phentsize; + Elf64_Half e_phnum; + Elf64_Half e_shentsize; + Elf64_Half e_shnum; + Elf64_Half e_shstrndx; +}; + +typedef struct elf64_hdr Elf64_Ehdr; + +struct elf64_shdr { + Elf64_Word sh_name; + Elf64_Word sh_type; + Elf64_Xword sh_flags; + Elf64_Addr sh_addr; + Elf64_Off sh_offset; + Elf64_Xword sh_size; + Elf64_Word sh_link; + Elf64_Word sh_info; + Elf64_Xword sh_addralign; + Elf64_Xword sh_entsize; +}; + +typedef struct elf64_shdr Elf64_Shdr; + +struct kparam_string; + +struct kparam_array; + +struct kernel_param { + const char *name; + struct module *mod; + const struct kernel_param_ops *ops; + const u16 perm; + s8 level; + u8 flags; + union { + void *arg; + const struct kparam_string *str; + const struct kparam_array *arr; + }; +}; + +struct kparam_string { + unsigned int maxlen; + char *string; +}; + +struct kparam_array { + unsigned int max; + unsigned int elemsize; + unsigned int *num; + const struct kernel_param_ops *ops; + void *elem; +}; + +struct error_injection_entry { + long unsigned int addr; + int etype; +}; + +struct module_attribute { + struct attribute attr; + ssize_t (*show)(const struct module_attribute *, struct module_kobject *, char *); + ssize_t (*store)(const struct module_attribute *, struct module_kobject *, const char *, size_t); + void (*setup)(struct module *, const char *); + int (*test)(struct module *); + void (*free)(struct module *); +}; + +struct klp_modinfo { + Elf64_Ehdr hdr; + Elf64_Shdr *sechdrs; + char *secstrings; + unsigned int symndx; +}; + +struct kernel_symbol { + int value_offset; + int name_offset; + int namespace_offset; +}; + +struct trace_event_functions; + +struct trace_event { + struct hlist_node node; + int type; + struct trace_event_functions *funcs; +}; + +struct trace_event_class; + +struct trace_event_call { + struct list_head list; + struct trace_event_class *class; + union { + const char *name; + struct tracepoint *tp; + }; + struct trace_event event; + char *print_fmt; + union { + void *module; + atomic_t refcnt; + }; + void *data; + int flags; + int perf_refcount; + struct hlist_head *perf_events; + struct bpf_prog_array *prog_array; + int (*perf_perm)(struct trace_event_call *, struct perf_event *); +}; + +struct trace_eval_map { + const char *system; + const char *eval_string; + long unsigned int eval_value; +}; + +struct of_device_id { + char name[32]; + char type[32]; + char compatible[128]; + const void *data; +}; + +typedef long unsigned int kernel_ulong_t; + +struct acpi_device_id { + __u8 id[16]; + kernel_ulong_t driver_data; + __u32 cls; + __u32 cls_msk; +}; + +struct device_dma_parameters { + unsigned int max_segment_size; + unsigned int min_align_mask; + long unsigned int segment_boundary_mask; +}; + +enum device_physical_location_panel { + DEVICE_PANEL_TOP = 0, + DEVICE_PANEL_BOTTOM = 1, + DEVICE_PANEL_LEFT = 2, + DEVICE_PANEL_RIGHT = 3, + DEVICE_PANEL_FRONT = 4, + DEVICE_PANEL_BACK = 5, + DEVICE_PANEL_UNKNOWN = 6, +}; + +enum device_physical_location_vertical_position { + DEVICE_VERT_POS_UPPER = 0, + DEVICE_VERT_POS_CENTER = 1, + DEVICE_VERT_POS_LOWER = 2, +}; + +enum device_physical_location_horizontal_position { + DEVICE_HORI_POS_LEFT = 0, + DEVICE_HORI_POS_CENTER = 1, + DEVICE_HORI_POS_RIGHT = 2, +}; + +struct device_physical_location { + enum device_physical_location_panel panel; + enum device_physical_location_vertical_position vertical_position; + enum device_physical_location_horizontal_position horizontal_position; + bool dock; + bool lid; +}; + +typedef u64 dma_addr_t; + +enum dma_data_direction { + DMA_BIDIRECTIONAL = 0, + DMA_TO_DEVICE = 1, + DMA_FROM_DEVICE = 2, + DMA_NONE = 3, +}; + +struct sg_table; + +struct scatterlist; + +struct dma_map_ops { + void * (*alloc)(struct device *, size_t, dma_addr_t *, gfp_t, long unsigned int); + void (*free)(struct device *, size_t, void *, dma_addr_t, long unsigned int); + struct page * (*alloc_pages_op)(struct device *, size_t, dma_addr_t *, enum dma_data_direction, gfp_t); + void (*free_pages)(struct device *, size_t, struct page *, dma_addr_t, enum dma_data_direction); + int (*mmap)(struct device *, struct vm_area_struct *, void *, dma_addr_t, size_t, long unsigned int); + int (*get_sgtable)(struct device *, struct sg_table *, void *, dma_addr_t, size_t, long unsigned int); + dma_addr_t (*map_page)(struct device *, struct page *, long unsigned int, size_t, enum dma_data_direction, long unsigned int); + void (*unmap_page)(struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); + int (*map_sg)(struct device *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); + void (*unmap_sg)(struct device *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); + dma_addr_t (*map_resource)(struct device *, phys_addr_t, size_t, enum dma_data_direction, long unsigned int); + void (*unmap_resource)(struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); + void (*sync_single_for_cpu)(struct device *, dma_addr_t, size_t, enum dma_data_direction); + void (*sync_single_for_device)(struct device *, dma_addr_t, size_t, enum dma_data_direction); + void (*sync_sg_for_cpu)(struct device *, struct scatterlist *, int, enum dma_data_direction); + void (*sync_sg_for_device)(struct device *, struct scatterlist *, int, enum dma_data_direction); + void (*cache_sync)(struct device *, void *, size_t, enum dma_data_direction); + int (*dma_supported)(struct device *, u64); + u64 (*get_required_mask)(struct device *); + size_t (*max_mapping_size)(struct device *); + size_t (*opt_mapping_size)(void); + long unsigned int (*get_merge_boundary)(struct device *); +}; + +struct bus_dma_region { + phys_addr_t cpu_start; + dma_addr_t dma_start; + u64 size; +}; + +struct fwnode_operations; + +struct fwnode_handle { + struct fwnode_handle *secondary; + const struct fwnode_operations *ops; + struct device *dev; + struct list_head suppliers; + struct list_head consumers; + u8 flags; +}; + +typedef u64 async_cookie_t; + +typedef void (*async_func_t)(void *, async_cookie_t); + +struct async_domain { + struct list_head pending; + unsigned int registered: 1; +}; + +struct dev_pagemap_ops { + void (*page_free)(struct page *); + vm_fault_t (*migrate_to_ram)(struct vm_fault *); + int (*memory_failure)(struct dev_pagemap *, long unsigned int, long unsigned int, int); +}; + +struct seq_buf { + char *buffer; + size_t size; + size_t len; +}; + +struct trace_seq { + char buffer[8156]; + struct seq_buf seq; + size_t readpos; + int full; +}; + +enum perf_sw_ids { + PERF_COUNT_SW_CPU_CLOCK = 0, + PERF_COUNT_SW_TASK_CLOCK = 1, + PERF_COUNT_SW_PAGE_FAULTS = 2, + PERF_COUNT_SW_CONTEXT_SWITCHES = 3, + PERF_COUNT_SW_CPU_MIGRATIONS = 4, + PERF_COUNT_SW_PAGE_FAULTS_MIN = 5, + PERF_COUNT_SW_PAGE_FAULTS_MAJ = 6, + PERF_COUNT_SW_ALIGNMENT_FAULTS = 7, + PERF_COUNT_SW_EMULATION_FAULTS = 8, + PERF_COUNT_SW_DUMMY = 9, + PERF_COUNT_SW_BPF_OUTPUT = 10, + PERF_COUNT_SW_CGROUP_SWITCHES = 11, + PERF_COUNT_SW_MAX = 12, +}; + +union perf_mem_data_src { + __u64 val; + struct { + __u64 mem_op: 5; + __u64 mem_lvl: 14; + __u64 mem_snoop: 5; + __u64 mem_lock: 2; + __u64 mem_dtlb: 7; + __u64 mem_lvl_num: 4; + __u64 mem_remote: 1; + __u64 mem_snoopx: 2; + __u64 mem_blk: 3; + __u64 mem_hops: 3; + __u64 mem_rsvd: 18; + }; +}; + +struct perf_branch_entry { + __u64 from; + __u64 to; + __u64 mispred: 1; + __u64 predicted: 1; + __u64 in_tx: 1; + __u64 abort: 1; + __u64 cycles: 16; + __u64 type: 4; + __u64 spec: 2; + __u64 new_type: 4; + __u64 priv: 3; + __u64 reserved: 31; +}; + +union perf_sample_weight { + __u64 full; + struct { + __u32 var1_dw; + __u16 var2_w; + __u16 var3_w; + }; +}; + +struct cgroup_namespace { + struct ns_common ns; + struct user_namespace *user_ns; + struct ucounts *ucounts; + struct css_set *root_cset; +}; + +struct perf_cpu_pmu_context; + +struct perf_output_handle; + +struct pmu { + struct list_head entry; + spinlock_t events_lock; + struct list_head events; + struct module *module; + struct device *dev; + struct device *parent; + const struct attribute_group **attr_groups; + const struct attribute_group **attr_update; + const char *name; + int type; + int capabilities; + unsigned int scope; + struct perf_cpu_pmu_context **cpu_pmu_context; + atomic_t exclusive_cnt; + int task_ctx_nr; + int hrtimer_interval_ms; + unsigned int nr_addr_filters; + void (*pmu_enable)(struct pmu *); + void (*pmu_disable)(struct pmu *); + int (*event_init)(struct perf_event *); + void (*event_mapped)(struct perf_event *, struct mm_struct *); + void (*event_unmapped)(struct perf_event *, struct mm_struct *); + int (*add)(struct perf_event *, int); + void (*del)(struct perf_event *, int); + void (*start)(struct perf_event *, int); + void (*stop)(struct perf_event *, int); + void (*read)(struct perf_event *); + void (*start_txn)(struct pmu *, unsigned int); + int (*commit_txn)(struct pmu *); + void (*cancel_txn)(struct pmu *); + int (*event_idx)(struct perf_event *); + void (*sched_task)(struct perf_event_pmu_context *, struct task_struct *, bool); + struct kmem_cache *task_ctx_cache; + void * (*setup_aux)(struct perf_event *, void **, int, bool); + void (*free_aux)(void *); + long int (*snapshot_aux)(struct perf_event *, struct perf_output_handle *, long unsigned int); + int (*addr_filters_validate)(struct list_head *); + void (*addr_filters_sync)(struct perf_event *); + int (*aux_output_match)(struct perf_event *); + bool (*filter)(struct pmu *, int); + int (*check_period)(struct perf_event *, u64); +}; + +struct ftrace_regs {}; + +struct perf_regs { + __u64 abi; + struct pt_regs *regs; +}; + +struct u64_stats_sync {}; + +struct bpf_cgroup_storage; + +struct bpf_prog_array_item { + struct bpf_prog *prog; + union { + struct bpf_cgroup_storage *cgroup_storage[2]; + u64 bpf_cookie; + }; +}; + +struct bpf_prog_array { + struct callback_head rcu; + struct bpf_prog_array_item items[0]; +}; + +struct psi_group_cpu { + unsigned int tasks[4]; + u32 state_mask; + u32 times[7]; + u64 state_start; + long: 64; + u32 times_prev[14]; + long: 64; +}; + +struct psi_group { + struct psi_group *parent; + bool enabled; + struct mutex avgs_lock; + struct psi_group_cpu *pcpu; + u64 avg_total[6]; + u64 avg_last_update; + u64 avg_next_update; + struct delayed_work avgs_work; + struct list_head avg_triggers; + u32 avg_nr_triggers[6]; + u64 total[12]; + long unsigned int avg[18]; + struct task_struct *rtpoll_task; + struct timer_list rtpoll_timer; + wait_queue_head_t rtpoll_wait; + atomic_t rtpoll_wakeup; + atomic_t rtpoll_scheduled; + struct mutex rtpoll_trigger_lock; + struct list_head rtpoll_triggers; + u32 rtpoll_nr_triggers[6]; + u32 rtpoll_states; + u64 rtpoll_min_period; + u64 rtpoll_total[6]; + u64 rtpoll_next_update; + u64 rtpoll_until; +}; + +struct cgroup_taskset; + +struct cftype; + +struct cgroup_subsys { + struct cgroup_subsys_state * (*css_alloc)(struct cgroup_subsys_state *); + int (*css_online)(struct cgroup_subsys_state *); + void (*css_offline)(struct cgroup_subsys_state *); + void (*css_released)(struct cgroup_subsys_state *); + void (*css_free)(struct cgroup_subsys_state *); + void (*css_reset)(struct cgroup_subsys_state *); + void (*css_killed)(struct cgroup_subsys_state *); + void (*css_rstat_flush)(struct cgroup_subsys_state *, int); + int (*css_extra_stat_show)(struct seq_file *, struct cgroup_subsys_state *); + int (*css_local_stat_show)(struct seq_file *, struct cgroup_subsys_state *); + int (*can_attach)(struct cgroup_taskset *); + void (*cancel_attach)(struct cgroup_taskset *); + void (*attach)(struct cgroup_taskset *); + void (*post_attach)(void); + int (*can_fork)(struct task_struct *, struct css_set *); + void (*cancel_fork)(struct task_struct *, struct css_set *); + void (*fork)(struct task_struct *); + void (*exit)(struct task_struct *); + void (*release)(struct task_struct *); + void (*bind)(struct cgroup_subsys_state *); + bool early_init: 1; + bool implicit_on_dfl: 1; + bool threaded: 1; + int id; + const char *name; + const char *legacy_name; + struct cgroup_root *root; + struct idr css_idr; + struct list_head cfts; + struct cftype *dfl_cftypes; + struct cftype *legacy_cftypes; + unsigned int depends_on; + spinlock_t rstat_ss_lock; + struct llist_head *lhead; +}; + +struct css_rstat_cpu { + struct cgroup_subsys_state *updated_children; + struct cgroup_subsys_state *updated_next; + struct llist_node lnode; + struct cgroup_subsys_state *owner; +}; + +struct cgroup_rstat_base_cpu { + struct u64_stats_sync bsync; + struct cgroup_base_stat bstat; + struct cgroup_base_stat last_bstat; + struct cgroup_base_stat subtree_bstat; + struct cgroup_base_stat last_subtree_bstat; +}; + +struct cgroup_root { + struct kernfs_root *kf_root; + unsigned int subsys_mask; + int hierarchy_id; + struct list_head root_list; + struct callback_head rcu; + long: 64; + long: 64; + struct cgroup cgrp; + struct cgroup *cgrp_ancestor_storage; + atomic_t nr_cgrps; + unsigned int flags; + char release_agent_path[4096]; + char name[64]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct cftype { + char name[64]; + long unsigned int private; + size_t max_write_len; + unsigned int flags; + unsigned int file_offset; + struct cgroup_subsys *ss; + struct list_head node; + struct kernfs_ops *kf_ops; + int (*open)(struct kernfs_open_file *); + void (*release)(struct kernfs_open_file *); + u64 (*read_u64)(struct cgroup_subsys_state *, struct cftype *); + s64 (*read_s64)(struct cgroup_subsys_state *, struct cftype *); + int (*seq_show)(struct seq_file *, void *); + void * (*seq_start)(struct seq_file *, loff_t *); + void * (*seq_next)(struct seq_file *, void *, loff_t *); + void (*seq_stop)(struct seq_file *, void *); + int (*write_u64)(struct cgroup_subsys_state *, struct cftype *, u64); + int (*write_s64)(struct cgroup_subsys_state *, struct cftype *, s64); + ssize_t (*write)(struct kernfs_open_file *, char *, size_t, loff_t); + __poll_t (*poll)(struct kernfs_open_file *, struct poll_table_struct *); + struct lock_class_key lockdep_key; +}; + +struct bpf_insn { + __u8 code; + __u8 dst_reg: 4; + __u8 src_reg: 4; + __s16 off; + __s32 imm; +}; + +enum bpf_cgroup_iter_order { + BPF_CGROUP_ITER_ORDER_UNSPEC = 0, + BPF_CGROUP_ITER_SELF_ONLY = 1, + BPF_CGROUP_ITER_DESCENDANTS_PRE = 2, + BPF_CGROUP_ITER_DESCENDANTS_POST = 3, + BPF_CGROUP_ITER_ANCESTORS_UP = 4, +}; + +enum bpf_map_type { + BPF_MAP_TYPE_UNSPEC = 0, + BPF_MAP_TYPE_HASH = 1, + BPF_MAP_TYPE_ARRAY = 2, + BPF_MAP_TYPE_PROG_ARRAY = 3, + BPF_MAP_TYPE_PERF_EVENT_ARRAY = 4, + BPF_MAP_TYPE_PERCPU_HASH = 5, + BPF_MAP_TYPE_PERCPU_ARRAY = 6, + BPF_MAP_TYPE_STACK_TRACE = 7, + BPF_MAP_TYPE_CGROUP_ARRAY = 8, + BPF_MAP_TYPE_LRU_HASH = 9, + BPF_MAP_TYPE_LRU_PERCPU_HASH = 10, + BPF_MAP_TYPE_LPM_TRIE = 11, + BPF_MAP_TYPE_ARRAY_OF_MAPS = 12, + BPF_MAP_TYPE_HASH_OF_MAPS = 13, + BPF_MAP_TYPE_DEVMAP = 14, + BPF_MAP_TYPE_SOCKMAP = 15, + BPF_MAP_TYPE_CPUMAP = 16, + BPF_MAP_TYPE_XSKMAP = 17, + BPF_MAP_TYPE_SOCKHASH = 18, + BPF_MAP_TYPE_CGROUP_STORAGE_DEPRECATED = 19, + BPF_MAP_TYPE_CGROUP_STORAGE = 19, + BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 20, + BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE_DEPRECATED = 21, + BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 21, + BPF_MAP_TYPE_QUEUE = 22, + BPF_MAP_TYPE_STACK = 23, + BPF_MAP_TYPE_SK_STORAGE = 24, + BPF_MAP_TYPE_DEVMAP_HASH = 25, + BPF_MAP_TYPE_STRUCT_OPS = 26, + BPF_MAP_TYPE_RINGBUF = 27, + BPF_MAP_TYPE_INODE_STORAGE = 28, + BPF_MAP_TYPE_TASK_STORAGE = 29, + BPF_MAP_TYPE_BLOOM_FILTER = 30, + BPF_MAP_TYPE_USER_RINGBUF = 31, + BPF_MAP_TYPE_CGRP_STORAGE = 32, + BPF_MAP_TYPE_ARENA = 33, + __MAX_BPF_MAP_TYPE = 34, +}; + +enum bpf_prog_type { + BPF_PROG_TYPE_UNSPEC = 0, + BPF_PROG_TYPE_SOCKET_FILTER = 1, + BPF_PROG_TYPE_KPROBE = 2, + BPF_PROG_TYPE_SCHED_CLS = 3, + BPF_PROG_TYPE_SCHED_ACT = 4, + BPF_PROG_TYPE_TRACEPOINT = 5, + BPF_PROG_TYPE_XDP = 6, + BPF_PROG_TYPE_PERF_EVENT = 7, + BPF_PROG_TYPE_CGROUP_SKB = 8, + BPF_PROG_TYPE_CGROUP_SOCK = 9, + BPF_PROG_TYPE_LWT_IN = 10, + BPF_PROG_TYPE_LWT_OUT = 11, + BPF_PROG_TYPE_LWT_XMIT = 12, + BPF_PROG_TYPE_SOCK_OPS = 13, + BPF_PROG_TYPE_SK_SKB = 14, + BPF_PROG_TYPE_CGROUP_DEVICE = 15, + BPF_PROG_TYPE_SK_MSG = 16, + BPF_PROG_TYPE_RAW_TRACEPOINT = 17, + BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 18, + BPF_PROG_TYPE_LWT_SEG6LOCAL = 19, + BPF_PROG_TYPE_LIRC_MODE2 = 20, + BPF_PROG_TYPE_SK_REUSEPORT = 21, + BPF_PROG_TYPE_FLOW_DISSECTOR = 22, + BPF_PROG_TYPE_CGROUP_SYSCTL = 23, + BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE = 24, + BPF_PROG_TYPE_CGROUP_SOCKOPT = 25, + BPF_PROG_TYPE_TRACING = 26, + BPF_PROG_TYPE_STRUCT_OPS = 27, + BPF_PROG_TYPE_EXT = 28, + BPF_PROG_TYPE_LSM = 29, + BPF_PROG_TYPE_SK_LOOKUP = 30, + BPF_PROG_TYPE_SYSCALL = 31, + BPF_PROG_TYPE_NETFILTER = 32, + __MAX_BPF_PROG_TYPE = 33, +}; + +enum bpf_attach_type { + BPF_CGROUP_INET_INGRESS = 0, + BPF_CGROUP_INET_EGRESS = 1, + BPF_CGROUP_INET_SOCK_CREATE = 2, + BPF_CGROUP_SOCK_OPS = 3, + BPF_SK_SKB_STREAM_PARSER = 4, + BPF_SK_SKB_STREAM_VERDICT = 5, + BPF_CGROUP_DEVICE = 6, + BPF_SK_MSG_VERDICT = 7, + BPF_CGROUP_INET4_BIND = 8, + BPF_CGROUP_INET6_BIND = 9, + BPF_CGROUP_INET4_CONNECT = 10, + BPF_CGROUP_INET6_CONNECT = 11, + BPF_CGROUP_INET4_POST_BIND = 12, + BPF_CGROUP_INET6_POST_BIND = 13, + BPF_CGROUP_UDP4_SENDMSG = 14, + BPF_CGROUP_UDP6_SENDMSG = 15, + BPF_LIRC_MODE2 = 16, + BPF_FLOW_DISSECTOR = 17, + BPF_CGROUP_SYSCTL = 18, + BPF_CGROUP_UDP4_RECVMSG = 19, + BPF_CGROUP_UDP6_RECVMSG = 20, + BPF_CGROUP_GETSOCKOPT = 21, + BPF_CGROUP_SETSOCKOPT = 22, + BPF_TRACE_RAW_TP = 23, + BPF_TRACE_FENTRY = 24, + BPF_TRACE_FEXIT = 25, + BPF_MODIFY_RETURN = 26, + BPF_LSM_MAC = 27, + BPF_TRACE_ITER = 28, + BPF_CGROUP_INET4_GETPEERNAME = 29, + BPF_CGROUP_INET6_GETPEERNAME = 30, + BPF_CGROUP_INET4_GETSOCKNAME = 31, + BPF_CGROUP_INET6_GETSOCKNAME = 32, + BPF_XDP_DEVMAP = 33, + BPF_CGROUP_INET_SOCK_RELEASE = 34, + BPF_XDP_CPUMAP = 35, + BPF_SK_LOOKUP = 36, + BPF_XDP = 37, + BPF_SK_SKB_VERDICT = 38, + BPF_SK_REUSEPORT_SELECT = 39, + BPF_SK_REUSEPORT_SELECT_OR_MIGRATE = 40, + BPF_PERF_EVENT = 41, + BPF_TRACE_KPROBE_MULTI = 42, + BPF_LSM_CGROUP = 43, + BPF_STRUCT_OPS = 44, + BPF_NETFILTER = 45, + BPF_TCX_INGRESS = 46, + BPF_TCX_EGRESS = 47, + BPF_TRACE_UPROBE_MULTI = 48, + BPF_CGROUP_UNIX_CONNECT = 49, + BPF_CGROUP_UNIX_SENDMSG = 50, + BPF_CGROUP_UNIX_RECVMSG = 51, + BPF_CGROUP_UNIX_GETPEERNAME = 52, + BPF_CGROUP_UNIX_GETSOCKNAME = 53, + BPF_NETKIT_PRIMARY = 54, + BPF_NETKIT_PEER = 55, + BPF_TRACE_KPROBE_SESSION = 56, + BPF_TRACE_UPROBE_SESSION = 57, + __MAX_BPF_ATTACH_TYPE = 58, +}; + +enum bpf_link_type { + BPF_LINK_TYPE_UNSPEC = 0, + BPF_LINK_TYPE_RAW_TRACEPOINT = 1, + BPF_LINK_TYPE_TRACING = 2, + BPF_LINK_TYPE_CGROUP = 3, + BPF_LINK_TYPE_ITER = 4, + BPF_LINK_TYPE_NETNS = 5, + BPF_LINK_TYPE_XDP = 6, + BPF_LINK_TYPE_PERF_EVENT = 7, + BPF_LINK_TYPE_KPROBE_MULTI = 8, + BPF_LINK_TYPE_STRUCT_OPS = 9, + BPF_LINK_TYPE_NETFILTER = 10, + BPF_LINK_TYPE_TCX = 11, + BPF_LINK_TYPE_UPROBE_MULTI = 12, + BPF_LINK_TYPE_NETKIT = 13, + BPF_LINK_TYPE_SOCKMAP = 14, + __MAX_BPF_LINK_TYPE = 15, +}; + +union bpf_attr { + struct { + __u32 map_type; + __u32 key_size; + __u32 value_size; + __u32 max_entries; + __u32 map_flags; + __u32 inner_map_fd; + __u32 numa_node; + char map_name[16]; + __u32 map_ifindex; + __u32 btf_fd; + __u32 btf_key_type_id; + __u32 btf_value_type_id; + __u32 btf_vmlinux_value_type_id; + __u64 map_extra; + __s32 value_type_btf_obj_fd; + __s32 map_token_fd; + }; + struct { + __u32 map_fd; + __u64 key; + union { + __u64 value; + __u64 next_key; + }; + __u64 flags; + }; + struct { + __u64 in_batch; + __u64 out_batch; + __u64 keys; + __u64 values; + __u32 count; + __u32 map_fd; + __u64 elem_flags; + __u64 flags; + } batch; + struct { + __u32 prog_type; + __u32 insn_cnt; + __u64 insns; + __u64 license; + __u32 log_level; + __u32 log_size; + __u64 log_buf; + __u32 kern_version; + __u32 prog_flags; + char prog_name[16]; + __u32 prog_ifindex; + __u32 expected_attach_type; + __u32 prog_btf_fd; + __u32 func_info_rec_size; + __u64 func_info; + __u32 func_info_cnt; + __u32 line_info_rec_size; + __u64 line_info; + __u32 line_info_cnt; + __u32 attach_btf_id; + union { + __u32 attach_prog_fd; + __u32 attach_btf_obj_fd; + }; + __u32 core_relo_cnt; + __u64 fd_array; + __u64 core_relos; + __u32 core_relo_rec_size; + __u32 log_true_size; + __s32 prog_token_fd; + __u32 fd_array_cnt; + }; + struct { + __u64 pathname; + __u32 bpf_fd; + __u32 file_flags; + __s32 path_fd; + }; + struct { + union { + __u32 target_fd; + __u32 target_ifindex; + }; + __u32 attach_bpf_fd; + __u32 attach_type; + __u32 attach_flags; + __u32 replace_bpf_fd; + union { + __u32 relative_fd; + __u32 relative_id; + }; + __u64 expected_revision; + }; + struct { + __u32 prog_fd; + __u32 retval; + __u32 data_size_in; + __u32 data_size_out; + __u64 data_in; + __u64 data_out; + __u32 repeat; + __u32 duration; + __u32 ctx_size_in; + __u32 ctx_size_out; + __u64 ctx_in; + __u64 ctx_out; + __u32 flags; + __u32 cpu; + __u32 batch_size; + } test; + struct { + union { + __u32 start_id; + __u32 prog_id; + __u32 map_id; + __u32 btf_id; + __u32 link_id; + }; + __u32 next_id; + __u32 open_flags; + __s32 fd_by_id_token_fd; + }; + struct { + __u32 bpf_fd; + __u32 info_len; + __u64 info; + } info; + struct { + union { + __u32 target_fd; + __u32 target_ifindex; + }; + __u32 attach_type; + __u32 query_flags; + __u32 attach_flags; + __u64 prog_ids; + union { + __u32 prog_cnt; + __u32 count; + }; + __u64 prog_attach_flags; + __u64 link_ids; + __u64 link_attach_flags; + __u64 revision; + } query; + struct { + __u64 name; + __u32 prog_fd; + __u64 cookie; + } raw_tracepoint; + struct { + __u64 btf; + __u64 btf_log_buf; + __u32 btf_size; + __u32 btf_log_size; + __u32 btf_log_level; + __u32 btf_log_true_size; + __u32 btf_flags; + __s32 btf_token_fd; + }; + struct { + __u32 pid; + __u32 fd; + __u32 flags; + __u32 buf_len; + __u64 buf; + __u32 prog_id; + __u32 fd_type; + __u64 probe_offset; + __u64 probe_addr; + } task_fd_query; + struct { + union { + __u32 prog_fd; + __u32 map_fd; + }; + union { + __u32 target_fd; + __u32 target_ifindex; + }; + __u32 attach_type; + __u32 flags; + union { + __u32 target_btf_id; + struct { + __u64 iter_info; + __u32 iter_info_len; + }; + struct { + __u64 bpf_cookie; + } perf_event; + struct { + __u32 flags; + __u32 cnt; + __u64 syms; + __u64 addrs; + __u64 cookies; + } kprobe_multi; + struct { + __u32 target_btf_id; + __u64 cookie; + } tracing; + struct { + __u32 pf; + __u32 hooknum; + __s32 priority; + __u32 flags; + } netfilter; + struct { + union { + __u32 relative_fd; + __u32 relative_id; + }; + __u64 expected_revision; + } tcx; + struct { + __u64 path; + __u64 offsets; + __u64 ref_ctr_offsets; + __u64 cookies; + __u32 cnt; + __u32 flags; + __u32 pid; + } uprobe_multi; + struct { + union { + __u32 relative_fd; + __u32 relative_id; + }; + __u64 expected_revision; + } netkit; + struct { + union { + __u32 relative_fd; + __u32 relative_id; + }; + __u64 expected_revision; + } cgroup; + }; + } link_create; + struct { + __u32 link_fd; + union { + __u32 new_prog_fd; + __u32 new_map_fd; + }; + __u32 flags; + union { + __u32 old_prog_fd; + __u32 old_map_fd; + }; + } link_update; + struct { + __u32 link_fd; + } link_detach; + struct { + __u32 type; + } enable_stats; + struct { + __u32 link_fd; + __u32 flags; + } iter_create; + struct { + __u32 prog_fd; + __u32 map_fd; + __u32 flags; + } prog_bind_map; + struct { + __u32 flags; + __u32 bpffs_fd; + } token_create; + struct { + __u64 stream_buf; + __u32 stream_buf_len; + __u32 stream_id; + __u32 prog_fd; + } prog_stream_read; +}; + +enum bpf_func_id { + BPF_FUNC_unspec = 0, + BPF_FUNC_map_lookup_elem = 1, + BPF_FUNC_map_update_elem = 2, + BPF_FUNC_map_delete_elem = 3, + BPF_FUNC_probe_read = 4, + BPF_FUNC_ktime_get_ns = 5, + BPF_FUNC_trace_printk = 6, + BPF_FUNC_get_prandom_u32 = 7, + BPF_FUNC_get_smp_processor_id = 8, + BPF_FUNC_skb_store_bytes = 9, + BPF_FUNC_l3_csum_replace = 10, + BPF_FUNC_l4_csum_replace = 11, + BPF_FUNC_tail_call = 12, + BPF_FUNC_clone_redirect = 13, + BPF_FUNC_get_current_pid_tgid = 14, + BPF_FUNC_get_current_uid_gid = 15, + BPF_FUNC_get_current_comm = 16, + BPF_FUNC_get_cgroup_classid = 17, + BPF_FUNC_skb_vlan_push = 18, + BPF_FUNC_skb_vlan_pop = 19, + BPF_FUNC_skb_get_tunnel_key = 20, + BPF_FUNC_skb_set_tunnel_key = 21, + BPF_FUNC_perf_event_read = 22, + BPF_FUNC_redirect = 23, + BPF_FUNC_get_route_realm = 24, + BPF_FUNC_perf_event_output = 25, + BPF_FUNC_skb_load_bytes = 26, + BPF_FUNC_get_stackid = 27, + BPF_FUNC_csum_diff = 28, + BPF_FUNC_skb_get_tunnel_opt = 29, + BPF_FUNC_skb_set_tunnel_opt = 30, + BPF_FUNC_skb_change_proto = 31, + BPF_FUNC_skb_change_type = 32, + BPF_FUNC_skb_under_cgroup = 33, + BPF_FUNC_get_hash_recalc = 34, + BPF_FUNC_get_current_task = 35, + BPF_FUNC_probe_write_user = 36, + BPF_FUNC_current_task_under_cgroup = 37, + BPF_FUNC_skb_change_tail = 38, + BPF_FUNC_skb_pull_data = 39, + BPF_FUNC_csum_update = 40, + BPF_FUNC_set_hash_invalid = 41, + BPF_FUNC_get_numa_node_id = 42, + BPF_FUNC_skb_change_head = 43, + BPF_FUNC_xdp_adjust_head = 44, + BPF_FUNC_probe_read_str = 45, + BPF_FUNC_get_socket_cookie = 46, + BPF_FUNC_get_socket_uid = 47, + BPF_FUNC_set_hash = 48, + BPF_FUNC_setsockopt = 49, + BPF_FUNC_skb_adjust_room = 50, + BPF_FUNC_redirect_map = 51, + BPF_FUNC_sk_redirect_map = 52, + BPF_FUNC_sock_map_update = 53, + BPF_FUNC_xdp_adjust_meta = 54, + BPF_FUNC_perf_event_read_value = 55, + BPF_FUNC_perf_prog_read_value = 56, + BPF_FUNC_getsockopt = 57, + BPF_FUNC_override_return = 58, + BPF_FUNC_sock_ops_cb_flags_set = 59, + BPF_FUNC_msg_redirect_map = 60, + BPF_FUNC_msg_apply_bytes = 61, + BPF_FUNC_msg_cork_bytes = 62, + BPF_FUNC_msg_pull_data = 63, + BPF_FUNC_bind = 64, + BPF_FUNC_xdp_adjust_tail = 65, + BPF_FUNC_skb_get_xfrm_state = 66, + BPF_FUNC_get_stack = 67, + BPF_FUNC_skb_load_bytes_relative = 68, + BPF_FUNC_fib_lookup = 69, + BPF_FUNC_sock_hash_update = 70, + BPF_FUNC_msg_redirect_hash = 71, + BPF_FUNC_sk_redirect_hash = 72, + BPF_FUNC_lwt_push_encap = 73, + BPF_FUNC_lwt_seg6_store_bytes = 74, + BPF_FUNC_lwt_seg6_adjust_srh = 75, + BPF_FUNC_lwt_seg6_action = 76, + BPF_FUNC_rc_repeat = 77, + BPF_FUNC_rc_keydown = 78, + BPF_FUNC_skb_cgroup_id = 79, + BPF_FUNC_get_current_cgroup_id = 80, + BPF_FUNC_get_local_storage = 81, + BPF_FUNC_sk_select_reuseport = 82, + BPF_FUNC_skb_ancestor_cgroup_id = 83, + BPF_FUNC_sk_lookup_tcp = 84, + BPF_FUNC_sk_lookup_udp = 85, + BPF_FUNC_sk_release = 86, + BPF_FUNC_map_push_elem = 87, + BPF_FUNC_map_pop_elem = 88, + BPF_FUNC_map_peek_elem = 89, + BPF_FUNC_msg_push_data = 90, + BPF_FUNC_msg_pop_data = 91, + BPF_FUNC_rc_pointer_rel = 92, + BPF_FUNC_spin_lock = 93, + BPF_FUNC_spin_unlock = 94, + BPF_FUNC_sk_fullsock = 95, + BPF_FUNC_tcp_sock = 96, + BPF_FUNC_skb_ecn_set_ce = 97, + BPF_FUNC_get_listener_sock = 98, + BPF_FUNC_skc_lookup_tcp = 99, + BPF_FUNC_tcp_check_syncookie = 100, + BPF_FUNC_sysctl_get_name = 101, + BPF_FUNC_sysctl_get_current_value = 102, + BPF_FUNC_sysctl_get_new_value = 103, + BPF_FUNC_sysctl_set_new_value = 104, + BPF_FUNC_strtol = 105, + BPF_FUNC_strtoul = 106, + BPF_FUNC_sk_storage_get = 107, + BPF_FUNC_sk_storage_delete = 108, + BPF_FUNC_send_signal = 109, + BPF_FUNC_tcp_gen_syncookie = 110, + BPF_FUNC_skb_output = 111, + BPF_FUNC_probe_read_user = 112, + BPF_FUNC_probe_read_kernel = 113, + BPF_FUNC_probe_read_user_str = 114, + BPF_FUNC_probe_read_kernel_str = 115, + BPF_FUNC_tcp_send_ack = 116, + BPF_FUNC_send_signal_thread = 117, + BPF_FUNC_jiffies64 = 118, + BPF_FUNC_read_branch_records = 119, + BPF_FUNC_get_ns_current_pid_tgid = 120, + BPF_FUNC_xdp_output = 121, + BPF_FUNC_get_netns_cookie = 122, + BPF_FUNC_get_current_ancestor_cgroup_id = 123, + BPF_FUNC_sk_assign = 124, + BPF_FUNC_ktime_get_boot_ns = 125, + BPF_FUNC_seq_printf = 126, + BPF_FUNC_seq_write = 127, + BPF_FUNC_sk_cgroup_id = 128, + BPF_FUNC_sk_ancestor_cgroup_id = 129, + BPF_FUNC_ringbuf_output = 130, + BPF_FUNC_ringbuf_reserve = 131, + BPF_FUNC_ringbuf_submit = 132, + BPF_FUNC_ringbuf_discard = 133, + BPF_FUNC_ringbuf_query = 134, + BPF_FUNC_csum_level = 135, + BPF_FUNC_skc_to_tcp6_sock = 136, + BPF_FUNC_skc_to_tcp_sock = 137, + BPF_FUNC_skc_to_tcp_timewait_sock = 138, + BPF_FUNC_skc_to_tcp_request_sock = 139, + BPF_FUNC_skc_to_udp6_sock = 140, + BPF_FUNC_get_task_stack = 141, + BPF_FUNC_load_hdr_opt = 142, + BPF_FUNC_store_hdr_opt = 143, + BPF_FUNC_reserve_hdr_opt = 144, + BPF_FUNC_inode_storage_get = 145, + BPF_FUNC_inode_storage_delete = 146, + BPF_FUNC_d_path = 147, + BPF_FUNC_copy_from_user = 148, + BPF_FUNC_snprintf_btf = 149, + BPF_FUNC_seq_printf_btf = 150, + BPF_FUNC_skb_cgroup_classid = 151, + BPF_FUNC_redirect_neigh = 152, + BPF_FUNC_per_cpu_ptr = 153, + BPF_FUNC_this_cpu_ptr = 154, + BPF_FUNC_redirect_peer = 155, + BPF_FUNC_task_storage_get = 156, + BPF_FUNC_task_storage_delete = 157, + BPF_FUNC_get_current_task_btf = 158, + BPF_FUNC_bprm_opts_set = 159, + BPF_FUNC_ktime_get_coarse_ns = 160, + BPF_FUNC_ima_inode_hash = 161, + BPF_FUNC_sock_from_file = 162, + BPF_FUNC_check_mtu = 163, + BPF_FUNC_for_each_map_elem = 164, + BPF_FUNC_snprintf = 165, + BPF_FUNC_sys_bpf = 166, + BPF_FUNC_btf_find_by_name_kind = 167, + BPF_FUNC_sys_close = 168, + BPF_FUNC_timer_init = 169, + BPF_FUNC_timer_set_callback = 170, + BPF_FUNC_timer_start = 171, + BPF_FUNC_timer_cancel = 172, + BPF_FUNC_get_func_ip = 173, + BPF_FUNC_get_attach_cookie = 174, + BPF_FUNC_task_pt_regs = 175, + BPF_FUNC_get_branch_snapshot = 176, + BPF_FUNC_trace_vprintk = 177, + BPF_FUNC_skc_to_unix_sock = 178, + BPF_FUNC_kallsyms_lookup_name = 179, + BPF_FUNC_find_vma = 180, + BPF_FUNC_loop = 181, + BPF_FUNC_strncmp = 182, + BPF_FUNC_get_func_arg = 183, + BPF_FUNC_get_func_ret = 184, + BPF_FUNC_get_func_arg_cnt = 185, + BPF_FUNC_get_retval = 186, + BPF_FUNC_set_retval = 187, + BPF_FUNC_xdp_get_buff_len = 188, + BPF_FUNC_xdp_load_bytes = 189, + BPF_FUNC_xdp_store_bytes = 190, + BPF_FUNC_copy_from_user_task = 191, + BPF_FUNC_skb_set_tstamp = 192, + BPF_FUNC_ima_file_hash = 193, + BPF_FUNC_kptr_xchg = 194, + BPF_FUNC_map_lookup_percpu_elem = 195, + BPF_FUNC_skc_to_mptcp_sock = 196, + BPF_FUNC_dynptr_from_mem = 197, + BPF_FUNC_ringbuf_reserve_dynptr = 198, + BPF_FUNC_ringbuf_submit_dynptr = 199, + BPF_FUNC_ringbuf_discard_dynptr = 200, + BPF_FUNC_dynptr_read = 201, + BPF_FUNC_dynptr_write = 202, + BPF_FUNC_dynptr_data = 203, + BPF_FUNC_tcp_raw_gen_syncookie_ipv4 = 204, + BPF_FUNC_tcp_raw_gen_syncookie_ipv6 = 205, + BPF_FUNC_tcp_raw_check_syncookie_ipv4 = 206, + BPF_FUNC_tcp_raw_check_syncookie_ipv6 = 207, + BPF_FUNC_ktime_get_tai_ns = 208, + BPF_FUNC_user_ringbuf_drain = 209, + BPF_FUNC_cgrp_storage_get = 210, + BPF_FUNC_cgrp_storage_delete = 211, + __BPF_FUNC_MAX_ID = 212, +}; + +struct bpf_link_info { + __u32 type; + __u32 id; + __u32 prog_id; + union { + struct { + __u64 tp_name; + __u32 tp_name_len; + __u64 cookie; + } raw_tracepoint; + struct { + __u32 attach_type; + __u32 target_obj_id; + __u32 target_btf_id; + __u64 cookie; + } tracing; + struct { + __u64 cgroup_id; + __u32 attach_type; + } cgroup; + struct { + __u64 target_name; + __u32 target_name_len; + union { + struct { + __u32 map_id; + } map; + }; + union { + struct { + __u64 cgroup_id; + __u32 order; + } cgroup; + struct { + __u32 tid; + __u32 pid; + } task; + }; + } iter; + struct { + __u32 netns_ino; + __u32 attach_type; + } netns; + struct { + __u32 ifindex; + } xdp; + struct { + __u32 map_id; + } struct_ops; + struct { + __u32 pf; + __u32 hooknum; + __s32 priority; + __u32 flags; + } netfilter; + struct { + __u64 addrs; + __u32 count; + __u32 flags; + __u64 missed; + __u64 cookies; + } kprobe_multi; + struct { + __u64 path; + __u64 offsets; + __u64 ref_ctr_offsets; + __u64 cookies; + __u32 path_size; + __u32 count; + __u32 flags; + __u32 pid; + } uprobe_multi; + struct { + __u32 type; + union { + struct { + __u64 file_name; + __u32 name_len; + __u32 offset; + __u64 cookie; + __u64 ref_ctr_offset; + } uprobe; + struct { + __u64 func_name; + __u32 name_len; + __u32 offset; + __u64 addr; + __u64 missed; + __u64 cookie; + } kprobe; + struct { + __u64 tp_name; + __u32 name_len; + __u64 cookie; + } tracepoint; + struct { + __u64 config; + __u32 type; + __u64 cookie; + } event; + }; + } perf_event; + struct { + __u32 ifindex; + __u32 attach_type; + } tcx; + struct { + __u32 ifindex; + __u32 attach_type; + } netkit; + struct { + __u32 map_id; + __u32 attach_type; + } sockmap; + }; +}; + +struct bpf_func_info { + __u32 insn_off; + __u32 type_id; +}; + +struct bpf_line_info { + __u32 insn_off; + __u32 file_name_off; + __u32 line_off; + __u32 line_col; +}; + +struct sock_filter { + __u16 code; + __u8 jt; + __u8 jf; + __u32 k; +}; + +struct btf_type { + __u32 name_off; + __u32 info; + union { + __u32 size; + __u32 type; + }; +}; + +struct btf_member { + __u32 name_off; + __u32 type; + __u32 offset; +}; + +struct bpf_prog_stats; + +struct bpf_prog_aux; + +struct sock_fprog_kern; + +struct bpf_prog { + u16 pages; + u16 jited: 1; + u16 jit_requested: 1; + u16 gpl_compatible: 1; + u16 cb_access: 1; + u16 dst_needed: 1; + u16 blinding_requested: 1; + u16 blinded: 1; + u16 is_func: 1; + u16 kprobe_override: 1; + u16 has_callchain_buf: 1; + u16 enforce_expected_attach_type: 1; + u16 call_get_stack: 1; + u16 call_get_func_ip: 1; + u16 tstamp_type_access: 1; + u16 sleepable: 1; + enum bpf_prog_type type; + enum bpf_attach_type expected_attach_type; + u32 len; + u32 jited_len; + u8 tag[8]; + struct bpf_prog_stats *stats; + int *active; + unsigned int (*bpf_func)(const void *, const struct bpf_insn *); + struct bpf_prog_aux *aux; + struct sock_fprog_kern *orig_prog; + union { + struct { + struct {} __empty_insns; + struct sock_filter insns[0]; + }; + struct { + struct {} __empty_insnsi; + struct bpf_insn insnsi[0]; + }; + }; +}; + +enum btf_field_type { + BPF_SPIN_LOCK = 1, + BPF_TIMER = 2, + BPF_KPTR_UNREF = 4, + BPF_KPTR_REF = 8, + BPF_KPTR_PERCPU = 16, + BPF_KPTR = 28, + BPF_LIST_HEAD = 32, + BPF_LIST_NODE = 64, + BPF_RB_ROOT = 128, + BPF_RB_NODE = 256, + BPF_GRAPH_NODE = 320, + BPF_GRAPH_ROOT = 160, + BPF_REFCOUNT = 512, + BPF_WORKQUEUE = 1024, + BPF_UPTR = 2048, + BPF_RES_SPIN_LOCK = 4096, +}; + +typedef void (*btf_dtor_kfunc_t)(void *); + +struct btf; + +struct btf_field_kptr { + struct btf *btf; + struct module *module; + btf_dtor_kfunc_t dtor; + u32 btf_id; +}; + +struct btf_record; + +struct btf_field_graph_root { + struct btf *btf; + u32 value_btf_id; + u32 node_offset; + struct btf_record *value_rec; +}; + +struct btf_field { + u32 offset; + u32 size; + enum btf_field_type type; + union { + struct btf_field_kptr kptr; + struct btf_field_graph_root graph_root; + }; +}; + +struct btf_record { + u32 cnt; + u32 field_mask; + int spin_lock_off; + int res_spin_lock_off; + int timer_off; + int wq_off; + int refcount_off; + struct btf_field fields[0]; +}; + +struct blk_holder_ops { + void (*mark_dead)(struct block_device *, bool); + void (*sync)(struct block_device *); + int (*freeze)(struct block_device *); + int (*thaw)(struct block_device *); +}; + +struct partition_meta_info { + char uuid[37]; + u8 volname[64]; +}; + +struct mem_cgroup_reclaim_iter { + struct mem_cgroup *position; + atomic_t generation; +}; + +struct lruvec_stats_percpu; + +struct lruvec_stats; + +struct mem_cgroup_per_node { + struct mem_cgroup *memcg; + struct lruvec_stats_percpu *lruvec_stats_percpu; + struct lruvec_stats *lruvec_stats; + struct shrinker_info *shrinker_info; + long: 64; + long: 64; + long: 64; + long: 64; + struct cacheline_padding _pad1_; + struct lruvec lruvec; + long: 64; + long: 64; + struct cacheline_padding _pad2_; + long unsigned int lru_zone_size[25]; + struct mem_cgroup_reclaim_iter iter; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +typedef u64 (*bpf_callback_t)(u64, u64, u64, u64, u64); + +struct bpf_iter_aux_info; + +typedef int (*bpf_iter_init_seq_priv_t)(void *, struct bpf_iter_aux_info *); + +enum bpf_iter_task_type { + BPF_TASK_ITER_ALL = 0, + BPF_TASK_ITER_TID = 1, + BPF_TASK_ITER_TGID = 2, +}; + +struct bpf_map; + +struct bpf_iter_aux_info { + struct bpf_map *map; + struct { + struct cgroup *start; + enum bpf_cgroup_iter_order order; + } cgroup; + struct { + enum bpf_iter_task_type type; + u32 pid; + } task; +}; + +typedef void (*bpf_iter_fini_seq_priv_t)(void *); + +struct bpf_iter_seq_info { + const struct seq_operations *seq_ops; + bpf_iter_init_seq_priv_t init_seq_private; + bpf_iter_fini_seq_priv_t fini_seq_private; + u32 seq_priv_size; +}; + +struct bpf_local_storage_map; + +struct bpf_verifier_env; + +struct bpf_func_state; + +struct bpf_map_ops { + int (*map_alloc_check)(union bpf_attr *); + struct bpf_map * (*map_alloc)(union bpf_attr *); + void (*map_release)(struct bpf_map *, struct file *); + void (*map_free)(struct bpf_map *); + int (*map_get_next_key)(struct bpf_map *, void *, void *); + void (*map_release_uref)(struct bpf_map *); + void * (*map_lookup_elem_sys_only)(struct bpf_map *, void *); + int (*map_lookup_batch)(struct bpf_map *, const union bpf_attr *, union bpf_attr *); + int (*map_lookup_and_delete_elem)(struct bpf_map *, void *, void *, u64); + int (*map_lookup_and_delete_batch)(struct bpf_map *, const union bpf_attr *, union bpf_attr *); + int (*map_update_batch)(struct bpf_map *, struct file *, const union bpf_attr *, union bpf_attr *); + int (*map_delete_batch)(struct bpf_map *, const union bpf_attr *, union bpf_attr *); + void * (*map_lookup_elem)(struct bpf_map *, void *); + long int (*map_update_elem)(struct bpf_map *, void *, void *, u64); + long int (*map_delete_elem)(struct bpf_map *, void *); + long int (*map_push_elem)(struct bpf_map *, void *, u64); + long int (*map_pop_elem)(struct bpf_map *, void *); + long int (*map_peek_elem)(struct bpf_map *, void *); + void * (*map_lookup_percpu_elem)(struct bpf_map *, void *, u32); + void * (*map_fd_get_ptr)(struct bpf_map *, struct file *, int); + void (*map_fd_put_ptr)(struct bpf_map *, void *, bool); + int (*map_gen_lookup)(struct bpf_map *, struct bpf_insn *); + u32 (*map_fd_sys_lookup_elem)(void *); + void (*map_seq_show_elem)(struct bpf_map *, void *, struct seq_file *); + int (*map_check_btf)(const struct bpf_map *, const struct btf *, const struct btf_type *, const struct btf_type *); + int (*map_poke_track)(struct bpf_map *, struct bpf_prog_aux *); + void (*map_poke_untrack)(struct bpf_map *, struct bpf_prog_aux *); + void (*map_poke_run)(struct bpf_map *, u32, struct bpf_prog *, struct bpf_prog *); + int (*map_direct_value_addr)(const struct bpf_map *, u64 *, u32); + int (*map_direct_value_meta)(const struct bpf_map *, u64, u32 *); + int (*map_mmap)(struct bpf_map *, struct vm_area_struct *); + __poll_t (*map_poll)(struct bpf_map *, struct file *, struct poll_table_struct *); + long unsigned int (*map_get_unmapped_area)(struct file *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + int (*map_local_storage_charge)(struct bpf_local_storage_map *, void *, u32); + void (*map_local_storage_uncharge)(struct bpf_local_storage_map *, void *, u32); + struct bpf_local_storage ** (*map_owner_storage_ptr)(void *); + long int (*map_redirect)(struct bpf_map *, u64, u64); + bool (*map_meta_equal)(const struct bpf_map *, const struct bpf_map *); + int (*map_set_for_each_callback_args)(struct bpf_verifier_env *, struct bpf_func_state *, struct bpf_func_state *); + long int (*map_for_each_callback)(struct bpf_map *, bpf_callback_t, void *, u64); + u64 (*map_mem_usage)(const struct bpf_map *); + int *map_btf_id; + const struct bpf_iter_seq_info *iter_seq_info; +}; + +struct bpf_map_owner; + +struct bpf_map { + const struct bpf_map_ops *ops; + struct bpf_map *inner_map_meta; + void *security; + enum bpf_map_type map_type; + u32 key_size; + u32 value_size; + u32 max_entries; + u64 map_extra; + u32 map_flags; + u32 id; + struct btf_record *record; + int numa_node; + u32 btf_key_type_id; + u32 btf_value_type_id; + u32 btf_vmlinux_value_type_id; + struct btf *btf; + struct obj_cgroup *objcg; + char name[16]; + struct mutex freeze_mutex; + atomic64_t refcnt; + atomic64_t usercnt; + union { + struct work_struct work; + struct callback_head rcu; + }; + atomic64_t writecnt; + spinlock_t owner_lock; + struct bpf_map_owner *owner; + bool bypass_spec_v1; + bool frozen; + bool free_after_mult_rcu_gp; + bool free_after_rcu_gp; + atomic64_t sleepable_refcnt; + s64 *elem_count; + u64 cookie; +}; + +struct btf_header { + __u16 magic; + __u8 version; + __u8 flags; + __u32 hdr_len; + __u32 type_off; + __u32 type_len; + __u32 str_off; + __u32 str_len; +}; + +struct btf_kfunc_set_tab; + +struct btf_id_dtor_kfunc_tab; + +struct btf_struct_metas; + +struct btf_struct_ops_tab; + +struct btf { + void *data; + struct btf_type **types; + u32 *resolved_ids; + u32 *resolved_sizes; + const char *strings; + void *nohdr_data; + struct btf_header hdr; + u32 nr_types; + u32 types_size; + u32 data_size; + refcount_t refcnt; + u32 id; + struct callback_head rcu; + struct btf_kfunc_set_tab *kfunc_set_tab; + struct btf_id_dtor_kfunc_tab *dtor_kfunc_tab; + struct btf_struct_metas *struct_meta_tab; + struct btf_struct_ops_tab *struct_ops_tab; + struct btf *base_btf; + u32 start_id; + u32 start_str_off; + char name[56]; + bool kernel_btf; + __u32 *base_id_map; +}; + +struct bpf_ksym { + long unsigned int start; + long unsigned int end; + char name[512]; + struct list_head lnode; + struct latch_tree_node tnode; + bool prog; +}; + +struct bpf_stream { + atomic_t capacity; + struct llist_head log; + struct mutex lock; + struct llist_node *backlog_head; + struct llist_node *backlog_tail; +}; + +struct bpf_ctx_arg_aux; + +struct bpf_trampoline; + +struct bpf_arena; + +struct bpf_jit_poke_descriptor; + +struct bpf_kfunc_desc_tab; + +struct bpf_kfunc_btf_tab; + +struct bpf_prog_ops; + +struct bpf_struct_ops; + +struct btf_mod_pair; + +struct bpf_token; + +struct bpf_prog_offload; + +struct bpf_func_info_aux; + +struct bpf_prog_aux { + atomic64_t refcnt; + u32 used_map_cnt; + u32 used_btf_cnt; + u32 max_ctx_offset; + u32 max_pkt_offset; + u32 max_tp_access; + u32 stack_depth; + u32 id; + u32 func_cnt; + u32 real_func_cnt; + u32 func_idx; + u32 attach_btf_id; + u32 attach_st_ops_member_off; + u32 ctx_arg_info_size; + u32 max_rdonly_access; + u32 max_rdwr_access; + struct btf *attach_btf; + struct bpf_ctx_arg_aux *ctx_arg_info; + void *priv_stack_ptr; + struct mutex dst_mutex; + struct bpf_prog *dst_prog; + struct bpf_trampoline *dst_trampoline; + enum bpf_prog_type saved_dst_prog_type; + enum bpf_attach_type saved_dst_attach_type; + bool verifier_zext; + bool dev_bound; + bool offload_requested; + bool attach_btf_trace; + bool attach_tracing_prog; + bool func_proto_unreliable; + bool tail_call_reachable; + bool xdp_has_frags; + bool exception_cb; + bool exception_boundary; + bool is_extended; + bool jits_use_priv_stack; + bool priv_stack_requested; + bool changes_pkt_data; + bool might_sleep; + u64 prog_array_member_cnt; + struct mutex ext_mutex; + struct bpf_arena *arena; + void (*recursion_detected)(struct bpf_prog *); + const struct btf_type *attach_func_proto; + const char *attach_func_name; + struct bpf_prog **func; + void *jit_data; + struct bpf_jit_poke_descriptor *poke_tab; + struct bpf_kfunc_desc_tab *kfunc_tab; + struct bpf_kfunc_btf_tab *kfunc_btf_tab; + u32 size_poke_tab; + struct bpf_ksym ksym; + const struct bpf_prog_ops *ops; + const struct bpf_struct_ops *st_ops; + struct bpf_map **used_maps; + struct mutex used_maps_mutex; + struct btf_mod_pair *used_btfs; + struct bpf_prog *prog; + struct user_struct *user; + u64 load_time; + u32 verified_insns; + int cgroup_atype; + struct bpf_map *cgroup_storage[2]; + char name[16]; + u64 (*bpf_exception_cb)(u64, u64, u64, u64, u64); + void *security; + struct bpf_token *token; + struct bpf_prog_offload *offload; + struct btf *btf; + struct bpf_func_info *func_info; + struct bpf_func_info_aux *func_info_aux; + struct bpf_line_info *linfo; + void **jited_linfo; + u32 func_info_cnt; + u32 nr_linfo; + u32 linfo_idx; + struct module *mod; + u32 num_exentries; + struct exception_table_entry *extable; + union { + struct work_struct work; + struct callback_head rcu; + }; + struct bpf_stream stream[2]; +}; + +struct bpf_map_owner { + enum bpf_prog_type type; + bool jited; + bool xdp_has_frags; + u64 storage_cookie[2]; + const struct btf_type *attach_func_proto; + enum bpf_attach_type expected_attach_type; +}; + +enum bpf_arg_type { + ARG_DONTCARE = 0, + ARG_CONST_MAP_PTR = 1, + ARG_PTR_TO_MAP_KEY = 2, + ARG_PTR_TO_MAP_VALUE = 3, + ARG_PTR_TO_MEM = 4, + ARG_PTR_TO_ARENA = 5, + ARG_CONST_SIZE = 6, + ARG_CONST_SIZE_OR_ZERO = 7, + ARG_PTR_TO_CTX = 8, + ARG_ANYTHING = 9, + ARG_PTR_TO_SPIN_LOCK = 10, + ARG_PTR_TO_SOCK_COMMON = 11, + ARG_PTR_TO_SOCKET = 12, + ARG_PTR_TO_BTF_ID = 13, + ARG_PTR_TO_RINGBUF_MEM = 14, + ARG_CONST_ALLOC_SIZE_OR_ZERO = 15, + ARG_PTR_TO_BTF_ID_SOCK_COMMON = 16, + ARG_PTR_TO_PERCPU_BTF_ID = 17, + ARG_PTR_TO_FUNC = 18, + ARG_PTR_TO_STACK = 19, + ARG_PTR_TO_CONST_STR = 20, + ARG_PTR_TO_TIMER = 21, + ARG_KPTR_XCHG_DEST = 22, + ARG_PTR_TO_DYNPTR = 23, + __BPF_ARG_TYPE_MAX = 24, + ARG_PTR_TO_MAP_VALUE_OR_NULL = 259, + ARG_PTR_TO_MEM_OR_NULL = 260, + ARG_PTR_TO_CTX_OR_NULL = 264, + ARG_PTR_TO_SOCKET_OR_NULL = 268, + ARG_PTR_TO_STACK_OR_NULL = 275, + ARG_PTR_TO_BTF_ID_OR_NULL = 269, + ARG_PTR_TO_UNINIT_MEM = 67141636, + ARG_PTR_TO_FIXED_SIZE_MEM = 262148, + __BPF_ARG_TYPE_LIMIT = 134217727, +}; + +enum bpf_return_type { + RET_INTEGER = 0, + RET_VOID = 1, + RET_PTR_TO_MAP_VALUE = 2, + RET_PTR_TO_SOCKET = 3, + RET_PTR_TO_TCP_SOCK = 4, + RET_PTR_TO_SOCK_COMMON = 5, + RET_PTR_TO_MEM = 6, + RET_PTR_TO_MEM_OR_BTF_ID = 7, + RET_PTR_TO_BTF_ID = 8, + __BPF_RET_TYPE_MAX = 9, + RET_PTR_TO_MAP_VALUE_OR_NULL = 258, + RET_PTR_TO_SOCKET_OR_NULL = 259, + RET_PTR_TO_TCP_SOCK_OR_NULL = 260, + RET_PTR_TO_SOCK_COMMON_OR_NULL = 261, + RET_PTR_TO_RINGBUF_MEM_OR_NULL = 1286, + RET_PTR_TO_DYNPTR_MEM_OR_NULL = 262, + RET_PTR_TO_BTF_ID_OR_NULL = 264, + RET_PTR_TO_BTF_ID_TRUSTED = 1048584, + __BPF_RET_TYPE_LIMIT = 134217727, +}; + +struct bpf_func_proto { + u64 (*func)(u64, u64, u64, u64, u64); + bool gpl_only; + bool pkt_access; + bool might_sleep; + bool allow_fastcall; + enum bpf_return_type ret_type; + union { + struct { + enum bpf_arg_type arg1_type; + enum bpf_arg_type arg2_type; + enum bpf_arg_type arg3_type; + enum bpf_arg_type arg4_type; + enum bpf_arg_type arg5_type; + }; + enum bpf_arg_type arg_type[5]; + }; + union { + struct { + u32 *arg1_btf_id; + u32 *arg2_btf_id; + u32 *arg3_btf_id; + u32 *arg4_btf_id; + u32 *arg5_btf_id; + }; + u32 *arg_btf_id[5]; + struct { + size_t arg1_size; + size_t arg2_size; + size_t arg3_size; + size_t arg4_size; + size_t arg5_size; + }; + size_t arg_size[5]; + }; + int *ret_btf_id; + bool (*allowed)(const struct bpf_prog *); +}; + +enum bpf_access_type { + BPF_READ = 1, + BPF_WRITE = 2, +}; + +enum bpf_reg_type { + NOT_INIT = 0, + SCALAR_VALUE = 1, + PTR_TO_CTX = 2, + CONST_PTR_TO_MAP = 3, + PTR_TO_MAP_VALUE = 4, + PTR_TO_MAP_KEY = 5, + PTR_TO_STACK = 6, + PTR_TO_PACKET_META = 7, + PTR_TO_PACKET = 8, + PTR_TO_PACKET_END = 9, + PTR_TO_FLOW_KEYS = 10, + PTR_TO_SOCKET = 11, + PTR_TO_SOCK_COMMON = 12, + PTR_TO_TCP_SOCK = 13, + PTR_TO_TP_BUFFER = 14, + PTR_TO_XDP_SOCK = 15, + PTR_TO_BTF_ID = 16, + PTR_TO_MEM = 17, + PTR_TO_ARENA = 18, + PTR_TO_BUF = 19, + PTR_TO_FUNC = 20, + CONST_PTR_TO_DYNPTR = 21, + __BPF_REG_TYPE_MAX = 22, + PTR_TO_MAP_VALUE_OR_NULL = 260, + PTR_TO_SOCKET_OR_NULL = 267, + PTR_TO_SOCK_COMMON_OR_NULL = 268, + PTR_TO_TCP_SOCK_OR_NULL = 269, + PTR_TO_BTF_ID_OR_NULL = 272, + __BPF_REG_TYPE_LIMIT = 134217727, +}; + +struct bpf_verifier_log; + +struct bpf_insn_access_aux { + enum bpf_reg_type reg_type; + bool is_ldsx; + union { + int ctx_field_size; + struct { + struct btf *btf; + u32 btf_id; + u32 ref_obj_id; + }; + }; + struct bpf_verifier_log *log; + bool is_retval; +}; + +struct bpf_prog_ops { + int (*test_run)(struct bpf_prog *, const union bpf_attr *, union bpf_attr *); +}; + +struct bpf_reg_state; + +struct bpf_verifier_ops { + const struct bpf_func_proto * (*get_func_proto)(enum bpf_func_id, const struct bpf_prog *); + bool (*is_valid_access)(int, int, enum bpf_access_type, const struct bpf_prog *, struct bpf_insn_access_aux *); + int (*gen_prologue)(struct bpf_insn *, bool, const struct bpf_prog *); + int (*gen_epilogue)(struct bpf_insn *, const struct bpf_prog *, s16); + int (*gen_ld_abs)(const struct bpf_insn *, struct bpf_insn *); + u32 (*convert_ctx_access)(enum bpf_access_type, const struct bpf_insn *, struct bpf_insn *, struct bpf_prog *, u32 *); + int (*btf_struct_access)(struct bpf_verifier_log *, const struct bpf_reg_state *, int, int); +}; + +enum bpf_dynptr_type { + BPF_DYNPTR_TYPE_INVALID = 0, + BPF_DYNPTR_TYPE_LOCAL = 1, + BPF_DYNPTR_TYPE_RINGBUF = 2, + BPF_DYNPTR_TYPE_SKB = 3, + BPF_DYNPTR_TYPE_XDP = 4, +}; + +enum bpf_iter_state { + BPF_ITER_STATE_INVALID = 0, + BPF_ITER_STATE_ACTIVE = 1, + BPF_ITER_STATE_DRAINED = 2, +}; + +struct tnum { + u64 value; + u64 mask; +}; + +enum bpf_reg_liveness { + REG_LIVE_NONE = 0, + REG_LIVE_READ32 = 1, + REG_LIVE_READ64 = 2, + REG_LIVE_READ = 3, + REG_LIVE_WRITTEN = 4, + REG_LIVE_DONE = 8, +}; + +struct bpf_reg_state { + enum bpf_reg_type type; + s32 off; + union { + int range; + struct { + struct bpf_map *map_ptr; + u32 map_uid; + }; + struct { + struct btf *btf; + u32 btf_id; + }; + struct { + u32 mem_size; + u32 dynptr_id; + }; + struct { + enum bpf_dynptr_type type; + bool first_slot; + } dynptr; + struct { + struct btf *btf; + u32 btf_id; + enum bpf_iter_state state: 2; + int depth: 30; + } iter; + struct { + enum { + IRQ_NATIVE_KFUNC = 0, + IRQ_LOCK_KFUNC = 1, + } kfunc_class; + } irq; + struct { + long unsigned int raw1; + long unsigned int raw2; + } raw; + u32 subprogno; + }; + struct tnum var_off; + s64 smin_value; + s64 smax_value; + u64 umin_value; + u64 umax_value; + s32 s32_min_value; + s32 s32_max_value; + u32 u32_min_value; + u32 u32_max_value; + u32 id; + u32 ref_obj_id; + struct bpf_reg_state *parent; + u32 frameno; + s32 subreg_def; + enum bpf_reg_liveness live; + bool precise; +}; + +struct net_device; + +struct bpf_offload_dev; + +struct bpf_prog_offload { + struct bpf_prog *prog; + struct net_device *netdev; + struct bpf_offload_dev *offdev; + void *dev_priv; + struct list_head offloads; + bool dev_state; + bool opt_failed; + void *jited_image; + u32 jited_len; +}; + +struct btf_func_model { + u8 ret_size; + u8 ret_flags; + u8 nr_args; + u8 arg_size[12]; + u8 arg_flags[12]; +}; + +struct bpf_tramp_image { + void *image; + int size; + struct bpf_ksym ksym; + struct percpu_ref pcref; + void *ip_after_call; + void *ip_epilogue; + union { + struct callback_head rcu; + struct work_struct work; + }; +}; + +struct bpf_trampoline { + struct hlist_node hlist; + struct ftrace_ops *fops; + struct mutex mutex; + refcount_t refcnt; + u32 flags; + u64 key; + struct { + struct btf_func_model model; + void *addr; + bool ftrace_managed; + } func; + struct bpf_prog *extension_prog; + struct hlist_head progs_hlist[3]; + int progs_cnt[3]; + struct bpf_tramp_image *cur_image; +}; + +struct bpf_func_info_aux { + u16 linkage; + bool unreliable; + bool called: 1; + bool verified: 1; +}; + +struct bpf_jit_poke_descriptor { + void *tailcall_target; + void *tailcall_bypass; + void *bypass_addr; + void *aux; + union { + struct { + struct bpf_map *map; + u32 key; + } tail_call; + }; + bool tailcall_target_stable; + u8 adj_off; + u16 reason; + u32 insn_idx; +}; + +struct bpf_ctx_arg_aux { + u32 offset; + enum bpf_reg_type reg_type; + struct btf *btf; + u32 btf_id; + u32 ref_obj_id; + bool refcounted; +}; + +struct btf_mod_pair { + struct btf *btf; + struct module *module; +}; + +struct bpf_link; + +struct bpf_struct_ops { + const struct bpf_verifier_ops *verifier_ops; + int (*init)(struct btf *); + int (*check_member)(const struct btf_type *, const struct btf_member *, const struct bpf_prog *); + int (*init_member)(const struct btf_type *, const struct btf_member *, void *, const void *); + int (*reg)(void *, struct bpf_link *); + void (*unreg)(void *, struct bpf_link *); + int (*update)(void *, void *, struct bpf_link *); + int (*validate)(void *); + void *cfi_stubs; + struct module *owner; + const char *name; + struct btf_func_model func_models[64]; +}; + +struct bpf_token { + struct work_struct work; + atomic64_t refcnt; + struct user_namespace *userns; + u64 allowed_cmds; + u64 allowed_maps; + u64 allowed_progs; + u64 allowed_attachs; + void *security; +}; + +struct bpf_link_ops; + +struct bpf_link { + atomic64_t refcnt; + u32 id; + enum bpf_link_type type; + const struct bpf_link_ops *ops; + struct bpf_prog *prog; + u32 flags; + enum bpf_attach_type attach_type; + union { + struct callback_head rcu; + struct work_struct work; + }; + bool sleepable; +}; + +struct bpf_link_ops { + void (*release)(struct bpf_link *); + void (*dealloc)(struct bpf_link *); + void (*dealloc_deferred)(struct bpf_link *); + int (*detach)(struct bpf_link *); + int (*update_prog)(struct bpf_link *, struct bpf_prog *, struct bpf_prog *); + void (*show_fdinfo)(const struct bpf_link *, struct seq_file *); + int (*fill_link_info)(const struct bpf_link *, struct bpf_link_info *); + int (*update_map)(struct bpf_link *, struct bpf_map *, struct bpf_map *); + __poll_t (*poll)(struct file *, struct poll_table_struct *); +}; + +struct perf_callchain_entry { + u64 nr; + u64 ip[0]; +}; + +typedef long unsigned int (*perf_copy_f)(void *, const void *, long unsigned int, long unsigned int); + +struct perf_raw_frag { + union { + struct perf_raw_frag *next; + long unsigned int pad; + }; + perf_copy_f copy; + void *data; + u32 size; +} __attribute__((packed)); + +struct perf_raw_record { + struct perf_raw_frag frag; + u32 size; +}; + +struct perf_branch_stack { + u64 nr; + u64 hw_idx; + struct perf_branch_entry entries[0]; +}; + +struct perf_event_pmu_context { + struct pmu *pmu; + struct perf_event_context *ctx; + struct list_head pmu_ctx_entry; + struct list_head pinned_active; + struct list_head flexible_active; + unsigned int embedded: 1; + unsigned int nr_events; + unsigned int nr_cgroups; + unsigned int nr_freq; + atomic_t refcount; + struct callback_head callback_head; + int rotate_necessary; +}; + +struct perf_cpu_pmu_context { + struct perf_event_pmu_context epc; + struct perf_event_pmu_context *task_epc; + struct list_head sched_cb_entry; + int sched_cb_usage; + int active_oncpu; + int exclusive; + int pmu_disable_count; + raw_spinlock_t hrtimer_lock; + struct hrtimer hrtimer; + ktime_t hrtimer_interval; + unsigned int hrtimer_active; +}; + +struct perf_output_handle { + struct perf_event *event; + struct perf_buffer *rb; + long unsigned int wakeup; + long unsigned int size; + union { + u64 flags; + u64 aux_flags; + struct { + u64 skip_read: 1; + }; + }; + union { + void *addr; + long unsigned int head; + }; + int page; +}; + +struct perf_addr_filter_range { + long unsigned int start; + long unsigned int size; +}; + +struct perf_sample_data { + u64 sample_flags; + u64 period; + u64 dyn_size; + u64 type; + struct { + u32 pid; + u32 tid; + } tid_entry; + u64 time; + u64 id; + struct { + u32 cpu; + u32 reserved; + } cpu_entry; + u64 ip; + struct perf_callchain_entry *callchain; + struct perf_raw_record *raw; + struct perf_branch_stack *br_stack; + u64 *br_stack_cntr; + union perf_sample_weight weight; + union perf_mem_data_src data_src; + u64 txn; + struct perf_regs regs_user; + struct perf_regs regs_intr; + u64 stack_user_size; + u64 stream_id; + u64 cgroup; + u64 addr; + u64 phys_addr; + u64 data_page_size; + u64 code_page_size; + u64 aux_size; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct perf_cgroup_info; + +struct perf_cgroup { + struct cgroup_subsys_state css; + struct perf_cgroup_info *info; +}; + +struct perf_cgroup_info { + u64 time; + u64 timestamp; + u64 timeoffset; + int active; +}; + +struct trace_entry { + short unsigned int type; + unsigned char flags; + unsigned char preempt_count; + int pid; +}; + +struct trace_array; + +struct tracer; + +struct array_buffer; + +struct ring_buffer_iter; + +struct trace_iterator { + struct trace_array *tr; + struct tracer *trace; + struct array_buffer *array_buffer; + void *private; + int cpu_file; + struct mutex mutex; + struct ring_buffer_iter **buffer_iter; + long unsigned int iter_flags; + void *temp; + unsigned int temp_size; + char *fmt; + unsigned int fmt_size; + atomic_t wait_index; + struct trace_seq tmp_seq; + cpumask_var_t started; + bool closed; + bool snapshot; + struct trace_seq seq; + struct trace_entry *ent; + long unsigned int lost_events; + int leftover; + int ent_size; + int cpu; + u64 ts; + loff_t pos; + long int idx; +}; + +enum print_line_t { + TRACE_TYPE_PARTIAL_LINE = 0, + TRACE_TYPE_HANDLED = 1, + TRACE_TYPE_UNHANDLED = 2, + TRACE_TYPE_NO_CONSUME = 3, +}; + +typedef enum print_line_t (*trace_print_func)(struct trace_iterator *, int, struct trace_event *); + +struct trace_event_functions { + trace_print_func trace; + trace_print_func raw; + trace_print_func hex; + trace_print_func binary; +}; + +enum trace_reg { + TRACE_REG_REGISTER = 0, + TRACE_REG_UNREGISTER = 1, + TRACE_REG_PERF_REGISTER = 2, + TRACE_REG_PERF_UNREGISTER = 3, + TRACE_REG_PERF_OPEN = 4, + TRACE_REG_PERF_CLOSE = 5, + TRACE_REG_PERF_ADD = 6, + TRACE_REG_PERF_DEL = 7, +}; + +struct trace_event_fields { + const char *type; + union { + struct { + const char *name; + const int size; + const int align; + const unsigned int is_signed: 1; + unsigned int needs_test: 1; + const int filter_type; + const int len; + }; + int (*define_fields)(struct trace_event_call *); + }; +}; + +struct trace_event_class { + const char *system; + void *probe; + void *perf_probe; + int (*reg)(struct trace_event_call *, enum trace_reg, void *); + struct trace_event_fields *fields_array; + struct list_head * (*get_fields)(struct trace_event_call *); + struct list_head fields; + int (*raw_init)(struct trace_event_call *); +}; + +enum { + TRACE_EVENT_FL_CAP_ANY_BIT = 0, + TRACE_EVENT_FL_NO_SET_FILTER_BIT = 1, + TRACE_EVENT_FL_IGNORE_ENABLE_BIT = 2, + TRACE_EVENT_FL_TRACEPOINT_BIT = 3, + TRACE_EVENT_FL_DYNAMIC_BIT = 4, + TRACE_EVENT_FL_KPROBE_BIT = 5, + TRACE_EVENT_FL_UPROBE_BIT = 6, + TRACE_EVENT_FL_EPROBE_BIT = 7, + TRACE_EVENT_FL_FPROBE_BIT = 8, + TRACE_EVENT_FL_CUSTOM_BIT = 9, + TRACE_EVENT_FL_TEST_STR_BIT = 10, +}; + +enum { + EVENT_FILE_FL_ENABLED_BIT = 0, + EVENT_FILE_FL_RECORDED_CMD_BIT = 1, + EVENT_FILE_FL_RECORDED_TGID_BIT = 2, + EVENT_FILE_FL_FILTERED_BIT = 3, + EVENT_FILE_FL_NO_SET_FILTER_BIT = 4, + EVENT_FILE_FL_SOFT_DISABLED_BIT = 5, + EVENT_FILE_FL_TRIGGER_MODE_BIT = 6, + EVENT_FILE_FL_TRIGGER_COND_BIT = 7, + EVENT_FILE_FL_PID_FILTER_BIT = 8, + EVENT_FILE_FL_WAS_ENABLED_BIT = 9, + EVENT_FILE_FL_FREED_BIT = 10, +}; + +enum dev_dma_attr { + DEV_DMA_NOT_SUPPORTED = 0, + DEV_DMA_NON_COHERENT = 1, + DEV_DMA_COHERENT = 2, +}; + +struct fwnode_reference_args; + +struct fwnode_endpoint; + +struct fwnode_operations { + struct fwnode_handle * (*get)(struct fwnode_handle *); + void (*put)(struct fwnode_handle *); + bool (*device_is_available)(const struct fwnode_handle *); + const void * (*device_get_match_data)(const struct fwnode_handle *, const struct device *); + bool (*device_dma_supported)(const struct fwnode_handle *); + enum dev_dma_attr (*device_get_dma_attr)(const struct fwnode_handle *); + bool (*property_present)(const struct fwnode_handle *, const char *); + bool (*property_read_bool)(const struct fwnode_handle *, const char *); + int (*property_read_int_array)(const struct fwnode_handle *, const char *, unsigned int, void *, size_t); + int (*property_read_string_array)(const struct fwnode_handle *, const char *, const char **, size_t); + const char * (*get_name)(const struct fwnode_handle *); + const char * (*get_name_prefix)(const struct fwnode_handle *); + struct fwnode_handle * (*get_parent)(const struct fwnode_handle *); + struct fwnode_handle * (*get_next_child_node)(const struct fwnode_handle *, struct fwnode_handle *); + struct fwnode_handle * (*get_named_child_node)(const struct fwnode_handle *, const char *); + int (*get_reference_args)(const struct fwnode_handle *, const char *, const char *, unsigned int, unsigned int, struct fwnode_reference_args *); + struct fwnode_handle * (*graph_get_next_endpoint)(const struct fwnode_handle *, struct fwnode_handle *); + struct fwnode_handle * (*graph_get_remote_endpoint)(const struct fwnode_handle *); + struct fwnode_handle * (*graph_get_port_parent)(struct fwnode_handle *); + int (*graph_parse_endpoint)(const struct fwnode_handle *, struct fwnode_endpoint *); + void * (*iomap)(struct fwnode_handle *, int); + int (*irq_get)(const struct fwnode_handle *, unsigned int); + int (*add_links)(struct fwnode_handle *); +}; + +struct fwnode_endpoint { + unsigned int port; + unsigned int id; + const struct fwnode_handle *local_fwnode; +}; + +struct fwnode_reference_args { + struct fwnode_handle *fwnode; + unsigned int nargs; + u64 args[16]; +}; + +enum memblock_flags { + MEMBLOCK_NONE = 0, + MEMBLOCK_HOTPLUG = 1, + MEMBLOCK_MIRROR = 2, + MEMBLOCK_NOMAP = 4, + MEMBLOCK_DRIVER_MANAGED = 8, + MEMBLOCK_RSRV_NOINIT = 16, + MEMBLOCK_RSRV_KERN = 32, + MEMBLOCK_KHO_SCRATCH = 64, +}; + +struct blk_zone { + __u64 start; + __u64 len; + __u64 wp; + __u8 type; + __u8 cond; + __u8 non_seq; + __u8 reset; + __u8 resv[4]; + __u64 capacity; + __u8 reserved[24]; +}; + +typedef int (*report_zones_cb)(struct blk_zone *, unsigned int, void *); + +enum blk_unique_id { + BLK_UID_T10 = 1, + BLK_UID_EUI64 = 2, + BLK_UID_NAA = 3, +}; + +struct hd_geometry; + +struct pr_ops; + +struct block_device_operations { + void (*submit_bio)(struct bio *); + int (*poll_bio)(struct bio *, struct io_comp_batch *, unsigned int); + int (*open)(struct gendisk *, blk_mode_t); + void (*release)(struct gendisk *); + int (*ioctl)(struct block_device *, blk_mode_t, unsigned int, long unsigned int); + int (*compat_ioctl)(struct block_device *, blk_mode_t, unsigned int, long unsigned int); + unsigned int (*check_events)(struct gendisk *, unsigned int); + void (*unlock_native_capacity)(struct gendisk *); + int (*getgeo)(struct block_device *, struct hd_geometry *); + int (*set_read_only)(struct block_device *, bool); + void (*free_disk)(struct gendisk *); + void (*swap_slot_free_notify)(struct block_device *, long unsigned int); + int (*report_zones)(struct gendisk *, sector_t, unsigned int, report_zones_cb, void *); + char * (*devnode)(struct gendisk *, umode_t *); + int (*get_unique_id)(struct gendisk *, u8 *, enum blk_unique_id); + struct module *owner; + const struct pr_ops *pr_ops; + int (*alternative_gpt_sector)(struct gendisk *, sector_t *); +}; + +struct blk_independent_access_range { + struct kobject kobj; + sector_t sector; + sector_t nr_sectors; +}; + +struct blk_independent_access_ranges { + struct kobject kobj; + bool sysfs_registered; + unsigned int nr_ia_ranges; + struct blk_independent_access_range ia_range[0]; +}; + +enum blk_eh_timer_return { + BLK_EH_DONE = 0, + BLK_EH_RESET_TIMER = 1, +}; + +struct blk_mq_hw_ctx; + +struct blk_mq_queue_data; + +struct blk_mq_ops { + blk_status_t (*queue_rq)(struct blk_mq_hw_ctx *, const struct blk_mq_queue_data *); + void (*commit_rqs)(struct blk_mq_hw_ctx *); + void (*queue_rqs)(struct rq_list *); + int (*get_budget)(struct request_queue *); + void (*put_budget)(struct request_queue *, int); + void (*set_rq_budget_token)(struct request *, int); + int (*get_rq_budget_token)(struct request *); + enum blk_eh_timer_return (*timeout)(struct request *); + int (*poll)(struct blk_mq_hw_ctx *, struct io_comp_batch *); + void (*complete)(struct request *); + int (*init_hctx)(struct blk_mq_hw_ctx *, void *, unsigned int); + void (*exit_hctx)(struct blk_mq_hw_ctx *, unsigned int); + int (*init_request)(struct blk_mq_tag_set *, struct request *, unsigned int, unsigned int); + void (*exit_request)(struct blk_mq_tag_set *, struct request *, unsigned int); + void (*cleanup_rq)(struct request *); + bool (*busy)(struct request_queue *); + void (*map_queues)(struct blk_mq_tag_set *); + void (*show_rq)(struct seq_file *, struct request *); +}; + +enum pr_type { + PR_WRITE_EXCLUSIVE = 1, + PR_EXCLUSIVE_ACCESS = 2, + PR_WRITE_EXCLUSIVE_REG_ONLY = 3, + PR_EXCLUSIVE_ACCESS_REG_ONLY = 4, + PR_WRITE_EXCLUSIVE_ALL_REGS = 5, + PR_EXCLUSIVE_ACCESS_ALL_REGS = 6, +}; + +struct pr_keys; + +struct pr_held_reservation; + +struct pr_ops { + int (*pr_register)(struct block_device *, u64, u64, u32); + int (*pr_reserve)(struct block_device *, u64, enum pr_type, u32); + int (*pr_release)(struct block_device *, u64, enum pr_type); + int (*pr_preempt)(struct block_device *, u64, u64, enum pr_type, bool); + int (*pr_clear)(struct block_device *, u64); + int (*pr_read_keys)(struct block_device *, struct pr_keys *); + int (*pr_read_reservation)(struct block_device *, struct pr_held_reservation *); +}; + +struct hash { + int ino; + int minor; + int major; + umode_t mode; + struct hash *next; + char name[4098]; +}; + +struct dir_entry { + struct list_head list; + time64_t mtime; + char name[0]; +}; + +enum state { + Start = 0, + Collect = 1, + GotHeader = 2, + SkipIt = 3, + GotName = 4, + CopyFile = 5, + GotSymlink = 6, + Reset = 7, +}; + +typedef int (*decompress_fn)(unsigned char *, long int, long int (*)(void *, long unsigned int), long int (*)(void *, long unsigned int), unsigned char *, long int *, void (*)(char *)); + +typedef __u16 __be16; + +typedef __u32 __be32; + +typedef __u32 __wsum; + +struct rhashtable; + +struct rhashtable_compare_arg { + struct rhashtable *ht; + const void *key; +}; + +typedef u32 (*rht_hashfn_t)(const void *, u32, u32); + +typedef u32 (*rht_obj_hashfn_t)(const void *, u32, u32); + +typedef int (*rht_obj_cmpfn_t)(struct rhashtable_compare_arg *, const void *); + +struct rhashtable_params { + u16 nelem_hint; + u16 key_len; + u16 key_offset; + u16 head_offset; + unsigned int max_size; + u16 min_size; + bool automatic_shrinking; + rht_hashfn_t hashfn; + rht_obj_hashfn_t obj_hashfn; + rht_obj_cmpfn_t obj_cmpfn; +}; + +struct bucket_table; + +struct rhashtable { + struct bucket_table *tbl; + unsigned int key_len; + unsigned int max_elems; + struct rhashtable_params p; + bool rhlist; + struct work_struct run_work; + struct mutex mutex; + spinlock_t lock; + atomic_t nelems; +}; + +enum scx_public_consts { + SCX_OPS_NAME_LEN = 128ULL, + SCX_SLICE_DFL = 20000000ULL, + SCX_SLICE_INF = 18446744073709551615ULL, +}; + +enum scx_dsq_id_flags { + SCX_DSQ_FLAG_BUILTIN = 9223372036854775808ULL, + SCX_DSQ_FLAG_LOCAL_ON = 4611686018427387904ULL, + SCX_DSQ_INVALID = 9223372036854775808ULL, + SCX_DSQ_GLOBAL = 9223372036854775809ULL, + SCX_DSQ_LOCAL = 9223372036854775810ULL, + SCX_DSQ_LOCAL_ON = 13835058055282163712ULL, + SCX_DSQ_LOCAL_CPU_MASK = 4294967295ULL, +}; + +struct ref_tracker_dir {}; + +struct notifier_block; + +struct raw_notifier_head { + struct notifier_block *head; +}; + +struct prot_inuse; + +struct netns_core { + struct ctl_table_header *sysctl_hdr; + int sysctl_somaxconn; + int sysctl_optmem_max; + u8 sysctl_txrehash; + u8 sysctl_tstamp_allow_data; + struct prot_inuse *prot_inuse; + struct cpumask *rps_default_mask; +}; + +struct ipstats_mib; + +struct tcp_mib; + +struct linux_mib; + +struct udp_mib; + +struct linux_xfrm_mib; + +struct linux_tls_mib; + +struct mptcp_mib; + +struct icmp_mib; + +struct icmpmsg_mib; + +struct icmpv6_mib; + +struct icmpv6msg_mib; + +struct proc_dir_entry; + +struct netns_mib { + struct ipstats_mib *ip_statistics; + struct ipstats_mib *ipv6_statistics; + struct tcp_mib *tcp_statistics; + struct linux_mib *net_statistics; + struct udp_mib *udp_statistics; + struct udp_mib *udp_stats_in6; + struct linux_xfrm_mib *xfrm_statistics; + struct linux_tls_mib *tls_statistics; + struct mptcp_mib *mptcp_statistics; + struct udp_mib *udplite_statistics; + struct udp_mib *udplite_stats_in6; + struct icmp_mib *icmp_statistics; + struct icmpmsg_mib *icmpmsg_statistics; + struct icmpv6_mib *icmpv6_statistics; + struct icmpv6msg_mib *icmpv6msg_statistics; + struct proc_dir_entry *proc_net_devsnmp6; +}; + +struct netns_packet { + struct mutex sklist_lock; + struct hlist_head sklist; +}; + +struct unix_table { + spinlock_t *locks; + struct hlist_head *buckets; +}; + +struct netns_unix { + struct unix_table table; + int sysctl_max_dgram_qlen; + struct ctl_table_header *ctl; +}; + +struct blocking_notifier_head { + struct rw_semaphore rwsem; + struct notifier_block *head; +}; + +struct netns_nexthop { + struct rb_root rb_root; + struct hlist_head *devhash; + unsigned int seq; + u32 last_id_allocated; + struct blocking_notifier_head notifier_chain; +}; + +struct inet_hashinfo; + +struct inet_timewait_death_row { + refcount_t tw_refcount; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct inet_hashinfo *hashinfo; + int sysctl_max_tw_buckets; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct udp_tunnel_gro { + struct sock *sk; + struct hlist_head list; +}; + +struct local_ports { + u32 range; + bool warned; +}; + +struct ping_group_range { + seqlock_t lock; + kgid_t range[2]; +}; + +struct sysctl_fib_multipath_hash_seed { + u32 user_seed; + u32 mp_seed; +}; + +typedef struct { + u64 key[2]; +} siphash_key_t; + +struct udp_table; + +struct ipv4_devconf; + +struct ip_ra_chain; + +struct fib_rules_ops; + +struct fib_table; + +struct inet_peer_base; + +struct fqdir; + +struct tcp_congestion_ops; + +struct tcp_fastopen_context; + +struct mr_table; + +struct fib_notifier_ops; + +struct netns_ipv4 { + __u8 __cacheline_group_begin__netns_ipv4_read_tx[0]; + u8 sysctl_tcp_early_retrans; + u8 sysctl_tcp_tso_win_divisor; + u8 sysctl_tcp_tso_rtt_log; + u8 sysctl_tcp_autocorking; + int sysctl_tcp_min_snd_mss; + unsigned int sysctl_tcp_notsent_lowat; + int sysctl_tcp_limit_output_bytes; + int sysctl_tcp_min_rtt_wlen; + int sysctl_tcp_wmem[3]; + u8 sysctl_ip_fwd_use_pmtu; + __u8 __cacheline_group_end__netns_ipv4_read_tx[0]; + __u8 __cacheline_group_begin__netns_ipv4_read_txrx[0]; + u8 sysctl_tcp_moderate_rcvbuf; + __u8 __cacheline_group_end__netns_ipv4_read_txrx[0]; + __u8 __cacheline_group_begin__netns_ipv4_read_rx[0]; + u8 sysctl_ip_early_demux; + u8 sysctl_tcp_early_demux; + u8 sysctl_tcp_l3mdev_accept; + int sysctl_tcp_reordering; + int sysctl_tcp_rmem[3]; + __u8 __cacheline_group_end__netns_ipv4_read_rx[0]; + long: 64; + struct inet_timewait_death_row tcp_death_row; + struct udp_table *udp_table; + struct udp_tunnel_gro udp_tunnel_gro[2]; + struct ctl_table_header *forw_hdr; + struct ctl_table_header *frags_hdr; + struct ctl_table_header *ipv4_hdr; + struct ctl_table_header *route_hdr; + struct ctl_table_header *xfrm4_hdr; + struct ipv4_devconf *devconf_all; + struct ipv4_devconf *devconf_dflt; + struct ip_ra_chain *ra_chain; + struct mutex ra_mutex; + struct fib_rules_ops *rules_ops; + struct fib_table *fib_main; + struct fib_table *fib_default; + unsigned int fib_rules_require_fldissect; + bool fib_has_custom_rules; + bool fib_has_custom_local_routes; + bool fib_offload_disabled; + u8 sysctl_tcp_shrink_window; + atomic_t fib_num_tclassid_users; + struct hlist_head *fib_table_hash; + struct sock *fibnl; + struct hlist_head *fib_info_hash; + unsigned int fib_info_hash_bits; + unsigned int fib_info_cnt; + struct sock *mc_autojoin_sk; + struct inet_peer_base *peers; + struct fqdir *fqdir; + u8 sysctl_icmp_echo_ignore_all; + u8 sysctl_icmp_echo_enable_probe; + u8 sysctl_icmp_echo_ignore_broadcasts; + u8 sysctl_icmp_ignore_bogus_error_responses; + u8 sysctl_icmp_errors_use_inbound_ifaddr; + int sysctl_icmp_ratelimit; + int sysctl_icmp_ratemask; + int sysctl_icmp_msgs_per_sec; + int sysctl_icmp_msgs_burst; + atomic_t icmp_global_credit; + u32 icmp_global_stamp; + u32 ip_rt_min_pmtu; + int ip_rt_mtu_expires; + int ip_rt_min_advmss; + struct local_ports ip_local_ports; + u8 sysctl_tcp_ecn; + u8 sysctl_tcp_ecn_fallback; + u8 sysctl_ip_default_ttl; + u8 sysctl_ip_no_pmtu_disc; + u8 sysctl_ip_fwd_update_priority; + u8 sysctl_ip_nonlocal_bind; + u8 sysctl_ip_autobind_reuse; + u8 sysctl_ip_dynaddr; + u8 sysctl_raw_l3mdev_accept; + u8 sysctl_udp_early_demux; + u8 sysctl_nexthop_compat_mode; + u8 sysctl_fwmark_reflect; + u8 sysctl_tcp_fwmark_accept; + u8 sysctl_tcp_mtu_probing; + int sysctl_tcp_mtu_probe_floor; + int sysctl_tcp_base_mss; + int sysctl_tcp_probe_threshold; + u32 sysctl_tcp_probe_interval; + int sysctl_tcp_keepalive_time; + int sysctl_tcp_keepalive_intvl; + u8 sysctl_tcp_keepalive_probes; + u8 sysctl_tcp_syn_retries; + u8 sysctl_tcp_synack_retries; + u8 sysctl_tcp_syncookies; + u8 sysctl_tcp_migrate_req; + u8 sysctl_tcp_comp_sack_nr; + u8 sysctl_tcp_backlog_ack_defer; + u8 sysctl_tcp_pingpong_thresh; + u8 sysctl_tcp_retries1; + u8 sysctl_tcp_retries2; + u8 sysctl_tcp_orphan_retries; + u8 sysctl_tcp_tw_reuse; + unsigned int sysctl_tcp_tw_reuse_delay; + int sysctl_tcp_fin_timeout; + u8 sysctl_tcp_sack; + u8 sysctl_tcp_window_scaling; + u8 sysctl_tcp_timestamps; + int sysctl_tcp_rto_min_us; + int sysctl_tcp_rto_max_ms; + u8 sysctl_tcp_recovery; + u8 sysctl_tcp_thin_linear_timeouts; + u8 sysctl_tcp_slow_start_after_idle; + u8 sysctl_tcp_retrans_collapse; + u8 sysctl_tcp_stdurg; + u8 sysctl_tcp_rfc1337; + u8 sysctl_tcp_abort_on_overflow; + u8 sysctl_tcp_fack; + int sysctl_tcp_max_reordering; + int sysctl_tcp_adv_win_scale; + u8 sysctl_tcp_dsack; + u8 sysctl_tcp_app_win; + u8 sysctl_tcp_frto; + u8 sysctl_tcp_nometrics_save; + u8 sysctl_tcp_no_ssthresh_metrics_save; + u8 sysctl_tcp_workaround_signed_windows; + int sysctl_tcp_challenge_ack_limit; + u8 sysctl_tcp_min_tso_segs; + u8 sysctl_tcp_reflect_tos; + int sysctl_tcp_invalid_ratelimit; + int sysctl_tcp_pacing_ss_ratio; + int sysctl_tcp_pacing_ca_ratio; + unsigned int sysctl_tcp_child_ehash_entries; + long unsigned int sysctl_tcp_comp_sack_delay_ns; + long unsigned int sysctl_tcp_comp_sack_slack_ns; + int sysctl_max_syn_backlog; + int sysctl_tcp_fastopen; + const struct tcp_congestion_ops *tcp_congestion_control; + struct tcp_fastopen_context *tcp_fastopen_ctx; + unsigned int sysctl_tcp_fastopen_blackhole_timeout; + atomic_t tfo_active_disable_times; + long unsigned int tfo_active_disable_stamp; + u32 tcp_challenge_timestamp; + u32 tcp_challenge_count; + u8 sysctl_tcp_plb_enabled; + u8 sysctl_tcp_plb_idle_rehash_rounds; + u8 sysctl_tcp_plb_rehash_rounds; + u8 sysctl_tcp_plb_suspend_rto_sec; + int sysctl_tcp_plb_cong_thresh; + int sysctl_udp_wmem_min; + int sysctl_udp_rmem_min; + u8 sysctl_fib_notify_on_flag_change; + u8 sysctl_tcp_syn_linear_timeouts; + u8 sysctl_udp_l3mdev_accept; + u8 sysctl_igmp_llm_reports; + int sysctl_igmp_max_memberships; + int sysctl_igmp_max_msf; + int sysctl_igmp_qrv; + struct ping_group_range ping_group_range; + atomic_t dev_addr_genid; + unsigned int sysctl_udp_child_hash_entries; + long unsigned int *sysctl_local_reserved_ports; + int sysctl_ip_prot_sock; + struct mr_table *mrt; + struct sysctl_fib_multipath_hash_seed sysctl_fib_multipath_hash_seed; + u32 sysctl_fib_multipath_hash_fields; + u8 sysctl_fib_multipath_use_neigh; + u8 sysctl_fib_multipath_hash_policy; + struct fib_notifier_ops *notifier_ops; + unsigned int fib_seq; + struct fib_notifier_ops *ipmr_notifier_ops; + unsigned int ipmr_seq; + atomic_t rt_genid; + siphash_key_t ip_id_key; + struct hlist_head *inet_addr_lst; + struct delayed_work addr_chk_work; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct dst_entry; + +struct sk_buff; + +struct neighbour; + +struct dst_ops { + short unsigned int family; + unsigned int gc_thresh; + void (*gc)(struct dst_ops *); + struct dst_entry * (*check)(struct dst_entry *, __u32); + unsigned int (*default_advmss)(const struct dst_entry *); + unsigned int (*mtu)(const struct dst_entry *); + u32 * (*cow_metrics)(struct dst_entry *, long unsigned int); + void (*destroy)(struct dst_entry *); + void (*ifdown)(struct dst_entry *, struct net_device *); + void (*negative_advice)(struct sock *, struct dst_entry *); + void (*link_failure)(struct sk_buff *); + void (*update_pmtu)(struct dst_entry *, struct sock *, struct sk_buff *, u32, bool); + void (*redirect)(struct dst_entry *, struct sock *, struct sk_buff *); + int (*local_out)(struct net *, struct sock *, struct sk_buff *); + struct neighbour * (*neigh_lookup)(const struct dst_entry *, struct sk_buff *, const void *); + void (*confirm_neigh)(const struct dst_entry *, const void *); + struct kmem_cache *kmem_cachep; + struct percpu_counter pcpuc_entries; + long: 64; + long: 64; + long: 64; +}; + +struct netns_sysctl_ipv6 { + struct ctl_table_header *hdr; + struct ctl_table_header *route_hdr; + struct ctl_table_header *icmp_hdr; + struct ctl_table_header *frags_hdr; + struct ctl_table_header *xfrm6_hdr; + int flush_delay; + int ip6_rt_max_size; + int ip6_rt_gc_min_interval; + int ip6_rt_gc_timeout; + int ip6_rt_gc_interval; + int ip6_rt_gc_elasticity; + int ip6_rt_mtu_expires; + int ip6_rt_min_advmss; + u32 multipath_hash_fields; + u8 multipath_hash_policy; + u8 bindv6only; + u8 flowlabel_consistency; + u8 auto_flowlabels; + int icmpv6_time; + u8 icmpv6_echo_ignore_all; + u8 icmpv6_echo_ignore_multicast; + u8 icmpv6_echo_ignore_anycast; + long unsigned int icmpv6_ratemask[4]; + long unsigned int *icmpv6_ratemask_ptr; + u8 anycast_src_echo_reply; + u8 ip_nonlocal_bind; + u8 fwmark_reflect; + u8 flowlabel_state_ranges; + int idgen_retries; + int idgen_delay; + int flowlabel_reflect; + int max_dst_opts_cnt; + int max_hbh_opts_cnt; + int max_dst_opts_len; + int max_hbh_opts_len; + int seg6_flowlabel; + u32 ioam6_id; + u64 ioam6_id_wide; + u8 skip_notify_on_dev_down; + u8 fib_notify_on_flag_change; + u8 icmpv6_error_anycast_as_unicast; +}; + +struct ipv6_devconf; + +struct fib6_info; + +struct rt6_info; + +struct rt6_statistics; + +struct fib6_table; + +struct seg6_pernet_data; + +struct ioam6_pernet_data; + +struct netns_ipv6 { + struct dst_ops ip6_dst_ops; + struct netns_sysctl_ipv6 sysctl; + struct ipv6_devconf *devconf_all; + struct ipv6_devconf *devconf_dflt; + struct inet_peer_base *peers; + struct fqdir *fqdir; + struct fib6_info *fib6_null_entry; + struct rt6_info *ip6_null_entry; + struct rt6_statistics *rt6_stats; + struct timer_list ip6_fib_timer; + struct hlist_head *fib_table_hash; + spinlock_t fib_table_hash_lock; + struct fib6_table *fib6_main_tbl; + struct list_head fib6_walkers; + rwlock_t fib6_walker_lock; + spinlock_t fib6_gc_lock; + atomic_t ip6_rt_gc_expire; + long unsigned int ip6_rt_last_gc; + unsigned char flowlabel_has_excl; + bool fib6_has_custom_rules; + unsigned int fib6_rules_require_fldissect; + unsigned int fib6_routes_require_src; + struct rt6_info *ip6_prohibit_entry; + struct rt6_info *ip6_blk_hole_entry; + struct fib6_table *fib6_local_tbl; + struct fib_rules_ops *fib6_rules_ops; + struct sock *ndisc_sk; + struct sock *tcp_sk; + struct sock *igmp_sk; + struct sock *mc_autojoin_sk; + struct hlist_head *inet6_addr_lst; + spinlock_t addrconf_hash_lock; + struct delayed_work addr_chk_work; + struct list_head mr6_tables; + struct fib_rules_ops *mr6_rules_ops; + atomic_t dev_addr_genid; + atomic_t fib6_sernum; + struct seg6_pernet_data *seg6_data; + struct fib_notifier_ops *notifier_ops; + struct fib_notifier_ops *ip6mr_notifier_ops; + unsigned int ipmr_seq; + struct { + struct hlist_head head; + spinlock_t lock; + u32 seq; + } ip6addrlbl_table; + struct ioam6_pernet_data *ioam6_data; + long: 64; + long: 64; + long: 64; +}; + +struct netns_sysctl_lowpan { + struct ctl_table_header *frags_hdr; +}; + +struct netns_ieee802154_lowpan { + struct netns_sysctl_lowpan sysctl; + struct fqdir *fqdir; +}; + +struct sctp_mib; + +struct netns_sctp { + struct sctp_mib *sctp_statistics; + struct proc_dir_entry *proc_net_sctp; + struct ctl_table_header *sysctl_header; + struct sock *ctl_sock; + struct sock *udp4_sock; + struct sock *udp6_sock; + int udp_port; + int encap_port; + struct list_head local_addr_list; + struct list_head addr_waitq; + struct timer_list addr_wq_timer; + struct list_head auto_asconf_splist; + spinlock_t addr_wq_lock; + spinlock_t local_addr_lock; + unsigned int rto_initial; + unsigned int rto_min; + unsigned int rto_max; + int rto_alpha; + int rto_beta; + int max_burst; + int cookie_preserve_enable; + char *sctp_hmac_alg; + unsigned int valid_cookie_life; + unsigned int sack_timeout; + unsigned int hb_interval; + unsigned int probe_interval; + int max_retrans_association; + int max_retrans_path; + int max_retrans_init; + int pf_retrans; + int ps_retrans; + int pf_enable; + int pf_expose; + int sndbuf_policy; + int rcvbuf_policy; + int default_auto_asconf; + int addip_enable; + int addip_noauth; + int prsctp_enable; + int reconf_enable; + int auth_enable; + int intl_enable; + int ecn_enable; + int scope_policy; + int rwnd_upd_shift; + long unsigned int max_autoclose; + int l3mdev_accept; +}; + +struct nf_logger; + +struct nf_hook_entries; + +struct netns_nf { + struct proc_dir_entry *proc_netfilter; + const struct nf_logger *nf_loggers[11]; + struct ctl_table_header *nf_log_dir_header; + struct ctl_table_header *nf_lwtnl_dir_header; + struct nf_hook_entries *hooks_ipv4[5]; + struct nf_hook_entries *hooks_ipv6[5]; + struct nf_hook_entries *hooks_arp[3]; + struct nf_hook_entries *hooks_bridge[5]; + unsigned int defrag_ipv4_users; + unsigned int defrag_ipv6_users; +}; + +struct nf_generic_net { + unsigned int timeout; +}; + +struct nf_tcp_net { + unsigned int timeouts[14]; + u8 tcp_loose; + u8 tcp_be_liberal; + u8 tcp_max_retrans; + u8 tcp_ignore_invalid_rst; + unsigned int offload_timeout; +}; + +struct nf_udp_net { + unsigned int timeouts[2]; + unsigned int offload_timeout; +}; + +struct nf_icmp_net { + unsigned int timeout; +}; + +struct nf_sctp_net { + unsigned int timeouts[10]; +}; + +struct nf_gre_net { + struct list_head keymap_list; + unsigned int timeouts[2]; +}; + +struct nf_ip_net { + struct nf_generic_net generic; + struct nf_tcp_net tcp; + struct nf_udp_net udp; + struct nf_icmp_net icmp; + struct nf_icmp_net icmpv6; + struct nf_sctp_net sctp; + struct nf_gre_net gre; +}; + +struct ip_conntrack_stat; + +struct nf_ct_event_notifier; + +struct netns_ct { + bool ecache_dwork_pending; + u8 sysctl_log_invalid; + u8 sysctl_events; + u8 sysctl_acct; + u8 sysctl_tstamp; + u8 sysctl_checksum; + struct ip_conntrack_stat *stat; + struct nf_ct_event_notifier *nf_conntrack_event_cb; + struct nf_ip_net nf_ct_proto; + atomic_t labels_used; +}; + +struct netns_nftables { + unsigned int base_seq; + u8 gencursor; +}; + +struct nf_flow_table_stat; + +struct netns_ft { + struct nf_flow_table_stat *stat; +}; + +struct sk_buff_list { + struct sk_buff *next; + struct sk_buff *prev; +}; + +struct sk_buff_head { + union { + struct { + struct sk_buff *next; + struct sk_buff *prev; + }; + struct sk_buff_list list; + }; + __u32 qlen; + spinlock_t lock; +}; + +struct netns_bpf { + struct bpf_prog_array *run_array[2]; + struct bpf_prog *progs[2]; + struct list_head links[2]; +}; + +struct xfrm_policy_hash { + struct hlist_head *table; + unsigned int hmask; + u8 dbits4; + u8 sbits4; + u8 dbits6; + u8 sbits6; +}; + +struct xfrm_policy_hthresh { + struct work_struct work; + seqlock_t lock; + u8 lbits4; + u8 rbits4; + u8 lbits6; + u8 rbits6; +}; + +struct netns_xfrm { + struct list_head state_all; + struct hlist_head *state_bydst; + struct hlist_head *state_bysrc; + struct hlist_head *state_byspi; + struct hlist_head *state_byseq; + struct hlist_head *state_cache_input; + unsigned int state_hmask; + unsigned int state_num; + struct work_struct state_hash_work; + struct list_head policy_all; + struct hlist_head *policy_byidx; + unsigned int policy_idx_hmask; + unsigned int idx_generator; + struct xfrm_policy_hash policy_bydst[3]; + unsigned int policy_count[6]; + struct work_struct policy_hash_work; + struct xfrm_policy_hthresh policy_hthresh; + struct list_head inexact_bins; + struct sock *nlsk; + struct sock *nlsk_stash; + u32 sysctl_aevent_etime; + u32 sysctl_aevent_rseqth; + int sysctl_larval_drop; + u32 sysctl_acq_expires; + u8 policy_default[3]; + struct ctl_table_header *sysctl_hdr; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct dst_ops xfrm4_dst_ops; + struct dst_ops xfrm6_dst_ops; + spinlock_t xfrm_state_lock; + seqcount_spinlock_t xfrm_state_hash_generation; + seqcount_spinlock_t xfrm_policy_hash_generation; + spinlock_t xfrm_policy_lock; + struct mutex xfrm_cfg_mutex; + struct delayed_work nat_keepalive_work; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct netns_ipvs; + +struct mpls_route; + +struct netns_mpls { + int ip_ttl_propagate; + int default_ttl; + size_t platform_labels; + struct mpls_route **platform_label; + struct ctl_table_header *ctl; +}; + +struct can_dev_rcv_lists; + +struct can_pkg_stats; + +struct can_rcv_lists_stats; + +struct netns_can { + struct proc_dir_entry *proc_dir; + struct proc_dir_entry *pde_stats; + struct proc_dir_entry *pde_reset_stats; + struct proc_dir_entry *pde_rcvlist_all; + struct proc_dir_entry *pde_rcvlist_fil; + struct proc_dir_entry *pde_rcvlist_inv; + struct proc_dir_entry *pde_rcvlist_sff; + struct proc_dir_entry *pde_rcvlist_eff; + struct proc_dir_entry *pde_rcvlist_err; + struct proc_dir_entry *bcmproc_dir; + struct can_dev_rcv_lists *rx_alldev_list; + spinlock_t rcvlists_lock; + struct timer_list stattimer; + struct can_pkg_stats *pkg_stats; + struct can_rcv_lists_stats *rcv_lists_stats; + struct hlist_head cgw_list; +}; + +struct netns_xdp { + struct mutex lock; + struct hlist_head list; +}; + +struct netns_mctp { + struct list_head routes; + struct mutex bind_lock; + struct hlist_head binds[128]; + spinlock_t keys_lock; + struct hlist_head keys; + unsigned int default_net; + struct mutex neigh_lock; + struct list_head neighbours; +}; + +struct smc_stats; + +struct smc_stats_rsn; + +struct netns_smc { + struct smc_stats *smc_stats; + struct mutex mutex_fback_rsn; + struct smc_stats_rsn *fback_rsn; + bool limit_smc_hs; + struct ctl_table_header *smc_hdr; + unsigned int sysctl_autocorking_size; + unsigned int sysctl_smcr_buf_type; + int sysctl_smcr_testlink_time; + int sysctl_wmem; + int sysctl_rmem; + int sysctl_max_links_per_lgr; + int sysctl_max_conns_per_lgr; +}; + +struct uevent_sock; + +struct net_generic; + +struct net { + refcount_t passive; + spinlock_t rules_mod_lock; + unsigned int dev_base_seq; + u32 ifindex; + spinlock_t nsid_lock; + atomic_t fnhe_genid; + struct list_head list; + struct list_head exit_list; + struct llist_node defer_free_list; + struct llist_node cleanup_list; + struct list_head ptype_all; + struct list_head ptype_specific; + struct key_tag *key_domain; + struct user_namespace *user_ns; + struct ucounts *ucounts; + struct idr netns_ids; + struct ns_common ns; + struct ref_tracker_dir refcnt_tracker; + struct ref_tracker_dir notrefcnt_tracker; + struct list_head dev_base_head; + struct proc_dir_entry *proc_net; + struct proc_dir_entry *proc_net_stat; + struct ctl_table_set sysctls; + struct sock *rtnl; + struct sock *genl_sock; + struct uevent_sock *uevent_sock; + struct hlist_head *dev_name_head; + struct hlist_head *dev_index_head; + struct xarray dev_by_index; + struct raw_notifier_head netdev_chain; + u32 hash_mix; + struct net_device *loopback_dev; + struct list_head rules_ops; + struct netns_core core; + struct netns_mib mib; + struct netns_packet packet; + struct netns_unix unx; + struct netns_nexthop nexthop; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct netns_ipv4 ipv4; + struct netns_ipv6 ipv6; + struct netns_ieee802154_lowpan ieee802154_lowpan; + struct netns_sctp sctp; + struct netns_nf nf; + struct netns_ct ct; + struct netns_nftables nft; + struct netns_ft ft; + struct sk_buff_head wext_nlevents; + struct net_generic *gen; + struct netns_bpf bpf; + long: 64; + long: 64; + struct netns_xfrm xfrm; + u64 net_cookie; + struct netns_ipvs *ipvs; + struct netns_mpls mpls; + struct netns_can can; + struct netns_xdp xdp; + struct netns_mctp mctp; + struct sock *crypto_nlsk; + struct sock *diag_nlsk; + struct netns_smc smc; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +typedef int (*notifier_fn_t)(struct notifier_block *, long unsigned int, void *); + +struct notifier_block { + notifier_fn_t notifier_call; + struct notifier_block *next; + int priority; +}; + +typedef unsigned int sk_buff_data_t; + +struct skb_ext; + +struct sk_buff { + union { + struct { + struct sk_buff *next; + struct sk_buff *prev; + union { + struct net_device *dev; + long unsigned int dev_scratch; + }; + }; + struct rb_node rbnode; + struct list_head list; + struct llist_node ll_node; + }; + struct sock *sk; + union { + ktime_t tstamp; + u64 skb_mstamp_ns; + }; + char cb[48]; + union { + struct { + long unsigned int _skb_refdst; + void (*destructor)(struct sk_buff *); + }; + struct list_head tcp_tsorted_anchor; + long unsigned int _sk_redir; + }; + long unsigned int _nfct; + unsigned int len; + unsigned int data_len; + __u16 mac_len; + __u16 hdr_len; + __u16 queue_mapping; + __u8 __cloned_offset[0]; + __u8 cloned: 1; + __u8 nohdr: 1; + __u8 fclone: 2; + __u8 peeked: 1; + __u8 head_frag: 1; + __u8 pfmemalloc: 1; + __u8 pp_recycle: 1; + __u8 active_extensions; + union { + struct { + __u8 __pkt_type_offset[0]; + __u8 pkt_type: 3; + __u8 ignore_df: 1; + __u8 dst_pending_confirm: 1; + __u8 ip_summed: 2; + __u8 ooo_okay: 1; + __u8 __mono_tc_offset[0]; + __u8 tstamp_type: 2; + __u8 tc_at_ingress: 1; + __u8 tc_skip_classify: 1; + __u8 remcsum_offload: 1; + __u8 csum_complete_sw: 1; + __u8 csum_level: 2; + __u8 inner_protocol_type: 1; + __u8 l4_hash: 1; + __u8 sw_hash: 1; + __u8 wifi_acked_valid: 1; + __u8 wifi_acked: 1; + __u8 no_fcs: 1; + __u8 encapsulation: 1; + __u8 encap_hdr_csum: 1; + __u8 csum_valid: 1; + __u8 ndisc_nodetype: 2; + __u8 ipvs_property: 1; + __u8 nf_trace: 1; + __u8 offload_fwd_mark: 1; + __u8 offload_l3_fwd_mark: 1; + __u8 redirected: 1; + __u8 from_ingress: 1; + __u8 nf_skip_egress: 1; + __u8 decrypted: 1; + __u8 slow_gro: 1; + __u8 csum_not_inet: 1; + __u8 unreadable: 1; + __u16 tc_index; + u16 alloc_cpu; + union { + __wsum csum; + struct { + __u16 csum_start; + __u16 csum_offset; + }; + }; + __u32 priority; + int skb_iif; + __u32 hash; + union { + u32 vlan_all; + struct { + __be16 vlan_proto; + __u16 vlan_tci; + }; + }; + union { + unsigned int napi_id; + unsigned int sender_cpu; + }; + __u32 secmark; + union { + __u32 mark; + __u32 reserved_tailroom; + }; + union { + __be16 inner_protocol; + __u8 inner_ipproto; + }; + __u16 inner_transport_header; + __u16 inner_network_header; + __u16 inner_mac_header; + __be16 protocol; + __u16 transport_header; + __u16 network_header; + __u16 mac_header; + }; + struct { + __u8 __pkt_type_offset[0]; + __u8 pkt_type: 3; + __u8 ignore_df: 1; + __u8 dst_pending_confirm: 1; + __u8 ip_summed: 2; + __u8 ooo_okay: 1; + __u8 __mono_tc_offset[0]; + __u8 tstamp_type: 2; + __u8 tc_at_ingress: 1; + __u8 tc_skip_classify: 1; + __u8 remcsum_offload: 1; + __u8 csum_complete_sw: 1; + __u8 csum_level: 2; + __u8 inner_protocol_type: 1; + __u8 l4_hash: 1; + __u8 sw_hash: 1; + __u8 wifi_acked_valid: 1; + __u8 wifi_acked: 1; + __u8 no_fcs: 1; + __u8 encapsulation: 1; + __u8 encap_hdr_csum: 1; + __u8 csum_valid: 1; + __u8 ndisc_nodetype: 2; + __u8 ipvs_property: 1; + __u8 nf_trace: 1; + __u8 offload_fwd_mark: 1; + __u8 offload_l3_fwd_mark: 1; + __u8 redirected: 1; + __u8 from_ingress: 1; + __u8 nf_skip_egress: 1; + __u8 decrypted: 1; + __u8 slow_gro: 1; + __u8 csum_not_inet: 1; + __u8 unreadable: 1; + __u16 tc_index; + u16 alloc_cpu; + union { + __wsum csum; + struct { + __u16 csum_start; + __u16 csum_offset; + }; + }; + __u32 priority; + int skb_iif; + __u32 hash; + union { + u32 vlan_all; + struct { + __be16 vlan_proto; + __u16 vlan_tci; + }; + }; + union { + unsigned int napi_id; + unsigned int sender_cpu; + }; + __u32 secmark; + union { + __u32 mark; + __u32 reserved_tailroom; + }; + union { + __be16 inner_protocol; + __u8 inner_ipproto; + }; + __u16 inner_transport_header; + __u16 inner_network_header; + __u16 inner_mac_header; + __be16 protocol; + __u16 transport_header; + __u16 network_header; + __u16 mac_header; + } headers; + }; + sk_buff_data_t tail; + sk_buff_data_t end; + unsigned char *head; + unsigned char *data; + unsigned int truesize; + refcount_t users; + struct skb_ext *extensions; +}; + +struct in6_addr { + union { + __u8 u6_addr8[16]; + __be16 u6_addr16[8]; + __be32 u6_addr32[4]; + } in6_u; +}; + +struct ipstats_mib { + u64 mibs[38]; + struct u64_stats_sync syncp; +}; + +struct icmp_mib { + long unsigned int mibs[30]; +}; + +struct icmpmsg_mib { + atomic_long_t mibs[512]; +}; + +struct icmpv6_mib { + long unsigned int mibs[7]; +}; + +struct icmpv6msg_mib { + atomic_long_t mibs[512]; +}; + +struct tcp_mib { + long unsigned int mibs[16]; +}; + +struct udp_mib { + long unsigned int mibs[10]; +}; + +struct linux_mib { + long unsigned int mibs[136]; +}; + +struct linux_xfrm_mib { + long unsigned int mibs[33]; +}; + +struct linux_tls_mib { + long unsigned int mibs[18]; +}; + +struct inet_frags; + +struct fqdir { + long int high_thresh; + long int low_thresh; + int timeout; + int max_dist; + struct inet_frags *f; + struct net *net; + bool dead; + long: 64; + long: 64; + struct rhashtable rhashtable; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + atomic_long_t mem; + struct work_struct destroy_work; + struct llist_node free_list; + long: 64; + long: 64; +}; + +struct inet_frag_queue; + +struct inet_frags { + unsigned int qsize; + void (*constructor)(struct inet_frag_queue *, const void *); + void (*destructor)(struct inet_frag_queue *); + void (*frag_expire)(struct timer_list *); + struct kmem_cache *frags_cachep; + const char *frags_cache_name; + struct rhashtable_params rhash_params; + refcount_t refcnt; + struct completion completion; +}; + +struct frag_v4_compare_key { + __be32 saddr; + __be32 daddr; + u32 user; + u32 vif; + __be16 id; + u16 protocol; +}; + +struct frag_v6_compare_key { + struct in6_addr saddr; + struct in6_addr daddr; + u32 user; + __be32 id; + u32 iif; +}; + +struct inet_frag_queue { + struct rhash_head node; + union { + struct frag_v4_compare_key v4; + struct frag_v6_compare_key v6; + } key; + struct timer_list timer; + spinlock_t lock; + refcount_t refcnt; + struct rb_root rb_fragments; + struct sk_buff *fragments_tail; + struct sk_buff *last_run_head; + ktime_t stamp; + int len; + int meat; + u8 tstamp_type; + __u8 flags; + u16 max_size; + struct fqdir *fqdir; + struct callback_head rcu; +}; + +enum tcp_ca_event { + CA_EVENT_TX_START = 0, + CA_EVENT_CWND_RESTART = 1, + CA_EVENT_COMPLETE_CWR = 2, + CA_EVENT_LOSS = 3, + CA_EVENT_ECN_NO_CE = 4, + CA_EVENT_ECN_IS_CE = 5, +}; + +struct ack_sample; + +struct rate_sample; + +union tcp_cc_info; + +struct tcp_congestion_ops { + u32 (*ssthresh)(struct sock *); + void (*cong_avoid)(struct sock *, u32, u32); + void (*set_state)(struct sock *, u8); + void (*cwnd_event)(struct sock *, enum tcp_ca_event); + void (*in_ack_event)(struct sock *, u32); + void (*pkts_acked)(struct sock *, const struct ack_sample *); + u32 (*min_tso_segs)(struct sock *); + void (*cong_control)(struct sock *, u32, int, const struct rate_sample *); + u32 (*undo_cwnd)(struct sock *); + u32 (*sndbuf_expand)(struct sock *); + size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *); + char name[16]; + struct module *owner; + struct list_head list; + u32 key; + u32 flags; + void (*init)(struct sock *); + void (*release)(struct sock *); + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +typedef struct {} netdevice_tracker; + +struct xfrm_state; + +struct uncached_list; + +struct lwtunnel_state; + +struct dst_entry { + union { + struct net_device *dev; + struct net_device *dev_rcu; + }; + struct dst_ops *ops; + long unsigned int _metrics; + long unsigned int expires; + struct xfrm_state *xfrm; + int (*input)(struct sk_buff *); + int (*output)(struct net *, struct sock *, struct sk_buff *); + short unsigned int flags; + short int obsolete; + short unsigned int header_len; + short unsigned int trailer_len; + rcuref_t __rcuref; + int __use; + long unsigned int lastuse; + struct callback_head callback_head; + short int error; + short int __pad; + __u32 tclassid; + netdevice_tracker dev_tracker; + struct list_head rt_uncached; + struct uncached_list *rt_uncached_list; + struct lwtunnel_state *lwtstate; +}; + +enum nf_log_type { + NF_LOG_TYPE_LOG = 0, + NF_LOG_TYPE_ULOG = 1, + NF_LOG_TYPE_MAX = 2, +}; + +typedef u8 u_int8_t; + +struct nf_loginfo; + +typedef void nf_logfn(struct net *, u_int8_t, unsigned int, const struct sk_buff *, const struct net_device *, const struct net_device *, const struct nf_loginfo *, const char *); + +struct nf_logger { + char *name; + enum nf_log_type type; + nf_logfn *logfn; + struct module *me; +}; + +struct ip_conntrack_stat { + unsigned int found; + unsigned int invalid; + unsigned int insert; + unsigned int insert_failed; + unsigned int clash_resolve; + unsigned int drop; + unsigned int early_drop; + unsigned int error; + unsigned int expect_new; + unsigned int expect_create; + unsigned int expect_delete; + unsigned int search_restart; + unsigned int chaintoolong; +}; + +struct nf_flow_table_stat { + unsigned int count_wq_add; + unsigned int count_wq_del; + unsigned int count_wq_stats; +}; + +enum { + TCA_FLOWER_KEY_FLAGS_IS_FRAGMENT = 1, + TCA_FLOWER_KEY_FLAGS_FRAG_IS_FIRST = 2, + TCA_FLOWER_KEY_FLAGS_TUNNEL_CSUM = 4, + TCA_FLOWER_KEY_FLAGS_TUNNEL_DONT_FRAGMENT = 8, + TCA_FLOWER_KEY_FLAGS_TUNNEL_OAM = 16, + TCA_FLOWER_KEY_FLAGS_TUNNEL_CRIT_OPT = 32, + __TCA_FLOWER_KEY_FLAGS_MAX = 33, +}; + +enum flow_dissector_key_id { + FLOW_DISSECTOR_KEY_CONTROL = 0, + FLOW_DISSECTOR_KEY_BASIC = 1, + FLOW_DISSECTOR_KEY_IPV4_ADDRS = 2, + FLOW_DISSECTOR_KEY_IPV6_ADDRS = 3, + FLOW_DISSECTOR_KEY_PORTS = 4, + FLOW_DISSECTOR_KEY_PORTS_RANGE = 5, + FLOW_DISSECTOR_KEY_ICMP = 6, + FLOW_DISSECTOR_KEY_ETH_ADDRS = 7, + FLOW_DISSECTOR_KEY_TIPC = 8, + FLOW_DISSECTOR_KEY_ARP = 9, + FLOW_DISSECTOR_KEY_VLAN = 10, + FLOW_DISSECTOR_KEY_FLOW_LABEL = 11, + FLOW_DISSECTOR_KEY_GRE_KEYID = 12, + FLOW_DISSECTOR_KEY_MPLS_ENTROPY = 13, + FLOW_DISSECTOR_KEY_ENC_KEYID = 14, + FLOW_DISSECTOR_KEY_ENC_IPV4_ADDRS = 15, + FLOW_DISSECTOR_KEY_ENC_IPV6_ADDRS = 16, + FLOW_DISSECTOR_KEY_ENC_CONTROL = 17, + FLOW_DISSECTOR_KEY_ENC_PORTS = 18, + FLOW_DISSECTOR_KEY_MPLS = 19, + FLOW_DISSECTOR_KEY_TCP = 20, + FLOW_DISSECTOR_KEY_IP = 21, + FLOW_DISSECTOR_KEY_CVLAN = 22, + FLOW_DISSECTOR_KEY_ENC_IP = 23, + FLOW_DISSECTOR_KEY_ENC_OPTS = 24, + FLOW_DISSECTOR_KEY_META = 25, + FLOW_DISSECTOR_KEY_CT = 26, + FLOW_DISSECTOR_KEY_HASH = 27, + FLOW_DISSECTOR_KEY_NUM_OF_VLANS = 28, + FLOW_DISSECTOR_KEY_PPPOE = 29, + FLOW_DISSECTOR_KEY_L2TPV3 = 30, + FLOW_DISSECTOR_KEY_CFM = 31, + FLOW_DISSECTOR_KEY_IPSEC = 32, + FLOW_DISSECTOR_KEY_MAX = 33, +}; + +struct skb_ext { + refcount_t refcnt; + u8 offset[5]; + u8 chunks; + long: 0; + char data[0]; +}; + +enum skb_ext_id { + SKB_EXT_BRIDGE_NF = 0, + SKB_EXT_SEC_PATH = 1, + TC_SKB_EXT = 2, + SKB_EXT_MPTCP = 3, + SKB_EXT_MCTP = 4, + SKB_EXT_NUM = 5, +}; + +enum audit_ntp_type { + AUDIT_NTP_OFFSET = 0, + AUDIT_NTP_FREQ = 1, + AUDIT_NTP_STATUS = 2, + AUDIT_NTP_TAI = 3, + AUDIT_NTP_TICK = 4, + AUDIT_NTP_ADJUST = 5, + AUDIT_NTP_NVALS = 6, +}; + +enum cc_attr { + CC_ATTR_MEM_ENCRYPT = 0, + CC_ATTR_HOST_MEM_ENCRYPT = 1, + CC_ATTR_GUEST_MEM_ENCRYPT = 2, + CC_ATTR_GUEST_STATE_ENCRYPT = 3, + CC_ATTR_GUEST_UNROLL_STRING_IO = 4, + CC_ATTR_GUEST_SEV_SNP = 5, + CC_ATTR_GUEST_SNP_SECURE_TSC = 6, + CC_ATTR_HOST_SEV_SNP = 7, +}; + +enum { + UNAME26 = 131072, + ADDR_NO_RANDOMIZE = 262144, + FDPIC_FUNCPTRS = 524288, + MMAP_PAGE_ZERO = 1048576, + ADDR_COMPAT_LAYOUT = 2097152, + READ_IMPLIES_EXEC = 4194304, + ADDR_LIMIT_32BIT = 8388608, + SHORT_INODE = 16777216, + WHOLE_SECONDS = 33554432, + STICKY_TIMEOUTS = 67108864, + ADDR_LIMIT_3GB = 134217728, +}; + +struct cpuinfo_topology { + u32 apicid; + u32 initial_apicid; + u32 pkg_id; + u32 die_id; + u32 cu_id; + u32 core_id; + u32 logical_pkg_id; + u32 logical_die_id; + u32 logical_core_id; + u32 amd_node_id; + u32 llc_id; + u32 l2c_id; + union { + u32 cpu_type; + struct { + u32 intel_native_model_id: 24; + u32 intel_type: 8; + }; + struct { + u32 amd_num_processors: 16; + u32 amd_power_eff_ranking: 8; + u32 amd_native_model_id: 4; + u32 amd_type: 4; + }; + }; +}; + +struct cpuinfo_x86 { + union { + struct { + __u8 x86_model; + __u8 x86; + __u8 x86_vendor; + __u8 x86_reserved; + }; + __u32 x86_vfm; + }; + __u8 x86_stepping; + int x86_tlbsize; + __u32 vmx_capability[5]; + __u8 x86_virt_bits; + __u8 x86_phys_bits; + __u32 extended_cpuid_level; + int cpuid_level; + union { + __u32 x86_capability[24]; + long unsigned int x86_capability_alignment; + }; + char x86_vendor_id[16]; + char x86_model_id[64]; + struct cpuinfo_topology topo; + unsigned int x86_cache_size; + int x86_cache_alignment; + int x86_cache_max_rmid; + int x86_cache_occ_scale; + int x86_cache_mbm_width_offset; + int x86_power; + long unsigned int loops_per_jiffy; + u64 ppin; + u16 x86_clflush_size; + u16 booted_cores; + u16 cpu_index; + bool smt_active; + u32 microcode; + u8 x86_cache_bits; + unsigned int initialized: 1; +}; + +enum cc_vendor { + CC_VENDOR_NONE = 0, + CC_VENDOR_AMD = 1, + CC_VENDOR_INTEL = 2, +}; + +struct cc_attr_flags { + __u64 host_sev_snp: 1; + __u64 __resv: 63; +}; + +enum migratetype { + MIGRATE_UNMOVABLE = 0, + MIGRATE_MOVABLE = 1, + MIGRATE_RECLAIMABLE = 2, + MIGRATE_PCPTYPES = 3, + MIGRATE_HIGHATOMIC = 3, + MIGRATE_CMA = 4, + __MIGRATE_TYPE_END = 4, + MIGRATE_ISOLATE = 5, + MIGRATE_TYPES = 6, +}; + +enum numa_stat_item { + NUMA_HIT = 0, + NUMA_MISS = 1, + NUMA_FOREIGN = 2, + NUMA_INTERLEAVE_HIT = 3, + NUMA_LOCAL = 4, + NUMA_OTHER = 5, + NR_VM_NUMA_EVENT_ITEMS = 6, +}; + +enum zone_stat_item { + NR_FREE_PAGES = 0, + NR_FREE_PAGES_BLOCKS = 1, + NR_ZONE_LRU_BASE = 2, + NR_ZONE_INACTIVE_ANON = 2, + NR_ZONE_ACTIVE_ANON = 3, + NR_ZONE_INACTIVE_FILE = 4, + NR_ZONE_ACTIVE_FILE = 5, + NR_ZONE_UNEVICTABLE = 6, + NR_ZONE_WRITE_PENDING = 7, + NR_MLOCK = 8, + NR_ZSPAGES = 9, + NR_FREE_CMA_PAGES = 10, + NR_UNACCEPTED = 11, + NR_VM_ZONE_STAT_ITEMS = 12, +}; + +enum node_stat_item { + NR_LRU_BASE = 0, + NR_INACTIVE_ANON = 0, + NR_ACTIVE_ANON = 1, + NR_INACTIVE_FILE = 2, + NR_ACTIVE_FILE = 3, + NR_UNEVICTABLE = 4, + NR_SLAB_RECLAIMABLE_B = 5, + NR_SLAB_UNRECLAIMABLE_B = 6, + NR_ISOLATED_ANON = 7, + NR_ISOLATED_FILE = 8, + WORKINGSET_NODES = 9, + WORKINGSET_REFAULT_BASE = 10, + WORKINGSET_REFAULT_ANON = 10, + WORKINGSET_REFAULT_FILE = 11, + WORKINGSET_ACTIVATE_BASE = 12, + WORKINGSET_ACTIVATE_ANON = 12, + WORKINGSET_ACTIVATE_FILE = 13, + WORKINGSET_RESTORE_BASE = 14, + WORKINGSET_RESTORE_ANON = 14, + WORKINGSET_RESTORE_FILE = 15, + WORKINGSET_NODERECLAIM = 16, + NR_ANON_MAPPED = 17, + NR_FILE_MAPPED = 18, + NR_FILE_PAGES = 19, + NR_FILE_DIRTY = 20, + NR_WRITEBACK = 21, + NR_SHMEM = 22, + NR_SHMEM_THPS = 23, + NR_SHMEM_PMDMAPPED = 24, + NR_FILE_THPS = 25, + NR_FILE_PMDMAPPED = 26, + NR_ANON_THPS = 27, + NR_VMSCAN_WRITE = 28, + NR_VMSCAN_IMMEDIATE = 29, + NR_DIRTIED = 30, + NR_WRITTEN = 31, + NR_THROTTLED_WRITTEN = 32, + NR_KERNEL_MISC_RECLAIMABLE = 33, + NR_FOLL_PIN_ACQUIRED = 34, + NR_FOLL_PIN_RELEASED = 35, + NR_KERNEL_STACK_KB = 36, + NR_PAGETABLE = 37, + NR_SECONDARY_PAGETABLE = 38, + NR_IOMMU_PAGES = 39, + NR_SWAPCACHE = 40, + PGPROMOTE_SUCCESS = 41, + PGPROMOTE_CANDIDATE = 42, + PGDEMOTE_KSWAPD = 43, + PGDEMOTE_DIRECT = 44, + PGDEMOTE_KHUGEPAGED = 45, + PGDEMOTE_PROACTIVE = 46, + NR_HUGETLB = 47, + NR_BALLOON_PAGES = 48, + NR_VM_NODE_STAT_ITEMS = 49, +}; + +enum lru_list { + LRU_INACTIVE_ANON = 0, + LRU_ACTIVE_ANON = 1, + LRU_INACTIVE_FILE = 2, + LRU_ACTIVE_FILE = 3, + LRU_UNEVICTABLE = 4, + NR_LRU_LISTS = 5, +}; + +enum vmscan_throttle_state { + VMSCAN_THROTTLE_WRITEBACK = 0, + VMSCAN_THROTTLE_ISOLATED = 1, + VMSCAN_THROTTLE_NOPROGRESS = 2, + VMSCAN_THROTTLE_CONGESTED = 3, + NR_VMSCAN_THROTTLE = 4, +}; + +enum { + MM_LEAF_TOTAL = 0, + MM_LEAF_YOUNG = 1, + MM_NONLEAF_FOUND = 2, + MM_NONLEAF_ADDED = 3, + NR_MM_STATS = 4, +}; + +enum zone_watermarks { + WMARK_MIN = 0, + WMARK_LOW = 1, + WMARK_HIGH = 2, + WMARK_PROMO = 3, + NR_WMARK = 4, +}; + +enum { + ZONELIST_FALLBACK = 0, + ZONELIST_NOFALLBACK = 1, + MAX_ZONELISTS = 2, +}; + +enum pg_level { + PG_LEVEL_NONE = 0, + PG_LEVEL_4K = 1, + PG_LEVEL_2M = 2, + PG_LEVEL_1G = 3, + PG_LEVEL_512G = 4, + PG_LEVEL_256T = 5, + PG_LEVEL_NUM = 6, +}; + +struct paravirt_callee_save { + void *func; +}; + +struct pv_cpu_ops { + void (*io_delay)(void); +}; + +struct pv_irq_ops { + void (*safe_halt)(void); + void (*halt)(void); +}; + +struct flush_tlb_info; + +struct pv_mmu_ops { + void (*flush_tlb_user)(void); + void (*flush_tlb_kernel)(void); + void (*flush_tlb_one_user)(long unsigned int); + void (*flush_tlb_multi)(const struct cpumask *, const struct flush_tlb_info *); + void (*exit_mmap)(struct mm_struct *); + void (*notify_page_enc_status_changed)(long unsigned int, int, bool); +}; + +struct flush_tlb_info { + struct mm_struct *mm; + long unsigned int start; + long unsigned int end; + u64 new_tlb_gen; + unsigned int initiating_cpu; + u8 stride_shift; + u8 freed_tables; + u8 trim_cpumask; +}; + +struct pv_lock_ops { + void (*queued_spin_lock_slowpath)(struct qspinlock *, u32); + struct paravirt_callee_save queued_spin_unlock; + void (*wait)(u8 *, u8); + void (*kick)(int); + struct paravirt_callee_save vcpu_is_preempted; +}; + +struct paravirt_patch_template { + struct pv_cpu_ops cpu; + struct pv_irq_ops irq; + struct pv_mmu_ops mmu; + struct pv_lock_ops lock; +}; + +struct io_bitmap { + u64 sequence; + refcount_t refcnt; + unsigned int max; + long unsigned int bitmap[1024]; +}; + +enum rseq_cs_flags_bit { + RSEQ_CS_FLAG_NO_RESTART_ON_PREEMPT_BIT = 0, + RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL_BIT = 1, + RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE_BIT = 2, +}; + +struct x86_guest { + int (*enc_status_change_prepare)(long unsigned int, int, bool); + int (*enc_status_change_finish)(long unsigned int, int, bool); + bool (*enc_tlb_flush_required)(bool); + bool (*enc_cache_flush_required)(void); + void (*enc_kexec_begin)(void); + void (*enc_kexec_finish)(void); +}; + +struct x86_cpuinit_ops { + void (*setup_percpu_clockev)(void); + void (*early_percpu_clock_init)(void); + void (*fixup_cpu_id)(struct cpuinfo_x86 *, int); + bool parallel_bringup; +}; + +struct x86_legacy_devices { + int pnpbios; +}; + +enum x86_legacy_i8042_state { + X86_LEGACY_I8042_PLATFORM_ABSENT = 0, + X86_LEGACY_I8042_FIRMWARE_ABSENT = 1, + X86_LEGACY_I8042_EXPECTED_PRESENT = 2, +}; + +struct x86_legacy_features { + enum x86_legacy_i8042_state i8042; + int rtc; + int warm_reset; + int no_vga; + int reserve_bios_regions; + struct x86_legacy_devices devices; +}; + +struct ghcb; + +struct x86_hyper_runtime { + void (*pin_vcpu)(int); + void (*sev_es_hcall_prepare)(struct ghcb *, struct pt_regs *); + bool (*sev_es_hcall_finish)(struct ghcb *, struct pt_regs *); + bool (*is_private_mmio)(u64); +}; + +struct x86_platform_ops { + long unsigned int (*calibrate_cpu)(void); + long unsigned int (*calibrate_tsc)(void); + void (*get_wallclock)(struct timespec64 *); + int (*set_wallclock)(const struct timespec64 *); + void (*iommu_shutdown)(void); + bool (*is_untracked_pat_range)(u64, u64); + void (*nmi_init)(void); + unsigned char (*get_nmi_reason)(void); + void (*save_sched_clock_state)(void); + void (*restore_sched_clock_state)(void); + void (*apic_post_init)(void); + struct x86_legacy_features legacy; + void (*set_legacy_features)(void); + void (*realmode_reserve)(void); + void (*realmode_init)(void); + struct x86_hyper_runtime hyper; + struct x86_guest guest; +}; + +struct tdx_module_args { + u64 rcx; + u64 rdx; + u64 r8; + u64 r9; + u64 r10; + u64 r11; + u64 r12; + u64 r13; + u64 r14; + u64 r15; + u64 rbx; + u64 rdi; + u64 rsi; +}; + +struct ve_info { + u64 exit_reason; + u64 exit_qual; + u64 gla; + u64 gpa; + u32 instr_len; + u32 instr_info; +}; + +typedef unsigned int insn_attr_t; + +typedef unsigned char insn_byte_t; + +typedef int insn_value_t; + +struct insn_field { + union { + insn_value_t value; + insn_byte_t bytes[4]; + }; + unsigned char got; + unsigned char nbytes; +}; + +struct insn { + struct insn_field prefixes; + struct insn_field rex_prefix; + struct insn_field vex_prefix; + struct insn_field opcode; + struct insn_field modrm; + struct insn_field sib; + struct insn_field displacement; + union { + struct insn_field immediate; + struct insn_field moffset1; + struct insn_field immediate1; + }; + union { + struct insn_field moffset2; + struct insn_field immediate2; + }; + int emulate_prefix_size; + insn_attr_t attr; + unsigned char opnd_bytes; + unsigned char addr_bytes; + unsigned char length; + unsigned char x86_64; + const insn_byte_t *kaddr; + const insn_byte_t *end_kaddr; + const insn_byte_t *next_byte; +}; + +enum insn_mode { + INSN_MODE_32 = 0, + INSN_MODE_64 = 1, + INSN_MODE_KERN = 2, + INSN_NUM_MODES = 3, +}; + +enum insn_mmio_type { + INSN_MMIO_DECODE_FAILED = 0, + INSN_MMIO_WRITE = 1, + INSN_MMIO_WRITE_IMM = 2, + INSN_MMIO_READ = 3, + INSN_MMIO_READ_ZERO_EXTEND = 4, + INSN_MMIO_READ_SIGN_EXTEND = 5, + INSN_MMIO_MOVS = 6, +}; + +typedef u32 phandle; + +struct property; + +struct device_node { + const char *name; + phandle phandle; + const char *full_name; + struct fwnode_handle fwnode; + struct property *properties; + struct property *deadprops; + struct device_node *parent; + struct device_node *child; + struct device_node *sibling; + long unsigned int _flags; + void *data; +}; + +struct property { + char *name; + int length; + void *value; + struct property *next; +}; + +enum unwind_user_type_bits { + UNWIND_USER_TYPE_FP_BIT = 0, + NR_UNWIND_USER_TYPE_BITS = 1, +}; + +enum rseq_event_mask_bits { + RSEQ_EVENT_PREEMPT_BIT = 0, + RSEQ_EVENT_SIGNAL_BIT = 1, + RSEQ_EVENT_MIGRATE_BIT = 2, +}; + +typedef __u64 __be64; + +enum node_states { + N_POSSIBLE = 0, + N_ONLINE = 1, + N_NORMAL_MEMORY = 2, + N_HIGH_MEMORY = 2, + N_MEMORY = 3, + N_CPU = 4, + N_GENERIC_INITIATOR = 5, + NR_NODE_STATES = 6, +}; + +struct smp_ops { + void (*smp_prepare_boot_cpu)(void); + void (*smp_prepare_cpus)(unsigned int); + void (*smp_cpus_done)(unsigned int); + void (*stop_other_cpus)(int); + void (*crash_stop_other_cpus)(void); + void (*smp_send_reschedule)(int); + void (*cleanup_dead_cpu)(unsigned int); + void (*poll_sync_state)(void); + int (*kick_ap_alive)(unsigned int, struct task_struct *); + int (*cpu_disable)(void); + void (*cpu_die)(unsigned int); + void (*play_dead)(void); + void (*stop_this_cpu)(void); + void (*send_call_func_ipi)(const struct cpumask *); + void (*send_call_func_single_ipi)(int); +}; + +typedef struct mutex *class_mutex_t; + +struct ghcb_save_area { + u8 reserved_0x0[203]; + u8 cpl; + u8 reserved_0xcc[116]; + u64 xss; + u8 reserved_0x148[24]; + u64 dr7; + u8 reserved_0x168[16]; + u64 rip; + u8 reserved_0x180[88]; + u64 rsp; + u8 reserved_0x1e0[24]; + u64 rax; + u8 reserved_0x200[264]; + u64 rcx; + u64 rdx; + u64 rbx; + u8 reserved_0x320[8]; + u64 rbp; + u64 rsi; + u64 rdi; + u64 r8; + u64 r9; + u64 r10; + u64 r11; + u64 r12; + u64 r13; + u64 r14; + u64 r15; + u8 reserved_0x380[16]; + u64 sw_exit_code; + u64 sw_exit_info_1; + u64 sw_exit_info_2; + u64 sw_scratch; + u8 reserved_0x3b0[56]; + u64 xcr0; + u8 valid_bitmap[16]; + u64 x87_state_gpa; +}; + +struct ghcb { + struct ghcb_save_area save; + u8 reserved_save[1016]; + u8 shared_buffer[2032]; + u8 reserved_0xff0[10]; + u16 protocol_version; + u32 ghcb_usage; +}; + +enum pagetype { + PGTY_buddy = 240, + PGTY_offline = 241, + PGTY_table = 242, + PGTY_guard = 243, + PGTY_hugetlb = 244, + PGTY_slab = 245, + PGTY_zsmalloc = 246, + PGTY_unaccepted = 247, + PGTY_large_kmalloc = 248, + PGTY_mapcount_underflow = 255, +}; + +typedef struct { + __u8 b[16]; +} guid_t; + +struct cdev { + struct kobject kobj; + struct module *owner; + const struct file_operations *ops; + struct list_head list; + dev_t dev; + unsigned int count; +}; + +struct kobj_attribute { + struct attribute attr; + ssize_t (*show)(struct kobject *, struct kobj_attribute *, char *); + ssize_t (*store)(struct kobject *, struct kobj_attribute *, const char *, size_t); +}; + +struct pdev_archdata {}; + +typedef long unsigned int efi_status_t; + +typedef u8 efi_bool_t; + +typedef u16 efi_char16_t; + +typedef guid_t efi_guid_t; + +typedef struct { + u64 signature; + u32 revision; + u32 headersize; + u32 crc32; + u32 reserved; +} efi_table_hdr_t; + +typedef struct { + u32 type; + u32 pad; + u64 phys_addr; + u64 virt_addr; + u64 num_pages; + u64 attribute; +} efi_memory_desc_t; + +typedef struct { + efi_guid_t guid; + u32 headersize; + u32 flags; + u32 imagesize; +} efi_capsule_header_t; + +typedef struct { + u16 year; + u8 month; + u8 day; + u8 hour; + u8 minute; + u8 second; + u8 pad1; + u32 nanosecond; + s16 timezone; + u8 daylight; + u8 pad2; +} efi_time_t; + +typedef struct { + u32 resolution; + u32 accuracy; + u8 sets_to_zero; +} efi_time_cap_t; + +typedef struct { + efi_table_hdr_t hdr; + u32 get_time; + u32 set_time; + u32 get_wakeup_time; + u32 set_wakeup_time; + u32 set_virtual_address_map; + u32 convert_pointer; + u32 get_variable; + u32 get_next_variable; + u32 set_variable; + u32 get_next_high_mono_count; + u32 reset_system; + u32 update_capsule; + u32 query_capsule_caps; + u32 query_variable_info; +} efi_runtime_services_32_t; + +typedef efi_status_t efi_get_time_t(efi_time_t *, efi_time_cap_t *); + +typedef efi_status_t efi_set_time_t(efi_time_t *); + +typedef efi_status_t efi_get_wakeup_time_t(efi_bool_t *, efi_bool_t *, efi_time_t *); + +typedef efi_status_t efi_set_wakeup_time_t(efi_bool_t, efi_time_t *); + +typedef efi_status_t efi_get_variable_t(efi_char16_t *, efi_guid_t *, u32 *, long unsigned int *, void *); + +typedef efi_status_t efi_get_next_variable_t(long unsigned int *, efi_char16_t *, efi_guid_t *); + +typedef efi_status_t efi_set_variable_t(efi_char16_t *, efi_guid_t *, u32, long unsigned int, void *); + +typedef efi_status_t efi_get_next_high_mono_count_t(u32 *); + +typedef void efi_reset_system_t(int, efi_status_t, long unsigned int, efi_char16_t *); + +typedef efi_status_t efi_query_variable_info_t(u32, u64 *, u64 *, u64 *); + +typedef efi_status_t efi_update_capsule_t(efi_capsule_header_t **, long unsigned int, long unsigned int); + +typedef efi_status_t efi_query_capsule_caps_t(efi_capsule_header_t **, long unsigned int, u64 *, int *); + +typedef union { + struct { + efi_table_hdr_t hdr; + efi_status_t (*get_time)(efi_time_t *, efi_time_cap_t *); + efi_status_t (*set_time)(efi_time_t *); + efi_status_t (*get_wakeup_time)(efi_bool_t *, efi_bool_t *, efi_time_t *); + efi_status_t (*set_wakeup_time)(efi_bool_t, efi_time_t *); + efi_status_t (*set_virtual_address_map)(long unsigned int, long unsigned int, u32, efi_memory_desc_t *); + void *convert_pointer; + efi_status_t (*get_variable)(efi_char16_t *, efi_guid_t *, u32 *, long unsigned int *, void *); + efi_status_t (*get_next_variable)(long unsigned int *, efi_char16_t *, efi_guid_t *); + efi_status_t (*set_variable)(efi_char16_t *, efi_guid_t *, u32, long unsigned int, void *); + efi_status_t (*get_next_high_mono_count)(u32 *); + void (*reset_system)(int, efi_status_t, long unsigned int, efi_char16_t *); + efi_status_t (*update_capsule)(efi_capsule_header_t **, long unsigned int, long unsigned int); + efi_status_t (*query_capsule_caps)(efi_capsule_header_t **, long unsigned int, u64 *, int *); + efi_status_t (*query_variable_info)(u32, u64 *, u64 *, u64 *); + }; + efi_runtime_services_32_t mixed_mode; +} efi_runtime_services_t; + +struct efi_memory_map { + phys_addr_t phys_map; + void *map; + void *map_end; + int nr_map; + long unsigned int desc_version; + long unsigned int desc_size; + long unsigned int flags; +}; + +struct efi { + const efi_runtime_services_t *runtime; + unsigned int runtime_version; + unsigned int runtime_supported_mask; + long unsigned int acpi; + long unsigned int acpi20; + long unsigned int smbios; + long unsigned int smbios3; + long unsigned int esrt; + long unsigned int tpm_log; + long unsigned int tpm_final_log; + long unsigned int ovmf_debug_log; + long unsigned int mokvar_table; + long unsigned int coco_secret; + long unsigned int unaccepted; + efi_get_time_t *get_time; + efi_set_time_t *set_time; + efi_get_wakeup_time_t *get_wakeup_time; + efi_set_wakeup_time_t *set_wakeup_time; + efi_get_variable_t *get_variable; + efi_get_next_variable_t *get_next_variable; + efi_set_variable_t *set_variable; + efi_set_variable_t *set_variable_nonblocking; + efi_query_variable_info_t *query_variable_info; + efi_query_variable_info_t *query_variable_info_nonblocking; + efi_update_capsule_t *update_capsule; + efi_query_capsule_caps_t *query_capsule_caps; + efi_get_next_high_mono_count_t *get_next_high_mono_count; + efi_reset_system_t *reset_system; + struct efi_memory_map memmap; + long unsigned int flags; +}; + +struct platform_device_id; + +struct mfd_cell; + +struct platform_device { + const char *name; + int id; + bool id_auto; + struct device dev; + u64 platform_dma_mask; + struct device_dma_parameters dma_parms; + u32 num_resources; + struct resource *resource; + const struct platform_device_id *id_entry; + const char *driver_override; + struct mfd_cell *mfd_cell; + struct pdev_archdata archdata; +}; + +struct platform_device_id { + char name[24]; + kernel_ulong_t driver_data; +}; + +enum { + SEV_RET_NO_FW_CALL = -1, + SEV_RET_SUCCESS = 0, + SEV_RET_INVALID_PLATFORM_STATE = 1, + SEV_RET_INVALID_GUEST_STATE = 2, + SEV_RET_INAVLID_CONFIG = 3, + SEV_RET_INVALID_CONFIG = 3, + SEV_RET_INVALID_LEN = 4, + SEV_RET_ALREADY_OWNED = 5, + SEV_RET_INVALID_CERTIFICATE = 6, + SEV_RET_POLICY_FAILURE = 7, + SEV_RET_INACTIVE = 8, + SEV_RET_INVALID_ADDRESS = 9, + SEV_RET_BAD_SIGNATURE = 10, + SEV_RET_BAD_MEASUREMENT = 11, + SEV_RET_ASID_OWNED = 12, + SEV_RET_INVALID_ASID = 13, + SEV_RET_WBINVD_REQUIRED = 14, + SEV_RET_DFFLUSH_REQUIRED = 15, + SEV_RET_INVALID_GUEST = 16, + SEV_RET_INVALID_COMMAND = 17, + SEV_RET_ACTIVE = 18, + SEV_RET_HWSEV_RET_PLATFORM = 19, + SEV_RET_HWSEV_RET_UNSAFE = 20, + SEV_RET_UNSUPPORTED = 21, + SEV_RET_INVALID_PARAM = 22, + SEV_RET_RESOURCE_LIMIT = 23, + SEV_RET_SECURE_DATA_INVALID = 24, + SEV_RET_INVALID_PAGE_SIZE = 25, + SEV_RET_INVALID_PAGE_STATE = 26, + SEV_RET_INVALID_MDATA_ENTRY = 27, + SEV_RET_INVALID_PAGE_OWNER = 28, + SEV_RET_AEAD_OFLOW = 29, + SEV_RET_EXIT_RING_BUFFER = 31, + SEV_RET_RMP_INIT_REQUIRED = 32, + SEV_RET_BAD_SVN = 33, + SEV_RET_BAD_VERSION = 34, + SEV_RET_SHUTDOWN_REQUIRED = 35, + SEV_RET_UPDATE_FAILED = 36, + SEV_RET_RESTORE_REQUIRED = 37, + SEV_RET_RMP_INITIALIZATION_FAILED = 38, + SEV_RET_INVALID_KEY = 39, + SEV_RET_MAX = 40, +}; + +struct crypto_aes_ctx { + u32 key_enc[60]; + u32 key_dec[60]; + u32 key_length; +}; + +typedef struct { + __be64 a; + __be64 b; +} be128; + +struct aesgcm_ctx { + be128 ghash_key; + struct crypto_aes_ctx aes_ctx; + unsigned int authsize; +}; + +enum psc_op { + SNP_PAGE_STATE_PRIVATE = 1, + SNP_PAGE_STATE_SHARED = 2, +}; + +struct psc_hdr { + u16 cur_entry; + u16 end_entry; + u32 reserved; +}; + +struct psc_entry { + u64 cur_page: 12; + u64 gfn: 40; + u64 operation: 4; + u64 pagesize: 1; + u64 reserved: 7; +}; + +struct snp_psc_desc { + struct psc_hdr hdr; + struct psc_entry entries[64]; +}; + +struct sev_config { + __u64 debug: 1; + __u64 ghcbs_initialized: 1; + __u64 use_cas: 1; + __u64 __reserved: 61; +}; + +struct vmcb_seg { + u16 selector; + u16 attrib; + u32 limit; + u64 base; +}; + +struct sev_es_save_area { + struct vmcb_seg es; + struct vmcb_seg cs; + struct vmcb_seg ss; + struct vmcb_seg ds; + struct vmcb_seg fs; + struct vmcb_seg gs; + struct vmcb_seg gdtr; + struct vmcb_seg ldtr; + struct vmcb_seg idtr; + struct vmcb_seg tr; + u64 pl0_ssp; + u64 pl1_ssp; + u64 pl2_ssp; + u64 pl3_ssp; + u64 u_cet; + u8 reserved_0xc8[2]; + u8 vmpl; + u8 cpl; + u8 reserved_0xcc[4]; + u64 efer; + u8 reserved_0xd8[104]; + u64 xss; + u64 cr4; + u64 cr3; + u64 cr0; + u64 dr7; + u64 dr6; + u64 rflags; + u64 rip; + u64 dr0; + u64 dr1; + u64 dr2; + u64 dr3; + u64 dr0_addr_mask; + u64 dr1_addr_mask; + u64 dr2_addr_mask; + u64 dr3_addr_mask; + u8 reserved_0x1c0[24]; + u64 rsp; + u64 s_cet; + u64 ssp; + u64 isst_addr; + u64 rax; + u64 star; + u64 lstar; + u64 cstar; + u64 sfmask; + u64 kernel_gs_base; + u64 sysenter_cs; + u64 sysenter_esp; + u64 sysenter_eip; + u64 cr2; + u8 reserved_0x248[32]; + u64 g_pat; + u64 dbgctl; + u64 br_from; + u64 br_to; + u64 last_excp_from; + u64 last_excp_to; + u8 reserved_0x298[80]; + u32 pkru; + u32 tsc_aux; + u64 tsc_scale; + u64 tsc_offset; + u8 reserved_0x300[8]; + u64 rcx; + u64 rdx; + u64 rbx; + u64 reserved_0x320; + u64 rbp; + u64 rsi; + u64 rdi; + u64 r8; + u64 r9; + u64 r10; + u64 r11; + u64 r12; + u64 r13; + u64 r14; + u64 r15; + u8 reserved_0x380[16]; + u64 guest_exit_info_1; + u64 guest_exit_info_2; + u64 guest_exit_int_info; + u64 guest_nrip; + u64 sev_features; + u64 vintr_ctrl; + u64 guest_exit_code; + u64 virtual_tom; + u64 tlb_id; + u64 pcpu_id; + u64 event_inj; + u64 xcr0; + u8 reserved_0x3f0[16]; + u64 x87_dp; + u32 mxcsr; + u16 x87_ftw; + u16 x87_fsw; + u16 x87_fcw; + u16 x87_fop; + u16 x87_ds; + u16 x87_cs; + u64 x87_rip; + u8 fpreg_x87[80]; + u8 fpreg_xmm[256]; + u8 fpreg_ymm[256]; +}; + +enum es_result { + ES_OK = 0, + ES_UNSUPPORTED = 1, + ES_VMM_ERROR = 2, + ES_DECODE_FAILED = 3, + ES_EXCEPTION = 4, + ES_RETRY = 5, +}; + +struct es_fault_info { + long unsigned int vector; + long unsigned int error_code; + long unsigned int cr2; +}; + +struct es_em_ctxt { + struct pt_regs *regs; + struct insn insn; + struct es_fault_info fi; +}; + +struct snp_cpuid_fn { + u32 eax_in; + u32 ecx_in; + u64 xcr0_in; + u64 xss_in; + u32 eax; + u32 ebx; + u32 ecx; + u32 edx; + u64 __reserved; +}; + +struct snp_cpuid_table { + u32 count; + u32 __reserved1; + u64 __reserved2; + struct snp_cpuid_fn fn[64]; +}; + +struct snp_req_data { + long unsigned int req_gpa; + long unsigned int resp_gpa; + long unsigned int data_gpa; + unsigned int data_npages; +}; + +enum msg_type { + SNP_MSG_TYPE_INVALID = 0, + SNP_MSG_CPUID_REQ = 1, + SNP_MSG_CPUID_RSP = 2, + SNP_MSG_KEY_REQ = 3, + SNP_MSG_KEY_RSP = 4, + SNP_MSG_REPORT_REQ = 5, + SNP_MSG_REPORT_RSP = 6, + SNP_MSG_EXPORT_REQ = 7, + SNP_MSG_EXPORT_RSP = 8, + SNP_MSG_IMPORT_REQ = 9, + SNP_MSG_IMPORT_RSP = 10, + SNP_MSG_ABSORB_REQ = 11, + SNP_MSG_ABSORB_RSP = 12, + SNP_MSG_VMRK_REQ = 13, + SNP_MSG_VMRK_RSP = 14, + SNP_MSG_TSC_INFO_REQ = 17, + SNP_MSG_TSC_INFO_RSP = 18, + SNP_MSG_TYPE_MAX = 19, +}; + +enum aead_algo { + SNP_AEAD_INVALID = 0, + SNP_AEAD_AES_256_GCM = 1, +}; + +struct snp_guest_msg_hdr { + u8 authtag[32]; + u64 msg_seqno; + u8 rsvd1[8]; + u8 algo; + u8 hdr_version; + u16 hdr_sz; + u8 msg_type; + u8 msg_version; + u16 msg_sz; + u32 rsvd2; + u8 msg_vmpck; + u8 rsvd3[35]; +}; + +struct snp_guest_msg { + struct snp_guest_msg_hdr hdr; + u8 payload[4000]; +}; + +struct snp_tsc_info_req { + u8 rsvd[128]; +}; + +struct snp_tsc_info_resp { + u32 status; + u32 rsvd1; + u64 tsc_scale; + u64 tsc_offset; + u32 tsc_factor; + u8 rsvd2[100]; +}; + +struct snp_guest_req { + void *req_buf; + size_t req_sz; + void *resp_buf; + size_t resp_sz; + u64 exit_code; + u64 exitinfo2; + unsigned int vmpck_id; + u8 msg_version; + u8 msg_type; + struct snp_req_data input; + void *certs_data; +}; + +struct secrets_os_area { + u32 msg_seqno_0; + u32 msg_seqno_1; + u32 msg_seqno_2; + u32 msg_seqno_3; + u64 ap_jump_table_pa; + u8 rsvd[40]; + u8 guest_usage[32]; +}; + +struct snp_secrets_page { + u32 version; + u32 imien: 1; + u32 rsvd1: 31; + u32 fms; + u32 rsvd2; + u8 gosvw[16]; + u8 vmpck0[32]; + u8 vmpck1[32]; + u8 vmpck2[32]; + u8 vmpck3[32]; + struct secrets_os_area os_area; + u8 vmsa_tweak_bitmap[64]; + u64 svsm_base; + u64 svsm_size; + u64 svsm_caa; + u32 svsm_max_version; + u8 svsm_guest_vmpl; + u8 rsvd3[3]; + u32 tsc_factor; + u8 rsvd4[3740]; +}; + +struct snp_msg_desc { + struct snp_guest_msg *request; + struct snp_guest_msg *response; + struct snp_guest_msg secret_request; + struct snp_guest_msg secret_response; + struct snp_secrets_page *secrets; + struct aesgcm_ctx *ctx; + u32 *os_area_msg_seqno; + u8 *vmpck; + int vmpck_id; +}; + +struct svsm_ca { + u8 call_pending; + u8 mem_available; + u8 rsvd1[6]; + u8 svsm_buffer[4088]; +}; + +struct svsm_pvalidate_entry { + u64 page_size: 2; + u64 action: 1; + u64 ignore_cf: 1; + u64 rsvd: 8; + u64 pfn: 52; +}; + +struct svsm_pvalidate_call { + u16 num_entries; + u16 cur_index; + u8 rsvd1[4]; + struct svsm_pvalidate_entry entry[0]; +}; + +struct svsm_loc_entry { + u64 pa; + u32 len; + u8 rsvd[4]; +}; + +struct svsm_attest_call { + struct svsm_loc_entry report_buf; + struct svsm_loc_entry nonce; + struct svsm_loc_entry manifest_buf; + struct svsm_loc_entry certificates_buf; + u8 service_guid[16]; + u32 service_manifest_ver; + u8 rsvd[4]; +}; + +struct pte_enc_desc { + pte_t *kpte; + int pte_level; + bool encrypt; + long unsigned int pfn; + long unsigned int pa; + void *va; + long unsigned int size; + pgprot_t new_pgprot; +}; + +struct svsm_call { + struct svsm_ca *caa; + u64 rax; + u64 rcx; + u64 rdx; + u64 r8; + u64 r9; + u64 rax_out; + u64 rcx_out; + u64 rdx_out; + u64 r8_out; + u64 r9_out; +}; + +struct sev_es_runtime_data { + struct ghcb ghcb_page; + struct ghcb backup_ghcb; + bool ghcb_active; + bool backup_ghcb_active; + long unsigned int dr7; +}; + +struct ghcb_state { + struct ghcb *ghcb; +}; + +struct real_mode_header { + u32 text_start; + u32 ro_end; + u32 trampoline_start; + u32 trampoline_header; + u32 sev_es_trampoline_start; + u32 trampoline_start64; + u32 trampoline_pgd; + u32 wakeup_start; + u32 wakeup_header; + u32 machine_real_restart_asm; + u32 machine_real_restart_seg; +}; + +struct apic { + void (*eoi)(void); + void (*native_eoi)(void); + void (*write)(u32, u32); + u32 (*read)(u32); + void (*wait_icr_idle)(void); + u32 (*safe_wait_icr_idle)(void); + void (*send_IPI)(int, int); + void (*send_IPI_mask)(const struct cpumask *, int); + void (*send_IPI_mask_allbutself)(const struct cpumask *, int); + void (*send_IPI_allbutself)(int); + void (*send_IPI_all)(int); + void (*send_IPI_self)(int); + u32 disable_esr: 1; + u32 dest_mode_logical: 1; + u32 x2apic_set_max_apicid: 1; + u32 nmi_to_offline_cpu: 1; + u32 (*calc_dest_apicid)(unsigned int); + u64 (*icr_read)(void); + void (*icr_write)(u32, u32); + u32 max_apic_id; + int (*probe)(void); + int (*acpi_madt_oem_check)(char *, char *); + void (*init_apic_ldr)(void); + u32 (*cpu_present_to_apicid)(int); + u32 (*get_apic_id)(u32); + int (*wakeup_secondary_cpu)(u32, long unsigned int, unsigned int); + int (*wakeup_secondary_cpu_64)(u32, long unsigned int, unsigned int); + char *name; +}; + +struct apic_override { + void (*eoi)(void); + void (*native_eoi)(void); + void (*write)(u32, u32); + u32 (*read)(u32); + void (*send_IPI)(int, int); + void (*send_IPI_mask)(const struct cpumask *, int); + void (*send_IPI_mask_allbutself)(const struct cpumask *, int); + void (*send_IPI_allbutself)(int); + void (*send_IPI_all)(int); + void (*send_IPI_self)(int); + u64 (*icr_read)(void); + void (*icr_write)(u32, u32); + int (*wakeup_secondary_cpu)(u32, long unsigned int, unsigned int); + int (*wakeup_secondary_cpu_64)(u32, long unsigned int, unsigned int); +}; + +struct x86_hw_tss { + u32 reserved1; + u64 sp0; + u64 sp1; + u64 sp2; + u64 reserved2; + u64 ist[7]; + u32 reserved3; + u32 reserved4; + u16 reserved5; + u16 io_bitmap_base; +} __attribute__((packed)); + +struct x86_io_bitmap { + u64 prev_sequence; + unsigned int prev_max; + long unsigned int bitmap[1025]; + long unsigned int mapall[1025]; +}; + +struct tss_struct { + struct x86_hw_tss x86_tss; + struct x86_io_bitmap io_bitmap; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct cea_exception_stacks { + char DF_stack_guard[4096]; + char DF_stack[8192]; + char NMI_stack_guard[4096]; + char NMI_stack[8192]; + char DB_stack_guard[4096]; + char DB_stack[8192]; + char MCE_stack_guard[4096]; + char MCE_stack[8192]; + char VC_stack_guard[4096]; + char VC_stack[8192]; + char VC2_stack_guard[4096]; + char VC2_stack[8192]; + char IST_top_guard[4096]; +}; + +struct cpuid_leaf { + u32 fn; + u32 subfn; + u32 eax; + u32 ebx; + u32 ecx; + u32 edx; +}; + +struct irqentry_state { + union { + bool exit_rcu; + bool lockdep; + }; +}; + +typedef struct irqentry_state irqentry_state_t; + +enum x86_pf_error_code { + X86_PF_PROT = 1, + X86_PF_WRITE = 2, + X86_PF_USER = 4, + X86_PF_RSVD = 8, + X86_PF_INSTR = 16, + X86_PF_PK = 32, + X86_PF_SHSTK = 64, + X86_PF_SGX = 32768, + X86_PF_RMP = 2147483648, +}; + +enum syscall_work_bit { + SYSCALL_WORK_BIT_SECCOMP = 0, + SYSCALL_WORK_BIT_SYSCALL_TRACEPOINT = 1, + SYSCALL_WORK_BIT_SYSCALL_TRACE = 2, + SYSCALL_WORK_BIT_SYSCALL_EMU = 3, + SYSCALL_WORK_BIT_SYSCALL_AUDIT = 4, + SYSCALL_WORK_BIT_SYSCALL_USER_DISPATCH = 5, + SYSCALL_WORK_BIT_SYSCALL_EXIT_TRAP = 6, +}; + +enum ctx_state { + CT_STATE_DISABLED = -1, + CT_STATE_KERNEL = 0, + CT_STATE_IDLE = 1, + CT_STATE_USER = 2, + CT_STATE_GUEST = 3, + CT_STATE_MAX = 4, +}; + +struct context_tracking { + bool active; + int recursion; + atomic_t state; + long int nesting; + long int nmi_nesting; +}; + +typedef long int (*sys_call_ptr_t)(const struct pt_regs *); + +struct alt_instr { + s32 instr_offset; + s32 repl_offset; + union { + struct { + u32 cpuid: 16; + u32 flags: 16; + }; + u32 ft_flags; + }; + u8 instrlen; + u8 replacementlen; +} __attribute__((packed)); + +struct wait_queue_entry; + +typedef int (*wait_queue_func_t)(struct wait_queue_entry *, unsigned int, int, void *); + +struct wait_queue_entry { + unsigned int flags; + void *private; + wait_queue_func_t func; + struct list_head entry; +}; + +typedef struct wait_queue_entry wait_queue_entry_t; + +struct maple_alloc { + long unsigned int total; + unsigned char node_count; + unsigned int request_count; + struct maple_alloc *slot[30]; +}; + +struct maple_enode; + +enum store_type { + wr_invalid = 0, + wr_new_root = 1, + wr_store_root = 2, + wr_exact_fit = 3, + wr_spanning_store = 4, + wr_split_store = 5, + wr_rebalance = 6, + wr_append = 7, + wr_node_store = 8, + wr_slot_store = 9, +}; + +enum maple_status { + ma_active = 0, + ma_start = 1, + ma_root = 2, + ma_none = 3, + ma_pause = 4, + ma_overflow = 5, + ma_underflow = 6, + ma_error = 7, +}; + +struct ma_state { + struct maple_tree *tree; + long unsigned int index; + long unsigned int last; + struct maple_enode *node; + long unsigned int min; + long unsigned int max; + struct maple_alloc *alloc; + enum maple_status status; + unsigned char depth; + unsigned char offset; + unsigned char mas_flags; + unsigned char end; + enum store_type store_type; +}; + +struct reclaim_state { + long unsigned int reclaimed; + struct lru_gen_mm_walk *mm_walk; +}; + +struct vma_iterator { + struct ma_state mas; +}; + +enum vm_fault_reason { + VM_FAULT_OOM = 1, + VM_FAULT_SIGBUS = 2, + VM_FAULT_MAJOR = 4, + VM_FAULT_HWPOISON = 16, + VM_FAULT_HWPOISON_LARGE = 32, + VM_FAULT_SIGSEGV = 64, + VM_FAULT_NOPAGE = 256, + VM_FAULT_LOCKED = 512, + VM_FAULT_RETRY = 1024, + VM_FAULT_FALLBACK = 2048, + VM_FAULT_DONE_COW = 4096, + VM_FAULT_NEEDDSYNC = 8192, + VM_FAULT_COMPLETED = 16384, + VM_FAULT_HINDEX_MASK = 983040, +}; + +struct vm_special_mapping { + const char *name; + struct page **pages; + vm_fault_t (*fault)(const struct vm_special_mapping *, struct vm_area_struct *, struct vm_fault *); + int (*mremap)(const struct vm_special_mapping *, struct vm_area_struct *); + void (*close)(const struct vm_special_mapping *, struct vm_area_struct *); +}; + +enum pageflags { + PG_locked = 0, + PG_writeback = 1, + PG_referenced = 2, + PG_uptodate = 3, + PG_dirty = 4, + PG_lru = 5, + PG_head = 6, + PG_waiters = 7, + PG_active = 8, + PG_workingset = 9, + PG_owner_priv_1 = 10, + PG_owner_2 = 11, + PG_arch_1 = 12, + PG_reserved = 13, + PG_private = 14, + PG_private_2 = 15, + PG_reclaim = 16, + PG_swapbacked = 17, + PG_unevictable = 18, + PG_dropbehind = 19, + PG_mlocked = 20, + PG_hwpoison = 21, + PG_young = 22, + PG_idle = 23, + PG_arch_2 = 24, + __NR_PAGEFLAGS = 25, + PG_readahead = 16, + PG_swapcache = 10, + PG_checked = 10, + PG_anon_exclusive = 11, + PG_mappedtodisk = 11, + PG_fscache = 15, + PG_pinned = 10, + PG_savepinned = 4, + PG_foreign = 10, + PG_xen_remapped = 10, + PG_movable_ops_isolated = 16, + PG_movable_ops = 3, + PG_reported = 3, + PG_vmemmap_self_hosted = 10, + PG_has_hwpoisoned = 8, + PG_large_rmappable = 9, + PG_partially_mapped = 16, +}; + +struct wait_page_queue { + struct folio *folio; + int bit_nr; + wait_queue_entry_t wait; +}; + +struct readahead_control { + struct file *file; + struct address_space *mapping; + struct file_ra_state *ra; + long unsigned int _index; + unsigned int _nr_pages; + unsigned int _batch_count; + bool dropbehind; + bool _workingset; + long unsigned int _pflags; +}; + +struct swap_cluster_info; + +struct swap_sequential_cluster; + +struct swap_info_struct { + struct percpu_ref users; + long unsigned int flags; + short int prio; + struct plist_node list; + signed char type; + unsigned int max; + unsigned char *swap_map; + long unsigned int *zeromap; + struct swap_cluster_info *cluster_info; + struct list_head free_clusters; + struct list_head full_clusters; + struct list_head nonfull_clusters[10]; + struct list_head frag_clusters[10]; + atomic_long_t frag_cluster_nr[10]; + unsigned int pages; + atomic_long_t inuse_pages; + struct swap_sequential_cluster *global_cluster; + spinlock_t global_cluster_lock; + struct rb_root swap_extent_root; + struct block_device *bdev; + struct file *swap_file; + struct completion comp; + spinlock_t lock; + spinlock_t cont_lock; + struct work_struct discard_work; + struct work_struct reclaim_work; + struct list_head discard_clusters; + struct plist_node avail_lists[0]; +}; + +struct pvclock_vcpu_time_info { + u32 version; + u32 pad0; + u64 tsc_timestamp; + u64 system_time; + u32 tsc_to_system_mul; + s8 tsc_shift; + u8 flags; + u8 pad[2]; +}; + +struct pvclock_vsyscall_time_info { + struct pvclock_vcpu_time_info pvti; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum vdso_clock_mode { + VDSO_CLOCKMODE_NONE = 0, + VDSO_CLOCKMODE_TSC = 1, + VDSO_CLOCKMODE_PVCLOCK = 2, + VDSO_CLOCKMODE_HVCLOCK = 3, + VDSO_CLOCKMODE_MAX = 4, + VDSO_CLOCKMODE_TIMENS = 2147483647, +}; + +enum vdso_pages { + VDSO_TIME_PAGE_OFFSET = 0, + VDSO_TIMENS_PAGE_OFFSET = 1, + VDSO_RNG_PAGE_OFFSET = 2, + VDSO_ARCH_PAGES_START = 3, + VDSO_ARCH_PAGES_END = 3, + VDSO_NR_PAGES = 4, +}; + +enum { + HI_SOFTIRQ = 0, + TIMER_SOFTIRQ = 1, + NET_TX_SOFTIRQ = 2, + NET_RX_SOFTIRQ = 3, + BLOCK_SOFTIRQ = 4, + IRQ_POLL_SOFTIRQ = 5, + TASKLET_SOFTIRQ = 6, + SCHED_SOFTIRQ = 7, + HRTIMER_SOFTIRQ = 8, + RCU_SOFTIRQ = 9, + NR_SOFTIRQS = 10, +}; + +enum cpu_usage_stat { + CPUTIME_USER = 0, + CPUTIME_NICE = 1, + CPUTIME_SYSTEM = 2, + CPUTIME_SOFTIRQ = 3, + CPUTIME_IRQ = 4, + CPUTIME_IDLE = 5, + CPUTIME_IOWAIT = 6, + CPUTIME_STEAL = 7, + CPUTIME_GUEST = 8, + CPUTIME_GUEST_NICE = 9, + CPUTIME_FORCEIDLE = 10, + NR_STATS = 11, +}; + +enum cgroup_bpf_attach_type { + CGROUP_BPF_ATTACH_TYPE_INVALID = -1, + CGROUP_INET_INGRESS = 0, + CGROUP_INET_EGRESS = 1, + CGROUP_INET_SOCK_CREATE = 2, + CGROUP_SOCK_OPS = 3, + CGROUP_DEVICE = 4, + CGROUP_INET4_BIND = 5, + CGROUP_INET6_BIND = 6, + CGROUP_INET4_CONNECT = 7, + CGROUP_INET6_CONNECT = 8, + CGROUP_UNIX_CONNECT = 9, + CGROUP_INET4_POST_BIND = 10, + CGROUP_INET6_POST_BIND = 11, + CGROUP_UDP4_SENDMSG = 12, + CGROUP_UDP6_SENDMSG = 13, + CGROUP_UNIX_SENDMSG = 14, + CGROUP_SYSCTL = 15, + CGROUP_UDP4_RECVMSG = 16, + CGROUP_UDP6_RECVMSG = 17, + CGROUP_UNIX_RECVMSG = 18, + CGROUP_GETSOCKOPT = 19, + CGROUP_SETSOCKOPT = 20, + CGROUP_INET4_GETPEERNAME = 21, + CGROUP_INET6_GETPEERNAME = 22, + CGROUP_UNIX_GETPEERNAME = 23, + CGROUP_INET4_GETSOCKNAME = 24, + CGROUP_INET6_GETSOCKNAME = 25, + CGROUP_UNIX_GETSOCKNAME = 26, + CGROUP_INET_SOCK_RELEASE = 27, + CGROUP_LSM_START = 28, + CGROUP_LSM_END = 37, + MAX_CGROUP_BPF_ATTACH_TYPE = 38, +}; + +enum psi_task_count { + NR_IOWAIT = 0, + NR_MEMSTALL = 1, + NR_RUNNING = 2, + NR_MEMSTALL_RUNNING = 3, + NR_PSI_TASK_COUNTS = 4, +}; + +enum psi_res { + PSI_IO = 0, + PSI_MEM = 1, + PSI_CPU = 2, + NR_PSI_RESOURCES = 3, +}; + +enum psi_states { + PSI_IO_SOME = 0, + PSI_IO_FULL = 1, + PSI_MEM_SOME = 2, + PSI_MEM_FULL = 3, + PSI_CPU_SOME = 4, + PSI_CPU_FULL = 5, + PSI_NONIDLE = 6, + NR_PSI_STATES = 7, +}; + +enum psi_aggregators { + PSI_AVGS = 0, + PSI_POLL = 1, + NR_PSI_AGGREGATORS = 2, +}; + +enum cgroup_subsys_id { + cpuset_cgrp_id = 0, + cpu_cgrp_id = 1, + cpuacct_cgrp_id = 2, + io_cgrp_id = 3, + memory_cgrp_id = 4, + devices_cgrp_id = 5, + freezer_cgrp_id = 6, + net_cls_cgrp_id = 7, + perf_event_cgrp_id = 8, + net_prio_cgrp_id = 9, + hugetlb_cgrp_id = 10, + pids_cgrp_id = 11, + rdma_cgrp_id = 12, + misc_cgrp_id = 13, + dmem_cgrp_id = 14, + CGROUP_SUBSYS_COUNT = 15, +}; + +enum wb_stat_item { + WB_RECLAIMABLE = 0, + WB_WRITEBACK = 1, + WB_DIRTIED = 2, + WB_WRITTEN = 3, + NR_WB_STAT_ITEMS = 4, +}; + +enum memcg_memory_event { + MEMCG_LOW = 0, + MEMCG_HIGH = 1, + MEMCG_MAX = 2, + MEMCG_OOM = 3, + MEMCG_OOM_KILL = 4, + MEMCG_OOM_GROUP_KILL = 5, + MEMCG_SWAP_HIGH = 6, + MEMCG_SWAP_MAX = 7, + MEMCG_SWAP_FAIL = 8, + MEMCG_NR_MEMORY_EVENTS = 9, +}; + +enum page_memcg_data_flags { + MEMCG_DATA_OBJEXTS = 1, + MEMCG_DATA_KMEM = 2, + __NR_MEMCG_DATA_FLAGS = 4, +}; + +struct swap_cluster_info { + spinlock_t lock; + u16 count; + u8 flags; + u8 order; + struct list_head list; +}; + +struct swap_sequential_cluster { + unsigned int next[10]; +}; + +struct vdso_exception_table_entry { + int insn; + int fixup; +}; + +enum { + MM_FILEPAGES = 0, + MM_ANONPAGES = 1, + MM_SWAPENTS = 2, + MM_SHMEMPAGES = 3, + NR_MM_COUNTERS = 4, +}; + +enum utf8_normalization { + UTF8_NFDI = 0, + UTF8_NFDICF = 1, + UTF8_NMAX = 2, +}; + +enum { + DQF_ROOT_SQUASH_B = 0, + DQF_SYS_FILE_B = 16, + DQF_PRIVATE = 17, +}; + +enum { + DQST_LOOKUPS = 0, + DQST_DROPS = 1, + DQST_READS = 2, + DQST_WRITES = 3, + DQST_CACHE_HITS = 4, + DQST_ALLOC_DQUOTS = 5, + DQST_FREE_DQUOTS = 6, + DQST_SYNCS = 7, + _DQST_DQSTAT_LAST = 8, +}; + +enum { + SB_UNFROZEN = 0, + SB_FREEZE_WRITE = 1, + SB_FREEZE_PAGEFAULT = 2, + SB_FREEZE_FS = 3, + SB_FREEZE_COMPLETE = 4, +}; + +typedef long unsigned int p4dval_t; + +typedef struct { + p4dval_t p4d; +} p4d_t; + +typedef struct { + void *lock; +} class_preempt_notrace_t; + +enum fixed_addresses { + VSYSCALL_PAGE = 511, + FIX_DBGP_BASE = 512, + FIX_EARLYCON_MEM_BASE = 513, + FIX_APIC_BASE = 514, + FIX_IO_APIC_BASE_0 = 515, + FIX_IO_APIC_BASE_END = 642, + __end_of_permanent_fixed_addresses = 643, + FIX_BTMAP_END = 1024, + FIX_BTMAP_BEGIN = 1535, + FIX_TBOOT_BASE = 1536, + __end_of_fixed_addresses = 1537, +}; + +struct ring_buffer_event { + u32 type_len: 5; + u32 time_delta: 27; + u32 array[0]; +}; + +struct bpf_raw_tp_link { + struct bpf_link link; + struct bpf_raw_event_map *btp; + u64 cookie; +}; + +struct trace_buffer; + +struct trace_event_file; + +struct trace_event_buffer { + struct trace_buffer *buffer; + struct ring_buffer_event *event; + struct trace_event_file *trace_file; + void *entry; + unsigned int trace_ctx; + struct pt_regs *regs; +}; + +struct eventfs_inode; + +struct trace_subsystem_dir; + +struct trace_event_file { + struct list_head list; + struct trace_event_call *event_call; + struct event_filter *filter; + struct eventfs_inode *ei; + struct trace_array *tr; + struct trace_subsystem_dir *system; + struct list_head triggers; + long unsigned int flags; + refcount_t ref; + atomic_t sm_ref; + atomic_t tm_ref; +}; + +enum { + TRACE_EVENT_FL_CAP_ANY = 1, + TRACE_EVENT_FL_NO_SET_FILTER = 2, + TRACE_EVENT_FL_IGNORE_ENABLE = 4, + TRACE_EVENT_FL_TRACEPOINT = 8, + TRACE_EVENT_FL_DYNAMIC = 16, + TRACE_EVENT_FL_KPROBE = 32, + TRACE_EVENT_FL_UPROBE = 64, + TRACE_EVENT_FL_EPROBE = 128, + TRACE_EVENT_FL_FPROBE = 256, + TRACE_EVENT_FL_CUSTOM = 512, + TRACE_EVENT_FL_TEST_STR = 1024, +}; + +enum { + EVENT_FILE_FL_ENABLED = 1, + EVENT_FILE_FL_RECORDED_CMD = 2, + EVENT_FILE_FL_RECORDED_TGID = 4, + EVENT_FILE_FL_FILTERED = 8, + EVENT_FILE_FL_NO_SET_FILTER = 16, + EVENT_FILE_FL_SOFT_DISABLED = 32, + EVENT_FILE_FL_TRIGGER_MODE = 64, + EVENT_FILE_FL_TRIGGER_COND = 128, + EVENT_FILE_FL_PID_FILTER = 256, + EVENT_FILE_FL_WAS_ENABLED = 512, + EVENT_FILE_FL_FREED = 1024, +}; + +enum { + FILTER_OTHER = 0, + FILTER_STATIC_STRING = 1, + FILTER_DYN_STRING = 2, + FILTER_RDYN_STRING = 3, + FILTER_PTR_STRING = 4, + FILTER_TRACE_FN = 5, + FILTER_CPUMASK = 6, + FILTER_COMM = 7, + FILTER_CPU = 8, + FILTER_STACKTRACE = 9, +}; + +struct trace_event_raw_emulate_vsyscall { + struct trace_entry ent; + int nr; + char __data[0]; +}; + +struct trace_event_data_offsets_emulate_vsyscall {}; + +typedef void (*btf_trace_emulate_vsyscall)(void *, int); + +enum { + EMULATE = 0, + XONLY = 1, + NONE = 2, +}; + +struct fred_info { + long unsigned int edata; + long unsigned int resv; +}; + +struct fred_frame { + struct pt_regs regs; + struct fred_info info; +}; + +typedef void (*idtentry_t)(struct pt_regs *); + +enum perf_type_id { + PERF_TYPE_HARDWARE = 0, + PERF_TYPE_SOFTWARE = 1, + PERF_TYPE_TRACEPOINT = 2, + PERF_TYPE_HW_CACHE = 3, + PERF_TYPE_RAW = 4, + PERF_TYPE_BREAKPOINT = 5, + PERF_TYPE_MAX = 6, +}; + +enum perf_hw_id { + PERF_COUNT_HW_CPU_CYCLES = 0, + PERF_COUNT_HW_INSTRUCTIONS = 1, + PERF_COUNT_HW_CACHE_REFERENCES = 2, + PERF_COUNT_HW_CACHE_MISSES = 3, + PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 4, + PERF_COUNT_HW_BRANCH_MISSES = 5, + PERF_COUNT_HW_BUS_CYCLES = 6, + PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 7, + PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 8, + PERF_COUNT_HW_REF_CPU_CYCLES = 9, + PERF_COUNT_HW_MAX = 10, +}; + +enum perf_hw_cache_id { + PERF_COUNT_HW_CACHE_L1D = 0, + PERF_COUNT_HW_CACHE_L1I = 1, + PERF_COUNT_HW_CACHE_LL = 2, + PERF_COUNT_HW_CACHE_DTLB = 3, + PERF_COUNT_HW_CACHE_ITLB = 4, + PERF_COUNT_HW_CACHE_BPU = 5, + PERF_COUNT_HW_CACHE_NODE = 6, + PERF_COUNT_HW_CACHE_MAX = 7, +}; + +enum perf_hw_cache_op_id { + PERF_COUNT_HW_CACHE_OP_READ = 0, + PERF_COUNT_HW_CACHE_OP_WRITE = 1, + PERF_COUNT_HW_CACHE_OP_PREFETCH = 2, + PERF_COUNT_HW_CACHE_OP_MAX = 3, +}; + +enum perf_hw_cache_op_result_id { + PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0, + PERF_COUNT_HW_CACHE_RESULT_MISS = 1, + PERF_COUNT_HW_CACHE_RESULT_MAX = 2, +}; + +enum perf_event_sample_format { + PERF_SAMPLE_IP = 1, + PERF_SAMPLE_TID = 2, + PERF_SAMPLE_TIME = 4, + PERF_SAMPLE_ADDR = 8, + PERF_SAMPLE_READ = 16, + PERF_SAMPLE_CALLCHAIN = 32, + PERF_SAMPLE_ID = 64, + PERF_SAMPLE_CPU = 128, + PERF_SAMPLE_PERIOD = 256, + PERF_SAMPLE_STREAM_ID = 512, + PERF_SAMPLE_RAW = 1024, + PERF_SAMPLE_BRANCH_STACK = 2048, + PERF_SAMPLE_REGS_USER = 4096, + PERF_SAMPLE_STACK_USER = 8192, + PERF_SAMPLE_WEIGHT = 16384, + PERF_SAMPLE_DATA_SRC = 32768, + PERF_SAMPLE_IDENTIFIER = 65536, + PERF_SAMPLE_TRANSACTION = 131072, + PERF_SAMPLE_REGS_INTR = 262144, + PERF_SAMPLE_PHYS_ADDR = 524288, + PERF_SAMPLE_AUX = 1048576, + PERF_SAMPLE_CGROUP = 2097152, + PERF_SAMPLE_DATA_PAGE_SIZE = 4194304, + PERF_SAMPLE_CODE_PAGE_SIZE = 8388608, + PERF_SAMPLE_WEIGHT_STRUCT = 16777216, + PERF_SAMPLE_MAX = 33554432, +}; + +enum perf_branch_sample_type_shift { + PERF_SAMPLE_BRANCH_USER_SHIFT = 0, + PERF_SAMPLE_BRANCH_KERNEL_SHIFT = 1, + PERF_SAMPLE_BRANCH_HV_SHIFT = 2, + PERF_SAMPLE_BRANCH_ANY_SHIFT = 3, + PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT = 4, + PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT = 5, + PERF_SAMPLE_BRANCH_IND_CALL_SHIFT = 6, + PERF_SAMPLE_BRANCH_ABORT_TX_SHIFT = 7, + PERF_SAMPLE_BRANCH_IN_TX_SHIFT = 8, + PERF_SAMPLE_BRANCH_NO_TX_SHIFT = 9, + PERF_SAMPLE_BRANCH_COND_SHIFT = 10, + PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT = 11, + PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT = 12, + PERF_SAMPLE_BRANCH_CALL_SHIFT = 13, + PERF_SAMPLE_BRANCH_NO_FLAGS_SHIFT = 14, + PERF_SAMPLE_BRANCH_NO_CYCLES_SHIFT = 15, + PERF_SAMPLE_BRANCH_TYPE_SAVE_SHIFT = 16, + PERF_SAMPLE_BRANCH_HW_INDEX_SHIFT = 17, + PERF_SAMPLE_BRANCH_PRIV_SAVE_SHIFT = 18, + PERF_SAMPLE_BRANCH_COUNTERS_SHIFT = 19, + PERF_SAMPLE_BRANCH_MAX_SHIFT = 20, +}; + +enum perf_branch_sample_type { + PERF_SAMPLE_BRANCH_USER = 1, + PERF_SAMPLE_BRANCH_KERNEL = 2, + PERF_SAMPLE_BRANCH_HV = 4, + PERF_SAMPLE_BRANCH_ANY = 8, + PERF_SAMPLE_BRANCH_ANY_CALL = 16, + PERF_SAMPLE_BRANCH_ANY_RETURN = 32, + PERF_SAMPLE_BRANCH_IND_CALL = 64, + PERF_SAMPLE_BRANCH_ABORT_TX = 128, + PERF_SAMPLE_BRANCH_IN_TX = 256, + PERF_SAMPLE_BRANCH_NO_TX = 512, + PERF_SAMPLE_BRANCH_COND = 1024, + PERF_SAMPLE_BRANCH_CALL_STACK = 2048, + PERF_SAMPLE_BRANCH_IND_JUMP = 4096, + PERF_SAMPLE_BRANCH_CALL = 8192, + PERF_SAMPLE_BRANCH_NO_FLAGS = 16384, + PERF_SAMPLE_BRANCH_NO_CYCLES = 32768, + PERF_SAMPLE_BRANCH_TYPE_SAVE = 65536, + PERF_SAMPLE_BRANCH_HW_INDEX = 131072, + PERF_SAMPLE_BRANCH_PRIV_SAVE = 262144, + PERF_SAMPLE_BRANCH_COUNTERS = 524288, + PERF_SAMPLE_BRANCH_MAX = 1048576, +}; + +struct perf_event_mmap_page { + __u32 version; + __u32 compat_version; + __u32 lock; + __u32 index; + __s64 offset; + __u64 time_enabled; + __u64 time_running; + union { + __u64 capabilities; + struct { + __u64 cap_bit0: 1; + __u64 cap_bit0_is_deprecated: 1; + __u64 cap_user_rdpmc: 1; + __u64 cap_user_time: 1; + __u64 cap_user_time_zero: 1; + __u64 cap_user_time_short: 1; + __u64 cap_____res: 58; + }; + }; + __u16 pmc_width; + __u16 time_shift; + __u32 time_mult; + __u64 time_offset; + __u64 time_zero; + __u32 size; + __u32 __reserved_1; + __u64 time_cycles; + __u64 time_mask; + __u8 __reserved[928]; + __u64 data_head; + __u64 data_tail; + __u64 data_offset; + __u64 data_size; + __u64 aux_head; + __u64 aux_tail; + __u64 aux_offset; + __u64 aux_size; +}; + +typedef struct { + void *lock; + long unsigned int flags; +} class_irqsave_t; + +typedef bool (*smp_cond_func_t)(int, void *); + +struct ldt_struct { + struct desc_struct *entries; + unsigned int nr_entries; + int slot; +}; + +struct device_attribute { + struct attribute attr; + ssize_t (*show)(struct device *, struct device_attribute *, char *); + ssize_t (*store)(struct device *, struct device_attribute *, const char *, size_t); +}; + +enum cpuhp_state { + CPUHP_INVALID = -1, + CPUHP_OFFLINE = 0, + CPUHP_CREATE_THREADS = 1, + CPUHP_PERF_X86_PREPARE = 2, + CPUHP_PERF_X86_AMD_UNCORE_PREP = 3, + CPUHP_PERF_POWER = 4, + CPUHP_PERF_SUPERH = 5, + CPUHP_X86_HPET_DEAD = 6, + CPUHP_X86_MCE_DEAD = 7, + CPUHP_VIRT_NET_DEAD = 8, + CPUHP_IBMVNIC_DEAD = 9, + CPUHP_SLUB_DEAD = 10, + CPUHP_DEBUG_OBJ_DEAD = 11, + CPUHP_MM_WRITEBACK_DEAD = 12, + CPUHP_MM_VMSTAT_DEAD = 13, + CPUHP_SOFTIRQ_DEAD = 14, + CPUHP_NET_MVNETA_DEAD = 15, + CPUHP_CPUIDLE_DEAD = 16, + CPUHP_ARM64_FPSIMD_DEAD = 17, + CPUHP_ARM_OMAP_WAKE_DEAD = 18, + CPUHP_IRQ_POLL_DEAD = 19, + CPUHP_BLOCK_SOFTIRQ_DEAD = 20, + CPUHP_BIO_DEAD = 21, + CPUHP_ACPI_CPUDRV_DEAD = 22, + CPUHP_S390_PFAULT_DEAD = 23, + CPUHP_BLK_MQ_DEAD = 24, + CPUHP_FS_BUFF_DEAD = 25, + CPUHP_PRINTK_DEAD = 26, + CPUHP_MM_MEMCQ_DEAD = 27, + CPUHP_PERCPU_CNT_DEAD = 28, + CPUHP_RADIX_DEAD = 29, + CPUHP_PAGE_ALLOC = 30, + CPUHP_NET_DEV_DEAD = 31, + CPUHP_IOMMU_IOVA_DEAD = 32, + CPUHP_AP_ARM_CACHE_B15_RAC_DEAD = 33, + CPUHP_PADATA_DEAD = 34, + CPUHP_AP_DTPM_CPU_DEAD = 35, + CPUHP_RANDOM_PREPARE = 36, + CPUHP_WORKQUEUE_PREP = 37, + CPUHP_POWER_NUMA_PREPARE = 38, + CPUHP_HRTIMERS_PREPARE = 39, + CPUHP_X2APIC_PREPARE = 40, + CPUHP_SMPCFD_PREPARE = 41, + CPUHP_RELAY_PREPARE = 42, + CPUHP_MD_RAID5_PREPARE = 43, + CPUHP_RCUTREE_PREP = 44, + CPUHP_CPUIDLE_COUPLED_PREPARE = 45, + CPUHP_POWERPC_PMAC_PREPARE = 46, + CPUHP_POWERPC_MMU_CTX_PREPARE = 47, + CPUHP_XEN_PREPARE = 48, + CPUHP_XEN_EVTCHN_PREPARE = 49, + CPUHP_ARM_SHMOBILE_SCU_PREPARE = 50, + CPUHP_SH_SH3X_PREPARE = 51, + CPUHP_TOPOLOGY_PREPARE = 52, + CPUHP_NET_IUCV_PREPARE = 53, + CPUHP_ARM_BL_PREPARE = 54, + CPUHP_TRACE_RB_PREPARE = 55, + CPUHP_MM_ZSWP_POOL_PREPARE = 56, + CPUHP_KVM_PPC_BOOK3S_PREPARE = 57, + CPUHP_ZCOMP_PREPARE = 58, + CPUHP_TIMERS_PREPARE = 59, + CPUHP_TMIGR_PREPARE = 60, + CPUHP_MIPS_SOC_PREPARE = 61, + CPUHP_BP_PREPARE_DYN = 62, + CPUHP_BP_PREPARE_DYN_END = 82, + CPUHP_BP_KICK_AP = 83, + CPUHP_BRINGUP_CPU = 84, + CPUHP_AP_IDLE_DEAD = 85, + CPUHP_AP_OFFLINE = 86, + CPUHP_AP_CACHECTRL_STARTING = 87, + CPUHP_AP_SCHED_STARTING = 88, + CPUHP_AP_RCUTREE_DYING = 89, + CPUHP_AP_CPU_PM_STARTING = 90, + CPUHP_AP_IRQ_GIC_STARTING = 91, + CPUHP_AP_IRQ_HIP04_STARTING = 92, + CPUHP_AP_IRQ_APPLE_AIC_STARTING = 93, + CPUHP_AP_IRQ_ARMADA_XP_STARTING = 94, + CPUHP_AP_IRQ_BCM2836_STARTING = 95, + CPUHP_AP_IRQ_MIPS_GIC_STARTING = 96, + CPUHP_AP_IRQ_EIOINTC_STARTING = 97, + CPUHP_AP_IRQ_AVECINTC_STARTING = 98, + CPUHP_AP_IRQ_SIFIVE_PLIC_STARTING = 99, + CPUHP_AP_IRQ_ACLINT_SSWI_STARTING = 100, + CPUHP_AP_IRQ_RISCV_IMSIC_STARTING = 101, + CPUHP_AP_IRQ_RISCV_SBI_IPI_STARTING = 102, + CPUHP_AP_ARM_MVEBU_COHERENCY = 103, + CPUHP_AP_PERF_X86_AMD_UNCORE_STARTING = 104, + CPUHP_AP_PERF_X86_STARTING = 105, + CPUHP_AP_PERF_X86_AMD_IBS_STARTING = 106, + CPUHP_AP_PERF_XTENSA_STARTING = 107, + CPUHP_AP_ARM_VFP_STARTING = 108, + CPUHP_AP_ARM64_DEBUG_MONITORS_STARTING = 109, + CPUHP_AP_PERF_ARM_HW_BREAKPOINT_STARTING = 110, + CPUHP_AP_PERF_ARM_ACPI_STARTING = 111, + CPUHP_AP_PERF_ARM_STARTING = 112, + CPUHP_AP_PERF_RISCV_STARTING = 113, + CPUHP_AP_ARM_L2X0_STARTING = 114, + CPUHP_AP_EXYNOS4_MCT_TIMER_STARTING = 115, + CPUHP_AP_ARM_ARCH_TIMER_STARTING = 116, + CPUHP_AP_ARM_ARCH_TIMER_EVTSTRM_STARTING = 117, + CPUHP_AP_ARM_GLOBAL_TIMER_STARTING = 118, + CPUHP_AP_JCORE_TIMER_STARTING = 119, + CPUHP_AP_ARM_TWD_STARTING = 120, + CPUHP_AP_QCOM_TIMER_STARTING = 121, + CPUHP_AP_TEGRA_TIMER_STARTING = 122, + CPUHP_AP_ARMADA_TIMER_STARTING = 123, + CPUHP_AP_LOONGARCH_ARCH_TIMER_STARTING = 124, + CPUHP_AP_MIPS_GIC_TIMER_STARTING = 125, + CPUHP_AP_ARC_TIMER_STARTING = 126, + CPUHP_AP_REALTEK_TIMER_STARTING = 127, + CPUHP_AP_RISCV_TIMER_STARTING = 128, + CPUHP_AP_CLINT_TIMER_STARTING = 129, + CPUHP_AP_CSKY_TIMER_STARTING = 130, + CPUHP_AP_TI_GP_TIMER_STARTING = 131, + CPUHP_AP_HYPERV_TIMER_STARTING = 132, + CPUHP_AP_DUMMY_TIMER_STARTING = 133, + CPUHP_AP_ARM_XEN_STARTING = 134, + CPUHP_AP_ARM_XEN_RUNSTATE_STARTING = 135, + CPUHP_AP_ARM_CORESIGHT_STARTING = 136, + CPUHP_AP_ARM_CORESIGHT_CTI_STARTING = 137, + CPUHP_AP_ARM64_ISNDEP_STARTING = 138, + CPUHP_AP_SMPCFD_DYING = 139, + CPUHP_AP_HRTIMERS_DYING = 140, + CPUHP_AP_TICK_DYING = 141, + CPUHP_AP_X86_TBOOT_DYING = 142, + CPUHP_AP_ARM_CACHE_B15_RAC_DYING = 143, + CPUHP_AP_ONLINE = 144, + CPUHP_TEARDOWN_CPU = 145, + CPUHP_AP_ONLINE_IDLE = 146, + CPUHP_AP_HYPERV_ONLINE = 147, + CPUHP_AP_KVM_ONLINE = 148, + CPUHP_AP_SCHED_WAIT_EMPTY = 149, + CPUHP_AP_SMPBOOT_THREADS = 150, + CPUHP_AP_IRQ_AFFINITY_ONLINE = 151, + CPUHP_AP_BLK_MQ_ONLINE = 152, + CPUHP_AP_ARM_MVEBU_SYNC_CLOCKS = 153, + CPUHP_AP_X86_INTEL_EPB_ONLINE = 154, + CPUHP_AP_PERF_ONLINE = 155, + CPUHP_AP_PERF_X86_ONLINE = 156, + CPUHP_AP_PERF_X86_UNCORE_ONLINE = 157, + CPUHP_AP_PERF_X86_AMD_UNCORE_ONLINE = 158, + CPUHP_AP_PERF_X86_AMD_POWER_ONLINE = 159, + CPUHP_AP_PERF_S390_CF_ONLINE = 160, + CPUHP_AP_PERF_S390_SF_ONLINE = 161, + CPUHP_AP_PERF_ARM_CCI_ONLINE = 162, + CPUHP_AP_PERF_ARM_CCN_ONLINE = 163, + CPUHP_AP_PERF_ARM_HISI_CPA_ONLINE = 164, + CPUHP_AP_PERF_ARM_HISI_DDRC_ONLINE = 165, + CPUHP_AP_PERF_ARM_HISI_HHA_ONLINE = 166, + CPUHP_AP_PERF_ARM_HISI_L3_ONLINE = 167, + CPUHP_AP_PERF_ARM_HISI_PA_ONLINE = 168, + CPUHP_AP_PERF_ARM_HISI_SLLC_ONLINE = 169, + CPUHP_AP_PERF_ARM_HISI_PCIE_PMU_ONLINE = 170, + CPUHP_AP_PERF_ARM_HNS3_PMU_ONLINE = 171, + CPUHP_AP_PERF_ARM_L2X0_ONLINE = 172, + CPUHP_AP_PERF_ARM_QCOM_L2_ONLINE = 173, + CPUHP_AP_PERF_ARM_QCOM_L3_ONLINE = 174, + CPUHP_AP_PERF_ARM_APM_XGENE_ONLINE = 175, + CPUHP_AP_PERF_ARM_CAVIUM_TX2_UNCORE_ONLINE = 176, + CPUHP_AP_PERF_ARM_MARVELL_CN10K_DDR_ONLINE = 177, + CPUHP_AP_PERF_ARM_MRVL_PEM_ONLINE = 178, + CPUHP_AP_PERF_POWERPC_NEST_IMC_ONLINE = 179, + CPUHP_AP_PERF_POWERPC_CORE_IMC_ONLINE = 180, + CPUHP_AP_PERF_POWERPC_THREAD_IMC_ONLINE = 181, + CPUHP_AP_PERF_POWERPC_TRACE_IMC_ONLINE = 182, + CPUHP_AP_PERF_POWERPC_HV_24x7_ONLINE = 183, + CPUHP_AP_PERF_POWERPC_HV_GPCI_ONLINE = 184, + CPUHP_AP_PERF_CSKY_ONLINE = 185, + CPUHP_AP_TMIGR_ONLINE = 186, + CPUHP_AP_WATCHDOG_ONLINE = 187, + CPUHP_AP_WORKQUEUE_ONLINE = 188, + CPUHP_AP_RANDOM_ONLINE = 189, + CPUHP_AP_RCUTREE_ONLINE = 190, + CPUHP_AP_KTHREADS_ONLINE = 191, + CPUHP_AP_BASE_CACHEINFO_ONLINE = 192, + CPUHP_AP_ONLINE_DYN = 193, + CPUHP_AP_ONLINE_DYN_END = 233, + CPUHP_AP_X86_HPET_ONLINE = 234, + CPUHP_AP_X86_KVM_CLK_ONLINE = 235, + CPUHP_AP_ACTIVE = 236, + CPUHP_ONLINE = 237, +}; + +struct x86_pmu_capability { + int version; + int num_counters_gp; + int num_counters_fixed; + int bit_width_gp; + int bit_width_fixed; + unsigned int events_mask; + int events_mask_len; + unsigned int pebs_ept: 1; +}; + +struct debug_store { + u64 bts_buffer_base; + u64 bts_index; + u64 bts_absolute_maximum; + u64 bts_interrupt_threshold; + u64 pebs_buffer_base; + u64 pebs_index; + u64 pebs_absolute_maximum; + u64 pebs_interrupt_threshold; + u64 pebs_event_reset[48]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum stack_type { + STACK_TYPE_UNKNOWN = 0, + STACK_TYPE_TASK = 1, + STACK_TYPE_IRQ = 2, + STACK_TYPE_SOFTIRQ = 3, + STACK_TYPE_ENTRY = 4, + STACK_TYPE_EXCEPTION = 5, + STACK_TYPE_EXCEPTION_LAST = 10, +}; + +struct stack_info { + enum stack_type type; + long unsigned int *begin; + long unsigned int *end; + long unsigned int *next_sp; +}; + +struct stack_frame { + struct stack_frame *next_frame; + long unsigned int return_address; +}; + +struct stack_frame_ia32 { + u32 next_frame; + u32 return_address; +}; + +struct perf_guest_switch_msr { + unsigned int msr; + u64 host; + u64 guest; +}; + +typedef struct { + u8 kvm_cpu_l1tf_flush_l1d; + unsigned int __nmi_count; + unsigned int apic_timer_irqs; + unsigned int irq_spurious_count; + unsigned int icr_read_retry_count; + unsigned int kvm_posted_intr_ipis; + unsigned int kvm_posted_intr_wakeup_ipis; + unsigned int kvm_posted_intr_nested_ipis; + unsigned int x86_platform_ipis; + unsigned int apic_perf_irqs; + unsigned int apic_irq_work_irqs; + unsigned int irq_resched_count; + unsigned int irq_call_count; + unsigned int irq_tlb_count; + unsigned int irq_thermal_count; + unsigned int irq_threshold_count; + unsigned int irq_deferred_error_count; + unsigned int irq_hv_callback_count; + unsigned int irq_hv_reenlightenment_count; + unsigned int hyperv_stimer0_count; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +} irq_cpustat_t; + +enum perf_event_x86_regs { + PERF_REG_X86_AX = 0, + PERF_REG_X86_BX = 1, + PERF_REG_X86_CX = 2, + PERF_REG_X86_DX = 3, + PERF_REG_X86_SI = 4, + PERF_REG_X86_DI = 5, + PERF_REG_X86_BP = 6, + PERF_REG_X86_SP = 7, + PERF_REG_X86_IP = 8, + PERF_REG_X86_FLAGS = 9, + PERF_REG_X86_CS = 10, + PERF_REG_X86_SS = 11, + PERF_REG_X86_DS = 12, + PERF_REG_X86_ES = 13, + PERF_REG_X86_FS = 14, + PERF_REG_X86_GS = 15, + PERF_REG_X86_R8 = 16, + PERF_REG_X86_R9 = 17, + PERF_REG_X86_R10 = 18, + PERF_REG_X86_R11 = 19, + PERF_REG_X86_R12 = 20, + PERF_REG_X86_R13 = 21, + PERF_REG_X86_R14 = 22, + PERF_REG_X86_R15 = 23, + PERF_REG_X86_32_MAX = 16, + PERF_REG_X86_64_MAX = 24, + PERF_REG_X86_XMM0 = 32, + PERF_REG_X86_XMM1 = 34, + PERF_REG_X86_XMM2 = 36, + PERF_REG_X86_XMM3 = 38, + PERF_REG_X86_XMM4 = 40, + PERF_REG_X86_XMM5 = 42, + PERF_REG_X86_XMM6 = 44, + PERF_REG_X86_XMM7 = 46, + PERF_REG_X86_XMM8 = 48, + PERF_REG_X86_XMM9 = 50, + PERF_REG_X86_XMM10 = 52, + PERF_REG_X86_XMM11 = 54, + PERF_REG_X86_XMM12 = 56, + PERF_REG_X86_XMM13 = 58, + PERF_REG_X86_XMM14 = 60, + PERF_REG_X86_XMM15 = 62, + PERF_REG_X86_XMM_MAX = 64, +}; + +struct perf_callchain_entry_ctx { + struct perf_callchain_entry *entry; + u32 max_stack; + u32 nr; + short int contexts; + bool contexts_maxed; +}; + +struct perf_pmu_events_attr { + struct device_attribute attr; + u64 id; + const char *event_str; +}; + +struct perf_pmu_events_ht_attr { + struct device_attribute attr; + u64 id; + const char *event_str_ht; + const char *event_str_noht; +}; + +struct perf_pmu_events_hybrid_attr { + struct device_attribute attr; + u64 id; + const char *event_str; + u64 pmu_type; +}; + +enum { + NMI_LOCAL = 0, + NMI_UNKNOWN = 1, + NMI_SERR = 2, + NMI_IO_CHECK = 3, + NMI_MAX = 4, +}; + +typedef int (*nmi_handler_t)(unsigned int, struct pt_regs *); + +struct nmiaction { + struct list_head list; + nmi_handler_t handler; + u64 max_duration; + long unsigned int flags; + const char *name; +}; + +struct gdt_page { + struct desc_struct gdt[16]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct cyc2ns_data { + u32 cyc2ns_mul; + u32 cyc2ns_shift; + u64 cyc2ns_offset; +}; + +struct unwind_state { + struct stack_info stack_info; + long unsigned int stack_mask; + struct task_struct *task; + int graph_idx; + struct llist_node *kr_cur; + bool error; + bool got_irq; + long unsigned int *bp; + long unsigned int *orig_sp; + long unsigned int ip; + long unsigned int *next_bp; + struct pt_regs *regs; +}; + +enum extra_reg_type { + EXTRA_REG_NONE = -1, + EXTRA_REG_RSP_0 = 0, + EXTRA_REG_RSP_1 = 1, + EXTRA_REG_LBR = 2, + EXTRA_REG_LDLAT = 3, + EXTRA_REG_FE = 4, + EXTRA_REG_SNOOP_0 = 5, + EXTRA_REG_SNOOP_1 = 6, + EXTRA_REG_MAX = 7, +}; + +struct event_constraint { + union { + long unsigned int idxmsk[1]; + u64 idxmsk64; + }; + u64 code; + u64 cmask; + int weight; + int overlap; + int flags; + unsigned int size; +}; + +enum { + PERF_X86_EVENT_PEBS_LDLAT = 1, + PERF_X86_EVENT_PEBS_ST = 2, + PERF_X86_EVENT_PEBS_ST_HSW = 4, + PERF_X86_EVENT_PEBS_LD_HSW = 8, + PERF_X86_EVENT_PEBS_NA_HSW = 16, + PERF_X86_EVENT_EXCL = 32, + PERF_X86_EVENT_DYNAMIC = 64, + PERF_X86_EVENT_PEBS_CNTR = 128, + PERF_X86_EVENT_EXCL_ACCT = 256, + PERF_X86_EVENT_AUTO_RELOAD = 512, + PERF_X86_EVENT_LARGE_PEBS = 1024, + PERF_X86_EVENT_PEBS_VIA_PT = 2048, + PERF_X86_EVENT_PAIR = 4096, + PERF_X86_EVENT_LBR_SELECT = 8192, + PERF_X86_EVENT_TOPDOWN = 16384, + PERF_X86_EVENT_PEBS_STLAT = 32768, + PERF_X86_EVENT_AMD_BRS = 65536, + PERF_X86_EVENT_PEBS_LAT_HYBRID = 131072, + PERF_X86_EVENT_NEEDS_BRANCH_STACK = 262144, + PERF_X86_EVENT_BRANCH_COUNTERS = 524288, + PERF_X86_EVENT_ACR = 1048576, +}; + +struct amd_nb { + int nb_id; + int refcnt; + struct perf_event *owners[64]; + struct event_constraint event_constraints[64]; +}; + +struct er_account { + raw_spinlock_t lock; + u64 config; + u64 reg; + atomic_t ref; +}; + +struct intel_shared_regs { + struct er_account regs[7]; + int refcnt; + unsigned int core_id; +}; + +enum intel_excl_state_type { + INTEL_EXCL_UNUSED = 0, + INTEL_EXCL_SHARED = 1, + INTEL_EXCL_EXCLUSIVE = 2, +}; + +struct intel_excl_states { + enum intel_excl_state_type state[64]; + bool sched_started; +}; + +struct intel_excl_cntrs { + raw_spinlock_t lock; + struct intel_excl_states states[2]; + union { + u16 has_exclusive[2]; + u32 exclusive_present; + }; + int refcnt; + unsigned int core_id; +}; + +enum { + X86_PERF_KFREE_SHARED = 0, + X86_PERF_KFREE_EXCL = 1, + X86_PERF_KFREE_MAX = 2, +}; + +struct cpu_hw_events { + struct perf_event *events[64]; + long unsigned int active_mask[1]; + long unsigned int dirty[1]; + int enabled; + int n_events; + int n_added; + int n_txn; + int n_txn_pair; + int n_txn_metric; + int assign[64]; + u64 tags[64]; + struct perf_event *event_list[64]; + struct event_constraint *event_constraint[64]; + int n_excl; + int n_late_setup; + unsigned int txn_flags; + int is_fake; + struct debug_store *ds; + void *ds_pebs_vaddr; + void *ds_bts_vaddr; + u64 pebs_enabled; + int n_pebs; + int n_large_pebs; + int n_pebs_via_pt; + int pebs_output; + u64 pebs_data_cfg; + u64 active_pebs_data_cfg; + int pebs_record_size; + u64 fixed_ctrl_val; + u64 active_fixed_ctrl_val; + u64 acr_cfg_b[64]; + u64 acr_cfg_c[64]; + int lbr_users; + int lbr_pebs_users; + struct perf_branch_stack lbr_stack; + struct perf_branch_entry lbr_entries[32]; + u64 lbr_counters[32]; + union { + struct er_account *lbr_sel; + struct er_account *lbr_ctl; + }; + u64 br_sel; + void *last_task_ctx; + int last_log_id; + int lbr_select; + void *lbr_xsave; + u64 intel_ctrl_guest_mask; + u64 intel_ctrl_host_mask; + struct perf_guest_switch_msr guest_switch_msrs[64]; + u64 intel_cp_status; + struct intel_shared_regs *shared_regs; + struct event_constraint *constraint_list; + struct intel_excl_cntrs *excl_cntrs; + int excl_thread_id; + u64 tfa_shadow; + int n_metric; + struct amd_nb *amd_nb; + int brs_active; + u64 perf_ctr_virt_mask; + int n_pair; + void *kfree_on_online[2]; + struct pmu *pmu; +}; + +struct extra_reg { + unsigned int event; + unsigned int msr; + u64 config_mask; + u64 valid_mask; + int idx; + bool extra_msr_access; +}; + +union perf_capabilities { + struct { + u64 lbr_format: 6; + u64 pebs_trap: 1; + u64 pebs_arch_reg: 1; + u64 pebs_format: 4; + u64 smm_freeze: 1; + u64 full_width_write: 1; + u64 pebs_baseline: 1; + u64 perf_metrics: 1; + u64 pebs_output_pt_available: 1; + u64 pebs_timing_info: 1; + u64 anythread_deprecated: 1; + u64 rdpmc_metrics_clear: 1; + }; + u64 capabilities; +}; + +struct x86_pmu_quirk { + struct x86_pmu_quirk *next; + void (*func)(void); +}; + +enum { + x86_lbr_exclusive_lbr = 0, + x86_lbr_exclusive_bts = 1, + x86_lbr_exclusive_pt = 2, + x86_lbr_exclusive_max = 3, +}; + +enum hybrid_pmu_type { + not_hybrid = 0, + hybrid_small = 1, + hybrid_big = 2, + hybrid_tiny = 4, + hybrid_big_small = 3, + hybrid_small_tiny = 5, + hybrid_big_small_tiny = 7, +}; + +struct x86_hybrid_pmu { + struct pmu pmu; + const char *name; + enum hybrid_pmu_type pmu_type; + cpumask_t supported_cpus; + union perf_capabilities intel_cap; + u64 intel_ctrl; + u64 pebs_events_mask; + u64 config_mask; + union { + u64 cntr_mask64; + long unsigned int cntr_mask[1]; + }; + union { + u64 fixed_cntr_mask64; + long unsigned int fixed_cntr_mask[1]; + }; + union { + u64 acr_cntr_mask64; + long unsigned int acr_cntr_mask[1]; + }; + union { + u64 acr_cause_mask64; + long unsigned int acr_cause_mask[1]; + }; + struct event_constraint unconstrained; + u64 hw_cache_event_ids[42]; + u64 hw_cache_extra_regs[42]; + struct event_constraint *event_constraints; + struct event_constraint *pebs_constraints; + struct extra_reg *extra_regs; + unsigned int late_ack: 1; + unsigned int mid_ack: 1; + unsigned int enabled_ack: 1; + u64 pebs_data_source[256]; +}; + +enum intel_cpu_type { + INTEL_CPU_TYPE_UNKNOWN = 0, + INTEL_CPU_TYPE_ATOM = 32, + INTEL_CPU_TYPE_CORE = 64, +}; + +struct x86_pmu { + const char *name; + int version; + int (*handle_irq)(struct pt_regs *); + void (*disable_all)(void); + void (*enable_all)(int); + void (*enable)(struct perf_event *); + void (*disable)(struct perf_event *); + void (*assign)(struct perf_event *, int); + void (*add)(struct perf_event *); + void (*del)(struct perf_event *); + void (*read)(struct perf_event *); + int (*set_period)(struct perf_event *); + u64 (*update)(struct perf_event *); + int (*hw_config)(struct perf_event *); + int (*schedule_events)(struct cpu_hw_events *, int, int *); + void (*late_setup)(void); + void (*pebs_enable)(struct perf_event *); + void (*pebs_disable)(struct perf_event *); + void (*pebs_enable_all)(void); + void (*pebs_disable_all)(void); + unsigned int eventsel; + unsigned int perfctr; + unsigned int fixedctr; + int (*addr_offset)(int, bool); + int (*rdpmc_index)(int); + u64 (*event_map)(int); + int max_events; + u64 config_mask; + union { + u64 cntr_mask64; + long unsigned int cntr_mask[1]; + }; + union { + u64 fixed_cntr_mask64; + long unsigned int fixed_cntr_mask[1]; + }; + union { + u64 acr_cntr_mask64; + long unsigned int acr_cntr_mask[1]; + }; + union { + u64 acr_cause_mask64; + long unsigned int acr_cause_mask[1]; + }; + int cntval_bits; + u64 cntval_mask; + union { + long unsigned int events_maskl; + long unsigned int events_mask[1]; + }; + int events_mask_len; + int apic; + u64 max_period; + struct event_constraint * (*get_event_constraints)(struct cpu_hw_events *, int, struct perf_event *); + void (*put_event_constraints)(struct cpu_hw_events *, struct perf_event *); + void (*start_scheduling)(struct cpu_hw_events *); + void (*commit_scheduling)(struct cpu_hw_events *, int, int); + void (*stop_scheduling)(struct cpu_hw_events *); + struct event_constraint *event_constraints; + struct x86_pmu_quirk *quirks; + void (*limit_period)(struct perf_event *, s64 *); + unsigned int late_ack: 1; + unsigned int mid_ack: 1; + unsigned int enabled_ack: 1; + int attr_rdpmc_broken; + int attr_rdpmc; + struct attribute **format_attrs; + ssize_t (*events_sysfs_show)(char *, u64); + const struct attribute_group **attr_update; + long unsigned int attr_freeze_on_smi; + int (*cpu_prepare)(int); + void (*cpu_starting)(int); + void (*cpu_dying)(int); + void (*cpu_dead)(int); + void (*check_microcode)(void); + void (*sched_task)(struct perf_event_pmu_context *, struct task_struct *, bool); + u64 intel_ctrl; + union perf_capabilities intel_cap; + unsigned int bts: 1; + unsigned int bts_active: 1; + unsigned int ds_pebs: 1; + unsigned int pebs_active: 1; + unsigned int pebs_broken: 1; + unsigned int pebs_prec_dist: 1; + unsigned int pebs_no_tlb: 1; + unsigned int pebs_no_isolation: 1; + unsigned int pebs_block: 1; + unsigned int pebs_ept: 1; + int pebs_record_size; + int pebs_buffer_size; + u64 pebs_events_mask; + void (*drain_pebs)(struct pt_regs *, struct perf_sample_data *); + struct event_constraint *pebs_constraints; + void (*pebs_aliases)(struct perf_event *); + u64 (*pebs_latency_data)(struct perf_event *, u64); + long unsigned int large_pebs_flags; + u64 rtm_abort_event; + u64 pebs_capable; + unsigned int lbr_tos; + unsigned int lbr_from; + unsigned int lbr_to; + unsigned int lbr_info; + unsigned int lbr_nr; + union { + u64 lbr_sel_mask; + u64 lbr_ctl_mask; + }; + union { + const int *lbr_sel_map; + int *lbr_ctl_map; + }; + u64 lbr_callstack_users; + bool lbr_double_abort; + bool lbr_pt_coexist; + unsigned int lbr_has_info: 1; + unsigned int lbr_has_tsx: 1; + unsigned int lbr_from_flags: 1; + unsigned int lbr_to_cycles: 1; + unsigned int lbr_depth_mask: 8; + unsigned int lbr_deep_c_reset: 1; + unsigned int lbr_lip: 1; + unsigned int lbr_cpl: 1; + unsigned int lbr_filter: 1; + unsigned int lbr_call_stack: 1; + unsigned int lbr_mispred: 1; + unsigned int lbr_timed_lbr: 1; + unsigned int lbr_br_type: 1; + unsigned int lbr_counters: 4; + void (*lbr_reset)(void); + void (*lbr_read)(struct cpu_hw_events *); + void (*lbr_save)(void *); + void (*lbr_restore)(void *); + atomic_t lbr_exclusive[3]; + int num_topdown_events; + unsigned int amd_nb_constraints: 1; + u64 perf_ctr_pair_en; + struct extra_reg *extra_regs; + unsigned int flags; + struct perf_guest_switch_msr * (*guest_get_msrs)(int *, void *); + int (*check_period)(struct perf_event *, u64); + int (*aux_output_match)(struct perf_event *); + void (*filter)(struct pmu *, int, bool *); + int num_hybrid_pmus; + struct x86_hybrid_pmu *hybrid_pmu; + enum intel_cpu_type (*get_hybrid_cpu_type)(void); +}; + +struct sched_state { + int weight; + int event; + int counter; + int unassigned; + int nr_gp; + u64 used; +}; + +struct perf_sched { + int max_weight; + int max_events; + int max_gp; + int saved_states; + struct event_constraint **constraints; + struct sched_state state; + struct sched_state saved[2]; +}; + +enum x86_topology_domains { + TOPO_SMT_DOMAIN = 0, + TOPO_CORE_DOMAIN = 1, + TOPO_MODULE_DOMAIN = 2, + TOPO_TILE_DOMAIN = 3, + TOPO_DIE_DOMAIN = 4, + TOPO_DIEGRP_DOMAIN = 5, + TOPO_PKG_DOMAIN = 6, + TOPO_MAX_DOMAIN = 7, +}; + +struct perf_msr { + u64 msr; + struct attribute_group *grp; + bool (*test)(int, void *); + bool no_check; + u64 mask; +}; + +enum { + PERF_BR_UNKNOWN = 0, + PERF_BR_COND = 1, + PERF_BR_UNCOND = 2, + PERF_BR_IND = 3, + PERF_BR_CALL = 4, + PERF_BR_IND_CALL = 5, + PERF_BR_RET = 6, + PERF_BR_SYSCALL = 7, + PERF_BR_SYSRET = 8, + PERF_BR_COND_CALL = 9, + PERF_BR_COND_RET = 10, + PERF_BR_ERET = 11, + PERF_BR_IRQ = 12, + PERF_BR_SERROR = 13, + PERF_BR_NO_TX = 14, + PERF_BR_EXTEND_ABI = 15, + PERF_BR_MAX = 16, +}; + +enum { + X86_BR_NONE = 0, + X86_BR_USER = 1, + X86_BR_KERNEL = 2, + X86_BR_CALL = 4, + X86_BR_RET = 8, + X86_BR_SYSCALL = 16, + X86_BR_SYSRET = 32, + X86_BR_INT = 64, + X86_BR_IRET = 128, + X86_BR_JCC = 256, + X86_BR_JMP = 512, + X86_BR_IRQ = 1024, + X86_BR_IND_CALL = 2048, + X86_BR_ABORT = 4096, + X86_BR_IN_TX = 8192, + X86_BR_NO_TX = 16384, + X86_BR_ZERO_CALL = 32768, + X86_BR_CALL_STACK = 65536, + X86_BR_IND_JMP = 131072, + X86_BR_TYPE_SAVE = 262144, +}; + +typedef struct kmem_cache *kmem_buckets[14]; + +union cpuid_0x80000022_ebx { + struct { + unsigned int num_core_pmc: 4; + unsigned int lbr_v2_stack_sz: 6; + unsigned int num_df_pmc: 6; + unsigned int num_umc_pmc: 6; + } split; + unsigned int full; +}; + +typedef int perf_snapshot_branch_stack_t(struct perf_branch_entry *, unsigned int); + +typedef void amd_pmu_branch_reset_t(void); + +enum { + PERF_BR_SPEC_NA = 0, + PERF_BR_SPEC_WRONG_PATH = 1, + PERF_BR_NON_SPEC_CORRECT_PATH = 2, + PERF_BR_SPEC_CORRECT_PATH = 3, + PERF_BR_SPEC_MAX = 4, +}; + +struct branch_entry { + union { + struct { + u64 ip: 58; + u64 ip_sign_ext: 5; + u64 mispredict: 1; + } split; + u64 full; + } from; + union { + struct { + u64 ip: 58; + u64 ip_sign_ext: 3; + u64 reserved: 1; + u64 spec: 1; + u64 valid: 1; + } split; + u64 full; + } to; +}; + +union amd_debug_extn_cfg { + __u64 val; + struct { + __u64 rsvd0: 2; + __u64 brsmen: 1; + __u64 rsvd4_3: 2; + __u64 vb: 1; + __u64 rsvd2: 10; + __u64 msroff: 4; + __u64 rsvd3: 4; + __u64 pmc: 3; + __u64 rsvd4: 37; + }; +}; + +enum perf_event_task_context { + perf_invalid_context = -1, + perf_hw_context = 0, + perf_sw_context = 1, + perf_nr_task_contexts = 2, +}; + +struct pci_device_id { + __u32 vendor; + __u32 device; + __u32 subvendor; + __u32 subdevice; + __u32 class; + __u32 class_mask; + kernel_ulong_t driver_data; + __u32 override_only; +}; + +struct pci_bus; + +struct hotplug_slot; + +struct pci_slot { + struct pci_bus *bus; + struct list_head list; + struct hotplug_slot *hotplug; + unsigned char number; + struct kobject kobj; +}; + +typedef short unsigned int pci_bus_flags_t; + +struct pci_dev; + +struct pci_ops; + +struct pci_bus { + struct list_head node; + struct pci_bus *parent; + struct list_head children; + struct list_head devices; + struct pci_dev *self; + struct list_head slots; + struct resource *resource[4]; + struct list_head resources; + struct resource busn_res; + struct pci_ops *ops; + void *sysdata; + struct proc_dir_entry *procdir; + unsigned char number; + unsigned char primary; + unsigned char max_bus_speed; + unsigned char cur_bus_speed; + char name[48]; + short unsigned int bridge_ctl; + pci_bus_flags_t bus_flags; + struct device *bridge; + struct device dev; + struct bin_attribute *legacy_io; + struct bin_attribute *legacy_mem; + unsigned int is_added: 1; + unsigned int unsafe_warn: 1; + unsigned int flit_mode: 1; +}; + +typedef int pci_power_t; + +typedef unsigned int pci_channel_state_t; + +typedef short unsigned int pci_dev_flags_t; + +struct pci_vpd { + struct mutex lock; + unsigned int len; + u8 cap; +}; + +struct aer_info; + +struct rcec_ea; + +struct pci_driver; + +struct pcie_link_state; + +struct pcie_bwctrl_data; + +struct pci_sriov; + +struct pci_p2pdma; + +struct pci_dev { + struct list_head bus_list; + struct pci_bus *bus; + struct pci_bus *subordinate; + void *sysdata; + struct proc_dir_entry *procent; + struct pci_slot *slot; + unsigned int devfn; + short unsigned int vendor; + short unsigned int device; + short unsigned int subsystem_vendor; + short unsigned int subsystem_device; + unsigned int class; + u8 revision; + u8 hdr_type; + u16 aer_cap; + struct aer_info *aer_info; + struct rcec_ea *rcec_ea; + struct pci_dev *rcec; + u32 devcap; + u16 rebar_cap; + u8 pcie_cap; + u8 msi_cap; + u8 msix_cap; + u8 pcie_mpss: 3; + u8 rom_base_reg; + u8 pin; + u16 pcie_flags_reg; + long unsigned int *dma_alias_mask; + struct pci_driver *driver; + u64 dma_mask; + struct device_dma_parameters dma_parms; + pci_power_t current_state; + u8 pm_cap; + unsigned int pme_support: 5; + unsigned int pme_poll: 1; + unsigned int pinned: 1; + unsigned int config_rrs_sv: 1; + unsigned int imm_ready: 1; + unsigned int d1_support: 1; + unsigned int d2_support: 1; + unsigned int no_d1d2: 1; + unsigned int no_d3cold: 1; + unsigned int bridge_d3: 1; + unsigned int d3cold_allowed: 1; + unsigned int mmio_always_on: 1; + unsigned int wakeup_prepared: 1; + unsigned int skip_bus_pm: 1; + unsigned int ignore_hotplug: 1; + unsigned int hotplug_user_indicators: 1; + unsigned int clear_retrain_link: 1; + unsigned int d3hot_delay; + unsigned int d3cold_delay; + u16 l1ss; + struct pcie_link_state *link_state; + unsigned int ltr_path: 1; + unsigned int pasid_no_tlp: 1; + unsigned int eetlp_prefix_max: 3; + pci_channel_state_t error_state; + struct device dev; + int cfg_size; + unsigned int irq; + struct resource resource[17]; + struct resource driver_exclusive_resource; + unsigned int transparent: 1; + unsigned int io_window: 1; + unsigned int pref_window: 1; + unsigned int pref_64_window: 1; + unsigned int multifunction: 1; + unsigned int is_busmaster: 1; + unsigned int no_msi: 1; + unsigned int no_64bit_msi: 1; + unsigned int block_cfg_access: 1; + unsigned int broken_parity_status: 1; + unsigned int irq_reroute_variant: 2; + unsigned int msi_enabled: 1; + unsigned int msix_enabled: 1; + unsigned int ari_enabled: 1; + unsigned int ats_enabled: 1; + unsigned int pasid_enabled: 1; + unsigned int pri_enabled: 1; + unsigned int tph_enabled: 1; + unsigned int is_managed: 1; + unsigned int is_msi_managed: 1; + unsigned int needs_freset: 1; + unsigned int state_saved: 1; + unsigned int is_physfn: 1; + unsigned int is_virtfn: 1; + unsigned int is_hotplug_bridge: 1; + unsigned int is_pciehp: 1; + unsigned int shpc_managed: 1; + unsigned int is_thunderbolt: 1; + unsigned int untrusted: 1; + unsigned int external_facing: 1; + unsigned int broken_intx_masking: 1; + unsigned int io_window_1k: 1; + unsigned int irq_managed: 1; + unsigned int non_compliant_bars: 1; + unsigned int is_probed: 1; + unsigned int link_active_reporting: 1; + unsigned int no_vf_scan: 1; + unsigned int no_command_memory: 1; + unsigned int rom_bar_overlap: 1; + unsigned int rom_attr_enabled: 1; + unsigned int non_mappable_bars: 1; + unsigned int aspm_os_control: 1; + pci_dev_flags_t dev_flags; + atomic_t enable_cnt; + spinlock_t pcie_cap_lock; + u32 saved_config_space[16]; + struct hlist_head saved_cap_space; + struct bin_attribute *res_attr[17]; + struct bin_attribute *res_attr_wc[17]; + unsigned int broken_cmd_compl: 1; + u16 ptm_cap; + unsigned int ptm_root: 1; + unsigned int ptm_enabled: 1; + u8 ptm_granularity; + void *msix_base; + raw_spinlock_t msi_lock; + struct pci_vpd vpd; + u16 dpc_cap; + unsigned int dpc_rp_extensions: 1; + u8 dpc_rp_log_size; + struct pcie_bwctrl_data *link_bwctrl; + union { + struct pci_sriov *sriov; + struct pci_dev *physfn; + }; + u16 ats_cap; + u8 ats_stu; + u16 pri_cap; + u32 pri_reqs_alloc; + unsigned int pasid_required: 1; + u16 pasid_cap; + u16 pasid_features; + struct pci_p2pdma *p2pdma; + struct xarray doe_mbs; + u16 acs_cap; + u8 supported_speeds; + phys_addr_t rom; + size_t romlen; + const char *driver_override; + long unsigned int priv_flags; + u8 reset_methods[8]; + u16 tph_cap; + u8 tph_mode; + u8 tph_req_type; +}; + +struct pci_dynids { + spinlock_t lock; + struct list_head list; +}; + +struct pci_error_handlers; + +struct pci_driver { + const char *name; + const struct pci_device_id *id_table; + int (*probe)(struct pci_dev *, const struct pci_device_id *); + void (*remove)(struct pci_dev *); + int (*suspend)(struct pci_dev *, pm_message_t); + int (*resume)(struct pci_dev *); + void (*shutdown)(struct pci_dev *); + int (*sriov_configure)(struct pci_dev *, int); + int (*sriov_set_msix_vec_count)(struct pci_dev *, int); + u32 (*sriov_get_vf_total_msix)(struct pci_dev *); + const struct pci_error_handlers *err_handler; + const struct attribute_group **groups; + const struct attribute_group **dev_groups; + struct device_driver driver; + struct pci_dynids dynids; + bool driver_managed_dma; +}; + +struct pci_ops { + int (*add_bus)(struct pci_bus *); + void (*remove_bus)(struct pci_bus *); + void * (*map_bus)(struct pci_bus *, unsigned int, int); + int (*read)(struct pci_bus *, unsigned int, int, int, u32 *); + int (*write)(struct pci_bus *, unsigned int, int, int, u32); +}; + +typedef unsigned int pci_ers_result_t; + +struct pci_error_handlers { + pci_ers_result_t (*error_detected)(struct pci_dev *, pci_channel_state_t); + pci_ers_result_t (*mmio_enabled)(struct pci_dev *); + pci_ers_result_t (*slot_reset)(struct pci_dev *); + void (*reset_prepare)(struct pci_dev *); + void (*reset_done)(struct pci_dev *); + void (*resume)(struct pci_dev *); + void (*cor_error_detected)(struct pci_dev *); +}; + +struct syscore_ops { + struct list_head node; + int (*suspend)(void); + void (*resume)(void); + void (*shutdown)(void); +}; + +union ibs_fetch_ctl { + __u64 val; + struct { + __u64 fetch_maxcnt: 16; + __u64 fetch_cnt: 16; + __u64 fetch_lat: 16; + __u64 fetch_en: 1; + __u64 fetch_val: 1; + __u64 fetch_comp: 1; + __u64 ic_miss: 1; + __u64 phy_addr_valid: 1; + __u64 l1tlb_pgsz: 2; + __u64 l1tlb_miss: 1; + __u64 l2tlb_miss: 1; + __u64 rand_en: 1; + __u64 fetch_l2_miss: 1; + __u64 l3_miss_only: 1; + __u64 fetch_oc_miss: 1; + __u64 fetch_l3_miss: 1; + __u64 reserved: 2; + }; +}; + +union ibs_op_ctl { + __u64 val; + struct { + __u64 opmaxcnt: 16; + __u64 l3_miss_only: 1; + __u64 op_en: 1; + __u64 op_val: 1; + __u64 cnt_ctl: 1; + __u64 opmaxcnt_ext: 7; + __u64 reserved0: 5; + __u64 opcurcnt: 27; + __u64 ldlat_thrsh: 4; + __u64 ldlat_en: 1; + }; +}; + +union ibs_op_data { + __u64 val; + struct { + __u64 comp_to_ret_ctr: 16; + __u64 tag_to_ret_ctr: 16; + __u64 reserved1: 2; + __u64 op_return: 1; + __u64 op_brn_taken: 1; + __u64 op_brn_misp: 1; + __u64 op_brn_ret: 1; + __u64 op_rip_invalid: 1; + __u64 op_brn_fuse: 1; + __u64 op_microcode: 1; + __u64 reserved2: 23; + }; +}; + +union ibs_op_data2 { + __u64 val; + struct { + __u64 data_src_lo: 3; + __u64 reserved0: 1; + __u64 rmt_node: 1; + __u64 cache_hit_st: 1; + __u64 data_src_hi: 2; + __u64 reserved1: 56; + }; +}; + +union ibs_op_data3 { + __u64 val; + struct { + __u64 ld_op: 1; + __u64 st_op: 1; + __u64 dc_l1tlb_miss: 1; + __u64 dc_l2tlb_miss: 1; + __u64 dc_l1tlb_hit_2m: 1; + __u64 dc_l1tlb_hit_1g: 1; + __u64 dc_l2tlb_hit_2m: 1; + __u64 dc_miss: 1; + __u64 dc_mis_acc: 1; + __u64 reserved: 4; + __u64 dc_wc_mem_acc: 1; + __u64 dc_uc_mem_acc: 1; + __u64 dc_locked_op: 1; + __u64 dc_miss_no_mab_alloc: 1; + __u64 dc_lin_addr_valid: 1; + __u64 dc_phy_addr_valid: 1; + __u64 dc_l2_tlb_hit_1g: 1; + __u64 l2_miss: 1; + __u64 sw_pf: 1; + __u64 op_mem_width: 4; + __u64 op_dc_miss_open_mem_reqs: 6; + __u64 dc_miss_lat: 16; + __u64 tlb_refill_lat: 16; + }; +}; + +struct perf_ibs_data { + u32 size; + union { + u32 data[0]; + u32 caps; + }; + u64 regs[8]; +}; + +enum ibs_states { + IBS_ENABLED = 0, + IBS_STARTED = 1, + IBS_STOPPING = 2, + IBS_STOPPED = 3, + IBS_MAX_STATES = 4, +}; + +struct cpu_perf_ibs { + struct perf_event *event; + long unsigned int state[1]; +}; + +struct perf_ibs { + struct pmu pmu; + unsigned int msr; + u64 config_mask; + u64 cnt_mask; + u64 enable_mask; + u64 valid_mask; + u16 min_period; + u64 max_period; + long unsigned int offset_mask[1]; + int offset_max; + unsigned int fetch_count_reset_broken: 1; + unsigned int fetch_ignore_if_zero_rip: 1; + struct cpu_perf_ibs *pcpu; + u64 (*get_count)(u64); +}; + +struct bts_ctx { + struct perf_output_handle handle; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct debug_store ds_back; + int state; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum { + BTS_STATE_STOPPED = 0, + BTS_STATE_INACTIVE = 1, + BTS_STATE_ACTIVE = 2, +}; + +struct bts_phys { + struct page *page; + long unsigned int size; + long unsigned int offset; + long unsigned int displacement; +}; + +struct bts_buffer { + size_t real_size; + unsigned int nr_pages; + unsigned int nr_bufs; + unsigned int cur_buf; + bool snapshot; + local_t data_size; + local_t head; + long unsigned int end; + void **data_pages; + struct bts_phys buf[0]; +}; + +typedef unsigned int slab_flags_t; + +struct fxregs_state { + u16 cwd; + u16 swd; + u16 twd; + u16 fop; + union { + struct { + u64 rip; + u64 rdp; + }; + struct { + u32 fip; + u32 fcs; + u32 foo; + u32 fos; + }; + }; + u32 mxcsr; + u32 mxcsr_mask; + u32 st_space[32]; + u32 xmm_space[64]; + u32 padding[12]; + union { + u32 padding1[12]; + u32 sw_reserved[12]; + }; +}; + +enum xfeature { + XFEATURE_FP = 0, + XFEATURE_SSE = 1, + XFEATURE_YMM = 2, + XFEATURE_BNDREGS = 3, + XFEATURE_BNDCSR = 4, + XFEATURE_OPMASK = 5, + XFEATURE_ZMM_Hi256 = 6, + XFEATURE_Hi16_ZMM = 7, + XFEATURE_PT_UNIMPLEMENTED_SO_FAR = 8, + XFEATURE_PKRU = 9, + XFEATURE_PASID = 10, + XFEATURE_CET_USER = 11, + XFEATURE_CET_KERNEL = 12, + XFEATURE_RSRVD_COMP_13 = 13, + XFEATURE_RSRVD_COMP_14 = 14, + XFEATURE_LBR = 15, + XFEATURE_RSRVD_COMP_16 = 16, + XFEATURE_XTILE_CFG = 17, + XFEATURE_XTILE_DATA = 18, + XFEATURE_APX = 19, + XFEATURE_MAX = 20, +}; + +struct lbr_entry { + u64 from; + u64 to; + u64 info; +}; + +struct arch_lbr_state { + u64 lbr_ctl; + u64 lbr_depth; + u64 ler_from; + u64 ler_to; + u64 ler_info; + struct lbr_entry entries[0]; +}; + +struct xstate_header { + u64 xfeatures; + u64 xcomp_bv; + u64 reserved[6]; +}; + +struct xregs_state { + struct fxregs_state i387; + struct xstate_header header; + u8 extended_state_area[0]; +}; + +struct kmem_cache_args { + unsigned int align; + unsigned int useroffset; + unsigned int usersize; + unsigned int freeptr_offset; + bool use_freeptr_offset; + void (*ctor)(void *); +}; + +union cpuid28_eax { + struct { + unsigned int lbr_depth_mask: 8; + unsigned int reserved: 22; + unsigned int lbr_deep_c_reset: 1; + unsigned int lbr_lip: 1; + } split; + unsigned int full; +}; + +union cpuid28_ebx { + struct { + unsigned int lbr_cpl: 1; + unsigned int lbr_filter: 1; + unsigned int lbr_call_stack: 1; + } split; + unsigned int full; +}; + +union cpuid28_ecx { + struct { + unsigned int lbr_mispred: 1; + unsigned int lbr_timed_lbr: 1; + unsigned int lbr_br_type: 1; + unsigned int reserved: 13; + unsigned int lbr_counters: 4; + } split; + unsigned int full; +}; + +struct x86_pmu_lbr { + unsigned int nr; + unsigned int from; + unsigned int to; + unsigned int info; + bool has_callstack; +}; + +enum { + LBR_FORMAT_32 = 0, + LBR_FORMAT_LIP = 1, + LBR_FORMAT_EIP = 2, + LBR_FORMAT_EIP_FLAGS = 3, + LBR_FORMAT_EIP_FLAGS2 = 4, + LBR_FORMAT_INFO = 5, + LBR_FORMAT_TIME = 6, + LBR_FORMAT_INFO2 = 7, + LBR_FORMAT_MAX_KNOWN = 7, +}; + +struct x86_perf_task_context_opt { + int lbr_callstack_users; + int lbr_stack_state; + int log_id; +}; + +struct x86_perf_task_context { + u64 lbr_sel; + int tos; + int valid_lbrs; + struct x86_perf_task_context_opt opt; + struct lbr_entry lbr[32]; +}; + +struct x86_perf_task_context_arch_lbr { + struct x86_perf_task_context_opt opt; + struct lbr_entry entries[0]; +}; + +struct x86_perf_task_context_arch_lbr_xsave { + struct x86_perf_task_context_opt opt; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + union { + struct xregs_state xsave; + struct { + struct fxregs_state i387; + struct xstate_header header; + struct arch_lbr_state lbr; + long: 64; + long: 64; + long: 64; + }; + }; +}; + +enum { + LBR_NONE = 0, + LBR_VALID = 1, +}; + +enum { + ARCH_LBR_BR_TYPE_JCC = 0, + ARCH_LBR_BR_TYPE_NEAR_IND_JMP = 1, + ARCH_LBR_BR_TYPE_NEAR_REL_JMP = 2, + ARCH_LBR_BR_TYPE_NEAR_IND_CALL = 3, + ARCH_LBR_BR_TYPE_NEAR_REL_CALL = 4, + ARCH_LBR_BR_TYPE_NEAR_RET = 5, + ARCH_LBR_BR_TYPE_KNOWN_MAX = 5, + ARCH_LBR_BR_TYPE_MAP_MAX = 16, +}; + +typedef void (*exitcall_t)(void); + +enum hrtimer_mode { + HRTIMER_MODE_ABS = 0, + HRTIMER_MODE_REL = 1, + HRTIMER_MODE_PINNED = 2, + HRTIMER_MODE_SOFT = 4, + HRTIMER_MODE_HARD = 8, + HRTIMER_MODE_ABS_PINNED = 2, + HRTIMER_MODE_REL_PINNED = 3, + HRTIMER_MODE_ABS_SOFT = 4, + HRTIMER_MODE_REL_SOFT = 5, + HRTIMER_MODE_ABS_PINNED_SOFT = 6, + HRTIMER_MODE_REL_PINNED_SOFT = 7, + HRTIMER_MODE_ABS_HARD = 8, + HRTIMER_MODE_REL_HARD = 9, + HRTIMER_MODE_ABS_PINNED_HARD = 10, + HRTIMER_MODE_REL_PINNED_HARD = 11, +}; + +struct x86_cpu_id { + __u16 vendor; + __u16 family; + __u16 model; + __u16 steppings; + __u16 feature; + __u16 flags; + __u8 type; + kernel_ulong_t driver_data; +}; + +enum bus_notifier_event { + BUS_NOTIFY_ADD_DEVICE = 0, + BUS_NOTIFY_DEL_DEVICE = 1, + BUS_NOTIFY_REMOVED_DEVICE = 2, + BUS_NOTIFY_BIND_DRIVER = 3, + BUS_NOTIFY_BOUND_DRIVER = 4, + BUS_NOTIFY_UNBIND_DRIVER = 5, + BUS_NOTIFY_UNBOUND_DRIVER = 6, + BUS_NOTIFY_DRIVER_NOT_BOUND = 7, +}; + +struct acpi_device; + +struct pci_sysdata { + int domain; + int node; + struct acpi_device *companion; + void *iommu; + void *fwnode; + struct pci_dev *vmd_dev; +}; + +struct pci_extra_dev { + struct pci_dev *dev[4]; +}; + +struct intel_uncore_pmu; + +struct intel_uncore_ops; + +struct uncore_event_desc; + +struct freerunning_counters; + +struct intel_uncore_topology; + +struct intel_uncore_type { + const char *name; + int num_counters; + int num_boxes; + int perf_ctr_bits; + int fixed_ctr_bits; + int num_freerunning_types; + int type_id; + unsigned int perf_ctr; + unsigned int event_ctl; + unsigned int event_mask; + unsigned int event_mask_ext; + unsigned int fixed_ctr; + unsigned int fixed_ctl; + unsigned int box_ctl; + union { + unsigned int msr_offset; + unsigned int mmio_offset; + }; + unsigned int mmio_map_size; + unsigned int num_shared_regs: 8; + unsigned int single_fixed: 1; + unsigned int pair_ctr_ctl: 1; + union { + u64 *msr_offsets; + u64 *pci_offsets; + u64 *mmio_offsets; + }; + struct event_constraint unconstrainted; + struct event_constraint *constraints; + struct intel_uncore_pmu *pmus; + struct intel_uncore_ops *ops; + struct uncore_event_desc *event_descs; + struct freerunning_counters *freerunning; + const struct attribute_group *attr_groups[4]; + const struct attribute_group **attr_update; + struct pmu *pmu; + struct rb_root *boxes; + struct intel_uncore_topology **topology; + int (*get_topology)(struct intel_uncore_type *); + void (*set_mapping)(struct intel_uncore_type *); + void (*cleanup_mapping)(struct intel_uncore_type *); + void (*cleanup_extra_boxes)(struct intel_uncore_type *); +}; + +struct intel_uncore_box; + +struct intel_uncore_pmu { + struct pmu pmu; + char name[32]; + int pmu_idx; + bool registered; + atomic_t activeboxes; + cpumask_t cpu_mask; + struct intel_uncore_type *type; + struct intel_uncore_box **boxes; +}; + +struct intel_uncore_ops { + void (*init_box)(struct intel_uncore_box *); + void (*exit_box)(struct intel_uncore_box *); + void (*disable_box)(struct intel_uncore_box *); + void (*enable_box)(struct intel_uncore_box *); + void (*disable_event)(struct intel_uncore_box *, struct perf_event *); + void (*enable_event)(struct intel_uncore_box *, struct perf_event *); + u64 (*read_counter)(struct intel_uncore_box *, struct perf_event *); + int (*hw_config)(struct intel_uncore_box *, struct perf_event *); + struct event_constraint * (*get_constraint)(struct intel_uncore_box *, struct perf_event *); + void (*put_constraint)(struct intel_uncore_box *, struct perf_event *); +}; + +struct uncore_event_desc { + struct device_attribute attr; + const char *config; +}; + +struct freerunning_counters { + unsigned int counter_base; + unsigned int counter_offset; + unsigned int box_offset; + unsigned int num_counters; + unsigned int bits; + unsigned int *box_offsets; +}; + +struct uncore_iio_topology; + +struct uncore_upi_topology; + +struct intel_uncore_topology { + int pmu_idx; + union { + void *untyped; + struct uncore_iio_topology *iio; + struct uncore_upi_topology *upi; + }; +}; + +struct intel_uncore_extra_reg { + raw_spinlock_t lock; + u64 config; + u64 config1; + u64 config2; + atomic_t ref; +}; + +struct intel_uncore_box { + int dieid; + int n_active; + int n_events; + int cpu; + long unsigned int flags; + atomic_t refcnt; + struct perf_event *events[10]; + struct perf_event *event_list[10]; + struct event_constraint *event_constraint[10]; + long unsigned int active_mask[1]; + u64 tags[10]; + struct pci_dev *pci_dev; + struct intel_uncore_pmu *pmu; + u64 hrtimer_duration; + struct hrtimer hrtimer; + struct list_head list; + struct list_head active_list; + void *io_addr; + struct intel_uncore_extra_reg shared_regs[0]; +}; + +struct uncore_iio_topology { + int pci_bus_no; + int segment; +}; + +struct uncore_upi_topology { + int die_to; + int pmu_idx_to; + int enabled; +}; + +struct pci2phy_map { + struct list_head list; + int segment; + int pbus_to_dieid[256]; +}; + +struct intel_uncore_discovery_unit { + struct rb_node node; + unsigned int pmu_idx; + unsigned int id; + unsigned int die; + u64 addr; +}; + +struct intel_uncore_init_fun { + void (*cpu_init)(void); + int (*pci_init)(void); + void (*mmio_init)(void); + bool use_discovery; + int *uncore_units_ignore; +}; + +typedef u64 uint64_t; + +struct x86_init_mpparse { + void (*setup_ioapic_ids)(void); + void (*find_mptable)(void); + void (*early_parse_smp_cfg)(void); + void (*parse_smp_cfg)(void); +}; + +struct x86_init_resources { + void (*probe_roms)(void); + void (*reserve_resources)(void); + char * (*memory_setup)(void); + void (*dmi_setup)(void); +}; + +struct x86_init_irqs { + void (*pre_vector_init)(void); + void (*intr_init)(void); + void (*intr_mode_select)(void); + void (*intr_mode_init)(void); + struct irq_domain * (*create_pci_msi_domain)(void); +}; + +struct x86_init_oem { + void (*arch_setup)(void); + void (*banner)(void); +}; + +struct x86_init_paging { + void (*pagetable_init)(void); +}; + +struct x86_init_timers { + void (*setup_percpu_clockev)(void); + void (*timer_init)(void); + void (*wallclock_init)(void); +}; + +struct x86_init_iommu { + int (*iommu_init)(void); +}; + +struct x86_init_pci { + int (*arch_init)(void); + int (*init)(void); + void (*init_irq)(void); + void (*fixup_irqs)(void); +}; + +struct x86_hyper_init { + void (*init_platform)(void); + void (*guest_late_init)(void); + bool (*x2apic_available)(void); + bool (*msi_ext_dest_id)(void); + void (*init_mem_mapping)(void); + void (*init_after_bootmem)(void); +}; + +struct x86_init_acpi { + void (*set_root_pointer)(u64); + u64 (*get_root_pointer)(void); + void (*reduced_hw_early_init)(void); +}; + +struct x86_init_ops { + struct x86_init_resources resources; + struct x86_init_mpparse mpparse; + struct x86_init_irqs irqs; + struct x86_init_oem oem; + struct x86_init_paging paging; + struct x86_init_timers timers; + struct x86_init_iommu iommu; + struct x86_init_pci pci; + struct x86_hyper_init hyper; + struct x86_init_acpi acpi; +}; + +struct hvm_start_info { + uint32_t magic; + uint32_t version; + uint32_t flags; + uint32_t nr_modules; + uint64_t modlist_paddr; + uint64_t cmdline_paddr; + uint64_t rsdp_paddr; + uint64_t memmap_paddr; + uint32_t memmap_entries; + uint32_t reserved; +}; + +struct hvm_modlist_entry { + uint64_t paddr; + uint64_t size; + uint64_t cmdline_paddr; + uint64_t reserved; +}; + +struct hvm_memmap_table_entry { + uint64_t addr; + uint64_t size; + uint32_t type; + uint32_t reserved; +}; + +struct boot_e820_entry { + __u64 addr; + __u64 size; + __u32 type; +} __attribute__((packed)); + +struct screen_info { + __u8 orig_x; + __u8 orig_y; + __u16 ext_mem_k; + __u16 orig_video_page; + __u8 orig_video_mode; + __u8 orig_video_cols; + __u8 flags; + __u8 unused2; + __u16 orig_video_ega_bx; + __u16 unused3; + __u8 orig_video_lines; + __u8 orig_video_isVGA; + __u16 orig_video_points; + __u16 lfb_width; + __u16 lfb_height; + __u16 lfb_depth; + __u32 lfb_base; + __u32 lfb_size; + __u16 cl_magic; + __u16 cl_offset; + __u16 lfb_linelength; + __u8 red_size; + __u8 red_pos; + __u8 green_size; + __u8 green_pos; + __u8 blue_size; + __u8 blue_pos; + __u8 rsvd_size; + __u8 rsvd_pos; + __u16 vesapm_seg; + __u16 vesapm_off; + __u16 pages; + __u16 vesa_attributes; + __u32 capabilities; + __u32 ext_lfb_base; + __u8 _reserved[2]; +} __attribute__((packed)); + +struct apm_bios_info { + __u16 version; + __u16 cseg; + __u32 offset; + __u16 cseg_16; + __u16 dseg; + __u16 flags; + __u16 cseg_len; + __u16 cseg_16_len; + __u16 dseg_len; +}; + +struct edd_device_params { + __u16 length; + __u16 info_flags; + __u32 num_default_cylinders; + __u32 num_default_heads; + __u32 sectors_per_track; + __u64 number_of_sectors; + __u16 bytes_per_sector; + __u32 dpte_ptr; + __u16 key; + __u8 device_path_info_length; + __u8 reserved2; + __u16 reserved3; + __u8 host_bus_type[4]; + __u8 interface_type[8]; + union { + struct { + __u16 base_address; + __u16 reserved1; + __u32 reserved2; + } isa; + struct { + __u8 bus; + __u8 slot; + __u8 function; + __u8 channel; + __u32 reserved; + } pci; + struct { + __u64 reserved; + } ibnd; + struct { + __u64 reserved; + } xprs; + struct { + __u64 reserved; + } htpt; + struct { + __u64 reserved; + } unknown; + } interface_path; + union { + struct { + __u8 device; + __u8 reserved1; + __u16 reserved2; + __u32 reserved3; + __u64 reserved4; + } ata; + struct { + __u8 device; + __u8 lun; + __u8 reserved1; + __u8 reserved2; + __u32 reserved3; + __u64 reserved4; + } atapi; + struct { + __u16 id; + __u64 lun; + __u16 reserved1; + __u32 reserved2; + } __attribute__((packed)) scsi; + struct { + __u64 serial_number; + __u64 reserved; + } usb; + struct { + __u64 eui; + __u64 reserved; + } i1394; + struct { + __u64 wwid; + __u64 lun; + } fibre; + struct { + __u64 identity_tag; + __u64 reserved; + } i2o; + struct { + __u32 array_number; + __u32 reserved1; + __u64 reserved2; + } raid; + struct { + __u8 device; + __u8 reserved1; + __u16 reserved2; + __u32 reserved3; + __u64 reserved4; + } sata; + struct { + __u64 reserved1; + __u64 reserved2; + } unknown; + } device_path; + __u8 reserved4; + __u8 checksum; +} __attribute__((packed)); + +struct edd_info { + __u8 device; + __u8 version; + __u16 interface_support; + __u16 legacy_max_cylinder; + __u8 legacy_max_head; + __u8 legacy_sectors_per_track; + struct edd_device_params params; +}; + +struct ist_info { + __u32 signature; + __u32 command; + __u32 event; + __u32 perf_level; +}; + +struct edid_info { + unsigned char dummy[128]; +}; + +struct setup_header { + __u8 setup_sects; + __u16 root_flags; + __u32 syssize; + __u16 ram_size; + __u16 vid_mode; + __u16 root_dev; + __u16 boot_flag; + __u16 jump; + __u32 header; + __u16 version; + __u32 realmode_swtch; + __u16 start_sys_seg; + __u16 kernel_version; + __u8 type_of_loader; + __u8 loadflags; + __u16 setup_move_size; + __u32 code32_start; + __u32 ramdisk_image; + __u32 ramdisk_size; + __u32 bootsect_kludge; + __u16 heap_end_ptr; + __u8 ext_loader_ver; + __u8 ext_loader_type; + __u32 cmd_line_ptr; + __u32 initrd_addr_max; + __u32 kernel_alignment; + __u8 relocatable_kernel; + __u8 min_alignment; + __u16 xloadflags; + __u32 cmdline_size; + __u32 hardware_subarch; + __u64 hardware_subarch_data; + __u32 payload_offset; + __u32 payload_length; + __u64 setup_data; + __u64 pref_address; + __u32 init_size; + __u32 handover_offset; + __u32 kernel_info_offset; +} __attribute__((packed)); + +struct sys_desc_table { + __u16 length; + __u8 table[14]; +}; + +struct olpc_ofw_header { + __u32 ofw_magic; + __u32 ofw_version; + __u32 cif_handler; + __u32 irq_desc_table; +}; + +struct efi_info { + __u32 efi_loader_signature; + __u32 efi_systab; + __u32 efi_memdesc_size; + __u32 efi_memdesc_version; + __u32 efi_memmap; + __u32 efi_memmap_size; + __u32 efi_systab_hi; + __u32 efi_memmap_hi; +}; + +struct boot_params { + struct screen_info screen_info; + struct apm_bios_info apm_bios_info; + __u8 _pad2[4]; + __u64 tboot_addr; + struct ist_info ist_info; + __u64 acpi_rsdp_addr; + __u8 _pad3[8]; + __u8 hd0_info[16]; + __u8 hd1_info[16]; + struct sys_desc_table sys_desc_table; + struct olpc_ofw_header olpc_ofw_header; + __u32 ext_ramdisk_image; + __u32 ext_ramdisk_size; + __u32 ext_cmd_line_ptr; + __u8 _pad4[112]; + __u32 cc_blob_address; + struct edid_info edid_info; + struct efi_info efi_info; + __u32 alt_mem_k; + __u32 scratch; + __u8 e820_entries; + __u8 eddbuf_entries; + __u8 edd_mbr_sig_buf_entries; + __u8 kbd_status; + __u8 secure_boot; + __u8 _pad5[2]; + __u8 sentinel; + __u8 _pad6[1]; + struct setup_header hdr; + __u8 _pad7[36]; + __u32 edd_mbr_sig_buffer[16]; + struct boot_e820_entry e820_table[128]; + __u8 _pad8[48]; + struct edd_info eddbuf[6]; + __u8 _pad9[276]; +}; + +enum e820_type { + E820_TYPE_RAM = 1, + E820_TYPE_RESERVED = 2, + E820_TYPE_ACPI = 3, + E820_TYPE_NVS = 4, + E820_TYPE_UNUSABLE = 5, + E820_TYPE_PMEM = 7, + E820_TYPE_PRAM = 12, + E820_TYPE_SOFT_RESERVED = 4026531839, +}; + +typedef long unsigned int irq_hw_number_t; + +struct irq_stack { + char stack[16384]; +}; + +struct vm_struct { + struct vm_struct *next; + void *addr; + long unsigned int size; + long unsigned int flags; + struct page **pages; + unsigned int page_order; + unsigned int nr_pages; + phys_addr_t phys_addr; + const void *caller; + long unsigned int requested_size; +}; + +enum work_bits { + WORK_STRUCT_PENDING_BIT = 0, + WORK_STRUCT_INACTIVE_BIT = 1, + WORK_STRUCT_PWQ_BIT = 2, + WORK_STRUCT_LINKED_BIT = 3, + WORK_STRUCT_FLAG_BITS = 4, + WORK_STRUCT_COLOR_SHIFT = 4, + WORK_STRUCT_COLOR_BITS = 4, + WORK_STRUCT_PWQ_SHIFT = 8, + WORK_OFFQ_FLAG_SHIFT = 4, + WORK_OFFQ_BH_BIT = 4, + WORK_OFFQ_FLAG_END = 5, + WORK_OFFQ_FLAG_BITS = 1, + WORK_OFFQ_DISABLE_SHIFT = 5, + WORK_OFFQ_DISABLE_BITS = 16, + WORK_OFFQ_POOL_SHIFT = 21, + WORK_OFFQ_LEFT = 43, + WORK_OFFQ_POOL_BITS = 31, +}; + +enum work_flags { + WORK_STRUCT_PENDING = 1, + WORK_STRUCT_INACTIVE = 2, + WORK_STRUCT_PWQ = 4, + WORK_STRUCT_LINKED = 8, + WORK_STRUCT_STATIC = 0, +}; + +enum wq_misc_consts { + WORK_NR_COLORS = 16, + WORK_CPU_UNBOUND = 8192, + WORK_BUSY_PENDING = 1, + WORK_BUSY_RUNNING = 2, + WORKER_DESC_LEN = 32, +}; + +enum irq_domain_bus_token { + DOMAIN_BUS_ANY = 0, + DOMAIN_BUS_WIRED = 1, + DOMAIN_BUS_GENERIC_MSI = 2, + DOMAIN_BUS_PCI_MSI = 3, + DOMAIN_BUS_PLATFORM_MSI = 4, + DOMAIN_BUS_NEXUS = 5, + DOMAIN_BUS_IPI = 6, + DOMAIN_BUS_FSL_MC_MSI = 7, + DOMAIN_BUS_TI_SCI_INTA_MSI = 8, + DOMAIN_BUS_WAKEUP = 9, + DOMAIN_BUS_VMD_MSI = 10, + DOMAIN_BUS_PCI_DEVICE_MSI = 11, + DOMAIN_BUS_PCI_DEVICE_MSIX = 12, + DOMAIN_BUS_DMAR = 13, + DOMAIN_BUS_AMDVI = 14, + DOMAIN_BUS_DEVICE_MSI = 15, + DOMAIN_BUS_WIRED_TO_MSI = 16, +}; + +struct irq_domain_ops; + +struct irq_domain_chip_generic; + +struct msi_parent_ops; + +struct irq_data; + +struct irq_domain { + struct list_head link; + const char *name; + const struct irq_domain_ops *ops; + void *host_data; + unsigned int flags; + unsigned int mapcount; + struct mutex mutex; + struct irq_domain *root; + struct fwnode_handle *fwnode; + enum irq_domain_bus_token bus_token; + struct irq_domain_chip_generic *gc; + struct device *dev; + struct device *pm_dev; + struct irq_domain *parent; + const struct msi_parent_ops *msi_parent_ops; + void (*exit)(struct irq_domain *); + irq_hw_number_t hwirq_max; + unsigned int revmap_size; + struct xarray revmap_tree; + struct irq_data *revmap[0]; +}; + +enum irqreturn { + IRQ_NONE = 0, + IRQ_HANDLED = 1, + IRQ_WAKE_THREAD = 2, +}; + +typedef enum irqreturn irqreturn_t; + +typedef irqreturn_t (*irq_handler_t)(int, void *); + +struct irqaction { + irq_handler_t handler; + void *dev_id; + void *percpu_dev_id; + struct irqaction *next; + irq_handler_t thread_fn; + struct task_struct *thread; + struct irqaction *secondary; + unsigned int irq; + unsigned int flags; + long unsigned int thread_flags; + long unsigned int thread_mask; + const char *name; + struct proc_dir_entry *dir; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct irq_affinity_notify { + unsigned int irq; + struct kref kref; + struct work_struct work; + void (*notify)(struct irq_affinity_notify *, const cpumask_t *); + void (*release)(struct kref *); +}; + +struct irq_affinity_desc { + struct cpumask mask; + unsigned int is_managed: 1; +}; + +enum irqchip_irq_state { + IRQCHIP_STATE_PENDING = 0, + IRQCHIP_STATE_ACTIVE = 1, + IRQCHIP_STATE_MASKED = 2, + IRQCHIP_STATE_LINE_LEVEL = 3, +}; + +enum { + MEMREMAP_WB = 1, + MEMREMAP_WT = 2, + MEMREMAP_WC = 4, + MEMREMAP_ENC = 8, + MEMREMAP_DEC = 16, +}; + +struct hv_reenlightenment_control { + u64 vector: 8; + u64 reserved1: 8; + u64 enabled: 1; + u64 reserved2: 15; + u64 target_vp: 32; +}; + +struct hv_tsc_emulation_status { + u64 inprogress: 1; + u64 reserved: 63; +}; + +struct hv_tsc_emulation_control { + u64 enabled: 1; + u64 reserved: 63; +}; + +union hv_reference_tsc_msr { + u64 as_uint64; + struct { + u64 enable: 1; + u64 reserved: 11; + u64 pfn: 52; + }; +}; + +union hv_x64_msr_hypercall_contents { + u64 as_uint64; + struct { + u64 enable: 1; + u64 reserved: 11; + u64 guest_physical_address: 52; + }; +}; + +union hv_vp_assist_msr_contents { + u64 as_uint64; + struct { + u64 enable: 1; + u64 reserved: 11; + u64 pfn: 52; + }; +}; + +union hv_input_vtl { + u8 as_uint8; + struct { + u8 target_vtl: 4; + u8 use_target_vtl: 1; + u8 reserved_z: 3; + }; +}; + +struct hv_get_vp_from_apic_id_in { + u64 partition_id; + union hv_input_vtl target_vtl; + u8 res[7]; + u32 apic_ids[0]; +}; + +struct hv_nested_enlightenments_control { + struct { + u32 directhypercall: 1; + u32 reserved: 31; + } features; + struct { + u32 inter_partition_comm: 1; + u32 reserved: 31; + } hypercall_controls; +}; + +struct hv_vp_assist_page { + u32 apic_assist; + u32 reserved1; + u32 vtl_entry_reason; + u32 vtl_reserved; + u64 vtl_ret_x64rax; + u64 vtl_ret_x64rcx; + struct hv_nested_enlightenments_control nested_control; + u8 enlighten_vmentry; + u8 reserved2[7]; + u64 current_nested_vmcs; + u8 synthetic_time_unhalted_timer_expired; + u8 reserved3[7]; + u8 virtualization_fault_information[40]; + u8 reserved4[8]; + u8 intercept_message[256]; + u8 vtl_ret_actions[256]; +}; + +enum x86_hypervisor_type { + X86_HYPER_NATIVE = 0, + X86_HYPER_VMWARE = 1, + X86_HYPER_MS_HYPERV = 2, + X86_HYPER_XEN_PV = 3, + X86_HYPER_XEN_HVM = 4, + X86_HYPER_KVM = 5, + X86_HYPER_JAILHOUSE = 6, + X86_HYPER_ACRN = 7, +}; + +union msi_instance_cookie { + u64 value; + void *ptr; +}; + +struct irq_desc; + +typedef void (*irq_flow_handler_t)(struct irq_desc *); + +struct msi_desc; + +struct irq_common_data { + unsigned int state_use_accessors; + unsigned int node; + void *handler_data; + struct msi_desc *msi_desc; + cpumask_var_t affinity; + cpumask_var_t effective_affinity; +}; + +struct irq_chip; + +struct irq_data { + u32 mask; + unsigned int irq; + irq_hw_number_t hwirq; + struct irq_common_data *common; + struct irq_chip *chip; + struct irq_domain *domain; + struct irq_data *parent_data; + void *chip_data; +}; + +struct irqstat; + +struct irq_desc { + struct irq_common_data irq_common_data; + struct irq_data irq_data; + struct irqstat *kstat_irqs; + irq_flow_handler_t handle_irq; + struct irqaction *action; + unsigned int status_use_accessors; + unsigned int core_internal_state__do_not_mess_with_it; + unsigned int depth; + unsigned int wake_depth; + unsigned int tot_count; + unsigned int irq_count; + long unsigned int last_unhandled; + unsigned int irqs_unhandled; + atomic_t threads_handled; + int threads_handled_last; + raw_spinlock_t lock; + struct cpumask *percpu_enabled; + const struct cpumask *percpu_affinity; + const struct cpumask *affinity_hint; + struct irq_affinity_notify *affinity_notify; + cpumask_var_t pending_mask; + long unsigned int threads_oneshot; + atomic_t threads_active; + wait_queue_head_t wait_for_threads; + unsigned int nr_actions; + unsigned int no_suspend_depth; + unsigned int cond_suspend_depth; + unsigned int force_resume_depth; + struct proc_dir_entry *dir; + struct callback_head rcu; + struct kobject kobj; + struct mutex request_mutex; + int parent_irq; + struct module *owner; + const char *name; + struct hlist_node resend_node; + long: 64; + long: 64; + long: 64; +}; + +struct x86_msi_addr_lo { + union { + struct { + u32 reserved_0: 2; + u32 dest_mode_logical: 1; + u32 redirect_hint: 1; + u32 reserved_1: 1; + u32 virt_destid_8_14: 7; + u32 destid_0_7: 8; + u32 base_address: 12; + }; + struct { + u32 dmar_reserved_0: 2; + u32 dmar_index_15: 1; + u32 dmar_subhandle_valid: 1; + u32 dmar_format: 1; + u32 dmar_index_0_14: 15; + u32 dmar_base_address: 12; + }; + }; +}; + +typedef struct x86_msi_addr_lo arch_msi_msg_addr_lo_t; + +struct x86_msi_addr_hi { + u32 reserved: 8; + u32 destid_8_31: 24; +}; + +typedef struct x86_msi_addr_hi arch_msi_msg_addr_hi_t; + +struct x86_msi_data { + union { + struct { + u32 vector: 8; + u32 delivery_mode: 3; + u32 dest_mode_logical: 1; + u32 reserved: 2; + u32 active_low: 1; + u32 is_level: 1; + }; + u32 dmar_subhandle; + }; +}; + +typedef struct x86_msi_data arch_msi_msg_data_t; + +struct msi_msg { + union { + u32 address_lo; + arch_msi_msg_addr_lo_t arch_addr_lo; + }; + union { + u32 address_hi; + arch_msi_msg_addr_hi_t arch_addr_hi; + }; + union { + u32 data; + arch_msi_msg_data_t arch_data; + }; +}; + +struct pci_msi_desc { + union { + u32 msi_mask; + u32 msix_ctrl; + }; + struct { + u8 is_msix: 1; + u8 multiple: 3; + u8 multi_cap: 3; + u8 can_mask: 1; + u8 is_64: 1; + u8 is_virtual: 1; + unsigned int default_irq; + } msi_attrib; + union { + u8 mask_pos; + void *mask_base; + }; +}; + +union msi_domain_cookie { + u64 value; + void *ptr; + void *iobase; +}; + +struct msi_desc_data { + union msi_domain_cookie dcookie; + union msi_instance_cookie icookie; +}; + +struct msi_desc { + unsigned int irq; + unsigned int nvec_used; + struct device *dev; + struct msi_msg msg; + struct irq_affinity_desc *affinity; + struct device_attribute *sysfs_attrs; + void (*write_msi_msg)(struct msi_desc *, void *); + void *write_msi_msg_data; + u16 msi_index; + union { + struct pci_msi_desc pci; + struct msi_desc_data data; + }; +}; + +struct irq_chip { + const char *name; + unsigned int (*irq_startup)(struct irq_data *); + void (*irq_shutdown)(struct irq_data *); + void (*irq_enable)(struct irq_data *); + void (*irq_disable)(struct irq_data *); + void (*irq_ack)(struct irq_data *); + void (*irq_mask)(struct irq_data *); + void (*irq_mask_ack)(struct irq_data *); + void (*irq_unmask)(struct irq_data *); + void (*irq_eoi)(struct irq_data *); + int (*irq_set_affinity)(struct irq_data *, const struct cpumask *, bool); + int (*irq_retrigger)(struct irq_data *); + int (*irq_set_type)(struct irq_data *, unsigned int); + int (*irq_set_wake)(struct irq_data *, unsigned int); + void (*irq_bus_lock)(struct irq_data *); + void (*irq_bus_sync_unlock)(struct irq_data *); + void (*irq_suspend)(struct irq_data *); + void (*irq_resume)(struct irq_data *); + void (*irq_pm_shutdown)(struct irq_data *); + void (*irq_calc_mask)(struct irq_data *); + void (*irq_print_chip)(struct irq_data *, struct seq_file *); + int (*irq_request_resources)(struct irq_data *); + void (*irq_release_resources)(struct irq_data *); + void (*irq_compose_msi_msg)(struct irq_data *, struct msi_msg *); + void (*irq_write_msi_msg)(struct irq_data *, struct msi_msg *); + int (*irq_get_irqchip_state)(struct irq_data *, enum irqchip_irq_state, bool *); + int (*irq_set_irqchip_state)(struct irq_data *, enum irqchip_irq_state, bool); + int (*irq_set_vcpu_affinity)(struct irq_data *, void *); + void (*ipi_send_single)(struct irq_data *, unsigned int); + void (*ipi_send_mask)(struct irq_data *, const struct cpumask *); + int (*irq_nmi_setup)(struct irq_data *); + void (*irq_nmi_teardown)(struct irq_data *); + void (*irq_force_complete_move)(struct irq_data *); + long unsigned int flags; +}; + +struct irqstat { + unsigned int cnt; +}; + +enum irq_alloc_type { + X86_IRQ_ALLOC_TYPE_IOAPIC = 1, + X86_IRQ_ALLOC_TYPE_HPET = 2, + X86_IRQ_ALLOC_TYPE_PCI_MSI = 3, + X86_IRQ_ALLOC_TYPE_PCI_MSIX = 4, + X86_IRQ_ALLOC_TYPE_DMAR = 5, + X86_IRQ_ALLOC_TYPE_AMDVI = 6, + X86_IRQ_ALLOC_TYPE_UV = 7, +}; + +struct ioapic_alloc_info { + int pin; + int node; + u32 is_level: 1; + u32 active_low: 1; + u32 valid: 1; +}; + +struct uv_alloc_info { + int limit; + int blade; + long unsigned int offset; + char *name; +}; + +struct irq_alloc_info { + enum irq_alloc_type type; + u32 flags; + u32 devid; + irq_hw_number_t hwirq; + const struct cpumask *mask; + struct msi_desc *desc; + void *data; + union { + struct ioapic_alloc_info ioapic; + struct uv_alloc_info uv; + }; +}; + +struct irq_chip_regs { + long unsigned int enable; + long unsigned int disable; + long unsigned int mask; + long unsigned int ack; + long unsigned int eoi; + long unsigned int type; +}; + +struct irq_chip_type { + struct irq_chip chip; + struct irq_chip_regs regs; + irq_flow_handler_t handler; + u32 type; + u32 mask_cache_priv; + u32 *mask_cache; +}; + +struct irq_chip_generic { + raw_spinlock_t lock; + void *reg_base; + u32 (*reg_readl)(void *); + void (*reg_writel)(u32, void *); + void (*suspend)(struct irq_chip_generic *); + void (*resume)(struct irq_chip_generic *); + unsigned int irq_base; + unsigned int irq_cnt; + u32 mask_cache; + u32 wake_enabled; + u32 wake_active; + unsigned int num_ct; + void *private; + long unsigned int installed; + long unsigned int unused; + struct irq_domain *domain; + struct list_head list; + struct irq_chip_type chip_types[0]; +}; + +enum irq_gc_flags { + IRQ_GC_INIT_MASK_CACHE = 1, + IRQ_GC_INIT_NESTED_LOCK = 2, + IRQ_GC_MASK_CACHE_PER_TYPE = 4, + IRQ_GC_NO_MASK = 8, + IRQ_GC_BE_IO = 16, +}; + +struct irq_domain_chip_generic { + unsigned int irqs_per_chip; + unsigned int num_chips; + unsigned int irq_flags_to_clear; + unsigned int irq_flags_to_set; + enum irq_gc_flags gc_flags; + void (*exit)(struct irq_chip_generic *); + struct irq_chip_generic *gc[0]; +}; + +struct irq_fwspec { + struct fwnode_handle *fwnode; + int param_count; + u32 param[16]; +}; + +struct irq_domain_ops { + int (*match)(struct irq_domain *, struct device_node *, enum irq_domain_bus_token); + int (*select)(struct irq_domain *, struct irq_fwspec *, enum irq_domain_bus_token); + int (*map)(struct irq_domain *, unsigned int, irq_hw_number_t); + void (*unmap)(struct irq_domain *, unsigned int); + int (*xlate)(struct irq_domain *, struct device_node *, const u32 *, unsigned int, long unsigned int *, unsigned int *); + int (*alloc)(struct irq_domain *, unsigned int, unsigned int, void *); + void (*free)(struct irq_domain *, unsigned int, unsigned int); + int (*activate)(struct irq_domain *, struct irq_data *, bool); + void (*deactivate)(struct irq_domain *, struct irq_data *); + int (*translate)(struct irq_domain *, struct irq_fwspec *, long unsigned int *, unsigned int *); +}; + +struct msi_domain_info; + +struct msi_parent_ops { + u32 supported_flags; + u32 required_flags; + u32 chip_flags; + u32 bus_select_token; + u32 bus_select_mask; + const char *prefix; + bool (*init_dev_msi_info)(struct device *, struct irq_domain *, struct irq_domain *, struct msi_domain_info *); +}; + +typedef struct irq_alloc_info msi_alloc_info_t; + +struct msi_domain_ops { + irq_hw_number_t (*get_hwirq)(struct msi_domain_info *, msi_alloc_info_t *); + int (*msi_init)(struct irq_domain *, struct msi_domain_info *, unsigned int, irq_hw_number_t, msi_alloc_info_t *); + void (*msi_free)(struct irq_domain *, struct msi_domain_info *, unsigned int); + int (*msi_prepare)(struct irq_domain *, struct device *, int, msi_alloc_info_t *); + void (*msi_teardown)(struct irq_domain *, msi_alloc_info_t *); + void (*prepare_desc)(struct irq_domain *, msi_alloc_info_t *, struct msi_desc *); + void (*set_desc)(msi_alloc_info_t *, struct msi_desc *); + int (*domain_alloc_irqs)(struct irq_domain *, struct device *, int); + void (*domain_free_irqs)(struct irq_domain *, struct device *); + void (*msi_post_free)(struct irq_domain *, struct device *); + int (*msi_translate)(struct irq_domain *, struct irq_fwspec *, irq_hw_number_t *, unsigned int *); +}; + +struct msi_domain_info { + u32 flags; + enum irq_domain_bus_token bus_token; + unsigned int hwsize; + struct msi_domain_ops *ops; + struct device *dev; + struct irq_chip *chip; + void *chip_data; + irq_flow_handler_t handler; + void *handler_data; + const char *handler_name; + msi_alloc_info_t *alloc_data; + void *data; +}; + +enum hv_partition_type { + HV_PARTITION_TYPE_GUEST = 0, + HV_PARTITION_TYPE_ROOT = 1, +}; + +struct ms_hyperv_info { + u32 features; + u32 priv_high; + u32 ext_features; + u32 misc_features; + u32 hints; + u32 nested_features; + u32 max_vp_index; + u32 max_lp_index; + u8 vtl; + union { + u32 isolation_config_a; + struct { + u32 paravisor_present: 1; + u32 reserved_a1: 31; + }; + }; + union { + u32 isolation_config_b; + struct { + u32 cvm_type: 4; + u32 reserved_b1: 1; + u32 shared_gpa_boundary_active: 1; + u32 shared_gpa_boundary_bits: 6; + u32 reserved_b2: 20; + }; + }; + u64 shared_gpa_boundary; +}; + +struct desc_ptr { + short unsigned int size; + long unsigned int address; +} __attribute__((packed)); + +enum hv_isolation_type { + HV_ISOLATION_TYPE_NONE = 0, + HV_ISOLATION_TYPE_VBS = 1, + HV_ISOLATION_TYPE_SNP = 2, + HV_ISOLATION_TYPE_TDX = 3, +}; + +struct hv_x64_segment_register { + u64 base; + u32 limit; + u16 selector; + union { + struct { + u16 segment_type: 4; + u16 non_system_segment: 1; + u16 descriptor_privilege_level: 2; + u16 present: 1; + u16 reserved: 4; + u16 available: 1; + u16 _long: 1; + u16 _default: 1; + u16 granularity: 1; + }; + u16 attributes; + }; +}; + +struct hv_x64_table_register { + u16 pad[3]; + u16 limit; + u64 base; +}; + +struct hv_init_vp_context { + u64 rip; + u64 rsp; + u64 rflags; + struct hv_x64_segment_register cs; + struct hv_x64_segment_register ds; + struct hv_x64_segment_register es; + struct hv_x64_segment_register fs; + struct hv_x64_segment_register gs; + struct hv_x64_segment_register ss; + struct hv_x64_segment_register tr; + struct hv_x64_segment_register ldtr; + struct hv_x64_table_register idtr; + struct hv_x64_table_register gdtr; + u64 efer; + u64 cr0; + u64 cr3; + u64 cr4; + u64 msr_cr_pat; +}; + +struct hv_enable_vp_vtl { + u64 partition_id; + u32 vp_index; + union hv_input_vtl target_vtl; + u8 mbz0; + u16 mbz1; + struct hv_init_vp_context vp_context; +}; + +enum hv_mem_host_visibility { + VMBUS_PAGE_NOT_VISIBLE = 0, + VMBUS_PAGE_VISIBLE_READ_ONLY = 1, + VMBUS_PAGE_VISIBLE_READ_WRITE = 3, +}; + +struct hv_gpa_range_for_visibility { + u64 partition_id; + u32 host_visibility: 2; + u32 reserved0: 30; + u32 reserved1; + u64 gpa_page_list[510]; +}; + +union hv_ghcb { + struct ghcb ghcb; + struct { + u64 hypercalldata[509]; + u64 outputgpa; + union { + union { + struct { + u32 callcode: 16; + u32 isfast: 1; + u32 reserved1: 14; + u32 isnested: 1; + u32 countofelements: 12; + u32 reserved2: 4; + u32 repstartindex: 12; + u32 reserved3: 4; + }; + u64 asuint64; + } hypercallinput; + union { + struct { + u16 callstatus; + u16 reserved1; + u32 elementsprocessed: 12; + u32 reserved2: 20; + }; + u64 asunit64; + } hypercalloutput; + }; + u64 reserved2; + } hypercall; +}; + +struct mtrr_var_range { + __u32 base_lo; + __u32 base_hi; + __u32 mask_lo; + __u32 mask_hi; +}; + +typedef __u8 mtrr_type; + +struct hv_vpset { + u64 format; + u64 valid_bank_mask; + u64 bank_contents[0]; +}; + +struct hv_send_ipi { + u32 vector; + u32 reserved; + u64 cpu_mask; +}; + +enum hv_generic_set_format { + HV_GENERIC_SET_SPARSE_4K = 0, + HV_GENERIC_SET_ALL = 1, +}; + +struct hv_send_ipi_ex { + u32 vector; + u32 reserved; + struct hv_vpset vp_set; +}; + +struct math_emu_info { + long int ___orig_eip; + struct pt_regs *regs; +}; + +struct fregs_state { + u32 cwd; + u32 swd; + u32 twd; + u32 fip; + u32 fcs; + u32 foo; + u32 fos; + u32 st_space[20]; + u32 status; +}; + +struct swregs_state { + u32 cwd; + u32 swd; + u32 twd; + u32 fip; + u32 fcs; + u32 foo; + u32 fos; + u32 st_space[20]; + u8 ftop; + u8 changed; + u8 lookahead; + u8 no_update; + u8 rm; + u8 alimit; + struct math_emu_info *info; + u32 entry_eip; +}; + +union fpregs_state { + struct fregs_state fsave; + struct fxregs_state fxsave; + struct swregs_state soft; + struct xregs_state xsave; + u8 __padding[4096]; +}; + +struct fpstate { + unsigned int size; + unsigned int user_size; + u64 xfeatures; + u64 user_xfeatures; + u64 xfd; + unsigned int is_valloc: 1; + unsigned int is_guest: 1; + unsigned int is_confidential: 1; + unsigned int in_use: 1; + long: 64; + long: 64; + long: 64; + union fpregs_state regs; +}; + +struct fpu_state_perm { + u64 __state_perm; + unsigned int __state_size; + unsigned int __user_state_size; +}; + +struct fpu { + unsigned int last_cpu; + long unsigned int avx512_timestamp; + struct fpstate *fpstate; + struct fpstate *__task_fpstate; + struct fpu_state_perm perm; + struct fpu_state_perm guest_perm; + struct fpstate __fpstate; +}; + +struct iommu_mm_data { + u32 pasid; + struct list_head sva_domains; +}; + +struct iommu_fault_param; + +struct iommu_fwspec; + +struct iommu_device; + +struct dev_iommu { + struct mutex lock; + struct iommu_fault_param *fault_param; + struct iommu_fwspec *fwspec; + struct iommu_device *iommu_dev; + void *priv; + u32 max_pasids; + u32 attach_deferred: 1; + u32 pci_32bit_workaround: 1; + u32 require_direct: 1; + u32 shadow_on_flush: 1; +}; + +enum show_regs_mode { + SHOW_REGS_SHORT = 0, + SHOW_REGS_USER = 1, + SHOW_REGS_ALL = 2, +}; + +struct of_phandle_args { + struct device_node *np; + int args_count; + uint32_t args[16]; +}; + +enum iommu_hw_info_type { + IOMMU_HW_INFO_TYPE_NONE = 0, + IOMMU_HW_INFO_TYPE_DEFAULT = 0, + IOMMU_HW_INFO_TYPE_INTEL_VTD = 1, + IOMMU_HW_INFO_TYPE_ARM_SMMUV3 = 2, + IOMMU_HW_INFO_TYPE_TEGRA241_CMDQV = 3, +}; + +enum iommu_viommu_type { + IOMMU_VIOMMU_TYPE_DEFAULT = 0, + IOMMU_VIOMMU_TYPE_ARM_SMMUV3 = 1, + IOMMU_VIOMMU_TYPE_TEGRA241_CMDQV = 2, +}; + +struct iommu_fault_page_request { + u32 flags; + u32 pasid; + u32 grpid; + u32 perm; + u64 addr; + u64 private_data[2]; +}; + +struct iommu_fault { + u32 type; + struct iommu_fault_page_request prm; +}; + +struct iommu_page_response { + u32 pasid; + u32 grpid; + u32 code; +}; + +struct iopf_fault { + struct iommu_fault fault; + struct list_head list; +}; + +struct iommu_attach_handle; + +struct iopf_group { + struct iopf_fault last_fault; + struct list_head faults; + size_t fault_count; + struct list_head pending_node; + struct work_struct work; + struct iommu_attach_handle *attach_handle; + struct iommu_fault_param *fault_param; + struct list_head node; + u32 cookie; +}; + +struct iommu_domain; + +struct iommu_attach_handle { + struct iommu_domain *domain; +}; + +struct iopf_queue; + +struct iommu_fault_param { + struct mutex lock; + refcount_t users; + struct callback_head rcu; + struct device *dev; + struct iopf_queue *queue; + struct list_head queue_list; + struct list_head partial; + struct list_head faults; +}; + +struct iopf_queue { + struct workqueue_struct *wq; + struct list_head devices; + struct mutex lock; +}; + +typedef int (*iommu_fault_handler_t)(struct iommu_domain *, struct device *, long unsigned int, int, void *); + +enum iommu_domain_cookie_type { + IOMMU_COOKIE_NONE = 0, + IOMMU_COOKIE_DMA_IOVA = 1, + IOMMU_COOKIE_DMA_MSI = 2, + IOMMU_COOKIE_FAULT_HANDLER = 3, + IOMMU_COOKIE_SVA = 4, + IOMMU_COOKIE_IOMMUFD = 5, +}; + +struct iommu_domain_geometry { + dma_addr_t aperture_start; + dma_addr_t aperture_end; + bool force_aperture; +}; + +struct iommu_domain_ops; + +struct iommu_dirty_ops; + +struct iommu_ops; + +struct iommu_dma_cookie; + +struct iommu_dma_msi_cookie; + +struct iommufd_hw_pagetable; + +struct iommu_domain { + unsigned int type; + enum iommu_domain_cookie_type cookie_type; + const struct iommu_domain_ops *ops; + const struct iommu_dirty_ops *dirty_ops; + const struct iommu_ops *owner; + long unsigned int pgsize_bitmap; + struct iommu_domain_geometry geometry; + int (*iopf_handler)(struct iopf_group *); + union { + struct iommu_dma_cookie *iova_cookie; + struct iommu_dma_msi_cookie *msi_cookie; + struct iommufd_hw_pagetable *iommufd_hwpt; + struct { + iommu_fault_handler_t handler; + void *handler_token; + }; + struct { + struct mm_struct *mm; + int users; + struct list_head next; + }; + }; +}; + +typedef unsigned int ioasid_t; + +struct iommu_iotlb_gather; + +struct iommu_user_data_array; + +struct iommu_domain_ops { + int (*attach_dev)(struct iommu_domain *, struct device *); + int (*set_dev_pasid)(struct iommu_domain *, struct device *, ioasid_t, struct iommu_domain *); + int (*map_pages)(struct iommu_domain *, long unsigned int, phys_addr_t, size_t, size_t, int, gfp_t, size_t *); + size_t (*unmap_pages)(struct iommu_domain *, long unsigned int, size_t, size_t, struct iommu_iotlb_gather *); + void (*flush_iotlb_all)(struct iommu_domain *); + int (*iotlb_sync_map)(struct iommu_domain *, long unsigned int, size_t); + void (*iotlb_sync)(struct iommu_domain *, struct iommu_iotlb_gather *); + int (*cache_invalidate_user)(struct iommu_domain *, struct iommu_user_data_array *); + phys_addr_t (*iova_to_phys)(struct iommu_domain *, dma_addr_t); + bool (*enforce_cache_coherency)(struct iommu_domain *); + int (*set_pgtable_quirks)(struct iommu_domain *, long unsigned int); + void (*free)(struct iommu_domain *); +}; + +struct iommu_dirty_bitmap; + +struct iommu_dirty_ops { + int (*set_dirty_tracking)(struct iommu_domain *, bool); + int (*read_and_clear_dirty)(struct iommu_domain *, long unsigned int, size_t, long unsigned int, struct iommu_dirty_bitmap *); +}; + +enum iommu_cap { + IOMMU_CAP_CACHE_COHERENCY = 0, + IOMMU_CAP_NOEXEC = 1, + IOMMU_CAP_PRE_BOOT_PROTECTION = 2, + IOMMU_CAP_ENFORCE_CACHE_COHERENCY = 3, + IOMMU_CAP_DEFERRED_FLUSH = 4, + IOMMU_CAP_DIRTY_TRACKING = 5, +}; + +struct iommu_user_data; + +struct iommufd_viommu; + +struct iommu_ops { + bool (*capable)(struct device *, enum iommu_cap); + void * (*hw_info)(struct device *, u32 *, enum iommu_hw_info_type *); + struct iommu_domain * (*domain_alloc_identity)(struct device *); + struct iommu_domain * (*domain_alloc_paging_flags)(struct device *, u32, const struct iommu_user_data *); + struct iommu_domain * (*domain_alloc_paging)(struct device *); + struct iommu_domain * (*domain_alloc_sva)(struct device *, struct mm_struct *); + struct iommu_domain * (*domain_alloc_nested)(struct device *, struct iommu_domain *, u32, const struct iommu_user_data *); + struct iommu_device * (*probe_device)(struct device *); + void (*release_device)(struct device *); + void (*probe_finalize)(struct device *); + struct iommu_group * (*device_group)(struct device *); + void (*get_resv_regions)(struct device *, struct list_head *); + int (*of_xlate)(struct device *, const struct of_phandle_args *); + bool (*is_attach_deferred)(struct device *); + void (*page_response)(struct device *, struct iopf_fault *, struct iommu_page_response *); + int (*def_domain_type)(struct device *); + size_t (*get_viommu_size)(struct device *, enum iommu_viommu_type); + int (*viommu_init)(struct iommufd_viommu *, struct iommu_domain *, const struct iommu_user_data *); + const struct iommu_domain_ops *default_domain_ops; + struct module *owner; + struct iommu_domain *identity_domain; + struct iommu_domain *blocked_domain; + struct iommu_domain *release_domain; + struct iommu_domain *default_domain; + u8 user_pasid_table: 1; +}; + +struct iommu_pages_list { + struct list_head pages; +}; + +struct iommu_iotlb_gather { + long unsigned int start; + long unsigned int end; + size_t pgsize; + struct iommu_pages_list freelist; + bool queued; +}; + +struct iova_bitmap; + +struct iommu_dirty_bitmap { + struct iova_bitmap *bitmap; + struct iommu_iotlb_gather *gather; +}; + +struct iommu_user_data { + unsigned int type; + void *uptr; + size_t len; +}; + +struct iommu_user_data_array { + unsigned int type; + void *uptr; + size_t entry_len; + u32 entry_num; +}; + +struct iommu_device { + struct list_head list; + const struct iommu_ops *ops; + struct fwnode_handle *fwnode; + struct device *dev; + struct iommu_group *singleton_group; + u32 max_pasids; + bool ready; +}; + +struct iommu_fwspec { + struct fwnode_handle *iommu_fwnode; + u32 flags; + unsigned int num_ids; + u32 ids[0]; +}; + +struct resctrl_pqr_state { + u32 cur_rmid; + u32 cur_closid; + u32 default_rmid; + u32 default_closid; +}; + +enum which_selector { + FS = 0, + GS = 1, +}; + +enum exception_stack_ordering { + ESTACK_DF = 0, + ESTACK_NMI = 1, + ESTACK_DB = 2, + ESTACK_MCE = 3, + ESTACK_VC = 4, + ESTACK_VC2 = 5, + N_EXCEPTION_STACKS = 6, +}; + +struct estack_pages { + u32 offs; + u16 size; + u16 type; +}; + +enum lockdep_ok { + LOCKDEP_STILL_OK = 0, + LOCKDEP_NOW_UNRELIABLE = 1, +}; + +struct entry_stack { + char stack[4096]; +}; + +struct entry_stack_page { + struct entry_stack stack; +}; + +enum die_val { + DIE_OOPS = 1, + DIE_INT3 = 2, + DIE_DEBUG = 3, + DIE_PANIC = 4, + DIE_NMI = 5, + DIE_DIE = 6, + DIE_KERNELDEBUG = 7, + DIE_TRAP = 8, + DIE_GPF = 9, + DIE_CALL = 10, + DIE_PAGE_FAULT = 11, + DIE_NMIUNKNOWN = 12, +}; + +struct debug_store_buffers { + char bts_buffer[65536]; + char pebs_buffer[65536]; +}; + +struct cpu_entry_area { + char gdt[4096]; + struct entry_stack_page entry_stack_page; + struct tss_struct tss; + struct cea_exception_stacks estacks; + struct debug_store cpu_debug_store; + struct debug_store_buffers cpu_debug_buffers; +}; + +enum { + IRQ_TYPE_NONE = 0, + IRQ_TYPE_EDGE_RISING = 1, + IRQ_TYPE_EDGE_FALLING = 2, + IRQ_TYPE_EDGE_BOTH = 3, + IRQ_TYPE_LEVEL_HIGH = 4, + IRQ_TYPE_LEVEL_LOW = 8, + IRQ_TYPE_LEVEL_MASK = 12, + IRQ_TYPE_SENSE_MASK = 15, + IRQ_TYPE_DEFAULT = 15, + IRQ_TYPE_PROBE = 16, + IRQ_LEVEL = 256, + IRQ_PER_CPU = 512, + IRQ_NOPROBE = 1024, + IRQ_NOREQUEST = 2048, + IRQ_NOAUTOEN = 4096, + IRQ_NO_BALANCING = 8192, + IRQ_NESTED_THREAD = 32768, + IRQ_NOTHREAD = 65536, + IRQ_PER_CPU_DEVID = 131072, + IRQ_IS_POLLED = 262144, + IRQ_DISABLE_UNLAZY = 524288, + IRQ_HIDDEN = 1048576, + IRQ_NO_DEBUG = 2097152, +}; + +typedef struct irq_desc *vector_irq_t[256]; + +struct legacy_pic { + int nr_legacy_irqs; + struct irq_chip *chip; + void (*mask)(unsigned int); + void (*unmask)(unsigned int); + void (*mask_all)(void); + void (*restore_mask)(void); + void (*init)(int); + int (*probe)(void); + int (*irq_pending)(unsigned int); + void (*make_irq)(unsigned int); +}; + +struct userfaultfd_ctx { + wait_queue_head_t fault_pending_wqh; + wait_queue_head_t fault_wqh; + wait_queue_head_t fd_wqh; + wait_queue_head_t event_wqh; + seqcount_spinlock_t refile_seq; + refcount_t refcount; + unsigned int flags; + unsigned int features; + bool released; + struct rw_semaphore map_changing_lock; + atomic_t mmap_changing; + struct mm_struct *mm; +}; + +enum align_flags { + ALIGN_VA_32 = 1, + ALIGN_VA_64 = 2, +}; + +struct va_alignment { + int flags; + long unsigned int mask; + long unsigned int bits; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum { + EI_ETYPE_NULL = 0, + EI_ETYPE_ERRNO = 1, + EI_ETYPE_ERRNO_NULL = 2, + EI_ETYPE_TRUE = 3, +}; + +struct vm_unmapped_area_info { + long unsigned int flags; + long unsigned int length; + long unsigned int low_limit; + long unsigned int high_limit; + long unsigned int align_mask; + long unsigned int align_offset; + long unsigned int start_gap; +}; + +struct syscall_metadata { + const char *name; + int syscall_nr; + int nb_args; + const char **types; + const char **args; + struct list_head enter_fields; + struct trace_event_call *enter_event; + struct trace_event_call *exit_event; +}; + +struct hstate; + +struct hugepage_subpool { + spinlock_t lock; + long int count; + long int max_hpages; + long int used_hpages; + struct hstate *hstate; + long int min_hpages; + long int rsv_hpages; +}; + +struct hstate { + struct mutex resize_lock; + struct lock_class_key resize_key; + int next_nid_to_alloc; + int next_nid_to_free; + unsigned int order; + unsigned int demote_order; + long unsigned int mask; + long unsigned int max_huge_pages; + long unsigned int nr_huge_pages; + long unsigned int free_huge_pages; + long unsigned int resv_huge_pages; + long unsigned int surplus_huge_pages; + long unsigned int nr_overcommit_huge_pages; + struct list_head hugepage_activelist; + struct list_head hugepage_freelists[1024]; + unsigned int max_huge_pages_node[1024]; + unsigned int nr_huge_pages_node[1024]; + unsigned int free_huge_pages_node[1024]; + unsigned int surplus_huge_pages_node[1024]; + char name[32]; +}; + +struct hugetlbfs_sb_info { + long int max_inodes; + long int free_inodes; + spinlock_t stat_lock; + struct hstate *hstate; + struct hugepage_subpool *spool; + kuid_t uid; + kgid_t gid; + umode_t mode; +}; + +enum mthp_stat_item { + MTHP_STAT_ANON_FAULT_ALLOC = 0, + MTHP_STAT_ANON_FAULT_FALLBACK = 1, + MTHP_STAT_ANON_FAULT_FALLBACK_CHARGE = 2, + MTHP_STAT_ZSWPOUT = 3, + MTHP_STAT_SWPIN = 4, + MTHP_STAT_SWPIN_FALLBACK = 5, + MTHP_STAT_SWPIN_FALLBACK_CHARGE = 6, + MTHP_STAT_SWPOUT = 7, + MTHP_STAT_SWPOUT_FALLBACK = 8, + MTHP_STAT_SHMEM_ALLOC = 9, + MTHP_STAT_SHMEM_FALLBACK = 10, + MTHP_STAT_SHMEM_FALLBACK_CHARGE = 11, + MTHP_STAT_SPLIT = 12, + MTHP_STAT_SPLIT_FAILED = 13, + MTHP_STAT_SPLIT_DEFERRED = 14, + MTHP_STAT_NR_ANON = 15, + MTHP_STAT_NR_ANON_PARTIALLY_MAPPED = 16, + __MTHP_STAT_COUNT = 17, +}; + +enum vm_event_item { + PGPGIN = 0, + PGPGOUT = 1, + PSWPIN = 2, + PSWPOUT = 3, + PGALLOC_DMA = 4, + PGALLOC_DMA32 = 5, + PGALLOC_NORMAL = 6, + PGALLOC_MOVABLE = 7, + PGALLOC_DEVICE = 8, + ALLOCSTALL_DMA = 9, + ALLOCSTALL_DMA32 = 10, + ALLOCSTALL_NORMAL = 11, + ALLOCSTALL_MOVABLE = 12, + ALLOCSTALL_DEVICE = 13, + PGSCAN_SKIP_DMA = 14, + PGSCAN_SKIP_DMA32 = 15, + PGSCAN_SKIP_NORMAL = 16, + PGSCAN_SKIP_MOVABLE = 17, + PGSCAN_SKIP_DEVICE = 18, + PGFREE = 19, + PGACTIVATE = 20, + PGDEACTIVATE = 21, + PGLAZYFREE = 22, + PGFAULT = 23, + PGMAJFAULT = 24, + PGLAZYFREED = 25, + PGREFILL = 26, + PGREUSE = 27, + PGSTEAL_KSWAPD = 28, + PGSTEAL_DIRECT = 29, + PGSTEAL_KHUGEPAGED = 30, + PGSTEAL_PROACTIVE = 31, + PGSCAN_KSWAPD = 32, + PGSCAN_DIRECT = 33, + PGSCAN_KHUGEPAGED = 34, + PGSCAN_PROACTIVE = 35, + PGSCAN_DIRECT_THROTTLE = 36, + PGSCAN_ANON = 37, + PGSCAN_FILE = 38, + PGSTEAL_ANON = 39, + PGSTEAL_FILE = 40, + PGSCAN_ZONE_RECLAIM_SUCCESS = 41, + PGSCAN_ZONE_RECLAIM_FAILED = 42, + PGINODESTEAL = 43, + SLABS_SCANNED = 44, + KSWAPD_INODESTEAL = 45, + KSWAPD_LOW_WMARK_HIT_QUICKLY = 46, + KSWAPD_HIGH_WMARK_HIT_QUICKLY = 47, + PAGEOUTRUN = 48, + PGROTATED = 49, + DROP_PAGECACHE = 50, + DROP_SLAB = 51, + OOM_KILL = 52, + NUMA_PTE_UPDATES = 53, + NUMA_HUGE_PTE_UPDATES = 54, + NUMA_HINT_FAULTS = 55, + NUMA_HINT_FAULTS_LOCAL = 56, + NUMA_PAGE_MIGRATE = 57, + PGMIGRATE_SUCCESS = 58, + PGMIGRATE_FAIL = 59, + THP_MIGRATION_SUCCESS = 60, + THP_MIGRATION_FAIL = 61, + THP_MIGRATION_SPLIT = 62, + COMPACTMIGRATE_SCANNED = 63, + COMPACTFREE_SCANNED = 64, + COMPACTISOLATED = 65, + COMPACTSTALL = 66, + COMPACTFAIL = 67, + COMPACTSUCCESS = 68, + KCOMPACTD_WAKE = 69, + KCOMPACTD_MIGRATE_SCANNED = 70, + KCOMPACTD_FREE_SCANNED = 71, + HTLB_BUDDY_PGALLOC = 72, + HTLB_BUDDY_PGALLOC_FAIL = 73, + CMA_ALLOC_SUCCESS = 74, + CMA_ALLOC_FAIL = 75, + UNEVICTABLE_PGCULLED = 76, + UNEVICTABLE_PGSCANNED = 77, + UNEVICTABLE_PGRESCUED = 78, + UNEVICTABLE_PGMLOCKED = 79, + UNEVICTABLE_PGMUNLOCKED = 80, + UNEVICTABLE_PGCLEARED = 81, + UNEVICTABLE_PGSTRANDED = 82, + THP_FAULT_ALLOC = 83, + THP_FAULT_FALLBACK = 84, + THP_FAULT_FALLBACK_CHARGE = 85, + THP_COLLAPSE_ALLOC = 86, + THP_COLLAPSE_ALLOC_FAILED = 87, + THP_FILE_ALLOC = 88, + THP_FILE_FALLBACK = 89, + THP_FILE_FALLBACK_CHARGE = 90, + THP_FILE_MAPPED = 91, + THP_SPLIT_PAGE = 92, + THP_SPLIT_PAGE_FAILED = 93, + THP_DEFERRED_SPLIT_PAGE = 94, + THP_UNDERUSED_SPLIT_PAGE = 95, + THP_SPLIT_PMD = 96, + THP_SCAN_EXCEED_NONE_PTE = 97, + THP_SCAN_EXCEED_SWAP_PTE = 98, + THP_SCAN_EXCEED_SHARED_PTE = 99, + THP_SPLIT_PUD = 100, + THP_ZERO_PAGE_ALLOC = 101, + THP_ZERO_PAGE_ALLOC_FAILED = 102, + THP_SWPOUT = 103, + THP_SWPOUT_FALLBACK = 104, + BALLOON_INFLATE = 105, + BALLOON_DEFLATE = 106, + BALLOON_MIGRATE = 107, + SWAP_RA = 108, + SWAP_RA_HIT = 109, + SWPIN_ZERO = 110, + SWPOUT_ZERO = 111, + KSM_SWPIN_COPY = 112, + COW_KSM = 113, + ZSWPIN = 114, + ZSWPOUT = 115, + ZSWPWB = 116, + DIRECT_MAP_LEVEL2_SPLIT = 117, + DIRECT_MAP_LEVEL3_SPLIT = 118, + DIRECT_MAP_LEVEL2_COLLAPSE = 119, + DIRECT_MAP_LEVEL3_COLLAPSE = 120, + NR_VM_EVENT_ITEMS = 121, +}; + +typedef struct { + void *lock; +} class_irq_t; + +enum clock_event_state { + CLOCK_EVT_STATE_DETACHED = 0, + CLOCK_EVT_STATE_SHUTDOWN = 1, + CLOCK_EVT_STATE_PERIODIC = 2, + CLOCK_EVT_STATE_ONESHOT = 3, + CLOCK_EVT_STATE_ONESHOT_STOPPED = 4, +}; + +struct clock_event_device { + void (*event_handler)(struct clock_event_device *); + int (*set_next_event)(long unsigned int, struct clock_event_device *); + int (*set_next_ktime)(ktime_t, struct clock_event_device *); + ktime_t next_event; + u64 max_delta_ns; + u64 min_delta_ns; + u32 mult; + u32 shift; + enum clock_event_state state_use_accessors; + unsigned int features; + long unsigned int retries; + int (*set_state_periodic)(struct clock_event_device *); + int (*set_state_oneshot)(struct clock_event_device *); + int (*set_state_oneshot_stopped)(struct clock_event_device *); + int (*set_state_shutdown)(struct clock_event_device *); + int (*tick_resume)(struct clock_event_device *); + void (*broadcast)(const struct cpumask *); + void (*suspend)(struct clock_event_device *); + void (*resume)(struct clock_event_device *); + long unsigned int min_delta_ticks; + long unsigned int max_delta_ticks; + const char *name; + int rating; + int irq; + int bound_on; + const struct cpumask *cpumask; + struct list_head list; + struct module *owner; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct muldiv { + u32 multiplier; + u32 divider; +}; + +struct freq_desc { + bool use_msr_plat; + struct muldiv muldiv[16]; + u32 freqs[16]; + u32 mask; +}; + +struct e820_entry { + u64 addr; + u64 size; + enum e820_type type; +} __attribute__((packed)); + +struct e820_table { + __u32 nr_entries; + struct e820_entry entries[3200]; +}; + +enum system_states { + SYSTEM_BOOTING = 0, + SYSTEM_SCHEDULING = 1, + SYSTEM_FREEING_INITMEM = 2, + SYSTEM_RUNNING = 3, + SYSTEM_HALT = 4, + SYSTEM_POWER_OFF = 5, + SYSTEM_RESTART = 6, + SYSTEM_SUSPEND = 7, +}; + +union text_poke_insn { + u8 text[5]; + struct { + u8 opcode; + s32 disp; + } __attribute__((packed)); +}; + +enum insn_type { + CALL = 0, + NOP = 1, + JMP = 2, + RET = 3, + JCC = 4, +}; + +struct vcpu_fpu_config { + unsigned int size; + u64 features; +}; + +struct fpu_state_config { + unsigned int max_size; + unsigned int default_size; + u64 max_features; + u64 default_features; + u64 legacy_features; + u64 independent_features; +}; + +struct _fpreg { + __u16 significand[4]; + __u16 exponent; +}; + +struct _fpxreg { + __u16 significand[4]; + __u16 exponent; + __u16 padding[3]; +}; + +struct cet_user_state { + u64 user_cet; + u64 user_ssp; +}; + +struct user_i387_ia32_struct { + u32 cwd; + u32 swd; + u32 twd; + u32 fip; + u32 fcs; + u32 foo; + u32 fos; + u32 st_space[20]; +}; + +struct membuf { + void *p; + size_t left; +}; + +struct user_regset; + +typedef int user_regset_active_fn(struct task_struct *, const struct user_regset *); + +typedef int user_regset_get2_fn(struct task_struct *, const struct user_regset *, struct membuf); + +typedef int user_regset_set_fn(struct task_struct *, const struct user_regset *, unsigned int, unsigned int, const void *, const void *); + +typedef int user_regset_writeback_fn(struct task_struct *, const struct user_regset *, int); + +struct user_regset { + user_regset_get2_fn *regset_get; + user_regset_set_fn *set; + user_regset_active_fn *active; + user_regset_writeback_fn *writeback; + unsigned int n; + unsigned int size; + unsigned int align; + unsigned int bias; + unsigned int core_note_type; + const char *core_note_name; +}; + +enum xstate_copy_mode { + XSTATE_COPY_FP = 0, + XSTATE_COPY_FX = 1, + XSTATE_COPY_XSAVE = 2, +}; + +typedef void (*swap_func_t)(void *, void *, int); + +typedef int (*cmp_func_t)(const void *, const void *); + +struct pkru_state { + u32 pkru; + u32 pad; +}; + +struct fpu_guest { + u64 xfeatures; + u64 xfd_err; + unsigned int uabi_size; + struct fpstate *fpstate; +}; + +struct elf64_note { + Elf64_Word n_namesz; + Elf64_Word n_descsz; + Elf64_Word n_type; +}; + +struct core_vma_metadata { + long unsigned int start; + long unsigned int end; + vm_flags_t flags; + long unsigned int dump_size; + long unsigned int pgoff; + struct file *file; +}; + +struct coredump_params { + const kernel_siginfo_t *siginfo; + struct file *file; + long unsigned int limit; + long unsigned int mm_flags; + int cpu; + loff_t written; + loff_t pos; + loff_t to_skip; + int vma_count; + size_t vma_data_size; + struct core_vma_metadata *vma_meta; + struct pid *pid; +}; + +struct x86_xfeat_component { + __u32 type; + __u32 size; + __u32 offset; + __u32 flags; +}; + +typedef u8 uint8_t; + +struct acpi_table_header { + char signature[4]; + u32 length; + u8 revision; + u8 checksum; + char oem_id[6]; + char oem_table_id[8]; + u32 oem_revision; + char asl_compiler_id[4]; + u32 asl_compiler_revision; +}; + +struct acpi_generic_address { + u8 space_id; + u8 bit_width; + u8 bit_offset; + u8 access_width; + u64 address; +} __attribute__((packed)); + +struct acpi_table_fadt { + struct acpi_table_header header; + u32 facs; + u32 dsdt; + u8 model; + u8 preferred_profile; + u16 sci_interrupt; + u32 smi_command; + u8 acpi_enable; + u8 acpi_disable; + u8 s4_bios_request; + u8 pstate_control; + u32 pm1a_event_block; + u32 pm1b_event_block; + u32 pm1a_control_block; + u32 pm1b_control_block; + u32 pm2_control_block; + u32 pm_timer_block; + u32 gpe0_block; + u32 gpe1_block; + u8 pm1_event_length; + u8 pm1_control_length; + u8 pm2_control_length; + u8 pm_timer_length; + u8 gpe0_block_length; + u8 gpe1_block_length; + u8 gpe1_base; + u8 cst_control; + u16 c2_latency; + u16 c3_latency; + u16 flush_size; + u16 flush_stride; + u8 duty_offset; + u8 duty_width; + u8 day_alarm; + u8 month_alarm; + u8 century; + u16 boot_flags; + u8 reserved; + u32 flags; + struct acpi_generic_address reset_register; + u8 reset_value; + u16 arm_boot_flags; + u8 minor_revision; + u64 Xfacs; + u64 Xdsdt; + struct acpi_generic_address xpm1a_event_block; + struct acpi_generic_address xpm1b_event_block; + struct acpi_generic_address xpm1a_control_block; + struct acpi_generic_address xpm1b_control_block; + struct acpi_generic_address xpm2_control_block; + struct acpi_generic_address xpm_timer_block; + struct acpi_generic_address xgpe0_block; + struct acpi_generic_address xgpe1_block; + struct acpi_generic_address sleep_control; + struct acpi_generic_address sleep_status; + u64 hypervisor_id; +} __attribute__((packed)); + +enum { + TB_SHUTDOWN_REBOOT = 0, + TB_SHUTDOWN_S5 = 1, + TB_SHUTDOWN_S4 = 2, + TB_SHUTDOWN_S3 = 3, + TB_SHUTDOWN_HALT = 4, + TB_SHUTDOWN_WFS = 5, +}; + +struct tboot_mac_region { + u64 start; + u32 size; +} __attribute__((packed)); + +struct tboot_acpi_generic_address { + u8 space_id; + u8 bit_width; + u8 bit_offset; + u8 access_width; + u64 address; +} __attribute__((packed)); + +struct tboot_acpi_sleep_info { + struct tboot_acpi_generic_address pm1a_cnt_blk; + struct tboot_acpi_generic_address pm1b_cnt_blk; + struct tboot_acpi_generic_address pm1a_evt_blk; + struct tboot_acpi_generic_address pm1b_evt_blk; + u16 pm1a_cnt_val; + u16 pm1b_cnt_val; + u64 wakeup_vector; + u32 vector_width; + u64 kernel_s3_resume_vector; +} __attribute__((packed)); + +struct tboot { + u8 uuid[16]; + u32 version; + u32 log_addr; + u32 shutdown_entry; + u32 shutdown_type; + struct tboot_acpi_sleep_info acpi_sinfo; + u32 tboot_base; + u32 tboot_size; + u8 num_mac_regions; + struct tboot_mac_region mac_regions[32]; + u8 s3_key[64]; + u8 reserved_align[3]; + u32 num_in_wfs; +}; + +struct sha1_hash { + u8 hash[20]; +}; + +struct sinit_mle_data { + u32 version; + struct sha1_hash bios_acm_id; + u32 edx_senter_flags; + u64 mseg_valid; + struct sha1_hash sinit_hash; + struct sha1_hash mle_hash; + struct sha1_hash stm_hash; + struct sha1_hash lcp_policy_hash; + u32 lcp_policy_control; + u32 rlp_wakeup_addr; + u32 reserved; + u32 num_mdrs; + u32 mdrs_off; + u32 num_vtd_dmars; + u32 vtd_dmars_off; +} __attribute__((packed)); + +enum cpuid_regs_idx { + CPUID_EAX = 0, + CPUID_EBX = 1, + CPUID_ECX = 2, + CPUID_EDX = 3, +}; + +struct topo_scan { + struct cpuinfo_x86 *c; + unsigned int dom_shifts[7]; + unsigned int dom_ncpus[7]; + unsigned int ebx1_nproc_shift; + u16 amd_nodes_per_pkg; + u16 amd_node_id; +}; + +enum topo_types { + INVALID_TYPE = 0, + SMT_TYPE = 1, + CORE_TYPE = 2, + MAX_TYPE_0B = 3, + MODULE_TYPE = 3, + AMD_CCD_TYPE = 3, + TILE_TYPE = 4, + AMD_SOCKET_TYPE = 4, + MAX_TYPE_80000026 = 5, + DIE_TYPE = 5, + DIEGRP_TYPE = 6, + MAX_TYPE_1F = 7, +}; + +enum { + DESC_TSS = 9, + DESC_LDT = 2, + DESCTYPE_S = 16, +}; + +struct ldttss_desc { + u16 limit0; + u16 base0; + u16 base1: 8; + u16 type: 5; + u16 dpl: 2; + u16 p: 1; + u16 limit1: 4; + u16 zero0: 3; + u16 g: 1; + u16 base2: 8; + u32 base3; + u32 zero1; +}; + +typedef struct ldttss_desc tss_desc; + +enum cpuid_leafs { + CPUID_1_EDX = 0, + CPUID_8000_0001_EDX = 1, + CPUID_8086_0001_EDX = 2, + CPUID_LNX_1 = 3, + CPUID_1_ECX = 4, + CPUID_C000_0001_EDX = 5, + CPUID_8000_0001_ECX = 6, + CPUID_LNX_2 = 7, + CPUID_LNX_3 = 8, + CPUID_7_0_EBX = 9, + CPUID_D_1_EAX = 10, + CPUID_LNX_4 = 11, + CPUID_7_1_EAX = 12, + CPUID_8000_0008_EBX = 13, + CPUID_6_EAX = 14, + CPUID_8000_000A_EDX = 15, + CPUID_7_ECX = 16, + CPUID_8000_0007_EBX = 17, + CPUID_7_EDX = 18, + CPUID_8000_001F_EAX = 19, + CPUID_8000_0021_EAX = 20, + CPUID_LNX_5 = 21, + NR_CPUID_WORDS = 22, +}; + +struct tlb_context { + u64 ctx_id; + u64 tlb_gen; +}; + +struct tlb_state { + struct mm_struct *loaded_mm; + union { + struct mm_struct *last_user_mm; + long unsigned int last_user_mm_spec; + }; + u16 loaded_mm_asid; + u16 next_asid; + bool invalidate_other; + short unsigned int user_pcid_flush_mask; + long unsigned int cr4; + struct tlb_context ctxs[6]; +}; + +enum kgdb_bptype { + BP_BREAKPOINT = 0, + BP_HARDWARE_BREAKPOINT = 1, + BP_WRITE_WATCHPOINT = 2, + BP_READ_WATCHPOINT = 3, + BP_ACCESS_WATCHPOINT = 4, + BP_POKE_BREAKPOINT = 5, +}; + +struct kgdb_arch { + unsigned char gdb_bpt_instr[1]; + long unsigned int flags; + int (*set_breakpoint)(long unsigned int, char *); + int (*remove_breakpoint)(long unsigned int, char *); + int (*set_hw_breakpoint)(long unsigned int, int, enum kgdb_bptype); + int (*remove_hw_breakpoint)(long unsigned int, int, enum kgdb_bptype); + void (*disable_hw_break)(struct pt_regs *); + void (*remove_all_hw_break)(void); + void (*correct_hw_break)(void); +}; + +enum intercept_words { + INTERCEPT_CR = 0, + INTERCEPT_DR = 1, + INTERCEPT_EXCEPTION = 2, + INTERCEPT_WORD3 = 3, + INTERCEPT_WORD4 = 4, + INTERCEPT_WORD5 = 5, + MAX_INTERCEPT = 6, +}; + +struct cpu_dev { + const char *c_vendor; + const char *c_ident[2]; + void (*c_early_init)(struct cpuinfo_x86 *); + void (*c_bsp_init)(struct cpuinfo_x86 *); + void (*c_init)(struct cpuinfo_x86 *); + void (*c_identify)(struct cpuinfo_x86 *); + void (*c_detect_tlb)(struct cpuinfo_x86 *); + int c_x86_vendor; +}; + +struct ppin_info { + int feature; + int msr_ppin_ctl; + int msr_ppin; +}; + +struct cpuid_dependent_feature { + u32 feature; + u32 level; +}; + +enum vmx_feature_leafs { + MISC_FEATURES = 0, + PRIMARY_CTLS = 1, + SECONDARY_CTLS = 2, + TERTIARY_CTLS_LOW = 3, + TERTIARY_CTLS_HIGH = 4, + NR_VMX_FEATURE_WORDS = 5, +}; + +enum tsx_ctrl_states { + TSX_CTRL_ENABLE = 0, + TSX_CTRL_DISABLE = 1, + TSX_CTRL_RTM_ALWAYS_ABORT = 2, + TSX_CTRL_NOT_SUPPORTED = 3, +}; + +enum spectre_v2_mitigation { + SPECTRE_V2_NONE = 0, + SPECTRE_V2_RETPOLINE = 1, + SPECTRE_V2_LFENCE = 2, + SPECTRE_V2_EIBRS = 3, + SPECTRE_V2_EIBRS_RETPOLINE = 4, + SPECTRE_V2_EIBRS_LFENCE = 5, + SPECTRE_V2_IBRS = 6, +}; + +struct gen_pool; + +typedef long unsigned int (*genpool_algo_t)(long unsigned int *, long unsigned int, long unsigned int, unsigned int, void *, struct gen_pool *, long unsigned int); + +struct gen_pool { + spinlock_t lock; + struct list_head chunks; + int min_alloc_order; + genpool_algo_t algo; + void *data; + const char *name; +}; + +struct mce { + __u64 status; + __u64 misc; + __u64 addr; + __u64 mcgstatus; + __u64 ip; + __u64 tsc; + __u64 time; + __u8 cpuvendor; + __u8 inject_flags; + __u8 severity; + __u8 pad; + __u32 cpuid; + __u8 cs; + __u8 bank; + __u8 cpu; + __u8 finished; + __u32 extcpu; + __u32 socketid; + __u32 apicid; + __u64 mcgcap; + __u64 synd; + __u64 ipid; + __u64 ppin; + __u32 microcode; + __u64 kflags; +}; + +union vendor_info { + struct { + u64 synd1; + u64 synd2; + } amd; +}; + +struct mce_hw_err { + struct mce m; + union vendor_info vendor; +}; + +struct mce_evt_llist { + struct llist_node llnode; + struct mce_hw_err err; +}; + +typedef long unsigned int mce_banks_t[1]; + +enum mcp_flags { + MCP_TIMESTAMP = 1, + MCP_UC = 2, + MCP_DONTLOG = 4, + MCP_QUEUE_LOG = 8, +}; + +struct storm_bank { + u64 history; + u64 timestamp; + bool in_storm_mode; + bool poll_only; +}; + +struct mca_storm_desc { + struct storm_bank banks[64]; + u8 stormy_bank_count; + bool poll_mode; +}; + +struct mca_config { + __u64 lmce_disabled: 1; + __u64 disabled: 1; + __u64 ser: 1; + __u64 recovery: 1; + __u64 bios_cmci_threshold: 1; + __u64 initialized: 1; + __u64 __reserved: 58; + bool dont_log_ce; + bool cmci_disabled; + bool ignore_ce; + bool print_all; + int monarch_timeout; + int panic_timeout; + u32 rip_msr; + s8 bootlog; +}; + +struct mce_vendor_flags { + __u64 overflow_recov: 1; + __u64 succor: 1; + __u64 smca: 1; + __u64 zen_ifu_quirk: 1; + __u64 amd_threshold: 1; + __u64 p5: 1; + __u64 winchip: 1; + __u64 snb_ifu_quirk: 1; + __u64 skx_repmov_quirk: 1; + __u64 __reserved_0: 55; +}; + +struct cpio_data { + void *data; + size_t size; + char name[18]; +}; + +struct firmware { + size_t size; + const u8 *data; + void *priv; +}; + +struct cpu_signature { + unsigned int sig; + unsigned int pf; + unsigned int rev; +}; + +struct ucode_cpu_info { + struct cpu_signature cpu_sig; + void *mc; +}; + +struct microcode_header_intel { + unsigned int hdrver; + unsigned int rev; + unsigned int date; + unsigned int sig; + unsigned int cksum; + unsigned int ldrver; + unsigned int pf; + unsigned int datasize; + unsigned int totalsize; + unsigned int metasize; + unsigned int min_req_ver; + unsigned int reserved; +}; + +struct microcode_intel { + struct microcode_header_intel hdr; + unsigned int bits[0]; +}; + +enum ucode_state { + UCODE_OK = 0, + UCODE_NEW = 1, + UCODE_NEW_SAFE = 2, + UCODE_UPDATED = 3, + UCODE_NFOUND = 4, + UCODE_ERROR = 5, + UCODE_TIMEOUT = 6, + UCODE_OFFLINE = 7, +}; + +struct microcode_ops { + enum ucode_state (*request_microcode_fw)(int, struct device *); + void (*microcode_fini_cpu)(int); + enum ucode_state (*apply_microcode)(int); + int (*collect_cpu_info)(int, struct cpu_signature *); + void (*finalize_late_load)(int); + unsigned int nmi_safe: 1; + unsigned int use_nmi: 1; +}; + +struct early_load_data { + u32 old_rev; + u32 new_rev; +}; + +struct extended_signature { + unsigned int sig; + unsigned int pf; + unsigned int cksum; +}; + +struct extended_sigtable { + unsigned int count; + unsigned int cksum; + unsigned int reserved[3]; + struct extended_signature sigs[0]; +}; + +struct fc_log; + +struct p_log { + const char *prefix; + struct fc_log *log; +}; + +enum fs_context_purpose { + FS_CONTEXT_FOR_MOUNT = 0, + FS_CONTEXT_FOR_SUBMOUNT = 1, + FS_CONTEXT_FOR_RECONFIGURE = 2, +}; + +enum fs_context_phase { + FS_CONTEXT_CREATE_PARAMS = 0, + FS_CONTEXT_CREATING = 1, + FS_CONTEXT_AWAITING_MOUNT = 2, + FS_CONTEXT_AWAITING_RECONF = 3, + FS_CONTEXT_RECONF_PARAMS = 4, + FS_CONTEXT_RECONFIGURING = 5, + FS_CONTEXT_FAILED = 6, +}; + +struct fs_context_operations; + +struct fs_context { + const struct fs_context_operations *ops; + struct mutex uapi_mutex; + struct file_system_type *fs_type; + void *fs_private; + void *sget_key; + struct dentry *root; + struct user_namespace *user_ns; + struct net *net_ns; + const struct cred *cred; + struct p_log log; + const char *source; + void *security; + void *s_fs_info; + unsigned int sb_flags; + unsigned int sb_flags_mask; + unsigned int s_iflags; + enum fs_context_purpose purpose: 8; + enum fs_context_phase phase: 8; + bool need_free: 1; + bool global: 1; + bool oldapi: 1; + bool exclusive: 1; +}; + +struct audit_names; + +struct filename { + const char *name; + const char *uptr; + atomic_t refcnt; + struct audit_names *aname; + const char iname[0]; +}; + +enum fs_value_type { + fs_value_is_undefined = 0, + fs_value_is_flag = 1, + fs_value_is_string = 2, + fs_value_is_blob = 3, + fs_value_is_filename = 4, + fs_value_is_file = 5, +}; + +struct fs_parameter { + const char *key; + enum fs_value_type type: 8; + union { + char *string; + void *blob; + struct filename *name; + struct file *file; + }; + size_t size; + int dirfd; +}; + +struct fc_log { + refcount_t usage; + u8 head; + u8 tail; + u8 need_free; + struct module *owner; + char *buffer[8]; +}; + +struct fs_context_operations { + void (*free)(struct fs_context *); + int (*dup)(struct fs_context *, struct fs_context *); + int (*parse_param)(struct fs_context *, struct fs_parameter *); + int (*parse_monolithic)(struct fs_context *, void *); + int (*get_tree)(struct fs_context *); + int (*reconfigure)(struct fs_context *); +}; + +struct fs_parse_result { + bool negated; + union { + bool boolean; + int int_32; + unsigned int uint_32; + u64 uint_64; + kuid_t uid; + kgid_t gid; + }; +}; + +enum resctrl_event_id { + QOS_L3_OCCUP_EVENT_ID = 1, + QOS_L3_MBM_TOTAL_EVENT_ID = 2, + QOS_L3_MBM_LOCAL_EVENT_ID = 3, + QOS_NUM_EVENTS = 4, +}; + +enum resctrl_res_level { + RDT_RESOURCE_L3 = 0, + RDT_RESOURCE_L2 = 1, + RDT_RESOURCE_MBA = 2, + RDT_RESOURCE_SMBA = 3, + RDT_NUM_RESOURCES = 4, +}; + +enum resctrl_conf_type { + CDP_NONE = 0, + CDP_CODE = 1, + CDP_DATA = 2, +}; + +struct resctrl_schema; + +struct rdt_ctrl_domain; + +struct pseudo_lock_region { + struct resctrl_schema *s; + u32 closid; + struct rdt_ctrl_domain *d; + u32 cbm; + wait_queue_head_t lock_thread_wq; + int thread_done; + int cpu; + unsigned int line_size; + unsigned int size; + void *kmem; + unsigned int minor; + struct dentry *debugfs_dir; + struct list_head pm_reqs; +}; + +struct rdt_resource; + +struct resctrl_schema { + struct list_head list; + char name[8]; + const char *fmt_str; + enum resctrl_conf_type conf_type; + struct rdt_resource *res; + u32 num_closid; +}; + +enum resctrl_domain_type { + RESCTRL_CTRL_DOMAIN = 0, + RESCTRL_MON_DOMAIN = 1, +}; + +struct rdt_domain_hdr { + struct list_head list; + int id; + enum resctrl_domain_type type; + struct cpumask cpu_mask; +}; + +struct resctrl_staged_config { + u32 new_ctrl; + bool have_new_ctrl; +}; + +struct rdt_ctrl_domain { + struct rdt_domain_hdr hdr; + struct pseudo_lock_region *plr; + struct resctrl_staged_config staged_config[3]; + u32 *mbps_val; +}; + +struct mbm_state; + +struct rdt_mon_domain { + struct rdt_domain_hdr hdr; + unsigned int ci_id; + long unsigned int *rmid_busy_llc; + struct mbm_state *mbm_total; + struct mbm_state *mbm_local; + struct delayed_work mbm_over; + struct delayed_work cqm_limbo; + int mbm_work_cpu; + int cqm_work_cpu; +}; + +struct resctrl_cache { + unsigned int cbm_len; + unsigned int min_cbm_bits; + unsigned int shareable_bits; + bool arch_has_sparse_bitmasks; + bool arch_has_per_cpu_cfg; +}; + +enum membw_throttle_mode { + THREAD_THROTTLE_UNDEFINED = 0, + THREAD_THROTTLE_MAX = 1, + THREAD_THROTTLE_PER_THREAD = 2, +}; + +struct resctrl_membw { + u32 min_bw; + u32 max_bw; + u32 bw_gran; + u32 delay_linear; + bool arch_needs_linear; + enum membw_throttle_mode throttle_mode; + bool mba_sc; + u32 *mb_map; +}; + +enum resctrl_scope { + RESCTRL_L2_CACHE = 2, + RESCTRL_L3_CACHE = 3, + RESCTRL_L3_NODE = 4, +}; + +enum resctrl_schema_fmt { + RESCTRL_SCHEMA_BITMAP = 0, + RESCTRL_SCHEMA_RANGE = 1, +}; + +struct rdt_resource { + int rid; + bool alloc_capable; + bool mon_capable; + int num_rmid; + enum resctrl_scope ctrl_scope; + enum resctrl_scope mon_scope; + struct resctrl_cache cache; + struct resctrl_membw membw; + struct list_head ctrl_domains; + struct list_head mon_domains; + char *name; + enum resctrl_schema_fmt schema_fmt; + struct list_head evt_list; + unsigned int mbm_cfg_mask; + bool cdp_capable; +}; + +struct resctrl_cpu_defaults { + u32 closid; + u32 rmid; +}; + +struct resctrl_mon_config_info { + struct rdt_resource *r; + struct rdt_mon_domain *d; + u32 evtid; + u32 mon_config; +}; + +struct rdt_hw_ctrl_domain { + struct rdt_ctrl_domain d_resctrl; + u32 *ctrl_val; +}; + +struct msr_param { + struct rdt_resource *res; + struct rdt_ctrl_domain *dom; + u32 low; + u32 high; +}; + +struct rdt_hw_resource { + struct rdt_resource r_resctrl; + u32 num_closid; + unsigned int msr_base; + void (*msr_update)(struct msr_param *); + unsigned int mon_scale; + unsigned int mbm_width; + bool cdp_enabled; +}; + +enum sgx_encls_function { + ECREATE = 0, + EADD = 1, + EINIT = 2, + EREMOVE = 3, + EDGBRD = 4, + EDGBWR = 5, + EEXTEND = 6, + ELDU = 8, + EBLOCK = 9, + EPA = 10, + EWB = 11, + ETRACK = 12, + EAUG = 13, + EMODPR = 14, + EMODT = 15, +}; + +enum sgx_return_code { + SGX_EPC_PAGE_CONFLICT = 7, + SGX_NOT_TRACKED = 11, + SGX_CHILD_PRESENT = 13, + SGX_INVALID_EINITTOKEN = 16, + SGX_PAGE_NOT_MODIFIABLE = 20, + SGX_UNMASKED_EVENT = 128, +}; + +enum sgx_attribute { + SGX_ATTR_INIT = 1, + SGX_ATTR_DEBUG = 2, + SGX_ATTR_MODE64BIT = 4, + SGX_ATTR_PROVISIONKEY = 16, + SGX_ATTR_EINITTOKENKEY = 32, + SGX_ATTR_KSS = 128, + SGX_ATTR_ASYNC_EXIT_NOTIFY = 1024, +}; + +struct sgx_secs { + u64 size; + u64 base; + u32 ssa_frame_size; + u32 miscselect; + u8 reserved1[24]; + u64 attributes; + u64 xfrm; + u32 mrenclave[8]; + u8 reserved2[32]; + u32 mrsigner[8]; + u8 reserved3[32]; + u32 config_id[16]; + u16 isv_prod_id; + u16 isv_svn; + u16 config_svn; + u8 reserved4[3834]; +}; + +struct sgx_pageinfo { + u64 addr; + u64 contents; + u64 metadata; + u64 secs; +}; + +enum sgx_page_type { + SGX_PAGE_TYPE_SECS = 0, + SGX_PAGE_TYPE_TCS = 1, + SGX_PAGE_TYPE_REG = 2, + SGX_PAGE_TYPE_VA = 3, + SGX_PAGE_TYPE_TRIM = 4, +}; + +enum sgx_secinfo_flags { + SGX_SECINFO_R = 1, + SGX_SECINFO_W = 2, + SGX_SECINFO_X = 4, + SGX_SECINFO_SECS = 0, + SGX_SECINFO_TCS = 256, + SGX_SECINFO_REG = 512, + SGX_SECINFO_VA = 768, + SGX_SECINFO_TRIM = 1024, +}; + +struct sgx_secinfo { + u64 flags; + u8 reserved[56]; +}; + +struct sgx_sigstruct_header { + u64 header1[2]; + u32 vendor; + u32 date; + u64 header2[2]; + u32 swdefined; + u8 reserved1[84]; +}; + +struct sgx_sigstruct_body { + u32 miscselect; + u32 misc_mask; + u8 reserved2[20]; + u64 attributes; + u64 xfrm; + u64 attributes_mask; + u64 xfrm_mask; + u8 mrenclave[32]; + u8 reserved3[32]; + u16 isvprodid; + u16 isvsvn; +} __attribute__((packed)); + +struct sgx_sigstruct { + struct sgx_sigstruct_header header; + u8 modulus[384]; + u32 exponent; + u8 signature[384]; + struct sgx_sigstruct_body body; + u8 reserved4[12]; + u8 q1[384]; + u8 q2[384]; +}; + +struct mempolicy { + atomic_t refcnt; + short unsigned int mode; + short unsigned int flags; + nodemask_t nodes; + int home_node; + union { + nodemask_t cpuset_mems_allowed; + nodemask_t user_nodemask; + } w; +}; + +enum sgx_page_flags { + SGX_PAGE_MEASURE = 1, +}; + +struct sgx_enclave_create { + __u64 src; +}; + +struct sgx_enclave_add_pages { + __u64 src; + __u64 offset; + __u64 length; + __u64 secinfo; + __u64 flags; + __u64 count; +}; + +struct sgx_enclave_init { + __u64 sigstruct; +}; + +struct sgx_enclave_provision { + __u64 fd; +}; + +struct sgx_enclave_restrict_permissions { + __u64 offset; + __u64 length; + __u64 permissions; + __u64 result; + __u64 count; +}; + +struct sgx_enclave_modify_types { + __u64 offset; + __u64 length; + __u64 page_type; + __u64 result; + __u64 count; +}; + +struct sgx_enclave_remove_pages { + __u64 offset; + __u64 length; + __u64 count; +}; + +struct sgx_encl_page; + +struct sgx_epc_page { + unsigned int section; + u16 flags; + u16 poison; + struct sgx_encl_page *owner; + struct list_head list; +}; + +struct sgx_encl; + +struct sgx_va_page; + +struct sgx_encl_page { + long unsigned int desc; + long unsigned int vm_max_prot_bits: 8; + enum sgx_page_type type: 16; + struct sgx_epc_page *epc_page; + struct sgx_encl *encl; + struct sgx_va_page *va_page; +}; + +struct sgx_numa_node { + struct list_head free_page_list; + struct list_head sgx_poison_page_list; + long unsigned int size; + spinlock_t lock; +}; + +struct sgx_epc_section { + long unsigned int phys_addr; + void *virt_addr; + struct sgx_epc_page *pages; + struct sgx_numa_node *node; +}; + +struct sgx_encl { + long unsigned int base; + long unsigned int size; + long unsigned int flags; + unsigned int page_cnt; + unsigned int secs_child_cnt; + struct mutex lock; + struct xarray page_array; + struct sgx_encl_page secs; + long unsigned int attributes; + long unsigned int attributes_mask; + cpumask_t cpumask; + struct file *backing; + struct kref refcount; + struct list_head va_pages; + long unsigned int mm_list_version; + struct list_head mm_list; + spinlock_t mm_lock; + struct srcu_struct srcu; +}; + +struct sgx_va_page { + struct sgx_epc_page *epc_page; + long unsigned int slots[8]; + struct list_head list; +}; + +enum sgx_encl_flags { + SGX_ENCL_IOCTL = 1, + SGX_ENCL_DEBUG = 2, + SGX_ENCL_CREATED = 4, + SGX_ENCL_INITIALIZED = 8, +}; + +struct hypervisor_x86 { + const char *name; + uint32_t (*detect)(void); + enum x86_hypervisor_type type; + struct x86_hyper_init init; + struct x86_hyper_runtime runtime; + bool ignore_nopv; +}; + +struct pv_info { + const char *name; +}; + +union hv_hypervisor_version_info { + struct { + u32 build_number; + u32 minor_version: 16; + u32 major_version: 16; + u32 service_pack; + u32 service_number: 24; + u32 service_branch: 8; + }; + struct { + u32 eax; + u32 ebx; + u32 ecx; + u32 edx; + }; +}; + +struct machine_ops { + void (*restart)(char *); + void (*halt)(void); + void (*power_off)(void); + void (*shutdown)(void); + void (*crash_shutdown)(struct pt_regs *); + void (*emergency_restart)(void); +}; + +struct acpi_hest_header { + u16 type; + u16 source_id; +}; + +struct acpi_hest_ia_error_bank { + u8 bank_number; + u8 clear_status_on_init; + u8 status_format; + u8 reserved; + u32 control_register; + u64 control_data; + u32 status_register; + u32 address_register; + u32 misc_register; +} __attribute__((packed)); + +struct acpi_hest_notify { + u8 type; + u8 length; + u16 config_write_enable; + u32 poll_interval; + u32 vector; + u32 polling_threshold_value; + u32 polling_threshold_window; + u32 error_threshold_value; + u32 error_threshold_window; +}; + +struct acpi_hest_ia_corrected { + struct acpi_hest_header header; + u16 reserved1; + u8 flags; + u8 enabled; + u32 records_to_preallocate; + u32 max_sections_per_record; + struct acpi_hest_notify notify; + u8 num_hardware_banks; + u8 reserved2[3]; +}; + +struct cper_ia_proc_ctx { + u16 reg_ctx_type; + u16 reg_arr_size; + u32 msr_addr; + u64 mm_reg_addr; +}; + +struct cper_sec_mem_err { + u64 validation_bits; + u64 error_status; + u64 physical_addr; + u64 physical_addr_mask; + u16 node; + u16 card; + u16 module; + u16 bank; + u16 device; + u16 row; + u16 column; + u16 bit_pos; + u64 requestor_id; + u64 responder_id; + u64 target_id; + u8 error_type; + u8 extended; + u16 rank; + u16 mem_array_handle; + u16 mem_dev_handle; +}; + +enum x86_topology_cpu_type { + TOPO_CPU_TYPE_PERFORMANCE = 0, + TOPO_CPU_TYPE_EFFICIENCY = 1, + TOPO_CPU_TYPE_UNKNOWN = 2, +}; + +struct cpc_reg { + u8 descriptor; + u16 length; + u8 space_id; + u8 bit_width; + u8 bit_offset; + u8 access_width; + u64 address; +} __attribute__((packed)); + +struct cppc_perf_caps { + u32 guaranteed_perf; + u32 highest_perf; + u32 nominal_perf; + u32 lowest_perf; + u32 lowest_nonlinear_perf; + u32 lowest_freq; + u32 nominal_freq; + u32 energy_perf; + bool auto_sel; +}; + +enum amd_pref_core { + AMD_PREF_CORE_UNKNOWN = 0, + AMD_PREF_CORE_SUPPORTED = 1, + AMD_PREF_CORE_UNSUPPORTED = 2, +}; + +struct acpi_subtable_header { + u8 type; + u8 length; +}; + +struct acpi_cdat_header { + u8 type; + u8 reserved; + u16 length; +}; + +struct acpi_cedt_header { + u8 type; + u8 reserved; + u16 length; +}; + +struct acpi_hmat_structure { + u16 type; + u16 reserved; + u32 length; +}; + +struct acpi_madt_multiproc_wakeup { + struct acpi_subtable_header header; + u16 version; + u32 reserved; + u64 mailbox_address; + u64 reset_vector; +}; + +enum acpi_madt_multiproc_wakeup_version { + ACPI_MADT_MP_WAKEUP_VERSION_NONE = 0, + ACPI_MADT_MP_WAKEUP_VERSION_V1 = 1, + ACPI_MADT_MP_WAKEUP_VERSION_RESERVED = 2, +}; + +struct acpi_madt_multiproc_wakeup_mailbox { + u16 command; + u16 reserved; + u32 apic_id; + u64 wakeup_vector; + u8 reserved_os[2032]; + u8 reserved_firmware[2048]; +}; + +struct acpi_prmt_module_header { + u16 revision; + u16 length; +}; + +union acpi_subtable_headers { + struct acpi_subtable_header common; + struct acpi_hmat_structure hmat; + struct acpi_prmt_module_header prmt; + struct acpi_cedt_header cedt; + struct acpi_cdat_header cdat; +}; + +struct x86_mapping_info { + void * (*alloc_pgt_page)(void *); + void (*free_pgt_page)(void *, void *); + void *context; + long unsigned int page_flag; + long unsigned int offset; + bool direct_gbpages; + long unsigned int kernpg_flag; +}; + +enum reboot_mode { + REBOOT_UNDEFINED = -1, + REBOOT_COLD = 0, + REBOOT_WARM = 1, + REBOOT_HARD = 2, + REBOOT_SOFT = 3, + REBOOT_GPIO = 4, +}; + +enum reboot_type { + BOOT_TRIPLE = 116, + BOOT_KBD = 107, + BOOT_BIOS = 98, + BOOT_ACPI = 97, + BOOT_EFI = 101, + BOOT_CF9_FORCE = 112, + BOOT_CF9_SAFE = 113, +}; + +enum dmi_field { + DMI_NONE = 0, + DMI_BIOS_VENDOR = 1, + DMI_BIOS_VERSION = 2, + DMI_BIOS_DATE = 3, + DMI_BIOS_RELEASE = 4, + DMI_EC_FIRMWARE_RELEASE = 5, + DMI_SYS_VENDOR = 6, + DMI_PRODUCT_NAME = 7, + DMI_PRODUCT_VERSION = 8, + DMI_PRODUCT_SERIAL = 9, + DMI_PRODUCT_UUID = 10, + DMI_PRODUCT_SKU = 11, + DMI_PRODUCT_FAMILY = 12, + DMI_BOARD_VENDOR = 13, + DMI_BOARD_NAME = 14, + DMI_BOARD_VERSION = 15, + DMI_BOARD_SERIAL = 16, + DMI_BOARD_ASSET_TAG = 17, + DMI_CHASSIS_VENDOR = 18, + DMI_CHASSIS_TYPE = 19, + DMI_CHASSIS_VERSION = 20, + DMI_CHASSIS_SERIAL = 21, + DMI_CHASSIS_ASSET_TAG = 22, + DMI_STRING_MAX = 23, + DMI_OEM_STRING = 24, +}; + +struct dmi_strmatch { + unsigned char slot: 7; + unsigned char exact_match: 1; + char substr[79]; +}; + +struct dmi_system_id { + int (*callback)(const struct dmi_system_id *); + const char *ident; + struct dmi_strmatch matches[4]; + void *driver_data; +}; + +typedef void cpu_emergency_virt_cb(void); + +typedef void (*nmi_shootdown_cb)(int, struct pt_regs *); + +enum { + IRQ_SET_MASK_OK = 0, + IRQ_SET_MASK_OK_NOCOPY = 1, + IRQ_SET_MASK_OK_DONE = 2, +}; + +enum { + IRQD_TRIGGER_MASK = 15, + IRQD_SETAFFINITY_PENDING = 256, + IRQD_ACTIVATED = 512, + IRQD_NO_BALANCING = 1024, + IRQD_PER_CPU = 2048, + IRQD_AFFINITY_SET = 4096, + IRQD_LEVEL = 8192, + IRQD_WAKEUP_STATE = 16384, + IRQD_IRQ_DISABLED = 65536, + IRQD_IRQ_MASKED = 131072, + IRQD_IRQ_INPROGRESS = 262144, + IRQD_WAKEUP_ARMED = 524288, + IRQD_FORWARDED_TO_VCPU = 1048576, + IRQD_AFFINITY_MANAGED = 2097152, + IRQD_IRQ_STARTED = 4194304, + IRQD_MANAGED_SHUTDOWN = 8388608, + IRQD_SINGLE_TARGET = 16777216, + IRQD_DEFAULT_TRIGGER_SET = 33554432, + IRQD_CAN_RESERVE = 67108864, + IRQD_HANDLE_ENFORCE_IRQCTX = 134217728, + IRQD_AFFINITY_ON_ACTIVATE = 268435456, + IRQD_IRQ_ENABLED_ON_SUSPEND = 536870912, + IRQD_RESEND_WHEN_IN_PROGRESS = 1073741824, +}; + +enum { + IRQCHIP_SET_TYPE_MASKED = 1, + IRQCHIP_EOI_IF_HANDLED = 2, + IRQCHIP_MASK_ON_SUSPEND = 4, + IRQCHIP_ONOFFLINE_ENABLED = 8, + IRQCHIP_SKIP_SET_WAKE = 16, + IRQCHIP_ONESHOT_SAFE = 32, + IRQCHIP_EOI_THREADED = 64, + IRQCHIP_SUPPORTS_LEVEL_MSI = 128, + IRQCHIP_SUPPORTS_NMI = 256, + IRQCHIP_ENABLE_WAKEUP_ON_SUSPEND = 512, + IRQCHIP_AFFINITY_PRE_STARTUP = 1024, + IRQCHIP_IMMUTABLE = 2048, + IRQCHIP_MOVE_DEFERRED = 4096, +}; + +struct irq_cfg { + unsigned int dest_apicid; + unsigned int vector; +}; + +enum { + IRQ_DOMAIN_FLAG_HIERARCHY = 1, + IRQ_DOMAIN_NAME_ALLOCATED = 2, + IRQ_DOMAIN_FLAG_IPI_PER_CPU = 4, + IRQ_DOMAIN_FLAG_IPI_SINGLE = 8, + IRQ_DOMAIN_FLAG_MSI = 16, + IRQ_DOMAIN_FLAG_ISOLATED_MSI = 32, + IRQ_DOMAIN_FLAG_NO_MAP = 64, + IRQ_DOMAIN_FLAG_MSI_PARENT = 256, + IRQ_DOMAIN_FLAG_MSI_DEVICE = 512, + IRQ_DOMAIN_FLAG_DESTROY_GC = 1024, + IRQ_DOMAIN_FLAG_MSI_IMMUTABLE = 2048, + IRQ_DOMAIN_FLAG_FWNODE_PARENT = 4096, + IRQ_DOMAIN_FLAG_NONCORE = 65536, +}; + +enum { + IRQCHIP_FWNODE_REAL = 0, + IRQCHIP_FWNODE_NAMED = 1, + IRQCHIP_FWNODE_NAMED_ID = 2, +}; + +enum { + MSI_FLAG_USE_DEF_DOM_OPS = 1, + MSI_FLAG_USE_DEF_CHIP_OPS = 2, + MSI_FLAG_ACTIVATE_EARLY = 4, + MSI_FLAG_MUST_REACTIVATE = 8, + MSI_FLAG_DEV_SYSFS = 16, + MSI_FLAG_ALLOC_SIMPLE_MSI_DESCS = 32, + MSI_FLAG_FREE_MSI_DESCS = 64, + MSI_FLAG_USE_DEV_FWNODE = 128, + MSI_FLAG_PARENT_PM_DEV = 256, + MSI_FLAG_PCI_MSI_MASK_PARENT = 512, + MSI_FLAG_PCI_MSI_STARTUP_PARENT = 1024, + MSI_GENERIC_FLAGS_MASK = 65535, + MSI_DOMAIN_FLAGS_MASK = 4294901760, + MSI_FLAG_MULTI_PCI_MSI = 65536, + MSI_FLAG_PCI_MSIX = 131072, + MSI_FLAG_LEVEL_CAPABLE = 262144, + MSI_FLAG_MSIX_CONTIGUOUS = 524288, + MSI_FLAG_PCI_MSIX_ALLOC_DYN = 1048576, + MSI_FLAG_NO_AFFINITY = 2097152, + MSI_FLAG_NO_MASK = 4194304, +}; + +struct objpool_slot { + uint32_t head; + uint32_t tail; + uint32_t last; + uint32_t mask; + void *entries[0]; +}; + +struct objpool_head; + +typedef int (*objpool_fini_cb)(struct objpool_head *, void *); + +struct objpool_head { + int obj_size; + int nr_objs; + int nr_possible_cpus; + int capacity; + gfp_t gfp; + refcount_t ref; + long unsigned int flags; + struct objpool_slot **cpu_slots; + objpool_fini_cb release; + void *context; +}; + +struct rethook; + +struct rethook_node { + struct callback_head rcu; + struct llist_node llist; + struct rethook *rethook; + long unsigned int ret_addr; + long unsigned int frame; +}; + +struct rethook { + void *data; + void (*handler)(struct rethook_node *, void *, long unsigned int, struct pt_regs *); + struct objpool_head pool; + struct callback_head rcu; +}; + +enum { + IORES_DESC_NONE = 0, + IORES_DESC_CRASH_KERNEL = 1, + IORES_DESC_ACPI_TABLES = 2, + IORES_DESC_ACPI_NV_STORAGE = 3, + IORES_DESC_PERSISTENT_MEMORY = 4, + IORES_DESC_PERSISTENT_MEMORY_LEGACY = 5, + IORES_DESC_DEVICE_PRIVATE_MEMORY = 6, + IORES_DESC_RESERVED = 7, + IORES_DESC_SOFT_RESERVED = 8, + IORES_DESC_CXL = 9, +}; + +struct kimage_arch { + pgd_t *pgd; + p4d_t *p4d; + pud_t *pud; + pmd_t *pmd; + pte_t *pte; +}; + +struct crash_mem { + unsigned int max_nr_ranges; + unsigned int nr_ranges; + struct range ranges[0]; +}; + +typedef long unsigned int kimage_entry_t; + +struct kexec_segment { + union { + void *buf; + void *kbuf; + }; + size_t bufsz; + long unsigned int mem; + size_t memsz; +}; + +struct purgatory_info { + const Elf64_Ehdr *ehdr; + Elf64_Shdr *sechdrs; + void *purgatory_buf; +}; + +typedef int kexec_probe_t(const char *, long unsigned int); + +struct kimage; + +typedef void *kexec_load_t(struct kimage *, char *, long unsigned int, char *, long unsigned int, char *, long unsigned int); + +struct kexec_file_ops; + +struct kimage { + kimage_entry_t head; + kimage_entry_t *entry; + kimage_entry_t *last_entry; + long unsigned int start; + struct page *control_code_page; + struct page *swap_page; + void *vmcoreinfo_data_copy; + long unsigned int nr_segments; + struct kexec_segment segment[16]; + struct page *segment_cma[16]; + struct list_head control_pages; + struct list_head dest_pages; + struct list_head unusable_pages; + long unsigned int control_page; + unsigned int type: 1; + unsigned int preserve_context: 1; + unsigned int file_mode: 1; + unsigned int hotplug_support: 1; + unsigned int no_cma: 1; + struct kimage_arch arch; + void *kernel_buf; + long unsigned int kernel_buf_len; + void *initrd_buf; + long unsigned int initrd_buf_len; + char *cmdline_buf; + long unsigned int cmdline_buf_len; + const struct kexec_file_ops *fops; + void *image_loader_data; + struct purgatory_info purgatory_info; + int hp_action; + int elfcorehdr_index; + bool elfcorehdr_updated; + void *ima_buffer; + phys_addr_t ima_buffer_addr; + size_t ima_buffer_size; + long unsigned int ima_segment_index; + bool is_ima_segment_index_set; + struct { + struct kexec_segment *scratch; + phys_addr_t fdt; + } kho; + void *elf_headers; + long unsigned int elf_headers_sz; + long unsigned int elf_load_addr; + long unsigned int dm_crypt_keys_addr; + long unsigned int dm_crypt_keys_sz; +}; + +typedef int kexec_cleanup_t(void *); + +typedef int kexec_verify_sig_t(const char *, long unsigned int); + +struct kexec_file_ops { + kexec_probe_t *probe; + kexec_load_t *load; + kexec_cleanup_t *cleanup; + kexec_verify_sig_t *verify_sig; +}; + +struct kexec_buf { + struct kimage *image; + void *buffer; + long unsigned int bufsz; + long unsigned int mem; + long unsigned int memsz; + long unsigned int buf_align; + long unsigned int buf_min; + long unsigned int buf_max; + struct page *cma; + bool top_down; + bool random; +}; + +struct crash_memmap_data { + struct boot_params *params; + unsigned int type; +}; + +struct die_args { + struct pt_regs *regs; + const char *str; + long int err; + int trapnr; + int signr; +}; + +enum regnames { + GDB_AX = 0, + GDB_BX = 1, + GDB_CX = 2, + GDB_DX = 3, + GDB_SI = 4, + GDB_DI = 5, + GDB_BP = 6, + GDB_SP = 7, + GDB_R8 = 8, + GDB_R9 = 9, + GDB_R10 = 10, + GDB_R11 = 11, + GDB_R12 = 12, + GDB_R13 = 13, + GDB_R14 = 14, + GDB_R15 = 15, + GDB_PC = 16, + GDB_PS = 17, + GDB_CS = 18, + GDB_SS = 19, + GDB_DS = 20, + GDB_ES = 21, + GDB_FS = 22, + GDB_GS = 23, +}; + +enum kgdb_bpstate { + BP_UNDEFINED = 0, + BP_REMOVED = 1, + BP_SET = 2, + BP_ACTIVE = 3, +}; + +struct kgdb_bkpt { + long unsigned int bpt_addr; + unsigned char saved_instr[1]; + enum kgdb_bptype type; + enum kgdb_bpstate state; +}; + +struct dbg_reg_def_t { + char *name; + int size; + int offset; +}; + +struct inactive_task_frame { + long unsigned int r15; + long unsigned int r14; + long unsigned int r13; + long unsigned int r12; + long unsigned int bx; + long unsigned int bp; + long unsigned int ret_addr; +}; + +enum { + HW_BREAKPOINT_LEN_1 = 1, + HW_BREAKPOINT_LEN_2 = 2, + HW_BREAKPOINT_LEN_3 = 3, + HW_BREAKPOINT_LEN_4 = 4, + HW_BREAKPOINT_LEN_5 = 5, + HW_BREAKPOINT_LEN_6 = 6, + HW_BREAKPOINT_LEN_7 = 7, + HW_BREAKPOINT_LEN_8 = 8, +}; + +enum { + HW_BREAKPOINT_EMPTY = 0, + HW_BREAKPOINT_R = 1, + HW_BREAKPOINT_W = 2, + HW_BREAKPOINT_RW = 3, + HW_BREAKPOINT_X = 4, + HW_BREAKPOINT_INVALID = 7, +}; + +struct hw_breakpoint { + unsigned int enabled; + long unsigned int addr; + int len; + int type; + struct perf_event **pev; +}; + +struct swait_queue { + struct task_struct *task; + struct list_head task_list; +}; + +struct kvm_steal_time { + __u64 steal; + __u32 version; + __u32 flags; + __u8 preempted; + __u8 u8_pad[3]; + __u32 pad[11]; +}; + +struct kvm_vcpu_pv_apf_data { + __u32 flags; + __u32 token; + __u8 pad[56]; +}; + +struct kvm_task_sleep_node { + struct hlist_node link; + struct swait_queue_head wq; + u32 token; + int cpu; +}; + +struct kvm_task_sleep_head { + raw_spinlock_t lock; + struct hlist_head list; +}; + +struct __va_list_tag { + unsigned int gp_offset; + unsigned int fp_offset; + void *overflow_arg_area; + void *reg_save_area; +}; + +typedef __builtin_va_list va_list; + +struct va_format { + const char *fmt; + va_list *va; +}; + +struct ksignal { + struct k_sigaction ka; + kernel_siginfo_t info; + int sig; +}; + +enum page_cache_mode { + _PAGE_CACHE_MODE_WB = 0, + _PAGE_CACHE_MODE_WC = 1, + _PAGE_CACHE_MODE_UC_MINUS = 2, + _PAGE_CACHE_MODE_UC = 3, + _PAGE_CACHE_MODE_WT = 4, + _PAGE_CACHE_MODE_WP = 5, + _PAGE_CACHE_MODE_NUM = 8, +}; + +struct mem_section_usage { + struct callback_head rcu; + long unsigned int subsection_map[1]; + long unsigned int pageblock_flags[0]; +}; + +struct mem_section { + long unsigned int section_mem_map; + struct mem_section_usage *usage; +}; + +enum { + SECTION_MARKED_PRESENT_BIT = 0, + SECTION_HAS_MEM_MAP_BIT = 1, + SECTION_IS_ONLINE_BIT = 2, + SECTION_IS_EARLY_BIT = 3, + SECTION_TAINT_ZONE_DEVICE_BIT = 4, + SECTION_IS_VMEMMAP_PREINIT_BIT = 5, + SECTION_MAP_LAST_BIT = 6, +}; + +enum { + IORES_MAP_SYSTEM_RAM = 1, + IORES_MAP_ENCRYPTED = 2, +}; + +enum { + REGION_INTERSECTS = 0, + REGION_DISJOINT = 1, + REGION_MIXED = 2, +}; + +struct setup_data { + __u64 next; + __u32 type; + __u32 len; + __u8 data[0]; +}; + +struct setup_indirect { + __u32 type; + __u32 reserved; + __u64 len; + __u64 addr; +}; + +struct ioremap_desc { + unsigned int flags; +}; + +struct ptdesc { + long unsigned int __page_flags; + union { + struct callback_head pt_rcu_head; + struct list_head pt_list; + struct { + long unsigned int _pt_pad_1; + pgtable_t pmd_huge_pte; + }; + }; + long unsigned int __page_mapping; + union { + long unsigned int pt_index; + struct mm_struct *pt_mm; + atomic_t pt_frag_refcount; + atomic_t pt_share_count; + }; + union { + long unsigned int _pt_pad_2; + spinlock_t ptl; + }; + unsigned int __page_type; + atomic_t __page_refcount; + long unsigned int pt_memcg_data; +}; + +struct encoded_page; + +struct mmu_table_batch { + struct callback_head rcu; + unsigned int nr; + void *tables[0]; +}; + +struct mmu_gather_batch { + struct mmu_gather_batch *next; + unsigned int nr; + unsigned int max; + struct encoded_page *encoded_pages[0]; +}; + +struct mmu_gather { + struct mm_struct *mm; + struct mmu_table_batch *batch; + long unsigned int start; + long unsigned int end; + unsigned int fullmm: 1; + unsigned int need_flush_all: 1; + unsigned int freed_tables: 1; + unsigned int delayed_rmap: 1; + unsigned int cleared_ptes: 1; + unsigned int cleared_pmds: 1; + unsigned int cleared_puds: 1; + unsigned int cleared_p4ds: 1; + unsigned int vma_exec: 1; + unsigned int vma_huge: 1; + unsigned int vma_pfn: 1; + unsigned int batch_count; + struct mmu_gather_batch *active; + struct mmu_gather_batch local; + struct page *__pages[8]; +}; + +struct rb_augment_callbacks { + void (*propagate)(struct rb_node *, struct rb_node *); + void (*copy)(struct rb_node *, struct rb_node *); + void (*rotate)(struct rb_node *, struct rb_node *); +}; + +struct memtype { + u64 start; + u64 end; + u64 subtree_max_end; + enum page_cache_mode type; + struct rb_node rb; +}; + +enum reason_type { + NOT_ME = 0, + NOTHING = 1, + REG_READ = 2, + REG_WRITE = 3, + IMM_WRITE = 4, + OTHERS = 5, +}; + +struct prefix_bits { + unsigned int shorted: 1; + unsigned int enlarged: 1; + unsigned int rexr: 1; + unsigned int rex: 1; +}; + +enum { + arg_AL = 0, + arg_CL = 1, + arg_DL = 2, + arg_BL = 3, + arg_AH = 4, + arg_CH = 5, + arg_DH = 6, + arg_BH = 7, + arg_AX = 0, + arg_CX = 1, + arg_DX = 2, + arg_BX = 3, + arg_SP = 4, + arg_BP = 5, + arg_SI = 6, + arg_DI = 7, + arg_R8 = 8, + arg_R9 = 9, + arg_R10 = 10, + arg_R11 = 11, + arg_R12 = 12, + arg_R13 = 13, + arg_R14 = 14, + arg_R15 = 15, +}; + +struct kmmio_probe; + +typedef void (*kmmio_pre_handler_t)(struct kmmio_probe *, struct pt_regs *, long unsigned int); + +typedef void (*kmmio_post_handler_t)(struct kmmio_probe *, long unsigned int, struct pt_regs *); + +struct kmmio_probe { + struct list_head list; + long unsigned int addr; + long unsigned int len; + kmmio_pre_handler_t pre_handler; + kmmio_post_handler_t post_handler; + void *private; +}; + +enum mm_io_opcode { + MMIO_READ = 1, + MMIO_WRITE = 2, + MMIO_PROBE = 3, + MMIO_UNPROBE = 4, + MMIO_UNKNOWN_OP = 5, +}; + +struct mmiotrace_rw { + resource_size_t phys; + long unsigned int value; + long unsigned int pc; + int map_id; + unsigned char opcode; + unsigned char width; +}; + +struct mmiotrace_map { + resource_size_t phys; + long unsigned int virt; + long unsigned int len; + int map_id; + unsigned char opcode; +}; + +struct trap_reason { + long unsigned int addr; + long unsigned int ip; + enum reason_type type; + int active_traces; +}; + +struct remap_trace { + struct list_head list; + struct kmmio_probe probe; + resource_size_t phys; + long unsigned int id; +}; + +struct io_tlb_area; + +struct io_tlb_slot; + +struct io_tlb_pool { + phys_addr_t start; + phys_addr_t end; + void *vaddr; + long unsigned int nslabs; + bool late_alloc; + unsigned int nareas; + unsigned int area_nslabs; + struct io_tlb_area *areas; + struct io_tlb_slot *slots; + struct list_head node; + struct callback_head rcu; + bool transient; +}; + +struct io_tlb_mem { + struct io_tlb_pool defpool; + long unsigned int nslabs; + struct dentry *debugfs; + bool force_bounce; + bool for_alloc; + bool can_grow; + u64 phys_limit; + spinlock_t lock; + struct list_head pools; + struct work_struct dyn_alloc; + atomic_long_t total_used; + atomic_long_t used_hiwater; + atomic_long_t transient_nslabs; +}; + +struct scatterlist { + long unsigned int page_link; + unsigned int offset; + unsigned int length; + dma_addr_t dma_address; + unsigned int dma_length; + unsigned int dma_flags; +}; + +struct sg_table { + struct scatterlist *sgl; + unsigned int nents; + unsigned int orig_nents; +}; + +typedef struct { + efi_guid_t guid; + u32 table; +} efi_config_table_32_t; + +typedef union { + struct { + efi_guid_t guid; + void *table; + }; + efi_config_table_32_t mixed_mode; +} efi_config_table_t; + +typedef struct { + efi_guid_t guid; + long unsigned int *ptr; + const char name[16]; +} efi_config_table_type_t; + +typedef struct { + efi_table_hdr_t hdr; + u64 fw_vendor; + u32 fw_revision; + u32 __pad1; + u64 con_in_handle; + u64 con_in; + u64 con_out_handle; + u64 con_out; + u64 stderr_handle; + u64 stderr; + u64 runtime; + u64 boottime; + u32 nr_tables; + u32 __pad2; + u64 tables; +} efi_system_table_64_t; + +typedef struct { + efi_table_hdr_t hdr; + u32 fw_vendor; + u32 fw_revision; + u32 con_in_handle; + u32 con_in; + u32 con_out_handle; + u32 con_out; + u32 stderr_handle; + u32 stderr; + u32 runtime; + u32 boottime; + u32 nr_tables; + u32 tables; +} efi_system_table_32_t; + +struct efi_memory_map_data { + phys_addr_t phys_map; + long unsigned int size; + long unsigned int desc_version; + long unsigned int desc_size; + long unsigned int flags; +}; + +enum efi_secureboot_mode { + efi_secureboot_mode_unset = 0, + efi_secureboot_mode_unknown = 1, + efi_secureboot_mode_disabled = 2, + efi_secureboot_mode_enabled = 3, +}; + +struct efi_setup_data { + u64 fw_vendor; + u64 __unused; + u64 tables; + u64 smbios; + u64 reserved[8]; +}; + +struct semaphore { + raw_spinlock_t lock; + unsigned int count; + struct list_head wait_list; + long unsigned int last_holder; +}; + +enum uv_bios_cmd { + UV_BIOS_COMMON = 0, + UV_BIOS_GET_SN_INFO = 1, + UV_BIOS_FREQ_BASE = 2, + UV_BIOS_WATCHLIST_ALLOC = 3, + UV_BIOS_WATCHLIST_FREE = 4, + UV_BIOS_MEMPROTECT = 5, + UV_BIOS_GET_PARTITION_ADDR = 6, + UV_BIOS_SET_LEGACY_VGA_TARGET = 7, +}; + +enum { + BIOS_STATUS_MORE_PASSES = 1, + BIOS_STATUS_SUCCESS = 0, + BIOS_STATUS_UNIMPLEMENTED = -38, + BIOS_STATUS_EINVAL = -22, + BIOS_STATUS_UNAVAIL = -16, + BIOS_STATUS_ABORT = -4, +}; + +struct uv_systab { + char signature[4]; + u32 revision; + u64 (*function)(enum uv_bios_cmd, ...); + u32 size; + struct { + u32 type: 8; + u32 offset: 24; + } entry[1]; +}; + +union partition_info_u { + u64 val; + struct { + u64 hub_version: 8; + u64 partition_id: 16; + u64 coherence_id: 16; + u64 region_size: 24; + }; +}; + +enum uv_memprotect { + UV_MEMPROT_RESTRICT_ACCESS = 0, + UV_MEMPROT_ALLOW_AMO = 1, + UV_MEMPROT_ALLOW_RW = 2, +}; + +struct irq_domain_chip_generic_info { + const char *name; + irq_flow_handler_t handler; + unsigned int irqs_per_chip; + unsigned int num_ct; + unsigned int irq_flags_to_clear; + unsigned int irq_flags_to_set; + enum irq_gc_flags gc_flags; + int (*init)(struct irq_chip_generic *); + void (*exit)(struct irq_chip_generic *); +}; + +struct irq_domain_info { + struct fwnode_handle *fwnode; + unsigned int domain_flags; + unsigned int size; + irq_hw_number_t hwirq_max; + int direct_max; + unsigned int hwirq_base; + unsigned int virq_base; + enum irq_domain_bus_token bus_token; + const char *name_suffix; + const struct irq_domain_ops *ops; + void *host_data; + struct device *dev; + struct irq_domain *parent; + struct irq_domain_chip_generic_info *dgc_info; + int (*init)(struct irq_domain *); + void (*exit)(struct irq_domain *); +}; + +struct uv_IO_APIC_route_entry { + __u64 vector: 8; + __u64 delivery_mode: 3; + __u64 dest_mode: 1; + __u64 delivery_status: 1; + __u64 polarity: 1; + __u64 __reserved_1: 1; + __u64 trigger: 1; + __u64 mask: 1; + __u64 __reserved_2: 15; + __u64 dest: 32; +}; + +enum { + UV_AFFINITY_ALL = 0, + UV_AFFINITY_NODE = 1, + UV_AFFINITY_CPU = 2, +}; + +struct uv_gam_range_s { + u32 limit; + u16 nasid; + s8 base; + u8 reserved; +}; + +struct uv_hub_info_s { + unsigned int hub_type; + unsigned char hub_revision; + long unsigned int global_mmr_base; + long unsigned int global_mmr_shift; + long unsigned int gpa_mask; + short unsigned int *socket_to_node; + short unsigned int *socket_to_pnode; + short unsigned int *pnode_to_socket; + struct uv_gam_range_s *gr_table; + short unsigned int min_socket; + short unsigned int min_pnode; + unsigned char m_val; + unsigned char n_val; + unsigned char gr_table_len; + unsigned char apic_pnode_shift; + unsigned char gpa_shift; + unsigned char nasid_shift; + unsigned char m_shift; + unsigned char n_lshift; + unsigned int gnode_extra; + long unsigned int gnode_upper; + long unsigned int lowmem_remap_top; + long unsigned int lowmem_remap_base; + long unsigned int global_gru_base; + long unsigned int global_gru_shift; + short unsigned int pnode; + short unsigned int pnode_mask; + short unsigned int coherency_domain_number; + short unsigned int numa_blade_id; + short unsigned int nr_possible_cpus; + short unsigned int nr_online_cpus; + short int memory_nid; + short unsigned int *node_to_socket; +}; + +struct uv_cpu_info_s { + void *p_uv_hub_info; + unsigned char blade_cpu_id; + void *reserved; +}; + +struct uv_irq_2_mmr_pnode { + long unsigned int offset; + int pnode; +}; + +struct rmp_state { + u64 gpa; + u8 assigned; + u8 pagesize; + u8 immutable; + u8 rsvd; + u32 asid; +}; + +enum acpi_device_swnode_dev_props { + ACPI_DEVICE_SWNODE_DEV_ROTATION = 0, + ACPI_DEVICE_SWNODE_DEV_CLOCK_FREQUENCY = 1, + ACPI_DEVICE_SWNODE_DEV_LED_MAX_MICROAMP = 2, + ACPI_DEVICE_SWNODE_DEV_FLASH_MAX_MICROAMP = 3, + ACPI_DEVICE_SWNODE_DEV_FLASH_MAX_TIMEOUT_US = 4, + ACPI_DEVICE_SWNODE_DEV_NUM_OF = 5, + ACPI_DEVICE_SWNODE_DEV_NUM_ENTRIES = 6, +}; + +enum acpi_device_swnode_port_props { + ACPI_DEVICE_SWNODE_PORT_REG = 0, + ACPI_DEVICE_SWNODE_PORT_NUM_OF = 1, + ACPI_DEVICE_SWNODE_PORT_NUM_ENTRIES = 2, +}; + +enum acpi_device_swnode_ep_props { + ACPI_DEVICE_SWNODE_EP_REMOTE_EP = 0, + ACPI_DEVICE_SWNODE_EP_BUS_TYPE = 1, + ACPI_DEVICE_SWNODE_EP_REG = 2, + ACPI_DEVICE_SWNODE_EP_CLOCK_LANES = 3, + ACPI_DEVICE_SWNODE_EP_DATA_LANES = 4, + ACPI_DEVICE_SWNODE_EP_LANE_POLARITIES = 5, + ACPI_DEVICE_SWNODE_EP_LINK_FREQUENCIES = 6, + ACPI_DEVICE_SWNODE_EP_NUM_OF = 7, + ACPI_DEVICE_SWNODE_EP_NUM_ENTRIES = 8, +}; + +struct rmpentry { + u64 gpa; + u8 assigned: 1; + u8 rsvd1: 7; + u8 pagesize: 1; + u8 hpage_region_status: 1; + u8 rsvd2: 6; + u8 immutable: 1; + u8 rsvd3: 7; + u8 rsvd4; + u32 asid; +}; + +struct rmpentry_raw { + union { + struct { + u64 assigned: 1; + u64 pagesize: 1; + u64 immutable: 1; + u64 rsvd1: 9; + u64 gpa: 39; + u64 asid: 10; + u64 vmsa: 1; + u64 validated: 1; + u64 rsvd2: 1; + }; + u64 lo; + }; + u64 hi; +}; + +struct rmp_segment_desc { + struct rmpentry_raw *rmp_entry; + u64 max_index; + u64 size; +}; + +enum { + GATE_INTERRUPT = 14, + GATE_TRAP = 15, + GATE_CALL = 12, + GATE_TASK = 5, +}; + +struct idt_bits { + u16 ist: 3; + u16 zero: 5; + u16 type: 5; + u16 dpl: 2; + u16 p: 1; +}; + +struct idt_data { + unsigned int vector; + unsigned int segment; + struct idt_bits bits; + const void *addr; +}; + +struct gate_struct { + u16 offset_low; + u16 segment; + struct idt_bits bits; + u16 offset_middle; + u32 offset_high; + u32 reserved; +}; + +typedef struct gate_struct gate_desc; + +struct sme_populate_pgd_data { + void *pgtable_area; + pgd_t *pgd; + pmdval_t pmd_flags; + pteval_t pte_flags; + long unsigned int paddr; + long unsigned int vaddr; + long unsigned int vaddr_end; +}; + +struct cc_blob_sev_info { + u32 magic; + u16 version; + u16 reserved; + u64 secrets_phys; + u32 secrets_len; + u32 rsvd1; + u64 cpuid_phys; + u32 cpuid_len; + u32 rsvd2; +}; + +struct cc_setup_data { + struct setup_data header; + u32 cc_blob_address; +}; + +typedef void (*rcu_callback_t)(struct callback_head *); + +typedef struct { + spinlock_t *lock; +} class_spinlock_irq_t; + +enum refcount_saturation_type { + REFCOUNT_ADD_NOT_ZERO_OVF = 0, + REFCOUNT_ADD_OVF = 1, + REFCOUNT_ADD_UAF = 2, + REFCOUNT_SUB_UAF = 3, + REFCOUNT_DEC_LEAK = 4, +}; + +struct clone_args { + __u64 flags; + __u64 pidfd; + __u64 child_tid; + __u64 parent_tid; + __u64 exit_signal; + __u64 stack; + __u64 stack_size; + __u64 tls; + __u64 set_tid; + __u64 set_tid_size; + __u64 cgroup; +}; + +struct fs_struct { + int users; + seqlock_t seq; + int umask; + int in_exec; + struct path root; + struct path pwd; +}; + +struct fdtable { + unsigned int max_fds; + struct file **fd; + long unsigned int *close_on_exec; + long unsigned int *open_fds; + long unsigned int *full_fds_bits; + struct callback_head rcu; +}; + +struct files_struct { + atomic_t count; + bool resize_in_progress; + wait_queue_head_t resize_wait; + struct fdtable *fdt; + struct fdtable fdtab; + long: 64; + long: 64; + long: 64; + long: 64; + spinlock_t file_lock; + unsigned int next_fd; + long unsigned int close_on_exec_init[1]; + long unsigned int open_fds_init[1]; + long unsigned int full_fds_bits_init[1]; + struct file *fd_array[64]; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct compact_control; + +struct capture_control { + struct compact_control *cc; + struct page *page; +}; + +struct robust_list { + struct robust_list *next; +}; + +struct robust_list_head { + struct robust_list list; + long int futex_offset; + struct robust_list *list_op_pending; +}; + +struct task_delay_info { + raw_spinlock_t lock; + u64 blkio_start; + u64 blkio_delay_max; + u64 blkio_delay_min; + u64 blkio_delay; + u64 swapin_start; + u64 swapin_delay_max; + u64 swapin_delay_min; + u64 swapin_delay; + u32 blkio_count; + u32 swapin_count; + u64 freepages_start; + u64 freepages_delay_max; + u64 freepages_delay_min; + u64 freepages_delay; + u64 thrashing_start; + u64 thrashing_delay_max; + u64 thrashing_delay_min; + u64 thrashing_delay; + u64 compact_start; + u64 compact_delay_max; + u64 compact_delay_min; + u64 compact_delay; + u64 wpcopy_start; + u64 wpcopy_delay_max; + u64 wpcopy_delay_min; + u64 wpcopy_delay; + u64 irq_delay_max; + u64 irq_delay_min; + u64 irq_delay; + u32 freepages_count; + u32 thrashing_count; + u32 compact_count; + u32 wpcopy_count; + u32 irq_count; +}; + +struct user_event_mm { + struct list_head mms_link; + struct list_head enablers; + struct mm_struct *mm; + struct user_event_mm *next; + refcount_t refcnt; + refcount_t tasks; + struct rcu_work put_rwork; +}; + +enum tk_offsets { + TK_OFFS_REAL = 0, + TK_OFFS_BOOT = 1, + TK_OFFS_TAI = 2, + TK_OFFS_MAX = 3, +}; + +struct anon_vma { + struct anon_vma *root; + struct rw_semaphore rwsem; + atomic_t refcount; + long unsigned int num_children; + long unsigned int num_active_vmas; + struct anon_vma *parent; + struct rb_root_cached rb_root; +}; + +struct linux_binprm; + +struct linux_binfmt { + struct list_head lh; + struct module *module; + int (*load_binary)(struct linux_binprm *); + int (*core_dump)(struct coredump_params *); + long unsigned int min_coredump; +}; + +enum mm_cid_state { + MM_CID_UNSET = 4294967295, + MM_CID_LAZY_PUT = 2147483648, +}; + +enum _slab_flag_bits { + _SLAB_CONSISTENCY_CHECKS = 0, + _SLAB_RED_ZONE = 1, + _SLAB_POISON = 2, + _SLAB_KMALLOC = 3, + _SLAB_HWCACHE_ALIGN = 4, + _SLAB_CACHE_DMA = 5, + _SLAB_CACHE_DMA32 = 6, + _SLAB_STORE_USER = 7, + _SLAB_PANIC = 8, + _SLAB_TYPESAFE_BY_RCU = 9, + _SLAB_TRACE = 10, + _SLAB_NOLEAKTRACE = 11, + _SLAB_NO_MERGE = 12, + _SLAB_ACCOUNT = 13, + _SLAB_NO_USER_FLAGS = 14, + _SLAB_SKIP_KFENCE = 15, + _SLAB_RECLAIM_ACCOUNT = 16, + _SLAB_OBJECT_POISON = 17, + _SLAB_CMPXCHG_DOUBLE = 18, + _SLAB_NO_OBJ_EXT = 19, + _SLAB_FLAGS_LAST_BIT = 20, +}; + +struct kernel_clone_args { + u64 flags; + int *pidfd; + int *child_tid; + int *parent_tid; + const char *name; + int exit_signal; + u32 kthread: 1; + u32 io_thread: 1; + u32 user_worker: 1; + u32 no_files: 1; + long unsigned int stack; + long unsigned int stack_size; + long unsigned int tls; + pid_t *set_tid; + size_t set_tid_size; + int cgroup; + int idle; + int (*fn)(void *); + void *fn_arg; + struct cgroup *cgrp; + struct css_set *cset; + unsigned int kill_seq; +}; + +struct multiprocess_signals { + sigset_t signal; + struct hlist_node node; +}; + +struct ld_semaphore { + atomic_long_t count; + raw_spinlock_t wait_lock; + unsigned int wait_readers; + struct list_head read_wait; + struct list_head write_wait; +}; + +typedef unsigned int tcflag_t; + +typedef unsigned char cc_t; + +typedef unsigned int speed_t; + +struct ktermios { + tcflag_t c_iflag; + tcflag_t c_oflag; + tcflag_t c_cflag; + tcflag_t c_lflag; + cc_t c_line; + cc_t c_cc[19]; + speed_t c_ispeed; + speed_t c_ospeed; +}; + +struct winsize { + short unsigned int ws_row; + short unsigned int ws_col; + short unsigned int ws_xpixel; + short unsigned int ws_ypixel; +}; + +struct tty_driver; + +struct tty_port; + +struct tty_operations; + +struct tty_ldisc; + +struct tty_struct { + struct kref kref; + int index; + struct device *dev; + struct tty_driver *driver; + struct tty_port *port; + const struct tty_operations *ops; + struct tty_ldisc *ldisc; + struct ld_semaphore ldisc_sem; + struct mutex atomic_write_lock; + struct mutex legacy_mutex; + struct mutex throttle_mutex; + struct rw_semaphore termios_rwsem; + struct mutex winsize_mutex; + struct ktermios termios; + struct ktermios termios_locked; + char name[64]; + long unsigned int flags; + int count; + unsigned int receive_room; + struct winsize winsize; + struct { + spinlock_t lock; + bool stopped; + bool tco_stopped; + } flow; + struct { + struct pid *pgrp; + struct pid *session; + spinlock_t lock; + unsigned char pktstatus; + bool packet; + } ctrl; + bool hw_stopped; + bool closing; + int flow_change; + struct tty_struct *link; + struct fasync_struct *fasync; + wait_queue_head_t write_wait; + wait_queue_head_t read_wait; + struct work_struct hangup_work; + void *disc_data; + void *driver_data; + spinlock_t files_lock; + int write_cnt; + u8 *write_buf; + struct list_head tty_files; + struct work_struct SAK_work; +}; + +typedef int (*proc_visitor)(struct task_struct *, void *); + +typedef unsigned int xa_mark_t; + +enum xa_lock_type { + XA_LOCK_IRQ = 1, + XA_LOCK_BH = 2, +}; + +struct ida { + struct xarray xa; +}; + +typedef int class_get_unused_fd_t; + +struct fd_range { + unsigned int from; + unsigned int to; +}; + +struct linux_binprm { + struct vm_area_struct *vma; + long unsigned int vma_pages; + long unsigned int argmin; + struct mm_struct *mm; + long unsigned int p; + unsigned int have_execfd: 1; + unsigned int execfd_creds: 1; + unsigned int secureexec: 1; + unsigned int point_of_no_return: 1; + unsigned int comm_from_dentry: 1; + unsigned int is_check: 1; + struct file *executable; + struct file *interpreter; + struct file *file; + struct cred *cred; + int unsafe; + unsigned int per_clear; + int argc; + int envc; + const char *filename; + const char *interp; + const char *fdpath; + unsigned int interp_flags; + int execfd; + long unsigned int exec; + struct rlimit rlim_stack; + char buf[256]; +}; + +struct binfmt_misc { + struct list_head entries; + rwlock_t entries_lock; + bool enabled; +}; + +enum ucount_type { + UCOUNT_USER_NAMESPACES = 0, + UCOUNT_PID_NAMESPACES = 1, + UCOUNT_UTS_NAMESPACES = 2, + UCOUNT_IPC_NAMESPACES = 3, + UCOUNT_NET_NAMESPACES = 4, + UCOUNT_MNT_NAMESPACES = 5, + UCOUNT_CGROUP_NAMESPACES = 6, + UCOUNT_TIME_NAMESPACES = 7, + UCOUNT_INOTIFY_INSTANCES = 8, + UCOUNT_INOTIFY_WATCHES = 9, + UCOUNT_FANOTIFY_GROUPS = 10, + UCOUNT_FANOTIFY_MARKS = 11, + UCOUNT_COUNTS = 12, +}; + +enum rlimit_type { + UCOUNT_RLIMIT_NPROC = 0, + UCOUNT_RLIMIT_MSGQUEUE = 1, + UCOUNT_RLIMIT_SIGPENDING = 2, + UCOUNT_RLIMIT_MEMLOCK = 3, + UCOUNT_RLIMIT_COUNTS = 4, +}; + +enum { + FUTEX_STATE_OK = 0, + FUTEX_STATE_EXITING = 1, + FUTEX_STATE_DEAD = 2, +}; + +enum tty_driver_type { + TTY_DRIVER_TYPE_SYSTEM = 0, + TTY_DRIVER_TYPE_CONSOLE = 1, + TTY_DRIVER_TYPE_SERIAL = 2, + TTY_DRIVER_TYPE_PTY = 3, + TTY_DRIVER_TYPE_SCC = 4, + TTY_DRIVER_TYPE_SYSCONS = 5, +}; + +enum tty_driver_subtype { + SYSTEM_TYPE_TTY = 1, + SYSTEM_TYPE_CONSOLE = 2, + SYSTEM_TYPE_SYSCONS = 3, + SYSTEM_TYPE_SYSPTMX = 4, + PTY_TYPE_MASTER = 1, + PTY_TYPE_SLAVE = 2, + SERIAL_TYPE_NORMAL = 1, +}; + +struct serial_icounter_struct; + +struct serial_struct; + +struct tty_operations { + struct tty_struct * (*lookup)(struct tty_driver *, struct file *, int); + int (*install)(struct tty_driver *, struct tty_struct *); + void (*remove)(struct tty_driver *, struct tty_struct *); + int (*open)(struct tty_struct *, struct file *); + void (*close)(struct tty_struct *, struct file *); + void (*shutdown)(struct tty_struct *); + void (*cleanup)(struct tty_struct *); + ssize_t (*write)(struct tty_struct *, const u8 *, size_t); + int (*put_char)(struct tty_struct *, u8); + void (*flush_chars)(struct tty_struct *); + unsigned int (*write_room)(struct tty_struct *); + unsigned int (*chars_in_buffer)(struct tty_struct *); + int (*ioctl)(struct tty_struct *, unsigned int, long unsigned int); + long int (*compat_ioctl)(struct tty_struct *, unsigned int, long unsigned int); + void (*set_termios)(struct tty_struct *, const struct ktermios *); + void (*throttle)(struct tty_struct *); + void (*unthrottle)(struct tty_struct *); + void (*stop)(struct tty_struct *); + void (*start)(struct tty_struct *); + void (*hangup)(struct tty_struct *); + int (*break_ctl)(struct tty_struct *, int); + void (*flush_buffer)(struct tty_struct *); + int (*ldisc_ok)(struct tty_struct *, int); + void (*set_ldisc)(struct tty_struct *); + void (*wait_until_sent)(struct tty_struct *, int); + void (*send_xchar)(struct tty_struct *, u8); + int (*tiocmget)(struct tty_struct *); + int (*tiocmset)(struct tty_struct *, unsigned int, unsigned int); + int (*resize)(struct tty_struct *, struct winsize *); + int (*get_icount)(struct tty_struct *, struct serial_icounter_struct *); + int (*get_serial)(struct tty_struct *, struct serial_struct *); + int (*set_serial)(struct tty_struct *, struct serial_struct *); + void (*show_fdinfo)(struct tty_struct *, struct seq_file *); + int (*poll_init)(struct tty_driver *, int, char *); + int (*poll_get_char)(struct tty_driver *, int); + void (*poll_put_char)(struct tty_driver *, int, char); + int (*proc_show)(struct seq_file *, void *); +}; + +struct tty_driver { + struct kref kref; + struct cdev **cdevs; + struct module *owner; + const char *driver_name; + const char *name; + int name_base; + int major; + int minor_start; + unsigned int num; + enum tty_driver_type type; + enum tty_driver_subtype subtype; + struct ktermios init_termios; + long unsigned int flags; + struct proc_dir_entry *proc_entry; + struct tty_driver *other; + struct tty_struct **ttys; + struct tty_port **ports; + struct ktermios **termios; + void *driver_state; + const struct tty_operations *ops; + struct list_head tty_drivers; +}; + +struct tty_buffer { + union { + struct tty_buffer *next; + struct llist_node free; + }; + unsigned int used; + unsigned int size; + unsigned int commit; + unsigned int lookahead; + unsigned int read; + bool flags; + long: 0; + u8 data[0]; +}; + +struct tty_bufhead { + struct tty_buffer *head; + struct work_struct work; + struct mutex lock; + atomic_t priority; + struct tty_buffer sentinel; + struct llist_head free; + atomic_t mem_used; + int mem_limit; + struct tty_buffer *tail; +}; + +struct __kfifo { + unsigned int in; + unsigned int out; + unsigned int mask; + unsigned int esize; + void *data; +}; + +struct tty_port_operations; + +struct tty_port_client_operations; + +struct tty_port { + struct tty_bufhead buf; + struct tty_struct *tty; + struct tty_struct *itty; + const struct tty_port_operations *ops; + const struct tty_port_client_operations *client_ops; + spinlock_t lock; + int blocked_open; + int count; + wait_queue_head_t open_wait; + wait_queue_head_t delta_msr_wait; + long unsigned int flags; + long unsigned int iflags; + unsigned char console: 1; + struct mutex mutex; + struct mutex buf_mutex; + u8 *xmit_buf; + struct { + union { + struct __kfifo kfifo; + u8 *type; + const u8 *const_type; + char (*rectype)[0]; + u8 *ptr; + const u8 *ptr_const; + }; + u8 buf[0]; + } xmit_fifo; + unsigned int close_delay; + unsigned int closing_wait; + int drain_delay; + struct kref kref; + void *client_data; +}; + +struct tty_ldisc_ops { + char *name; + int num; + int (*open)(struct tty_struct *); + void (*close)(struct tty_struct *); + void (*flush_buffer)(struct tty_struct *); + ssize_t (*read)(struct tty_struct *, struct file *, u8 *, size_t, void **, long unsigned int); + ssize_t (*write)(struct tty_struct *, struct file *, const u8 *, size_t); + int (*ioctl)(struct tty_struct *, unsigned int, long unsigned int); + int (*compat_ioctl)(struct tty_struct *, unsigned int, long unsigned int); + void (*set_termios)(struct tty_struct *, const struct ktermios *); + __poll_t (*poll)(struct tty_struct *, struct file *, struct poll_table_struct *); + void (*hangup)(struct tty_struct *); + void (*receive_buf)(struct tty_struct *, const u8 *, const u8 *, size_t); + void (*write_wakeup)(struct tty_struct *); + void (*dcd_change)(struct tty_struct *, bool); + size_t (*receive_buf2)(struct tty_struct *, const u8 *, const u8 *, size_t); + void (*lookahead_buf)(struct tty_struct *, const u8 *, const u8 *, size_t); + struct module *owner; +}; + +struct tty_ldisc { + struct tty_ldisc_ops *ops; + struct tty_struct *tty; +}; + +struct tty_port_operations { + bool (*carrier_raised)(struct tty_port *); + void (*dtr_rts)(struct tty_port *, bool); + void (*shutdown)(struct tty_port *); + int (*activate)(struct tty_port *, struct tty_struct *); + void (*destruct)(struct tty_port *); +}; + +struct tty_port_client_operations { + size_t (*receive_buf)(struct tty_port *, const u8 *, const u8 *, size_t); + void (*lookahead_buf)(struct tty_port *, const u8 *, const u8 *, size_t); + void (*write_wakeup)(struct tty_port *); +}; + +struct compact_control { + struct list_head freepages[11]; + struct list_head migratepages; + unsigned int nr_freepages; + unsigned int nr_migratepages; + long unsigned int free_pfn; + long unsigned int migrate_pfn; + long unsigned int fast_start_pfn; + struct zone *zone; + long unsigned int total_migrate_scanned; + long unsigned int total_free_scanned; + short unsigned int fast_search_fail; + short int search_order; + const gfp_t gfp_mask; + int order; + int migratetype; + const unsigned int alloc_flags; + const int highest_zoneidx; + enum migrate_mode mode; + bool ignore_skip_hint; + bool no_set_skip_hint; + bool ignore_block_suitable; + bool direct_compaction; + bool proactive_compaction; + bool whole_zone; + bool contended; + bool finish_pageblock; + bool alloc_contig; +}; + +struct trace_event_raw_task_newtask { + struct trace_entry ent; + pid_t pid; + char comm[16]; + long unsigned int clone_flags; + short int oom_score_adj; + char __data[0]; +}; + +struct trace_event_raw_task_rename { + struct trace_entry ent; + char oldcomm[16]; + char newcomm[16]; + short int oom_score_adj; + char __data[0]; +}; + +struct trace_event_raw_task_prctl_unknown { + struct trace_entry ent; + int option; + long unsigned int arg2; + long unsigned int arg3; + long unsigned int arg4; + long unsigned int arg5; + char __data[0]; +}; + +struct trace_event_data_offsets_task_newtask {}; + +struct trace_event_data_offsets_task_rename {}; + +struct trace_event_data_offsets_task_prctl_unknown {}; + +typedef void (*btf_trace_task_newtask)(void *, struct task_struct *, long unsigned int); + +typedef void (*btf_trace_task_rename)(void *, struct task_struct *, const char *); + +typedef void (*btf_trace_task_prctl_unknown)(void *, int, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + +struct vm_stack { + struct callback_head rcu; + struct vm_struct *stack_vm_area; +}; + +enum { + IPSTATS_MIB_NUM = 0, + IPSTATS_MIB_INPKTS = 1, + IPSTATS_MIB_INOCTETS = 2, + IPSTATS_MIB_INDELIVERS = 3, + IPSTATS_MIB_NOECTPKTS = 4, + IPSTATS_MIB_ECT1PKTS = 5, + IPSTATS_MIB_ECT0PKTS = 6, + IPSTATS_MIB_CEPKTS = 7, + IPSTATS_MIB_OUTREQUESTS = 8, + IPSTATS_MIB_OUTPKTS = 9, + IPSTATS_MIB_OUTOCTETS = 10, + IPSTATS_MIB_OUTFORWDATAGRAMS = 11, + IPSTATS_MIB_INHDRERRORS = 12, + IPSTATS_MIB_INTOOBIGERRORS = 13, + IPSTATS_MIB_INNOROUTES = 14, + IPSTATS_MIB_INADDRERRORS = 15, + IPSTATS_MIB_INUNKNOWNPROTOS = 16, + IPSTATS_MIB_INTRUNCATEDPKTS = 17, + IPSTATS_MIB_INDISCARDS = 18, + IPSTATS_MIB_OUTDISCARDS = 19, + IPSTATS_MIB_OUTNOROUTES = 20, + IPSTATS_MIB_REASMTIMEOUT = 21, + IPSTATS_MIB_REASMREQDS = 22, + IPSTATS_MIB_REASMOKS = 23, + IPSTATS_MIB_REASMFAILS = 24, + IPSTATS_MIB_FRAGOKS = 25, + IPSTATS_MIB_FRAGFAILS = 26, + IPSTATS_MIB_FRAGCREATES = 27, + IPSTATS_MIB_INMCASTPKTS = 28, + IPSTATS_MIB_OUTMCASTPKTS = 29, + IPSTATS_MIB_INBCASTPKTS = 30, + IPSTATS_MIB_OUTBCASTPKTS = 31, + IPSTATS_MIB_INMCASTOCTETS = 32, + IPSTATS_MIB_OUTMCASTOCTETS = 33, + IPSTATS_MIB_INBCASTOCTETS = 34, + IPSTATS_MIB_OUTBCASTOCTETS = 35, + IPSTATS_MIB_CSUMERRORS = 36, + IPSTATS_MIB_REASM_OVERLAPS = 37, + __IPSTATS_MIB_MAX = 38, +}; + +enum { + ICMP_MIB_NUM = 0, + ICMP_MIB_INMSGS = 1, + ICMP_MIB_INERRORS = 2, + ICMP_MIB_INDESTUNREACHS = 3, + ICMP_MIB_INTIMEEXCDS = 4, + ICMP_MIB_INPARMPROBS = 5, + ICMP_MIB_INSRCQUENCHS = 6, + ICMP_MIB_INREDIRECTS = 7, + ICMP_MIB_INECHOS = 8, + ICMP_MIB_INECHOREPS = 9, + ICMP_MIB_INTIMESTAMPS = 10, + ICMP_MIB_INTIMESTAMPREPS = 11, + ICMP_MIB_INADDRMASKS = 12, + ICMP_MIB_INADDRMASKREPS = 13, + ICMP_MIB_OUTMSGS = 14, + ICMP_MIB_OUTERRORS = 15, + ICMP_MIB_OUTDESTUNREACHS = 16, + ICMP_MIB_OUTTIMEEXCDS = 17, + ICMP_MIB_OUTPARMPROBS = 18, + ICMP_MIB_OUTSRCQUENCHS = 19, + ICMP_MIB_OUTREDIRECTS = 20, + ICMP_MIB_OUTECHOS = 21, + ICMP_MIB_OUTECHOREPS = 22, + ICMP_MIB_OUTTIMESTAMPS = 23, + ICMP_MIB_OUTTIMESTAMPREPS = 24, + ICMP_MIB_OUTADDRMASKS = 25, + ICMP_MIB_OUTADDRMASKREPS = 26, + ICMP_MIB_CSUMERRORS = 27, + ICMP_MIB_RATELIMITGLOBAL = 28, + ICMP_MIB_RATELIMITHOST = 29, + __ICMP_MIB_MAX = 30, +}; + +enum { + ICMP6_MIB_NUM = 0, + ICMP6_MIB_INMSGS = 1, + ICMP6_MIB_INERRORS = 2, + ICMP6_MIB_OUTMSGS = 3, + ICMP6_MIB_OUTERRORS = 4, + ICMP6_MIB_CSUMERRORS = 5, + ICMP6_MIB_RATELIMITHOST = 6, + __ICMP6_MIB_MAX = 7, +}; + +enum { + TCP_MIB_NUM = 0, + TCP_MIB_RTOALGORITHM = 1, + TCP_MIB_RTOMIN = 2, + TCP_MIB_RTOMAX = 3, + TCP_MIB_MAXCONN = 4, + TCP_MIB_ACTIVEOPENS = 5, + TCP_MIB_PASSIVEOPENS = 6, + TCP_MIB_ATTEMPTFAILS = 7, + TCP_MIB_ESTABRESETS = 8, + TCP_MIB_CURRESTAB = 9, + TCP_MIB_INSEGS = 10, + TCP_MIB_OUTSEGS = 11, + TCP_MIB_RETRANSSEGS = 12, + TCP_MIB_INERRS = 13, + TCP_MIB_OUTRSTS = 14, + TCP_MIB_CSUMERRORS = 15, + __TCP_MIB_MAX = 16, +}; + +enum { + UDP_MIB_NUM = 0, + UDP_MIB_INDATAGRAMS = 1, + UDP_MIB_NOPORTS = 2, + UDP_MIB_INERRORS = 3, + UDP_MIB_OUTDATAGRAMS = 4, + UDP_MIB_RCVBUFERRORS = 5, + UDP_MIB_SNDBUFERRORS = 6, + UDP_MIB_CSUMERRORS = 7, + UDP_MIB_IGNOREDMULTI = 8, + UDP_MIB_MEMERRORS = 9, + __UDP_MIB_MAX = 10, +}; + +enum { + LINUX_MIB_NUM = 0, + LINUX_MIB_SYNCOOKIESSENT = 1, + LINUX_MIB_SYNCOOKIESRECV = 2, + LINUX_MIB_SYNCOOKIESFAILED = 3, + LINUX_MIB_EMBRYONICRSTS = 4, + LINUX_MIB_PRUNECALLED = 5, + LINUX_MIB_RCVPRUNED = 6, + LINUX_MIB_OFOPRUNED = 7, + LINUX_MIB_OUTOFWINDOWICMPS = 8, + LINUX_MIB_LOCKDROPPEDICMPS = 9, + LINUX_MIB_ARPFILTER = 10, + LINUX_MIB_TIMEWAITED = 11, + LINUX_MIB_TIMEWAITRECYCLED = 12, + LINUX_MIB_TIMEWAITKILLED = 13, + LINUX_MIB_PAWSACTIVEREJECTED = 14, + LINUX_MIB_PAWSESTABREJECTED = 15, + LINUX_MIB_BEYOND_WINDOW = 16, + LINUX_MIB_TSECRREJECTED = 17, + LINUX_MIB_PAWS_OLD_ACK = 18, + LINUX_MIB_PAWS_TW_REJECTED = 19, + LINUX_MIB_DELAYEDACKS = 20, + LINUX_MIB_DELAYEDACKLOCKED = 21, + LINUX_MIB_DELAYEDACKLOST = 22, + LINUX_MIB_LISTENOVERFLOWS = 23, + LINUX_MIB_LISTENDROPS = 24, + LINUX_MIB_TCPHPHITS = 25, + LINUX_MIB_TCPPUREACKS = 26, + LINUX_MIB_TCPHPACKS = 27, + LINUX_MIB_TCPRENORECOVERY = 28, + LINUX_MIB_TCPSACKRECOVERY = 29, + LINUX_MIB_TCPSACKRENEGING = 30, + LINUX_MIB_TCPSACKREORDER = 31, + LINUX_MIB_TCPRENOREORDER = 32, + LINUX_MIB_TCPTSREORDER = 33, + LINUX_MIB_TCPFULLUNDO = 34, + LINUX_MIB_TCPPARTIALUNDO = 35, + LINUX_MIB_TCPDSACKUNDO = 36, + LINUX_MIB_TCPLOSSUNDO = 37, + LINUX_MIB_TCPLOSTRETRANSMIT = 38, + LINUX_MIB_TCPRENOFAILURES = 39, + LINUX_MIB_TCPSACKFAILURES = 40, + LINUX_MIB_TCPLOSSFAILURES = 41, + LINUX_MIB_TCPFASTRETRANS = 42, + LINUX_MIB_TCPSLOWSTARTRETRANS = 43, + LINUX_MIB_TCPTIMEOUTS = 44, + LINUX_MIB_TCPLOSSPROBES = 45, + LINUX_MIB_TCPLOSSPROBERECOVERY = 46, + LINUX_MIB_TCPRENORECOVERYFAIL = 47, + LINUX_MIB_TCPSACKRECOVERYFAIL = 48, + LINUX_MIB_TCPRCVCOLLAPSED = 49, + LINUX_MIB_TCPDSACKOLDSENT = 50, + LINUX_MIB_TCPDSACKOFOSENT = 51, + LINUX_MIB_TCPDSACKRECV = 52, + LINUX_MIB_TCPDSACKOFORECV = 53, + LINUX_MIB_TCPABORTONDATA = 54, + LINUX_MIB_TCPABORTONCLOSE = 55, + LINUX_MIB_TCPABORTONMEMORY = 56, + LINUX_MIB_TCPABORTONTIMEOUT = 57, + LINUX_MIB_TCPABORTONLINGER = 58, + LINUX_MIB_TCPABORTFAILED = 59, + LINUX_MIB_TCPMEMORYPRESSURES = 60, + LINUX_MIB_TCPMEMORYPRESSURESCHRONO = 61, + LINUX_MIB_TCPSACKDISCARD = 62, + LINUX_MIB_TCPDSACKIGNOREDOLD = 63, + LINUX_MIB_TCPDSACKIGNOREDNOUNDO = 64, + LINUX_MIB_TCPSPURIOUSRTOS = 65, + LINUX_MIB_TCPMD5NOTFOUND = 66, + LINUX_MIB_TCPMD5UNEXPECTED = 67, + LINUX_MIB_TCPMD5FAILURE = 68, + LINUX_MIB_SACKSHIFTED = 69, + LINUX_MIB_SACKMERGED = 70, + LINUX_MIB_SACKSHIFTFALLBACK = 71, + LINUX_MIB_TCPBACKLOGDROP = 72, + LINUX_MIB_PFMEMALLOCDROP = 73, + LINUX_MIB_TCPMINTTLDROP = 74, + LINUX_MIB_TCPDEFERACCEPTDROP = 75, + LINUX_MIB_IPRPFILTER = 76, + LINUX_MIB_TCPTIMEWAITOVERFLOW = 77, + LINUX_MIB_TCPREQQFULLDOCOOKIES = 78, + LINUX_MIB_TCPREQQFULLDROP = 79, + LINUX_MIB_TCPRETRANSFAIL = 80, + LINUX_MIB_TCPRCVCOALESCE = 81, + LINUX_MIB_TCPBACKLOGCOALESCE = 82, + LINUX_MIB_TCPOFOQUEUE = 83, + LINUX_MIB_TCPOFODROP = 84, + LINUX_MIB_TCPOFOMERGE = 85, + LINUX_MIB_TCPCHALLENGEACK = 86, + LINUX_MIB_TCPSYNCHALLENGE = 87, + LINUX_MIB_TCPFASTOPENACTIVE = 88, + LINUX_MIB_TCPFASTOPENACTIVEFAIL = 89, + LINUX_MIB_TCPFASTOPENPASSIVE = 90, + LINUX_MIB_TCPFASTOPENPASSIVEFAIL = 91, + LINUX_MIB_TCPFASTOPENLISTENOVERFLOW = 92, + LINUX_MIB_TCPFASTOPENCOOKIEREQD = 93, + LINUX_MIB_TCPFASTOPENBLACKHOLE = 94, + LINUX_MIB_TCPSPURIOUS_RTX_HOSTQUEUES = 95, + LINUX_MIB_BUSYPOLLRXPACKETS = 96, + LINUX_MIB_TCPAUTOCORKING = 97, + LINUX_MIB_TCPFROMZEROWINDOWADV = 98, + LINUX_MIB_TCPTOZEROWINDOWADV = 99, + LINUX_MIB_TCPWANTZEROWINDOWADV = 100, + LINUX_MIB_TCPSYNRETRANS = 101, + LINUX_MIB_TCPORIGDATASENT = 102, + LINUX_MIB_TCPHYSTARTTRAINDETECT = 103, + LINUX_MIB_TCPHYSTARTTRAINCWND = 104, + LINUX_MIB_TCPHYSTARTDELAYDETECT = 105, + LINUX_MIB_TCPHYSTARTDELAYCWND = 106, + LINUX_MIB_TCPACKSKIPPEDSYNRECV = 107, + LINUX_MIB_TCPACKSKIPPEDPAWS = 108, + LINUX_MIB_TCPACKSKIPPEDSEQ = 109, + LINUX_MIB_TCPACKSKIPPEDFINWAIT2 = 110, + LINUX_MIB_TCPACKSKIPPEDTIMEWAIT = 111, + LINUX_MIB_TCPACKSKIPPEDCHALLENGE = 112, + LINUX_MIB_TCPWINPROBE = 113, + LINUX_MIB_TCPKEEPALIVE = 114, + LINUX_MIB_TCPMTUPFAIL = 115, + LINUX_MIB_TCPMTUPSUCCESS = 116, + LINUX_MIB_TCPDELIVERED = 117, + LINUX_MIB_TCPDELIVEREDCE = 118, + LINUX_MIB_TCPACKCOMPRESSED = 119, + LINUX_MIB_TCPZEROWINDOWDROP = 120, + LINUX_MIB_TCPRCVQDROP = 121, + LINUX_MIB_TCPWQUEUETOOBIG = 122, + LINUX_MIB_TCPFASTOPENPASSIVEALTKEY = 123, + LINUX_MIB_TCPTIMEOUTREHASH = 124, + LINUX_MIB_TCPDUPLICATEDATAREHASH = 125, + LINUX_MIB_TCPDSACKRECVSEGS = 126, + LINUX_MIB_TCPDSACKIGNOREDDUBIOUS = 127, + LINUX_MIB_TCPMIGRATEREQSUCCESS = 128, + LINUX_MIB_TCPMIGRATEREQFAILURE = 129, + LINUX_MIB_TCPPLBREHASH = 130, + LINUX_MIB_TCPAOREQUIRED = 131, + LINUX_MIB_TCPAOBAD = 132, + LINUX_MIB_TCPAOKEYNOTFOUND = 133, + LINUX_MIB_TCPAOGOOD = 134, + LINUX_MIB_TCPAODROPPEDICMPS = 135, + __LINUX_MIB_MAX = 136, +}; + +enum { + LINUX_MIB_XFRMNUM = 0, + LINUX_MIB_XFRMINERROR = 1, + LINUX_MIB_XFRMINBUFFERERROR = 2, + LINUX_MIB_XFRMINHDRERROR = 3, + LINUX_MIB_XFRMINNOSTATES = 4, + LINUX_MIB_XFRMINSTATEPROTOERROR = 5, + LINUX_MIB_XFRMINSTATEMODEERROR = 6, + LINUX_MIB_XFRMINSTATESEQERROR = 7, + LINUX_MIB_XFRMINSTATEEXPIRED = 8, + LINUX_MIB_XFRMINSTATEMISMATCH = 9, + LINUX_MIB_XFRMINSTATEINVALID = 10, + LINUX_MIB_XFRMINTMPLMISMATCH = 11, + LINUX_MIB_XFRMINNOPOLS = 12, + LINUX_MIB_XFRMINPOLBLOCK = 13, + LINUX_MIB_XFRMINPOLERROR = 14, + LINUX_MIB_XFRMOUTERROR = 15, + LINUX_MIB_XFRMOUTBUNDLEGENERROR = 16, + LINUX_MIB_XFRMOUTBUNDLECHECKERROR = 17, + LINUX_MIB_XFRMOUTNOSTATES = 18, + LINUX_MIB_XFRMOUTSTATEPROTOERROR = 19, + LINUX_MIB_XFRMOUTSTATEMODEERROR = 20, + LINUX_MIB_XFRMOUTSTATESEQERROR = 21, + LINUX_MIB_XFRMOUTSTATEEXPIRED = 22, + LINUX_MIB_XFRMOUTPOLBLOCK = 23, + LINUX_MIB_XFRMOUTPOLDEAD = 24, + LINUX_MIB_XFRMOUTPOLERROR = 25, + LINUX_MIB_XFRMFWDHDRERROR = 26, + LINUX_MIB_XFRMOUTSTATEINVALID = 27, + LINUX_MIB_XFRMACQUIREERROR = 28, + LINUX_MIB_XFRMOUTSTATEDIRERROR = 29, + LINUX_MIB_XFRMINSTATEDIRERROR = 30, + LINUX_MIB_XFRMINIPTFSERROR = 31, + LINUX_MIB_XFRMOUTNOQSPACE = 32, + __LINUX_MIB_XFRMMAX = 33, +}; + +enum { + LINUX_MIB_TLSNUM = 0, + LINUX_MIB_TLSCURRTXSW = 1, + LINUX_MIB_TLSCURRRXSW = 2, + LINUX_MIB_TLSCURRTXDEVICE = 3, + LINUX_MIB_TLSCURRRXDEVICE = 4, + LINUX_MIB_TLSTXSW = 5, + LINUX_MIB_TLSRXSW = 6, + LINUX_MIB_TLSTXDEVICE = 7, + LINUX_MIB_TLSRXDEVICE = 8, + LINUX_MIB_TLSDECRYPTERROR = 9, + LINUX_MIB_TLSRXDEVICERESYNC = 10, + LINUX_MIB_TLSDECRYPTRETRY = 11, + LINUX_MIB_TLSRXNOPADVIOL = 12, + LINUX_MIB_TLSRXREKEYOK = 13, + LINUX_MIB_TLSRXREKEYERROR = 14, + LINUX_MIB_TLSTXREKEYOK = 15, + LINUX_MIB_TLSTXREKEYERROR = 16, + LINUX_MIB_TLSRXREKEYRECEIVED = 17, + __LINUX_MIB_TLSMAX = 18, +}; + +enum nf_inet_hooks { + NF_INET_PRE_ROUTING = 0, + NF_INET_LOCAL_IN = 1, + NF_INET_FORWARD = 2, + NF_INET_LOCAL_OUT = 3, + NF_INET_POST_ROUTING = 4, + NF_INET_NUMHOOKS = 5, + NF_INET_INGRESS = 5, +}; + +enum { + NFPROTO_UNSPEC = 0, + NFPROTO_INET = 1, + NFPROTO_IPV4 = 2, + NFPROTO_ARP = 3, + NFPROTO_NETDEV = 5, + NFPROTO_BRIDGE = 7, + NFPROTO_IPV6 = 10, + NFPROTO_NUMPROTO = 11, +}; + +enum tcp_conntrack { + TCP_CONNTRACK_NONE = 0, + TCP_CONNTRACK_SYN_SENT = 1, + TCP_CONNTRACK_SYN_RECV = 2, + TCP_CONNTRACK_ESTABLISHED = 3, + TCP_CONNTRACK_FIN_WAIT = 4, + TCP_CONNTRACK_CLOSE_WAIT = 5, + TCP_CONNTRACK_LAST_ACK = 6, + TCP_CONNTRACK_TIME_WAIT = 7, + TCP_CONNTRACK_CLOSE = 8, + TCP_CONNTRACK_LISTEN = 9, + TCP_CONNTRACK_MAX = 10, + TCP_CONNTRACK_IGNORE = 11, + TCP_CONNTRACK_RETRANS = 12, + TCP_CONNTRACK_UNACK = 13, + TCP_CONNTRACK_TIMEOUT_MAX = 14, +}; + +enum ip_conntrack_dir { + IP_CT_DIR_ORIGINAL = 0, + IP_CT_DIR_REPLY = 1, + IP_CT_DIR_MAX = 2, +}; + +enum sctp_conntrack { + SCTP_CONNTRACK_NONE = 0, + SCTP_CONNTRACK_CLOSED = 1, + SCTP_CONNTRACK_COOKIE_WAIT = 2, + SCTP_CONNTRACK_COOKIE_ECHOED = 3, + SCTP_CONNTRACK_ESTABLISHED = 4, + SCTP_CONNTRACK_SHUTDOWN_SENT = 5, + SCTP_CONNTRACK_SHUTDOWN_RECD = 6, + SCTP_CONNTRACK_SHUTDOWN_ACK_SENT = 7, + SCTP_CONNTRACK_HEARTBEAT_SENT = 8, + SCTP_CONNTRACK_HEARTBEAT_ACKED = 9, + SCTP_CONNTRACK_MAX = 10, +}; + +enum udp_conntrack { + UDP_CT_UNREPLIED = 0, + UDP_CT_REPLIED = 1, + UDP_CT_MAX = 2, +}; + +enum gre_conntrack { + GRE_CT_UNREPLIED = 0, + GRE_CT_REPLIED = 1, + GRE_CT_MAX = 2, +}; + +enum { + XFRM_POLICY_IN = 0, + XFRM_POLICY_OUT = 1, + XFRM_POLICY_FWD = 2, + XFRM_POLICY_MASK = 3, + XFRM_POLICY_MAX = 3, +}; + +enum netns_bpf_attach_type { + NETNS_BPF_INVALID = -1, + NETNS_BPF_FLOW_DISSECTOR = 0, + NETNS_BPF_SK_LOOKUP = 1, + MAX_NETNS_BPF_ATTACH_TYPE = 2, +}; + +typedef resource_size_t (*resource_alignf)(void *, const struct resource *, resource_size_t, resource_size_t); + +struct resource_constraint { + resource_size_t min; + resource_size_t max; + resource_size_t align; + resource_alignf alignf; + void *alignf_data; +}; + +typedef void (*dr_release_t)(struct device *, void *); + +typedef int (*dr_match_t)(struct device *, void *, void *); + +struct pseudo_fs_context { + const struct super_operations *ops; + const struct export_operations *eops; + const struct xattr_handler * const *xattr; + const struct dentry_operations *dops; + long unsigned int magic; +}; + +struct resource_entry { + struct list_head node; + struct resource *res; + resource_size_t offset; + struct resource __res; +}; + +enum { + MAX_IORES_LEVEL = 5, +}; + +struct region_devres { + struct resource *parent; + resource_size_t start; + resource_size_t n; +}; + +typedef __kernel_clock_t clock_t; + +struct sysinfo { + __kernel_long_t uptime; + __kernel_ulong_t loads[3]; + __kernel_ulong_t totalram; + __kernel_ulong_t freeram; + __kernel_ulong_t sharedram; + __kernel_ulong_t bufferram; + __kernel_ulong_t totalswap; + __kernel_ulong_t freeswap; + __u16 procs; + __u16 pad; + __kernel_ulong_t totalhigh; + __kernel_ulong_t freehigh; + __u32 mem_unit; + char _f[0]; +}; + +enum { + PER_LINUX = 0, + PER_LINUX_32BIT = 8388608, + PER_LINUX_FDPIC = 524288, + PER_SVR4 = 68157441, + PER_SVR3 = 83886082, + PER_SCOSVR3 = 117440515, + PER_OSR5 = 100663299, + PER_WYSEV386 = 83886084, + PER_ISCR4 = 67108869, + PER_BSD = 6, + PER_SUNOS = 67108870, + PER_XENIX = 83886087, + PER_LINUX32 = 8, + PER_LINUX32_3GB = 134217736, + PER_IRIX32 = 67108873, + PER_IRIXN32 = 67108874, + PER_IRIX64 = 67108875, + PER_RISCOS = 12, + PER_SOLARIS = 67108877, + PER_UW7 = 68157454, + PER_OSF4 = 15, + PER_HPUX = 16, + PER_MASK = 255, +}; + +struct __kernel_old_timeval { + __kernel_long_t tv_sec; + __kernel_long_t tv_usec; +}; + +struct rusage { + struct __kernel_old_timeval ru_utime; + struct __kernel_old_timeval ru_stime; + __kernel_long_t ru_maxrss; + __kernel_long_t ru_ixrss; + __kernel_long_t ru_idrss; + __kernel_long_t ru_isrss; + __kernel_long_t ru_minflt; + __kernel_long_t ru_majflt; + __kernel_long_t ru_nswap; + __kernel_long_t ru_inblock; + __kernel_long_t ru_oublock; + __kernel_long_t ru_msgsnd; + __kernel_long_t ru_msgrcv; + __kernel_long_t ru_nsignals; + __kernel_long_t ru_nvcsw; + __kernel_long_t ru_nivcsw; +}; + +struct rlimit64 { + __u64 rlim_cur; + __u64 rlim_max; +}; + +struct old_timeval32 { + old_time32_t tv_sec; + s32 tv_usec; +}; + +struct timens_offsets { + struct timespec64 monotonic; + struct timespec64 boottime; +}; + +struct time_namespace { + struct user_namespace *user_ns; + struct ucounts *ucounts; + struct ns_common ns; + struct timens_offsets offsets; + struct page *vvar_page; + bool frozen_offsets; +}; + +typedef s32 compat_clock_t; + +typedef u32 compat_ulong_t; + +struct compat_tms { + compat_clock_t tms_utime; + compat_clock_t tms_stime; + compat_clock_t tms_cutime; + compat_clock_t tms_cstime; +}; + +struct compat_rlimit { + compat_ulong_t rlim_cur; + compat_ulong_t rlim_max; +}; + +struct compat_rusage { + struct old_timeval32 ru_utime; + struct old_timeval32 ru_stime; + compat_long_t ru_maxrss; + compat_long_t ru_ixrss; + compat_long_t ru_idrss; + compat_long_t ru_isrss; + compat_long_t ru_minflt; + compat_long_t ru_majflt; + compat_long_t ru_nswap; + compat_long_t ru_inblock; + compat_long_t ru_oublock; + compat_long_t ru_msgsnd; + compat_long_t ru_msgrcv; + compat_long_t ru_nsignals; + compat_long_t ru_nvcsw; + compat_long_t ru_nivcsw; +}; + +struct oldold_utsname { + char sysname[9]; + char nodename[9]; + char release[9]; + char version[9]; + char machine[9]; +}; + +struct old_utsname { + char sysname[65]; + char nodename[65]; + char release[65]; + char version[65]; + char machine[65]; +}; + +enum uts_proc { + UTS_PROC_ARCH = 0, + UTS_PROC_OSTYPE = 1, + UTS_PROC_OSRELEASE = 2, + UTS_PROC_VERSION = 3, + UTS_PROC_HOSTNAME = 4, + UTS_PROC_DOMAINNAME = 5, +}; + +struct prctl_mm_map { + __u64 start_code; + __u64 end_code; + __u64 start_data; + __u64 end_data; + __u64 start_brk; + __u64 brk; + __u64 start_stack; + __u64 arg_start; + __u64 arg_end; + __u64 env_start; + __u64 env_end; + __u64 *auxv; + __u32 auxv_size; + __u32 exe_fd; +}; + +struct fd { + long unsigned int word; +}; + +typedef struct fd class_fd_t; + +struct tms { + __kernel_clock_t tms_utime; + __kernel_clock_t tms_stime; + __kernel_clock_t tms_cutime; + __kernel_clock_t tms_cstime; +}; + +struct getcpu_cache { + long unsigned int blob[16]; +}; + +struct compat_sysinfo { + s32 uptime; + u32 loads[3]; + u32 totalram; + u32 freeram; + u32 sharedram; + u32 bufferram; + u32 totalswap; + u32 freeswap; + u16 procs; + u16 pad; + u32 totalhigh; + u32 freehigh; + u32 mem_unit; + char _f[8]; +}; + +enum { + CSD_FLAG_LOCK = 1, + IRQ_WORK_PENDING = 1, + IRQ_WORK_BUSY = 2, + IRQ_WORK_LAZY = 4, + IRQ_WORK_HARD_IRQ = 8, + IRQ_WORK_CLAIMED = 3, + CSD_TYPE_ASYNC = 0, + CSD_TYPE_SYNC = 16, + CSD_TYPE_IRQ_WORK = 32, + CSD_TYPE_TTWU = 48, + CSD_FLAG_TYPE_MASK = 240, +}; + +typedef void (*task_work_func_t)(struct callback_head *); + +enum task_work_notify_mode { + TWA_NONE = 0, + TWA_RESUME = 1, + TWA_SIGNAL = 2, + TWA_SIGNAL_NO_IPI = 3, + TWA_NMI_CURRENT = 4, +}; + +struct ipc_ids { + int in_use; + short unsigned int seq; + struct rw_semaphore rwsem; + struct idr ipcs_idr; + int max_idx; + int last_idx; + int next_id; + struct rhashtable key_ht; +}; + +struct ipc_namespace { + struct ipc_ids ids[3]; + int sem_ctls[4]; + int used_sems; + unsigned int msg_ctlmax; + unsigned int msg_ctlmnb; + unsigned int msg_ctlmni; + struct percpu_counter percpu_msg_bytes; + struct percpu_counter percpu_msg_hdrs; + size_t shm_ctlmax; + size_t shm_ctlall; + long unsigned int shm_tot; + int shm_ctlmni; + int shm_rmid_forced; + struct notifier_block ipcns_nb; + struct vfsmount *mq_mnt; + unsigned int mq_queues_count; + unsigned int mq_queues_max; + unsigned int mq_msg_max; + unsigned int mq_msgsize_max; + unsigned int mq_msg_default; + unsigned int mq_msgsize_default; + struct ctl_table_set mq_set; + struct ctl_table_header *mq_sysctls; + struct ctl_table_set ipc_set; + struct ctl_table_header *ipc_sysctls; + struct user_namespace *user_ns; + struct ucounts *ucounts; + struct llist_node mnt_llist; + struct ns_common ns; +}; + +enum wq_flags { + WQ_BH = 1, + WQ_UNBOUND = 2, + WQ_FREEZABLE = 4, + WQ_MEM_RECLAIM = 8, + WQ_HIGHPRI = 16, + WQ_CPU_INTENSIVE = 32, + WQ_SYSFS = 64, + WQ_POWER_EFFICIENT = 128, + WQ_PERCPU = 256, + __WQ_DESTROYING = 32768, + __WQ_DRAINING = 65536, + __WQ_ORDERED = 131072, + __WQ_LEGACY = 262144, + __WQ_BH_ALLOWS = 17, +}; + +enum wq_consts { + WQ_MAX_ACTIVE = 2048, + WQ_UNBOUND_MAX_ACTIVE = 2048, + WQ_DFL_ACTIVE = 1024, + WQ_DFL_MIN_ACTIVE = 8, +}; + +struct pool_workqueue; + +struct worker_pool; + +struct worker { + union { + struct list_head entry; + struct hlist_node hentry; + }; + struct work_struct *current_work; + work_func_t current_func; + struct pool_workqueue *current_pwq; + u64 current_at; + unsigned int current_color; + int sleeping; + work_func_t last_func; + struct list_head scheduled; + struct task_struct *task; + struct worker_pool *pool; + struct list_head node; + long unsigned int last_active; + unsigned int flags; + int id; + char desc[32]; + struct workqueue_struct *rescue_wq; +}; + +struct async_entry { + struct list_head domain_list; + struct list_head global_list; + struct work_struct work; + async_cookie_t cookie; + async_func_t func; + void *data; + struct async_domain *domain; +}; + +struct pin_cookie {}; + +struct plist_head { + struct list_head node_list; +}; + +struct scx_task_group { + u32 flags; + u32 weight; + u64 bw_period_us; + u64 bw_quota_us; + u64 bw_burst_us; +}; + +struct dl_bw { + raw_spinlock_t lock; + u64 bw; + u64 total_bw; +}; + +struct cpudl_item; + +struct cpudl { + raw_spinlock_t lock; + int size; + cpumask_var_t free_cpus; + struct cpudl_item *elements; +}; + +struct cpupri_vec { + atomic_t count; + cpumask_var_t mask; +}; + +struct cpupri { + struct cpupri_vec pri_to_cpu[101]; + int *cpu_to_pri; +}; + +struct perf_domain; + +struct root_domain { + atomic_t refcount; + atomic_t rto_count; + struct callback_head rcu; + cpumask_var_t span; + cpumask_var_t online; + bool overloaded; + bool overutilized; + cpumask_var_t dlo_mask; + atomic_t dlo_count; + struct dl_bw dl_bw; + struct cpudl cpudl; + u64 visit_cookie; + struct irq_work rto_push_work; + raw_spinlock_t rto_lock; + int rto_loop; + int rto_cpu; + atomic_t rto_loop_next; + atomic_t rto_loop_start; + cpumask_var_t rto_mask; + struct cpupri cpupri; + struct perf_domain *pd; +}; + +struct cfs_rq { + struct load_weight load; + unsigned int nr_queued; + unsigned int h_nr_queued; + unsigned int h_nr_runnable; + unsigned int h_nr_idle; + s64 avg_vruntime; + u64 avg_load; + u64 zero_vruntime; + unsigned int forceidle_seq; + u64 zero_vruntime_fi; + struct rb_root_cached tasks_timeline; + struct sched_entity *curr; + struct sched_entity *next; + long: 64; + long: 64; + long: 64; + struct sched_avg avg; + struct { + raw_spinlock_t lock; + int nr; + long unsigned int load_avg; + long unsigned int util_avg; + long unsigned int runnable_avg; + long: 64; + long: 64; + long: 64; + long: 64; + } removed; + u64 last_update_tg_load_avg; + long unsigned int tg_load_avg_contrib; + long int propagate; + long int prop_runnable_sum; + long unsigned int h_load; + u64 last_h_load_update; + struct sched_entity *h_load_next; + struct rq *rq; + int on_list; + struct list_head leaf_cfs_rq_list; + struct task_group *tg; + int idle; + int runtime_enabled; + s64 runtime_remaining; + u64 throttled_pelt_idle; + u64 throttled_clock; + u64 throttled_clock_pelt; + u64 throttled_clock_pelt_time; + u64 throttled_clock_self; + u64 throttled_clock_self_time; + int throttled; + int throttle_count; + struct list_head throttled_list; + struct list_head throttled_csd_list; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct uclamp_bucket { + long unsigned int value: 11; + long unsigned int tasks: 53; +}; + +struct uclamp_rq { + unsigned int value; + struct uclamp_bucket bucket[5]; +}; + +struct rt_prio_array { + long unsigned int bitmap[2]; + struct list_head queue[100]; +}; + +struct rt_rq { + struct rt_prio_array active; + unsigned int rt_nr_running; + unsigned int rr_nr_running; + struct { + int curr; + int next; + } highest_prio; + bool overloaded; + struct plist_head pushable_tasks; + int rt_queued; + struct task_group *tg; +}; + +struct dl_rq { + struct rb_root_cached root; + unsigned int dl_nr_running; + struct { + u64 curr; + u64 next; + } earliest_dl; + bool overloaded; + struct rb_root_cached pushable_dl_tasks_root; + u64 running_bw; + u64 this_bw; + u64 extra_bw; + u64 max_bw; + u64 bw_ratio; +}; + +struct balance_callback { + struct balance_callback *next; + void (*func)(struct rq *); +}; + +struct scx_rq { + struct scx_dispatch_q local_dsq; + struct list_head runnable_list; + struct list_head ddsp_deferred_locals; + long unsigned int ops_qseq; + u64 extra_enq_flags; + u32 nr_running; + u32 cpuperf_target; + bool cpu_released; + u32 flags; + u64 clock; + cpumask_var_t cpus_to_kick; + cpumask_var_t cpus_to_kick_if_idle; + cpumask_var_t cpus_to_preempt; + cpumask_var_t cpus_to_wait; + long unsigned int pnt_seq; + struct balance_callback deferred_bal_cb; + struct irq_work deferred_irq_work; + struct irq_work kick_cpus_irq_work; +}; + +typedef int (*cpu_stop_fn_t)(void *); + +struct cpu_stop_done; + +struct cpu_stop_work { + struct list_head list; + cpu_stop_fn_t fn; + long unsigned int caller; + void *arg; + struct cpu_stop_done *done; +}; + +struct sched_domain; + +struct cpuidle_state; + +struct rq { + raw_spinlock_t __lock; + unsigned int nr_running; + unsigned int nr_numa_running; + unsigned int nr_preferred_running; + unsigned int numa_migrate_on; + long unsigned int last_blocked_load_update_tick; + unsigned int has_blocked_load; + long: 64; + long: 64; + long: 64; + call_single_data_t nohz_csd; + unsigned int nohz_tick_stopped; + atomic_t nohz_flags; + unsigned int ttwu_pending; + u64 nr_switches; + long: 64; + struct uclamp_rq uclamp[2]; + unsigned int uclamp_flags; + long: 64; + long: 64; + long: 64; + struct cfs_rq cfs; + struct rt_rq rt; + struct dl_rq dl; + struct scx_rq scx; + struct sched_dl_entity fair_server; + struct list_head leaf_cfs_rq_list; + struct list_head *tmp_alone_branch; + long unsigned int nr_uninterruptible; + union { + struct task_struct *donor; + struct task_struct *curr; + }; + struct sched_dl_entity *dl_server; + struct task_struct *idle; + struct task_struct *stop; + long unsigned int next_balance; + struct mm_struct *prev_mm; + unsigned int clock_update_flags; + u64 clock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + u64 clock_task; + u64 clock_pelt; + long unsigned int lost_idle_time; + u64 clock_pelt_idle; + u64 clock_idle; + atomic_t nr_iowait; + u64 last_seen_need_resched_ns; + int ticks_without_resched; + int membarrier_state; + struct root_domain *rd; + struct sched_domain *sd; + long unsigned int cpu_capacity; + struct balance_callback *balance_callback; + unsigned char nohz_idle_balance; + unsigned char idle_balance; + long unsigned int misfit_task_load; + int active_balance; + int push_cpu; + struct cpu_stop_work active_balance_work; + int cpu; + int online; + struct list_head cfs_tasks; + struct sched_avg avg_rt; + struct sched_avg avg_dl; + u64 idle_stamp; + u64 avg_idle; + u64 max_idle_balance_cost; + struct rcuwait hotplug_wait; + u64 prev_steal_time; + long unsigned int calc_load_update; + long int calc_load_active; + long: 64; + call_single_data_t hrtick_csd; + struct hrtimer hrtick_timer; + ktime_t hrtick_time; + struct sched_info rq_sched_info; + long long unsigned int rq_cpu_time; + unsigned int yld_count; + unsigned int sched_count; + unsigned int sched_goidle; + unsigned int ttwu_count; + unsigned int ttwu_local; + struct cpuidle_state *idle_state; + unsigned int nr_pinned; + unsigned int push_busy; + struct cpu_stop_work push_work; + struct rq *core; + struct task_struct *core_pick; + struct sched_dl_entity *core_dl_server; + unsigned int core_enabled; + unsigned int core_sched_seq; + struct rb_root core_tree; + unsigned int core_task_seq; + unsigned int core_pick_seq; + long unsigned int core_cookie; + unsigned int core_forceidle_count; + unsigned int core_forceidle_seq; + unsigned int core_forceidle_occupation; + u64 core_forceidle_start; + cpumask_var_t scratch_mask; + long: 64; + long: 64; + call_single_data_t cfsb_csd; + struct list_head cfsb_csd_list; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct cfs_bandwidth { + raw_spinlock_t lock; + ktime_t period; + u64 quota; + u64 runtime; + u64 burst; + u64 runtime_snap; + s64 hierarchical_quota; + u8 idle; + u8 period_active; + u8 slack_started; + struct hrtimer period_timer; + struct hrtimer slack_timer; + struct list_head throttled_cfs_rq; + int nr_periods; + int nr_throttled; + int nr_burst; + u64 throttled_time; + u64 burst_time; +}; + +struct task_group { + struct cgroup_subsys_state css; + int idle; + struct sched_entity **se; + struct cfs_rq **cfs_rq; + long unsigned int shares; + long: 64; + long: 64; + atomic_long_t load_avg; + struct scx_task_group scx; + struct callback_head rcu; + struct list_head list; + struct task_group *parent; + struct list_head siblings; + struct list_head children; + struct autogroup *autogroup; + struct cfs_bandwidth cfs_bandwidth; + unsigned int uclamp_pct[2]; + struct uclamp_se uclamp_req[2]; + struct uclamp_se uclamp[2]; +}; + +struct numa_group { + refcount_t refcount; + spinlock_t lock; + int nr_tasks; + pid_t gid; + int active_nodes; + struct callback_head rcu; + long unsigned int total_faults; + long unsigned int max_faults_cpu; + long unsigned int faults[0]; +}; + +enum pm_qos_type { + PM_QOS_UNITIALIZED = 0, + PM_QOS_MAX = 1, + PM_QOS_MIN = 2, +}; + +struct pm_qos_constraints { + struct plist_head list; + s32 target_value; + s32 default_value; + s32 no_constraint_value; + enum pm_qos_type type; + struct blocking_notifier_head *notifiers; +}; + +struct freq_constraints { + struct pm_qos_constraints min_freq; + struct blocking_notifier_head min_freq_notifiers; + struct pm_qos_constraints max_freq; + struct blocking_notifier_head max_freq_notifiers; +}; + +struct pm_qos_flags { + struct list_head list; + s32 effective_flags; +}; + +struct dev_pm_qos_request; + +struct dev_pm_qos { + struct pm_qos_constraints resume_latency; + struct pm_qos_constraints latency_tolerance; + struct freq_constraints freq; + struct pm_qos_flags flags; + struct dev_pm_qos_request *resume_latency_req; + struct dev_pm_qos_request *latency_tolerance_req; + struct dev_pm_qos_request *flags_req; +}; + +struct autogroup { + struct kref kref; + struct task_group *tg; + struct rw_semaphore lock; + long unsigned int id; + int nice; +}; + +struct update_util_data { + void (*func)(struct update_util_data *, u64, unsigned int); +}; + +enum cpu_idle_type { + __CPU_NOT_IDLE = 0, + CPU_IDLE = 1, + CPU_NEWLY_IDLE = 2, + CPU_MAX_IDLE_TYPES = 3, +}; + +enum { + SD_BALANCE_NEWIDLE = 1, + SD_BALANCE_EXEC = 2, + SD_BALANCE_FORK = 4, + SD_BALANCE_WAKE = 8, + SD_WAKE_AFFINE = 16, + SD_ASYM_CPUCAPACITY = 32, + SD_ASYM_CPUCAPACITY_FULL = 64, + SD_SHARE_CPUCAPACITY = 128, + SD_CLUSTER = 256, + SD_SHARE_LLC = 512, + SD_SERIALIZE = 1024, + SD_ASYM_PACKING = 2048, + SD_PREFER_SIBLING = 4096, + SD_NUMA = 8192, +}; + +struct sched_domain_shared { + atomic_t ref; + atomic_t nr_busy_cpus; + int has_idle_cores; + int nr_idle_scan; +}; + +struct sched_group; + +struct sched_domain { + struct sched_domain *parent; + struct sched_domain *child; + struct sched_group *groups; + long unsigned int min_interval; + long unsigned int max_interval; + unsigned int busy_factor; + unsigned int imbalance_pct; + unsigned int cache_nice_tries; + unsigned int imb_numa_nr; + int nohz_idle; + int flags; + int level; + long unsigned int last_balance; + unsigned int balance_interval; + unsigned int nr_balance_failed; + unsigned int newidle_call; + unsigned int newidle_success; + unsigned int newidle_ratio; + u64 max_newidle_lb_cost; + long unsigned int last_decay_max_lb_cost; + unsigned int lb_count[3]; + unsigned int lb_failed[3]; + unsigned int lb_balanced[3]; + unsigned int lb_imbalance_load[3]; + unsigned int lb_imbalance_util[3]; + unsigned int lb_imbalance_task[3]; + unsigned int lb_imbalance_misfit[3]; + unsigned int lb_gained[3]; + unsigned int lb_hot_gained[3]; + unsigned int lb_nobusyg[3]; + unsigned int lb_nobusyq[3]; + unsigned int alb_count; + unsigned int alb_failed; + unsigned int alb_pushed; + unsigned int sbe_count; + unsigned int sbe_balanced; + unsigned int sbe_pushed; + unsigned int sbf_count; + unsigned int sbf_balanced; + unsigned int sbf_pushed; + unsigned int ttwu_wake_remote; + unsigned int ttwu_move_affine; + unsigned int ttwu_move_balance; + char *name; + union { + void *private; + struct callback_head rcu; + }; + struct sched_domain_shared *shared; + unsigned int span_weight; + long unsigned int span[0]; +}; + +struct sched_group_capacity; + +struct sched_group { + struct sched_group *next; + atomic_t ref; + unsigned int group_weight; + unsigned int cores; + struct sched_group_capacity *sgc; + int asym_prefer_cpu; + int flags; + long unsigned int cpumask[0]; +}; + +struct sched_group_capacity { + atomic_t ref; + long unsigned int capacity; + long unsigned int min_capacity; + long unsigned int max_capacity; + long unsigned int next_update; + int imbalance; + int id; + long unsigned int cpumask[0]; +}; + +enum tick_dep_bits { + TICK_DEP_BIT_POSIX_TIMER = 0, + TICK_DEP_BIT_PERF_EVENTS = 1, + TICK_DEP_BIT_SCHED = 2, + TICK_DEP_BIT_CLOCK_UNSTABLE = 3, + TICK_DEP_BIT_RCU = 4, + TICK_DEP_BIT_RCU_EXP = 5, +}; + +enum hk_type { + HK_TYPE_DOMAIN = 0, + HK_TYPE_MANAGED_IRQ = 1, + HK_TYPE_KERNEL_NOISE = 2, + HK_TYPE_MAX = 3, + HK_TYPE_TICK = 2, + HK_TYPE_TIMER = 2, + HK_TYPE_RCU = 2, + HK_TYPE_MISC = 2, + HK_TYPE_WQ = 2, + HK_TYPE_KTHREAD = 2, +}; + +struct cpuidle_state_usage { + long long unsigned int disable; + long long unsigned int usage; + u64 time_ns; + long long unsigned int above; + long long unsigned int below; + long long unsigned int rejected; + long long unsigned int s2idle_usage; + long long unsigned int s2idle_time; +}; + +struct cpuidle_device; + +struct cpuidle_driver; + +struct cpuidle_state { + char name[16]; + char desc[32]; + s64 exit_latency_ns; + s64 target_residency_ns; + unsigned int flags; + unsigned int exit_latency; + int power_usage; + unsigned int target_residency; + int (*enter)(struct cpuidle_device *, struct cpuidle_driver *, int); + void (*enter_dead)(struct cpuidle_device *, int); + int (*enter_s2idle)(struct cpuidle_device *, struct cpuidle_driver *, int); +}; + +struct cpuidle_driver_kobj; + +struct cpuidle_state_kobj; + +struct cpuidle_device_kobj; + +struct cpuidle_device { + unsigned int registered: 1; + unsigned int enabled: 1; + unsigned int poll_time_limit: 1; + unsigned int cpu; + ktime_t next_hrtimer; + int last_state_idx; + u64 last_residency_ns; + u64 poll_limit_ns; + u64 forced_idle_latency_limit_ns; + struct cpuidle_state_usage states_usage[10]; + struct cpuidle_state_kobj *kobjs[10]; + struct cpuidle_driver_kobj *kobj_driver; + struct cpuidle_device_kobj *kobj_dev; + struct list_head device_list; +}; + +struct cpuidle_driver { + const char *name; + struct module *owner; + unsigned int bctimer: 1; + struct cpuidle_state states[10]; + int state_count; + int safe_state_index; + struct cpumask *cpumask; + const char *governor; +}; + +struct sched_attr { + __u32 size; + __u32 sched_policy; + __u64 sched_flags; + __s32 sched_nice; + __u32 sched_priority; + __u64 sched_runtime; + __u64 sched_deadline; + __u64 sched_period; + __u32 sched_util_min; + __u32 sched_util_max; +}; + +struct rnd_state { + __u32 s1; + __u32 s2; + __u32 s3; + __u32 s4; +}; + +enum sched_tunable_scaling { + SCHED_TUNABLESCALING_NONE = 0, + SCHED_TUNABLESCALING_LOG = 1, + SCHED_TUNABLESCALING_LINEAR = 2, + SCHED_TUNABLESCALING_END = 3, +}; + +struct pm_qos_flags_request { + struct list_head node; + s32 flags; +}; + +enum freq_qos_req_type { + FREQ_QOS_MIN = 1, + FREQ_QOS_MAX = 2, +}; + +struct freq_qos_request { + enum freq_qos_req_type type; + struct plist_node pnode; + struct freq_constraints *qos; +}; + +enum dev_pm_qos_req_type { + DEV_PM_QOS_RESUME_LATENCY = 1, + DEV_PM_QOS_LATENCY_TOLERANCE = 2, + DEV_PM_QOS_MIN_FREQUENCY = 3, + DEV_PM_QOS_MAX_FREQUENCY = 4, + DEV_PM_QOS_FLAGS = 5, +}; + +struct dev_pm_qos_request { + enum dev_pm_qos_req_type type; + union { + struct plist_node pnode; + struct pm_qos_flags_request flr; + struct freq_qos_request freq; + } data; + struct device *dev; +}; + +enum numa_vmaskip_reason { + NUMAB_SKIP_UNSUITABLE = 0, + NUMAB_SKIP_SHARED_RO = 1, + NUMAB_SKIP_INACCESSIBLE = 2, + NUMAB_SKIP_SCAN_DELAY = 3, + NUMAB_SKIP_PID_INACTIVE = 4, + NUMAB_SKIP_IGNORE_PID = 5, + NUMAB_SKIP_SEQ_COMPLETED = 6, +}; + +struct cpudl_item { + u64 dl; + int cpu; + int idx; +}; + +struct asym_cap_data { + struct list_head link; + struct callback_head rcu; + long unsigned int capacity; + long unsigned int cpus[0]; +}; + +typedef int (*tg_visitor)(struct task_group *, void *); + +enum scx_rq_flags { + SCX_RQ_ONLINE = 1, + SCX_RQ_CAN_STOP_TICK = 2, + SCX_RQ_BAL_PENDING = 4, + SCX_RQ_BAL_KEEP = 8, + SCX_RQ_BYPASSING = 16, + SCX_RQ_CLK_VALID = 32, + SCX_RQ_BAL_CB_PENDING = 64, + SCX_RQ_IN_WAKEUP = 65536, + SCX_RQ_IN_BALANCE = 131072, +}; + +struct perf_domain { + struct em_perf_domain *em_pd; + struct perf_domain *next; + struct callback_head rcu; +}; + +struct rq_flags { + long unsigned int flags; + struct pin_cookie cookie; + unsigned int clock_update_flags; +}; + +typedef struct { + struct rq *lock; + struct rq_flags rf; +} class_rq_lock_irqsave_t; + +enum numa_topology_type { + NUMA_DIRECT = 0, + NUMA_GLUELESS_MESH = 1, + NUMA_BACKPLANE = 2, +}; + +enum numa_faults_stats { + NUMA_MEM = 0, + NUMA_CPU = 1, + NUMA_MEMBUF = 2, + NUMA_CPUBUF = 3, +}; + +enum { + __SCHED_FEAT_PLACE_LAG = 0, + __SCHED_FEAT_PLACE_DEADLINE_INITIAL = 1, + __SCHED_FEAT_PLACE_REL_DEADLINE = 2, + __SCHED_FEAT_RUN_TO_PARITY = 3, + __SCHED_FEAT_PREEMPT_SHORT = 4, + __SCHED_FEAT_NEXT_BUDDY = 5, + __SCHED_FEAT_PICK_BUDDY = 6, + __SCHED_FEAT_CACHE_HOT_BUDDY = 7, + __SCHED_FEAT_DELAY_DEQUEUE = 8, + __SCHED_FEAT_DELAY_ZERO = 9, + __SCHED_FEAT_WAKEUP_PREEMPTION = 10, + __SCHED_FEAT_HRTICK = 11, + __SCHED_FEAT_HRTICK_DL = 12, + __SCHED_FEAT_NONTASK_CAPACITY = 13, + __SCHED_FEAT_TTWU_QUEUE = 14, + __SCHED_FEAT_SIS_UTIL = 15, + __SCHED_FEAT_WARN_DOUBLE_CLOCK = 16, + __SCHED_FEAT_RT_PUSH_IPI = 17, + __SCHED_FEAT_RT_RUNTIME_SHARE = 18, + __SCHED_FEAT_LB_MIN = 19, + __SCHED_FEAT_ATTACH_AGE_LOAD = 20, + __SCHED_FEAT_WA_IDLE = 21, + __SCHED_FEAT_WA_WEIGHT = 22, + __SCHED_FEAT_WA_BIAS = 23, + __SCHED_FEAT_UTIL_EST = 24, + __SCHED_FEAT_LATENCY_WARN = 25, + __SCHED_FEAT_NI_RANDOM = 26, + __SCHED_FEAT_NR = 27, +}; + +struct affinity_context { + const struct cpumask *new_mask; + struct cpumask *user_mask; + unsigned int flags; +}; + +struct sched_entity_stats { + struct sched_entity se; + struct sched_statistics stats; +}; + +enum numa_type { + node_has_spare = 0, + node_fully_busy = 1, + node_overloaded = 2, +}; + +struct numa_stats { + long unsigned int load; + long unsigned int runnable; + long unsigned int util; + long unsigned int compute_capacity; + unsigned int nr_running; + unsigned int weight; + enum numa_type node_type; + int idle_cpu; +}; + +struct task_numa_env { + struct task_struct *p; + int src_cpu; + int src_nid; + int dst_cpu; + int dst_nid; + int imb_numa_nr; + struct numa_stats src_stats; + struct numa_stats dst_stats; + int imbalance_pct; + int dist; + struct task_struct *best_task; + long int best_imp; + int best_cpu; +}; + +struct energy_env { + long unsigned int task_busy_time; + long unsigned int pd_busy_time; + long unsigned int cpu_cap; + long unsigned int pd_cap; +}; + +enum fbq_type { + regular = 0, + remote = 1, + all = 2, +}; + +enum group_type { + group_has_spare = 0, + group_fully_busy = 1, + group_misfit_task = 2, + group_smt_balance = 3, + group_asym_packing = 4, + group_imbalanced = 5, + group_overloaded = 6, +}; + +enum migration_type { + migrate_load = 0, + migrate_util = 1, + migrate_task = 2, + migrate_misfit = 3, +}; + +struct lb_env { + struct sched_domain *sd; + struct rq *src_rq; + int src_cpu; + int dst_cpu; + struct rq *dst_rq; + struct cpumask *dst_grpmask; + int new_dst_cpu; + enum cpu_idle_type idle; + long int imbalance; + struct cpumask *cpus; + unsigned int flags; + unsigned int loop; + unsigned int loop_break; + unsigned int loop_max; + enum fbq_type fbq_type; + enum migration_type migration_type; + struct list_head tasks; +}; + +struct sg_lb_stats { + long unsigned int avg_load; + long unsigned int group_load; + long unsigned int group_capacity; + long unsigned int group_util; + long unsigned int group_runnable; + unsigned int sum_nr_running; + unsigned int sum_h_nr_running; + unsigned int idle_cpus; + unsigned int group_weight; + enum group_type group_type; + unsigned int group_asym_packing; + unsigned int group_smt_balance; + long unsigned int group_misfit_task_load; + unsigned int nr_numa_running; + unsigned int nr_preferred_running; +}; + +struct sd_lb_stats { + struct sched_group *busiest; + struct sched_group *local; + long unsigned int total_load; + long unsigned int total_capacity; + long unsigned int avg_load; + unsigned int prefer_sibling; + struct sg_lb_stats busiest_stat; + struct sg_lb_stats local_stat; +}; + +typedef struct { + void *lock; +} class_preempt_t; + +struct ww_acquire_ctx; + +struct ww_mutex { + struct mutex base; + struct ww_acquire_ctx *ctx; +}; + +struct ww_acquire_ctx { + struct task_struct *task; + long unsigned int stamp; + unsigned int acquired; + short unsigned int wounded; + short unsigned int is_wait_die; +}; + +typedef struct { + raw_spinlock_t *lock; + long unsigned int flags; +} class_raw_spinlock_irqsave_t; + +struct trace_print_flags { + long unsigned int mask; + const char *name; +}; + +struct wake_q_head { + struct wake_q_node *first; + struct wake_q_node **lastp; +}; + +struct trace_event_raw_contention_begin { + struct trace_entry ent; + void *lock_addr; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_contention_end { + struct trace_entry ent; + void *lock_addr; + int ret; + char __data[0]; +}; + +struct trace_event_data_offsets_contention_begin {}; + +struct trace_event_data_offsets_contention_end {}; + +typedef void (*btf_trace_contention_begin)(void *, void *, unsigned int); + +typedef void (*btf_trace_contention_end)(void *, void *, int); + +struct mutex_waiter { + struct list_head list; + struct task_struct *task; + struct ww_acquire_ctx *ww_ctx; +}; + +enum { + TASKSTATS_CMD_UNSPEC = 0, + TASKSTATS_CMD_GET = 1, + TASKSTATS_CMD_NEW = 2, + __TASKSTATS_CMD_MAX = 3, +}; + +struct pm_vt_switch { + struct list_head head; + struct device *dev; + bool required; +}; + +typedef int suspend_state_t; + +struct platform_hibernation_ops { + int (*begin)(pm_message_t); + void (*end)(void); + int (*pre_snapshot)(void); + void (*finish)(void); + int (*prepare)(void); + int (*enter)(void); + void (*leave)(void); + int (*pre_restore)(void); + void (*restore_cleanup)(void); + void (*recover)(void); +}; + +enum lockdown_reason { + LOCKDOWN_NONE = 0, + LOCKDOWN_MODULE_SIGNATURE = 1, + LOCKDOWN_DEV_MEM = 2, + LOCKDOWN_EFI_TEST = 3, + LOCKDOWN_KEXEC = 4, + LOCKDOWN_HIBERNATION = 5, + LOCKDOWN_PCI_ACCESS = 6, + LOCKDOWN_IOPORT = 7, + LOCKDOWN_MSR = 8, + LOCKDOWN_ACPI_TABLES = 9, + LOCKDOWN_DEVICE_TREE = 10, + LOCKDOWN_PCMCIA_CIS = 11, + LOCKDOWN_TIOCSSERIAL = 12, + LOCKDOWN_MODULE_PARAMETERS = 13, + LOCKDOWN_MMIOTRACE = 14, + LOCKDOWN_DEBUGFS = 15, + LOCKDOWN_XMON_WR = 16, + LOCKDOWN_BPF_WRITE_USER = 17, + LOCKDOWN_DBG_WRITE_KERNEL = 18, + LOCKDOWN_RTAS_ERROR_INJECTION = 19, + LOCKDOWN_INTEGRITY_MAX = 20, + LOCKDOWN_KCORE = 21, + LOCKDOWN_KPROBES = 22, + LOCKDOWN_BPF_READ_KERNEL = 23, + LOCKDOWN_DBG_READ_KERNEL = 24, + LOCKDOWN_PERF = 25, + LOCKDOWN_TRACEFS = 26, + LOCKDOWN_XMON_RW = 27, + LOCKDOWN_XFRM_SECRET = 28, + LOCKDOWN_CONFIDENTIALITY_MAX = 29, +}; + +enum { + TEST_NONE = 0, + TEST_CORE = 1, + TEST_CPUS = 2, + TEST_PLATFORM = 3, + TEST_DEVICES = 4, + TEST_FREEZER = 5, + __TEST_AFTER_LAST = 6, +}; + +enum { + HIBERNATION_INVALID = 0, + HIBERNATION_PLATFORM = 1, + HIBERNATION_SHUTDOWN = 2, + HIBERNATION_REBOOT = 3, + HIBERNATION_SUSPEND = 4, + HIBERNATION_TEST_RESUME = 5, + __HIBERNATION_AFTER_LAST = 6, +}; + +struct sysrq_key_op { + void (* const handler)(u8); + const char * const help_msg; + const char * const action_msg; + const int enable_mask; +}; + +struct em_data_callback { + int (*active_power)(struct device *, long unsigned int *, long unsigned int *); + int (*get_cost)(struct device *, long unsigned int, long unsigned int *); +}; + +enum cpufreq_table_sorting { + CPUFREQ_TABLE_UNSORTED = 0, + CPUFREQ_TABLE_SORTED_ASCENDING = 1, + CPUFREQ_TABLE_SORTED_DESCENDING = 2, +}; + +struct cpufreq_cpuinfo { + unsigned int max_freq; + unsigned int min_freq; + unsigned int transition_latency; +}; + +struct clk; + +struct cpufreq_governor; + +struct cpufreq_frequency_table; + +struct cpufreq_stats; + +struct thermal_cooling_device; + +struct cpufreq_policy { + cpumask_var_t cpus; + cpumask_var_t related_cpus; + cpumask_var_t real_cpus; + unsigned int shared_type; + unsigned int cpu; + struct clk *clk; + struct cpufreq_cpuinfo cpuinfo; + unsigned int min; + unsigned int max; + unsigned int cur; + unsigned int suspend_freq; + unsigned int policy; + unsigned int last_policy; + struct cpufreq_governor *governor; + void *governor_data; + char last_governor[16]; + struct work_struct update; + struct freq_constraints constraints; + struct freq_qos_request *min_freq_req; + struct freq_qos_request *max_freq_req; + struct cpufreq_frequency_table *freq_table; + enum cpufreq_table_sorting freq_table_sorted; + struct list_head policy_list; + struct kobject kobj; + struct completion kobj_unregister; + struct rw_semaphore rwsem; + bool fast_switch_possible; + bool fast_switch_enabled; + bool strict_target; + bool efficiencies_available; + unsigned int transition_delay_us; + bool dvfs_possible_from_any_cpu; + bool boost_enabled; + bool boost_supported; + unsigned int cached_target_freq; + unsigned int cached_resolved_idx; + bool transition_ongoing; + spinlock_t transition_lock; + wait_queue_head_t transition_wait; + struct task_struct *transition_task; + struct cpufreq_stats *stats; + void *driver_data; + struct thermal_cooling_device *cdev; + struct notifier_block nb_min; + struct notifier_block nb_max; +}; + +struct cpufreq_governor { + char name[16]; + int (*init)(struct cpufreq_policy *); + void (*exit)(struct cpufreq_policy *); + int (*start)(struct cpufreq_policy *); + void (*stop)(struct cpufreq_policy *); + void (*limits)(struct cpufreq_policy *); + ssize_t (*show_setspeed)(struct cpufreq_policy *, char *); + int (*store_setspeed)(struct cpufreq_policy *, unsigned int); + struct list_head governor_list; + struct module *owner; + u8 flags; +}; + +struct cpufreq_frequency_table { + unsigned int flags; + unsigned int driver_data; + unsigned int frequency; +}; + +struct em_dbg_info { + struct em_perf_domain *pd; + int ps_id; +}; + +enum hrtimer_base_type { + HRTIMER_BASE_MONOTONIC = 0, + HRTIMER_BASE_REALTIME = 1, + HRTIMER_BASE_BOOTTIME = 2, + HRTIMER_BASE_TAI = 3, + HRTIMER_BASE_MONOTONIC_SOFT = 4, + HRTIMER_BASE_REALTIME_SOFT = 5, + HRTIMER_BASE_BOOTTIME_SOFT = 6, + HRTIMER_BASE_TAI_SOFT = 7, + HRTIMER_MAX_CLOCK_BASES = 8, +}; + +typedef struct { + raw_spinlock_t *lock; +} class_raw_spinlock_irq_t; + +typedef struct { + void *lock; +} class_rcu_t; + +struct kernel_stat { + long unsigned int irqs_sum; + unsigned int softirqs[10]; +}; + +enum { + IRQS_AUTODETECT = 1, + IRQS_SPURIOUS_DISABLED = 2, + IRQS_POLL_INPROGRESS = 8, + IRQS_ONESHOT = 32, + IRQS_REPLAY = 64, + IRQS_WAITING = 128, + IRQS_PENDING = 512, + IRQS_SUSPENDED = 2048, + IRQS_TIMINGS = 4096, + IRQS_NMI = 8192, + IRQS_SYSFS = 16384, +}; + +enum { + _IRQ_DEFAULT_INIT_FLAGS = 0, + _IRQ_PER_CPU = 512, + _IRQ_LEVEL = 256, + _IRQ_NOPROBE = 1024, + _IRQ_NOREQUEST = 2048, + _IRQ_NOTHREAD = 65536, + _IRQ_NOAUTOEN = 4096, + _IRQ_NO_BALANCING = 8192, + _IRQ_NESTED_THREAD = 32768, + _IRQ_PER_CPU_DEVID = 131072, + _IRQ_IS_POLLED = 262144, + _IRQ_DISABLE_UNLAZY = 524288, + _IRQ_HIDDEN = 1048576, + _IRQ_NO_DEBUG = 2097152, + _IRQF_MODIFY_MASK = 2080527, +}; + +typedef struct { + raw_spinlock_t *lock; +} class_raw_spinlock_t; + +struct tasklet_struct { + struct tasklet_struct *next; + long unsigned int state; + atomic_t count; + bool use_callback; + union { + void (*func)(long unsigned int); + void (*callback)(struct tasklet_struct *); + }; + long unsigned int data; +}; + +enum { + TASKLET_STATE_SCHED = 0, + TASKLET_STATE_RUN = 1, +}; + +struct irq_sim_ops { + int (*irq_sim_irq_requested)(struct irq_domain *, irq_hw_number_t, void *); + void (*irq_sim_irq_released)(struct irq_domain *, irq_hw_number_t, void *); +}; + +struct irq_sim_work_ctx { + struct irq_work work; + unsigned int irq_count; + long unsigned int *pending; + struct irq_domain *domain; + struct irq_sim_ops ops; + void *user_data; +}; + +struct irq_sim_irq_ctx { + bool enabled; + struct irq_sim_work_ctx *work_ctx; +}; + +typedef void (*call_rcu_func_t)(struct callback_head *, rcu_callback_t); + +struct rcu_gp_oldstate { + long unsigned int rgos_norm; + long unsigned int rgos_exp; +}; + +typedef int (*task_call_f)(struct task_struct *, void *); + +struct rcu_cblist { + struct callback_head *head; + struct callback_head **tail; + long int len; +}; + +struct rcu_synchronize { + struct callback_head head; + struct completion completion; + struct rcu_gp_oldstate oldstate; +}; + +struct trace_event_raw_rcu_utilization { + struct trace_entry ent; + const char *s; + char __data[0]; +}; + +struct trace_event_raw_rcu_stall_warning { + struct trace_entry ent; + const char *rcuname; + const char *msg; + char __data[0]; +}; + +struct trace_event_data_offsets_rcu_utilization {}; + +struct trace_event_data_offsets_rcu_stall_warning {}; + +typedef void (*btf_trace_rcu_utilization)(void *, const char *); + +typedef void (*btf_trace_rcu_stall_warning)(void *, const char *, const char *); + +struct rcu_tasks; + +typedef void (*rcu_tasks_gp_func_t)(struct rcu_tasks *); + +typedef void (*pregp_func_t)(struct list_head *); + +typedef void (*pertask_func_t)(struct task_struct *, struct list_head *); + +typedef void (*postscan_func_t)(struct list_head *); + +typedef void (*holdouts_func_t)(struct list_head *, bool, bool *); + +typedef void (*postgp_func_t)(struct rcu_tasks *); + +struct rcu_tasks_percpu; + +struct rcu_tasks { + struct rcuwait cbs_wait; + raw_spinlock_t cbs_gbl_lock; + struct mutex tasks_gp_mutex; + int gp_state; + int gp_sleep; + int init_fract; + long unsigned int gp_jiffies; + long unsigned int gp_start; + long unsigned int tasks_gp_seq; + long unsigned int n_ipis; + long unsigned int n_ipis_fails; + struct task_struct *kthread_ptr; + long unsigned int lazy_jiffies; + rcu_tasks_gp_func_t gp_func; + pregp_func_t pregp_func; + pertask_func_t pertask_func; + postscan_func_t postscan_func; + holdouts_func_t holdouts_func; + postgp_func_t postgp_func; + call_rcu_func_t call_func; + unsigned int wait_state; + struct rcu_tasks_percpu *rtpcpu; + struct rcu_tasks_percpu **rtpcp_array; + int percpu_enqueue_shift; + int percpu_enqueue_lim; + int percpu_dequeue_lim; + long unsigned int percpu_dequeue_gpseq; + struct mutex barrier_q_mutex; + atomic_t barrier_q_count; + struct completion barrier_q_completion; + long unsigned int barrier_q_seq; + long unsigned int barrier_q_start; + char *name; + char *kname; +}; + +struct rcu_tasks_percpu { + struct rcu_segcblist cblist; + raw_spinlock_t lock; + long unsigned int rtp_jiffies; + long unsigned int rtp_n_lock_retries; + struct timer_list lazy_timer; + unsigned int urgent_gp; + struct work_struct rtp_work; + struct irq_work rtp_irq_work; + struct callback_head barrier_q_head; + struct list_head rtp_blkd_tasks; + struct list_head rtp_exit_list; + int cpu; + int index; + struct rcu_tasks *rtpp; +}; + +struct trc_stall_chk_rdr { + int nesting; + int ipi_to_cpu; + u8 needqs; +}; + +typedef int (*klp_shadow_ctor_t)(void *, void *, void *); + +typedef void (*klp_shadow_dtor_t)(void *, void *); + +struct klp_shadow { + struct hlist_node node; + struct callback_head callback_head; + void *obj; + long unsigned int id; + char data[0]; +}; + +struct klp_func { + const char *old_name; + void *new_func; + long unsigned int old_sympos; + void *old_func; + struct kobject kobj; + struct list_head node; + struct list_head stack_node; + long unsigned int old_size; + long unsigned int new_size; + bool nop; + bool patched; + bool transition; +}; + +struct klp_object; + +struct klp_callbacks { + int (*pre_patch)(struct klp_object *); + void (*post_patch)(struct klp_object *); + void (*pre_unpatch)(struct klp_object *); + void (*post_unpatch)(struct klp_object *); + bool post_unpatch_enabled; +}; + +struct klp_object { + const char *name; + struct klp_func *funcs; + struct klp_callbacks callbacks; + struct kobject kobj; + struct list_head func_list; + struct list_head node; + struct module *mod; + bool dynamic; + bool patched; +}; + +struct klp_state { + long unsigned int id; + unsigned int version; + void *data; +}; + +struct klp_patch { + struct module *mod; + struct klp_object *objs; + struct klp_state *states; + bool replace; + struct list_head list; + struct kobject kobj; + struct list_head obj_list; + bool enabled; + bool forced; + struct work_struct free_work; + struct completion finish; +}; + +enum pci_p2pdma_map_type { + PCI_P2PDMA_MAP_UNKNOWN = 0, + PCI_P2PDMA_MAP_NONE = 1, + PCI_P2PDMA_MAP_NOT_SUPPORTED = 2, + PCI_P2PDMA_MAP_BUS_ADDR = 3, + PCI_P2PDMA_MAP_THRU_HOST_BRIDGE = 4, +}; + +struct pci_p2pdma_map_state { + struct dev_pagemap *pgmap; + enum pci_p2pdma_map_type map; + u64 bus_off; +}; + +struct debugfs_u32_array { + u32 *array; + u32 n_elements; +}; + +struct cma_memrange { + long unsigned int base_pfn; + long unsigned int count; + union { + long unsigned int early_pfn; + long unsigned int *bitmap; + }; + struct debugfs_u32_array dfs_bitmap; +}; + +struct cma_kobject; + +struct cma { + long unsigned int count; + long unsigned int available_count; + unsigned int order_per_bit; + spinlock_t lock; + struct mutex alloc_mutex; + struct hlist_head mem_head; + spinlock_t mem_head_lock; + char name[64]; + int nranges; + struct cma_memrange ranges[8]; + atomic64_t nr_pages_succeeded; + atomic64_t nr_pages_failed; + atomic64_t nr_pages_released; + struct cma_kobject *cma_kobj; + long unsigned int flags; + int nid; +}; + +typedef struct { + void *lock; +} class_rcu_tasks_trace_t; + +struct trace_event_raw_sys_enter { + struct trace_entry ent; + long int id; + long unsigned int args[6]; + char __data[0]; +}; + +struct trace_event_raw_sys_exit { + struct trace_entry ent; + long int id; + long int ret; + char __data[0]; +}; + +struct trace_event_data_offsets_sys_enter {}; + +struct trace_event_data_offsets_sys_exit {}; + +typedef void (*btf_trace_sys_enter)(void *, struct pt_regs *, long int); + +typedef void (*btf_trace_sys_exit)(void *, struct pt_regs *, long int); + +struct load_info { + const char *name; + struct module *mod; + Elf64_Ehdr *hdr; + long unsigned int len; + Elf64_Shdr *sechdrs; + char *secstrings; + char *strtab; + long unsigned int symoffs; + long unsigned int stroffs; + long unsigned int init_typeoffs; + long unsigned int core_typeoffs; + bool sig_ok; + long unsigned int mod_kallsyms_init_off; + struct page **pages; + unsigned int max_pages; + unsigned int used_pages; + struct { + unsigned int sym; + unsigned int str; + unsigned int mod; + unsigned int vers; + unsigned int info; + unsigned int pcpu; + unsigned int vers_ext_crc; + unsigned int vers_ext_name; + } index; +}; + +typedef enum { + ZSTD_error_no_error = 0, + ZSTD_error_GENERIC = 1, + ZSTD_error_prefix_unknown = 10, + ZSTD_error_version_unsupported = 12, + ZSTD_error_frameParameter_unsupported = 14, + ZSTD_error_frameParameter_windowTooLarge = 16, + ZSTD_error_corruption_detected = 20, + ZSTD_error_checksum_wrong = 22, + ZSTD_error_literals_headerWrong = 24, + ZSTD_error_dictionary_corrupted = 30, + ZSTD_error_dictionary_wrong = 32, + ZSTD_error_dictionaryCreation_failed = 34, + ZSTD_error_parameter_unsupported = 40, + ZSTD_error_parameter_combination_unsupported = 41, + ZSTD_error_parameter_outOfBound = 42, + ZSTD_error_tableLog_tooLarge = 44, + ZSTD_error_maxSymbolValue_tooLarge = 46, + ZSTD_error_maxSymbolValue_tooSmall = 48, + ZSTD_error_cannotProduce_uncompressedBlock = 49, + ZSTD_error_stabilityCondition_notRespected = 50, + ZSTD_error_stage_wrong = 60, + ZSTD_error_init_missing = 62, + ZSTD_error_memory_allocation = 64, + ZSTD_error_workSpace_tooSmall = 66, + ZSTD_error_dstSize_tooSmall = 70, + ZSTD_error_srcSize_wrong = 72, + ZSTD_error_dstBuffer_null = 74, + ZSTD_error_noForwardProgress_destFull = 80, + ZSTD_error_noForwardProgress_inputEmpty = 82, + ZSTD_error_frameIndex_tooLarge = 100, + ZSTD_error_seekableIO = 102, + ZSTD_error_dstBuffer_wrong = 104, + ZSTD_error_srcBuffer_wrong = 105, + ZSTD_error_sequenceProducer_failed = 106, + ZSTD_error_externalSequences_invalid = 107, + ZSTD_error_maxCode = 120, +} ZSTD_ErrorCode; + +typedef u16 uint16_t; + +typedef uint16_t U16; + +typedef uint8_t BYTE; + +typedef uint32_t U32; + +typedef struct { + U16 nextState; + BYTE nbAdditionalBits; + BYTE nbBits; + U32 baseValue; +} ZSTD_seqSymbol; + +typedef U32 HUF_DTable; + +typedef struct { + ZSTD_seqSymbol LLTable[513]; + ZSTD_seqSymbol OFTable[257]; + ZSTD_seqSymbol MLTable[513]; + HUF_DTable hufTable[4097]; + U32 rep[3]; + U32 workspace[157]; +} ZSTD_entropyDTables_t; + +typedef enum { + ZSTD_frame = 0, + ZSTD_skippableFrame = 1, +} ZSTD_FrameType_e; + +typedef struct { + long long unsigned int frameContentSize; + long long unsigned int windowSize; + unsigned int blockSizeMax; + ZSTD_FrameType_e frameType; + unsigned int headerSize; + unsigned int dictID; + unsigned int checksumFlag; + unsigned int _reserved1; + unsigned int _reserved2; +} ZSTD_FrameHeader; + +typedef uint64_t U64; + +typedef enum { + bt_raw = 0, + bt_rle = 1, + bt_compressed = 2, + bt_reserved = 3, +} blockType_e; + +typedef enum { + ZSTDds_getFrameHeaderSize = 0, + ZSTDds_decodeFrameHeader = 1, + ZSTDds_decodeBlockHeader = 2, + ZSTDds_decompressBlock = 3, + ZSTDds_decompressLastBlock = 4, + ZSTDds_checkChecksum = 5, + ZSTDds_decodeSkippableHeader = 6, + ZSTDds_skipFrame = 7, +} ZSTD_dStage; + +struct xxh64_state { + uint64_t total_len; + uint64_t v1; + uint64_t v2; + uint64_t v3; + uint64_t v4; + uint64_t mem64[4]; + uint32_t memsize; +}; + +typedef enum { + ZSTD_f_zstd1 = 0, + ZSTD_f_zstd1_magicless = 1, +} ZSTD_format_e; + +typedef enum { + ZSTD_d_validateChecksum = 0, + ZSTD_d_ignoreChecksum = 1, +} ZSTD_forceIgnoreChecksum_e; + +typedef void * (*ZSTD_allocFunction)(void *, size_t); + +typedef void (*ZSTD_freeFunction)(void *, void *); + +typedef struct { + ZSTD_allocFunction customAlloc; + ZSTD_freeFunction customFree; + void *opaque; +} ZSTD_customMem; + +typedef enum { + ZSTD_use_indefinitely = -1, + ZSTD_dont_use = 0, + ZSTD_use_once = 1, +} ZSTD_dictUses_e; + +struct ZSTD_DDict_s; + +typedef struct ZSTD_DDict_s ZSTD_DDict; + +typedef struct { + const ZSTD_DDict **ddictPtrTable; + size_t ddictPtrTableSize; + size_t ddictPtrCount; +} ZSTD_DDictHashSet; + +typedef enum { + ZSTD_rmd_refSingleDDict = 0, + ZSTD_rmd_refMultipleDDicts = 1, +} ZSTD_refMultipleDDicts_e; + +typedef enum { + zdss_init = 0, + zdss_loadHeader = 1, + zdss_read = 2, + zdss_load = 3, + zdss_flush = 4, +} ZSTD_dStreamStage; + +typedef enum { + ZSTD_bm_buffered = 0, + ZSTD_bm_stable = 1, +} ZSTD_bufferMode_e; + +struct ZSTD_outBuffer_s { + void *dst; + size_t size; + size_t pos; +}; + +typedef struct ZSTD_outBuffer_s ZSTD_outBuffer; + +typedef enum { + ZSTD_not_in_dst = 0, + ZSTD_in_dst = 1, + ZSTD_split = 2, +} ZSTD_litLocation_e; + +struct ZSTD_DCtx_s { + const ZSTD_seqSymbol *LLTptr; + const ZSTD_seqSymbol *MLTptr; + const ZSTD_seqSymbol *OFTptr; + const HUF_DTable *HUFptr; + ZSTD_entropyDTables_t entropy; + U32 workspace[640]; + const void *previousDstEnd; + const void *prefixStart; + const void *virtualStart; + const void *dictEnd; + size_t expected; + ZSTD_FrameHeader fParams; + U64 processedCSize; + U64 decodedSize; + blockType_e bType; + ZSTD_dStage stage; + U32 litEntropy; + U32 fseEntropy; + struct xxh64_state xxhState; + size_t headerSize; + ZSTD_format_e format; + ZSTD_forceIgnoreChecksum_e forceIgnoreChecksum; + U32 validateChecksum; + const BYTE *litPtr; + ZSTD_customMem customMem; + size_t litSize; + size_t rleSize; + size_t staticSize; + int isFrameDecompression; + int bmi2; + ZSTD_DDict *ddictLocal; + const ZSTD_DDict *ddict; + U32 dictID; + int ddictIsCold; + ZSTD_dictUses_e dictUses; + ZSTD_DDictHashSet *ddictSet; + ZSTD_refMultipleDDicts_e refMultipleDDicts; + int disableHufAsm; + int maxBlockSizeParam; + ZSTD_dStreamStage streamStage; + char *inBuff; + size_t inBuffSize; + size_t inPos; + size_t maxWindowSize; + char *outBuff; + size_t outBuffSize; + size_t outStart; + size_t outEnd; + size_t lhSize; + U32 hostageByte; + int noForwardProgress; + ZSTD_bufferMode_e outBufferMode; + ZSTD_outBuffer expectedOutBuffer; + BYTE *litBuffer; + const BYTE *litBufferEnd; + ZSTD_litLocation_e litBufferLocation; + BYTE litExtraBuffer[65568]; + BYTE headerBuffer[18]; + size_t oversizedDuration; +}; + +typedef struct ZSTD_DCtx_s ZSTD_DCtx; + +struct ZSTD_inBuffer_s { + const void *src; + size_t size; + size_t pos; +}; + +typedef struct ZSTD_inBuffer_s ZSTD_inBuffer; + +typedef ZSTD_DCtx ZSTD_DStream; + +typedef ZSTD_ErrorCode zstd_error_code; + +typedef ZSTD_inBuffer zstd_in_buffer; + +typedef ZSTD_outBuffer zstd_out_buffer; + +typedef ZSTD_DStream zstd_dstream; + +typedef ZSTD_FrameHeader zstd_frame_header; + +enum mod_mem_type { + MOD_TEXT = 0, + MOD_DATA = 1, + MOD_RODATA = 2, + MOD_RO_AFTER_INIT = 3, + MOD_INIT_TEXT = 4, + MOD_INIT_DATA = 5, + MOD_INIT_RODATA = 6, + MOD_MEM_NUM_TYPES = 7, + MOD_INVALID = -1, +}; + +enum { + PROC_ENTRY_PERMANENT = 1, + PROC_ENTRY_proc_read_iter = 2, + PROC_ENTRY_proc_compat_ioctl = 4, + PROC_ENTRY_proc_lseek = 8, + PROC_ENTRY_FORCE_LOOKUP = 128, +}; + +struct proc_ops { + unsigned int proc_flags; + int (*proc_open)(struct inode *, struct file *); + ssize_t (*proc_read)(struct file *, char *, size_t, loff_t *); + ssize_t (*proc_read_iter)(struct kiocb *, struct iov_iter *); + ssize_t (*proc_write)(struct file *, const char *, size_t, loff_t *); + loff_t (*proc_lseek)(struct file *, loff_t, int); + int (*proc_release)(struct inode *, struct file *); + __poll_t (*proc_poll)(struct file *, struct poll_table_struct *); + long int (*proc_ioctl)(struct file *, unsigned int, long unsigned int); + long int (*proc_compat_ioctl)(struct file *, unsigned int, long unsigned int); + int (*proc_mmap)(struct file *, struct vm_area_struct *); + long unsigned int (*proc_get_unmapped_area)(struct file *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); +}; + +struct module_use { + struct list_head source_list; + struct list_head target_list; + struct module *source; + struct module *target; +}; + +struct modversion_info { + long unsigned int crc; + char name[56]; +}; + +enum mod_license { + NOT_GPL_ONLY = 0, + GPL_ONLY = 1, +}; + +struct find_symbol_arg { + const char *name; + bool gplok; + bool warn; + struct module *owner; + const u32 *crc; + const struct kernel_symbol *sym; + enum mod_license license; +}; + +struct modversion_info_ext { + size_t remaining; + const u32 *crc; + const char *name; +}; + +typedef bool (*stack_trace_consume_fn)(void *, long unsigned int); + +struct stacktrace_cookie { + long unsigned int *store; + unsigned int size; + unsigned int skip; + unsigned int len; +}; + +struct hrtimer_sleeper { + struct hrtimer timer; + struct task_struct *task; +}; + +typedef s64 int64_t; + +enum clocksource_ids { + CSID_GENERIC = 0, + CSID_ARM_ARCH_COUNTER = 1, + CSID_S390_TOD = 2, + CSID_X86_TSC_EARLY = 3, + CSID_X86_TSC = 4, + CSID_X86_KVM_CLK = 5, + CSID_X86_ART = 6, + CSID_MAX = 7, +}; + +struct clocksource_base; + +struct clocksource { + u64 (*read)(struct clocksource *); + u64 mask; + u32 mult; + u32 shift; + u64 max_idle_ns; + u32 maxadj; + u32 uncertainty_margin; + u64 max_cycles; + u64 max_raw_delta; + const char *name; + struct list_head list; + u32 freq_khz; + int rating; + enum clocksource_ids id; + enum vdso_clock_mode vdso_clock_mode; + long unsigned int flags; + struct clocksource_base *base; + int (*enable)(struct clocksource *); + void (*disable)(struct clocksource *); + void (*suspend)(struct clocksource *); + void (*resume)(struct clocksource *); + void (*mark_unstable)(struct clocksource *); + void (*tick_stable)(struct clocksource *); + struct list_head wd_list; + u64 cs_last; + u64 wd_last; + struct module *owner; +}; + +struct clocksource_base { + enum clocksource_ids id; + u32 freq_khz; + u64 offset; + u32 numerator; + u32 denominator; +}; + +enum wd_read_status { + WD_READ_SUCCESS = 0, + WD_READ_UNSTABLE = 1, + WD_READ_SKIP = 2, +}; + +typedef __kernel_timer_t timer_t; + +struct sigqueue { + struct list_head list; + int flags; + kernel_siginfo_t info; + struct ucounts *ucounts; +}; + +struct itimerspec64 { + struct timespec64 it_interval; + struct timespec64 it_value; +}; + +struct __kernel_timex_timeval { + __kernel_time64_t tv_sec; + long long int tv_usec; +}; + +struct __kernel_timex { + unsigned int modes; + long long int offset; + long long int freq; + long long int maxerror; + long long int esterror; + int status; + long long int constant; + long long int precision; + long long int tolerance; + struct __kernel_timex_timeval time; + long long int tick; + long long int ppsfreq; + long long int jitter; + int shift; + long long int stabil; + long long int jitcnt; + long long int calcnt; + long long int errcnt; + long long int stbcnt; + int tai; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum alarmtimer_type { + ALARM_REALTIME = 0, + ALARM_BOOTTIME = 1, + ALARM_NUMTYPE = 2, + ALARM_REALTIME_FREEZER = 3, + ALARM_BOOTTIME_FREEZER = 4, +}; + +struct alarm { + struct timerqueue_node node; + struct hrtimer timer; + void (*function)(struct alarm *, ktime_t); + enum alarmtimer_type type; + int state; + void *data; +}; + +struct cpu_timer { + struct timerqueue_node node; + struct timerqueue_head *head; + struct pid *pid; + struct list_head elist; + bool firing; + bool nanosleep; + struct task_struct *handling; +}; + +struct k_clock; + +struct k_itimer { + struct hlist_node t_hash; + struct hlist_node list; + timer_t it_id; + clockid_t it_clock; + int it_sigev_notify; + enum pid_type it_pid_type; + struct signal_struct *it_signal; + const struct k_clock *kclock; + spinlock_t it_lock; + int it_status; + bool it_sig_periodic; + s64 it_overrun; + s64 it_overrun_last; + unsigned int it_signal_seq; + unsigned int it_sigqueue_seq; + ktime_t it_interval; + struct hlist_node ignored_list; + union { + struct pid *it_pid; + struct task_struct *it_process; + }; + struct sigqueue sigq; + rcuref_t rcuref; + union { + struct { + struct hrtimer timer; + } real; + struct cpu_timer cpu; + struct { + struct alarm alarmtimer; + } alarm; + } it; + struct callback_head rcu; + long: 64; + long: 64; + long: 64; +}; + +struct k_clock { + int (*clock_getres)(const clockid_t, struct timespec64 *); + int (*clock_set)(const clockid_t, const struct timespec64 *); + int (*clock_get_timespec)(const clockid_t, struct timespec64 *); + ktime_t (*clock_get_ktime)(const clockid_t); + int (*clock_adj)(const clockid_t, struct __kernel_timex *); + int (*timer_create)(struct k_itimer *); + int (*nsleep)(const clockid_t, int, const struct timespec64 *); + int (*timer_set)(struct k_itimer *, int, struct itimerspec64 *, struct itimerspec64 *); + int (*timer_del)(struct k_itimer *); + void (*timer_get)(struct k_itimer *, struct itimerspec64 *); + void (*timer_rearm)(struct k_itimer *); + s64 (*timer_forward)(struct k_itimer *, ktime_t); + ktime_t (*timer_remaining)(struct k_itimer *, ktime_t); + int (*timer_try_to_cancel)(struct k_itimer *); + void (*timer_arm)(struct k_itimer *, ktime_t, bool, bool); + void (*timer_wait_running)(struct k_itimer *); +}; + +enum posix_timer_state { + POSIX_TIMER_DISARMED = 0, + POSIX_TIMER_ARMED = 1, + POSIX_TIMER_REQUEUE_PENDING = 2, +}; + +struct __kernel_old_itimerval { + struct __kernel_old_timeval it_interval; + struct __kernel_old_timeval it_value; +}; + +struct old_itimerval32 { + struct old_timeval32 it_interval; + struct old_timeval32 it_value; +}; + +enum tick_device_mode { + TICKDEV_MODE_PERIODIC = 0, + TICKDEV_MODE_ONESHOT = 1, +}; + +struct tick_device { + struct clock_event_device *evtdev; + enum tick_device_mode mode; +}; + +struct proc_timens_offset { + int clockid; + struct timespec64 val; +}; + +struct timens_offset { + s64 sec; + u64 nsec; +}; + +struct arch_vdso_time_data {}; + +struct vdso_timestamp { + u64 sec; + u64 nsec; +}; + +struct vdso_clock { + u32 seq; + s32 clock_mode; + u64 cycle_last; + u64 max_cycles; + u64 mask; + u32 mult; + u32 shift; + union { + struct vdso_timestamp basetime[12]; + struct timens_offset offset[12]; + }; +}; + +struct vdso_time_data { + struct arch_vdso_time_data arch_data; + struct vdso_clock clock_data[2]; + struct vdso_clock aux_clock_data[8]; + s32 tz_minuteswest; + s32 tz_dsttime; + u32 hrtimer_res; + u32 __unused; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct rt_mutex_base { + raw_spinlock_t wait_lock; + struct rb_root_cached waiters; + struct task_struct *owner; +}; + +union futex_key { + struct { + u64 i_seq; + long unsigned int pgoff; + unsigned int offset; + } shared; + struct { + union { + struct mm_struct *mm; + u64 __tmp; + }; + long unsigned int address; + unsigned int offset; + } private; + struct { + u64 ptr; + long unsigned int word; + unsigned int offset; + unsigned int node; + } both; +}; + +struct futex_pi_state { + struct list_head list; + struct rt_mutex_base pi_mutex; + struct task_struct *owner; + refcount_t refcount; + union futex_key key; +}; + +typedef u32 compat_size_t; + +struct futex_waitv { + __u64 val; + __u64 uaddr; + __u32 flags; + __u32 __reserved; +}; + +struct futex_q; + +typedef void futex_wake_fn(struct wake_q_head *, struct futex_q *); + +struct futex_q { + struct plist_node list; + struct task_struct *task; + spinlock_t *lock_ptr; + futex_wake_fn *wake; + void *wake_data; + union futex_key key; + struct futex_pi_state *pi_state; + struct rt_mutex_waiter *rt_waiter; + union futex_key *requeue_pi_key; + u32 bitset; + atomic_t requeue_state; + bool drop_hb_ref; +}; + +struct futex_vector { + struct futex_waitv w; + struct futex_q q; +}; + +struct trace_event_raw_csd_queue_cpu { + struct trace_entry ent; + unsigned int cpu; + void *callsite; + void *func; + void *csd; + char __data[0]; +}; + +struct trace_event_raw_csd_function { + struct trace_entry ent; + void *func; + void *csd; + char __data[0]; +}; + +struct trace_event_data_offsets_csd_queue_cpu {}; + +struct trace_event_data_offsets_csd_function {}; + +typedef void (*btf_trace_csd_queue_cpu)(void *, const unsigned int, long unsigned int, smp_call_func_t, call_single_data_t *); + +typedef void (*btf_trace_csd_function_entry)(void *, smp_call_func_t, call_single_data_t *); + +typedef void (*btf_trace_csd_function_exit)(void *, smp_call_func_t, call_single_data_t *); + +struct call_function_data { + call_single_data_t *csd; + cpumask_var_t cpumask; + cpumask_var_t cpumask_ipi; +}; + +struct smp_call_on_cpu_struct { + struct work_struct work; + struct completion done; + int (*func)(void *); + void *data; + int ret; + int cpu; +}; + +enum key_need_perm { + KEY_NEED_UNSPECIFIED = 0, + KEY_NEED_VIEW = 1, + KEY_NEED_READ = 2, + KEY_NEED_WRITE = 3, + KEY_NEED_SEARCH = 4, + KEY_NEED_LINK = 5, + KEY_NEED_SETATTR = 6, + KEY_NEED_UNLINK = 7, + KEY_SYSADMIN_OVERRIDE = 8, + KEY_AUTHTOKEN_OVERRIDE = 9, + KEY_DEFER_PERM_CHECK = 10, +}; + +struct __key_reference_with_attributes; + +typedef struct __key_reference_with_attributes *key_ref_t; + +struct user_key_payload { + struct callback_head rcu; + short unsigned int datalen; + long: 0; + char data[0]; +}; + +struct config_group; + +struct config_item_type; + +struct config_item { + char *ci_name; + char ci_namebuf[20]; + struct kref ci_kref; + struct list_head ci_entry; + struct config_item *ci_parent; + struct config_group *ci_group; + const struct config_item_type *ci_type; + struct dentry *ci_dentry; +}; + +struct configfs_subsystem; + +struct config_group { + struct config_item cg_item; + struct list_head cg_children; + struct configfs_subsystem *cg_subsys; + struct list_head default_groups; + struct list_head group_entry; +}; + +struct configfs_item_operations; + +struct configfs_group_operations; + +struct configfs_attribute; + +struct configfs_bin_attribute; + +struct config_item_type { + struct module *ct_owner; + struct configfs_item_operations *ct_item_ops; + struct configfs_group_operations *ct_group_ops; + struct configfs_attribute **ct_attrs; + struct configfs_bin_attribute **ct_bin_attrs; +}; + +struct configfs_item_operations { + void (*release)(struct config_item *); + int (*allow_link)(struct config_item *, struct config_item *); + void (*drop_link)(struct config_item *, struct config_item *); +}; + +struct configfs_group_operations { + struct config_item * (*make_item)(struct config_group *, const char *); + struct config_group * (*make_group)(struct config_group *, const char *); + void (*disconnect_notify)(struct config_group *, struct config_item *); + void (*drop_item)(struct config_group *, struct config_item *); + bool (*is_visible)(struct config_item *, struct configfs_attribute *, int); + bool (*is_bin_visible)(struct config_item *, struct configfs_bin_attribute *, int); +}; + +struct configfs_attribute { + const char *ca_name; + struct module *ca_owner; + umode_t ca_mode; + ssize_t (*show)(struct config_item *, char *); + ssize_t (*store)(struct config_item *, const char *, size_t); +}; + +struct configfs_bin_attribute { + struct configfs_attribute cb_attr; + void *cb_private; + size_t cb_max_size; + ssize_t (*read)(struct config_item *, void *, size_t); + ssize_t (*write)(struct config_item *, const void *, size_t); +}; + +struct configfs_subsystem { + struct config_group su_group; + struct mutex su_mutex; +}; + +struct dm_crypt_key { + unsigned int key_size; + char key_desc[128]; + u8 data[256]; +}; + +struct keys_header { + unsigned int total_keys; + struct dm_crypt_key keys[0]; +}; + +struct config_key { + struct config_item item; + const char *description; +}; + +enum key_being_used_for { + VERIFYING_MODULE_SIGNATURE = 0, + VERIFYING_FIRMWARE_SIGNATURE = 1, + VERIFYING_KEXEC_PE_SIGNATURE = 2, + VERIFYING_KEY_SIGNATURE = 3, + VERIFYING_KEY_SELF_SIGNATURE = 4, + VERIFYING_UNSPECIFIED_SIGNATURE = 5, + NR__KEY_BEING_USED_FOR = 6, +}; + +struct memblock_region { + phys_addr_t base; + phys_addr_t size; + enum memblock_flags flags; + int nid; +}; + +struct memblock_type { + long unsigned int cnt; + long unsigned int max; + phys_addr_t total_size; + struct memblock_region *regions; + char *name; +}; + +struct memblock { + bool bottom_up; + phys_addr_t current_limit; + struct memblock_type memory; + struct memblock_type reserved; +}; + +enum kernel_read_file_id { + READING_UNKNOWN = 0, + READING_FIRMWARE = 1, + READING_MODULE = 2, + READING_KEXEC_IMAGE = 3, + READING_KEXEC_INITRAMFS = 4, + READING_POLICY = 5, + READING_X509_CERTIFICATE = 6, + READING_MAX_ID = 7, +}; + +struct sha256_block_state { + u32 h[8]; +}; + +struct __sha256_ctx { + struct sha256_block_state state; + u64 bytecount; + u8 buf[64]; +}; + +struct sha256_ctx { + struct __sha256_ctx ctx; +}; + +struct kexec_sha_region { + long unsigned int start; + long unsigned int len; +}; + +struct cgroup_taskset { + struct list_head src_csets; + struct list_head dst_csets; + int nr_tasks; + int ssid; + struct list_head *csets; + struct css_set *cur_cset; + struct task_struct *cur_task; +}; + +enum { + __PERCPU_REF_ATOMIC = 1, + __PERCPU_REF_DEAD = 2, + __PERCPU_REF_ATOMIC_DEAD = 3, + __PERCPU_REF_FLAG_BITS = 2, +}; + +enum { + CSS_NO_REF = 1, + CSS_ONLINE = 2, + CSS_RELEASED = 4, + CSS_VISIBLE = 8, + CSS_DYING = 16, +}; + +enum { + CFTYPE_ONLY_ON_ROOT = 1, + CFTYPE_NOT_ON_ROOT = 2, + CFTYPE_NS_DELEGATABLE = 4, + CFTYPE_NO_PREFIX = 8, + CFTYPE_WORLD_WRITABLE = 16, + CFTYPE_DEBUG = 32, + __CFTYPE_ONLY_ON_DFL = 65536, + __CFTYPE_NOT_ON_DFL = 131072, + __CFTYPE_ADDED = 262144, +}; + +struct css_task_iter { + struct cgroup_subsys *ss; + unsigned int flags; + struct list_head *cset_pos; + struct list_head *cset_head; + struct list_head *tcset_pos; + struct list_head *tcset_head; + struct list_head *task_pos; + struct list_head *cur_tasks_head; + struct css_set *cur_cset; + struct css_set *cur_dcset; + struct task_struct *cur_task; + struct list_head iters_node; +}; + +enum freezer_state_flags { + CGROUP_FREEZER_ONLINE = 1, + CGROUP_FREEZING_SELF = 2, + CGROUP_FREEZING_PARENT = 4, + CGROUP_FROZEN = 8, + CGROUP_FREEZING = 6, +}; + +struct freezer { + struct cgroup_subsys_state css; + unsigned int state; +}; + +enum { + CGRP_ROOT_NOPREFIX = 2, + CGRP_ROOT_XATTR = 4, + CGRP_ROOT_NS_DELEGATE = 8, + CGRP_ROOT_FAVOR_DYNMODS = 16, + CGRP_ROOT_CPUSET_V2_MODE = 65536, + CGRP_ROOT_MEMORY_LOCAL_EVENTS = 131072, + CGRP_ROOT_MEMORY_RECURSIVE_PROT = 262144, + CGRP_ROOT_MEMORY_HUGETLB_ACCOUNTING = 524288, + CGRP_ROOT_PIDS_LOCAL_EVENTS = 1048576, +}; + +enum pidcg_event { + PIDCG_MAX = 0, + PIDCG_FORKFAIL = 1, + NR_PIDCG_EVENTS = 2, +}; + +struct pids_cgroup { + struct cgroup_subsys_state css; + atomic64_t counter; + atomic64_t limit; + int64_t watermark; + struct cgroup_file events_file; + struct cgroup_file events_local_file; + atomic64_t events[2]; + atomic64_t events_local[2]; +}; + +enum misc_res_type { + MISC_CG_RES_SEV = 0, + MISC_CG_RES_SEV_ES = 1, + MISC_CG_RES_TDX = 2, + MISC_CG_RES_TYPES = 3, +}; + +struct misc_res { + u64 max; + atomic64_t watermark; + atomic64_t usage; + atomic64_t events; + atomic64_t events_local; +}; + +struct misc_cg { + struct cgroup_subsys_state css; + struct cgroup_file events_file; + struct cgroup_file events_local_file; + struct misc_res res[3]; +}; + +typedef int __kernel_mqd_t; + +typedef __kernel_mqd_t mqd_t; + +enum audit_state { + AUDIT_STATE_DISABLED = 0, + AUDIT_STATE_BUILD = 1, + AUDIT_STATE_RECORD = 2, +}; + +struct audit_stamp { + struct timespec64 ctime; + unsigned int serial; +}; + +struct lsm_prop_selinux { + u32 secid; +}; + +struct smack_known; + +struct lsm_prop_smack { + struct smack_known *skp; +}; + +struct aa_label; + +struct lsm_prop_apparmor { + struct aa_label *label; +}; + +struct lsm_prop_bpf { + u32 secid; +}; + +struct lsm_prop { + struct lsm_prop_selinux selinux; + struct lsm_prop_smack smack; + struct lsm_prop_apparmor apparmor; + struct lsm_prop_bpf bpf; +}; + +struct audit_cap_data { + kernel_cap_t permitted; + kernel_cap_t inheritable; + union { + unsigned int fE; + kernel_cap_t effective; + }; + kernel_cap_t ambient; + kuid_t rootid; +}; + +struct audit_names { + struct list_head list; + struct filename *name; + int name_len; + bool hidden; + long unsigned int ino; + dev_t dev; + umode_t mode; + kuid_t uid; + kgid_t gid; + dev_t rdev; + struct lsm_prop oprop; + struct audit_cap_data fcap; + unsigned int fcap_ver; + unsigned char type; + bool should_free; +}; + +struct mq_attr { + __kernel_long_t mq_flags; + __kernel_long_t mq_maxmsg; + __kernel_long_t mq_msgsize; + __kernel_long_t mq_curmsgs; + __kernel_long_t __reserved[4]; +}; + +struct open_how { + __u64 flags; + __u64 mode; + __u64 resolve; +}; + +struct audit_ntp_val { + long long int oldval; + long long int newval; +}; + +struct audit_ntp_data { + struct audit_ntp_val vals[6]; +}; + +struct audit_proctitle { + int len; + char *value; +}; + +struct audit_aux_data; + +struct __kernel_sockaddr_storage; + +struct audit_tree_refs; + +struct audit_context { + int dummy; + enum { + AUDIT_CTX_UNUSED = 0, + AUDIT_CTX_SYSCALL = 1, + AUDIT_CTX_URING = 2, + } context; + enum audit_state state; + enum audit_state current_state; + struct audit_stamp stamp; + int major; + int uring_op; + long unsigned int argv[4]; + long int return_code; + u64 prio; + int return_valid; + struct audit_names preallocated_names[5]; + int name_count; + struct list_head names_list; + char *filterkey; + struct path pwd; + struct audit_aux_data *aux; + struct audit_aux_data *aux_pids; + struct __kernel_sockaddr_storage *sockaddr; + size_t sockaddr_len; + pid_t ppid; + kuid_t uid; + kuid_t euid; + kuid_t suid; + kuid_t fsuid; + kgid_t gid; + kgid_t egid; + kgid_t sgid; + kgid_t fsgid; + long unsigned int personality; + int arch; + pid_t target_pid; + kuid_t target_auid; + kuid_t target_uid; + unsigned int target_sessionid; + struct lsm_prop target_ref; + char target_comm[16]; + struct audit_tree_refs *trees; + struct audit_tree_refs *first_trees; + struct list_head killed_trees; + int tree_count; + int type; + union { + struct { + int nargs; + long int args[6]; + } socketcall; + struct { + kuid_t uid; + kgid_t gid; + umode_t mode; + struct lsm_prop oprop; + int has_perm; + uid_t perm_uid; + gid_t perm_gid; + umode_t perm_mode; + long unsigned int qbytes; + } ipc; + struct { + mqd_t mqdes; + struct mq_attr mqstat; + } mq_getsetattr; + struct { + mqd_t mqdes; + int sigev_signo; + } mq_notify; + struct { + mqd_t mqdes; + size_t msg_len; + unsigned int msg_prio; + struct timespec64 abs_timeout; + } mq_sendrecv; + struct { + int oflag; + umode_t mode; + struct mq_attr attr; + } mq_open; + struct { + pid_t pid; + struct audit_cap_data cap; + } capset; + struct { + int fd; + int flags; + } mmap; + struct open_how openat2; + struct { + int argc; + } execve; + struct { + const char *name; + } module; + struct { + struct audit_ntp_data ntp_data; + struct timespec64 tk_injoffset; + } time; + }; + int fds[2]; + struct audit_proctitle proctitle; +}; + +enum dentry_flags { + DCACHE_OP_HASH = 1, + DCACHE_OP_COMPARE = 2, + DCACHE_OP_REVALIDATE = 4, + DCACHE_OP_DELETE = 8, + DCACHE_OP_PRUNE = 16, + DCACHE_DISCONNECTED = 32, + DCACHE_REFERENCED = 64, + DCACHE_DONTCACHE = 128, + DCACHE_CANT_MOUNT = 256, + DCACHE_GENOCIDE = 512, + DCACHE_SHRINK_LIST = 1024, + DCACHE_OP_WEAK_REVALIDATE = 2048, + DCACHE_NFSFS_RENAMED = 4096, + DCACHE_FSNOTIFY_PARENT_WATCHED = 8192, + DCACHE_DENTRY_KILLED = 16384, + DCACHE_MOUNTED = 32768, + DCACHE_NEED_AUTOMOUNT = 65536, + DCACHE_MANAGE_TRANSIT = 131072, + DCACHE_LRU_LIST = 262144, + DCACHE_ENTRY_TYPE = 3670016, + DCACHE_MISS_TYPE = 0, + DCACHE_WHITEOUT_TYPE = 524288, + DCACHE_DIRECTORY_TYPE = 1048576, + DCACHE_AUTODIR_TYPE = 1572864, + DCACHE_REGULAR_TYPE = 2097152, + DCACHE_SPECIAL_TYPE = 2621440, + DCACHE_SYMLINK_TYPE = 3145728, + DCACHE_NOKEY_NAME = 4194304, + DCACHE_OP_REAL = 8388608, + DCACHE_PAR_LOOKUP = 16777216, + DCACHE_DENTRY_CURSOR = 33554432, + DCACHE_NORCU = 67108864, +}; + +struct fsnotify_mark_connector { + spinlock_t lock; + unsigned char type; + unsigned char prio; + short unsigned int flags; + union { + void *obj; + struct fsnotify_mark_connector *destroy_next; + }; + struct hlist_head list; +}; + +struct fsnotify_sb_info { + struct fsnotify_mark_connector *sb_marks; + atomic_long_t watched_objects[3]; +}; + +enum { + Audit_equal = 0, + Audit_not_equal = 1, + Audit_bitmask = 2, + Audit_bittest = 3, + Audit_lt = 4, + Audit_gt = 5, + Audit_le = 6, + Audit_ge = 7, + Audit_bad = 8, +}; + +struct audit_field; + +struct audit_watch; + +struct audit_tree; + +struct audit_fsnotify_mark; + +struct audit_krule { + u32 pflags; + u32 flags; + u32 listnr; + u32 action; + u32 mask[64]; + u32 buflen; + u32 field_count; + char *filterkey; + struct audit_field *fields; + struct audit_field *arch_f; + struct audit_field *inode_f; + struct audit_watch *watch; + struct audit_tree *tree; + struct audit_fsnotify_mark *exe; + struct list_head rlist; + struct list_head list; + u64 prio; +}; + +struct audit_field { + u32 type; + union { + u32 val; + kuid_t uid; + kgid_t gid; + struct { + char *lsm_str; + void *lsm_rule; + }; + }; + u32 op; +}; + +struct audit_parent; + +struct audit_watch { + refcount_t count; + dev_t dev; + char *path; + long unsigned int ino; + struct audit_parent *parent; + struct list_head wlist; + struct list_head rules; +}; + +struct fsnotify_group; + +struct fsnotify_iter_info; + +struct fsnotify_mark; + +struct fsnotify_event; + +struct fsnotify_ops { + int (*handle_event)(struct fsnotify_group *, u32, const void *, int, struct inode *, const struct qstr *, u32, struct fsnotify_iter_info *); + int (*handle_inode_event)(struct fsnotify_mark *, u32, struct inode *, struct inode *, const struct qstr *, u32); + void (*free_group_priv)(struct fsnotify_group *); + void (*freeing_mark)(struct fsnotify_mark *, struct fsnotify_group *); + void (*free_event)(struct fsnotify_group *, struct fsnotify_event *); + void (*free_mark)(struct fsnotify_mark *); +}; + +enum fsnotify_group_prio { + FSNOTIFY_PRIO_NORMAL = 0, + FSNOTIFY_PRIO_CONTENT = 1, + FSNOTIFY_PRIO_PRE_CONTENT = 2, + __FSNOTIFY_PRIO_NUM = 3, +}; + +struct inotify_group_private_data { + spinlock_t idr_lock; + struct idr idr; + struct ucounts *ucounts; +}; + +struct fanotify_group_private_data { + struct hlist_head *merge_hash; + struct list_head access_list; + wait_queue_head_t access_waitq; + int flags; + int f_flags; + struct ucounts *ucounts; + mempool_t error_events_pool; +}; + +struct fsnotify_group { + const struct fsnotify_ops *ops; + refcount_t refcnt; + spinlock_t notification_lock; + struct list_head notification_list; + wait_queue_head_t notification_waitq; + unsigned int q_len; + unsigned int max_events; + enum fsnotify_group_prio priority; + bool shutdown; + int flags; + unsigned int owner_flags; + struct mutex mark_mutex; + atomic_t user_waits; + struct list_head marks_list; + struct fasync_struct *fsn_fa; + struct fsnotify_event *overflow_event; + struct mem_cgroup *memcg; + struct user_namespace *user_ns; + union { + void *private; + struct inotify_group_private_data inotify_data; + struct fanotify_group_private_data fanotify_data; + }; +}; + +struct fsnotify_iter_info { + struct fsnotify_mark *marks[6]; + struct fsnotify_group *current_group; + unsigned int report_mask; + int srcu_idx; +}; + +struct fsnotify_mark { + __u32 mask; + refcount_t refcnt; + struct fsnotify_group *group; + struct list_head g_list; + spinlock_t lock; + struct hlist_node obj_list; + struct fsnotify_mark_connector *connector; + __u32 ignore_mask; + unsigned int flags; +}; + +struct fsnotify_event { + struct list_head list; +}; + +enum fsnotify_obj_type { + FSNOTIFY_OBJ_TYPE_ANY = -1, + FSNOTIFY_OBJ_TYPE_INODE = 0, + FSNOTIFY_OBJ_TYPE_VFSMOUNT = 1, + FSNOTIFY_OBJ_TYPE_SB = 2, + FSNOTIFY_OBJ_TYPE_MNTNS = 3, + FSNOTIFY_OBJ_TYPE_COUNT = 4, + FSNOTIFY_OBJ_TYPE_DETACHED = 4, +}; + +typedef short unsigned int __kernel_sa_family_t; + +struct __kernel_sockaddr_storage { + union { + struct { + __kernel_sa_family_t ss_family; + char __data[126]; + }; + void *__align; + }; +}; + +struct audit_entry { + struct list_head list; + struct callback_head rcu; + struct audit_krule rule; +}; + +struct audit_parent { + struct list_head watches; + struct fsnotify_mark mark; +}; + +typedef struct { + void *lock; +} class_jump_label_lock_t; + +typedef struct { + void *lock; +} class_cpus_read_lock_t; + +enum { + FTRACE_OPS_FL_ENABLED = 1, + FTRACE_OPS_FL_DYNAMIC = 2, + FTRACE_OPS_FL_SAVE_REGS = 4, + FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED = 8, + FTRACE_OPS_FL_RECURSION = 16, + FTRACE_OPS_FL_STUB = 32, + FTRACE_OPS_FL_INITIALIZED = 64, + FTRACE_OPS_FL_DELETED = 128, + FTRACE_OPS_FL_ADDING = 256, + FTRACE_OPS_FL_REMOVING = 512, + FTRACE_OPS_FL_MODIFYING = 1024, + FTRACE_OPS_FL_ALLOC_TRAMP = 2048, + FTRACE_OPS_FL_IPMODIFY = 4096, + FTRACE_OPS_FL_PID = 8192, + FTRACE_OPS_FL_RCU = 16384, + FTRACE_OPS_FL_TRACE_ARRAY = 32768, + FTRACE_OPS_FL_PERMANENT = 65536, + FTRACE_OPS_FL_DIRECT = 131072, + FTRACE_OPS_FL_SUBOP = 262144, + FTRACE_OPS_FL_GRAPH = 524288, +}; + +typedef void (*rethook_handler_t)(struct rethook_node *, void *, long unsigned int, struct pt_regs *); + +typedef u8 kprobe_opcode_t; + +struct kprobe; + +struct arch_specific_insn { + kprobe_opcode_t *insn; + unsigned int boostable: 1; + unsigned char size; + union { + unsigned char opcode; + struct { + unsigned char type; + } jcc; + struct { + unsigned char type; + unsigned char asize; + } loop; + struct { + unsigned char reg; + } indirect; + }; + s32 rel32; + void (*emulate_op)(struct kprobe *, struct pt_regs *); + int tp_len; +}; + +typedef int (*kprobe_pre_handler_t)(struct kprobe *, struct pt_regs *); + +typedef void (*kprobe_post_handler_t)(struct kprobe *, struct pt_regs *, long unsigned int); + +struct kprobe { + struct hlist_node hlist; + struct list_head list; + long unsigned int nmissed; + kprobe_opcode_t *addr; + const char *symbol_name; + unsigned int offset; + kprobe_pre_handler_t pre_handler; + kprobe_post_handler_t post_handler; + kprobe_opcode_t opcode; + struct arch_specific_insn ainsn; + u32 flags; +}; + +struct arch_optimized_insn { + kprobe_opcode_t copied_insn[4]; + kprobe_opcode_t *insn; + size_t size; +}; + +struct prev_kprobe { + struct kprobe *kp; + long unsigned int status; + long unsigned int old_flags; + long unsigned int saved_flags; +}; + +struct kprobe_ctlblk { + long unsigned int kprobe_status; + long unsigned int kprobe_old_flags; + long unsigned int kprobe_saved_flags; + struct prev_kprobe prev_kprobe; +}; + +struct kretprobe_instance; + +typedef int (*kretprobe_handler_t)(struct kretprobe_instance *, struct pt_regs *); + +struct kretprobe_instance { + struct rethook_node node; + char data[0]; +}; + +struct kretprobe { + struct kprobe kp; + kretprobe_handler_t handler; + kretprobe_handler_t entry_handler; + int maxactive; + int nmissed; + size_t data_size; + struct rethook *rh; +}; + +struct kretprobe_blackpoint { + const char *name; + void *addr; +}; + +struct kprobe_blacklist_entry { + struct list_head list; + long unsigned int start_addr; + long unsigned int end_addr; +}; + +struct kprobe_insn_cache { + struct mutex mutex; + void * (*alloc)(void); + void (*free)(void *); + const char *sym; + struct list_head pages; + size_t insn_size; + int nr_garbage; +}; + +struct optimized_kprobe { + struct kprobe kp; + struct list_head list; + struct arch_optimized_insn optinsn; +}; + +enum perf_record_ksymbol_type { + PERF_RECORD_KSYMBOL_TYPE_UNKNOWN = 0, + PERF_RECORD_KSYMBOL_TYPE_BPF = 1, + PERF_RECORD_KSYMBOL_TYPE_OOL = 2, + PERF_RECORD_KSYMBOL_TYPE_MAX = 3, +}; + +enum execmem_type { + EXECMEM_DEFAULT = 0, + EXECMEM_MODULE_TEXT = 0, + EXECMEM_KPROBES = 1, + EXECMEM_FTRACE = 2, + EXECMEM_BPF = 3, + EXECMEM_MODULE_DATA = 4, + EXECMEM_TYPE_MAX = 5, +}; + +struct kprobe_insn_page { + struct list_head list; + kprobe_opcode_t *insns; + struct kprobe_insn_cache *cache; + int nused; + int ngarbage; + char slot_used[0]; +}; + +enum kprobe_slot_state { + SLOT_CLEAN = 0, + SLOT_DIRTY = 1, + SLOT_USED = 2, +}; + +struct debuggerinfo_struct { + void *debuggerinfo; + struct task_struct *task; + int exception_state; + int ret_state; + int irq_depth; + int enter_kgdb; + bool rounding_up; +}; + +struct __ksymtab { + long unsigned int value; + const char *mod_name; + long unsigned int mod_start; + long unsigned int mod_end; + const char *sec_name; + long unsigned int sec_start; + long unsigned int sec_end; + const char *sym_name; + long unsigned int sym_start; + long unsigned int sym_end; +}; + +typedef struct __ksymtab kdb_symtab_t; + +typedef short unsigned int u_short; + +struct atomic_notifier_head { + spinlock_t lock; + struct notifier_block *head; +}; + +typedef unsigned int pipe_index_t; + +struct pipe_buffer; + +struct watch_queue; + +struct pipe_inode_info { + struct mutex mutex; + wait_queue_head_t rd_wait; + wait_queue_head_t wr_wait; + union { + long unsigned int head_tail; + struct { + pipe_index_t head; + pipe_index_t tail; + }; + }; + unsigned int max_usage; + unsigned int ring_size; + unsigned int nr_accounted; + unsigned int readers; + unsigned int writers; + unsigned int files; + unsigned int r_counter; + unsigned int w_counter; + bool poll_usage; + bool note_loss; + struct page *tmp_page[2]; + struct fasync_struct *fasync_readers; + struct fasync_struct *fasync_writers; + struct pipe_buffer *bufs; + struct user_struct *user; + struct watch_queue *watch_queue; +}; + +typedef struct poll_table_struct poll_table; + +enum { + RELAY_STATS_BUF_FULL = 1, + RELAY_STATS_WRT_BIG = 2, + RELAY_STATS_LAST = 2, +}; + +struct rchan_buf_stats { + unsigned int full_count; + unsigned int big_count; +}; + +struct rchan; + +struct rchan_buf { + void *start; + void *data; + size_t offset; + size_t subbufs_produced; + size_t subbufs_consumed; + struct rchan *chan; + wait_queue_head_t read_wait; + struct irq_work wakeup_work; + struct dentry *dentry; + struct kref kref; + struct rchan_buf_stats stats; + struct page **page_array; + unsigned int page_count; + unsigned int finalized; + size_t *padding; + size_t bytes_consumed; + size_t early_bytes; + unsigned int cpu; + long: 64; + long: 64; +}; + +struct rchan_callbacks; + +struct rchan { + u32 version; + size_t subbuf_size; + size_t n_subbufs; + size_t alloc_size; + const struct rchan_callbacks *cb; + struct kref kref; + void *private_data; + struct rchan_buf **buf; + int is_global; + struct list_head list; + struct dentry *parent; + int has_base_filename; + char base_filename[255]; +}; + +struct rchan_callbacks { + int (*subbuf_start)(struct rchan_buf *, void *, void *); + struct dentry * (*create_buf_file)(const char *, struct dentry *, umode_t, struct rchan_buf *, int *); + int (*remove_buf_file)(struct dentry *); +}; + +struct pipe_buf_operations; + +struct pipe_buffer { + struct page *page; + unsigned int offset; + unsigned int len; + const struct pipe_buf_operations *ops; + unsigned int flags; + long unsigned int private; +}; + +struct pipe_buf_operations { + int (*confirm)(struct pipe_inode_info *, struct pipe_buffer *); + void (*release)(struct pipe_inode_info *, struct pipe_buffer *); + bool (*try_steal)(struct pipe_inode_info *, struct pipe_buffer *); + bool (*get)(struct pipe_inode_info *, struct pipe_buffer *); +}; + +struct trace_buffer_meta { + __u32 meta_page_size; + __u32 meta_struct_len; + __u32 subbuf_size; + __u32 nr_subbufs; + struct { + __u64 lost_events; + __u32 id; + __u32 read; + } reader; + __u64 flags; + __u64 entries; + __u64 overrun; + __u64 read; + __u64 Reserved1; + __u64 Reserved2; +}; + +enum ring_buffer_type { + RINGBUF_TYPE_DATA_TYPE_LEN_MAX = 28, + RINGBUF_TYPE_PADDING = 29, + RINGBUF_TYPE_TIME_EXTEND = 30, + RINGBUF_TYPE_TIME_STAMP = 31, +}; + +typedef bool (*ring_buffer_cond_fn)(void *); + +struct rb_irq_work { + struct irq_work work; + wait_queue_head_t waiters; + wait_queue_head_t full_waiters; + atomic_t seq; + bool waiters_pending; + bool full_waiters_pending; + bool wakeup_full; +}; + +struct ring_buffer_per_cpu; + +struct ring_buffer_meta; + +struct trace_buffer { + unsigned int flags; + int cpus; + atomic_t record_disabled; + atomic_t resizing; + cpumask_var_t cpumask; + struct lock_class_key *reader_lock_key; + struct mutex mutex; + struct ring_buffer_per_cpu **buffers; + struct hlist_node node; + u64 (*clock)(void); + struct rb_irq_work irq_work; + bool time_stamp_abs; + long unsigned int range_addr_start; + long unsigned int range_addr_end; + struct ring_buffer_meta *meta; + unsigned int subbuf_size; + unsigned int subbuf_order; + unsigned int max_data_size; +}; + +enum ring_buffer_flags { + RB_FL_OVERWRITE = 1, +}; + +struct ftrace_hash { + long unsigned int size_bits; + struct hlist_head *buckets; + long unsigned int count; + long unsigned int flags; + struct callback_head rcu; +}; + +struct ftrace_graph_ent { + long unsigned int func; + int depth; +} __attribute__((packed)); + +struct ftrace_graph_ret { + long unsigned int func; + long unsigned int retval; + int depth; + unsigned int overrun; +}; + +struct fgraph_ops; + +typedef void (*trace_func_graph_ret_t)(struct ftrace_graph_ret *, struct fgraph_ops *, struct ftrace_regs *); + +typedef int (*trace_func_graph_ent_t)(struct ftrace_graph_ent *, struct fgraph_ops *, struct ftrace_regs *); + +struct fgraph_ops { + trace_func_graph_ent_t entryfunc; + trace_func_graph_ret_t retfunc; + struct ftrace_ops ops; + void *private; + trace_func_graph_ent_t saved_func; + int idx; +}; + +struct prog_entry; + +struct event_filter { + struct prog_entry *prog; + char *filter_string; +}; + +struct trace_array_cpu; + +struct array_buffer { + struct trace_array *tr; + struct trace_buffer *buffer; + struct trace_array_cpu *data; + u64 time_start; + int cpu; +}; + +struct trace_module_delta; + +struct trace_pid_list; + +struct trace_options; + +struct cond_snapshot; + +struct trace_func_repeats; + +struct trace_array { + struct list_head list; + char *name; + struct array_buffer array_buffer; + struct array_buffer max_buffer; + bool allocated_snapshot; + spinlock_t snapshot_trigger_lock; + unsigned int snapshot; + long unsigned int max_latency; + struct dentry *d_max_latency; + struct work_struct fsnotify_work; + struct irq_work fsnotify_irqwork; + unsigned int mapped; + long unsigned int range_addr_start; + long unsigned int range_addr_size; + char *range_name; + long int text_delta; + struct trace_module_delta *module_delta; + void *scratch; + int scratch_size; + int buffer_disabled; + struct trace_pid_list *filtered_pids; + struct trace_pid_list *filtered_no_pids; + arch_spinlock_t max_lock; + int sys_refcount_enter; + int sys_refcount_exit; + struct trace_event_file *enter_syscall_files[470]; + struct trace_event_file *exit_syscall_files[470]; + int stop_count; + int clock_id; + int nr_topts; + bool clear_trace; + int buffer_percent; + unsigned int n_err_log_entries; + struct tracer *current_trace; + unsigned int trace_flags; + unsigned char trace_flags_index[32]; + unsigned int flags; + raw_spinlock_t start_lock; + const char *system_names; + struct list_head err_log; + struct dentry *dir; + struct dentry *options; + struct dentry *percpu_dir; + struct eventfs_inode *event_dir; + struct trace_options *topts; + struct list_head systems; + struct list_head events; + struct list_head marker_list; + struct trace_event_file *trace_marker_file; + cpumask_var_t tracing_cpumask; + cpumask_var_t pipe_cpumask; + int ref; + int trace_ref; + struct list_head mod_events; + struct ftrace_ops *ops; + struct trace_pid_list *function_pids; + struct trace_pid_list *function_no_pids; + struct fgraph_ops *gops; + struct list_head func_probes; + struct list_head mod_trace; + struct list_head mod_notrace; + int function_enabled; + int no_filter_buffering_ref; + struct list_head hist_vars; + struct cond_snapshot *cond_snapshot; + struct trace_func_repeats *last_func_repeats; + bool ring_buffer_expanded; +}; + +struct tracer_flags; + +struct tracer { + const char *name; + int (*init)(struct trace_array *); + void (*reset)(struct trace_array *); + void (*start)(struct trace_array *); + void (*stop)(struct trace_array *); + int (*update_thresh)(struct trace_array *); + void (*open)(struct trace_iterator *); + void (*pipe_open)(struct trace_iterator *); + void (*close)(struct trace_iterator *); + void (*pipe_close)(struct trace_iterator *); + ssize_t (*read)(struct trace_iterator *, struct file *, char *, size_t, loff_t *); + ssize_t (*splice_read)(struct trace_iterator *, struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); + void (*print_header)(struct seq_file *); + enum print_line_t (*print_line)(struct trace_iterator *); + int (*set_flag)(struct trace_array *, u32, u32, int); + int (*flag_changed)(struct trace_array *, u32, int); + struct tracer *next; + struct tracer_flags *flags; + int enabled; + bool print_max; + bool allow_instances; + bool use_max_tr; + bool noboot; +}; + +struct buffer_page; + +struct ring_buffer_iter { + struct ring_buffer_per_cpu *cpu_buffer; + long unsigned int head; + long unsigned int next_event; + struct buffer_page *head_page; + struct buffer_page *cache_reader_page; + long unsigned int cache_read; + long unsigned int cache_pages_removed; + u64 read_stamp; + u64 page_stamp; + struct ring_buffer_event *event; + size_t event_size; + int missed_events; +}; + +struct event_subsystem; + +struct trace_subsystem_dir { + struct list_head list; + struct event_subsystem *subsystem; + struct trace_array *tr; + struct eventfs_inode *ei; + int ref_count; + int nr_events; +}; + +union lower_chunk { + union lower_chunk *next; + long unsigned int data[256]; +}; + +union upper_chunk { + union upper_chunk *next; + union lower_chunk *data[256]; +}; + +struct trace_pid_list { + raw_spinlock_t lock; + struct irq_work refill_irqwork; + union upper_chunk *upper[256]; + union upper_chunk *upper_list; + union lower_chunk *lower_list; + int free_upper_chunks; + int free_lower_chunks; +}; + +struct trace_array_cpu { + local_t disabled; + long unsigned int entries; + long unsigned int saved_latency; + long unsigned int critical_start; + long unsigned int critical_end; + long unsigned int critical_sequence; + long unsigned int nice; + long unsigned int policy; + long unsigned int rt_priority; + long unsigned int skipped_entries; + u64 preempt_timestamp; + pid_t pid; + kuid_t uid; + char comm[16]; + int ftrace_ignore_pid; + bool ignore_pid; +}; + +struct trace_option_dentry; + +struct trace_options { + struct tracer *tracer; + struct trace_option_dentry *topts; +}; + +struct tracer_opt; + +struct trace_option_dentry { + struct tracer_opt *opt; + struct tracer_flags *flags; + struct trace_array *tr; + struct dentry *entry; +}; + +typedef bool (*cond_update_fn_t)(struct trace_array *, void *); + +struct cond_snapshot { + void *cond_data; + cond_update_fn_t update; +}; + +struct trace_func_repeats { + long unsigned int ip; + long unsigned int parent_ip; + long unsigned int count; + u64 ts_last_call; +}; + +struct trace_module_delta { + struct callback_head rcu; + long int delta[0]; +}; + +struct tracer_opt { + const char *name; + u32 bit; +}; + +struct tracer_flags { + u32 val; + struct tracer_opt *opts; + struct tracer *trace; +}; + +enum trace_iterator_bits { + TRACE_ITER_PRINT_PARENT_BIT = 0, + TRACE_ITER_SYM_OFFSET_BIT = 1, + TRACE_ITER_SYM_ADDR_BIT = 2, + TRACE_ITER_VERBOSE_BIT = 3, + TRACE_ITER_RAW_BIT = 4, + TRACE_ITER_HEX_BIT = 5, + TRACE_ITER_BIN_BIT = 6, + TRACE_ITER_BLOCK_BIT = 7, + TRACE_ITER_FIELDS_BIT = 8, + TRACE_ITER_PRINTK_BIT = 9, + TRACE_ITER_ANNOTATE_BIT = 10, + TRACE_ITER_USERSTACKTRACE_BIT = 11, + TRACE_ITER_SYM_USEROBJ_BIT = 12, + TRACE_ITER_PRINTK_MSGONLY_BIT = 13, + TRACE_ITER_CONTEXT_INFO_BIT = 14, + TRACE_ITER_LATENCY_FMT_BIT = 15, + TRACE_ITER_RECORD_CMD_BIT = 16, + TRACE_ITER_RECORD_TGID_BIT = 17, + TRACE_ITER_OVERWRITE_BIT = 18, + TRACE_ITER_STOP_ON_FREE_BIT = 19, + TRACE_ITER_IRQ_INFO_BIT = 20, + TRACE_ITER_MARKERS_BIT = 21, + TRACE_ITER_EVENT_FORK_BIT = 22, + TRACE_ITER_TRACE_PRINTK_BIT = 23, + TRACE_ITER_COPY_MARKER_BIT = 24, + TRACE_ITER_PAUSE_ON_TRACE_BIT = 25, + TRACE_ITER_HASH_PTR_BIT = 26, + TRACE_ITER_FUNCTION_BIT = 27, + TRACE_ITER_FUNC_FORK_BIT = 28, + TRACE_ITER_DISPLAY_GRAPH_BIT = 29, + TRACE_ITER_STACKTRACE_BIT = 30, + TRACE_ITER_LAST_BIT = 31, +}; + +struct event_subsystem { + struct list_head list; + const char *name; + struct event_filter *filter; + int ref_count; +}; + +struct ring_buffer_meta { + int magic; + int struct_sizes; + long unsigned int total_size; + long unsigned int buffers_offset; +}; + +struct ring_buffer_cpu_meta { + long unsigned int first_buffer; + long unsigned int head_buffer; + long unsigned int commit_buffer; + __u32 subbuf_size; + __u32 nr_subbufs; + int buffers[0]; +}; + +enum { + RB_LEN_TIME_EXTEND = 8, + RB_LEN_TIME_STAMP = 8, +}; + +struct buffer_data_page { + u64 time_stamp; + local_t commit; + unsigned char data[0]; +}; + +struct buffer_data_read_page { + unsigned int order; + struct buffer_data_page *data; +}; + +struct buffer_page { + struct list_head list; + local_t write; + unsigned int read; + local_t entries; + long unsigned int real_end; + unsigned int order; + u32 id: 30; + u32 range: 1; + struct buffer_data_page *page; +}; + +struct rb_event_info { + u64 ts; + u64 delta; + u64 before; + u64 after; + long unsigned int length; + struct buffer_page *tail_page; + int add_timestamp; +}; + +enum { + RB_ADD_STAMP_NONE = 0, + RB_ADD_STAMP_EXTEND = 2, + RB_ADD_STAMP_ABSOLUTE = 4, + RB_ADD_STAMP_FORCE = 8, +}; + +enum { + RB_CTX_TRANSITION = 0, + RB_CTX_NMI = 1, + RB_CTX_IRQ = 2, + RB_CTX_SOFTIRQ = 3, + RB_CTX_NORMAL = 4, + RB_CTX_MAX = 5, +}; + +struct rb_time_struct { + local64_t time; +}; + +typedef struct rb_time_struct rb_time_t; + +struct ring_buffer_per_cpu { + int cpu; + atomic_t record_disabled; + atomic_t resize_disabled; + struct trace_buffer *buffer; + raw_spinlock_t reader_lock; + arch_spinlock_t lock; + struct lock_class_key lock_key; + struct buffer_data_page *free_page; + long unsigned int nr_pages; + unsigned int current_context; + struct list_head *pages; + long unsigned int cnt; + struct buffer_page *head_page; + struct buffer_page *tail_page; + struct buffer_page *commit_page; + struct buffer_page *reader_page; + long unsigned int lost_events; + long unsigned int last_overrun; + long unsigned int nest; + local_t entries_bytes; + local_t entries; + local_t overrun; + local_t commit_overrun; + local_t dropped_events; + local_t committing; + local_t commits; + local_t pages_touched; + local_t pages_lost; + local_t pages_read; + long int last_pages_touch; + size_t shortest_full; + long unsigned int read; + long unsigned int read_bytes; + rb_time_t write_stamp; + rb_time_t before_stamp; + u64 event_stamp[5]; + u64 read_stamp; + long unsigned int pages_removed; + unsigned int mapped; + unsigned int user_mapped; + struct mutex mapping_lock; + long unsigned int *subbuf_ids; + struct trace_buffer_meta *meta_page; + struct ring_buffer_cpu_meta *ring_meta; + long int nr_pages_to_update; + struct list_head new_pages; + struct work_struct update_pages_work; + struct completion update_done; + struct rb_irq_work irq_work; +}; + +struct rb_wait_data { + struct rb_irq_work *irq_work; + int seq; +}; + +enum trace_flag_type { + TRACE_FLAG_IRQS_OFF = 1, + TRACE_FLAG_NEED_RESCHED_LAZY = 2, + TRACE_FLAG_NEED_RESCHED = 4, + TRACE_FLAG_HARDIRQ = 8, + TRACE_FLAG_SOFTIRQ = 16, + TRACE_FLAG_PREEMPT_RESCHED = 32, + TRACE_FLAG_NMI = 64, + TRACE_FLAG_BH_OFF = 128, +}; + +enum trace_type { + __TRACE_FIRST_TYPE = 0, + TRACE_FN = 1, + TRACE_CTX = 2, + TRACE_WAKE = 3, + TRACE_STACK = 4, + TRACE_PRINT = 5, + TRACE_BPRINT = 6, + TRACE_MMIO_RW = 7, + TRACE_MMIO_MAP = 8, + TRACE_BRANCH = 9, + TRACE_GRAPH_RET = 10, + TRACE_GRAPH_ENT = 11, + TRACE_GRAPH_RETADDR_ENT = 12, + TRACE_USER_STACK = 13, + TRACE_BLK = 14, + TRACE_BPUTS = 15, + TRACE_HWLAT = 16, + TRACE_OSNOISE = 17, + TRACE_TIMERLAT = 18, + TRACE_RAW_DATA = 19, + TRACE_FUNC_REPEATS = 20, + __TRACE_LAST_TYPE = 21, +}; + +struct hwlat_entry { + struct trace_entry ent; + u64 duration; + u64 outer_duration; + u64 nmi_total_ts; + struct timespec64 timestamp; + unsigned int nmi_count; + unsigned int seqnum; + unsigned int count; +}; + +struct trace_min_max_param { + struct mutex *lock; + u64 *val; + u64 *min; + u64 *max; +}; + +enum { + MODE_NONE = 0, + MODE_ROUND_ROBIN = 1, + MODE_PER_CPU = 2, + MODE_MAX = 3, +}; + +struct hwlat_kthread_data { + struct task_struct *kthread; + u64 nmi_ts_start; + u64 nmi_total_ts; + int nmi_count; + int nmi_cpu; +}; + +struct hwlat_sample { + u64 seqnum; + u64 duration; + u64 outer_duration; + u64 nmi_total_ts; + struct timespec64 timestamp; + int nmi_count; + int count; +}; + +struct hwlat_data { + struct mutex lock; + u64 count; + u64 sample_window; + u64 sample_width; + int thread_mode; +}; + +struct print_entry { + struct trace_entry ent; + long unsigned int ip; + char buf[0]; +}; + +struct trace_mmiotrace_rw { + struct trace_entry ent; + struct mmiotrace_rw rw; +}; + +struct trace_mmiotrace_map { + struct trace_entry ent; + struct mmiotrace_map map; +}; + +struct header_iter { + struct pci_dev *dev; +}; + +enum { + TRACE_FTRACE_BIT = 0, + TRACE_FTRACE_NMI_BIT = 1, + TRACE_FTRACE_IRQ_BIT = 2, + TRACE_FTRACE_SIRQ_BIT = 3, + TRACE_FTRACE_TRANSITION_BIT = 4, + TRACE_INTERNAL_BIT = 5, + TRACE_INTERNAL_NMI_BIT = 6, + TRACE_INTERNAL_IRQ_BIT = 7, + TRACE_INTERNAL_SIRQ_BIT = 8, + TRACE_INTERNAL_TRANSITION_BIT = 9, + TRACE_INTERNAL_EVENT_BIT = 10, + TRACE_INTERNAL_EVENT_NMI_BIT = 11, + TRACE_INTERNAL_EVENT_IRQ_BIT = 12, + TRACE_INTERNAL_EVENT_SIRQ_BIT = 13, + TRACE_INTERNAL_EVENT_TRANSITION_BIT = 14, + TRACE_BRANCH_BIT = 15, + TRACE_IRQ_BIT = 16, + TRACE_RECORD_RECURSION_BIT = 17, +}; + +enum { + TRACE_CTX_NMI = 0, + TRACE_CTX_IRQ = 1, + TRACE_CTX_SOFTIRQ = 2, + TRACE_CTX_NORMAL = 3, + TRACE_CTX_TRANSITION = 4, +}; + +struct __arch_ftrace_regs { + struct pt_regs regs; +}; + +enum { + FTRACE_UPDATE_CALLS = 1, + FTRACE_DISABLE_CALLS = 2, + FTRACE_UPDATE_TRACE_FUNC = 4, + FTRACE_START_FUNC_RET = 8, + FTRACE_STOP_FUNC_RET = 16, + FTRACE_MAY_SLEEP = 32, +}; + +struct ftrace_ret_stack { + long unsigned int ret; + long unsigned int func; + long unsigned int *retp; +}; + +enum { + FGRAPH_TYPE_RESERVED = 0, + FGRAPH_TYPE_BITMAP = 1, + FGRAPH_TYPE_DATA = 2, +}; + +struct ftrace_entry { + struct trace_entry ent; + long unsigned int ip; + long unsigned int parent_ip; + long unsigned int args[0]; +}; + +typedef long unsigned int perf_trace_t[1024]; + +struct ftrace_event_field { + struct list_head link; + const char *name; + const char *type; + int filter_type; + int offset; + int size; + unsigned int is_signed: 1; + unsigned int needs_test: 1; + int len; +}; + +enum { + FOLL_WRITE = 1, + FOLL_GET = 2, + FOLL_DUMP = 4, + FOLL_FORCE = 8, + FOLL_NOWAIT = 16, + FOLL_NOFAULT = 32, + FOLL_HWPOISON = 64, + FOLL_ANON = 128, + FOLL_LONGTERM = 256, + FOLL_SPLIT_PMD = 512, + FOLL_PCI_P2PDMA = 1024, + FOLL_INTERRUPTIBLE = 2048, + FOLL_HONOR_NUMA_FAULT = 4096, +}; + +enum user_reg_flag { + USER_EVENT_REG_PERSIST = 1, + USER_EVENT_REG_MULTI_FORMAT = 2, + USER_EVENT_REG_MAX = 4, +}; + +struct user_reg { + __u32 size; + __u8 enable_bit; + __u8 enable_size; + __u16 flags; + __u64 enable_addr; + __u64 name_args; + __u32 write_index; +} __attribute__((packed)); + +struct user_unreg { + __u32 size; + __u8 disable_bit; + __u8 __reserved; + __u16 __reserved2; + __u64 disable_addr; +}; + +struct dyn_event; + +struct dyn_event_operations { + struct list_head list; + int (*create)(const char *); + int (*show)(struct seq_file *, struct dyn_event *); + bool (*is_busy)(struct dyn_event *); + int (*free)(struct dyn_event *); + bool (*match)(const char *, const char *, int, const char **, struct dyn_event *); +}; + +struct dyn_event { + struct list_head list; + struct dyn_event_operations *ops; +}; + +struct user_event_group { + char *system_name; + char *system_multi_name; + struct hlist_node node; + struct mutex reg_mutex; + struct hlist_head register_table[256]; + u64 multi_id; +}; + +struct user_event { + struct user_event_group *group; + char *reg_name; + struct tracepoint tracepoint; + struct trace_event_call call; + struct trace_event_class class; + struct dyn_event devent; + struct hlist_node node; + struct list_head fields; + struct list_head validators; + struct work_struct put_work; + refcount_t refcnt; + int min_size; + int reg_flags; + char status; +}; + +struct user_event_enabler { + struct list_head mm_enablers_link; + struct user_event *event; + long unsigned int addr; + long unsigned int values; +}; + +struct user_event_enabler_fault { + struct work_struct work; + struct user_event_mm *mm; + struct user_event_enabler *enabler; + int attempt; +}; + +struct user_event_refs { + struct callback_head rcu; + int count; + struct user_event *events[0]; +}; + +struct user_event_file_info { + struct user_event_group *group; + struct user_event_refs *refs; +}; + +struct user_event_validator { + struct list_head user_event_link; + int offset; + int flags; +}; + +typedef void (*user_event_func_t)(struct user_event *, struct iov_iter *, void *, bool *); + +enum pm_qos_req_action { + PM_QOS_ADD_REQ = 0, + PM_QOS_UPDATE_REQ = 1, + PM_QOS_REMOVE_REQ = 2, +}; + +struct trace_event_raw_cpu { + struct trace_entry ent; + u32 state; + u32 cpu_id; + char __data[0]; +}; + +struct trace_event_raw_cpu_idle_miss { + struct trace_entry ent; + u32 cpu_id; + u32 state; + bool below; + char __data[0]; +}; + +struct trace_event_raw_pstate_sample { + struct trace_entry ent; + u32 core_busy; + u32 scaled_busy; + u32 from; + u32 to; + u64 mperf; + u64 aperf; + u64 tsc; + u32 freq; + u32 io_boost; + char __data[0]; +}; + +struct trace_event_raw_cpu_frequency_limits { + struct trace_entry ent; + u32 min_freq; + u32 max_freq; + u32 cpu_id; + char __data[0]; +}; + +struct trace_event_raw_device_pm_callback_start { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_driver; + u32 __data_loc_parent; + u32 __data_loc_pm_ops; + int event; + char __data[0]; +}; + +struct trace_event_raw_device_pm_callback_end { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_driver; + int error; + char __data[0]; +}; + +struct trace_event_raw_suspend_resume { + struct trace_entry ent; + const char *action; + int val; + bool start; + char __data[0]; +}; + +struct trace_event_raw_wakeup_source { + struct trace_entry ent; + u32 __data_loc_name; + u64 state; + char __data[0]; +}; + +struct trace_event_raw_cpu_latency_qos_request { + struct trace_entry ent; + s32 value; + char __data[0]; +}; + +struct trace_event_raw_pm_qos_update { + struct trace_entry ent; + enum pm_qos_req_action action; + int prev_value; + int curr_value; + char __data[0]; +}; + +struct trace_event_raw_dev_pm_qos_request { + struct trace_entry ent; + u32 __data_loc_name; + enum dev_pm_qos_req_type type; + s32 new_value; + char __data[0]; +}; + +struct trace_event_raw_guest_halt_poll_ns { + struct trace_entry ent; + bool grow; + unsigned int new; + unsigned int old; + char __data[0]; +}; + +struct trace_event_data_offsets_cpu {}; + +struct trace_event_data_offsets_cpu_idle_miss {}; + +struct trace_event_data_offsets_pstate_sample {}; + +struct trace_event_data_offsets_cpu_frequency_limits {}; + +struct trace_event_data_offsets_device_pm_callback_start { + u32 device; + const void *device_ptr_; + u32 driver; + const void *driver_ptr_; + u32 parent; + const void *parent_ptr_; + u32 pm_ops; + const void *pm_ops_ptr_; +}; + +struct trace_event_data_offsets_device_pm_callback_end { + u32 device; + const void *device_ptr_; + u32 driver; + const void *driver_ptr_; +}; + +struct trace_event_data_offsets_suspend_resume {}; + +struct trace_event_data_offsets_wakeup_source { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_cpu_latency_qos_request {}; + +struct trace_event_data_offsets_pm_qos_update {}; + +struct trace_event_data_offsets_dev_pm_qos_request { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_guest_halt_poll_ns {}; + +typedef void (*btf_trace_cpu_idle)(void *, unsigned int, unsigned int); + +typedef void (*btf_trace_cpu_idle_miss)(void *, unsigned int, unsigned int, bool); + +typedef void (*btf_trace_pstate_sample)(void *, u32, u32, u32, u32, u64, u64, u64, u32, u32); + +typedef void (*btf_trace_cpu_frequency)(void *, unsigned int, unsigned int); + +typedef void (*btf_trace_cpu_frequency_limits)(void *, struct cpufreq_policy *); + +typedef void (*btf_trace_device_pm_callback_start)(void *, struct device *, const char *, int); + +typedef void (*btf_trace_device_pm_callback_end)(void *, struct device *, int); + +typedef void (*btf_trace_suspend_resume)(void *, const char *, int, bool); + +typedef void (*btf_trace_wakeup_source_activate)(void *, const char *, unsigned int); + +typedef void (*btf_trace_wakeup_source_deactivate)(void *, const char *, unsigned int); + +typedef void (*btf_trace_pm_qos_add_request)(void *, s32); + +typedef void (*btf_trace_pm_qos_update_request)(void *, s32); + +typedef void (*btf_trace_pm_qos_remove_request)(void *, s32); + +typedef void (*btf_trace_pm_qos_update_target)(void *, enum pm_qos_req_action, int, int); + +typedef void (*btf_trace_pm_qos_update_flags)(void *, enum pm_qos_req_action, int, int); + +typedef void (*btf_trace_dev_pm_qos_add_request)(void *, const char *, enum dev_pm_qos_req_type, s32); + +typedef void (*btf_trace_dev_pm_qos_update_request)(void *, const char *, enum dev_pm_qos_req_type, s32); + +typedef void (*btf_trace_dev_pm_qos_remove_request)(void *, const char *, enum dev_pm_qos_req_type, s32); + +typedef void (*btf_trace_guest_halt_poll_ns)(void *, bool, unsigned int, unsigned int); + +enum { + BTF_KIND_UNKN = 0, + BTF_KIND_INT = 1, + BTF_KIND_PTR = 2, + BTF_KIND_ARRAY = 3, + BTF_KIND_STRUCT = 4, + BTF_KIND_UNION = 5, + BTF_KIND_ENUM = 6, + BTF_KIND_FWD = 7, + BTF_KIND_TYPEDEF = 8, + BTF_KIND_VOLATILE = 9, + BTF_KIND_CONST = 10, + BTF_KIND_RESTRICT = 11, + BTF_KIND_FUNC = 12, + BTF_KIND_FUNC_PROTO = 13, + BTF_KIND_VAR = 14, + BTF_KIND_DATASEC = 15, + BTF_KIND_FLOAT = 16, + BTF_KIND_DECL_TAG = 17, + BTF_KIND_TYPE_TAG = 18, + BTF_KIND_ENUM64 = 19, + NR_BTF_KINDS = 20, + BTF_KIND_MAX = 19, +}; + +struct btf_array { + __u32 type; + __u32 index_type; + __u32 nelems; +}; + +struct btf_param { + __u32 name_off; + __u32 type; +}; + +typedef int (*print_type_func_t)(struct trace_seq *, void *, void *); + +enum fetch_op { + FETCH_OP_NOP = 0, + FETCH_OP_REG = 1, + FETCH_OP_STACK = 2, + FETCH_OP_STACKP = 3, + FETCH_OP_RETVAL = 4, + FETCH_OP_IMM = 5, + FETCH_OP_COMM = 6, + FETCH_OP_ARG = 7, + FETCH_OP_FOFFS = 8, + FETCH_OP_DATA = 9, + FETCH_OP_EDATA = 10, + FETCH_OP_DEREF = 11, + FETCH_OP_UDEREF = 12, + FETCH_OP_ST_RAW = 13, + FETCH_OP_ST_MEM = 14, + FETCH_OP_ST_UMEM = 15, + FETCH_OP_ST_STRING = 16, + FETCH_OP_ST_USTRING = 17, + FETCH_OP_ST_SYMSTR = 18, + FETCH_OP_ST_EDATA = 19, + FETCH_OP_MOD_BF = 20, + FETCH_OP_LP_ARRAY = 21, + FETCH_OP_TP_ARG = 22, + FETCH_OP_END = 23, + FETCH_NOP_SYMBOL = 24, +}; + +struct fetch_insn { + enum fetch_op op; + union { + unsigned int param; + struct { + unsigned int size; + int offset; + }; + struct { + unsigned char basesize; + unsigned char lshift; + unsigned char rshift; + }; + long unsigned int immediate; + void *data; + }; +}; + +struct fetch_type { + const char *name; + size_t size; + bool is_signed; + bool is_string; + print_type_func_t print; + const char *fmt; + const char *fmttype; +}; + +struct probe_arg { + struct fetch_insn *code; + bool dynamic; + unsigned int offset; + unsigned int count; + const char *name; + const char *comm; + char *fmt; + const struct fetch_type *type; +}; + +struct probe_entry_arg { + struct fetch_insn *code; + unsigned int size; +}; + +struct trace_uprobe_filter { + rwlock_t rwlock; + int nr_systemwide; + struct list_head perf_events; +}; + +struct trace_probe_event { + unsigned int flags; + struct trace_event_class class; + struct trace_event_call call; + struct list_head files; + struct list_head probes; + struct trace_uprobe_filter filter[0]; +}; + +struct trace_probe { + struct list_head list; + struct trace_probe_event *event; + ssize_t size; + unsigned int nr_args; + struct probe_entry_arg *entry_arg; + struct probe_arg args[0]; +}; + +struct event_file_link { + struct trace_event_file *file; + struct list_head list; +}; + +struct traceprobe_parse_context { + struct trace_event_call *event; + const char *funcname; + const struct btf_type *proto; + const struct btf_param *params; + s32 nr_params; + struct btf *btf; + const struct btf_type *last_type; + u32 last_bitoffs; + u32 last_bitsize; + struct trace_probe *tp; + unsigned int flags; + int offset; +}; + +enum probe_print_type { + PROBE_PRINT_NORMAL = 0, + PROBE_PRINT_RETURN = 1, + PROBE_PRINT_EVENT = 2, +}; + +enum { + TP_ERR_FILE_NOT_FOUND = 0, + TP_ERR_NO_REGULAR_FILE = 1, + TP_ERR_BAD_REFCNT = 2, + TP_ERR_REFCNT_OPEN_BRACE = 3, + TP_ERR_BAD_REFCNT_SUFFIX = 4, + TP_ERR_BAD_UPROBE_OFFS = 5, + TP_ERR_BAD_MAXACT_TYPE = 6, + TP_ERR_BAD_MAXACT = 7, + TP_ERR_MAXACT_TOO_BIG = 8, + TP_ERR_BAD_PROBE_ADDR = 9, + TP_ERR_NON_UNIQ_SYMBOL = 10, + TP_ERR_BAD_RETPROBE = 11, + TP_ERR_NO_TRACEPOINT = 12, + TP_ERR_BAD_TP_NAME = 13, + TP_ERR_BAD_ADDR_SUFFIX = 14, + TP_ERR_NO_GROUP_NAME = 15, + TP_ERR_GROUP_TOO_LONG = 16, + TP_ERR_BAD_GROUP_NAME = 17, + TP_ERR_NO_EVENT_NAME = 18, + TP_ERR_EVENT_TOO_LONG = 19, + TP_ERR_BAD_EVENT_NAME = 20, + TP_ERR_EVENT_EXIST = 21, + TP_ERR_RETVAL_ON_PROBE = 22, + TP_ERR_NO_RETVAL = 23, + TP_ERR_BAD_STACK_NUM = 24, + TP_ERR_BAD_ARG_NUM = 25, + TP_ERR_BAD_VAR = 26, + TP_ERR_BAD_REG_NAME = 27, + TP_ERR_BAD_MEM_ADDR = 28, + TP_ERR_BAD_IMM = 29, + TP_ERR_IMMSTR_NO_CLOSE = 30, + TP_ERR_FILE_ON_KPROBE = 31, + TP_ERR_BAD_FILE_OFFS = 32, + TP_ERR_SYM_ON_UPROBE = 33, + TP_ERR_TOO_MANY_OPS = 34, + TP_ERR_DEREF_NEED_BRACE = 35, + TP_ERR_BAD_DEREF_OFFS = 36, + TP_ERR_DEREF_OPEN_BRACE = 37, + TP_ERR_COMM_CANT_DEREF = 38, + TP_ERR_BAD_FETCH_ARG = 39, + TP_ERR_ARRAY_NO_CLOSE = 40, + TP_ERR_BAD_ARRAY_SUFFIX = 41, + TP_ERR_BAD_ARRAY_NUM = 42, + TP_ERR_ARRAY_TOO_BIG = 43, + TP_ERR_BAD_TYPE = 44, + TP_ERR_BAD_STRING = 45, + TP_ERR_BAD_SYMSTRING = 46, + TP_ERR_BAD_BITFIELD = 47, + TP_ERR_ARG_NAME_TOO_LONG = 48, + TP_ERR_NO_ARG_NAME = 49, + TP_ERR_BAD_ARG_NAME = 50, + TP_ERR_USED_ARG_NAME = 51, + TP_ERR_ARG_TOO_LONG = 52, + TP_ERR_NO_ARG_BODY = 53, + TP_ERR_BAD_INSN_BNDRY = 54, + TP_ERR_FAIL_REG_PROBE = 55, + TP_ERR_DIFF_PROBE_TYPE = 56, + TP_ERR_DIFF_ARG_TYPE = 57, + TP_ERR_SAME_PROBE = 58, + TP_ERR_NO_EVENT_INFO = 59, + TP_ERR_BAD_ATTACH_EVENT = 60, + TP_ERR_BAD_ATTACH_ARG = 61, + TP_ERR_NO_EP_FILTER = 62, + TP_ERR_NOSUP_BTFARG = 63, + TP_ERR_NO_BTFARG = 64, + TP_ERR_NO_BTF_ENTRY = 65, + TP_ERR_BAD_VAR_ARGS = 66, + TP_ERR_NOFENTRY_ARGS = 67, + TP_ERR_DOUBLE_ARGS = 68, + TP_ERR_ARGS_2LONG = 69, + TP_ERR_ARGIDX_2BIG = 70, + TP_ERR_NO_PTR_STRCT = 71, + TP_ERR_NOSUP_DAT_ARG = 72, + TP_ERR_BAD_HYPHEN = 73, + TP_ERR_NO_BTF_FIELD = 74, + TP_ERR_BAD_BTF_TID = 75, + TP_ERR_BAD_TYPE4STR = 76, + TP_ERR_NEED_STRING_TYPE = 77, + TP_ERR_TOO_MANY_ARGS = 78, + TP_ERR_TOO_MANY_EARGS = 79, +}; + +struct trace_probe_log { + const char *subsystem; + const char **argv; + int argc; + int index; +}; + +struct rv_reactor { + const char *name; + const char *description; + void (*react)(const char *, ...); + struct list_head list; +}; + +struct rv_monitor { + const char *name; + const char *description; + bool enabled; + int (*enable)(void); + void (*disable)(void); + void (*reset)(void); + struct rv_reactor *reactor; + void (*react)(const char *, ...); + struct list_head list; + struct rv_monitor *parent; + struct dentry *root_d; +}; + +enum states_wwnr { + not_running_wwnr = 0, + running_wwnr = 1, + state_max_wwnr = 2, +}; + +enum events_wwnr { + switch_in_wwnr = 0, + switch_out_wwnr = 1, + wakeup_wwnr = 2, + event_max_wwnr = 3, +}; + +struct automaton_wwnr { + char *state_names[2]; + char *event_names[3]; + unsigned char function[6]; + unsigned char initial_state; + bool final_states[2]; +}; + +struct smp_hotplug_thread { + struct task_struct **store; + struct list_head list; + int (*thread_should_run)(unsigned int); + void (*thread_fn)(unsigned int); + void (*create)(unsigned int); + void (*setup)(unsigned int); + void (*cleanup)(unsigned int, bool); + void (*park)(unsigned int); + void (*unpark)(unsigned int); + bool selfparking; + const char *thread_comm; +}; + +struct rhash_lock_head; + +struct bucket_table { + unsigned int size; + unsigned int nest; + u32 hash_rnd; + struct list_head walkers; + struct callback_head rcu; + struct bucket_table *future_tbl; + struct lockdep_map dep_map; + long: 64; + struct rhash_lock_head *buckets[0]; +}; + +struct bpf_nh_params { + u32 nh_family; + union { + u32 ipv4_nh; + struct in6_addr ipv6_nh; + }; +}; + +struct bpf_redirect_info { + u64 tgt_index; + void *tgt_value; + struct bpf_map *map; + u32 flags; + u32 map_id; + enum bpf_map_type map_type; + struct bpf_nh_params nh; + u32 kern_flags; +}; + +struct bpf_net_context { + struct bpf_redirect_info ri; + struct list_head cpu_map_flush_list; + struct list_head dev_map_flush_list; + struct list_head xskmap_map_flush_list; +}; + +struct napi_struct; + +struct page_pool_params_fast { + unsigned int order; + unsigned int pool_size; + int nid; + struct device *dev; + struct napi_struct *napi; + enum dma_data_direction dma_dir; + unsigned int max_len; + unsigned int offset; +}; + +typedef long unsigned int netmem_ref; + +struct page_pool_alloc_stats { + u64 fast; + u64 slow; + u64 slow_high_order; + u64 empty; + u64 refill; + u64 waive; +}; + +struct pp_alloc_cache { + u32 count; + netmem_ref cache[128]; +}; + +struct ptr_ring { + int producer; + spinlock_t producer_lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + int consumer_head; + int consumer_tail; + spinlock_t consumer_lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + int size; + int batch; + void **queue; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct page_pool_params_slow { + struct net_device *netdev; + unsigned int queue_idx; + unsigned int flags; + void (*init_callback)(netmem_ref, void *); + void *init_arg; +}; + +struct memory_provider_ops; + +struct page_pool_recycle_stats; + +struct page_pool { + struct page_pool_params_fast p; + int cpuid; + u32 pages_state_hold_cnt; + bool has_init_callback: 1; + bool dma_map: 1; + bool dma_sync: 1; + bool dma_sync_for_cpu: 1; + bool system: 1; + long: 0; + __u8 __cacheline_group_begin__frag[0]; + long int frag_users; + netmem_ref frag_page; + unsigned int frag_offset; + long: 0; + __u8 __cacheline_group_end__frag[0]; + long: 64; + struct {} __cacheline_group_pad__frag; + struct delayed_work release_dw; + void (*disconnect)(void *); + long unsigned int defer_start; + long unsigned int defer_warn; + struct page_pool_alloc_stats alloc_stats; + u32 xdp_mem_id; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct pp_alloc_cache alloc; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct ptr_ring ring; + void *mp_priv; + const struct memory_provider_ops *mp_ops; + struct xarray dma_mapped; + struct page_pool_recycle_stats *recycle_stats; + atomic_t pages_state_release_cnt; + refcount_t user_cnt; + u64 destroy_cnt; + struct page_pool_params_slow slow; + struct { + struct hlist_node list; + u64 detach_time; + u32 id; + } user; + long: 64; +}; + +struct tree_descr { + const char *name; + const struct file_operations *ops; + int mode; +}; + +enum bpf_cmd { + BPF_MAP_CREATE = 0, + BPF_MAP_LOOKUP_ELEM = 1, + BPF_MAP_UPDATE_ELEM = 2, + BPF_MAP_DELETE_ELEM = 3, + BPF_MAP_GET_NEXT_KEY = 4, + BPF_PROG_LOAD = 5, + BPF_OBJ_PIN = 6, + BPF_OBJ_GET = 7, + BPF_PROG_ATTACH = 8, + BPF_PROG_DETACH = 9, + BPF_PROG_TEST_RUN = 10, + BPF_PROG_RUN = 10, + BPF_PROG_GET_NEXT_ID = 11, + BPF_MAP_GET_NEXT_ID = 12, + BPF_PROG_GET_FD_BY_ID = 13, + BPF_MAP_GET_FD_BY_ID = 14, + BPF_OBJ_GET_INFO_BY_FD = 15, + BPF_PROG_QUERY = 16, + BPF_RAW_TRACEPOINT_OPEN = 17, + BPF_BTF_LOAD = 18, + BPF_BTF_GET_FD_BY_ID = 19, + BPF_TASK_FD_QUERY = 20, + BPF_MAP_LOOKUP_AND_DELETE_ELEM = 21, + BPF_MAP_FREEZE = 22, + BPF_BTF_GET_NEXT_ID = 23, + BPF_MAP_LOOKUP_BATCH = 24, + BPF_MAP_LOOKUP_AND_DELETE_BATCH = 25, + BPF_MAP_UPDATE_BATCH = 26, + BPF_MAP_DELETE_BATCH = 27, + BPF_LINK_CREATE = 28, + BPF_LINK_UPDATE = 29, + BPF_LINK_GET_FD_BY_ID = 30, + BPF_LINK_GET_NEXT_ID = 31, + BPF_ENABLE_STATS = 32, + BPF_ITER_CREATE = 33, + BPF_LINK_DETACH = 34, + BPF_PROG_BIND_MAP = 35, + BPF_TOKEN_CREATE = 36, + BPF_PROG_STREAM_READ_BY_FD = 37, + __MAX_BPF_CMD = 38, +}; + +struct xdp_md { + __u32 data; + __u32 data_end; + __u32 data_meta; + __u32 ingress_ifindex; + __u32 rx_queue_index; + __u32 egress_ifindex; +}; + +typedef __kernel_sa_family_t sa_family_t; + +struct sockaddr { + sa_family_t sa_family; + union { + char sa_data_min[14]; + struct { + struct {} __empty_sa_data; + char sa_data[0]; + }; + }; +}; + +typedef struct { + unsigned int clock_rate; + unsigned int clock_type; + short unsigned int loopback; +} sync_serial_settings; + +typedef struct { + unsigned int clock_rate; + unsigned int clock_type; + short unsigned int loopback; + unsigned int slot_map; +} te1_settings; + +typedef struct { + short unsigned int encoding; + short unsigned int parity; +} raw_hdlc_proto; + +typedef struct { + unsigned int t391; + unsigned int t392; + unsigned int n391; + unsigned int n392; + unsigned int n393; + short unsigned int lmi; + short unsigned int dce; +} fr_proto; + +typedef struct { + unsigned int dlci; +} fr_proto_pvc; + +typedef struct { + unsigned int dlci; + char master[16]; +} fr_proto_pvc_info; + +typedef struct { + unsigned int interval; + unsigned int timeout; +} cisco_proto; + +typedef struct { + short unsigned int dce; + unsigned int modulo; + unsigned int window; + unsigned int t1; + unsigned int t2; + unsigned int n2; +} x25_hdlc_proto; + +struct ifmap { + long unsigned int mem_start; + long unsigned int mem_end; + short unsigned int base_addr; + unsigned char irq; + unsigned char dma; + unsigned char port; +}; + +struct if_settings { + unsigned int type; + unsigned int size; + union { + raw_hdlc_proto *raw_hdlc; + cisco_proto *cisco; + fr_proto *fr; + fr_proto_pvc *fr_pvc; + fr_proto_pvc_info *fr_pvc_info; + x25_hdlc_proto *x25; + sync_serial_settings *sync; + te1_settings *te1; + } ifs_ifsu; +}; + +struct ifreq { + union { + char ifrn_name[16]; + } ifr_ifrn; + union { + struct sockaddr ifru_addr; + struct sockaddr ifru_dstaddr; + struct sockaddr ifru_broadaddr; + struct sockaddr ifru_netmask; + struct sockaddr ifru_hwaddr; + short int ifru_flags; + int ifru_ivalue; + int ifru_mtu; + struct ifmap ifru_map; + char ifru_slave[16]; + char ifru_newname[16]; + void *ifru_data; + struct if_settings ifru_settings; + } ifr_ifru; +}; + +struct btf_enum { + __u32 name_off; + __s32 val; +}; + +typedef struct { + local64_t v; +} u64_stats_t; + +struct bpf_offloaded_map; + +struct bpf_map_dev_ops { + int (*map_get_next_key)(struct bpf_offloaded_map *, void *, void *); + int (*map_lookup_elem)(struct bpf_offloaded_map *, void *, void *); + int (*map_update_elem)(struct bpf_offloaded_map *, void *, void *, u64); + int (*map_delete_elem)(struct bpf_offloaded_map *, void *); +}; + +struct bpf_offloaded_map { + struct bpf_map map; + struct net_device *netdev; + const struct bpf_map_dev_ops *dev_ops; + void *dev_priv; + struct list_head offloads; +}; + +typedef u64 netdev_features_t; + +struct netdev_tc_txq { + u16 count; + u16 offset; +}; + +enum rx_handler_result { + RX_HANDLER_CONSUMED = 0, + RX_HANDLER_ANOTHER = 1, + RX_HANDLER_EXACT = 2, + RX_HANDLER_PASS = 3, +}; + +typedef enum rx_handler_result rx_handler_result_t; + +typedef rx_handler_result_t rx_handler_func_t(struct sk_buff **); + +typedef struct { + struct net *net; +} possible_net_t; + +typedef u32 xdp_features_t; + +struct net_device_stats { + union { + long unsigned int rx_packets; + atomic_long_t __rx_packets; + }; + union { + long unsigned int tx_packets; + atomic_long_t __tx_packets; + }; + union { + long unsigned int rx_bytes; + atomic_long_t __rx_bytes; + }; + union { + long unsigned int tx_bytes; + atomic_long_t __tx_bytes; + }; + union { + long unsigned int rx_errors; + atomic_long_t __rx_errors; + }; + union { + long unsigned int tx_errors; + atomic_long_t __tx_errors; + }; + union { + long unsigned int rx_dropped; + atomic_long_t __rx_dropped; + }; + union { + long unsigned int tx_dropped; + atomic_long_t __tx_dropped; + }; + union { + long unsigned int multicast; + atomic_long_t __multicast; + }; + union { + long unsigned int collisions; + atomic_long_t __collisions; + }; + union { + long unsigned int rx_length_errors; + atomic_long_t __rx_length_errors; + }; + union { + long unsigned int rx_over_errors; + atomic_long_t __rx_over_errors; + }; + union { + long unsigned int rx_crc_errors; + atomic_long_t __rx_crc_errors; + }; + union { + long unsigned int rx_frame_errors; + atomic_long_t __rx_frame_errors; + }; + union { + long unsigned int rx_fifo_errors; + atomic_long_t __rx_fifo_errors; + }; + union { + long unsigned int rx_missed_errors; + atomic_long_t __rx_missed_errors; + }; + union { + long unsigned int tx_aborted_errors; + atomic_long_t __tx_aborted_errors; + }; + union { + long unsigned int tx_carrier_errors; + atomic_long_t __tx_carrier_errors; + }; + union { + long unsigned int tx_fifo_errors; + atomic_long_t __tx_fifo_errors; + }; + union { + long unsigned int tx_heartbeat_errors; + atomic_long_t __tx_heartbeat_errors; + }; + union { + long unsigned int tx_window_errors; + atomic_long_t __tx_window_errors; + }; + union { + long unsigned int rx_compressed; + atomic_long_t __rx_compressed; + }; + union { + long unsigned int tx_compressed; + atomic_long_t __tx_compressed; + }; +}; + +struct netdev_hw_addr_list { + struct list_head list; + int count; + struct rb_root tree; +}; + +struct tipc_bearer; + +struct mpls_dev; + +enum netdev_ml_priv_type { + ML_PRIV_NONE = 0, + ML_PRIV_CAN = 1, +}; + +enum netdev_stat_type { + NETDEV_PCPU_STAT_NONE = 0, + NETDEV_PCPU_STAT_LSTATS = 1, + NETDEV_PCPU_STAT_TSTATS = 2, + NETDEV_PCPU_STAT_DSTATS = 3, +}; + +struct garp_port; + +struct mrp_port; + +struct bpf_xdp_link; + +struct bpf_xdp_entity { + struct bpf_prog *prog; + struct bpf_xdp_link *link; +}; + +struct net_device_ops; + +struct header_ops; + +struct netdev_queue; + +struct xps_dev_maps; + +struct bpf_mprog_entry; + +struct pcpu_lstats; + +struct pcpu_sw_netstats; + +struct pcpu_dstats; + +struct inet6_dev; + +struct netdev_rx_queue; + +struct netpoll_info; + +struct netdev_name_node; + +struct dev_ifalias; + +struct xdp_metadata_ops; + +struct xsk_tx_metadata_ops; + +struct net_device_core_stats; + +struct ethtool_ops; + +struct l3mdev_ops; + +struct ndisc_ops; + +struct xfrmdev_ops; + +struct tlsdev_ops; + +struct in_device; + +struct vlan_info; + +struct dsa_port; + +struct ax25_dev; + +struct wireless_dev; + +struct wpan_dev; + +struct mctp_dev; + +struct cpu_rmap; + +struct Qdisc; + +struct xdp_dev_bulk_queue; + +struct dm_hw_stat_delta; + +struct rtnl_link_ops; + +struct netdev_stat_ops; + +struct netdev_queue_mgmt_ops; + +struct dcbnl_rtnl_ops; + +struct netprio_map; + +struct phy_link_topology; + +struct phy_device; + +struct sfp_bus; + +struct macsec_ops; + +struct udp_tunnel_nic_info; + +struct udp_tunnel_nic; + +struct netdev_config; + +struct ethtool_netdev_state; + +struct rtnl_hw_stats64; + +struct devlink_port; + +struct dpll_pin; + +struct dim_irq_moder; + +struct napi_config; + +struct net_shaper_hierarchy; + +struct hwtstamp_provider; + +struct net_device { + __u8 __cacheline_group_begin__net_device_read_tx[0]; + union { + struct { + long unsigned int priv_flags: 32; + long unsigned int lltx: 1; + long unsigned int netmem_tx: 1; + }; + struct { + long unsigned int priv_flags: 32; + long unsigned int lltx: 1; + long unsigned int netmem_tx: 1; + } priv_flags_fast; + }; + const struct net_device_ops *netdev_ops; + const struct header_ops *header_ops; + struct netdev_queue *_tx; + netdev_features_t gso_partial_features; + unsigned int real_num_tx_queues; + unsigned int gso_max_size; + unsigned int gso_ipv4_max_size; + u16 gso_max_segs; + s16 num_tc; + unsigned int mtu; + short unsigned int needed_headroom; + struct netdev_tc_txq tc_to_txq[16]; + struct xps_dev_maps *xps_maps[2]; + struct nf_hook_entries *nf_hooks_egress; + struct bpf_mprog_entry *tcx_egress; + __u8 __cacheline_group_end__net_device_read_tx[0]; + __u8 __cacheline_group_begin__net_device_read_txrx[0]; + union { + struct pcpu_lstats *lstats; + struct pcpu_sw_netstats *tstats; + struct pcpu_dstats *dstats; + }; + long unsigned int state; + unsigned int flags; + short unsigned int hard_header_len; + netdev_features_t features; + struct inet6_dev *ip6_ptr; + __u8 __cacheline_group_end__net_device_read_txrx[0]; + __u8 __cacheline_group_begin__net_device_read_rx[0]; + struct bpf_prog *xdp_prog; + struct list_head ptype_specific; + int ifindex; + unsigned int real_num_rx_queues; + struct netdev_rx_queue *_rx; + unsigned int gro_max_size; + unsigned int gro_ipv4_max_size; + rx_handler_func_t *rx_handler; + void *rx_handler_data; + possible_net_t nd_net; + struct netpoll_info *npinfo; + struct bpf_mprog_entry *tcx_ingress; + __u8 __cacheline_group_end__net_device_read_rx[0]; + char name[16]; + struct netdev_name_node *name_node; + struct dev_ifalias *ifalias; + long unsigned int mem_end; + long unsigned int mem_start; + long unsigned int base_addr; + struct list_head dev_list; + struct list_head napi_list; + struct list_head unreg_list; + struct list_head close_list; + struct list_head ptype_all; + struct { + struct list_head upper; + struct list_head lower; + } adj_list; + xdp_features_t xdp_features; + const struct xdp_metadata_ops *xdp_metadata_ops; + const struct xsk_tx_metadata_ops *xsk_tx_metadata_ops; + short unsigned int gflags; + short unsigned int needed_tailroom; + netdev_features_t hw_features; + netdev_features_t wanted_features; + netdev_features_t vlan_features; + netdev_features_t hw_enc_features; + netdev_features_t mpls_features; + unsigned int min_mtu; + unsigned int max_mtu; + short unsigned int type; + unsigned char min_header_len; + unsigned char name_assign_type; + int group; + struct net_device_stats stats; + struct net_device_core_stats *core_stats; + atomic_t carrier_up_count; + atomic_t carrier_down_count; + const struct ethtool_ops *ethtool_ops; + const struct l3mdev_ops *l3mdev_ops; + const struct ndisc_ops *ndisc_ops; + const struct xfrmdev_ops *xfrmdev_ops; + const struct tlsdev_ops *tlsdev_ops; + unsigned int operstate; + unsigned char link_mode; + unsigned char if_port; + unsigned char dma; + unsigned char perm_addr[32]; + unsigned char addr_assign_type; + unsigned char addr_len; + unsigned char upper_level; + unsigned char lower_level; + u8 threaded; + short unsigned int neigh_priv_len; + short unsigned int dev_id; + short unsigned int dev_port; + int irq; + u32 priv_len; + spinlock_t addr_list_lock; + struct netdev_hw_addr_list uc; + struct netdev_hw_addr_list mc; + struct netdev_hw_addr_list dev_addrs; + struct kset *queues_kset; + unsigned int promiscuity; + unsigned int allmulti; + bool uc_promisc; + struct in_device *ip_ptr; + struct hlist_head fib_nh_head; + struct vlan_info *vlan_info; + struct dsa_port *dsa_ptr; + struct tipc_bearer *tipc_ptr; + void *atalk_ptr; + struct ax25_dev *ax25_ptr; + struct wireless_dev *ieee80211_ptr; + struct wpan_dev *ieee802154_ptr; + struct mpls_dev *mpls_ptr; + struct mctp_dev *mctp_ptr; + const unsigned char *dev_addr; + unsigned int num_rx_queues; + unsigned int xdp_zc_max_segs; + struct netdev_queue *ingress_queue; + struct nf_hook_entries *nf_hooks_ingress; + unsigned char broadcast[32]; + struct cpu_rmap *rx_cpu_rmap; + struct hlist_node index_hlist; + unsigned int num_tx_queues; + struct Qdisc *qdisc; + unsigned int tx_queue_len; + spinlock_t tx_global_lock; + struct xdp_dev_bulk_queue *xdp_bulkq; + struct hlist_head qdisc_hash[16]; + struct timer_list watchdog_timer; + int watchdog_timeo; + u32 proto_down_reason; + struct list_head todo_list; + int *pcpu_refcnt; + struct ref_tracker_dir refcnt_tracker; + struct list_head link_watch_list; + u8 reg_state; + bool dismantle; + bool moving_ns; + bool rtnl_link_initializing; + bool needs_free_netdev; + void (*priv_destructor)(struct net_device *); + void *ml_priv; + enum netdev_ml_priv_type ml_priv_type; + enum netdev_stat_type pcpu_stat_type: 8; + struct garp_port *garp_port; + struct mrp_port *mrp_port; + struct dm_hw_stat_delta *dm_private; + struct device dev; + const struct attribute_group *sysfs_groups[5]; + const struct attribute_group *sysfs_rx_queue_group; + const struct rtnl_link_ops *rtnl_link_ops; + const struct netdev_stat_ops *stat_ops; + const struct netdev_queue_mgmt_ops *queue_mgmt_ops; + unsigned int tso_max_size; + u16 tso_max_segs; + const struct dcbnl_rtnl_ops *dcbnl_ops; + u8 prio_tc_map[16]; + struct netprio_map *priomap; + struct phy_link_topology *link_topo; + struct phy_device *phydev; + struct sfp_bus *sfp_bus; + struct lock_class_key *qdisc_tx_busylock; + bool proto_down; + bool irq_affinity_auto; + bool rx_cpu_rmap_auto; + long unsigned int see_all_hwtstamp_requests: 1; + long unsigned int change_proto_down: 1; + long unsigned int netns_immutable: 1; + long unsigned int fcoe_mtu: 1; + struct list_head net_notifier_list; + const struct macsec_ops *macsec_ops; + const struct udp_tunnel_nic_info *udp_tunnel_nic_info; + struct udp_tunnel_nic *udp_tunnel_nic; + struct netdev_config *cfg; + struct netdev_config *cfg_pending; + struct ethtool_netdev_state *ethtool; + struct bpf_xdp_entity xdp_state[3]; + u8 dev_addr_shadow[32]; + netdevice_tracker linkwatch_dev_tracker; + netdevice_tracker watchdog_dev_tracker; + netdevice_tracker dev_registered_tracker; + struct rtnl_hw_stats64 *offload_xstats_l3; + struct devlink_port *devlink_port; + struct dpll_pin *dpll_pin; + struct hlist_head page_pools; + struct dim_irq_moder *irq_moder; + u64 max_pacing_offload_horizon; + struct napi_config *napi_config; + u32 num_napi_configs; + u32 napi_defer_hard_irqs; + long unsigned int gro_flush_timeout; + bool up; + bool request_ops_lock; + struct mutex lock; + struct net_shaper_hierarchy *net_shaper_hierarchy; + struct hlist_head neighbours[2]; + struct hwtstamp_provider *hwprov; + long: 64; + long: 64; + u8 priv[0]; +}; + +struct bpf_prog_stats { + u64_stats_t cnt; + u64_stats_t nsecs; + u64_stats_t misses; + struct u64_stats_sync syncp; + long: 64; +}; + +struct sock_fprog_kern { + u16 len; + struct sock_filter *filter; +}; + +struct bpf_mount_opts { + kuid_t uid; + kgid_t gid; + umode_t mode; + u64 delegate_cmds; + u64 delegate_maps; + u64 delegate_progs; + u64 delegate_attachs; +}; + +struct tc_stats { + __u64 bytes; + __u32 packets; + __u32 drops; + __u32 overlimits; + __u32 bps; + __u32 pps; + __u32 qlen; + __u32 backlog; +}; + +struct tc_sizespec { + unsigned char cell_log; + unsigned char size_log; + short int cell_align; + int overhead; + unsigned int linklayer; + unsigned int mpu; + unsigned int mtu; + unsigned int tsize; +}; + +struct skb_shared_hwtstamps { + union { + ktime_t hwtstamp; + void *netdev_data; + }; +}; + +struct dql { + unsigned int num_queued; + unsigned int adj_limit; + unsigned int last_obj_cnt; + short unsigned int stall_thrs; + long unsigned int history_head; + long unsigned int history[4]; + long: 64; + unsigned int limit; + unsigned int num_completed; + unsigned int prev_ovlimit; + unsigned int prev_num_queued; + unsigned int prev_last_obj_cnt; + unsigned int lowest_slack; + long unsigned int slack_start_time; + unsigned int max_limit; + unsigned int min_limit; + unsigned int slack_hold_time; + short unsigned int stall_max; + long unsigned int last_reap; + long unsigned int stall_cnt; +}; + +struct hh_cache { + unsigned int hh_len; + seqlock_t hh_lock; + long unsigned int hh_data[16]; +}; + +struct neigh_table; + +struct neigh_parms; + +struct neigh_ops; + +struct neighbour { + struct hlist_node hash; + struct hlist_node dev_list; + struct neigh_table *tbl; + struct neigh_parms *parms; + long unsigned int confirmed; + long unsigned int updated; + rwlock_t lock; + refcount_t refcnt; + unsigned int arp_queue_len_bytes; + struct sk_buff_head arp_queue; + struct timer_list timer; + long unsigned int used; + atomic_t probes; + u8 nud_state; + u8 type; + u8 dead; + u8 protocol; + u32 flags; + seqlock_t ha_lock; + long: 0; + unsigned char ha[32]; + struct hh_cache hh; + int (*output)(struct neighbour *, struct sk_buff *); + const struct neigh_ops *ops; + struct list_head gc_list; + struct list_head managed_list; + struct callback_head rcu; + struct net_device *dev; + netdevice_tracker dev_tracker; + u8 primary_key[0]; +}; + +struct ieee_ets { + __u8 willing; + __u8 ets_cap; + __u8 cbs; + __u8 tc_tx_bw[8]; + __u8 tc_rx_bw[8]; + __u8 tc_tsa[8]; + __u8 prio_tc[8]; + __u8 tc_reco_bw[8]; + __u8 tc_reco_tsa[8]; + __u8 reco_prio_tc[8]; +}; + +struct ieee_maxrate { + __u64 tc_maxrate[8]; +}; + +struct ieee_qcn { + __u8 rpg_enable[8]; + __u32 rppp_max_rps[8]; + __u32 rpg_time_reset[8]; + __u32 rpg_byte_reset[8]; + __u32 rpg_threshold[8]; + __u32 rpg_max_rate[8]; + __u32 rpg_ai_rate[8]; + __u32 rpg_hai_rate[8]; + __u32 rpg_gd[8]; + __u32 rpg_min_dec_fac[8]; + __u32 rpg_min_rate[8]; + __u32 cndd_state_machine[8]; +}; + +struct ieee_qcn_stats { + __u64 rppp_rp_centiseconds[8]; + __u32 rppp_created_rps[8]; +}; + +struct ieee_pfc { + __u8 pfc_cap; + __u8 pfc_en; + __u8 mbc; + __u16 delay; + __u64 requests[8]; + __u64 indications[8]; +}; + +struct dcbnl_buffer { + __u8 prio2buffer[8]; + __u32 buffer_size[8]; + __u32 total_size; +}; + +struct cee_pg { + __u8 willing; + __u8 error; + __u8 pg_en; + __u8 tcs_supported; + __u8 pg_bw[8]; + __u8 prio_pg[8]; +}; + +struct cee_pfc { + __u8 willing; + __u8 error; + __u8 pfc_en; + __u8 tcs_supported; +}; + +struct dcb_app { + __u8 selector; + __u8 priority; + __u16 protocol; +}; + +struct dcb_peer_app_info { + __u8 willing; + __u8 error; +}; + +struct dcbnl_rtnl_ops { + int (*ieee_getets)(struct net_device *, struct ieee_ets *); + int (*ieee_setets)(struct net_device *, struct ieee_ets *); + int (*ieee_getmaxrate)(struct net_device *, struct ieee_maxrate *); + int (*ieee_setmaxrate)(struct net_device *, struct ieee_maxrate *); + int (*ieee_getqcn)(struct net_device *, struct ieee_qcn *); + int (*ieee_setqcn)(struct net_device *, struct ieee_qcn *); + int (*ieee_getqcnstats)(struct net_device *, struct ieee_qcn_stats *); + int (*ieee_getpfc)(struct net_device *, struct ieee_pfc *); + int (*ieee_setpfc)(struct net_device *, struct ieee_pfc *); + int (*ieee_getapp)(struct net_device *, struct dcb_app *); + int (*ieee_setapp)(struct net_device *, struct dcb_app *); + int (*ieee_delapp)(struct net_device *, struct dcb_app *); + int (*ieee_peer_getets)(struct net_device *, struct ieee_ets *); + int (*ieee_peer_getpfc)(struct net_device *, struct ieee_pfc *); + u8 (*getstate)(struct net_device *); + u8 (*setstate)(struct net_device *, u8); + void (*getpermhwaddr)(struct net_device *, u8 *); + void (*setpgtccfgtx)(struct net_device *, int, u8, u8, u8, u8); + void (*setpgbwgcfgtx)(struct net_device *, int, u8); + void (*setpgtccfgrx)(struct net_device *, int, u8, u8, u8, u8); + void (*setpgbwgcfgrx)(struct net_device *, int, u8); + void (*getpgtccfgtx)(struct net_device *, int, u8 *, u8 *, u8 *, u8 *); + void (*getpgbwgcfgtx)(struct net_device *, int, u8 *); + void (*getpgtccfgrx)(struct net_device *, int, u8 *, u8 *, u8 *, u8 *); + void (*getpgbwgcfgrx)(struct net_device *, int, u8 *); + void (*setpfccfg)(struct net_device *, int, u8); + void (*getpfccfg)(struct net_device *, int, u8 *); + u8 (*setall)(struct net_device *); + u8 (*getcap)(struct net_device *, int, u8 *); + int (*getnumtcs)(struct net_device *, int, u8 *); + int (*setnumtcs)(struct net_device *, int, u8); + u8 (*getpfcstate)(struct net_device *); + void (*setpfcstate)(struct net_device *, u8); + void (*getbcncfg)(struct net_device *, int, u32 *); + void (*setbcncfg)(struct net_device *, int, u32); + void (*getbcnrp)(struct net_device *, int, u8 *); + void (*setbcnrp)(struct net_device *, int, u8); + int (*setapp)(struct net_device *, u8, u16, u8); + int (*getapp)(struct net_device *, u8, u16); + u8 (*getfeatcfg)(struct net_device *, int, u8 *); + u8 (*setfeatcfg)(struct net_device *, int, u8); + u8 (*getdcbx)(struct net_device *); + u8 (*setdcbx)(struct net_device *, u8); + int (*peer_getappinfo)(struct net_device *, struct dcb_peer_app_info *, u16 *); + int (*peer_getapptable)(struct net_device *, struct dcb_app *); + int (*cee_peer_getpg)(struct net_device *, struct cee_pg *); + int (*cee_peer_getpfc)(struct net_device *, struct cee_pfc *); + int (*dcbnl_getbuffer)(struct net_device *, struct dcbnl_buffer *); + int (*dcbnl_setbuffer)(struct net_device *, struct dcbnl_buffer *); + int (*dcbnl_setapptrust)(struct net_device *, u8 *, int); + int (*dcbnl_getapptrust)(struct net_device *, u8 *, int *); + int (*dcbnl_setrewr)(struct net_device *, struct dcb_app *); + int (*dcbnl_delrewr)(struct net_device *, struct dcb_app *); +}; + +struct netprio_map { + struct callback_head rcu; + u32 priomap_len; + u32 priomap[0]; +}; + +struct nlmsghdr { + __u32 nlmsg_len; + __u16 nlmsg_type; + __u16 nlmsg_flags; + __u32 nlmsg_seq; + __u32 nlmsg_pid; +}; + +struct nlattr { + __u16 nla_len; + __u16 nla_type; +}; + +struct nla_policy; + +struct netlink_ext_ack { + const char *_msg; + const struct nlattr *bad_attr; + const struct nla_policy *policy; + const struct nlattr *miss_nest; + u16 miss_type; + u8 cookie[8]; + u8 cookie_len; + char _msg_buf[80]; +}; + +struct netlink_range_validation; + +struct netlink_range_validation_signed; + +struct nla_policy { + u8 type; + u8 validation_type; + u16 len; + union { + u16 strict_start_type; + const u32 bitfield32_valid; + const u32 mask; + const char *reject_message; + const struct nla_policy *nested_policy; + const struct netlink_range_validation *range; + const struct netlink_range_validation_signed *range_signed; + struct { + s16 min; + s16 max; + }; + int (*validate)(const struct nlattr *, struct netlink_ext_ack *); + }; +}; + +struct netlink_callback { + struct sk_buff *skb; + const struct nlmsghdr *nlh; + int (*dump)(struct sk_buff *, struct netlink_callback *); + int (*done)(struct netlink_callback *); + void *data; + struct module *module; + struct netlink_ext_ack *extack; + u16 family; + u16 answer_flags; + u32 min_dump_alloc; + unsigned int prev_seq; + unsigned int seq; + int flags; + bool strict_check; + union { + u8 ctx[48]; + long int args[6]; + }; +}; + +struct ndmsg { + __u8 ndm_family; + __u8 ndm_pad1; + __u16 ndm_pad2; + __s32 ndm_ifindex; + __u16 ndm_state; + __u8 ndm_flags; + __u8 ndm_type; +}; + +struct rtnl_link_stats64 { + __u64 rx_packets; + __u64 tx_packets; + __u64 rx_bytes; + __u64 tx_bytes; + __u64 rx_errors; + __u64 tx_errors; + __u64 rx_dropped; + __u64 tx_dropped; + __u64 multicast; + __u64 collisions; + __u64 rx_length_errors; + __u64 rx_over_errors; + __u64 rx_crc_errors; + __u64 rx_frame_errors; + __u64 rx_fifo_errors; + __u64 rx_missed_errors; + __u64 tx_aborted_errors; + __u64 tx_carrier_errors; + __u64 tx_fifo_errors; + __u64 tx_heartbeat_errors; + __u64 tx_window_errors; + __u64 rx_compressed; + __u64 tx_compressed; + __u64 rx_nohandler; + __u64 rx_otherhost_dropped; +}; + +struct rtnl_hw_stats64 { + __u64 rx_packets; + __u64 tx_packets; + __u64 rx_bytes; + __u64 tx_bytes; + __u64 rx_errors; + __u64 tx_errors; + __u64 rx_dropped; + __u64 tx_dropped; + __u64 multicast; +}; + +struct ifla_vf_guid { + __u32 vf; + __u64 guid; +}; + +struct ifla_vf_stats { + __u64 rx_packets; + __u64 tx_packets; + __u64 rx_bytes; + __u64 tx_bytes; + __u64 broadcast; + __u64 multicast; + __u64 rx_dropped; + __u64 tx_dropped; +}; + +struct ifla_vf_info { + __u32 vf; + __u8 mac[32]; + __u32 vlan; + __u32 qos; + __u32 spoofchk; + __u32 linkstate; + __u32 min_tx_rate; + __u32 max_tx_rate; + __u32 rss_query_en; + __u32 trusted; + __be16 vlan_proto; +}; + +enum netdev_tx { + __NETDEV_TX_MIN = -2147483648, + NETDEV_TX_OK = 0, + NETDEV_TX_BUSY = 16, +}; + +typedef enum netdev_tx netdev_tx_t; + +struct net_device_core_stats { + long unsigned int rx_dropped; + long unsigned int tx_dropped; + long unsigned int rx_nohandler; + long unsigned int rx_otherhost_dropped; +}; + +struct header_ops { + int (*create)(struct sk_buff *, struct net_device *, short unsigned int, const void *, const void *, unsigned int); + int (*parse)(const struct sk_buff *, unsigned char *); + int (*cache)(const struct neighbour *, struct hh_cache *, __be16); + void (*cache_update)(struct hh_cache *, const struct net_device *, const unsigned char *); + bool (*validate)(const char *, unsigned int); + __be16 (*parse_protocol)(const struct sk_buff *); +}; + +struct gro_list { + struct list_head list; + int count; +}; + +struct gro_node { + long unsigned int bitmask; + struct gro_list hash[8]; + struct list_head rx_list; + u32 rx_count; + u32 cached_napi_id; +}; + +struct napi_config { + u64 gro_flush_timeout; + u64 irq_suspend_timeout; + u32 defer_hard_irqs; + cpumask_t affinity_mask; + u8 threaded; + unsigned int napi_id; +}; + +struct napi_struct { + struct list_head poll_list; + long unsigned int state; + int weight; + u32 defer_hard_irqs_count; + int (*poll)(struct napi_struct *, int); + int poll_owner; + int list_owner; + struct net_device *dev; + struct sk_buff *skb; + struct gro_node gro; + struct hrtimer timer; + struct task_struct *thread; + long unsigned int gro_flush_timeout; + long unsigned int irq_suspend_timeout; + u32 defer_hard_irqs; + u32 napi_id; + struct list_head dev_list; + struct hlist_node napi_hash_node; + int irq; + struct irq_affinity_notify notify; + int napi_rmap_idx; + int index; + struct napi_config *config; +}; + +struct xsk_buff_pool; + +struct netdev_queue { + struct net_device *dev; + netdevice_tracker dev_tracker; + struct Qdisc *qdisc; + struct Qdisc *qdisc_sleeping; + struct kobject kobj; + const struct attribute_group **groups; + long unsigned int tx_maxrate; + atomic_long_t trans_timeout; + struct net_device *sb_dev; + struct xsk_buff_pool *pool; + struct dql dql; + spinlock_t _xmit_lock; + int xmit_lock_owner; + long unsigned int trans_start; + long unsigned int state; + struct napi_struct *napi; + int numa_node; + long: 64; + long: 64; + long: 64; +}; + +struct qdisc_skb_head { + struct sk_buff *head; + struct sk_buff *tail; + __u32 qlen; + spinlock_t lock; +}; + +struct gnet_stats_basic_sync { + u64_stats_t bytes; + u64_stats_t packets; + struct u64_stats_sync syncp; +}; + +struct gnet_stats_queue { + __u32 qlen; + __u32 backlog; + __u32 drops; + __u32 requeues; + __u32 overlimits; +}; + +struct Qdisc_ops; + +struct qdisc_size_table; + +struct net_rate_estimator; + +struct Qdisc { + int (*enqueue)(struct sk_buff *, struct Qdisc *, struct sk_buff **); + struct sk_buff * (*dequeue)(struct Qdisc *); + unsigned int flags; + u32 limit; + const struct Qdisc_ops *ops; + struct qdisc_size_table *stab; + struct hlist_node hash; + u32 handle; + u32 parent; + struct netdev_queue *dev_queue; + struct net_rate_estimator *rate_est; + struct gnet_stats_basic_sync *cpu_bstats; + struct gnet_stats_queue *cpu_qstats; + int pad; + refcount_t refcnt; + long: 64; + long: 64; + long: 64; + struct sk_buff_head gso_skb; + struct qdisc_skb_head q; + struct gnet_stats_basic_sync bstats; + struct gnet_stats_queue qstats; + int owner; + long unsigned int state; + long unsigned int state2; + struct Qdisc *next_sched; + struct sk_buff_head skb_bad_txq; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + spinlock_t busylock; + spinlock_t seqlock; + struct callback_head rcu; + netdevice_tracker dev_tracker; + struct lock_class_key root_lock_key; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long int privdata[0]; +}; + +struct xps_map { + unsigned int len; + unsigned int alloc_len; + struct callback_head rcu; + u16 queues[0]; +}; + +struct xps_dev_maps { + struct callback_head rcu; + unsigned int nr_ids; + s16 num_tc; + struct xps_map *attr_map[0]; +}; + +struct netdev_phys_item_id { + unsigned char id[32]; + unsigned char id_len; +}; + +enum net_device_path_type { + DEV_PATH_ETHERNET = 0, + DEV_PATH_VLAN = 1, + DEV_PATH_BRIDGE = 2, + DEV_PATH_PPPOE = 3, + DEV_PATH_DSA = 4, + DEV_PATH_MTK_WDMA = 5, +}; + +struct net_device_path { + enum net_device_path_type type; + const struct net_device *dev; + union { + struct { + u16 id; + __be16 proto; + u8 h_dest[6]; + } encap; + struct { + enum { + DEV_PATH_BR_VLAN_KEEP = 0, + DEV_PATH_BR_VLAN_TAG = 1, + DEV_PATH_BR_VLAN_UNTAG = 2, + DEV_PATH_BR_VLAN_UNTAG_HW = 3, + } vlan_mode; + u16 vlan_id; + __be16 vlan_proto; + } bridge; + struct { + int port; + u16 proto; + } dsa; + struct { + u8 wdma_idx; + u8 queue; + u16 wcid; + u8 bss; + u8 amsdu; + } mtk_wdma; + }; +}; + +struct net_device_path_ctx { + const struct net_device *dev; + u8 daddr[6]; + int num_vlans; + struct { + u16 id; + __be16 proto; + } vlan[2]; +}; + +enum tc_setup_type { + TC_QUERY_CAPS = 0, + TC_SETUP_QDISC_MQPRIO = 1, + TC_SETUP_CLSU32 = 2, + TC_SETUP_CLSFLOWER = 3, + TC_SETUP_CLSMATCHALL = 4, + TC_SETUP_CLSBPF = 5, + TC_SETUP_BLOCK = 6, + TC_SETUP_QDISC_CBS = 7, + TC_SETUP_QDISC_RED = 8, + TC_SETUP_QDISC_PRIO = 9, + TC_SETUP_QDISC_MQ = 10, + TC_SETUP_QDISC_ETF = 11, + TC_SETUP_ROOT_QDISC = 12, + TC_SETUP_QDISC_GRED = 13, + TC_SETUP_QDISC_TAPRIO = 14, + TC_SETUP_FT = 15, + TC_SETUP_QDISC_ETS = 16, + TC_SETUP_QDISC_TBF = 17, + TC_SETUP_QDISC_FIFO = 18, + TC_SETUP_QDISC_HTB = 19, + TC_SETUP_ACT = 20, +}; + +enum bpf_netdev_command { + XDP_SETUP_PROG = 0, + XDP_SETUP_PROG_HW = 1, + BPF_OFFLOAD_MAP_ALLOC = 2, + BPF_OFFLOAD_MAP_FREE = 3, + XDP_SETUP_XSK_POOL = 4, +}; + +struct netdev_bpf { + enum bpf_netdev_command command; + union { + struct { + u32 flags; + struct bpf_prog *prog; + struct netlink_ext_ack *extack; + }; + struct { + struct bpf_offloaded_map *offmap; + }; + struct { + struct xsk_buff_pool *pool; + u16 queue_id; + } xsk; + }; +}; + +struct xfrm_policy; + +struct xfrmdev_ops { + int (*xdo_dev_state_add)(struct net_device *, struct xfrm_state *, struct netlink_ext_ack *); + void (*xdo_dev_state_delete)(struct net_device *, struct xfrm_state *); + void (*xdo_dev_state_free)(struct net_device *, struct xfrm_state *); + bool (*xdo_dev_offload_ok)(struct sk_buff *, struct xfrm_state *); + void (*xdo_dev_state_advance_esn)(struct xfrm_state *); + void (*xdo_dev_state_update_stats)(struct xfrm_state *); + int (*xdo_dev_policy_add)(struct xfrm_policy *, struct netlink_ext_ack *); + void (*xdo_dev_policy_delete)(struct xfrm_policy *); + void (*xdo_dev_policy_free)(struct xfrm_policy *); +}; + +struct dev_ifalias { + struct callback_head rcuhead; + char ifalias[0]; +}; + +struct xdp_frame; + +struct xdp_buff; + +struct ip_tunnel_parm_kern; + +struct kernel_hwtstamp_config; + +struct net_shaper_ops; + +struct net_device_ops { + int (*ndo_init)(struct net_device *); + void (*ndo_uninit)(struct net_device *); + int (*ndo_open)(struct net_device *); + int (*ndo_stop)(struct net_device *); + netdev_tx_t (*ndo_start_xmit)(struct sk_buff *, struct net_device *); + netdev_features_t (*ndo_features_check)(struct sk_buff *, struct net_device *, netdev_features_t); + u16 (*ndo_select_queue)(struct net_device *, struct sk_buff *, struct net_device *); + void (*ndo_change_rx_flags)(struct net_device *, int); + void (*ndo_set_rx_mode)(struct net_device *); + int (*ndo_set_mac_address)(struct net_device *, void *); + int (*ndo_validate_addr)(struct net_device *); + int (*ndo_do_ioctl)(struct net_device *, struct ifreq *, int); + int (*ndo_eth_ioctl)(struct net_device *, struct ifreq *, int); + int (*ndo_siocbond)(struct net_device *, struct ifreq *, int); + int (*ndo_siocwandev)(struct net_device *, struct if_settings *); + int (*ndo_siocdevprivate)(struct net_device *, struct ifreq *, void *, int); + int (*ndo_set_config)(struct net_device *, struct ifmap *); + int (*ndo_change_mtu)(struct net_device *, int); + int (*ndo_neigh_setup)(struct net_device *, struct neigh_parms *); + void (*ndo_tx_timeout)(struct net_device *, unsigned int); + void (*ndo_get_stats64)(struct net_device *, struct rtnl_link_stats64 *); + bool (*ndo_has_offload_stats)(const struct net_device *, int); + int (*ndo_get_offload_stats)(int, const struct net_device *, void *); + struct net_device_stats * (*ndo_get_stats)(struct net_device *); + int (*ndo_vlan_rx_add_vid)(struct net_device *, __be16, u16); + int (*ndo_vlan_rx_kill_vid)(struct net_device *, __be16, u16); + void (*ndo_poll_controller)(struct net_device *); + int (*ndo_netpoll_setup)(struct net_device *); + void (*ndo_netpoll_cleanup)(struct net_device *); + int (*ndo_set_vf_mac)(struct net_device *, int, u8 *); + int (*ndo_set_vf_vlan)(struct net_device *, int, u16, u8, __be16); + int (*ndo_set_vf_rate)(struct net_device *, int, int, int); + int (*ndo_set_vf_spoofchk)(struct net_device *, int, bool); + int (*ndo_set_vf_trust)(struct net_device *, int, bool); + int (*ndo_get_vf_config)(struct net_device *, int, struct ifla_vf_info *); + int (*ndo_set_vf_link_state)(struct net_device *, int, int); + int (*ndo_get_vf_stats)(struct net_device *, int, struct ifla_vf_stats *); + int (*ndo_set_vf_port)(struct net_device *, int, struct nlattr **); + int (*ndo_get_vf_port)(struct net_device *, int, struct sk_buff *); + int (*ndo_get_vf_guid)(struct net_device *, int, struct ifla_vf_guid *, struct ifla_vf_guid *); + int (*ndo_set_vf_guid)(struct net_device *, int, u64, int); + int (*ndo_set_vf_rss_query_en)(struct net_device *, int, bool); + int (*ndo_setup_tc)(struct net_device *, enum tc_setup_type, void *); + int (*ndo_rx_flow_steer)(struct net_device *, const struct sk_buff *, u16, u32); + int (*ndo_add_slave)(struct net_device *, struct net_device *, struct netlink_ext_ack *); + int (*ndo_del_slave)(struct net_device *, struct net_device *); + struct net_device * (*ndo_get_xmit_slave)(struct net_device *, struct sk_buff *, bool); + struct net_device * (*ndo_sk_get_lower_dev)(struct net_device *, struct sock *); + netdev_features_t (*ndo_fix_features)(struct net_device *, netdev_features_t); + int (*ndo_set_features)(struct net_device *, netdev_features_t); + int (*ndo_neigh_construct)(struct net_device *, struct neighbour *); + void (*ndo_neigh_destroy)(struct net_device *, struct neighbour *); + int (*ndo_fdb_add)(struct ndmsg *, struct nlattr **, struct net_device *, const unsigned char *, u16, u16, bool *, struct netlink_ext_ack *); + int (*ndo_fdb_del)(struct ndmsg *, struct nlattr **, struct net_device *, const unsigned char *, u16, bool *, struct netlink_ext_ack *); + int (*ndo_fdb_del_bulk)(struct nlmsghdr *, struct net_device *, struct netlink_ext_ack *); + int (*ndo_fdb_dump)(struct sk_buff *, struct netlink_callback *, struct net_device *, struct net_device *, int *); + int (*ndo_fdb_get)(struct sk_buff *, struct nlattr **, struct net_device *, const unsigned char *, u16, u32, u32, struct netlink_ext_ack *); + int (*ndo_mdb_add)(struct net_device *, struct nlattr **, u16, struct netlink_ext_ack *); + int (*ndo_mdb_del)(struct net_device *, struct nlattr **, struct netlink_ext_ack *); + int (*ndo_mdb_del_bulk)(struct net_device *, struct nlattr **, struct netlink_ext_ack *); + int (*ndo_mdb_dump)(struct net_device *, struct sk_buff *, struct netlink_callback *); + int (*ndo_mdb_get)(struct net_device *, struct nlattr **, u32, u32, struct netlink_ext_ack *); + int (*ndo_bridge_setlink)(struct net_device *, struct nlmsghdr *, u16, struct netlink_ext_ack *); + int (*ndo_bridge_getlink)(struct sk_buff *, u32, u32, struct net_device *, u32, int); + int (*ndo_bridge_dellink)(struct net_device *, struct nlmsghdr *, u16); + int (*ndo_change_carrier)(struct net_device *, bool); + int (*ndo_get_phys_port_id)(struct net_device *, struct netdev_phys_item_id *); + int (*ndo_get_port_parent_id)(struct net_device *, struct netdev_phys_item_id *); + int (*ndo_get_phys_port_name)(struct net_device *, char *, size_t); + void * (*ndo_dfwd_add_station)(struct net_device *, struct net_device *); + void (*ndo_dfwd_del_station)(struct net_device *, void *); + int (*ndo_set_tx_maxrate)(struct net_device *, int, u32); + int (*ndo_get_iflink)(const struct net_device *); + int (*ndo_fill_metadata_dst)(struct net_device *, struct sk_buff *); + void (*ndo_set_rx_headroom)(struct net_device *, int); + int (*ndo_bpf)(struct net_device *, struct netdev_bpf *); + int (*ndo_xdp_xmit)(struct net_device *, int, struct xdp_frame **, u32); + struct net_device * (*ndo_xdp_get_xmit_slave)(struct net_device *, struct xdp_buff *); + int (*ndo_xsk_wakeup)(struct net_device *, u32, u32); + int (*ndo_tunnel_ctl)(struct net_device *, struct ip_tunnel_parm_kern *, int); + struct net_device * (*ndo_get_peer_dev)(struct net_device *); + int (*ndo_fill_forward_path)(struct net_device_path_ctx *, struct net_device_path *); + ktime_t (*ndo_get_tstamp)(struct net_device *, const struct skb_shared_hwtstamps *, bool); + int (*ndo_hwtstamp_get)(struct net_device *, struct kernel_hwtstamp_config *); + int (*ndo_hwtstamp_set)(struct net_device *, struct kernel_hwtstamp_config *, struct netlink_ext_ack *); + const struct net_shaper_ops *net_shaper_ops; +}; + +enum xdp_mem_type { + MEM_TYPE_PAGE_SHARED = 0, + MEM_TYPE_PAGE_ORDER0 = 1, + MEM_TYPE_PAGE_POOL = 2, + MEM_TYPE_XSK_BUFF_POOL = 3, + MEM_TYPE_MAX = 4, +}; + +struct xdp_frame { + void *data; + u32 len; + u32 headroom; + u32 metasize; + enum xdp_mem_type mem_type: 32; + struct net_device *dev_rx; + u32 frame_sz; + u32 flags; +}; + +struct xdp_rxq_info; + +struct xdp_txq_info; + +struct xdp_buff { + void *data; + void *data_end; + void *data_meta; + void *data_hard_start; + struct xdp_rxq_info *rxq; + struct xdp_txq_info *txq; + u32 frame_sz; + u32 flags; +}; + +enum net_shaper_scope { + NET_SHAPER_SCOPE_UNSPEC = 0, + NET_SHAPER_SCOPE_NETDEV = 1, + NET_SHAPER_SCOPE_QUEUE = 2, + NET_SHAPER_SCOPE_NODE = 3, + __NET_SHAPER_SCOPE_MAX = 4, + NET_SHAPER_SCOPE_MAX = 3, +}; + +struct net_shaper_binding; + +struct net_shaper; + +struct net_shaper_handle; + +struct net_shaper_ops { + int (*group)(struct net_shaper_binding *, int, const struct net_shaper *, const struct net_shaper *, struct netlink_ext_ack *); + int (*set)(struct net_shaper_binding *, const struct net_shaper *, struct netlink_ext_ack *); + int (*delete)(struct net_shaper_binding *, const struct net_shaper_handle *, struct netlink_ext_ack *); + void (*capabilities)(struct net_shaper_binding *, enum net_shaper_scope, long unsigned int *); +}; + +struct pcpu_lstats { + u64_stats_t packets; + u64_stats_t bytes; + struct u64_stats_sync syncp; +}; + +struct pcpu_sw_netstats { + u64_stats_t rx_packets; + u64_stats_t rx_bytes; + u64_stats_t tx_packets; + u64_stats_t tx_bytes; + struct u64_stats_sync syncp; +}; + +struct pcpu_dstats { + u64_stats_t rx_packets; + u64_stats_t rx_bytes; + u64_stats_t tx_packets; + u64_stats_t tx_bytes; + u64_stats_t rx_drops; + u64_stats_t tx_drops; + struct u64_stats_sync syncp; + long: 64; + long: 64; +}; + +enum xdp_rss_hash_type { + XDP_RSS_L3_IPV4 = 1, + XDP_RSS_L3_IPV6 = 2, + XDP_RSS_L3_DYNHDR = 4, + XDP_RSS_L4 = 8, + XDP_RSS_L4_TCP = 16, + XDP_RSS_L4_UDP = 32, + XDP_RSS_L4_SCTP = 64, + XDP_RSS_L4_IPSEC = 128, + XDP_RSS_L4_ICMP = 256, + XDP_RSS_TYPE_NONE = 0, + XDP_RSS_TYPE_L2 = 0, + XDP_RSS_TYPE_L3_IPV4 = 1, + XDP_RSS_TYPE_L3_IPV6 = 2, + XDP_RSS_TYPE_L3_IPV4_OPT = 5, + XDP_RSS_TYPE_L3_IPV6_EX = 6, + XDP_RSS_TYPE_L4_ANY = 8, + XDP_RSS_TYPE_L4_IPV4_TCP = 25, + XDP_RSS_TYPE_L4_IPV4_UDP = 41, + XDP_RSS_TYPE_L4_IPV4_SCTP = 73, + XDP_RSS_TYPE_L4_IPV4_IPSEC = 137, + XDP_RSS_TYPE_L4_IPV4_ICMP = 265, + XDP_RSS_TYPE_L4_IPV6_TCP = 26, + XDP_RSS_TYPE_L4_IPV6_UDP = 42, + XDP_RSS_TYPE_L4_IPV6_SCTP = 74, + XDP_RSS_TYPE_L4_IPV6_IPSEC = 138, + XDP_RSS_TYPE_L4_IPV6_ICMP = 266, + XDP_RSS_TYPE_L4_IPV6_TCP_EX = 30, + XDP_RSS_TYPE_L4_IPV6_UDP_EX = 46, + XDP_RSS_TYPE_L4_IPV6_SCTP_EX = 78, +}; + +struct xdp_metadata_ops { + int (*xmo_rx_timestamp)(const struct xdp_md *, u64 *); + int (*xmo_rx_hash)(const struct xdp_md *, u32 *, enum xdp_rss_hash_type *); + int (*xmo_rx_vlan_tag)(const struct xdp_md *, __be16 *, u16 *); +}; + +struct xsk_tx_metadata_ops { + void (*tmo_request_timestamp)(void *); + u64 (*tmo_fill_timestamp)(void *); + void (*tmo_request_checksum)(u16, u16, void *); + void (*tmo_request_launch_time)(u64, void *); +}; + +enum ethtool_phys_id_state { + ETHTOOL_ID_INACTIVE = 0, + ETHTOOL_ID_ACTIVE = 1, + ETHTOOL_ID_ON = 2, + ETHTOOL_ID_OFF = 3, +}; + +struct ethtool_drvinfo; + +struct ethtool_regs; + +struct ethtool_wolinfo; + +struct ethtool_link_ext_state_info; + +struct ethtool_link_ext_stats; + +struct ethtool_eeprom; + +struct ethtool_coalesce; + +struct kernel_ethtool_coalesce; + +struct ethtool_ringparam; + +struct kernel_ethtool_ringparam; + +struct ethtool_pause_stats; + +struct ethtool_pauseparam; + +struct ethtool_test; + +struct ethtool_stats; + +struct ethtool_rxnfc; + +struct ethtool_flash; + +struct ethtool_rxfh_param; + +struct ethtool_rxfh_fields; + +struct ethtool_rxfh_context; + +struct ethtool_channels; + +struct ethtool_dump; + +struct kernel_ethtool_ts_info; + +struct ethtool_ts_stats; + +struct ethtool_modinfo; + +struct ethtool_keee; + +struct ethtool_tunable; + +struct ethtool_link_ksettings; + +struct ethtool_fec_stats; + +struct ethtool_fecparam; + +struct ethtool_module_eeprom; + +struct ethtool_eth_phy_stats; + +struct ethtool_eth_mac_stats; + +struct ethtool_eth_ctrl_stats; + +struct ethtool_rmon_stats; + +struct ethtool_rmon_hist_range; + +struct ethtool_module_power_mode_params; + +struct ethtool_mm_state; + +struct ethtool_mm_cfg; + +struct ethtool_mm_stats; + +struct ethtool_ops { + u32 supported_input_xfrm: 8; + u32 cap_link_lanes_supported: 1; + u32 rxfh_per_ctx_fields: 1; + u32 rxfh_per_ctx_key: 1; + u32 cap_rss_rxnfc_adds: 1; + u32 rxfh_indir_space; + u16 rxfh_key_space; + u16 rxfh_priv_size; + u32 rxfh_max_num_contexts; + u32 supported_coalesce_params; + u32 supported_ring_params; + u32 supported_hwtstamp_qualifiers; + void (*get_drvinfo)(struct net_device *, struct ethtool_drvinfo *); + int (*get_regs_len)(struct net_device *); + void (*get_regs)(struct net_device *, struct ethtool_regs *, void *); + void (*get_wol)(struct net_device *, struct ethtool_wolinfo *); + int (*set_wol)(struct net_device *, struct ethtool_wolinfo *); + u32 (*get_msglevel)(struct net_device *); + void (*set_msglevel)(struct net_device *, u32); + int (*nway_reset)(struct net_device *); + u32 (*get_link)(struct net_device *); + int (*get_link_ext_state)(struct net_device *, struct ethtool_link_ext_state_info *); + void (*get_link_ext_stats)(struct net_device *, struct ethtool_link_ext_stats *); + int (*get_eeprom_len)(struct net_device *); + int (*get_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); + int (*set_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); + int (*get_coalesce)(struct net_device *, struct ethtool_coalesce *, struct kernel_ethtool_coalesce *, struct netlink_ext_ack *); + int (*set_coalesce)(struct net_device *, struct ethtool_coalesce *, struct kernel_ethtool_coalesce *, struct netlink_ext_ack *); + void (*get_ringparam)(struct net_device *, struct ethtool_ringparam *, struct kernel_ethtool_ringparam *, struct netlink_ext_ack *); + int (*set_ringparam)(struct net_device *, struct ethtool_ringparam *, struct kernel_ethtool_ringparam *, struct netlink_ext_ack *); + void (*get_pause_stats)(struct net_device *, struct ethtool_pause_stats *); + void (*get_pauseparam)(struct net_device *, struct ethtool_pauseparam *); + int (*set_pauseparam)(struct net_device *, struct ethtool_pauseparam *); + void (*self_test)(struct net_device *, struct ethtool_test *, u64 *); + void (*get_strings)(struct net_device *, u32, u8 *); + int (*set_phys_id)(struct net_device *, enum ethtool_phys_id_state); + void (*get_ethtool_stats)(struct net_device *, struct ethtool_stats *, u64 *); + int (*begin)(struct net_device *); + void (*complete)(struct net_device *); + u32 (*get_priv_flags)(struct net_device *); + int (*set_priv_flags)(struct net_device *, u32); + int (*get_sset_count)(struct net_device *, int); + int (*get_rxnfc)(struct net_device *, struct ethtool_rxnfc *, u32 *); + int (*set_rxnfc)(struct net_device *, struct ethtool_rxnfc *); + int (*flash_device)(struct net_device *, struct ethtool_flash *); + int (*reset)(struct net_device *, u32 *); + u32 (*get_rxfh_key_size)(struct net_device *); + u32 (*get_rxfh_indir_size)(struct net_device *); + int (*get_rxfh)(struct net_device *, struct ethtool_rxfh_param *); + int (*set_rxfh)(struct net_device *, struct ethtool_rxfh_param *, struct netlink_ext_ack *); + int (*get_rxfh_fields)(struct net_device *, struct ethtool_rxfh_fields *); + int (*set_rxfh_fields)(struct net_device *, const struct ethtool_rxfh_fields *, struct netlink_ext_ack *); + int (*create_rxfh_context)(struct net_device *, struct ethtool_rxfh_context *, const struct ethtool_rxfh_param *, struct netlink_ext_ack *); + int (*modify_rxfh_context)(struct net_device *, struct ethtool_rxfh_context *, const struct ethtool_rxfh_param *, struct netlink_ext_ack *); + int (*remove_rxfh_context)(struct net_device *, struct ethtool_rxfh_context *, u32, struct netlink_ext_ack *); + void (*get_channels)(struct net_device *, struct ethtool_channels *); + int (*set_channels)(struct net_device *, struct ethtool_channels *); + int (*get_dump_flag)(struct net_device *, struct ethtool_dump *); + int (*get_dump_data)(struct net_device *, struct ethtool_dump *, void *); + int (*set_dump)(struct net_device *, struct ethtool_dump *); + int (*get_ts_info)(struct net_device *, struct kernel_ethtool_ts_info *); + void (*get_ts_stats)(struct net_device *, struct ethtool_ts_stats *); + int (*get_module_info)(struct net_device *, struct ethtool_modinfo *); + int (*get_module_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); + int (*get_eee)(struct net_device *, struct ethtool_keee *); + int (*set_eee)(struct net_device *, struct ethtool_keee *); + int (*get_tunable)(struct net_device *, const struct ethtool_tunable *, void *); + int (*set_tunable)(struct net_device *, const struct ethtool_tunable *, const void *); + int (*get_per_queue_coalesce)(struct net_device *, u32, struct ethtool_coalesce *); + int (*set_per_queue_coalesce)(struct net_device *, u32, struct ethtool_coalesce *); + int (*get_link_ksettings)(struct net_device *, struct ethtool_link_ksettings *); + int (*set_link_ksettings)(struct net_device *, const struct ethtool_link_ksettings *); + void (*get_fec_stats)(struct net_device *, struct ethtool_fec_stats *); + int (*get_fecparam)(struct net_device *, struct ethtool_fecparam *); + int (*set_fecparam)(struct net_device *, struct ethtool_fecparam *); + void (*get_ethtool_phy_stats)(struct net_device *, struct ethtool_stats *, u64 *); + int (*get_phy_tunable)(struct net_device *, const struct ethtool_tunable *, void *); + int (*set_phy_tunable)(struct net_device *, const struct ethtool_tunable *, const void *); + int (*get_module_eeprom_by_page)(struct net_device *, const struct ethtool_module_eeprom *, struct netlink_ext_ack *); + int (*set_module_eeprom_by_page)(struct net_device *, const struct ethtool_module_eeprom *, struct netlink_ext_ack *); + void (*get_eth_phy_stats)(struct net_device *, struct ethtool_eth_phy_stats *); + void (*get_eth_mac_stats)(struct net_device *, struct ethtool_eth_mac_stats *); + void (*get_eth_ctrl_stats)(struct net_device *, struct ethtool_eth_ctrl_stats *); + void (*get_rmon_stats)(struct net_device *, struct ethtool_rmon_stats *, const struct ethtool_rmon_hist_range **); + int (*get_module_power_mode)(struct net_device *, struct ethtool_module_power_mode_params *, struct netlink_ext_ack *); + int (*set_module_power_mode)(struct net_device *, const struct ethtool_module_power_mode_params *, struct netlink_ext_ack *); + int (*get_mm)(struct net_device *, struct ethtool_mm_state *); + int (*set_mm)(struct net_device *, struct ethtool_mm_cfg *, struct netlink_ext_ack *); + void (*get_mm_stats)(struct net_device *, struct ethtool_mm_stats *); +}; + +struct flowi6; + +struct l3mdev_ops { + u32 (*l3mdev_fib_table)(const struct net_device *); + struct sk_buff * (*l3mdev_l3_rcv)(struct net_device *, struct sk_buff *, u16); + struct sk_buff * (*l3mdev_l3_out)(struct net_device *, struct sock *, struct sk_buff *, u16); + struct dst_entry * (*l3mdev_link_scope_lookup)(const struct net_device *, struct flowi6 *); +}; + +struct nd_opt_hdr; + +struct ndisc_options; + +struct prefix_info; + +struct ndisc_ops { + int (*parse_options)(const struct net_device *, struct nd_opt_hdr *, struct ndisc_options *); + void (*update)(const struct net_device *, struct neighbour *, u32, u8, const struct ndisc_options *); + int (*opt_addr_space)(const struct net_device *, u8, struct neighbour *, u8 *, u8 **); + void (*fill_addr_option)(const struct net_device *, struct sk_buff *, u8, const u8 *); + void (*prefix_rcv_add_addr)(struct net *, struct net_device *, const struct prefix_info *, struct inet6_dev *, struct in6_addr *, int, u32, bool, bool, __u32, u32, bool); +}; + +enum tls_offload_ctx_dir { + TLS_OFFLOAD_CTX_DIR_RX = 0, + TLS_OFFLOAD_CTX_DIR_TX = 1, +}; + +struct tls_crypto_info; + +struct tls_context; + +struct tlsdev_ops { + int (*tls_dev_add)(struct net_device *, struct sock *, enum tls_offload_ctx_dir, struct tls_crypto_info *, u32); + void (*tls_dev_del)(struct net_device *, struct tls_context *, enum tls_offload_ctx_dir); + int (*tls_dev_resync)(struct net_device *, struct sock *, u32, u8 *, enum tls_offload_ctx_dir); +}; + +struct rtnl_newlink_params; + +struct rtnl_link_ops { + struct list_head list; + struct srcu_struct srcu; + const char *kind; + size_t priv_size; + struct net_device * (*alloc)(struct nlattr **, const char *, unsigned char, unsigned int, unsigned int); + void (*setup)(struct net_device *); + bool netns_refund; + const u16 peer_type; + unsigned int maxtype; + const struct nla_policy *policy; + int (*validate)(struct nlattr **, struct nlattr **, struct netlink_ext_ack *); + int (*newlink)(struct net_device *, struct rtnl_newlink_params *, struct netlink_ext_ack *); + int (*changelink)(struct net_device *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); + void (*dellink)(struct net_device *, struct list_head *); + size_t (*get_size)(const struct net_device *); + int (*fill_info)(struct sk_buff *, const struct net_device *); + size_t (*get_xstats_size)(const struct net_device *); + int (*fill_xstats)(struct sk_buff *, const struct net_device *); + unsigned int (*get_num_tx_queues)(void); + unsigned int (*get_num_rx_queues)(void); + unsigned int slave_maxtype; + const struct nla_policy *slave_policy; + int (*slave_changelink)(struct net_device *, struct net_device *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); + size_t (*get_slave_size)(const struct net_device *, const struct net_device *); + int (*fill_slave_info)(struct sk_buff *, const struct net_device *, const struct net_device *); + struct net * (*get_link_net)(const struct net_device *); + size_t (*get_linkxstats_size)(const struct net_device *, int); + int (*fill_linkxstats)(struct sk_buff *, const struct net_device *, int *, int); +}; + +struct netdev_queue_stats_rx; + +struct netdev_queue_stats_tx; + +struct netdev_stat_ops { + void (*get_queue_stats_rx)(struct net_device *, int, struct netdev_queue_stats_rx *); + void (*get_queue_stats_tx)(struct net_device *, int, struct netdev_queue_stats_tx *); + void (*get_base_stats)(struct net_device *, struct netdev_queue_stats_rx *, struct netdev_queue_stats_tx *); +}; + +struct netdev_queue_mgmt_ops { + size_t ndo_queue_mem_size; + int (*ndo_queue_mem_alloc)(struct net_device *, void *, int); + void (*ndo_queue_mem_free)(struct net_device *, void *); + int (*ndo_queue_start)(struct net_device *, void *, int); + int (*ndo_queue_stop)(struct net_device *, void *, int); +}; + +struct macsec_context; + +struct macsec_ops { + int (*mdo_dev_open)(struct macsec_context *); + int (*mdo_dev_stop)(struct macsec_context *); + int (*mdo_add_secy)(struct macsec_context *); + int (*mdo_upd_secy)(struct macsec_context *); + int (*mdo_del_secy)(struct macsec_context *); + int (*mdo_add_rxsc)(struct macsec_context *); + int (*mdo_upd_rxsc)(struct macsec_context *); + int (*mdo_del_rxsc)(struct macsec_context *); + int (*mdo_add_rxsa)(struct macsec_context *); + int (*mdo_upd_rxsa)(struct macsec_context *); + int (*mdo_del_rxsa)(struct macsec_context *); + int (*mdo_add_txsa)(struct macsec_context *); + int (*mdo_upd_txsa)(struct macsec_context *); + int (*mdo_del_txsa)(struct macsec_context *); + int (*mdo_get_dev_stats)(struct macsec_context *); + int (*mdo_get_tx_sc_stats)(struct macsec_context *); + int (*mdo_get_tx_sa_stats)(struct macsec_context *); + int (*mdo_get_rx_sc_stats)(struct macsec_context *); + int (*mdo_get_rx_sa_stats)(struct macsec_context *); + int (*mdo_insert_tx_tag)(struct phy_device *, struct sk_buff *); + unsigned int needed_headroom; + unsigned int needed_tailroom; + bool rx_uses_md_dst; +}; + +struct udp_tunnel_nic_table_info { + unsigned int n_entries; + unsigned int tunnel_types; +}; + +struct udp_tunnel_info; + +struct udp_tunnel_nic_shared; + +struct udp_tunnel_nic_info { + int (*set_port)(struct net_device *, unsigned int, unsigned int, struct udp_tunnel_info *); + int (*unset_port)(struct net_device *, unsigned int, unsigned int, struct udp_tunnel_info *); + int (*sync_table)(struct net_device *, unsigned int); + struct udp_tunnel_nic_shared *shared; + unsigned int flags; + struct udp_tunnel_nic_table_info tables[4]; +}; + +struct tcmsg { + unsigned char tcm_family; + unsigned char tcm__pad1; + short unsigned int tcm__pad2; + int tcm_ifindex; + __u32 tcm_handle; + __u32 tcm_parent; + __u32 tcm_info; +}; + +struct gnet_dump { + spinlock_t *lock; + struct sk_buff *skb; + struct nlattr *tail; + int compat_tc_stats; + int compat_xstats; + int padattr; + void *xstats; + int xstats_len; + struct tc_stats tc_stats; +}; + +struct netlink_range_validation { + u64 min; + u64 max; +}; + +struct netlink_range_validation_signed { + s64 min; + s64 max; +}; + +struct rtnl_newlink_params { + struct net *src_net; + struct net *link_net; + struct net *peer_net; + struct nlattr **tb; + struct nlattr **data; +}; + +enum flow_action_hw_stats_bit { + FLOW_ACTION_HW_STATS_IMMEDIATE_BIT = 0, + FLOW_ACTION_HW_STATS_DELAYED_BIT = 1, + FLOW_ACTION_HW_STATS_DISABLED_BIT = 2, + FLOW_ACTION_HW_STATS_NUM_BITS = 3, +}; + +struct flow_block { + struct list_head cb_list; +}; + +typedef int flow_setup_cb_t(enum tc_setup_type, void *, void *); + +struct qdisc_size_table { + struct callback_head rcu; + struct list_head list; + struct tc_sizespec szopts; + int refcnt; + u16 data[0]; +}; + +struct Qdisc_class_ops; + +struct Qdisc_ops { + struct Qdisc_ops *next; + const struct Qdisc_class_ops *cl_ops; + char id[16]; + int priv_size; + unsigned int static_flags; + int (*enqueue)(struct sk_buff *, struct Qdisc *, struct sk_buff **); + struct sk_buff * (*dequeue)(struct Qdisc *); + struct sk_buff * (*peek)(struct Qdisc *); + int (*init)(struct Qdisc *, struct nlattr *, struct netlink_ext_ack *); + void (*reset)(struct Qdisc *); + void (*destroy)(struct Qdisc *); + int (*change)(struct Qdisc *, struct nlattr *, struct netlink_ext_ack *); + void (*attach)(struct Qdisc *); + int (*change_tx_queue_len)(struct Qdisc *, unsigned int); + void (*change_real_num_tx)(struct Qdisc *, unsigned int); + int (*dump)(struct Qdisc *, struct sk_buff *); + int (*dump_stats)(struct Qdisc *, struct gnet_dump *); + void (*ingress_block_set)(struct Qdisc *, u32); + void (*egress_block_set)(struct Qdisc *, u32); + u32 (*ingress_block_get)(struct Qdisc *); + u32 (*egress_block_get)(struct Qdisc *); + struct module *owner; +}; + +struct qdisc_walker; + +struct tcf_block; + +struct Qdisc_class_ops { + unsigned int flags; + struct netdev_queue * (*select_queue)(struct Qdisc *, struct tcmsg *); + int (*graft)(struct Qdisc *, long unsigned int, struct Qdisc *, struct Qdisc **, struct netlink_ext_ack *); + struct Qdisc * (*leaf)(struct Qdisc *, long unsigned int); + void (*qlen_notify)(struct Qdisc *, long unsigned int); + long unsigned int (*find)(struct Qdisc *, u32); + int (*change)(struct Qdisc *, u32, u32, struct nlattr **, long unsigned int *, struct netlink_ext_ack *); + int (*delete)(struct Qdisc *, long unsigned int, struct netlink_ext_ack *); + void (*walk)(struct Qdisc *, struct qdisc_walker *); + struct tcf_block * (*tcf_block)(struct Qdisc *, long unsigned int, struct netlink_ext_ack *); + long unsigned int (*bind_tcf)(struct Qdisc *, long unsigned int, u32); + void (*unbind_tcf)(struct Qdisc *, long unsigned int); + int (*dump)(struct Qdisc *, long unsigned int, struct sk_buff *, struct tcmsg *); + int (*dump_stats)(struct Qdisc *, long unsigned int, struct gnet_dump *); +}; + +struct tcf_chain; + +struct tcf_block { + struct xarray ports; + struct mutex lock; + struct list_head chain_list; + u32 index; + u32 classid; + refcount_t refcnt; + struct net *net; + struct Qdisc *q; + struct rw_semaphore cb_lock; + struct flow_block flow_block; + struct list_head owner_list; + bool keep_dst; + atomic_t useswcnt; + atomic_t offloadcnt; + unsigned int nooffloaddevcnt; + unsigned int lockeddevcnt; + struct { + struct tcf_chain *chain; + struct list_head filter_chain_list; + } chain0; + struct callback_head rcu; + struct hlist_head proto_destroy_ht[128]; + struct mutex proto_destroy_lock; +}; + +struct tcf_result; + +struct tcf_proto_ops; + +struct tcf_proto { + struct tcf_proto *next; + void *root; + int (*classify)(struct sk_buff *, const struct tcf_proto *, struct tcf_result *); + __be16 protocol; + u32 prio; + void *data; + const struct tcf_proto_ops *ops; + struct tcf_chain *chain; + spinlock_t lock; + bool deleting; + bool counted; + bool usesw; + refcount_t refcnt; + struct callback_head rcu; + struct hlist_node destroy_ht_node; +}; + +struct tcf_result { + union { + struct { + long unsigned int class; + u32 classid; + }; + const struct tcf_proto *goto_tp; + }; +}; + +struct tcf_walker; + +struct tcf_exts; + +struct tcf_proto_ops { + struct list_head head; + char kind[16]; + int (*classify)(struct sk_buff *, const struct tcf_proto *, struct tcf_result *); + int (*init)(struct tcf_proto *); + void (*destroy)(struct tcf_proto *, bool, struct netlink_ext_ack *); + void * (*get)(struct tcf_proto *, u32); + void (*put)(struct tcf_proto *, void *); + int (*change)(struct net *, struct sk_buff *, struct tcf_proto *, long unsigned int, u32, struct nlattr **, void **, u32, struct netlink_ext_ack *); + int (*delete)(struct tcf_proto *, void *, bool *, bool, struct netlink_ext_ack *); + bool (*delete_empty)(struct tcf_proto *); + void (*walk)(struct tcf_proto *, struct tcf_walker *, bool); + int (*reoffload)(struct tcf_proto *, bool, flow_setup_cb_t *, void *, struct netlink_ext_ack *); + void (*hw_add)(struct tcf_proto *, void *); + void (*hw_del)(struct tcf_proto *, void *); + void (*bind_class)(void *, u32, long unsigned int, void *, long unsigned int); + void * (*tmplt_create)(struct net *, struct tcf_chain *, struct nlattr **, struct netlink_ext_ack *); + void (*tmplt_destroy)(void *); + void (*tmplt_reoffload)(struct tcf_chain *, bool, flow_setup_cb_t *, void *); + struct tcf_exts * (*get_exts)(const struct tcf_proto *, u32); + int (*dump)(struct net *, struct tcf_proto *, void *, struct sk_buff *, struct tcmsg *, bool); + int (*terse_dump)(struct net *, struct tcf_proto *, void *, struct sk_buff *, struct tcmsg *, bool); + int (*tmplt_dump)(struct sk_buff *, struct net *, void *); + struct module *owner; + int flags; +}; + +struct tcf_chain { + struct mutex filter_chain_lock; + struct tcf_proto *filter_chain; + struct list_head list; + struct tcf_block *block; + u32 index; + unsigned int refcnt; + unsigned int action_refcnt; + bool explicitly_created; + bool flushing; + const struct tcf_proto_ops *tmplt_ops; + void *tmplt_priv; + struct callback_head rcu; +}; + +struct page_pool_recycle_stats { + u64 cached; + u64 cache_full; + u64 ring; + u64 ring_full; + u64 released_refcnt; +}; + +struct memory_provider_ops { + netmem_ref (*alloc_netmems)(struct page_pool *, gfp_t); + bool (*release_netmem)(struct page_pool *, netmem_ref); + int (*init)(struct page_pool *); + void (*destroy)(struct page_pool *); + int (*nl_fill)(void *, struct sk_buff *, struct netdev_rx_queue *); + void (*uninstall)(void *, struct netdev_rx_queue *); +}; + +struct xdp_mem_info { + u32 type; + u32 id; +}; + +struct xdp_rxq_info { + struct net_device *dev; + u32 queue_index; + u32 reg_state; + struct xdp_mem_info mem; + u32 frag_size; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct xdp_txq_info { + struct net_device *dev; +}; + +struct rhash_lock_head {}; + +struct bpf_preload_info { + char link_name[16]; + struct bpf_link *link; +}; + +struct bpf_preload_ops { + int (*preload)(struct bpf_preload_info *); + struct module *owner; +}; + +enum bpf_type { + BPF_TYPE_UNSPEC = 0, + BPF_TYPE_PROG = 1, + BPF_TYPE_MAP = 2, + BPF_TYPE_LINK = 3, +}; + +struct map_iter { + void *key; + bool done; +}; + +struct bpffs_btf_enums { + const struct btf *btf; + const struct btf_type *cmd_t; + const struct btf_type *map_t; + const struct btf_type *prog_t; + const struct btf_type *attach_t; +}; + +enum { + OPT_UID = 0, + OPT_GID = 1, + OPT_MODE = 2, + OPT_DELEGATE_CMDS = 3, + OPT_DELEGATE_MAPS = 4, + OPT_DELEGATE_PROGS = 5, + OPT_DELEGATE_ATTACHS = 6, +}; + +typedef __kernel_ulong_t ino_t; + +enum { + BPF_REG_0 = 0, + BPF_REG_1 = 1, + BPF_REG_2 = 2, + BPF_REG_3 = 3, + BPF_REG_4 = 4, + BPF_REG_5 = 5, + BPF_REG_6 = 6, + BPF_REG_7 = 7, + BPF_REG_8 = 8, + BPF_REG_9 = 9, + BPF_REG_10 = 10, + __MAX_BPF_REG = 11, +}; + +struct bpf_cgroup_storage_key { + __u64 cgroup_inode_id; + __u32 attach_type; +}; + +enum { + BPF_F_INDEX_MASK = 4294967295ULL, + BPF_F_CURRENT_CPU = 4294967295ULL, + BPF_F_CTXLEN_MASK = 4503595332403200ULL, +}; + +struct bpf_spin_lock { + __u32 val; +}; + +struct bpf_timer { + __u64 __opaque[2]; +}; + +struct bpf_wq { + __u64 __opaque[2]; +}; + +struct bpf_dynptr { + __u64 __opaque[2]; +}; + +struct bpf_list_head { + __u64 __opaque[2]; +}; + +struct bpf_list_node { + __u64 __opaque[3]; +}; + +struct bpf_rb_root { + __u64 __opaque[2]; +}; + +struct bpf_rb_node { + __u64 __opaque[4]; +}; + +struct bpf_refcount { + __u32 __opaque[1]; +}; + +struct bpf_pidns_info { + __u32 pid; + __u32 tgid; +}; + +enum { + BPF_F_TIMER_ABS = 1, + BPF_F_TIMER_CPU_PIN = 2, +}; + +enum bpf_kfunc_flags { + BPF_F_PAD_ZEROS = 1, +}; + +struct ubuf_info; + +struct msghdr { + void *msg_name; + int msg_namelen; + int msg_inq; + struct iov_iter msg_iter; + union { + void *msg_control; + void *msg_control_user; + }; + bool msg_control_is_user: 1; + bool msg_get_inq: 1; + unsigned int msg_flags; + __kernel_size_t msg_controllen; + struct kiocb *msg_iocb; + struct ubuf_info *msg_ubuf; + int (*sg_from_iter)(struct sk_buff *, struct iov_iter *, size_t); +}; + +struct ubuf_info_ops; + +struct ubuf_info { + const struct ubuf_info_ops *ops; + refcount_t refcnt; + u8 flags; +}; + +struct __large_struct { + long unsigned int buf[100]; +}; + +typedef struct { + void *lock; +} class_pagefault_t; + +typedef __u64 __addrpair; + +typedef __u32 __portpair; + +struct proto; + +struct sock_common { + union { + __addrpair skc_addrpair; + struct { + __be32 skc_daddr; + __be32 skc_rcv_saddr; + }; + }; + union { + unsigned int skc_hash; + __u16 skc_u16hashes[2]; + }; + union { + __portpair skc_portpair; + struct { + __be16 skc_dport; + __u16 skc_num; + }; + }; + short unsigned int skc_family; + volatile unsigned char skc_state; + unsigned char skc_reuse: 4; + unsigned char skc_reuseport: 1; + unsigned char skc_ipv6only: 1; + unsigned char skc_net_refcnt: 1; + int skc_bound_dev_if; + union { + struct hlist_node skc_bind_node; + struct hlist_node skc_portaddr_node; + }; + struct proto *skc_prot; + possible_net_t skc_net; + struct in6_addr skc_v6_daddr; + struct in6_addr skc_v6_rcv_saddr; + atomic64_t skc_cookie; + union { + long unsigned int skc_flags; + struct sock *skc_listener; + struct inet_timewait_death_row *skc_tw_dr; + }; + int skc_dontcopy_begin[0]; + union { + struct hlist_node skc_node; + struct hlist_nulls_node skc_nulls_node; + }; + short unsigned int skc_tx_queue_mapping; + short unsigned int skc_rx_queue_mapping; + union { + int skc_incoming_cpu; + u32 skc_rcv_wnd; + u32 skc_tw_rcv_nxt; + }; + refcount_t skc_refcnt; + int skc_dontcopy_end[0]; + union { + u32 skc_rxhash; + u32 skc_window_clamp; + u32 skc_tw_snd_nxt; + }; +}; + +typedef struct { + spinlock_t slock; + int owned; + wait_queue_head_t wq; +} socket_lock_t; + +struct sock_cgroup_data { + struct cgroup *cgroup; + u32 classid; + u16 prioidx; +}; + +typedef struct {} netns_tracker; + +struct sk_filter; + +struct socket_wq; + +struct socket; + +struct sock_reuseport; + +struct sock { + struct sock_common __sk_common; + __u8 __cacheline_group_begin__sock_write_rx[0]; + atomic_t sk_drops; + __s32 sk_peek_off; + struct sk_buff_head sk_error_queue; + struct sk_buff_head sk_receive_queue; + struct { + atomic_t rmem_alloc; + int len; + struct sk_buff *head; + struct sk_buff *tail; + } sk_backlog; + __u8 __cacheline_group_end__sock_write_rx[0]; + __u8 __cacheline_group_begin__sock_read_rx[0]; + struct dst_entry *sk_rx_dst; + int sk_rx_dst_ifindex; + u32 sk_rx_dst_cookie; + unsigned int sk_ll_usec; + unsigned int sk_napi_id; + u16 sk_busy_poll_budget; + u8 sk_prefer_busy_poll; + u8 sk_userlocks; + int sk_rcvbuf; + struct sk_filter *sk_filter; + union { + struct socket_wq *sk_wq; + struct socket_wq *sk_wq_raw; + }; + void (*sk_data_ready)(struct sock *); + long int sk_rcvtimeo; + int sk_rcvlowat; + __u8 __cacheline_group_end__sock_read_rx[0]; + __u8 __cacheline_group_begin__sock_read_rxtx[0]; + int sk_err; + struct socket *sk_socket; + struct mem_cgroup *sk_memcg; + struct xfrm_policy *sk_policy[2]; + __u8 __cacheline_group_end__sock_read_rxtx[0]; + __u8 __cacheline_group_begin__sock_write_rxtx[0]; + socket_lock_t sk_lock; + u32 sk_reserved_mem; + int sk_forward_alloc; + u32 sk_tsflags; + __u8 __cacheline_group_end__sock_write_rxtx[0]; + __u8 __cacheline_group_begin__sock_write_tx[0]; + int sk_write_pending; + atomic_t sk_omem_alloc; + int sk_sndbuf; + int sk_wmem_queued; + refcount_t sk_wmem_alloc; + long unsigned int sk_tsq_flags; + union { + struct sk_buff *sk_send_head; + struct rb_root tcp_rtx_queue; + }; + struct sk_buff_head sk_write_queue; + u32 sk_dst_pending_confirm; + u32 sk_pacing_status; + struct page_frag sk_frag; + struct timer_list sk_timer; + long unsigned int sk_pacing_rate; + atomic_t sk_zckey; + atomic_t sk_tskey; + __u8 __cacheline_group_end__sock_write_tx[0]; + __u8 __cacheline_group_begin__sock_read_tx[0]; + long unsigned int sk_max_pacing_rate; + long int sk_sndtimeo; + u32 sk_priority; + u32 sk_mark; + struct dst_entry *sk_dst_cache; + netdev_features_t sk_route_caps; + struct sk_buff * (*sk_validate_xmit_skb)(struct sock *, struct net_device *, struct sk_buff *); + u16 sk_gso_type; + u16 sk_gso_max_segs; + unsigned int sk_gso_max_size; + gfp_t sk_allocation; + u32 sk_txhash; + u8 sk_pacing_shift; + bool sk_use_task_frag; + __u8 __cacheline_group_end__sock_read_tx[0]; + u8 sk_gso_disabled: 1; + u8 sk_kern_sock: 1; + u8 sk_no_check_tx: 1; + u8 sk_no_check_rx: 1; + u8 sk_shutdown; + u16 sk_type; + u16 sk_protocol; + long unsigned int sk_lingertime; + struct proto *sk_prot_creator; + rwlock_t sk_callback_lock; + int sk_err_soft; + u32 sk_ack_backlog; + u32 sk_max_ack_backlog; + kuid_t sk_uid; + long unsigned int sk_ino; + spinlock_t sk_peer_lock; + int sk_bind_phc; + struct pid *sk_peer_pid; + const struct cred *sk_peer_cred; + ktime_t sk_stamp; + int sk_disconnects; + union { + u8 sk_txrehash; + u8 sk_scm_recv_flags; + struct { + u8 sk_scm_credentials: 1; + u8 sk_scm_security: 1; + u8 sk_scm_pidfd: 1; + u8 sk_scm_rights: 1; + u8 sk_scm_unused: 4; + }; + }; + u8 sk_clockid; + u8 sk_txtime_deadline_mode: 1; + u8 sk_txtime_report_errors: 1; + u8 sk_txtime_unused: 6; + u8 sk_bpf_cb_flags; + void *sk_user_data; + void *sk_security; + struct sock_cgroup_data sk_cgrp_data; + void (*sk_state_change)(struct sock *); + void (*sk_write_space)(struct sock *); + void (*sk_error_report)(struct sock *); + int (*sk_backlog_rcv)(struct sock *, struct sk_buff *); + void (*sk_destruct)(struct sock *); + struct sock_reuseport *sk_reuseport_cb; + struct bpf_local_storage *sk_bpf_storage; + struct callback_head sk_rcu; + netns_tracker ns_tracker; + struct xarray sk_user_frags; +}; + +typedef struct { + union { + void *kernel; + void *user; + }; + bool is_kernel: 1; +} sockptr_t; + +typedef sockptr_t bpfptr_t; + +struct btf_id_set8 { + u32 cnt; + u32 flags; + struct { + u32 id; + u32 flags; + } pairs[0]; +}; + +enum { + BTF_TRACING_TYPE_TASK = 0, + BTF_TRACING_TYPE_FILE = 1, + BTF_TRACING_TYPE_VMA = 2, + MAX_BTF_TRACING_TYPE = 3, +}; + +typedef int (*btf_kfunc_filter_t)(const struct bpf_prog *, u32); + +struct btf_kfunc_id_set { + struct module *owner; + struct btf_id_set8 *set; + btf_kfunc_filter_t filter; +}; + +struct btf_id_dtor_kfunc { + u32 btf_id; + u32 kfunc_btf_id; +}; + +struct btf_struct_meta { + u32 btf_id; + struct btf_record *record; +}; + +struct bpf_mem_caches; + +struct bpf_mem_cache; + +struct bpf_mem_alloc { + struct bpf_mem_caches *caches; + struct bpf_mem_cache *cache; + struct obj_cgroup *objcg; + bool percpu; + struct work_struct work; +}; + +struct bpf_verifier_log { + u64 start_pos; + u64 end_pos; + char *ubuf; + u32 level; + u32 len_total; + u32 len_max; + char kbuf[1024]; +}; + +enum priv_stack_mode { + PRIV_STACK_UNKNOWN = 0, + NO_PRIV_STACK = 1, + PRIV_STACK_ADAPTIVE = 2, +}; + +struct bpf_subprog_arg_info { + enum bpf_arg_type arg_type; + union { + u32 mem_size; + u32 btf_id; + }; +}; + +struct bpf_subprog_info { + u32 start; + u32 linfo_idx; + u16 stack_depth; + u16 stack_extra; + s16 fastcall_stack_off; + bool has_tail_call: 1; + bool tail_call_reachable: 1; + bool has_ld_abs: 1; + bool is_cb: 1; + bool is_async_cb: 1; + bool is_exception_cb: 1; + bool args_cached: 1; + bool keep_fastcall_stack: 1; + bool changes_pkt_data: 1; + bool might_sleep: 1; + enum priv_stack_mode priv_stack_mode; + u8 arg_cnt; + struct bpf_subprog_arg_info args[5]; +}; + +struct bpf_id_pair { + u32 old; + u32 cur; +}; + +struct bpf_idmap { + u32 tmp_id_gen; + struct bpf_id_pair map[600]; +}; + +struct bpf_idset { + u32 count; + u32 ids[600]; +}; + +struct backtrack_state { + struct bpf_verifier_env *env; + u32 frame; + u32 reg_masks[8]; + u64 stack_masks[8]; +}; + +struct bpf_scc_callchain { + u32 callsites[7]; + u32 scc; +}; + +struct bpf_verifier_stack_elem; + +struct bpf_verifier_state; + +struct bpf_insn_aux_data; + +struct bpf_jmp_history_entry; + +struct bpf_scc_info; + +struct bpf_verifier_env { + u32 insn_idx; + u32 prev_insn_idx; + struct bpf_prog *prog; + const struct bpf_verifier_ops *ops; + struct module *attach_btf_mod; + struct bpf_verifier_stack_elem *head; + int stack_size; + bool strict_alignment; + bool test_state_freq; + bool test_reg_invariants; + struct bpf_verifier_state *cur_state; + struct list_head *explored_states; + struct list_head free_list; + struct bpf_map *used_maps[64]; + struct btf_mod_pair used_btfs[64]; + u32 used_map_cnt; + u32 used_btf_cnt; + u32 id_gen; + u32 hidden_subprog_cnt; + int exception_callback_subprog; + bool explore_alu_limits; + bool allow_ptr_leaks; + bool allow_uninit_stack; + bool bpf_capable; + bool bypass_spec_v1; + bool bypass_spec_v4; + bool seen_direct_write; + bool seen_exception; + struct bpf_insn_aux_data *insn_aux_data; + const struct bpf_line_info *prev_linfo; + struct bpf_verifier_log log; + struct bpf_subprog_info subprog_info[258]; + union { + struct bpf_idmap idmap_scratch; + struct bpf_idset idset_scratch; + }; + struct { + int *insn_state; + int *insn_stack; + int *insn_postorder; + int cur_stack; + int cur_postorder; + } cfg; + struct backtrack_state bt; + struct bpf_jmp_history_entry *cur_hist_ent; + u32 pass_cnt; + u32 subprog_cnt; + u32 prev_insn_processed; + u32 insn_processed; + u32 prev_jmps_processed; + u32 jmps_processed; + u64 verification_time; + u32 max_states_per_insn; + u32 total_states; + u32 peak_states; + u32 longest_mark_read_walk; + u32 free_list_size; + u32 explored_states_size; + u32 num_backedges; + bpfptr_t fd_array; + u32 scratched_regs; + u64 scratched_stack_slots; + u64 prev_log_pos; + u64 prev_insn_print_pos; + struct bpf_reg_state fake_reg[2]; + char tmp_str_buf[320]; + struct bpf_insn insn_buf[32]; + struct bpf_insn epilogue_buf[32]; + struct bpf_scc_callchain callchain_buf; + struct bpf_scc_info **scc_info; + u32 scc_cnt; +}; + +struct bpf_retval_range { + s32 minval; + s32 maxval; +}; + +struct bpf_stack_state; + +struct bpf_func_state { + struct bpf_reg_state regs[11]; + int callsite; + u32 frameno; + u32 subprogno; + u32 async_entry_cnt; + struct bpf_retval_range callback_ret_range; + bool in_callback_fn; + bool in_async_callback_fn; + bool in_exception_callback_fn; + u32 callback_depth; + struct bpf_stack_state *stack; + int allocated_stack; +}; + +struct bpf_rb_node_kern { + struct rb_node rb_node; + void *owner; +}; + +struct bpf_list_node_kern { + struct list_head list_head; + void *owner; +}; + +enum bpf_type_flag { + PTR_MAYBE_NULL = 256, + MEM_RDONLY = 512, + MEM_RINGBUF = 1024, + MEM_USER = 2048, + MEM_PERCPU = 4096, + OBJ_RELEASE = 8192, + PTR_UNTRUSTED = 16384, + MEM_UNINIT = 32768, + DYNPTR_TYPE_LOCAL = 65536, + DYNPTR_TYPE_RINGBUF = 131072, + MEM_FIXED_SIZE = 262144, + MEM_ALLOC = 524288, + PTR_TRUSTED = 1048576, + MEM_RCU = 2097152, + NON_OWN_REF = 4194304, + DYNPTR_TYPE_SKB = 8388608, + DYNPTR_TYPE_XDP = 16777216, + MEM_ALIGNED = 33554432, + MEM_WRITE = 67108864, + __BPF_TYPE_FLAG_MAX = 67108865, + __BPF_TYPE_LAST_FLAG = 67108864, +}; + +struct bpf_dynptr_kern { + void *data; + u32 size; + u32 offset; +}; + +struct bpf_array_aux { + struct list_head poke_progs; + struct bpf_map *map; + struct mutex poke_mutex; + struct work_struct work; +}; + +struct bpf_array { + struct bpf_map map; + u32 elem_size; + u32 index_mask; + struct bpf_array_aux *aux; + union { + struct { + struct {} __empty_value; + char value[0]; + }; + struct { + struct {} __empty_ptrs; + void *ptrs[0]; + }; + struct { + struct {} __empty_pptrs; + void *pptrs[0]; + }; + }; +}; + +typedef long unsigned int (*bpf_ctx_copy_t)(void *, const void *, long unsigned int, long unsigned int); + +struct bpf_storage_buffer; + +struct bpf_cgroup_storage_map; + +struct bpf_cgroup_storage { + union { + struct bpf_storage_buffer *buf; + void *percpu_buf; + }; + struct bpf_cgroup_storage_map *map; + struct bpf_cgroup_storage_key key; + struct list_head list_map; + struct list_head list_cg; + struct rb_node node; + struct callback_head rcu; +}; + +struct bpf_bprintf_buffers { + char bin_args[512]; + char buf[1024]; +}; + +struct bpf_bprintf_data { + u32 *bin_args; + char *buf; + bool get_bin_args; + bool get_buf; +}; + +struct flowi_tunnel { + __be64 tun_id; +}; + +struct flowi_common { + int flowic_oif; + int flowic_iif; + int flowic_l3mdev; + __u32 flowic_mark; + __u8 flowic_tos; + __u8 flowic_scope; + __u8 flowic_proto; + __u8 flowic_flags; + __u32 flowic_secid; + kuid_t flowic_uid; + __u32 flowic_multipath_hash; + struct flowi_tunnel flowic_tun_key; +}; + +union flowi_uli { + struct { + __be16 dport; + __be16 sport; + } ports; + struct { + __u8 type; + __u8 code; + } icmpt; + __be32 gre_key; + struct { + __u8 type; + } mht; +}; + +struct flowi4 { + struct flowi_common __fl_common; + __be32 saddr; + __be32 daddr; + union flowi_uli uli; +}; + +struct flowi6 { + struct flowi_common __fl_common; + struct in6_addr daddr; + struct in6_addr saddr; + __be32 flowlabel; + union flowi_uli uli; + __u32 mp_hash; +}; + +struct flowi { + union { + struct flowi_common __fl_common; + struct flowi4 ip4; + struct flowi6 ip6; + } u; +}; + +struct prot_inuse { + int all; + int val[64]; +}; + +struct fib_rule; + +struct fib_lookup_arg; + +struct fib_rule_hdr; + +struct fib_rules_ops { + int family; + struct list_head list; + int rule_size; + int addr_size; + int unresolved_rules; + int nr_goto_rules; + unsigned int fib_rules_seq; + int (*action)(struct fib_rule *, struct flowi *, int, struct fib_lookup_arg *); + bool (*suppress)(struct fib_rule *, int, struct fib_lookup_arg *); + int (*match)(struct fib_rule *, struct flowi *, int); + int (*configure)(struct fib_rule *, struct sk_buff *, struct fib_rule_hdr *, struct nlattr **, struct netlink_ext_ack *); + int (*delete)(struct fib_rule *); + int (*compare)(struct fib_rule *, struct fib_rule_hdr *, struct nlattr **); + int (*fill)(struct fib_rule *, struct sk_buff *, struct fib_rule_hdr *); + size_t (*nlmsg_payload)(struct fib_rule *); + void (*flush_cache)(struct fib_rules_ops *); + int nlgroup; + struct list_head rules_list; + struct module *owner; + struct net *fro_net; + struct callback_head rcu; +}; + +struct fib_notifier_ops { + int family; + struct list_head list; + unsigned int (*fib_seq_read)(const struct net *); + int (*fib_dump)(struct net *, struct notifier_block *, struct netlink_ext_ack *); + struct module *owner; + struct callback_head rcu; +}; + +struct ubuf_info_ops { + void (*complete)(struct sk_buff *, struct ubuf_info *, bool); + int (*link_skb)(struct sk_buff *, struct ubuf_info *); +}; + +typedef enum { + SS_FREE = 0, + SS_UNCONNECTED = 1, + SS_CONNECTING = 2, + SS_CONNECTED = 3, + SS_DISCONNECTING = 4, +} socket_state; + +struct socket_wq { + wait_queue_head_t wait; + struct fasync_struct *fasync_list; + long unsigned int flags; + struct callback_head rcu; + long: 64; +}; + +struct proto_ops; + +struct socket { + socket_state state; + short int type; + long unsigned int flags; + struct file *file; + struct sock *sk; + const struct proto_ops *ops; + long: 64; + long: 64; + long: 64; + struct socket_wq wq; +}; + +typedef struct { + size_t written; + size_t count; + union { + char *buf; + void *data; + } arg; + int error; +} read_descriptor_t; + +typedef int (*sk_read_actor_t)(read_descriptor_t *, struct sk_buff *, unsigned int, size_t); + +typedef int (*skb_read_actor_t)(struct sock *, struct sk_buff *); + +struct proto_accept_arg; + +struct proto_ops { + int family; + struct module *owner; + int (*release)(struct socket *); + int (*bind)(struct socket *, struct sockaddr *, int); + int (*connect)(struct socket *, struct sockaddr *, int, int); + int (*socketpair)(struct socket *, struct socket *); + int (*accept)(struct socket *, struct socket *, struct proto_accept_arg *); + int (*getname)(struct socket *, struct sockaddr *, int); + __poll_t (*poll)(struct file *, struct socket *, struct poll_table_struct *); + int (*ioctl)(struct socket *, unsigned int, long unsigned int); + int (*compat_ioctl)(struct socket *, unsigned int, long unsigned int); + int (*gettstamp)(struct socket *, void *, bool, bool); + int (*listen)(struct socket *, int); + int (*shutdown)(struct socket *, int); + int (*setsockopt)(struct socket *, int, int, sockptr_t, unsigned int); + int (*getsockopt)(struct socket *, int, int, char *, int *); + void (*show_fdinfo)(struct seq_file *, struct socket *); + int (*sendmsg)(struct socket *, struct msghdr *, size_t); + int (*recvmsg)(struct socket *, struct msghdr *, size_t, int); + int (*mmap)(struct file *, struct socket *, struct vm_area_struct *); + ssize_t (*splice_read)(struct socket *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); + void (*splice_eof)(struct socket *); + int (*set_peek_off)(struct sock *, int); + int (*peek_len)(struct socket *); + int (*read_sock)(struct sock *, read_descriptor_t *, sk_read_actor_t); + int (*read_skb)(struct sock *, skb_read_actor_t); + int (*sendmsg_locked)(struct sock *, struct msghdr *, size_t); + int (*set_rcvlowat)(struct sock *, int); +}; + +struct proto_accept_arg { + int flags; + int err; + int is_empty; + bool kern; +}; + +struct neigh_parms { + possible_net_t net; + struct net_device *dev; + netdevice_tracker dev_tracker; + struct list_head list; + int (*neigh_setup)(struct neighbour *); + struct neigh_table *tbl; + void *sysctl_table; + int dead; + refcount_t refcnt; + struct callback_head callback_head; + int reachable_time; + u32 qlen; + int data[14]; + long unsigned int data_state[1]; +}; + +enum hwtstamp_source { + HWTSTAMP_SOURCE_NETDEV = 1, + HWTSTAMP_SOURCE_PHYLIB = 2, +}; + +enum hwtstamp_provider_qualifier { + HWTSTAMP_PROVIDER_QUALIFIER_PRECISE = 0, + HWTSTAMP_PROVIDER_QUALIFIER_APPROX = 1, + HWTSTAMP_PROVIDER_QUALIFIER_CNT = 2, +}; + +struct kernel_hwtstamp_config { + int flags; + int tx_type; + int rx_filter; + struct ifreq *ifr; + bool copied_to_user; + enum hwtstamp_source source; + enum hwtstamp_provider_qualifier qualifier; +}; + +struct hwtstamp_provider_desc { + int index; + enum hwtstamp_provider_qualifier qualifier; +}; + +struct hwtstamp_provider { + struct callback_head callback_head; + enum hwtstamp_source source; + struct phy_device *phydev; + struct hwtstamp_provider_desc desc; +}; + +struct pneigh_entry; + +struct neigh_statistics; + +struct neigh_hash_table; + +struct neigh_table { + int family; + unsigned int entry_size; + unsigned int key_len; + __be16 protocol; + __u32 (*hash)(const void *, const struct net_device *, __u32 *); + bool (*key_eq)(const struct neighbour *, const void *); + int (*constructor)(struct neighbour *); + int (*pconstructor)(struct pneigh_entry *); + void (*pdestructor)(struct pneigh_entry *); + void (*proxy_redo)(struct sk_buff *); + int (*is_multicast)(const void *); + bool (*allow_add)(const struct net_device *, struct netlink_ext_ack *); + char *id; + struct neigh_parms parms; + struct list_head parms_list; + int gc_interval; + int gc_thresh1; + int gc_thresh2; + int gc_thresh3; + long unsigned int last_flush; + struct delayed_work gc_work; + struct delayed_work managed_work; + struct timer_list proxy_timer; + struct sk_buff_head proxy_queue; + atomic_t entries; + atomic_t gc_entries; + struct list_head gc_list; + struct list_head managed_list; + rwlock_t lock; + long unsigned int last_rand; + struct neigh_statistics *stats; + struct neigh_hash_table *nht; + struct mutex phash_lock; + struct pneigh_entry **phash_buckets; +}; + +struct neigh_statistics { + long unsigned int allocs; + long unsigned int destroys; + long unsigned int hash_grows; + long unsigned int res_failed; + long unsigned int lookups; + long unsigned int hits; + long unsigned int rcv_probes_mcast; + long unsigned int rcv_probes_ucast; + long unsigned int periodic_gc_runs; + long unsigned int forced_gc_runs; + long unsigned int unres_discards; + long unsigned int table_fulls; +}; + +struct neigh_ops { + int family; + void (*solicit)(struct neighbour *, struct sk_buff *); + void (*error_report)(struct neighbour *, struct sk_buff *); + int (*output)(struct neighbour *, struct sk_buff *); + int (*connected_output)(struct neighbour *, struct sk_buff *); +}; + +struct pneigh_entry { + struct pneigh_entry *next; + possible_net_t net; + struct net_device *dev; + netdevice_tracker dev_tracker; + union { + struct list_head free_node; + struct callback_head rcu; + }; + u32 flags; + u8 protocol; + bool permanent; + u32 key[0]; +}; + +struct neigh_hash_table { + struct hlist_head *hash_heads; + unsigned int hash_shift; + __u32 hash_rnd[4]; + struct callback_head rcu; +}; + +struct fib_rule_hdr { + __u8 family; + __u8 dst_len; + __u8 src_len; + __u8 tos; + __u8 table; + __u8 res1; + __u8 res2; + __u8 action; + __u32 flags; +}; + +struct fib_rule_port_range { + __u16 start; + __u16 end; +}; + +struct fib_kuid_range { + kuid_t start; + kuid_t end; +}; + +struct fib_rule { + struct list_head list; + int iifindex; + int oifindex; + u32 mark; + u32 mark_mask; + u32 flags; + u32 table; + u8 action; + u8 l3mdev; + u8 proto; + u8 ip_proto; + u32 target; + __be64 tun_id; + struct fib_rule *ctarget; + struct net *fr_net; + refcount_t refcnt; + u32 pref; + int suppress_ifgroup; + int suppress_prefixlen; + char iifname[16]; + char oifname[16]; + struct fib_kuid_range uid_range; + struct fib_rule_port_range sport_range; + struct fib_rule_port_range dport_range; + u16 sport_mask; + u16 dport_mask; + u8 iif_is_l3_master; + u8 oif_is_l3_master; + struct callback_head rcu; +}; + +struct fib_lookup_arg { + void *lookup_ptr; + const void *lookup_data; + void *result; + struct fib_rule *rule; + u32 table; + int flags; +}; + +struct smc_hashinfo; + +struct sk_psock; + +struct request_sock_ops; + +struct timewait_sock_ops; + +struct raw_hashinfo; + +struct proto { + void (*close)(struct sock *, long int); + int (*pre_connect)(struct sock *, struct sockaddr *, int); + int (*connect)(struct sock *, struct sockaddr *, int); + int (*disconnect)(struct sock *, int); + struct sock * (*accept)(struct sock *, struct proto_accept_arg *); + int (*ioctl)(struct sock *, int, int *); + int (*init)(struct sock *); + void (*destroy)(struct sock *); + void (*shutdown)(struct sock *, int); + int (*setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); + int (*getsockopt)(struct sock *, int, int, char *, int *); + void (*keepalive)(struct sock *, int); + int (*compat_ioctl)(struct sock *, unsigned int, long unsigned int); + int (*sendmsg)(struct sock *, struct msghdr *, size_t); + int (*recvmsg)(struct sock *, struct msghdr *, size_t, int, int *); + void (*splice_eof)(struct socket *); + int (*bind)(struct sock *, struct sockaddr *, int); + int (*bind_add)(struct sock *, struct sockaddr *, int); + int (*backlog_rcv)(struct sock *, struct sk_buff *); + bool (*bpf_bypass_getsockopt)(int, int); + void (*release_cb)(struct sock *); + int (*hash)(struct sock *); + void (*unhash)(struct sock *); + void (*rehash)(struct sock *); + int (*get_port)(struct sock *, short unsigned int); + void (*put_port)(struct sock *); + int (*psock_update_sk_prot)(struct sock *, struct sk_psock *, bool); + unsigned int inuse_idx; + bool (*stream_memory_free)(const struct sock *, int); + bool (*sock_is_readable)(struct sock *); + void (*enter_memory_pressure)(struct sock *); + void (*leave_memory_pressure)(struct sock *); + atomic_long_t *memory_allocated; + int *per_cpu_fw_alloc; + struct percpu_counter *sockets_allocated; + long unsigned int *memory_pressure; + long int *sysctl_mem; + int *sysctl_wmem; + int *sysctl_rmem; + u32 sysctl_wmem_offset; + u32 sysctl_rmem_offset; + int max_header; + bool no_autobind; + struct kmem_cache *slab; + unsigned int obj_size; + unsigned int ipv6_pinfo_offset; + slab_flags_t slab_flags; + unsigned int useroffset; + unsigned int usersize; + unsigned int *orphan_count; + struct request_sock_ops *rsk_prot; + struct timewait_sock_ops *twsk_prot; + union { + struct inet_hashinfo *hashinfo; + struct udp_table *udp_table; + struct raw_hashinfo *raw_hash; + struct smc_hashinfo *smc_hash; + } h; + struct module *owner; + char name[32]; + struct list_head node; + int (*diag_destroy)(struct sock *, int); +}; + +struct sk_filter { + refcount_t refcnt; + struct callback_head rcu; + struct bpf_prog *prog; +}; + +struct bpf_storage_buffer { + struct callback_head rcu; + char data[0]; +}; + +struct bpf_stack_state { + struct bpf_reg_state spilled_ptr; + u8 slot_type[8]; +}; + +enum ref_state_type { + REF_TYPE_PTR = 2, + REF_TYPE_IRQ = 4, + REF_TYPE_LOCK = 8, + REF_TYPE_RES_LOCK = 16, + REF_TYPE_RES_LOCK_IRQ = 32, + REF_TYPE_LOCK_MASK = 56, +}; + +struct bpf_reference_state { + enum ref_state_type type; + int id; + int insn_idx; + void *ptr; +}; + +enum { + INSN_F_FRAMENO_MASK = 7, + INSN_F_SPI_MASK = 63, + INSN_F_SPI_SHIFT = 3, + INSN_F_STACK_ACCESS = 512, + INSN_F_DST_REG_STACK = 1024, + INSN_F_SRC_REG_STACK = 2048, +}; + +struct bpf_jmp_history_entry { + u32 idx; + u32 prev_idx: 20; + u32 flags: 12; + u64 linked_regs; +}; + +struct bpf_verifier_state { + struct bpf_func_state *frame[8]; + struct bpf_verifier_state *parent; + struct bpf_reference_state *refs; + u32 branches; + u32 insn_idx; + u32 curframe; + u32 acquired_refs; + u32 active_locks; + u32 active_preempt_locks; + u32 active_irq_id; + u32 active_lock_id; + void *active_lock_ptr; + bool active_rcu_lock; + bool speculative; + bool in_sleepable; + u32 first_insn_idx; + u32 last_insn_idx; + struct bpf_verifier_state *equal_state; + struct bpf_jmp_history_entry *jmp_history; + u32 jmp_history_cnt; + u32 dfs_depth; + u32 callback_unroll_depth; + u32 may_goto_depth; +}; + +struct bpf_loop_inline_state { + unsigned int initialized: 1; + unsigned int fit_for_inline: 1; + u32 callback_subprogno; +}; + +struct bpf_map_ptr_state { + struct bpf_map *map_ptr; + bool poison; + bool unpriv; +}; + +struct bpf_insn_aux_data { + union { + enum bpf_reg_type ptr_type; + struct bpf_map_ptr_state map_ptr_state; + s32 call_imm; + u32 alu_limit; + struct { + u32 map_index; + u32 map_off; + }; + struct { + enum bpf_reg_type reg_type; + union { + struct { + struct btf *btf; + u32 btf_id; + }; + u32 mem_size; + }; + } btf_var; + struct bpf_loop_inline_state loop_inline_state; + }; + union { + u64 obj_new_size; + u64 insert_off; + }; + struct btf_struct_meta *kptr_struct_meta; + u64 map_key_state; + int ctx_field_size; + u32 seen; + bool nospec; + bool nospec_result; + bool zext_dst; + bool needs_zext; + bool storage_get_func_atomic; + bool is_iter_next; + bool call_with_percpu_alloc_ptr; + u8 alu_state; + u8 fastcall_pattern: 1; + u8 fastcall_spills_num: 3; + u8 arg_prog: 4; + unsigned int orig_idx; + bool jmp_point; + bool prune_point; + bool force_checkpoint; + bool calls_callback; + u32 scc; + u16 live_regs_before; +}; + +struct bpf_scc_backedge { + struct bpf_scc_backedge *next; + struct bpf_verifier_state state; +}; + +struct bpf_scc_visit { + struct bpf_scc_callchain callchain; + struct bpf_verifier_state *entry_state; + struct bpf_scc_backedge *backedges; + u32 num_backedges; +}; + +struct bpf_scc_info { + u32 num_visits; + struct bpf_scc_visit visits[0]; +}; + +typedef u64 (*btf_bpf_map_lookup_elem)(struct bpf_map *, void *); + +typedef u64 (*btf_bpf_map_update_elem)(struct bpf_map *, void *, void *, u64); + +typedef u64 (*btf_bpf_map_delete_elem)(struct bpf_map *, void *); + +typedef u64 (*btf_bpf_map_push_elem)(struct bpf_map *, void *, u64); + +typedef u64 (*btf_bpf_map_pop_elem)(struct bpf_map *, void *); + +typedef u64 (*btf_bpf_map_peek_elem)(struct bpf_map *, void *); + +typedef u64 (*btf_bpf_map_lookup_percpu_elem)(struct bpf_map *, void *, u32); + +typedef u64 (*btf_bpf_get_smp_processor_id)(void); + +typedef u64 (*btf_bpf_get_numa_node_id)(void); + +typedef u64 (*btf_bpf_ktime_get_ns)(void); + +typedef u64 (*btf_bpf_ktime_get_boot_ns)(void); + +typedef u64 (*btf_bpf_ktime_get_coarse_ns)(void); + +typedef u64 (*btf_bpf_ktime_get_tai_ns)(void); + +typedef u64 (*btf_bpf_get_current_pid_tgid)(void); + +typedef u64 (*btf_bpf_get_current_uid_gid)(void); + +typedef u64 (*btf_bpf_get_current_comm)(char *, u32); + +typedef u64 (*btf_bpf_spin_lock)(struct bpf_spin_lock *); + +typedef u64 (*btf_bpf_spin_unlock)(struct bpf_spin_lock *); + +typedef u64 (*btf_bpf_jiffies64)(void); + +typedef u64 (*btf_bpf_get_current_cgroup_id)(void); + +typedef u64 (*btf_bpf_get_current_ancestor_cgroup_id)(int); + +typedef u64 (*btf_bpf_strtol)(const char *, size_t, u64, s64 *); + +typedef u64 (*btf_bpf_strtoul)(const char *, size_t, u64, u64 *); + +typedef u64 (*btf_bpf_strncmp)(const char *, u32, const char *); + +typedef u64 (*btf_bpf_get_ns_current_pid_tgid)(u64, u64, struct bpf_pidns_info *, u32); + +typedef u64 (*btf_bpf_event_output_data)(void *, struct bpf_map *, u64, void *, u64); + +typedef u64 (*btf_bpf_copy_from_user)(void *, u32, const void *); + +typedef u64 (*btf_bpf_copy_from_user_task)(void *, u32, const void *, struct task_struct *, u64); + +typedef u64 (*btf_bpf_per_cpu_ptr)(const void *, u32); + +typedef u64 (*btf_bpf_this_cpu_ptr)(const void *); + +typedef u64 (*btf_bpf_snprintf)(char *, u32, char *, const void *, u32); + +struct bpf_async_cb { + struct bpf_map *map; + struct bpf_prog *prog; + void *callback_fn; + void *value; + union { + struct callback_head rcu; + struct work_struct delete_work; + }; + u64 flags; +}; + +struct bpf_hrtimer { + struct bpf_async_cb cb; + struct hrtimer timer; + atomic_t cancelling; +}; + +struct bpf_work { + struct bpf_async_cb cb; + struct work_struct work; + struct work_struct delete_work; +}; + +struct bpf_async_kern { + union { + struct bpf_async_cb *cb; + struct bpf_hrtimer *timer; + struct bpf_work *work; + }; + struct bpf_spin_lock lock; +}; + +enum bpf_async_type { + BPF_ASYNC_TYPE_TIMER = 0, + BPF_ASYNC_TYPE_WQ = 1, +}; + +typedef u64 (*btf_bpf_timer_init)(struct bpf_async_kern *, struct bpf_map *, u64); + +typedef u64 (*btf_bpf_timer_set_callback)(struct bpf_async_kern *, void *, struct bpf_prog_aux *); + +typedef u64 (*btf_bpf_timer_start)(struct bpf_async_kern *, u64, u64); + +typedef u64 (*btf_bpf_timer_cancel)(struct bpf_async_kern *); + +typedef u64 (*btf_bpf_kptr_xchg)(void *, void *); + +typedef u64 (*btf_bpf_dynptr_from_mem)(void *, u32, u64, struct bpf_dynptr_kern *); + +typedef u64 (*btf_bpf_dynptr_read)(void *, u32, const struct bpf_dynptr_kern *, u32, u64); + +typedef u64 (*btf_bpf_dynptr_write)(const struct bpf_dynptr_kern *, u32, void *, u32, u64); + +typedef u64 (*btf_bpf_dynptr_data)(const struct bpf_dynptr_kern *, u32, u32); + +typedef u64 (*btf_bpf_current_task_under_cgroup)(struct bpf_map *, u32); + +struct bpf_throw_ctx { + struct bpf_prog_aux *aux; + u64 sp; + u64 bp; + int cnt; +}; + +struct bpf_iter_bits { + __u64 __opaque[2]; +}; + +struct bpf_iter_bits_kern { + union { + __u64 *bits; + __u64 bits_copy; + }; + int nr_bits; + int bit; +}; + +union bpf_iter_link_info { + struct { + __u32 map_fd; + } map; + struct { + enum bpf_cgroup_iter_order order; + __u32 cgroup_fd; + __u64 cgroup_id; + } cgroup; + struct { + __u32 tid; + __u32 pid; + __u32 pid_fd; + } task; +}; + +typedef int (*bpf_iter_attach_target_t)(struct bpf_prog *, union bpf_iter_link_info *, struct bpf_iter_aux_info *); + +typedef void (*bpf_iter_detach_target_t)(struct bpf_iter_aux_info *); + +typedef void (*bpf_iter_show_fdinfo_t)(const struct bpf_iter_aux_info *, struct seq_file *); + +typedef int (*bpf_iter_fill_link_info_t)(const struct bpf_iter_aux_info *, struct bpf_link_info *); + +typedef const struct bpf_func_proto * (*bpf_iter_get_func_proto_t)(enum bpf_func_id, const struct bpf_prog *); + +struct bpf_iter_reg { + const char *target; + bpf_iter_attach_target_t attach_target; + bpf_iter_detach_target_t detach_target; + bpf_iter_show_fdinfo_t show_fdinfo; + bpf_iter_fill_link_info_t fill_link_info; + bpf_iter_get_func_proto_t get_func_proto; + u32 ctx_arg_info_size; + u32 feature; + struct bpf_ctx_arg_aux ctx_arg_info[2]; + const struct bpf_iter_seq_info *seq_info; +}; + +struct bpf_iter_meta { + union { + struct seq_file *seq; + }; + u64 session_id; + u64 seq_num; +}; + +struct bpf_iter_seq_prog_info { + u32 prog_id; +}; + +struct bpf_iter__bpf_prog { + union { + struct bpf_iter_meta *meta; + }; + union { + struct bpf_prog *prog; + }; +}; + +enum bpf_lru_list_type { + BPF_LRU_LIST_T_ACTIVE = 0, + BPF_LRU_LIST_T_INACTIVE = 1, + BPF_LRU_LIST_T_FREE = 2, + BPF_LRU_LOCAL_LIST_T_FREE = 3, + BPF_LRU_LOCAL_LIST_T_PENDING = 4, +}; + +struct bpf_lru_node { + struct list_head list; + u16 cpu; + u8 type; + u8 ref; +}; + +struct bpf_lru_list { + struct list_head lists[3]; + unsigned int counts[2]; + struct list_head *next_inactive_rotation; + raw_spinlock_t lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct bpf_lru_locallist { + struct list_head lists[2]; + u16 next_steal; + raw_spinlock_t lock; +}; + +struct bpf_common_lru { + struct bpf_lru_list lru_list; + struct bpf_lru_locallist *local_list; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +typedef bool (*del_from_htab_func)(void *, struct bpf_lru_node *); + +struct bpf_lru { + union { + struct bpf_common_lru common_lru; + struct bpf_lru_list *percpu_lru; + }; + del_from_htab_func del_from_htab; + void *del_arg; + unsigned int hash_offset; + unsigned int target_free; + unsigned int nr_scans; + bool percpu; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum { + BPF_ANY = 0, + BPF_NOEXIST = 1, + BPF_EXIST = 2, + BPF_F_LOCK = 4, +}; + +enum { + BPF_F_NO_PREALLOC = 1, + BPF_F_NO_COMMON_LRU = 2, + BPF_F_NUMA_NODE = 4, + BPF_F_RDONLY = 8, + BPF_F_WRONLY = 16, + BPF_F_STACK_BUILD_ID = 32, + BPF_F_ZERO_SEED = 64, + BPF_F_RDONLY_PROG = 128, + BPF_F_WRONLY_PROG = 256, + BPF_F_CLONE = 512, + BPF_F_MMAPABLE = 1024, + BPF_F_PRESERVE_ELEMS = 2048, + BPF_F_INNER_MAP = 4096, + BPF_F_LINK = 8192, + BPF_F_PATH_FD = 16384, + BPF_F_VTYPE_BTF_OBJ_FD = 32768, + BPF_F_TOKEN_FD = 65536, + BPF_F_SEGV_ON_FAULT = 131072, + BPF_F_NO_USER_CONV = 262144, +}; + +typedef struct qspinlock rqspinlock_t; + +struct rqspinlock_held { + int cnt; + void *locks[31]; +}; + +enum bpf_cgroup_storage_type { + BPF_CGROUP_STORAGE_SHARED = 0, + BPF_CGROUP_STORAGE_PERCPU = 1, + __BPF_CGROUP_STORAGE_MAX = 2, +}; + +enum { + BPF_MAX_TRAMP_LINKS = 38, +}; + +enum bpf_tramp_prog_type { + BPF_TRAMP_FENTRY = 0, + BPF_TRAMP_FEXIT = 1, + BPF_TRAMP_MODIFY_RETURN = 2, + BPF_TRAMP_MAX = 3, + BPF_TRAMP_REPLACE = 4, +}; + +struct bpf_queue_stack { + struct bpf_map map; + rqspinlock_t lock; + u32 head; + u32 tail; + u32 size; + char elements[0]; +}; + +enum { + BPF_LOCAL_STORAGE_GET_F_CREATE = 1, + BPF_SK_STORAGE_GET_F_CREATE = 1, +}; + +struct bpf_local_storage_data; + +struct bpf_local_storage { + struct bpf_local_storage_data *cache[16]; + struct bpf_local_storage_map *smap; + struct hlist_head list; + void *owner; + struct callback_head rcu; + raw_spinlock_t lock; +}; + +typedef struct fd class_fd_raw_t; + +struct bpf_local_storage_map_bucket; + +struct bpf_local_storage_map { + struct bpf_map map; + struct bpf_local_storage_map_bucket *buckets; + u32 bucket_log; + u16 elem_size; + u16 cache_idx; + struct bpf_mem_alloc selem_ma; + struct bpf_mem_alloc storage_ma; + bool bpf_ma; +}; + +enum { + RTAX_UNSPEC = 0, + RTAX_LOCK = 1, + RTAX_MTU = 2, + RTAX_WINDOW = 3, + RTAX_RTT = 4, + RTAX_RTTVAR = 5, + RTAX_SSTHRESH = 6, + RTAX_CWND = 7, + RTAX_ADVMSS = 8, + RTAX_REORDERING = 9, + RTAX_HOPLIMIT = 10, + RTAX_INITCWND = 11, + RTAX_FEATURES = 12, + RTAX_RTO_MIN = 13, + RTAX_INITRWND = 14, + RTAX_QUICKACK = 15, + RTAX_CC_ALGO = 16, + RTAX_FASTOPEN_NO_COOKIE = 17, + __RTAX_MAX = 18, +}; + +struct bpf_local_storage_map_bucket { + struct hlist_head list; + raw_spinlock_t lock; +}; + +struct bpf_local_storage_data { + struct bpf_local_storage_map *smap; + u8 data[0]; +}; + +struct bpf_local_storage_elem { + struct hlist_node map_node; + struct hlist_node snode; + struct bpf_local_storage *local_storage; + union { + struct callback_head rcu; + struct hlist_node free_node; + }; + long: 64; + struct bpf_local_storage_data sdata; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct bpf_local_storage_cache { + spinlock_t idx_lock; + u64 idx_usage_counts[16]; +}; + +enum { + NEIGH_VAR_MCAST_PROBES = 0, + NEIGH_VAR_UCAST_PROBES = 1, + NEIGH_VAR_APP_PROBES = 2, + NEIGH_VAR_MCAST_REPROBES = 3, + NEIGH_VAR_RETRANS_TIME = 4, + NEIGH_VAR_BASE_REACHABLE_TIME = 5, + NEIGH_VAR_DELAY_PROBE_TIME = 6, + NEIGH_VAR_INTERVAL_PROBE_TIME_MS = 7, + NEIGH_VAR_GC_STALETIME = 8, + NEIGH_VAR_QUEUE_LEN_BYTES = 9, + NEIGH_VAR_PROXY_QLEN = 10, + NEIGH_VAR_ANYCAST_DELAY = 11, + NEIGH_VAR_PROXY_DELAY = 12, + NEIGH_VAR_LOCKTIME = 13, + NEIGH_VAR_QUEUE_LEN = 14, + NEIGH_VAR_RETRANS_TIME_MS = 15, + NEIGH_VAR_BASE_REACHABLE_TIME_MS = 16, + NEIGH_VAR_GC_INTERVAL = 17, + NEIGH_VAR_GC_THRESH1 = 18, + NEIGH_VAR_GC_THRESH2 = 19, + NEIGH_VAR_GC_THRESH3 = 20, + NEIGH_VAR_MAX = 21, +}; + +enum { + TCP_ESTABLISHED = 1, + TCP_SYN_SENT = 2, + TCP_SYN_RECV = 3, + TCP_FIN_WAIT1 = 4, + TCP_FIN_WAIT2 = 5, + TCP_TIME_WAIT = 6, + TCP_CLOSE = 7, + TCP_CLOSE_WAIT = 8, + TCP_LAST_ACK = 9, + TCP_LISTEN = 10, + TCP_CLOSING = 11, + TCP_NEW_SYN_RECV = 12, + TCP_BOUND_INACTIVE = 13, + TCP_MAX_STATES = 14, +}; + +struct lsm_blob_sizes { + int lbs_cred; + int lbs_file; + int lbs_ib; + int lbs_inode; + int lbs_sock; + int lbs_superblock; + int lbs_ipc; + int lbs_key; + int lbs_msg_msg; + int lbs_perf_event; + int lbs_task; + int lbs_xattr_count; + int lbs_tun_dev; + int lbs_bdev; + bool lbs_secmark; +}; + +struct bpf_storage_blob { + struct bpf_local_storage *storage; +}; + +typedef u64 (*btf_bpf_inode_storage_get)(struct bpf_map *, struct inode *, void *, u64, gfp_t); + +typedef u64 (*btf_bpf_inode_storage_delete)(struct bpf_map *, struct inode *); + +struct bpf_res_spin_lock { + u32 val; +}; + +enum bpf_stream_id { + BPF_STDOUT = 1, + BPF_STDERR = 2, +}; + +struct bpf_stream_stage { + struct llist_head log; + int len; +}; + +struct mcs_spinlock { + struct mcs_spinlock *next; + int locked; + int count; +}; + +struct qnode { + struct mcs_spinlock mcs; + long int reserved[2]; +}; + +struct rqspinlock_timeout { + u64 timeout_end; + u64 duration; + u64 cur; + u16 spin; +}; + +typedef unsigned int zap_flags_t; + +struct zap_details { + struct folio *single_folio; + bool even_cows; + bool reclaim_pt; + zap_flags_t zap_flags; +}; + +typedef int (*pte_fn_t)(pte_t *, long unsigned int, void *); + +struct range_tree { + struct rb_root_cached it_root; + struct rb_root_cached range_size_root; +}; + +struct bpf_arena { + struct bpf_map map; + u64 user_vm_start; + u64 user_vm_end; + struct vm_struct *kern_vm; + struct range_tree rt; + struct list_head vma_list; + struct mutex lock; +}; + +struct vma_list { + struct vm_area_struct *vma; + struct list_head head; + refcount_t mmap_count; +}; + +enum { + BPF_F_INGRESS = 1, + BPF_F_BROADCAST = 8, + BPF_F_EXCLUDE_INGRESS = 16, +}; + +enum xdp_action { + XDP_ABORTED = 0, + XDP_DROP = 1, + XDP_PASS = 2, + XDP_TX = 3, + XDP_REDIRECT = 4, +}; + +struct bpf_cpumap_val { + __u32 qsize; + union { + int fd; + __u32 id; + } bpf_prog; +}; + +enum net_device_flags { + IFF_UP = 1, + IFF_BROADCAST = 2, + IFF_DEBUG = 4, + IFF_LOOPBACK = 8, + IFF_POINTOPOINT = 16, + IFF_NOTRAILERS = 32, + IFF_RUNNING = 64, + IFF_NOARP = 128, + IFF_PROMISC = 256, + IFF_ALLMULTI = 512, + IFF_MASTER = 1024, + IFF_SLAVE = 2048, + IFF_MULTICAST = 4096, + IFF_PORTSEL = 8192, + IFF_AUTOMEDIA = 16384, + IFF_DYNAMIC = 32768, + IFF_LOWER_UP = 65536, + IFF_DORMANT = 131072, + IFF_ECHO = 262144, +}; + +typedef unsigned int (*bpf_func_t)(const void *, const struct bpf_insn *); + +enum skb_drop_reason { + SKB_NOT_DROPPED_YET = 0, + SKB_CONSUMED = 1, + SKB_DROP_REASON_NOT_SPECIFIED = 2, + SKB_DROP_REASON_NO_SOCKET = 3, + SKB_DROP_REASON_SOCKET_CLOSE = 4, + SKB_DROP_REASON_SOCKET_FILTER = 5, + SKB_DROP_REASON_SOCKET_RCVBUFF = 6, + SKB_DROP_REASON_UNIX_DISCONNECT = 7, + SKB_DROP_REASON_UNIX_SKIP_OOB = 8, + SKB_DROP_REASON_PKT_TOO_SMALL = 9, + SKB_DROP_REASON_TCP_CSUM = 10, + SKB_DROP_REASON_UDP_CSUM = 11, + SKB_DROP_REASON_NETFILTER_DROP = 12, + SKB_DROP_REASON_OTHERHOST = 13, + SKB_DROP_REASON_IP_CSUM = 14, + SKB_DROP_REASON_IP_INHDR = 15, + SKB_DROP_REASON_IP_RPFILTER = 16, + SKB_DROP_REASON_UNICAST_IN_L2_MULTICAST = 17, + SKB_DROP_REASON_XFRM_POLICY = 18, + SKB_DROP_REASON_IP_NOPROTO = 19, + SKB_DROP_REASON_PROTO_MEM = 20, + SKB_DROP_REASON_TCP_AUTH_HDR = 21, + SKB_DROP_REASON_TCP_MD5NOTFOUND = 22, + SKB_DROP_REASON_TCP_MD5UNEXPECTED = 23, + SKB_DROP_REASON_TCP_MD5FAILURE = 24, + SKB_DROP_REASON_TCP_AONOTFOUND = 25, + SKB_DROP_REASON_TCP_AOUNEXPECTED = 26, + SKB_DROP_REASON_TCP_AOKEYNOTFOUND = 27, + SKB_DROP_REASON_TCP_AOFAILURE = 28, + SKB_DROP_REASON_SOCKET_BACKLOG = 29, + SKB_DROP_REASON_TCP_FLAGS = 30, + SKB_DROP_REASON_TCP_ABORT_ON_DATA = 31, + SKB_DROP_REASON_TCP_ZEROWINDOW = 32, + SKB_DROP_REASON_TCP_OLD_DATA = 33, + SKB_DROP_REASON_TCP_OVERWINDOW = 34, + SKB_DROP_REASON_TCP_OFOMERGE = 35, + SKB_DROP_REASON_TCP_RFC7323_PAWS = 36, + SKB_DROP_REASON_TCP_RFC7323_PAWS_ACK = 37, + SKB_DROP_REASON_TCP_RFC7323_TW_PAWS = 38, + SKB_DROP_REASON_TCP_RFC7323_TSECR = 39, + SKB_DROP_REASON_TCP_LISTEN_OVERFLOW = 40, + SKB_DROP_REASON_TCP_OLD_SEQUENCE = 41, + SKB_DROP_REASON_TCP_INVALID_SEQUENCE = 42, + SKB_DROP_REASON_TCP_INVALID_END_SEQUENCE = 43, + SKB_DROP_REASON_TCP_INVALID_ACK_SEQUENCE = 44, + SKB_DROP_REASON_TCP_RESET = 45, + SKB_DROP_REASON_TCP_INVALID_SYN = 46, + SKB_DROP_REASON_TCP_CLOSE = 47, + SKB_DROP_REASON_TCP_FASTOPEN = 48, + SKB_DROP_REASON_TCP_OLD_ACK = 49, + SKB_DROP_REASON_TCP_TOO_OLD_ACK = 50, + SKB_DROP_REASON_TCP_ACK_UNSENT_DATA = 51, + SKB_DROP_REASON_TCP_OFO_QUEUE_PRUNE = 52, + SKB_DROP_REASON_TCP_OFO_DROP = 53, + SKB_DROP_REASON_IP_OUTNOROUTES = 54, + SKB_DROP_REASON_BPF_CGROUP_EGRESS = 55, + SKB_DROP_REASON_IPV6DISABLED = 56, + SKB_DROP_REASON_NEIGH_CREATEFAIL = 57, + SKB_DROP_REASON_NEIGH_FAILED = 58, + SKB_DROP_REASON_NEIGH_QUEUEFULL = 59, + SKB_DROP_REASON_NEIGH_DEAD = 60, + SKB_DROP_REASON_NEIGH_HH_FILLFAIL = 61, + SKB_DROP_REASON_TC_EGRESS = 62, + SKB_DROP_REASON_SECURITY_HOOK = 63, + SKB_DROP_REASON_QDISC_DROP = 64, + SKB_DROP_REASON_QDISC_OVERLIMIT = 65, + SKB_DROP_REASON_QDISC_CONGESTED = 66, + SKB_DROP_REASON_CAKE_FLOOD = 67, + SKB_DROP_REASON_FQ_BAND_LIMIT = 68, + SKB_DROP_REASON_FQ_HORIZON_LIMIT = 69, + SKB_DROP_REASON_FQ_FLOW_LIMIT = 70, + SKB_DROP_REASON_CPU_BACKLOG = 71, + SKB_DROP_REASON_XDP = 72, + SKB_DROP_REASON_TC_INGRESS = 73, + SKB_DROP_REASON_UNHANDLED_PROTO = 74, + SKB_DROP_REASON_SKB_CSUM = 75, + SKB_DROP_REASON_SKB_GSO_SEG = 76, + SKB_DROP_REASON_SKB_UCOPY_FAULT = 77, + SKB_DROP_REASON_DEV_HDR = 78, + SKB_DROP_REASON_DEV_READY = 79, + SKB_DROP_REASON_FULL_RING = 80, + SKB_DROP_REASON_NOMEM = 81, + SKB_DROP_REASON_HDR_TRUNC = 82, + SKB_DROP_REASON_TAP_FILTER = 83, + SKB_DROP_REASON_TAP_TXFILTER = 84, + SKB_DROP_REASON_ICMP_CSUM = 85, + SKB_DROP_REASON_INVALID_PROTO = 86, + SKB_DROP_REASON_IP_INADDRERRORS = 87, + SKB_DROP_REASON_IP_INNOROUTES = 88, + SKB_DROP_REASON_IP_LOCAL_SOURCE = 89, + SKB_DROP_REASON_IP_INVALID_SOURCE = 90, + SKB_DROP_REASON_IP_LOCALNET = 91, + SKB_DROP_REASON_IP_INVALID_DEST = 92, + SKB_DROP_REASON_PKT_TOO_BIG = 93, + SKB_DROP_REASON_DUP_FRAG = 94, + SKB_DROP_REASON_FRAG_REASM_TIMEOUT = 95, + SKB_DROP_REASON_FRAG_TOO_FAR = 96, + SKB_DROP_REASON_TCP_MINTTL = 97, + SKB_DROP_REASON_IPV6_BAD_EXTHDR = 98, + SKB_DROP_REASON_IPV6_NDISC_FRAG = 99, + SKB_DROP_REASON_IPV6_NDISC_HOP_LIMIT = 100, + SKB_DROP_REASON_IPV6_NDISC_BAD_CODE = 101, + SKB_DROP_REASON_IPV6_NDISC_BAD_OPTIONS = 102, + SKB_DROP_REASON_IPV6_NDISC_NS_OTHERHOST = 103, + SKB_DROP_REASON_QUEUE_PURGE = 104, + SKB_DROP_REASON_TC_COOKIE_ERROR = 105, + SKB_DROP_REASON_PACKET_SOCK_ERROR = 106, + SKB_DROP_REASON_TC_CHAIN_NOTFOUND = 107, + SKB_DROP_REASON_TC_RECLASSIFY_LOOP = 108, + SKB_DROP_REASON_VXLAN_INVALID_HDR = 109, + SKB_DROP_REASON_VXLAN_VNI_NOT_FOUND = 110, + SKB_DROP_REASON_MAC_INVALID_SOURCE = 111, + SKB_DROP_REASON_VXLAN_ENTRY_EXISTS = 112, + SKB_DROP_REASON_NO_TX_TARGET = 113, + SKB_DROP_REASON_IP_TUNNEL_ECN = 114, + SKB_DROP_REASON_TUNNEL_TXINFO = 115, + SKB_DROP_REASON_LOCAL_MAC = 116, + SKB_DROP_REASON_ARP_PVLAN_DISABLE = 117, + SKB_DROP_REASON_MAC_IEEE_MAC_CONTROL = 118, + SKB_DROP_REASON_BRIDGE_INGRESS_STP_STATE = 119, + SKB_DROP_REASON_CAN_RX_INVALID_FRAME = 120, + SKB_DROP_REASON_CANFD_RX_INVALID_FRAME = 121, + SKB_DROP_REASON_CANXL_RX_INVALID_FRAME = 122, + SKB_DROP_REASON_PFMEMALLOC = 123, + SKB_DROP_REASON_DUALPI2_STEP_DROP = 124, + SKB_DROP_REASON_MAX = 125, + SKB_DROP_REASON_SUBSYS_MASK = 4294901760, +}; + +struct icmpv6_mib_device { + atomic_long_t mibs[7]; +}; + +struct icmpv6msg_mib_device { + atomic_long_t mibs[512]; +}; + +struct udp_hslot; + +struct udp_hslot_main; + +struct udp_table { + struct udp_hslot *hash; + struct udp_hslot_main *hash2; + struct udp_hslot *hash4; + unsigned int mask; + unsigned int log; +}; + +struct ip_ra_chain { + struct ip_ra_chain *next; + struct sock *sk; + union { + void (*destructor)(struct sock *); + struct sock *saved_sk; + }; + struct callback_head rcu; +}; + +struct fib_table { + struct hlist_node tb_hlist; + u32 tb_id; + int tb_num_default; + struct callback_head rcu; + long unsigned int *tb_data; + long unsigned int __data[0]; +}; + +struct inet_peer_base { + struct rb_root rb_root; + seqlock_t lock; + int total; +}; + +struct ipv6_stable_secret { + bool initialized; + struct in6_addr secret; +}; + +struct ipv6_devconf { + __u8 __cacheline_group_begin__ipv6_devconf_read_txrx[0]; + __s32 disable_ipv6; + __s32 hop_limit; + __s32 mtu6; + __s32 forwarding; + __s32 force_forwarding; + __s32 disable_policy; + __s32 proxy_ndp; + __u8 __cacheline_group_end__ipv6_devconf_read_txrx[0]; + __s32 accept_ra; + __s32 accept_redirects; + __s32 autoconf; + __s32 dad_transmits; + __s32 rtr_solicits; + __s32 rtr_solicit_interval; + __s32 rtr_solicit_max_interval; + __s32 rtr_solicit_delay; + __s32 force_mld_version; + __s32 mldv1_unsolicited_report_interval; + __s32 mldv2_unsolicited_report_interval; + __s32 use_tempaddr; + __s32 temp_valid_lft; + __s32 temp_prefered_lft; + __s32 regen_min_advance; + __s32 regen_max_retry; + __s32 max_desync_factor; + __s32 max_addresses; + __s32 accept_ra_defrtr; + __u32 ra_defrtr_metric; + __s32 accept_ra_min_hop_limit; + __s32 accept_ra_min_lft; + __s32 accept_ra_pinfo; + __s32 ignore_routes_with_linkdown; + __s32 accept_ra_rtr_pref; + __s32 rtr_probe_interval; + __s32 accept_ra_rt_info_min_plen; + __s32 accept_ra_rt_info_max_plen; + __s32 accept_source_route; + __s32 accept_ra_from_local; + __s32 optimistic_dad; + __s32 use_optimistic; + atomic_t mc_forwarding; + __s32 drop_unicast_in_l2_multicast; + __s32 accept_dad; + __s32 force_tllao; + __s32 ndisc_notify; + __s32 suppress_frag_ndisc; + __s32 accept_ra_mtu; + __s32 drop_unsolicited_na; + __s32 accept_untracked_na; + struct ipv6_stable_secret stable_secret; + __s32 use_oif_addrs_only; + __s32 keep_addr_on_down; + __s32 seg6_enabled; + __s32 seg6_require_hmac; + __u32 enhanced_dad; + __u32 addr_gen_mode; + __s32 ndisc_tclass; + __s32 rpl_seg_enabled; + __u32 ioam6_id; + __u32 ioam6_id_wide; + __u8 ioam6_enabled; + __u8 ndisc_evict_nocarrier; + __u8 ra_honor_pio_life; + __u8 ra_honor_pio_pflag; + struct ctl_table_header *sysctl_header; +}; + +enum gro_result { + GRO_MERGED = 0, + GRO_MERGED_FREE = 1, + GRO_HELD = 2, + GRO_NORMAL = 3, + GRO_CONSUMED = 4, +}; + +typedef enum gro_result gro_result_t; + +enum netdev_priv_flags { + IFF_802_1Q_VLAN = 1, + IFF_EBRIDGE = 2, + IFF_BONDING = 4, + IFF_ISATAP = 8, + IFF_WAN_HDLC = 16, + IFF_XMIT_DST_RELEASE = 32, + IFF_DONT_BRIDGE = 64, + IFF_DISABLE_NETPOLL = 128, + IFF_MACVLAN_PORT = 256, + IFF_BRIDGE_PORT = 512, + IFF_OVS_DATAPATH = 1024, + IFF_TX_SKB_SHARING = 2048, + IFF_UNICAST_FLT = 4096, + IFF_TEAM_PORT = 8192, + IFF_SUPP_NOFCS = 16384, + IFF_LIVE_ADDR_CHANGE = 32768, + IFF_MACVLAN = 65536, + IFF_XMIT_DST_RELEASE_PERM = 131072, + IFF_L3MDEV_MASTER = 262144, + IFF_NO_QUEUE = 524288, + IFF_OPENVSWITCH = 1048576, + IFF_L3MDEV_SLAVE = 2097152, + IFF_TEAM = 4194304, + IFF_RXFH_CONFIGURED = 8388608, + IFF_PHONY_HEADROOM = 16777216, + IFF_MACSEC = 33554432, + IFF_NO_RX_HANDLER = 67108864, + IFF_FAILOVER = 134217728, + IFF_FAILOVER_SLAVE = 268435456, + IFF_L3MDEV_RX_HANDLER = 536870912, + IFF_NO_ADDRCONF = 1073741824, + IFF_TX_SKB_NO_LINEAR = 2147483648, +}; + +struct ipv6_devstat { + struct proc_dir_entry *proc_dir_entry; + struct ipstats_mib *ipv6; + struct icmpv6_mib_device *icmpv6dev; + struct icmpv6msg_mib_device *icmpv6msgdev; +}; + +struct ifmcaddr6; + +struct ifacaddr6; + +struct inet6_dev { + struct net_device *dev; + netdevice_tracker dev_tracker; + struct list_head addr_list; + struct ifmcaddr6 *mc_list; + struct ifmcaddr6 *mc_tomb; + unsigned char mc_qrv; + unsigned char mc_gq_running; + unsigned char mc_ifc_count; + unsigned char mc_dad_count; + long unsigned int mc_v1_seen; + long unsigned int mc_qi; + long unsigned int mc_qri; + long unsigned int mc_maxdelay; + struct delayed_work mc_gq_work; + struct delayed_work mc_ifc_work; + struct delayed_work mc_dad_work; + struct delayed_work mc_query_work; + struct delayed_work mc_report_work; + struct sk_buff_head mc_query_queue; + struct sk_buff_head mc_report_queue; + spinlock_t mc_query_lock; + spinlock_t mc_report_lock; + struct mutex mc_lock; + struct ifacaddr6 *ac_list; + rwlock_t lock; + refcount_t refcnt; + __u32 if_flags; + int dead; + u32 desync_factor; + struct list_head tempaddr_list; + struct in6_addr token; + struct neigh_parms *nd_parms; + struct ipv6_devconf cnf; + struct ipv6_devstat stats; + struct timer_list rs_timer; + __s32 rs_interval; + __u8 rs_probes; + long unsigned int tstamp; + struct callback_head rcu; + unsigned int ra_mtu; +}; + +typedef unsigned int (*bpf_dispatcher_fn)(const void *, const struct bpf_insn *, unsigned int (*)(const void *, const struct bpf_insn *)); + +struct xdp_cpumap_stats { + unsigned int redirect; + unsigned int pass; + unsigned int drop; +}; + +struct lwtunnel_state { + __u16 type; + __u16 flags; + __u16 headroom; + atomic_t refcnt; + int (*orig_output)(struct net *, struct sock *, struct sk_buff *); + int (*orig_input)(struct sk_buff *); + struct callback_head rcu; + __u8 data[0]; +}; + +enum sk_rst_reason { + SK_RST_REASON_NOT_SPECIFIED = 0, + SK_RST_REASON_NO_SOCKET = 1, + SK_RST_REASON_TCP_INVALID_ACK_SEQUENCE = 2, + SK_RST_REASON_TCP_RFC7323_PAWS = 3, + SK_RST_REASON_TCP_TOO_OLD_ACK = 4, + SK_RST_REASON_TCP_ACK_UNSENT_DATA = 5, + SK_RST_REASON_TCP_FLAGS = 6, + SK_RST_REASON_TCP_OLD_ACK = 7, + SK_RST_REASON_TCP_ABORT_ON_DATA = 8, + SK_RST_REASON_TCP_TIMEWAIT_SOCKET = 9, + SK_RST_REASON_INVALID_SYN = 10, + SK_RST_REASON_TCP_ABORT_ON_CLOSE = 11, + SK_RST_REASON_TCP_ABORT_ON_LINGER = 12, + SK_RST_REASON_TCP_ABORT_ON_MEMORY = 13, + SK_RST_REASON_TCP_STATE = 14, + SK_RST_REASON_TCP_KEEPALIVE_TIMEOUT = 15, + SK_RST_REASON_TCP_DISCONNECT_WITH_DATA = 16, + SK_RST_REASON_MPTCP_RST_EUNSPEC = 17, + SK_RST_REASON_MPTCP_RST_EMPTCP = 18, + SK_RST_REASON_MPTCP_RST_ERESOURCE = 19, + SK_RST_REASON_MPTCP_RST_EPROHIBIT = 20, + SK_RST_REASON_MPTCP_RST_EWQ2BIG = 21, + SK_RST_REASON_MPTCP_RST_EBADPERF = 22, + SK_RST_REASON_MPTCP_RST_EMIDDLEBOX = 23, + SK_RST_REASON_ERROR = 24, + SK_RST_REASON_MAX = 25, +}; + +struct request_sock; + +struct request_sock_ops { + int family; + unsigned int obj_size; + struct kmem_cache *slab; + char *slab_name; + void (*send_ack)(const struct sock *, struct sk_buff *, struct request_sock *); + void (*send_reset)(const struct sock *, struct sk_buff *, enum sk_rst_reason); + void (*destructor)(struct request_sock *); + void (*syn_ack_timeout)(const struct request_sock *); +}; + +struct timewait_sock_ops { + struct kmem_cache *twsk_slab; + char *twsk_slab_name; + unsigned int twsk_obj_size; + void (*twsk_destructor)(struct sock *); +}; + +struct saved_syn; + +struct request_sock { + struct sock_common __req_common; + struct request_sock *dl_next; + u16 mss; + u8 num_retrans; + u8 syncookie: 1; + u8 num_timeout: 7; + u32 ts_recent; + struct timer_list rsk_timer; + const struct request_sock_ops *rsk_ops; + struct sock *sk; + struct saved_syn *saved_syn; + u32 secid; + u32 peer_secid; + u32 timeout; +}; + +struct saved_syn { + u32 mac_hdrlen; + u32 network_hdrlen; + u32 tcp_hdrlen; + u8 data[0]; +}; + +enum tsq_enum { + TSQ_THROTTLED = 0, + TSQ_QUEUED = 1, + TCP_TSQ_DEFERRED = 2, + TCP_WRITE_TIMER_DEFERRED = 3, + TCP_DELACK_TIMER_DEFERRED = 4, + TCP_MTU_REDUCED_DEFERRED = 5, + TCP_ACK_DEFERRED = 6, +}; + +struct ip6_sf_list { + struct ip6_sf_list *sf_next; + struct in6_addr sf_addr; + long unsigned int sf_count[2]; + unsigned char sf_gsresp; + unsigned char sf_oldin; + unsigned char sf_crcount; + struct callback_head rcu; +}; + +struct ifmcaddr6 { + struct in6_addr mca_addr; + struct inet6_dev *idev; + struct ifmcaddr6 *next; + struct ip6_sf_list *mca_sources; + struct ip6_sf_list *mca_tomb; + unsigned int mca_sfmode; + unsigned char mca_crcount; + long unsigned int mca_sfcount[2]; + struct delayed_work mca_work; + unsigned int mca_flags; + int mca_users; + refcount_t mca_refcnt; + long unsigned int mca_cstamp; + long unsigned int mca_tstamp; + struct callback_head rcu; +}; + +struct ifacaddr6 { + struct in6_addr aca_addr; + struct fib6_info *aca_rt; + struct ifacaddr6 *aca_next; + struct hlist_node aca_addr_lst; + int aca_users; + refcount_t aca_refcnt; + long unsigned int aca_cstamp; + long unsigned int aca_tstamp; + struct callback_head rcu; +}; + +enum { + __ND_OPT_PREFIX_INFO_END = 0, + ND_OPT_SOURCE_LL_ADDR = 1, + ND_OPT_TARGET_LL_ADDR = 2, + ND_OPT_PREFIX_INFO = 3, + ND_OPT_REDIRECT_HDR = 4, + ND_OPT_MTU = 5, + ND_OPT_NONCE = 14, + __ND_OPT_ARRAY_MAX = 15, + ND_OPT_ROUTE_INFO = 24, + ND_OPT_RDNSS = 25, + ND_OPT_DNSSL = 31, + ND_OPT_6CO = 34, + ND_OPT_CAPTIVE_PORTAL = 37, + ND_OPT_PREF64 = 38, + __ND_OPT_MAX = 39, +}; + +struct nd_opt_hdr { + __u8 nd_opt_type; + __u8 nd_opt_len; +}; + +struct ndisc_options { + struct nd_opt_hdr *nd_opt_array[15]; + struct nd_opt_hdr *nd_opts_ri; + struct nd_opt_hdr *nd_opts_ri_end; + struct nd_opt_hdr *nd_useropts; + struct nd_opt_hdr *nd_useropts_end; + struct nd_opt_hdr *nd_802154_opt_array[3]; +}; + +struct prefix_info { + __u8 type; + __u8 length; + __u8 prefix_len; + union { + __u8 flags; + struct { + __u8 reserved: 4; + __u8 preferpd: 1; + __u8 routeraddr: 1; + __u8 autoconf: 1; + __u8 onlink: 1; + }; + }; + __be32 valid; + __be32 prefered; + __be32 reserved2; + struct in6_addr prefix; +}; + +struct udp_hslot { + union { + struct hlist_head head; + struct hlist_nulls_head nulls_head; + }; + int count; + spinlock_t lock; +}; + +struct udp_hslot_main { + struct udp_hslot hslot; + u32 hash4_cnt; + long: 64; +}; + +struct bpf_cpu_map_entry; + +struct xdp_bulk_queue { + void *q[8]; + struct list_head flush_node; + struct bpf_cpu_map_entry *obj; + unsigned int count; +}; + +struct bpf_cpu_map_entry { + u32 cpu; + int map_id; + struct xdp_bulk_queue *bulkq; + struct ptr_ring *queue; + struct task_struct *kthread; + struct bpf_cpumap_val value; + struct bpf_prog *prog; + struct gro_node gro; + struct completion kthread_running; + struct rcu_work free_work; +}; + +struct bpf_cpu_map { + struct bpf_map map; + struct bpf_cpu_map_entry **cpu_map; +}; + +struct cpu_map_ret { + u32 xdp_n; + u32 skb_n; +}; + +enum bpf_iter_feature { + BPF_ITER_RESCHED = 1, +}; + +struct bpf_iter__cgroup { + union { + struct bpf_iter_meta *meta; + }; + union { + struct cgroup *cgroup; + }; +}; + +struct cgroup_iter_priv { + struct cgroup_subsys_state *start_css; + bool visited_all; + bool terminate; + int order; +}; + +struct bpf_iter_css { + __u64 __opaque[3]; +}; + +struct bpf_iter_css_kern { + struct cgroup_subsys_state *start; + struct cgroup_subsys_state *pos; + unsigned int flags; +}; + +enum sock_type { + SOCK_STREAM = 1, + SOCK_DGRAM = 2, + SOCK_RAW = 3, + SOCK_RDM = 4, + SOCK_SEQPACKET = 5, + SOCK_DCCP = 6, + SOCK_PACKET = 10, +}; + +enum { + IPPROTO_IP = 0, + IPPROTO_ICMP = 1, + IPPROTO_IGMP = 2, + IPPROTO_IPIP = 4, + IPPROTO_TCP = 6, + IPPROTO_EGP = 8, + IPPROTO_PUP = 12, + IPPROTO_UDP = 17, + IPPROTO_IDP = 22, + IPPROTO_TP = 29, + IPPROTO_DCCP = 33, + IPPROTO_IPV6 = 41, + IPPROTO_RSVP = 46, + IPPROTO_GRE = 47, + IPPROTO_ESP = 50, + IPPROTO_AH = 51, + IPPROTO_MTP = 92, + IPPROTO_BEETPH = 94, + IPPROTO_ENCAP = 98, + IPPROTO_PIM = 103, + IPPROTO_COMP = 108, + IPPROTO_L2TP = 115, + IPPROTO_SCTP = 132, + IPPROTO_UDPLITE = 136, + IPPROTO_MPLS = 137, + IPPROTO_ETHERNET = 143, + IPPROTO_AGGFRAG = 144, + IPPROTO_RAW = 255, + IPPROTO_SMC = 256, + IPPROTO_MPTCP = 262, + IPPROTO_MAX = 263, +}; + +struct sock_reuseport { + struct callback_head rcu; + u16 max_socks; + u16 num_socks; + u16 num_closed_socks; + u16 incoming_cpu; + unsigned int synq_overflow_ts; + unsigned int reuseport_id; + unsigned int bind_inany: 1; + unsigned int has_conns: 1; + struct bpf_prog *prog; + struct sock *socks[0]; +}; + +enum sock_flags { + SOCK_DEAD = 0, + SOCK_DONE = 1, + SOCK_URGINLINE = 2, + SOCK_KEEPOPEN = 3, + SOCK_LINGER = 4, + SOCK_DESTROY = 5, + SOCK_BROADCAST = 6, + SOCK_TIMESTAMP = 7, + SOCK_ZAPPED = 8, + SOCK_USE_WRITE_QUEUE = 9, + SOCK_DBG = 10, + SOCK_RCVTSTAMP = 11, + SOCK_RCVTSTAMPNS = 12, + SOCK_LOCALROUTE = 13, + SOCK_MEMALLOC = 14, + SOCK_TIMESTAMPING_RX_SOFTWARE = 15, + SOCK_FASYNC = 16, + SOCK_RXQ_OVFL = 17, + SOCK_ZEROCOPY = 18, + SOCK_WIFI_STATUS = 19, + SOCK_NOFCS = 20, + SOCK_FILTER_LOCKED = 21, + SOCK_SELECT_ERR_QUEUE = 22, + SOCK_RCU_FREE = 23, + SOCK_TXTIME = 24, + SOCK_XDP = 25, + SOCK_TSTAMP_NEW = 26, + SOCK_RCVMARK = 27, + SOCK_RCVPRIORITY = 28, + SOCK_TIMESTAMPING_ANY = 29, +}; + +struct reuseport_array { + struct bpf_map map; + struct sock *ptrs[0]; +}; + +typedef int __kernel_key_t; + +typedef __kernel_key_t key_t; + +enum { + BPF_F_BPRM_SECUREEXEC = 1, +}; + +struct timezone { + int tz_minuteswest; + int tz_dsttime; +}; + +struct kern_ipc_perm { + spinlock_t lock; + bool deleted; + int id; + key_t key; + kuid_t uid; + kgid_t gid; + kuid_t cuid; + kgid_t cgid; + umode_t mode; + long unsigned int seq; + void *security; + struct rhash_head khtnode; + struct callback_head rcu; + refcount_t refcount; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct sembuf { + short unsigned int sem_num; + short int sem_op; + short int sem_flg; +}; + +struct btf_id_set { + u32 cnt; + u32 ids[0]; +}; + +enum { + BTF_SOCK_TYPE_INET = 0, + BTF_SOCK_TYPE_INET_CONN = 1, + BTF_SOCK_TYPE_INET_REQ = 2, + BTF_SOCK_TYPE_INET_TW = 3, + BTF_SOCK_TYPE_REQ = 4, + BTF_SOCK_TYPE_SOCK = 5, + BTF_SOCK_TYPE_SOCK_COMMON = 6, + BTF_SOCK_TYPE_TCP = 7, + BTF_SOCK_TYPE_TCP_REQ = 8, + BTF_SOCK_TYPE_TCP_TW = 9, + BTF_SOCK_TYPE_TCP6 = 10, + BTF_SOCK_TYPE_UDP = 11, + BTF_SOCK_TYPE_UDP6 = 12, + BTF_SOCK_TYPE_UNIX = 13, + BTF_SOCK_TYPE_MPTCP = 14, + BTF_SOCK_TYPE_SOCKET = 15, + MAX_BTF_SOCK_TYPE = 16, +}; + +struct bpf_trace_run_ctx { + struct bpf_run_ctx run_ctx; + u64 bpf_cookie; + bool is_uprobe; +}; + +struct xfrm_sec_ctx { + __u8 ctx_doi; + __u8 ctx_alg; + __u16 ctx_len; + __u32 ctx_sid; + char ctx_str[0]; +}; + +struct xfrm_user_sec_ctx { + __u16 len; + __u16 exttype; + __u8 ctx_alg; + __u8 ctx_doi; + __u16 ctx_len; +}; + +struct lsm_ctx { + __u64 id; + __u64 flags; + __u64 len; + __u64 ctx_len; + __u8 ctx[0]; +}; + +enum lsm_integrity_type { + LSM_INT_DMVERITY_SIG_VALID = 0, + LSM_INT_DMVERITY_ROOTHASH = 1, + LSM_INT_FSVERITY_BUILTINSIG_VALID = 2, +}; + +struct lsm_context { + char *context; + u32 len; + int id; +}; + +struct xattr { + const char *name; + void *value; + size_t value_len; +}; + +enum kernel_load_data_id { + LOADING_UNKNOWN = 0, + LOADING_FIRMWARE = 1, + LOADING_MODULE = 2, + LOADING_KEXEC_IMAGE = 3, + LOADING_KEXEC_INITRAMFS = 4, + LOADING_POLICY = 5, + LOADING_X509_CERTIFICATE = 6, + LOADING_MAX_ID = 7, +}; + +enum hash_algo { + HASH_ALGO_MD4 = 0, + HASH_ALGO_MD5 = 1, + HASH_ALGO_SHA1 = 2, + HASH_ALGO_RIPE_MD_160 = 3, + HASH_ALGO_SHA256 = 4, + HASH_ALGO_SHA384 = 5, + HASH_ALGO_SHA512 = 6, + HASH_ALGO_SHA224 = 7, + HASH_ALGO_RIPE_MD_128 = 8, + HASH_ALGO_RIPE_MD_256 = 9, + HASH_ALGO_RIPE_MD_320 = 10, + HASH_ALGO_WP_256 = 11, + HASH_ALGO_WP_384 = 12, + HASH_ALGO_WP_512 = 13, + HASH_ALGO_TGR_128 = 14, + HASH_ALGO_TGR_160 = 15, + HASH_ALGO_TGR_192 = 16, + HASH_ALGO_SM3_256 = 17, + HASH_ALGO_STREEBOG_256 = 18, + HASH_ALGO_STREEBOG_512 = 19, + HASH_ALGO_SHA3_256 = 20, + HASH_ALGO_SHA3_384 = 21, + HASH_ALGO_SHA3_512 = 22, + HASH_ALGO__LAST = 23, +}; + +typedef u64 (*btf_bpf_bprm_opts_set)(struct linux_binprm *, u64); + +typedef u64 (*btf_bpf_ima_inode_hash)(struct inode *, void *, u32); + +typedef u64 (*btf_bpf_ima_file_hash)(struct file *, void *, u32); + +typedef u64 (*btf_bpf_get_attach_cookie)(void *); + +struct static_call_tramp_key { + s32 tramp; + s32 key; +}; + +struct perf_event_header { + __u32 type; + __u16 misc; + __u16 size; +}; + +enum perf_event_type { + PERF_RECORD_MMAP = 1, + PERF_RECORD_LOST = 2, + PERF_RECORD_COMM = 3, + PERF_RECORD_EXIT = 4, + PERF_RECORD_THROTTLE = 5, + PERF_RECORD_UNTHROTTLE = 6, + PERF_RECORD_FORK = 7, + PERF_RECORD_READ = 8, + PERF_RECORD_SAMPLE = 9, + PERF_RECORD_MMAP2 = 10, + PERF_RECORD_AUX = 11, + PERF_RECORD_ITRACE_START = 12, + PERF_RECORD_LOST_SAMPLES = 13, + PERF_RECORD_SWITCH = 14, + PERF_RECORD_SWITCH_CPU_WIDE = 15, + PERF_RECORD_NAMESPACES = 16, + PERF_RECORD_KSYMBOL = 17, + PERF_RECORD_BPF_EVENT = 18, + PERF_RECORD_CGROUP = 19, + PERF_RECORD_TEXT_POKE = 20, + PERF_RECORD_AUX_OUTPUT_HW_ID = 21, + PERF_RECORD_MAX = 22, +}; + +struct perf_buffer { + refcount_t refcount; + struct callback_head callback_head; + int nr_pages; + int overwrite; + int paused; + atomic_t poll; + local_t head; + unsigned int nest; + local_t events; + local_t wakeup; + local_t lost; + long int watermark; + long int aux_watermark; + spinlock_t event_lock; + struct list_head event_list; + atomic_t mmap_count; + long unsigned int mmap_locked; + struct user_struct *mmap_user; + struct mutex aux_mutex; + long int aux_head; + unsigned int aux_nest; + long int aux_wakeup; + long unsigned int aux_pgoff; + int aux_nr_pages; + int aux_overwrite; + atomic_t aux_mmap_count; + long unsigned int aux_mmap_locked; + void (*free_aux)(void *); + refcount_t aux_refcount; + int aux_in_sampling; + int aux_in_pause_resume; + void **aux_pages; + void *aux_priv; + struct perf_event_mmap_page *user_page; + void *data_pages[0]; +}; + +enum wq_affn_scope { + WQ_AFFN_DFL = 0, + WQ_AFFN_CPU = 1, + WQ_AFFN_SMT = 2, + WQ_AFFN_CACHE = 3, + WQ_AFFN_NUMA = 4, + WQ_AFFN_SYSTEM = 5, + WQ_AFFN_NR_TYPES = 6, +}; + +struct workqueue_attrs { + int nice; + cpumask_var_t cpumask; + cpumask_var_t __pod_cpumask; + bool affn_strict; + enum wq_affn_scope affn_scope; + bool ordered; +}; + +struct parallel_data; + +struct padata_priv { + struct list_head list; + struct parallel_data *pd; + int cb_cpu; + unsigned int seq_nr; + int info; + void (*parallel)(struct padata_priv *); + void (*serial)(struct padata_priv *); +}; + +struct padata_cpumask { + cpumask_var_t pcpu; + cpumask_var_t cbcpu; +}; + +struct padata_shell; + +struct padata_list; + +struct padata_serial_queue; + +struct parallel_data { + struct padata_shell *ps; + struct padata_list *reorder_list; + struct padata_serial_queue *squeue; + refcount_t refcnt; + unsigned int seq_nr; + unsigned int processed; + int cpu; + struct padata_cpumask cpumask; +}; + +struct padata_list { + struct list_head list; + spinlock_t lock; +}; + +struct padata_serial_queue { + struct padata_list serial; + struct work_struct work; + struct parallel_data *pd; +}; + +struct padata_instance; + +struct padata_shell { + struct padata_instance *pinst; + struct parallel_data *pd; + struct parallel_data *opd; + struct list_head list; +}; + +struct padata_instance { + struct hlist_node cpu_online_node; + struct hlist_node cpu_dead_node; + struct workqueue_struct *parallel_wq; + struct workqueue_struct *serial_wq; + struct list_head pslist; + struct padata_cpumask cpumask; + struct kobject kobj; + struct mutex lock; + u8 flags; +}; + +struct padata_mt_job { + void (*thread_fn)(long unsigned int, long unsigned int, void *); + void *fn_arg; + long unsigned int start; + long unsigned int size; + long unsigned int align; + long unsigned int min_chunk; + int max_threads; + bool numa_aware; +}; + +struct padata_work { + struct work_struct pw_work; + struct list_head pw_list; + void *pw_data; +}; + +struct padata_mt_job_state { + spinlock_t lock; + struct completion completion; + struct padata_mt_job *job; + int nworks; + int nworks_fini; + long unsigned int chunk_size; +}; + +struct padata_sysfs_entry { + struct attribute attr; + ssize_t (*show)(struct padata_instance *, struct attribute *, char *); + ssize_t (*store)(struct padata_instance *, struct attribute *, const char *, size_t); +}; + +struct watch; + +struct watch_list { + struct callback_head rcu; + struct hlist_head watchers; + void (*release_watch)(struct watch *); + spinlock_t lock; +}; + +enum watch_notification_type { + WATCH_TYPE_META = 0, + WATCH_TYPE_KEY_NOTIFY = 1, + WATCH_TYPE__NR = 2, +}; + +enum watch_meta_notification_subtype { + WATCH_META_REMOVAL_NOTIFICATION = 0, + WATCH_META_LOSS_NOTIFICATION = 1, +}; + +struct watch_notification { + __u32 type: 24; + __u32 subtype: 8; + __u32 info; +}; + +struct watch_notification_type_filter { + __u32 type; + __u32 info_filter; + __u32 info_mask; + __u32 subtype_filter[8]; +}; + +struct watch_notification_filter { + __u32 nr_filters; + __u32 __reserved; + struct watch_notification_type_filter filters[0]; +}; + +struct watch_notification_removal { + struct watch_notification watch; + __u64 id; +}; + +struct watch_type_filter { + enum watch_notification_type type; + __u32 subtype_filter[1]; + __u32 info_filter; + __u32 info_mask; +}; + +struct watch_filter { + union { + struct callback_head rcu; + long unsigned int type_filter[1]; + }; + u32 nr_filters; + struct watch_type_filter filters[0]; +}; + +struct watch_queue { + struct callback_head rcu; + struct watch_filter *filter; + struct pipe_inode_info *pipe; + struct hlist_head watches; + struct page **notes; + long unsigned int *notes_bitmap; + struct kref usage; + spinlock_t lock; + unsigned int nr_notes; + unsigned int nr_pages; +}; + +struct watch { + union { + struct callback_head rcu; + u32 info_id; + }; + struct watch_queue *queue; + struct hlist_node queue_node; + struct watch_list *watch_list; + struct hlist_node list_node; + const struct cred *cred; + void *private; + u64 id; + struct kref usage; +}; + +typedef struct pglist_data pg_data_t; + +struct xa_node { + unsigned char shift; + unsigned char offset; + unsigned char count; + unsigned char nr_values; + struct xa_node *parent; + struct xarray *array; + union { + struct list_head private_list; + struct callback_head callback_head; + }; + void *slots[64]; + union { + long unsigned int tags[3]; + long unsigned int marks[3]; + }; +}; + +typedef void (*xa_update_node_t)(struct xa_node *); + +struct xa_state { + struct xarray *xa; + long unsigned int xa_index; + unsigned char xa_shift; + unsigned char xa_sibs; + unsigned char xa_offset; + unsigned char xa_pad; + struct xa_node *xa_node; + struct xa_node *xa_alloc; + xa_update_node_t xa_update; + struct list_lru *xa_lru; +}; + +enum { + XA_CHECK_SCHED = 4096, +}; + +enum positive_aop_returns { + AOP_WRITEPAGE_ACTIVATE = 524288, + AOP_TRUNCATED_PAGE = 524289, +}; + +enum wb_state { + WB_registered = 0, + WB_writeback_running = 1, + WB_has_dirty_io = 2, + WB_start_all = 3, +}; + +struct wb_lock_cookie { + bool locked; + long unsigned int flags; +}; + +struct dirty_throttle_control { + struct wb_domain *dom; + struct dirty_throttle_control *gdtc; + struct bdi_writeback *wb; + struct fprop_local_percpu *wb_completions; + long unsigned int avail; + long unsigned int dirty; + long unsigned int thresh; + long unsigned int bg_thresh; + long unsigned int limit; + long unsigned int wb_dirty; + long unsigned int wb_thresh; + long unsigned int wb_bg_thresh; + long unsigned int pos_ratio; + bool freerun; + bool dirty_exceeded; +}; + +typedef int (*writepage_t)(struct folio *, struct writeback_control *, void *); + +enum objext_flags { + OBJEXTS_ALLOC_FAIL = 4, + __NR_OBJEXTS_FLAGS = 8, +}; + +enum mapping_flags { + AS_EIO = 0, + AS_ENOSPC = 1, + AS_MM_ALL_LOCKS = 2, + AS_UNEVICTABLE = 3, + AS_EXITING = 4, + AS_NO_WRITEBACK_TAGS = 5, + AS_RELEASE_ALWAYS = 6, + AS_STABLE_WRITES = 7, + AS_INACCESSIBLE = 8, + AS_WRITEBACK_MAY_DEADLOCK_ON_RECLAIM = 9, + AS_NO_DATA_INTEGRITY = 11, + AS_FOLIO_ORDER_BITS = 5, + AS_FOLIO_ORDER_MIN = 16, + AS_FOLIO_ORDER_MAX = 21, +}; + +enum lruvec_flags { + LRUVEC_CGROUP_CONGESTED = 0, + LRUVEC_NODE_CONGESTED = 1, +}; + +enum { + LRU_GEN_ANON = 0, + LRU_GEN_FILE = 1, +}; + +enum { + LRU_GEN_CORE = 0, + LRU_GEN_MM_WALK = 1, + LRU_GEN_NONLEAF_YOUNG = 2, + NR_LRU_GEN_CAPS = 3, +}; + +enum pgdat_flags { + PGDAT_DIRTY = 0, + PGDAT_WRITEBACK = 1, + PGDAT_RECLAIM_LOCKED = 2, +}; + +enum zone_flags { + ZONE_BOOSTED_WATERMARK = 0, + ZONE_RECLAIM_ACTIVE = 1, + ZONE_BELOW_HIGH = 2, +}; + +enum migrate_reason { + MR_COMPACTION = 0, + MR_MEMORY_FAILURE = 1, + MR_MEMORY_HOTPLUG = 2, + MR_SYSCALL = 3, + MR_MEMPOLICY_MBIND = 4, + MR_NUMA_MISPLACED = 5, + MR_CONTIG_RANGE = 6, + MR_LONGTERM_PIN = 7, + MR_DEMOTION = 8, + MR_DAMON = 9, + MR_TYPES = 10, +}; + +struct mthp_stat { + long unsigned int stats[170]; +}; + +struct reclaim_stat { + unsigned int nr_dirty; + unsigned int nr_unqueued_dirty; + unsigned int nr_congested; + unsigned int nr_writeback; + unsigned int nr_immediate; + unsigned int nr_pageout; + unsigned int nr_activate[2]; + unsigned int nr_ref_keep; + unsigned int nr_unmap_fail; + unsigned int nr_lazyfree_fail; + unsigned int nr_demoted; +}; + +struct vm_event_state { + long unsigned int event[121]; +}; + +struct mem_cgroup_reclaim_cookie { + pg_data_t *pgdat; + int generation; +}; + +struct node { + struct device dev; + struct list_head access_list; + struct list_head cache_attrs; + struct device *cache_dev; +}; + +enum { + SWP_USED = 1, + SWP_WRITEOK = 2, + SWP_DISCARDABLE = 4, + SWP_DISCARDING = 8, + SWP_SOLIDSTATE = 16, + SWP_CONTINUED = 32, + SWP_BLKDEV = 64, + SWP_ACTIVATED = 128, + SWP_FS_OPS = 256, + SWP_AREA_DISCARD = 512, + SWP_PAGE_DISCARD = 1024, + SWP_STABLE_WRITES = 2048, + SWP_SYNCHRONOUS_IO = 4096, +}; + +enum ttu_flags { + TTU_SPLIT_HUGE_PMD = 4, + TTU_IGNORE_MLOCK = 8, + TTU_SYNC = 16, + TTU_HWPOISON = 32, + TTU_BATCH_FLUSH = 64, + TTU_RMAP_LOCKED = 128, +}; + +struct page_vma_mapped_walk { + long unsigned int pfn; + long unsigned int nr_pages; + long unsigned int pgoff; + struct vm_area_struct *vma; + long unsigned int address; + pmd_t *pmd; + pte_t *pte; + spinlock_t *ptl; + unsigned int flags; +}; + +enum compact_priority { + COMPACT_PRIO_SYNC_FULL = 0, + MIN_COMPACT_PRIORITY = 0, + COMPACT_PRIO_SYNC_LIGHT = 1, + MIN_COMPACT_COSTLY_PRIORITY = 1, + DEF_COMPACT_PRIORITY = 1, + COMPACT_PRIO_ASYNC = 2, + INIT_COMPACT_PRIORITY = 2, +}; + +enum compact_result { + COMPACT_NOT_SUITABLE_ZONE = 0, + COMPACT_SKIPPED = 1, + COMPACT_DEFERRED = 2, + COMPACT_NO_SUITABLE_PAGE = 3, + COMPACT_CONTINUE = 4, + COMPACT_COMPLETE = 5, + COMPACT_PARTIAL_SKIPPED = 6, + COMPACT_CONTENDED = 7, + COMPACT_SUCCESS = 8, +}; + +typedef struct folio *new_folio_t(struct folio *, long unsigned int); + +typedef void free_folio_t(struct folio *, long unsigned int); + +enum oom_constraint { + CONSTRAINT_NONE = 0, + CONSTRAINT_CPUSET = 1, + CONSTRAINT_MEMORY_POLICY = 2, + CONSTRAINT_MEMCG = 3, +}; + +struct oom_control { + struct zonelist *zonelist; + nodemask_t *nodemask; + struct mem_cgroup *memcg; + const gfp_t gfp_mask; + const int order; + long unsigned int totalpages; + struct task_struct *chosen; + long int chosen_points; + enum oom_constraint constraint; +}; + +enum page_walk_lock { + PGWALK_RDLOCK = 0, + PGWALK_WRLOCK = 1, + PGWALK_WRLOCK_VERIFY = 2, + PGWALK_VMA_RDLOCK_VERIFY = 3, +}; + +struct mm_walk; + +struct mm_walk_ops { + int (*pgd_entry)(pgd_t *, long unsigned int, long unsigned int, struct mm_walk *); + int (*p4d_entry)(p4d_t *, long unsigned int, long unsigned int, struct mm_walk *); + int (*pud_entry)(pud_t *, long unsigned int, long unsigned int, struct mm_walk *); + int (*pmd_entry)(pmd_t *, long unsigned int, long unsigned int, struct mm_walk *); + int (*pte_entry)(pte_t *, long unsigned int, long unsigned int, struct mm_walk *); + int (*pte_hole)(long unsigned int, long unsigned int, int, struct mm_walk *); + int (*hugetlb_entry)(pte_t *, long unsigned int, long unsigned int, long unsigned int, struct mm_walk *); + int (*test_walk)(long unsigned int, long unsigned int, struct mm_walk *); + int (*pre_vma)(long unsigned int, long unsigned int, struct mm_walk *); + void (*post_vma)(struct mm_walk *); + int (*install_pte)(long unsigned int, long unsigned int, pte_t *, struct mm_walk *); + enum page_walk_lock walk_lock; +}; + +enum page_walk_action { + ACTION_SUBTREE = 0, + ACTION_CONTINUE = 1, + ACTION_AGAIN = 2, +}; + +struct mm_walk { + const struct mm_walk_ops *ops; + struct mm_struct *mm; + pgd_t *pgd; + struct vm_area_struct *vma; + enum page_walk_action action; + bool no_vma; + void *private; +}; + +struct match_token { + int token; + const char *pattern; +}; + +enum { + MAX_OPT_ARGS = 3, +}; + +typedef struct { + char *from; + char *to; +} substring_t; + +struct migration_target_control { + int nid; + nodemask_t *nmask; + gfp_t gfp_mask; + enum migrate_reason reason; +}; + +struct trace_event_raw_mm_vmscan_kswapd_sleep { + struct trace_entry ent; + int nid; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_kswapd_wake { + struct trace_entry ent; + int nid; + int zid; + int order; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_wakeup_kswapd { + struct trace_entry ent; + int nid; + int zid; + int order; + long unsigned int gfp_flags; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_direct_reclaim_begin_template { + struct trace_entry ent; + int order; + long unsigned int gfp_flags; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_direct_reclaim_end_template { + struct trace_entry ent; + long unsigned int nr_reclaimed; + char __data[0]; +}; + +struct trace_event_raw_mm_shrink_slab_start { + struct trace_entry ent; + struct shrinker *shr; + void *shrink; + int nid; + long int nr_objects_to_shrink; + long unsigned int gfp_flags; + long unsigned int cache_items; + long long unsigned int delta; + long unsigned int total_scan; + int priority; + char __data[0]; +}; + +struct trace_event_raw_mm_shrink_slab_end { + struct trace_entry ent; + struct shrinker *shr; + int nid; + void *shrink; + long int unused_scan; + long int new_scan; + int retval; + long int total_scan; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_lru_isolate { + struct trace_entry ent; + int highest_zoneidx; + int order; + long unsigned int nr_requested; + long unsigned int nr_scanned; + long unsigned int nr_skipped; + long unsigned int nr_taken; + int lru; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_write_folio { + struct trace_entry ent; + long unsigned int pfn; + int reclaim_flags; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_reclaim_pages { + struct trace_entry ent; + int nid; + long unsigned int nr_scanned; + long unsigned int nr_reclaimed; + long unsigned int nr_dirty; + long unsigned int nr_writeback; + long unsigned int nr_congested; + long unsigned int nr_immediate; + unsigned int nr_activate0; + unsigned int nr_activate1; + long unsigned int nr_ref_keep; + long unsigned int nr_unmap_fail; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_lru_shrink_inactive { + struct trace_entry ent; + int nid; + long unsigned int nr_scanned; + long unsigned int nr_reclaimed; + long unsigned int nr_dirty; + long unsigned int nr_writeback; + long unsigned int nr_congested; + long unsigned int nr_immediate; + unsigned int nr_activate0; + unsigned int nr_activate1; + long unsigned int nr_ref_keep; + long unsigned int nr_unmap_fail; + int priority; + int reclaim_flags; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_lru_shrink_active { + struct trace_entry ent; + int nid; + long unsigned int nr_taken; + long unsigned int nr_active; + long unsigned int nr_deactivated; + long unsigned int nr_referenced; + int priority; + int reclaim_flags; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_node_reclaim_begin { + struct trace_entry ent; + int nid; + int order; + long unsigned int gfp_flags; + char __data[0]; +}; + +struct trace_event_raw_mm_vmscan_throttled { + struct trace_entry ent; + int nid; + int usec_timeout; + int usec_delayed; + int reason; + char __data[0]; +}; + +struct trace_event_data_offsets_mm_vmscan_kswapd_sleep {}; + +struct trace_event_data_offsets_mm_vmscan_kswapd_wake {}; + +struct trace_event_data_offsets_mm_vmscan_wakeup_kswapd {}; + +struct trace_event_data_offsets_mm_vmscan_direct_reclaim_begin_template {}; + +struct trace_event_data_offsets_mm_vmscan_direct_reclaim_end_template {}; + +struct trace_event_data_offsets_mm_shrink_slab_start {}; + +struct trace_event_data_offsets_mm_shrink_slab_end {}; + +struct trace_event_data_offsets_mm_vmscan_lru_isolate {}; + +struct trace_event_data_offsets_mm_vmscan_write_folio {}; + +struct trace_event_data_offsets_mm_vmscan_reclaim_pages {}; + +struct trace_event_data_offsets_mm_vmscan_lru_shrink_inactive {}; + +struct trace_event_data_offsets_mm_vmscan_lru_shrink_active {}; + +struct trace_event_data_offsets_mm_vmscan_node_reclaim_begin {}; + +struct trace_event_data_offsets_mm_vmscan_throttled {}; + +typedef void (*btf_trace_mm_vmscan_kswapd_sleep)(void *, int); + +typedef void (*btf_trace_mm_vmscan_kswapd_wake)(void *, int, int, int); + +typedef void (*btf_trace_mm_vmscan_wakeup_kswapd)(void *, int, int, int, gfp_t); + +typedef void (*btf_trace_mm_vmscan_direct_reclaim_begin)(void *, int, gfp_t); + +typedef void (*btf_trace_mm_vmscan_memcg_reclaim_begin)(void *, int, gfp_t); + +typedef void (*btf_trace_mm_vmscan_memcg_softlimit_reclaim_begin)(void *, int, gfp_t); + +typedef void (*btf_trace_mm_vmscan_direct_reclaim_end)(void *, long unsigned int); + +typedef void (*btf_trace_mm_vmscan_memcg_reclaim_end)(void *, long unsigned int); + +typedef void (*btf_trace_mm_vmscan_memcg_softlimit_reclaim_end)(void *, long unsigned int); + +typedef void (*btf_trace_mm_shrink_slab_start)(void *, struct shrinker *, struct shrink_control *, long int, long unsigned int, long long unsigned int, long unsigned int, int); + +typedef void (*btf_trace_mm_shrink_slab_end)(void *, struct shrinker *, int, int, long int, long int, long int); + +typedef void (*btf_trace_mm_vmscan_lru_isolate)(void *, int, int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int); + +typedef void (*btf_trace_mm_vmscan_write_folio)(void *, struct folio *); + +typedef void (*btf_trace_mm_vmscan_reclaim_pages)(void *, int, long unsigned int, long unsigned int, struct reclaim_stat *); + +typedef void (*btf_trace_mm_vmscan_lru_shrink_inactive)(void *, int, long unsigned int, long unsigned int, struct reclaim_stat *, int, int); + +typedef void (*btf_trace_mm_vmscan_lru_shrink_active)(void *, int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int, int); + +typedef void (*btf_trace_mm_vmscan_node_reclaim_begin)(void *, int, int, gfp_t); + +typedef void (*btf_trace_mm_vmscan_node_reclaim_end)(void *, long unsigned int); + +typedef void (*btf_trace_mm_vmscan_throttled)(void *, int, int, int, int); + +struct scan_control { + long unsigned int nr_to_reclaim; + nodemask_t *nodemask; + struct mem_cgroup *target_mem_cgroup; + long unsigned int anon_cost; + long unsigned int file_cost; + int *proactive_swappiness; + unsigned int may_deactivate: 2; + unsigned int force_deactivate: 1; + unsigned int skipped_deactivate: 1; + unsigned int may_writepage: 1; + unsigned int may_unmap: 1; + unsigned int may_swap: 1; + unsigned int no_cache_trim_mode: 1; + unsigned int cache_trim_mode_failed: 1; + unsigned int proactive: 1; + unsigned int memcg_low_reclaim: 1; + unsigned int memcg_low_skipped: 1; + unsigned int memcg_full_walk: 1; + unsigned int hibernation_mode: 1; + unsigned int compaction_ready: 1; + unsigned int cache_trim_mode: 1; + unsigned int file_is_tiny: 1; + unsigned int no_demotion: 1; + s8 order; + s8 priority; + s8 reclaim_idx; + gfp_t gfp_mask; + long unsigned int nr_scanned; + long unsigned int nr_reclaimed; + struct { + unsigned int dirty; + unsigned int unqueued_dirty; + unsigned int congested; + unsigned int writeback; + unsigned int immediate; + unsigned int file_taken; + unsigned int taken; + } nr; + struct reclaim_state reclaim_state; +}; + +typedef enum { + PAGE_KEEP = 0, + PAGE_ACTIVATE = 1, + PAGE_SUCCESS = 2, + PAGE_CLEAN = 3, +} pageout_t; + +enum folio_references { + FOLIOREF_RECLAIM = 0, + FOLIOREF_RECLAIM_CLEAN = 1, + FOLIOREF_KEEP = 2, + FOLIOREF_ACTIVATE = 3, +}; + +enum scan_balance { + SCAN_EQUAL = 0, + SCAN_FRACT = 1, + SCAN_ANON = 2, + SCAN_FILE = 3, +}; + +struct ctrl_pos { + long unsigned int refaulted; + long unsigned int total; + int gain; +}; + +enum { + MEMCG_LRU_NOP = 0, + MEMCG_LRU_HEAD = 1, + MEMCG_LRU_TAIL = 2, + MEMCG_LRU_OLD = 3, + MEMCG_LRU_YOUNG = 4, +}; + +enum { + MEMORY_RECLAIM_SWAPPINESS = 0, + MEMORY_RECLAIM_SWAPPINESS_MAX = 1, + MEMORY_RECLAIM_NULL = 2, +}; + +typedef __int128 unsigned __u128; + +typedef __u128 u128; + +struct reciprocal_value { + u32 m; + u8 sh1; + u8 sh2; +}; + +struct kmem_cache_order_objects { + unsigned int x; +}; + +struct kmem_cache_cpu; + +struct kmem_cache_node; + +struct kmem_cache { + struct kmem_cache_cpu *cpu_slab; + slab_flags_t flags; + long unsigned int min_partial; + unsigned int size; + unsigned int object_size; + struct reciprocal_value reciprocal_size; + unsigned int offset; + unsigned int cpu_partial; + unsigned int cpu_partial_slabs; + struct kmem_cache_order_objects oo; + struct kmem_cache_order_objects min; + gfp_t allocflags; + int refcount; + void (*ctor)(void *); + unsigned int inuse; + unsigned int align; + unsigned int red_left_pad; + const char *name; + struct list_head list; + struct kobject kobj; + long unsigned int random; + unsigned int remote_node_defrag_ratio; + unsigned int *random_seq; + unsigned int useroffset; + unsigned int usersize; + struct kmem_cache_node *node[1024]; +}; + +typedef u128 freelist_full_t; + +typedef union { + struct { + void *freelist; + long unsigned int counter; + }; + freelist_full_t full; +} freelist_aba_t; + +struct slab { + long unsigned int flags; + struct kmem_cache *slab_cache; + union { + struct { + union { + struct list_head slab_list; + struct { + struct slab *next; + int slabs; + }; + }; + union { + struct { + void *freelist; + union { + long unsigned int counters; + struct { + unsigned int inuse: 16; + unsigned int objects: 15; + unsigned int frozen: 1; + }; + }; + }; + freelist_aba_t freelist_counter; + }; + }; + struct callback_head callback_head; + }; + unsigned int __page_type; + atomic_t __page_refcount; + long unsigned int obj_exts; +}; + +enum slab_state { + DOWN = 0, + PARTIAL = 1, + UP = 2, + FULL = 3, +}; + +struct kmalloc_info_struct { + const char *name[19]; + unsigned int size; +}; + +struct slabinfo { + long unsigned int active_objs; + long unsigned int num_objs; + long unsigned int active_slabs; + long unsigned int num_slabs; + long unsigned int shared_avail; + unsigned int limit; + unsigned int batchcount; + unsigned int shared; + unsigned int objects_per_slab; + unsigned int cache_order; +}; + +struct kmem_obj_info { + void *kp_ptr; + struct slab *kp_slab; + void *kp_objp; + long unsigned int kp_data_offset; + struct kmem_cache *kp_slab_cache; + void *kp_ret; + void *kp_stack[16]; + void *kp_free_stack[16]; +}; + +struct trace_event_raw_kmem_cache_alloc { + struct trace_entry ent; + long unsigned int call_site; + const void *ptr; + size_t bytes_req; + size_t bytes_alloc; + long unsigned int gfp_flags; + int node; + bool accounted; + char __data[0]; +}; + +struct trace_event_raw_kmalloc { + struct trace_entry ent; + long unsigned int call_site; + const void *ptr; + size_t bytes_req; + size_t bytes_alloc; + long unsigned int gfp_flags; + int node; + char __data[0]; +}; + +struct trace_event_raw_kfree { + struct trace_entry ent; + long unsigned int call_site; + const void *ptr; + char __data[0]; +}; + +struct trace_event_raw_kmem_cache_free { + struct trace_entry ent; + long unsigned int call_site; + const void *ptr; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_mm_page_free { + struct trace_entry ent; + long unsigned int pfn; + unsigned int order; + char __data[0]; +}; + +struct trace_event_raw_mm_page_free_batched { + struct trace_entry ent; + long unsigned int pfn; + char __data[0]; +}; + +struct trace_event_raw_mm_page_alloc { + struct trace_entry ent; + long unsigned int pfn; + unsigned int order; + long unsigned int gfp_flags; + int migratetype; + char __data[0]; +}; + +struct trace_event_raw_mm_page { + struct trace_entry ent; + long unsigned int pfn; + unsigned int order; + int migratetype; + int percpu_refill; + char __data[0]; +}; + +struct trace_event_raw_mm_page_pcpu_drain { + struct trace_entry ent; + long unsigned int pfn; + unsigned int order; + int migratetype; + char __data[0]; +}; + +struct trace_event_raw_mm_page_alloc_extfrag { + struct trace_entry ent; + long unsigned int pfn; + int alloc_order; + int fallback_order; + int alloc_migratetype; + int fallback_migratetype; + int change_ownership; + char __data[0]; +}; + +struct trace_event_raw_mm_setup_per_zone_wmarks { + struct trace_entry ent; + int node_id; + u32 __data_loc_name; + long unsigned int watermark_min; + long unsigned int watermark_low; + long unsigned int watermark_high; + long unsigned int watermark_promo; + char __data[0]; +}; + +struct trace_event_raw_mm_setup_per_zone_lowmem_reserve { + struct trace_entry ent; + int node_id; + u32 __data_loc_name; + u32 __data_loc_upper_name; + long int lowmem_reserve; + char __data[0]; +}; + +struct trace_event_raw_mm_calculate_totalreserve_pages { + struct trace_entry ent; + long unsigned int totalreserve_pages; + char __data[0]; +}; + +struct trace_event_raw_rss_stat { + struct trace_entry ent; + unsigned int mm_id; + unsigned int curr; + int member; + long int size; + char __data[0]; +}; + +struct trace_event_data_offsets_kmem_cache_alloc {}; + +struct trace_event_data_offsets_kmalloc {}; + +struct trace_event_data_offsets_kfree {}; + +struct trace_event_data_offsets_kmem_cache_free { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_mm_page_free {}; + +struct trace_event_data_offsets_mm_page_free_batched {}; + +struct trace_event_data_offsets_mm_page_alloc {}; + +struct trace_event_data_offsets_mm_page {}; + +struct trace_event_data_offsets_mm_page_pcpu_drain {}; + +struct trace_event_data_offsets_mm_page_alloc_extfrag {}; + +struct trace_event_data_offsets_mm_setup_per_zone_wmarks { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_mm_setup_per_zone_lowmem_reserve { + u32 name; + const void *name_ptr_; + u32 upper_name; + const void *upper_name_ptr_; +}; + +struct trace_event_data_offsets_mm_calculate_totalreserve_pages {}; + +struct trace_event_data_offsets_rss_stat {}; + +typedef void (*btf_trace_kmem_cache_alloc)(void *, long unsigned int, const void *, struct kmem_cache *, gfp_t, int); + +typedef void (*btf_trace_kmalloc)(void *, long unsigned int, const void *, size_t, size_t, gfp_t, int); + +typedef void (*btf_trace_kfree)(void *, long unsigned int, const void *); + +typedef void (*btf_trace_kmem_cache_free)(void *, long unsigned int, const void *, const struct kmem_cache *); + +typedef void (*btf_trace_mm_page_free)(void *, struct page *, unsigned int); + +typedef void (*btf_trace_mm_page_free_batched)(void *, struct page *); + +typedef void (*btf_trace_mm_page_alloc)(void *, struct page *, unsigned int, gfp_t, int); + +typedef void (*btf_trace_mm_page_alloc_zone_locked)(void *, struct page *, unsigned int, int, int); + +typedef void (*btf_trace_mm_page_pcpu_drain)(void *, struct page *, unsigned int, int); + +typedef void (*btf_trace_mm_page_alloc_extfrag)(void *, struct page *, int, int, int, int); + +typedef void (*btf_trace_mm_setup_per_zone_wmarks)(void *, struct zone *); + +typedef void (*btf_trace_mm_setup_per_zone_lowmem_reserve)(void *, struct zone *, struct zone *, long int); + +typedef void (*btf_trace_mm_calculate_totalreserve_pages)(void *, long unsigned int); + +typedef void (*btf_trace_rss_stat)(void *, struct mm_struct *, int); + +struct kvfree_rcu_bulk_data { + struct list_head list; + struct rcu_gp_oldstate gp_snap; + long unsigned int nr_records; + void *records[0]; +}; + +struct kfree_rcu_cpu; + +struct kfree_rcu_cpu_work { + struct rcu_work rcu_work; + struct callback_head *head_free; + struct rcu_gp_oldstate head_free_gp_snap; + struct list_head bulk_head_free[2]; + struct kfree_rcu_cpu *krcp; +}; + +struct kfree_rcu_cpu { + struct callback_head *head; + long unsigned int head_gp_snap; + atomic_t head_count; + struct list_head bulk_head[2]; + atomic_t bulk_count[2]; + struct kfree_rcu_cpu_work krw_arr[2]; + raw_spinlock_t lock; + struct delayed_work monitor_work; + bool initialized; + struct delayed_work page_cache_work; + atomic_t backoff_page_cache_fill; + atomic_t work_in_progress; + struct hrtimer hrtimer; + struct llist_head bkvcache; + int nr_bkv_objs; +}; + +enum lru_status { + LRU_REMOVED = 0, + LRU_REMOVED_RETRY = 1, + LRU_ROTATE = 2, + LRU_SKIP = 3, + LRU_RETRY = 4, + LRU_STOP = 5, +}; + +typedef enum lru_status (*list_lru_walk_cb)(struct list_head *, struct list_lru_one *, void *); + +typedef unsigned int pgtbl_mod_mask; + +enum mmu_notifier_event { + MMU_NOTIFY_UNMAP = 0, + MMU_NOTIFY_CLEAR = 1, + MMU_NOTIFY_PROTECTION_VMA = 2, + MMU_NOTIFY_PROTECTION_PAGE = 3, + MMU_NOTIFY_SOFT_DIRTY = 4, + MMU_NOTIFY_RELEASE = 5, + MMU_NOTIFY_MIGRATE = 6, + MMU_NOTIFY_EXCLUSIVE = 7, +}; + +struct mmu_notifier_range { + struct mm_struct *mm; + long unsigned int start; + long unsigned int end; + unsigned int flags; + enum mmu_notifier_event event; + void *owner; +}; + +enum transparent_hugepage_flag { + TRANSPARENT_HUGEPAGE_UNSUPPORTED = 0, + TRANSPARENT_HUGEPAGE_FLAG = 1, + TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG = 2, + TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG = 3, + TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG = 4, + TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG = 5, + TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG = 6, + TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG = 7, + TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG = 8, +}; + +struct follow_pfnmap_args { + struct vm_area_struct *vma; + long unsigned int address; + spinlock_t *lock; + pte_t *ptep; + long unsigned int pfn; + long unsigned int addr_mask; + pgprot_t pgprot; + bool writable; + bool special; +}; + +typedef long unsigned int pte_marker; + +typedef int rmap_t; + +enum rmap_level { + RMAP_LEVEL_PTE = 0, + RMAP_LEVEL_PMD = 1, + RMAP_LEVEL_PUD = 2, +}; + +struct unlink_vma_file_batch { + int count; + struct vm_area_struct *vmas[8]; +}; + +typedef int fpb_t; + +struct copy_subpage_arg { + struct folio *dst; + struct folio *src; + struct vm_area_struct *vma; +}; + +struct vmap_area { + long unsigned int va_start; + long unsigned int va_end; + struct rb_node rb_node; + struct list_head list; + union { + long unsigned int subtree_max_size; + struct vm_struct *vm; + }; + long unsigned int flags; +}; + +typedef unsigned int kasan_vmalloc_flags_t; + +enum memcg_stat_item { + MEMCG_SWAP = 49, + MEMCG_SOCK = 50, + MEMCG_PERCPU_B = 51, + MEMCG_VMALLOC = 52, + MEMCG_KMEM = 53, + MEMCG_ZSWAP_B = 54, + MEMCG_ZSWAPPED = 55, + MEMCG_NR_STAT = 56, +}; + +struct trace_event_raw_alloc_vmap_area { + struct trace_entry ent; + long unsigned int addr; + long unsigned int size; + long unsigned int align; + long unsigned int vstart; + long unsigned int vend; + int failed; + char __data[0]; +}; + +struct trace_event_raw_purge_vmap_area_lazy { + struct trace_entry ent; + long unsigned int start; + long unsigned int end; + unsigned int npurged; + char __data[0]; +}; + +struct trace_event_raw_free_vmap_area_noflush { + struct trace_entry ent; + long unsigned int va_start; + long unsigned int nr_lazy; + long unsigned int nr_lazy_max; + char __data[0]; +}; + +struct trace_event_data_offsets_alloc_vmap_area {}; + +struct trace_event_data_offsets_purge_vmap_area_lazy {}; + +struct trace_event_data_offsets_free_vmap_area_noflush {}; + +typedef void (*btf_trace_alloc_vmap_area)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int); + +typedef void (*btf_trace_purge_vmap_area_lazy)(void *, long unsigned int, long unsigned int, unsigned int); + +typedef void (*btf_trace_free_vmap_area_noflush)(void *, long unsigned int, long unsigned int, long unsigned int); + +struct vfree_deferred { + struct llist_head list; + struct work_struct wq; +}; + +struct rb_list { + struct rb_root root; + struct list_head head; + spinlock_t lock; +}; + +struct vmap_pool { + struct list_head head; + long unsigned int len; +}; + +struct vmap_node { + struct vmap_pool pool[256]; + spinlock_t pool_lock; + bool skip_populate; + struct rb_list busy; + struct rb_list lazy; + struct list_head purge_list; + struct work_struct purge_work; + long unsigned int nr_purged; +}; + +enum fit_type { + NOTHING_FIT = 0, + FL_FIT_TYPE = 1, + LE_FIT_TYPE = 2, + RE_FIT_TYPE = 3, + NE_FIT_TYPE = 4, +}; + +struct vmap_block_queue { + spinlock_t lock; + struct list_head free; + struct xarray vmap_blocks; +}; + +struct vmap_block { + spinlock_t lock; + struct vmap_area *va; + long unsigned int free; + long unsigned int dirty; + long unsigned int used_map[4]; + long unsigned int dirty_min; + long unsigned int dirty_max; + struct list_head free_list; + struct callback_head callback_head; + struct list_head purge; + unsigned int cpu; +}; + +struct vmap_pfn_data { + long unsigned int *pfns; + pgprot_t prot; + unsigned int idx; +}; + +enum { + MMOP_OFFLINE = 0, + MMOP_ONLINE = 1, + MMOP_ONLINE_KERNEL = 2, + MMOP_ONLINE_MOVABLE = 3, +}; + +typedef int mhp_t; + +struct mhp_params { + struct vmem_altmap *altmap; + pgprot_t pgprot; + struct dev_pagemap *pgmap; +}; + +typedef void (*online_page_callback_t)(struct page *, unsigned int); + +enum meminit_context { + MEMINIT_EARLY = 0, + MEMINIT_HOTPLUG = 1, +}; + +struct node_notify { + int nid; +}; + +struct memory_group { + int nid; + struct list_head memory_blocks; + long unsigned int present_kernel_pages; + long unsigned int present_movable_pages; + bool is_dynamic; + union { + struct { + long unsigned int max_pages; + } s; + struct { + long unsigned int unit_pages; + } d; + }; +}; + +struct memory_block { + long unsigned int start_section_nr; + long unsigned int state; + int online_type; + int nid; + struct zone *zone; + struct device dev; + struct vmem_altmap *altmap; + struct memory_group *group; + struct list_head group_next; + atomic_long_t nr_hwpoison; +}; + +struct memory_notify { + long unsigned int altmap_start_pfn; + long unsigned int altmap_nr_pages; + long unsigned int start_pfn; + long unsigned int nr_pages; +}; + +typedef int (*walk_memory_blocks_func_t)(struct memory_block *, void *); + +typedef int (*walk_memory_groups_func_t)(struct memory_group *, void *); + +enum hugetlb_page_flags { + HPG_restore_reserve = 0, + HPG_migratable = 1, + HPG_temporary = 2, + HPG_freed = 3, + HPG_vmemmap_optimized = 4, + HPG_raw_hwp_unreliable = 5, + HPG_cma = 6, + __NR_HPAGEFLAGS = 7, +}; + +enum pb_isolate_mode { + PB_ISOLATE_MODE_MEM_OFFLINE = 0, + PB_ISOLATE_MODE_CMA_ALLOC = 1, + PB_ISOLATE_MODE_OTHER = 2, +}; + +enum { + MEMMAP_ON_MEMORY_DISABLE = 0, + MEMMAP_ON_MEMORY_ENABLE = 1, + MEMMAP_ON_MEMORY_FORCE = 2, +}; + +enum { + ONLINE_POLICY_CONTIG_ZONES = 0, + ONLINE_POLICY_AUTO_MOVABLE = 1, +}; + +struct auto_movable_stats { + long unsigned int kernel_early_pages; + long unsigned int movable_pages; +}; + +struct auto_movable_group_stats { + long unsigned int movable_pages; + long unsigned int req_kernel_early_pages; +}; + +typedef unsigned int fgf_t; + +enum string_size_units { + STRING_UNITS_10 = 0, + STRING_UNITS_2 = 1, + STRING_UNITS_MASK = 1, + STRING_UNITS_NO_SPACE = 1073741824, + STRING_UNITS_NO_BYTES = 2147483648, +}; + +enum { + MPOL_DEFAULT = 0, + MPOL_PREFERRED = 1, + MPOL_BIND = 2, + MPOL_INTERLEAVE = 3, + MPOL_LOCAL = 4, + MPOL_PREFERRED_MANY = 5, + MPOL_WEIGHTED_INTERLEAVE = 6, + MPOL_MAX = 7, +}; + +typedef unsigned int uffd_flags_t; + +enum mfill_atomic_mode { + MFILL_ATOMIC_COPY = 0, + MFILL_ATOMIC_ZEROPAGE = 1, + MFILL_ATOMIC_CONTINUE = 2, + MFILL_ATOMIC_POISON = 3, + NR_MFILL_ATOMIC_MODES = 4, +}; + +struct resv_map { + struct kref refs; + spinlock_t lock; + struct list_head regions; + long int adds_in_progress; + struct list_head region_cache; + long int region_cache_count; + struct rw_semaphore rw_sema; + struct page_counter *reservation_counter; + long unsigned int pages_per_hpage; + struct cgroup_subsys_state *css; +}; + +struct file_region { + struct list_head link; + long int from; + long int to; + struct page_counter *reservation_counter; + struct cgroup_subsys_state *css; +}; + +struct hugetlb_vma_lock { + struct kref refs; + struct rw_semaphore rw_sema; + struct vm_area_struct *vma; +}; + +struct huge_bootmem_page { + struct list_head list; + struct hstate *hstate; + long unsigned int flags; + struct cma *cma; +}; + +enum hugetlb_memory_event { + HUGETLB_MAX = 0, + HUGETLB_NR_MEMORY_EVENTS = 1, +}; + +struct hugetlb_cgroup_per_node { + long unsigned int usage[2]; +}; + +struct hugetlb_cgroup { + struct cgroup_subsys_state css; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct page_counter hugepage[2]; + struct page_counter rsvd_hugepage[2]; + atomic_long_t events[2]; + atomic_long_t events_local[2]; + struct cgroup_file events_file[2]; + struct cgroup_file events_local_file[2]; + struct hugetlb_cgroup_per_node *nodeinfo[0]; +}; + +struct hugetlb_cmdline { + char *val; + int (*setup)(char *); +}; + +enum vma_resv_mode { + VMA_NEEDS_RESV = 0, + VMA_COMMIT_RESV = 1, + VMA_END_RESV = 2, + VMA_ADD_RESV = 3, + VMA_DEL_RESV = 4, +}; + +typedef enum { + MAP_CHG_REUSE = 0, + MAP_CHG_NEEDED = 1, + MAP_CHG_ENFORCED = 2, +} map_chg_state; + +struct node_hstate { + struct kobject *hugepages_kobj; + struct kobject *hstate_kobjs[2]; +}; + +struct mmu_notifier_subscriptions { + struct hlist_head list; + bool has_itree; + spinlock_t lock; + long unsigned int invalidate_seq; + long unsigned int active_invalidate_ranges; + struct rb_root_cached itree; + wait_queue_head_t wq; + struct hlist_head deferred_list; +}; + +struct interval_tree_node { + struct rb_node rb; + long unsigned int start; + long unsigned int last; + long unsigned int __subtree_last; +}; + +struct mmu_notifier; + +struct mmu_notifier_ops { + void (*release)(struct mmu_notifier *, struct mm_struct *); + int (*clear_flush_young)(struct mmu_notifier *, struct mm_struct *, long unsigned int, long unsigned int); + int (*clear_young)(struct mmu_notifier *, struct mm_struct *, long unsigned int, long unsigned int); + int (*test_young)(struct mmu_notifier *, struct mm_struct *, long unsigned int); + int (*invalidate_range_start)(struct mmu_notifier *, const struct mmu_notifier_range *); + void (*invalidate_range_end)(struct mmu_notifier *, const struct mmu_notifier_range *); + void (*arch_invalidate_secondary_tlbs)(struct mmu_notifier *, struct mm_struct *, long unsigned int, long unsigned int); + struct mmu_notifier * (*alloc_notifier)(struct mm_struct *); + void (*free_notifier)(struct mmu_notifier *); +}; + +struct mmu_notifier { + struct hlist_node hlist; + const struct mmu_notifier_ops *ops; + struct mm_struct *mm; + struct callback_head rcu; + unsigned int users; +}; + +struct mmu_interval_notifier; + +struct mmu_interval_notifier_ops { + bool (*invalidate)(struct mmu_interval_notifier *, const struct mmu_notifier_range *, long unsigned int); +}; + +struct mmu_interval_notifier { + struct interval_tree_node interval_tree; + const struct mmu_interval_notifier_ops *ops; + struct mm_struct *mm; + struct hlist_node deferred_item; + long unsigned int invalidate_seq; +}; + +enum { + DUMP_PREFIX_NONE = 0, + DUMP_PREFIX_ADDRESS = 1, + DUMP_PREFIX_OFFSET = 2, +}; + +typedef unsigned int isolate_mode_t; + +struct buffer_head; + +typedef void bh_end_io_t(struct buffer_head *, int); + +struct buffer_head { + long unsigned int b_state; + struct buffer_head *b_this_page; + union { + struct page *b_page; + struct folio *b_folio; + }; + sector_t b_blocknr; + size_t b_size; + char *b_data; + struct block_device *b_bdev; + bh_end_io_t *b_end_io; + void *b_private; + struct list_head b_assoc_buffers; + struct address_space *b_assoc_map; + atomic_t b_count; + spinlock_t b_uptodate_lock; +}; + +struct movable_operations { + bool (*isolate_page)(struct page *, isolate_mode_t); + int (*migrate_page)(struct page *, struct page *, enum migrate_mode); + void (*putback_page)(struct page *); +}; + +enum bh_state_bits { + BH_Uptodate = 0, + BH_Dirty = 1, + BH_Lock = 2, + BH_Req = 3, + BH_Mapped = 4, + BH_New = 5, + BH_Async_Read = 6, + BH_Async_Write = 7, + BH_Delay = 8, + BH_Boundary = 9, + BH_Write_EIO = 10, + BH_Unwritten = 11, + BH_Quiet = 12, + BH_Meta = 13, + BH_Prio = 14, + BH_Defer_Completion = 15, + BH_Migrate = 16, + BH_PrivateStart = 17, +}; + +enum rmp_flags { + RMP_LOCKED = 1, + RMP_USE_SHARED_ZEROPAGE = 2, +}; + +struct rmap_walk_control { + void *arg; + bool try_lock; + bool contended; + bool (*rmap_one)(struct folio *, struct vm_area_struct *, long unsigned int, void *); + int (*done)(struct folio *); + struct anon_vma * (*anon_lock)(const struct folio *, struct rmap_walk_control *); + bool (*invalid_vma)(struct vm_area_struct *, void *); +}; + +typedef int folio_walk_flags_t; + +enum folio_walk_level { + FW_LEVEL_PTE = 0, + FW_LEVEL_PMD = 1, + FW_LEVEL_PUD = 2, +}; + +struct folio_walk { + struct page *page; + enum folio_walk_level level; + union { + pte_t *ptep; + pud_t *pudp; + pmd_t *pmdp; + }; + union { + pte_t pte; + pud_t pud; + pmd_t pmd; + }; + struct vm_area_struct *vma; + spinlock_t *ptl; +}; + +struct rmap_walk_arg { + struct folio *folio; + bool map_unused_to_zeropage; +}; + +enum { + PAGE_WAS_MAPPED = 1, + PAGE_WAS_MLOCKED = 2, + PAGE_OLD_STATES = 3, +}; + +struct migrate_pages_stats { + int nr_succeeded; + int nr_failed_pages; + int nr_thp_succeeded; + int nr_thp_failed; + int nr_thp_split; + int nr_split; +}; + +enum vmpressure_levels { + VMPRESSURE_LOW = 0, + VMPRESSURE_MEDIUM = 1, + VMPRESSURE_CRITICAL = 2, + VMPRESSURE_NUM_LEVELS = 3, +}; + +enum vmpressure_modes { + VMPRESSURE_NO_PASSTHROUGH = 0, + VMPRESSURE_HIERARCHY = 1, + VMPRESSURE_LOCAL = 2, + VMPRESSURE_NUM_MODES = 3, +}; + +struct eventfd_ctx; + +struct vmpressure_event { + struct eventfd_ctx *efd; + enum vmpressure_levels level; + enum vmpressure_modes mode; + struct list_head node; +}; + +struct swap_cgroup { + atomic_t ids; +}; + +struct swap_cgroup_ctrl { + struct swap_cgroup *map; +}; + +enum mf_flags { + MF_COUNT_INCREASED = 1, + MF_ACTION_REQUIRED = 2, + MF_MUST_KILL = 4, + MF_SOFT_OFFLINE = 8, + MF_UNPOISON = 16, + MF_SW_SIMULATED = 32, + MF_NO_RETRY = 64, + MF_MEM_PRE_REMOVE = 128, +}; + +enum mf_result { + MF_IGNORED = 0, + MF_FAILED = 1, + MF_DELAYED = 2, + MF_RECOVERED = 3, +}; + +enum mf_action_page_type { + MF_MSG_KERNEL = 0, + MF_MSG_KERNEL_HIGH_ORDER = 1, + MF_MSG_DIFFERENT_COMPOUND = 2, + MF_MSG_HUGE = 3, + MF_MSG_FREE_HUGE = 4, + MF_MSG_GET_HWPOISON = 5, + MF_MSG_UNMAP_FAILED = 6, + MF_MSG_DIRTY_SWAPCACHE = 7, + MF_MSG_CLEAN_SWAPCACHE = 8, + MF_MSG_DIRTY_MLOCKED_LRU = 9, + MF_MSG_CLEAN_MLOCKED_LRU = 10, + MF_MSG_DIRTY_UNEVICTABLE_LRU = 11, + MF_MSG_CLEAN_UNEVICTABLE_LRU = 12, + MF_MSG_DIRTY_LRU = 13, + MF_MSG_CLEAN_LRU = 14, + MF_MSG_TRUNCATED_LRU = 15, + MF_MSG_BUDDY = 16, + MF_MSG_DAX = 17, + MF_MSG_UNSPLIT_THP = 18, + MF_MSG_ALREADY_POISONED = 19, + MF_MSG_UNKNOWN = 20, +}; + +typedef long unsigned int dax_entry_t; + +struct anon_vma_chain { + struct vm_area_struct *vma; + struct anon_vma *anon_vma; + struct list_head same_vma; + struct rb_node rb; + long unsigned int rb_subtree_last; +}; + +struct to_kill { + struct list_head nd; + struct task_struct *tsk; + long unsigned int addr; + short int size_shift; +}; + +struct hwpoison_walk { + struct to_kill tk; + long unsigned int pfn; + int flags; +}; + +struct page_state { + long unsigned int mask; + long unsigned int res; + enum mf_action_page_type type; + int (*action)(struct page_state *, struct page *); +}; + +struct raw_hwp_page { + struct llist_node node; + struct page *page; +}; + +struct memory_failure_entry { + long unsigned int pfn; + int flags; +}; + +struct memory_failure_cpu { + struct { + union { + struct __kfifo kfifo; + struct memory_failure_entry *type; + const struct memory_failure_entry *const_type; + char (*rectype)[0]; + struct memory_failure_entry *ptr; + const struct memory_failure_entry *ptr_const; + }; + struct memory_failure_entry buf[16]; + } fifo; + raw_spinlock_t lock; + struct work_struct work; +}; + +struct zs_pool_stats { + atomic_long_t pages_compacted; +}; + +struct zpool_driver { + char *type; + struct module *owner; + atomic_t refcount; + struct list_head list; + void * (*create)(const char *, gfp_t); + void (*destroy)(void *); + int (*malloc)(void *, size_t, gfp_t, long unsigned int *, const int); + void (*free)(void *, long unsigned int); + void * (*obj_read_begin)(void *, long unsigned int, void *); + void (*obj_read_end)(void *, long unsigned int, void *); + void (*obj_write)(void *, long unsigned int, void *, size_t); + u64 (*total_pages)(void *); +}; + +struct zspage; + +struct zpdesc { + long unsigned int flags; + struct list_head lru; + long unsigned int movable_ops; + union { + struct zpdesc *next; + long unsigned int handle; + }; + struct zspage *zspage; + unsigned int first_obj_offset; + atomic_t _refcount; +}; + +struct zspage_lock { + spinlock_t lock; + int cnt; + struct lockdep_map dep_map; +}; + +struct zs_pool; + +struct zspage { + struct { + unsigned int huge: 1; + unsigned int fullness: 4; + unsigned int class: 9; + unsigned int magic: 8; + }; + unsigned int inuse; + unsigned int freeobj; + struct zpdesc *first_zpdesc; + struct list_head list; + struct zs_pool *pool; + struct zspage_lock zsl; +}; + +enum fullness_group { + ZS_INUSE_RATIO_0 = 0, + ZS_INUSE_RATIO_10 = 1, + ZS_INUSE_RATIO_99 = 10, + ZS_INUSE_RATIO_100 = 11, + NR_FULLNESS_GROUPS = 12, +}; + +enum class_stat_type { + ZS_OBJS_ALLOCATED = 12, + ZS_OBJS_INUSE = 13, + NR_CLASS_STAT_TYPES = 14, +}; + +struct zs_size_stat { + long unsigned int objs[14]; +}; + +struct size_class { + spinlock_t lock; + struct list_head fullness_list[12]; + int size; + int objs_per_zspage; + int pages_per_zspage; + unsigned int index; + struct zs_size_stat stats; +}; + +struct link_free { + union { + long unsigned int next; + long unsigned int handle; + }; +}; + +struct zs_pool { + const char *name; + struct size_class *size_class[255]; + struct kmem_cache *handle_cachep; + struct kmem_cache *zspage_cachep; + atomic_long_t pages_allocated; + struct zs_pool_stats stats; + struct shrinker *shrinker; + struct work_struct free_work; + rwlock_t lock; + atomic_t compaction_in_progress; +}; + +struct cma_kobject { + struct kobject kobj; + struct cma *cma; +}; + +struct cma_mem { + struct hlist_node node; + struct page *p; + long unsigned int n; +}; + +struct ptdump_range { + long unsigned int start; + long unsigned int end; +}; + +struct ptdump_state { + void (*note_page_pte)(struct ptdump_state *, long unsigned int, pte_t); + void (*note_page_pmd)(struct ptdump_state *, long unsigned int, pmd_t); + void (*note_page_pud)(struct ptdump_state *, long unsigned int, pud_t); + void (*note_page_p4d)(struct ptdump_state *, long unsigned int, p4d_t); + void (*note_page_pgd)(struct ptdump_state *, long unsigned int, pgd_t); + void (*note_page_flush)(struct ptdump_state *); + void (*effective_prot_pte)(struct ptdump_state *, pte_t); + void (*effective_prot_pmd)(struct ptdump_state *, pmd_t); + void (*effective_prot_pud)(struct ptdump_state *, pud_t); + void (*effective_prot_p4d)(struct ptdump_state *, p4d_t); + void (*effective_prot_pgd)(struct ptdump_state *, pgd_t); + const struct ptdump_range *range; +}; + +enum execmem_range_flags { + EXECMEM_KASAN_SHADOW = 1, + EXECMEM_ROX_CACHE = 2, +}; + +struct execmem_range { + long unsigned int start; + long unsigned int end; + long unsigned int fallback_start; + long unsigned int fallback_end; + pgprot_t pgprot; + unsigned int alignment; + enum execmem_range_flags flags; +}; + +struct execmem_info { + struct execmem_range ranges[5]; +}; + +struct execmem_cache { + struct mutex mutex; + struct maple_tree busy_areas; + struct maple_tree free_areas; + unsigned int pending_free_cnt; +}; + +typedef __kernel_long_t __kernel_off_t; + +typedef __kernel_off_t off_t; + +typedef struct { + spinlock_t *lock; +} class_spinlock_t; + +typedef struct fd class_fd_pos_t; + +enum iter_type { + ITER_UBUF = 0, + ITER_IOVEC = 1, + ITER_BVEC = 2, + ITER_KVEC = 3, + ITER_FOLIOQ = 4, + ITER_XARRAY = 5, + ITER_DISCARD = 6, +}; + +enum { + IOPRIO_CLASS_NONE = 0, + IOPRIO_CLASS_RT = 1, + IOPRIO_CLASS_BE = 2, + IOPRIO_CLASS_IDLE = 3, + IOPRIO_CLASS_INVALID = 7, +}; + +enum { + IOPRIO_HINT_NONE = 0, + IOPRIO_HINT_DEV_DURATION_LIMIT_1 = 1, + IOPRIO_HINT_DEV_DURATION_LIMIT_2 = 2, + IOPRIO_HINT_DEV_DURATION_LIMIT_3 = 3, + IOPRIO_HINT_DEV_DURATION_LIMIT_4 = 4, + IOPRIO_HINT_DEV_DURATION_LIMIT_5 = 5, + IOPRIO_HINT_DEV_DURATION_LIMIT_6 = 6, + IOPRIO_HINT_DEV_DURATION_LIMIT_7 = 7, +}; + +typedef int __kernel_rwf_t; + +typedef __kernel_rwf_t rwf_t; + +enum fsnotify_data_type { + FSNOTIFY_EVENT_NONE = 0, + FSNOTIFY_EVENT_FILE_RANGE = 1, + FSNOTIFY_EVENT_PATH = 2, + FSNOTIFY_EVENT_INODE = 3, + FSNOTIFY_EVENT_DENTRY = 4, + FSNOTIFY_EVENT_MNT = 5, + FSNOTIFY_EVENT_ERROR = 6, +}; + +typedef s32 compat_off_t; + +typedef s64 compat_loff_t; + +typedef short unsigned int __kernel_old_uid_t; + +typedef short unsigned int __kernel_old_gid_t; + +typedef __kernel_old_uid_t old_uid_t; + +typedef __kernel_old_gid_t old_gid_t; + +struct stat { + __kernel_ulong_t st_dev; + __kernel_ulong_t st_ino; + __kernel_ulong_t st_nlink; + unsigned int st_mode; + unsigned int st_uid; + unsigned int st_gid; + unsigned int __pad0; + __kernel_ulong_t st_rdev; + __kernel_long_t st_size; + __kernel_long_t st_blksize; + __kernel_long_t st_blocks; + __kernel_ulong_t st_atime; + __kernel_ulong_t st_atime_nsec; + __kernel_ulong_t st_mtime; + __kernel_ulong_t st_mtime_nsec; + __kernel_ulong_t st_ctime; + __kernel_ulong_t st_ctime_nsec; + __kernel_long_t __unused[3]; +}; + +struct __old_kernel_stat { + short unsigned int st_dev; + short unsigned int st_ino; + short unsigned int st_mode; + short unsigned int st_nlink; + short unsigned int st_uid; + short unsigned int st_gid; + short unsigned int st_rdev; + unsigned int st_size; + unsigned int st_atime; + unsigned int st_mtime; + unsigned int st_ctime; +}; + +struct statx_timestamp { + __s64 tv_sec; + __u32 tv_nsec; + __s32 __reserved; +}; + +struct statx { + __u32 stx_mask; + __u32 stx_blksize; + __u64 stx_attributes; + __u32 stx_nlink; + __u32 stx_uid; + __u32 stx_gid; + __u16 stx_mode; + __u16 __spare0[1]; + __u64 stx_ino; + __u64 stx_size; + __u64 stx_blocks; + __u64 stx_attributes_mask; + struct statx_timestamp stx_atime; + struct statx_timestamp stx_btime; + struct statx_timestamp stx_ctime; + struct statx_timestamp stx_mtime; + __u32 stx_rdev_major; + __u32 stx_rdev_minor; + __u32 stx_dev_major; + __u32 stx_dev_minor; + __u64 stx_mnt_id; + __u32 stx_dio_mem_align; + __u32 stx_dio_offset_align; + __u64 stx_subvol; + __u32 stx_atomic_write_unit_min; + __u32 stx_atomic_write_unit_max; + __u32 stx_atomic_write_segments_max; + __u32 stx_dio_read_offset_align; + __u32 stx_atomic_write_unit_max_opt; + __u32 __spare2[1]; + __u64 __spare3[8]; +}; + +typedef u16 compat_mode_t; + +typedef u16 __compat_uid_t; + +typedef u16 __compat_gid_t; + +typedef u32 compat_ino_t; + +typedef u16 compat_nlink_t; + +struct compat_stat { + u32 st_dev; + compat_ino_t st_ino; + compat_mode_t st_mode; + compat_nlink_t st_nlink; + __compat_uid_t st_uid; + __compat_gid_t st_gid; + u32 st_rdev; + u32 st_size; + u32 st_blksize; + u32 st_blocks; + u32 st_atime; + u32 st_atime_nsec; + u32 st_mtime; + u32 st_mtime_nsec; + u32 st_ctime; + u32 st_ctime_nsec; + u32 __unused4; + u32 __unused5; +}; + +struct mount; + +struct mnt_namespace { + struct ns_common ns; + struct mount *root; + struct { + struct rb_root mounts; + struct rb_node *mnt_last_node; + struct rb_node *mnt_first_node; + }; + struct user_namespace *user_ns; + struct ucounts *ucounts; + u64 seq; + union { + wait_queue_head_t poll; + struct callback_head mnt_ns_rcu; + }; + u64 seq_origin; + u64 event; + __u32 n_fsnotify_mask; + struct fsnotify_mark_connector *n_fsnotify_marks; + unsigned int nr_mounts; + unsigned int pending_mounts; + struct rb_node mnt_ns_tree_node; + struct list_head mnt_ns_list; + refcount_t passive; +}; + +struct fs_pin { + wait_queue_head_t wait; + int done; + struct hlist_node s_list; + struct hlist_node m_list; + void (*kill)(struct fs_pin *); +}; + +struct mnt_pcp; + +struct mountpoint; + +struct mount { + struct hlist_node mnt_hash; + struct mount *mnt_parent; + struct dentry *mnt_mountpoint; + struct vfsmount mnt; + union { + struct rb_node mnt_node; + struct callback_head mnt_rcu; + struct llist_node mnt_llist; + }; + struct mnt_pcp *mnt_pcp; + struct list_head mnt_mounts; + struct list_head mnt_child; + struct list_head mnt_instance; + const char *mnt_devname; + struct list_head mnt_list; + struct list_head mnt_expire; + struct list_head mnt_share; + struct hlist_head mnt_slave_list; + struct hlist_node mnt_slave; + struct mount *mnt_master; + struct mnt_namespace *mnt_ns; + struct mountpoint *mnt_mp; + union { + struct hlist_node mnt_mp_list; + struct hlist_node mnt_umount; + }; + struct fsnotify_mark_connector *mnt_fsnotify_marks; + __u32 mnt_fsnotify_mask; + struct list_head to_notify; + struct mnt_namespace *prev_ns; + int mnt_t_flags; + int mnt_id; + u64 mnt_id_unique; + int mnt_group_id; + int mnt_expiry_mark; + struct hlist_head mnt_pins; + struct hlist_head mnt_stuck_children; + struct mount *overmount; +}; + +struct mnt_pcp { + int mnt_count; + int mnt_writers; +}; + +struct mountpoint { + struct hlist_node m_hash; + struct dentry *m_dentry; + struct hlist_head m_list; +}; + +struct f_owner_ex { + int type; + __kernel_pid_t pid; +}; + +struct flock { + short int l_type; + short int l_whence; + __kernel_off_t l_start; + __kernel_off_t l_len; + __kernel_pid_t l_pid; +}; + +struct file_lock_context { + spinlock_t flc_lock; + struct list_head flc_flock; + struct list_head flc_posix; + struct list_head flc_lease; +}; + +struct file_lock_core { + struct file_lock_core *flc_blocker; + struct list_head flc_list; + struct hlist_node flc_link; + struct list_head flc_blocked_requests; + struct list_head flc_blocked_member; + fl_owner_t flc_owner; + unsigned int flc_flags; + unsigned char flc_type; + pid_t flc_pid; + int flc_link_cpu; + wait_queue_head_t flc_wait; + struct file *flc_file; +}; + +struct nlm_lockowner; + +struct nfs_lock_info { + u32 state; + struct nlm_lockowner *owner; + struct list_head list; +}; + +struct nfs4_lock_state; + +struct nfs4_lock_info { + struct nfs4_lock_state *owner; +}; + +struct file_lock_operations; + +struct lock_manager_operations; + +struct file_lock { + struct file_lock_core c; + loff_t fl_start; + loff_t fl_end; + const struct file_lock_operations *fl_ops; + const struct lock_manager_operations *fl_lmops; + union { + struct nfs_lock_info nfs_fl; + struct nfs4_lock_info nfs4_fl; + struct { + struct list_head link; + int state; + unsigned int debug_id; + } afs; + struct { + struct inode *inode; + } ceph; + } fl_u; +}; + +struct lease_manager_operations; + +struct file_lease { + struct file_lock_core c; + struct fasync_struct *fl_fasync; + long unsigned int fl_break_time; + long unsigned int fl_downgrade_time; + const struct lease_manager_operations *fl_lmops; +}; + +typedef s32 compat_pid_t; + +struct compat_flock { + short int l_type; + short int l_whence; + compat_off_t l_start; + compat_off_t l_len; + compat_pid_t l_pid; +}; + +struct compat_flock64 { + short int l_type; + short int l_whence; + compat_loff_t l_start; + compat_loff_t l_len; + compat_pid_t l_pid; +} __attribute__((packed)); + +struct file_lock_operations { + void (*fl_copy_lock)(struct file_lock *, struct file_lock *); + void (*fl_release_private)(struct file_lock *); +}; + +struct lock_manager_operations { + void *lm_mod_owner; + fl_owner_t (*lm_get_owner)(fl_owner_t); + void (*lm_put_owner)(fl_owner_t); + void (*lm_notify)(struct file_lock *); + int (*lm_grant)(struct file_lock *, int); + bool (*lm_lock_expirable)(struct file_lock *); + void (*lm_expire_lock)(void); +}; + +struct lease_manager_operations { + bool (*lm_break)(struct file_lease *); + int (*lm_change)(struct file_lease *, int, struct list_head *); + void (*lm_setup)(struct file_lease *, void **); + bool (*lm_breaker_owns_lease)(struct file_lease *); +}; + +enum dentry_d_lock_class { + DENTRY_D_LOCK_NORMAL = 0, + DENTRY_D_LOCK_NESTED = 1, +}; + +struct name_snapshot { + struct qstr name; + union shortname_store inline_name; +}; + +enum mount_flags { + MNT_NOSUID = 1, + MNT_NODEV = 2, + MNT_NOEXEC = 4, + MNT_NOATIME = 8, + MNT_NODIRATIME = 16, + MNT_RELATIME = 32, + MNT_READONLY = 64, + MNT_NOSYMFOLLOW = 128, + MNT_SHRINKABLE = 256, + MNT_WRITE_HOLD = 512, + MNT_INTERNAL = 16384, + MNT_LOCK_ATIME = 262144, + MNT_LOCK_NOEXEC = 524288, + MNT_LOCK_NOSUID = 1048576, + MNT_LOCK_NODEV = 2097152, + MNT_LOCK_READONLY = 4194304, + MNT_LOCKED = 8388608, + MNT_DOOMED = 16777216, + MNT_SYNC_UMOUNT = 33554432, + MNT_UMOUNT = 134217728, + MNT_USER_SETTABLE_MASK = 255, + MNT_ATIME_MASK = 56, + MNT_INTERNAL_FLAGS = 58737152, +}; + +struct fscrypt_policy_v1 { + __u8 version; + __u8 contents_encryption_mode; + __u8 filenames_encryption_mode; + __u8 flags; + __u8 master_key_descriptor[8]; +}; + +struct fscrypt_policy_v2 { + __u8 version; + __u8 contents_encryption_mode; + __u8 filenames_encryption_mode; + __u8 flags; + __u8 log2_data_unit_size; + __u8 __reserved[3]; + __u8 master_key_identifier[16]; +}; + +union fscrypt_policy { + u8 version; + struct fscrypt_policy_v1 v1; + struct fscrypt_policy_v2 v2; +}; + +struct dentry_stat_t { + long int nr_dentry; + long int nr_unused; + long int age_limit; + long int want_pages; + long int nr_negative; + long int dummy; +}; + +struct external_name { + atomic_t count; + struct callback_head head; + unsigned char name[0]; +}; + +enum d_walk_ret { + D_WALK_CONTINUE = 0, + D_WALK_QUIT = 1, + D_WALK_NORETRY = 2, + D_WALK_SKIP = 3, +}; + +struct check_mount { + struct vfsmount *mnt; + unsigned int mounted; +}; + +struct select_data { + struct dentry *start; + union { + long int found; + struct dentry *victim; + }; + struct list_head dispose; +}; + +typedef struct { + int val[2]; +} __kernel_fsid_t; + +enum inode_i_mutex_lock_class { + I_MUTEX_NORMAL = 0, + I_MUTEX_PARENT = 1, + I_MUTEX_CHILD = 2, + I_MUTEX_XATTR = 3, + I_MUTEX_NONDIR2 = 4, + I_MUTEX_PARENT2 = 5, +}; + +struct kstatfs { + long int f_type; + long int f_bsize; + u64 f_blocks; + u64 f_bfree; + u64 f_bavail; + u64 f_files; + u64 f_ffree; + __kernel_fsid_t f_fsid; + long int f_namelen; + long int f_frsize; + long int f_flags; + long int f_spare[4]; +}; + +struct simple_transaction_argresp { + ssize_t size; + char data[0]; +}; + +enum fid_type { + FILEID_ROOT = 0, + FILEID_INO32_GEN = 1, + FILEID_INO32_GEN_PARENT = 2, + FILEID_BTRFS_WITHOUT_PARENT = 77, + FILEID_BTRFS_WITH_PARENT = 78, + FILEID_BTRFS_WITH_PARENT_ROOT = 79, + FILEID_UDF_WITHOUT_PARENT = 81, + FILEID_UDF_WITH_PARENT = 82, + FILEID_NILFS_WITHOUT_PARENT = 97, + FILEID_NILFS_WITH_PARENT = 98, + FILEID_FAT_WITHOUT_PARENT = 113, + FILEID_FAT_WITH_PARENT = 114, + FILEID_INO64_GEN = 129, + FILEID_INO64_GEN_PARENT = 130, + FILEID_LUSTRE = 151, + FILEID_BCACHEFS_WITHOUT_PARENT = 177, + FILEID_BCACHEFS_WITH_PARENT = 178, + FILEID_KERNFS = 254, + FILEID_INVALID = 255, +}; + +struct fid { + union { + struct { + u32 ino; + u32 gen; + u32 parent_ino; + u32 parent_gen; + } i32; + struct { + u64 ino; + u32 gen; + } __attribute__((packed)) i64; + struct { + u32 block; + u16 partref; + u16 parent_partref; + u32 generation; + u32 parent_block; + u32 parent_generation; + } udf; + struct { + struct {} __empty_raw; + __u32 raw[0]; + }; + }; +}; + +enum handle_to_path_flags { + HANDLE_CHECK_PERMS = 1, + HANDLE_CHECK_SUBTREE = 2, +}; + +struct handle_to_path_ctx { + struct path root; + enum handle_to_path_flags flags; + unsigned int fh_flags; +}; + +enum fsnotify_iter_type { + FSNOTIFY_ITER_TYPE_INODE = 0, + FSNOTIFY_ITER_TYPE_VFSMOUNT = 1, + FSNOTIFY_ITER_TYPE_SB = 2, + FSNOTIFY_ITER_TYPE_PARENT = 3, + FSNOTIFY_ITER_TYPE_INODE2 = 4, + FSNOTIFY_ITER_TYPE_MNTNS = 5, + FSNOTIFY_ITER_TYPE_COUNT = 6, +}; + +struct fscrypt_str { + unsigned char *name; + u32 len; +}; + +struct stashed_operations { + struct dentry * (*stash_dentry)(struct dentry **, struct dentry *); + void (*put_data)(void *); + int (*init_inode)(struct inode *, void *); +}; + +enum { + DIR_OFFSET_FIRST = 2, + DIR_OFFSET_EOD = 2147483647, +}; + +enum { + DIR_OFFSET_MIN = 3, + DIR_OFFSET_MAX = 2147483646, +}; + +struct simple_attr { + int (*get)(void *, u64 *); + int (*set)(void *, u64); + char get_buf[24]; + char set_buf[24]; + void *data; + const char *fmt; + struct mutex mutex; +}; + +typedef __kernel_long_t __kernel_old_time_t; + +struct old_utimbuf32 { + old_time32_t actime; + old_time32_t modtime; +}; + +struct utimbuf { + __kernel_old_time_t actime; + __kernel_old_time_t modtime; +}; + +struct prepend_buffer { + char *buf; + int len; +}; + +struct constant_table { + const char *name; + int value; +}; + +struct pidfs_exit_info { + __u64 cgroupid; + __s32 exit_code; + __u32 coredump_mask; +}; + +struct simple_xattrs; + +struct pidfs_attr { + struct simple_xattrs *xattrs; + struct pidfs_exit_info __pei; + struct pidfs_exit_info *exit_info; +}; + +typedef struct task_struct *class_task_lock_t; + +enum proc_hidepid { + HIDEPID_OFF = 0, + HIDEPID_NO_ACCESS = 1, + HIDEPID_INVISIBLE = 2, + HIDEPID_NOT_PTRACEABLE = 4, +}; + +enum proc_pidonly { + PROC_PIDONLY_OFF = 0, + PROC_PIDONLY_ON = 1, +}; + +struct proc_fs_info { + struct pid_namespace *pid_ns; + struct dentry *proc_self; + struct dentry *proc_thread_self; + kgid_t pid_gid; + enum proc_hidepid hide_pid; + enum proc_pidonly pidonly; + struct callback_head rcu; +}; + +struct pidfd_info { + __u64 mask; + __u64 cgroupid; + __u32 pid; + __u32 tgid; + __u32 ppid; + __u32 ruid; + __u32 rgid; + __u32 euid; + __u32 egid; + __u32 suid; + __u32 sgid; + __u32 fsuid; + __u32 fsgid; + __s32 exit_code; + __u32 coredump_mask; + __u32 __spare1; +}; + +struct simple_xattrs { + struct rb_root rb_root; + rwlock_t lock; +}; + +struct simple_xattr { + struct rb_node rb_node; + char *name; + size_t size; + char value[0]; +}; + +typedef u32 nlink_t; + +typedef int (*proc_write_t)(struct file *, char *, size_t); + +struct proc_dir_entry { + atomic_t in_use; + refcount_t refcnt; + struct list_head pde_openers; + spinlock_t pde_unload_lock; + struct completion *pde_unload_completion; + const struct inode_operations *proc_iops; + union { + const struct proc_ops *proc_ops; + const struct file_operations *proc_dir_ops; + }; + union { + const struct seq_operations *seq_ops; + int (*single_show)(struct seq_file *, void *); + }; + proc_write_t write; + void *data; + unsigned int state_size; + unsigned int low_ino; + nlink_t nlink; + kuid_t uid; + kgid_t gid; + loff_t size; + struct proc_dir_entry *parent; + struct rb_root subdir; + struct rb_node subdir_node; + char *name; + umode_t mode; + u8 flags; + u8 namelen; + char inline_name[0]; +}; + +union proc_op { + int (*proc_get_link)(struct dentry *, struct path *); + int (*proc_show)(struct seq_file *, struct pid_namespace *, struct pid *, struct task_struct *); + int lsmid; +}; + +struct proc_inode { + struct pid *pid; + unsigned int fd; + union proc_op op; + struct proc_dir_entry *pde; + struct ctl_table_header *sysctl; + const struct ctl_table *sysctl_entry; + struct hlist_node sibling_inodes; + const struct proc_ns_operations *ns_ops; + struct inode vfs_inode; +}; + +enum { + T_SHARED = 1, + T_UNBINDABLE = 2, + T_MARKED = 4, + T_UMOUNT_CANDIDATE = 8, + T_SHARED_MASK = 2, +}; + +struct proc_mounts { + struct mnt_namespace *ns; + struct path root; + int (*show)(struct seq_file *, struct vfsmount *); +}; + +struct proc_fs_opts { + int flag; + const char *str; +}; + +struct file_handle { + __u32 handle_bytes; + int handle_type; + unsigned char f_handle[0]; +}; + +struct inotify_inode_mark { + struct fsnotify_mark fsn_mark; + int wd; +}; + +struct fanotify_response_info_header { + __u8 type; + __u8 pad; + __u16 len; +}; + +struct fanotify_response_info_audit_rule { + struct fanotify_response_info_header hdr; + __u32 rule_number; + __u32 subj_trust; + __u32 obj_trust; +}; + +struct fs_error_report { + int error; + struct inode *inode; + struct super_block *sb; +}; + +struct file_range { + const struct path *path; + loff_t pos; + size_t count; +}; + +struct fsnotify_mnt { + const struct mnt_namespace *ns; + u64 mnt_id; +}; + +enum { + FAN_EVENT_INIT = 0, + FAN_EVENT_REPORTED = 1, + FAN_EVENT_ANSWERED = 2, + FAN_EVENT_CANCELED = 3, +}; + +struct fanotify_fh { + u8 type; + u8 len; + u8 flags; + u8 pad; +}; + +struct fanotify_info { + u8 dir_fh_totlen; + u8 dir2_fh_totlen; + u8 file_fh_totlen; + u8 name_len; + u8 name2_len; + u8 pad[3]; + unsigned char buf[0]; +}; + +enum fanotify_event_type { + FANOTIFY_EVENT_TYPE_FID = 0, + FANOTIFY_EVENT_TYPE_FID_NAME = 1, + FANOTIFY_EVENT_TYPE_PATH = 2, + FANOTIFY_EVENT_TYPE_PATH_PERM = 3, + FANOTIFY_EVENT_TYPE_OVERFLOW = 4, + FANOTIFY_EVENT_TYPE_FS_ERROR = 5, + FANOTIFY_EVENT_TYPE_MNT = 6, + __FANOTIFY_EVENT_TYPE_NUM = 7, +}; + +struct fanotify_event { + struct fsnotify_event fse; + struct hlist_node merge_list; + u32 mask; + struct { + unsigned int type: 3; + unsigned int hash: 29; + }; + struct pid *pid; +}; + +struct fanotify_fid_event { + struct fanotify_event fae; + __kernel_fsid_t fsid; + struct { + struct fanotify_fh object_fh; + unsigned char _inline_fh_buf[12]; + }; +}; + +struct fanotify_name_event { + struct fanotify_event fae; + __kernel_fsid_t fsid; + struct fanotify_info info; +}; + +struct fanotify_error_event { + struct fanotify_event fae; + s32 error; + u32 err_count; + __kernel_fsid_t fsid; + struct { + struct fanotify_fh object_fh; + unsigned char _inline_fh_buf[128]; + }; +}; + +struct fanotify_path_event { + struct fanotify_event fae; + struct path path; +}; + +struct fanotify_mnt_event { + struct fanotify_event fae; + u64 mnt_id; +}; + +struct fanotify_perm_event { + struct fanotify_event fae; + struct path path; + const loff_t *ppos; + size_t count; + u32 response; + short unsigned int state; + int fd; + union { + struct fanotify_response_info_header hdr; + struct fanotify_response_info_audit_rule audit_rule; + }; +}; + +struct fanotify_mark { + struct fsnotify_mark fsn_mark; + __kernel_fsid_t fsid; +}; + +struct __kernel_itimerspec { + struct __kernel_timespec it_interval; + struct __kernel_timespec it_value; +}; + +struct old_itimerspec32 { + struct old_timespec32 it_interval; + struct old_timespec32 it_value; +}; + +struct timerfd_ctx { + union { + struct hrtimer tmr; + struct alarm alarm; + } t; + ktime_t tintv; + ktime_t moffs; + wait_queue_head_t wqh; + u64 ticks; + int clockid; + short unsigned int expired; + short unsigned int settime_flags; + struct callback_head rcu; + struct list_head clist; + spinlock_t cancel_lock; + bool might_cancel; +}; + +struct wait_bit_key { + long unsigned int *flags; + int bit_nr; + long unsigned int timeout; +}; + +struct wait_bit_queue_entry { + struct wait_bit_key key; + struct wait_queue_entry wq_entry; +}; + +enum dax_access_mode { + DAX_ACCESS = 0, + DAX_RECOVERY_WRITE = 1, +}; + +struct dax_device; + +struct iomap { + u64 addr; + loff_t offset; + u64 length; + u16 type; + u16 flags; + struct block_device *bdev; + struct dax_device *dax_dev; + void *inline_data; + void *private; + u64 validity_cookie; +}; + +struct iomap_iter { + struct inode *inode; + loff_t pos; + u64 len; + loff_t iter_start_pos; + int status; + unsigned int flags; + struct iomap iomap; + struct iomap srcmap; + void *private; +}; + +struct iomap_ops { + int (*iomap_begin)(struct inode *, loff_t, loff_t, unsigned int, struct iomap *, struct iomap *); + int (*iomap_end)(struct inode *, loff_t, loff_t, ssize_t, unsigned int, struct iomap *); +}; + +struct trace_event_raw_dax_pmd_fault_class { + struct trace_entry ent; + long unsigned int ino; + long unsigned int vm_start; + long unsigned int vm_end; + vm_flags_t vm_flags; + long unsigned int address; + long unsigned int pgoff; + long unsigned int max_pgoff; + dev_t dev; + unsigned int flags; + int result; + char __data[0]; +}; + +struct trace_event_raw_dax_pmd_load_hole_class { + struct trace_entry ent; + long unsigned int ino; + vm_flags_t vm_flags; + long unsigned int address; + struct folio *zero_folio; + void *radix_entry; + dev_t dev; + char __data[0]; +}; + +struct trace_event_raw_dax_pte_fault_class { + struct trace_entry ent; + long unsigned int ino; + vm_flags_t vm_flags; + long unsigned int address; + long unsigned int pgoff; + dev_t dev; + unsigned int flags; + int result; + char __data[0]; +}; + +struct trace_event_raw_dax_writeback_range_class { + struct trace_entry ent; + long unsigned int ino; + long unsigned int start_index; + long unsigned int end_index; + dev_t dev; + char __data[0]; +}; + +struct trace_event_raw_dax_writeback_one { + struct trace_entry ent; + long unsigned int ino; + long unsigned int pgoff; + long unsigned int pglen; + dev_t dev; + char __data[0]; +}; + +struct trace_event_data_offsets_dax_pmd_fault_class {}; + +struct trace_event_data_offsets_dax_pmd_load_hole_class {}; + +struct trace_event_data_offsets_dax_pte_fault_class {}; + +struct trace_event_data_offsets_dax_writeback_range_class {}; + +struct trace_event_data_offsets_dax_writeback_one {}; + +typedef void (*btf_trace_dax_pmd_fault)(void *, struct inode *, struct vm_fault *, long unsigned int, int); + +typedef void (*btf_trace_dax_pmd_fault_done)(void *, struct inode *, struct vm_fault *, long unsigned int, int); + +typedef void (*btf_trace_dax_pmd_load_hole)(void *, struct inode *, struct vm_fault *, struct folio *, void *); + +typedef void (*btf_trace_dax_pmd_load_hole_fallback)(void *, struct inode *, struct vm_fault *, struct folio *, void *); + +typedef void (*btf_trace_dax_pte_fault)(void *, struct inode *, struct vm_fault *, int); + +typedef void (*btf_trace_dax_pte_fault_done)(void *, struct inode *, struct vm_fault *, int); + +typedef void (*btf_trace_dax_load_hole)(void *, struct inode *, struct vm_fault *, int); + +typedef void (*btf_trace_dax_insert_pfn_mkwrite_no_entry)(void *, struct inode *, struct vm_fault *, int); + +typedef void (*btf_trace_dax_insert_pfn_mkwrite)(void *, struct inode *, struct vm_fault *, int); + +typedef void (*btf_trace_dax_writeback_range)(void *, struct inode *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_dax_writeback_range_done)(void *, struct inode *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_dax_writeback_one)(void *, struct inode *, long unsigned int, long unsigned int); + +struct exceptional_entry_key { + struct xarray *xa; + long unsigned int entry_start; +}; + +struct wait_exceptional_entry_queue { + wait_queue_entry_t wait; + struct exceptional_entry_key key; +}; + +enum dax_wake_mode { + WAKE_ALL = 0, + WAKE_NEXT = 1, +}; + +typedef void (*crypto_completion_t)(void *, int); + +struct crypto_tfm; + +struct crypto_async_request { + struct list_head list; + crypto_completion_t complete; + void *data; + struct crypto_tfm *tfm; + u32 flags; +}; + +struct crypto_alg; + +struct crypto_tfm { + refcount_t refcnt; + u32 crt_flags; + int node; + struct crypto_tfm *fb; + void (*exit)(struct crypto_tfm *); + struct crypto_alg *__crt_alg; + void *__crt_ctx[0]; +}; + +struct cipher_alg { + unsigned int cia_min_keysize; + unsigned int cia_max_keysize; + int (*cia_setkey)(struct crypto_tfm *, const u8 *, unsigned int); + void (*cia_encrypt)(struct crypto_tfm *, u8 *, const u8 *); + void (*cia_decrypt)(struct crypto_tfm *, u8 *, const u8 *); +}; + +struct crypto_type; + +struct crypto_alg { + struct list_head cra_list; + struct list_head cra_users; + u32 cra_flags; + unsigned int cra_blocksize; + unsigned int cra_ctxsize; + unsigned int cra_alignmask; + unsigned int cra_reqsize; + int cra_priority; + refcount_t cra_refcnt; + char cra_name[128]; + char cra_driver_name[128]; + const struct crypto_type *cra_type; + union { + struct cipher_alg cipher; + } cra_u; + int (*cra_init)(struct crypto_tfm *); + void (*cra_exit)(struct crypto_tfm *); + void (*cra_destroy)(struct crypto_alg *); + struct module *cra_module; +}; + +struct crypto_instance; + +struct crypto_type { + unsigned int (*ctxsize)(struct crypto_alg *, u32, u32); + unsigned int (*extsize)(struct crypto_alg *); + int (*init_tfm)(struct crypto_tfm *); + void (*show)(struct seq_file *, struct crypto_alg *); + int (*report)(struct sk_buff *, struct crypto_alg *); + void (*free)(struct crypto_instance *); + void (*destroy)(struct crypto_alg *); + unsigned int type; + unsigned int maskclear; + unsigned int maskset; + unsigned int tfmsize; + unsigned int algsize; +}; + +struct skcipher_request { + unsigned int cryptlen; + u8 *iv; + struct scatterlist *src; + struct scatterlist *dst; + struct crypto_async_request base; + void *__ctx[0]; +}; + +struct crypto_skcipher { + unsigned int reqsize; + struct crypto_tfm base; +}; + +struct crypto_sync_skcipher { + struct crypto_skcipher base; +}; + +struct blk_crypto_key; + +struct fscrypt_prepared_key { + struct crypto_sync_skcipher *tfm; + struct blk_crypto_key *blk_key; +}; + +struct fscrypt_mode; + +struct fscrypt_master_key; + +struct fscrypt_direct_key; + +struct fscrypt_inode_info { + struct fscrypt_prepared_key ci_enc_key; + u8 ci_owns_key: 1; + u8 ci_inlinecrypt: 1; + u8 ci_dirhash_key_initialized: 1; + u8 ci_data_unit_bits; + u8 ci_data_units_per_block_bits; + u32 ci_hashed_ino; + struct fscrypt_mode *ci_mode; + struct inode *ci_inode; + struct fscrypt_master_key *ci_master_key; + struct list_head ci_master_key_link; + struct fscrypt_direct_key *ci_direct_key; + siphash_key_t ci_dirhash_key; + union fscrypt_policy ci_policy; + u8 ci_nonce[16]; +}; + +struct fscrypt_key { + __u32 mode; + __u8 raw[64]; + __u32 size; +}; + +struct fscrypt_key_specifier { + __u32 type; + __u32 __reserved; + union { + __u8 __reserved[32]; + __u8 descriptor[8]; + __u8 identifier[16]; + } u; +}; + +struct crypto_shash { + struct crypto_tfm base; +}; + +enum blk_crypto_mode_num { + BLK_ENCRYPTION_MODE_INVALID = 0, + BLK_ENCRYPTION_MODE_AES_256_XTS = 1, + BLK_ENCRYPTION_MODE_AES_128_CBC_ESSIV = 2, + BLK_ENCRYPTION_MODE_ADIANTUM = 3, + BLK_ENCRYPTION_MODE_SM4_XTS = 4, + BLK_ENCRYPTION_MODE_MAX = 5, +}; + +enum blk_crypto_key_type { + BLK_CRYPTO_KEY_TYPE_RAW = 1, + BLK_CRYPTO_KEY_TYPE_HW_WRAPPED = 2, +}; + +struct blk_crypto_config { + enum blk_crypto_mode_num crypto_mode; + unsigned int data_unit_size; + unsigned int dun_bytes; + enum blk_crypto_key_type key_type; +}; + +struct blk_crypto_key { + struct blk_crypto_config crypto_cfg; + unsigned int data_unit_size_bits; + unsigned int size; + u8 bytes[128]; +}; + +struct bio_crypt_ctx { + const struct blk_crypto_key *bc_key; + u64 bc_dun[4]; +}; + +struct fscrypt_mode { + const char *friendly_name; + const char *cipher_str; + int keysize; + int security_strength; + int ivsize; + int logged_cryptoapi_impl; + int logged_blk_crypto_native; + int logged_blk_crypto_fallback; + enum blk_crypto_mode_num blk_crypto_mode; +}; + +struct fscrypt_hkdf { + struct crypto_shash *hmac_tfm; +}; + +struct fscrypt_master_key_secret { + struct fscrypt_hkdf hkdf; + bool is_hw_wrapped; + u32 size; + u8 bytes[128]; +}; + +struct fscrypt_master_key { + struct hlist_node mk_node; + struct rw_semaphore mk_sem; + refcount_t mk_active_refs; + refcount_t mk_struct_refs; + struct callback_head mk_rcu_head; + struct fscrypt_master_key_secret mk_secret; + struct fscrypt_key_specifier mk_spec; + struct key *mk_users; + struct list_head mk_decrypted_inodes; + spinlock_t mk_decrypted_inodes_lock; + struct fscrypt_prepared_key mk_direct_keys[11]; + struct fscrypt_prepared_key mk_iv_ino_lblk_64_keys[11]; + struct fscrypt_prepared_key mk_iv_ino_lblk_32_keys[11]; + siphash_key_t mk_ino_hash_key; + bool mk_ino_hash_key_initialized; + bool mk_present; +}; + +struct fscrypt_direct_key { + struct super_block *dk_sb; + struct hlist_node dk_node; + refcount_t dk_refcount; + const struct fscrypt_mode *dk_mode; + struct fscrypt_prepared_key dk_key; + u8 dk_descriptor[8]; + u8 dk_raw[64]; +}; + +typedef __u32 __le32; + +typedef __u64 __le64; + +struct fsverity_hash_alg; + +union fsverity_hash_ctx; + +struct merkle_tree_params { + const struct fsverity_hash_alg *hash_alg; + const union fsverity_hash_ctx *hashstate; + unsigned int digest_size; + unsigned int block_size; + unsigned int hashes_per_block; + unsigned int blocks_per_page; + u8 log_digestsize; + u8 log_blocksize; + u8 log_arity; + u8 log_blocks_per_page; + unsigned int num_levels; + u64 tree_size; + long unsigned int tree_pages; + long unsigned int level_start[8]; +}; + +struct fsverity_info { + struct merkle_tree_params tree_params; + u8 root_hash[64]; + u8 file_digest[64]; + const struct inode *inode; + long unsigned int *hash_block_verified; +}; + +struct sha512_block_state { + u64 h[8]; +}; + +struct __sha512_ctx { + struct sha512_block_state state; + u64 bytecount_lo; + u64 bytecount_hi; + u8 buf[128]; +}; + +struct sha512_ctx { + struct __sha512_ctx ctx; +}; + +struct fsverity_enable_arg { + __u32 version; + __u32 hash_algorithm; + __u32 block_size; + __u32 salt_size; + __u64 salt_ptr; + __u32 sig_size; + __u32 __reserved1; + __u64 sig_ptr; + __u64 __reserved2[11]; +}; + +struct fsverity_descriptor { + __u8 version; + __u8 hash_algorithm; + __u8 log_blocksize; + __u8 salt_size; + __le32 sig_size; + __le64 data_size; + __u8 root_hash[64]; + __u8 salt[32]; + __u8 __reserved[144]; + __u8 signature[0]; +}; + +struct fsverity_hash_alg { + const char *name; + unsigned int digest_size; + unsigned int block_size; + enum hash_algo algo_id; +}; + +union fsverity_hash_ctx { + struct sha256_ctx sha256; + struct sha512_ctx sha512; +}; + +struct block_buffer { + u32 filled; + bool is_root_hash; + u8 *data; +}; + +typedef __u16 __le16; + +struct fsverity_formatted_digest { + char magic[8]; + __le16 digest_algorithm; + __le16 digest_size; + __u8 digest[0]; +}; + +struct backing_file_ctx { + const struct cred *cred; + void (*accessed)(struct file *); + void (*end_write)(struct kiocb *, ssize_t); +}; + +struct backing_aio { + struct kiocb iocb; + refcount_t ref; + struct kiocb *orig_iocb; + void (*end_write)(struct kiocb *, ssize_t); + struct work_struct work; + long int res; +}; + +struct posix_acl_hdr { + refcount_t a_refcount; + unsigned int a_count; + struct callback_head a_rcu; +}; + +struct posix_acl_entry { + short int e_tag; + short unsigned int e_perm; + union { + kuid_t e_uid; + kgid_t e_gid; + }; +}; + +struct posix_acl { + union { + struct { + refcount_t a_refcount; + unsigned int a_count; + struct callback_head a_rcu; + }; + struct posix_acl_hdr hdr; + }; + struct posix_acl_entry a_entries[0]; +}; + +struct posix_acl_xattr_entry { + __le16 e_tag; + __le16 e_perm; + __le32 e_id; +}; + +struct posix_acl_xattr_header { + __le32 a_version; +}; + +enum { + BIO_PAGE_PINNED = 0, + BIO_CLONED = 1, + BIO_QUIET = 2, + BIO_CHAIN = 3, + BIO_REFFED = 4, + BIO_BPS_THROTTLED = 5, + BIO_TRACE_COMPLETION = 6, + BIO_CGROUP_ACCT = 7, + BIO_QOS_THROTTLED = 8, + BIO_TG_BPS_THROTTLED = 8, + BIO_QOS_MERGED = 9, + BIO_REMAPPED = 10, + BIO_ZONE_WRITE_PLUGGING = 11, + BIO_EMULATES_ZONE_APPEND = 12, + BIO_FLAG_LAST = 13, +}; + +enum req_op { + REQ_OP_READ = 0, + REQ_OP_WRITE = 1, + REQ_OP_FLUSH = 2, + REQ_OP_DISCARD = 3, + REQ_OP_SECURE_ERASE = 5, + REQ_OP_ZONE_APPEND = 7, + REQ_OP_WRITE_ZEROES = 9, + REQ_OP_ZONE_OPEN = 11, + REQ_OP_ZONE_CLOSE = 13, + REQ_OP_ZONE_FINISH = 15, + REQ_OP_ZONE_RESET = 17, + REQ_OP_ZONE_RESET_ALL = 19, + REQ_OP_DRV_IN = 34, + REQ_OP_DRV_OUT = 35, + REQ_OP_LAST = 36, +}; + +enum req_flag_bits { + __REQ_FAILFAST_DEV = 8, + __REQ_FAILFAST_TRANSPORT = 9, + __REQ_FAILFAST_DRIVER = 10, + __REQ_SYNC = 11, + __REQ_META = 12, + __REQ_PRIO = 13, + __REQ_NOMERGE = 14, + __REQ_IDLE = 15, + __REQ_INTEGRITY = 16, + __REQ_FUA = 17, + __REQ_PREFLUSH = 18, + __REQ_RAHEAD = 19, + __REQ_BACKGROUND = 20, + __REQ_NOWAIT = 21, + __REQ_POLLED = 22, + __REQ_ALLOC_CACHE = 23, + __REQ_SWAP = 24, + __REQ_DRV = 25, + __REQ_FS_PRIVATE = 26, + __REQ_ATOMIC = 27, + __REQ_P2PDMA = 28, + __REQ_NOUNMAP = 29, + __REQ_NR_BITS = 30, +}; + +struct iomap_ioend { + struct list_head io_list; + u16 io_flags; + struct inode *io_inode; + size_t io_size; + atomic_t io_remaining; + int io_error; + struct iomap_ioend *io_parent; + loff_t io_offset; + sector_t io_sector; + void *io_private; + struct bio io_bio; +}; + +struct iomap_dio_ops { + int (*end_io)(struct kiocb *, ssize_t, int, unsigned int); + void (*submit_io)(const struct iomap_iter *, struct bio *, loff_t); + struct bio_set *bio_set; +}; + +struct iomap_dio { + struct kiocb *iocb; + const struct iomap_dio_ops *dops; + loff_t i_size; + loff_t size; + atomic_t ref; + unsigned int flags; + int error; + size_t done_before; + bool wait_for_completion; + union { + struct { + struct iov_iter *iter; + struct task_struct *waiter; + } submit; + struct { + struct work_struct work; + } aio; + }; +}; + +struct fiemap_extent; + +struct fiemap_extent_info { + unsigned int fi_flags; + unsigned int fi_extents_mapped; + unsigned int fi_extents_max; + struct fiemap_extent *fi_extents_start; +}; + +struct fiemap_extent { + __u64 fe_logical; + __u64 fe_physical; + __u64 fe_length; + __u64 fe_reserved64[2]; + __u32 fe_flags; + __u32 fe_reserved[3]; +}; + +enum { + QIF_BLIMITS_B = 0, + QIF_SPACE_B = 1, + QIF_ILIMITS_B = 2, + QIF_INODES_B = 3, + QIF_BTIME_B = 4, + QIF_ITIME_B = 5, +}; + +typedef __kernel_uid32_t qid_t; + +enum { + DQF_INFO_DIRTY_B = 17, +}; + +struct dqstats { + long unsigned int stat[8]; + struct percpu_counter counter[8]; +}; + +enum { + _DQUOT_USAGE_ENABLED = 0, + _DQUOT_LIMITS_ENABLED = 1, + _DQUOT_SUSPENDED = 2, + _DQUOT_STATE_FLAGS = 3, +}; + +struct quota_module_name { + int qm_fmt_id; + char *qm_mod_name; +}; + +struct dquot_warn { + struct super_block *w_sb; + struct kqid w_dq_id; + short int w_type; +}; + +enum procfs_ino { + PROCFS_ROOT_INO = 1, +}; + +struct proc_fs_context { + struct pid_namespace *pid_ns; + unsigned int mask; + enum proc_hidepid hidepid; + int gid; + enum proc_pidonly pidonly; +}; + +enum proc_param { + Opt_gid = 0, + Opt_hidepid = 1, + Opt_subset = 2, +}; + +struct kernel_cpustat { + u64 cpustat[11]; +}; + +typedef int (*parse_unknown_fn)(char *, char *, const char *, void *); + +enum { + NEIGH_ARP_TABLE = 0, + NEIGH_ND_TABLE = 1, + NEIGH_NR_TABLES = 2, + NEIGH_LINK_TABLE = 2, +}; + +enum { + NAPI_STATE_SCHED = 0, + NAPI_STATE_MISSED = 1, + NAPI_STATE_DISABLE = 2, + NAPI_STATE_NPSVC = 3, + NAPI_STATE_LISTED = 4, + NAPI_STATE_NO_BUSY_POLL = 5, + NAPI_STATE_IN_BUSY_POLL = 6, + NAPI_STATE_PREFER_BUSY_POLL = 7, + NAPI_STATE_THREADED = 8, + NAPI_STATE_SCHED_THREADED = 9, + NAPI_STATE_HAS_NOTIFIER = 10, +}; + +enum xps_map_type { + XPS_CPUS = 0, + XPS_RXQS = 1, + XPS_MAPS_MAX = 2, +}; + +enum bpf_xdp_mode { + XDP_MODE_SKB = 0, + XDP_MODE_DRV = 1, + XDP_MODE_HW = 2, + __MAX_XDP_MODE = 3, +}; + +enum { + NETIF_MSG_DRV_BIT = 0, + NETIF_MSG_PROBE_BIT = 1, + NETIF_MSG_LINK_BIT = 2, + NETIF_MSG_TIMER_BIT = 3, + NETIF_MSG_IFDOWN_BIT = 4, + NETIF_MSG_IFUP_BIT = 5, + NETIF_MSG_RX_ERR_BIT = 6, + NETIF_MSG_TX_ERR_BIT = 7, + NETIF_MSG_TX_QUEUED_BIT = 8, + NETIF_MSG_INTR_BIT = 9, + NETIF_MSG_TX_DONE_BIT = 10, + NETIF_MSG_RX_STATUS_BIT = 11, + NETIF_MSG_PKTDATA_BIT = 12, + NETIF_MSG_HW_BIT = 13, + NETIF_MSG_WOL_BIT = 14, + NETIF_MSG_CLASS_COUNT = 15, +}; + +struct sysctl_alias { + const char *kernel_param; + const char *sysctl_param; +}; + +enum kernfs_node_type { + KERNFS_DIR = 1, + KERNFS_FILE = 2, + KERNFS_LINK = 4, +}; + +enum kernfs_node_flag { + KERNFS_ACTIVATED = 16, + KERNFS_NS = 32, + KERNFS_HAS_SEQ_SHOW = 64, + KERNFS_HAS_MMAP = 128, + KERNFS_LOCKDEP = 256, + KERNFS_HIDDEN = 512, + KERNFS_SUICIDAL = 1024, + KERNFS_SUICIDED = 2048, + KERNFS_EMPTY_DIR = 4096, + KERNFS_HAS_RELEASE = 8192, + KERNFS_REMOVING = 16384, +}; + +enum kernfs_root_flag { + KERNFS_ROOT_CREATE_DEACTIVATED = 1, + KERNFS_ROOT_EXTRA_OPEN_PERM_CHECK = 2, + KERNFS_ROOT_SUPPORT_EXPORTOP = 4, + KERNFS_ROOT_SUPPORT_USER_XATTR = 8, + KERNFS_ROOT_INVARIANT_PARENT = 16, +}; + +struct kernfs_syscall_ops; + +struct kernfs_root { + struct kernfs_node *kn; + unsigned int flags; + struct idr ino_idr; + spinlock_t kernfs_idr_lock; + u32 last_id_lowbits; + u32 id_highbits; + struct kernfs_syscall_ops *syscall_ops; + struct list_head supers; + wait_queue_head_t deactivate_waitq; + struct rw_semaphore kernfs_rwsem; + struct rw_semaphore kernfs_iattr_rwsem; + struct rw_semaphore kernfs_supers_rwsem; + rwlock_t kernfs_rename_lock; + struct callback_head rcu; +}; + +struct kernfs_iattrs { + kuid_t ia_uid; + kgid_t ia_gid; + struct timespec64 ia_atime; + struct timespec64 ia_mtime; + struct timespec64 ia_ctime; + struct simple_xattrs xattrs; + atomic_t nr_user_xattrs; + atomic_t user_xattr_size; +}; + +struct kernfs_syscall_ops { + int (*show_options)(struct seq_file *, struct kernfs_root *); + int (*mkdir)(struct kernfs_node *, const char *, umode_t); + int (*rmdir)(struct kernfs_node *); + int (*rename)(struct kernfs_node *, struct kernfs_node *, const char *); + int (*show_path)(struct seq_file *, struct kernfs_node *, struct kernfs_root *); +}; + +struct kernfs_fs_context { + struct kernfs_root *root; + void *ns_tag; + long unsigned int magic; + bool new_sb_created; +}; + +struct module_version_attribute { + struct module_attribute mattr; + const char *module_name; + const char *version; +}; + +struct configfs_fragment { + atomic_t frag_count; + struct rw_semaphore frag_sem; + bool frag_dead; +}; + +struct configfs_dirent { + atomic_t s_count; + int s_dependent_count; + struct list_head s_sibling; + struct list_head s_children; + int s_links; + void *s_element; + int s_type; + umode_t s_mode; + struct dentry *s_dentry; + struct iattr *s_iattr; + struct configfs_fragment *s_frag; +}; + +typedef unsigned int tid_t; + +struct transaction_chp_stats_s { + long unsigned int cs_chp_time; + __u32 cs_forced_to_close; + __u32 cs_written; + __u32 cs_dropped; +}; + +struct journal_s; + +typedef struct journal_s journal_t; + +struct journal_head; + +struct transaction_s; + +typedef struct transaction_s transaction_t; + +struct transaction_s { + journal_t *t_journal; + tid_t t_tid; + enum { + T_RUNNING = 0, + T_LOCKED = 1, + T_SWITCH = 2, + T_FLUSH = 3, + T_COMMIT = 4, + T_COMMIT_DFLUSH = 5, + T_COMMIT_JFLUSH = 6, + T_COMMIT_CALLBACK = 7, + T_FINISHED = 8, + } t_state; + long unsigned int t_log_start; + int t_nr_buffers; + struct journal_head *t_reserved_list; + struct journal_head *t_buffers; + struct journal_head *t_forget; + struct journal_head *t_checkpoint_list; + struct journal_head *t_shadow_list; + struct list_head t_inode_list; + long unsigned int t_max_wait; + long unsigned int t_start; + long unsigned int t_requested; + struct transaction_chp_stats_s t_chp_stats; + atomic_t t_updates; + atomic_t t_outstanding_credits; + atomic_t t_outstanding_revokes; + atomic_t t_handle_count; + transaction_t *t_cpnext; + transaction_t *t_cpprev; + long unsigned int t_expires; + ktime_t t_start_time; + unsigned int t_synchronous_commit: 1; + int t_need_data_flush; +}; + +struct jbd2_buffer_trigger_type; + +struct journal_head { + struct buffer_head *b_bh; + spinlock_t b_state_lock; + int b_jcount; + unsigned int b_jlist; + unsigned int b_modified; + char *b_frozen_data; + char *b_committed_data; + transaction_t *b_transaction; + transaction_t *b_next_transaction; + struct journal_head *b_tnext; + struct journal_head *b_tprev; + transaction_t *b_cp_transaction; + struct journal_head *b_cpnext; + struct journal_head *b_cpprev; + struct jbd2_buffer_trigger_type *b_triggers; + struct jbd2_buffer_trigger_type *b_frozen_triggers; +}; + +struct jbd2_buffer_trigger_type { + void (*t_frozen)(struct jbd2_buffer_trigger_type *, struct buffer_head *, void *, size_t); + void (*t_abort)(struct jbd2_buffer_trigger_type *, struct buffer_head *); +}; + +struct jbd2_journal_handle; + +typedef struct jbd2_journal_handle handle_t; + +struct jbd2_journal_handle { + union { + transaction_t *h_transaction; + journal_t *h_journal; + }; + handle_t *h_rsv_handle; + int h_total_credits; + int h_revoke_credits; + int h_revoke_credits_requested; + int h_ref; + int h_err; + unsigned int h_sync: 1; + unsigned int h_reserved: 1; + unsigned int h_aborted: 1; + unsigned int h_type: 8; + unsigned int h_line_no: 16; + long unsigned int h_start_jiffies; + unsigned int h_requested_credits; + unsigned int saved_alloc_context; +}; + +struct transaction_run_stats_s { + long unsigned int rs_wait; + long unsigned int rs_request_delay; + long unsigned int rs_running; + long unsigned int rs_locked; + long unsigned int rs_flushing; + long unsigned int rs_logging; + __u32 rs_handle_count; + __u32 rs_blocks; + __u32 rs_blocks_logged; +}; + +struct transaction_stats_s { + long unsigned int ts_tid; + long unsigned int ts_requested; + struct transaction_run_stats_s run; +}; + +enum passtype { + PASS_SCAN = 0, + PASS_REVOKE = 1, + PASS_REPLAY = 2, +}; + +struct journal_superblock_s; + +typedef struct journal_superblock_s journal_superblock_t; + +struct jbd2_revoke_table_s; + +struct jbd2_inode; + +struct journal_s { + long unsigned int j_flags; + int j_errno; + struct mutex j_abort_mutex; + struct buffer_head *j_sb_buffer; + journal_superblock_t *j_superblock; + rwlock_t j_state_lock; + int j_barrier_count; + struct mutex j_barrier; + transaction_t *j_running_transaction; + transaction_t *j_committing_transaction; + transaction_t *j_checkpoint_transactions; + wait_queue_head_t j_wait_transaction_locked; + wait_queue_head_t j_wait_done_commit; + wait_queue_head_t j_wait_commit; + wait_queue_head_t j_wait_updates; + wait_queue_head_t j_wait_reserved; + wait_queue_head_t j_fc_wait; + struct mutex j_checkpoint_mutex; + struct buffer_head *j_chkpt_bhs[64]; + struct shrinker *j_shrinker; + struct percpu_counter j_checkpoint_jh_count; + transaction_t *j_shrink_transaction; + long unsigned int j_head; + long unsigned int j_tail; + long unsigned int j_free; + long unsigned int j_first; + long unsigned int j_last; + long unsigned int j_fc_first; + long unsigned int j_fc_off; + long unsigned int j_fc_last; + struct block_device *j_dev; + int j_blocksize; + long long unsigned int j_blk_offset; + char j_devname[56]; + struct block_device *j_fs_dev; + errseq_t j_fs_dev_wb_err; + unsigned int j_total_len; + atomic_t j_reserved_credits; + spinlock_t j_list_lock; + struct inode *j_inode; + tid_t j_tail_sequence; + tid_t j_transaction_sequence; + tid_t j_commit_sequence; + tid_t j_commit_request; + __u8 j_uuid[16]; + struct task_struct *j_task; + int j_max_transaction_buffers; + int j_revoke_records_per_block; + int j_transaction_overhead_buffers; + long unsigned int j_commit_interval; + struct timer_list j_commit_timer; + spinlock_t j_revoke_lock; + struct jbd2_revoke_table_s *j_revoke; + struct jbd2_revoke_table_s *j_revoke_table[2]; + struct buffer_head **j_wbuf; + struct buffer_head **j_fc_wbuf; + int j_wbufsize; + int j_fc_wbufsize; + pid_t j_last_sync_writer; + u64 j_average_commit_time; + u32 j_min_batch_time; + u32 j_max_batch_time; + void (*j_commit_callback)(journal_t *, transaction_t *); + int (*j_submit_inode_data_buffers)(struct jbd2_inode *); + int (*j_finish_inode_data_buffers)(struct jbd2_inode *); + spinlock_t j_history_lock; + struct proc_dir_entry *j_proc_entry; + struct transaction_stats_s j_stats; + unsigned int j_failed_commit; + void *j_private; + __u32 j_csum_seed; + struct lock_class_key jbd2_trans_commit_key; + void (*j_fc_cleanup_callback)(struct journal_s *, int, tid_t); + int (*j_fc_replay_callback)(struct journal_s *, struct buffer_head *, enum passtype, int, tid_t); + int (*j_bmap)(struct journal_s *, sector_t *); +}; + +struct journal_header_s { + __be32 h_magic; + __be32 h_blocktype; + __be32 h_sequence; +}; + +typedef struct journal_header_s journal_header_t; + +struct journal_superblock_s { + journal_header_t s_header; + __be32 s_blocksize; + __be32 s_maxlen; + __be32 s_first; + __be32 s_sequence; + __be32 s_start; + __be32 s_errno; + __be32 s_feature_compat; + __be32 s_feature_incompat; + __be32 s_feature_ro_compat; + __u8 s_uuid[16]; + __be32 s_nr_users; + __be32 s_dynsuper; + __be32 s_max_transaction; + __be32 s_max_trans_data; + __u8 s_checksum_type; + __u8 s_padding2[3]; + __be32 s_num_fc_blks; + __be32 s_head; + __u32 s_padding[40]; + __be32 s_checksum; + __u8 s_users[768]; +}; + +struct jbd2_inode { + transaction_t *i_transaction; + transaction_t *i_next_transaction; + struct list_head i_list; + struct inode *i_vfs_inode; + long unsigned int i_flags; + loff_t i_dirty_start; + loff_t i_dirty_end; +}; + +struct bgl_lock { + spinlock_t lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct blockgroup_lock { + struct bgl_lock locks[128]; +}; + +struct fscrypt_dummy_policy { + const union fscrypt_policy *policy; +}; + +typedef int ext4_grpblk_t; + +typedef long long unsigned int ext4_fsblk_t; + +typedef __u32 ext4_lblk_t; + +typedef unsigned int ext4_group_t; + +struct ext4_map_blocks { + ext4_fsblk_t m_pblk; + ext4_lblk_t m_lblk; + unsigned int m_len; + unsigned int m_flags; +}; + +struct ext4_system_blocks { + struct rb_root root; + struct callback_head rcu; +}; + +struct ext4_group_desc { + __le32 bg_block_bitmap_lo; + __le32 bg_inode_bitmap_lo; + __le32 bg_inode_table_lo; + __le16 bg_free_blocks_count_lo; + __le16 bg_free_inodes_count_lo; + __le16 bg_used_dirs_count_lo; + __le16 bg_flags; + __le32 bg_exclude_bitmap_lo; + __le16 bg_block_bitmap_csum_lo; + __le16 bg_inode_bitmap_csum_lo; + __le16 bg_itable_unused_lo; + __le16 bg_checksum; + __le32 bg_block_bitmap_hi; + __le32 bg_inode_bitmap_hi; + __le32 bg_inode_table_hi; + __le16 bg_free_blocks_count_hi; + __le16 bg_free_inodes_count_hi; + __le16 bg_used_dirs_count_hi; + __le16 bg_itable_unused_hi; + __le32 bg_exclude_bitmap_hi; + __le16 bg_block_bitmap_csum_hi; + __le16 bg_inode_bitmap_csum_hi; + __u32 bg_reserved; +}; + +struct flex_groups { + atomic64_t free_clusters; + atomic_t free_inodes; + atomic_t used_dirs; +}; + +struct ext4_es_stats { + long unsigned int es_stats_shrunk; + struct percpu_counter es_stats_cache_hits; + struct percpu_counter es_stats_cache_misses; + u64 es_stats_scan_time; + u64 es_stats_max_scan_time; + struct percpu_counter es_stats_all_cnt; + struct percpu_counter es_stats_shk_cnt; +}; + +struct ext4_fc_stats { + unsigned int fc_ineligible_reason_count[10]; + long unsigned int fc_num_commits; + long unsigned int fc_ineligible_commits; + long unsigned int fc_failed_commits; + long unsigned int fc_skipped_commits; + long unsigned int fc_numblks; + u64 s_fc_avg_commit_time; +}; + +struct ext4_fc_alloc_region { + ext4_lblk_t lblk; + ext4_fsblk_t pblk; + int ino; + int len; +}; + +struct ext4_fc_replay_state { + int fc_replay_num_tags; + int fc_replay_expected_off; + int fc_current_pass; + int fc_cur_tag; + int fc_crc; + struct ext4_fc_alloc_region *fc_regions; + int fc_regions_size; + int fc_regions_used; + int fc_regions_valid; + int *fc_modified_inodes; + int fc_modified_inodes_used; + int fc_modified_inodes_size; +}; + +struct ext4_super_block { + __le32 s_inodes_count; + __le32 s_blocks_count_lo; + __le32 s_r_blocks_count_lo; + __le32 s_free_blocks_count_lo; + __le32 s_free_inodes_count; + __le32 s_first_data_block; + __le32 s_log_block_size; + __le32 s_log_cluster_size; + __le32 s_blocks_per_group; + __le32 s_clusters_per_group; + __le32 s_inodes_per_group; + __le32 s_mtime; + __le32 s_wtime; + __le16 s_mnt_count; + __le16 s_max_mnt_count; + __le16 s_magic; + __le16 s_state; + __le16 s_errors; + __le16 s_minor_rev_level; + __le32 s_lastcheck; + __le32 s_checkinterval; + __le32 s_creator_os; + __le32 s_rev_level; + __le16 s_def_resuid; + __le16 s_def_resgid; + __le32 s_first_ino; + __le16 s_inode_size; + __le16 s_block_group_nr; + __le32 s_feature_compat; + __le32 s_feature_incompat; + __le32 s_feature_ro_compat; + __u8 s_uuid[16]; + char s_volume_name[16]; + char s_last_mounted[64]; + __le32 s_algorithm_usage_bitmap; + __u8 s_prealloc_blocks; + __u8 s_prealloc_dir_blocks; + __le16 s_reserved_gdt_blocks; + __u8 s_journal_uuid[16]; + __le32 s_journal_inum; + __le32 s_journal_dev; + __le32 s_last_orphan; + __le32 s_hash_seed[4]; + __u8 s_def_hash_version; + __u8 s_jnl_backup_type; + __le16 s_desc_size; + __le32 s_default_mount_opts; + __le32 s_first_meta_bg; + __le32 s_mkfs_time; + __le32 s_jnl_blocks[17]; + __le32 s_blocks_count_hi; + __le32 s_r_blocks_count_hi; + __le32 s_free_blocks_count_hi; + __le16 s_min_extra_isize; + __le16 s_want_extra_isize; + __le32 s_flags; + __le16 s_raid_stride; + __le16 s_mmp_update_interval; + __le64 s_mmp_block; + __le32 s_raid_stripe_width; + __u8 s_log_groups_per_flex; + __u8 s_checksum_type; + __u8 s_encryption_level; + __u8 s_reserved_pad; + __le64 s_kbytes_written; + __le32 s_snapshot_inum; + __le32 s_snapshot_id; + __le64 s_snapshot_r_blocks_count; + __le32 s_snapshot_list; + __le32 s_error_count; + __le32 s_first_error_time; + __le32 s_first_error_ino; + __le64 s_first_error_block; + __u8 s_first_error_func[32]; + __le32 s_first_error_line; + __le32 s_last_error_time; + __le32 s_last_error_ino; + __le32 s_last_error_line; + __le64 s_last_error_block; + __u8 s_last_error_func[32]; + __u8 s_mount_opts[64]; + __le32 s_usr_quota_inum; + __le32 s_grp_quota_inum; + __le32 s_overhead_clusters; + __le32 s_backup_bgs[2]; + __u8 s_encrypt_algos[4]; + __u8 s_encrypt_pw_salt[16]; + __le32 s_lpf_ino; + __le32 s_prj_quota_inum; + __le32 s_checksum_seed; + __u8 s_wtime_hi; + __u8 s_mtime_hi; + __u8 s_mkfs_time_hi; + __u8 s_lastcheck_hi; + __u8 s_first_error_time_hi; + __u8 s_last_error_time_hi; + __u8 s_first_error_errcode; + __u8 s_last_error_errcode; + __le16 s_encoding; + __le16 s_encoding_flags; + __le32 s_orphan_file_inum; + __le32 s_reserved[94]; + __le32 s_checksum; +}; + +struct ext4_journal_trigger { + struct jbd2_buffer_trigger_type tr_triggers; + struct super_block *sb; +}; + +struct ext4_orphan_block { + atomic_t ob_free_entries; + struct buffer_head *ob_bh; +}; + +struct ext4_orphan_info { + int of_blocks; + __u32 of_csum_seed; + struct ext4_orphan_block *of_binfo; +}; + +struct ext4_group_info; + +struct ext4_locality_group; + +struct ext4_li_request; + +struct mb_cache; + +struct ext4_sb_info { + long unsigned int s_desc_size; + long unsigned int s_inodes_per_block; + long unsigned int s_blocks_per_group; + long unsigned int s_clusters_per_group; + long unsigned int s_inodes_per_group; + long unsigned int s_itb_per_group; + long unsigned int s_gdb_count; + long unsigned int s_desc_per_block; + ext4_group_t s_groups_count; + ext4_group_t s_blockfile_groups; + long unsigned int s_overhead; + unsigned int s_cluster_ratio; + unsigned int s_cluster_bits; + loff_t s_bitmap_maxbytes; + struct buffer_head *s_sbh; + struct ext4_super_block *s_es; + struct buffer_head **s_group_desc; + unsigned int s_mount_opt; + unsigned int s_mount_opt2; + long unsigned int s_mount_flags; + unsigned int s_def_mount_opt; + unsigned int s_def_mount_opt2; + ext4_fsblk_t s_sb_block; + atomic64_t s_resv_clusters; + kuid_t s_resuid; + kgid_t s_resgid; + short unsigned int s_mount_state; + short unsigned int s_pad; + int s_addr_per_block_bits; + int s_desc_per_block_bits; + int s_inode_size; + int s_first_ino; + unsigned int s_inode_readahead_blks; + unsigned int s_inode_goal; + u32 s_hash_seed[4]; + int s_def_hash_version; + int s_hash_unsigned; + struct percpu_counter s_freeclusters_counter; + struct percpu_counter s_freeinodes_counter; + struct percpu_counter s_dirs_counter; + struct percpu_counter s_dirtyclusters_counter; + struct percpu_counter s_sra_exceeded_retry_limit; + struct blockgroup_lock *s_blockgroup_lock; + struct proc_dir_entry *s_proc; + struct kobject s_kobj; + struct completion s_kobj_unregister; + struct super_block *s_sb; + struct buffer_head *s_mmp_bh; + struct journal_s *s_journal; + long unsigned int s_ext4_flags; + struct mutex s_orphan_lock; + struct list_head s_orphan; + struct ext4_orphan_info s_orphan_info; + long unsigned int s_commit_interval; + u32 s_max_batch_time; + u32 s_min_batch_time; + struct file *s_journal_bdev_file; + char *s_qf_names[3]; + int s_jquota_fmt; + unsigned int s_want_extra_isize; + struct ext4_system_blocks *s_system_blks; + struct ext4_group_info ***s_group_info; + struct inode *s_buddy_cache; + spinlock_t s_md_lock; + short unsigned int *s_mb_offsets; + unsigned int *s_mb_maxs; + unsigned int s_group_info_size; + atomic_t s_mb_free_pending; + struct list_head s_freed_data_list[2]; + struct list_head s_discard_list; + struct work_struct s_discard_work; + atomic_t s_retry_alloc_pending; + struct xarray *s_mb_avg_fragment_size; + struct xarray *s_mb_largest_free_orders; + long unsigned int s_stripe; + unsigned int s_mb_max_linear_groups; + unsigned int s_mb_stream_request; + unsigned int s_mb_max_to_scan; + unsigned int s_mb_min_to_scan; + unsigned int s_mb_stats; + unsigned int s_mb_order2_reqs; + unsigned int s_mb_group_prealloc; + unsigned int s_max_dir_size_kb; + unsigned int s_mb_prefetch; + unsigned int s_mb_prefetch_limit; + unsigned int s_mb_best_avail_max_trim_order; + unsigned int s_sb_update_sec; + unsigned int s_sb_update_kb; + ext4_group_t *s_mb_last_groups; + unsigned int s_mb_nr_global_goals; + atomic_t s_bal_reqs; + atomic_t s_bal_success; + atomic_t s_bal_allocated; + atomic_t s_bal_ex_scanned; + atomic_t s_bal_cX_ex_scanned[5]; + atomic_t s_bal_groups_scanned; + atomic_t s_bal_goals; + atomic_t s_bal_stream_goals; + atomic_t s_bal_len_goals; + atomic_t s_bal_breaks; + atomic_t s_bal_2orders; + atomic64_t s_bal_cX_groups_considered[5]; + atomic64_t s_bal_cX_hits[5]; + atomic64_t s_bal_cX_failed[5]; + atomic_t s_mb_buddies_generated; + atomic64_t s_mb_generation_time; + atomic_t s_mb_lost_chunks; + atomic_t s_mb_preallocated; + atomic_t s_mb_discarded; + atomic_t s_lock_busy; + struct ext4_locality_group *s_locality_groups; + long unsigned int s_sectors_written_start; + u64 s_kbytes_written; + unsigned int s_extent_max_zeroout_kb; + unsigned int s_log_groups_per_flex; + struct flex_groups **s_flex_groups; + ext4_group_t s_flex_groups_allocated; + struct workqueue_struct *rsv_conversion_wq; + struct timer_list s_err_report; + struct ext4_li_request *s_li_request; + unsigned int s_li_wait_mult; + struct task_struct *s_mmp_tsk; + long unsigned int s_last_trim_minblks; + __u32 s_csum_seed; + struct shrinker *s_es_shrinker; + struct list_head s_es_list; + long int s_es_nr_inode; + struct ext4_es_stats s_es_stats; + struct mb_cache *s_ea_block_cache; + struct mb_cache *s_ea_inode_cache; + long: 64; + long: 64; + long: 64; + long: 64; + spinlock_t s_es_lock; + struct ext4_journal_trigger s_journal_triggers[1]; + struct ratelimit_state s_err_ratelimit_state; + struct ratelimit_state s_warning_ratelimit_state; + struct ratelimit_state s_msg_ratelimit_state; + atomic_t s_warning_count; + atomic_t s_msg_count; + struct fscrypt_dummy_policy s_dummy_enc_policy; + struct percpu_rw_semaphore s_writepages_rwsem; + struct dax_device *s_daxdev; + u64 s_dax_part_off; + errseq_t s_bdev_wb_err; + spinlock_t s_bdev_wb_lock; + spinlock_t s_error_lock; + int s_add_error_count; + int s_first_error_code; + __u32 s_first_error_line; + __u32 s_first_error_ino; + __u64 s_first_error_block; + const char *s_first_error_func; + time64_t s_first_error_time; + int s_last_error_code; + __u32 s_last_error_line; + __u32 s_last_error_ino; + __u64 s_last_error_block; + const char *s_last_error_func; + time64_t s_last_error_time; + struct work_struct s_sb_upd_work; + unsigned int s_awu_min; + unsigned int s_awu_max; + atomic_t s_fc_subtid; + struct list_head s_fc_q[2]; + struct list_head s_fc_dentry_q[2]; + unsigned int s_fc_bytes; + struct mutex s_fc_lock; + struct buffer_head *s_fc_bh; + struct ext4_fc_stats s_fc_stats; + tid_t s_fc_ineligible_tid; + struct ext4_fc_replay_state s_fc_replay_state; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct ext4_group_info { + long unsigned int bb_state; + struct rb_root bb_free_root; + ext4_grpblk_t bb_first_free; + ext4_grpblk_t bb_free; + ext4_grpblk_t bb_fragments; + int bb_avg_fragment_size_order; + ext4_grpblk_t bb_largest_free_order; + ext4_group_t bb_group; + struct list_head bb_prealloc_list; + struct rw_semaphore alloc_sem; + ext4_grpblk_t bb_counters[0]; +}; + +enum ext4_li_mode { + EXT4_LI_MODE_PREFETCH_BBITMAP = 0, + EXT4_LI_MODE_ITABLE = 1, +}; + +struct ext4_li_request { + struct super_block *lr_super; + enum ext4_li_mode lr_mode; + ext4_group_t lr_first_not_zeroed; + ext4_group_t lr_next_group; + struct list_head lr_request; + long unsigned int lr_next_sched; + long unsigned int lr_timeout; +}; + +typedef enum { + EXT4_IGET_NORMAL = 0, + EXT4_IGET_SPECIAL = 1, + EXT4_IGET_HANDLE = 2, + EXT4_IGET_BAD = 4, + EXT4_IGET_EA_INODE = 8, +} ext4_iget_flags; + +struct ext4_system_zone { + struct rb_node node; + ext4_fsblk_t start_blk; + unsigned int count; + u32 ino; +}; + +enum { + ES_WRITTEN_B = 0, + ES_UNWRITTEN_B = 1, + ES_DELAYED_B = 2, + ES_HOLE_B = 3, + ES_REFERENCED_B = 4, + ES_FLAGS = 5, +}; + +struct extent_status { + struct rb_node rb_node; + ext4_lblk_t es_lblk; + ext4_lblk_t es_len; + ext4_fsblk_t es_pblk; +}; + +struct ext4_es_tree { + struct rb_root root; + struct extent_status *cache_es; +}; + +struct pending_reservation { + struct rb_node rb_node; + ext4_lblk_t lclu; +}; + +struct ext4_pending_tree { + struct rb_root root; +}; + +struct ext4_inode_info { + __le32 i_data[15]; + __u32 i_dtime; + ext4_fsblk_t i_file_acl; + ext4_group_t i_block_group; + ext4_lblk_t i_dir_start_lookup; + long unsigned int i_flags; + struct rw_semaphore xattr_sem; + union { + struct list_head i_orphan; + unsigned int i_orphan_idx; + }; + struct list_head i_fc_dilist; + struct list_head i_fc_list; + ext4_lblk_t i_fc_lblk_start; + ext4_lblk_t i_fc_lblk_len; + spinlock_t i_raw_lock; + wait_queue_head_t i_fc_wait; + spinlock_t i_fc_lock; + loff_t i_disksize; + struct rw_semaphore i_data_sem; + struct inode vfs_inode; + struct jbd2_inode *jinode; + struct timespec64 i_crtime; + atomic_t i_prealloc_active; + unsigned int i_reserved_data_blocks; + struct rb_root i_prealloc_node; + rwlock_t i_prealloc_lock; + struct ext4_es_tree i_es_tree; + rwlock_t i_es_lock; + struct list_head i_es_list; + unsigned int i_es_all_nr; + unsigned int i_es_shk_nr; + ext4_lblk_t i_es_shrink_lblk; + ext4_group_t i_last_alloc_group; + struct ext4_pending_tree i_pending_tree; + __u16 i_extra_isize; + u16 i_inline_off; + u16 i_inline_size; + qsize_t i_reserved_quota; + spinlock_t i_block_reservation_lock; + spinlock_t i_completed_io_lock; + struct list_head i_rsv_conversion_list; + struct work_struct i_rsv_conversion_work; + tid_t i_sync_tid; + tid_t i_datasync_tid; + struct dquot *i_dquot[3]; + __u32 i_csum_seed; + kprojid_t i_projid; +}; + +enum { + EXT4_STATE_NEW = 0, + EXT4_STATE_XATTR = 1, + EXT4_STATE_NO_EXPAND = 2, + EXT4_STATE_DA_ALLOC_CLOSE = 3, + EXT4_STATE_EXT_MIGRATE = 4, + EXT4_STATE_NEWENTRY = 5, + EXT4_STATE_MAY_INLINE_DATA = 6, + EXT4_STATE_EXT_PRECACHED = 7, + EXT4_STATE_LUSTRE_EA_INODE = 8, + EXT4_STATE_VERITY_IN_PROGRESS = 9, + EXT4_STATE_FC_COMMITTING = 10, + EXT4_STATE_FC_FLUSHING_DATA = 11, + EXT4_STATE_ORPHAN_FILE = 12, +}; + +struct rsvd_count { + int ndelayed; + bool first_do_lblk_found; + ext4_lblk_t first_do_lblk; + ext4_lblk_t last_do_lblk; + struct extent_status *left_es; + bool partial; + ext4_lblk_t lclu; +}; + +struct dx_hash_info { + u32 hash; + u32 minor_hash; + int hash_version; + u32 *seed; +}; + +typedef int get_block_t(struct inode *, sector_t, struct buffer_head *, int); + +enum criteria { + CR_POWER2_ALIGNED = 0, + CR_GOAL_LEN_FAST = 1, + CR_BEST_AVAIL_LEN = 2, + CR_GOAL_LEN_SLOW = 3, + CR_ANY_FREE = 4, + EXT4_MB_NUM_CRS = 5, +}; + +enum { + EXT4_INODE_SECRM = 0, + EXT4_INODE_UNRM = 1, + EXT4_INODE_COMPR = 2, + EXT4_INODE_SYNC = 3, + EXT4_INODE_IMMUTABLE = 4, + EXT4_INODE_APPEND = 5, + EXT4_INODE_NODUMP = 6, + EXT4_INODE_NOATIME = 7, + EXT4_INODE_DIRTY = 8, + EXT4_INODE_COMPRBLK = 9, + EXT4_INODE_NOCOMPR = 10, + EXT4_INODE_ENCRYPT = 11, + EXT4_INODE_INDEX = 12, + EXT4_INODE_IMAGIC = 13, + EXT4_INODE_JOURNAL_DATA = 14, + EXT4_INODE_NOTAIL = 15, + EXT4_INODE_DIRSYNC = 16, + EXT4_INODE_TOPDIR = 17, + EXT4_INODE_HUGE_FILE = 18, + EXT4_INODE_EXTENTS = 19, + EXT4_INODE_VERITY = 20, + EXT4_INODE_EA_INODE = 21, + EXT4_INODE_DAX = 25, + EXT4_INODE_INLINE_DATA = 28, + EXT4_INODE_PROJINHERIT = 29, + EXT4_INODE_CASEFOLD = 30, + EXT4_INODE_RESERVED = 31, +}; + +struct ext4_inode { + __le16 i_mode; + __le16 i_uid; + __le32 i_size_lo; + __le32 i_atime; + __le32 i_ctime; + __le32 i_mtime; + __le32 i_dtime; + __le16 i_gid; + __le16 i_links_count; + __le32 i_blocks_lo; + __le32 i_flags; + union { + struct { + __le32 l_i_version; + } linux1; + struct { + __u32 h_i_translator; + } hurd1; + struct { + __u32 m_i_reserved1; + } masix1; + } osd1; + __le32 i_block[15]; + __le32 i_generation; + __le32 i_file_acl_lo; + __le32 i_size_high; + __le32 i_obso_faddr; + union { + struct { + __le16 l_i_blocks_high; + __le16 l_i_file_acl_high; + __le16 l_i_uid_high; + __le16 l_i_gid_high; + __le16 l_i_checksum_lo; + __le16 l_i_reserved; + } linux2; + struct { + __le16 h_i_reserved1; + __u16 h_i_mode_high; + __u16 h_i_uid_high; + __u16 h_i_gid_high; + __u32 h_i_author; + } hurd2; + struct { + __le16 h_i_reserved1; + __le16 m_i_file_acl_high; + __u32 m_i_reserved2[2]; + } masix2; + } osd2; + __le16 i_extra_isize; + __le16 i_checksum_hi; + __le32 i_ctime_extra; + __le32 i_mtime_extra; + __le32 i_atime_extra; + __le32 i_crtime; + __le32 i_crtime_extra; + __le32 i_version_hi; + __le32 i_projid; +}; + +enum { + EXT4_FC_REASON_XATTR = 0, + EXT4_FC_REASON_CROSS_RENAME = 1, + EXT4_FC_REASON_JOURNAL_FLAG_CHANGE = 2, + EXT4_FC_REASON_NOMEM = 3, + EXT4_FC_REASON_SWAP_BOOT = 4, + EXT4_FC_REASON_RESIZE = 5, + EXT4_FC_REASON_RENAME_DIR = 6, + EXT4_FC_REASON_FALLOC_RANGE = 7, + EXT4_FC_REASON_INODE_JOURNAL_DATA = 8, + EXT4_FC_REASON_ENCRYPTED_FILENAME = 9, + EXT4_FC_REASON_MAX = 10, +}; + +enum ext4_journal_trigger_type { + EXT4_JTR_ORPHAN_FILE = 0, + EXT4_JTR_NONE = 1, +}; + +enum { + EXT4_FLAGS_RESIZING = 0, + EXT4_FLAGS_SHUTDOWN = 1, + EXT4_FLAGS_BDEV_IS_DAX = 2, + EXT4_FLAGS_EMERGENCY_RO = 3, +}; + +struct ext4_dir_entry_hash { + __le32 hash; + __le32 minor_hash; +}; + +struct ext4_dir_entry_2 { + __le32 inode; + __le16 rec_len; + __u8 name_len; + __u8 file_type; + char name[255]; +}; + +struct ext4_filename { + const struct qstr *usr_fname; + struct fscrypt_str disk_name; + struct dx_hash_info hinfo; + struct fscrypt_str crypto_buf; + struct qstr cf_name; +}; + +struct ext4_iloc { + struct buffer_head *bh; + long unsigned int offset; + ext4_group_t block_group; +}; + +struct fname; + +struct dir_private_info { + struct rb_root root; + struct rb_node *curr_node; + struct fname *extra_fname; + loff_t last_pos; + __u32 curr_hash; + __u32 curr_minor_hash; + __u32 next_hash; + u64 cookie; + bool initialized; +}; + +struct ext4_xattr_ibody_header { + __le32 h_magic; +}; + +struct ext4_xattr_entry { + __u8 e_name_len; + __u8 e_name_index; + __le16 e_value_offs; + __le32 e_value_inum; + __le32 e_value_size; + __le32 e_hash; + char e_name[0]; +}; + +struct ext4_xattr_info { + const char *name; + const void *value; + size_t value_len; + int name_index; + int in_inode; +}; + +struct ext4_xattr_search { + struct ext4_xattr_entry *first; + void *base; + void *end; + struct ext4_xattr_entry *here; + int not_found; +}; + +struct ext4_xattr_ibody_find { + struct ext4_xattr_search s; + struct ext4_iloc iloc; +}; + +struct ext4_extent { + __le32 ee_block; + __le16 ee_len; + __le16 ee_start_hi; + __le32 ee_start_lo; +}; + +struct ext4_extent_idx { + __le32 ei_block; + __le32 ei_leaf_lo; + __le16 ei_leaf_hi; + __u16 ei_unused; +}; + +struct ext4_extent_header { + __le16 eh_magic; + __le16 eh_entries; + __le16 eh_max; + __le16 eh_depth; + __le32 eh_generation; +}; + +struct ext4_ext_path { + ext4_fsblk_t p_block; + __u16 p_depth; + __u16 p_maxdepth; + struct ext4_extent *p_ext; + struct ext4_extent_idx *p_idx; + struct ext4_extent_header *p_hdr; + struct buffer_head *p_bh; +}; + +struct migrate_struct { + ext4_lblk_t first_block; + ext4_lblk_t last_block; + ext4_lblk_t curr_block; + ext4_fsblk_t first_pblock; + ext4_fsblk_t last_pblock; +}; + +struct ext4_new_group_data { + __u32 group; + __u64 block_bitmap; + __u64 inode_bitmap; + __u64 inode_table; + __u32 blocks_count; + __u16 reserved_blocks; + __u16 mdata_blocks; + __u32 free_clusters_count; +}; + +enum { + BLOCK_BITMAP = 0, + INODE_BITMAP = 1, + INODE_TABLE = 2, + GROUP_TABLE_COUNT = 3, +}; + +struct ext4_rcu_ptr { + struct callback_head rcu; + void *ptr; +}; + +struct ext4_new_flex_group_data { + struct ext4_new_group_data *groups; + __u16 *bg_flags; + ext4_group_t resize_bg; + ext4_group_t count; +}; + +struct disk_stats { + u64 nsecs[4]; + long unsigned int sectors[4]; + long unsigned int ios[4]; + long unsigned int merges[4]; + long unsigned int io_ticks; + local_t in_flight[2]; +}; + +enum stat_group { + STAT_READ = 0, + STAT_WRITE = 1, + STAT_DISCARD = 2, + STAT_FLUSH = 3, + NR_STAT_GROUPS = 4, +}; + +enum { + attr_noop = 0, + attr_delayed_allocation_blocks = 1, + attr_session_write_kbytes = 2, + attr_lifetime_write_kbytes = 3, + attr_reserved_clusters = 4, + attr_sra_exceeded_retry_limit = 5, + attr_inode_readahead = 6, + attr_trigger_test_error = 7, + attr_first_error_time = 8, + attr_last_error_time = 9, + attr_clusters_in_group = 10, + attr_mb_order = 11, + attr_feature = 12, + attr_pointer_pi = 13, + attr_pointer_ui = 14, + attr_pointer_ul = 15, + attr_pointer_u64 = 16, + attr_pointer_u8 = 17, + attr_pointer_string = 18, + attr_pointer_atomic = 19, + attr_journal_task = 20, +}; + +enum { + ptr_explicit = 0, + ptr_ext4_sb_info_offset = 1, + ptr_ext4_super_block_offset = 2, +}; + +struct ext4_attr { + struct attribute attr; + short int attr_id; + short int attr_ptr; + short unsigned int attr_size; + union { + int offset; + void *explicit_ptr; + } u; +}; + +struct ext4_fc_tl { + __le16 fc_tag; + __le16 fc_len; +}; + +struct ext4_fc_head { + __le32 fc_features; + __le32 fc_tid; +}; + +struct ext4_fc_add_range { + __le32 fc_ino; + __u8 fc_ex[12]; +}; + +struct ext4_fc_del_range { + __le32 fc_ino; + __le32 fc_lblk; + __le32 fc_len; +}; + +struct ext4_fc_dentry_info { + __le32 fc_parent_ino; + __le32 fc_ino; + __u8 fc_dname[0]; +}; + +struct ext4_fc_inode { + __le32 fc_ino; + __u8 fc_raw_inode[0]; +}; + +struct ext4_fc_tail { + __le32 fc_tid; + __le32 fc_crc; +}; + +enum { + EXT4_FC_STATUS_OK = 0, + EXT4_FC_STATUS_INELIGIBLE = 1, + EXT4_FC_STATUS_SKIPPED = 2, + EXT4_FC_STATUS_FAILED = 3, +}; + +struct ext4_fc_dentry_update { + int fcd_op; + int fcd_parent; + int fcd_ino; + struct name_snapshot fcd_name; + struct list_head fcd_list; + struct list_head fcd_dilist; +}; + +struct ext4_locality_group { + struct mutex lg_mutex; + struct list_head lg_prealloc_list[10]; + spinlock_t lg_prealloc_lock; +}; + +enum { + EXT4_MF_MNTDIR_SAMPLED = 0, + EXT4_MF_FC_INELIGIBLE = 1, + EXT4_MF_JOURNAL_DESTROY = 2, +}; + +struct __track_dentry_update_args { + struct dentry *dentry; + int op; +}; + +struct __track_range_args { + ext4_lblk_t start; + ext4_lblk_t end; +}; + +struct dentry_info_args { + int parent_ino; + int dname_len; + int ino; + int inode_len; + char *dname; +}; + +struct ext4_fc_tl_mem { + u16 fc_tag; + u16 fc_len; +}; + +typedef int filler_t(struct file *, struct folio *); + +struct fscrypt_name { + const struct qstr *usr_fname; + struct fscrypt_str disk_name; + u32 hash; + u32 minor_hash; + struct fscrypt_str crypto_buf; + bool is_nokey_name; +}; + +enum jbd_state_bits { + BH_JBD = 17, + BH_JWrite = 18, + BH_Freed = 19, + BH_Revoked = 20, + BH_RevokeValid = 21, + BH_JBDDirty = 22, + BH_JournalHead = 23, + BH_Shadow = 24, + BH_Verified = 25, + BH_JBDPrivateStart = 26, +}; + +enum jbd2_shrink_type { + JBD2_SHRINK_DESTROY = 0, + JBD2_SHRINK_BUSY_STOP = 1, + JBD2_SHRINK_BUSY_SKIP = 2, +}; + +struct jbd2_journal_block_tail { + __be32 t_checksum; +}; + +struct trace_event_raw_jbd2_checkpoint { + struct trace_entry ent; + dev_t dev; + int result; + char __data[0]; +}; + +struct trace_event_raw_jbd2_commit { + struct trace_entry ent; + dev_t dev; + char sync_commit; + tid_t transaction; + char __data[0]; +}; + +struct trace_event_raw_jbd2_end_commit { + struct trace_entry ent; + dev_t dev; + char sync_commit; + tid_t transaction; + tid_t head; + char __data[0]; +}; + +struct trace_event_raw_jbd2_submit_inode_data { + struct trace_entry ent; + dev_t dev; + ino_t ino; + char __data[0]; +}; + +struct trace_event_raw_jbd2_handle_start_class { + struct trace_entry ent; + dev_t dev; + tid_t tid; + unsigned int type; + unsigned int line_no; + int requested_blocks; + char __data[0]; +}; + +struct trace_event_raw_jbd2_handle_extend { + struct trace_entry ent; + dev_t dev; + tid_t tid; + unsigned int type; + unsigned int line_no; + int buffer_credits; + int requested_blocks; + char __data[0]; +}; + +struct trace_event_raw_jbd2_handle_stats { + struct trace_entry ent; + dev_t dev; + tid_t tid; + unsigned int type; + unsigned int line_no; + int interval; + int sync; + int requested_blocks; + int dirtied_blocks; + char __data[0]; +}; + +struct trace_event_raw_jbd2_run_stats { + struct trace_entry ent; + dev_t dev; + tid_t tid; + long unsigned int wait; + long unsigned int request_delay; + long unsigned int running; + long unsigned int locked; + long unsigned int flushing; + long unsigned int logging; + __u32 handle_count; + __u32 blocks; + __u32 blocks_logged; + char __data[0]; +}; + +struct trace_event_raw_jbd2_checkpoint_stats { + struct trace_entry ent; + dev_t dev; + tid_t tid; + long unsigned int chp_time; + __u32 forced_to_close; + __u32 written; + __u32 dropped; + char __data[0]; +}; + +struct trace_event_raw_jbd2_update_log_tail { + struct trace_entry ent; + dev_t dev; + tid_t tail_sequence; + tid_t first_tid; + long unsigned int block_nr; + long unsigned int freed; + char __data[0]; +}; + +struct trace_event_raw_jbd2_write_superblock { + struct trace_entry ent; + dev_t dev; + blk_opf_t write_flags; + char __data[0]; +}; + +struct trace_event_raw_jbd2_lock_buffer_stall { + struct trace_entry ent; + dev_t dev; + long unsigned int stall_ms; + char __data[0]; +}; + +struct trace_event_raw_jbd2_journal_shrink { + struct trace_entry ent; + dev_t dev; + long unsigned int nr_to_scan; + long unsigned int count; + char __data[0]; +}; + +struct trace_event_raw_jbd2_shrink_scan_exit { + struct trace_entry ent; + dev_t dev; + long unsigned int nr_to_scan; + long unsigned int nr_shrunk; + long unsigned int count; + char __data[0]; +}; + +struct trace_event_raw_jbd2_shrink_checkpoint_list { + struct trace_entry ent; + dev_t dev; + tid_t first_tid; + tid_t tid; + tid_t last_tid; + long unsigned int nr_freed; + tid_t next_tid; + char __data[0]; +}; + +struct trace_event_data_offsets_jbd2_checkpoint {}; + +struct trace_event_data_offsets_jbd2_commit {}; + +struct trace_event_data_offsets_jbd2_end_commit {}; + +struct trace_event_data_offsets_jbd2_submit_inode_data {}; + +struct trace_event_data_offsets_jbd2_handle_start_class {}; + +struct trace_event_data_offsets_jbd2_handle_extend {}; + +struct trace_event_data_offsets_jbd2_handle_stats {}; + +struct trace_event_data_offsets_jbd2_run_stats {}; + +struct trace_event_data_offsets_jbd2_checkpoint_stats {}; + +struct trace_event_data_offsets_jbd2_update_log_tail {}; + +struct trace_event_data_offsets_jbd2_write_superblock {}; + +struct trace_event_data_offsets_jbd2_lock_buffer_stall {}; + +struct trace_event_data_offsets_jbd2_journal_shrink {}; + +struct trace_event_data_offsets_jbd2_shrink_scan_exit {}; + +struct trace_event_data_offsets_jbd2_shrink_checkpoint_list {}; + +typedef void (*btf_trace_jbd2_checkpoint)(void *, journal_t *, int); + +typedef void (*btf_trace_jbd2_start_commit)(void *, journal_t *, transaction_t *); + +typedef void (*btf_trace_jbd2_commit_locking)(void *, journal_t *, transaction_t *); + +typedef void (*btf_trace_jbd2_commit_flushing)(void *, journal_t *, transaction_t *); + +typedef void (*btf_trace_jbd2_commit_logging)(void *, journal_t *, transaction_t *); + +typedef void (*btf_trace_jbd2_drop_transaction)(void *, journal_t *, transaction_t *); + +typedef void (*btf_trace_jbd2_end_commit)(void *, journal_t *, transaction_t *); + +typedef void (*btf_trace_jbd2_submit_inode_data)(void *, struct inode *); + +typedef void (*btf_trace_jbd2_handle_start)(void *, dev_t, tid_t, unsigned int, unsigned int, int); + +typedef void (*btf_trace_jbd2_handle_restart)(void *, dev_t, tid_t, unsigned int, unsigned int, int); + +typedef void (*btf_trace_jbd2_handle_extend)(void *, dev_t, tid_t, unsigned int, unsigned int, int, int); + +typedef void (*btf_trace_jbd2_handle_stats)(void *, dev_t, tid_t, unsigned int, unsigned int, int, int, int, int); + +typedef void (*btf_trace_jbd2_run_stats)(void *, dev_t, tid_t, struct transaction_run_stats_s *); + +typedef void (*btf_trace_jbd2_checkpoint_stats)(void *, dev_t, tid_t, struct transaction_chp_stats_s *); + +typedef void (*btf_trace_jbd2_update_log_tail)(void *, journal_t *, tid_t, long unsigned int, long unsigned int); + +typedef void (*btf_trace_jbd2_write_superblock)(void *, journal_t *, blk_opf_t); + +typedef void (*btf_trace_jbd2_lock_buffer_stall)(void *, dev_t, long unsigned int); + +typedef void (*btf_trace_jbd2_shrink_count)(void *, journal_t *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_jbd2_shrink_scan_enter)(void *, journal_t *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_jbd2_shrink_scan_exit)(void *, journal_t *, long unsigned int, long unsigned int, long unsigned int); + +typedef void (*btf_trace_jbd2_shrink_checkpoint_list)(void *, journal_t *, tid_t, tid_t, tid_t, long unsigned int, tid_t); + +struct jbd2_stats_proc_session { + journal_t *journal; + struct transaction_stats_s *stats; + int start; + int max; +}; + +struct meta_entry { + u64 data_block; + unsigned int index_block; + short unsigned int offset; + short unsigned int pad; +}; + +struct meta_index { + unsigned int inode_number; + unsigned int offset; + short unsigned int entries; + short unsigned int skip; + short unsigned int locked; + short unsigned int pad; + struct meta_entry meta_entry[127]; +}; + +struct squashfs_cache_entry; + +struct squashfs_cache { + char *name; + int entries; + int curr_blk; + int next_blk; + int num_waiters; + int unused; + int block_size; + int pages; + spinlock_t lock; + wait_queue_head_t wait_queue; + struct squashfs_cache_entry *entry; +}; + +struct squashfs_page_actor; + +struct squashfs_cache_entry { + u64 block; + int length; + int refcount; + u64 next_index; + int pending; + int error; + int num_waiters; + wait_queue_head_t wait_queue; + struct squashfs_cache *cache; + void **data; + struct squashfs_page_actor *actor; +}; + +struct squashfs_page_actor { + union { + void **buffer; + struct page **page; + }; + void *pageaddr; + void *tmp_buffer; + void * (*squashfs_first_page)(struct squashfs_page_actor *); + void * (*squashfs_next_page)(struct squashfs_page_actor *); + void (*squashfs_finish_page)(struct squashfs_page_actor *); + struct page *last_page; + int pages; + int length; + int next_page; + int alloc_buffer; + int returned_pages; + long unsigned int next_index; +}; + +struct squashfs_decompressor; + +struct squashfs_decompressor_thread_ops; + +struct squashfs_sb_info { + const struct squashfs_decompressor *decompressor; + int devblksize; + int devblksize_log2; + struct squashfs_cache *block_cache; + struct squashfs_cache *fragment_cache; + struct squashfs_cache *read_page; + struct address_space *cache_mapping; + int next_meta_index; + __le64 *id_table; + __le64 *fragment_index; + __le64 *xattr_id_table; + struct mutex meta_index_mutex; + struct meta_index *meta_index; + void *stream; + __le64 *inode_lookup_table; + u64 inode_table; + u64 directory_table; + u64 xattr_table; + unsigned int block_size; + short unsigned int block_log; + long long int bytes_used; + unsigned int inodes; + unsigned int fragments; + unsigned int xattr_ids; + unsigned int ids; + bool panic_on_errors; + const struct squashfs_decompressor_thread_ops *thread_ops; + int max_thread_num; +}; + +struct squashfs_decompressor { + void * (*init)(struct squashfs_sb_info *, void *); + void * (*comp_opts)(struct squashfs_sb_info *, void *, int); + void (*free)(void *); + int (*decompress)(struct squashfs_sb_info *, void *, struct bio *, int, int, struct squashfs_page_actor *); + int id; + char *name; + int alloc_buffer; + int supported; +}; + +struct squashfs_decompressor_thread_ops { + void * (*create)(struct squashfs_sb_info *, void *); + void (*destroy)(struct squashfs_sb_info *); + int (*decompress)(struct squashfs_sb_info *, struct bio *, int, int, struct squashfs_page_actor *); + int (*max_decompressors)(void); +}; + +struct squashfs_stream { + void *stream; + struct mutex mutex; +}; + +struct squashfs_xattr_id { + __le64 xattr; + __le32 count; + __le32 size; +}; + +struct squashfs_xattr_id_table { + __le64 xattr_table_start; + __le32 xattr_ids; + __le32 unused; +}; + +struct bvec_iter_all { + struct bio_vec bv; + int idx; + unsigned int done; +}; + +typedef unsigned char Byte; + +typedef long unsigned int uLong; + +struct internal_state; + +struct z_stream_s { + const Byte *next_in; + uLong avail_in; + uLong total_in; + Byte *next_out; + uLong avail_out; + uLong total_out; + char *msg; + struct internal_state *state; + void *workspace; + int data_type; + uLong adler; + uLong reserved; +}; + +struct internal_state { + int dummy; +}; + +typedef struct z_stream_s z_stream; + +typedef z_stream *z_streamp; + +enum { + HUGETLB_SHMFS_INODE = 1, + HUGETLB_ANONHUGE_INODE = 2, +}; + +struct hugetlbfs_inode_info { + struct inode vfs_inode; + unsigned int seals; +}; + +struct trace_event_raw_hugetlbfs_alloc_inode { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ino_t dir; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_hugetlbfs__inode { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u16 mode; + loff_t size; + unsigned int nlink; + unsigned int seals; + blkcnt_t blocks; + char __data[0]; +}; + +struct trace_event_raw_hugetlbfs_setattr { + struct trace_entry ent; + dev_t dev; + ino_t ino; + unsigned int d_len; + u32 __data_loc_d_name; + unsigned int ia_valid; + unsigned int ia_mode; + loff_t old_size; + loff_t ia_size; + char __data[0]; +}; + +struct trace_event_raw_hugetlbfs_fallocate { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int mode; + loff_t offset; + loff_t len; + loff_t size; + int ret; + char __data[0]; +}; + +struct trace_event_data_offsets_hugetlbfs_alloc_inode {}; + +struct trace_event_data_offsets_hugetlbfs__inode {}; + +struct trace_event_data_offsets_hugetlbfs_setattr { + u32 d_name; + const void *d_name_ptr_; +}; + +struct trace_event_data_offsets_hugetlbfs_fallocate {}; + +typedef void (*btf_trace_hugetlbfs_alloc_inode)(void *, struct inode *, struct inode *, int); + +typedef void (*btf_trace_hugetlbfs_evict_inode)(void *, struct inode *); + +typedef void (*btf_trace_hugetlbfs_free_inode)(void *, struct inode *); + +typedef void (*btf_trace_hugetlbfs_setattr)(void *, struct inode *, struct dentry *, struct iattr *); + +typedef void (*btf_trace_hugetlbfs_fallocate)(void *, struct inode *, int, loff_t, loff_t, int); + +enum hugetlbfs_size_type { + NO_SIZE = 0, + SIZE_STD = 1, + SIZE_PERCENT = 2, +}; + +struct hugetlbfs_fs_context { + struct hstate *hstate; + long long unsigned int max_size_opt; + long long unsigned int min_size_opt; + long int max_hpages; + long int nr_inodes; + long int min_hpages; + enum hugetlbfs_size_type max_val_type; + enum hugetlbfs_size_type min_val_type; + kuid_t uid; + kgid_t gid; + umode_t mode; +}; + +enum hugetlb_param { + Opt_gid___2 = 0, + Opt_min_size = 1, + Opt_mode = 2, + Opt_nr_inodes = 3, + Opt_pagesize = 4, + Opt_size = 5, + Opt_uid = 6, +}; + +struct fstrim_range { + __u64 start; + __u64 len; + __u64 minlen; +}; + +enum file_time_flags { + S_ATIME = 1, + S_MTIME = 2, + S_CTIME = 4, + S_VERSION = 8, +}; + +typedef u16 wchar_t; + +struct nls_table { + const char *charset; + const char *alias; + int (*uni2char)(wchar_t, unsigned char *, int); + int (*char2uni)(const unsigned char *, int, wchar_t *); + const unsigned char *charset2lower; + const unsigned char *charset2upper; + struct module *owner; + struct nls_table *next; +}; + +struct fat_mount_options { + kuid_t fs_uid; + kgid_t fs_gid; + short unsigned int fs_fmask; + short unsigned int fs_dmask; + short unsigned int codepage; + int time_offset; + char *iocharset; + short unsigned int shortname; + unsigned char name_check; + unsigned char errors; + unsigned char nfs; + short unsigned int allow_utime; + unsigned int quiet: 1; + unsigned int showexec: 1; + unsigned int sys_immutable: 1; + unsigned int dotsOK: 1; + unsigned int isvfat: 1; + unsigned int utf8: 1; + unsigned int unicode_xlate: 1; + unsigned int numtail: 1; + unsigned int flush: 1; + unsigned int nocase: 1; + unsigned int usefree: 1; + unsigned int tz_set: 1; + unsigned int rodir: 1; + unsigned int discard: 1; + unsigned int dos1xfloppy: 1; + unsigned int debug: 1; +}; + +struct fatent_operations; + +struct msdos_sb_info { + short unsigned int sec_per_clus; + short unsigned int cluster_bits; + unsigned int cluster_size; + unsigned char fats; + unsigned char fat_bits; + short unsigned int fat_start; + long unsigned int fat_length; + long unsigned int dir_start; + short unsigned int dir_entries; + long unsigned int data_start; + long unsigned int max_cluster; + long unsigned int root_cluster; + long unsigned int fsinfo_sector; + struct mutex fat_lock; + struct mutex nfs_build_inode_lock; + struct mutex s_lock; + unsigned int prev_free; + unsigned int free_clusters; + unsigned int free_clus_valid; + struct fat_mount_options options; + struct nls_table *nls_disk; + struct nls_table *nls_io; + const void *dir_ops; + int dir_per_block; + int dir_per_block_bits; + unsigned int vol_id; + int fatent_shift; + const struct fatent_operations *fatent_ops; + struct inode *fat_inode; + struct inode *fsinfo_inode; + struct ratelimit_state ratelimit; + spinlock_t inode_hash_lock; + struct hlist_head inode_hashtable[256]; + spinlock_t dir_hash_lock; + struct hlist_head dir_hashtable[256]; + unsigned int dirty; + struct callback_head rcu; +}; + +struct fat_entry; + +struct fatent_operations { + void (*ent_blocknr)(struct super_block *, int, int *, sector_t *); + void (*ent_set_ptr)(struct fat_entry *, int); + int (*ent_bread)(struct super_block *, struct fat_entry *, int, sector_t); + int (*ent_get)(struct fat_entry *); + void (*ent_put)(struct fat_entry *, int); + int (*ent_next)(struct fat_entry *); +}; + +struct msdos_inode_info { + spinlock_t cache_lru_lock; + struct list_head cache_lru; + int nr_caches; + unsigned int cache_valid_id; + loff_t mmu_private; + int i_start; + int i_logstart; + int i_attrs; + loff_t i_pos; + struct hlist_node i_fat_hash; + struct hlist_node i_dir_hash; + struct rw_semaphore truncate_lock; + struct timespec64 i_crtime; + struct inode vfs_inode; +}; + +struct fat_entry { + int entry; + union { + u8 *ent12_p[2]; + __le16 *ent16_p; + __le32 *ent32_p; + } u; + int nr_bhs; + struct buffer_head *bhs[2]; + struct inode *fat_inode; +}; + +enum utf16_endian { + UTF16_HOST_ENDIAN = 0, + UTF16_LITTLE_ENDIAN = 1, + UTF16_BIG_ENDIAN = 2, +}; + +struct msdos_dir_entry { + __u8 name[11]; + __u8 attr; + __u8 lcase; + __u8 ctime_cs; + __le16 ctime; + __le16 cdate; + __le16 adate; + __le16 starthi; + __le16 time; + __le16 date; + __le16 start; + __le32 size; +}; + +struct msdos_dir_slot { + __u8 id; + __u8 name0_4[10]; + __u8 attr; + __u8 reserved; + __u8 alias_checksum; + __u8 name5_10[12]; + __le16 start; + __u8 name11_12[4]; +}; + +struct fat_slot_info { + loff_t i_pos; + loff_t slot_off; + int nr_slots; + struct msdos_dir_entry *de; + struct buffer_head *bh; +}; + +struct shortname_info { + unsigned char lower: 1; + unsigned char upper: 1; + unsigned char valid: 1; +}; + +struct ecryptfs_mount_crypt_stat; + +struct ecryptfs_crypt_stat { + u32 flags; + unsigned int file_version; + size_t iv_bytes; + size_t metadata_size; + size_t extent_size; + size_t key_size; + size_t extent_shift; + unsigned int extent_mask; + struct ecryptfs_mount_crypt_stat *mount_crypt_stat; + struct crypto_skcipher *tfm; + struct crypto_shash *hash_tfm; + unsigned char cipher[32]; + unsigned char key[64]; + unsigned char root_iv[16]; + struct list_head keysig_list; + struct mutex keysig_list_mutex; + struct mutex cs_tfm_mutex; + struct mutex cs_mutex; +}; + +struct ecryptfs_mount_crypt_stat { + u32 flags; + struct list_head global_auth_tok_list; + struct mutex global_auth_tok_list_mutex; + size_t global_default_cipher_key_size; + size_t global_default_fn_cipher_key_bytes; + unsigned char global_default_cipher_name[32]; + unsigned char global_default_fn_cipher_name[32]; + char global_default_fnek_sig[17]; +}; + +struct ecryptfs_inode_info { + struct inode vfs_inode; + struct inode *wii_inode; + struct mutex lower_file_mutex; + atomic_t lower_file_count; + struct file *lower_file; + struct ecryptfs_crypt_stat crypt_stat; +}; + +struct ecryptfs_dentry_info { + struct path lower_path; + struct callback_head rcu; +}; + +struct ecryptfs_global_auth_tok { + u32 flags; + struct list_head mount_crypt_stat_list; + struct key *global_auth_tok_key; + unsigned char sig[17]; +}; + +struct ecryptfs_sb_info { + struct super_block *wsi_sb; + struct ecryptfs_mount_crypt_stat mount_crypt_stat; +}; + +struct ecryptfs_open_req { + struct file **lower_file; + struct path path; + struct completion done; + struct list_head kthread_ctl_list; +}; + +struct ecryptfs_kthread_ctl { + u32 flags; + struct mutex mux; + struct list_head req_list; + wait_queue_head_t wait; +}; + +struct miscdevice { + int minor; + const char *name; + const struct file_operations *fops; + struct list_head list; + struct device *parent; + struct device *this_device; + const struct attribute_group **groups; + const char *nodename; + umode_t mode; +}; + +struct ecryptfs_message { + u32 index; + u32 data_len; + u8 data[0]; +}; + +struct ecryptfs_msg_ctx { + u8 state; + u8 type; + u32 index; + u32 counter; + size_t msg_size; + struct ecryptfs_message *msg; + struct task_struct *task; + struct list_head node; + struct list_head daemon_out_list; + struct mutex mux; +}; + +struct ecryptfs_daemon { + u32 flags; + u32 num_queued_msg_ctx; + struct file *file; + struct mutex mux; + struct list_head msg_ctx_out_queue; + wait_queue_head_t wait; + struct hlist_node euid_chain; +}; + +struct utf8cursor { + const struct unicode_map *um; + enum utf8_normalization n; + const char *s; + const char *p; + const char *ss; + const char *sp; + unsigned int len; + unsigned int slen; + short int ccc; + short int nccc; + unsigned char hangul[12]; +}; + +typedef const unsigned char utf8trie_t; + +typedef const unsigned char utf8leaf_t; + +enum fuse_opcode { + FUSE_LOOKUP = 1, + FUSE_FORGET = 2, + FUSE_GETATTR = 3, + FUSE_SETATTR = 4, + FUSE_READLINK = 5, + FUSE_SYMLINK = 6, + FUSE_MKNOD = 8, + FUSE_MKDIR = 9, + FUSE_UNLINK = 10, + FUSE_RMDIR = 11, + FUSE_RENAME = 12, + FUSE_LINK = 13, + FUSE_OPEN = 14, + FUSE_READ = 15, + FUSE_WRITE = 16, + FUSE_STATFS = 17, + FUSE_RELEASE = 18, + FUSE_FSYNC = 20, + FUSE_SETXATTR = 21, + FUSE_GETXATTR = 22, + FUSE_LISTXATTR = 23, + FUSE_REMOVEXATTR = 24, + FUSE_FLUSH = 25, + FUSE_INIT = 26, + FUSE_OPENDIR = 27, + FUSE_READDIR = 28, + FUSE_RELEASEDIR = 29, + FUSE_FSYNCDIR = 30, + FUSE_GETLK = 31, + FUSE_SETLK = 32, + FUSE_SETLKW = 33, + FUSE_ACCESS = 34, + FUSE_CREATE = 35, + FUSE_INTERRUPT = 36, + FUSE_BMAP = 37, + FUSE_DESTROY = 38, + FUSE_IOCTL = 39, + FUSE_POLL = 40, + FUSE_NOTIFY_REPLY = 41, + FUSE_BATCH_FORGET = 42, + FUSE_FALLOCATE = 43, + FUSE_READDIRPLUS = 44, + FUSE_RENAME2 = 45, + FUSE_LSEEK = 46, + FUSE_COPY_FILE_RANGE = 47, + FUSE_SETUPMAPPING = 48, + FUSE_REMOVEMAPPING = 49, + FUSE_SYNCFS = 50, + FUSE_TMPFILE = 51, + FUSE_STATX = 52, + CUSE_INIT = 4096, + CUSE_INIT_BSWAP_RESERVED = 1048576, + FUSE_INIT_BSWAP_RESERVED = 436207616, +}; + +enum fuse_notify_code { + FUSE_NOTIFY_POLL = 1, + FUSE_NOTIFY_INVAL_INODE = 2, + FUSE_NOTIFY_INVAL_ENTRY = 3, + FUSE_NOTIFY_STORE = 4, + FUSE_NOTIFY_RETRIEVE = 5, + FUSE_NOTIFY_DELETE = 6, + FUSE_NOTIFY_RESEND = 7, + FUSE_NOTIFY_INC_EPOCH = 8, + FUSE_NOTIFY_CODE_MAX = 9, +}; + +struct fuse_forget_in { + uint64_t nlookup; +}; + +struct fuse_forget_one { + uint64_t nodeid; + uint64_t nlookup; +}; + +struct fuse_batch_forget_in { + uint32_t count; + uint32_t dummy; +}; + +struct fuse_open_out { + uint64_t fh; + uint32_t open_flags; + int32_t backing_id; +}; + +struct fuse_release_in { + uint64_t fh; + uint32_t flags; + uint32_t release_flags; + uint64_t lock_owner; +}; + +struct fuse_interrupt_in { + uint64_t unique; +}; + +struct fuse_notify_poll_wakeup_out { + uint64_t kh; +}; + +struct fuse_in_header { + uint32_t len; + uint32_t opcode; + uint64_t unique; + uint64_t nodeid; + uint32_t uid; + uint32_t gid; + uint32_t pid; + uint16_t total_extlen; + uint16_t padding; +}; + +struct fuse_out_header { + uint32_t len; + int32_t error; + uint64_t unique; +}; + +struct fuse_notify_inval_inode_out { + uint64_t ino; + int64_t off; + int64_t len; +}; + +struct fuse_notify_inval_entry_out { + uint64_t parent; + uint32_t namelen; + uint32_t flags; +}; + +struct fuse_notify_delete_out { + uint64_t parent; + uint64_t child; + uint32_t namelen; + uint32_t padding; +}; + +struct fuse_notify_store_out { + uint64_t nodeid; + uint64_t offset; + uint32_t size; + uint32_t padding; +}; + +struct fuse_notify_retrieve_out { + uint64_t notify_unique; + uint64_t nodeid; + uint64_t offset; + uint32_t size; + uint32_t padding; +}; + +struct fuse_notify_retrieve_in { + uint64_t dummy1; + uint64_t offset; + uint32_t size; + uint32_t dummy2; + uint64_t dummy3; + uint64_t dummy4; +}; + +struct fuse_backing_map { + int32_t fd; + uint32_t flags; + uint64_t padding; +}; + +typedef union { +} release_pages_arg; + +struct fuse_forget_link { + struct fuse_forget_one forget_one; + struct fuse_forget_link *next; +}; + +struct fuse_mount; + +union fuse_file_args; + +struct fuse_file { + struct fuse_mount *fm; + union fuse_file_args *args; + u64 kh; + u64 fh; + u64 nodeid; + refcount_t count; + u32 open_flags; + struct list_head write_entry; + struct { + loff_t pos; + loff_t cache_off; + u64 version; + } readdir; + struct rb_node polled_node; + wait_queue_head_t poll_wait; + enum { + IOM_NONE = 0, + IOM_CACHED = 1, + IOM_UNCACHED = 2, + } iomode; + struct file *passthrough; + const struct cred *cred; + bool flock: 1; +}; + +struct fuse_conn; + +struct fuse_mount { + struct fuse_conn *fc; + struct super_block *sb; + struct list_head fc_entry; + struct callback_head rcu; +}; + +struct fuse_in_arg { + unsigned int size; + const void *value; +}; + +struct fuse_arg { + unsigned int size; + void *value; +}; + +struct fuse_args { + uint64_t nodeid; + uint32_t opcode; + uint8_t in_numargs; + uint8_t out_numargs; + uint8_t ext_idx; + bool force: 1; + bool noreply: 1; + bool nocreds: 1; + bool in_pages: 1; + bool out_pages: 1; + bool user_pages: 1; + bool out_argvar: 1; + bool page_zeroing: 1; + bool page_replace: 1; + bool may_block: 1; + bool is_ext: 1; + bool is_pinned: 1; + bool invalidate_vmap: 1; + struct fuse_in_arg in_args[4]; + struct fuse_arg out_args[2]; + void (*end)(struct fuse_mount *, struct fuse_args *, int); + void *vmap_base; +}; + +struct fuse_release_args { + struct fuse_args args; + struct fuse_release_in inarg; + struct inode *inode; +}; + +union fuse_file_args { + struct fuse_open_out open_outarg; + struct fuse_release_args release_args; +}; + +struct fuse_folio_desc { + unsigned int length; + unsigned int offset; +}; + +struct fuse_args_pages { + struct fuse_args args; + struct folio **folios; + struct fuse_folio_desc *descs; + unsigned int num_folios; +}; + +enum fuse_req_flag { + FR_ISREPLY = 0, + FR_FORCE = 1, + FR_BACKGROUND = 2, + FR_WAITING = 3, + FR_ABORTED = 4, + FR_INTERRUPTED = 5, + FR_LOCKED = 6, + FR_PENDING = 7, + FR_SENT = 8, + FR_FINISHED = 9, + FR_PRIVATE = 10, + FR_ASYNC = 11, + FR_URING = 12, +}; + +struct fuse_req { + struct list_head list; + struct list_head intr_entry; + struct fuse_args *args; + refcount_t count; + long unsigned int flags; + struct { + struct fuse_in_header h; + } in; + struct { + struct fuse_out_header h; + } out; + wait_queue_head_t waitq; + void *argbuf; + struct fuse_mount *fm; + void *ring_entry; + void *ring_queue; + long unsigned int create_time; +}; + +struct fuse_iqueue; + +struct fuse_iqueue_ops { + void (*send_forget)(struct fuse_iqueue *, struct fuse_forget_link *); + void (*send_interrupt)(struct fuse_iqueue *, struct fuse_req *); + void (*send_req)(struct fuse_iqueue *, struct fuse_req *); + void (*release)(struct fuse_iqueue *); +}; + +struct fuse_iqueue { + unsigned int connected; + spinlock_t lock; + wait_queue_head_t waitq; + u64 reqctr; + struct list_head pending; + struct list_head interrupts; + struct fuse_forget_link forget_list_head; + struct fuse_forget_link *forget_list_tail; + int forget_batch; + struct fasync_struct *fasync; + const struct fuse_iqueue_ops *ops; + void *priv; +}; + +struct fuse_pqueue { + unsigned int connected; + spinlock_t lock; + struct list_head *processing; + struct list_head io; +}; + +struct fuse_dev { + struct fuse_conn *fc; + struct fuse_pqueue pq; + struct list_head entry; +}; + +enum fuse_dax_mode { + FUSE_DAX_INODE_DEFAULT = 0, + FUSE_DAX_ALWAYS = 1, + FUSE_DAX_NEVER = 2, + FUSE_DAX_INODE_USER = 3, +}; + +struct fuse_conn_dax; + +struct fuse_sync_bucket; + +struct fuse_ring; + +struct fuse_conn { + spinlock_t lock; + refcount_t count; + atomic_t dev_count; + atomic_t epoch; + struct callback_head rcu; + kuid_t user_id; + kgid_t group_id; + struct pid_namespace *pid_ns; + struct user_namespace *user_ns; + unsigned int max_read; + unsigned int max_write; + unsigned int max_pages; + unsigned int max_pages_limit; + struct fuse_iqueue iq; + atomic64_t khctr; + struct rb_root polled_files; + unsigned int max_background; + unsigned int congestion_threshold; + unsigned int num_background; + unsigned int active_background; + struct list_head bg_queue; + spinlock_t bg_lock; + int initialized; + int blocked; + wait_queue_head_t blocked_waitq; + unsigned int connected; + bool aborted; + unsigned int conn_error: 1; + unsigned int conn_init: 1; + unsigned int async_read: 1; + unsigned int abort_err: 1; + unsigned int atomic_o_trunc: 1; + unsigned int export_support: 1; + unsigned int writeback_cache: 1; + unsigned int parallel_dirops: 1; + unsigned int handle_killpriv: 1; + unsigned int cache_symlinks: 1; + unsigned int legacy_opts_show: 1; + unsigned int handle_killpriv_v2: 1; + unsigned int no_open: 1; + unsigned int no_opendir: 1; + unsigned int no_fsync: 1; + unsigned int no_fsyncdir: 1; + unsigned int no_flush: 1; + unsigned int no_setxattr: 1; + unsigned int setxattr_ext: 1; + unsigned int no_getxattr: 1; + unsigned int no_listxattr: 1; + unsigned int no_removexattr: 1; + unsigned int no_lock: 1; + unsigned int no_access: 1; + unsigned int no_create: 1; + unsigned int no_interrupt: 1; + unsigned int no_bmap: 1; + unsigned int no_poll: 1; + unsigned int big_writes: 1; + unsigned int dont_mask: 1; + unsigned int no_flock: 1; + unsigned int no_fallocate: 1; + unsigned int no_rename2: 1; + unsigned int auto_inval_data: 1; + unsigned int explicit_inval_data: 1; + unsigned int do_readdirplus: 1; + unsigned int readdirplus_auto: 1; + unsigned int async_dio: 1; + unsigned int no_lseek: 1; + unsigned int posix_acl: 1; + unsigned int default_permissions: 1; + unsigned int allow_other: 1; + unsigned int no_copy_file_range: 1; + unsigned int destroy: 1; + unsigned int delete_stale: 1; + unsigned int no_control: 1; + unsigned int no_force_umount: 1; + unsigned int auto_submounts: 1; + unsigned int sync_fs: 1; + unsigned int init_security: 1; + unsigned int create_supp_group: 1; + unsigned int inode_dax: 1; + unsigned int no_tmpfile: 1; + unsigned int direct_io_allow_mmap: 1; + unsigned int no_statx: 1; + unsigned int passthrough: 1; + unsigned int use_pages_for_kvec_io: 1; + unsigned int no_link: 1; + unsigned int io_uring; + int max_stack_depth; + atomic_t num_waiting; + unsigned int minor; + struct list_head entry; + dev_t dev; + u32 scramble_key[4]; + atomic64_t attr_version; + atomic64_t evict_ctr; + u32 name_max; + void (*release)(struct fuse_conn *); + struct rw_semaphore killsb; + struct list_head devices; + enum fuse_dax_mode dax_mode; + struct fuse_conn_dax *dax; + struct list_head mounts; + struct fuse_sync_bucket *curr_bucket; + struct idr backing_files_map; + struct fuse_ring *ring; + struct { + struct delayed_work work; + unsigned int req_timeout; + } timeout; + u8 blkbits; +}; + +struct fuse_sync_bucket { + atomic_t count; + wait_queue_head_t waitq; + struct callback_head rcu; +}; + +struct fuse_ring_queue; + +struct fuse_ring { + struct fuse_conn *fc; + size_t nr_queues; + size_t max_payload_sz; + struct fuse_ring_queue **queues; + unsigned int stop_debug_log: 1; + wait_queue_head_t stop_waitq; + struct delayed_work async_teardown_work; + long unsigned int teardown_time; + atomic_t queue_refs; + bool ready; +}; + +struct fuse_ring_queue { + struct fuse_ring *ring; + unsigned int qid; + spinlock_t lock; + struct list_head ent_avail_queue; + struct list_head ent_w_req_queue; + struct list_head ent_commit_queue; + struct list_head ent_in_userspace; + struct list_head ent_released; + struct list_head fuse_req_queue; + struct list_head fuse_req_bg_queue; + struct fuse_pqueue fpq; + unsigned int active_background; + bool stopped; +}; + +struct fuse_copy_state { + struct fuse_req *req; + struct iov_iter *iter; + struct pipe_buffer *pipebufs; + struct pipe_buffer *currbuf; + struct pipe_inode_info *pipe; + long unsigned int nr_segs; + struct page *pg; + unsigned int len; + unsigned int offset; + bool write: 1; + bool move_folios: 1; + bool is_uring: 1; + struct { + unsigned int copied_sz; + } ring; +}; + +struct trace_event_raw_fuse_request_send { + struct trace_entry ent; + dev_t connection; + uint64_t unique; + enum fuse_opcode opcode; + uint32_t len; + char __data[0]; +}; + +struct trace_event_raw_fuse_request_end { + struct trace_entry ent; + dev_t connection; + uint64_t unique; + uint32_t len; + int32_t error; + char __data[0]; +}; + +struct trace_event_data_offsets_fuse_request_send {}; + +struct trace_event_data_offsets_fuse_request_end {}; + +typedef void (*btf_trace_fuse_request_send)(void *, const struct fuse_req *); + +typedef void (*btf_trace_fuse_request_end)(void *, const struct fuse_req *); + +struct fuse_retrieve_args { + struct fuse_args_pages ap; + struct fuse_notify_retrieve_in inarg; +}; + +struct fuse_submount_lookup { + refcount_t count; + u64 nodeid; + struct fuse_forget_link *forget; +}; + +struct fuse_backing { + struct file *file; + struct cred *cred; + refcount_t count; + struct callback_head rcu; +}; + +struct fuse_inode_dax; + +struct fuse_inode { + struct inode inode; + u64 nodeid; + u64 nlookup; + struct fuse_forget_link *forget; + u64 i_time; + u32 inval_mask; + umode_t orig_i_mode; + struct timespec64 i_btime; + u64 orig_ino; + u64 attr_version; + union { + struct { + struct list_head write_files; + struct list_head queued_writes; + int writectr; + int iocachectr; + wait_queue_head_t page_waitq; + wait_queue_head_t direct_io_waitq; + }; + struct { + bool cached; + loff_t size; + loff_t pos; + u64 version; + struct timespec64 mtime; + u64 iversion; + spinlock_t lock; + } rdc; + }; + long unsigned int state; + struct mutex mutex; + spinlock_t lock; + struct fuse_inode_dax *dax; + struct fuse_submount_lookup *submount_lookup; + struct fuse_backing *fb; + u8 cached_i_blkbits; +}; + +enum { + FUSE_I_ADVISE_RDPLUS = 0, + FUSE_I_INIT_RDPLUS = 1, + FUSE_I_SIZE_UNSTABLE = 2, + FUSE_I_BAD = 3, + FUSE_I_BTIME = 4, + FUSE_I_CACHE_IO_MODE = 5, +}; + +struct fuse_attr { + uint64_t ino; + uint64_t size; + uint64_t blocks; + uint64_t atime; + uint64_t mtime; + uint64_t ctime; + uint32_t atimensec; + uint32_t mtimensec; + uint32_t ctimensec; + uint32_t mode; + uint32_t nlink; + uint32_t uid; + uint32_t gid; + uint32_t rdev; + uint32_t blksize; + uint32_t flags; +}; + +struct fuse_sx_time { + int64_t tv_sec; + uint32_t tv_nsec; + int32_t __reserved; +}; + +struct fuse_statx { + uint32_t mask; + uint32_t blksize; + uint64_t attributes; + uint32_t nlink; + uint32_t uid; + uint32_t gid; + uint16_t mode; + uint16_t __spare0[1]; + uint64_t ino; + uint64_t size; + uint64_t blocks; + uint64_t attributes_mask; + struct fuse_sx_time atime; + struct fuse_sx_time btime; + struct fuse_sx_time ctime; + struct fuse_sx_time mtime; + uint32_t rdev_major; + uint32_t rdev_minor; + uint32_t dev_major; + uint32_t dev_minor; + uint64_t __spare2[14]; +}; + +struct fuse_entry_out { + uint64_t nodeid; + uint64_t generation; + uint64_t entry_valid; + uint64_t attr_valid; + uint32_t entry_valid_nsec; + uint32_t attr_valid_nsec; + struct fuse_attr attr; +}; + +struct fuse_read_in { + uint64_t fh; + uint64_t offset; + uint32_t size; + uint32_t read_flags; + uint64_t lock_owner; + uint32_t flags; + uint32_t padding; +}; + +struct fuse_write_in { + uint64_t fh; + uint64_t offset; + uint32_t size; + uint32_t write_flags; + uint64_t lock_owner; + uint32_t flags; + uint32_t padding; +}; + +struct fuse_write_out { + uint32_t size; + uint32_t padding; +}; + +struct fuse_dirent { + uint64_t ino; + uint64_t off; + uint32_t namelen; + uint32_t type; + char name[0]; +}; + +struct fuse_direntplus { + struct fuse_entry_out entry_out; + struct fuse_dirent dirent; +}; + +struct fuse_io_priv { + struct kref refcnt; + int async; + spinlock_t lock; + unsigned int reqs; + ssize_t bytes; + size_t size; + __u64 offset; + bool write; + bool should_dirty; + int err; + struct kiocb *iocb; + struct completion *done; + bool blocking; +}; + +struct fuse_io_args { + union { + struct { + struct fuse_read_in in; + u64 attr_ver; + } read; + struct { + struct fuse_write_in in; + struct fuse_write_out out; + bool folio_locked; + } write; + }; + struct fuse_args_pages ap; + struct fuse_io_priv *io; + struct fuse_file *ff; +}; + +enum fuse_parse_result { + FOUND_ERR = -1, + FOUND_NONE = 0, + FOUND_SOME = 1, + FOUND_ALL = 2, +}; + +typedef struct {} local_lock_t; + +typedef struct { + local_lock_t llock; + u8 acquired; +} local_trylock_t; + +struct radix_tree_preload { + local_lock_t lock; + unsigned int nr; + struct xa_node *nodes; +}; + +typedef struct vfsmount * (*debugfs_automount_t)(struct dentry *, void *); + +struct debugfs_short_fops { + ssize_t (*read)(struct file *, char *, size_t, loff_t *); + ssize_t (*write)(struct file *, const char *, size_t, loff_t *); + loff_t (*llseek)(struct file *, loff_t, int); +}; + +struct debugfs_cancellation { + struct list_head list; + void (*cancel)(struct dentry *, void *); + void *cancel_data; +}; + +struct debugfs_inode_info { + struct inode vfs_inode; + union { + const void *raw; + const struct file_operations *real_fops; + const struct debugfs_short_fops *short_fops; + debugfs_automount_t automount; + }; + void *aux; +}; + +struct debugfs_fsdata { + const struct file_operations *real_fops; + const struct debugfs_short_fops *short_fops; + struct { + refcount_t active_users; + struct completion active_users_drained; + struct mutex cancellations_mtx; + struct list_head cancellations; + unsigned int methods; + }; +}; + +struct debugfs_fs_info { + kuid_t uid; + kgid_t gid; + umode_t mode; + unsigned int opts; +}; + +enum { + Opt_uid___2 = 0, + Opt_gid___3 = 1, + Opt_mode___2 = 2, + Opt_source = 3, +}; + +enum kmsg_dump_reason { + KMSG_DUMP_UNDEF = 0, + KMSG_DUMP_PANIC = 1, + KMSG_DUMP_OOPS = 2, + KMSG_DUMP_EMERG = 3, + KMSG_DUMP_SHUTDOWN = 4, + KMSG_DUMP_MAX = 5, +}; + +enum pstore_type_id { + PSTORE_TYPE_DMESG = 0, + PSTORE_TYPE_MCE = 1, + PSTORE_TYPE_CONSOLE = 2, + PSTORE_TYPE_FTRACE = 3, + PSTORE_TYPE_PPC_RTAS = 4, + PSTORE_TYPE_PPC_OF = 5, + PSTORE_TYPE_PPC_COMMON = 6, + PSTORE_TYPE_PMSG = 7, + PSTORE_TYPE_PPC_OPAL = 8, + PSTORE_TYPE_MAX = 9, +}; + +struct pstore_info; + +struct pstore_record { + struct pstore_info *psi; + enum pstore_type_id type; + u64 id; + struct timespec64 time; + char *buf; + ssize_t size; + ssize_t ecc_notice_size; + void *priv; + int count; + enum kmsg_dump_reason reason; + unsigned int part; + bool compressed; +}; + +struct pstore_info { + struct module *owner; + const char *name; + raw_spinlock_t buf_lock; + char *buf; + size_t bufsize; + struct mutex read_mutex; + int flags; + int max_reason; + void *data; + int (*open)(struct pstore_info *); + int (*close)(struct pstore_info *); + ssize_t (*read)(struct pstore_record *); + int (*write)(struct pstore_record *); + int (*write_user)(struct pstore_record *, const char *); + int (*erase)(struct pstore_record *); +}; + +struct pstore_ftrace_record { + long unsigned int ip; + long unsigned int parent_ip; + u64 ts; +}; + +struct pstore_private { + struct list_head list; + struct dentry *dentry; + struct pstore_record *record; + size_t total_size; +}; + +struct pstore_ftrace_seq_data { + const void *ptr; + size_t off; + size_t size; +}; + +enum { + Opt_kmsg_bytes = 0, +}; + +struct pstore_context { + unsigned int kmsg_bytes; +}; + +struct efivarfs_mount_opts { + kuid_t uid; + kgid_t gid; +}; + +struct efivarfs_fs_info { + struct efivarfs_mount_opts mount_opts; + struct super_block *sb; + struct notifier_block nb; +}; + +struct efi_variable { + efi_char16_t VariableName[512]; + efi_guid_t VendorGuid; +}; + +struct efivar_entry { + struct efi_variable var; + struct inode vfs_inode; + long unsigned int open_count; + bool removed; +}; + +enum { + Opt_uid___3 = 0, + Opt_gid___4 = 1, +}; + +enum cache_type { + CACHE_TYPE_NOCACHE = 0, + CACHE_TYPE_INST = 1, + CACHE_TYPE_DATA = 2, + CACHE_TYPE_SEPARATE = 3, + CACHE_TYPE_UNIFIED = 4, +}; + +struct cacheinfo { + unsigned int id; + enum cache_type type; + unsigned int level; + unsigned int coherency_line_size; + unsigned int number_of_sets; + unsigned int ways_of_associativity; + unsigned int physical_line_partition; + unsigned int size; + cpumask_t shared_cpu_map; + unsigned int attributes; + void *fw_token; + bool disable_sysfs; + void *priv; +}; + +struct mbm_state { + u64 prev_bw_bytes; + u32 prev_bw; +}; + +struct mon_evt { + enum resctrl_event_id evtid; + char *name; + bool configurable; + struct list_head list; +}; + +struct rdtgroup; + +struct rmid_read { + struct rdtgroup *rgrp; + struct rdt_resource *r; + struct rdt_mon_domain *d; + enum resctrl_event_id evtid; + bool first; + struct cacheinfo *ci; + int err; + u64 val; + void *arch_mon_ctx; +}; + +enum rdt_group_type { + RDTCTRL_GROUP = 0, + RDTMON_GROUP = 1, + RDT_NUM_GROUP = 2, +}; + +struct mongroup { + struct kernfs_node *mon_data_kn; + struct rdtgroup *parent; + struct list_head crdtgrp_list; + u32 rmid; +}; + +enum rdtgrp_mode { + RDT_MODE_SHAREABLE = 0, + RDT_MODE_EXCLUSIVE = 1, + RDT_MODE_PSEUDO_LOCKSETUP = 2, + RDT_MODE_PSEUDO_LOCKED = 3, + RDT_NUM_MODES = 4, +}; + +struct rdtgroup { + struct kernfs_node *kn; + struct list_head rdtgroup_list; + u32 closid; + struct cpumask cpu_mask; + int flags; + atomic_t waitcount; + enum rdt_group_type type; + struct mongroup mon; + enum rdtgrp_mode mode; + enum resctrl_event_id mba_mbps_event; + struct pseudo_lock_region *plr; +}; + +struct trace_event_raw_mon_llc_occupancy_limbo { + struct trace_entry ent; + u32 ctrl_hw_id; + u32 mon_hw_id; + int domain_id; + u64 llc_occupancy_bytes; + char __data[0]; +}; + +struct trace_event_data_offsets_mon_llc_occupancy_limbo {}; + +typedef void (*btf_trace_mon_llc_occupancy_limbo)(void *, u32, u32, int, u64); + +struct rmid_entry { + u32 closid; + u32 rmid; + int busy; + struct list_head list; +}; + +typedef unsigned int __kernel_mode_t; + +typedef int __kernel_ipc_pid_t; + +typedef unsigned int __kernel_uid_t; + +typedef unsigned int __kernel_gid_t; + +struct ipc_perm { + __kernel_key_t key; + __kernel_uid_t uid; + __kernel_gid_t gid; + __kernel_uid_t cuid; + __kernel_gid_t cgid; + __kernel_mode_t mode; + short unsigned int seq; +}; + +struct ipc64_perm { + __kernel_key_t key; + __kernel_uid32_t uid; + __kernel_gid32_t gid; + __kernel_uid32_t cuid; + __kernel_gid32_t cgid; + __kernel_mode_t mode; + unsigned char __pad1[0]; + short unsigned int seq; + short unsigned int __pad2; + __kernel_ulong_t __unused1; + __kernel_ulong_t __unused2; +}; + +struct msgbuf { + __kernel_long_t mtype; + char mtext[1]; +}; + +struct msg; + +struct msqid_ds { + struct ipc_perm msg_perm; + struct msg *msg_first; + struct msg *msg_last; + __kernel_old_time_t msg_stime; + __kernel_old_time_t msg_rtime; + __kernel_old_time_t msg_ctime; + long unsigned int msg_lcbytes; + long unsigned int msg_lqbytes; + short unsigned int msg_cbytes; + short unsigned int msg_qnum; + short unsigned int msg_qbytes; + __kernel_ipc_pid_t msg_lspid; + __kernel_ipc_pid_t msg_lrpid; +}; + +struct msqid64_ds { + struct ipc64_perm msg_perm; + long int msg_stime; + long int msg_rtime; + long int msg_ctime; + long unsigned int msg_cbytes; + long unsigned int msg_qnum; + long unsigned int msg_qbytes; + __kernel_pid_t msg_lspid; + __kernel_pid_t msg_lrpid; + long unsigned int __unused4; + long unsigned int __unused5; +}; + +struct msginfo { + int msgpool; + int msgmap; + int msgmax; + int msgmnb; + int msgmni; + int msgssz; + int msgtql; + short unsigned int msgseg; +}; + +struct msg_msgseg; + +struct msg_msg { + struct list_head m_list; + long int m_type; + size_t m_ts; + struct msg_msgseg *next; + void *security; +}; + +typedef u16 compat_ipc_pid_t; + +typedef s32 compat_ssize_t; + +typedef s32 compat_key_t; + +typedef u16 compat_ushort_t; + +typedef u32 __compat_uid32_t; + +typedef u32 __compat_gid32_t; + +struct compat_ipc64_perm { + compat_key_t key; + __compat_uid32_t uid; + __compat_gid32_t gid; + __compat_uid32_t cuid; + __compat_gid32_t cgid; + compat_mode_t mode; + unsigned char __pad1[2]; + compat_ushort_t seq; + compat_ushort_t __pad2; + compat_ulong_t unused1; + compat_ulong_t unused2; +}; + +struct compat_msqid64_ds { + struct compat_ipc64_perm msg_perm; + compat_ulong_t msg_stime; + compat_ulong_t msg_stime_high; + compat_ulong_t msg_rtime; + compat_ulong_t msg_rtime_high; + compat_ulong_t msg_ctime; + compat_ulong_t msg_ctime_high; + compat_ulong_t msg_cbytes; + compat_ulong_t msg_qnum; + compat_ulong_t msg_qbytes; + compat_pid_t msg_lspid; + compat_pid_t msg_lrpid; + compat_ulong_t __unused4; + compat_ulong_t __unused5; +}; + +struct ipc_params { + key_t key; + int flg; + union { + size_t size; + int nsems; + } u; +}; + +struct ipc_ops { + int (*getnew)(struct ipc_namespace *, struct ipc_params *); + int (*associate)(struct kern_ipc_perm *, int); + int (*more_checks)(struct kern_ipc_perm *, struct ipc_params *); +}; + +struct compat_ipc_perm { + key_t key; + __compat_uid_t uid; + __compat_gid_t gid; + __compat_uid_t cuid; + __compat_gid_t cgid; + compat_mode_t mode; + short unsigned int seq; +}; + +struct msg_queue { + struct kern_ipc_perm q_perm; + time64_t q_stime; + time64_t q_rtime; + time64_t q_ctime; + long unsigned int q_cbytes; + long unsigned int q_qnum; + long unsigned int q_qbytes; + struct pid *q_lspid; + struct pid *q_lrpid; + struct list_head q_messages; + struct list_head q_receivers; + struct list_head q_senders; + long: 64; + long: 64; +}; + +struct msg_receiver { + struct list_head r_list; + struct task_struct *r_tsk; + int r_mode; + long int r_msgtype; + long int r_maxsize; + struct msg_msg *r_msg; +}; + +struct msg_sender { + struct list_head list; + struct task_struct *tsk; + size_t msgsz; +}; + +struct compat_msqid_ds { + struct compat_ipc_perm msg_perm; + compat_uptr_t msg_first; + compat_uptr_t msg_last; + old_time32_t msg_stime; + old_time32_t msg_rtime; + old_time32_t msg_ctime; + compat_ulong_t msg_lcbytes; + compat_ulong_t msg_lqbytes; + short unsigned int msg_cbytes; + short unsigned int msg_qnum; + short unsigned int msg_qbytes; + compat_ipc_pid_t msg_lspid; + compat_ipc_pid_t msg_lrpid; +}; + +struct compat_msgbuf { + compat_long_t mtype; + char mtext[0]; +}; + +struct sigevent { + sigval_t sigev_value; + int sigev_signo; + int sigev_notify; + union { + int _pad[12]; + int _tid; + struct { + void (*_function)(sigval_t); + void *_attribute; + } _sigev_thread; + } _sigev_un; +}; + +typedef s32 compat_int_t; + +union compat_sigval { + compat_int_t sival_int; + compat_uptr_t sival_ptr; +}; + +typedef union compat_sigval compat_sigval_t; + +struct compat_sigevent { + compat_sigval_t sigev_value; + compat_int_t sigev_signo; + compat_int_t sigev_notify; + union { + compat_int_t _pad[13]; + compat_int_t _tid; + struct { + compat_uptr_t _function; + compat_uptr_t _attribute; + } _sigev_thread; + } _sigev_un; +}; + +typedef int (*initxattrs)(struct inode *, const struct xattr *, void *); + +struct mqueue_fs_context { + struct ipc_namespace *ipc_ns; + bool newns; +}; + +struct posix_msg_tree_node { + struct rb_node rb_node; + struct list_head msg_list; + int priority; +}; + +struct ext_wait_queue { + struct task_struct *task; + struct list_head list; + struct msg_msg *msg; + int state; +}; + +struct mqueue_inode_info { + spinlock_t lock; + struct inode vfs_inode; + wait_queue_head_t wait_q; + struct rb_root msg_tree; + struct rb_node *msg_tree_rightmost; + struct posix_msg_tree_node *node_cache; + struct mq_attr attr; + struct sigevent notify; + struct pid *notify_owner; + u32 notify_self_exec_id; + struct user_namespace *notify_user_ns; + struct ucounts *ucounts; + struct sock *notify_sock; + struct sk_buff *notify_cookie; + struct ext_wait_queue e_wait_q[2]; + long unsigned int qsize; +}; + +struct compat_mq_attr { + compat_long_t mq_flags; + compat_long_t mq_maxmsg; + compat_long_t mq_msgsize; + compat_long_t mq_curmsgs; + compat_long_t __reserved[4]; +}; + +struct kernel_pkey_query { + __u32 supported_ops; + __u32 key_size; + __u16 max_data_size; + __u16 max_sig_size; + __u16 max_enc_size; + __u16 max_dec_size; +}; + +enum kernel_pkey_operation { + kernel_pkey_encrypt = 0, + kernel_pkey_decrypt = 1, + kernel_pkey_sign = 2, + kernel_pkey_verify = 3, +}; + +struct kernel_pkey_params { + struct key *key; + const char *encoding; + const char *hash_algo; + char *info; + __u32 in_len; + union { + __u32 out_len; + __u32 in2_len; + }; + enum kernel_pkey_operation op: 8; +}; + +enum key_lookup_flag { + KEY_LOOKUP_CREATE = 1, + KEY_LOOKUP_PARTIAL = 2, + KEY_LOOKUP_ALL = 3, +}; + +enum key_state { + KEY_IS_UNINSTANTIATED = 0, + KEY_IS_POSITIVE = 1, +}; + +struct key_user { + struct rb_node node; + struct mutex cons_lock; + spinlock_t lock; + refcount_t usage; + atomic_t nkeys; + atomic_t nikeys; + kuid_t uid; + int qnkeys; + int qnbytes; +}; + +struct request_key_auth { + struct callback_head rcu; + struct key *target_key; + struct key *dest_keyring; + const struct cred *cred; + void *callout_info; + size_t callout_len; + pid_t pid; + char op[8]; +}; + +struct key_preparsed_payload { + const char *orig_description; + char *description; + union key_payload payload; + const void *data; + size_t datalen; + size_t quotalen; + time64_t expiry; +}; + +struct key_match_data { + bool (*cmp)(const struct key *, const struct key_match_data *); + const void *raw_data; + void *preparsed; + unsigned int lookup_type; +}; + +struct keyring_search_context { + struct keyring_index_key index_key; + const struct cred *cred; + struct key_match_data match_data; + unsigned int flags; + int (*iterator)(const void *, void *); + int skipped_ret; + bool possessed; + key_ref_t result; + time64_t now; +}; + +enum tpm_duration { + TPM_SHORT = 0, + TPM_MEDIUM = 1, + TPM_LONG = 2, + TPM_LONG_LONG = 3, + TPM_UNDEFINED = 4, + TPM_NUM_DURATIONS = 4, +}; + +struct trusted_key_payload { + struct callback_head rcu; + unsigned int key_len; + unsigned int blob_len; + unsigned char migratable; + unsigned char old_format; + unsigned char key[129]; + unsigned char blob[512]; +}; + +struct trusted_key_ops { + unsigned char migratable; + int (*init)(void); + int (*seal)(struct trusted_key_payload *, char *); + int (*unseal)(struct trusted_key_payload *, char *); + int (*get_random)(unsigned char *, size_t); + void (*exit)(void); +}; + +struct trusted_key_source { + char *name; + struct trusted_key_ops *ops; +}; + +enum { + Opt_err = 0, + Opt_new = 1, + Opt_load = 2, + Opt_update = 3, +}; + +enum asn1_class { + ASN1_UNIV = 0, + ASN1_APPL = 1, + ASN1_CONT = 2, + ASN1_PRIV = 3, +}; + +enum asn1_method { + ASN1_PRIM = 0, + ASN1_CONS = 1, +}; + +enum asn1_tag { + ASN1_EOC = 0, + ASN1_BOOL = 1, + ASN1_INT = 2, + ASN1_BTS = 3, + ASN1_OTS = 4, + ASN1_NULL = 5, + ASN1_OID = 6, + ASN1_ODE = 7, + ASN1_EXT = 8, + ASN1_REAL = 9, + ASN1_ENUM = 10, + ASN1_EPDV = 11, + ASN1_UTF8STR = 12, + ASN1_RELOID = 13, + ASN1_SEQ = 16, + ASN1_SET = 17, + ASN1_NUMSTR = 18, + ASN1_PRNSTR = 19, + ASN1_TEXSTR = 20, + ASN1_VIDSTR = 21, + ASN1_IA5STR = 22, + ASN1_UNITIM = 23, + ASN1_GENTIM = 24, + ASN1_GRASTR = 25, + ASN1_VISSTR = 26, + ASN1_GENSTR = 27, + ASN1_UNISTR = 28, + ASN1_CHRSTR = 29, + ASN1_BMPSTR = 30, + ASN1_LONG_TAG = 31, +}; + +typedef int (*asn1_action_t)(void *, size_t, unsigned char, const void *, size_t); + +struct asn1_decoder { + const unsigned char *machine; + size_t machlen; + const asn1_action_t *actions; +}; + +enum asn1_opcode { + ASN1_OP_MATCH = 0, + ASN1_OP_MATCH_OR_SKIP = 1, + ASN1_OP_MATCH_ACT = 2, + ASN1_OP_MATCH_ACT_OR_SKIP = 3, + ASN1_OP_MATCH_JUMP = 4, + ASN1_OP_MATCH_JUMP_OR_SKIP = 5, + ASN1_OP_MATCH_ANY = 8, + ASN1_OP_MATCH_ANY_OR_SKIP = 9, + ASN1_OP_MATCH_ANY_ACT = 10, + ASN1_OP_MATCH_ANY_ACT_OR_SKIP = 11, + ASN1_OP_COND_MATCH_OR_SKIP = 17, + ASN1_OP_COND_MATCH_ACT_OR_SKIP = 19, + ASN1_OP_COND_MATCH_JUMP_OR_SKIP = 21, + ASN1_OP_COND_MATCH_ANY = 24, + ASN1_OP_COND_MATCH_ANY_OR_SKIP = 25, + ASN1_OP_COND_MATCH_ANY_ACT = 26, + ASN1_OP_COND_MATCH_ANY_ACT_OR_SKIP = 27, + ASN1_OP_COND_FAIL = 28, + ASN1_OP_COMPLETE = 29, + ASN1_OP_ACT = 30, + ASN1_OP_MAYBE_ACT = 31, + ASN1_OP_END_SEQ = 32, + ASN1_OP_END_SET = 33, + ASN1_OP_END_SEQ_OF = 34, + ASN1_OP_END_SET_OF = 35, + ASN1_OP_END_SEQ_ACT = 36, + ASN1_OP_END_SET_ACT = 37, + ASN1_OP_END_SEQ_OF_ACT = 38, + ASN1_OP_END_SET_OF_ACT = 39, + ASN1_OP_RETURN = 40, + ASN1_OP__NR = 41, +}; + +enum tpm2key_actions { + ACT_tpm2_key_parent = 0, + ACT_tpm2_key_priv = 1, + ACT_tpm2_key_pub = 2, + ACT_tpm2_key_type = 3, + NR__tpm2key_actions = 4, +}; + +struct encrypted_key_payload { + struct callback_head rcu; + char *format; + char *master_desc; + char *datalen; + u8 *iv; + u8 *encrypted_data; + short unsigned int datablob_len; + short unsigned int decrypted_datalen; + short unsigned int payload_datalen; + short unsigned int encrypted_key_format; + u8 *decrypted_data; + u8 payload_data[0]; +}; + +struct skcipher_alg_common { + unsigned int min_keysize; + unsigned int max_keysize; + unsigned int ivsize; + unsigned int chunksize; + unsigned int statesize; + struct crypto_alg base; +}; + +struct ecryptfs_session_key { + u32 flags; + u32 encrypted_key_size; + u32 decrypted_key_size; + u8 encrypted_key[512]; + u8 decrypted_key[64]; +}; + +struct ecryptfs_password { + u32 password_bytes; + s32 hash_algo; + u32 hash_iterations; + u32 session_key_encryption_key_bytes; + u32 flags; + u8 session_key_encryption_key[64]; + u8 signature[17]; + u8 salt[8]; +}; + +struct ecryptfs_private_key { + u32 key_size; + u32 data_len; + u8 signature[17]; + char pki_type[17]; + u8 data[0]; +}; + +struct ecryptfs_auth_tok { + u16 version; + u16 token_type; + u32 flags; + struct ecryptfs_session_key session_key; + u8 reserved[32]; + union { + struct ecryptfs_password password; + struct ecryptfs_private_key private_key; + } token; +}; + +enum { + Opt_new___2 = 0, + Opt_load___2 = 1, + Opt_update___2 = 2, + Opt_err___2 = 3, +}; + +enum { + Opt_default = 0, + Opt_ecryptfs = 1, + Opt_enc32 = 2, + Opt_error = 3, +}; + +enum derived_key_type { + ENC_KEY = 0, + AUTH_KEY = 1, +}; + +enum lsm_event { + LSM_POLICY_CHANGE = 0, +}; + +struct ethhdr { + unsigned char h_dest[6]; + unsigned char h_source[6]; + __be16 h_proto; +}; + +struct ethtool_drvinfo { + __u32 cmd; + char driver[32]; + char version[32]; + char fw_version[32]; + char bus_info[32]; + char erom_version[32]; + char reserved2[12]; + __u32 n_priv_flags; + __u32 n_stats; + __u32 testinfo_len; + __u32 eedump_len; + __u32 regdump_len; +}; + +struct ethtool_wolinfo { + __u32 cmd; + __u32 supported; + __u32 wolopts; + __u8 sopass[6]; +}; + +struct ethtool_tunable { + __u32 cmd; + __u32 id; + __u32 type_id; + __u32 len; + void *data[0]; +}; + +struct ethtool_regs { + __u32 cmd; + __u32 version; + __u32 len; + __u8 data[0]; +}; + +struct ethtool_eeprom { + __u32 cmd; + __u32 magic; + __u32 offset; + __u32 len; + __u8 data[0]; +}; + +struct ethtool_modinfo { + __u32 cmd; + __u32 type; + __u32 eeprom_len; + __u32 reserved[8]; +}; + +struct ethtool_coalesce { + __u32 cmd; + __u32 rx_coalesce_usecs; + __u32 rx_max_coalesced_frames; + __u32 rx_coalesce_usecs_irq; + __u32 rx_max_coalesced_frames_irq; + __u32 tx_coalesce_usecs; + __u32 tx_max_coalesced_frames; + __u32 tx_coalesce_usecs_irq; + __u32 tx_max_coalesced_frames_irq; + __u32 stats_block_coalesce_usecs; + __u32 use_adaptive_rx_coalesce; + __u32 use_adaptive_tx_coalesce; + __u32 pkt_rate_low; + __u32 rx_coalesce_usecs_low; + __u32 rx_max_coalesced_frames_low; + __u32 tx_coalesce_usecs_low; + __u32 tx_max_coalesced_frames_low; + __u32 pkt_rate_high; + __u32 rx_coalesce_usecs_high; + __u32 rx_max_coalesced_frames_high; + __u32 tx_coalesce_usecs_high; + __u32 tx_max_coalesced_frames_high; + __u32 rate_sample_interval; +}; + +struct ethtool_ringparam { + __u32 cmd; + __u32 rx_max_pending; + __u32 rx_mini_max_pending; + __u32 rx_jumbo_max_pending; + __u32 tx_max_pending; + __u32 rx_pending; + __u32 rx_mini_pending; + __u32 rx_jumbo_pending; + __u32 tx_pending; +}; + +struct ethtool_channels { + __u32 cmd; + __u32 max_rx; + __u32 max_tx; + __u32 max_other; + __u32 max_combined; + __u32 rx_count; + __u32 tx_count; + __u32 other_count; + __u32 combined_count; +}; + +struct ethtool_pauseparam { + __u32 cmd; + __u32 autoneg; + __u32 rx_pause; + __u32 tx_pause; +}; + +enum ethtool_link_ext_state { + ETHTOOL_LINK_EXT_STATE_AUTONEG = 0, + ETHTOOL_LINK_EXT_STATE_LINK_TRAINING_FAILURE = 1, + ETHTOOL_LINK_EXT_STATE_LINK_LOGICAL_MISMATCH = 2, + ETHTOOL_LINK_EXT_STATE_BAD_SIGNAL_INTEGRITY = 3, + ETHTOOL_LINK_EXT_STATE_NO_CABLE = 4, + ETHTOOL_LINK_EXT_STATE_CABLE_ISSUE = 5, + ETHTOOL_LINK_EXT_STATE_EEPROM_ISSUE = 6, + ETHTOOL_LINK_EXT_STATE_CALIBRATION_FAILURE = 7, + ETHTOOL_LINK_EXT_STATE_POWER_BUDGET_EXCEEDED = 8, + ETHTOOL_LINK_EXT_STATE_OVERHEAT = 9, + ETHTOOL_LINK_EXT_STATE_MODULE = 10, +}; + +enum ethtool_link_ext_substate_autoneg { + ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_PARTNER_DETECTED = 1, + ETHTOOL_LINK_EXT_SUBSTATE_AN_ACK_NOT_RECEIVED = 2, + ETHTOOL_LINK_EXT_SUBSTATE_AN_NEXT_PAGE_EXCHANGE_FAILED = 3, + ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_PARTNER_DETECTED_FORCE_MODE = 4, + ETHTOOL_LINK_EXT_SUBSTATE_AN_FEC_MISMATCH_DURING_OVERRIDE = 5, + ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_HCD = 6, +}; + +enum ethtool_link_ext_substate_link_training { + ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_FRAME_LOCK_NOT_ACQUIRED = 1, + ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_LINK_INHIBIT_TIMEOUT = 2, + ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_LINK_PARTNER_DID_NOT_SET_RECEIVER_READY = 3, + ETHTOOL_LINK_EXT_SUBSTATE_LT_REMOTE_FAULT = 4, +}; + +enum ethtool_link_ext_substate_link_logical_mismatch { + ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_ACQUIRE_BLOCK_LOCK = 1, + ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_ACQUIRE_AM_LOCK = 2, + ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_GET_ALIGN_STATUS = 3, + ETHTOOL_LINK_EXT_SUBSTATE_LLM_FC_FEC_IS_NOT_LOCKED = 4, + ETHTOOL_LINK_EXT_SUBSTATE_LLM_RS_FEC_IS_NOT_LOCKED = 5, +}; + +enum ethtool_link_ext_substate_bad_signal_integrity { + ETHTOOL_LINK_EXT_SUBSTATE_BSI_LARGE_NUMBER_OF_PHYSICAL_ERRORS = 1, + ETHTOOL_LINK_EXT_SUBSTATE_BSI_UNSUPPORTED_RATE = 2, + ETHTOOL_LINK_EXT_SUBSTATE_BSI_SERDES_REFERENCE_CLOCK_LOST = 3, + ETHTOOL_LINK_EXT_SUBSTATE_BSI_SERDES_ALOS = 4, +}; + +enum ethtool_link_ext_substate_cable_issue { + ETHTOOL_LINK_EXT_SUBSTATE_CI_UNSUPPORTED_CABLE = 1, + ETHTOOL_LINK_EXT_SUBSTATE_CI_CABLE_TEST_FAILURE = 2, +}; + +enum ethtool_link_ext_substate_module { + ETHTOOL_LINK_EXT_SUBSTATE_MODULE_CMIS_NOT_READY = 1, +}; + +enum ethtool_mac_stats_src { + ETHTOOL_MAC_STATS_SRC_AGGREGATE = 0, + ETHTOOL_MAC_STATS_SRC_EMAC = 1, + ETHTOOL_MAC_STATS_SRC_PMAC = 2, +}; + +enum ethtool_module_power_mode_policy { + ETHTOOL_MODULE_POWER_MODE_POLICY_HIGH = 1, + ETHTOOL_MODULE_POWER_MODE_POLICY_AUTO = 2, +}; + +enum ethtool_module_power_mode { + ETHTOOL_MODULE_POWER_MODE_LOW = 1, + ETHTOOL_MODULE_POWER_MODE_HIGH = 2, +}; + +enum ethtool_mm_verify_status { + ETHTOOL_MM_VERIFY_STATUS_UNKNOWN = 0, + ETHTOOL_MM_VERIFY_STATUS_INITIAL = 1, + ETHTOOL_MM_VERIFY_STATUS_VERIFYING = 2, + ETHTOOL_MM_VERIFY_STATUS_SUCCEEDED = 3, + ETHTOOL_MM_VERIFY_STATUS_FAILED = 4, + ETHTOOL_MM_VERIFY_STATUS_DISABLED = 5, +}; + +struct ethtool_test { + __u32 cmd; + __u32 flags; + __u32 reserved; + __u32 len; + __u64 data[0]; +}; + +struct ethtool_stats { + __u32 cmd; + __u32 n_stats; + __u64 data[0]; +}; + +struct ethtool_tcpip4_spec { + __be32 ip4src; + __be32 ip4dst; + __be16 psrc; + __be16 pdst; + __u8 tos; +}; + +struct ethtool_ah_espip4_spec { + __be32 ip4src; + __be32 ip4dst; + __be32 spi; + __u8 tos; +}; + +struct ethtool_usrip4_spec { + __be32 ip4src; + __be32 ip4dst; + __be32 l4_4_bytes; + __u8 tos; + __u8 ip_ver; + __u8 proto; +}; + +struct ethtool_tcpip6_spec { + __be32 ip6src[4]; + __be32 ip6dst[4]; + __be16 psrc; + __be16 pdst; + __u8 tclass; +}; + +struct ethtool_ah_espip6_spec { + __be32 ip6src[4]; + __be32 ip6dst[4]; + __be32 spi; + __u8 tclass; +}; + +struct ethtool_usrip6_spec { + __be32 ip6src[4]; + __be32 ip6dst[4]; + __be32 l4_4_bytes; + __u8 tclass; + __u8 l4_proto; +}; + +union ethtool_flow_union { + struct ethtool_tcpip4_spec tcp_ip4_spec; + struct ethtool_tcpip4_spec udp_ip4_spec; + struct ethtool_tcpip4_spec sctp_ip4_spec; + struct ethtool_ah_espip4_spec ah_ip4_spec; + struct ethtool_ah_espip4_spec esp_ip4_spec; + struct ethtool_usrip4_spec usr_ip4_spec; + struct ethtool_tcpip6_spec tcp_ip6_spec; + struct ethtool_tcpip6_spec udp_ip6_spec; + struct ethtool_tcpip6_spec sctp_ip6_spec; + struct ethtool_ah_espip6_spec ah_ip6_spec; + struct ethtool_ah_espip6_spec esp_ip6_spec; + struct ethtool_usrip6_spec usr_ip6_spec; + struct ethhdr ether_spec; + __u8 hdata[52]; +}; + +struct ethtool_flow_ext { + __u8 padding[2]; + unsigned char h_dest[6]; + __be16 vlan_etype; + __be16 vlan_tci; + __be32 data[2]; +}; + +struct ethtool_rx_flow_spec { + __u32 flow_type; + union ethtool_flow_union h_u; + struct ethtool_flow_ext h_ext; + union ethtool_flow_union m_u; + struct ethtool_flow_ext m_ext; + __u64 ring_cookie; + __u32 location; +}; + +struct ethtool_rxnfc { + __u32 cmd; + __u32 flow_type; + __u64 data; + struct ethtool_rx_flow_spec fs; + union { + __u32 rule_cnt; + __u32 rss_context; + }; + __u32 rule_locs[0]; +}; + +struct ethtool_flash { + __u32 cmd; + __u32 region; + char data[128]; +}; + +struct ethtool_dump { + __u32 cmd; + __u32 version; + __u32 flag; + __u32 len; + __u8 data[0]; +}; + +struct ethtool_fecparam { + __u32 cmd; + __u32 active_fec; + __u32 fec; + __u32 reserved; +}; + +struct ethtool_link_settings { + __u32 cmd; + __u32 speed; + __u8 duplex; + __u8 port; + __u8 phy_address; + __u8 autoneg; + __u8 mdio_support; + __u8 eth_tp_mdix; + __u8 eth_tp_mdix_ctrl; + __s8 link_mode_masks_nwords; + __u8 transceiver; + __u8 master_slave_cfg; + __u8 master_slave_state; + __u8 rate_matching; + __u32 reserved[7]; +}; + +struct kernel_ethtool_ringparam { + u32 rx_buf_len; + u8 tcp_data_split; + u8 tx_push; + u8 rx_push; + u32 cqe_size; + u32 tx_push_buf_len; + u32 tx_push_buf_max_len; + u32 hds_thresh; + u32 hds_thresh_max; +}; + +struct ethtool_link_ext_state_info { + enum ethtool_link_ext_state link_ext_state; + union { + enum ethtool_link_ext_substate_autoneg autoneg; + enum ethtool_link_ext_substate_link_training link_training; + enum ethtool_link_ext_substate_link_logical_mismatch link_logical_mismatch; + enum ethtool_link_ext_substate_bad_signal_integrity bad_signal_integrity; + enum ethtool_link_ext_substate_cable_issue cable_issue; + enum ethtool_link_ext_substate_module module; + u32 __link_ext_substate; + }; +}; + +struct ethtool_link_ext_stats { + u64 link_down_events; +}; + +struct ethtool_rxfh_context { + u32 indir_size; + u32 key_size; + u16 priv_size; + u8 hfunc; + u8 input_xfrm; + u8 indir_configured: 1; + u8 key_configured: 1; + u32 key_off; + long: 0; + u8 data[0]; +}; + +struct ethtool_link_ksettings { + struct ethtool_link_settings base; + struct { + long unsigned int supported[2]; + long unsigned int advertising[2]; + long unsigned int lp_advertising[2]; + } link_modes; + u32 lanes; +}; + +struct ethtool_keee { + long unsigned int supported[2]; + long unsigned int advertised[2]; + long unsigned int lp_advertised[2]; + u32 tx_lpi_timer; + bool tx_lpi_enabled; + bool eee_active; + bool eee_enabled; +}; + +struct kernel_ethtool_coalesce { + u8 use_cqe_mode_tx; + u8 use_cqe_mode_rx; + u32 tx_aggr_max_bytes; + u32 tx_aggr_max_frames; + u32 tx_aggr_time_usecs; +}; + +struct ethtool_eth_mac_stats { + enum ethtool_mac_stats_src src; + union { + struct { + u64 FramesTransmittedOK; + u64 SingleCollisionFrames; + u64 MultipleCollisionFrames; + u64 FramesReceivedOK; + u64 FrameCheckSequenceErrors; + u64 AlignmentErrors; + u64 OctetsTransmittedOK; + u64 FramesWithDeferredXmissions; + u64 LateCollisions; + u64 FramesAbortedDueToXSColls; + u64 FramesLostDueToIntMACXmitError; + u64 CarrierSenseErrors; + u64 OctetsReceivedOK; + u64 FramesLostDueToIntMACRcvError; + u64 MulticastFramesXmittedOK; + u64 BroadcastFramesXmittedOK; + u64 FramesWithExcessiveDeferral; + u64 MulticastFramesReceivedOK; + u64 BroadcastFramesReceivedOK; + u64 InRangeLengthErrors; + u64 OutOfRangeLengthField; + u64 FrameTooLongErrors; + }; + struct { + u64 FramesTransmittedOK; + u64 SingleCollisionFrames; + u64 MultipleCollisionFrames; + u64 FramesReceivedOK; + u64 FrameCheckSequenceErrors; + u64 AlignmentErrors; + u64 OctetsTransmittedOK; + u64 FramesWithDeferredXmissions; + u64 LateCollisions; + u64 FramesAbortedDueToXSColls; + u64 FramesLostDueToIntMACXmitError; + u64 CarrierSenseErrors; + u64 OctetsReceivedOK; + u64 FramesLostDueToIntMACRcvError; + u64 MulticastFramesXmittedOK; + u64 BroadcastFramesXmittedOK; + u64 FramesWithExcessiveDeferral; + u64 MulticastFramesReceivedOK; + u64 BroadcastFramesReceivedOK; + u64 InRangeLengthErrors; + u64 OutOfRangeLengthField; + u64 FrameTooLongErrors; + } stats; + }; +}; + +struct ethtool_eth_phy_stats { + enum ethtool_mac_stats_src src; + union { + struct { + u64 SymbolErrorDuringCarrier; + }; + struct { + u64 SymbolErrorDuringCarrier; + } stats; + }; +}; + +struct ethtool_eth_ctrl_stats { + enum ethtool_mac_stats_src src; + union { + struct { + u64 MACControlFramesTransmitted; + u64 MACControlFramesReceived; + u64 UnsupportedOpcodesReceived; + }; + struct { + u64 MACControlFramesTransmitted; + u64 MACControlFramesReceived; + u64 UnsupportedOpcodesReceived; + } stats; + }; +}; + +struct ethtool_pause_stats { + enum ethtool_mac_stats_src src; + union { + struct { + u64 tx_pause_frames; + u64 rx_pause_frames; + }; + struct { + u64 tx_pause_frames; + u64 rx_pause_frames; + } stats; + }; +}; + +struct ethtool_fec_stat { + u64 total; + u64 lanes[8]; +}; + +struct ethtool_fec_stats { + struct ethtool_fec_stat corrected_blocks; + struct ethtool_fec_stat uncorrectable_blocks; + struct ethtool_fec_stat corrected_bits; +}; + +struct ethtool_rmon_hist_range { + u16 low; + u16 high; +}; + +struct ethtool_rmon_stats { + enum ethtool_mac_stats_src src; + union { + struct { + u64 undersize_pkts; + u64 oversize_pkts; + u64 fragments; + u64 jabbers; + u64 hist[11]; + u64 hist_tx[11]; + }; + struct { + u64 undersize_pkts; + u64 oversize_pkts; + u64 fragments; + u64 jabbers; + u64 hist[11]; + u64 hist_tx[11]; + } stats; + }; +}; + +struct ethtool_ts_stats { + union { + struct { + u64 pkts; + u64 onestep_pkts_unconfirmed; + u64 lost; + u64 err; + }; + struct { + u64 pkts; + u64 onestep_pkts_unconfirmed; + u64 lost; + u64 err; + } tx_stats; + }; +}; + +struct ethtool_module_eeprom { + u32 offset; + u32 length; + u8 page; + u8 bank; + u8 i2c_address; + u8 *data; +}; + +struct ethtool_module_power_mode_params { + enum ethtool_module_power_mode_policy policy; + enum ethtool_module_power_mode mode; +}; + +struct ethtool_mm_state { + u32 verify_time; + u32 max_verify_time; + enum ethtool_mm_verify_status verify_status; + bool tx_enabled; + bool tx_active; + bool pmac_enabled; + bool verify_enabled; + u32 tx_min_frag_size; + u32 rx_min_frag_size; +}; + +struct ethtool_mm_cfg { + u32 verify_time; + bool verify_enabled; + bool tx_enabled; + bool pmac_enabled; + u32 tx_min_frag_size; +}; + +struct ethtool_mm_stats { + u64 MACMergeFrameAssErrorCount; + u64 MACMergeFrameSmdErrorCount; + u64 MACMergeFrameAssOkCount; + u64 MACMergeFragCountRx; + u64 MACMergeFragCountTx; + u64 MACMergeHoldCount; +}; + +struct ethtool_rxfh_param { + u8 hfunc; + u32 indir_size; + u32 *indir; + u32 key_size; + u8 *key; + u32 rss_context; + u8 rss_delete; + u8 input_xfrm; +}; + +struct ethtool_rxfh_fields { + u32 data; + u32 flow_type; + u32 rss_context; +}; + +struct kernel_ethtool_ts_info { + u32 cmd; + u32 so_timestamping; + int phc_index; + enum hwtstamp_provider_qualifier phc_qualifier; + enum hwtstamp_source phc_source; + int phc_phyindex; + u32 tx_types; + u32 rx_filters; +}; + +struct ethtool_netdev_state { + struct xarray rss_ctx; + struct mutex rss_lock; + unsigned int wol_enabled: 1; + unsigned int module_fw_flash_in_progress: 1; +}; + +struct dim_cq_moder; + +struct dim_irq_moder { + u8 profile_flags; + u8 coal_flags; + u8 dim_rx_mode; + u8 dim_tx_mode; + struct dim_cq_moder *rx_profile; + struct dim_cq_moder *tx_profile; + void (*rx_dim_work)(struct work_struct *); + void (*tx_dim_work)(struct work_struct *); +}; + +struct dim_cq_moder { + u16 usec; + u16 pkts; + u16 comps; + u8 cq_period_mode; + struct callback_head rcu; +}; + +enum ib_uverbs_write_cmds { + IB_USER_VERBS_CMD_GET_CONTEXT = 0, + IB_USER_VERBS_CMD_QUERY_DEVICE = 1, + IB_USER_VERBS_CMD_QUERY_PORT = 2, + IB_USER_VERBS_CMD_ALLOC_PD = 3, + IB_USER_VERBS_CMD_DEALLOC_PD = 4, + IB_USER_VERBS_CMD_CREATE_AH = 5, + IB_USER_VERBS_CMD_MODIFY_AH = 6, + IB_USER_VERBS_CMD_QUERY_AH = 7, + IB_USER_VERBS_CMD_DESTROY_AH = 8, + IB_USER_VERBS_CMD_REG_MR = 9, + IB_USER_VERBS_CMD_REG_SMR = 10, + IB_USER_VERBS_CMD_REREG_MR = 11, + IB_USER_VERBS_CMD_QUERY_MR = 12, + IB_USER_VERBS_CMD_DEREG_MR = 13, + IB_USER_VERBS_CMD_ALLOC_MW = 14, + IB_USER_VERBS_CMD_BIND_MW = 15, + IB_USER_VERBS_CMD_DEALLOC_MW = 16, + IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL = 17, + IB_USER_VERBS_CMD_CREATE_CQ = 18, + IB_USER_VERBS_CMD_RESIZE_CQ = 19, + IB_USER_VERBS_CMD_DESTROY_CQ = 20, + IB_USER_VERBS_CMD_POLL_CQ = 21, + IB_USER_VERBS_CMD_PEEK_CQ = 22, + IB_USER_VERBS_CMD_REQ_NOTIFY_CQ = 23, + IB_USER_VERBS_CMD_CREATE_QP = 24, + IB_USER_VERBS_CMD_QUERY_QP = 25, + IB_USER_VERBS_CMD_MODIFY_QP = 26, + IB_USER_VERBS_CMD_DESTROY_QP = 27, + IB_USER_VERBS_CMD_POST_SEND = 28, + IB_USER_VERBS_CMD_POST_RECV = 29, + IB_USER_VERBS_CMD_ATTACH_MCAST = 30, + IB_USER_VERBS_CMD_DETACH_MCAST = 31, + IB_USER_VERBS_CMD_CREATE_SRQ = 32, + IB_USER_VERBS_CMD_MODIFY_SRQ = 33, + IB_USER_VERBS_CMD_QUERY_SRQ = 34, + IB_USER_VERBS_CMD_DESTROY_SRQ = 35, + IB_USER_VERBS_CMD_POST_SRQ_RECV = 36, + IB_USER_VERBS_CMD_OPEN_XRCD = 37, + IB_USER_VERBS_CMD_CLOSE_XRCD = 38, + IB_USER_VERBS_CMD_CREATE_XSRQ = 39, + IB_USER_VERBS_CMD_OPEN_QP = 40, +}; + +enum ib_uverbs_odp_general_cap_bits { + IB_UVERBS_ODP_SUPPORT = 1, + IB_UVERBS_ODP_SUPPORT_IMPLICIT = 2, +}; + +enum ib_uverbs_odp_transport_cap_bits { + IB_UVERBS_ODP_SUPPORT_SEND = 1, + IB_UVERBS_ODP_SUPPORT_RECV = 2, + IB_UVERBS_ODP_SUPPORT_WRITE = 4, + IB_UVERBS_ODP_SUPPORT_READ = 8, + IB_UVERBS_ODP_SUPPORT_ATOMIC = 16, + IB_UVERBS_ODP_SUPPORT_SRQ_RECV = 32, + IB_UVERBS_ODP_SUPPORT_FLUSH = 64, + IB_UVERBS_ODP_SUPPORT_ATOMIC_WRITE = 128, +}; + +enum ib_uverbs_wc_opcode { + IB_UVERBS_WC_SEND = 0, + IB_UVERBS_WC_RDMA_WRITE = 1, + IB_UVERBS_WC_RDMA_READ = 2, + IB_UVERBS_WC_COMP_SWAP = 3, + IB_UVERBS_WC_FETCH_ADD = 4, + IB_UVERBS_WC_BIND_MW = 5, + IB_UVERBS_WC_LOCAL_INV = 6, + IB_UVERBS_WC_TSO = 7, + IB_UVERBS_WC_FLUSH = 8, + IB_UVERBS_WC_ATOMIC_WRITE = 9, +}; + +enum ib_uverbs_create_qp_mask { + IB_UVERBS_CREATE_QP_MASK_IND_TABLE = 1, +}; + +enum ib_uverbs_wr_opcode { + IB_UVERBS_WR_RDMA_WRITE = 0, + IB_UVERBS_WR_RDMA_WRITE_WITH_IMM = 1, + IB_UVERBS_WR_SEND = 2, + IB_UVERBS_WR_SEND_WITH_IMM = 3, + IB_UVERBS_WR_RDMA_READ = 4, + IB_UVERBS_WR_ATOMIC_CMP_AND_SWP = 5, + IB_UVERBS_WR_ATOMIC_FETCH_AND_ADD = 6, + IB_UVERBS_WR_LOCAL_INV = 7, + IB_UVERBS_WR_BIND_MW = 8, + IB_UVERBS_WR_SEND_WITH_INV = 9, + IB_UVERBS_WR_TSO = 10, + IB_UVERBS_WR_RDMA_READ_WITH_INV = 11, + IB_UVERBS_WR_MASKED_ATOMIC_CMP_AND_SWP = 12, + IB_UVERBS_WR_MASKED_ATOMIC_FETCH_AND_ADD = 13, + IB_UVERBS_WR_FLUSH = 14, + IB_UVERBS_WR_ATOMIC_WRITE = 15, +}; + +enum ib_uverbs_device_cap_flags { + IB_UVERBS_DEVICE_RESIZE_MAX_WR = 1ULL, + IB_UVERBS_DEVICE_BAD_PKEY_CNTR = 2ULL, + IB_UVERBS_DEVICE_BAD_QKEY_CNTR = 4ULL, + IB_UVERBS_DEVICE_RAW_MULTI = 8ULL, + IB_UVERBS_DEVICE_AUTO_PATH_MIG = 16ULL, + IB_UVERBS_DEVICE_CHANGE_PHY_PORT = 32ULL, + IB_UVERBS_DEVICE_UD_AV_PORT_ENFORCE = 64ULL, + IB_UVERBS_DEVICE_CURR_QP_STATE_MOD = 128ULL, + IB_UVERBS_DEVICE_SHUTDOWN_PORT = 256ULL, + IB_UVERBS_DEVICE_PORT_ACTIVE_EVENT = 1024ULL, + IB_UVERBS_DEVICE_SYS_IMAGE_GUID = 2048ULL, + IB_UVERBS_DEVICE_RC_RNR_NAK_GEN = 4096ULL, + IB_UVERBS_DEVICE_SRQ_RESIZE = 8192ULL, + IB_UVERBS_DEVICE_N_NOTIFY_CQ = 16384ULL, + IB_UVERBS_DEVICE_MEM_WINDOW = 131072ULL, + IB_UVERBS_DEVICE_UD_IP_CSUM = 262144ULL, + IB_UVERBS_DEVICE_XRC = 1048576ULL, + IB_UVERBS_DEVICE_MEM_MGT_EXTENSIONS = 2097152ULL, + IB_UVERBS_DEVICE_MEM_WINDOW_TYPE_2A = 8388608ULL, + IB_UVERBS_DEVICE_MEM_WINDOW_TYPE_2B = 16777216ULL, + IB_UVERBS_DEVICE_RC_IP_CSUM = 33554432ULL, + IB_UVERBS_DEVICE_RAW_IP_CSUM = 67108864ULL, + IB_UVERBS_DEVICE_MANAGED_FLOW_STEERING = 536870912ULL, + IB_UVERBS_DEVICE_RAW_SCATTER_FCS = 17179869184ULL, + IB_UVERBS_DEVICE_PCI_WRITE_END_PADDING = 68719476736ULL, + IB_UVERBS_DEVICE_FLUSH_GLOBAL = 274877906944ULL, + IB_UVERBS_DEVICE_FLUSH_PERSISTENT = 549755813888ULL, + IB_UVERBS_DEVICE_ATOMIC_WRITE = 1099511627776ULL, +}; + +enum ib_uverbs_raw_packet_caps { + IB_UVERBS_RAW_PACKET_CAP_CVLAN_STRIPPING = 1, + IB_UVERBS_RAW_PACKET_CAP_SCATTER_FCS = 2, + IB_UVERBS_RAW_PACKET_CAP_IP_CSUM = 4, + IB_UVERBS_RAW_PACKET_CAP_DELAY_DROP = 8, +}; + +enum ib_uverbs_access_flags { + IB_UVERBS_ACCESS_LOCAL_WRITE = 1, + IB_UVERBS_ACCESS_REMOTE_WRITE = 2, + IB_UVERBS_ACCESS_REMOTE_READ = 4, + IB_UVERBS_ACCESS_REMOTE_ATOMIC = 8, + IB_UVERBS_ACCESS_MW_BIND = 16, + IB_UVERBS_ACCESS_ZERO_BASED = 32, + IB_UVERBS_ACCESS_ON_DEMAND = 64, + IB_UVERBS_ACCESS_HUGETLB = 128, + IB_UVERBS_ACCESS_FLUSH_GLOBAL = 256, + IB_UVERBS_ACCESS_FLUSH_PERSISTENT = 512, + IB_UVERBS_ACCESS_RELAXED_ORDERING = 1048576, + IB_UVERBS_ACCESS_OPTIONAL_RANGE = 1072693248, +}; + +enum ib_uverbs_srq_type { + IB_UVERBS_SRQT_BASIC = 0, + IB_UVERBS_SRQT_XRC = 1, + IB_UVERBS_SRQT_TM = 2, +}; + +enum ib_uverbs_wq_type { + IB_UVERBS_WQT_RQ = 0, +}; + +enum ib_uverbs_wq_flags { + IB_UVERBS_WQ_FLAGS_CVLAN_STRIPPING = 1, + IB_UVERBS_WQ_FLAGS_SCATTER_FCS = 2, + IB_UVERBS_WQ_FLAGS_DELAY_DROP = 4, + IB_UVERBS_WQ_FLAGS_PCI_WRITE_END_PADDING = 8, +}; + +enum ib_uverbs_qp_type { + IB_UVERBS_QPT_RC = 2, + IB_UVERBS_QPT_UC = 3, + IB_UVERBS_QPT_UD = 4, + IB_UVERBS_QPT_RAW_PACKET = 8, + IB_UVERBS_QPT_XRC_INI = 9, + IB_UVERBS_QPT_XRC_TGT = 10, + IB_UVERBS_QPT_DRIVER = 255, +}; + +enum ib_uverbs_qp_create_flags { + IB_UVERBS_QP_CREATE_BLOCK_MULTICAST_LOOPBACK = 2, + IB_UVERBS_QP_CREATE_SCATTER_FCS = 256, + IB_UVERBS_QP_CREATE_CVLAN_STRIPPING = 512, + IB_UVERBS_QP_CREATE_PCI_WRITE_END_PADDING = 2048, + IB_UVERBS_QP_CREATE_SQ_SIG_ALL = 4096, +}; + +enum ib_uverbs_gid_type { + IB_UVERBS_GID_TYPE_IB = 0, + IB_UVERBS_GID_TYPE_ROCE_V1 = 1, + IB_UVERBS_GID_TYPE_ROCE_V2 = 2, +}; + +enum ib_poll_context { + IB_POLL_SOFTIRQ = 0, + IB_POLL_WORKQUEUE = 1, + IB_POLL_UNBOUND_WORKQUEUE = 2, + IB_POLL_LAST_POOL_TYPE = 2, + IB_POLL_DIRECT = 3, +}; + +struct lsm_network_audit { + int netif; + const struct sock *sk; + u16 family; + __be16 dport; + __be16 sport; + union { + struct { + __be32 daddr; + __be32 saddr; + } v4; + struct { + struct in6_addr daddr; + struct in6_addr saddr; + } v6; + } fam; +}; + +struct lsm_ioctlop_audit { + struct path path; + u16 cmd; +}; + +struct lsm_ibpkey_audit { + u64 subnet_prefix; + u16 pkey; +}; + +struct lsm_ibendport_audit { + const char *dev_name; + u8 port; +}; + +struct selinux_audit_data { + u32 ssid; + u32 tsid; + u16 tclass; + u32 requested; + u32 audited; + u32 denied; + int result; +}; + +struct smack_audit_data; + +struct apparmor_audit_data; + +struct common_audit_data { + char type; + union { + struct path path; + struct dentry *dentry; + struct inode *inode; + struct lsm_network_audit *net; + int cap; + int ipc_id; + struct task_struct *tsk; + struct { + key_serial_t key; + char *key_desc; + } key_struct; + char *kmod_name; + struct lsm_ioctlop_audit *op; + struct file *file; + struct lsm_ibpkey_audit *ibpkey; + struct lsm_ibendport_audit *ibendport; + int reason; + const char *anonclass; + u16 nlmsg_type; + } u; + union { + struct smack_audit_data *smack_audit_data; + struct selinux_audit_data *selinux_audit_data; + struct apparmor_audit_data *apparmor_audit_data; + }; +}; + +enum { + POLICYDB_CAP_NETPEER = 0, + POLICYDB_CAP_OPENPERM = 1, + POLICYDB_CAP_EXTSOCKCLASS = 2, + POLICYDB_CAP_ALWAYSNETWORK = 3, + POLICYDB_CAP_CGROUPSECLABEL = 4, + POLICYDB_CAP_NNP_NOSUID_TRANSITION = 5, + POLICYDB_CAP_GENFS_SECLABEL_SYMLINKS = 6, + POLICYDB_CAP_IOCTL_SKIP_CLOEXEC = 7, + POLICYDB_CAP_USERSPACE_INITIAL_CONTEXT = 8, + POLICYDB_CAP_NETLINK_XPERM = 9, + POLICYDB_CAP_NETIF_WILDCARD = 10, + POLICYDB_CAP_GENFS_SECLABEL_WILDCARD = 11, + __POLICYDB_CAP_MAX = 12, +}; + +struct selinux_policy; + +struct selinux_state { + bool enforcing; + bool initialized; + bool policycap[12]; + struct page *status_page; + struct mutex status_lock; + struct selinux_policy *policy; + struct mutex policy_mutex; +}; + +struct selinux_policy_convert_data; + +struct selinux_load_state { + struct selinux_policy *policy; + struct selinux_policy_convert_data *convert_data; +}; + +struct av_decision { + u32 allowed; + u32 auditallow; + u32 auditdeny; + u32 seqno; + u32 flags; +}; + +struct avc_cache_stats { + unsigned int lookups; + unsigned int misses; + unsigned int allocations; + unsigned int reclaims; + unsigned int frees; +}; + +struct cred_security_struct { + u32 osid; + u32 sid; + u32 exec_sid; + u32 create_sid; + u32 keycreate_sid; + u32 sockcreate_sid; +}; + +enum label_initialized { + LABEL_INVALID = 0, + LABEL_INITIALIZED = 1, + LABEL_PENDING = 2, +}; + +struct inode_security_struct { + struct inode *inode; + struct list_head list; + u32 task_sid; + u32 sid; + u16 sclass; + unsigned char initialized; + spinlock_t lock; +}; + +enum sel_inos { + SEL_ROOT_INO = 2, + SEL_LOAD = 3, + SEL_ENFORCE = 4, + SEL_CONTEXT = 5, + SEL_ACCESS = 6, + SEL_CREATE = 7, + SEL_RELABEL = 8, + SEL_USER = 9, + SEL_POLICYVERS = 10, + SEL_COMMIT_BOOLS = 11, + SEL_MLS = 12, + SEL_DISABLE = 13, + SEL_MEMBER = 14, + SEL_CHECKREQPROT = 15, + SEL_COMPAT_NET = 16, + SEL_REJECT_UNKNOWN = 17, + SEL_DENY_UNKNOWN = 18, + SEL_STATUS = 19, + SEL_POLICY = 20, + SEL_VALIDATE_TRANS = 21, + SEL_INO_NEXT = 22, +}; + +struct selinux_fs_info { + struct dentry *bool_dir; + unsigned int bool_num; + char **bool_pending_names; + int *bool_pending_values; + struct dentry *class_dir; + long unsigned int last_class_ino; + bool policy_opened; + struct dentry *policycap_dir; + long unsigned int last_ino; + struct super_block *sb; +}; + +struct policy_load_memory { + size_t len; + void *data; +}; + +enum ethtool_link_mode_bit_indices { + ETHTOOL_LINK_MODE_10baseT_Half_BIT = 0, + ETHTOOL_LINK_MODE_10baseT_Full_BIT = 1, + ETHTOOL_LINK_MODE_100baseT_Half_BIT = 2, + ETHTOOL_LINK_MODE_100baseT_Full_BIT = 3, + ETHTOOL_LINK_MODE_1000baseT_Half_BIT = 4, + ETHTOOL_LINK_MODE_1000baseT_Full_BIT = 5, + ETHTOOL_LINK_MODE_Autoneg_BIT = 6, + ETHTOOL_LINK_MODE_TP_BIT = 7, + ETHTOOL_LINK_MODE_AUI_BIT = 8, + ETHTOOL_LINK_MODE_MII_BIT = 9, + ETHTOOL_LINK_MODE_FIBRE_BIT = 10, + ETHTOOL_LINK_MODE_BNC_BIT = 11, + ETHTOOL_LINK_MODE_10000baseT_Full_BIT = 12, + ETHTOOL_LINK_MODE_Pause_BIT = 13, + ETHTOOL_LINK_MODE_Asym_Pause_BIT = 14, + ETHTOOL_LINK_MODE_2500baseX_Full_BIT = 15, + ETHTOOL_LINK_MODE_Backplane_BIT = 16, + ETHTOOL_LINK_MODE_1000baseKX_Full_BIT = 17, + ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT = 18, + ETHTOOL_LINK_MODE_10000baseKR_Full_BIT = 19, + ETHTOOL_LINK_MODE_10000baseR_FEC_BIT = 20, + ETHTOOL_LINK_MODE_20000baseMLD2_Full_BIT = 21, + ETHTOOL_LINK_MODE_20000baseKR2_Full_BIT = 22, + ETHTOOL_LINK_MODE_40000baseKR4_Full_BIT = 23, + ETHTOOL_LINK_MODE_40000baseCR4_Full_BIT = 24, + ETHTOOL_LINK_MODE_40000baseSR4_Full_BIT = 25, + ETHTOOL_LINK_MODE_40000baseLR4_Full_BIT = 26, + ETHTOOL_LINK_MODE_56000baseKR4_Full_BIT = 27, + ETHTOOL_LINK_MODE_56000baseCR4_Full_BIT = 28, + ETHTOOL_LINK_MODE_56000baseSR4_Full_BIT = 29, + ETHTOOL_LINK_MODE_56000baseLR4_Full_BIT = 30, + ETHTOOL_LINK_MODE_25000baseCR_Full_BIT = 31, + ETHTOOL_LINK_MODE_25000baseKR_Full_BIT = 32, + ETHTOOL_LINK_MODE_25000baseSR_Full_BIT = 33, + ETHTOOL_LINK_MODE_50000baseCR2_Full_BIT = 34, + ETHTOOL_LINK_MODE_50000baseKR2_Full_BIT = 35, + ETHTOOL_LINK_MODE_100000baseKR4_Full_BIT = 36, + ETHTOOL_LINK_MODE_100000baseSR4_Full_BIT = 37, + ETHTOOL_LINK_MODE_100000baseCR4_Full_BIT = 38, + ETHTOOL_LINK_MODE_100000baseLR4_ER4_Full_BIT = 39, + ETHTOOL_LINK_MODE_50000baseSR2_Full_BIT = 40, + ETHTOOL_LINK_MODE_1000baseX_Full_BIT = 41, + ETHTOOL_LINK_MODE_10000baseCR_Full_BIT = 42, + ETHTOOL_LINK_MODE_10000baseSR_Full_BIT = 43, + ETHTOOL_LINK_MODE_10000baseLR_Full_BIT = 44, + ETHTOOL_LINK_MODE_10000baseLRM_Full_BIT = 45, + ETHTOOL_LINK_MODE_10000baseER_Full_BIT = 46, + ETHTOOL_LINK_MODE_2500baseT_Full_BIT = 47, + ETHTOOL_LINK_MODE_5000baseT_Full_BIT = 48, + ETHTOOL_LINK_MODE_FEC_NONE_BIT = 49, + ETHTOOL_LINK_MODE_FEC_RS_BIT = 50, + ETHTOOL_LINK_MODE_FEC_BASER_BIT = 51, + ETHTOOL_LINK_MODE_50000baseKR_Full_BIT = 52, + ETHTOOL_LINK_MODE_50000baseSR_Full_BIT = 53, + ETHTOOL_LINK_MODE_50000baseCR_Full_BIT = 54, + ETHTOOL_LINK_MODE_50000baseLR_ER_FR_Full_BIT = 55, + ETHTOOL_LINK_MODE_50000baseDR_Full_BIT = 56, + ETHTOOL_LINK_MODE_100000baseKR2_Full_BIT = 57, + ETHTOOL_LINK_MODE_100000baseSR2_Full_BIT = 58, + ETHTOOL_LINK_MODE_100000baseCR2_Full_BIT = 59, + ETHTOOL_LINK_MODE_100000baseLR2_ER2_FR2_Full_BIT = 60, + ETHTOOL_LINK_MODE_100000baseDR2_Full_BIT = 61, + ETHTOOL_LINK_MODE_200000baseKR4_Full_BIT = 62, + ETHTOOL_LINK_MODE_200000baseSR4_Full_BIT = 63, + ETHTOOL_LINK_MODE_200000baseLR4_ER4_FR4_Full_BIT = 64, + ETHTOOL_LINK_MODE_200000baseDR4_Full_BIT = 65, + ETHTOOL_LINK_MODE_200000baseCR4_Full_BIT = 66, + ETHTOOL_LINK_MODE_100baseT1_Full_BIT = 67, + ETHTOOL_LINK_MODE_1000baseT1_Full_BIT = 68, + ETHTOOL_LINK_MODE_400000baseKR8_Full_BIT = 69, + ETHTOOL_LINK_MODE_400000baseSR8_Full_BIT = 70, + ETHTOOL_LINK_MODE_400000baseLR8_ER8_FR8_Full_BIT = 71, + ETHTOOL_LINK_MODE_400000baseDR8_Full_BIT = 72, + ETHTOOL_LINK_MODE_400000baseCR8_Full_BIT = 73, + ETHTOOL_LINK_MODE_FEC_LLRS_BIT = 74, + ETHTOOL_LINK_MODE_100000baseKR_Full_BIT = 75, + ETHTOOL_LINK_MODE_100000baseSR_Full_BIT = 76, + ETHTOOL_LINK_MODE_100000baseLR_ER_FR_Full_BIT = 77, + ETHTOOL_LINK_MODE_100000baseCR_Full_BIT = 78, + ETHTOOL_LINK_MODE_100000baseDR_Full_BIT = 79, + ETHTOOL_LINK_MODE_200000baseKR2_Full_BIT = 80, + ETHTOOL_LINK_MODE_200000baseSR2_Full_BIT = 81, + ETHTOOL_LINK_MODE_200000baseLR2_ER2_FR2_Full_BIT = 82, + ETHTOOL_LINK_MODE_200000baseDR2_Full_BIT = 83, + ETHTOOL_LINK_MODE_200000baseCR2_Full_BIT = 84, + ETHTOOL_LINK_MODE_400000baseKR4_Full_BIT = 85, + ETHTOOL_LINK_MODE_400000baseSR4_Full_BIT = 86, + ETHTOOL_LINK_MODE_400000baseLR4_ER4_FR4_Full_BIT = 87, + ETHTOOL_LINK_MODE_400000baseDR4_Full_BIT = 88, + ETHTOOL_LINK_MODE_400000baseCR4_Full_BIT = 89, + ETHTOOL_LINK_MODE_100baseFX_Half_BIT = 90, + ETHTOOL_LINK_MODE_100baseFX_Full_BIT = 91, + ETHTOOL_LINK_MODE_10baseT1L_Full_BIT = 92, + ETHTOOL_LINK_MODE_800000baseCR8_Full_BIT = 93, + ETHTOOL_LINK_MODE_800000baseKR8_Full_BIT = 94, + ETHTOOL_LINK_MODE_800000baseDR8_Full_BIT = 95, + ETHTOOL_LINK_MODE_800000baseDR8_2_Full_BIT = 96, + ETHTOOL_LINK_MODE_800000baseSR8_Full_BIT = 97, + ETHTOOL_LINK_MODE_800000baseVR8_Full_BIT = 98, + ETHTOOL_LINK_MODE_10baseT1S_Full_BIT = 99, + ETHTOOL_LINK_MODE_10baseT1S_Half_BIT = 100, + ETHTOOL_LINK_MODE_10baseT1S_P2MP_Half_BIT = 101, + ETHTOOL_LINK_MODE_10baseT1BRR_Full_BIT = 102, + ETHTOOL_LINK_MODE_200000baseCR_Full_BIT = 103, + ETHTOOL_LINK_MODE_200000baseKR_Full_BIT = 104, + ETHTOOL_LINK_MODE_200000baseDR_Full_BIT = 105, + ETHTOOL_LINK_MODE_200000baseDR_2_Full_BIT = 106, + ETHTOOL_LINK_MODE_200000baseSR_Full_BIT = 107, + ETHTOOL_LINK_MODE_200000baseVR_Full_BIT = 108, + ETHTOOL_LINK_MODE_400000baseCR2_Full_BIT = 109, + ETHTOOL_LINK_MODE_400000baseKR2_Full_BIT = 110, + ETHTOOL_LINK_MODE_400000baseDR2_Full_BIT = 111, + ETHTOOL_LINK_MODE_400000baseDR2_2_Full_BIT = 112, + ETHTOOL_LINK_MODE_400000baseSR2_Full_BIT = 113, + ETHTOOL_LINK_MODE_400000baseVR2_Full_BIT = 114, + ETHTOOL_LINK_MODE_800000baseCR4_Full_BIT = 115, + ETHTOOL_LINK_MODE_800000baseKR4_Full_BIT = 116, + ETHTOOL_LINK_MODE_800000baseDR4_Full_BIT = 117, + ETHTOOL_LINK_MODE_800000baseDR4_2_Full_BIT = 118, + ETHTOOL_LINK_MODE_800000baseSR4_Full_BIT = 119, + ETHTOOL_LINK_MODE_800000baseVR4_Full_BIT = 120, + __ETHTOOL_LINK_MODE_MASK_NBITS = 121, +}; + +struct netnode_security_struct { + union { + __be32 ipv4; + struct in6_addr ipv6; + } addr; + u32 sid; + u16 family; +}; + +struct sel_netnode_bkt { + unsigned int size; + struct list_head list; +}; + +struct sel_netnode { + struct netnode_security_struct nsec; + struct list_head list; + struct callback_head rcu; +}; + +struct netport_security_struct { + u32 sid; + u16 port; + u8 protocol; +}; + +struct sel_netport_bkt { + int size; + struct list_head list; +}; + +struct sel_netport { + struct netport_security_struct psec; + struct list_head list; + struct callback_head rcu; +}; + +struct selinux_kernel_status { + u32 version; + u32 sequence; + u32 enforcing; + u32 policyload; + u32 deny_unknown; +}; + +struct netlbl_lsm_catmap { + u32 startbit; + u64 bitmap[4]; + struct netlbl_lsm_catmap *next; +}; + +struct ebitmap_node { + struct ebitmap_node *next; + long unsigned int maps[6]; + u32 startbit; +}; + +struct ebitmap { + struct ebitmap_node *node; + u32 highbit; +}; + +struct policy_file { + char *data; + size_t len; +}; + +struct extended_perms_data { + u32 p[8]; +}; + +struct hashtab_key_params { + u32 (*hash)(const void *); + int (*cmp)(const void *, const void *); +}; + +struct hashtab_node { + void *key; + void *datum; + struct hashtab_node *next; +}; + +struct hashtab { + struct hashtab_node **htable; + u32 size; + u32 nel; +}; + +struct symtab { + struct hashtab table; + u32 nprim; +}; + +struct avtab_key { + u16 source_type; + u16 target_type; + u16 target_class; + u16 specified; +}; + +struct avtab_extended_perms { + u8 specified; + u8 driver; + struct extended_perms_data perms; +}; + +struct avtab_datum { + union { + u32 data; + struct avtab_extended_perms *xperms; + } u; +}; + +struct avtab_node { + struct avtab_key key; + struct avtab_datum datum; + struct avtab_node *next; +}; + +struct avtab { + struct avtab_node **htable; + u32 nel; + u32 nslot; + u32 mask; +}; + +struct mls_level { + u32 sens; + struct ebitmap cat; +}; + +struct mls_range { + struct mls_level level[2]; +}; + +struct context { + u32 user; + u32 role; + u32 type; + u32 len; + struct mls_range range; + char *str; +}; + +struct sidtab_str_cache; + +struct sidtab_entry { + u32 sid; + u32 hash; + struct context context; + struct sidtab_str_cache *cache; + struct hlist_node list; +}; + +struct sidtab_node_inner; + +struct sidtab_node_leaf; + +union sidtab_entry_inner { + struct sidtab_node_inner *ptr_inner; + struct sidtab_node_leaf *ptr_leaf; +}; + +struct sidtab_node_inner { + union sidtab_entry_inner entries[512]; +}; + +struct sidtab_node_leaf { + struct sidtab_entry entries[39]; +}; + +struct sidtab_isid_entry { + int set; + struct sidtab_entry entry; +}; + +struct convert_context_args; + +struct sidtab; + +struct sidtab_convert_params { + struct convert_context_args *args; + struct sidtab *target; +}; + +struct policydb; + +struct convert_context_args { + struct policydb *oldp; + struct policydb *newp; +}; + +struct sidtab { + union sidtab_entry_inner roots[4]; + u32 count; + struct sidtab_convert_params *convert; + bool frozen; + spinlock_t lock; + u32 cache_free_slots; + struct list_head cache_lru_list; + spinlock_t cache_lock; + struct sidtab_isid_entry isids[27]; + struct hlist_head context_to_sid[512]; +}; + +struct type_set; + +struct constraint_expr { + u32 expr_type; + u32 attr; + u32 op; + struct ebitmap names; + struct type_set *type_names; + struct constraint_expr *next; +}; + +struct type_set { + struct ebitmap types; + struct ebitmap negset; + u32 flags; +}; + +struct constraint_node { + u32 permissions; + struct constraint_expr *expr; + struct constraint_node *next; +}; + +struct perm_datum { + u32 value; +}; + +struct common_datum { + u32 value; + struct symtab permissions; +}; + +struct class_datum { + u32 value; + char *comkey; + struct common_datum *comdatum; + struct symtab permissions; + struct constraint_node *constraints; + struct constraint_node *validatetrans; + char default_user; + char default_role; + char default_type; + char default_range; +}; + +struct role_datum { + u32 value; + u32 bounds; + struct ebitmap dominates; + struct ebitmap types; +}; + +struct role_trans_key { + u32 role; + u32 type; + u32 tclass; +}; + +struct role_trans_datum { + u32 new_role; +}; + +struct filename_trans_key { + u32 ttype; + u16 tclass; + const char *name; +}; + +struct filename_trans_datum { + struct ebitmap stypes; + u32 otype; + struct filename_trans_datum *next; +}; + +struct role_allow { + u32 role; + u32 new_role; + struct role_allow *next; +}; + +struct type_datum { + u32 value; + u32 bounds; + unsigned char primary; + unsigned char attribute; +}; + +struct user_datum { + u32 value; + u32 bounds; + struct ebitmap roles; + struct mls_range range; + struct mls_level dfltlevel; +}; + +struct level_datum { + struct mls_level level; + unsigned char isalias; +}; + +struct cat_datum { + u32 value; + unsigned char isalias; +}; + +struct range_trans { + u32 source_type; + u32 target_type; + u32 target_class; +}; + +struct cond_bool_datum { + u32 value; + int state; +}; + +struct ocontext { + union { + char *name; + struct { + u8 protocol; + u16 low_port; + u16 high_port; + } port; + struct { + u32 addr; + u32 mask; + } node; + struct { + u32 addr[4]; + u32 mask[4]; + } node6; + struct { + u64 subnet_prefix; + u16 low_pkey; + u16 high_pkey; + } ibpkey; + struct { + char *dev_name; + u8 port; + } ibendport; + } u; + union { + u32 sclass; + u32 behavior; + } v; + struct context context[2]; + u32 sid[2]; + struct ocontext *next; +}; + +struct genfs { + char *fstype; + struct ocontext *head; + struct genfs *next; +}; + +struct cond_node; + +struct policydb { + int mls_enabled; + struct symtab symtab[8]; + char **sym_val_to_name[8]; + struct class_datum **class_val_to_struct; + struct role_datum **role_val_to_struct; + struct user_datum **user_val_to_struct; + struct type_datum **type_val_to_struct; + struct avtab te_avtab; + struct hashtab role_tr; + struct ebitmap filename_trans_ttypes; + struct hashtab filename_trans; + u32 compat_filename_trans_count; + struct cond_bool_datum **bool_val_to_struct; + struct avtab te_cond_avtab; + struct cond_node *cond_list; + u32 cond_list_len; + struct role_allow *role_allow; + struct ocontext *ocontexts[9]; + struct genfs *genfs; + struct hashtab range_tr; + struct ebitmap *type_attr_map_array; + struct ebitmap policycaps; + struct ebitmap permissive_map; + struct ebitmap neveraudit_map; + size_t len; + unsigned int policyvers; + unsigned int reject_unknown: 1; + unsigned int allow_unknown: 1; + u16 process_class; + u32 process_trans_perms; +}; + +struct cond_expr_node; + +struct cond_expr { + struct cond_expr_node *nodes; + u32 len; +}; + +struct cond_av_list { + struct avtab_node **nodes; + u32 len; +}; + +struct cond_node { + int cur_state; + struct cond_expr expr; + struct cond_av_list true_list; + struct cond_av_list false_list; +}; + +struct policy_data { + struct policydb *p; + struct policy_file *fp; +}; + +struct cond_expr_node { + u32 expr_type; + u32 boolean; +}; + +struct policydb_compat_info { + unsigned int version; + unsigned int sym_num; + unsigned int ocon_num; +}; + +typedef __u16 __sum16; + +struct sockaddr_in6 { + short unsigned int sin6_family; + __be16 sin6_port; + __be32 sin6_flowinfo; + struct in6_addr sin6_addr; + __u32 sin6_scope_id; +}; + +struct sockaddr_inet { + short unsigned int sa_family; + char sa_data[26]; +}; + +struct iphdr { + __u8 ihl: 4; + __u8 version: 4; + __u8 tos; + __be16 tot_len; + __be16 id; + __be16 frag_off; + __u8 ttl; + __u8 protocol; + __sum16 check; + union { + struct { + __be32 saddr; + __be32 daddr; + }; + struct { + __be32 saddr; + __be32 daddr; + } addrs; + }; +}; + +struct in6_pktinfo { + struct in6_addr ipi6_addr; + int ipi6_ifindex; +}; + +struct ipv6_rt_hdr { + __u8 nexthdr; + __u8 hdrlen; + __u8 type; + __u8 segments_left; +}; + +struct ipv6_opt_hdr { + __u8 nexthdr; + __u8 hdrlen; +}; + +struct ipv6hdr { + __u8 priority: 4; + __u8 version: 4; + __u8 flow_lbl[3]; + __be16 payload_len; + __u8 nexthdr; + __u8 hop_limit; + union { + struct { + struct in6_addr saddr; + struct in6_addr daddr; + }; + struct { + struct in6_addr saddr; + struct in6_addr daddr; + } addrs; + }; +}; + +struct in_addr { + __be32 s_addr; +}; + +struct sockaddr_in { + __kernel_sa_family_t sin_family; + __be16 sin_port; + struct in_addr sin_addr; + unsigned char __pad[8]; +}; + +struct ip_options { + __be32 faddr; + __be32 nexthop; + unsigned char optlen; + unsigned char srr; + unsigned char rr; + unsigned char ts; + unsigned char is_strictroute: 1; + unsigned char srr_is_hit: 1; + unsigned char is_changed: 1; + unsigned char rr_needaddr: 1; + unsigned char ts_needtime: 1; + unsigned char ts_needaddr: 1; + unsigned char router_alert; + unsigned char cipso; + unsigned char __pad2; + unsigned char __data[0]; +}; + +struct ip_options_rcu { + struct callback_head rcu; + struct ip_options opt; +}; + +struct ipv6_txoptions { + refcount_t refcnt; + int tot_len; + __u16 opt_flen; + __u16 opt_nflen; + struct ipv6_opt_hdr *hopopt; + struct ipv6_opt_hdr *dst0opt; + struct ipv6_rt_hdr *srcrt; + struct ipv6_opt_hdr *dst1opt; + struct callback_head rcu; +}; + +struct inet_cork { + unsigned int flags; + __be32 addr; + struct ip_options *opt; + unsigned int fragsize; + int length; + struct dst_entry *dst; + u8 tx_flags; + __u8 ttl; + __s16 tos; + u32 priority; + __u16 gso_size; + u32 ts_opt_id; + u64 transmit_time; + u32 mark; +}; + +struct inet_cork_full { + struct inet_cork base; + struct flowi fl; +}; + +struct ipv6_pinfo; + +struct ip_mc_socklist; + +struct inet_sock { + struct sock sk; + struct ipv6_pinfo *pinet6; + long unsigned int inet_flags; + __be32 inet_saddr; + __s16 uc_ttl; + __be16 inet_sport; + struct ip_options_rcu *inet_opt; + atomic_t inet_id; + __u8 tos; + __u8 min_ttl; + __u8 mc_ttl; + __u8 pmtudisc; + __u8 rcv_tos; + __u8 convert_csum; + int uc_index; + int mc_index; + __be32 mc_addr; + u32 local_port_range; + struct ip_mc_socklist *mc_list; + struct inet_cork_full cork; +}; + +struct inet6_cork { + struct ipv6_txoptions *opt; + u8 hop_limit; + u8 tclass; + u8 dontfrag: 1; +}; + +struct ipv6_mc_socklist; + +struct ipv6_ac_socklist; + +struct ipv6_fl_socklist; + +struct ipv6_pinfo { + struct in6_addr saddr; + struct in6_pktinfo sticky_pktinfo; + const struct in6_addr *daddr_cache; + const struct in6_addr *saddr_cache; + __be32 flow_label; + __u32 frag_size; + s16 hop_limit; + u8 mcast_hops; + int ucast_oif; + int mcast_oif; + union { + struct { + __u16 srcrt: 1; + __u16 osrcrt: 1; + __u16 rxinfo: 1; + __u16 rxoinfo: 1; + __u16 rxhlim: 1; + __u16 rxohlim: 1; + __u16 hopopts: 1; + __u16 ohopopts: 1; + __u16 dstopts: 1; + __u16 odstopts: 1; + __u16 rxflow: 1; + __u16 rxtclass: 1; + __u16 rxpmtu: 1; + __u16 rxorigdstaddr: 1; + __u16 recvfragsize: 1; + } bits; + __u16 all; + } rxopt; + __u8 srcprefs; + __u8 pmtudisc; + __u8 min_hopcount; + __u8 tclass; + __be32 rcv_flowinfo; + __u32 dst_cookie; + struct ipv6_mc_socklist *ipv6_mc_list; + struct ipv6_ac_socklist *ipv6_ac_list; + struct ipv6_fl_socklist *ipv6_fl_list; + struct ipv6_txoptions *opt; + struct sk_buff *pktoptions; + struct sk_buff *rxpmtu; + struct inet6_cork cork; +}; + +struct ip6_sf_socklist; + +struct ipv6_mc_socklist { + struct in6_addr addr; + int ifindex; + unsigned int sfmode; + struct ipv6_mc_socklist *next; + struct ip6_sf_socklist *sflist; + struct callback_head rcu; +}; + +struct ipv6_ac_socklist { + struct in6_addr acl_addr; + int acl_ifindex; + struct ipv6_ac_socklist *acl_next; +}; + +struct ip6_flowlabel; + +struct ipv6_fl_socklist { + struct ipv6_fl_socklist *next; + struct ip6_flowlabel *fl; + struct callback_head rcu; +}; + +enum sctp_endpoint_type { + SCTP_EP_TYPE_SOCKET = 0, + SCTP_EP_TYPE_ASSOCIATION = 1, +}; + +struct sctp_chunk; + +struct sctp_inq { + struct list_head in_chunk_list; + struct sctp_chunk *in_progress; + struct work_struct immediate; +}; + +struct sctp_bind_addr { + __u16 port; + struct list_head address_list; +}; + +struct sctp_ep_common { + enum sctp_endpoint_type type; + refcount_t refcnt; + bool dead; + struct sock *sk; + struct net *net; + struct sctp_inq inqueue; + struct sctp_bind_addr bind_addr; +}; + +typedef __s32 sctp_assoc_t; + +union sctp_addr { + struct sockaddr_inet sa; + struct sockaddr_in v4; + struct sockaddr_in6 v6; +}; + +struct sctp_cookie { + __u32 my_vtag; + __u32 peer_vtag; + __u32 my_ttag; + __u32 peer_ttag; + ktime_t expiration; + __u16 sinit_num_ostreams; + __u16 sinit_max_instreams; + __u32 initial_tsn; + union sctp_addr peer_addr; + __u16 my_port; + __u8 prsctp_capable; + __u8 padding; + __u32 adaptation_ind; + __u8 auth_random[36]; + __u8 auth_hmacs[10]; + __u8 auth_chunks[20]; + __u32 raw_addr_list_len; +}; + +struct sctp_tsnmap { + long unsigned int *tsn_map; + __u32 base_tsn; + __u32 cumulative_tsn_ack_point; + __u32 max_tsn_seen; + __u16 len; + __u16 pending_data; + __u16 num_dup_tsns; + __be32 dup_tsns[16]; +}; + +struct sctp_inithdr_host { + __u32 init_tag; + __u32 a_rwnd; + __u16 num_outbound_streams; + __u16 num_inbound_streams; + __u32 initial_tsn; +}; + +enum sctp_state { + SCTP_STATE_CLOSED = 0, + SCTP_STATE_COOKIE_WAIT = 1, + SCTP_STATE_COOKIE_ECHOED = 2, + SCTP_STATE_ESTABLISHED = 3, + SCTP_STATE_SHUTDOWN_PENDING = 4, + SCTP_STATE_SHUTDOWN_SENT = 5, + SCTP_STATE_SHUTDOWN_RECEIVED = 6, + SCTP_STATE_SHUTDOWN_ACK_SENT = 7, +}; + +struct genradix_root; + +struct __genradix { + struct genradix_root *root; +}; + +struct sctp_stream_out_ext; + +struct sctp_stream_out { + union { + __u32 mid; + __u16 ssn; + }; + __u32 mid_uo; + struct sctp_stream_out_ext *ext; + __u8 state; +}; + +struct sctp_stream_in { + union { + __u32 mid; + __u16 ssn; + }; + __u32 mid_uo; + __u32 fsn; + __u32 fsn_uo; + char pd_mode; + char pd_mode_uo; +}; + +struct sctp_stream_interleave; + +struct sctp_stream { + struct { + struct __genradix tree; + struct sctp_stream_out type[0]; + } out; + struct { + struct __genradix tree; + struct sctp_stream_in type[0]; + } in; + __u16 outcnt; + __u16 incnt; + struct sctp_stream_out *out_curr; + union { + struct { + struct list_head prio_list; + }; + struct { + struct list_head rr_list; + struct sctp_stream_out_ext *rr_next; + }; + struct { + struct list_head fc_list; + }; + }; + struct sctp_stream_interleave *si; +}; + +struct sctp_sched_ops; + +struct sctp_association; + +struct sctp_outq { + struct sctp_association *asoc; + struct list_head out_chunk_list; + struct sctp_sched_ops *sched; + unsigned int out_qlen; + unsigned int error; + struct list_head control_chunk_list; + struct list_head sacked; + struct list_head retransmit; + struct list_head abandoned; + __u32 outstanding_bytes; + char fast_rtx; + char cork; +}; + +struct sctp_ulpq { + char pd_mode; + struct sctp_association *asoc; + struct sk_buff_head reasm; + struct sk_buff_head reasm_uo; + struct sk_buff_head lobby; +}; + +struct sctp_priv_assoc_stats { + struct __kernel_sockaddr_storage obs_rto_ipaddr; + __u64 max_obs_rto; + __u64 isacks; + __u64 osacks; + __u64 opackets; + __u64 ipackets; + __u64 rtxchunks; + __u64 outofseqtsns; + __u64 idupchunks; + __u64 gapcnt; + __u64 ouodchunks; + __u64 iuodchunks; + __u64 oodchunks; + __u64 iodchunks; + __u64 octrlchunks; + __u64 ictrlchunks; +}; + +struct sctp_endpoint; + +struct sctp_transport; + +struct sctp_random_param; + +struct sctp_chunks_param; + +struct sctp_hmac_algo_param; + +struct sctp_auth_bytes; + +struct sctp_shared_key; + +struct sctp_association { + struct sctp_ep_common base; + struct list_head asocs; + sctp_assoc_t assoc_id; + struct sctp_endpoint *ep; + struct sctp_cookie c; + struct { + struct list_head transport_addr_list; + __u32 rwnd; + __u16 transport_count; + __u16 port; + struct sctp_transport *primary_path; + union sctp_addr primary_addr; + struct sctp_transport *active_path; + struct sctp_transport *retran_path; + struct sctp_transport *last_sent_to; + struct sctp_transport *last_data_from; + struct sctp_tsnmap tsn_map; + __be16 addip_disabled_mask; + __u16 ecn_capable: 1; + __u16 ipv4_address: 1; + __u16 ipv6_address: 1; + __u16 asconf_capable: 1; + __u16 prsctp_capable: 1; + __u16 reconf_capable: 1; + __u16 intl_capable: 1; + __u16 auth_capable: 1; + __u16 sack_needed: 1; + __u16 sack_generation: 1; + __u16 zero_window_announced: 1; + __u32 sack_cnt; + __u32 adaptation_ind; + struct sctp_inithdr_host i; + void *cookie; + int cookie_len; + __u32 addip_serial; + struct sctp_random_param *peer_random; + struct sctp_chunks_param *peer_chunks; + struct sctp_hmac_algo_param *peer_hmacs; + } peer; + enum sctp_state state; + int overall_error_count; + ktime_t cookie_life; + long unsigned int rto_initial; + long unsigned int rto_max; + long unsigned int rto_min; + int max_burst; + int max_retrans; + __u16 pf_retrans; + __u16 ps_retrans; + __u16 max_init_attempts; + __u16 init_retries; + long unsigned int max_init_timeo; + long unsigned int hbinterval; + long unsigned int probe_interval; + __be16 encap_port; + __u16 pathmaxrxt; + __u32 flowlabel; + __u8 dscp; + __u8 pmtu_pending; + __u32 pathmtu; + __u32 param_flags; + __u32 sackfreq; + long unsigned int sackdelay; + long unsigned int timeouts[12]; + struct timer_list timers[12]; + struct sctp_transport *shutdown_last_sent_to; + struct sctp_transport *init_last_sent_to; + int shutdown_retries; + __u32 next_tsn; + __u32 ctsn_ack_point; + __u32 adv_peer_ack_point; + __u32 highest_sacked; + __u32 fast_recovery_exit; + __u8 fast_recovery; + __u16 unack_data; + __u32 rtx_data_chunks; + __u32 rwnd; + __u32 a_rwnd; + __u32 rwnd_over; + __u32 rwnd_press; + int sndbuf_used; + atomic_t rmem_alloc; + wait_queue_head_t wait; + __u32 frag_point; + __u32 user_frag; + int init_err_counter; + int init_cycle; + __u16 default_stream; + __u16 default_flags; + __u32 default_ppid; + __u32 default_context; + __u32 default_timetolive; + __u32 default_rcv_context; + struct sctp_stream stream; + struct sctp_outq outqueue; + struct sctp_ulpq ulpq; + __u32 last_ecne_tsn; + __u32 last_cwr_tsn; + int numduptsns; + struct sctp_chunk *addip_last_asconf; + struct list_head asconf_ack_list; + struct list_head addip_chunk_list; + __u32 addip_serial; + int src_out_of_asoc_ok; + union sctp_addr *asconf_addr_del_pending; + struct sctp_transport *new_transport; + struct list_head endpoint_shared_keys; + struct sctp_auth_bytes *asoc_shared_key; + struct sctp_shared_key *shkey; + __u16 default_hmac_id; + __u16 active_key_id; + __u8 need_ecne: 1; + __u8 temp: 1; + __u8 pf_expose: 2; + __u8 force_delay: 1; + __u8 strreset_enable; + __u8 strreset_outstanding; + __u32 strreset_outseq; + __u32 strreset_inseq; + __u32 strreset_result[2]; + struct sctp_chunk *strreset_chunk; + struct sctp_priv_assoc_stats stats; + int sent_cnt_removable; + __u16 subscribe; + __u64 abandoned_unsent[3]; + __u64 abandoned_sent[3]; + u32 secid; + u32 peer_secid; + struct callback_head rcu; +}; + +struct netlbl_lsm_cache { + refcount_t refcount; + void (*free)(const void *); + void *data; +}; + +struct netlbl_lsm_secattr { + u32 flags; + u32 type; + char *domain; + struct netlbl_lsm_cache *cache; + struct { + struct { + struct netlbl_lsm_catmap *cat; + u32 lvl; + } mls; + u32 secid; + } attr; +}; + +struct ip6_sf_socklist { + unsigned int sl_max; + unsigned int sl_count; + struct callback_head rcu; + struct in6_addr sl_addr[0]; +}; + +struct ip6_flowlabel { + struct ip6_flowlabel *next; + __be32 label; + atomic_t users; + struct in6_addr dst; + struct ipv6_txoptions *opt; + long unsigned int linger; + struct callback_head rcu; + u8 share; + union { + struct pid *pid; + kuid_t uid; + } owner; + long unsigned int lastuse; + long unsigned int expires; + struct net *fl_net; +}; + +struct sk_security_struct { + enum { + NLBL_UNSET = 0, + NLBL_REQUIRE = 1, + NLBL_LABELED = 2, + NLBL_REQSKB = 3, + NLBL_CONNLABELED = 4, + } nlbl_state; + struct netlbl_lsm_secattr *nlbl_secattr; + u32 sid; + u32 peer_sid; + u16 sclass; + enum { + SCTP_ASSOC_UNSET = 0, + SCTP_ASSOC_SET = 1, + } sctp_assoc_state; +}; + +struct sctp_initmsg { + __u16 sinit_num_ostreams; + __u16 sinit_max_instreams; + __u16 sinit_max_attempts; + __u16 sinit_max_init_timeo; +}; + +struct sctp_sndrcvinfo { + __u16 sinfo_stream; + __u16 sinfo_ssn; + __u16 sinfo_flags; + __u32 sinfo_ppid; + __u32 sinfo_context; + __u32 sinfo_timetolive; + __u32 sinfo_tsn; + __u32 sinfo_cumtsn; + sctp_assoc_t sinfo_assoc_id; +}; + +struct sctp_rtoinfo { + sctp_assoc_t srto_assoc_id; + __u32 srto_initial; + __u32 srto_max; + __u32 srto_min; +}; + +struct sctp_assocparams { + sctp_assoc_t sasoc_assoc_id; + __u16 sasoc_asocmaxrxt; + __u16 sasoc_number_peer_destinations; + __u32 sasoc_peer_rwnd; + __u32 sasoc_local_rwnd; + __u32 sasoc_cookie_life; +}; + +struct sctp_paddrparams { + sctp_assoc_t spp_assoc_id; + struct __kernel_sockaddr_storage spp_address; + __u32 spp_hbinterval; + __u16 spp_pathmaxrxt; + __u32 spp_pathmtu; + __u32 spp_sackdelay; + __u32 spp_flags; + __u32 spp_ipv6_flowlabel; + __u8 spp_dscp; + int: 0; +} __attribute__((packed)); + +struct sctphdr { + __be16 source; + __be16 dest; + __be32 vtag; + __le32 checksum; +}; + +struct sctp_chunkhdr { + __u8 type; + __u8 flags; + __be16 length; +}; + +struct sctp_paramhdr { + __be16 type; + __be16 length; +}; + +struct sctp_datahdr { + __be32 tsn; + __be16 stream; + __be16 ssn; + __u32 ppid; +}; + +struct sctp_idatahdr { + __be32 tsn; + __be16 stream; + __be16 reserved; + __be32 mid; + union { + __u32 ppid; + __be32 fsn; + }; +}; + +struct sctp_inithdr { + __be32 init_tag; + __be32 a_rwnd; + __be16 num_outbound_streams; + __be16 num_inbound_streams; + __be32 initial_tsn; +}; + +struct sctp_ipv4addr_param { + struct sctp_paramhdr param_hdr; + struct in_addr addr; +}; + +struct sctp_ipv6addr_param { + struct sctp_paramhdr param_hdr; + struct in6_addr addr; +}; + +struct sctp_cookie_preserve_param { + struct sctp_paramhdr param_hdr; + __be32 lifespan_increment; +}; + +struct sctp_hostname_param { + struct sctp_paramhdr param_hdr; + uint8_t hostname[0]; +}; + +struct sctp_supported_addrs_param { + struct sctp_paramhdr param_hdr; + __be16 types[0]; +}; + +struct sctp_adaptation_ind_param { + struct sctp_paramhdr param_hdr; + __be32 adaptation_ind; +}; + +struct sctp_supported_ext_param { + struct sctp_paramhdr param_hdr; + __u8 chunks[0]; +}; + +struct sctp_random_param { + struct sctp_paramhdr param_hdr; + __u8 random_val[0]; +}; + +struct sctp_chunks_param { + struct sctp_paramhdr param_hdr; + __u8 chunks[0]; +}; + +struct sctp_hmac_algo_param { + struct sctp_paramhdr param_hdr; + __be16 hmac_ids[0]; +}; + +struct sctp_cookie_param { + struct sctp_paramhdr p; + __u8 body[0]; +}; + +struct sctp_sackhdr { + __be32 cum_tsn_ack; + __be32 a_rwnd; + __be16 num_gap_ack_blocks; + __be16 num_dup_tsns; +}; + +struct sctp_heartbeathdr { + struct sctp_paramhdr info; +}; + +struct sctp_shutdownhdr { + __be32 cum_tsn_ack; +}; + +struct sctp_errhdr { + __be16 cause; + __be16 length; +}; + +struct sctp_ecnehdr { + __be32 lowest_tsn; +}; + +struct sctp_cwrhdr { + __be32 lowest_tsn; +}; + +struct sctp_fwdtsn_hdr { + __be32 new_cum_tsn; +}; + +struct sctp_ifwdtsn_hdr { + __be32 new_cum_tsn; +}; + +struct sctp_addip_param { + struct sctp_paramhdr param_hdr; + __be32 crr_id; +}; + +struct sctp_addiphdr { + __be32 serial; +}; + +struct sctp_authhdr { + __be16 shkey_id; + __be16 hmac_id; +}; + +struct sctp_auth_bytes { + refcount_t refcnt; + __u32 len; + __u8 data[0]; +}; + +struct sctp_shared_key { + struct list_head key_list; + struct sctp_auth_bytes *key; + refcount_t refcnt; + __u16 key_id; + __u8 deactivated; +}; + +enum sctp_scope { + SCTP_SCOPE_GLOBAL = 0, + SCTP_SCOPE_PRIVATE = 1, + SCTP_SCOPE_LINK = 2, + SCTP_SCOPE_LOOPBACK = 3, + SCTP_SCOPE_UNUSABLE = 4, +}; + +struct sctp_ulpevent { + struct sctp_association *asoc; + struct sctp_chunk *chunk; + unsigned int rmem_len; + union { + __u32 mid; + __u16 ssn; + }; + union { + __u32 ppid; + __u32 fsn; + }; + __u32 tsn; + __u32 cumtsn; + __u16 stream; + __u16 flags; + __u16 msg_flags; +} __attribute__((packed)); + +union sctp_addr_param; + +union sctp_params { + void *v; + struct sctp_paramhdr *p; + struct sctp_cookie_preserve_param *life; + struct sctp_hostname_param *dns; + struct sctp_cookie_param *cookie; + struct sctp_supported_addrs_param *sat; + struct sctp_ipv4addr_param *v4; + struct sctp_ipv6addr_param *v6; + union sctp_addr_param *addr; + struct sctp_adaptation_ind_param *aind; + struct sctp_supported_ext_param *ext; + struct sctp_random_param *random; + struct sctp_chunks_param *chunks; + struct sctp_hmac_algo_param *hmac_algo; + struct sctp_addip_param *addip; +}; + +struct sctp_sender_hb_info; + +struct sctp_signed_cookie; + +struct sctp_datamsg; + +struct sctp_chunk { + struct list_head list; + refcount_t refcnt; + int sent_count; + union { + struct list_head transmitted_list; + struct list_head stream_list; + }; + struct list_head frag_list; + struct sk_buff *skb; + union { + struct sk_buff *head_skb; + struct sctp_shared_key *shkey; + }; + union sctp_params param_hdr; + union { + __u8 *v; + struct sctp_datahdr *data_hdr; + struct sctp_inithdr *init_hdr; + struct sctp_sackhdr *sack_hdr; + struct sctp_heartbeathdr *hb_hdr; + struct sctp_sender_hb_info *hbs_hdr; + struct sctp_shutdownhdr *shutdown_hdr; + struct sctp_signed_cookie *cookie_hdr; + struct sctp_ecnehdr *ecne_hdr; + struct sctp_cwrhdr *ecn_cwr_hdr; + struct sctp_errhdr *err_hdr; + struct sctp_addiphdr *addip_hdr; + struct sctp_fwdtsn_hdr *fwdtsn_hdr; + struct sctp_authhdr *auth_hdr; + struct sctp_idatahdr *idata_hdr; + struct sctp_ifwdtsn_hdr *ifwdtsn_hdr; + } subh; + __u8 *chunk_end; + struct sctp_chunkhdr *chunk_hdr; + struct sctphdr *sctp_hdr; + struct sctp_sndrcvinfo sinfo; + struct sctp_association *asoc; + struct sctp_ep_common *rcvr; + long unsigned int sent_at; + union sctp_addr source; + union sctp_addr dest; + struct sctp_datamsg *msg; + struct sctp_transport *transport; + struct sk_buff *auth_chunk; + __u16 rtt_in_progress: 1; + __u16 has_tsn: 1; + __u16 has_ssn: 1; + __u16 singleton: 1; + __u16 end_of_packet: 1; + __u16 ecn_ce_done: 1; + __u16 pdiscard: 1; + __u16 tsn_gap_acked: 1; + __u16 data_accepted: 1; + __u16 auth: 1; + __u16 has_asconf: 1; + __u16 pmtu_probe: 1; + __u16 tsn_missing_report: 2; + __u16 fast_retransmit: 2; +}; + +struct sctp_stream_interleave { + __u16 data_chunk_len; + __u16 ftsn_chunk_len; + struct sctp_chunk * (*make_datafrag)(const struct sctp_association *, const struct sctp_sndrcvinfo *, int, __u8, gfp_t); + void (*assign_number)(struct sctp_chunk *); + bool (*validate_data)(struct sctp_chunk *); + int (*ulpevent_data)(struct sctp_ulpq *, struct sctp_chunk *, gfp_t); + int (*enqueue_event)(struct sctp_ulpq *, struct sctp_ulpevent *); + void (*renege_events)(struct sctp_ulpq *, struct sctp_chunk *, gfp_t); + void (*start_pd)(struct sctp_ulpq *, gfp_t); + void (*abort_pd)(struct sctp_ulpq *, gfp_t); + void (*generate_ftsn)(struct sctp_outq *, __u32); + bool (*validate_ftsn)(struct sctp_chunk *); + void (*report_ftsn)(struct sctp_ulpq *, __u32); + void (*handle_ftsn)(struct sctp_ulpq *, struct sctp_chunk *); +}; + +struct sctp_bind_bucket { + short unsigned int port; + signed char fastreuse; + signed char fastreuseport; + kuid_t fastuid; + struct hlist_node node; + struct hlist_head owner; + struct net *net; +}; + +enum sctp_socket_type { + SCTP_SOCKET_UDP = 0, + SCTP_SOCKET_UDP_HIGH_BANDWIDTH = 1, + SCTP_SOCKET_TCP = 2, +}; + +struct sctp_pf; + +struct sctp_sock { + struct inet_sock inet; + enum sctp_socket_type type; + struct sctp_pf *pf; + struct crypto_shash *hmac; + char *sctp_hmac_alg; + struct sctp_endpoint *ep; + struct sctp_bind_bucket *bind_hash; + __u16 default_stream; + __u32 default_ppid; + __u16 default_flags; + __u32 default_context; + __u32 default_timetolive; + __u32 default_rcv_context; + int max_burst; + __u32 hbinterval; + __u32 probe_interval; + __be16 udp_port; + __be16 encap_port; + __u16 pathmaxrxt; + __u32 flowlabel; + __u8 dscp; + __u16 pf_retrans; + __u16 ps_retrans; + __u32 pathmtu; + __u32 sackdelay; + __u32 sackfreq; + __u32 param_flags; + __u32 default_ss; + struct sctp_rtoinfo rtoinfo; + struct sctp_paddrparams paddrparam; + struct sctp_assocparams assocparams; + __u16 subscribe; + struct sctp_initmsg initmsg; + int user_frag; + __u32 autoclose; + __u32 adaptation_ind; + __u32 pd_point; + __u16 nodelay: 1; + __u16 pf_expose: 2; + __u16 reuse: 1; + __u16 disable_fragments: 1; + __u16 v4mapped: 1; + __u16 frag_interleave: 1; + __u16 recvrcvinfo: 1; + __u16 recvnxtinfo: 1; + __u16 data_ready_signalled: 1; + atomic_t pd_mode; + struct sk_buff_head pd_lobby; + struct list_head auto_asconf_list; + int do_auto_asconf; +}; + +struct sctp_af; + +struct sctp_pf { + void (*event_msgname)(struct sctp_ulpevent *, char *, int *); + void (*skb_msgname)(struct sk_buff *, char *, int *); + int (*af_supported)(sa_family_t, struct sctp_sock *); + int (*cmp_addr)(const union sctp_addr *, const union sctp_addr *, struct sctp_sock *); + int (*bind_verify)(struct sctp_sock *, union sctp_addr *); + int (*send_verify)(struct sctp_sock *, union sctp_addr *); + int (*supported_addrs)(const struct sctp_sock *, __be16 *); + struct sock * (*create_accept_sk)(struct sock *, struct sctp_association *, bool); + int (*addr_to_user)(struct sctp_sock *, union sctp_addr *); + void (*to_sk_saddr)(union sctp_addr *, struct sock *); + void (*to_sk_daddr)(union sctp_addr *, struct sock *); + void (*copy_ip_options)(struct sock *, struct sock *); + struct sctp_af *af; +}; + +struct sctp_endpoint { + struct sctp_ep_common base; + struct hlist_node node; + int hashent; + struct list_head asocs; + __u8 secret_key[32]; + __u8 *digest; + __u32 sndbuf_policy; + __u32 rcvbuf_policy; + struct crypto_shash **auth_hmacs; + struct sctp_hmac_algo_param *auth_hmacs_list; + struct sctp_chunks_param *auth_chunk_list; + struct list_head endpoint_shared_keys; + __u16 active_key_id; + __u8 ecn_enable: 1; + __u8 auth_enable: 1; + __u8 intl_enable: 1; + __u8 prsctp_enable: 1; + __u8 asconf_enable: 1; + __u8 reconf_enable: 1; + __u8 strreset_enable; + struct callback_head rcu; +}; + +struct sctp_signed_cookie { + __u8 signature[32]; + __u32 __pad; + struct sctp_cookie c; +} __attribute__((packed)); + +union sctp_addr_param { + struct sctp_paramhdr p; + struct sctp_ipv4addr_param v4; + struct sctp_ipv6addr_param v6; +}; + +struct sctp_sender_hb_info { + struct sctp_paramhdr param_hdr; + union sctp_addr daddr; + long unsigned int sent_at; + __u64 hb_nonce; + __u32 probe_size; +}; + +struct sctp_af { + int (*sctp_xmit)(struct sk_buff *, struct sctp_transport *); + int (*setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); + int (*getsockopt)(struct sock *, int, int, char *, int *); + void (*get_dst)(struct sctp_transport *, union sctp_addr *, struct flowi *, struct sock *); + void (*get_saddr)(struct sctp_sock *, struct sctp_transport *, struct flowi *); + void (*copy_addrlist)(struct list_head *, struct net_device *); + int (*cmp_addr)(const union sctp_addr *, const union sctp_addr *); + void (*addr_copy)(union sctp_addr *, union sctp_addr *); + void (*from_skb)(union sctp_addr *, struct sk_buff *, int); + void (*from_sk)(union sctp_addr *, struct sock *); + bool (*from_addr_param)(union sctp_addr *, union sctp_addr_param *, __be16, int); + int (*to_addr_param)(const union sctp_addr *, union sctp_addr_param *); + int (*addr_valid)(union sctp_addr *, struct sctp_sock *, const struct sk_buff *); + enum sctp_scope (*scope)(union sctp_addr *); + void (*inaddr_any)(union sctp_addr *, __be16); + int (*is_any)(const union sctp_addr *); + int (*available)(union sctp_addr *, struct sctp_sock *); + int (*skb_iif)(const struct sk_buff *); + int (*skb_sdif)(const struct sk_buff *); + int (*is_ce)(const struct sk_buff *); + void (*seq_dump_addr)(struct seq_file *, union sctp_addr *); + void (*ecn_capable)(struct sock *); + __u16 net_header_len; + int sockaddr_len; + int (*ip_options_len)(struct sock *); + sa_family_t sa_family; + struct list_head list; +}; + +struct sctp_packet { + __u16 source_port; + __u16 destination_port; + __u32 vtag; + struct list_head chunk_list; + size_t overhead; + size_t size; + size_t max_size; + struct sctp_transport *transport; + struct sctp_chunk *auth; + u8 has_cookie_echo: 1; + u8 has_sack: 1; + u8 has_auth: 1; + u8 has_data: 1; + u8 ipfragok: 1; +}; + +struct sctp_transport { + struct list_head transports; + struct rhlist_head node; + refcount_t refcnt; + __u32 dead: 1; + __u32 rto_pending: 1; + __u32 hb_sent: 1; + __u32 pmtu_pending: 1; + __u32 dst_pending_confirm: 1; + __u32 sack_generation: 1; + u32 dst_cookie; + struct flowi fl; + union sctp_addr ipaddr; + struct sctp_af *af_specific; + struct sctp_association *asoc; + long unsigned int rto; + __u32 rtt; + __u32 rttvar; + __u32 srtt; + __u32 cwnd; + __u32 ssthresh; + __u32 partial_bytes_acked; + __u32 flight_size; + __u32 burst_limited; + struct dst_entry *dst; + union sctp_addr saddr; + long unsigned int hbinterval; + long unsigned int probe_interval; + long unsigned int sackdelay; + __u32 sackfreq; + atomic_t mtu_info; + ktime_t last_time_heard; + long unsigned int last_time_sent; + long unsigned int last_time_ecne_reduced; + __be16 encap_port; + __u16 pathmaxrxt; + __u32 flowlabel; + __u8 dscp; + __u16 pf_retrans; + __u16 ps_retrans; + __u32 pathmtu; + __u32 param_flags; + int init_sent_count; + int state; + short unsigned int error_count; + struct timer_list T3_rtx_timer; + struct timer_list hb_timer; + struct timer_list proto_unreach_timer; + struct timer_list reconf_timer; + struct timer_list probe_timer; + struct list_head transmitted; + struct sctp_packet packet; + struct list_head send_ready; + struct { + __u32 next_tsn_at_change; + char changeover_active; + char cycling_changeover; + char cacc_saw_newack; + } cacc; + struct { + __u16 pmtu; + __u16 probe_size; + __u16 probe_high; + __u8 probe_count; + __u8 state; + } pl; + __u64 hb_nonce; + struct callback_head rcu; +}; + +struct sctp_datamsg { + struct list_head chunks; + refcount_t refcnt; + long unsigned int expires_at; + int send_error; + u8 send_failed: 1; + u8 can_delay: 1; + u8 abandoned: 1; +}; + +struct sctp_stream_priorities { + struct list_head prio_sched; + struct list_head active; + struct sctp_stream_out_ext *next; + __u16 prio; + __u16 users; +}; + +struct sctp_stream_out_ext { + __u64 abandoned_unsent[3]; + __u64 abandoned_sent[3]; + struct list_head outq; + union { + struct { + struct list_head prio_list; + struct sctp_stream_priorities *prio_head; + }; + struct { + struct list_head rr_list; + }; + struct { + struct list_head fc_list; + __u32 fc_length; + __u16 fc_weight; + }; + }; +}; + +struct smack_known { + struct list_head list; + struct hlist_node smk_hashed; + char *smk_known; + u32 smk_secid; + struct netlbl_lsm_secattr smk_netlabel; + struct list_head smk_rules; + struct mutex smk_rules_lock; +}; + +struct smack_audit_data { + const char *function; + char *subject; + char *object; + char *request; + int result; +}; + +struct task_smack { + struct smack_known *smk_task; + struct smack_known *smk_forked; + struct smack_known *smk_transmuted; + struct list_head smk_rules; + struct mutex smk_rules_lock; + struct list_head smk_relabel; +}; + +struct smack_rule { + struct list_head list; + struct smack_known *smk_subject; + struct smack_known *smk_object; + int smk_access; +}; + +struct smack_known_list_elem { + struct list_head list; + struct smack_known *smk_label; +}; + +struct smk_audit_info { + struct common_audit_data a; + struct smack_audit_data sad; +}; + +struct sockaddr_un { + __kernel_sa_family_t sun_family; + char sun_path[108]; +}; + +struct unix_address { + refcount_t refcnt; + int len; + struct sockaddr_un name[0]; +}; + +struct scm_stat { + atomic_t nr_fds; + long unsigned int nr_unix_fds; +}; + +struct unix_vertex; + +struct unix_sock { + struct sock sk; + struct unix_address *addr; + struct path path; + struct mutex iolock; + struct mutex bindlock; + struct sock *peer; + struct sock *listener; + struct unix_vertex *vertex; + spinlock_t lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct socket_wq peer_wq; + wait_queue_entry_t peer_wake; + struct scm_stat scm_stat; + int inq_len; + bool recvmsg_inq; + struct sk_buff *oob_skb; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct tcphdr { + __be16 source; + __be16 dest; + __be32 seq; + __be32 ack_seq; + __u16 ae: 1; + __u16 res1: 3; + __u16 doff: 4; + __u16 fin: 1; + __u16 syn: 1; + __u16 rst: 1; + __u16 psh: 1; + __u16 ack: 1; + __u16 urg: 1; + __u16 ece: 1; + __u16 cwr: 1; + __be16 window; + __sum16 check; + __be16 urg_ptr; +}; + +struct udphdr { + __be16 source; + __be16 dest; + __be16 len; + __sum16 check; +}; + +enum tomoyo_conditions_index { + TOMOYO_TASK_UID = 0, + TOMOYO_TASK_EUID = 1, + TOMOYO_TASK_SUID = 2, + TOMOYO_TASK_FSUID = 3, + TOMOYO_TASK_GID = 4, + TOMOYO_TASK_EGID = 5, + TOMOYO_TASK_SGID = 6, + TOMOYO_TASK_FSGID = 7, + TOMOYO_TASK_PID = 8, + TOMOYO_TASK_PPID = 9, + TOMOYO_EXEC_ARGC = 10, + TOMOYO_EXEC_ENVC = 11, + TOMOYO_TYPE_IS_SOCKET = 12, + TOMOYO_TYPE_IS_SYMLINK = 13, + TOMOYO_TYPE_IS_FILE = 14, + TOMOYO_TYPE_IS_BLOCK_DEV = 15, + TOMOYO_TYPE_IS_DIRECTORY = 16, + TOMOYO_TYPE_IS_CHAR_DEV = 17, + TOMOYO_TYPE_IS_FIFO = 18, + TOMOYO_MODE_SETUID = 19, + TOMOYO_MODE_SETGID = 20, + TOMOYO_MODE_STICKY = 21, + TOMOYO_MODE_OWNER_READ = 22, + TOMOYO_MODE_OWNER_WRITE = 23, + TOMOYO_MODE_OWNER_EXECUTE = 24, + TOMOYO_MODE_GROUP_READ = 25, + TOMOYO_MODE_GROUP_WRITE = 26, + TOMOYO_MODE_GROUP_EXECUTE = 27, + TOMOYO_MODE_OTHERS_READ = 28, + TOMOYO_MODE_OTHERS_WRITE = 29, + TOMOYO_MODE_OTHERS_EXECUTE = 30, + TOMOYO_EXEC_REALPATH = 31, + TOMOYO_SYMLINK_TARGET = 32, + TOMOYO_PATH1_UID = 33, + TOMOYO_PATH1_GID = 34, + TOMOYO_PATH1_INO = 35, + TOMOYO_PATH1_MAJOR = 36, + TOMOYO_PATH1_MINOR = 37, + TOMOYO_PATH1_PERM = 38, + TOMOYO_PATH1_TYPE = 39, + TOMOYO_PATH1_DEV_MAJOR = 40, + TOMOYO_PATH1_DEV_MINOR = 41, + TOMOYO_PATH2_UID = 42, + TOMOYO_PATH2_GID = 43, + TOMOYO_PATH2_INO = 44, + TOMOYO_PATH2_MAJOR = 45, + TOMOYO_PATH2_MINOR = 46, + TOMOYO_PATH2_PERM = 47, + TOMOYO_PATH2_TYPE = 48, + TOMOYO_PATH2_DEV_MAJOR = 49, + TOMOYO_PATH2_DEV_MINOR = 50, + TOMOYO_PATH1_PARENT_UID = 51, + TOMOYO_PATH1_PARENT_GID = 52, + TOMOYO_PATH1_PARENT_INO = 53, + TOMOYO_PATH1_PARENT_PERM = 54, + TOMOYO_PATH2_PARENT_UID = 55, + TOMOYO_PATH2_PARENT_GID = 56, + TOMOYO_PATH2_PARENT_INO = 57, + TOMOYO_PATH2_PARENT_PERM = 58, + TOMOYO_MAX_CONDITION_KEYWORD = 59, + TOMOYO_NUMBER_UNION = 60, + TOMOYO_NAME_UNION = 61, + TOMOYO_ARGV_ENTRY = 62, + TOMOYO_ENVP_ENTRY = 63, +}; + +enum tomoyo_path_stat_index { + TOMOYO_PATH1 = 0, + TOMOYO_PATH1_PARENT = 1, + TOMOYO_PATH2 = 2, + TOMOYO_PATH2_PARENT = 3, + TOMOYO_MAX_PATH_STAT = 4, +}; + +enum tomoyo_mode_index { + TOMOYO_CONFIG_DISABLED = 0, + TOMOYO_CONFIG_LEARNING = 1, + TOMOYO_CONFIG_PERMISSIVE = 2, + TOMOYO_CONFIG_ENFORCING = 3, + TOMOYO_CONFIG_MAX_MODE = 4, + TOMOYO_CONFIG_WANT_REJECT_LOG = 64, + TOMOYO_CONFIG_WANT_GRANT_LOG = 128, + TOMOYO_CONFIG_USE_DEFAULT = 255, +}; + +enum tomoyo_policy_id { + TOMOYO_ID_GROUP = 0, + TOMOYO_ID_ADDRESS_GROUP = 1, + TOMOYO_ID_PATH_GROUP = 2, + TOMOYO_ID_NUMBER_GROUP = 3, + TOMOYO_ID_TRANSITION_CONTROL = 4, + TOMOYO_ID_AGGREGATOR = 5, + TOMOYO_ID_MANAGER = 6, + TOMOYO_ID_CONDITION = 7, + TOMOYO_ID_NAME = 8, + TOMOYO_ID_ACL = 9, + TOMOYO_ID_DOMAIN = 10, + TOMOYO_MAX_POLICY = 11, +}; + +enum tomoyo_domain_info_flags_index { + TOMOYO_DIF_QUOTA_WARNED = 0, + TOMOYO_DIF_TRANSITION_FAILED = 1, + TOMOYO_MAX_DOMAIN_INFO_FLAGS = 2, +}; + +enum tomoyo_group_id { + TOMOYO_PATH_GROUP = 0, + TOMOYO_NUMBER_GROUP = 1, + TOMOYO_ADDRESS_GROUP = 2, + TOMOYO_MAX_GROUP = 3, +}; + +enum tomoyo_transition_type { + TOMOYO_TRANSITION_CONTROL_NO_RESET = 0, + TOMOYO_TRANSITION_CONTROL_RESET = 1, + TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE = 2, + TOMOYO_TRANSITION_CONTROL_INITIALIZE = 3, + TOMOYO_TRANSITION_CONTROL_NO_KEEP = 4, + TOMOYO_TRANSITION_CONTROL_KEEP = 5, + TOMOYO_MAX_TRANSITION_TYPE = 6, +}; + +enum tomoyo_acl_entry_type_index { + TOMOYO_TYPE_PATH_ACL = 0, + TOMOYO_TYPE_PATH2_ACL = 1, + TOMOYO_TYPE_PATH_NUMBER_ACL = 2, + TOMOYO_TYPE_MKDEV_ACL = 3, + TOMOYO_TYPE_MOUNT_ACL = 4, + TOMOYO_TYPE_INET_ACL = 5, + TOMOYO_TYPE_UNIX_ACL = 6, + TOMOYO_TYPE_ENV_ACL = 7, + TOMOYO_TYPE_MANUAL_TASK_ACL = 8, +}; + +enum tomoyo_path_acl_index { + TOMOYO_TYPE_EXECUTE = 0, + TOMOYO_TYPE_READ = 1, + TOMOYO_TYPE_WRITE = 2, + TOMOYO_TYPE_APPEND = 3, + TOMOYO_TYPE_UNLINK = 4, + TOMOYO_TYPE_GETATTR = 5, + TOMOYO_TYPE_RMDIR = 6, + TOMOYO_TYPE_TRUNCATE = 7, + TOMOYO_TYPE_SYMLINK = 8, + TOMOYO_TYPE_CHROOT = 9, + TOMOYO_TYPE_UMOUNT = 10, + TOMOYO_MAX_PATH_OPERATION = 11, +}; + +enum tomoyo_memory_stat_type { + TOMOYO_MEMORY_POLICY = 0, + TOMOYO_MEMORY_AUDIT = 1, + TOMOYO_MEMORY_QUERY = 2, + TOMOYO_MAX_MEMORY_STAT = 3, +}; + +enum tomoyo_mkdev_acl_index { + TOMOYO_TYPE_MKBLOCK = 0, + TOMOYO_TYPE_MKCHAR = 1, + TOMOYO_MAX_MKDEV_OPERATION = 2, +}; + +enum tomoyo_network_acl_index { + TOMOYO_NETWORK_BIND = 0, + TOMOYO_NETWORK_LISTEN = 1, + TOMOYO_NETWORK_CONNECT = 2, + TOMOYO_NETWORK_SEND = 3, + TOMOYO_MAX_NETWORK_OPERATION = 4, +}; + +enum tomoyo_path2_acl_index { + TOMOYO_TYPE_LINK = 0, + TOMOYO_TYPE_RENAME = 1, + TOMOYO_TYPE_PIVOT_ROOT = 2, + TOMOYO_MAX_PATH2_OPERATION = 3, +}; + +enum tomoyo_path_number_acl_index { + TOMOYO_TYPE_CREATE = 0, + TOMOYO_TYPE_MKDIR = 1, + TOMOYO_TYPE_MKFIFO = 2, + TOMOYO_TYPE_MKSOCK = 3, + TOMOYO_TYPE_IOCTL = 4, + TOMOYO_TYPE_CHMOD = 5, + TOMOYO_TYPE_CHOWN = 6, + TOMOYO_TYPE_CHGRP = 7, + TOMOYO_MAX_PATH_NUMBER_OPERATION = 8, +}; + +enum tomoyo_mac_index { + TOMOYO_MAC_FILE_EXECUTE = 0, + TOMOYO_MAC_FILE_OPEN = 1, + TOMOYO_MAC_FILE_CREATE = 2, + TOMOYO_MAC_FILE_UNLINK = 3, + TOMOYO_MAC_FILE_GETATTR = 4, + TOMOYO_MAC_FILE_MKDIR = 5, + TOMOYO_MAC_FILE_RMDIR = 6, + TOMOYO_MAC_FILE_MKFIFO = 7, + TOMOYO_MAC_FILE_MKSOCK = 8, + TOMOYO_MAC_FILE_TRUNCATE = 9, + TOMOYO_MAC_FILE_SYMLINK = 10, + TOMOYO_MAC_FILE_MKBLOCK = 11, + TOMOYO_MAC_FILE_MKCHAR = 12, + TOMOYO_MAC_FILE_LINK = 13, + TOMOYO_MAC_FILE_RENAME = 14, + TOMOYO_MAC_FILE_CHMOD = 15, + TOMOYO_MAC_FILE_CHOWN = 16, + TOMOYO_MAC_FILE_CHGRP = 17, + TOMOYO_MAC_FILE_IOCTL = 18, + TOMOYO_MAC_FILE_CHROOT = 19, + TOMOYO_MAC_FILE_MOUNT = 20, + TOMOYO_MAC_FILE_UMOUNT = 21, + TOMOYO_MAC_FILE_PIVOT_ROOT = 22, + TOMOYO_MAC_NETWORK_INET_STREAM_BIND = 23, + TOMOYO_MAC_NETWORK_INET_STREAM_LISTEN = 24, + TOMOYO_MAC_NETWORK_INET_STREAM_CONNECT = 25, + TOMOYO_MAC_NETWORK_INET_DGRAM_BIND = 26, + TOMOYO_MAC_NETWORK_INET_DGRAM_SEND = 27, + TOMOYO_MAC_NETWORK_INET_RAW_BIND = 28, + TOMOYO_MAC_NETWORK_INET_RAW_SEND = 29, + TOMOYO_MAC_NETWORK_UNIX_STREAM_BIND = 30, + TOMOYO_MAC_NETWORK_UNIX_STREAM_LISTEN = 31, + TOMOYO_MAC_NETWORK_UNIX_STREAM_CONNECT = 32, + TOMOYO_MAC_NETWORK_UNIX_DGRAM_BIND = 33, + TOMOYO_MAC_NETWORK_UNIX_DGRAM_SEND = 34, + TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_BIND = 35, + TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_LISTEN = 36, + TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_CONNECT = 37, + TOMOYO_MAC_ENVIRON = 38, + TOMOYO_MAX_MAC_INDEX = 39, +}; + +enum tomoyo_mac_category_index { + TOMOYO_MAC_CATEGORY_FILE = 0, + TOMOYO_MAC_CATEGORY_NETWORK = 1, + TOMOYO_MAC_CATEGORY_MISC = 2, + TOMOYO_MAX_MAC_CATEGORY_INDEX = 3, +}; + +enum tomoyo_policy_stat_type { + TOMOYO_STAT_POLICY_UPDATES = 0, + TOMOYO_STAT_POLICY_LEARNING = 1, + TOMOYO_STAT_POLICY_PERMISSIVE = 2, + TOMOYO_STAT_POLICY_ENFORCING = 3, + TOMOYO_MAX_POLICY_STAT = 4, +}; + +enum tomoyo_pref_index { + TOMOYO_PREF_MAX_AUDIT_LOG = 0, + TOMOYO_PREF_MAX_LEARNING_ENTRY = 1, + TOMOYO_MAX_PREF = 2, +}; + +struct tomoyo_acl_head { + struct list_head list; + s8 is_deleted; +} __attribute__((packed)); + +struct tomoyo_shared_acl_head { + struct list_head list; + atomic_t users; +} __attribute__((packed)); + +struct tomoyo_path_info { + const char *name; + u32 hash; + u16 const_len; + bool is_dir; + bool is_patterned; +}; + +struct tomoyo_obj_info; + +struct tomoyo_execve; + +struct tomoyo_domain_info; + +struct tomoyo_acl_info; + +struct tomoyo_request_info { + struct tomoyo_obj_info *obj; + struct tomoyo_execve *ee; + struct tomoyo_domain_info *domain; + union { + struct { + const struct tomoyo_path_info *filename; + const struct tomoyo_path_info *matched_path; + u8 operation; + } path; + struct { + const struct tomoyo_path_info *filename1; + const struct tomoyo_path_info *filename2; + u8 operation; + } path2; + struct { + const struct tomoyo_path_info *filename; + unsigned int mode; + unsigned int major; + unsigned int minor; + u8 operation; + } mkdev; + struct { + const struct tomoyo_path_info *filename; + long unsigned int number; + u8 operation; + } path_number; + struct { + const struct tomoyo_path_info *name; + } environ; + struct { + const __be32 *address; + u16 port; + u8 protocol; + u8 operation; + bool is_ipv6; + } inet_network; + struct { + const struct tomoyo_path_info *address; + u8 protocol; + u8 operation; + } unix_network; + struct { + const struct tomoyo_path_info *type; + const struct tomoyo_path_info *dir; + const struct tomoyo_path_info *dev; + long unsigned int flags; + int need_dev; + } mount; + struct { + const struct tomoyo_path_info *domainname; + } task; + } param; + struct tomoyo_acl_info *matched_acl; + u8 param_type; + bool granted; + u8 retry; + u8 profile; + u8 mode; + u8 type; +}; + +struct tomoyo_mini_stat { + kuid_t uid; + kgid_t gid; + ino_t ino; + umode_t mode; + dev_t dev; + dev_t rdev; +}; + +struct tomoyo_obj_info { + bool validate_done; + bool stat_valid[4]; + struct path path1; + struct path path2; + struct tomoyo_mini_stat stat[4]; + struct tomoyo_path_info *symlink_target; +}; + +struct tomoyo_page_dump { + struct page *page; + char *data; +}; + +struct tomoyo_execve { + struct tomoyo_request_info r; + struct tomoyo_obj_info obj; + struct linux_binprm *bprm; + const struct tomoyo_path_info *transition; + struct tomoyo_page_dump dump; + char *tmp; +}; + +struct tomoyo_policy_namespace; + +struct tomoyo_domain_info { + struct list_head list; + struct list_head acl_info_list; + const struct tomoyo_path_info *domainname; + struct tomoyo_policy_namespace *ns; + long unsigned int group[4]; + u8 profile; + bool is_deleted; + bool flags[2]; + atomic_t users; +}; + +struct tomoyo_condition; + +struct tomoyo_acl_info { + struct list_head list; + struct tomoyo_condition *cond; + s8 is_deleted; + u8 type; +} __attribute__((packed)); + +struct tomoyo_name { + struct tomoyo_shared_acl_head head; + struct tomoyo_path_info entry; +}; + +struct tomoyo_group; + +struct tomoyo_name_union { + const struct tomoyo_path_info *filename; + struct tomoyo_group *group; +}; + +struct tomoyo_group { + struct tomoyo_shared_acl_head head; + const struct tomoyo_path_info *group_name; + struct list_head member_list; +}; + +struct tomoyo_condition { + struct tomoyo_shared_acl_head head; + u32 size; + u16 condc; + u16 numbers_count; + u16 names_count; + u16 argc; + u16 envc; + u8 grant_log; + const struct tomoyo_path_info *transit; +}; + +struct tomoyo_profile; + +struct tomoyo_policy_namespace { + struct tomoyo_profile *profile_ptr[256]; + struct list_head group_list[3]; + struct list_head policy_list[11]; + struct list_head acl_group[256]; + struct list_head namespace_list; + unsigned int profile_version; + const char *name; +}; + +struct tomoyo_path_acl { + struct tomoyo_acl_info head; + u16 perm; + struct tomoyo_name_union name; +}; + +struct tomoyo_acl_param { + char *data; + struct list_head *list; + struct tomoyo_policy_namespace *ns; + bool is_delete; +}; + +struct tomoyo_transition_control { + struct tomoyo_acl_head head; + u8 type; + bool is_last_name; + const struct tomoyo_path_info *domainname; + const struct tomoyo_path_info *program; +}; + +struct tomoyo_aggregator { + struct tomoyo_acl_head head; + const struct tomoyo_path_info *original_name; + const struct tomoyo_path_info *aggregated_name; +}; + +struct tomoyo_preference { + unsigned int learning_max_entry; + bool enforcing_verbose; + bool learning_verbose; + bool permissive_verbose; +}; + +struct tomoyo_profile { + const struct tomoyo_path_info *comment; + struct tomoyo_preference *learning; + struct tomoyo_preference *permissive; + struct tomoyo_preference *enforcing; + struct tomoyo_preference preference; + u8 default_config; + u8 config[42]; + unsigned int pref[2]; +}; + +struct tomoyo_task { + struct tomoyo_domain_info *domain_info; + struct tomoyo_domain_info *old_domain_info; +}; + +struct tomoyo_number_union { + long unsigned int values[2]; + struct tomoyo_group *group; + u8 value_type[2]; +}; + +struct tomoyo_ipaddr_union { + struct in6_addr ip[2]; + struct tomoyo_group *group; + bool is_ipv6; +}; + +struct tomoyo_path_group { + struct tomoyo_acl_head head; + const struct tomoyo_path_info *member_name; +}; + +struct tomoyo_number_group { + struct tomoyo_acl_head head; + struct tomoyo_number_union number; +}; + +struct tomoyo_address_group { + struct tomoyo_acl_head head; + struct tomoyo_ipaddr_union address; +}; + +struct lsm_id { + const char *name; + u64 id; + bool lsmprop; +}; + +union security_list_options { + int (*binder_set_context_mgr)(const struct cred *); + int (*binder_transaction)(const struct cred *, const struct cred *); + int (*binder_transfer_binder)(const struct cred *, const struct cred *); + int (*binder_transfer_file)(const struct cred *, const struct cred *, const struct file *); + int (*ptrace_access_check)(struct task_struct *, unsigned int); + int (*ptrace_traceme)(struct task_struct *); + int (*capget)(const struct task_struct *, kernel_cap_t *, kernel_cap_t *, kernel_cap_t *); + int (*capset)(struct cred *, const struct cred *, const kernel_cap_t *, const kernel_cap_t *, const kernel_cap_t *); + int (*capable)(const struct cred *, struct user_namespace *, int, unsigned int); + int (*quotactl)(int, int, int, const struct super_block *); + int (*quota_on)(struct dentry *); + int (*syslog)(int); + int (*settime)(const struct timespec64 *, const struct timezone *); + int (*vm_enough_memory)(struct mm_struct *, long int); + int (*bprm_creds_for_exec)(struct linux_binprm *); + int (*bprm_creds_from_file)(struct linux_binprm *, const struct file *); + int (*bprm_check_security)(struct linux_binprm *); + void (*bprm_committing_creds)(const struct linux_binprm *); + void (*bprm_committed_creds)(const struct linux_binprm *); + int (*fs_context_submount)(struct fs_context *, struct super_block *); + int (*fs_context_dup)(struct fs_context *, struct fs_context *); + int (*fs_context_parse_param)(struct fs_context *, struct fs_parameter *); + int (*sb_alloc_security)(struct super_block *); + void (*sb_delete)(struct super_block *); + void (*sb_free_security)(struct super_block *); + void (*sb_free_mnt_opts)(void *); + int (*sb_eat_lsm_opts)(char *, void **); + int (*sb_mnt_opts_compat)(struct super_block *, void *); + int (*sb_remount)(struct super_block *, void *); + int (*sb_kern_mount)(const struct super_block *); + int (*sb_show_options)(struct seq_file *, struct super_block *); + int (*sb_statfs)(struct dentry *); + int (*sb_mount)(const char *, const struct path *, const char *, long unsigned int, void *); + int (*sb_umount)(struct vfsmount *, int); + int (*sb_pivotroot)(const struct path *, const struct path *); + int (*sb_set_mnt_opts)(struct super_block *, void *, long unsigned int, long unsigned int *); + int (*sb_clone_mnt_opts)(const struct super_block *, struct super_block *, long unsigned int, long unsigned int *); + int (*move_mount)(const struct path *, const struct path *); + int (*dentry_init_security)(struct dentry *, int, const struct qstr *, const char **, struct lsm_context *); + int (*dentry_create_files_as)(struct dentry *, int, struct qstr *, const struct cred *, struct cred *); + int (*path_unlink)(const struct path *, struct dentry *); + int (*path_mkdir)(const struct path *, struct dentry *, umode_t); + int (*path_rmdir)(const struct path *, struct dentry *); + int (*path_mknod)(const struct path *, struct dentry *, umode_t, unsigned int); + void (*path_post_mknod)(struct mnt_idmap *, struct dentry *); + int (*path_truncate)(const struct path *); + int (*path_symlink)(const struct path *, struct dentry *, const char *); + int (*path_link)(struct dentry *, const struct path *, struct dentry *); + int (*path_rename)(const struct path *, struct dentry *, const struct path *, struct dentry *, unsigned int); + int (*path_chmod)(const struct path *, umode_t); + int (*path_chown)(const struct path *, kuid_t, kgid_t); + int (*path_chroot)(const struct path *); + int (*path_notify)(const struct path *, u64, unsigned int); + int (*inode_alloc_security)(struct inode *); + void (*inode_free_security)(struct inode *); + void (*inode_free_security_rcu)(void *); + int (*inode_init_security)(struct inode *, struct inode *, const struct qstr *, struct xattr *, int *); + int (*inode_init_security_anon)(struct inode *, const struct qstr *, const struct inode *); + int (*inode_create)(struct inode *, struct dentry *, umode_t); + void (*inode_post_create_tmpfile)(struct mnt_idmap *, struct inode *); + int (*inode_link)(struct dentry *, struct inode *, struct dentry *); + int (*inode_unlink)(struct inode *, struct dentry *); + int (*inode_symlink)(struct inode *, struct dentry *, const char *); + int (*inode_mkdir)(struct inode *, struct dentry *, umode_t); + int (*inode_rmdir)(struct inode *, struct dentry *); + int (*inode_mknod)(struct inode *, struct dentry *, umode_t, dev_t); + int (*inode_rename)(struct inode *, struct dentry *, struct inode *, struct dentry *); + int (*inode_readlink)(struct dentry *); + int (*inode_follow_link)(struct dentry *, struct inode *, bool); + int (*inode_permission)(struct inode *, int); + int (*inode_setattr)(struct mnt_idmap *, struct dentry *, struct iattr *); + void (*inode_post_setattr)(struct mnt_idmap *, struct dentry *, int); + int (*inode_getattr)(const struct path *); + int (*inode_xattr_skipcap)(const char *); + int (*inode_setxattr)(struct mnt_idmap *, struct dentry *, const char *, const void *, size_t, int); + void (*inode_post_setxattr)(struct dentry *, const char *, const void *, size_t, int); + int (*inode_getxattr)(struct dentry *, const char *); + int (*inode_listxattr)(struct dentry *); + int (*inode_removexattr)(struct mnt_idmap *, struct dentry *, const char *); + void (*inode_post_removexattr)(struct dentry *, const char *); + int (*inode_file_setattr)(struct dentry *, struct file_kattr *); + int (*inode_file_getattr)(struct dentry *, struct file_kattr *); + int (*inode_set_acl)(struct mnt_idmap *, struct dentry *, const char *, struct posix_acl *); + void (*inode_post_set_acl)(struct dentry *, const char *, struct posix_acl *); + int (*inode_get_acl)(struct mnt_idmap *, struct dentry *, const char *); + int (*inode_remove_acl)(struct mnt_idmap *, struct dentry *, const char *); + void (*inode_post_remove_acl)(struct mnt_idmap *, struct dentry *, const char *); + int (*inode_need_killpriv)(struct dentry *); + int (*inode_killpriv)(struct mnt_idmap *, struct dentry *); + int (*inode_getsecurity)(struct mnt_idmap *, struct inode *, const char *, void **, bool); + int (*inode_setsecurity)(struct inode *, const char *, const void *, size_t, int); + int (*inode_listsecurity)(struct inode *, char *, size_t); + void (*inode_getlsmprop)(struct inode *, struct lsm_prop *); + int (*inode_copy_up)(struct dentry *, struct cred **); + int (*inode_copy_up_xattr)(struct dentry *, const char *); + int (*inode_setintegrity)(const struct inode *, enum lsm_integrity_type, const void *, size_t); + int (*kernfs_init_security)(struct kernfs_node *, struct kernfs_node *); + int (*file_permission)(struct file *, int); + int (*file_alloc_security)(struct file *); + void (*file_release)(struct file *); + void (*file_free_security)(struct file *); + int (*file_ioctl)(struct file *, unsigned int, long unsigned int); + int (*file_ioctl_compat)(struct file *, unsigned int, long unsigned int); + int (*mmap_addr)(long unsigned int); + int (*mmap_file)(struct file *, long unsigned int, long unsigned int, long unsigned int); + int (*file_mprotect)(struct vm_area_struct *, long unsigned int, long unsigned int); + int (*file_lock)(struct file *, unsigned int); + int (*file_fcntl)(struct file *, unsigned int, long unsigned int); + void (*file_set_fowner)(struct file *); + int (*file_send_sigiotask)(struct task_struct *, struct fown_struct *, int); + int (*file_receive)(struct file *); + int (*file_open)(struct file *); + int (*file_post_open)(struct file *, int); + int (*file_truncate)(struct file *); + int (*task_alloc)(struct task_struct *, long unsigned int); + void (*task_free)(struct task_struct *); + int (*cred_alloc_blank)(struct cred *, gfp_t); + void (*cred_free)(struct cred *); + int (*cred_prepare)(struct cred *, const struct cred *, gfp_t); + void (*cred_transfer)(struct cred *, const struct cred *); + void (*cred_getsecid)(const struct cred *, u32 *); + void (*cred_getlsmprop)(const struct cred *, struct lsm_prop *); + int (*kernel_act_as)(struct cred *, u32); + int (*kernel_create_files_as)(struct cred *, struct inode *); + int (*kernel_module_request)(char *); + int (*kernel_load_data)(enum kernel_load_data_id, bool); + int (*kernel_post_load_data)(char *, loff_t, enum kernel_load_data_id, char *); + int (*kernel_read_file)(struct file *, enum kernel_read_file_id, bool); + int (*kernel_post_read_file)(struct file *, char *, loff_t, enum kernel_read_file_id); + int (*task_fix_setuid)(struct cred *, const struct cred *, int); + int (*task_fix_setgid)(struct cred *, const struct cred *, int); + int (*task_fix_setgroups)(struct cred *, const struct cred *); + int (*task_setpgid)(struct task_struct *, pid_t); + int (*task_getpgid)(struct task_struct *); + int (*task_getsid)(struct task_struct *); + void (*current_getlsmprop_subj)(struct lsm_prop *); + void (*task_getlsmprop_obj)(struct task_struct *, struct lsm_prop *); + int (*task_setnice)(struct task_struct *, int); + int (*task_setioprio)(struct task_struct *, int); + int (*task_getioprio)(struct task_struct *); + int (*task_prlimit)(const struct cred *, const struct cred *, unsigned int); + int (*task_setrlimit)(struct task_struct *, unsigned int, struct rlimit *); + int (*task_setscheduler)(struct task_struct *); + int (*task_getscheduler)(struct task_struct *); + int (*task_movememory)(struct task_struct *); + int (*task_kill)(struct task_struct *, struct kernel_siginfo *, int, const struct cred *); + int (*task_prctl)(int, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + void (*task_to_inode)(struct task_struct *, struct inode *); + int (*userns_create)(const struct cred *); + int (*ipc_permission)(struct kern_ipc_perm *, short int); + void (*ipc_getlsmprop)(struct kern_ipc_perm *, struct lsm_prop *); + int (*msg_msg_alloc_security)(struct msg_msg *); + void (*msg_msg_free_security)(struct msg_msg *); + int (*msg_queue_alloc_security)(struct kern_ipc_perm *); + void (*msg_queue_free_security)(struct kern_ipc_perm *); + int (*msg_queue_associate)(struct kern_ipc_perm *, int); + int (*msg_queue_msgctl)(struct kern_ipc_perm *, int); + int (*msg_queue_msgsnd)(struct kern_ipc_perm *, struct msg_msg *, int); + int (*msg_queue_msgrcv)(struct kern_ipc_perm *, struct msg_msg *, struct task_struct *, long int, int); + int (*shm_alloc_security)(struct kern_ipc_perm *); + void (*shm_free_security)(struct kern_ipc_perm *); + int (*shm_associate)(struct kern_ipc_perm *, int); + int (*shm_shmctl)(struct kern_ipc_perm *, int); + int (*shm_shmat)(struct kern_ipc_perm *, char *, int); + int (*sem_alloc_security)(struct kern_ipc_perm *); + void (*sem_free_security)(struct kern_ipc_perm *); + int (*sem_associate)(struct kern_ipc_perm *, int); + int (*sem_semctl)(struct kern_ipc_perm *, int); + int (*sem_semop)(struct kern_ipc_perm *, struct sembuf *, unsigned int, int); + int (*netlink_send)(struct sock *, struct sk_buff *); + void (*d_instantiate)(struct dentry *, struct inode *); + int (*getselfattr)(unsigned int, struct lsm_ctx *, u32 *, u32); + int (*setselfattr)(unsigned int, struct lsm_ctx *, u32, u32); + int (*getprocattr)(struct task_struct *, const char *, char **); + int (*setprocattr)(const char *, void *, size_t); + int (*ismaclabel)(const char *); + int (*secid_to_secctx)(u32, struct lsm_context *); + int (*lsmprop_to_secctx)(struct lsm_prop *, struct lsm_context *); + int (*secctx_to_secid)(const char *, u32, u32 *); + void (*release_secctx)(struct lsm_context *); + void (*inode_invalidate_secctx)(struct inode *); + int (*inode_notifysecctx)(struct inode *, void *, u32); + int (*inode_setsecctx)(struct dentry *, void *, u32); + int (*inode_getsecctx)(struct inode *, struct lsm_context *); + int (*post_notification)(const struct cred *, const struct cred *, struct watch_notification *); + int (*watch_key)(struct key *); + int (*unix_stream_connect)(struct sock *, struct sock *, struct sock *); + int (*unix_may_send)(struct socket *, struct socket *); + int (*socket_create)(int, int, int, int); + int (*socket_post_create)(struct socket *, int, int, int, int); + int (*socket_socketpair)(struct socket *, struct socket *); + int (*socket_bind)(struct socket *, struct sockaddr *, int); + int (*socket_connect)(struct socket *, struct sockaddr *, int); + int (*socket_listen)(struct socket *, int); + int (*socket_accept)(struct socket *, struct socket *); + int (*socket_sendmsg)(struct socket *, struct msghdr *, int); + int (*socket_recvmsg)(struct socket *, struct msghdr *, int, int); + int (*socket_getsockname)(struct socket *); + int (*socket_getpeername)(struct socket *); + int (*socket_getsockopt)(struct socket *, int, int); + int (*socket_setsockopt)(struct socket *, int, int); + int (*socket_shutdown)(struct socket *, int); + int (*socket_sock_rcv_skb)(struct sock *, struct sk_buff *); + int (*socket_getpeersec_stream)(struct socket *, sockptr_t, sockptr_t, unsigned int); + int (*socket_getpeersec_dgram)(struct socket *, struct sk_buff *, u32 *); + int (*sk_alloc_security)(struct sock *, int, gfp_t); + void (*sk_free_security)(struct sock *); + void (*sk_clone_security)(const struct sock *, struct sock *); + void (*sk_getsecid)(const struct sock *, u32 *); + void (*sock_graft)(struct sock *, struct socket *); + int (*inet_conn_request)(const struct sock *, struct sk_buff *, struct request_sock *); + void (*inet_csk_clone)(struct sock *, const struct request_sock *); + void (*inet_conn_established)(struct sock *, struct sk_buff *); + int (*secmark_relabel_packet)(u32); + void (*secmark_refcount_inc)(void); + void (*secmark_refcount_dec)(void); + void (*req_classify_flow)(const struct request_sock *, struct flowi_common *); + int (*tun_dev_alloc_security)(void *); + int (*tun_dev_create)(void); + int (*tun_dev_attach_queue)(void *); + int (*tun_dev_attach)(struct sock *, void *); + int (*tun_dev_open)(void *); + int (*sctp_assoc_request)(struct sctp_association *, struct sk_buff *); + int (*sctp_bind_connect)(struct sock *, int, struct sockaddr *, int); + void (*sctp_sk_clone)(struct sctp_association *, struct sock *, struct sock *); + int (*sctp_assoc_established)(struct sctp_association *, struct sk_buff *); + int (*mptcp_add_subflow)(struct sock *, struct sock *); + int (*ib_pkey_access)(void *, u64, u16); + int (*ib_endport_manage_subnet)(void *, const char *, u8); + int (*ib_alloc_security)(void *); + int (*xfrm_policy_alloc_security)(struct xfrm_sec_ctx **, struct xfrm_user_sec_ctx *, gfp_t); + int (*xfrm_policy_clone_security)(struct xfrm_sec_ctx *, struct xfrm_sec_ctx **); + void (*xfrm_policy_free_security)(struct xfrm_sec_ctx *); + int (*xfrm_policy_delete_security)(struct xfrm_sec_ctx *); + int (*xfrm_state_alloc)(struct xfrm_state *, struct xfrm_user_sec_ctx *); + int (*xfrm_state_alloc_acquire)(struct xfrm_state *, struct xfrm_sec_ctx *, u32); + void (*xfrm_state_free_security)(struct xfrm_state *); + int (*xfrm_state_delete_security)(struct xfrm_state *); + int (*xfrm_policy_lookup)(struct xfrm_sec_ctx *, u32); + int (*xfrm_state_pol_flow_match)(struct xfrm_state *, struct xfrm_policy *, const struct flowi_common *); + int (*xfrm_decode_session)(struct sk_buff *, u32 *, int); + int (*key_alloc)(struct key *, const struct cred *, long unsigned int); + int (*key_permission)(key_ref_t, const struct cred *, enum key_need_perm); + int (*key_getsecurity)(struct key *, char **); + void (*key_post_create_or_update)(struct key *, struct key *, const void *, size_t, long unsigned int, bool); + int (*audit_rule_init)(u32, u32, char *, void **, gfp_t); + int (*audit_rule_known)(struct audit_krule *); + int (*audit_rule_match)(struct lsm_prop *, u32, u32, void *); + void (*audit_rule_free)(void *); + int (*bpf)(int, union bpf_attr *, unsigned int, bool); + int (*bpf_map)(struct bpf_map *, fmode_t); + int (*bpf_prog)(struct bpf_prog *); + int (*bpf_map_create)(struct bpf_map *, union bpf_attr *, struct bpf_token *, bool); + void (*bpf_map_free)(struct bpf_map *); + int (*bpf_prog_load)(struct bpf_prog *, union bpf_attr *, struct bpf_token *, bool); + void (*bpf_prog_free)(struct bpf_prog *); + int (*bpf_token_create)(struct bpf_token *, union bpf_attr *, const struct path *); + void (*bpf_token_free)(struct bpf_token *); + int (*bpf_token_cmd)(const struct bpf_token *, enum bpf_cmd); + int (*bpf_token_capable)(const struct bpf_token *, int); + int (*locked_down)(enum lockdown_reason); + int (*lock_kernel_down)(const char *, enum lockdown_reason); + int (*perf_event_open)(int); + int (*perf_event_alloc)(struct perf_event *); + int (*perf_event_read)(struct perf_event *); + int (*perf_event_write)(struct perf_event *); + int (*uring_override_creds)(const struct cred *); + int (*uring_sqpoll)(void); + int (*uring_cmd)(struct io_uring_cmd *); + int (*uring_allowed)(void); + void (*initramfs_populated)(void); + int (*bdev_alloc_security)(struct block_device *); + void (*bdev_free_security)(struct block_device *); + int (*bdev_setintegrity)(struct block_device *, enum lsm_integrity_type, const void *, size_t); +}; + +struct security_hook_heads { + struct hlist_head binder_set_context_mgr; + struct hlist_head binder_transaction; + struct hlist_head binder_transfer_binder; + struct hlist_head binder_transfer_file; + struct hlist_head ptrace_access_check; + struct hlist_head ptrace_traceme; + struct hlist_head capget; + struct hlist_head capset; + struct hlist_head capable; + struct hlist_head quotactl; + struct hlist_head quota_on; + struct hlist_head syslog; + struct hlist_head settime; + struct hlist_head vm_enough_memory; + struct hlist_head bprm_creds_for_exec; + struct hlist_head bprm_creds_from_file; + struct hlist_head bprm_check_security; + struct hlist_head bprm_committing_creds; + struct hlist_head bprm_committed_creds; + struct hlist_head fs_context_submount; + struct hlist_head fs_context_dup; + struct hlist_head fs_context_parse_param; + struct hlist_head sb_alloc_security; + struct hlist_head sb_delete; + struct hlist_head sb_free_security; + struct hlist_head sb_free_mnt_opts; + struct hlist_head sb_eat_lsm_opts; + struct hlist_head sb_mnt_opts_compat; + struct hlist_head sb_remount; + struct hlist_head sb_kern_mount; + struct hlist_head sb_show_options; + struct hlist_head sb_statfs; + struct hlist_head sb_mount; + struct hlist_head sb_umount; + struct hlist_head sb_pivotroot; + struct hlist_head sb_set_mnt_opts; + struct hlist_head sb_clone_mnt_opts; + struct hlist_head move_mount; + struct hlist_head dentry_init_security; + struct hlist_head dentry_create_files_as; + struct hlist_head path_unlink; + struct hlist_head path_mkdir; + struct hlist_head path_rmdir; + struct hlist_head path_mknod; + struct hlist_head path_post_mknod; + struct hlist_head path_truncate; + struct hlist_head path_symlink; + struct hlist_head path_link; + struct hlist_head path_rename; + struct hlist_head path_chmod; + struct hlist_head path_chown; + struct hlist_head path_chroot; + struct hlist_head path_notify; + struct hlist_head inode_alloc_security; + struct hlist_head inode_free_security; + struct hlist_head inode_free_security_rcu; + struct hlist_head inode_init_security; + struct hlist_head inode_init_security_anon; + struct hlist_head inode_create; + struct hlist_head inode_post_create_tmpfile; + struct hlist_head inode_link; + struct hlist_head inode_unlink; + struct hlist_head inode_symlink; + struct hlist_head inode_mkdir; + struct hlist_head inode_rmdir; + struct hlist_head inode_mknod; + struct hlist_head inode_rename; + struct hlist_head inode_readlink; + struct hlist_head inode_follow_link; + struct hlist_head inode_permission; + struct hlist_head inode_setattr; + struct hlist_head inode_post_setattr; + struct hlist_head inode_getattr; + struct hlist_head inode_xattr_skipcap; + struct hlist_head inode_setxattr; + struct hlist_head inode_post_setxattr; + struct hlist_head inode_getxattr; + struct hlist_head inode_listxattr; + struct hlist_head inode_removexattr; + struct hlist_head inode_post_removexattr; + struct hlist_head inode_file_setattr; + struct hlist_head inode_file_getattr; + struct hlist_head inode_set_acl; + struct hlist_head inode_post_set_acl; + struct hlist_head inode_get_acl; + struct hlist_head inode_remove_acl; + struct hlist_head inode_post_remove_acl; + struct hlist_head inode_need_killpriv; + struct hlist_head inode_killpriv; + struct hlist_head inode_getsecurity; + struct hlist_head inode_setsecurity; + struct hlist_head inode_listsecurity; + struct hlist_head inode_getlsmprop; + struct hlist_head inode_copy_up; + struct hlist_head inode_copy_up_xattr; + struct hlist_head inode_setintegrity; + struct hlist_head kernfs_init_security; + struct hlist_head file_permission; + struct hlist_head file_alloc_security; + struct hlist_head file_release; + struct hlist_head file_free_security; + struct hlist_head file_ioctl; + struct hlist_head file_ioctl_compat; + struct hlist_head mmap_addr; + struct hlist_head mmap_file; + struct hlist_head file_mprotect; + struct hlist_head file_lock; + struct hlist_head file_fcntl; + struct hlist_head file_set_fowner; + struct hlist_head file_send_sigiotask; + struct hlist_head file_receive; + struct hlist_head file_open; + struct hlist_head file_post_open; + struct hlist_head file_truncate; + struct hlist_head task_alloc; + struct hlist_head task_free; + struct hlist_head cred_alloc_blank; + struct hlist_head cred_free; + struct hlist_head cred_prepare; + struct hlist_head cred_transfer; + struct hlist_head cred_getsecid; + struct hlist_head cred_getlsmprop; + struct hlist_head kernel_act_as; + struct hlist_head kernel_create_files_as; + struct hlist_head kernel_module_request; + struct hlist_head kernel_load_data; + struct hlist_head kernel_post_load_data; + struct hlist_head kernel_read_file; + struct hlist_head kernel_post_read_file; + struct hlist_head task_fix_setuid; + struct hlist_head task_fix_setgid; + struct hlist_head task_fix_setgroups; + struct hlist_head task_setpgid; + struct hlist_head task_getpgid; + struct hlist_head task_getsid; + struct hlist_head current_getlsmprop_subj; + struct hlist_head task_getlsmprop_obj; + struct hlist_head task_setnice; + struct hlist_head task_setioprio; + struct hlist_head task_getioprio; + struct hlist_head task_prlimit; + struct hlist_head task_setrlimit; + struct hlist_head task_setscheduler; + struct hlist_head task_getscheduler; + struct hlist_head task_movememory; + struct hlist_head task_kill; + struct hlist_head task_prctl; + struct hlist_head task_to_inode; + struct hlist_head userns_create; + struct hlist_head ipc_permission; + struct hlist_head ipc_getlsmprop; + struct hlist_head msg_msg_alloc_security; + struct hlist_head msg_msg_free_security; + struct hlist_head msg_queue_alloc_security; + struct hlist_head msg_queue_free_security; + struct hlist_head msg_queue_associate; + struct hlist_head msg_queue_msgctl; + struct hlist_head msg_queue_msgsnd; + struct hlist_head msg_queue_msgrcv; + struct hlist_head shm_alloc_security; + struct hlist_head shm_free_security; + struct hlist_head shm_associate; + struct hlist_head shm_shmctl; + struct hlist_head shm_shmat; + struct hlist_head sem_alloc_security; + struct hlist_head sem_free_security; + struct hlist_head sem_associate; + struct hlist_head sem_semctl; + struct hlist_head sem_semop; + struct hlist_head netlink_send; + struct hlist_head d_instantiate; + struct hlist_head getselfattr; + struct hlist_head setselfattr; + struct hlist_head getprocattr; + struct hlist_head setprocattr; + struct hlist_head ismaclabel; + struct hlist_head secid_to_secctx; + struct hlist_head lsmprop_to_secctx; + struct hlist_head secctx_to_secid; + struct hlist_head release_secctx; + struct hlist_head inode_invalidate_secctx; + struct hlist_head inode_notifysecctx; + struct hlist_head inode_setsecctx; + struct hlist_head inode_getsecctx; + struct hlist_head post_notification; + struct hlist_head watch_key; + struct hlist_head unix_stream_connect; + struct hlist_head unix_may_send; + struct hlist_head socket_create; + struct hlist_head socket_post_create; + struct hlist_head socket_socketpair; + struct hlist_head socket_bind; + struct hlist_head socket_connect; + struct hlist_head socket_listen; + struct hlist_head socket_accept; + struct hlist_head socket_sendmsg; + struct hlist_head socket_recvmsg; + struct hlist_head socket_getsockname; + struct hlist_head socket_getpeername; + struct hlist_head socket_getsockopt; + struct hlist_head socket_setsockopt; + struct hlist_head socket_shutdown; + struct hlist_head socket_sock_rcv_skb; + struct hlist_head socket_getpeersec_stream; + struct hlist_head socket_getpeersec_dgram; + struct hlist_head sk_alloc_security; + struct hlist_head sk_free_security; + struct hlist_head sk_clone_security; + struct hlist_head sk_getsecid; + struct hlist_head sock_graft; + struct hlist_head inet_conn_request; + struct hlist_head inet_csk_clone; + struct hlist_head inet_conn_established; + struct hlist_head secmark_relabel_packet; + struct hlist_head secmark_refcount_inc; + struct hlist_head secmark_refcount_dec; + struct hlist_head req_classify_flow; + struct hlist_head tun_dev_alloc_security; + struct hlist_head tun_dev_create; + struct hlist_head tun_dev_attach_queue; + struct hlist_head tun_dev_attach; + struct hlist_head tun_dev_open; + struct hlist_head sctp_assoc_request; + struct hlist_head sctp_bind_connect; + struct hlist_head sctp_sk_clone; + struct hlist_head sctp_assoc_established; + struct hlist_head mptcp_add_subflow; + struct hlist_head ib_pkey_access; + struct hlist_head ib_endport_manage_subnet; + struct hlist_head ib_alloc_security; + struct hlist_head xfrm_policy_alloc_security; + struct hlist_head xfrm_policy_clone_security; + struct hlist_head xfrm_policy_free_security; + struct hlist_head xfrm_policy_delete_security; + struct hlist_head xfrm_state_alloc; + struct hlist_head xfrm_state_alloc_acquire; + struct hlist_head xfrm_state_free_security; + struct hlist_head xfrm_state_delete_security; + struct hlist_head xfrm_policy_lookup; + struct hlist_head xfrm_state_pol_flow_match; + struct hlist_head xfrm_decode_session; + struct hlist_head key_alloc; + struct hlist_head key_permission; + struct hlist_head key_getsecurity; + struct hlist_head key_post_create_or_update; + struct hlist_head audit_rule_init; + struct hlist_head audit_rule_known; + struct hlist_head audit_rule_match; + struct hlist_head audit_rule_free; + struct hlist_head bpf; + struct hlist_head bpf_map; + struct hlist_head bpf_prog; + struct hlist_head bpf_map_create; + struct hlist_head bpf_map_free; + struct hlist_head bpf_prog_load; + struct hlist_head bpf_prog_free; + struct hlist_head bpf_token_create; + struct hlist_head bpf_token_free; + struct hlist_head bpf_token_cmd; + struct hlist_head bpf_token_capable; + struct hlist_head locked_down; + struct hlist_head lock_kernel_down; + struct hlist_head perf_event_open; + struct hlist_head perf_event_alloc; + struct hlist_head perf_event_read; + struct hlist_head perf_event_write; + struct hlist_head uring_override_creds; + struct hlist_head uring_sqpoll; + struct hlist_head uring_cmd; + struct hlist_head uring_allowed; + struct hlist_head initramfs_populated; + struct hlist_head bdev_alloc_security; + struct hlist_head bdev_free_security; + struct hlist_head bdev_setintegrity; +}; + +struct security_hook_list { + struct hlist_node list; + struct hlist_head *head; + union security_list_options hook; + const struct lsm_id *lsmid; +}; + +enum lsm_order { + LSM_ORDER_FIRST = -1, + LSM_ORDER_MUTABLE = 0, + LSM_ORDER_LAST = 1, +}; + +struct lsm_info { + const char *name; + enum lsm_order order; + long unsigned int flags; + int *enabled; + int (*init)(void); + struct lsm_blob_sizes *blobs; +}; + +enum reftype { + REF_NS = 0, + REF_PROXY = 1, + REF_RAWDATA = 2, +}; + +struct aa_common_ref { + struct kref count; + enum reftype reftype; +}; + +struct aa_proxy; + +struct aa_profile; + +struct aa_ruleset; + +struct aa_label { + struct aa_common_ref count; + struct rb_node node; + struct callback_head rcu; + struct aa_proxy *proxy; + char *hname; + long int flags; + u32 secid; + int size; + u64 mediates; + union { + struct { + struct aa_profile *profile[2]; + struct { + struct {} __empty_rules; + struct aa_ruleset *rules[0]; + }; + }; + struct { + struct {} __empty_vec; + struct aa_profile *vec[0]; + }; + }; +}; + +enum audit_mode { + AUDIT_NORMAL = 0, + AUDIT_QUIET_DENIED = 1, + AUDIT_QUIET = 2, + AUDIT_NOQUIET = 3, + AUDIT_ALL = 4, +}; + +enum aa_sfs_type { + AA_SFS_TYPE_BOOLEAN = 0, + AA_SFS_TYPE_BOOLEAN_INTPRINT = 1, + AA_SFS_TYPE_STRING = 2, + AA_SFS_TYPE_U64 = 3, + AA_SFS_TYPE_FOPS = 4, + AA_SFS_TYPE_DIR = 5, +}; + +struct aa_sfs_entry { + const char *name; + struct dentry *dentry; + umode_t mode; + enum aa_sfs_type v_type; + union { + bool boolean; + char *string; + long unsigned int u64; + struct aa_sfs_entry *files; + } v; + const struct file_operations *file_ops; +}; + +enum aafs_ns_type { + AAFS_NS_DIR = 0, + AAFS_NS_PROFS = 1, + AAFS_NS_NS = 2, + AAFS_NS_RAW_DATA = 3, + AAFS_NS_LOAD = 4, + AAFS_NS_REPLACE = 5, + AAFS_NS_REMOVE = 6, + AAFS_NS_REVISION = 7, + AAFS_NS_COUNT = 8, + AAFS_NS_MAX_COUNT = 9, + AAFS_NS_SIZE = 10, + AAFS_NS_MAX_SIZE = 11, + AAFS_NS_OWNER = 12, + AAFS_NS_SIZEOF = 13, +}; + +enum aafs_prof_type { + AAFS_PROF_DIR = 0, + AAFS_PROF_PROFS = 1, + AAFS_PROF_NAME = 2, + AAFS_PROF_MODE = 3, + AAFS_PROF_ATTACH = 4, + AAFS_PROF_HASH = 5, + AAFS_PROF_RAW_DATA = 6, + AAFS_PROF_RAW_HASH = 7, + AAFS_PROF_RAW_ABI = 8, + AAFS_PROF_LEARNING_COUNT = 9, + AAFS_PROF_SIZEOF = 10, +}; + +struct aa_caps { + kernel_cap_t allow; + kernel_cap_t audit; + kernel_cap_t denied; + kernel_cap_t quiet; + kernel_cap_t kill; + kernel_cap_t extended; +}; + +struct table_header { + u16 td_id; + u16 td_flags; + u32 td_hilen; + u32 td_lolen; + char td_data[0]; +}; + +struct aa_dfa { + struct kref count; + u16 flags; + u32 max_oob; + struct table_header *tables[8]; +}; + +struct aa_str_table_ent { + int count; + int size; + char *strs; +}; + +struct aa_str_table { + int size; + struct aa_str_table_ent *table; +}; + +struct aa_policy { + const char *name; + char *hname; + struct list_head list; + struct list_head profiles; +}; + +struct aa_labelset { + rwlock_t lock; + struct rb_root root; +}; + +struct aa_proxy { + struct aa_common_ref count; + struct aa_label *label; +}; + +struct label_it { + int i; + int j; +}; + +struct aa_rlimit { + unsigned int mask; + struct rlimit limits[16]; +}; + +struct aa_policydb; + +struct aa_secmark; + +struct aa_ruleset { + int size; + struct aa_policydb *policy; + struct aa_policydb *file; + struct aa_caps caps; + struct aa_rlimit rlimits; + int secmark_count; + struct aa_secmark *secmark; +}; + +struct aa_attachment { + const char *xmatch_str; + struct aa_policydb *xmatch; + unsigned int xmatch_len; + int xattr_count; + char **xattrs; +}; + +struct aa_audit_cache { + spinlock_t lock; + int size; + struct list_head head; +}; + +struct aa_ns; + +struct aa_net_compat; + +struct aa_loaddata; + +struct aa_profile { + struct aa_policy base; + struct aa_profile *parent; + struct aa_ns *ns; + const char *rename; + enum audit_mode audit; + long int mode; + u32 path_flags; + int signal; + const char *disconnected; + const char *disconnected_ipc; + struct aa_attachment attach; + struct aa_net_compat *net_compat; + struct aa_audit_cache learning_cache; + struct aa_loaddata *rawdata; + unsigned char *hash; + char *dirname; + struct dentry *dents[10]; + struct rhashtable *data; + int n_rules; + struct aa_label label; +}; + +struct apparmor_audit_data { + u32 flags; + int error; + int type; + u16 class; + const char *op; + const struct cred *subj_cred; + struct aa_label *subj_label; + const char *name; + const char *info; + u32 request; + u32 denied; + u32 tags; + struct task_struct *subjtsk; + union { + struct { + struct aa_label *peer; + union { + struct { + const char *target; + kuid_t ouid; + } fs; + struct { + int rlim; + long unsigned int max; + } rlim; + struct { + int signal; + int unmappedsig; + }; + struct { + int type; + int protocol; + void *addr; + int addrlen; + struct { + void *addr; + int addrlen; + } peer; + } net; + struct { + const char *target; + } ns; + struct { + kuid_t ouid; + } mq; + }; + }; + struct { + struct aa_profile *profile; + const char *ns; + long int pos; + } iface; + struct { + const char *src_name; + const char *type; + const char *trans; + const char *data; + long unsigned int flags; + } mnt; + struct { + struct aa_label *target; + } uring; + }; + struct common_audit_data common; +}; + +struct aa_perms { + u32 allow; + u32 deny; + u32 subtree; + u32 cond; + u32 kill; + u32 complain; + u32 prompt; + u32 audit; + u32 quiet; + u32 hide; + u32 xindex; + u32 tag; + u32 label; +}; + +struct aa_ns_acct { + int max_size; + int max_count; + int size; + int count; +}; + +struct aa_ns { + struct aa_policy base; + struct aa_ns *parent; + struct mutex lock; + struct aa_ns_acct acct; + struct aa_profile *unconfined; + struct list_head sub_ns; + atomic_t uniq_null; + long int uniq_id; + int level; + long int revision; + wait_queue_head_t wait; + spinlock_t listener_lock; + struct list_head listeners; + struct aa_labelset labels; + struct list_head rawdata_list; + struct dentry *dents[13]; +}; + +enum audit_type { + AUDIT_APPARMOR_AUDIT = 0, + AUDIT_APPARMOR_ALLOWED = 1, + AUDIT_APPARMOR_DENIED = 2, + AUDIT_APPARMOR_HINT = 3, + AUDIT_APPARMOR_STATUS = 4, + AUDIT_APPARMOR_ERROR = 5, + AUDIT_APPARMOR_KILL = 6, + AUDIT_APPARMOR_USER = 7, + AUDIT_APPARMOR_AUTO = 8, +}; + +struct aa_net_compat { + u16 allow[46]; + u16 audit[46]; + u16 quiet[46]; +}; + +struct aa_secmark { + u8 audit; + u8 deny; + u32 secid; + char *label; +}; + +enum profile_mode { + APPARMOR_ENFORCE = 0, + APPARMOR_COMPLAIN = 1, + APPARMOR_KILL = 2, + APPARMOR_UNCONFINED = 3, + APPARMOR_USER = 4, +}; + +struct aa_tags_header { + u32 mask; + u32 count; + u32 size; + u32 tags; +}; + +struct aa_tags_struct { + struct { + u32 size; + u32 *table; + } sets; + struct { + u32 size; + struct aa_tags_header *table; + } hdrs; + struct aa_str_table strs; +}; + +struct aa_policydb { + struct kref count; + struct aa_dfa *dfa; + struct { + struct aa_perms *perms; + u32 size; + }; + struct aa_str_table trans; + struct aa_tags_struct tags; + unsigned int start[33]; +}; + +struct audit_cache { + const struct cred *ad_subj_cred; + u64 ktime_ns_expiration[41]; +}; + +struct counted_str { + struct kref count; + char name[0]; +}; + +struct val_table_ent { + const char *str; + int value; +}; + +enum label_flags { + FLAG_HAT = 1, + FLAG_UNCONFINED = 2, + FLAG_NULL = 4, + FLAG_IX_ON_NAME_ERROR = 8, + FLAG_IMMUTIBLE = 16, + FLAG_USER_DEFINED = 32, + FLAG_NO_LIST_REF = 64, + FLAG_NS_COUNT = 128, + FLAG_IN_TREE = 256, + FLAG_PROFILE = 512, + FLAG_EXPLICIT = 1024, + FLAG_STALE = 2048, + FLAG_INTERRUPTIBLE = 4096, + FLAG_REVOKED = 8192, + FLAG_DEBUG1 = 16384, + FLAG_DEBUG2 = 32768, +}; + +struct aa_data { + char *key; + u32 size; + char *data; + struct rhash_head head; +}; + +struct aa_loaddata { + struct aa_common_ref count; + struct kref pcount; + struct list_head list; + struct work_struct work; + struct dentry *dents[6]; + struct aa_ns *ns; + char *name; + size_t size; + size_t compressed_size; + long int revision; + int abi; + unsigned char *hash; + char *data; +}; + +struct aa_load_ent { + struct list_head list; + struct aa_profile *new; + struct aa_profile *old; + struct aa_profile *rename; + const char *ns_name; +}; + +enum { + AAFS_LOADDATA_ABI = 0, + AAFS_LOADDATA_REVISION = 1, + AAFS_LOADDATA_HASH = 2, + AAFS_LOADDATA_DATA = 3, + AAFS_LOADDATA_COMPRESSED_SIZE = 4, + AAFS_LOADDATA_DIR = 5, + AAFS_LOADDATA_NDENTS = 6, +}; + +struct tty_file_private { + struct tty_struct *tty; + struct file *file; + struct list_head list; +}; + +enum apparmor_notif_type { + APPARMOR_NOTIF_RESP_PERM = 0, + APPARMOR_NOTIF_CANCEL = 1, + APPARMOR_NOTIF_INTERUPT = 2, + APPARMOR_NOTIF_ALIVE = 3, + APPARMOR_NOTIF_OP = 4, + APPARMOR_NOTIF_RESP_NAME = 5, +}; + +struct aa_file_ctx { + spinlock_t lock; + struct aa_label *label; + u32 allow; +}; + +struct path_cond { + kuid_t uid; + umode_t mode; +}; + +struct aa_knotif { + struct apparmor_audit_data *ad; + struct list_head list; + struct completion ready; + u64 id; + u16 ntype; + u16 flags; +}; + +struct aa_audit_node { + struct kref count; + struct apparmor_audit_data data; + struct list_head list; + struct aa_knotif knotif; +}; + +struct aa_sk_ctx { + struct aa_label *label; + struct aa_label *peer; + struct aa_label *peer_lastupdate; +}; + +enum dfa_accept_flags { + ACCEPT_FLAG_OWNER = 1, +}; + +struct aa_inode_sec { + struct inode *inode; + struct aa_label *label; + u16 sclass; + bool initialized; + spinlock_t lock; +}; + +enum path_flags { + PATH_IS_DIR = 1, + PATH_SOCK_COND = 2, + PATH_CONNECT_PATH = 4, + PATH_CHROOT_REL = 8, + PATH_CHROOT_NSCONNECT = 16, + PATH_CONNECT_IPC_PATH = 32, + PATH_DELEGATE_DELETED = 65536, + PATH_MEDIATE_DELETED = 131072, +}; + +struct cred_label { + const struct cred *cred; + struct aa_label *label; +}; + +enum sid_policy_type { + SIDPOL_DEFAULT = 0, + SIDPOL_CONSTRAINED = 1, + SIDPOL_ALLOWED = 2, +}; + +typedef union { + kuid_t uid; + kgid_t gid; +} kid_t; + +enum setid_type { + UID = 0, + GID = 1, +}; + +struct setid_rule { + struct hlist_node next; + kid_t src_id; + kid_t dst_id; + enum setid_type type; +}; + +struct setid_ruleset { + struct hlist_head rules[256]; + char *policy_str; + struct callback_head rcu; + enum setid_type type; +}; + +typedef u16 access_mask_t; + +struct access_masks { + access_mask_t fs: 16; + access_mask_t net: 2; + access_mask_t scope: 2; +}; + +union access_masks_all { + struct access_masks masks; + u32 all; +}; + +typedef u8 deny_masks_t; + +struct landlock_hierarchy; + +struct landlock_ruleset { + struct rb_root root_inode; + struct rb_root root_net_port; + struct landlock_hierarchy *hierarchy; + union { + struct work_struct work_free; + struct { + struct mutex lock; + refcount_t usage; + u32 num_rules; + u32 num_layers; + struct access_masks access_masks[0]; + }; + }; +}; + +struct landlock_cred_security { + struct landlock_ruleset *domain; + u16 domain_exec; + u8 log_subdomains_off: 1; +} __attribute__((packed)); + +struct landlock_erratum { + const int abi; + const u8 number; +}; + +struct landlock_file_security { + access_mask_t allowed_access; + deny_masks_t deny_masks; + u8 fown_layer; + struct landlock_cred_security fown_subject; +}; + +struct landlock_ruleset_attr { + __u64 handled_access_fs; + __u64 handled_access_net; + __u64 scoped; +}; + +enum landlock_rule_type { + LANDLOCK_RULE_PATH_BENEATH = 1, + LANDLOCK_RULE_NET_PORT = 2, +}; + +struct landlock_path_beneath_attr { + __u64 allowed_access; + __s32 parent_fd; +} __attribute__((packed)); + +struct landlock_net_port_attr { + __u64 allowed_access; + __u64 port; +}; + +enum landlock_log_status { + LANDLOCK_LOG_PENDING = 0, + LANDLOCK_LOG_RECORDED = 1, + LANDLOCK_LOG_DISABLED = 2, +}; + +struct landlock_details; + +struct landlock_hierarchy { + struct landlock_hierarchy *parent; + refcount_t usage; + enum landlock_log_status log_status; + atomic64_t num_denials; + u64 id; + const struct landlock_details *details; + u32 log_same_exec: 1; + u32 log_new_exec: 1; +}; + +struct landlock_details { + struct pid *pid; + uid_t uid; + char comm[16]; + char exe_path[0]; +}; + +typedef u16 layer_mask_t; + +enum landlock_request_type { + LANDLOCK_REQUEST_PTRACE = 1, + LANDLOCK_REQUEST_FS_CHANGE_TOPOLOGY = 2, + LANDLOCK_REQUEST_FS_ACCESS = 3, + LANDLOCK_REQUEST_NET_ACCESS = 4, + LANDLOCK_REQUEST_SCOPE_ABSTRACT_UNIX_SOCKET = 5, + LANDLOCK_REQUEST_SCOPE_SIGNAL = 6, +}; + +struct landlock_request { + enum landlock_request_type type; + struct common_audit_data audit; + size_t layer_plus_one; + access_mask_t access; + const layer_mask_t (*layer_masks)[0]; + size_t layer_masks_size; + const access_mask_t all_existing_optional_access; + deny_masks_t deny_masks; +}; + +struct dm_verity_digest { + const char *alg; + const u8 *digest; + size_t digest_len; +}; + +enum ipe_hook_type { + IPE_HOOK_BPRM_CHECK = 0, + IPE_HOOK_MMAP = 1, + IPE_HOOK_MPROTECT = 2, + IPE_HOOK_KERNEL_READ = 3, + IPE_HOOK_KERNEL_LOAD = 4, + __IPE_HOOK_MAX = 5, +}; + +enum ipe_op_type { + IPE_OP_EXEC = 0, + IPE_OP_FIRMWARE = 1, + IPE_OP_KERNEL_MODULE = 2, + IPE_OP_KEXEC_IMAGE = 3, + IPE_OP_KEXEC_INITRAMFS = 4, + IPE_OP_POLICY = 5, + IPE_OP_X509 = 6, + __IPE_OP_MAX = 7, +}; + +struct ipe_superblock { + bool initramfs; +}; + +struct digest_info; + +struct ipe_bdev { + bool dm_verity_signed; + struct digest_info *root_hash; +}; + +struct digest_info { + const char *alg; + const u8 *digest; + size_t digest_len; +}; + +struct ipe_inode { + bool fs_verity_signed; +}; + +struct ipe_eval_ctx { + enum ipe_op_type op; + enum ipe_hook_type hook; + const struct file *file; + bool initramfs; + const struct ipe_bdev *ipe_bdev; + const struct inode *ino; + const struct ipe_inode *ipe_inode; +}; + +enum ipe_action_type { + IPE_ACTION_ALLOW = 0, + IPE_ACTION_DENY = 1, + __IPE_ACTION_MAX = 2, +}; + +struct ipe_op_table { + struct list_head rules; + enum ipe_action_type default_action; +}; + +struct ipe_parsed_policy { + const char *name; + struct { + u16 major; + u16 minor; + u16 rev; + } version; + enum ipe_action_type global_default_action; + struct ipe_op_table rules[7]; +}; + +struct ipe_policy { + const char *pkcs7; + size_t pkcs7len; + const char *text; + size_t textlen; + struct ipe_parsed_policy *parsed; + struct dentry *policyfs; +}; + +enum OID { + OID_id_dsa_with_sha1 = 0, + OID_id_dsa = 1, + OID_id_ecPublicKey = 2, + OID_id_prime192v1 = 3, + OID_id_prime256v1 = 4, + OID_id_ecdsa_with_sha1 = 5, + OID_id_ecdsa_with_sha224 = 6, + OID_id_ecdsa_with_sha256 = 7, + OID_id_ecdsa_with_sha384 = 8, + OID_id_ecdsa_with_sha512 = 9, + OID_rsaEncryption = 10, + OID_sha1WithRSAEncryption = 11, + OID_sha256WithRSAEncryption = 12, + OID_sha384WithRSAEncryption = 13, + OID_sha512WithRSAEncryption = 14, + OID_sha224WithRSAEncryption = 15, + OID_data = 16, + OID_signed_data = 17, + OID_email_address = 18, + OID_contentType = 19, + OID_messageDigest = 20, + OID_signingTime = 21, + OID_smimeCapabilites = 22, + OID_smimeAuthenticatedAttrs = 23, + OID_mskrb5 = 24, + OID_krb5 = 25, + OID_krb5u2u = 26, + OID_msIndirectData = 27, + OID_msStatementType = 28, + OID_msSpOpusInfo = 29, + OID_msPeImageDataObjId = 30, + OID_msIndividualSPKeyPurpose = 31, + OID_msOutlookExpress = 32, + OID_ntlmssp = 33, + OID_negoex = 34, + OID_spnego = 35, + OID_IAKerb = 36, + OID_PKU2U = 37, + OID_Scram = 38, + OID_certAuthInfoAccess = 39, + OID_sha1 = 40, + OID_id_ansip384r1 = 41, + OID_id_ansip521r1 = 42, + OID_sha256 = 43, + OID_sha384 = 44, + OID_sha512 = 45, + OID_sha224 = 46, + OID_commonName = 47, + OID_surname = 48, + OID_countryName = 49, + OID_locality = 50, + OID_stateOrProvinceName = 51, + OID_organizationName = 52, + OID_organizationUnitName = 53, + OID_title = 54, + OID_description = 55, + OID_name = 56, + OID_givenName = 57, + OID_initials = 58, + OID_generationalQualifier = 59, + OID_subjectKeyIdentifier = 60, + OID_keyUsage = 61, + OID_subjectAltName = 62, + OID_issuerAltName = 63, + OID_basicConstraints = 64, + OID_crlDistributionPoints = 65, + OID_certPolicies = 66, + OID_authorityKeyIdentifier = 67, + OID_extKeyUsage = 68, + OID_NetlogonMechanism = 69, + OID_appleLocalKdcSupported = 70, + OID_gostCPSignA = 71, + OID_gostCPSignB = 72, + OID_gostCPSignC = 73, + OID_gost2012PKey256 = 74, + OID_gost2012PKey512 = 75, + OID_gost2012Digest256 = 76, + OID_gost2012Digest512 = 77, + OID_gost2012Signature256 = 78, + OID_gost2012Signature512 = 79, + OID_gostTC26Sign256A = 80, + OID_gostTC26Sign256B = 81, + OID_gostTC26Sign256C = 82, + OID_gostTC26Sign256D = 83, + OID_gostTC26Sign512A = 84, + OID_gostTC26Sign512B = 85, + OID_gostTC26Sign512C = 86, + OID_sm2 = 87, + OID_sm3 = 88, + OID_SM2_with_SM3 = 89, + OID_sm3WithRSAEncryption = 90, + OID_TPMLoadableKey = 91, + OID_TPMImportableKey = 92, + OID_TPMSealedData = 93, + OID_sha3_256 = 94, + OID_sha3_384 = 95, + OID_sha3_512 = 96, + OID_id_ecdsa_with_sha3_256 = 97, + OID_id_ecdsa_with_sha3_384 = 98, + OID_id_ecdsa_with_sha3_512 = 99, + OID_id_rsassa_pkcs1_v1_5_with_sha3_256 = 100, + OID_id_rsassa_pkcs1_v1_5_with_sha3_384 = 101, + OID_id_rsassa_pkcs1_v1_5_with_sha3_512 = 102, + OID__NR = 103, +}; + +struct public_key { + void *key; + u32 keylen; + enum OID algo; + void *params; + u32 paramlen; + bool key_is_private; + const char *id_type; + const char *pkey_algo; + long unsigned int key_eflags; +}; + +struct asymmetric_key_id; + +struct public_key_signature { + struct asymmetric_key_id *auth_ids[3]; + u8 *s; + u8 *digest; + u32 s_size; + u32 digest_size; + const char *pkey_algo; + const char *hash_algo; + const char *encoding; +}; + +struct asymmetric_key_id { + short unsigned int len; + unsigned char data[0]; +}; + +enum asymmetric_payload_bits { + asym_crypto = 0, + asym_subtype = 1, + asym_key_ids = 2, + asym_auth = 3, +}; + +struct signature_v2_hdr { + uint8_t type; + uint8_t version; + uint8_t hash_algo; + __be32 keyid; + __be16 sig_size; + uint8_t sig[0]; +} __attribute__((packed)); + +struct hwrng { + const char *name; + int (*init)(struct hwrng *); + void (*cleanup)(struct hwrng *); + int (*data_present)(struct hwrng *, int); + int (*data_read)(struct hwrng *, u32 *); + int (*read)(struct hwrng *, void *, size_t, bool); + long unsigned int priv; + short unsigned int quality; + struct list_head list; + struct kref ref; + struct completion cleanup_done; + struct completion dying; +}; + +typedef void *acpi_handle; + +struct tpm_digest { + u16 alg_id; + u8 digest[64]; +}; + +struct tpm_bank_info { + u16 alg_id; + u16 digest_size; + u16 crypto_id; +}; + +struct tpm_chip; + +struct tpm_class_ops { + unsigned int flags; + const u8 req_complete_mask; + const u8 req_complete_val; + bool (*req_canceled)(struct tpm_chip *, u8); + int (*recv)(struct tpm_chip *, u8 *, size_t); + int (*send)(struct tpm_chip *, u8 *, size_t, size_t); + void (*cancel)(struct tpm_chip *); + u8 (*status)(struct tpm_chip *); + void (*update_timeouts)(struct tpm_chip *, long unsigned int *); + void (*update_durations)(struct tpm_chip *, long unsigned int *); + int (*go_idle)(struct tpm_chip *); + int (*cmd_ready)(struct tpm_chip *); + int (*request_locality)(struct tpm_chip *, int); + int (*relinquish_locality)(struct tpm_chip *, int); + void (*clk_enable)(struct tpm_chip *, bool); +}; + +struct tpm_bios_log { + void *bios_event_log; + void *bios_event_log_end; +}; + +struct tpm_chip_seqops { + struct tpm_chip *chip; + const struct seq_operations *seqops; +}; + +struct tpm_space { + u32 context_tbl[3]; + u8 *context_buf; + u32 session_tbl[3]; + u8 *session_buf; + u32 buf_size; +}; + +struct tpm_chip { + struct device dev; + struct device devs; + struct cdev cdev; + struct cdev cdevs; + struct rw_semaphore ops_sem; + const struct tpm_class_ops *ops; + struct tpm_bios_log log; + struct tpm_chip_seqops bin_log_seqops; + struct tpm_chip_seqops ascii_log_seqops; + unsigned int flags; + int dev_num; + long unsigned int is_open; + char hwrng_name[64]; + struct hwrng hwrng; + struct mutex tpm_mutex; + long unsigned int timeout_a; + long unsigned int timeout_b; + long unsigned int timeout_c; + long unsigned int timeout_d; + bool timeout_adjusted; + long unsigned int duration[4]; + bool duration_adjusted; + struct dentry *bios_dir; + const struct attribute_group *groups[8]; + unsigned int groups_cnt; + u32 nr_allocated_banks; + struct tpm_bank_info allocated_banks[8]; + acpi_handle acpi_dev_handle; + char ppi_version[4]; + struct tpm_space work_space; + u32 last_cc; + u32 nr_commands; + u32 *cc_attrs_tbl; + int locality; +}; + +enum integrity_status { + INTEGRITY_PASS = 0, + INTEGRITY_PASS_IMMUTABLE = 1, + INTEGRITY_FAIL = 2, + INTEGRITY_FAIL_IMMUTABLE = 3, + INTEGRITY_NOLABEL = 4, + INTEGRITY_NOXATTRS = 5, + INTEGRITY_UNKNOWN = 6, +}; + +struct integrity_inode_attributes { + u64 version; + long unsigned int ino; + dev_t dev; +}; + +struct evm_ima_xattr_data_hdr { + u8 type; +}; + +struct evm_ima_xattr_data { + union { + struct { + u8 type; + }; + struct evm_ima_xattr_data_hdr hdr; + }; + u8 data[0]; +}; + +struct ima_digest_data_hdr { + u8 algo; + u8 length; + union { + struct { + u8 unused; + u8 type; + } sha1; + struct { + u8 type; + u8 algo; + } ng; + u8 data[2]; + } xattr; +}; + +struct ima_digest_data { + union { + struct { + u8 algo; + u8 length; + union { + struct { + u8 unused; + u8 type; + } sha1; + struct { + u8 type; + u8 algo; + } ng; + u8 data[2]; + } xattr; + }; + struct ima_digest_data_hdr hdr; + }; + u8 digest[0]; +}; + +struct ima_max_digest_data { + struct ima_digest_data_hdr hdr; + u8 digest[64]; +}; + +enum ima_show_type { + IMA_SHOW_BINARY = 0, + IMA_SHOW_BINARY_NO_FIELD_LEN = 1, + IMA_SHOW_BINARY_OLD_STRING_FMT = 2, + IMA_SHOW_ASCII = 3, +}; + +struct ima_iint_cache; + +struct modsig; + +struct ima_event_data { + struct ima_iint_cache *iint; + struct file *file; + const unsigned char *filename; + struct evm_ima_xattr_data *xattr_value; + int xattr_len; + const struct modsig *modsig; + const char *violation; + const void *buf; + int buf_len; +}; + +struct ima_iint_cache { + struct mutex mutex; + struct integrity_inode_attributes real_inode; + long unsigned int flags; + long unsigned int measured_pcrs; + long unsigned int atomic_flags; + enum integrity_status ima_file_status: 4; + enum integrity_status ima_mmap_status: 4; + enum integrity_status ima_bprm_status: 4; + enum integrity_status ima_read_status: 4; + enum integrity_status ima_creds_status: 4; + struct ima_digest_data *ima_hash; +}; + +struct pkcs7_message; + +struct modsig { + struct pkcs7_message *pkcs7_msg; + enum hash_algo hash_algo; + const u8 *digest; + u32 digest_size; + int raw_pkcs7_len; + u8 raw_pkcs7[0]; +}; + +struct ima_field_data { + u8 *data; + u32 len; +}; + +struct ima_template_field { + const char field_id[16]; + int (*field_init)(struct ima_event_data *, struct ima_field_data *); + void (*field_show)(struct seq_file *, enum ima_show_type, struct ima_field_data *); +}; + +struct ima_template_desc { + struct list_head list; + char *name; + char *fmt; + int num_fields; + const struct ima_template_field **fields; +}; + +struct ima_template_entry { + int pcr; + struct tpm_digest *digests; + struct ima_template_desc *template_desc; + u32 template_data_len; + struct ima_field_data template_data[0]; +}; + +enum ima_hooks { + NONE___2 = 0, + FILE_CHECK = 1, + MMAP_CHECK = 2, + MMAP_CHECK_REQPROT = 3, + BPRM_CHECK = 4, + CREDS_CHECK = 5, + POST_SETATTR = 6, + MODULE_CHECK = 7, + FIRMWARE_CHECK = 8, + KEXEC_KERNEL_CHECK = 9, + KEXEC_INITRAMFS_CHECK = 10, + POLICY_CHECK = 11, + KEXEC_CMDLINE = 12, + KEY_CHECK = 13, + CRITICAL_DATA = 14, + SETXATTR_CHECK = 15, + MAX_CHECK = 16, +}; + +enum lsm_rule_types { + LSM_OBJ_USER = 0, + LSM_OBJ_ROLE = 1, + LSM_OBJ_TYPE = 2, + LSM_SUBJ_USER = 3, + LSM_SUBJ_ROLE = 4, + LSM_SUBJ_TYPE = 5, +}; + +enum policy_types { + ORIGINAL_TCB = 1, + DEFAULT_TCB = 2, +}; + +enum policy_rule_list { + IMA_DEFAULT_POLICY = 1, + IMA_CUSTOM_POLICY = 2, +}; + +struct ima_rule_opt_list { + size_t count; + char *items[0]; +}; + +struct ima_rule_entry { + struct list_head list; + int action; + unsigned int flags; + enum ima_hooks func; + int mask; + long unsigned int fsmagic; + uuid_t fsuuid; + kuid_t uid; + kgid_t gid; + kuid_t fowner; + kgid_t fgroup; + bool (*uid_op)(kuid_t, kuid_t); + bool (*gid_op)(kgid_t, kgid_t); + bool (*fowner_op)(vfsuid_t, kuid_t); + bool (*fgroup_op)(vfsgid_t, kgid_t); + int pcr; + unsigned int allowed_algos; + struct { + void *rule; + char *args_p; + int type; + } lsm[6]; + char *fsname; + struct ima_rule_opt_list *keyrings; + struct ima_rule_opt_list *label; + struct ima_template_desc *template; +}; + +enum policy_opt { + Opt_measure = 0, + Opt_dont_measure = 1, + Opt_appraise = 2, + Opt_dont_appraise = 3, + Opt_audit = 4, + Opt_hash = 5, + Opt_dont_hash = 6, + Opt_obj_user = 7, + Opt_obj_role = 8, + Opt_obj_type = 9, + Opt_subj_user = 10, + Opt_subj_role = 11, + Opt_subj_type = 12, + Opt_func = 13, + Opt_mask = 14, + Opt_fsmagic = 15, + Opt_fsname = 16, + Opt_fsuuid = 17, + Opt_uid_eq = 18, + Opt_euid_eq = 19, + Opt_gid_eq = 20, + Opt_egid_eq = 21, + Opt_fowner_eq = 22, + Opt_fgroup_eq = 23, + Opt_uid_gt = 24, + Opt_euid_gt = 25, + Opt_gid_gt = 26, + Opt_egid_gt = 27, + Opt_fowner_gt = 28, + Opt_fgroup_gt = 29, + Opt_uid_lt = 30, + Opt_euid_lt = 31, + Opt_gid_lt = 32, + Opt_egid_lt = 33, + Opt_fowner_lt = 34, + Opt_fgroup_lt = 35, + Opt_digest_type = 36, + Opt_appraise_type = 37, + Opt_appraise_flag = 38, + Opt_appraise_algos = 39, + Opt_permit_directio = 40, + Opt_pcr = 41, + Opt_template = 42, + Opt_keyrings = 43, + Opt_label = 44, + Opt_err___3 = 45, +}; + +enum evm_ima_xattr_type { + IMA_XATTR_DIGEST = 1, + EVM_XATTR_HMAC = 2, + EVM_IMA_XATTR_DIGSIG = 3, + IMA_XATTR_DIGEST_NG = 4, + EVM_XATTR_PORTABLE_DIGSIG = 5, + IMA_VERITY_DIGSIG = 6, + IMA_XATTR_LAST = 7, +}; + +struct ima_file_id { + __u8 hash_type; + __u8 hash_algorithm; + __u8 hash[64]; +}; + +struct xattr_list { + struct list_head list; + char *name; + bool enabled; +}; + +struct crypto_spawn { + struct list_head list; + struct crypto_alg *alg; + union { + struct crypto_instance *inst; + struct crypto_spawn *next; + }; + const struct crypto_type *frontend; + u32 mask; + bool dead; + bool registered; +}; + +struct crypto_template; + +struct crypto_instance { + struct crypto_alg alg; + struct crypto_template *tmpl; + union { + struct hlist_node list; + struct crypto_spawn *spawns; + }; + void *__ctx[0]; +}; + +struct rtattr; + +struct crypto_template { + struct list_head list; + struct hlist_head instances; + struct hlist_head dead; + struct module *module; + struct work_struct free_work; + int (*create)(struct crypto_template *, struct rtattr **); + char name[128]; +}; + +struct rtattr { + short unsigned int rta_len; + short unsigned int rta_type; +}; + +struct crypto_queue { + struct list_head list; + struct list_head *backlog; + unsigned int qlen; + unsigned int max_qlen; +}; + +struct crypto_attr_alg { + char name[128]; +}; + +struct crypto_attr_type { + u32 type; + u32 mask; +}; + +enum { + CRYPTO_MSG_ALG_REQUEST = 0, + CRYPTO_MSG_ALG_REGISTER = 1, + CRYPTO_MSG_ALG_LOADED = 2, +}; + +struct crypto_larval { + struct crypto_alg alg; + struct crypto_alg *adult; + struct completion completion; + u32 mask; + bool test_started; +}; + +enum { + CRYPTOA_UNSPEC = 0, + CRYPTOA_ALG = 1, + CRYPTOA_TYPE = 2, + __CRYPTOA_MAX = 3, +}; + +enum crypto_attr_type_t { + CRYPTOCFGA_UNSPEC = 0, + CRYPTOCFGA_PRIORITY_VAL = 1, + CRYPTOCFGA_REPORT_LARVAL = 2, + CRYPTOCFGA_REPORT_HASH = 3, + CRYPTOCFGA_REPORT_BLKCIPHER = 4, + CRYPTOCFGA_REPORT_AEAD = 5, + CRYPTOCFGA_REPORT_COMPRESS = 6, + CRYPTOCFGA_REPORT_RNG = 7, + CRYPTOCFGA_REPORT_CIPHER = 8, + CRYPTOCFGA_REPORT_AKCIPHER = 9, + CRYPTOCFGA_REPORT_KPP = 10, + CRYPTOCFGA_REPORT_ACOMP = 11, + CRYPTOCFGA_STAT_LARVAL = 12, + CRYPTOCFGA_STAT_HASH = 13, + CRYPTOCFGA_STAT_BLKCIPHER = 14, + CRYPTOCFGA_STAT_AEAD = 15, + CRYPTOCFGA_STAT_COMPRESS = 16, + CRYPTOCFGA_STAT_RNG = 17, + CRYPTOCFGA_STAT_CIPHER = 18, + CRYPTOCFGA_STAT_AKCIPHER = 19, + CRYPTOCFGA_STAT_KPP = 20, + CRYPTOCFGA_STAT_ACOMP = 21, + CRYPTOCFGA_REPORT_SIG = 22, + __CRYPTOCFGA_MAX = 23, +}; + +struct crypto_report_blkcipher { + char type[64]; + char geniv[64]; + unsigned int blocksize; + unsigned int min_keysize; + unsigned int max_keysize; + unsigned int ivsize; +}; + +union crypto_no_such_thing; + +struct scatter_walk { + union { + void * const addr; + union crypto_no_such_thing *__addr; + }; + struct scatterlist *sg; + unsigned int offset; +}; + +struct skcipher_walk { + union { + struct { + struct { + const void * const addr; + } virt; + } src; + struct scatter_walk in; + }; + union { + struct { + struct { + void * const addr; + } virt; + } dst; + struct scatter_walk out; + }; + unsigned int nbytes; + unsigned int total; + u8 *page; + u8 *buffer; + u8 *oiv; + void *iv; + unsigned int ivsize; + int flags; + unsigned int blocksize; + unsigned int stride; + unsigned int alignmask; +}; + +struct crypto_lskcipher { + struct crypto_tfm base; +}; + +struct lskcipher_alg { + int (*setkey)(struct crypto_lskcipher *, const u8 *, unsigned int); + int (*encrypt)(struct crypto_lskcipher *, const u8 *, u8 *, unsigned int, u8 *, u32); + int (*decrypt)(struct crypto_lskcipher *, const u8 *, u8 *, unsigned int, u8 *, u32); + int (*init)(struct crypto_lskcipher *); + void (*exit)(struct crypto_lskcipher *); + struct skcipher_alg_common co; +}; + +struct lskcipher_instance { + void (*free)(struct lskcipher_instance *); + union { + struct { + char head[64]; + struct crypto_instance base; + } s; + struct lskcipher_alg alg; + }; +}; + +struct crypto_lskcipher_spawn { + struct crypto_spawn base; +}; + +struct crypto_report_hash { + char type[64]; + unsigned int blocksize; + unsigned int digestsize; +}; + +struct hash_alg_common { + unsigned int digestsize; + unsigned int statesize; + struct crypto_alg base; +}; + +struct ahash_request { + struct crypto_async_request base; + unsigned int nbytes; + union { + struct scatterlist *src; + const u8 *svirt; + }; + u8 *result; + struct scatterlist sg_head[2]; + crypto_completion_t saved_complete; + void *saved_data; + void *__ctx[0]; +}; + +struct crypto_ahash; + +struct ahash_alg { + int (*init)(struct ahash_request *); + int (*update)(struct ahash_request *); + int (*final)(struct ahash_request *); + int (*finup)(struct ahash_request *); + int (*digest)(struct ahash_request *); + int (*export)(struct ahash_request *, void *); + int (*import)(struct ahash_request *, const void *); + int (*export_core)(struct ahash_request *, void *); + int (*import_core)(struct ahash_request *, const void *); + int (*setkey)(struct crypto_ahash *, const u8 *, unsigned int); + int (*init_tfm)(struct crypto_ahash *); + void (*exit_tfm)(struct crypto_ahash *); + int (*clone_tfm)(struct crypto_ahash *, struct crypto_ahash *); + struct hash_alg_common halg; +}; + +struct crypto_ahash { + bool using_shash; + unsigned int statesize; + unsigned int reqsize; + struct crypto_tfm base; +}; + +struct shash_desc { + struct crypto_shash *tfm; + void *__ctx[0]; +}; + +struct shash_alg { + int (*init)(struct shash_desc *); + int (*update)(struct shash_desc *, const u8 *, unsigned int); + int (*final)(struct shash_desc *, u8 *); + int (*finup)(struct shash_desc *, const u8 *, unsigned int, u8 *); + int (*digest)(struct shash_desc *, const u8 *, unsigned int, u8 *); + int (*export)(struct shash_desc *, void *); + int (*import)(struct shash_desc *, const void *); + int (*export_core)(struct shash_desc *, void *); + int (*import_core)(struct shash_desc *, const void *); + int (*setkey)(struct crypto_shash *, const u8 *, unsigned int); + int (*init_tfm)(struct crypto_shash *); + void (*exit_tfm)(struct crypto_shash *); + int (*clone_tfm)(struct crypto_shash *, struct crypto_shash *); + unsigned int descsize; + union { + struct { + unsigned int digestsize; + unsigned int statesize; + struct crypto_alg base; + }; + struct hash_alg_common halg; + }; +}; + +struct crypto_hash_walk { + const char *data; + unsigned int offset; + unsigned int flags; + struct page *pg; + unsigned int entrylen; + unsigned int total; + struct scatterlist *sg; +}; + +struct ahash_instance { + void (*free)(struct ahash_instance *); + union { + struct { + char head[112]; + struct crypto_instance base; + } s; + struct ahash_alg alg; + }; +}; + +struct crypto_ahash_spawn { + struct crypto_spawn base; +}; + +struct kpp_request { + struct crypto_async_request base; + struct scatterlist *src; + struct scatterlist *dst; + unsigned int src_len; + unsigned int dst_len; + void *__ctx[0]; +}; + +struct crypto_kpp { + unsigned int reqsize; + struct crypto_tfm base; +}; + +struct kpp_alg { + int (*set_secret)(struct crypto_kpp *, const void *, unsigned int); + int (*generate_public_key)(struct kpp_request *); + int (*compute_shared_secret)(struct kpp_request *); + unsigned int (*max_size)(struct crypto_kpp *); + int (*init)(struct crypto_kpp *); + void (*exit)(struct crypto_kpp *); + struct crypto_alg base; +}; + +struct kpp_instance { + void (*free)(struct kpp_instance *); + union { + struct { + char head[48]; + struct crypto_instance base; + } s; + struct kpp_alg alg; + }; +}; + +struct crypto_kpp_spawn { + struct crypto_spawn base; +}; + +struct crypto_report_kpp { + char type[64]; +}; + +struct crypto_wait { + struct completion completion; + int err; +}; + +struct akcipher_request { + struct crypto_async_request base; + struct scatterlist *src; + struct scatterlist *dst; + unsigned int src_len; + unsigned int dst_len; + void *__ctx[0]; +}; + +struct crypto_akcipher { + unsigned int reqsize; + struct crypto_tfm base; +}; + +struct akcipher_alg { + int (*encrypt)(struct akcipher_request *); + int (*decrypt)(struct akcipher_request *); + int (*set_pub_key)(struct crypto_akcipher *, const void *, unsigned int); + int (*set_priv_key)(struct crypto_akcipher *, const void *, unsigned int); + unsigned int (*max_size)(struct crypto_akcipher *); + int (*init)(struct crypto_akcipher *); + void (*exit)(struct crypto_akcipher *); + struct crypto_alg base; +}; + +struct crypto_sig { + struct crypto_tfm base; +}; + +struct sig_alg { + int (*sign)(struct crypto_sig *, const void *, unsigned int, void *, unsigned int); + int (*verify)(struct crypto_sig *, const void *, unsigned int, const void *, unsigned int); + int (*set_pub_key)(struct crypto_sig *, const void *, unsigned int); + int (*set_priv_key)(struct crypto_sig *, const void *, unsigned int); + unsigned int (*key_size)(struct crypto_sig *); + unsigned int (*digest_size)(struct crypto_sig *); + unsigned int (*max_size)(struct crypto_sig *); + int (*init)(struct crypto_sig *); + void (*exit)(struct crypto_sig *); + struct crypto_alg base; +}; + +struct crypto_akcipher_spawn { + struct crypto_spawn base; +}; + +struct sig_instance { + void (*free)(struct sig_instance *); + union { + struct { + char head[72]; + struct crypto_instance base; + }; + struct sig_alg alg; + }; +}; + +struct hash_prefix { + const char *name; + const u8 *data; + size_t size; +}; + +struct rsassa_pkcs1_ctx { + struct crypto_akcipher *child; + unsigned int key_size; +}; + +struct rsassa_pkcs1_inst_ctx { + struct crypto_akcipher_spawn spawn; + const struct hash_prefix *hash_prefix; +}; + +struct cryptomgr_param { + struct rtattr *tb[34]; + struct { + struct rtattr attr; + struct crypto_attr_type data; + } type; + struct { + struct rtattr attr; + struct crypto_attr_alg data; + } attrs[32]; + char template[128]; + struct crypto_larval *larval; + u32 otype; + u32 omask; +}; + +struct crypto_test_param { + char driver[128]; + char alg[128]; + u32 type; +}; + +struct __hmac_sha256_key { + struct sha256_block_state istate; + struct sha256_block_state ostate; +}; + +struct __hmac_sha256_ctx { + struct __sha256_ctx sha_ctx; + struct sha256_block_state ostate; +}; + +struct sha224_ctx { + struct __sha256_ctx ctx; +}; + +struct hmac_sha224_key { + struct __hmac_sha256_key key; +}; + +struct hmac_sha224_ctx { + struct __hmac_sha256_ctx ctx; +}; + +struct hmac_sha256_key { + struct __hmac_sha256_key key; +}; + +struct hmac_sha256_ctx { + struct __hmac_sha256_ctx ctx; +}; + +struct aead_request { + struct crypto_async_request base; + unsigned int assoclen; + unsigned int cryptlen; + u8 *iv; + struct scatterlist *src; + struct scatterlist *dst; + void *__ctx[0]; +}; + +struct crypto_aead; + +struct aead_alg { + int (*setkey)(struct crypto_aead *, const u8 *, unsigned int); + int (*setauthsize)(struct crypto_aead *, unsigned int); + int (*encrypt)(struct aead_request *); + int (*decrypt)(struct aead_request *); + int (*init)(struct crypto_aead *); + void (*exit)(struct crypto_aead *); + unsigned int ivsize; + unsigned int maxauthsize; + unsigned int chunksize; + struct crypto_alg base; +}; + +struct crypto_aead { + unsigned int authsize; + unsigned int reqsize; + struct crypto_tfm base; +}; + +struct aead_instance { + void (*free)(struct aead_instance *); + union { + struct { + char head[64]; + struct crypto_instance base; + } s; + struct aead_alg alg; + }; +}; + +struct crypto_aead_spawn { + struct crypto_spawn base; +}; + +struct crypto_skcipher_spawn { + struct crypto_spawn base; +}; + +struct gcm_instance_ctx { + struct crypto_skcipher_spawn ctr; + struct crypto_ahash_spawn ghash; +}; + +struct crypto_gcm_ctx { + struct crypto_skcipher *ctr; + struct crypto_ahash *ghash; +}; + +struct crypto_rfc4106_ctx { + struct crypto_aead *child; + u8 nonce[4]; +}; + +struct crypto_rfc4106_req_ctx { + struct scatterlist src[3]; + struct scatterlist dst[3]; + struct aead_request subreq; +}; + +struct crypto_rfc4543_instance_ctx { + struct crypto_aead_spawn aead; +}; + +struct crypto_rfc4543_ctx { + struct crypto_aead *child; + u8 nonce[4]; +}; + +struct crypto_rfc4543_req_ctx { + struct aead_request subreq; +}; + +struct crypto_gcm_ghash_ctx { + unsigned int cryptlen; + struct scatterlist *src; + int (*complete)(struct aead_request *, u32); +}; + +struct crypto_gcm_req_priv_ctx { + u8 iv[16]; + u8 auth_tag[16]; + u8 iauth_tag[16]; + struct scatterlist src[3]; + struct scatterlist dst[3]; + struct scatterlist sg; + struct crypto_gcm_ghash_ctx ghash_ctx; + union { + struct ahash_request ahreq; + struct skcipher_request skreq; + } u; +}; + +struct comp_alg_common { + struct crypto_alg base; +}; + +struct crypto_acomp_stream { + spinlock_t lock; + void *ctx; +}; + +struct crypto_acomp_streams { + void * (*alloc_ctx)(void); + void (*free_ctx)(void *); + struct crypto_acomp_stream *streams; + struct work_struct stream_work; + cpumask_t stream_want; +}; + +struct crypto_scomp { + struct crypto_tfm base; +}; + +struct scomp_alg { + int (*compress)(struct crypto_scomp *, const u8 *, unsigned int, u8 *, unsigned int *, void *); + int (*decompress)(struct crypto_scomp *, const u8 *, unsigned int, u8 *, unsigned int *, void *); + struct crypto_acomp_streams streams; + union { + struct { + struct crypto_alg base; + }; + struct comp_alg_common calg; + }; +}; + +typedef unsigned char u8___2; + +struct rand_data { + void *hash_state; + __u64 prev_time; + __u64 last_delta; + __s64 last_delta2; + unsigned int flags; + unsigned int osr; + unsigned char *mem; + unsigned int memlocation; + unsigned int memblocks; + unsigned int memblocksize; + unsigned int memaccessloops; + unsigned int rct_count; + unsigned int apt_cutoff; + unsigned int apt_cutoff_permanent; + unsigned int apt_observations; + unsigned int apt_count; + unsigned int apt_base; + unsigned int health_failure; + unsigned int apt_base_set: 1; +}; + +struct crypto_rng; + +struct rng_alg { + int (*generate)(struct crypto_rng *, const u8 *, unsigned int, u8 *, unsigned int); + int (*seed)(struct crypto_rng *, const u8 *, unsigned int); + void (*set_ent)(struct crypto_rng *, const u8 *, unsigned int); + unsigned int seedsize; + struct crypto_alg base; +}; + +struct crypto_rng { + struct crypto_tfm base; +}; + +struct jitterentropy { + spinlock_t jent_lock; + struct rand_data *entropy_collector; + struct crypto_shash *tfm; + struct shash_desc *sdesc; +}; + +struct ecdh { + char *key; + short unsigned int key_size; +}; + +enum { + CRYPTO_KPP_SECRET_TYPE_UNKNOWN = 0, + CRYPTO_KPP_SECRET_TYPE_DH = 1, + CRYPTO_KPP_SECRET_TYPE_ECDH = 2, +}; + +struct kpp_secret { + short unsigned int type; + short unsigned int len; +}; + +struct asymmetric_key_ids { + void *id[3]; +}; + +struct asymmetric_key_subtype { + struct module *owner; + const char *name; + short unsigned int name_len; + void (*describe)(const struct key *, struct seq_file *); + void (*destroy)(void *, void *); + int (*query)(const struct kernel_pkey_params *, struct kernel_pkey_query *); + int (*eds_op)(struct kernel_pkey_params *, const void *, void *); + int (*verify_signature)(const struct key *, const struct public_key_signature *); +}; + +struct asymmetric_key_parser { + struct list_head link; + struct module *owner; + const char *name; + int (*parse)(struct key_preparsed_payload *); +}; + +struct x509_certificate { + struct x509_certificate *next; + struct x509_certificate *signer; + struct public_key *pub; + struct public_key_signature *sig; + char *issuer; + char *subject; + struct asymmetric_key_id *id; + struct asymmetric_key_id *skid; + time64_t valid_from; + time64_t valid_to; + const void *tbs; + unsigned int tbs_size; + unsigned int raw_sig_size; + const void *raw_sig; + const void *raw_serial; + unsigned int raw_serial_size; + unsigned int raw_issuer_size; + const void *raw_issuer; + const void *raw_subject; + unsigned int raw_subject_size; + unsigned int raw_skid_size; + const void *raw_skid; + unsigned int index; + bool seen; + bool verified; + bool self_signed; + bool unsupported_sig; + bool blacklisted; +}; + +struct pkcs7_signed_info { + struct pkcs7_signed_info *next; + struct x509_certificate *signer; + unsigned int index; + bool unsupported_crypto; + bool blacklisted; + const void *msgdigest; + unsigned int msgdigest_len; + unsigned int authattrs_len; + const void *authattrs; + long unsigned int aa_set; + time64_t signing_time; + struct public_key_signature *sig; +}; + +struct pkcs7_message { + struct x509_certificate *certs; + struct x509_certificate *crl; + struct pkcs7_signed_info *signed_infos; + u8 version; + bool have_authattrs; + enum OID data_type; + size_t data_len; + size_t data_hdrlen; + const void *data; +}; + +struct pkcs7_parse_context { + struct pkcs7_message *msg; + struct pkcs7_signed_info *sinfo; + struct pkcs7_signed_info **ppsinfo; + struct x509_certificate *certs; + struct x509_certificate **ppcerts; + long unsigned int data; + enum OID last_oid; + unsigned int x509_index; + unsigned int sinfo_index; + const void *raw_serial; + unsigned int raw_serial_size; + unsigned int raw_issuer_size; + const void *raw_issuer; + const void *raw_skid; + unsigned int raw_skid_size; + bool expect_skid; +}; + +struct mz_hdr { + uint16_t magic; + uint16_t lbsize; + uint16_t blocks; + uint16_t relocs; + uint16_t hdrsize; + uint16_t min_extra_pps; + uint16_t max_extra_pps; + uint16_t ss; + uint16_t sp; + uint16_t checksum; + uint16_t ip; + uint16_t cs; + uint16_t reloc_table_offset; + uint16_t overlay_num; + uint16_t reserved0[4]; + uint16_t oem_id; + uint16_t oem_info; + uint16_t reserved1[10]; + uint32_t peaddr; + char message[0]; +}; + +struct pe_hdr { + uint32_t magic; + uint16_t machine; + uint16_t sections; + uint32_t timestamp; + uint32_t symbol_table; + uint32_t symbols; + uint16_t opt_hdr_size; + uint16_t flags; +}; + +struct pe32_opt_hdr { + uint16_t magic; + uint8_t ld_major; + uint8_t ld_minor; + uint32_t text_size; + uint32_t data_size; + uint32_t bss_size; + uint32_t entry_point; + uint32_t code_base; + uint32_t data_base; + uint32_t image_base; + uint32_t section_align; + uint32_t file_align; + uint16_t os_major; + uint16_t os_minor; + uint16_t image_major; + uint16_t image_minor; + uint16_t subsys_major; + uint16_t subsys_minor; + uint32_t win32_version; + uint32_t image_size; + uint32_t header_size; + uint32_t csum; + uint16_t subsys; + uint16_t dll_flags; + uint32_t stack_size_req; + uint32_t stack_size; + uint32_t heap_size_req; + uint32_t heap_size; + uint32_t loader_flags; + uint32_t data_dirs; +}; + +struct pe32plus_opt_hdr { + uint16_t magic; + uint8_t ld_major; + uint8_t ld_minor; + uint32_t text_size; + uint32_t data_size; + uint32_t bss_size; + uint32_t entry_point; + uint32_t code_base; + uint64_t image_base; + uint32_t section_align; + uint32_t file_align; + uint16_t os_major; + uint16_t os_minor; + uint16_t image_major; + uint16_t image_minor; + uint16_t subsys_major; + uint16_t subsys_minor; + uint32_t win32_version; + uint32_t image_size; + uint32_t header_size; + uint32_t csum; + uint16_t subsys; + uint16_t dll_flags; + uint64_t stack_size_req; + uint64_t stack_size; + uint64_t heap_size_req; + uint64_t heap_size; + uint32_t loader_flags; + uint32_t data_dirs; +}; + +struct data_dirent { + uint32_t virtual_address; + uint32_t size; +}; + +struct data_directory { + struct data_dirent exports; + struct data_dirent imports; + struct data_dirent resources; + struct data_dirent exceptions; + struct data_dirent certs; + struct data_dirent base_relocations; + struct data_dirent debug; + struct data_dirent arch; + struct data_dirent global_ptr; + struct data_dirent tls; + struct data_dirent load_config; + struct data_dirent bound_imports; + struct data_dirent import_addrs; + struct data_dirent delay_imports; + struct data_dirent clr_runtime_hdr; + struct data_dirent reserved; +}; + +struct section_header { + char name[8]; + uint32_t virtual_size; + uint32_t virtual_address; + uint32_t raw_data_size; + uint32_t data_addr; + uint32_t relocs; + uint32_t line_numbers; + uint16_t num_relocs; + uint16_t num_lin_numbers; + uint32_t flags; +}; + +struct win_certificate { + uint32_t length; + uint16_t revision; + uint16_t cert_type; +}; + +struct pefile_context { + unsigned int header_size; + unsigned int image_checksum_offset; + unsigned int cert_dirent_offset; + unsigned int n_data_dirents; + unsigned int n_sections; + unsigned int certs_size; + unsigned int sig_offset; + unsigned int sig_len; + const struct section_header *secs; + const void *digest; + unsigned int digest_len; + const char *digest_algo; +}; + +struct io_ring_ctx; + +struct io_wq; + +struct io_uring_task { + int cached_refs; + const struct io_ring_ctx *last; + struct task_struct *task; + struct io_wq *io_wq; + struct file *registered_rings[16]; + struct xarray xa; + struct wait_queue_head wait; + atomic_t in_cancel; + atomic_t inflight_tracked; + struct percpu_counter inflight; + long: 64; + struct { + struct llist_head task_list; + struct callback_head task_work; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + }; +}; + +struct io_uring_sqe; + +struct io_uring_cmd { + struct file *file; + const struct io_uring_sqe *sqe; + void (*task_work_cb)(struct io_uring_cmd *, unsigned int); + u32 cmd_op; + u32 flags; + u8 pdu[32]; +}; + +typedef __u16 uio_meta_flags_t; + +struct uio_meta { + uio_meta_flags_t flags; + u16 app_tag; + u64 seed; + struct iov_iter iter; +}; + +struct bio_integrity_payload { + struct bvec_iter bip_iter; + short unsigned int bip_vcnt; + short unsigned int bip_max_vcnt; + short unsigned int bip_flags; + u16 app_tag; + struct bio_vec *bip_vec; +}; + +enum { + BIOSET_NEED_BVECS = 1, + BIOSET_NEED_RESCUER = 2, + BIOSET_PERCPU_CACHE = 4, +}; + +struct sbitmap_word { + long unsigned int word; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long unsigned int cleared; + raw_spinlock_t swap_lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct sbitmap { + unsigned int depth; + unsigned int shift; + unsigned int map_nr; + bool round_robin; + struct sbitmap_word *map; + unsigned int *alloc_hint; +}; + +struct sbq_wait_state { + wait_queue_head_t wait; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct sbitmap_queue { + struct sbitmap sb; + unsigned int wake_batch; + atomic_t wake_index; + struct sbq_wait_state *ws; + atomic_t ws_active; + unsigned int min_shallow_depth; + atomic_t completion_cnt; + atomic_t wakeup_cnt; +}; + +typedef __u32 req_flags_t; + +enum mq_rq_state { + MQ_RQ_IDLE = 0, + MQ_RQ_IN_FLIGHT = 1, + MQ_RQ_COMPLETE = 2, +}; + +enum rq_end_io_ret { + RQ_END_IO_NONE = 0, + RQ_END_IO_FREE = 1, +}; + +typedef enum rq_end_io_ret rq_end_io_fn(struct request *, blk_status_t); + +struct blk_crypto_keyslot; + +struct request { + struct request_queue *q; + struct blk_mq_ctx *mq_ctx; + struct blk_mq_hw_ctx *mq_hctx; + blk_opf_t cmd_flags; + req_flags_t rq_flags; + int tag; + int internal_tag; + unsigned int timeout; + unsigned int __data_len; + sector_t __sector; + struct bio *bio; + struct bio *biotail; + union { + struct list_head queuelist; + struct request *rq_next; + }; + struct block_device *part; + u64 alloc_time_ns; + u64 start_time_ns; + u64 io_start_time_ns; + short unsigned int wbt_flags; + short unsigned int stats_sectors; + short unsigned int nr_phys_segments; + short unsigned int nr_integrity_segments; + struct bio_crypt_ctx *crypt_ctx; + struct blk_crypto_keyslot *crypt_keyslot; + enum mq_rq_state state; + atomic_t ref; + long unsigned int deadline; + union { + struct hlist_node hash; + struct llist_node ipi_list; + }; + union { + struct rb_node rb_node; + struct bio_vec special_vec; + }; + struct { + struct io_cq *icq; + void *priv[2]; + } elv; + struct { + unsigned int seq; + rq_end_io_fn *saved_end_io; + } flush; + u64 fifo_time; + rq_end_io_fn *end_io; + void *end_io_data; +}; + +struct blk_mq_tags { + unsigned int nr_tags; + unsigned int nr_reserved_tags; + unsigned int active_queues; + struct sbitmap_queue bitmap_tags; + struct sbitmap_queue breserved_tags; + struct request **rqs; + struct request **static_rqs; + struct list_head page_list; + spinlock_t lock; +}; + +struct blk_flush_queue { + spinlock_t mq_flush_lock; + unsigned int flush_pending_idx: 1; + unsigned int flush_running_idx: 1; + blk_status_t rq_status; + long unsigned int flush_pending_since; + struct list_head flush_queue[2]; + long unsigned int flush_data_in_flight; + struct request *flush_rq; +}; + +struct blk_mq_queue_map { + unsigned int *mq_map; + unsigned int nr_queues; + unsigned int queue_offset; +}; + +struct blk_mq_tag_set { + const struct blk_mq_ops *ops; + struct blk_mq_queue_map map[3]; + unsigned int nr_maps; + unsigned int nr_hw_queues; + unsigned int queue_depth; + unsigned int reserved_tags; + unsigned int cmd_size; + int numa_node; + unsigned int timeout; + unsigned int flags; + void *driver_data; + struct blk_mq_tags **tags; + struct blk_mq_tags *shared_tags; + struct mutex tag_list_lock; + struct list_head tag_list; + struct srcu_struct *srcu; + struct rw_semaphore update_nr_hwq_lock; +}; + +struct blk_mq_hw_ctx { + struct { + spinlock_t lock; + struct list_head dispatch; + long unsigned int state; + long: 64; + long: 64; + long: 64; + long: 64; + }; + struct delayed_work run_work; + cpumask_var_t cpumask; + int next_cpu; + int next_cpu_batch; + long unsigned int flags; + void *sched_data; + struct request_queue *queue; + struct blk_flush_queue *fq; + void *driver_data; + struct sbitmap ctx_map; + struct blk_mq_ctx *dispatch_from; + unsigned int dispatch_busy; + short unsigned int type; + short unsigned int nr_ctx; + struct blk_mq_ctx **ctxs; + spinlock_t dispatch_wait_lock; + wait_queue_entry_t dispatch_wait; + atomic_t wait_index; + struct blk_mq_tags *tags; + struct blk_mq_tags *sched_tags; + unsigned int numa_node; + unsigned int queue_num; + atomic_t nr_active; + struct hlist_node cpuhp_online; + struct hlist_node cpuhp_dead; + struct kobject kobj; + struct dentry *debugfs_dir; + struct dentry *sched_debugfs_dir; + struct list_head hctx_list; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct blk_mq_queue_data { + struct request *rq; + bool last; +}; + +struct iomap_write_ops { + struct folio * (*get_folio)(struct iomap_iter *, loff_t, unsigned int); + void (*put_folio)(struct inode *, loff_t, unsigned int, struct folio *); + bool (*iomap_valid)(struct inode *, const struct iomap *); + int (*read_folio_range)(const struct iomap_iter *, struct folio *, loff_t, size_t); +}; + +struct io_uring_sqe { + __u8 opcode; + __u8 flags; + __u16 ioprio; + __s32 fd; + union { + __u64 off; + __u64 addr2; + struct { + __u32 cmd_op; + __u32 __pad1; + }; + }; + union { + __u64 addr; + __u64 splice_off_in; + struct { + __u32 level; + __u32 optname; + }; + }; + __u32 len; + union { + __u32 rw_flags; + __u32 fsync_flags; + __u16 poll_events; + __u32 poll32_events; + __u32 sync_range_flags; + __u32 msg_flags; + __u32 timeout_flags; + __u32 accept_flags; + __u32 cancel_flags; + __u32 open_flags; + __u32 statx_flags; + __u32 fadvise_advice; + __u32 splice_flags; + __u32 rename_flags; + __u32 unlink_flags; + __u32 hardlink_flags; + __u32 xattr_flags; + __u32 msg_ring_flags; + __u32 uring_cmd_flags; + __u32 waitid_flags; + __u32 futex_flags; + __u32 install_fd_flags; + __u32 nop_flags; + __u32 pipe_flags; + }; + __u64 user_data; + union { + __u16 buf_index; + __u16 buf_group; + }; + __u16 personality; + union { + __s32 splice_fd_in; + __u32 file_index; + __u32 zcrx_ifq_idx; + __u32 optlen; + struct { + __u16 addr_len; + __u16 __pad3[1]; + }; + struct { + __u8 write_stream; + __u8 __pad4[3]; + }; + }; + union { + struct { + __u64 addr3; + __u64 __pad2[1]; + }; + struct { + __u64 attr_ptr; + __u64 attr_type_mask; + }; + __u64 optval; + __u8 cmd[0]; + }; +}; + +enum io_uring_sqe_flags_bit { + IOSQE_FIXED_FILE_BIT = 0, + IOSQE_IO_DRAIN_BIT = 1, + IOSQE_IO_LINK_BIT = 2, + IOSQE_IO_HARDLINK_BIT = 3, + IOSQE_ASYNC_BIT = 4, + IOSQE_BUFFER_SELECT_BIT = 5, + IOSQE_CQE_SKIP_SUCCESS_BIT = 6, +}; + +enum io_uring_op { + IORING_OP_NOP = 0, + IORING_OP_READV = 1, + IORING_OP_WRITEV = 2, + IORING_OP_FSYNC = 3, + IORING_OP_READ_FIXED = 4, + IORING_OP_WRITE_FIXED = 5, + IORING_OP_POLL_ADD = 6, + IORING_OP_POLL_REMOVE = 7, + IORING_OP_SYNC_FILE_RANGE = 8, + IORING_OP_SENDMSG = 9, + IORING_OP_RECVMSG = 10, + IORING_OP_TIMEOUT = 11, + IORING_OP_TIMEOUT_REMOVE = 12, + IORING_OP_ACCEPT = 13, + IORING_OP_ASYNC_CANCEL = 14, + IORING_OP_LINK_TIMEOUT = 15, + IORING_OP_CONNECT = 16, + IORING_OP_FALLOCATE = 17, + IORING_OP_OPENAT = 18, + IORING_OP_CLOSE = 19, + IORING_OP_FILES_UPDATE = 20, + IORING_OP_STATX = 21, + IORING_OP_READ = 22, + IORING_OP_WRITE = 23, + IORING_OP_FADVISE = 24, + IORING_OP_MADVISE = 25, + IORING_OP_SEND = 26, + IORING_OP_RECV = 27, + IORING_OP_OPENAT2 = 28, + IORING_OP_EPOLL_CTL = 29, + IORING_OP_SPLICE = 30, + IORING_OP_PROVIDE_BUFFERS = 31, + IORING_OP_REMOVE_BUFFERS = 32, + IORING_OP_TEE = 33, + IORING_OP_SHUTDOWN = 34, + IORING_OP_RENAMEAT = 35, + IORING_OP_UNLINKAT = 36, + IORING_OP_MKDIRAT = 37, + IORING_OP_SYMLINKAT = 38, + IORING_OP_LINKAT = 39, + IORING_OP_MSG_RING = 40, + IORING_OP_FSETXATTR = 41, + IORING_OP_SETXATTR = 42, + IORING_OP_FGETXATTR = 43, + IORING_OP_GETXATTR = 44, + IORING_OP_SOCKET = 45, + IORING_OP_URING_CMD = 46, + IORING_OP_SEND_ZC = 47, + IORING_OP_SENDMSG_ZC = 48, + IORING_OP_READ_MULTISHOT = 49, + IORING_OP_WAITID = 50, + IORING_OP_FUTEX_WAIT = 51, + IORING_OP_FUTEX_WAKE = 52, + IORING_OP_FUTEX_WAITV = 53, + IORING_OP_FIXED_FD_INSTALL = 54, + IORING_OP_FTRUNCATE = 55, + IORING_OP_BIND = 56, + IORING_OP_LISTEN = 57, + IORING_OP_RECV_ZC = 58, + IORING_OP_EPOLL_WAIT = 59, + IORING_OP_READV_FIXED = 60, + IORING_OP_WRITEV_FIXED = 61, + IORING_OP_PIPE = 62, + IORING_OP_LAST = 63, +}; + +struct io_uring_cqe { + __u64 user_data; + __s32 res; + __u32 flags; + __u64 big_cqe[0]; +}; + +enum io_uring_register_op { + IORING_REGISTER_BUFFERS = 0, + IORING_UNREGISTER_BUFFERS = 1, + IORING_REGISTER_FILES = 2, + IORING_UNREGISTER_FILES = 3, + IORING_REGISTER_EVENTFD = 4, + IORING_UNREGISTER_EVENTFD = 5, + IORING_REGISTER_FILES_UPDATE = 6, + IORING_REGISTER_EVENTFD_ASYNC = 7, + IORING_REGISTER_PROBE = 8, + IORING_REGISTER_PERSONALITY = 9, + IORING_UNREGISTER_PERSONALITY = 10, + IORING_REGISTER_RESTRICTIONS = 11, + IORING_REGISTER_ENABLE_RINGS = 12, + IORING_REGISTER_FILES2 = 13, + IORING_REGISTER_FILES_UPDATE2 = 14, + IORING_REGISTER_BUFFERS2 = 15, + IORING_REGISTER_BUFFERS_UPDATE = 16, + IORING_REGISTER_IOWQ_AFF = 17, + IORING_UNREGISTER_IOWQ_AFF = 18, + IORING_REGISTER_IOWQ_MAX_WORKERS = 19, + IORING_REGISTER_RING_FDS = 20, + IORING_UNREGISTER_RING_FDS = 21, + IORING_REGISTER_PBUF_RING = 22, + IORING_UNREGISTER_PBUF_RING = 23, + IORING_REGISTER_SYNC_CANCEL = 24, + IORING_REGISTER_FILE_ALLOC_RANGE = 25, + IORING_REGISTER_PBUF_STATUS = 26, + IORING_REGISTER_NAPI = 27, + IORING_UNREGISTER_NAPI = 28, + IORING_REGISTER_CLOCK = 29, + IORING_REGISTER_CLONE_BUFFERS = 30, + IORING_REGISTER_SEND_MSG_RING = 31, + IORING_REGISTER_ZCRX_IFQ = 32, + IORING_REGISTER_RESIZE_RINGS = 33, + IORING_REGISTER_MEM_REGION = 34, + IORING_REGISTER_LAST = 35, + IORING_REGISTER_USE_REGISTERED_RING = 2147483648, +}; + +struct io_wq_work_node { + struct io_wq_work_node *next; +}; + +struct io_wq_work_list { + struct io_wq_work_node *first; + struct io_wq_work_node *last; +}; + +struct io_wq_work { + struct io_wq_work_node list; + atomic_t flags; + int cancel_seq; +}; + +struct io_rsrc_node; + +struct io_rsrc_data { + unsigned int nr; + struct io_rsrc_node **nodes; +}; + +struct io_file_table { + struct io_rsrc_data data; + long unsigned int *bitmap; + unsigned int alloc_hint; +}; + +struct io_hash_bucket { + struct hlist_head list; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct io_hash_table { + struct io_hash_bucket *hbs; + unsigned int hash_bits; +}; + +struct io_mapped_region { + struct page **pages; + void *ptr; + unsigned int nr_pages; + unsigned int flags; +}; + +struct io_alloc_cache { + void **entries; + unsigned int nr_cached; + unsigned int max_cached; + unsigned int elem_size; + unsigned int init_clear; +}; + +struct io_kiocb; + +struct io_submit_link { + struct io_kiocb *head; + struct io_kiocb *last; +}; + +struct io_submit_state { + struct io_wq_work_node free_list; + struct io_wq_work_list compl_reqs; + struct io_submit_link link; + bool plug_started; + bool need_plug; + bool cq_flush; + short unsigned int submit_nr; + struct blk_plug plug; +}; + +struct io_restriction { + long unsigned int register_op[1]; + long unsigned int sqe_op[1]; + u8 sqe_flags_allowed; + u8 sqe_flags_required; + bool registered; +}; + +struct io_rings; + +struct io_ev_fd; + +struct io_sq_data; + +struct io_wq_hash; + +struct io_ring_ctx { + struct { + unsigned int flags; + unsigned int drain_next: 1; + unsigned int restricted: 1; + unsigned int off_timeout_used: 1; + unsigned int drain_active: 1; + unsigned int has_evfd: 1; + unsigned int task_complete: 1; + unsigned int lockless_cq: 1; + unsigned int syscall_iopoll: 1; + unsigned int poll_activated: 1; + unsigned int drain_disabled: 1; + unsigned int compat: 1; + unsigned int iowq_limits_set: 1; + struct task_struct *submitter_task; + struct io_rings *rings; + struct percpu_ref refs; + clockid_t clockid; + enum tk_offsets clock_offset; + enum task_work_notify_mode notify_method; + unsigned int sq_thread_idle; + long: 64; + }; + struct { + struct mutex uring_lock; + u32 *sq_array; + struct io_uring_sqe *sq_sqes; + unsigned int cached_sq_head; + unsigned int sq_entries; + atomic_t cancel_seq; + bool poll_multi_queue; + struct io_wq_work_list iopoll_list; + struct io_file_table file_table; + struct io_rsrc_data buf_table; + struct io_alloc_cache node_cache; + struct io_alloc_cache imu_cache; + struct io_submit_state submit_state; + struct xarray io_bl_xa; + struct io_hash_table cancel_table; + struct io_alloc_cache apoll_cache; + struct io_alloc_cache netmsg_cache; + struct io_alloc_cache rw_cache; + struct io_alloc_cache cmd_cache; + struct hlist_head cancelable_uring_cmd; + u64 hybrid_poll_time; + long: 64; + long: 64; + }; + struct { + struct io_uring_cqe *cqe_cached; + struct io_uring_cqe *cqe_sentinel; + unsigned int cached_cq_tail; + unsigned int cq_entries; + struct io_ev_fd *io_ev_fd; + void *cq_wait_arg; + size_t cq_wait_size; + long: 64; + long: 64; + }; + struct { + struct llist_head work_llist; + struct llist_head retry_llist; + long unsigned int check_cq; + atomic_t cq_wait_nr; + atomic_t cq_timeouts; + struct wait_queue_head cq_wait; + long: 64; + }; + struct { + raw_spinlock_t timeout_lock; + struct list_head timeout_list; + struct list_head ltimeout_list; + unsigned int cq_last_tm_flush; + long: 64; + long: 64; + }; + spinlock_t completion_lock; + struct list_head cq_overflow_list; + struct hlist_head waitid_list; + struct hlist_head futex_list; + struct io_alloc_cache futex_cache; + const struct cred *sq_creds; + struct io_sq_data *sq_data; + struct wait_queue_head sqo_sq_wait; + struct list_head sqd_list; + unsigned int file_alloc_start; + unsigned int file_alloc_end; + struct wait_queue_head poll_wq; + struct io_restriction restrictions; + struct xarray zcrx_ctxs; + u32 pers_next; + struct xarray personalities; + struct io_wq_hash *hash_map; + struct user_struct *user; + struct mm_struct *mm_account; + struct llist_head fallback_llist; + struct delayed_work fallback_work; + struct work_struct exit_work; + struct list_head tctx_list; + struct completion ref_comp; + u32 iowq_limits[2]; + struct callback_head poll_wq_task_work; + struct list_head defer_list; + unsigned int nr_drained; + struct list_head napi_list; + spinlock_t napi_lock; + ktime_t napi_busy_poll_dt; + bool napi_prefer_busy_poll; + u8 napi_track_mode; + struct hlist_head napi_ht[16]; + unsigned int evfd_last_cq_tail; + unsigned int nr_req_allocated; + struct mutex mmap_lock; + struct io_mapped_region sq_region; + struct io_mapped_region ring_region; + struct io_mapped_region param_region; + long: 64; + long: 64; + long: 64; +}; + +struct io_uring { + u32 head; + u32 tail; +}; + +struct io_rings { + struct io_uring sq; + struct io_uring cq; + u32 sq_ring_mask; + u32 cq_ring_mask; + u32 sq_ring_entries; + u32 cq_ring_entries; + u32 sq_dropped; + atomic_t sq_flags; + u32 cq_flags; + u32 cq_overflow; + long: 64; + long: 64; + struct io_uring_cqe cqes[0]; +}; + +struct io_cmd_data { + struct file *file; + __u8 data[56]; +}; + +typedef u64 io_req_flags_t; + +struct io_cqe { + __u64 user_data; + __s32 res; + union { + __u32 flags; + int fd; + }; +}; + +struct io_tw_state; + +typedef struct io_tw_state io_tw_token_t; + +typedef void (*io_req_tw_func_t)(struct io_kiocb *, io_tw_token_t); + +struct io_task_work { + struct llist_node node; + io_req_tw_func_t func; +}; + +struct io_big_cqe { + u64 extra1; + u64 extra2; +}; + +struct io_buffer; + +struct io_buffer_list; + +struct async_poll; + +struct io_kiocb { + union { + struct file *file; + struct io_cmd_data cmd; + }; + u8 opcode; + u8 iopoll_completed; + u16 buf_index; + unsigned int nr_tw; + io_req_flags_t flags; + struct io_cqe cqe; + struct io_ring_ctx *ctx; + struct io_uring_task *tctx; + union { + struct io_buffer *kbuf; + struct io_buffer_list *buf_list; + struct io_rsrc_node *buf_node; + }; + union { + struct io_wq_work_node comp_list; + __poll_t apoll_events; + }; + struct io_rsrc_node *file_node; + atomic_t refs; + bool cancel_seq_set; + struct io_task_work io_task_work; + union { + struct hlist_node hash_node; + u64 iopoll_start; + struct callback_head callback_head; + }; + struct async_poll *apoll; + void *async_data; + atomic_t poll_refs; + struct io_kiocb *link; + const struct cred *creds; + struct io_wq_work work; + struct io_big_cqe big_cqe; +}; + +struct io_tw_state {}; + +enum { + REQ_F_FIXED_FILE_BIT = 0, + REQ_F_IO_DRAIN_BIT = 1, + REQ_F_LINK_BIT = 2, + REQ_F_HARDLINK_BIT = 3, + REQ_F_FORCE_ASYNC_BIT = 4, + REQ_F_BUFFER_SELECT_BIT = 5, + REQ_F_CQE_SKIP_BIT = 6, + REQ_F_FAIL_BIT = 8, + REQ_F_INFLIGHT_BIT = 9, + REQ_F_CUR_POS_BIT = 10, + REQ_F_NOWAIT_BIT = 11, + REQ_F_LINK_TIMEOUT_BIT = 12, + REQ_F_NEED_CLEANUP_BIT = 13, + REQ_F_POLLED_BIT = 14, + REQ_F_HYBRID_IOPOLL_STATE_BIT = 15, + REQ_F_BUFFER_SELECTED_BIT = 16, + REQ_F_BUFFER_RING_BIT = 17, + REQ_F_REISSUE_BIT = 18, + REQ_F_CREDS_BIT = 19, + REQ_F_REFCOUNT_BIT = 20, + REQ_F_ARM_LTIMEOUT_BIT = 21, + REQ_F_ASYNC_DATA_BIT = 22, + REQ_F_SKIP_LINK_CQES_BIT = 23, + REQ_F_SINGLE_POLL_BIT = 24, + REQ_F_DOUBLE_POLL_BIT = 25, + REQ_F_MULTISHOT_BIT = 26, + REQ_F_APOLL_MULTISHOT_BIT = 27, + REQ_F_CLEAR_POLLIN_BIT = 28, + REQ_F_SUPPORT_NOWAIT_BIT = 29, + REQ_F_ISREG_BIT = 30, + REQ_F_POLL_NO_LAZY_BIT = 31, + REQ_F_CAN_POLL_BIT = 32, + REQ_F_BL_EMPTY_BIT = 33, + REQ_F_BL_NO_RECYCLE_BIT = 34, + REQ_F_BUFFERS_COMMIT_BIT = 35, + REQ_F_BUF_NODE_BIT = 36, + REQ_F_HAS_METADATA_BIT = 37, + REQ_F_IMPORT_BUFFER_BIT = 38, + REQ_F_SQE_COPIED_BIT = 39, + __REQ_F_LAST_BIT = 40, +}; + +enum { + DIO_SHOULD_DIRTY = 1, + DIO_IS_SYNC = 2, +}; + +struct blkdev_dio { + union { + struct kiocb *iocb; + struct task_struct *waiter; + }; + size_t size; + atomic_t ref; + unsigned int flags; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct bio bio; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum kobject_action { + KOBJ_ADD = 0, + KOBJ_REMOVE = 1, + KOBJ_CHANGE = 2, + KOBJ_MOVE = 3, + KOBJ_ONLINE = 4, + KOBJ_OFFLINE = 5, + KOBJ_BIND = 6, + KOBJ_UNBIND = 7, +}; + +struct blkg_iostat { + u64 bytes[3]; + u64 ios[3]; +}; + +struct blkg_iostat_set { + struct u64_stats_sync sync; + struct blkcg_gq *blkg; + struct llist_node lnode; + int lqueued; + struct blkg_iostat cur; + struct blkg_iostat last; +}; + +struct blkcg; + +struct blkg_policy_data; + +struct blkcg_gq { + struct request_queue *q; + struct list_head q_node; + struct hlist_node blkcg_node; + struct blkcg *blkcg; + struct blkcg_gq *parent; + struct percpu_ref refcnt; + bool online; + struct blkg_iostat_set *iostat_cpu; + struct blkg_iostat_set iostat; + struct blkg_policy_data *pd[6]; + spinlock_t async_bio_lock; + struct bio_list async_bios; + union { + struct work_struct async_bio_work; + struct work_struct free_work; + }; + atomic_t use_delay; + atomic64_t delay_nsec; + atomic64_t delay_start; + u64 last_delay; + int last_use; + struct callback_head callback_head; +}; + +typedef __u32 blk_mq_req_flags_t; + +struct elevator_type; + +struct elevator_tags; + +struct elevator_queue { + struct elevator_type *type; + struct elevator_tags *et; + void *elevator_data; + struct kobject kobj; + struct mutex sysfs_lock; + long unsigned int flags; + struct hlist_head hash[64]; +}; + +struct blk_mq_ctxs; + +struct blk_mq_ctx { + struct { + spinlock_t lock; + struct list_head rq_lists[3]; + long: 64; + }; + unsigned int cpu; + short unsigned int index_hw[3]; + struct blk_mq_hw_ctx *hctxs[3]; + struct request_queue *queue; + struct blk_mq_ctxs *ctxs; + struct kobject kobj; + long: 64; +}; + +enum rq_qos_id { + RQ_QOS_WBT = 0, + RQ_QOS_LATENCY = 1, + RQ_QOS_COST = 2, +}; + +struct rq_qos_ops; + +struct rq_qos { + const struct rq_qos_ops *ops; + struct gendisk *disk; + enum rq_qos_id id; + struct rq_qos *next; + struct dentry *debugfs_dir; +}; + +struct blk_trace { + int trace_state; + struct rchan *rchan; + long unsigned int *sequence; + unsigned char *msg_data; + u16 act_mask; + u64 start_lba; + u64 end_lba; + u32 pid; + u32 dev; + struct dentry *dir; + struct list_head running_list; + atomic_t dropped; +}; + +enum { + QUEUE_FLAG_DYING = 0, + QUEUE_FLAG_NOMERGES = 1, + QUEUE_FLAG_SAME_COMP = 2, + QUEUE_FLAG_FAIL_IO = 3, + QUEUE_FLAG_NOXMERGES = 4, + QUEUE_FLAG_SAME_FORCE = 5, + QUEUE_FLAG_INIT_DONE = 6, + QUEUE_FLAG_STATS = 7, + QUEUE_FLAG_REGISTERED = 8, + QUEUE_FLAG_QUIESCED = 9, + QUEUE_FLAG_RQ_ALLOC_TIME = 10, + QUEUE_FLAG_HCTX_ACTIVE = 11, + QUEUE_FLAG_SQ_SCHED = 12, + QUEUE_FLAG_DISABLE_WBT_DEF = 13, + QUEUE_FLAG_NO_ELV_SWITCH = 14, + QUEUE_FLAG_QOS_ENABLED = 15, + QUEUE_FLAG_MAX = 16, +}; + +enum hctx_type { + HCTX_TYPE_DEFAULT = 0, + HCTX_TYPE_READ = 1, + HCTX_TYPE_POLL = 2, + HCTX_MAX_TYPES = 3, +}; + +enum { + BLK_MQ_F_TAG_QUEUE_SHARED = 2, + BLK_MQ_F_STACKING = 4, + BLK_MQ_F_TAG_HCTX_SHARED = 8, + BLK_MQ_F_BLOCKING = 16, + BLK_MQ_F_TAG_RR = 32, + BLK_MQ_F_NO_SCHED_BY_DEFAULT = 64, + BLK_MQ_F_MAX = 128, +}; + +enum blktrace_act { + __BLK_TA_QUEUE = 1, + __BLK_TA_BACKMERGE = 2, + __BLK_TA_FRONTMERGE = 3, + __BLK_TA_GETRQ = 4, + __BLK_TA_SLEEPRQ = 5, + __BLK_TA_REQUEUE = 6, + __BLK_TA_ISSUE = 7, + __BLK_TA_COMPLETE = 8, + __BLK_TA_PLUG = 9, + __BLK_TA_UNPLUG_IO = 10, + __BLK_TA_UNPLUG_TIMER = 11, + __BLK_TA_INSERT = 12, + __BLK_TA_SPLIT = 13, + __BLK_TA_BOUNCE = 14, + __BLK_TA_REMAP = 15, + __BLK_TA_ABORT = 16, + __BLK_TA_DRV_DATA = 17, + __BLK_TA_CGROUP = 256, +}; + +struct blk_mq_ctxs { + struct kobject kobj; + struct blk_mq_ctx *queue_ctx; +}; + +typedef unsigned int blk_insert_t; + +struct blk_mq_alloc_data { + struct request_queue *q; + blk_mq_req_flags_t flags; + unsigned int shallow_depth; + blk_opf_t cmd_flags; + req_flags_t rq_flags; + unsigned int nr_tags; + struct rq_list *cached_rqs; + struct blk_mq_ctx *ctx; + struct blk_mq_hw_ctx *hctx; +}; + +struct blk_mq_debugfs_attr { + const char *name; + umode_t mode; + int (*show)(void *, struct seq_file *); + ssize_t (*write)(void *, const char *, size_t, loff_t *); + const struct seq_operations *seq_ops; +}; + +enum elv_merge { + ELEVATOR_NO_MERGE = 0, + ELEVATOR_FRONT_MERGE = 1, + ELEVATOR_BACK_MERGE = 2, + ELEVATOR_DISCARD_MERGE = 3, +}; + +struct elevator_tags { + unsigned int nr_hw_queues; + unsigned int nr_requests; + struct blk_mq_tags *tags[0]; +}; + +struct elevator_mq_ops { + int (*init_sched)(struct request_queue *, struct elevator_queue *); + void (*exit_sched)(struct elevator_queue *); + int (*init_hctx)(struct blk_mq_hw_ctx *, unsigned int); + void (*exit_hctx)(struct blk_mq_hw_ctx *, unsigned int); + void (*depth_updated)(struct request_queue *); + void * (*alloc_sched_data)(struct request_queue *); + void (*free_sched_data)(void *); + bool (*allow_merge)(struct request_queue *, struct request *, struct bio *); + bool (*bio_merge)(struct request_queue *, struct bio *, unsigned int); + int (*request_merge)(struct request_queue *, struct request **, struct bio *); + void (*request_merged)(struct request_queue *, struct request *, enum elv_merge); + void (*requests_merged)(struct request_queue *, struct request *, struct request *); + void (*limit_depth)(blk_opf_t, struct blk_mq_alloc_data *); + void (*prepare_request)(struct request *); + void (*finish_request)(struct request *); + void (*insert_requests)(struct blk_mq_hw_ctx *, struct list_head *, blk_insert_t); + struct request * (*dispatch_request)(struct blk_mq_hw_ctx *); + bool (*has_work)(struct blk_mq_hw_ctx *); + void (*completed_request)(struct request *, u64); + void (*requeue_request)(struct request *); + struct request * (*former_request)(struct request_queue *, struct request *); + struct request * (*next_request)(struct request_queue *, struct request *); + void (*init_icq)(struct io_cq *); + void (*exit_icq)(struct io_cq *); +}; + +struct elv_fs_entry; + +struct elevator_type { + struct kmem_cache *icq_cache; + struct elevator_mq_ops ops; + size_t icq_size; + size_t icq_align; + const struct elv_fs_entry *elevator_attrs; + const char *elevator_name; + const char *elevator_alias; + struct module *elevator_owner; + const struct blk_mq_debugfs_attr *queue_debugfs_attrs; + const struct blk_mq_debugfs_attr *hctx_debugfs_attrs; + char icq_cache_name[22]; + struct list_head list; +}; + +struct elv_fs_entry { + struct attribute attr; + ssize_t (*show)(struct elevator_queue *, char *); + ssize_t (*store)(struct elevator_queue *, const char *, size_t); +}; + +struct rq_qos_ops { + void (*throttle)(struct rq_qos *, struct bio *); + void (*track)(struct rq_qos *, struct request *, struct bio *); + void (*merge)(struct rq_qos *, struct request *, struct bio *); + void (*issue)(struct rq_qos *, struct request *); + void (*requeue)(struct rq_qos *, struct request *); + void (*done)(struct rq_qos *, struct request *); + void (*done_bio)(struct rq_qos *, struct bio *); + void (*cleanup)(struct rq_qos *, struct bio *); + void (*queue_depth_changed)(struct rq_qos *); + void (*exit)(struct rq_qos *); + const struct blk_mq_debugfs_attr *debugfs_attrs; +}; + +enum blkg_iostat_type { + BLKG_IOSTAT_READ = 0, + BLKG_IOSTAT_WRITE = 1, + BLKG_IOSTAT_DISCARD = 2, + BLKG_IOSTAT_NR = 3, +}; + +struct blkcg_policy_data; + +struct blkcg { + struct cgroup_subsys_state css; + spinlock_t lock; + refcount_t online_pin; + atomic_t congestion_count; + struct xarray blkg_tree; + struct blkcg_gq *blkg_hint; + struct hlist_head blkg_list; + struct blkcg_policy_data *cpd[6]; + struct list_head all_blkcgs_node; + struct llist_head *lhead; + char fc_app_id[129]; + struct list_head cgwb_list; +}; + +struct blkg_policy_data { + struct blkcg_gq *blkg; + int plid; + bool online; +}; + +struct blkcg_policy_data { + struct blkcg *blkcg; + int plid; +}; + +enum blkg_rwstat_type { + BLKG_RWSTAT_READ = 0, + BLKG_RWSTAT_WRITE = 1, + BLKG_RWSTAT_SYNC = 2, + BLKG_RWSTAT_ASYNC = 3, + BLKG_RWSTAT_DISCARD = 4, + BLKG_RWSTAT_NR = 5, + BLKG_RWSTAT_TOTAL = 5, +}; + +struct queue_sysfs_entry { + struct attribute attr; + ssize_t (*show)(struct gendisk *, char *); + ssize_t (*show_limit)(struct gendisk *, char *); + ssize_t (*store)(struct gendisk *, const char *, size_t); + int (*store_limit)(struct gendisk *, const char *, size_t, struct queue_limits *); +}; + +enum { + ICQ_EXITED = 4, + ICQ_DESTROYED = 8, +}; + +enum rqf_flags { + __RQF_STARTED = 0, + __RQF_FLUSH_SEQ = 1, + __RQF_MIXED_MERGE = 2, + __RQF_DONTPREP = 3, + __RQF_SCHED_TAGS = 4, + __RQF_USE_SCHED = 5, + __RQF_FAILED = 6, + __RQF_QUIET = 7, + __RQF_IO_STAT = 8, + __RQF_PM = 9, + __RQF_HASHED = 10, + __RQF_STATS = 11, + __RQF_SPECIAL_PAYLOAD = 12, + __RQF_ZONE_WRITE_PLUGGING = 13, + __RQF_TIMED_OUT = 14, + __RQF_RESV = 15, + __RQF_BITS = 16, +}; + +typedef bool (*sb_for_each_fn)(struct sbitmap *, unsigned int, void *); + +struct sbq_wait { + struct sbitmap_queue *sbq; + struct wait_queue_entry wait; +}; + +typedef bool busy_tag_iter_fn(struct request *, void *); + +enum { + BLK_MQ_S_STOPPED = 0, + BLK_MQ_S_TAG_ACTIVE = 1, + BLK_MQ_S_SCHED_RESTART = 2, + BLK_MQ_S_INACTIVE = 3, + BLK_MQ_S_MAX = 4, +}; + +enum { + BLK_MQ_REQ_NOWAIT = 1, + BLK_MQ_REQ_RESERVED = 2, + BLK_MQ_REQ_PM = 4, +}; + +enum { + BLK_MQ_UNIQUE_TAG_BITS = 16, + BLK_MQ_UNIQUE_TAG_MASK = 65535, +}; + +enum { + BLK_MQ_NO_TAG = 4294967295, + BLK_MQ_TAG_MIN = 1, + BLK_MQ_TAG_MAX = 4294967294, +}; + +struct bt_iter_data { + struct blk_mq_hw_ctx *hctx; + struct request_queue *q; + busy_tag_iter_fn *fn; + void *data; + bool reserved; +}; + +struct bt_tags_iter_data { + struct blk_mq_tags *tags; + busy_tag_iter_fn *fn; + void *data; + unsigned int flags; +}; + +typedef int (*list_cmp_func_t)(void *, const struct list_head *, const struct list_head *); + +struct elevator_resources { + void *data; + struct elevator_tags *et; +}; + +struct elv_change_ctx { + const char *name; + bool no_uevent; + struct elevator_queue *old; + struct elevator_queue *new; + struct elevator_type *type; + struct elevator_resources res; +}; + +enum { + IOPRIO_WHO_PROCESS = 1, + IOPRIO_WHO_PGRP = 2, + IOPRIO_WHO_USER = 3, +}; + +struct RigidDiskBlock { + __be32 rdb_ID; + __be32 rdb_SummedLongs; + __be32 rdb_ChkSum; + __be32 rdb_HostID; + __be32 rdb_BlockBytes; + __be32 rdb_Flags; + __be32 rdb_BadBlockList; + __be32 rdb_PartitionList; + __be32 rdb_FileSysHeaderList; + __be32 rdb_DriveInit; + __be32 rdb_Reserved1[6]; + __be32 rdb_Cylinders; + __be32 rdb_Sectors; + __be32 rdb_Heads; + __be32 rdb_Interleave; + __be32 rdb_Park; + __be32 rdb_Reserved2[3]; + __be32 rdb_WritePreComp; + __be32 rdb_ReducedWrite; + __be32 rdb_StepRate; + __be32 rdb_Reserved3[5]; + __be32 rdb_RDBBlocksLo; + __be32 rdb_RDBBlocksHi; + __be32 rdb_LoCylinder; + __be32 rdb_HiCylinder; + __be32 rdb_CylBlocks; + __be32 rdb_AutoParkSeconds; + __be32 rdb_HighRDSKBlock; + __be32 rdb_Reserved4; + char rdb_DiskVendor[8]; + char rdb_DiskProduct[16]; + char rdb_DiskRevision[4]; + char rdb_ControllerVendor[8]; + char rdb_ControllerProduct[16]; + char rdb_ControllerRevision[4]; + __be32 rdb_Reserved5[10]; +}; + +struct PartitionBlock { + __be32 pb_ID; + __be32 pb_SummedLongs; + __be32 pb_ChkSum; + __be32 pb_HostID; + __be32 pb_Next; + __be32 pb_Flags; + __be32 pb_Reserved1[2]; + __be32 pb_DevFlags; + __u8 pb_DriveName[32]; + __be32 pb_Reserved2[15]; + __be32 pb_Environment[17]; + __be32 pb_EReserved[15]; +}; + +struct parsed_partitions { + struct gendisk *disk; + char name[32]; + struct { + sector_t from; + sector_t size; + int flags; + bool has_info; + struct partition_meta_info info; + } *parts; + int next; + int limit; + bool access_beyond_eod; + char *pp_buf; +}; + +typedef struct { + struct folio *v; +} Sector; + +struct cmdline_subpart { + char name[32]; + sector_t from; + sector_t size; + int flags; + struct cmdline_subpart *next_subpart; +}; + +struct cmdline_parts { + char name[32]; + unsigned int nr_subparts; + struct cmdline_subpart *subpart; + struct cmdline_parts *next_parts; +}; + +enum { + LINUX_RAID_PARTITION = 253, +}; + +struct sgi_volume { + s8 name[8]; + __be32 block_num; + __be32 num_bytes; +}; + +struct sgi_partition { + __be32 num_blocks; + __be32 first_block; + __be32 type; +}; + +struct sgi_disklabel { + __be32 magic_mushroom; + __be16 root_part_num; + __be16 swap_part_num; + s8 boot_file[16]; + u8 _unused0[48]; + struct sgi_volume volume[15]; + struct sgi_partition partitions[16]; + __be32 csum; + __be32 _unused1; +}; + +struct d_partition { + __le32 p_res; + u8 p_fstype; + u8 p_res2[3]; + __le32 p_offset; + __le32 p_size; +}; + +struct disklabel { + u8 d_reserved[270]; + struct d_partition d_partitions[2]; + u8 d_blank[208]; + __le16 d_magic; +} __attribute__((packed)); + +enum { + DISK_EVENT_MEDIA_CHANGE = 1, + DISK_EVENT_EJECT_REQUEST = 2, +}; + +enum { + DISK_EVENT_FLAG_POLL = 1, + DISK_EVENT_FLAG_UEVENT = 2, + DISK_EVENT_FLAG_BLOCK_ON_EXCL_WRITE = 4, +}; + +struct disk_events { + struct list_head node; + struct gendisk *disk; + spinlock_t lock; + struct mutex block_mutex; + int block; + unsigned int pending; + unsigned int clearing; + long int poll_msecs; + struct delayed_work dwork; +}; + +struct sg_io_v4 { + __s32 guard; + __u32 protocol; + __u32 subprotocol; + __u32 request_len; + __u64 request; + __u64 request_tag; + __u32 request_attr; + __u32 request_priority; + __u32 request_extra; + __u32 max_response_len; + __u64 response; + __u32 dout_iovec_count; + __u32 dout_xfer_len; + __u32 din_iovec_count; + __u32 din_xfer_len; + __u64 dout_xferp; + __u64 din_xferp; + __u32 timeout; + __u32 flags; + __u64 usr_ptr; + __u32 spare_in; + __u32 driver_status; + __u32 transport_status; + __u32 device_status; + __u32 retry_delay; + __u32 info; + __u32 duration; + __u32 response_len; + __s32 din_resid; + __s32 dout_resid; + __u64 generated_tag; + __u32 spare_out; + __u32 padding; +}; + +typedef int bsg_sg_io_fn(struct request_queue *, struct sg_io_v4 *, bool, unsigned int); + +struct rq_map_data { + struct page **pages; + long unsigned int offset; + short unsigned int page_order; + short unsigned int nr_entries; + bool null_mapped; + bool from_user; +}; + +struct bsg_job; + +typedef int bsg_job_fn(struct bsg_job *); + +struct bsg_buffer { + unsigned int payload_len; + int sg_cnt; + struct scatterlist *sg_list; +}; + +struct bsg_job { + struct device *dev; + struct kref kref; + unsigned int timeout; + void *request; + void *reply; + unsigned int request_len; + unsigned int reply_len; + struct bsg_buffer request_payload; + struct bsg_buffer reply_payload; + int result; + unsigned int reply_payload_rcv_len; + struct request *bidi_rq; + struct bio *bidi_bio; + void *dd_data; +}; + +typedef enum blk_eh_timer_return bsg_timeout_fn(struct request *); + +enum scsi_device_event { + SDEV_EVT_MEDIA_CHANGE = 1, + SDEV_EVT_INQUIRY_CHANGE_REPORTED = 2, + SDEV_EVT_CAPACITY_CHANGE_REPORTED = 3, + SDEV_EVT_SOFT_THRESHOLD_REACHED_REPORTED = 4, + SDEV_EVT_MODE_PARAMETER_CHANGE_REPORTED = 5, + SDEV_EVT_LUN_CHANGE_REPORTED = 6, + SDEV_EVT_ALUA_STATE_CHANGE_REPORTED = 7, + SDEV_EVT_POWER_ON_RESET_OCCURRED = 8, + SDEV_EVT_FIRST = 1, + SDEV_EVT_LAST = 8, + SDEV_EVT_MAXBITS = 9, +}; + +struct bsg_device; + +struct bsg_set { + struct blk_mq_tag_set tag_set; + struct bsg_device *bd; + bsg_job_fn *job_fn; + bsg_timeout_fn *timeout_fn; +}; + +struct throtl_service_queue { + struct throtl_service_queue *parent_sq; + struct list_head queued[2]; + unsigned int nr_queued_bps[2]; + unsigned int nr_queued_iops[2]; + struct rb_root_cached pending_tree; + unsigned int nr_pending; + long unsigned int first_pending_disptime; + struct timer_list pending_timer; +}; + +struct throtl_data { + struct throtl_service_queue service_queue; + struct request_queue *queue; + unsigned int nr_queued[2]; + unsigned int throtl_slice; + struct work_struct dispatch_work; + bool track_bio_latency; +}; + +enum blktrace_cat { + BLK_TC_READ = 1, + BLK_TC_WRITE = 2, + BLK_TC_FLUSH = 4, + BLK_TC_SYNC = 8, + BLK_TC_SYNCIO = 8, + BLK_TC_QUEUE = 16, + BLK_TC_REQUEUE = 32, + BLK_TC_ISSUE = 64, + BLK_TC_COMPLETE = 128, + BLK_TC_FS = 256, + BLK_TC_PC = 512, + BLK_TC_NOTIFY = 1024, + BLK_TC_AHEAD = 2048, + BLK_TC_META = 4096, + BLK_TC_DISCARD = 8192, + BLK_TC_DRV_DATA = 16384, + BLK_TC_FUA = 32768, + BLK_TC_END = 32768, +}; + +typedef struct blkcg_policy_data *blkcg_pol_alloc_cpd_fn(gfp_t); + +typedef void blkcg_pol_free_cpd_fn(struct blkcg_policy_data *); + +typedef struct blkg_policy_data *blkcg_pol_alloc_pd_fn(struct gendisk *, struct blkcg *, gfp_t); + +typedef void blkcg_pol_init_pd_fn(struct blkg_policy_data *); + +typedef void blkcg_pol_online_pd_fn(struct blkg_policy_data *); + +typedef void blkcg_pol_offline_pd_fn(struct blkg_policy_data *); + +typedef void blkcg_pol_free_pd_fn(struct blkg_policy_data *); + +typedef void blkcg_pol_reset_pd_stats_fn(struct blkg_policy_data *); + +typedef void blkcg_pol_stat_pd_fn(struct blkg_policy_data *, struct seq_file *); + +struct blkcg_policy { + int plid; + struct cftype *dfl_cftypes; + struct cftype *legacy_cftypes; + blkcg_pol_alloc_cpd_fn *cpd_alloc_fn; + blkcg_pol_free_cpd_fn *cpd_free_fn; + blkcg_pol_alloc_pd_fn *pd_alloc_fn; + blkcg_pol_init_pd_fn *pd_init_fn; + blkcg_pol_online_pd_fn *pd_online_fn; + blkcg_pol_offline_pd_fn *pd_offline_fn; + blkcg_pol_free_pd_fn *pd_free_fn; + blkcg_pol_reset_pd_stats_fn *pd_reset_stats_fn; + blkcg_pol_stat_pd_fn *pd_stat_fn; +}; + +struct blkg_conf_ctx { + char *input; + char *body; + struct block_device *bdev; + struct blkcg_gq *blkg; +}; + +struct blkg_rwstat { + struct percpu_counter cpu_cnt[5]; + atomic64_t aux_cnt[5]; +}; + +struct blkg_rwstat_sample { + u64 cnt[5]; +}; + +struct throtl_grp; + +struct throtl_qnode { + struct list_head node; + struct bio_list bios_bps; + struct bio_list bios_iops; + struct throtl_grp *tg; +}; + +struct throtl_grp { + struct blkg_policy_data pd; + struct rb_node rb_node; + struct throtl_data *td; + struct throtl_service_queue service_queue; + struct throtl_qnode qnode_on_self[2]; + struct throtl_qnode qnode_on_parent[2]; + long unsigned int disptime; + unsigned int flags; + bool has_rules_bps[2]; + bool has_rules_iops[2]; + uint64_t bps[2]; + unsigned int iops[2]; + int64_t bytes_disp[2]; + int io_disp[2]; + long unsigned int last_check_time; + long unsigned int slice_start[2]; + long unsigned int slice_end[2]; + struct blkg_rwstat stat_bytes; + struct blkg_rwstat stat_ios; +}; + +enum tg_state_flags { + THROTL_TG_PENDING = 1, + THROTL_TG_WAS_EMPTY = 2, + THROTL_TG_IOPS_WAS_EMPTY = 4, + THROTL_TG_CANCELING = 8, +}; + +typedef unsigned int iov_iter_extraction_t; + +enum bip_flags { + BIP_BLOCK_INTEGRITY = 1, + BIP_MAPPED_INTEGRITY = 2, + BIP_DISK_NOCHECK = 4, + BIP_IP_CHECKSUM = 8, + BIP_COPY_USER = 16, + BIP_CHECK_GUARD = 32, + BIP_CHECK_REFTAG = 64, + BIP_CHECK_APPTAG = 128, +}; + +struct bio_integrity_alloc { + struct bio_integrity_payload bip; + struct bio_vec bvecs[0]; +}; + +enum blk_integrity_flags { + BLK_INTEGRITY_NOVERIFY = 1, + BLK_INTEGRITY_NOGENERATE = 2, + BLK_INTEGRITY_DEVICE_CAPABLE = 4, + BLK_INTEGRITY_REF_TAG = 8, + BLK_INTEGRITY_STACKED = 16, +}; + +struct bio_integrity_data { + struct bio *bio; + struct bvec_iter saved_bio_iter; + struct work_struct work; + struct bio_integrity_payload bip; + struct bio_vec bvec; +}; + +struct show_busy_params { + struct seq_file *m; + struct blk_mq_hw_ctx *hctx; +}; + +struct blk_crypto_ll_ops { + int (*keyslot_program)(struct blk_crypto_profile *, const struct blk_crypto_key *, unsigned int); + int (*keyslot_evict)(struct blk_crypto_profile *, const struct blk_crypto_key *, unsigned int); + int (*derive_sw_secret)(struct blk_crypto_profile *, const u8 *, size_t, u8 *); + int (*import_key)(struct blk_crypto_profile *, const u8 *, size_t, u8 *); + int (*generate_key)(struct blk_crypto_profile *, u8 *); + int (*prepare_key)(struct blk_crypto_profile *, const u8 *, size_t, u8 *); +}; + +struct blk_crypto_profile { + struct blk_crypto_ll_ops ll_ops; + unsigned int max_dun_bytes_supported; + unsigned int key_types_supported; + unsigned int modes_supported[5]; + struct device *dev; + unsigned int num_slots; + struct rw_semaphore lock; + struct lock_class_key lockdep_key; + wait_queue_head_t idle_slots_wait_queue; + struct list_head idle_slots; + spinlock_t idle_slots_lock; + struct hlist_head *slot_hashtable; + unsigned int log_slot_ht_size; + struct blk_crypto_keyslot *slots; +}; + +struct blk_crypto_import_key_arg { + __u64 raw_key_ptr; + __u64 raw_key_size; + __u64 lt_key_ptr; + __u64 lt_key_size; + __u64 reserved[4]; +}; + +struct blk_crypto_generate_key_arg { + __u64 lt_key_ptr; + __u64 lt_key_size; + __u64 reserved[4]; +}; + +struct blk_crypto_prepare_key_arg { + __u64 lt_key_ptr; + __u64 lt_key_size; + __u64 eph_key_ptr; + __u64 eph_key_size; + __u64 reserved[4]; +}; + +struct blk_crypto_mode { + const char *name; + const char *cipher_str; + unsigned int keysize; + unsigned int security_strength; + unsigned int ivsize; +}; + +struct bd_holder_disk { + struct list_head list; + struct kobject *holder_dir; + int refcnt; +}; + +enum { + IORING_MEM_REGION_TYPE_USER = 1, +}; + +struct io_uring_region_desc { + __u64 user_addr; + __u64 size; + __u32 flags; + __u32 id; + __u64 mmap_offset; + __u64 __resv[4]; +}; + +struct io_uring_buf { + __u64 addr; + __u32 len; + __u16 bid; + __u16 resv; +}; + +struct io_uring_buf_ring { + union { + struct { + __u64 resv1; + __u32 resv2; + __u16 resv3; + __u16 tail; + }; + struct { + struct {} __empty_bufs; + struct io_uring_buf bufs[0]; + }; + }; +}; + +enum io_uring_register_pbuf_ring_flags { + IOU_PBUF_RING_MMAP = 1, + IOU_PBUF_RING_INC = 2, +}; + +struct io_uring_buf_reg { + __u64 ring_addr; + __u32 ring_entries; + __u16 bgid; + __u16 flags; + __u64 resv[3]; +}; + +struct io_uring_buf_status { + __u32 buf_group; + __u32 head; + __u32 resv[8]; +}; + +enum io_uring_cmd_flags { + IO_URING_F_COMPLETE_DEFER = 1, + IO_URING_F_UNLOCKED = 2, + IO_URING_F_MULTISHOT = 4, + IO_URING_F_IOWQ = 8, + IO_URING_F_INLINE = 16, + IO_URING_F_NONBLOCK = -2147483648, + IO_URING_F_SQE128 = 256, + IO_URING_F_CQE32 = 512, + IO_URING_F_IOPOLL = 1024, + IO_URING_F_CANCEL = 2048, + IO_URING_F_COMPAT = 4096, + IO_URING_F_TASK_DEAD = 8192, +}; + +struct io_mapped_ubuf; + +struct io_rsrc_node { + unsigned char type; + int refs; + u64 tag; + union { + long unsigned int file_ptr; + struct io_mapped_ubuf *buf; + }; +}; + +struct io_wq_hash { + refcount_t refs; + long unsigned int map; + struct wait_queue_head wait; +}; + +enum { + REQ_F_FIXED_FILE = 1ULL, + REQ_F_IO_DRAIN = 2ULL, + REQ_F_LINK = 4ULL, + REQ_F_HARDLINK = 8ULL, + REQ_F_FORCE_ASYNC = 16ULL, + REQ_F_BUFFER_SELECT = 32ULL, + REQ_F_CQE_SKIP = 64ULL, + REQ_F_FAIL = 256ULL, + REQ_F_INFLIGHT = 512ULL, + REQ_F_CUR_POS = 1024ULL, + REQ_F_NOWAIT = 2048ULL, + REQ_F_LINK_TIMEOUT = 4096ULL, + REQ_F_NEED_CLEANUP = 8192ULL, + REQ_F_POLLED = 16384ULL, + REQ_F_IOPOLL_STATE = 32768ULL, + REQ_F_BUFFER_SELECTED = 65536ULL, + REQ_F_BUFFER_RING = 131072ULL, + REQ_F_REISSUE = 262144ULL, + REQ_F_SUPPORT_NOWAIT = 536870912ULL, + REQ_F_ISREG = 1073741824ULL, + REQ_F_CREDS = 524288ULL, + REQ_F_REFCOUNT = 1048576ULL, + REQ_F_ARM_LTIMEOUT = 2097152ULL, + REQ_F_ASYNC_DATA = 4194304ULL, + REQ_F_SKIP_LINK_CQES = 8388608ULL, + REQ_F_SINGLE_POLL = 16777216ULL, + REQ_F_DOUBLE_POLL = 33554432ULL, + REQ_F_MULTISHOT = 67108864ULL, + REQ_F_APOLL_MULTISHOT = 134217728ULL, + REQ_F_CLEAR_POLLIN = 268435456ULL, + REQ_F_POLL_NO_LAZY = 2147483648ULL, + REQ_F_CAN_POLL = 4294967296ULL, + REQ_F_BL_EMPTY = 8589934592ULL, + REQ_F_BL_NO_RECYCLE = 17179869184ULL, + REQ_F_BUFFERS_COMMIT = 34359738368ULL, + REQ_F_BUF_NODE = 68719476736ULL, + REQ_F_HAS_METADATA = 137438953472ULL, + REQ_F_IMPORT_BUFFER = 274877906944ULL, + REQ_F_SQE_COPIED = 549755813888ULL, +}; + +struct io_buffer { + struct list_head list; + __u64 addr; + __u32 len; + __u16 bid; + __u16 bgid; +}; + +struct io_buffer_list { + union { + struct list_head buf_list; + struct io_uring_buf_ring *buf_ring; + }; + int nbufs; + __u16 bgid; + __u16 buf_nr_pages; + __u16 nr_entries; + __u16 head; + __u16 mask; + __u16 flags; + struct io_mapped_region region; +}; + +struct io_mapped_ubuf { + u64 ubuf; + unsigned int len; + unsigned int nr_bvecs; + unsigned int folio_shift; + refcount_t refs; + long unsigned int acct_pages; + void (*release)(void *); + void *priv; + bool is_kbuf; + u8 dir; + struct bio_vec bvec[0]; +}; + +enum { + IOU_COMPLETE = 0, + IOU_ISSUE_SKIP_COMPLETE = -529, + IOU_RETRY = -11, + IOU_REQUEUE = -3072, +}; + +enum { + IOBL_BUF_RING = 1, + IOBL_INC = 2, +}; + +enum { + KBUF_MODE_EXPAND = 1, + KBUF_MODE_FREE = 2, +}; + +struct buf_sel_arg { + struct iovec *iovs; + size_t out_len; + size_t max_len; + short unsigned int nr_iovs; + short unsigned int mode; + short unsigned int buf_group; + short unsigned int partial_map; +}; + +struct io_provide_buf { + struct file *file; + __u64 addr; + __u32 len; + __u32 bgid; + __u32 nbufs; + __u16 bid; +}; + +struct io_uring_rsrc_update { + __u32 offset; + __u32 resv; + __u64 data; +}; + +struct io_wq_data { + struct io_wq_hash *hash; + struct task_struct *task; +}; + +struct io_tctx_node { + struct list_head ctx_node; + struct task_struct *task; + struct io_ring_ctx *ctx; +}; + +struct io_uring_file_index_range { + __u32 off; + __u32 len; + __u64 resv; +}; + +enum { + IORING_RSRC_FILE = 0, + IORING_RSRC_BUFFER = 1, +}; + +struct io_ev_fd { + struct eventfd_ctx *cq_ev_fd; + unsigned int eventfd_async; + unsigned int last_cq_tail; + refcount_t refs; + atomic_t ops; + struct callback_head rcu; +}; + +enum { + IO_EVENTFD_OP_SIGNAL_BIT = 0, +}; + +struct iou_vec { + union { + struct iovec *iovec; + struct bio_vec *bvec; + }; + unsigned int nr; +}; + +struct io_poll { + struct file *file; + struct wait_queue_head *head; + __poll_t events; + int retries; + struct wait_queue_entry wait; +}; + +struct async_poll { + struct io_poll poll; + struct io_poll *double_poll; +}; + +struct io_issue_def { + unsigned int needs_file: 1; + unsigned int plug: 1; + unsigned int ioprio: 1; + unsigned int iopoll: 1; + unsigned int buffer_select: 1; + unsigned int hash_reg_file: 1; + unsigned int unbound_nonreg_file: 1; + unsigned int pollin: 1; + unsigned int pollout: 1; + unsigned int poll_exclusive: 1; + unsigned int audit_skip: 1; + unsigned int iopoll_queue: 1; + unsigned int vectored: 1; + short unsigned int async_size; + int (*issue)(struct io_kiocb *, unsigned int); + int (*prep)(struct io_kiocb *, const struct io_uring_sqe *); +}; + +struct io_async_cmd { + struct iou_vec vec; + struct io_uring_sqe sqes[2]; +}; + +enum { + IO_APOLL_OK = 0, + IO_APOLL_ABORTED = 1, + IO_APOLL_READY = 2, +}; + +struct io_nop { + struct file *file; + int result; + int fd; + unsigned int flags; +}; + +struct io_splice { + struct file *file_out; + loff_t off_out; + loff_t off_in; + u64 len; + int splice_fd_in; + unsigned int flags; + struct io_rsrc_node *rsrc_node; +}; + +struct io_statx { + struct file *file; + int dfd; + unsigned int mask; + unsigned int flags; + struct filename *filename; + struct statx *buffer; +}; + +struct siginfo { + union { + struct { + int si_signo; + int si_errno; + int si_code; + union __sifields _sifields; + }; + int _si_pad[32]; + }; +}; + +typedef s32 compat_timer_t; + +struct compat_siginfo { + int si_signo; + int si_errno; + int si_code; + union { + int _pad[29]; + struct { + compat_pid_t _pid; + __compat_uid32_t _uid; + } _kill; + struct { + compat_timer_t _tid; + int _overrun; + compat_sigval_t _sigval; + } _timer; + struct { + compat_pid_t _pid; + __compat_uid32_t _uid; + compat_sigval_t _sigval; + } _rt; + struct { + compat_pid_t _pid; + __compat_uid32_t _uid; + int _status; + compat_clock_t _utime; + compat_clock_t _stime; + } _sigchld; + struct { + compat_uptr_t _addr; + union { + int _trapno; + short int _addr_lsb; + struct { + char _dummy_bnd[4]; + compat_uptr_t _lower; + compat_uptr_t _upper; + } _addr_bnd; + struct { + char _dummy_pkey[4]; + u32 _pkey; + } _addr_pkey; + struct { + compat_ulong_t _data; + u32 _type; + u32 _flags; + } _perf; + }; + } _sigfault; + struct { + compat_long_t _band; + int _fd; + } _sigpoll; + struct { + compat_uptr_t _call_addr; + int _syscall; + unsigned int _arch; + } _sigsys; + } _sifields; +}; + +struct io_cancel_data { + struct io_ring_ctx *ctx; + union { + u64 data; + struct file *file; + }; + u8 opcode; + u32 flags; + int seq; +}; + +struct waitid_info { + pid_t pid; + uid_t uid; + int status; + int cause; +}; + +struct wait_opts { + enum pid_type wo_type; + int wo_flags; + struct pid *wo_pid; + struct waitid_info *wo_info; + int wo_stat; + struct rusage *wo_rusage; + wait_queue_entry_t child_wait; + int notask_error; +}; + +struct io_waitid_async { + struct io_kiocb *req; + struct wait_opts wo; +}; + +struct io_waitid { + struct file *file; + int which; + pid_t upid; + int options; + atomic_t refs; + struct wait_queue_head *head; + struct siginfo *infop; + struct waitid_info info; +}; + +struct io_imu_folio_data { + unsigned int nr_pages_head; + unsigned int nr_pages_mid; + unsigned int folio_shift; + unsigned int nr_folios; + long unsigned int first_folio_page_idx; +}; + +enum { + IO_REGION_F_VMAP = 1, + IO_REGION_F_USER_PROVIDED = 2, + IO_REGION_F_SINGLE_REF = 4, +}; + +enum io_wq_type { + IO_WQ_BOUND = 0, + IO_WQ_UNBOUND = 1, +}; + +struct io_wq_acct { + raw_spinlock_t workers_lock; + unsigned int nr_workers; + unsigned int max_workers; + atomic_t nr_running; + struct hlist_nulls_head free_list; + struct list_head all_list; + raw_spinlock_t lock; + struct io_wq_work_list work_list; + long unsigned int flags; +}; + +struct io_wq { + long unsigned int state; + struct io_wq_hash *hash; + atomic_t worker_refs; + struct completion worker_done; + struct hlist_node cpuhp_node; + struct task_struct *task; + struct io_wq_acct acct[2]; + struct wait_queue_entry wait; + struct io_wq_work *hash_tail[64]; + cpumask_var_t cpu_mask; +}; + +enum { + IO_WQ_WORK_CANCEL = 1, + IO_WQ_WORK_HASHED = 2, + IO_WQ_WORK_UNBOUND = 4, + IO_WQ_WORK_CONCURRENT = 16, + IO_WQ_HASH_SHIFT = 24, +}; + +enum io_wq_cancel { + IO_WQ_CANCEL_OK = 0, + IO_WQ_CANCEL_RUNNING = 1, + IO_WQ_CANCEL_NOTFOUND = 2, +}; + +typedef bool work_cancel_fn(struct io_wq_work *, void *); + +enum { + IO_WORKER_F_UP = 0, + IO_WORKER_F_RUNNING = 1, + IO_WORKER_F_FREE = 2, +}; + +enum { + IO_WQ_BIT_EXIT = 0, +}; + +enum { + IO_ACCT_STALLED_BIT = 0, +}; + +struct io_worker { + refcount_t ref; + long unsigned int flags; + struct hlist_nulls_node nulls_node; + struct list_head all_list; + struct task_struct *task; + struct io_wq *wq; + struct io_wq_acct *acct; + struct io_wq_work *cur_work; + raw_spinlock_t lock; + struct completion ref_done; + long unsigned int create_state; + struct callback_head create_work; + int init_retries; + union { + struct callback_head rcu; + struct delayed_work work; + }; +}; + +enum { + IO_WQ_ACCT_BOUND = 0, + IO_WQ_ACCT_UNBOUND = 1, + IO_WQ_ACCT_NR = 2, +}; + +struct io_cb_cancel_data { + work_cancel_fn *fn; + void *data; + int nr_running; + int nr_pending; + bool cancel_all; +}; + +struct online_data { + unsigned int cpu; + bool online; +}; + +enum io_uring_napi_op { + IO_URING_NAPI_REGISTER_OP = 0, + IO_URING_NAPI_STATIC_ADD_ID = 1, + IO_URING_NAPI_STATIC_DEL_ID = 2, +}; + +enum io_uring_napi_tracking_strategy { + IO_URING_NAPI_TRACKING_DYNAMIC = 0, + IO_URING_NAPI_TRACKING_STATIC = 1, + IO_URING_NAPI_TRACKING_INACTIVE = 255, +}; + +struct io_uring_napi { + __u32 busy_poll_to; + __u8 prefer_busy_poll; + __u8 opcode; + __u8 pad[2]; + __u32 op_param; + __u32 resv; +}; + +struct io_wait_queue { + struct wait_queue_entry wq; + struct io_ring_ctx *ctx; + unsigned int cq_tail; + unsigned int cq_min_tail; + unsigned int nr_timeouts; + int hit_timeout; + ktime_t min_timeout; + ktime_t timeout; + struct hrtimer t; + ktime_t napi_busy_poll_dt; + bool napi_prefer_busy_poll; +}; + +enum { + IO_CHECK_CQ_OVERFLOW_BIT = 0, + IO_CHECK_CQ_DROPPED_BIT = 1, +}; + +struct io_napi_entry { + unsigned int napi_id; + struct list_head list; + long unsigned int timeout; + struct hlist_node node; + struct callback_head rcu; +}; + +struct sg_append_table { + struct sg_table sgt; + struct scatterlist *prv; + unsigned int total_nents; +}; + +typedef struct scatterlist *sg_alloc_fn(unsigned int, gfp_t); + +typedef void sg_free_fn(struct scatterlist *, unsigned int); + +struct sg_page_iter { + struct scatterlist *sg; + unsigned int sg_pgoffset; + unsigned int __nents; + int __pg_advance; +}; + +struct sg_dma_page_iter { + struct sg_page_iter base; +}; + +struct sg_mapping_iter { + struct page *page; + void *addr; + size_t length; + size_t consumed; + struct sg_page_iter piter; + unsigned int __offset; + unsigned int __remaining; + unsigned int __flags; +}; + +struct lwq { + spinlock_t lock; + struct llist_node *ready; + struct llist_head new; +}; + +typedef __kernel_long_t __kernel_ptrdiff_t; + +typedef __kernel_ptrdiff_t ptrdiff_t; + +struct region { + unsigned int start; + unsigned int off; + unsigned int group_len; + unsigned int end; + unsigned int nbits; +}; + +typedef struct { + __le64 b; + __le64 a; +} le128; + +struct gf128mul_4k { + be128 t[256]; +}; + +struct gf128mul_64k { + struct gf128mul_4k *t[16]; +}; + +struct poly1305_key { + union { + u32 r[5]; + u64 r64[3]; + }; +}; + +struct poly1305_core_key { + struct poly1305_key key; + struct poly1305_key precomputed_s; +}; + +struct poly1305_state { + union { + u32 h[5]; + u64 h64[3]; + }; +}; + +struct poly1305_block_state { + struct poly1305_state h; + union { + struct poly1305_key opaque_r[11]; + struct poly1305_core_key core_r; + }; +}; + +struct poly1305_desc_ctx { + u8 buf[16]; + unsigned int buflen; + u32 s[4]; + struct poly1305_block_state state; +}; + +struct sha1_block_state { + u32 h[5]; +}; + +struct sha1_ctx { + struct sha1_block_state state; + u64 bytecount; + u8 buf[64]; +}; + +struct hmac_sha1_key { + struct sha1_block_state istate; + struct sha1_block_state ostate; +}; + +struct hmac_sha1_ctx { + struct sha1_ctx sha_ctx; + struct sha1_block_state ostate; +}; + +typedef long unsigned int mpi_limb_t; + +typedef mpi_limb_t *mpi_ptr_t; + +typedef int mpi_size_t; + +typedef mpi_limb_t UWtype; + +typedef unsigned int UHWtype; + +struct gcry_mpi { + int alloced; + int nlimbs; + int nbits; + int sign; + unsigned int flags; + mpi_limb_t *d; +}; + +typedef struct gcry_mpi *MPI; + +enum devm_ioremap_type { + DEVM_IOREMAP = 0, + DEVM_IOREMAP_UC = 1, + DEVM_IOREMAP_WC = 2, + DEVM_IOREMAP_NP = 3, +}; + +struct arch_io_reserve_memtype_wc_devres { + resource_size_t start; + resource_size_t size; +}; + +typedef unsigned int uInt; + +typedef struct { + unsigned char op; + unsigned char bits; + short unsigned int val; +} code; + +typedef enum { + CODES = 0, + LENS = 1, + DISTS = 2, +} codetype; + +typedef enum { + HEAD = 0, + FLAGS = 1, + TIME = 2, + OS = 3, + EXLEN = 4, + EXTRA = 5, + NAME = 6, + COMMENT = 7, + HCRC = 8, + DICTID = 9, + DICT = 10, + TYPE = 11, + TYPEDO = 12, + STORED = 13, + COPY = 14, + TABLE = 15, + LENLENS = 16, + CODELENS = 17, + LEN = 18, + LENEXT = 19, + DIST = 20, + DISTEXT = 21, + MATCH = 22, + LIT = 23, + CHECK = 24, + LENGTH = 25, + DONE = 26, + BAD = 27, + MEM = 28, + SYNC = 29, +} inflate_mode; + +struct inflate_state { + inflate_mode mode; + int last; + int wrap; + int havedict; + int flags; + unsigned int dmax; + long unsigned int check; + long unsigned int total; + unsigned int wbits; + unsigned int wsize; + unsigned int whave; + unsigned int write; + unsigned char *window; + long unsigned int hold; + unsigned int bits; + unsigned int length; + unsigned int offset; + unsigned int extra; + const code *lencode; + const code *distcode; + unsigned int lenbits; + unsigned int distbits; + unsigned int ncode; + unsigned int nlen; + unsigned int ndist; + unsigned int have; + code *next; + short unsigned int lens[320]; + short unsigned int work[288]; + code codes[2048]; +}; + +struct inflate_workspace { + struct inflate_state inflate_state; + unsigned char working_window[32768]; +}; + +typedef unsigned char uch; + +typedef short unsigned int ush; + +typedef long unsigned int ulg; + +struct ct_data_s { + union { + ush freq; + ush code; + } fc; + union { + ush dad; + ush len; + } dl; +}; + +typedef struct ct_data_s ct_data; + +struct static_tree_desc_s { + const ct_data *static_tree; + const int *extra_bits; + int extra_base; + int elems; + int max_length; +}; + +typedef struct static_tree_desc_s static_tree_desc; + +struct tree_desc_s { + ct_data *dyn_tree; + int max_code; + static_tree_desc *stat_desc; +}; + +typedef struct tree_desc_s tree_desc; + +typedef ush Pos; + +typedef unsigned int IPos; + +struct deflate_state { + z_streamp strm; + int status; + Byte *pending_buf; + ulg pending_buf_size; + Byte *pending_out; + int pending; + int noheader; + Byte data_type; + Byte method; + int last_flush; + uInt w_size; + uInt w_bits; + uInt w_mask; + Byte *window; + ulg window_size; + Pos *prev; + Pos *head; + uInt ins_h; + uInt hash_size; + uInt hash_bits; + uInt hash_mask; + uInt hash_shift; + long int block_start; + uInt match_length; + IPos prev_match; + int match_available; + uInt strstart; + uInt match_start; + uInt lookahead; + uInt prev_length; + uInt max_chain_length; + uInt max_lazy_match; + int level; + int strategy; + uInt good_match; + int nice_match; + struct ct_data_s dyn_ltree[573]; + struct ct_data_s dyn_dtree[61]; + struct ct_data_s bl_tree[39]; + struct tree_desc_s l_desc; + struct tree_desc_s d_desc; + struct tree_desc_s bl_desc; + ush bl_count[16]; + int heap[573]; + int heap_len; + int heap_max; + uch depth[573]; + uch *l_buf; + uInt lit_bufsize; + uInt last_lit; + ush *d_buf; + ulg opt_len; + ulg static_len; + ulg compressed_len; + uInt matches; + int last_eob_len; + ush bi_buf; + int bi_valid; +}; + +typedef struct deflate_state deflate_state; + +typedef size_t BitContainerType; + +typedef struct { + BitContainerType bitContainer; + unsigned int bitPos; + char *startPtr; + char *ptr; + char *endPtr; +} BIT_CStream_t; + +typedef unsigned int FSE_CTable; + +typedef struct { + ptrdiff_t value; + const void *stateTable; + const void *symbolTT; + unsigned int stateLog; +} FSE_CState_t; + +typedef struct { + int deltaFindState; + U32 deltaNbBits; +} FSE_symbolCompressionTransform; + +typedef s16 int16_t; + +typedef int16_t S16; + +typedef size_t HUF_CElt; + +enum { + HUF_flags_bmi2 = 1, + HUF_flags_optimalDepth = 2, + HUF_flags_preferRepeat = 4, + HUF_flags_suspectUncompressible = 8, + HUF_flags_disableAsm = 16, + HUF_flags_disableFast = 32, +}; + +typedef enum { + HUF_repeat_none = 0, + HUF_repeat_check = 1, + HUF_repeat_valid = 2, +} HUF_repeat; + +typedef struct { + BYTE tableLog; + BYTE maxSymbolValue; + BYTE unused[6]; +} HUF_CTableHeader; + +struct nodeElt_s { + U32 count; + U16 parent; + BYTE byte; + BYTE nbBits; +}; + +typedef struct nodeElt_s nodeElt; + +typedef struct { + FSE_CTable CTable[59]; + U32 scratchBuffer[41]; + unsigned int count[13]; + S16 norm[13]; +} HUF_CompressWeightsWksp; + +typedef struct { + HUF_CompressWeightsWksp wksp; + BYTE bitsToWeight[13]; + BYTE huffWeight[255]; +} HUF_WriteCTableWksp; + +typedef struct { + U16 base; + U16 curr; +} rankPos; + +typedef nodeElt huffNodeTable[512]; + +typedef struct { + huffNodeTable huffNodeTbl; + rankPos rankPosition[192]; +} HUF_buildCTable_wksp_tables; + +typedef struct { + size_t bitContainer[2]; + size_t bitPos[2]; + BYTE *startPtr; + BYTE *ptr; + BYTE *endPtr; +} HUF_CStream_t; + +typedef enum { + HUF_singleStream = 0, + HUF_fourStreams = 1, +} HUF_nbStreams_e; + +typedef struct { + unsigned int count[256]; + HUF_CElt CTable[257]; + union { + HUF_buildCTable_wksp_tables buildCTable_wksp; + HUF_WriteCTableWksp writeCTable_wksp; + U32 hist_wksp[1024]; + } wksps; +} HUF_compress_tables_t; + +typedef uint8_t U8; + +typedef enum { + ZSTD_fast = 1, + ZSTD_dfast = 2, + ZSTD_greedy = 3, + ZSTD_lazy = 4, + ZSTD_lazy2 = 5, + ZSTD_btlazy2 = 6, + ZSTD_btopt = 7, + ZSTD_btultra = 8, + ZSTD_btultra2 = 9, +} ZSTD_strategy; + +typedef struct { + unsigned int windowLog; + unsigned int chainLog; + unsigned int hashLog; + unsigned int searchLog; + unsigned int minMatch; + unsigned int targetLength; + ZSTD_strategy strategy; +} ZSTD_compressionParameters; + +typedef enum { + ZSTD_ps_auto = 0, + ZSTD_ps_enable = 1, + ZSTD_ps_disable = 2, +} ZSTD_ParamSwitch_e; + +typedef enum { + FSE_repeat_none = 0, + FSE_repeat_check = 1, + FSE_repeat_valid = 2, +} FSE_repeat; + +typedef enum { + ZSTD_no_overlap = 0, + ZSTD_overlap_src_before_dst = 1, +} ZSTD_overlap_e; + +typedef struct { + HUF_CElt CTable[257]; + HUF_repeat repeatMode; +} ZSTD_hufCTables_t; + +typedef struct { + FSE_CTable offcodeCTable[193]; + FSE_CTable matchlengthCTable[363]; + FSE_CTable litlengthCTable[329]; + FSE_repeat offcode_repeatMode; + FSE_repeat matchlength_repeatMode; + FSE_repeat litlength_repeatMode; +} ZSTD_fseCTables_t; + +typedef struct { + ZSTD_hufCTables_t huf; + ZSTD_fseCTables_t fse; +} ZSTD_entropyCTables_t; + +struct SeqDef_s { + U32 offBase; + U16 litLength; + U16 mlBase; +}; + +typedef struct SeqDef_s SeqDef; + +typedef enum { + ZSTD_llt_none = 0, + ZSTD_llt_literalLength = 1, + ZSTD_llt_matchLength = 2, +} ZSTD_longLengthType_e; + +typedef struct { + SeqDef *sequencesStart; + SeqDef *sequences; + BYTE *litStart; + BYTE *lit; + BYTE *llCode; + BYTE *mlCode; + BYTE *ofCode; + size_t maxNbSeq; + size_t maxNbLit; + ZSTD_longLengthType_e longLengthType; + U32 longLengthPos; +} SeqStore_t; + +typedef struct { + U32 off; + U32 len; +} ZSTD_match_t; + +typedef struct { + U32 offset; + U32 litLength; + U32 matchLength; +} rawSeq; + +typedef struct { + rawSeq *seq; + size_t pos; + size_t posInSequence; + size_t size; + size_t capacity; +} RawSeqStore_t; + +typedef struct { + int price; + U32 off; + U32 mlen; + U32 litlen; + U32 rep[3]; +} ZSTD_optimal_t; + +typedef enum { + zop_dynamic = 0, + zop_predef = 1, +} ZSTD_OptPrice_e; + +typedef struct { + unsigned int *litFreq; + unsigned int *litLengthFreq; + unsigned int *matchLengthFreq; + unsigned int *offCodeFreq; + ZSTD_match_t *matchTable; + ZSTD_optimal_t *priceTable; + U32 litSum; + U32 litLengthSum; + U32 matchLengthSum; + U32 offCodeSum; + U32 litSumBasePrice; + U32 litLengthSumBasePrice; + U32 matchLengthSumBasePrice; + U32 offCodeSumBasePrice; + ZSTD_OptPrice_e priceType; + const ZSTD_entropyCTables_t *symbolCosts; + ZSTD_ParamSwitch_e literalCompressionMode; +} optState_t; + +typedef struct { + const BYTE *nextSrc; + const BYTE *base; + const BYTE *dictBase; + U32 dictLimit; + U32 lowLimit; + U32 nbOverflowCorrections; +} ZSTD_window_t; + +struct ZSTD_MatchState_t; + +typedef struct ZSTD_MatchState_t ZSTD_MatchState_t; + +struct ZSTD_MatchState_t { + ZSTD_window_t window; + U32 loadedDictEnd; + U32 nextToUpdate; + U32 hashLog3; + U32 rowHashLog; + BYTE *tagTable; + U32 hashCache[8]; + U64 hashSalt; + U32 hashSaltEntropy; + U32 *hashTable; + U32 *hashTable3; + U32 *chainTable; + int forceNonContiguous; + int dedicatedDictSearch; + optState_t opt; + const ZSTD_MatchState_t *dictMatchState; + ZSTD_compressionParameters cParams; + const RawSeqStore_t *ldmSeqStore; + int prefetchCDictTables; + int lazySkipping; +}; + +typedef enum { + ZSTD_dtlm_fast = 0, + ZSTD_dtlm_full = 1, +} ZSTD_dictTableLoadMethod_e; + +typedef enum { + ZSTD_tfp_forCCtx = 0, + ZSTD_tfp_forCDict = 1, +} ZSTD_tableFillPurpose_e; + +typedef int64_t S64; + +typedef struct { + unsigned int events[1024]; + size_t nbEvents; +} Fingerprint; + +typedef struct { + Fingerprint pastEvents; + Fingerprint newEvents; +} FPStats; + +typedef void (*RecordEvents_f)(Fingerprint *, const void *, size_t); + +typedef enum { + ZSTD_reset_session_only = 1, + ZSTD_reset_parameters = 2, + ZSTD_reset_session_and_parameters = 3, +} ZSTD_ResetDirective; + +struct ZSTD_DDict_s { + void *dictBuffer; + const void *dictContent; + size_t dictSize; + ZSTD_entropyDTables_t entropy; + U32 dictID; + U32 entropyPresent; + ZSTD_customMem cMem; +}; + +typedef enum { + ZSTD_dct_auto = 0, + ZSTD_dct_rawContent = 1, + ZSTD_dct_fullDict = 2, +} ZSTD_dictContentType_e; + +typedef enum { + ZSTD_dlm_byCopy = 0, + ZSTD_dlm_byRef = 1, +} ZSTD_dictLoadMethod_e; + +typedef ZSTD_customMem zstd_custom_mem; + +typedef ZSTD_DCtx zstd_dctx; + +typedef ZSTD_DDict zstd_ddict; + +typedef struct { + BitContainerType bitContainer; + unsigned int bitsConsumed; + const char *ptr; + const char *start; + const char *limitPtr; +} BIT_DStream_t; + +typedef enum { + BIT_DStream_unfinished = 0, + BIT_DStream_endOfBuffer = 1, + BIT_DStream_completed = 2, + BIT_DStream_overflow = 3, +} BIT_DStream_status; + +typedef size_t (*HUF_DecompressUsingDTableFn)(void *, size_t, const void *, size_t, const HUF_DTable *); + +typedef struct { + BYTE maxTableLog; + BYTE tableType; + BYTE tableLog; + BYTE reserved; +} DTableDesc; + +typedef struct { + const BYTE *ip[4]; + BYTE *op[4]; + U64 bits[4]; + const void *dt; + const BYTE *ilowest; + BYTE *oend; + const BYTE *iend[4]; +} HUF_DecompressFastArgs; + +typedef void (*HUF_DecompressFastLoopFn)(HUF_DecompressFastArgs *); + +typedef struct { + BYTE nbBits; + BYTE byte; +} HUF_DEltX1; + +typedef struct { + U32 rankVal[13]; + U32 rankStart[13]; + U32 statsWksp[219]; + BYTE symbols[256]; + BYTE huffWeight[256]; +} HUF_ReadDTableX1_Workspace; + +typedef struct { + U16 sequence; + BYTE nbBits; + BYTE length; +} HUF_DEltX2; + +typedef struct { + BYTE symbol; +} sortedSymbol_t; + +typedef U32 rankValCol_t[13]; + +typedef struct { + U32 rankVal[156]; + U32 rankStats[13]; + U32 rankStart0[15]; + sortedSymbol_t sortedSymbol[256]; + BYTE weightList[256]; + U32 calleeWksp[219]; +} HUF_ReadDTableX2_Workspace; + +typedef struct { + U32 tableTime; + U32 decode256Time; +} algo_time_t; + +typedef ZSTD_ErrorCode ERR_enum; + +enum xz_mode { + XZ_SINGLE = 0, + XZ_PREALLOC = 1, + XZ_DYNALLOC = 2, +}; + +enum xz_ret { + XZ_OK = 0, + XZ_STREAM_END = 1, + XZ_UNSUPPORTED_CHECK = 2, + XZ_MEM_ERROR = 3, + XZ_MEMLIMIT_ERROR = 4, + XZ_FORMAT_ERROR = 5, + XZ_OPTIONS_ERROR = 6, + XZ_DATA_ERROR = 7, + XZ_BUF_ERROR = 8, +}; + +struct xz_buf { + const uint8_t *in; + size_t in_pos; + size_t in_size; + uint8_t *out; + size_t out_pos; + size_t out_size; +}; + +struct ei_entry { + struct list_head list; + long unsigned int start_addr; + long unsigned int end_addr; + int etype; + void *priv; +}; + +struct ddebug_class_param { + union { + long unsigned int *bits; + unsigned int *lvl; + }; + char flags[8]; + const struct ddebug_class_map *map; +}; + +enum netdev_reg_state { + NETREG_UNINITIALIZED = 0, + NETREG_REGISTERED = 1, + NETREG_UNREGISTERING = 2, + NETREG_UNREGISTERED = 3, + NETREG_RELEASED = 4, + NETREG_DUMMY = 5, +}; + +struct irq_poll; + +typedef int irq_poll_fn(struct irq_poll *, int); + +struct irq_poll { + struct list_head list; + long unsigned int state; + int weight; + irq_poll_fn *poll; +}; + +struct rdma_cgroup { + struct cgroup_subsys_state css; + struct list_head rpools; +}; + +struct rdmacg_device { + struct list_head dev_node; + struct list_head rpools; + char *name; +}; + +struct dim_sample { + ktime_t time; + u32 pkt_ctr; + u32 byte_ctr; + u16 event_ctr; + u32 comp_ctr; +}; + +struct dim_stats { + int ppms; + int bpms; + int epms; + int cpms; + int cpe_ratio; +}; + +struct dim { + u8 state; + struct dim_stats prev_stats; + struct dim_sample start_sample; + struct dim_sample measuring_sample; + struct work_struct work; + void *priv; + u8 profile_ix; + u8 mode; + u8 tune_state; + u8 steps_right; + u8 steps_left; + u8 tired; +}; + +enum rdma_nl_counter_mode { + RDMA_COUNTER_MODE_NONE = 0, + RDMA_COUNTER_MODE_AUTO = 1, + RDMA_COUNTER_MODE_MANUAL = 2, + RDMA_COUNTER_MODE_MAX = 3, +}; + +enum rdma_nl_counter_mask { + RDMA_COUNTER_MASK_QP_TYPE = 1, + RDMA_COUNTER_MASK_PID = 2, +}; + +enum rdma_nl_dev_type { + RDMA_DEVICE_TYPE_SMI = 1, +}; + +enum rdma_nl_name_assign_type { + RDMA_NAME_ASSIGN_TYPE_UNKNOWN = 0, + RDMA_NAME_ASSIGN_TYPE_USER = 1, +}; + +enum rdma_restrack_type { + RDMA_RESTRACK_PD = 0, + RDMA_RESTRACK_CQ = 1, + RDMA_RESTRACK_QP = 2, + RDMA_RESTRACK_CM_ID = 3, + RDMA_RESTRACK_MR = 4, + RDMA_RESTRACK_CTX = 5, + RDMA_RESTRACK_COUNTER = 6, + RDMA_RESTRACK_SRQ = 7, + RDMA_RESTRACK_DMAH = 8, + RDMA_RESTRACK_MAX = 9, +}; + +struct rdma_restrack_entry { + bool valid; + u8 no_track: 1; + struct kref kref; + struct completion comp; + struct task_struct *task; + const char *kern_name; + enum rdma_restrack_type type; + bool user; + u32 id; +}; + +struct rdma_link_ops { + struct list_head list; + const char *type; + int (*newlink)(const char *, struct net_device *); +}; + +struct auto_mode_param { + int qp_type; +}; + +struct rdma_counter_mode { + enum rdma_nl_counter_mode mode; + enum rdma_nl_counter_mask mask; + struct auto_mode_param param; + bool bind_opcnt; +}; + +struct rdma_hw_stats; + +struct rdma_port_counter { + struct rdma_counter_mode mode; + struct rdma_hw_stats *hstats; + unsigned int num_counters; + struct mutex lock; +}; + +struct rdma_stat_desc; + +struct rdma_hw_stats { + struct mutex lock; + long unsigned int timestamp; + long unsigned int lifespan; + const struct rdma_stat_desc *descs; + long unsigned int *is_disabled; + int num_counters; + u64 value[0]; +}; + +struct ib_device; + +struct rdma_counter { + struct rdma_restrack_entry res; + struct ib_device *device; + uint32_t id; + struct kref kref; + struct rdma_counter_mode mode; + struct mutex lock; + struct rdma_hw_stats *stats; + u32 port; +}; + +enum rdma_driver_id { + RDMA_DRIVER_UNKNOWN = 0, + RDMA_DRIVER_MLX5 = 1, + RDMA_DRIVER_MLX4 = 2, + RDMA_DRIVER_CXGB3 = 3, + RDMA_DRIVER_CXGB4 = 4, + RDMA_DRIVER_MTHCA = 5, + RDMA_DRIVER_BNXT_RE = 6, + RDMA_DRIVER_OCRDMA = 7, + RDMA_DRIVER_NES = 8, + RDMA_DRIVER_I40IW = 9, + RDMA_DRIVER_IRDMA = 9, + RDMA_DRIVER_VMW_PVRDMA = 10, + RDMA_DRIVER_QEDR = 11, + RDMA_DRIVER_HNS = 12, + RDMA_DRIVER_USNIC = 13, + RDMA_DRIVER_RXE = 14, + RDMA_DRIVER_HFI1 = 15, + RDMA_DRIVER_QIB = 16, + RDMA_DRIVER_EFA = 17, + RDMA_DRIVER_SIW = 18, + RDMA_DRIVER_ERDMA = 19, + RDMA_DRIVER_MANA = 20, +}; + +enum ib_cq_notify_flags { + IB_CQ_SOLICITED = 1, + IB_CQ_NEXT_COMP = 2, + IB_CQ_SOLICITED_MASK = 3, + IB_CQ_REPORT_MISSED_EVENTS = 4, +}; + +struct ib_mad; + +enum rdma_link_layer { + IB_LINK_LAYER_UNSPECIFIED = 0, + IB_LINK_LAYER_INFINIBAND = 1, + IB_LINK_LAYER_ETHERNET = 2, +}; + +enum rdma_netdev_t { + RDMA_NETDEV_OPA_VNIC = 0, + RDMA_NETDEV_IPOIB = 1, +}; + +enum ib_srq_attr_mask { + IB_SRQ_MAX_WR = 1, + IB_SRQ_LIMIT = 2, +}; + +struct uverbs_attr_bundle; + +struct ib_umem; + +enum ib_mr_type { + IB_MR_TYPE_MEM_REG = 0, + IB_MR_TYPE_SG_GAPS = 1, + IB_MR_TYPE_DM = 2, + IB_MR_TYPE_USER = 3, + IB_MR_TYPE_DMA = 4, + IB_MR_TYPE_INTEGRITY = 5, +}; + +enum ib_uverbs_advise_mr_advice { + IB_UVERBS_ADVISE_MR_ADVICE_PREFETCH = 0, + IB_UVERBS_ADVISE_MR_ADVICE_PREFETCH_WRITE = 1, + IB_UVERBS_ADVISE_MR_ADVICE_PREFETCH_NO_FAULT = 2, +}; + +struct rdma_cm_id; + +struct iw_cm_id; + +struct iw_cm_conn_param; + +struct ib_uverbs_file; + +struct ib_qp; + +struct ib_send_wr; + +struct ib_recv_wr; + +struct ib_cq; + +struct ib_wc; + +struct ib_srq; + +struct ib_grh; + +struct ib_device_attr; + +struct ib_udata; + +struct ib_device_modify; + +struct ib_port_attr; + +struct ib_port_modify; + +struct ib_port_immutable; + +struct rdma_netdev_alloc_params; + +union ib_gid; + +struct ib_gid_attr; + +struct ib_ucontext; + +struct rdma_user_mmap_entry; + +struct ib_pd; + +struct ib_ah; + +struct rdma_ah_init_attr; + +struct rdma_ah_attr; + +struct ib_srq_init_attr; + +struct ib_srq_attr; + +struct ib_qp_init_attr; + +struct ib_qp_attr; + +struct ib_cq_init_attr; + +struct ib_mr; + +struct ib_dmah; + +struct ib_sge; + +struct ib_mr_status; + +struct ib_mw; + +struct ib_xrcd; + +struct ib_flow; + +struct ib_flow_attr; + +struct ib_flow_action; + +struct ib_wq; + +struct ib_wq_init_attr; + +struct ib_wq_attr; + +struct ib_rwq_ind_table; + +struct ib_rwq_ind_table_init_attr; + +struct ib_dm; + +struct ib_dm_alloc_attr; + +struct ib_dm_mr_attr; + +struct ib_counters; + +struct ib_counters_read_attr; + +struct ib_device_ops { + struct module *owner; + enum rdma_driver_id driver_id; + u32 uverbs_abi_ver; + unsigned int uverbs_no_driver_id_binding: 1; + const struct attribute_group *device_group; + const struct attribute_group **port_groups; + int (*post_send)(struct ib_qp *, const struct ib_send_wr *, const struct ib_send_wr **); + int (*post_recv)(struct ib_qp *, const struct ib_recv_wr *, const struct ib_recv_wr **); + void (*drain_rq)(struct ib_qp *); + void (*drain_sq)(struct ib_qp *); + int (*poll_cq)(struct ib_cq *, int, struct ib_wc *); + int (*peek_cq)(struct ib_cq *, int); + int (*req_notify_cq)(struct ib_cq *, enum ib_cq_notify_flags); + int (*post_srq_recv)(struct ib_srq *, const struct ib_recv_wr *, const struct ib_recv_wr **); + int (*process_mad)(struct ib_device *, int, u32, const struct ib_wc *, const struct ib_grh *, const struct ib_mad *, struct ib_mad *, size_t *, u16 *); + int (*query_device)(struct ib_device *, struct ib_device_attr *, struct ib_udata *); + int (*modify_device)(struct ib_device *, int, struct ib_device_modify *); + void (*get_dev_fw_str)(struct ib_device *, char *); + const struct cpumask * (*get_vector_affinity)(struct ib_device *, int); + int (*query_port)(struct ib_device *, u32, struct ib_port_attr *); + int (*modify_port)(struct ib_device *, u32, int, struct ib_port_modify *); + int (*get_port_immutable)(struct ib_device *, u32, struct ib_port_immutable *); + enum rdma_link_layer (*get_link_layer)(struct ib_device *, u32); + struct net_device * (*get_netdev)(struct ib_device *, u32); + struct net_device * (*alloc_rdma_netdev)(struct ib_device *, u32, enum rdma_netdev_t, const char *, unsigned char, void (*)(struct net_device *)); + int (*rdma_netdev_get_params)(struct ib_device *, u32, enum rdma_netdev_t, struct rdma_netdev_alloc_params *); + int (*query_gid)(struct ib_device *, u32, int, union ib_gid *); + int (*add_gid)(const struct ib_gid_attr *, void **); + int (*del_gid)(const struct ib_gid_attr *, void **); + int (*query_pkey)(struct ib_device *, u32, u16, u16 *); + int (*alloc_ucontext)(struct ib_ucontext *, struct ib_udata *); + void (*dealloc_ucontext)(struct ib_ucontext *); + int (*mmap)(struct ib_ucontext *, struct vm_area_struct *); + void (*mmap_free)(struct rdma_user_mmap_entry *); + void (*disassociate_ucontext)(struct ib_ucontext *); + int (*alloc_pd)(struct ib_pd *, struct ib_udata *); + int (*dealloc_pd)(struct ib_pd *, struct ib_udata *); + int (*create_ah)(struct ib_ah *, struct rdma_ah_init_attr *, struct ib_udata *); + int (*create_user_ah)(struct ib_ah *, struct rdma_ah_init_attr *, struct ib_udata *); + int (*modify_ah)(struct ib_ah *, struct rdma_ah_attr *); + int (*query_ah)(struct ib_ah *, struct rdma_ah_attr *); + int (*destroy_ah)(struct ib_ah *, u32); + int (*create_srq)(struct ib_srq *, struct ib_srq_init_attr *, struct ib_udata *); + int (*modify_srq)(struct ib_srq *, struct ib_srq_attr *, enum ib_srq_attr_mask, struct ib_udata *); + int (*query_srq)(struct ib_srq *, struct ib_srq_attr *); + int (*destroy_srq)(struct ib_srq *, struct ib_udata *); + int (*create_qp)(struct ib_qp *, struct ib_qp_init_attr *, struct ib_udata *); + int (*modify_qp)(struct ib_qp *, struct ib_qp_attr *, int, struct ib_udata *); + int (*query_qp)(struct ib_qp *, struct ib_qp_attr *, int, struct ib_qp_init_attr *); + int (*destroy_qp)(struct ib_qp *, struct ib_udata *); + int (*create_cq)(struct ib_cq *, const struct ib_cq_init_attr *, struct uverbs_attr_bundle *); + int (*create_cq_umem)(struct ib_cq *, const struct ib_cq_init_attr *, struct ib_umem *, struct uverbs_attr_bundle *); + int (*modify_cq)(struct ib_cq *, u16, u16); + int (*destroy_cq)(struct ib_cq *, struct ib_udata *); + int (*resize_cq)(struct ib_cq *, int, struct ib_udata *); + int (*pre_destroy_cq)(struct ib_cq *); + void (*post_destroy_cq)(struct ib_cq *); + struct ib_mr * (*get_dma_mr)(struct ib_pd *, int); + struct ib_mr * (*reg_user_mr)(struct ib_pd *, u64, u64, u64, int, struct ib_dmah *, struct ib_udata *); + struct ib_mr * (*reg_user_mr_dmabuf)(struct ib_pd *, u64, u64, u64, int, int, struct ib_dmah *, struct uverbs_attr_bundle *); + struct ib_mr * (*rereg_user_mr)(struct ib_mr *, int, u64, u64, u64, int, struct ib_pd *, struct ib_udata *); + int (*dereg_mr)(struct ib_mr *, struct ib_udata *); + struct ib_mr * (*alloc_mr)(struct ib_pd *, enum ib_mr_type, u32); + struct ib_mr * (*alloc_mr_integrity)(struct ib_pd *, u32, u32); + int (*advise_mr)(struct ib_pd *, enum ib_uverbs_advise_mr_advice, u32, struct ib_sge *, u32, struct uverbs_attr_bundle *); + int (*map_mr_sg)(struct ib_mr *, struct scatterlist *, int, unsigned int *); + int (*check_mr_status)(struct ib_mr *, u32, struct ib_mr_status *); + int (*alloc_mw)(struct ib_mw *, struct ib_udata *); + int (*dealloc_mw)(struct ib_mw *); + int (*attach_mcast)(struct ib_qp *, union ib_gid *, u16); + int (*detach_mcast)(struct ib_qp *, union ib_gid *, u16); + int (*alloc_xrcd)(struct ib_xrcd *, struct ib_udata *); + int (*dealloc_xrcd)(struct ib_xrcd *, struct ib_udata *); + struct ib_flow * (*create_flow)(struct ib_qp *, struct ib_flow_attr *, struct ib_udata *); + int (*destroy_flow)(struct ib_flow *); + int (*destroy_flow_action)(struct ib_flow_action *); + int (*set_vf_link_state)(struct ib_device *, int, u32, int); + int (*get_vf_config)(struct ib_device *, int, u32, struct ifla_vf_info *); + int (*get_vf_stats)(struct ib_device *, int, u32, struct ifla_vf_stats *); + int (*get_vf_guid)(struct ib_device *, int, u32, struct ifla_vf_guid *, struct ifla_vf_guid *); + int (*set_vf_guid)(struct ib_device *, int, u32, u64, int); + struct ib_wq * (*create_wq)(struct ib_pd *, struct ib_wq_init_attr *, struct ib_udata *); + int (*destroy_wq)(struct ib_wq *, struct ib_udata *); + int (*modify_wq)(struct ib_wq *, struct ib_wq_attr *, u32, struct ib_udata *); + int (*create_rwq_ind_table)(struct ib_rwq_ind_table *, struct ib_rwq_ind_table_init_attr *, struct ib_udata *); + int (*destroy_rwq_ind_table)(struct ib_rwq_ind_table *); + struct ib_dm * (*alloc_dm)(struct ib_device *, struct ib_ucontext *, struct ib_dm_alloc_attr *, struct uverbs_attr_bundle *); + int (*dealloc_dm)(struct ib_dm *, struct uverbs_attr_bundle *); + int (*alloc_dmah)(struct ib_dmah *, struct uverbs_attr_bundle *); + int (*dealloc_dmah)(struct ib_dmah *, struct uverbs_attr_bundle *); + struct ib_mr * (*reg_dm_mr)(struct ib_pd *, struct ib_dm *, struct ib_dm_mr_attr *, struct uverbs_attr_bundle *); + int (*create_counters)(struct ib_counters *, struct uverbs_attr_bundle *); + int (*destroy_counters)(struct ib_counters *); + int (*read_counters)(struct ib_counters *, struct ib_counters_read_attr *, struct uverbs_attr_bundle *); + int (*map_mr_sg_pi)(struct ib_mr *, struct scatterlist *, int, unsigned int *, struct scatterlist *, int, unsigned int *); + struct rdma_hw_stats * (*alloc_hw_device_stats)(struct ib_device *); + struct rdma_hw_stats * (*alloc_hw_port_stats)(struct ib_device *, u32); + int (*get_hw_stats)(struct ib_device *, struct rdma_hw_stats *, u32, int); + int (*modify_hw_stat)(struct ib_device *, u32, unsigned int, bool); + int (*fill_res_mr_entry)(struct sk_buff *, struct ib_mr *); + int (*fill_res_mr_entry_raw)(struct sk_buff *, struct ib_mr *); + int (*fill_res_cq_entry)(struct sk_buff *, struct ib_cq *); + int (*fill_res_cq_entry_raw)(struct sk_buff *, struct ib_cq *); + int (*fill_res_qp_entry)(struct sk_buff *, struct ib_qp *); + int (*fill_res_qp_entry_raw)(struct sk_buff *, struct ib_qp *); + int (*fill_res_cm_id_entry)(struct sk_buff *, struct rdma_cm_id *); + int (*fill_res_srq_entry)(struct sk_buff *, struct ib_srq *); + int (*fill_res_srq_entry_raw)(struct sk_buff *, struct ib_srq *); + int (*enable_driver)(struct ib_device *); + void (*dealloc_driver)(struct ib_device *); + void (*iw_add_ref)(struct ib_qp *); + void (*iw_rem_ref)(struct ib_qp *); + struct ib_qp * (*iw_get_qp)(struct ib_device *, int); + int (*iw_connect)(struct iw_cm_id *, struct iw_cm_conn_param *); + int (*iw_accept)(struct iw_cm_id *, struct iw_cm_conn_param *); + int (*iw_reject)(struct iw_cm_id *, const void *, u8); + int (*iw_create_listen)(struct iw_cm_id *, int); + int (*iw_destroy_listen)(struct iw_cm_id *); + int (*counter_bind_qp)(struct rdma_counter *, struct ib_qp *, u32); + int (*counter_unbind_qp)(struct ib_qp *, u32); + int (*counter_dealloc)(struct rdma_counter *); + struct rdma_hw_stats * (*counter_alloc_stats)(struct rdma_counter *); + int (*counter_update_stats)(struct rdma_counter *); + void (*counter_init)(struct rdma_counter *); + int (*fill_stat_mr_entry)(struct sk_buff *, struct ib_mr *); + int (*query_ucontext)(struct ib_ucontext *, struct uverbs_attr_bundle *); + int (*get_numa_node)(struct ib_device *); + struct ib_device * (*add_sub_dev)(struct ib_device *, enum rdma_nl_dev_type, const char *); + void (*del_sub_dev)(struct ib_device *); + void (*ufile_hw_cleanup)(struct ib_uverbs_file *); + void (*report_port_event)(struct ib_device *, struct net_device *, long unsigned int); + size_t size_ib_ah; + size_t size_ib_counters; + size_t size_ib_cq; + size_t size_ib_dmah; + size_t size_ib_mw; + size_t size_ib_pd; + size_t size_ib_qp; + size_t size_ib_rwq_ind_table; + size_t size_ib_srq; + size_t size_ib_ucontext; + size_t size_ib_xrcd; + size_t size_rdma_counter; +}; + +struct ib_core_device { + struct device dev; + possible_net_t rdma_net; + struct kobject *ports_kobj; + struct list_head port_list; + struct ib_device *owner; +}; + +enum ib_atomic_cap { + IB_ATOMIC_NONE = 0, + IB_ATOMIC_HCA = 1, + IB_ATOMIC_GLOB = 2, +}; + +struct ib_odp_caps { + uint64_t general_caps; + struct { + uint32_t rc_odp_caps; + uint32_t uc_odp_caps; + uint32_t ud_odp_caps; + uint32_t xrc_odp_caps; + } per_transport_caps; +}; + +struct ib_rss_caps { + u32 supported_qpts; + u32 max_rwq_indirection_tables; + u32 max_rwq_indirection_table_size; +}; + +struct ib_tm_caps { + u32 max_rndv_hdr_size; + u32 max_num_tags; + u32 flags; + u32 max_ops; + u32 max_sge; +}; + +struct ib_cq_caps { + u16 max_cq_moderation_count; + u16 max_cq_moderation_period; +}; + +struct ib_device_attr { + u64 fw_ver; + __be64 sys_image_guid; + u64 max_mr_size; + u64 page_size_cap; + u32 vendor_id; + u32 vendor_part_id; + u32 hw_ver; + int max_qp; + int max_qp_wr; + u64 device_cap_flags; + u64 kernel_cap_flags; + int max_send_sge; + int max_recv_sge; + int max_sge_rd; + int max_cq; + int max_cqe; + int max_mr; + int max_pd; + int max_qp_rd_atom; + int max_ee_rd_atom; + int max_res_rd_atom; + int max_qp_init_rd_atom; + int max_ee_init_rd_atom; + enum ib_atomic_cap atomic_cap; + enum ib_atomic_cap masked_atomic_cap; + int max_ee; + int max_rdd; + int max_mw; + int max_raw_ipv6_qp; + int max_raw_ethy_qp; + int max_mcast_grp; + int max_mcast_qp_attach; + int max_total_mcast_qp_attach; + int max_ah; + int max_srq; + int max_srq_wr; + int max_srq_sge; + unsigned int max_fast_reg_page_list_len; + unsigned int max_pi_fast_reg_page_list_len; + u16 max_pkeys; + u8 local_ca_ack_delay; + int sig_prot_cap; + int sig_guard_cap; + struct ib_odp_caps odp_caps; + uint64_t timestamp_mask; + uint64_t hca_core_clock; + struct ib_rss_caps rss_caps; + u32 max_wq_type_rq; + u32 raw_packet_caps; + struct ib_tm_caps tm_caps; + struct ib_cq_caps cq_caps; + u64 max_dm_size; + u32 max_sgl_rd; +}; + +struct hw_stats_device_data; + +struct rdma_restrack_root; + +struct uapi_definition; + +struct ib_port_data; + +struct ib_device { + struct device *dma_device; + struct ib_device_ops ops; + char name[64]; + struct callback_head callback_head; + struct list_head event_handler_list; + struct rw_semaphore event_handler_rwsem; + spinlock_t qp_open_list_lock; + struct rw_semaphore client_data_rwsem; + struct xarray client_data; + struct mutex unregistration_lock; + rwlock_t cache_lock; + struct ib_port_data *port_data; + int num_comp_vectors; + union { + struct device dev; + struct ib_core_device coredev; + }; + const struct attribute_group *groups[4]; + u8 hw_stats_attr_index; + u64 uverbs_cmd_mask; + char node_desc[64]; + __be64 node_guid; + u32 local_dma_lkey; + u16 is_switch: 1; + u16 kverbs_provider: 1; + u16 use_cq_dim: 1; + u8 node_type; + u32 phys_port_cnt; + struct ib_device_attr attrs; + struct hw_stats_device_data *hw_stats_data; + struct rdmacg_device cg_device; + u32 index; + spinlock_t cq_pools_lock; + struct list_head cq_pools[3]; + struct rdma_restrack_root *res; + const struct uapi_definition *driver_def; + refcount_t refcount; + struct completion unreg_completion; + struct work_struct unregistration_work; + const struct rdma_link_ops *link_ops; + struct mutex compat_devs_mutex; + struct xarray compat_devs; + char iw_ifname[16]; + u32 iw_driver_flags; + u32 lag_flags; + struct mutex subdev_lock; + struct list_head subdev_list_head; + enum rdma_nl_dev_type type; + struct ib_device *parent; + struct list_head subdev_list; + enum rdma_nl_name_assign_type name_assign_type; +}; + +enum ib_signature_type { + IB_SIG_TYPE_NONE = 0, + IB_SIG_TYPE_T10_DIF = 1, +}; + +enum ib_t10_dif_bg_type { + IB_T10DIF_CRC = 0, + IB_T10DIF_CSUM = 1, +}; + +struct ib_t10_dif_domain { + enum ib_t10_dif_bg_type bg_type; + u16 pi_interval; + u16 bg; + u16 app_tag; + u32 ref_tag; + bool ref_remap; + bool app_escape; + bool ref_escape; + u16 apptag_check_mask; +}; + +struct ib_sig_domain { + enum ib_signature_type sig_type; + union { + struct ib_t10_dif_domain dif; + } sig; +}; + +struct ib_sig_attrs { + u8 check_mask; + struct ib_sig_domain mem; + struct ib_sig_domain wire; + int meta_length; +}; + +enum ib_sig_err_type { + IB_SIG_BAD_GUARD = 0, + IB_SIG_BAD_REFTAG = 1, + IB_SIG_BAD_APPTAG = 2, +}; + +struct ib_sig_err { + enum ib_sig_err_type err_type; + u32 expected; + u32 actual; + u64 sig_err_offset; + u32 key; +}; + +enum tph_mem_type { + TPH_MEM_TYPE_VM = 0, + TPH_MEM_TYPE_PM = 1, +}; + +union ib_gid { + u8 raw[16]; + struct { + __be64 subnet_prefix; + __be64 interface_id; + } global; +}; + +enum ib_gid_type { + IB_GID_TYPE_IB = 0, + IB_GID_TYPE_ROCE = 1, + IB_GID_TYPE_ROCE_UDP_ENCAP = 2, + IB_GID_TYPE_SIZE = 3, +}; + +struct ib_gid_attr { + struct net_device *ndev; + struct ib_device *device; + union ib_gid gid; + enum ib_gid_type gid_type; + u16 index; + u32 port_num; +}; + +struct ib_cq_init_attr { + unsigned int cqe; + u32 comp_vector; + u32 flags; +}; + +struct ib_dm_mr_attr { + u64 length; + u64 offset; + u32 access_flags; +}; + +struct ib_dm_alloc_attr { + u64 length; + u32 alignment; + u32 flags; +}; + +enum ib_mtu { + IB_MTU_256 = 1, + IB_MTU_512 = 2, + IB_MTU_1024 = 3, + IB_MTU_2048 = 4, + IB_MTU_4096 = 5, +}; + +enum ib_port_state { + IB_PORT_NOP = 0, + IB_PORT_DOWN = 1, + IB_PORT_INIT = 2, + IB_PORT_ARMED = 3, + IB_PORT_ACTIVE = 4, + IB_PORT_ACTIVE_DEFER = 5, +}; + +struct rdma_stat_desc { + const char *name; + unsigned int flags; + const void *priv; +}; + +struct ib_port_attr { + u64 subnet_prefix; + enum ib_port_state state; + enum ib_mtu max_mtu; + enum ib_mtu active_mtu; + u32 phys_mtu; + int gid_tbl_len; + unsigned int ip_gids: 1; + u32 port_cap_flags; + u32 max_msg_sz; + u32 bad_pkey_cntr; + u32 qkey_viol_cntr; + u16 pkey_tbl_len; + u32 sm_lid; + u32 lid; + u8 lmc; + u8 max_vl_num; + u8 sm_sl; + u8 subnet_timeout; + u8 init_type_reply; + u8 active_width; + u16 active_speed; + u8 phys_state; + u16 port_cap_flags2; +}; + +struct ib_device_modify { + u64 sys_image_guid; + char node_desc[64]; +}; + +struct ib_port_modify { + u32 set_port_cap_mask; + u32 clr_port_cap_mask; + u8 init_type; +}; + +enum ib_event_type { + IB_EVENT_CQ_ERR = 0, + IB_EVENT_QP_FATAL = 1, + IB_EVENT_QP_REQ_ERR = 2, + IB_EVENT_QP_ACCESS_ERR = 3, + IB_EVENT_COMM_EST = 4, + IB_EVENT_SQ_DRAINED = 5, + IB_EVENT_PATH_MIG = 6, + IB_EVENT_PATH_MIG_ERR = 7, + IB_EVENT_DEVICE_FATAL = 8, + IB_EVENT_PORT_ACTIVE = 9, + IB_EVENT_PORT_ERR = 10, + IB_EVENT_LID_CHANGE = 11, + IB_EVENT_PKEY_CHANGE = 12, + IB_EVENT_SM_CHANGE = 13, + IB_EVENT_SRQ_ERR = 14, + IB_EVENT_SRQ_LIMIT_REACHED = 15, + IB_EVENT_QP_LAST_WQE_REACHED = 16, + IB_EVENT_CLIENT_REREGISTER = 17, + IB_EVENT_GID_CHANGE = 18, + IB_EVENT_WQ_FATAL = 19, +}; + +struct ib_ucq_object; + +typedef void (*ib_comp_handler)(struct ib_cq *, void *); + +struct ib_event; + +struct ib_cq { + struct ib_device *device; + struct ib_ucq_object *uobject; + ib_comp_handler comp_handler; + void (*event_handler)(struct ib_event *, void *); + void *cq_context; + int cqe; + unsigned int cqe_used; + atomic_t usecnt; + enum ib_poll_context poll_ctx; + struct ib_wc *wc; + struct list_head pool_entry; + union { + struct irq_poll iop; + struct work_struct work; + }; + struct workqueue_struct *comp_wq; + struct dim *dim; + ktime_t timestamp; + u8 interrupt: 1; + u8 shared: 1; + unsigned int comp_vector; + struct rdma_restrack_entry res; +}; + +struct ib_uqp_object; + +enum ib_qp_type { + IB_QPT_SMI = 0, + IB_QPT_GSI = 1, + IB_QPT_RC = 2, + IB_QPT_UC = 3, + IB_QPT_UD = 4, + IB_QPT_RAW_IPV6 = 5, + IB_QPT_RAW_ETHERTYPE = 6, + IB_QPT_RAW_PACKET = 8, + IB_QPT_XRC_INI = 9, + IB_QPT_XRC_TGT = 10, + IB_QPT_MAX = 11, + IB_QPT_DRIVER = 255, + IB_QPT_RESERVED1 = 4096, + IB_QPT_RESERVED2 = 4097, + IB_QPT_RESERVED3 = 4098, + IB_QPT_RESERVED4 = 4099, + IB_QPT_RESERVED5 = 4100, + IB_QPT_RESERVED6 = 4101, + IB_QPT_RESERVED7 = 4102, + IB_QPT_RESERVED8 = 4103, + IB_QPT_RESERVED9 = 4104, + IB_QPT_RESERVED10 = 4105, +}; + +struct ib_qp_security; + +struct ib_qp { + struct ib_device *device; + struct ib_pd *pd; + struct ib_cq *send_cq; + struct ib_cq *recv_cq; + spinlock_t mr_lock; + int mrs_used; + struct list_head rdma_mrs; + struct list_head sig_mrs; + struct ib_srq *srq; + struct completion srq_completion; + struct ib_xrcd *xrcd; + struct list_head xrcd_list; + atomic_t usecnt; + struct list_head open_list; + struct ib_qp *real_qp; + struct ib_uqp_object *uobject; + void (*event_handler)(struct ib_event *, void *); + void (*registered_event_handler)(struct ib_event *, void *); + void *qp_context; + const struct ib_gid_attr *av_sgid_attr; + const struct ib_gid_attr *alt_path_sgid_attr; + u32 qp_num; + u32 max_write_sge; + u32 max_read_sge; + enum ib_qp_type qp_type; + struct ib_rwq_ind_table *rwq_ind_tbl; + struct ib_qp_security *qp_sec; + u32 port; + bool integrity_en; + struct rdma_restrack_entry res; + struct rdma_counter *counter; +}; + +struct ib_usrq_object; + +enum ib_srq_type { + IB_SRQT_BASIC = 0, + IB_SRQT_XRC = 1, + IB_SRQT_TM = 2, +}; + +struct ib_srq { + struct ib_device *device; + struct ib_pd *pd; + struct ib_usrq_object *uobject; + void (*event_handler)(struct ib_event *, void *); + void *srq_context; + enum ib_srq_type srq_type; + atomic_t usecnt; + struct { + struct ib_cq *cq; + union { + struct { + struct ib_xrcd *xrcd; + u32 srq_num; + } xrc; + }; + } ext; + struct rdma_restrack_entry res; +}; + +struct ib_uwq_object; + +enum ib_wq_state { + IB_WQS_RESET = 0, + IB_WQS_RDY = 1, + IB_WQS_ERR = 2, +}; + +enum ib_wq_type { + IB_WQT_RQ = 0, +}; + +struct ib_wq { + struct ib_device *device; + struct ib_uwq_object *uobject; + void *wq_context; + void (*event_handler)(struct ib_event *, void *); + struct ib_pd *pd; + struct ib_cq *cq; + u32 wq_num; + enum ib_wq_state state; + enum ib_wq_type wq_type; + atomic_t usecnt; +}; + +struct ib_event { + struct ib_device *device; + union { + struct ib_cq *cq; + struct ib_qp *qp; + struct ib_srq *srq; + struct ib_wq *wq; + u32 port_num; + } element; + enum ib_event_type event; +}; + +struct ib_global_route { + const struct ib_gid_attr *sgid_attr; + union ib_gid dgid; + u32 flow_label; + u8 sgid_index; + u8 hop_limit; + u8 traffic_class; +}; + +struct ib_grh { + __be32 version_tclass_flow; + __be16 paylen; + u8 next_hdr; + u8 hop_limit; + union ib_gid sgid; + union ib_gid dgid; +}; + +struct ib_mr_status { + u32 fail_status; + struct ib_sig_err sig_err; +}; + +struct rdma_ah_init_attr { + struct rdma_ah_attr *ah_attr; + u32 flags; + struct net_device *xmit_slave; +}; + +enum rdma_ah_attr_type { + RDMA_AH_ATTR_TYPE_UNDEFINED = 0, + RDMA_AH_ATTR_TYPE_IB = 1, + RDMA_AH_ATTR_TYPE_ROCE = 2, + RDMA_AH_ATTR_TYPE_OPA = 3, +}; + +struct ib_ah_attr { + u16 dlid; + u8 src_path_bits; +}; + +struct roce_ah_attr { + u8 dmac[6]; +}; + +struct opa_ah_attr { + u32 dlid; + u8 src_path_bits; + bool make_grd; +}; + +struct rdma_ah_attr { + struct ib_global_route grh; + u8 sl; + u8 static_rate; + u32 port_num; + u8 ah_flags; + enum rdma_ah_attr_type type; + union { + struct ib_ah_attr ib; + struct roce_ah_attr roce; + struct opa_ah_attr opa; + }; +}; + +enum ib_wc_status { + IB_WC_SUCCESS = 0, + IB_WC_LOC_LEN_ERR = 1, + IB_WC_LOC_QP_OP_ERR = 2, + IB_WC_LOC_EEC_OP_ERR = 3, + IB_WC_LOC_PROT_ERR = 4, + IB_WC_WR_FLUSH_ERR = 5, + IB_WC_MW_BIND_ERR = 6, + IB_WC_BAD_RESP_ERR = 7, + IB_WC_LOC_ACCESS_ERR = 8, + IB_WC_REM_INV_REQ_ERR = 9, + IB_WC_REM_ACCESS_ERR = 10, + IB_WC_REM_OP_ERR = 11, + IB_WC_RETRY_EXC_ERR = 12, + IB_WC_RNR_RETRY_EXC_ERR = 13, + IB_WC_LOC_RDD_VIOL_ERR = 14, + IB_WC_REM_INV_RD_REQ_ERR = 15, + IB_WC_REM_ABORT_ERR = 16, + IB_WC_INV_EECN_ERR = 17, + IB_WC_INV_EEC_STATE_ERR = 18, + IB_WC_FATAL_ERR = 19, + IB_WC_RESP_TIMEOUT_ERR = 20, + IB_WC_GENERAL_ERR = 21, +}; + +enum ib_wc_opcode { + IB_WC_SEND = 0, + IB_WC_RDMA_WRITE = 1, + IB_WC_RDMA_READ = 2, + IB_WC_COMP_SWAP = 3, + IB_WC_FETCH_ADD = 4, + IB_WC_BIND_MW = 5, + IB_WC_LOCAL_INV = 6, + IB_WC_LSO = 7, + IB_WC_ATOMIC_WRITE = 9, + IB_WC_REG_MR = 10, + IB_WC_MASKED_COMP_SWAP = 11, + IB_WC_MASKED_FETCH_ADD = 12, + IB_WC_FLUSH = 8, + IB_WC_RECV = 128, + IB_WC_RECV_RDMA_WITH_IMM = 129, +}; + +struct ib_cqe { + void (*done)(struct ib_cq *, struct ib_wc *); +}; + +struct ib_wc { + union { + u64 wr_id; + struct ib_cqe *wr_cqe; + }; + enum ib_wc_status status; + enum ib_wc_opcode opcode; + u32 vendor_err; + u32 byte_len; + struct ib_qp *qp; + union { + __be32 imm_data; + u32 invalidate_rkey; + } ex; + u32 src_qp; + u32 slid; + int wc_flags; + u16 pkey_index; + u8 sl; + u8 dlid_path_bits; + u32 port_num; + u8 smac[6]; + u16 vlan_id; + u8 network_hdr_type; +}; + +struct ib_srq_attr { + u32 max_wr; + u32 max_sge; + u32 srq_limit; +}; + +struct ib_xrcd { + struct ib_device *device; + atomic_t usecnt; + struct inode *inode; + struct rw_semaphore tgt_qps_rwsem; + struct xarray tgt_qps; +}; + +struct ib_srq_init_attr { + void (*event_handler)(struct ib_event *, void *); + void *srq_context; + struct ib_srq_attr attr; + enum ib_srq_type srq_type; + struct { + struct ib_cq *cq; + union { + struct { + struct ib_xrcd *xrcd; + } xrc; + struct { + u32 max_num_tags; + } tag_matching; + }; + } ext; +}; + +struct ib_qp_cap { + u32 max_send_wr; + u32 max_recv_wr; + u32 max_send_sge; + u32 max_recv_sge; + u32 max_inline_data; + u32 max_rdma_ctxs; +}; + +enum ib_sig_type { + IB_SIGNAL_ALL_WR = 0, + IB_SIGNAL_REQ_WR = 1, +}; + +struct ib_qp_init_attr { + void (*event_handler)(struct ib_event *, void *); + void *qp_context; + struct ib_cq *send_cq; + struct ib_cq *recv_cq; + struct ib_srq *srq; + struct ib_xrcd *xrcd; + struct ib_qp_cap cap; + enum ib_sig_type sq_sig_type; + enum ib_qp_type qp_type; + u32 create_flags; + u32 port_num; + struct ib_rwq_ind_table *rwq_ind_tbl; + u32 source_qpn; +}; + +struct ib_uobject; + +struct ib_rwq_ind_table { + struct ib_device *device; + struct ib_uobject *uobject; + atomic_t usecnt; + u32 ind_tbl_num; + u32 log_ind_tbl_size; + struct ib_wq **ind_tbl; +}; + +enum ib_qp_state { + IB_QPS_RESET = 0, + IB_QPS_INIT = 1, + IB_QPS_RTR = 2, + IB_QPS_RTS = 3, + IB_QPS_SQD = 4, + IB_QPS_SQE = 5, + IB_QPS_ERR = 6, +}; + +enum ib_mig_state { + IB_MIG_MIGRATED = 0, + IB_MIG_REARM = 1, + IB_MIG_ARMED = 2, +}; + +enum ib_mw_type { + IB_MW_TYPE_1 = 1, + IB_MW_TYPE_2 = 2, +}; + +struct ib_qp_attr { + enum ib_qp_state qp_state; + enum ib_qp_state cur_qp_state; + enum ib_mtu path_mtu; + enum ib_mig_state path_mig_state; + u32 qkey; + u32 rq_psn; + u32 sq_psn; + u32 dest_qp_num; + int qp_access_flags; + struct ib_qp_cap cap; + struct rdma_ah_attr ah_attr; + struct rdma_ah_attr alt_ah_attr; + u16 pkey_index; + u16 alt_pkey_index; + u8 en_sqd_async_notify; + u8 sq_draining; + u8 max_rd_atomic; + u8 max_dest_rd_atomic; + u8 min_rnr_timer; + u32 port_num; + u8 timeout; + u8 retry_cnt; + u8 rnr_retry; + u32 alt_port_num; + u8 alt_timeout; + u32 rate_limit; + struct net_device *xmit_slave; +}; + +enum ib_wr_opcode { + IB_WR_RDMA_WRITE = 0, + IB_WR_RDMA_WRITE_WITH_IMM = 1, + IB_WR_SEND = 2, + IB_WR_SEND_WITH_IMM = 3, + IB_WR_RDMA_READ = 4, + IB_WR_ATOMIC_CMP_AND_SWP = 5, + IB_WR_ATOMIC_FETCH_AND_ADD = 6, + IB_WR_BIND_MW = 8, + IB_WR_LSO = 10, + IB_WR_SEND_WITH_INV = 9, + IB_WR_RDMA_READ_WITH_INV = 11, + IB_WR_LOCAL_INV = 7, + IB_WR_MASKED_ATOMIC_CMP_AND_SWP = 12, + IB_WR_MASKED_ATOMIC_FETCH_AND_ADD = 13, + IB_WR_FLUSH = 14, + IB_WR_ATOMIC_WRITE = 15, + IB_WR_REG_MR = 32, + IB_WR_REG_MR_INTEGRITY = 33, + IB_WR_RESERVED1 = 240, + IB_WR_RESERVED2 = 241, + IB_WR_RESERVED3 = 242, + IB_WR_RESERVED4 = 243, + IB_WR_RESERVED5 = 244, + IB_WR_RESERVED6 = 245, + IB_WR_RESERVED7 = 246, + IB_WR_RESERVED8 = 247, + IB_WR_RESERVED9 = 248, + IB_WR_RESERVED10 = 249, +}; + +struct ib_sge { + u64 addr; + u32 length; + u32 lkey; +}; + +struct ib_send_wr { + struct ib_send_wr *next; + union { + u64 wr_id; + struct ib_cqe *wr_cqe; + }; + struct ib_sge *sg_list; + int num_sge; + enum ib_wr_opcode opcode; + int send_flags; + union { + __be32 imm_data; + u32 invalidate_rkey; + } ex; +}; + +struct ib_ah { + struct ib_device *device; + struct ib_pd *pd; + struct ib_uobject *uobject; + const struct ib_gid_attr *sgid_attr; + enum rdma_ah_attr_type type; +}; + +struct ib_mr { + struct ib_device *device; + struct ib_pd *pd; + u32 lkey; + u32 rkey; + u64 iova; + u64 length; + unsigned int page_size; + enum ib_mr_type type; + bool need_inval; + union { + struct ib_uobject *uobject; + struct list_head qp_entry; + }; + struct ib_dm *dm; + struct ib_sig_attrs *sig_attrs; + struct ib_dmah *dmah; + struct rdma_restrack_entry res; +}; + +struct ib_recv_wr { + struct ib_recv_wr *next; + union { + u64 wr_id; + struct ib_cqe *wr_cqe; + }; + struct ib_sge *sg_list; + int num_sge; +}; + +struct ib_rdmacg_object { + struct rdma_cgroup *cg; +}; + +struct ib_ucontext { + struct ib_device *device; + struct ib_uverbs_file *ufile; + struct ib_rdmacg_object cg_obj; + u64 enabled_caps; + struct rdma_restrack_entry res; + struct xarray mmap_xa; +}; + +struct uverbs_api_object; + +struct ib_uobject { + u64 user_handle; + struct ib_uverbs_file *ufile; + struct ib_ucontext *context; + void *object; + struct list_head list; + struct ib_rdmacg_object cg_obj; + int id; + struct kref ref; + atomic_t usecnt; + struct callback_head rcu; + const struct uverbs_api_object *uapi_object; +}; + +struct ib_udata { + const void *inbuf; + void *outbuf; + size_t inlen; + size_t outlen; +}; + +struct ib_pd { + u32 local_dma_lkey; + u32 flags; + struct ib_device *device; + struct ib_uobject *uobject; + atomic_t usecnt; + u32 unsafe_global_rkey; + struct ib_mr *__internal_mr; + struct rdma_restrack_entry res; +}; + +struct ib_wq_init_attr { + void *wq_context; + enum ib_wq_type wq_type; + u32 max_wr; + u32 max_sge; + struct ib_cq *cq; + void (*event_handler)(struct ib_event *, void *); + u32 create_flags; +}; + +struct ib_wq_attr { + enum ib_wq_state wq_state; + enum ib_wq_state curr_wq_state; + u32 flags; + u32 flags_mask; +}; + +struct ib_rwq_ind_table_init_attr { + u32 log_ind_tbl_size; + struct ib_wq **ind_tbl; +}; + +enum port_pkey_state { + IB_PORT_PKEY_NOT_VALID = 0, + IB_PORT_PKEY_VALID = 1, + IB_PORT_PKEY_LISTED = 2, +}; + +struct ib_port_pkey { + enum port_pkey_state state; + u16 pkey_index; + u32 port_num; + struct list_head qp_list; + struct list_head to_error_list; + struct ib_qp_security *sec; +}; + +struct ib_ports_pkeys; + +struct ib_qp_security { + struct ib_qp *qp; + struct ib_device *dev; + struct mutex mutex; + struct ib_ports_pkeys *ports_pkeys; + struct list_head shared_qp_list; + void *security; + bool destroying; + atomic_t error_list_count; + struct completion error_complete; + int error_comps_pending; +}; + +struct ib_ports_pkeys { + struct ib_port_pkey main; + struct ib_port_pkey alt; +}; + +struct ib_dm { + struct ib_device *device; + u32 length; + u32 flags; + struct ib_uobject *uobject; + atomic_t usecnt; +}; + +struct ib_dmah { + struct ib_device *device; + struct ib_uobject *uobject; + struct rdma_restrack_entry res; + u32 cpu_id; + enum tph_mem_type mem_type; + atomic_t usecnt; + u8 ph; + u8 valid_fields; +}; + +struct ib_mw { + struct ib_device *device; + struct ib_pd *pd; + struct ib_uobject *uobject; + u32 rkey; + enum ib_mw_type type; +}; + +enum ib_flow_attr_type { + IB_FLOW_ATTR_NORMAL = 0, + IB_FLOW_ATTR_ALL_DEFAULT = 1, + IB_FLOW_ATTR_MC_DEFAULT = 2, + IB_FLOW_ATTR_SNIFFER = 3, +}; + +enum ib_flow_spec_type { + IB_FLOW_SPEC_ETH = 32, + IB_FLOW_SPEC_IB = 34, + IB_FLOW_SPEC_IPV4 = 48, + IB_FLOW_SPEC_IPV6 = 49, + IB_FLOW_SPEC_ESP = 52, + IB_FLOW_SPEC_TCP = 64, + IB_FLOW_SPEC_UDP = 65, + IB_FLOW_SPEC_VXLAN_TUNNEL = 80, + IB_FLOW_SPEC_GRE = 81, + IB_FLOW_SPEC_MPLS = 96, + IB_FLOW_SPEC_INNER = 256, + IB_FLOW_SPEC_ACTION_TAG = 4096, + IB_FLOW_SPEC_ACTION_DROP = 4097, + IB_FLOW_SPEC_ACTION_HANDLE = 4098, + IB_FLOW_SPEC_ACTION_COUNT = 4099, +}; + +struct ib_flow_eth_filter { + u8 dst_mac[6]; + u8 src_mac[6]; + __be16 ether_type; + __be16 vlan_tag; +}; + +struct ib_flow_spec_eth { + u32 type; + u16 size; + struct ib_flow_eth_filter val; + struct ib_flow_eth_filter mask; +}; + +struct ib_flow_ib_filter { + __be16 dlid; + __u8 sl; +}; + +struct ib_flow_spec_ib { + u32 type; + u16 size; + struct ib_flow_ib_filter val; + struct ib_flow_ib_filter mask; +}; + +struct ib_flow_ipv4_filter { + __be32 src_ip; + __be32 dst_ip; + u8 proto; + u8 tos; + u8 ttl; + u8 flags; +}; + +struct ib_flow_spec_ipv4 { + u32 type; + u16 size; + struct ib_flow_ipv4_filter val; + struct ib_flow_ipv4_filter mask; +}; + +struct ib_flow_ipv6_filter { + u8 src_ip[16]; + u8 dst_ip[16]; + __be32 flow_label; + u8 next_hdr; + u8 traffic_class; + u8 hop_limit; +} __attribute__((packed)); + +struct ib_flow_spec_ipv6 { + u32 type; + u16 size; + struct ib_flow_ipv6_filter val; + struct ib_flow_ipv6_filter mask; +}; + +struct ib_flow_tcp_udp_filter { + __be16 dst_port; + __be16 src_port; +}; + +struct ib_flow_spec_tcp_udp { + u32 type; + u16 size; + struct ib_flow_tcp_udp_filter val; + struct ib_flow_tcp_udp_filter mask; +}; + +struct ib_flow_tunnel_filter { + __be32 tunnel_id; +}; + +struct ib_flow_spec_tunnel { + u32 type; + u16 size; + struct ib_flow_tunnel_filter val; + struct ib_flow_tunnel_filter mask; +}; + +struct ib_flow_esp_filter { + __be32 spi; + __be32 seq; +}; + +struct ib_flow_spec_esp { + u32 type; + u16 size; + struct ib_flow_esp_filter val; + struct ib_flow_esp_filter mask; +}; + +struct ib_flow_gre_filter { + __be16 c_ks_res0_ver; + __be16 protocol; + __be32 key; +}; + +struct ib_flow_spec_gre { + u32 type; + u16 size; + struct ib_flow_gre_filter val; + struct ib_flow_gre_filter mask; +}; + +struct ib_flow_mpls_filter { + __be32 tag; +}; + +struct ib_flow_spec_mpls { + u32 type; + u16 size; + struct ib_flow_mpls_filter val; + struct ib_flow_mpls_filter mask; +}; + +struct ib_flow_spec_action_tag { + enum ib_flow_spec_type type; + u16 size; + u32 tag_id; +}; + +struct ib_flow_spec_action_drop { + enum ib_flow_spec_type type; + u16 size; +}; + +struct ib_flow_spec_action_handle { + enum ib_flow_spec_type type; + u16 size; + struct ib_flow_action *act; +}; + +enum ib_flow_action_type { + IB_FLOW_ACTION_UNSPECIFIED = 0, + IB_FLOW_ACTION_ESP = 1, +}; + +struct ib_flow_action { + struct ib_device *device; + struct ib_uobject *uobject; + enum ib_flow_action_type type; + atomic_t usecnt; +}; + +struct ib_flow_spec_action_count { + enum ib_flow_spec_type type; + u16 size; + struct ib_counters *counters; +}; + +struct ib_counters { + struct ib_device *device; + struct ib_uobject *uobject; + atomic_t usecnt; +}; + +union ib_flow_spec { + struct { + u32 type; + u16 size; + }; + struct ib_flow_spec_eth eth; + struct ib_flow_spec_ib ib; + struct ib_flow_spec_ipv4 ipv4; + struct ib_flow_spec_tcp_udp tcp_udp; + struct ib_flow_spec_ipv6 ipv6; + struct ib_flow_spec_tunnel tunnel; + struct ib_flow_spec_esp esp; + struct ib_flow_spec_gre gre; + struct ib_flow_spec_mpls mpls; + struct ib_flow_spec_action_tag flow_tag; + struct ib_flow_spec_action_drop drop; + struct ib_flow_spec_action_handle action; + struct ib_flow_spec_action_count flow_count; +}; + +struct ib_flow_attr { + enum ib_flow_attr_type type; + u16 size; + u16 priority; + u32 flags; + u8 num_of_specs; + u32 port; + union ib_flow_spec flows[0]; +}; + +struct ib_flow { + struct ib_qp *qp; + struct ib_device *device; + struct ib_uobject *uobject; +}; + +struct ib_pkey_cache; + +struct ib_gid_table; + +struct ib_port_cache { + u64 subnet_prefix; + struct ib_pkey_cache *pkey; + struct ib_gid_table *gid; + u8 lmc; + enum ib_port_state port_state; + enum ib_port_state last_port_state; +}; + +struct ib_port_immutable { + int pkey_tbl_len; + int gid_tbl_len; + u32 core_cap_flags; + u32 max_mad_size; +}; + +struct ib_port; + +struct ib_port_data { + struct ib_device *ib_dev; + struct ib_port_immutable immutable; + spinlock_t pkey_list_lock; + spinlock_t netdev_lock; + struct list_head pkey_list; + struct ib_port_cache cache; + struct net_device *netdev; + netdevice_tracker netdev_tracker; + struct hlist_node ndev_hash_link; + struct rdma_port_counter port_counter; + struct ib_port *sysfs; +}; + +struct rdma_netdev_alloc_params { + size_t sizeof_priv; + unsigned int txqs; + unsigned int rxqs; + void *param; + int (*initialize_rdma_netdev)(struct ib_device *, u32, struct net_device *, void *); +}; + +struct ib_counters_read_attr { + u64 *counters_buff; + u32 ncounters; + u32 flags; +}; + +struct rdma_user_mmap_entry { + struct kref ref; + struct ib_ucontext *ucontext; + long unsigned int start_pgoff; + size_t npages; + bool driver_removed; +}; + +struct ddebug_table { + struct list_head link; + struct list_head maps; + const char *mod_name; + unsigned int num_ddebugs; + struct _ddebug *ddebugs; +}; + +struct ddebug_query { + const char *filename; + const char *module; + const char *function; + const char *format; + const char *class_string; + unsigned int first_lineno; + unsigned int last_lineno; +}; + +struct ddebug_iter { + struct ddebug_table *table; + int idx; +}; + +struct flag_settings { + unsigned int flags; + unsigned int mask; +}; + +struct flagsbuf { + char buf[8]; +}; + +enum dim_state { + DIM_START_MEASURE = 0, + DIM_MEASURE_IN_PROGRESS = 1, + DIM_APPLY_NEW_PROFILE = 2, +}; + +enum dim_tune_state { + DIM_PARKING_ON_TOP = 0, + DIM_PARKING_TIRED = 1, + DIM_GOING_RIGHT = 2, + DIM_GOING_LEFT = 3, +}; + +enum dim_stats_state { + DIM_STATS_WORSE = 0, + DIM_STATS_SAME = 1, + DIM_STATS_BETTER = 2, +}; + +enum dim_step_result { + DIM_STEPPED = 0, + DIM_TOO_TIRED = 1, + DIM_ON_EDGE = 2, +}; + +enum pubkey_algo { + PUBKEY_ALGO_RSA = 0, + PUBKEY_ALGO_MAX = 1, +}; + +struct pubkey_hdr { + uint8_t version; + uint32_t timestamp; + uint8_t algo; + uint8_t nmpi; + char mpi[0]; +} __attribute__((packed)); + +struct signature_hdr { + uint8_t version; + uint32_t timestamp; + uint8_t algo; + uint8_t hash; + uint8_t keyid[8]; + uint8_t nmpi; + char mpi[0]; +} __attribute__((packed)); + +enum { + IRQ_POLL_F_SCHED = 0, + IRQ_POLL_F_DISABLE = 1, +}; + +struct xbc_node { + uint16_t next; + uint16_t child; + uint16_t parent; + uint16_t data; +}; + +struct font_desc { + int idx; + const char *name; + unsigned int width; + unsigned int height; + unsigned int charcount; + const void *data; + int pref; +}; + +struct font_data { + unsigned int extra[4]; + const unsigned char data[0]; +}; + +struct acpi_table_cdat { + u32 length; + u8 revision; + u8 checksum; + u8 reserved[6]; + u32 sequence; +}; + +enum acpi_cdat_type { + ACPI_CDAT_TYPE_DSMAS = 0, + ACPI_CDAT_TYPE_DSLBIS = 1, + ACPI_CDAT_TYPE_DSMSCIS = 2, + ACPI_CDAT_TYPE_DSIS = 3, + ACPI_CDAT_TYPE_DSEMTS = 4, + ACPI_CDAT_TYPE_SSLBIS = 5, + ACPI_CDAT_TYPE_RESERVED = 6, +}; + +typedef int (*acpi_tbl_entry_handler)(union acpi_subtable_headers *, const long unsigned int); + +typedef int (*acpi_tbl_entry_handler_arg)(union acpi_subtable_headers *, void *, const long unsigned int); + +struct acpi_subtable_proc { + int id; + acpi_tbl_entry_handler handler; + acpi_tbl_entry_handler_arg handler_arg; + void *arg; + int count; +}; + +union fw_table_header { + struct acpi_table_header acpi; + struct acpi_table_cdat cdat; +}; + +enum acpi_subtable_type { + ACPI_SUBTABLE_COMMON = 0, + ACPI_SUBTABLE_HMAT = 1, + ACPI_SUBTABLE_PRMT = 2, + ACPI_SUBTABLE_CEDT = 3, + CDAT_SUBTABLE = 4, +}; + +struct acpi_subtable_entry { + union acpi_subtable_headers *hdr; + enum acpi_subtable_type type; +}; + +struct msr { + union { + struct { + u32 l; + u32 h; + }; + u64 q; + }; +}; + +enum pcpu_fc { + PCPU_FC_AUTO = 0, + PCPU_FC_EMBED = 1, + PCPU_FC_PAGE = 2, + PCPU_FC_NR = 3, +}; + +struct msr_info { + u32 msr_no; + struct msr reg; + struct msr *msrs; + int err; +}; + +struct msr_regs_info { + u32 *regs; + int err; +}; + +struct msr_info_completion { + struct msr_info msr; + struct completion done; +}; + +struct trace_event_raw_msr_trace_class { + struct trace_entry ent; + unsigned int msr; + u64 val; + int failed; + char __data[0]; +}; + +struct trace_event_data_offsets_msr_trace_class {}; + +typedef void (*btf_trace_read_msr)(void *, unsigned int, u64, int); + +typedef void (*btf_trace_write_msr)(void *, unsigned int, u64, int); + +typedef void (*btf_trace_rdpmc)(void *, unsigned int, u64, int); + +struct pinctrl_pin_desc { + unsigned int number; + const char *name; + void *drv_data; +}; + +struct pinctrl_dev; + +struct pinctrl_map; + +struct pinctrl_ops { + int (*get_groups_count)(struct pinctrl_dev *); + const char * (*get_group_name)(struct pinctrl_dev *, unsigned int); + int (*get_group_pins)(struct pinctrl_dev *, unsigned int, const unsigned int **, unsigned int *); + void (*pin_dbg_show)(struct pinctrl_dev *, struct seq_file *, unsigned int); + int (*dt_node_to_map)(struct pinctrl_dev *, struct device_node *, struct pinctrl_map **, unsigned int *); + void (*dt_free_map)(struct pinctrl_dev *, struct pinctrl_map *, unsigned int); +}; + +struct pinctrl_desc; + +struct pinctrl; + +struct pinctrl_state; + +struct pinctrl_dev { + struct list_head node; + const struct pinctrl_desc *desc; + struct xarray pin_desc_tree; + struct list_head gpio_ranges; + struct device *dev; + struct module *owner; + void *driver_data; + struct pinctrl *p; + struct pinctrl_state *hog_default; + struct pinctrl_state *hog_sleep; + struct mutex mutex; + struct dentry *device_root; +}; + +enum pinctrl_map_type { + PIN_MAP_TYPE_INVALID = 0, + PIN_MAP_TYPE_DUMMY_STATE = 1, + PIN_MAP_TYPE_MUX_GROUP = 2, + PIN_MAP_TYPE_CONFIGS_PIN = 3, + PIN_MAP_TYPE_CONFIGS_GROUP = 4, +}; + +struct pinctrl_map_mux { + const char *group; + const char *function; +}; + +struct pinctrl_map_configs { + const char *group_or_pin; + long unsigned int *configs; + unsigned int num_configs; +}; + +struct pinctrl_map { + const char *dev_name; + const char *name; + enum pinctrl_map_type type; + const char *ctrl_dev_name; + union { + struct pinctrl_map_mux mux; + struct pinctrl_map_configs configs; + } data; +}; + +struct pinmux_ops; + +struct pinconf_ops; + +struct pinconf_generic_params; + +struct pin_config_item; + +struct pinctrl_desc { + const char *name; + const struct pinctrl_pin_desc *pins; + unsigned int npins; + const struct pinctrl_ops *pctlops; + const struct pinmux_ops *pmxops; + const struct pinconf_ops *confops; + struct module *owner; + unsigned int num_custom_params; + const struct pinconf_generic_params *custom_params; + const struct pin_config_item *custom_conf_items; + bool link_consumers; +}; + +struct pinctrl_gpio_range; + +struct pinmux_ops { + int (*request)(struct pinctrl_dev *, unsigned int); + int (*free)(struct pinctrl_dev *, unsigned int); + int (*get_functions_count)(struct pinctrl_dev *); + const char * (*get_function_name)(struct pinctrl_dev *, unsigned int); + int (*get_function_groups)(struct pinctrl_dev *, unsigned int, const char * const **, unsigned int *); + int (*set_mux)(struct pinctrl_dev *, unsigned int, unsigned int); + int (*gpio_request_enable)(struct pinctrl_dev *, struct pinctrl_gpio_range *, unsigned int); + void (*gpio_disable_free)(struct pinctrl_dev *, struct pinctrl_gpio_range *, unsigned int); + int (*gpio_set_direction)(struct pinctrl_dev *, struct pinctrl_gpio_range *, unsigned int, bool); + bool strict; +}; + +struct pinconf_ops { + bool is_generic; + int (*pin_config_get)(struct pinctrl_dev *, unsigned int, long unsigned int *); + int (*pin_config_set)(struct pinctrl_dev *, unsigned int, long unsigned int *, unsigned int); + int (*pin_config_group_get)(struct pinctrl_dev *, unsigned int, long unsigned int *); + int (*pin_config_group_set)(struct pinctrl_dev *, unsigned int, long unsigned int *, unsigned int); + void (*pin_config_dbg_show)(struct pinctrl_dev *, struct seq_file *, unsigned int); + void (*pin_config_group_dbg_show)(struct pinctrl_dev *, struct seq_file *, unsigned int); + void (*pin_config_config_dbg_show)(struct pinctrl_dev *, struct seq_file *, long unsigned int); +}; + +enum pin_config_param { + PIN_CONFIG_BIAS_BUS_HOLD = 0, + PIN_CONFIG_BIAS_DISABLE = 1, + PIN_CONFIG_BIAS_HIGH_IMPEDANCE = 2, + PIN_CONFIG_BIAS_PULL_DOWN = 3, + PIN_CONFIG_BIAS_PULL_PIN_DEFAULT = 4, + PIN_CONFIG_BIAS_PULL_UP = 5, + PIN_CONFIG_DRIVE_OPEN_DRAIN = 6, + PIN_CONFIG_DRIVE_OPEN_SOURCE = 7, + PIN_CONFIG_DRIVE_PUSH_PULL = 8, + PIN_CONFIG_DRIVE_STRENGTH = 9, + PIN_CONFIG_DRIVE_STRENGTH_UA = 10, + PIN_CONFIG_INPUT_DEBOUNCE = 11, + PIN_CONFIG_INPUT_ENABLE = 12, + PIN_CONFIG_INPUT_SCHMITT = 13, + PIN_CONFIG_INPUT_SCHMITT_ENABLE = 14, + PIN_CONFIG_INPUT_SCHMITT_UV = 15, + PIN_CONFIG_MODE_LOW_POWER = 16, + PIN_CONFIG_MODE_PWM = 17, + PIN_CONFIG_OUTPUT = 18, + PIN_CONFIG_OUTPUT_ENABLE = 19, + PIN_CONFIG_OUTPUT_IMPEDANCE_OHMS = 20, + PIN_CONFIG_PERSIST_STATE = 21, + PIN_CONFIG_POWER_SOURCE = 22, + PIN_CONFIG_SKEW_DELAY = 23, + PIN_CONFIG_SLEEP_HARDWARE_STATE = 24, + PIN_CONFIG_SLEW_RATE = 25, + PIN_CONFIG_END = 127, + PIN_CONFIG_MAX = 255, +}; + +struct pinconf_generic_params { + const char * const property; + enum pin_config_param param; + u32 default_value; +}; + +struct pin_config_item { + const enum pin_config_param param; + const char * const display; + const char * const format; + bool has_arg; +}; + +struct pinctrl { + struct list_head node; + struct device *dev; + struct list_head states; + struct pinctrl_state *state; + struct list_head dt_maps; + struct kref users; +}; + +struct pinctrl_state { + struct list_head node; + const char *name; + struct list_head settings; +}; + +struct pinctrl_setting_mux { + unsigned int group; + unsigned int func; +}; + +struct pinctrl_setting_configs { + unsigned int group_or_pin; + long unsigned int *configs; + unsigned int num_configs; +}; + +struct pinctrl_setting { + struct list_head node; + enum pinctrl_map_type type; + struct pinctrl_dev *pctldev; + const char *dev_name; + union { + struct pinctrl_setting_mux mux; + struct pinctrl_setting_configs configs; + } data; +}; + +struct pin_desc { + struct pinctrl_dev *pctldev; + const char *name; + bool dynamic_name; + void *drv_data; + unsigned int mux_usecount; + const char *mux_owner; + const struct pinctrl_setting_mux *mux_setting; + const char *gpio_owner; + struct mutex mux_lock; +}; + +enum dev_prop_type { + DEV_PROP_U8 = 0, + DEV_PROP_U16 = 1, + DEV_PROP_U32 = 2, + DEV_PROP_U64 = 3, + DEV_PROP_STRING = 4, + DEV_PROP_REF = 5, +}; + +struct software_node; + +struct software_node_ref_args { + const struct software_node *node; + unsigned int nargs; + u64 args[16]; +}; + +struct property_entry; + +struct software_node { + const char *name; + const struct software_node *parent; + const struct property_entry *properties; +}; + +struct property_entry { + const char *name; + size_t length; + bool is_inline; + enum dev_prop_type type; + union { + const void *pointer; + union { + u8 u8_data[8]; + u16 u16_data[4]; + u32 u32_data[2]; + u64 u64_data[1]; + const char *str[1]; + } value; + }; +}; + +typedef u64 acpi_io_address; + +typedef u64 acpi_physical_address; + +typedef u32 acpi_status; + +typedef u32 acpi_object_type; + +typedef u8 acpi_adr_space_type; + +union acpi_object { + acpi_object_type type; + struct { + acpi_object_type type; + u64 value; + } integer; + struct { + acpi_object_type type; + u32 length; + char *pointer; + } string; + struct { + acpi_object_type type; + u32 length; + u8 *pointer; + } buffer; + struct { + acpi_object_type type; + u32 count; + union acpi_object *elements; + } package; + struct { + acpi_object_type type; + acpi_object_type actual_type; + acpi_handle handle; + } reference; + struct { + acpi_object_type type; + u32 proc_id; + acpi_io_address pblk_address; + u32 pblk_length; + } processor; + struct { + acpi_object_type type; + u32 system_level; + u32 resource_order; + } power_resource; +}; + +typedef acpi_status (*acpi_adr_space_handler)(u32, acpi_physical_address, u32, u64 *, void *, void *); + +typedef acpi_status (*acpi_adr_space_setup)(acpi_handle, u32, void *, void **); + +struct acpi_hotplug_profile { + struct kobject kobj; + int (*scan_dependent)(struct acpi_device *); + void (*notify_online)(struct acpi_device *); + bool enabled: 1; + bool demand_offline: 1; +}; + +struct acpi_device_status { + u32 present: 1; + u32 enabled: 1; + u32 show_in_ui: 1; + u32 functional: 1; + u32 battery_present: 1; + u32 reserved: 27; +}; + +struct acpi_device_flags { + u32 dynamic_status: 1; + u32 removable: 1; + u32 ejectable: 1; + u32 power_manageable: 1; + u32 match_driver: 1; + u32 initialized: 1; + u32 visited: 1; + u32 hotplug_notify: 1; + u32 is_dock_station: 1; + u32 of_compatible_ok: 1; + u32 coherent_dma: 1; + u32 cca_seen: 1; + u32 enumeration_by_parent: 1; + u32 honor_deps: 1; + u32 reserved: 18; +}; + +typedef char acpi_bus_id[8]; + +struct acpi_pnp_type { + u32 hardware_id: 1; + u32 bus_address: 1; + u32 platform_id: 1; + u32 backlight: 1; + u32 reserved: 28; +}; + +typedef u64 acpi_bus_address; + +typedef char acpi_device_name[40]; + +typedef char acpi_device_class[20]; + +struct acpi_device_pnp { + acpi_bus_id bus_id; + int instance_no; + struct acpi_pnp_type type; + acpi_bus_address bus_address; + char *unique_id; + struct list_head ids; + acpi_device_name device_name; + acpi_device_class device_class; +}; + +struct acpi_device_power_flags { + u32 explicit_get: 1; + u32 power_resources: 1; + u32 inrush_current: 1; + u32 power_removed: 1; + u32 ignore_parent: 1; + u32 dsw_present: 1; + u32 reserved: 26; +}; + +struct acpi_device_power_state { + struct list_head resources; + struct { + u8 valid: 1; + u8 explicit_set: 1; + u8 reserved: 6; + } flags; + int power; + int latency; +}; + +struct acpi_device_power { + int state; + struct acpi_device_power_flags flags; + struct acpi_device_power_state states[5]; + u8 state_for_enumeration; +}; + +struct acpi_device_wakeup_flags { + u8 valid: 1; + u8 notifier_present: 1; +}; + +struct acpi_device_wakeup_context { + void (*func)(struct acpi_device_wakeup_context *); + struct device *dev; +}; + +struct acpi_device_wakeup { + acpi_handle gpe_device; + u64 gpe_number; + u64 sleep_state; + struct list_head resources; + struct acpi_device_wakeup_flags flags; + struct acpi_device_wakeup_context context; + struct wakeup_source *ws; + int prepare_count; + int enable_count; +}; + +struct acpi_device_perf_flags { + u8 reserved: 8; +}; + +struct acpi_device_perf_state; + +struct acpi_device_perf { + int state; + struct acpi_device_perf_flags flags; + int state_count; + struct acpi_device_perf_state *states; +}; + +struct acpi_device_dir { + struct proc_dir_entry *entry; +}; + +struct acpi_device_data { + const union acpi_object *pointer; + struct list_head properties; + const union acpi_object *of_compatible; + struct list_head subnodes; +}; + +struct acpi_scan_handler; + +struct acpi_hotplug_context; + +struct acpi_device_software_nodes; + +struct acpi_gpio_mapping; + +struct acpi_device { + u32 pld_crc; + int device_type; + acpi_handle handle; + struct fwnode_handle fwnode; + struct list_head wakeup_list; + struct list_head del_list; + struct acpi_device_status status; + struct acpi_device_flags flags; + struct acpi_device_pnp pnp; + struct acpi_device_power power; + struct acpi_device_wakeup wakeup; + struct acpi_device_perf performance; + struct acpi_device_dir dir; + struct acpi_device_data data; + struct acpi_scan_handler *handler; + struct acpi_hotplug_context *hp; + struct acpi_device_software_nodes *swnodes; + const struct acpi_gpio_mapping *driver_gpios; + void *driver_data; + struct device dev; + unsigned int physical_node_count; + unsigned int dep_unmet; + struct list_head physical_node_list; + struct mutex physical_node_lock; + void (*remove)(struct acpi_device *); +}; + +struct acpi_scan_handler { + struct list_head list_node; + const struct acpi_device_id *ids; + bool (*match)(const char *, const struct acpi_device_id **); + int (*attach)(struct acpi_device *, const struct acpi_device_id *); + void (*detach)(struct acpi_device *); + void (*post_eject)(struct acpi_device *); + void (*bind)(struct device *); + void (*unbind)(struct device *); + struct acpi_hotplug_profile hotplug; +}; + +typedef int (*acpi_hp_notify)(struct acpi_device *, u32); + +typedef void (*acpi_hp_uevent)(struct acpi_device *, u32); + +typedef void (*acpi_hp_fixup)(struct acpi_device *); + +struct acpi_hotplug_context { + struct acpi_device *self; + acpi_hp_notify notify; + acpi_hp_uevent uevent; + acpi_hp_fixup fixup; +}; + +struct acpi_device_perf_state { + struct { + u8 valid: 1; + u8 reserved: 7; + } flags; + u8 power; + u8 performance; + int latency; +}; + +struct acpi_device_software_node_port { + char port_name[9]; + u32 data_lanes[8]; + u32 lane_polarities[9]; + u64 link_frequencies[8]; + unsigned int port_nr; + bool crs_csi2_local; + struct property_entry port_props[2]; + struct property_entry ep_props[8]; + struct software_node_ref_args remote_ep[1]; +}; + +struct acpi_device_software_nodes { + struct property_entry dev_props[6]; + struct software_node *nodes; + const struct software_node **nodeptrs; + struct acpi_device_software_node_port *ports; + unsigned int num_ports; +}; + +struct acpi_gpio_params; + +struct acpi_gpio_mapping { + const char *name; + const struct acpi_gpio_params *data; + unsigned int size; + unsigned int quirks; +}; + +struct pingroup { + const char *name; + const unsigned int *pins; + size_t npins; +}; + +struct gpio_chip; + +struct pinctrl_gpio_range { + struct list_head node; + const char *name; + unsigned int id; + unsigned int base; + unsigned int pin_base; + unsigned int npins; + const unsigned int *pins; + struct gpio_chip *gc; +}; + +union gpio_irq_fwspec; + +struct gpio_irq_chip { + struct irq_chip *chip; + struct irq_domain *domain; + struct fwnode_handle *fwnode; + struct irq_domain *parent_domain; + int (*child_to_parent_hwirq)(struct gpio_chip *, unsigned int, unsigned int, unsigned int *, unsigned int *); + int (*populate_parent_alloc_arg)(struct gpio_chip *, union gpio_irq_fwspec *, unsigned int, unsigned int); + unsigned int (*child_offset_to_irq)(struct gpio_chip *, unsigned int); + struct irq_domain_ops child_irq_domain_ops; + irq_flow_handler_t handler; + unsigned int default_type; + struct lock_class_key *lock_key; + struct lock_class_key *request_key; + irq_flow_handler_t parent_handler; + union { + void *parent_handler_data; + void **parent_handler_data_array; + }; + unsigned int num_parents; + unsigned int *parents; + unsigned int *map; + bool threaded; + bool per_parent_data; + bool initialized; + bool domain_is_allocated_externally; + int (*init_hw)(struct gpio_chip *); + void (*init_valid_mask)(struct gpio_chip *, long unsigned int *, unsigned int); + long unsigned int *valid_mask; + unsigned int first; + void (*irq_enable)(struct irq_data *); + void (*irq_disable)(struct irq_data *); + void (*irq_unmask)(struct irq_data *); + void (*irq_mask)(struct irq_data *); +}; + +struct gpio_device; + +struct gpio_chip { + const char *label; + struct gpio_device *gpiodev; + struct device *parent; + struct fwnode_handle *fwnode; + struct module *owner; + int (*request)(struct gpio_chip *, unsigned int); + void (*free)(struct gpio_chip *, unsigned int); + int (*get_direction)(struct gpio_chip *, unsigned int); + int (*direction_input)(struct gpio_chip *, unsigned int); + int (*direction_output)(struct gpio_chip *, unsigned int, int); + int (*get)(struct gpio_chip *, unsigned int); + int (*get_multiple)(struct gpio_chip *, long unsigned int *, long unsigned int *); + int (*set)(struct gpio_chip *, unsigned int, int); + int (*set_multiple)(struct gpio_chip *, long unsigned int *, long unsigned int *); + int (*set_config)(struct gpio_chip *, unsigned int, long unsigned int); + int (*to_irq)(struct gpio_chip *, unsigned int); + void (*dbg_show)(struct seq_file *, struct gpio_chip *); + int (*init_valid_mask)(struct gpio_chip *, long unsigned int *, unsigned int); + int (*add_pin_ranges)(struct gpio_chip *); + int (*en_hw_timestamp)(struct gpio_chip *, u32, long unsigned int); + int (*dis_hw_timestamp)(struct gpio_chip *, u32, long unsigned int); + int base; + u16 ngpio; + u16 offset; + const char * const *names; + bool can_sleep; + long unsigned int (*read_reg)(void *); + void (*write_reg)(void *, long unsigned int); + bool be_bits; + void *reg_dat; + void *reg_set; + void *reg_clr; + void *reg_dir_out; + void *reg_dir_in; + bool bgpio_dir_unreadable; + bool bgpio_pinctrl; + int bgpio_bits; + raw_spinlock_t bgpio_lock; + long unsigned int bgpio_data; + long unsigned int bgpio_dir; + struct gpio_irq_chip irq; +}; + +struct pinfunction { + const char *name; + const char * const *groups; + size_t ngroups; +}; + +union gpio_irq_fwspec { + struct irq_fwspec fwspec; + msi_alloc_info_t msiinfo; +}; + +struct platform_driver { + int (*probe)(struct platform_device *); + void (*remove)(struct platform_device *); + void (*shutdown)(struct platform_device *); + int (*suspend)(struct platform_device *, pm_message_t); + int (*resume)(struct platform_device *); + struct device_driver driver; + const struct platform_device_id *id_table; + bool prevent_deferred_probe; + bool driver_managed_dma; +}; + +struct intel_pingroup { + struct pingroup grp; + short unsigned int mode; + const unsigned int *modes; +}; + +struct intel_function { + struct pinfunction func; +}; + +struct intel_padgroup { + unsigned int reg_num; + unsigned int base; + unsigned int size; + int gpio_base; + unsigned int padown_num; +}; + +struct intel_community { + unsigned int barno; + unsigned int padown_offset; + unsigned int padcfglock_offset; + unsigned int hostown_offset; + unsigned int is_offset; + unsigned int ie_offset; + unsigned int features; + unsigned int pin_base; + size_t npins; + unsigned int gpp_size; + unsigned int gpp_num_padown_regs; + const struct intel_padgroup *gpps; + size_t ngpps; + const unsigned int *pad_map; + short unsigned int nirqs; + short unsigned int acpi_space_id; + void *regs; + void *pad_regs; +}; + +struct intel_pinctrl_soc_data { + const char *uid; + const struct pinctrl_pin_desc *pins; + size_t npins; + const struct intel_pingroup *groups; + size_t ngroups; + const struct intel_function *functions; + size_t nfunctions; + const struct intel_community *communities; + size_t ncommunities; +}; + +struct intel_pad_context; + +struct intel_community_context; + +struct intel_pinctrl_context { + struct intel_pad_context *pads; + struct intel_community_context *communities; +}; + +struct intel_pad_context { + u32 padctrl0; + u32 padctrl1; +}; + +struct intel_community_context { + unsigned int intr_lines[16]; + u32 saved_intmask; +}; + +struct intel_pinctrl { + struct device *dev; + raw_spinlock_t lock; + struct pinctrl_desc pctldesc; + struct pinctrl_dev *pctldev; + struct gpio_chip chip; + const struct intel_pinctrl_soc_data *soc; + struct intel_community *communities; + size_t ncommunities; + struct intel_pinctrl_context context; + int irq; +}; + +struct gpio_array; + +struct gpio_desc; + +struct gpio_descs { + struct gpio_array *info; + unsigned int ndescs; + struct gpio_desc *desc[0]; +}; + +struct gpio_array { + struct gpio_desc **desc; + unsigned int size; + struct gpio_device *gdev; + long unsigned int *get_mask; + long unsigned int *set_mask; + long unsigned int invert_mask[0]; +}; + +struct gpio_desc_label; + +struct gpio_desc { + struct gpio_device *gdev; + long unsigned int flags; + struct gpio_desc_label *label; + const char *name; + unsigned int debounce_period_us; +}; + +enum gpiod_flags { + GPIOD_ASIS = 0, + GPIOD_IN = 1, + GPIOD_OUT_LOW = 3, + GPIOD_OUT_HIGH = 7, + GPIOD_OUT_LOW_OPEN_DRAIN = 11, + GPIOD_OUT_HIGH_OPEN_DRAIN = 15, +}; + +struct gpio_device { + struct device dev; + struct cdev chrdev; + int id; + struct module *owner; + struct gpio_chip *chip; + struct gpio_desc *descs; + long unsigned int *valid_mask; + struct srcu_struct desc_srcu; + unsigned int base; + u16 ngpio; + bool can_sleep; + const char *label; + void *data; + struct list_head list; + struct raw_notifier_head line_state_notifier; + rwlock_t line_state_lock; + struct workqueue_struct *line_state_wq; + struct blocking_notifier_head device_notifier; + struct srcu_struct srcu; + struct list_head pin_ranges; +}; + +struct gpio_desc_label { + struct callback_head rh; + char str[0]; +}; + +typedef struct { + rwlock_t *lock; + long unsigned int flags; +} class_write_lock_irqsave_t; + +typedef struct { + struct srcu_struct *lock; + int idx; +} class_srcu_t; + +enum hte_edge { + HTE_EDGE_NO_SETUP = 1, + HTE_RISING_EDGE_TS = 2, + HTE_FALLING_EDGE_TS = 4, +}; + +enum hte_return { + HTE_CB_HANDLED = 0, + HTE_RUN_SECOND_CB = 1, +}; + +struct hte_ts_data { + u64 tsc; + u64 seq; + int raw_level; +}; + +typedef enum hte_return (*hte_ts_cb_t)(struct hte_ts_data *, void *); + +typedef enum hte_return (*hte_ts_sec_cb_t)(void *); + +struct hte_line_attr { + u32 line_id; + void *line_data; + long unsigned int edge_flags; + const char *name; +}; + +struct hte_ts_desc { + struct hte_line_attr attr; + void *hte_data; +}; + +struct gpiochip_info { + char name[32]; + char label[32]; + __u32 lines; +}; + +enum gpio_v2_line_flag { + GPIO_V2_LINE_FLAG_USED = 1, + GPIO_V2_LINE_FLAG_ACTIVE_LOW = 2, + GPIO_V2_LINE_FLAG_INPUT = 4, + GPIO_V2_LINE_FLAG_OUTPUT = 8, + GPIO_V2_LINE_FLAG_EDGE_RISING = 16, + GPIO_V2_LINE_FLAG_EDGE_FALLING = 32, + GPIO_V2_LINE_FLAG_OPEN_DRAIN = 64, + GPIO_V2_LINE_FLAG_OPEN_SOURCE = 128, + GPIO_V2_LINE_FLAG_BIAS_PULL_UP = 256, + GPIO_V2_LINE_FLAG_BIAS_PULL_DOWN = 512, + GPIO_V2_LINE_FLAG_BIAS_DISABLED = 1024, + GPIO_V2_LINE_FLAG_EVENT_CLOCK_REALTIME = 2048, + GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE = 4096, +}; + +struct gpio_v2_line_values { + __u64 bits; + __u64 mask; +}; + +enum gpio_v2_line_attr_id { + GPIO_V2_LINE_ATTR_ID_FLAGS = 1, + GPIO_V2_LINE_ATTR_ID_OUTPUT_VALUES = 2, + GPIO_V2_LINE_ATTR_ID_DEBOUNCE = 3, +}; + +struct gpio_v2_line_attribute { + __u32 id; + __u32 padding; + union { + __u64 flags; + __u64 values; + __u32 debounce_period_us; + }; +}; + +struct gpio_v2_line_config_attribute { + struct gpio_v2_line_attribute attr; + __u64 mask; +}; + +struct gpio_v2_line_config { + __u64 flags; + __u32 num_attrs; + __u32 padding[5]; + struct gpio_v2_line_config_attribute attrs[10]; +}; + +struct gpio_v2_line_request { + __u32 offsets[64]; + char consumer[32]; + struct gpio_v2_line_config config; + __u32 num_lines; + __u32 event_buffer_size; + __u32 padding[5]; + __s32 fd; +}; + +struct gpio_v2_line_info { + char name[32]; + char consumer[32]; + __u32 offset; + __u32 num_attrs; + __u64 flags; + struct gpio_v2_line_attribute attrs[10]; + __u32 padding[4]; +}; + +enum gpio_v2_line_changed_type { + GPIO_V2_LINE_CHANGED_REQUESTED = 1, + GPIO_V2_LINE_CHANGED_RELEASED = 2, + GPIO_V2_LINE_CHANGED_CONFIG = 3, +}; + +struct gpio_v2_line_info_changed { + struct gpio_v2_line_info info; + __u64 timestamp_ns; + __u32 event_type; + __u32 padding[5]; +}; + +enum gpio_v2_line_event_id { + GPIO_V2_LINE_EVENT_RISING_EDGE = 1, + GPIO_V2_LINE_EVENT_FALLING_EDGE = 2, +}; + +struct gpio_v2_line_event { + __u64 timestamp_ns; + __u32 id; + __u32 offset; + __u32 seqno; + __u32 line_seqno; + __u32 padding[6]; +}; + +struct gpioline_info { + __u32 line_offset; + __u32 flags; + char name[32]; + char consumer[32]; +}; + +struct gpioline_info_changed { + struct gpioline_info info; + __u64 timestamp; + __u32 event_type; + __u32 padding[5]; +}; + +struct gpiohandle_request { + __u32 lineoffsets[64]; + __u32 flags; + __u8 default_values[64]; + char consumer_label[32]; + __u32 lines; + int fd; +}; + +struct gpiohandle_config { + __u32 flags; + __u8 default_values[64]; + __u32 padding[4]; +}; + +struct gpiohandle_data { + __u8 values[64]; +}; + +struct gpioevent_request { + __u32 lineoffset; + __u32 handleflags; + __u32 eventflags; + char consumer_label[32]; + int fd; +}; + +struct gpioevent_data { + __u64 timestamp; + __u32 id; +}; + +struct gpio_chip_guard { + struct gpio_device *gdev; + struct gpio_chip *gc; + int idx; +}; + +typedef struct gpio_chip_guard class_gpio_chip_guard_t; + +struct linehandle_state { + struct gpio_device *gdev; + const char *label; + struct gpio_desc *descs[64]; + u32 num_descs; +}; + +struct linereq; + +struct line { + struct gpio_desc *desc; + struct linereq *req; + unsigned int irq; + u64 edflags; + u64 timestamp_ns; + u32 req_seqno; + u32 line_seqno; + struct delayed_work work; + unsigned int sw_debounced; + unsigned int level; + struct hte_ts_desc hdesc; + int raw_level; + u32 total_discard_seq; + u32 last_seqno; +}; + +struct linereq { + struct gpio_device *gdev; + const char *label; + u32 num_lines; + wait_queue_head_t wait; + struct notifier_block device_unregistered_nb; + u32 event_buffer_size; + struct { + union { + struct __kfifo kfifo; + struct gpio_v2_line_event *type; + const struct gpio_v2_line_event *const_type; + char (*rectype)[0]; + struct gpio_v2_line_event *ptr; + const struct gpio_v2_line_event *ptr_const; + }; + struct gpio_v2_line_event buf[0]; + } events; + atomic_t seqno; + struct mutex config_mutex; + struct line lines[0]; +}; + +struct lineevent_state { + struct gpio_device *gdev; + const char *label; + struct gpio_desc *desc; + u32 eflags; + int irq; + wait_queue_head_t wait; + struct notifier_block device_unregistered_nb; + struct { + union { + struct __kfifo kfifo; + struct gpioevent_data *type; + const struct gpioevent_data *const_type; + char (*rectype)[0]; + struct gpioevent_data *ptr; + const struct gpioevent_data *ptr_const; + }; + struct gpioevent_data buf[16]; + } events; + u64 timestamp; +}; + +struct gpio_chardev_data { + struct gpio_device *gdev; + wait_queue_head_t wait; + struct { + union { + struct __kfifo kfifo; + struct gpio_v2_line_info_changed *type; + const struct gpio_v2_line_info_changed *const_type; + char (*rectype)[0]; + struct gpio_v2_line_info_changed *ptr; + const struct gpio_v2_line_info_changed *ptr_const; + }; + struct gpio_v2_line_info_changed buf[32]; + } events; + struct notifier_block lineinfo_changed_nb; + struct notifier_block device_unregistered_nb; + long unsigned int *watched_lines; + atomic_t watch_abi_version; + struct file *fp; +}; + +struct lineinfo_changed_ctx { + struct work_struct work; + struct gpio_v2_line_info_changed chg; + struct gpio_device *gdev; + struct gpio_chardev_data *cdev; +}; + +typedef u64 acpi_size; + +typedef char *acpi_string; + +struct acpi_object_list { + u32 count; + union acpi_object *pointer; +}; + +struct acpi_buffer { + acpi_size length; + void *pointer; +}; + +typedef void (*acpi_object_handler)(acpi_handle, void *); + +struct acpi_connection_info { + u8 *connection; + u16 length; + u8 access_length; +}; + +struct acpi_resource_irq { + u8 descriptor_length; + u8 triggering; + u8 polarity; + u8 shareable; + u8 wake_capable; + u8 interrupt_count; + union { + u8 interrupt; + struct { + struct {} __Empty_interrupts; + u8 interrupts[0]; + }; + }; +}; + +struct acpi_resource_dma { + u8 type; + u8 bus_master; + u8 transfer; + u8 channel_count; + union { + u8 channel; + struct { + struct {} __Empty_channels; + u8 channels[0]; + }; + }; +}; + +struct acpi_resource_start_dependent { + u8 descriptor_length; + u8 compatibility_priority; + u8 performance_robustness; +}; + +struct acpi_resource_io { + u8 io_decode; + u8 alignment; + u8 address_length; + u16 minimum; + u16 maximum; +} __attribute__((packed)); + +struct acpi_resource_fixed_io { + u16 address; + u8 address_length; +} __attribute__((packed)); + +struct acpi_resource_fixed_dma { + u16 request_lines; + u16 channels; + u8 width; +} __attribute__((packed)); + +struct acpi_resource_vendor { + u16 byte_length; + u8 byte_data[0]; +}; + +struct acpi_resource_vendor_typed { + u16 byte_length; + u8 uuid_subtype; + u8 uuid[16]; + u8 byte_data[0]; +} __attribute__((packed)); + +struct acpi_resource_end_tag { + u8 checksum; +}; + +struct acpi_resource_memory24 { + u8 write_protect; + u16 minimum; + u16 maximum; + u16 alignment; + u16 address_length; +} __attribute__((packed)); + +struct acpi_resource_memory32 { + u8 write_protect; + u32 minimum; + u32 maximum; + u32 alignment; + u32 address_length; +} __attribute__((packed)); + +struct acpi_resource_fixed_memory32 { + u8 write_protect; + u32 address; + u32 address_length; +} __attribute__((packed)); + +struct acpi_memory_attribute { + u8 write_protect; + u8 caching; + u8 range_type; + u8 translation; +}; + +struct acpi_io_attribute { + u8 range_type; + u8 translation; + u8 translation_type; + u8 reserved1; +}; + +union acpi_resource_attribute { + struct acpi_memory_attribute mem; + struct acpi_io_attribute io; + u8 type_specific; +}; + +struct acpi_resource_label { + u16 string_length; + char *string_ptr; +} __attribute__((packed)); + +struct acpi_resource_source { + u8 index; + u16 string_length; + char *string_ptr; +} __attribute__((packed)); + +struct acpi_address16_attribute { + u16 granularity; + u16 minimum; + u16 maximum; + u16 translation_offset; + u16 address_length; +}; + +struct acpi_address32_attribute { + u32 granularity; + u32 minimum; + u32 maximum; + u32 translation_offset; + u32 address_length; +}; + +struct acpi_address64_attribute { + u64 granularity; + u64 minimum; + u64 maximum; + u64 translation_offset; + u64 address_length; +}; + +struct acpi_resource_address { + u8 resource_type; + u8 producer_consumer; + u8 decode; + u8 min_address_fixed; + u8 max_address_fixed; + union acpi_resource_attribute info; +}; + +struct acpi_resource_address16 { + u8 resource_type; + u8 producer_consumer; + u8 decode; + u8 min_address_fixed; + u8 max_address_fixed; + union acpi_resource_attribute info; + struct acpi_address16_attribute address; + struct acpi_resource_source resource_source; +} __attribute__((packed)); + +struct acpi_resource_address32 { + u8 resource_type; + u8 producer_consumer; + u8 decode; + u8 min_address_fixed; + u8 max_address_fixed; + union acpi_resource_attribute info; + struct acpi_address32_attribute address; + struct acpi_resource_source resource_source; +} __attribute__((packed)); + +struct acpi_resource_address64 { + u8 resource_type; + u8 producer_consumer; + u8 decode; + u8 min_address_fixed; + u8 max_address_fixed; + union acpi_resource_attribute info; + struct acpi_address64_attribute address; + struct acpi_resource_source resource_source; +} __attribute__((packed)); + +struct acpi_resource_extended_address64 { + u8 resource_type; + u8 producer_consumer; + u8 decode; + u8 min_address_fixed; + u8 max_address_fixed; + union acpi_resource_attribute info; + u8 revision_ID; + struct acpi_address64_attribute address; + u64 type_specific; +} __attribute__((packed)); + +struct acpi_resource_extended_irq { + u8 producer_consumer; + u8 triggering; + u8 polarity; + u8 shareable; + u8 wake_capable; + u8 interrupt_count; + struct acpi_resource_source resource_source; + union { + u32 interrupt; + struct { + struct {} __Empty_interrupts; + u32 interrupts[0]; + }; + }; +} __attribute__((packed)); + +struct acpi_resource_generic_register { + u8 space_id; + u8 bit_width; + u8 bit_offset; + u8 access_size; + u64 address; +} __attribute__((packed)); + +struct acpi_resource_gpio { + u8 revision_id; + u8 connection_type; + u8 producer_consumer; + u8 pin_config; + u8 shareable; + u8 wake_capable; + u8 io_restriction; + u8 triggering; + u8 polarity; + u16 drive_strength; + u16 debounce_timeout; + u16 pin_table_length; + u16 vendor_length; + struct acpi_resource_source resource_source; + u16 *pin_table; + u8 *vendor_data; +} __attribute__((packed)); + +struct acpi_resource_common_serialbus { + u8 revision_id; + u8 type; + u8 producer_consumer; + u8 slave_mode; + u8 connection_sharing; + u8 type_revision_id; + u16 type_data_length; + u16 vendor_length; + struct acpi_resource_source resource_source; + u8 *vendor_data; +} __attribute__((packed)); + +struct acpi_resource_i2c_serialbus { + u8 revision_id; + u8 type; + u8 producer_consumer; + u8 slave_mode; + u8 connection_sharing; + u8 type_revision_id; + u16 type_data_length; + u16 vendor_length; + struct acpi_resource_source resource_source; + u8 *vendor_data; + u8 access_mode; + u16 slave_address; + u32 connection_speed; +} __attribute__((packed)); + +struct acpi_resource_spi_serialbus { + u8 revision_id; + u8 type; + u8 producer_consumer; + u8 slave_mode; + u8 connection_sharing; + u8 type_revision_id; + u16 type_data_length; + u16 vendor_length; + struct acpi_resource_source resource_source; + u8 *vendor_data; + u8 wire_mode; + u8 device_polarity; + u8 data_bit_length; + u8 clock_phase; + u8 clock_polarity; + u16 device_selection; + u32 connection_speed; +} __attribute__((packed)); + +struct acpi_resource_uart_serialbus { + u8 revision_id; + u8 type; + u8 producer_consumer; + u8 slave_mode; + u8 connection_sharing; + u8 type_revision_id; + u16 type_data_length; + u16 vendor_length; + struct acpi_resource_source resource_source; + u8 *vendor_data; + u8 endian; + u8 data_bits; + u8 stop_bits; + u8 flow_control; + u8 parity; + u8 lines_enabled; + u16 rx_fifo_size; + u16 tx_fifo_size; + u32 default_baud_rate; +} __attribute__((packed)); + +struct acpi_resource_csi2_serialbus { + u8 revision_id; + u8 type; + u8 producer_consumer; + u8 slave_mode; + u8 connection_sharing; + u8 type_revision_id; + u16 type_data_length; + u16 vendor_length; + struct acpi_resource_source resource_source; + u8 *vendor_data; + u8 local_port_instance; + u8 phy_type; +} __attribute__((packed)); + +struct acpi_resource_pin_function { + u8 revision_id; + u8 pin_config; + u8 shareable; + u16 function_number; + u16 pin_table_length; + u16 vendor_length; + struct acpi_resource_source resource_source; + u16 *pin_table; + u8 *vendor_data; +} __attribute__((packed)); + +struct acpi_resource_pin_config { + u8 revision_id; + u8 producer_consumer; + u8 shareable; + u8 pin_config_type; + u32 pin_config_value; + u16 pin_table_length; + u16 vendor_length; + struct acpi_resource_source resource_source; + u16 *pin_table; + u8 *vendor_data; +} __attribute__((packed)); + +struct acpi_resource_clock_input { + u8 revision_id; + u8 mode; + u8 scale; + u16 frequency_divisor; + u32 frequency_numerator; + struct acpi_resource_source resource_source; +} __attribute__((packed)); + +struct acpi_resource_pin_group { + u8 revision_id; + u8 producer_consumer; + u16 pin_table_length; + u16 vendor_length; + u16 *pin_table; + struct acpi_resource_label resource_label; + u8 *vendor_data; +} __attribute__((packed)); + +struct acpi_resource_pin_group_function { + u8 revision_id; + u8 producer_consumer; + u8 shareable; + u16 function_number; + u16 vendor_length; + struct acpi_resource_source resource_source; + struct acpi_resource_label resource_source_label; + u8 *vendor_data; +} __attribute__((packed)); + +struct acpi_resource_pin_group_config { + u8 revision_id; + u8 producer_consumer; + u8 shareable; + u8 pin_config_type; + u32 pin_config_value; + u16 vendor_length; + struct acpi_resource_source resource_source; + struct acpi_resource_label resource_source_label; + u8 *vendor_data; +} __attribute__((packed)); + +union acpi_resource_data { + struct acpi_resource_irq irq; + struct acpi_resource_dma dma; + struct acpi_resource_start_dependent start_dpf; + struct acpi_resource_io io; + struct acpi_resource_fixed_io fixed_io; + struct acpi_resource_fixed_dma fixed_dma; + struct acpi_resource_vendor vendor; + struct acpi_resource_vendor_typed vendor_typed; + struct acpi_resource_end_tag end_tag; + struct acpi_resource_memory24 memory24; + struct acpi_resource_memory32 memory32; + struct acpi_resource_fixed_memory32 fixed_memory32; + struct acpi_resource_address16 address16; + struct acpi_resource_address32 address32; + struct acpi_resource_address64 address64; + struct acpi_resource_extended_address64 ext_address64; + struct acpi_resource_extended_irq extended_irq; + struct acpi_resource_generic_register generic_reg; + struct acpi_resource_gpio gpio; + struct acpi_resource_i2c_serialbus i2c_serial_bus; + struct acpi_resource_spi_serialbus spi_serial_bus; + struct acpi_resource_uart_serialbus uart_serial_bus; + struct acpi_resource_csi2_serialbus csi2_serial_bus; + struct acpi_resource_common_serialbus common_serial_bus; + struct acpi_resource_pin_function pin_function; + struct acpi_resource_pin_config pin_config; + struct acpi_resource_pin_group pin_group; + struct acpi_resource_pin_group_function pin_group_function; + struct acpi_resource_pin_group_config pin_group_config; + struct acpi_resource_clock_input clock_input; + struct acpi_resource_address address; +}; + +struct acpi_resource { + u32 type; + u32 length; + union acpi_resource_data data; +}; + +typedef acpi_status (*acpi_walk_resource_callback)(struct acpi_resource *, void *); + +struct acpi_gpio_params { + unsigned int crs_entry_index; + short unsigned int line_index; + bool active_low; +}; + +enum gpio_lookup_flags { + GPIO_ACTIVE_HIGH = 0, + GPIO_ACTIVE_LOW = 1, + GPIO_OPEN_DRAIN = 2, + GPIO_OPEN_SOURCE = 4, + GPIO_PERSISTENT = 0, + GPIO_TRANSITORY = 8, + GPIO_PULL_UP = 16, + GPIO_PULL_DOWN = 32, + GPIO_PULL_DISABLE = 64, + GPIO_LOOKUP_FLAGS_DEFAULT = 0, +}; + +enum acpi_gpio_ignore_list { + ACPI_GPIO_IGNORE_WAKE = 0, + ACPI_GPIO_IGNORE_INTERRUPT = 1, +}; + +struct acpi_gpio_event { + struct list_head node; + acpi_handle handle; + irq_handler_t handler; + unsigned int pin; + unsigned int irq; + long unsigned int irqflags; + bool irq_is_wake; + bool irq_requested; + struct gpio_desc *desc; +}; + +struct acpi_gpio_connection { + struct list_head node; + unsigned int pin; + struct gpio_desc *desc; +}; + +struct acpi_gpio_chip { + struct acpi_connection_info conn_info; + struct list_head conns; + struct mutex conn_lock; + struct gpio_chip *chip; + struct list_head events; + struct list_head deferred_req_irqs_list_entry; +}; + +struct acpi_gpio_info { + struct acpi_device *adev; + enum gpiod_flags flags; + bool gpioint; + bool wake_capable; + int pin_config; + int polarity; + int triggering; + unsigned int debounce; + unsigned int quirks; +}; + +struct acpi_gpio_lookup { + struct acpi_gpio_params params; + struct acpi_gpio_info *info; + struct gpio_desc *desc; + int n; +}; + +enum { + TPS6586X_INT_PLDO_0 = 0, + TPS6586X_INT_PLDO_1 = 1, + TPS6586X_INT_PLDO_2 = 2, + TPS6586X_INT_PLDO_3 = 3, + TPS6586X_INT_PLDO_4 = 4, + TPS6586X_INT_PLDO_5 = 5, + TPS6586X_INT_PLDO_6 = 6, + TPS6586X_INT_PLDO_7 = 7, + TPS6586X_INT_COMP_DET = 8, + TPS6586X_INT_ADC = 9, + TPS6586X_INT_PLDO_8 = 10, + TPS6586X_INT_PLDO_9 = 11, + TPS6586X_INT_PSM_0 = 12, + TPS6586X_INT_PSM_1 = 13, + TPS6586X_INT_PSM_2 = 14, + TPS6586X_INT_PSM_3 = 15, + TPS6586X_INT_RTC_ALM1 = 16, + TPS6586X_INT_ACUSB_OVP = 17, + TPS6586X_INT_USB_DET = 18, + TPS6586X_INT_AC_DET = 19, + TPS6586X_INT_BAT_DET = 20, + TPS6586X_INT_CHG_STAT = 21, + TPS6586X_INT_CHG_TEMP = 22, + TPS6586X_INT_PP = 23, + TPS6586X_INT_RESUME = 24, + TPS6586X_INT_LOW_SYS = 25, + TPS6586X_INT_RTC_ALM2 = 26, +}; + +struct tps6586x_subdev_info { + int id; + const char *name; + void *platform_data; + struct device_node *of_node; +}; + +struct regulator_init_data; + +struct tps6586x_platform_data { + int num_subdevs; + struct tps6586x_subdev_info *subdevs; + int gpio_base; + int irq_base; + bool pm_off; + struct regulator_init_data *reg_init_data[15]; +}; + +struct tps6586x_gpio { + struct gpio_chip gpio_chip; + struct device *parent; +}; + +struct pwm_lpss_boardinfo { + long unsigned int clk_rate; + unsigned int npwm; + long unsigned int base_unit_bits; + bool bypass; + bool other_devices_aml_touches_pwm_regs; +}; + +enum led_brightness { + LED_OFF = 0, + LED_ON = 1, + LED_HALF = 127, + LED_FULL = 255, +}; + +struct led_hw_trigger_type { + int dummy; +}; + +struct led_pattern; + +struct led_trigger; + +struct led_classdev { + const char *name; + unsigned int brightness; + unsigned int max_brightness; + unsigned int color; + int flags; + long unsigned int work_flags; + void (*brightness_set)(struct led_classdev *, enum led_brightness); + int (*brightness_set_blocking)(struct led_classdev *, enum led_brightness); + enum led_brightness (*brightness_get)(struct led_classdev *); + int (*blink_set)(struct led_classdev *, long unsigned int *, long unsigned int *); + int (*pattern_set)(struct led_classdev *, struct led_pattern *, u32, int); + int (*pattern_clear)(struct led_classdev *); + struct device *dev; + const struct attribute_group **groups; + struct list_head node; + const char *default_trigger; + long unsigned int blink_delay_on; + long unsigned int blink_delay_off; + struct timer_list blink_timer; + int blink_brightness; + int new_blink_brightness; + void (*flash_resume)(struct led_classdev *); + struct workqueue_struct *wq; + struct work_struct set_brightness_work; + int delayed_set_value; + long unsigned int delayed_delay_on; + long unsigned int delayed_delay_off; + struct rw_semaphore trigger_lock; + struct led_trigger *trigger; + struct list_head trig_list; + void *trigger_data; + bool activated; + struct led_hw_trigger_type *trigger_type; + const char *hw_control_trigger; + int (*hw_control_is_supported)(struct led_classdev *, long unsigned int); + int (*hw_control_set)(struct led_classdev *, long unsigned int); + int (*hw_control_get)(struct led_classdev *, long unsigned int *); + struct device * (*hw_control_get_device)(struct led_classdev *); + int brightness_hw_changed; + struct kernfs_node *brightness_hw_changed_kn; + struct mutex led_access; +}; + +struct led_pattern { + u32 delta_t; + int brightness; +}; + +struct led_trigger { + const char *name; + int (*activate)(struct led_classdev *); + void (*deactivate)(struct led_classdev *); + enum led_brightness brightness; + struct led_hw_trigger_type *trigger_type; + spinlock_t leddev_list_lock; + struct list_head led_cdevs; + struct list_head next_trig; + const struct attribute_group **groups; +}; + +typedef int (*device_match_t)(struct device *, const void *); + +struct hotplug_slot_ops; + +struct hotplug_slot { + const struct hotplug_slot_ops *ops; + struct pci_slot *pci_slot; + struct module *owner; + const char *mod_name; +}; + +enum { + PCI_STD_RESOURCES = 0, + PCI_STD_RESOURCE_END = 5, + PCI_ROM_RESOURCE = 6, + PCI_IOV_RESOURCES = 7, + PCI_IOV_RESOURCE_END = 12, + PCI_BRIDGE_RESOURCES = 13, + PCI_BRIDGE_RESOURCE_END = 16, + PCI_NUM_RESOURCES = 17, + DEVICE_COUNT_RESOURCE = 17, +}; + +enum { + pci_channel_io_normal = 1, + pci_channel_io_frozen = 2, + pci_channel_io_perm_failure = 3, +}; + +enum pci_dev_flags { + PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG = 1, + PCI_DEV_FLAGS_NO_D3 = 2, + PCI_DEV_FLAGS_ASSIGNED = 4, + PCI_DEV_FLAGS_ACS_ENABLED_QUIRK = 8, + PCI_DEV_FLAG_PCIE_BRIDGE_ALIAS = 32, + PCI_DEV_FLAGS_NO_BUS_RESET = 64, + PCI_DEV_FLAGS_NO_PM_RESET = 128, + PCI_DEV_FLAGS_VPD_REF_F0 = 256, + PCI_DEV_FLAGS_BRIDGE_XLATE_ROOT = 512, + PCI_DEV_FLAGS_NO_FLR_RESET = 1024, + PCI_DEV_FLAGS_NO_RELAXED_ORDERING = 2048, + PCI_DEV_FLAGS_HAS_MSI_MASKING = 4096, + PCI_DEV_FLAGS_MSIX_TOUCH_ENTRY_DATA_FIRST = 8192, + PCI_DEV_FLAGS_NO_RRS_SV = 16384, +}; + +enum pci_bus_flags { + PCI_BUS_FLAGS_NO_MSI = 1, + PCI_BUS_FLAGS_NO_MMRBC = 2, + PCI_BUS_FLAGS_NO_AERSID = 4, + PCI_BUS_FLAGS_NO_EXTCFG = 8, +}; + +enum pci_bus_speed { + PCI_SPEED_33MHz = 0, + PCI_SPEED_66MHz = 1, + PCI_SPEED_66MHz_PCIX = 2, + PCI_SPEED_100MHz_PCIX = 3, + PCI_SPEED_133MHz_PCIX = 4, + PCI_SPEED_66MHz_PCIX_ECC = 5, + PCI_SPEED_100MHz_PCIX_ECC = 6, + PCI_SPEED_133MHz_PCIX_ECC = 7, + PCI_SPEED_66MHz_PCIX_266 = 9, + PCI_SPEED_100MHz_PCIX_266 = 10, + PCI_SPEED_133MHz_PCIX_266 = 11, + AGP_UNKNOWN = 12, + AGP_1X = 13, + AGP_2X = 14, + AGP_4X = 15, + AGP_8X = 16, + PCI_SPEED_66MHz_PCIX_533 = 17, + PCI_SPEED_100MHz_PCIX_533 = 18, + PCI_SPEED_133MHz_PCIX_533 = 19, + PCIE_SPEED_2_5GT = 20, + PCIE_SPEED_5_0GT = 21, + PCIE_SPEED_8_0GT = 22, + PCIE_SPEED_16_0GT = 23, + PCIE_SPEED_32_0GT = 24, + PCIE_SPEED_64_0GT = 25, + PCI_SPEED_UNKNOWN = 255, +}; + +struct pci_sriov { + int pos; + int nres; + u32 cap; + u16 ctrl; + u16 total_VFs; + u16 initial_VFs; + u16 num_VFs; + u16 offset; + u16 stride; + u16 vf_device; + u32 pgsz; + u8 link; + u8 max_VF_buses; + u16 driver_max_VFs; + struct pci_dev *dev; + struct pci_dev *self; + u32 class; + u8 hdr_type; + u16 subsystem_vendor; + u16 subsystem_device; + resource_size_t barsz[6]; + u16 vf_rebar_cap; + bool drivers_autoprobe; +}; + +struct rcec_ea { + u8 nextbusn; + u8 lastbusn; + u32 bitmap; +}; + +struct pci_host_bridge { + struct device dev; + struct pci_bus *bus; + struct pci_ops *ops; + struct pci_ops *child_ops; + void *sysdata; + int busnr; + int domain_nr; + struct list_head windows; + struct list_head dma_ranges; + u8 (*swizzle_irq)(struct pci_dev *, u8 *); + int (*map_irq)(const struct pci_dev *, u8, u8); + void (*release_fn)(struct pci_host_bridge *); + int (*enable_device)(struct pci_host_bridge *, struct pci_dev *); + void (*disable_device)(struct pci_host_bridge *, struct pci_dev *); + void *release_data; + unsigned int ignore_reset_delay: 1; + unsigned int no_ext_tags: 1; + unsigned int no_inc_mrrs: 1; + unsigned int native_aer: 1; + unsigned int native_pcie_hotplug: 1; + unsigned int native_shpc_hotplug: 1; + unsigned int native_pme: 1; + unsigned int native_ltr: 1; + unsigned int native_dpc: 1; + unsigned int native_cxl_error: 1; + unsigned int preserve_config: 1; + unsigned int size_windows: 1; + unsigned int msi_domain: 1; + resource_size_t (*align_resource)(struct pci_dev *, const struct resource *, resource_size_t, resource_size_t, resource_size_t); + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long unsigned int private[0]; +}; + +typedef u64 pci_bus_addr_t; + +struct pci_bus_region { + pci_bus_addr_t start; + pci_bus_addr_t end; +}; + +enum { + PCI_REASSIGN_ALL_RSRC = 1, + PCI_REASSIGN_ALL_BUS = 2, + PCI_PROBE_ONLY = 4, + PCI_CAN_SKIP_ISA_ALIGN = 8, + PCI_ENABLE_PROC_DOMAINS = 16, + PCI_COMPAT_DOMAIN_0 = 32, + PCI_SCAN_ALL_PCIE_DEVS = 64, +}; + +enum pcie_bus_config_types { + PCIE_BUS_TUNE_OFF = 0, + PCIE_BUS_DEFAULT = 1, + PCIE_BUS_SAFE = 2, + PCIE_BUS_PERFORMANCE = 3, + PCIE_BUS_PEER2PEER = 4, +}; + +enum pci_fixup_pass { + pci_fixup_early = 0, + pci_fixup_header = 1, + pci_fixup_final = 2, + pci_fixup_enable = 3, + pci_fixup_resume = 4, + pci_fixup_suspend = 5, + pci_fixup_resume_early = 6, + pci_fixup_suspend_late = 7, +}; + +struct hotplug_slot_ops { + int (*enable_slot)(struct hotplug_slot *); + int (*disable_slot)(struct hotplug_slot *); + int (*set_attention_status)(struct hotplug_slot *, u8); + int (*hardware_test)(struct hotplug_slot *, u32); + int (*get_power_status)(struct hotplug_slot *, u8 *); + int (*get_attention_status)(struct hotplug_slot *, u8 *); + int (*get_latch_status)(struct hotplug_slot *, u8 *); + int (*get_adapter_status)(struct hotplug_slot *, u8 *); + int (*reset_slot)(struct hotplug_slot *, bool); +}; + +enum pci_bar_type { + pci_bar_unknown = 0, + pci_bar_io = 1, + pci_bar_mem32 = 2, + pci_bar_mem64 = 3, +}; + +enum equalization_preset_type { + EQ_PRESET_TYPE_8GTS = 0, + EQ_PRESET_TYPE_16GTS = 1, + EQ_PRESET_TYPE_32GTS = 2, + EQ_PRESET_TYPE_64GTS = 3, + EQ_PRESET_TYPE_MAX = 4, +}; + +struct pci_domain_busn_res { + struct list_head list; + struct resource res; + int domain_nr; +}; + +struct pci_dev_resource { + struct list_head list; + struct resource *res; + struct pci_dev *dev; + resource_size_t start; + resource_size_t end; + resource_size_t add_size; + resource_size_t min_align; + long unsigned int flags; +}; + +enum release_type { + leaf_only = 0, + whole_subtree = 1, +}; + +enum enable_type { + undefined = -1, + user_disabled = 0, + auto_disabled = 1, + user_enabled = 2, + auto_enabled = 3, +}; + +enum msi_domain_ids { + MSI_DEFAULT_DOMAIN = 0, + MSI_MAX_DEVICE_IRQDOMAINS = 1, +}; + +struct msi_domain_template { + char name[48]; + struct irq_chip chip; + struct msi_domain_ops ops; + struct msi_domain_info info; + msi_alloc_info_t alloc_info; +}; + +enum support_mode { + ALLOW_LEGACY = 0, + DENY_LEGACY = 1, +}; + +typedef struct rw_semaphore *class_rwsem_read_t; + +typedef struct rw_semaphore *class_rwsem_write_t; + +struct pcie_bwctrl_data { + struct mutex set_speed_mutex; + struct thermal_cooling_device *cdev; +}; + +struct pcie_device { + int irq; + struct pci_dev *port; + u32 service; + void *priv_data; + struct device device; +}; + +struct pcie_port_service_driver { + const char *name; + int (*probe)(struct pcie_device *); + void (*remove)(struct pcie_device *); + int (*suspend)(struct pcie_device *); + int (*resume_noirq)(struct pcie_device *); + int (*resume)(struct pcie_device *); + int (*runtime_suspend)(struct pcie_device *); + int (*runtime_resume)(struct pcie_device *); + int (*slot_reset)(struct pcie_device *); + int port_type; + u32 service; + struct device_driver driver; +}; + +enum pci_ers_result { + PCI_ERS_RESULT_NONE = 1, + PCI_ERS_RESULT_CAN_RECOVER = 2, + PCI_ERS_RESULT_NEED_RESET = 3, + PCI_ERS_RESULT_DISCONNECT = 4, + PCI_ERS_RESULT_RECOVERED = 5, + PCI_ERS_RESULT_NO_AER_DRIVER = 6, +}; + +struct pcie_ptm_ops { + int (*check_capability)(void *); + int (*context_update_write)(void *, u8); + int (*context_update_read)(void *, u8 *); + int (*context_valid_write)(void *, bool); + int (*context_valid_read)(void *, bool *); + int (*local_clock_read)(void *, u64 *); + int (*master_clock_read)(void *, u64 *); + int (*t1_read)(void *, u64 *); + int (*t2_read)(void *, u64 *); + int (*t3_read)(void *, u64 *); + int (*t4_read)(void *, u64 *); + bool (*context_update_visible)(void *); + bool (*context_valid_visible)(void *); + bool (*local_clock_visible)(void *); + bool (*master_clock_visible)(void *); + bool (*t1_visible)(void *); + bool (*t2_visible)(void *); + bool (*t3_visible)(void *); + bool (*t4_visible)(void *); +}; + +struct pci_ptm_debugfs { + struct dentry *debugfs; + const struct pcie_ptm_ops *ops; + struct mutex lock; + void *pdata; +}; + +struct pci_cap_saved_data { + u16 cap_nr; + bool cap_extended; + unsigned int size; + u32 data[0]; +}; + +struct pci_cap_saved_state { + struct hlist_node next; + struct pci_cap_saved_data cap; +}; + +struct bus_attribute { + struct attribute attr; + ssize_t (*show)(const struct bus_type *, char *); + ssize_t (*store)(const struct bus_type *, const char *, size_t); +}; + +enum pci_mmap_state { + pci_mmap_io = 0, + pci_mmap_mem = 1, +}; + +enum pcie_link_width { + PCIE_LNK_WIDTH_RESRV = 0, + PCIE_LNK_X1 = 1, + PCIE_LNK_X2 = 2, + PCIE_LNK_X4 = 4, + PCIE_LNK_X8 = 8, + PCIE_LNK_X12 = 12, + PCIE_LNK_X16 = 16, + PCIE_LNK_X32 = 32, + PCIE_LNK_WIDTH_UNKNOWN = 255, +}; + +enum pci_mmap_api { + PCI_MMAP_SYSFS = 0, + PCI_MMAP_PROCFS = 1, +}; + +struct pci_reset_fn_method { + int (*reset_fn)(struct pci_dev *, bool); + char *name; +}; + +struct pci_slot_attribute { + struct attribute attr; + ssize_t (*show)(struct pci_slot *, char *); + ssize_t (*store)(struct pci_slot *, const char *, size_t); +}; + +struct slot { + u8 number; + unsigned int devfn; + struct pci_bus *bus; + struct pci_dev *dev; + unsigned int latch_status: 1; + unsigned int adapter_status: 1; + unsigned int extracting; + struct hotplug_slot hotplug_slot; + struct list_head slot_list; +}; + +struct controller { + struct pcie_device *pcie; + u64 dsn; + u32 slot_cap; + unsigned int inband_presence_disabled: 1; + u16 slot_ctrl; + struct mutex ctrl_lock; + long unsigned int cmd_started; + unsigned int cmd_busy: 1; + wait_queue_head_t queue; + atomic_t pending_events; + unsigned int notification_enabled: 1; + unsigned int power_fault_detected; + struct task_struct *poll_thread; + u8 state; + struct mutex state_lock; + struct delayed_work button_work; + struct hotplug_slot hotplug_slot; + struct rw_semaphore reset_lock; + unsigned int depth; + unsigned int ist_running; + int request_result; + wait_queue_head_t requester; +}; + +struct controller___2; + +struct slot___2 { + u8 bus; + u8 device; + u16 status; + u32 number; + u8 is_a_board; + u8 state; + u8 attention_save; + u8 presence_save; + u8 latch_save; + u8 pwr_save; + struct controller___2 *ctrl; + struct hotplug_slot hotplug_slot; + struct list_head slot_list; + struct delayed_work work; + struct mutex lock; + struct workqueue_struct *wq; + u8 hp_slot; +}; + +struct controller___2 { + struct mutex crit_sect; + struct mutex cmd_lock; + int num_slots; + int slot_num_inc; + struct pci_dev *pci_dev; + struct list_head slot_list; + wait_queue_head_t queue; + u8 slot_device_offset; + u32 pcix_misc2_reg; + u32 first_slot; + u32 cap_offset; + long unsigned int mmio_base; + long unsigned int mmio_size; + void *creg; + struct timer_list poll_timer; +}; + +enum ctrl_offsets { + BASE_OFFSET = 0, + SLOT_AVAIL1 = 4, + SLOT_AVAIL2 = 8, + SLOT_CONFIG = 12, + SEC_BUS_CONFIG = 16, + MSI_CTRL = 18, + PROG_INTERFACE = 19, + CMD = 20, + CMD_STATUS = 22, + INTR_LOC = 24, + SERR_LOC = 28, + SERR_INTR_ENABLE = 32, + SLOT1 = 36, +}; + +struct pci_doe_mb { + struct pci_dev *pdev; + u16 cap_offset; + struct xarray feats; + wait_queue_head_t wq; + struct workqueue_struct *work_queue; + long unsigned int flags; + struct device_attribute *sysfs_attrs; +}; + +struct pci_doe_feature { + u16 vid; + u8 type; +}; + +struct pci_doe_task { + struct pci_doe_feature feat; + const __le32 *request_pl; + size_t request_pl_sz; + __le32 *response_pl; + size_t response_pl_sz; + int rv; + void (*complete)(struct pci_doe_task *); + void *private; + struct work_struct work; + struct pci_doe_mb *doe_mb; +}; + +struct pci_epf_device_id { + char name[20]; + kernel_ulong_t driver_data; +}; + +enum pci_interrupt_pin { + PCI_INTERRUPT_UNKNOWN = 0, + PCI_INTERRUPT_INTA = 1, + PCI_INTERRUPT_INTB = 2, + PCI_INTERRUPT_INTC = 3, + PCI_INTERRUPT_INTD = 4, +}; + +enum pci_barno { + NO_BAR = -1, + BAR_0 = 0, + BAR_1 = 1, + BAR_2 = 2, + BAR_3 = 3, + BAR_4 = 4, + BAR_5 = 5, +}; + +struct pci_epf_header { + u16 vendorid; + u16 deviceid; + u8 revid; + u8 progif_code; + u8 subclass_code; + u8 baseclass_code; + u8 cache_line_size; + u16 subsys_vendor_id; + u16 subsys_id; + enum pci_interrupt_pin interrupt_pin; +}; + +struct pci_epf; + +struct pci_epf_ops { + int (*bind)(struct pci_epf *); + void (*unbind)(struct pci_epf *); + struct config_group * (*add_cfs)(struct pci_epf *, struct config_group *); +}; + +struct pci_epf_bar { + dma_addr_t phys_addr; + void *addr; + size_t size; + size_t aligned_size; + enum pci_barno barno; + int flags; +}; + +struct pci_epc; + +struct pci_epf_driver; + +struct pci_epc_event_ops; + +struct pci_epf_doorbell_msg; + +struct pci_epf { + struct device dev; + const char *name; + struct pci_epf_header *header; + struct pci_epf_bar bar[6]; + u8 msi_interrupts; + u16 msix_interrupts; + u8 func_no; + u8 vfunc_no; + struct pci_epc *epc; + struct pci_epf *epf_pf; + struct pci_epf_driver *driver; + const struct pci_epf_device_id *id; + struct list_head list; + struct mutex lock; + struct pci_epc *sec_epc; + struct list_head sec_epc_list; + struct pci_epf_bar sec_epc_bar[6]; + u8 sec_epc_func_no; + struct config_group *group; + unsigned int is_bound; + unsigned int is_vf; + long unsigned int vfunction_num_map; + struct list_head pci_vepf; + const struct pci_epc_event_ops *event_ops; + struct pci_epf_doorbell_msg *db_msg; + u16 num_db; +}; + +struct pci_epc_event_ops { + int (*epc_init)(struct pci_epf *); + void (*epc_deinit)(struct pci_epf *); + int (*link_up)(struct pci_epf *); + int (*link_down)(struct pci_epf *); + int (*bus_master_enable)(struct pci_epf *); +}; + +struct pci_epf_driver { + int (*probe)(struct pci_epf *, const struct pci_epf_device_id *); + void (*remove)(struct pci_epf *); + struct device_driver driver; + const struct pci_epf_ops *ops; + struct module *owner; + struct list_head epf_group; + const struct pci_epf_device_id *id_table; +}; + +struct pci_epf_doorbell_msg { + struct msi_msg msg; + int virq; +}; + +struct pci_epc_ops; + +struct pci_epc_mem; + +struct pci_epc { + struct device dev; + struct list_head pci_epf; + struct mutex list_lock; + const struct pci_epc_ops *ops; + struct pci_epc_mem **windows; + struct pci_epc_mem *mem; + unsigned int num_windows; + u8 max_functions; + u8 *max_vfs; + struct config_group *group; + struct mutex lock; + long unsigned int function_num_map; + int domain_nr; + bool init_complete; +}; + +enum pci_epc_interface_type { + UNKNOWN_INTERFACE = -1, + PRIMARY_INTERFACE = 0, + SECONDARY_INTERFACE = 1, +}; + +struct pci_epc_map { + u64 pci_addr; + size_t pci_size; + u64 map_pci_addr; + size_t map_size; + phys_addr_t phys_base; + phys_addr_t phys_addr; + void *virt_base; + void *virt_addr; +}; + +struct pci_epc_features; + +struct pci_epc_ops { + int (*write_header)(struct pci_epc *, u8, u8, struct pci_epf_header *); + int (*set_bar)(struct pci_epc *, u8, u8, struct pci_epf_bar *); + void (*clear_bar)(struct pci_epc *, u8, u8, struct pci_epf_bar *); + u64 (*align_addr)(struct pci_epc *, u64, size_t *, size_t *); + int (*map_addr)(struct pci_epc *, u8, u8, phys_addr_t, u64, size_t); + void (*unmap_addr)(struct pci_epc *, u8, u8, phys_addr_t); + int (*set_msi)(struct pci_epc *, u8, u8, u8); + int (*get_msi)(struct pci_epc *, u8, u8); + int (*set_msix)(struct pci_epc *, u8, u8, u16, enum pci_barno, u32); + int (*get_msix)(struct pci_epc *, u8, u8); + int (*raise_irq)(struct pci_epc *, u8, u8, unsigned int, u16); + int (*map_msi_irq)(struct pci_epc *, u8, u8, phys_addr_t, u8, u32, u32 *, u32 *); + int (*start)(struct pci_epc *); + void (*stop)(struct pci_epc *); + const struct pci_epc_features * (*get_features)(struct pci_epc *, u8, u8); + struct module *owner; +}; + +enum pci_epc_bar_type { + BAR_PROGRAMMABLE = 0, + BAR_FIXED = 1, + BAR_RESIZABLE = 2, + BAR_RESERVED = 3, +}; + +struct pci_epc_bar_desc { + enum pci_epc_bar_type type; + u64 fixed_size; + bool only_64bit; +}; + +struct pci_epc_features { + unsigned int linkup_notifier: 1; + unsigned int msi_capable: 1; + unsigned int msix_capable: 1; + unsigned int intx_capable: 1; + struct pci_epc_bar_desc bar[6]; + size_t align; +}; + +struct pci_epc_mem_window { + phys_addr_t phys_base; + size_t size; + size_t page_size; +}; + +struct pci_epc_mem { + struct pci_epc_mem_window window; + long unsigned int *bitmap; + int pages; + struct mutex lock; +}; + +struct hv_vmbus_device_id { + guid_t guid; + kernel_ulong_t driver_data; +}; + +enum msi_desc_filter { + MSI_DESC_ALL = 0, + MSI_DESC_NOTASSOCIATED = 1, + MSI_DESC_ASSOCIATED = 2, +}; + +typedef struct { + struct device *lock; +} class_msi_descs_lock_t; + +enum { + MSI_CHIP_FLAG_SET_EOI = 1, + MSI_CHIP_FLAG_SET_ACK = 2, +}; + +union hv_msi_address_register { + u32 as_uint32; + struct { + u32 reserved1: 2; + u32 destination_mode: 1; + u32 redirection_hint: 1; + u32 reserved2: 8; + u32 destination_id: 8; + u32 msi_base: 12; + }; +}; + +union hv_msi_data_register { + u32 as_uint32; + struct { + u32 vector: 8; + u32 delivery_mode: 3; + u32 reserved1: 3; + u32 level_assert: 1; + u32 trigger_mode: 1; + u32 reserved2: 16; + }; +}; + +union hv_msi_entry { + u64 as_uint64; + struct { + union hv_msi_address_register address; + union hv_msi_data_register data; + }; +}; + +union hv_ioapic_rte { + u64 as_uint64; + struct { + u32 vector: 8; + u32 delivery_mode: 3; + u32 destination_mode: 1; + u32 delivery_status: 1; + u32 interrupt_polarity: 1; + u32 remote_irr: 1; + u32 trigger_mode: 1; + u32 interrupt_mask: 1; + u32 reserved1: 15; + u32 reserved2: 24; + u32 destination_id: 8; + }; + struct { + u32 low_uint32; + u32 high_uint32; + }; +}; + +enum hv_interrupt_source { + HV_INTERRUPT_SOURCE_MSI = 1, + HV_INTERRUPT_SOURCE_IOAPIC = 2, +}; + +struct hv_interrupt_entry { + u32 source; + u32 reserved1; + union { + union hv_msi_entry msi_entry; + union hv_ioapic_rte ioapic_rte; + }; +}; + +struct hv_device_interrupt_target { + u32 vector; + u32 flags; + union { + u64 vp_mask; + struct hv_vpset vp_set; + }; +}; + +struct hv_retarget_device_interrupt { + u64 partition_id; + u64 device_id; + struct hv_interrupt_entry int_entry; + u64 reserved2; + struct hv_device_interrupt_target int_target; +}; + +struct hv_mmio_read_input { + u64 gpa; + u32 size; + u32 reserved; +}; + +struct hv_mmio_read_output { + u8 data[64]; +}; + +struct hv_mmio_write_input { + u64 gpa; + u32 size; + u32 reserved; + u8 data[64]; +}; + +struct hv_ring_buffer { + u32 write_index; + u32 read_index; + u32 interrupt_mask; + u32 pending_send_sz; + u32 reserved1[12]; + union { + struct { + u32 feat_pending_send_sz: 1; + }; + u32 value; + } feature_bits; + u8 reserved2[4028]; + u8 buffer[0]; +}; + +struct hv_ring_buffer_info { + struct hv_ring_buffer *ring_buffer; + u32 ring_size; + struct reciprocal_value ring_size_div10_reciprocal; + spinlock_t ring_lock; + u32 ring_datasize; + u32 priv_read_index; + struct mutex ring_buffer_mutex; + void *pkt_buffer; + u32 pkt_buffer_size; +}; + +struct vmbus_channel_offer { + guid_t if_type; + guid_t if_instance; + u64 reserved1; + u64 reserved2; + u16 chn_flags; + u16 mmio_megabytes; + union { + struct { + unsigned char user_def[120]; + } std; + struct { + u32 pipe_mode; + unsigned char user_def[116]; + } pipe; + } u; + u16 sub_channel_index; + u16 reserved3; +}; + +struct vmpacket_descriptor { + u16 type; + u16 offset8; + u16 len8; + u16 flags; + u64 trans_id; +}; + +enum vmbus_packet_type { + VM_PKT_INVALID = 0, + VM_PKT_SYNCH = 1, + VM_PKT_ADD_XFER_PAGESET = 2, + VM_PKT_RM_XFER_PAGESET = 3, + VM_PKT_ESTABLISH_GPADL = 4, + VM_PKT_TEARDOWN_GPADL = 5, + VM_PKT_DATA_INBAND = 6, + VM_PKT_DATA_USING_XFER_PAGES = 7, + VM_PKT_DATA_USING_GPADL = 8, + VM_PKT_DATA_USING_GPA_DIRECT = 9, + VM_PKT_CANCEL_REQUEST = 10, + VM_PKT_COMP = 11, + VM_PKT_DATA_USING_ADDITIONAL_PKT = 12, + VM_PKT_ADDITIONAL_DATA = 13, +}; + +enum vmbus_channel_message_type { + CHANNELMSG_INVALID = 0, + CHANNELMSG_OFFERCHANNEL = 1, + CHANNELMSG_RESCIND_CHANNELOFFER = 2, + CHANNELMSG_REQUESTOFFERS = 3, + CHANNELMSG_ALLOFFERS_DELIVERED = 4, + CHANNELMSG_OPENCHANNEL = 5, + CHANNELMSG_OPENCHANNEL_RESULT = 6, + CHANNELMSG_CLOSECHANNEL = 7, + CHANNELMSG_GPADL_HEADER = 8, + CHANNELMSG_GPADL_BODY = 9, + CHANNELMSG_GPADL_CREATED = 10, + CHANNELMSG_GPADL_TEARDOWN = 11, + CHANNELMSG_GPADL_TORNDOWN = 12, + CHANNELMSG_RELID_RELEASED = 13, + CHANNELMSG_INITIATE_CONTACT = 14, + CHANNELMSG_VERSION_RESPONSE = 15, + CHANNELMSG_UNLOAD = 16, + CHANNELMSG_UNLOAD_RESPONSE = 17, + CHANNELMSG_18 = 18, + CHANNELMSG_19 = 19, + CHANNELMSG_20 = 20, + CHANNELMSG_TL_CONNECT_REQUEST = 21, + CHANNELMSG_MODIFYCHANNEL = 22, + CHANNELMSG_TL_CONNECT_RESULT = 23, + CHANNELMSG_MODIFYCHANNEL_RESPONSE = 24, + CHANNELMSG_COUNT = 25, +}; + +struct vmbus_channel_message_header { + enum vmbus_channel_message_type msgtype; + u32 padding; +}; + +struct vmbus_channel_version_supported { + struct vmbus_channel_message_header header; + u8 version_supported; +} __attribute__((packed)); + +struct vmbus_channel_offer_channel { + struct vmbus_channel_message_header header; + struct vmbus_channel_offer offer; + u32 child_relid; + u8 monitorid; + u8 monitor_allocated: 1; + u8 reserved: 7; + u16 is_dedicated_interrupt: 1; + u16 reserved1: 15; + u32 connection_id; +} __attribute__((packed)); + +struct vmbus_channel_open_result { + struct vmbus_channel_message_header header; + u32 child_relid; + u32 openid; + u32 status; +}; + +struct vmbus_channel_modifychannel_response { + struct vmbus_channel_message_header header; + u32 child_relid; + u32 status; +}; + +struct vmbus_channel_close_channel { + struct vmbus_channel_message_header header; + u32 child_relid; +}; + +struct vmbus_channel_gpadl_created { + struct vmbus_channel_message_header header; + u32 child_relid; + u32 gpadl; + u32 creation_status; +}; + +struct vmbus_channel_gpadl_torndown { + struct vmbus_channel_message_header header; + u32 gpadl; +}; + +struct vmbus_channel_version_response { + struct vmbus_channel_message_header header; + u8 version_supported; + u8 connection_state; + u16 padding; + u32 msg_conn_id; +}; + +enum vmbus_channel_state { + CHANNEL_OFFER_STATE = 0, + CHANNEL_OPENING_STATE = 1, + CHANNEL_OPEN_STATE = 2, + CHANNEL_OPENED_STATE = 3, +}; + +struct vmbus_channel; + +struct vmbus_channel_msginfo { + struct list_head msglistentry; + struct list_head submsglist; + struct completion waitevent; + struct vmbus_channel *waiting_channel; + union { + struct vmbus_channel_version_supported version_supported; + struct vmbus_channel_open_result open_result; + struct vmbus_channel_gpadl_torndown gpadl_torndown; + struct vmbus_channel_gpadl_created gpadl_created; + struct vmbus_channel_version_response version_response; + struct vmbus_channel_modifychannel_response modify_response; + } response; + u32 msgsize; + unsigned char msg[0]; +}; + +struct vmbus_gpadl { + u32 gpadl_handle; + u32 size; + void *buffer; + bool decrypted; +}; + +struct vmbus_close_msg { + struct vmbus_channel_msginfo info; + struct vmbus_channel_close_channel msg; +}; + +enum hv_callback_mode { + HV_CALL_BATCHED = 0, + HV_CALL_DIRECT = 1, + HV_CALL_ISR = 2, +}; + +struct vmbus_requestor { + u64 *req_arr; + long unsigned int *req_bitmap; + u32 size; + u64 next_request_id; + spinlock_t req_lock; +}; + +struct hv_device; + +struct vmbus_channel { + struct list_head listentry; + struct hv_device *device_obj; + enum vmbus_channel_state state; + struct vmbus_channel_offer_channel offermsg; + u8 monitor_grp; + u8 monitor_bit; + bool rescind; + bool rescind_ref; + struct completion rescind_event; + struct vmbus_gpadl ringbuffer_gpadlhandle; + struct page *ringbuffer_page; + u32 ringbuffer_pagecount; + u32 ringbuffer_send_offset; + struct hv_ring_buffer_info outbound; + struct hv_ring_buffer_info inbound; + struct vmbus_close_msg close_msg; + u64 interrupts; + u64 sig_events; + u64 intr_out_empty; + bool out_full_flag; + struct tasklet_struct callback_event; + void (*onchannel_callback)(void *); + void *channel_callback_context; + void (*change_target_cpu_callback)(struct vmbus_channel *, u32, u32); + spinlock_t sched_lock; + enum hv_callback_mode callback_mode; + bool is_dedicated_interrupt; + u64 sig_event; + u32 target_cpu; + void (*sc_creation_callback)(struct vmbus_channel *); + void (*chn_rescind_callback)(struct vmbus_channel *); + struct list_head sc_list; + struct vmbus_channel *primary_channel; + void *per_channel_state; + struct callback_head rcu; + struct kobject kobj; + bool low_latency; + bool probe_done; + u16 device_id; + struct work_struct add_channel_work; + u64 intr_in_full; + u64 out_full_total; + u64 out_full_first; + bool fuzz_testing_state; + u32 fuzz_testing_interrupt_delay; + u32 fuzz_testing_message_delay; + u64 (*next_request_id_callback)(struct vmbus_channel *, u64); + u64 (*request_addr_callback)(struct vmbus_channel *, u64); + struct vmbus_requestor requestor; + u32 rqstor_size; + u32 max_pkt_size; + int (*mmap_ring_buffer)(struct vmbus_channel *, struct vm_area_struct *); + bool ring_sysfs_visible; +}; + +struct hv_device { + guid_t dev_type; + guid_t dev_instance; + u16 vendor_id; + u16 device_id; + struct device device; + const char *driver_override; + struct vmbus_channel *channel; + struct kset *channels_kset; + struct device_dma_parameters dma_parms; + u64 dma_mask; + struct dentry *debug_dir; +}; + +struct hv_driver { + const char *name; + bool hvsock; + guid_t dev_type; + const struct hv_vmbus_device_id *id_table; + struct device_driver driver; + struct { + spinlock_t lock; + struct list_head list; + } dynids; + int (*probe)(struct hv_device *, const struct hv_vmbus_device_id *); + void (*remove)(struct hv_device *); + void (*shutdown)(struct hv_device *); + int (*suspend)(struct hv_device *); + int (*resume)(struct hv_device *); +}; + +struct hyperv_pci_block_ops { + int (*read_block)(struct pci_dev *, void *, unsigned int, unsigned int, unsigned int *); + int (*write_block)(struct pci_dev *, void *, unsigned int, unsigned int); + int (*reg_blk_invalidate)(struct pci_dev *, void *, void (*)(void *, u64)); +}; + +enum pci_protocol_version_t { + PCI_PROTOCOL_VERSION_1_1 = 65537, + PCI_PROTOCOL_VERSION_1_2 = 65538, + PCI_PROTOCOL_VERSION_1_3 = 65539, + PCI_PROTOCOL_VERSION_1_4 = 65540, +}; + +enum pci_message_type { + PCI_MESSAGE_BASE = 1112080384, + PCI_BUS_RELATIONS = 1112080384, + PCI_QUERY_BUS_RELATIONS = 1112080385, + PCI_POWER_STATE_CHANGE = 1112080388, + PCI_QUERY_RESOURCE_REQUIREMENTS = 1112080389, + PCI_QUERY_RESOURCE_RESOURCES = 1112080390, + PCI_BUS_D0ENTRY = 1112080391, + PCI_BUS_D0EXIT = 1112080392, + PCI_READ_BLOCK = 1112080393, + PCI_WRITE_BLOCK = 1112080394, + PCI_EJECT = 1112080395, + PCI_QUERY_STOP = 1112080396, + PCI_REENABLE = 1112080397, + PCI_QUERY_STOP_FAILED = 1112080398, + PCI_EJECTION_COMPLETE = 1112080399, + PCI_RESOURCES_ASSIGNED = 1112080400, + PCI_RESOURCES_RELEASED = 1112080401, + PCI_INVALIDATE_BLOCK = 1112080402, + PCI_QUERY_PROTOCOL_VERSION = 1112080403, + PCI_CREATE_INTERRUPT_MESSAGE = 1112080404, + PCI_DELETE_INTERRUPT_MESSAGE = 1112080405, + PCI_RESOURCES_ASSIGNED2 = 1112080406, + PCI_CREATE_INTERRUPT_MESSAGE2 = 1112080407, + PCI_DELETE_INTERRUPT_MESSAGE2 = 1112080408, + PCI_BUS_RELATIONS2 = 1112080409, + PCI_RESOURCES_ASSIGNED3 = 1112080410, + PCI_CREATE_INTERRUPT_MESSAGE3 = 1112080411, + PCI_MESSAGE_MAXIMUM = 1112080412, +}; + +union win_slot_encoding { + struct { + u32 dev: 5; + u32 func: 3; + u32 reserved: 24; + } bits; + u32 slot; +}; + +struct pci_function_description { + u16 v_id; + u16 d_id; + u8 rev; + u8 prog_intf; + u8 subclass; + u8 base_class; + u32 subsystem_id; + union win_slot_encoding win_slot; + u32 ser; +}; + +enum pci_device_description_flags { + HV_PCI_DEVICE_FLAG_NONE = 0, + HV_PCI_DEVICE_FLAG_NUMA_AFFINITY = 1, +}; + +struct pci_function_description2 { + u16 v_id; + u16 d_id; + u8 rev; + u8 prog_intf; + u8 subclass; + u8 base_class; + u32 subsystem_id; + union win_slot_encoding win_slot; + u32 ser; + u32 flags; + u16 virtual_numa_node; + u16 reserved; +}; + +struct hv_msi_desc { + u8 vector; + u8 delivery_mode; + u16 vector_count; + u32 reserved; + u64 cpu_mask; +}; + +struct hv_msi_desc2 { + u8 vector; + u8 delivery_mode; + u16 vector_count; + u16 processor_count; + u16 processor_array[32]; +}; + +struct hv_msi_desc3 { + u32 vector; + u8 delivery_mode; + u8 reserved; + u16 vector_count; + u16 processor_count; + u16 processor_array[32]; +} __attribute__((packed)); + +struct tran_int_desc { + u16 reserved; + u16 vector_count; + u32 data; + u64 address; +}; + +struct pci_message { + u32 type; +}; + +struct pci_child_message { + struct pci_message message_type; + union win_slot_encoding wslot; +}; + +struct pci_incoming_message { + struct vmpacket_descriptor hdr; + struct pci_message message_type; +} __attribute__((packed)); + +struct pci_response { + struct vmpacket_descriptor hdr; + s32 status; +} __attribute__((packed)); + +struct pci_packet { + void (*completion_func)(void *, struct pci_response *, int); + void *compl_ctxt; +}; + +struct pci_version_request { + struct pci_message message_type; + u32 protocol_version; +}; + +struct pci_bus_d0_entry { + struct pci_message message_type; + u32 reserved; + u64 mmio_base; +}; + +struct pci_bus_relations { + struct pci_incoming_message incoming; + u32 device_count; + struct pci_function_description func[0]; +}; + +struct pci_bus_relations2 { + struct pci_incoming_message incoming; + u32 device_count; + struct pci_function_description2 func[0]; +}; + +struct pci_q_res_req_response { + struct vmpacket_descriptor hdr; + s32 status; + u32 probed_bar[6]; +} __attribute__((packed)); + +struct pci_resources_assigned { + struct pci_message message_type; + union win_slot_encoding wslot; + u8 memory_range[120]; + u32 msi_descriptors; + u32 reserved[4]; +}; + +struct pci_resources_assigned2 { + struct pci_message message_type; + union win_slot_encoding wslot; + u8 memory_range[120]; + u32 msi_descriptor_count; + u8 reserved[70]; +} __attribute__((packed)); + +struct pci_create_interrupt { + struct pci_message message_type; + union win_slot_encoding wslot; + struct hv_msi_desc int_desc; +}; + +struct pci_create_int_response { + struct pci_response response; + u32 reserved; + struct tran_int_desc int_desc; +}; + +struct pci_create_interrupt2 { + struct pci_message message_type; + union win_slot_encoding wslot; + struct hv_msi_desc2 int_desc; +} __attribute__((packed)); + +struct pci_create_interrupt3 { + struct pci_message message_type; + union win_slot_encoding wslot; + struct hv_msi_desc3 int_desc; +} __attribute__((packed)); + +struct pci_delete_interrupt { + struct pci_message message_type; + union win_slot_encoding wslot; + struct tran_int_desc int_desc; +}; + +struct pci_read_block { + struct pci_message message_type; + u32 block_id; + union win_slot_encoding wslot; + u32 bytes_requested; +}; + +struct pci_read_block_response { + struct vmpacket_descriptor hdr; + u32 status; + u8 bytes[128]; +} __attribute__((packed)); + +struct pci_write_block { + struct pci_message message_type; + u32 block_id; + union win_slot_encoding wslot; + u32 byte_count; + u8 bytes[128]; +}; + +struct pci_dev_inval_block { + struct pci_incoming_message incoming; + union win_slot_encoding wslot; + u64 block_mask; +}; + +struct pci_dev_incoming { + struct pci_incoming_message incoming; + union win_slot_encoding wslot; +}; + +struct pci_eject_response { + struct pci_message message_type; + union win_slot_encoding wslot; + u32 status; +}; + +enum hv_pcibus_state { + hv_pcibus_init = 0, + hv_pcibus_probed = 1, + hv_pcibus_installed = 2, + hv_pcibus_removing = 3, + hv_pcibus_maximum = 4, +}; + +struct hv_pcibus_device { + struct pci_sysdata sysdata; + struct pci_host_bridge *bridge; + struct fwnode_handle *fwnode; + enum pci_protocol_version_t protocol_version; + struct mutex state_lock; + enum hv_pcibus_state state; + struct hv_device *hdev; + resource_size_t low_mmio_space; + resource_size_t high_mmio_space; + struct resource *mem_config; + struct resource *low_mmio_res; + struct resource *high_mmio_res; + struct completion *survey_event; + struct pci_bus *pci_bus; + spinlock_t config_lock; + spinlock_t device_list_lock; + void *cfg_addr; + struct list_head children; + struct list_head dr_list; + struct irq_domain *irq_domain; + struct workqueue_struct *wq; + int wslot_res_allocated; + bool use_calls; +}; + +struct hv_dr_work { + struct work_struct wrk; + struct hv_pcibus_device *bus; +}; + +struct hv_pcidev_description { + u16 v_id; + u16 d_id; + u8 rev; + u8 prog_intf; + u8 subclass; + u8 base_class; + u32 subsystem_id; + union win_slot_encoding win_slot; + u32 ser; + u32 flags; + u16 virtual_numa_node; +}; + +struct hv_dr_state { + struct list_head list_entry; + u32 device_count; + struct hv_pcidev_description func[0]; +}; + +struct hv_pci_dev { + struct list_head list_entry; + refcount_t refs; + struct pci_slot *pci_slot; + struct hv_pcidev_description desc; + bool reported_missing; + struct hv_pcibus_device *hbus; + struct work_struct wrk; + void (*block_invalidate)(void *, u64); + void *invalidate_context; + u32 probed_bar[6]; +}; + +struct hv_pci_compl { + struct completion host_event; + s32 completion_status; +}; + +struct hv_read_config_compl { + struct hv_pci_compl comp_pkt; + void *buf; + unsigned int len; + unsigned int bytes_returned; +}; + +struct compose_comp_ctxt { + struct hv_pci_compl comp_pkt; + struct tran_int_desc int_desc; +}; + +struct q_res_req_compl { + struct completion host_event; + struct hv_pci_dev *hpdev; +}; + +struct clk_bulk_data { + const char *id; + struct clk *clk; +}; + +struct dw_edma_region { + u64 paddr; + union { + void *mem; + void *io; + } vaddr; + size_t sz; +}; + +struct dw_edma_plat_ops { + int (*irq_vector)(struct device *, unsigned int); + u64 (*pci_address)(struct device *, phys_addr_t); +}; + +enum dw_edma_map_format { + EDMA_MF_EDMA_LEGACY = 0, + EDMA_MF_EDMA_UNROLL = 1, + EDMA_MF_HDMA_COMPAT = 5, + EDMA_MF_HDMA_NATIVE = 7, +}; + +struct dw_edma; + +struct dw_edma_chip { + struct device *dev; + int nr_irqs; + const struct dw_edma_plat_ops *ops; + u32 flags; + void *reg_base; + u16 ll_wr_cnt; + u16 ll_rd_cnt; + struct dw_edma_region ll_region_wr[8]; + struct dw_edma_region ll_region_rd[8]; + struct dw_edma_region dt_region_wr[8]; + struct dw_edma_region dt_region_rd[8]; + enum dw_edma_map_format mf; + struct dw_edma *dw; +}; + +struct reset_control; + +struct reset_control_bulk_data { + const char *id; + struct reset_control *rstc; +}; + +struct pci_eq_presets { + u16 eq_presets_8gts[16]; + u8 eq_presets_Ngts[48]; +}; + +enum dw_pcie_device_mode { + DW_PCIE_UNKNOWN_TYPE = 0, + DW_PCIE_EP_TYPE = 1, + DW_PCIE_LEG_EP_TYPE = 2, + DW_PCIE_RC_TYPE = 3, +}; + +enum dw_pcie_app_clk { + DW_PCIE_DBI_CLK = 0, + DW_PCIE_MSTR_CLK = 1, + DW_PCIE_SLV_CLK = 2, + DW_PCIE_NUM_APP_CLKS = 3, +}; + +enum dw_pcie_core_clk { + DW_PCIE_PIPE_CLK = 0, + DW_PCIE_CORE_CLK = 1, + DW_PCIE_AUX_CLK = 2, + DW_PCIE_REF_CLK = 3, + DW_PCIE_NUM_CORE_CLKS = 4, +}; + +enum dw_pcie_app_rst { + DW_PCIE_DBI_RST = 0, + DW_PCIE_MSTR_RST = 1, + DW_PCIE_SLV_RST = 2, + DW_PCIE_NUM_APP_RSTS = 3, +}; + +enum dw_pcie_core_rst { + DW_PCIE_NON_STICKY_RST = 0, + DW_PCIE_STICKY_RST = 1, + DW_PCIE_CORE_RST = 2, + DW_PCIE_PIPE_RST = 3, + DW_PCIE_PHY_RST = 4, + DW_PCIE_HOT_RST = 5, + DW_PCIE_PWR_RST = 6, + DW_PCIE_NUM_CORE_RSTS = 7, +}; + +enum dw_pcie_ltssm { + DW_PCIE_LTSSM_DETECT_QUIET = 0, + DW_PCIE_LTSSM_DETECT_ACT = 1, + DW_PCIE_LTSSM_POLL_ACTIVE = 2, + DW_PCIE_LTSSM_POLL_COMPLIANCE = 3, + DW_PCIE_LTSSM_POLL_CONFIG = 4, + DW_PCIE_LTSSM_PRE_DETECT_QUIET = 5, + DW_PCIE_LTSSM_DETECT_WAIT = 6, + DW_PCIE_LTSSM_CFG_LINKWD_START = 7, + DW_PCIE_LTSSM_CFG_LINKWD_ACEPT = 8, + DW_PCIE_LTSSM_CFG_LANENUM_WAI = 9, + DW_PCIE_LTSSM_CFG_LANENUM_ACEPT = 10, + DW_PCIE_LTSSM_CFG_COMPLETE = 11, + DW_PCIE_LTSSM_CFG_IDLE = 12, + DW_PCIE_LTSSM_RCVRY_LOCK = 13, + DW_PCIE_LTSSM_RCVRY_SPEED = 14, + DW_PCIE_LTSSM_RCVRY_RCVRCFG = 15, + DW_PCIE_LTSSM_RCVRY_IDLE = 16, + DW_PCIE_LTSSM_L0 = 17, + DW_PCIE_LTSSM_L0S = 18, + DW_PCIE_LTSSM_L123_SEND_EIDLE = 19, + DW_PCIE_LTSSM_L1_IDLE = 20, + DW_PCIE_LTSSM_L2_IDLE = 21, + DW_PCIE_LTSSM_L2_WAKE = 22, + DW_PCIE_LTSSM_DISABLED_ENTRY = 23, + DW_PCIE_LTSSM_DISABLED_IDLE = 24, + DW_PCIE_LTSSM_DISABLED = 25, + DW_PCIE_LTSSM_LPBK_ENTRY = 26, + DW_PCIE_LTSSM_LPBK_ACTIVE = 27, + DW_PCIE_LTSSM_LPBK_EXIT = 28, + DW_PCIE_LTSSM_LPBK_EXIT_TIMEOUT = 29, + DW_PCIE_LTSSM_HOT_RESET_ENTRY = 30, + DW_PCIE_LTSSM_HOT_RESET = 31, + DW_PCIE_LTSSM_RCVRY_EQ0 = 32, + DW_PCIE_LTSSM_RCVRY_EQ1 = 33, + DW_PCIE_LTSSM_RCVRY_EQ2 = 34, + DW_PCIE_LTSSM_RCVRY_EQ3 = 35, + DW_PCIE_LTSSM_UNKNOWN = 4294967295, +}; + +struct dw_pcie_rp; + +struct dw_pcie_host_ops { + int (*init)(struct dw_pcie_rp *); + void (*deinit)(struct dw_pcie_rp *); + void (*post_init)(struct dw_pcie_rp *); + int (*msi_init)(struct dw_pcie_rp *); + void (*pme_turn_off)(struct dw_pcie_rp *); +}; + +struct dw_pcie_rp { + bool has_msi_ctrl: 1; + bool cfg0_io_shared: 1; + u64 cfg0_base; + void *va_cfg0_base; + u32 cfg0_size; + resource_size_t io_base; + phys_addr_t io_bus_addr; + u32 io_size; + int irq; + const struct dw_pcie_host_ops *ops; + int msi_irq[8]; + struct irq_domain *irq_domain; + dma_addr_t msi_data; + struct irq_chip *msi_irq_chip; + u32 num_vectors; + u32 irq_mask[8]; + struct pci_host_bridge *bridge; + raw_spinlock_t lock; + long unsigned int msi_irq_in_use[4]; + bool use_atu_msg; + int msg_atu_index; + struct resource *msg_res; + bool use_linkup_irq; + struct pci_eq_presets presets; +}; + +struct dw_pcie_ep; + +struct dw_pcie_ep_ops { + void (*pre_init)(struct dw_pcie_ep *); + void (*init)(struct dw_pcie_ep *); + int (*raise_irq)(struct dw_pcie_ep *, u8, unsigned int, u16); + const struct pci_epc_features * (*get_features)(struct dw_pcie_ep *); + unsigned int (*get_dbi_offset)(struct dw_pcie_ep *, u8); + unsigned int (*get_dbi2_offset)(struct dw_pcie_ep *, u8); +}; + +struct dw_pcie_ep { + struct pci_epc *epc; + struct list_head func_list; + const struct dw_pcie_ep_ops *ops; + phys_addr_t phys_base; + size_t addr_size; + size_t page_size; + u8 bar_to_atu[6]; + phys_addr_t *outbound_addr; + long unsigned int *ib_window_map; + long unsigned int *ob_window_map; + void *msi_mem; + phys_addr_t msi_mem_phys; + struct pci_epf_bar *epf_bar[6]; +}; + +struct dw_pcie; + +struct dw_pcie_ops { + u64 (*cpu_addr_fixup)(struct dw_pcie *, u64); + u32 (*read_dbi)(struct dw_pcie *, void *, u32, size_t); + void (*write_dbi)(struct dw_pcie *, void *, u32, size_t, u32); + void (*write_dbi2)(struct dw_pcie *, void *, u32, size_t, u32); + bool (*link_up)(struct dw_pcie *); + enum dw_pcie_ltssm (*get_ltssm)(struct dw_pcie *); + int (*start_link)(struct dw_pcie *); + void (*stop_link)(struct dw_pcie *); +}; + +struct debugfs_info; + +struct dw_pcie { + struct device *dev; + void *dbi_base; + resource_size_t dbi_phys_addr; + void *dbi_base2; + void *atu_base; + void *elbi_base; + resource_size_t atu_phys_addr; + size_t atu_size; + resource_size_t parent_bus_offset; + u32 num_ib_windows; + u32 num_ob_windows; + u32 region_align; + u64 region_limit; + struct dw_pcie_rp pp; + struct dw_pcie_ep ep; + const struct dw_pcie_ops *ops; + u32 version; + u32 type; + long unsigned int caps; + int num_lanes; + int max_link_speed; + u8 n_fts[2]; + struct dw_edma_chip edma; + struct clk_bulk_data app_clks[3]; + struct clk_bulk_data core_clks[4]; + struct reset_control_bulk_data app_rsts[3]; + struct reset_control_bulk_data core_rsts[7]; + struct gpio_desc *pe_rst; + bool suspended; + struct debugfs_info *debugfs; + enum dw_pcie_device_mode mode; + u16 ptm_vsec_offset; + struct pci_ptm_debugfs *ptm_debugfs; + bool use_parent_dt_ranges; +}; + +struct debugfs_info { + struct dentry *debug_dir; + void *rasdes_info; +}; + +struct dw_plat_pcie { + struct dw_pcie *pci; + enum dw_pcie_device_mode mode; +}; + +struct dw_plat_pcie_of_data { + enum dw_pcie_device_mode mode; +}; + +struct rio_device_id { + __u16 did; + __u16 vid; + __u16 asm_did; + __u16 asm_vid; +}; + +typedef s32 dma_cookie_t; + +enum dma_status { + DMA_COMPLETE = 0, + DMA_IN_PROGRESS = 1, + DMA_PAUSED = 2, + DMA_ERROR = 3, + DMA_OUT_OF_ORDER = 4, +}; + +enum dma_transaction_type { + DMA_MEMCPY = 0, + DMA_XOR = 1, + DMA_PQ = 2, + DMA_XOR_VAL = 3, + DMA_PQ_VAL = 4, + DMA_MEMSET = 5, + DMA_MEMSET_SG = 6, + DMA_INTERRUPT = 7, + DMA_PRIVATE = 8, + DMA_ASYNC_TX = 9, + DMA_SLAVE = 10, + DMA_CYCLIC = 11, + DMA_INTERLEAVE = 12, + DMA_COMPLETION_NO_ORDER = 13, + DMA_REPEAT = 14, + DMA_LOAD_EOT = 15, + DMA_TX_TYPE_END = 16, +}; + +enum dma_transfer_direction { + DMA_MEM_TO_MEM = 0, + DMA_MEM_TO_DEV = 1, + DMA_DEV_TO_MEM = 2, + DMA_DEV_TO_DEV = 3, + DMA_TRANS_NONE = 4, +}; + +struct data_chunk { + size_t size; + size_t icg; + size_t dst_icg; + size_t src_icg; +}; + +struct dma_interleaved_template { + dma_addr_t src_start; + dma_addr_t dst_start; + enum dma_transfer_direction dir; + bool src_inc; + bool dst_inc; + bool src_sgl; + bool dst_sgl; + size_t numf; + size_t frame_size; + struct data_chunk sgl[0]; +}; + +struct dma_vec { + dma_addr_t addr; + size_t len; +}; + +enum dma_ctrl_flags { + DMA_PREP_INTERRUPT = 1, + DMA_CTRL_ACK = 2, + DMA_PREP_PQ_DISABLE_P = 4, + DMA_PREP_PQ_DISABLE_Q = 8, + DMA_PREP_CONTINUE = 16, + DMA_PREP_FENCE = 32, + DMA_CTRL_REUSE = 64, + DMA_PREP_CMD = 128, + DMA_PREP_REPEAT = 256, + DMA_PREP_LOAD_EOT = 512, +}; + +enum sum_check_bits { + SUM_CHECK_P = 0, + SUM_CHECK_Q = 1, +}; + +enum sum_check_flags { + SUM_CHECK_P_RESULT = 1, + SUM_CHECK_Q_RESULT = 2, +}; + +typedef struct { + long unsigned int bits[1]; +} dma_cap_mask_t; + +enum dma_desc_metadata_mode { + DESC_METADATA_NONE = 0, + DESC_METADATA_CLIENT = 1, + DESC_METADATA_ENGINE = 2, +}; + +struct dma_chan_percpu { + long unsigned int memcpy_count; + long unsigned int bytes_transferred; +}; + +struct dma_router { + struct device *dev; + void (*route_free)(struct device *, void *); +}; + +struct dma_device; + +struct dma_chan_dev; + +struct dma_chan { + struct dma_device *device; + struct device *slave; + dma_cookie_t cookie; + dma_cookie_t completed_cookie; + int chan_id; + struct dma_chan_dev *dev; + const char *name; + char *dbg_client_name; + struct list_head device_node; + struct dma_chan_percpu *local; + int client_count; + int table_count; + struct dma_router *router; + void *route_data; + void *private; +}; + +typedef bool (*dma_filter_fn)(struct dma_chan *, void *); + +struct dma_slave_map; + +struct dma_filter { + dma_filter_fn fn; + int mapcnt; + const struct dma_slave_map *map; +}; + +enum dmaengine_alignment { + DMAENGINE_ALIGN_1_BYTE = 0, + DMAENGINE_ALIGN_2_BYTES = 1, + DMAENGINE_ALIGN_4_BYTES = 2, + DMAENGINE_ALIGN_8_BYTES = 3, + DMAENGINE_ALIGN_16_BYTES = 4, + DMAENGINE_ALIGN_32_BYTES = 5, + DMAENGINE_ALIGN_64_BYTES = 6, + DMAENGINE_ALIGN_128_BYTES = 7, + DMAENGINE_ALIGN_256_BYTES = 8, +}; + +enum dma_residue_granularity { + DMA_RESIDUE_GRANULARITY_DESCRIPTOR = 0, + DMA_RESIDUE_GRANULARITY_SEGMENT = 1, + DMA_RESIDUE_GRANULARITY_BURST = 2, +}; + +struct dma_async_tx_descriptor; + +struct dma_slave_caps; + +struct dma_slave_config; + +struct dma_tx_state; + +struct dma_device { + struct kref ref; + unsigned int chancnt; + unsigned int privatecnt; + struct list_head channels; + struct list_head global_node; + struct dma_filter filter; + dma_cap_mask_t cap_mask; + enum dma_desc_metadata_mode desc_metadata_modes; + short unsigned int max_xor; + short unsigned int max_pq; + enum dmaengine_alignment copy_align; + enum dmaengine_alignment xor_align; + enum dmaengine_alignment pq_align; + enum dmaengine_alignment fill_align; + int dev_id; + struct device *dev; + struct module *owner; + struct ida chan_ida; + u32 src_addr_widths; + u32 dst_addr_widths; + u32 directions; + u32 min_burst; + u32 max_burst; + u32 max_sg_burst; + bool descriptor_reuse; + enum dma_residue_granularity residue_granularity; + int (*device_alloc_chan_resources)(struct dma_chan *); + int (*device_router_config)(struct dma_chan *); + void (*device_free_chan_resources)(struct dma_chan *); + struct dma_async_tx_descriptor * (*device_prep_dma_memcpy)(struct dma_chan *, dma_addr_t, dma_addr_t, size_t, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_dma_xor)(struct dma_chan *, dma_addr_t, dma_addr_t *, unsigned int, size_t, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_dma_xor_val)(struct dma_chan *, dma_addr_t *, unsigned int, size_t, enum sum_check_flags *, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_dma_pq)(struct dma_chan *, dma_addr_t *, dma_addr_t *, unsigned int, const unsigned char *, size_t, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_dma_pq_val)(struct dma_chan *, dma_addr_t *, dma_addr_t *, unsigned int, const unsigned char *, size_t, enum sum_check_flags *, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_dma_memset)(struct dma_chan *, dma_addr_t, int, size_t, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_dma_memset_sg)(struct dma_chan *, struct scatterlist *, unsigned int, int, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_dma_interrupt)(struct dma_chan *, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_peripheral_dma_vec)(struct dma_chan *, const struct dma_vec *, size_t, enum dma_transfer_direction, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_slave_sg)(struct dma_chan *, struct scatterlist *, unsigned int, enum dma_transfer_direction, long unsigned int, void *); + struct dma_async_tx_descriptor * (*device_prep_dma_cyclic)(struct dma_chan *, dma_addr_t, size_t, size_t, enum dma_transfer_direction, long unsigned int); + struct dma_async_tx_descriptor * (*device_prep_interleaved_dma)(struct dma_chan *, struct dma_interleaved_template *, long unsigned int); + void (*device_caps)(struct dma_chan *, struct dma_slave_caps *); + int (*device_config)(struct dma_chan *, struct dma_slave_config *); + int (*device_pause)(struct dma_chan *); + int (*device_resume)(struct dma_chan *); + int (*device_terminate_all)(struct dma_chan *); + void (*device_synchronize)(struct dma_chan *); + enum dma_status (*device_tx_status)(struct dma_chan *, dma_cookie_t, struct dma_tx_state *); + void (*device_issue_pending)(struct dma_chan *); + void (*device_release)(struct dma_device *); + void (*dbg_summary_show)(struct seq_file *, struct dma_device *); + struct dentry *dbg_dev_root; +}; + +struct dma_chan_dev { + struct dma_chan *chan; + struct device device; + int dev_id; + bool chan_dma_dev; +}; + +enum dma_slave_buswidth { + DMA_SLAVE_BUSWIDTH_UNDEFINED = 0, + DMA_SLAVE_BUSWIDTH_1_BYTE = 1, + DMA_SLAVE_BUSWIDTH_2_BYTES = 2, + DMA_SLAVE_BUSWIDTH_3_BYTES = 3, + DMA_SLAVE_BUSWIDTH_4_BYTES = 4, + DMA_SLAVE_BUSWIDTH_8_BYTES = 8, + DMA_SLAVE_BUSWIDTH_16_BYTES = 16, + DMA_SLAVE_BUSWIDTH_32_BYTES = 32, + DMA_SLAVE_BUSWIDTH_64_BYTES = 64, + DMA_SLAVE_BUSWIDTH_128_BYTES = 128, +}; + +struct dma_slave_config { + enum dma_transfer_direction direction; + phys_addr_t src_addr; + phys_addr_t dst_addr; + enum dma_slave_buswidth src_addr_width; + enum dma_slave_buswidth dst_addr_width; + u32 src_maxburst; + u32 dst_maxburst; + u32 src_port_window_size; + u32 dst_port_window_size; + bool device_fc; + void *peripheral_config; + size_t peripheral_size; +}; + +struct dma_slave_caps { + u32 src_addr_widths; + u32 dst_addr_widths; + u32 directions; + u32 min_burst; + u32 max_burst; + u32 max_sg_burst; + bool cmd_pause; + bool cmd_resume; + bool cmd_terminate; + enum dma_residue_granularity residue_granularity; + bool descriptor_reuse; +}; + +typedef void (*dma_async_tx_callback)(void *); + +enum dmaengine_tx_result { + DMA_TRANS_NOERROR = 0, + DMA_TRANS_READ_FAILED = 1, + DMA_TRANS_WRITE_FAILED = 2, + DMA_TRANS_ABORTED = 3, +}; + +struct dmaengine_result { + enum dmaengine_tx_result result; + u32 residue; +}; + +typedef void (*dma_async_tx_callback_result)(void *, const struct dmaengine_result *); + +struct dmaengine_unmap_data { + u16 map_cnt; + u8 to_cnt; + u8 from_cnt; + u8 bidi_cnt; + struct device *dev; + struct kref kref; + size_t len; + dma_addr_t addr[0]; +}; + +struct dma_descriptor_metadata_ops { + int (*attach)(struct dma_async_tx_descriptor *, void *, size_t); + void * (*get_ptr)(struct dma_async_tx_descriptor *, size_t *, size_t *); + int (*set_len)(struct dma_async_tx_descriptor *, size_t); +}; + +struct dma_async_tx_descriptor { + dma_cookie_t cookie; + enum dma_ctrl_flags flags; + dma_addr_t phys; + struct dma_chan *chan; + dma_cookie_t (*tx_submit)(struct dma_async_tx_descriptor *); + int (*desc_free)(struct dma_async_tx_descriptor *); + dma_async_tx_callback callback; + dma_async_tx_callback_result callback_result; + void *callback_param; + struct dmaengine_unmap_data *unmap; + enum dma_desc_metadata_mode desc_metadata_mode; + struct dma_descriptor_metadata_ops *metadata_ops; +}; + +struct dma_tx_state { + dma_cookie_t last; + dma_cookie_t used; + u32 residue; + u32 in_flight_bytes; +}; + +struct dma_slave_map { + const char *devname; + const char *slave; + void *param; +}; + +struct rio_switch_ops; + +struct rio_dev; + +struct rio_switch { + struct list_head node; + u8 *route_table; + u32 port_ok; + struct rio_switch_ops *ops; + spinlock_t lock; + struct rio_dev *nextdev[0]; +}; + +struct rio_mport; + +struct rio_switch_ops { + struct module *owner; + int (*add_entry)(struct rio_mport *, u16, u8, u16, u16, u8); + int (*get_entry)(struct rio_mport *, u16, u8, u16, u16, u8 *); + int (*clr_table)(struct rio_mport *, u16, u8, u16); + int (*set_domain)(struct rio_mport *, u16, u8, u8); + int (*get_domain)(struct rio_mport *, u16, u8, u8 *); + int (*em_init)(struct rio_dev *); + int (*em_handle)(struct rio_dev *, u8); +}; + +struct rio_net; + +struct rio_driver; + +union rio_pw_msg; + +struct rio_dev { + struct list_head global_list; + struct list_head net_list; + struct rio_net *net; + bool do_enum; + u16 did; + u16 vid; + u32 device_rev; + u16 asm_did; + u16 asm_vid; + u16 asm_rev; + u16 efptr; + u32 pef; + u32 swpinfo; + u32 src_ops; + u32 dst_ops; + u32 comp_tag; + u32 phys_efptr; + u32 phys_rmap; + u32 em_efptr; + u64 dma_mask; + struct rio_driver *driver; + struct device dev; + struct resource riores[16]; + int (*pwcback)(struct rio_dev *, union rio_pw_msg *, int); + u16 destid; + u8 hopcount; + struct rio_dev *prev; + atomic_t state; + struct rio_switch rswitch[0]; +}; + +struct rio_msg { + struct resource *res; + void (*mcback)(struct rio_mport *, void *, int, int); +}; + +struct rio_ops; + +struct rio_scan; + +struct rio_mport { + struct list_head dbells; + struct list_head pwrites; + struct list_head node; + struct list_head nnode; + struct rio_net *net; + struct mutex lock; + struct resource iores; + struct resource riores[16]; + struct rio_msg inb_msg[4]; + struct rio_msg outb_msg[4]; + int host_deviceid; + struct rio_ops *ops; + unsigned char id; + unsigned char index; + unsigned int sys_size; + u32 phys_efptr; + u32 phys_rmap; + unsigned char name[40]; + struct device dev; + void *priv; + struct dma_device dma; + struct rio_scan *nscan; + atomic_t state; + unsigned int pwe_refcnt; +}; + +struct rio_net { + struct list_head node; + struct list_head devices; + struct list_head switches; + struct list_head mports; + struct rio_mport *hport; + unsigned char id; + struct device dev; + void *enum_data; + void (*release)(struct rio_net *); +}; + +struct rio_driver { + struct list_head node; + char *name; + const struct rio_device_id *id_table; + int (*probe)(struct rio_dev *, const struct rio_device_id *); + void (*remove)(struct rio_dev *); + void (*shutdown)(struct rio_dev *); + int (*suspend)(struct rio_dev *, u32); + int (*resume)(struct rio_dev *); + int (*enable_wake)(struct rio_dev *, u32, int); + struct device_driver driver; +}; + +union rio_pw_msg { + struct { + u32 comptag; + u32 errdetect; + u32 is_port; + u32 ltlerrdet; + u32 padding[12]; + } em; + u32 raw[16]; +}; + +struct rio_mport_attr; + +struct rio_ops { + int (*lcread)(struct rio_mport *, int, u32, int, u32 *); + int (*lcwrite)(struct rio_mport *, int, u32, int, u32); + int (*cread)(struct rio_mport *, int, u16, u8, u32, int, u32 *); + int (*cwrite)(struct rio_mport *, int, u16, u8, u32, int, u32); + int (*dsend)(struct rio_mport *, int, u16, u16); + int (*pwenable)(struct rio_mport *, int); + int (*open_outb_mbox)(struct rio_mport *, void *, int, int); + void (*close_outb_mbox)(struct rio_mport *, int); + int (*open_inb_mbox)(struct rio_mport *, void *, int, int); + void (*close_inb_mbox)(struct rio_mport *, int); + int (*add_outb_message)(struct rio_mport *, struct rio_dev *, int, void *, size_t); + int (*add_inb_buffer)(struct rio_mport *, int, void *); + void * (*get_inb_message)(struct rio_mport *, int); + int (*map_inb)(struct rio_mport *, dma_addr_t, u64, u64, u32); + void (*unmap_inb)(struct rio_mport *, dma_addr_t); + int (*query_mport)(struct rio_mport *, struct rio_mport_attr *); + int (*map_outb)(struct rio_mport *, u16, u64, u32, u32, dma_addr_t *); + void (*unmap_outb)(struct rio_mport *, u16, u64); +}; + +struct rio_scan { + struct module *owner; + int (*enumerate)(struct rio_mport *, u32); + int (*discover)(struct rio_mport *, u32); +}; + +struct rio_mport_attr { + int flags; + int link_speed; + int link_width; + int dma_max_sge; + int dma_max_size; + int dma_align; +}; + +enum vesa_blank_mode { + VESA_NO_BLANKING = 0, + VESA_VSYNC_SUSPEND = 1, + VESA_HSYNC_SUSPEND = 2, + VESA_POWERDOWN = 3, + VESA_BLANK_MAX = 3, +}; + +enum con_scroll { + SM_UP = 0, + SM_DOWN = 1, +}; + +enum vc_intensity { + VCI_HALF_BRIGHT = 0, + VCI_NORMAL = 1, + VCI_BOLD = 2, + VCI_MASK = 3, +}; + +struct vc_data; + +struct console_font; + +struct consw { + struct module *owner; + const char * (*con_startup)(void); + void (*con_init)(struct vc_data *, bool); + void (*con_deinit)(struct vc_data *); + void (*con_clear)(struct vc_data *, unsigned int, unsigned int, unsigned int); + void (*con_putc)(struct vc_data *, u16, unsigned int, unsigned int); + void (*con_putcs)(struct vc_data *, const u16 *, unsigned int, unsigned int, unsigned int); + void (*con_cursor)(struct vc_data *, bool); + bool (*con_scroll)(struct vc_data *, unsigned int, unsigned int, enum con_scroll, unsigned int); + bool (*con_switch)(struct vc_data *); + bool (*con_blank)(struct vc_data *, enum vesa_blank_mode, bool); + int (*con_font_set)(struct vc_data *, const struct console_font *, unsigned int, unsigned int); + int (*con_font_get)(struct vc_data *, struct console_font *, unsigned int); + int (*con_font_default)(struct vc_data *, struct console_font *, const char *); + int (*con_resize)(struct vc_data *, unsigned int, unsigned int, bool); + void (*con_set_palette)(struct vc_data *, const unsigned char *); + void (*con_scrolldelta)(struct vc_data *, int); + bool (*con_set_origin)(struct vc_data *); + void (*con_save_screen)(struct vc_data *); + u8 (*con_build_attr)(struct vc_data *, u8, enum vc_intensity, bool, bool, bool, bool); + void (*con_invert_region)(struct vc_data *, u16 *, int); + void (*con_debug_enter)(struct vc_data *); + void (*con_debug_leave)(struct vc_data *); +}; + +struct vc_state { + unsigned int x; + unsigned int y; + unsigned char color; + unsigned char Gx_charset[2]; + unsigned int charset: 1; + enum vc_intensity intensity; + bool italic; + bool underline; + bool blink; + bool reverse; +}; + +struct console_font { + unsigned int width; + unsigned int height; + unsigned int charcount; + unsigned char *data; +}; + +struct vt_mode { + __u8 mode; + __u8 waitv; + __s16 relsig; + __s16 acqsig; + __s16 frsig; +}; + +struct uni_pagedict; + +struct vc_data { + struct tty_port port; + struct vc_state state; + struct vc_state saved_state; + short unsigned int vc_num; + unsigned int vc_cols; + unsigned int vc_rows; + unsigned int vc_size_row; + unsigned int vc_scan_lines; + unsigned int vc_cell_height; + long unsigned int vc_origin; + long unsigned int vc_scr_end; + long unsigned int vc_visible_origin; + unsigned int vc_top; + unsigned int vc_bottom; + const struct consw *vc_sw; + short unsigned int *vc_screenbuf; + unsigned int vc_screenbuf_size; + unsigned char vc_mode; + unsigned char vc_attr; + unsigned char vc_def_color; + unsigned char vc_ulcolor; + unsigned char vc_itcolor; + unsigned char vc_halfcolor; + unsigned int vc_cursor_type; + short unsigned int vc_complement_mask; + short unsigned int vc_s_complement_mask; + long unsigned int vc_pos; + short unsigned int vc_hi_font_mask; + struct console_font vc_font; + short unsigned int vc_video_erase_char; + unsigned int vc_state; + unsigned int vc_npar; + unsigned int vc_par[16]; + struct vt_mode vt_mode; + struct pid *vt_pid; + int vt_newvt; + wait_queue_head_t paste_wait; + unsigned int vc_disp_ctrl: 1; + unsigned int vc_toggle_meta: 1; + unsigned int vc_decscnm: 1; + unsigned int vc_decom: 1; + unsigned int vc_decawm: 1; + unsigned int vc_deccm: 1; + unsigned int vc_decim: 1; + unsigned int vc_priv: 3; + unsigned int vc_need_wrap: 1; + unsigned int vc_can_do_color: 1; + unsigned int vc_report_mouse: 2; + unsigned int vc_bracketed_paste: 1; + unsigned char vc_utf: 1; + unsigned char vc_utf_count; + int vc_utf_char; + long unsigned int vc_tab_stop[4]; + unsigned char vc_palette[48]; + short unsigned int *vc_translate; + unsigned int vc_bell_pitch; + unsigned int vc_bell_duration; + short unsigned int vc_cur_blink_ms; + struct vc_data **vc_display_fg; + struct uni_pagedict *uni_pagedict; + struct uni_pagedict **uni_pagedict_loc; + u32 **vc_uni_lines; +}; + +struct fb_fix_screeninfo { + char id[16]; + long unsigned int smem_start; + __u32 smem_len; + __u32 type; + __u32 type_aux; + __u32 visual; + __u16 xpanstep; + __u16 ypanstep; + __u16 ywrapstep; + __u32 line_length; + long unsigned int mmio_start; + __u32 mmio_len; + __u32 accel; + __u16 capabilities; + __u16 reserved[2]; +}; + +struct fb_bitfield { + __u32 offset; + __u32 length; + __u32 msb_right; +}; + +struct fb_var_screeninfo { + __u32 xres; + __u32 yres; + __u32 xres_virtual; + __u32 yres_virtual; + __u32 xoffset; + __u32 yoffset; + __u32 bits_per_pixel; + __u32 grayscale; + struct fb_bitfield red; + struct fb_bitfield green; + struct fb_bitfield blue; + struct fb_bitfield transp; + __u32 nonstd; + __u32 activate; + __u32 height; + __u32 width; + __u32 accel_flags; + __u32 pixclock; + __u32 left_margin; + __u32 right_margin; + __u32 upper_margin; + __u32 lower_margin; + __u32 hsync_len; + __u32 vsync_len; + __u32 sync; + __u32 vmode; + __u32 rotate; + __u32 colorspace; + __u32 reserved[4]; +}; + +struct fb_cmap { + __u32 start; + __u32 len; + __u16 *red; + __u16 *green; + __u16 *blue; + __u16 *transp; +}; + +enum { + FB_BLANK_UNBLANK = 0, + FB_BLANK_NORMAL = 1, + FB_BLANK_VSYNC_SUSPEND = 2, + FB_BLANK_HSYNC_SUSPEND = 3, + FB_BLANK_POWERDOWN = 4, +}; + +struct fb_copyarea { + __u32 dx; + __u32 dy; + __u32 width; + __u32 height; + __u32 sx; + __u32 sy; +}; + +struct fb_fillrect { + __u32 dx; + __u32 dy; + __u32 width; + __u32 height; + __u32 color; + __u32 rop; +}; + +struct fb_image { + __u32 dx; + __u32 dy; + __u32 width; + __u32 height; + __u32 fg_color; + __u32 bg_color; + __u8 depth; + const char *data; + struct fb_cmap cmap; +}; + +struct fbcurpos { + __u16 x; + __u16 y; +}; + +struct fb_cursor { + __u16 set; + __u16 enable; + __u16 rop; + const char *mask; + struct fbcurpos hot; + struct fb_image image; +}; + +struct fb_chroma { + __u32 redx; + __u32 greenx; + __u32 bluex; + __u32 whitex; + __u32 redy; + __u32 greeny; + __u32 bluey; + __u32 whitey; +}; + +struct fb_videomode; + +struct fb_monspecs { + struct fb_chroma chroma; + struct fb_videomode *modedb; + __u8 manufacturer[4]; + __u8 monitor[14]; + __u8 serial_no[14]; + __u8 ascii[14]; + __u32 modedb_len; + __u32 model; + __u32 serial; + __u32 year; + __u32 week; + __u32 hfmin; + __u32 hfmax; + __u32 dclkmin; + __u32 dclkmax; + __u16 input; + __u16 dpms; + __u16 signal; + __u16 vfmin; + __u16 vfmax; + __u16 gamma; + __u16 gtf: 1; + __u16 misc; + __u8 version; + __u8 revision; + __u8 max_x; + __u8 max_y; +}; + +struct fb_videomode { + const char *name; + u32 refresh; + u32 xres; + u32 yres; + u32 pixclock; + u32 left_margin; + u32 right_margin; + u32 upper_margin; + u32 lower_margin; + u32 hsync_len; + u32 vsync_len; + u32 sync; + u32 vmode; + u32 flag; +}; + +struct fb_info; + +struct fb_pixmap { + u8 *addr; + u32 size; + u32 offset; + u32 buf_align; + u32 scan_align; + u32 access_align; + u32 flags; + long unsigned int blit_x[1]; + long unsigned int blit_y[2]; + void (*writeio)(struct fb_info *, void *, void *, unsigned int); + void (*readio)(struct fb_info *, void *, void *, unsigned int); +}; + +struct backlight_device; + +struct lcd_device; + +struct fb_deferred_io_pageref; + +struct fb_deferred_io; + +struct fb_ops; + +struct fb_tile_ops; + +struct fb_info { + refcount_t count; + int node; + int flags; + int fbcon_rotate_hint; + struct mutex lock; + struct mutex mm_lock; + struct fb_var_screeninfo var; + struct fb_fix_screeninfo fix; + struct fb_monspecs monspecs; + struct fb_pixmap pixmap; + struct fb_pixmap sprite; + struct fb_cmap cmap; + struct list_head modelist; + struct fb_videomode *mode; + int blank; + struct backlight_device *bl_dev; + struct mutex bl_curve_mutex; + u8 bl_curve[128]; + struct lcd_device *lcd_dev; + struct delayed_work deferred_work; + long unsigned int npagerefs; + struct fb_deferred_io_pageref *pagerefs; + struct fb_deferred_io *fbdefio; + const struct fb_ops *fbops; + struct device *device; + struct device *dev; + int class_flag; + struct fb_tile_ops *tileops; + union { + char *screen_base; + char *screen_buffer; + }; + long unsigned int screen_size; + void *pseudo_palette; + u32 state; + void *fbcon_par; + void *par; + bool skip_vt_switch; + bool skip_panic; +}; + +struct fb_blit_caps { + long unsigned int x[1]; + long unsigned int y[2]; + u32 len; + u32 flags; +}; + +struct fb_deferred_io_pageref { + struct page *page; + long unsigned int offset; + struct list_head list; +}; + +struct fb_deferred_io { + long unsigned int delay; + bool sort_pagereflist; + int open_count; + struct mutex lock; + struct list_head pagereflist; + struct address_space *mapping; + struct page * (*get_page)(struct fb_info *, long unsigned int); + void (*deferred_io)(struct fb_info *, struct list_head *); +}; + +struct fb_ops { + struct module *owner; + int (*fb_open)(struct fb_info *, int); + int (*fb_release)(struct fb_info *, int); + ssize_t (*fb_read)(struct fb_info *, char *, size_t, loff_t *); + ssize_t (*fb_write)(struct fb_info *, const char *, size_t, loff_t *); + int (*fb_check_var)(struct fb_var_screeninfo *, struct fb_info *); + int (*fb_set_par)(struct fb_info *); + int (*fb_setcolreg)(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, struct fb_info *); + int (*fb_setcmap)(struct fb_cmap *, struct fb_info *); + int (*fb_blank)(int, struct fb_info *); + int (*fb_pan_display)(struct fb_var_screeninfo *, struct fb_info *); + void (*fb_fillrect)(struct fb_info *, const struct fb_fillrect *); + void (*fb_copyarea)(struct fb_info *, const struct fb_copyarea *); + void (*fb_imageblit)(struct fb_info *, const struct fb_image *); + int (*fb_cursor)(struct fb_info *, struct fb_cursor *); + int (*fb_sync)(struct fb_info *); + int (*fb_ioctl)(struct fb_info *, unsigned int, long unsigned int); + int (*fb_compat_ioctl)(struct fb_info *, unsigned int, long unsigned int); + int (*fb_mmap)(struct fb_info *, struct vm_area_struct *); + void (*fb_get_caps)(struct fb_info *, struct fb_blit_caps *, struct fb_var_screeninfo *); + void (*fb_destroy)(struct fb_info *); + int (*fb_debug_enter)(struct fb_info *); + int (*fb_debug_leave)(struct fb_info *); +}; + +struct fb_tilemap { + __u32 width; + __u32 height; + __u32 depth; + __u32 length; + const __u8 *data; +}; + +struct fb_tilerect { + __u32 sx; + __u32 sy; + __u32 width; + __u32 height; + __u32 index; + __u32 fg; + __u32 bg; + __u32 rop; +}; + +struct fb_tilearea { + __u32 sx; + __u32 sy; + __u32 dx; + __u32 dy; + __u32 width; + __u32 height; +}; + +struct fb_tileblit { + __u32 sx; + __u32 sy; + __u32 width; + __u32 height; + __u32 fg; + __u32 bg; + __u32 length; + __u32 *indices; +}; + +struct fb_tilecursor { + __u32 sx; + __u32 sy; + __u32 mode; + __u32 shape; + __u32 fg; + __u32 bg; +}; + +struct fb_tile_ops { + void (*fb_settile)(struct fb_info *, struct fb_tilemap *); + void (*fb_tilecopy)(struct fb_info *, struct fb_tilearea *); + void (*fb_tilefill)(struct fb_info *, struct fb_tilerect *); + void (*fb_tileblit)(struct fb_info *, struct fb_tileblit *); + void (*fb_tilecursor)(struct fb_info *, struct fb_tilecursor *); + int (*fb_get_tilemax)(struct fb_info *); +}; + +struct lcd_properties { + int max_contrast; +}; + +struct lcd_ops; + +struct lcd_device { + struct lcd_properties props; + struct mutex ops_lock; + const struct lcd_ops *ops; + struct mutex update_lock; + struct list_head entry; + struct device dev; +}; + +struct fb_modelist { + struct list_head list; + struct fb_videomode mode; +}; + +struct lcd_ops { + int (*get_power)(struct lcd_device *); + int (*set_power)(struct lcd_device *, int); + int (*get_contrast)(struct lcd_device *); + int (*set_contrast)(struct lcd_device *, int); + int (*set_mode)(struct lcd_device *, u32, u32); + bool (*controls_device)(struct lcd_device *, struct device *); +}; + +struct dmt_videomode { + u32 dmt_id; + u32 std_2byte_code; + u32 cvt_3byte_code; + const struct fb_videomode *mode; +}; + +enum display_flags { + DISPLAY_FLAGS_HSYNC_LOW = 1, + DISPLAY_FLAGS_HSYNC_HIGH = 2, + DISPLAY_FLAGS_VSYNC_LOW = 4, + DISPLAY_FLAGS_VSYNC_HIGH = 8, + DISPLAY_FLAGS_DE_LOW = 16, + DISPLAY_FLAGS_DE_HIGH = 32, + DISPLAY_FLAGS_PIXDATA_POSEDGE = 64, + DISPLAY_FLAGS_PIXDATA_NEGEDGE = 128, + DISPLAY_FLAGS_INTERLACED = 256, + DISPLAY_FLAGS_DOUBLESCAN = 512, + DISPLAY_FLAGS_DOUBLECLK = 1024, + DISPLAY_FLAGS_SYNC_POSEDGE = 2048, + DISPLAY_FLAGS_SYNC_NEGEDGE = 4096, +}; + +struct videomode { + long unsigned int pixelclock; + u32 hactive; + u32 hfront_porch; + u32 hback_porch; + u32 hsync_len; + u32 vactive; + u32 vfront_porch; + u32 vback_porch; + u32 vsync_len; + enum display_flags flags; +}; + +struct broken_edid { + u8 manufacturer[4]; + u32 model; + u32 fix; +}; + +struct __fb_timings { + u32 dclk; + u32 hfreq; + u32 vfreq; + u32 hactive; + u32 vactive; + u32 hblank; + u32 vblank; + u32 htotal; + u32 vtotal; +}; + +typedef unsigned char u_char; + +struct fbcon_display { + const u_char *fontdata; + int userfont; + u_short inverse; + short int yscroll; + int vrows; + int cursor_shape; + int con_rotate; + u32 xres_virtual; + u32 yres_virtual; + u32 height; + u32 width; + u32 bits_per_pixel; + u32 grayscale; + u32 nonstd; + u32 accel_flags; + u32 rotate; + struct fb_bitfield red; + struct fb_bitfield green; + struct fb_bitfield blue; + struct fb_bitfield transp; + const struct fb_videomode *mode; +}; + +struct fbcon_ops { + void (*bmove)(struct vc_data *, struct fb_info *, int, int, int, int, int, int); + void (*clear)(struct vc_data *, struct fb_info *, int, int, int, int, int, int); + void (*putcs)(struct vc_data *, struct fb_info *, const short unsigned int *, int, int, int, int, int); + void (*clear_margins)(struct vc_data *, struct fb_info *, int, int); + void (*cursor)(struct vc_data *, struct fb_info *, bool, int, int); + int (*update_start)(struct fb_info *); + int (*rotate_font)(struct fb_info *, struct vc_data *); + struct fb_var_screeninfo var; + struct delayed_work cursor_work; + struct fb_cursor cursor_state; + struct fbcon_display *p; + struct fb_info *info; + int currcon; + int cur_blink_jiffies; + int cursor_flash; + int cursor_reset; + int blank_state; + int graphics; + int save_graphics; + bool initialized; + int rotate; + int cur_rotate; + char *cursor_data; + u8 *fontbuffer; + u8 *fontdata; + u8 *cursor_src; + u32 cursor_size; + u32 fd_size; +}; + +struct fb_address { + void *address; + int bits; +}; + +struct fb_reverse { + bool byte; + bool pixel; +}; + +struct fb_pattern { + long unsigned int pixels; + int left; + int right; + struct fb_reverse reverse; +}; + +struct fb_bitmap_iter { + const u8 *data; + long unsigned int colors[2]; + int width; + int i; +}; + +struct fb_color_iter { + const u8 *data; + const u32 *palette; + struct fb_reverse reverse; + int shift; + int width; + int i; +}; + +struct fb_bitmap4x_iter { + const u8 *data; + u32 fgxcolor; + u32 bgcolor; + int width; + int i; + const u32 *expand; + int bpp; + bool top; +}; + +struct timing_entry { + u32 min; + u32 typ; + u32 max; +}; + +struct display_timing { + struct timing_entry pixelclock; + struct timing_entry hactive; + struct timing_entry hfront_porch; + struct timing_entry hback_porch; + struct timing_entry hsync_len; + struct timing_entry vactive; + struct timing_entry vfront_porch; + struct timing_entry vback_porch; + struct timing_entry vsync_len; + enum display_flags flags; +}; + +struct display_timings { + unsigned int num_timings; + unsigned int native_mode; + struct display_timing **timings; +}; + +enum idle_boot_override { + IDLE_NO_OVERRIDE = 0, + IDLE_HALT = 1, + IDLE_NOMWAIT = 2, + IDLE_POLL = 3, +}; + +typedef u32 phys_cpuid_t; + +enum tick_broadcast_mode { + TICK_BROADCAST_OFF = 0, + TICK_BROADCAST_ON = 1, + TICK_BROADCAST_FORCE = 2, +}; + +struct thermal_cooling_device_ops; + +struct thermal_cooling_device { + int id; + const char *type; + long unsigned int max_state; + struct device device; + struct device_node *np; + void *devdata; + void *stats; + const struct thermal_cooling_device_ops *ops; + bool updated; + struct mutex lock; + struct list_head thermal_instances; + struct list_head node; +}; + +enum { + C1E_PROMOTION_PRESERVE = 0, + C1E_PROMOTION_ENABLE = 1, + C1E_PROMOTION_DISABLE = 2, +}; + +struct idle_cpu { + struct cpuidle_state *state_table; + long unsigned int auto_demotion_disable_flags; + bool disable_promotion_to_c1e; + bool c1_demotion_supported; + bool use_acpi; +}; + +struct thermal_cooling_device_ops { + int (*get_max_state)(struct thermal_cooling_device *, long unsigned int *); + int (*get_cur_state)(struct thermal_cooling_device *, long unsigned int *); + int (*set_cur_state)(struct thermal_cooling_device *, long unsigned int); + int (*get_requested_power)(struct thermal_cooling_device *, u32 *); + int (*state2power)(struct thermal_cooling_device *, long unsigned int, u32 *); + int (*power2state)(struct thermal_cooling_device *, u32, long unsigned int *); +}; + +struct acpi_processor_cx { + u8 valid; + u8 type; + u32 address; + u8 entry_method; + u8 index; + u32 latency; + u8 bm_sts_skip; + char desc[32]; +}; + +struct acpi_lpi_state { + u32 min_residency; + u32 wake_latency; + u32 flags; + u32 arch_flags; + u32 res_cnt_freq; + u32 enable_parent_state; + u64 address; + u8 index; + u8 entry_method; + char desc[32]; +}; + +struct acpi_processor_power { + int count; + union { + struct acpi_processor_cx states[8]; + struct acpi_lpi_state lpi_states[8]; + }; + int timer_broadcast_on_state; +}; + +struct acpi_psd_package { + u64 num_entries; + u64 revision; + u64 domain; + u64 coord_type; + u64 num_processors; +}; + +struct acpi_pct_register { + u8 descriptor; + u16 length; + u8 space_id; + u8 bit_width; + u8 bit_offset; + u8 reserved; + u64 address; +} __attribute__((packed)); + +struct acpi_processor_px { + u64 core_frequency; + u64 power; + u64 transition_latency; + u64 bus_master_latency; + u64 control; + u64 status; +}; + +struct acpi_processor_performance { + unsigned int state; + unsigned int platform_limit; + struct acpi_pct_register control_register; + struct acpi_pct_register status_register; + unsigned int state_count; + struct acpi_processor_px *states; + struct acpi_psd_package domain_info; + cpumask_var_t shared_cpu_map; + unsigned int shared_type; +}; + +struct acpi_tsd_package { + u64 num_entries; + u64 revision; + u64 domain; + u64 coord_type; + u64 num_processors; +}; + +struct acpi_processor_tx_tss { + u64 freqpercentage; + u64 power; + u64 transition_latency; + u64 control; + u64 status; +}; + +struct acpi_processor_tx { + u16 power; + u16 performance; +}; + +struct acpi_processor; + +struct acpi_processor_throttling { + unsigned int state; + unsigned int platform_limit; + struct acpi_pct_register control_register; + struct acpi_pct_register status_register; + unsigned int state_count; + struct acpi_processor_tx_tss *states_tss; + struct acpi_tsd_package domain_info; + cpumask_var_t shared_cpu_map; + int (*acpi_processor_get_throttling)(struct acpi_processor *); + int (*acpi_processor_set_throttling)(struct acpi_processor *, int, bool); + u32 address; + u8 duty_offset; + u8 duty_width; + u8 tsd_valid_flag; + unsigned int shared_type; + struct acpi_processor_tx states[16]; +}; + +struct acpi_processor_flags { + u8 power: 1; + u8 performance: 1; + u8 throttling: 1; + u8 limit: 1; + u8 bm_control: 1; + u8 bm_check: 1; + u8 has_cst: 1; + u8 has_lpi: 1; + u8 power_setup_done: 1; + u8 bm_rld_set: 1; + u8 previously_online: 1; +}; + +struct acpi_processor_lx { + int px; + int tx; +}; + +struct acpi_processor_limit { + struct acpi_processor_lx state; + struct acpi_processor_lx thermal; + struct acpi_processor_lx user; +}; + +struct acpi_processor { + acpi_handle handle; + u32 acpi_id; + phys_cpuid_t phys_id; + u32 id; + u32 pblk; + int performance_platform_limit; + int throttling_platform_limit; + struct acpi_processor_flags flags; + struct acpi_processor_power power; + struct acpi_processor_performance *performance; + struct acpi_processor_throttling throttling; + struct acpi_processor_limit limit; + struct thermal_cooling_device *cdev; + struct device *dev; + struct freq_qos_request perflib_req; + struct freq_qos_request thermal_req; +}; + +struct nvs_region { + __u64 phys_start; + __u64 size; + struct list_head node; +}; + +struct nvs_page { + long unsigned int phys_start; + unsigned int size; + void *kaddr; + void *data; + bool unmap; + struct list_head node; +}; + +struct platform_suspend_ops { + int (*valid)(suspend_state_t); + int (*begin)(suspend_state_t); + int (*prepare)(void); + int (*prepare_late)(void); + int (*enter)(suspend_state_t); + void (*wake)(void); + void (*finish)(void); + bool (*suspend_again)(void); + void (*end)(void); + void (*recover)(void); +}; + +struct platform_s2idle_ops { + int (*begin)(void); + int (*prepare)(void); + int (*prepare_late)(void); + void (*check)(void); + bool (*wake)(void); + void (*restore_early)(void); + void (*restore)(void); + void (*end)(void); +}; + +enum sys_off_mode { + SYS_OFF_MODE_POWER_OFF_PREPARE = 0, + SYS_OFF_MODE_POWER_OFF = 1, + SYS_OFF_MODE_RESTART_PREPARE = 2, + SYS_OFF_MODE_RESTART = 3, +}; + +struct sys_off_data { + int mode; + void *cb_data; + const char *cmd; + struct device *dev; +}; + +typedef u32 acpi_event_status; + +struct acpi_table_facs { + char signature[4]; + u32 length; + u32 hardware_signature; + u32 firmware_waking_vector; + u32 global_lock; + u32 flags; + u64 xfirmware_waking_vector; + u8 version; + u8 reserved[3]; + u32 ospm_flags; + u8 reserved1[24]; +}; + +typedef int (*device_iter_t)(struct device *, void *); + +typedef void (*acpi_notify_handler)(acpi_handle, u32, void *); + +typedef acpi_status (*acpi_table_handler)(u32, void *, void *); + +typedef int (*acpi_op_add)(struct acpi_device *); + +typedef void (*acpi_op_remove)(struct acpi_device *); + +typedef void (*acpi_op_notify)(struct acpi_device *, u32); + +struct acpi_device_ops { + acpi_op_add add; + acpi_op_remove remove; + acpi_op_notify notify; +}; + +struct acpi_driver { + char name[80]; + char class[80]; + const struct acpi_device_id *ids; + unsigned int flags; + struct acpi_device_ops ops; + struct device_driver drv; +}; + +struct acpi_hardware_id { + struct list_head list; + const char *id; +}; + +struct acpi_device_physical_node { + struct list_head node; + struct device *dev; + unsigned int node_id; + bool put_online: 1; +}; + +enum acpi_irq_model_id { + ACPI_IRQ_MODEL_PIC = 0, + ACPI_IRQ_MODEL_IOAPIC = 1, + ACPI_IRQ_MODEL_IOSAPIC = 2, + ACPI_IRQ_MODEL_PLATFORM = 3, + ACPI_IRQ_MODEL_GIC = 4, + ACPI_IRQ_MODEL_LPIC = 5, + ACPI_IRQ_MODEL_RINTC = 6, + ACPI_IRQ_MODEL_COUNT = 7, +}; + +struct acpi_osc_context { + char *uuid_str; + int rev; + struct acpi_buffer cap; + struct acpi_buffer ret; +}; + +struct acpi_dev_walk_context { + int (*fn)(struct acpi_device *, void *); + void *data; +}; + +struct acpi_pld_info { + u8 revision; + u8 ignore_color; + u8 red; + u8 green; + u8 blue; + u16 width; + u16 height; + u8 user_visible; + u8 dock; + u8 lid; + u8 panel; + u8 vertical_position; + u8 horizontal_position; + u8 shape; + u8 group_orientation; + u8 group_token; + u8 group_position; + u8 bay; + u8 ejectable; + u8 ospm_eject_required; + u8 cabinet_number; + u8 card_cage_number; + u8 reference; + u8 rotation; + u8 order; + u8 reserved; + u16 vertical_offset; + u16 horizontal_offset; +}; + +enum v4l2_preemphasis { + V4L2_PREEMPHASIS_DISABLED = 0, + V4L2_PREEMPHASIS_50_uS = 1, + V4L2_PREEMPHASIS_75_uS = 2, +}; + +enum v4l2_av1_segment_feature { + V4L2_AV1_SEG_LVL_ALT_Q = 0, + V4L2_AV1_SEG_LVL_ALT_LF_Y_V = 1, + V4L2_AV1_SEG_LVL_REF_FRAME = 5, + V4L2_AV1_SEG_LVL_REF_SKIP = 6, + V4L2_AV1_SEG_LVL_REF_GLOBALMV = 7, + V4L2_AV1_SEG_LVL_MAX = 8, +}; + +enum v4l2_fwnode_bus_type { + V4L2_FWNODE_BUS_TYPE_GUESS = 0, + V4L2_FWNODE_BUS_TYPE_CSI2_CPHY = 1, + V4L2_FWNODE_BUS_TYPE_CSI1 = 2, + V4L2_FWNODE_BUS_TYPE_CCP2 = 3, + V4L2_FWNODE_BUS_TYPE_CSI2_DPHY = 4, + V4L2_FWNODE_BUS_TYPE_PARALLEL = 5, + V4L2_FWNODE_BUS_TYPE_BT656 = 6, + V4L2_FWNODE_BUS_TYPE_DPI = 7, + NR_OF_V4L2_FWNODE_BUS_TYPE = 8, +}; + +struct crs_csi2_connection { + struct list_head entry; + struct acpi_resource_csi2_serialbus csi2_data; + acpi_handle remote_handle; + char remote_name[0]; +}; + +struct crs_csi2 { + struct list_head entry; + acpi_handle handle; + struct acpi_device_software_nodes *swnodes; + struct list_head connections; + u32 port_count; +}; + +struct csi2_resources_walk_data { + acpi_handle handle; + struct list_head connections; +}; + +struct acpi_pci_link_irq { + u32 active; + u8 triggering; + u8 polarity; + u8 resource_type; + u8 possible_count; + u32 possible[16]; + u8 initialized: 1; + u8 reserved: 7; +}; + +struct acpi_pci_link { + struct list_head list; + struct acpi_device *device; + struct acpi_pci_link_irq irq; + int refcnt; +}; + +struct fch_clk_data { + void *base; + char *name; +}; + +struct platform_device_info { + struct device *parent; + struct fwnode_handle *fwnode; + bool of_node_reused; + const char *name; + int id; + const struct resource *res; + unsigned int num_res; + const void *data; + size_t size_data; + u64 dma_mask; + const struct property_entry *properties; +}; + +struct apd_private_data; + +struct apd_device_desc { + unsigned int fixed_clk_rate; + struct property_entry *properties; + int (*setup)(struct apd_private_data *); +}; + +struct apd_private_data { + struct clk *clk; + struct acpi_device *adev; + const struct apd_device_desc *dev_desc; +}; + +struct acpi_bus_event { + struct list_head node; + acpi_device_class device_class; + acpi_bus_id bus_id; + u32 type; + u32 data; +}; + +struct scm_creds { + u32 pid; + kuid_t uid; + kgid_t gid; +}; + +struct netlink_skb_parms { + struct scm_creds creds; + __u32 portid; + __u32 dst_group; + __u32 flags; + struct sock *sk; + bool nsid_is_set; + int nsid; +}; + +typedef int (*netlink_filter_fn)(struct sock *, struct sk_buff *, void *); + +struct genlmsghdr { + __u8 cmd; + __u8 version; + __u16 reserved; +}; + +struct genl_multicast_group { + char name[16]; + u8 flags; +}; + +struct genl_split_ops; + +struct genl_info; + +struct genl_ops; + +struct genl_small_ops; + +struct genl_family { + unsigned int hdrsize; + char name[16]; + unsigned int version; + unsigned int maxattr; + u8 netnsok: 1; + u8 parallel_ops: 1; + u8 n_ops; + u8 n_small_ops; + u8 n_split_ops; + u8 n_mcgrps; + u8 resv_start_op; + const struct nla_policy *policy; + int (*pre_doit)(const struct genl_split_ops *, struct sk_buff *, struct genl_info *); + void (*post_doit)(const struct genl_split_ops *, struct sk_buff *, struct genl_info *); + int (*bind)(int); + void (*unbind)(int); + const struct genl_ops *ops; + const struct genl_small_ops *small_ops; + const struct genl_split_ops *split_ops; + const struct genl_multicast_group *mcgrps; + struct module *module; + size_t sock_priv_size; + void (*sock_priv_init)(void *); + void (*sock_priv_destroy)(void *); + int id; + unsigned int mcgrp_offset; + struct xarray *sock_privs; +}; + +struct genl_split_ops { + union { + struct { + int (*pre_doit)(const struct genl_split_ops *, struct sk_buff *, struct genl_info *); + int (*doit)(struct sk_buff *, struct genl_info *); + void (*post_doit)(const struct genl_split_ops *, struct sk_buff *, struct genl_info *); + }; + struct { + int (*start)(struct netlink_callback *); + int (*dumpit)(struct sk_buff *, struct netlink_callback *); + int (*done)(struct netlink_callback *); + }; + }; + const struct nla_policy *policy; + unsigned int maxattr; + u8 cmd; + u8 internal_flags; + u8 flags; + u8 validate; +}; + +struct genl_info { + u32 snd_seq; + u32 snd_portid; + const struct genl_family *family; + const struct nlmsghdr *nlhdr; + struct genlmsghdr *genlhdr; + struct nlattr **attrs; + possible_net_t _net; + union { + u8 ctx[48]; + void *user_ptr[2]; + }; + struct netlink_ext_ack *extack; +}; + +struct genl_ops { + int (*doit)(struct sk_buff *, struct genl_info *); + int (*start)(struct netlink_callback *); + int (*dumpit)(struct sk_buff *, struct netlink_callback *); + int (*done)(struct netlink_callback *); + const struct nla_policy *policy; + unsigned int maxattr; + u8 cmd; + u8 internal_flags; + u8 flags; + u8 validate; +}; + +struct genl_small_ops { + int (*doit)(struct sk_buff *, struct genl_info *); + int (*dumpit)(struct sk_buff *, struct netlink_callback *); + u8 cmd; + u8 internal_flags; + u8 flags; + u8 validate; +}; + +struct acpi_genl_event { + acpi_device_class device_class; + char bus_id[15]; + u32 type; + u32 data; +}; + +enum { + ACPI_GENL_ATTR_UNSPEC = 0, + ACPI_GENL_ATTR_EVENT = 1, + __ACPI_GENL_ATTR_MAX = 2, +}; + +enum { + ACPI_GENL_CMD_UNSPEC = 0, + ACPI_GENL_CMD_EVENT = 1, + __ACPI_GENL_CMD_MAX = 2, +}; + +struct acpi_table_wdat { + struct acpi_table_header header; + u32 header_length; + u16 pci_segment; + u8 pci_bus; + u8 pci_device; + u8 pci_function; + u8 reserved[3]; + u32 timer_period; + u32 max_count; + u32 min_count; + u8 flags; + u8 reserved2[3]; + u32 entries; +}; + +struct acpi_wdat_entry { + u8 action; + u8 instruction; + u16 reserved; + struct acpi_generic_address register_region; + u32 value; + u32 mask; +}; + +typedef u16 acpi_owner_id; + +typedef u32 (*acpi_gpe_handler)(acpi_handle, u32, void *); + +union acpi_name_union { + u32 integer; + char ascii[4]; +}; + +union acpi_operand_object; + +struct acpi_namespace_node { + union acpi_operand_object *object; + u8 descriptor_type; + u8 type; + u16 flags; + union acpi_name_union name; + struct acpi_namespace_node *parent; + struct acpi_namespace_node *child; + struct acpi_namespace_node *peer; + acpi_owner_id owner_id; +}; + +struct acpi_object_common { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; +}; + +struct acpi_object_integer { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + u8 fill[3]; + u64 value; +}; + +struct acpi_object_string { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + char *pointer; + u32 length; +}; + +struct acpi_object_buffer { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + u8 *pointer; + u32 length; + u32 aml_length; + u8 *aml_start; + struct acpi_namespace_node *node; +}; + +struct acpi_object_package { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + struct acpi_namespace_node *node; + union acpi_operand_object **elements; + u8 *aml_start; + u32 aml_length; + u32 count; +}; + +struct acpi_object_event { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + void *os_semaphore; +}; + +struct acpi_walk_state; + +typedef acpi_status (*acpi_internal_method)(struct acpi_walk_state *); + +struct acpi_object_method { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + u8 info_flags; + u8 param_count; + u8 sync_level; + union acpi_operand_object *mutex; + union acpi_operand_object *node; + u8 *aml_start; + union { + acpi_internal_method implementation; + union acpi_operand_object *handler; + } dispatch; + u32 aml_length; + acpi_owner_id owner_id; + u8 thread_count; +}; + +struct acpi_thread_state; + +struct acpi_object_mutex { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + u8 sync_level; + u16 acquisition_depth; + void *os_mutex; + u64 thread_id; + struct acpi_thread_state *owner_thread; + union acpi_operand_object *prev; + union acpi_operand_object *next; + struct acpi_namespace_node *node; + u8 original_sync_level; +}; + +struct acpi_object_region { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + u8 space_id; + struct acpi_namespace_node *node; + union acpi_operand_object *handler; + union acpi_operand_object *next; + acpi_physical_address address; + u32 length; + void *pointer; +}; + +struct acpi_object_notify_common { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + union acpi_operand_object *notify_list[2]; + union acpi_operand_object *handler; +}; + +struct acpi_gpe_block_info; + +struct acpi_object_device { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + union acpi_operand_object *notify_list[2]; + union acpi_operand_object *handler; + struct acpi_gpe_block_info *gpe_block; +}; + +struct acpi_object_power_resource { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + union acpi_operand_object *notify_list[2]; + union acpi_operand_object *handler; + u32 system_level; + u32 resource_order; +}; + +struct acpi_object_processor { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + u8 proc_id; + u8 length; + union acpi_operand_object *notify_list[2]; + union acpi_operand_object *handler; + acpi_io_address address; +}; + +struct acpi_object_thermal_zone { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + union acpi_operand_object *notify_list[2]; + union acpi_operand_object *handler; +}; + +struct acpi_object_field_common { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + u8 field_flags; + u8 attribute; + u8 access_byte_width; + struct acpi_namespace_node *node; + u32 bit_length; + u32 base_byte_offset; + u32 value; + u8 start_field_bit_offset; + u8 access_length; + union acpi_operand_object *region_obj; +}; + +struct acpi_object_region_field { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + u8 field_flags; + u8 attribute; + u8 access_byte_width; + struct acpi_namespace_node *node; + u32 bit_length; + u32 base_byte_offset; + u32 value; + u8 start_field_bit_offset; + u8 access_length; + u16 resource_length; + union acpi_operand_object *region_obj; + u8 *resource_buffer; + u16 pin_number_index; + u8 *internal_pcc_buffer; +}; + +struct acpi_object_buffer_field { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + u8 field_flags; + u8 attribute; + u8 access_byte_width; + struct acpi_namespace_node *node; + u32 bit_length; + u32 base_byte_offset; + u32 value; + u8 start_field_bit_offset; + u8 access_length; + u8 is_create_field; + union acpi_operand_object *buffer_obj; +}; + +struct acpi_object_bank_field { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + u8 field_flags; + u8 attribute; + u8 access_byte_width; + struct acpi_namespace_node *node; + u32 bit_length; + u32 base_byte_offset; + u32 value; + u8 start_field_bit_offset; + u8 access_length; + union acpi_operand_object *region_obj; + union acpi_operand_object *bank_obj; +}; + +struct acpi_object_index_field { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + u8 field_flags; + u8 attribute; + u8 access_byte_width; + struct acpi_namespace_node *node; + u32 bit_length; + u32 base_byte_offset; + u32 value; + u8 start_field_bit_offset; + u8 access_length; + union acpi_operand_object *index_obj; + union acpi_operand_object *data_obj; +}; + +struct acpi_object_notify_handler { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + struct acpi_namespace_node *node; + u32 handler_type; + acpi_notify_handler handler; + void *context; + union acpi_operand_object *next[2]; +}; + +struct acpi_object_addr_handler { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + u8 space_id; + u8 handler_flags; + acpi_adr_space_handler handler; + struct acpi_namespace_node *node; + void *context; + void *context_mutex; + acpi_adr_space_setup setup; + union acpi_operand_object *region_list; + union acpi_operand_object *next; +}; + +struct acpi_object_reference { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + u8 class; + u8 target_type; + u8 resolved; + void *object; + struct acpi_namespace_node *node; + union acpi_operand_object **where; + u8 *index_pointer; + u8 *aml; + u32 value; +}; + +struct acpi_object_extra { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + struct acpi_namespace_node *method_REG; + struct acpi_namespace_node *scope_node; + void *region_context; + u8 *aml_start; + u32 aml_length; +}; + +struct acpi_object_data { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + acpi_object_handler handler; + void *pointer; +}; + +struct acpi_object_cache_list { + union acpi_operand_object *next_object; + u8 descriptor_type; + u8 type; + u16 reference_count; + u8 flags; + union acpi_operand_object *next; +}; + +union acpi_operand_object { + struct acpi_object_common common; + struct acpi_object_integer integer; + struct acpi_object_string string; + struct acpi_object_buffer buffer; + struct acpi_object_package package; + struct acpi_object_event event; + struct acpi_object_method method; + struct acpi_object_mutex mutex; + struct acpi_object_region region; + struct acpi_object_notify_common common_notify; + struct acpi_object_device device; + struct acpi_object_power_resource power_resource; + struct acpi_object_processor processor; + struct acpi_object_thermal_zone thermal_zone; + struct acpi_object_field_common common_field; + struct acpi_object_region_field field; + struct acpi_object_buffer_field buffer_field; + struct acpi_object_bank_field bank_field; + struct acpi_object_index_field index_field; + struct acpi_object_notify_handler notify; + struct acpi_object_addr_handler address_space; + struct acpi_object_reference reference; + struct acpi_object_extra extra; + struct acpi_object_data data; + struct acpi_object_cache_list cache; + struct acpi_namespace_node node; +}; + +union acpi_parse_object; + +union acpi_generic_state; + +struct acpi_parse_state { + u8 *aml_start; + u8 *aml; + u8 *aml_end; + u8 *pkg_start; + u8 *pkg_end; + union acpi_parse_object *start_op; + struct acpi_namespace_node *start_node; + union acpi_generic_state *scope; + union acpi_parse_object *start_scope; + u32 aml_size; +}; + +typedef acpi_status (*acpi_parse_downwards)(struct acpi_walk_state *, union acpi_parse_object **); + +typedef acpi_status (*acpi_parse_upwards)(struct acpi_walk_state *); + +struct acpi_opcode_info; + +struct acpi_walk_state { + struct acpi_walk_state *next; + u8 descriptor_type; + u8 walk_type; + u16 opcode; + u8 next_op_info; + u8 num_operands; + u8 operand_index; + acpi_owner_id owner_id; + u8 last_predicate; + u8 current_result; + u8 return_used; + u8 scope_depth; + u8 pass_number; + u8 namespace_override; + u8 result_size; + u8 result_count; + u8 *aml; + u32 arg_types; + u32 method_breakpoint; + u32 user_breakpoint; + u32 parse_flags; + struct acpi_parse_state parser_state; + u32 prev_arg_types; + u32 arg_count; + u16 method_nesting_depth; + u8 method_is_nested; + struct acpi_namespace_node arguments[7]; + struct acpi_namespace_node local_variables[8]; + union acpi_operand_object *operands[9]; + union acpi_operand_object **params; + u8 *aml_last_while; + union acpi_operand_object **caller_return_desc; + union acpi_generic_state *control_state; + struct acpi_namespace_node *deferred_node; + union acpi_operand_object *implicit_return_obj; + struct acpi_namespace_node *method_call_node; + union acpi_parse_object *method_call_op; + union acpi_operand_object *method_desc; + struct acpi_namespace_node *method_node; + char *method_pathname; + union acpi_parse_object *op; + const struct acpi_opcode_info *op_info; + union acpi_parse_object *origin; + union acpi_operand_object *result_obj; + union acpi_generic_state *results; + union acpi_operand_object *return_desc; + union acpi_generic_state *scope_info; + union acpi_parse_object *prev_op; + union acpi_parse_object *next_op; + struct acpi_thread_state *thread; + acpi_parse_downwards descending_callback; + acpi_parse_upwards ascending_callback; +}; + +struct acpi_gpe_handler_info { + acpi_gpe_handler address; + void *context; + struct acpi_namespace_node *method_node; + u8 original_flags; + u8 originally_enabled; +}; + +struct acpi_gpe_notify_info { + struct acpi_namespace_node *device_node; + struct acpi_gpe_notify_info *next; +}; + +union acpi_gpe_dispatch_info { + struct acpi_namespace_node *method_node; + struct acpi_gpe_handler_info *handler; + struct acpi_gpe_notify_info *notify_list; +}; + +struct acpi_gpe_register_info; + +struct acpi_gpe_event_info { + union acpi_gpe_dispatch_info dispatch; + struct acpi_gpe_register_info *register_info; + u8 flags; + u8 gpe_number; + u8 runtime_count; + u8 disable_for_dispatch; +}; + +struct acpi_gpe_address { + u8 space_id; + u64 address; +}; + +struct acpi_gpe_register_info { + struct acpi_gpe_address status_address; + struct acpi_gpe_address enable_address; + u16 base_gpe_number; + u8 enable_for_wake; + u8 enable_for_run; + u8 mask_for_run; + u8 enable_mask; +}; + +struct acpi_gpe_xrupt_info; + +struct acpi_gpe_block_info { + struct acpi_namespace_node *node; + struct acpi_gpe_block_info *previous; + struct acpi_gpe_block_info *next; + struct acpi_gpe_xrupt_info *xrupt_block; + struct acpi_gpe_register_info *register_info; + struct acpi_gpe_event_info *event_info; + u64 address; + u32 register_count; + u16 gpe_count; + u16 block_base_number; + u8 space_id; + u8 initialized; +}; + +struct acpi_gpe_xrupt_info { + struct acpi_gpe_xrupt_info *previous; + struct acpi_gpe_xrupt_info *next; + struct acpi_gpe_block_info *gpe_block_list_head; + u32 interrupt_number; +}; + +struct acpi_common_state { + void *next; + u8 descriptor_type; + u8 flags; + u16 value; + u16 state; +}; + +struct acpi_update_state { + void *next; + u8 descriptor_type; + u8 flags; + u16 value; + u16 state; + union acpi_operand_object *object; +}; + +struct acpi_pkg_state { + void *next; + u8 descriptor_type; + u8 flags; + u16 value; + u16 state; + u32 index; + union acpi_operand_object *source_object; + union acpi_operand_object *dest_object; + struct acpi_walk_state *walk_state; + void *this_target_obj; + u32 num_packages; +}; + +struct acpi_control_state { + void *next; + u8 descriptor_type; + u8 flags; + u16 value; + u16 state; + u16 opcode; + union acpi_parse_object *predicate_op; + u8 *aml_predicate_start; + u8 *package_end; + u64 loop_timeout; +}; + +union acpi_parse_value { + u64 integer; + u32 size; + char *string; + u8 *buffer; + char *name; + union acpi_parse_object *arg; +}; + +struct acpi_parse_obj_common { + union acpi_parse_object *parent; + u8 descriptor_type; + u8 flags; + u16 aml_opcode; + u8 *aml; + union acpi_parse_object *next; + struct acpi_namespace_node *node; + union acpi_parse_value value; + u8 arg_list_length; + u16 disasm_flags; + u8 disasm_opcode; + char *operator_symbol; + char aml_op_name[16]; +}; + +struct acpi_parse_obj_named { + union acpi_parse_object *parent; + u8 descriptor_type; + u8 flags; + u16 aml_opcode; + u8 *aml; + union acpi_parse_object *next; + struct acpi_namespace_node *node; + union acpi_parse_value value; + u8 arg_list_length; + u16 disasm_flags; + u8 disasm_opcode; + char *operator_symbol; + char aml_op_name[16]; + char *path; + u8 *data; + u32 length; + u32 name; +}; + +struct acpi_parse_obj_asl { + union acpi_parse_object *parent; + u8 descriptor_type; + u8 flags; + u16 aml_opcode; + u8 *aml; + union acpi_parse_object *next; + struct acpi_namespace_node *node; + union acpi_parse_value value; + u8 arg_list_length; + u16 disasm_flags; + u8 disasm_opcode; + char *operator_symbol; + char aml_op_name[16]; + union acpi_parse_object *child; + union acpi_parse_object *parent_method; + char *filename; + u8 file_changed; + char *parent_filename; + char *external_name; + char *namepath; + char name_seg[4]; + u32 extra_value; + u32 column; + u32 line_number; + u32 logical_line_number; + u32 logical_byte_offset; + u32 end_line; + u32 end_logical_line; + u32 acpi_btype; + u32 aml_length; + u32 aml_subtree_length; + u32 final_aml_length; + u32 final_aml_offset; + u32 compile_flags; + u16 parse_opcode; + u8 aml_opcode_length; + u8 aml_pkg_len_bytes; + u8 extra; + char parse_op_name[20]; +}; + +union acpi_parse_object { + struct acpi_parse_obj_common common; + struct acpi_parse_obj_named named; + struct acpi_parse_obj_asl asl; +}; + +struct acpi_scope_state { + void *next; + u8 descriptor_type; + u8 flags; + u16 value; + u16 state; + struct acpi_namespace_node *node; +}; + +struct acpi_pscope_state { + void *next; + u8 descriptor_type; + u8 flags; + u16 value; + u16 state; + u32 arg_count; + union acpi_parse_object *op; + u8 *arg_end; + u8 *pkg_end; + u32 arg_list; +}; + +struct acpi_thread_state { + void *next; + u8 descriptor_type; + u8 flags; + u16 value; + u16 state; + u8 current_sync_level; + struct acpi_walk_state *walk_state_list; + union acpi_operand_object *acquired_mutex_list; + u64 thread_id; +}; + +struct acpi_result_values { + void *next; + u8 descriptor_type; + u8 flags; + u16 value; + u16 state; + union acpi_operand_object *obj_desc[8]; +}; + +struct acpi_global_notify_handler { + acpi_notify_handler handler; + void *context; +}; + +struct acpi_notify_info { + void *next; + u8 descriptor_type; + u8 flags; + u16 value; + u16 state; + u8 handler_list_id; + struct acpi_namespace_node *node; + union acpi_operand_object *handler_list_head; + struct acpi_global_notify_handler *global; +}; + +union acpi_generic_state { + struct acpi_common_state common; + struct acpi_control_state control; + struct acpi_update_state update; + struct acpi_scope_state scope; + struct acpi_pscope_state parse_scope; + struct acpi_pkg_state pkg; + struct acpi_thread_state thread; + struct acpi_result_values results; + struct acpi_notify_info notify; +}; + +struct acpi_opcode_info { + char *name; + u32 parse_args; + u32 runtime_args; + u16 flags; + u8 object_type; + u8 class; + u8 type; +}; + +enum { + ACPI_REFCLASS_LOCAL = 0, + ACPI_REFCLASS_ARG = 1, + ACPI_REFCLASS_REFOF = 2, + ACPI_REFCLASS_INDEX = 3, + ACPI_REFCLASS_TABLE = 4, + ACPI_REFCLASS_NAME = 5, + ACPI_REFCLASS_DEBUG = 6, + ACPI_REFCLASS_MAX = 6, +}; + +struct acpi_common_descriptor { + void *common_pointer; + u8 descriptor_type; +}; + +union acpi_descriptor { + struct acpi_common_descriptor common; + union acpi_operand_object object; + struct acpi_namespace_node node; + union acpi_parse_object op; +}; + +typedef enum { + ACPI_IMODE_LOAD_PASS1 = 1, + ACPI_IMODE_LOAD_PASS2 = 2, + ACPI_IMODE_EXECUTE = 3, +} acpi_interpreter_mode; + +struct acpi_create_field_info { + struct acpi_namespace_node *region_node; + struct acpi_namespace_node *field_node; + struct acpi_namespace_node *register_node; + struct acpi_namespace_node *data_register_node; + struct acpi_namespace_node *connection_node; + u8 *resource_buffer; + u32 bank_value; + u32 field_bit_position; + u32 field_bit_length; + u16 resource_length; + u16 pin_number_index; + u8 field_flags; + u8 attribute; + u8 field_type; + u8 access_length; +}; + +typedef void (*acpi_osd_exec_callback)(void *); + +typedef void (*acpi_gbl_event_handler)(u32, acpi_handle, u32, void *); + +typedef enum { + OSL_GLOBAL_LOCK_HANDLER = 0, + OSL_NOTIFY_HANDLER = 1, + OSL_GPE_HANDLER = 2, + OSL_DEBUGGER_MAIN_THREAD = 3, + OSL_DEBUGGER_EXEC_THREAD = 4, + OSL_EC_POLL_HANDLER = 5, + OSL_EC_BURST_HANDLER = 6, +} acpi_execute_type; + +struct acpi_name_info { + char name[4]; + u16 argument_list; + u8 expected_btypes; +} __attribute__((packed)); + +struct acpi_package_info { + u8 type; + u8 object_type1; + u8 count1; + u8 object_type2; + u8 count2; + u16 reserved; +} __attribute__((packed)); + +struct acpi_package_info2 { + u8 type; + u8 count; + u8 object_type[4]; + u8 reserved; +}; + +struct acpi_package_info3 { + u8 type; + u8 count; + u8 object_type[2]; + u8 tail_object_type; + u16 reserved; +} __attribute__((packed)); + +struct acpi_package_info4 { + u8 type; + u8 object_type1; + u8 count1; + u8 sub_object_types; + u8 pkg_count; + u16 reserved; +} __attribute__((packed)); + +union acpi_predefined_info { + struct acpi_name_info info; + struct acpi_package_info ret_info; + struct acpi_package_info2 ret_info2; + struct acpi_package_info3 ret_info3; + struct acpi_package_info4 ret_info4; +}; + +struct acpi_evaluate_info { + struct acpi_namespace_node *prefix_node; + const char *relative_pathname; + union acpi_operand_object **parameters; + struct acpi_namespace_node *node; + union acpi_operand_object *obj_desc; + char *full_pathname; + const union acpi_predefined_info *predefined; + union acpi_operand_object *return_object; + union acpi_operand_object *parent_package; + u32 return_flags; + u32 return_btype; + u16 param_count; + u16 node_flags; + u8 pass_number; + u8 return_object_type; + u8 flags; +}; + +typedef u32 (*acpi_osd_handler)(void *); + +struct acpi_gpe_device_info { + u32 index; + u32 next_block_base_index; + acpi_status status; + struct acpi_namespace_node *gpe_device; +}; + +typedef acpi_status (*acpi_gpe_callback)(struct acpi_gpe_xrupt_info *, struct acpi_gpe_block_info *, void *); + +typedef u32 acpi_name; + +struct acpi_pcc_info { + u8 subspace_id; + u16 length; + u8 *internal_buffer; +}; + +struct acpi_ffh_info { + u64 offset; + u64 length; +}; + +typedef acpi_status (*acpi_walk_callback)(acpi_handle, u32, void *, void **); + +typedef u32 acpi_mutex_handle; + +struct acpi_reg_walk_info { + u32 function; + u32 reg_run_count; + acpi_adr_space_type space_id; +}; + +typedef u32 (*acpi_event_handler)(void *); + +struct acpi_fixed_event_handler { + acpi_event_handler handler; + void *context; +}; + +struct acpi_fixed_event_info { + u8 status_register_id; + u8 enable_register_id; + u16 status_bit_mask; + u16 enable_bit_mask; +}; + +enum { + AML_FIELD_UPDATE_PRESERVE = 0, + AML_FIELD_UPDATE_WRITE_AS_ONES = 32, + AML_FIELD_UPDATE_WRITE_AS_ZEROS = 64, +}; + +enum { + AML_FIELD_ACCESS_ANY = 0, + AML_FIELD_ACCESS_BYTE = 1, + AML_FIELD_ACCESS_WORD = 2, + AML_FIELD_ACCESS_DWORD = 3, + AML_FIELD_ACCESS_QWORD = 4, + AML_FIELD_ACCESS_BUFFER = 5, +}; + +enum { + AML_FIELD_ATTRIB_QUICK = 2, + AML_FIELD_ATTRIB_SEND_RECEIVE = 4, + AML_FIELD_ATTRIB_BYTE = 6, + AML_FIELD_ATTRIB_WORD = 8, + AML_FIELD_ATTRIB_BLOCK = 10, + AML_FIELD_ATTRIB_BYTES = 11, + AML_FIELD_ATTRIB_PROCESS_CALL = 12, + AML_FIELD_ATTRIB_BLOCK_PROCESS_CALL = 13, + AML_FIELD_ATTRIB_RAW_BYTES = 14, + AML_FIELD_ATTRIB_RAW_PROCESS_BYTES = 15, +}; + +struct acpi_bit_register_info { + u8 parent_register; + u8 bit_position; + u16 access_bit_mask; +}; + +struct acpi_pci_id { + u16 segment; + u16 bus; + u16 device; + u16 function; +}; + +struct acpi_pci_device { + acpi_handle device; + struct acpi_pci_device *next; +}; + +struct acpi_table_desc { + acpi_physical_address address; + struct acpi_table_header *pointer; + u32 length; + union acpi_name_union signature; + acpi_owner_id owner_id; + u8 flags; + u16 validation_count; +}; + +struct acpi_table_list { + struct acpi_table_desc *tables; + u32 current_table_count; + u32 max_table_count; + u8 flags; +}; + +typedef acpi_status (*acpi_repair_function)(struct acpi_evaluate_info *, union acpi_operand_object **); + +struct acpi_repair_info { + char name[4]; + acpi_repair_function repair_function; +}; + +struct acpi_rsdump_info { + u8 opcode; + u8 offset; + const char *name; + const char **pointer; +} __attribute__((packed)); + +enum { + ACPI_RSD_TITLE = 0, + ACPI_RSD_1BITFLAG = 1, + ACPI_RSD_2BITFLAG = 2, + ACPI_RSD_3BITFLAG = 3, + ACPI_RSD_6BITFLAG = 4, + ACPI_RSD_ADDRESS = 5, + ACPI_RSD_DWORDLIST = 6, + ACPI_RSD_LITERAL = 7, + ACPI_RSD_LONGLIST = 8, + ACPI_RSD_SHORTLIST = 9, + ACPI_RSD_SHORTLISTX = 10, + ACPI_RSD_SOURCE = 11, + ACPI_RSD_STRING = 12, + ACPI_RSD_UINT8 = 13, + ACPI_RSD_UINT16 = 14, + ACPI_RSD_UINT32 = 15, + ACPI_RSD_UINT64 = 16, + ACPI_RSD_WORDLIST = 17, + ACPI_RSD_LABEL = 18, + ACPI_RSD_SOURCE_LABEL = 19, +}; + +struct acpi_rsconvert_info { + u8 opcode; + u8 resource_offset; + u8 aml_offset; + u8 value; +}; + +enum { + ACPI_RSC_INITGET = 0, + ACPI_RSC_INITSET = 1, + ACPI_RSC_FLAGINIT = 2, + ACPI_RSC_1BITFLAG = 3, + ACPI_RSC_2BITFLAG = 4, + ACPI_RSC_3BITFLAG = 5, + ACPI_RSC_6BITFLAG = 6, + ACPI_RSC_ADDRESS = 7, + ACPI_RSC_BITMASK = 8, + ACPI_RSC_BITMASK16 = 9, + ACPI_RSC_COUNT = 10, + ACPI_RSC_COUNT16 = 11, + ACPI_RSC_COUNT_GPIO_PIN = 12, + ACPI_RSC_COUNT_GPIO_RES = 13, + ACPI_RSC_COUNT_GPIO_VEN = 14, + ACPI_RSC_COUNT_SERIAL_RES = 15, + ACPI_RSC_COUNT_SERIAL_VEN = 16, + ACPI_RSC_DATA8 = 17, + ACPI_RSC_EXIT_EQ = 18, + ACPI_RSC_EXIT_LE = 19, + ACPI_RSC_EXIT_NE = 20, + ACPI_RSC_LENGTH = 21, + ACPI_RSC_MOVE_GPIO_PIN = 22, + ACPI_RSC_MOVE_GPIO_RES = 23, + ACPI_RSC_MOVE_SERIAL_RES = 24, + ACPI_RSC_MOVE_SERIAL_VEN = 25, + ACPI_RSC_MOVE8 = 26, + ACPI_RSC_MOVE16 = 27, + ACPI_RSC_MOVE32 = 28, + ACPI_RSC_MOVE64 = 29, + ACPI_RSC_SET8 = 30, + ACPI_RSC_SOURCE = 31, + ACPI_RSC_SOURCEX = 32, +}; + +struct aml_resource_small_header { + u8 descriptor_type; +}; + +struct aml_resource_irq { + u8 descriptor_type; + u16 irq_mask; + u8 flags; +} __attribute__((packed)); + +struct aml_resource_dma { + u8 descriptor_type; + u8 dma_channel_mask; + u8 flags; +}; + +struct aml_resource_start_dependent { + u8 descriptor_type; + u8 flags; +}; + +struct aml_resource_end_dependent { + u8 descriptor_type; +}; + +struct aml_resource_io { + u8 descriptor_type; + u8 flags; + u16 minimum; + u16 maximum; + u8 alignment; + u8 address_length; +}; + +struct aml_resource_fixed_io { + u8 descriptor_type; + u16 address; + u8 address_length; +} __attribute__((packed)); + +struct aml_resource_vendor_small { + u8 descriptor_type; +}; + +struct aml_resource_end_tag { + u8 descriptor_type; + u8 checksum; +}; + +struct aml_resource_fixed_dma { + u8 descriptor_type; + u16 request_lines; + u16 channels; + u8 width; +} __attribute__((packed)); + +struct aml_resource_large_header { + u8 descriptor_type; + u16 resource_length; +} __attribute__((packed)); + +struct aml_resource_memory24 { + u8 descriptor_type; + u16 resource_length; + u8 flags; + u16 minimum; + u16 maximum; + u16 alignment; + u16 address_length; +} __attribute__((packed)); + +struct aml_resource_vendor_large { + u8 descriptor_type; + u16 resource_length; +} __attribute__((packed)); + +struct aml_resource_memory32 { + u8 descriptor_type; + u16 resource_length; + u8 flags; + u32 minimum; + u32 maximum; + u32 alignment; + u32 address_length; +} __attribute__((packed)); + +struct aml_resource_fixed_memory32 { + u8 descriptor_type; + u16 resource_length; + u8 flags; + u32 address; + u32 address_length; +} __attribute__((packed)); + +struct aml_resource_address { + u8 descriptor_type; + u16 resource_length; + u8 resource_type; + u8 flags; + u8 specific_flags; +} __attribute__((packed)); + +struct aml_resource_extended_address64 { + u8 descriptor_type; + u16 resource_length; + u8 resource_type; + u8 flags; + u8 specific_flags; + u8 revision_ID; + u8 reserved; + u64 granularity; + u64 minimum; + u64 maximum; + u64 translation_offset; + u64 address_length; + u64 type_specific; +} __attribute__((packed)); + +struct aml_resource_address64 { + u8 descriptor_type; + u16 resource_length; + u8 resource_type; + u8 flags; + u8 specific_flags; + u64 granularity; + u64 minimum; + u64 maximum; + u64 translation_offset; + u64 address_length; +} __attribute__((packed)); + +struct aml_resource_address32 { + u8 descriptor_type; + u16 resource_length; + u8 resource_type; + u8 flags; + u8 specific_flags; + u32 granularity; + u32 minimum; + u32 maximum; + u32 translation_offset; + u32 address_length; +} __attribute__((packed)); + +struct aml_resource_address16 { + u8 descriptor_type; + u16 resource_length; + u8 resource_type; + u8 flags; + u8 specific_flags; + u16 granularity; + u16 minimum; + u16 maximum; + u16 translation_offset; + u16 address_length; +} __attribute__((packed)); + +struct aml_resource_extended_irq { + u8 descriptor_type; + u16 resource_length; + u8 flags; + u8 interrupt_count; + union { + u32 interrupt; + struct { + struct {} __Empty_interrupts; + u32 interrupts[0]; + }; + }; +} __attribute__((packed)); + +struct aml_resource_generic_register { + u8 descriptor_type; + u16 resource_length; + u8 address_space_id; + u8 bit_width; + u8 bit_offset; + u8 access_size; + u64 address; +} __attribute__((packed)); + +struct aml_resource_gpio { + u8 descriptor_type; + u16 resource_length; + u8 revision_id; + u8 connection_type; + u16 flags; + u16 int_flags; + u8 pin_config; + u16 drive_strength; + u16 debounce_timeout; + u16 pin_table_offset; + u8 res_source_index; + u16 res_source_offset; + u16 vendor_offset; + u16 vendor_length; +} __attribute__((packed)); + +struct aml_resource_common_serialbus { + u8 descriptor_type; + u16 resource_length; + u8 revision_id; + u8 res_source_index; + u8 type; + u8 flags; + u16 type_specific_flags; + u8 type_revision_id; + u16 type_data_length; +} __attribute__((packed)); + +struct aml_resource_csi2_serialbus { + u8 descriptor_type; + u16 resource_length; + u8 revision_id; + u8 res_source_index; + u8 type; + u8 flags; + u16 type_specific_flags; + u8 type_revision_id; + u16 type_data_length; +} __attribute__((packed)); + +struct aml_resource_i2c_serialbus { + u8 descriptor_type; + u16 resource_length; + u8 revision_id; + u8 res_source_index; + u8 type; + u8 flags; + u16 type_specific_flags; + u8 type_revision_id; + u16 type_data_length; + u32 connection_speed; + u16 slave_address; +} __attribute__((packed)); + +struct aml_resource_spi_serialbus { + u8 descriptor_type; + u16 resource_length; + u8 revision_id; + u8 res_source_index; + u8 type; + u8 flags; + u16 type_specific_flags; + u8 type_revision_id; + u16 type_data_length; + u32 connection_speed; + u8 data_bit_length; + u8 clock_phase; + u8 clock_polarity; + u16 device_selection; +} __attribute__((packed)); + +struct aml_resource_uart_serialbus { + u8 descriptor_type; + u16 resource_length; + u8 revision_id; + u8 res_source_index; + u8 type; + u8 flags; + u16 type_specific_flags; + u8 type_revision_id; + u16 type_data_length; + u32 default_baud_rate; + u16 rx_fifo_size; + u16 tx_fifo_size; + u8 parity; + u8 lines_enabled; +} __attribute__((packed)); + +struct aml_resource_pin_function { + u8 descriptor_type; + u16 resource_length; + u8 revision_id; + u16 flags; + u8 pin_config; + u16 function_number; + u16 pin_table_offset; + u8 res_source_index; + u16 res_source_offset; + u16 vendor_offset; + u16 vendor_length; +} __attribute__((packed)); + +struct aml_resource_pin_config { + u8 descriptor_type; + u16 resource_length; + u8 revision_id; + u16 flags; + u8 pin_config_type; + u32 pin_config_value; + u16 pin_table_offset; + u8 res_source_index; + u16 res_source_offset; + u16 vendor_offset; + u16 vendor_length; +} __attribute__((packed)); + +struct aml_resource_clock_input { + u8 descriptor_type; + u16 resource_length; + u8 revision_id; + u16 flags; + u16 frequency_divisor; + u32 frequency_numerator; +} __attribute__((packed)); + +struct aml_resource_pin_group { + u8 descriptor_type; + u16 resource_length; + u8 revision_id; + u16 flags; + u16 pin_table_offset; + u16 label_offset; + u16 vendor_offset; + u16 vendor_length; +} __attribute__((packed)); + +struct aml_resource_pin_group_function { + u8 descriptor_type; + u16 resource_length; + u8 revision_id; + u16 flags; + u16 function_number; + u8 res_source_index; + u16 res_source_offset; + u16 res_source_label_offset; + u16 vendor_offset; + u16 vendor_length; +} __attribute__((packed)); + +struct aml_resource_pin_group_config { + u8 descriptor_type; + u16 resource_length; + u8 revision_id; + u16 flags; + u8 pin_config_type; + u32 pin_config_value; + u8 res_source_index; + u16 res_source_offset; + u16 res_source_label_offset; + u16 vendor_offset; + u16 vendor_length; +} __attribute__((packed)); + +union aml_resource { + u8 descriptor_type; + struct aml_resource_small_header small_header; + struct aml_resource_large_header large_header; + struct aml_resource_irq irq; + struct aml_resource_dma dma; + struct aml_resource_start_dependent start_dpf; + struct aml_resource_end_dependent end_dpf; + struct aml_resource_io io; + struct aml_resource_fixed_io fixed_io; + struct aml_resource_fixed_dma fixed_dma; + struct aml_resource_vendor_small vendor_small; + struct aml_resource_end_tag end_tag; + struct aml_resource_memory24 memory24; + struct aml_resource_generic_register generic_reg; + struct aml_resource_vendor_large vendor_large; + struct aml_resource_memory32 memory32; + struct aml_resource_fixed_memory32 fixed_memory32; + struct aml_resource_address16 address16; + struct aml_resource_address32 address32; + struct aml_resource_address64 address64; + struct aml_resource_extended_address64 ext_address64; + struct aml_resource_extended_irq extended_irq; + struct aml_resource_gpio gpio; + struct aml_resource_i2c_serialbus i2c_serial_bus; + struct aml_resource_spi_serialbus spi_serial_bus; + struct aml_resource_uart_serialbus uart_serial_bus; + struct aml_resource_csi2_serialbus csi2_serial_bus; + struct aml_resource_common_serialbus common_serial_bus; + struct aml_resource_pin_function pin_function; + struct aml_resource_pin_config pin_config; + struct aml_resource_pin_group pin_group; + struct aml_resource_pin_group_function pin_group_function; + struct aml_resource_pin_group_config pin_group_config; + struct aml_resource_clock_input clock_input; + struct aml_resource_address address; + u32 dword_item; + u16 word_item; + u8 byte_item; +}; + +struct acpi_fadt_info { + const char *name; + u16 address64; + u16 address32; + u16 length; + u8 default_length; + u8 flags; +}; + +struct acpi_fadt_pm_info { + struct acpi_generic_address *target; + u16 source; + u8 register_num; +}; + +struct acpi_table_rsdp { + char signature[8]; + u8 checksum; + char oem_id[6]; + u8 revision; + u32 rsdt_physical_address; + u32 length; + u64 xsdt_physical_address; + u8 extended_checksum; + u8 reserved[3]; +} __attribute__((packed)); + +typedef acpi_status (*acpi_pkg_callback)(u8, union acpi_operand_object *, union acpi_generic_state *, void *); + +struct acpi_pkg_info { + u8 *free_space; + acpi_size length; + u32 object_space; + u32 num_packages; +}; + +struct acpi_pnp_device_id { + u32 length; + char *string; +}; + +struct acpi_pnp_device_id_list { + u32 count; + u32 list_size; + struct acpi_pnp_device_id ids[0]; +}; + +typedef u32 (*acpi_interface_handler)(acpi_string, u32); + +struct acpi_interface_info { + char *name; + struct acpi_interface_info *next; + u8 flags; + u8 value; +}; + +typedef acpi_status (*acpi_exception_handler)(acpi_status, acpi_name, u16, u32, void *); + +struct acpi_device_info { + u32 info_size; + u32 name; + acpi_object_type type; + u8 param_count; + u16 valid; + u8 flags; + u8 highest_dstates[4]; + u8 lowest_dstates[5]; + u64 address; + struct acpi_pnp_device_id hardware_id; + struct acpi_pnp_device_id unique_id; + struct acpi_pnp_device_id class_code; + struct acpi_pnp_device_id_list compatible_id_list; +}; + +struct acpi_handler_info { + void *handler; + char *name; +}; + +struct acpi_db_execute_walk { + u32 count; + u32 max_count; + char name_seg[5]; +}; + +struct acpi_mutex_info { + void *mutex; + u32 use_count; + u64 thread_id; +}; + +struct acpi_db_argument_info { + const char *name; +}; + +enum { + NDD_UNARMED = 1, + NDD_LOCKED = 2, + NDD_SECURITY_OVERWRITE = 3, + NDD_WORK_PENDING = 4, + NDD_LABELING = 6, + NDD_INCOHERENT = 7, + NDD_REGISTER_SYNC = 8, + ND_IOCTL_MAX_BUFLEN = 4194304, + ND_CMD_MAX_ELEM = 5, + ND_CMD_MAX_ENVELOPE = 256, + ND_MAX_MAPPINGS = 32, + ND_REGION_PAGEMAP = 0, + ND_REGION_PERSIST_CACHE = 1, + ND_REGION_PERSIST_MEMCTRL = 2, + ND_REGION_ASYNC = 3, + ND_REGION_CXL = 4, + DPA_RESOURCE_ADJUSTED = 1, +}; + +struct nvdimm_bus_descriptor; + +struct nvdimm; + +typedef int (*ndctl_fn)(struct nvdimm_bus_descriptor *, struct nvdimm *, unsigned int, void *, unsigned int, int *); + +struct nvdimm_bus_fw_ops; + +struct nvdimm_bus_descriptor { + const struct attribute_group **attr_groups; + long unsigned int cmd_mask; + long unsigned int dimm_family_mask; + long unsigned int bus_family_mask; + struct module *module; + char *provider_name; + struct device_node *of_node; + ndctl_fn ndctl; + int (*flush_probe)(struct nvdimm_bus_descriptor *); + int (*clear_to_send)(struct nvdimm_bus_descriptor *, struct nvdimm *, unsigned int, void *); + const struct nvdimm_bus_fw_ops *fw_ops; +}; + +enum nvdimm_fwa_state { + NVDIMM_FWA_INVALID = 0, + NVDIMM_FWA_IDLE = 1, + NVDIMM_FWA_ARMED = 2, + NVDIMM_FWA_BUSY = 3, + NVDIMM_FWA_ARM_OVERFLOW = 4, +}; + +enum nvdimm_fwa_capability { + NVDIMM_FWA_CAP_INVALID = 0, + NVDIMM_FWA_CAP_NONE = 1, + NVDIMM_FWA_CAP_QUIESCE = 2, + NVDIMM_FWA_CAP_LIVE = 3, +}; + +struct nvdimm_bus_fw_ops { + enum nvdimm_fwa_state (*activate_state)(struct nvdimm_bus_descriptor *); + enum nvdimm_fwa_capability (*capability)(struct nvdimm_bus_descriptor *); + int (*activate)(struct nvdimm_bus_descriptor *); +}; + +struct nd_cmd_desc { + int in_num; + int out_num; + u32 in_sizes[5]; + int out_sizes[5]; +}; + +struct nd_interleave_set { + u64 cookie1; + u64 cookie2; + u64 altcookie; + guid_t type_guid; +}; + +struct nd_mapping_desc { + struct nvdimm *nvdimm; + u64 start; + u64 size; + int position; +}; + +struct nd_region; + +struct nd_region_desc { + struct resource *res; + struct nd_mapping_desc *mapping; + u16 num_mappings; + const struct attribute_group **attr_groups; + struct nd_interleave_set *nd_set; + void *provider_data; + int num_lanes; + int numa_node; + int target_node; + long unsigned int flags; + int memregion; + struct device_node *of_node; + int (*flush)(struct nd_region *, struct bio *); +}; + +struct nvdimm_key_data { + u8 data[32]; +}; + +enum nvdimm_passphrase_type { + NVDIMM_USER = 0, + NVDIMM_MASTER = 1, +}; + +struct nvdimm_security_ops { + long unsigned int (*get_flags)(struct nvdimm *, enum nvdimm_passphrase_type); + int (*freeze)(struct nvdimm *); + int (*change_key)(struct nvdimm *, const struct nvdimm_key_data *, const struct nvdimm_key_data *, enum nvdimm_passphrase_type); + int (*unlock)(struct nvdimm *, const struct nvdimm_key_data *); + int (*disable)(struct nvdimm *, const struct nvdimm_key_data *); + int (*erase)(struct nvdimm *, const struct nvdimm_key_data *, enum nvdimm_passphrase_type); + int (*overwrite)(struct nvdimm *, const struct nvdimm_key_data *); + int (*query_overwrite)(struct nvdimm *); + int (*disable_master)(struct nvdimm *, const struct nvdimm_key_data *); +}; + +enum nvdimm_fwa_trigger { + NVDIMM_FWA_ARM = 0, + NVDIMM_FWA_DISARM = 1, +}; + +enum nvdimm_fwa_result { + NVDIMM_FWA_RESULT_INVALID = 0, + NVDIMM_FWA_RESULT_NONE = 1, + NVDIMM_FWA_RESULT_SUCCESS = 2, + NVDIMM_FWA_RESULT_NOTSTAGED = 3, + NVDIMM_FWA_RESULT_NEEDRESET = 4, + NVDIMM_FWA_RESULT_FAIL = 5, +}; + +struct nvdimm_fw_ops { + enum nvdimm_fwa_state (*activate_state)(struct nvdimm *); + enum nvdimm_fwa_result (*activate_result)(struct nvdimm *); + int (*arm)(struct nvdimm *, enum nvdimm_fwa_trigger); +}; + +struct nd_cmd_get_config_data_hdr { + __u32 in_offset; + __u32 in_length; + __u32 status; + __u8 out_buf[0]; +}; + +struct nd_cmd_set_config_hdr { + __u32 in_offset; + __u32 in_length; + __u8 in_buf[0]; +}; + +struct nd_cmd_ars_cap { + __u64 address; + __u64 length; + __u32 status; + __u32 max_ars_out; + __u32 clear_err_unit; + __u16 flags; + __u16 reserved; +}; + +struct nd_cmd_ars_start { + __u64 address; + __u64 length; + __u16 type; + __u8 flags; + __u8 reserved[5]; + __u32 status; + __u32 scrub_time; +}; + +struct nd_ars_record { + __u32 handle; + __u32 reserved; + __u64 err_address; + __u64 length; +}; + +struct nd_cmd_ars_status { + __u32 status; + __u32 out_length; + __u64 address; + __u64 length; + __u64 restart_address; + __u64 restart_length; + __u16 type; + __u16 flags; + __u32 num_records; + struct nd_ars_record records[0]; +}; + +struct nd_cmd_clear_error { + __u64 address; + __u64 length; + __u32 status; + __u8 reserved[4]; + __u64 cleared; +}; + +enum { + ND_CMD_IMPLEMENTED = 0, + ND_CMD_ARS_CAP = 1, + ND_CMD_ARS_START = 2, + ND_CMD_ARS_STATUS = 3, + ND_CMD_CLEAR_ERROR = 4, + ND_CMD_SMART = 1, + ND_CMD_SMART_THRESHOLD = 2, + ND_CMD_DIMM_FLAGS = 3, + ND_CMD_GET_CONFIG_SIZE = 4, + ND_CMD_GET_CONFIG_DATA = 5, + ND_CMD_SET_CONFIG_DATA = 6, + ND_CMD_VENDOR_EFFECT_LOG_SIZE = 7, + ND_CMD_VENDOR_EFFECT_LOG = 8, + ND_CMD_VENDOR = 9, + ND_CMD_CALL = 10, +}; + +enum { + ND_ARS_VOLATILE = 1, + ND_ARS_PERSISTENT = 2, + ND_ARS_RETURN_PREV_DATA = 2, + ND_CONFIG_LOCKED = 1, +}; + +struct nd_cmd_pkg { + __u64 nd_family; + __u64 nd_command; + __u32 nd_size_in; + __u32 nd_size_out; + __u32 nd_reserved2[9]; + __u32 nd_fw_size; + unsigned char nd_payload[0]; +}; + +struct acpi_nfit_header { + u16 type; + u16 length; +}; + +enum acpi_nfit_type { + ACPI_NFIT_TYPE_SYSTEM_ADDRESS = 0, + ACPI_NFIT_TYPE_MEMORY_MAP = 1, + ACPI_NFIT_TYPE_INTERLEAVE = 2, + ACPI_NFIT_TYPE_SMBIOS = 3, + ACPI_NFIT_TYPE_CONTROL_REGION = 4, + ACPI_NFIT_TYPE_DATA_REGION = 5, + ACPI_NFIT_TYPE_FLUSH_ADDRESS = 6, + ACPI_NFIT_TYPE_CAPABILITIES = 7, + ACPI_NFIT_TYPE_RESERVED = 8, +}; + +struct acpi_nfit_system_address { + struct acpi_nfit_header header; + u16 range_index; + u16 flags; + u32 reserved; + u32 proximity_domain; + u8 range_guid[16]; + u64 address; + u64 length; + u64 memory_mapping; + u64 location_cookie; +}; + +struct acpi_nfit_memory_map { + struct acpi_nfit_header header; + u32 device_handle; + u16 physical_id; + u16 region_id; + u16 range_index; + u16 region_index; + u64 region_size; + u64 region_offset; + u64 address; + u16 interleave_index; + u16 interleave_ways; + u16 flags; + u16 reserved; +}; + +struct acpi_nfit_interleave { + struct acpi_nfit_header header; + u16 interleave_index; + u16 reserved; + u32 line_count; + u32 line_size; + u32 line_offset[0]; +}; + +struct acpi_nfit_control_region { + struct acpi_nfit_header header; + u16 region_index; + u16 vendor_id; + u16 device_id; + u16 revision_id; + u16 subsystem_vendor_id; + u16 subsystem_device_id; + u16 subsystem_revision_id; + u8 valid_fields; + u8 manufacturing_location; + u16 manufacturing_date; + u8 reserved[2]; + u32 serial_number; + u16 code; + u16 windows; + u64 window_size; + u64 command_offset; + u64 command_size; + u64 status_offset; + u64 status_size; + u16 flags; + u8 reserved1[6]; +}; + +struct acpi_nfit_data_region { + struct acpi_nfit_header header; + u16 region_index; + u16 windows; + u64 offset; + u64 size; + u64 capacity; + u64 start_address; +}; + +struct acpi_nfit_flush_address { + struct acpi_nfit_header header; + u32 device_handle; + u16 hint_count; + u8 reserved[6]; + u64 hint_address[0]; +}; + +struct acpi_nfit_capabilities { + struct acpi_nfit_header header; + u8 highest_capability; + u8 reserved[3]; + u32 capabilities; + u32 reserved2; +}; + +enum nvdimm_event { + NVDIMM_REVALIDATE_POISON = 0, + NVDIMM_REVALIDATE_REGION = 1, +}; + +struct nd_intel_smart { + u32 status; + union { + struct { + u32 flags; + u8 reserved0[4]; + u8 health; + u8 spares; + u8 life_used; + u8 alarm_flags; + u16 media_temperature; + u16 ctrl_temperature; + u32 shutdown_count; + u8 ait_status; + u16 pmic_temperature; + u8 reserved1[8]; + u8 shutdown_state; + u32 vendor_size; + u8 vendor_data[92]; + } __attribute__((packed)); + u8 data[128]; + }; +}; + +enum nvdimm_family_cmds { + NVDIMM_INTEL_LATCH_SHUTDOWN = 10, + NVDIMM_INTEL_GET_MODES = 11, + NVDIMM_INTEL_GET_FWINFO = 12, + NVDIMM_INTEL_START_FWUPDATE = 13, + NVDIMM_INTEL_SEND_FWUPDATE = 14, + NVDIMM_INTEL_FINISH_FWUPDATE = 15, + NVDIMM_INTEL_QUERY_FWUPDATE = 16, + NVDIMM_INTEL_SET_THRESHOLD = 17, + NVDIMM_INTEL_INJECT_ERROR = 18, + NVDIMM_INTEL_GET_SECURITY_STATE = 19, + NVDIMM_INTEL_SET_PASSPHRASE = 20, + NVDIMM_INTEL_DISABLE_PASSPHRASE = 21, + NVDIMM_INTEL_UNLOCK_UNIT = 22, + NVDIMM_INTEL_FREEZE_LOCK = 23, + NVDIMM_INTEL_SECURE_ERASE = 24, + NVDIMM_INTEL_OVERWRITE = 25, + NVDIMM_INTEL_QUERY_OVERWRITE = 26, + NVDIMM_INTEL_SET_MASTER_PASSPHRASE = 27, + NVDIMM_INTEL_MASTER_SECURE_ERASE = 28, + NVDIMM_INTEL_FW_ACTIVATE_DIMMINFO = 29, + NVDIMM_INTEL_FW_ACTIVATE_ARM = 30, +}; + +enum nvdimm_bus_family_cmds { + NVDIMM_BUS_INTEL_FW_ACTIVATE_BUSINFO = 1, + NVDIMM_BUS_INTEL_FW_ACTIVATE = 2, +}; + +enum nfit_uuids { + NFIT_DEV_DIMM = 0, + NFIT_DEV_DIMM_N_HPE1 = 1, + NFIT_DEV_DIMM_N_HPE2 = 2, + NFIT_DEV_DIMM_N_MSFT = 3, + NFIT_DEV_DIMM_N_HYPERV = 4, + NFIT_BUS_INTEL = 6, + NFIT_SPA_VOLATILE = 7, + NFIT_SPA_PM = 8, + NFIT_SPA_DCR = 9, + NFIT_SPA_BDW = 10, + NFIT_SPA_VDISK = 11, + NFIT_SPA_VCD = 12, + NFIT_SPA_PDISK = 13, + NFIT_SPA_PCD = 14, + NFIT_DEV_BUS = 15, + NFIT_UUID_MAX = 16, +}; + +enum { + NFIT_BLK_READ_FLUSH = 1, + NFIT_BLK_DCR_LATCH = 2, + NFIT_ARS_STATUS_DONE = 0, + NFIT_ARS_STATUS_BUSY = 65536, + NFIT_ARS_STATUS_NONE = 131072, + NFIT_ARS_STATUS_INTR = 196608, + NFIT_ARS_START_BUSY = 6, + NFIT_ARS_CAP_NONE = 1, + NFIT_ARS_F_OVERFLOW = 1, + NFIT_ARS_TIMEOUT = 90, +}; + +enum nfit_root_notifiers { + NFIT_NOTIFY_UPDATE = 128, + NFIT_NOTIFY_UC_MEMORY_ERROR = 129, +}; + +enum nfit_dimm_notifiers { + NFIT_NOTIFY_DIMM_HEALTH = 129, +}; + +enum nfit_ars_state { + ARS_REQ_SHORT = 0, + ARS_REQ_LONG = 1, + ARS_FAILED = 2, +}; + +struct nfit_spa { + struct list_head list; + struct nd_region *nd_region; + long unsigned int ars_state; + u32 clear_err_unit; + u32 max_ars; + struct acpi_nfit_system_address spa[0]; +}; + +struct nfit_dcr { + struct list_head list; + struct acpi_nfit_control_region dcr[0]; +}; + +struct nfit_bdw { + struct list_head list; + struct acpi_nfit_data_region bdw[0]; +}; + +struct nfit_idt { + struct list_head list; + struct acpi_nfit_interleave idt[0]; +}; + +struct nfit_flush { + struct list_head list; + struct acpi_nfit_flush_address flush[0]; +}; + +struct nfit_memdev { + struct list_head list; + struct acpi_nfit_memory_map memdev[0]; +}; + +enum nfit_mem_flags { + NFIT_MEM_LSR = 0, + NFIT_MEM_LSW = 1, + NFIT_MEM_DIRTY = 2, + NFIT_MEM_DIRTY_COUNT = 3, +}; + +struct acpi_nfit_desc; + +struct nfit_mem { + struct nvdimm *nvdimm; + struct acpi_nfit_memory_map *memdev_dcr; + struct acpi_nfit_memory_map *memdev_pmem; + struct acpi_nfit_control_region *dcr; + struct acpi_nfit_system_address *spa_dcr; + struct acpi_nfit_interleave *idt_dcr; + struct kernfs_node *flags_attr; + struct nfit_flush *nfit_flush; + struct list_head list; + struct acpi_device *adev; + struct acpi_nfit_desc *acpi_desc; + enum nvdimm_fwa_state fwa_state; + enum nvdimm_fwa_result fwa_result; + int fwa_count; + char id[23]; + struct resource *flush_wpq; + long unsigned int dsm_mask; + long unsigned int flags; + u32 dirty_shutdown; + int family; +}; + +struct nvdimm_bus; + +struct acpi_nfit_desc { + struct nvdimm_bus_descriptor nd_desc; + struct acpi_table_header acpi_header; + struct mutex init_mutex; + struct list_head memdevs; + struct list_head flushes; + struct list_head dimms; + struct list_head spas; + struct list_head dcrs; + struct list_head bdws; + struct list_head idts; + struct nvdimm_bus *nvdimm_bus; + struct device *dev; + struct nd_cmd_ars_status *ars_status; + struct nfit_spa *scrub_spa; + struct delayed_work dwork; + struct list_head list; + struct kernfs_node *scrub_count_state; + unsigned int max_ars; + unsigned int scrub_count; + unsigned int scrub_mode; + long unsigned int scrub_flags; + long unsigned int dimm_cmd_force_en; + long unsigned int bus_cmd_force_en; + long unsigned int bus_dsm_mask; + long unsigned int family_dsm_mask[2]; + unsigned int platform_cap; + unsigned int scrub_tmo; + enum nvdimm_fwa_state fwa_state; + enum nvdimm_fwa_capability fwa_cap; + int fwa_count; + bool fwa_noidle; + bool fwa_nosuspend; +}; + +enum scrub_flags { + ARS_BUSY = 0, + ARS_CANCEL = 1, + ARS_VALID = 2, + ARS_POLL = 3, +}; + +enum scrub_mode { + HW_ERROR_SCRUB_OFF = 0, + HW_ERROR_SCRUB_ON = 1, +}; + +struct nfit_table_prev { + struct list_head spas; + struct list_head memdevs; + struct list_head dcrs; + struct list_head bdws; + struct list_head idts; + struct list_head flushes; +}; + +enum nfit_aux_cmds { + NFIT_CMD_TRANSLATE_SPA = 5, + NFIT_CMD_ARS_INJECT_SET = 7, + NFIT_CMD_ARS_INJECT_CLEAR = 8, + NFIT_CMD_ARS_INJECT_GET = 9, +}; + +struct nfit_set_info { + u64 region_offset; + u32 serial_number; + u32 pad; +}; + +struct nfit_set_info2 { + u64 region_offset; + u32 serial_number; + u16 vendor_id; + u16 manufacturing_date; + u8 manufacturing_location; + u8 reserved[31]; +}; + +struct acpi_table_spcr { + struct acpi_table_header header; + u8 interface_type; + u8 reserved[3]; + struct acpi_generic_address serial_port; + u8 interrupt_type; + u8 pc_interrupt; + u32 interrupt; + u8 baud_rate; + u8 parity; + u8 stop_bits; + u8 flow_control; + u8 terminal_type; + u8 language; + u16 pci_device_id; + u16 pci_vendor_id; + u8 pci_bus; + u8 pci_device; + u8 pci_function; + u32 pci_flags; + u8 pci_segment; + u32 uart_clk_freq; + u32 precise_baudrate; + u16 name_space_string_length; + u16 name_space_string_offset; + char name_space_string[0]; +} __attribute__((packed)); + +struct acpi_whea_header { + u8 action; + u8 instruction; + u8 flags; + u8 reserved; + struct acpi_generic_address register_region; + u64 value; + u64 mask; +}; + +struct apei_exec_context; + +typedef int (*apei_exec_ins_func_t)(struct apei_exec_context *, struct acpi_whea_header *); + +struct apei_exec_ins_type; + +struct apei_exec_context { + u32 ip; + u64 value; + u64 var1; + u64 var2; + u64 src_base; + u64 dst_base; + struct apei_exec_ins_type *ins_table; + u32 instructions; + struct acpi_whea_header *action_table; + u32 entries; +}; + +struct apei_exec_ins_type { + u32 flags; + apei_exec_ins_func_t run; +}; + +struct apei_resources { + struct list_head iomem; + struct list_head ioport; +}; + +typedef int (*apei_exec_entry_func_t)(struct apei_exec_context *, struct acpi_whea_header *, void *); + +struct apei_res { + struct list_head list; + long unsigned int start; + long unsigned int end; +}; + +struct acpi_lpat { + int temp; + int raw; +}; + +struct acpi_lpat_conversion_table { + struct acpi_lpat *lpat; + int lpat_count; +}; + +struct pmic_table { + int address; + int reg; + int bit; +}; + +struct regmap; + +struct intel_pmic_opregion_data { + int (*get_power)(struct regmap *, int, int, u64 *); + int (*update_power)(struct regmap *, int, int, bool); + int (*get_raw_temp)(struct regmap *, int); + int (*update_aux)(struct regmap *, int, int); + int (*get_policy)(struct regmap *, int, int, u64 *); + int (*update_policy)(struct regmap *, int, int, int); + int (*exec_mipi_pmic_seq_element)(struct regmap *, u16, u32, u32, u32); + int (*lpat_raw_to_temp)(struct acpi_lpat_conversion_table *, int); + const struct pmic_table *power_table; + int power_table_count; + const struct pmic_table *thermal_table; + int thermal_table_count; + int pmic_i2c_address; +}; + +struct intel_pmic_regs_handler_ctx { + unsigned int val; + u16 addr; +}; + +struct intel_pmic_opregion { + struct mutex lock; + struct acpi_lpat_conversion_table *lpat_table; + struct regmap *regmap; + const struct intel_pmic_opregion_data *data; + struct intel_pmic_regs_handler_ctx ctx; +}; + +struct tps68470_pmic_table { + u32 address; + u32 reg; + u32 bitmask; +}; + +struct tps68470_pmic_opregion { + struct mutex lock; + struct regmap *regmap; +}; + +struct override_status_id { + struct acpi_device_id hid[2]; + struct x86_cpu_id cpu_ids[2]; + struct dmi_system_id dmi_ids[2]; + const char *uid; + const char *path; + long long unsigned int status; +}; + +struct pnp_device_id { + __u8 id[8]; + kernel_ulong_t driver_data; +}; + +struct pnp_card_device_id { + __u8 id[8]; + kernel_ulong_t driver_data; + struct { + __u8 id[8]; + } devs[8]; +}; + +struct pnp_protocol; + +struct pnp_id; + +struct pnp_card { + struct device dev; + unsigned char number; + struct list_head global_list; + struct list_head protocol_list; + struct list_head devices; + struct pnp_protocol *protocol; + struct pnp_id *id; + char name[50]; + unsigned char pnpver; + unsigned char productver; + unsigned int serial; + unsigned char checksum; + struct proc_dir_entry *procdir; +}; + +struct pnp_dev; + +struct pnp_protocol { + struct list_head protocol_list; + char *name; + int (*get)(struct pnp_dev *); + int (*set)(struct pnp_dev *); + int (*disable)(struct pnp_dev *); + bool (*can_wakeup)(struct pnp_dev *); + int (*suspend)(struct pnp_dev *, pm_message_t); + int (*resume)(struct pnp_dev *); + unsigned char number; + struct device dev; + struct list_head cards; + struct list_head devices; +}; + +struct pnp_id { + char id[8]; + struct pnp_id *next; +}; + +struct pnp_card_driver; + +struct pnp_card_link { + struct pnp_card *card; + struct pnp_card_driver *driver; + void *driver_data; + pm_message_t pm_state; +}; + +struct pnp_driver { + const char *name; + const struct pnp_device_id *id_table; + unsigned int flags; + int (*probe)(struct pnp_dev *, const struct pnp_device_id *); + void (*remove)(struct pnp_dev *); + void (*shutdown)(struct pnp_dev *); + int (*suspend)(struct pnp_dev *, pm_message_t); + int (*resume)(struct pnp_dev *); + struct device_driver driver; +}; + +struct pnp_card_driver { + struct list_head global_list; + char *name; + const struct pnp_card_device_id *id_table; + unsigned int flags; + int (*probe)(struct pnp_card_link *, const struct pnp_card_device_id *); + void (*remove)(struct pnp_card_link *); + int (*suspend)(struct pnp_card_link *, pm_message_t); + int (*resume)(struct pnp_card_link *); + struct pnp_driver link; +}; + +struct pnp_dev { + struct device dev; + u64 dma_mask; + unsigned int number; + int status; + struct list_head global_list; + struct list_head protocol_list; + struct list_head card_list; + struct list_head rdev_list; + struct pnp_protocol *protocol; + struct pnp_card *card; + struct pnp_driver *driver; + struct pnp_card_link *card_link; + struct pnp_id *id; + int active; + int capabilities; + unsigned int num_dependent_sets; + struct list_head resources; + struct list_head options; + char name[50]; + int flags; + struct proc_dir_entry *procent; + void *data; +}; + +struct pnp_port { + resource_size_t min; + resource_size_t max; + resource_size_t align; + resource_size_t size; + unsigned char flags; +}; + +typedef struct { + long unsigned int bits[4]; +} pnp_irq_mask_t; + +struct pnp_irq { + pnp_irq_mask_t map; + unsigned char flags; +}; + +struct pnp_dma { + unsigned char map; + unsigned char flags; +}; + +struct pnp_mem { + resource_size_t min; + resource_size_t max; + resource_size_t align; + resource_size_t size; + unsigned char flags; +}; + +struct pnp_option { + struct list_head list; + unsigned int flags; + long unsigned int type; + union { + struct pnp_port port; + struct pnp_irq irq; + struct pnp_dma dma; + struct pnp_mem mem; + } u; +}; + +struct pnp_resource { + struct list_head list; + struct resource res; +}; + +struct clk_hw; + +struct clk_lookup { + struct list_head node; + const char *dev_id; + const char *con_id; + struct clk *clk; + struct clk_hw *clk_hw; +}; + +struct clk_core; + +struct clk_init_data; + +struct clk_hw { + struct clk_core *core; + struct clk *clk; + const struct clk_init_data *init; +}; + +struct clk_rate_request { + struct clk_core *core; + long unsigned int rate; + long unsigned int min_rate; + long unsigned int max_rate; + long unsigned int best_parent_rate; + struct clk_hw *best_parent_hw; +}; + +struct clk_duty { + unsigned int num; + unsigned int den; +}; + +struct clk_ops { + int (*prepare)(struct clk_hw *); + void (*unprepare)(struct clk_hw *); + int (*is_prepared)(struct clk_hw *); + void (*unprepare_unused)(struct clk_hw *); + int (*enable)(struct clk_hw *); + void (*disable)(struct clk_hw *); + int (*is_enabled)(struct clk_hw *); + void (*disable_unused)(struct clk_hw *); + int (*save_context)(struct clk_hw *); + void (*restore_context)(struct clk_hw *); + long unsigned int (*recalc_rate)(struct clk_hw *, long unsigned int); + long int (*round_rate)(struct clk_hw *, long unsigned int, long unsigned int *); + int (*determine_rate)(struct clk_hw *, struct clk_rate_request *); + int (*set_parent)(struct clk_hw *, u8); + u8 (*get_parent)(struct clk_hw *); + int (*set_rate)(struct clk_hw *, long unsigned int, long unsigned int); + int (*set_rate_and_parent)(struct clk_hw *, long unsigned int, long unsigned int, u8); + long unsigned int (*recalc_accuracy)(struct clk_hw *, long unsigned int); + int (*get_phase)(struct clk_hw *); + int (*set_phase)(struct clk_hw *, int); + int (*get_duty_cycle)(struct clk_hw *, struct clk_duty *); + int (*set_duty_cycle)(struct clk_hw *, struct clk_duty *); + int (*init)(struct clk_hw *); + void (*terminate)(struct clk_hw *); + void (*debug_init)(struct clk_hw *, struct dentry *); +}; + +struct clk_parent_data { + const struct clk_hw *hw; + const char *fw_name; + const char *name; + int index; +}; + +struct clk_init_data { + const char *name; + const struct clk_ops *ops; + const char * const *parent_names; + const struct clk_parent_data *parent_data; + const struct clk_hw **parent_hws; + u8 num_parents; + long unsigned int flags; +}; + +struct clk_lookup_alloc { + struct clk_lookup cl; + char dev_id[24]; + char con_id[16]; +}; + +struct clk_fixed_rate { + struct clk_hw hw; + long unsigned int fixed_rate; + long unsigned int fixed_accuracy; + long unsigned int flags; +}; + +struct clk_composite { + struct clk_hw hw; + struct clk_ops ops; + struct clk_hw *mux_hw; + struct clk_hw *rate_hw; + struct clk_hw *gate_hw; + const struct clk_ops *mux_ops; + const struct clk_ops *rate_ops; + const struct clk_ops *gate_ops; +}; + +struct dmaengine_desc_callback { + dma_async_tx_callback callback; + dma_async_tx_callback_result callback_result; + void *callback_param; +}; + +struct virt_dma_desc { + struct dma_async_tx_descriptor tx; + struct dmaengine_result tx_result; + struct list_head node; +}; + +struct virt_dma_chan { + struct dma_chan chan; + struct tasklet_struct task; + void (*desc_free)(struct virt_dma_desc *); + spinlock_t lock; + struct list_head desc_allocated; + struct list_head desc_submitted; + struct list_head desc_issued; + struct list_head desc_completed; + struct list_head desc_terminated; + struct virt_dma_desc *cyclic; +}; + +struct of_dma { + struct list_head of_dma_controllers; + struct device_node *of_node; + struct dma_chan * (*of_dma_xlate)(struct of_phandle_args *, struct of_dma *); + void * (*of_dma_route_allocate)(struct of_phandle_args *, struct of_dma *); + struct dma_router *dma_router; + void *of_dma_data; +}; + +enum reset_control_flags { + RESET_CONTROL_EXCLUSIVE = 4, + RESET_CONTROL_EXCLUSIVE_DEASSERTED = 12, + RESET_CONTROL_EXCLUSIVE_RELEASED = 0, + RESET_CONTROL_SHARED = 1, + RESET_CONTROL_SHARED_DEASSERTED = 9, + RESET_CONTROL_OPTIONAL_EXCLUSIVE = 6, + RESET_CONTROL_OPTIONAL_EXCLUSIVE_DEASSERTED = 14, + RESET_CONTROL_OPTIONAL_EXCLUSIVE_RELEASED = 2, + RESET_CONTROL_OPTIONAL_SHARED = 3, + RESET_CONTROL_OPTIONAL_SHARED_DEASSERTED = 11, +}; + +enum ldma_chan_on_off { + DMA_CH_OFF = 0, + DMA_CH_ON = 1, +}; + +enum { + DMA_TYPE_TX = 0, + DMA_TYPE_RX = 1, + DMA_TYPE_MCPY = 2, +}; + +struct ldma_port; + +struct dma_pool; + +struct dw2_desc_sw; + +struct ldma_chan { + struct virt_dma_chan vchan; + struct ldma_port *port; + char name[8]; + int nr; + u32 flags; + enum ldma_chan_on_off onoff; + dma_addr_t desc_phys; + void *desc_base; + u32 desc_cnt; + int rst; + u32 hdrm_len; + bool hdrm_csum; + u32 boff_len; + u32 data_endian; + u32 desc_endian; + bool pden; + bool desc_rx_np; + bool data_endian_en; + bool desc_endian_en; + bool abc_en; + bool desc_init; + struct dma_pool *desc_pool; + u32 desc_num; + struct dw2_desc_sw *ds; + struct work_struct work; + struct dma_slave_config config; +}; + +struct ldma_dev; + +struct ldma_port { + struct ldma_dev *ldev; + u32 portid; + u32 rxbl; + u32 txbl; + u32 rxendi; + u32 txendi; + u32 pkt_drop; +}; + +struct dw2_desc; + +struct dw2_desc_sw { + struct virt_dma_desc vdesc; + struct ldma_chan *chan; + dma_addr_t desc_phys; + size_t desc_cnt; + size_t size; + struct dw2_desc *desc_hw; +}; + +struct ldma_inst_data; + +struct ldma_dev { + struct device *dev; + void *base; + struct reset_control *rst; + struct clk *core_clk; + struct dma_device dma_dev; + u32 ver; + int irq; + struct ldma_port *ports; + struct ldma_chan *chans; + spinlock_t dev_lock; + u32 chan_nrs; + u32 port_nrs; + u32 channels_mask; + u32 flags; + u32 pollcnt; + const struct ldma_inst_data *inst; + struct workqueue_struct *wq; +}; + +struct ldma_inst_data { + bool desc_in_sram; + bool chan_fc; + bool desc_fod; + bool valid_desc_fetch_ack; + u32 orrc; + const char *name; + u32 type; +}; + +struct dw2_desc { + u32 field; + u32 addr; +}; + +struct virtio_device_id { + __u32 device; + __u32 vendor; +}; + +struct virtio_pci_common_cfg { + __le32 device_feature_select; + __le32 device_feature; + __le32 guest_feature_select; + __le32 guest_feature; + __le16 msix_config; + __le16 num_queues; + __u8 device_status; + __u8 config_generation; + __le16 queue_select; + __le16 queue_size; + __le16 queue_msix_vector; + __le16 queue_enable; + __le16 queue_notify_off; + __le32 queue_desc_lo; + __le32 queue_desc_hi; + __le32 queue_avail_lo; + __le32 queue_avail_hi; + __le32 queue_used_lo; + __le32 queue_used_hi; +}; + +struct virtio_pci_modern_common_cfg { + struct virtio_pci_common_cfg cfg; + __le16 queue_notify_data; + __le16 queue_reset; + __le16 admin_queue_index; + __le16 admin_queue_num; +}; + +struct virtio_pci_modern_device { + struct pci_dev *pci_dev; + struct virtio_pci_common_cfg *common; + void *device; + void *notify_base; + resource_size_t notify_pa; + u8 *isr; + size_t notify_len; + size_t device_len; + size_t common_len; + int notify_map_cap; + u32 notify_offset_multiplier; + int modern_bars; + struct virtio_device_id id; + int (*device_id_check)(struct pci_dev *); + u64 dma_mask; +}; + +struct irq_affinity { + unsigned int pre_vectors; + unsigned int post_vectors; + unsigned int nr_sets; + unsigned int set_size[4]; + void (*calc_sets)(struct irq_affinity *, unsigned int); + void *priv; +}; + +struct virtio_device; + +struct virtqueue { + struct list_head list; + void (*callback)(struct virtqueue *); + const char *name; + struct virtio_device *vdev; + unsigned int index; + unsigned int num_free; + unsigned int num_max; + bool reset; + void *priv; +}; + +struct vringh_config_ops; + +struct virtio_config_ops; + +struct virtio_device { + int index; + bool failed; + bool config_core_enabled; + bool config_driver_disabled; + bool config_change_pending; + spinlock_t config_lock; + spinlock_t vqs_list_lock; + struct device dev; + struct virtio_device_id id; + const struct virtio_config_ops *config; + const struct vringh_config_ops *vringh_config; + struct list_head vqs; + union { + u64 features; + u64 features_array[2]; + }; + void *priv; +}; + +struct virtqueue_info; + +struct virtio_shm_region; + +struct virtio_config_ops { + void (*get)(struct virtio_device *, unsigned int, void *, unsigned int); + void (*set)(struct virtio_device *, unsigned int, const void *, unsigned int); + u32 (*generation)(struct virtio_device *); + u8 (*get_status)(struct virtio_device *); + void (*set_status)(struct virtio_device *, u8); + void (*reset)(struct virtio_device *); + int (*find_vqs)(struct virtio_device *, unsigned int, struct virtqueue **, struct virtqueue_info *, struct irq_affinity *); + void (*del_vqs)(struct virtio_device *); + void (*synchronize_cbs)(struct virtio_device *); + u64 (*get_features)(struct virtio_device *); + void (*get_extended_features)(struct virtio_device *, u64 *); + int (*finalize_features)(struct virtio_device *); + const char * (*bus_name)(struct virtio_device *); + int (*set_vq_affinity)(struct virtqueue *, const struct cpumask *); + const struct cpumask * (*get_vq_affinity)(struct virtio_device *, int); + bool (*get_shm_region)(struct virtio_device *, struct virtio_shm_region *, u8); + int (*disable_vq_and_reset)(struct virtqueue *); + int (*enable_vq_after_reset)(struct virtqueue *); +}; + +struct virtio_shm_region { + u64 addr; + u64 len; +}; + +typedef void vq_callback_t(struct virtqueue *); + +struct virtqueue_info { + const char *name; + vq_callback_t *callback; + bool ctx; +}; + +struct virtio_mmio_device { + struct virtio_device vdev; + struct platform_device *pdev; + void *base; + long unsigned int version; +}; + +struct virtio_admin_cmd { + __le16 opcode; + __le16 group_type; + __le64 group_member_id; + struct scatterlist *data_sg; + struct scatterlist *result_sg; + struct completion completion; + u32 result_sg_size; + int ret; +}; + +struct virtio_admin_cmd_legacy_wr_data { + __u8 offset; + __u8 reserved[7]; + __u8 registers[0]; +}; + +struct virtio_admin_cmd_legacy_rd_data { + __u8 offset; +}; + +struct virtio_admin_cmd_notify_info_data { + __u8 flags; + __u8 bar; + __u8 padding[6]; + __le64 offset; +}; + +struct virtio_admin_cmd_notify_info_result { + struct virtio_admin_cmd_notify_info_data entries[4]; +}; + +struct virtio_pci_legacy_device { + struct pci_dev *pci_dev; + u8 *isr; + void *ioaddr; + struct virtio_device_id id; +}; + +struct virtio_pci_vq_info { + struct virtqueue *vq; + struct list_head node; + unsigned int msix_vector; +}; + +struct virtio_pci_admin_vq { + struct virtio_pci_vq_info *info; + spinlock_t lock; + u64 supported_cmds; + u64 supported_caps; + u8 max_dev_parts_objects; + struct ida dev_parts_ida; + char name[10]; + u16 vq_index; +}; + +struct virtio_pci_device { + struct virtio_device vdev; + struct pci_dev *pci_dev; + union { + struct virtio_pci_legacy_device ldev; + struct virtio_pci_modern_device mdev; + }; + bool is_legacy; + u8 *isr; + spinlock_t lock; + struct list_head virtqueues; + struct list_head slow_virtqueues; + struct virtio_pci_vq_info **vqs; + struct virtio_pci_admin_vq admin_vq; + int msix_enabled; + int intx_enabled; + cpumask_var_t *msix_affinity_masks; + char (*msix_names)[256]; + unsigned int msix_vectors; + unsigned int msix_used_vectors; + bool per_vq_vectors; + struct virtqueue * (*setup_vq)(struct virtio_pci_device *, struct virtio_pci_vq_info *, unsigned int, void (*)(struct virtqueue *), const char *, bool, u16); + void (*del_vq)(struct virtio_pci_vq_info *); + u16 (*config_vector)(struct virtio_pci_device *, u16); + int (*avq_index)(struct virtio_device *, u16 *, u16 *); +}; + +struct regulator_state { + int uV; + int min_uV; + int max_uV; + unsigned int mode; + int enabled; + bool changeable; +}; + +struct notification_limit { + int prot; + int err; + int warn; +}; + +struct regulation_constraints { + const char *name; + int min_uV; + int max_uV; + int uV_offset; + int min_uA; + int max_uA; + int ilim_uA; + int pw_budget_mW; + int system_load; + u32 *max_spread; + int max_uV_step; + unsigned int valid_modes_mask; + unsigned int valid_ops_mask; + int input_uV; + struct regulator_state state_disk; + struct regulator_state state_mem; + struct regulator_state state_standby; + struct notification_limit over_curr_limits; + struct notification_limit over_voltage_limits; + struct notification_limit under_voltage_limits; + struct notification_limit temp_limits; + suspend_state_t initial_state; + unsigned int initial_mode; + unsigned int ramp_delay; + unsigned int settling_time; + unsigned int settling_time_up; + unsigned int settling_time_down; + unsigned int enable_time; + unsigned int uv_less_critical_window_ms; + unsigned int active_discharge; + unsigned int always_on: 1; + unsigned int boot_on: 1; + unsigned int apply_uV: 1; + unsigned int ramp_disable: 1; + unsigned int soft_start: 1; + unsigned int pull_down: 1; + unsigned int system_critical: 1; + unsigned int over_current_protection: 1; + unsigned int over_current_detection: 1; + unsigned int over_voltage_detection: 1; + unsigned int under_voltage_detection: 1; + unsigned int over_temp_detection: 1; +}; + +struct regulator_consumer_supply { + const char *dev_name; + const char *supply; +}; + +struct regulator_init_data { + const char *supply_regulator; + struct regulation_constraints constraints; + int num_consumer_supplies; + struct regulator_consumer_supply *consumer_supplies; + void *driver_data; +}; + +struct fixed_voltage_config { + const char *supply_name; + const char *input_supply; + int microvolts; + unsigned int startup_delay; + unsigned int off_on_delay; + unsigned int enabled_at_boot: 1; + struct regulator_init_data *init_data; +}; + +struct fixed_regulator_data { + struct fixed_voltage_config cfg; + struct regulator_init_data init_data; + struct platform_device pdev; +}; + +struct regulator; + +struct regulator_bulk_data { + const char *supply; + struct regulator *consumer; + int init_load_uA; + int ret; +}; + +struct regulator_voltage { + int min_uV; + int max_uV; +}; + +struct regulator_dev; + +struct regulator { + struct device *dev; + struct list_head list; + unsigned int always_on: 1; + unsigned int bypass: 1; + unsigned int device_link: 1; + int uA_load; + unsigned int enable_count; + unsigned int deferred_disables; + struct regulator_voltage voltage[5]; + const char *supply_name; + struct device_attribute dev_attr; + struct regulator_dev *rdev; + struct dentry *debugfs; +}; + +struct linear_range { + unsigned int min; + unsigned int min_sel; + unsigned int max_sel; + unsigned int step; +}; + +struct regulator_ops { + int (*list_voltage)(struct regulator_dev *, unsigned int); + int (*set_voltage)(struct regulator_dev *, int, int, unsigned int *); + int (*map_voltage)(struct regulator_dev *, int, int); + int (*set_voltage_sel)(struct regulator_dev *, unsigned int); + int (*get_voltage)(struct regulator_dev *); + int (*get_voltage_sel)(struct regulator_dev *); + int (*set_current_limit)(struct regulator_dev *, int, int); + int (*get_current_limit)(struct regulator_dev *); + int (*set_input_current_limit)(struct regulator_dev *, int); + int (*set_over_current_protection)(struct regulator_dev *, int, int, bool); + int (*set_over_voltage_protection)(struct regulator_dev *, int, int, bool); + int (*set_under_voltage_protection)(struct regulator_dev *, int, int, bool); + int (*set_thermal_protection)(struct regulator_dev *, int, int, bool); + int (*set_active_discharge)(struct regulator_dev *, bool); + int (*enable)(struct regulator_dev *); + int (*disable)(struct regulator_dev *); + int (*is_enabled)(struct regulator_dev *); + int (*set_mode)(struct regulator_dev *, unsigned int); + unsigned int (*get_mode)(struct regulator_dev *); + int (*get_error_flags)(struct regulator_dev *, unsigned int *); + int (*enable_time)(struct regulator_dev *); + int (*set_ramp_delay)(struct regulator_dev *, int); + int (*set_voltage_time)(struct regulator_dev *, int, int); + int (*set_voltage_time_sel)(struct regulator_dev *, unsigned int, unsigned int); + int (*set_soft_start)(struct regulator_dev *); + int (*get_status)(struct regulator_dev *); + unsigned int (*get_optimum_mode)(struct regulator_dev *, int, int, int); + int (*set_load)(struct regulator_dev *, int); + int (*set_bypass)(struct regulator_dev *, bool); + int (*get_bypass)(struct regulator_dev *, bool *); + int (*set_suspend_voltage)(struct regulator_dev *, int); + int (*set_suspend_enable)(struct regulator_dev *); + int (*set_suspend_disable)(struct regulator_dev *); + int (*set_suspend_mode)(struct regulator_dev *, unsigned int); + int (*resume)(struct regulator_dev *); + int (*set_pull_down)(struct regulator_dev *); +}; + +struct regulator_coupler; + +struct coupling_desc { + struct regulator_dev **coupled_rdevs; + struct regulator_coupler *coupler; + int n_resolved; + int n_coupled; +}; + +struct regulator_desc; + +struct regulator_enable_gpio; + +struct regulator_dev { + const struct regulator_desc *desc; + int exclusive; + u32 use_count; + u32 open_count; + u32 bypass_count; + struct list_head list; + struct list_head consumer_list; + struct coupling_desc coupling_desc; + struct blocking_notifier_head notifier; + struct ww_mutex mutex; + struct task_struct *mutex_owner; + int ref_cnt; + struct module *owner; + struct device dev; + struct regulation_constraints *constraints; + struct regulator *supply; + const char *supply_name; + struct regmap *regmap; + struct delayed_work disable_work; + void *reg_data; + struct dentry *debugfs; + struct regulator_enable_gpio *ena_pin; + unsigned int ena_gpio_state: 1; + unsigned int is_switch: 1; + ktime_t last_off; + int cached_err; + bool use_cached_err; + spinlock_t err_lock; + int pw_requested_mW; +}; + +enum regulator_type { + REGULATOR_VOLTAGE = 0, + REGULATOR_CURRENT = 1, +}; + +struct regulator_config; + +struct regulator_desc { + const char *name; + const char *supply_name; + const char *of_match; + bool of_match_full_name; + const char *regulators_node; + int (*of_parse_cb)(struct device_node *, const struct regulator_desc *, struct regulator_config *); + int (*init_cb)(struct regulator_dev *, struct regulator_config *); + int id; + unsigned int continuous_voltage_range: 1; + unsigned int n_voltages; + unsigned int n_current_limits; + const struct regulator_ops *ops; + int irq; + enum regulator_type type; + struct module *owner; + unsigned int min_uV; + unsigned int uV_step; + unsigned int linear_min_sel; + int fixed_uV; + unsigned int ramp_delay; + int min_dropout_uV; + const struct linear_range *linear_ranges; + const unsigned int *linear_range_selectors_bitfield; + int n_linear_ranges; + const unsigned int *volt_table; + const unsigned int *curr_table; + unsigned int vsel_range_reg; + unsigned int vsel_range_mask; + bool range_applied_by_vsel; + unsigned int vsel_reg; + unsigned int vsel_mask; + unsigned int vsel_step; + unsigned int csel_reg; + unsigned int csel_mask; + unsigned int apply_reg; + unsigned int apply_bit; + unsigned int enable_reg; + unsigned int enable_mask; + unsigned int enable_val; + unsigned int disable_val; + bool enable_is_inverted; + unsigned int bypass_reg; + unsigned int bypass_mask; + unsigned int bypass_val_on; + unsigned int bypass_val_off; + unsigned int active_discharge_on; + unsigned int active_discharge_off; + unsigned int active_discharge_mask; + unsigned int active_discharge_reg; + unsigned int soft_start_reg; + unsigned int soft_start_mask; + unsigned int soft_start_val_on; + unsigned int pull_down_reg; + unsigned int pull_down_mask; + unsigned int pull_down_val_on; + unsigned int ramp_reg; + unsigned int ramp_mask; + const unsigned int *ramp_delay_table; + unsigned int n_ramp_values; + unsigned int enable_time; + unsigned int off_on_delay; + unsigned int poll_enabled_time; + unsigned int (*of_map_mode)(unsigned int); +}; + +struct regulator_config { + struct device *dev; + const struct regulator_init_data *init_data; + void *driver_data; + struct device_node *of_node; + struct regmap *regmap; + struct gpio_desc *ena_gpiod; +}; + +struct regulator_err_state { + struct regulator_dev *rdev; + long unsigned int notifs; + long unsigned int errors; + int possible_errs; +}; + +struct regulator_irq_data { + struct regulator_err_state *states; + int num_states; + void *data; + long int opaque; +}; + +struct regulator_irq_desc { + const char *name; + int fatal_cnt; + int reread_ms; + int irq_off_ms; + bool skip_off; + bool high_prio; + void *data; + int (*die)(struct regulator_irq_data *); + int (*map_event)(int, struct regulator_irq_data *, long unsigned int *); + int (*renable)(struct regulator_irq_data *); +}; + +enum regulator_get_type { + NORMAL_GET = 0, + EXCLUSIVE_GET = 1, + OPTIONAL_GET = 2, + MAX_GET_TYPE = 3, +}; + +struct regulator_bulk_devres { + struct regulator_bulk_data *consumers; + int num_consumers; +}; + +struct regulator_supply_alias_match { + struct device *dev; + const char *id; +}; + +struct regulator_notifier_match { + struct regulator *regulator; + struct notifier_block *nb; +}; + +struct gpiod_lookup { + const char *key; + u16 chip_hwnum; + const char *con_id; + unsigned int idx; + long unsigned int flags; +}; + +struct gpiod_lookup_table { + struct list_head list; + const char *dev_id; + struct gpiod_lookup table[0]; +}; + +struct reset_controller_dev; + +struct reset_control { + struct reset_controller_dev *rcdev; + struct list_head list; + unsigned int id; + struct kref refcnt; + bool acquired; + bool shared; + bool array; + atomic_t deassert_count; + atomic_t triggered_count; +}; + +struct reset_control_ops { + int (*reset)(struct reset_controller_dev *, long unsigned int); + int (*assert)(struct reset_controller_dev *, long unsigned int); + int (*deassert)(struct reset_controller_dev *, long unsigned int); + int (*status)(struct reset_controller_dev *, long unsigned int); +}; + +struct reset_controller_dev { + const struct reset_control_ops *ops; + struct module *owner; + struct list_head list; + struct list_head reset_control_head; + struct device *dev; + struct device_node *of_node; + const struct of_phandle_args *of_args; + int of_reset_n_cells; + int (*of_xlate)(struct reset_controller_dev *, const struct of_phandle_args *); + unsigned int nr_resets; +}; + +struct reset_control_lookup { + struct list_head list; + const char *provider; + unsigned int index; + const char *dev_id; + const char *con_id; +}; + +struct reset_control_array { + struct reset_control base; + unsigned int num_rstcs; + struct reset_control *rstc[0]; +}; + +struct reset_gpio_lookup { + struct of_phandle_args of_args; + struct list_head list; +}; + +struct reset_control_bulk_devres { + int num_rstcs; + struct reset_control_bulk_data *rstcs; +}; + +typedef unsigned int uint; + +typedef struct { + spinlock_t *lock; + long unsigned int flags; +} class_spinlock_irqsave_t; + +typedef u32 compat_uint_t; + +enum tty_driver_flag { + TTY_DRIVER_INSTALLED = 1, + TTY_DRIVER_RESET_TERMIOS = 2, + TTY_DRIVER_REAL_RAW = 4, + TTY_DRIVER_DYNAMIC_DEV = 8, + TTY_DRIVER_DEVPTS_MEM = 16, + TTY_DRIVER_HARDWARE_BREAK = 32, + TTY_DRIVER_DYNAMIC_ALLOC = 64, + TTY_DRIVER_UNNUMBERED_NODE = 128, +}; + +struct serial_icounter_struct { + int cts; + int dsr; + int rng; + int dcd; + int rx; + int tx; + int frame; + int overrun; + int parity; + int brk; + int buf_overrun; + int reserved[9]; +}; + +struct serial_struct { + int type; + int line; + unsigned int port; + int irq; + int flags; + int xmit_fifo_size; + int custom_divisor; + int baud_base; + short unsigned int close_delay; + char io_type; + char reserved_char[1]; + int hub6; + short unsigned int closing_wait; + short unsigned int closing_wait2; + unsigned char *iomem_base; + short unsigned int iomem_reg_shift; + unsigned int port_high; + long unsigned int iomap_base; +}; + +enum tty_struct_flags { + TTY_THROTTLED = 0, + TTY_IO_ERROR = 1, + TTY_OTHER_CLOSED = 2, + TTY_EXCLUSIVE = 3, + TTY_DO_WRITE_WAKEUP = 4, + TTY_LDISC_OPEN = 5, + TTY_PTY_LOCK = 6, + TTY_NO_WRITE_SPLIT = 7, + TTY_HUPPED = 8, + TTY_HUPPING = 9, + TTY_LDISC_CHANGING = 10, + TTY_LDISC_HALTED = 11, +}; + +enum cons_flags { + CON_PRINTBUFFER = 1, + CON_CONSDEV = 2, + CON_ENABLED = 4, + CON_BOOT = 8, + CON_ANYTIME = 16, + CON_BRL = 32, + CON_EXTENDED = 64, + CON_SUSPENDED = 128, + CON_NBCON = 256, +}; + +enum nbcon_prio { + NBCON_PRIO_NONE = 0, + NBCON_PRIO_NORMAL = 1, + NBCON_PRIO_EMERGENCY = 2, + NBCON_PRIO_PANIC = 3, + NBCON_PRIO_MAX = 4, +}; + +struct console; + +struct printk_buffers; + +struct nbcon_context { + struct console *console; + unsigned int spinwait_max_us; + enum nbcon_prio prio; + unsigned int allow_unsafe_takeover: 1; + unsigned int backlog: 1; + struct printk_buffers *pbufs; + u64 seq; +}; + +struct nbcon_write_context; + +struct console { + char name[16]; + void (*write)(struct console *, const char *, unsigned int); + int (*read)(struct console *, char *, unsigned int); + struct tty_driver * (*device)(struct console *, int *); + void (*unblank)(void); + int (*setup)(struct console *, char *); + int (*exit)(struct console *); + int (*match)(struct console *, char *, int, char *); + short int flags; + short int index; + int cflag; + uint ispeed; + uint ospeed; + u64 seq; + long unsigned int dropped; + void *data; + struct hlist_node node; + void (*write_atomic)(struct console *, struct nbcon_write_context *); + void (*write_thread)(struct console *, struct nbcon_write_context *); + void (*device_lock)(struct console *, long unsigned int *); + void (*device_unlock)(struct console *, long unsigned int); + atomic_t nbcon_state; + atomic_long_t nbcon_seq; + struct nbcon_context nbcon_device_ctxt; + atomic_long_t nbcon_prev_seq; + struct printk_buffers *pbufs; + struct task_struct *kthread; + struct rcuwait rcuwait; + struct irq_work irq_work; +}; + +struct nbcon_write_context { + struct nbcon_context ctxt; + char *outbuf; + unsigned int len; + bool unsafe_takeover; +}; + +struct serial_struct32 { + compat_int_t type; + compat_int_t line; + compat_uint_t port; + compat_int_t irq; + compat_int_t flags; + compat_int_t xmit_fifo_size; + compat_int_t custom_divisor; + compat_int_t baud_base; + short unsigned int close_delay; + char io_type; + char reserved_char; + compat_int_t hub6; + short unsigned int closing_wait; + short unsigned int closing_wait2; + compat_uint_t iomem_base; + short unsigned int iomem_reg_shift; + unsigned int port_high; + compat_int_t reserved; +}; + +struct tty_audit_buf { + struct mutex mutex; + dev_t dev; + bool icanon; + size_t valid; + u8 *data; +}; + +struct vc { + struct vc_data *d; + struct work_struct SAK_work; +}; + +struct vt_notifier_param { + struct vc_data *vc; + unsigned int c; +}; + +struct vcs_poll_data { + struct notifier_block notifier; + unsigned int cons_num; + int event; + wait_queue_head_t waitq; + struct fasync_struct *fasync; +}; + +struct tiocl_selection { + short unsigned int xs; + short unsigned int ys; + short unsigned int xe; + short unsigned int ye; + short unsigned int sel_mode; +}; + +struct vc_selection { + struct mutex lock; + struct vc_data *cons; + char *buffer; + unsigned int buf_len; + volatile int start; + int end; +}; + +struct ucs_interval16 { + u16 first; + u16 last; +}; + +struct ucs_interval32 { + u32 first; + u32 last; +}; + +struct ucs_recomposition { + u16 base; + u16 mark; + u16 recomposed; +}; + +struct compare_key { + u16 base; + u16 mark; +}; + +struct ucs_page_desc { + u8 page; + u8 count; + u16 start; +}; + +struct ucs_page_entry { + u8 offset; + u8 fallback; +}; + +struct hv_ops; + +struct hvc_struct { + struct tty_port port; + spinlock_t lock; + int index; + int do_wakeup; + int outbuf_size; + int n_outbuf; + uint32_t vtermno; + const struct hv_ops *ops; + int irq_requested; + int data; + struct winsize ws; + struct work_struct tty_resize; + struct list_head next; + long unsigned int flags; + u8 outbuf[0]; +}; + +struct hv_ops { + ssize_t (*get_chars)(uint32_t, u8 *, size_t); + ssize_t (*put_chars)(uint32_t, const u8 *, size_t); + int (*flush)(uint32_t, bool); + int (*notifier_add)(struct hvc_struct *, int); + void (*notifier_del)(struct hvc_struct *, int); + void (*notifier_hangup)(struct hvc_struct *, int); + int (*tiocmget)(struct hvc_struct *); + int (*tiocmset)(struct hvc_struct *, unsigned int, unsigned int); + void (*dtr_rts)(struct hvc_struct *, bool); +}; + +struct serial_rs485 { + __u32 flags; + __u32 delay_rts_before_send; + __u32 delay_rts_after_send; + union { + __u32 padding[5]; + struct { + __u8 addr_recv; + __u8 addr_dest; + __u8 padding0[2]; + __u32 padding1[4]; + }; + }; +}; + +struct serial_iso7816 { + __u32 flags; + __u32 tg; + __u32 sc_fi; + __u32 sc_di; + __u32 clk; + __u32 reserved[5]; +}; + +struct uart_port; + +struct uart_ops { + unsigned int (*tx_empty)(struct uart_port *); + void (*set_mctrl)(struct uart_port *, unsigned int); + unsigned int (*get_mctrl)(struct uart_port *); + void (*stop_tx)(struct uart_port *); + void (*start_tx)(struct uart_port *); + void (*throttle)(struct uart_port *); + void (*unthrottle)(struct uart_port *); + void (*send_xchar)(struct uart_port *, char); + void (*stop_rx)(struct uart_port *); + void (*start_rx)(struct uart_port *); + void (*enable_ms)(struct uart_port *); + void (*break_ctl)(struct uart_port *, int); + int (*startup)(struct uart_port *); + void (*shutdown)(struct uart_port *); + void (*flush_buffer)(struct uart_port *); + void (*set_termios)(struct uart_port *, struct ktermios *, const struct ktermios *); + void (*set_ldisc)(struct uart_port *, struct ktermios *); + void (*pm)(struct uart_port *, unsigned int, unsigned int); + const char * (*type)(struct uart_port *); + void (*release_port)(struct uart_port *); + int (*request_port)(struct uart_port *); + void (*config_port)(struct uart_port *, int); + int (*verify_port)(struct uart_port *, struct serial_struct *); + int (*ioctl)(struct uart_port *, unsigned int, long unsigned int); + int (*poll_init)(struct uart_port *); + void (*poll_put_char)(struct uart_port *, unsigned char); + int (*poll_get_char)(struct uart_port *); +}; + +enum uart_iotype { + UPIO_UNKNOWN = -1, + UPIO_PORT = 0, + UPIO_HUB6 = 1, + UPIO_MEM = 2, + UPIO_MEM32 = 3, + UPIO_AU = 4, + UPIO_TSI = 5, + UPIO_MEM32BE = 6, + UPIO_MEM16 = 7, +}; + +struct uart_icount { + __u32 cts; + __u32 dsr; + __u32 rng; + __u32 dcd; + __u32 rx; + __u32 tx; + __u32 frame; + __u32 overrun; + __u32 parity; + __u32 brk; + __u32 buf_overrun; +}; + +typedef u64 upf_t; + +typedef unsigned int upstat_t; + +struct uart_state; + +struct serial_port_device; + +struct uart_port { + spinlock_t lock; + long unsigned int iobase; + unsigned char *membase; + u32 (*serial_in)(struct uart_port *, unsigned int); + void (*serial_out)(struct uart_port *, unsigned int, u32); + void (*set_termios)(struct uart_port *, struct ktermios *, const struct ktermios *); + void (*set_ldisc)(struct uart_port *, struct ktermios *); + unsigned int (*get_mctrl)(struct uart_port *); + void (*set_mctrl)(struct uart_port *, unsigned int); + unsigned int (*get_divisor)(struct uart_port *, unsigned int, unsigned int *); + void (*set_divisor)(struct uart_port *, unsigned int, unsigned int, unsigned int); + int (*startup)(struct uart_port *); + void (*shutdown)(struct uart_port *); + void (*throttle)(struct uart_port *); + void (*unthrottle)(struct uart_port *); + int (*handle_irq)(struct uart_port *); + void (*pm)(struct uart_port *, unsigned int, unsigned int); + void (*handle_break)(struct uart_port *); + int (*rs485_config)(struct uart_port *, struct ktermios *, struct serial_rs485 *); + int (*iso7816_config)(struct uart_port *, struct serial_iso7816 *); + unsigned int ctrl_id; + unsigned int port_id; + unsigned int irq; + long unsigned int irqflags; + unsigned int uartclk; + unsigned int fifosize; + unsigned char x_char; + unsigned char regshift; + unsigned char quirks; + enum uart_iotype iotype; + unsigned int read_status_mask; + unsigned int ignore_status_mask; + struct uart_state *state; + struct uart_icount icount; + struct console *cons; + upf_t flags; + upstat_t status; + bool hw_stopped; + unsigned int mctrl; + unsigned int frame_time; + unsigned int type; + const struct uart_ops *ops; + unsigned int custom_divisor; + unsigned int line; + unsigned int minor; + resource_size_t mapbase; + resource_size_t mapsize; + struct device *dev; + struct serial_port_device *port_dev; + long unsigned int sysrq; + u8 sysrq_ch; + unsigned char has_sysrq; + unsigned char sysrq_seq; + unsigned char hub6; + unsigned char suspended; + unsigned char console_reinit; + const char *name; + struct attribute_group *attr_group; + const struct attribute_group **tty_groups; + struct serial_rs485 rs485; + struct serial_rs485 rs485_supported; + struct gpio_desc *rs485_term_gpio; + struct gpio_desc *rs485_rx_during_tx_gpio; + struct serial_iso7816 iso7816; + void *private_data; +}; + +enum uart_pm_state { + UART_PM_STATE_ON = 0, + UART_PM_STATE_OFF = 3, + UART_PM_STATE_UNDEFINED = 4, +}; + +struct uart_state { + struct tty_port port; + enum uart_pm_state pm_state; + atomic_t refcount; + wait_queue_head_t remove_wait; + struct uart_port *uart_port; +}; + +struct serial_port_device { + struct device dev; + struct uart_port *port; + unsigned int tx_enabled: 1; +}; + +struct uart_driver { + struct module *owner; + const char *driver_name; + const char *dev_name; + int major; + int minor; + int nr; + struct console *cons; + struct uart_state *state; + struct tty_driver *tty_driver; +}; + +enum { + KERNEL_PARAM_FL_UNSAFE = 1, + KERNEL_PARAM_FL_HWPARAM = 2, +}; + +enum hwparam_type { + hwparam_ioport = 0, + hwparam_iomem = 1, + hwparam_ioport_or_iomem = 2, + hwparam_irq = 3, + hwparam_dma = 4, + hwparam_dma_addr = 5, + hwparam_other = 6, +}; + +struct uart_8250_port; + +struct plat_serial8250_port { + long unsigned int iobase; + void *membase; + resource_size_t mapbase; + resource_size_t mapsize; + unsigned int uartclk; + unsigned int irq; + long unsigned int irqflags; + void *private_data; + unsigned char regshift; + unsigned char iotype; + unsigned char hub6; + unsigned char has_sysrq; + unsigned int type; + upf_t flags; + u16 bugs; + u32 (*serial_in)(struct uart_port *, unsigned int); + void (*serial_out)(struct uart_port *, unsigned int, u32); + u32 (*dl_read)(struct uart_8250_port *); + void (*dl_write)(struct uart_8250_port *, u32); + void (*set_termios)(struct uart_port *, struct ktermios *, const struct ktermios *); + void (*set_ldisc)(struct uart_port *, struct ktermios *); + unsigned int (*get_mctrl)(struct uart_port *); + int (*handle_irq)(struct uart_port *); + void (*pm)(struct uart_port *, unsigned int, unsigned int); + void (*handle_break)(struct uart_port *); +}; + +struct mctrl_gpios; + +struct uart_8250_dma; + +struct uart_8250_ops; + +struct uart_8250_em485; + +struct uart_8250_port { + struct uart_port port; + struct timer_list timer; + struct list_head list; + u32 capabilities; + u16 bugs; + unsigned int tx_loadsz; + unsigned char acr; + unsigned char fcr; + unsigned char ier; + unsigned char lcr; + unsigned char mcr; + unsigned char cur_iotype; + unsigned int rpm_tx_active; + unsigned char canary; + unsigned char probe; + struct mctrl_gpios *gpios; + u16 lsr_saved_flags; + u16 lsr_save_mask; + unsigned char msr_saved_flags; + struct uart_8250_dma *dma; + const struct uart_8250_ops *ops; + u32 (*dl_read)(struct uart_8250_port *); + void (*dl_write)(struct uart_8250_port *, u32); + struct uart_8250_em485 *em485; + void (*rs485_start_tx)(struct uart_8250_port *, bool); + void (*rs485_stop_tx)(struct uart_8250_port *, bool); + struct delayed_work overrun_backoff; + u32 overrun_backoff_time_ms; +}; + +enum { + PLAT8250_DEV_LEGACY = -1, + PLAT8250_DEV_PLATFORM = 0, + PLAT8250_DEV_PLATFORM1 = 1, + PLAT8250_DEV_PLATFORM2 = 2, + PLAT8250_DEV_FOURPORT = 3, + PLAT8250_DEV_ACCENT = 4, + PLAT8250_DEV_BOCA = 5, + PLAT8250_DEV_EXAR_ST16C554 = 6, + PLAT8250_DEV_HUB6 = 7, + PLAT8250_DEV_AU1X00 = 8, + PLAT8250_DEV_SM501 = 9, +}; + +struct uart_8250_ops { + int (*setup_irq)(struct uart_8250_port *); + void (*release_irq)(struct uart_8250_port *); + void (*setup_timer)(struct uart_8250_port *); +}; + +struct uart_8250_em485 { + struct hrtimer start_tx_timer; + struct hrtimer stop_tx_timer; + struct hrtimer *active_timer; + struct uart_8250_port *port; + unsigned int tx_stopped: 1; +}; + +struct uart_8250_dma { + int (*tx_dma)(struct uart_8250_port *); + int (*rx_dma)(struct uart_8250_port *); + void (*prepare_tx_dma)(struct uart_8250_port *); + void (*prepare_rx_dma)(struct uart_8250_port *); + dma_filter_fn fn; + void *rx_param; + void *tx_param; + struct dma_slave_config rxconf; + struct dma_slave_config txconf; + struct dma_chan *rxchan; + struct dma_chan *txchan; + phys_addr_t rx_dma_addr; + phys_addr_t tx_dma_addr; + dma_addr_t rx_addr; + dma_addr_t tx_addr; + dma_cookie_t rx_cookie; + dma_cookie_t tx_cookie; + void *rx_buf; + size_t rx_size; + size_t tx_size; + unsigned char tx_running; + unsigned char tx_err; + unsigned char rx_running; +}; + +struct old_serial_port { + unsigned int uart; + unsigned int baud_base; + unsigned int port; + unsigned int irq; + upf_t flags; + unsigned char io_type; + unsigned char *iomem_base; + short unsigned int iomem_reg_shift; +}; + +typedef void (*serial8250_isa_config_fn)(int, struct uart_port *, u32 *); + +struct fintek_8250 { + u16 pid; + u16 base_port; + u8 index; + u8 key; +}; + +struct hsu_dma_slave { + struct device *dma_dev; + int chan_id; +}; + +struct hsu_dma; + +struct hsu_dma_chip { + struct device *dev; + int irq; + void *regs; + unsigned int length; + unsigned int offset; + struct hsu_dma *hsu; +}; + +struct mid8250; + +struct mid8250_board { + long unsigned int freq; + unsigned int base_baud; + unsigned int bar; + int (*setup)(struct mid8250 *, struct uart_port *); + void (*exit)(struct mid8250 *); +}; + +struct mid8250 { + int line; + int dma_index; + struct pci_dev *dma_dev; + struct uart_8250_dma dma; + struct mid8250_board *board; + struct hsu_dma_chip dma_chip; +}; + +struct sccnxp_pdata { + const u8 reg_shift; + const u32 mctrl_cfg[2]; + const unsigned int poll_time_us; +}; + +struct sccnxp_chip { + const char *name; + unsigned int nr; + long unsigned int freq_min; + long unsigned int freq_std; + long unsigned int freq_max; + unsigned int flags; + unsigned int fifosize; + unsigned int trwd; +}; + +struct sccnxp_port { + struct uart_driver uart; + struct uart_port port[2]; + bool opened[2]; + int irq; + u8 imr; + struct sccnxp_chip *chip; + struct console console; + spinlock_t lock; + bool poll; + struct timer_list timer; + struct sccnxp_pdata pdata; + struct regulator *regulator; +}; + +struct splice_desc { + size_t total_len; + unsigned int len; + unsigned int flags; + union { + void *userptr; + struct file *file; + void *data; + } u; + void (*splice_eof)(struct splice_desc *); + loff_t pos; + loff_t *opos; + size_t num_spliced; + bool need_wakeup; +}; + +typedef int splice_actor(struct pipe_inode_info *, struct pipe_buffer *, struct splice_desc *); + +struct memdev { + const char *name; + const struct file_operations *fops; + fmode_t fmode; + umode_t mode; +}; + +struct agp_version { + u16 major; + u16 minor; +}; + +struct agp_bridge_data; + +struct agp_memory { + struct agp_memory *next; + struct agp_memory *prev; + struct agp_bridge_data *bridge; + struct page **pages; + size_t page_count; + int key; + int num_scratch_pages; + off_t pg_start; + u32 type; + u32 physical; + bool is_bound; + bool is_flushed; + struct list_head mapped_list; + struct scatterlist *sg_list; + int num_sg; +}; + +struct agp_bridge_driver; + +struct agp_bridge_data { + const struct agp_version *version; + const struct agp_bridge_driver *driver; + const struct vm_operations_struct *vm_ops; + void *previous_size; + void *current_size; + void *dev_private_data; + struct pci_dev *dev; + u32 *gatt_table; + u32 *gatt_table_real; + long unsigned int scratch_page; + struct page *scratch_page_page; + dma_addr_t scratch_page_dma; + long unsigned int gart_bus_addr; + long unsigned int gatt_bus_addr; + u32 mode; + long unsigned int *key_list; + atomic_t current_memory_agp; + atomic_t agp_in_use; + int max_memory_agp; + int aperture_size_idx; + int capndx; + int flags; + char major_version; + char minor_version; + struct list_head list; + u32 apbase_config; + struct list_head mapped_list; + spinlock_t mapped_lock; +}; + +struct amd_l3_cache { + unsigned int indices; + u8 subcaches[4]; +}; + +struct amd_northbridge { + struct pci_dev *misc; + struct pci_dev *link; + struct amd_l3_cache l3_cache; +}; + +enum aper_size_type { + U8_APER_SIZE = 0, + U16_APER_SIZE = 1, + U32_APER_SIZE = 2, + LVL2_APER_SIZE = 3, + FIXED_APER_SIZE = 4, +}; + +struct gatt_mask { + long unsigned int mask; + u32 type; +}; + +struct aper_size_info_32 { + int size; + int num_entries; + int page_order; + u32 size_value; +}; + +struct agp_bridge_driver { + struct module *owner; + const void *aperture_sizes; + int num_aperture_sizes; + enum aper_size_type size_type; + bool cant_use_aperture; + bool needs_scratch_page; + const struct gatt_mask *masks; + int (*fetch_size)(void); + int (*configure)(void); + void (*agp_enable)(struct agp_bridge_data *, u32); + void (*cleanup)(void); + void (*tlb_flush)(struct agp_memory *); + long unsigned int (*mask_memory)(struct agp_bridge_data *, dma_addr_t, int); + void (*cache_flush)(void); + int (*create_gatt_table)(struct agp_bridge_data *); + int (*free_gatt_table)(struct agp_bridge_data *); + int (*insert_memory)(struct agp_memory *, off_t, int); + int (*remove_memory)(struct agp_memory *, off_t, int); + struct agp_memory * (*alloc_by_type)(size_t, int); + void (*free_by_type)(struct agp_memory *); + struct page * (*agp_alloc_page)(struct agp_bridge_data *); + int (*agp_alloc_pages)(struct agp_bridge_data *, struct agp_memory *, size_t); + void (*agp_destroy_page)(struct page *, int); + void (*agp_destroy_pages)(struct agp_memory *); + int (*agp_type_to_mask_type)(struct agp_bridge_data *, int); +}; + +enum chipset_type { + NOT_SUPPORTED = 0, + SUPPORTED = 1, +}; + +struct aper_size_info_8 { + int size; + int num_entries; + int page_order; + u8 size_value; +}; + +struct aper_size_info_16 { + int size; + int num_entries; + int page_order; + u16 size_value; +}; + +struct agp_device_ids { + short unsigned int device_id; + enum chipset_type chipset; + const char *chipset_name; + int (*chipset_setup)(struct pci_dev *); +}; + +struct file_priv { + struct tpm_chip *chip; + struct tpm_space *space; + struct mutex buffer_mutex; + struct timer_list user_read_timer; + struct work_struct timeout_work; + struct work_struct async_work; + wait_queue_head_t async_wait; + ssize_t response_length; + bool response_read; + bool command_enqueued; + u8 data_buffer[4096]; +}; + +struct tpmrm_priv { + struct file_priv priv; + struct tpm_space space; +}; + +enum tpm_chip_flags { + TPM_CHIP_FLAG_BOOTSTRAPPED = 1, + TPM_CHIP_FLAG_TPM2 = 2, + TPM_CHIP_FLAG_IRQ = 4, + TPM_CHIP_FLAG_VIRTUAL = 8, + TPM_CHIP_FLAG_HAVE_TIMEOUTS = 16, + TPM_CHIP_FLAG_ALWAYS_POWERED = 32, + TPM_CHIP_FLAG_FIRMWARE_POWER_MANAGED = 64, + TPM_CHIP_FLAG_FIRMWARE_UPGRADE = 128, + TPM_CHIP_FLAG_SUSPENDED = 256, + TPM_CHIP_FLAG_HWRNG_DISABLED = 512, + TPM_CHIP_FLAG_DISABLE = 1024, + TPM_CHIP_FLAG_SYNC = 2048, +}; + +enum tpm2_structures { + TPM2_ST_NO_SESSIONS = 32769, + TPM2_ST_SESSIONS = 32770, + TPM2_ST_CREATION = 32801, +}; + +struct tpm_header { + __be16 tag; + __be32 length; + union { + __be32 ordinal; + __be32 return_code; + }; +} __attribute__((packed)); + +enum tpm_buf_flags { + TPM_BUF_OVERFLOW = 1, + TPM_BUF_TPM2B = 2, + TPM_BUF_BOUNDARY_ERROR = 4, +}; + +struct tpm_buf { + u32 flags; + u32 length; + u8 *data; + u8 handles; +}; + +struct acpi_table_tpm2 { + struct acpi_table_header header; + u16 platform_class; + u16 reserved; + u64 control_address; + u32 start_method; +} __attribute__((packed)); + +struct acpi_tpm2_phy { + u8 start_method_specific[12]; + u32 log_area_minimum_length; + u64 log_area_start_address; +}; + +enum bios_platform_class { + BIOS_CLIENT = 0, + BIOS_SERVER = 1, +}; + +struct tcg_efi_specid_event_algs { + u16 alg_id; + u16 digest_size; +}; + +struct tcg_efi_specid_event_head { + u8 signature[16]; + u32 platform_class; + u8 spec_version_minor; + u8 spec_version_major; + u8 spec_errata; + u8 uintnsize; + u32 num_algs; + struct tcg_efi_specid_event_algs digest_sizes[0]; +}; + +struct tcg_pcr_event { + u32 pcr_idx; + u32 event_type; + u8 digest[20]; + u32 event_size; + u8 event[0]; +}; + +struct client_hdr { + u32 log_max_len; + u64 log_start_addr; +} __attribute__((packed)); + +struct server_hdr { + u16 reserved; + u64 log_max_len; + u64 log_start_addr; +} __attribute__((packed)); + +struct acpi_tcpa { + struct acpi_table_header hdr; + u16 platform_class; + union { + struct client_hdr client; + struct server_hdr server; + }; +}; + +typedef int (*iova_bitmap_fn_t)(struct iova_bitmap *, long unsigned int, size_t, void *); + +struct iova_bitmap_map { + long unsigned int iova; + long unsigned int length; + long unsigned int pgshift; + long unsigned int pgoff; + long unsigned int npages; + struct page **pages; +}; + +struct iova_bitmap { + struct iova_bitmap_map mapped; + u8 *bitmap; + long unsigned int mapped_base_index; + long unsigned int mapped_total_index; + long unsigned int iova; + size_t length; +}; + +enum irq_remap_cap { + IRQ_POSTING_CAP = 0, +}; + +enum { + IRQ_REMAP_XAPIC_MODE = 0, + IRQ_REMAP_X2APIC_MODE = 1, +}; + +struct irq_remap_table { + raw_spinlock_t lock; + unsigned int min_index; + u32 *table; +}; + +enum protection_domain_mode { + PD_MODE_NONE = 0, + PD_MODE_V1 = 1, + PD_MODE_V2 = 2, +}; + +struct amd_iommu_pci_seg; + +struct amd_irte_ops; + +struct amd_iommu { + struct list_head list; + int index; + raw_spinlock_t lock; + struct pci_dev *dev; + struct pci_dev *root_pdev; + u64 mmio_phys; + u64 mmio_phys_end; + u8 *mmio_base; + u32 cap; + u8 acpi_flags; + u64 features; + u64 features2; + u16 devid; + u16 cap_ptr; + struct amd_iommu_pci_seg *pci_seg; + u64 exclusion_start; + u64 exclusion_length; + u8 *cmd_buf; + u32 cmd_buf_head; + u32 cmd_buf_tail; + u8 *evt_buf; + unsigned char evt_irq_name[16]; + u8 *ppr_log; + unsigned char ppr_irq_name[16]; + u8 *ga_log; + unsigned char ga_irq_name[16]; + u8 *ga_log_tail; + bool int_enabled; + bool need_sync; + bool irtcachedis_enabled; + struct iommu_device iommu; + u32 stored_addr_lo; + u32 stored_addr_hi; + u32 stored_l1[108]; + u32 stored_l2[131]; + u8 max_banks; + u8 max_counters; + struct irq_domain *ir_domain; + struct amd_irte_ops *irte_ops; + u32 flags; + volatile u64 *cmd_sem; + atomic64_t cmd_sem_val; + u64 cmd_sem_paddr; + struct iopf_queue *iopf_queue; + unsigned char iopfq_name[32]; +}; + +struct dev_table_entry; + +struct amd_iommu_pci_seg { + struct list_head list; + struct llist_head dev_data_list; + u16 id; + u16 last_bdf; + u32 dev_table_size; + struct dev_table_entry *dev_table; + struct amd_iommu **rlookup_table; + struct irq_remap_table **irq_lookup_table; + struct dev_table_entry *old_dev_tbl_cpy; + u16 *alias_table; + struct list_head unity_map; +}; + +struct dev_table_entry { + union { + u64 data[4]; + u128 data128[2]; + }; +}; + +struct amd_irte_ops { + void (*prepare)(void *, u32, bool, u8, u32, int); + void (*activate)(struct amd_iommu *, void *, u16, u16); + void (*deactivate)(struct amd_iommu *, void *, u16, u16); + void (*set_affinity)(struct amd_iommu *, void *, u16, u16, u8, u32); + void * (*get)(struct irq_remap_table *, int); + void (*set_allocated)(struct irq_remap_table *, int); + bool (*is_allocated)(struct irq_remap_table *, int); + void (*clear_allocated)(struct irq_remap_table *, int); +}; + +struct acpihid_map_entry { + struct list_head list; + u8 uid[256]; + u8 hid[9]; + u32 devid; + u32 root_devid; + bool cmd_line; + struct iommu_group *group; +}; + +struct devid_map { + struct list_head list; + u8 id; + u32 devid; + bool cmd_line; +}; + +struct ivhd_dte_flags { + struct list_head list; + u16 segid; + u16 devid_first; + u16 devid_last; + long: 64; + struct dev_table_entry dte; +}; + +struct unity_map_entry { + struct list_head list; + u16 devid_start; + u16 devid_end; + u64 address_start; + u64 address_end; + int prot; +}; + +enum amd_iommu_intr_mode_type { + AMD_IOMMU_GUEST_IR_LEGACY = 0, + AMD_IOMMU_GUEST_IR_LEGACY_GA = 1, + AMD_IOMMU_GUEST_IR_VAPIC = 2, +}; + +struct irq_remap_ops { + int capability; + int (*prepare)(void); + int (*enable)(void); + void (*disable)(void); + int (*reenable)(int); + int (*enable_faulting)(unsigned int); +}; + +struct ivhd_header { + u8 type; + u8 flags; + u16 length; + u16 devid; + u16 cap_ptr; + u64 mmio_phys; + u16 pci_seg; + u16 info; + u32 efr_attr; + u64 efr_reg; + u64 efr_reg2; +}; + +struct ivhd_entry { + u8 type; + u16 devid; + u8 flags; + union { + struct { + u32 ext; + u32 hidh; + }; + struct { + u32 ext; + u32 hidh; + } ext_hid; + }; + u64 cid; + u8 uidf; + u8 uidl; + u8 uid; +} __attribute__((packed)); + +struct ivmd_header { + u8 type; + u8 flags; + u16 length; + u16 devid; + u16 aux; + u16 pci_seg; + u8 resv[6]; + u64 range_start; + u64 range_length; +}; + +enum iommu_init_state { + IOMMU_START_STATE = 0, + IOMMU_IVRS_DETECTED = 1, + IOMMU_ACPI_FINISHED = 2, + IOMMU_ENABLED = 3, + IOMMU_PCI_INIT = 4, + IOMMU_INTERRUPTS_EN = 5, + IOMMU_INITIALIZED = 6, + IOMMU_NOT_FOUND = 7, + IOMMU_INIT_ERROR = 8, + IOMMU_CMDLINE_DISABLED = 9, +}; + +union intcapxt { + u64 capxt; + struct { + u64 reserved_0: 2; + u64 dest_mode_logical: 1; + u64 reserved_1: 5; + u64 destid_0_23: 24; + u64 vector: 8; + u64 reserved_2: 16; + u64 destid_24_31: 8; + }; +}; + +enum io_pgtable_fmt { + ARM_32_LPAE_S1 = 0, + ARM_32_LPAE_S2 = 1, + ARM_64_LPAE_S1 = 2, + ARM_64_LPAE_S2 = 3, + ARM_V7S = 4, + ARM_MALI_LPAE = 5, + AMD_IOMMU_V1 = 6, + AMD_IOMMU_V2 = 7, + APPLE_DART = 8, + APPLE_DART2 = 9, + IO_PGTABLE_NUM_FMTS = 10, +}; + +struct iommu_flush_ops { + void (*tlb_flush_all)(void *); + void (*tlb_flush_walk)(long unsigned int, size_t, size_t, void *); + void (*tlb_add_page)(struct iommu_iotlb_gather *, long unsigned int, size_t, void *); +}; + +struct io_pgtable_cfg { + long unsigned int quirks; + long unsigned int pgsize_bitmap; + unsigned int ias; + unsigned int oas; + bool coherent_walk; + const struct iommu_flush_ops *tlb; + struct device *iommu_dev; + void * (*alloc)(void *, size_t, gfp_t); + void (*free)(void *, void *, size_t); + union { + struct { + u64 ttbr; + struct { + u32 ips: 3; + u32 tg: 2; + u32 sh: 2; + u32 orgn: 2; + u32 irgn: 2; + u32 tsz: 6; + } tcr; + u64 mair; + } arm_lpae_s1_cfg; + struct { + u64 vttbr; + struct { + u32 ps: 3; + u32 tg: 2; + u32 sh: 2; + u32 orgn: 2; + u32 irgn: 2; + u32 sl: 2; + u32 tsz: 6; + } vtcr; + } arm_lpae_s2_cfg; + struct { + u32 ttbr; + u32 tcr; + u32 nmrr; + u32 prrr; + } arm_v7s_cfg; + struct { + u64 transtab; + u64 memattr; + } arm_mali_lpae_cfg; + struct { + u64 ttbr[4]; + u32 n_ttbrs; + } apple_dart_cfg; + struct { + int nid; + } amd; + }; +}; + +struct io_pgtable_ops { + int (*map_pages)(struct io_pgtable_ops *, long unsigned int, phys_addr_t, size_t, size_t, int, gfp_t, size_t *); + size_t (*unmap_pages)(struct io_pgtable_ops *, long unsigned int, size_t, size_t, struct iommu_iotlb_gather *); + phys_addr_t (*iova_to_phys)(struct io_pgtable_ops *, long unsigned int); + int (*pgtable_walk)(struct io_pgtable_ops *, long unsigned int, void *); + int (*read_and_clear_dirty)(struct io_pgtable_ops *, long unsigned int, size_t, long unsigned int, struct iommu_dirty_bitmap *); +}; + +struct io_pgtable { + enum io_pgtable_fmt fmt; + void *cookie; + struct io_pgtable_cfg cfg; + struct io_pgtable_ops ops; +}; + +struct gcr3_tbl_info { + u64 *gcr3_tbl; + int glx; + u32 pasid_cnt; + u16 domid; +}; + +struct amd_io_pgtable { + seqcount_t seqcount; + struct io_pgtable pgtbl; + int mode; + u64 *root; + u64 *pgd; +}; + +struct iommu_dev_data; + +struct pdom_dev_data { + struct iommu_dev_data *dev_data; + ioasid_t pasid; + struct list_head list; +}; + +struct protection_domain; + +struct iommu_dev_data { + struct mutex mutex; + spinlock_t dte_lock; + struct list_head list; + struct llist_node dev_data_list; + struct protection_domain *domain; + struct gcr3_tbl_info gcr3_info; + struct device *dev; + u16 devid; + unsigned int max_irqs; + u32 max_pasids; + u32 flags; + int ats_qdep; + u8 ats_enabled: 1; + u8 pri_enabled: 1; + u8 pasid_enabled: 1; + u8 pri_tlp: 1; + u8 ppr: 1; + bool use_vapic; + bool defer_attach; + struct ratelimit_state rs; +}; + +struct protection_domain { + struct list_head dev_list; + struct iommu_domain domain; + struct amd_io_pgtable iop; + spinlock_t lock; + u16 id; + enum protection_domain_mode pd_mode; + bool dirty_tracking; + struct xarray iommu_array; + struct mmu_notifier mn; + struct list_head dev_data_list; +}; + +struct iommu_hwpt_vtd_s1 { + __u64 flags; + __u64 pgtbl_addr; + __u32 addr_width; + __u32 __reserved; +}; + +enum iommu_fault_type { + IOMMU_FAULT_PAGE_REQ = 1, +}; + +struct acpi_dmar_header { + u16 type; + u16 length; +}; + +struct dmar_dev_scope { + struct device *dev; + u8 bus; + u8 devfn; +}; + +struct intel_iommu; + +struct dmar_drhd_unit { + struct list_head list; + struct acpi_dmar_header *hdr; + u64 reg_base_addr; + long unsigned int reg_size; + struct dmar_dev_scope *devices; + int devices_cnt; + u16 segment; + u8 ignored: 1; + u8 include_all: 1; + u8 gfx_dedicated: 1; + struct intel_iommu *iommu; +}; + +struct iommu_flush { + void (*flush_context)(struct intel_iommu *, u16, u16, u8, u64); + void (*flush_iotlb)(struct intel_iommu *, u16, u64, unsigned int, u64); +}; + +struct root_entry; + +struct page_req_dsc; + +struct q_inval; + +struct ir_table; + +struct iommu_pmu; + +struct intel_iommu { + void *reg; + u64 reg_phys; + u64 reg_size; + u64 cap; + u64 ecap; + u64 vccap; + u64 ecmdcap[4]; + u32 gcmd; + raw_spinlock_t register_lock; + int seq_id; + int agaw; + int msagaw; + unsigned int irq; + unsigned int pr_irq; + unsigned int perf_irq; + u16 segment; + unsigned char name[16]; + struct mutex did_lock; + struct ida domain_ida; + long unsigned int *copied_tables; + spinlock_t lock; + struct root_entry *root_entry; + struct iommu_flush flush; + struct page_req_dsc *prq; + unsigned char prq_name[16]; + long unsigned int prq_seq_number; + struct completion prq_complete; + struct iopf_queue *iopf_queue; + unsigned char iopfq_name[16]; + struct mutex iopf_lock; + struct q_inval *qi; + u32 iommu_state[4]; + struct rb_root device_rbtree; + spinlock_t device_rbtree_lock; + struct ir_table *ir_table; + struct irq_domain *ir_domain; + struct iommu_device iommu; + int node; + u32 flags; + struct dmar_drhd_unit *drhd; + void *perf_statistic; + struct iommu_pmu *pmu; +}; + +struct irte { + union { + struct { + union { + struct { + __u64 present: 1; + __u64 fpd: 1; + __u64 __res0: 6; + __u64 avail: 4; + __u64 __res1: 3; + __u64 pst: 1; + __u64 vector: 8; + __u64 __res2: 40; + }; + struct { + __u64 r_present: 1; + __u64 r_fpd: 1; + __u64 dst_mode: 1; + __u64 redir_hint: 1; + __u64 trigger_mode: 1; + __u64 dlvry_mode: 3; + __u64 r_avail: 4; + __u64 r_res0: 4; + __u64 r_vector: 8; + __u64 r_res1: 8; + __u64 dest_id: 32; + }; + struct { + __u64 p_present: 1; + __u64 p_fpd: 1; + __u64 p_res0: 6; + __u64 p_avail: 4; + __u64 p_res1: 2; + __u64 p_urgent: 1; + __u64 p_pst: 1; + __u64 p_vector: 8; + __u64 p_res2: 14; + __u64 pda_l: 26; + }; + __u64 low; + }; + union { + struct { + __u64 sid: 16; + __u64 sq: 2; + __u64 svt: 2; + __u64 __res3: 44; + }; + struct { + __u64 p_sid: 16; + __u64 p_sq: 2; + __u64 p_svt: 2; + __u64 p_res3: 12; + __u64 pda_h: 32; + }; + __u64 high; + }; + }; + __u128 irte; + }; +}; + +enum { + QI_FREE = 0, + QI_IN_USE = 1, + QI_DONE = 2, + QI_ABORT = 3, +}; + +struct qi_desc { + u64 qw0; + u64 qw1; + u64 qw2; + u64 qw3; +}; + +struct q_inval { + raw_spinlock_t q_lock; + void *desc; + int *desc_status; + int free_head; + int free_tail; + int free_cnt; +}; + +struct ir_table { + struct irte *base; + long unsigned int *bitmap; +}; + +struct root_entry { + u64 lo; + u64 hi; +}; + +struct iommu_domain_info { + struct intel_iommu *iommu; + unsigned int refcnt; + u16 did; +}; + +struct qi_batch { + struct qi_desc descs[16]; + unsigned int index; +}; + +struct dma_pte { + u64 val; +}; + +struct dmar_domain { + int nid; + struct xarray iommu_array; + u8 iommu_coherency: 1; + u8 force_snooping: 1; + u8 set_pte_snp: 1; + u8 use_first_level: 1; + u8 dirty_tracking: 1; + u8 nested_parent: 1; + u8 has_mappings: 1; + u8 iotlb_sync_map: 1; + spinlock_t lock; + struct list_head devices; + struct list_head dev_pasids; + spinlock_t cache_lock; + struct list_head cache_tags; + struct qi_batch *qi_batch; + int iommu_superpage; + union { + struct { + struct dma_pte *pgd; + int gaw; + int agaw; + u64 max_addr; + spinlock_t s1_lock; + struct list_head s1_domains; + }; + struct { + struct dmar_domain *s2_domain; + struct iommu_hwpt_vtd_s1 s1_cfg; + struct list_head s2_link; + }; + struct { + struct mmu_notifier notifier; + }; + }; + struct iommu_domain domain; +}; + +struct iommu_pmu { + struct intel_iommu *iommu; + u32 num_cntr; + u32 num_eg; + u32 cntr_width; + u32 cntr_stride; + u32 filter; + void *base; + void *cfg_reg; + void *cntr_reg; + void *overflow; + u64 *evcap; + u32 **cntr_evcap; + struct pmu pmu; + long unsigned int used_mask[1]; + struct perf_event *event_list[64]; + unsigned char irq_name[16]; +}; + +struct page_req_dsc { + union { + struct { + u64 type: 8; + u64 pasid_present: 1; + u64 rsvd: 7; + u64 rid: 16; + u64 pasid: 20; + u64 exe_req: 1; + u64 pm_req: 1; + u64 rsvd2: 10; + }; + u64 qw_0; + }; + union { + struct { + u64 rd_req: 1; + u64 wr_req: 1; + u64 lpig: 1; + u64 prg_index: 9; + u64 addr: 52; + }; + u64 qw_1; + }; + u64 qw_2; + u64 qw_3; +}; + +struct pasid_table; + +struct device_domain_info { + struct list_head link; + u32 segment; + u8 bus; + u8 devfn; + u16 pfsid; + u8 pasid_supported: 3; + u8 pasid_enabled: 1; + u8 pri_supported: 1; + u8 pri_enabled: 1; + u8 ats_supported: 1; + u8 ats_enabled: 1; + u8 dtlb_extra_inval: 1; + u8 domain_attached: 1; + u8 ats_qdep; + unsigned int iopf_refcount; + struct device *dev; + struct intel_iommu *iommu; + struct dmar_domain *domain; + struct pasid_table *pasid_table; + struct rb_node node; +}; + +struct pasid_table { + void *table; + u32 max_pasid; +}; + +union __u128_halves { + u128 full; + struct { + u64 low; + u64 high; + }; +}; + +typedef long long unsigned int cycles_t; + +struct acpi_table_dmar { + struct acpi_table_header header; + u8 width; + u8 flags; + u8 reserved[10]; +}; + +struct acpi_dmar_device_scope { + u8 entry_type; + u8 length; + u8 flags; + u8 reserved; + u8 enumeration_id; + u8 bus; +}; + +enum acpi_dmar_scope_type { + ACPI_DMAR_SCOPE_TYPE_NOT_USED = 0, + ACPI_DMAR_SCOPE_TYPE_ENDPOINT = 1, + ACPI_DMAR_SCOPE_TYPE_BRIDGE = 2, + ACPI_DMAR_SCOPE_TYPE_IOAPIC = 3, + ACPI_DMAR_SCOPE_TYPE_HPET = 4, + ACPI_DMAR_SCOPE_TYPE_NAMESPACE = 5, + ACPI_DMAR_SCOPE_TYPE_RESERVED = 6, +}; + +struct acpi_dmar_pci_path { + u8 device; + u8 function; +}; + +struct acpi_dmar_hardware_unit { + struct acpi_dmar_header header; + u8 flags; + u8 size; + u16 segment; + u64 address; +}; + +struct dmar_pci_path { + u8 bus; + u8 device; + u8 function; +}; + +struct dmar_pci_notify_info { + struct pci_dev *dev; + long unsigned int event; + int bus; + u16 seg; + u16 level; + struct dmar_pci_path path[0]; +}; + +struct intel_iommu_pi_data { + u64 pi_desc_addr; + u32 vector; +}; + +enum { + SR_DMAR_FECTL_REG = 0, + SR_DMAR_FEDATA_REG = 1, + SR_DMAR_FEADDR_REG = 2, + SR_DMAR_FEUADDR_REG = 3, + MAX_SR_DMAR_REGS = 4, +}; + +struct ioapic_scope { + struct intel_iommu *iommu; + unsigned int id; + unsigned int bus; + unsigned int devfn; +}; + +struct hpet_scope { + struct intel_iommu *iommu; + u8 id; + unsigned int bus; + unsigned int devfn; +}; + +struct irq_2_iommu { + struct intel_iommu *iommu; + u16 irte_index; + u16 sub_handle; + u8 irte_mask; + bool posted_msi; + bool posted_vcpu; +}; + +struct intel_ir_data { + struct irq_2_iommu irq_2_iommu; + struct irte irte_entry; + union { + struct msi_msg msi_entry; + }; +}; + +struct set_msi_sid_data { + struct pci_dev *pdev; + u16 alias; + int count; + int busmatch_count; +}; + +struct trace_event_raw_iommu_group_event { + struct trace_entry ent; + int gid; + u32 __data_loc_device; + char __data[0]; +}; + +struct trace_event_raw_iommu_device_event { + struct trace_entry ent; + u32 __data_loc_device; + char __data[0]; +}; + +struct trace_event_raw_map { + struct trace_entry ent; + u64 iova; + u64 paddr; + size_t size; + char __data[0]; +}; + +struct trace_event_raw_unmap { + struct trace_entry ent; + u64 iova; + size_t size; + size_t unmapped_size; + char __data[0]; +}; + +struct trace_event_raw_iommu_error { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_driver; + u64 iova; + int flags; + char __data[0]; +}; + +struct trace_event_data_offsets_iommu_group_event { + u32 device; + const void *device_ptr_; +}; + +struct trace_event_data_offsets_iommu_device_event { + u32 device; + const void *device_ptr_; +}; + +struct trace_event_data_offsets_map {}; + +struct trace_event_data_offsets_unmap {}; + +struct trace_event_data_offsets_iommu_error { + u32 device; + const void *device_ptr_; + u32 driver; + const void *driver_ptr_; +}; + +typedef void (*btf_trace_add_device_to_group)(void *, int, struct device *); + +typedef void (*btf_trace_remove_device_from_group)(void *, int, struct device *); + +typedef void (*btf_trace_attach_device_to_domain)(void *, struct device *); + +typedef void (*btf_trace_map)(void *, long unsigned int, phys_addr_t, size_t); + +typedef void (*btf_trace_unmap)(void *, long unsigned int, size_t, size_t); + +typedef void (*btf_trace_io_page_fault)(void *, struct device *, long unsigned int, int); + +enum iommu_resv_type { + IOMMU_RESV_DIRECT = 0, + IOMMU_RESV_DIRECT_RELAXABLE = 1, + IOMMU_RESV_RESERVED = 2, + IOMMU_RESV_MSI = 3, + IOMMU_RESV_SW_MSI = 4, +}; + +struct iommu_resv_region { + struct list_head list; + phys_addr_t start; + size_t length; + int prot; + enum iommu_resv_type type; + void (*free)(struct device *, struct iommu_resv_region *); +}; + +struct virtio_driver { + struct device_driver driver; + const struct virtio_device_id *id_table; + const unsigned int *feature_table; + unsigned int feature_table_size; + const unsigned int *feature_table_legacy; + unsigned int feature_table_size_legacy; + int (*validate)(struct virtio_device *); + int (*probe)(struct virtio_device *); + void (*scan)(struct virtio_device *); + void (*remove)(struct virtio_device *); + void (*config_changed)(struct virtio_device *); + int (*freeze)(struct virtio_device *); + int (*restore)(struct virtio_device *); + int (*reset_prepare)(struct virtio_device *); + int (*reset_done)(struct virtio_device *); + void (*shutdown)(struct virtio_device *); +}; + +struct virtio_iommu_range_64 { + __le64 start; + __le64 end; +}; + +struct virtio_iommu_range_32 { + __le32 start; + __le32 end; +}; + +struct virtio_iommu_config { + __le64 page_size_mask; + struct virtio_iommu_range_64 input_range; + struct virtio_iommu_range_32 domain_range; + __le32 probe_size; + __u8 bypass; + __u8 reserved[3]; +}; + +struct virtio_iommu_req_head { + __u8 type; + __u8 reserved[3]; +}; + +struct virtio_iommu_req_tail { + __u8 status; + __u8 reserved[3]; +}; + +struct virtio_iommu_req_attach { + struct virtio_iommu_req_head head; + __le32 domain; + __le32 endpoint; + __le32 flags; + __u8 reserved[4]; + struct virtio_iommu_req_tail tail; +}; + +struct virtio_iommu_req_detach { + struct virtio_iommu_req_head head; + __le32 domain; + __le32 endpoint; + __u8 reserved[8]; + struct virtio_iommu_req_tail tail; +}; + +struct virtio_iommu_req_map { + struct virtio_iommu_req_head head; + __le32 domain; + __le64 virt_start; + __le64 virt_end; + __le64 phys_start; + __le32 flags; + struct virtio_iommu_req_tail tail; +}; + +struct virtio_iommu_req_unmap { + struct virtio_iommu_req_head head; + __le32 domain; + __le64 virt_start; + __le64 virt_end; + __u8 reserved[4]; + struct virtio_iommu_req_tail tail; +}; + +struct virtio_iommu_probe_property { + __le16 type; + __le16 length; +}; + +struct virtio_iommu_probe_resv_mem { + struct virtio_iommu_probe_property head; + __u8 subtype; + __u8 reserved[3]; + __le64 start; + __le64 end; +}; + +struct virtio_iommu_req_probe { + struct virtio_iommu_req_head head; + __le32 endpoint; + __u8 reserved[64]; + __u8 properties[0]; +}; + +struct virtio_iommu_fault { + __u8 reason; + __u8 reserved[3]; + __le32 flags; + __le32 endpoint; + __u8 reserved2[4]; + __le64 address; +}; + +struct viommu_dev { + struct iommu_device iommu; + struct device *dev; + struct virtio_device *vdev; + struct ida domain_ids; + struct virtqueue *vqs[2]; + spinlock_t request_lock; + struct list_head requests; + void *evts; + struct iommu_domain_geometry geometry; + u64 pgsize_bitmap; + u32 first_domain; + u32 last_domain; + u32 identity_domain_id; + u32 map_flags; + u32 probe_size; +}; + +struct viommu_mapping { + phys_addr_t paddr; + struct interval_tree_node iova; + u32 flags; +}; + +struct viommu_domain { + struct iommu_domain domain; + struct viommu_dev *viommu; + unsigned int id; + u32 map_flags; + spinlock_t mappings_lock; + struct rb_root_cached mappings; + long unsigned int nr_endpoints; +}; + +struct viommu_endpoint { + struct device *dev; + struct viommu_dev *viommu; + struct viommu_domain *vdomain; + struct list_head resv_regions; +}; + +struct viommu_request { + struct list_head list; + void *writeback; + unsigned int write_offset; + unsigned int len; + char buf[0]; +}; + +struct viommu_event { + union { + u32 head; + struct virtio_iommu_fault fault; + }; +}; + +struct netlink_kernel_cfg { + unsigned int groups; + unsigned int flags; + void (*input)(struct sk_buff *); + int (*bind)(struct net *, int); + void (*unbind)(struct net *, int); + void (*release)(struct sock *, long unsigned int *); +}; + +struct cb_id { + __u32 idx; + __u32 val; +}; + +struct cn_msg { + struct cb_id id; + __u32 seq; + __u32 ack; + __u16 len; + __u16 flags; + __u8 data[0]; +}; + +struct cn_queue_dev { + atomic_t refcnt; + unsigned char name[32]; + struct list_head queue_list; + spinlock_t queue_lock; + struct sock *nls; +}; + +struct cn_callback_id { + unsigned char name[32]; + struct cb_id id; +}; + +struct cn_callback_entry { + struct list_head callback_entry; + refcount_t refcnt; + struct cn_queue_dev *pdev; + struct cn_callback_id id; + void (*callback)(struct cn_msg *, struct netlink_skb_parms *); + u32 seq; + u32 group; +}; + +struct cn_dev { + struct cb_id id; + u32 seq; + u32 groups; + struct sock *nls; + struct cn_queue_dev *cbdev; +}; + +struct klist_node; + +struct klist { + spinlock_t k_lock; + struct list_head k_list; + void (*get)(struct klist_node *); + void (*put)(struct klist_node *); +}; + +struct klist_node { + void *n_klist; + struct list_head n_node; + struct kref n_ref; +}; + +struct klist_iter { + struct klist *i_klist; + struct klist_node *i_cur; +}; + +struct wake_irq { + struct device *dev; + unsigned int status; + int irq; + const char *name; +}; + +struct subsys_private { + struct kset subsys; + struct kset *devices_kset; + struct list_head interfaces; + struct mutex mutex; + struct kset *drivers_kset; + struct klist klist_devices; + struct klist klist_drivers; + struct blocking_notifier_head bus_notifier; + unsigned int drivers_autoprobe: 1; + const struct bus_type *bus; + struct device *dev_root; + struct kset glue_dirs; + const struct class *class; + struct lock_class_key lock_key; +}; + +struct driver_private { + struct kobject kobj; + struct klist klist_devices; + struct klist_node knode_bus; + struct module_kobject *mkobj; + struct device_driver *driver; +}; + +struct driver_attribute { + struct attribute attr; + ssize_t (*show)(struct device_driver *, char *); + ssize_t (*store)(struct device_driver *, const char *, size_t); +}; + +struct subsys_interface { + const char *name; + const struct bus_type *subsys; + struct list_head node; + int (*add_dev)(struct device *, struct subsys_interface *); + void (*remove_dev)(struct device *, struct subsys_interface *); +}; + +struct device_private { + struct klist klist_children; + struct klist_node knode_parent; + struct klist_node knode_driver; + struct klist_node knode_bus; + struct klist_node knode_class; + struct list_head deferred_probe; + const struct device_driver *async_driver; + char *deferred_probe_reason; + struct device *device; + u8 dead: 1; +}; + +struct subsys_dev_iter { + struct klist_iter ki; + const struct device_type *type; +}; + +struct cpu { + int node_id; + int hotpluggable; + struct device dev; +}; + +typedef u32 note_buf_t[92]; + +struct cpu_attr { + struct device_attribute attr; + const struct cpumask * const map; +}; + +struct attribute_container { + struct list_head node; + struct klist containers; + struct class *class; + const struct attribute_group *grp; + struct device_attribute **attrs; + int (*match)(struct attribute_container *, struct device *); + long unsigned int flags; +}; + +struct transport_container; + +struct transport_class { + struct class class; + int (*setup)(struct transport_container *, struct device *, struct device *); + int (*configure)(struct transport_container *, struct device *, struct device *); + int (*remove)(struct transport_container *, struct device *, struct device *); +}; + +struct transport_container { + struct attribute_container ac; + const struct attribute_group *statistics; +}; + +struct anon_transport_class { + struct transport_class tclass; + struct attribute_container container; +}; + +struct container_dev { + struct device dev; + int (*offline)(struct container_dev *); +}; + +struct swnode { + struct kobject kobj; + struct fwnode_handle fwnode; + const struct software_node *node; + int id; + struct ida child_ids; + struct list_head entry; + struct list_head children; + struct swnode *parent; + unsigned int allocated: 1; + unsigned int managed: 1; +}; + +struct req { + struct req *next; + struct completion done; + int err; + const char *name; + umode_t mode; + kuid_t uid; + kgid_t gid; + struct device *dev; +}; + +enum pm_qos_flags_status { + PM_QOS_FLAGS_UNDEFINED = -1, + PM_QOS_FLAGS_NONE = 0, + PM_QOS_FLAGS_SOME = 1, + PM_QOS_FLAGS_ALL = 2, +}; + +struct rtc_time { + int tm_sec; + int tm_min; + int tm_hour; + int tm_mday; + int tm_mon; + int tm_year; + int tm_wday; + int tm_yday; + int tm_isdst; +}; + +struct isa_driver { + int (*match)(struct device *, unsigned int); + int (*probe)(struct device *, unsigned int); + void (*remove)(struct device *, unsigned int); + void (*shutdown)(struct device *, unsigned int); + int (*suspend)(struct device *, unsigned int, pm_message_t); + int (*resume)(struct device *, unsigned int); + struct device_driver driver; + struct device *devices; +}; + +struct isa_dev { + struct device dev; + struct device *next; + unsigned int id; +}; + +enum fw_upload_err { + FW_UPLOAD_ERR_NONE = 0, + FW_UPLOAD_ERR_HW_ERROR = 1, + FW_UPLOAD_ERR_TIMEOUT = 2, + FW_UPLOAD_ERR_CANCELED = 3, + FW_UPLOAD_ERR_BUSY = 4, + FW_UPLOAD_ERR_INVALID_SIZE = 5, + FW_UPLOAD_ERR_RW_ERROR = 6, + FW_UPLOAD_ERR_WEAROUT = 7, + FW_UPLOAD_ERR_FW_INVALID = 8, + FW_UPLOAD_ERR_MAX = 9, +}; + +struct fw_upload { + void *dd_handle; + void *priv; +}; + +struct fw_upload_ops { + enum fw_upload_err (*prepare)(struct fw_upload *, const u8 *, u32); + enum fw_upload_err (*write)(struct fw_upload *, const u8 *, u32, u32, u32 *); + enum fw_upload_err (*poll_complete)(struct fw_upload *); + void (*cancel)(struct fw_upload *); + void (*cleanup)(struct fw_upload *); +}; + +enum fw_opt { + FW_OPT_UEVENT = 1, + FW_OPT_NOWAIT = 2, + FW_OPT_USERHELPER = 4, + FW_OPT_NO_WARN = 8, + FW_OPT_NOCACHE = 16, + FW_OPT_NOFALLBACK_SYSFS = 32, + FW_OPT_FALLBACK_PLATFORM = 64, + FW_OPT_PARTIAL = 128, +}; + +enum fw_status { + FW_STATUS_UNKNOWN = 0, + FW_STATUS_LOADING = 1, + FW_STATUS_DONE = 2, + FW_STATUS_ABORTED = 3, +}; + +struct fw_state { + struct completion completion; + enum fw_status status; +}; + +struct firmware_cache; + +struct fw_priv { + struct kref ref; + struct list_head list; + struct firmware_cache *fwc; + struct fw_state fw_st; + void *data; + size_t size; + size_t allocated_size; + size_t offset; + u32 opt_flags; + bool is_paged_buf; + struct page **pages; + int nr_pages; + int page_array_size; + bool need_uevent; + struct list_head pending_list; + const char *fw_name; +}; + +struct fw_sysfs { + bool nowait; + struct device dev; + struct fw_priv *fw_priv; + struct firmware *fw; + void *fw_upload_priv; +}; + +enum fw_upload_prog { + FW_UPLOAD_PROG_IDLE = 0, + FW_UPLOAD_PROG_RECEIVING = 1, + FW_UPLOAD_PROG_PREPARING = 2, + FW_UPLOAD_PROG_TRANSFERRING = 3, + FW_UPLOAD_PROG_PROGRAMMING = 4, + FW_UPLOAD_PROG_MAX = 5, +}; + +struct fw_upload_priv { + struct fw_upload *fw_upload; + struct module *module; + const char *name; + const struct fw_upload_ops *ops; + struct mutex lock; + struct work_struct work; + const u8 *data; + u32 remaining_size; + enum fw_upload_prog progress; + enum fw_upload_prog err_progress; + enum fw_upload_err err_code; +}; + +struct builtin_fw { + char *name; + void *data; + long unsigned int size; +}; + +struct xa_limit { + u32 max; + u32 min; +}; + +struct for_each_memory_block_cb_data { + walk_memory_blocks_func_t func; + void *arg; +}; + +enum regcache_type { + REGCACHE_NONE = 0, + REGCACHE_RBTREE = 1, + REGCACHE_FLAT = 2, + REGCACHE_MAPLE = 3, +}; + +struct reg_default { + unsigned int reg; + unsigned int def; +}; + +struct reg_sequence { + unsigned int reg; + unsigned int def; + unsigned int delay_us; +}; + +enum regmap_endian { + REGMAP_ENDIAN_DEFAULT = 0, + REGMAP_ENDIAN_BIG = 1, + REGMAP_ENDIAN_LITTLE = 2, + REGMAP_ENDIAN_NATIVE = 3, +}; + +struct regmap_range { + unsigned int range_min; + unsigned int range_max; +}; + +struct regmap_access_table { + const struct regmap_range *yes_ranges; + unsigned int n_yes_ranges; + const struct regmap_range *no_ranges; + unsigned int n_no_ranges; +}; + +typedef void (*regmap_lock)(void *); + +typedef void (*regmap_unlock)(void *); + +struct regmap_range_cfg; + +struct regmap_config { + const char *name; + int reg_bits; + int reg_stride; + int reg_shift; + unsigned int reg_base; + int pad_bits; + int val_bits; + bool (*writeable_reg)(struct device *, unsigned int); + bool (*readable_reg)(struct device *, unsigned int); + bool (*volatile_reg)(struct device *, unsigned int); + bool (*precious_reg)(struct device *, unsigned int); + bool (*writeable_noinc_reg)(struct device *, unsigned int); + bool (*readable_noinc_reg)(struct device *, unsigned int); + int (*reg_read)(void *, unsigned int, unsigned int *); + int (*reg_write)(void *, unsigned int, unsigned int); + int (*reg_update_bits)(void *, unsigned int, unsigned int, unsigned int); + int (*read)(void *, const void *, size_t, void *, size_t); + int (*write)(void *, const void *, size_t); + size_t max_raw_read; + size_t max_raw_write; + bool can_sleep; + bool fast_io; + bool io_port; + bool disable_locking; + regmap_lock lock; + regmap_unlock unlock; + void *lock_arg; + unsigned int max_register; + bool max_register_is_0; + const struct regmap_access_table *wr_table; + const struct regmap_access_table *rd_table; + const struct regmap_access_table *volatile_table; + const struct regmap_access_table *precious_table; + const struct regmap_access_table *wr_noinc_table; + const struct regmap_access_table *rd_noinc_table; + const struct reg_default *reg_defaults; + unsigned int num_reg_defaults; + enum regcache_type cache_type; + const void *reg_defaults_raw; + unsigned int num_reg_defaults_raw; + long unsigned int read_flag_mask; + long unsigned int write_flag_mask; + bool zero_flag_mask; + bool use_single_read; + bool use_single_write; + bool use_relaxed_mmio; + bool can_multi_write; + bool use_hwlock; + bool use_raw_spinlock; + unsigned int hwlock_id; + unsigned int hwlock_mode; + enum regmap_endian reg_format_endian; + enum regmap_endian val_format_endian; + const struct regmap_range_cfg *ranges; + unsigned int num_ranges; +}; + +struct regmap_range_cfg { + const char *name; + unsigned int range_min; + unsigned int range_max; + unsigned int selector_reg; + unsigned int selector_mask; + int selector_shift; + unsigned int window_start; + unsigned int window_len; +}; + +typedef int (*regmap_hw_write)(void *, const void *, size_t); + +typedef int (*regmap_hw_gather_write)(void *, const void *, size_t, const void *, size_t); + +struct regmap_async; + +typedef int (*regmap_hw_async_write)(void *, const void *, size_t, const void *, size_t, struct regmap_async *); + +struct regmap_async { + struct list_head list; + struct regmap *map; + void *work_buf; +}; + +typedef int (*regmap_hw_read)(void *, const void *, size_t, void *, size_t); + +typedef int (*regmap_hw_reg_read)(void *, unsigned int, unsigned int *); + +typedef int (*regmap_hw_reg_noinc_read)(void *, unsigned int, void *, size_t); + +typedef int (*regmap_hw_reg_write)(void *, unsigned int, unsigned int); + +typedef int (*regmap_hw_reg_noinc_write)(void *, unsigned int, const void *, size_t); + +typedef int (*regmap_hw_reg_update_bits)(void *, unsigned int, unsigned int, unsigned int); + +typedef struct regmap_async * (*regmap_hw_async_alloc)(void); + +typedef void (*regmap_hw_free_context)(void *); + +struct regmap_bus { + bool fast_io; + bool free_on_exit; + regmap_hw_write write; + regmap_hw_gather_write gather_write; + regmap_hw_async_write async_write; + regmap_hw_reg_write reg_write; + regmap_hw_reg_noinc_write reg_noinc_write; + regmap_hw_reg_update_bits reg_update_bits; + regmap_hw_read read; + regmap_hw_reg_read reg_read; + regmap_hw_reg_noinc_read reg_noinc_read; + regmap_hw_free_context free_context; + regmap_hw_async_alloc async_alloc; + u8 read_flag_mask; + enum regmap_endian reg_format_endian_default; + enum regmap_endian val_format_endian_default; + size_t max_raw_read; + size_t max_raw_write; +}; + +struct reg_field { + unsigned int reg; + unsigned int lsb; + unsigned int msb; + unsigned int id_size; + unsigned int id_offset; +}; + +struct regmap_format { + size_t buf_size; + size_t reg_bytes; + size_t pad_bytes; + size_t val_bytes; + s8 reg_shift; + void (*format_write)(struct regmap *, unsigned int, unsigned int); + void (*format_reg)(void *, unsigned int, unsigned int); + void (*format_val)(void *, unsigned int, unsigned int); + unsigned int (*parse_val)(const void *); + void (*parse_inplace)(void *); +}; + +struct regcache_ops; + +struct hwspinlock; + +struct regmap { + union { + struct mutex mutex; + struct { + spinlock_t spinlock; + long unsigned int spinlock_flags; + }; + struct { + raw_spinlock_t raw_spinlock; + long unsigned int raw_spinlock_flags; + }; + }; + struct lock_class_key *lock_key; + regmap_lock lock; + regmap_unlock unlock; + void *lock_arg; + gfp_t alloc_flags; + unsigned int reg_base; + struct device *dev; + void *work_buf; + struct regmap_format format; + const struct regmap_bus *bus; + void *bus_context; + const char *name; + spinlock_t async_lock; + wait_queue_head_t async_waitq; + struct list_head async_list; + struct list_head async_free; + int async_ret; + bool async; + bool debugfs_disable; + struct dentry *debugfs; + const char *debugfs_name; + unsigned int debugfs_reg_len; + unsigned int debugfs_val_len; + unsigned int debugfs_tot_len; + struct list_head debugfs_off_cache; + struct mutex cache_lock; + unsigned int max_register; + bool max_register_is_set; + bool (*writeable_reg)(struct device *, unsigned int); + bool (*readable_reg)(struct device *, unsigned int); + bool (*volatile_reg)(struct device *, unsigned int); + bool (*precious_reg)(struct device *, unsigned int); + bool (*writeable_noinc_reg)(struct device *, unsigned int); + bool (*readable_noinc_reg)(struct device *, unsigned int); + const struct regmap_access_table *wr_table; + const struct regmap_access_table *rd_table; + const struct regmap_access_table *volatile_table; + const struct regmap_access_table *precious_table; + const struct regmap_access_table *wr_noinc_table; + const struct regmap_access_table *rd_noinc_table; + int (*reg_read)(void *, unsigned int, unsigned int *); + int (*reg_write)(void *, unsigned int, unsigned int); + int (*reg_update_bits)(void *, unsigned int, unsigned int, unsigned int); + int (*read)(void *, const void *, size_t, void *, size_t); + int (*write)(void *, const void *, size_t); + long unsigned int read_flag_mask; + long unsigned int write_flag_mask; + int reg_shift; + int reg_stride; + int reg_stride_order; + bool defer_caching; + bool force_write_field; + const struct regcache_ops *cache_ops; + enum regcache_type cache_type; + unsigned int cache_size_raw; + unsigned int cache_word_size; + unsigned int num_reg_defaults; + unsigned int num_reg_defaults_raw; + bool cache_only; + bool cache_bypass; + bool cache_free; + struct reg_default *reg_defaults; + const void *reg_defaults_raw; + void *cache; + bool cache_dirty; + bool no_sync_defaults; + struct reg_sequence *patch; + int patch_regs; + bool can_sleep; + bool use_single_read; + bool use_single_write; + bool can_multi_write; + size_t max_raw_read; + size_t max_raw_write; + struct rb_root range_tree; + void *selector_work_buf; + struct hwspinlock *hwlock; +}; + +struct regcache_ops { + const char *name; + enum regcache_type type; + int (*init)(struct regmap *); + int (*exit)(struct regmap *); + void (*debugfs_init)(struct regmap *); + int (*read)(struct regmap *, unsigned int, unsigned int *); + int (*write)(struct regmap *, unsigned int, unsigned int); + int (*sync)(struct regmap *, unsigned int, unsigned int); + int (*drop)(struct regmap *, unsigned int, unsigned int); +}; + +struct regmap_range_node { + struct rb_node node; + const char *name; + struct regmap *map; + unsigned int range_min; + unsigned int range_max; + unsigned int selector_reg; + unsigned int selector_mask; + int selector_shift; + unsigned int window_start; + unsigned int window_len; +}; + +struct regmap_field { + struct regmap *regmap; + unsigned int mask; + unsigned int shift; + unsigned int reg; + unsigned int id_size; + unsigned int id_offset; +}; + +struct trace_event_raw_regmap_reg { + struct trace_entry ent; + u32 __data_loc_name; + unsigned int reg; + unsigned int val; + char __data[0]; +}; + +struct trace_event_raw_regmap_bulk { + struct trace_entry ent; + u32 __data_loc_name; + unsigned int reg; + u32 __data_loc_buf; + int val_len; + char __data[0]; +}; + +struct trace_event_raw_regmap_block { + struct trace_entry ent; + u32 __data_loc_name; + unsigned int reg; + int count; + char __data[0]; +}; + +struct trace_event_raw_regcache_sync { + struct trace_entry ent; + u32 __data_loc_name; + u32 __data_loc_status; + u32 __data_loc_type; + char __data[0]; +}; + +struct trace_event_raw_regmap_bool { + struct trace_entry ent; + u32 __data_loc_name; + int flag; + char __data[0]; +}; + +struct trace_event_raw_regmap_async { + struct trace_entry ent; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_regcache_drop_region { + struct trace_entry ent; + u32 __data_loc_name; + unsigned int from; + unsigned int to; + char __data[0]; +}; + +struct trace_event_data_offsets_regmap_reg { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_regmap_bulk { + u32 name; + const void *name_ptr_; + u32 buf; + const void *buf_ptr_; +}; + +struct trace_event_data_offsets_regmap_block { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_regcache_sync { + u32 name; + const void *name_ptr_; + u32 status; + const void *status_ptr_; + u32 type; + const void *type_ptr_; +}; + +struct trace_event_data_offsets_regmap_bool { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_regmap_async { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_regcache_drop_region { + u32 name; + const void *name_ptr_; +}; + +typedef void (*btf_trace_regmap_reg_write)(void *, struct regmap *, unsigned int, unsigned int); + +typedef void (*btf_trace_regmap_reg_read)(void *, struct regmap *, unsigned int, unsigned int); + +typedef void (*btf_trace_regmap_reg_read_cache)(void *, struct regmap *, unsigned int, unsigned int); + +typedef void (*btf_trace_regmap_bulk_write)(void *, struct regmap *, unsigned int, const void *, int); + +typedef void (*btf_trace_regmap_bulk_read)(void *, struct regmap *, unsigned int, const void *, int); + +typedef void (*btf_trace_regmap_hw_read_start)(void *, struct regmap *, unsigned int, int); + +typedef void (*btf_trace_regmap_hw_read_done)(void *, struct regmap *, unsigned int, int); + +typedef void (*btf_trace_regmap_hw_write_start)(void *, struct regmap *, unsigned int, int); + +typedef void (*btf_trace_regmap_hw_write_done)(void *, struct regmap *, unsigned int, int); + +typedef void (*btf_trace_regcache_sync)(void *, struct regmap *, const char *, const char *); + +typedef void (*btf_trace_regmap_cache_only)(void *, struct regmap *, bool); + +typedef void (*btf_trace_regmap_cache_bypass)(void *, struct regmap *, bool); + +typedef void (*btf_trace_regmap_async_write_start)(void *, struct regmap *, unsigned int, int); + +typedef void (*btf_trace_regmap_async_io_complete)(void *, struct regmap *); + +typedef void (*btf_trace_regmap_async_complete_start)(void *, struct regmap *); + +typedef void (*btf_trace_regmap_async_complete_done)(void *, struct regmap *); + +typedef void (*btf_trace_regcache_drop_region)(void *, struct regmap *, unsigned int, unsigned int); + +struct regmap_irq_type { + unsigned int type_reg_offset; + unsigned int type_reg_mask; + unsigned int type_rising_val; + unsigned int type_falling_val; + unsigned int type_level_low_val; + unsigned int type_level_high_val; + unsigned int types_supported; +}; + +struct regmap_irq { + unsigned int reg_offset; + unsigned int mask; + struct regmap_irq_type type; +}; + +struct regmap_irq_sub_irq_map { + unsigned int num_regs; + unsigned int *offset; +}; + +struct regmap_irq_chip_data; + +struct regmap_irq_chip { + const char *name; + const char *domain_suffix; + unsigned int main_status; + unsigned int num_main_status_bits; + const struct regmap_irq_sub_irq_map *sub_reg_offsets; + int num_main_regs; + unsigned int status_base; + unsigned int mask_base; + unsigned int unmask_base; + unsigned int ack_base; + unsigned int wake_base; + const unsigned int *config_base; + unsigned int irq_reg_stride; + unsigned int init_ack_masked: 1; + unsigned int mask_unmask_non_inverted: 1; + unsigned int use_ack: 1; + unsigned int ack_invert: 1; + unsigned int clear_ack: 1; + unsigned int status_invert: 1; + unsigned int status_is_level: 1; + unsigned int wake_invert: 1; + unsigned int type_in_mask: 1; + unsigned int clear_on_unmask: 1; + unsigned int runtime_pm: 1; + unsigned int no_status: 1; + int num_regs; + const struct regmap_irq *irqs; + int num_irqs; + int num_config_bases; + int num_config_regs; + int (*handle_pre_irq)(void *); + int (*handle_post_irq)(void *); + int (*handle_mask_sync)(int, unsigned int, unsigned int, void *); + int (*set_type_config)(unsigned int **, unsigned int, const struct regmap_irq *, int, void *); + unsigned int (*get_irq_reg)(struct regmap_irq_chip_data *, unsigned int, int); + void *irq_drv_data; +}; + +struct regmap_irq_chip_data { + struct mutex lock; + struct lock_class_key lock_key; + struct irq_chip irq_chip; + struct regmap *map; + const struct regmap_irq_chip *chip; + int irq_base; + struct irq_domain *domain; + int irq; + int wake_count; + void *status_reg_buf; + unsigned int *main_status_buf; + unsigned int *status_buf; + unsigned int *prev_status_buf; + unsigned int *mask_buf; + unsigned int *mask_buf_def; + unsigned int *wake_buf; + unsigned int *type_buf; + unsigned int *type_buf_def; + unsigned int **config_buf; + unsigned int irq_reg_stride; + unsigned int (*get_irq_reg)(struct regmap_irq_chip_data *, unsigned int, int); + unsigned int clear_status: 1; +}; + +struct sram_config { + int (*init)(void); + bool map_only_reserved; +}; + +struct sram_partition { + void *base; + struct gen_pool *pool; + struct bin_attribute battr; + struct mutex lock; + struct list_head list; +}; + +struct sram_dev { + const struct sram_config *config; + struct device *dev; + void *virt_base; + bool no_memory_wc; + struct gen_pool *pool; + struct sram_partition *partition; + u32 partitions; +}; + +struct sram_reserve { + struct list_head list; + u32 start; + u32 size; + struct resource res; + bool export; + bool pool; + bool protect_exec; + const char *label; +}; + +struct i2c_device_id { + char name[20]; + kernel_ulong_t driver_data; +}; + +struct rt_mutex { + struct rt_mutex_base rtmutex; +}; + +struct i2c_msg { + __u16 addr; + __u16 flags; + __u16 len; + __u8 *buf; +}; + +union i2c_smbus_data { + __u8 byte; + __u16 word; + __u8 block[34]; +}; + +enum i2c_slave_event { + I2C_SLAVE_READ_REQUESTED = 0, + I2C_SLAVE_WRITE_REQUESTED = 1, + I2C_SLAVE_READ_PROCESSED = 2, + I2C_SLAVE_WRITE_RECEIVED = 3, + I2C_SLAVE_STOP = 4, +}; + +struct i2c_client; + +typedef int (*i2c_slave_cb_t)(struct i2c_client *, enum i2c_slave_event, u8 *); + +struct i2c_adapter; + +struct i2c_client { + short unsigned int flags; + short unsigned int addr; + char name[20]; + struct i2c_adapter *adapter; + struct device dev; + int init_irq; + int irq; + struct list_head detected; + i2c_slave_cb_t slave_cb; + void *devres_group_id; + struct dentry *debugfs; +}; + +enum i2c_alert_protocol { + I2C_PROTOCOL_SMBUS_ALERT = 0, + I2C_PROTOCOL_SMBUS_HOST_NOTIFY = 1, +}; + +struct i2c_board_info; + +struct i2c_driver { + unsigned int class; + int (*probe)(struct i2c_client *); + void (*remove)(struct i2c_client *); + void (*shutdown)(struct i2c_client *); + void (*alert)(struct i2c_client *, enum i2c_alert_protocol, unsigned int); + int (*command)(struct i2c_client *, unsigned int, void *); + struct device_driver driver; + const struct i2c_device_id *id_table; + int (*detect)(struct i2c_client *, struct i2c_board_info *); + const short unsigned int *address_list; + struct list_head clients; + u32 flags; +}; + +struct i2c_board_info { + char type[20]; + short unsigned int flags; + short unsigned int addr; + const char *dev_name; + void *platform_data; + struct fwnode_handle *fwnode; + const struct software_node *swnode; + const struct resource *resources; + unsigned int num_resources; + int irq; +}; + +struct i2c_algorithm; + +struct i2c_lock_operations; + +struct i2c_bus_recovery_info; + +struct i2c_adapter_quirks; + +struct i2c_adapter { + struct module *owner; + unsigned int class; + const struct i2c_algorithm *algo; + void *algo_data; + const struct i2c_lock_operations *lock_ops; + struct rt_mutex bus_lock; + struct rt_mutex mux_lock; + int timeout; + int retries; + struct device dev; + long unsigned int locked_flags; + int nr; + char name[48]; + struct completion dev_released; + struct mutex userspace_clients_lock; + struct list_head userspace_clients; + struct i2c_bus_recovery_info *bus_recovery_info; + const struct i2c_adapter_quirks *quirks; + struct irq_domain *host_notify_domain; + struct regulator *bus_regulator; + struct dentry *debugfs; + long unsigned int addrs_in_instantiation[2]; +}; + +struct i2c_algorithm { + union { + int (*xfer)(struct i2c_adapter *, struct i2c_msg *, int); + int (*master_xfer)(struct i2c_adapter *, struct i2c_msg *, int); + }; + union { + int (*xfer_atomic)(struct i2c_adapter *, struct i2c_msg *, int); + int (*master_xfer_atomic)(struct i2c_adapter *, struct i2c_msg *, int); + }; + int (*smbus_xfer)(struct i2c_adapter *, u16, short unsigned int, char, u8, int, union i2c_smbus_data *); + int (*smbus_xfer_atomic)(struct i2c_adapter *, u16, short unsigned int, char, u8, int, union i2c_smbus_data *); + u32 (*functionality)(struct i2c_adapter *); + union { + int (*reg_target)(struct i2c_client *); + int (*reg_slave)(struct i2c_client *); + }; + union { + int (*unreg_target)(struct i2c_client *); + int (*unreg_slave)(struct i2c_client *); + }; +}; + +struct i2c_lock_operations { + void (*lock_bus)(struct i2c_adapter *, unsigned int); + int (*trylock_bus)(struct i2c_adapter *, unsigned int); + void (*unlock_bus)(struct i2c_adapter *, unsigned int); +}; + +struct i2c_bus_recovery_info { + int (*recover_bus)(struct i2c_adapter *); + int (*get_scl)(struct i2c_adapter *); + void (*set_scl)(struct i2c_adapter *, int); + int (*get_sda)(struct i2c_adapter *); + void (*set_sda)(struct i2c_adapter *, int); + int (*get_bus_free)(struct i2c_adapter *); + void (*prepare_recovery)(struct i2c_adapter *); + void (*unprepare_recovery)(struct i2c_adapter *); + struct gpio_desc *scl_gpiod; + struct gpio_desc *sda_gpiod; + struct pinctrl *pinctrl; + struct pinctrl_state *pins_default; + struct pinctrl_state *pins_gpio; +}; + +struct i2c_adapter_quirks { + u64 flags; + int max_num_msgs; + u16 max_write_len; + u16 max_read_len; + u16 max_comb_1st_msg_len; + u16 max_comb_2nd_msg_len; +}; + +struct mfd_cell_acpi_match; + +struct mfd_cell { + const char *name; + int id; + int level; + int (*suspend)(struct platform_device *); + int (*resume)(struct platform_device *); + const void *platform_data; + size_t pdata_size; + const struct mfd_cell_acpi_match *acpi_match; + const struct software_node *swnode; + const char *of_compatible; + u64 of_reg; + bool use_of_reg; + int num_resources; + const struct resource *resources; + bool ignore_resource_conflicts; + bool pm_runtime_no_callbacks; + int num_parent_supplies; + const char * const *parent_supplies; +}; + +struct mfd_cell_acpi_match { + const char *pnpid; + const long long unsigned int adr; +}; + +enum { + CHIP_INVALID = 0, + CHIP_PM8606 = 1, + CHIP_PM8607 = 2, + CHIP_MAX = 3, +}; + +enum pm8606_ref_gp_and_osc_clients { + REF_GP_NO_CLIENTS = 0, + WLED1_DUTY = 1, + WLED2_DUTY = 2, + WLED3_DUTY = 4, + RGB1_ENABLE = 8, + RGB2_ENABLE = 16, + LDO_VBR_EN = 32, + REF_GP_MAX_CLIENT = 65535, +}; + +enum { + PM8607_IRQ_ONKEY = 0, + PM8607_IRQ_EXTON = 1, + PM8607_IRQ_CHG = 2, + PM8607_IRQ_BAT = 3, + PM8607_IRQ_RTC = 4, + PM8607_IRQ_CC = 5, + PM8607_IRQ_VBAT = 6, + PM8607_IRQ_VCHG = 7, + PM8607_IRQ_VSYS = 8, + PM8607_IRQ_TINT = 9, + PM8607_IRQ_GPADC0 = 10, + PM8607_IRQ_GPADC1 = 11, + PM8607_IRQ_GPADC2 = 12, + PM8607_IRQ_GPADC3 = 13, + PM8607_IRQ_AUDIO_SHORT = 14, + PM8607_IRQ_PEN = 15, + PM8607_IRQ_HEADSET = 16, + PM8607_IRQ_HOOK = 17, + PM8607_IRQ_MICIN = 18, + PM8607_IRQ_CHG_FAIL = 19, + PM8607_IRQ_CHG_DONE = 20, + PM8607_IRQ_CHG_FAULT = 21, +}; + +struct pm860x_chip { + struct device *dev; + struct mutex irq_lock; + struct mutex osc_lock; + struct i2c_client *client; + struct i2c_client *companion; + struct regmap *regmap; + struct regmap *regmap_companion; + int buck3_double; + int companion_addr; + short unsigned int osc_vote; + int id; + int irq_mode; + int irq_base; + int core_irq; + unsigned char chip_version; + unsigned char osc_status; + unsigned int wakeup_flag; +}; + +enum { + GI2C_PORT = 0, + PI2C_PORT = 1, +}; + +struct pm860x_backlight_pdata { + int pwm; + int iset; +}; + +struct pm860x_led_pdata { + int iset; +}; + +struct pm860x_rtc_pdata { + int (*sync)(unsigned int); + int vrtc; +}; + +struct pm860x_touch_pdata { + int gpadc_prebias; + int slot_cycle; + int off_scale; + int sw_cal; + int tsi_prebias; + int pen_prebias; + int pen_prechg; + int res_x; + long unsigned int flags; +}; + +struct pm860x_power_pdata { + int max_capacity; + int resistor; +}; + +struct charger_desc; + +struct pm860x_platform_data { + struct pm860x_backlight_pdata *backlight; + struct pm860x_led_pdata *led; + struct pm860x_rtc_pdata *rtc; + struct pm860x_touch_pdata *touch; + struct pm860x_power_pdata *power; + struct regulator_init_data *buck1; + struct regulator_init_data *buck2; + struct regulator_init_data *buck3; + struct regulator_init_data *ldo1; + struct regulator_init_data *ldo2; + struct regulator_init_data *ldo3; + struct regulator_init_data *ldo4; + struct regulator_init_data *ldo5; + struct regulator_init_data *ldo6; + struct regulator_init_data *ldo7; + struct regulator_init_data *ldo8; + struct regulator_init_data *ldo9; + struct regulator_init_data *ldo10; + struct regulator_init_data *ldo12; + struct regulator_init_data *ldo_vibrator; + struct regulator_init_data *ldo14; + struct charger_desc *chg_desc; + int companion_addr; + int i2c_port; + int irq_mode; + int irq_base; + int num_leds; + int num_backlights; +}; + +enum polling_modes { + CM_POLL_DISABLE = 0, + CM_POLL_ALWAYS = 1, + CM_POLL_EXTERNAL_POWER_ONLY = 2, + CM_POLL_CHARGING_ONLY = 3, +}; + +enum data_source { + CM_BATTERY_PRESENT = 0, + CM_NO_BATTERY = 1, + CM_FUEL_GAUGE = 2, + CM_CHARGER_STAT = 3, +}; + +struct charger_regulator; + +struct charger_desc { + const char *psy_name; + enum polling_modes polling_mode; + unsigned int polling_interval_ms; + unsigned int fullbatt_vchkdrop_uV; + unsigned int fullbatt_uV; + unsigned int fullbatt_soc; + unsigned int fullbatt_full_capacity; + enum data_source battery_present; + const char **psy_charger_stat; + int num_charger_regulators; + struct charger_regulator *charger_regulators; + const struct attribute_group **sysfs_groups; + const char *psy_fuel_gauge; + const char *thermal_zone; + int temp_min; + int temp_max; + int temp_diff; + bool measure_battery_temp; + u32 charging_max_duration_ms; + u32 discharging_max_duration_ms; +}; + +enum power_supply_property { + POWER_SUPPLY_PROP_STATUS = 0, + POWER_SUPPLY_PROP_CHARGE_TYPE = 1, + POWER_SUPPLY_PROP_CHARGE_TYPES = 2, + POWER_SUPPLY_PROP_HEALTH = 3, + POWER_SUPPLY_PROP_PRESENT = 4, + POWER_SUPPLY_PROP_ONLINE = 5, + POWER_SUPPLY_PROP_AUTHENTIC = 6, + POWER_SUPPLY_PROP_TECHNOLOGY = 7, + POWER_SUPPLY_PROP_CYCLE_COUNT = 8, + POWER_SUPPLY_PROP_VOLTAGE_MAX = 9, + POWER_SUPPLY_PROP_VOLTAGE_MIN = 10, + POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN = 11, + POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN = 12, + POWER_SUPPLY_PROP_VOLTAGE_NOW = 13, + POWER_SUPPLY_PROP_VOLTAGE_AVG = 14, + POWER_SUPPLY_PROP_VOLTAGE_OCV = 15, + POWER_SUPPLY_PROP_VOLTAGE_BOOT = 16, + POWER_SUPPLY_PROP_CURRENT_MAX = 17, + POWER_SUPPLY_PROP_CURRENT_NOW = 18, + POWER_SUPPLY_PROP_CURRENT_AVG = 19, + POWER_SUPPLY_PROP_CURRENT_BOOT = 20, + POWER_SUPPLY_PROP_POWER_NOW = 21, + POWER_SUPPLY_PROP_POWER_AVG = 22, + POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN = 23, + POWER_SUPPLY_PROP_CHARGE_EMPTY_DESIGN = 24, + POWER_SUPPLY_PROP_CHARGE_FULL = 25, + POWER_SUPPLY_PROP_CHARGE_EMPTY = 26, + POWER_SUPPLY_PROP_CHARGE_NOW = 27, + POWER_SUPPLY_PROP_CHARGE_AVG = 28, + POWER_SUPPLY_PROP_CHARGE_COUNTER = 29, + POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT = 30, + POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX = 31, + POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE = 32, + POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE_MAX = 33, + POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT = 34, + POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT_MAX = 35, + POWER_SUPPLY_PROP_CHARGE_CONTROL_START_THRESHOLD = 36, + POWER_SUPPLY_PROP_CHARGE_CONTROL_END_THRESHOLD = 37, + POWER_SUPPLY_PROP_CHARGE_BEHAVIOUR = 38, + POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT = 39, + POWER_SUPPLY_PROP_INPUT_VOLTAGE_LIMIT = 40, + POWER_SUPPLY_PROP_INPUT_POWER_LIMIT = 41, + POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN = 42, + POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN = 43, + POWER_SUPPLY_PROP_ENERGY_FULL = 44, + POWER_SUPPLY_PROP_ENERGY_EMPTY = 45, + POWER_SUPPLY_PROP_ENERGY_NOW = 46, + POWER_SUPPLY_PROP_ENERGY_AVG = 47, + POWER_SUPPLY_PROP_CAPACITY = 48, + POWER_SUPPLY_PROP_CAPACITY_ALERT_MIN = 49, + POWER_SUPPLY_PROP_CAPACITY_ALERT_MAX = 50, + POWER_SUPPLY_PROP_CAPACITY_ERROR_MARGIN = 51, + POWER_SUPPLY_PROP_CAPACITY_LEVEL = 52, + POWER_SUPPLY_PROP_TEMP = 53, + POWER_SUPPLY_PROP_TEMP_MAX = 54, + POWER_SUPPLY_PROP_TEMP_MIN = 55, + POWER_SUPPLY_PROP_TEMP_ALERT_MIN = 56, + POWER_SUPPLY_PROP_TEMP_ALERT_MAX = 57, + POWER_SUPPLY_PROP_TEMP_AMBIENT = 58, + POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MIN = 59, + POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MAX = 60, + POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW = 61, + POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG = 62, + POWER_SUPPLY_PROP_TIME_TO_FULL_NOW = 63, + POWER_SUPPLY_PROP_TIME_TO_FULL_AVG = 64, + POWER_SUPPLY_PROP_TYPE = 65, + POWER_SUPPLY_PROP_USB_TYPE = 66, + POWER_SUPPLY_PROP_SCOPE = 67, + POWER_SUPPLY_PROP_PRECHARGE_CURRENT = 68, + POWER_SUPPLY_PROP_CHARGE_TERM_CURRENT = 69, + POWER_SUPPLY_PROP_CALIBRATE = 70, + POWER_SUPPLY_PROP_MANUFACTURE_YEAR = 71, + POWER_SUPPLY_PROP_MANUFACTURE_MONTH = 72, + POWER_SUPPLY_PROP_MANUFACTURE_DAY = 73, + POWER_SUPPLY_PROP_MODEL_NAME = 74, + POWER_SUPPLY_PROP_MANUFACTURER = 75, + POWER_SUPPLY_PROP_SERIAL_NUMBER = 76, +}; + +enum power_supply_type { + POWER_SUPPLY_TYPE_UNKNOWN = 0, + POWER_SUPPLY_TYPE_BATTERY = 1, + POWER_SUPPLY_TYPE_UPS = 2, + POWER_SUPPLY_TYPE_MAINS = 3, + POWER_SUPPLY_TYPE_USB = 4, + POWER_SUPPLY_TYPE_USB_DCP = 5, + POWER_SUPPLY_TYPE_USB_CDP = 6, + POWER_SUPPLY_TYPE_USB_ACA = 7, + POWER_SUPPLY_TYPE_USB_TYPE_C = 8, + POWER_SUPPLY_TYPE_USB_PD = 9, + POWER_SUPPLY_TYPE_USB_PD_DRP = 10, + POWER_SUPPLY_TYPE_APPLE_BRICK_ID = 11, + POWER_SUPPLY_TYPE_WIRELESS = 12, +}; + +union power_supply_propval { + int intval; + const char *strval; +}; + +struct power_supply; + +struct power_supply_desc { + const char *name; + enum power_supply_type type; + u8 charge_behaviours; + u32 charge_types; + u32 usb_types; + const enum power_supply_property *properties; + size_t num_properties; + int (*get_property)(struct power_supply *, enum power_supply_property, union power_supply_propval *); + int (*set_property)(struct power_supply *, enum power_supply_property, const union power_supply_propval *); + int (*property_is_writeable)(struct power_supply *, enum power_supply_property); + void (*external_power_changed)(struct power_supply *); + bool no_thermal; + int use_for_apm; +}; + +struct power_supply_battery_info; + +struct thermal_zone_device; + +struct power_supply { + const struct power_supply_desc *desc; + char **supplied_to; + size_t num_supplicants; + char **supplied_from; + size_t num_supplies; + void *drv_data; + struct device dev; + struct work_struct changed_work; + struct delayed_work deferred_register_work; + spinlock_t changed_lock; + bool changed; + bool update_groups; + bool initialized; + bool removing; + atomic_t use_cnt; + struct power_supply_battery_info *battery_info; + struct rw_semaphore extensions_sem; + struct list_head extensions; + struct thermal_zone_device *tzd; + struct thermal_cooling_device *tcd; + struct led_trigger *trig; + struct led_trigger *charging_trig; + struct led_trigger *full_trig; + struct led_trigger *charging_blink_full_solid_trig; + struct led_trigger *charging_orange_full_green_trig; +}; + +struct power_supply_maintenance_charge_table; + +struct power_supply_battery_ocv_table; + +struct power_supply_resistance_temp_table; + +struct power_supply_vbat_ri_table; + +struct power_supply_battery_info { + unsigned int technology; + int energy_full_design_uwh; + int charge_full_design_uah; + int voltage_min_design_uv; + int voltage_max_design_uv; + int tricklecharge_current_ua; + int precharge_current_ua; + int precharge_voltage_max_uv; + int charge_term_current_ua; + int charge_restart_voltage_uv; + int overvoltage_limit_uv; + int constant_charge_current_max_ua; + int constant_charge_voltage_max_uv; + const struct power_supply_maintenance_charge_table *maintenance_charge; + int maintenance_charge_size; + int alert_low_temp_charge_current_ua; + int alert_low_temp_charge_voltage_uv; + int alert_high_temp_charge_current_ua; + int alert_high_temp_charge_voltage_uv; + int factory_internal_resistance_uohm; + int factory_internal_resistance_charging_uohm; + int ocv_temp[20]; + int temp_ambient_alert_min; + int temp_ambient_alert_max; + int temp_alert_min; + int temp_alert_max; + int temp_min; + int temp_max; + const struct power_supply_battery_ocv_table *ocv_table[20]; + int ocv_table_size[20]; + const struct power_supply_resistance_temp_table *resist_table; + int resist_table_size; + const struct power_supply_vbat_ri_table *vbat2ri_discharging; + int vbat2ri_discharging_size; + const struct power_supply_vbat_ri_table *vbat2ri_charging; + int vbat2ri_charging_size; + int bti_resistance_ohm; + int bti_resistance_tolerance; +}; + +struct power_supply_battery_ocv_table { + int ocv; + int capacity; +}; + +struct power_supply_resistance_temp_table { + int temp; + int resistance; +}; + +struct power_supply_vbat_ri_table { + int vbat_uv; + int ri_uohm; +}; + +struct power_supply_maintenance_charge_table { + int charge_current_max_ua; + int charge_voltage_max_uv; + int charge_safety_timer_minutes; +}; + +struct extcon_dev; + +struct charger_manager; + +struct charger_cable { + const char *extcon_name; + const char *name; + struct extcon_dev *extcon_dev; + u64 extcon_type; + struct work_struct wq; + struct notifier_block nb; + bool attached; + struct charger_regulator *charger; + int min_uA; + int max_uA; + struct charger_manager *cm; +}; + +struct charger_regulator { + const char *regulator_name; + struct regulator *consumer; + int externally_control; + struct charger_cable *cables; + int num_cables; + struct attribute_group attr_grp; + struct device_attribute attr_name; + struct device_attribute attr_state; + struct device_attribute attr_externally_control; + struct attribute *attrs[4]; + struct charger_manager *cm; +}; + +struct charger_manager { + struct list_head entry; + struct device *dev; + struct charger_desc *desc; + struct thermal_zone_device *tzd_batt; + bool charger_enabled; + int emergency_stop; + char psy_name_buf[31]; + struct power_supply_desc charger_psy_desc; + struct power_supply *charger_psy; + u64 charging_start_time; + u64 charging_end_time; + int battery_status; +}; + +struct pm860x_irq_data { + int reg; + int mask_reg; + int enable; + int offs; +}; + +enum wm831x_auxadc { + WM831X_AUX_CAL = 15, + WM831X_AUX_BKUP_BATT = 10, + WM831X_AUX_WALL = 9, + WM831X_AUX_BATT = 8, + WM831X_AUX_USB = 7, + WM831X_AUX_SYSVDD = 6, + WM831X_AUX_BATT_TEMP = 5, + WM831X_AUX_CHIP_TEMP = 4, + WM831X_AUX_AUX4 = 3, + WM831X_AUX_AUX3 = 2, + WM831X_AUX_AUX2 = 1, + WM831X_AUX_AUX1 = 0, +}; + +struct wm831x_backlight_pdata { + int isink; + int max_uA; +}; + +struct wm831x_backup_pdata { + int charger_enable; + int no_constant_voltage; + int vlim; + int ilim; +}; + +struct wm831x_battery_pdata { + int enable; + int fast_enable; + int off_mask; + int trickle_ilim; + int vsel; + int eoc_iterm; + int fast_ilim; + int timeout; +}; + +enum wm831x_status_src { + WM831X_STATUS_PRESERVE = 0, + WM831X_STATUS_OTP = 1, + WM831X_STATUS_POWER = 2, + WM831X_STATUS_CHARGER = 3, + WM831X_STATUS_MANUAL = 4, +}; + +struct wm831x_status_pdata { + enum wm831x_status_src default_src; + const char *name; + const char *default_trigger; +}; + +struct wm831x_touch_pdata { + int fivewire; + int isel; + int rpu; + int pressure; + unsigned int data_irq; + int data_irqf; + unsigned int pd_irq; + int pd_irqf; +}; + +enum wm831x_watchdog_action { + WM831X_WDOG_NONE = 0, + WM831X_WDOG_INTERRUPT = 1, + WM831X_WDOG_RESET = 2, + WM831X_WDOG_WAKE = 3, +}; + +struct wm831x_watchdog_pdata { + enum wm831x_watchdog_action primary; + enum wm831x_watchdog_action secondary; + unsigned int software: 1; +}; + +struct wm831x; + +struct wm831x_pdata { + int wm831x_num; + int (*pre_init)(struct wm831x *); + int (*post_init)(struct wm831x *); + bool irq_cmos; + bool disable_touch; + bool soft_shutdown; + int irq_base; + int gpio_base; + int gpio_defaults[16]; + struct wm831x_backlight_pdata *backlight; + struct wm831x_backup_pdata *backup; + struct wm831x_battery_pdata *battery; + struct wm831x_touch_pdata *touch; + struct wm831x_watchdog_pdata *watchdog; + struct wm831x_status_pdata *status[2]; + struct regulator_init_data *dcdc[4]; + struct regulator_init_data *epe[2]; + struct regulator_init_data *ldo[11]; + struct regulator_init_data *isink[2]; +}; + +enum wm831x_parent { + WM8310 = 33552, + WM8311 = 33553, + WM8312 = 33554, + WM8320 = 33568, + WM8321 = 33569, + WM8325 = 33573, + WM8326 = 33574, +}; + +typedef int (*wm831x_auxadc_read_fn)(struct wm831x *, enum wm831x_auxadc); + +struct wm831x { + struct mutex io_lock; + struct device *dev; + struct regmap *regmap; + struct wm831x_pdata pdata; + enum wm831x_parent type; + int irq; + struct mutex irq_lock; + struct irq_domain *irq_domain; + int irq_masks_cur[5]; + int irq_masks_cache[5]; + bool soft_shutdown; + unsigned int has_gpio_ena: 1; + unsigned int has_cs_sts: 1; + unsigned int charger_irq_wake: 1; + int num_gpio; + int gpio_update[16]; + bool gpio_level_high[16]; + bool gpio_level_low[16]; + struct mutex auxadc_lock; + struct list_head auxadc_pending; + u16 auxadc_active; + wm831x_auxadc_read_fn auxadc_read; + struct mutex key_lock; + unsigned int locked: 1; +}; + +struct wm831x_auxadc_req { + struct list_head list; + enum wm831x_auxadc input; + int val; + struct completion done; +}; + +struct spi_device_id { + char name[32]; + kernel_ulong_t driver_data; +}; + +struct kthread_work; + +typedef void (*kthread_work_func_t)(struct kthread_work *); + +struct kthread_worker; + +struct kthread_work { + struct list_head node; + kthread_work_func_t func; + struct kthread_worker *worker; + int canceling; +}; + +struct kthread_worker { + unsigned int flags; + raw_spinlock_t lock; + struct list_head work_list; + struct list_head delayed_work_list; + struct task_struct *task; + struct kthread_work *current_work; +}; + +struct spi_statistics { + struct u64_stats_sync syncp; + u64_stats_t messages; + u64_stats_t transfers; + u64_stats_t errors; + u64_stats_t timedout; + u64_stats_t spi_sync; + u64_stats_t spi_sync_immediate; + u64_stats_t spi_async; + u64_stats_t bytes; + u64_stats_t bytes_rx; + u64_stats_t bytes_tx; + u64_stats_t transfer_bytes_histo[17]; + u64_stats_t transfers_split_maxsize; +}; + +struct spi_delay { + u16 value; + u8 unit; +}; + +struct spi_controller; + +struct spi_device { + struct device dev; + struct spi_controller *controller; + u32 max_speed_hz; + u8 bits_per_word; + bool rt; + u32 mode; + int irq; + void *controller_state; + void *controller_data; + char modalias[32]; + const char *driver_override; + struct spi_statistics *pcpu_statistics; + struct spi_delay word_delay; + struct spi_delay cs_setup; + struct spi_delay cs_hold; + struct spi_delay cs_inactive; + u8 chip_select[24]; + u32 cs_index_mask: 24; + struct gpio_desc *cs_gpiod[24]; +}; + +struct spi_message; + +struct spi_transfer; + +struct spi_controller_mem_ops; + +struct spi_controller_mem_caps; + +struct spi_offload; + +struct spi_offload_config; + +struct spi_controller { + struct device dev; + struct list_head list; + s16 bus_num; + u16 num_chipselect; + u16 dma_alignment; + u32 mode_bits; + u32 buswidth_override_bits; + u32 bits_per_word_mask; + u32 min_speed_hz; + u32 max_speed_hz; + u16 flags; + bool devm_allocated; + union { + bool slave; + bool target; + }; + size_t (*max_transfer_size)(struct spi_device *); + size_t (*max_message_size)(struct spi_device *); + struct mutex io_mutex; + struct mutex add_lock; + spinlock_t bus_lock_spinlock; + struct mutex bus_lock_mutex; + bool bus_lock_flag; + int (*setup)(struct spi_device *); + int (*set_cs_timing)(struct spi_device *); + int (*transfer)(struct spi_device *, struct spi_message *); + void (*cleanup)(struct spi_device *); + bool (*can_dma)(struct spi_controller *, struct spi_device *, struct spi_transfer *); + struct device *dma_map_dev; + struct device *cur_rx_dma_dev; + struct device *cur_tx_dma_dev; + bool queued; + struct kthread_worker *kworker; + struct kthread_work pump_messages; + spinlock_t queue_lock; + struct list_head queue; + struct spi_message *cur_msg; + struct completion cur_msg_completion; + bool cur_msg_incomplete; + bool cur_msg_need_completion; + bool busy; + bool running; + bool rt; + bool auto_runtime_pm; + bool fallback; + bool last_cs_mode_high; + s8 last_cs[24]; + u32 last_cs_index_mask: 24; + struct completion xfer_completion; + size_t max_dma_len; + int (*optimize_message)(struct spi_message *); + int (*unoptimize_message)(struct spi_message *); + int (*prepare_transfer_hardware)(struct spi_controller *); + int (*transfer_one_message)(struct spi_controller *, struct spi_message *); + int (*unprepare_transfer_hardware)(struct spi_controller *); + int (*prepare_message)(struct spi_controller *, struct spi_message *); + int (*unprepare_message)(struct spi_controller *, struct spi_message *); + int (*target_abort)(struct spi_controller *); + void (*set_cs)(struct spi_device *, bool); + int (*transfer_one)(struct spi_controller *, struct spi_device *, struct spi_transfer *); + void (*handle_err)(struct spi_controller *, struct spi_message *); + const struct spi_controller_mem_ops *mem_ops; + const struct spi_controller_mem_caps *mem_caps; + bool dtr_caps; + struct spi_offload * (*get_offload)(struct spi_device *, const struct spi_offload_config *); + void (*put_offload)(struct spi_offload *); + struct gpio_desc **cs_gpiods; + bool use_gpio_descriptors; + s8 unused_native_cs; + s8 max_native_cs; + struct spi_statistics *pcpu_statistics; + struct dma_chan *dma_tx; + struct dma_chan *dma_rx; + void *dummy_rx; + void *dummy_tx; + int (*fw_translate_cs)(struct spi_controller *, unsigned int); + bool ptp_sts_supported; + long unsigned int irq_flags; + bool queue_empty; + bool must_async; + bool defer_optimize_message; +}; + +struct spi_driver { + const struct spi_device_id *id_table; + int (*probe)(struct spi_device *); + void (*remove)(struct spi_device *); + void (*shutdown)(struct spi_device *); + struct device_driver driver; +}; + +struct spi_message { + struct list_head transfers; + struct spi_device *spi; + bool pre_optimized; + bool optimized; + bool prepared; + int status; + void (*complete)(void *); + void *context; + unsigned int frame_length; + unsigned int actual_length; + struct list_head queue; + void *state; + void *opt_state; + struct spi_offload *offload; + struct list_head resources; +}; + +struct ptp_system_timestamp; + +struct spi_transfer { + const void *tx_buf; + void *rx_buf; + unsigned int len; + u16 error; + bool tx_sg_mapped; + bool rx_sg_mapped; + struct sg_table tx_sg; + struct sg_table rx_sg; + dma_addr_t tx_dma; + dma_addr_t rx_dma; + unsigned int dummy_data: 1; + unsigned int cs_off: 1; + unsigned int cs_change: 1; + unsigned int tx_nbits: 4; + unsigned int rx_nbits: 4; + unsigned int timestamped: 1; + bool dtr_mode; + u8 bits_per_word; + struct spi_delay delay; + struct spi_delay cs_change_delay; + struct spi_delay word_delay; + u32 speed_hz; + u32 effective_speed_hz; + unsigned int offload_flags; + unsigned int ptp_sts_word_pre; + unsigned int ptp_sts_word_post; + struct ptp_system_timestamp *ptp_sts; + struct list_head transfer_list; +}; + +struct spi_mem; + +struct spi_mem_op; + +struct spi_mem_dirmap_desc; + +struct spi_controller_mem_ops { + int (*adjust_op_size)(struct spi_mem *, struct spi_mem_op *); + bool (*supports_op)(struct spi_mem *, const struct spi_mem_op *); + int (*exec_op)(struct spi_mem *, const struct spi_mem_op *); + const char * (*get_name)(struct spi_mem *); + int (*dirmap_create)(struct spi_mem_dirmap_desc *); + void (*dirmap_destroy)(struct spi_mem_dirmap_desc *); + ssize_t (*dirmap_read)(struct spi_mem_dirmap_desc *, u64, size_t, void *); + ssize_t (*dirmap_write)(struct spi_mem_dirmap_desc *, u64, size_t, const void *); + int (*poll_status)(struct spi_mem *, const struct spi_mem_op *, u16, u16, long unsigned int, long unsigned int, long unsigned int); +}; + +struct spi_controller_mem_caps { + bool dtr; + bool ecc; + bool swap16; + bool per_op_freq; +}; + +struct spi_offload_config { + u32 capability_flags; +}; + +struct wm8350_audio_platform_data { + int vmid_discharge_msecs; + int drain_msecs; + int cap_discharge_msecs; + int vmid_charge_msecs; + u32 vmid_s_curve: 2; + u32 dis_out4: 2; + u32 dis_out3: 2; + u32 dis_out2: 2; + u32 dis_out1: 2; + u32 vroi_out4: 1; + u32 vroi_out3: 1; + u32 vroi_out2: 1; + u32 vroi_out1: 1; + u32 vroi_enable: 1; + u32 codec_current_on: 2; + u32 codec_current_standby: 2; + u32 codec_current_charge: 2; +}; + +struct wm8350_codec { + struct platform_device *pdev; + struct wm8350_audio_platform_data *platform_data; +}; + +struct wm8350_gpio { + struct platform_device *pdev; +}; + +struct wm8350_led { + struct platform_device *pdev; + struct work_struct work; + spinlock_t value_lock; + enum led_brightness value; + struct led_classdev cdev; + int max_uA_index; + int enabled; + struct regulator *isink; + struct regulator_consumer_supply isink_consumer; + struct regulator_init_data isink_init; + struct regulator *dcdc; + struct regulator_consumer_supply dcdc_consumer; + struct regulator_init_data dcdc_init; +}; + +struct wm8350_pmic { + int max_dcdc; + int max_isink; + int isink_A_dcdc; + int isink_B_dcdc; + u16 dcdc1_hib_mode; + u16 dcdc3_hib_mode; + u16 dcdc4_hib_mode; + u16 dcdc6_hib_mode; + struct platform_device *pdev[12]; + struct wm8350_led led[2]; +}; + +struct rtc_device; + +struct wm8350_rtc { + struct platform_device *pdev; + struct rtc_device *rtc; + int alarm_enabled; + int update_enabled; +}; + +struct wm8350_charger_policy { + int eoc_mA; + int charge_mV; + int fast_limit_mA; + int fast_limit_USB_mA; + int charge_timeout; + int trickle_start_mV; + int trickle_charge_mA; + int trickle_charge_USB_mA; +}; + +struct wm8350_power { + struct platform_device *pdev; + struct power_supply *battery; + struct power_supply *usb; + struct power_supply *ac; + struct wm8350_charger_policy *policy; + int rev_g_coeff; +}; + +struct wm8350_wdt { + struct platform_device *pdev; +}; + +struct wm8350_hwmon { + struct platform_device *pdev; + struct device *classdev; +}; + +struct wm8350 { + struct device *dev; + struct regmap *regmap; + bool unlocked; + struct mutex auxadc_mutex; + struct completion auxadc_done; + struct mutex irq_lock; + int chip_irq; + int irq_base; + u16 irq_masks[7]; + struct wm8350_codec codec; + struct wm8350_gpio gpio; + struct wm8350_hwmon hwmon; + struct wm8350_pmic pmic; + struct wm8350_power power; + struct wm8350_rtc rtc; + struct wm8350_wdt wdt; +}; + +struct wm8350_platform_data { + int (*init)(struct wm8350 *); + int irq_high; + int irq_base; + int gpio_base; +}; + +struct wm8350_irq_data { + int primary; + int reg; + int mask; + int primary_only; +}; + +struct tps65912 { + struct device *dev; + struct regmap *regmap; + int irq; + struct regmap_irq_chip_data *irq_data; +}; + +enum twl_module_ids { + TWL_MODULE_USB = 0, + TWL_MODULE_PIH = 1, + TWL_MODULE_MAIN_CHARGE = 2, + TWL_MODULE_PM_MASTER = 3, + TWL_MODULE_PM_RECEIVER = 4, + TWL_MODULE_RTC = 5, + TWL_MODULE_PWM = 6, + TWL_MODULE_LED = 7, + TWL_MODULE_SECURED_REG = 8, + TWL_MODULE_LAST = 9, +}; + +struct twl6030_irq { + unsigned int irq_base; + int twl_irq; + bool irq_wake_enabled; + atomic_t wakeirqs; + struct notifier_block pm_nb; + struct irq_chip irq_chip; + struct irq_domain *irq_domain; + const int *irq_mapping_tbl; +}; + +struct mfd_of_node_entry { + struct list_head list; + struct device *dev; + struct device_node *np; +}; + +struct match_ids_walk_data { + struct acpi_device_id *ids; + struct acpi_device *adev; +}; + +struct da9052 { + struct device *dev; + struct regmap *regmap; + struct mutex auxadc_lock; + struct completion done; + int irq_base; + struct regmap_irq_chip_data *irq_data; + u8 chip_id; + int chip_irq; + int fault_log; + int (*fix_io)(struct da9052 *, unsigned char); +}; + +struct led_platform_data; + +struct da9052_pdata { + struct led_platform_data *pled; + int (*init)(struct da9052 *); + int irq_base; + int gpio_base; + int use_for_apm; + struct regulator_init_data *regulators[14]; +}; + +enum lp8788_int_id { + LP8788_INT_TSDL = 0, + LP8788_INT_TSDH = 1, + LP8788_INT_UVLO = 2, + LP8788_INT_FLAGMON = 3, + LP8788_INT_PWRON_TIME = 4, + LP8788_INT_PWRON = 5, + LP8788_INT_COMP1 = 6, + LP8788_INT_COMP2 = 7, + LP8788_INT_CHG_INPUT_STATE = 8, + LP8788_INT_CHG_STATE = 9, + LP8788_INT_EOC = 10, + LP8788_INT_CHG_RESTART = 11, + LP8788_INT_RESTART_TIMEOUT = 12, + LP8788_INT_FULLCHG_TIMEOUT = 13, + LP8788_INT_PRECHG_TIMEOUT = 14, + LP8788_INT_RTC_ALARM1 = 17, + LP8788_INT_RTC_ALARM2 = 18, + LP8788_INT_ENTER_SYS_SUPPORT = 19, + LP8788_INT_EXIT_SYS_SUPPORT = 20, + LP8788_INT_BATT_LOW = 21, + LP8788_INT_NO_BATT = 22, + LP8788_INT_MAX = 24, +}; + +enum lp8788_dvs_sel { + DVS_SEL_V0 = 0, + DVS_SEL_V1 = 1, + DVS_SEL_V2 = 2, + DVS_SEL_V3 = 3, +}; + +enum lp8788_charger_event { + NO_CHARGER = 0, + CHARGER_DETECTED = 1, +}; + +enum lp8788_isink_scale { + LP8788_ISINK_SCALE_100mA = 0, + LP8788_ISINK_SCALE_120mA = 1, +}; + +enum lp8788_isink_number { + LP8788_ISINK_1 = 0, + LP8788_ISINK_2 = 1, + LP8788_ISINK_3 = 2, +}; + +enum lp8788_alarm_sel { + LP8788_ALARM_1 = 0, + LP8788_ALARM_2 = 1, + LP8788_ALARM_MAX = 2, +}; + +struct lp8788_buck1_dvs { + enum lp8788_dvs_sel vsel; +}; + +struct lp8788_buck2_dvs { + enum lp8788_dvs_sel vsel; +}; + +struct lp8788_chg_param { + u8 addr; + u8 val; +}; + +struct lp8788; + +struct lp8788_charger_platform_data { + const char *adc_vbatt; + const char *adc_batt_temp; + unsigned int max_vbatt_mv; + struct lp8788_chg_param *chg_params; + int num_chg_params; + void (*charger_event)(struct lp8788 *, enum lp8788_charger_event); +}; + +struct lp8788_platform_data; + +struct lp8788 { + struct device *dev; + struct regmap *regmap; + struct irq_domain *irqdm; + int irq; + struct lp8788_platform_data *pdata; +}; + +struct lp8788_led_platform_data { + char *name; + enum lp8788_isink_scale scale; + enum lp8788_isink_number num; + int iout_code; +}; + +struct lp8788_vib_platform_data { + char *name; + enum lp8788_isink_scale scale; + enum lp8788_isink_number num; + int iout_code; + int pwm_code; +}; + +struct iio_map; + +struct lp8788_platform_data { + int (*init_func)(struct lp8788 *); + struct regulator_init_data *buck_data[4]; + struct regulator_init_data *dldo_data[12]; + struct regulator_init_data *aldo_data[10]; + struct lp8788_buck1_dvs *buck1_dvs; + struct lp8788_buck2_dvs *buck2_dvs; + struct lp8788_charger_platform_data *chg_pdata; + enum lp8788_alarm_sel alarm_sel; + struct lp8788_led_platform_data *led_pdata; + struct lp8788_vib_platform_data *vib_pdata; + struct iio_map *adc_pdata; +}; + +struct da9055 { + struct regmap *regmap; + struct regmap_irq_chip_data *irq_data; + struct device *dev; + struct i2c_client *i2c_client; + int irq_base; + int chip_irq; +}; + +struct max8925_chip { + struct device *dev; + struct i2c_client *i2c; + struct i2c_client *adc; + struct i2c_client *rtc; + struct mutex io_lock; + struct mutex irq_lock; + int irq_base; + int core_irq; + int tsc_irq; + unsigned int wakeup_flag; +}; + +struct max8925_backlight_pdata { + int lxw_scl; + int lxw_freq; + int dual_string; +}; + +struct max8925_touch_pdata { + unsigned int flags; +}; + +struct max8925_power_pdata { + int (*set_charger)(int); + unsigned int batt_detect: 1; + unsigned int topoff_threshold: 2; + unsigned int fast_charge: 3; + unsigned int no_temp_support: 1; + unsigned int no_insert_detect: 1; + char **supplied_to; + int num_supplicants; +}; + +struct max8925_platform_data { + struct max8925_backlight_pdata *backlight; + struct max8925_touch_pdata *touch; + struct max8925_power_pdata *power; + struct regulator_init_data *sd1; + struct regulator_init_data *sd2; + struct regulator_init_data *sd3; + struct regulator_init_data *ldo1; + struct regulator_init_data *ldo2; + struct regulator_init_data *ldo3; + struct regulator_init_data *ldo4; + struct regulator_init_data *ldo5; + struct regulator_init_data *ldo6; + struct regulator_init_data *ldo7; + struct regulator_init_data *ldo8; + struct regulator_init_data *ldo9; + struct regulator_init_data *ldo10; + struct regulator_init_data *ldo11; + struct regulator_init_data *ldo12; + struct regulator_init_data *ldo13; + struct regulator_init_data *ldo14; + struct regulator_init_data *ldo15; + struct regulator_init_data *ldo16; + struct regulator_init_data *ldo17; + struct regulator_init_data *ldo18; + struct regulator_init_data *ldo19; + struct regulator_init_data *ldo20; + int irq_base; + int tsc_irq; +}; + +struct max8998_regulator_data { + int id; + struct regulator_init_data *initdata; + struct device_node *reg_node; +}; + +struct max8998_platform_data { + struct max8998_regulator_data *regulators; + int num_regulators; + unsigned int irq_base; + int ono; + bool buck_voltage_lock; + int buck1_voltage[4]; + int buck2_voltage[2]; + int buck1_default_idx; + int buck2_default_idx; + bool wakeup; + bool rtc_delay; + int eoc; + int restart; + int timeout; +}; + +enum { + MAX8998_REG_IRQ1 = 0, + MAX8998_REG_IRQ2 = 1, + MAX8998_REG_IRQ3 = 2, + MAX8998_REG_IRQ4 = 3, + MAX8998_REG_IRQM1 = 4, + MAX8998_REG_IRQM2 = 5, + MAX8998_REG_IRQM3 = 6, + MAX8998_REG_IRQM4 = 7, + MAX8998_REG_STATUS1 = 8, + MAX8998_REG_STATUS2 = 9, + MAX8998_REG_STATUSM1 = 10, + MAX8998_REG_STATUSM2 = 11, + MAX8998_REG_CHGR1 = 12, + MAX8998_REG_CHGR2 = 13, + MAX8998_REG_LDO_ACTIVE_DISCHARGE1 = 14, + MAX8998_REG_LDO_ACTIVE_DISCHARGE2 = 15, + MAX8998_REG_BUCK_ACTIVE_DISCHARGE3 = 16, + MAX8998_REG_ONOFF1 = 17, + MAX8998_REG_ONOFF2 = 18, + MAX8998_REG_ONOFF3 = 19, + MAX8998_REG_ONOFF4 = 20, + MAX8998_REG_BUCK1_VOLTAGE1 = 21, + MAX8998_REG_BUCK1_VOLTAGE2 = 22, + MAX8998_REG_BUCK1_VOLTAGE3 = 23, + MAX8998_REG_BUCK1_VOLTAGE4 = 24, + MAX8998_REG_BUCK2_VOLTAGE1 = 25, + MAX8998_REG_BUCK2_VOLTAGE2 = 26, + MAX8998_REG_BUCK3 = 27, + MAX8998_REG_BUCK4 = 28, + MAX8998_REG_LDO2_LDO3 = 29, + MAX8998_REG_LDO4 = 30, + MAX8998_REG_LDO5 = 31, + MAX8998_REG_LDO6 = 32, + MAX8998_REG_LDO7 = 33, + MAX8998_REG_LDO8_LDO9 = 34, + MAX8998_REG_LDO10_LDO11 = 35, + MAX8998_REG_LDO12 = 36, + MAX8998_REG_LDO13 = 37, + MAX8998_REG_LDO14 = 38, + MAX8998_REG_LDO15 = 39, + MAX8998_REG_LDO16 = 40, + MAX8998_REG_LDO17 = 41, + MAX8998_REG_BKCHR = 42, + MAX8998_REG_LBCNFG1 = 43, + MAX8998_REG_LBCNFG2 = 44, +}; + +enum { + TYPE_MAX8998 = 0, + TYPE_LP3974 = 1, + TYPE_LP3979 = 2, +}; + +struct max8998_dev { + struct device *dev; + struct max8998_platform_data *pdata; + struct i2c_client *i2c; + struct i2c_client *rtc; + struct mutex iolock; + struct mutex irqlock; + unsigned int irq_base; + struct irq_domain *irq_domain; + int irq; + int ono; + u8 irq_masks_cur[4]; + u8 irq_masks_cache[4]; + long unsigned int type; + bool wakeup; +}; + +struct max8998_reg_dump { + u8 addr; + u8 val; +}; + +enum { + TPS65090_IRQ_INTERRUPT = 0, + TPS65090_IRQ_VAC_STATUS_CHANGE = 1, + TPS65090_IRQ_VSYS_STATUS_CHANGE = 2, + TPS65090_IRQ_BAT_STATUS_CHANGE = 3, + TPS65090_IRQ_CHARGING_STATUS_CHANGE = 4, + TPS65090_IRQ_CHARGING_COMPLETE = 5, + TPS65090_IRQ_OVERLOAD_DCDC1 = 6, + TPS65090_IRQ_OVERLOAD_DCDC2 = 7, + TPS65090_IRQ_OVERLOAD_DCDC3 = 8, + TPS65090_IRQ_OVERLOAD_FET1 = 9, + TPS65090_IRQ_OVERLOAD_FET2 = 10, + TPS65090_IRQ_OVERLOAD_FET3 = 11, + TPS65090_IRQ_OVERLOAD_FET4 = 12, + TPS65090_IRQ_OVERLOAD_FET5 = 13, + TPS65090_IRQ_OVERLOAD_FET6 = 14, + TPS65090_IRQ_OVERLOAD_FET7 = 15, +}; + +enum { + TPS65090_REGULATOR_DCDC1 = 0, + TPS65090_REGULATOR_DCDC2 = 1, + TPS65090_REGULATOR_DCDC3 = 2, + TPS65090_REGULATOR_FET1 = 3, + TPS65090_REGULATOR_FET2 = 4, + TPS65090_REGULATOR_FET3 = 5, + TPS65090_REGULATOR_FET4 = 6, + TPS65090_REGULATOR_FET5 = 7, + TPS65090_REGULATOR_FET6 = 8, + TPS65090_REGULATOR_FET7 = 9, + TPS65090_REGULATOR_LDO1 = 10, + TPS65090_REGULATOR_LDO2 = 11, + TPS65090_REGULATOR_MAX = 12, +}; + +struct tps65090 { + struct device *dev; + struct regmap *rmap; + struct regmap_irq_chip_data *irq_data; +}; + +struct tps65090_regulator_plat_data { + struct regulator_init_data *reg_init_data; + bool enable_ext_control; + struct gpio_desc *gpiod; + bool overcurrent_wait_valid; + int overcurrent_wait; +}; + +struct tps65090_platform_data { + int irq_base; + char **supplied_to; + size_t num_supplicants; + int enable_low_current_chrg; + struct tps65090_regulator_plat_data *reg_pdata[12]; +}; + +enum tps65090_cells { + PMIC = 0, + CHARGER = 1, +}; + +enum { + RC5T583_IRQ_ONKEY = 0, + RC5T583_IRQ_ACOK = 1, + RC5T583_IRQ_LIDOPEN = 2, + RC5T583_IRQ_PREOT = 3, + RC5T583_IRQ_CLKSTP = 4, + RC5T583_IRQ_ONKEY_OFF = 5, + RC5T583_IRQ_WD = 6, + RC5T583_IRQ_EN_PWRREQ1 = 7, + RC5T583_IRQ_EN_PWRREQ2 = 8, + RC5T583_IRQ_PRE_VINDET = 9, + RC5T583_IRQ_DC0LIM = 10, + RC5T583_IRQ_DC1LIM = 11, + RC5T583_IRQ_DC2LIM = 12, + RC5T583_IRQ_DC3LIM = 13, + RC5T583_IRQ_CTC = 14, + RC5T583_IRQ_YALE = 15, + RC5T583_IRQ_DALE = 16, + RC5T583_IRQ_WALE = 17, + RC5T583_IRQ_AIN1L = 18, + RC5T583_IRQ_AIN2L = 19, + RC5T583_IRQ_AIN3L = 20, + RC5T583_IRQ_VBATL = 21, + RC5T583_IRQ_VIN3L = 22, + RC5T583_IRQ_VIN8L = 23, + RC5T583_IRQ_AIN1H = 24, + RC5T583_IRQ_AIN2H = 25, + RC5T583_IRQ_AIN3H = 26, + RC5T583_IRQ_VBATH = 27, + RC5T583_IRQ_VIN3H = 28, + RC5T583_IRQ_VIN8H = 29, + RC5T583_IRQ_ADCEND = 30, + RC5T583_IRQ_GPIO0 = 31, + RC5T583_IRQ_GPIO1 = 32, + RC5T583_IRQ_GPIO2 = 33, + RC5T583_IRQ_GPIO3 = 34, + RC5T583_IRQ_GPIO4 = 35, + RC5T583_IRQ_GPIO5 = 36, + RC5T583_IRQ_GPIO6 = 37, + RC5T583_IRQ_GPIO7 = 38, + RC5T583_MAX_IRQS = 39, +}; + +enum { + RC5T583_REGULATOR_DC0 = 0, + RC5T583_REGULATOR_DC1 = 1, + RC5T583_REGULATOR_DC2 = 2, + RC5T583_REGULATOR_DC3 = 3, + RC5T583_REGULATOR_LDO0 = 4, + RC5T583_REGULATOR_LDO1 = 5, + RC5T583_REGULATOR_LDO2 = 6, + RC5T583_REGULATOR_LDO3 = 7, + RC5T583_REGULATOR_LDO4 = 8, + RC5T583_REGULATOR_LDO5 = 9, + RC5T583_REGULATOR_LDO6 = 10, + RC5T583_REGULATOR_LDO7 = 11, + RC5T583_REGULATOR_LDO8 = 12, + RC5T583_REGULATOR_LDO9 = 13, + RC5T583_REGULATOR_MAX = 14, +}; + +struct rc5t583 { + struct device *dev; + struct regmap *regmap; + int chip_irq; + int irq_base; + struct mutex irq_lock; + long unsigned int group_irq_en[5]; + uint8_t intc_inten_reg; + uint8_t irq_en_reg[8]; + uint8_t gpedge_reg[2]; +}; + +enum int_type { + SYS_INT = 1, + DCDC_INT = 2, + RTC_INT = 4, + ADC_INT = 8, + GPIO_INT = 16, +}; + +struct rc5t583_irq_data { + u8 int_type; + u8 master_bit; + u8 int_en_bit; + u8 mask_reg_index; + int grp_index; +}; + +struct badrange_entry { + u64 start; + u64 length; + struct list_head list; +}; + +struct badrange { + struct list_head list; + spinlock_t lock; +}; + +struct nvdimm { + long unsigned int flags; + void *provider_data; + long unsigned int cmd_mask; + struct device dev; + atomic_t busy; + int id; + int num_flush; + struct resource *flush_wpq; + const char *dimm_id; + struct { + const struct nvdimm_security_ops *ops; + long unsigned int flags; + long unsigned int ext_flags; + unsigned int overwrite_tmo; + struct kernfs_node *overwrite_state; + } sec; + struct delayed_work dwork; + const struct nvdimm_fw_ops *fw_ops; +}; + +struct badblocks { + struct device *dev; + int count; + int unacked_exist; + int shift; + u64 *page; + int changed; + seqlock_t lock; + sector_t sector; + sector_t size; +}; + +struct nvdimm_drvdata; + +struct nd_mapping { + struct nvdimm *nvdimm; + u64 start; + u64 size; + int position; + struct list_head labels; + struct mutex lock; + struct nvdimm_drvdata *ndd; +}; + +struct nd_percpu_lane; + +struct nd_region { + struct device dev; + struct ida ns_ida; + struct ida btt_ida; + struct ida pfn_ida; + struct ida dax_ida; + long unsigned int flags; + struct device *ns_seed; + struct device *btt_seed; + struct device *pfn_seed; + struct device *dax_seed; + long unsigned int align; + u16 ndr_mappings; + u64 ndr_size; + u64 ndr_start; + int id; + int num_lanes; + int ro; + int numa_node; + int target_node; + void *provider_data; + struct kernfs_node *bb_state; + struct badblocks bb; + struct nd_interleave_set *nd_set; + struct nd_percpu_lane *lane; + int (*flush)(struct nd_region *, struct bio *); + struct nd_mapping mapping[0]; +}; + +struct nd_cmd_get_config_size { + __u32 status; + __u32 config_size; + __u32 max_xfer; +}; + +struct nd_cmd_vendor_hdr { + __u32 opcode; + __u32 in_length; + __u8 in_buf[0]; +}; + +enum nvdimm_claim_class { + NVDIMM_CCLASS_NONE = 0, + NVDIMM_CCLASS_BTT = 1, + NVDIMM_CCLASS_BTT2 = 2, + NVDIMM_CCLASS_PFN = 3, + NVDIMM_CCLASS_DAX = 4, + NVDIMM_CCLASS_UNKNOWN = 5, +}; + +struct nd_device_driver { + struct device_driver drv; + long unsigned int type; + int (*probe)(struct device *); + void (*remove)(struct device *); + void (*shutdown)(struct device *); + void (*notify)(struct device *, enum nvdimm_event); +}; + +struct nd_namespace_common { + int force_raw; + struct device dev; + struct device *claim; + enum nvdimm_claim_class claim_class; + int (*rw_bytes)(struct nd_namespace_common *, resource_size_t, void *, size_t, int, long unsigned int); +}; + +struct nd_namespace_io { + struct nd_namespace_common common; + struct resource res; + resource_size_t size; + void *addr; + struct badblocks bb; +}; + +enum { + NSINDEX_SIG_LEN = 16, + NSINDEX_ALIGN = 256, + NSINDEX_SEQ_MASK = 3, + NSLABEL_UUID_LEN = 16, + NSLABEL_NAME_LEN = 64, + NSLABEL_FLAG_ROLABEL = 1, + NSLABEL_FLAG_LOCAL = 2, + NSLABEL_FLAG_BTT = 4, + NSLABEL_FLAG_UPDATING = 8, + BTT_ALIGN = 4096, + BTTINFO_SIG_LEN = 16, + BTTINFO_UUID_LEN = 16, + BTTINFO_FLAG_ERROR = 1, + BTTINFO_MAJOR_VERSION = 1, + ND_LABEL_MIN_SIZE = 1024, + ND_LABEL_ID_SIZE = 50, + ND_NSINDEX_INIT = 1, +}; + +struct nvdimm_drvdata { + struct device *dev; + int nslabel_size; + struct nd_cmd_get_config_size nsarea; + void *data; + bool cxl; + int ns_current; + int ns_next; + struct resource dpa; + struct kref kref; +}; + +struct nd_percpu_lane { + int count; + spinlock_t lock; +}; + +struct btt; + +struct nd_btt { + struct device dev; + struct nd_namespace_common *ndns; + struct btt *btt; + long unsigned int lbasize; + u64 size; + uuid_t *uuid; + int id; + int initial_offset; + u16 version_major; + u16 version_minor; +}; + +enum nd_pfn_mode { + PFN_MODE_NONE = 0, + PFN_MODE_RAM = 1, + PFN_MODE_PMEM = 2, +}; + +struct nd_pfn_sb; + +struct nd_pfn { + int id; + uuid_t *uuid; + struct device dev; + long unsigned int align; + long unsigned int npfns; + enum nd_pfn_mode mode; + struct nd_pfn_sb *pfn_sb; + struct nd_namespace_common *ndns; +}; + +struct nd_pfn_sb { + u8 signature[16]; + u8 uuid[16]; + u8 parent_uuid[16]; + __le32 flags; + __le16 version_major; + __le16 version_minor; + __le64 dataoff; + __le64 npfns; + __le32 mode; + __le32 start_pad; + __le32 end_trunc; + __le32 align; + __le32 page_size; + __le16 page_struct_size; + u8 padding[3994]; + __le64 checksum; +}; + +struct nd_dax { + struct nd_pfn nd_pfn; +}; + +enum nd_async_mode { + ND_SYNC = 0, + ND_ASYNC = 1, +}; + +struct nvdimm_bus { + struct nvdimm_bus_descriptor *nd_desc; + wait_queue_head_t wait; + struct list_head list; + struct device dev; + int id; + int probe_active; + atomic_t ioctl_active; + struct list_head mapping_list; + struct mutex reconfig_mutex; + struct badrange badrange; +}; + +struct clear_badblocks_context { + resource_size_t phys; + resource_size_t cleared; +}; + +enum nd_ioctl_mode { + BUS_IOCTL = 0, + DIMM_IOCTL = 1, +}; + +struct nd_namespace_index { + u8 sig[16]; + u8 flags[3]; + u8 labelsize; + __le32 seq; + __le64 myoff; + __le64 mysize; + __le64 otheroff; + __le64 labeloff; + __le32 nslot; + __le16 major; + __le16 minor; + __le64 checksum; + u8 free[0]; +}; + +struct nvdimm_efi_label { + u8 uuid[16]; + u8 name[64]; + __le32 flags; + __le16 nlabel; + __le16 position; + __le64 isetcookie; + __le64 lbasize; + __le64 dpa; + __le64 rawsize; + __le32 slot; + u8 align; + u8 reserved[3]; + guid_t type_guid; + guid_t abstraction_guid; + u8 reserved2[88]; + __le64 checksum; +}; + +struct nvdimm_cxl_label { + u8 type[16]; + u8 uuid[16]; + u8 name[64]; + __le32 flags; + __le16 nrange; + __le16 position; + __le64 dpa; + __le64 rawsize; + __le32 slot; + __le32 align; + u8 region_uuid[16]; + u8 abstraction_uuid[16]; + __le16 lbasize; + u8 reserved[86]; + __le64 checksum; +}; + +struct nd_namespace_label { + union { + struct nvdimm_cxl_label cxl; + struct nvdimm_efi_label efi; + }; +}; + +enum { + ND_MAX_LANES = 256, + INT_LBASIZE_ALIGNMENT = 64, + NVDIMM_IO_ATOMIC = 1, +}; + +struct nd_region_data { + int ns_count; + int ns_active; + unsigned int hints_shift; + void *flush_wpq[0]; +}; + +struct nd_label_ent { + struct list_head list; + long unsigned int flags; + struct nd_namespace_label *label; +}; + +struct btt { + struct gendisk *btt_disk; + struct list_head arena_list; + struct dentry *debugfs_dir; + struct nd_btt *nd_btt; + u64 nlba; + long long unsigned int rawsize; + u32 lbasize; + u32 sector_size; + struct nd_region *nd_region; + struct mutex init_lock; + int init_state; + int num_arenas; + struct badblocks *phys_bb; +}; + +struct nd_gen_sb { + char reserved[4088]; + __le64 checksum; +}; + +enum nvdimm_security_bits { + NVDIMM_SECURITY_DISABLED = 0, + NVDIMM_SECURITY_UNLOCKED = 1, + NVDIMM_SECURITY_LOCKED = 2, + NVDIMM_SECURITY_FROZEN = 3, + NVDIMM_SECURITY_OVERWRITE = 4, +}; + +enum nvdimmsec_op_ids { + OP_FREEZE = 0, + OP_DISABLE = 1, + OP_DISABLE_MASTER = 2, + OP_UPDATE = 3, + OP_ERASE = 4, + OP_OVERWRITE = 5, + OP_MASTER_UPDATE = 6, + OP_MASTER_ERASE = 7, +}; + +struct dax_operations { + long int (*direct_access)(struct dax_device *, long unsigned int, long int, enum dax_access_mode, void **, long unsigned int *); + int (*zero_page_range)(struct dax_device *, long unsigned int, size_t); + size_t (*recovery_write)(struct dax_device *, long unsigned int, void *, size_t, struct iov_iter *); +}; + +struct dax_holder_operations; + +struct dax_device { + struct inode inode; + struct cdev cdev; + void *private; + long unsigned int flags; + const struct dax_operations *ops; + void *holder_data; + const struct dax_holder_operations *holder_ops; +}; + +struct dax_holder_operations { + int (*notify_failure)(struct dax_device *, u64, u64, int); +}; + +enum dax_device_flags { + DAXDEV_ALIVE = 0, + DAXDEV_WRITE_CACHE = 1, + DAXDEV_SYNC = 2, + DAXDEV_NOCACHE = 3, + DAXDEV_NOMC = 4, +}; + +struct dma_fence_ops; + +struct dma_fence { + spinlock_t *lock; + const struct dma_fence_ops *ops; + union { + struct list_head cb_list; + ktime_t timestamp; + struct callback_head rcu; + }; + u64 context; + u64 seqno; + long unsigned int flags; + struct kref refcount; + int error; +}; + +struct dma_fence_ops { + const char * (*get_driver_name)(struct dma_fence *); + const char * (*get_timeline_name)(struct dma_fence *); + bool (*enable_signaling)(struct dma_fence *); + bool (*signaled)(struct dma_fence *); + long int (*wait)(struct dma_fence *, bool, long int); + void (*release)(struct dma_fence *); + void (*set_deadline)(struct dma_fence *, ktime_t); +}; + +enum dma_fence_flag_bits { + DMA_FENCE_FLAG_SEQNO64_BIT = 0, + DMA_FENCE_FLAG_SIGNALED_BIT = 1, + DMA_FENCE_FLAG_TIMESTAMP_BIT = 2, + DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT = 3, + DMA_FENCE_FLAG_USER_BITS = 4, +}; + +struct dma_fence_cb; + +typedef void (*dma_fence_func_t)(struct dma_fence *, struct dma_fence_cb *); + +struct dma_fence_cb { + struct list_head node; + dma_fence_func_t func; +}; + +struct trace_event_raw_dma_fence { + struct trace_entry ent; + u32 __data_loc_driver; + u32 __data_loc_timeline; + unsigned int context; + unsigned int seqno; + char __data[0]; +}; + +struct trace_event_raw_dma_fence_unsignaled { + struct trace_entry ent; + u32 __data_loc_driver; + u32 __data_loc_timeline; + unsigned int context; + unsigned int seqno; + char __data[0]; +}; + +struct trace_event_data_offsets_dma_fence { + u32 driver; + const void *driver_ptr_; + u32 timeline; + const void *timeline_ptr_; +}; + +struct trace_event_data_offsets_dma_fence_unsignaled { + u32 driver; + const void *driver_ptr_; + u32 timeline; + const void *timeline_ptr_; +}; + +typedef void (*btf_trace_dma_fence_emit)(void *, struct dma_fence *); + +typedef void (*btf_trace_dma_fence_init)(void *, struct dma_fence *); + +typedef void (*btf_trace_dma_fence_destroy)(void *, struct dma_fence *); + +typedef void (*btf_trace_dma_fence_enable_signal)(void *, struct dma_fence *); + +typedef void (*btf_trace_dma_fence_signaled)(void *, struct dma_fence *); + +typedef void (*btf_trace_dma_fence_wait_start)(void *, struct dma_fence *); + +typedef void (*btf_trace_dma_fence_wait_end)(void *, struct dma_fence *); + +struct default_wait_cb { + struct dma_fence_cb base; + struct task_struct *task; +}; + +struct dma_fence_unwrap { + struct dma_fence *chain; + struct dma_fence *array; + unsigned int index; +}; + +struct sync_file { + struct file *file; + char user_name[32]; + struct list_head sync_file_list; + wait_queue_head_t wq; + long unsigned int flags; + struct dma_fence *fence; + struct dma_fence_cb cb; +}; + +struct sync_merge_data { + char name[32]; + __s32 fd2; + __s32 fence; + __u32 flags; + __u32 pad; +}; + +struct sync_fence_info { + char obj_name[32]; + char driver_name[32]; + __s32 status; + __u32 flags; + __u64 timestamp_ns; +}; + +struct sync_file_info { + char name[32]; + __s32 status; + __u32 flags; + __u32 num_fences; + __u32 pad; + __u64 sync_fence_info; +}; + +struct sync_set_deadline { + __u64 deadline_ns; + __u64 pad; +}; + +enum access_coordinate_class { + ACCESS_COORDINATE_LOCAL = 0, + ACCESS_COORDINATE_CPU = 1, + ACCESS_COORDINATE_MAX = 2, +}; + +struct cxl_mbox_cmd_rc { + int err; + const char *desc; +}; + +enum poison_cmd_enabled_bits { + CXL_POISON_ENABLED_LIST = 0, + CXL_POISON_ENABLED_INJECT = 1, + CXL_POISON_ENABLED_CLEAR = 2, + CXL_POISON_ENABLED_SCAN_CAPS = 3, + CXL_POISON_ENABLED_SCAN_MEDIA = 4, + CXL_POISON_ENABLED_SCAN_RESULTS = 5, + CXL_POISON_ENABLED_MAX = 6, +}; + +enum security_cmd_enabled_bits { + CXL_SEC_ENABLED_SANITIZE = 0, + CXL_SEC_ENABLED_SECURE_ERASE = 1, + CXL_SEC_ENABLED_GET_SECURITY_STATE = 2, + CXL_SEC_ENABLED_SET_PASSPHRASE = 3, + CXL_SEC_ENABLED_DISABLE_PASSPHRASE = 4, + CXL_SEC_ENABLED_UNLOCK = 5, + CXL_SEC_ENABLED_FREEZE_SECURITY = 6, + CXL_SEC_ENABLED_PASSPHRASE_SECURE_ERASE = 7, + CXL_SEC_ENABLED_MAX = 8, +}; + +enum sam_status { + SAM_STAT_GOOD = 0, + SAM_STAT_CHECK_CONDITION = 2, + SAM_STAT_CONDITION_MET = 4, + SAM_STAT_BUSY = 8, + SAM_STAT_INTERMEDIATE = 16, + SAM_STAT_INTERMEDIATE_CONDITION_MET = 20, + SAM_STAT_RESERVATION_CONFLICT = 24, + SAM_STAT_COMMAND_TERMINATED = 34, + SAM_STAT_TASK_SET_FULL = 40, + SAM_STAT_ACA_ACTIVE = 48, + SAM_STAT_TASK_ABORTED = 64, +}; + +struct scsi_sense_hdr { + u8 response_code; + u8 sense_key; + u8 asc; + u8 ascq; + u8 byte4; + u8 byte5; + u8 byte6; + u8 additional_length; +}; + +enum scsi_host_status { + DID_OK = 0, + DID_NO_CONNECT = 1, + DID_BUS_BUSY = 2, + DID_TIME_OUT = 3, + DID_BAD_TARGET = 4, + DID_ABORT = 5, + DID_PARITY = 6, + DID_ERROR = 7, + DID_RESET = 8, + DID_BAD_INTR = 9, + DID_PASSTHROUGH = 10, + DID_SOFT_ERROR = 11, + DID_IMM_RETRY = 12, + DID_REQUEUE = 13, + DID_TRANSPORT_DISRUPTED = 14, + DID_TRANSPORT_FAILFAST = 15, + DID_TRANSPORT_MARGINAL = 20, +}; + +enum scsi_disposition { + NEEDS_RETRY = 8193, + SUCCESS = 8194, + FAILED = 8195, + QUEUED = 8196, + SOFT_ERROR = 8197, + ADD_TO_MLQUEUE = 8198, + TIMEOUT_ERROR = 8199, + SCSI_RETURN_NOT_HANDLED = 8200, + FAST_IO_FAIL = 8201, +}; + +typedef __u64 blist_flags_t; + +struct scsi_mode_data { + __u32 length; + __u16 block_descriptor_length; + __u8 medium_type; + __u8 device_specific; + __u8 header_length; + __u8 longlba: 1; +}; + +enum scsi_device_state { + SDEV_CREATED = 1, + SDEV_RUNNING = 2, + SDEV_CANCEL = 3, + SDEV_DEL = 4, + SDEV_QUIESCE = 5, + SDEV_OFFLINE = 6, + SDEV_TRANSPORT_OFFLINE = 7, + SDEV_BLOCK = 8, + SDEV_CREATED_BLOCK = 9, +}; + +struct scsi_vpd { + struct callback_head rcu; + int len; + unsigned char data[0]; +}; + +struct Scsi_Host; + +struct scsi_target; + +struct scsi_device_handler; + +struct scsi_device { + struct Scsi_Host *host; + struct request_queue *request_queue; + struct list_head siblings; + struct list_head same_target_siblings; + struct sbitmap budget_map; + atomic_t device_blocked; + atomic_t restarts; + spinlock_t list_lock; + struct list_head starved_entry; + short unsigned int queue_depth; + short unsigned int max_queue_depth; + short unsigned int last_queue_full_depth; + short unsigned int last_queue_full_count; + long unsigned int last_queue_full_time; + long unsigned int queue_ramp_up_period; + long unsigned int last_queue_ramp_up; + unsigned int id; + unsigned int channel; + u64 lun; + unsigned int manufacturer; + unsigned int sector_size; + void *hostdata; + unsigned char type; + char scsi_level; + char inq_periph_qual; + struct mutex inquiry_mutex; + unsigned char inquiry_len; + unsigned char *inquiry; + const char *vendor; + const char *model; + const char *rev; + struct scsi_vpd *vpd_pg0; + struct scsi_vpd *vpd_pg83; + struct scsi_vpd *vpd_pg80; + struct scsi_vpd *vpd_pg89; + struct scsi_vpd *vpd_pgb0; + struct scsi_vpd *vpd_pgb1; + struct scsi_vpd *vpd_pgb2; + struct scsi_vpd *vpd_pgb7; + struct scsi_target *sdev_target; + blist_flags_t sdev_bflags; + unsigned int eh_timeout; + unsigned int manage_system_start_stop: 1; + unsigned int manage_runtime_start_stop: 1; + unsigned int manage_shutdown: 1; + unsigned int force_runtime_start_on_system_start: 1; + unsigned int is_ata: 1; + unsigned int removable: 1; + unsigned int changed: 1; + unsigned int busy: 1; + unsigned int lockable: 1; + unsigned int locked: 1; + unsigned int borken: 1; + unsigned int disconnect: 1; + unsigned int soft_reset: 1; + unsigned int sdtr: 1; + unsigned int wdtr: 1; + unsigned int ppr: 1; + unsigned int tagged_supported: 1; + unsigned int simple_tags: 1; + unsigned int was_reset: 1; + unsigned int expecting_cc_ua: 1; + unsigned int use_10_for_rw: 1; + unsigned int use_10_for_ms: 1; + unsigned int set_dbd_for_ms: 1; + unsigned int read_before_ms: 1; + unsigned int no_report_opcodes: 1; + unsigned int no_write_same: 1; + unsigned int use_16_for_rw: 1; + unsigned int use_16_for_sync: 1; + unsigned int skip_ms_page_8: 1; + unsigned int skip_ms_page_3f: 1; + unsigned int skip_vpd_pages: 1; + unsigned int try_vpd_pages: 1; + unsigned int use_192_bytes_for_3f: 1; + unsigned int no_start_on_add: 1; + unsigned int allow_restart: 1; + unsigned int start_stop_pwr_cond: 1; + unsigned int no_uld_attach: 1; + unsigned int select_no_atn: 1; + unsigned int fix_capacity: 1; + unsigned int guess_capacity: 1; + unsigned int retry_hwerror: 1; + unsigned int last_sector_bug: 1; + unsigned int no_read_disc_info: 1; + unsigned int no_read_capacity_16: 1; + unsigned int try_rc_10_first: 1; + unsigned int security_supported: 1; + unsigned int is_visible: 1; + unsigned int wce_default_on: 1; + unsigned int no_dif: 1; + unsigned int broken_fua: 1; + unsigned int lun_in_cdb: 1; + unsigned int unmap_limit_for_ws: 1; + unsigned int rpm_autosuspend: 1; + unsigned int ignore_media_change: 1; + unsigned int silence_suspend: 1; + unsigned int no_vpd_size: 1; + unsigned int cdl_supported: 1; + unsigned int cdl_enable: 1; + unsigned int queue_stopped; + bool offline_already; + atomic_t ua_new_media_ctr; + atomic_t ua_por_ctr; + atomic_t disk_events_disable_depth; + long unsigned int supported_events[1]; + long unsigned int pending_events[1]; + struct list_head event_list; + struct work_struct event_work; + unsigned int max_device_blocked; + atomic_t iorequest_cnt; + atomic_t iodone_cnt; + atomic_t ioerr_cnt; + atomic_t iotmo_cnt; + struct device sdev_gendev; + struct device sdev_dev; + struct work_struct requeue_work; + struct scsi_device_handler *handler; + void *handler_data; + size_t dma_drain_len; + void *dma_drain_buf; + unsigned int sg_timeout; + unsigned int sg_reserved_size; + struct bsg_device *bsg_dev; + unsigned char access_state; + struct mutex state_mutex; + enum scsi_device_state sdev_state; + struct task_struct *quiesced_by; + long unsigned int sdev_data[0]; +}; + +enum scsi_host_state { + SHOST_CREATED = 1, + SHOST_RUNNING = 2, + SHOST_CANCEL = 3, + SHOST_DEL = 4, + SHOST_RECOVERY = 5, + SHOST_CANCEL_RECOVERY = 6, + SHOST_DEL_RECOVERY = 7, +}; + +struct scsi_host_template; + +struct scsi_transport_template; + +struct Scsi_Host { + struct list_head __devices; + struct list_head __targets; + struct list_head starved_list; + spinlock_t default_lock; + spinlock_t *host_lock; + struct mutex scan_mutex; + struct list_head eh_abort_list; + struct list_head eh_cmd_q; + struct task_struct *ehandler; + struct completion *eh_action; + wait_queue_head_t host_wait; + const struct scsi_host_template *hostt; + struct scsi_transport_template *transportt; + struct kref tagset_refcnt; + struct completion tagset_freed; + struct blk_mq_tag_set tag_set; + atomic_t host_blocked; + unsigned int host_failed; + unsigned int host_eh_scheduled; + unsigned int host_no; + int eh_deadline; + long unsigned int last_reset; + unsigned int max_channel; + unsigned int max_id; + u64 max_lun; + unsigned int unique_id; + short unsigned int max_cmd_len; + int this_id; + int can_queue; + short int cmd_per_lun; + short unsigned int sg_tablesize; + short unsigned int sg_prot_tablesize; + unsigned int max_sectors; + unsigned int opt_sectors; + unsigned int max_segment_size; + unsigned int dma_alignment; + long unsigned int dma_boundary; + long unsigned int virt_boundary_mask; + unsigned int nr_hw_queues; + unsigned int nr_maps; + unsigned int active_mode: 2; + unsigned int host_self_blocked: 1; + unsigned int reverse_ordering: 1; + unsigned int tmf_in_progress: 1; + unsigned int async_scan: 1; + unsigned int eh_noresume: 1; + unsigned int no_write_same: 1; + unsigned int host_tagset: 1; + unsigned int queuecommand_may_block: 1; + unsigned int short_inquiry: 1; + unsigned int no_scsi2_lun_in_cdb: 1; + struct workqueue_struct *work_q; + struct workqueue_struct *tmf_work_q; + unsigned int max_host_blocked; + unsigned int prot_capabilities; + unsigned char prot_guard_type; + long unsigned int base; + long unsigned int io_port; + unsigned char n_io_port; + unsigned char dma_channel; + unsigned int irq; + enum scsi_host_state shost_state; + struct device shost_gendev; + struct device shost_dev; + void *shost_data; + struct device *dma_dev; + int rpm_autosuspend_delay; + long unsigned int hostdata[0]; +}; + +enum scsi_target_state { + STARGET_CREATED = 1, + STARGET_RUNNING = 2, + STARGET_REMOVE = 3, + STARGET_CREATED_REMOVE = 4, + STARGET_DEL = 5, +}; + +struct scsi_target { + struct scsi_device *starget_sdev_user; + struct list_head siblings; + struct list_head devices; + struct device dev; + struct kref reap_ref; + unsigned int channel; + unsigned int id; + unsigned int create: 1; + unsigned int single_lun: 1; + unsigned int pdt_1f_for_no_lun: 1; + unsigned int no_report_luns: 1; + unsigned int expecting_lun_change: 1; + atomic_t target_busy; + atomic_t target_blocked; + unsigned int can_queue; + unsigned int max_target_blocked; + char scsi_level; + enum scsi_target_state state; + void *hostdata; + long unsigned int starget_data[0]; +}; + +struct scsi_failure { + int result; + u8 sense; + u8 asc; + u8 ascq; + s8 allowed; + s8 retries; +}; + +struct scsi_failures { + int total_allowed; + int total_retries; + struct scsi_failure *failure_definitions; +}; + +struct scsi_exec_args { + unsigned char *sense; + unsigned int sense_len; + struct scsi_sense_hdr *sshdr; + blk_mq_req_flags_t req_flags; + int scmd_flags; + int *resid; + struct scsi_failures *failures; +}; + +struct scsi_data_buffer { + struct sg_table table; + unsigned int length; +}; + +enum scsi_cmnd_submitter { + SUBMITTED_BY_BLOCK_LAYER = 0, + SUBMITTED_BY_SCSI_ERROR_HANDLER = 1, + SUBMITTED_BY_SCSI_RESET_IOCTL = 2, +} __attribute__((mode(byte))); + +struct scsi_cmnd { + struct scsi_device *device; + struct list_head eh_entry; + struct delayed_work abort_work; + struct callback_head rcu; + int eh_eflags; + int budget_token; + long unsigned int jiffies_at_alloc; + int retries; + int allowed; + unsigned char prot_op; + unsigned char prot_type; + unsigned char prot_flags; + enum scsi_cmnd_submitter submitter; + short unsigned int cmd_len; + enum dma_data_direction sc_data_direction; + unsigned char cmnd[32]; + struct scsi_data_buffer sdb; + struct scsi_data_buffer *prot_sdb; + unsigned int underflow; + unsigned int transfersize; + unsigned int resid_len; + unsigned int sense_len; + unsigned char *sense_buffer; + int flags; + long unsigned int state; + unsigned int extra_len; + unsigned char *host_scribble; + int result; +}; + +enum scsi_prot_operations { + SCSI_PROT_NORMAL = 0, + SCSI_PROT_READ_INSERT = 1, + SCSI_PROT_WRITE_STRIP = 2, + SCSI_PROT_READ_STRIP = 3, + SCSI_PROT_WRITE_INSERT = 4, + SCSI_PROT_READ_PASS = 5, + SCSI_PROT_WRITE_PASS = 6, +}; + +struct scsi_driver { + struct device_driver gendrv; + int (*resume)(struct device *); + void (*rescan)(struct device *); + blk_status_t (*init_command)(struct scsi_cmnd *); + void (*uninit_command)(struct scsi_cmnd *); + int (*done)(struct scsi_cmnd *); + int (*eh_action)(struct scsi_cmnd *, int); + void (*eh_reset)(struct scsi_cmnd *); +}; + +enum scsi_timeout_action { + SCSI_EH_DONE = 0, + SCSI_EH_RESET_TIMER = 1, + SCSI_EH_NOT_HANDLED = 2, +}; + +struct scsi_host_template { + unsigned int cmd_size; + int (*queuecommand)(struct Scsi_Host *, struct scsi_cmnd *); + void (*commit_rqs)(struct Scsi_Host *, u16); + struct module *module; + const char *name; + const char * (*info)(struct Scsi_Host *); + int (*ioctl)(struct scsi_device *, unsigned int, void *); + int (*compat_ioctl)(struct scsi_device *, unsigned int, void *); + int (*init_cmd_priv)(struct Scsi_Host *, struct scsi_cmnd *); + int (*exit_cmd_priv)(struct Scsi_Host *, struct scsi_cmnd *); + int (*eh_abort_handler)(struct scsi_cmnd *); + int (*eh_device_reset_handler)(struct scsi_cmnd *); + int (*eh_target_reset_handler)(struct scsi_cmnd *); + int (*eh_bus_reset_handler)(struct scsi_cmnd *); + int (*eh_host_reset_handler)(struct scsi_cmnd *); + int (*sdev_init)(struct scsi_device *); + int (*sdev_configure)(struct scsi_device *, struct queue_limits *); + void (*sdev_destroy)(struct scsi_device *); + int (*target_alloc)(struct scsi_target *); + void (*target_destroy)(struct scsi_target *); + int (*scan_finished)(struct Scsi_Host *, long unsigned int); + void (*scan_start)(struct Scsi_Host *); + int (*change_queue_depth)(struct scsi_device *, int); + void (*map_queues)(struct Scsi_Host *); + int (*mq_poll)(struct Scsi_Host *, unsigned int); + bool (*dma_need_drain)(struct request *); + int (*bios_param)(struct scsi_device *, struct block_device *, sector_t, int *); + void (*unlock_native_capacity)(struct scsi_device *); + int (*show_info)(struct seq_file *, struct Scsi_Host *); + int (*write_info)(struct Scsi_Host *, char *, int); + enum scsi_timeout_action (*eh_timed_out)(struct scsi_cmnd *); + bool (*eh_should_retry_cmd)(struct scsi_cmnd *); + int (*host_reset)(struct Scsi_Host *, int); + const char *proc_name; + int can_queue; + int this_id; + short unsigned int sg_tablesize; + short unsigned int sg_prot_tablesize; + unsigned int max_sectors; + unsigned int max_segment_size; + unsigned int dma_alignment; + long unsigned int dma_boundary; + long unsigned int virt_boundary_mask; + short int cmd_per_lun; + bool tag_alloc_policy_rr: 1; + unsigned int track_queue_depth: 1; + unsigned int supported_mode: 2; + unsigned int emulated: 1; + unsigned int skip_settle_delay: 1; + unsigned int no_write_same: 1; + unsigned int host_tagset: 1; + unsigned int queuecommand_may_block: 1; + unsigned int max_host_blocked; + const struct attribute_group **shost_groups; + const struct attribute_group **sdev_groups; + u64 vendor_id; +}; + +struct trace_event_raw_scsi_dispatch_cmd_start { + struct trace_entry ent; + unsigned int host_no; + unsigned int channel; + unsigned int id; + unsigned int lun; + unsigned int opcode; + unsigned int cmd_len; + int driver_tag; + int scheduler_tag; + unsigned int data_sglen; + unsigned int prot_sglen; + unsigned char prot_op; + u32 __data_loc_cmnd; + char __data[0]; +}; + +struct trace_event_raw_scsi_dispatch_cmd_error { + struct trace_entry ent; + unsigned int host_no; + unsigned int channel; + unsigned int id; + unsigned int lun; + int rtn; + unsigned int opcode; + unsigned int cmd_len; + int driver_tag; + int scheduler_tag; + unsigned int data_sglen; + unsigned int prot_sglen; + unsigned char prot_op; + u32 __data_loc_cmnd; + char __data[0]; +}; + +struct trace_event_raw_scsi_cmd_done_timeout_template { + struct trace_entry ent; + unsigned int host_no; + unsigned int channel; + unsigned int id; + unsigned int lun; + int result; + unsigned int opcode; + unsigned int cmd_len; + int driver_tag; + int scheduler_tag; + unsigned int data_sglen; + unsigned int prot_sglen; + unsigned char prot_op; + u32 __data_loc_cmnd; + u8 sense_key; + u8 asc; + u8 ascq; + char __data[0]; +}; + +struct trace_event_raw_scsi_eh_wakeup { + struct trace_entry ent; + unsigned int host_no; + char __data[0]; +}; + +struct trace_event_data_offsets_scsi_dispatch_cmd_start { + u32 cmnd; + const void *cmnd_ptr_; +}; + +struct trace_event_data_offsets_scsi_dispatch_cmd_error { + u32 cmnd; + const void *cmnd_ptr_; +}; + +struct trace_event_data_offsets_scsi_cmd_done_timeout_template { + u32 cmnd; + const void *cmnd_ptr_; +}; + +struct trace_event_data_offsets_scsi_eh_wakeup {}; + +typedef void (*btf_trace_scsi_dispatch_cmd_start)(void *, struct scsi_cmnd *); + +typedef void (*btf_trace_scsi_dispatch_cmd_error)(void *, struct scsi_cmnd *, int); + +typedef void (*btf_trace_scsi_dispatch_cmd_done)(void *, struct scsi_cmnd *); + +typedef void (*btf_trace_scsi_dispatch_cmd_timeout)(void *, struct scsi_cmnd *); + +typedef void (*btf_trace_scsi_eh_wakeup)(void *, struct Scsi_Host *); + +enum scsi_vpd_parameters { + SCSI_VPD_HEADER_SIZE = 4, + SCSI_VPD_LIST_SIZE = 36, +}; + +struct scsi_event { + enum scsi_device_event evt_type; + struct list_head node; +}; + +typedef void (*activate_complete)(void *, int); + +struct scsi_device_handler { + struct list_head list; + struct module *module; + const char *name; + enum scsi_disposition (*check_sense)(struct scsi_device *, struct scsi_sense_hdr *); + int (*attach)(struct scsi_device *); + void (*detach)(struct scsi_device *); + int (*activate)(struct scsi_device *, activate_complete, void *); + blk_status_t (*prep_fn)(struct scsi_device *, struct request *); + int (*set_params)(struct scsi_device *, const char *); + void (*rescan)(struct scsi_device *); +}; + +struct scsi_transport_template { + struct transport_container host_attrs; + struct transport_container target_attrs; + struct transport_container device_attrs; + int (*user_scan)(struct Scsi_Host *, uint, uint, u64); + int device_size; + int device_private_offset; + int target_size; + int target_private_offset; + int host_size; + unsigned int create_work_queue: 1; + void (*eh_strategy_handler)(struct Scsi_Host *); +}; + +enum scsi_host_prot_capabilities { + SHOST_DIF_TYPE1_PROTECTION = 1, + SHOST_DIF_TYPE2_PROTECTION = 2, + SHOST_DIF_TYPE3_PROTECTION = 4, + SHOST_DIX_TYPE0_PROTECTION = 8, + SHOST_DIX_TYPE1_PROTECTION = 16, + SHOST_DIX_TYPE2_PROTECTION = 32, + SHOST_DIX_TYPE3_PROTECTION = 64, +}; + +enum scsi_ml_status { + SCSIML_STAT_OK = 0, + SCSIML_STAT_RESV_CONFLICT = 1, + SCSIML_STAT_NOSPC = 2, + SCSIML_STAT_MED_ERROR = 3, + SCSIML_STAT_TGT_FAILURE = 4, + SCSIML_STAT_DL_TIMEOUT = 5, +}; + +enum { + ACTION_FAIL = 0, + ACTION_REPREP = 1, + ACTION_DELAYED_REPREP = 2, + ACTION_RETRY = 3, + ACTION_DELAYED_RETRY = 4, +}; + +enum scsi_devinfo_key { + SCSI_DEVINFO_GLOBAL = 0, + SCSI_DEVINFO_SPI = 1, +}; + +struct scsi_dev_info_list { + struct list_head dev_info_list; + char vendor[8]; + char model[16]; + blist_flags_t flags; + unsigned int compatible; +}; + +struct scsi_dev_info_list_table { + struct list_head node; + struct list_head scsi_dev_info_list; + const char *name; + int key; +}; + +struct double_list { + struct list_head *top; + struct list_head *bottom; +}; + +struct scsi_lun { + __u8 scsi_lun[8]; +}; + +enum scsi_pr_type { + SCSI_PR_WRITE_EXCLUSIVE = 1, + SCSI_PR_EXCLUSIVE_ACCESS = 3, + SCSI_PR_WRITE_EXCLUSIVE_REG_ONLY = 5, + SCSI_PR_EXCLUSIVE_ACCESS_REG_ONLY = 6, + SCSI_PR_WRITE_EXCLUSIVE_ALL_REGS = 7, + SCSI_PR_EXCLUSIVE_ACCESS_ALL_REGS = 8, +}; + +enum scsi_scan_mode { + SCSI_SCAN_INITIAL = 0, + SCSI_SCAN_RESCAN = 1, + SCSI_SCAN_MANUAL = 2, +}; + +struct scsi_nl_hdr { + __u8 version; + __u8 transport; + __u16 magic; + __u16 msgtype; + __u16 msglen; +}; + +enum fc_port_type { + FC_PORTTYPE_UNKNOWN = 0, + FC_PORTTYPE_OTHER = 1, + FC_PORTTYPE_NOTPRESENT = 2, + FC_PORTTYPE_NPORT = 3, + FC_PORTTYPE_NLPORT = 4, + FC_PORTTYPE_LPORT = 5, + FC_PORTTYPE_PTP = 6, + FC_PORTTYPE_NPIV = 7, +}; + +enum fc_port_state { + FC_PORTSTATE_UNKNOWN = 0, + FC_PORTSTATE_NOTPRESENT = 1, + FC_PORTSTATE_ONLINE = 2, + FC_PORTSTATE_OFFLINE = 3, + FC_PORTSTATE_BLOCKED = 4, + FC_PORTSTATE_BYPASSED = 5, + FC_PORTSTATE_DIAGNOSTICS = 6, + FC_PORTSTATE_LINKDOWN = 7, + FC_PORTSTATE_ERROR = 8, + FC_PORTSTATE_LOOPBACK = 9, + FC_PORTSTATE_DELETED = 10, + FC_PORTSTATE_MARGINAL = 11, +}; + +enum fc_vport_state { + FC_VPORT_UNKNOWN = 0, + FC_VPORT_ACTIVE = 1, + FC_VPORT_DISABLED = 2, + FC_VPORT_LINKDOWN = 3, + FC_VPORT_INITIALIZING = 4, + FC_VPORT_NO_FABRIC_SUPP = 5, + FC_VPORT_NO_FABRIC_RSCS = 6, + FC_VPORT_FABRIC_LOGOUT = 7, + FC_VPORT_FABRIC_REJ_WWN = 8, + FC_VPORT_FAILED = 9, +}; + +enum fc_tgtid_binding_type { + FC_TGTID_BIND_NONE = 0, + FC_TGTID_BIND_BY_WWPN = 1, + FC_TGTID_BIND_BY_WWNN = 2, + FC_TGTID_BIND_BY_ID = 3, +}; + +struct fc_vport_identifiers { + u64 node_name; + u64 port_name; + u32 roles; + bool disable; + enum fc_port_type vport_type; + char symbolic_name[64]; +}; + +struct fc_vport { + enum fc_vport_state vport_state; + enum fc_vport_state vport_last_state; + u64 node_name; + u64 port_name; + u32 roles; + u32 vport_id; + enum fc_port_type vport_type; + char symbolic_name[64]; + void *dd_data; + struct Scsi_Host *shost; + unsigned int channel; + u32 number; + u8 flags; + struct list_head peers; + struct device dev; + struct work_struct vport_delete_work; +}; + +struct fc_rport_identifiers { + u64 node_name; + u64 port_name; + u32 port_id; + u32 roles; +}; + +struct fc_fpin_stats { + u64 dn; + u64 dn_unknown; + u64 dn_timeout; + u64 dn_unable_to_route; + u64 dn_device_specific; + u64 li; + u64 li_failure_unknown; + u64 li_link_failure_count; + u64 li_loss_of_sync_count; + u64 li_loss_of_signals_count; + u64 li_prim_seq_err_count; + u64 li_invalid_tx_word_count; + u64 li_invalid_crc_count; + u64 li_device_specific; + u64 cn; + u64 cn_clear; + u64 cn_lost_credit; + u64 cn_credit_stall; + u64 cn_oversubscription; + u64 cn_device_specific; +}; + +struct fc_rport { + u32 maxframe_size; + u32 supported_classes; + u32 dev_loss_tmo; + struct fc_fpin_stats fpin_stats; + u64 node_name; + u64 port_name; + u32 port_id; + u32 roles; + enum fc_port_state port_state; + u32 scsi_target_id; + u32 fast_io_fail_tmo; + void *dd_data; + unsigned int channel; + u32 number; + u8 flags; + struct list_head peers; + struct device dev; + struct delayed_work dev_loss_work; + struct work_struct scan_work; + struct delayed_work fail_io_work; + struct work_struct stgt_delete_work; + struct work_struct rport_delete_work; + struct request_queue *rqst_q; + struct workqueue_struct *devloss_work_q; +}; + +struct fc_starget_attrs { + u64 node_name; + u64 port_name; + u32 port_id; +}; + +struct fc_host_statistics { + u64 seconds_since_last_reset; + u64 tx_frames; + u64 tx_words; + u64 rx_frames; + u64 rx_words; + u64 lip_count; + u64 nos_count; + u64 error_frames; + u64 dumped_frames; + u64 link_failure_count; + u64 loss_of_sync_count; + u64 loss_of_signal_count; + u64 prim_seq_protocol_err_count; + u64 invalid_tx_word_count; + u64 invalid_crc_count; + u64 fcp_input_requests; + u64 fcp_output_requests; + u64 fcp_control_requests; + u64 fcp_input_megabytes; + u64 fcp_output_megabytes; + u64 fcp_packet_alloc_failures; + u64 fcp_packet_aborts; + u64 fcp_frame_alloc_failures; + u64 fc_no_free_exch; + u64 fc_no_free_exch_xid; + u64 fc_xid_not_found; + u64 fc_xid_busy; + u64 fc_seq_not_found; + u64 fc_non_bls_resp; + u64 cn_sig_warn; + u64 cn_sig_alarm; +}; + +enum fc_host_event_code { + FCH_EVT_LIP = 1, + FCH_EVT_LINKUP = 2, + FCH_EVT_LINKDOWN = 3, + FCH_EVT_LIPRESET = 4, + FCH_EVT_RSCN = 5, + FCH_EVT_ADAPTER_CHANGE = 259, + FCH_EVT_PORT_UNKNOWN = 512, + FCH_EVT_PORT_OFFLINE = 513, + FCH_EVT_PORT_ONLINE = 514, + FCH_EVT_PORT_FABRIC = 516, + FCH_EVT_LINK_UNKNOWN = 1280, + FCH_EVT_LINK_FPIN = 1281, + FCH_EVT_LINK_FPIN_ACK = 1282, + FCH_EVT_VENDOR_UNIQUE = 65535, +}; + +struct fc_host_attrs { + u64 node_name; + u64 port_name; + u64 permanent_port_name; + u32 supported_classes; + u8 supported_fc4s[32]; + u32 supported_speeds; + u32 maxframe_size; + u16 max_npiv_vports; + u32 max_ct_payload; + u32 num_ports; + u32 num_discovered_ports; + u32 bootbios_state; + char serial_number[64]; + char manufacturer[64]; + char model[256]; + char model_description[256]; + char hardware_version[64]; + char driver_version[64]; + char firmware_version[64]; + char optionrom_version[64]; + char vendor_identifier[8]; + char bootbios_version[256]; + u32 port_id; + enum fc_port_type port_type; + enum fc_port_state port_state; + u8 active_fc4s[32]; + u32 speed; + u64 fabric_name; + char symbolic_name[256]; + char system_hostname[256]; + u32 dev_loss_tmo; + struct fc_fpin_stats fpin_stats; + enum fc_tgtid_binding_type tgtid_bind_type; + struct list_head rports; + struct list_head rport_bindings; + struct list_head vports; + u32 next_rport_number; + u32 next_target_id; + u32 next_vport_number; + u16 npiv_vports_inuse; + struct workqueue_struct *work_q; + struct request_queue *rqst_q; + u8 fdmi_version; +}; + +struct fc_function_template { + void (*get_rport_dev_loss_tmo)(struct fc_rport *); + void (*set_rport_dev_loss_tmo)(struct fc_rport *, u32); + void (*get_starget_node_name)(struct scsi_target *); + void (*get_starget_port_name)(struct scsi_target *); + void (*get_starget_port_id)(struct scsi_target *); + void (*get_host_port_id)(struct Scsi_Host *); + void (*get_host_port_type)(struct Scsi_Host *); + void (*get_host_port_state)(struct Scsi_Host *); + void (*get_host_active_fc4s)(struct Scsi_Host *); + void (*get_host_speed)(struct Scsi_Host *); + void (*get_host_fabric_name)(struct Scsi_Host *); + void (*get_host_symbolic_name)(struct Scsi_Host *); + void (*set_host_system_hostname)(struct Scsi_Host *); + struct fc_host_statistics * (*get_fc_host_stats)(struct Scsi_Host *); + void (*reset_fc_host_stats)(struct Scsi_Host *); + int (*issue_fc_host_lip)(struct Scsi_Host *); + void (*dev_loss_tmo_callbk)(struct fc_rport *); + void (*terminate_rport_io)(struct fc_rport *); + void (*set_vport_symbolic_name)(struct fc_vport *); + int (*vport_create)(struct fc_vport *, bool); + int (*vport_disable)(struct fc_vport *, bool); + int (*vport_delete)(struct fc_vport *); + u32 max_bsg_segments; + int (*bsg_request)(struct bsg_job *); + int (*bsg_timeout)(struct bsg_job *); + u32 dd_fcrport_size; + u32 dd_fcvport_size; + u32 dd_bsg_size; + long unsigned int show_rport_maxframe_size: 1; + long unsigned int show_rport_supported_classes: 1; + long unsigned int show_rport_dev_loss_tmo: 1; + long unsigned int show_starget_node_name: 1; + long unsigned int show_starget_port_name: 1; + long unsigned int show_starget_port_id: 1; + long unsigned int show_host_node_name: 1; + long unsigned int show_host_port_name: 1; + long unsigned int show_host_permanent_port_name: 1; + long unsigned int show_host_supported_classes: 1; + long unsigned int show_host_supported_fc4s: 1; + long unsigned int show_host_supported_speeds: 1; + long unsigned int show_host_maxframe_size: 1; + long unsigned int show_host_serial_number: 1; + long unsigned int show_host_manufacturer: 1; + long unsigned int show_host_model: 1; + long unsigned int show_host_model_description: 1; + long unsigned int show_host_hardware_version: 1; + long unsigned int show_host_driver_version: 1; + long unsigned int show_host_firmware_version: 1; + long unsigned int show_host_optionrom_version: 1; + long unsigned int show_host_port_id: 1; + long unsigned int show_host_port_type: 1; + long unsigned int show_host_port_state: 1; + long unsigned int show_host_active_fc4s: 1; + long unsigned int show_host_speed: 1; + long unsigned int show_host_fabric_name: 1; + long unsigned int show_host_symbolic_name: 1; + long unsigned int show_host_system_hostname: 1; + long unsigned int disable_target_scan: 1; +}; + +struct fc_nl_event { + struct scsi_nl_hdr snlh; + __u64 seconds; + __u64 vendor_id; + __u16 host_no; + __u16 event_datalen; + __u32 event_num; + __u32 event_code; + union { + __u32 event_data; + struct { + struct {} __empty_event_data_flex; + __u8 event_data_flex[0]; + }; + }; +}; + +struct fc_bsg_host_add_rport { + __u8 reserved; + __u8 port_id[3]; +}; + +struct fc_bsg_host_del_rport { + __u8 reserved; + __u8 port_id[3]; +}; + +struct fc_bsg_host_els { + __u8 command_code; + __u8 port_id[3]; +}; + +struct fc_bsg_ctels_reply { + __u32 status; + struct { + __u8 action; + __u8 reason_code; + __u8 reason_explanation; + __u8 vendor_unique; + } rjt_data; +}; + +struct fc_bsg_host_ct { + __u8 reserved; + __u8 port_id[3]; + __u32 preamble_word0; + __u32 preamble_word1; + __u32 preamble_word2; +}; + +struct fc_bsg_host_vendor { + __u64 vendor_id; + __u32 vendor_cmd[0]; +}; + +struct fc_bsg_host_vendor_reply { + struct { + struct {} __empty_vendor_rsp; + __u32 vendor_rsp[0]; + }; +}; + +struct fc_bsg_rport_els { + __u8 els_code; +}; + +struct fc_bsg_rport_ct { + __u32 preamble_word0; + __u32 preamble_word1; + __u32 preamble_word2; +}; + +struct fc_bsg_request { + __u32 msgcode; + union { + struct fc_bsg_host_add_rport h_addrport; + struct fc_bsg_host_del_rport h_delrport; + struct fc_bsg_host_els h_els; + struct fc_bsg_host_ct h_ct; + struct fc_bsg_host_vendor h_vendor; + struct fc_bsg_rport_els r_els; + struct fc_bsg_rport_ct r_ct; + } rqst_data; +} __attribute__((packed)); + +struct fc_bsg_reply { + __u32 result; + __u32 reply_payload_rcv_len; + union { + struct fc_bsg_host_vendor_reply vendor_reply; + struct fc_bsg_ctels_reply ctels_reply; + } reply_data; +}; + +enum fc_ls_tlv_dtag { + ELS_DTAG_LS_REQ_INFO = 1, + ELS_DTAG_LNK_FAULT_CAP = 65549, + ELS_DTAG_CG_SIGNAL_CAP = 65551, + ELS_DTAG_LNK_INTEGRITY = 131073, + ELS_DTAG_DELIVERY = 131074, + ELS_DTAG_PEER_CONGEST = 131075, + ELS_DTAG_CONGESTION = 131076, + ELS_DTAG_FPIN_REGISTER = 196609, +}; + +struct fc_tlv_desc { + __be32 desc_tag; + __be32 desc_len; + __u8 desc_value[0]; +}; + +enum fc_fpin_li_event_types { + FPIN_LI_UNKNOWN = 0, + FPIN_LI_LINK_FAILURE = 1, + FPIN_LI_LOSS_OF_SYNC = 2, + FPIN_LI_LOSS_OF_SIG = 3, + FPIN_LI_PRIM_SEQ_ERR = 4, + FPIN_LI_INVALID_TX_WD = 5, + FPIN_LI_INVALID_CRC = 6, + FPIN_LI_DEVICE_SPEC = 15, +}; + +enum fc_fpin_deli_event_types { + FPIN_DELI_UNKNOWN = 0, + FPIN_DELI_TIMEOUT = 1, + FPIN_DELI_UNABLE_TO_ROUTE = 2, + FPIN_DELI_DEVICE_SPEC = 15, +}; + +enum fc_fpin_congn_event_types { + FPIN_CONGN_CLEAR = 0, + FPIN_CONGN_LOST_CREDIT = 1, + FPIN_CONGN_CREDIT_STALL = 2, + FPIN_CONGN_OVERSUBSCRIPTION = 3, + FPIN_CONGN_DEVICE_SPEC = 15, +}; + +struct fc_fn_li_desc { + __be32 desc_tag; + __be32 desc_len; + __be64 detecting_wwpn; + __be64 attached_wwpn; + __be16 event_type; + __be16 event_modifier; + __be32 event_threshold; + __be32 event_count; + __be32 pname_count; + __be64 pname_list[0]; +}; + +struct fc_fn_deli_desc { + __be32 desc_tag; + __be32 desc_len; + __be64 detecting_wwpn; + __be64 attached_wwpn; + __be32 deli_reason_code; +}; + +struct fc_fn_peer_congn_desc { + __be32 desc_tag; + __be32 desc_len; + __be64 detecting_wwpn; + __be64 attached_wwpn; + __be16 event_type; + __be16 event_modifier; + __be32 event_period; + __be32 pname_count; + __be64 pname_list[0]; +}; + +struct fc_fn_congn_desc { + __be32 desc_tag; + __be32 desc_len; + __be16 event_type; + __be16 event_modifier; + __be32 event_period; + __u8 severity; + __u8 resv[3]; +}; + +struct fc_els_fpin { + __u8 fpin_cmd; + __u8 fpin_zero[3]; + __be32 desc_len; + struct fc_tlv_desc fpin_desc[0]; +}; + +struct fc_internal { + struct scsi_transport_template t; + struct fc_function_template *f; + struct device_attribute private_starget_attrs[3]; + struct device_attribute *starget_attrs[4]; + struct device_attribute private_host_attrs[29]; + struct device_attribute *host_attrs[30]; + struct transport_container rport_attr_cont; + struct device_attribute private_rport_attrs[10]; + struct device_attribute *rport_attrs[11]; + struct transport_container vport_attr_cont; + struct device_attribute private_vport_attrs[9]; + struct device_attribute *vport_attrs[10]; +}; + +enum zbc_zone_type { + ZBC_ZONE_TYPE_CONV = 1, + ZBC_ZONE_TYPE_SEQWRITE_REQ = 2, + ZBC_ZONE_TYPE_SEQWRITE_PREF = 3, + ZBC_ZONE_TYPE_SEQ_OR_BEFORE_REQ = 4, + ZBC_ZONE_TYPE_GAP = 5, +}; + +enum zbc_zone_cond { + ZBC_ZONE_COND_NO_WP = 0, + ZBC_ZONE_COND_EMPTY = 1, + ZBC_ZONE_COND_IMP_OPEN = 2, + ZBC_ZONE_COND_EXP_OPEN = 3, + ZBC_ZONE_COND_CLOSED = 4, + ZBC_ZONE_COND_READONLY = 13, + ZBC_ZONE_COND_FULL = 14, + ZBC_ZONE_COND_OFFLINE = 15, +}; + +enum zbc_zone_alignment_method { + ZBC_CONSTANT_ZONE_LENGTH = 1, + ZBC_CONSTANT_ZONE_START_OFFSET = 8, +}; + +struct zoned_disk_info { + u32 nr_zones; + u32 zone_blocks; +}; + +struct opal_dev; + +struct scsi_disk { + struct scsi_device *device; + struct device disk_dev; + struct gendisk *disk; + struct opal_dev *opal_dev; + struct zoned_disk_info early_zone_info; + struct zoned_disk_info zone_info; + u32 zones_optimal_open; + u32 zones_optimal_nonseq; + u32 zones_max_open; + u32 zone_starting_lba_gran; + atomic_t openers; + sector_t capacity; + int max_retries; + u32 min_xfer_blocks; + u32 max_xfer_blocks; + u32 opt_xfer_blocks; + u32 max_ws_blocks; + u32 max_unmap_blocks; + u32 unmap_granularity; + u32 unmap_alignment; + u32 max_atomic; + u32 atomic_alignment; + u32 atomic_granularity; + u32 max_atomic_with_boundary; + u32 max_atomic_boundary; + u32 index; + unsigned int physical_block_size; + unsigned int max_medium_access_timeouts; + unsigned int medium_access_timed_out; + u16 permanent_stream_count; + u8 media_present; + u8 write_prot; + u8 protection_type; + u8 provisioning_mode; + u8 zeroing_mode; + u8 nr_actuators; + bool suspended; + unsigned int ATO: 1; + unsigned int cache_override: 1; + unsigned int WCE: 1; + unsigned int RCD: 1; + unsigned int DPOFUA: 1; + unsigned int first_scan: 1; + unsigned int lbpme: 1; + unsigned int lbprz: 1; + unsigned int lbpu: 1; + unsigned int lbpws: 1; + unsigned int lbpws10: 1; + unsigned int lbpvpd: 1; + unsigned int ws10: 1; + unsigned int ws16: 1; + unsigned int rc_basis: 2; + unsigned int zoned: 2; + unsigned int urswrz: 1; + unsigned int security: 1; + unsigned int ignore_medium_access_errors: 1; + unsigned int rscs: 1; + unsigned int use_atomic_write_boundary: 1; +}; + +struct trace_event_raw_scsi_prepare_zone_append { + struct trace_entry ent; + unsigned int host_no; + unsigned int channel; + unsigned int id; + unsigned int lun; + sector_t lba; + unsigned int wp_offset; + char __data[0]; +}; + +struct trace_event_raw_scsi_zone_wp_update { + struct trace_entry ent; + unsigned int host_no; + unsigned int channel; + unsigned int id; + unsigned int lun; + sector_t rq_sector; + unsigned int wp_offset; + unsigned int good_bytes; + char __data[0]; +}; + +struct trace_event_data_offsets_scsi_prepare_zone_append {}; + +struct trace_event_data_offsets_scsi_zone_wp_update {}; + +typedef void (*btf_trace_scsi_prepare_zone_append)(void *, struct scsi_cmnd *, sector_t, unsigned int); + +typedef void (*btf_trace_scsi_zone_wp_update)(void *, struct scsi_cmnd *, sector_t, unsigned int, unsigned int); + +enum { + GENHD_FL_REMOVABLE = 1, + GENHD_FL_HIDDEN = 2, + GENHD_FL_NO_PART = 4, +}; + +struct hd_geometry { + unsigned char heads; + unsigned char sectors; + short unsigned int cylinders; + long unsigned int start; +}; + +struct pr_keys { + u32 generation; + u32 num_keys; + u64 keys[0]; +}; + +struct pr_held_reservation { + u64 key; + u32 generation; + enum pr_type type; +}; + +enum nvme_subsys_type { + NVME_NQN_DISC = 1, + NVME_NQN_NVME = 2, + NVME_NQN_CURR = 3, +}; + +enum nvme_ctrl_type { + NVME_CTRL_IO = 1, + NVME_CTRL_DISC = 2, + NVME_CTRL_ADMIN = 3, +}; + +enum nvme_dctype { + NVME_DCTYPE_NOT_REPORTED = 0, + NVME_DCTYPE_DDC = 1, + NVME_DCTYPE_CDC = 2, +}; + +enum { + NVME_REG_CAP = 0, + NVME_REG_VS = 8, + NVME_REG_INTMS = 12, + NVME_REG_INTMC = 16, + NVME_REG_CC = 20, + NVME_REG_CSTS = 28, + NVME_REG_NSSR = 32, + NVME_REG_AQA = 36, + NVME_REG_ASQ = 40, + NVME_REG_ACQ = 48, + NVME_REG_CMBLOC = 56, + NVME_REG_CMBSZ = 60, + NVME_REG_BPINFO = 64, + NVME_REG_BPRSEL = 68, + NVME_REG_BPMBL = 72, + NVME_REG_CMBMSC = 80, + NVME_REG_CRTO = 104, + NVME_REG_PMRCAP = 3584, + NVME_REG_PMRCTL = 3588, + NVME_REG_PMRSTS = 3592, + NVME_REG_PMREBS = 3596, + NVME_REG_PMRSWTP = 3600, + NVME_REG_DBS = 4096, +}; + +enum { + NVME_CC_ENABLE = 1, + NVME_CC_EN_SHIFT = 0, + NVME_CC_CSS_SHIFT = 4, + NVME_CC_CSS_MASK = 112, + NVME_CC_CSS_NVM = 0, + NVME_CC_CSS_CSI = 96, + NVME_CC_MPS_SHIFT = 7, + NVME_CC_MPS_MASK = 1920, + NVME_CC_AMS_SHIFT = 11, + NVME_CC_AMS_MASK = 14336, + NVME_CC_AMS_RR = 0, + NVME_CC_AMS_WRRU = 2048, + NVME_CC_AMS_VS = 14336, + NVME_CC_SHN_SHIFT = 14, + NVME_CC_SHN_MASK = 49152, + NVME_CC_SHN_NONE = 0, + NVME_CC_SHN_NORMAL = 16384, + NVME_CC_SHN_ABRUPT = 32768, + NVME_CC_IOSQES_SHIFT = 16, + NVME_CC_IOSQES_MASK = 983040, + NVME_CC_IOSQES = 393216, + NVME_CC_IOCQES_SHIFT = 20, + NVME_CC_IOCQES_MASK = 15728640, + NVME_CC_IOCQES = 4194304, + NVME_CC_CRIME = 16777216, +}; + +enum { + NVME_CSTS_RDY = 1, + NVME_CSTS_CFS = 2, + NVME_CSTS_NSSRO = 16, + NVME_CSTS_PP = 32, + NVME_CSTS_SHST_NORMAL = 0, + NVME_CSTS_SHST_OCCUR = 4, + NVME_CSTS_SHST_CMPLT = 8, + NVME_CSTS_SHST_MASK = 12, +}; + +enum { + NVME_CAP_CSS_NVM = 1, + NVME_CAP_CSS_CSI = 64, +}; + +enum { + NVME_CAP_CRMS_CRWMS = 576460752303423488ULL, + NVME_CAP_CRMS_CRIMS = 1152921504606846976ULL, +}; + +struct nvme_id_power_state { + __le16 max_power; + __u8 rsvd2; + __u8 flags; + __le32 entry_lat; + __le32 exit_lat; + __u8 read_tput; + __u8 read_lat; + __u8 write_tput; + __u8 write_lat; + __le16 idle_power; + __u8 idle_scale; + __u8 rsvd19; + __le16 active_power; + __u8 active_work_scale; + __u8 rsvd23[9]; +}; + +enum { + NVME_PS_FLAGS_MAX_POWER_SCALE = 1, + NVME_PS_FLAGS_NON_OP_STATE = 2, +}; + +enum nvme_ctrl_attr { + NVME_CTRL_ATTR_HID_128_BIT = 1, + NVME_CTRL_ATTR_TBKAS = 64, + NVME_CTRL_ATTR_ELBAS = 32768, + NVME_CTRL_ATTR_RHII = 262144, + NVME_CTRL_ATTR_FDPS = 524288, +}; + +struct nvme_id_ctrl { + __le16 vid; + __le16 ssvid; + char sn[20]; + char mn[40]; + char fr[8]; + __u8 rab; + __u8 ieee[3]; + __u8 cmic; + __u8 mdts; + __le16 cntlid; + __le32 ver; + __le32 rtd3r; + __le32 rtd3e; + __le32 oaes; + __le32 ctratt; + __u8 rsvd100[11]; + __u8 cntrltype; + __u8 fguid[16]; + __le16 crdt1; + __le16 crdt2; + __le16 crdt3; + __u8 rsvd134[122]; + __le16 oacs; + __u8 acl; + __u8 aerl; + __u8 frmw; + __u8 lpa; + __u8 elpe; + __u8 npss; + __u8 avscc; + __u8 apsta; + __le16 wctemp; + __le16 cctemp; + __le16 mtfa; + __le32 hmpre; + __le32 hmmin; + __u8 tnvmcap[16]; + __u8 unvmcap[16]; + __le32 rpmbs; + __le16 edstt; + __u8 dsto; + __u8 fwug; + __le16 kas; + __le16 hctma; + __le16 mntmt; + __le16 mxtmt; + __le32 sanicap; + __le32 hmminds; + __le16 hmmaxd; + __le16 nvmsetidmax; + __le16 endgidmax; + __u8 anatt; + __u8 anacap; + __le32 anagrpmax; + __le32 nanagrpid; + __u8 rsvd352[160]; + __u8 sqes; + __u8 cqes; + __le16 maxcmd; + __le32 nn; + __le16 oncs; + __le16 fuses; + __u8 fna; + __u8 vwc; + __le16 awun; + __le16 awupf; + __u8 nvscc; + __u8 nwpc; + __le16 acwu; + __u8 rsvd534[2]; + __le32 sgls; + __le32 mnan; + __u8 rsvd544[224]; + char subnqn[256]; + __u8 rsvd1024[768]; + __le32 ioccsz; + __le32 iorcsz; + __le16 icdoff; + __u8 ctrattr; + __u8 msdbd; + __u8 rsvd1804[2]; + __u8 dctype; + __u8 rsvd1807[241]; + struct nvme_id_power_state psd[32]; + __u8 vs[1024]; +}; + +enum { + NVME_CTRL_CMIC_MULTI_PORT = 1, + NVME_CTRL_CMIC_MULTI_CTRL = 2, + NVME_CTRL_CMIC_ANA = 8, + NVME_CTRL_ONCS_COMPARE = 1, + NVME_CTRL_ONCS_WRITE_UNCORRECTABLE = 2, + NVME_CTRL_ONCS_DSM = 4, + NVME_CTRL_ONCS_WRITE_ZEROES = 8, + NVME_CTRL_ONCS_RESERVATIONS = 32, + NVME_CTRL_ONCS_TIMESTAMP = 64, + NVME_CTRL_VWC_PRESENT = 1, + NVME_CTRL_OACS_SEC_SUPP = 1, + NVME_CTRL_OACS_NS_MNGT_SUPP = 8, + NVME_CTRL_OACS_DIRECTIVES = 32, + NVME_CTRL_OACS_DBBUF_SUPP = 256, + NVME_CTRL_LPA_CMD_EFFECTS_LOG = 2, + NVME_CTRL_CTRATT_128_ID = 1, + NVME_CTRL_CTRATT_NON_OP_PSP = 2, + NVME_CTRL_CTRATT_NVM_SETS = 4, + NVME_CTRL_CTRATT_READ_RECV_LVLS = 8, + NVME_CTRL_CTRATT_ENDURANCE_GROUPS = 16, + NVME_CTRL_CTRATT_PREDICTABLE_LAT = 32, + NVME_CTRL_CTRATT_NAMESPACE_GRANULARITY = 128, + NVME_CTRL_CTRATT_UUID_LIST = 512, + NVME_CTRL_SGLS_BYTE_ALIGNED = 1, + NVME_CTRL_SGLS_DWORD_ALIGNED = 2, + NVME_CTRL_SGLS_KSDBDS = 4, + NVME_CTRL_SGLS_MSDS = 524288, + NVME_CTRL_SGLS_SAOS = 1048576, +}; + +struct nvme_lbaf { + __le16 ms; + __u8 ds; + __u8 rp; +}; + +struct nvme_id_ns { + __le64 nsze; + __le64 ncap; + __le64 nuse; + __u8 nsfeat; + __u8 nlbaf; + __u8 flbas; + __u8 mc; + __u8 dpc; + __u8 dps; + __u8 nmic; + __u8 rescap; + __u8 fpi; + __u8 dlfeat; + __le16 nawun; + __le16 nawupf; + __le16 nacwu; + __le16 nabsn; + __le16 nabo; + __le16 nabspf; + __le16 noiob; + __u8 nvmcap[16]; + __le16 npwg; + __le16 npwa; + __le16 npdg; + __le16 npda; + __le16 nows; + __u8 rsvd74[18]; + __le32 anagrpid; + __u8 rsvd96[3]; + __u8 nsattr; + __le16 nvmsetid; + __le16 endgid; + __u8 nguid[16]; + __u8 eui64[8]; + struct nvme_lbaf lbaf[64]; + __u8 vs[3712]; +}; + +struct nvme_id_ns_cs_indep { + __u8 nsfeat; + __u8 nmic; + __u8 rescap; + __u8 fpi; + __le32 anagrpid; + __u8 nsattr; + __u8 rsvd9; + __le16 nvmsetid; + __le16 endgid; + __u8 nstat; + __u8 rsvd15[4081]; +}; + +struct nvme_id_ns_nvm { + __le64 lbstm; + __u8 pic; + __u8 rsvd9[3]; + __le32 elbaf[64]; + __u8 rsvd268[3828]; +}; + +enum { + NVME_ID_NS_NVM_STS_MASK = 127, + NVME_ID_NS_NVM_GUARD_SHIFT = 7, + NVME_ID_NS_NVM_GUARD_MASK = 3, + NVME_ID_NS_NVM_QPIF_SHIFT = 9, + NVME_ID_NS_NVM_QPIF_MASK = 15, + NVME_ID_NS_NVM_QPIFS = 8, +}; + +struct nvme_id_ctrl_nvm { + __u8 vsl; + __u8 wzsl; + __u8 wusl; + __u8 dmrl; + __le32 dmrsl; + __le64 dmsl; + __u8 rsvd16[4080]; +}; + +enum { + NVME_ID_CNS_NS = 0, + NVME_ID_CNS_CTRL = 1, + NVME_ID_CNS_NS_ACTIVE_LIST = 2, + NVME_ID_CNS_NS_DESC_LIST = 3, + NVME_ID_CNS_CS_NS = 5, + NVME_ID_CNS_CS_CTRL = 6, + NVME_ID_CNS_NS_ACTIVE_LIST_CS = 7, + NVME_ID_CNS_NS_CS_INDEP = 8, + NVME_ID_CNS_NS_PRESENT_LIST = 16, + NVME_ID_CNS_NS_PRESENT = 17, + NVME_ID_CNS_CTRL_NS_LIST = 18, + NVME_ID_CNS_CTRL_LIST = 19, + NVME_ID_CNS_SCNDRY_CTRL_LIST = 21, + NVME_ID_CNS_NS_GRANULARITY = 22, + NVME_ID_CNS_UUID_LIST = 23, + NVME_ID_CNS_ENDGRP_LIST = 25, +}; + +enum { + NVME_CSI_NVM = 0, + NVME_CSI_ZNS = 2, +}; + +enum { + NVME_NS_FEAT_THIN = 1, + NVME_NS_FEAT_ATOMICS = 2, + NVME_NS_FEAT_IO_OPT = 16, + NVME_NS_ATTR_RO = 1, + NVME_NS_FLBAS_LBA_MASK = 15, + NVME_NS_FLBAS_LBA_UMASK = 96, + NVME_NS_FLBAS_LBA_SHIFT = 1, + NVME_NS_FLBAS_META_EXT = 16, + NVME_NS_NMIC_SHARED = 1, + NVME_NS_ROTATIONAL = 16, + NVME_NS_VWC_NOT_PRESENT = 32, + NVME_LBAF_RP_BEST = 0, + NVME_LBAF_RP_BETTER = 1, + NVME_LBAF_RP_GOOD = 2, + NVME_LBAF_RP_DEGRADED = 3, + NVME_NS_DPC_PI_LAST = 16, + NVME_NS_DPC_PI_FIRST = 8, + NVME_NS_DPC_PI_TYPE3 = 4, + NVME_NS_DPC_PI_TYPE2 = 2, + NVME_NS_DPC_PI_TYPE1 = 1, + NVME_NS_DPS_PI_FIRST = 8, + NVME_NS_DPS_PI_MASK = 7, + NVME_NS_DPS_PI_TYPE1 = 1, + NVME_NS_DPS_PI_TYPE2 = 2, + NVME_NS_DPS_PI_TYPE3 = 3, +}; + +enum { + NVME_NSTAT_NRDY = 1, +}; + +enum { + NVME_NVM_NS_16B_GUARD = 0, + NVME_NVM_NS_32B_GUARD = 1, + NVME_NVM_NS_64B_GUARD = 2, + NVME_NVM_NS_QTYPE_GUARD = 3, +}; + +struct nvme_ns_id_desc { + __u8 nidt; + __u8 nidl; + __le16 reserved; +}; + +enum { + NVME_NIDT_EUI64 = 1, + NVME_NIDT_NGUID = 2, + NVME_NIDT_UUID = 3, + NVME_NIDT_CSI = 4, +}; + +struct nvme_fdp_config { + __u8 flags; + __u8 fdpcidx; + __le16 reserved; +}; + +struct nvme_fdp_ruh_desc { + __u8 ruht; + __u8 reserved[3]; +}; + +struct nvme_fdp_config_desc { + __le16 dsze; + __u8 fdpa; + __u8 vss; + __le32 nrg; + __le16 nruh; + __le16 maxpids; + __le32 nns; + __le64 runs; + __le32 erutl; + __u8 rsvd28[36]; + struct nvme_fdp_ruh_desc ruhs[0]; +}; + +struct nvme_fdp_config_log { + __le16 numfdpc; + __u8 ver; + __u8 rsvd3; + __le32 sze; + __u8 rsvd8[8]; +}; + +struct nvme_fw_slot_info_log { + __u8 afi; + __u8 rsvd1[7]; + __le64 frs[7]; + __u8 rsvd64[448]; +}; + +enum { + NVME_CMD_EFFECTS_CSUPP = 1, + NVME_CMD_EFFECTS_LBCC = 2, + NVME_CMD_EFFECTS_NCC = 4, + NVME_CMD_EFFECTS_NIC = 8, + NVME_CMD_EFFECTS_CCC = 16, + NVME_CMD_EFFECTS_CSER_MASK = 49152, + NVME_CMD_EFFECTS_CSE_MASK = 458752, + NVME_CMD_EFFECTS_UUID_SEL = 524288, + NVME_CMD_EFFECTS_SCOPE_MASK = 4293918720, +}; + +struct nvme_effects_log { + __le32 acs[256]; + __le32 iocs[256]; + __u8 resv[2048]; +}; + +enum nvme_ana_state { + NVME_ANA_OPTIMIZED = 1, + NVME_ANA_NONOPTIMIZED = 2, + NVME_ANA_INACCESSIBLE = 3, + NVME_ANA_PERSISTENT_LOSS = 4, + NVME_ANA_CHANGE = 15, +}; + +struct nvme_ana_rsp_hdr { + __le64 chgcnt; + __le16 ngrps; + __le16 rsvd10[3]; +}; + +enum { + NVME_AER_ERROR = 0, + NVME_AER_SMART = 1, + NVME_AER_NOTICE = 2, + NVME_AER_CSS = 6, + NVME_AER_VS = 7, +}; + +enum { + NVME_AER_ERROR_PERSIST_INT_ERR = 3, +}; + +enum { + NVME_AER_NOTICE_NS_CHANGED = 0, + NVME_AER_NOTICE_FW_ACT_STARTING = 1, + NVME_AER_NOTICE_ANA = 3, + NVME_AER_NOTICE_DISC_CHANGED = 240, +}; + +enum { + NVME_AEN_CFG_NS_ATTR = 256, + NVME_AEN_CFG_FW_ACT = 512, + NVME_AEN_CFG_ANA_CHANGE = 2048, + NVME_AEN_CFG_DISC_CHANGE = -2147483648, +}; + +enum nvme_opcode { + nvme_cmd_flush = 0, + nvme_cmd_write = 1, + nvme_cmd_read = 2, + nvme_cmd_write_uncor = 4, + nvme_cmd_compare = 5, + nvme_cmd_write_zeroes = 8, + nvme_cmd_dsm = 9, + nvme_cmd_verify = 12, + nvme_cmd_resv_register = 13, + nvme_cmd_resv_report = 14, + nvme_cmd_resv_acquire = 17, + nvme_cmd_io_mgmt_recv = 18, + nvme_cmd_resv_release = 21, + nvme_cmd_zone_mgmt_send = 121, + nvme_cmd_zone_mgmt_recv = 122, + nvme_cmd_zone_append = 125, + nvme_cmd_vendor_start = 128, +}; + +struct nvme_sgl_desc { + __le64 addr; + __le32 length; + __u8 rsvd[3]; + __u8 type; +}; + +struct nvme_keyed_sgl_desc { + __le64 addr; + __u8 length[3]; + __u8 key[4]; + __u8 type; +}; + +union nvme_data_ptr { + struct { + __le64 prp1; + __le64 prp2; + }; + struct nvme_sgl_desc sgl; + struct nvme_keyed_sgl_desc ksgl; +}; + +enum { + NVME_CMD_FUSE_FIRST = 1, + NVME_CMD_FUSE_SECOND = 2, + NVME_CMD_SGL_METABUF = 64, + NVME_CMD_SGL_METASEG = 128, + NVME_CMD_SGL_ALL = 192, +}; + +struct nvme_common_command { + __u8 opcode; + __u8 flags; + __u16 command_id; + __le32 nsid; + __le32 cdw2[2]; + __le64 metadata; + union nvme_data_ptr dptr; + union { + struct { + __le32 cdw10; + __le32 cdw11; + __le32 cdw12; + __le32 cdw13; + __le32 cdw14; + __le32 cdw15; + }; + struct { + __le32 cdw10; + __le32 cdw11; + __le32 cdw12; + __le32 cdw13; + __le32 cdw14; + __le32 cdw15; + } cdws; + }; +}; + +struct nvme_rw_command { + __u8 opcode; + __u8 flags; + __u16 command_id; + __le32 nsid; + __le32 cdw2; + __le32 cdw3; + __le64 metadata; + union nvme_data_ptr dptr; + __le64 slba; + __le16 length; + __le16 control; + __le32 dsmgmt; + __le32 reftag; + __le16 lbat; + __le16 lbatm; +}; + +enum { + NVME_RW_LR = 32768, + NVME_RW_FUA = 16384, + NVME_RW_APPEND_PIREMAP = 512, + NVME_RW_DSM_FREQ_UNSPEC = 0, + NVME_RW_DSM_FREQ_TYPICAL = 1, + NVME_RW_DSM_FREQ_RARE = 2, + NVME_RW_DSM_FREQ_READS = 3, + NVME_RW_DSM_FREQ_WRITES = 4, + NVME_RW_DSM_FREQ_RW = 5, + NVME_RW_DSM_FREQ_ONCE = 6, + NVME_RW_DSM_FREQ_PREFETCH = 7, + NVME_RW_DSM_FREQ_TEMP = 8, + NVME_RW_DSM_LATENCY_NONE = 0, + NVME_RW_DSM_LATENCY_IDLE = 16, + NVME_RW_DSM_LATENCY_NORM = 32, + NVME_RW_DSM_LATENCY_LOW = 48, + NVME_RW_DSM_SEQ_REQ = 64, + NVME_RW_DSM_COMPRESSED = 128, + NVME_RW_PRINFO_PRCHK_REF = 1024, + NVME_RW_PRINFO_PRCHK_APP = 2048, + NVME_RW_PRINFO_PRCHK_GUARD = 4096, + NVME_RW_PRINFO_PRACT = 8192, + NVME_RW_DTYPE_STREAMS = 16, + NVME_RW_DTYPE_DPLCMT = 32, + NVME_WZ_DEAC = 512, +}; + +struct nvme_dsm_cmd { + __u8 opcode; + __u8 flags; + __u16 command_id; + __le32 nsid; + __u64 rsvd2[2]; + union nvme_data_ptr dptr; + __le32 nr; + __le32 attributes; + __u32 rsvd12[4]; +}; + +enum { + NVME_DSMGMT_IDR = 1, + NVME_DSMGMT_IDW = 2, + NVME_DSMGMT_AD = 4, +}; + +struct nvme_dsm_range { + __le32 cattr; + __le32 nlb; + __le64 slba; +}; + +struct nvme_write_zeroes_cmd { + __u8 opcode; + __u8 flags; + __u16 command_id; + __le32 nsid; + __u64 rsvd2; + __le64 metadata; + union nvme_data_ptr dptr; + __le64 slba; + __le16 length; + __le16 control; + __le32 dsmgmt; + __le32 reftag; + __le16 lbat; + __le16 lbatm; +}; + +enum nvme_zone_mgmt_action { + NVME_ZONE_CLOSE = 1, + NVME_ZONE_FINISH = 2, + NVME_ZONE_OPEN = 3, + NVME_ZONE_RESET = 4, + NVME_ZONE_OFFLINE = 5, + NVME_ZONE_SET_DESC_EXT = 16, +}; + +struct nvme_zone_mgmt_send_cmd { + __u8 opcode; + __u8 flags; + __u16 command_id; + __le32 nsid; + __le32 cdw2[2]; + __le64 metadata; + union nvme_data_ptr dptr; + __le64 slba; + __le32 cdw12; + __u8 zsa; + __u8 select_all; + __u8 rsvd13[2]; + __le32 cdw14[2]; +}; + +struct nvme_zone_mgmt_recv_cmd { + __u8 opcode; + __u8 flags; + __u16 command_id; + __le32 nsid; + __le64 rsvd2[2]; + union nvme_data_ptr dptr; + __le64 slba; + __le32 numd; + __u8 zra; + __u8 zrasf; + __u8 pr; + __u8 rsvd13; + __le32 cdw14[2]; +}; + +struct nvme_io_mgmt_recv_cmd { + __u8 opcode; + __u8 flags; + __u16 command_id; + __le32 nsid; + __le64 rsvd2[2]; + union nvme_data_ptr dptr; + __u8 mo; + __u8 rsvd11; + __u16 mos; + __le32 numd; + __le32 cdw12[4]; +}; + +enum { + NVME_IO_MGMT_RECV_MO_RUHS = 1, +}; + +struct nvme_fdp_ruh_status_desc { + __le16 pid; + __le16 ruhid; + __le32 earutr; + __le64 ruamw; + __u8 reserved[16]; +}; + +struct nvme_fdp_ruh_status { + __u8 rsvd0[14]; + __le16 nruhsd; + struct nvme_fdp_ruh_status_desc ruhsd[0]; +}; + +struct nvme_feat_auto_pst { + __le64 entries[32]; +}; + +struct nvme_feat_host_behavior { + __u8 acre; + __u8 etdas; + __u8 lbafee; + __u8 resv1[509]; +}; + +enum { + NVME_ENABLE_ACRE = 1, + NVME_ENABLE_LBAFEE = 1, +}; + +enum nvme_admin_opcode { + nvme_admin_delete_sq = 0, + nvme_admin_create_sq = 1, + nvme_admin_get_log_page = 2, + nvme_admin_delete_cq = 4, + nvme_admin_create_cq = 5, + nvme_admin_identify = 6, + nvme_admin_abort_cmd = 8, + nvme_admin_set_features = 9, + nvme_admin_get_features = 10, + nvme_admin_async_event = 12, + nvme_admin_ns_mgmt = 13, + nvme_admin_activate_fw = 16, + nvme_admin_download_fw = 17, + nvme_admin_dev_self_test = 20, + nvme_admin_ns_attach = 21, + nvme_admin_keep_alive = 24, + nvme_admin_directive_send = 25, + nvme_admin_directive_recv = 26, + nvme_admin_virtual_mgmt = 28, + nvme_admin_nvme_mi_send = 29, + nvme_admin_nvme_mi_recv = 30, + nvme_admin_dbbuf = 124, + nvme_admin_format_nvm = 128, + nvme_admin_security_send = 129, + nvme_admin_security_recv = 130, + nvme_admin_sanitize_nvm = 132, + nvme_admin_get_lba_status = 134, + nvme_admin_vendor_start = 192, +}; + +enum { + NVME_QUEUE_PHYS_CONTIG = 1, + NVME_CQ_IRQ_ENABLED = 2, + NVME_SQ_PRIO_URGENT = 0, + NVME_SQ_PRIO_HIGH = 2, + NVME_SQ_PRIO_MEDIUM = 4, + NVME_SQ_PRIO_LOW = 6, + NVME_FEAT_ARBITRATION = 1, + NVME_FEAT_POWER_MGMT = 2, + NVME_FEAT_LBA_RANGE = 3, + NVME_FEAT_TEMP_THRESH = 4, + NVME_FEAT_ERR_RECOVERY = 5, + NVME_FEAT_VOLATILE_WC = 6, + NVME_FEAT_NUM_QUEUES = 7, + NVME_FEAT_IRQ_COALESCE = 8, + NVME_FEAT_IRQ_CONFIG = 9, + NVME_FEAT_WRITE_ATOMIC = 10, + NVME_FEAT_ASYNC_EVENT = 11, + NVME_FEAT_AUTO_PST = 12, + NVME_FEAT_HOST_MEM_BUF = 13, + NVME_FEAT_TIMESTAMP = 14, + NVME_FEAT_KATO = 15, + NVME_FEAT_HCTM = 16, + NVME_FEAT_NOPSC = 17, + NVME_FEAT_RRL = 18, + NVME_FEAT_PLM_CONFIG = 19, + NVME_FEAT_PLM_WINDOW = 20, + NVME_FEAT_HOST_BEHAVIOR = 22, + NVME_FEAT_SANITIZE = 23, + NVME_FEAT_FDP = 29, + NVME_FEAT_SW_PROGRESS = 128, + NVME_FEAT_HOST_ID = 129, + NVME_FEAT_RESV_MASK = 130, + NVME_FEAT_RESV_PERSIST = 131, + NVME_FEAT_WRITE_PROTECT = 132, + NVME_FEAT_VENDOR_START = 192, + NVME_FEAT_VENDOR_END = 255, + NVME_LOG_SUPPORTED = 0, + NVME_LOG_ERROR = 1, + NVME_LOG_SMART = 2, + NVME_LOG_FW_SLOT = 3, + NVME_LOG_CHANGED_NS = 4, + NVME_LOG_CMD_EFFECTS = 5, + NVME_LOG_DEVICE_SELF_TEST = 6, + NVME_LOG_TELEMETRY_HOST = 7, + NVME_LOG_TELEMETRY_CTRL = 8, + NVME_LOG_ENDURANCE_GROUP = 9, + NVME_LOG_ANA = 12, + NVME_LOG_FEATURES = 18, + NVME_LOG_RMI = 22, + NVME_LOG_FDP_CONFIGS = 32, + NVME_LOG_DISC = 112, + NVME_LOG_RESERVATION = 128, + NVME_FWACT_REPL = 0, + NVME_FWACT_REPL_ACTV = 8, + NVME_FWACT_ACTV = 16, +}; + +struct nvme_identify { + __u8 opcode; + __u8 flags; + __u16 command_id; + __le32 nsid; + __u64 rsvd2[2]; + union nvme_data_ptr dptr; + __u8 cns; + __u8 rsvd3; + __le16 ctrlid; + __le16 cnssid; + __u8 rsvd11; + __u8 csi; + __u32 rsvd12[4]; +}; + +struct nvme_features { + __u8 opcode; + __u8 flags; + __u16 command_id; + __le32 nsid; + __u64 rsvd2[2]; + union nvme_data_ptr dptr; + __le32 fid; + __le32 dword11; + __le32 dword12; + __le32 dword13; + __le32 dword14; + __le32 dword15; +}; + +struct nvme_create_cq { + __u8 opcode; + __u8 flags; + __u16 command_id; + __u32 rsvd1[5]; + __le64 prp1; + __u64 rsvd8; + __le16 cqid; + __le16 qsize; + __le16 cq_flags; + __le16 irq_vector; + __u32 rsvd12[4]; +}; + +struct nvme_create_sq { + __u8 opcode; + __u8 flags; + __u16 command_id; + __u32 rsvd1[5]; + __le64 prp1; + __u64 rsvd8; + __le16 sqid; + __le16 qsize; + __le16 sq_flags; + __le16 cqid; + __u32 rsvd12[4]; +}; + +struct nvme_delete_queue { + __u8 opcode; + __u8 flags; + __u16 command_id; + __u32 rsvd1[9]; + __le16 qid; + __u16 rsvd10; + __u32 rsvd11[5]; +}; + +struct nvme_abort_cmd { + __u8 opcode; + __u8 flags; + __u16 command_id; + __u32 rsvd1[9]; + __le16 sqid; + __u16 cid; + __u32 rsvd11[5]; +}; + +struct nvme_download_firmware { + __u8 opcode; + __u8 flags; + __u16 command_id; + __u32 rsvd1[5]; + union nvme_data_ptr dptr; + __le32 numd; + __le32 offset; + __u32 rsvd12[4]; +}; + +struct nvme_format_cmd { + __u8 opcode; + __u8 flags; + __u16 command_id; + __le32 nsid; + __u64 rsvd2[4]; + __le32 cdw10; + __u32 rsvd11[5]; +}; + +struct nvme_get_log_page_command { + __u8 opcode; + __u8 flags; + __u16 command_id; + __le32 nsid; + __u64 rsvd2[2]; + union nvme_data_ptr dptr; + __u8 lid; + __u8 lsp; + __le16 numdl; + __le16 numdu; + __le16 lsi; + union { + struct { + __le32 lpol; + __le32 lpou; + }; + __le64 lpo; + }; + __u8 rsvd14[3]; + __u8 csi; + __u32 rsvd15; +}; + +struct nvme_directive_cmd { + __u8 opcode; + __u8 flags; + __u16 command_id; + __le32 nsid; + __u64 rsvd2[2]; + union nvme_data_ptr dptr; + __le32 numd; + __u8 doper; + __u8 dtype; + __le16 dspec; + __u8 endir; + __u8 tdtype; + __u16 rsvd15; + __u32 rsvd16[3]; +}; + +enum nvmf_fabrics_opcode { + nvme_fabrics_command = 127, +}; + +enum nvmf_capsule_command { + nvme_fabrics_type_property_set = 0, + nvme_fabrics_type_connect = 1, + nvme_fabrics_type_property_get = 4, + nvme_fabrics_type_auth_send = 5, + nvme_fabrics_type_auth_receive = 6, +}; + +struct nvmf_common_command { + __u8 opcode; + __u8 resv1; + __u16 command_id; + __u8 fctype; + __u8 resv2[35]; + __u8 ts[24]; +}; + +struct nvmf_connect_command { + __u8 opcode; + __u8 resv1; + __u16 command_id; + __u8 fctype; + __u8 resv2[19]; + union nvme_data_ptr dptr; + __le16 recfmt; + __le16 qid; + __le16 sqsize; + __u8 cattr; + __u8 resv3; + __le32 kato; + __u8 resv4[12]; +}; + +struct nvmf_property_set_command { + __u8 opcode; + __u8 resv1; + __u16 command_id; + __u8 fctype; + __u8 resv2[35]; + __u8 attrib; + __u8 resv3[3]; + __le32 offset; + __le64 value; + __u8 resv4[8]; +}; + +struct nvmf_property_get_command { + __u8 opcode; + __u8 resv1; + __u16 command_id; + __u8 fctype; + __u8 resv2[35]; + __u8 attrib; + __u8 resv3[3]; + __le32 offset; + __u8 resv4[16]; +}; + +struct nvmf_auth_common_command { + __u8 opcode; + __u8 resv1; + __u16 command_id; + __u8 fctype; + __u8 resv2[19]; + union nvme_data_ptr dptr; + __u8 resv3; + __u8 spsp0; + __u8 spsp1; + __u8 secp; + __le32 al_tl; + __u8 resv4[16]; +}; + +struct nvmf_auth_send_command { + __u8 opcode; + __u8 resv1; + __u16 command_id; + __u8 fctype; + __u8 resv2[19]; + union nvme_data_ptr dptr; + __u8 resv3; + __u8 spsp0; + __u8 spsp1; + __u8 secp; + __le32 tl; + __u8 resv4[16]; +}; + +struct nvmf_auth_receive_command { + __u8 opcode; + __u8 resv1; + __u16 command_id; + __u8 fctype; + __u8 resv2[19]; + union nvme_data_ptr dptr; + __u8 resv3; + __u8 spsp0; + __u8 spsp1; + __u8 secp; + __le32 al; + __u8 resv4[16]; +}; + +struct nvme_dbbuf { + __u8 opcode; + __u8 flags; + __u16 command_id; + __u32 rsvd1[5]; + __le64 prp1; + __le64 prp2; + __u32 rsvd12[6]; +}; + +struct nvme_command { + union { + struct nvme_common_command common; + struct nvme_rw_command rw; + struct nvme_identify identify; + struct nvme_features features; + struct nvme_create_cq create_cq; + struct nvme_create_sq create_sq; + struct nvme_delete_queue delete_queue; + struct nvme_download_firmware dlfw; + struct nvme_format_cmd format; + struct nvme_dsm_cmd dsm; + struct nvme_write_zeroes_cmd write_zeroes; + struct nvme_zone_mgmt_send_cmd zms; + struct nvme_zone_mgmt_recv_cmd zmr; + struct nvme_abort_cmd abort; + struct nvme_get_log_page_command get_log_page; + struct nvmf_common_command fabrics; + struct nvmf_connect_command connect; + struct nvmf_property_set_command prop_set; + struct nvmf_property_get_command prop_get; + struct nvmf_auth_common_command auth_common; + struct nvmf_auth_send_command auth_send; + struct nvmf_auth_receive_command auth_receive; + struct nvme_dbbuf dbbuf; + struct nvme_directive_cmd directive; + struct nvme_io_mgmt_recv_cmd imr; + }; +}; + +enum { + NVME_SCT_GENERIC = 0, + NVME_SC_SUCCESS = 0, + NVME_SC_INVALID_OPCODE = 1, + NVME_SC_INVALID_FIELD = 2, + NVME_SC_CMDID_CONFLICT = 3, + NVME_SC_DATA_XFER_ERROR = 4, + NVME_SC_POWER_LOSS = 5, + NVME_SC_INTERNAL = 6, + NVME_SC_ABORT_REQ = 7, + NVME_SC_ABORT_QUEUE = 8, + NVME_SC_FUSED_FAIL = 9, + NVME_SC_FUSED_MISSING = 10, + NVME_SC_INVALID_NS = 11, + NVME_SC_CMD_SEQ_ERROR = 12, + NVME_SC_SGL_INVALID_LAST = 13, + NVME_SC_SGL_INVALID_COUNT = 14, + NVME_SC_SGL_INVALID_DATA = 15, + NVME_SC_SGL_INVALID_METADATA = 16, + NVME_SC_SGL_INVALID_TYPE = 17, + NVME_SC_CMB_INVALID_USE = 18, + NVME_SC_PRP_INVALID_OFFSET = 19, + NVME_SC_ATOMIC_WU_EXCEEDED = 20, + NVME_SC_OP_DENIED = 21, + NVME_SC_SGL_INVALID_OFFSET = 22, + NVME_SC_RESERVED = 23, + NVME_SC_HOST_ID_INCONSIST = 24, + NVME_SC_KA_TIMEOUT_EXPIRED = 25, + NVME_SC_KA_TIMEOUT_INVALID = 26, + NVME_SC_ABORTED_PREEMPT_ABORT = 27, + NVME_SC_SANITIZE_FAILED = 28, + NVME_SC_SANITIZE_IN_PROGRESS = 29, + NVME_SC_SGL_INVALID_GRANULARITY = 30, + NVME_SC_CMD_NOT_SUP_CMB_QUEUE = 31, + NVME_SC_NS_WRITE_PROTECTED = 32, + NVME_SC_CMD_INTERRUPTED = 33, + NVME_SC_TRANSIENT_TR_ERR = 34, + NVME_SC_ADMIN_COMMAND_MEDIA_NOT_READY = 36, + NVME_SC_INVALID_IO_CMD_SET = 44, + NVME_SC_LBA_RANGE = 128, + NVME_SC_CAP_EXCEEDED = 129, + NVME_SC_NS_NOT_READY = 130, + NVME_SC_RESERVATION_CONFLICT = 131, + NVME_SC_FORMAT_IN_PROGRESS = 132, + NVME_SCT_COMMAND_SPECIFIC = 256, + NVME_SC_CQ_INVALID = 256, + NVME_SC_QID_INVALID = 257, + NVME_SC_QUEUE_SIZE = 258, + NVME_SC_ABORT_LIMIT = 259, + NVME_SC_ABORT_MISSING = 260, + NVME_SC_ASYNC_LIMIT = 261, + NVME_SC_FIRMWARE_SLOT = 262, + NVME_SC_FIRMWARE_IMAGE = 263, + NVME_SC_INVALID_VECTOR = 264, + NVME_SC_INVALID_LOG_PAGE = 265, + NVME_SC_INVALID_FORMAT = 266, + NVME_SC_FW_NEEDS_CONV_RESET = 267, + NVME_SC_INVALID_QUEUE = 268, + NVME_SC_FEATURE_NOT_SAVEABLE = 269, + NVME_SC_FEATURE_NOT_CHANGEABLE = 270, + NVME_SC_FEATURE_NOT_PER_NS = 271, + NVME_SC_FW_NEEDS_SUBSYS_RESET = 272, + NVME_SC_FW_NEEDS_RESET = 273, + NVME_SC_FW_NEEDS_MAX_TIME = 274, + NVME_SC_FW_ACTIVATE_PROHIBITED = 275, + NVME_SC_OVERLAPPING_RANGE = 276, + NVME_SC_NS_INSUFFICIENT_CAP = 277, + NVME_SC_NS_ID_UNAVAILABLE = 278, + NVME_SC_NS_ALREADY_ATTACHED = 280, + NVME_SC_NS_IS_PRIVATE = 281, + NVME_SC_NS_NOT_ATTACHED = 282, + NVME_SC_THIN_PROV_NOT_SUPP = 283, + NVME_SC_CTRL_LIST_INVALID = 284, + NVME_SC_SELF_TEST_IN_PROGRESS = 285, + NVME_SC_BP_WRITE_PROHIBITED = 286, + NVME_SC_CTRL_ID_INVALID = 287, + NVME_SC_SEC_CTRL_STATE_INVALID = 288, + NVME_SC_CTRL_RES_NUM_INVALID = 289, + NVME_SC_RES_ID_INVALID = 290, + NVME_SC_PMR_SAN_PROHIBITED = 291, + NVME_SC_ANA_GROUP_ID_INVALID = 292, + NVME_SC_ANA_ATTACH_FAILED = 293, + NVME_SC_BAD_ATTRIBUTES = 384, + NVME_SC_INVALID_PI = 385, + NVME_SC_READ_ONLY = 386, + NVME_SC_CMD_SIZE_LIM_EXCEEDED = 387, + NVME_SC_CONNECT_FORMAT = 384, + NVME_SC_CONNECT_CTRL_BUSY = 385, + NVME_SC_CONNECT_INVALID_PARAM = 386, + NVME_SC_CONNECT_RESTART_DISC = 387, + NVME_SC_CONNECT_INVALID_HOST = 388, + NVME_SC_DISCOVERY_RESTART = 400, + NVME_SC_AUTH_REQUIRED = 401, + NVME_SC_ZONE_BOUNDARY_ERROR = 440, + NVME_SC_ZONE_FULL = 441, + NVME_SC_ZONE_READ_ONLY = 442, + NVME_SC_ZONE_OFFLINE = 443, + NVME_SC_ZONE_INVALID_WRITE = 444, + NVME_SC_ZONE_TOO_MANY_ACTIVE = 445, + NVME_SC_ZONE_TOO_MANY_OPEN = 446, + NVME_SC_ZONE_INVALID_TRANSITION = 447, + NVME_SCT_MEDIA_ERROR = 512, + NVME_SC_WRITE_FAULT = 640, + NVME_SC_READ_ERROR = 641, + NVME_SC_GUARD_CHECK = 642, + NVME_SC_APPTAG_CHECK = 643, + NVME_SC_REFTAG_CHECK = 644, + NVME_SC_COMPARE_FAILED = 645, + NVME_SC_ACCESS_DENIED = 646, + NVME_SC_UNWRITTEN_BLOCK = 647, + NVME_SCT_PATH = 768, + NVME_SC_INTERNAL_PATH_ERROR = 768, + NVME_SC_ANA_PERSISTENT_LOSS = 769, + NVME_SC_ANA_INACCESSIBLE = 770, + NVME_SC_ANA_TRANSITION = 771, + NVME_SC_CTRL_PATH_ERROR = 864, + NVME_SC_HOST_PATH_ERROR = 880, + NVME_SC_HOST_ABORTED_CMD = 881, + NVME_SC_MASK = 255, + NVME_SCT_MASK = 1792, + NVME_SCT_SC_MASK = 2047, + NVME_STATUS_CRD = 6144, + NVME_STATUS_MORE = 8192, + NVME_STATUS_DNR = 16384, +}; + +union nvme_result { + __le16 u16; + __le32 u32; + __le64 u64; +}; + +typedef int sec_send_recv(void *, u16, u8, void *, size_t, bool); + +enum nvme_quirks { + NVME_QUIRK_STRIPE_SIZE = 1, + NVME_QUIRK_IDENTIFY_CNS = 2, + NVME_QUIRK_DEALLOCATE_ZEROES = 4, + NVME_QUIRK_DELAY_BEFORE_CHK_RDY = 8, + NVME_QUIRK_NO_APST = 16, + NVME_QUIRK_NO_DEEPEST_PS = 32, + NVME_QUIRK_QDEPTH_ONE = 64, + NVME_QUIRK_MEDIUM_PRIO_SQ = 128, + NVME_QUIRK_IGNORE_DEV_SUBNQN = 256, + NVME_QUIRK_DISABLE_WRITE_ZEROES = 512, + NVME_QUIRK_SIMPLE_SUSPEND = 1024, + NVME_QUIRK_SINGLE_VECTOR = 2048, + NVME_QUIRK_128_BYTES_SQES = 4096, + NVME_QUIRK_SHARED_TAGS = 8192, + NVME_QUIRK_NO_TEMP_THRESH_CHANGE = 16384, + NVME_QUIRK_NO_NS_DESC_LIST = 32768, + NVME_QUIRK_DMA_ADDRESS_BITS_48 = 65536, + NVME_QUIRK_SKIP_CID_GEN = 131072, + NVME_QUIRK_BOGUS_NID = 262144, + NVME_QUIRK_NO_SECONDARY_TEMP_THRESH = 524288, + NVME_QUIRK_FORCE_NO_SIMPLE_SUSPEND = 1048576, + NVME_QUIRK_BROKEN_MSI = 2097152, + NVME_QUIRK_DMAPOOL_ALIGN_512 = 4194304, +}; + +struct nvme_ctrl; + +struct nvme_request { + struct nvme_command *cmd; + union nvme_result result; + u8 genctr; + u8 retries; + u8 flags; + u16 status; + long unsigned int start_time; + struct nvme_ctrl *ctrl; +}; + +enum nvme_ctrl_state { + NVME_CTRL_NEW = 0, + NVME_CTRL_LIVE = 1, + NVME_CTRL_RESETTING = 2, + NVME_CTRL_CONNECTING = 3, + NVME_CTRL_DELETING = 4, + NVME_CTRL_DELETING_NOIO = 5, + NVME_CTRL_DEAD = 6, +}; + +struct nvme_fault_inject {}; + +struct nvme_ctrl_ops; + +struct nvme_subsystem; + +struct nvme_dhchap_queue_context; + +struct nvme_dhchap_key; + +struct nvmf_ctrl_options; + +struct nvme_ctrl { + bool comp_seen; + bool identified; + bool passthru_err_log_enabled; + enum nvme_ctrl_state state; + spinlock_t lock; + struct mutex scan_lock; + const struct nvme_ctrl_ops *ops; + struct request_queue *admin_q; + struct request_queue *connect_q; + struct request_queue *fabrics_q; + struct device *dev; + int instance; + int numa_node; + struct blk_mq_tag_set *tagset; + struct blk_mq_tag_set *admin_tagset; + struct list_head namespaces; + struct mutex namespaces_lock; + struct srcu_struct srcu; + struct device ctrl_device; + struct device *device; + struct device *hwmon_device; + struct cdev cdev; + struct work_struct reset_work; + struct work_struct delete_work; + wait_queue_head_t state_wq; + struct nvme_subsystem *subsys; + struct list_head subsys_entry; + struct opal_dev *opal_dev; + u16 cntlid; + u16 mtfa; + u32 ctrl_config; + u32 queue_count; + u64 cap; + u32 max_hw_sectors; + u32 max_segments; + u32 max_integrity_segments; + u32 max_zeroes_sectors; + u32 max_zone_append; + u16 crdt[3]; + u16 oncs; + u8 dmrl; + u32 dmrsl; + u16 oacs; + u16 sqsize; + u32 max_namespaces; + atomic_t abort_limit; + u8 vwc; + u32 vs; + u32 sgls; + u16 kas; + u8 npss; + u8 apsta; + u16 wctemp; + u16 cctemp; + u32 oaes; + u32 aen_result; + u32 ctratt; + unsigned int shutdown_timeout; + unsigned int kato; + bool subsystem; + long unsigned int quirks; + struct nvme_id_power_state psd[32]; + struct nvme_effects_log *effects; + struct xarray cels; + struct work_struct scan_work; + struct work_struct async_event_work; + struct delayed_work ka_work; + struct delayed_work failfast_work; + struct nvme_command ka_cmd; + long unsigned int ka_last_check_time; + struct work_struct fw_act_work; + long unsigned int events; + u8 anacap; + u8 anatt; + u32 anagrpmax; + u32 nanagrpid; + struct mutex ana_lock; + struct nvme_ana_rsp_hdr *ana_log_buf; + size_t ana_log_size; + struct timer_list anatt_timer; + struct work_struct ana_work; + atomic_t nr_active; + struct work_struct dhchap_auth_work; + struct mutex dhchap_auth_mutex; + struct nvme_dhchap_queue_context *dhchap_ctxs; + struct nvme_dhchap_key *host_key; + struct nvme_dhchap_key *ctrl_key; + u16 transaction; + key_serial_t tls_pskid; + u64 ps_max_latency_us; + bool apst_enabled; + u16 hmmaxd; + u32 hmpre; + u32 hmmin; + u32 hmminds; + u32 ioccsz; + u32 iorcsz; + u16 icdoff; + u16 maxcmd; + int nr_reconnects; + long unsigned int flags; + struct nvmf_ctrl_options *opts; + struct page *discard_page; + long unsigned int discard_page_busy; + struct nvme_fault_inject fault_inject; + enum nvme_ctrl_type cntrltype; + enum nvme_dctype dctype; +}; + +enum { + NVME_REQ_CANCELLED = 1, + NVME_REQ_USERCMD = 2, + NVME_MPATH_IO_STATS = 4, + NVME_MPATH_CNT_ACTIVE = 8, +}; + +enum nvme_ctrl_flags { + NVME_CTRL_FAILFAST_EXPIRED = 0, + NVME_CTRL_ADMIN_Q_STOPPED = 1, + NVME_CTRL_STARTED_ONCE = 2, + NVME_CTRL_STOPPED = 3, + NVME_CTRL_SKIP_ID_CNS_CS = 4, + NVME_CTRL_DIRTY_CAPABILITY = 5, + NVME_CTRL_FROZEN = 6, +}; + +struct nvme_ctrl_ops { + const char *name; + struct module *module; + unsigned int flags; + const struct attribute_group **dev_attr_groups; + int (*reg_read32)(struct nvme_ctrl *, u32, u32 *); + int (*reg_write32)(struct nvme_ctrl *, u32, u32); + int (*reg_read64)(struct nvme_ctrl *, u32, u64 *); + void (*free_ctrl)(struct nvme_ctrl *); + void (*submit_async_event)(struct nvme_ctrl *); + int (*subsystem_reset)(struct nvme_ctrl *); + void (*delete_ctrl)(struct nvme_ctrl *); + void (*stop_ctrl)(struct nvme_ctrl *); + int (*get_address)(struct nvme_ctrl *, char *, int); + void (*print_device_info)(struct nvme_ctrl *); + bool (*supports_pci_p2pdma)(struct nvme_ctrl *); +}; + +enum nvme_iopolicy { + NVME_IOPOLICY_NUMA = 0, + NVME_IOPOLICY_RR = 1, + NVME_IOPOLICY_QD = 2, +}; + +struct nvme_subsystem { + int instance; + struct device dev; + struct kref ref; + struct list_head entry; + struct mutex lock; + struct list_head ctrls; + struct list_head nsheads; + char subnqn[223]; + char serial[20]; + char model[40]; + char firmware_rev[8]; + u8 cmic; + enum nvme_subsys_type subtype; + u16 vendor_id; + u16 awupf; + struct ida ns_ida; + enum nvme_iopolicy iopolicy; +}; + +struct nvme_dhchap_key { + size_t len; + u8 hash; + u8 key[0]; +}; + +struct nvmf_host; + +struct nvmf_ctrl_options { + unsigned int mask; + int max_reconnects; + char *transport; + char *subsysnqn; + char *traddr; + char *trsvcid; + char *host_traddr; + char *host_iface; + size_t queue_size; + unsigned int nr_io_queues; + unsigned int reconnect_delay; + unsigned int recovery_delay; + bool discovery_nqn; + bool duplicate_connect; + unsigned int kato; + struct nvmf_host *host; + char *dhchap_secret; + char *dhchap_ctrl_secret; + struct key *keyring; + struct key *tls_key; + bool tls; + bool concat; + bool disable_sqflow; + bool hdr_digest; + bool data_digest; + unsigned int nr_write_queues; + unsigned int nr_poll_queues; + int tos; + int fast_io_fail_tmo; +}; + +struct nvme_ns_ids { + u8 eui64[8]; + u8 nguid[16]; + uuid_t uuid; + u8 csi; +}; + +struct nvme_ns; + +struct nvme_ns_head { + struct list_head list; + struct srcu_struct srcu; + struct nvme_subsystem *subsys; + struct nvme_ns_ids ids; + u8 lba_shift; + u16 ms; + u16 pi_size; + u8 pi_type; + u8 guard_type; + struct list_head entry; + struct kref ref; + bool shared; + bool rotational; + bool passthru_err_log_enabled; + struct nvme_effects_log *effects; + u64 nuse; + unsigned int ns_id; + int instance; + u64 zsze; + long unsigned int features; + struct ratelimit_state rs_nuse; + struct cdev cdev; + struct device cdev_device; + struct gendisk *disk; + u16 nr_plids; + u16 *plids; + struct bio_list requeue_list; + spinlock_t requeue_lock; + struct work_struct requeue_work; + struct work_struct partition_scan_work; + struct mutex lock; + long unsigned int flags; + struct delayed_work remove_work; + unsigned int delayed_removal_secs; + struct nvme_ns *current_path[0]; +}; + +struct nvme_ns { + struct list_head list; + struct nvme_ctrl *ctrl; + struct request_queue *queue; + struct gendisk *disk; + enum nvme_ana_state ana_state; + u32 ana_grpid; + struct list_head siblings; + struct kref kref; + struct nvme_ns_head *head; + long unsigned int flags; + struct cdev cdev; + struct device cdev_device; + struct nvme_fault_inject fault_inject; +}; + +enum nvme_ns_features { + NVME_NS_EXT_LBAS = 1, + NVME_NS_METADATA_SUPPORTED = 2, + NVME_NS_DEAC = 4, +}; + +typedef __u32 nvme_submit_flags_t; + +enum { + NVME_SUBMIT_AT_HEAD = 1, + NVME_SUBMIT_NOWAIT = 2, + NVME_SUBMIT_RESERVED = 4, + NVME_SUBMIT_RETRY = 8, +}; + +struct nvme_zone_info { + u64 zone_size; + unsigned int max_open_zones; + unsigned int max_active_zones; +}; + +struct nvmf_host { + struct kref ref; + struct list_head list; + char nqn[223]; + uuid_t id; +}; + +struct trace_event_raw_nvme_setup_cmd { + struct trace_entry ent; + char disk[32]; + int ctrl_id; + int qid; + u8 opcode; + u8 flags; + u8 fctype; + u16 cid; + u32 nsid; + bool metadata; + u8 cdw10[24]; + char __data[0]; +}; + +struct trace_event_raw_nvme_complete_rq { + struct trace_entry ent; + char disk[32]; + int ctrl_id; + int qid; + int cid; + u64 result; + u8 retries; + u8 flags; + u16 status; + char __data[0]; +}; + +struct trace_event_raw_nvme_async_event { + struct trace_entry ent; + int ctrl_id; + u32 result; + char __data[0]; +}; + +struct trace_event_raw_nvme_sq { + struct trace_entry ent; + int ctrl_id; + char disk[32]; + int qid; + u16 sq_head; + u16 sq_tail; + char __data[0]; +}; + +struct trace_event_data_offsets_nvme_setup_cmd {}; + +struct trace_event_data_offsets_nvme_complete_rq {}; + +struct trace_event_data_offsets_nvme_async_event {}; + +struct trace_event_data_offsets_nvme_sq {}; + +typedef void (*btf_trace_nvme_setup_cmd)(void *, struct request *, struct nvme_command *); + +typedef void (*btf_trace_nvme_complete_rq)(void *, struct request *); + +typedef void (*btf_trace_nvme_async_event)(void *, struct nvme_ctrl *, u32); + +typedef void (*btf_trace_nvme_sq)(void *, struct request *, __le16, int); + +struct nvme_ns_info { + struct nvme_ns_ids ids; + u32 nsid; + __le32 anagrpid; + u8 pi_offset; + u16 endgid; + u64 runs; + bool is_shared; + bool is_readonly; + bool is_ready; + bool is_removed; + bool is_rotational; + bool no_vwc; +}; + +enum nvme_disposition { + COMPLETE = 0, + RETRY = 1, + FAILOVER = 2, + AUTHENTICATE = 3, +}; + +struct nvme_core_quirk_entry { + u16 vid; + const char *mn; + const char *fr; + long unsigned int quirks; +}; + +struct async_scan_info { + struct nvme_ctrl *ctrl; + atomic_t next_nsid; + __le32 *ns_list; +}; + +struct cdrom_device_ops; + +struct cdrom_device_info { + const struct cdrom_device_ops *ops; + struct list_head list; + struct gendisk *disk; + void *handle; + int mask; + int speed; + int capacity; + unsigned int options: 30; + unsigned int mc_flags: 2; + unsigned int vfs_events; + unsigned int ioctl_events; + int use_count; + char name[20]; + __u8 sanyo_slot: 2; + __u8 keeplocked: 1; + __u8 reserved: 5; + int cdda_method; + __u8 last_sense; + __u8 media_written; + short unsigned int mmc3_profile; + int mrw_mode_page; + bool opened_for_data; + __s64 last_media_change_ms; +}; + +enum { + ATA_MAX_DEVICES = 2, + ATA_MAX_PRD = 256, + ATA_SECT_SIZE = 512, + ATA_MAX_SECTORS_128 = 128, + ATA_MAX_SECTORS = 256, + ATA_MAX_SECTORS_1024 = 1024, + ATA_MAX_SECTORS_LBA48 = 65535, + ATA_MAX_SECTORS_TAPE = 65535, + ATA_MAX_TRIM_RNUM = 64, + ATA_ID_WORDS = 256, + ATA_ID_CONFIG = 0, + ATA_ID_CYLS = 1, + ATA_ID_HEADS = 3, + ATA_ID_SECTORS = 6, + ATA_ID_SERNO = 10, + ATA_ID_BUF_SIZE = 21, + ATA_ID_FW_REV = 23, + ATA_ID_PROD = 27, + ATA_ID_MAX_MULTSECT = 47, + ATA_ID_DWORD_IO = 48, + ATA_ID_TRUSTED = 48, + ATA_ID_CAPABILITY = 49, + ATA_ID_OLD_PIO_MODES = 51, + ATA_ID_OLD_DMA_MODES = 52, + ATA_ID_FIELD_VALID = 53, + ATA_ID_CUR_CYLS = 54, + ATA_ID_CUR_HEADS = 55, + ATA_ID_CUR_SECTORS = 56, + ATA_ID_MULTSECT = 59, + ATA_ID_LBA_CAPACITY = 60, + ATA_ID_SWDMA_MODES = 62, + ATA_ID_MWDMA_MODES = 63, + ATA_ID_PIO_MODES = 64, + ATA_ID_EIDE_DMA_MIN = 65, + ATA_ID_EIDE_DMA_TIME = 66, + ATA_ID_EIDE_PIO = 67, + ATA_ID_EIDE_PIO_IORDY = 68, + ATA_ID_ADDITIONAL_SUPP = 69, + ATA_ID_QUEUE_DEPTH = 75, + ATA_ID_SATA_CAPABILITY = 76, + ATA_ID_SATA_CAPABILITY_2 = 77, + ATA_ID_FEATURE_SUPP = 78, + ATA_ID_MAJOR_VER = 80, + ATA_ID_COMMAND_SET_1 = 82, + ATA_ID_COMMAND_SET_2 = 83, + ATA_ID_CFSSE = 84, + ATA_ID_CFS_ENABLE_1 = 85, + ATA_ID_CFS_ENABLE_2 = 86, + ATA_ID_CSF_DEFAULT = 87, + ATA_ID_UDMA_MODES = 88, + ATA_ID_HW_CONFIG = 93, + ATA_ID_SPG = 98, + ATA_ID_LBA_CAPACITY_2 = 100, + ATA_ID_SECTOR_SIZE = 106, + ATA_ID_WWN = 108, + ATA_ID_LOGICAL_SECTOR_SIZE = 117, + ATA_ID_COMMAND_SET_3 = 119, + ATA_ID_COMMAND_SET_4 = 120, + ATA_ID_LAST_LUN = 126, + ATA_ID_DLF = 128, + ATA_ID_CSFO = 129, + ATA_ID_CFA_POWER = 160, + ATA_ID_CFA_KEY_MGMT = 162, + ATA_ID_CFA_MODES = 163, + ATA_ID_DATA_SET_MGMT = 169, + ATA_ID_SCT_CMD_XPORT = 206, + ATA_ID_ROT_SPEED = 217, + ATA_ID_PIO4 = 2, + ATA_ID_SERNO_LEN = 20, + ATA_ID_FW_REV_LEN = 8, + ATA_ID_PROD_LEN = 40, + ATA_ID_WWN_LEN = 8, + ATA_PCI_CTL_OFS = 2, + ATA_PIO0 = 1, + ATA_PIO1 = 3, + ATA_PIO2 = 7, + ATA_PIO3 = 15, + ATA_PIO4 = 31, + ATA_PIO5 = 63, + ATA_PIO6 = 127, + ATA_PIO4_ONLY = 16, + ATA_SWDMA0 = 1, + ATA_SWDMA1 = 3, + ATA_SWDMA2 = 7, + ATA_SWDMA2_ONLY = 4, + ATA_MWDMA0 = 1, + ATA_MWDMA1 = 3, + ATA_MWDMA2 = 7, + ATA_MWDMA3 = 15, + ATA_MWDMA4 = 31, + ATA_MWDMA12_ONLY = 6, + ATA_MWDMA2_ONLY = 4, + ATA_UDMA0 = 1, + ATA_UDMA1 = 3, + ATA_UDMA2 = 7, + ATA_UDMA3 = 15, + ATA_UDMA4 = 31, + ATA_UDMA5 = 63, + ATA_UDMA6 = 127, + ATA_UDMA7 = 255, + ATA_UDMA24_ONLY = 20, + ATA_UDMA_MASK_40C = 7, + ATA_PRD_SZ = 8, + ATA_PRD_TBL_SZ = 2048, + ATA_PRD_EOT = -2147483648, + ATA_DMA_TABLE_OFS = 4, + ATA_DMA_STATUS = 2, + ATA_DMA_CMD = 0, + ATA_DMA_WR = 8, + ATA_DMA_START = 1, + ATA_DMA_INTR = 4, + ATA_DMA_ERR = 2, + ATA_DMA_ACTIVE = 1, + ATA_HOB = 128, + ATA_NIEN = 2, + ATA_LBA = 64, + ATA_DEV1 = 16, + ATA_DEVICE_OBS = 160, + ATA_DEVCTL_OBS = 8, + ATA_BUSY = 128, + ATA_DRDY = 64, + ATA_DF = 32, + ATA_DSC = 16, + ATA_DRQ = 8, + ATA_CORR = 4, + ATA_SENSE = 2, + ATA_ERR = 1, + ATA_SRST = 4, + ATA_ICRC = 128, + ATA_BBK = 128, + ATA_UNC = 64, + ATA_MC = 32, + ATA_IDNF = 16, + ATA_MCR = 8, + ATA_ABORTED = 4, + ATA_TRK0NF = 2, + ATA_AMNF = 1, + ATAPI_LFS = 240, + ATAPI_EOM = 2, + ATAPI_ILI = 1, + ATAPI_IO = 2, + ATAPI_COD = 1, + ATA_REG_DATA = 0, + ATA_REG_ERR = 1, + ATA_REG_NSECT = 2, + ATA_REG_LBAL = 3, + ATA_REG_LBAM = 4, + ATA_REG_LBAH = 5, + ATA_REG_DEVICE = 6, + ATA_REG_STATUS = 7, + ATA_REG_FEATURE = 1, + ATA_REG_CMD = 7, + ATA_REG_BYTEL = 4, + ATA_REG_BYTEH = 5, + ATA_REG_DEVSEL = 6, + ATA_REG_IRQ = 2, + ATA_CMD_DEV_RESET = 8, + ATA_CMD_CHK_POWER = 229, + ATA_CMD_STANDBY = 226, + ATA_CMD_IDLE = 227, + ATA_CMD_EDD = 144, + ATA_CMD_DOWNLOAD_MICRO = 146, + ATA_CMD_DOWNLOAD_MICRO_DMA = 147, + ATA_CMD_NOP = 0, + ATA_CMD_FLUSH = 231, + ATA_CMD_FLUSH_EXT = 234, + ATA_CMD_ID_ATA = 236, + ATA_CMD_ID_ATAPI = 161, + ATA_CMD_SERVICE = 162, + ATA_CMD_READ = 200, + ATA_CMD_READ_EXT = 37, + ATA_CMD_READ_QUEUED = 38, + ATA_CMD_READ_STREAM_EXT = 43, + ATA_CMD_READ_STREAM_DMA_EXT = 42, + ATA_CMD_WRITE = 202, + ATA_CMD_WRITE_EXT = 53, + ATA_CMD_WRITE_QUEUED = 54, + ATA_CMD_WRITE_STREAM_EXT = 59, + ATA_CMD_WRITE_STREAM_DMA_EXT = 58, + ATA_CMD_WRITE_FUA_EXT = 61, + ATA_CMD_WRITE_QUEUED_FUA_EXT = 62, + ATA_CMD_FPDMA_READ = 96, + ATA_CMD_FPDMA_WRITE = 97, + ATA_CMD_NCQ_NON_DATA = 99, + ATA_CMD_FPDMA_SEND = 100, + ATA_CMD_FPDMA_RECV = 101, + ATA_CMD_PIO_READ = 32, + ATA_CMD_PIO_READ_EXT = 36, + ATA_CMD_PIO_WRITE = 48, + ATA_CMD_PIO_WRITE_EXT = 52, + ATA_CMD_READ_MULTI = 196, + ATA_CMD_READ_MULTI_EXT = 41, + ATA_CMD_WRITE_MULTI = 197, + ATA_CMD_WRITE_MULTI_EXT = 57, + ATA_CMD_WRITE_MULTI_FUA_EXT = 206, + ATA_CMD_SET_FEATURES = 239, + ATA_CMD_SET_MULTI = 198, + ATA_CMD_PACKET = 160, + ATA_CMD_VERIFY = 64, + ATA_CMD_VERIFY_EXT = 66, + ATA_CMD_WRITE_UNCORR_EXT = 69, + ATA_CMD_STANDBYNOW1 = 224, + ATA_CMD_IDLEIMMEDIATE = 225, + ATA_CMD_SLEEP = 230, + ATA_CMD_INIT_DEV_PARAMS = 145, + ATA_CMD_READ_NATIVE_MAX = 248, + ATA_CMD_READ_NATIVE_MAX_EXT = 39, + ATA_CMD_SET_MAX = 249, + ATA_CMD_SET_MAX_EXT = 55, + ATA_CMD_READ_LOG_EXT = 47, + ATA_CMD_WRITE_LOG_EXT = 63, + ATA_CMD_READ_LOG_DMA_EXT = 71, + ATA_CMD_WRITE_LOG_DMA_EXT = 87, + ATA_CMD_TRUSTED_NONDATA = 91, + ATA_CMD_TRUSTED_RCV = 92, + ATA_CMD_TRUSTED_RCV_DMA = 93, + ATA_CMD_TRUSTED_SND = 94, + ATA_CMD_TRUSTED_SND_DMA = 95, + ATA_CMD_PMP_READ = 228, + ATA_CMD_PMP_READ_DMA = 233, + ATA_CMD_PMP_WRITE = 232, + ATA_CMD_PMP_WRITE_DMA = 235, + ATA_CMD_CONF_OVERLAY = 177, + ATA_CMD_SEC_SET_PASS = 241, + ATA_CMD_SEC_UNLOCK = 242, + ATA_CMD_SEC_ERASE_PREP = 243, + ATA_CMD_SEC_ERASE_UNIT = 244, + ATA_CMD_SEC_FREEZE_LOCK = 245, + ATA_CMD_SEC_DISABLE_PASS = 246, + ATA_CMD_CONFIG_STREAM = 81, + ATA_CMD_SMART = 176, + ATA_CMD_MEDIA_LOCK = 222, + ATA_CMD_MEDIA_UNLOCK = 223, + ATA_CMD_DSM = 6, + ATA_CMD_CHK_MED_CRD_TYP = 209, + ATA_CMD_CFA_REQ_EXT_ERR = 3, + ATA_CMD_CFA_WRITE_NE = 56, + ATA_CMD_CFA_TRANS_SECT = 135, + ATA_CMD_CFA_ERASE = 192, + ATA_CMD_CFA_WRITE_MULT_NE = 205, + ATA_CMD_REQ_SENSE_DATA = 11, + ATA_CMD_SANITIZE_DEVICE = 180, + ATA_CMD_ZAC_MGMT_IN = 74, + ATA_CMD_ZAC_MGMT_OUT = 159, + ATA_CMD_RESTORE = 16, + ATA_SUBCMD_FPDMA_RECV_RD_LOG_DMA_EXT = 1, + ATA_SUBCMD_FPDMA_RECV_ZAC_MGMT_IN = 2, + ATA_SUBCMD_FPDMA_SEND_DSM = 0, + ATA_SUBCMD_FPDMA_SEND_WR_LOG_DMA_EXT = 2, + ATA_SUBCMD_NCQ_NON_DATA_ABORT_QUEUE = 0, + ATA_SUBCMD_NCQ_NON_DATA_SET_FEATURES = 5, + ATA_SUBCMD_NCQ_NON_DATA_ZERO_EXT = 6, + ATA_SUBCMD_NCQ_NON_DATA_ZAC_MGMT_OUT = 7, + ATA_SUBCMD_ZAC_MGMT_IN_REPORT_ZONES = 0, + ATA_SUBCMD_ZAC_MGMT_OUT_CLOSE_ZONE = 1, + ATA_SUBCMD_ZAC_MGMT_OUT_FINISH_ZONE = 2, + ATA_SUBCMD_ZAC_MGMT_OUT_OPEN_ZONE = 3, + ATA_SUBCMD_ZAC_MGMT_OUT_RESET_WRITE_POINTER = 4, + ATA_LOG_DIRECTORY = 0, + ATA_LOG_SATA_NCQ = 16, + ATA_LOG_NCQ_NON_DATA = 18, + ATA_LOG_NCQ_SEND_RECV = 19, + ATA_LOG_CDL = 24, + ATA_LOG_CDL_SIZE = 512, + ATA_LOG_IDENTIFY_DEVICE = 48, + ATA_LOG_SENSE_NCQ = 15, + ATA_LOG_SENSE_NCQ_SIZE = 1024, + ATA_LOG_CONCURRENT_POSITIONING_RANGES = 71, + ATA_LOG_SUPPORTED_CAPABILITIES = 3, + ATA_LOG_CURRENT_SETTINGS = 4, + ATA_LOG_SECURITY = 6, + ATA_LOG_SATA_SETTINGS = 8, + ATA_LOG_ZONED_INFORMATION = 9, + ATA_LOG_DEVSLP_OFFSET = 48, + ATA_LOG_DEVSLP_SIZE = 8, + ATA_LOG_DEVSLP_MDAT = 0, + ATA_LOG_DEVSLP_MDAT_MASK = 31, + ATA_LOG_DEVSLP_DETO = 1, + ATA_LOG_DEVSLP_VALID = 7, + ATA_LOG_DEVSLP_VALID_MASK = 128, + ATA_LOG_NCQ_PRIO_OFFSET = 9, + ATA_LOG_NCQ_SEND_RECV_SUBCMDS_OFFSET = 0, + ATA_LOG_NCQ_SEND_RECV_SUBCMDS_DSM = 1, + ATA_LOG_NCQ_SEND_RECV_DSM_OFFSET = 4, + ATA_LOG_NCQ_SEND_RECV_DSM_TRIM = 1, + ATA_LOG_NCQ_SEND_RECV_RD_LOG_OFFSET = 8, + ATA_LOG_NCQ_SEND_RECV_RD_LOG_SUPPORTED = 1, + ATA_LOG_NCQ_SEND_RECV_WR_LOG_OFFSET = 12, + ATA_LOG_NCQ_SEND_RECV_WR_LOG_SUPPORTED = 1, + ATA_LOG_NCQ_SEND_RECV_ZAC_MGMT_OFFSET = 16, + ATA_LOG_NCQ_SEND_RECV_ZAC_MGMT_OUT_SUPPORTED = 1, + ATA_LOG_NCQ_SEND_RECV_ZAC_MGMT_IN_SUPPORTED = 2, + ATA_LOG_NCQ_SEND_RECV_SIZE = 20, + ATA_LOG_NCQ_NON_DATA_SUBCMDS_OFFSET = 0, + ATA_LOG_NCQ_NON_DATA_ABORT_OFFSET = 0, + ATA_LOG_NCQ_NON_DATA_ABORT_NCQ = 1, + ATA_LOG_NCQ_NON_DATA_ABORT_ALL = 2, + ATA_LOG_NCQ_NON_DATA_ABORT_STREAMING = 4, + ATA_LOG_NCQ_NON_DATA_ABORT_NON_STREAMING = 8, + ATA_LOG_NCQ_NON_DATA_ABORT_SELECTED = 16, + ATA_LOG_NCQ_NON_DATA_ZAC_MGMT_OFFSET = 28, + ATA_LOG_NCQ_NON_DATA_ZAC_MGMT_OUT = 1, + ATA_LOG_NCQ_NON_DATA_SIZE = 64, + ATA_CMD_READ_LONG = 34, + ATA_CMD_READ_LONG_ONCE = 35, + ATA_CMD_WRITE_LONG = 50, + ATA_CMD_WRITE_LONG_ONCE = 51, + SETFEATURES_XFER = 3, + XFER_UDMA_7 = 71, + XFER_UDMA_6 = 70, + XFER_UDMA_5 = 69, + XFER_UDMA_4 = 68, + XFER_UDMA_3 = 67, + XFER_UDMA_2 = 66, + XFER_UDMA_1 = 65, + XFER_UDMA_0 = 64, + XFER_MW_DMA_4 = 36, + XFER_MW_DMA_3 = 35, + XFER_MW_DMA_2 = 34, + XFER_MW_DMA_1 = 33, + XFER_MW_DMA_0 = 32, + XFER_SW_DMA_2 = 18, + XFER_SW_DMA_1 = 17, + XFER_SW_DMA_0 = 16, + XFER_PIO_6 = 14, + XFER_PIO_5 = 13, + XFER_PIO_4 = 12, + XFER_PIO_3 = 11, + XFER_PIO_2 = 10, + XFER_PIO_1 = 9, + XFER_PIO_0 = 8, + XFER_PIO_SLOW = 0, + SETFEATURES_WC_ON = 2, + SETFEATURES_WC_OFF = 130, + SETFEATURES_RA_ON = 170, + SETFEATURES_RA_OFF = 85, + SETFEATURES_AAM_ON = 66, + SETFEATURES_AAM_OFF = 194, + SETFEATURES_SPINUP = 7, + SETFEATURES_SPINUP_TIMEOUT = 30000, + SETFEATURES_SATA_ENABLE = 16, + SETFEATURES_SATA_DISABLE = 144, + SETFEATURES_CDL = 13, + SATA_FPDMA_OFFSET = 1, + SATA_FPDMA_AA = 2, + SATA_DIPM = 3, + SATA_FPDMA_IN_ORDER = 4, + SATA_AN = 5, + SATA_SSP = 6, + SATA_DEVSLP = 9, + SETFEATURE_SENSE_DATA = 195, + SETFEATURE_SENSE_DATA_SUCC_NCQ = 196, + ATA_SET_MAX_ADDR = 0, + ATA_SET_MAX_PASSWD = 1, + ATA_SET_MAX_LOCK = 2, + ATA_SET_MAX_UNLOCK = 3, + ATA_SET_MAX_FREEZE_LOCK = 4, + ATA_SET_MAX_PASSWD_DMA = 5, + ATA_SET_MAX_UNLOCK_DMA = 6, + ATA_DCO_RESTORE = 192, + ATA_DCO_FREEZE_LOCK = 193, + ATA_DCO_IDENTIFY = 194, + ATA_DCO_SET = 195, + ATA_SMART_ENABLE = 216, + ATA_SMART_READ_VALUES = 208, + ATA_SMART_READ_THRESHOLDS = 209, + ATA_DSM_TRIM = 1, + ATA_SMART_LBAM_PASS = 79, + ATA_SMART_LBAH_PASS = 194, + ATAPI_PKT_DMA = 1, + ATAPI_DMADIR = 4, + ATAPI_CDB_LEN = 16, + SATA_PMP_MAX_PORTS = 15, + SATA_PMP_CTRL_PORT = 15, + SATA_PMP_GSCR_DWORDS = 128, + SATA_PMP_GSCR_PROD_ID = 0, + SATA_PMP_GSCR_REV = 1, + SATA_PMP_GSCR_PORT_INFO = 2, + SATA_PMP_GSCR_ERROR = 32, + SATA_PMP_GSCR_ERROR_EN = 33, + SATA_PMP_GSCR_FEAT = 64, + SATA_PMP_GSCR_FEAT_EN = 96, + SATA_PMP_PSCR_STATUS = 0, + SATA_PMP_PSCR_ERROR = 1, + SATA_PMP_PSCR_CONTROL = 2, + SATA_PMP_FEAT_BIST = 1, + SATA_PMP_FEAT_PMREQ = 2, + SATA_PMP_FEAT_DYNSSC = 4, + SATA_PMP_FEAT_NOTIFY = 8, + ATA_CBL_NONE = 0, + ATA_CBL_PATA40 = 1, + ATA_CBL_PATA80 = 2, + ATA_CBL_PATA40_SHORT = 3, + ATA_CBL_PATA_UNK = 4, + ATA_CBL_PATA_IGN = 5, + ATA_CBL_SATA = 6, + SCR_STATUS = 0, + SCR_ERROR = 1, + SCR_CONTROL = 2, + SCR_ACTIVE = 3, + SCR_NOTIFICATION = 4, + SERR_DATA_RECOVERED = 1, + SERR_COMM_RECOVERED = 2, + SERR_DATA = 256, + SERR_PERSISTENT = 512, + SERR_PROTOCOL = 1024, + SERR_INTERNAL = 2048, + SERR_PHYRDY_CHG = 65536, + SERR_PHY_INT_ERR = 131072, + SERR_COMM_WAKE = 262144, + SERR_10B_8B_ERR = 524288, + SERR_DISPARITY = 1048576, + SERR_CRC = 2097152, + SERR_HANDSHAKE = 4194304, + SERR_LINK_SEQ_ERR = 8388608, + SERR_TRANS_ST_ERROR = 16777216, + SERR_UNRECOG_FIS = 33554432, + SERR_DEV_XCHG = 67108864, +}; + +enum ata_prot_flags { + ATA_PROT_FLAG_PIO = 1, + ATA_PROT_FLAG_DMA = 2, + ATA_PROT_FLAG_NCQ = 4, + ATA_PROT_FLAG_ATAPI = 8, + ATA_PROT_UNKNOWN = 255, + ATA_PROT_NODATA = 0, + ATA_PROT_PIO = 1, + ATA_PROT_DMA = 2, + ATA_PROT_NCQ_NODATA = 4, + ATA_PROT_NCQ = 6, + ATAPI_PROT_NODATA = 8, + ATAPI_PROT_PIO = 9, + ATAPI_PROT_DMA = 10, +}; + +struct ata_bmdma_prd { + __le32 addr; + __le32 flags_len; +}; + +struct cdrom_msf0 { + __u8 minute; + __u8 second; + __u8 frame; +}; + +union cdrom_addr { + struct cdrom_msf0 msf; + int lba; +}; + +struct cdrom_multisession { + union cdrom_addr addr; + __u8 xa_flag; + __u8 addr_format; +}; + +struct cdrom_mcn { + __u8 medium_catalog_number[14]; +}; + +struct packet_command { + unsigned char cmd[12]; + unsigned char *buffer; + unsigned int buflen; + int stat; + struct scsi_sense_hdr *sshdr; + unsigned char data_direction; + int quiet; + int timeout; + void *reserved[1]; +}; + +struct cdrom_device_ops { + int (*open)(struct cdrom_device_info *, int); + void (*release)(struct cdrom_device_info *); + int (*drive_status)(struct cdrom_device_info *, int); + unsigned int (*check_events)(struct cdrom_device_info *, unsigned int, int); + int (*tray_move)(struct cdrom_device_info *, int); + int (*lock_door)(struct cdrom_device_info *, int); + int (*select_speed)(struct cdrom_device_info *, long unsigned int); + int (*get_last_session)(struct cdrom_device_info *, struct cdrom_multisession *); + int (*get_mcn)(struct cdrom_device_info *, struct cdrom_mcn *); + int (*reset)(struct cdrom_device_info *); + int (*audio_ioctl)(struct cdrom_device_info *, unsigned int, void *); + int (*generic_packet)(struct cdrom_device_info *, struct packet_command *); + int (*read_cdda_bpc)(struct cdrom_device_info *, void *, u32, u32, u8 *); + const int capability; +}; + +enum ata_quirks { + __ATA_QUIRK_DIAGNOSTIC = 0, + __ATA_QUIRK_NODMA = 1, + __ATA_QUIRK_NONCQ = 2, + __ATA_QUIRK_MAX_SEC_128 = 3, + __ATA_QUIRK_BROKEN_HPA = 4, + __ATA_QUIRK_DISABLE = 5, + __ATA_QUIRK_HPA_SIZE = 6, + __ATA_QUIRK_IVB = 7, + __ATA_QUIRK_STUCK_ERR = 8, + __ATA_QUIRK_BRIDGE_OK = 9, + __ATA_QUIRK_ATAPI_MOD16_DMA = 10, + __ATA_QUIRK_FIRMWARE_WARN = 11, + __ATA_QUIRK_1_5_GBPS = 12, + __ATA_QUIRK_NOSETXFER = 13, + __ATA_QUIRK_BROKEN_FPDMA_AA = 14, + __ATA_QUIRK_DUMP_ID = 15, + __ATA_QUIRK_MAX_SEC_LBA48 = 16, + __ATA_QUIRK_ATAPI_DMADIR = 17, + __ATA_QUIRK_NO_NCQ_TRIM = 18, + __ATA_QUIRK_NOLPM = 19, + __ATA_QUIRK_WD_BROKEN_LPM = 20, + __ATA_QUIRK_ZERO_AFTER_TRIM = 21, + __ATA_QUIRK_NO_DMA_LOG = 22, + __ATA_QUIRK_NOTRIM = 23, + __ATA_QUIRK_MAX_SEC_1024 = 24, + __ATA_QUIRK_MAX_TRIM_128M = 25, + __ATA_QUIRK_NO_NCQ_ON_ATI = 26, + __ATA_QUIRK_NO_LPM_ON_ATI = 27, + __ATA_QUIRK_NO_ID_DEV_LOG = 28, + __ATA_QUIRK_NO_LOG_DIR = 29, + __ATA_QUIRK_NO_FUA = 30, + __ATA_QUIRK_MAX = 31, +}; + +enum { + LIBATA_MAX_PRD = 128, + LIBATA_DUMB_MAX_PRD = 64, + ATA_DEF_QUEUE = 1, + ATA_MAX_QUEUE = 32, + ATA_TAG_INTERNAL = 32, + ATA_SHORT_PAUSE = 16, + ATAPI_MAX_DRAIN = 16384, + ATA_ALL_DEVICES = 3, + ATA_SHT_EMULATED = 1, + ATA_SHT_THIS_ID = -1, + ATA_TFLAG_LBA48 = 1, + ATA_TFLAG_ISADDR = 2, + ATA_TFLAG_DEVICE = 4, + ATA_TFLAG_WRITE = 8, + ATA_TFLAG_LBA = 16, + ATA_TFLAG_FUA = 32, + ATA_TFLAG_POLLING = 64, + ATA_DFLAG_LBA = 1, + ATA_DFLAG_LBA48 = 2, + ATA_DFLAG_CDB_INTR = 4, + ATA_DFLAG_NCQ = 8, + ATA_DFLAG_FLUSH_EXT = 16, + ATA_DFLAG_ACPI_PENDING = 32, + ATA_DFLAG_ACPI_FAILED = 64, + ATA_DFLAG_AN = 128, + ATA_DFLAG_TRUSTED = 256, + ATA_DFLAG_FUA = 512, + ATA_DFLAG_DMADIR = 1024, + ATA_DFLAG_NCQ_SEND_RECV = 2048, + ATA_DFLAG_NCQ_PRIO = 4096, + ATA_DFLAG_CDL = 8192, + ATA_DFLAG_CFG_MASK = 16383, + ATA_DFLAG_PIO = 16384, + ATA_DFLAG_NCQ_OFF = 32768, + ATA_DFLAG_SLEEPING = 65536, + ATA_DFLAG_DUBIOUS_XFER = 131072, + ATA_DFLAG_NO_UNLOAD = 262144, + ATA_DFLAG_UNLOCK_HPA = 524288, + ATA_DFLAG_INIT_MASK = 1048575, + ATA_DFLAG_NCQ_PRIO_ENABLED = 1048576, + ATA_DFLAG_CDL_ENABLED = 2097152, + ATA_DFLAG_RESUMING = 4194304, + ATA_DFLAG_DETACH = 16777216, + ATA_DFLAG_DETACHED = 33554432, + ATA_DFLAG_DA = 67108864, + ATA_DFLAG_DEVSLP = 134217728, + ATA_DFLAG_ACPI_DISABLED = 268435456, + ATA_DFLAG_D_SENSE = 536870912, + ATA_DFLAG_FEATURES_MASK = 201341696, + ATA_DEV_UNKNOWN = 0, + ATA_DEV_ATA = 1, + ATA_DEV_ATA_UNSUP = 2, + ATA_DEV_ATAPI = 3, + ATA_DEV_ATAPI_UNSUP = 4, + ATA_DEV_PMP = 5, + ATA_DEV_PMP_UNSUP = 6, + ATA_DEV_SEMB = 7, + ATA_DEV_SEMB_UNSUP = 8, + ATA_DEV_ZAC = 9, + ATA_DEV_ZAC_UNSUP = 10, + ATA_DEV_NONE = 11, + ATA_LFLAG_NO_HRST = 2, + ATA_LFLAG_NO_SRST = 4, + ATA_LFLAG_ASSUME_ATA = 8, + ATA_LFLAG_ASSUME_SEMB = 16, + ATA_LFLAG_ASSUME_CLASS = 24, + ATA_LFLAG_NO_RETRY = 32, + ATA_LFLAG_DISABLED = 64, + ATA_LFLAG_SW_ACTIVITY = 128, + ATA_LFLAG_NO_LPM = 256, + ATA_LFLAG_RST_ONCE = 512, + ATA_LFLAG_CHANGED = 1024, + ATA_LFLAG_NO_DEBOUNCE_DELAY = 2048, + ATA_FLAG_SLAVE_POSS = 1, + ATA_FLAG_SATA = 2, + ATA_FLAG_NO_LPM = 4, + ATA_FLAG_NO_LOG_PAGE = 32, + ATA_FLAG_NO_ATAPI = 64, + ATA_FLAG_PIO_DMA = 128, + ATA_FLAG_PIO_LBA48 = 256, + ATA_FLAG_PIO_POLLING = 512, + ATA_FLAG_NCQ = 1024, + ATA_FLAG_NO_POWEROFF_SPINDOWN = 2048, + ATA_FLAG_NO_HIBERNATE_SPINDOWN = 4096, + ATA_FLAG_DEBUGMSG = 8192, + ATA_FLAG_FPDMA_AA = 16384, + ATA_FLAG_IGN_SIMPLEX = 32768, + ATA_FLAG_NO_IORDY = 65536, + ATA_FLAG_ACPI_SATA = 131072, + ATA_FLAG_AN = 262144, + ATA_FLAG_PMP = 524288, + ATA_FLAG_FPDMA_AUX = 1048576, + ATA_FLAG_EM = 2097152, + ATA_FLAG_SW_ACTIVITY = 4194304, + ATA_FLAG_NO_DIPM = 8388608, + ATA_FLAG_SAS_HOST = 16777216, + ATA_PFLAG_EH_PENDING = 1, + ATA_PFLAG_EH_IN_PROGRESS = 2, + ATA_PFLAG_FROZEN = 4, + ATA_PFLAG_RECOVERED = 8, + ATA_PFLAG_LOADING = 16, + ATA_PFLAG_SCSI_HOTPLUG = 64, + ATA_PFLAG_INITIALIZING = 128, + ATA_PFLAG_RESETTING = 256, + ATA_PFLAG_UNLOADING = 512, + ATA_PFLAG_UNLOADED = 1024, + ATA_PFLAG_RESUMING = 65536, + ATA_PFLAG_SUSPENDED = 131072, + ATA_PFLAG_PM_PENDING = 262144, + ATA_PFLAG_INIT_GTM_VALID = 524288, + ATA_PFLAG_PIO32 = 1048576, + ATA_PFLAG_PIO32CHANGE = 2097152, + ATA_PFLAG_EXTERNAL = 4194304, + ATA_QCFLAG_ACTIVE = 1, + ATA_QCFLAG_DMAMAP = 2, + ATA_QCFLAG_RTF_FILLED = 4, + ATA_QCFLAG_IO = 8, + ATA_QCFLAG_RESULT_TF = 16, + ATA_QCFLAG_CLEAR_EXCL = 32, + ATA_QCFLAG_QUIET = 64, + ATA_QCFLAG_RETRY = 128, + ATA_QCFLAG_HAS_CDL = 256, + ATA_QCFLAG_EH = 65536, + ATA_QCFLAG_SENSE_VALID = 131072, + ATA_QCFLAG_EH_SCHEDULED = 262144, + ATA_QCFLAG_EH_SUCCESS_CMD = 524288, + ATA_HOST_SIMPLEX = 1, + ATA_HOST_STARTED = 2, + ATA_HOST_PARALLEL_SCAN = 4, + ATA_HOST_IGNORE_ATA = 8, + ATA_HOST_NO_PART = 16, + ATA_HOST_NO_SSC = 32, + ATA_HOST_NO_DEVSLP = 64, + ATA_TMOUT_INTERNAL_QUICK = 5000, + ATA_TMOUT_MAX_PARK = 30000, + ATA_TMOUT_FF_WAIT_LONG = 2000, + ATA_TMOUT_FF_WAIT = 800, + ATA_WAIT_AFTER_RESET = 150, + ATA_TMOUT_PMP_SRST_WAIT = 10000, + ATA_TMOUT_SPURIOUS_PHY = 10000, + BUS_UNKNOWN = 0, + BUS_DMA = 1, + BUS_IDLE = 2, + BUS_NOINTR = 3, + BUS_NODATA = 4, + BUS_TIMER = 5, + BUS_PIO = 6, + BUS_EDD = 7, + BUS_IDENTIFY = 8, + BUS_PACKET = 9, + PORT_UNKNOWN = 0, + PORT_ENABLED = 1, + PORT_DISABLED = 2, + ATA_NR_PIO_MODES = 7, + ATA_NR_MWDMA_MODES = 5, + ATA_NR_UDMA_MODES = 8, + ATA_SHIFT_PIO = 0, + ATA_SHIFT_MWDMA = 7, + ATA_SHIFT_UDMA = 12, + ATA_SHIFT_PRIO = 6, + ATA_PRIO_HIGH = 2, + ATA_DMA_PAD_SZ = 4, + ATA_ERING_SIZE = 32, + ATA_DEFER_LINK = 1, + ATA_DEFER_PORT = 2, + ATA_EH_DESC_LEN = 80, + ATA_EH_REVALIDATE = 1, + ATA_EH_SOFTRESET = 2, + ATA_EH_HARDRESET = 4, + ATA_EH_RESET = 6, + ATA_EH_ENABLE_LINK = 8, + ATA_EH_PARK = 32, + ATA_EH_GET_SUCCESS_SENSE = 64, + ATA_EH_SET_ACTIVE = 128, + ATA_EH_PERDEV_MASK = 225, + ATA_EH_ALL_ACTIONS = 15, + ATA_EHI_HOTPLUGGED = 1, + ATA_EHI_NO_AUTOPSY = 4, + ATA_EHI_QUIET = 8, + ATA_EHI_NO_RECOVERY = 16, + ATA_EHI_DID_SOFTRESET = 65536, + ATA_EHI_DID_HARDRESET = 131072, + ATA_EHI_PRINTINFO = 262144, + ATA_EHI_SETMODE = 524288, + ATA_EHI_POST_SETMODE = 1048576, + ATA_EHI_DID_PRINT_QUIRKS = 2097152, + ATA_EHI_DID_RESET = 196608, + ATA_EHI_TO_SLAVE_MASK = 12, + ATA_EH_MAX_TRIES = 5, + ATA_LINK_RESUME_TRIES = 5, + ATA_EH_DEV_TRIES = 3, + ATA_EH_PMP_TRIES = 5, + ATA_EH_PMP_LINK_TRIES = 3, + SATA_PMP_RW_TIMEOUT = 3000, + ATA_EH_CMD_TIMEOUT_TABLE_SIZE = 8, + ATA_QUIRK_DIAGNOSTIC = 1, + ATA_QUIRK_NODMA = 2, + ATA_QUIRK_NONCQ = 4, + ATA_QUIRK_MAX_SEC_128 = 8, + ATA_QUIRK_BROKEN_HPA = 16, + ATA_QUIRK_DISABLE = 32, + ATA_QUIRK_HPA_SIZE = 64, + ATA_QUIRK_IVB = 128, + ATA_QUIRK_STUCK_ERR = 256, + ATA_QUIRK_BRIDGE_OK = 512, + ATA_QUIRK_ATAPI_MOD16_DMA = 1024, + ATA_QUIRK_FIRMWARE_WARN = 2048, + ATA_QUIRK_1_5_GBPS = 4096, + ATA_QUIRK_NOSETXFER = 8192, + ATA_QUIRK_BROKEN_FPDMA_AA = 16384, + ATA_QUIRK_DUMP_ID = 32768, + ATA_QUIRK_MAX_SEC_LBA48 = 65536, + ATA_QUIRK_ATAPI_DMADIR = 131072, + ATA_QUIRK_NO_NCQ_TRIM = 262144, + ATA_QUIRK_NOLPM = 524288, + ATA_QUIRK_WD_BROKEN_LPM = 1048576, + ATA_QUIRK_ZERO_AFTER_TRIM = 2097152, + ATA_QUIRK_NO_DMA_LOG = 4194304, + ATA_QUIRK_NOTRIM = 8388608, + ATA_QUIRK_MAX_SEC_1024 = 16777216, + ATA_QUIRK_MAX_TRIM_128M = 33554432, + ATA_QUIRK_NO_NCQ_ON_ATI = 67108864, + ATA_QUIRK_NO_LPM_ON_ATI = 134217728, + ATA_QUIRK_NO_ID_DEV_LOG = 268435456, + ATA_QUIRK_NO_LOG_DIR = 536870912, + ATA_QUIRK_NO_FUA = 1073741824, + ATA_DMA_MASK_ATA = 1, + ATA_DMA_MASK_ATAPI = 2, + ATA_DMA_MASK_CFA = 4, + ATAPI_READ = 0, + ATAPI_WRITE = 1, + ATAPI_READ_CD = 2, + ATAPI_PASS_THRU = 3, + ATAPI_MISC = 4, + ATA_TIMING_SETUP = 1, + ATA_TIMING_ACT8B = 2, + ATA_TIMING_REC8B = 4, + ATA_TIMING_CYC8B = 8, + ATA_TIMING_8BIT = 14, + ATA_TIMING_ACTIVE = 16, + ATA_TIMING_RECOVER = 32, + ATA_TIMING_DMACK_HOLD = 64, + ATA_TIMING_CYCLE = 128, + ATA_TIMING_UDMA = 256, + ATA_TIMING_ALL = 511, + ATA_ACPI_FILTER_SETXFER = 1, + ATA_ACPI_FILTER_LOCK = 2, + ATA_ACPI_FILTER_DIPM = 4, + ATA_ACPI_FILTER_FPDMA_OFFSET = 8, + ATA_ACPI_FILTER_FPDMA_AA = 16, + ATA_ACPI_FILTER_DEFAULT = 7, +}; + +enum ata_xfer_mask { + ATA_MASK_PIO = 127, + ATA_MASK_MWDMA = 3968, + ATA_MASK_UDMA = 1044480, +}; + +enum hsm_task_states { + HSM_ST_IDLE = 0, + HSM_ST_FIRST = 1, + HSM_ST = 2, + HSM_ST_LAST = 3, + HSM_ST_ERR = 4, +}; + +enum ata_completion_errors { + AC_ERR_OK = 0, + AC_ERR_DEV = 1, + AC_ERR_HSM = 2, + AC_ERR_TIMEOUT = 4, + AC_ERR_MEDIA = 8, + AC_ERR_ATA_BUS = 16, + AC_ERR_HOST_BUS = 32, + AC_ERR_SYSTEM = 64, + AC_ERR_INVALID = 128, + AC_ERR_OTHER = 256, + AC_ERR_NODEV_HINT = 512, + AC_ERR_NCQ = 1024, +}; + +enum ata_lpm_policy { + ATA_LPM_UNKNOWN = 0, + ATA_LPM_MAX_POWER = 1, + ATA_LPM_MED_POWER = 2, + ATA_LPM_MED_POWER_WITH_DIPM = 3, + ATA_LPM_MIN_POWER_WITH_PARTIAL = 4, + ATA_LPM_MIN_POWER = 5, +}; + +struct ata_queued_cmd; + +typedef void (*ata_qc_cb_t)(struct ata_queued_cmd *); + +struct ata_taskfile { + long unsigned int flags; + u8 protocol; + u8 ctl; + u8 hob_feature; + u8 hob_nsect; + u8 hob_lbal; + u8 hob_lbam; + u8 hob_lbah; + union { + u8 error; + u8 feature; + }; + u8 nsect; + u8 lbal; + u8 lbam; + u8 lbah; + u8 device; + union { + u8 status; + u8 command; + }; + u32 auxiliary; +}; + +struct ata_port; + +struct ata_device; + +struct ata_queued_cmd { + struct ata_port *ap; + struct ata_device *dev; + struct scsi_cmnd *scsicmd; + void (*scsidone)(struct scsi_cmnd *); + struct ata_taskfile tf; + u8 cdb[16]; + long unsigned int flags; + unsigned int tag; + unsigned int hw_tag; + unsigned int n_elem; + unsigned int orig_n_elem; + int dma_dir; + unsigned int sect_size; + unsigned int nbytes; + unsigned int extrabytes; + unsigned int curbytes; + struct scatterlist sgent; + struct scatterlist *sg; + struct scatterlist *cursg; + unsigned int cursg_ofs; + unsigned int err_mask; + struct ata_taskfile result_tf; + ata_qc_cb_t complete_fn; + void *private_data; + void *lldd_task; +}; + +struct ata_link; + +typedef int (*ata_prereset_fn_t)(struct ata_link *, long unsigned int); + +struct ata_eh_info { + struct ata_device *dev; + u32 serror; + unsigned int err_mask; + unsigned int action; + unsigned int dev_action[2]; + unsigned int flags; + unsigned int probe_mask; + char desc[80]; + int desc_len; +}; + +struct ata_eh_context { + struct ata_eh_info i; + int tries[2]; + int cmd_timeout_idx[16]; + unsigned int classes[2]; + unsigned int did_probe_mask; + unsigned int unloaded_mask; + unsigned int saved_ncq_enabled; + u8 saved_xfer_mode[2]; + long unsigned int last_reset; +}; + +struct ata_ering_entry { + unsigned int eflags; + unsigned int err_mask; + u64 timestamp; +}; + +struct ata_ering { + int cursor; + struct ata_ering_entry ring[32]; +}; + +struct ata_cpr_log; + +struct ata_cdl; + +struct ata_device { + struct ata_link *link; + unsigned int devno; + unsigned int quirks; + long unsigned int flags; + struct scsi_device *sdev; + void *private_data; + union acpi_object *gtf_cache; + unsigned int gtf_filter; + struct device tdev; + u64 n_sectors; + u64 n_native_sectors; + unsigned int class; + long unsigned int unpark_deadline; + u8 pio_mode; + u8 dma_mode; + u8 xfer_mode; + unsigned int xfer_shift; + unsigned int multi_count; + unsigned int max_sectors; + unsigned int cdb_len; + unsigned int pio_mask; + unsigned int mwdma_mask; + unsigned int udma_mask; + u16 cylinders; + u16 heads; + u16 sectors; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + union { + u16 id[256]; + u32 gscr[128]; + }; + u8 gp_log_dir[512]; + u8 devslp_timing[8]; + u8 ncq_send_recv_cmds[20]; + u8 ncq_non_data_cmds[64]; + u32 zac_zoned_cap; + u32 zac_zones_optimal_open; + u32 zac_zones_optimal_nonseq; + u32 zac_zones_max_open; + struct ata_cpr_log *cpr_log; + struct ata_cdl *cdl; + int spdn_cnt; + struct ata_ering ering; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + u8 sector_buf[512]; +}; + +struct ata_link { + struct ata_port *ap; + int pmp; + struct device tdev; + unsigned int active_tag; + u32 sactive; + unsigned int flags; + u32 saved_scontrol; + unsigned int hw_sata_spd_limit; + unsigned int sata_spd_limit; + unsigned int sata_spd; + enum ata_lpm_policy lpm_policy; + struct ata_eh_info eh_info; + struct ata_eh_context eh_context; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct ata_device device[2]; + long unsigned int last_lpm_change; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +typedef int (*ata_reset_fn_t)(struct ata_link *, unsigned int *, long unsigned int); + +typedef void (*ata_postreset_fn_t)(struct ata_link *, unsigned int *); + +enum sw_activity { + OFF = 0, + BLINK_ON = 1, + BLINK_OFF = 2, +}; + +struct ata_ioports { + void *cmd_addr; + void *data_addr; + void *error_addr; + void *feature_addr; + void *nsect_addr; + void *lbal_addr; + void *lbam_addr; + void *lbah_addr; + void *device_addr; + void *status_addr; + void *command_addr; + void *altstatus_addr; + void *ctl_addr; + void *bmdma_addr; + void *scr_addr; +}; + +struct ata_port_operations; + +struct ata_host { + spinlock_t lock; + struct device *dev; + void * const *iomap; + unsigned int n_ports; + unsigned int n_tags; + void *private_data; + struct ata_port_operations *ops; + long unsigned int flags; + struct kref kref; + struct mutex eh_mutex; + struct task_struct *eh_owner; + struct ata_port *simplex_claimed; + struct ata_port *ports[0]; +}; + +struct ata_reset_operations { + ata_prereset_fn_t prereset; + ata_reset_fn_t softreset; + ata_reset_fn_t hardreset; + ata_postreset_fn_t postreset; +}; + +struct ata_port_operations { + int (*qc_defer)(struct ata_queued_cmd *); + int (*check_atapi_dma)(struct ata_queued_cmd *); + enum ata_completion_errors (*qc_prep)(struct ata_queued_cmd *); + unsigned int (*qc_issue)(struct ata_queued_cmd *); + void (*qc_fill_rtf)(struct ata_queued_cmd *); + void (*qc_ncq_fill_rtf)(struct ata_port *, u64); + int (*cable_detect)(struct ata_port *); + unsigned int (*mode_filter)(struct ata_device *, unsigned int); + void (*set_piomode)(struct ata_port *, struct ata_device *); + void (*set_dmamode)(struct ata_port *, struct ata_device *); + int (*set_mode)(struct ata_link *, struct ata_device **); + unsigned int (*read_id)(struct ata_device *, struct ata_taskfile *, __le16 *); + void (*dev_config)(struct ata_device *); + void (*freeze)(struct ata_port *); + void (*thaw)(struct ata_port *); + struct ata_reset_operations reset; + struct ata_reset_operations pmp_reset; + void (*error_handler)(struct ata_port *); + void (*lost_interrupt)(struct ata_port *); + void (*post_internal_cmd)(struct ata_queued_cmd *); + void (*sched_eh)(struct ata_port *); + void (*end_eh)(struct ata_port *); + int (*scr_read)(struct ata_link *, unsigned int, u32 *); + int (*scr_write)(struct ata_link *, unsigned int, u32); + void (*pmp_attach)(struct ata_port *); + void (*pmp_detach)(struct ata_port *); + int (*set_lpm)(struct ata_link *, enum ata_lpm_policy, unsigned int); + int (*port_suspend)(struct ata_port *, pm_message_t); + int (*port_resume)(struct ata_port *); + int (*port_start)(struct ata_port *); + void (*port_stop)(struct ata_port *); + void (*host_stop)(struct ata_host *); + void (*sff_dev_select)(struct ata_port *, unsigned int); + void (*sff_set_devctl)(struct ata_port *, u8); + u8 (*sff_check_status)(struct ata_port *); + u8 (*sff_check_altstatus)(struct ata_port *); + void (*sff_tf_load)(struct ata_port *, const struct ata_taskfile *); + void (*sff_tf_read)(struct ata_port *, struct ata_taskfile *); + void (*sff_exec_command)(struct ata_port *, const struct ata_taskfile *); + unsigned int (*sff_data_xfer)(struct ata_queued_cmd *, unsigned char *, unsigned int, int); + void (*sff_irq_on)(struct ata_port *); + bool (*sff_irq_check)(struct ata_port *); + void (*sff_irq_clear)(struct ata_port *); + void (*sff_drain_fifo)(struct ata_queued_cmd *); + void (*bmdma_setup)(struct ata_queued_cmd *); + void (*bmdma_start)(struct ata_queued_cmd *); + void (*bmdma_stop)(struct ata_queued_cmd *); + u8 (*bmdma_status)(struct ata_port *); + ssize_t (*em_show)(struct ata_port *, char *); + ssize_t (*em_store)(struct ata_port *, const char *, size_t); + ssize_t (*sw_activity_show)(struct ata_device *, char *); + ssize_t (*sw_activity_store)(struct ata_device *, enum sw_activity); + ssize_t (*transmit_led_message)(struct ata_port *, u32, ssize_t); + const struct ata_port_operations *inherits; +}; + +struct ata_port_stats { + long unsigned int unhandled_irq; + long unsigned int idle_irq; + long unsigned int rw_reqbuf; +}; + +struct ata_acpi_drive { + u32 pio; + u32 dma; +}; + +struct ata_acpi_gtm { + struct ata_acpi_drive drive[2]; + u32 flags; +}; + +struct ata_port { + struct Scsi_Host *scsi_host; + struct ata_port_operations *ops; + spinlock_t *lock; + long unsigned int flags; + unsigned int pflags; + unsigned int print_id; + unsigned int port_no; + struct ata_ioports ioaddr; + u8 ctl; + u8 last_ctl; + struct ata_link *sff_pio_task_link; + struct delayed_work sff_pio_task; + struct ata_bmdma_prd *bmdma_prd; + dma_addr_t bmdma_prd_dma; + unsigned int pio_mask; + unsigned int mwdma_mask; + unsigned int udma_mask; + unsigned int cbl; + struct ata_queued_cmd qcmd[33]; + u64 qc_active; + int nr_active_links; + long: 64; + long: 64; + struct ata_link link; + struct ata_link *slave_link; + int nr_pmp_links; + struct ata_link *pmp_link; + struct ata_link *excl_link; + struct ata_port_stats stats; + struct ata_host *host; + struct device *dev; + struct device tdev; + struct mutex scsi_scan_mutex; + struct delayed_work hotplug_task; + struct delayed_work scsi_rescan_task; + unsigned int hsm_task_state; + struct list_head eh_done_q; + wait_queue_head_t eh_wait_q; + int eh_tries; + struct completion park_req_pending; + pm_message_t pm_mesg; + enum ata_lpm_policy target_lpm_policy; + struct timer_list fastdrain_timer; + unsigned int fastdrain_cnt; + async_cookie_t cookie; + int em_message_type; + void *private_data; + struct ata_acpi_gtm __acpi_init_gtm; + long: 64; + long: 64; + long: 64; +}; + +struct ata_cpr { + u8 num; + u8 num_storage_elements; + u64 start_lba; + u64 num_lbas; +}; + +struct ata_cpr_log { + u8 nr_cpr; + struct ata_cpr cpr[0]; +}; + +struct ata_cdl { + u8 desc_log_buf[512]; + u8 ncq_sense_log_buf[1024]; +}; + +struct ata_port_info { + long unsigned int flags; + long unsigned int link_flags; + unsigned int pio_mask; + unsigned int mwdma_mask; + unsigned int udma_mask; + struct ata_port_operations *port_ops; + void *private_data; +}; + +struct ata_timing { + short unsigned int mode; + short unsigned int setup; + short unsigned int act8b; + short unsigned int rec8b; + short unsigned int cyc8b; + short unsigned int active; + short unsigned int recover; + short unsigned int dmack_hold; + short unsigned int cycle; + short unsigned int udma; +}; + +struct pci_bits { + unsigned int reg; + unsigned int width; + long unsigned int mask; + long unsigned int val; +}; + +enum ata_link_iter_mode { + ATA_LITER_EDGE = 0, + ATA_LITER_HOST_FIRST = 1, + ATA_LITER_PMP_FIRST = 2, +}; + +enum ata_dev_iter_mode { + ATA_DITER_ENABLED = 0, + ATA_DITER_ENABLED_REVERSE = 1, + ATA_DITER_ALL = 2, + ATA_DITER_ALL_REVERSE = 3, +}; + +struct trace_event_raw_ata_qc_issue_template { + struct trace_entry ent; + unsigned int ata_port; + unsigned int ata_dev; + unsigned int tag; + unsigned char cmd; + unsigned char dev; + unsigned char lbal; + unsigned char lbam; + unsigned char lbah; + unsigned char nsect; + unsigned char feature; + unsigned char hob_lbal; + unsigned char hob_lbam; + unsigned char hob_lbah; + unsigned char hob_nsect; + unsigned char hob_feature; + unsigned char ctl; + unsigned char proto; + long unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_ata_qc_complete_template { + struct trace_entry ent; + unsigned int ata_port; + unsigned int ata_dev; + unsigned int tag; + unsigned char status; + unsigned char dev; + unsigned char lbal; + unsigned char lbam; + unsigned char lbah; + unsigned char nsect; + unsigned char error; + unsigned char hob_lbal; + unsigned char hob_lbam; + unsigned char hob_lbah; + unsigned char hob_nsect; + unsigned char hob_feature; + unsigned char ctl; + long unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_ata_tf_load { + struct trace_entry ent; + unsigned int ata_port; + unsigned char cmd; + unsigned char dev; + unsigned char lbal; + unsigned char lbam; + unsigned char lbah; + unsigned char nsect; + unsigned char feature; + unsigned char hob_lbal; + unsigned char hob_lbam; + unsigned char hob_lbah; + unsigned char hob_nsect; + unsigned char hob_feature; + unsigned char proto; + char __data[0]; +}; + +struct trace_event_raw_ata_exec_command_template { + struct trace_entry ent; + unsigned int ata_port; + unsigned int tag; + unsigned char cmd; + unsigned char feature; + unsigned char hob_nsect; + unsigned char proto; + char __data[0]; +}; + +struct trace_event_raw_ata_bmdma_status { + struct trace_entry ent; + unsigned int ata_port; + unsigned int tag; + unsigned char host_stat; + char __data[0]; +}; + +struct trace_event_raw_ata_eh_link_autopsy { + struct trace_entry ent; + unsigned int ata_port; + unsigned int ata_dev; + unsigned int eh_action; + unsigned int eh_err_mask; + char __data[0]; +}; + +struct trace_event_raw_ata_eh_link_autopsy_qc { + struct trace_entry ent; + unsigned int ata_port; + unsigned int ata_dev; + unsigned int tag; + unsigned int qc_flags; + unsigned int eh_err_mask; + char __data[0]; +}; + +struct trace_event_raw_ata_eh_action_template { + struct trace_entry ent; + unsigned int ata_port; + unsigned int ata_dev; + unsigned int eh_action; + char __data[0]; +}; + +struct trace_event_raw_ata_link_reset_begin_template { + struct trace_entry ent; + unsigned int ata_port; + unsigned int class[2]; + long unsigned int deadline; + char __data[0]; +}; + +struct trace_event_raw_ata_link_reset_end_template { + struct trace_entry ent; + unsigned int ata_port; + unsigned int class[2]; + int rc; + char __data[0]; +}; + +struct trace_event_raw_ata_port_eh_begin_template { + struct trace_entry ent; + unsigned int ata_port; + char __data[0]; +}; + +struct trace_event_raw_ata_sff_hsm_template { + struct trace_entry ent; + unsigned int ata_port; + unsigned int ata_dev; + unsigned int tag; + unsigned int qc_flags; + unsigned int protocol; + unsigned int hsm_state; + unsigned char dev_state; + char __data[0]; +}; + +struct trace_event_raw_ata_transfer_data_template { + struct trace_entry ent; + unsigned int ata_port; + unsigned int ata_dev; + unsigned int tag; + unsigned int flags; + unsigned int offset; + unsigned int bytes; + char __data[0]; +}; + +struct trace_event_raw_ata_sff_template { + struct trace_entry ent; + unsigned int ata_port; + unsigned char hsm_state; + char __data[0]; +}; + +struct trace_event_data_offsets_ata_qc_issue_template {}; + +struct trace_event_data_offsets_ata_qc_complete_template {}; + +struct trace_event_data_offsets_ata_tf_load {}; + +struct trace_event_data_offsets_ata_exec_command_template {}; + +struct trace_event_data_offsets_ata_bmdma_status {}; + +struct trace_event_data_offsets_ata_eh_link_autopsy {}; + +struct trace_event_data_offsets_ata_eh_link_autopsy_qc {}; + +struct trace_event_data_offsets_ata_eh_action_template {}; + +struct trace_event_data_offsets_ata_link_reset_begin_template {}; + +struct trace_event_data_offsets_ata_link_reset_end_template {}; + +struct trace_event_data_offsets_ata_port_eh_begin_template {}; + +struct trace_event_data_offsets_ata_sff_hsm_template {}; + +struct trace_event_data_offsets_ata_transfer_data_template {}; + +struct trace_event_data_offsets_ata_sff_template {}; + +typedef void (*btf_trace_ata_qc_prep)(void *, struct ata_queued_cmd *); + +typedef void (*btf_trace_ata_qc_issue)(void *, struct ata_queued_cmd *); + +typedef void (*btf_trace_ata_qc_complete_internal)(void *, struct ata_queued_cmd *); + +typedef void (*btf_trace_ata_qc_complete_failed)(void *, struct ata_queued_cmd *); + +typedef void (*btf_trace_ata_qc_complete_done)(void *, struct ata_queued_cmd *); + +typedef void (*btf_trace_ata_tf_load)(void *, struct ata_port *, const struct ata_taskfile *); + +typedef void (*btf_trace_ata_exec_command)(void *, struct ata_port *, const struct ata_taskfile *, unsigned int); + +typedef void (*btf_trace_ata_bmdma_setup)(void *, struct ata_port *, const struct ata_taskfile *, unsigned int); + +typedef void (*btf_trace_ata_bmdma_start)(void *, struct ata_port *, const struct ata_taskfile *, unsigned int); + +typedef void (*btf_trace_ata_bmdma_stop)(void *, struct ata_port *, const struct ata_taskfile *, unsigned int); + +typedef void (*btf_trace_ata_bmdma_status)(void *, struct ata_port *, unsigned int); + +typedef void (*btf_trace_ata_eh_link_autopsy)(void *, struct ata_device *, unsigned int, unsigned int); + +typedef void (*btf_trace_ata_eh_link_autopsy_qc)(void *, struct ata_queued_cmd *); + +typedef void (*btf_trace_ata_eh_about_to_do)(void *, struct ata_link *, unsigned int, unsigned int); + +typedef void (*btf_trace_ata_eh_done)(void *, struct ata_link *, unsigned int, unsigned int); + +typedef void (*btf_trace_ata_link_hardreset_begin)(void *, struct ata_link *, unsigned int *, long unsigned int); + +typedef void (*btf_trace_ata_slave_hardreset_begin)(void *, struct ata_link *, unsigned int *, long unsigned int); + +typedef void (*btf_trace_ata_link_softreset_begin)(void *, struct ata_link *, unsigned int *, long unsigned int); + +typedef void (*btf_trace_ata_link_hardreset_end)(void *, struct ata_link *, unsigned int *, int); + +typedef void (*btf_trace_ata_slave_hardreset_end)(void *, struct ata_link *, unsigned int *, int); + +typedef void (*btf_trace_ata_link_softreset_end)(void *, struct ata_link *, unsigned int *, int); + +typedef void (*btf_trace_ata_link_postreset)(void *, struct ata_link *, unsigned int *, int); + +typedef void (*btf_trace_ata_slave_postreset)(void *, struct ata_link *, unsigned int *, int); + +typedef void (*btf_trace_ata_std_sched_eh)(void *, struct ata_port *); + +typedef void (*btf_trace_ata_port_freeze)(void *, struct ata_port *); + +typedef void (*btf_trace_ata_port_thaw)(void *, struct ata_port *); + +typedef void (*btf_trace_ata_sff_hsm_state)(void *, struct ata_queued_cmd *, unsigned char); + +typedef void (*btf_trace_ata_sff_hsm_command_complete)(void *, struct ata_queued_cmd *, unsigned char); + +typedef void (*btf_trace_ata_sff_port_intr)(void *, struct ata_queued_cmd *, unsigned char); + +typedef void (*btf_trace_ata_sff_pio_transfer_data)(void *, struct ata_queued_cmd *, unsigned int, unsigned int); + +typedef void (*btf_trace_atapi_pio_transfer_data)(void *, struct ata_queued_cmd *, unsigned int, unsigned int); + +typedef void (*btf_trace_atapi_send_cdb)(void *, struct ata_queued_cmd *, unsigned int, unsigned int); + +typedef void (*btf_trace_ata_sff_flush_pio_task)(void *, struct ata_port *); + +enum { + ATA_READID_POSTRESET = 1, + ATA_DNXFER_PIO = 0, + ATA_DNXFER_DMA = 1, + ATA_DNXFER_40C = 2, + ATA_DNXFER_FORCE_PIO = 3, + ATA_DNXFER_FORCE_PIO0 = 4, + ATA_DNXFER_QUIET = -2147483648, +}; + +struct ata_force_param { + const char *name; + u8 cbl; + u8 spd_limit; + unsigned int xfer_mask; + unsigned int quirk_on; + unsigned int quirk_off; + unsigned int pflags_on; + u16 lflags_on; + u16 lflags_off; +}; + +struct ata_force_ent { + int port; + int device; + struct ata_force_param param; +}; + +struct ata_xfer_ent { + int shift; + int bits; + u8 base; +}; + +struct ata_dev_quirks_entry { + const char *model_num; + const char *model_rev; + unsigned int quirks; +}; + +struct ata_acpi_gtf { + u8 tf[7]; +}; + +struct ata_acpi_hotplug_context { + struct acpi_hotplug_context hp; + union { + struct ata_port *ap; + struct ata_device *dev; + } data; +}; + +enum { + ATA_GEN_CLASS_MATCH = 1, + ATA_GEN_FORCE_DMA = 2, + ATA_GEN_INTEL_IDER = 4, +}; + +struct drm_device; + +struct drm_master { + struct kref refcount; + struct drm_device *dev; + char *unique; + int unique_len; + struct idr magic_map; + void *driver_priv; + struct drm_master *lessor; + int lessee_id; + struct list_head lessee_list; + struct list_head lessees; + struct idr leases; + struct idr lessee_idr; +}; + +struct drm_modeset_lock { + struct ww_mutex mutex; + struct list_head head; +}; + +struct drm_modeset_acquire_ctx; + +struct drm_mode_config_funcs; + +struct drm_property; + +struct drm_atomic_state; + +struct drm_mode_config_helper_funcs; + +struct drm_mode_config { + struct mutex mutex; + struct drm_modeset_lock connection_mutex; + struct drm_modeset_acquire_ctx *acquire_ctx; + struct mutex idr_mutex; + struct idr object_idr; + struct idr tile_idr; + struct mutex fb_lock; + int num_fb; + struct list_head fb_list; + spinlock_t connector_list_lock; + int num_connector; + struct ida connector_ida; + struct list_head connector_list; + struct llist_head connector_free_list; + struct work_struct connector_free_work; + int num_encoder; + struct list_head encoder_list; + int num_total_plane; + struct list_head plane_list; + struct raw_spinlock panic_lock; + int num_crtc; + struct list_head crtc_list; + struct list_head property_list; + struct list_head privobj_list; + unsigned int min_width; + unsigned int min_height; + unsigned int max_width; + unsigned int max_height; + const struct drm_mode_config_funcs *funcs; + bool poll_enabled; + bool poll_running; + bool delayed_event; + struct delayed_work output_poll_work; + struct mutex blob_lock; + struct list_head property_blob_list; + struct drm_property *edid_property; + struct drm_property *dpms_property; + struct drm_property *path_property; + struct drm_property *tile_property; + struct drm_property *link_status_property; + struct drm_property *plane_type_property; + struct drm_property *prop_src_x; + struct drm_property *prop_src_y; + struct drm_property *prop_src_w; + struct drm_property *prop_src_h; + struct drm_property *prop_crtc_x; + struct drm_property *prop_crtc_y; + struct drm_property *prop_crtc_w; + struct drm_property *prop_crtc_h; + struct drm_property *prop_fb_id; + struct drm_property *prop_in_fence_fd; + struct drm_property *prop_out_fence_ptr; + struct drm_property *prop_crtc_id; + struct drm_property *prop_fb_damage_clips; + struct drm_property *prop_active; + struct drm_property *prop_mode_id; + struct drm_property *prop_vrr_enabled; + struct drm_property *dvi_i_subconnector_property; + struct drm_property *dvi_i_select_subconnector_property; + struct drm_property *dp_subconnector_property; + struct drm_property *tv_subconnector_property; + struct drm_property *tv_select_subconnector_property; + struct drm_property *legacy_tv_mode_property; + struct drm_property *tv_mode_property; + struct drm_property *tv_left_margin_property; + struct drm_property *tv_right_margin_property; + struct drm_property *tv_top_margin_property; + struct drm_property *tv_bottom_margin_property; + struct drm_property *tv_brightness_property; + struct drm_property *tv_contrast_property; + struct drm_property *tv_flicker_reduction_property; + struct drm_property *tv_overscan_property; + struct drm_property *tv_saturation_property; + struct drm_property *tv_hue_property; + struct drm_property *scaling_mode_property; + struct drm_property *aspect_ratio_property; + struct drm_property *content_type_property; + struct drm_property *degamma_lut_property; + struct drm_property *degamma_lut_size_property; + struct drm_property *ctm_property; + struct drm_property *gamma_lut_property; + struct drm_property *gamma_lut_size_property; + struct drm_property *suggested_x_property; + struct drm_property *suggested_y_property; + struct drm_property *non_desktop_property; + struct drm_property *panel_orientation_property; + struct drm_property *writeback_fb_id_property; + struct drm_property *writeback_pixel_formats_property; + struct drm_property *writeback_out_fence_ptr_property; + struct drm_property *hdr_output_metadata_property; + struct drm_property *content_protection_property; + struct drm_property *hdcp_content_type_property; + uint32_t preferred_depth; + uint32_t prefer_shadow; + bool quirk_addfb_prefer_xbgr_30bpp; + bool quirk_addfb_prefer_host_byte_order; + bool async_page_flip; + bool fb_modifiers_not_supported; + bool normalize_zpos; + struct drm_property *modifiers_property; + struct drm_property *async_modifiers_property; + struct drm_property *size_hints_property; + uint32_t cursor_width; + uint32_t cursor_height; + struct drm_atomic_state *suspend_state; + const struct drm_mode_config_helper_funcs *helper_private; +}; + +struct drm_vram_mm; + +enum switch_power_state { + DRM_SWITCH_POWER_ON = 0, + DRM_SWITCH_POWER_OFF = 1, + DRM_SWITCH_POWER_CHANGING = 2, + DRM_SWITCH_POWER_DYNAMIC_OFF = 3, +}; + +struct drm_driver; + +struct drm_minor; + +struct drm_vblank_crtc; + +struct drm_vma_offset_manager; + +struct drm_fb_helper; + +struct drm_device { + int if_version; + struct kref ref; + struct device *dev; + struct device *dma_dev; + struct { + struct list_head resources; + void *final_kfree; + spinlock_t lock; + } managed; + const struct drm_driver *driver; + void *dev_private; + struct drm_minor *primary; + struct drm_minor *render; + struct drm_minor *accel; + bool registered; + struct drm_master *master; + u32 driver_features; + bool unplugged; + struct inode *anon_inode; + char *unique; + struct mutex struct_mutex; + struct mutex master_mutex; + atomic_t open_count; + struct mutex filelist_mutex; + struct list_head filelist; + struct list_head filelist_internal; + struct mutex clientlist_mutex; + struct list_head clientlist; + bool vblank_disable_immediate; + struct drm_vblank_crtc *vblank; + spinlock_t vblank_time_lock; + spinlock_t vbl_lock; + u32 max_vblank_count; + struct list_head vblank_event_list; + spinlock_t event_lock; + unsigned int num_crtcs; + struct drm_mode_config mode_config; + struct mutex object_name_lock; + struct idr object_name_idr; + struct drm_vma_offset_manager *vma_offset_manager; + struct drm_vram_mm *vram_mm; + enum switch_power_state switch_power_state; + struct drm_fb_helper *fb_helper; + struct dentry *debugfs_root; +}; + +typedef u32 depot_stack_handle_t; + +struct drm_modeset_acquire_ctx { + struct ww_acquire_ctx ww_ctx; + struct drm_modeset_lock *contended; + depot_stack_handle_t stack_depot; + struct list_head locked; + bool trylock_only; + bool interruptible; +}; + +enum drm_mode_status { + MODE_OK = 0, + MODE_HSYNC = 1, + MODE_VSYNC = 2, + MODE_H_ILLEGAL = 3, + MODE_V_ILLEGAL = 4, + MODE_BAD_WIDTH = 5, + MODE_NOMODE = 6, + MODE_NO_INTERLACE = 7, + MODE_NO_DBLESCAN = 8, + MODE_NO_VSCAN = 9, + MODE_MEM = 10, + MODE_VIRTUAL_X = 11, + MODE_VIRTUAL_Y = 12, + MODE_MEM_VIRT = 13, + MODE_NOCLOCK = 14, + MODE_CLOCK_HIGH = 15, + MODE_CLOCK_LOW = 16, + MODE_CLOCK_RANGE = 17, + MODE_BAD_HVALUE = 18, + MODE_BAD_VVALUE = 19, + MODE_BAD_VSCAN = 20, + MODE_HSYNC_NARROW = 21, + MODE_HSYNC_WIDE = 22, + MODE_HBLANK_NARROW = 23, + MODE_HBLANK_WIDE = 24, + MODE_VSYNC_NARROW = 25, + MODE_VSYNC_WIDE = 26, + MODE_VBLANK_NARROW = 27, + MODE_VBLANK_WIDE = 28, + MODE_PANEL = 29, + MODE_INTERLACE_WIDTH = 30, + MODE_ONE_WIDTH = 31, + MODE_ONE_HEIGHT = 32, + MODE_ONE_SIZE = 33, + MODE_NO_REDUCED = 34, + MODE_NO_STEREO = 35, + MODE_NO_420 = 36, + MODE_STALE = -3, + MODE_BAD = -2, + MODE_ERROR = -1, +}; + +struct drm_framebuffer; + +struct drm_file; + +struct drm_format_info; + +struct drm_mode_fb_cmd2; + +struct drm_display_mode; + +struct drm_mode_config_funcs { + struct drm_framebuffer * (*fb_create)(struct drm_device *, struct drm_file *, const struct drm_format_info *, const struct drm_mode_fb_cmd2 *); + const struct drm_format_info * (*get_format_info)(u32, u64); + enum drm_mode_status (*mode_valid)(struct drm_device *, const struct drm_display_mode *); + int (*atomic_check)(struct drm_device *, struct drm_atomic_state *); + int (*atomic_commit)(struct drm_device *, struct drm_atomic_state *, bool); + struct drm_atomic_state * (*atomic_state_alloc)(struct drm_device *); + void (*atomic_state_clear)(struct drm_atomic_state *); + void (*atomic_state_free)(struct drm_atomic_state *); +}; + +typedef unsigned int drm_magic_t; + +struct drm_prime_file_private { + struct mutex lock; + struct rb_root dmabufs; + struct rb_root handles; +}; + +struct drm_file { + bool authenticated; + bool stereo_allowed; + bool universal_planes; + bool atomic; + bool aspect_ratio_allowed; + bool writeback_connectors; + bool was_master; + bool is_master; + bool supports_virtualized_cursor_plane; + struct drm_master *master; + spinlock_t master_lookup_lock; + struct pid *pid; + u64 client_id; + drm_magic_t magic; + struct list_head lhead; + struct drm_minor *minor; + struct idr object_idr; + spinlock_t table_lock; + struct idr syncobj_idr; + spinlock_t syncobj_table_lock; + struct file *filp; + void *driver_priv; + struct list_head fbs; + struct mutex fbs_lock; + struct list_head blobs; + wait_queue_head_t event_wait; + struct list_head pending_event_list; + struct list_head event_list; + int event_space; + struct mutex event_read_lock; + struct drm_prime_file_private prime; + const char *client_name; + struct mutex client_name_lock; + struct dentry *debugfs_client; +}; + +struct drm_format_info { + u32 format; + u8 depth; + u8 num_planes; + union { + u8 cpp[4]; + u8 char_per_block[4]; + }; + u8 block_w[4]; + u8 block_h[4]; + u8 hsub; + u8 vsub; + bool has_alpha; + bool is_yuv; + bool is_color_indexed; +}; + +struct drm_mode_fb_cmd2 { + __u32 fb_id; + __u32 width; + __u32 height; + __u32 pixel_format; + __u32 flags; + __u32 handles[4]; + __u32 pitches[4]; + __u32 offsets[4]; + __u64 modifier[4]; +}; + +enum hdmi_picture_aspect { + HDMI_PICTURE_ASPECT_NONE = 0, + HDMI_PICTURE_ASPECT_4_3 = 1, + HDMI_PICTURE_ASPECT_16_9 = 2, + HDMI_PICTURE_ASPECT_64_27 = 3, + HDMI_PICTURE_ASPECT_256_135 = 4, + HDMI_PICTURE_ASPECT_RESERVED = 5, +}; + +struct drm_display_mode { + int clock; + u16 hdisplay; + u16 hsync_start; + u16 hsync_end; + u16 htotal; + u16 hskew; + u16 vdisplay; + u16 vsync_start; + u16 vsync_end; + u16 vtotal; + u16 vscan; + u32 flags; + int crtc_clock; + u16 crtc_hdisplay; + u16 crtc_hblank_start; + u16 crtc_hblank_end; + u16 crtc_hsync_start; + u16 crtc_hsync_end; + u16 crtc_htotal; + u16 crtc_hskew; + u16 crtc_vdisplay; + u16 crtc_vblank_start; + u16 crtc_vblank_end; + u16 crtc_vsync_start; + u16 crtc_vsync_end; + u16 crtc_vtotal; + u16 width_mm; + u16 height_mm; + u8 type; + bool expose_to_userspace; + struct list_head head; + char name[32]; + enum drm_mode_status status; + enum hdmi_picture_aspect picture_aspect_ratio; +}; + +struct drm_object_properties; + +struct drm_mode_object { + uint32_t id; + uint32_t type; + struct drm_object_properties *properties; + struct kref refcount; + void (*free_cb)(struct kref *); +}; + +struct drm_property { + struct list_head head; + struct drm_mode_object base; + uint32_t flags; + char name[32]; + uint32_t num_values; + uint64_t *values; + struct drm_device *dev; + struct list_head enum_list; +}; + +struct drm_mode_config_helper_funcs { + void (*atomic_commit_tail)(struct drm_atomic_state *); + int (*atomic_commit_setup)(struct drm_atomic_state *); +}; + +struct drm_gem_object; + +struct dma_buf; + +struct dma_buf_attachment; + +struct drm_mode_create_dumb; + +struct drm_fb_helper_surface_size; + +struct drm_printer; + +struct drm_ioctl_desc; + +struct drm_driver { + int (*load)(struct drm_device *, long unsigned int); + int (*open)(struct drm_device *, struct drm_file *); + void (*postclose)(struct drm_device *, struct drm_file *); + void (*unload)(struct drm_device *); + void (*release)(struct drm_device *); + void (*master_set)(struct drm_device *, struct drm_file *, bool); + void (*master_drop)(struct drm_device *, struct drm_file *); + void (*debugfs_init)(struct drm_minor *); + struct drm_gem_object * (*gem_create_object)(struct drm_device *, size_t); + int (*prime_handle_to_fd)(struct drm_device *, struct drm_file *, uint32_t, uint32_t, int *); + int (*prime_fd_to_handle)(struct drm_device *, struct drm_file *, int, uint32_t *); + struct drm_gem_object * (*gem_prime_import)(struct drm_device *, struct dma_buf *); + struct drm_gem_object * (*gem_prime_import_sg_table)(struct drm_device *, struct dma_buf_attachment *, struct sg_table *); + int (*dumb_create)(struct drm_file *, struct drm_device *, struct drm_mode_create_dumb *); + int (*dumb_map_offset)(struct drm_file *, struct drm_device *, uint32_t, uint64_t *); + int (*fbdev_probe)(struct drm_fb_helper *, struct drm_fb_helper_surface_size *); + void (*show_fdinfo)(struct drm_printer *, struct drm_file *); + int major; + int minor; + int patchlevel; + char *name; + char *desc; + u32 driver_features; + const struct drm_ioctl_desc *ioctls; + int num_ioctls; + const struct file_operations *fops; +}; + +struct drm_minor { + int index; + int type; + struct device *kdev; + struct drm_device *dev; + struct dentry *debugfs_symlink; + struct dentry *debugfs_root; +}; + +struct drm_vblank_crtc_config { + int offdelay_ms; + bool disable_immediate; +}; + +struct drm_vblank_crtc { + struct drm_device *dev; + wait_queue_head_t queue; + struct timer_list disable_timer; + seqlock_t seqlock; + atomic64_t count; + ktime_t time; + atomic_t refcount; + u32 last; + u32 max_vblank_count; + unsigned int inmodeset; + unsigned int pipe; + int framedur_ns; + int linedur_ns; + struct drm_display_mode hwmode; + struct drm_vblank_crtc_config config; + bool enabled; + struct kthread_worker *worker; + struct list_head pending_work; + wait_queue_head_t work_wait_queue; +}; + +enum drm_driver_feature { + DRIVER_GEM = 1, + DRIVER_MODESET = 2, + DRIVER_RENDER = 8, + DRIVER_ATOMIC = 16, + DRIVER_SYNCOBJ = 32, + DRIVER_SYNCOBJ_TIMELINE = 64, + DRIVER_COMPUTE_ACCEL = 128, + DRIVER_GEM_GPUVA = 256, + DRIVER_CURSOR_HOTSPOT = 512, + DRIVER_USE_AGP = 33554432, + DRIVER_LEGACY = 67108864, + DRIVER_PCI_DMA = 134217728, + DRIVER_SG = 268435456, + DRIVER_HAVE_DMA = 536870912, + DRIVER_HAVE_IRQ = 1073741824, +}; + +struct drm_mode_create_dumb { + __u32 height; + __u32 width; + __u32 bpp; + __u32 flags; + __u32 handle; + __u32 pitch; + __u64 size; +}; + +enum drm_debug_category { + DRM_UT_CORE = 0, + DRM_UT_DRIVER = 1, + DRM_UT_KMS = 2, + DRM_UT_PRIME = 3, + DRM_UT_ATOMIC = 4, + DRM_UT_VBL = 5, + DRM_UT_STATE = 6, + DRM_UT_LEASE = 7, + DRM_UT_DP = 8, + DRM_UT_DRMRES = 9, +}; + +struct drm_printer { + void (*printfn)(struct drm_printer *, struct va_format *); + void (*puts)(struct drm_printer *, const char *); + void *arg; + const void *origin; + const char *prefix; + struct { + unsigned int series; + unsigned int counter; + } line; + enum drm_debug_category category; +}; + +enum drm_ioctl_flags { + DRM_AUTH = 1, + DRM_MASTER = 2, + DRM_ROOT_ONLY = 4, + DRM_RENDER_ALLOW = 32, +}; + +typedef int drm_ioctl_t(struct drm_device *, void *, struct drm_file *); + +struct drm_ioctl_desc { + unsigned int cmd; + enum drm_ioctl_flags flags; + drm_ioctl_t *func; + const char *name; +}; + +struct drm_auth { + drm_magic_t magic; +}; + +struct drm_object_properties { + int count; + struct drm_property *properties[64]; + uint64_t values[64]; +}; + +struct iosys_map { + union { + void *vaddr_iomem; + void *vaddr; + }; + bool is_iomem; +}; + +enum xen_domain_type { + XEN_NATIVE = 0, + XEN_PV_DOMAIN = 1, + XEN_HVM_DOMAIN = 2, +}; + +enum hdmi_infoframe_type { + HDMI_INFOFRAME_TYPE_VENDOR = 129, + HDMI_INFOFRAME_TYPE_AVI = 130, + HDMI_INFOFRAME_TYPE_SPD = 131, + HDMI_INFOFRAME_TYPE_AUDIO = 132, + HDMI_INFOFRAME_TYPE_DRM = 135, +}; + +struct hdmi_any_infoframe { + enum hdmi_infoframe_type type; + unsigned char version; + unsigned char length; +}; + +enum hdmi_colorspace { + HDMI_COLORSPACE_RGB = 0, + HDMI_COLORSPACE_YUV422 = 1, + HDMI_COLORSPACE_YUV444 = 2, + HDMI_COLORSPACE_YUV420 = 3, + HDMI_COLORSPACE_RESERVED4 = 4, + HDMI_COLORSPACE_RESERVED5 = 5, + HDMI_COLORSPACE_RESERVED6 = 6, + HDMI_COLORSPACE_IDO_DEFINED = 7, +}; + +enum hdmi_scan_mode { + HDMI_SCAN_MODE_NONE = 0, + HDMI_SCAN_MODE_OVERSCAN = 1, + HDMI_SCAN_MODE_UNDERSCAN = 2, + HDMI_SCAN_MODE_RESERVED = 3, +}; + +enum hdmi_colorimetry { + HDMI_COLORIMETRY_NONE = 0, + HDMI_COLORIMETRY_ITU_601 = 1, + HDMI_COLORIMETRY_ITU_709 = 2, + HDMI_COLORIMETRY_EXTENDED = 3, +}; + +enum hdmi_active_aspect { + HDMI_ACTIVE_ASPECT_16_9_TOP = 2, + HDMI_ACTIVE_ASPECT_14_9_TOP = 3, + HDMI_ACTIVE_ASPECT_16_9_CENTER = 4, + HDMI_ACTIVE_ASPECT_PICTURE = 8, + HDMI_ACTIVE_ASPECT_4_3 = 9, + HDMI_ACTIVE_ASPECT_16_9 = 10, + HDMI_ACTIVE_ASPECT_14_9 = 11, + HDMI_ACTIVE_ASPECT_4_3_SP_14_9 = 13, + HDMI_ACTIVE_ASPECT_16_9_SP_14_9 = 14, + HDMI_ACTIVE_ASPECT_16_9_SP_4_3 = 15, +}; + +enum hdmi_extended_colorimetry { + HDMI_EXTENDED_COLORIMETRY_XV_YCC_601 = 0, + HDMI_EXTENDED_COLORIMETRY_XV_YCC_709 = 1, + HDMI_EXTENDED_COLORIMETRY_S_YCC_601 = 2, + HDMI_EXTENDED_COLORIMETRY_OPYCC_601 = 3, + HDMI_EXTENDED_COLORIMETRY_OPRGB = 4, + HDMI_EXTENDED_COLORIMETRY_BT2020_CONST_LUM = 5, + HDMI_EXTENDED_COLORIMETRY_BT2020 = 6, + HDMI_EXTENDED_COLORIMETRY_RESERVED = 7, +}; + +enum hdmi_quantization_range { + HDMI_QUANTIZATION_RANGE_DEFAULT = 0, + HDMI_QUANTIZATION_RANGE_LIMITED = 1, + HDMI_QUANTIZATION_RANGE_FULL = 2, + HDMI_QUANTIZATION_RANGE_RESERVED = 3, +}; + +enum hdmi_nups { + HDMI_NUPS_UNKNOWN = 0, + HDMI_NUPS_HORIZONTAL = 1, + HDMI_NUPS_VERTICAL = 2, + HDMI_NUPS_BOTH = 3, +}; + +enum hdmi_ycc_quantization_range { + HDMI_YCC_QUANTIZATION_RANGE_LIMITED = 0, + HDMI_YCC_QUANTIZATION_RANGE_FULL = 1, +}; + +enum hdmi_content_type { + HDMI_CONTENT_TYPE_GRAPHICS = 0, + HDMI_CONTENT_TYPE_PHOTO = 1, + HDMI_CONTENT_TYPE_CINEMA = 2, + HDMI_CONTENT_TYPE_GAME = 3, +}; + +enum hdmi_metadata_type { + HDMI_STATIC_METADATA_TYPE1 = 0, +}; + +enum hdmi_eotf { + HDMI_EOTF_TRADITIONAL_GAMMA_SDR = 0, + HDMI_EOTF_TRADITIONAL_GAMMA_HDR = 1, + HDMI_EOTF_SMPTE_ST2084 = 2, + HDMI_EOTF_BT_2100_HLG = 3, +}; + +struct hdmi_avi_infoframe { + enum hdmi_infoframe_type type; + unsigned char version; + unsigned char length; + bool itc; + unsigned char pixel_repeat; + enum hdmi_colorspace colorspace; + enum hdmi_scan_mode scan_mode; + enum hdmi_colorimetry colorimetry; + enum hdmi_picture_aspect picture_aspect; + enum hdmi_active_aspect active_aspect; + enum hdmi_extended_colorimetry extended_colorimetry; + enum hdmi_quantization_range quantization_range; + enum hdmi_nups nups; + unsigned char video_code; + enum hdmi_ycc_quantization_range ycc_quantization_range; + enum hdmi_content_type content_type; + short unsigned int top_bar; + short unsigned int bottom_bar; + short unsigned int left_bar; + short unsigned int right_bar; +}; + +struct hdmi_drm_infoframe { + enum hdmi_infoframe_type type; + unsigned char version; + unsigned char length; + enum hdmi_eotf eotf; + enum hdmi_metadata_type metadata_type; + struct { + u16 x; + u16 y; + } display_primaries[3]; + struct { + u16 x; + u16 y; + } white_point; + u16 max_display_mastering_luminance; + u16 min_display_mastering_luminance; + u16 max_cll; + u16 max_fall; +}; + +enum hdmi_spd_sdi { + HDMI_SPD_SDI_UNKNOWN = 0, + HDMI_SPD_SDI_DSTB = 1, + HDMI_SPD_SDI_DVDP = 2, + HDMI_SPD_SDI_DVHS = 3, + HDMI_SPD_SDI_HDDVR = 4, + HDMI_SPD_SDI_DVC = 5, + HDMI_SPD_SDI_DSC = 6, + HDMI_SPD_SDI_VCD = 7, + HDMI_SPD_SDI_GAME = 8, + HDMI_SPD_SDI_PC = 9, + HDMI_SPD_SDI_BD = 10, + HDMI_SPD_SDI_SACD = 11, + HDMI_SPD_SDI_HDDVD = 12, + HDMI_SPD_SDI_PMP = 13, +}; + +struct hdmi_spd_infoframe { + enum hdmi_infoframe_type type; + unsigned char version; + unsigned char length; + char vendor[8]; + char product[16]; + enum hdmi_spd_sdi sdi; +}; + +enum hdmi_audio_coding_type { + HDMI_AUDIO_CODING_TYPE_STREAM = 0, + HDMI_AUDIO_CODING_TYPE_PCM = 1, + HDMI_AUDIO_CODING_TYPE_AC3 = 2, + HDMI_AUDIO_CODING_TYPE_MPEG1 = 3, + HDMI_AUDIO_CODING_TYPE_MP3 = 4, + HDMI_AUDIO_CODING_TYPE_MPEG2 = 5, + HDMI_AUDIO_CODING_TYPE_AAC_LC = 6, + HDMI_AUDIO_CODING_TYPE_DTS = 7, + HDMI_AUDIO_CODING_TYPE_ATRAC = 8, + HDMI_AUDIO_CODING_TYPE_DSD = 9, + HDMI_AUDIO_CODING_TYPE_EAC3 = 10, + HDMI_AUDIO_CODING_TYPE_DTS_HD = 11, + HDMI_AUDIO_CODING_TYPE_MLP = 12, + HDMI_AUDIO_CODING_TYPE_DST = 13, + HDMI_AUDIO_CODING_TYPE_WMA_PRO = 14, + HDMI_AUDIO_CODING_TYPE_CXT = 15, +}; + +enum hdmi_audio_sample_size { + HDMI_AUDIO_SAMPLE_SIZE_STREAM = 0, + HDMI_AUDIO_SAMPLE_SIZE_16 = 1, + HDMI_AUDIO_SAMPLE_SIZE_20 = 2, + HDMI_AUDIO_SAMPLE_SIZE_24 = 3, +}; + +enum hdmi_audio_sample_frequency { + HDMI_AUDIO_SAMPLE_FREQUENCY_STREAM = 0, + HDMI_AUDIO_SAMPLE_FREQUENCY_32000 = 1, + HDMI_AUDIO_SAMPLE_FREQUENCY_44100 = 2, + HDMI_AUDIO_SAMPLE_FREQUENCY_48000 = 3, + HDMI_AUDIO_SAMPLE_FREQUENCY_88200 = 4, + HDMI_AUDIO_SAMPLE_FREQUENCY_96000 = 5, + HDMI_AUDIO_SAMPLE_FREQUENCY_176400 = 6, + HDMI_AUDIO_SAMPLE_FREQUENCY_192000 = 7, +}; + +enum hdmi_audio_coding_type_ext { + HDMI_AUDIO_CODING_TYPE_EXT_CT = 0, + HDMI_AUDIO_CODING_TYPE_EXT_HE_AAC = 1, + HDMI_AUDIO_CODING_TYPE_EXT_HE_AAC_V2 = 2, + HDMI_AUDIO_CODING_TYPE_EXT_MPEG_SURROUND = 3, + HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_HE_AAC = 4, + HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_HE_AAC_V2 = 5, + HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_AAC_LC = 6, + HDMI_AUDIO_CODING_TYPE_EXT_DRA = 7, + HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_HE_AAC_SURROUND = 8, + HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_AAC_LC_SURROUND = 10, +}; + +struct hdmi_audio_infoframe { + enum hdmi_infoframe_type type; + unsigned char version; + unsigned char length; + unsigned char channels; + enum hdmi_audio_coding_type coding_type; + enum hdmi_audio_sample_size sample_size; + enum hdmi_audio_sample_frequency sample_frequency; + enum hdmi_audio_coding_type_ext coding_type_ext; + unsigned char channel_allocation; + unsigned char level_shift_value; + bool downmix_inhibit; +}; + +enum hdmi_3d_structure { + HDMI_3D_STRUCTURE_INVALID = -1, + HDMI_3D_STRUCTURE_FRAME_PACKING = 0, + HDMI_3D_STRUCTURE_FIELD_ALTERNATIVE = 1, + HDMI_3D_STRUCTURE_LINE_ALTERNATIVE = 2, + HDMI_3D_STRUCTURE_SIDE_BY_SIDE_FULL = 3, + HDMI_3D_STRUCTURE_L_DEPTH = 4, + HDMI_3D_STRUCTURE_L_DEPTH_GFX_GFX_DEPTH = 5, + HDMI_3D_STRUCTURE_TOP_AND_BOTTOM = 6, + HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF = 8, +}; + +struct hdmi_vendor_infoframe { + enum hdmi_infoframe_type type; + unsigned char version; + unsigned char length; + unsigned int oui; + u8 vic; + enum hdmi_3d_structure s3d_struct; + unsigned int s3d_ext_data; +}; + +struct hdr_static_metadata { + __u8 eotf; + __u8 metadata_type; + __u16 max_cll; + __u16 max_fall; + __u16 min_cll; +}; + +struct hdr_sink_metadata { + __u32 metadata_type; + union { + struct hdr_static_metadata hdmi_type1; + }; +}; + +union hdmi_vendor_any_infoframe { + struct { + enum hdmi_infoframe_type type; + unsigned char version; + unsigned char length; + unsigned int oui; + } any; + struct hdmi_vendor_infoframe hdmi; +}; + +union hdmi_infoframe { + struct hdmi_any_infoframe any; + struct hdmi_avi_infoframe avi; + struct hdmi_spd_infoframe spd; + union hdmi_vendor_any_infoframe vendor; + struct hdmi_audio_infoframe audio; + struct hdmi_drm_infoframe drm; +}; + +enum drm_mode_subconnector { + DRM_MODE_SUBCONNECTOR_Automatic = 0, + DRM_MODE_SUBCONNECTOR_Unknown = 0, + DRM_MODE_SUBCONNECTOR_VGA = 1, + DRM_MODE_SUBCONNECTOR_DVID = 3, + DRM_MODE_SUBCONNECTOR_DVIA = 4, + DRM_MODE_SUBCONNECTOR_Composite = 5, + DRM_MODE_SUBCONNECTOR_SVIDEO = 6, + DRM_MODE_SUBCONNECTOR_Component = 8, + DRM_MODE_SUBCONNECTOR_SCART = 9, + DRM_MODE_SUBCONNECTOR_DisplayPort = 10, + DRM_MODE_SUBCONNECTOR_HDMIA = 11, + DRM_MODE_SUBCONNECTOR_Native = 15, + DRM_MODE_SUBCONNECTOR_Wireless = 18, +}; + +struct drm_mode_crtc_lut { + __u32 crtc_id; + __u32 gamma_size; + __u64 red; + __u64 green; + __u64 blue; +}; + +struct drm_color_lut { + __u16 red; + __u16 green; + __u16 blue; + __u16 reserved; +}; + +struct drm_property_blob { + struct drm_mode_object base; + struct drm_device *dev; + struct list_head head_global; + struct list_head head_file; + size_t length; + void *data; +}; + +struct drm_prop_enum_list { + int type; + const char *name; +}; + +enum drm_connector_force { + DRM_FORCE_UNSPECIFIED = 0, + DRM_FORCE_OFF = 1, + DRM_FORCE_ON = 2, + DRM_FORCE_ON_DIGITAL = 3, +}; + +enum drm_connector_status { + connector_status_connected = 1, + connector_status_disconnected = 2, + connector_status_unknown = 3, +}; + +enum drm_connector_registration_state { + DRM_CONNECTOR_INITIALIZING = 0, + DRM_CONNECTOR_REGISTERED = 1, + DRM_CONNECTOR_UNREGISTERED = 2, +}; + +enum subpixel_order { + SubPixelUnknown = 0, + SubPixelHorizontalRGB = 1, + SubPixelHorizontalBGR = 2, + SubPixelVerticalRGB = 3, + SubPixelVerticalBGR = 4, + SubPixelNone = 5, +}; + +enum drm_connector_tv_mode { + DRM_MODE_TV_MODE_NTSC = 0, + DRM_MODE_TV_MODE_NTSC_443 = 1, + DRM_MODE_TV_MODE_NTSC_J = 2, + DRM_MODE_TV_MODE_PAL = 3, + DRM_MODE_TV_MODE_PAL_M = 4, + DRM_MODE_TV_MODE_PAL_N = 5, + DRM_MODE_TV_MODE_SECAM = 6, + DRM_MODE_TV_MODE_MONOCHROME = 7, + DRM_MODE_TV_MODE_MAX = 8, +}; + +struct drm_scrambling { + bool supported; + bool low_rates; +}; + +struct drm_scdc { + bool supported; + bool read_request; + struct drm_scrambling scrambling; +}; + +struct drm_hdmi_dsc_cap { + bool v_1p2; + bool native_420; + bool all_bpp; + u8 bpc_supported; + u8 max_slices; + int clk_per_slice; + u8 max_lanes; + u8 max_frl_rate_per_lane; + u8 total_chunk_kbytes; +}; + +struct drm_hdmi_info { + struct drm_scdc scdc; + long unsigned int y420_vdb_modes[4]; + long unsigned int y420_cmdb_modes[4]; + u8 y420_dc_modes; + u8 max_frl_rate_per_lane; + u8 max_lanes; + struct drm_hdmi_dsc_cap dsc_cap; +}; + +enum drm_link_status { + DRM_LINK_STATUS_GOOD = 0, + DRM_LINK_STATUS_BAD = 1, +}; + +enum drm_panel_orientation { + DRM_MODE_PANEL_ORIENTATION_UNKNOWN = -1, + DRM_MODE_PANEL_ORIENTATION_NORMAL = 0, + DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP = 1, + DRM_MODE_PANEL_ORIENTATION_LEFT_UP = 2, + DRM_MODE_PANEL_ORIENTATION_RIGHT_UP = 3, +}; + +enum drm_hdmi_broadcast_rgb { + DRM_HDMI_BROADCAST_RGB_AUTO = 0, + DRM_HDMI_BROADCAST_RGB_FULL = 1, + DRM_HDMI_BROADCAST_RGB_LIMITED = 2, +}; + +struct drm_monitor_range_info { + u16 min_vfreq; + u16 max_vfreq; +}; + +struct drm_luminance_range_info { + u32 min_luminance; + u32 max_luminance; +}; + +enum drm_privacy_screen_status { + PRIVACY_SCREEN_DISABLED = 0, + PRIVACY_SCREEN_ENABLED = 1, + PRIVACY_SCREEN_DISABLED_LOCKED = 2, + PRIVACY_SCREEN_ENABLED_LOCKED = 3, +}; + +enum drm_colorspace { + DRM_MODE_COLORIMETRY_DEFAULT = 0, + DRM_MODE_COLORIMETRY_NO_DATA = 0, + DRM_MODE_COLORIMETRY_SMPTE_170M_YCC = 1, + DRM_MODE_COLORIMETRY_BT709_YCC = 2, + DRM_MODE_COLORIMETRY_XVYCC_601 = 3, + DRM_MODE_COLORIMETRY_XVYCC_709 = 4, + DRM_MODE_COLORIMETRY_SYCC_601 = 5, + DRM_MODE_COLORIMETRY_OPYCC_601 = 6, + DRM_MODE_COLORIMETRY_OPRGB = 7, + DRM_MODE_COLORIMETRY_BT2020_CYCC = 8, + DRM_MODE_COLORIMETRY_BT2020_RGB = 9, + DRM_MODE_COLORIMETRY_BT2020_YCC = 10, + DRM_MODE_COLORIMETRY_DCI_P3_RGB_D65 = 11, + DRM_MODE_COLORIMETRY_DCI_P3_RGB_THEATER = 12, + DRM_MODE_COLORIMETRY_RGB_WIDE_FIXED = 13, + DRM_MODE_COLORIMETRY_RGB_WIDE_FLOAT = 14, + DRM_MODE_COLORIMETRY_BT601_YCC = 15, + DRM_MODE_COLORIMETRY_COUNT = 16, +}; + +struct drm_display_info { + unsigned int width_mm; + unsigned int height_mm; + unsigned int bpc; + enum subpixel_order subpixel_order; + int panel_orientation; + u32 color_formats; + const u32 *bus_formats; + unsigned int num_bus_formats; + u32 bus_flags; + int max_tmds_clock; + bool dvi_dual; + bool is_hdmi; + bool has_audio; + bool has_hdmi_infoframe; + bool rgb_quant_range_selectable; + u8 edid_hdmi_rgb444_dc_modes; + u8 edid_hdmi_ycbcr444_dc_modes; + u8 cea_rev; + struct drm_hdmi_info hdmi; + struct hdr_sink_metadata hdr_sink_metadata; + bool non_desktop; + struct drm_monitor_range_info monitor_range; + struct drm_luminance_range_info luminance_range; + u8 mso_stream_count; + u8 mso_pixel_overlap; + u32 max_dsc_bpp; + u8 *vics; + int vics_len; + u32 quirks; + u16 source_physical_address; +}; + +struct drm_connector_tv_margins { + unsigned int bottom; + unsigned int left; + unsigned int right; + unsigned int top; +}; + +struct drm_tv_connector_state { + enum drm_mode_subconnector select_subconnector; + enum drm_mode_subconnector subconnector; + struct drm_connector_tv_margins margins; + unsigned int legacy_mode; + unsigned int mode; + unsigned int brightness; + unsigned int contrast; + unsigned int flicker_reduction; + unsigned int overscan; + unsigned int saturation; + unsigned int hue; +}; + +struct drm_connector_hdmi_infoframe { + union hdmi_infoframe data; + bool set; +}; + +struct drm_connector_hdmi_state { + enum drm_hdmi_broadcast_rgb broadcast_rgb; + struct { + struct drm_connector_hdmi_infoframe avi; + struct drm_connector_hdmi_infoframe hdr_drm; + struct drm_connector_hdmi_infoframe spd; + struct drm_connector_hdmi_infoframe hdmi; + } infoframes; + bool is_limited_range; + unsigned int output_bpc; + enum hdmi_colorspace output_format; + long long unsigned int tmds_char_rate; +}; + +struct drm_connector; + +struct drm_crtc; + +struct drm_encoder; + +struct drm_crtc_commit; + +struct drm_writeback_job; + +struct drm_connector_state { + struct drm_connector *connector; + struct drm_crtc *crtc; + struct drm_encoder *best_encoder; + enum drm_link_status link_status; + struct drm_atomic_state *state; + struct drm_crtc_commit *commit; + struct drm_tv_connector_state tv; + bool self_refresh_aware; + enum hdmi_picture_aspect picture_aspect_ratio; + unsigned int content_type; + unsigned int hdcp_content_type; + unsigned int scaling_mode; + unsigned int content_protection; + enum drm_colorspace colorspace; + struct drm_writeback_job *writeback_job; + u8 max_requested_bpc; + u8 max_bpc; + enum drm_privacy_screen_status privacy_screen_sw_state; + struct drm_property_blob *hdr_output_metadata; + struct drm_connector_hdmi_state hdmi; +}; + +struct drm_privacy_screen; + +struct drm_cmdline_mode { + char name[32]; + bool specified; + bool refresh_specified; + bool bpp_specified; + unsigned int pixel_clock; + int xres; + int yres; + int bpp; + int refresh; + bool rb; + bool interlace; + bool cvt; + bool margins; + enum drm_connector_force force; + unsigned int rotation_reflection; + enum drm_panel_orientation panel_orientation; + struct drm_connector_tv_margins tv_margins; + enum drm_connector_tv_mode tv_mode; + bool tv_mode_specified; +}; + +struct drm_connector_hdmi_funcs; + +struct drm_connector_hdmi { + unsigned char vendor[8]; + unsigned char product[16]; + long unsigned int supported_formats; + const struct drm_connector_hdmi_funcs *funcs; + struct { + struct mutex lock; + struct drm_connector_hdmi_infoframe audio; + } infoframes; +}; + +struct drm_connector_hdmi_audio_funcs; + +struct drm_connector_hdmi_audio { + const struct drm_connector_hdmi_audio_funcs *funcs; + struct platform_device *codec_pdev; + struct mutex lock; + void (*plugged_cb)(struct device *, bool); + struct device *plugged_cb_dev; + bool last_state; + int dai_port; +}; + +struct drm_connector_cec_funcs; + +struct drm_connector_cec { + struct mutex mutex; + const struct drm_connector_cec_funcs *funcs; + void *data; +}; + +struct drm_connector_funcs; + +struct drm_connector_helper_funcs; + +struct drm_edid; + +struct drm_tile_group; + +struct drm_connector { + struct drm_device *dev; + struct device *kdev; + struct device_attribute *attr; + struct fwnode_handle *fwnode; + struct list_head head; + struct list_head global_connector_list_entry; + struct drm_mode_object base; + char *name; + struct mutex mutex; + unsigned int index; + int connector_type; + int connector_type_id; + bool interlace_allowed; + bool doublescan_allowed; + bool stereo_allowed; + bool ycbcr_420_allowed; + enum drm_connector_registration_state registration_state; + struct list_head modes; + enum drm_connector_status status; + struct list_head probed_modes; + struct drm_display_info display_info; + const struct drm_connector_funcs *funcs; + struct drm_property_blob *edid_blob_ptr; + struct drm_object_properties properties; + struct drm_property *scaling_mode_property; + struct drm_property *vrr_capable_property; + struct drm_property *colorspace_property; + struct drm_property_blob *path_blob_ptr; + unsigned int max_bpc; + struct drm_property *max_bpc_property; + struct drm_privacy_screen *privacy_screen; + struct notifier_block privacy_screen_notifier; + struct drm_property *privacy_screen_sw_state_property; + struct drm_property *privacy_screen_hw_state_property; + struct drm_property *broadcast_rgb_property; + uint8_t polled; + int dpms; + const struct drm_connector_helper_funcs *helper_private; + struct drm_cmdline_mode cmdline_mode; + enum drm_connector_force force; + const struct drm_edid *edid_override; + struct mutex edid_override_mutex; + u64 epoch_counter; + u32 possible_encoders; + struct drm_encoder *encoder; + uint8_t eld[128]; + struct mutex eld_mutex; + bool latency_present[2]; + int video_latency[2]; + int audio_latency[2]; + struct i2c_adapter *ddc; + int null_edid_counter; + unsigned int bad_edid_counter; + bool edid_corrupt; + u8 real_edid_checksum; + struct dentry *debugfs_entry; + struct drm_connector_state *state; + struct drm_property_blob *tile_blob_ptr; + bool has_tile; + struct drm_tile_group *tile_group; + bool tile_is_single_monitor; + uint8_t num_h_tile; + uint8_t num_v_tile; + uint8_t tile_h_loc; + uint8_t tile_v_loc; + uint16_t tile_h_size; + uint16_t tile_v_size; + struct llist_node free_node; + struct drm_connector_hdmi hdmi; + struct drm_connector_hdmi_audio hdmi_audio; + struct drm_connector_cec cec; +}; + +struct drm_crtc_crc_entry; + +struct drm_crtc_crc { + spinlock_t lock; + const char *source; + bool opened; + bool overflow; + struct drm_crtc_crc_entry *entries; + int head; + int tail; + size_t values_cnt; + wait_queue_head_t wq; +}; + +struct drm_plane; + +struct drm_crtc_funcs; + +struct drm_crtc_helper_funcs; + +struct drm_crtc_state; + +struct drm_self_refresh_data; + +struct drm_crtc { + struct drm_device *dev; + struct device_node *port; + struct list_head head; + char *name; + struct drm_modeset_lock mutex; + struct drm_mode_object base; + struct drm_plane *primary; + struct drm_plane *cursor; + unsigned int index; + int cursor_x; + int cursor_y; + bool enabled; + struct drm_display_mode mode; + struct drm_display_mode hwmode; + int x; + int y; + const struct drm_crtc_funcs *funcs; + uint32_t gamma_size; + uint16_t *gamma_store; + const struct drm_crtc_helper_funcs *helper_private; + struct drm_object_properties properties; + struct drm_property *scaling_filter_property; + struct drm_crtc_state *state; + struct list_head commit_list; + spinlock_t commit_lock; + struct dentry *debugfs_entry; + struct drm_crtc_crc crc; + unsigned int fence_context; + spinlock_t fence_lock; + long unsigned int fence_seqno; + char timeline_name[32]; + struct drm_self_refresh_data *self_refresh_data; +}; + +struct __drm_planes_state; + +struct __drm_crtcs_state; + +struct __drm_connnectors_state; + +struct __drm_private_objs_state; + +struct drm_atomic_state { + struct kref ref; + struct drm_device *dev; + bool allow_modeset: 1; + bool legacy_cursor_update: 1; + bool async_update: 1; + bool duplicated: 1; + struct __drm_planes_state *planes; + struct __drm_crtcs_state *crtcs; + int num_connector; + struct __drm_connnectors_state *connectors; + int num_private_objs; + struct __drm_private_objs_state *private_objs; + struct drm_modeset_acquire_ctx *acquire_ctx; + struct drm_crtc_commit *fake_commit; + struct work_struct commit_work; +}; + +struct drm_pending_vblank_event; + +struct drm_crtc_commit { + struct drm_crtc *crtc; + struct kref ref; + struct completion flip_done; + struct completion hw_done; + struct completion cleanup_done; + struct list_head commit_entry; + struct drm_pending_vblank_event *event; + bool abort_completion; +}; + +struct hdmi_codec_daifmt; + +struct hdmi_codec_params; + +struct drm_connector_hdmi_audio_funcs { + int (*startup)(struct drm_connector *); + int (*prepare)(struct drm_connector *, struct hdmi_codec_daifmt *, struct hdmi_codec_params *); + void (*shutdown)(struct drm_connector *); + int (*mute_stream)(struct drm_connector *, bool, int); +}; + +struct drm_connector_cec_funcs { + void (*phys_addr_invalidate)(struct drm_connector *); + void (*phys_addr_set)(struct drm_connector *, u16); +}; + +struct drm_connector_hdmi_funcs { + enum drm_mode_status (*tmds_char_rate_valid)(const struct drm_connector *, const struct drm_display_mode *, long long unsigned int); + int (*clear_infoframe)(struct drm_connector *, enum hdmi_infoframe_type); + int (*write_infoframe)(struct drm_connector *, enum hdmi_infoframe_type, const u8 *, size_t); + const struct drm_edid * (*read_edid)(struct drm_connector *); +}; + +struct edid; + +struct drm_edid { + size_t size; + const struct edid *edid; +}; + +struct drm_connector_funcs { + int (*dpms)(struct drm_connector *, int); + void (*reset)(struct drm_connector *); + enum drm_connector_status (*detect)(struct drm_connector *, bool); + void (*force)(struct drm_connector *); + int (*fill_modes)(struct drm_connector *, uint32_t, uint32_t); + int (*set_property)(struct drm_connector *, struct drm_property *, uint64_t); + int (*late_register)(struct drm_connector *); + void (*early_unregister)(struct drm_connector *); + void (*destroy)(struct drm_connector *); + struct drm_connector_state * (*atomic_duplicate_state)(struct drm_connector *); + void (*atomic_destroy_state)(struct drm_connector *, struct drm_connector_state *); + int (*atomic_set_property)(struct drm_connector *, struct drm_connector_state *, struct drm_property *, uint64_t); + int (*atomic_get_property)(struct drm_connector *, const struct drm_connector_state *, struct drm_property *, uint64_t *); + void (*atomic_print_state)(struct drm_printer *, const struct drm_connector_state *); + void (*oob_hotplug_event)(struct drm_connector *, enum drm_connector_status); + void (*debugfs_init)(struct drm_connector *, struct dentry *); +}; + +struct drm_writeback_connector; + +struct drm_connector_helper_funcs { + int (*get_modes)(struct drm_connector *); + int (*detect_ctx)(struct drm_connector *, struct drm_modeset_acquire_ctx *, bool); + enum drm_mode_status (*mode_valid)(struct drm_connector *, const struct drm_display_mode *); + int (*mode_valid_ctx)(struct drm_connector *, const struct drm_display_mode *, struct drm_modeset_acquire_ctx *, enum drm_mode_status *); + struct drm_encoder * (*best_encoder)(struct drm_connector *); + struct drm_encoder * (*atomic_best_encoder)(struct drm_connector *, struct drm_atomic_state *); + int (*atomic_check)(struct drm_connector *, struct drm_atomic_state *); + void (*atomic_commit)(struct drm_connector *, struct drm_atomic_state *); + int (*prepare_writeback_job)(struct drm_writeback_connector *, struct drm_writeback_job *); + void (*cleanup_writeback_job)(struct drm_writeback_connector *, struct drm_writeback_job *); + void (*enable_hpd)(struct drm_connector *); + void (*disable_hpd)(struct drm_connector *); +}; + +struct drm_tile_group { + struct kref refcount; + struct drm_device *dev; + int id; + u8 group_data[8]; +}; + +struct kmsg_dump_detail { + enum kmsg_dump_reason reason; + const char *description; +}; + +struct kmsg_dumper { + struct list_head list; + void (*dump)(struct kmsg_dumper *, struct kmsg_dump_detail *); + enum kmsg_dump_reason max_reason; + bool registered; +}; + +enum drm_color_encoding { + DRM_COLOR_YCBCR_BT601 = 0, + DRM_COLOR_YCBCR_BT709 = 1, + DRM_COLOR_YCBCR_BT2020 = 2, + DRM_COLOR_ENCODING_MAX = 3, +}; + +enum drm_color_range { + DRM_COLOR_YCBCR_LIMITED_RANGE = 0, + DRM_COLOR_YCBCR_FULL_RANGE = 1, + DRM_COLOR_RANGE_MAX = 2, +}; + +enum drm_color_lut_tests { + DRM_COLOR_LUT_EQUAL_CHANNELS = 1, + DRM_COLOR_LUT_NON_DECREASING = 2, +}; + +typedef void (*drm_crtc_set_lut_func)(struct drm_crtc *, unsigned int, u16, u16, u16); + +struct drm_rect { + int x1; + int y1; + int x2; + int y2; +}; + +enum drm_scaling_filter { + DRM_SCALING_FILTER_DEFAULT = 0, + DRM_SCALING_FILTER_NEAREST_NEIGHBOR = 1, +}; + +struct drm_plane_state { + struct drm_plane *plane; + struct drm_crtc *crtc; + struct drm_framebuffer *fb; + struct dma_fence *fence; + int32_t crtc_x; + int32_t crtc_y; + uint32_t crtc_w; + uint32_t crtc_h; + uint32_t src_x; + uint32_t src_y; + uint32_t src_h; + uint32_t src_w; + int32_t hotspot_x; + int32_t hotspot_y; + u16 alpha; + uint16_t pixel_blend_mode; + unsigned int rotation; + unsigned int zpos; + unsigned int normalized_zpos; + enum drm_color_encoding color_encoding; + enum drm_color_range color_range; + struct drm_property_blob *fb_damage_clips; + bool ignore_damage_clips; + struct drm_rect src; + struct drm_rect dst; + bool visible; + enum drm_scaling_filter scaling_filter; + struct drm_crtc_commit *commit; + struct drm_atomic_state *state; + bool color_mgmt_changed: 1; +}; + +enum drm_plane_type { + DRM_PLANE_TYPE_OVERLAY = 0, + DRM_PLANE_TYPE_PRIMARY = 1, + DRM_PLANE_TYPE_CURSOR = 2, +}; + +struct drm_plane_funcs; + +struct drm_plane_helper_funcs; + +struct drm_plane { + struct drm_device *dev; + struct list_head head; + char *name; + struct drm_modeset_lock mutex; + struct drm_mode_object base; + uint32_t possible_crtcs; + uint32_t *format_types; + unsigned int format_count; + bool format_default; + uint64_t *modifiers; + unsigned int modifier_count; + struct drm_crtc *crtc; + struct drm_framebuffer *fb; + struct drm_framebuffer *old_fb; + const struct drm_plane_funcs *funcs; + struct drm_object_properties properties; + enum drm_plane_type type; + unsigned int index; + const struct drm_plane_helper_funcs *helper_private; + struct drm_plane_state *state; + struct drm_property *alpha_property; + struct drm_property *zpos_property; + struct drm_property *rotation_property; + struct drm_property *blend_mode_property; + struct drm_property *color_encoding_property; + struct drm_property *color_range_property; + struct drm_property *scaling_filter_property; + struct drm_property *hotspot_x_property; + struct drm_property *hotspot_y_property; + struct kmsg_dumper kmsg_panic; +}; + +struct drm_plane_funcs { + int (*update_plane)(struct drm_plane *, struct drm_crtc *, struct drm_framebuffer *, int, int, unsigned int, unsigned int, uint32_t, uint32_t, uint32_t, uint32_t, struct drm_modeset_acquire_ctx *); + int (*disable_plane)(struct drm_plane *, struct drm_modeset_acquire_ctx *); + void (*destroy)(struct drm_plane *); + void (*reset)(struct drm_plane *); + int (*set_property)(struct drm_plane *, struct drm_property *, uint64_t); + struct drm_plane_state * (*atomic_duplicate_state)(struct drm_plane *); + void (*atomic_destroy_state)(struct drm_plane *, struct drm_plane_state *); + int (*atomic_set_property)(struct drm_plane *, struct drm_plane_state *, struct drm_property *, uint64_t); + int (*atomic_get_property)(struct drm_plane *, const struct drm_plane_state *, struct drm_property *, uint64_t *); + int (*late_register)(struct drm_plane *); + void (*early_unregister)(struct drm_plane *); + void (*atomic_print_state)(struct drm_printer *, const struct drm_plane_state *); + bool (*format_mod_supported)(struct drm_plane *, uint32_t, uint64_t); + bool (*format_mod_supported_async)(struct drm_plane *, u32, u64); +}; + +struct drm_scanout_buffer; + +struct drm_plane_helper_funcs { + int (*prepare_fb)(struct drm_plane *, struct drm_plane_state *); + void (*cleanup_fb)(struct drm_plane *, struct drm_plane_state *); + int (*begin_fb_access)(struct drm_plane *, struct drm_plane_state *); + void (*end_fb_access)(struct drm_plane *, struct drm_plane_state *); + int (*atomic_check)(struct drm_plane *, struct drm_atomic_state *); + void (*atomic_update)(struct drm_plane *, struct drm_atomic_state *); + void (*atomic_enable)(struct drm_plane *, struct drm_atomic_state *); + void (*atomic_disable)(struct drm_plane *, struct drm_atomic_state *); + int (*atomic_async_check)(struct drm_plane *, struct drm_atomic_state *, bool); + void (*atomic_async_update)(struct drm_plane *, struct drm_atomic_state *); + int (*get_scanout_buffer)(struct drm_plane *, struct drm_scanout_buffer *); + void (*panic_flush)(struct drm_plane *); +}; + +struct drm_crtc_crc_entry { + bool has_frame_counter; + uint32_t frame; + uint32_t crcs[10]; +}; + +struct drm_crtc_state { + struct drm_crtc *crtc; + bool enable; + bool active; + bool planes_changed: 1; + bool mode_changed: 1; + bool active_changed: 1; + bool connectors_changed: 1; + bool zpos_changed: 1; + bool color_mgmt_changed: 1; + bool no_vblank: 1; + u32 plane_mask; + u32 connector_mask; + u32 encoder_mask; + struct drm_display_mode adjusted_mode; + struct drm_display_mode mode; + struct drm_property_blob *mode_blob; + struct drm_property_blob *degamma_lut; + struct drm_property_blob *ctm; + struct drm_property_blob *gamma_lut; + u32 target_vblank; + bool async_flip; + bool vrr_enabled; + bool self_refresh_active; + enum drm_scaling_filter scaling_filter; + struct drm_pending_vblank_event *event; + struct drm_crtc_commit *commit; + struct drm_atomic_state *state; +}; + +struct drm_mode_set; + +struct drm_crtc_funcs { + void (*reset)(struct drm_crtc *); + int (*cursor_set)(struct drm_crtc *, struct drm_file *, uint32_t, uint32_t, uint32_t); + int (*cursor_set2)(struct drm_crtc *, struct drm_file *, uint32_t, uint32_t, uint32_t, int32_t, int32_t); + int (*cursor_move)(struct drm_crtc *, int, int); + int (*gamma_set)(struct drm_crtc *, u16 *, u16 *, u16 *, uint32_t, struct drm_modeset_acquire_ctx *); + void (*destroy)(struct drm_crtc *); + int (*set_config)(struct drm_mode_set *, struct drm_modeset_acquire_ctx *); + int (*page_flip)(struct drm_crtc *, struct drm_framebuffer *, struct drm_pending_vblank_event *, uint32_t, struct drm_modeset_acquire_ctx *); + int (*page_flip_target)(struct drm_crtc *, struct drm_framebuffer *, struct drm_pending_vblank_event *, uint32_t, uint32_t, struct drm_modeset_acquire_ctx *); + int (*set_property)(struct drm_crtc *, struct drm_property *, uint64_t); + struct drm_crtc_state * (*atomic_duplicate_state)(struct drm_crtc *); + void (*atomic_destroy_state)(struct drm_crtc *, struct drm_crtc_state *); + int (*atomic_set_property)(struct drm_crtc *, struct drm_crtc_state *, struct drm_property *, uint64_t); + int (*atomic_get_property)(struct drm_crtc *, const struct drm_crtc_state *, struct drm_property *, uint64_t *); + int (*late_register)(struct drm_crtc *); + void (*early_unregister)(struct drm_crtc *); + int (*set_crc_source)(struct drm_crtc *, const char *); + int (*verify_crc_source)(struct drm_crtc *, const char *, size_t *); + const char * const * (*get_crc_sources)(struct drm_crtc *, size_t *); + void (*atomic_print_state)(struct drm_printer *, const struct drm_crtc_state *); + u32 (*get_vblank_counter)(struct drm_crtc *); + int (*enable_vblank)(struct drm_crtc *); + void (*disable_vblank)(struct drm_crtc *); + bool (*get_vblank_timestamp)(struct drm_crtc *, int *, ktime_t *, bool); +}; + +struct drm_mode_set { + struct drm_framebuffer *fb; + struct drm_crtc *crtc; + struct drm_display_mode *mode; + uint32_t x; + uint32_t y; + struct drm_connector **connectors; + size_t num_connectors; +}; + +enum mode_set_atomic { + LEAVE_ATOMIC_MODE_SET = 0, + ENTER_ATOMIC_MODE_SET = 1, +}; + +struct drm_crtc_helper_funcs { + void (*dpms)(struct drm_crtc *, int); + void (*prepare)(struct drm_crtc *); + void (*commit)(struct drm_crtc *); + enum drm_mode_status (*mode_valid)(struct drm_crtc *, const struct drm_display_mode *); + bool (*mode_fixup)(struct drm_crtc *, const struct drm_display_mode *, struct drm_display_mode *); + int (*mode_set)(struct drm_crtc *, struct drm_display_mode *, struct drm_display_mode *, int, int, struct drm_framebuffer *); + void (*mode_set_nofb)(struct drm_crtc *); + int (*mode_set_base)(struct drm_crtc *, int, int, struct drm_framebuffer *); + int (*mode_set_base_atomic)(struct drm_crtc *, struct drm_framebuffer *, int, int, enum mode_set_atomic); + void (*disable)(struct drm_crtc *); + int (*atomic_check)(struct drm_crtc *, struct drm_atomic_state *); + void (*atomic_begin)(struct drm_crtc *, struct drm_atomic_state *); + void (*atomic_flush)(struct drm_crtc *, struct drm_atomic_state *); + void (*atomic_enable)(struct drm_crtc *, struct drm_atomic_state *); + void (*atomic_disable)(struct drm_crtc *, struct drm_atomic_state *); + bool (*get_scanout_position)(struct drm_crtc *, bool, int *, int *, ktime_t *, ktime_t *, const struct drm_display_mode *); +}; + +struct __drm_planes_state { + struct drm_plane *ptr; + struct drm_plane_state *state; + struct drm_plane_state *old_state; + struct drm_plane_state *new_state; +}; + +struct __drm_crtcs_state { + struct drm_crtc *ptr; + struct drm_crtc_state *state; + struct drm_crtc_state *old_state; + struct drm_crtc_state *new_state; + struct drm_crtc_commit *commit; + s32 *out_fence_ptr; + u64 last_vblank_count; +}; + +struct __drm_connnectors_state { + struct drm_connector *ptr; + struct drm_connector_state *state; + struct drm_connector_state *old_state; + struct drm_connector_state *new_state; + s32 *out_fence_ptr; +}; + +struct drm_private_state; + +struct drm_private_obj; + +struct drm_private_state_funcs { + struct drm_private_state * (*atomic_duplicate_state)(struct drm_private_obj *); + void (*atomic_destroy_state)(struct drm_private_obj *, struct drm_private_state *); + void (*atomic_print_state)(struct drm_printer *, const struct drm_private_state *); +}; + +struct drm_private_state { + struct drm_atomic_state *state; + struct drm_private_obj *obj; +}; + +struct drm_private_obj { + struct list_head head; + struct drm_modeset_lock lock; + struct drm_private_state *state; + const struct drm_private_state_funcs *funcs; +}; + +struct __drm_private_objs_state { + struct drm_private_obj *ptr; + struct drm_private_state *state; + struct drm_private_state *old_state; + struct drm_private_state *new_state; +}; + +struct drm_edid_ident { + u32 panel_id; + const char *name; +}; + +struct displayid_header { + u8 rev; + u8 bytes; + u8 prod_id; + u8 ext_count; +}; + +struct displayid_block { + u8 tag; + u8 rev; + u8 num_bytes; +}; + +struct displayid_iter { + const struct drm_edid *drm_edid; + const u8 *section; + int length; + int idx; + int ext_index; + u8 version; + u8 primary_use; + u8 quirks; +}; + +enum { + QUIRK_IGNORE_CHECKSUM = 0, +}; + +struct displayid_quirk { + const struct drm_edid_ident ident; + u8 quirks; +}; + +struct drm_event { + __u32 type; + __u32 length; +}; + +struct drm_event_vblank { + struct drm_event base; + __u64 user_data; + __u32 tv_sec; + __u32 tv_usec; + __u32 sequence; + __u32 crtc_id; +}; + +struct drm_event_crtc_sequence { + struct drm_event base; + __u64 user_data; + __s64 time_ns; + __u64 sequence; +}; + +enum drm_minor_type { + DRM_MINOR_PRIMARY = 0, + DRM_MINOR_CONTROL = 1, + DRM_MINOR_RENDER = 2, + DRM_MINOR_ACCEL = 32, +}; + +struct drm_pending_event { + struct completion *completion; + void (*completion_release)(struct completion *); + struct drm_event *event; + struct dma_fence *fence; + struct drm_file *file_priv; + struct list_head link; + struct list_head pending_link; +}; + +struct drm_encoder_funcs; + +struct drm_encoder_helper_funcs; + +struct drm_encoder { + struct drm_device *dev; + struct list_head head; + struct drm_mode_object base; + char *name; + int encoder_type; + unsigned int index; + uint32_t possible_crtcs; + uint32_t possible_clones; + struct drm_crtc *crtc; + struct list_head bridge_chain; + const struct drm_encoder_funcs *funcs; + const struct drm_encoder_helper_funcs *helper_private; + struct dentry *debugfs_entry; +}; + +struct drm_wedge_task_info { + pid_t pid; + char comm[16]; +}; + +struct drm_pending_vblank_event { + struct drm_pending_event base; + unsigned int pipe; + u64 sequence; + union { + struct drm_event base; + struct drm_event_vblank vbl; + struct drm_event_crtc_sequence seq; + } event; +}; + +struct drm_encoder_funcs { + void (*reset)(struct drm_encoder *); + void (*destroy)(struct drm_encoder *); + int (*late_register)(struct drm_encoder *); + void (*early_unregister)(struct drm_encoder *); + void (*debugfs_init)(struct drm_encoder *, struct dentry *); +}; + +struct drm_encoder_helper_funcs { + void (*dpms)(struct drm_encoder *, int); + enum drm_mode_status (*mode_valid)(struct drm_encoder *, const struct drm_display_mode *); + bool (*mode_fixup)(struct drm_encoder *, const struct drm_display_mode *, struct drm_display_mode *); + void (*prepare)(struct drm_encoder *); + void (*commit)(struct drm_encoder *); + void (*mode_set)(struct drm_encoder *, struct drm_display_mode *, struct drm_display_mode *); + void (*atomic_mode_set)(struct drm_encoder *, struct drm_crtc_state *, struct drm_connector_state *); + enum drm_connector_status (*detect)(struct drm_encoder *, struct drm_connector *); + void (*atomic_disable)(struct drm_encoder *, struct drm_atomic_state *); + void (*atomic_enable)(struct drm_encoder *, struct drm_atomic_state *); + void (*disable)(struct drm_encoder *); + void (*enable)(struct drm_encoder *); + int (*atomic_check)(struct drm_encoder *, struct drm_crtc_state *, struct drm_connector_state *); +}; + +typedef void (*drmres_release_t)(struct drm_device *, void *); + +struct drm_clip_rect { + short unsigned int x1; + short unsigned int y1; + short unsigned int x2; + short unsigned int y2; +}; + +struct drm_mode_fb_cmd { + __u32 fb_id; + __u32 width; + __u32 height; + __u32 pitch; + __u32 bpp; + __u32 depth; + __u32 handle; +}; + +struct drm_mode_fb_dirty_cmd { + __u32 fb_id; + __u32 flags; + __u32 color; + __u32 num_clips; + __u64 clips_ptr; +}; + +struct drm_mode_closefb { + __u32 fb_id; + __u32 pad; +}; + +struct drm_framebuffer_funcs; + +struct drm_framebuffer { + struct drm_device *dev; + struct list_head head; + struct drm_mode_object base; + char comm[16]; + const struct drm_format_info *format; + const struct drm_framebuffer_funcs *funcs; + unsigned int pitches[4]; + unsigned int offsets[4]; + uint64_t modifier; + unsigned int width; + unsigned int height; + int flags; + unsigned int internal_flags; + struct list_head filp_head; + struct drm_gem_object *obj[4]; +}; + +struct drm_mm; + +struct drm_mm_node { + long unsigned int color; + u64 start; + u64 size; + struct drm_mm *mm; + struct list_head node_list; + struct list_head hole_stack; + struct rb_node rb; + struct rb_node rb_hole_size; + struct rb_node rb_hole_addr; + u64 __subtree_last; + u64 hole_size; + u64 subtree_max_hole; + long unsigned int flags; +}; + +struct drm_mm { + void (*color_adjust)(const struct drm_mm_node *, long unsigned int, u64 *, u64 *); + struct list_head hole_stack; + struct drm_mm_node head_node; + struct rb_root_cached interval_tree; + struct rb_root_cached holes_size; + struct rb_root holes_addr; + long unsigned int scan_active; +}; + +struct drm_vma_offset_manager { + rwlock_t vm_lock; + struct drm_mm vm_addr_space_mm; +}; + +struct dma_resv_list; + +struct dma_resv { + struct ww_mutex lock; + struct dma_resv_list *fences; +}; + +struct dma_buf_ops { + int (*attach)(struct dma_buf *, struct dma_buf_attachment *); + void (*detach)(struct dma_buf *, struct dma_buf_attachment *); + int (*pin)(struct dma_buf_attachment *); + void (*unpin)(struct dma_buf_attachment *); + struct sg_table * (*map_dma_buf)(struct dma_buf_attachment *, enum dma_data_direction); + void (*unmap_dma_buf)(struct dma_buf_attachment *, struct sg_table *, enum dma_data_direction); + void (*release)(struct dma_buf *); + int (*begin_cpu_access)(struct dma_buf *, enum dma_data_direction); + int (*end_cpu_access)(struct dma_buf *, enum dma_data_direction); + int (*mmap)(struct dma_buf *, struct vm_area_struct *); + int (*vmap)(struct dma_buf *, struct iosys_map *); + void (*vunmap)(struct dma_buf *, struct iosys_map *); +}; + +struct dma_buf_poll_cb_t { + struct dma_fence_cb cb; + wait_queue_head_t *poll; + __poll_t active; +}; + +struct dma_buf { + size_t size; + struct file *file; + struct list_head attachments; + const struct dma_buf_ops *ops; + unsigned int vmapping_counter; + struct iosys_map vmap_ptr; + const char *exp_name; + const char *name; + spinlock_t name_lock; + struct module *owner; + struct list_head list_node; + void *priv; + struct dma_resv *resv; + wait_queue_head_t poll; + struct dma_buf_poll_cb_t cb_in; + struct dma_buf_poll_cb_t cb_out; +}; + +struct dma_buf_attach_ops; + +struct dma_buf_attachment { + struct dma_buf *dmabuf; + struct device *dev; + struct list_head node; + bool peer2peer; + const struct dma_buf_attach_ops *importer_ops; + void *importer_priv; + void *priv; +}; + +struct dma_buf_attach_ops { + bool allow_peer2peer; + void (*move_notify)(struct dma_buf_attachment *); +}; + +struct drm_vma_offset_node { + rwlock_t vm_lock; + struct drm_mm_node vm_node; + struct rb_root vm_files; + void *driver_private; +}; + +enum drm_gem_object_status { + DRM_GEM_OBJECT_RESIDENT = 1, + DRM_GEM_OBJECT_PURGEABLE = 2, + DRM_GEM_OBJECT_ACTIVE = 4, +}; + +struct drm_gem_object_funcs { + void (*free)(struct drm_gem_object *); + int (*open)(struct drm_gem_object *, struct drm_file *); + void (*close)(struct drm_gem_object *, struct drm_file *); + void (*print_info)(struct drm_printer *, unsigned int, const struct drm_gem_object *); + struct dma_buf * (*export)(struct drm_gem_object *, int); + int (*pin)(struct drm_gem_object *); + void (*unpin)(struct drm_gem_object *); + struct sg_table * (*get_sg_table)(struct drm_gem_object *); + int (*vmap)(struct drm_gem_object *, struct iosys_map *); + void (*vunmap)(struct drm_gem_object *, struct iosys_map *); + int (*mmap)(struct drm_gem_object *, struct vm_area_struct *); + int (*evict)(struct drm_gem_object *); + enum drm_gem_object_status (*status)(struct drm_gem_object *); + size_t (*rss)(struct drm_gem_object *); + const struct vm_operations_struct *vm_ops; +}; + +struct drm_gem_lru; + +struct drm_gem_object { + struct kref refcount; + unsigned int handle_count; + struct drm_device *dev; + struct file *filp; + struct drm_vma_offset_node vma_node; + size_t size; + int name; + struct dma_buf *dma_buf; + struct dma_buf_attachment *import_attach; + struct dma_resv *resv; + struct dma_resv _resv; + struct { + struct list_head list; + } gpuva; + const struct drm_gem_object_funcs *funcs; + struct list_head lru_node; + struct drm_gem_lru *lru; +}; + +struct drm_gem_lru { + struct mutex *lock; + long int count; + struct list_head list; +}; + +struct drm_debugfs_info { + const char *name; + int (*show)(struct seq_file *, void *); + u32 driver_features; + void *data; +}; + +struct drm_debugfs_entry { + struct drm_device *dev; + struct drm_debugfs_info file; + struct list_head list; +}; + +struct drm_framebuffer_funcs { + void (*destroy)(struct drm_framebuffer *); + int (*create_handle)(struct drm_framebuffer *, struct drm_file *, unsigned int *); + int (*dirty)(struct drm_framebuffer *, struct drm_file *, unsigned int, unsigned int, struct drm_clip_rect *, unsigned int); +}; + +struct drm_mode_rmfb_work { + struct work_struct work; + struct list_head fbs; +}; + +struct drm_mode_create_lease { + __u64 object_ids; + __u32 object_count; + __u32 flags; + __u32 lessee_id; + __u32 fd; +}; + +struct drm_mode_list_lessees { + __u32 count_lessees; + __u32 pad; + __u64 lessees_ptr; +}; + +struct drm_mode_get_lease { + __u32 count_objects; + __u32 pad; + __u64 objects_ptr; +}; + +struct drm_mode_revoke_lease { + __u32 lessee_id; +}; + +struct drm_mode_modeinfo { + __u32 clock; + __u16 hdisplay; + __u16 hsync_start; + __u16 hsync_end; + __u16 htotal; + __u16 hskew; + __u16 vdisplay; + __u16 vsync_start; + __u16 vsync_end; + __u16 vtotal; + __u16 vscan; + __u32 vrefresh; + __u32 flags; + __u32 type; + char name[32]; +}; + +enum drm_bus_flags { + DRM_BUS_FLAG_DE_LOW = 1, + DRM_BUS_FLAG_DE_HIGH = 2, + DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE = 4, + DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE = 8, + DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE = 8, + DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE = 4, + DRM_BUS_FLAG_DATA_MSB_TO_LSB = 16, + DRM_BUS_FLAG_DATA_LSB_TO_MSB = 32, + DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE = 64, + DRM_BUS_FLAG_SYNC_DRIVE_NEGEDGE = 128, + DRM_BUS_FLAG_SYNC_SAMPLE_POSEDGE = 128, + DRM_BUS_FLAG_SYNC_SAMPLE_NEGEDGE = 64, + DRM_BUS_FLAG_SHARP_SIGNALS = 256, +}; + +enum drm_mode_analog { + DRM_MODE_ANALOG_NTSC = 0, + DRM_MODE_ANALOG_PAL = 1, +}; + +struct analog_param_field { + unsigned int even; + unsigned int odd; +}; + +struct analog_param_range { + unsigned int min; + unsigned int typ; + unsigned int max; +}; + +struct analog_parameters { + unsigned int num_lines; + unsigned int line_duration_ns; + struct analog_param_range hact_ns; + struct analog_param_range hfp_ns; + struct analog_param_range hslen_ns; + struct analog_param_range hbp_ns; + struct analog_param_range hblk_ns; + unsigned int bt601_hfp; + struct analog_param_field vfp_lines; + struct analog_param_field vslen_lines; + struct analog_param_field vbp_lines; +}; + +struct drm_named_mode { + const char *name; + unsigned int pixel_clock_khz; + unsigned int xres; + unsigned int yres; + unsigned int flags; + unsigned int tv_mode; +}; + +struct debugfs_reg32 { + char *name; + long unsigned int offset; +}; + +struct debugfs_regset32 { + const struct debugfs_reg32 *regs; + int nregs; + void *base; + struct device *dev; +}; + +struct drm_print_iterator { + void *data; + ssize_t start; + ssize_t remain; + ssize_t offset; +}; + +struct class_attribute { + struct attribute attr; + ssize_t (*show)(const struct class *, const struct class_attribute *, char *); + ssize_t (*store)(const struct class *, const struct class_attribute *, const char *, size_t); +}; + +struct class_attribute_string { + struct class_attribute attr; + char *str; +}; + +struct acpi_bus_type { + struct list_head list; + const char *name; + bool (*match)(struct device *); + struct acpi_device * (*find_companion)(struct device *); + void (*setup)(struct device *); +}; + +struct component_ops { + int (*bind)(struct device *, struct device *, void *); + void (*unbind)(struct device *, struct device *, void *); +}; + +enum drm_mm_insert_mode { + DRM_MM_INSERT_BEST = 0, + DRM_MM_INSERT_LOW = 1, + DRM_MM_INSERT_HIGH = 2, + DRM_MM_INSERT_EVICT = 3, + DRM_MM_INSERT_ONCE = 2147483648, + DRM_MM_INSERT_HIGHEST = 2147483650, + DRM_MM_INSERT_LOWEST = 2147483649, +}; + +struct drm_vma_offset_file { + struct rb_node vm_rb; + struct drm_file *vm_tag; + long unsigned int vm_count; +}; + +struct drm_writeback_job { + struct drm_writeback_connector *connector; + bool prepared; + struct work_struct cleanup_work; + struct list_head list_entry; + struct drm_framebuffer *fb; + struct dma_fence *out_fence; + void *priv; +}; + +struct drm_writeback_connector { + struct drm_connector base; + struct drm_encoder encoder; + struct drm_property_blob *pixel_formats_blob_ptr; + spinlock_t job_lock; + struct list_head job_queue; + unsigned int fence_context; + spinlock_t fence_lock; + long unsigned int fence_seqno; + char timeline_name[32]; +}; + +struct drm_version { + int version_major; + int version_minor; + int version_patchlevel; + __kernel_size_t name_len; + char *name; + __kernel_size_t date_len; + char *date; + __kernel_size_t desc_len; + char *desc; +}; + +struct drm_unique { + __kernel_size_t unique_len; + char *unique; +}; + +struct drm_client { + int idx; + int auth; + long unsigned int pid; + long unsigned int uid; + long unsigned int magic; + long unsigned int iocs; +}; + +enum drm_stat_type { + _DRM_STAT_LOCK = 0, + _DRM_STAT_OPENS = 1, + _DRM_STAT_CLOSES = 2, + _DRM_STAT_IOCTLS = 3, + _DRM_STAT_LOCKS = 4, + _DRM_STAT_UNLOCKS = 5, + _DRM_STAT_VALUE = 6, + _DRM_STAT_BYTE = 7, + _DRM_STAT_COUNT = 8, + _DRM_STAT_IRQ = 9, + _DRM_STAT_PRIMARY = 10, + _DRM_STAT_SECONDARY = 11, + _DRM_STAT_DMA = 12, + _DRM_STAT_SPECIAL = 13, + _DRM_STAT_MISSED = 14, +}; + +enum drm_vblank_seq_type { + _DRM_VBLANK_ABSOLUTE = 0, + _DRM_VBLANK_RELATIVE = 1, + _DRM_VBLANK_HIGH_CRTC_MASK = 62, + _DRM_VBLANK_EVENT = 67108864, + _DRM_VBLANK_FLIP = 134217728, + _DRM_VBLANK_NEXTONMISS = 268435456, + _DRM_VBLANK_SECONDARY = 536870912, + _DRM_VBLANK_SIGNAL = 1073741824, +}; + +struct drm_wait_vblank_request { + enum drm_vblank_seq_type type; + unsigned int sequence; + long unsigned int signal; +}; + +struct drm_wait_vblank_reply { + enum drm_vblank_seq_type type; + unsigned int sequence; + long int tval_sec; + long int tval_usec; +}; + +union drm_wait_vblank { + struct drm_wait_vblank_request request; + struct drm_wait_vblank_reply reply; +}; + +typedef int drm_ioctl_compat_t(struct file *, unsigned int, long unsigned int); + +struct drm_version_32 { + int version_major; + int version_minor; + int version_patchlevel; + u32 name_len; + u32 name; + u32 date_len; + u32 date; + u32 desc_len; + u32 desc; +}; + +typedef struct drm_version_32 drm_version32_t; + +struct drm_unique32 { + u32 unique_len; + u32 unique; +}; + +typedef struct drm_unique32 drm_unique32_t; + +struct drm_client32 { + int idx; + int auth; + u32 pid; + u32 uid; + u32 magic; + u32 iocs; +}; + +typedef struct drm_client32 drm_client32_t; + +struct drm_stats32 { + u32 count; + struct { + u32 value; + enum drm_stat_type type; + } data[15]; +}; + +typedef struct drm_stats32 drm_stats32_t; + +struct drm_wait_vblank_request32 { + enum drm_vblank_seq_type type; + unsigned int sequence; + u32 signal; +}; + +struct drm_wait_vblank_reply32 { + enum drm_vblank_seq_type type; + unsigned int sequence; + s32 tval_sec; + s32 tval_usec; +}; + +union drm_wait_vblank32 { + struct drm_wait_vblank_request32 request; + struct drm_wait_vblank_reply32 reply; +}; + +typedef union drm_wait_vblank32 drm_wait_vblank32_t; + +struct drm_mode_fb_cmd232 { + u32 fb_id; + u32 width; + u32 height; + u32 pixel_format; + u32 flags; + u32 handles[4]; + u32 pitches[4]; + u32 offsets[4]; + u64 modifier[4]; +} __attribute__((packed)); + +struct drm_exec { + u32 flags; + struct ww_acquire_ctx ticket; + unsigned int num_objects; + unsigned int max_objects; + struct drm_gem_object **objects; + struct drm_gem_object *contended; + struct drm_gem_object *prelocked; +}; + +enum drm_gpuva_flags { + DRM_GPUVA_INVALIDATED = 1, + DRM_GPUVA_SPARSE = 2, + DRM_GPUVA_USERBITS = 4, +}; + +struct drm_gpuvm; + +struct drm_gpuvm_bo; + +struct drm_gpuva { + struct drm_gpuvm *vm; + struct drm_gpuvm_bo *vm_bo; + enum drm_gpuva_flags flags; + struct { + u64 addr; + u64 range; + } va; + struct { + u64 offset; + struct drm_gem_object *obj; + struct list_head entry; + } gem; + struct { + struct rb_node node; + struct list_head entry; + u64 __subtree_last; + } rb; +}; + +enum drm_gpuvm_flags { + DRM_GPUVM_RESV_PROTECTED = 1, + DRM_GPUVM_USERBITS = 2, +}; + +struct drm_gpuvm_ops; + +struct drm_gpuvm { + const char *name; + enum drm_gpuvm_flags flags; + struct drm_device *drm; + u64 mm_start; + u64 mm_range; + struct { + struct rb_root_cached tree; + struct list_head list; + } rb; + struct kref kref; + struct drm_gpuva kernel_alloc_node; + const struct drm_gpuvm_ops *ops; + struct drm_gem_object *r_obj; + struct { + struct list_head list; + struct list_head *local_list; + spinlock_t lock; + } extobj; + struct { + struct list_head list; + struct list_head *local_list; + spinlock_t lock; + } evict; +}; + +struct drm_gpuvm_bo { + struct drm_gpuvm *vm; + struct drm_gem_object *obj; + bool evicted; + struct kref kref; + struct { + struct list_head gpuva; + struct { + struct list_head gem; + struct list_head extobj; + struct list_head evict; + } entry; + } list; +}; + +struct drm_gpuva_op; + +struct drm_gpuvm_ops { + void (*vm_free)(struct drm_gpuvm *); + struct drm_gpuva_op * (*op_alloc)(void); + void (*op_free)(struct drm_gpuva_op *); + struct drm_gpuvm_bo * (*vm_bo_alloc)(void); + void (*vm_bo_free)(struct drm_gpuvm_bo *); + int (*vm_bo_validate)(struct drm_gpuvm_bo *, struct drm_exec *); + int (*sm_step_map)(struct drm_gpuva_op *, void *); + int (*sm_step_remap)(struct drm_gpuva_op *, void *); + int (*sm_step_unmap)(struct drm_gpuva_op *, void *); +}; + +enum drm_gpuva_op_type { + DRM_GPUVA_OP_MAP = 0, + DRM_GPUVA_OP_REMAP = 1, + DRM_GPUVA_OP_UNMAP = 2, + DRM_GPUVA_OP_PREFETCH = 3, + DRM_GPUVA_OP_DRIVER = 4, +}; + +struct drm_gpuva_op_map { + struct { + u64 addr; + u64 range; + } va; + struct { + u64 offset; + struct drm_gem_object *obj; + } gem; +}; + +struct drm_gpuva_op_unmap { + struct drm_gpuva *va; + bool keep; +}; + +struct drm_gpuva_op_remap { + struct drm_gpuva_op_map *prev; + struct drm_gpuva_op_map *next; + struct drm_gpuva_op_unmap *unmap; +}; + +struct drm_gpuva_op_prefetch { + struct drm_gpuva *va; +}; + +struct drm_gpuva_op { + struct list_head entry; + enum drm_gpuva_op_type op; + union { + struct drm_gpuva_op_map map; + struct drm_gpuva_op_remap remap; + struct drm_gpuva_op_unmap unmap; + struct drm_gpuva_op_prefetch prefetch; + }; +}; + +struct drm_info_list { + const char *name; + int (*show)(struct seq_file *, void *); + u32 driver_features; + void *data; +}; + +struct drm_info_node { + struct drm_minor *minor; + const struct drm_info_list *info_ent; + struct list_head list; + struct dentry *dent; +}; + +struct kmsg_dump_iter { + u64 cur_seq; + u64 next_seq; +}; + +struct linux_logo { + int type; + unsigned int width; + unsigned int height; + unsigned int clutsize; + const unsigned char *clut; + const unsigned char *data; +}; + +struct drm_scanout_buffer { + const struct drm_format_info *format; + struct iosys_map map[4]; + struct page **pages; + unsigned int width; + unsigned int height; + unsigned int pitch[4]; + void (*set_pixel)(struct drm_scanout_buffer *, unsigned int, unsigned int, u32); + void *private; +}; + +struct drm_panic_line { + u32 len; + const char *txt; +}; + +struct drm_bus_cfg { + u32 format; + u32 flags; +}; + +struct drm_bridge; + +struct drm_bridge_state { + struct drm_private_state base; + struct drm_bridge *bridge; + struct drm_bus_cfg input_bus_cfg; + struct drm_bus_cfg output_bus_cfg; +}; + +enum drm_bridge_ops { + DRM_BRIDGE_OP_DETECT = 1, + DRM_BRIDGE_OP_EDID = 2, + DRM_BRIDGE_OP_HPD = 4, + DRM_BRIDGE_OP_MODES = 8, + DRM_BRIDGE_OP_HDMI = 16, + DRM_BRIDGE_OP_HDMI_AUDIO = 32, + DRM_BRIDGE_OP_DP_AUDIO = 64, + DRM_BRIDGE_OP_HDMI_CEC_NOTIFIER = 128, + DRM_BRIDGE_OP_HDMI_CEC_ADAPTER = 256, +}; + +struct drm_bridge_timings; + +struct drm_bridge_funcs; + +struct drm_bridge { + struct drm_private_obj base; + struct drm_device *dev; + struct drm_encoder *encoder; + struct list_head chain_node; + struct device_node *of_node; + struct list_head list; + const struct drm_bridge_timings *timings; + const struct drm_bridge_funcs *funcs; + void *container; + struct kref refcount; + void *driver_private; + enum drm_bridge_ops ops; + int type; + bool interlace_allowed; + bool ycbcr_420_allowed; + bool pre_enable_prev_first; + struct i2c_adapter *ddc; + const char *vendor; + const char *product; + unsigned int supported_formats; + unsigned int max_bpc; + struct device *hdmi_cec_dev; + struct device *hdmi_audio_dev; + int hdmi_audio_max_i2s_playback_channels; + u64 hdmi_audio_i2s_formats; + unsigned int hdmi_audio_spdif_playback: 1; + int hdmi_audio_dai_port; + const char *hdmi_cec_adapter_name; + u8 hdmi_cec_available_las; + struct mutex hpd_mutex; + void (*hpd_cb)(void *, enum drm_connector_status); + void *hpd_data; +}; + +enum drm_bridge_attach_flags { + DRM_BRIDGE_ATTACH_NO_CONNECTOR = 1, +}; + +struct cec_msg; + +struct drm_bridge_funcs { + int (*attach)(struct drm_bridge *, struct drm_encoder *, enum drm_bridge_attach_flags); + void (*destroy)(struct drm_bridge *); + void (*detach)(struct drm_bridge *); + enum drm_mode_status (*mode_valid)(struct drm_bridge *, const struct drm_display_info *, const struct drm_display_mode *); + bool (*mode_fixup)(struct drm_bridge *, const struct drm_display_mode *, struct drm_display_mode *); + void (*disable)(struct drm_bridge *); + void (*post_disable)(struct drm_bridge *); + void (*mode_set)(struct drm_bridge *, const struct drm_display_mode *, const struct drm_display_mode *); + void (*pre_enable)(struct drm_bridge *); + void (*enable)(struct drm_bridge *); + void (*atomic_pre_enable)(struct drm_bridge *, struct drm_atomic_state *); + void (*atomic_enable)(struct drm_bridge *, struct drm_atomic_state *); + void (*atomic_disable)(struct drm_bridge *, struct drm_atomic_state *); + void (*atomic_post_disable)(struct drm_bridge *, struct drm_atomic_state *); + struct drm_bridge_state * (*atomic_duplicate_state)(struct drm_bridge *); + void (*atomic_destroy_state)(struct drm_bridge *, struct drm_bridge_state *); + u32 * (*atomic_get_output_bus_fmts)(struct drm_bridge *, struct drm_bridge_state *, struct drm_crtc_state *, struct drm_connector_state *, unsigned int *); + u32 * (*atomic_get_input_bus_fmts)(struct drm_bridge *, struct drm_bridge_state *, struct drm_crtc_state *, struct drm_connector_state *, u32, unsigned int *); + int (*atomic_check)(struct drm_bridge *, struct drm_bridge_state *, struct drm_crtc_state *, struct drm_connector_state *); + struct drm_bridge_state * (*atomic_reset)(struct drm_bridge *); + enum drm_connector_status (*detect)(struct drm_bridge *, struct drm_connector *); + int (*get_modes)(struct drm_bridge *, struct drm_connector *); + const struct drm_edid * (*edid_read)(struct drm_bridge *, struct drm_connector *); + void (*hpd_notify)(struct drm_bridge *, enum drm_connector_status); + void (*hpd_enable)(struct drm_bridge *); + void (*hpd_disable)(struct drm_bridge *); + enum drm_mode_status (*hdmi_tmds_char_rate_valid)(const struct drm_bridge *, const struct drm_display_mode *, long long unsigned int); + int (*hdmi_clear_infoframe)(struct drm_bridge *, enum hdmi_infoframe_type); + int (*hdmi_write_infoframe)(struct drm_bridge *, enum hdmi_infoframe_type, const u8 *, size_t); + int (*hdmi_audio_startup)(struct drm_bridge *, struct drm_connector *); + int (*hdmi_audio_prepare)(struct drm_bridge *, struct drm_connector *, struct hdmi_codec_daifmt *, struct hdmi_codec_params *); + void (*hdmi_audio_shutdown)(struct drm_bridge *, struct drm_connector *); + int (*hdmi_audio_mute_stream)(struct drm_bridge *, struct drm_connector *, bool, int); + int (*hdmi_cec_init)(struct drm_bridge *, struct drm_connector *); + int (*hdmi_cec_enable)(struct drm_bridge *, bool); + int (*hdmi_cec_log_addr)(struct drm_bridge *, u8); + int (*hdmi_cec_transmit)(struct drm_bridge *, u8, u32, struct cec_msg *); + int (*dp_audio_startup)(struct drm_bridge *, struct drm_connector *); + int (*dp_audio_prepare)(struct drm_bridge *, struct drm_connector *, struct hdmi_codec_daifmt *, struct hdmi_codec_params *); + void (*dp_audio_shutdown)(struct drm_bridge *, struct drm_connector *); + int (*dp_audio_mute_stream)(struct drm_bridge *, struct drm_connector *, bool, int); + void (*debugfs_init)(struct drm_bridge *, struct dentry *); +}; + +struct drm_bridge_timings { + u32 input_bus_flags; + u32 setup_time_ps; + u32 hold_time_ps; + bool dual_link; +}; + +struct drm_flip_work; + +typedef void (*drm_flip_func_t)(struct drm_flip_work *, void *); + +struct drm_flip_work { + const char *name; + drm_flip_func_t func; + struct work_struct worker; + struct list_head queued; + struct list_head commited; + spinlock_t lock; +}; + +struct drm_flip_task { + struct list_head node; + void *data; +}; + +enum dma_resv_usage { + DMA_RESV_USAGE_KERNEL = 0, + DMA_RESV_USAGE_WRITE = 1, + DMA_RESV_USAGE_READ = 2, + DMA_RESV_USAGE_BOOKKEEP = 3, +}; + +struct dma_fence_chain { + struct dma_fence base; + struct dma_fence *prev; + u64 prev_seqno; + struct dma_fence *fence; + union { + struct dma_fence_cb cb; + struct irq_work work; + }; + spinlock_t lock; +}; + +struct drm_format_conv_state { + struct { + void *mem; + size_t size; + bool preallocated; + } tmp; +}; + +struct drm_shadow_plane_state { + struct drm_plane_state base; + struct drm_format_conv_state fmtcnv_state; + struct iosys_map map[4]; + struct iosys_map data[4]; +}; + +struct drm_simple_display_pipe; + +struct drm_simple_display_pipe_funcs { + enum drm_mode_status (*mode_valid)(struct drm_simple_display_pipe *, const struct drm_display_mode *); + void (*enable)(struct drm_simple_display_pipe *, struct drm_crtc_state *, struct drm_plane_state *); + void (*disable)(struct drm_simple_display_pipe *); + int (*check)(struct drm_simple_display_pipe *, struct drm_plane_state *, struct drm_crtc_state *); + void (*update)(struct drm_simple_display_pipe *, struct drm_plane_state *); + int (*prepare_fb)(struct drm_simple_display_pipe *, struct drm_plane_state *); + void (*cleanup_fb)(struct drm_simple_display_pipe *, struct drm_plane_state *); + int (*begin_fb_access)(struct drm_simple_display_pipe *, struct drm_plane_state *); + void (*end_fb_access)(struct drm_simple_display_pipe *, struct drm_plane_state *); + int (*enable_vblank)(struct drm_simple_display_pipe *); + void (*disable_vblank)(struct drm_simple_display_pipe *); + void (*reset_crtc)(struct drm_simple_display_pipe *); + struct drm_crtc_state * (*duplicate_crtc_state)(struct drm_simple_display_pipe *); + void (*destroy_crtc_state)(struct drm_simple_display_pipe *, struct drm_crtc_state *); + void (*reset_plane)(struct drm_simple_display_pipe *); + struct drm_plane_state * (*duplicate_plane_state)(struct drm_simple_display_pipe *); + void (*destroy_plane_state)(struct drm_simple_display_pipe *, struct drm_plane_state *); +}; + +struct drm_simple_display_pipe { + struct drm_crtc crtc; + struct drm_plane plane; + struct drm_encoder encoder; + struct drm_connector *connector; + const struct drm_simple_display_pipe_funcs *funcs; +}; + +struct ewma_psr_time { + long unsigned int internal; +}; + +struct drm_self_refresh_data { + struct drm_crtc *crtc; + struct delayed_work entry_work; + struct mutex avg_mutex; + struct ewma_psr_time entry_avg_ms; + struct ewma_psr_time exit_avg_ms; +}; + +struct drm_dsc_rc_range_parameters { + u8 range_min_qp; + u8 range_max_qp; + u8 range_bpg_offset; +}; + +struct drm_dsc_config { + u8 line_buf_depth; + u8 bits_per_component; + bool convert_rgb; + u8 slice_count; + u16 slice_width; + u16 slice_height; + bool simple_422; + u16 pic_width; + u16 pic_height; + u8 rc_tgt_offset_high; + u8 rc_tgt_offset_low; + u16 bits_per_pixel; + u8 rc_edge_factor; + u8 rc_quant_incr_limit1; + u8 rc_quant_incr_limit0; + u16 initial_xmit_delay; + u16 initial_dec_delay; + bool block_pred_enable; + u8 first_line_bpg_offset; + u16 initial_offset; + u16 rc_buf_thresh[14]; + struct drm_dsc_rc_range_parameters rc_range_params[15]; + u16 rc_model_size; + u8 flatness_min_qp; + u8 flatness_max_qp; + u8 initial_scale_value; + u16 scale_decrement_interval; + u16 scale_increment_interval; + u16 nfl_bpg_offset; + u16 slice_bpg_offset; + u16 final_offset; + bool vbr_enable; + u8 mux_word_size; + u16 slice_chunk_size; + u16 rc_bits; + u8 dsc_version_minor; + u8 dsc_version_major; + bool native_422; + bool native_420; + u8 second_line_bpg_offset; + u16 nsl_bpg_offset; + u16 second_line_offset_adj; +}; + +struct drm_dsc_picture_parameter_set { + u8 dsc_version; + u8 pps_identifier; + u8 pps_reserved; + u8 pps_3; + u8 pps_4; + u8 bits_per_pixel_low; + __be16 pic_height; + __be16 pic_width; + __be16 slice_height; + __be16 slice_width; + __be16 chunk_size; + u8 initial_xmit_delay_high; + u8 initial_xmit_delay_low; + __be16 initial_dec_delay; + u8 pps20_reserved; + u8 initial_scale_value; + __be16 scale_increment_interval; + u8 scale_decrement_interval_high; + u8 scale_decrement_interval_low; + u8 pps26_reserved; + u8 first_line_bpg_offset; + __be16 nfl_bpg_offset; + __be16 slice_bpg_offset; + __be16 initial_offset; + __be16 final_offset; + u8 flatness_min_qp; + u8 flatness_max_qp; + __be16 rc_model_size; + u8 rc_edge_factor; + u8 rc_quant_incr_limit0; + u8 rc_quant_incr_limit1; + u8 rc_tgt_offset; + u8 rc_buf_thresh[14]; + __be16 rc_range_parameters[15]; + u8 native_422_420; + u8 second_line_bpg_offset; + __be16 nsl_bpg_offset; + __be16 second_line_offset_adj; + u32 pps_long_94_reserved; + u32 pps_long_98_reserved; + u32 pps_long_102_reserved; + u32 pps_long_106_reserved; + u32 pps_long_110_reserved; + u32 pps_long_114_reserved; + u32 pps_long_118_reserved; + u32 pps_long_122_reserved; + __be16 pps_short_126_reserved; +} __attribute__((packed)); + +struct mipi_dsi_msg { + u8 channel; + u8 type; + u16 flags; + size_t tx_len; + const void *tx_buf; + size_t rx_len; + void *rx_buf; +}; + +struct mipi_dsi_packet { + size_t size; + u8 header[4]; + size_t payload_length; + const u8 *payload; +}; + +struct mipi_dsi_host; + +struct mipi_dsi_device; + +struct mipi_dsi_host_ops { + int (*attach)(struct mipi_dsi_host *, struct mipi_dsi_device *); + int (*detach)(struct mipi_dsi_host *, struct mipi_dsi_device *); + ssize_t (*transfer)(struct mipi_dsi_host *, const struct mipi_dsi_msg *); +}; + +struct mipi_dsi_host { + struct device *dev; + const struct mipi_dsi_host_ops *ops; + struct list_head list; +}; + +enum mipi_dsi_pixel_format { + MIPI_DSI_FMT_RGB888 = 0, + MIPI_DSI_FMT_RGB666 = 1, + MIPI_DSI_FMT_RGB666_PACKED = 2, + MIPI_DSI_FMT_RGB565 = 3, +}; + +struct mipi_dsi_device { + struct mipi_dsi_host *host; + struct device dev; + bool attached; + char name[20]; + unsigned int channel; + unsigned int lanes; + enum mipi_dsi_pixel_format format; + long unsigned int mode_flags; + long unsigned int hs_rate; + long unsigned int lp_rate; + struct drm_dsc_config *dsc; +}; + +struct mipi_dsi_device_info { + char type[20]; + u32 channel; + struct device_node *node; +}; + +struct mipi_dsi_multi_context { + struct mipi_dsi_device *dsi; + int accum_err; +}; + +enum mipi_dsi_compression_algo { + MIPI_DSI_COMPRESSION_DSC = 0, + MIPI_DSI_COMPRESSION_VENDOR = 3, +}; + +enum mipi_dsi_dcs_tear_mode { + MIPI_DSI_DCS_TEAR_MODE_VBLANK = 0, + MIPI_DSI_DCS_TEAR_MODE_VHBLANK = 1, +}; + +struct mipi_dsi_driver { + struct device_driver driver; + int (*probe)(struct mipi_dsi_device *); + void (*remove)(struct mipi_dsi_device *); + void (*shutdown)(struct mipi_dsi_device *); +}; + +enum { + MIPI_DSI_V_SYNC_START = 1, + MIPI_DSI_V_SYNC_END = 17, + MIPI_DSI_H_SYNC_START = 33, + MIPI_DSI_H_SYNC_END = 49, + MIPI_DSI_COMPRESSION_MODE = 7, + MIPI_DSI_END_OF_TRANSMISSION = 8, + MIPI_DSI_COLOR_MODE_OFF = 2, + MIPI_DSI_COLOR_MODE_ON = 18, + MIPI_DSI_SHUTDOWN_PERIPHERAL = 34, + MIPI_DSI_TURN_ON_PERIPHERAL = 50, + MIPI_DSI_GENERIC_SHORT_WRITE_0_PARAM = 3, + MIPI_DSI_GENERIC_SHORT_WRITE_1_PARAM = 19, + MIPI_DSI_GENERIC_SHORT_WRITE_2_PARAM = 35, + MIPI_DSI_GENERIC_READ_REQUEST_0_PARAM = 4, + MIPI_DSI_GENERIC_READ_REQUEST_1_PARAM = 20, + MIPI_DSI_GENERIC_READ_REQUEST_2_PARAM = 36, + MIPI_DSI_DCS_SHORT_WRITE = 5, + MIPI_DSI_DCS_SHORT_WRITE_PARAM = 21, + MIPI_DSI_DCS_READ = 6, + MIPI_DSI_EXECUTE_QUEUE = 22, + MIPI_DSI_SET_MAXIMUM_RETURN_PACKET_SIZE = 55, + MIPI_DSI_NULL_PACKET = 9, + MIPI_DSI_BLANKING_PACKET = 25, + MIPI_DSI_GENERIC_LONG_WRITE = 41, + MIPI_DSI_DCS_LONG_WRITE = 57, + MIPI_DSI_PICTURE_PARAMETER_SET = 10, + MIPI_DSI_COMPRESSED_PIXEL_STREAM = 11, + MIPI_DSI_LOOSELY_PACKED_PIXEL_STREAM_YCBCR20 = 12, + MIPI_DSI_PACKED_PIXEL_STREAM_YCBCR24 = 28, + MIPI_DSI_PACKED_PIXEL_STREAM_YCBCR16 = 44, + MIPI_DSI_PACKED_PIXEL_STREAM_30 = 13, + MIPI_DSI_PACKED_PIXEL_STREAM_36 = 29, + MIPI_DSI_PACKED_PIXEL_STREAM_YCBCR12 = 61, + MIPI_DSI_PACKED_PIXEL_STREAM_16 = 14, + MIPI_DSI_PACKED_PIXEL_STREAM_18 = 30, + MIPI_DSI_PIXEL_STREAM_3BYTE_18 = 46, + MIPI_DSI_PACKED_PIXEL_STREAM_24 = 62, +}; + +enum { + MIPI_DCS_NOP = 0, + MIPI_DCS_SOFT_RESET = 1, + MIPI_DCS_GET_COMPRESSION_MODE = 3, + MIPI_DCS_GET_DISPLAY_ID = 4, + MIPI_DCS_GET_ERROR_COUNT_ON_DSI = 5, + MIPI_DCS_GET_RED_CHANNEL = 6, + MIPI_DCS_GET_GREEN_CHANNEL = 7, + MIPI_DCS_GET_BLUE_CHANNEL = 8, + MIPI_DCS_GET_DISPLAY_STATUS = 9, + MIPI_DCS_GET_POWER_MODE = 10, + MIPI_DCS_GET_ADDRESS_MODE = 11, + MIPI_DCS_GET_PIXEL_FORMAT = 12, + MIPI_DCS_GET_DISPLAY_MODE = 13, + MIPI_DCS_GET_SIGNAL_MODE = 14, + MIPI_DCS_GET_DIAGNOSTIC_RESULT = 15, + MIPI_DCS_ENTER_SLEEP_MODE = 16, + MIPI_DCS_EXIT_SLEEP_MODE = 17, + MIPI_DCS_ENTER_PARTIAL_MODE = 18, + MIPI_DCS_ENTER_NORMAL_MODE = 19, + MIPI_DCS_GET_IMAGE_CHECKSUM_RGB = 20, + MIPI_DCS_GET_IMAGE_CHECKSUM_CT = 21, + MIPI_DCS_EXIT_INVERT_MODE = 32, + MIPI_DCS_ENTER_INVERT_MODE = 33, + MIPI_DCS_SET_GAMMA_CURVE = 38, + MIPI_DCS_SET_DISPLAY_OFF = 40, + MIPI_DCS_SET_DISPLAY_ON = 41, + MIPI_DCS_SET_COLUMN_ADDRESS = 42, + MIPI_DCS_SET_PAGE_ADDRESS = 43, + MIPI_DCS_WRITE_MEMORY_START = 44, + MIPI_DCS_WRITE_LUT = 45, + MIPI_DCS_READ_MEMORY_START = 46, + MIPI_DCS_SET_PARTIAL_ROWS = 48, + MIPI_DCS_SET_PARTIAL_COLUMNS = 49, + MIPI_DCS_SET_SCROLL_AREA = 51, + MIPI_DCS_SET_TEAR_OFF = 52, + MIPI_DCS_SET_TEAR_ON = 53, + MIPI_DCS_SET_ADDRESS_MODE = 54, + MIPI_DCS_SET_SCROLL_START = 55, + MIPI_DCS_EXIT_IDLE_MODE = 56, + MIPI_DCS_ENTER_IDLE_MODE = 57, + MIPI_DCS_SET_PIXEL_FORMAT = 58, + MIPI_DCS_WRITE_MEMORY_CONTINUE = 60, + MIPI_DCS_SET_3D_CONTROL = 61, + MIPI_DCS_READ_MEMORY_CONTINUE = 62, + MIPI_DCS_GET_3D_CONTROL = 63, + MIPI_DCS_SET_VSYNC_TIMING = 64, + MIPI_DCS_SET_TEAR_SCANLINE = 68, + MIPI_DCS_GET_SCANLINE = 69, + MIPI_DCS_SET_DISPLAY_BRIGHTNESS = 81, + MIPI_DCS_GET_DISPLAY_BRIGHTNESS = 82, + MIPI_DCS_WRITE_CONTROL_DISPLAY = 83, + MIPI_DCS_GET_CONTROL_DISPLAY = 84, + MIPI_DCS_WRITE_POWER_SAVE = 85, + MIPI_DCS_GET_POWER_SAVE = 86, + MIPI_DCS_SET_CABC_MIN_BRIGHTNESS = 94, + MIPI_DCS_GET_CABC_MIN_BRIGHTNESS = 95, + MIPI_DCS_READ_DDB_START = 161, + MIPI_DCS_READ_PPS_START = 162, + MIPI_DCS_READ_DDB_CONTINUE = 168, + MIPI_DCS_READ_PPS_CONTINUE = 169, +}; + +struct drm_atomic_helper_damage_iter { + struct drm_rect plane_src; + const struct drm_rect *clips; + uint32_t num_clips; + uint32_t curr_clip; + bool full_update; +}; + +struct drm_sysfb_device { + struct drm_device dev; + const u8 *edid; + struct drm_display_mode fb_mode; + const struct drm_format_info *fb_format; + unsigned int fb_pitch; + unsigned int fb_gamma_lut_size; + struct iosys_map fb_addr; +}; + +struct drm_sysfb_crtc_state { + struct drm_crtc_state base; + const struct drm_format_info *format; +}; + +struct pm_domain_data { + struct list_head list_node; + struct device *dev; +}; + +enum vga_switcheroo_handler_flags_t { + VGA_SWITCHEROO_CAN_SWITCH_DDC = 1, + VGA_SWITCHEROO_NEEDS_EDP_CONFIG = 2, +}; + +enum vga_switcheroo_state { + VGA_SWITCHEROO_OFF = 0, + VGA_SWITCHEROO_ON = 1, + VGA_SWITCHEROO_NOT_FOUND = 2, +}; + +enum vga_switcheroo_client_id { + VGA_SWITCHEROO_UNKNOWN_ID = 4096, + VGA_SWITCHEROO_IGD = 0, + VGA_SWITCHEROO_DIS = 1, + VGA_SWITCHEROO_MAX_CLIENTS = 2, +}; + +struct vga_switcheroo_handler { + int (*init)(void); + int (*switchto)(enum vga_switcheroo_client_id); + int (*switch_ddc)(enum vga_switcheroo_client_id); + int (*power_state)(enum vga_switcheroo_client_id, enum vga_switcheroo_state); + enum vga_switcheroo_client_id (*get_client_id)(struct pci_dev *); +}; + +struct vga_switcheroo_client_ops { + void (*set_gpu_state)(struct pci_dev *, enum vga_switcheroo_state); + void (*reprobe)(struct pci_dev *); + bool (*can_switch)(struct pci_dev *); + void (*gpu_bound)(struct pci_dev *, enum vga_switcheroo_client_id); +}; + +struct vga_switcheroo_client { + struct pci_dev *pdev; + struct fb_info *fb_info; + enum vga_switcheroo_state pwr_state; + const struct vga_switcheroo_client_ops *ops; + enum vga_switcheroo_client_id id; + bool active; + bool driver_power_control; + struct list_head list; + struct pci_dev *vga_dev; +}; + +struct vgasr_priv { + bool active; + bool delayed_switch_active; + enum vga_switcheroo_client_id delayed_client_id; + struct dentry *debugfs_root; + int registered_clients; + struct list_head clients; + const struct vga_switcheroo_handler *handler; + enum vga_switcheroo_handler_flags_t handler_flags; + struct mutex mux_hw_lock; + int old_ddc_owner; +}; + +enum { + NETIF_F_SG_BIT = 0, + NETIF_F_IP_CSUM_BIT = 1, + __UNUSED_NETIF_F_1 = 2, + NETIF_F_HW_CSUM_BIT = 3, + NETIF_F_IPV6_CSUM_BIT = 4, + NETIF_F_HIGHDMA_BIT = 5, + NETIF_F_FRAGLIST_BIT = 6, + NETIF_F_HW_VLAN_CTAG_TX_BIT = 7, + NETIF_F_HW_VLAN_CTAG_RX_BIT = 8, + NETIF_F_HW_VLAN_CTAG_FILTER_BIT = 9, + NETIF_F_VLAN_CHALLENGED_BIT = 10, + NETIF_F_GSO_BIT = 11, + __UNUSED_NETIF_F_12 = 12, + __UNUSED_NETIF_F_13 = 13, + NETIF_F_GRO_BIT = 14, + NETIF_F_LRO_BIT = 15, + NETIF_F_GSO_SHIFT = 16, + NETIF_F_TSO_BIT = 16, + NETIF_F_GSO_ROBUST_BIT = 17, + NETIF_F_TSO_ECN_BIT = 18, + NETIF_F_TSO_MANGLEID_BIT = 19, + NETIF_F_TSO6_BIT = 20, + NETIF_F_FSO_BIT = 21, + NETIF_F_GSO_GRE_BIT = 22, + NETIF_F_GSO_GRE_CSUM_BIT = 23, + NETIF_F_GSO_IPXIP4_BIT = 24, + NETIF_F_GSO_IPXIP6_BIT = 25, + NETIF_F_GSO_UDP_TUNNEL_BIT = 26, + NETIF_F_GSO_UDP_TUNNEL_CSUM_BIT = 27, + NETIF_F_GSO_PARTIAL_BIT = 28, + NETIF_F_GSO_TUNNEL_REMCSUM_BIT = 29, + NETIF_F_GSO_SCTP_BIT = 30, + NETIF_F_GSO_ESP_BIT = 31, + NETIF_F_GSO_UDP_BIT = 32, + NETIF_F_GSO_UDP_L4_BIT = 33, + NETIF_F_GSO_FRAGLIST_BIT = 34, + NETIF_F_GSO_ACCECN_BIT = 35, + NETIF_F_GSO_LAST = 35, + NETIF_F_FCOE_CRC_BIT = 36, + NETIF_F_SCTP_CRC_BIT = 37, + NETIF_F_NTUPLE_BIT = 38, + NETIF_F_RXHASH_BIT = 39, + NETIF_F_RXCSUM_BIT = 40, + NETIF_F_NOCACHE_COPY_BIT = 41, + NETIF_F_LOOPBACK_BIT = 42, + NETIF_F_RXFCS_BIT = 43, + NETIF_F_RXALL_BIT = 44, + NETIF_F_HW_VLAN_STAG_TX_BIT = 45, + NETIF_F_HW_VLAN_STAG_RX_BIT = 46, + NETIF_F_HW_VLAN_STAG_FILTER_BIT = 47, + NETIF_F_HW_L2FW_DOFFLOAD_BIT = 48, + NETIF_F_HW_TC_BIT = 49, + NETIF_F_HW_ESP_BIT = 50, + NETIF_F_HW_ESP_TX_CSUM_BIT = 51, + NETIF_F_RX_UDP_TUNNEL_PORT_BIT = 52, + NETIF_F_HW_TLS_TX_BIT = 53, + NETIF_F_HW_TLS_RX_BIT = 54, + NETIF_F_GRO_HW_BIT = 55, + NETIF_F_HW_TLS_RECORD_BIT = 56, + NETIF_F_GRO_FRAGLIST_BIT = 57, + NETIF_F_HW_MACSEC_BIT = 58, + NETIF_F_GRO_UDP_FWD_BIT = 59, + NETIF_F_HW_HSR_TAG_INS_BIT = 60, + NETIF_F_HW_HSR_TAG_RM_BIT = 61, + NETIF_F_HW_HSR_FWD_BIT = 62, + NETIF_F_HW_HSR_DUP_BIT = 63, + NETDEV_FEATURE_COUNT = 64, +}; + +struct skb_frag { + netmem_ref netmem; + unsigned int len; + unsigned int offset; +}; + +typedef struct skb_frag skb_frag_t; + +enum { + SKBTX_HW_TSTAMP_NOBPF = 1, + SKBTX_SW_TSTAMP = 2, + SKBTX_IN_PROGRESS = 4, + SKBTX_COMPLETION_TSTAMP = 8, + SKBTX_HW_TSTAMP_NETDEV = 32, + SKBTX_SCHED_TSTAMP = 64, + SKBTX_BPF = 128, +}; + +struct xsk_tx_metadata_compl { + __u64 *tx_timestamp; +}; + +struct skb_shared_info { + __u8 flags; + __u8 meta_len; + __u8 nr_frags; + __u8 tx_flags; + short unsigned int gso_size; + short unsigned int gso_segs; + struct sk_buff *frag_list; + union { + struct skb_shared_hwtstamps hwtstamps; + struct xsk_tx_metadata_compl xsk_meta; + }; + unsigned int gso_type; + u32 tskey; + atomic_t dataref; + union { + struct { + u32 xdp_frags_size; + u32 xdp_frags_truesize; + }; + void *destructor_arg; + }; + skb_frag_t frags[17]; +}; + +struct pernet_operations { + struct list_head list; + int (*init)(struct net *); + void (*pre_exit)(struct net *); + void (*exit)(struct net *); + void (*exit_batch)(struct list_head *); + void (*exit_rtnl)(struct net *, struct list_head *); + unsigned int * const id; + const size_t size; +}; + +struct dev_ext_attribute { + struct device_attribute attr; + void *var; +}; + +enum device_link_state { + DL_STATE_NONE = -1, + DL_STATE_DORMANT = 0, + DL_STATE_AVAILABLE = 1, + DL_STATE_CONSUMER_PROBE = 2, + DL_STATE_ACTIVE = 3, + DL_STATE_SUPPLIER_UNBIND = 4, +}; + +struct device_link { + struct device *supplier; + struct list_head s_node; + struct device *consumer; + struct list_head c_node; + struct device link_dev; + enum device_link_state status; + u32 flags; + refcount_t rpm_active; + struct kref kref; + struct work_struct rm_work; + bool supplier_preactivated; +}; + +struct mii_bus; + +struct mdio_device { + struct device dev; + struct mii_bus *bus; + char modalias[32]; + int (*bus_match)(struct device *, const struct device_driver *); + void (*device_free)(struct mdio_device *); + void (*device_remove)(struct mdio_device *); + int addr; + int flags; + int reset_state; + struct gpio_desc *reset_gpio; + struct reset_control *reset_ctrl; + unsigned int reset_assert_delay; + unsigned int reset_deassert_delay; +}; + +struct phy_c45_device_ids { + u32 devices_in_package; + u32 mmds_present; + u32 device_ids[32]; +}; + +enum phy_state { + PHY_DOWN = 0, + PHY_READY = 1, + PHY_HALTED = 2, + PHY_ERROR = 3, + PHY_UP = 4, + PHY_RUNNING = 5, + PHY_NOLINK = 6, + PHY_CABLETEST = 7, +}; + +typedef enum { + PHY_INTERFACE_MODE_NA = 0, + PHY_INTERFACE_MODE_INTERNAL = 1, + PHY_INTERFACE_MODE_MII = 2, + PHY_INTERFACE_MODE_GMII = 3, + PHY_INTERFACE_MODE_SGMII = 4, + PHY_INTERFACE_MODE_TBI = 5, + PHY_INTERFACE_MODE_REVMII = 6, + PHY_INTERFACE_MODE_RMII = 7, + PHY_INTERFACE_MODE_REVRMII = 8, + PHY_INTERFACE_MODE_RGMII = 9, + PHY_INTERFACE_MODE_RGMII_ID = 10, + PHY_INTERFACE_MODE_RGMII_RXID = 11, + PHY_INTERFACE_MODE_RGMII_TXID = 12, + PHY_INTERFACE_MODE_RTBI = 13, + PHY_INTERFACE_MODE_SMII = 14, + PHY_INTERFACE_MODE_XGMII = 15, + PHY_INTERFACE_MODE_XLGMII = 16, + PHY_INTERFACE_MODE_MOCA = 17, + PHY_INTERFACE_MODE_PSGMII = 18, + PHY_INTERFACE_MODE_QSGMII = 19, + PHY_INTERFACE_MODE_TRGMII = 20, + PHY_INTERFACE_MODE_100BASEX = 21, + PHY_INTERFACE_MODE_1000BASEX = 22, + PHY_INTERFACE_MODE_2500BASEX = 23, + PHY_INTERFACE_MODE_5GBASER = 24, + PHY_INTERFACE_MODE_RXAUI = 25, + PHY_INTERFACE_MODE_XAUI = 26, + PHY_INTERFACE_MODE_10GBASER = 27, + PHY_INTERFACE_MODE_25GBASER = 28, + PHY_INTERFACE_MODE_USXGMII = 29, + PHY_INTERFACE_MODE_10GKR = 30, + PHY_INTERFACE_MODE_QUSGMII = 31, + PHY_INTERFACE_MODE_1000BASEKX = 32, + PHY_INTERFACE_MODE_10G_QXGMII = 33, + PHY_INTERFACE_MODE_50GBASER = 34, + PHY_INTERFACE_MODE_LAUI = 35, + PHY_INTERFACE_MODE_100GBASEP = 36, + PHY_INTERFACE_MODE_MIILITE = 37, + PHY_INTERFACE_MODE_MAX = 38, +} phy_interface_t; + +struct eee_config { + u32 tx_lpi_timer; + bool tx_lpi_enabled; + bool eee_enabled; +}; + +struct phy_package_shared; + +struct phylink; + +struct phy_driver; + +struct mii_timestamper; + +struct pse_control; + +struct phy_device { + struct mdio_device mdio; + const struct phy_driver *drv; + struct device_link *devlink; + u32 phyindex; + u32 phy_id; + struct phy_c45_device_ids c45_ids; + unsigned int is_c45: 1; + unsigned int is_internal: 1; + unsigned int is_pseudo_fixed_link: 1; + unsigned int is_gigabit_capable: 1; + unsigned int has_fixups: 1; + unsigned int suspended: 1; + unsigned int suspended_by_mdio_bus: 1; + unsigned int sysfs_links: 1; + unsigned int loopback_enabled: 1; + unsigned int downshifted_rate: 1; + unsigned int is_on_sfp_module: 1; + unsigned int mac_managed_pm: 1; + unsigned int wol_enabled: 1; + unsigned int is_genphy_driven: 1; + unsigned int autoneg: 1; + unsigned int link: 1; + unsigned int autoneg_complete: 1; + unsigned int interrupts: 1; + unsigned int irq_suspended: 1; + unsigned int irq_rerun: 1; + unsigned int default_timestamp: 1; + int rate_matching; + enum phy_state state; + u32 dev_flags; + phy_interface_t interface; + long unsigned int possible_interfaces[1]; + int speed; + int duplex; + int port; + int pause; + int asym_pause; + u8 master_slave_get; + u8 master_slave_set; + u8 master_slave_state; + long unsigned int supported[2]; + long unsigned int advertising[2]; + long unsigned int lp_advertising[2]; + long unsigned int adv_old[2]; + long unsigned int supported_eee[2]; + long unsigned int advertising_eee[2]; + long unsigned int eee_disabled_modes[2]; + bool enable_tx_lpi; + bool eee_active; + struct eee_config eee_cfg; + long unsigned int host_interfaces[1]; + struct list_head leds; + int irq; + void *priv; + struct phy_package_shared *shared; + struct sk_buff *skb; + void *ehdr; + struct nlattr *nest; + struct delayed_work state_queue; + struct mutex lock; + bool sfp_bus_attached; + struct sfp_bus *sfp_bus; + struct phylink *phylink; + struct net_device *attached_dev; + struct mii_timestamper *mii_ts; + struct pse_control *psec; + u8 mdix; + u8 mdix_ctrl; + int pma_extable; + unsigned int link_down_events; + void (*phy_link_change)(struct phy_device *, bool); + void (*adjust_link)(struct net_device *); + const struct macsec_ops *macsec_ops; +}; + +struct ethtool_phy_stats { + u64 rx_packets; + u64 rx_bytes; + u64 rx_errors; + u64 tx_packets; + u64 tx_bytes; + u64 tx_errors; +}; + +struct phy_plca_cfg { + int version; + int enabled; + int node_id; + int node_cnt; + int to_tmr; + int burst_cnt; + int burst_tmr; +}; + +struct phy_plca_status { + bool pst; +}; + +struct phy_tdr_config { + u32 first; + u32 last; + u32 step; + s8 pair; +}; + +struct mdio_bus_stats { + u64_stats_t transfers; + u64_stats_t errors; + u64_stats_t writes; + u64_stats_t reads; + struct u64_stats_sync syncp; +}; + +struct mii_bus { + struct module *owner; + const char *name; + char id[61]; + void *priv; + int (*read)(struct mii_bus *, int, int); + int (*write)(struct mii_bus *, int, int, u16); + int (*read_c45)(struct mii_bus *, int, int, int); + int (*write_c45)(struct mii_bus *, int, int, int, u16); + int (*reset)(struct mii_bus *); + struct mdio_bus_stats stats[32]; + struct mutex mdio_lock; + struct device *parent; + enum { + MDIOBUS_ALLOCATED = 1, + MDIOBUS_REGISTERED = 2, + MDIOBUS_UNREGISTERED = 3, + MDIOBUS_RELEASED = 4, + } state; + struct device dev; + struct mdio_device *mdio_map[32]; + u32 phy_mask; + u32 phy_ignore_ta_mask; + int irq[32]; + int reset_delay_us; + int reset_post_delay_us; + struct gpio_desc *reset_gpiod; + struct mutex shared_lock; + struct phy_package_shared *shared[32]; +}; + +struct mdio_driver_common { + struct device_driver driver; + int flags; +}; + +struct mdio_driver { + struct mdio_driver_common mdiodrv; + int (*probe)(struct mdio_device *); + void (*remove)(struct mdio_device *); + void (*shutdown)(struct mdio_device *); +}; + +struct mii_timestamper { + bool (*rxtstamp)(struct mii_timestamper *, struct sk_buff *, int); + void (*txtstamp)(struct mii_timestamper *, struct sk_buff *, int); + int (*hwtstamp)(struct mii_timestamper *, struct kernel_hwtstamp_config *, struct netlink_ext_ack *); + void (*link_state)(struct mii_timestamper *, struct phy_device *); + int (*ts_info)(struct mii_timestamper *, struct kernel_ethtool_ts_info *); + struct device *device; +}; + +struct phy_driver { + struct mdio_driver_common mdiodrv; + u32 phy_id; + char *name; + u32 phy_id_mask; + const long unsigned int * const features; + u32 flags; + const void *driver_data; + int (*soft_reset)(struct phy_device *); + int (*config_init)(struct phy_device *); + int (*probe)(struct phy_device *); + int (*get_features)(struct phy_device *); + unsigned int (*inband_caps)(struct phy_device *, phy_interface_t); + int (*config_inband)(struct phy_device *, unsigned int); + int (*get_rate_matching)(struct phy_device *, phy_interface_t); + int (*suspend)(struct phy_device *); + int (*resume)(struct phy_device *); + int (*config_aneg)(struct phy_device *); + int (*aneg_done)(struct phy_device *); + int (*read_status)(struct phy_device *); + int (*config_intr)(struct phy_device *); + irqreturn_t (*handle_interrupt)(struct phy_device *); + void (*remove)(struct phy_device *); + int (*match_phy_device)(struct phy_device *, const struct phy_driver *); + int (*set_wol)(struct phy_device *, struct ethtool_wolinfo *); + void (*get_wol)(struct phy_device *, struct ethtool_wolinfo *); + void (*link_change_notify)(struct phy_device *); + int (*read_mmd)(struct phy_device *, int, u16); + int (*write_mmd)(struct phy_device *, int, u16, u16); + int (*read_page)(struct phy_device *); + int (*write_page)(struct phy_device *, int); + int (*module_info)(struct phy_device *, struct ethtool_modinfo *); + int (*module_eeprom)(struct phy_device *, struct ethtool_eeprom *, u8 *); + int (*cable_test_start)(struct phy_device *); + int (*cable_test_tdr_start)(struct phy_device *, const struct phy_tdr_config *); + int (*cable_test_get_status)(struct phy_device *, bool *); + void (*get_phy_stats)(struct phy_device *, struct ethtool_eth_phy_stats *, struct ethtool_phy_stats *); + void (*get_link_stats)(struct phy_device *, struct ethtool_link_ext_stats *); + int (*update_stats)(struct phy_device *); + int (*get_sset_count)(struct phy_device *); + void (*get_strings)(struct phy_device *, u8 *); + void (*get_stats)(struct phy_device *, struct ethtool_stats *, u64 *); + int (*get_tunable)(struct phy_device *, struct ethtool_tunable *, void *); + int (*set_tunable)(struct phy_device *, struct ethtool_tunable *, const void *); + int (*set_loopback)(struct phy_device *, bool, int); + int (*get_sqi)(struct phy_device *); + int (*get_sqi_max)(struct phy_device *); + int (*get_plca_cfg)(struct phy_device *, struct phy_plca_cfg *); + int (*set_plca_cfg)(struct phy_device *, const struct phy_plca_cfg *); + int (*get_plca_status)(struct phy_device *, struct phy_plca_status *); + int (*led_brightness_set)(struct phy_device *, u8, enum led_brightness); + int (*led_blink_set)(struct phy_device *, u8, long unsigned int *, long unsigned int *); + int (*led_hw_is_supported)(struct phy_device *, u8, long unsigned int); + int (*led_hw_control_set)(struct phy_device *, u8, long unsigned int); + int (*led_hw_control_get)(struct phy_device *, u8, long unsigned int *); + int (*led_polarity_set)(struct phy_device *, int, long unsigned int); + unsigned int (*get_next_update_time)(struct phy_device *); +}; + +struct trace_event_raw_mdio_access { + struct trace_entry ent; + char busid[61]; + char read; + u8 addr; + u16 val; + unsigned int regnum; + char __data[0]; +}; + +struct trace_event_data_offsets_mdio_access {}; + +typedef void (*btf_trace_mdio_access)(void *, struct mii_bus *, char, u8, unsigned int, u16, int); + +struct mdio_bus_stat_attr { + int addr; + unsigned int field_offset; +}; + +struct link_capabilities { + int speed; + unsigned int duplex; + long unsigned int linkmodes[2]; +}; + +struct link_mode_info { + int speed; + u8 lanes; + u8 duplex; +}; + +enum { + LINK_CAPA_10HD = 0, + LINK_CAPA_10FD = 1, + LINK_CAPA_100HD = 2, + LINK_CAPA_100FD = 3, + LINK_CAPA_1000HD = 4, + LINK_CAPA_1000FD = 5, + LINK_CAPA_2500FD = 6, + LINK_CAPA_5000FD = 7, + LINK_CAPA_10000FD = 8, + LINK_CAPA_20000FD = 9, + LINK_CAPA_25000FD = 10, + LINK_CAPA_40000FD = 11, + LINK_CAPA_50000FD = 12, + LINK_CAPA_56000FD = 13, + LINK_CAPA_100000FD = 14, + LINK_CAPA_200000FD = 15, + LINK_CAPA_400000FD = 16, + LINK_CAPA_800000FD = 17, + __LINK_CAPA_MAX = 18, +}; + +struct mdio_board_info { + const char *bus_id; + char modalias[32]; + int mdio_addr; + const void *platform_data; +}; + +struct faux_device { + struct device dev; +}; + +struct faux_device_ops { + int (*probe)(struct faux_device *); + void (*remove)(struct faux_device *); +}; + +struct fixed_phy_status { + int link; + int speed; + int duplex; + int pause; + int asym_pause; +}; + +struct fixed_mdio_bus { + struct mii_bus *mii_bus; + struct list_head phys; +}; + +struct fixed_phy { + int addr; + struct phy_device *phydev; + struct fixed_phy_status status; + bool no_carrier; + int (*link_update)(struct net_device *, struct fixed_phy_status *); + struct list_head node; + struct gpio_desc *link_gpiod; +}; + +struct netdev_xmit { + u16 recursion; + u8 more; + u8 skip_txqueue; + u8 sched_mirred_nest; + u8 nf_dup_skb_recursion; +}; + +struct nf_conntrack { + refcount_t use; +}; + +struct flow_dissector_key_control { + u16 thoff; + u16 addr_type; + u32 flags; +}; + +struct flow_dissector_key_basic { + __be16 n_proto; + u8 ip_proto; + u8 padding; +}; + +struct flow_dissector { + long long unsigned int used_keys; + short unsigned int offset[33]; +}; + +struct flow_keys_basic { + struct flow_dissector_key_control control; + struct flow_dissector_key_basic basic; +}; + +enum { + SKBFL_ZEROCOPY_ENABLE = 1, + SKBFL_SHARED_FRAG = 2, + SKBFL_PURE_ZEROCOPY = 4, + SKBFL_DONT_ORPHAN = 8, + SKBFL_MANAGED_FRAG_REFS = 16, +}; + +enum { + SKB_GSO_TCPV4 = 1, + SKB_GSO_DODGY = 2, + SKB_GSO_TCP_ECN = 4, + SKB_GSO_TCP_FIXEDID = 8, + SKB_GSO_TCPV6 = 16, + SKB_GSO_FCOE = 32, + SKB_GSO_GRE = 64, + SKB_GSO_GRE_CSUM = 128, + SKB_GSO_IPXIP4 = 256, + SKB_GSO_IPXIP6 = 512, + SKB_GSO_UDP_TUNNEL = 1024, + SKB_GSO_UDP_TUNNEL_CSUM = 2048, + SKB_GSO_PARTIAL = 4096, + SKB_GSO_TUNNEL_REMCSUM = 8192, + SKB_GSO_SCTP = 16384, + SKB_GSO_ESP = 32768, + SKB_GSO_UDP = 65536, + SKB_GSO_UDP_L4 = 131072, + SKB_GSO_FRAGLIST = 262144, + SKB_GSO_TCP_ACCECN = 524288, +}; + +enum pkt_hash_types { + PKT_HASH_TYPE_NONE = 0, + PKT_HASH_TYPE_L2 = 1, + PKT_HASH_TYPE_L3 = 2, + PKT_HASH_TYPE_L4 = 3, +}; + +enum netdev_xdp_act { + NETDEV_XDP_ACT_BASIC = 1, + NETDEV_XDP_ACT_REDIRECT = 2, + NETDEV_XDP_ACT_NDO_XMIT = 4, + NETDEV_XDP_ACT_XSK_ZEROCOPY = 8, + NETDEV_XDP_ACT_HW_OFFLOAD = 16, + NETDEV_XDP_ACT_RX_SG = 32, + NETDEV_XDP_ACT_NDO_XMIT_SG = 64, + NETDEV_XDP_ACT_MASK = 127, +}; + +enum netdev_queue_type { + NETDEV_QUEUE_TYPE_RX = 0, + NETDEV_QUEUE_TYPE_TX = 1, +}; + +struct netdev_hw_addr { + struct list_head list; + struct rb_node node; + unsigned char addr[32]; + unsigned char type; + bool global_use; + int sync_cnt; + int refcount; + int synced; + struct callback_head callback_head; +}; + +enum netdev_state_t { + __LINK_STATE_START = 0, + __LINK_STATE_PRESENT = 1, + __LINK_STATE_NOCARRIER = 2, + __LINK_STATE_LINKWATCH_PENDING = 3, + __LINK_STATE_DORMANT = 4, + __LINK_STATE_TESTING = 5, +}; + +enum { + NAPIF_STATE_SCHED = 1, + NAPIF_STATE_MISSED = 2, + NAPIF_STATE_DISABLE = 4, + NAPIF_STATE_NPSVC = 8, + NAPIF_STATE_LISTED = 16, + NAPIF_STATE_NO_BUSY_POLL = 32, + NAPIF_STATE_IN_BUSY_POLL = 64, + NAPIF_STATE_PREFER_BUSY_POLL = 128, + NAPIF_STATE_THREADED = 256, + NAPIF_STATE_SCHED_THREADED = 512, + NAPIF_STATE_HAS_NOTIFIER = 1024, +}; + +enum netdev_queue_state_t { + __QUEUE_STATE_DRV_XOFF = 0, + __QUEUE_STATE_STACK_XOFF = 1, + __QUEUE_STATE_FROZEN = 2, +}; + +struct xdp_umem; + +struct xsk_queue; + +struct xdp_buff_xsk; + +struct xdp_desc; + +struct xsk_buff_pool { + struct device *dev; + struct net_device *netdev; + struct list_head xsk_tx_list; + spinlock_t xsk_tx_list_lock; + refcount_t users; + struct xdp_umem *umem; + struct work_struct work; + spinlock_t rx_lock; + struct list_head free_list; + struct list_head xskb_list; + u32 heads_cnt; + u16 queue_id; + struct xsk_queue *fq; + struct xsk_queue *cq; + dma_addr_t *dma_pages; + struct xdp_buff_xsk *heads; + struct xdp_desc *tx_descs; + u64 chunk_mask; + u64 addrs_cnt; + u32 free_list_cnt; + u32 dma_pages_cnt; + u32 free_heads_cnt; + u32 headroom; + u32 chunk_size; + u32 chunk_shift; + u32 frame_len; + u32 xdp_zc_max_segs; + u8 tx_metadata_len; + u8 cached_need_wakeup; + bool uses_need_wakeup; + bool unaligned; + bool tx_sw_csum; + void *addrs; + spinlock_t cq_lock; + struct xdp_buff_xsk *free_heads[0]; + long: 64; + long: 64; +}; + +struct pp_memory_provider_params { + void *mp_priv; + const struct memory_provider_ops *mp_ops; +}; + +struct rps_map; + +struct rps_dev_flow_table; + +struct netdev_rx_queue { + struct xdp_rxq_info xdp_rxq; + struct rps_map *rps_map; + struct rps_dev_flow_table *rps_flow_table; + struct kobject kobj; + const struct attribute_group **groups; + struct net_device *dev; + netdevice_tracker dev_tracker; + struct xsk_buff_pool *pool; + struct napi_struct *napi; + struct pp_memory_provider_params mp_params; +}; + +struct netdev_config { + u32 hds_thresh; + u8 hds_config; +}; + +struct sd_flow_limit; + +struct softnet_data { + struct list_head poll_list; + struct sk_buff_head process_queue; + local_lock_t process_queue_bh_lock; + unsigned int processed; + unsigned int time_squeeze; + struct softnet_data *rps_ipi_list; + unsigned int received_rps; + bool in_net_rx_action; + bool in_napi_threaded_poll; + struct sd_flow_limit *flow_limit; + struct Qdisc *output_queue; + struct Qdisc **output_queue_tailp; + struct sk_buff *completion_queue; + struct sk_buff_head xfrm_backlog; + struct netdev_xmit xmit; + unsigned int input_queue_head; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + call_single_data_t csd; + struct softnet_data *rps_ipi_next; + unsigned int cpu; + unsigned int input_queue_tail; + struct sk_buff_head input_pkt_queue; + struct napi_struct backlog; + long: 64; + atomic_t dropped; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + spinlock_t defer_lock; + int defer_count; + int defer_ipi_scheduled; + struct sk_buff *defer_list; + long: 64; + call_single_data_t defer_csd; +}; + +enum ethtool_stringset { + ETH_SS_TEST = 0, + ETH_SS_STATS = 1, + ETH_SS_PRIV_FLAGS = 2, + ETH_SS_NTUPLE_FILTERS = 3, + ETH_SS_FEATURES = 4, + ETH_SS_RSS_HASH_FUNCS = 5, + ETH_SS_TUNABLES = 6, + ETH_SS_PHY_STATS = 7, + ETH_SS_PHY_TUNABLES = 8, + ETH_SS_LINK_MODES = 9, + ETH_SS_MSG_CLASSES = 10, + ETH_SS_WOL_MODES = 11, + ETH_SS_SOF_TIMESTAMPING = 12, + ETH_SS_TS_TX_TYPES = 13, + ETH_SS_TS_RX_FILTERS = 14, + ETH_SS_UDP_TUNNEL_TYPES = 15, + ETH_SS_STATS_STD = 16, + ETH_SS_STATS_ETH_PHY = 17, + ETH_SS_STATS_ETH_MAC = 18, + ETH_SS_STATS_ETH_CTRL = 19, + ETH_SS_STATS_RMON = 20, + ETH_SS_STATS_PHY = 21, + ETH_SS_TS_FLAGS = 22, + ETH_SS_COUNT = 23, +}; + +enum { + TCP_V4_FLOW = 1, + UDP_V4_FLOW = 2, + SCTP_V4_FLOW = 3, + AH_ESP_V4_FLOW = 4, + TCP_V6_FLOW = 5, + UDP_V6_FLOW = 6, + SCTP_V6_FLOW = 7, + AH_ESP_V6_FLOW = 8, + AH_V4_FLOW = 9, + ESP_V4_FLOW = 10, + AH_V6_FLOW = 11, + ESP_V6_FLOW = 12, + IPV4_USER_FLOW = 13, + IP_USER_FLOW = 13, + IPV6_USER_FLOW = 14, + IPV4_FLOW = 16, + IPV6_FLOW = 17, + ETHER_FLOW = 18, + GTPU_V4_FLOW = 19, + GTPU_V6_FLOW = 20, + GTPC_V4_FLOW = 21, + GTPC_V6_FLOW = 22, + GTPC_TEID_V4_FLOW = 23, + GTPC_TEID_V6_FLOW = 24, + GTPU_EH_V4_FLOW = 25, + GTPU_EH_V6_FLOW = 26, + GTPU_UL_V4_FLOW = 27, + GTPU_UL_V6_FLOW = 28, + GTPU_DL_V4_FLOW = 29, + GTPU_DL_V6_FLOW = 30, + __FLOW_TYPE_COUNT = 31, +}; + +enum { + ETH_RSS_HASH_TOP_BIT = 0, + ETH_RSS_HASH_XOR_BIT = 1, + ETH_RSS_HASH_CRC32_BIT = 2, + ETH_RSS_HASH_FUNCS_COUNT = 3, +}; + +typedef __u16 __virtio16; + +typedef __u32 __virtio32; + +typedef __u64 __virtio64; + +struct virtio_net_config { + __u8 mac[6]; + __virtio16 status; + __virtio16 max_virtqueue_pairs; + __virtio16 mtu; + __le32 speed; + __u8 duplex; + __u8 rss_max_key_size; + __le16 rss_max_indirection_table_length; + __le32 supported_hash_types; +}; + +struct virtio_net_hdr_v1 { + __u8 flags; + __u8 gso_type; + __virtio16 hdr_len; + __virtio16 gso_size; + union { + struct { + __virtio16 csum_start; + __virtio16 csum_offset; + }; + struct { + __virtio16 start; + __virtio16 offset; + } csum; + struct { + __le16 segments; + __le16 dup_acks; + } rsc; + }; + __virtio16 num_buffers; +}; + +struct virtio_net_hdr_v1_hash { + struct virtio_net_hdr_v1 hdr; + __le16 hash_value_lo; + __le16 hash_value_hi; + __le16 hash_report; + __le16 padding; +}; + +struct virtio_net_hdr_v1_hash_tunnel { + struct virtio_net_hdr_v1_hash hash_hdr; + __le16 outer_th_offset; + __le16 inner_nh_offset; +}; + +struct virtio_net_hdr { + __u8 flags; + __u8 gso_type; + __virtio16 hdr_len; + __virtio16 gso_size; + __virtio16 csum_start; + __virtio16 csum_offset; +}; + +struct virtio_net_hdr_mrg_rxbuf { + struct virtio_net_hdr hdr; + __virtio16 num_buffers; +}; + +struct virtio_net_ctrl_hdr { + __u8 class; + __u8 cmd; +}; + +typedef __u8 virtio_net_ctrl_ack; + +struct virtio_net_ctrl_mac { + __virtio32 entries; + __u8 macs[0]; +}; + +struct virtio_net_ctrl_mq { + __virtio16 virtqueue_pairs; +}; + +struct virtio_net_rss_config_hdr { + __le32 hash_types; + __le16 indirection_table_mask; + __le16 unclassified_queue; + __le16 indirection_table[0]; +}; + +struct virtio_net_rss_config_trailer { + __le16 max_tx_vq; + __u8 hash_key_length; + __u8 hash_key_data[0]; +}; + +struct virtio_net_ctrl_coal_tx { + __le32 tx_max_packets; + __le32 tx_usecs; +}; + +struct virtio_net_ctrl_coal_rx { + __le32 rx_max_packets; + __le32 rx_usecs; +}; + +struct virtio_net_ctrl_coal { + __le32 max_packets; + __le32 max_usecs; +}; + +struct virtio_net_ctrl_coal_vq { + __le16 vqn; + __le16 reserved; + struct virtio_net_ctrl_coal coal; +}; + +struct virtio_net_stats_capabilities { + __le64 supported_stats_types[1]; +}; + +struct virtio_net_ctrl_queue_stats { + struct { + __le16 vq_index; + __le16 reserved[3]; + __le64 types_bitmap[1]; + } stats[1]; +}; + +struct virtio_net_stats_reply_hdr { + __u8 type; + __u8 reserved; + __le16 vq_index; + __le16 reserved1; + __le16 size; +}; + +enum xdp_buff_flags { + XDP_FLAGS_HAS_FRAGS = 1, + XDP_FLAGS_FRAGS_PF_MEMALLOC = 2, +}; + +enum dim_cq_period_mode { + DIM_CQ_PERIOD_MODE_START_FROM_EQE = 0, + DIM_CQ_PERIOD_MODE_START_FROM_CQE = 1, + DIM_CQ_PERIOD_NUM_MODES = 2, +}; + +struct failover_ops { + int (*slave_pre_register)(struct net_device *, struct net_device *); + int (*slave_register)(struct net_device *, struct net_device *); + int (*slave_pre_unregister)(struct net_device *, struct net_device *); + int (*slave_unregister)(struct net_device *, struct net_device *); + int (*slave_link_change)(struct net_device *, struct net_device *); + int (*slave_name_change)(struct net_device *, struct net_device *); + rx_handler_result_t (*slave_handle_frame)(struct sk_buff **); +}; + +struct failover { + struct list_head list; + struct net_device *failover_dev; + netdevice_tracker dev_tracker; + struct failover_ops *ops; +}; + +struct rx_queue_attribute { + struct attribute attr; + ssize_t (*show)(struct netdev_rx_queue *, char *); + ssize_t (*store)(struct netdev_rx_queue *, const char *, size_t); +}; + +struct netdev_queue_stats_rx { + u64 bytes; + u64 packets; + u64 alloc_fail; + u64 hw_drops; + u64 hw_drop_overruns; + u64 csum_complete; + u64 csum_unnecessary; + u64 csum_none; + u64 csum_bad; + u64 hw_gro_packets; + u64 hw_gro_bytes; + u64 hw_gro_wire_packets; + u64 hw_gro_wire_bytes; + u64 hw_drop_ratelimits; +}; + +struct netdev_queue_stats_tx { + u64 bytes; + u64 packets; + u64 hw_drops; + u64 hw_drop_errors; + u64 csum_none; + u64 needs_csum; + u64 hw_gso_packets; + u64 hw_gso_bytes; + u64 hw_gso_wire_packets; + u64 hw_gso_wire_bytes; + u64 hw_drop_ratelimits; + u64 stop; + u64 wake; +}; + +struct xdp_desc { + __u64 addr; + __u32 len; + __u32 options; +}; + +struct xdp_umem { + void *addrs; + u64 size; + u32 headroom; + u32 chunk_size; + u32 chunks; + u32 npgs; + struct user_struct *user; + refcount_t users; + u8 flags; + u8 tx_metadata_len; + bool zc; + struct page **pgs; + int id; + struct list_head xsk_dma_list; + struct work_struct work; +}; + +struct xdp_buff_xsk { + struct xdp_buff xdp; + u8 cb[24]; + dma_addr_t dma; + dma_addr_t frame_dma; + struct xsk_buff_pool *pool; + struct list_head list_node; + long: 64; +}; + +struct ewma_pkt_len { + long unsigned int internal; +}; + +struct virtnet_stat_desc { + char desc[32]; + size_t offset; + size_t qstat_offset; +}; + +struct virtnet_sq_free_stats { + u64 packets; + u64 bytes; + u64 napi_packets; + u64 napi_bytes; + u64 xsk; +}; + +struct virtnet_sq_stats { + struct u64_stats_sync syncp; + u64_stats_t packets; + u64_stats_t bytes; + u64_stats_t xdp_tx; + u64_stats_t xdp_tx_drops; + u64_stats_t kicks; + u64_stats_t tx_timeouts; + u64_stats_t stop; + u64_stats_t wake; +}; + +struct virtnet_rq_stats { + struct u64_stats_sync syncp; + u64_stats_t packets; + u64_stats_t bytes; + u64_stats_t drops; + u64_stats_t xdp_packets; + u64_stats_t xdp_tx; + u64_stats_t xdp_redirects; + u64_stats_t xdp_drops; + u64_stats_t kicks; +}; + +struct virtnet_interrupt_coalesce { + u32 max_packets; + u32 max_usecs; +}; + +struct virtnet_rq_dma { + dma_addr_t addr; + u32 ref; + u16 len; + u16 need_sync; +}; + +struct send_queue { + struct virtqueue *vq; + struct scatterlist sg[19]; + char name[16]; + struct virtnet_sq_stats stats; + struct virtnet_interrupt_coalesce intr_coal; + struct napi_struct napi; + bool reset; + struct xsk_buff_pool *xsk_pool; + dma_addr_t xsk_hdr_dma_addr; +}; + +struct receive_queue { + struct virtqueue *vq; + struct napi_struct napi; + struct bpf_prog *xdp_prog; + struct virtnet_rq_stats stats; + u16 calls; + bool dim_enabled; + struct mutex dim_lock; + struct dim dim; + u32 packets_in_napi; + struct virtnet_interrupt_coalesce intr_coal; + struct page *pages; + struct ewma_pkt_len mrg_avg_pkt_len; + struct page_frag alloc_frag; + struct scatterlist sg[19]; + unsigned int min_buf_len; + char name[16]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct xdp_rxq_info xdp_rxq; + struct virtnet_rq_dma *last_dma; + struct xsk_buff_pool *xsk_pool; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct xdp_rxq_info xsk_rxq_info; + struct xdp_buff **xsk_buffs; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct control_buf { + struct virtio_net_ctrl_hdr hdr; + virtio_net_ctrl_ack status; +}; + +struct virtnet_info { + struct virtio_device *vdev; + struct virtqueue *cvq; + struct net_device *dev; + struct send_queue *sq; + struct receive_queue *rq; + unsigned int status; + u16 max_queue_pairs; + u16 curr_queue_pairs; + u16 xdp_queue_pairs; + bool xdp_enabled; + bool big_packets; + unsigned int big_packets_num_skbfrags; + bool mergeable_rx_bufs; + bool has_rss; + bool has_rss_hash_report; + u8 rss_key_size; + u16 rss_indir_table_size; + u32 rss_hash_types_supported; + u32 rss_hash_types_saved; + bool has_cvq; + struct mutex cvq_lock; + bool any_header_sg; + u8 hdr_len; + struct delayed_work refill; + bool tx_tnl; + bool rx_tnl; + bool rx_tnl_csum; + bool refill_enabled; + spinlock_t refill_lock; + struct work_struct config_work; + struct work_struct rx_mode_work; + bool rx_mode_work_enabled; + bool affinity_hint_set; + struct hlist_node node; + struct hlist_node node_dead; + struct control_buf *ctrl; + u8 duplex; + u32 speed; + bool rx_dim_enabled; + struct virtnet_interrupt_coalesce intr_coal_tx; + struct virtnet_interrupt_coalesce intr_coal_rx; + long unsigned int guest_offloads; + long unsigned int guest_offloads_capable; + struct failover *failover; + u64 device_stats_cap; + struct virtio_net_rss_config_hdr *rss_hdr; + union { + struct virtio_net_rss_config_trailer rss_trailer; + struct { + unsigned char __offset_to_hash_key_data[3]; + u8 rss_hash_key_data[40]; + }; + }; +}; + +struct virtio_net_common_hdr { + union { + struct virtio_net_hdr hdr; + struct virtio_net_hdr_mrg_rxbuf mrg_hdr; + struct virtio_net_hdr_v1_hash hash_v1_hdr; + struct virtio_net_hdr_v1_hash_tunnel tnl_hdr; + }; +}; + +enum virtnet_xmit_type { + VIRTNET_XMIT_TYPE_SKB = 0, + VIRTNET_XMIT_TYPE_SKB_ORPHAN = 1, + VIRTNET_XMIT_TYPE_XDP = 2, + VIRTNET_XMIT_TYPE_XSK = 3, +}; + +struct virtnet_stats_ctx { + bool to_qstat; + u32 desc_num[3]; + u64 bitmap[3]; + u32 size[3]; + u64 *data; +}; + +struct shm_channel { + struct device *dev; + void *base; +}; + +union smc_proto_hdr { + u32 as_uint32; + struct { + u8 msg_type: 3; + u8 msg_version: 3; + u8 reserved_1: 1; + u8 direction: 1; + u8 status; + u8 reserved_2; + u8 reset_vf: 1; + u8 reserved_3: 6; + u8 owner_is_pf: 1; + }; +}; + +struct ipv4_devconf { + void *sysctl; + int data[33]; + long unsigned int state[1]; +}; + +struct in_ifaddr; + +struct ip_mc_list; + +struct in_device { + struct net_device *dev; + netdevice_tracker dev_tracker; + refcount_t refcnt; + int dead; + struct in_ifaddr *ifa_list; + struct ip_mc_list *mc_list; + struct ip_mc_list **mc_hash; + int mc_count; + spinlock_t mc_tomb_lock; + struct ip_mc_list *mc_tomb; + long unsigned int mr_v1_seen; + long unsigned int mr_v2_seen; + long unsigned int mr_maxdelay; + long unsigned int mr_qi; + long unsigned int mr_qri; + unsigned char mr_qrv; + unsigned char mr_gq_running; + u32 mr_ifc_count; + struct timer_list mr_gq_timer; + struct timer_list mr_ifc_timer; + struct neigh_parms *arp_parms; + struct ipv4_devconf cnf; + struct callback_head callback_head; +}; + +struct in_ifaddr { + struct hlist_node addr_lst; + struct in_ifaddr *ifa_next; + struct in_device *ifa_dev; + struct callback_head callback_head; + __be32 ifa_local; + __be32 ifa_address; + __be32 ifa_mask; + __u32 ifa_rt_priority; + __be32 ifa_broadcast; + unsigned char ifa_scope; + unsigned char ifa_prefixlen; + unsigned char ifa_proto; + __u32 ifa_flags; + char ifa_label[16]; + __u32 ifa_valid_lft; + __u32 ifa_preferred_lft; + long unsigned int ifa_cstamp; + long unsigned int ifa_tstamp; +}; + +enum net_shaper_metric { + NET_SHAPER_METRIC_BPS = 0, + NET_SHAPER_METRIC_PPS = 1, +}; + +enum net_shaper_binding_type { + NET_SHAPER_BINDING_TYPE_NETDEV = 0, +}; + +struct devlink; + +struct net_shaper_binding { + enum net_shaper_binding_type type; + union { + struct net_device *netdev; + struct devlink *devlink; + }; +}; + +struct net_shaper_handle { + enum net_shaper_scope scope; + u32 id; +}; + +struct net_shaper { + struct net_shaper_handle parent; + struct net_shaper_handle handle; + enum net_shaper_metric metric; + u64 bw_min; + u64 bw_max; + u64 burst; + u32 priority; + u32 weight; + u32 leaves; + struct callback_head rcu; +}; + +enum gdma_queue_type { + GDMA_INVALID_QUEUE = 0, + GDMA_SQ = 1, + GDMA_RQ = 2, + GDMA_CQ = 3, + GDMA_EQ = 4, +}; + +struct gdma_dev_id { + union { + struct { + u16 type; + u16 instance; + }; + u32 as_uint32; + }; +}; + +struct gdma_context; + +struct auxiliary_device; + +struct gdma_dev { + struct gdma_context *gdma_context; + struct gdma_dev_id dev_id; + u32 pdid; + u32 doorbell; + u32 gpa_mkey; + void *driver_data; + struct auxiliary_device *adev; + bool is_suspended; + bool rdma_teardown; +}; + +struct gdma_sge { + u64 address; + u32 mem_key; + u32 size; +}; + +struct gdma_wqe_request { + struct gdma_sge *sgl; + u32 num_sge; + u32 inline_oob_size; + const void *inline_oob_data; + u32 flags; + u32 client_data_unit; +}; + +struct gdma_mem_info { + struct device *dev; + dma_addr_t dma_handle; + void *virt_addr; + u64 length; + u64 dma_region_handle; +}; + +struct gdma_queue; + +struct gdma_context { + struct device *dev; + struct dentry *mana_pci_debugfs; + unsigned int max_num_queues; + unsigned int max_num_msix; + unsigned int num_msix_usable; + struct xarray irq_contexts; + u16 adapter_mtu; + unsigned int max_num_cqs; + struct gdma_queue **cq_table; + struct mutex eq_test_event_mutex; + struct completion eq_test_event; + u32 test_event_eq_id; + bool is_pf; + phys_addr_t bar0_pa; + void *bar0_va; + void *shm_base; + void *db_page_base; + phys_addr_t phys_db_page_base; + u32 db_page_size; + int numa_node; + struct shm_channel shm_channel; + struct gdma_dev hwc; + struct gdma_dev mana; + struct gdma_dev mana_ib; + u64 pf_cap_flags1; + struct workqueue_struct *service_wq; + long unsigned int flags; +}; + +struct gdma_comp { + u32 cqe_data[15]; + u32 wq_num; + bool is_sq; +}; + +struct gdma_event { + u32 details[3]; + u8 type; +}; + +struct mana_eq { + struct gdma_queue *eq; + struct dentry *mana_eq_debugfs; +}; + +typedef void gdma_eq_callback(void *, struct gdma_queue *, struct gdma_event *); + +typedef void gdma_cq_callback(void *, struct gdma_queue *); + +struct gdma_queue { + struct gdma_dev *gdma_dev; + enum gdma_queue_type type; + u32 id; + struct gdma_mem_info mem_info; + void *queue_mem_ptr; + u32 queue_size; + bool monitor_avl_buf; + u32 head; + u32 tail; + struct list_head entry; + union { + struct { + bool disable_needed; + gdma_eq_callback *callback; + void *context; + unsigned int msix_index; + u32 log2_throttle_limit; + } eq; + struct { + gdma_cq_callback *callback; + void *context; + struct gdma_queue *parent; + } cq; + }; +}; + +struct gdma_posted_wqe_info { + u32 wqe_size_in_bu; +}; + +typedef u64 mana_handle_t; + +enum TRI_STATE { + TRI_STATE_UNKNOWN = -1, + TRI_STATE_FALSE = 0, + TRI_STATE_TRUE = 1, +}; + +struct mana_stats_rx { + u64 packets; + u64 bytes; + u64 xdp_drop; + u64 xdp_tx; + u64 xdp_redirect; + struct u64_stats_sync syncp; +}; + +struct mana_stats_tx { + u64 packets; + u64 bytes; + u64 xdp_xmit; + u64 tso_packets; + u64 tso_bytes; + u64 tso_inner_packets; + u64 tso_inner_bytes; + u64 short_pkt_fmt; + u64 long_pkt_fmt; + u64 csum_partial; + u64 mana_map_err; + struct u64_stats_sync syncp; +}; + +struct mana_txq { + struct gdma_queue *gdma_sq; + union { + u32 gdma_txq_id; + struct { + u32 reserved1: 10; + u32 vsq_frame: 14; + u32 reserved2: 8; + }; + }; + u16 vp_offset; + struct net_device *ndev; + struct sk_buff_head pending_skbs; + struct netdev_queue *net_txq; + atomic_t pending_sends; + bool napi_initialized; + struct mana_stats_tx stats; +}; + +enum mana_cq_type { + MANA_CQ_TYPE_RX = 0, + MANA_CQ_TYPE_TX = 1, +}; + +struct mana_rxq; + +struct mana_cq { + struct gdma_queue *gdma_cq; + u32 gdma_id; + enum mana_cq_type type; + struct mana_rxq *rxq; + struct mana_txq *txq; + struct gdma_comp gdma_comp_buf[512]; + struct napi_struct napi; + int work_done; + int work_done_since_doorbell; + int budget; +}; + +struct mana_recv_buf_oob { + struct gdma_wqe_request wqe_req; + void *buf_va; + bool from_pool; + u32 num_sge; + struct gdma_sge sgl[15]; + struct gdma_posted_wqe_info wqe_inf; +}; + +struct mana_rxq { + struct gdma_queue *gdma_rq; + u32 gdma_id; + u32 rxq_idx; + u32 datasize; + u32 alloc_size; + u32 headroom; + u32 frag_count; + mana_handle_t rxobj; + struct mana_cq rx_cq; + struct completion fence_event; + struct net_device *ndev; + u32 num_rx_buf; + u32 buf_index; + struct mana_stats_rx stats; + struct bpf_prog *bpf_prog; + long: 64; + long: 64; + long: 64; + struct xdp_rxq_info xdp_rxq; + void *xdp_save_va; + bool xdp_flush; + int xdp_rc; + struct page_pool *page_pool; + struct dentry *mana_rx_debugfs; + struct mana_recv_buf_oob rx_oobs[0]; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct mana_tx_qp { + struct mana_txq txq; + struct mana_cq tx_cq; + mana_handle_t tx_object; + struct dentry *mana_tx_debugfs; +}; + +struct mana_ethtool_stats { + u64 stop_queue; + u64 wake_queue; + u64 tx_cqe_err; + u64 tx_cqe_unknown_type; + u64 rx_coalesced_err; + u64 rx_cqe_unknown_type; +}; + +struct mana_ethtool_hc_stats { + u64 hc_rx_discards_no_wqe; + u64 hc_rx_err_vport_disabled; + u64 hc_rx_bytes; + u64 hc_rx_ucast_pkts; + u64 hc_rx_ucast_bytes; + u64 hc_rx_bcast_pkts; + u64 hc_rx_bcast_bytes; + u64 hc_rx_mcast_pkts; + u64 hc_rx_mcast_bytes; + u64 hc_tx_err_gf_disabled; + u64 hc_tx_err_vport_disabled; + u64 hc_tx_err_inval_vportoffset_pkt; + u64 hc_tx_err_vlan_enforcement; + u64 hc_tx_err_eth_type_enforcement; + u64 hc_tx_err_sa_enforcement; + u64 hc_tx_err_sqpdid_enforcement; + u64 hc_tx_err_cqpdid_enforcement; + u64 hc_tx_err_mtu_violation; + u64 hc_tx_err_inval_oob; + u64 hc_tx_bytes; + u64 hc_tx_ucast_pkts; + u64 hc_tx_ucast_bytes; + u64 hc_tx_bcast_pkts; + u64 hc_tx_bcast_bytes; + u64 hc_tx_mcast_pkts; + u64 hc_tx_mcast_bytes; + u64 hc_tx_err_gdma; +}; + +struct mana_ethtool_phy_stats { + u64 rx_pkt_drop_phy; + u64 tx_pkt_drop_phy; + u64 rx_pkt_tc0_phy; + u64 tx_pkt_tc0_phy; + u64 rx_pkt_tc1_phy; + u64 tx_pkt_tc1_phy; + u64 rx_pkt_tc2_phy; + u64 tx_pkt_tc2_phy; + u64 rx_pkt_tc3_phy; + u64 tx_pkt_tc3_phy; + u64 rx_pkt_tc4_phy; + u64 tx_pkt_tc4_phy; + u64 rx_pkt_tc5_phy; + u64 tx_pkt_tc5_phy; + u64 rx_pkt_tc6_phy; + u64 tx_pkt_tc6_phy; + u64 rx_pkt_tc7_phy; + u64 tx_pkt_tc7_phy; + u64 rx_byte_tc0_phy; + u64 tx_byte_tc0_phy; + u64 rx_byte_tc1_phy; + u64 tx_byte_tc1_phy; + u64 rx_byte_tc2_phy; + u64 tx_byte_tc2_phy; + u64 rx_byte_tc3_phy; + u64 tx_byte_tc3_phy; + u64 rx_byte_tc4_phy; + u64 tx_byte_tc4_phy; + u64 rx_byte_tc5_phy; + u64 tx_byte_tc5_phy; + u64 rx_byte_tc6_phy; + u64 tx_byte_tc6_phy; + u64 rx_byte_tc7_phy; + u64 tx_byte_tc7_phy; + u64 rx_pause_tc0_phy; + u64 tx_pause_tc0_phy; + u64 rx_pause_tc1_phy; + u64 tx_pause_tc1_phy; + u64 rx_pause_tc2_phy; + u64 tx_pause_tc2_phy; + u64 rx_pause_tc3_phy; + u64 tx_pause_tc3_phy; + u64 rx_pause_tc4_phy; + u64 tx_pause_tc4_phy; + u64 rx_pause_tc5_phy; + u64 tx_pause_tc5_phy; + u64 rx_pause_tc6_phy; + u64 tx_pause_tc6_phy; + u64 rx_pause_tc7_phy; + u64 tx_pause_tc7_phy; +}; + +struct mana_context { + struct gdma_dev *gdma_dev; + u16 num_ports; + u8 bm_hostmode; + struct mana_ethtool_hc_stats hc_stats; + struct mana_eq *eqs; + struct dentry *mana_eqs_debugfs; + struct workqueue_struct *per_port_queue_reset_wq; + struct delayed_work gf_stats_work; + bool hwc_timeout_occurred; + struct net_device *ports[256]; + struct work_struct link_change_work; + u32 link_event; +}; + +struct mana_port_context { + struct mana_context *ac; + struct net_device *ndev; + struct work_struct queue_reset_work; + u8 mac_addr[6]; + enum TRI_STATE rss_state; + mana_handle_t default_rxobj; + bool tx_shortform_allowed; + u16 tx_vp_offset; + struct mana_tx_qp *tx_qp; + u32 *indir_table; + u32 indir_table_sz; + mana_handle_t *rxobj_table; + u8 hashkey[40]; + struct mana_rxq **rxqs; + void **rxbufs_pre; + dma_addr_t *das_pre; + int rxbpre_total; + u32 rxbpre_datasize; + u32 rxbpre_alloc_size; + u32 rxbpre_headroom; + u32 rxbpre_frag_count; + struct bpf_prog *bpf_prog; + unsigned int max_queues; + unsigned int num_queues; + unsigned int rx_queue_size; + unsigned int tx_queue_size; + mana_handle_t port_handle; + mana_handle_t pf_filter_handle; + struct mutex vport_mutex; + int vport_use_count; + struct net_shaper_handle handle; + u16 port_idx; + u32 speed; + u32 max_speed; + bool port_is_up; + bool port_st_save; + struct mana_ethtool_stats eth_stats; + struct mana_ethtool_phy_stats phy_stats; + struct dentry *mana_port_debugfs; +}; + +struct usb_endpoint_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bEndpointAddress; + __u8 bmAttributes; + __le16 wMaxPacketSize; + __u8 bInterval; + __u8 bRefresh; + __u8 bSynchAddress; +} __attribute__((packed)); + +enum usb_device_speed { + USB_SPEED_UNKNOWN = 0, + USB_SPEED_LOW = 1, + USB_SPEED_FULL = 2, + USB_SPEED_HIGH = 3, + USB_SPEED_WIRELESS = 4, + USB_SPEED_SUPER = 5, + USB_SPEED_SUPER_PLUS = 6, +}; + +enum usb_device_state { + USB_STATE_NOTATTACHED = 0, + USB_STATE_ATTACHED = 1, + USB_STATE_POWERED = 2, + USB_STATE_RECONNECTING = 3, + USB_STATE_UNAUTHENTICATED = 4, + USB_STATE_DEFAULT = 5, + USB_STATE_ADDRESS = 6, + USB_STATE_CONFIGURED = 7, + USB_STATE_SUSPENDED = 8, +}; + +enum usb_ssp_rate { + USB_SSP_GEN_UNKNOWN = 0, + USB_SSP_GEN_2x1 = 1, + USB_SSP_GEN_1x2 = 2, + USB_SSP_GEN_2x2 = 3, +}; + +enum usb_otg_state { + OTG_STATE_UNDEFINED = 0, + OTG_STATE_B_IDLE = 1, + OTG_STATE_B_SRP_INIT = 2, + OTG_STATE_B_PERIPHERAL = 3, + OTG_STATE_B_WAIT_ACON = 4, + OTG_STATE_B_HOST = 5, + OTG_STATE_A_IDLE = 6, + OTG_STATE_A_WAIT_VRISE = 7, + OTG_STATE_A_WAIT_BCON = 8, + OTG_STATE_A_HOST = 9, + OTG_STATE_A_SUSPEND = 10, + OTG_STATE_A_PERIPHERAL = 11, + OTG_STATE_A_WAIT_VFALL = 12, + OTG_STATE_A_VBUS_ERR = 13, +}; + +enum usb_dr_mode { + USB_DR_MODE_UNKNOWN = 0, + USB_DR_MODE_HOST = 1, + USB_DR_MODE_PERIPHERAL = 2, + USB_DR_MODE_OTG = 3, +}; + +struct usb_ctrlrequest { + __u8 bRequestType; + __u8 bRequest; + __le16 wValue; + __le16 wIndex; + __le16 wLength; +}; + +struct usb_device_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __le16 bcdUSB; + __u8 bDeviceClass; + __u8 bDeviceSubClass; + __u8 bDeviceProtocol; + __u8 bMaxPacketSize0; + __le16 idVendor; + __le16 idProduct; + __le16 bcdDevice; + __u8 iManufacturer; + __u8 iProduct; + __u8 iSerialNumber; + __u8 bNumConfigurations; +}; + +struct usb_config_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __le16 wTotalLength; + __u8 bNumInterfaces; + __u8 bConfigurationValue; + __u8 iConfiguration; + __u8 bmAttributes; + __u8 bMaxPower; +} __attribute__((packed)); + +struct usb_interface_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bInterfaceNumber; + __u8 bAlternateSetting; + __u8 bNumEndpoints; + __u8 bInterfaceClass; + __u8 bInterfaceSubClass; + __u8 bInterfaceProtocol; + __u8 iInterface; +}; + +struct usb_eusb2_isoc_ep_comp_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __le16 wMaxPacketSize; + __le32 dwBytesPerInterval; +}; + +struct usb_ssp_isoc_ep_comp_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __le16 wReseved; + __le32 dwBytesPerInterval; +}; + +struct usb_ss_ep_comp_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bMaxBurst; + __u8 bmAttributes; + __le16 wBytesPerInterval; +}; + +struct usb_interface_assoc_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bFirstInterface; + __u8 bInterfaceCount; + __u8 bFunctionClass; + __u8 bFunctionSubClass; + __u8 bFunctionProtocol; + __u8 iFunction; +}; + +struct usb_bos_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __le16 wTotalLength; + __u8 bNumDeviceCaps; +} __attribute__((packed)); + +struct usb_ext_cap_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDevCapabilityType; + __le32 bmAttributes; +} __attribute__((packed)); + +struct usb_ss_cap_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDevCapabilityType; + __u8 bmAttributes; + __le16 wSpeedSupported; + __u8 bFunctionalitySupport; + __u8 bU1devExitLat; + __le16 bU2DevExitLat; +}; + +struct usb_ss_container_id_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDevCapabilityType; + __u8 bReserved; + __u8 ContainerID[16]; +}; + +struct usb_ssp_cap_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDevCapabilityType; + __u8 bReserved; + __le32 bmAttributes; + __le16 wFunctionalitySupport; + __le16 wReserved; + union { + __le32 legacy_padding; + struct { + struct {} __empty_bmSublinkSpeedAttr; + __le32 bmSublinkSpeedAttr[0]; + }; + }; +}; + +struct usb_ptm_cap_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDevCapabilityType; +}; + +struct ep_device; + +struct usb_host_endpoint { + struct usb_endpoint_descriptor desc; + struct usb_ss_ep_comp_descriptor ss_ep_comp; + struct usb_ssp_isoc_ep_comp_descriptor ssp_isoc_ep_comp; + struct usb_eusb2_isoc_ep_comp_descriptor eusb2_isoc_ep_comp; + long: 0; + struct list_head urb_list; + void *hcpriv; + struct ep_device *ep_dev; + unsigned char *extra; + int extralen; + int enabled; + int streams; + long: 0; +} __attribute__((packed)); + +struct usb_host_interface { + struct usb_interface_descriptor desc; + int extralen; + unsigned char *extra; + struct usb_host_endpoint *endpoint; + char *string; +}; + +enum usb_interface_condition { + USB_INTERFACE_UNBOUND = 0, + USB_INTERFACE_BINDING = 1, + USB_INTERFACE_BOUND = 2, + USB_INTERFACE_UNBINDING = 3, +}; + +enum usb_wireless_status { + USB_WIRELESS_STATUS_NA = 0, + USB_WIRELESS_STATUS_DISCONNECTED = 1, + USB_WIRELESS_STATUS_CONNECTED = 2, +}; + +struct usb_interface { + struct usb_host_interface *altsetting; + struct usb_host_interface *cur_altsetting; + unsigned int num_altsetting; + struct usb_interface_assoc_descriptor *intf_assoc; + int minor; + enum usb_interface_condition condition; + unsigned int sysfs_files_created: 1; + unsigned int ep_devs_created: 1; + unsigned int unregistering: 1; + unsigned int needs_remote_wakeup: 1; + unsigned int needs_altsetting0: 1; + unsigned int needs_binding: 1; + unsigned int resetting_device: 1; + unsigned int authorized: 1; + enum usb_wireless_status wireless_status; + struct work_struct wireless_status_work; + struct device dev; + struct device *usb_dev; + struct work_struct reset_ws; +}; + +struct usb_interface_cache { + unsigned int num_altsetting; + struct kref ref; + struct usb_host_interface altsetting[0]; +}; + +struct usb_host_config { + struct usb_config_descriptor desc; + char *string; + struct usb_interface_assoc_descriptor *intf_assoc[16]; + struct usb_interface *interface[32]; + struct usb_interface_cache *intf_cache[32]; + unsigned char *extra; + int extralen; +}; + +struct usb_host_bos { + struct usb_bos_descriptor *desc; + struct usb_ext_cap_descriptor *ext_cap; + struct usb_ss_cap_descriptor *ss_cap; + struct usb_ssp_cap_descriptor *ssp_cap; + struct usb_ss_container_id_descriptor *ss_id; + struct usb_ptm_cap_descriptor *ptm_cap; +}; + +struct usb_device; + +struct usb_bus { + struct device *controller; + struct device *sysdev; + int busnum; + const char *bus_name; + u8 uses_pio_for_control; + u8 otg_port; + unsigned int is_b_host: 1; + unsigned int b_hnp_enable: 1; + unsigned int no_stop_on_short: 1; + unsigned int no_sg_constraint: 1; + unsigned int sg_tablesize; + int devnum_next; + struct mutex devnum_next_mutex; + long unsigned int devmap[2]; + struct usb_device *root_hub; + struct usb_bus *hs_companion; + int bandwidth_allocated; + int bandwidth_int_reqs; + int bandwidth_isoc_reqs; + unsigned int resuming_ports; +}; + +enum usb_link_tunnel_mode { + USB_LINK_UNKNOWN = 0, + USB_LINK_NATIVE = 1, + USB_LINK_TUNNELED = 2, +}; + +struct usb2_lpm_parameters { + unsigned int besl; + int timeout; +}; + +struct usb3_lpm_parameters { + unsigned int mel; + unsigned int pel; + unsigned int sel; + int timeout; +}; + +struct usb_tt; + +struct usb_device { + int devnum; + char devpath[16]; + u32 route; + enum usb_device_state state; + enum usb_device_speed speed; + unsigned int rx_lanes; + unsigned int tx_lanes; + enum usb_ssp_rate ssp_rate; + struct usb_tt *tt; + int ttport; + unsigned int toggle[2]; + struct usb_device *parent; + struct usb_bus *bus; + struct usb_host_endpoint ep0; + struct device dev; + struct usb_device_descriptor descriptor; + struct usb_host_bos *bos; + struct usb_host_config *config; + struct usb_host_config *actconfig; + struct usb_host_endpoint *ep_in[16]; + struct usb_host_endpoint *ep_out[16]; + char **rawdescriptors; + short unsigned int bus_mA; + u8 portnum; + u8 level; + u8 devaddr; + unsigned int can_submit: 1; + unsigned int persist_enabled: 1; + unsigned int reset_in_progress: 1; + unsigned int have_langid: 1; + unsigned int authorized: 1; + unsigned int authenticated: 1; + unsigned int lpm_capable: 1; + unsigned int lpm_devinit_allow: 1; + unsigned int usb2_hw_lpm_capable: 1; + unsigned int usb2_hw_lpm_besl_capable: 1; + unsigned int usb2_hw_lpm_enabled: 1; + unsigned int usb2_hw_lpm_allowed: 1; + unsigned int usb3_lpm_u1_enabled: 1; + unsigned int usb3_lpm_u2_enabled: 1; + int string_langid; + char *product; + char *manufacturer; + char *serial; + struct list_head filelist; + int maxchild; + u32 quirks; + atomic_t urbnum; + long unsigned int active_duration; + long unsigned int connect_time; + unsigned int do_remote_wakeup: 1; + unsigned int reset_resume: 1; + unsigned int port_is_suspended: 1; + enum usb_link_tunnel_mode tunnel_mode; + struct device_link *usb4_link; + int slot_id; + struct usb2_lpm_parameters l1_params; + struct usb3_lpm_parameters u1_params; + struct usb3_lpm_parameters u2_params; + unsigned int lpm_disable_count; + u16 hub_delay; + unsigned int use_generic_driver: 1; +}; + +struct usb_tt { + struct usb_device *hub; + int multi; + unsigned int think_time; + void *hcpriv; + spinlock_t lock; + struct list_head clear_list; + struct work_struct clear_work; +}; + +struct usb_iso_packet_descriptor { + unsigned int offset; + unsigned int length; + unsigned int actual_length; + int status; +}; + +struct usb_anchor { + struct list_head urb_list; + wait_queue_head_t wait; + spinlock_t lock; + atomic_t suspend_wakeups; + unsigned int poisoned: 1; +}; + +struct urb; + +typedef void (*usb_complete_t)(struct urb *); + +struct urb { + struct kref kref; + int unlinked; + void *hcpriv; + atomic_t use_count; + atomic_t reject; + struct list_head urb_list; + struct list_head anchor_list; + struct usb_anchor *anchor; + struct usb_device *dev; + struct usb_host_endpoint *ep; + unsigned int pipe; + unsigned int stream_id; + int status; + unsigned int transfer_flags; + void *transfer_buffer; + dma_addr_t transfer_dma; + struct scatterlist *sg; + struct sg_table *sgt; + int num_mapped_sgs; + int num_sgs; + u32 transfer_buffer_length; + u32 actual_length; + unsigned char *setup_packet; + dma_addr_t setup_dma; + int start_frame; + int number_of_packets; + int interval; + int error_count; + void *context; + usb_complete_t complete; + struct usb_iso_packet_descriptor iso_frame_desc[0]; +}; + +struct usb_descriptor_header { + __u8 bLength; + __u8 bDescriptorType; +}; + +struct usb_dev_cap_header { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDevCapabilityType; +}; + +struct usb_device_id { + __u16 match_flags; + __u16 idVendor; + __u16 idProduct; + __u16 bcdDevice_lo; + __u16 bcdDevice_hi; + __u8 bDeviceClass; + __u8 bDeviceSubClass; + __u8 bDeviceProtocol; + __u8 bInterfaceClass; + __u8 bInterfaceSubClass; + __u8 bInterfaceProtocol; + __u8 bInterfaceNumber; + kernel_ulong_t driver_info; +}; + +enum usb3_link_state { + USB3_LPM_U0 = 0, + USB3_LPM_U1 = 1, + USB3_LPM_U2 = 2, + USB3_LPM_U3 = 3, +}; + +struct usb_dynids { + struct list_head list; +}; + +struct usb_driver { + const char *name; + int (*probe)(struct usb_interface *, const struct usb_device_id *); + void (*disconnect)(struct usb_interface *); + int (*unlocked_ioctl)(struct usb_interface *, unsigned int, void *); + int (*suspend)(struct usb_interface *, pm_message_t); + int (*resume)(struct usb_interface *); + int (*reset_resume)(struct usb_interface *); + int (*pre_reset)(struct usb_interface *); + int (*post_reset)(struct usb_interface *); + void (*shutdown)(struct usb_interface *); + const struct usb_device_id *id_table; + const struct attribute_group **dev_groups; + struct usb_dynids dynids; + struct device_driver driver; + unsigned int no_dynamic_id: 1; + unsigned int supports_autosuspend: 1; + unsigned int disable_hub_initiated_lpm: 1; + unsigned int soft_unbind: 1; +}; + +struct giveback_urb_bh { + bool running; + bool high_prio; + spinlock_t lock; + struct list_head head; + struct work_struct bh; + struct usb_host_endpoint *completing_ep; +}; + +enum usb_dev_authorize_policy { + USB_DEVICE_AUTHORIZE_NONE = 0, + USB_DEVICE_AUTHORIZE_ALL = 1, + USB_DEVICE_AUTHORIZE_INTERNAL = 2, +}; + +struct hc_driver; + +struct usb_phy; + +struct usb_phy_roothub; + +struct usb_hcd { + struct usb_bus self; + struct kref kref; + const char *product_desc; + int speed; + char irq_descr[24]; + struct timer_list rh_timer; + struct urb *status_urb; + struct work_struct wakeup_work; + struct work_struct died_work; + const struct hc_driver *driver; + struct usb_phy *usb_phy; + struct usb_phy_roothub *phy_roothub; + long unsigned int flags; + enum usb_dev_authorize_policy dev_policy; + unsigned int rh_registered: 1; + unsigned int rh_pollable: 1; + unsigned int msix_enabled: 1; + unsigned int msi_enabled: 1; + unsigned int skip_phy_initialization: 1; + unsigned int uses_new_polling: 1; + unsigned int has_tt: 1; + unsigned int amd_resume_bug: 1; + unsigned int can_do_streams: 1; + unsigned int tpl_support: 1; + unsigned int cant_recv_wakeups: 1; + unsigned int irq; + void *regs; + resource_size_t rsrc_start; + resource_size_t rsrc_len; + unsigned int power_budget; + struct giveback_urb_bh high_prio_bh; + struct giveback_urb_bh low_prio_bh; + struct mutex *address0_mutex; + struct mutex *bandwidth_mutex; + struct usb_hcd *shared_hcd; + struct usb_hcd *primary_hcd; + struct dma_pool *pool[4]; + int state; + struct gen_pool *localmem_pool; + long unsigned int hcd_priv[0]; +}; + +struct hc_driver { + const char *description; + const char *product_desc; + size_t hcd_priv_size; + irqreturn_t (*irq)(struct usb_hcd *); + int flags; + int (*reset)(struct usb_hcd *); + int (*start)(struct usb_hcd *); + int (*pci_suspend)(struct usb_hcd *, bool); + int (*pci_resume)(struct usb_hcd *, pm_message_t); + int (*pci_poweroff_late)(struct usb_hcd *, bool); + void (*stop)(struct usb_hcd *); + void (*shutdown)(struct usb_hcd *); + int (*get_frame_number)(struct usb_hcd *); + int (*urb_enqueue)(struct usb_hcd *, struct urb *, gfp_t); + int (*urb_dequeue)(struct usb_hcd *, struct urb *, int); + int (*map_urb_for_dma)(struct usb_hcd *, struct urb *, gfp_t); + void (*unmap_urb_for_dma)(struct usb_hcd *, struct urb *); + void (*endpoint_disable)(struct usb_hcd *, struct usb_host_endpoint *); + void (*endpoint_reset)(struct usb_hcd *, struct usb_host_endpoint *); + int (*hub_status_data)(struct usb_hcd *, char *); + int (*hub_control)(struct usb_hcd *, u16, u16, u16, char *, u16); + int (*bus_suspend)(struct usb_hcd *); + int (*bus_resume)(struct usb_hcd *); + int (*start_port_reset)(struct usb_hcd *, unsigned int); + long unsigned int (*get_resuming_ports)(struct usb_hcd *); + void (*relinquish_port)(struct usb_hcd *, int); + int (*port_handed_over)(struct usb_hcd *, int); + void (*clear_tt_buffer_complete)(struct usb_hcd *, struct usb_host_endpoint *); + int (*alloc_dev)(struct usb_hcd *, struct usb_device *); + void (*free_dev)(struct usb_hcd *, struct usb_device *); + int (*alloc_streams)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint **, unsigned int, unsigned int, gfp_t); + int (*free_streams)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint **, unsigned int, gfp_t); + int (*add_endpoint)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint *); + int (*drop_endpoint)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint *); + int (*check_bandwidth)(struct usb_hcd *, struct usb_device *); + void (*reset_bandwidth)(struct usb_hcd *, struct usb_device *); + int (*address_device)(struct usb_hcd *, struct usb_device *, unsigned int); + int (*enable_device)(struct usb_hcd *, struct usb_device *); + int (*update_hub_device)(struct usb_hcd *, struct usb_device *, struct usb_tt *, gfp_t); + int (*reset_device)(struct usb_hcd *, struct usb_device *); + int (*update_device)(struct usb_hcd *, struct usb_device *); + int (*set_usb2_hw_lpm)(struct usb_hcd *, struct usb_device *, int); + int (*enable_usb3_lpm_timeout)(struct usb_hcd *, struct usb_device *, enum usb3_link_state); + int (*disable_usb3_lpm_timeout)(struct usb_hcd *, struct usb_device *, enum usb3_link_state); + int (*find_raw_port_number)(struct usb_hcd *, int); + int (*port_power)(struct usb_hcd *, int, bool); + int (*submit_single_step_set_feature)(struct usb_hcd *, struct urb *, int); +}; + +struct quirk_entry { + u16 vid; + u16 pid; + u32 flags; +}; + +typedef void (*companion_fn)(struct pci_dev *, struct usb_hcd *, struct pci_dev *, struct usb_hcd *); + +enum xhci_sideband_type { + XHCI_SIDEBAND_AUDIO = 0, + XHCI_SIDEBAND_VENDOR = 1, +}; + +enum xhci_sideband_notify_type { + XHCI_SIDEBAND_XFER_RING_FREE = 0, +}; + +struct xhci_sideband_event { + enum xhci_sideband_notify_type type; + void *evt_data; +}; + +struct xhci_hcd; + +struct xhci_virt_device; + +struct xhci_virt_ep; + +struct xhci_interrupter; + +struct xhci_sideband { + struct xhci_hcd *xhci; + struct xhci_virt_device *vdev; + struct xhci_virt_ep *eps[31]; + struct xhci_interrupter *ir; + enum xhci_sideband_type type; + struct mutex mutex; + struct usb_interface *intf; + int (*notify_client)(struct usb_interface *, struct xhci_sideband_event *); +}; + +struct s3_save { + u32 command; + u32 dev_nt; + u64 dcbaa_ptr; + u32 config_reg; +}; + +struct xhci_bus_state { + long unsigned int bus_suspended; + long unsigned int next_statechange; + u32 port_c_suspend; + u32 suspended_ports; + u32 port_remote_wakeup; + long unsigned int resuming_ports; +}; + +struct xhci_port; + +struct xhci_hub { + struct xhci_port **ports; + unsigned int num_ports; + struct usb_hcd *hcd; + struct xhci_bus_state bus_state; + u8 maj_rev; + u8 min_rev; +}; + +struct xhci_cap_regs; + +struct xhci_op_regs; + +struct xhci_run_regs; + +struct xhci_doorbell_array; + +struct xhci_device_context_array; + +struct xhci_ring; + +struct xhci_command; + +struct xhci_scratchpad; + +struct xhci_root_port_bw_info; + +struct xhci_port_cap; + +struct xhci_hcd { + struct usb_hcd *main_hcd; + struct usb_hcd *shared_hcd; + struct xhci_cap_regs *cap_regs; + struct xhci_op_regs *op_regs; + struct xhci_run_regs *run_regs; + struct xhci_doorbell_array *dba; + __u32 hcs_params1; + __u32 hcs_params2; + __u32 hcs_params3; + __u32 hcc_params; + __u32 hcc_params2; + spinlock_t lock; + u16 hci_version; + u16 max_interrupters; + u32 imod_interval; + u32 page_size; + int nvecs; + struct clk *clk; + struct clk *reg_clk; + struct reset_control *reset; + struct xhci_device_context_array *dcbaa; + struct xhci_interrupter **interrupters; + struct xhci_ring *cmd_ring; + unsigned int cmd_ring_state; + struct list_head cmd_list; + unsigned int cmd_ring_reserved_trbs; + struct delayed_work cmd_timer; + struct completion cmd_ring_stop_completion; + struct xhci_command *current_cmd; + struct xhci_scratchpad *scratchpad; + struct mutex mutex; + struct xhci_virt_device *devs[256]; + struct xhci_root_port_bw_info *rh_bw; + struct dma_pool *device_pool; + struct dma_pool *segment_pool; + struct dma_pool *small_streams_pool; + struct dma_pool *port_bw_pool; + struct dma_pool *medium_streams_pool; + unsigned int xhc_state; + long unsigned int run_graceperiod; + struct s3_save s3; + long long unsigned int quirks; + unsigned int num_active_eps; + unsigned int limit_active_eps; + struct xhci_port *hw_ports; + struct xhci_hub usb2_rhub; + struct xhci_hub usb3_rhub; + unsigned int hw_lpm_support: 1; + unsigned int broken_suspend: 1; + unsigned int allow_single_roothub: 1; + struct xhci_port_cap *port_caps; + unsigned int num_port_caps; + struct timer_list comp_mode_recovery_timer; + u32 port_status_u0; + u16 test_mode; + struct dentry *debugfs_root; + struct dentry *debugfs_slots; + struct list_head regset_list; + void *dbc; + long unsigned int priv[0]; +}; + +struct xhci_bw_info { + unsigned int ep_interval; + unsigned int mult; + unsigned int num_packets; + unsigned int max_packet_size; + unsigned int max_esit_payload; + unsigned int type; +}; + +struct xhci_stream_info; + +struct xhci_segment; + +union xhci_trb; + +struct xhci_virt_ep { + struct xhci_virt_device *vdev; + unsigned int ep_index; + struct xhci_ring *ring; + struct xhci_stream_info *stream_info; + struct xhci_ring *new_ring; + unsigned int err_count; + unsigned int ep_state; + struct list_head cancelled_td_list; + struct xhci_hcd *xhci; + struct xhci_segment *queued_deq_seg; + union xhci_trb *queued_deq_ptr; + bool skip; + struct xhci_bw_info bw_info; + struct list_head bw_endpoint_list; + long unsigned int stop_time; + int next_frame_id; + bool use_extended_tbc; + struct xhci_sideband *sideband; +}; + +struct xhci_container_ctx; + +struct xhci_interval_bw_table; + +struct xhci_tt_bw_info; + +struct xhci_virt_device { + int slot_id; + struct usb_device *udev; + struct xhci_container_ctx *out_ctx; + struct xhci_container_ctx *in_ctx; + struct xhci_virt_ep eps[31]; + struct xhci_port *rhub_port; + struct xhci_interval_bw_table *bw_table; + struct xhci_tt_bw_info *tt_info; + long unsigned int flags; + u16 current_mel; + void *debugfs_private; + struct xhci_sideband *sideband; +}; + +struct xhci_erst_entry; + +struct xhci_erst { + struct xhci_erst_entry *entries; + unsigned int num_entries; + dma_addr_t erst_dma_addr; +}; + +struct xhci_intr_reg; + +struct xhci_interrupter { + struct xhci_ring *event_ring; + struct xhci_erst erst; + struct xhci_intr_reg *ir_set; + unsigned int intr_num; + bool ip_autoclear; + u32 isoc_bei_interval; + u32 s3_iman; + u32 s3_imod; + u32 s3_erst_size; + u64 s3_erst_base; + u64 s3_erst_dequeue; +}; + +struct xhci_cap_regs { + __le32 hc_capbase; + __le32 hcs_params1; + __le32 hcs_params2; + __le32 hcs_params3; + __le32 hcc_params; + __le32 db_off; + __le32 run_regs_off; + __le32 hcc_params2; +}; + +struct xhci_op_regs { + __le32 command; + __le32 status; + __le32 page_size; + __le32 reserved1; + __le32 reserved2; + __le32 dev_notification; + __le64 cmd_ring; + __le32 reserved3[4]; + __le64 dcbaa_ptr; + __le32 config_reg; + __le32 reserved4[241]; + __le32 port_status_base; + __le32 port_power_base; + __le32 port_link_base; + __le32 reserved5; + __le32 reserved6[1016]; +}; + +struct xhci_intr_reg { + __le32 iman; + __le32 imod; + __le32 erst_size; + __le32 rsvd; + __le64 erst_base; + __le64 erst_dequeue; +}; + +struct xhci_run_regs { + __le32 microframe_index; + __le32 rsvd[7]; + struct xhci_intr_reg ir_set[128]; +}; + +struct xhci_doorbell_array { + __le32 doorbell[256]; +}; + +struct xhci_container_ctx { + unsigned int type; + int size; + u8 *bytes; + dma_addr_t dma; +}; + +struct xhci_slot_ctx { + __le32 dev_info; + __le32 dev_info2; + __le32 tt_info; + __le32 dev_state; + __le32 reserved[4]; +}; + +struct xhci_ep_ctx { + __le32 ep_info; + __le32 ep_info2; + __le64 deq; + __le32 tx_info; + __le32 reserved[3]; +}; + +struct xhci_input_control_ctx { + __le32 drop_flags; + __le32 add_flags; + __le32 rsvd2[6]; +}; + +struct xhci_command { + struct xhci_container_ctx *in_ctx; + u32 status; + u32 comp_param; + int slot_id; + struct completion *completion; + union xhci_trb *command_trb; + struct list_head cmd_list; + unsigned int timeout_ms; +}; + +struct xhci_link_trb { + __le64 segment_ptr; + __le32 intr_target; + __le32 control; +}; + +struct xhci_transfer_event { + __le64 buffer; + __le32 transfer_len; + __le32 flags; +}; + +struct xhci_event_cmd { + __le64 cmd_trb; + __le32 status; + __le32 flags; +}; + +struct xhci_generic_trb { + __le32 field[4]; +}; + +union xhci_trb { + struct xhci_link_trb link; + struct xhci_transfer_event trans_event; + struct xhci_event_cmd event_cmd; + struct xhci_generic_trb generic; +}; + +struct xhci_stream_ctx { + __le64 stream_ring; + __le32 reserved[2]; +}; + +struct xhci_stream_info { + struct xhci_ring **stream_rings; + unsigned int num_streams; + struct xhci_stream_ctx *stream_ctx_array; + unsigned int num_stream_ctxs; + dma_addr_t ctx_array_dma; + struct xarray trb_address_map; + struct xhci_command *free_streams_command; +}; + +enum xhci_ring_type { + TYPE_CTRL = 0, + TYPE_ISOC = 1, + TYPE_BULK = 2, + TYPE_INTR = 3, + TYPE_STREAM = 4, + TYPE_COMMAND = 5, + TYPE_EVENT = 6, +}; + +struct xhci_ring { + struct xhci_segment *first_seg; + struct xhci_segment *last_seg; + union xhci_trb *enqueue; + struct xhci_segment *enq_seg; + union xhci_trb *dequeue; + struct xhci_segment *deq_seg; + struct list_head td_list; + u32 cycle_state; + unsigned int stream_id; + unsigned int num_segs; + unsigned int num_trbs_free; + unsigned int bounce_buf_len; + enum xhci_ring_type type; + u32 old_trb_comp_code; + struct xarray *trb_address_map; +}; + +struct xhci_segment { + union xhci_trb *trbs; + struct xhci_segment *next; + unsigned int num; + dma_addr_t dma; + dma_addr_t bounce_dma; + void *bounce_buf; + unsigned int bounce_offs; + unsigned int bounce_len; +}; + +enum xhci_overhead_type { + LS_OVERHEAD_TYPE = 0, + FS_OVERHEAD_TYPE = 1, + HS_OVERHEAD_TYPE = 2, +}; + +struct xhci_interval_bw { + unsigned int num_packets; + struct list_head endpoints; + unsigned int overhead[3]; +}; + +struct xhci_interval_bw_table { + unsigned int interval0_esit_payload; + struct xhci_interval_bw interval_bw[16]; + unsigned int bw_used; + unsigned int ss_bw_in; + unsigned int ss_bw_out; +}; + +struct xhci_port { + __le32 *addr; + int hw_portnum; + int hcd_portnum; + struct xhci_hub *rhub; + struct xhci_port_cap *port_cap; + unsigned int lpm_incapable: 1; + long unsigned int resume_timestamp; + bool rexit_active; + int slot_id; + struct completion rexit_done; + struct completion u3exit_done; +}; + +struct xhci_tt_bw_info { + struct list_head tt_list; + int slot_id; + int ttport; + struct xhci_interval_bw_table bw_table; + int active_eps; +}; + +struct xhci_root_port_bw_info { + struct list_head tts; + unsigned int num_active_tts; + struct xhci_interval_bw_table bw_table; +}; + +struct xhci_device_context_array { + __le64 dev_context_ptrs[256]; + dma_addr_t dma; +}; + +enum xhci_setup_dev { + SETUP_CONTEXT_ONLY = 0, + SETUP_CONTEXT_ADDRESS = 1, +}; + +enum xhci_cancelled_td_status { + TD_DIRTY = 0, + TD_HALTED = 1, + TD_CLEARING_CACHE = 2, + TD_CLEARING_CACHE_DEFERRED = 3, + TD_CLEARED = 4, +}; + +struct xhci_td { + struct list_head td_list; + struct list_head cancelled_td_list; + int status; + enum xhci_cancelled_td_status cancel_status; + struct urb *urb; + struct xhci_segment *start_seg; + union xhci_trb *start_trb; + struct xhci_segment *end_seg; + union xhci_trb *end_trb; + struct xhci_segment *bounce_seg; + bool urb_length_set; + bool error_mid_td; +}; + +struct xhci_erst_entry { + __le64 seg_addr; + __le32 seg_size; + __le32 rsvd; +}; + +struct xhci_scratchpad { + u64 *sp_array; + dma_addr_t sp_dma; + void **sp_buffers; +}; + +struct urb_priv { + int num_tds; + int num_tds_done; + struct xhci_td td[0]; +}; + +struct xhci_port_cap { + u32 *psi; + u8 psi_count; + u8 psi_uid_count; + u8 maj_rev; + u8 min_rev; + u32 protocol_caps; +}; + +struct xhci_driver_overrides { + size_t extra_priv_size; + int (*reset)(struct usb_hcd *); + int (*start)(struct usb_hcd *); + int (*add_endpoint)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint *); + int (*drop_endpoint)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint *); + int (*check_bandwidth)(struct usb_hcd *, struct usb_device *); + void (*reset_bandwidth)(struct usb_hcd *, struct usb_device *); + int (*update_hub_device)(struct usb_hcd *, struct usb_device *, struct usb_tt *, gfp_t); + int (*hub_control)(struct usb_hcd *, u16, u16, u16, char *, u16); +}; + +typedef void (*xhci_get_quirks_t)(struct device *, struct xhci_hcd *); + +struct xhci_regset { + char name[32]; + struct debugfs_regset32 regset; + size_t nregs; + struct list_head list; +}; + +struct xhci_file_map { + const char *name; + int (*show)(struct seq_file *, void *); +}; + +struct xhci_ep_priv { + char name[32]; + struct dentry *root; + struct xhci_stream_info *stream_info; + struct xhci_ring *show_ring; + unsigned int stream_id; +}; + +struct xhci_slot_priv { + char name[32]; + struct dentry *root; + struct xhci_ep_priv *eps[31]; + struct xhci_virt_device *dev; +}; + +struct usb_string_descriptor { + __u8 bLength; + __u8 bDescriptorType; + union { + __le16 legacy_padding; + struct { + struct {} __empty_wData; + __le16 wData[0]; + }; + }; +}; + +struct xdbc_regs { + __le32 capability; + __le32 doorbell; + __le32 ersts; + __le32 __reserved_0; + __le64 erstba; + __le64 erdp; + __le32 control; + __le32 status; + __le32 portsc; + __le32 __reserved_1; + __le64 dccp; + __le32 devinfo1; + __le32 devinfo2; +}; + +struct xdbc_trb { + __le32 field[4]; +}; + +struct xdbc_erst_entry { + __le64 seg_addr; + __le32 seg_size; + __le32 __reserved_0; +}; + +struct xdbc_info_context { + __le64 string0; + __le64 manufacturer; + __le64 product; + __le64 serial; + __le32 length; + __le32 __reserved_0[7]; +}; + +struct xdbc_ep_context { + __le32 ep_info1; + __le32 ep_info2; + __le64 deq; + __le32 tx_info; + __le32 __reserved_0[11]; +}; + +struct xdbc_context { + struct xdbc_info_context info; + struct xdbc_ep_context out; + struct xdbc_ep_context in; +}; + +struct xdbc_strings { + char string0[64]; + char manufacturer[64]; + char product[64]; + char serial[64]; +}; + +struct xdbc_segment { + struct xdbc_trb *trbs; + dma_addr_t dma; +}; + +struct xdbc_ring { + struct xdbc_segment *segment; + struct xdbc_trb *enqueue; + struct xdbc_trb *dequeue; + u32 cycle_state; +}; + +struct xdbc_state { + u16 vendor; + u16 device; + u32 bus; + u32 dev; + u32 func; + void *xhci_base; + u64 xhci_start; + size_t xhci_length; + int port_number; + struct xdbc_regs *xdbc_reg; + dma_addr_t table_dma; + void *table_base; + dma_addr_t erst_dma; + size_t erst_size; + void *erst_base; + struct xdbc_ring evt_ring; + struct xdbc_segment evt_seg; + dma_addr_t dbcc_dma; + size_t dbcc_size; + void *dbcc_base; + dma_addr_t string_dma; + size_t string_size; + void *string_base; + struct xdbc_ring out_ring; + struct xdbc_segment out_seg; + void *out_buf; + dma_addr_t out_dma; + struct xdbc_ring in_ring; + struct xdbc_segment in_seg; + void *in_buf; + dma_addr_t in_dma; + u32 flags; + raw_spinlock_t lock; +}; + +struct serio_device_id { + __u8 type; + __u8 extra; + __u8 id; + __u8 proto; +}; + +struct serio_driver; + +struct serio { + void *port_data; + char name[32]; + char phys[32]; + char firmware_id[128]; + bool manual_bind; + struct serio_device_id id; + spinlock_t lock; + int (*write)(struct serio *, unsigned char); + int (*open)(struct serio *); + void (*close)(struct serio *); + int (*start)(struct serio *); + void (*stop)(struct serio *); + struct serio *parent; + struct list_head child_node; + struct list_head children; + unsigned int depth; + struct serio_driver *drv; + struct mutex drv_mutex; + struct device dev; + struct list_head node; + struct mutex *ps2_cmd_mutex; +}; + +struct serio_driver { + const char *description; + const struct serio_device_id *id_table; + bool manual_bind; + void (*write_wakeup)(struct serio *); + irqreturn_t (*interrupt)(struct serio *, unsigned char, unsigned int); + int (*connect)(struct serio *, struct serio_driver *); + int (*reconnect)(struct serio *); + int (*fast_reconnect)(struct serio *); + void (*disconnect)(struct serio *); + void (*cleanup)(struct serio *); + struct device_driver driver; +}; + +typedef struct serio *class_serio_pause_rx_t; + +enum ps2_disposition { + PS2_PROCESS = 0, + PS2_IGNORE = 1, + PS2_ERROR = 2, +}; + +struct ps2dev; + +typedef enum ps2_disposition (*ps2_pre_receive_handler_t)(struct ps2dev *, u8, unsigned int); + +typedef void (*ps2_receive_handler_t)(struct ps2dev *, u8); + +struct ps2dev { + struct serio *serio; + struct mutex cmd_mutex; + wait_queue_head_t wait; + long unsigned int flags; + u8 cmdbuf[8]; + u8 cmdcnt; + u8 nak; + ps2_pre_receive_handler_t pre_receive_handler; + ps2_receive_handler_t receive_handler; +}; + +struct input_id { + __u16 bustype; + __u16 vendor; + __u16 product; + __u16 version; +}; + +struct input_absinfo { + __s32 value; + __s32 minimum; + __s32 maximum; + __s32 fuzz; + __s32 flat; + __s32 resolution; +}; + +struct input_keymap_entry { + __u8 flags; + __u8 len; + __u16 index; + __u32 keycode; + __u8 scancode[32]; +}; + +struct ff_replay { + __u16 length; + __u16 delay; +}; + +struct ff_trigger { + __u16 button; + __u16 interval; +}; + +struct ff_envelope { + __u16 attack_length; + __u16 attack_level; + __u16 fade_length; + __u16 fade_level; +}; + +struct ff_constant_effect { + __s16 level; + struct ff_envelope envelope; +}; + +struct ff_ramp_effect { + __s16 start_level; + __s16 end_level; + struct ff_envelope envelope; +}; + +struct ff_condition_effect { + __u16 right_saturation; + __u16 left_saturation; + __s16 right_coeff; + __s16 left_coeff; + __u16 deadband; + __s16 center; +}; + +struct ff_periodic_effect { + __u16 waveform; + __u16 period; + __s16 magnitude; + __s16 offset; + __u16 phase; + struct ff_envelope envelope; + __u32 custom_len; + __s16 *custom_data; +}; + +struct ff_rumble_effect { + __u16 strong_magnitude; + __u16 weak_magnitude; +}; + +struct ff_effect { + __u16 type; + __s16 id; + __u16 direction; + struct ff_trigger trigger; + struct ff_replay replay; + union { + struct ff_constant_effect constant; + struct ff_ramp_effect ramp; + struct ff_periodic_effect periodic; + struct ff_condition_effect condition[2]; + struct ff_rumble_effect rumble; + } u; +}; + +struct input_device_id { + kernel_ulong_t flags; + __u16 bustype; + __u16 vendor; + __u16 product; + __u16 version; + kernel_ulong_t evbit[1]; + kernel_ulong_t keybit[12]; + kernel_ulong_t relbit[1]; + kernel_ulong_t absbit[1]; + kernel_ulong_t mscbit[1]; + kernel_ulong_t ledbit[1]; + kernel_ulong_t sndbit[1]; + kernel_ulong_t ffbit[2]; + kernel_ulong_t swbit[1]; + kernel_ulong_t propbit[1]; + kernel_ulong_t driver_info; +}; + +struct input_value { + __u16 type; + __u16 code; + __s32 value; +}; + +enum input_clock_type { + INPUT_CLK_REAL = 0, + INPUT_CLK_MONO = 1, + INPUT_CLK_BOOT = 2, + INPUT_CLK_MAX = 3, +}; + +struct ff_device; + +struct input_dev_poller; + +struct input_mt; + +struct input_handle; + +struct input_dev { + const char *name; + const char *phys; + const char *uniq; + struct input_id id; + long unsigned int propbit[1]; + long unsigned int evbit[1]; + long unsigned int keybit[12]; + long unsigned int relbit[1]; + long unsigned int absbit[1]; + long unsigned int mscbit[1]; + long unsigned int ledbit[1]; + long unsigned int sndbit[1]; + long unsigned int ffbit[2]; + long unsigned int swbit[1]; + unsigned int hint_events_per_packet; + unsigned int keycodemax; + unsigned int keycodesize; + void *keycode; + int (*setkeycode)(struct input_dev *, const struct input_keymap_entry *, unsigned int *); + int (*getkeycode)(struct input_dev *, struct input_keymap_entry *); + struct ff_device *ff; + struct input_dev_poller *poller; + unsigned int repeat_key; + struct timer_list timer; + int rep[2]; + struct input_mt *mt; + struct input_absinfo *absinfo; + long unsigned int key[12]; + long unsigned int led[1]; + long unsigned int snd[1]; + long unsigned int sw[1]; + int (*open)(struct input_dev *); + void (*close)(struct input_dev *); + int (*flush)(struct input_dev *, struct file *); + int (*event)(struct input_dev *, unsigned int, unsigned int, int); + struct input_handle *grab; + spinlock_t event_lock; + struct mutex mutex; + unsigned int users; + bool going_away; + struct device dev; + struct list_head h_list; + struct list_head node; + unsigned int num_vals; + unsigned int max_vals; + struct input_value *vals; + bool devres_managed; + ktime_t timestamp[3]; + bool inhibited; +}; + +struct ff_device { + int (*upload)(struct input_dev *, struct ff_effect *, struct ff_effect *); + int (*erase)(struct input_dev *, int); + int (*playback)(struct input_dev *, int, int); + void (*set_gain)(struct input_dev *, u16); + void (*set_autocenter)(struct input_dev *, u16); + void (*destroy)(struct ff_device *); + void *private; + long unsigned int ffbit[2]; + struct mutex mutex; + int max_effects; + struct ff_effect *effects; + struct file *effect_owners[0]; +}; + +struct input_handler; + +struct input_handle { + void *private; + int open; + const char *name; + struct input_dev *dev; + struct input_handler *handler; + unsigned int (*handle_events)(struct input_handle *, struct input_value *, unsigned int); + struct list_head d_node; + struct list_head h_node; +}; + +struct input_handler { + void *private; + void (*event)(struct input_handle *, unsigned int, unsigned int, int); + unsigned int (*events)(struct input_handle *, struct input_value *, unsigned int); + bool (*filter)(struct input_handle *, unsigned int, unsigned int, int); + bool (*match)(struct input_handler *, struct input_dev *); + int (*connect)(struct input_handler *, struct input_dev *, const struct input_device_id *); + void (*disconnect)(struct input_handle *); + void (*start)(struct input_handle *); + bool passive_observer; + bool legacy_minors; + int minor; + const char *name; + const struct input_device_id *id_table; + struct list_head h_list; + struct list_head node; +}; + +typedef __u64 timeu64_t; + +typedef int (*nvmem_reg_read_t)(void *, unsigned int, void *, size_t); + +typedef int (*nvmem_reg_write_t)(void *, unsigned int, void *, size_t); + +typedef int (*nvmem_cell_post_process_t)(void *, const char *, int, unsigned int, void *, size_t); + +enum nvmem_type { + NVMEM_TYPE_UNKNOWN = 0, + NVMEM_TYPE_EEPROM = 1, + NVMEM_TYPE_OTP = 2, + NVMEM_TYPE_BATTERY_BACKED = 3, + NVMEM_TYPE_FRAM = 4, +}; + +struct nvmem_keepout { + unsigned int start; + unsigned int end; + unsigned char value; +}; + +struct nvmem_cell_info { + const char *name; + unsigned int offset; + size_t raw_len; + unsigned int bytes; + unsigned int bit_offset; + unsigned int nbits; + struct device_node *np; + nvmem_cell_post_process_t read_post_process; + void *priv; +}; + +struct nvmem_device; + +struct nvmem_layout; + +struct nvmem_config { + struct device *dev; + const char *name; + int id; + struct module *owner; + const struct nvmem_cell_info *cells; + int ncells; + bool add_legacy_fixed_of_cells; + void (*fixup_dt_cell_info)(struct nvmem_device *, struct nvmem_cell_info *); + const struct nvmem_keepout *keepout; + unsigned int nkeepout; + enum nvmem_type type; + bool read_only; + bool root_only; + bool ignore_wp; + struct nvmem_layout *layout; + struct device_node *of_node; + nvmem_reg_read_t reg_read; + nvmem_reg_write_t reg_write; + int size; + int word_size; + int stride; + void *priv; + bool compat; + struct device *base_dev; +}; + +struct nvmem_layout { + struct device dev; + struct nvmem_device *nvmem; + int (*add_cells)(struct nvmem_layout *); +}; + +struct rtc_wkalrm { + unsigned char enabled; + unsigned char pending; + struct rtc_time time; +}; + +struct rtc_param { + __u64 param; + union { + __u64 uvalue; + __s64 svalue; + __u64 ptr; + }; + __u32 index; + __u32 __pad; +}; + +struct rtc_class_ops { + int (*ioctl)(struct device *, unsigned int, long unsigned int); + int (*read_time)(struct device *, struct rtc_time *); + int (*set_time)(struct device *, struct rtc_time *); + int (*read_alarm)(struct device *, struct rtc_wkalrm *); + int (*set_alarm)(struct device *, struct rtc_wkalrm *); + int (*proc)(struct device *, struct seq_file *); + int (*alarm_irq_enable)(struct device *, unsigned int); + int (*read_offset)(struct device *, long int *); + int (*set_offset)(struct device *, long int); + int (*param_get)(struct device *, struct rtc_param *); + int (*param_set)(struct device *, struct rtc_param *); +}; + +struct rtc_timer { + struct timerqueue_node node; + ktime_t period; + void (*func)(struct rtc_device *); + struct rtc_device *rtc; + int enabled; +}; + +struct rtc_device { + struct device dev; + struct module *owner; + int id; + const struct rtc_class_ops *ops; + struct mutex ops_lock; + struct cdev char_dev; + long unsigned int flags; + long unsigned int irq_data; + spinlock_t irq_lock; + wait_queue_head_t irq_queue; + struct fasync_struct *async_queue; + int irq_freq; + int max_user_freq; + struct timerqueue_head timerqueue; + struct rtc_timer aie_timer; + struct rtc_timer uie_rtctimer; + struct hrtimer pie_timer; + int pie_enabled; + struct work_struct irqwork; + long unsigned int set_offset_nsec; + long unsigned int features[1]; + time64_t range_min; + timeu64_t range_max; + timeu64_t alarm_offset_max; + time64_t start_secs; + time64_t offset_secs; + bool set_start_time; +}; + +struct trace_event_raw_i2c_slave { + struct trace_entry ent; + int adapter_nr; + int ret; + __u16 addr; + __u16 len; + enum i2c_slave_event event; + __u8 buf[1]; + char __data[0]; +}; + +struct trace_event_data_offsets_i2c_slave {}; + +typedef void (*btf_trace_i2c_slave)(void *, const struct i2c_client *, enum i2c_slave_event, __u8 *, int); + +enum { + POWER_SUPPLY_STATUS_UNKNOWN = 0, + POWER_SUPPLY_STATUS_CHARGING = 1, + POWER_SUPPLY_STATUS_DISCHARGING = 2, + POWER_SUPPLY_STATUS_NOT_CHARGING = 3, + POWER_SUPPLY_STATUS_FULL = 4, +}; + +struct power_supply_led_trigger { + struct led_trigger trig; + struct power_supply *psy; +}; + +enum thermal_device_mode { + THERMAL_DEVICE_DISABLED = 0, + THERMAL_DEVICE_ENABLED = 1, +}; + +enum thermal_trip_type { + THERMAL_TRIP_ACTIVE = 0, + THERMAL_TRIP_PASSIVE = 1, + THERMAL_TRIP_HOT = 2, + THERMAL_TRIP_CRITICAL = 3, +}; + +enum thermal_trend { + THERMAL_TREND_STABLE = 0, + THERMAL_TREND_RAISING = 1, + THERMAL_TREND_DROPPING = 2, +}; + +enum thermal_notify_event { + THERMAL_EVENT_UNSPECIFIED = 0, + THERMAL_EVENT_TEMP_SAMPLE = 1, + THERMAL_TRIP_VIOLATED = 2, + THERMAL_TRIP_CHANGED = 3, + THERMAL_DEVICE_DOWN = 4, + THERMAL_DEVICE_UP = 5, + THERMAL_DEVICE_POWER_CAPABILITY_CHANGED = 6, + THERMAL_TABLE_CHANGED = 7, + THERMAL_EVENT_KEEP_ALIVE = 8, + THERMAL_TZ_BIND_CDEV = 9, + THERMAL_TZ_UNBIND_CDEV = 10, + THERMAL_INSTANCE_WEIGHT_CHANGED = 11, + THERMAL_TZ_RESUME = 12, + THERMAL_TZ_ADD_THRESHOLD = 13, + THERMAL_TZ_DEL_THRESHOLD = 14, + THERMAL_TZ_FLUSH_THRESHOLDS = 15, +}; + +struct thermal_trip { + int temperature; + int hysteresis; + enum thermal_trip_type type; + u8 flags; + void *priv; +}; + +struct cooling_spec { + long unsigned int upper; + long unsigned int lower; + unsigned int weight; +}; + +struct thermal_zone_device_ops { + bool (*should_bind)(struct thermal_zone_device *, const struct thermal_trip *, struct thermal_cooling_device *, struct cooling_spec *); + int (*get_temp)(struct thermal_zone_device *, int *); + int (*set_trips)(struct thermal_zone_device *, int, int); + int (*change_mode)(struct thermal_zone_device *, enum thermal_device_mode); + int (*set_trip_temp)(struct thermal_zone_device *, const struct thermal_trip *, int); + int (*get_crit_temp)(struct thermal_zone_device *, int *); + int (*set_emul_temp)(struct thermal_zone_device *, int); + int (*get_trend)(struct thermal_zone_device *, const struct thermal_trip *, enum thermal_trend *); + void (*hot)(struct thermal_zone_device *); + void (*critical)(struct thermal_zone_device *); +}; + +struct thermal_attr { + struct device_attribute attr; + char name[20]; +}; + +struct thermal_trip_attrs { + struct thermal_attr type; + struct thermal_attr temp; + struct thermal_attr hyst; +}; + +struct thermal_trip_desc { + struct thermal_trip trip; + struct thermal_trip_attrs trip_attrs; + struct list_head list_node; + struct list_head thermal_instances; + int threshold; +}; + +struct thermal_zone_params; + +struct thermal_governor; + +struct thermal_zone_device { + int id; + char type[20]; + struct device device; + struct completion removal; + struct completion resume; + struct attribute_group trips_attribute_group; + struct list_head trips_high; + struct list_head trips_reached; + struct list_head trips_invalid; + enum thermal_device_mode mode; + void *devdata; + int num_trips; + long unsigned int passive_delay_jiffies; + long unsigned int polling_delay_jiffies; + long unsigned int recheck_delay_jiffies; + int temperature; + int last_temperature; + int emul_temperature; + int passive; + int prev_low_trip; + int prev_high_trip; + struct thermal_zone_device_ops ops; + struct thermal_zone_params *tzp; + struct thermal_governor *governor; + void *governor_data; + struct ida ida; + struct mutex lock; + struct list_head node; + struct delayed_work poll_queue; + enum thermal_notify_event notify_event; + u8 state; + struct list_head user_thresholds; + struct thermal_trip_desc trips[0]; +}; + +typedef struct thermal_cooling_device *class_cooling_dev_t; + +struct thermal_zone_params { + const char *governor_name; + bool no_hwmon; + u32 sustainable_power; + s32 k_po; + s32 k_pu; + s32 k_i; + s32 k_d; + s32 integral_cutoff; + int slope; + int offset; +}; + +struct thermal_governor { + const char *name; + int (*bind_to_tz)(struct thermal_zone_device *); + void (*unbind_from_tz)(struct thermal_zone_device *); + void (*trip_crossed)(struct thermal_zone_device *, const struct thermal_trip *, bool); + void (*manage)(struct thermal_zone_device *); + void (*update_tz)(struct thermal_zone_device *, enum thermal_notify_event); + struct list_head governor_list; +}; + +typedef struct thermal_zone_device *class_thermal_zone_t; + +struct thermal_instance { + int id; + char name[20]; + struct thermal_cooling_device *cdev; + const struct thermal_trip *trip; + bool initialized; + long unsigned int upper; + long unsigned int lower; + long unsigned int target; + char attr_name[20]; + struct device_attribute attr; + char weight_attr_name[20]; + struct device_attribute weight_attr; + struct list_head trip_node; + struct list_head cdev_node; + unsigned int weight; + bool upper_no_limit; +}; + +struct cooling_dev_stats { + spinlock_t lock; + unsigned int total_trans; + long unsigned int state; + ktime_t last_time; + ktime_t *time_in_state; + unsigned int *trans_table; +}; + +struct user_threshold { + struct list_head list_node; + int temperature; + int direction; +}; + +struct thermal_hwmon_device { + char type[20]; + struct device *device; + int count; + struct list_head tz_list; + struct list_head node; +}; + +struct thermal_hwmon_attr { + struct device_attribute attr; + char name[16]; +}; + +struct thermal_hwmon_temp { + struct list_head hwmon_node; + struct thermal_zone_device *tz; + struct thermal_hwmon_attr temp_input; + struct thermal_hwmon_attr temp_crit; +}; + +struct watchdog_info { + __u32 options; + __u32 firmware_version; + __u8 identity[32]; +}; + +struct watchdog_device; + +struct watchdog_ops { + struct module *owner; + int (*start)(struct watchdog_device *); + int (*stop)(struct watchdog_device *); + int (*ping)(struct watchdog_device *); + unsigned int (*status)(struct watchdog_device *); + int (*set_timeout)(struct watchdog_device *, unsigned int); + int (*set_pretimeout)(struct watchdog_device *, unsigned int); + unsigned int (*get_timeleft)(struct watchdog_device *); + int (*restart)(struct watchdog_device *, long unsigned int, void *); + long int (*ioctl)(struct watchdog_device *, unsigned int, long unsigned int); +}; + +struct watchdog_governor; + +struct watchdog_core_data; + +struct watchdog_device { + int id; + struct device *parent; + const struct attribute_group **groups; + const struct watchdog_info *info; + const struct watchdog_ops *ops; + const struct watchdog_governor *gov; + unsigned int bootstatus; + unsigned int timeout; + unsigned int pretimeout; + unsigned int min_timeout; + unsigned int max_timeout; + unsigned int min_hw_heartbeat_ms; + unsigned int max_hw_heartbeat_ms; + struct notifier_block reboot_nb; + struct notifier_block restart_nb; + struct notifier_block pm_nb; + void *driver_data; + struct watchdog_core_data *wd_data; + long unsigned int status; + struct list_head deferred; +}; + +struct watchdog_governor { + const char name[20]; + void (*pretimeout)(struct watchdog_device *); +}; + +struct watchdog_core_data { + struct device dev; + struct cdev cdev; + struct watchdog_device *wdd; + struct mutex lock; + ktime_t last_keepalive; + ktime_t last_hw_keepalive; + ktime_t open_deadline; + struct hrtimer timer; + struct kthread_work work; + long unsigned int status; +}; + +struct trace_event_raw_watchdog_template { + struct trace_entry ent; + int id; + int err; + char __data[0]; +}; + +struct trace_event_raw_watchdog_set_timeout { + struct trace_entry ent; + int id; + unsigned int timeout; + int err; + char __data[0]; +}; + +struct trace_event_data_offsets_watchdog_template {}; + +struct trace_event_data_offsets_watchdog_set_timeout {}; + +typedef void (*btf_trace_watchdog_start)(void *, struct watchdog_device *, int); + +typedef void (*btf_trace_watchdog_ping)(void *, struct watchdog_device *, int); + +typedef void (*btf_trace_watchdog_stop)(void *, struct watchdog_device *, int); + +typedef void (*btf_trace_watchdog_set_timeout)(void *, struct watchdog_device *, unsigned int, int); + +enum { + PERCPU_REF_INIT_ATOMIC = 1, + PERCPU_REF_INIT_DEAD = 2, + PERCPU_REF_ALLOW_REINIT = 4, +}; + +struct mdp_device_descriptor_s { + __u32 number; + __u32 major; + __u32 minor; + __u32 raid_disk; + __u32 state; + __u32 reserved[27]; +}; + +typedef struct mdp_device_descriptor_s mdp_disk_t; + +struct mdp_superblock_s { + __u32 md_magic; + __u32 major_version; + __u32 minor_version; + __u32 patch_version; + __u32 gvalid_words; + __u32 set_uuid0; + __u32 ctime; + __u32 level; + __u32 size; + __u32 nr_disks; + __u32 raid_disks; + __u32 md_minor; + __u32 not_persistent; + __u32 set_uuid1; + __u32 set_uuid2; + __u32 set_uuid3; + __u32 gstate_creserved[16]; + __u32 utime; + __u32 state; + __u32 active_disks; + __u32 working_disks; + __u32 failed_disks; + __u32 spare_disks; + __u32 sb_csum; + __u32 events_lo; + __u32 events_hi; + __u32 cp_events_lo; + __u32 cp_events_hi; + __u32 recovery_cp; + __u64 reshape_position; + __u32 new_level; + __u32 delta_disks; + __u32 new_layout; + __u32 new_chunk; + __u32 gstate_sreserved[14]; + __u32 layout; + __u32 chunk_size; + __u32 root_pv; + __u32 root_block; + __u32 pstate_reserved[60]; + mdp_disk_t disks[27]; + __u32 reserved[0]; + mdp_disk_t this_disk; +}; + +typedef struct mdp_superblock_s mdp_super_t; + +struct mdp_superblock_1 { + __le32 magic; + __le32 major_version; + __le32 feature_map; + __le32 pad0; + __u8 set_uuid[16]; + char set_name[32]; + __le64 ctime; + __le32 level; + __le32 layout; + __le64 size; + __le32 chunksize; + __le32 raid_disks; + union { + __le32 bitmap_offset; + struct { + __le16 offset; + __le16 size; + } ppl; + }; + __le32 new_level; + __le64 reshape_position; + __le32 delta_disks; + __le32 new_layout; + __le32 new_chunk; + __le32 new_offset; + __le64 data_offset; + __le64 data_size; + __le64 super_offset; + union { + __le64 recovery_offset; + __le64 journal_tail; + }; + __le32 dev_number; + __le32 cnt_corrected_read; + __u8 device_uuid[16]; + __u8 devflags; + __u8 bblog_shift; + __le16 bblog_size; + __le32 bblog_offset; + __le64 utime; + __le64 events; + __le64 resync_offset; + __le32 sb_csum; + __le32 max_dev; + __u8 pad3[32]; + __le16 dev_roles[0]; +}; + +struct mdu_version_s { + int major; + int minor; + int patchlevel; +}; + +typedef struct mdu_version_s mdu_version_t; + +struct mdu_array_info_s { + int major_version; + int minor_version; + int patch_version; + unsigned int ctime; + int level; + int size; + int nr_disks; + int raid_disks; + int md_minor; + int not_persistent; + unsigned int utime; + int state; + int active_disks; + int working_disks; + int failed_disks; + int spare_disks; + int layout; + int chunk_size; +}; + +typedef struct mdu_array_info_s mdu_array_info_t; + +struct mdu_disk_info_s { + int number; + int major; + int minor; + int raid_disk; + int state; +}; + +typedef struct mdu_disk_info_s mdu_disk_info_t; + +struct mdu_bitmap_file_s { + char pathname[4096]; +}; + +typedef struct mdu_bitmap_file_s mdu_bitmap_file_t; + +enum md_submodule_type { + MD_PERSONALITY = 0, + MD_CLUSTER = 1, + MD_BITMAP = 2, +}; + +enum md_submodule_id { + ID_LINEAR = -1, + ID_RAID0 = 0, + ID_RAID1 = 1, + ID_RAID4 = 4, + ID_RAID5 = 5, + ID_RAID6 = 6, + ID_RAID10 = 10, + ID_CLUSTER = 11, + ID_BITMAP = 12, + ID_LLBITMAP = 13, +}; + +struct md_submodule_head { + enum md_submodule_type type; + enum md_submodule_id id; + const char *name; + struct module *owner; +}; + +enum sync_action { + ACTION_RESYNC = 0, + ACTION_RECOVER = 1, + ACTION_CHECK = 2, + ACTION_REPAIR = 3, + ACTION_RESHAPE = 4, + ACTION_FROZEN = 5, + ACTION_IDLE = 6, + NR_SYNC_ACTIONS = 7, +}; + +struct serial_in_rdev { + struct rb_root_cached serial_rb; + spinlock_t serial_lock; + wait_queue_head_t serial_io_wait; +}; + +struct mddev; + +struct md_rdev { + struct list_head same_set; + sector_t sectors; + struct mddev *mddev; + long unsigned int last_events; + struct block_device *meta_bdev; + struct block_device *bdev; + struct file *bdev_file; + struct page *sb_page; + struct page *bb_page; + int sb_loaded; + __u64 sb_events; + sector_t data_offset; + sector_t new_data_offset; + sector_t sb_start; + int sb_size; + int preferred_minor; + struct kobject kobj; + long unsigned int flags; + wait_queue_head_t blocked_wait; + int desc_nr; + int raid_disk; + int new_raid_disk; + int saved_raid_disk; + union { + sector_t recovery_offset; + sector_t journal_tail; + }; + atomic_t nr_pending; + atomic_t read_errors; + time64_t last_read_error; + atomic_t corrected_errors; + struct serial_in_rdev *serial; + struct kernfs_node *sysfs_state; + struct kernfs_node *sysfs_unack_badblocks; + struct kernfs_node *sysfs_badblocks; + struct badblocks badblocks; + struct { + short int offset; + unsigned int size; + sector_t sector; + } ppl; +}; + +struct md_cluster_info; + +struct md_personality; + +struct md_thread; + +struct bitmap_operations; + +struct md_cluster_operations; + +struct mddev { + void *private; + struct md_personality *pers; + dev_t unit; + int md_minor; + struct list_head disks; + long unsigned int flags; + long unsigned int sb_flags; + int suspended; + struct mutex suspend_mutex; + struct percpu_ref active_io; + int ro; + int sysfs_active; + struct gendisk *gendisk; + struct gendisk *dm_gendisk; + struct kobject kobj; + int hold_active; + int major_version; + int minor_version; + int patch_version; + int persistent; + int external; + char metadata_type[17]; + int chunk_sectors; + time64_t ctime; + time64_t utime; + int level; + int layout; + char clevel[16]; + int raid_disks; + int max_disks; + sector_t dev_sectors; + sector_t array_sectors; + int external_size; + __u64 events; + int can_decrease_events; + char uuid[16]; + sector_t reshape_position; + int delta_disks; + int new_level; + int new_layout; + int new_chunk_sectors; + int reshape_backwards; + struct md_thread *thread; + struct md_thread *sync_thread; + enum sync_action last_sync_action; + sector_t curr_resync; + sector_t curr_resync_completed; + long unsigned int resync_mark; + sector_t resync_mark_cnt; + sector_t curr_mark_cnt; + sector_t resync_max_sectors; + atomic64_t resync_mismatches; + sector_t suspend_lo; + sector_t suspend_hi; + int sync_speed_min; + int sync_speed_max; + int sync_io_depth; + int parallel_resync; + int ok_start_degraded; + long unsigned int recovery; + int recovery_disabled; + int in_sync; + struct mutex open_mutex; + struct mutex reconfig_mutex; + atomic_t active; + atomic_t openers; + int changed; + int degraded; + long unsigned int normal_io_events; + atomic_t recovery_active; + wait_queue_head_t recovery_wait; + sector_t resync_offset; + sector_t resync_min; + sector_t resync_max; + struct kernfs_node *sysfs_state; + struct kernfs_node *sysfs_action; + struct kernfs_node *sysfs_completed; + struct kernfs_node *sysfs_degraded; + struct kernfs_node *sysfs_level; + struct work_struct del_work; + struct work_struct sync_work; + spinlock_t lock; + wait_queue_head_t sb_wait; + atomic_t pending_writes; + unsigned int safemode; + unsigned int safemode_delay; + struct timer_list safemode_timer; + struct percpu_ref writes_pending; + int sync_checkers; + void *bitmap; + struct bitmap_operations *bitmap_ops; + struct { + struct file *file; + loff_t offset; + long unsigned int space; + loff_t default_offset; + long unsigned int default_space; + struct mutex mutex; + long unsigned int chunksize; + long unsigned int daemon_sleep; + long unsigned int max_write_behind; + int external; + int nodes; + char cluster_name[64]; + } bitmap_info; + atomic_t max_corr_read_errors; + struct list_head all_mddevs; + const struct attribute_group *to_remove; + struct bio_set bio_set; + struct bio_set sync_set; + struct bio_set io_clone_set; + struct work_struct event_work; + mempool_t *serial_info_pool; + void (*sync_super)(struct mddev *, struct md_rdev *); + struct md_cluster_info *cluster_info; + struct md_cluster_operations *cluster_ops; + unsigned int good_device_nr; + unsigned int noio_flag; + struct list_head deleting; + atomic_t sync_seq; + bool has_superblocks: 1; + bool fail_last_dev: 1; + bool serialize_policy: 1; +}; + +enum flag_bits { + Faulty = 0, + In_sync = 1, + Bitmap_sync = 2, + WriteMostly = 3, + AutoDetected = 4, + Blocked = 5, + WriteErrorSeen = 6, + FaultRecorded = 7, + BlockedBadBlocks = 8, + WantReplacement = 9, + Replacement = 10, + Candidate = 11, + Journal = 12, + ClusterRemove = 13, + ExternalBbl = 14, + FailFast = 15, + LastDev = 16, + CollisionCheck = 17, + Nonrot = 18, +}; + +enum mddev_flags { + MD_ARRAY_FIRST_USE = 0, + MD_CLOSING = 1, + MD_JOURNAL_CLEAN = 2, + MD_HAS_JOURNAL = 3, + MD_CLUSTER_RESYNC_LOCKED = 4, + MD_FAILFAST_SUPPORTED = 5, + MD_HAS_PPL = 6, + MD_HAS_MULTIPLE_PPLS = 7, + MD_NOT_READY = 8, + MD_BROKEN = 9, + MD_DO_DELETE = 10, + MD_DELETED = 11, +}; + +enum mddev_sb_flags { + MD_SB_CHANGE_DEVS = 0, + MD_SB_CHANGE_CLEAN = 1, + MD_SB_CHANGE_PENDING = 2, + MD_SB_NEED_REWRITE = 3, +}; + +enum { + MD_RESYNC_NONE = 0, + MD_RESYNC_YIELDED = 1, + MD_RESYNC_DELAYED = 2, + MD_RESYNC_ACTIVE = 3, +}; + +struct md_personality { + struct md_submodule_head head; + bool (*make_request)(struct mddev *, struct bio *); + int (*run)(struct mddev *); + int (*start)(struct mddev *); + void (*free)(struct mddev *, void *); + void (*status)(struct seq_file *, struct mddev *); + void (*error_handler)(struct mddev *, struct md_rdev *); + int (*hot_add_disk)(struct mddev *, struct md_rdev *); + int (*hot_remove_disk)(struct mddev *, struct md_rdev *); + int (*spare_active)(struct mddev *); + sector_t (*sync_request)(struct mddev *, sector_t, sector_t, int *); + int (*resize)(struct mddev *, sector_t); + sector_t (*size)(struct mddev *, sector_t, int); + int (*check_reshape)(struct mddev *); + int (*start_reshape)(struct mddev *); + void (*finish_reshape)(struct mddev *); + void (*update_reshape_pos)(struct mddev *); + void (*prepare_suspend)(struct mddev *); + void (*quiesce)(struct mddev *, int); + void * (*takeover)(struct mddev *); + int (*change_consistency_policy)(struct mddev *, const char *); + void (*bitmap_sector)(struct mddev *, sector_t *, long unsigned int *); +}; + +struct md_thread { + void (*run)(struct md_thread *); + struct mddev *mddev; + wait_queue_head_t wqueue; + long unsigned int flags; + struct task_struct *tsk; + long unsigned int timeout; + void *private; +}; + +struct md_bitmap_stats; + +struct bitmap_operations { + bool (*enabled)(struct mddev *); + int (*create)(struct mddev *); + int (*resize)(struct mddev *, sector_t, int, bool); + int (*load)(struct mddev *); + void (*destroy)(struct mddev *); + void (*flush)(struct mddev *); + void (*write_all)(struct mddev *); + void (*dirty_bits)(struct mddev *, long unsigned int, long unsigned int); + void (*unplug)(struct mddev *, bool); + void (*daemon_work)(struct mddev *); + void (*start_behind_write)(struct mddev *); + void (*end_behind_write)(struct mddev *); + void (*wait_behind_writes)(struct mddev *); + void (*start_write)(struct mddev *, sector_t, long unsigned int); + void (*end_write)(struct mddev *, sector_t, long unsigned int); + bool (*start_sync)(struct mddev *, sector_t, sector_t *, bool); + void (*end_sync)(struct mddev *, sector_t, sector_t *); + void (*cond_end_sync)(struct mddev *, sector_t, bool); + void (*close_sync)(struct mddev *); + void (*update_sb)(void *); + int (*get_stats)(void *, struct md_bitmap_stats *); + void (*sync_with_cluster)(struct mddev *, sector_t, sector_t, sector_t, sector_t); + void * (*get_from_slot)(struct mddev *, int); + int (*copy_from_slot)(struct mddev *, int, sector_t *, sector_t *, bool); + void (*set_pages)(void *, long unsigned int); + void (*free)(void *); +}; + +struct md_cluster_operations { + struct md_submodule_head head; + int (*join)(struct mddev *, int); + int (*leave)(struct mddev *); + int (*slot_number)(struct mddev *); + int (*resync_info_update)(struct mddev *, sector_t, sector_t); + int (*resync_start_notify)(struct mddev *); + int (*resync_status_get)(struct mddev *); + void (*resync_info_get)(struct mddev *, sector_t *, sector_t *); + int (*metadata_update_start)(struct mddev *); + int (*metadata_update_finish)(struct mddev *); + void (*metadata_update_cancel)(struct mddev *); + int (*resync_start)(struct mddev *); + int (*resync_finish)(struct mddev *); + int (*area_resyncing)(struct mddev *, int, sector_t, sector_t); + int (*add_new_disk)(struct mddev *, struct md_rdev *); + void (*add_new_disk_cancel)(struct mddev *); + int (*new_disk_ack)(struct mddev *, bool); + int (*remove_disk)(struct mddev *, struct md_rdev *); + void (*load_bitmaps)(struct mddev *, int); + int (*gather_bitmaps)(struct md_rdev *); + int (*resize_bitmaps)(struct mddev *, sector_t, sector_t); + int (*lock_all_bitmaps)(struct mddev *); + void (*unlock_all_bitmaps)(struct mddev *); + void (*update_size)(struct mddev *, sector_t); +}; + +enum recovery_flags { + MD_RECOVERY_NEEDED = 0, + MD_RECOVERY_RUNNING = 1, + MD_RECOVERY_INTR = 2, + MD_RECOVERY_DONE = 3, + MD_RECOVERY_FROZEN = 4, + MD_RECOVERY_WAIT = 5, + MD_RECOVERY_ERROR = 6, + MD_RECOVERY_SYNC = 7, + MD_RECOVERY_REQUESTED = 8, + MD_RECOVERY_CHECK = 9, + MD_RECOVERY_RECOVER = 10, + MD_RECOVERY_RESHAPE = 11, + MD_RESYNCING_REMOTE = 12, +}; + +enum md_ro_state { + MD_RDWR = 0, + MD_RDONLY = 1, + MD_AUTO_READ = 2, + MD_MAX_STATE = 3, +}; + +struct md_sysfs_entry { + struct attribute attr; + ssize_t (*show)(struct mddev *, char *); + ssize_t (*store)(struct mddev *, const char *, size_t); +}; + +struct md_io_clone { + struct mddev *mddev; + struct bio *orig_bio; + long unsigned int start_time; + sector_t offset; + long unsigned int sectors; + struct bio bio_clone; +}; + +struct md_bitmap_stats { + u64 events_cleared; + int behind_writes; + bool behind_wait; + long unsigned int missing_pages; + long unsigned int file_pages; + long unsigned int sync_size; + long unsigned int pages; + struct file *file; +}; + +struct super_type { + char *name; + struct module *owner; + int (*load_super)(struct md_rdev *, struct md_rdev *, int); + int (*validate_super)(struct mddev *, struct md_rdev *, struct md_rdev *); + void (*sync_super)(struct mddev *, struct md_rdev *); + long long unsigned int (*rdev_size_change)(struct md_rdev *, sector_t); + int (*allow_new_offset)(struct md_rdev *, long long unsigned int); +}; + +struct rdev_sysfs_entry { + struct attribute attr; + ssize_t (*show)(struct md_rdev *, char *); + ssize_t (*store)(struct md_rdev *, const char *, size_t); +}; + +enum array_state { + clear = 0, + inactive = 1, + suspended = 2, + readonly = 3, + read_auto = 4, + clean = 5, + active = 6, + write_pending = 7, + active_idle = 8, + broken = 9, + bad_word = 10, +}; + +struct detected_devices_node { + struct list_head list; + dev_t dev; +}; + +typedef u16 blk_short_t; + +enum dm_queue_mode { + DM_TYPE_NONE = 0, + DM_TYPE_BIO_BASED = 1, + DM_TYPE_REQUEST_BASED = 2, + DM_TYPE_DAX_BIO_BASED = 3, +}; + +typedef enum { + STATUSTYPE_INFO = 0, + STATUSTYPE_TABLE = 1, + STATUSTYPE_IMA = 2, +} status_type_t; + +union map_info { + void *ptr; +}; + +struct dm_target; + +typedef int (*dm_ctr_fn)(struct dm_target *, unsigned int, char **); + +struct dm_table; + +struct target_type; + +struct dm_target { + struct dm_table *table; + struct target_type *type; + sector_t begin; + sector_t len; + uint32_t max_io_len; + unsigned int num_flush_bios; + unsigned int num_discard_bios; + unsigned int num_secure_erase_bios; + unsigned int num_write_zeroes_bios; + unsigned int per_io_data_size; + void *private; + char *error; + bool flush_supported: 1; + bool discards_supported: 1; + bool zone_reset_all_supported: 1; + bool max_discard_granularity: 1; + bool limit_swap_bios: 1; + bool emulate_zone_append: 1; + bool accounts_remapped_io: 1; + bool needs_bio_set_dev: 1; + bool flush_bypasses_map: 1; + bool mempool_needs_integrity: 1; +}; + +typedef void (*dm_dtr_fn)(struct dm_target *); + +typedef int (*dm_map_fn)(struct dm_target *, struct bio *); + +typedef int (*dm_clone_and_map_request_fn)(struct dm_target *, struct request *, union map_info *, struct request **); + +typedef void (*dm_release_clone_request_fn)(struct request *, union map_info *); + +typedef int (*dm_endio_fn)(struct dm_target *, struct bio *, blk_status_t *); + +typedef int (*dm_request_endio_fn)(struct dm_target *, struct request *, blk_status_t, union map_info *); + +typedef void (*dm_presuspend_fn)(struct dm_target *); + +typedef void (*dm_presuspend_undo_fn)(struct dm_target *); + +typedef void (*dm_postsuspend_fn)(struct dm_target *); + +typedef int (*dm_preresume_fn)(struct dm_target *); + +typedef void (*dm_resume_fn)(struct dm_target *); + +typedef void (*dm_status_fn)(struct dm_target *, status_type_t, unsigned int, char *, unsigned int); + +typedef int (*dm_message_fn)(struct dm_target *, unsigned int, char **, char *, unsigned int); + +typedef int (*dm_prepare_ioctl_fn)(struct dm_target *, struct block_device **, unsigned int, long unsigned int, bool *); + +struct dm_report_zones_args; + +typedef int (*dm_report_zones_fn)(struct dm_target *, struct dm_report_zones_args *, unsigned int); + +struct dm_report_zones_args { + struct dm_target *tgt; + sector_t next_sector; + void *orig_data; + report_zones_cb orig_cb; + unsigned int zone_idx; + sector_t start; +}; + +struct dm_dev; + +typedef int (*iterate_devices_callout_fn)(struct dm_target *, struct dm_dev *, sector_t, sector_t, void *); + +struct dm_dev { + struct block_device *bdev; + struct file *bdev_file; + struct dax_device *dax_dev; + blk_mode_t mode; + char name[16]; +}; + +typedef int (*dm_iterate_devices_fn)(struct dm_target *, iterate_devices_callout_fn, void *); + +typedef void (*dm_io_hints_fn)(struct dm_target *, struct queue_limits *); + +typedef int (*dm_busy_fn)(struct dm_target *); + +typedef long int (*dm_dax_direct_access_fn)(struct dm_target *, long unsigned int, long int, enum dax_access_mode, void **, long unsigned int *); + +typedef int (*dm_dax_zero_page_range_fn)(struct dm_target *, long unsigned int, size_t); + +typedef size_t (*dm_dax_recovery_write_fn)(struct dm_target *, long unsigned int, void *, size_t, struct iov_iter *); + +struct target_type { + uint64_t features; + const char *name; + struct module *module; + unsigned int version[3]; + dm_ctr_fn ctr; + dm_dtr_fn dtr; + dm_map_fn map; + dm_clone_and_map_request_fn clone_and_map_rq; + dm_release_clone_request_fn release_clone_rq; + dm_endio_fn end_io; + dm_request_endio_fn rq_end_io; + dm_presuspend_fn presuspend; + dm_presuspend_undo_fn presuspend_undo; + dm_postsuspend_fn postsuspend; + dm_preresume_fn preresume; + dm_resume_fn resume; + dm_status_fn status; + dm_message_fn message; + dm_prepare_ioctl_fn prepare_ioctl; + dm_report_zones_fn report_zones; + dm_busy_fn busy; + dm_iterate_devices_fn iterate_devices; + dm_io_hints_fn io_hints; + dm_dax_direct_access_fn direct_access; + dm_dax_zero_page_range_fn dax_zero_page_range; + dm_dax_recovery_write_fn dax_recovery_write; + struct list_head list; +}; + +struct mapped_device; + +struct dm_md_mempools; + +struct dm_table { + struct mapped_device *md; + enum dm_queue_mode type; + unsigned int depth; + unsigned int counts[16]; + sector_t *index[16]; + unsigned int num_targets; + unsigned int num_allocated; + sector_t *highs; + struct dm_target *targets; + struct target_type *immutable_target_type; + bool integrity_supported: 1; + bool singleton: 1; + bool flush_bypasses_map: 1; + blk_mode_t mode; + struct list_head devices; + struct rw_semaphore devices_lock; + void (*event_fn)(void *); + void *event_context; + struct dm_md_mempools *mempools; + struct blk_crypto_profile *crypto_profile; +}; + +struct dm_arg_set { + unsigned int argc; + char **argv; +}; + +struct dm_arg { + unsigned int min; + unsigned int max; + char *error; +}; + +struct dm_stats_last_position; + +struct dm_stats { + struct mutex mutex; + struct list_head list; + struct dm_stats_last_position *last; + bool precise_timestamps; +}; + +struct dm_stats_aux { + bool merged; + long long unsigned int duration_ns; +}; + +struct dm_dev_internal { + struct list_head list; + refcount_t count; + struct dm_dev *dm_dev; +}; + +struct dm_ima_device_table_metadata { + char *device_metadata; + unsigned int device_metadata_len; + unsigned int num_targets; + char *hash; + unsigned int hash_len; +}; + +struct dm_ima_measurements { + struct dm_ima_device_table_metadata active_table; + struct dm_ima_device_table_metadata inactive_table; + unsigned int dm_version_str_len; +}; + +struct dm_kobject_holder { + struct kobject kobj; + struct completion completion; +}; + +struct dm_md_mempools { + struct bio_set bs; + struct bio_set io_bs; +}; + +struct dm_io; + +struct mapped_device { + struct mutex suspend_lock; + struct mutex table_devices_lock; + struct list_head table_devices; + void *map; + long unsigned int flags; + struct mutex type_lock; + enum dm_queue_mode type; + int numa_node_id; + struct request_queue *queue; + atomic_t holders; + atomic_t open_count; + struct dm_target *immutable_target; + struct target_type *immutable_target_type; + char name[16]; + struct gendisk *disk; + struct dax_device *dax_dev; + wait_queue_head_t wait; + long unsigned int *pending_io; + struct hd_geometry geometry; + struct workqueue_struct *wq; + struct work_struct work; + spinlock_t deferred_lock; + struct bio_list deferred; + struct work_struct requeue_work; + struct dm_io *requeue_list; + void *interface_ptr; + wait_queue_head_t eventq; + atomic_t event_nr; + atomic_t uevent_seq; + struct list_head uevent_list; + spinlock_t uevent_lock; + bool init_tio_pdu: 1; + struct blk_mq_tag_set *tag_set; + struct dm_stats stats; + unsigned int internal_suspend_count; + int swap_bios; + struct semaphore swap_bios_semaphore; + struct mutex swap_bios_lock; + struct dm_md_mempools *mempools; + struct dm_kobject_holder kobj_holder; + struct srcu_struct io_barrier; + unsigned int nr_zones; + void *zone_revalidate_map; + struct task_struct *revalidate_map_task; + struct dm_ima_measurements ima; +}; + +struct dm_target_io { + short unsigned int magic; + blk_short_t flags; + unsigned int target_bio_nr; + struct dm_io *io; + struct dm_target *ti; + unsigned int *len_ptr; + sector_t old_sector; + struct bio clone; +}; + +struct dm_io { + short unsigned int magic; + blk_short_t flags; + spinlock_t lock; + long unsigned int start_time; + void *data; + struct dm_io *next; + struct dm_stats_aux stats_aux; + blk_status_t status; + atomic_t io_count; + struct mapped_device *md; + struct bio *orig_bio; + unsigned int sector_offset; + unsigned int sectors; + struct dm_target_io tio; +}; + +struct dm_crypto_profile { + struct blk_crypto_profile profile; + struct mapped_device *md; +}; + +enum dm_wrappedkey_op { + DERIVE_SW_SECRET = 0, + IMPORT_KEY = 1, + GENERATE_KEY = 2, + PREPARE_KEY = 3, +}; + +struct dm_wrappedkey_op_args { + enum dm_wrappedkey_op op; + int err; + union { + struct { + const u8 *eph_key; + size_t eph_key_size; + u8 *sw_secret; + } derive_sw_secret; + struct { + const u8 *raw_key; + size_t raw_key_size; + u8 *lt_key; + } import_key; + struct { + u8 *lt_key; + } generate_key; + struct { + const u8 *lt_key; + size_t lt_key_size; + u8 *eph_key; + } prepare_key; + }; +}; + +enum suspend_mode { + PRESUSPEND = 0, + PRESUSPEND_UNDO = 1, + POSTSUSPEND = 2, +}; + +enum edac_dev_feat { + RAS_FEAT_SCRUB = 0, + RAS_FEAT_ECS = 1, + RAS_FEAT_MEM_REPAIR = 2, + RAS_FEAT_MAX = 3, +}; + +struct edac_scrub_ops { + int (*read_addr)(struct device *, void *, u64 *); + int (*read_size)(struct device *, void *, u64 *); + int (*write_addr)(struct device *, void *, u64); + int (*write_size)(struct device *, void *, u64); + int (*get_enabled_bg)(struct device *, void *, bool *); + int (*set_enabled_bg)(struct device *, void *, bool); + int (*get_min_cycle)(struct device *, void *, u32 *); + int (*get_max_cycle)(struct device *, void *, u32 *); + int (*get_cycle_duration)(struct device *, void *, u32 *); + int (*set_cycle_duration)(struct device *, void *, u32); +}; + +struct edac_ecs_ops { + int (*get_log_entry_type)(struct device *, void *, int, u32 *); + int (*set_log_entry_type)(struct device *, void *, int, u32); + int (*get_mode)(struct device *, void *, int, u32 *); + int (*set_mode)(struct device *, void *, int, u32); + int (*reset)(struct device *, void *, int, u32); + int (*get_threshold)(struct device *, void *, int, u32 *); + int (*set_threshold)(struct device *, void *, int, u32); +}; + +struct edac_ecs_ex_info { + u16 num_media_frus; +}; + +struct edac_mem_repair_ops { + int (*get_repair_type)(struct device *, void *, const char **); + int (*get_persist_mode)(struct device *, void *, bool *); + int (*set_persist_mode)(struct device *, void *, bool); + int (*get_repair_safe_when_in_use)(struct device *, void *, bool *); + int (*get_hpa)(struct device *, void *, u64 *); + int (*set_hpa)(struct device *, void *, u64); + int (*get_min_hpa)(struct device *, void *, u64 *); + int (*get_max_hpa)(struct device *, void *, u64 *); + int (*get_dpa)(struct device *, void *, u64 *); + int (*set_dpa)(struct device *, void *, u64); + int (*get_min_dpa)(struct device *, void *, u64 *); + int (*get_max_dpa)(struct device *, void *, u64 *); + int (*get_nibble_mask)(struct device *, void *, u32 *); + int (*set_nibble_mask)(struct device *, void *, u32); + int (*get_bank_group)(struct device *, void *, u32 *); + int (*set_bank_group)(struct device *, void *, u32); + int (*get_bank)(struct device *, void *, u32 *); + int (*set_bank)(struct device *, void *, u32); + int (*get_rank)(struct device *, void *, u32 *); + int (*set_rank)(struct device *, void *, u32); + int (*get_row)(struct device *, void *, u32 *); + int (*set_row)(struct device *, void *, u32); + int (*get_column)(struct device *, void *, u32 *); + int (*set_column)(struct device *, void *, u32); + int (*get_channel)(struct device *, void *, u32 *); + int (*set_channel)(struct device *, void *, u32); + int (*get_sub_channel)(struct device *, void *, u32 *); + int (*set_sub_channel)(struct device *, void *, u32); + int (*do_repair)(struct device *, void *, u32); +}; + +struct edac_dev_data { + union { + const struct edac_scrub_ops *scrub_ops; + const struct edac_ecs_ops *ecs_ops; + const struct edac_mem_repair_ops *mem_repair_ops; + }; + u8 instance; + void *private; +}; + +struct edac_dev_feat_ctx { + struct device dev; + void *private; + struct edac_dev_data *scrub; + struct edac_dev_data ecs; + struct edac_dev_data *mem_repair; +}; + +struct edac_dev_feature { + enum edac_dev_feat ft_type; + u8 instance; + union { + const struct edac_scrub_ops *scrub_ops; + const struct edac_ecs_ops *ecs_ops; + const struct edac_mem_repair_ops *mem_repair_ops; + }; + void *ctx; + struct edac_ecs_ex_info ecs_info; +}; + +struct edac_device_counter { + u32 ue_count; + u32 ce_count; +}; + +struct edac_device_ctl_info; + +struct edac_dev_sysfs_attribute { + struct attribute attr; + ssize_t (*show)(struct edac_device_ctl_info *, char *); + ssize_t (*store)(struct edac_device_ctl_info *, const char *, size_t); +}; + +struct edac_device_instance; + +struct edac_device_block; + +struct edac_device_ctl_info { + struct list_head link; + struct module *owner; + int dev_idx; + int log_ue; + int log_ce; + int panic_on_ue; + unsigned int poll_msec; + long unsigned int delay; + struct edac_dev_sysfs_attribute *sysfs_attributes; + const struct bus_type *edac_subsys; + int op_state; + struct delayed_work work; + void (*edac_check)(struct edac_device_ctl_info *); + struct device *dev; + const char *mod_name; + const char *ctl_name; + const char *dev_name; + void *pvt_info; + long unsigned int start_time; + char name[32]; + u32 nr_instances; + struct edac_device_instance *instances; + struct edac_device_block *blocks; + struct edac_device_counter counters; + struct kobject kobj; +}; + +struct edac_dev_sysfs_block_attribute { + struct attribute attr; + ssize_t (*show)(struct kobject *, struct attribute *, char *); +}; + +struct edac_device_block { + struct edac_device_instance *instance; + char name[32]; + struct edac_device_counter counters; + int nr_attribs; + struct edac_dev_sysfs_block_attribute *block_attributes; + struct kobject kobj; +}; + +struct edac_device_instance { + struct edac_device_ctl_info *ctl; + char name[35]; + struct edac_device_counter counters; + u32 nr_blocks; + struct edac_device_block *blocks; + struct kobject kobj; +}; + +struct gov_attr_set { + struct kobject kobj; + struct list_head policy_list; + struct mutex update_lock; + int usage_count; +}; + +struct governor_attr { + struct attribute attr; + ssize_t (*show)(struct gov_attr_set *, char *); + ssize_t (*store)(struct gov_attr_set *, const char *, size_t); +}; + +enum { + OD_NORMAL_SAMPLE = 0, + OD_SUB_SAMPLE = 1, +}; + +struct dbs_governor; + +struct dbs_data { + struct gov_attr_set attr_set; + struct dbs_governor *gov; + void *tuners; + unsigned int ignore_nice_load; + unsigned int sampling_rate; + unsigned int sampling_down_factor; + unsigned int up_threshold; + unsigned int io_is_busy; +}; + +struct policy_dbs_info; + +struct dbs_governor { + struct cpufreq_governor gov; + struct kobj_type kobj_type; + struct dbs_data *gdbs_data; + unsigned int (*gov_dbs_update)(struct cpufreq_policy *); + struct policy_dbs_info * (*alloc)(void); + void (*free)(struct policy_dbs_info *); + int (*init)(struct dbs_data *); + void (*exit)(struct dbs_data *); + void (*start)(struct cpufreq_policy *); +}; + +struct policy_dbs_info { + struct cpufreq_policy *policy; + struct mutex update_mutex; + u64 last_sample_time; + s64 sample_delay_ns; + atomic_t work_count; + struct irq_work irq_work; + struct work_struct work; + struct dbs_data *dbs_data; + struct list_head list; + unsigned int rate_mult; + unsigned int idle_periods; + bool is_shared; + bool work_in_progress; +}; + +struct od_ops { + unsigned int (*powersave_bias_target)(struct cpufreq_policy *, unsigned int, unsigned int); +}; + +struct od_policy_dbs_info { + struct policy_dbs_info policy_dbs; + unsigned int freq_lo; + unsigned int freq_lo_delay_us; + unsigned int freq_hi_delay_us; + unsigned int sample_type: 1; +}; + +struct od_dbs_tuners { + unsigned int powersave_bias; +}; + +struct cpufreq_policy_data { + struct cpufreq_cpuinfo cpuinfo; + struct cpufreq_frequency_table *freq_table; + unsigned int cpu; + unsigned int min; + unsigned int max; +}; + +struct freq_attr { + struct attribute attr; + ssize_t (*show)(struct cpufreq_policy *, char *); + ssize_t (*store)(struct cpufreq_policy *, const char *, size_t); +}; + +struct cpufreq_driver { + char name[16]; + u16 flags; + void *driver_data; + int (*init)(struct cpufreq_policy *); + int (*verify)(struct cpufreq_policy_data *); + int (*setpolicy)(struct cpufreq_policy *); + int (*target)(struct cpufreq_policy *, unsigned int, unsigned int); + int (*target_index)(struct cpufreq_policy *, unsigned int); + unsigned int (*fast_switch)(struct cpufreq_policy *, unsigned int); + void (*adjust_perf)(unsigned int, long unsigned int, long unsigned int, long unsigned int); + unsigned int (*get_intermediate)(struct cpufreq_policy *, unsigned int); + int (*target_intermediate)(struct cpufreq_policy *, unsigned int); + unsigned int (*get)(unsigned int); + void (*update_limits)(struct cpufreq_policy *); + int (*bios_limit)(int, unsigned int *); + int (*online)(struct cpufreq_policy *); + int (*offline)(struct cpufreq_policy *); + void (*exit)(struct cpufreq_policy *); + int (*suspend)(struct cpufreq_policy *); + int (*resume)(struct cpufreq_policy *); + void (*ready)(struct cpufreq_policy *); + struct freq_attr **attr; + bool boost_enabled; + int (*set_boost)(struct cpufreq_policy *, int); + void (*register_em)(struct cpufreq_policy *); +}; + +enum { + UNDEFINED_CAPABLE = 0, + SYSTEM_INTEL_MSR_CAPABLE = 1, + SYSTEM_AMD_MSR_CAPABLE = 2, + SYSTEM_IO_CAPABLE = 3, +}; + +struct acpi_cpufreq_data { + unsigned int resume; + unsigned int cpu_feature; + unsigned int acpi_perf_cpu; + cpumask_var_t freqdomain_cpus; + void (*cpu_freq_write)(struct acpi_pct_register *, u32); + u32 (*cpu_freq_read)(struct acpi_pct_register *); +}; + +struct drv_cmd { + struct acpi_pct_register *reg; + u32 val; + union { + void (*write)(struct acpi_pct_register *, u32); + u32 (*read)(struct acpi_pct_register *); + } func; +}; + +struct cpufreq_freqs { + struct cpufreq_policy *policy; + unsigned int old; + unsigned int new; + u8 flags; +}; + +struct pcc_register_resource { + u8 descriptor; + u16 length; + u8 space_id; + u8 bit_width; + u8 bit_offset; + u8 access_size; + u64 address; +} __attribute__((packed)); + +struct pcc_memory_resource { + u8 descriptor; + u16 length; + u8 space_id; + u8 resource_usage; + u8 type_specific; + u64 granularity; + u64 minimum; + u64 maximum; + u64 translation_offset; + u64 address_length; +} __attribute__((packed)); + +struct pcc_header { + u32 signature; + u16 length; + u8 major; + u8 minor; + u32 features; + u16 command; + u16 status; + u32 latency; + u32 minimum_time; + u32 maximum_time; + u32 nominal; + u32 throttled_frequency; + u32 minimum_frequency; +}; + +struct pcc_cpu { + u32 input_offset; + u32 output_offset; +}; + +struct cpuidle_governor { + char name[16]; + struct list_head governor_list; + unsigned int rating; + int (*enable)(struct cpuidle_driver *, struct cpuidle_device *); + void (*disable)(struct cpuidle_driver *, struct cpuidle_device *); + int (*select)(struct cpuidle_driver *, struct cpuidle_device *, bool *); + void (*reflect)(struct cpuidle_device *, int); +}; + +struct cpuidle_state_kobj { + struct cpuidle_state *state; + struct cpuidle_state_usage *state_usage; + struct completion kobj_unregister; + struct kobject kobj; + struct cpuidle_device *device; +}; + +struct cpuidle_device_kobj { + struct cpuidle_device *dev; + struct completion kobj_unregister; + struct kobject kobj; +}; + +struct cpuidle_attr { + struct attribute attr; + ssize_t (*show)(struct cpuidle_device *, char *); + ssize_t (*store)(struct cpuidle_device *, const char *, size_t); +}; + +struct cpuidle_state_attr { + struct attribute attr; + ssize_t (*show)(struct cpuidle_state *, struct cpuidle_state_usage *, char *); + ssize_t (*store)(struct cpuidle_state *, struct cpuidle_state_usage *, const char *, size_t); +}; + +enum dmi_device_type { + DMI_DEV_TYPE_ANY = 0, + DMI_DEV_TYPE_OTHER = 1, + DMI_DEV_TYPE_UNKNOWN = 2, + DMI_DEV_TYPE_VIDEO = 3, + DMI_DEV_TYPE_SCSI = 4, + DMI_DEV_TYPE_ETHERNET = 5, + DMI_DEV_TYPE_TOKENRING = 6, + DMI_DEV_TYPE_SOUND = 7, + DMI_DEV_TYPE_PATA = 8, + DMI_DEV_TYPE_SATA = 9, + DMI_DEV_TYPE_SAS = 10, + DMI_DEV_TYPE_IPMI = -1, + DMI_DEV_TYPE_OEM_STRING = -2, + DMI_DEV_TYPE_DEV_ONBOARD = -3, + DMI_DEV_TYPE_DEV_SLOT = -4, +}; + +enum dmi_entry_type { + DMI_ENTRY_BIOS = 0, + DMI_ENTRY_SYSTEM = 1, + DMI_ENTRY_BASEBOARD = 2, + DMI_ENTRY_CHASSIS = 3, + DMI_ENTRY_PROCESSOR = 4, + DMI_ENTRY_MEM_CONTROLLER = 5, + DMI_ENTRY_MEM_MODULE = 6, + DMI_ENTRY_CACHE = 7, + DMI_ENTRY_PORT_CONNECTOR = 8, + DMI_ENTRY_SYSTEM_SLOT = 9, + DMI_ENTRY_ONBOARD_DEVICE = 10, + DMI_ENTRY_OEMSTRINGS = 11, + DMI_ENTRY_SYSCONF = 12, + DMI_ENTRY_BIOS_LANG = 13, + DMI_ENTRY_GROUP_ASSOC = 14, + DMI_ENTRY_SYSTEM_EVENT_LOG = 15, + DMI_ENTRY_PHYS_MEM_ARRAY = 16, + DMI_ENTRY_MEM_DEVICE = 17, + DMI_ENTRY_32_MEM_ERROR = 18, + DMI_ENTRY_MEM_ARRAY_MAPPED_ADDR = 19, + DMI_ENTRY_MEM_DEV_MAPPED_ADDR = 20, + DMI_ENTRY_BUILTIN_POINTING_DEV = 21, + DMI_ENTRY_PORTABLE_BATTERY = 22, + DMI_ENTRY_SYSTEM_RESET = 23, + DMI_ENTRY_HW_SECURITY = 24, + DMI_ENTRY_SYSTEM_POWER_CONTROLS = 25, + DMI_ENTRY_VOLTAGE_PROBE = 26, + DMI_ENTRY_COOLING_DEV = 27, + DMI_ENTRY_TEMP_PROBE = 28, + DMI_ENTRY_ELECTRICAL_CURRENT_PROBE = 29, + DMI_ENTRY_OOB_REMOTE_ACCESS = 30, + DMI_ENTRY_BIS_ENTRY = 31, + DMI_ENTRY_SYSTEM_BOOT = 32, + DMI_ENTRY_MGMT_DEV = 33, + DMI_ENTRY_MGMT_DEV_COMPONENT = 34, + DMI_ENTRY_MGMT_DEV_THRES = 35, + DMI_ENTRY_MEM_CHANNEL = 36, + DMI_ENTRY_IPMI_DEV = 37, + DMI_ENTRY_SYS_POWER_SUPPLY = 38, + DMI_ENTRY_ADDITIONAL = 39, + DMI_ENTRY_ONBOARD_DEV_EXT = 40, + DMI_ENTRY_MGMT_CONTROLLER_HOST = 41, + DMI_ENTRY_INACTIVE = 126, + DMI_ENTRY_END_OF_TABLE = 127, +}; + +struct dmi_header { + u8 type; + u8 length; + u16 handle; +}; + +struct dmi_device { + struct list_head list; + int type; + const char *name; + void *device_data; +}; + +struct dmi_dev_onboard { + struct dmi_device dev; + int instance; + int segment; + int bus; + int devfn; +}; + +struct dmi_memdev_info { + const char *device; + const char *bank; + u64 size; + u16 handle; + u8 type; +}; + +struct firmware_map_entry { + u64 start; + u64 end; + const char *type; + struct list_head list; + struct kobject kobj; +}; + +struct memmap_attribute { + struct attribute attr; + ssize_t (*show)(struct firmware_map_entry *, char *); +}; + +typedef efi_status_t efi_query_variable_store_t(u32, long unsigned int, bool); + +struct efivar_operations { + efi_get_variable_t *get_variable; + efi_get_next_variable_t *get_next_variable; + efi_set_variable_t *set_variable; + efi_set_variable_t *set_variable_nonblocking; + efi_query_variable_store_t *query_variable_store; + efi_query_variable_info_t *query_variable_info; +}; + +struct efivars { + struct kset *kset; + const struct efivar_operations *ops; +}; + +typedef u16 ucs2_char_t; + +struct linux_efi_tpm_eventlog { + u32 size; + u32 final_events_preboot_size; + u8 version; + u8 log[0]; +}; + +struct efi_tcg2_final_events_table { + u64 version; + u64 nr_events; + u8 events[0]; +}; + +enum tcpa_event_types { + PREBOOT = 0, + POST_CODE = 1, + UNUSED = 2, + NO_ACTION = 3, + SEPARATOR = 4, + ACTION = 5, + EVENT_TAG = 6, + SCRTM_CONTENTS = 7, + SCRTM_VERSION = 8, + CPU_MICROCODE = 9, + PLATFORM_CONFIG_FLAGS = 10, + TABLE_OF_DEVICES = 11, + COMPACT_HASH = 12, + IPL = 13, + IPL_PARTITION_DATA = 14, + NONHOST_CODE = 15, + NONHOST_CONFIG = 16, + NONHOST_INFO = 17, +}; + +struct tcg_event_field { + u32 event_size; + u8 event[0]; +}; + +struct tcg_pcr_event2_head { + u32 pcr_idx; + u32 event_type; + u32 count; + struct tpm_digest digests[0]; +}; + +typedef u64 efi_physical_addr_t; + +typedef struct { + u64 length; + u64 data; +} efi_capsule_block_desc_t; + +struct ovmf_debug_log_header { + u64 magic1; + u64 magic2; + u64 hdr_size; + u64 log_size; + u64 lock; + u64 head_off; + u64 tail_off; + u64 truncated; + u8 fw_version[128]; +}; + +struct cper_sec_proc_ia { + u64 validation_bits; + u64 lapic_id; + u8 cpuid[48]; +}; + +struct cper_ia_err_info { + guid_t err_type; + u64 validation_bits; + u64 check_info; + u64 target_id; + u64 requestor_id; + u64 responder_id; + u64 ip; +}; + +enum err_types { + ERR_TYPE_CACHE = 0, + ERR_TYPE_TLB = 1, + ERR_TYPE_BUS = 2, + ERR_TYPE_MS = 3, + N_ERR_TYPES = 4, +}; + +struct hid_device_id { + __u16 bus; + __u16 group; + __u32 vendor; + __u32 product; + kernel_ulong_t driver_data; +}; + +enum hid_report_type { + HID_INPUT_REPORT = 0, + HID_OUTPUT_REPORT = 1, + HID_FEATURE_REPORT = 2, + HID_REPORT_TYPES = 3, +}; + +enum hid_class_request { + HID_REQ_GET_REPORT = 1, + HID_REQ_GET_IDLE = 2, + HID_REQ_GET_PROTOCOL = 3, + HID_REQ_SET_REPORT = 9, + HID_REQ_SET_IDLE = 10, + HID_REQ_SET_PROTOCOL = 11, +}; + +struct hid_device; + +struct hid_bpf_ctx { + struct hid_device *hid; + __u32 allocated_size; + union { + __s32 retval; + __s32 size; + }; +}; + +enum hid_type { + HID_TYPE_OTHER = 0, + HID_TYPE_USBMOUSE = 1, + HID_TYPE_USBNONE = 2, +}; + +struct hid_report; + +struct hid_report_enum { + unsigned int numbered; + struct list_head report_list; + struct hid_report *report_id_hash[256]; +}; + +struct hid_bpf_ops; + +struct hid_bpf { + u8 *device_data; + u32 allocated_data; + bool destroyed; + struct hid_bpf_ops *rdesc_ops; + struct list_head prog_list; + struct mutex prog_list_lock; + struct srcu_struct srcu; +}; + +struct hid_collection; + +struct hid_driver; + +struct hid_ll_driver; + +struct hid_field; + +struct hid_usage; + +struct hid_device { + const __u8 *dev_rdesc; + const __u8 *bpf_rdesc; + const __u8 *rdesc; + unsigned int dev_rsize; + unsigned int bpf_rsize; + unsigned int rsize; + unsigned int collection_size; + struct hid_collection *collection; + unsigned int maxcollection; + unsigned int maxapplication; + __u16 bus; + __u16 group; + __u32 vendor; + __u32 product; + __u32 version; + enum hid_type type; + unsigned int country; + struct hid_report_enum report_enum[3]; + struct work_struct led_work; + struct semaphore driver_input_lock; + struct device dev; + struct hid_driver *driver; + void *devres_group_id; + const struct hid_ll_driver *ll_driver; + struct mutex ll_open_lock; + unsigned int ll_open_count; + long unsigned int status; + unsigned int claimed; + unsigned int quirks; + unsigned int initial_quirks; + bool io_started; + struct list_head inputs; + void *hiddev; + void *hidraw; + char name[128]; + char phys[64]; + char uniq[64]; + void *driver_data; + int (*ff_init)(struct hid_device *); + int (*hiddev_connect)(struct hid_device *, unsigned int); + void (*hiddev_disconnect)(struct hid_device *); + void (*hiddev_hid_event)(struct hid_device *, struct hid_field *, struct hid_usage *, __s32); + void (*hiddev_report_event)(struct hid_device *, struct hid_report *); + short unsigned int debug; + struct dentry *debug_dir; + struct dentry *debug_rdesc; + struct dentry *debug_events; + struct list_head debug_list; + spinlock_t debug_list_lock; + wait_queue_head_t debug_wait; + struct kref ref; + unsigned int id; + struct hid_bpf bpf; +}; + +struct hid_ops { + struct hid_report * (*hid_get_report)(struct hid_report_enum *, const u8 *); + int (*hid_hw_raw_request)(struct hid_device *, unsigned char, __u8 *, size_t, enum hid_report_type, enum hid_class_request, u64, bool); + int (*hid_hw_output_report)(struct hid_device *, __u8 *, size_t, u64, bool); + int (*hid_input_report)(struct hid_device *, enum hid_report_type, u8 *, u32, int, u64, bool, bool); + struct module *owner; + const struct bus_type *bus_type; +}; + +struct hid_field_entry; + +struct hid_report { + struct list_head list; + struct list_head hidinput_list; + struct list_head field_entry_list; + unsigned int id; + enum hid_report_type type; + unsigned int application; + struct hid_field *field[256]; + struct hid_field_entry *field_entries; + unsigned int maxfield; + unsigned int size; + struct hid_device *device; + bool tool_active; + unsigned int tool; +}; + +struct hid_bpf_ops { + int hid_id; + u32 flags; + struct list_head list; + int (*hid_device_event)(struct hid_bpf_ctx *, enum hid_report_type, u64); + int (*hid_rdesc_fixup)(struct hid_bpf_ctx *); + int (*hid_hw_request)(struct hid_bpf_ctx *, unsigned char, enum hid_report_type, enum hid_class_request, u64); + int (*hid_hw_output_report)(struct hid_bpf_ctx *, u64); + struct hid_device *hdev; +}; + +struct hid_collection { + int parent_idx; + unsigned int type; + unsigned int usage; + unsigned int level; +}; + +struct hid_usage { + unsigned int hid; + unsigned int collection_index; + unsigned int usage_index; + __s8 resolution_multiplier; + __s8 wheel_factor; + __u16 code; + __u8 type; + __s16 hat_min; + __s16 hat_max; + __s16 hat_dir; + __s16 wheel_accumulated; +}; + +struct hid_input; + +struct hid_field { + unsigned int physical; + unsigned int logical; + unsigned int application; + struct hid_usage *usage; + unsigned int maxusage; + unsigned int flags; + unsigned int report_offset; + unsigned int report_size; + unsigned int report_count; + unsigned int report_type; + __s32 *value; + __s32 *new_value; + __s32 *usages_priorities; + __s32 logical_minimum; + __s32 logical_maximum; + __s32 physical_minimum; + __s32 physical_maximum; + __s32 unit_exponent; + unsigned int unit; + bool ignored; + struct hid_report *report; + unsigned int index; + struct hid_input *hidinput; + __u16 dpad; + unsigned int slot_idx; +}; + +struct hid_input { + struct list_head list; + struct hid_report *report; + struct input_dev *input; + const char *name; + struct list_head reports; + unsigned int application; + bool registered; +}; + +struct hid_field_entry { + struct list_head list; + struct hid_field *field; + unsigned int index; + __s32 priority; +}; + +struct hid_report_id; + +struct hid_usage_id; + +struct hid_driver { + char *name; + const struct hid_device_id *id_table; + struct list_head dyn_list; + spinlock_t dyn_lock; + bool (*match)(struct hid_device *, bool); + int (*probe)(struct hid_device *, const struct hid_device_id *); + void (*remove)(struct hid_device *); + const struct hid_report_id *report_table; + int (*raw_event)(struct hid_device *, struct hid_report *, u8 *, int); + const struct hid_usage_id *usage_table; + int (*event)(struct hid_device *, struct hid_field *, struct hid_usage *, __s32); + void (*report)(struct hid_device *, struct hid_report *); + const __u8 * (*report_fixup)(struct hid_device *, __u8 *, unsigned int *); + int (*input_mapping)(struct hid_device *, struct hid_input *, struct hid_field *, struct hid_usage *, long unsigned int **, int *); + int (*input_mapped)(struct hid_device *, struct hid_input *, struct hid_field *, struct hid_usage *, long unsigned int **, int *); + int (*input_configured)(struct hid_device *, struct hid_input *); + void (*feature_mapping)(struct hid_device *, struct hid_field *, struct hid_usage *); + int (*suspend)(struct hid_device *, pm_message_t); + int (*resume)(struct hid_device *); + int (*reset_resume)(struct hid_device *); + void (*on_hid_hw_open)(struct hid_device *); + void (*on_hid_hw_close)(struct hid_device *); + struct device_driver driver; +}; + +struct hid_ll_driver { + int (*start)(struct hid_device *); + void (*stop)(struct hid_device *); + int (*open)(struct hid_device *); + void (*close)(struct hid_device *); + int (*power)(struct hid_device *, int); + int (*parse)(struct hid_device *); + void (*request)(struct hid_device *, struct hid_report *, int); + int (*wait)(struct hid_device *); + int (*raw_request)(struct hid_device *, unsigned char, __u8 *, size_t, unsigned char, int); + int (*output_report)(struct hid_device *, __u8 *, size_t); + int (*idle)(struct hid_device *, int, int, int); + bool (*may_wakeup)(struct hid_device *); + unsigned int max_buffer_size; +}; + +struct hid_report_id { + __u32 report_type; +}; + +struct hid_usage_id { + __u32 usage_hid; + __u32 usage_type; + __u32 usage_code; +}; + +struct hid_bpf_ctx_kern { + struct hid_bpf_ctx ctx; + u8 *data; + bool from_bpf; +}; + +struct hv_ring_buffer_debug_info { + u32 current_interrupt_mask; + u32 current_read_index; + u32 current_write_index; + u32 bytes_avail_toread; + u32 bytes_avail_towrite; +}; + +enum delay { + INTERRUPT_DELAY = 0, + MESSAGE_DELAY = 1, +}; + +enum hv_vss_op { + VSS_OP_CREATE = 0, + VSS_OP_DELETE = 1, + VSS_OP_HOT_BACKUP = 2, + VSS_OP_GET_DM_INFO = 3, + VSS_OP_BU_COMPLETE = 4, + VSS_OP_FREEZE = 5, + VSS_OP_THAW = 6, + VSS_OP_AUTO_RECOVER = 7, + VSS_OP_COUNT = 8, +}; + +struct hv_vss_hdr { + __u8 operation; + __u8 reserved[7]; +}; + +struct hv_vss_check_feature { + __u32 flags; +}; + +struct hv_vss_check_dm_info { + __u32 flags; +}; + +struct hv_vss_msg { + union { + struct hv_vss_hdr vss_hdr; + int error; + }; + union { + struct hv_vss_check_feature vss_cf; + struct hv_vss_check_dm_info dm_info; + }; +}; + +struct hv_util_service { + u8 *recv_buffer; + void *channel; + void (*util_cb)(void *); + int (*util_init)(struct hv_util_service *); + int (*util_init_transport)(void); + void (*util_deinit)(void); + int (*util_pre_suspend)(void); + int (*util_pre_resume)(void); +}; + +struct ic_version { + u16 major; + u16 minor; +}; + +struct icmsg_hdr { + struct ic_version icverframe; + u16 icmsgtype; + struct ic_version icvermsg; + u16 icmsgsize; + u32 status; + u8 ictransaction_id; + u8 icflags; + u8 reserved[2]; +}; + +enum hvutil_device_state { + HVUTIL_DEVICE_INIT = 0, + HVUTIL_READY = 1, + HVUTIL_HOSTMSG_RECEIVED = 2, + HVUTIL_USERSPACE_REQ = 3, + HVUTIL_USERSPACE_RECV = 4, + HVUTIL_DEVICE_DYING = 5, +}; + +struct hvutil_transport { + int mode; + struct file_operations fops; + struct miscdevice mdev; + struct cb_id cn_id; + struct list_head list; + int (*on_msg)(void *, int); + void (*on_reset)(void); + void (*on_read)(void); + u8 *outmsg; + int outmsg_len; + wait_queue_head_t outmsg_q; + struct mutex lock; + struct completion release; +}; + +typedef long unsigned int ulong; + +struct hv_u128 { + u64 low_part; + u64 high_part; +}; + +union hv_explicit_suspend_register { + u64 as_uint64; + struct { + u64 suspended: 1; + u64 reserved: 63; + }; +}; + +union hv_intercept_suspend_register { + u64 as_uint64; + struct { + u64 suspended: 1; + u64 reserved: 63; + }; +}; + +union hv_dispatch_suspend_register { + u64 as_uint64; + struct { + u64 suspended: 1; + u64 reserved: 63; + }; +}; + +union hv_arm64_pending_synthetic_exception_event { + u64 as_uint64[2]; + struct { + u8 event_pending: 1; + u8 event_type: 3; + u8 reserved: 4; + u8 rsvd[3]; + u32 exception_type; + u64 context; + }; +}; + +union hv_x64_interrupt_state_register { + u64 as_uint64; + struct { + u64 interrupt_shadow: 1; + u64 nmi_masked: 1; + u64 reserved: 62; + }; +}; + +union hv_x64_pending_interruption_register { + u64 as_uint64; + struct { + u32 interruption_pending: 1; + u32 interruption_type: 3; + u32 deliver_error_code: 1; + u32 instruction_length: 4; + u32 nested_event: 1; + u32 reserved: 6; + u32 interruption_vector: 16; + u32 error_code; + }; +}; + +union hv_register_value { + struct hv_u128 reg128; + u64 reg64; + u32 reg32; + u16 reg16; + u8 reg8; + struct hv_x64_segment_register segment; + struct hv_x64_table_register table; + union hv_explicit_suspend_register explicit_suspend; + union hv_intercept_suspend_register intercept_suspend; + union hv_dispatch_suspend_register dispatch_suspend; + union hv_x64_interrupt_state_register interrupt_state; + union hv_x64_pending_interruption_register pending_interruption; + union hv_arm64_pending_synthetic_exception_event pending_synthetic_exception_event; +}; + +struct hv_register_assoc { + u32 name; + u32 reserved1; + u64 reserved2; + union hv_register_value value; +}; + +struct hv_input_get_vp_registers { + u64 partition_id; + u32 vp_index; + union hv_input_vtl input_vtl; + u8 rsvd_z8; + u16 rsvd_z16; + u32 names[0]; +}; + +struct hv_input_set_vp_registers { + u64 partition_id; + u32 vp_index; + union hv_input_vtl input_vtl; + u8 rsvd_z8; + u16 rsvd_z16; + struct hv_register_assoc elements[0]; +}; + +struct hv_input_get_partition_property { + u64 partition_id; + u32 property_code; + u32 padding; +}; + +struct hv_output_get_partition_property { + u64 property_value; +}; + +struct srcu_notifier_head { + struct mutex mutex; + struct srcu_usage srcuu; + struct srcu_struct srcu; + struct notifier_block *head; +}; + +enum devfreq_timer { + DEVFREQ_TIMER_DEFERRABLE = 0, + DEVFREQ_TIMER_DELAYED = 1, + DEVFREQ_TIMER_NUM = 2, +}; + +struct devfreq_dev_status { + long unsigned int total_time; + long unsigned int busy_time; + long unsigned int current_frequency; + void *private_data; +}; + +struct devfreq_dev_profile { + long unsigned int initial_freq; + unsigned int polling_ms; + enum devfreq_timer timer; + int (*target)(struct device *, long unsigned int *, u32); + int (*get_dev_status)(struct device *, struct devfreq_dev_status *); + int (*get_cur_freq)(struct device *, long unsigned int *); + void (*exit)(struct device *); + long unsigned int *freq_table; + unsigned int max_state; + bool is_cooling_device; + const struct attribute_group **dev_groups; +}; + +struct devfreq_stats { + unsigned int total_trans; + unsigned int *trans_table; + u64 *time_in_state; + u64 last_update; +}; + +struct devfreq_governor; + +struct opp_table; + +struct devfreq { + struct list_head node; + struct mutex lock; + struct device dev; + struct devfreq_dev_profile *profile; + const struct devfreq_governor *governor; + struct opp_table *opp_table; + struct notifier_block nb; + struct delayed_work work; + long unsigned int *freq_table; + unsigned int max_state; + long unsigned int previous_freq; + struct devfreq_dev_status last_status; + void *data; + void *governor_data; + struct dev_pm_qos_request user_min_freq_req; + struct dev_pm_qos_request user_max_freq_req; + long unsigned int scaling_min_freq; + long unsigned int scaling_max_freq; + bool stop_polling; + long unsigned int suspend_freq; + long unsigned int resume_freq; + atomic_t suspend_count; + struct devfreq_stats stats; + struct srcu_notifier_head transition_notifier_list; + struct thermal_cooling_device *cdev; + struct notifier_block nb_min; + struct notifier_block nb_max; +}; + +struct devfreq_governor { + struct list_head node; + const char name[16]; + const u64 attrs; + const u64 flags; + int (*get_target_freq)(struct devfreq *, long unsigned int *); + int (*event_handler)(struct devfreq *, unsigned int, void *); +}; + +struct devfreq_freqs { + long unsigned int old; + long unsigned int new; +}; + +enum devfreq_parent_dev_type { + DEVFREQ_PARENT_DEV = 0, + CPUFREQ_PARENT_DEV = 1, +}; + +struct devfreq_passive_data { + struct devfreq *parent; + int (*get_target_freq)(struct devfreq *, long unsigned int *); + enum devfreq_parent_dev_type parent_type; + struct devfreq *this; + struct notifier_block nb; + struct list_head cpu_data_list; +}; + +struct devfreq_cpu_data { + struct list_head node; + struct device *dev; + unsigned int first_cpu; + struct opp_table *opp_table; + unsigned int cur_freq; + unsigned int min_freq; + unsigned int max_freq; +}; + +struct idle_inject_thread { + struct task_struct *tsk; + int should_run; +}; + +struct idle_inject_device { + struct hrtimer timer; + unsigned int idle_duration_us; + unsigned int run_duration_us; + unsigned int latency_us; + bool (*update)(void); + long unsigned int cpumask[0]; +}; + +struct nvmem_cell_lookup { + const char *nvmem_name; + const char *cell_name; + const char *dev_id; + const char *con_id; + struct list_head node; +}; + +enum { + NVMEM_ADD = 1, + NVMEM_REMOVE = 2, + NVMEM_CELL_ADD = 3, + NVMEM_CELL_REMOVE = 4, + NVMEM_LAYOUT_ADD = 5, + NVMEM_LAYOUT_REMOVE = 6, +}; + +struct nvmem_device { + struct module *owner; + struct device dev; + struct list_head node; + int stride; + int word_size; + int id; + struct kref refcnt; + size_t size; + bool read_only; + bool root_only; + int flags; + enum nvmem_type type; + struct bin_attribute eeprom; + struct device *base_dev; + struct list_head cells; + void (*fixup_dt_cell_info)(struct nvmem_device *, struct nvmem_cell_info *); + const struct nvmem_keepout *keepout; + unsigned int nkeepout; + nvmem_reg_read_t reg_read; + nvmem_reg_write_t reg_write; + struct gpio_desc *wp_gpio; + struct nvmem_layout *layout; + void *priv; + bool sysfs_cells_populated; +}; + +struct nvmem_cell_entry { + const char *name; + int offset; + size_t raw_len; + int bytes; + int bit_offset; + int nbits; + nvmem_cell_post_process_t read_post_process; + void *priv; + struct device_node *np; + struct nvmem_device *nvmem; + struct list_head node; +}; + +struct nvmem_cell { + struct nvmem_cell_entry *entry; + const char *id; + int index; +}; + +enum dpll_pin_type { + DPLL_PIN_TYPE_MUX = 1, + DPLL_PIN_TYPE_EXT = 2, + DPLL_PIN_TYPE_SYNCE_ETH_PORT = 3, + DPLL_PIN_TYPE_INT_OSCILLATOR = 4, + DPLL_PIN_TYPE_GNSS = 5, + __DPLL_PIN_TYPE_MAX = 6, + DPLL_PIN_TYPE_MAX = 5, +}; + +struct dpll_pin_phase_adjust_range { + s32 min; + s32 max; +}; + +struct dpll_pin_frequency; + +struct dpll_pin_properties { + const char *board_label; + const char *panel_label; + const char *package_label; + enum dpll_pin_type type; + long unsigned int capabilities; + u32 freq_supported_num; + struct dpll_pin_frequency *freq_supported; + struct dpll_pin_phase_adjust_range phase_range; +}; + +struct dpll_pin { + u32 id; + u32 pin_idx; + u64 clock_id; + struct module *module; + struct xarray dpll_refs; + struct xarray parent_refs; + struct xarray ref_sync_pins; + struct dpll_pin_properties prop; + refcount_t refcount; + struct callback_head rcu; +}; + +enum netlink_validation { + NL_VALIDATE_LIBERAL = 0, + NL_VALIDATE_TRAILING = 1, + NL_VALIDATE_MAXTYPE = 2, + NL_VALIDATE_UNSPEC = 4, + NL_VALIDATE_STRICT_ATTRS = 8, + NL_VALIDATE_NESTED = 16, +}; + +enum dpll_mode { + DPLL_MODE_MANUAL = 1, + DPLL_MODE_AUTOMATIC = 2, + __DPLL_MODE_MAX = 3, + DPLL_MODE_MAX = 2, +}; + +enum dpll_lock_status { + DPLL_LOCK_STATUS_UNLOCKED = 1, + DPLL_LOCK_STATUS_LOCKED = 2, + DPLL_LOCK_STATUS_LOCKED_HO_ACQ = 3, + DPLL_LOCK_STATUS_HOLDOVER = 4, + __DPLL_LOCK_STATUS_MAX = 5, + DPLL_LOCK_STATUS_MAX = 4, +}; + +enum dpll_lock_status_error { + DPLL_LOCK_STATUS_ERROR_NONE = 1, + DPLL_LOCK_STATUS_ERROR_UNDEFINED = 2, + DPLL_LOCK_STATUS_ERROR_MEDIA_DOWN = 3, + DPLL_LOCK_STATUS_ERROR_FRACTIONAL_FREQUENCY_OFFSET_TOO_HIGH = 4, + __DPLL_LOCK_STATUS_ERROR_MAX = 5, + DPLL_LOCK_STATUS_ERROR_MAX = 4, +}; + +enum dpll_clock_quality_level { + DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_PRC = 1, + DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_SSU_A = 2, + DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_SSU_B = 3, + DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_EEC1 = 4, + DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_PRTC = 5, + DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_EPRTC = 6, + DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_EEEC = 7, + DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_EPRC = 8, + __DPLL_CLOCK_QUALITY_LEVEL_MAX = 9, + DPLL_CLOCK_QUALITY_LEVEL_MAX = 8, +}; + +enum dpll_type { + DPLL_TYPE_PPS = 1, + DPLL_TYPE_EEC = 2, + __DPLL_TYPE_MAX = 3, + DPLL_TYPE_MAX = 2, +}; + +enum dpll_pin_direction { + DPLL_PIN_DIRECTION_INPUT = 1, + DPLL_PIN_DIRECTION_OUTPUT = 2, + __DPLL_PIN_DIRECTION_MAX = 3, + DPLL_PIN_DIRECTION_MAX = 2, +}; + +enum dpll_pin_state { + DPLL_PIN_STATE_CONNECTED = 1, + DPLL_PIN_STATE_DISCONNECTED = 2, + DPLL_PIN_STATE_SELECTABLE = 3, + __DPLL_PIN_STATE_MAX = 4, + DPLL_PIN_STATE_MAX = 3, +}; + +enum dpll_pin_capabilities { + DPLL_PIN_CAPABILITIES_DIRECTION_CAN_CHANGE = 1, + DPLL_PIN_CAPABILITIES_PRIORITY_CAN_CHANGE = 2, + DPLL_PIN_CAPABILITIES_STATE_CAN_CHANGE = 4, +}; + +enum dpll_feature_state { + DPLL_FEATURE_STATE_DISABLE = 0, + DPLL_FEATURE_STATE_ENABLE = 1, +}; + +enum dpll_a { + DPLL_A_ID = 1, + DPLL_A_MODULE_NAME = 2, + DPLL_A_PAD = 3, + DPLL_A_CLOCK_ID = 4, + DPLL_A_MODE = 5, + DPLL_A_MODE_SUPPORTED = 6, + DPLL_A_LOCK_STATUS = 7, + DPLL_A_TEMP = 8, + DPLL_A_TYPE = 9, + DPLL_A_LOCK_STATUS_ERROR = 10, + DPLL_A_CLOCK_QUALITY_LEVEL = 11, + DPLL_A_PHASE_OFFSET_MONITOR = 12, + __DPLL_A_MAX = 13, + DPLL_A_MAX = 12, +}; + +enum dpll_a_pin { + DPLL_A_PIN_ID = 1, + DPLL_A_PIN_PARENT_ID = 2, + DPLL_A_PIN_MODULE_NAME = 3, + DPLL_A_PIN_PAD = 4, + DPLL_A_PIN_CLOCK_ID = 5, + DPLL_A_PIN_BOARD_LABEL = 6, + DPLL_A_PIN_PANEL_LABEL = 7, + DPLL_A_PIN_PACKAGE_LABEL = 8, + DPLL_A_PIN_TYPE = 9, + DPLL_A_PIN_DIRECTION = 10, + DPLL_A_PIN_FREQUENCY = 11, + DPLL_A_PIN_FREQUENCY_SUPPORTED = 12, + DPLL_A_PIN_FREQUENCY_MIN = 13, + DPLL_A_PIN_FREQUENCY_MAX = 14, + DPLL_A_PIN_PRIO = 15, + DPLL_A_PIN_STATE = 16, + DPLL_A_PIN_CAPABILITIES = 17, + DPLL_A_PIN_PARENT_DEVICE = 18, + DPLL_A_PIN_PARENT_PIN = 19, + DPLL_A_PIN_PHASE_ADJUST_MIN = 20, + DPLL_A_PIN_PHASE_ADJUST_MAX = 21, + DPLL_A_PIN_PHASE_ADJUST = 22, + DPLL_A_PIN_PHASE_OFFSET = 23, + DPLL_A_PIN_FRACTIONAL_FREQUENCY_OFFSET = 24, + DPLL_A_PIN_ESYNC_FREQUENCY = 25, + DPLL_A_PIN_ESYNC_FREQUENCY_SUPPORTED = 26, + DPLL_A_PIN_ESYNC_PULSE = 27, + DPLL_A_PIN_REFERENCE_SYNC = 28, + __DPLL_A_PIN_MAX = 29, + DPLL_A_PIN_MAX = 28, +}; + +enum dpll_cmd { + DPLL_CMD_DEVICE_ID_GET = 1, + DPLL_CMD_DEVICE_GET = 2, + DPLL_CMD_DEVICE_SET = 3, + DPLL_CMD_DEVICE_CREATE_NTF = 4, + DPLL_CMD_DEVICE_DELETE_NTF = 5, + DPLL_CMD_DEVICE_CHANGE_NTF = 6, + DPLL_CMD_PIN_ID_GET = 7, + DPLL_CMD_PIN_GET = 8, + DPLL_CMD_PIN_SET = 9, + DPLL_CMD_PIN_CREATE_NTF = 10, + DPLL_CMD_PIN_DELETE_NTF = 11, + DPLL_CMD_PIN_CHANGE_NTF = 12, + __DPLL_CMD_MAX = 13, + DPLL_CMD_MAX = 12, +}; + +struct dpll_device; + +struct dpll_device_ops { + int (*mode_get)(const struct dpll_device *, void *, enum dpll_mode *, struct netlink_ext_ack *); + int (*lock_status_get)(const struct dpll_device *, void *, enum dpll_lock_status *, enum dpll_lock_status_error *, struct netlink_ext_ack *); + int (*temp_get)(const struct dpll_device *, void *, s32 *, struct netlink_ext_ack *); + int (*clock_quality_level_get)(const struct dpll_device *, void *, long unsigned int *, struct netlink_ext_ack *); + int (*phase_offset_monitor_set)(const struct dpll_device *, void *, enum dpll_feature_state, struct netlink_ext_ack *); + int (*phase_offset_monitor_get)(const struct dpll_device *, void *, enum dpll_feature_state *, struct netlink_ext_ack *); +}; + +struct dpll_device { + u32 id; + u32 device_idx; + u64 clock_id; + struct module *module; + enum dpll_type type; + struct xarray pin_refs; + refcount_t refcount; + struct list_head registration_list; +}; + +struct dpll_pin_esync; + +struct dpll_pin_ops { + int (*frequency_set)(const struct dpll_pin *, void *, const struct dpll_device *, void *, const u64, struct netlink_ext_ack *); + int (*frequency_get)(const struct dpll_pin *, void *, const struct dpll_device *, void *, u64 *, struct netlink_ext_ack *); + int (*direction_set)(const struct dpll_pin *, void *, const struct dpll_device *, void *, const enum dpll_pin_direction, struct netlink_ext_ack *); + int (*direction_get)(const struct dpll_pin *, void *, const struct dpll_device *, void *, enum dpll_pin_direction *, struct netlink_ext_ack *); + int (*state_on_pin_get)(const struct dpll_pin *, void *, const struct dpll_pin *, void *, enum dpll_pin_state *, struct netlink_ext_ack *); + int (*state_on_dpll_get)(const struct dpll_pin *, void *, const struct dpll_device *, void *, enum dpll_pin_state *, struct netlink_ext_ack *); + int (*state_on_pin_set)(const struct dpll_pin *, void *, const struct dpll_pin *, void *, const enum dpll_pin_state, struct netlink_ext_ack *); + int (*state_on_dpll_set)(const struct dpll_pin *, void *, const struct dpll_device *, void *, const enum dpll_pin_state, struct netlink_ext_ack *); + int (*prio_get)(const struct dpll_pin *, void *, const struct dpll_device *, void *, u32 *, struct netlink_ext_ack *); + int (*prio_set)(const struct dpll_pin *, void *, const struct dpll_device *, void *, const u32, struct netlink_ext_ack *); + int (*phase_offset_get)(const struct dpll_pin *, void *, const struct dpll_device *, void *, s64 *, struct netlink_ext_ack *); + int (*phase_adjust_get)(const struct dpll_pin *, void *, const struct dpll_device *, void *, s32 *, struct netlink_ext_ack *); + int (*phase_adjust_set)(const struct dpll_pin *, void *, const struct dpll_device *, void *, const s32, struct netlink_ext_ack *); + int (*ffo_get)(const struct dpll_pin *, void *, const struct dpll_device *, void *, s64 *, struct netlink_ext_ack *); + int (*esync_set)(const struct dpll_pin *, void *, const struct dpll_device *, void *, u64, struct netlink_ext_ack *); + int (*esync_get)(const struct dpll_pin *, void *, const struct dpll_device *, void *, struct dpll_pin_esync *, struct netlink_ext_ack *); + int (*ref_sync_set)(const struct dpll_pin *, void *, const struct dpll_pin *, void *, const enum dpll_pin_state, struct netlink_ext_ack *); + int (*ref_sync_get)(const struct dpll_pin *, void *, const struct dpll_pin *, void *, enum dpll_pin_state *, struct netlink_ext_ack *); +}; + +struct dpll_pin_esync { + u64 freq; + const struct dpll_pin_frequency *range; + u8 range_num; + u8 pulse; +}; + +struct dpll_pin_frequency { + u64 min; + u64 max; +}; + +struct dpll_pin_ref { + union { + struct dpll_device *dpll; + struct dpll_pin *pin; + }; + struct list_head registration_list; + refcount_t refcount; +}; + +struct dpll_dump_ctx { + long unsigned int idx; +}; + +struct minmax_sample { + u32 t; + u32 v; +}; + +struct minmax { + struct minmax_sample s[3]; +}; + +struct fastopen_queue { + struct request_sock *rskq_rst_head; + struct request_sock *rskq_rst_tail; + spinlock_t lock; + int qlen; + int max_qlen; + struct tcp_fastopen_context *ctx; +}; + +struct request_sock_queue { + spinlock_t rskq_lock; + u8 rskq_defer_accept; + u32 synflood_warned; + atomic_t qlen; + atomic_t young; + struct request_sock *rskq_accept_head; + struct request_sock *rskq_accept_tail; + struct fastopen_queue fastopenq; +}; + +struct inet_request_sock { + struct request_sock req; + u16 snd_wscale: 4; + u16 rcv_wscale: 4; + u16 tstamp_ok: 1; + u16 sack_ok: 1; + u16 wscale_ok: 1; + u16 ecn_ok: 1; + u16 acked: 1; + u16 no_srccheck: 1; + u16 smc_ok: 1; + u32 ir_mark; + union { + struct ip_options_rcu *ireq_opt; + struct { + struct ipv6_txoptions *ipv6_opt; + struct sk_buff *pktopts; + }; + }; +}; + +struct inet_connection_sock_af_ops { + int (*queue_xmit)(struct sock *, struct sk_buff *, struct flowi *); + void (*send_check)(struct sock *, struct sk_buff *); + int (*rebuild_header)(struct sock *); + void (*sk_rx_dst_set)(struct sock *, const struct sk_buff *); + int (*conn_request)(struct sock *, struct sk_buff *); + struct sock * (*syn_recv_sock)(const struct sock *, struct sk_buff *, struct request_sock *, struct dst_entry *, struct request_sock *, bool *, void (*)(struct sock *, const struct sock *)); + u16 net_header_len; + int (*setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); + int (*getsockopt)(struct sock *, int, int, char *, int *); + void (*mtu_reduced)(struct sock *); +}; + +struct inet_bind_bucket; + +struct inet_bind2_bucket; + +struct tcp_ulp_ops; + +struct inet_connection_sock { + struct inet_sock icsk_inet; + struct request_sock_queue icsk_accept_queue; + struct inet_bind_bucket *icsk_bind_hash; + struct inet_bind2_bucket *icsk_bind2_hash; + struct timer_list icsk_retransmit_timer; + struct timer_list icsk_delack_timer; + __u32 icsk_rto; + __u32 icsk_rto_min; + u32 icsk_rto_max; + __u32 icsk_delack_max; + __u32 icsk_pmtu_cookie; + const struct tcp_congestion_ops *icsk_ca_ops; + const struct inet_connection_sock_af_ops *icsk_af_ops; + const struct tcp_ulp_ops *icsk_ulp_ops; + void *icsk_ulp_data; + unsigned int (*icsk_sync_mss)(struct sock *, u32); + __u8 icsk_ca_state: 5; + __u8 icsk_ca_initialized: 1; + __u8 icsk_ca_setsockopt: 1; + __u8 icsk_ca_dst_locked: 1; + __u8 icsk_retransmits; + __u8 icsk_pending; + __u8 icsk_backoff; + __u8 icsk_syn_retries; + __u8 icsk_probes_out; + __u16 icsk_ext_hdr_len; + struct { + __u8 pending; + __u8 quick; + __u8 pingpong; + __u8 retry; + __u32 ato: 8; + __u32 lrcv_flowlabel: 20; + __u32 dst_quick_ack: 1; + __u32 unused: 3; + __u32 lrcvtime; + __u16 last_seg_size; + __u16 rcv_mss; + } icsk_ack; + struct { + int search_high; + int search_low; + u32 probe_size: 31; + u32 enabled: 1; + u32 probe_timestamp; + } icsk_mtup; + u32 icsk_probes_tstamp; + u32 icsk_user_timeout; + u64 icsk_ca_priv[13]; +}; + +struct tcp_ulp_ops { + struct list_head list; + int (*init)(struct sock *); + void (*update)(struct sock *, struct proto *, void (*)(struct sock *)); + void (*release)(struct sock *); + int (*get_info)(struct sock *, struct sk_buff *, bool); + size_t (*get_info_size)(const struct sock *, bool); + void (*clone)(const struct request_sock *, struct sock *, const gfp_t); + char name[16]; + struct module *owner; +}; + +struct tcp_sack_block { + u32 start_seq; + u32 end_seq; +}; + +struct tcp_options_received { + int ts_recent_stamp; + u32 ts_recent; + u32 rcv_tsval; + u32 rcv_tsecr; + u16 saw_tstamp: 1; + u16 tstamp_ok: 1; + u16 dsack: 1; + u16 wscale_ok: 1; + u16 sack_ok: 3; + u16 smc_ok: 1; + u16 snd_wscale: 4; + u16 rcv_wscale: 4; + u8 saw_unknown: 1; + u8 unused: 7; + u8 num_sacks; + u16 user_mss; + u16 mss_clamp; +}; + +struct tcp_request_sock_ops; + +struct tcp_request_sock { + struct inet_request_sock req; + const struct tcp_request_sock_ops *af_specific; + u64 snt_synack; + bool tfo_listener; + bool is_mptcp; + bool req_usec_ts; + bool drop_req; + u32 txhash; + u32 rcv_isn; + u32 snt_isn; + u32 ts_off; + u32 snt_tsval_first; + u32 snt_tsval_last; + u32 last_oow_ack_time; + u32 rcv_nxt; + u8 syn_tos; + u8 ao_keyid; + u8 ao_rcv_next; + bool used_tcp_ao; +}; + +enum tcp_synack_type { + TCP_SYNACK_NORMAL = 0, + TCP_SYNACK_FASTOPEN = 1, + TCP_SYNACK_COOKIE = 2, +}; + +struct tcp_md5sig_key; + +struct tcp_ao_key; + +struct tcp_fastopen_cookie; + +struct tcp_request_sock_ops { + u16 mss_clamp; + struct tcp_md5sig_key * (*req_md5_lookup)(const struct sock *, const struct sock *); + int (*calc_md5_hash)(char *, const struct tcp_md5sig_key *, const struct sock *, const struct sk_buff *); + struct tcp_ao_key * (*ao_lookup)(const struct sock *, struct request_sock *, int, int); + int (*ao_calc_key)(struct tcp_ao_key *, u8 *, struct request_sock *); + int (*ao_synack_hash)(char *, struct tcp_ao_key *, struct request_sock *, const struct sk_buff *, int, u32); + __u32 (*cookie_init_seq)(const struct sk_buff *, __u16 *); + struct dst_entry * (*route_req)(const struct sock *, struct sk_buff *, struct flowi *, struct request_sock *, u32); + u32 (*init_seq)(const struct sk_buff *); + u32 (*init_ts_off)(const struct net *, const struct sk_buff *); + int (*send_synack)(const struct sock *, struct dst_entry *, struct flowi *, struct request_sock *, struct tcp_fastopen_cookie *, enum tcp_synack_type, struct sk_buff *); +}; + +struct tcp_rack { + u64 mstamp; + u32 rtt_us; + u32 end_seq; + u32 last_delivered; + u8 reo_wnd_steps; + u8 reo_wnd_persist: 5; + u8 dsack_seen: 1; + u8 advanced: 1; +}; + +struct tcp_sock_af_ops; + +struct tcp_md5sig_info; + +struct tcp_ao_info; + +struct tcp_fastopen_request; + +struct tcp_sock { + struct inet_connection_sock inet_conn; + __u8 __cacheline_group_begin__tcp_sock_read_tx[0]; + u32 max_window; + u32 rcv_ssthresh; + u32 reordering; + u32 notsent_lowat; + u16 gso_segs; + struct sk_buff *retransmit_skb_hint; + __u8 __cacheline_group_end__tcp_sock_read_tx[0]; + __u8 __cacheline_group_begin__tcp_sock_read_txrx[0]; + u32 tsoffset; + u32 snd_wnd; + u32 mss_cache; + u32 snd_cwnd; + u32 prr_out; + u32 lost_out; + u32 sacked_out; + u16 tcp_header_len; + u8 scaling_ratio; + u8 chrono_type: 2; + u8 repair: 1; + u8 tcp_usec_ts: 1; + u8 is_sack_reneg: 1; + u8 is_cwnd_limited: 1; + __u8 __cacheline_group_end__tcp_sock_read_txrx[0]; + __u8 __cacheline_group_begin__tcp_sock_read_rx[0]; + u32 copied_seq; + u32 rcv_tstamp; + u32 snd_wl1; + u32 tlp_high_seq; + u32 rttvar_us; + u32 retrans_out; + u16 advmss; + u16 urg_data; + u32 lost; + struct minmax rtt_min; + struct rb_root out_of_order_queue; + void (*tcp_clean_acked)(struct sock *, u32); + u32 snd_ssthresh; + u8 recvmsg_inq: 1; + __u8 __cacheline_group_end__tcp_sock_read_rx[0]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + __u8 __cacheline_group_begin__tcp_sock_write_tx[0]; + u32 segs_out; + u32 data_segs_out; + u64 bytes_sent; + u32 snd_sml; + u32 chrono_start; + u32 chrono_stat[3]; + u32 write_seq; + u32 pushed_seq; + u32 lsndtime; + u32 mdev_us; + u32 rtt_seq; + u64 tcp_wstamp_ns; + struct list_head tsorted_sent_queue; + struct sk_buff *highest_sack; + u8 ecn_flags; + __u8 __cacheline_group_end__tcp_sock_write_tx[0]; + __u8 __cacheline_group_begin__tcp_sock_write_txrx[0]; + __be32 pred_flags; + u64 tcp_clock_cache; + u64 tcp_mstamp; + u32 rcv_nxt; + u32 snd_nxt; + u32 snd_una; + u32 window_clamp; + u32 srtt_us; + u32 packets_out; + u32 snd_up; + u32 delivered; + u32 delivered_ce; + u32 app_limited; + u32 rcv_wnd; + struct tcp_options_received rx_opt; + u8 nonagle: 4; + u8 rate_app_limited: 1; + __u8 __cacheline_group_end__tcp_sock_write_txrx[0]; + long: 0; + __u8 __cacheline_group_begin__tcp_sock_write_rx[0]; + u64 bytes_received; + u32 segs_in; + u32 data_segs_in; + u32 rcv_wup; + u32 max_packets_out; + u32 cwnd_usage_seq; + u32 rate_delivered; + u32 rate_interval_us; + u32 rcv_rtt_last_tsecr; + u64 first_tx_mstamp; + u64 delivered_mstamp; + u64 bytes_acked; + struct { + u32 rtt_us; + u32 seq; + u64 time; + } rcv_rtt_est; + struct { + int space; + u32 seq; + u64 time; + } rcvq_space; + __u8 __cacheline_group_end__tcp_sock_write_rx[0]; + u32 dsack_dups; + u32 compressed_ack_rcv_nxt; + struct list_head tsq_node; + struct tcp_rack rack; + u8 compressed_ack; + u8 dup_ack_counter: 2; + u8 tlp_retrans: 1; + u8 unused: 5; + u8 thin_lto: 1; + u8 fastopen_connect: 1; + u8 fastopen_no_cookie: 1; + u8 fastopen_client_fail: 2; + u8 frto: 1; + u8 repair_queue; + u8 save_syn: 2; + u8 syn_data: 1; + u8 syn_fastopen: 1; + u8 syn_fastopen_exp: 1; + u8 syn_fastopen_ch: 1; + u8 syn_data_acked: 1; + u8 syn_fastopen_child: 1; + u8 keepalive_probes; + u32 tcp_tx_delay; + u32 mdev_max_us; + u32 reord_seen; + u32 snd_cwnd_cnt; + u32 snd_cwnd_clamp; + u32 snd_cwnd_used; + u32 snd_cwnd_stamp; + u32 prior_cwnd; + u32 prr_delivered; + u32 last_oow_ack_time; + struct hrtimer pacing_timer; + struct hrtimer compressed_ack_timer; + struct sk_buff *ooo_last_skb; + struct tcp_sack_block duplicate_sack[1]; + struct tcp_sack_block selective_acks[4]; + struct tcp_sack_block recv_sack_cache[4]; + u32 prior_ssthresh; + u32 high_seq; + u32 retrans_stamp; + u32 undo_marker; + int undo_retrans; + u64 bytes_retrans; + u32 total_retrans; + u32 rto_stamp; + u16 total_rto; + u16 total_rto_recoveries; + u32 total_rto_time; + u32 urg_seq; + unsigned int keepalive_time; + unsigned int keepalive_intvl; + int linger2; + u8 bpf_sock_ops_cb_flags; + u8 bpf_chg_cc_inprogress: 1; + u16 timeout_rehash; + u32 rcv_ooopack; + struct { + u32 probe_seq_start; + u32 probe_seq_end; + } mtu_probe; + u32 plb_rehash; + u32 mtu_info; + bool is_mptcp; + bool syn_smc; + bool (*smc_hs_congested)(const struct sock *); + const struct tcp_sock_af_ops *af_specific; + struct tcp_md5sig_info *md5sig_info; + struct tcp_ao_info *ao_info; + struct tcp_fastopen_request *fastopen_req; + struct request_sock *fastopen_rsk; + struct saved_syn *saved_syn; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct tcp_sock_af_ops { + struct tcp_md5sig_key * (*md5_lookup)(const struct sock *, const struct sock *); + int (*calc_md5_hash)(char *, const struct tcp_md5sig_key *, const struct sock *, const struct sk_buff *); + int (*md5_parse)(struct sock *, int, sockptr_t, int); + int (*ao_parse)(struct sock *, int, sockptr_t, int); + struct tcp_ao_key * (*ao_lookup)(const struct sock *, struct sock *, int, int); + int (*ao_calc_key_sk)(struct tcp_ao_key *, u8 *, const struct sock *, __be32, __be32, bool); + int (*calc_ao_hash)(char *, struct tcp_ao_key *, const struct sock *, const struct sk_buff *, const u8 *, int, u32); +}; + +struct iov_iter_state { + size_t iov_offset; + size_t count; + long unsigned int nr_segs; +}; + +struct netmem_desc { + long unsigned int _flags; + long unsigned int pp_magic; + struct page_pool *pp; + long unsigned int _pp_mapping_pad; + long unsigned int dma_addr; + atomic_long_t pp_ref_count; +}; + +enum net_iov_type { + NET_IOV_DMABUF = 0ULL, + NET_IOV_IOURING = 1ULL, + NET_IOV_MAX = 18446744073709551615ULL, +}; + +struct net_iov_area; + +struct net_iov { + union { + struct netmem_desc desc; + struct { + long unsigned int _flags; + long unsigned int pp_magic; + struct page_pool *pp; + long unsigned int _pp_mapping_pad; + long unsigned int dma_addr; + atomic_long_t pp_ref_count; + }; + }; + struct net_iov_area *owner; + enum net_iov_type type; +}; + +struct net_iov_area { + struct net_iov *niovs; + size_t num_niovs; + long unsigned int base_virtual; +}; + +enum socket_flags { + SOCKWQ_ASYNC_NOSPACE = 0, + SOCKWQ_ASYNC_WAITDATA = 1, + SOCK_NOSPACE = 2, + SOCK_SUPPORT_ZC = 3, + SOCK_CUSTOM_SOCKOPT = 4, +}; + +typedef size_t (*iov_step_f)(void *, size_t, size_t, void *, void *); + +typedef size_t (*iov_ustep_f)(void *, size_t, size_t, void *, void *); + +struct net_devmem_dmabuf_binding { + struct dma_buf *dmabuf; + struct dma_buf_attachment *attachment; + struct sg_table *sgt; + struct net_device *dev; + struct gen_pool *chunk_pool; + struct mutex lock; + refcount_t ref; + struct list_head list; + struct xarray bound_rxqs; + u32 id; + enum dma_data_direction direction; + struct net_iov **tx_vec; + struct work_struct unbind_w; +}; + +struct csum_state { + __wsum csum; + size_t off; +}; + +struct netdev_name_node { + struct hlist_node hlist; + struct list_head list; + struct net_device *dev; + const char *name; + struct callback_head rcu; +}; + +enum netdev_cmd { + NETDEV_UP = 1, + NETDEV_DOWN = 2, + NETDEV_REBOOT = 3, + NETDEV_CHANGE = 4, + NETDEV_REGISTER = 5, + NETDEV_UNREGISTER = 6, + NETDEV_CHANGEMTU = 7, + NETDEV_CHANGEADDR = 8, + NETDEV_PRE_CHANGEADDR = 9, + NETDEV_GOING_DOWN = 10, + NETDEV_CHANGENAME = 11, + NETDEV_FEAT_CHANGE = 12, + NETDEV_BONDING_FAILOVER = 13, + NETDEV_PRE_UP = 14, + NETDEV_PRE_TYPE_CHANGE = 15, + NETDEV_POST_TYPE_CHANGE = 16, + NETDEV_POST_INIT = 17, + NETDEV_PRE_UNINIT = 18, + NETDEV_RELEASE = 19, + NETDEV_NOTIFY_PEERS = 20, + NETDEV_JOIN = 21, + NETDEV_CHANGEUPPER = 22, + NETDEV_RESEND_IGMP = 23, + NETDEV_PRECHANGEMTU = 24, + NETDEV_CHANGEINFODATA = 25, + NETDEV_BONDING_INFO = 26, + NETDEV_PRECHANGEUPPER = 27, + NETDEV_CHANGELOWERSTATE = 28, + NETDEV_UDP_TUNNEL_PUSH_INFO = 29, + NETDEV_UDP_TUNNEL_DROP_INFO = 30, + NETDEV_CHANGE_TX_QUEUE_LEN = 31, + NETDEV_CVLAN_FILTER_PUSH_INFO = 32, + NETDEV_CVLAN_FILTER_DROP_INFO = 33, + NETDEV_SVLAN_FILTER_PUSH_INFO = 34, + NETDEV_SVLAN_FILTER_DROP_INFO = 35, + NETDEV_OFFLOAD_XSTATS_ENABLE = 36, + NETDEV_OFFLOAD_XSTATS_DISABLE = 37, + NETDEV_OFFLOAD_XSTATS_REPORT_USED = 38, + NETDEV_OFFLOAD_XSTATS_REPORT_DELTA = 39, + NETDEV_XDP_FEAT_CHANGE = 40, +}; + +enum { + IF_OPER_UNKNOWN = 0, + IF_OPER_NOTPRESENT = 1, + IF_OPER_DOWN = 2, + IF_OPER_LOWERLAYERDOWN = 3, + IF_OPER_TESTING = 4, + IF_OPER_DORMANT = 5, + IF_OPER_UP = 6, +}; + +struct netlink_dump_control { + int (*start)(struct netlink_callback *); + int (*dump)(struct sk_buff *, struct netlink_callback *); + int (*done)(struct netlink_callback *); + struct netlink_ext_ack *extack; + void *data; + struct module *module; + u32 min_dump_alloc; + int flags; +}; + +struct inet_ehash_bucket; + +struct inet_bind_hashbucket; + +struct inet_listen_hashbucket; + +struct inet_hashinfo { + struct inet_ehash_bucket *ehash; + spinlock_t *ehash_locks; + unsigned int ehash_mask; + unsigned int ehash_locks_mask; + struct kmem_cache *bind_bucket_cachep; + struct inet_bind_hashbucket *bhash; + struct kmem_cache *bind2_bucket_cachep; + struct inet_bind_hashbucket *bhash2; + unsigned int bhash_size; + unsigned int lhash2_mask; + struct inet_listen_hashbucket *lhash2; + bool pernet; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct tcp_fastopen_context { + siphash_key_t key[2]; + int num; + struct callback_head rcu; +}; + +struct rt6key { + struct in6_addr addr; + int plen; +}; + +struct rtable; + +struct fnhe_hash_bucket; + +struct fib_nh_common { + struct net_device *nhc_dev; + netdevice_tracker nhc_dev_tracker; + int nhc_oif; + unsigned char nhc_scope; + u8 nhc_family; + u8 nhc_gw_family; + unsigned char nhc_flags; + struct lwtunnel_state *nhc_lwtstate; + union { + __be32 ipv4; + struct in6_addr ipv6; + } nhc_gw; + int nhc_weight; + atomic_t nhc_upper_bound; + struct rtable **nhc_pcpu_rth_output; + struct rtable *nhc_rth_input; + struct fnhe_hash_bucket *nhc_exceptions; +}; + +struct rt6_exception_bucket; + +struct fib6_nh { + struct fib_nh_common nh_common; + long unsigned int last_probe; + struct rt6_info **rt6i_pcpu; + struct rt6_exception_bucket *rt6i_exception_bucket; +}; + +struct fib6_node; + +struct dst_metrics; + +struct nexthop; + +struct fib6_info { + struct fib6_table *fib6_table; + struct fib6_info *fib6_next; + struct fib6_node *fib6_node; + union { + struct list_head fib6_siblings; + struct list_head nh_list; + }; + unsigned int fib6_nsiblings; + refcount_t fib6_ref; + long unsigned int expires; + struct hlist_node gc_link; + struct dst_metrics *fib6_metrics; + struct rt6key fib6_dst; + u32 fib6_flags; + struct rt6key fib6_src; + struct rt6key fib6_prefsrc; + u32 fib6_metric; + u8 fib6_protocol; + u8 fib6_type; + u8 offload; + u8 trap; + u8 offload_failed; + u8 should_flush: 1; + u8 dst_nocount: 1; + u8 dst_nopolicy: 1; + u8 fib6_destroying: 1; + u8 unused: 4; + struct list_head purge_link; + struct callback_head rcu; + struct nexthop *nh; + struct fib6_nh fib6_nh[0]; +}; + +struct rt6_info { + struct dst_entry dst; + struct fib6_info *from; + int sernum; + struct rt6key rt6i_dst; + struct rt6key rt6i_src; + struct in6_addr rt6i_gateway; + struct inet6_dev *rt6i_idev; + u32 rt6i_flags; + short unsigned int rt6i_nfheader_len; +}; + +struct rt6_statistics { + __u32 fib_nodes; + __u32 fib_route_nodes; + __u32 fib_rt_entries; + __u32 fib_rt_cache; + __u32 fib_discarded_routes; + atomic_t fib_rt_alloc; +}; + +struct fib6_node { + struct fib6_node *parent; + struct fib6_node *left; + struct fib6_node *right; + struct fib6_node *subtree; + struct fib6_info *leaf; + __u16 fn_bit; + __u16 fn_flags; + int fn_sernum; + struct fib6_info *rr_ptr; + struct callback_head rcu; +}; + +struct fib6_table { + struct hlist_node tb6_hlist; + u32 tb6_id; + spinlock_t tb6_lock; + struct fib6_node tb6_root; + struct inet_peer_base tb6_peers; + unsigned int flags; + unsigned int fib_seq; + struct hlist_head tb6_gc_hlist; +}; + +typedef union { + __be32 a4; + __be32 a6[4]; + struct in6_addr in6; +} xfrm_address_t; + +struct xfrm_id { + xfrm_address_t daddr; + __be32 spi; + __u8 proto; +}; + +struct xfrm_selector { + xfrm_address_t daddr; + xfrm_address_t saddr; + __be16 dport; + __be16 dport_mask; + __be16 sport; + __be16 sport_mask; + __u16 family; + __u8 prefixlen_d; + __u8 prefixlen_s; + __u8 proto; + int ifindex; + __kernel_uid32_t user; +}; + +struct xfrm_lifetime_cfg { + __u64 soft_byte_limit; + __u64 hard_byte_limit; + __u64 soft_packet_limit; + __u64 hard_packet_limit; + __u64 soft_add_expires_seconds; + __u64 hard_add_expires_seconds; + __u64 soft_use_expires_seconds; + __u64 hard_use_expires_seconds; +}; + +struct xfrm_lifetime_cur { + __u64 bytes; + __u64 packets; + __u64 add_time; + __u64 use_time; +}; + +struct xfrm_replay_state { + __u32 oseq; + __u32 seq; + __u32 bitmap; +}; + +struct xfrm_replay_state_esn { + unsigned int bmp_len; + __u32 oseq; + __u32 seq; + __u32 oseq_hi; + __u32 seq_hi; + __u32 replay_window; + __u32 bmp[0]; +}; + +struct xfrm_algo { + char alg_name[64]; + unsigned int alg_key_len; + char alg_key[0]; +}; + +struct xfrm_algo_auth { + char alg_name[64]; + unsigned int alg_key_len; + unsigned int alg_trunc_len; + char alg_key[0]; +}; + +struct xfrm_algo_aead { + char alg_name[64]; + unsigned int alg_key_len; + unsigned int alg_icv_len; + char alg_key[0]; +}; + +struct xfrm_stats { + __u32 replay_window; + __u32 replay; + __u32 integrity_failed; +}; + +struct xfrm_encap_tmpl { + __u16 encap_type; + __be16 encap_sport; + __be16 encap_dport; + xfrm_address_t encap_oa; +}; + +struct xfrm_mark { + __u32 v; + __u32 m; +}; + +struct xfrm_address_filter { + xfrm_address_t saddr; + xfrm_address_t daddr; + __u16 family; + __u8 splen; + __u8 dplen; +}; + +enum { + NDA_UNSPEC = 0, + NDA_DST = 1, + NDA_LLADDR = 2, + NDA_CACHEINFO = 3, + NDA_PROBES = 4, + NDA_VLAN = 5, + NDA_PORT = 6, + NDA_VNI = 7, + NDA_IFINDEX = 8, + NDA_MASTER = 9, + NDA_LINK_NETNSID = 10, + NDA_SRC_VNI = 11, + NDA_PROTOCOL = 12, + NDA_NH_ID = 13, + NDA_FDB_EXT_ATTRS = 14, + NDA_FLAGS_EXT = 15, + NDA_NDM_STATE_MASK = 16, + NDA_NDM_FLAGS_MASK = 17, + __NDA_MAX = 18, +}; + +struct rtnl_link_stats { + __u32 rx_packets; + __u32 tx_packets; + __u32 rx_bytes; + __u32 tx_bytes; + __u32 rx_errors; + __u32 tx_errors; + __u32 rx_dropped; + __u32 tx_dropped; + __u32 multicast; + __u32 collisions; + __u32 rx_length_errors; + __u32 rx_over_errors; + __u32 rx_crc_errors; + __u32 rx_frame_errors; + __u32 rx_fifo_errors; + __u32 rx_missed_errors; + __u32 tx_aborted_errors; + __u32 tx_carrier_errors; + __u32 tx_fifo_errors; + __u32 tx_heartbeat_errors; + __u32 tx_window_errors; + __u32 rx_compressed; + __u32 tx_compressed; + __u32 rx_nohandler; +}; + +struct rtnl_link_ifmap { + __u64 mem_start; + __u64 mem_end; + __u64 base_addr; + __u16 irq; + __u8 dma; + __u8 port; +}; + +enum { + IFLA_UNSPEC = 0, + IFLA_ADDRESS = 1, + IFLA_BROADCAST = 2, + IFLA_IFNAME = 3, + IFLA_MTU = 4, + IFLA_LINK = 5, + IFLA_QDISC = 6, + IFLA_STATS = 7, + IFLA_COST = 8, + IFLA_PRIORITY = 9, + IFLA_MASTER = 10, + IFLA_WIRELESS = 11, + IFLA_PROTINFO = 12, + IFLA_TXQLEN = 13, + IFLA_MAP = 14, + IFLA_WEIGHT = 15, + IFLA_OPERSTATE = 16, + IFLA_LINKMODE = 17, + IFLA_LINKINFO = 18, + IFLA_NET_NS_PID = 19, + IFLA_IFALIAS = 20, + IFLA_NUM_VF = 21, + IFLA_VFINFO_LIST = 22, + IFLA_STATS64 = 23, + IFLA_VF_PORTS = 24, + IFLA_PORT_SELF = 25, + IFLA_AF_SPEC = 26, + IFLA_GROUP = 27, + IFLA_NET_NS_FD = 28, + IFLA_EXT_MASK = 29, + IFLA_PROMISCUITY = 30, + IFLA_NUM_TX_QUEUES = 31, + IFLA_NUM_RX_QUEUES = 32, + IFLA_CARRIER = 33, + IFLA_PHYS_PORT_ID = 34, + IFLA_CARRIER_CHANGES = 35, + IFLA_PHYS_SWITCH_ID = 36, + IFLA_LINK_NETNSID = 37, + IFLA_PHYS_PORT_NAME = 38, + IFLA_PROTO_DOWN = 39, + IFLA_GSO_MAX_SEGS = 40, + IFLA_GSO_MAX_SIZE = 41, + IFLA_PAD = 42, + IFLA_XDP = 43, + IFLA_EVENT = 44, + IFLA_NEW_NETNSID = 45, + IFLA_IF_NETNSID = 46, + IFLA_TARGET_NETNSID = 46, + IFLA_CARRIER_UP_COUNT = 47, + IFLA_CARRIER_DOWN_COUNT = 48, + IFLA_NEW_IFINDEX = 49, + IFLA_MIN_MTU = 50, + IFLA_MAX_MTU = 51, + IFLA_PROP_LIST = 52, + IFLA_ALT_IFNAME = 53, + IFLA_PERM_ADDRESS = 54, + IFLA_PROTO_DOWN_REASON = 55, + IFLA_PARENT_DEV_NAME = 56, + IFLA_PARENT_DEV_BUS_NAME = 57, + IFLA_GRO_MAX_SIZE = 58, + IFLA_TSO_MAX_SIZE = 59, + IFLA_TSO_MAX_SEGS = 60, + IFLA_ALLMULTI = 61, + IFLA_DEVLINK_PORT = 62, + IFLA_GSO_IPV4_MAX_SIZE = 63, + IFLA_GRO_IPV4_MAX_SIZE = 64, + IFLA_DPLL_PIN = 65, + IFLA_MAX_PACING_OFFLOAD_HORIZON = 66, + IFLA_NETNS_IMMUTABLE = 67, + __IFLA_MAX = 68, +}; + +enum { + IFLA_PROTO_DOWN_REASON_UNSPEC = 0, + IFLA_PROTO_DOWN_REASON_MASK = 1, + IFLA_PROTO_DOWN_REASON_VALUE = 2, + __IFLA_PROTO_DOWN_REASON_CNT = 3, + IFLA_PROTO_DOWN_REASON_MAX = 2, +}; + +enum { + IFLA_BRPORT_UNSPEC = 0, + IFLA_BRPORT_STATE = 1, + IFLA_BRPORT_PRIORITY = 2, + IFLA_BRPORT_COST = 3, + IFLA_BRPORT_MODE = 4, + IFLA_BRPORT_GUARD = 5, + IFLA_BRPORT_PROTECT = 6, + IFLA_BRPORT_FAST_LEAVE = 7, + IFLA_BRPORT_LEARNING = 8, + IFLA_BRPORT_UNICAST_FLOOD = 9, + IFLA_BRPORT_PROXYARP = 10, + IFLA_BRPORT_LEARNING_SYNC = 11, + IFLA_BRPORT_PROXYARP_WIFI = 12, + IFLA_BRPORT_ROOT_ID = 13, + IFLA_BRPORT_BRIDGE_ID = 14, + IFLA_BRPORT_DESIGNATED_PORT = 15, + IFLA_BRPORT_DESIGNATED_COST = 16, + IFLA_BRPORT_ID = 17, + IFLA_BRPORT_NO = 18, + IFLA_BRPORT_TOPOLOGY_CHANGE_ACK = 19, + IFLA_BRPORT_CONFIG_PENDING = 20, + IFLA_BRPORT_MESSAGE_AGE_TIMER = 21, + IFLA_BRPORT_FORWARD_DELAY_TIMER = 22, + IFLA_BRPORT_HOLD_TIMER = 23, + IFLA_BRPORT_FLUSH = 24, + IFLA_BRPORT_MULTICAST_ROUTER = 25, + IFLA_BRPORT_PAD = 26, + IFLA_BRPORT_MCAST_FLOOD = 27, + IFLA_BRPORT_MCAST_TO_UCAST = 28, + IFLA_BRPORT_VLAN_TUNNEL = 29, + IFLA_BRPORT_BCAST_FLOOD = 30, + IFLA_BRPORT_GROUP_FWD_MASK = 31, + IFLA_BRPORT_NEIGH_SUPPRESS = 32, + IFLA_BRPORT_ISOLATED = 33, + IFLA_BRPORT_BACKUP_PORT = 34, + IFLA_BRPORT_MRP_RING_OPEN = 35, + IFLA_BRPORT_MRP_IN_OPEN = 36, + IFLA_BRPORT_MCAST_EHT_HOSTS_LIMIT = 37, + IFLA_BRPORT_MCAST_EHT_HOSTS_CNT = 38, + IFLA_BRPORT_LOCKED = 39, + IFLA_BRPORT_MAB = 40, + IFLA_BRPORT_MCAST_N_GROUPS = 41, + IFLA_BRPORT_MCAST_MAX_GROUPS = 42, + IFLA_BRPORT_NEIGH_VLAN_SUPPRESS = 43, + IFLA_BRPORT_BACKUP_NHID = 44, + __IFLA_BRPORT_MAX = 45, +}; + +enum { + IFLA_INFO_UNSPEC = 0, + IFLA_INFO_KIND = 1, + IFLA_INFO_DATA = 2, + IFLA_INFO_XSTATS = 3, + IFLA_INFO_SLAVE_KIND = 4, + IFLA_INFO_SLAVE_DATA = 5, + __IFLA_INFO_MAX = 6, +}; + +enum { + IFLA_VF_INFO_UNSPEC = 0, + IFLA_VF_INFO = 1, + __IFLA_VF_INFO_MAX = 2, +}; + +enum { + IFLA_VF_UNSPEC = 0, + IFLA_VF_MAC = 1, + IFLA_VF_VLAN = 2, + IFLA_VF_TX_RATE = 3, + IFLA_VF_SPOOFCHK = 4, + IFLA_VF_LINK_STATE = 5, + IFLA_VF_RATE = 6, + IFLA_VF_RSS_QUERY_EN = 7, + IFLA_VF_STATS = 8, + IFLA_VF_TRUST = 9, + IFLA_VF_IB_NODE_GUID = 10, + IFLA_VF_IB_PORT_GUID = 11, + IFLA_VF_VLAN_LIST = 12, + IFLA_VF_BROADCAST = 13, + __IFLA_VF_MAX = 14, +}; + +struct ifla_vf_mac { + __u32 vf; + __u8 mac[32]; +}; + +struct ifla_vf_broadcast { + __u8 broadcast[32]; +}; + +struct ifla_vf_vlan { + __u32 vf; + __u32 vlan; + __u32 qos; +}; + +enum { + IFLA_VF_VLAN_INFO_UNSPEC = 0, + IFLA_VF_VLAN_INFO = 1, + __IFLA_VF_VLAN_INFO_MAX = 2, +}; + +struct ifla_vf_vlan_info { + __u32 vf; + __u32 vlan; + __u32 qos; + __be16 vlan_proto; +}; + +struct ifla_vf_tx_rate { + __u32 vf; + __u32 rate; +}; + +struct ifla_vf_rate { + __u32 vf; + __u32 min_tx_rate; + __u32 max_tx_rate; +}; + +struct ifla_vf_spoofchk { + __u32 vf; + __u32 setting; +}; + +struct ifla_vf_link_state { + __u32 vf; + __u32 link_state; +}; + +struct ifla_vf_rss_query_en { + __u32 vf; + __u32 setting; +}; + +enum { + IFLA_VF_STATS_RX_PACKETS = 0, + IFLA_VF_STATS_TX_PACKETS = 1, + IFLA_VF_STATS_RX_BYTES = 2, + IFLA_VF_STATS_TX_BYTES = 3, + IFLA_VF_STATS_BROADCAST = 4, + IFLA_VF_STATS_MULTICAST = 5, + IFLA_VF_STATS_PAD = 6, + IFLA_VF_STATS_RX_DROPPED = 7, + IFLA_VF_STATS_TX_DROPPED = 8, + __IFLA_VF_STATS_MAX = 9, +}; + +struct ifla_vf_trust { + __u32 vf; + __u32 setting; +}; + +enum { + IFLA_VF_PORT_UNSPEC = 0, + IFLA_VF_PORT = 1, + __IFLA_VF_PORT_MAX = 2, +}; + +enum { + IFLA_PORT_UNSPEC = 0, + IFLA_PORT_VF = 1, + IFLA_PORT_PROFILE = 2, + IFLA_PORT_VSI_TYPE = 3, + IFLA_PORT_INSTANCE_UUID = 4, + IFLA_PORT_HOST_UUID = 5, + IFLA_PORT_REQUEST = 6, + IFLA_PORT_RESPONSE = 7, + __IFLA_PORT_MAX = 8, +}; + +struct if_stats_msg { + __u8 family; + __u8 pad1; + __u16 pad2; + __u32 ifindex; + __u32 filter_mask; +}; + +enum { + IFLA_STATS_UNSPEC = 0, + IFLA_STATS_LINK_64 = 1, + IFLA_STATS_LINK_XSTATS = 2, + IFLA_STATS_LINK_XSTATS_SLAVE = 3, + IFLA_STATS_LINK_OFFLOAD_XSTATS = 4, + IFLA_STATS_AF_SPEC = 5, + __IFLA_STATS_MAX = 6, +}; + +enum { + IFLA_STATS_GETSET_UNSPEC = 0, + IFLA_STATS_GET_FILTERS = 1, + IFLA_STATS_SET_OFFLOAD_XSTATS_L3_STATS = 2, + __IFLA_STATS_GETSET_MAX = 3, +}; + +enum { + IFLA_OFFLOAD_XSTATS_UNSPEC = 0, + IFLA_OFFLOAD_XSTATS_CPU_HIT = 1, + IFLA_OFFLOAD_XSTATS_HW_S_INFO = 2, + IFLA_OFFLOAD_XSTATS_L3_STATS = 3, + __IFLA_OFFLOAD_XSTATS_MAX = 4, +}; + +enum { + IFLA_OFFLOAD_XSTATS_HW_S_INFO_UNSPEC = 0, + IFLA_OFFLOAD_XSTATS_HW_S_INFO_REQUEST = 1, + IFLA_OFFLOAD_XSTATS_HW_S_INFO_USED = 2, + __IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX = 3, +}; + +enum { + XDP_ATTACHED_NONE = 0, + XDP_ATTACHED_DRV = 1, + XDP_ATTACHED_SKB = 2, + XDP_ATTACHED_HW = 3, + XDP_ATTACHED_MULTI = 4, +}; + +enum { + IFLA_XDP_UNSPEC = 0, + IFLA_XDP_FD = 1, + IFLA_XDP_ATTACHED = 2, + IFLA_XDP_FLAGS = 3, + IFLA_XDP_PROG_ID = 4, + IFLA_XDP_DRV_PROG_ID = 5, + IFLA_XDP_SKB_PROG_ID = 6, + IFLA_XDP_HW_PROG_ID = 7, + IFLA_XDP_EXPECTED_FD = 8, + __IFLA_XDP_MAX = 9, +}; + +enum { + IFLA_EVENT_NONE = 0, + IFLA_EVENT_REBOOT = 1, + IFLA_EVENT_FEATURES = 2, + IFLA_EVENT_BONDING_FAILOVER = 3, + IFLA_EVENT_NOTIFY_PEERS = 4, + IFLA_EVENT_IGMP_RESEND = 5, + IFLA_EVENT_BONDING_OPTIONS = 6, +}; + +struct xfrm_state_walk { + struct list_head all; + u8 state; + u8 dying; + u8 proto; + u32 seq; + struct xfrm_address_filter *filter; +}; + +enum xfrm_replay_mode { + XFRM_REPLAY_MODE_LEGACY = 0, + XFRM_REPLAY_MODE_BMP = 1, + XFRM_REPLAY_MODE_ESN = 2, +}; + +struct xfrm_dev_offload { + struct net_device *dev; + netdevice_tracker dev_tracker; + struct net_device *real_dev; + long unsigned int offload_handle; + u8 dir: 2; + u8 type: 2; + u8 flags: 2; +}; + +struct xfrm_mode { + u8 encap; + u8 family; + u8 flags; +}; + +struct xfrm_type; + +struct xfrm_type_offload; + +struct xfrm_mode_cbs; + +struct xfrm_state { + possible_net_t xs_net; + union { + struct hlist_node gclist; + struct hlist_node bydst; + }; + union { + struct hlist_node dev_gclist; + struct hlist_node bysrc; + }; + struct hlist_node byspi; + struct hlist_node byseq; + struct hlist_node state_cache; + struct hlist_node state_cache_input; + refcount_t refcnt; + spinlock_t lock; + u32 pcpu_num; + struct xfrm_id id; + struct xfrm_selector sel; + struct xfrm_mark mark; + u32 if_id; + u32 tfcpad; + u32 genid; + struct xfrm_state_walk km; + struct { + u32 reqid; + u8 mode; + u8 replay_window; + u8 aalgo; + u8 ealgo; + u8 calgo; + u8 flags; + u16 family; + xfrm_address_t saddr; + int header_len; + int enc_hdr_len; + int trailer_len; + u32 extra_flags; + struct xfrm_mark smark; + } props; + struct xfrm_lifetime_cfg lft; + struct xfrm_algo_auth *aalg; + struct xfrm_algo *ealg; + struct xfrm_algo *calg; + struct xfrm_algo_aead *aead; + const char *geniv; + __be16 new_mapping_sport; + u32 new_mapping; + u32 mapping_maxage; + struct xfrm_encap_tmpl *encap; + u32 nat_keepalive_interval; + time64_t nat_keepalive_expiration; + xfrm_address_t *coaddr; + struct xfrm_state *tunnel; + atomic_t tunnel_users; + struct xfrm_replay_state replay; + struct xfrm_replay_state_esn *replay_esn; + struct xfrm_replay_state preplay; + struct xfrm_replay_state_esn *preplay_esn; + enum xfrm_replay_mode repl_mode; + u32 xflags; + u32 replay_maxage; + u32 replay_maxdiff; + struct timer_list rtimer; + struct xfrm_stats stats; + struct xfrm_lifetime_cur curlft; + struct hrtimer mtimer; + struct xfrm_dev_offload xso; + long int saved_tmo; + time64_t lastused; + struct page_frag xfrag; + const struct xfrm_type *type; + struct xfrm_mode inner_mode; + struct xfrm_mode inner_mode_iaf; + struct xfrm_mode outer_mode; + const struct xfrm_type_offload *type_offload; + struct xfrm_sec_ctx *security; + void *data; + u8 dir; + const struct xfrm_mode_cbs *mode_cbs; + void *mode_data; +}; + +struct xfrm_policy_walk_entry { + struct list_head all; + u8 dead; +}; + +struct xfrm_policy_queue { + struct sk_buff_head hold_queue; + struct timer_list hold_timer; + long unsigned int timeout; +}; + +struct xfrm_tmpl { + struct xfrm_id id; + xfrm_address_t saddr; + short unsigned int encap_family; + u32 reqid; + u8 mode; + u8 share; + u8 optional; + u8 allalgs; + u32 aalgos; + u32 ealgos; + u32 calgos; +}; + +struct xfrm_policy { + possible_net_t xp_net; + struct hlist_node bydst; + struct hlist_node byidx; + struct hlist_head state_cache_list; + rwlock_t lock; + refcount_t refcnt; + u32 pos; + struct timer_list timer; + atomic_t genid; + u32 priority; + u32 index; + u32 if_id; + struct xfrm_mark mark; + struct xfrm_selector selector; + struct xfrm_lifetime_cfg lft; + struct xfrm_lifetime_cur curlft; + struct xfrm_policy_walk_entry walk; + struct xfrm_policy_queue polq; + bool bydst_reinsert; + u8 type; + u8 action; + u8 flags; + u8 xfrm_nr; + u16 family; + struct xfrm_sec_ctx *security; + struct xfrm_tmpl xfrm_vec[6]; + struct callback_head rcu; + struct xfrm_dev_offload xdo; +}; + +enum devlink_port_type { + DEVLINK_PORT_TYPE_NOTSET = 0, + DEVLINK_PORT_TYPE_AUTO = 1, + DEVLINK_PORT_TYPE_ETH = 2, + DEVLINK_PORT_TYPE_IB = 3, +}; + +enum devlink_port_flavour { + DEVLINK_PORT_FLAVOUR_PHYSICAL = 0, + DEVLINK_PORT_FLAVOUR_CPU = 1, + DEVLINK_PORT_FLAVOUR_DSA = 2, + DEVLINK_PORT_FLAVOUR_PCI_PF = 3, + DEVLINK_PORT_FLAVOUR_PCI_VF = 4, + DEVLINK_PORT_FLAVOUR_VIRTUAL = 5, + DEVLINK_PORT_FLAVOUR_UNUSED = 6, + DEVLINK_PORT_FLAVOUR_PCI_SF = 7, +}; + +struct devlink_port_phys_attrs { + u32 port_number; + u32 split_subport_number; +}; + +struct devlink_port_pci_pf_attrs { + u32 controller; + u16 pf; + u8 external: 1; +}; + +struct devlink_port_pci_vf_attrs { + u32 controller; + u16 pf; + u16 vf; + u8 external: 1; +}; + +struct devlink_port_pci_sf_attrs { + u32 controller; + u32 sf; + u16 pf; + u8 external: 1; +}; + +struct devlink_port_attrs { + u8 split: 1; + u8 splittable: 1; + u8 no_phys_port_name: 1; + u32 lanes; + enum devlink_port_flavour flavour; + struct netdev_phys_item_id switch_id; + union { + struct devlink_port_phys_attrs phys; + struct devlink_port_pci_pf_attrs pci_pf; + struct devlink_port_pci_vf_attrs pci_vf; + struct devlink_port_pci_sf_attrs pci_sf; + }; +}; + +struct devlink_port_ops; + +struct devlink_rate; + +struct devlink_linecard; + +struct devlink_port { + struct list_head list; + struct list_head region_list; + struct devlink *devlink; + const struct devlink_port_ops *ops; + unsigned int index; + spinlock_t type_lock; + enum devlink_port_type type; + enum devlink_port_type desired_type; + union { + struct { + struct net_device *netdev; + int ifindex; + char ifname[16]; + } type_eth; + struct { + struct ib_device *ibdev; + } type_ib; + }; + struct devlink_port_attrs attrs; + u8 attrs_set: 1; + u8 switch_port: 1; + u8 registered: 1; + u8 initialized: 1; + struct delayed_work type_warn_dw; + struct list_head reporter_list; + struct devlink_rate *devlink_rate; + struct devlink_linecard *linecard; + u32 rel_index; +}; + +struct netdev_notifier_info { + struct net_device *dev; + struct netlink_ext_ack *extack; +}; + +enum netdev_offload_xstats_type { + NETDEV_OFFLOAD_XSTATS_TYPE_L3 = 1, +}; + +enum { + IFLA_BRIDGE_FLAGS = 0, + IFLA_BRIDGE_MODE = 1, + IFLA_BRIDGE_VLAN_INFO = 2, + IFLA_BRIDGE_VLAN_TUNNEL_INFO = 3, + IFLA_BRIDGE_MRP = 4, + IFLA_BRIDGE_CFM = 5, + IFLA_BRIDGE_MST = 6, + __IFLA_BRIDGE_MAX = 7, +}; + +struct br_port_msg { + __u8 family; + __u32 ifindex; +}; + +struct br_mdb_entry { + __u32 ifindex; + __u8 state; + __u8 flags; + __u16 vid; + struct { + union { + __be32 ip4; + struct in6_addr ip6; + unsigned char mac_addr[6]; + } u; + __be16 proto; + } addr; +}; + +enum { + MDBA_SET_ENTRY_UNSPEC = 0, + MDBA_SET_ENTRY = 1, + MDBA_SET_ENTRY_ATTRS = 2, + __MDBA_SET_ENTRY_MAX = 3, +}; + +enum { + MDBA_GET_ENTRY_UNSPEC = 0, + MDBA_GET_ENTRY = 1, + MDBA_GET_ENTRY_ATTRS = 2, + __MDBA_GET_ENTRY_MAX = 3, +}; + +enum { + BR_MCAST_DIR_RX = 0, + BR_MCAST_DIR_TX = 1, + BR_MCAST_DIR_SIZE = 2, +}; + +enum { + RTM_BASE = 16, + RTM_NEWLINK = 16, + RTM_DELLINK = 17, + RTM_GETLINK = 18, + RTM_SETLINK = 19, + RTM_NEWADDR = 20, + RTM_DELADDR = 21, + RTM_GETADDR = 22, + RTM_NEWROUTE = 24, + RTM_DELROUTE = 25, + RTM_GETROUTE = 26, + RTM_NEWNEIGH = 28, + RTM_DELNEIGH = 29, + RTM_GETNEIGH = 30, + RTM_NEWRULE = 32, + RTM_DELRULE = 33, + RTM_GETRULE = 34, + RTM_NEWQDISC = 36, + RTM_DELQDISC = 37, + RTM_GETQDISC = 38, + RTM_NEWTCLASS = 40, + RTM_DELTCLASS = 41, + RTM_GETTCLASS = 42, + RTM_NEWTFILTER = 44, + RTM_DELTFILTER = 45, + RTM_GETTFILTER = 46, + RTM_NEWACTION = 48, + RTM_DELACTION = 49, + RTM_GETACTION = 50, + RTM_NEWPREFIX = 52, + RTM_NEWMULTICAST = 56, + RTM_DELMULTICAST = 57, + RTM_GETMULTICAST = 58, + RTM_NEWANYCAST = 60, + RTM_DELANYCAST = 61, + RTM_GETANYCAST = 62, + RTM_NEWNEIGHTBL = 64, + RTM_GETNEIGHTBL = 66, + RTM_SETNEIGHTBL = 67, + RTM_NEWNDUSEROPT = 68, + RTM_NEWADDRLABEL = 72, + RTM_DELADDRLABEL = 73, + RTM_GETADDRLABEL = 74, + RTM_GETDCB = 78, + RTM_SETDCB = 79, + RTM_NEWNETCONF = 80, + RTM_DELNETCONF = 81, + RTM_GETNETCONF = 82, + RTM_NEWMDB = 84, + RTM_DELMDB = 85, + RTM_GETMDB = 86, + RTM_NEWNSID = 88, + RTM_DELNSID = 89, + RTM_GETNSID = 90, + RTM_NEWSTATS = 92, + RTM_GETSTATS = 94, + RTM_SETSTATS = 95, + RTM_NEWCACHEREPORT = 96, + RTM_NEWCHAIN = 100, + RTM_DELCHAIN = 101, + RTM_GETCHAIN = 102, + RTM_NEWNEXTHOP = 104, + RTM_DELNEXTHOP = 105, + RTM_GETNEXTHOP = 106, + RTM_NEWLINKPROP = 108, + RTM_DELLINKPROP = 109, + RTM_GETLINKPROP = 110, + RTM_NEWVLAN = 112, + RTM_DELVLAN = 113, + RTM_GETVLAN = 114, + RTM_NEWNEXTHOPBUCKET = 116, + RTM_DELNEXTHOPBUCKET = 117, + RTM_GETNEXTHOPBUCKET = 118, + RTM_NEWTUNNEL = 120, + RTM_DELTUNNEL = 121, + RTM_GETTUNNEL = 122, + __RTM_MAX = 123, +}; + +enum rtattr_type_t { + RTA_UNSPEC = 0, + RTA_DST = 1, + RTA_SRC = 2, + RTA_IIF = 3, + RTA_OIF = 4, + RTA_GATEWAY = 5, + RTA_PRIORITY = 6, + RTA_PREFSRC = 7, + RTA_METRICS = 8, + RTA_MULTIPATH = 9, + RTA_PROTOINFO = 10, + RTA_FLOW = 11, + RTA_CACHEINFO = 12, + RTA_SESSION = 13, + RTA_MP_ALGO = 14, + RTA_TABLE = 15, + RTA_MARK = 16, + RTA_MFC_STATS = 17, + RTA_VIA = 18, + RTA_NEWDST = 19, + RTA_PREF = 20, + RTA_ENCAP_TYPE = 21, + RTA_ENCAP = 22, + RTA_EXPIRES = 23, + RTA_PAD = 24, + RTA_UID = 25, + RTA_TTL_PROPAGATE = 26, + RTA_IP_PROTO = 27, + RTA_SPORT = 28, + RTA_DPORT = 29, + RTA_NH_ID = 30, + RTA_FLOWLABEL = 31, + __RTA_MAX = 32, +}; + +struct rta_cacheinfo { + __u32 rta_clntref; + __u32 rta_lastuse; + __s32 rta_expires; + __u32 rta_error; + __u32 rta_used; + __u32 rta_id; + __u32 rta_ts; + __u32 rta_tsage; +}; + +struct rtgenmsg { + unsigned char rtgen_family; +}; + +struct ifinfomsg { + unsigned char ifi_family; + unsigned char __ifi_pad; + short unsigned int ifi_type; + int ifi_index; + unsigned int ifi_flags; + unsigned int ifi_change; +}; + +enum rtnetlink_groups { + RTNLGRP_NONE = 0, + RTNLGRP_LINK = 1, + RTNLGRP_NOTIFY = 2, + RTNLGRP_NEIGH = 3, + RTNLGRP_TC = 4, + RTNLGRP_IPV4_IFADDR = 5, + RTNLGRP_IPV4_MROUTE = 6, + RTNLGRP_IPV4_ROUTE = 7, + RTNLGRP_IPV4_RULE = 8, + RTNLGRP_IPV6_IFADDR = 9, + RTNLGRP_IPV6_MROUTE = 10, + RTNLGRP_IPV6_ROUTE = 11, + RTNLGRP_IPV6_IFINFO = 12, + RTNLGRP_DECnet_IFADDR = 13, + RTNLGRP_NOP2 = 14, + RTNLGRP_DECnet_ROUTE = 15, + RTNLGRP_DECnet_RULE = 16, + RTNLGRP_NOP4 = 17, + RTNLGRP_IPV6_PREFIX = 18, + RTNLGRP_IPV6_RULE = 19, + RTNLGRP_ND_USEROPT = 20, + RTNLGRP_PHONET_IFADDR = 21, + RTNLGRP_PHONET_ROUTE = 22, + RTNLGRP_DCB = 23, + RTNLGRP_IPV4_NETCONF = 24, + RTNLGRP_IPV6_NETCONF = 25, + RTNLGRP_MDB = 26, + RTNLGRP_MPLS_ROUTE = 27, + RTNLGRP_NSID = 28, + RTNLGRP_MPLS_NETCONF = 29, + RTNLGRP_IPV4_MROUTE_R = 30, + RTNLGRP_IPV6_MROUTE_R = 31, + RTNLGRP_NEXTHOP = 32, + RTNLGRP_BRVLAN = 33, + RTNLGRP_MCTP_IFADDR = 34, + RTNLGRP_TUNNEL = 35, + RTNLGRP_STATS = 36, + RTNLGRP_IPV4_MCADDR = 37, + RTNLGRP_IPV6_MCADDR = 38, + RTNLGRP_IPV6_ACADDR = 39, + __RTNLGRP_MAX = 40, +}; + +struct ndo_fdb_dump_context { + long unsigned int ifindex; + long unsigned int fdb_idx; +}; + +enum { + NLA_UNSPEC = 0, + NLA_U8 = 1, + NLA_U16 = 2, + NLA_U32 = 3, + NLA_U64 = 4, + NLA_STRING = 5, + NLA_FLAG = 6, + NLA_MSECS = 7, + NLA_NESTED = 8, + NLA_NESTED_ARRAY = 9, + NLA_NUL_STRING = 10, + NLA_BINARY = 11, + NLA_S8 = 12, + NLA_S16 = 13, + NLA_S32 = 14, + NLA_S64 = 15, + NLA_BITFIELD32 = 16, + NLA_REJECT = 17, + NLA_BE16 = 18, + NLA_BE32 = 19, + NLA_SINT = 20, + NLA_UINT = 21, + __NLA_TYPE_MAX = 22, +}; + +enum nla_policy_validation { + NLA_VALIDATE_NONE = 0, + NLA_VALIDATE_RANGE = 1, + NLA_VALIDATE_RANGE_WARN_TOO_LONG = 2, + NLA_VALIDATE_MIN = 3, + NLA_VALIDATE_MAX = 4, + NLA_VALIDATE_MASK = 5, + NLA_VALIDATE_RANGE_PTR = 6, + NLA_VALIDATE_FUNCTION = 7, +}; + +typedef int (*rtnl_doit_func)(struct sk_buff *, struct nlmsghdr *, struct netlink_ext_ack *); + +typedef int (*rtnl_dumpit_func)(struct sk_buff *, struct netlink_callback *); + +enum rtnl_link_flags { + RTNL_FLAG_DOIT_UNLOCKED = 1, + RTNL_FLAG_BULK_DEL_SUPPORTED = 2, + RTNL_FLAG_DUMP_UNLOCKED = 4, + RTNL_FLAG_DUMP_SPLIT_NLM_DONE = 8, +}; + +enum rtnl_kinds { + RTNL_KIND_NEW = 0, + RTNL_KIND_DEL = 1, + RTNL_KIND_GET = 2, + RTNL_KIND_SET = 3, +}; + +struct rtnl_msg_handler { + struct module *owner; + int protocol; + int msgtype; + rtnl_doit_func doit; + rtnl_dumpit_func dumpit; + int flags; +}; + +struct rtnl_af_ops { + struct list_head list; + struct srcu_struct srcu; + int family; + int (*fill_link_af)(struct sk_buff *, const struct net_device *, u32); + size_t (*get_link_af_size)(const struct net_device *, u32); + int (*validate_link_af)(const struct net_device *, const struct nlattr *, struct netlink_ext_ack *); + int (*set_link_af)(struct net_device *, const struct nlattr *, struct netlink_ext_ack *); + int (*fill_stats_af)(struct sk_buff *, const struct net_device *); + size_t (*get_stats_af_size)(const struct net_device *); +}; + +struct dst_metrics { + u32 metrics[17]; + refcount_t refcnt; +}; + +struct fib_nh_exception { + struct fib_nh_exception *fnhe_next; + int fnhe_genid; + __be32 fnhe_daddr; + u32 fnhe_pmtu; + bool fnhe_mtu_locked; + __be32 fnhe_gw; + long unsigned int fnhe_expires; + struct rtable *fnhe_rth_input; + struct rtable *fnhe_rth_output; + long unsigned int fnhe_stamp; + struct callback_head rcu; +}; + +struct rtable { + struct dst_entry dst; + int rt_genid; + unsigned int rt_flags; + __u16 rt_type; + __u8 rt_is_input; + __u8 rt_uses_gateway; + int rt_iif; + u8 rt_gw_family; + union { + __be32 rt_gw4; + struct in6_addr rt_gw6; + }; + u32 rt_mtu_locked: 1; + u32 rt_pmtu: 31; +}; + +struct fnhe_hash_bucket { + struct fib_nh_exception *chain; +}; + +struct inet_ehash_bucket { + struct hlist_nulls_head chain; +}; + +struct inet_bind_hashbucket { + spinlock_t lock; + struct hlist_head chain; +}; + +struct inet_listen_hashbucket { + spinlock_t lock; + struct hlist_nulls_head nulls_head; +}; + +struct qdisc_walker { + int stop; + int skip; + int count; + int (*fn)(struct Qdisc *, long unsigned int, struct qdisc_walker *); +}; + +struct rt6_exception_bucket { + struct hlist_head chain; + int depth; +}; + +struct xfrm_type { + struct module *owner; + u8 proto; + u8 flags; + int (*init_state)(struct xfrm_state *, struct netlink_ext_ack *); + void (*destructor)(struct xfrm_state *); + int (*input)(struct xfrm_state *, struct sk_buff *); + int (*output)(struct xfrm_state *, struct sk_buff *); + int (*reject)(struct xfrm_state *, struct sk_buff *, const struct flowi *); +}; + +struct xfrm_type_offload { + struct module *owner; + u8 proto; + void (*encap)(struct xfrm_state *, struct sk_buff *); + int (*input_tail)(struct xfrm_state *, struct sk_buff *); + int (*xmit)(struct xfrm_state *, struct sk_buff *, netdev_features_t); +}; + +struct xfrm_mode_cbs { + struct module *owner; + int (*init_state)(struct xfrm_state *); + int (*clone_state)(struct xfrm_state *, struct xfrm_state *); + void (*destroy_state)(struct xfrm_state *); + int (*user_init)(struct net *, struct xfrm_state *, struct nlattr **, struct netlink_ext_ack *); + int (*copy_to_user)(struct xfrm_state *, struct sk_buff *); + unsigned int (*sa_len)(const struct xfrm_state *); + u32 (*get_inner_mtu)(struct xfrm_state *, int); + int (*input)(struct xfrm_state *, struct sk_buff *); + int (*output)(struct net *, struct sock *, struct sk_buff *); + int (*prepare_output)(struct xfrm_state *, struct sk_buff *); +}; + +struct ack_sample { + u32 pkts_acked; + s32 rtt_us; + u32 in_flight; +}; + +struct rate_sample { + u64 prior_mstamp; + u32 prior_delivered; + u32 prior_delivered_ce; + s32 delivered; + s32 delivered_ce; + long int interval_us; + u32 snd_interval_us; + u32 rcv_interval_us; + long int rtt_us; + int losses; + u32 acked_sacked; + u32 prior_in_flight; + u32 last_end_seq; + bool is_app_limited; + bool is_retrans; + bool is_ack_delayed; +}; + +enum devlink_rate_type { + DEVLINK_RATE_TYPE_LEAF = 0, + DEVLINK_RATE_TYPE_NODE = 1, +}; + +enum devlink_port_fn_state { + DEVLINK_PORT_FN_STATE_INACTIVE = 0, + DEVLINK_PORT_FN_STATE_ACTIVE = 1, +}; + +enum devlink_port_fn_opstate { + DEVLINK_PORT_FN_OPSTATE_DETACHED = 0, + DEVLINK_PORT_FN_OPSTATE_ATTACHED = 1, +}; + +struct devlink_rate { + struct list_head list; + enum devlink_rate_type type; + struct devlink *devlink; + void *priv; + u64 tx_share; + u64 tx_max; + struct devlink_rate *parent; + union { + struct devlink_port *devlink_port; + struct { + char *name; + refcount_t refcnt; + }; + }; + u32 tx_priority; + u32 tx_weight; + u32 tc_bw[8]; +}; + +struct devlink_port_ops { + int (*port_split)(struct devlink *, struct devlink_port *, unsigned int, struct netlink_ext_ack *); + int (*port_unsplit)(struct devlink *, struct devlink_port *, struct netlink_ext_ack *); + int (*port_type_set)(struct devlink_port *, enum devlink_port_type); + int (*port_del)(struct devlink *, struct devlink_port *, struct netlink_ext_ack *); + int (*port_fn_hw_addr_get)(struct devlink_port *, u8 *, int *, struct netlink_ext_ack *); + int (*port_fn_hw_addr_set)(struct devlink_port *, const u8 *, int, struct netlink_ext_ack *); + int (*port_fn_roce_get)(struct devlink_port *, bool *, struct netlink_ext_ack *); + int (*port_fn_roce_set)(struct devlink_port *, bool, struct netlink_ext_ack *); + int (*port_fn_migratable_get)(struct devlink_port *, bool *, struct netlink_ext_ack *); + int (*port_fn_migratable_set)(struct devlink_port *, bool, struct netlink_ext_ack *); + int (*port_fn_state_get)(struct devlink_port *, enum devlink_port_fn_state *, enum devlink_port_fn_opstate *, struct netlink_ext_ack *); + int (*port_fn_state_set)(struct devlink_port *, enum devlink_port_fn_state, struct netlink_ext_ack *); + int (*port_fn_ipsec_crypto_get)(struct devlink_port *, bool *, struct netlink_ext_ack *); + int (*port_fn_ipsec_crypto_set)(struct devlink_port *, bool, struct netlink_ext_ack *); + int (*port_fn_ipsec_packet_get)(struct devlink_port *, bool *, struct netlink_ext_ack *); + int (*port_fn_ipsec_packet_set)(struct devlink_port *, bool, struct netlink_ext_ack *); + int (*port_fn_max_io_eqs_get)(struct devlink_port *, u32 *, struct netlink_ext_ack *); + int (*port_fn_max_io_eqs_set)(struct devlink_port *, u32, struct netlink_ext_ack *); +}; + +struct rtnl_link { + rtnl_doit_func doit; + rtnl_dumpit_func dumpit; + struct module *owner; + unsigned int flags; + struct callback_head rcu; +}; + +struct rtnl_nets { + struct net *net[3]; + unsigned char len; +}; + +struct rtnl_newlink_tbs { + struct nlattr *tb[68]; + struct nlattr *linkinfo[6]; + struct nlattr *attr[51]; + struct nlattr *slave_attr[45]; +}; + +struct rtnl_offload_xstats_request_used { + bool request; + bool used; +}; + +struct rtnl_stats_dump_filters { + u32 mask[6]; +}; + +struct rtnl_mdb_dump_ctx { + long int idx; +}; + +struct ifconf { + int ifc_len; + union { + char *ifcu_buf; + struct ifreq *ifcu_req; + } ifc_ifcu; +}; + +typedef u32 compat_caddr_t; + +struct compat_ifmap { + compat_ulong_t mem_start; + compat_ulong_t mem_end; + short unsigned int base_addr; + unsigned char irq; + unsigned char dma; + unsigned char port; +}; + +struct compat_ifconf { + compat_int_t ifc_len; + compat_caddr_t ifcbuf; +}; + +enum phylink_op_type { + PHYLINK_NETDEV = 0, + PHYLINK_DEV = 1, +}; + +struct phylink_link_state; + +struct phylink_config { + struct device *dev; + enum phylink_op_type type; + bool poll_fixed_state; + bool mac_managed_pm; + bool mac_requires_rxc; + bool default_an_inband; + bool eee_rx_clk_stop_enable; + void (*get_fixed_state)(struct phylink_config *, struct phylink_link_state *); + long unsigned int supported_interfaces[1]; + long unsigned int lpi_interfaces[1]; + long unsigned int mac_capabilities; + long unsigned int lpi_capabilities; + u32 lpi_timer_default; + bool eee_enabled_default; +}; + +struct dsa_device_ops; + +struct dsa_switch_tree; + +struct dsa_switch; + +struct dsa_bridge; + +struct dsa_lag; + +struct dsa_port { + union { + struct net_device *conduit; + struct net_device *user; + }; + const struct dsa_device_ops *tag_ops; + struct dsa_switch_tree *dst; + struct sk_buff * (*rcv)(struct sk_buff *, struct net_device *); + struct dsa_switch *ds; + unsigned int index; + enum { + DSA_PORT_TYPE_UNUSED = 0, + DSA_PORT_TYPE_CPU = 1, + DSA_PORT_TYPE_DSA = 2, + DSA_PORT_TYPE_USER = 3, + } type; + const char *name; + struct dsa_port *cpu_dp; + u8 mac[6]; + u8 stp_state; + u8 vlan_filtering: 1; + u8 learning: 1; + u8 lag_tx_enabled: 1; + u8 conduit_admin_up: 1; + u8 conduit_oper_up: 1; + u8 cpu_port_in_lag: 1; + u8 setup: 1; + struct device_node *dn; + unsigned int ageing_time; + struct dsa_bridge *bridge; + struct devlink_port devlink_port; + struct phylink *pl; + struct phylink_config pl_config; + netdevice_tracker conduit_tracker; + struct dsa_lag *lag; + struct net_device *hsr_dev; + struct list_head list; + const struct ethtool_ops *orig_ethtool_ops; + struct mutex addr_lists_lock; + struct list_head fdbs; + struct list_head mdbs; + struct mutex vlans_lock; + union { + struct list_head vlans; + struct list_head user_vlans; + }; +}; + +enum netdev_lag_tx_type { + NETDEV_LAG_TX_TYPE_UNKNOWN = 0, + NETDEV_LAG_TX_TYPE_RANDOM = 1, + NETDEV_LAG_TX_TYPE_BROADCAST = 2, + NETDEV_LAG_TX_TYPE_ROUNDROBIN = 3, + NETDEV_LAG_TX_TYPE_ACTIVEBACKUP = 4, + NETDEV_LAG_TX_TYPE_HASH = 5, +}; + +enum netdev_lag_hash { + NETDEV_LAG_HASH_NONE = 0, + NETDEV_LAG_HASH_L2 = 1, + NETDEV_LAG_HASH_L34 = 2, + NETDEV_LAG_HASH_L23 = 3, + NETDEV_LAG_HASH_E23 = 4, + NETDEV_LAG_HASH_E34 = 5, + NETDEV_LAG_HASH_VLAN_SRCMAC = 6, + NETDEV_LAG_HASH_UNKNOWN = 7, +}; + +struct netdev_lag_upper_info { + enum netdev_lag_tx_type tx_type; + enum netdev_lag_hash hash_type; +}; + +struct netdev_notifier_changeupper_info { + struct netdev_notifier_info info; + struct net_device *upper_dev; + bool master; + bool linking; + void *upper_info; +}; + +struct hwtstamp_config { + int flags; + int tx_type; + int rx_filter; +}; + +enum hwtstamp_flags { + HWTSTAMP_FLAG_BONDED_PHC_INDEX = 1, + HWTSTAMP_FLAG_LAST = 1, + HWTSTAMP_FLAG_MASK = 1, +}; + +enum hwtstamp_tx_types { + HWTSTAMP_TX_OFF = 0, + HWTSTAMP_TX_ON = 1, + HWTSTAMP_TX_ONESTEP_SYNC = 2, + HWTSTAMP_TX_ONESTEP_P2P = 3, + __HWTSTAMP_TX_CNT = 4, +}; + +enum hwtstamp_rx_filters { + HWTSTAMP_FILTER_NONE = 0, + HWTSTAMP_FILTER_ALL = 1, + HWTSTAMP_FILTER_SOME = 2, + HWTSTAMP_FILTER_PTP_V1_L4_EVENT = 3, + HWTSTAMP_FILTER_PTP_V1_L4_SYNC = 4, + HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ = 5, + HWTSTAMP_FILTER_PTP_V2_L4_EVENT = 6, + HWTSTAMP_FILTER_PTP_V2_L4_SYNC = 7, + HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ = 8, + HWTSTAMP_FILTER_PTP_V2_L2_EVENT = 9, + HWTSTAMP_FILTER_PTP_V2_L2_SYNC = 10, + HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ = 11, + HWTSTAMP_FILTER_PTP_V2_EVENT = 12, + HWTSTAMP_FILTER_PTP_V2_SYNC = 13, + HWTSTAMP_FILTER_PTP_V2_DELAY_REQ = 14, + HWTSTAMP_FILTER_NTP_ALL = 15, + __HWTSTAMP_FILTER_CNT = 16, +}; + +struct phylib_stubs { + int (*hwtstamp_get)(struct phy_device *, struct kernel_hwtstamp_config *); + int (*hwtstamp_set)(struct phy_device *, struct kernel_hwtstamp_config *, struct netlink_ext_ack *); + void (*get_phy_stats)(struct phy_device *, struct ethtool_eth_phy_stats *, struct ethtool_phy_stats *); + void (*get_link_ext_stats)(struct phy_device *, struct ethtool_link_ext_stats *); +}; + +struct flow_match { + struct flow_dissector *dissector; + void *mask; + void *key; +}; + +enum flow_action_id { + FLOW_ACTION_ACCEPT = 0, + FLOW_ACTION_DROP = 1, + FLOW_ACTION_TRAP = 2, + FLOW_ACTION_GOTO = 3, + FLOW_ACTION_REDIRECT = 4, + FLOW_ACTION_MIRRED = 5, + FLOW_ACTION_REDIRECT_INGRESS = 6, + FLOW_ACTION_MIRRED_INGRESS = 7, + FLOW_ACTION_VLAN_PUSH = 8, + FLOW_ACTION_VLAN_POP = 9, + FLOW_ACTION_VLAN_MANGLE = 10, + FLOW_ACTION_TUNNEL_ENCAP = 11, + FLOW_ACTION_TUNNEL_DECAP = 12, + FLOW_ACTION_MANGLE = 13, + FLOW_ACTION_ADD = 14, + FLOW_ACTION_CSUM = 15, + FLOW_ACTION_MARK = 16, + FLOW_ACTION_PTYPE = 17, + FLOW_ACTION_PRIORITY = 18, + FLOW_ACTION_RX_QUEUE_MAPPING = 19, + FLOW_ACTION_WAKE = 20, + FLOW_ACTION_QUEUE = 21, + FLOW_ACTION_SAMPLE = 22, + FLOW_ACTION_POLICE = 23, + FLOW_ACTION_CT = 24, + FLOW_ACTION_CT_METADATA = 25, + FLOW_ACTION_MPLS_PUSH = 26, + FLOW_ACTION_MPLS_POP = 27, + FLOW_ACTION_MPLS_MANGLE = 28, + FLOW_ACTION_GATE = 29, + FLOW_ACTION_PPPOE_PUSH = 30, + FLOW_ACTION_JUMP = 31, + FLOW_ACTION_PIPE = 32, + FLOW_ACTION_VLAN_PUSH_ETH = 33, + FLOW_ACTION_VLAN_POP_ETH = 34, + FLOW_ACTION_CONTINUE = 35, + NUM_FLOW_ACTIONS = 36, +}; + +enum flow_action_hw_stats { + FLOW_ACTION_HW_STATS_IMMEDIATE = 1, + FLOW_ACTION_HW_STATS_DELAYED = 2, + FLOW_ACTION_HW_STATS_ANY = 3, + FLOW_ACTION_HW_STATS_DISABLED = 4, + FLOW_ACTION_HW_STATS_DONT_CARE = 7, +}; + +typedef void (*action_destr)(void *); + +enum flow_action_mangle_base { + FLOW_ACT_MANGLE_UNSPEC = 0, + FLOW_ACT_MANGLE_HDR_TYPE_ETH = 1, + FLOW_ACT_MANGLE_HDR_TYPE_IP4 = 2, + FLOW_ACT_MANGLE_HDR_TYPE_IP6 = 3, + FLOW_ACT_MANGLE_HDR_TYPE_TCP = 4, + FLOW_ACT_MANGLE_HDR_TYPE_UDP = 5, +}; + +struct nf_flowtable; + +struct ip_tunnel_info; + +struct psample_group; + +struct action_gate_entry; + +struct flow_action_cookie; + +struct flow_action_entry { + enum flow_action_id id; + u32 hw_index; + long unsigned int cookie; + u64 miss_cookie; + enum flow_action_hw_stats hw_stats; + action_destr destructor; + void *destructor_priv; + union { + u32 chain_index; + struct net_device *dev; + struct { + u16 vid; + __be16 proto; + u8 prio; + } vlan; + struct { + unsigned char dst[6]; + unsigned char src[6]; + } vlan_push_eth; + struct { + enum flow_action_mangle_base htype; + u32 offset; + u32 mask; + u32 val; + } mangle; + struct ip_tunnel_info *tunnel; + u32 csum_flags; + u32 mark; + u16 ptype; + u16 rx_queue; + u32 priority; + struct { + u32 ctx; + u32 index; + u8 vf; + } queue; + struct { + struct psample_group *psample_group; + u32 rate; + u32 trunc_size; + bool truncate; + } sample; + struct { + u32 burst; + u64 rate_bytes_ps; + u64 peakrate_bytes_ps; + u32 avrate; + u16 overhead; + u64 burst_pkt; + u64 rate_pkt_ps; + u32 mtu; + struct { + enum flow_action_id act_id; + u32 extval; + } exceed; + struct { + enum flow_action_id act_id; + u32 extval; + } notexceed; + } police; + struct { + int action; + u16 zone; + struct nf_flowtable *flow_table; + } ct; + struct { + long unsigned int cookie; + u32 mark; + u32 labels[4]; + bool orig_dir; + } ct_metadata; + struct { + u32 label; + __be16 proto; + u8 tc; + u8 bos; + u8 ttl; + } mpls_push; + struct { + __be16 proto; + } mpls_pop; + struct { + u32 label; + u8 tc; + u8 bos; + u8 ttl; + } mpls_mangle; + struct { + s32 prio; + u64 basetime; + u64 cycletime; + u64 cycletimeext; + u32 num_entries; + struct action_gate_entry *entries; + } gate; + struct { + u16 sid; + } pppoe; + }; + struct flow_action_cookie *user_cookie; +}; + +struct flow_action { + unsigned int num_entries; + struct flow_action_entry entries[0]; +}; + +struct flow_rule { + struct flow_match match; + struct flow_action action; +}; + +struct dsa_chip_data { + struct device *host_dev; + int sw_addr; + struct device *netdev[12]; + int eeprom_len; + struct device_node *of_node; + char *port_names[12]; + struct device_node *port_dn[12]; + s8 rtable[4]; +}; + +struct dsa_platform_data { + struct device *netdev; + struct net_device *of_netdev; + int nr_chips; + struct dsa_chip_data *chip; +}; + +struct phylink_link_state { + long unsigned int advertising[2]; + long unsigned int lp_advertising[2]; + phy_interface_t interface; + int speed; + int duplex; + int pause; + int rate_matching; + unsigned int link: 1; + unsigned int an_complete: 1; +}; + +struct phylink_pcs; + +struct phylink_mac_ops { + long unsigned int (*mac_get_caps)(struct phylink_config *, phy_interface_t); + struct phylink_pcs * (*mac_select_pcs)(struct phylink_config *, phy_interface_t); + int (*mac_prepare)(struct phylink_config *, unsigned int, phy_interface_t); + void (*mac_config)(struct phylink_config *, unsigned int, const struct phylink_link_state *); + int (*mac_finish)(struct phylink_config *, unsigned int, phy_interface_t); + void (*mac_link_down)(struct phylink_config *, unsigned int, phy_interface_t); + void (*mac_link_up)(struct phylink_config *, struct phy_device *, unsigned int, phy_interface_t, int, int, bool, bool); + void (*mac_disable_tx_lpi)(struct phylink_config *); + int (*mac_enable_tx_lpi)(struct phylink_config *, u32, bool); +}; + +struct phylink_pcs_ops; + +struct phylink_pcs { + long unsigned int supported_interfaces[1]; + const struct phylink_pcs_ops *ops; + struct phylink *phylink; + bool poll; + bool rxc_always_on; +}; + +struct phylink_pcs_ops { + int (*pcs_validate)(struct phylink_pcs *, long unsigned int *, const struct phylink_link_state *); + unsigned int (*pcs_inband_caps)(struct phylink_pcs *, phy_interface_t); + int (*pcs_enable)(struct phylink_pcs *); + void (*pcs_disable)(struct phylink_pcs *); + void (*pcs_pre_config)(struct phylink_pcs *, phy_interface_t); + int (*pcs_post_config)(struct phylink_pcs *, phy_interface_t); + void (*pcs_get_state)(struct phylink_pcs *, unsigned int, struct phylink_link_state *); + int (*pcs_config)(struct phylink_pcs *, unsigned int, phy_interface_t, const long unsigned int *, bool); + void (*pcs_an_restart)(struct phylink_pcs *); + void (*pcs_link_up)(struct phylink_pcs *, unsigned int, phy_interface_t, int, int); + void (*pcs_disable_eee)(struct phylink_pcs *); + void (*pcs_enable_eee)(struct phylink_pcs *); + int (*pcs_pre_init)(struct phylink_pcs *); +}; + +struct flow_action_cookie { + u32 cookie_len; + u8 cookie[0]; +}; + +struct flow_stats { + u64 pkts; + u64 bytes; + u64 drops; + u64 lastused; + enum flow_action_hw_stats used_hw_stats; + bool used_hw_stats_valid; +}; + +enum flow_cls_command { + FLOW_CLS_REPLACE = 0, + FLOW_CLS_DESTROY = 1, + FLOW_CLS_STATS = 2, + FLOW_CLS_TMPLT_CREATE = 3, + FLOW_CLS_TMPLT_DESTROY = 4, +}; + +struct flow_cls_common_offload { + u32 chain_index; + __be16 protocol; + u32 prio; + bool skip_sw; + struct netlink_ext_ack *extack; +}; + +struct flow_cls_offload { + struct flow_cls_common_offload common; + enum flow_cls_command command; + bool use_act_stats; + long unsigned int cookie; + struct flow_rule *rule; + struct flow_stats stats; + u32 classid; +}; + +enum devlink_sb_pool_type { + DEVLINK_SB_POOL_TYPE_INGRESS = 0, + DEVLINK_SB_POOL_TYPE_EGRESS = 1, +}; + +enum devlink_sb_threshold_type { + DEVLINK_SB_THRESHOLD_TYPE_STATIC = 0, + DEVLINK_SB_THRESHOLD_TYPE_DYNAMIC = 1, +}; + +enum devlink_param_cmode { + DEVLINK_PARAM_CMODE_RUNTIME = 0, + DEVLINK_PARAM_CMODE_DRIVERINIT = 1, + DEVLINK_PARAM_CMODE_PERMANENT = 2, + __DEVLINK_PARAM_CMODE_MAX = 3, + DEVLINK_PARAM_CMODE_MAX = 2, +}; + +struct devlink_sb_pool_info { + enum devlink_sb_pool_type pool_type; + u32 size; + enum devlink_sb_threshold_type threshold_type; + u32 cell_size; +}; + +union devlink_param_value { + u8 vu8; + u16 vu16; + u32 vu32; + u64 vu64; + char vstr[32]; + bool vbool; +}; + +struct devlink_param_gset_ctx { + union devlink_param_value val; + enum devlink_param_cmode cmode; +}; + +struct switchdev_mst_state { + u16 msti; + u8 state; +}; + +struct switchdev_brport_flags { + long unsigned int val; + long unsigned int mask; +}; + +struct switchdev_vlan_msti { + u16 vid; + u16 msti; +}; + +enum switchdev_obj_id { + SWITCHDEV_OBJ_ID_UNDEFINED = 0, + SWITCHDEV_OBJ_ID_PORT_VLAN = 1, + SWITCHDEV_OBJ_ID_PORT_MDB = 2, + SWITCHDEV_OBJ_ID_HOST_MDB = 3, + SWITCHDEV_OBJ_ID_MRP = 4, + SWITCHDEV_OBJ_ID_RING_TEST_MRP = 5, + SWITCHDEV_OBJ_ID_RING_ROLE_MRP = 6, + SWITCHDEV_OBJ_ID_RING_STATE_MRP = 7, + SWITCHDEV_OBJ_ID_IN_TEST_MRP = 8, + SWITCHDEV_OBJ_ID_IN_ROLE_MRP = 9, + SWITCHDEV_OBJ_ID_IN_STATE_MRP = 10, +}; + +struct switchdev_obj { + struct list_head list; + struct net_device *orig_dev; + enum switchdev_obj_id id; + u32 flags; + void *complete_priv; + void (*complete)(struct net_device *, int, void *); +}; + +struct switchdev_obj_port_vlan { + struct switchdev_obj obj; + u16 flags; + u16 vid; + bool changed; +}; + +struct switchdev_obj_port_mdb { + struct switchdev_obj obj; + unsigned char addr[6]; + u16 vid; +}; + +struct switchdev_obj_mrp { + struct switchdev_obj obj; + struct net_device *p_port; + struct net_device *s_port; + u32 ring_id; + u16 prio; +}; + +struct switchdev_obj_ring_role_mrp { + struct switchdev_obj obj; + u8 ring_role; + u32 ring_id; + u8 sw_backup; +}; + +enum dsa_tag_protocol { + DSA_TAG_PROTO_NONE = 0, + DSA_TAG_PROTO_BRCM = 1, + DSA_TAG_PROTO_BRCM_LEGACY = 22, + DSA_TAG_PROTO_BRCM_LEGACY_FCS = 29, + DSA_TAG_PROTO_BRCM_PREPEND = 2, + DSA_TAG_PROTO_DSA = 3, + DSA_TAG_PROTO_EDSA = 4, + DSA_TAG_PROTO_GSWIP = 5, + DSA_TAG_PROTO_KSZ9477 = 6, + DSA_TAG_PROTO_KSZ9893 = 7, + DSA_TAG_PROTO_LAN9303 = 8, + DSA_TAG_PROTO_MTK = 9, + DSA_TAG_PROTO_QCA = 10, + DSA_TAG_PROTO_TRAILER = 11, + DSA_TAG_PROTO_8021Q = 12, + DSA_TAG_PROTO_SJA1105 = 13, + DSA_TAG_PROTO_KSZ8795 = 14, + DSA_TAG_PROTO_OCELOT = 15, + DSA_TAG_PROTO_AR9331 = 16, + DSA_TAG_PROTO_RTL4_A = 17, + DSA_TAG_PROTO_HELLCREEK = 18, + DSA_TAG_PROTO_XRS700X = 19, + DSA_TAG_PROTO_OCELOT_8021Q = 20, + DSA_TAG_PROTO_SEVILLE = 21, + DSA_TAG_PROTO_SJA1110 = 23, + DSA_TAG_PROTO_RTL8_4 = 24, + DSA_TAG_PROTO_RTL8_4T = 25, + DSA_TAG_PROTO_RZN1_A5PSW = 26, + DSA_TAG_PROTO_LAN937X = 27, + DSA_TAG_PROTO_VSC73XX_8021Q = 28, +}; + +struct dsa_device_ops { + struct sk_buff * (*xmit)(struct sk_buff *, struct net_device *); + struct sk_buff * (*rcv)(struct sk_buff *, struct net_device *); + void (*flow_dissect)(const struct sk_buff *, __be16 *, int *); + int (*connect)(struct dsa_switch *); + void (*disconnect)(struct dsa_switch *); + unsigned int needed_headroom; + unsigned int needed_tailroom; + const char *name; + enum dsa_tag_protocol proto; + bool promisc_on_conduit; +}; + +struct dsa_8021q_context; + +struct dsa_switch_ops; + +struct dsa_switch { + struct device *dev; + struct dsa_switch_tree *dst; + unsigned int index; + u32 setup: 1; + u32 vlan_filtering_is_global: 1; + u32 needs_standalone_vlan_filtering: 1; + u32 configure_vlan_while_not_filtering: 1; + u32 untag_bridge_pvid: 1; + u32 untag_vlan_aware_bridge_pvid: 1; + u32 assisted_learning_on_cpu_port: 1; + u32 vlan_filtering: 1; + u32 mtu_enforcement_ingress: 1; + u32 fdb_isolation: 1; + u32 dscp_prio_mapping_is_global: 1; + struct notifier_block nb; + void *priv; + void *tagger_data; + struct dsa_chip_data *cd; + const struct dsa_switch_ops *ops; + const struct phylink_mac_ops *phylink_mac_ops; + u32 phys_mii_mask; + struct mii_bus *user_mii_bus; + unsigned int ageing_time_min; + unsigned int ageing_time_max; + struct dsa_8021q_context *tag_8021q_ctx; + struct devlink *devlink; + unsigned int num_tx_queues; + unsigned int num_lag_ids; + unsigned int max_num_bridges; + unsigned int num_ports; +}; + +struct dsa_lag { + struct net_device *dev; + unsigned int id; + struct mutex fdb_lock; + struct list_head fdbs; + refcount_t refcount; +}; + +struct dsa_switch_tree { + struct list_head list; + struct list_head ports; + struct raw_notifier_head nh; + unsigned int index; + struct kref refcount; + struct dsa_lag **lags; + const struct dsa_device_ops *tag_ops; + enum dsa_tag_protocol default_proto; + bool setup; + struct dsa_platform_data *pd; + struct list_head rtable; + unsigned int lags_len; + unsigned int last_switch; +}; + +struct dsa_mall_mirror_tc_entry { + u8 to_local_port; + bool ingress; +}; + +struct dsa_mall_policer_tc_entry { + u32 burst; + u64 rate_bytes_per_sec; +}; + +struct dsa_bridge { + struct net_device *dev; + unsigned int num; + bool tx_fwd_offload; + refcount_t refcount; +}; + +enum dsa_db_type { + DSA_DB_PORT = 0, + DSA_DB_LAG = 1, + DSA_DB_BRIDGE = 2, +}; + +struct dsa_db { + enum dsa_db_type type; + union { + const struct dsa_port *dp; + struct dsa_lag lag; + struct dsa_bridge bridge; + }; +}; + +typedef int dsa_fdb_dump_cb_t(const unsigned char *, u16, bool, void *); + +struct devlink_info_req; + +struct dsa_switch_ops { + enum dsa_tag_protocol (*get_tag_protocol)(struct dsa_switch *, int, enum dsa_tag_protocol); + int (*change_tag_protocol)(struct dsa_switch *, enum dsa_tag_protocol); + int (*connect_tag_protocol)(struct dsa_switch *, enum dsa_tag_protocol); + int (*port_change_conduit)(struct dsa_switch *, int, struct net_device *, struct netlink_ext_ack *); + int (*setup)(struct dsa_switch *); + void (*teardown)(struct dsa_switch *); + int (*port_setup)(struct dsa_switch *, int); + void (*port_teardown)(struct dsa_switch *, int); + u32 (*get_phy_flags)(struct dsa_switch *, int); + int (*phy_read)(struct dsa_switch *, int, int); + int (*phy_write)(struct dsa_switch *, int, int, u16); + void (*phylink_get_caps)(struct dsa_switch *, int, struct phylink_config *); + void (*phylink_fixed_state)(struct dsa_switch *, int, struct phylink_link_state *); + void (*get_strings)(struct dsa_switch *, int, u32, uint8_t *); + void (*get_ethtool_stats)(struct dsa_switch *, int, uint64_t *); + int (*get_sset_count)(struct dsa_switch *, int, int); + void (*get_ethtool_phy_stats)(struct dsa_switch *, int, uint64_t *); + void (*get_eth_phy_stats)(struct dsa_switch *, int, struct ethtool_eth_phy_stats *); + void (*get_eth_mac_stats)(struct dsa_switch *, int, struct ethtool_eth_mac_stats *); + void (*get_eth_ctrl_stats)(struct dsa_switch *, int, struct ethtool_eth_ctrl_stats *); + void (*get_rmon_stats)(struct dsa_switch *, int, struct ethtool_rmon_stats *, const struct ethtool_rmon_hist_range **); + void (*get_ts_stats)(struct dsa_switch *, int, struct ethtool_ts_stats *); + void (*get_stats64)(struct dsa_switch *, int, struct rtnl_link_stats64 *); + void (*get_pause_stats)(struct dsa_switch *, int, struct ethtool_pause_stats *); + void (*self_test)(struct dsa_switch *, int, struct ethtool_test *, u64 *); + void (*get_wol)(struct dsa_switch *, int, struct ethtool_wolinfo *); + int (*set_wol)(struct dsa_switch *, int, struct ethtool_wolinfo *); + int (*get_ts_info)(struct dsa_switch *, int, struct kernel_ethtool_ts_info *); + int (*get_mm)(struct dsa_switch *, int, struct ethtool_mm_state *); + int (*set_mm)(struct dsa_switch *, int, struct ethtool_mm_cfg *, struct netlink_ext_ack *); + void (*get_mm_stats)(struct dsa_switch *, int, struct ethtool_mm_stats *); + int (*port_get_default_prio)(struct dsa_switch *, int); + int (*port_set_default_prio)(struct dsa_switch *, int, u8); + int (*port_get_dscp_prio)(struct dsa_switch *, int, u8); + int (*port_add_dscp_prio)(struct dsa_switch *, int, u8, u8); + int (*port_del_dscp_prio)(struct dsa_switch *, int, u8, u8); + int (*port_set_apptrust)(struct dsa_switch *, int, const u8 *, int); + int (*port_get_apptrust)(struct dsa_switch *, int, u8 *, int *); + int (*suspend)(struct dsa_switch *); + int (*resume)(struct dsa_switch *); + int (*port_enable)(struct dsa_switch *, int, struct phy_device *); + void (*port_disable)(struct dsa_switch *, int); + int (*port_set_mac_address)(struct dsa_switch *, int, const unsigned char *); + struct dsa_port * (*preferred_default_local_cpu_port)(struct dsa_switch *); + bool (*support_eee)(struct dsa_switch *, int); + int (*set_mac_eee)(struct dsa_switch *, int, struct ethtool_keee *); + int (*get_eeprom_len)(struct dsa_switch *); + int (*get_eeprom)(struct dsa_switch *, struct ethtool_eeprom *, u8 *); + int (*set_eeprom)(struct dsa_switch *, struct ethtool_eeprom *, u8 *); + int (*get_regs_len)(struct dsa_switch *, int); + void (*get_regs)(struct dsa_switch *, int, struct ethtool_regs *, void *); + int (*port_prechangeupper)(struct dsa_switch *, int, struct netdev_notifier_changeupper_info *); + int (*set_ageing_time)(struct dsa_switch *, unsigned int); + int (*port_bridge_join)(struct dsa_switch *, int, struct dsa_bridge, bool *, struct netlink_ext_ack *); + void (*port_bridge_leave)(struct dsa_switch *, int, struct dsa_bridge); + void (*port_stp_state_set)(struct dsa_switch *, int, u8); + int (*port_mst_state_set)(struct dsa_switch *, int, const struct switchdev_mst_state *); + void (*port_fast_age)(struct dsa_switch *, int); + int (*port_vlan_fast_age)(struct dsa_switch *, int, u16); + int (*port_pre_bridge_flags)(struct dsa_switch *, int, struct switchdev_brport_flags, struct netlink_ext_ack *); + int (*port_bridge_flags)(struct dsa_switch *, int, struct switchdev_brport_flags, struct netlink_ext_ack *); + void (*port_set_host_flood)(struct dsa_switch *, int, bool, bool); + int (*port_vlan_filtering)(struct dsa_switch *, int, bool, struct netlink_ext_ack *); + int (*port_vlan_add)(struct dsa_switch *, int, const struct switchdev_obj_port_vlan *, struct netlink_ext_ack *); + int (*port_vlan_del)(struct dsa_switch *, int, const struct switchdev_obj_port_vlan *); + int (*vlan_msti_set)(struct dsa_switch *, struct dsa_bridge, const struct switchdev_vlan_msti *); + int (*port_fdb_add)(struct dsa_switch *, int, const unsigned char *, u16, struct dsa_db); + int (*port_fdb_del)(struct dsa_switch *, int, const unsigned char *, u16, struct dsa_db); + int (*port_fdb_dump)(struct dsa_switch *, int, dsa_fdb_dump_cb_t *, void *); + int (*lag_fdb_add)(struct dsa_switch *, struct dsa_lag, const unsigned char *, u16, struct dsa_db); + int (*lag_fdb_del)(struct dsa_switch *, struct dsa_lag, const unsigned char *, u16, struct dsa_db); + int (*port_mdb_add)(struct dsa_switch *, int, const struct switchdev_obj_port_mdb *, struct dsa_db); + int (*port_mdb_del)(struct dsa_switch *, int, const struct switchdev_obj_port_mdb *, struct dsa_db); + int (*get_rxnfc)(struct dsa_switch *, int, struct ethtool_rxnfc *, u32 *); + int (*set_rxnfc)(struct dsa_switch *, int, struct ethtool_rxnfc *); + int (*cls_flower_add)(struct dsa_switch *, int, struct flow_cls_offload *, bool); + int (*cls_flower_del)(struct dsa_switch *, int, struct flow_cls_offload *, bool); + int (*cls_flower_stats)(struct dsa_switch *, int, struct flow_cls_offload *, bool); + int (*port_mirror_add)(struct dsa_switch *, int, struct dsa_mall_mirror_tc_entry *, bool, struct netlink_ext_ack *); + void (*port_mirror_del)(struct dsa_switch *, int, struct dsa_mall_mirror_tc_entry *); + int (*port_policer_add)(struct dsa_switch *, int, struct dsa_mall_policer_tc_entry *); + void (*port_policer_del)(struct dsa_switch *, int); + int (*port_setup_tc)(struct dsa_switch *, int, enum tc_setup_type, void *); + int (*crosschip_bridge_join)(struct dsa_switch *, int, int, int, struct dsa_bridge, struct netlink_ext_ack *); + void (*crosschip_bridge_leave)(struct dsa_switch *, int, int, int, struct dsa_bridge); + int (*crosschip_lag_change)(struct dsa_switch *, int, int); + int (*crosschip_lag_join)(struct dsa_switch *, int, int, struct dsa_lag, struct netdev_lag_upper_info *, struct netlink_ext_ack *); + int (*crosschip_lag_leave)(struct dsa_switch *, int, int, struct dsa_lag); + int (*port_hwtstamp_get)(struct dsa_switch *, int, struct kernel_hwtstamp_config *); + int (*port_hwtstamp_set)(struct dsa_switch *, int, struct kernel_hwtstamp_config *, struct netlink_ext_ack *); + void (*port_txtstamp)(struct dsa_switch *, int, struct sk_buff *); + bool (*port_rxtstamp)(struct dsa_switch *, int, struct sk_buff *, unsigned int); + int (*devlink_param_get)(struct dsa_switch *, u32, struct devlink_param_gset_ctx *); + int (*devlink_param_set)(struct dsa_switch *, u32, struct devlink_param_gset_ctx *); + int (*devlink_info_get)(struct dsa_switch *, struct devlink_info_req *, struct netlink_ext_ack *); + int (*devlink_sb_pool_get)(struct dsa_switch *, unsigned int, u16, struct devlink_sb_pool_info *); + int (*devlink_sb_pool_set)(struct dsa_switch *, unsigned int, u16, u32, enum devlink_sb_threshold_type, struct netlink_ext_ack *); + int (*devlink_sb_port_pool_get)(struct dsa_switch *, int, unsigned int, u16, u32 *); + int (*devlink_sb_port_pool_set)(struct dsa_switch *, int, unsigned int, u16, u32, struct netlink_ext_ack *); + int (*devlink_sb_tc_pool_bind_get)(struct dsa_switch *, int, unsigned int, u16, enum devlink_sb_pool_type, u16 *, u32 *); + int (*devlink_sb_tc_pool_bind_set)(struct dsa_switch *, int, unsigned int, u16, enum devlink_sb_pool_type, u16, u32, struct netlink_ext_ack *); + int (*devlink_sb_occ_snapshot)(struct dsa_switch *, unsigned int); + int (*devlink_sb_occ_max_clear)(struct dsa_switch *, unsigned int); + int (*devlink_sb_occ_port_pool_get)(struct dsa_switch *, int, unsigned int, u16, u32 *, u32 *); + int (*devlink_sb_occ_tc_port_bind_get)(struct dsa_switch *, int, unsigned int, u16, enum devlink_sb_pool_type, u32 *, u32 *); + int (*port_change_mtu)(struct dsa_switch *, int, int); + int (*port_max_mtu)(struct dsa_switch *, int); + int (*port_lag_change)(struct dsa_switch *, int); + int (*port_lag_join)(struct dsa_switch *, int, struct dsa_lag, struct netdev_lag_upper_info *, struct netlink_ext_ack *); + int (*port_lag_leave)(struct dsa_switch *, int, struct dsa_lag); + int (*port_hsr_join)(struct dsa_switch *, int, struct net_device *, struct netlink_ext_ack *); + int (*port_hsr_leave)(struct dsa_switch *, int, struct net_device *); + int (*port_mrp_add)(struct dsa_switch *, int, const struct switchdev_obj_mrp *); + int (*port_mrp_del)(struct dsa_switch *, int, const struct switchdev_obj_mrp *); + int (*port_mrp_add_ring_role)(struct dsa_switch *, int, const struct switchdev_obj_ring_role_mrp *); + int (*port_mrp_del_ring_role)(struct dsa_switch *, int, const struct switchdev_obj_ring_role_mrp *); + int (*tag_8021q_vlan_add)(struct dsa_switch *, int, u16, u16); + int (*tag_8021q_vlan_del)(struct dsa_switch *, int, u16); + void (*conduit_state_change)(struct dsa_switch *, const struct net_device *, bool); +}; + +struct dsa_stubs { + int (*conduit_hwtstamp_validate)(struct net_device *, const struct kernel_hwtstamp_config *, struct netlink_ext_ack *); +}; + +struct net_generic { + union { + struct { + unsigned int len; + struct callback_head rcu; + } s; + struct { + struct {} __empty_ptr; + void *ptr[0]; + }; + }; +}; + +struct fib_notifier_info { + int family; + struct netlink_ext_ack *extack; +}; + +enum fib_event_type { + FIB_EVENT_ENTRY_REPLACE = 0, + FIB_EVENT_ENTRY_APPEND = 1, + FIB_EVENT_ENTRY_ADD = 2, + FIB_EVENT_ENTRY_DEL = 3, + FIB_EVENT_RULE_ADD = 4, + FIB_EVENT_RULE_DEL = 5, + FIB_EVENT_NH_ADD = 6, + FIB_EVENT_NH_DEL = 7, + FIB_EVENT_VIF_ADD = 8, + FIB_EVENT_VIF_DEL = 9, +}; + +struct fib_notifier_net { + struct list_head fib_notifier_ops; + struct atomic_notifier_head fib_chain; +}; + +struct flow_dissector_key_vlan { + union { + struct { + u16 vlan_id: 12; + u16 vlan_dei: 1; + u16 vlan_priority: 3; + }; + __be16 vlan_tci; + }; + __be16 vlan_tpid; + __be16 vlan_eth_type; + u16 padding; +}; + +struct flow_dissector_mpls_lse { + u32 mpls_ttl: 8; + u32 mpls_bos: 1; + u32 mpls_tc: 3; + u32 mpls_label: 20; +}; + +struct flow_dissector_key_mpls { + struct flow_dissector_mpls_lse ls[7]; + u8 used_lses; +}; + +struct flow_dissector_key_enc_opts { + u8 data[255]; + u8 len; + u32 dst_opt_type; +}; + +struct flow_dissector_key_keyid { + __be32 keyid; +}; + +struct flow_dissector_key_ipv4_addrs { + __be32 src; + __be32 dst; +}; + +struct flow_dissector_key_ipv6_addrs { + struct in6_addr src; + struct in6_addr dst; +}; + +struct flow_dissector_key_arp { + __u32 sip; + __u32 tip; + __u8 op; + unsigned char sha[6]; + unsigned char tha[6]; +}; + +struct flow_dissector_key_ports { + union { + __be32 ports; + struct { + __be16 src; + __be16 dst; + }; + }; +}; + +struct flow_dissector_key_ports_range { + union { + struct flow_dissector_key_ports tp; + struct { + struct flow_dissector_key_ports tp_min; + struct flow_dissector_key_ports tp_max; + }; + }; +}; + +struct flow_dissector_key_icmp { + struct { + u8 type; + u8 code; + }; + u16 id; +}; + +struct flow_dissector_key_eth_addrs { + unsigned char dst[6]; + unsigned char src[6]; +}; + +struct flow_dissector_key_tcp { + __be16 flags; +}; + +struct flow_dissector_key_ip { + __u8 tos; + __u8 ttl; +}; + +struct flow_dissector_key_meta { + int ingress_ifindex; + u16 ingress_iftype; + u8 l2_miss; +}; + +struct flow_dissector_key_ct { + u16 ct_state; + u16 ct_zone; + u32 ct_mark; + u32 ct_labels[4]; +}; + +struct flow_dissector_key_pppoe { + __be16 session_id; + __be16 ppp_proto; + __be16 type; +}; + +struct flow_dissector_key_l2tpv3 { + __be32 session_id; +}; + +struct flow_dissector_key_ipsec { + __be32 spi; +}; + +struct flow_match_meta { + struct flow_dissector_key_meta *key; + struct flow_dissector_key_meta *mask; +}; + +struct flow_match_basic { + struct flow_dissector_key_basic *key; + struct flow_dissector_key_basic *mask; +}; + +struct flow_match_control { + struct flow_dissector_key_control *key; + struct flow_dissector_key_control *mask; +}; + +struct flow_match_eth_addrs { + struct flow_dissector_key_eth_addrs *key; + struct flow_dissector_key_eth_addrs *mask; +}; + +struct flow_match_vlan { + struct flow_dissector_key_vlan *key; + struct flow_dissector_key_vlan *mask; +}; + +struct flow_match_arp { + struct flow_dissector_key_arp *key; + struct flow_dissector_key_arp *mask; +}; + +struct flow_match_ipv4_addrs { + struct flow_dissector_key_ipv4_addrs *key; + struct flow_dissector_key_ipv4_addrs *mask; +}; + +struct flow_match_ipv6_addrs { + struct flow_dissector_key_ipv6_addrs *key; + struct flow_dissector_key_ipv6_addrs *mask; +}; + +struct flow_match_ip { + struct flow_dissector_key_ip *key; + struct flow_dissector_key_ip *mask; +}; + +struct flow_match_ports { + struct flow_dissector_key_ports *key; + struct flow_dissector_key_ports *mask; +}; + +struct flow_match_ports_range { + struct flow_dissector_key_ports_range *key; + struct flow_dissector_key_ports_range *mask; +}; + +struct flow_match_icmp { + struct flow_dissector_key_icmp *key; + struct flow_dissector_key_icmp *mask; +}; + +struct flow_match_tcp { + struct flow_dissector_key_tcp *key; + struct flow_dissector_key_tcp *mask; +}; + +struct flow_match_ipsec { + struct flow_dissector_key_ipsec *key; + struct flow_dissector_key_ipsec *mask; +}; + +struct flow_match_mpls { + struct flow_dissector_key_mpls *key; + struct flow_dissector_key_mpls *mask; +}; + +struct flow_match_enc_keyid { + struct flow_dissector_key_keyid *key; + struct flow_dissector_key_keyid *mask; +}; + +struct flow_match_enc_opts { + struct flow_dissector_key_enc_opts *key; + struct flow_dissector_key_enc_opts *mask; +}; + +struct flow_match_ct { + struct flow_dissector_key_ct *key; + struct flow_dissector_key_ct *mask; +}; + +struct flow_match_pppoe { + struct flow_dissector_key_pppoe *key; + struct flow_dissector_key_pppoe *mask; +}; + +struct flow_match_l2tpv3 { + struct flow_dissector_key_l2tpv3 *key; + struct flow_dissector_key_l2tpv3 *mask; +}; + +enum flow_block_command { + FLOW_BLOCK_BIND = 0, + FLOW_BLOCK_UNBIND = 1, +}; + +enum flow_block_binder_type { + FLOW_BLOCK_BINDER_TYPE_UNSPEC = 0, + FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS = 1, + FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS = 2, + FLOW_BLOCK_BINDER_TYPE_RED_EARLY_DROP = 3, + FLOW_BLOCK_BINDER_TYPE_RED_MARK = 4, +}; + +struct flow_block_offload { + enum flow_block_command command; + enum flow_block_binder_type binder_type; + bool block_shared; + bool unlocked_driver_cb; + struct net *net; + struct flow_block *block; + struct list_head cb_list; + struct list_head *driver_block_list; + struct netlink_ext_ack *extack; + struct Qdisc *sch; + struct list_head *cb_list_head; +}; + +struct flow_block_cb; + +struct flow_block_indr { + struct list_head list; + struct net_device *dev; + struct Qdisc *sch; + enum flow_block_binder_type binder_type; + void *data; + void *cb_priv; + void (*cleanup)(struct flow_block_cb *); +}; + +struct flow_block_cb { + struct list_head driver_list; + struct list_head list; + flow_setup_cb_t *cb; + void *cb_ident; + void *cb_priv; + void (*release)(void *); + struct flow_block_indr indr; + unsigned int refcnt; +}; + +enum offload_act_command { + FLOW_ACT_REPLACE = 0, + FLOW_ACT_DESTROY = 1, + FLOW_ACT_STATS = 2, +}; + +struct flow_offload_action { + struct netlink_ext_ack *extack; + enum offload_act_command command; + enum flow_action_id id; + u32 index; + long unsigned int cookie; + struct flow_stats stats; + struct flow_action action; +}; + +typedef int flow_indr_block_bind_cb_t(struct net_device *, struct Qdisc *, void *, enum tc_setup_type, void *, void *, void (*)(struct flow_block_cb *)); + +enum { + TCA_UNSPEC = 0, + TCA_KIND = 1, + TCA_OPTIONS = 2, + TCA_STATS = 3, + TCA_XSTATS = 4, + TCA_RATE = 5, + TCA_FCNT = 6, + TCA_STATS2 = 7, + TCA_STAB = 8, + TCA_PAD = 9, + TCA_DUMP_INVISIBLE = 10, + TCA_CHAIN = 11, + TCA_HW_OFFLOAD = 12, + TCA_INGRESS_BLOCK = 13, + TCA_EGRESS_BLOCK = 14, + TCA_DUMP_FLAGS = 15, + TCA_EXT_WARN_MSG = 16, + __TCA_MAX = 17, +}; + +struct flow_indr_dev { + struct list_head list; + flow_indr_block_bind_cb_t *cb; + void *cb_priv; + refcount_t refcnt; +}; + +struct flow_indir_dev_info { + void *data; + struct net_device *dev; + struct Qdisc *sch; + enum tc_setup_type type; + void (*cleanup)(struct flow_block_cb *); + struct list_head list; + enum flow_block_command command; + enum flow_block_binder_type binder_type; + struct list_head *cb_list; +}; + +struct skb_gso_cb { + union { + int mac_offset; + int data_offset; + }; + int encap_level; + __wsum csum; + __u16 csum_start; +}; + +struct offload_callbacks { + struct sk_buff * (*gso_segment)(struct sk_buff *, netdev_features_t); + struct sk_buff * (*gro_receive)(struct list_head *, struct sk_buff *); + int (*gro_complete)(struct sk_buff *, int); +}; + +struct packet_offload { + __be16 type; + u16 priority; + struct offload_callbacks callbacks; + struct list_head list; +}; + +struct inet6_skb_parm { + int iif; + __be16 ra; + __u16 dst0; + __u16 srcrt; + __u16 dst1; + __u16 lastopt; + __u16 nhoff; + __u16 flags; + __u16 dsthao; + __u16 frag_max_size; + __u16 srhoff; +}; + +struct net_protocol { + int (*handler)(struct sk_buff *); + int (*err_handler)(struct sk_buff *, u32); + unsigned int no_policy: 1; + unsigned int icmp_strict_tag_validation: 1; + u32 secret; +}; + +struct inet6_protocol { + int (*handler)(struct sk_buff *); + int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); + unsigned int flags; + u32 secret; +}; + +struct net_offload { + struct offload_callbacks callbacks; + unsigned int flags; + u32 secret; +}; + +struct rps_sock_flow_table; + +struct net_hotdata { + struct packet_offload ip_packet_offload; + struct net_offload tcpv4_offload; + struct net_protocol tcp_protocol; + struct net_offload udpv4_offload; + struct net_protocol udp_protocol; + struct packet_offload ipv6_packet_offload; + struct net_offload tcpv6_offload; + struct inet6_protocol tcpv6_protocol; + struct inet6_protocol udpv6_protocol; + struct net_offload udpv6_offload; + struct list_head offload_base; + struct kmem_cache *skbuff_cache; + struct kmem_cache *skbuff_fclone_cache; + struct kmem_cache *skb_small_head_cache; + struct rps_sock_flow_table *rps_sock_flow_table; + u32 rps_cpu_mask; + int gro_normal_batch; + int netdev_budget; + int netdev_budget_usecs; + int tstamp_prequeue; + int max_backlog; + int dev_tx_weight; + int dev_rx_weight; + int sysctl_max_skb_frags; + int sysctl_skb_defer_max; + int sysctl_mem_pcpu_rsv; +}; + +struct page_pool_params { + union { + struct { + unsigned int order; + unsigned int pool_size; + int nid; + struct device *dev; + struct napi_struct *napi; + enum dma_data_direction dma_dir; + unsigned int max_len; + unsigned int offset; + }; + struct page_pool_params_fast fast; + }; + union { + struct { + struct net_device *netdev; + unsigned int queue_idx; + unsigned int flags; + void (*init_callback)(netmem_ref, void *); + void *init_arg; + }; + struct page_pool_params_slow slow; + }; +}; + +struct page_pool_stats { + struct page_pool_alloc_stats alloc_stats; + struct page_pool_recycle_stats recycle_stats; +}; + +struct sd_flow_limit { + struct callback_head rcu; + unsigned int count; + u8 log_buckets; + unsigned int history_head; + u16 history[128]; + u8 buckets[0]; +}; + +enum lwtunnel_encap_types { + LWTUNNEL_ENCAP_NONE = 0, + LWTUNNEL_ENCAP_MPLS = 1, + LWTUNNEL_ENCAP_IP = 2, + LWTUNNEL_ENCAP_ILA = 3, + LWTUNNEL_ENCAP_IP6 = 4, + LWTUNNEL_ENCAP_SEG6 = 5, + LWTUNNEL_ENCAP_BPF = 6, + LWTUNNEL_ENCAP_SEG6_LOCAL = 7, + LWTUNNEL_ENCAP_RPL = 8, + LWTUNNEL_ENCAP_IOAM6 = 9, + LWTUNNEL_ENCAP_XFRM = 10, + __LWTUNNEL_ENCAP_MAX = 11, +}; + +struct rtnexthop { + short unsigned int rtnh_len; + unsigned char rtnh_flags; + unsigned char rtnh_hops; + int rtnh_ifindex; +}; + +struct lwtunnel_encap_ops { + int (*build_state)(struct net *, struct nlattr *, unsigned int, const void *, struct lwtunnel_state **, struct netlink_ext_ack *); + void (*destroy_state)(struct lwtunnel_state *); + int (*output)(struct net *, struct sock *, struct sk_buff *); + int (*input)(struct sk_buff *); + int (*fill_encap)(struct sk_buff *, struct lwtunnel_state *); + int (*get_encap_size)(struct lwtunnel_state *); + int (*cmp_encap)(struct lwtunnel_state *, struct lwtunnel_state *); + int (*xmit)(struct sk_buff *); + struct module *owner; +}; + +struct gen_pool_chunk { + struct list_head next_chunk; + atomic_long_t avail; + phys_addr_t phys_addr; + void *owner; + long unsigned int start_addr; + long unsigned int end_addr; + long unsigned int bits[0]; +}; + +enum { + NETDEV_A_PAGE_POOL_ID = 1, + NETDEV_A_PAGE_POOL_IFINDEX = 2, + NETDEV_A_PAGE_POOL_NAPI_ID = 3, + NETDEV_A_PAGE_POOL_INFLIGHT = 4, + NETDEV_A_PAGE_POOL_INFLIGHT_MEM = 5, + NETDEV_A_PAGE_POOL_DETACH_TIME = 6, + NETDEV_A_PAGE_POOL_DMABUF = 7, + NETDEV_A_PAGE_POOL_IO_URING = 8, + __NETDEV_A_PAGE_POOL_MAX = 9, + NETDEV_A_PAGE_POOL_MAX = 8, +}; + +enum { + NETDEV_A_QUEUE_ID = 1, + NETDEV_A_QUEUE_IFINDEX = 2, + NETDEV_A_QUEUE_TYPE = 3, + NETDEV_A_QUEUE_NAPI_ID = 4, + NETDEV_A_QUEUE_DMABUF = 5, + NETDEV_A_QUEUE_IO_URING = 6, + NETDEV_A_QUEUE_XSK = 7, + __NETDEV_A_QUEUE_MAX = 8, + NETDEV_A_QUEUE_MAX = 7, +}; + +struct netdev_nl_sock { + struct mutex lock; + struct list_head bindings; +}; + +struct dmabuf_genpool_chunk_owner { + struct net_iov_area area; + struct net_devmem_dmabuf_binding *binding; + dma_addr_t base_dma_addr; +}; + +enum { + XFRM_POLICY_TYPE_MAIN = 0, + XFRM_POLICY_TYPE_SUB = 1, + XFRM_POLICY_TYPE_MAX = 2, + XFRM_POLICY_TYPE_ANY = 255, +}; + +enum { + XFRM_MSG_BASE = 16, + XFRM_MSG_NEWSA = 16, + XFRM_MSG_DELSA = 17, + XFRM_MSG_GETSA = 18, + XFRM_MSG_NEWPOLICY = 19, + XFRM_MSG_DELPOLICY = 20, + XFRM_MSG_GETPOLICY = 21, + XFRM_MSG_ALLOCSPI = 22, + XFRM_MSG_ACQUIRE = 23, + XFRM_MSG_EXPIRE = 24, + XFRM_MSG_UPDPOLICY = 25, + XFRM_MSG_UPDSA = 26, + XFRM_MSG_POLEXPIRE = 27, + XFRM_MSG_FLUSHSA = 28, + XFRM_MSG_FLUSHPOLICY = 29, + XFRM_MSG_NEWAE = 30, + XFRM_MSG_GETAE = 31, + XFRM_MSG_REPORT = 32, + XFRM_MSG_MIGRATE = 33, + XFRM_MSG_NEWSADINFO = 34, + XFRM_MSG_GETSADINFO = 35, + XFRM_MSG_NEWSPDINFO = 36, + XFRM_MSG_GETSPDINFO = 37, + XFRM_MSG_MAPPING = 38, + XFRM_MSG_SETDEFAULT = 39, + XFRM_MSG_GETDEFAULT = 40, + __XFRM_MSG_MAX = 41, +}; + +enum xfrm_attr_type_t { + XFRMA_UNSPEC = 0, + XFRMA_ALG_AUTH = 1, + XFRMA_ALG_CRYPT = 2, + XFRMA_ALG_COMP = 3, + XFRMA_ENCAP = 4, + XFRMA_TMPL = 5, + XFRMA_SA = 6, + XFRMA_POLICY = 7, + XFRMA_SEC_CTX = 8, + XFRMA_LTIME_VAL = 9, + XFRMA_REPLAY_VAL = 10, + XFRMA_REPLAY_THRESH = 11, + XFRMA_ETIMER_THRESH = 12, + XFRMA_SRCADDR = 13, + XFRMA_COADDR = 14, + XFRMA_LASTUSED = 15, + XFRMA_POLICY_TYPE = 16, + XFRMA_MIGRATE = 17, + XFRMA_ALG_AEAD = 18, + XFRMA_KMADDRESS = 19, + XFRMA_ALG_AUTH_TRUNC = 20, + XFRMA_MARK = 21, + XFRMA_TFCPAD = 22, + XFRMA_REPLAY_ESN_VAL = 23, + XFRMA_SA_EXTRA_FLAGS = 24, + XFRMA_PROTO = 25, + XFRMA_ADDRESS_FILTER = 26, + XFRMA_PAD = 27, + XFRMA_OFFLOAD_DEV = 28, + XFRMA_SET_MARK = 29, + XFRMA_SET_MARK_MASK = 30, + XFRMA_IF_ID = 31, + XFRMA_MTIMER_THRESH = 32, + XFRMA_SA_DIR = 33, + XFRMA_NAT_KEEPALIVE_INTERVAL = 34, + XFRMA_SA_PCPU = 35, + XFRMA_IPTFS_DROP_TIME = 36, + XFRMA_IPTFS_REORDER_WINDOW = 37, + XFRMA_IPTFS_DONT_FRAG = 38, + XFRMA_IPTFS_INIT_DELAY = 39, + XFRMA_IPTFS_MAX_QSIZE = 40, + XFRMA_IPTFS_PKT_SIZE = 41, + __XFRMA_MAX = 42, +}; + +struct tc_ratespec { + unsigned char cell_log; + __u8 linklayer; + short unsigned int overhead; + short int cell_align; + short unsigned int mpu; + __u32 rate; +}; + +struct tc_prio_qopt { + int bands; + __u8 priomap[16]; +}; + +struct skb_array { + struct ptr_ring ring; +}; + +enum qdisc_state_t { + __QDISC_STATE_SCHED = 0, + __QDISC_STATE_DEACTIVATED = 1, + __QDISC_STATE_MISSED = 2, + __QDISC_STATE_DRAINING = 3, +}; + +enum qdisc_state2_t { + __QDISC_STATE2_RUNNING = 0, +}; + +struct qdisc_skb_cb { + struct { + unsigned int pkt_len; + u16 slave_dev_queue_mapping; + u16 tc_classid; + }; + unsigned char data[20]; +}; + +struct tc_skb_cb { + struct qdisc_skb_cb qdisc_cb; + u32 drop_reason; + u16 zone; + u16 mru; + u8 post_ct: 1; + u8 post_ct_snat: 1; + u8 post_ct_dnat: 1; +}; + +struct psched_ratecfg { + u64 rate_bytes_ps; + u32 mult; + u16 overhead; + u16 mpu; + u8 linklayer; + u8 shift; +}; + +struct psched_pktrate { + u64 rate_pkts_ps; + u32 mult; + u8 shift; +}; + +struct mini_Qdisc { + struct tcf_proto *filter_list; + struct tcf_block *block; + struct gnet_stats_basic_sync *cpu_bstats; + struct gnet_stats_queue *cpu_qstats; + long unsigned int rcu_state; +}; + +struct mini_Qdisc_pair { + struct mini_Qdisc miniq1; + struct mini_Qdisc miniq2; + struct mini_Qdisc **p_miniq; +}; + +struct xfrm_offload { + struct { + __u32 low; + __u32 hi; + } seq; + __u32 flags; + __u32 status; + __u32 orig_mac_len; + __u8 proto; + __u8 inner_ipproto; +}; + +struct sec_path { + int len; + int olen; + int verified_cnt; + struct xfrm_state *xvec[6]; + struct xfrm_offload ovec[1]; +}; + +struct pfifo_fast_priv { + struct skb_array q[3]; +}; + +enum net_xmit_qdisc_t { + __NET_XMIT_STOLEN = 65536, + __NET_XMIT_BYPASS = 131072, +}; + +struct tc_fifo_qopt { + __u32 limit; +}; + +enum tca_id { + TCA_ID_UNSPEC = 0, + TCA_ID_POLICE = 1, + TCA_ID_GACT = 5, + TCA_ID_IPT = 6, + TCA_ID_PEDIT = 7, + TCA_ID_MIRRED = 8, + TCA_ID_NAT = 9, + TCA_ID_XT = 10, + TCA_ID_SKBEDIT = 11, + TCA_ID_VLAN = 12, + TCA_ID_BPF = 13, + TCA_ID_CONNMARK = 14, + TCA_ID_SKBMOD = 15, + TCA_ID_CSUM = 16, + TCA_ID_TUNNEL_KEY = 17, + TCA_ID_SIMP = 22, + TCA_ID_IFE = 25, + TCA_ID_SAMPLE = 26, + TCA_ID_CTINFO = 27, + TCA_ID_MPLS = 28, + TCA_ID_CT = 29, + TCA_ID_GATE = 30, + __TCA_ID_MAX = 255, +}; + +struct tcf_t { + __u64 install; + __u64 lastuse; + __u64 expires; + __u64 firstuse; +}; + +struct tcf_walker { + int stop; + int skip; + int count; + bool nonempty; + long unsigned int cookie; + int (*fn)(struct tcf_proto *, void *, struct tcf_walker *); +}; + +struct tc_action; + +struct tcf_exts_miss_cookie_node; + +struct tcf_exts { + __u32 type; + int nr_actions; + struct tc_action **actions; + struct net *net; + netns_tracker ns_tracker; + struct tcf_exts_miss_cookie_node *miss_cookie_node; + int action; + int police; +}; + +struct tcf_idrinfo { + struct mutex lock; + struct idr action_idr; + struct net *net; +}; + +struct tc_action_ops; + +struct tc_cookie; + +struct tc_action { + const struct tc_action_ops *ops; + __u32 type; + struct tcf_idrinfo *idrinfo; + u32 tcfa_index; + refcount_t tcfa_refcnt; + atomic_t tcfa_bindcnt; + int tcfa_action; + struct tcf_t tcfa_tm; + long: 64; + struct gnet_stats_basic_sync tcfa_bstats; + struct gnet_stats_basic_sync tcfa_bstats_hw; + struct gnet_stats_queue tcfa_qstats; + struct net_rate_estimator *tcfa_rate_est; + spinlock_t tcfa_lock; + struct gnet_stats_basic_sync *cpu_bstats; + struct gnet_stats_basic_sync *cpu_bstats_hw; + struct gnet_stats_queue *cpu_qstats; + struct tc_cookie *user_cookie; + struct tcf_chain *goto_chain; + u32 tcfa_flags; + u8 hw_stats; + u8 used_hw_stats; + bool used_hw_stats_valid; + u32 in_hw_count; +}; + +typedef void (*tc_action_priv_destructor)(void *); + +struct tc_action_ops { + struct list_head head; + char kind[16]; + enum tca_id id; + unsigned int net_id; + size_t size; + struct module *owner; + int (*act)(struct sk_buff *, const struct tc_action *, struct tcf_result *); + int (*dump)(struct sk_buff *, struct tc_action *, int, int); + void (*cleanup)(struct tc_action *); + int (*lookup)(struct net *, struct tc_action **, u32); + int (*init)(struct net *, struct nlattr *, struct nlattr *, struct tc_action **, struct tcf_proto *, u32, struct netlink_ext_ack *); + int (*walk)(struct net *, struct sk_buff *, struct netlink_callback *, int, const struct tc_action_ops *, struct netlink_ext_ack *); + void (*stats_update)(struct tc_action *, u64, u64, u64, u64, bool); + size_t (*get_fill_size)(const struct tc_action *); + struct net_device * (*get_dev)(const struct tc_action *, tc_action_priv_destructor *); + struct psample_group * (*get_psample_group)(const struct tc_action *, tc_action_priv_destructor *); + int (*offload_act_setup)(struct tc_action *, void *, u32 *, bool, struct netlink_ext_ack *); +}; + +struct tc_cookie { + u8 *data; + u32 len; + struct callback_head rcu; +}; + +struct tc_qopt_offload_stats { + struct gnet_stats_basic_sync *bstats; + struct gnet_stats_queue *qstats; +}; + +enum tc_fifo_command { + TC_FIFO_REPLACE = 0, + TC_FIFO_DESTROY = 1, + TC_FIFO_STATS = 2, +}; + +struct tc_fifo_qopt_offload { + enum tc_fifo_command command; + u32 handle; + u32 parent; + union { + struct tc_qopt_offload_stats stats; + }; +}; + +struct tcf_ematch_tree_hdr { + __u16 nmatches; + __u16 progid; +}; + +enum { + TCA_EMATCH_TREE_UNSPEC = 0, + TCA_EMATCH_TREE_HDR = 1, + TCA_EMATCH_TREE_LIST = 2, + __TCA_EMATCH_TREE_MAX = 3, +}; + +struct tcf_ematch_hdr { + __u16 matchid; + __u16 kind; + __u16 flags; + __u16 pad; +}; + +struct tcf_pkt_info { + unsigned char *ptr; + int nexthdr; +}; + +struct tcf_ematch_ops; + +struct tcf_ematch { + struct tcf_ematch_ops *ops; + long unsigned int data; + unsigned int datalen; + u16 matchid; + u16 flags; + struct net *net; +}; + +struct tcf_ematch_ops { + int kind; + int datalen; + int (*change)(struct net *, void *, int, struct tcf_ematch *); + int (*match)(struct sk_buff *, struct tcf_ematch *, struct tcf_pkt_info *); + void (*destroy)(struct tcf_ematch *); + int (*dump)(struct sk_buff *, struct tcf_ematch *); + struct module *owner; + struct list_head link; +}; + +struct tcf_ematch_tree { + struct tcf_ematch_tree_hdr hdr; + struct tcf_ematch *matches; +}; + +struct bpf_tramp_link; + +struct bpf_tramp_links { + struct bpf_tramp_link *links[38]; + int nr_links; +}; + +struct bpf_tramp_link { + struct bpf_link link; + struct hlist_node tramp_hlist; + u64 cookie; +}; + +enum bpf_struct_ops_state { + BPF_STRUCT_OPS_STATE_INIT = 0, + BPF_STRUCT_OPS_STATE_INUSE = 1, + BPF_STRUCT_OPS_STATE_TOBEFREE = 2, + BPF_STRUCT_OPS_STATE_READY = 3, +}; + +struct bpf_struct_ops_common_value { + refcount_t refcnt; + enum bpf_struct_ops_state state; +}; + +struct bpf_dummy_ops_state { + int val; +}; + +struct bpf_dummy_ops { + int (*test_1)(struct bpf_dummy_ops_state *); + int (*test_2)(struct bpf_dummy_ops_state *, int, short unsigned int, char, long unsigned int); + int (*test_sleepable)(struct bpf_dummy_ops_state *); +}; + +typedef int (*dummy_ops_test_ret_fn)(struct bpf_dummy_ops_state *, ...); + +struct bpf_dummy_ops_test_args { + u64 args[12]; + struct bpf_dummy_ops_state state; +}; + +struct bpf_struct_ops_bpf_dummy_ops { + struct bpf_struct_ops_common_value common; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct bpf_dummy_ops data; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct phy_link_topology { + struct xarray phys; + u32 next_phy_index; +}; + +enum ethtool_header_flags { + ETHTOOL_FLAG_COMPACT_BITSETS = 1, + ETHTOOL_FLAG_OMIT_REPLY = 2, + ETHTOOL_FLAG_STATS = 4, +}; + +enum { + ETHTOOL_A_HEADER_UNSPEC = 0, + ETHTOOL_A_HEADER_DEV_INDEX = 1, + ETHTOOL_A_HEADER_DEV_NAME = 2, + ETHTOOL_A_HEADER_FLAGS = 3, + ETHTOOL_A_HEADER_PHY_INDEX = 4, + __ETHTOOL_A_HEADER_CNT = 5, + ETHTOOL_A_HEADER_MAX = 4, +}; + +enum { + ETHTOOL_A_STRSET_UNSPEC = 0, + ETHTOOL_A_STRSET_HEADER = 1, + ETHTOOL_A_STRSET_STRINGSETS = 2, + ETHTOOL_A_STRSET_COUNTS_ONLY = 3, + __ETHTOOL_A_STRSET_CNT = 4, + ETHTOOL_A_STRSET_MAX = 3, +}; + +enum { + ETHTOOL_A_PRIVFLAGS_UNSPEC = 0, + ETHTOOL_A_PRIVFLAGS_HEADER = 1, + ETHTOOL_A_PRIVFLAGS_FLAGS = 2, + __ETHTOOL_A_PRIVFLAGS_CNT = 3, + ETHTOOL_A_PRIVFLAGS_MAX = 2, +}; + +enum { + ETHTOOL_A_RINGS_UNSPEC = 0, + ETHTOOL_A_RINGS_HEADER = 1, + ETHTOOL_A_RINGS_RX_MAX = 2, + ETHTOOL_A_RINGS_RX_MINI_MAX = 3, + ETHTOOL_A_RINGS_RX_JUMBO_MAX = 4, + ETHTOOL_A_RINGS_TX_MAX = 5, + ETHTOOL_A_RINGS_RX = 6, + ETHTOOL_A_RINGS_RX_MINI = 7, + ETHTOOL_A_RINGS_RX_JUMBO = 8, + ETHTOOL_A_RINGS_TX = 9, + ETHTOOL_A_RINGS_RX_BUF_LEN = 10, + ETHTOOL_A_RINGS_TCP_DATA_SPLIT = 11, + ETHTOOL_A_RINGS_CQE_SIZE = 12, + ETHTOOL_A_RINGS_TX_PUSH = 13, + ETHTOOL_A_RINGS_RX_PUSH = 14, + ETHTOOL_A_RINGS_TX_PUSH_BUF_LEN = 15, + ETHTOOL_A_RINGS_TX_PUSH_BUF_LEN_MAX = 16, + ETHTOOL_A_RINGS_HDS_THRESH = 17, + ETHTOOL_A_RINGS_HDS_THRESH_MAX = 18, + __ETHTOOL_A_RINGS_CNT = 19, + ETHTOOL_A_RINGS_MAX = 18, +}; + +enum { + ETHTOOL_A_MM_UNSPEC = 0, + ETHTOOL_A_MM_HEADER = 1, + ETHTOOL_A_MM_PMAC_ENABLED = 2, + ETHTOOL_A_MM_TX_ENABLED = 3, + ETHTOOL_A_MM_TX_ACTIVE = 4, + ETHTOOL_A_MM_TX_MIN_FRAG_SIZE = 5, + ETHTOOL_A_MM_RX_MIN_FRAG_SIZE = 6, + ETHTOOL_A_MM_VERIFY_ENABLED = 7, + ETHTOOL_A_MM_VERIFY_STATUS = 8, + ETHTOOL_A_MM_VERIFY_TIME = 9, + ETHTOOL_A_MM_MAX_VERIFY_TIME = 10, + ETHTOOL_A_MM_STATS = 11, + __ETHTOOL_A_MM_CNT = 12, + ETHTOOL_A_MM_MAX = 11, +}; + +enum { + ETHTOOL_A_LINKINFO_UNSPEC = 0, + ETHTOOL_A_LINKINFO_HEADER = 1, + ETHTOOL_A_LINKINFO_PORT = 2, + ETHTOOL_A_LINKINFO_PHYADDR = 3, + ETHTOOL_A_LINKINFO_TP_MDIX = 4, + ETHTOOL_A_LINKINFO_TP_MDIX_CTRL = 5, + ETHTOOL_A_LINKINFO_TRANSCEIVER = 6, + __ETHTOOL_A_LINKINFO_CNT = 7, + ETHTOOL_A_LINKINFO_MAX = 6, +}; + +enum { + ETHTOOL_A_LINKMODES_UNSPEC = 0, + ETHTOOL_A_LINKMODES_HEADER = 1, + ETHTOOL_A_LINKMODES_AUTONEG = 2, + ETHTOOL_A_LINKMODES_OURS = 3, + ETHTOOL_A_LINKMODES_PEER = 4, + ETHTOOL_A_LINKMODES_SPEED = 5, + ETHTOOL_A_LINKMODES_DUPLEX = 6, + ETHTOOL_A_LINKMODES_MASTER_SLAVE_CFG = 7, + ETHTOOL_A_LINKMODES_MASTER_SLAVE_STATE = 8, + ETHTOOL_A_LINKMODES_LANES = 9, + ETHTOOL_A_LINKMODES_RATE_MATCHING = 10, + __ETHTOOL_A_LINKMODES_CNT = 11, + ETHTOOL_A_LINKMODES_MAX = 10, +}; + +enum { + ETHTOOL_A_LINKSTATE_UNSPEC = 0, + ETHTOOL_A_LINKSTATE_HEADER = 1, + ETHTOOL_A_LINKSTATE_LINK = 2, + ETHTOOL_A_LINKSTATE_SQI = 3, + ETHTOOL_A_LINKSTATE_SQI_MAX = 4, + ETHTOOL_A_LINKSTATE_EXT_STATE = 5, + ETHTOOL_A_LINKSTATE_EXT_SUBSTATE = 6, + ETHTOOL_A_LINKSTATE_EXT_DOWN_CNT = 7, + __ETHTOOL_A_LINKSTATE_CNT = 8, + ETHTOOL_A_LINKSTATE_MAX = 7, +}; + +enum { + ETHTOOL_A_DEBUG_UNSPEC = 0, + ETHTOOL_A_DEBUG_HEADER = 1, + ETHTOOL_A_DEBUG_MSGMASK = 2, + __ETHTOOL_A_DEBUG_CNT = 3, + ETHTOOL_A_DEBUG_MAX = 2, +}; + +enum { + ETHTOOL_A_WOL_UNSPEC = 0, + ETHTOOL_A_WOL_HEADER = 1, + ETHTOOL_A_WOL_MODES = 2, + ETHTOOL_A_WOL_SOPASS = 3, + __ETHTOOL_A_WOL_CNT = 4, + ETHTOOL_A_WOL_MAX = 3, +}; + +enum { + ETHTOOL_A_FEATURES_UNSPEC = 0, + ETHTOOL_A_FEATURES_HEADER = 1, + ETHTOOL_A_FEATURES_HW = 2, + ETHTOOL_A_FEATURES_WANTED = 3, + ETHTOOL_A_FEATURES_ACTIVE = 4, + ETHTOOL_A_FEATURES_NOCHANGE = 5, + __ETHTOOL_A_FEATURES_CNT = 6, + ETHTOOL_A_FEATURES_MAX = 5, +}; + +enum { + ETHTOOL_A_CHANNELS_UNSPEC = 0, + ETHTOOL_A_CHANNELS_HEADER = 1, + ETHTOOL_A_CHANNELS_RX_MAX = 2, + ETHTOOL_A_CHANNELS_TX_MAX = 3, + ETHTOOL_A_CHANNELS_OTHER_MAX = 4, + ETHTOOL_A_CHANNELS_COMBINED_MAX = 5, + ETHTOOL_A_CHANNELS_RX_COUNT = 6, + ETHTOOL_A_CHANNELS_TX_COUNT = 7, + ETHTOOL_A_CHANNELS_OTHER_COUNT = 8, + ETHTOOL_A_CHANNELS_COMBINED_COUNT = 9, + __ETHTOOL_A_CHANNELS_CNT = 10, + ETHTOOL_A_CHANNELS_MAX = 9, +}; + +enum { + ETHTOOL_A_COALESCE_UNSPEC = 0, + ETHTOOL_A_COALESCE_HEADER = 1, + ETHTOOL_A_COALESCE_RX_USECS = 2, + ETHTOOL_A_COALESCE_RX_MAX_FRAMES = 3, + ETHTOOL_A_COALESCE_RX_USECS_IRQ = 4, + ETHTOOL_A_COALESCE_RX_MAX_FRAMES_IRQ = 5, + ETHTOOL_A_COALESCE_TX_USECS = 6, + ETHTOOL_A_COALESCE_TX_MAX_FRAMES = 7, + ETHTOOL_A_COALESCE_TX_USECS_IRQ = 8, + ETHTOOL_A_COALESCE_TX_MAX_FRAMES_IRQ = 9, + ETHTOOL_A_COALESCE_STATS_BLOCK_USECS = 10, + ETHTOOL_A_COALESCE_USE_ADAPTIVE_RX = 11, + ETHTOOL_A_COALESCE_USE_ADAPTIVE_TX = 12, + ETHTOOL_A_COALESCE_PKT_RATE_LOW = 13, + ETHTOOL_A_COALESCE_RX_USECS_LOW = 14, + ETHTOOL_A_COALESCE_RX_MAX_FRAMES_LOW = 15, + ETHTOOL_A_COALESCE_TX_USECS_LOW = 16, + ETHTOOL_A_COALESCE_TX_MAX_FRAMES_LOW = 17, + ETHTOOL_A_COALESCE_PKT_RATE_HIGH = 18, + ETHTOOL_A_COALESCE_RX_USECS_HIGH = 19, + ETHTOOL_A_COALESCE_RX_MAX_FRAMES_HIGH = 20, + ETHTOOL_A_COALESCE_TX_USECS_HIGH = 21, + ETHTOOL_A_COALESCE_TX_MAX_FRAMES_HIGH = 22, + ETHTOOL_A_COALESCE_RATE_SAMPLE_INTERVAL = 23, + ETHTOOL_A_COALESCE_USE_CQE_MODE_TX = 24, + ETHTOOL_A_COALESCE_USE_CQE_MODE_RX = 25, + ETHTOOL_A_COALESCE_TX_AGGR_MAX_BYTES = 26, + ETHTOOL_A_COALESCE_TX_AGGR_MAX_FRAMES = 27, + ETHTOOL_A_COALESCE_TX_AGGR_TIME_USECS = 28, + ETHTOOL_A_COALESCE_RX_PROFILE = 29, + ETHTOOL_A_COALESCE_TX_PROFILE = 30, + __ETHTOOL_A_COALESCE_CNT = 31, + ETHTOOL_A_COALESCE_MAX = 30, +}; + +enum { + ETHTOOL_A_PAUSE_UNSPEC = 0, + ETHTOOL_A_PAUSE_HEADER = 1, + ETHTOOL_A_PAUSE_AUTONEG = 2, + ETHTOOL_A_PAUSE_RX = 3, + ETHTOOL_A_PAUSE_TX = 4, + ETHTOOL_A_PAUSE_STATS = 5, + ETHTOOL_A_PAUSE_STATS_SRC = 6, + __ETHTOOL_A_PAUSE_CNT = 7, + ETHTOOL_A_PAUSE_MAX = 6, +}; + +enum { + ETHTOOL_A_EEE_UNSPEC = 0, + ETHTOOL_A_EEE_HEADER = 1, + ETHTOOL_A_EEE_MODES_OURS = 2, + ETHTOOL_A_EEE_MODES_PEER = 3, + ETHTOOL_A_EEE_ACTIVE = 4, + ETHTOOL_A_EEE_ENABLED = 5, + ETHTOOL_A_EEE_TX_LPI_ENABLED = 6, + ETHTOOL_A_EEE_TX_LPI_TIMER = 7, + __ETHTOOL_A_EEE_CNT = 8, + ETHTOOL_A_EEE_MAX = 7, +}; + +enum { + ETHTOOL_A_TSINFO_UNSPEC = 0, + ETHTOOL_A_TSINFO_HEADER = 1, + ETHTOOL_A_TSINFO_TIMESTAMPING = 2, + ETHTOOL_A_TSINFO_TX_TYPES = 3, + ETHTOOL_A_TSINFO_RX_FILTERS = 4, + ETHTOOL_A_TSINFO_PHC_INDEX = 5, + ETHTOOL_A_TSINFO_STATS = 6, + ETHTOOL_A_TSINFO_HWTSTAMP_PROVIDER = 7, + ETHTOOL_A_TSINFO_HWTSTAMP_SOURCE = 8, + ETHTOOL_A_TSINFO_HWTSTAMP_PHYINDEX = 9, + __ETHTOOL_A_TSINFO_CNT = 10, + ETHTOOL_A_TSINFO_MAX = 9, +}; + +enum { + ETHTOOL_A_CABLE_TEST_UNSPEC = 0, + ETHTOOL_A_CABLE_TEST_HEADER = 1, + __ETHTOOL_A_CABLE_TEST_CNT = 2, + ETHTOOL_A_CABLE_TEST_MAX = 1, +}; + +enum { + ETHTOOL_A_CABLE_TEST_TDR_UNSPEC = 0, + ETHTOOL_A_CABLE_TEST_TDR_HEADER = 1, + ETHTOOL_A_CABLE_TEST_TDR_CFG = 2, + __ETHTOOL_A_CABLE_TEST_TDR_CNT = 3, + ETHTOOL_A_CABLE_TEST_TDR_MAX = 2, +}; + +enum { + ETHTOOL_A_TUNNEL_INFO_UNSPEC = 0, + ETHTOOL_A_TUNNEL_INFO_HEADER = 1, + ETHTOOL_A_TUNNEL_INFO_UDP_PORTS = 2, + __ETHTOOL_A_TUNNEL_INFO_CNT = 3, + ETHTOOL_A_TUNNEL_INFO_MAX = 2, +}; + +enum { + ETHTOOL_A_FEC_UNSPEC = 0, + ETHTOOL_A_FEC_HEADER = 1, + ETHTOOL_A_FEC_MODES = 2, + ETHTOOL_A_FEC_AUTO = 3, + ETHTOOL_A_FEC_ACTIVE = 4, + ETHTOOL_A_FEC_STATS = 5, + __ETHTOOL_A_FEC_CNT = 6, + ETHTOOL_A_FEC_MAX = 5, +}; + +enum { + ETHTOOL_A_MODULE_EEPROM_UNSPEC = 0, + ETHTOOL_A_MODULE_EEPROM_HEADER = 1, + ETHTOOL_A_MODULE_EEPROM_OFFSET = 2, + ETHTOOL_A_MODULE_EEPROM_LENGTH = 3, + ETHTOOL_A_MODULE_EEPROM_PAGE = 4, + ETHTOOL_A_MODULE_EEPROM_BANK = 5, + ETHTOOL_A_MODULE_EEPROM_I2C_ADDRESS = 6, + ETHTOOL_A_MODULE_EEPROM_DATA = 7, + __ETHTOOL_A_MODULE_EEPROM_CNT = 8, + ETHTOOL_A_MODULE_EEPROM_MAX = 7, +}; + +enum { + ETHTOOL_A_STATS_UNSPEC = 0, + ETHTOOL_A_STATS_PAD = 1, + ETHTOOL_A_STATS_HEADER = 2, + ETHTOOL_A_STATS_GROUPS = 3, + ETHTOOL_A_STATS_GRP = 4, + ETHTOOL_A_STATS_SRC = 5, + __ETHTOOL_A_STATS_CNT = 6, + ETHTOOL_A_STATS_MAX = 5, +}; + +enum { + ETHTOOL_A_PHC_VCLOCKS_UNSPEC = 0, + ETHTOOL_A_PHC_VCLOCKS_HEADER = 1, + ETHTOOL_A_PHC_VCLOCKS_NUM = 2, + ETHTOOL_A_PHC_VCLOCKS_INDEX = 3, + __ETHTOOL_A_PHC_VCLOCKS_CNT = 4, + ETHTOOL_A_PHC_VCLOCKS_MAX = 3, +}; + +enum { + ETHTOOL_A_MODULE_UNSPEC = 0, + ETHTOOL_A_MODULE_HEADER = 1, + ETHTOOL_A_MODULE_POWER_MODE_POLICY = 2, + ETHTOOL_A_MODULE_POWER_MODE = 3, + __ETHTOOL_A_MODULE_CNT = 4, + ETHTOOL_A_MODULE_MAX = 3, +}; + +enum { + ETHTOOL_A_PSE_UNSPEC = 0, + ETHTOOL_A_PSE_HEADER = 1, + ETHTOOL_A_PODL_PSE_ADMIN_STATE = 2, + ETHTOOL_A_PODL_PSE_ADMIN_CONTROL = 3, + ETHTOOL_A_PODL_PSE_PW_D_STATUS = 4, + ETHTOOL_A_C33_PSE_ADMIN_STATE = 5, + ETHTOOL_A_C33_PSE_ADMIN_CONTROL = 6, + ETHTOOL_A_C33_PSE_PW_D_STATUS = 7, + ETHTOOL_A_C33_PSE_PW_CLASS = 8, + ETHTOOL_A_C33_PSE_ACTUAL_PW = 9, + ETHTOOL_A_C33_PSE_EXT_STATE = 10, + ETHTOOL_A_C33_PSE_EXT_SUBSTATE = 11, + ETHTOOL_A_C33_PSE_AVAIL_PW_LIMIT = 12, + ETHTOOL_A_C33_PSE_PW_LIMIT_RANGES = 13, + ETHTOOL_A_PSE_PW_D_ID = 14, + ETHTOOL_A_PSE_PRIO_MAX = 15, + ETHTOOL_A_PSE_PRIO = 16, + __ETHTOOL_A_PSE_CNT = 17, + ETHTOOL_A_PSE_MAX = 16, +}; + +enum { + ETHTOOL_A_RSS_UNSPEC = 0, + ETHTOOL_A_RSS_HEADER = 1, + ETHTOOL_A_RSS_CONTEXT = 2, + ETHTOOL_A_RSS_HFUNC = 3, + ETHTOOL_A_RSS_INDIR = 4, + ETHTOOL_A_RSS_HKEY = 5, + ETHTOOL_A_RSS_INPUT_XFRM = 6, + ETHTOOL_A_RSS_START_CONTEXT = 7, + ETHTOOL_A_RSS_FLOW_HASH = 8, + __ETHTOOL_A_RSS_CNT = 9, + ETHTOOL_A_RSS_MAX = 8, +}; + +enum { + ETHTOOL_A_PLCA_UNSPEC = 0, + ETHTOOL_A_PLCA_HEADER = 1, + ETHTOOL_A_PLCA_VERSION = 2, + ETHTOOL_A_PLCA_ENABLED = 3, + ETHTOOL_A_PLCA_STATUS = 4, + ETHTOOL_A_PLCA_NODE_CNT = 5, + ETHTOOL_A_PLCA_NODE_ID = 6, + ETHTOOL_A_PLCA_TO_TMR = 7, + ETHTOOL_A_PLCA_BURST_CNT = 8, + ETHTOOL_A_PLCA_BURST_TMR = 9, + __ETHTOOL_A_PLCA_CNT = 10, + ETHTOOL_A_PLCA_MAX = 9, +}; + +enum { + ETHTOOL_A_MODULE_FW_FLASH_UNSPEC = 0, + ETHTOOL_A_MODULE_FW_FLASH_HEADER = 1, + ETHTOOL_A_MODULE_FW_FLASH_FILE_NAME = 2, + ETHTOOL_A_MODULE_FW_FLASH_PASSWORD = 3, + ETHTOOL_A_MODULE_FW_FLASH_STATUS = 4, + ETHTOOL_A_MODULE_FW_FLASH_STATUS_MSG = 5, + ETHTOOL_A_MODULE_FW_FLASH_DONE = 6, + ETHTOOL_A_MODULE_FW_FLASH_TOTAL = 7, + __ETHTOOL_A_MODULE_FW_FLASH_CNT = 8, + ETHTOOL_A_MODULE_FW_FLASH_MAX = 7, +}; + +enum { + ETHTOOL_A_PHY_UNSPEC = 0, + ETHTOOL_A_PHY_HEADER = 1, + ETHTOOL_A_PHY_INDEX = 2, + ETHTOOL_A_PHY_DRVNAME = 3, + ETHTOOL_A_PHY_NAME = 4, + ETHTOOL_A_PHY_UPSTREAM_TYPE = 5, + ETHTOOL_A_PHY_UPSTREAM_INDEX = 6, + ETHTOOL_A_PHY_UPSTREAM_SFP_NAME = 7, + ETHTOOL_A_PHY_DOWNSTREAM_SFP_NAME = 8, + __ETHTOOL_A_PHY_CNT = 9, + ETHTOOL_A_PHY_MAX = 8, +}; + +enum { + ETHTOOL_A_TSCONFIG_UNSPEC = 0, + ETHTOOL_A_TSCONFIG_HEADER = 1, + ETHTOOL_A_TSCONFIG_HWTSTAMP_PROVIDER = 2, + ETHTOOL_A_TSCONFIG_TX_TYPES = 3, + ETHTOOL_A_TSCONFIG_RX_FILTERS = 4, + ETHTOOL_A_TSCONFIG_HWTSTAMP_FLAGS = 5, + __ETHTOOL_A_TSCONFIG_CNT = 6, + ETHTOOL_A_TSCONFIG_MAX = 5, +}; + +enum { + ETHTOOL_MSG_USER_NONE = 0, + ETHTOOL_MSG_STRSET_GET = 1, + ETHTOOL_MSG_LINKINFO_GET = 2, + ETHTOOL_MSG_LINKINFO_SET = 3, + ETHTOOL_MSG_LINKMODES_GET = 4, + ETHTOOL_MSG_LINKMODES_SET = 5, + ETHTOOL_MSG_LINKSTATE_GET = 6, + ETHTOOL_MSG_DEBUG_GET = 7, + ETHTOOL_MSG_DEBUG_SET = 8, + ETHTOOL_MSG_WOL_GET = 9, + ETHTOOL_MSG_WOL_SET = 10, + ETHTOOL_MSG_FEATURES_GET = 11, + ETHTOOL_MSG_FEATURES_SET = 12, + ETHTOOL_MSG_PRIVFLAGS_GET = 13, + ETHTOOL_MSG_PRIVFLAGS_SET = 14, + ETHTOOL_MSG_RINGS_GET = 15, + ETHTOOL_MSG_RINGS_SET = 16, + ETHTOOL_MSG_CHANNELS_GET = 17, + ETHTOOL_MSG_CHANNELS_SET = 18, + ETHTOOL_MSG_COALESCE_GET = 19, + ETHTOOL_MSG_COALESCE_SET = 20, + ETHTOOL_MSG_PAUSE_GET = 21, + ETHTOOL_MSG_PAUSE_SET = 22, + ETHTOOL_MSG_EEE_GET = 23, + ETHTOOL_MSG_EEE_SET = 24, + ETHTOOL_MSG_TSINFO_GET = 25, + ETHTOOL_MSG_CABLE_TEST_ACT = 26, + ETHTOOL_MSG_CABLE_TEST_TDR_ACT = 27, + ETHTOOL_MSG_TUNNEL_INFO_GET = 28, + ETHTOOL_MSG_FEC_GET = 29, + ETHTOOL_MSG_FEC_SET = 30, + ETHTOOL_MSG_MODULE_EEPROM_GET = 31, + ETHTOOL_MSG_STATS_GET = 32, + ETHTOOL_MSG_PHC_VCLOCKS_GET = 33, + ETHTOOL_MSG_MODULE_GET = 34, + ETHTOOL_MSG_MODULE_SET = 35, + ETHTOOL_MSG_PSE_GET = 36, + ETHTOOL_MSG_PSE_SET = 37, + ETHTOOL_MSG_RSS_GET = 38, + ETHTOOL_MSG_PLCA_GET_CFG = 39, + ETHTOOL_MSG_PLCA_SET_CFG = 40, + ETHTOOL_MSG_PLCA_GET_STATUS = 41, + ETHTOOL_MSG_MM_GET = 42, + ETHTOOL_MSG_MM_SET = 43, + ETHTOOL_MSG_MODULE_FW_FLASH_ACT = 44, + ETHTOOL_MSG_PHY_GET = 45, + ETHTOOL_MSG_TSCONFIG_GET = 46, + ETHTOOL_MSG_TSCONFIG_SET = 47, + ETHTOOL_MSG_RSS_SET = 48, + ETHTOOL_MSG_RSS_CREATE_ACT = 49, + ETHTOOL_MSG_RSS_DELETE_ACT = 50, + __ETHTOOL_MSG_USER_CNT = 51, + ETHTOOL_MSG_USER_MAX = 50, +}; + +enum { + ETHTOOL_MSG_KERNEL_NONE = 0, + ETHTOOL_MSG_STRSET_GET_REPLY = 1, + ETHTOOL_MSG_LINKINFO_GET_REPLY = 2, + ETHTOOL_MSG_LINKINFO_NTF = 3, + ETHTOOL_MSG_LINKMODES_GET_REPLY = 4, + ETHTOOL_MSG_LINKMODES_NTF = 5, + ETHTOOL_MSG_LINKSTATE_GET_REPLY = 6, + ETHTOOL_MSG_DEBUG_GET_REPLY = 7, + ETHTOOL_MSG_DEBUG_NTF = 8, + ETHTOOL_MSG_WOL_GET_REPLY = 9, + ETHTOOL_MSG_WOL_NTF = 10, + ETHTOOL_MSG_FEATURES_GET_REPLY = 11, + ETHTOOL_MSG_FEATURES_SET_REPLY = 12, + ETHTOOL_MSG_FEATURES_NTF = 13, + ETHTOOL_MSG_PRIVFLAGS_GET_REPLY = 14, + ETHTOOL_MSG_PRIVFLAGS_NTF = 15, + ETHTOOL_MSG_RINGS_GET_REPLY = 16, + ETHTOOL_MSG_RINGS_NTF = 17, + ETHTOOL_MSG_CHANNELS_GET_REPLY = 18, + ETHTOOL_MSG_CHANNELS_NTF = 19, + ETHTOOL_MSG_COALESCE_GET_REPLY = 20, + ETHTOOL_MSG_COALESCE_NTF = 21, + ETHTOOL_MSG_PAUSE_GET_REPLY = 22, + ETHTOOL_MSG_PAUSE_NTF = 23, + ETHTOOL_MSG_EEE_GET_REPLY = 24, + ETHTOOL_MSG_EEE_NTF = 25, + ETHTOOL_MSG_TSINFO_GET_REPLY = 26, + ETHTOOL_MSG_CABLE_TEST_NTF = 27, + ETHTOOL_MSG_CABLE_TEST_TDR_NTF = 28, + ETHTOOL_MSG_TUNNEL_INFO_GET_REPLY = 29, + ETHTOOL_MSG_FEC_GET_REPLY = 30, + ETHTOOL_MSG_FEC_NTF = 31, + ETHTOOL_MSG_MODULE_EEPROM_GET_REPLY = 32, + ETHTOOL_MSG_STATS_GET_REPLY = 33, + ETHTOOL_MSG_PHC_VCLOCKS_GET_REPLY = 34, + ETHTOOL_MSG_MODULE_GET_REPLY = 35, + ETHTOOL_MSG_MODULE_NTF = 36, + ETHTOOL_MSG_PSE_GET_REPLY = 37, + ETHTOOL_MSG_RSS_GET_REPLY = 38, + ETHTOOL_MSG_PLCA_GET_CFG_REPLY = 39, + ETHTOOL_MSG_PLCA_GET_STATUS_REPLY = 40, + ETHTOOL_MSG_PLCA_NTF = 41, + ETHTOOL_MSG_MM_GET_REPLY = 42, + ETHTOOL_MSG_MM_NTF = 43, + ETHTOOL_MSG_MODULE_FW_FLASH_NTF = 44, + ETHTOOL_MSG_PHY_GET_REPLY = 45, + ETHTOOL_MSG_PHY_NTF = 46, + ETHTOOL_MSG_TSCONFIG_GET_REPLY = 47, + ETHTOOL_MSG_TSCONFIG_SET_REPLY = 48, + ETHTOOL_MSG_PSE_NTF = 49, + ETHTOOL_MSG_RSS_NTF = 50, + ETHTOOL_MSG_RSS_CREATE_ACT_REPLY = 51, + ETHTOOL_MSG_RSS_CREATE_NTF = 52, + ETHTOOL_MSG_RSS_DELETE_NTF = 53, + __ETHTOOL_MSG_KERNEL_CNT = 54, + ETHTOOL_MSG_KERNEL_MAX = 53, +}; + +enum phy_upstream { + PHY_UPSTREAM_MAC = 0, + PHY_UPSTREAM_PHY = 1, +}; + +enum { + ETHTOOL_STATS_ETH_PHY = 0, + ETHTOOL_STATS_ETH_MAC = 1, + ETHTOOL_STATS_ETH_CTRL = 2, + ETHTOOL_STATS_RMON = 3, + ETHTOOL_STATS_PHY = 4, + __ETHTOOL_STATS_CNT = 5, +}; + +enum { + ETHTOOL_A_STATS_ETH_PHY_5_SYM_ERR = 0, + __ETHTOOL_A_STATS_ETH_PHY_CNT = 1, + ETHTOOL_A_STATS_ETH_PHY_MAX = 0, +}; + +enum { + ETHTOOL_A_STATS_ETH_MAC_2_TX_PKT = 0, + ETHTOOL_A_STATS_ETH_MAC_3_SINGLE_COL = 1, + ETHTOOL_A_STATS_ETH_MAC_4_MULTI_COL = 2, + ETHTOOL_A_STATS_ETH_MAC_5_RX_PKT = 3, + ETHTOOL_A_STATS_ETH_MAC_6_FCS_ERR = 4, + ETHTOOL_A_STATS_ETH_MAC_7_ALIGN_ERR = 5, + ETHTOOL_A_STATS_ETH_MAC_8_TX_BYTES = 6, + ETHTOOL_A_STATS_ETH_MAC_9_TX_DEFER = 7, + ETHTOOL_A_STATS_ETH_MAC_10_LATE_COL = 8, + ETHTOOL_A_STATS_ETH_MAC_11_XS_COL = 9, + ETHTOOL_A_STATS_ETH_MAC_12_TX_INT_ERR = 10, + ETHTOOL_A_STATS_ETH_MAC_13_CS_ERR = 11, + ETHTOOL_A_STATS_ETH_MAC_14_RX_BYTES = 12, + ETHTOOL_A_STATS_ETH_MAC_15_RX_INT_ERR = 13, + ETHTOOL_A_STATS_ETH_MAC_18_TX_MCAST = 14, + ETHTOOL_A_STATS_ETH_MAC_19_TX_BCAST = 15, + ETHTOOL_A_STATS_ETH_MAC_20_XS_DEFER = 16, + ETHTOOL_A_STATS_ETH_MAC_21_RX_MCAST = 17, + ETHTOOL_A_STATS_ETH_MAC_22_RX_BCAST = 18, + ETHTOOL_A_STATS_ETH_MAC_23_IR_LEN_ERR = 19, + ETHTOOL_A_STATS_ETH_MAC_24_OOR_LEN = 20, + ETHTOOL_A_STATS_ETH_MAC_25_TOO_LONG_ERR = 21, + __ETHTOOL_A_STATS_ETH_MAC_CNT = 22, + ETHTOOL_A_STATS_ETH_MAC_MAX = 21, +}; + +enum { + ETHTOOL_A_STATS_ETH_CTRL_3_TX = 0, + ETHTOOL_A_STATS_ETH_CTRL_4_RX = 1, + ETHTOOL_A_STATS_ETH_CTRL_5_RX_UNSUP = 2, + __ETHTOOL_A_STATS_ETH_CTRL_CNT = 3, + ETHTOOL_A_STATS_ETH_CTRL_MAX = 2, +}; + +enum { + ETHTOOL_A_STATS_RMON_UNDERSIZE = 0, + ETHTOOL_A_STATS_RMON_OVERSIZE = 1, + ETHTOOL_A_STATS_RMON_FRAG = 2, + ETHTOOL_A_STATS_RMON_JABBER = 3, + __ETHTOOL_A_STATS_RMON_CNT = 4, + ETHTOOL_A_STATS_RMON_MAX = 3, +}; + +enum { + ETHTOOL_A_STATS_PHY_RX_PKTS = 0, + ETHTOOL_A_STATS_PHY_RX_BYTES = 1, + ETHTOOL_A_STATS_PHY_RX_ERRORS = 2, + ETHTOOL_A_STATS_PHY_TX_PKTS = 3, + ETHTOOL_A_STATS_PHY_TX_BYTES = 4, + ETHTOOL_A_STATS_PHY_TX_ERRORS = 5, + __ETHTOOL_A_STATS_PHY_CNT = 6, + ETHTOOL_A_STATS_PHY_MAX = 5, +}; + +enum ethtool_multicast_groups { + ETHNL_MCGRP_MONITOR = 0, +}; + +struct phy_device_node { + enum phy_upstream upstream_type; + union { + struct net_device *netdev; + struct phy_device *phydev; + } upstream; + struct sfp_bus *parent_sfp_bus; + struct phy_device *phy; +}; + +struct genl_dumpit_info { + struct genl_split_ops op; + struct genl_info info; +}; + +struct ethnl_req_info { + struct net_device *dev; + netdevice_tracker dev_tracker; + u32 flags; + u32 phy_index; +}; + +struct ethnl_reply_data { + struct net_device *dev; +}; + +enum ethnl_sock_type { + ETHTOOL_SOCK_TYPE_MODULE_FW_FLASH = 0, +}; + +struct ethnl_sock_priv { + struct net_device *dev; + u32 portid; + enum ethnl_sock_type type; +}; + +struct ethnl_request_ops { + u8 request_cmd; + u8 reply_cmd; + u16 hdr_attr; + unsigned int req_info_size; + unsigned int reply_data_size; + bool allow_nodev_do; + u8 set_ntf_cmd; + int (*parse_request)(struct ethnl_req_info *, struct nlattr **, struct netlink_ext_ack *); + int (*prepare_data)(const struct ethnl_req_info *, struct ethnl_reply_data *, const struct genl_info *); + int (*reply_size)(const struct ethnl_req_info *, const struct ethnl_reply_data *); + int (*fill_reply)(struct sk_buff *, const struct ethnl_req_info *, const struct ethnl_reply_data *); + void (*cleanup_data)(struct ethnl_reply_data *); + int (*set_validate)(struct ethnl_req_info *, struct genl_info *); + int (*set)(struct ethnl_req_info *, struct genl_info *); +}; + +struct ethnl_dump_ctx { + const struct ethnl_request_ops *ops; + struct ethnl_req_info *req_info; + struct ethnl_reply_data *reply_data; + long unsigned int pos_ifindex; +}; + +struct ethnl_perphy_dump_ctx { + struct ethnl_dump_ctx ethnl_ctx; + unsigned int ifindex; + long unsigned int pos_phyindex; +}; + +typedef void (*ethnl_notify_handler_t)(struct net_device *, unsigned int, const struct ethnl_req_info *); + +enum tunable_id { + ETHTOOL_ID_UNSPEC = 0, + ETHTOOL_RX_COPYBREAK = 1, + ETHTOOL_TX_COPYBREAK = 2, + ETHTOOL_PFC_PREVENTION_TOUT = 3, + ETHTOOL_TX_COPYBREAK_BUF_SIZE = 4, + __ETHTOOL_TUNABLE_COUNT = 5, +}; + +enum phy_tunable_id { + ETHTOOL_PHY_ID_UNSPEC = 0, + ETHTOOL_PHY_DOWNSHIFT = 1, + ETHTOOL_PHY_FAST_LINK_DOWN = 2, + ETHTOOL_PHY_EDPD = 3, + __ETHTOOL_PHY_TUNABLE_COUNT = 4, +}; + +typedef const char (* const ethnl_string_array_t)[32]; + +struct features_reply_data { + struct ethnl_reply_data base; + u32 hw[2]; + u32 wanted[2]; + u32 active[2]; + u32 nochange[2]; + u32 all[2]; +}; + +enum { + ETHTOOL_A_IRQ_MODERATION_UNSPEC = 0, + ETHTOOL_A_IRQ_MODERATION_USEC = 1, + ETHTOOL_A_IRQ_MODERATION_PKTS = 2, + ETHTOOL_A_IRQ_MODERATION_COMPS = 3, + __ETHTOOL_A_IRQ_MODERATION_CNT = 4, + ETHTOOL_A_IRQ_MODERATION_MAX = 3, +}; + +enum { + ETHTOOL_A_PROFILE_UNSPEC = 0, + ETHTOOL_A_PROFILE_IRQ_MODERATION = 1, + __ETHTOOL_A_PROFILE_CNT = 2, + ETHTOOL_A_PROFILE_MAX = 1, +}; + +struct coalesce_reply_data { + struct ethnl_reply_data base; + struct ethtool_coalesce coalesce; + struct kernel_ethtool_coalesce kernel_coalesce; + u32 supported_params; +}; + +enum { + ETHTOOL_A_CABLE_RESULT_UNSPEC = 0, + ETHTOOL_A_CABLE_RESULT_PAIR = 1, + ETHTOOL_A_CABLE_RESULT_CODE = 2, + ETHTOOL_A_CABLE_RESULT_SRC = 3, + __ETHTOOL_A_CABLE_RESULT_CNT = 4, + ETHTOOL_A_CABLE_RESULT_MAX = 3, +}; + +enum { + ETHTOOL_A_CABLE_FAULT_LENGTH_UNSPEC = 0, + ETHTOOL_A_CABLE_FAULT_LENGTH_PAIR = 1, + ETHTOOL_A_CABLE_FAULT_LENGTH_CM = 2, + ETHTOOL_A_CABLE_FAULT_LENGTH_SRC = 3, + __ETHTOOL_A_CABLE_FAULT_LENGTH_CNT = 4, + ETHTOOL_A_CABLE_FAULT_LENGTH_MAX = 3, +}; + +enum { + ETHTOOL_A_CABLE_NEST_UNSPEC = 0, + ETHTOOL_A_CABLE_NEST_RESULT = 1, + ETHTOOL_A_CABLE_NEST_FAULT_LENGTH = 2, + __ETHTOOL_A_CABLE_NEST_CNT = 3, + ETHTOOL_A_CABLE_NEST_MAX = 2, +}; + +enum { + ETHTOOL_A_CABLE_TEST_NTF_UNSPEC = 0, + ETHTOOL_A_CABLE_TEST_NTF_HEADER = 1, + ETHTOOL_A_CABLE_TEST_NTF_STATUS = 2, + ETHTOOL_A_CABLE_TEST_NTF_NEST = 3, + __ETHTOOL_A_CABLE_TEST_NTF_CNT = 4, + ETHTOOL_A_CABLE_TEST_NTF_MAX = 3, +}; + +enum { + ETHTOOL_A_CABLE_TEST_TDR_CFG_UNSPEC = 0, + ETHTOOL_A_CABLE_TEST_TDR_CFG_FIRST = 1, + ETHTOOL_A_CABLE_TEST_TDR_CFG_LAST = 2, + ETHTOOL_A_CABLE_TEST_TDR_CFG_STEP = 3, + ETHTOOL_A_CABLE_TEST_TDR_CFG_PAIR = 4, + __ETHTOOL_A_CABLE_TEST_TDR_CFG_CNT = 5, + ETHTOOL_A_CABLE_TEST_TDR_CFG_MAX = 4, +}; + +struct ethtool_phy_ops { + int (*get_sset_count)(struct phy_device *); + int (*get_strings)(struct phy_device *, u8 *); + int (*get_stats)(struct phy_device *, struct ethtool_stats *, u64 *); + int (*get_plca_cfg)(struct phy_device *, struct phy_plca_cfg *); + int (*set_plca_cfg)(struct phy_device *, const struct phy_plca_cfg *, struct netlink_ext_ack *); + int (*get_plca_status)(struct phy_device *, struct phy_plca_status *); + int (*start_cable_test)(struct phy_device *, struct netlink_ext_ack *); + int (*start_cable_test_tdr)(struct phy_device *, struct netlink_ext_ack *, const struct phy_tdr_config *); +}; + +enum { + ETHTOOL_A_CABLE_PAIR_A = 0, + ETHTOOL_A_CABLE_PAIR_B = 1, + ETHTOOL_A_CABLE_PAIR_C = 2, + ETHTOOL_A_CABLE_PAIR_D = 3, +}; + +enum { + ETHTOOL_A_CABLE_INF_SRC_UNSPEC = 0, + ETHTOOL_A_CABLE_INF_SRC_TDR = 1, + ETHTOOL_A_CABLE_INF_SRC_ALCD = 2, +}; + +enum { + ETHTOOL_A_CABLE_TEST_NTF_STATUS_UNSPEC = 0, + ETHTOOL_A_CABLE_TEST_NTF_STATUS_STARTED = 1, + ETHTOOL_A_CABLE_TEST_NTF_STATUS_COMPLETED = 2, +}; + +enum { + ETHTOOL_A_CABLE_AMPLITUDE_UNSPEC = 0, + ETHTOOL_A_CABLE_AMPLITUDE_PAIR = 1, + ETHTOOL_A_CABLE_AMPLITUDE_mV = 2, + __ETHTOOL_A_CABLE_AMPLITUDE_CNT = 3, + ETHTOOL_A_CABLE_AMPLITUDE_MAX = 2, +}; + +enum { + ETHTOOL_A_CABLE_PULSE_UNSPEC = 0, + ETHTOOL_A_CABLE_PULSE_mV = 1, + __ETHTOOL_A_CABLE_PULSE_CNT = 2, + ETHTOOL_A_CABLE_PULSE_MAX = 1, +}; + +enum { + ETHTOOL_A_CABLE_STEP_UNSPEC = 0, + ETHTOOL_A_CABLE_STEP_FIRST_DISTANCE = 1, + ETHTOOL_A_CABLE_STEP_LAST_DISTANCE = 2, + ETHTOOL_A_CABLE_STEP_STEP_DISTANCE = 3, + __ETHTOOL_A_CABLE_STEP_CNT = 4, + ETHTOOL_A_CABLE_STEP_MAX = 3, +}; + +enum { + ETHTOOL_A_CABLE_TDR_NEST_UNSPEC = 0, + ETHTOOL_A_CABLE_TDR_NEST_STEP = 1, + ETHTOOL_A_CABLE_TDR_NEST_AMPLITUDE = 2, + ETHTOOL_A_CABLE_TDR_NEST_PULSE = 3, + __ETHTOOL_A_CABLE_TDR_NEST_CNT = 4, + ETHTOOL_A_CABLE_TDR_NEST_MAX = 3, +}; + +enum { + ETHTOOL_A_STATS_GRP_UNSPEC = 0, + ETHTOOL_A_STATS_GRP_PAD = 1, + ETHTOOL_A_STATS_GRP_ID = 2, + ETHTOOL_A_STATS_GRP_SS_ID = 3, + ETHTOOL_A_STATS_GRP_STAT = 4, + ETHTOOL_A_STATS_GRP_HIST_RX = 5, + ETHTOOL_A_STATS_GRP_HIST_TX = 6, + ETHTOOL_A_STATS_GRP_HIST_BKT_LOW = 7, + ETHTOOL_A_STATS_GRP_HIST_BKT_HI = 8, + ETHTOOL_A_STATS_GRP_HIST_VAL = 9, + __ETHTOOL_A_STATS_GRP_CNT = 10, + ETHTOOL_A_STATS_GRP_MAX = 9, +}; + +struct stats_req_info { + struct ethnl_req_info base; + long unsigned int stat_mask[1]; + enum ethtool_mac_stats_src src; +}; + +struct stats_reply_data { + struct ethnl_reply_data base; + union { + struct { + struct ethtool_eth_phy_stats phy_stats; + struct ethtool_eth_mac_stats mac_stats; + struct ethtool_eth_ctrl_stats ctrl_stats; + struct ethtool_rmon_stats rmon_stats; + struct ethtool_phy_stats phydev_stats; + }; + struct { + struct ethtool_eth_phy_stats phy_stats; + struct ethtool_eth_mac_stats mac_stats; + struct ethtool_eth_ctrl_stats ctrl_stats; + struct ethtool_rmon_stats rmon_stats; + struct ethtool_phy_stats phydev_stats; + } stats; + }; + const struct ethtool_rmon_hist_range *rmon_ranges; +}; + +enum ethtool_reset_flags { + ETH_RESET_MGMT = 1, + ETH_RESET_IRQ = 2, + ETH_RESET_DMA = 4, + ETH_RESET_FILTER = 8, + ETH_RESET_OFFLOAD = 16, + ETH_RESET_MAC = 32, + ETH_RESET_PHY = 64, + ETH_RESET_RAM = 128, + ETH_RESET_AP = 256, + ETH_RESET_DEDICATED = 65535, + ETH_RESET_ALL = 4294967295, +}; + +struct ethnl_module_fw_flash_ntf_params { + u32 portid; + u32 seq; + bool closed_sock; +}; + +struct ethtool_module_fw_flash_params { + __be32 password; + u8 password_valid: 1; +}; + +struct ethtool_cmis_fw_update_params { + struct net_device *dev; + struct ethtool_module_fw_flash_params params; + struct ethnl_module_fw_flash_ntf_params ntf_params; + const struct firmware *fw; +}; + +struct ethtool_cmis_cdb { + u8 cmis_rev; + u8 read_write_len_ext; + u16 max_completion_time; +}; + +enum ethtool_cmis_cdb_cmd_id { + ETHTOOL_CMIS_CDB_CMD_QUERY_STATUS = 0, + ETHTOOL_CMIS_CDB_CMD_MODULE_FEATURES = 64, + ETHTOOL_CMIS_CDB_CMD_FW_MANAGMENT_FEATURES = 65, + ETHTOOL_CMIS_CDB_CMD_START_FW_DOWNLOAD = 257, + ETHTOOL_CMIS_CDB_CMD_WRITE_FW_BLOCK_LPL = 259, + ETHTOOL_CMIS_CDB_CMD_WRITE_FW_BLOCK_EPL = 260, + ETHTOOL_CMIS_CDB_CMD_COMPLETE_FW_DOWNLOAD = 263, + ETHTOOL_CMIS_CDB_CMD_RUN_FW_IMAGE = 265, + ETHTOOL_CMIS_CDB_CMD_COMMIT_FW_IMAGE = 266, +}; + +struct ethtool_cmis_cdb_request { + __be16 id; + union { + struct { + __be16 epl_len; + u8 lpl_len; + u8 chk_code; + u8 resv1; + u8 resv2; + u8 payload[120]; + }; + struct { + __be16 epl_len; + u8 lpl_len; + u8 chk_code; + u8 resv1; + u8 resv2; + u8 payload[120]; + } body; + }; + u8 *epl; +}; + +struct ethtool_cmis_cdb_cmd_args { + struct ethtool_cmis_cdb_request req; + u16 max_duration; + u8 read_write_len_ext; + u8 msleep_pre_rpl; + u8 rpl_exp_len; + u8 flags; + char *err_msg; +}; + +struct cmis_fw_update_fw_mng_features { + u8 start_cmd_payload_size; + u8 write_mechanism; + u16 max_duration_start; + u16 max_duration_write; + u16 max_duration_complete; +}; + +struct cmis_cdb_fw_mng_features_rpl { + u8 resv1; + u8 resv2; + u8 start_cmd_payload_size; + u8 resv3; + u8 read_write_len_ext; + u8 write_mechanism; + u8 resv4; + u8 resv5; + __be16 max_duration_start; + __be16 resv6; + __be16 max_duration_write; + __be16 max_duration_complete; + __be16 resv7; +}; + +enum cmis_cdb_fw_write_mechanism { + CMIS_CDB_FW_WRITE_MECHANISM_NONE = 0, + CMIS_CDB_FW_WRITE_MECHANISM_LPL = 1, + CMIS_CDB_FW_WRITE_MECHANISM_EPL = 16, + CMIS_CDB_FW_WRITE_MECHANISM_BOTH = 17, +}; + +struct cmis_cdb_start_fw_download_pl_h { + __be32 image_size; + __be32 resv1; +}; + +struct cmis_cdb_start_fw_download_pl { + union { + struct { + __be32 image_size; + __be32 resv1; + }; + struct cmis_cdb_start_fw_download_pl_h head; + }; + u8 vendor_data[112]; +}; + +struct cmis_cdb_write_fw_block_lpl_pl { + __be32 block_address; + u8 fw_block[116]; +}; + +struct cmis_cdb_write_fw_block_epl_pl { + u8 fw_block[2048]; +}; + +enum { + CMIS_MODULE_LOW_PWR = 1, + CMIS_MODULE_READY = 3, +}; + +struct cmis_cdb_run_fw_image_pl { + u8 resv1; + u8 image_to_run; + u16 delay_to_reset; +}; + +struct plca_reply_data { + struct ethnl_reply_data base; + struct phy_plca_cfg plca_cfg; + struct phy_plca_status plca_st; +}; + +typedef u32 u_int32_t; + +struct nf_bridge_info { + enum { + BRNF_PROTO_UNCHANGED = 0, + BRNF_PROTO_8021Q = 1, + BRNF_PROTO_PPPOE = 2, + } orig_proto: 8; + u8 pkt_otherhost: 1; + u8 in_prerouting: 1; + u8 bridged_dnat: 1; + u8 sabotage_in_done: 1; + __u16 frag_max_size; + int physinif; + struct net_device *physoutdev; + union { + __be32 ipv4_daddr; + struct in6_addr ipv6_daddr; + char neigh_header[8]; + }; +}; + +struct nf_hook_state; + +typedef unsigned int nf_hookfn(void *, struct sk_buff *, const struct nf_hook_state *); + +struct nf_hook_entry { + nf_hookfn *hook; + void *priv; +}; + +struct nf_hook_entries { + u16 num_hook_entries; + struct nf_hook_entry hooks[0]; +}; + +struct nf_hook_state { + u8 hook; + u8 pf; + struct net_device *in; + struct net_device *out; + struct sock *sk; + struct net *net; + int (*okfn)(struct net *, struct sock *, struct sk_buff *); +}; + +struct ip_rt_info { + __be32 daddr; + __be32 saddr; + u_int8_t tos; + u_int32_t mark; +}; + +enum { + TCPF_ESTABLISHED = 2, + TCPF_SYN_SENT = 4, + TCPF_SYN_RECV = 8, + TCPF_FIN_WAIT1 = 16, + TCPF_FIN_WAIT2 = 32, + TCPF_TIME_WAIT = 64, + TCPF_CLOSE = 128, + TCPF_CLOSE_WAIT = 256, + TCPF_LAST_ACK = 512, + TCPF_LISTEN = 1024, + TCPF_CLOSING = 2048, + TCPF_NEW_SYN_RECV = 4096, + TCPF_BOUND_INACTIVE = 8192, +}; + +struct ip6_rt_info { + struct in6_addr daddr; + struct in6_addr saddr; + u_int32_t mark; +}; + +struct nf_queue_entry { + struct list_head list; + struct sk_buff *skb; + unsigned int id; + unsigned int hook_index; + struct net_device *physin; + struct net_device *physout; + struct nf_hook_state state; + u16 size; +}; + +enum l2tp_debug_flags { + L2TP_MSG_DEBUG = 1, + L2TP_MSG_CONTROL = 2, + L2TP_MSG_SEQ = 4, + L2TP_MSG_DATA = 8, +}; + +struct nf_queue_handler { + int (*outfn)(struct nf_queue_entry *, unsigned int); + void (*nf_hook_drop)(struct net *); +}; + +struct ipv4_addr_key { + __be32 addr; + int vif; +}; + +struct inetpeer_addr { + union { + struct ipv4_addr_key a4; + struct in6_addr a6; + u32 key[4]; + }; + __u16 family; +}; + +struct inet_peer { + struct rb_node rb_node; + struct inetpeer_addr daddr; + u32 metrics[17]; + u32 rate_tokens; + u32 n_redirects; + long unsigned int rate_last; + union { + struct { + atomic_t rid; + }; + struct callback_head rcu; + }; + __u32 dtime; + refcount_t refcnt; +}; + +struct rhltable { + struct rhashtable ht; +}; + +struct mr_table_ops { + const struct rhashtable_params *rht_params; + void *cmparg_any; +}; + +struct vif_device { + struct net_device *dev; + netdevice_tracker dev_tracker; + long unsigned int bytes_in; + long unsigned int bytes_out; + long unsigned int pkt_in; + long unsigned int pkt_out; + long unsigned int rate_limit; + unsigned char threshold; + short unsigned int flags; + int link; + struct netdev_phys_item_id dev_parent_id; + __be32 local; + __be32 remote; +}; + +struct mr_table { + struct list_head list; + possible_net_t net; + struct mr_table_ops ops; + u32 id; + struct sock *mroute_sk; + struct timer_list ipmr_expire_timer; + struct list_head mfc_unres_queue; + struct vif_device vif_table[32]; + struct rhltable mfc_hash; + struct list_head mfc_cache_list; + int maxvif; + atomic_t cache_resolve_queue_len; + bool mroute_do_assert; + bool mroute_do_pim; + bool mroute_do_wrvifwhole; + int mroute_reg_vif_num; +}; + +enum skb_tstamp_type { + SKB_CLOCK_REALTIME = 0, + SKB_CLOCK_MONOTONIC = 1, + SKB_CLOCK_TAI = 2, + __SKB_CLOCK_MAX = 2, +}; + +enum { + IPV4_DEVCONF_FORWARDING = 1, + IPV4_DEVCONF_MC_FORWARDING = 2, + IPV4_DEVCONF_PROXY_ARP = 3, + IPV4_DEVCONF_ACCEPT_REDIRECTS = 4, + IPV4_DEVCONF_SECURE_REDIRECTS = 5, + IPV4_DEVCONF_SEND_REDIRECTS = 6, + IPV4_DEVCONF_SHARED_MEDIA = 7, + IPV4_DEVCONF_RP_FILTER = 8, + IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE = 9, + IPV4_DEVCONF_BOOTP_RELAY = 10, + IPV4_DEVCONF_LOG_MARTIANS = 11, + IPV4_DEVCONF_TAG = 12, + IPV4_DEVCONF_ARPFILTER = 13, + IPV4_DEVCONF_MEDIUM_ID = 14, + IPV4_DEVCONF_NOXFRM = 15, + IPV4_DEVCONF_NOPOLICY = 16, + IPV4_DEVCONF_FORCE_IGMP_VERSION = 17, + IPV4_DEVCONF_ARP_ANNOUNCE = 18, + IPV4_DEVCONF_ARP_IGNORE = 19, + IPV4_DEVCONF_PROMOTE_SECONDARIES = 20, + IPV4_DEVCONF_ARP_ACCEPT = 21, + IPV4_DEVCONF_ARP_NOTIFY = 22, + IPV4_DEVCONF_ACCEPT_LOCAL = 23, + IPV4_DEVCONF_SRC_VMARK = 24, + IPV4_DEVCONF_PROXY_ARP_PVLAN = 25, + IPV4_DEVCONF_ROUTE_LOCALNET = 26, + IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL = 27, + IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL = 28, + IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN = 29, + IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST = 30, + IPV4_DEVCONF_DROP_GRATUITOUS_ARP = 31, + IPV4_DEVCONF_BC_FORWARDING = 32, + IPV4_DEVCONF_ARP_EVICT_NOCARRIER = 33, + __IPV4_DEVCONF_MAX = 34, +}; + +enum macsec_validation_type { + MACSEC_VALIDATE_DISABLED = 0, + MACSEC_VALIDATE_CHECK = 1, + MACSEC_VALIDATE_STRICT = 2, + __MACSEC_VALIDATE_END = 3, + MACSEC_VALIDATE_MAX = 2, +}; + +enum macsec_offload { + MACSEC_OFFLOAD_OFF = 0, + MACSEC_OFFLOAD_PHY = 1, + MACSEC_OFFLOAD_MAC = 2, + __MACSEC_OFFLOAD_END = 3, + MACSEC_OFFLOAD_MAX = 2, +}; + +struct ip_tunnel_parm_kern { + char name[16]; + long unsigned int i_flags[1]; + long unsigned int o_flags[1]; + __be32 i_key; + __be32 o_key; + int link; + struct iphdr iph; +}; + +struct packet_type { + __be16 type; + bool ignore_outgoing; + struct net_device *dev; + netdevice_tracker dev_tracker; + int (*func)(struct sk_buff *, struct net_device *, struct packet_type *, struct net_device *); + void (*list_func)(struct list_head *, struct packet_type *, struct net_device *); + bool (*id_match)(struct packet_type *, struct sock *); + struct net *af_packet_net; + void *af_packet_priv; + struct list_head list; +}; + +enum { + RTN_UNSPEC = 0, + RTN_UNICAST = 1, + RTN_LOCAL = 2, + RTN_BROADCAST = 3, + RTN_ANYCAST = 4, + RTN_MULTICAST = 5, + RTN_BLACKHOLE = 6, + RTN_UNREACHABLE = 7, + RTN_PROHIBIT = 8, + RTN_THROW = 9, + RTN_NAT = 10, + RTN_XRESOLVE = 11, + __RTN_MAX = 12, +}; + +typedef u8 dscp_t; + +struct raw_hashinfo { + spinlock_t lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct hlist_head ht[256]; +}; + +struct fib_info; + +struct fib_nh { + struct fib_nh_common nh_common; + struct hlist_node nh_hash; + struct fib_info *nh_parent; + __u32 nh_tclassid; + __be32 nh_saddr; + int nh_saddr_genid; +}; + +struct fib_info { + struct hlist_node fib_hash; + struct hlist_node fib_lhash; + struct list_head nh_list; + struct net *fib_net; + refcount_t fib_treeref; + refcount_t fib_clntref; + unsigned int fib_flags; + unsigned char fib_dead; + unsigned char fib_protocol; + unsigned char fib_scope; + unsigned char fib_type; + __be32 fib_prefsrc; + u32 fib_tb_id; + u32 fib_priority; + struct dst_metrics *fib_metrics; + int fib_nhs; + bool fib_nh_is_v6; + bool nh_updated; + bool pfsrc_removed; + struct nexthop *nh; + struct callback_head rcu; + struct fib_nh fib_nh[0]; +}; + +struct nh_info; + +struct nh_group; + +struct nexthop { + struct rb_node rb_node; + struct list_head fi_list; + struct list_head f6i_list; + struct list_head fdb_list; + struct list_head grp_list; + struct net *net; + u32 id; + u8 protocol; + u8 nh_flags; + bool is_group; + bool dead; + spinlock_t lock; + refcount_t refcnt; + struct callback_head rcu; + union { + struct nh_info *nh_info; + struct nh_group *nh_grp; + }; +}; + +struct ip_rt_acct { + __u32 o_bytes; + __u32 o_packets; + __u32 i_bytes; + __u32 i_packets; +}; + +struct inet_skb_parm { + int iif; + struct ip_options opt; + u16 flags; + u16 frag_max_size; +}; + +enum ip_defrag_users { + IP_DEFRAG_LOCAL_DELIVER = 0, + IP_DEFRAG_CALL_RA_CHAIN = 1, + IP_DEFRAG_CONNTRACK_IN = 2, + __IP_DEFRAG_CONNTRACK_IN_END = 65537, + IP_DEFRAG_CONNTRACK_OUT = 65538, + __IP_DEFRAG_CONNTRACK_OUT_END = 131073, + IP_DEFRAG_CONNTRACK_BRIDGE_IN = 131074, + __IP_DEFRAG_CONNTRACK_BRIDGE_IN = 196609, + IP_DEFRAG_VS_IN = 196610, + IP_DEFRAG_VS_OUT = 196611, + IP_DEFRAG_VS_FWD = 196612, + IP_DEFRAG_AF_PACKET = 196613, + IP_DEFRAG_MACVLAN = 196614, +}; + +enum { + INET_ECN_NOT_ECT = 0, + INET_ECN_ECT_1 = 1, + INET_ECN_ECT_0 = 2, + INET_ECN_CE = 3, + INET_ECN_MASK = 3, +}; + +enum { + XFRM_DEV_OFFLOAD_UNSPECIFIED = 0, + XFRM_DEV_OFFLOAD_CRYPTO = 1, + XFRM_DEV_OFFLOAD_PACKET = 2, +}; + +enum metadata_type { + METADATA_IP_TUNNEL = 0, + METADATA_HW_PORT_MUX = 1, + METADATA_MACSEC = 2, + METADATA_XFRM = 3, +}; + +struct ip_tunnel_key { + __be64 tun_id; + union { + struct { + __be32 src; + __be32 dst; + } ipv4; + struct { + struct in6_addr src; + struct in6_addr dst; + } ipv6; + } u; + long unsigned int tun_flags[1]; + __be32 label; + u32 nhid; + u8 tos; + u8 ttl; + __be16 tp_src; + __be16 tp_dst; + __u8 flow_flags; +}; + +struct ip_tunnel_encap { + u16 type; + u16 flags; + __be16 sport; + __be16 dport; +}; + +struct dst_cache_pcpu; + +struct dst_cache { + struct dst_cache_pcpu *cache; + long unsigned int reset_ts; +}; + +struct ip_tunnel_info { + struct ip_tunnel_key key; + struct ip_tunnel_encap encap; + struct dst_cache dst_cache; + u8 options_len; + u8 mode; + long: 0; + u8 options[0]; +}; + +struct hw_port_info { + struct net_device *lower_dev; + u32 port_id; +}; + +typedef u64 sci_t; + +struct macsec_info { + sci_t sci; +}; + +struct xfrm_md_info { + u32 if_id; + int link; + struct dst_entry *dst_orig; +}; + +struct metadata_dst { + struct dst_entry dst; + enum metadata_type type; + union { + struct ip_tunnel_info tun_info; + struct hw_port_info port_info; + struct macsec_info macsec_info; + struct xfrm_md_info xfrm_info; + } u; +}; + +enum { + IP_TUNNEL_CSUM_BIT = 0, + IP_TUNNEL_ROUTING_BIT = 1, + IP_TUNNEL_KEY_BIT = 2, + IP_TUNNEL_SEQ_BIT = 3, + IP_TUNNEL_STRICT_BIT = 4, + IP_TUNNEL_REC_BIT = 5, + IP_TUNNEL_VERSION_BIT = 6, + IP_TUNNEL_NO_KEY_BIT = 7, + IP_TUNNEL_DONT_FRAGMENT_BIT = 8, + IP_TUNNEL_OAM_BIT = 9, + IP_TUNNEL_CRIT_OPT_BIT = 10, + IP_TUNNEL_GENEVE_OPT_BIT = 11, + IP_TUNNEL_VXLAN_OPT_BIT = 12, + IP_TUNNEL_NOCACHE_BIT = 13, + IP_TUNNEL_ERSPAN_OPT_BIT = 14, + IP_TUNNEL_GTP_OPT_BIT = 15, + IP_TUNNEL_VTI_BIT = 16, + IP_TUNNEL_SIT_ISATAP_BIT = 16, + IP_TUNNEL_PFCP_OPT_BIT = 17, + __IP_TUNNEL_FLAG_NUM = 18, +}; + +struct nh_info { + struct hlist_node dev_hash; + struct nexthop *nh_parent; + u8 family; + bool reject_nh; + bool fdb_nh; + union { + struct fib_nh_common fib_nhc; + struct fib_nh fib_nh; + struct fib6_nh fib6_nh; + }; +}; + +struct nh_grp_entry; + +struct nh_res_bucket { + struct nh_grp_entry *nh_entry; + atomic_long_t used_time; + long unsigned int migrated_time; + bool occupied; + u8 nh_flags; +}; + +struct nh_grp_entry_stats; + +struct nh_grp_entry { + struct nexthop *nh; + struct nh_grp_entry_stats *stats; + u16 weight; + union { + struct { + atomic_t upper_bound; + } hthr; + struct { + struct list_head uw_nh_entry; + u16 count_buckets; + u16 wants_buckets; + } res; + }; + struct list_head nh_list; + struct nexthop *nh_parent; + u64 packets_hw; +}; + +struct nh_res_table { + struct net *net; + u32 nhg_id; + struct delayed_work upkeep_dw; + struct list_head uw_nh_entries; + long unsigned int unbalanced_since; + u32 idle_timer; + u32 unbalanced_timer; + u16 num_nh_buckets; + struct nh_res_bucket nh_buckets[0]; +}; + +struct nh_grp_entry_stats { + u64_stats_t packets; + struct u64_stats_sync syncp; +}; + +struct nh_group { + struct nh_group *spare; + u16 num_nh; + bool is_multipath; + bool hash_threshold; + bool resilient; + bool fdb_nh; + bool has_v4; + bool hw_stats; + struct nh_res_table *res_table; + struct nh_grp_entry nh_entries[0]; +}; + +typedef u32 ssci_t; + +union salt { + struct { + ssci_t ssci; + __be64 pn; + } __attribute__((packed)); + u8 bytes[12]; +}; + +typedef union salt salt_t; + +union pn { + struct { + u32 lower; + u32 upper; + }; + u64 full64; +}; + +typedef union pn pn_t; + +struct macsec_key { + u8 id[16]; + struct crypto_aead *tfm; + salt_t salt; +}; + +struct macsec_rx_sc_stats { + __u64 InOctetsValidated; + __u64 InOctetsDecrypted; + __u64 InPktsUnchecked; + __u64 InPktsDelayed; + __u64 InPktsOK; + __u64 InPktsInvalid; + __u64 InPktsLate; + __u64 InPktsNotValid; + __u64 InPktsNotUsingSA; + __u64 InPktsUnusedSA; +}; + +struct macsec_rx_sa_stats { + __u32 InPktsOK; + __u32 InPktsInvalid; + __u32 InPktsNotValid; + __u32 InPktsNotUsingSA; + __u32 InPktsUnusedSA; +}; + +struct macsec_tx_sa_stats { + __u32 OutPktsProtected; + __u32 OutPktsEncrypted; +}; + +struct macsec_tx_sc_stats { + __u64 OutPktsProtected; + __u64 OutPktsEncrypted; + __u64 OutOctetsProtected; + __u64 OutOctetsEncrypted; +}; + +struct macsec_dev_stats { + __u64 OutPktsUntagged; + __u64 InPktsUntagged; + __u64 OutPktsTooLong; + __u64 InPktsNoTag; + __u64 InPktsBadTag; + __u64 InPktsUnknownSCI; + __u64 InPktsNoSCI; + __u64 InPktsOverrun; +}; + +struct macsec_rx_sc; + +struct macsec_rx_sa { + struct macsec_key key; + ssci_t ssci; + spinlock_t lock; + union { + pn_t next_pn_halves; + u64 next_pn; + }; + refcount_t refcnt; + bool active; + struct macsec_rx_sa_stats *stats; + struct macsec_rx_sc *sc; + struct callback_head rcu; +}; + +struct pcpu_rx_sc_stats; + +struct macsec_rx_sc { + struct macsec_rx_sc *next; + sci_t sci; + bool active; + struct macsec_rx_sa *sa[4]; + struct pcpu_rx_sc_stats *stats; + refcount_t refcnt; + struct callback_head callback_head; +}; + +struct pcpu_rx_sc_stats { + struct macsec_rx_sc_stats stats; + struct u64_stats_sync syncp; +}; + +struct pcpu_tx_sc_stats { + struct macsec_tx_sc_stats stats; + struct u64_stats_sync syncp; +}; + +struct macsec_tx_sa { + struct macsec_key key; + ssci_t ssci; + spinlock_t lock; + union { + pn_t next_pn_halves; + u64 next_pn; + }; + refcount_t refcnt; + bool active; + struct macsec_tx_sa_stats *stats; + struct callback_head rcu; +}; + +struct macsec_tx_sc { + bool active; + u8 encoding_sa; + bool encrypt; + bool send_sci; + bool end_station; + bool scb; + struct macsec_tx_sa *sa[4]; + struct pcpu_tx_sc_stats *stats; + struct metadata_dst *md_dst; +}; + +struct macsec_secy { + struct net_device *netdev; + unsigned int n_rx_sc; + sci_t sci; + u16 key_len; + u16 icv_len; + enum macsec_validation_type validate_frames; + bool xpn; + bool operational; + bool protect_frames; + bool replay_protect; + u32 replay_window; + struct macsec_tx_sc tx_sc; + struct macsec_rx_sc *rx_sc; +}; + +struct macsec_context { + union { + struct net_device *netdev; + struct phy_device *phydev; + }; + enum macsec_offload offload; + struct macsec_secy *secy; + struct macsec_rx_sc *rx_sc; + struct { + bool update_pn; + unsigned char assoc_num; + u8 key[128]; + union { + struct macsec_rx_sa *rx_sa; + struct macsec_tx_sa *tx_sa; + }; + } sa; + union { + struct macsec_tx_sc_stats *tx_sc_stats; + struct macsec_tx_sa_stats *tx_sa_stats; + struct macsec_rx_sc_stats *rx_sc_stats; + struct macsec_rx_sa_stats *rx_sa_stats; + struct macsec_dev_stats *dev_stats; + } stats; +}; + +enum sk_action { + SK_DROP = 0, + SK_PASS = 1, +}; + +struct inet_bind_bucket { + possible_net_t ib_net; + int l3mdev; + short unsigned int port; + signed char fastreuse; + signed char fastreuseport; + kuid_t fastuid; + struct in6_addr fast_v6_rcv_saddr; + __be32 fast_rcv_saddr; + short unsigned int fast_sk_family; + bool fast_ipv6_only; + struct hlist_node node; + struct hlist_head bhash2; + struct callback_head rcu; +}; + +struct inet_bind2_bucket { + possible_net_t ib_net; + int l3mdev; + short unsigned int port; + short unsigned int addr_type; + struct in6_addr v6_rcv_saddr; + struct hlist_node node; + struct hlist_node bhash_node; + struct hlist_head owners; + signed char fastreuse; + signed char fastreuseport; +}; + +struct inet_timewait_sock { + struct sock_common __tw_common; + __u32 tw_mark; + unsigned char tw_substate; + unsigned char tw_rcv_wscale; + __be16 tw_sport; + unsigned int tw_transparent: 1; + unsigned int tw_flowlabel: 20; + unsigned int tw_usec_ts: 1; + unsigned int tw_connect_bind: 1; + unsigned int tw_pad: 1; + unsigned int tw_tos: 8; + u32 tw_txhash; + u32 tw_priority; + u32 tw_entry_stamp; + struct timer_list tw_timer; + struct inet_bind_bucket *tw_tb; + struct inet_bind2_bucket *tw_tb2; +}; + +typedef u32 inet_ehashfn_t(const struct net *, const __be32, const __u16, const __be32, const __be16); + +struct rps_sock_flow_table { + struct callback_head rcu; + u32 mask; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + u32 ents[0]; +}; + +struct bpf_sk_lookup_kern { + u16 family; + u16 protocol; + __be16 sport; + u16 dport; + struct { + __be32 saddr; + __be32 daddr; + } v4; + struct { + const struct in6_addr *saddr; + const struct in6_addr *daddr; + } v6; + struct sock *selected_sk; + u32 ingress_ifindex; + bool no_reuseport; +}; + +enum { + SOCK_WAKE_IO = 0, + SOCK_WAKE_WAITD = 1, + SOCK_WAKE_SPACE = 2, + SOCK_WAKE_URG = 3, +}; + +enum { + BPF_SOCK_OPS_RTO_CB_FLAG = 1, + BPF_SOCK_OPS_RETRANS_CB_FLAG = 2, + BPF_SOCK_OPS_STATE_CB_FLAG = 4, + BPF_SOCK_OPS_RTT_CB_FLAG = 8, + BPF_SOCK_OPS_PARSE_ALL_HDR_OPT_CB_FLAG = 16, + BPF_SOCK_OPS_PARSE_UNKNOWN_HDR_OPT_CB_FLAG = 32, + BPF_SOCK_OPS_WRITE_HDR_OPT_CB_FLAG = 64, + BPF_SOCK_OPS_ALL_CB_FLAGS = 127, +}; + +enum { + BPF_SOCK_OPS_VOID = 0, + BPF_SOCK_OPS_TIMEOUT_INIT = 1, + BPF_SOCK_OPS_RWND_INIT = 2, + BPF_SOCK_OPS_TCP_CONNECT_CB = 3, + BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 4, + BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 5, + BPF_SOCK_OPS_NEEDS_ECN = 6, + BPF_SOCK_OPS_BASE_RTT = 7, + BPF_SOCK_OPS_RTO_CB = 8, + BPF_SOCK_OPS_RETRANS_CB = 9, + BPF_SOCK_OPS_STATE_CB = 10, + BPF_SOCK_OPS_TCP_LISTEN_CB = 11, + BPF_SOCK_OPS_RTT_CB = 12, + BPF_SOCK_OPS_PARSE_HDR_OPT_CB = 13, + BPF_SOCK_OPS_HDR_OPT_LEN_CB = 14, + BPF_SOCK_OPS_WRITE_HDR_OPT_CB = 15, + BPF_SOCK_OPS_TSTAMP_SCHED_CB = 16, + BPF_SOCK_OPS_TSTAMP_SND_SW_CB = 17, + BPF_SOCK_OPS_TSTAMP_SND_HW_CB = 18, + BPF_SOCK_OPS_TSTAMP_ACK_CB = 19, + BPF_SOCK_OPS_TSTAMP_SENDMSG_CB = 20, +}; + +enum { + INET_FLAGS_PKTINFO = 0, + INET_FLAGS_TTL = 1, + INET_FLAGS_TOS = 2, + INET_FLAGS_RECVOPTS = 3, + INET_FLAGS_RETOPTS = 4, + INET_FLAGS_PASSSEC = 5, + INET_FLAGS_ORIGDSTADDR = 6, + INET_FLAGS_CHECKSUM = 7, + INET_FLAGS_RECVFRAGSIZE = 8, + INET_FLAGS_RECVERR = 9, + INET_FLAGS_RECVERR_RFC4884 = 10, + INET_FLAGS_FREEBIND = 11, + INET_FLAGS_HDRINCL = 12, + INET_FLAGS_MC_LOOP = 13, + INET_FLAGS_MC_ALL = 14, + INET_FLAGS_TRANSPARENT = 15, + INET_FLAGS_IS_ICSK = 16, + INET_FLAGS_NODEFRAG = 17, + INET_FLAGS_BIND_ADDRESS_NO_PORT = 18, + INET_FLAGS_DEFER_CONNECT = 19, + INET_FLAGS_MC6_LOOP = 20, + INET_FLAGS_RECVERR6_RFC4884 = 21, + INET_FLAGS_MC6_ALL = 22, + INET_FLAGS_AUTOFLOWLABEL_SET = 23, + INET_FLAGS_AUTOFLOWLABEL = 24, + INET_FLAGS_DONTFRAG = 25, + INET_FLAGS_RECVERR6 = 26, + INET_FLAGS_REPFLOW = 27, + INET_FLAGS_RTALERT_ISOLATE = 28, + INET_FLAGS_SNDFLOW = 29, + INET_FLAGS_RTALERT = 30, +}; + +enum inet_csk_ack_state_t { + ICSK_ACK_SCHED = 1, + ICSK_ACK_TIMER = 2, + ICSK_ACK_PUSHED = 4, + ICSK_ACK_PUSHED2 = 8, + ICSK_ACK_NOW = 16, + ICSK_ACK_NOMEM = 32, +}; + +union tcp_word_hdr { + struct tcphdr hdr; + __be32 words[5]; +}; + +enum { + TCP_FLAG_AE = 1, + TCP_FLAG_CWR = 32768, + TCP_FLAG_ECE = 16384, + TCP_FLAG_URG = 8192, + TCP_FLAG_ACK = 4096, + TCP_FLAG_PSH = 2048, + TCP_FLAG_RST = 1024, + TCP_FLAG_SYN = 512, + TCP_FLAG_FIN = 256, + TCP_RESERVED_BITS = 14, + TCP_DATA_OFFSET = 240, +}; + +enum tcp_fastopen_client_fail { + TFO_STATUS_UNSPEC = 0, + TFO_COOKIE_UNAVAILABLE = 1, + TFO_DATA_NOT_ACKED = 2, + TFO_SYN_RETRANSMITTED = 3, +}; + +enum tcp_ca_state { + TCP_CA_Open = 0, + TCP_CA_Disorder = 1, + TCP_CA_CWR = 2, + TCP_CA_Recovery = 3, + TCP_CA_Loss = 4, +}; + +struct tcp_fastopen_cookie { + __le64 val[2]; + s8 len; + bool exp; +}; + +struct tcp_sack_block_wire { + __be32 start_seq; + __be32 end_seq; +}; + +struct tcp_md5sig_info { + struct hlist_head head; + struct callback_head rcu; +}; + +struct tcp_ao_counters { + atomic64_t pkt_good; + atomic64_t pkt_bad; + atomic64_t key_not_found; + atomic64_t ao_required; + atomic64_t dropped_icmp; +}; + +struct tcp_ao_info { + struct hlist_head head; + struct tcp_ao_key *current_key; + struct tcp_ao_key *rnext_key; + struct tcp_ao_counters counters; + u32 ao_required: 1; + u32 accept_icmps: 1; + u32 __unused: 30; + __be32 lisn; + __be32 risn; + u32 snd_sne; + u32 rcv_sne; + refcount_t refcnt; + struct callback_head rcu; +}; + +struct tcp_fastopen_request { + struct tcp_fastopen_cookie cookie; + struct msghdr *data; + size_t size; + int copied; + struct ubuf_info *uarg; +}; + +union tcp_ao_addr { + struct in_addr a4; + struct in6_addr a6; +}; + +struct tcp_md5sig_key { + struct hlist_node node; + u8 keylen; + u8 family; + u8 prefixlen; + u8 flags; + union tcp_ao_addr addr; + int l3index; + u8 key[80]; + struct callback_head rcu; +}; + +struct static_key_false_deferred { + struct static_key_false key; + long unsigned int timeout; + struct delayed_work work; +}; + +struct bpf_sock_ops_kern { + struct sock *sk; + union { + u32 args[4]; + u32 reply; + u32 replylong[4]; + }; + struct sk_buff *syn_skb; + struct sk_buff *skb; + void *skb_data_end; + u8 op; + u8 is_fullsock; + u8 is_locked_tcp_sock; + u8 remaining_opt_len; + u64 temp; +}; + +struct tcp_ao_hdr { + u8 kind; + u8 length; + u8 keyid; + u8 rnext_keyid; +}; + +struct tcp_ao_key { + struct hlist_node node; + union tcp_ao_addr addr; + u8 key[80]; + unsigned int tcp_sigpool_id; + unsigned int digest_size; + int l3index; + u8 prefixlen; + u8 family; + u8 keylen; + u8 keyflags; + u8 sndid; + u8 rcvid; + u8 maclen; + struct callback_head rcu; + atomic64_t pkt_good; + atomic64_t pkt_bad; + u8 traffic_keys[0]; +}; + +struct mptcp_ext { + union { + u64 data_ack; + u32 data_ack32; + }; + u64 data_seq; + u32 subflow_seq; + u16 data_len; + __sum16 csum; + u8 use_map: 1; + u8 dsn64: 1; + u8 data_fin: 1; + u8 use_ack: 1; + u8 ack64: 1; + u8 mpc_map: 1; + u8 frozen: 1; + u8 reset_transient: 1; + u8 reset_reason: 4; + u8 csum_reqd: 1; + u8 infinite_map: 1; +}; + +enum tcp_queue { + TCP_FRAG_IN_WRITE_QUEUE = 0, + TCP_FRAG_IN_RTX_QUEUE = 1, +}; + +enum tcp_skb_cb_sacked_flags { + TCPCB_SACKED_ACKED = 1, + TCPCB_SACKED_RETRANS = 2, + TCPCB_LOST = 4, + TCPCB_TAGBITS = 7, + TCPCB_REPAIRED = 16, + TCPCB_EVER_RETRANS = 128, + TCPCB_RETRANS = 146, +}; + +struct tcp_skb_cb { + __u32 seq; + __u32 end_seq; + union { + struct { + u16 tcp_gso_segs; + u16 tcp_gso_size; + }; + }; + __u16 tcp_flags; + __u8 sacked; + __u8 ip_dsfield; + __u8 txstamp_ack: 2; + __u8 eor: 1; + __u8 has_rxtstamp: 1; + __u8 unused: 4; + __u32 ack_seq; + union { + struct { + __u32 is_app_limited: 1; + __u32 delivered_ce: 20; + __u32 unused: 11; + __u32 delivered; + u64 first_tx_mstamp; + u64 delivered_mstamp; + } tx; + union { + struct inet_skb_parm h4; + struct inet6_skb_parm h6; + } header; + }; +}; + +enum tcp_ca_ack_event_flags { + CA_ACK_SLOWPATH = 1, + CA_ACK_WIN_UPDATE = 2, + CA_ACK_ECE = 4, +}; + +enum tcp_chrono { + TCP_CHRONO_UNSPEC = 0, + TCP_CHRONO_BUSY = 1, + TCP_CHRONO_RWND_LIMITED = 2, + TCP_CHRONO_SNDBUF_LIMITED = 3, + __TCP_CHRONO_MAX = 4, +}; + +enum { + SCM_TSTAMP_SND = 0, + SCM_TSTAMP_SCHED = 1, + SCM_TSTAMP_ACK = 2, + SCM_TSTAMP_COMPLETION = 3, +}; + +struct tcp_sacktag_state { + u64 first_sackt; + u64 last_sackt; + u32 reord; + u32 sack_delivered; + int flag; + unsigned int mss_now; + struct rate_sample *rate; +}; + +enum rt_scope_t { + RT_SCOPE_UNIVERSE = 0, + RT_SCOPE_SITE = 200, + RT_SCOPE_LINK = 253, + RT_SCOPE_HOST = 254, + RT_SCOPE_NOWHERE = 255, +}; + +enum { + UDP_FLAGS_CORK = 0, + UDP_FLAGS_NO_CHECK6_TX = 1, + UDP_FLAGS_NO_CHECK6_RX = 2, + UDP_FLAGS_GRO_ENABLED = 3, + UDP_FLAGS_ACCEPT_FRAGLIST = 4, + UDP_FLAGS_ACCEPT_L4 = 5, + UDP_FLAGS_ENCAP_ENABLED = 6, + UDP_FLAGS_UDPLITE_SEND_CC = 7, + UDP_FLAGS_UDPLITE_RECV_CC = 8, +}; + +struct udp_sock { + struct inet_sock inet; + long unsigned int udp_flags; + int pending; + __u8 encap_type; + __u16 udp_lrpa_hash; + struct hlist_nulls_node udp_lrpa_node; + __u16 len; + __u16 gso_size; + __u16 pcslen; + __u16 pcrlen; + int (*encap_rcv)(struct sock *, struct sk_buff *); + void (*encap_err_rcv)(struct sock *, struct sk_buff *, int, __be16, u32, u8 *); + int (*encap_err_lookup)(struct sock *, struct sk_buff *); + void (*encap_destroy)(struct sock *); + struct sk_buff * (*gro_receive)(struct sock *, struct list_head *, struct sk_buff *); + int (*gro_complete)(struct sock *, struct sk_buff *, int); + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct sk_buff_head reader_queue; + int forward_deficit; + int forward_threshold; + bool peeking_with_offset; + struct hlist_node tunnel_list; + long: 64; +}; + +typedef struct sock * (*udp_lookup_t)(const struct sk_buff *, __be16, __be16); + +struct napi_gro_cb { + union { + struct { + void *frag0; + unsigned int frag0_len; + }; + struct { + struct sk_buff *last; + long unsigned int age; + }; + }; + int data_offset; + u16 flush; + u16 count; + u16 proto; + u16 pad; + union { + struct { + u16 gro_remcsum_start; + u8 same_flow: 1; + u8 encap_mark: 1; + u8 csum_valid: 1; + u8 csum_cnt: 3; + u8 free: 2; + u8 is_ipv6: 1; + u8 is_fou: 1; + u8 ip_fixedid: 1; + u8 recursion_counter: 4; + u8 is_flist: 1; + }; + struct { + u16 gro_remcsum_start; + u8 same_flow: 1; + u8 encap_mark: 1; + u8 csum_valid: 1; + u8 csum_cnt: 3; + u8 free: 2; + u8 is_ipv6: 1; + u8 is_fou: 1; + u8 ip_fixedid: 1; + u8 recursion_counter: 4; + u8 is_flist: 1; + } zeroed; + }; + __wsum csum; + union { + struct { + u16 network_offset; + u16 inner_network_offset; + }; + u16 network_offsets[2]; + }; +}; + +typedef struct sk_buff * (*gro_receive_t)(struct list_head *, struct sk_buff *); + +typedef struct sk_buff * (*gro_receive_sk_t)(struct sock *, struct list_head *, struct sk_buff *); + +struct udp_tunnel_info { + short unsigned int type; + sa_family_t sa_family; + __be16 port; + u8 hw_priv; +}; + +struct udp_tunnel_nic_shared { + struct udp_tunnel_nic *udp_tunnel_nic_info; + struct list_head devices; +}; + +typedef struct sk_buff * (*udp_tunnel_gro_rcv_t)(struct sock *, struct list_head *, struct sk_buff *); + +struct udp_tunnel_type_entry { + udp_tunnel_gro_rcv_t gro_receive; + refcount_t count; +}; + +struct ip_mreqn { + struct in_addr imr_multiaddr; + struct in_addr imr_address; + int imr_ifindex; +}; + +struct ifaddrmsg { + __u8 ifa_family; + __u8 ifa_prefixlen; + __u8 ifa_flags; + __u8 ifa_scope; + __u32 ifa_index; +}; + +enum { + IFA_UNSPEC = 0, + IFA_ADDRESS = 1, + IFA_LOCAL = 2, + IFA_LABEL = 3, + IFA_BROADCAST = 4, + IFA_ANYCAST = 5, + IFA_CACHEINFO = 6, + IFA_MULTICAST = 7, + IFA_FLAGS = 8, + IFA_RT_PRIORITY = 9, + IFA_TARGET_NETNSID = 10, + IFA_PROTO = 11, + __IFA_MAX = 12, +}; + +struct ifa_cacheinfo { + __u32 ifa_prefered; + __u32 ifa_valid; + __u32 cstamp; + __u32 tstamp; +}; + +enum { + IFLA_INET_UNSPEC = 0, + IFLA_INET_CONF = 1, + __IFLA_INET_MAX = 2, +}; + +enum rt_class_t { + RT_TABLE_UNSPEC = 0, + RT_TABLE_COMPAT = 252, + RT_TABLE_DEFAULT = 253, + RT_TABLE_MAIN = 254, + RT_TABLE_LOCAL = 255, + RT_TABLE_MAX = 4294967295, +}; + +struct ip_sf_list; + +struct ip_mc_list { + struct in_device *interface; + __be32 multiaddr; + unsigned int sfmode; + struct ip_sf_list *sources; + struct ip_sf_list *tomb; + long unsigned int sfcount[2]; + union { + struct ip_mc_list *next; + struct ip_mc_list *next_rcu; + }; + struct ip_mc_list *next_hash; + struct timer_list timer; + int users; + refcount_t refcnt; + spinlock_t lock; + char tm_running; + char reporter; + char unsolicit_count; + char loaded; + unsigned char gsquery; + unsigned char crcount; + long unsigned int mca_cstamp; + long unsigned int mca_tstamp; + struct callback_head rcu; +}; + +struct in_validator_info { + __be32 ivi_addr; + struct in_device *ivi_dev; + struct netlink_ext_ack *extack; +}; + +struct ip_sf_list { + struct ip_sf_list *sf_next; + long unsigned int sf_count[2]; + __be32 sf_inaddr; + unsigned char sf_gsresp; + unsigned char sf_oldin; + unsigned char sf_crcount; +}; + +struct inet_fill_args { + u32 portid; + u32 seq; + int event; + unsigned int flags; + int netnsid; + int ifindex; +}; + +struct netconfmsg { + __u8 ncm_family; +}; + +enum { + NETCONFA_UNSPEC = 0, + NETCONFA_IFINDEX = 1, + NETCONFA_FORWARDING = 2, + NETCONFA_RP_FILTER = 3, + NETCONFA_MC_FORWARDING = 4, + NETCONFA_PROXY_NEIGH = 5, + NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN = 6, + NETCONFA_INPUT = 7, + NETCONFA_BC_FORWARDING = 8, + NETCONFA_FORCE_FORWARDING = 9, + __NETCONFA_MAX = 10, +}; + +struct fib_result { + __be32 prefix; + unsigned char prefixlen; + unsigned char nh_sel; + unsigned char type; + unsigned char scope; + u32 tclassid; + dscp_t dscp; + struct fib_nh_common *nhc; + struct fib_info *fi; + struct fib_table *table; + struct hlist_head *fa_head; +}; + +struct devinet_sysctl_table { + struct ctl_table_header *sysctl_header; + struct ctl_table devinet_vars[33]; +}; + +struct seq_net_private { + struct net *net; + netns_tracker ns_tracker; +}; + +struct nl_info { + struct nlmsghdr *nlh; + struct net *nl_net; + u32 portid; + u8 skip_notify: 1; + u8 skip_notify_kernel: 1; +}; + +struct fib_config { + u8 fc_dst_len; + dscp_t fc_dscp; + u8 fc_protocol; + u8 fc_scope; + u8 fc_type; + u8 fc_gw_family; + u32 fc_table; + __be32 fc_dst; + union { + __be32 fc_gw4; + struct in6_addr fc_gw6; + }; + int fc_oif; + u32 fc_flags; + u32 fc_priority; + __be32 fc_prefsrc; + u32 fc_nh_id; + struct nlattr *fc_mx; + struct rtnexthop *fc_mp; + int fc_mx_len; + int fc_mp_len; + u32 fc_flow; + u32 fc_nlflags; + struct nl_info fc_nlinfo; + struct nlattr *fc_encap; + u16 fc_encap_type; +}; + +struct fib_rt_info { + struct fib_info *fi; + u32 tb_id; + __be32 dst; + int dst_len; + dscp_t dscp; + u8 type; + u8 offload: 1; + u8 trap: 1; + u8 offload_failed: 1; + u8 unused: 5; +}; + +struct fib_entry_notifier_info { + struct fib_notifier_info info; + u32 dst; + int dst_len; + struct fib_info *fi; + dscp_t dscp; + u8 type; + u32 tb_id; +}; + +struct fib_dump_filter { + u32 table_id; + bool filter_set; + bool dump_routes; + bool dump_exceptions; + bool rtnl_held; + unsigned char protocol; + unsigned char rt_type; + unsigned int flags; + struct net_device *dev; +}; + +struct fib_alias { + struct hlist_node fa_list; + struct fib_info *fa_info; + dscp_t fa_dscp; + u8 fa_type; + u8 fa_state; + u8 fa_slen; + u32 tb_id; + s16 fa_default; + u8 offload; + u8 trap; + u8 offload_failed; + struct callback_head rcu; +}; + +struct fib_prop { + int error; + u8 scope; +}; + +typedef unsigned int t_key; + +struct key_vector { + t_key key; + unsigned char pos; + unsigned char bits; + unsigned char slen; + union { + struct hlist_head leaf; + struct { + struct {} __empty_tnode; + struct key_vector *tnode[0]; + }; + }; +}; + +struct tnode { + struct callback_head rcu; + t_key empty_children; + t_key full_children; + struct key_vector *parent; + struct key_vector kv[1]; +}; + +struct trie_use_stats { + unsigned int gets; + unsigned int backtrack; + unsigned int semantic_match_passed; + unsigned int semantic_match_miss; + unsigned int null_node_hit; + unsigned int resize_node_skipped; +}; + +struct trie_stat { + unsigned int totdepth; + unsigned int maxdepth; + unsigned int tnodes; + unsigned int leaves; + unsigned int nullpointers; + unsigned int prefixes; + unsigned int nodesizes[32]; +}; + +struct trie { + struct key_vector kv[1]; + struct trie_use_stats *stats; +}; + +struct fib_trie_iter { + struct seq_net_private p; + struct fib_table *tb; + struct key_vector *tnode; + unsigned int index; + unsigned int depth; +}; + +struct fib_route_iter { + struct seq_net_private p; + struct fib_table *main_tb; + struct key_vector *tnode; + loff_t pos; + t_key key; +}; + +struct icmpv6_echo { + __be16 identifier; + __be16 sequence; +}; + +struct icmpv6_nd_advt { + __u32 reserved: 5; + __u32 override: 1; + __u32 solicited: 1; + __u32 router: 1; + __u32 reserved2: 24; +}; + +struct icmpv6_nd_ra { + __u8 hop_limit; + __u8 reserved: 3; + __u8 router_pref: 2; + __u8 home_agent: 1; + __u8 other: 1; + __u8 managed: 1; + __be16 rt_lifetime; +}; + +struct icmp6hdr { + __u8 icmp6_type; + __u8 icmp6_code; + __sum16 icmp6_cksum; + union { + __be32 un_data32[1]; + __be16 un_data16[2]; + __u8 un_data8[4]; + struct icmpv6_echo u_echo; + struct icmpv6_nd_advt u_nd_advt; + struct icmpv6_nd_ra u_nd_ra; + } icmp6_dataun; +}; + +enum lwtunnel_ip_t { + LWTUNNEL_IP_UNSPEC = 0, + LWTUNNEL_IP_ID = 1, + LWTUNNEL_IP_DST = 2, + LWTUNNEL_IP_SRC = 3, + LWTUNNEL_IP_TTL = 4, + LWTUNNEL_IP_TOS = 5, + LWTUNNEL_IP_FLAGS = 6, + LWTUNNEL_IP_PAD = 7, + LWTUNNEL_IP_OPTS = 8, + __LWTUNNEL_IP_MAX = 9, +}; + +enum lwtunnel_ip6_t { + LWTUNNEL_IP6_UNSPEC = 0, + LWTUNNEL_IP6_ID = 1, + LWTUNNEL_IP6_DST = 2, + LWTUNNEL_IP6_SRC = 3, + LWTUNNEL_IP6_HOPLIMIT = 4, + LWTUNNEL_IP6_TC = 5, + LWTUNNEL_IP6_FLAGS = 6, + LWTUNNEL_IP6_PAD = 7, + LWTUNNEL_IP6_OPTS = 8, + __LWTUNNEL_IP6_MAX = 9, +}; + +enum { + LWTUNNEL_IP_OPTS_UNSPEC = 0, + LWTUNNEL_IP_OPTS_GENEVE = 1, + LWTUNNEL_IP_OPTS_VXLAN = 2, + LWTUNNEL_IP_OPTS_ERSPAN = 3, + __LWTUNNEL_IP_OPTS_MAX = 4, +}; + +enum { + LWTUNNEL_IP_OPT_GENEVE_UNSPEC = 0, + LWTUNNEL_IP_OPT_GENEVE_CLASS = 1, + LWTUNNEL_IP_OPT_GENEVE_TYPE = 2, + LWTUNNEL_IP_OPT_GENEVE_DATA = 3, + __LWTUNNEL_IP_OPT_GENEVE_MAX = 4, +}; + +enum { + LWTUNNEL_IP_OPT_VXLAN_UNSPEC = 0, + LWTUNNEL_IP_OPT_VXLAN_GBP = 1, + __LWTUNNEL_IP_OPT_VXLAN_MAX = 2, +}; + +enum { + LWTUNNEL_IP_OPT_ERSPAN_UNSPEC = 0, + LWTUNNEL_IP_OPT_ERSPAN_VER = 1, + LWTUNNEL_IP_OPT_ERSPAN_INDEX = 2, + LWTUNNEL_IP_OPT_ERSPAN_DIR = 3, + LWTUNNEL_IP_OPT_ERSPAN_HWID = 4, + __LWTUNNEL_IP_OPT_ERSPAN_MAX = 5, +}; + +struct icmphdr { + __u8 type; + __u8 code; + __sum16 checksum; + union { + struct { + __be16 id; + __be16 sequence; + } echo; + __be32 gateway; + struct { + __be16 __unused; + __be16 mtu; + } frag; + __u8 reserved[4]; + } un; +}; + +enum { + IFLA_IPTUN_UNSPEC = 0, + IFLA_IPTUN_LINK = 1, + IFLA_IPTUN_LOCAL = 2, + IFLA_IPTUN_REMOTE = 3, + IFLA_IPTUN_TTL = 4, + IFLA_IPTUN_TOS = 5, + IFLA_IPTUN_ENCAP_LIMIT = 6, + IFLA_IPTUN_FLOWINFO = 7, + IFLA_IPTUN_FLAGS = 8, + IFLA_IPTUN_PROTO = 9, + IFLA_IPTUN_PMTUDISC = 10, + IFLA_IPTUN_6RD_PREFIX = 11, + IFLA_IPTUN_6RD_RELAY_PREFIX = 12, + IFLA_IPTUN_6RD_PREFIXLEN = 13, + IFLA_IPTUN_6RD_RELAY_PREFIXLEN = 14, + IFLA_IPTUN_ENCAP_TYPE = 15, + IFLA_IPTUN_ENCAP_FLAGS = 16, + IFLA_IPTUN_ENCAP_SPORT = 17, + IFLA_IPTUN_ENCAP_DPORT = 18, + IFLA_IPTUN_COLLECT_METADATA = 19, + IFLA_IPTUN_FWMARK = 20, + __IFLA_IPTUN_VENDOR_BREAK = 21, + IFLA_IPTUN_FAN_MAP = 33, + __IFLA_IPTUN_MAX = 34, +}; + +struct ip_tunnel_encap_ops { + size_t (*encap_hlen)(struct ip_tunnel_encap *); + int (*build_header)(struct sk_buff *, struct ip_tunnel_encap *, u8 *, struct flowi4 *); + int (*err_handler)(struct sk_buff *, u32); +}; + +struct ip6_tnl_encap_ops { + size_t (*encap_hlen)(struct ip_tunnel_encap *); + int (*build_header)(struct sk_buff *, struct ip_tunnel_encap *, u8 *, struct flowi6 *); + int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); +}; + +struct geneve_opt { + __be16 opt_class; + u8 type; + u8 length: 5; + u8 r3: 1; + u8 r2: 1; + u8 r1: 1; + u8 opt_data[0]; +}; + +struct vxlan_metadata { + u32 gbp; +}; + +struct erspan_md2 { + __be32 timestamp; + __be16 sgt; + __u8 hwid_upper: 2; + __u8 ft: 5; + __u8 p: 1; + __u8 o: 1; + __u8 gra: 2; + __u8 dir: 1; + __u8 hwid: 4; +}; + +struct erspan_metadata { + int version; + union { + __be32 index; + struct erspan_md2 md2; + } u; +}; + +struct vlan_hdr { + __be16 h_vlan_TCI; + __be16 h_vlan_encapsulated_proto; +}; + +struct ip_tunnel_parm { + char name[16]; + int link; + __be16 i_flags; + __be16 o_flags; + __be32 i_key; + __be32 o_key; + struct iphdr iph; +}; + +enum tunnel_encap_types { + TUNNEL_ENCAP_NONE = 0, + TUNNEL_ENCAP_FOU = 1, + TUNNEL_ENCAP_GUE = 2, + TUNNEL_ENCAP_MPLS = 3, +}; + +struct gro_cell; + +struct gro_cells { + struct gro_cell *cells; +}; + +struct ip_tunnel_6rd_parm { + struct in6_addr prefix; + __be32 relay_prefix; + u16 prefixlen; + u16 relay_prefixlen; +}; + +struct ip_tunnel_prl_entry { + struct ip_tunnel_prl_entry *next; + __be32 addr; + u16 flags; + struct callback_head callback_head; +}; + +struct ip_tunnel_fan { + struct list_head fan_maps; +}; + +struct ip_tunnel { + struct ip_tunnel *next; + struct hlist_node hash_node; + struct net_device *dev; + netdevice_tracker dev_tracker; + struct net *net; + long unsigned int err_time; + int err_count; + u32 i_seqno; + atomic_t o_seqno; + int tun_hlen; + u32 index; + u8 erspan_ver; + u8 dir; + u16 hwid; + struct dst_cache dst_cache; + struct ip_tunnel_parm_kern parms; + int mlink; + int encap_hlen; + int hlen; + struct ip_tunnel_encap encap; + struct ip_tunnel_6rd_parm ip6rd; + struct ip_tunnel_prl_entry *prl; + unsigned int prl_count; + struct ip_tunnel_fan fan; + unsigned int ip_tnl_net_id; + struct gro_cells gro_cells; + __u32 fwmark; + bool collect_md; + bool ignore_df; +}; + +struct tnl_ptk_info { + long unsigned int flags[1]; + __be16 proto; + __be32 key; + __be32 seq; + int hdr_len; +}; + +struct ip_tunnel_net { + struct net_device *fb_tunnel_dev; + struct rtnl_link_ops *rtnl_link_ops; + struct hlist_head tunnels[128]; + struct ip_tunnel *collect_md_tun; + int type; +}; + +struct nlmsgerr { + int error; + struct nlmsghdr msg; +}; + +struct rtmsg { + unsigned char rtm_family; + unsigned char rtm_dst_len; + unsigned char rtm_src_len; + unsigned char rtm_tos; + unsigned char rtm_table; + unsigned char rtm_protocol; + unsigned char rtm_scope; + unsigned char rtm_type; + unsigned int rtm_flags; +}; + +struct igmphdr { + __u8 type; + __u8 code; + __sum16 csum; + __be32 group; +}; + +struct ip_sf_socklist { + unsigned int sl_max; + unsigned int sl_count; + struct callback_head rcu; + __be32 sl_addr[0]; +}; + +struct ip_mc_socklist { + struct ip_mc_socklist *next_rcu; + struct ip_mreqn multi; + unsigned int sfmode; + struct ip_sf_socklist *sflist; + struct callback_head rcu; +}; + +enum { + PIM_TYPE_HELLO = 0, + PIM_TYPE_REGISTER = 1, + PIM_TYPE_REGISTER_STOP = 2, + PIM_TYPE_JOIN_PRUNE = 3, + PIM_TYPE_BOOTSTRAP = 4, + PIM_TYPE_ASSERT = 5, + PIM_TYPE_GRAFT = 6, + PIM_TYPE_GRAFT_ACK = 7, + PIM_TYPE_CANDIDATE_RP_ADV = 8, +}; + +struct pimreghdr { + __u8 type; + __u8 reserved; + __be16 csum; + __be32 flags; +}; + +typedef short unsigned int vifi_t; + +struct vifctl { + vifi_t vifc_vifi; + unsigned char vifc_flags; + unsigned char vifc_threshold; + unsigned int vifc_rate_limit; + union { + struct in_addr vifc_lcl_addr; + int vifc_lcl_ifindex; + }; + struct in_addr vifc_rmt_addr; +}; + +struct mfcctl { + struct in_addr mfcc_origin; + struct in_addr mfcc_mcastgrp; + vifi_t mfcc_parent; + unsigned char mfcc_ttls[32]; + unsigned int mfcc_pkt_cnt; + unsigned int mfcc_byte_cnt; + unsigned int mfcc_wrong_if; + int mfcc_expire; +}; + +struct sioc_sg_req { + struct in_addr src; + struct in_addr grp; + long unsigned int pktcnt; + long unsigned int bytecnt; + long unsigned int wrong_if; +}; + +struct sioc_vif_req { + vifi_t vifi; + long unsigned int icount; + long unsigned int ocount; + long unsigned int ibytes; + long unsigned int obytes; +}; + +struct igmpmsg { + __u32 unused1; + __u32 unused2; + unsigned char im_msgtype; + unsigned char im_mbz; + unsigned char im_vif; + unsigned char im_vif_hi; + struct in_addr im_src; + struct in_addr im_dst; +}; + +enum { + IPMRA_TABLE_UNSPEC = 0, + IPMRA_TABLE_ID = 1, + IPMRA_TABLE_CACHE_RES_QUEUE_LEN = 2, + IPMRA_TABLE_MROUTE_REG_VIF_NUM = 3, + IPMRA_TABLE_MROUTE_DO_ASSERT = 4, + IPMRA_TABLE_MROUTE_DO_PIM = 5, + IPMRA_TABLE_VIFS = 6, + IPMRA_TABLE_MROUTE_DO_WRVIFWHOLE = 7, + __IPMRA_TABLE_MAX = 8, +}; + +enum { + IPMRA_VIF_UNSPEC = 0, + IPMRA_VIF = 1, + __IPMRA_VIF_MAX = 2, +}; + +enum { + IPMRA_VIFA_UNSPEC = 0, + IPMRA_VIFA_IFINDEX = 1, + IPMRA_VIFA_VIF_ID = 2, + IPMRA_VIFA_FLAGS = 3, + IPMRA_VIFA_BYTES_IN = 4, + IPMRA_VIFA_BYTES_OUT = 5, + IPMRA_VIFA_PACKETS_IN = 6, + IPMRA_VIFA_PACKETS_OUT = 7, + IPMRA_VIFA_LOCAL_ADDR = 8, + IPMRA_VIFA_REMOTE_ADDR = 9, + IPMRA_VIFA_PAD = 10, + __IPMRA_VIFA_MAX = 11, +}; + +enum { + IPMRA_CREPORT_UNSPEC = 0, + IPMRA_CREPORT_MSGTYPE = 1, + IPMRA_CREPORT_VIF_ID = 2, + IPMRA_CREPORT_SRC_ADDR = 3, + IPMRA_CREPORT_DST_ADDR = 4, + IPMRA_CREPORT_PKT = 5, + IPMRA_CREPORT_TABLE = 6, + __IPMRA_CREPORT_MAX = 7, +}; + +struct vif_entry_notifier_info { + struct fib_notifier_info info; + struct net_device *dev; + short unsigned int vif_index; + short unsigned int vif_flags; + u32 tb_id; +}; + +enum { + MFC_STATIC = 1, + MFC_OFFLOAD = 2, +}; + +struct mr_mfc { + struct rhlist_head mnode; + short unsigned int mfc_parent; + int mfc_flags; + union { + struct { + long unsigned int expires; + struct sk_buff_head unresolved; + } unres; + struct { + long unsigned int last_assert; + int minvif; + int maxvif; + atomic_long_t bytes; + atomic_long_t pkt; + atomic_long_t wrong_if; + long unsigned int lastuse; + unsigned char ttls[32]; + refcount_t refcount; + } res; + } mfc_un; + struct list_head list; + struct callback_head rcu; + void (*free)(struct callback_head *); +}; + +struct mfc_entry_notifier_info { + struct fib_notifier_info info; + struct mr_mfc *mfc; + u32 tb_id; +}; + +struct mr_vif_iter { + struct seq_net_private p; + struct mr_table *mrt; + int ct; +}; + +struct mr_mfc_iter { + struct seq_net_private p; + struct mr_table *mrt; + struct list_head *cache; + spinlock_t *lock; +}; + +struct mfc_cache_cmp_arg { + __be32 mfc_mcastgrp; + __be32 mfc_origin; +}; + +struct mfc_cache { + struct mr_mfc _c; + union { + struct { + __be32 mfc_mcastgrp; + __be32 mfc_origin; + }; + struct mfc_cache_cmp_arg cmparg; + }; +}; + +struct icmp_filter { + __u32 data; +}; + +struct raw_sock { + struct inet_sock inet; + struct icmp_filter filter; + u32 ipmr_table; +}; + +struct compat_sioc_sg_req { + struct in_addr src; + struct in_addr grp; + compat_ulong_t pktcnt; + compat_ulong_t bytecnt; + compat_ulong_t wrong_if; +}; + +struct compat_sioc_vif_req { + vifi_t vifi; + compat_ulong_t icount; + compat_ulong_t ocount; + compat_ulong_t ibytes; + compat_ulong_t obytes; +}; + +struct flow_dissector_key_tags { + u32 flow_label; +}; + +struct flow_dissector_key_tipc { + __be32 key; +}; + +struct flow_dissector_key_addrs { + union { + struct flow_dissector_key_ipv4_addrs v4addrs; + struct flow_dissector_key_ipv6_addrs v6addrs; + struct flow_dissector_key_tipc tipckey; + }; +}; + +struct flow_keys { + struct flow_dissector_key_control control; + struct flow_dissector_key_basic basic; + struct flow_dissector_key_tags tags; + struct flow_dissector_key_vlan vlan; + struct flow_dissector_key_vlan cvlan; + struct flow_dissector_key_keyid keyid; + struct flow_dissector_key_ports ports; + struct flow_dissector_key_icmp icmp; + struct flow_dissector_key_addrs addrs; + long: 0; +}; + +struct sk_psock_progs { + struct bpf_prog *msg_parser; + struct bpf_prog *stream_parser; + struct bpf_prog *stream_verdict; + struct bpf_prog *skb_verdict; + struct bpf_link *msg_parser_link; + struct bpf_link *stream_parser_link; + struct bpf_link *stream_verdict_link; + struct bpf_link *skb_verdict_link; +}; + +struct strp_stats { + long long unsigned int msgs; + long long unsigned int bytes; + unsigned int mem_fail; + unsigned int need_more_hdr; + unsigned int msg_too_big; + unsigned int msg_timeouts; + unsigned int bad_hdr_len; +}; + +struct strparser; + +struct strp_callbacks { + int (*parse_msg)(struct strparser *, struct sk_buff *); + void (*rcv_msg)(struct strparser *, struct sk_buff *); + int (*read_sock)(struct strparser *, read_descriptor_t *, sk_read_actor_t); + int (*read_sock_done)(struct strparser *, int); + void (*abort_parser)(struct strparser *, int); + void (*lock)(struct strparser *); + void (*unlock)(struct strparser *); +}; + +struct strparser { + struct sock *sk; + u32 stopped: 1; + u32 paused: 1; + u32 aborted: 1; + u32 interrupted: 1; + u32 unrecov_intr: 1; + struct sk_buff **skb_nextp; + struct sk_buff *skb_head; + unsigned int need_bytes; + struct delayed_work msg_timer_work; + struct work_struct work; + struct strp_stats stats; + struct strp_callbacks cb; +}; + +struct sk_psock_work_state { + u32 len; + u32 off; +}; + +struct sk_msg; + +struct sk_psock { + struct sock *sk; + struct sock *sk_redir; + u32 apply_bytes; + u32 cork_bytes; + u32 eval; + bool redir_ingress; + struct sk_msg *cork; + struct sk_psock_progs progs; + struct strparser strp; + u32 copied_seq; + u32 ingress_bytes; + struct sk_buff_head ingress_skb; + struct list_head ingress_msg; + spinlock_t ingress_lock; + long unsigned int state; + struct list_head link; + spinlock_t link_lock; + refcount_t refcnt; + void (*saved_unhash)(struct sock *); + void (*saved_destroy)(struct sock *); + void (*saved_close)(struct sock *, long int); + void (*saved_write_space)(struct sock *); + void (*saved_data_ready)(struct sock *); + int (*psock_update_sk_prot)(struct sock *, struct sk_psock *, bool); + struct proto *sk_proto; + struct mutex work_mutex; + struct sk_psock_work_state work_state; + struct delayed_work work; + struct sock *sk_pair; + struct rcu_work rwork; +}; + +enum __sk_action { + __SK_DROP = 0, + __SK_PASS = 1, + __SK_REDIRECT = 2, + __SK_NONE = 3, +}; + +struct sk_msg_sg { + u32 start; + u32 curr; + u32 end; + u32 size; + u32 copybreak; + long unsigned int copy[1]; + struct scatterlist data[19]; +}; + +struct sk_msg { + struct sk_msg_sg sg; + void *data; + void *data_end; + u32 apply_bytes; + u32 cork_bytes; + u32 flags; + struct sk_buff *skb; + struct sock *sk_redir; + struct sock *sk; + struct list_head list; +}; + +enum sk_psock_state_bits { + SK_PSOCK_TX_ENABLED = 0, + SK_PSOCK_RX_STRP_ENABLED = 1, +}; + +struct tls_crypto_info { + __u16 version; + __u16 cipher_type; +}; + +struct tls12_crypto_info_aes_gcm_128 { + struct tls_crypto_info info; + unsigned char iv[8]; + unsigned char key[16]; + unsigned char salt[4]; + unsigned char rec_seq[8]; +}; + +struct tls12_crypto_info_aes_gcm_256 { + struct tls_crypto_info info; + unsigned char iv[8]; + unsigned char key[32]; + unsigned char salt[4]; + unsigned char rec_seq[8]; +}; + +struct tls12_crypto_info_chacha20_poly1305 { + struct tls_crypto_info info; + unsigned char iv[12]; + unsigned char key[32]; + unsigned char salt[0]; + unsigned char rec_seq[8]; +}; + +struct tls12_crypto_info_sm4_gcm { + struct tls_crypto_info info; + unsigned char iv[8]; + unsigned char key[16]; + unsigned char salt[4]; + unsigned char rec_seq[8]; +}; + +struct tls12_crypto_info_sm4_ccm { + struct tls_crypto_info info; + unsigned char iv[8]; + unsigned char key[16]; + unsigned char salt[4]; + unsigned char rec_seq[8]; +}; + +struct tx_work { + struct delayed_work work; + struct sock *sk; +}; + +struct tls_rec; + +struct tls_sw_context_tx { + struct crypto_aead *aead_send; + struct crypto_wait async_wait; + struct tx_work tx_work; + struct tls_rec *open_rec; + struct list_head tx_list; + atomic_t encrypt_pending; + u8 async_capable: 1; + long unsigned int tx_bitmask; +}; + +struct tls_prot_info { + u16 version; + u16 cipher_type; + u16 prepend_size; + u16 tag_size; + u16 overhead_size; + u16 iv_size; + u16 salt_size; + u16 rec_seq_size; + u16 aad_size; + u16 tail_size; +}; + +struct cipher_context { + char iv[20]; + char rec_seq[8]; +}; + +union tls_crypto_context { + struct tls_crypto_info info; + union { + struct tls12_crypto_info_aes_gcm_128 aes_gcm_128; + struct tls12_crypto_info_aes_gcm_256 aes_gcm_256; + struct tls12_crypto_info_chacha20_poly1305 chacha20_poly1305; + struct tls12_crypto_info_sm4_gcm sm4_gcm; + struct tls12_crypto_info_sm4_ccm sm4_ccm; + }; +}; + +struct tls_context { + struct tls_prot_info prot_info; + u8 tx_conf: 3; + u8 rx_conf: 3; + u8 zerocopy_sendfile: 1; + u8 rx_no_pad: 1; + int (*push_pending_record)(struct sock *, int); + void (*sk_write_space)(struct sock *); + void *priv_ctx_tx; + void *priv_ctx_rx; + struct net_device *netdev; + struct cipher_context tx; + struct cipher_context rx; + struct scatterlist *partially_sent_record; + u16 partially_sent_offset; + bool splicing_pages; + bool pending_open_record_frags; + struct mutex tx_lock; + long unsigned int flags; + struct proto *sk_proto; + struct sock *sk; + void (*sk_destruct)(struct sock *); + union tls_crypto_context crypto_send; + union tls_crypto_context crypto_recv; + struct list_head list; + refcount_t refcount; + struct callback_head rcu; +}; + +enum { + TCP_BPF_IPV4 = 0, + TCP_BPF_IPV6 = 1, + TCP_BPF_NUM_PROTS = 2, +}; + +enum { + TCP_BPF_BASE = 0, + TCP_BPF_TX = 1, + TCP_BPF_RX = 2, + TCP_BPF_TXRX = 3, + TCP_BPF_NUM_CFGS = 4, +}; + +struct ip6_tnl; + +struct xfrm_tunnel_skb_cb { + union { + struct inet_skb_parm h4; + struct inet6_skb_parm h6; + } header; + union { + struct ip_tunnel *ip4; + struct ip6_tnl *ip6; + } tunnel; +}; + +struct xfrm_mode_skb_cb { + struct xfrm_tunnel_skb_cb header; + __be16 id; + __be16 frag_off; + u8 ihl; + u8 tos; + u8 ttl; + u8 protocol; + u8 optlen; + u8 flow_lbl[3]; +}; + +struct xfrm_spi_skb_cb { + struct xfrm_tunnel_skb_cb header; + unsigned int daddroff; + unsigned int family; + __be32 seq; +}; + +struct tcp_ao_add { + struct __kernel_sockaddr_storage addr; + char alg_name[64]; + __s32 ifindex; + __u32 set_current: 1; + __u32 set_rnext: 1; + __u32 reserved: 30; + __u16 reserved2; + __u8 prefix; + __u8 sndid; + __u8 rcvid; + __u8 maclen; + __u8 keyflags; + __u8 keylen; + __u8 key[80]; +}; + +struct tcp_ao_del { + struct __kernel_sockaddr_storage addr; + __s32 ifindex; + __u32 set_current: 1; + __u32 set_rnext: 1; + __u32 del_async: 1; + __u32 reserved: 29; + __u16 reserved2; + __u8 prefix; + __u8 sndid; + __u8 rcvid; + __u8 current_key; + __u8 rnext; + __u8 keyflags; +}; + +struct tcp_ao_info_opt { + __u32 set_current: 1; + __u32 set_rnext: 1; + __u32 ao_required: 1; + __u32 set_counters: 1; + __u32 accept_icmps: 1; + __u32 reserved: 27; + __u16 reserved2; + __u8 current_key; + __u8 rnext; + __u64 pkt_good; + __u64 pkt_bad; + __u64 pkt_key_not_found; + __u64 pkt_ao_required; + __u64 pkt_dropped_icmp; +}; + +struct tcp_ao_getsockopt { + struct __kernel_sockaddr_storage addr; + char alg_name[64]; + __u8 key[80]; + __u32 nkeys; + __u16 is_current: 1; + __u16 is_rnext: 1; + __u16 get_all: 1; + __u16 reserved: 13; + __u8 sndid; + __u8 rcvid; + __u8 prefix; + __u8 maclen; + __u8 keyflags; + __u8 keylen; + __s32 ifindex; + __u64 pkt_good; + __u64 pkt_bad; +}; + +struct tcp_ao_repair { + __be32 snt_isn; + __be32 rcv_isn; + __u32 snd_sne; + __u32 rcv_sne; +}; + +struct tcp_timewait_sock { + struct inet_timewait_sock tw_sk; + u32 tw_rcv_wnd; + u32 tw_ts_offset; + u32 tw_ts_recent; + u32 tw_last_oow_ack_time; + int tw_ts_recent_stamp; + u32 tw_tx_delay; + struct tcp_md5sig_key *tw_md5_key; + struct tcp_ao_info *ao_info; +}; + +struct tcp4_ao_context { + __be32 saddr; + __be32 daddr; + __be16 sport; + __be16 dport; + __be32 sisn; + __be32 disn; +}; + +struct tcp4_pseudohdr { + __be32 saddr; + __be32 daddr; + __u8 pad; + __u8 protocol; + __be16 len; +}; + +struct tcp_sigpool { + void *scratch; + struct ahash_request *req; +}; + +struct kdf_input_block { + u8 counter; + u8 label[6]; + struct tcp4_ao_context ctx; + __be16 outlen; +} __attribute__((packed)); + +enum xfrm_sa_dir { + XFRM_SA_DIR_IN = 1, + XFRM_SA_DIR_OUT = 2, +}; + +enum xfrm_ae_ftype_t { + XFRM_AE_UNSPEC = 0, + XFRM_AE_RTHR = 1, + XFRM_AE_RVAL = 2, + XFRM_AE_LVAL = 4, + XFRM_AE_ETHR = 8, + XFRM_AE_CR = 16, + XFRM_AE_CE = 32, + XFRM_AE_CU = 64, + __XFRM_AE_MAX = 65, +}; + +enum xfrm_nlgroups { + XFRMNLGRP_NONE = 0, + XFRMNLGRP_ACQUIRE = 1, + XFRMNLGRP_EXPIRE = 2, + XFRMNLGRP_SA = 3, + XFRMNLGRP_POLICY = 4, + XFRMNLGRP_AEVENTS = 5, + XFRMNLGRP_REPORT = 6, + XFRMNLGRP_MIGRATE = 7, + XFRMNLGRP_MAPPING = 8, + __XFRMNLGRP_MAX = 9, +}; + +enum { + XFRM_DEV_OFFLOAD_FLAG_ACQ = 1, +}; + +enum { + XFRM_MODE_FLAG_TUNNEL = 1, +}; + +enum { + XFRM_STATE_VOID = 0, + XFRM_STATE_ACQ = 1, + XFRM_STATE_VALID = 2, + XFRM_STATE_ERROR = 3, + XFRM_STATE_EXPIRED = 4, + XFRM_STATE_DEAD = 5, +}; + +struct km_event { + union { + u32 hard; + u32 proto; + u32 byid; + u32 aevent; + u32 type; + } data; + u32 seq; + u32 portid; + u32 event; + struct net *net; +}; + +struct xfrm_state_afinfo { + u8 family; + u8 proto; + const struct xfrm_type_offload *type_offload_esp; + const struct xfrm_type *type_esp; + const struct xfrm_type *type_ipip; + const struct xfrm_type *type_ipip6; + const struct xfrm_type *type_comp; + const struct xfrm_type *type_ah; + const struct xfrm_type *type_routing; + const struct xfrm_type *type_dstopts; + int (*output)(struct net *, struct sock *, struct sk_buff *); + int (*transport_finish)(struct sk_buff *, int); + void (*local_error)(struct sk_buff *, u32); +}; + +struct xfrm_kmaddress { + xfrm_address_t local; + xfrm_address_t remote; + u32 reserved; + u16 family; +}; + +struct xfrm_migrate { + xfrm_address_t old_daddr; + xfrm_address_t old_saddr; + xfrm_address_t new_daddr; + xfrm_address_t new_saddr; + u8 proto; + u8 mode; + u16 reserved; + u32 reqid; + u16 old_family; + u16 new_family; +}; + +struct xfrm_mgr { + struct list_head list; + int (*notify)(struct xfrm_state *, const struct km_event *); + int (*acquire)(struct xfrm_state *, struct xfrm_tmpl *, struct xfrm_policy *); + struct xfrm_policy * (*compile_policy)(struct sock *, int, u8 *, int, int *); + int (*new_mapping)(struct xfrm_state *, xfrm_address_t *, __be16); + int (*notify_policy)(struct xfrm_policy *, int, const struct km_event *); + int (*report)(struct net *, u8, struct xfrm_selector *, xfrm_address_t *); + int (*migrate)(const struct xfrm_selector *, u8, u8, const struct xfrm_migrate *, int, const struct xfrm_kmaddress *, const struct xfrm_encap_tmpl *); + bool (*is_alive)(const struct km_event *); +}; + +struct xfrmk_sadinfo { + u32 sadhcnt; + u32 sadhmcnt; + u32 sadcnt; +}; + +struct xfrm_translator { + int (*alloc_compat)(struct sk_buff *, const struct nlmsghdr *); + struct nlmsghdr * (*rcv_msg_compat)(const struct nlmsghdr *, int, const struct nla_policy *, struct netlink_ext_ack *); + int (*xlate_user_policy_sockptr)(u8 **, int); + struct module *owner; +}; + +struct xfrm_hash_state_ptrs { + const struct hlist_head *bydst; + const struct hlist_head *bysrc; + const struct hlist_head *byspi; + unsigned int hmask; +}; + +struct xfrm_skb_cb { + struct xfrm_tunnel_skb_cb header; + union { + struct { + __u32 low; + __u32 hi; + } output; + struct { + __be32 low; + __be32 hi; + } input; + } seq; +}; + +struct fib6_result; + +struct fib6_config; + +struct ipv6_stub { + int (*ipv6_sock_mc_join)(struct sock *, int, const struct in6_addr *); + int (*ipv6_sock_mc_drop)(struct sock *, int, const struct in6_addr *); + struct dst_entry * (*ipv6_dst_lookup_flow)(struct net *, const struct sock *, struct flowi6 *, const struct in6_addr *); + int (*ipv6_route_input)(struct sk_buff *); + struct fib6_table * (*fib6_get_table)(struct net *, u32); + int (*fib6_lookup)(struct net *, int, struct flowi6 *, struct fib6_result *, int); + int (*fib6_table_lookup)(struct net *, struct fib6_table *, int, struct flowi6 *, struct fib6_result *, int); + void (*fib6_select_path)(const struct net *, struct fib6_result *, struct flowi6 *, int, bool, const struct sk_buff *, int); + u32 (*ip6_mtu_from_fib6)(const struct fib6_result *, const struct in6_addr *, const struct in6_addr *); + int (*fib6_nh_init)(struct net *, struct fib6_nh *, struct fib6_config *, gfp_t, struct netlink_ext_ack *); + void (*fib6_nh_release)(struct fib6_nh *); + void (*fib6_nh_release_dsts)(struct fib6_nh *); + void (*fib6_update_sernum)(struct net *, struct fib6_info *); + int (*ip6_del_rt)(struct net *, struct fib6_info *, bool); + void (*fib6_rt_update)(struct net *, struct fib6_info *, struct nl_info *); + void (*udpv6_encap_enable)(void); + void (*ndisc_send_na)(struct net_device *, const struct in6_addr *, const struct in6_addr *, bool, bool, bool, bool); + void (*xfrm6_local_rxpmtu)(struct sk_buff *, u32); + int (*xfrm6_udp_encap_rcv)(struct sock *, struct sk_buff *); + struct sk_buff * (*xfrm6_gro_udp_encap_rcv)(struct sock *, struct list_head *, struct sk_buff *); + int (*xfrm6_rcv_encap)(struct sk_buff *, int, __be32, int); + struct neigh_table *nd_tbl; + int (*ipv6_fragment)(struct net *, struct sock *, struct sk_buff *, int (*)(struct net *, struct sock *, struct sk_buff *)); + struct net_device * (*ipv6_dev_find)(struct net *, const struct in6_addr *, struct net_device *); + int (*ip6_xmit)(const struct sock *, struct sk_buff *, struct flowi6 *, __u32, struct ipv6_txoptions *, int, u32); +}; + +struct fib6_result { + struct fib6_nh *nh; + struct fib6_info *f6i; + u32 fib6_flags; + u8 fib6_type; + struct rt6_info *rt6; +}; + +struct fib6_config { + u32 fc_table; + u32 fc_metric; + int fc_dst_len; + int fc_src_len; + int fc_ifindex; + u32 fc_flags; + u32 fc_protocol; + u16 fc_type; + u16 fc_delete_all_nh: 1; + u16 fc_ignore_dev_down: 1; + u16 __unused: 14; + u32 fc_nh_id; + struct in6_addr fc_dst; + struct in6_addr fc_src; + struct in6_addr fc_prefsrc; + struct in6_addr fc_gateway; + long unsigned int fc_expires; + struct nlattr *fc_mx; + int fc_mx_len; + int fc_mp_len; + struct nlattr *fc_mp; + struct nl_info fc_nlinfo; + struct nlattr *fc_encap; + u16 fc_encap_type; + bool fc_is_fdb; +}; + +struct strp_msg { + int full_len; + int offset; +}; + +struct espintcp_msg { + struct sk_buff *skb; + struct sk_msg skmsg; + int offset; + int len; +}; + +struct espintcp_ctx { + struct strparser strp; + struct sk_buff_head ike_queue; + struct sk_buff_head out_queue; + struct espintcp_msg partial; + void (*saved_data_ready)(struct sock *); + void (*saved_write_space)(struct sock *); + void (*saved_destruct)(struct sock *); + struct work_struct work; + bool tx_running; +}; + +struct mmpin { + struct user_struct *user; + unsigned int num_pg; +}; + +struct ubuf_info_msgzc { + struct ubuf_info ubuf; + union { + struct { + long unsigned int desc; + void *ctx; + }; + struct { + u32 id; + u16 len; + u16 zerocopy: 1; + u32 bytelen; + }; + }; + struct mmpin mmp; +}; + +struct bpf_empty_prog_array { + struct bpf_prog_array hdr; + struct bpf_prog *null_prog; +}; + +enum { + SOF_TIMESTAMPING_TX_HARDWARE = 1, + SOF_TIMESTAMPING_TX_SOFTWARE = 2, + SOF_TIMESTAMPING_RX_HARDWARE = 4, + SOF_TIMESTAMPING_RX_SOFTWARE = 8, + SOF_TIMESTAMPING_SOFTWARE = 16, + SOF_TIMESTAMPING_SYS_HARDWARE = 32, + SOF_TIMESTAMPING_RAW_HARDWARE = 64, + SOF_TIMESTAMPING_OPT_ID = 128, + SOF_TIMESTAMPING_TX_SCHED = 256, + SOF_TIMESTAMPING_TX_ACK = 512, + SOF_TIMESTAMPING_OPT_CMSG = 1024, + SOF_TIMESTAMPING_OPT_TSONLY = 2048, + SOF_TIMESTAMPING_OPT_STATS = 4096, + SOF_TIMESTAMPING_OPT_PKTINFO = 8192, + SOF_TIMESTAMPING_OPT_TX_SWHW = 16384, + SOF_TIMESTAMPING_BIND_PHC = 32768, + SOF_TIMESTAMPING_OPT_ID_TCP = 65536, + SOF_TIMESTAMPING_OPT_RX_FILTER = 131072, + SOF_TIMESTAMPING_TX_COMPLETION = 262144, + SOF_TIMESTAMPING_LAST = 262144, + SOF_TIMESTAMPING_MASK = 524287, +}; + +struct sockcm_cookie { + u64 transmit_time; + u32 mark; + u32 tsflags; + u32 ts_opt_id; + u32 priority; + u32 dmabuf_id; +}; + +struct inet6_ifaddr { + struct in6_addr addr; + __u32 prefix_len; + __u32 rt_priority; + __u32 valid_lft; + __u32 prefered_lft; + refcount_t refcnt; + spinlock_t lock; + int state; + __u32 flags; + __u8 dad_probes; + __u8 stable_privacy_retry; + __u16 scope; + __u64 dad_nonce; + long unsigned int cstamp; + long unsigned int tstamp; + struct delayed_work dad_work; + struct inet6_dev *idev; + struct fib6_info *rt; + struct hlist_node addr_lst; + struct list_head if_list; + struct list_head if_list_aux; + struct list_head tmp_list; + struct inet6_ifaddr *ifpub; + int regen_count; + bool tokenized; + u8 ifa_proto; + struct callback_head rcu; + struct in6_addr peer_addr; +}; + +struct frag_hdr { + __u8 nexthdr; + __u8 reserved; + __be16 frag_off; + __be32 identification; +}; + +struct hop_jumbo_hdr { + u8 nexthdr; + u8 hdrlen; + u8 tlv_type; + u8 tlv_len; + __be32 jumbo_payload_len; +}; + +struct ip6_fraglist_iter { + struct ipv6hdr *tmp_hdr; + struct sk_buff *frag; + int offset; + unsigned int hlen; + __be32 frag_id; + u8 nexthdr; +}; + +struct ip6_frag_state { + u8 *prevhdr; + unsigned int hlen; + unsigned int mtu; + unsigned int left; + int offset; + int ptr; + int hroom; + int troom; + __be32 frag_id; + u8 nexthdr; +}; + +struct ip6_ra_chain { + struct ip6_ra_chain *next; + struct sock *sk; + int sel; + void (*destructor)(struct sock *); +}; + +struct ipcm6_cookie { + struct sockcm_cookie sockc; + __s16 hlimit; + __s16 tclass; + __u16 gso_size; + __s8 dontfrag; + struct ipv6_txoptions *opt; +}; + +enum { + LWTUNNEL_XMIT_DONE = 0, + LWTUNNEL_XMIT_CONTINUE = 256, +}; + +struct xfrm_dst { + union { + struct dst_entry dst; + struct rtable rt; + struct rt6_info rt6; + } u; + struct dst_entry *route; + struct dst_entry *child; + struct dst_entry *path; + struct xfrm_policy *pols[2]; + int num_pols; + int num_xfrms; + u32 xfrm_genid; + u32 policy_genid; + u32 route_mtu_cached; + u32 child_mtu_cached; + u32 route_cookie; + u32 path_cookie; +}; + +enum flow_dissector_ctrl_flags { + FLOW_DIS_IS_FRAGMENT = 1, + FLOW_DIS_FIRST_FRAG = 2, + FLOW_DIS_F_TUNNEL_CSUM = 4, + FLOW_DIS_F_TUNNEL_DONT_FRAGMENT = 8, + FLOW_DIS_F_TUNNEL_OAM = 16, + FLOW_DIS_F_TUNNEL_CRIT_OPT = 32, + FLOW_DIS_ENCAPSULATION = 64, +}; + +struct uncached_list { + spinlock_t lock; + struct list_head head; +}; + +struct in6_rtmsg { + struct in6_addr rtmsg_dst; + struct in6_addr rtmsg_src; + struct in6_addr rtmsg_gateway; + __u32 rtmsg_type; + __u16 rtmsg_dst_len; + __u16 rtmsg_src_len; + __u32 rtmsg_metric; + long unsigned int rtmsg_info; + __u32 rtmsg_flags; + int rtmsg_ifindex; +}; + +struct fib6_gc_args { + int timeout; + int more; +}; + +struct rt6_exception { + struct hlist_node hlist; + struct rt6_info *rt6i; + long unsigned int stamp; + struct callback_head rcu; +}; + +typedef struct rt6_info * (*pol_lookup_t)(struct net *, struct fib6_table *, struct flowi6 *, const struct sk_buff *, int); + +struct rd_msg { + struct icmp6hdr icmph; + struct in6_addr target; + struct in6_addr dest; + __u8 opt[0]; +}; + +struct route_info { + __u8 type; + __u8 length; + __u8 prefix_len; + __u8 reserved_l: 3; + __u8 route_pref: 2; + __u8 reserved_h: 3; + __be32 lifetime; + __u8 prefix[0]; +}; + +struct rt6_rtnl_dump_arg { + struct sk_buff *skb; + struct netlink_callback *cb; + struct net *net; + struct fib_dump_filter filter; +}; + +struct netevent_redirect { + struct dst_entry *old; + struct dst_entry *new; + struct neighbour *neigh; + const void *daddr; +}; + +enum netevent_notif_type { + NETEVENT_NEIGH_UPDATE = 1, + NETEVENT_REDIRECT = 2, + NETEVENT_DELAY_PROBE_TIME_UPDATE = 3, + NETEVENT_IPV4_MPATH_HASH_UPDATE = 4, + NETEVENT_IPV6_MPATH_HASH_UPDATE = 5, + NETEVENT_IPV4_FWD_UPDATE_PRIORITY_UPDATE = 6, +}; + +struct trace_event_raw_fib6_table_lookup { + struct trace_entry ent; + u32 tb_id; + int err; + int oif; + int iif; + u32 flowlabel; + __u8 tos; + __u8 scope; + __u8 flags; + __u8 src[16]; + __u8 dst[16]; + u16 sport; + u16 dport; + u8 proto; + u8 rt_type; + char name[16]; + __u8 gw[16]; + char __data[0]; +}; + +struct trace_event_data_offsets_fib6_table_lookup {}; + +typedef void (*btf_trace_fib6_table_lookup)(void *, const struct net *, const struct fib6_result *, struct fib6_table *, const struct flowi6 *); + +enum rt6_nud_state { + RT6_NUD_FAIL_HARD = -3, + RT6_NUD_FAIL_PROBE = -2, + RT6_NUD_FAIL_DO_RR = -1, + RT6_NUD_SUCCEED = 1, +}; + +struct fib6_nh_dm_arg { + struct net *net; + const struct in6_addr *saddr; + int oif; + int flags; + struct fib6_nh *nh; +}; + +struct __rt6_probe_work { + struct work_struct work; + struct in6_addr target; + struct net_device *dev; + netdevice_tracker dev_tracker; +}; + +struct fib6_nh_frl_arg { + u32 flags; + int oif; + int strict; + int *mpri; + bool *do_rr; + struct fib6_nh *nh; +}; + +struct fib6_nh_excptn_arg { + struct rt6_info *rt; + int plen; +}; + +struct fib6_nh_match_arg { + const struct net_device *dev; + const struct in6_addr *gw; + struct fib6_nh *match; +}; + +struct fib6_nh_age_excptn_arg { + struct fib6_gc_args *gc_args; + long unsigned int now; +}; + +struct fib6_nh_rd_arg { + struct fib6_result *res; + struct flowi6 *fl6; + const struct in6_addr *gw; + struct rt6_info **ret; +}; + +struct ip6rd_flowi { + struct flowi6 fl6; + struct in6_addr gateway; +}; + +struct fib6_nh_del_cached_rt_arg { + struct fib6_config *cfg; + struct fib6_info *f6i; +}; + +struct arg_dev_net_ip { + struct net *net; + struct in6_addr *addr; +}; + +struct arg_netdev_event { + const struct net_device *dev; + union { + unsigned char nh_flags; + long unsigned int event; + }; +}; + +struct rt6_mtu_change_arg { + struct net_device *dev; + unsigned int mtu; + struct fib6_info *f6i; +}; + +struct rt6_nh { + struct fib6_info *fib6_info; + struct fib6_config r_cfg; + struct list_head list; +}; + +struct fib6_nh_exception_dump_walker { + struct rt6_rtnl_dump_arg *dump; + struct fib6_info *rt; + unsigned int flags; + unsigned int skip; + unsigned int count; +}; + +struct icmp6_filter { + __u32 data[8]; +}; + +struct raw6_sock { + struct inet_sock inet; + __u32 checksum; + __u32 offset; + struct icmp6_filter filter; + __u32 ip6mr_table; + struct ipv6_pinfo inet6; +}; + +struct inet_protosw { + struct list_head list; + short unsigned int type; + short unsigned int protocol; + struct proto *prot; + const struct proto_ops *ops; + unsigned char flags; +}; + +struct raw_iter_state { + struct seq_net_private p; + int bucket; +}; + +typedef int mh_filter_t(struct sock *, struct sk_buff *); + +struct raw6_frag_vec { + struct msghdr *msg; + int hlen; + char c[4]; +}; + +struct tcp_md5sig { + struct __kernel_sockaddr_storage tcpm_addr; + __u8 tcpm_flags; + __u8 tcpm_prefixlen; + __u16 tcpm_keylen; + int tcpm_ifindex; + __u8 tcpm_key[80]; +}; + +struct tcp6_sock { + struct tcp_sock tcp; + struct ipv6_pinfo inet6; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct net_aligned_data { + atomic64_t net_cookie; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + atomic_long_t tcp_memory_allocated; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + atomic_long_t udp_memory_allocated; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum flowlabel_reflect { + FLOWLABEL_REFLECT_ESTABLISHED = 1, + FLOWLABEL_REFLECT_TCP_RESET = 2, + FLOWLABEL_REFLECT_ICMPV6_ECHO_REPLIES = 4, +}; + +enum tcp_tw_status { + TCP_TW_SUCCESS = 0, + TCP_TW_RST = 1, + TCP_TW_ACK = 2, + TCP_TW_SYN = 3, + TCP_TW_ACK_OOW = 4, +}; + +struct tcp6_pseudohdr { + struct in6_addr saddr; + struct in6_addr daddr; + __be32 len; + __be32 protocol; +}; + +enum tcp_seq_states { + TCP_SEQ_STATE_LISTENING = 0, + TCP_SEQ_STATE_ESTABLISHED = 1, +}; + +struct tcp_seq_afinfo { + sa_family_t family; +}; + +struct tcp_iter_state { + struct seq_net_private p; + enum tcp_seq_states state; + struct sock *syn_wait_sk; + int bucket; + int offset; + int sbucket; + int num; + loff_t last_pos; +}; + +struct tcp_key { + union { + struct { + struct tcp_ao_key *ao_key; + char *traffic_key; + u32 sne; + u8 rcv_next; + }; + struct tcp_md5sig_key *md5_key; + }; + enum { + TCP_KEY_NONE = 0, + TCP_KEY_MD5 = 1, + TCP_KEY_AO = 2, + } type; +}; + +typedef u32 inet6_ehashfn_t(const struct net *, const struct in6_addr *, const u16, const struct in6_addr *, const __be16); + +struct cmsghdr { + __kernel_size_t cmsg_len; + int cmsg_level; + int cmsg_type; +}; + +struct ip6_mtuinfo { + struct sockaddr_in6 ip6m_addr; + __u32 ip6m_mtu; +}; + +struct in_pktinfo { + int ipi_ifindex; + struct in_addr ipi_spec_dst; + struct in_addr ipi_addr; +}; + +struct sock_ee_data_rfc4884 { + __u16 len; + __u8 flags; + __u8 reserved; +}; + +struct sock_extended_err { + __u32 ee_errno; + __u8 ee_origin; + __u8 ee_type; + __u8 ee_code; + __u8 ee_pad; + __u32 ee_info; + union { + __u32 ee_data; + struct sock_ee_data_rfc4884 ee_rfc4884; + }; +}; + +struct sock_exterr_skb { + union { + struct inet_skb_parm h4; + struct inet6_skb_parm h6; + } header; + struct sock_extended_err ee; + u16 addr_offset; + __be16 port; + u8 opt_stats: 1; + u8 unused: 7; +}; + +struct xfrm_dst_lookup_params { + struct net *net; + dscp_t dscp; + int oif; + xfrm_address_t *saddr; + xfrm_address_t *daddr; + u32 mark; + __u8 ipproto; + union flowi_uli uli; +}; + +struct xfrm_policy_afinfo { + struct dst_ops *dst_ops; + struct dst_entry * (*dst_lookup)(const struct xfrm_dst_lookup_params *); + int (*get_saddr)(xfrm_address_t *, const struct xfrm_dst_lookup_params *); + int (*fill_dst)(struct xfrm_dst *, struct net_device *, const struct flowi *); + struct dst_entry * (*blackhole_route)(struct net *, struct dst_entry *); +}; + +enum { + FRA_UNSPEC = 0, + FRA_DST = 1, + FRA_SRC = 2, + FRA_IIFNAME = 3, + FRA_GOTO = 4, + FRA_UNUSED2 = 5, + FRA_PRIORITY = 6, + FRA_UNUSED3 = 7, + FRA_UNUSED4 = 8, + FRA_UNUSED5 = 9, + FRA_FWMARK = 10, + FRA_FLOW = 11, + FRA_TUN_ID = 12, + FRA_SUPPRESS_IFGROUP = 13, + FRA_SUPPRESS_PREFIXLEN = 14, + FRA_TABLE = 15, + FRA_FWMASK = 16, + FRA_OIFNAME = 17, + FRA_PAD = 18, + FRA_L3MDEV = 19, + FRA_UID_RANGE = 20, + FRA_PROTOCOL = 21, + FRA_IP_PROTO = 22, + FRA_SPORT_RANGE = 23, + FRA_DPORT_RANGE = 24, + FRA_DSCP = 25, + FRA_FLOWLABEL = 26, + FRA_FLOWLABEL_MASK = 27, + FRA_SPORT_MASK = 28, + FRA_DPORT_MASK = 29, + FRA_DSCP_MASK = 30, + __FRA_MAX = 31, +}; + +enum { + FR_ACT_UNSPEC = 0, + FR_ACT_TO_TBL = 1, + FR_ACT_GOTO = 2, + FR_ACT_NOP = 3, + FR_ACT_RES3 = 4, + FR_ACT_RES4 = 5, + FR_ACT_BLACKHOLE = 6, + FR_ACT_UNREACHABLE = 7, + FR_ACT_PROHIBIT = 8, + __FR_ACT_MAX = 9, +}; + +struct fib6_rule { + struct fib_rule common; + struct rt6key src; + struct rt6key dst; + __be32 flowlabel; + __be32 flowlabel_mask; + dscp_t dscp; + dscp_t dscp_mask; + u8 dscp_full: 1; +}; + +struct seg6_pernet_data { + struct mutex lock; + struct in6_addr *tun_src; + struct rhashtable hmac_infos; +}; + +struct ipv6_sr_hdr { + __u8 nexthdr; + __u8 hdrlen; + __u8 type; + __u8 segments_left; + __u8 first_segment; + __u8 flags; + __u16 tag; + struct in6_addr segments[0]; +}; + +enum { + SEG6_IPTUNNEL_UNSPEC = 0, + SEG6_IPTUNNEL_SRH = 1, + __SEG6_IPTUNNEL_MAX = 2, +}; + +struct seg6_iptunnel_encap { + int mode; + struct ipv6_sr_hdr srh[0]; +}; + +enum { + SEG6_IPTUN_MODE_INLINE = 0, + SEG6_IPTUN_MODE_ENCAP = 1, + SEG6_IPTUN_MODE_L2ENCAP = 2, + SEG6_IPTUN_MODE_ENCAP_RED = 3, + SEG6_IPTUN_MODE_L2ENCAP_RED = 4, +}; + +struct seg6_lwt { + struct dst_cache cache_input; + struct dst_cache cache_output; + struct seg6_iptunnel_encap tuninfo[0]; +}; + +struct mld_msg { + struct icmp6hdr mld_hdr; + struct in6_addr mld_mca; +}; + +enum genl_validate_flags { + GENL_DONT_VALIDATE_STRICT = 1, + GENL_DONT_VALIDATE_DUMP = 2, + GENL_DONT_VALIDATE_DUMP_STRICT = 4, +}; + +enum devlink_command { + DEVLINK_CMD_UNSPEC = 0, + DEVLINK_CMD_GET = 1, + DEVLINK_CMD_SET = 2, + DEVLINK_CMD_NEW = 3, + DEVLINK_CMD_DEL = 4, + DEVLINK_CMD_PORT_GET = 5, + DEVLINK_CMD_PORT_SET = 6, + DEVLINK_CMD_PORT_NEW = 7, + DEVLINK_CMD_PORT_DEL = 8, + DEVLINK_CMD_PORT_SPLIT = 9, + DEVLINK_CMD_PORT_UNSPLIT = 10, + DEVLINK_CMD_SB_GET = 11, + DEVLINK_CMD_SB_SET = 12, + DEVLINK_CMD_SB_NEW = 13, + DEVLINK_CMD_SB_DEL = 14, + DEVLINK_CMD_SB_POOL_GET = 15, + DEVLINK_CMD_SB_POOL_SET = 16, + DEVLINK_CMD_SB_POOL_NEW = 17, + DEVLINK_CMD_SB_POOL_DEL = 18, + DEVLINK_CMD_SB_PORT_POOL_GET = 19, + DEVLINK_CMD_SB_PORT_POOL_SET = 20, + DEVLINK_CMD_SB_PORT_POOL_NEW = 21, + DEVLINK_CMD_SB_PORT_POOL_DEL = 22, + DEVLINK_CMD_SB_TC_POOL_BIND_GET = 23, + DEVLINK_CMD_SB_TC_POOL_BIND_SET = 24, + DEVLINK_CMD_SB_TC_POOL_BIND_NEW = 25, + DEVLINK_CMD_SB_TC_POOL_BIND_DEL = 26, + DEVLINK_CMD_SB_OCC_SNAPSHOT = 27, + DEVLINK_CMD_SB_OCC_MAX_CLEAR = 28, + DEVLINK_CMD_ESWITCH_GET = 29, + DEVLINK_CMD_ESWITCH_SET = 30, + DEVLINK_CMD_DPIPE_TABLE_GET = 31, + DEVLINK_CMD_DPIPE_ENTRIES_GET = 32, + DEVLINK_CMD_DPIPE_HEADERS_GET = 33, + DEVLINK_CMD_DPIPE_TABLE_COUNTERS_SET = 34, + DEVLINK_CMD_RESOURCE_SET = 35, + DEVLINK_CMD_RESOURCE_DUMP = 36, + DEVLINK_CMD_RELOAD = 37, + DEVLINK_CMD_PARAM_GET = 38, + DEVLINK_CMD_PARAM_SET = 39, + DEVLINK_CMD_PARAM_NEW = 40, + DEVLINK_CMD_PARAM_DEL = 41, + DEVLINK_CMD_REGION_GET = 42, + DEVLINK_CMD_REGION_SET = 43, + DEVLINK_CMD_REGION_NEW = 44, + DEVLINK_CMD_REGION_DEL = 45, + DEVLINK_CMD_REGION_READ = 46, + DEVLINK_CMD_PORT_PARAM_GET = 47, + DEVLINK_CMD_PORT_PARAM_SET = 48, + DEVLINK_CMD_PORT_PARAM_NEW = 49, + DEVLINK_CMD_PORT_PARAM_DEL = 50, + DEVLINK_CMD_INFO_GET = 51, + DEVLINK_CMD_HEALTH_REPORTER_GET = 52, + DEVLINK_CMD_HEALTH_REPORTER_SET = 53, + DEVLINK_CMD_HEALTH_REPORTER_RECOVER = 54, + DEVLINK_CMD_HEALTH_REPORTER_DIAGNOSE = 55, + DEVLINK_CMD_HEALTH_REPORTER_DUMP_GET = 56, + DEVLINK_CMD_HEALTH_REPORTER_DUMP_CLEAR = 57, + DEVLINK_CMD_FLASH_UPDATE = 58, + DEVLINK_CMD_FLASH_UPDATE_END = 59, + DEVLINK_CMD_FLASH_UPDATE_STATUS = 60, + DEVLINK_CMD_TRAP_GET = 61, + DEVLINK_CMD_TRAP_SET = 62, + DEVLINK_CMD_TRAP_NEW = 63, + DEVLINK_CMD_TRAP_DEL = 64, + DEVLINK_CMD_TRAP_GROUP_GET = 65, + DEVLINK_CMD_TRAP_GROUP_SET = 66, + DEVLINK_CMD_TRAP_GROUP_NEW = 67, + DEVLINK_CMD_TRAP_GROUP_DEL = 68, + DEVLINK_CMD_TRAP_POLICER_GET = 69, + DEVLINK_CMD_TRAP_POLICER_SET = 70, + DEVLINK_CMD_TRAP_POLICER_NEW = 71, + DEVLINK_CMD_TRAP_POLICER_DEL = 72, + DEVLINK_CMD_HEALTH_REPORTER_TEST = 73, + DEVLINK_CMD_RATE_GET = 74, + DEVLINK_CMD_RATE_SET = 75, + DEVLINK_CMD_RATE_NEW = 76, + DEVLINK_CMD_RATE_DEL = 77, + DEVLINK_CMD_LINECARD_GET = 78, + DEVLINK_CMD_LINECARD_SET = 79, + DEVLINK_CMD_LINECARD_NEW = 80, + DEVLINK_CMD_LINECARD_DEL = 81, + DEVLINK_CMD_SELFTESTS_GET = 82, + DEVLINK_CMD_SELFTESTS_RUN = 83, + DEVLINK_CMD_NOTIFY_FILTER_SET = 84, + __DEVLINK_CMD_MAX = 85, + DEVLINK_CMD_MAX = 84, +}; + +enum devlink_attr_selftest_id { + DEVLINK_ATTR_SELFTEST_ID_UNSPEC = 0, + DEVLINK_ATTR_SELFTEST_ID_FLASH = 1, + __DEVLINK_ATTR_SELFTEST_ID_MAX = 2, + DEVLINK_ATTR_SELFTEST_ID_MAX = 1, +}; + +enum devlink_var_attr_type { + DEVLINK_VAR_ATTR_TYPE_U8 = 1, + DEVLINK_VAR_ATTR_TYPE_U16 = 2, + DEVLINK_VAR_ATTR_TYPE_U32 = 3, + DEVLINK_VAR_ATTR_TYPE_U64 = 4, + DEVLINK_VAR_ATTR_TYPE_STRING = 5, + DEVLINK_VAR_ATTR_TYPE_FLAG = 6, + DEVLINK_VAR_ATTR_TYPE_NUL_STRING = 10, + DEVLINK_VAR_ATTR_TYPE_BINARY = 11, + __DEVLINK_VAR_ATTR_TYPE_CUSTOM_BASE = 128, +}; + +enum devlink_attr { + DEVLINK_ATTR_UNSPEC = 0, + DEVLINK_ATTR_BUS_NAME = 1, + DEVLINK_ATTR_DEV_NAME = 2, + DEVLINK_ATTR_PORT_INDEX = 3, + DEVLINK_ATTR_PORT_TYPE = 4, + DEVLINK_ATTR_PORT_DESIRED_TYPE = 5, + DEVLINK_ATTR_PORT_NETDEV_IFINDEX = 6, + DEVLINK_ATTR_PORT_NETDEV_NAME = 7, + DEVLINK_ATTR_PORT_IBDEV_NAME = 8, + DEVLINK_ATTR_PORT_SPLIT_COUNT = 9, + DEVLINK_ATTR_PORT_SPLIT_GROUP = 10, + DEVLINK_ATTR_SB_INDEX = 11, + DEVLINK_ATTR_SB_SIZE = 12, + DEVLINK_ATTR_SB_INGRESS_POOL_COUNT = 13, + DEVLINK_ATTR_SB_EGRESS_POOL_COUNT = 14, + DEVLINK_ATTR_SB_INGRESS_TC_COUNT = 15, + DEVLINK_ATTR_SB_EGRESS_TC_COUNT = 16, + DEVLINK_ATTR_SB_POOL_INDEX = 17, + DEVLINK_ATTR_SB_POOL_TYPE = 18, + DEVLINK_ATTR_SB_POOL_SIZE = 19, + DEVLINK_ATTR_SB_POOL_THRESHOLD_TYPE = 20, + DEVLINK_ATTR_SB_THRESHOLD = 21, + DEVLINK_ATTR_SB_TC_INDEX = 22, + DEVLINK_ATTR_SB_OCC_CUR = 23, + DEVLINK_ATTR_SB_OCC_MAX = 24, + DEVLINK_ATTR_ESWITCH_MODE = 25, + DEVLINK_ATTR_ESWITCH_INLINE_MODE = 26, + DEVLINK_ATTR_DPIPE_TABLES = 27, + DEVLINK_ATTR_DPIPE_TABLE = 28, + DEVLINK_ATTR_DPIPE_TABLE_NAME = 29, + DEVLINK_ATTR_DPIPE_TABLE_SIZE = 30, + DEVLINK_ATTR_DPIPE_TABLE_MATCHES = 31, + DEVLINK_ATTR_DPIPE_TABLE_ACTIONS = 32, + DEVLINK_ATTR_DPIPE_TABLE_COUNTERS_ENABLED = 33, + DEVLINK_ATTR_DPIPE_ENTRIES = 34, + DEVLINK_ATTR_DPIPE_ENTRY = 35, + DEVLINK_ATTR_DPIPE_ENTRY_INDEX = 36, + DEVLINK_ATTR_DPIPE_ENTRY_MATCH_VALUES = 37, + DEVLINK_ATTR_DPIPE_ENTRY_ACTION_VALUES = 38, + DEVLINK_ATTR_DPIPE_ENTRY_COUNTER = 39, + DEVLINK_ATTR_DPIPE_MATCH = 40, + DEVLINK_ATTR_DPIPE_MATCH_VALUE = 41, + DEVLINK_ATTR_DPIPE_MATCH_TYPE = 42, + DEVLINK_ATTR_DPIPE_ACTION = 43, + DEVLINK_ATTR_DPIPE_ACTION_VALUE = 44, + DEVLINK_ATTR_DPIPE_ACTION_TYPE = 45, + DEVLINK_ATTR_DPIPE_VALUE = 46, + DEVLINK_ATTR_DPIPE_VALUE_MASK = 47, + DEVLINK_ATTR_DPIPE_VALUE_MAPPING = 48, + DEVLINK_ATTR_DPIPE_HEADERS = 49, + DEVLINK_ATTR_DPIPE_HEADER = 50, + DEVLINK_ATTR_DPIPE_HEADER_NAME = 51, + DEVLINK_ATTR_DPIPE_HEADER_ID = 52, + DEVLINK_ATTR_DPIPE_HEADER_FIELDS = 53, + DEVLINK_ATTR_DPIPE_HEADER_GLOBAL = 54, + DEVLINK_ATTR_DPIPE_HEADER_INDEX = 55, + DEVLINK_ATTR_DPIPE_FIELD = 56, + DEVLINK_ATTR_DPIPE_FIELD_NAME = 57, + DEVLINK_ATTR_DPIPE_FIELD_ID = 58, + DEVLINK_ATTR_DPIPE_FIELD_BITWIDTH = 59, + DEVLINK_ATTR_DPIPE_FIELD_MAPPING_TYPE = 60, + DEVLINK_ATTR_PAD = 61, + DEVLINK_ATTR_ESWITCH_ENCAP_MODE = 62, + DEVLINK_ATTR_RESOURCE_LIST = 63, + DEVLINK_ATTR_RESOURCE = 64, + DEVLINK_ATTR_RESOURCE_NAME = 65, + DEVLINK_ATTR_RESOURCE_ID = 66, + DEVLINK_ATTR_RESOURCE_SIZE = 67, + DEVLINK_ATTR_RESOURCE_SIZE_NEW = 68, + DEVLINK_ATTR_RESOURCE_SIZE_VALID = 69, + DEVLINK_ATTR_RESOURCE_SIZE_MIN = 70, + DEVLINK_ATTR_RESOURCE_SIZE_MAX = 71, + DEVLINK_ATTR_RESOURCE_SIZE_GRAN = 72, + DEVLINK_ATTR_RESOURCE_UNIT = 73, + DEVLINK_ATTR_RESOURCE_OCC = 74, + DEVLINK_ATTR_DPIPE_TABLE_RESOURCE_ID = 75, + DEVLINK_ATTR_DPIPE_TABLE_RESOURCE_UNITS = 76, + DEVLINK_ATTR_PORT_FLAVOUR = 77, + DEVLINK_ATTR_PORT_NUMBER = 78, + DEVLINK_ATTR_PORT_SPLIT_SUBPORT_NUMBER = 79, + DEVLINK_ATTR_PARAM = 80, + DEVLINK_ATTR_PARAM_NAME = 81, + DEVLINK_ATTR_PARAM_GENERIC = 82, + DEVLINK_ATTR_PARAM_TYPE = 83, + DEVLINK_ATTR_PARAM_VALUES_LIST = 84, + DEVLINK_ATTR_PARAM_VALUE = 85, + DEVLINK_ATTR_PARAM_VALUE_DATA = 86, + DEVLINK_ATTR_PARAM_VALUE_CMODE = 87, + DEVLINK_ATTR_REGION_NAME = 88, + DEVLINK_ATTR_REGION_SIZE = 89, + DEVLINK_ATTR_REGION_SNAPSHOTS = 90, + DEVLINK_ATTR_REGION_SNAPSHOT = 91, + DEVLINK_ATTR_REGION_SNAPSHOT_ID = 92, + DEVLINK_ATTR_REGION_CHUNKS = 93, + DEVLINK_ATTR_REGION_CHUNK = 94, + DEVLINK_ATTR_REGION_CHUNK_DATA = 95, + DEVLINK_ATTR_REGION_CHUNK_ADDR = 96, + DEVLINK_ATTR_REGION_CHUNK_LEN = 97, + DEVLINK_ATTR_INFO_DRIVER_NAME = 98, + DEVLINK_ATTR_INFO_SERIAL_NUMBER = 99, + DEVLINK_ATTR_INFO_VERSION_FIXED = 100, + DEVLINK_ATTR_INFO_VERSION_RUNNING = 101, + DEVLINK_ATTR_INFO_VERSION_STORED = 102, + DEVLINK_ATTR_INFO_VERSION_NAME = 103, + DEVLINK_ATTR_INFO_VERSION_VALUE = 104, + DEVLINK_ATTR_SB_POOL_CELL_SIZE = 105, + DEVLINK_ATTR_FMSG = 106, + DEVLINK_ATTR_FMSG_OBJ_NEST_START = 107, + DEVLINK_ATTR_FMSG_PAIR_NEST_START = 108, + DEVLINK_ATTR_FMSG_ARR_NEST_START = 109, + DEVLINK_ATTR_FMSG_NEST_END = 110, + DEVLINK_ATTR_FMSG_OBJ_NAME = 111, + DEVLINK_ATTR_FMSG_OBJ_VALUE_TYPE = 112, + DEVLINK_ATTR_FMSG_OBJ_VALUE_DATA = 113, + DEVLINK_ATTR_HEALTH_REPORTER = 114, + DEVLINK_ATTR_HEALTH_REPORTER_NAME = 115, + DEVLINK_ATTR_HEALTH_REPORTER_STATE = 116, + DEVLINK_ATTR_HEALTH_REPORTER_ERR_COUNT = 117, + DEVLINK_ATTR_HEALTH_REPORTER_RECOVER_COUNT = 118, + DEVLINK_ATTR_HEALTH_REPORTER_DUMP_TS = 119, + DEVLINK_ATTR_HEALTH_REPORTER_GRACEFUL_PERIOD = 120, + DEVLINK_ATTR_HEALTH_REPORTER_AUTO_RECOVER = 121, + DEVLINK_ATTR_FLASH_UPDATE_FILE_NAME = 122, + DEVLINK_ATTR_FLASH_UPDATE_COMPONENT = 123, + DEVLINK_ATTR_FLASH_UPDATE_STATUS_MSG = 124, + DEVLINK_ATTR_FLASH_UPDATE_STATUS_DONE = 125, + DEVLINK_ATTR_FLASH_UPDATE_STATUS_TOTAL = 126, + DEVLINK_ATTR_PORT_PCI_PF_NUMBER = 127, + DEVLINK_ATTR_PORT_PCI_VF_NUMBER = 128, + DEVLINK_ATTR_STATS = 129, + DEVLINK_ATTR_TRAP_NAME = 130, + DEVLINK_ATTR_TRAP_ACTION = 131, + DEVLINK_ATTR_TRAP_TYPE = 132, + DEVLINK_ATTR_TRAP_GENERIC = 133, + DEVLINK_ATTR_TRAP_METADATA = 134, + DEVLINK_ATTR_TRAP_GROUP_NAME = 135, + DEVLINK_ATTR_RELOAD_FAILED = 136, + DEVLINK_ATTR_HEALTH_REPORTER_DUMP_TS_NS = 137, + DEVLINK_ATTR_NETNS_FD = 138, + DEVLINK_ATTR_NETNS_PID = 139, + DEVLINK_ATTR_NETNS_ID = 140, + DEVLINK_ATTR_HEALTH_REPORTER_AUTO_DUMP = 141, + DEVLINK_ATTR_TRAP_POLICER_ID = 142, + DEVLINK_ATTR_TRAP_POLICER_RATE = 143, + DEVLINK_ATTR_TRAP_POLICER_BURST = 144, + DEVLINK_ATTR_PORT_FUNCTION = 145, + DEVLINK_ATTR_INFO_BOARD_SERIAL_NUMBER = 146, + DEVLINK_ATTR_PORT_LANES = 147, + DEVLINK_ATTR_PORT_SPLITTABLE = 148, + DEVLINK_ATTR_PORT_EXTERNAL = 149, + DEVLINK_ATTR_PORT_CONTROLLER_NUMBER = 150, + DEVLINK_ATTR_FLASH_UPDATE_STATUS_TIMEOUT = 151, + DEVLINK_ATTR_FLASH_UPDATE_OVERWRITE_MASK = 152, + DEVLINK_ATTR_RELOAD_ACTION = 153, + DEVLINK_ATTR_RELOAD_ACTIONS_PERFORMED = 154, + DEVLINK_ATTR_RELOAD_LIMITS = 155, + DEVLINK_ATTR_DEV_STATS = 156, + DEVLINK_ATTR_RELOAD_STATS = 157, + DEVLINK_ATTR_RELOAD_STATS_ENTRY = 158, + DEVLINK_ATTR_RELOAD_STATS_LIMIT = 159, + DEVLINK_ATTR_RELOAD_STATS_VALUE = 160, + DEVLINK_ATTR_REMOTE_RELOAD_STATS = 161, + DEVLINK_ATTR_RELOAD_ACTION_INFO = 162, + DEVLINK_ATTR_RELOAD_ACTION_STATS = 163, + DEVLINK_ATTR_PORT_PCI_SF_NUMBER = 164, + DEVLINK_ATTR_RATE_TYPE = 165, + DEVLINK_ATTR_RATE_TX_SHARE = 166, + DEVLINK_ATTR_RATE_TX_MAX = 167, + DEVLINK_ATTR_RATE_NODE_NAME = 168, + DEVLINK_ATTR_RATE_PARENT_NODE_NAME = 169, + DEVLINK_ATTR_REGION_MAX_SNAPSHOTS = 170, + DEVLINK_ATTR_LINECARD_INDEX = 171, + DEVLINK_ATTR_LINECARD_STATE = 172, + DEVLINK_ATTR_LINECARD_TYPE = 173, + DEVLINK_ATTR_LINECARD_SUPPORTED_TYPES = 174, + DEVLINK_ATTR_NESTED_DEVLINK = 175, + DEVLINK_ATTR_SELFTESTS = 176, + DEVLINK_ATTR_RATE_TX_PRIORITY = 177, + DEVLINK_ATTR_RATE_TX_WEIGHT = 178, + DEVLINK_ATTR_REGION_DIRECT = 179, + DEVLINK_ATTR_RATE_TC_BWS = 180, + __DEVLINK_ATTR_MAX = 181, + DEVLINK_ATTR_MAX = 180, +}; + +enum devlink_rate_tc_attr { + DEVLINK_RATE_TC_ATTR_UNSPEC = 0, + DEVLINK_RATE_TC_ATTR_INDEX = 1, + DEVLINK_RATE_TC_ATTR_BW = 2, + __DEVLINK_RATE_TC_ATTR_MAX = 3, + DEVLINK_RATE_TC_ATTR_MAX = 2, +}; + +enum devlink_port_function_attr { + DEVLINK_PORT_FUNCTION_ATTR_UNSPEC = 0, + DEVLINK_PORT_FUNCTION_ATTR_HW_ADDR = 1, + DEVLINK_PORT_FN_ATTR_STATE = 2, + DEVLINK_PORT_FN_ATTR_OPSTATE = 3, + DEVLINK_PORT_FN_ATTR_CAPS = 4, + DEVLINK_PORT_FN_ATTR_DEVLINK = 5, + DEVLINK_PORT_FN_ATTR_MAX_IO_EQS = 6, + __DEVLINK_PORT_FUNCTION_ATTR_MAX = 7, + DEVLINK_PORT_FUNCTION_ATTR_MAX = 6, +}; + +enum devlink_eswitch_encap_mode { + DEVLINK_ESWITCH_ENCAP_MODE_NONE = 0, + DEVLINK_ESWITCH_ENCAP_MODE_BASIC = 1, +}; + +enum devlink_selftest_status { + DEVLINK_SELFTEST_STATUS_SKIP = 0, + DEVLINK_SELFTEST_STATUS_PASS = 1, + DEVLINK_SELFTEST_STATUS_FAIL = 2, +}; + +enum devlink_trap_action { + DEVLINK_TRAP_ACTION_DROP = 0, + DEVLINK_TRAP_ACTION_TRAP = 1, + DEVLINK_TRAP_ACTION_MIRROR = 2, +}; + +enum devlink_trap_type { + DEVLINK_TRAP_TYPE_DROP = 0, + DEVLINK_TRAP_TYPE_EXCEPTION = 1, + DEVLINK_TRAP_TYPE_CONTROL = 2, +}; + +enum devlink_reload_action { + DEVLINK_RELOAD_ACTION_UNSPEC = 0, + DEVLINK_RELOAD_ACTION_DRIVER_REINIT = 1, + DEVLINK_RELOAD_ACTION_FW_ACTIVATE = 2, + __DEVLINK_RELOAD_ACTION_MAX = 3, + DEVLINK_RELOAD_ACTION_MAX = 2, +}; + +enum devlink_reload_limit { + DEVLINK_RELOAD_LIMIT_UNSPEC = 0, + DEVLINK_RELOAD_LIMIT_NO_RESET = 1, + __DEVLINK_RELOAD_LIMIT_MAX = 2, + DEVLINK_RELOAD_LIMIT_MAX = 1, +}; + +enum devlink_dpipe_field_mapping_type { + DEVLINK_DPIPE_FIELD_MAPPING_TYPE_NONE = 0, + DEVLINK_DPIPE_FIELD_MAPPING_TYPE_IFINDEX = 1, +}; + +struct devlink_dev_stats { + u32 reload_stats[6]; + u32 remote_reload_stats[6]; +}; + +struct devlink_dpipe_headers; + +struct devlink_ops; + +struct devlink_rel; + +struct devlink { + u32 index; + struct xarray ports; + struct list_head rate_list; + struct list_head sb_list; + struct list_head dpipe_table_list; + struct list_head resource_list; + struct xarray params; + struct list_head region_list; + struct list_head reporter_list; + struct devlink_dpipe_headers *dpipe_headers; + struct list_head trap_list; + struct list_head trap_group_list; + struct list_head trap_policer_list; + struct list_head linecard_list; + const struct devlink_ops *ops; + struct xarray snapshot_ids; + struct devlink_dev_stats stats; + struct device *dev; + possible_net_t _net; + struct mutex lock; + struct lock_class_key lock_key; + u8 reload_failed: 1; + refcount_t refcount; + struct rcu_work rwork; + struct devlink_rel *rel; + struct xarray nested_rels; + char priv[0]; +}; + +struct devlink_port_new_attrs { + enum devlink_port_flavour flavour; + unsigned int port_index; + u32 controller; + u32 sfnum; + u16 pfnum; + u8 port_index_valid: 1; + u8 controller_valid: 1; + u8 sfnum_valid: 1; +}; + +struct devlink_dpipe_field { + const char *name; + unsigned int id; + unsigned int bitwidth; + enum devlink_dpipe_field_mapping_type mapping_type; +}; + +struct devlink_dpipe_header { + const char *name; + unsigned int id; + struct devlink_dpipe_field *fields; + unsigned int fields_count; + bool global; +}; + +struct devlink_dpipe_headers { + struct devlink_dpipe_header **headers; + unsigned int headers_count; +}; + +struct devlink_flash_update_params { + const struct firmware *fw; + const char *component; + u32 overwrite_mask; +}; + +struct devlink_trap_policer { + u32 id; + u64 init_rate; + u64 init_burst; + u64 max_rate; + u64 min_rate; + u64 max_burst; + u64 min_burst; +}; + +struct devlink_trap_group { + const char *name; + u16 id; + bool generic; + u32 init_policer_id; +}; + +struct devlink_trap { + enum devlink_trap_type type; + enum devlink_trap_action init_action; + bool generic; + u16 id; + const char *name; + u16 init_group_id; + u32 metadata_cap; +}; + +struct devlink_ops { + u32 supported_flash_update_params; + long unsigned int reload_actions; + long unsigned int reload_limits; + int (*reload_down)(struct devlink *, bool, enum devlink_reload_action, enum devlink_reload_limit, struct netlink_ext_ack *); + int (*reload_up)(struct devlink *, enum devlink_reload_action, enum devlink_reload_limit, u32 *, struct netlink_ext_ack *); + int (*sb_pool_get)(struct devlink *, unsigned int, u16, struct devlink_sb_pool_info *); + int (*sb_pool_set)(struct devlink *, unsigned int, u16, u32, enum devlink_sb_threshold_type, struct netlink_ext_ack *); + int (*sb_port_pool_get)(struct devlink_port *, unsigned int, u16, u32 *); + int (*sb_port_pool_set)(struct devlink_port *, unsigned int, u16, u32, struct netlink_ext_ack *); + int (*sb_tc_pool_bind_get)(struct devlink_port *, unsigned int, u16, enum devlink_sb_pool_type, u16 *, u32 *); + int (*sb_tc_pool_bind_set)(struct devlink_port *, unsigned int, u16, enum devlink_sb_pool_type, u16, u32, struct netlink_ext_ack *); + int (*sb_occ_snapshot)(struct devlink *, unsigned int); + int (*sb_occ_max_clear)(struct devlink *, unsigned int); + int (*sb_occ_port_pool_get)(struct devlink_port *, unsigned int, u16, u32 *, u32 *); + int (*sb_occ_tc_port_bind_get)(struct devlink_port *, unsigned int, u16, enum devlink_sb_pool_type, u32 *, u32 *); + int (*eswitch_mode_get)(struct devlink *, u16 *); + int (*eswitch_mode_set)(struct devlink *, u16, struct netlink_ext_ack *); + int (*eswitch_inline_mode_get)(struct devlink *, u8 *); + int (*eswitch_inline_mode_set)(struct devlink *, u8, struct netlink_ext_ack *); + int (*eswitch_encap_mode_get)(struct devlink *, enum devlink_eswitch_encap_mode *); + int (*eswitch_encap_mode_set)(struct devlink *, enum devlink_eswitch_encap_mode, struct netlink_ext_ack *); + int (*info_get)(struct devlink *, struct devlink_info_req *, struct netlink_ext_ack *); + int (*flash_update)(struct devlink *, struct devlink_flash_update_params *, struct netlink_ext_ack *); + int (*trap_init)(struct devlink *, const struct devlink_trap *, void *); + void (*trap_fini)(struct devlink *, const struct devlink_trap *, void *); + int (*trap_action_set)(struct devlink *, const struct devlink_trap *, enum devlink_trap_action, struct netlink_ext_ack *); + int (*trap_group_init)(struct devlink *, const struct devlink_trap_group *); + int (*trap_group_set)(struct devlink *, const struct devlink_trap_group *, const struct devlink_trap_policer *, struct netlink_ext_ack *); + int (*trap_group_action_set)(struct devlink *, const struct devlink_trap_group *, enum devlink_trap_action, struct netlink_ext_ack *); + int (*trap_drop_counter_get)(struct devlink *, const struct devlink_trap *, u64 *); + int (*trap_policer_init)(struct devlink *, const struct devlink_trap_policer *); + void (*trap_policer_fini)(struct devlink *, const struct devlink_trap_policer *); + int (*trap_policer_set)(struct devlink *, const struct devlink_trap_policer *, u64, u64, struct netlink_ext_ack *); + int (*trap_policer_counter_get)(struct devlink *, const struct devlink_trap_policer *, u64 *); + int (*port_new)(struct devlink *, const struct devlink_port_new_attrs *, struct netlink_ext_ack *, struct devlink_port **); + int (*rate_leaf_tx_share_set)(struct devlink_rate *, void *, u64, struct netlink_ext_ack *); + int (*rate_leaf_tx_max_set)(struct devlink_rate *, void *, u64, struct netlink_ext_ack *); + int (*rate_leaf_tx_priority_set)(struct devlink_rate *, void *, u32, struct netlink_ext_ack *); + int (*rate_leaf_tx_weight_set)(struct devlink_rate *, void *, u32, struct netlink_ext_ack *); + int (*rate_leaf_tc_bw_set)(struct devlink_rate *, void *, u32 *, struct netlink_ext_ack *); + int (*rate_node_tx_share_set)(struct devlink_rate *, void *, u64, struct netlink_ext_ack *); + int (*rate_node_tx_max_set)(struct devlink_rate *, void *, u64, struct netlink_ext_ack *); + int (*rate_node_tx_priority_set)(struct devlink_rate *, void *, u32, struct netlink_ext_ack *); + int (*rate_node_tx_weight_set)(struct devlink_rate *, void *, u32, struct netlink_ext_ack *); + int (*rate_node_tc_bw_set)(struct devlink_rate *, void *, u32 *, struct netlink_ext_ack *); + int (*rate_node_new)(struct devlink_rate *, void **, struct netlink_ext_ack *); + int (*rate_node_del)(struct devlink_rate *, void *, struct netlink_ext_ack *); + int (*rate_leaf_parent_set)(struct devlink_rate *, struct devlink_rate *, void *, void *, struct netlink_ext_ack *); + int (*rate_node_parent_set)(struct devlink_rate *, struct devlink_rate *, void *, void *, struct netlink_ext_ack *); + bool (*selftest_check)(struct devlink *, unsigned int, struct netlink_ext_ack *); + enum devlink_selftest_status (*selftest_run)(struct devlink *, unsigned int, struct netlink_ext_ack *); +}; + +struct devlink_nl_dump_state { + long unsigned int instance; + int idx; + union { + struct { + u64 start_offset; + }; + struct { + u64 dump_ts; + }; + }; +}; + +typedef int devlink_nl_dump_one_func_t(struct sk_buff *, struct devlink *, struct netlink_callback *, int); + +struct devlink_sb { + struct list_head list; + unsigned int index; + u32 size; + u16 ingress_pools_count; + u16 egress_pools_count; + u16 ingress_tc_count; + u16 egress_tc_count; +}; + +enum devlink_param_type { + DEVLINK_PARAM_TYPE_U8 = 1, + DEVLINK_PARAM_TYPE_U16 = 2, + DEVLINK_PARAM_TYPE_U32 = 3, + DEVLINK_PARAM_TYPE_U64 = 4, + DEVLINK_PARAM_TYPE_STRING = 5, + DEVLINK_PARAM_TYPE_BOOL = 6, +}; + +struct devlink_param { + u32 id; + const char *name; + bool generic; + enum devlink_param_type type; + long unsigned int supported_cmodes; + int (*get)(struct devlink *, u32, struct devlink_param_gset_ctx *); + int (*set)(struct devlink *, u32, struct devlink_param_gset_ctx *, struct netlink_ext_ack *); + int (*validate)(struct devlink *, u32, union devlink_param_value, struct netlink_ext_ack *); +}; + +struct devlink_param_item { + struct list_head list; + const struct devlink_param *param; + union devlink_param_value driverinit_value; + bool driverinit_value_valid; + union devlink_param_value driverinit_value_new; + bool driverinit_value_new_valid; +}; + +enum devlink_param_generic_id { + DEVLINK_PARAM_GENERIC_ID_INT_ERR_RESET = 0, + DEVLINK_PARAM_GENERIC_ID_MAX_MACS = 1, + DEVLINK_PARAM_GENERIC_ID_ENABLE_SRIOV = 2, + DEVLINK_PARAM_GENERIC_ID_REGION_SNAPSHOT = 3, + DEVLINK_PARAM_GENERIC_ID_IGNORE_ARI = 4, + DEVLINK_PARAM_GENERIC_ID_MSIX_VEC_PER_PF_MAX = 5, + DEVLINK_PARAM_GENERIC_ID_MSIX_VEC_PER_PF_MIN = 6, + DEVLINK_PARAM_GENERIC_ID_FW_LOAD_POLICY = 7, + DEVLINK_PARAM_GENERIC_ID_RESET_DEV_ON_DRV_PROBE = 8, + DEVLINK_PARAM_GENERIC_ID_ENABLE_ROCE = 9, + DEVLINK_PARAM_GENERIC_ID_ENABLE_REMOTE_DEV_RESET = 10, + DEVLINK_PARAM_GENERIC_ID_ENABLE_ETH = 11, + DEVLINK_PARAM_GENERIC_ID_ENABLE_RDMA = 12, + DEVLINK_PARAM_GENERIC_ID_ENABLE_VNET = 13, + DEVLINK_PARAM_GENERIC_ID_ENABLE_IWARP = 14, + DEVLINK_PARAM_GENERIC_ID_IO_EQ_SIZE = 15, + DEVLINK_PARAM_GENERIC_ID_EVENT_EQ_SIZE = 16, + DEVLINK_PARAM_GENERIC_ID_ENABLE_PHC = 17, + DEVLINK_PARAM_GENERIC_ID_CLOCK_ID = 18, + __DEVLINK_PARAM_GENERIC_ID_MAX = 19, + DEVLINK_PARAM_GENERIC_ID_MAX = 18, +}; + +enum devlink_multicast_groups { + DEVLINK_MCGRP_CONFIG = 0, +}; + +struct devlink_obj_desc { + struct callback_head rcu; + const char *bus_name; + const char *dev_name; + unsigned int port_index; + bool port_index_valid; + long int data[0]; +}; + +enum devlink_health_reporter_state { + DEVLINK_HEALTH_REPORTER_STATE_HEALTHY = 0, + DEVLINK_HEALTH_REPORTER_STATE_ERROR = 1, +}; + +struct devlink_health_reporter; + +struct devlink_fmsg; + +struct devlink_health_reporter_ops { + char *name; + int (*recover)(struct devlink_health_reporter *, void *, struct netlink_ext_ack *); + int (*dump)(struct devlink_health_reporter *, struct devlink_fmsg *, void *, struct netlink_ext_ack *); + int (*diagnose)(struct devlink_health_reporter *, struct devlink_fmsg *, struct netlink_ext_ack *); + int (*test)(struct devlink_health_reporter *, struct netlink_ext_ack *); +}; + +struct devlink_health_reporter { + struct list_head list; + void *priv; + const struct devlink_health_reporter_ops *ops; + struct devlink *devlink; + struct devlink_port *devlink_port; + struct devlink_fmsg *dump_fmsg; + u64 graceful_period; + bool auto_recover; + bool auto_dump; + u8 health_state; + u64 dump_ts; + u64 dump_real_ts; + u64 error_count; + u64 recovery_count; + u64 last_recovery_ts; +}; + +struct devlink_fmsg { + struct list_head item_list; + int err; + bool putting_binary; +}; + +struct devlink_fmsg_item { + struct list_head list; + int attrtype; + u8 nla_type; + u16 len; + int value[0]; +}; + +enum nl80211_iftype { + NL80211_IFTYPE_UNSPECIFIED = 0, + NL80211_IFTYPE_ADHOC = 1, + NL80211_IFTYPE_STATION = 2, + NL80211_IFTYPE_AP = 3, + NL80211_IFTYPE_AP_VLAN = 4, + NL80211_IFTYPE_WDS = 5, + NL80211_IFTYPE_MONITOR = 6, + NL80211_IFTYPE_MESH_POINT = 7, + NL80211_IFTYPE_P2P_CLIENT = 8, + NL80211_IFTYPE_P2P_GO = 9, + NL80211_IFTYPE_P2P_DEVICE = 10, + NL80211_IFTYPE_OCB = 11, + NL80211_IFTYPE_NAN = 12, + NUM_NL80211_IFTYPES = 13, + NL80211_IFTYPE_MAX = 12, +}; + +struct cfg80211_conn; + +struct cfg80211_cached_keys; + +enum ieee80211_bss_type { + IEEE80211_BSS_TYPE_ESS = 0, + IEEE80211_BSS_TYPE_PBSS = 1, + IEEE80211_BSS_TYPE_IBSS = 2, + IEEE80211_BSS_TYPE_MBSS = 3, + IEEE80211_BSS_TYPE_ANY = 4, +}; + +enum nl80211_chan_width { + NL80211_CHAN_WIDTH_20_NOHT = 0, + NL80211_CHAN_WIDTH_20 = 1, + NL80211_CHAN_WIDTH_40 = 2, + NL80211_CHAN_WIDTH_80 = 3, + NL80211_CHAN_WIDTH_80P80 = 4, + NL80211_CHAN_WIDTH_160 = 5, + NL80211_CHAN_WIDTH_5 = 6, + NL80211_CHAN_WIDTH_10 = 7, + NL80211_CHAN_WIDTH_1 = 8, + NL80211_CHAN_WIDTH_2 = 9, + NL80211_CHAN_WIDTH_4 = 10, + NL80211_CHAN_WIDTH_8 = 11, + NL80211_CHAN_WIDTH_16 = 12, + NL80211_CHAN_WIDTH_320 = 13, +}; + +enum ieee80211_edmg_bw_config { + IEEE80211_EDMG_BW_CONFIG_4 = 4, + IEEE80211_EDMG_BW_CONFIG_5 = 5, + IEEE80211_EDMG_BW_CONFIG_6 = 6, + IEEE80211_EDMG_BW_CONFIG_7 = 7, + IEEE80211_EDMG_BW_CONFIG_8 = 8, + IEEE80211_EDMG_BW_CONFIG_9 = 9, + IEEE80211_EDMG_BW_CONFIG_10 = 10, + IEEE80211_EDMG_BW_CONFIG_11 = 11, + IEEE80211_EDMG_BW_CONFIG_12 = 12, + IEEE80211_EDMG_BW_CONFIG_13 = 13, + IEEE80211_EDMG_BW_CONFIG_14 = 14, + IEEE80211_EDMG_BW_CONFIG_15 = 15, +}; + +struct ieee80211_edmg { + u8 channels; + enum ieee80211_edmg_bw_config bw_config; +}; + +struct ieee80211_channel; + +struct cfg80211_chan_def { + struct ieee80211_channel *chan; + enum nl80211_chan_width width; + u32 center_freq1; + u32 center_freq2; + struct ieee80211_edmg edmg; + u16 freq1_offset; + u16 punctured; +}; + +struct ieee80211_mcs_info { + u8 rx_mask[10]; + __le16 rx_highest; + u8 tx_params; + u8 reserved[3]; +}; + +struct ieee80211_ht_cap { + __le16 cap_info; + u8 ampdu_params_info; + struct ieee80211_mcs_info mcs; + __le16 extended_ht_cap_info; + __le32 tx_BF_cap_info; + u8 antenna_selection_info; +} __attribute__((packed)); + +struct key_params; + +struct cfg80211_ibss_params { + const u8 *ssid; + const u8 *bssid; + struct cfg80211_chan_def chandef; + const u8 *ie; + u8 ssid_len; + u8 ie_len; + u16 beacon_interval; + u32 basic_rates; + bool channel_fixed; + bool privacy; + bool control_port; + bool control_port_over_nl80211; + bool userspace_handles_dfs; + int mcast_rate[6]; + struct ieee80211_ht_cap ht_capa; + struct ieee80211_ht_cap ht_capa_mask; + struct key_params *wep_keys; + int wep_tx_key; +}; + +enum nl80211_auth_type { + NL80211_AUTHTYPE_OPEN_SYSTEM = 0, + NL80211_AUTHTYPE_SHARED_KEY = 1, + NL80211_AUTHTYPE_FT = 2, + NL80211_AUTHTYPE_NETWORK_EAP = 3, + NL80211_AUTHTYPE_SAE = 4, + NL80211_AUTHTYPE_FILS_SK = 5, + NL80211_AUTHTYPE_FILS_SK_PFS = 6, + NL80211_AUTHTYPE_FILS_PK = 7, + __NL80211_AUTHTYPE_NUM = 8, + NL80211_AUTHTYPE_MAX = 7, + NL80211_AUTHTYPE_AUTOMATIC = 8, +}; + +enum nl80211_mfp { + NL80211_MFP_NO = 0, + NL80211_MFP_REQUIRED = 1, + NL80211_MFP_OPTIONAL = 2, +}; + +enum nl80211_sae_pwe_mechanism { + NL80211_SAE_PWE_UNSPECIFIED = 0, + NL80211_SAE_PWE_HUNT_AND_PECK = 1, + NL80211_SAE_PWE_HASH_TO_ELEMENT = 2, + NL80211_SAE_PWE_BOTH = 3, +}; + +struct cfg80211_crypto_settings { + u32 wpa_versions; + u32 cipher_group; + int n_ciphers_pairwise; + u32 ciphers_pairwise[5]; + int n_akm_suites; + u32 akm_suites[10]; + bool control_port; + __be16 control_port_ethertype; + bool control_port_no_encrypt; + bool control_port_over_nl80211; + bool control_port_no_preauth; + const u8 *psk; + const u8 *sae_pwd; + u8 sae_pwd_len; + enum nl80211_sae_pwe_mechanism sae_pwe; +}; + +struct ieee80211_vht_mcs_info { + __le16 rx_mcs_map; + __le16 rx_highest; + __le16 tx_mcs_map; + __le16 tx_highest; +}; + +struct ieee80211_vht_cap { + __le32 vht_cap_info; + struct ieee80211_vht_mcs_info supp_mcs; +}; + +enum nl80211_bss_select_attr { + __NL80211_BSS_SELECT_ATTR_INVALID = 0, + NL80211_BSS_SELECT_ATTR_RSSI = 1, + NL80211_BSS_SELECT_ATTR_BAND_PREF = 2, + NL80211_BSS_SELECT_ATTR_RSSI_ADJUST = 3, + __NL80211_BSS_SELECT_ATTR_AFTER_LAST = 4, + NL80211_BSS_SELECT_ATTR_MAX = 3, +}; + +enum nl80211_band { + NL80211_BAND_2GHZ = 0, + NL80211_BAND_5GHZ = 1, + NL80211_BAND_60GHZ = 2, + NL80211_BAND_6GHZ = 3, + NL80211_BAND_S1GHZ = 4, + NL80211_BAND_LC = 5, + NUM_NL80211_BANDS = 6, +}; + +struct cfg80211_bss_select_adjust { + enum nl80211_band band; + s8 delta; +}; + +struct cfg80211_bss_selection { + enum nl80211_bss_select_attr behaviour; + union { + enum nl80211_band band_pref; + struct cfg80211_bss_select_adjust adjust; + } param; +}; + +struct cfg80211_connect_params { + struct ieee80211_channel *channel; + struct ieee80211_channel *channel_hint; + const u8 *bssid; + const u8 *bssid_hint; + const u8 *ssid; + size_t ssid_len; + enum nl80211_auth_type auth_type; + const u8 *ie; + size_t ie_len; + bool privacy; + enum nl80211_mfp mfp; + struct cfg80211_crypto_settings crypto; + const u8 *key; + u8 key_len; + u8 key_idx; + u32 flags; + int bg_scan_period; + struct ieee80211_ht_cap ht_capa; + struct ieee80211_ht_cap ht_capa_mask; + struct ieee80211_vht_cap vht_capa; + struct ieee80211_vht_cap vht_capa_mask; + bool pbss; + struct cfg80211_bss_selection bss_select; + const u8 *prev_bssid; + const u8 *fils_erp_username; + size_t fils_erp_username_len; + const u8 *fils_erp_realm; + size_t fils_erp_realm_len; + u16 fils_erp_next_seq_num; + const u8 *fils_erp_rrk; + size_t fils_erp_rrk_len; + bool want_1x; + struct ieee80211_edmg edmg; +}; + +struct wiphy; + +struct wiphy_work; + +typedef void (*wiphy_work_func_t)(struct wiphy *, struct wiphy_work *); + +struct wiphy_work { + struct list_head entry; + wiphy_work_func_t func; +}; + +struct cfg80211_cqm_config; + +struct cfg80211_internal_bss; + +struct wireless_dev { + struct wiphy *wiphy; + enum nl80211_iftype iftype; + struct list_head list; + struct net_device *netdev; + u32 identifier; + struct list_head mgmt_registrations; + u8 mgmt_registrations_need_update: 1; + bool use_4addr; + bool is_running; + bool registered; + bool registering; + short: 0; + u8 address[6]; + struct cfg80211_conn *conn; + struct cfg80211_cached_keys *connect_keys; + enum ieee80211_bss_type conn_bss_type; + u32 conn_owner_nlportid; + struct work_struct disconnect_wk; + u8 disconnect_bssid[6]; + struct list_head event_list; + spinlock_t event_lock; + u8 connected: 1; + bool ps; + int ps_timeout; + u32 ap_unexpected_nlportid; + u32 owner_nlportid; + bool nl_owner_dead; + struct { + struct cfg80211_ibss_params ibss; + struct cfg80211_connect_params connect; + struct cfg80211_cached_keys *keys; + const u8 *ie; + size_t ie_len; + u8 bssid[6]; + u8 prev_bssid[6]; + u8 ssid[32]; + s8 default_key; + s8 default_mgmt_key; + bool prev_bssid_valid; + } wext; + struct wiphy_work cqm_rssi_work; + struct cfg80211_cqm_config *cqm_config; + struct list_head pmsr_list; + spinlock_t pmsr_lock; + struct work_struct pmsr_free_wk; + long unsigned int unprot_beacon_reported; + union { + struct { + u8 connected_addr[6]; + u8 ssid[32]; + u8 ssid_len; + long: 0; + } client; + struct { + int beacon_interval; + struct cfg80211_chan_def preset_chandef; + struct cfg80211_chan_def chandef; + u8 id[32]; + u8 id_len; + u8 id_up_len; + } mesh; + struct { + struct cfg80211_chan_def preset_chandef; + u8 ssid[32]; + u8 ssid_len; + } ap; + struct { + struct cfg80211_internal_bss *current_bss; + struct cfg80211_chan_def chandef; + int beacon_interval; + u8 ssid[32]; + u8 ssid_len; + } ibss; + struct { + struct cfg80211_chan_def chandef; + } ocb; + } u; + struct { + u8 addr[6]; + union { + struct { + unsigned int beacon_interval; + struct cfg80211_chan_def chandef; + } ap; + struct { + struct cfg80211_internal_bss *current_bss; + } client; + }; + bool cac_started; + long unsigned int cac_start_time; + unsigned int cac_time_ms; + } links[15]; + u16 valid_links; + u32 radio_mask; +}; + +struct iw_param { + __s32 value; + __u8 fixed; + __u8 disabled; + __u16 flags; +}; + +struct iw_point { + void *pointer; + __u16 length; + __u16 flags; +}; + +struct iw_freq { + __s32 m; + __s16 e; + __u8 i; + __u8 flags; +}; + +struct iw_quality { + __u8 qual; + __u8 level; + __u8 noise; + __u8 updated; +}; + +struct iw_discarded { + __u32 nwid; + __u32 code; + __u32 fragment; + __u32 retries; + __u32 misc; +}; + +struct iw_missed { + __u32 beacon; +}; + +struct iw_encode_ext { + __u32 ext_flags; + __u8 tx_seq[8]; + __u8 rx_seq[8]; + struct sockaddr addr; + __u16 alg; + __u16 key_len; + __u8 key[0]; +}; + +struct iw_statistics { + __u16 status; + struct iw_quality qual; + struct iw_discarded discard; + struct iw_missed miss; +}; + +union iwreq_data { + char name[16]; + struct iw_point essid; + struct iw_param nwid; + struct iw_freq freq; + struct iw_param sens; + struct iw_param bitrate; + struct iw_param txpower; + struct iw_param rts; + struct iw_param frag; + __u32 mode; + struct iw_param retry; + struct iw_point encoding; + struct iw_param power; + struct iw_quality qual; + struct sockaddr ap_addr; + struct sockaddr addr; + struct iw_param param; + struct iw_point data; +}; + +struct iwreq { + union { + char ifrn_name[16]; + } ifr_ifrn; + union iwreq_data u; +}; + +struct iw_event { + __u16 len; + __u16 cmd; + union iwreq_data u; +}; + +struct compat_iw_point { + compat_caddr_t pointer; + __u16 length; + __u16 flags; +}; + +struct __compat_iw_event { + __u16 len; + __u16 cmd; + union { + compat_caddr_t pointer; + struct { + struct {} __empty_ptr_bytes; + __u8 ptr_bytes[0]; + }; + }; +}; + +enum nl80211_reg_initiator { + NL80211_REGDOM_SET_BY_CORE = 0, + NL80211_REGDOM_SET_BY_USER = 1, + NL80211_REGDOM_SET_BY_DRIVER = 2, + NL80211_REGDOM_SET_BY_COUNTRY_IE = 3, +}; + +enum nl80211_dfs_regions { + NL80211_DFS_UNSET = 0, + NL80211_DFS_FCC = 1, + NL80211_DFS_ETSI = 2, + NL80211_DFS_JP = 3, +}; + +enum nl80211_user_reg_hint_type { + NL80211_USER_REG_HINT_USER = 0, + NL80211_USER_REG_HINT_CELL_BASE = 1, + NL80211_USER_REG_HINT_INDOOR = 2, +}; + +enum nl80211_key_mode { + NL80211_KEY_RX_TX = 0, + NL80211_KEY_NO_TX = 1, + NL80211_KEY_SET_TX = 2, +}; + +struct nl80211_wowlan_tcp_data_seq { + __u32 start; + __u32 offset; + __u32 len; +}; + +struct nl80211_wowlan_tcp_data_token { + __u32 offset; + __u32 len; + __u8 token_stream[0]; +}; + +struct nl80211_wowlan_tcp_data_token_feature { + __u32 min_len; + __u32 max_len; + __u32 bufsize; +}; + +enum nl80211_dfs_state { + NL80211_DFS_USABLE = 0, + NL80211_DFS_UNAVAILABLE = 1, + NL80211_DFS_AVAILABLE = 2, +}; + +struct nl80211_vendor_cmd_info { + __u32 vendor_id; + __u32 subcmd; +}; + +enum nl80211_sar_type { + NL80211_SAR_TYPE_POWER = 0, + NUM_NL80211_SAR_TYPE = 1, +}; + +struct ieee80211_he_cap_elem { + u8 mac_cap_info[6]; + u8 phy_cap_info[11]; +}; + +struct ieee80211_he_mcs_nss_supp { + __le16 rx_mcs_80; + __le16 tx_mcs_80; + __le16 rx_mcs_160; + __le16 tx_mcs_160; + __le16 rx_mcs_80p80; + __le16 tx_mcs_80p80; +}; + +struct ieee80211_eht_mcs_nss_supp_20mhz_only { + union { + struct { + u8 rx_tx_mcs7_max_nss; + u8 rx_tx_mcs9_max_nss; + u8 rx_tx_mcs11_max_nss; + u8 rx_tx_mcs13_max_nss; + }; + u8 rx_tx_max_nss[4]; + }; +}; + +struct ieee80211_eht_mcs_nss_supp_bw { + union { + struct { + u8 rx_tx_mcs9_max_nss; + u8 rx_tx_mcs11_max_nss; + u8 rx_tx_mcs13_max_nss; + }; + u8 rx_tx_max_nss[3]; + }; +}; + +struct ieee80211_eht_cap_elem_fixed { + u8 mac_cap_info[2]; + u8 phy_cap_info[9]; +}; + +struct ieee80211_he_6ghz_capa { + __le16 capa; +}; + +enum environment_cap { + ENVIRON_ANY = 0, + ENVIRON_INDOOR = 1, + ENVIRON_OUTDOOR = 2, +}; + +struct regulatory_request { + struct callback_head callback_head; + int wiphy_idx; + enum nl80211_reg_initiator initiator; + enum nl80211_user_reg_hint_type user_reg_hint_type; + char alpha2[3]; + enum nl80211_dfs_regions dfs_region; + bool intersect; + bool processed; + enum environment_cap country_ie_env; + struct list_head list; +}; + +struct ieee80211_freq_range { + u32 start_freq_khz; + u32 end_freq_khz; + u32 max_bandwidth_khz; +}; + +struct ieee80211_power_rule { + u32 max_antenna_gain; + u32 max_eirp; +}; + +struct ieee80211_wmm_ac { + u16 cw_min; + u16 cw_max; + u16 cot; + u8 aifsn; +}; + +struct ieee80211_wmm_rule { + struct ieee80211_wmm_ac client[4]; + struct ieee80211_wmm_ac ap[4]; +}; + +struct ieee80211_reg_rule { + struct ieee80211_freq_range freq_range; + struct ieee80211_power_rule power_rule; + struct ieee80211_wmm_rule wmm_rule; + u32 flags; + u32 dfs_cac_ms; + bool has_wmm; + s8 psd; +}; + +struct ieee80211_regdomain { + struct callback_head callback_head; + u32 n_reg_rules; + char alpha2[3]; + enum nl80211_dfs_regions dfs_region; + struct ieee80211_reg_rule reg_rules[0]; +}; + +struct ieee80211_channel { + enum nl80211_band band; + u32 center_freq; + u16 freq_offset; + u16 hw_value; + u32 flags; + int max_antenna_gain; + int max_power; + int max_reg_power; + bool beacon_found; + u32 orig_flags; + int orig_mag; + int orig_mpwr; + enum nl80211_dfs_state dfs_state; + long unsigned int dfs_state_entered; + unsigned int dfs_cac_ms; + s8 psd; +}; + +struct ieee80211_rate { + u32 flags; + u16 bitrate; + u16 hw_value; + u16 hw_value_short; +}; + +struct ieee80211_sta_ht_cap { + u16 cap; + bool ht_supported; + u8 ampdu_factor; + u8 ampdu_density; + struct ieee80211_mcs_info mcs; + short: 0; +} __attribute__((packed)); + +struct ieee80211_sta_vht_cap { + bool vht_supported; + u32 cap; + struct ieee80211_vht_mcs_info vht_mcs; +}; + +struct ieee80211_sta_he_cap { + bool has_he; + struct ieee80211_he_cap_elem he_cap_elem; + struct ieee80211_he_mcs_nss_supp he_mcs_nss_supp; + u8 ppe_thres[25]; +} __attribute__((packed)); + +struct ieee80211_eht_mcs_nss_supp { + union { + struct ieee80211_eht_mcs_nss_supp_20mhz_only only_20mhz; + struct { + struct ieee80211_eht_mcs_nss_supp_bw _80; + struct ieee80211_eht_mcs_nss_supp_bw _160; + struct ieee80211_eht_mcs_nss_supp_bw _320; + } bw; + }; +}; + +struct ieee80211_sta_eht_cap { + bool has_eht; + struct ieee80211_eht_cap_elem_fixed eht_cap_elem; + struct ieee80211_eht_mcs_nss_supp eht_mcs_nss_supp; + u8 eht_ppe_thres[32]; +}; + +struct ieee80211_sband_iftype_data { + u16 types_mask; + struct ieee80211_sta_he_cap he_cap; + struct ieee80211_he_6ghz_capa he_6ghz_capa; + struct ieee80211_sta_eht_cap eht_cap; + struct { + const u8 *data; + unsigned int len; + } vendor_elems; +} __attribute__((packed)); + +struct ieee80211_sta_s1g_cap { + bool s1g; + u8 cap[10]; + u8 nss_mcs[5]; +}; + +struct ieee80211_supported_band { + struct ieee80211_channel *channels; + struct ieee80211_rate *bitrates; + enum nl80211_band band; + int n_channels; + int n_bitrates; + struct ieee80211_sta_ht_cap ht_cap; + struct ieee80211_sta_vht_cap vht_cap; + struct ieee80211_sta_s1g_cap s1g_cap; + struct ieee80211_edmg edmg_cap; + u16 n_iftype_data; + const struct ieee80211_sband_iftype_data *iftype_data; +}; + +struct key_params { + const u8 *key; + const u8 *seq; + int key_len; + int seq_len; + u16 vlan_id; + u32 cipher; + enum nl80211_key_mode mode; +}; + +struct mac_address { + u8 addr[6]; +}; + +struct cfg80211_sar_freq_ranges { + u32 start_freq; + u32 end_freq; +}; + +struct cfg80211_sar_capa { + enum nl80211_sar_type type; + u32 num_freq_ranges; + const struct cfg80211_sar_freq_ranges *freq_ranges; +}; + +struct cfg80211_ssid { + u8 ssid[32]; + u8 ssid_len; +}; + +enum cfg80211_signal_type { + CFG80211_SIGNAL_TYPE_NONE = 0, + CFG80211_SIGNAL_TYPE_MBM = 1, + CFG80211_SIGNAL_TYPE_UNSPEC = 2, +}; + +struct ieee80211_txrx_stypes; + +struct ieee80211_iface_combination; + +struct wiphy_iftype_akm_suites; + +struct wiphy_wowlan_support; + +struct cfg80211_wowlan; + +struct wiphy_iftype_ext_capab; + +struct wiphy_radio_cfg; + +struct iw_handler_def; + +struct wiphy_coalesce_support; + +struct wiphy_vendor_command; + +struct cfg80211_pmsr_capabilities; + +struct rfkill; + +struct wiphy_radio; + +struct wiphy { + struct mutex mtx; + u8 perm_addr[6]; + u8 addr_mask[6]; + struct mac_address *addresses; + const struct ieee80211_txrx_stypes *mgmt_stypes; + const struct ieee80211_iface_combination *iface_combinations; + int n_iface_combinations; + u16 software_iftypes; + u16 n_addresses; + u16 interface_modes; + u16 max_acl_mac_addrs; + u32 flags; + u32 regulatory_flags; + u32 features; + u8 ext_features[9]; + u32 ap_sme_capa; + enum cfg80211_signal_type signal_type; + int bss_priv_size; + u8 max_scan_ssids; + u8 max_sched_scan_reqs; + u8 max_sched_scan_ssids; + u8 max_match_sets; + u16 max_scan_ie_len; + u16 max_sched_scan_ie_len; + u32 max_sched_scan_plans; + u32 max_sched_scan_plan_interval; + u32 max_sched_scan_plan_iterations; + int n_cipher_suites; + const u32 *cipher_suites; + int n_akm_suites; + const u32 *akm_suites; + const struct wiphy_iftype_akm_suites *iftype_akm_suites; + unsigned int num_iftype_akm_suites; + u8 retry_short; + u8 retry_long; + u32 frag_threshold; + u32 rts_threshold; + u8 coverage_class; + char fw_version[32]; + u32 hw_version; + const struct wiphy_wowlan_support *wowlan; + struct cfg80211_wowlan *wowlan_config; + u16 max_remain_on_channel_duration; + u8 max_num_pmkids; + u32 available_antennas_tx; + u32 available_antennas_rx; + u32 probe_resp_offload; + const u8 *extended_capabilities; + const u8 *extended_capabilities_mask; + u8 extended_capabilities_len; + const struct wiphy_iftype_ext_capab *iftype_ext_capab; + unsigned int num_iftype_ext_capab; + const void *privid; + struct ieee80211_supported_band *bands[6]; + void (*reg_notifier)(struct wiphy *, struct regulatory_request *); + struct wiphy_radio_cfg *radio_cfg; + const struct ieee80211_regdomain *regd; + struct device dev; + bool registered; + struct dentry *debugfsdir; + const struct ieee80211_ht_cap *ht_capa_mod_mask; + const struct ieee80211_vht_cap *vht_capa_mod_mask; + struct list_head wdev_list; + possible_net_t _net; + const struct iw_handler_def *wext; + const struct wiphy_coalesce_support *coalesce; + const struct wiphy_vendor_command *vendor_commands; + const struct nl80211_vendor_cmd_info *vendor_events; + int n_vendor_commands; + int n_vendor_events; + u16 max_ap_assoc_sta; + u8 max_num_csa_counters; + u32 bss_select_support; + u8 nan_supported_bands; + u32 txq_limit; + u32 txq_memory_limit; + u32 txq_quantum; + long unsigned int tx_queue_len; + u8 support_mbssid: 1; + u8 support_only_he_mbssid: 1; + const struct cfg80211_pmsr_capabilities *pmsr_capa; + struct { + u64 peer; + u64 vif; + u8 max_retry; + } tid_config_support; + u8 max_data_retry_count; + const struct cfg80211_sar_capa *sar_capa; + struct rfkill *rfkill; + u8 mbssid_max_interfaces; + u8 ema_max_profile_periodicity; + u16 max_num_akm_suites; + u16 hw_timestamp_max_peers; + int n_radio; + const struct wiphy_radio *radio; + long: 64; + long: 64; + long: 64; + char priv[0]; +}; + +struct cfg80211_match_set { + struct cfg80211_ssid ssid; + u8 bssid[6]; + s32 rssi_thold; +}; + +struct cfg80211_sched_scan_plan { + u32 interval; + u32 iterations; +}; + +struct cfg80211_sched_scan_request { + u64 reqid; + struct cfg80211_ssid *ssids; + int n_ssids; + u32 n_channels; + const u8 *ie; + size_t ie_len; + u32 flags; + struct cfg80211_match_set *match_sets; + int n_match_sets; + s32 min_rssi_thold; + u32 delay; + struct cfg80211_sched_scan_plan *scan_plans; + int n_scan_plans; + u8 mac_addr[6]; + u8 mac_addr_mask[6]; + bool relative_rssi_set; + s8 relative_rssi; + struct cfg80211_bss_select_adjust rssi_adjust; + struct wiphy *wiphy; + struct net_device *dev; + long unsigned int scan_start; + bool report_results; + struct callback_head callback_head; + u32 owner_nlportid; + bool nl_owner_dead; + struct list_head list; + struct ieee80211_channel *channels[0]; +}; + +struct cfg80211_pkt_pattern { + const u8 *mask; + const u8 *pattern; + int pattern_len; + int pkt_offset; +}; + +struct cfg80211_wowlan_tcp { + struct socket *sock; + __be32 src; + __be32 dst; + u16 src_port; + u16 dst_port; + u8 dst_mac[6]; + int payload_len; + const u8 *payload; + struct nl80211_wowlan_tcp_data_seq payload_seq; + u32 data_interval; + u32 wake_len; + const u8 *wake_data; + const u8 *wake_mask; + u32 tokens_size; + struct nl80211_wowlan_tcp_data_token payload_tok; +}; + +struct cfg80211_wowlan { + bool any; + bool disconnect; + bool magic_pkt; + bool gtk_rekey_failure; + bool eap_identity_req; + bool four_way_handshake; + bool rfkill_release; + struct cfg80211_pkt_pattern *patterns; + struct cfg80211_wowlan_tcp *tcp; + int n_patterns; + struct cfg80211_sched_scan_request *nd_config; +}; + +enum wiphy_flags { + WIPHY_FLAG_SUPPORTS_EXT_KEK_KCK = 1, + WIPHY_FLAG_SUPPORTS_MLO = 2, + WIPHY_FLAG_SPLIT_SCAN_6GHZ = 4, + WIPHY_FLAG_NETNS_OK = 8, + WIPHY_FLAG_PS_ON_BY_DEFAULT = 16, + WIPHY_FLAG_4ADDR_AP = 32, + WIPHY_FLAG_4ADDR_STATION = 64, + WIPHY_FLAG_CONTROL_PORT_PROTOCOL = 128, + WIPHY_FLAG_IBSS_RSN = 256, + WIPHY_FLAG_DISABLE_WEXT = 512, + WIPHY_FLAG_MESH_AUTH = 1024, + WIPHY_FLAG_SUPPORTS_EXT_KCK_32 = 2048, + WIPHY_FLAG_SUPPORTS_NSTR_NONPRIMARY = 4096, + WIPHY_FLAG_SUPPORTS_FW_ROAM = 8192, + WIPHY_FLAG_AP_UAPSD = 16384, + WIPHY_FLAG_SUPPORTS_TDLS = 32768, + WIPHY_FLAG_TDLS_EXTERNAL_SETUP = 65536, + WIPHY_FLAG_HAVE_AP_SME = 131072, + WIPHY_FLAG_REPORTS_OBSS = 262144, + WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD = 524288, + WIPHY_FLAG_OFFCHAN_TX = 1048576, + WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL = 2097152, + WIPHY_FLAG_SUPPORTS_5_10_MHZ = 4194304, + WIPHY_FLAG_HAS_CHANNEL_SWITCH = 8388608, + WIPHY_FLAG_NOTIFY_REGDOM_BY_DRIVER = 16777216, + WIPHY_FLAG_CHANNEL_CHANGE_ON_BEACON = 33554432, +}; + +struct ieee80211_iface_limit { + u16 max; + u16 types; +}; + +struct ieee80211_iface_combination { + const struct ieee80211_iface_limit *limits; + u32 num_different_channels; + u16 max_interfaces; + u8 n_limits; + bool beacon_int_infra_match; + u8 radar_detect_widths; + u8 radar_detect_regions; + u32 beacon_int_min_gcd; +}; + +struct ieee80211_txrx_stypes { + u16 tx; + u16 rx; +}; + +struct wiphy_wowlan_tcp_support { + const struct nl80211_wowlan_tcp_data_token_feature *tok; + u32 data_payload_max; + u32 data_interval_max; + u32 wake_payload_max; + bool seq; +}; + +struct wiphy_wowlan_support { + u32 flags; + int n_patterns; + int pattern_max_len; + int pattern_min_len; + int max_pkt_offset; + int max_nd_match_sets; + const struct wiphy_wowlan_tcp_support *tcp; +}; + +struct wiphy_coalesce_support { + int n_rules; + int max_delay; + int n_patterns; + int pattern_max_len; + int pattern_min_len; + int max_pkt_offset; +}; + +struct wiphy_vendor_command { + struct nl80211_vendor_cmd_info info; + u32 flags; + int (*doit)(struct wiphy *, struct wireless_dev *, const void *, int); + int (*dumpit)(struct wiphy *, struct wireless_dev *, struct sk_buff *, const void *, int, long unsigned int *); + const struct nla_policy *policy; + unsigned int maxattr; +}; + +struct wiphy_iftype_ext_capab { + enum nl80211_iftype iftype; + const u8 *extended_capabilities; + const u8 *extended_capabilities_mask; + u8 extended_capabilities_len; + u16 eml_capabilities; + u16 mld_capa_and_ops; +}; + +struct cfg80211_pmsr_capabilities { + unsigned int max_peers; + u8 report_ap_tsf: 1; + u8 randomize_mac_addr: 1; + struct { + u32 preambles; + u32 bandwidths; + s8 max_bursts_exponent; + u8 max_ftms_per_burst; + u8 supported: 1; + u8 asap: 1; + u8 non_asap: 1; + u8 request_lci: 1; + u8 request_civicloc: 1; + u8 trigger_based: 1; + u8 non_trigger_based: 1; + } ftm; +}; + +struct wiphy_iftype_akm_suites { + u16 iftypes_mask; + const u32 *akm_suites; + int n_akm_suites; +}; + +struct wiphy_radio_cfg { + u32 rts_threshold; +}; + +struct wiphy_radio_freq_range { + u32 start_freq; + u32 end_freq; +}; + +struct wiphy_radio { + const struct wiphy_radio_freq_range *freq_range; + int n_freq_range; + const struct ieee80211_iface_combination *iface_combinations; + int n_iface_combinations; + u32 antenna_mask; +}; + +struct iw_request_info; + +typedef int (*iw_handler)(struct net_device *, struct iw_request_info *, union iwreq_data *, char *); + +struct iw_handler_def { + const iw_handler *standard; + __u16 num_standard; + struct iw_statistics * (*get_wireless_stats)(struct net_device *); +}; + +struct iw_request_info { + __u16 cmd; + __u16 flags; +}; + +struct iw_ioctl_description { + __u8 header_type; + __u8 flags; + __u16 token_size; + __u16 min_tokens; + __u16 max_tokens; +}; + +typedef int (*wext_ioctl_func)(struct net_device *, struct iwreq *, unsigned int, struct iw_request_info *, iw_handler); + +struct netlbl_audit { + struct lsm_prop prop; + kuid_t loginuid; + unsigned int sessionid; +}; + +struct calipso_doi { + u32 doi; + u32 type; + refcount_t refcount; + struct list_head list; + struct callback_head rcu; +}; + +struct cipso_v4_std_map_tbl { + struct { + u32 *cipso; + u32 *local; + u32 cipso_size; + u32 local_size; + } lvl; + struct { + u32 *cipso; + u32 *local; + u32 cipso_size; + u32 local_size; + } cat; +}; + +struct cipso_v4_doi { + u32 doi; + u32 type; + union { + struct cipso_v4_std_map_tbl *std; + } map; + u8 tags[5]; + refcount_t refcount; + struct list_head list; + struct callback_head rcu; +}; + +struct netlbl_af4list { + __be32 addr; + __be32 mask; + u32 valid; + struct list_head list; +}; + +struct netlbl_af6list { + struct in6_addr addr; + struct in6_addr mask; + u32 valid; + struct list_head list; +}; + +struct netlbl_domaddr_map { + struct list_head list4; + struct list_head list6; +}; + +struct netlbl_dommap_def { + u32 type; + union { + struct netlbl_domaddr_map *addrsel; + struct cipso_v4_doi *cipso; + struct calipso_doi *calipso; + }; +}; + +struct netlbl_domaddr4_map { + struct netlbl_dommap_def def; + struct netlbl_af4list list; +}; + +struct netlbl_domaddr6_map { + struct netlbl_dommap_def def; + struct netlbl_af6list list; +}; + +struct netlbl_dom_map { + char *domain; + struct netlbl_dommap_def def; + u16 family; + u32 valid; + struct list_head list; + struct callback_head rcu; +}; + +struct netlbl_domhsh_tbl { + struct list_head *tbl; + u32 size; +}; + +struct netlbl_calipso_ops { + int (*doi_add)(struct calipso_doi *, struct netlbl_audit *); + void (*doi_free)(struct calipso_doi *); + int (*doi_remove)(u32, struct netlbl_audit *); + struct calipso_doi * (*doi_getdef)(u32); + void (*doi_putdef)(struct calipso_doi *); + int (*doi_walk)(u32 *, int (*)(struct calipso_doi *, void *), void *); + int (*sock_getattr)(struct sock *, struct netlbl_lsm_secattr *); + int (*sock_setattr)(struct sock *, const struct calipso_doi *, const struct netlbl_lsm_secattr *); + void (*sock_delattr)(struct sock *); + int (*req_setattr)(struct request_sock *, const struct calipso_doi *, const struct netlbl_lsm_secattr *); + void (*req_delattr)(struct request_sock *); + int (*opt_getattr)(const unsigned char *, struct netlbl_lsm_secattr *); + unsigned char * (*skbuff_optptr)(const struct sk_buff *); + int (*skbuff_setattr)(struct sk_buff *, const struct calipso_doi *, const struct netlbl_lsm_secattr *); + int (*skbuff_delattr)(struct sk_buff *); + void (*cache_invalidate)(void); + int (*cache_add)(const unsigned char *, const struct netlbl_lsm_secattr *); +}; + +enum { + NLBL_CALIPSO_C_UNSPEC = 0, + NLBL_CALIPSO_C_ADD = 1, + NLBL_CALIPSO_C_REMOVE = 2, + NLBL_CALIPSO_C_LIST = 3, + NLBL_CALIPSO_C_LISTALL = 4, + __NLBL_CALIPSO_C_MAX = 5, +}; + +enum { + NLBL_CALIPSO_A_UNSPEC = 0, + NLBL_CALIPSO_A_DOI = 1, + NLBL_CALIPSO_A_MTYPE = 2, + __NLBL_CALIPSO_A_MAX = 3, +}; + +struct netlbl_calipso_doiwalk_arg { + struct netlink_callback *nl_cb; + struct sk_buff *skb; + u32 seq; +}; + +struct netlbl_domhsh_walk_arg { + struct netlbl_audit *audit_info; + u32 doi; +}; + +struct ncsi_dev { + int state; + int link_up; + struct net_device *dev; + void (*handler)(struct ncsi_dev *); +}; + +struct ncsi_channel_version { + u8 major; + u8 minor; + u8 update; + char alpha1; + char alpha2; + u8 fw_name[13]; + u32 fw_version; + u16 pci_ids[4]; + u32 mf_id; +}; + +struct ncsi_channel_cap { + u32 index; + u32 cap; +}; + +struct ncsi_channel_mode { + u32 index; + u32 enable; + u32 size; + u32 data[8]; +}; + +struct ncsi_channel_mac_filter { + u8 n_uc; + u8 n_mc; + u8 n_mixed; + u64 bitmap; + unsigned char *addrs; +}; + +struct ncsi_channel_vlan_filter { + u8 n_vids; + u64 bitmap; + u16 *vids; +}; + +struct ncsi_channel_stats { + u64 hnc_cnt; + u64 hnc_rx_bytes; + u64 hnc_tx_bytes; + u64 hnc_rx_uc_pkts; + u64 hnc_rx_mc_pkts; + u64 hnc_rx_bc_pkts; + u64 hnc_tx_uc_pkts; + u64 hnc_tx_mc_pkts; + u64 hnc_tx_bc_pkts; + u32 hnc_fcs_err; + u32 hnc_align_err; + u32 hnc_false_carrier; + u32 hnc_runt_pkts; + u32 hnc_jabber_pkts; + u32 hnc_rx_pause_xon; + u32 hnc_rx_pause_xoff; + u32 hnc_tx_pause_xon; + u32 hnc_tx_pause_xoff; + u32 hnc_tx_s_collision; + u32 hnc_tx_m_collision; + u32 hnc_l_collision; + u32 hnc_e_collision; + u32 hnc_rx_ctl_frames; + u32 hnc_rx_64_frames; + u32 hnc_rx_127_frames; + u32 hnc_rx_255_frames; + u32 hnc_rx_511_frames; + u32 hnc_rx_1023_frames; + u32 hnc_rx_1522_frames; + u32 hnc_rx_9022_frames; + u32 hnc_tx_64_frames; + u32 hnc_tx_127_frames; + u32 hnc_tx_255_frames; + u32 hnc_tx_511_frames; + u32 hnc_tx_1023_frames; + u32 hnc_tx_1522_frames; + u32 hnc_tx_9022_frames; + u64 hnc_rx_valid_bytes; + u32 hnc_rx_runt_pkts; + u32 hnc_rx_jabber_pkts; + u32 ncsi_rx_cmds; + u32 ncsi_dropped_cmds; + u32 ncsi_cmd_type_errs; + u32 ncsi_cmd_csum_errs; + u32 ncsi_rx_pkts; + u32 ncsi_tx_pkts; + u32 ncsi_tx_aen_pkts; + u32 pt_tx_pkts; + u32 pt_tx_dropped; + u32 pt_tx_channel_err; + u32 pt_tx_us_err; + u32 pt_rx_pkts; + u32 pt_rx_dropped; + u32 pt_rx_channel_err; + u32 pt_rx_us_err; + u32 pt_rx_os_err; +}; + +struct ncsi_package; + +struct ncsi_channel { + unsigned char id; + int state; + bool reconfigure_needed; + spinlock_t lock; + struct ncsi_package *package; + struct ncsi_channel_version version; + struct ncsi_channel_cap caps[6]; + struct ncsi_channel_mode modes[8]; + struct ncsi_channel_mac_filter mac_filter; + struct ncsi_channel_vlan_filter vlan_filter; + struct ncsi_channel_stats stats; + struct { + struct timer_list timer; + bool enabled; + unsigned int state; + } monitor; + struct list_head node; + struct list_head link; +}; + +struct ncsi_dev_priv; + +struct ncsi_package { + unsigned char id; + unsigned char uuid[16]; + struct ncsi_dev_priv *ndp; + spinlock_t lock; + unsigned int channel_num; + struct list_head channels; + struct list_head node; + bool multi_channel; + u32 channel_whitelist; + struct ncsi_channel *preferred_channel; +}; + +struct ncsi_request { + unsigned char id; + bool used; + unsigned int flags; + struct ncsi_dev_priv *ndp; + struct sk_buff *cmd; + struct sk_buff *rsp; + struct timer_list timer; + bool enabled; + u32 snd_seq; + u32 snd_portid; + struct nlmsghdr nlhdr; +}; + +struct ncsi_dev_priv { + struct ncsi_dev ndev; + unsigned int flags; + unsigned int gma_flag; + struct __kernel_sockaddr_storage pending_mac; + spinlock_t lock; + unsigned int package_probe_id; + unsigned int package_num; + unsigned int channel_probe_id; + struct list_head packages; + struct ncsi_channel *hot_channel; + struct ncsi_request requests[256]; + unsigned int request_id; + unsigned int pending_req_num; + struct ncsi_package *active_package; + struct ncsi_channel *active_channel; + struct list_head channel_queue; + struct work_struct work; + struct packet_type ptype; + struct list_head node; + struct list_head vlan_vids; + bool multi_package; + bool mlx_multi_host; + u32 package_whitelist; + unsigned char channel_count; +}; + +struct ncsi_cmd_arg { + struct ncsi_dev_priv *ndp; + unsigned char type; + unsigned char id; + unsigned char package; + unsigned char channel; + short unsigned int payload; + unsigned int req_flags; + union { + unsigned char bytes[16]; + short unsigned int words[8]; + unsigned int dwords[4]; + }; + unsigned char *data; + struct genl_info *info; +}; + +struct ncsi_pkt_hdr { + unsigned char mc_id; + unsigned char revision; + unsigned char reserved; + unsigned char id; + unsigned char type; + unsigned char channel; + __be16 length; + __be32 reserved1[2]; +}; + +struct ncsi_cmd_pkt_hdr { + struct ncsi_pkt_hdr common; +}; + +struct ncsi_cmd_pkt { + struct ncsi_cmd_pkt_hdr cmd; + __be32 checksum; + unsigned char pad[26]; +}; + +struct ncsi_cmd_sp_pkt { + struct ncsi_cmd_pkt_hdr cmd; + unsigned char reserved[3]; + unsigned char hw_arbitration; + __be32 checksum; + unsigned char pad[22]; +}; + +struct ncsi_cmd_dc_pkt { + struct ncsi_cmd_pkt_hdr cmd; + unsigned char reserved[3]; + unsigned char ald; + __be32 checksum; + unsigned char pad[22]; +}; + +struct ncsi_cmd_rc_pkt { + struct ncsi_cmd_pkt_hdr cmd; + __be32 reserved; + __be32 checksum; + unsigned char pad[22]; +}; + +struct ncsi_cmd_ae_pkt { + struct ncsi_cmd_pkt_hdr cmd; + unsigned char reserved[3]; + unsigned char mc_id; + __be32 mode; + __be32 checksum; + unsigned char pad[18]; +}; + +struct ncsi_cmd_sl_pkt { + struct ncsi_cmd_pkt_hdr cmd; + __be32 mode; + __be32 oem_mode; + __be32 checksum; + unsigned char pad[18]; +}; + +struct ncsi_cmd_svf_pkt { + struct ncsi_cmd_pkt_hdr cmd; + __be16 reserved; + __be16 vlan; + __be16 reserved1; + unsigned char index; + unsigned char enable; + __be32 checksum; + unsigned char pad[18]; +}; + +struct ncsi_cmd_ev_pkt { + struct ncsi_cmd_pkt_hdr cmd; + unsigned char reserved[3]; + unsigned char mode; + __be32 checksum; + unsigned char pad[22]; +}; + +struct ncsi_cmd_sma_pkt { + struct ncsi_cmd_pkt_hdr cmd; + unsigned char mac[6]; + unsigned char index; + unsigned char at_e; + __be32 checksum; + unsigned char pad[18]; +}; + +struct ncsi_cmd_ebf_pkt { + struct ncsi_cmd_pkt_hdr cmd; + __be32 mode; + __be32 checksum; + unsigned char pad[22]; +}; + +struct ncsi_cmd_egmf_pkt { + struct ncsi_cmd_pkt_hdr cmd; + __be32 mode; + __be32 checksum; + unsigned char pad[22]; +}; + +struct ncsi_cmd_snfc_pkt { + struct ncsi_cmd_pkt_hdr cmd; + unsigned char reserved[3]; + unsigned char mode; + __be32 checksum; + unsigned char pad[22]; +}; + +struct ncsi_cmd_oem_pkt { + struct ncsi_cmd_pkt_hdr cmd; + __be32 mfr_id; + unsigned char data[0]; +}; + +struct ncsi_cmd_handler { + unsigned char type; + int payload; + int (*handler)(struct sk_buff *, struct ncsi_cmd_arg *); +}; + +enum ncsi_nl_commands { + NCSI_CMD_UNSPEC = 0, + NCSI_CMD_PKG_INFO = 1, + NCSI_CMD_SET_INTERFACE = 2, + NCSI_CMD_CLEAR_INTERFACE = 3, + NCSI_CMD_SEND_CMD = 4, + NCSI_CMD_SET_PACKAGE_MASK = 5, + NCSI_CMD_SET_CHANNEL_MASK = 6, + __NCSI_CMD_AFTER_LAST = 7, + NCSI_CMD_MAX = 6, +}; + +enum ncsi_nl_attrs { + NCSI_ATTR_UNSPEC = 0, + NCSI_ATTR_IFINDEX = 1, + NCSI_ATTR_PACKAGE_LIST = 2, + NCSI_ATTR_PACKAGE_ID = 3, + NCSI_ATTR_CHANNEL_ID = 4, + NCSI_ATTR_DATA = 5, + NCSI_ATTR_MULTI_FLAG = 6, + NCSI_ATTR_PACKAGE_MASK = 7, + NCSI_ATTR_CHANNEL_MASK = 8, + __NCSI_ATTR_AFTER_LAST = 9, + NCSI_ATTR_MAX = 8, +}; + +enum ncsi_nl_pkg_attrs { + NCSI_PKG_ATTR_UNSPEC = 0, + NCSI_PKG_ATTR = 1, + NCSI_PKG_ATTR_ID = 2, + NCSI_PKG_ATTR_FORCED = 3, + NCSI_PKG_ATTR_CHANNEL_LIST = 4, + __NCSI_PKG_ATTR_AFTER_LAST = 5, + NCSI_PKG_ATTR_MAX = 4, +}; + +enum ncsi_nl_channel_attrs { + NCSI_CHANNEL_ATTR_UNSPEC = 0, + NCSI_CHANNEL_ATTR = 1, + NCSI_CHANNEL_ATTR_ID = 2, + NCSI_CHANNEL_ATTR_VERSION_MAJOR = 3, + NCSI_CHANNEL_ATTR_VERSION_MINOR = 4, + NCSI_CHANNEL_ATTR_VERSION_STR = 5, + NCSI_CHANNEL_ATTR_LINK_STATE = 6, + NCSI_CHANNEL_ATTR_ACTIVE = 7, + NCSI_CHANNEL_ATTR_FORCED = 8, + NCSI_CHANNEL_ATTR_VLAN_LIST = 9, + NCSI_CHANNEL_ATTR_VLAN_ID = 10, + __NCSI_CHANNEL_ATTR_AFTER_LAST = 11, + NCSI_CHANNEL_ATTR_MAX = 10, +}; + +enum { + NCSI_CAP_BASE = 0, + NCSI_CAP_GENERIC = 0, + NCSI_CAP_BC = 1, + NCSI_CAP_MC = 2, + NCSI_CAP_BUFFER = 3, + NCSI_CAP_AEN = 4, + NCSI_CAP_VLAN = 5, + NCSI_CAP_MAX = 6, +}; + +enum { + NCSI_MODE_BASE = 0, + NCSI_MODE_ENABLE = 0, + NCSI_MODE_TX_ENABLE = 1, + NCSI_MODE_LINK = 2, + NCSI_MODE_VLAN = 3, + NCSI_MODE_BC = 4, + NCSI_MODE_MC = 5, + NCSI_MODE_AEN = 6, + NCSI_MODE_FC = 7, + NCSI_MODE_MAX = 8, +}; + +struct xdp_ring; + +struct xsk_queue { + u32 ring_mask; + u32 nentries; + u32 cached_prod; + u32 cached_cons; + struct xdp_ring *ring; + u64 invalid_descs; + u64 queue_empty_descs; + size_t ring_vmalloc_size; +}; + +struct xdp_ring { + u32 producer; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + u32 pad1; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + u32 consumer; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + u32 pad2; + u32 flags; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + u32 pad3; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct xdp_rxtx_ring { + struct xdp_ring ptrs; + struct xdp_desc desc[0]; +}; + +struct xdp_umem_ring { + struct xdp_ring ptrs; + u64 desc[0]; +}; + +struct xdp_sock; + +struct xsk_map { + struct bpf_map map; + spinlock_t lock; + atomic_t count; + struct xdp_sock *xsk_map[0]; +}; + +struct xdp_sock { + struct sock sk; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct xsk_queue *rx; + struct net_device *dev; + struct xdp_umem *umem; + struct list_head flush_node; + struct xsk_buff_pool *pool; + u16 queue_id; + bool zc; + bool sg; + enum { + XSK_READY = 0, + XSK_BOUND = 1, + XSK_UNBOUND = 2, + } state; + long: 64; + struct xsk_queue *tx; + struct list_head tx_list; + u32 tx_budget_spent; + u64 rx_dropped; + u64 rx_queue_full; + struct sk_buff *skb; + struct list_head map_list; + spinlock_t map_list_lock; + u32 max_tx_budget; + struct mutex mutex; + struct xsk_queue *fq_tmp; + struct xsk_queue *cq_tmp; +}; + +struct xsk_map_node { + struct list_head node; + struct xsk_map *map; + struct xdp_sock **map_entry; +}; + +struct mptcp_mib { + long unsigned int mibs[77]; +}; + +struct socket_alloc { + struct socket socket; + struct inode vfs_inode; + long: 64; + long: 64; +}; + +struct mptcp_rm_list { + u8 ids[8]; + u8 nr; +}; + +struct mptcp_addr_info { + u8 id; + sa_family_t family; + __be16 port; + union { + struct in_addr addr; + struct in6_addr addr6; + }; +}; + +struct mptcp_sock; + +struct mptcp_sched_ops { + int (*get_send)(struct mptcp_sock *); + int (*get_retrans)(struct mptcp_sock *); + char name[16]; + struct module *owner; + struct list_head list; + void (*init)(struct mptcp_sock *); + void (*release)(struct mptcp_sock *); + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct mptcp_pm_data { + struct mptcp_addr_info local; + struct mptcp_addr_info remote; + struct list_head anno_list; + struct list_head userspace_pm_local_addr_list; + spinlock_t lock; + union { + struct { + u8 addr_signal; + bool server_side; + bool work_pending; + bool accept_addr; + bool accept_subflow; + bool remote_deny_join_id0; + u8 add_addr_signaled; + u8 add_addr_accepted; + u8 local_addr_used; + u8 pm_type; + u8 subflows; + u8 status; + }; + struct { + u8 addr_signal; + bool server_side; + bool work_pending; + bool accept_addr; + bool accept_subflow; + bool remote_deny_join_id0; + u8 add_addr_signaled; + u8 add_addr_accepted; + u8 local_addr_used; + u8 pm_type; + u8 subflows; + u8 status; + } reset; + }; + long unsigned int id_avail_bitmap[4]; + struct mptcp_rm_list rm_list_tx; + struct mptcp_rm_list rm_list_rx; +}; + +struct mptcp_data_frag; + +struct mptcp_sock { + struct inet_connection_sock sk; + u64 local_key; + u64 remote_key; + u64 write_seq; + u64 bytes_sent; + u64 snd_nxt; + u64 bytes_received; + u64 ack_seq; + atomic64_t rcv_wnd_sent; + u64 rcv_data_fin_seq; + u64 bytes_retrans; + u64 bytes_consumed; + int snd_burst; + int old_wspace; + u64 recovery_snd_nxt; + u64 bytes_acked; + u64 snd_una; + u64 wnd_end; + u32 last_data_sent; + u32 last_data_recv; + u32 last_ack_recv; + long unsigned int timer_ival; + u32 token; + long unsigned int flags; + long unsigned int cb_flags; + bool recovery; + bool can_ack; + bool fully_established; + bool rcv_data_fin; + bool snd_data_fin_enable; + bool rcv_fastclose; + bool use_64bit_ack; + bool csum_enabled; + bool allow_infinite_fallback; + u8 pending_state; + u8 mpc_endpoint_id; + u8 recvmsg_inq: 1; + u8 cork: 1; + u8 nodelay: 1; + u8 fastopening: 1; + u8 in_accept_queue: 1; + u8 free_first: 1; + u8 rcvspace_init: 1; + u8 fastclosing: 1; + u32 notsent_lowat; + int keepalive_cnt; + int keepalive_idle; + int keepalive_intvl; + int maxseg; + struct work_struct work; + struct sk_buff *ooo_last_skb; + struct rb_root out_of_order_queue; + struct list_head conn_list; + struct list_head rtx_queue; + struct mptcp_data_frag *first_pending; + struct list_head join_list; + struct sock *first; + struct mptcp_pm_data pm; + struct mptcp_sched_ops *sched; + struct { + u32 space; + u32 copied; + u64 time; + u64 rtt_us; + } rcvq_space; + u8 scaling_ratio; + bool allow_subflows; + u32 subflow_id; + u32 setsockopt_seq; + char ca_name[16]; + spinlock_t fallback_lock; +}; + +struct mptcp_options_received { + u64 sndr_key; + u64 rcvr_key; + u64 data_ack; + u64 data_seq; + u32 subflow_seq; + u16 data_len; + __sum16 csum; + union { + struct { + u16 suboptions; + u16 use_map: 1; + u16 dsn64: 1; + u16 data_fin: 1; + u16 use_ack: 1; + u16 ack64: 1; + u16 mpc_map: 1; + u16 reset_reason: 4; + u16 reset_transient: 1; + u16 echo: 1; + u16 backup: 1; + u16 deny_join_id0: 1; + u16 __unused: 2; + }; + struct { + u16 suboptions; + u16 use_map: 1; + u16 dsn64: 1; + u16 data_fin: 1; + u16 use_ack: 1; + u16 ack64: 1; + u16 mpc_map: 1; + u16 reset_reason: 4; + u16 reset_transient: 1; + u16 echo: 1; + u16 backup: 1; + u16 deny_join_id0: 1; + u16 __unused: 2; + } status; + }; + u8 join_id; + u32 token; + u32 nonce; + u64 thmac; + u8 hmac[20]; + struct mptcp_addr_info addr; + struct mptcp_rm_list rm_list; + u64 ahmac; + u64 fail_seq; +}; + +enum mptcp_pm_type { + MPTCP_PM_TYPE_KERNEL = 0, + MPTCP_PM_TYPE_USERSPACE = 1, + __MPTCP_PM_TYPE_NR = 2, + __MPTCP_PM_TYPE_MAX = 1, +}; + +struct mptcp_pm_local { + struct mptcp_addr_info addr; + u8 flags; + int ifindex; +}; + +struct mptcp_data_frag { + struct list_head list; + u64 data_seq; + u16 data_len; + u16 offset; + u16 overhead; + u16 already_sent; + struct page *page; +}; + +struct mptcp_subflow_request_sock { + struct tcp_request_sock sk; + u16 mp_capable: 1; + u16 mp_join: 1; + u16 backup: 1; + u16 request_bkup: 1; + u16 csum_reqd: 1; + u16 allow_join_id0: 1; + u8 local_id; + u8 remote_id; + u64 local_key; + u64 idsn; + u32 token; + u32 ssn_offset; + u64 thmac; + u32 local_nonce; + u32 remote_nonce; + struct mptcp_sock *msk; + struct hlist_nulls_node token_node; +}; + +struct mptcp_delegated_action { + struct napi_struct napi; + local_lock_t bh_lock; + struct list_head head; +}; + +struct mptcp_subflow_context { + struct list_head node; + union { + struct { + long unsigned int avg_pacing_rate; + u64 local_key; + u64 remote_key; + u64 idsn; + u64 map_seq; + u64 rcv_wnd_sent; + u32 snd_isn; + u32 token; + u32 rel_write_seq; + u32 map_subflow_seq; + u32 ssn_offset; + u32 map_data_len; + __wsum map_data_csum; + u32 map_csum_len; + u32 request_mptcp: 1; + u32 request_join: 1; + u32 request_bkup: 1; + u32 mp_capable: 1; + u32 mp_join: 1; + u32 pm_notified: 1; + u32 conn_finished: 1; + u32 map_valid: 1; + u32 map_csum_reqd: 1; + u32 map_data_fin: 1; + u32 mpc_map: 1; + u32 backup: 1; + u32 send_mp_prio: 1; + u32 send_mp_fail: 1; + u32 send_fastclose: 1; + u32 send_infinite_map: 1; + u32 remote_key_valid: 1; + u32 disposable: 1; + u32 stale: 1; + u32 valid_csum_seen: 1; + u32 is_mptfo: 1; + u32 close_event_done: 1; + u32 mpc_drop: 1; + u32 __unused: 9; + bool data_avail; + bool scheduled; + bool pm_listener; + bool fully_established; + u32 remote_nonce; + u64 thmac; + u32 local_nonce; + u32 remote_token; + union { + u8 hmac[20]; + u64 iasn; + }; + s16 local_id; + u8 remote_id; + u8 reset_seen: 1; + u8 reset_transient: 1; + u8 reset_reason: 4; + u8 stale_count; + u32 subflow_id; + long int delegated_status; + long unsigned int fail_tout; + }; + struct { + long unsigned int avg_pacing_rate; + u64 local_key; + u64 remote_key; + u64 idsn; + u64 map_seq; + u64 rcv_wnd_sent; + u32 snd_isn; + u32 token; + u32 rel_write_seq; + u32 map_subflow_seq; + u32 ssn_offset; + u32 map_data_len; + __wsum map_data_csum; + u32 map_csum_len; + u32 request_mptcp: 1; + u32 request_join: 1; + u32 request_bkup: 1; + u32 mp_capable: 1; + u32 mp_join: 1; + u32 pm_notified: 1; + u32 conn_finished: 1; + u32 map_valid: 1; + u32 map_csum_reqd: 1; + u32 map_data_fin: 1; + u32 mpc_map: 1; + u32 backup: 1; + u32 send_mp_prio: 1; + u32 send_mp_fail: 1; + u32 send_fastclose: 1; + u32 send_infinite_map: 1; + u32 remote_key_valid: 1; + u32 disposable: 1; + u32 stale: 1; + u32 valid_csum_seen: 1; + u32 is_mptfo: 1; + u32 close_event_done: 1; + u32 mpc_drop: 1; + u32 __unused: 9; + bool data_avail; + bool scheduled; + bool pm_listener; + bool fully_established; + u32 remote_nonce; + u64 thmac; + u32 local_nonce; + u32 remote_token; + union { + u8 hmac[20]; + u64 iasn; + }; + s16 local_id; + u8 remote_id; + u8 reset_seen: 1; + u8 reset_transient: 1; + u8 reset_reason: 4; + u8 stale_count; + u32 subflow_id; + long int delegated_status; + long unsigned int fail_tout; + } reset; + }; + struct list_head delegated_node; + u32 setsockopt_seq; + u32 stale_rcv_tstamp; + int cached_sndbuf; + struct sock *tcp_sock; + struct sock *conn; + const struct inet_connection_sock_af_ops *icsk_af_ops; + void (*tcp_state_change)(struct sock *); + void (*tcp_error_report)(struct sock *); + struct callback_head rcu; +}; + +enum linux_mptcp_mib_field { + MPTCP_MIB_NUM = 0, + MPTCP_MIB_MPCAPABLEPASSIVE = 1, + MPTCP_MIB_MPCAPABLEACTIVE = 2, + MPTCP_MIB_MPCAPABLEACTIVEACK = 3, + MPTCP_MIB_MPCAPABLEPASSIVEACK = 4, + MPTCP_MIB_MPCAPABLEPASSIVEFALLBACK = 5, + MPTCP_MIB_MPCAPABLEACTIVEFALLBACK = 6, + MPTCP_MIB_MPCAPABLEACTIVEDROP = 7, + MPTCP_MIB_MPCAPABLEACTIVEDISABLED = 8, + MPTCP_MIB_MPCAPABLEENDPATTEMPT = 9, + MPTCP_MIB_TOKENFALLBACKINIT = 10, + MPTCP_MIB_RETRANSSEGS = 11, + MPTCP_MIB_JOINNOTOKEN = 12, + MPTCP_MIB_JOINSYNRX = 13, + MPTCP_MIB_JOINSYNBACKUPRX = 14, + MPTCP_MIB_JOINSYNACKRX = 15, + MPTCP_MIB_JOINSYNACKBACKUPRX = 16, + MPTCP_MIB_JOINSYNACKMAC = 17, + MPTCP_MIB_JOINACKRX = 18, + MPTCP_MIB_JOINACKMAC = 19, + MPTCP_MIB_JOINREJECTED = 20, + MPTCP_MIB_JOINSYNTX = 21, + MPTCP_MIB_JOINSYNTXCREATSKERR = 22, + MPTCP_MIB_JOINSYNTXBINDERR = 23, + MPTCP_MIB_JOINSYNTXCONNECTERR = 24, + MPTCP_MIB_DSSNOMATCH = 25, + MPTCP_MIB_DSSCORRUPTIONFALLBACK = 26, + MPTCP_MIB_DSSCORRUPTIONRESET = 27, + MPTCP_MIB_INFINITEMAPTX = 28, + MPTCP_MIB_INFINITEMAPRX = 29, + MPTCP_MIB_DSSTCPMISMATCH = 30, + MPTCP_MIB_DATACSUMERR = 31, + MPTCP_MIB_OFOQUEUETAIL = 32, + MPTCP_MIB_OFOQUEUE = 33, + MPTCP_MIB_OFOMERGE = 34, + MPTCP_MIB_NODSSWINDOW = 35, + MPTCP_MIB_DUPDATA = 36, + MPTCP_MIB_ADDADDR = 37, + MPTCP_MIB_ADDADDRTX = 38, + MPTCP_MIB_ADDADDRTXDROP = 39, + MPTCP_MIB_ECHOADD = 40, + MPTCP_MIB_ECHOADDTX = 41, + MPTCP_MIB_ECHOADDTXDROP = 42, + MPTCP_MIB_PORTADD = 43, + MPTCP_MIB_ADDADDRDROP = 44, + MPTCP_MIB_JOINPORTSYNRX = 45, + MPTCP_MIB_JOINPORTSYNACKRX = 46, + MPTCP_MIB_JOINPORTACKRX = 47, + MPTCP_MIB_MISMATCHPORTSYNRX = 48, + MPTCP_MIB_MISMATCHPORTACKRX = 49, + MPTCP_MIB_RMADDR = 50, + MPTCP_MIB_RMADDRDROP = 51, + MPTCP_MIB_RMADDRTX = 52, + MPTCP_MIB_RMADDRTXDROP = 53, + MPTCP_MIB_RMSUBFLOW = 54, + MPTCP_MIB_MPPRIOTX = 55, + MPTCP_MIB_MPPRIORX = 56, + MPTCP_MIB_MPFAILTX = 57, + MPTCP_MIB_MPFAILRX = 58, + MPTCP_MIB_MPFASTCLOSETX = 59, + MPTCP_MIB_MPFASTCLOSERX = 60, + MPTCP_MIB_MPRSTTX = 61, + MPTCP_MIB_MPRSTRX = 62, + MPTCP_MIB_RCVPRUNED = 63, + MPTCP_MIB_SUBFLOWSTALE = 64, + MPTCP_MIB_SUBFLOWRECOVER = 65, + MPTCP_MIB_SNDWNDSHARED = 66, + MPTCP_MIB_RCVWNDSHARED = 67, + MPTCP_MIB_RCVWNDCONFLICTUPDATE = 68, + MPTCP_MIB_RCVWNDCONFLICT = 69, + MPTCP_MIB_CURRESTAB = 70, + MPTCP_MIB_BLACKHOLE = 71, + MPTCP_MIB_MPCAPABLEDATAFALLBACK = 72, + MPTCP_MIB_MD5SIGFALLBACK = 73, + MPTCP_MIB_DSSFALLBACK = 74, + MPTCP_MIB_SIMULTCONNFALLBACK = 75, + MPTCP_MIB_FALLBACKFAILED = 76, + __MPTCP_MIB_MAX = 77, +}; + +enum mapping_status { + MAPPING_OK = 0, + MAPPING_INVALID = 1, + MAPPING_EMPTY = 2, + MAPPING_DATA_FIN = 3, + MAPPING_DUMMY = 4, + MAPPING_BAD_CSUM = 5, + MAPPING_NODSS = 6, +}; + +struct mptcp_pm_ops { + char name[16]; + struct module *owner; + struct list_head list; + void (*init)(struct mptcp_sock *); + void (*release)(struct mptcp_sock *); + long: 64; +}; + +struct mptcp_pernet { + struct ctl_table_header *ctl_table_hdr; + unsigned int add_addr_timeout; + unsigned int blackhole_timeout; + unsigned int close_timeout; + unsigned int stale_loss_cnt; + atomic_t active_disable_times; + u8 syn_retrans_before_tcp_fallback; + long unsigned int active_disable_stamp; + u8 mptcp_enabled; + u8 checksum_enabled; + u8 allow_join_initial_addr_port; + u8 pm_type; + char scheduler[16]; + char path_manager[16]; +}; + +struct mptcp_skb_cb { + u64 map_seq; + u64 end_seq; + u32 offset; + u8 has_rxtstamp; + u8 cant_coalesce; +}; + +struct join_entry { + u32 token; + u32 remote_nonce; + u32 local_nonce; + u8 join_id; + u8 local_id; + u8 backup; + u8 valid; +}; + +enum mctp_phys_binding { + MCTP_PHYS_BINDING_UNSPEC = 0, + MCTP_PHYS_BINDING_SMBUS = 1, + MCTP_PHYS_BINDING_PCIE_VDM = 2, + MCTP_PHYS_BINDING_USB = 3, + MCTP_PHYS_BINDING_KCS = 4, + MCTP_PHYS_BINDING_SERIAL = 5, + MCTP_PHYS_BINDING_I3C = 6, + MCTP_PHYS_BINDING_MMBI = 7, + MCTP_PHYS_BINDING_PCC = 8, + MCTP_PHYS_BINDING_UCIE = 9, + MCTP_PHYS_BINDING_VENDOR = 255, +}; + +struct mctp_netdev_ops; + +struct mctp_dev { + struct net_device *dev; + refcount_t refs; + unsigned int net; + enum mctp_phys_binding binding; + const struct mctp_netdev_ops *ops; + u8 *addrs; + size_t num_addrs; + spinlock_t addrs_lock; + struct callback_head rcu; +}; + +typedef __u8 mctp_eid_t; + +struct mctp_sk_key { + unsigned int net; + mctp_eid_t peer_addr; + mctp_eid_t local_addr; + __u8 tag; + struct sock *sk; + struct hlist_node hlist; + struct hlist_node sklist; + spinlock_t lock; + refcount_t refs; + struct sk_buff *reasm_head; + struct sk_buff **reasm_tailp; + bool reasm_dead; + u8 last_seq; + bool valid; + long unsigned int expiry; + long unsigned int dev_flow_state; + struct mctp_dev *dev; + bool manual_alloc; +}; + +enum mctp_neigh_source { + MCTP_NEIGH_STATIC = 0, + MCTP_NEIGH_DISCOVER = 1, +}; + +struct mctp_neigh { + struct mctp_dev *dev; + mctp_eid_t eid; + enum mctp_neigh_source source; + unsigned char ha[32]; + struct list_head list; + struct callback_head rcu; +}; + +struct mctp_netdev_ops { + void (*release_flow)(struct mctp_dev *, struct mctp_sk_key *); +}; + +enum { + TLS_NO_KEYRING = 0, + TLS_NO_PEERID = 0, + TLS_NO_CERT = 0, + TLS_NO_PRIVKEY = 0, +}; + +typedef void (*tls_done_func_t)(void *, int, key_serial_t); + +struct tls_handshake_args { + struct socket *ta_sock; + tls_done_func_t ta_done; + void *ta_data; + const char *ta_peername; + unsigned int ta_timeout_ms; + key_serial_t ta_keyring; + key_serial_t ta_my_cert; + key_serial_t ta_my_privkey; + unsigned int ta_num_peerids; + key_serial_t ta_my_peerids[5]; +}; + +enum { + TLS_ALERT_LEVEL_WARNING = 1, + TLS_ALERT_LEVEL_FATAL = 2, +}; + +enum { + TLS_ALERT_DESC_CLOSE_NOTIFY = 0, + TLS_ALERT_DESC_UNEXPECTED_MESSAGE = 10, + TLS_ALERT_DESC_BAD_RECORD_MAC = 20, + TLS_ALERT_DESC_RECORD_OVERFLOW = 22, + TLS_ALERT_DESC_HANDSHAKE_FAILURE = 40, + TLS_ALERT_DESC_BAD_CERTIFICATE = 42, + TLS_ALERT_DESC_UNSUPPORTED_CERTIFICATE = 43, + TLS_ALERT_DESC_CERTIFICATE_REVOKED = 44, + TLS_ALERT_DESC_CERTIFICATE_EXPIRED = 45, + TLS_ALERT_DESC_CERTIFICATE_UNKNOWN = 46, + TLS_ALERT_DESC_ILLEGAL_PARAMETER = 47, + TLS_ALERT_DESC_UNKNOWN_CA = 48, + TLS_ALERT_DESC_ACCESS_DENIED = 49, + TLS_ALERT_DESC_DECODE_ERROR = 50, + TLS_ALERT_DESC_DECRYPT_ERROR = 51, + TLS_ALERT_DESC_TOO_MANY_CIDS_REQUESTED = 52, + TLS_ALERT_DESC_PROTOCOL_VERSION = 70, + TLS_ALERT_DESC_INSUFFICIENT_SECURITY = 71, + TLS_ALERT_DESC_INTERNAL_ERROR = 80, + TLS_ALERT_DESC_INAPPROPRIATE_FALLBACK = 86, + TLS_ALERT_DESC_USER_CANCELED = 90, + TLS_ALERT_DESC_MISSING_EXTENSION = 109, + TLS_ALERT_DESC_UNSUPPORTED_EXTENSION = 110, + TLS_ALERT_DESC_UNRECOGNIZED_NAME = 112, + TLS_ALERT_DESC_BAD_CERTIFICATE_STATUS_RESPONSE = 113, + TLS_ALERT_DESC_UNKNOWN_PSK_IDENTITY = 115, + TLS_ALERT_DESC_CERTIFICATE_REQUIRED = 116, + TLS_ALERT_DESC_NO_APPLICATION_PROTOCOL = 120, +}; + +enum handshake_handler_class { + HANDSHAKE_HANDLER_CLASS_NONE = 0, + HANDSHAKE_HANDLER_CLASS_TLSHD = 1, + HANDSHAKE_HANDLER_CLASS_MAX = 2, +}; + +enum handshake_msg_type { + HANDSHAKE_MSG_TYPE_UNSPEC = 0, + HANDSHAKE_MSG_TYPE_CLIENTHELLO = 1, + HANDSHAKE_MSG_TYPE_SERVERHELLO = 2, +}; + +enum handshake_auth { + HANDSHAKE_AUTH_UNSPEC = 0, + HANDSHAKE_AUTH_UNAUTH = 1, + HANDSHAKE_AUTH_PSK = 2, + HANDSHAKE_AUTH_X509 = 3, +}; + +enum { + HANDSHAKE_A_X509_CERT = 1, + HANDSHAKE_A_X509_PRIVKEY = 2, + __HANDSHAKE_A_X509_MAX = 3, + HANDSHAKE_A_X509_MAX = 2, +}; + +enum { + HANDSHAKE_A_ACCEPT_SOCKFD = 1, + HANDSHAKE_A_ACCEPT_HANDLER_CLASS = 2, + HANDSHAKE_A_ACCEPT_MESSAGE_TYPE = 3, + HANDSHAKE_A_ACCEPT_TIMEOUT = 4, + HANDSHAKE_A_ACCEPT_AUTH_MODE = 5, + HANDSHAKE_A_ACCEPT_PEER_IDENTITY = 6, + HANDSHAKE_A_ACCEPT_CERTIFICATE = 7, + HANDSHAKE_A_ACCEPT_PEERNAME = 8, + HANDSHAKE_A_ACCEPT_KEYRING = 9, + __HANDSHAKE_A_ACCEPT_MAX = 10, + HANDSHAKE_A_ACCEPT_MAX = 9, +}; + +enum { + HANDSHAKE_A_DONE_STATUS = 1, + HANDSHAKE_A_DONE_SOCKFD = 2, + HANDSHAKE_A_DONE_REMOTE_AUTH = 3, + __HANDSHAKE_A_DONE_MAX = 4, + HANDSHAKE_A_DONE_MAX = 3, +}; + +struct handshake_proto; + +struct handshake_req { + struct list_head hr_list; + struct rhash_head hr_rhash; + long unsigned int hr_flags; + const struct handshake_proto *hr_proto; + struct sock *hr_sk; + void (*hr_odestruct)(struct sock *); + char hr_priv[0]; +}; + +struct handshake_proto { + int hp_handler_class; + size_t hp_privsize; + long unsigned int hp_flags; + int (*hp_accept)(struct handshake_req *, struct genl_info *, int); + void (*hp_done)(struct handshake_req *, unsigned int, struct genl_info *); + void (*hp_destroy)(struct handshake_req *); +}; + +enum hr_flags_bits { + HANDSHAKE_F_REQ_COMPLETED = 0, + HANDSHAKE_F_REQ_SESSION = 1, +}; + +enum hp_flags_bits { + HANDSHAKE_F_PROTO_NOTIFY = 0, +}; + +struct tls_handshake_req { + void (*th_consumer_done)(void *, int, key_serial_t); + void *th_consumer_data; + int th_type; + unsigned int th_timeout_ms; + int th_auth_mode; + const char *th_peername; + key_serial_t th_keyring; + key_serial_t th_certificate; + key_serial_t th_privkey; + unsigned int th_num_peerids; + key_serial_t th_peerid[5]; +}; + +struct pcibios_fwaddrmap { + struct list_head list; + struct pci_dev *dev; + resource_size_t fw_addr[17]; +}; + +struct pci_check_idx_range { + int start; + int end; +}; + +struct pci_root_res { + struct list_head list; + struct resource res; +}; + +struct pci_root_info { + struct list_head list; + char name[12]; + struct list_head resources; + struct resource busn; + int node; + int link; +}; + +struct amd_nb_bus_dev_range { + u8 bus; + u8 dev_base; + u8 dev_limit; +}; + +struct amd_hostbridge { + u32 bus; + u32 slot; + u32 device; +}; + +struct saved_msr { + bool valid; + struct msr_info info; +}; + +struct saved_msrs { + unsigned int num; + struct saved_msr *array; +}; + +struct saved_context { + struct pt_regs regs; + u16 ds; + u16 es; + u16 fs; + u16 gs; + long unsigned int kernelmode_gs_base; + long unsigned int usermode_gs_base; + long unsigned int fs_base; + long unsigned int cr0; + long unsigned int cr2; + long unsigned int cr3; + long unsigned int cr4; + u64 misc_enable; + struct saved_msrs saved_msrs; + long unsigned int efer; + u16 gdt_pad; + struct desc_ptr gdt_desc; + u16 idt_pad; + struct desc_ptr idt; + u16 ldt; + u16 tss; + long unsigned int tr; + long unsigned int safety; + long unsigned int return_address; + bool misc_enable_saved; +} __attribute__((packed)); + +typedef int (*pm_cpu_match_t)(const struct x86_cpu_id *); + +struct msr_enumeration { + u32 msr_no; + u32 feature; +}; + +enum cpio_fields { + C_MAGIC = 0, + C_INO = 1, + C_MODE = 2, + C_UID = 3, + C_GID = 4, + C_NLINK = 5, + C_MTIME = 6, + C_FILESIZE = 7, + C_MAJ = 8, + C_MIN = 9, + C_RMAJ = 10, + C_RMIN = 11, + C_NAMESIZE = 12, + C_CHKSUM = 13, + C_NFIELDS = 14, +}; + +typedef __be32 fdt32_t; + +typedef __be64 fdt64_t; + +struct fdt_header { + fdt32_t magic; + fdt32_t totalsize; + fdt32_t off_dt_struct; + fdt32_t off_dt_strings; + fdt32_t off_mem_rsvmap; + fdt32_t version; + fdt32_t last_comp_version; + fdt32_t boot_cpuid_phys; + fdt32_t size_dt_strings; + fdt32_t size_dt_struct; +}; + +struct fdt_reserve_entry { + fdt64_t address; + fdt64_t size; +}; + +struct fdt_node_header { + fdt32_t tag; + char name[0]; +}; + +struct fdt_property { + fdt32_t tag; + fdt32_t len; + fdt32_t nameoff; + char data[0]; +}; + +enum { + ASSUME_PERFECT = 255, + ASSUME_VALID_DTB = 1, + ASSUME_VALID_INPUT = 2, + ASSUME_LATEST = 4, + ASSUME_NO_ROLLBACK = 8, + ASSUME_LIBFDT_ORDER = 16, + ASSUME_LIBFDT_FLAWLESS = 32, +}; + +struct subprocess_info { + struct work_struct work; + struct completion *complete; + const char *path; + char **argv; + char **envp; + int wait; + int retval; + int (*init)(struct subprocess_info *, struct cred *); + void (*cleanup)(struct subprocess_info *); + void *data; +}; + +struct uevent_sock { + struct list_head list; + struct sock *sk; +}; + +typedef struct { + long unsigned int key[2]; +} hsiphash_key_t; + +struct word_at_a_time { + const long unsigned int one_bits; + const long unsigned int high_bits; +}; + +struct tm { + int tm_sec; + int tm_min; + int tm_hour; + int tm_mday; + int tm_mon; + long int tm_year; + int tm_wday; + int tm_yday; +}; + +struct clk { + struct clk_core *core; + struct device *dev; + const char *dev_id; + const char *con_id; + long unsigned int min_rate; + long unsigned int max_rate; + unsigned int exclusive_count; + struct hlist_node clks_node; +}; + +enum hash_pointers_policy { + HASH_PTR_AUTO = 0, + HASH_PTR_ALWAYS = 1, + HASH_PTR_NEVER = 2, +}; + +enum format_state { + FORMAT_STATE_NONE = 0, + FORMAT_STATE_NUM = 1, + FORMAT_STATE_WIDTH = 2, + FORMAT_STATE_PRECISION = 3, + FORMAT_STATE_CHAR = 4, + FORMAT_STATE_STR = 5, + FORMAT_STATE_PTR = 6, + FORMAT_STATE_PERCENT_CHAR = 7, + FORMAT_STATE_INVALID = 8, +}; + +struct printf_spec { + unsigned char flags; + unsigned char base; + short int precision; + int field_width; +}; + +struct page_flags_fields { + int width; + int shift; + int mask; + const struct printf_spec *spec; + const char *name; +}; + +struct fmt { + const char *str; + unsigned char state; + unsigned char size; +}; + +struct format_state___2 { + unsigned char state; + unsigned char size; + unsigned char flags_or_double_size; + unsigned char base; +}; + +typedef int (*initcall_t)(void); + +typedef int initcall_entry_t; + +struct trace_event_raw_initcall_level { + struct trace_entry ent; + u32 __data_loc_level; + char __data[0]; +}; + +struct trace_event_raw_initcall_start { + struct trace_entry ent; + initcall_t func; + char __data[0]; +}; + +struct trace_event_raw_initcall_finish { + struct trace_entry ent; + initcall_t func; + int ret; + char __data[0]; +}; + +struct trace_event_data_offsets_initcall_level { + u32 level; + const void *level_ptr_; +}; + +struct trace_event_data_offsets_initcall_start {}; + +struct trace_event_data_offsets_initcall_finish {}; + +typedef void (*btf_trace_initcall_level)(void *, const char *); + +typedef void (*btf_trace_initcall_start)(void *, initcall_t); + +typedef void (*btf_trace_initcall_finish)(void *, initcall_t, int); + +struct blacklist_entry { + struct list_head next; + char *buf; +}; + +struct perf_amd_iommu { + struct list_head list; + struct pmu pmu; + struct amd_iommu *iommu; + char name[24]; + u8 max_banks; + u8 max_counters; + u64 cntr_assign_mask; + raw_spinlock_t lock; +}; + +struct amd_iommu_event_desc { + struct device_attribute attr; + const char *event; +}; + +enum P4_EVENTS { + P4_EVENT_TC_DELIVER_MODE = 0, + P4_EVENT_BPU_FETCH_REQUEST = 1, + P4_EVENT_ITLB_REFERENCE = 2, + P4_EVENT_MEMORY_CANCEL = 3, + P4_EVENT_MEMORY_COMPLETE = 4, + P4_EVENT_LOAD_PORT_REPLAY = 5, + P4_EVENT_STORE_PORT_REPLAY = 6, + P4_EVENT_MOB_LOAD_REPLAY = 7, + P4_EVENT_PAGE_WALK_TYPE = 8, + P4_EVENT_BSQ_CACHE_REFERENCE = 9, + P4_EVENT_IOQ_ALLOCATION = 10, + P4_EVENT_IOQ_ACTIVE_ENTRIES = 11, + P4_EVENT_FSB_DATA_ACTIVITY = 12, + P4_EVENT_BSQ_ALLOCATION = 13, + P4_EVENT_BSQ_ACTIVE_ENTRIES = 14, + P4_EVENT_SSE_INPUT_ASSIST = 15, + P4_EVENT_PACKED_SP_UOP = 16, + P4_EVENT_PACKED_DP_UOP = 17, + P4_EVENT_SCALAR_SP_UOP = 18, + P4_EVENT_SCALAR_DP_UOP = 19, + P4_EVENT_64BIT_MMX_UOP = 20, + P4_EVENT_128BIT_MMX_UOP = 21, + P4_EVENT_X87_FP_UOP = 22, + P4_EVENT_TC_MISC = 23, + P4_EVENT_GLOBAL_POWER_EVENTS = 24, + P4_EVENT_TC_MS_XFER = 25, + P4_EVENT_UOP_QUEUE_WRITES = 26, + P4_EVENT_RETIRED_MISPRED_BRANCH_TYPE = 27, + P4_EVENT_RETIRED_BRANCH_TYPE = 28, + P4_EVENT_RESOURCE_STALL = 29, + P4_EVENT_WC_BUFFER = 30, + P4_EVENT_B2B_CYCLES = 31, + P4_EVENT_BNR = 32, + P4_EVENT_SNOOP = 33, + P4_EVENT_RESPONSE = 34, + P4_EVENT_FRONT_END_EVENT = 35, + P4_EVENT_EXECUTION_EVENT = 36, + P4_EVENT_REPLAY_EVENT = 37, + P4_EVENT_INSTR_RETIRED = 38, + P4_EVENT_UOPS_RETIRED = 39, + P4_EVENT_UOP_TYPE = 40, + P4_EVENT_BRANCH_RETIRED = 41, + P4_EVENT_MISPRED_BRANCH_RETIRED = 42, + P4_EVENT_X87_ASSIST = 43, + P4_EVENT_MACHINE_CLEAR = 44, + P4_EVENT_INSTR_COMPLETED = 45, +}; + +enum P4_EVENT_OPCODES { + P4_EVENT_TC_DELIVER_MODE_OPCODE = 257, + P4_EVENT_BPU_FETCH_REQUEST_OPCODE = 768, + P4_EVENT_ITLB_REFERENCE_OPCODE = 6147, + P4_EVENT_MEMORY_CANCEL_OPCODE = 517, + P4_EVENT_MEMORY_COMPLETE_OPCODE = 2050, + P4_EVENT_LOAD_PORT_REPLAY_OPCODE = 1026, + P4_EVENT_STORE_PORT_REPLAY_OPCODE = 1282, + P4_EVENT_MOB_LOAD_REPLAY_OPCODE = 770, + P4_EVENT_PAGE_WALK_TYPE_OPCODE = 260, + P4_EVENT_BSQ_CACHE_REFERENCE_OPCODE = 3079, + P4_EVENT_IOQ_ALLOCATION_OPCODE = 774, + P4_EVENT_IOQ_ACTIVE_ENTRIES_OPCODE = 6662, + P4_EVENT_FSB_DATA_ACTIVITY_OPCODE = 5894, + P4_EVENT_BSQ_ALLOCATION_OPCODE = 1287, + P4_EVENT_BSQ_ACTIVE_ENTRIES_OPCODE = 1543, + P4_EVENT_SSE_INPUT_ASSIST_OPCODE = 13313, + P4_EVENT_PACKED_SP_UOP_OPCODE = 2049, + P4_EVENT_PACKED_DP_UOP_OPCODE = 3073, + P4_EVENT_SCALAR_SP_UOP_OPCODE = 2561, + P4_EVENT_SCALAR_DP_UOP_OPCODE = 3585, + P4_EVENT_64BIT_MMX_UOP_OPCODE = 513, + P4_EVENT_128BIT_MMX_UOP_OPCODE = 6657, + P4_EVENT_X87_FP_UOP_OPCODE = 1025, + P4_EVENT_TC_MISC_OPCODE = 1537, + P4_EVENT_GLOBAL_POWER_EVENTS_OPCODE = 4870, + P4_EVENT_TC_MS_XFER_OPCODE = 1280, + P4_EVENT_UOP_QUEUE_WRITES_OPCODE = 2304, + P4_EVENT_RETIRED_MISPRED_BRANCH_TYPE_OPCODE = 1282, + P4_EVENT_RETIRED_BRANCH_TYPE_OPCODE = 1026, + P4_EVENT_RESOURCE_STALL_OPCODE = 257, + P4_EVENT_WC_BUFFER_OPCODE = 1285, + P4_EVENT_B2B_CYCLES_OPCODE = 5635, + P4_EVENT_BNR_OPCODE = 2051, + P4_EVENT_SNOOP_OPCODE = 1539, + P4_EVENT_RESPONSE_OPCODE = 1027, + P4_EVENT_FRONT_END_EVENT_OPCODE = 2053, + P4_EVENT_EXECUTION_EVENT_OPCODE = 3077, + P4_EVENT_REPLAY_EVENT_OPCODE = 2309, + P4_EVENT_INSTR_RETIRED_OPCODE = 516, + P4_EVENT_UOPS_RETIRED_OPCODE = 260, + P4_EVENT_UOP_TYPE_OPCODE = 514, + P4_EVENT_BRANCH_RETIRED_OPCODE = 1541, + P4_EVENT_MISPRED_BRANCH_RETIRED_OPCODE = 772, + P4_EVENT_X87_ASSIST_OPCODE = 773, + P4_EVENT_MACHINE_CLEAR_OPCODE = 517, + P4_EVENT_INSTR_COMPLETED_OPCODE = 1796, +}; + +enum P4_ESCR_EMASKS { + P4_EVENT_TC_DELIVER_MODE__DD = 512, + P4_EVENT_TC_DELIVER_MODE__DB = 1024, + P4_EVENT_TC_DELIVER_MODE__DI = 2048, + P4_EVENT_TC_DELIVER_MODE__BD = 4096, + P4_EVENT_TC_DELIVER_MODE__BB = 8192, + P4_EVENT_TC_DELIVER_MODE__BI = 16384, + P4_EVENT_TC_DELIVER_MODE__ID = 32768, + P4_EVENT_BPU_FETCH_REQUEST__TCMISS = 512, + P4_EVENT_ITLB_REFERENCE__HIT = 512, + P4_EVENT_ITLB_REFERENCE__MISS = 1024, + P4_EVENT_ITLB_REFERENCE__HIT_UK = 2048, + P4_EVENT_MEMORY_CANCEL__ST_RB_FULL = 2048, + P4_EVENT_MEMORY_CANCEL__64K_CONF = 4096, + P4_EVENT_MEMORY_COMPLETE__LSC = 512, + P4_EVENT_MEMORY_COMPLETE__SSC = 1024, + P4_EVENT_LOAD_PORT_REPLAY__SPLIT_LD = 1024, + P4_EVENT_STORE_PORT_REPLAY__SPLIT_ST = 1024, + P4_EVENT_MOB_LOAD_REPLAY__NO_STA = 1024, + P4_EVENT_MOB_LOAD_REPLAY__NO_STD = 4096, + P4_EVENT_MOB_LOAD_REPLAY__PARTIAL_DATA = 8192, + P4_EVENT_MOB_LOAD_REPLAY__UNALGN_ADDR = 16384, + P4_EVENT_PAGE_WALK_TYPE__DTMISS = 512, + P4_EVENT_PAGE_WALK_TYPE__ITMISS = 1024, + P4_EVENT_BSQ_CACHE_REFERENCE__RD_2ndL_HITS = 512, + P4_EVENT_BSQ_CACHE_REFERENCE__RD_2ndL_HITE = 1024, + P4_EVENT_BSQ_CACHE_REFERENCE__RD_2ndL_HITM = 2048, + P4_EVENT_BSQ_CACHE_REFERENCE__RD_3rdL_HITS = 4096, + P4_EVENT_BSQ_CACHE_REFERENCE__RD_3rdL_HITE = 8192, + P4_EVENT_BSQ_CACHE_REFERENCE__RD_3rdL_HITM = 16384, + P4_EVENT_BSQ_CACHE_REFERENCE__RD_2ndL_MISS = 131072, + P4_EVENT_BSQ_CACHE_REFERENCE__RD_3rdL_MISS = 262144, + P4_EVENT_BSQ_CACHE_REFERENCE__WR_2ndL_MISS = 524288, + P4_EVENT_IOQ_ALLOCATION__DEFAULT = 512, + P4_EVENT_IOQ_ALLOCATION__ALL_READ = 16384, + P4_EVENT_IOQ_ALLOCATION__ALL_WRITE = 32768, + P4_EVENT_IOQ_ALLOCATION__MEM_UC = 65536, + P4_EVENT_IOQ_ALLOCATION__MEM_WC = 131072, + P4_EVENT_IOQ_ALLOCATION__MEM_WT = 262144, + P4_EVENT_IOQ_ALLOCATION__MEM_WP = 524288, + P4_EVENT_IOQ_ALLOCATION__MEM_WB = 1048576, + P4_EVENT_IOQ_ALLOCATION__OWN = 4194304, + P4_EVENT_IOQ_ALLOCATION__OTHER = 8388608, + P4_EVENT_IOQ_ALLOCATION__PREFETCH = 16777216, + P4_EVENT_IOQ_ACTIVE_ENTRIES__DEFAULT = 512, + P4_EVENT_IOQ_ACTIVE_ENTRIES__ALL_READ = 16384, + P4_EVENT_IOQ_ACTIVE_ENTRIES__ALL_WRITE = 32768, + P4_EVENT_IOQ_ACTIVE_ENTRIES__MEM_UC = 65536, + P4_EVENT_IOQ_ACTIVE_ENTRIES__MEM_WC = 131072, + P4_EVENT_IOQ_ACTIVE_ENTRIES__MEM_WT = 262144, + P4_EVENT_IOQ_ACTIVE_ENTRIES__MEM_WP = 524288, + P4_EVENT_IOQ_ACTIVE_ENTRIES__MEM_WB = 1048576, + P4_EVENT_IOQ_ACTIVE_ENTRIES__OWN = 4194304, + P4_EVENT_IOQ_ACTIVE_ENTRIES__OTHER = 8388608, + P4_EVENT_IOQ_ACTIVE_ENTRIES__PREFETCH = 16777216, + P4_EVENT_FSB_DATA_ACTIVITY__DRDY_DRV = 512, + P4_EVENT_FSB_DATA_ACTIVITY__DRDY_OWN = 1024, + P4_EVENT_FSB_DATA_ACTIVITY__DRDY_OTHER = 2048, + P4_EVENT_FSB_DATA_ACTIVITY__DBSY_DRV = 4096, + P4_EVENT_FSB_DATA_ACTIVITY__DBSY_OWN = 8192, + P4_EVENT_FSB_DATA_ACTIVITY__DBSY_OTHER = 16384, + P4_EVENT_BSQ_ALLOCATION__REQ_TYPE0 = 512, + P4_EVENT_BSQ_ALLOCATION__REQ_TYPE1 = 1024, + P4_EVENT_BSQ_ALLOCATION__REQ_LEN0 = 2048, + P4_EVENT_BSQ_ALLOCATION__REQ_LEN1 = 4096, + P4_EVENT_BSQ_ALLOCATION__REQ_IO_TYPE = 16384, + P4_EVENT_BSQ_ALLOCATION__REQ_LOCK_TYPE = 32768, + P4_EVENT_BSQ_ALLOCATION__REQ_CACHE_TYPE = 65536, + P4_EVENT_BSQ_ALLOCATION__REQ_SPLIT_TYPE = 131072, + P4_EVENT_BSQ_ALLOCATION__REQ_DEM_TYPE = 262144, + P4_EVENT_BSQ_ALLOCATION__REQ_ORD_TYPE = 524288, + P4_EVENT_BSQ_ALLOCATION__MEM_TYPE0 = 1048576, + P4_EVENT_BSQ_ALLOCATION__MEM_TYPE1 = 2097152, + P4_EVENT_BSQ_ALLOCATION__MEM_TYPE2 = 4194304, + P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_TYPE0 = 512, + P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_TYPE1 = 1024, + P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_LEN0 = 2048, + P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_LEN1 = 4096, + P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_IO_TYPE = 16384, + P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_LOCK_TYPE = 32768, + P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_CACHE_TYPE = 65536, + P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_SPLIT_TYPE = 131072, + P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_DEM_TYPE = 262144, + P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_ORD_TYPE = 524288, + P4_EVENT_BSQ_ACTIVE_ENTRIES__MEM_TYPE0 = 1048576, + P4_EVENT_BSQ_ACTIVE_ENTRIES__MEM_TYPE1 = 2097152, + P4_EVENT_BSQ_ACTIVE_ENTRIES__MEM_TYPE2 = 4194304, + P4_EVENT_SSE_INPUT_ASSIST__ALL = 16777216, + P4_EVENT_PACKED_SP_UOP__ALL = 16777216, + P4_EVENT_PACKED_DP_UOP__ALL = 16777216, + P4_EVENT_SCALAR_SP_UOP__ALL = 16777216, + P4_EVENT_SCALAR_DP_UOP__ALL = 16777216, + P4_EVENT_64BIT_MMX_UOP__ALL = 16777216, + P4_EVENT_128BIT_MMX_UOP__ALL = 16777216, + P4_EVENT_X87_FP_UOP__ALL = 16777216, + P4_EVENT_TC_MISC__FLUSH = 8192, + P4_EVENT_GLOBAL_POWER_EVENTS__RUNNING = 512, + P4_EVENT_TC_MS_XFER__CISC = 512, + P4_EVENT_UOP_QUEUE_WRITES__FROM_TC_BUILD = 512, + P4_EVENT_UOP_QUEUE_WRITES__FROM_TC_DELIVER = 1024, + P4_EVENT_UOP_QUEUE_WRITES__FROM_ROM = 2048, + P4_EVENT_RETIRED_MISPRED_BRANCH_TYPE__CONDITIONAL = 1024, + P4_EVENT_RETIRED_MISPRED_BRANCH_TYPE__CALL = 2048, + P4_EVENT_RETIRED_MISPRED_BRANCH_TYPE__RETURN = 4096, + P4_EVENT_RETIRED_MISPRED_BRANCH_TYPE__INDIRECT = 8192, + P4_EVENT_RETIRED_BRANCH_TYPE__CONDITIONAL = 1024, + P4_EVENT_RETIRED_BRANCH_TYPE__CALL = 2048, + P4_EVENT_RETIRED_BRANCH_TYPE__RETURN = 4096, + P4_EVENT_RETIRED_BRANCH_TYPE__INDIRECT = 8192, + P4_EVENT_RESOURCE_STALL__SBFULL = 16384, + P4_EVENT_WC_BUFFER__WCB_EVICTS = 512, + P4_EVENT_WC_BUFFER__WCB_FULL_EVICTS = 1024, + P4_EVENT_FRONT_END_EVENT__NBOGUS = 512, + P4_EVENT_FRONT_END_EVENT__BOGUS = 1024, + P4_EVENT_EXECUTION_EVENT__NBOGUS0 = 512, + P4_EVENT_EXECUTION_EVENT__NBOGUS1 = 1024, + P4_EVENT_EXECUTION_EVENT__NBOGUS2 = 2048, + P4_EVENT_EXECUTION_EVENT__NBOGUS3 = 4096, + P4_EVENT_EXECUTION_EVENT__BOGUS0 = 8192, + P4_EVENT_EXECUTION_EVENT__BOGUS1 = 16384, + P4_EVENT_EXECUTION_EVENT__BOGUS2 = 32768, + P4_EVENT_EXECUTION_EVENT__BOGUS3 = 65536, + P4_EVENT_REPLAY_EVENT__NBOGUS = 512, + P4_EVENT_REPLAY_EVENT__BOGUS = 1024, + P4_EVENT_INSTR_RETIRED__NBOGUSNTAG = 512, + P4_EVENT_INSTR_RETIRED__NBOGUSTAG = 1024, + P4_EVENT_INSTR_RETIRED__BOGUSNTAG = 2048, + P4_EVENT_INSTR_RETIRED__BOGUSTAG = 4096, + P4_EVENT_UOPS_RETIRED__NBOGUS = 512, + P4_EVENT_UOPS_RETIRED__BOGUS = 1024, + P4_EVENT_UOP_TYPE__TAGLOADS = 1024, + P4_EVENT_UOP_TYPE__TAGSTORES = 2048, + P4_EVENT_BRANCH_RETIRED__MMNP = 512, + P4_EVENT_BRANCH_RETIRED__MMNM = 1024, + P4_EVENT_BRANCH_RETIRED__MMTP = 2048, + P4_EVENT_BRANCH_RETIRED__MMTM = 4096, + P4_EVENT_MISPRED_BRANCH_RETIRED__NBOGUS = 512, + P4_EVENT_X87_ASSIST__FPSU = 512, + P4_EVENT_X87_ASSIST__FPSO = 1024, + P4_EVENT_X87_ASSIST__POAO = 2048, + P4_EVENT_X87_ASSIST__POAU = 4096, + P4_EVENT_X87_ASSIST__PREA = 8192, + P4_EVENT_MACHINE_CLEAR__CLEAR = 512, + P4_EVENT_MACHINE_CLEAR__MOCLEAR = 1024, + P4_EVENT_MACHINE_CLEAR__SMCLEAR = 2048, + P4_EVENT_INSTR_COMPLETED__NBOGUS = 512, + P4_EVENT_INSTR_COMPLETED__BOGUS = 1024, +}; + +enum P4_PEBS_METRIC { + P4_PEBS_METRIC__none = 0, + P4_PEBS_METRIC__1stl_cache_load_miss_retired = 1, + P4_PEBS_METRIC__2ndl_cache_load_miss_retired = 2, + P4_PEBS_METRIC__dtlb_load_miss_retired = 3, + P4_PEBS_METRIC__dtlb_store_miss_retired = 4, + P4_PEBS_METRIC__dtlb_all_miss_retired = 5, + P4_PEBS_METRIC__tagged_mispred_branch = 6, + P4_PEBS_METRIC__mob_load_replay_retired = 7, + P4_PEBS_METRIC__split_load_retired = 8, + P4_PEBS_METRIC__split_store_retired = 9, + P4_PEBS_METRIC__max = 10, +}; + +struct p4_event_bind { + unsigned int opcode; + unsigned int escr_msr[2]; + unsigned int escr_emask; + unsigned int shared; + signed char cntr[6]; +}; + +struct p4_pebs_bind { + unsigned int metric_pebs; + unsigned int metric_vert; +}; + +struct p4_event_alias { + u64 original; + u64 alternative; +}; + +enum { + EXTRA_REG_NHMEX_M_FILTER = 0, + EXTRA_REG_NHMEX_M_DSP = 1, + EXTRA_REG_NHMEX_M_ISS = 2, + EXTRA_REG_NHMEX_M_MAP = 3, + EXTRA_REG_NHMEX_M_MSC_THR = 4, + EXTRA_REG_NHMEX_M_PGT = 5, + EXTRA_REG_NHMEX_M_PLD = 6, + EXTRA_REG_NHMEX_M_ZDP_CTL_FVC = 7, +}; + +enum uncore_access_type { + UNCORE_ACCESS_MSR = 0, + UNCORE_ACCESS_MMIO = 1, + UNCORE_ACCESS_PCI = 2, + UNCORE_ACCESS_MAX = 3, +}; + +struct uncore_global_discovery { + union { + u64 table1; + struct { + u64 type: 8; + u64 stride: 8; + u64 max_units: 10; + u64 __reserved_1: 36; + u64 access_type: 2; + }; + }; + u64 ctl; + union { + u64 table3; + struct { + u64 status_offset: 8; + u64 num_status: 16; + u64 __reserved_2: 40; + }; + }; +}; + +struct uncore_unit_discovery { + union { + u64 table1; + struct { + u64 num_regs: 8; + u64 ctl_offset: 8; + u64 bit_width: 8; + u64 ctr_offset: 8; + u64 status_offset: 8; + u64 __reserved_1: 22; + u64 access_type: 2; + }; + }; + u64 ctl; + union { + u64 table3; + struct { + u64 box_type: 16; + u64 box_id: 16; + u64 __reserved_2: 32; + }; + }; +}; + +struct intel_uncore_discovery_type { + struct rb_node node; + enum uncore_access_type access_type; + struct rb_root units; + u16 type; + u8 num_counters; + u8 counter_width; + u8 ctl_offset; + u8 ctr_offset; + u16 num_units; +}; + +struct hv_guest_mapping_flush { + u64 address_space; + u64 flags; +}; + +union hv_gpa_page_range { + u64 address_space; + struct { + u64 additional_pages: 11; + u64 largepage: 1; + u64 basepfn: 52; + } page; + struct { + u64 reserved: 12; + u64 page_size: 1; + u64 reserved1: 8; + u64 base_large_pfn: 43; + }; +}; + +struct hv_guest_mapping_flush_list { + u64 address_space; + u64 flags; + union hv_gpa_page_range gpa_list[510]; +}; + +typedef int (*hyperv_fill_flush_list_func)(struct hv_guest_mapping_flush_list *, void *); + +enum x86_hardware_subarch { + X86_SUBARCH_PC = 0, + X86_SUBARCH_LGUEST = 1, + X86_SUBARCH_XEN = 2, + X86_SUBARCH_INTEL_MID = 3, + X86_SUBARCH_CE4100 = 4, + X86_NR_SUBARCHS = 5, +}; + +struct kernel_vm86_regs { + struct pt_regs pt; + short unsigned int es; + short unsigned int __esh; + short unsigned int ds; + short unsigned int __dsh; + short unsigned int fs; + short unsigned int __fsh; + short unsigned int gs; + short unsigned int __gsh; +}; + +struct trace_event_raw_x86_irq_vector { + struct trace_entry ent; + int vector; + char __data[0]; +}; + +struct trace_event_raw_vector_config { + struct trace_entry ent; + unsigned int irq; + unsigned int vector; + unsigned int cpu; + unsigned int apicdest; + char __data[0]; +}; + +struct trace_event_raw_vector_mod { + struct trace_entry ent; + unsigned int irq; + unsigned int vector; + unsigned int cpu; + unsigned int prev_vector; + unsigned int prev_cpu; + char __data[0]; +}; + +struct trace_event_raw_vector_reserve { + struct trace_entry ent; + unsigned int irq; + int ret; + char __data[0]; +}; + +struct trace_event_raw_vector_alloc { + struct trace_entry ent; + unsigned int irq; + unsigned int vector; + bool reserved; + int ret; + char __data[0]; +}; + +struct trace_event_raw_vector_alloc_managed { + struct trace_entry ent; + unsigned int irq; + unsigned int vector; + int ret; + char __data[0]; +}; + +struct trace_event_raw_vector_activate { + struct trace_entry ent; + unsigned int irq; + bool is_managed; + bool can_reserve; + bool reserve; + char __data[0]; +}; + +struct trace_event_raw_vector_teardown { + struct trace_entry ent; + unsigned int irq; + bool is_managed; + bool has_reserved; + char __data[0]; +}; + +struct trace_event_raw_vector_setup { + struct trace_entry ent; + unsigned int irq; + bool is_legacy; + int ret; + char __data[0]; +}; + +struct trace_event_raw_vector_free_moved { + struct trace_entry ent; + unsigned int irq; + unsigned int cpu; + unsigned int vector; + bool is_managed; + char __data[0]; +}; + +struct trace_event_data_offsets_x86_irq_vector {}; + +struct trace_event_data_offsets_vector_config {}; + +struct trace_event_data_offsets_vector_mod {}; + +struct trace_event_data_offsets_vector_reserve {}; + +struct trace_event_data_offsets_vector_alloc {}; + +struct trace_event_data_offsets_vector_alloc_managed {}; + +struct trace_event_data_offsets_vector_activate {}; + +struct trace_event_data_offsets_vector_teardown {}; + +struct trace_event_data_offsets_vector_setup {}; + +struct trace_event_data_offsets_vector_free_moved {}; + +typedef void (*btf_trace_local_timer_entry)(void *, int); + +typedef void (*btf_trace_local_timer_exit)(void *, int); + +typedef void (*btf_trace_spurious_apic_entry)(void *, int); + +typedef void (*btf_trace_spurious_apic_exit)(void *, int); + +typedef void (*btf_trace_error_apic_entry)(void *, int); + +typedef void (*btf_trace_error_apic_exit)(void *, int); + +typedef void (*btf_trace_x86_platform_ipi_entry)(void *, int); + +typedef void (*btf_trace_x86_platform_ipi_exit)(void *, int); + +typedef void (*btf_trace_irq_work_entry)(void *, int); + +typedef void (*btf_trace_irq_work_exit)(void *, int); + +typedef void (*btf_trace_reschedule_entry)(void *, int); + +typedef void (*btf_trace_reschedule_exit)(void *, int); + +typedef void (*btf_trace_call_function_entry)(void *, int); + +typedef void (*btf_trace_call_function_exit)(void *, int); + +typedef void (*btf_trace_call_function_single_entry)(void *, int); + +typedef void (*btf_trace_call_function_single_exit)(void *, int); + +typedef void (*btf_trace_threshold_apic_entry)(void *, int); + +typedef void (*btf_trace_threshold_apic_exit)(void *, int); + +typedef void (*btf_trace_deferred_error_apic_entry)(void *, int); + +typedef void (*btf_trace_deferred_error_apic_exit)(void *, int); + +typedef void (*btf_trace_thermal_apic_entry)(void *, int); + +typedef void (*btf_trace_thermal_apic_exit)(void *, int); + +typedef void (*btf_trace_vector_config)(void *, unsigned int, unsigned int, unsigned int, unsigned int); + +typedef void (*btf_trace_vector_update)(void *, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int); + +typedef void (*btf_trace_vector_clear)(void *, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int); + +typedef void (*btf_trace_vector_reserve_managed)(void *, unsigned int, int); + +typedef void (*btf_trace_vector_reserve)(void *, unsigned int, int); + +typedef void (*btf_trace_vector_alloc)(void *, unsigned int, unsigned int, bool, int); + +typedef void (*btf_trace_vector_alloc_managed)(void *, unsigned int, unsigned int, int); + +typedef void (*btf_trace_vector_activate)(void *, unsigned int, bool, bool, bool); + +typedef void (*btf_trace_vector_deactivate)(void *, unsigned int, bool, bool, bool); + +typedef void (*btf_trace_vector_teardown)(void *, unsigned int, bool, bool); + +typedef void (*btf_trace_vector_setup)(void *, unsigned int, bool, int); + +typedef void (*btf_trace_vector_free_moved)(void *, unsigned int, unsigned int, unsigned int, bool); + +struct ima_setup_data { + __u64 addr; + __u64 size; +}; + +struct kho_data { + __u64 fdt_addr; + __u64 fdt_size; + __u64 scratch_addr; + __u64 scratch_size; +}; + +struct edd { + unsigned int mbr_signature[16]; + struct edd_info edd_info[6]; + unsigned char mbr_signature_nr; + unsigned char edd_info_nr; +}; + +enum jump_label_type { + JUMP_LABEL_NOP = 0, + JUMP_LABEL_JMP = 1, +}; + +struct jump_label_patch { + const void *code; + int size; +}; + +enum { + NONE_FORCE_HPET_RESUME = 0, + OLD_ICH_FORCE_HPET_RESUME = 1, + ICH_FORCE_HPET_RESUME = 2, + VT8237_FORCE_HPET_RESUME = 3, + NVIDIA_FORCE_HPET_RESUME = 4, + ATI_FORCE_HPET_RESUME = 5, +}; + +struct user_desc { + unsigned int entry_number; + unsigned int base_addr; + unsigned int limit; + unsigned int seg_32bit: 1; + unsigned int contents: 2; + unsigned int read_exec_only: 1; + unsigned int limit_in_pages: 1; + unsigned int seg_not_present: 1; + unsigned int useable: 1; + unsigned int lm: 1; +}; + +struct fork_frame { + struct inactive_task_frame frame; + struct pt_regs regs; +}; + +struct ssb_state { + struct ssb_state *shared_state; + raw_spinlock_t lock; + unsigned int disable_state; + long unsigned int local_state; +}; + +struct stack_frame_user { + const void *next_fp; + long unsigned int ret_addr; +}; + +struct cpuid_bit { + u16 feature; + u8 reg; + u8 bit; + u32 level; + u32 sub_leaf; +}; + +struct x86_topology_system { + unsigned int dom_shifts[7]; + unsigned int dom_size[7]; +}; + +struct aperfmperf { + seqcount_t seq; + long unsigned int last_update; + u64 acnt; + u64 mcnt; + u64 aperf; + u64 mperf; +}; + +struct arch_hybrid_cpu_scale { + long unsigned int capacity; + long unsigned int freq_ratio; +}; + +struct leaf_0x2_reg { + int: 31; + u32 invalid: 1; +}; + +union leaf_0x2_regs { + struct leaf_0x2_reg reg[4]; + u32 regv[4]; + u8 desc[16]; +}; + +enum _cache_table_type { + CACHE_L1_INST = 1, + CACHE_L1_DATA = 2, + CACHE_L2 = 3, + CACHE_L3 = 4, +} __attribute__((mode(byte))); + +enum _tlb_table_type { + TLB_INST_4K = 5, + TLB_INST_4M = 6, + TLB_INST_2M_4M = 7, + TLB_INST_ALL = 8, + TLB_DATA_4K = 9, + TLB_DATA_4M = 10, + TLB_DATA_2M_4M = 11, + TLB_DATA_4K_4M = 12, + TLB_DATA_1G = 13, + TLB_DATA_1G_2M_4M = 14, + TLB_DATA0_4K = 15, + TLB_DATA0_4M = 16, + TLB_DATA0_2M_4M = 17, + STLB_4K = 18, + STLB_4K_2M = 19, +} __attribute__((mode(byte))); + +struct leaf_0x2_table { + union { + enum _cache_table_type c_type; + enum _tlb_table_type t_type; + }; + union { + short int c_size; + short int entries; + }; +}; + +struct sku_microcode { + u32 vfm; + u8 stepping; + u32 microcode; +}; + +enum smca_bank_types { + SMCA_LS = 0, + SMCA_LS_V2 = 1, + SMCA_IF = 2, + SMCA_L2_CACHE = 3, + SMCA_DE = 4, + SMCA_RESERVED = 5, + SMCA_EX = 6, + SMCA_FP = 7, + SMCA_L3_CACHE = 8, + SMCA_CS = 9, + SMCA_CS_V2 = 10, + SMCA_PIE = 11, + SMCA_UMC = 12, + SMCA_UMC_V2 = 13, + SMCA_MA_LLC = 14, + SMCA_PB = 15, + SMCA_PSP = 16, + SMCA_PSP_V2 = 17, + SMCA_SMU = 18, + SMCA_SMU_V2 = 19, + SMCA_MP5 = 20, + SMCA_MPDMA = 21, + SMCA_NBIO = 22, + SMCA_PCIE = 23, + SMCA_PCIE_V2 = 24, + SMCA_XGMI_PCS = 25, + SMCA_NBIF = 26, + SMCA_SHUB = 27, + SMCA_SATA = 28, + SMCA_USB = 29, + SMCA_USR_DP = 30, + SMCA_USR_CP = 31, + SMCA_GMI_PCS = 32, + SMCA_XGMI_PHY = 33, + SMCA_WAFL_PHY = 34, + SMCA_GMI_PHY = 35, + N_SMCA_BANK_TYPES = 36, +}; + +struct mce_bank { + u64 ctl; + __u64 init: 1; + __u64 lsb_in_status: 1; + __u64 __reserved_1: 62; +}; + +enum mca_msr { + MCA_CTL = 0, + MCA_STATUS = 1, + MCA_ADDR = 2, + MCA_MISC = 3, +}; + +struct smca_hwid { + unsigned int bank_type; + u32 hwid_mcatype; +}; + +struct smca_bank { + const struct smca_hwid *hwid; + u32 id; + u8 sysfs_id; +}; + +struct threshold_block { + unsigned int block; + unsigned int bank; + unsigned int cpu; + u32 address; + bool interrupt_enable; + bool interrupt_capable; + u16 threshold_limit; + struct kobject kobj; + struct list_head miscj; +}; + +struct threshold_bank { + struct kobject *kobj; + struct threshold_block *blocks; +}; + +struct thresh_restart { + struct threshold_block *b; + int set_lvt_off; + int lvt_off; + u16 old_limit; +}; + +struct threshold_attr { + struct attribute attr; + ssize_t (*show)(struct threshold_block *, char *); + ssize_t (*store)(struct threshold_block *, const char *, size_t); +}; + +struct mce_log_buffer { + char signature[12]; + unsigned int len; + unsigned int next; + unsigned int flags; + unsigned int recordlen; + struct mce entry[0]; +}; + +enum mce_notifier_prios { + MCE_PRIO_LOWEST = 0, + MCE_PRIO_MCELOG = 1, + MCE_PRIO_EDAC = 2, + MCE_PRIO_NFIT = 3, + MCE_PRIO_EXTLOG = 4, + MCE_PRIO_UC = 5, + MCE_PRIO_EARLY = 6, + MCE_PRIO_CEC = 7, + MCE_PRIO_HIGHEST = 7, +}; + +struct mtrr_state_type { + struct mtrr_var_range var_ranges[256]; + mtrr_type fixed_ranges[88]; + unsigned char enabled; + bool have_fixed; + mtrr_type def_type; +}; + +struct mtrr_ops { + u32 var_regs; + void (*set)(unsigned int, long unsigned int, long unsigned int, mtrr_type); + void (*get)(unsigned int, long unsigned int *, long unsigned int *, mtrr_type *); + int (*get_free_region)(long unsigned int, long unsigned int, int); + int (*validate_add_page)(long unsigned int, long unsigned int, unsigned int); + int (*have_wrcomb)(void); +}; + +struct var_mtrr_range_state { + long unsigned int base_pfn; + long unsigned int size_pfn; + mtrr_type type; +}; + +struct var_mtrr_state { + long unsigned int range_startk; + long unsigned int range_sizek; + long unsigned int chunk_sizek; + long unsigned int gran_sizek; + unsigned int reg; +}; + +struct mtrr_cleanup_result { + long unsigned int gran_sizek; + long unsigned int chunk_sizek; + long unsigned int lose_cover_sizek; + unsigned int num_reg; + int bad; +}; + +struct cpu_cacheinfo { + struct cacheinfo *info_list; + unsigned int per_cpu_data_slice_size; + unsigned int num_levels; + unsigned int num_leaves; + bool cpu_map_populated; + bool early_ci_levels; +}; + +struct arch_mbm_state { + u64 chunks; + u64 prev_msr; +}; + +struct rdt_hw_mon_domain { + struct rdt_mon_domain d_resctrl; + struct arch_mbm_state *arch_mbm_total; + struct arch_mbm_state *arch_mbm_local; +}; + +union cpuid_0x10_1_eax { + struct { + unsigned int cbm_len: 5; + } split; + unsigned int full; +}; + +union cpuid_0x10_3_eax { + struct { + unsigned int max_delay: 12; + } split; + unsigned int full; +}; + +union cpuid_0x10_x_ecx { + struct { + unsigned int reserved: 3; + unsigned int noncont: 1; + } split; + unsigned int full; +}; + +union cpuid_0x10_x_edx { + struct { + unsigned int cos_max: 16; + } split; + unsigned int full; +}; + +enum { + RDT_FLAG_CMT = 0, + RDT_FLAG_MBM_TOTAL = 1, + RDT_FLAG_MBM_LOCAL = 2, + RDT_FLAG_L3_CAT = 3, + RDT_FLAG_L3_CDP = 4, + RDT_FLAG_L2_CAT = 5, + RDT_FLAG_L2_CDP = 6, + RDT_FLAG_MBA = 7, + RDT_FLAG_SMBA = 8, + RDT_FLAG_BMEC = 9, +}; + +struct rdt_options { + char *name; + int flag; + bool force_off; + bool force_on; +}; + +struct mbm_correction_factor_table { + u32 rmidthreshold; + u64 cf; +}; + +struct sgx_encl_mm { + struct sgx_encl *encl; + struct mm_struct *mm; + struct list_head list; + struct mmu_notifier mmu_notifier; +}; + +struct sgx_backing { + struct page *contents; + struct page *pcmd; + long unsigned int pcmd_offset; +}; + +struct vmware_steal_time { + union { + u64 clock; + struct { + u32 clock_low; + u32 clock_high; + }; + }; + u64 reserved[7]; +}; + +struct mpc_intsrc { + unsigned char type; + unsigned char irqtype; + short unsigned int irqflag; + unsigned char srcbus; + unsigned char srcbusirq; + unsigned char dstapic; + unsigned char dstirq; +}; + +enum mp_irq_source_types { + mp_INT = 0, + mp_NMI = 1, + mp_SMI = 2, + mp_ExtINT = 3, +}; + +struct acpi_table_boot { + struct acpi_table_header header; + u8 cmos_index; + u8 reserved[3]; +}; + +struct acpi_table_hpet { + struct acpi_table_header header; + u32 id; + struct acpi_generic_address address; + u8 sequence; + u16 minimum_tick; + u8 flags; +} __attribute__((packed)); + +struct acpi_table_madt { + struct acpi_table_header header; + u32 address; + u32 flags; +}; + +enum acpi_madt_type { + ACPI_MADT_TYPE_LOCAL_APIC = 0, + ACPI_MADT_TYPE_IO_APIC = 1, + ACPI_MADT_TYPE_INTERRUPT_OVERRIDE = 2, + ACPI_MADT_TYPE_NMI_SOURCE = 3, + ACPI_MADT_TYPE_LOCAL_APIC_NMI = 4, + ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE = 5, + ACPI_MADT_TYPE_IO_SAPIC = 6, + ACPI_MADT_TYPE_LOCAL_SAPIC = 7, + ACPI_MADT_TYPE_INTERRUPT_SOURCE = 8, + ACPI_MADT_TYPE_LOCAL_X2APIC = 9, + ACPI_MADT_TYPE_LOCAL_X2APIC_NMI = 10, + ACPI_MADT_TYPE_GENERIC_INTERRUPT = 11, + ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR = 12, + ACPI_MADT_TYPE_GENERIC_MSI_FRAME = 13, + ACPI_MADT_TYPE_GENERIC_REDISTRIBUTOR = 14, + ACPI_MADT_TYPE_GENERIC_TRANSLATOR = 15, + ACPI_MADT_TYPE_MULTIPROC_WAKEUP = 16, + ACPI_MADT_TYPE_CORE_PIC = 17, + ACPI_MADT_TYPE_LIO_PIC = 18, + ACPI_MADT_TYPE_HT_PIC = 19, + ACPI_MADT_TYPE_EIO_PIC = 20, + ACPI_MADT_TYPE_MSI_PIC = 21, + ACPI_MADT_TYPE_BIO_PIC = 22, + ACPI_MADT_TYPE_LPC_PIC = 23, + ACPI_MADT_TYPE_RINTC = 24, + ACPI_MADT_TYPE_IMSIC = 25, + ACPI_MADT_TYPE_APLIC = 26, + ACPI_MADT_TYPE_PLIC = 27, + ACPI_MADT_TYPE_RESERVED = 28, + ACPI_MADT_TYPE_OEM_RESERVED = 128, +}; + +struct acpi_madt_local_apic { + struct acpi_subtable_header header; + u8 processor_id; + u8 id; + u32 lapic_flags; +}; + +struct acpi_madt_io_apic { + struct acpi_subtable_header header; + u8 id; + u8 reserved; + u32 address; + u32 global_irq_base; +}; + +struct acpi_madt_interrupt_override { + struct acpi_subtable_header header; + u8 bus; + u8 source_irq; + u32 global_irq; + u16 inti_flags; +} __attribute__((packed)); + +struct acpi_madt_nmi_source { + struct acpi_subtable_header header; + u16 inti_flags; + u32 global_irq; +}; + +struct acpi_madt_local_apic_nmi { + struct acpi_subtable_header header; + u8 processor_id; + u16 inti_flags; + u8 lint; +} __attribute__((packed)); + +struct acpi_madt_local_apic_override { + struct acpi_subtable_header header; + u16 reserved; + u64 address; +} __attribute__((packed)); + +struct acpi_madt_local_sapic { + struct acpi_subtable_header header; + u8 processor_id; + u8 id; + u8 eid; + u8 reserved[3]; + u32 lapic_flags; + u32 uid; + char uid_string[0]; +}; + +struct acpi_madt_local_x2apic { + struct acpi_subtable_header header; + u16 reserved; + u32 local_apic_id; + u32 lapic_flags; + u32 uid; +}; + +struct acpi_madt_local_x2apic_nmi { + struct acpi_subtable_header header; + u16 inti_flags; + u32 uid; + u8 lint; + u8 reserved[3]; +}; + +typedef int (*acpi_tbl_table_handler)(struct acpi_table_header *); + +enum ioapic_domain_type { + IOAPIC_DOMAIN_INVALID = 0, + IOAPIC_DOMAIN_LEGACY = 1, + IOAPIC_DOMAIN_STRICT = 2, + IOAPIC_DOMAIN_DYNAMIC = 3, +}; + +struct ioapic_domain_cfg { + enum ioapic_domain_type type; + const struct irq_domain_ops *ops; + struct device_node *dev; +}; + +struct intel_early_ops { + resource_size_t (*stolen_size)(int, int, int); + resource_size_t (*stolen_base)(int, int, int, resource_size_t); +}; + +struct chipset { + u32 vendor; + u32 device; + u32 class; + u32 class_mask; + u32 flags; + void (*f)(int, int, int); +}; + +enum cpuhp_smt_control { + CPU_SMT_ENABLED = 0, + CPU_SMT_DISABLED = 1, + CPU_SMT_FORCE_DISABLED = 2, + CPU_SMT_NOT_SUPPORTED = 3, + CPU_SMT_NOT_IMPLEMENTED = 4, +}; + +enum { + X86_IRQ_ALLOC_LEGACY = 1, +}; + +struct apic_chip_data { + struct irq_cfg hw_irq_cfg; + unsigned int vector; + unsigned int prev_vector; + unsigned int cpu; + unsigned int prev_cpu; + unsigned int irq; + struct hlist_node clist; + unsigned int move_in_progress: 1; + unsigned int is_managed: 1; + unsigned int can_reserve: 1; + unsigned int has_reserved: 1; +}; + +struct vector_cleanup { + struct hlist_head head; + struct timer_list timer; +}; + +typedef int (*arch_set_vga_state_t)(struct pci_dev *, bool, unsigned int, u32); + +struct uvyh_gr0_gam_gr_config_s { + long unsigned int rsvd_0_9: 10; + long unsigned int subspace: 1; + long unsigned int rsvd_11_63: 53; +}; + +struct uv5h_gr0_gam_gr_config_s { + long unsigned int rsvd_0_9: 10; + long unsigned int subspace: 1; + long unsigned int rsvd_11_63: 53; +}; + +struct uv4h_gr0_gam_gr_config_s { + long unsigned int rsvd_0_9: 10; + long unsigned int subspace: 1; + long unsigned int rsvd_11_63: 53; +}; + +struct uv3h_gr0_gam_gr_config_s { + long unsigned int m_skt: 6; + long unsigned int undef_6_9: 4; + long unsigned int subspace: 1; + long unsigned int reserved: 53; +}; + +struct uv2h_gr0_gam_gr_config_s { + long unsigned int n_gr: 4; + long unsigned int reserved: 60; +}; + +union uvyh_gr0_gam_gr_config_u { + long unsigned int v; + struct uvyh_gr0_gam_gr_config_s sy; + struct uv5h_gr0_gam_gr_config_s s5; + struct uv4h_gr0_gam_gr_config_s s4; + struct uv3h_gr0_gam_gr_config_s s3; + struct uv2h_gr0_gam_gr_config_s s2; +}; + +struct uvh_node_id_s { + long unsigned int force1: 1; + long unsigned int manufacturer: 11; + long unsigned int part_number: 16; + long unsigned int revision: 4; + long unsigned int rsvd_32_63: 32; +}; + +struct uvxh_node_id_s { + long unsigned int force1: 1; + long unsigned int manufacturer: 11; + long unsigned int part_number: 16; + long unsigned int revision: 4; + long unsigned int node_id: 15; + long unsigned int rsvd_47_49: 3; + long unsigned int nodes_per_bit: 7; + long unsigned int ni_port: 5; + long unsigned int rsvd_62_63: 2; +}; + +struct uvyh_node_id_s { + long unsigned int force1: 1; + long unsigned int manufacturer: 11; + long unsigned int part_number: 16; + long unsigned int revision: 4; + long unsigned int node_id: 7; + long unsigned int rsvd_39_56: 18; + long unsigned int ni_port: 6; + long unsigned int rsvd_63: 1; +}; + +struct uv5h_node_id_s { + long unsigned int force1: 1; + long unsigned int manufacturer: 11; + long unsigned int part_number: 16; + long unsigned int revision: 4; + long unsigned int node_id: 7; + long unsigned int rsvd_39_56: 18; + long unsigned int ni_port: 6; + long unsigned int rsvd_63: 1; +}; + +struct uv4h_node_id_s { + long unsigned int force1: 1; + long unsigned int manufacturer: 11; + long unsigned int part_number: 16; + long unsigned int revision: 4; + long unsigned int node_id: 15; + long unsigned int rsvd_47: 1; + long unsigned int router_select: 1; + long unsigned int rsvd_49: 1; + long unsigned int nodes_per_bit: 7; + long unsigned int ni_port: 5; + long unsigned int rsvd_62_63: 2; +}; + +struct uv3h_node_id_s { + long unsigned int force1: 1; + long unsigned int manufacturer: 11; + long unsigned int part_number: 16; + long unsigned int revision: 4; + long unsigned int node_id: 15; + long unsigned int rsvd_47: 1; + long unsigned int router_select: 1; + long unsigned int rsvd_49: 1; + long unsigned int nodes_per_bit: 7; + long unsigned int ni_port: 5; + long unsigned int rsvd_62_63: 2; +}; + +struct uv2h_node_id_s { + long unsigned int force1: 1; + long unsigned int manufacturer: 11; + long unsigned int part_number: 16; + long unsigned int revision: 4; + long unsigned int node_id: 15; + long unsigned int rsvd_47_49: 3; + long unsigned int nodes_per_bit: 7; + long unsigned int ni_port: 5; + long unsigned int rsvd_62_63: 2; +}; + +union uvh_node_id_u { + long unsigned int v; + struct uvh_node_id_s s; + struct uvxh_node_id_s sx; + struct uvyh_node_id_s sy; + struct uv5h_node_id_s s5; + struct uv4h_node_id_s s4; + struct uv3h_node_id_s s3; + struct uv2h_node_id_s s2; +}; + +struct uvh_rh10_gam_addr_map_config_s { + long unsigned int undef_0_5: 6; + long unsigned int n_skt: 3; + long unsigned int undef_9_11: 3; + long unsigned int ls_enable: 1; + long unsigned int undef_13_15: 3; + long unsigned int mk_tme_keyid_bits: 4; + long unsigned int rsvd_20_63: 44; +}; + +struct uvyh_rh10_gam_addr_map_config_s { + long unsigned int undef_0_5: 6; + long unsigned int n_skt: 3; + long unsigned int undef_9_11: 3; + long unsigned int ls_enable: 1; + long unsigned int undef_13_15: 3; + long unsigned int mk_tme_keyid_bits: 4; + long unsigned int rsvd_20_63: 44; +}; + +struct uv5h_rh10_gam_addr_map_config_s { + long unsigned int undef_0_5: 6; + long unsigned int n_skt: 3; + long unsigned int undef_9_11: 3; + long unsigned int ls_enable: 1; + long unsigned int undef_13_15: 3; + long unsigned int mk_tme_keyid_bits: 4; +}; + +union uvh_rh10_gam_addr_map_config_u { + long unsigned int v; + struct uvh_rh10_gam_addr_map_config_s s; + struct uvyh_rh10_gam_addr_map_config_s sy; + struct uv5h_rh10_gam_addr_map_config_s s5; +}; + +struct uvh_rh10_gam_mmioh_overlay_config0_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 26; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int undef_62: 1; + long unsigned int enable: 1; +}; + +struct uvyh_rh10_gam_mmioh_overlay_config0_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 26; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int undef_62: 1; + long unsigned int enable: 1; +}; + +struct uv5h_rh10_gam_mmioh_overlay_config0_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 26; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int undef_62: 1; + long unsigned int enable: 1; +}; + +union uvh_rh10_gam_mmioh_overlay_config0_u { + long unsigned int v; + struct uvh_rh10_gam_mmioh_overlay_config0_s s; + struct uvyh_rh10_gam_mmioh_overlay_config0_s sy; + struct uv5h_rh10_gam_mmioh_overlay_config0_s s5; +}; + +struct uvh_rh10_gam_mmioh_overlay_config1_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 26; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int undef_62: 1; + long unsigned int enable: 1; +}; + +struct uvyh_rh10_gam_mmioh_overlay_config1_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 26; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int undef_62: 1; + long unsigned int enable: 1; +}; + +struct uv5h_rh10_gam_mmioh_overlay_config1_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 26; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int undef_62: 1; + long unsigned int enable: 1; +}; + +union uvh_rh10_gam_mmioh_overlay_config1_u { + long unsigned int v; + struct uvh_rh10_gam_mmioh_overlay_config1_s s; + struct uvyh_rh10_gam_mmioh_overlay_config1_s sy; + struct uv5h_rh10_gam_mmioh_overlay_config1_s s5; +}; + +struct uvh_rh10_gam_mmr_overlay_config_s { + long unsigned int undef_0_24: 25; + long unsigned int base: 27; + long unsigned int undef_52_62: 11; + long unsigned int enable: 1; +}; + +struct uvyh_rh10_gam_mmr_overlay_config_s { + long unsigned int undef_0_24: 25; + long unsigned int base: 27; + long unsigned int undef_52_62: 11; + long unsigned int enable: 1; +}; + +struct uv5h_rh10_gam_mmr_overlay_config_s { + long unsigned int undef_0_24: 25; + long unsigned int base: 27; + long unsigned int undef_52_62: 11; + long unsigned int enable: 1; +}; + +union uvh_rh10_gam_mmr_overlay_config_u { + long unsigned int v; + struct uvh_rh10_gam_mmr_overlay_config_s s; + struct uvyh_rh10_gam_mmr_overlay_config_s sy; + struct uv5h_rh10_gam_mmr_overlay_config_s s5; +}; + +struct uvh_rh_gam_addr_map_config_s { + long unsigned int rsvd_0_5: 6; + long unsigned int n_skt: 4; + long unsigned int rsvd_10_63: 54; +}; + +struct uvxh_rh_gam_addr_map_config_s { + long unsigned int rsvd_0_5: 6; + long unsigned int n_skt: 4; + long unsigned int rsvd_10_63: 54; +}; + +struct uv4h_rh_gam_addr_map_config_s { + long unsigned int rsvd_0_5: 6; + long unsigned int n_skt: 4; + long unsigned int rsvd_10_63: 54; +}; + +struct uv3h_rh_gam_addr_map_config_s { + long unsigned int m_skt: 6; + long unsigned int n_skt: 4; + long unsigned int rsvd_10_63: 54; +}; + +struct uv2h_rh_gam_addr_map_config_s { + long unsigned int m_skt: 6; + long unsigned int n_skt: 4; + long unsigned int rsvd_10_63: 54; +}; + +union uvh_rh_gam_addr_map_config_u { + long unsigned int v; + struct uvh_rh_gam_addr_map_config_s s; + struct uvxh_rh_gam_addr_map_config_s sx; + struct uv4h_rh_gam_addr_map_config_s s4; + struct uv3h_rh_gam_addr_map_config_s s3; + struct uv2h_rh_gam_addr_map_config_s s2; +}; + +struct uvh_rh_gam_alias_2_overlay_config_s { + long unsigned int rsvd_0_23: 24; + long unsigned int base: 8; + long unsigned int rsvd_32_47: 16; + long unsigned int m_alias: 5; + long unsigned int rsvd_53_62: 10; + long unsigned int enable: 1; +}; + +struct uvxh_rh_gam_alias_2_overlay_config_s { + long unsigned int rsvd_0_23: 24; + long unsigned int base: 8; + long unsigned int rsvd_32_47: 16; + long unsigned int m_alias: 5; + long unsigned int rsvd_53_62: 10; + long unsigned int enable: 1; +}; + +struct uv4h_rh_gam_alias_2_overlay_config_s { + long unsigned int rsvd_0_23: 24; + long unsigned int base: 8; + long unsigned int rsvd_32_47: 16; + long unsigned int m_alias: 5; + long unsigned int rsvd_53_62: 10; + long unsigned int enable: 1; +}; + +struct uv3h_rh_gam_alias_2_overlay_config_s { + long unsigned int rsvd_0_23: 24; + long unsigned int base: 8; + long unsigned int rsvd_32_47: 16; + long unsigned int m_alias: 5; + long unsigned int rsvd_53_62: 10; + long unsigned int enable: 1; +}; + +struct uv2h_rh_gam_alias_2_overlay_config_s { + long unsigned int rsvd_0_23: 24; + long unsigned int base: 8; + long unsigned int rsvd_32_47: 16; + long unsigned int m_alias: 5; + long unsigned int rsvd_53_62: 10; + long unsigned int enable: 1; +}; + +union uvh_rh_gam_alias_2_overlay_config_u { + long unsigned int v; + struct uvh_rh_gam_alias_2_overlay_config_s s; + struct uvxh_rh_gam_alias_2_overlay_config_s sx; + struct uv4h_rh_gam_alias_2_overlay_config_s s4; + struct uv3h_rh_gam_alias_2_overlay_config_s s3; + struct uv2h_rh_gam_alias_2_overlay_config_s s2; +}; + +struct uvh_rh_gam_alias_2_redirect_config_s { + long unsigned int rsvd_0_23: 24; + long unsigned int dest_base: 22; + long unsigned int rsvd_46_63: 18; +}; + +struct uvxh_rh_gam_alias_2_redirect_config_s { + long unsigned int rsvd_0_23: 24; + long unsigned int dest_base: 22; + long unsigned int rsvd_46_63: 18; +}; + +struct uv4h_rh_gam_alias_2_redirect_config_s { + long unsigned int rsvd_0_23: 24; + long unsigned int dest_base: 22; + long unsigned int rsvd_46_63: 18; +}; + +struct uv3h_rh_gam_alias_2_redirect_config_s { + long unsigned int rsvd_0_23: 24; + long unsigned int dest_base: 22; + long unsigned int rsvd_46_63: 18; +}; + +struct uv2h_rh_gam_alias_2_redirect_config_s { + long unsigned int rsvd_0_23: 24; + long unsigned int dest_base: 22; + long unsigned int rsvd_46_63: 18; +}; + +union uvh_rh_gam_alias_2_redirect_config_u { + long unsigned int v; + struct uvh_rh_gam_alias_2_redirect_config_s s; + struct uvxh_rh_gam_alias_2_redirect_config_s sx; + struct uv4h_rh_gam_alias_2_redirect_config_s s4; + struct uv3h_rh_gam_alias_2_redirect_config_s s3; + struct uv2h_rh_gam_alias_2_redirect_config_s s2; +}; + +struct uvh_rh_gam_gru_overlay_config_s { + long unsigned int rsvd_0_45: 46; + long unsigned int rsvd_46_51: 6; + long unsigned int n_gru: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + +struct uvxh_rh_gam_gru_overlay_config_s { + long unsigned int rsvd_0_45: 46; + long unsigned int rsvd_46_51: 6; + long unsigned int n_gru: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + +struct uv4ah_rh_gam_gru_overlay_config_s { + long unsigned int rsvd_0_24: 25; + long unsigned int undef_25: 1; + long unsigned int base: 26; + long unsigned int n_gru: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + +struct uv4h_rh_gam_gru_overlay_config_s { + long unsigned int rsvd_0_24: 25; + long unsigned int undef_25: 1; + long unsigned int base: 20; + long unsigned int rsvd_46_51: 6; + long unsigned int n_gru: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + +struct uv3h_rh_gam_gru_overlay_config_s { + long unsigned int rsvd_0_27: 28; + long unsigned int base: 18; + long unsigned int rsvd_46_51: 6; + long unsigned int n_gru: 4; + long unsigned int rsvd_56_61: 6; + long unsigned int mode: 1; + long unsigned int enable: 1; +}; + +struct uv2h_rh_gam_gru_overlay_config_s { + long unsigned int rsvd_0_27: 28; + long unsigned int base: 18; + long unsigned int rsvd_46_51: 6; + long unsigned int n_gru: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + +union uvh_rh_gam_gru_overlay_config_u { + long unsigned int v; + struct uvh_rh_gam_gru_overlay_config_s s; + struct uvxh_rh_gam_gru_overlay_config_s sx; + struct uv4ah_rh_gam_gru_overlay_config_s s4a; + struct uv4h_rh_gam_gru_overlay_config_s s4; + struct uv3h_rh_gam_gru_overlay_config_s s3; + struct uv2h_rh_gam_gru_overlay_config_s s2; +}; + +struct uvh_rh_gam_mmioh_overlay_config_s { + long unsigned int rsvd_0_26: 27; + long unsigned int base: 19; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + +struct uvxh_rh_gam_mmioh_overlay_config_s { + long unsigned int rsvd_0_26: 27; + long unsigned int base: 19; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + +struct uv2h_rh_gam_mmioh_overlay_config_s { + long unsigned int rsvd_0_26: 27; + long unsigned int base: 19; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + +union uvh_rh_gam_mmioh_overlay_config_u { + long unsigned int v; + struct uvh_rh_gam_mmioh_overlay_config_s s; + struct uvxh_rh_gam_mmioh_overlay_config_s sx; + struct uv2h_rh_gam_mmioh_overlay_config_s s2; +}; + +struct uvh_rh_gam_mmioh_overlay_config0_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + +struct uvxh_rh_gam_mmioh_overlay_config0_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + +struct uv4ah_rh_gam_mmioh_overlay_config0_mmr_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 26; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int undef_62: 1; + long unsigned int enable: 1; +}; + +struct uv4h_rh_gam_mmioh_overlay_config0_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + +struct uv3h_rh_gam_mmioh_overlay_config0_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + +union uvh_rh_gam_mmioh_overlay_config0_u { + long unsigned int v; + struct uvh_rh_gam_mmioh_overlay_config0_s s; + struct uvxh_rh_gam_mmioh_overlay_config0_s sx; + struct uv4ah_rh_gam_mmioh_overlay_config0_mmr_s s4a; + struct uv4h_rh_gam_mmioh_overlay_config0_s s4; + struct uv3h_rh_gam_mmioh_overlay_config0_s s3; +}; + +struct uvh_rh_gam_mmioh_overlay_config1_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + +struct uvxh_rh_gam_mmioh_overlay_config1_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + +struct uv4ah_rh_gam_mmioh_overlay_config1_mmr_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 26; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int undef_62: 1; + long unsigned int enable: 1; +}; + +struct uv4h_rh_gam_mmioh_overlay_config1_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + +struct uv3h_rh_gam_mmioh_overlay_config1_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; + long unsigned int m_io: 6; + long unsigned int n_io: 4; + long unsigned int rsvd_56_62: 7; + long unsigned int enable: 1; +}; + +union uvh_rh_gam_mmioh_overlay_config1_u { + long unsigned int v; + struct uvh_rh_gam_mmioh_overlay_config1_s s; + struct uvxh_rh_gam_mmioh_overlay_config1_s sx; + struct uv4ah_rh_gam_mmioh_overlay_config1_mmr_s s4a; + struct uv4h_rh_gam_mmioh_overlay_config1_s s4; + struct uv3h_rh_gam_mmioh_overlay_config1_s s3; +}; + +struct uvh_rh_gam_mmr_overlay_config_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; + long unsigned int rsvd_46_62: 17; + long unsigned int enable: 1; +}; + +struct uvxh_rh_gam_mmr_overlay_config_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; + long unsigned int rsvd_46_62: 17; + long unsigned int enable: 1; +}; + +struct uv4h_rh_gam_mmr_overlay_config_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; + long unsigned int rsvd_46_62: 17; + long unsigned int enable: 1; +}; + +struct uv3h_rh_gam_mmr_overlay_config_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; + long unsigned int rsvd_46_62: 17; + long unsigned int enable: 1; +}; + +struct uv2h_rh_gam_mmr_overlay_config_s { + long unsigned int rsvd_0_25: 26; + long unsigned int base: 20; + long unsigned int rsvd_46_62: 17; + long unsigned int enable: 1; +}; + +union uvh_rh_gam_mmr_overlay_config_u { + long unsigned int v; + struct uvh_rh_gam_mmr_overlay_config_s s; + struct uvxh_rh_gam_mmr_overlay_config_s sx; + struct uv4h_rh_gam_mmr_overlay_config_s s4; + struct uv3h_rh_gam_mmr_overlay_config_s s3; + struct uv2h_rh_gam_mmr_overlay_config_s s2; +}; + +enum uv_system_type { + UV_NONE = 0, + UV_LEGACY_APIC = 1, + UV_X2APIC = 2, +}; + +struct uv_gam_parameters { + u64 mmr_base; + u64 gru_base; + u8 mmr_shift; + u8 gru_shift; + u8 gpa_shift; + u8 unused1; +}; + +struct uv_gam_range_entry { + char type; + char unused1; + u16 nasid; + u16 sockid; + u16 pnode; + u32 unused2; + u32 limit; +}; + +struct uv_arch_type_entry { + char archtype[8]; +}; + +enum { + BIOS_FREQ_BASE_PLATFORM = 0, + BIOS_FREQ_BASE_INTERVAL_TIMER = 1, + BIOS_FREQ_BASE_REALTIME_CLOCK = 2, +}; + +struct uvh_apicid_s { + long unsigned int local_apic_mask: 24; + long unsigned int local_apic_shift: 5; + long unsigned int unused1: 3; + long unsigned int pnode_mask: 24; + long unsigned int pnode_shift: 5; + long unsigned int unused2: 3; +}; + +union uvh_apicid { + long unsigned int v; + struct uvh_apicid_s s; +}; + +enum map_type { + map_wb = 0, + map_uc = 1, +}; + +enum mmioh_arch { + UV2_MMIOH = -1, + UVY_MMIOH0 = 0, + UVY_MMIOH1 = 1, + UVX_MMIOH0 = 2, + UVX_MMIOH1 = 3, +}; + +struct mn { + unsigned char m_val; + unsigned char n_val; + unsigned char m_shift; + unsigned char n_lshift; +}; + +typedef __s64 Elf64_Sxword; + +struct elf64_rela { + Elf64_Addr r_offset; + Elf64_Xword r_info; + Elf64_Sxword r_addend; +}; + +typedef struct elf64_rela Elf64_Rela; + +typedef long unsigned int relocate_kernel_fn(long unsigned int, long unsigned int, long unsigned int, unsigned int); + +struct init_pgtable_data { + struct x86_mapping_info *info; + pgd_t *level4p; +}; + +struct callthunk_sites { + s32 *call_start; + s32 *call_end; +}; + +struct amd_northbridge_info { + u16 num; + u64 flags; + struct amd_northbridge *nb; +}; + +struct pvclock_wall_clock { + u32 version; + u32 sec; + u32 nsec; +}; + +struct pci_mmcfg_region { + struct list_head list; + struct resource res; + u64 address; + char *virt; + u16 segment; + u8 start_bus; + u8 end_bus; + char name[30]; +}; + +struct jailhouse_setup_data { + struct { + __u16 version; + __u16 compatible_version; + } hdr; + struct { + __u16 pm_timer_address; + __u16 num_cpus; + __u64 pci_mmconfig_base; + __u32 tsc_khz; + __u32 apic_khz; + __u8 standard_ioapic; + __u8 cpu_ids[255]; + } __attribute__((packed)) v1; + struct { + __u32 flags; + } v2; +}; + +enum auditsc_class_t { + AUDITSC_NATIVE = 0, + AUDITSC_COMPAT = 1, + AUDITSC_OPEN = 2, + AUDITSC_OPENAT = 3, + AUDITSC_SOCKETCALL = 4, + AUDITSC_EXECVE = 5, + AUDITSC_OPENAT2 = 6, + AUDITSC_NVALS = 7, +}; + +struct agp_kern_info { + struct agp_version version; + struct pci_dev *device; + enum chipset_type chipset; + long unsigned int mode; + long unsigned int aper_base; + size_t aper_size; + int max_memory; + int current_memory; + bool cant_use_aperture; + long unsigned int page_mask; + const struct vm_operations_struct *vm_ops; +}; + +enum kcore_type { + KCORE_TEXT = 0, + KCORE_VMALLOC = 1, + KCORE_RAM = 2, + KCORE_VMEMMAP = 3, + KCORE_USER = 4, +}; + +struct kcore_list { + struct list_head list; + long unsigned int addr; + size_t size; + int type; +}; + +enum bootmem_type { + MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE = 1, + SECTION_INFO = 1, + MIX_SECTION_INFO = 2, + NODE_INFO = 3, + MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE = 3, +}; + +struct exception_stacks { + char DF_stack_guard[0]; + char DF_stack[8192]; + char NMI_stack_guard[0]; + char NMI_stack[8192]; + char DB_stack_guard[0]; + char DB_stack[8192]; + char MCE_stack_guard[0]; + char MCE_stack[8192]; + char VC_stack_guard[0]; + char VC_stack[8192]; + char VC2_stack_guard[0]; + char VC2_stack[8192]; + char IST_top_guard[0]; +}; + +struct pagerange_state { + long unsigned int cur_pfn; + int ram; + int not_ram; +}; + +struct kmmio_fault_page { + struct list_head list; + struct kmmio_fault_page *release_next; + long unsigned int addr; + pteval_t old_presence; + bool armed; + int count; + bool scheduled_for_release; +}; + +struct kmmio_delayed_release { + struct callback_head rcu; + struct kmmio_fault_page *release_list; +}; + +struct kmmio_context { + struct kmmio_fault_page *fpage; + struct kmmio_probe *probe; + long unsigned int saved_flags; + long unsigned int addr; + int active; +}; + +enum cpu_attack_vectors { + CPU_MITIGATE_USER_KERNEL = 0, + CPU_MITIGATE_USER_USER = 1, + CPU_MITIGATE_GUEST_HOST = 2, + CPU_MITIGATE_GUEST_GUEST = 3, + NR_CPU_ATTACK_VECTORS = 4, +}; + +enum pti_mode { + PTI_AUTO = 0, + PTI_FORCE_OFF = 1, + PTI_FORCE_ON = 2, +}; + +enum pti_clone_level { + PTI_CLONE_PMD = 0, + PTI_CLONE_PTE = 1, +}; + +typedef struct { + efi_guid_t guid; + u64 table; +} efi_config_table_64_t; + +struct efi_mem_range { + struct range range; + u64 attribute; +}; + +enum efi_rts_ids { + EFI_NONE = 0, + EFI_GET_TIME = 1, + EFI_SET_TIME = 2, + EFI_GET_WAKEUP_TIME = 3, + EFI_SET_WAKEUP_TIME = 4, + EFI_GET_VARIABLE = 5, + EFI_GET_NEXT_VARIABLE = 6, + EFI_SET_VARIABLE = 7, + EFI_QUERY_VARIABLE_INFO = 8, + EFI_GET_NEXT_HIGH_MONO_COUNT = 9, + EFI_RESET_SYSTEM = 10, + EFI_UPDATE_CAPSULE = 11, + EFI_QUERY_CAPSULE_CAPS = 12, + EFI_ACPI_PRM_HANDLER = 13, +}; + +union efi_rts_args; + +struct efi_runtime_work { + union efi_rts_args *args; + efi_status_t status; + struct work_struct work; + enum efi_rts_ids efi_rts_id; + struct completion efi_rts_comp; + const void *caller; +}; + +struct pm_qos_request { + struct plist_node node; + struct pm_qos_constraints *qos; +}; + +struct uv_hub_nmi_s { + raw_spinlock_t nmi_lock; + atomic_t in_nmi; + atomic_t cpu_owner; + atomic_t read_mmr_count; + atomic_t nmi_count; + long unsigned int nmi_value; + bool hub_present; + bool pch_owner; +}; + +struct uv_cpu_nmi_s { + struct uv_hub_nmi_s *hub; + int state; + int pinging; + int queries; + int pings; +}; + +enum action_t { + nmi_act_kdump = 0, + nmi_act_dump = 1, + nmi_act_ips = 2, + nmi_act_kdb = 3, + nmi_act_kgdb = 4, + nmi_act_health = 5, + nmi_act_max = 6, +}; + +struct init_nmi { + unsigned int offset; + unsigned int mask; + unsigned int data; +}; + +struct softirq_action { + void (*action)(void); +}; + +typedef int wait_bit_action_f(struct wait_bit_key *, int); + +struct trace_event_raw_irq_handler_entry { + struct trace_entry ent; + int irq; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_irq_handler_exit { + struct trace_entry ent; + int irq; + int ret; + char __data[0]; +}; + +struct trace_event_raw_softirq { + struct trace_entry ent; + unsigned int vec; + char __data[0]; +}; + +struct trace_event_raw_tasklet { + struct trace_entry ent; + void *tasklet; + void *func; + char __data[0]; +}; + +struct trace_event_data_offsets_irq_handler_entry { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_irq_handler_exit {}; + +struct trace_event_data_offsets_softirq {}; + +struct trace_event_data_offsets_tasklet {}; + +typedef void (*btf_trace_irq_handler_entry)(void *, int, struct irqaction *); + +typedef void (*btf_trace_irq_handler_exit)(void *, int, struct irqaction *, int); + +typedef void (*btf_trace_softirq_entry)(void *, unsigned int); + +typedef void (*btf_trace_softirq_exit)(void *, unsigned int); + +typedef void (*btf_trace_softirq_raise)(void *, unsigned int); + +typedef void (*btf_trace_tasklet_entry)(void *, struct tasklet_struct *, void *); + +typedef void (*btf_trace_tasklet_exit)(void *, struct tasklet_struct *, void *); + +struct tasklet_head { + struct tasklet_struct *head; + struct tasklet_struct **tail; +}; + +struct __user_cap_header_struct { + __u32 version; + int pid; +}; + +typedef struct __user_cap_header_struct *cap_user_header_t; + +struct __user_cap_data_struct { + __u32 effective; + __u32 permitted; + __u32 inheritable; +}; + +typedef struct __user_cap_data_struct *cap_user_data_t; + +struct wq_flusher; + +struct wq_device; + +struct wq_node_nr_active; + +struct workqueue_struct { + struct list_head pwqs; + struct list_head list; + struct mutex mutex; + int work_color; + int flush_color; + atomic_t nr_pwqs_to_flush; + struct wq_flusher *first_flusher; + struct list_head flusher_queue; + struct list_head flusher_overflow; + struct list_head maydays; + struct worker *rescuer; + int nr_drainers; + int max_active; + int min_active; + int saved_max_active; + int saved_min_active; + struct workqueue_attrs *unbound_attrs; + struct pool_workqueue *dfl_pwq; + struct wq_device *wq_dev; + char name[32]; + struct callback_head rcu; + long: 64; + long: 64; + unsigned int flags; + struct pool_workqueue **cpu_pwq; + struct wq_node_nr_active *node_nr_active[0]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct execute_work { + struct work_struct work; +}; + +struct pool_workqueue { + struct worker_pool *pool; + struct workqueue_struct *wq; + int work_color; + int flush_color; + int refcnt; + int nr_in_flight[16]; + bool plugged; + int nr_active; + struct list_head inactive_works; + struct list_head pending_node; + struct list_head pwqs_node; + struct list_head mayday_node; + u64 stats[8]; + struct kthread_work release_work; + struct callback_head rcu; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct worker_pool { + raw_spinlock_t lock; + int cpu; + int node; + int id; + unsigned int flags; + long unsigned int watchdog_ts; + bool cpu_stall; + int nr_running; + struct list_head worklist; + int nr_workers; + int nr_idle; + struct list_head idle_list; + struct timer_list idle_timer; + struct work_struct idle_cull_work; + struct timer_list mayday_timer; + struct hlist_head busy_hash[64]; + struct worker *manager; + struct list_head workers; + struct ida worker_ida; + struct workqueue_attrs *attrs; + struct hlist_node hash_node; + int refcnt; + struct callback_head rcu; +}; + +enum worker_pool_flags { + POOL_BH = 1, + POOL_MANAGER_ACTIVE = 2, + POOL_DISASSOCIATED = 4, + POOL_BH_DRAINING = 8, +}; + +enum worker_flags { + WORKER_DIE = 2, + WORKER_IDLE = 4, + WORKER_PREP = 8, + WORKER_CPU_INTENSIVE = 64, + WORKER_UNBOUND = 128, + WORKER_REBOUND = 256, + WORKER_NOT_RUNNING = 456, +}; + +enum work_cancel_flags { + WORK_CANCEL_DELAYED = 1, + WORK_CANCEL_DISABLE = 2, +}; + +enum wq_internal_consts { + NR_STD_WORKER_POOLS = 2, + UNBOUND_POOL_HASH_ORDER = 6, + BUSY_WORKER_HASH_ORDER = 6, + MAX_IDLE_WORKERS_RATIO = 4, + IDLE_WORKER_TIMEOUT = 300000, + MAYDAY_INITIAL_TIMEOUT = 10, + MAYDAY_INTERVAL = 100, + CREATE_COOLDOWN = 1000, + RESCUER_NICE_LEVEL = -20, + HIGHPRI_NICE_LEVEL = -20, + WQ_NAME_LEN = 32, + WORKER_ID_LEN = 42, +}; + +enum pool_workqueue_stats { + PWQ_STAT_STARTED = 0, + PWQ_STAT_COMPLETED = 1, + PWQ_STAT_CPU_TIME = 2, + PWQ_STAT_CPU_INTENSIVE = 3, + PWQ_STAT_CM_WAKEUP = 4, + PWQ_STAT_REPATRIATED = 5, + PWQ_STAT_MAYDAY = 6, + PWQ_STAT_RESCUED = 7, + PWQ_NR_STATS = 8, +}; + +struct wq_flusher { + struct list_head list; + int flush_color; + struct completion done; +}; + +struct wq_node_nr_active { + int max; + atomic_t nr; + raw_spinlock_t lock; + struct list_head pending_pwqs; +}; + +struct wq_device { + struct workqueue_struct *wq; + struct device dev; +}; + +struct wq_pod_type { + int nr_pods; + cpumask_var_t *pod_cpus; + int *pod_node; + int *cpu_pod; +}; + +struct work_offq_data { + u32 pool_id; + u32 disable; + u32 flags; +}; + +struct trace_event_raw_workqueue_queue_work { + struct trace_entry ent; + void *work; + void *function; + u32 __data_loc_workqueue; + int req_cpu; + int cpu; + char __data[0]; +}; + +struct trace_event_raw_workqueue_activate_work { + struct trace_entry ent; + void *work; + void *function; + char __data[0]; +}; + +struct trace_event_raw_workqueue_execute_start { + struct trace_entry ent; + void *work; + void *function; + char __data[0]; +}; + +struct trace_event_raw_workqueue_execute_end { + struct trace_entry ent; + void *work; + void *function; + char __data[0]; +}; + +struct trace_event_data_offsets_workqueue_queue_work { + u32 workqueue; + const void *workqueue_ptr_; +}; + +struct trace_event_data_offsets_workqueue_activate_work {}; + +struct trace_event_data_offsets_workqueue_execute_start {}; + +struct trace_event_data_offsets_workqueue_execute_end {}; + +typedef void (*btf_trace_workqueue_queue_work)(void *, int, struct pool_workqueue *, struct work_struct *); + +typedef void (*btf_trace_workqueue_activate_work)(void *, struct work_struct *); + +typedef void (*btf_trace_workqueue_execute_start)(void *, struct work_struct *); + +typedef void (*btf_trace_workqueue_execute_end)(void *, struct work_struct *, work_func_t); + +struct wci_ent { + work_func_t func; + atomic64_t cnt; + struct hlist_node hash_node; +}; + +struct wq_drain_dead_softirq_work { + struct work_struct work; + struct worker_pool *pool; + struct completion done; +}; + +struct wq_barrier { + struct work_struct work; + struct completion done; + struct task_struct *task; +}; + +struct apply_wqattrs_ctx { + struct workqueue_struct *wq; + struct workqueue_attrs *attrs; + struct list_head list; + struct pool_workqueue *dfl_pwq; + struct pool_workqueue *pwq_tbl[0]; +}; + +struct pr_cont_work_struct { + bool comma; + work_func_t func; + long int ctr; +}; + +struct work_for_cpu { + struct work_struct work; + long int (*fn)(void *); + void *arg; + long int ret; +}; + +struct sched_param { + int sched_priority; +}; + +enum { + KTW_FREEZABLE = 1, +}; + +struct kthread_delayed_work { + struct kthread_work work; + struct timer_list timer; +}; + +struct kthread_create_info { + char *full_name; + int (*threadfn)(void *); + void *data; + int node; + struct task_struct *result; + struct completion *done; + struct list_head list; +}; + +struct kthread { + long unsigned int flags; + unsigned int cpu; + unsigned int node; + int started; + int result; + int (*threadfn)(void *); + void *data; + struct completion parked; + struct completion exited; + struct cgroup_subsys_state *blkcg_css; + char *full_name; + struct task_struct *task; + struct list_head hotplug_node; + struct cpumask *preferred_affinity; +}; + +enum KTHREAD_BITS { + KTHREAD_IS_PER_CPU = 0, + KTHREAD_SHOULD_STOP = 1, + KTHREAD_SHOULD_PARK = 2, +}; + +struct kthread_flush_work { + struct kthread_work work; + struct completion done; +}; + +enum proc_cn_event { + PROC_EVENT_NONE = 0, + PROC_EVENT_FORK = 1, + PROC_EVENT_EXEC = 2, + PROC_EVENT_UID = 4, + PROC_EVENT_GID = 64, + PROC_EVENT_SID = 128, + PROC_EVENT_PTRACE = 256, + PROC_EVENT_COMM = 512, + PROC_EVENT_NONZERO_EXIT = 536870912, + PROC_EVENT_COREDUMP = 1073741824, + PROC_EVENT_EXIT = 2147483648, +}; + +struct rhashtable_walker { + struct list_head list; + struct bucket_table *tbl; +}; + +struct rhashtable_iter { + struct rhashtable *ht; + struct rhash_head *p; + struct rhlist_head *list; + struct rhashtable_walker walker; + unsigned int slot; + unsigned int skip; + bool end_of_table; +}; + +enum scx_ent_flags { + SCX_TASK_QUEUED = 1, + SCX_TASK_RESET_RUNNABLE_AT = 4, + SCX_TASK_DEQD_FOR_SLEEP = 8, + SCX_TASK_STATE_SHIFT = 8, + SCX_TASK_STATE_BITS = 2, + SCX_TASK_STATE_MASK = 768, + SCX_TASK_CURSOR = -2147483648, +}; + +enum scx_task_state { + SCX_TASK_NONE = 0, + SCX_TASK_INIT = 1, + SCX_TASK_READY = 2, + SCX_TASK_ENABLED = 3, + SCX_TASK_NR_STATES = 4, +}; + +enum scx_ent_dsq_flags { + SCX_TASK_DSQ_ON_PRIQ = 1, +}; + +enum scx_kf_mask { + SCX_KF_UNLOCKED = 0, + SCX_KF_CPU_RELEASE = 1, + SCX_KF_DISPATCH = 2, + SCX_KF_ENQUEUE = 4, + SCX_KF_SELECT_CPU = 8, + SCX_KF_REST = 16, + __SCX_KF_RQ_LOCKED = 31, + __SCX_KF_TERMINAL = 28, +}; + +enum scx_dsq_lnode_flags { + SCX_DSQ_LNODE_ITER_CURSOR = 1, + __SCX_DSQ_LNODE_PRIV_SHIFT = 16, +}; + +enum tick_broadcast_state { + TICK_BROADCAST_EXIT = 0, + TICK_BROADCAST_ENTER = 1, +}; + +enum s2idle_states { + S2IDLE_STATE_NONE = 0, + S2IDLE_STATE_ENTER = 1, + S2IDLE_STATE_WAKE = 2, +}; + +typedef struct { + struct task_struct *lock; + struct rq *rq; + struct rq_flags rf; +} class_task_rq_lock_t; + +typedef struct { + struct rq *lock; + struct rq_flags rf; +} class_rq_lock_t; + +typedef struct { + struct rq *lock; + struct rq_flags rf; +} class_rq_lock_irq_t; + +typedef struct { + struct rq *lock; + struct rq *lock2; +} class_double_rq_lock_t; + +struct sched_enq_and_set_ctx { + struct task_struct *p; + int queue_flags; + bool queued; + bool running; +}; + +struct idle_timer { + struct hrtimer timer; + int done; +}; + +typedef struct rt_rq *rt_rq_iter_t; + +enum dl_bw_request { + dl_bw_req_deactivate = 0, + dl_bw_req_alloc = 1, + dl_bw_req_free = 2, +}; + +enum scx_consts { + SCX_DSP_DFL_MAX_BATCH = 32, + SCX_DSP_MAX_LOOPS = 32, + SCX_WATCHDOG_MAX_TIMEOUT = 30000, + SCX_EXIT_BT_LEN = 64, + SCX_EXIT_MSG_LEN = 1024, + SCX_EXIT_DUMP_DFL_LEN = 32768, + SCX_CPUPERF_ONE = 1024, + SCX_TASK_ITER_BATCH = 32, +}; + +enum scx_exit_kind { + SCX_EXIT_NONE = 0, + SCX_EXIT_DONE = 1, + SCX_EXIT_UNREG = 64, + SCX_EXIT_UNREG_BPF = 65, + SCX_EXIT_UNREG_KERN = 66, + SCX_EXIT_SYSRQ = 67, + SCX_EXIT_ERROR = 1024, + SCX_EXIT_ERROR_BPF = 1025, + SCX_EXIT_ERROR_STALL = 1026, +}; + +enum scx_exit_code { + SCX_ECODE_RSN_HOTPLUG = 4294967296ULL, + SCX_ECODE_ACT_RESTART = 281474976710656ULL, +}; + +struct scx_exit_info { + enum scx_exit_kind kind; + s64 exit_code; + const char *reason; + long unsigned int *bt; + u32 bt_len; + char *msg; + char *dump; +}; + +enum scx_ops_flags { + SCX_OPS_KEEP_BUILTIN_IDLE = 1ULL, + SCX_OPS_ENQ_LAST = 2ULL, + SCX_OPS_ENQ_EXITING = 4ULL, + SCX_OPS_SWITCH_PARTIAL = 8ULL, + SCX_OPS_ENQ_MIGRATION_DISABLED = 16ULL, + SCX_OPS_ALLOW_QUEUED_WAKEUP = 32ULL, + SCX_OPS_BUILTIN_IDLE_PER_NODE = 64ULL, + SCX_OPS_HAS_CGROUP_WEIGHT = 65536ULL, + SCX_OPS_ALL_FLAGS = 65663ULL, + __SCX_OPS_INTERNAL_MASK = 18374686479671623680ULL, + SCX_OPS_HAS_CPU_PREEMPT = 72057594037927936ULL, +}; + +struct scx_init_task_args { + bool fork; + struct cgroup *cgroup; +}; + +struct scx_exit_task_args { + bool cancelled; +}; + +struct scx_cgroup_init_args { + u32 weight; + u64 bw_period_us; + u64 bw_quota_us; + u64 bw_burst_us; +}; + +enum scx_cpu_preempt_reason { + SCX_CPU_PREEMPT_RT = 0, + SCX_CPU_PREEMPT_DL = 1, + SCX_CPU_PREEMPT_STOP = 2, + SCX_CPU_PREEMPT_UNKNOWN = 3, +}; + +struct scx_cpu_acquire_args {}; + +struct scx_cpu_release_args { + enum scx_cpu_preempt_reason reason; + struct task_struct *task; +}; + +struct scx_dump_ctx { + enum scx_exit_kind kind; + s64 exit_code; + const char *reason; + u64 at_ns; + u64 at_jiffies; +}; + +struct sched_ext_ops { + s32 (*select_cpu)(struct task_struct *, s32, u64); + void (*enqueue)(struct task_struct *, u64); + void (*dequeue)(struct task_struct *, u64); + void (*dispatch)(s32, struct task_struct *); + void (*tick)(struct task_struct *); + void (*runnable)(struct task_struct *, u64); + void (*running)(struct task_struct *); + void (*stopping)(struct task_struct *, bool); + void (*quiescent)(struct task_struct *, u64); + bool (*yield)(struct task_struct *, struct task_struct *); + bool (*core_sched_before)(struct task_struct *, struct task_struct *); + void (*set_weight)(struct task_struct *, u32); + void (*set_cpumask)(struct task_struct *, const struct cpumask *); + void (*update_idle)(s32, bool); + void (*cpu_acquire)(s32, struct scx_cpu_acquire_args *); + void (*cpu_release)(s32, struct scx_cpu_release_args *); + s32 (*init_task)(struct task_struct *, struct scx_init_task_args *); + void (*exit_task)(struct task_struct *, struct scx_exit_task_args *); + void (*enable)(struct task_struct *); + void (*disable)(struct task_struct *); + void (*dump)(struct scx_dump_ctx *); + void (*dump_cpu)(struct scx_dump_ctx *, s32, bool); + void (*dump_task)(struct scx_dump_ctx *, struct task_struct *); + s32 (*cgroup_init)(struct cgroup *, struct scx_cgroup_init_args *); + void (*cgroup_exit)(struct cgroup *); + s32 (*cgroup_prep_move)(struct task_struct *, struct cgroup *, struct cgroup *); + void (*cgroup_move)(struct task_struct *, struct cgroup *, struct cgroup *); + void (*cgroup_cancel_move)(struct task_struct *, struct cgroup *, struct cgroup *); + void (*cgroup_set_weight)(struct cgroup *, u32); + void (*cgroup_set_bandwidth)(struct cgroup *, u64, u64, u64); + void (*cpu_online)(s32); + void (*cpu_offline)(s32); + s32 (*init)(void); + void (*exit)(struct scx_exit_info *); + u32 dispatch_max_batch; + u64 flags; + u32 timeout_ms; + u32 exit_dump_len; + u64 hotplug_seq; + char name[128]; + void *priv; +}; + +enum scx_opi { + SCX_OPI_BEGIN = 0, + SCX_OPI_NORMAL_BEGIN = 0, + SCX_OPI_NORMAL_END = 30, + SCX_OPI_CPU_HOTPLUG_BEGIN = 30, + SCX_OPI_CPU_HOTPLUG_END = 32, + SCX_OPI_END = 32, +}; + +struct scx_event_stats { + s64 SCX_EV_SELECT_CPU_FALLBACK; + s64 SCX_EV_DISPATCH_LOCAL_DSQ_OFFLINE; + s64 SCX_EV_DISPATCH_KEEP_LAST; + s64 SCX_EV_ENQ_SKIP_EXITING; + s64 SCX_EV_ENQ_SKIP_MIGRATION_DISABLED; + s64 SCX_EV_REFILL_SLICE_DFL; + s64 SCX_EV_BYPASS_DURATION; + s64 SCX_EV_BYPASS_DISPATCH; + s64 SCX_EV_BYPASS_ACTIVATE; +}; + +struct scx_sched_pcpu { + struct scx_event_stats event_stats; +}; + +struct scx_sched { + struct sched_ext_ops ops; + long unsigned int has_op[1]; + struct rhashtable dsq_hash; + struct scx_dispatch_q **global_dsqs; + struct scx_sched_pcpu *pcpu; + bool warned_zero_slice; + atomic_t exit_kind; + struct scx_exit_info *exit_info; + struct kobject kobj; + struct kthread_worker *helper; + struct irq_work error_irq_work; + struct kthread_work disable_work; + struct rcu_work rcu_work; +}; + +enum scx_wake_flags { + SCX_WAKE_FORK = 4, + SCX_WAKE_TTWU = 8, + SCX_WAKE_SYNC = 16, +}; + +enum scx_enq_flags { + SCX_ENQ_WAKEUP = 1ULL, + SCX_ENQ_HEAD = 16ULL, + SCX_ENQ_CPU_SELECTED = 1024ULL, + SCX_ENQ_PREEMPT = 4294967296ULL, + SCX_ENQ_REENQ = 1099511627776ULL, + SCX_ENQ_LAST = 2199023255552ULL, + __SCX_ENQ_INTERNAL_MASK = 18374686479671623680ULL, + SCX_ENQ_CLEAR_OPSS = 72057594037927936ULL, + SCX_ENQ_DSQ_PRIQ = 144115188075855872ULL, +}; + +enum scx_deq_flags { + SCX_DEQ_SLEEP = 1ULL, + SCX_DEQ_CORE_SCHED_EXEC = 4294967296ULL, +}; + +enum scx_pick_idle_cpu_flags { + SCX_PICK_IDLE_CORE = 1, + SCX_PICK_IDLE_IN_NODE = 2, +}; + +enum scx_kick_flags { + SCX_KICK_IDLE = 1, + SCX_KICK_PREEMPT = 2, + SCX_KICK_WAIT = 4, +}; + +enum scx_tg_flags { + SCX_TG_ONLINE = 1, + SCX_TG_INITED = 2, +}; + +enum scx_enable_state { + SCX_ENABLING = 0, + SCX_ENABLED = 1, + SCX_DISABLING = 2, + SCX_DISABLED = 3, +}; + +enum scx_ops_state { + SCX_OPSS_NONE = 0, + SCX_OPSS_QUEUEING = 1, + SCX_OPSS_QUEUED = 2, + SCX_OPSS_DISPATCHING = 3, + SCX_OPSS_QSEQ_SHIFT = 2, +}; + +struct scx_kick_pseqs { + struct callback_head rcu; + long unsigned int seqs[0]; +}; + +struct scx_dsp_buf_ent { + struct task_struct *task; + long unsigned int qseq; + u64 dsq_id; + u64 enq_flags; +}; + +struct scx_dsp_ctx { + struct rq *rq; + u32 cursor; + u32 nr_tasks; + struct scx_dsp_buf_ent buf[0]; +}; + +struct scx_bstr_buf { + u64 data[12]; + char line[1024]; +}; + +struct scx_dump_data { + s32 cpu; + bool first; + s32 cursor; + struct seq_buf *s; + const char *prefix; + struct scx_bstr_buf buf; +}; + +struct trace_event_raw_sched_ext_dump { + struct trace_entry ent; + u32 __data_loc_line; + char __data[0]; +}; + +struct trace_event_raw_sched_ext_event { + struct trace_entry ent; + u32 __data_loc_name; + __s64 delta; + char __data[0]; +}; + +struct trace_event_data_offsets_sched_ext_dump { + u32 line; + const void *line_ptr_; +}; + +struct trace_event_data_offsets_sched_ext_event { + u32 name; + const void *name_ptr_; +}; + +typedef void (*btf_trace_sched_ext_dump)(void *, const char *); + +typedef void (*btf_trace_sched_ext_event)(void *, const char *, __s64); + +enum scx_dsq_iter_flags { + SCX_DSQ_ITER_REV = 65536, + __SCX_DSQ_ITER_HAS_SLICE = 1073741824, + __SCX_DSQ_ITER_HAS_VTIME = 2147483648, + __SCX_DSQ_ITER_USER_FLAGS = 65536, + __SCX_DSQ_ITER_ALL_FLAGS = 3221291008, +}; + +struct bpf_iter_scx_dsq_kern { + struct scx_dsq_list_node cursor; + struct scx_dispatch_q *dsq; + u64 slice; + u64 vtime; +}; + +struct bpf_iter_scx_dsq { + u64 __opaque[6]; +}; + +struct scx_task_iter { + struct sched_ext_entity cursor; + struct task_struct *locked; + struct rq *rq; + struct rq_flags rf; + u32 cnt; +}; + +struct scx_idle_cpus { + cpumask_var_t cpu; + cpumask_var_t smt; +}; + +typedef struct task_struct *class_find_get_task_t; + +struct bpf_struct_ops_sched_ext_ops { + struct bpf_struct_ops_common_value common; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct sched_ext_ops data; + long: 64; +}; + +enum suspend_stat_step { + SUSPEND_WORKING = 0, + SUSPEND_FREEZE = 1, + SUSPEND_PREPARE = 2, + SUSPEND_SUSPEND = 3, + SUSPEND_SUSPEND_LATE = 4, + SUSPEND_SUSPEND_NOIRQ = 5, + SUSPEND_RESUME_NOIRQ = 6, + SUSPEND_RESUME_EARLY = 7, + SUSPEND_RESUME = 8, +}; + +struct resume_swap_area { + __kernel_loff_t offset; + __u32 dev; +} __attribute__((packed)); + +struct snapshot_handle { + unsigned int cur; + void *buffer; + int sync_read; +}; + +struct snapshot_data { + struct snapshot_handle handle; + int swap; + int mode; + bool frozen; + bool ready; + bool platform_support; + bool free_bitmaps; + dev_t dev; +}; + +struct compat_resume_swap_area { + compat_loff_t offset; + u32 dev; +} __attribute__((packed)); + +enum kdb_msgsrc { + KDB_MSGSRC_INTERNAL = 0, + KDB_MSGSRC_PRINTK = 1, +}; + +struct nbcon_state { + union { + unsigned int atom; + struct { + unsigned int prio: 2; + unsigned int req_prio: 2; + unsigned int unsafe: 1; + unsigned int unsafe_takeover: 1; + unsigned int cpu: 24; + }; + }; +}; + +struct printk_buffers { + char outbuf[2048]; + char scratchbuf[1024]; +}; + +struct prb_desc; + +struct printk_info; + +struct prb_desc_ring { + unsigned int count_bits; + struct prb_desc *descs; + struct printk_info *infos; + atomic_long_t head_id; + atomic_long_t tail_id; + atomic_long_t last_finalized_seq; +}; + +struct prb_data_ring { + unsigned int size_bits; + char *data; + atomic_long_t head_lpos; + atomic_long_t tail_lpos; +}; + +struct printk_ringbuffer { + struct prb_desc_ring desc_ring; + struct prb_data_ring text_data_ring; + atomic_long_t fail; +}; + +struct console_flush_type { + bool nbcon_atomic; + bool nbcon_offload; + bool legacy_direct; + bool legacy_offload; +}; + +struct printk_message { + struct printk_buffers *pbufs; + unsigned int outbuf_len; + u64 seq; + long unsigned int dropped; +}; + +struct dev_printk_info { + char subsystem[16]; + char device[48]; +}; + +struct printk_info { + u64 seq; + u64 ts_nsec; + u16 text_len; + u8 facility; + u8 flags: 5; + u8 level: 3; + u32 caller_id; + struct dev_printk_info dev_info; +}; + +struct printk_record { + struct printk_info *info; + char *text_buf; + unsigned int text_buf_size; +}; + +struct prb_data_blk_lpos { + long unsigned int begin; + long unsigned int next; +}; + +struct prb_desc { + atomic_long_t state_var; + struct prb_data_blk_lpos text_blk_lpos; +}; + +struct prb_reserved_entry { + struct printk_ringbuffer *rb; + long unsigned int irqflags; + long unsigned int id; + unsigned int text_space; +}; + +enum desc_state { + desc_miss = -1, + desc_reserved = 0, + desc_committed = 1, + desc_finalized = 2, + desc_reusable = 3, +}; + +struct prb_data_block { + long unsigned int id; + char data[0]; +}; + +enum { + IRQC_IS_HARDIRQ = 0, + IRQC_IS_NESTED = 1, +}; + +enum { + IRQTF_RUNTHREAD = 0, + IRQTF_WARNED = 1, + IRQTF_AFFINITY = 2, + IRQTF_FORCED_THREAD = 3, + IRQTF_READY = 4, +}; + +typedef struct { + struct irq_desc *lock; + long unsigned int flags; + bool bus; +} class_irqdesc_lock_t; + +enum { + AFFINITY = 0, + AFFINITY_LIST = 1, + EFFECTIVE = 2, + EFFECTIVE_LIST = 3, +}; + +struct cpumap { + unsigned int available; + unsigned int allocated; + unsigned int managed; + unsigned int managed_allocated; + bool initialized; + bool online; + long unsigned int *managed_map; + long unsigned int alloc_map[0]; +}; + +struct irq_matrix { + unsigned int matrix_bits; + unsigned int alloc_start; + unsigned int alloc_end; + unsigned int alloc_size; + unsigned int global_available; + unsigned int global_reserved; + unsigned int systembits_inalloc; + unsigned int total_allocated; + unsigned int online_maps; + struct cpumap *maps; + long unsigned int *system_map; + long unsigned int scratch_map[0]; +}; + +struct trace_event_raw_irq_matrix_global { + struct trace_entry ent; + unsigned int online_maps; + unsigned int global_available; + unsigned int global_reserved; + unsigned int total_allocated; + char __data[0]; +}; + +struct trace_event_raw_irq_matrix_global_update { + struct trace_entry ent; + int bit; + unsigned int online_maps; + unsigned int global_available; + unsigned int global_reserved; + unsigned int total_allocated; + char __data[0]; +}; + +struct trace_event_raw_irq_matrix_cpu { + struct trace_entry ent; + int bit; + unsigned int cpu; + bool online; + unsigned int available; + unsigned int allocated; + unsigned int managed; + unsigned int online_maps; + unsigned int global_available; + unsigned int global_reserved; + unsigned int total_allocated; + char __data[0]; +}; + +struct trace_event_data_offsets_irq_matrix_global {}; + +struct trace_event_data_offsets_irq_matrix_global_update {}; + +struct trace_event_data_offsets_irq_matrix_cpu {}; + +typedef void (*btf_trace_irq_matrix_online)(void *, struct irq_matrix *); + +typedef void (*btf_trace_irq_matrix_offline)(void *, struct irq_matrix *); + +typedef void (*btf_trace_irq_matrix_reserve)(void *, struct irq_matrix *); + +typedef void (*btf_trace_irq_matrix_remove_reserved)(void *, struct irq_matrix *); + +typedef void (*btf_trace_irq_matrix_assign_system)(void *, int, struct irq_matrix *); + +typedef void (*btf_trace_irq_matrix_reserve_managed)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); + +typedef void (*btf_trace_irq_matrix_remove_managed)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); + +typedef void (*btf_trace_irq_matrix_alloc_managed)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); + +typedef void (*btf_trace_irq_matrix_assign)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); + +typedef void (*btf_trace_irq_matrix_alloc)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); + +typedef void (*btf_trace_irq_matrix_free)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); + +struct klp_ops { + struct list_head node; + struct list_head func_stack; + struct ftrace_ops fops; +}; + +struct trace_event_raw_dma_map { + struct trace_entry ent; + u32 __data_loc_device; + u64 phys_addr; + u64 dma_addr; + size_t size; + enum dma_data_direction dir; + long unsigned int attrs; + char __data[0]; +}; + +struct trace_event_raw_dma_unmap { + struct trace_entry ent; + u32 __data_loc_device; + u64 addr; + size_t size; + enum dma_data_direction dir; + long unsigned int attrs; + char __data[0]; +}; + +struct trace_event_raw_dma_alloc_class { + struct trace_entry ent; + u32 __data_loc_device; + void *virt_addr; + u64 dma_addr; + size_t size; + gfp_t flags; + enum dma_data_direction dir; + long unsigned int attrs; + char __data[0]; +}; + +struct trace_event_raw_dma_alloc_sgt { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_phys_addrs; + u64 dma_addr; + size_t size; + enum dma_data_direction dir; + gfp_t flags; + long unsigned int attrs; + char __data[0]; +}; + +struct trace_event_raw_dma_free_class { + struct trace_entry ent; + u32 __data_loc_device; + void *virt_addr; + u64 dma_addr; + size_t size; + enum dma_data_direction dir; + long unsigned int attrs; + char __data[0]; +}; + +struct trace_event_raw_dma_free_sgt { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_phys_addrs; + u64 dma_addr; + size_t size; + enum dma_data_direction dir; + char __data[0]; +}; + +struct trace_event_raw_dma_map_sg { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_phys_addrs; + u32 __data_loc_dma_addrs; + u32 __data_loc_lengths; + enum dma_data_direction dir; + long unsigned int attrs; + char __data[0]; +}; + +struct trace_event_raw_dma_map_sg_err { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_phys_addrs; + int err; + enum dma_data_direction dir; + long unsigned int attrs; + char __data[0]; +}; + +struct trace_event_raw_dma_unmap_sg { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_addrs; + enum dma_data_direction dir; + long unsigned int attrs; + char __data[0]; +}; + +struct trace_event_raw_dma_sync_single { + struct trace_entry ent; + u32 __data_loc_device; + u64 dma_addr; + size_t size; + enum dma_data_direction dir; + char __data[0]; +}; + +struct trace_event_raw_dma_sync_sg { + struct trace_entry ent; + u32 __data_loc_device; + u32 __data_loc_dma_addrs; + u32 __data_loc_lengths; + enum dma_data_direction dir; + char __data[0]; +}; + +struct trace_event_data_offsets_dma_map { + u32 device; + const void *device_ptr_; +}; + +struct trace_event_data_offsets_dma_unmap { + u32 device; + const void *device_ptr_; +}; + +struct trace_event_data_offsets_dma_alloc_class { + u32 device; + const void *device_ptr_; +}; + +struct trace_event_data_offsets_dma_alloc_sgt { + u32 device; + const void *device_ptr_; + u32 phys_addrs; + const void *phys_addrs_ptr_; +}; + +struct trace_event_data_offsets_dma_free_class { + u32 device; + const void *device_ptr_; +}; + +struct trace_event_data_offsets_dma_free_sgt { + u32 device; + const void *device_ptr_; + u32 phys_addrs; + const void *phys_addrs_ptr_; +}; + +struct trace_event_data_offsets_dma_map_sg { + u32 device; + const void *device_ptr_; + u32 phys_addrs; + const void *phys_addrs_ptr_; + u32 dma_addrs; + const void *dma_addrs_ptr_; + u32 lengths; + const void *lengths_ptr_; +}; + +struct trace_event_data_offsets_dma_map_sg_err { + u32 device; + const void *device_ptr_; + u32 phys_addrs; + const void *phys_addrs_ptr_; +}; + +struct trace_event_data_offsets_dma_unmap_sg { + u32 device; + const void *device_ptr_; + u32 addrs; + const void *addrs_ptr_; +}; + +struct trace_event_data_offsets_dma_sync_single { + u32 device; + const void *device_ptr_; +}; + +struct trace_event_data_offsets_dma_sync_sg { + u32 device; + const void *device_ptr_; + u32 dma_addrs; + const void *dma_addrs_ptr_; + u32 lengths; + const void *lengths_ptr_; +}; + +typedef void (*btf_trace_dma_map_page)(void *, struct device *, phys_addr_t, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_map_resource)(void *, struct device *, phys_addr_t, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_unmap_page)(void *, struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_unmap_resource)(void *, struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_alloc)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, gfp_t, long unsigned int); + +typedef void (*btf_trace_dma_alloc_pages)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, gfp_t, long unsigned int); + +typedef void (*btf_trace_dma_alloc_sgt_err)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, gfp_t, long unsigned int); + +typedef void (*btf_trace_dma_alloc_sgt)(void *, struct device *, struct sg_table *, size_t, enum dma_data_direction, gfp_t, long unsigned int); + +typedef void (*btf_trace_dma_free)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_free_pages)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_free_sgt)(void *, struct device *, struct sg_table *, size_t, enum dma_data_direction); + +typedef void (*btf_trace_dma_map_sg)(void *, struct device *, struct scatterlist *, int, int, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_map_sg_err)(void *, struct device *, struct scatterlist *, int, int, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_unmap_sg)(void *, struct device *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); + +typedef void (*btf_trace_dma_sync_single_for_cpu)(void *, struct device *, dma_addr_t, size_t, enum dma_data_direction); + +typedef void (*btf_trace_dma_sync_single_for_device)(void *, struct device *, dma_addr_t, size_t, enum dma_data_direction); + +typedef void (*btf_trace_dma_sync_sg_for_cpu)(void *, struct device *, struct scatterlist *, int, enum dma_data_direction); + +typedef void (*btf_trace_dma_sync_sg_for_device)(void *, struct device *, struct scatterlist *, int, enum dma_data_direction); + +struct dma_devres { + size_t size; + void *vaddr; + dma_addr_t dma_handle; + long unsigned int attrs; +}; + +struct taint_flag { + char c_true; + char c_false; + bool module; + const char *desc; +}; + +typedef struct { + seqcount_t seqcount; +} seqcount_latch_t; + +struct latch_tree_root { + seqcount_latch_t seq; + struct rb_root tree[2]; +}; + +enum fail_dup_mod_reason { + FAIL_DUP_MOD_BECOMING = 0, + FAIL_DUP_MOD_LOAD = 1, +}; + +struct mod_tree_root { + struct latch_tree_root root; + long unsigned int addr_min; + long unsigned int addr_max; +}; + +struct trace_event_raw_module_load { + struct trace_entry ent; + unsigned int taints; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_module_free { + struct trace_entry ent; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_module_refcnt { + struct trace_entry ent; + long unsigned int ip; + int refcnt; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_module_request { + struct trace_entry ent; + long unsigned int ip; + bool wait; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_data_offsets_module_load { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_module_free { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_module_refcnt { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_module_request { + u32 name; + const void *name_ptr_; +}; + +typedef void (*btf_trace_module_load)(void *, struct module *); + +typedef void (*btf_trace_module_free)(void *, struct module *); + +typedef void (*btf_trace_module_get)(void *, struct module *, long unsigned int); + +typedef void (*btf_trace_module_put)(void *, struct module *, long unsigned int); + +typedef void (*btf_trace_module_request)(void *, char *, bool, long unsigned int); + +struct symsearch { + const struct kernel_symbol *start; + const struct kernel_symbol *stop; + const u32 *crcs; + enum mod_license license; +}; + +struct mod_initfree { + struct llist_node node; + void *init_text; + void *init_data; + void *init_rodata; +}; + +struct idempotent { + const void *cookie; + struct hlist_node entry; + struct completion complete; + int ret; +}; + +enum kcmp_type { + KCMP_FILE = 0, + KCMP_VM = 1, + KCMP_FILES = 2, + KCMP_FS = 3, + KCMP_SIGHAND = 4, + KCMP_IO = 5, + KCMP_SYSVSEM = 6, + KCMP_EPOLL_TFD = 7, + KCMP_TYPES = 8, +}; + +struct kcmp_epoll_slot { + __u32 efd; + __u32 tfd; + __u32 toff; +}; + +struct timer_events { + u64 local; + u64 global; +}; + +struct trace_event_raw_timer_class { + struct trace_entry ent; + void *timer; + char __data[0]; +}; + +struct trace_event_raw_timer_start { + struct trace_entry ent; + void *timer; + void *function; + long unsigned int expires; + long unsigned int bucket_expiry; + long unsigned int now; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_timer_expire_entry { + struct trace_entry ent; + void *timer; + long unsigned int now; + void *function; + long unsigned int baseclk; + char __data[0]; +}; + +struct trace_event_raw_timer_base_idle { + struct trace_entry ent; + bool is_idle; + unsigned int cpu; + char __data[0]; +}; + +struct trace_event_raw_hrtimer_setup { + struct trace_entry ent; + void *hrtimer; + clockid_t clockid; + enum hrtimer_mode mode; + char __data[0]; +}; + +struct trace_event_raw_hrtimer_start { + struct trace_entry ent; + void *hrtimer; + void *function; + s64 expires; + s64 softexpires; + enum hrtimer_mode mode; + char __data[0]; +}; + +struct trace_event_raw_hrtimer_expire_entry { + struct trace_entry ent; + void *hrtimer; + s64 now; + void *function; + char __data[0]; +}; + +struct trace_event_raw_hrtimer_class { + struct trace_entry ent; + void *hrtimer; + char __data[0]; +}; + +struct trace_event_raw_itimer_state { + struct trace_entry ent; + int which; + long long unsigned int expires; + long int value_sec; + long int value_nsec; + long int interval_sec; + long int interval_nsec; + char __data[0]; +}; + +struct trace_event_raw_itimer_expire { + struct trace_entry ent; + int which; + pid_t pid; + long long unsigned int now; + char __data[0]; +}; + +struct trace_event_raw_tick_stop { + struct trace_entry ent; + int success; + int dependency; + char __data[0]; +}; + +struct trace_event_data_offsets_timer_class {}; + +struct trace_event_data_offsets_timer_start {}; + +struct trace_event_data_offsets_timer_expire_entry {}; + +struct trace_event_data_offsets_timer_base_idle {}; + +struct trace_event_data_offsets_hrtimer_setup {}; + +struct trace_event_data_offsets_hrtimer_start {}; + +struct trace_event_data_offsets_hrtimer_expire_entry {}; + +struct trace_event_data_offsets_hrtimer_class {}; + +struct trace_event_data_offsets_itimer_state {}; + +struct trace_event_data_offsets_itimer_expire {}; + +struct trace_event_data_offsets_tick_stop {}; + +typedef void (*btf_trace_timer_init)(void *, struct timer_list *); + +typedef void (*btf_trace_timer_start)(void *, struct timer_list *, long unsigned int); + +typedef void (*btf_trace_timer_expire_entry)(void *, struct timer_list *, long unsigned int); + +typedef void (*btf_trace_timer_expire_exit)(void *, struct timer_list *); + +typedef void (*btf_trace_timer_cancel)(void *, struct timer_list *); + +typedef void (*btf_trace_timer_base_idle)(void *, bool, unsigned int); + +typedef void (*btf_trace_hrtimer_setup)(void *, struct hrtimer *, clockid_t, enum hrtimer_mode); + +typedef void (*btf_trace_hrtimer_start)(void *, struct hrtimer *, enum hrtimer_mode); + +typedef void (*btf_trace_hrtimer_expire_entry)(void *, struct hrtimer *, ktime_t *); + +typedef void (*btf_trace_hrtimer_expire_exit)(void *, struct hrtimer *); + +typedef void (*btf_trace_hrtimer_cancel)(void *, struct hrtimer *); + +typedef void (*btf_trace_itimer_state)(void *, int, const struct itimerspec64 * const, long long unsigned int); + +typedef void (*btf_trace_itimer_expire)(void *, int, struct pid *, long long unsigned int); + +typedef void (*btf_trace_tick_stop)(void *, int, int); + +struct timer_base { + raw_spinlock_t lock; + struct timer_list *running_timer; + long unsigned int clk; + long unsigned int next_expiry; + unsigned int cpu; + bool next_expiry_recalc; + bool is_idle; + bool timers_pending; + long unsigned int pending_map[9]; + struct hlist_head vectors[576]; + long: 64; + long: 64; +}; + +typedef struct sigevent sigevent_t; + +struct old_timex32 { + u32 modes; + s32 offset; + s32 freq; + s32 maxerror; + s32 esterror; + s32 status; + s32 constant; + s32 precision; + s32 tolerance; + struct old_timeval32 time; + s32 tick; + s32 ppsfreq; + s32 jitter; + s32 shift; + s32 stabil; + s32 jitcnt; + s32 calcnt; + s32 errcnt; + s32 stbcnt; + s32 tai; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct timer_hash_bucket { + spinlock_t lock; + struct hlist_head head; +}; + +typedef struct k_itimer *class_lock_timer_t; + +struct tick_sched { + long unsigned int flags; + unsigned int stalled_jiffies; + long unsigned int last_tick_jiffies; + struct hrtimer sched_timer; + ktime_t last_tick; + ktime_t next_tick; + long unsigned int idle_jiffies; + ktime_t idle_waketime; + unsigned int got_idle_tick; + seqcount_t idle_sleeptime_seq; + ktime_t idle_entrytime; + long unsigned int last_jiffies; + u64 timer_expires_base; + u64 timer_expires; + u64 next_timer; + ktime_t idle_expires; + long unsigned int idle_calls; + long unsigned int idle_sleeps; + ktime_t idle_exittime; + ktime_t idle_sleeptime; + ktime_t iowait_sleeptime; + atomic_t tick_dep_mask; + long unsigned int check_clocks; +}; + +struct rt_waiter_node { + struct rb_node entry; + int prio; + u64 deadline; +}; + +struct rt_mutex_waiter { + struct rt_waiter_node tree; + struct rt_waiter_node pi_tree; + struct task_struct *task; + struct rt_mutex_base *lock; + unsigned int wake_state; + struct ww_acquire_ctx *ww_ctx; +}; + +struct futex_hash_bucket { + atomic_t waiters; + spinlock_t lock; + struct plist_head chain; + struct futex_private_hash *priv; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct futex_private_hash { + int state; + unsigned int hash_mask; + struct callback_head rcu; + void *mm; + bool custom; + long: 64; + long: 64; + long: 64; + struct futex_hash_bucket queues[0]; +}; + +typedef struct mm_struct *class_mmap_read_lock_t; + +enum futex_access { + FUTEX_READ = 0, + FUTEX_WRITE = 1, +}; + +typedef struct futex_hash_bucket *class_hb_t; + +typedef struct futex_private_hash *class_private_hash_t; + +enum { + FR_PERCPU = 0, + FR_ATOMIC = 1, +}; + +struct dma_chan___2 { + int lock; + const char *device_id; +}; + +enum pkey_id_type { + PKEY_ID_PGP = 0, + PKEY_ID_X509 = 1, + PKEY_ID_PKCS7 = 2, +}; + +struct module_signature { + u8 algo; + u8 hash; + u8 id_type; + u8 signer_len; + u8 key_id_len; + u8 __pad[3]; + __be32 sig_len; +}; + +struct kallsym_iter { + loff_t pos; + loff_t pos_mod_end; + loff_t pos_ftrace_mod_end; + loff_t pos_bpf_end; + long unsigned int value; + unsigned int nameoff; + char type; + char name[512]; + char module_name[56]; + int exported; + int show_value; +}; + +struct bpf_iter__ksym { + union { + struct bpf_iter_meta *meta; + }; + union { + struct kallsym_iter *ksym; + }; +}; + +typedef long unsigned int elf_greg_t; + +typedef elf_greg_t elf_gregset_t[27]; + +struct elf64_phdr { + Elf64_Word p_type; + Elf64_Word p_flags; + Elf64_Off p_offset; + Elf64_Addr p_vaddr; + Elf64_Addr p_paddr; + Elf64_Xword p_filesz; + Elf64_Xword p_memsz; + Elf64_Xword p_align; +}; + +typedef struct elf64_phdr Elf64_Phdr; + +struct elf_siginfo { + int si_signo; + int si_code; + int si_errno; +}; + +struct elf_prstatus_common { + struct elf_siginfo pr_info; + short int pr_cursig; + long unsigned int pr_sigpend; + long unsigned int pr_sighold; + pid_t pr_pid; + pid_t pr_ppid; + pid_t pr_pgrp; + pid_t pr_sid; + struct __kernel_old_timeval pr_utime; + struct __kernel_old_timeval pr_stime; + struct __kernel_old_timeval pr_cutime; + struct __kernel_old_timeval pr_cstime; +}; + +struct elf_prstatus { + struct elf_prstatus_common common; + elf_gregset_t pr_reg; + int pr_fpvalid; +}; + +struct debugfs_blob_wrapper { + void *data; + long unsigned int size; +}; + +struct kho_scratch { + phys_addr_t addr; + phys_addr_t size; +}; + +enum kho_event { + KEXEC_KHO_FINALIZE = 0, + KEXEC_KHO_ABORT = 1, +}; + +struct kho_mem_phys_bits { + long unsigned int preserve[64]; +}; + +struct kho_mem_phys { + struct xarray phys_bits; +}; + +struct kho_mem_track { + struct xarray orders; +}; + +struct khoser_mem_chunk; + +struct kho_serialization { + struct page *fdt; + struct list_head fdt_list; + struct dentry *sub_fdt_dir; + struct kho_mem_track track; + struct khoser_mem_chunk *preserved_mem_map; +}; + +struct khoser_mem_chunk_hdr { + union { + phys_addr_t phys; + struct khoser_mem_chunk *ptr; + } next; + unsigned int order; + unsigned int num_elms; +}; + +struct khoser_mem_bitmap_ptr { + phys_addr_t phys_start; + union { + phys_addr_t phys; + struct kho_mem_phys_bits *ptr; + } bitmap; +}; + +struct khoser_mem_chunk { + struct khoser_mem_chunk_hdr hdr; + struct khoser_mem_bitmap_ptr bitmaps[255]; +}; + +struct fdt_debugfs { + struct list_head list; + struct debugfs_blob_wrapper wrapper; + struct dentry *file; +}; + +struct kho_out { + struct blocking_notifier_head chain_head; + struct dentry *dir; + struct mutex lock; + struct kho_serialization ser; + bool finalized; +}; + +struct kho_in { + struct dentry *dir; + phys_addr_t fdt_phys; + phys_addr_t scratch_phys; + struct list_head fdt_list; +}; + +enum { + CGRP_NOTIFY_ON_RELEASE = 0, + CGRP_CPUSET_CLONE_CHILDREN = 1, + CGRP_FREEZE = 2, + CGRP_FROZEN = 3, +}; + +struct sched_domain_attr { + int relax_domain_level; +}; + +struct uf_node { + struct uf_node *parent; + unsigned int rank; +}; + +struct fmeter { + int cnt; + int val; + time64_t time; + spinlock_t lock; +}; + +enum prs_errcode { + PERR_NONE = 0, + PERR_INVCPUS = 1, + PERR_INVPARENT = 2, + PERR_NOTPART = 3, + PERR_NOTEXCL = 4, + PERR_NOCPUS = 5, + PERR_HOTPLUG = 6, + PERR_CPUSEMPTY = 7, + PERR_HKEEPING = 8, + PERR_ACCESS = 9, + PERR_REMOTE = 10, +}; + +typedef enum { + CS_ONLINE = 0, + CS_CPU_EXCLUSIVE = 1, + CS_MEM_EXCLUSIVE = 2, + CS_MEM_HARDWALL = 3, + CS_MEMORY_MIGRATE = 4, + CS_SCHED_LOAD_BALANCE = 5, + CS_SPREAD_PAGE = 6, + CS_SPREAD_SLAB = 7, +} cpuset_flagbits_t; + +typedef enum { + FILE_MEMORY_MIGRATE = 0, + FILE_CPULIST = 1, + FILE_MEMLIST = 2, + FILE_EFFECTIVE_CPULIST = 3, + FILE_EFFECTIVE_MEMLIST = 4, + FILE_SUBPARTS_CPULIST = 5, + FILE_EXCLUSIVE_CPULIST = 6, + FILE_EFFECTIVE_XCPULIST = 7, + FILE_ISOLATED_CPULIST = 8, + FILE_CPU_EXCLUSIVE = 9, + FILE_MEM_EXCLUSIVE = 10, + FILE_MEM_HARDWALL = 11, + FILE_SCHED_LOAD_BALANCE = 12, + FILE_PARTITION_ROOT = 13, + FILE_SCHED_RELAX_DOMAIN_LEVEL = 14, + FILE_MEMORY_PRESSURE_ENABLED = 15, + FILE_MEMORY_PRESSURE = 16, + FILE_SPREAD_PAGE = 17, + FILE_SPREAD_SLAB = 18, +} cpuset_filetype_t; + +struct cpuset { + struct cgroup_subsys_state css; + long unsigned int flags; + cpumask_var_t cpus_allowed; + nodemask_t mems_allowed; + cpumask_var_t effective_cpus; + nodemask_t effective_mems; + cpumask_var_t effective_xcpus; + cpumask_var_t exclusive_cpus; + nodemask_t old_mems_allowed; + struct fmeter fmeter; + int attach_in_progress; + int relax_domain_level; + int nr_subparts; + int partition_root_state; + int nr_deadline_tasks; + int nr_migrate_dl_tasks; + u64 sum_migrate_dl_bw; + enum prs_errcode prs_err; + struct cgroup_file partition_file; + struct list_head remote_sibling; + struct uf_node node; +}; + +struct tmpmasks { + cpumask_var_t addmask; + cpumask_var_t delmask; + cpumask_var_t new_cpus; +}; + +enum partition_cmd { + partcmd_enable = 0, + partcmd_enablei = 1, + partcmd_disable = 2, + partcmd_update = 3, + partcmd_invalidate = 4, +}; + +struct cpuset_migrate_mm_work { + struct work_struct work; + struct mm_struct *mm; + nodemask_t from; + nodemask_t to; +}; + +enum audit_nlgrps { + AUDIT_NLGRP_NONE = 0, + AUDIT_NLGRP_READLOG = 1, + __AUDIT_NLGRP_MAX = 2, +}; + +struct audit_status { + __u32 mask; + __u32 enabled; + __u32 failure; + __u32 pid; + __u32 rate_limit; + __u32 backlog_limit; + __u32 lost; + __u32 backlog; + union { + __u32 version; + __u32 feature_bitmap; + }; + __u32 backlog_wait_time; + __u32 backlog_wait_time_actual; +}; + +struct audit_features { + __u32 vers; + __u32 mask; + __u32 features; + __u32 lock; +}; + +struct audit_tty_status { + __u32 enabled; + __u32 log_passwd; +}; + +struct audit_sig_info { + uid_t uid; + pid_t pid; + char ctx[0]; +}; + +struct audit_netlink_list { + __u32 portid; + struct net *net; + struct sk_buff_head q; +}; + +struct audit_net { + struct sock *sk; +}; + +struct auditd_connection { + struct pid *pid; + u32 portid; + struct net *net; + struct callback_head rcu; +}; + +struct audit_ctl_mutex { + struct mutex lock; + void *owner; +}; + +struct audit_buffer { + struct sk_buff *skb; + struct sk_buff_head skb_list; + struct audit_context *ctx; + struct audit_stamp stamp; + gfp_t gfp_mask; +}; + +struct audit_reply { + __u32 portid; + struct net *net; + struct sk_buff *skb; +}; + +enum con_flush_mode { + CONSOLE_FLUSH_PENDING = 0, + CONSOLE_REPLAY_ALL = 1, +}; + +struct kgdb_io { + const char *name; + int (*read_char)(void); + void (*write_char)(u8); + void (*flush)(void); + int (*init)(void); + void (*deinit)(void); + void (*pre_exception)(void); + void (*post_exception)(void); + struct console *cons; +}; + +enum { + KDB_NOT_INITIALIZED = 0, + KDB_INIT_EARLY = 1, + KDB_INIT_FULL = 2, +}; + +struct kgdb_state { + int ex_vector; + int signo; + int err_code; + int cpu; + int pass_exception; + long unsigned int thr_query; + long unsigned int threadid; + long int kgdb_usethreadid; + struct pt_regs *linux_regs; + atomic_t *send_ready; +}; + +typedef int (*get_char_func)(void); + +struct tp_module { + struct list_head list; + struct module *mod; +}; + +enum tp_func_state { + TP_FUNC_0 = 0, + TP_FUNC_1 = 1, + TP_FUNC_2 = 2, + TP_FUNC_N = 3, +}; + +enum tp_transition_sync { + TP_TRANSITION_SYNC_1_0_1 = 0, + TP_TRANSITION_SYNC_N_2_1 = 1, + _NR_TP_TRANSITION_SYNC = 2, +}; + +struct tp_transition_snapshot { + long unsigned int rcu; + bool ongoing; +}; + +struct tp_probes { + struct callback_head rcu; + struct tracepoint_func probes[0]; +}; + +typedef void (*swap_r_func_t)(void *, void *, int, const void *); + +typedef int (*cmp_r_func_t)(const void *, const void *, const void *); + +enum ftrace_dump_mode { + DUMP_NONE = 0, + DUMP_ALL = 1, + DUMP_ORIG = 2, + DUMP_PARAM = 3, +}; + +typedef struct trace_buffer *class_ring_buffer_nest_t; + +struct partial_page { + unsigned int offset; + unsigned int len; + long unsigned int private; +}; + +struct splice_pipe_desc { + struct page **pages; + struct partial_page *partial; + int nr_pages; + unsigned int nr_pages_max; + const struct pipe_buf_operations *ops; + void (*spd_release)(struct splice_pipe_desc *, unsigned int); +}; + +struct trace_export { + struct trace_export *next; + void (*write)(struct trace_export *, const void *, unsigned int); + int flags; +}; + +enum trace_iter_flags { + TRACE_FILE_LAT_FMT = 1, + TRACE_FILE_ANNOTATE = 2, + TRACE_FILE_TIME_IN_NS = 4, +}; + +enum event_trigger_type { + ETT_NONE = 0, + ETT_TRACE_ONOFF = 1, + ETT_SNAPSHOT = 2, + ETT_STACKTRACE = 4, + ETT_EVENT_ENABLE = 8, + ETT_EVENT_HIST = 16, + ETT_HIST_ENABLE = 32, + ETT_EVENT_EPROBE = 64, +}; + +struct stack_entry { + struct trace_entry ent; + int size; + long unsigned int caller[0]; +}; + +struct userstack_entry { + struct trace_entry ent; + unsigned int tgid; + long unsigned int caller[8]; +}; + +struct bprint_entry { + struct trace_entry ent; + long unsigned int ip; + const char *fmt; + u32 buf[0]; +}; + +struct raw_data_entry { + struct trace_entry ent; + unsigned int id; + char buf[0]; +}; + +struct bputs_entry { + struct trace_entry ent; + long unsigned int ip; + const char *str; +}; + +struct func_repeats_entry { + struct trace_entry ent; + long unsigned int ip; + long unsigned int parent_ip; + u16 count; + u16 top_delta_ts; + u32 bottom_delta_ts; +}; + +enum { + TRACE_ARRAY_FL_GLOBAL = 1, + TRACE_ARRAY_FL_BOOT = 2, + TRACE_ARRAY_FL_LAST_BOOT = 4, + TRACE_ARRAY_FL_MOD_INIT = 8, + TRACE_ARRAY_FL_MEMMAP = 16, +}; + +struct ftrace_func_command { + struct list_head list; + char *name; + int (*func)(struct trace_array *, struct ftrace_hash *, char *, char *, char *, int); +}; + +struct ftrace_probe_ops { + void (*func)(long unsigned int, long unsigned int, struct trace_array *, struct ftrace_probe_ops *, void *); + int (*init)(struct ftrace_probe_ops *, struct trace_array *, long unsigned int, void *, void **); + void (*free)(struct ftrace_probe_ops *, struct trace_array *, long unsigned int, void *); + int (*print)(struct seq_file *, long unsigned int, struct ftrace_probe_ops *, void *); +}; + +typedef int (*ftrace_mapper_func)(void *); + +struct trace_parser { + bool cont; + bool fail; + char *buffer; + unsigned int idx; + unsigned int size; +}; + +enum trace_iterator_flags { + TRACE_ITER_PRINT_PARENT = 1, + TRACE_ITER_SYM_OFFSET = 2, + TRACE_ITER_SYM_ADDR = 4, + TRACE_ITER_VERBOSE = 8, + TRACE_ITER_RAW = 16, + TRACE_ITER_HEX = 32, + TRACE_ITER_BIN = 64, + TRACE_ITER_BLOCK = 128, + TRACE_ITER_FIELDS = 256, + TRACE_ITER_PRINTK = 512, + TRACE_ITER_ANNOTATE = 1024, + TRACE_ITER_USERSTACKTRACE = 2048, + TRACE_ITER_SYM_USEROBJ = 4096, + TRACE_ITER_PRINTK_MSGONLY = 8192, + TRACE_ITER_CONTEXT_INFO = 16384, + TRACE_ITER_LATENCY_FMT = 32768, + TRACE_ITER_RECORD_CMD = 65536, + TRACE_ITER_RECORD_TGID = 131072, + TRACE_ITER_OVERWRITE = 262144, + TRACE_ITER_STOP_ON_FREE = 524288, + TRACE_ITER_IRQ_INFO = 1048576, + TRACE_ITER_MARKERS = 2097152, + TRACE_ITER_EVENT_FORK = 4194304, + TRACE_ITER_TRACE_PRINTK = 8388608, + TRACE_ITER_COPY_MARKER = 16777216, + TRACE_ITER_PAUSE_ON_TRACE = 33554432, + TRACE_ITER_HASH_PTR = 67108864, + TRACE_ITER_FUNCTION = 134217728, + TRACE_ITER_FUNC_FORK = 268435456, + TRACE_ITER_DISPLAY_GRAPH = 536870912, + TRACE_ITER_STACKTRACE = 1073741824, +}; + +struct pipe_wait { + struct trace_iterator *iter; + int wait_index; +}; + +struct ftrace_stack { + long unsigned int calls[1024]; +}; + +struct ftrace_stacks { + struct ftrace_stack stacks[4]; +}; + +struct trace_buffer_struct { + int nesting; + char buffer[4096]; +}; + +struct trace_mod_entry { + long unsigned int mod_addr; + char mod_name[56]; +}; + +struct trace_scratch { + unsigned int clock_id; + long unsigned int text_addr; + long unsigned int nr_entries; + struct trace_mod_entry entries[0]; +}; + +struct trace_user_buf { + char *buf; +}; + +struct trace_user_buf_info { + struct trace_user_buf *tbuf; + int ref; +}; + +struct ftrace_buffer_info { + struct trace_iterator iter; + void *spare; + unsigned int spare_cpu; + unsigned int spare_size; + unsigned int read; +}; + +struct err_info { + const char **errs; + u8 type; + u16 pos; + u64 ts; +}; + +struct tracing_log_err { + struct list_head list; + struct err_info info; + char loc[128]; + char *cmd; +}; + +struct buffer_ref { + struct trace_buffer *buffer; + void *page; + int cpu; + refcount_t refcount; +}; + +typedef int (*tracing_map_cmp_fn_t)(void *, void *); + +struct tracing_map_field { + tracing_map_cmp_fn_t cmp_fn; + union { + atomic64_t sum; + unsigned int offset; + }; +}; + +struct tracing_map; + +struct tracing_map_elt { + struct tracing_map *map; + struct tracing_map_field *fields; + atomic64_t *vars; + bool *var_set; + void *key; + void *private_data; +}; + +struct tracing_map_sort_key { + unsigned int field_idx; + bool descending; +}; + +struct tracing_map_array; + +struct tracing_map_ops; + +struct tracing_map { + unsigned int key_size; + unsigned int map_bits; + unsigned int map_size; + unsigned int max_elts; + atomic_t next_elt; + struct tracing_map_array *elts; + struct tracing_map_array *map; + const struct tracing_map_ops *ops; + void *private_data; + struct tracing_map_field fields[6]; + unsigned int n_fields; + int key_idx[3]; + unsigned int n_keys; + struct tracing_map_sort_key sort_key; + unsigned int n_vars; + atomic64_t hits; + atomic64_t drops; +}; + +struct tracing_map_entry { + u32 key; + struct tracing_map_elt *val; +}; + +struct tracing_map_sort_entry { + void *key; + struct tracing_map_elt *elt; + bool elt_copied; + bool dup; +}; + +struct tracing_map_array { + unsigned int entries_per_page; + unsigned int entry_size_shift; + unsigned int entry_shift; + unsigned int entry_mask; + unsigned int n_pages; + void **pages; +}; + +struct tracing_map_ops { + int (*elt_alloc)(struct tracing_map_elt *); + void (*elt_free)(struct tracing_map_elt *); + void (*elt_clear)(struct tracing_map_elt *); + void (*elt_init)(struct tracing_map_elt *); +}; + +struct saved_cmdlines_buffer { + unsigned int map_pid_to_cmdline[32769]; + unsigned int *map_cmdline_to_pid; + unsigned int cmdline_num; + int cmdline_idx; + char saved_cmdlines[0]; +}; + +struct osnoise_entry { + struct trace_entry ent; + u64 noise; + u64 runtime; + u64 max_sample; + unsigned int hw_count; + unsigned int nmi_count; + unsigned int irq_count; + unsigned int softirq_count; + unsigned int thread_count; +}; + +struct timerlat_entry { + struct trace_entry ent; + unsigned int seqnum; + int context; + u64 timer_latency; +}; + +struct osnoise_sample { + u64 runtime; + u64 noise; + u64 max_sample; + int hw_count; + int nmi_count; + int irq_count; + int softirq_count; + int thread_count; +}; + +struct timerlat_sample { + u64 timer_latency; + unsigned int seqnum; + int context; +}; + +struct trace_event_raw_osnoise_sample { + struct trace_entry ent; + u64 runtime; + u64 noise; + u64 max_sample; + int hw_count; + int irq_count; + int nmi_count; + int softirq_count; + int thread_count; + char __data[0]; +}; + +struct trace_event_raw_timerlat_sample { + struct trace_entry ent; + u64 timer_latency; + unsigned int seqnum; + int context; + char __data[0]; +}; + +struct trace_event_raw_thread_noise { + struct trace_entry ent; + char comm[16]; + u64 start; + u64 duration; + pid_t pid; + char __data[0]; +}; + +struct trace_event_raw_softirq_noise { + struct trace_entry ent; + u64 start; + u64 duration; + int vector; + char __data[0]; +}; + +struct trace_event_raw_irq_noise { + struct trace_entry ent; + u64 start; + u64 duration; + u32 __data_loc_desc; + int vector; + char __data[0]; +}; + +struct trace_event_raw_nmi_noise { + struct trace_entry ent; + u64 start; + u64 duration; + char __data[0]; +}; + +struct trace_event_raw_sample_threshold { + struct trace_entry ent; + u64 start; + u64 duration; + u64 interference; + char __data[0]; +}; + +struct trace_event_data_offsets_osnoise_sample {}; + +struct trace_event_data_offsets_timerlat_sample {}; + +struct trace_event_data_offsets_thread_noise {}; + +struct trace_event_data_offsets_softirq_noise {}; + +struct trace_event_data_offsets_irq_noise { + u32 desc; + const void *desc_ptr_; +}; + +struct trace_event_data_offsets_nmi_noise {}; + +struct trace_event_data_offsets_sample_threshold {}; + +typedef void (*btf_trace_osnoise_sample)(void *, struct osnoise_sample *); + +typedef void (*btf_trace_timerlat_sample)(void *, struct timerlat_sample *); + +typedef void (*btf_trace_thread_noise)(void *, struct task_struct *, u64, u64); + +typedef void (*btf_trace_softirq_noise)(void *, int, u64, u64); + +typedef void (*btf_trace_irq_noise)(void *, int, const char *, u64, u64); + +typedef void (*btf_trace_nmi_noise)(void *, u64, u64); + +typedef void (*btf_trace_sample_threshold)(void *, u64, u64, u64); + +enum osnoise_options_index { + OSN_DEFAULTS = 0, + OSN_WORKLOAD = 1, + OSN_PANIC_ON_STOP = 2, + OSN_PREEMPT_DISABLE = 3, + OSN_IRQ_DISABLE = 4, + OSN_MAX = 5, +}; + +struct osnoise_instance { + struct list_head list; + struct trace_array *tr; +}; + +struct osn_nmi { + u64 count; + u64 delta_start; +}; + +struct osn_irq { + u64 count; + u64 arrival_time; + u64 delta_start; +}; + +struct osn_softirq { + u64 count; + u64 arrival_time; + u64 delta_start; +}; + +struct osn_thread { + u64 count; + u64 arrival_time; + u64 delta_start; +}; + +struct osnoise_variables { + struct task_struct *kthread; + bool sampling; + pid_t pid; + struct osn_nmi nmi; + struct osn_irq irq; + struct osn_softirq softirq; + struct osn_thread thread; + local_t int_counter; +}; + +struct timerlat_variables { + struct task_struct *kthread; + struct hrtimer timer; + u64 rel_period; + u64 abs_period; + bool tracing_thread; + u64 count; + bool uthread_migrate; +}; + +struct osnoise_data { + u64 sample_period; + u64 sample_runtime; + u64 stop_tracing; + u64 stop_tracing_total; + u64 timerlat_period; + u64 print_stack; + int timerlat_tracer; + bool tainted; +}; + +struct trace_stack { + int stack_size; + int nr_entries; + long unsigned int calls[256]; +}; + +typedef u64 compat_u64; + +enum blktrace_notify { + __BLK_TN_PROCESS = 0, + __BLK_TN_TIMESTAMP = 1, + __BLK_TN_MESSAGE = 2, + __BLK_TN_CGROUP = 256, +}; + +struct blk_io_trace { + __u32 magic; + __u32 sequence; + __u64 time; + __u64 sector; + __u32 bytes; + __u32 action; + __u32 pid; + __u32 device; + __u32 cpu; + __u16 error; + __u16 pdu_len; +}; + +struct blk_io_trace_remap { + __be32 device_from; + __be32 device_to; + __be64 sector_from; +}; + +enum { + Blktrace_setup = 1, + Blktrace_running = 2, + Blktrace_stopped = 3, +}; + +struct blk_user_trace_setup { + char name[32]; + __u16 act_mask; + __u32 buf_size; + __u32 buf_nr; + __u64 start_lba; + __u64 end_lba; + __u32 pid; +}; + +struct compat_blk_user_trace_setup { + char name[32]; + u16 act_mask; + int: 0; + u32 buf_size; + u32 buf_nr; + compat_u64 start_lba; + compat_u64 end_lba; + u32 pid; +} __attribute__((packed)); + +typedef void blk_log_action_t(struct trace_iterator *, const char *, bool); + +struct syscall_trace_enter { + struct trace_entry ent; + int nr; + long unsigned int args[0]; +}; + +struct syscall_trace_exit { + struct trace_entry ent; + int nr; + long int ret; +}; + +struct syscall_tp_t { + struct trace_entry ent; + int syscall_nr; + long unsigned int ret; +}; + +struct syscall_tp_t___2 { + struct trace_entry ent; + int syscall_nr; + long unsigned int args[6]; +}; + +struct eprobe_trace_entry_head { + struct trace_entry ent; +}; + +enum { + EVENT_TRIGGER_FL_PROBE = 1, +}; + +struct event_trigger_ops; + +struct event_command; + +struct event_trigger_data { + long unsigned int count; + int ref; + int flags; + const struct event_trigger_ops *ops; + struct event_command *cmd_ops; + struct event_filter *filter; + char *filter_str; + void *private_data; + bool paused; + bool paused_tmp; + struct list_head list; + char *name; + struct list_head named_list; + struct event_trigger_data *named_data; +}; + +struct event_trigger_ops { + void (*trigger)(struct event_trigger_data *, struct trace_buffer *, void *, struct ring_buffer_event *); + int (*init)(struct event_trigger_data *); + void (*free)(struct event_trigger_data *); + int (*print)(struct seq_file *, struct event_trigger_data *); +}; + +struct event_command { + struct list_head list; + char *name; + enum event_trigger_type trigger_type; + int flags; + int (*parse)(struct event_command *, struct trace_event_file *, char *, char *, char *); + int (*reg)(char *, struct event_trigger_data *, struct trace_event_file *); + void (*unreg)(char *, struct event_trigger_data *, struct trace_event_file *); + void (*unreg_all)(struct trace_event_file *); + int (*set_filter)(char *, struct event_trigger_data *, struct trace_event_file *); + const struct event_trigger_ops * (*get_trigger_ops)(char *, char *); +}; + +enum event_command_flags { + EVENT_CMD_FL_POST_TRIGGER = 1, + EVENT_CMD_FL_NEEDS_REC = 2, +}; + +struct trace_eprobe { + const char *event_system; + const char *event_name; + char *filter_str; + struct trace_event_call *event; + struct dyn_event devent; + struct trace_probe tp; +}; + +struct eprobe_data { + struct trace_event_file *file; + struct trace_eprobe *ep; +}; + +struct uprobe_consumer { + int (*handler)(struct uprobe_consumer *, struct pt_regs *, __u64 *); + int (*ret_handler)(struct uprobe_consumer *, long unsigned int, struct pt_regs *, __u64 *); + bool (*filter)(struct uprobe_consumer *, struct mm_struct *); + struct list_head cons_node; + __u64 id; +}; + +enum { + BPF_F_UPROBE_MULTI_RETURN = 1, +}; + +enum { + BPF_F_GET_BRANCH_RECORDS_SIZE = 1, +}; + +struct bpf_perf_event_value { + __u64 counter; + __u64 enabled; + __u64 running; +}; + +struct bpf_raw_tracepoint_args { + __u64 args[0]; +}; + +enum bpf_task_fd_type { + BPF_FD_TYPE_RAW_TRACEPOINT = 0, + BPF_FD_TYPE_TRACEPOINT = 1, + BPF_FD_TYPE_KPROBE = 2, + BPF_FD_TYPE_KRETPROBE = 3, + BPF_FD_TYPE_UPROBE = 4, + BPF_FD_TYPE_URETPROBE = 5, +}; + +struct btf_ptr { + void *ptr; + __u32 type_id; + __u32 flags; +}; + +enum { + BTF_F_COMPACT = 1, + BTF_F_NONAME = 2, + BTF_F_PTR_RAW = 4, + BTF_F_ZERO = 8, +}; + +struct bpf_link_primer { + struct bpf_link *link; + struct file *file; + int fd; + u32 id; +}; + +struct bpf_event_entry { + struct perf_event *event; + struct file *perf_file; + struct file *map_file; + struct callback_head rcu; +}; + +typedef u32 (*bpf_prog_run_fn)(const struct bpf_prog *, const void *); + +struct bpf_key { + struct key *key; + bool has_ref; +}; + +typedef struct pt_regs bpf_user_pt_regs_t; + +struct bpf_perf_event_data { + bpf_user_pt_regs_t regs; + __u64 sample_period; + __u64 addr; +}; + +struct perf_event_query_bpf { + __u32 ids_len; + __u32 prog_cnt; + __u32 ids[0]; +}; + +struct bpf_perf_event_data_kern { + bpf_user_pt_regs_t *regs; + struct perf_sample_data *data; + struct perf_event *event; +}; + +struct trace_uprobe; + +struct uprobe_dispatch_data { + struct trace_uprobe *tu; + long unsigned int bp_addr; +}; + +struct trace_event_raw_bpf_trace_printk { + struct trace_entry ent; + u32 __data_loc_bpf_string; + char __data[0]; +}; + +struct trace_event_data_offsets_bpf_trace_printk { + u32 bpf_string; + const void *bpf_string_ptr_; +}; + +typedef void (*btf_trace_bpf_trace_printk)(void *, const char *); + +struct bpf_trace_module { + struct module *module; + struct list_head list; +}; + +typedef u64 (*btf_bpf_override_return)(struct pt_regs *, long unsigned int); + +typedef u64 (*btf_bpf_probe_read_user)(void *, u32, const void *); + +typedef u64 (*btf_bpf_probe_read_user_str)(void *, u32, const void *); + +typedef u64 (*btf_bpf_probe_read_kernel)(void *, u32, const void *); + +typedef u64 (*btf_bpf_probe_read_kernel_str)(void *, u32, const void *); + +typedef u64 (*btf_bpf_probe_read_compat)(void *, u32, const void *); + +typedef u64 (*btf_bpf_probe_read_compat_str)(void *, u32, const void *); + +typedef u64 (*btf_bpf_probe_write_user)(void *, const void *, u32); + +typedef u64 (*btf_bpf_trace_printk)(char *, u32, u64, u64, u64); + +typedef u64 (*btf_bpf_trace_vprintk)(char *, u32, const void *, u32); + +typedef u64 (*btf_bpf_seq_printf)(struct seq_file *, char *, u32, const void *, u32); + +typedef u64 (*btf_bpf_seq_write)(struct seq_file *, const void *, u32); + +typedef u64 (*btf_bpf_seq_printf_btf)(struct seq_file *, struct btf_ptr *, u32, u64); + +typedef u64 (*btf_bpf_perf_event_read)(struct bpf_map *, u64); + +typedef u64 (*btf_bpf_perf_event_read_value)(struct bpf_map *, u64, struct bpf_perf_event_value *, u32); + +struct bpf_trace_sample_data { + struct perf_sample_data sds[3]; +}; + +typedef u64 (*btf_bpf_perf_event_output)(struct pt_regs *, struct bpf_map *, u64, void *, u64); + +struct bpf_nested_pt_regs { + struct pt_regs regs[3]; +}; + +typedef u64 (*btf_bpf_get_current_task)(void); + +typedef u64 (*btf_bpf_get_current_task_btf)(void); + +typedef u64 (*btf_bpf_task_pt_regs)(struct task_struct *); + +struct send_signal_irq_work { + struct irq_work irq_work; + struct task_struct *task; + u32 sig; + enum pid_type type; + bool has_siginfo; + struct kernel_siginfo info; +}; + +typedef u64 (*btf_bpf_send_signal)(u32); + +typedef u64 (*btf_bpf_send_signal_thread)(u32); + +typedef u64 (*btf_bpf_d_path)(struct path *, char *, u32); + +typedef u64 (*btf_bpf_snprintf_btf)(char *, u32, struct btf_ptr *, u32, u64); + +typedef u64 (*btf_bpf_get_func_ip_tracing)(void *); + +typedef u64 (*btf_bpf_get_func_ip_kprobe)(struct pt_regs *); + +typedef u64 (*btf_bpf_get_func_ip_kprobe_multi)(struct pt_regs *); + +typedef u64 (*btf_bpf_get_attach_cookie_kprobe_multi)(struct pt_regs *); + +typedef u64 (*btf_bpf_get_func_ip_uprobe_multi)(struct pt_regs *); + +typedef u64 (*btf_bpf_get_attach_cookie_uprobe_multi)(struct pt_regs *); + +typedef u64 (*btf_bpf_get_attach_cookie_trace)(void *); + +typedef u64 (*btf_bpf_get_attach_cookie_pe)(struct bpf_perf_event_data_kern *); + +typedef u64 (*btf_bpf_get_attach_cookie_tracing)(void *); + +typedef u64 (*btf_bpf_get_branch_snapshot)(void *, u32, u64); + +typedef u64 (*btf_get_func_arg)(void *, u32, u64 *); + +typedef u64 (*btf_get_func_ret)(void *, u64 *); + +typedef u64 (*btf_get_func_arg_cnt)(void *); + +typedef u64 (*btf_bpf_perf_event_output_tp)(void *, struct bpf_map *, u64, void *, u64); + +typedef u64 (*btf_bpf_get_stackid_tp)(void *, struct bpf_map *, u64); + +typedef u64 (*btf_bpf_get_stack_tp)(void *, void *, u32, u64); + +typedef u64 (*btf_bpf_perf_prog_read_value)(struct bpf_perf_event_data_kern *, struct bpf_perf_event_value *, u32); + +typedef u64 (*btf_bpf_read_branch_records)(struct bpf_perf_event_data_kern *, void *, u32, u64); + +struct bpf_raw_tp_regs { + struct pt_regs regs[3]; +}; + +typedef u64 (*btf_bpf_perf_event_output_raw_tp)(struct bpf_raw_tracepoint_args *, struct bpf_map *, u64, void *, u64); + +typedef u64 (*btf_bpf_get_stackid_raw_tp)(struct bpf_raw_tracepoint_args *, struct bpf_map *, u64); + +typedef u64 (*btf_bpf_get_stack_raw_tp)(struct bpf_raw_tracepoint_args *, void *, u32, u64); + +struct bpf_session_run_ctx { + struct bpf_run_ctx run_ctx; + bool is_return; + void *data; +}; + +struct bpf_uprobe_multi_link; + +struct bpf_uprobe { + struct bpf_uprobe_multi_link *link; + loff_t offset; + long unsigned int ref_ctr_offset; + u64 cookie; + struct uprobe *uprobe; + struct uprobe_consumer consumer; + bool session; +}; + +struct bpf_uprobe_multi_link { + struct path path; + struct bpf_link link; + u32 cnt; + struct bpf_uprobe *uprobes; + struct task_struct *task; +}; + +struct bpf_uprobe_multi_run_ctx { + struct bpf_session_run_ctx session_ctx; + long unsigned int entry_ip; + struct bpf_uprobe *uprobe; +}; + +typedef int (*copy_fn_t)(void *, const void *, u32, struct task_struct *); + +struct trace_event_raw_rpm_internal { + struct trace_entry ent; + u32 __data_loc_name; + int flags; + int usage_count; + int disable_depth; + int runtime_auto; + int request_pending; + int irq_safe; + int child_count; + char __data[0]; +}; + +struct trace_event_raw_rpm_return_int { + struct trace_entry ent; + u32 __data_loc_name; + long unsigned int ip; + int ret; + char __data[0]; +}; + +struct trace_event_raw_rpm_status { + struct trace_entry ent; + u32 __data_loc_name; + int status; + char __data[0]; +}; + +struct trace_event_data_offsets_rpm_internal { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_rpm_return_int { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_rpm_status { + u32 name; + const void *name_ptr_; +}; + +typedef void (*btf_trace_rpm_suspend)(void *, struct device *, int); + +typedef void (*btf_trace_rpm_resume)(void *, struct device *, int); + +typedef void (*btf_trace_rpm_idle)(void *, struct device *, int); + +typedef void (*btf_trace_rpm_usage)(void *, struct device *, int); + +typedef void (*btf_trace_rpm_return_int)(void *, struct device *, long unsigned int, int); + +typedef void (*btf_trace_rpm_status)(void *, struct device *, enum rpm_status); + +struct btf_anon_stack { + u32 tid; + u32 offset; +}; + +enum dynevent_type { + DYNEVENT_TYPE_SYNTH = 1, + DYNEVENT_TYPE_KPROBE = 2, + DYNEVENT_TYPE_NONE = 3, +}; + +struct dynevent_cmd; + +typedef int (*dynevent_create_fn_t)(struct dynevent_cmd *); + +struct dynevent_cmd { + struct seq_buf seq; + const char *event_name; + unsigned int n_fields; + enum dynevent_type type; + dynevent_create_fn_t run_command; + void *private_data; +}; + +enum btf_func_linkage { + BTF_FUNC_STATIC = 0, + BTF_FUNC_GLOBAL = 1, + BTF_FUNC_EXTERN = 2, +}; + +struct btf_var_secinfo { + __u32 type; + __u32 offset; + __u32 size; +}; + +enum bpf_cond_pseudo_jmp { + BPF_MAY_GOTO = 0, +}; + +enum bpf_addr_space_cast { + BPF_ADDR_SPACE_CAST = 1, +}; + +struct bpf_flow_keys { + __u16 nhoff; + __u16 thoff; + __u16 addr_proto; + __u8 is_frag; + __u8 is_first_frag; + __u8 is_encap; + __u8 ip_proto; + __be16 n_proto; + __be16 sport; + __be16 dport; + union { + struct { + __be32 ipv4_src; + __be32 ipv4_dst; + }; + struct { + __u32 ipv6_src[4]; + __u32 ipv6_dst[4]; + }; + }; + __u32 flags; + __be32 flow_label; +}; + +struct bpf_sock { + __u32 bound_dev_if; + __u32 family; + __u32 type; + __u32 protocol; + __u32 mark; + __u32 priority; + __u32 src_ip4; + __u32 src_ip6[4]; + __u32 src_port; + __be16 dst_port; + __u32 dst_ip4; + __u32 dst_ip6[4]; + __u32 state; + __s32 rx_queue_mapping; +}; + +struct __sk_buff { + __u32 len; + __u32 pkt_type; + __u32 mark; + __u32 queue_mapping; + __u32 protocol; + __u32 vlan_present; + __u32 vlan_tci; + __u32 vlan_proto; + __u32 priority; + __u32 ingress_ifindex; + __u32 ifindex; + __u32 tc_index; + __u32 cb[5]; + __u32 hash; + __u32 tc_classid; + __u32 data; + __u32 data_end; + __u32 napi_id; + __u32 family; + __u32 remote_ip4; + __u32 local_ip4; + __u32 remote_ip6[4]; + __u32 local_ip6[4]; + __u32 remote_port; + __u32 local_port; + __u32 data_meta; + union { + struct bpf_flow_keys *flow_keys; + }; + __u64 tstamp; + __u32 wire_len; + __u32 gso_segs; + union { + struct bpf_sock *sk; + }; + __u32 gso_size; + __u8 tstamp_type; + __u64 hwtstamp; +}; + +enum bpf_core_relo_kind { + BPF_CORE_FIELD_BYTE_OFFSET = 0, + BPF_CORE_FIELD_BYTE_SIZE = 1, + BPF_CORE_FIELD_EXISTS = 2, + BPF_CORE_FIELD_SIGNED = 3, + BPF_CORE_FIELD_LSHIFT_U64 = 4, + BPF_CORE_FIELD_RSHIFT_U64 = 5, + BPF_CORE_TYPE_ID_LOCAL = 6, + BPF_CORE_TYPE_ID_TARGET = 7, + BPF_CORE_TYPE_EXISTS = 8, + BPF_CORE_TYPE_SIZE = 9, + BPF_CORE_ENUMVAL_EXISTS = 10, + BPF_CORE_ENUMVAL_VALUE = 11, + BPF_CORE_TYPE_MATCHES = 12, +}; + +struct bpf_core_relo { + __u32 insn_off; + __u32 type_id; + __u32 access_str_off; + enum bpf_core_relo_kind kind; +}; + +struct bpf_attach_target_info { + struct btf_func_model fmodel; + long int tgt_addr; + struct module *tgt_mod; + const char *tgt_name; + const struct btf_type *tgt_type; +}; + +enum bpf_jit_poke_reason { + BPF_POKE_REASON_TAIL_CALL = 0, +}; + +struct bpf_kfunc_desc { + struct btf_func_model func_model; + u32 func_id; + s32 imm; + u16 offset; + long unsigned int addr; +}; + +struct bpf_kfunc_desc_tab { + struct bpf_kfunc_desc descs[256]; + u32 nr_descs; +}; + +struct bpf_kfunc_btf { + struct btf *btf; + struct module *module; + u16 offset; +}; + +struct bpf_kfunc_btf_tab { + struct bpf_kfunc_btf descs[256]; + u32 nr_descs; +}; + +struct bpf_struct_ops_arg_info { + struct bpf_ctx_arg_aux *info; + u32 cnt; +}; + +struct bpf_struct_ops_desc { + struct bpf_struct_ops *st_ops; + const struct btf_type *type; + const struct btf_type *value_type; + u32 type_id; + u32 value_id; + struct bpf_struct_ops_arg_info *arg_info; +}; + +enum { + BPF_MAX_LOOPS = 8388608, + BPF_MAX_TIMED_LOOPS = 65535, +}; + +typedef u32 (*bpf_convert_ctx_access_t)(enum bpf_access_type, const struct bpf_insn *, struct bpf_insn *, struct bpf_prog *, u32 *); + +struct bpf_core_ctx { + struct bpf_verifier_log *log; + const struct btf *btf; +}; + +enum bpf_stack_slot_type { + STACK_INVALID = 0, + STACK_SPILL = 1, + STACK_MISC = 2, + STACK_ZERO = 3, + STACK_DYNPTR = 4, + STACK_ITER = 5, + STACK_IRQ_FLAG = 6, +}; + +struct bpf_verifier_state_list { + struct bpf_verifier_state state; + struct list_head node; + u32 miss_cnt; + u32 hit_cnt: 31; + u32 in_free_list: 1; +}; + +struct bpf_verifier_stack_elem { + struct bpf_verifier_state st; + int insn_idx; + int prev_insn_idx; + struct bpf_verifier_stack_elem *next; + u32 log_pos; +}; + +typedef void (*bpf_insn_print_t)(void *, const char *, ...); + +typedef const char * (*bpf_insn_revmap_call_t)(void *, const struct bpf_insn *); + +typedef const char * (*bpf_insn_print_imm_t)(void *, const struct bpf_insn *, __u64); + +struct bpf_insn_cbs { + bpf_insn_print_t cb_print; + bpf_insn_revmap_call_t cb_call; + bpf_insn_print_imm_t cb_imm; + void *private_data; +}; + +enum bpf_features { + BPF_FEAT_RDONLY_CAST_TO_VOID = 0, + BPF_FEAT_STREAMS = 1, + __MAX_BPF_FEAT = 2, +}; + +struct bpf_call_arg_meta { + struct bpf_map *map_ptr; + bool raw_mode; + bool pkt_access; + u8 release_regno; + int regno; + int access_size; + int mem_size; + u64 msize_max_value; + int ref_obj_id; + int dynptr_id; + int map_uid; + int func_id; + struct btf *btf; + u32 btf_id; + struct btf *ret_btf; + u32 ret_btf_id; + u32 subprogno; + struct btf_field *kptr_field; + s64 const_map_key; +}; + +struct bpf_kfunc_call_arg_meta { + struct btf *btf; + u32 func_id; + u32 kfunc_flags; + const struct btf_type *func_proto; + const char *func_name; + u32 ref_obj_id; + u8 release_regno; + bool r0_rdonly; + u32 ret_btf_id; + u64 r0_size; + u32 subprogno; + struct { + u64 value; + bool found; + } arg_constant; + struct btf *arg_btf; + u32 arg_btf_id; + bool arg_owning_ref; + bool arg_prog; + struct { + struct btf_field *field; + } arg_list_head; + struct { + struct btf_field *field; + } arg_rbtree_root; + struct { + enum bpf_dynptr_type type; + u32 id; + u32 ref_obj_id; + } initialized_dynptr; + struct { + u8 spi; + u8 frameno; + } iter; + struct { + struct bpf_map *ptr; + int uid; + } map; + u64 mem_size; +}; + +enum reg_arg_type { + SRC_OP = 0, + DST_OP = 1, + DST_OP_NO_MARK = 2, +}; + +struct linked_reg { + u8 frameno; + union { + u8 spi; + u8 regno; + }; + bool is_reg; +}; + +struct linked_regs { + int cnt; + struct linked_reg entries[6]; +}; + +enum bpf_access_src { + ACCESS_DIRECT = 1, + ACCESS_HELPER = 2, +}; + +struct task_struct__safe_rcu { + const cpumask_t *cpus_ptr; + struct css_set *cgroups; + struct task_struct *real_parent; + struct task_struct *group_leader; +}; + +struct cgroup__safe_rcu { + struct kernfs_node *kn; +}; + +struct css_set__safe_rcu { + struct cgroup *dfl_cgrp; +}; + +struct cgroup_subsys_state__safe_rcu { + struct cgroup *cgroup; +}; + +struct mm_struct__safe_rcu_or_null { + struct file *exe_file; +}; + +struct sk_buff__safe_rcu_or_null { + struct sock *sk; +}; + +struct request_sock__safe_rcu_or_null { + struct sock *sk; +}; + +struct bpf_iter_meta__safe_trusted { + struct seq_file *seq; +}; + +struct bpf_iter__task__safe_trusted { + struct bpf_iter_meta *meta; + struct task_struct *task; +}; + +struct linux_binprm__safe_trusted { + struct file *file; +}; + +struct file__safe_trusted { + struct inode *f_inode; +}; + +struct dentry__safe_trusted_or_null { + struct inode *d_inode; +}; + +struct socket__safe_trusted_or_null { + struct sock *sk; +}; + +enum { + PROCESS_SPIN_LOCK = 1, + PROCESS_RES_LOCK = 2, + PROCESS_LOCK_IRQ = 4, +}; + +struct bpf_reg_types { + const enum bpf_reg_type types[10]; + u32 *btf_id; +}; + +enum { + AT_PKT_END = -1, + BEYOND_PKT_END = -2, +}; + +typedef int (*set_callee_state_fn)(struct bpf_verifier_env *, struct bpf_func_state *, struct bpf_func_state *, int); + +enum { + KF_ARG_DYNPTR_ID = 0, + KF_ARG_LIST_HEAD_ID = 1, + KF_ARG_LIST_NODE_ID = 2, + KF_ARG_RB_ROOT_ID = 3, + KF_ARG_RB_NODE_ID = 4, + KF_ARG_WORKQUEUE_ID = 5, + KF_ARG_RES_SPIN_LOCK_ID = 6, +}; + +enum kfunc_ptr_arg_type { + KF_ARG_PTR_TO_CTX = 0, + KF_ARG_PTR_TO_ALLOC_BTF_ID = 1, + KF_ARG_PTR_TO_REFCOUNTED_KPTR = 2, + KF_ARG_PTR_TO_DYNPTR = 3, + KF_ARG_PTR_TO_ITER = 4, + KF_ARG_PTR_TO_LIST_HEAD = 5, + KF_ARG_PTR_TO_LIST_NODE = 6, + KF_ARG_PTR_TO_BTF_ID = 7, + KF_ARG_PTR_TO_MEM = 8, + KF_ARG_PTR_TO_MEM_SIZE = 9, + KF_ARG_PTR_TO_CALLBACK = 10, + KF_ARG_PTR_TO_RB_ROOT = 11, + KF_ARG_PTR_TO_RB_NODE = 12, + KF_ARG_PTR_TO_NULL = 13, + KF_ARG_PTR_TO_CONST_STR = 14, + KF_ARG_PTR_TO_MAP = 15, + KF_ARG_PTR_TO_WORKQUEUE = 16, + KF_ARG_PTR_TO_IRQ_FLAG = 17, + KF_ARG_PTR_TO_RES_SPIN_LOCK = 18, +}; + +enum special_kfunc_type { + KF_bpf_obj_new_impl = 0, + KF_bpf_obj_drop_impl = 1, + KF_bpf_refcount_acquire_impl = 2, + KF_bpf_list_push_front_impl = 3, + KF_bpf_list_push_back_impl = 4, + KF_bpf_list_pop_front = 5, + KF_bpf_list_pop_back = 6, + KF_bpf_list_front = 7, + KF_bpf_list_back = 8, + KF_bpf_cast_to_kern_ctx = 9, + KF_bpf_rdonly_cast = 10, + KF_bpf_rcu_read_lock = 11, + KF_bpf_rcu_read_unlock = 12, + KF_bpf_rbtree_remove = 13, + KF_bpf_rbtree_add_impl = 14, + KF_bpf_rbtree_first = 15, + KF_bpf_rbtree_root = 16, + KF_bpf_rbtree_left = 17, + KF_bpf_rbtree_right = 18, + KF_bpf_dynptr_from_skb = 19, + KF_bpf_dynptr_from_xdp = 20, + KF_bpf_dynptr_slice = 21, + KF_bpf_dynptr_slice_rdwr = 22, + KF_bpf_dynptr_clone = 23, + KF_bpf_percpu_obj_new_impl = 24, + KF_bpf_percpu_obj_drop_impl = 25, + KF_bpf_throw = 26, + KF_bpf_wq_set_callback_impl = 27, + KF_bpf_preempt_disable = 28, + KF_bpf_preempt_enable = 29, + KF_bpf_iter_css_task_new = 30, + KF_bpf_session_cookie = 31, + KF_bpf_get_kmem_cache = 32, + KF_bpf_local_irq_save = 33, + KF_bpf_local_irq_restore = 34, + KF_bpf_iter_num_new = 35, + KF_bpf_iter_num_next = 36, + KF_bpf_iter_num_destroy = 37, + KF_bpf_set_dentry_xattr = 38, + KF_bpf_remove_dentry_xattr = 39, + KF_bpf_res_spin_lock = 40, + KF_bpf_res_spin_unlock = 41, + KF_bpf_res_spin_lock_irqsave = 42, + KF_bpf_res_spin_unlock_irqrestore = 43, + KF___bpf_trap = 44, +}; + +enum { + REASON_BOUNDS = -1, + REASON_TYPE = -2, + REASON_PATHS = -3, + REASON_LIMIT = -4, + REASON_STACK = -5, +}; + +struct bpf_sanitize_info { + struct bpf_insn_aux_data aux; + bool mask_to_left; +}; + +enum { + DISCOVERED = 16, + EXPLORED = 32, + FALLTHROUGH = 1, + BRANCH = 2, +}; + +enum { + DONE_EXPLORING = 0, + KEEP_EXPLORING = 1, +}; + +struct call_summary { + u8 num_params; + bool is_void; + bool fastcall; +}; + +enum exact_level { + NOT_EXACT = 0, + EXACT = 1, + RANGE_WITHIN = 2, +}; + +enum { + PROCESS_BPF_EXIT = 1, +}; + +struct insn_live_regs { + u16 use; + u16 def; + u16 in; + u16 out; +}; + +struct bpf_iter; + +struct bpf_iter_num { + __u64 __opaque[1]; +}; + +struct bpf_iter_target_info { + struct list_head list; + const struct bpf_iter_reg *reg_info; + u32 btf_id; +}; + +struct bpf_iter_link { + struct bpf_link link; + struct bpf_iter_aux_info aux; + struct bpf_iter_target_info *tinfo; +}; + +struct bpf_iter_priv_data { + struct bpf_iter_target_info *tinfo; + const struct bpf_iter_seq_info *seq_info; + struct bpf_prog *prog; + u64 session_id; + u64 seq_num; + bool done_stop; + long: 0; + u8 target_private[0]; +}; + +typedef u64 (*btf_bpf_for_each_map_elem)(struct bpf_map *, void *, void *, u64); + +typedef u64 (*btf_bpf_loop)(u32, void *, void *, u64); + +struct bpf_iter_num_kern { + int cur; + int end; +}; + +struct bpf_iter_seq_link_info { + u32 link_id; +}; + +struct bpf_iter__bpf_link { + union { + struct bpf_iter_meta *meta; + }; + union { + struct bpf_link *link; + }; +}; + +struct pcpu_freelist_node; + +struct pcpu_freelist_head { + struct pcpu_freelist_node *first; + rqspinlock_t lock; +}; + +struct pcpu_freelist_node { + struct pcpu_freelist_node *next; +}; + +struct pcpu_freelist { + struct pcpu_freelist_head *freelist; +}; + +struct bpf_lpm_trie_key_hdr { + __u32 prefixlen; +}; + +struct bpf_lpm_trie_key_u8 { + union { + struct bpf_lpm_trie_key_hdr hdr; + __u32 prefixlen; + }; + __u8 data[0]; +}; + +struct lpm_trie_node { + struct lpm_trie_node *child[2]; + u32 prefixlen; + u32 flags; + u8 data[0]; +}; + +struct lpm_trie { + struct bpf_map map; + struct lpm_trie_node *root; + struct bpf_mem_alloc ma; + size_t n_entries; + size_t max_prefixlen; + size_t data_size; + rqspinlock_t lock; +}; + +struct bpf_tramp_run_ctx; + +typedef u64 (*bpf_trampoline_enter_t)(struct bpf_prog *, struct bpf_tramp_run_ctx *); + +struct bpf_tramp_run_ctx { + struct bpf_run_ctx run_ctx; + u64 bpf_cookie; + struct bpf_run_ctx *saved_run_ctx; +}; + +typedef void (*bpf_trampoline_exit_t)(struct bpf_prog *, u64, struct bpf_tramp_run_ctx *); + +struct bpf_shim_tramp_link { + struct bpf_tramp_link link; + struct bpf_trampoline *trampoline; +}; + +enum bpf_text_poke_type { + BPF_MOD_CALL = 0, + BPF_MOD_JUMP = 1, +}; + +struct bpf_stream_elem { + struct llist_node node; + int total_len; + int consumed_len; + char str[0]; +}; + +enum { + BPF_STREAM_MAX_CAPACITY = 100000, +}; + +struct bpf_stream_page { + refcount_t ref; + u32 consumed; + char buf[0]; +}; + +struct dump_stack_ctx { + struct bpf_stream_stage *ss; + int err; +}; + +struct bpf_devmap_val { + __u32 ifindex; + union { + int fd; + __u32 id; + } bpf_prog; +}; + +struct xdp_dev_bulk_queue { + struct xdp_frame *q[16]; + struct list_head flush_node; + struct net_device *dev; + struct net_device *dev_rx; + struct bpf_prog *xdp_prog; + unsigned int count; +}; + +struct bpf_dtab_netdev { + struct net_device *dev; + struct hlist_node index_hlist; + struct bpf_prog *xdp_prog; + struct callback_head rcu; + unsigned int idx; + struct bpf_devmap_val val; +}; + +struct bpf_dtab { + struct bpf_map map; + struct bpf_dtab_netdev **netdev_map; + struct list_head list; + struct hlist_head *dev_index_head; + spinlock_t index_lock; + unsigned int items; + u32 n_buckets; +}; + +struct bpf_mprog_fp { + struct bpf_prog *prog; +}; + +struct bpf_mprog_cp { + struct bpf_link *link; +}; + +struct bpf_mprog_bundle; + +struct bpf_mprog_entry { + struct bpf_mprog_fp fp_items[64]; + struct bpf_mprog_bundle *parent; +}; + +struct bpf_mprog_bundle { + struct bpf_mprog_entry a; + struct bpf_mprog_entry b; + struct bpf_mprog_cp cp_items[64]; + struct bpf_prog *ref; + atomic64_t revision; + u32 count; +}; + +struct bpf_tuple { + struct bpf_prog *prog; + struct bpf_link *link; +}; + +struct tcx_entry { + struct mini_Qdisc *miniq; + struct bpf_mprog_bundle bundle; + u32 miniq_active; + struct callback_head rcu; +}; + +struct tcx_link { + struct bpf_link link; + struct net_device *dev; +}; + +enum cgroup_lifetime_events { + CGROUP_LIFETIME_ONLINE = 0, + CGROUP_LIFETIME_OFFLINE = 1, +}; + +enum { + BPF_F_SYSCTL_BASE_NAME = 1, +}; + +struct bpf_cgroup_dev_ctx { + __u32 access_type; + __u32 major; + __u32 minor; +}; + +struct bpf_sysctl { + __u32 write; + __u32 file_pos; +}; + +struct bpf_sockopt { + union { + struct bpf_sock *sk; + }; + union { + void *optval; + }; + union { + void *optval_end; + }; + __s32 level; + __s32 optname; + __s32 optlen; + __s32 retval; +}; + +struct bpf_cg_run_ctx { + struct bpf_run_ctx run_ctx; + const struct bpf_prog_array_item *prog_item; + int retval; +}; + +struct bpf_skb_data_end { + struct qdisc_skb_cb qdisc_cb; + void *data_meta; + void *data_end; +}; + +struct bpf_sock_addr_kern { + struct sock *sk; + struct sockaddr *uaddr; + u64 tmp_reg; + void *t_ctx; + u32 uaddrlen; +}; + +struct bpf_sysctl_kern { + struct ctl_table_header *head; + const struct ctl_table *table; + void *cur_val; + size_t cur_len; + void *new_val; + size_t new_len; + int new_updated; + int write; + loff_t *ppos; + u64 tmp_reg; +}; + +struct bpf_sockopt_buf { + u8 data[32]; +}; + +struct bpf_sockopt_kern { + struct sock *sk; + u8 *optval; + u8 *optval_end; + s32 level; + s32 optname; + s32 optlen; + struct task_struct *current_task; + u64 tmp_reg; +}; + +struct bpf_cgroup_link { + struct bpf_link link; + struct cgroup *cgroup; +}; + +struct bpf_prog_list { + struct hlist_node node; + struct bpf_prog *prog; + struct bpf_cgroup_link *link; + struct bpf_cgroup_storage *storage[2]; + u32 flags; +}; + +struct cgroup_lsm_atype { + u32 attach_btf_id; + int refcnt; +}; + +typedef u64 (*btf_bpf_get_local_storage)(struct bpf_map *, u64); + +typedef u64 (*btf_bpf_get_retval)(void); + +typedef u64 (*btf_bpf_set_retval)(int); + +typedef u64 (*btf_bpf_sysctl_get_name)(struct bpf_sysctl_kern *, char *, size_t, u64); + +typedef u64 (*btf_bpf_sysctl_get_current_value)(struct bpf_sysctl_kern *, char *, size_t); + +typedef u64 (*btf_bpf_sysctl_get_new_value)(struct bpf_sysctl_kern *, char *, size_t); + +typedef u64 (*btf_bpf_sysctl_set_new_value)(struct bpf_sysctl_kern *, const char *, size_t); + +typedef u64 (*btf_bpf_get_netns_cookie_sockopt)(struct bpf_sockopt_kern *); + +struct bpf_crypto_type { + void * (*alloc_tfm)(const char *); + void (*free_tfm)(void *); + int (*has_algo)(const char *); + int (*setkey)(void *, const u8 *, unsigned int); + int (*setauthsize)(void *, unsigned int); + int (*encrypt)(void *, const u8 *, u8 *, unsigned int, u8 *); + int (*decrypt)(void *, const u8 *, u8 *, unsigned int, u8 *); + unsigned int (*ivsize)(void *); + unsigned int (*statesize)(void *); + u32 (*get_flags)(void *); + struct module *owner; + char name[14]; +}; + +struct bpf_crypto_type_list { + const struct bpf_crypto_type *type; + struct list_head list; +}; + +struct bpf_crypto_params { + char type[14]; + u8 reserved[2]; + char algo[128]; + u8 key[256]; + u32 key_len; + u32 authsize; +}; + +struct bpf_crypto_ctx { + const struct bpf_crypto_type *type; + void *tfm; + u32 siv_len; + struct callback_head rcu; + refcount_t usage; +}; + +typedef struct percpu_rw_semaphore *class_percpu_read_t; + +typedef struct percpu_rw_semaphore *class_percpu_write_t; + +struct __class_idr { + struct idr *idr; + int id; +}; + +typedef struct __class_idr class_idr_alloc_t; + +enum perf_sample_regs_abi { + PERF_SAMPLE_REGS_ABI_NONE = 0, + PERF_SAMPLE_REGS_ABI_32 = 1, + PERF_SAMPLE_REGS_ABI_64 = 2, +}; + +enum perf_event_read_format { + PERF_FORMAT_TOTAL_TIME_ENABLED = 1, + PERF_FORMAT_TOTAL_TIME_RUNNING = 2, + PERF_FORMAT_ID = 4, + PERF_FORMAT_GROUP = 8, + PERF_FORMAT_LOST = 16, + PERF_FORMAT_MAX = 32, +}; + +enum perf_event_ioc_flags { + PERF_IOC_FLAG_GROUP = 1, +}; + +struct perf_ns_link_info { + __u64 dev; + __u64 ino; +}; + +enum { + NET_NS_INDEX = 0, + UTS_NS_INDEX = 1, + IPC_NS_INDEX = 2, + PID_NS_INDEX = 3, + USER_NS_INDEX = 4, + MNT_NS_INDEX = 5, + CGROUP_NS_INDEX = 6, + NR_NAMESPACES = 7, +}; + +enum perf_bpf_event_type { + PERF_BPF_EVENT_UNKNOWN = 0, + PERF_BPF_EVENT_PROG_LOAD = 1, + PERF_BPF_EVENT_PROG_UNLOAD = 2, + PERF_BPF_EVENT_MAX = 3, +}; + +enum perf_pmu_scope { + PERF_PMU_SCOPE_NONE = 0, + PERF_PMU_SCOPE_CORE = 1, + PERF_PMU_SCOPE_DIE = 2, + PERF_PMU_SCOPE_CLUSTER = 3, + PERF_PMU_SCOPE_PKG = 4, + PERF_PMU_SCOPE_SYS_WIDE = 5, + PERF_PMU_MAX_SCOPE = 6, +}; + +enum perf_addr_filter_action_t { + PERF_ADDR_FILTER_ACTION_STOP = 0, + PERF_ADDR_FILTER_ACTION_START = 1, + PERF_ADDR_FILTER_ACTION_FILTER = 2, +}; + +struct perf_addr_filter { + struct list_head entry; + struct path path; + long unsigned int offset; + long unsigned int size; + enum perf_addr_filter_action_t action; +}; + +struct swevent_hlist { + struct hlist_head heads[256]; + struct callback_head callback_head; +}; + +struct pmu_event_list { + raw_spinlock_t lock; + struct list_head list; +}; + +struct perf_cpu_context { + struct perf_event_context ctx; + struct perf_event_context *task_ctx; + int online; + struct perf_cgroup *cgrp; + int heap_size; + struct perf_event **heap; + struct perf_event *heap_default[2]; +}; + +struct perf_guest_info_callbacks { + unsigned int (*state)(void); + long unsigned int (*get_ip)(void); + unsigned int (*handle_intel_pt_intr)(void); +}; + +struct min_heap_char { + size_t nr; + size_t size; + char *data; + char preallocated[0]; +}; + +typedef struct min_heap_char min_heap_char; + +struct min_heap_callbacks { + bool (*less)(const void *, const void *, void *); + void (*swp)(void *, void *, void *); +}; + +typedef int (*remote_function_f)(void *); + +struct remote_function_call { + struct task_struct *p; + remote_function_f func; + void *info; + int ret; +}; + +enum event_type_t { + EVENT_FLEXIBLE = 1, + EVENT_PINNED = 2, + EVENT_TIME = 4, + EVENT_FROZEN = 8, + EVENT_CPU = 16, + EVENT_CGROUP = 32, + EVENT_ALL = 3, + EVENT_TIME_FROZEN = 12, +}; + +typedef struct { + struct perf_cpu_context *cpuctx; + struct perf_event_context *ctx; +} class_perf_ctx_lock_t; + +typedef void (*event_f)(struct perf_event *, struct perf_cpu_context *, struct perf_event_context *, void *); + +struct event_function_struct { + struct perf_event *event; + event_f func; + void *data; +}; + +struct __group_key { + int cpu; + struct pmu *pmu; + struct cgroup *cgroup; +}; + +struct stop_event_data { + struct perf_event *event; + unsigned int restart; +}; + +struct perf_event_min_heap { + size_t nr; + size_t size; + struct perf_event **data; + struct perf_event *preallocated[0]; +}; + +struct perf_read_data { + struct perf_event *event; + bool group; + int ret; +}; + +typedef void (*mapped_f)(struct perf_event *, struct mm_struct *); + +struct perf_read_event { + struct perf_event_header header; + u32 pid; + u32 tid; +}; + +typedef void perf_iterate_f(struct perf_event *, void *); + +struct remote_output { + struct perf_buffer *rb; + int err; +}; + +struct perf_task_event { + struct task_struct *task; + struct perf_event_context *task_ctx; + struct { + struct perf_event_header header; + u32 pid; + u32 ppid; + u32 tid; + u32 ptid; + u64 time; + } event_id; +}; + +struct perf_comm_event { + struct task_struct *task; + char *comm; + int comm_size; + struct { + struct perf_event_header header; + u32 pid; + u32 tid; + } event_id; +}; + +struct perf_namespaces_event { + struct task_struct *task; + struct { + struct perf_event_header header; + u32 pid; + u32 tid; + u64 nr_namespaces; + struct perf_ns_link_info link_info[7]; + } event_id; +}; + +struct perf_cgroup_event { + char *path; + int path_size; + struct { + struct perf_event_header header; + u64 id; + char path[0]; + } event_id; +}; + +struct perf_mmap_event { + struct vm_area_struct *vma; + const char *file_name; + int file_size; + int maj; + int min; + u64 ino; + u64 ino_generation; + u32 prot; + u32 flags; + u8 build_id[20]; + u32 build_id_size; + struct { + struct perf_event_header header; + u32 pid; + u32 tid; + u64 start; + u64 len; + u64 pgoff; + } event_id; +}; + +struct perf_switch_event { + struct task_struct *task; + struct task_struct *next_prev; + struct { + struct perf_event_header header; + u32 next_prev_pid; + u32 next_prev_tid; + } event_id; +}; + +struct perf_ksymbol_event { + const char *name; + int name_len; + struct { + struct perf_event_header header; + u64 addr; + u32 len; + u16 ksym_type; + u16 flags; + } event_id; +}; + +struct perf_bpf_event { + struct bpf_prog *prog; + struct { + struct perf_event_header header; + u16 type; + u16 flags; + u32 id; + u8 tag[8]; + } event_id; +}; + +struct perf_text_poke_event { + const void *old_bytes; + const void *new_bytes; + size_t pad; + u16 old_len; + u16 new_len; + struct { + struct perf_event_header header; + u64 addr; + } event_id; +}; + +struct swevent_htable { + struct swevent_hlist *swevent_hlist; + struct mutex hlist_mutex; + int hlist_refcount; +}; + +enum perf_probe_config { + PERF_PROBE_CONFIG_IS_RETPROBE = 1, + PERF_UPROBE_REF_CTR_OFFSET_BITS = 32, + PERF_UPROBE_REF_CTR_OFFSET_SHIFT = 32, +}; + +enum { + IF_ACT_NONE = -1, + IF_ACT_FILTER = 0, + IF_ACT_START = 1, + IF_ACT_STOP = 2, + IF_SRC_FILE = 3, + IF_SRC_KERNEL = 4, + IF_SRC_FILEADDR = 5, + IF_SRC_KERNELADDR = 6, +}; + +enum { + IF_STATE_ACTION = 0, + IF_STATE_SOURCE = 1, + IF_STATE_END = 2, +}; + +struct perf_aux_event { + struct perf_event_header header; + u64 hw_id; +}; + +struct perf_aux_event___2 { + struct perf_event_header header; + u32 pid; + u32 tid; +}; + +struct perf_aux_event___3 { + struct perf_event_header header; + u64 offset; + u64 size; + u64 flags; +}; + +struct wait_page_key { + struct folio *folio; + int bit_nr; + int page_match; +}; + +struct cachestat_range { + __u64 off; + __u64 len; +}; + +struct cachestat { + __u64 nr_cache; + __u64 nr_dirty; + __u64 nr_writeback; + __u64 nr_evicted; + __u64 nr_recently_evicted; +}; + +struct trace_event_raw_mm_filemap_op_page_cache { + struct trace_entry ent; + long unsigned int pfn; + long unsigned int i_ino; + long unsigned int index; + dev_t s_dev; + unsigned char order; + char __data[0]; +}; + +struct trace_event_raw_mm_filemap_op_page_cache_range { + struct trace_entry ent; + long unsigned int i_ino; + dev_t s_dev; + long unsigned int index; + long unsigned int last_index; + char __data[0]; +}; + +struct trace_event_raw_mm_filemap_fault { + struct trace_entry ent; + long unsigned int i_ino; + dev_t s_dev; + long unsigned int index; + char __data[0]; +}; + +struct trace_event_raw_filemap_set_wb_err { + struct trace_entry ent; + long unsigned int i_ino; + dev_t s_dev; + errseq_t errseq; + char __data[0]; +}; + +struct trace_event_raw_file_check_and_advance_wb_err { + struct trace_entry ent; + struct file *file; + long unsigned int i_ino; + dev_t s_dev; + errseq_t old; + errseq_t new; + char __data[0]; +}; + +struct trace_event_data_offsets_mm_filemap_op_page_cache {}; + +struct trace_event_data_offsets_mm_filemap_op_page_cache_range {}; + +struct trace_event_data_offsets_mm_filemap_fault {}; + +struct trace_event_data_offsets_filemap_set_wb_err {}; + +struct trace_event_data_offsets_file_check_and_advance_wb_err {}; + +typedef void (*btf_trace_mm_filemap_delete_from_page_cache)(void *, struct folio *); + +typedef void (*btf_trace_mm_filemap_add_to_page_cache)(void *, struct folio *); + +typedef void (*btf_trace_mm_filemap_get_pages)(void *, struct address_space *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_mm_filemap_map_pages)(void *, struct address_space *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_mm_filemap_fault)(void *, struct address_space *, long unsigned int); + +typedef void (*btf_trace_filemap_set_wb_err)(void *, struct address_space *, errseq_t); + +typedef void (*btf_trace_file_check_and_advance_wb_err)(void *, struct file *, errseq_t); + +enum behavior { + EXCLUSIVE = 0, + SHARED = 1, + DROP = 2, +}; + +struct trace_event_raw_mm_lru_insertion { + struct trace_entry ent; + struct folio *folio; + long unsigned int pfn; + enum lru_list lru; + long unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_mm_lru_activate { + struct trace_entry ent; + struct folio *folio; + long unsigned int pfn; + char __data[0]; +}; + +struct trace_event_data_offsets_mm_lru_insertion {}; + +struct trace_event_data_offsets_mm_lru_activate {}; + +typedef void (*btf_trace_mm_lru_insertion)(void *, struct folio *); + +typedef void (*btf_trace_mm_lru_activate)(void *, struct folio *); + +struct cpu_fbatches { + local_lock_t lock; + struct folio_batch lru_add; + struct folio_batch lru_deactivate_file; + struct folio_batch lru_deactivate; + struct folio_batch lru_lazyfree; + struct folio_batch lru_activate; + local_lock_t lock_irq; + struct folio_batch lru_move_tail; +}; + +typedef void (*move_fn_t)(struct lruvec *, struct folio *); + +struct file_kattr { + u32 flags; + u32 fsx_xflags; + u32 fsx_extsize; + u32 fsx_nextents; + u32 fsx_projid; + u32 fsx_cowextsize; + bool flags_valid: 1; + bool fsx_valid: 1; +}; + +struct thpsize { + struct kobject kobj; + struct list_head node; + int order; +}; + +struct shared_policy { + struct rb_root root; + rwlock_t lock; +}; + +struct shmem_inode_info { + spinlock_t lock; + unsigned int seals; + long unsigned int flags; + long unsigned int alloced; + long unsigned int swapped; + union { + struct offset_ctx dir_offsets; + struct { + struct list_head shrinklist; + struct list_head swaplist; + }; + }; + struct timespec64 i_crtime; + struct shared_policy policy; + struct simple_xattrs xattrs; + long unsigned int fallocend; + unsigned int fsflags; + atomic_t stop_eviction; + struct dquot *i_dquot[3]; + struct inode vfs_inode; +}; + +struct shmem_quota_limits { + qsize_t usrquota_bhardlimit; + qsize_t usrquota_ihardlimit; + qsize_t grpquota_bhardlimit; + qsize_t grpquota_ihardlimit; +}; + +struct shmem_sb_info { + long unsigned int max_blocks; + struct percpu_counter used_blocks; + long unsigned int max_inodes; + long unsigned int free_ispace; + raw_spinlock_t stat_lock; + umode_t mode; + unsigned char huge; + kuid_t uid; + kgid_t gid; + bool full_inums; + bool noswap; + ino_t next_ino; + ino_t *ino_batch; + struct mempolicy *mpol; + spinlock_t shrinklist_lock; + struct list_head shrinklist; + long unsigned int shrinklist_len; + struct shmem_quota_limits qlimits; +}; + +enum sgp_type { + SGP_READ = 0, + SGP_NOALLOC = 1, + SGP_CACHE = 2, + SGP_WRITE = 3, + SGP_FALLOC = 4, +}; + +struct shmem_falloc { + wait_queue_head_t *waitq; + long unsigned int start; + long unsigned int next; + long unsigned int nr_falloced; + long unsigned int nr_unswapped; +}; + +struct shmem_options { + long long unsigned int blocks; + long long unsigned int inodes; + struct mempolicy *mpol; + kuid_t uid; + kgid_t gid; + umode_t mode; + bool full_inums; + int huge; + int seen; + bool noswap; + short unsigned int quota_types; + struct shmem_quota_limits qlimits; + struct unicode_map *encoding; + bool strict_encoding; +}; + +enum shmem_param { + Opt_gid___5 = 0, + Opt_huge = 1, + Opt_mode___3 = 2, + Opt_mpol = 3, + Opt_nr_blocks = 4, + Opt_nr_inodes___2 = 5, + Opt_size___2 = 6, + Opt_uid___4 = 7, + Opt_inode32 = 8, + Opt_inode64 = 9, + Opt_noswap = 10, + Opt_quota = 11, + Opt_usrquota = 12, + Opt_grpquota = 13, + Opt_usrquota_block_hardlimit = 14, + Opt_usrquota_inode_hardlimit = 15, + Opt_grpquota_block_hardlimit = 16, + Opt_grpquota_inode_hardlimit = 17, + Opt_casefold_version = 18, + Opt_casefold = 19, + Opt_strict_encoding = 20, +}; + +enum mminit_level { + MMINIT_WARNING = 0, + MMINIT_VERIFY = 1, + MMINIT_TRACE = 2, +}; + +struct mminit_pfnnid_cache { + long unsigned int last_start; + long unsigned int last_end; + int last_nid; +}; + +struct list_lru_memcg { + struct callback_head rcu; + struct list_lru_one node[0]; +}; + +struct trace_event_raw_mmap_lock { + struct trace_entry ent; + struct mm_struct *mm; + u64 memcg_id; + bool write; + char __data[0]; +}; + +struct trace_event_raw_mmap_lock_acquire_returned { + struct trace_entry ent; + struct mm_struct *mm; + u64 memcg_id; + bool write; + bool success; + char __data[0]; +}; + +struct trace_event_data_offsets_mmap_lock {}; + +struct trace_event_data_offsets_mmap_lock_acquire_returned {}; + +typedef void (*btf_trace_mmap_lock_start_locking)(void *, struct mm_struct *, bool); + +typedef void (*btf_trace_mmap_lock_released)(void *, struct mm_struct *, bool); + +typedef void (*btf_trace_mmap_lock_acquire_returned)(void *, struct mm_struct *, bool, bool); + +struct trace_event_raw_vm_unmapped_area { + struct trace_entry ent; + long unsigned int addr; + long unsigned int total_vm; + long unsigned int flags; + long unsigned int length; + long unsigned int low_limit; + long unsigned int high_limit; + long unsigned int align_mask; + long unsigned int align_offset; + char __data[0]; +}; + +struct trace_event_raw_exit_mmap { + struct trace_entry ent; + struct mm_struct *mm; + struct maple_tree *mt; + char __data[0]; +}; + +struct trace_event_data_offsets_vm_unmapped_area {}; + +struct trace_event_data_offsets_exit_mmap {}; + +typedef void (*btf_trace_vm_unmapped_area)(void *, long unsigned int, struct vm_unmapped_area_info *); + +typedef void (*btf_trace_exit_mmap)(void *, struct mm_struct *); + +struct pagetable_move_control { + struct vm_area_struct *old; + struct vm_area_struct *new; + long unsigned int old_addr; + long unsigned int old_end; + long unsigned int new_addr; + long unsigned int len_in; + bool need_rmap_locks; + bool for_stack; +}; + +enum mremap_type { + MREMAP_INVALID = 0, + MREMAP_NO_RESIZE = 1, + MREMAP_SHRINK = 2, + MREMAP_EXPAND = 3, +}; + +struct vma_remap_struct { + long unsigned int addr; + long unsigned int old_len; + long unsigned int new_len; + const long unsigned int flags; + long unsigned int new_addr; + struct vm_userfaultfd_ctx *uf; + struct list_head *uf_unmap_early; + struct list_head *uf_unmap; + struct vm_area_struct *vma; + long unsigned int delta; + bool populate_expand; + enum mremap_type remap_type; + bool mmap_locked; + long unsigned int charged; + bool vmi_needs_invalidate; +}; + +enum pgt_entry { + NORMAL_PMD = 0, + HPAGE_PMD = 1, + NORMAL_PUD = 2, + HPAGE_PUD = 3, +}; + +struct vma_prepare { + struct vm_area_struct *vma; + struct vm_area_struct *adj_next; + struct file *file; + struct address_space *mapping; + struct anon_vma *anon_vma; + struct vm_area_struct *insert; + struct vm_area_struct *remove; + struct vm_area_struct *remove2; + bool skip_vma_uprobe: 1; +}; + +struct vma_munmap_struct { + struct vma_iterator *vmi; + struct vm_area_struct *vma; + struct vm_area_struct *prev; + struct vm_area_struct *next; + struct list_head *uf; + long unsigned int start; + long unsigned int end; + long unsigned int unmap_start; + long unsigned int unmap_end; + int vma_count; + bool unlock; + bool clear_ptes; + long unsigned int nr_pages; + long unsigned int locked_vm; + long unsigned int nr_accounted; + long unsigned int exec_vm; + long unsigned int stack_vm; + long unsigned int data_vm; +}; + +enum vma_merge_state { + VMA_MERGE_START = 0, + VMA_MERGE_ERROR_NOMEM = 1, + VMA_MERGE_NOMERGE = 2, + VMA_MERGE_SUCCESS = 3, +}; + +struct vma_merge_struct { + struct mm_struct *mm; + struct vma_iterator *vmi; + struct vm_area_struct *prev; + struct vm_area_struct *middle; + struct vm_area_struct *next; + struct vm_area_struct *target; + long unsigned int start; + long unsigned int end; + long unsigned int pgoff; + vm_flags_t vm_flags; + struct file *file; + struct anon_vma *anon_vma; + struct mempolicy *policy; + struct vm_userfaultfd_ctx uffd_ctx; + struct anon_vma_name *anon_name; + enum vma_merge_state state; + struct vm_area_struct *copied_from; + bool just_expand: 1; + bool give_up_on_oom: 1; + bool skip_vma_uprobe: 1; + bool __adjust_middle_start: 1; + bool __adjust_next_start: 1; + bool __remove_middle: 1; + bool __remove_next: 1; +}; + +struct mmap_state { + struct mm_struct *mm; + struct vma_iterator *vmi; + long unsigned int addr; + long unsigned int end; + long unsigned int pgoff; + long unsigned int pglen; + vm_flags_t vm_flags; + struct file *file; + pgprot_t page_prot; + const struct vm_operations_struct *vm_ops; + void *vm_private_data; + long unsigned int charged; + struct vm_area_struct *prev; + struct vm_area_struct *next; + struct vma_munmap_struct vms; + struct ma_state mas_detach; + struct maple_tree mt_detach; + bool check_ksm_early; +}; + +struct reserve_mem_table { + char name[16]; + phys_addr_t start; + phys_addr_t size; +}; + +typedef int cydp_t; + +struct madvise_walk_private { + struct mmu_gather *tlb; + bool pageout; +}; + +enum madvise_lock_mode { + MADVISE_NO_LOCK = 0, + MADVISE_MMAP_READ_LOCK = 1, + MADVISE_MMAP_WRITE_LOCK = 2, + MADVISE_VMA_READ_LOCK = 3, +}; + +struct madvise_behavior_range { + long unsigned int start; + long unsigned int end; +}; + +struct madvise_behavior { + struct mm_struct *mm; + int behavior; + struct mmu_gather *tlb; + enum madvise_lock_mode lock_mode; + struct anon_vma_name *anon_name; + struct madvise_behavior_range range; + struct vm_area_struct *prev; + struct vm_area_struct *vma; + bool lock_dropped; +}; + +union swap_header { + struct { + char reserved[4086]; + char magic[10]; + } magic; + struct { + char bootbits[1024]; + __u32 version; + __u32 last_page; + __u32 nr_badpages; + unsigned char sws_uuid[16]; + unsigned char sws_volume[16]; + __u32 padding[117]; + __u32 badpages[1]; + } info; +}; + +struct swap_extent { + struct rb_node rb_node; + long unsigned int start_page; + long unsigned int nr_pages; + sector_t start_block; +}; + +enum swap_cluster_flags { + CLUSTER_FLAG_NONE = 0, + CLUSTER_FLAG_FREE = 1, + CLUSTER_FLAG_NONFULL = 2, + CLUSTER_FLAG_FRAG = 3, + CLUSTER_FLAG_USABLE = 3, + CLUSTER_FLAG_FULL = 4, + CLUSTER_FLAG_DISCARD = 5, + CLUSTER_FLAG_MAX = 6, +}; + +struct percpu_swap_cluster { + struct swap_info_struct *si[10]; + long unsigned int offset[10]; + local_lock_t lock; +}; + +enum pageblock_bits { + PB_migrate = 0, + PB_migrate_end = 2, + PB_compact_skip = 3, + PB_migrate_isolate = 4, + __NR_PAGEBLOCK_BITS = 5, +}; + +struct mm_slot { + struct hlist_node hash; + struct list_head mm_node; + struct mm_struct *mm; +}; + +struct trace_event_raw_ksm_scan_template { + struct trace_entry ent; + int seq; + u32 rmap_entries; + char __data[0]; +}; + +struct trace_event_raw_ksm_enter_exit_template { + struct trace_entry ent; + void *mm; + char __data[0]; +}; + +struct trace_event_raw_ksm_merge_one_page { + struct trace_entry ent; + long unsigned int pfn; + void *rmap_item; + void *mm; + int err; + char __data[0]; +}; + +struct trace_event_raw_ksm_merge_with_ksm_page { + struct trace_entry ent; + void *ksm_page; + long unsigned int pfn; + void *rmap_item; + void *mm; + int err; + char __data[0]; +}; + +struct trace_event_raw_ksm_remove_ksm_page { + struct trace_entry ent; + long unsigned int pfn; + char __data[0]; +}; + +struct trace_event_raw_ksm_remove_rmap_item { + struct trace_entry ent; + long unsigned int pfn; + void *rmap_item; + void *mm; + char __data[0]; +}; + +struct trace_event_raw_ksm_advisor { + struct trace_entry ent; + s64 scan_time; + long unsigned int pages_to_scan; + unsigned int cpu_percent; + char __data[0]; +}; + +struct trace_event_data_offsets_ksm_scan_template {}; + +struct trace_event_data_offsets_ksm_enter_exit_template {}; + +struct trace_event_data_offsets_ksm_merge_one_page {}; + +struct trace_event_data_offsets_ksm_merge_with_ksm_page {}; + +struct trace_event_data_offsets_ksm_remove_ksm_page {}; + +struct trace_event_data_offsets_ksm_remove_rmap_item {}; + +struct trace_event_data_offsets_ksm_advisor {}; + +typedef void (*btf_trace_ksm_start_scan)(void *, int, u32); + +typedef void (*btf_trace_ksm_stop_scan)(void *, int, u32); + +typedef void (*btf_trace_ksm_enter)(void *, void *); + +typedef void (*btf_trace_ksm_exit)(void *, void *); + +typedef void (*btf_trace_ksm_merge_one_page)(void *, long unsigned int, void *, void *, int); + +typedef void (*btf_trace_ksm_merge_with_ksm_page)(void *, void *, long unsigned int, void *, void *, int); + +typedef void (*btf_trace_ksm_remove_ksm_page)(void *, long unsigned int); + +typedef void (*btf_trace_ksm_remove_rmap_item)(void *, long unsigned int, void *, void *); + +typedef void (*btf_trace_ksm_advisor)(void *, s64, long unsigned int, unsigned int); + +typedef u8 rmap_age_t; + +struct ksm_rmap_item; + +struct ksm_mm_slot { + struct mm_slot slot; + struct ksm_rmap_item *rmap_list; +}; + +struct ksm_stable_node; + +struct ksm_rmap_item { + struct ksm_rmap_item *rmap_list; + union { + struct anon_vma *anon_vma; + int nid; + }; + struct mm_struct *mm; + long unsigned int address; + unsigned int oldchecksum; + rmap_age_t age; + rmap_age_t remaining_skips; + union { + struct rb_node node; + struct { + struct ksm_stable_node *head; + struct hlist_node hlist; + }; + }; +}; + +struct ksm_scan { + struct ksm_mm_slot *mm_slot; + long unsigned int address; + struct ksm_rmap_item **rmap_list; + long unsigned int seqnr; +}; + +struct ksm_stable_node { + union { + struct rb_node node; + struct { + struct list_head *head; + struct { + struct hlist_node hlist_dup; + struct list_head list; + }; + }; + }; + struct hlist_head hlist; + union { + long unsigned int kpfn; + long unsigned int chain_prune_time; + }; + int rmap_hlist_len; + int nid; +}; + +struct advisor_ctx { + ktime_t start_scan; + long unsigned int scan_time; + long unsigned int change; + long long unsigned int cpu_time; +}; + +enum ksm_advisor_type { + KSM_ADVISOR_NONE = 0, + KSM_ADVISOR_SCAN_TIME = 1, +}; + +enum ksm_get_folio_flags { + KSM_GET_FOLIO_NOLOCK = 0, + KSM_GET_FOLIO_LOCK = 1, + KSM_GET_FOLIO_TRYLOCK = 2, +}; + +struct ksm_next_page_arg { + struct folio *folio; + struct page *page; + long unsigned int addr; +}; + +enum migrate_vma_direction { + MIGRATE_VMA_SELECT_SYSTEM = 1, + MIGRATE_VMA_SELECT_DEVICE_PRIVATE = 2, + MIGRATE_VMA_SELECT_DEVICE_COHERENT = 4, +}; + +struct migrate_vma { + struct vm_area_struct *vma; + long unsigned int *dst; + long unsigned int *src; + long unsigned int cpages; + long unsigned int npages; + long unsigned int start; + long unsigned int end; + void *pgmap_owner; + long unsigned int flags; + struct page *fault_page; +}; + +struct cgroup_of_peak { + long unsigned int value; + struct list_head list; +}; + +enum css_task_iter_flags { + CSS_TASK_ITER_PROCS = 1, + CSS_TASK_ITER_THREADED = 2, + CSS_TASK_ITER_SKIPPED = 65536, +}; + +enum vm_stat_item { + NR_DIRTY_THRESHOLD = 0, + NR_DIRTY_BG_THRESHOLD = 1, + NR_MEMMAP_PAGES = 2, + NR_MEMMAP_BOOT_PAGES = 3, + NR_VM_STAT_ITEMS = 4, +}; + +struct lruvec_stats_percpu { + long int state[33]; + long int state_prev[33]; +}; + +struct lruvec_stats { + long int state[33]; + long int state_local[33]; + long int state_pending[33]; +}; + +struct memcg_vmstats { + long int state[40]; + long unsigned int events[29]; + long int state_local[40]; + long unsigned int events_local[29]; + long int state_pending[40]; + long unsigned int events_pending[29]; + atomic_t stats_updates; +}; + +struct memcg_vmstats_percpu { + unsigned int stats_updates; + struct memcg_vmstats_percpu *parent_pcpu; + struct memcg_vmstats *vmstats; + long int state[40]; + long unsigned int events[29]; + long int state_prev[40]; + long unsigned int events_prev[29]; + long: 64; + long: 64; + long: 64; +}; + +struct slabobj_ext { + struct obj_cgroup *objcg; +}; + +struct trace_event_raw_memcg_rstat_stats { + struct trace_entry ent; + u64 id; + int item; + int val; + char __data[0]; +}; + +struct trace_event_raw_memcg_rstat_events { + struct trace_entry ent; + u64 id; + int item; + long unsigned int val; + char __data[0]; +}; + +struct trace_event_raw_memcg_flush_stats { + struct trace_entry ent; + u64 id; + s64 stats_updates; + bool force; + bool needs_flush; + char __data[0]; +}; + +struct trace_event_data_offsets_memcg_rstat_stats {}; + +struct trace_event_data_offsets_memcg_rstat_events {}; + +struct trace_event_data_offsets_memcg_flush_stats {}; + +typedef void (*btf_trace_mod_memcg_state)(void *, struct mem_cgroup *, int, int); + +typedef void (*btf_trace_mod_memcg_lruvec_state)(void *, struct mem_cgroup *, int, int); + +typedef void (*btf_trace_count_memcg_events)(void *, struct mem_cgroup *, int, long unsigned int); + +typedef void (*btf_trace_memcg_flush_stats)(void *, struct mem_cgroup *, s64, bool, bool); + +struct memory_stat { + const char *name; + unsigned int idx; +}; + +struct memcg_stock_pcp { + local_trylock_t lock; + uint8_t nr_pages[7]; + struct mem_cgroup *cached[7]; + struct work_struct work; + long unsigned int flags; +}; + +struct obj_stock_pcp { + local_trylock_t lock; + unsigned int nr_bytes; + struct obj_cgroup *cached_objcg; + struct pglist_data *cached_pgdat; + int nr_slab_reclaimable_b; + int nr_slab_unreclaimable_b; + struct work_struct work; + long unsigned int flags; +}; + +struct aggregate_control { + long int *aggregate; + long int *local; + long int *pending; + long int *ppending; + long int *cstat; + long int *cstat_prev; + int size; +}; + +struct uncharge_gather { + struct mem_cgroup *memcg; + long unsigned int nr_memory; + long unsigned int pgpgout; + long unsigned int nr_kmem; + int nid; +}; + +struct zpool { + struct zpool_driver *driver; + void *pool; +}; + +struct numa_memblk { + u64 start; + u64 end; + int nid; +}; + +struct numa_meminfo { + int nr_blks; + struct numa_memblk blk[2048]; +}; + +struct balloon_dev_info { + long unsigned int isolated_pages; + spinlock_t pages_lock; + struct list_head pages; + int (*migratepage)(struct balloon_dev_info *, struct page *, struct page *, enum migrate_mode); +}; + +struct quota_id { + struct rb_node node; + qid_t id; + qsize_t bhardlimit; + qsize_t bsoftlimit; + qsize_t ihardlimit; + qsize_t isoftlimit; +}; + +struct files_stat_struct { + long unsigned int nr_files; + long unsigned int nr_free_files; + long unsigned int max_files; +}; + +struct backing_file { + struct file file; + union { + struct path user_path; + freeptr_t bf_freeptr; + }; +}; + +typedef struct kobject *kobj_probe_t(dev_t, int *, void *); + +struct char_device_struct { + struct char_device_struct *next; + unsigned int major; + unsigned int baseminor; + int minorct; + char name[64]; + struct cdev *cdev; +}; + +struct saved { + struct path link; + struct delayed_call done; + const char *name; + unsigned int seq; +}; + +struct nameidata { + struct path path; + struct qstr last; + struct path root; + struct inode *inode; + unsigned int flags; + unsigned int state; + unsigned int seq; + unsigned int next_seq; + unsigned int m_seq; + unsigned int r_seq; + int last_type; + unsigned int depth; + int total_link_count; + struct saved *stack; + struct saved internal[2]; + struct filename *name; + const char *pathname; + struct nameidata *saved; + unsigned int root_seq; + int dfd; + vfsuid_t dir_vfsuid; + umode_t dir_mode; +}; + +struct renamedata { + struct mnt_idmap *old_mnt_idmap; + struct dentry *old_parent; + struct dentry *old_dentry; + struct mnt_idmap *new_mnt_idmap; + struct dentry *new_parent; + struct dentry *new_dentry; + struct inode **delegated_inode; + unsigned int flags; +}; + +enum { + LAST_NORM = 0, + LAST_ROOT = 1, + LAST_DOT = 2, + LAST_DOTDOT = 3, +}; + +struct open_flags { + int open_flag; + umode_t mode; + int acc_mode; + int intent; + int lookup_flags; +}; + +enum { + WALK_TRAILING = 1, + WALK_MORE = 2, + WALK_NOFOLLOW = 4, +}; + +struct wb_writeback_work { + long int nr_pages; + struct super_block *sb; + enum writeback_sync_modes sync_mode; + unsigned int tagged_writepages: 1; + unsigned int for_kupdate: 1; + unsigned int range_cyclic: 1; + unsigned int for_background: 1; + unsigned int for_sync: 1; + unsigned int auto_free: 1; + enum wb_reason reason; + struct list_head list; + struct wb_completion *done; +}; + +struct trace_event_raw_writeback_folio_template { + struct trace_entry ent; + char name[32]; + ino_t ino; + long unsigned int index; + char __data[0]; +}; + +struct trace_event_raw_writeback_dirty_inode_template { + struct trace_entry ent; + char name[32]; + ino_t ino; + long unsigned int state; + long unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_inode_foreign_history { + struct trace_entry ent; + char name[32]; + ino_t ino; + ino_t cgroup_ino; + unsigned int history; + char __data[0]; +}; + +struct trace_event_raw_inode_switch_wbs { + struct trace_entry ent; + char name[32]; + ino_t ino; + ino_t old_cgroup_ino; + ino_t new_cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_track_foreign_dirty { + struct trace_entry ent; + char name[32]; + u64 bdi_id; + ino_t ino; + unsigned int memcg_id; + ino_t cgroup_ino; + ino_t page_cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_flush_foreign { + struct trace_entry ent; + char name[32]; + ino_t cgroup_ino; + unsigned int frn_bdi_id; + unsigned int frn_memcg_id; + char __data[0]; +}; + +struct trace_event_raw_writeback_write_inode_template { + struct trace_entry ent; + char name[32]; + ino_t ino; + int sync_mode; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_writeback_work_class { + struct trace_entry ent; + char name[32]; + long int nr_pages; + dev_t sb_dev; + int sync_mode; + int for_kupdate; + int range_cyclic; + int for_background; + int reason; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_writeback_pages_written { + struct trace_entry ent; + long int pages; + char __data[0]; +}; + +struct trace_event_raw_writeback_class { + struct trace_entry ent; + char name[32]; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_writeback_bdi_register { + struct trace_entry ent; + char name[32]; + char __data[0]; +}; + +struct trace_event_raw_wbc_class { + struct trace_entry ent; + char name[32]; + long int nr_to_write; + long int pages_skipped; + int sync_mode; + int for_kupdate; + int for_background; + int range_cyclic; + long int range_start; + long int range_end; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_writeback_queue_io { + struct trace_entry ent; + char name[32]; + long unsigned int older; + long int age; + int moved; + int reason; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_global_dirty_state { + struct trace_entry ent; + long unsigned int nr_dirty; + long unsigned int nr_writeback; + long unsigned int background_thresh; + long unsigned int dirty_thresh; + long unsigned int dirty_limit; + long unsigned int nr_dirtied; + long unsigned int nr_written; + char __data[0]; +}; + +struct trace_event_raw_bdi_dirty_ratelimit { + struct trace_entry ent; + char bdi[32]; + long unsigned int write_bw; + long unsigned int avg_write_bw; + long unsigned int dirty_rate; + long unsigned int dirty_ratelimit; + long unsigned int task_ratelimit; + long unsigned int balanced_dirty_ratelimit; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_balance_dirty_pages { + struct trace_entry ent; + char bdi[32]; + long unsigned int limit; + long unsigned int setpoint; + long unsigned int dirty; + long unsigned int wb_setpoint; + long unsigned int wb_dirty; + long unsigned int dirty_ratelimit; + long unsigned int task_ratelimit; + unsigned int dirtied; + unsigned int dirtied_pause; + long unsigned int paused; + long int pause; + long unsigned int period; + long int think; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_writeback_sb_inodes_requeue { + struct trace_entry ent; + char name[32]; + ino_t ino; + long unsigned int state; + long unsigned int dirtied_when; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_writeback_single_inode_template { + struct trace_entry ent; + char name[32]; + ino_t ino; + long unsigned int state; + long unsigned int dirtied_when; + long unsigned int writeback_index; + long int nr_to_write; + long unsigned int wrote; + ino_t cgroup_ino; + char __data[0]; +}; + +struct trace_event_raw_writeback_inode_template { + struct trace_entry ent; + dev_t dev; + ino_t ino; + long unsigned int state; + __u16 mode; + long unsigned int dirtied_when; + char __data[0]; +}; + +struct trace_event_data_offsets_writeback_folio_template {}; + +struct trace_event_data_offsets_writeback_dirty_inode_template {}; + +struct trace_event_data_offsets_inode_foreign_history {}; + +struct trace_event_data_offsets_inode_switch_wbs {}; + +struct trace_event_data_offsets_track_foreign_dirty {}; + +struct trace_event_data_offsets_flush_foreign {}; + +struct trace_event_data_offsets_writeback_write_inode_template {}; + +struct trace_event_data_offsets_writeback_work_class {}; + +struct trace_event_data_offsets_writeback_pages_written {}; + +struct trace_event_data_offsets_writeback_class {}; + +struct trace_event_data_offsets_writeback_bdi_register {}; + +struct trace_event_data_offsets_wbc_class {}; + +struct trace_event_data_offsets_writeback_queue_io {}; + +struct trace_event_data_offsets_global_dirty_state {}; + +struct trace_event_data_offsets_bdi_dirty_ratelimit {}; + +struct trace_event_data_offsets_balance_dirty_pages {}; + +struct trace_event_data_offsets_writeback_sb_inodes_requeue {}; + +struct trace_event_data_offsets_writeback_single_inode_template {}; + +struct trace_event_data_offsets_writeback_inode_template {}; + +typedef void (*btf_trace_writeback_dirty_folio)(void *, struct folio *, struct address_space *); + +typedef void (*btf_trace_folio_wait_writeback)(void *, struct folio *, struct address_space *); + +typedef void (*btf_trace_writeback_mark_inode_dirty)(void *, struct inode *, int); + +typedef void (*btf_trace_writeback_dirty_inode_start)(void *, struct inode *, int); + +typedef void (*btf_trace_writeback_dirty_inode)(void *, struct inode *, int); + +typedef void (*btf_trace_inode_foreign_history)(void *, struct inode *, struct writeback_control *, unsigned int); + +typedef void (*btf_trace_inode_switch_wbs)(void *, struct inode *, struct bdi_writeback *, struct bdi_writeback *); + +typedef void (*btf_trace_track_foreign_dirty)(void *, struct folio *, struct bdi_writeback *); + +typedef void (*btf_trace_flush_foreign)(void *, struct bdi_writeback *, unsigned int, unsigned int); + +typedef void (*btf_trace_writeback_write_inode_start)(void *, struct inode *, struct writeback_control *); + +typedef void (*btf_trace_writeback_write_inode)(void *, struct inode *, struct writeback_control *); + +typedef void (*btf_trace_writeback_queue)(void *, struct bdi_writeback *, struct wb_writeback_work *); + +typedef void (*btf_trace_writeback_exec)(void *, struct bdi_writeback *, struct wb_writeback_work *); + +typedef void (*btf_trace_writeback_start)(void *, struct bdi_writeback *, struct wb_writeback_work *); + +typedef void (*btf_trace_writeback_written)(void *, struct bdi_writeback *, struct wb_writeback_work *); + +typedef void (*btf_trace_writeback_wait)(void *, struct bdi_writeback *, struct wb_writeback_work *); + +typedef void (*btf_trace_writeback_pages_written)(void *, long int); + +typedef void (*btf_trace_writeback_wake_background)(void *, struct bdi_writeback *); + +typedef void (*btf_trace_writeback_bdi_register)(void *, struct backing_dev_info *); + +typedef void (*btf_trace_wbc_writepage)(void *, struct writeback_control *, struct backing_dev_info *); + +typedef void (*btf_trace_writeback_queue_io)(void *, struct bdi_writeback *, struct wb_writeback_work *, long unsigned int, int); + +typedef void (*btf_trace_global_dirty_state)(void *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_bdi_dirty_ratelimit)(void *, struct bdi_writeback *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_balance_dirty_pages)(void *, struct bdi_writeback *, struct dirty_throttle_control *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long int, long unsigned int); + +typedef void (*btf_trace_writeback_sb_inodes_requeue)(void *, struct inode *); + +typedef void (*btf_trace_writeback_single_inode_start)(void *, struct inode *, struct writeback_control *, long unsigned int); + +typedef void (*btf_trace_writeback_single_inode)(void *, struct inode *, struct writeback_control *, long unsigned int); + +typedef void (*btf_trace_writeback_lazytime)(void *, struct inode *); + +typedef void (*btf_trace_writeback_lazytime_iput)(void *, struct inode *); + +typedef void (*btf_trace_writeback_dirty_inode_enqueue)(void *, struct inode *); + +typedef void (*btf_trace_sb_mark_inode_writeback)(void *, struct inode *); + +typedef void (*btf_trace_sb_clear_inode_writeback)(void *, struct inode *); + +struct inode_switch_wbs_context { + struct rcu_work work; + struct bdi_writeback *new_wb; + struct inode *inodes[0]; +}; + +typedef int __kernel_daddr_t; + +struct ustat { + __kernel_daddr_t f_tfree; + long unsigned int f_tinode; + char f_fname[6]; + char f_fpack[6]; +}; + +typedef s32 compat_daddr_t; + +typedef __kernel_fsid_t compat_fsid_t; + +struct compat_statfs { + int f_type; + int f_bsize; + int f_blocks; + int f_bfree; + int f_bavail; + int f_files; + int f_ffree; + compat_fsid_t f_fsid; + int f_namelen; + int f_frsize; + int f_flags; + int f_spare[4]; +}; + +struct compat_ustat { + compat_daddr_t f_tfree; + compat_ino_t f_tinode; + char f_fname[6]; + char f_fpack[6]; +}; + +struct statfs { + __kernel_long_t f_type; + __kernel_long_t f_bsize; + __kernel_long_t f_blocks; + __kernel_long_t f_bfree; + __kernel_long_t f_bavail; + __kernel_long_t f_files; + __kernel_long_t f_ffree; + __kernel_fsid_t f_fsid; + __kernel_long_t f_namelen; + __kernel_long_t f_frsize; + __kernel_long_t f_flags; + __kernel_long_t f_spare[4]; +}; + +struct statfs64 { + __kernel_long_t f_type; + __kernel_long_t f_bsize; + __u64 f_blocks; + __u64 f_bfree; + __u64 f_bavail; + __u64 f_files; + __u64 f_ffree; + __kernel_fsid_t f_fsid; + __kernel_long_t f_namelen; + __kernel_long_t f_frsize; + __kernel_long_t f_flags; + __kernel_long_t f_spare[4]; +}; + +struct compat_statfs64 { + __u32 f_type; + __u32 f_bsize; + __u64 f_blocks; + __u64 f_bfree; + __u64 f_bavail; + __u64 f_files; + __u64 f_ffree; + __kernel_fsid_t f_fsid; + __u32 f_namelen; + __u32 f_frsize; + __u32 f_flags; + __u32 f_spare[4]; +} __attribute__((packed)); + +enum fsconfig_command { + FSCONFIG_SET_FLAG = 0, + FSCONFIG_SET_STRING = 1, + FSCONFIG_SET_BINARY = 2, + FSCONFIG_SET_PATH = 3, + FSCONFIG_SET_PATH_EMPTY = 4, + FSCONFIG_SET_FD = 5, + FSCONFIG_CMD_CREATE = 6, + FSCONFIG_CMD_RECONFIGURE = 7, + FSCONFIG_CMD_CREATE_EXCL = 8, +}; + +struct file_dedupe_range_info { + __s64 dest_fd; + __u64 dest_offset; + __u64 bytes_deduped; + __s32 status; + __u32 reserved; +}; + +struct file_dedupe_range { + __u64 src_offset; + __u64 src_length; + __u16 dest_count; + __u16 reserved1; + __u32 reserved2; + struct file_dedupe_range_info info[0]; +}; + +struct postprocess_bh_ctx { + struct work_struct work; + struct buffer_head *bh; +}; + +struct bh_lru { + struct buffer_head *bhs[16]; +}; + +struct bh_accounting { + int nr; + int ratelimit; +}; + +struct dnotify_struct { + struct dnotify_struct *dn_next; + __u32 dn_mask; + int dn_fd; + struct file *dn_filp; + fl_owner_t dn_owner; +}; + +struct dnotify_mark { + struct fsnotify_mark fsn_mark; + struct dnotify_struct *dn; +}; + +struct uffd_msg { + __u8 event; + __u8 reserved1; + __u16 reserved2; + __u32 reserved3; + union { + struct { + __u64 flags; + __u64 address; + union { + __u32 ptid; + } feat; + } pagefault; + struct { + __u32 ufd; + } fork; + struct { + __u64 from; + __u64 to; + __u64 len; + } remap; + struct { + __u64 start; + __u64 end; + } remove; + struct { + __u64 reserved1; + __u64 reserved2; + __u64 reserved3; + } reserved; + } arg; +}; + +struct uffdio_api { + __u64 api; + __u64 features; + __u64 ioctls; +}; + +struct uffdio_range { + __u64 start; + __u64 len; +}; + +struct uffdio_register { + struct uffdio_range range; + __u64 mode; + __u64 ioctls; +}; + +struct uffdio_copy { + __u64 dst; + __u64 src; + __u64 len; + __u64 mode; + __s64 copy; +}; + +struct uffdio_zeropage { + struct uffdio_range range; + __u64 mode; + __s64 zeropage; +}; + +struct uffdio_writeprotect { + struct uffdio_range range; + __u64 mode; +}; + +struct uffdio_continue { + struct uffdio_range range; + __u64 mode; + __s64 mapped; +}; + +struct uffdio_poison { + struct uffdio_range range; + __u64 mode; + __s64 updated; +}; + +struct uffdio_move { + __u64 dst; + __u64 src; + __u64 len; + __u64 mode; + __s64 move; +}; + +struct userfaultfd_fork_ctx { + struct userfaultfd_ctx *orig; + struct userfaultfd_ctx *new; + struct list_head list; +}; + +struct userfaultfd_unmap_ctx { + struct userfaultfd_ctx *ctx; + long unsigned int start; + long unsigned int end; + struct list_head list; +}; + +struct userfaultfd_wait_queue { + struct uffd_msg msg; + wait_queue_entry_t wq; + struct userfaultfd_ctx *ctx; + bool waken; +}; + +struct userfaultfd_wake_range { + long unsigned int start; + long unsigned int len; +}; + +union fscrypt_iv { + struct { + __le64 index; + u8 nonce[16]; + }; + u8 raw[32]; + __le64 dun[4]; +}; + +struct fscrypt_nokey_name { + u32 dirhash[2]; + u8 bytes[149]; + u8 sha256[32]; +}; + +struct fscrypt_keyring { + spinlock_t lock; + struct hlist_head key_hashtable[128]; +}; + +struct fscrypt_provisioning_key_payload { + __u32 type; + __u32 flags; + __u8 raw[0]; +}; + +struct fscrypt_add_key_arg { + struct fscrypt_key_specifier key_spec; + __u32 raw_size; + __u32 key_id; + __u32 flags; + __u32 __reserved[7]; + __u8 raw[0]; +}; + +struct fscrypt_remove_key_arg { + struct fscrypt_key_specifier key_spec; + __u32 removal_status_flags; + __u32 __reserved[5]; +}; + +struct fscrypt_get_key_status_arg { + struct fscrypt_key_specifier key_spec; + __u32 __reserved[6]; + __u32 status; + __u32 status_flags; + __u32 user_count; + __u32 __out_reserved[13]; +}; + +struct folio_iter { + struct folio *folio; + size_t offset; + size_t length; + struct folio *_next; + size_t _seg_count; + int _i; +}; + +typedef enum { + FS_DECRYPT = 0, + FS_ENCRYPT = 1, +} fscrypt_direction_t; + +struct fsverity_read_metadata_arg { + __u64 metadata_type; + __u64 offset; + __u64 length; + __u64 buf_ptr; + __u64 __reserved; +}; + +struct flock64 { + short int l_type; + short int l_whence; + __kernel_loff_t l_start; + __kernel_loff_t l_len; + __kernel_pid_t l_pid; +}; + +struct trace_event_raw_locks_get_lock_context { + struct trace_entry ent; + long unsigned int i_ino; + dev_t s_dev; + unsigned char type; + struct file_lock_context *ctx; + char __data[0]; +}; + +struct trace_event_raw_filelock_lock { + struct trace_entry ent; + struct file_lock *fl; + long unsigned int i_ino; + dev_t s_dev; + struct file_lock_core *blocker; + fl_owner_t owner; + unsigned int pid; + unsigned int flags; + unsigned char type; + loff_t fl_start; + loff_t fl_end; + int ret; + char __data[0]; +}; + +struct trace_event_raw_filelock_lease { + struct trace_entry ent; + struct file_lease *fl; + long unsigned int i_ino; + dev_t s_dev; + struct file_lock_core *blocker; + fl_owner_t owner; + unsigned int flags; + unsigned char type; + long unsigned int break_time; + long unsigned int downgrade_time; + char __data[0]; +}; + +struct trace_event_raw_generic_add_lease { + struct trace_entry ent; + long unsigned int i_ino; + int wcount; + int rcount; + int icount; + dev_t s_dev; + fl_owner_t owner; + unsigned int flags; + unsigned char type; + char __data[0]; +}; + +struct trace_event_raw_leases_conflict { + struct trace_entry ent; + void *lease; + void *breaker; + unsigned int l_fl_flags; + unsigned int b_fl_flags; + unsigned char l_fl_type; + unsigned char b_fl_type; + bool conflict; + char __data[0]; +}; + +struct trace_event_data_offsets_locks_get_lock_context {}; + +struct trace_event_data_offsets_filelock_lock {}; + +struct trace_event_data_offsets_filelock_lease {}; + +struct trace_event_data_offsets_generic_add_lease {}; + +struct trace_event_data_offsets_leases_conflict {}; + +typedef void (*btf_trace_locks_get_lock_context)(void *, struct inode *, int, struct file_lock_context *); + +typedef void (*btf_trace_posix_lock_inode)(void *, struct inode *, struct file_lock *, int); + +typedef void (*btf_trace_fcntl_setlk)(void *, struct inode *, struct file_lock *, int); + +typedef void (*btf_trace_locks_remove_posix)(void *, struct inode *, struct file_lock *, int); + +typedef void (*btf_trace_flock_lock_inode)(void *, struct inode *, struct file_lock *, int); + +typedef void (*btf_trace_break_lease_noblock)(void *, struct inode *, struct file_lease *); + +typedef void (*btf_trace_break_lease_block)(void *, struct inode *, struct file_lease *); + +typedef void (*btf_trace_break_lease_unblock)(void *, struct inode *, struct file_lease *); + +typedef void (*btf_trace_generic_delete_lease)(void *, struct inode *, struct file_lease *); + +typedef void (*btf_trace_time_out_leases)(void *, struct inode *, struct file_lease *); + +typedef void (*btf_trace_generic_add_lease)(void *, struct inode *, struct file_lease *); + +typedef void (*btf_trace_leases_conflict)(void *, bool, struct file_lease *, struct file_lease *); + +struct file_lock_list_struct { + spinlock_t lock; + struct hlist_head hlist; +}; + +struct locks_iterator { + int li_cpu; + loff_t li_pos; +}; + +struct xdr_netobj { + unsigned int len; + u8 *data; +}; + +struct xdr_buf { + struct kvec head[1]; + struct kvec tail[1]; + struct bio_vec *bvec; + struct page **pages; + unsigned int page_base; + unsigned int page_len; + unsigned int flags; + unsigned int buflen; + unsigned int len; +}; + +struct rpc_rqst; + +struct xdr_stream { + __be32 *p; + struct xdr_buf *buf; + __be32 *end; + struct kvec *iov; + struct kvec scratch; + struct page **page_ptr; + void *page_kaddr; + unsigned int nwords; + struct rpc_rqst *rqst; +}; + +struct lwq_node { + struct llist_node node; +}; + +struct rpc_xprt; + +struct rpc_task; + +struct rpc_cred; + +struct rpc_rqst { + struct rpc_xprt *rq_xprt; + struct xdr_buf rq_snd_buf; + struct xdr_buf rq_rcv_buf; + struct rpc_task *rq_task; + struct rpc_cred *rq_cred; + __be32 rq_xid; + int rq_cong; + u32 rq_seqnos[3]; + unsigned int rq_seqno_count; + int rq_enc_pages_num; + struct page **rq_enc_pages; + void (*rq_release_snd_buf)(struct rpc_rqst *); + union { + struct list_head rq_list; + struct rb_node rq_recv; + }; + struct list_head rq_xmit; + struct list_head rq_xmit2; + void *rq_buffer; + size_t rq_callsize; + void *rq_rbuffer; + size_t rq_rcvsize; + size_t rq_xmit_bytes_sent; + size_t rq_reply_bytes_recvd; + struct xdr_buf rq_private_buf; + long unsigned int rq_majortimeo; + long unsigned int rq_minortimeo; + long unsigned int rq_timeout; + ktime_t rq_rtt; + unsigned int rq_retries; + unsigned int rq_connect_cookie; + atomic_t rq_pin; + u32 rq_bytes_sent; + ktime_t rq_xtime; + int rq_ntrans; + struct lwq_node rq_bc_list; + long unsigned int rq_bc_pa_state; + struct list_head rq_bc_pa_list; +}; + +typedef void (*kxdreproc_t)(struct rpc_rqst *, struct xdr_stream *, const void *); + +typedef int (*kxdrdproc_t)(struct rpc_rqst *, struct xdr_stream *, void *); + +struct rpc_procinfo; + +struct rpc_message { + const struct rpc_procinfo *rpc_proc; + void *rpc_argp; + void *rpc_resp; + const struct cred *rpc_cred; +}; + +struct rpc_procinfo { + u32 p_proc; + kxdreproc_t p_encode; + kxdrdproc_t p_decode; + unsigned int p_arglen; + unsigned int p_replen; + unsigned int p_timer; + u32 p_statidx; + const char *p_name; +}; + +struct rpc_wait { + struct list_head list; + struct list_head links; + struct list_head timer_list; +}; + +struct rpc_timeout { + long unsigned int to_initval; + long unsigned int to_maxval; + long unsigned int to_increment; + unsigned int to_retries; + unsigned char to_exponential; +}; + +struct rpc_wait_queue; + +struct rpc_call_ops; + +struct rpc_clnt; + +struct rpc_task { + atomic_t tk_count; + int tk_status; + struct list_head tk_task; + void (*tk_callback)(struct rpc_task *); + void (*tk_action)(struct rpc_task *); + long unsigned int tk_timeout; + long unsigned int tk_runstate; + struct rpc_wait_queue *tk_waitqueue; + union { + struct work_struct tk_work; + struct rpc_wait tk_wait; + } u; + struct rpc_message tk_msg; + void *tk_calldata; + const struct rpc_call_ops *tk_ops; + struct rpc_clnt *tk_client; + struct rpc_xprt *tk_xprt; + struct rpc_cred *tk_op_cred; + struct rpc_rqst *tk_rqstp; + struct workqueue_struct *tk_workqueue; + ktime_t tk_start; + pid_t tk_owner; + int tk_rpc_status; + short unsigned int tk_flags; + short unsigned int tk_timeouts; + short unsigned int tk_pid; + unsigned char tk_priority: 2; + unsigned char tk_garb_retry: 2; + unsigned char tk_cred_retry: 2; +}; + +struct rpc_timer { + struct list_head list; + long unsigned int expires; + struct delayed_work dwork; +}; + +struct rpc_wait_queue { + spinlock_t lock; + struct list_head tasks[4]; + unsigned char maxpriority; + unsigned char priority; + unsigned char nr; + unsigned int qlen; + struct rpc_timer timer_list; + const char *name; +}; + +struct rpc_call_ops { + void (*rpc_call_prepare)(struct rpc_task *, void *); + void (*rpc_call_done)(struct rpc_task *, void *); + void (*rpc_count_stats)(struct rpc_task *, void *); + void (*rpc_release)(void *); +}; + +struct rpc_iostats; + +enum xprtsec_policies { + RPC_XPRTSEC_NONE = 0, + RPC_XPRTSEC_TLS_ANON = 1, + RPC_XPRTSEC_TLS_X509 = 2, +}; + +struct xprtsec_parms { + enum xprtsec_policies policy; + key_serial_t cert_serial; + key_serial_t privkey_serial; +}; + +struct rpc_pipe_dir_head { + struct list_head pdh_entries; + struct dentry *pdh_dentry; +}; + +struct rpc_rtt { + long unsigned int timeo; + long unsigned int srtt[5]; + long unsigned int sdrtt[5]; + int ntimeouts[5]; +}; + +struct rpc_xprt_switch; + +struct rpc_xprt_iter_ops; + +struct rpc_xprt_iter { + struct rpc_xprt_switch *xpi_xpswitch; + struct rpc_xprt *xpi_cursor; + const struct rpc_xprt_iter_ops *xpi_ops; +}; + +struct rpc_auth; + +struct rpc_stat; + +struct rpc_program; + +struct rpc_sysfs_client; + +struct rpc_clnt { + refcount_t cl_count; + unsigned int cl_clid; + struct list_head cl_clients; + struct list_head cl_tasks; + atomic_t cl_pid; + spinlock_t cl_lock; + struct rpc_xprt *cl_xprt; + const struct rpc_procinfo *cl_procinfo; + u32 cl_prog; + u32 cl_vers; + u32 cl_maxproc; + struct rpc_auth *cl_auth; + struct rpc_stat *cl_stats; + struct rpc_iostats *cl_metrics; + unsigned int cl_softrtry: 1; + unsigned int cl_softerr: 1; + unsigned int cl_discrtry: 1; + unsigned int cl_noretranstimeo: 1; + unsigned int cl_autobind: 1; + unsigned int cl_chatty: 1; + unsigned int cl_shutdown: 1; + unsigned int cl_netunreach_fatal: 1; + struct xprtsec_parms cl_xprtsec; + struct rpc_rtt *cl_rtt; + const struct rpc_timeout *cl_timeout; + atomic_t cl_swapper; + int cl_nodelen; + char cl_nodename[65]; + struct rpc_pipe_dir_head cl_pipedir_objects; + struct rpc_clnt *cl_parent; + struct rpc_rtt cl_rtt_default; + struct rpc_timeout cl_timeout_default; + const struct rpc_program *cl_program; + const char *cl_principal; + struct dentry *cl_debugfs; + struct rpc_sysfs_client *cl_sysfs; + union { + struct rpc_xprt_iter cl_xpi; + struct work_struct cl_work; + }; + const struct cred *cl_cred; + unsigned int cl_max_connect; + struct super_block *pipefs_sb; + atomic_t cl_task_count; +}; + +struct svc_xprt; + +struct rpc_sysfs_xprt; + +struct rpc_xprt_ops; + +struct svc_serv; + +struct xprt_class; + +struct rpc_xprt { + struct kref kref; + const struct rpc_xprt_ops *ops; + unsigned int id; + const struct rpc_timeout *timeout; + struct __kernel_sockaddr_storage addr; + size_t addrlen; + int prot; + long unsigned int cong; + long unsigned int cwnd; + size_t max_payload; + struct rpc_wait_queue binding; + struct rpc_wait_queue sending; + struct rpc_wait_queue pending; + struct rpc_wait_queue backlog; + struct list_head free; + unsigned int max_reqs; + unsigned int min_reqs; + unsigned int num_reqs; + long unsigned int state; + unsigned char resvport: 1; + unsigned char reuseport: 1; + atomic_t swapper; + unsigned int bind_index; + struct list_head xprt_switch; + long unsigned int bind_timeout; + long unsigned int reestablish_timeout; + struct xprtsec_parms xprtsec; + unsigned int connect_cookie; + struct work_struct task_cleanup; + struct timer_list timer; + long unsigned int last_used; + long unsigned int idle_timeout; + long unsigned int connect_timeout; + long unsigned int max_reconnect_timeout; + atomic_long_t queuelen; + spinlock_t transport_lock; + spinlock_t reserve_lock; + spinlock_t queue_lock; + u32 xid; + struct rpc_task *snd_task; + struct list_head xmit_queue; + atomic_long_t xmit_queuelen; + struct svc_xprt *bc_xprt; + struct svc_serv *bc_serv; + unsigned int bc_alloc_max; + unsigned int bc_alloc_count; + atomic_t bc_slot_count; + spinlock_t bc_pa_lock; + struct list_head bc_pa_list; + struct rb_root recv_queue; + struct { + long unsigned int bind_count; + long unsigned int connect_count; + long unsigned int connect_start; + long unsigned int connect_time; + long unsigned int sends; + long unsigned int recvs; + long unsigned int bad_xids; + long unsigned int max_slots; + long long unsigned int req_u; + long long unsigned int bklog_u; + long long unsigned int sending_u; + long long unsigned int pending_u; + } stat; + struct net *xprt_net; + netns_tracker ns_tracker; + const char *servername; + const char *address_strings[6]; + struct dentry *debugfs; + struct callback_head rcu; + const struct xprt_class *xprt_class; + struct rpc_sysfs_xprt *xprt_sysfs; + bool main; +}; + +struct rpc_credops; + +struct rpc_cred { + struct hlist_node cr_hash; + struct list_head cr_lru; + struct callback_head cr_rcu; + struct rpc_auth *cr_auth; + const struct rpc_credops *cr_ops; + long unsigned int cr_expire; + long unsigned int cr_flags; + refcount_t cr_count; + const struct cred *cr_cred; +}; + +typedef u32 rpc_authflavor_t; + +struct auth_cred { + const struct cred *cred; + const char *principal; +}; + +struct rpc_cred_cache; + +struct rpc_authops; + +struct rpc_auth { + unsigned int au_cslack; + unsigned int au_rslack; + unsigned int au_verfsize; + unsigned int au_ralign; + long unsigned int au_flags; + const struct rpc_authops *au_ops; + rpc_authflavor_t au_flavor; + refcount_t au_count; + struct rpc_cred_cache *au_credcache; +}; + +struct rpc_credops { + const char *cr_name; + int (*cr_init)(struct rpc_auth *, struct rpc_cred *); + void (*crdestroy)(struct rpc_cred *); + int (*crmatch)(struct auth_cred *, struct rpc_cred *, int); + int (*crmarshal)(struct rpc_task *, struct xdr_stream *); + int (*crrefresh)(struct rpc_task *); + int (*crvalidate)(struct rpc_task *, struct xdr_stream *); + int (*crwrap_req)(struct rpc_task *, struct xdr_stream *); + int (*crunwrap_resp)(struct rpc_task *, struct xdr_stream *); + int (*crkey_timeout)(struct rpc_cred *); + char * (*crstringify_acceptor)(struct rpc_cred *); + bool (*crneed_reencode)(struct rpc_task *); +}; + +struct rpc_auth_create_args; + +struct rpcsec_gss_info; + +struct rpc_authops { + struct module *owner; + rpc_authflavor_t au_flavor; + char *au_name; + struct rpc_auth * (*create)(const struct rpc_auth_create_args *, struct rpc_clnt *); + void (*destroy)(struct rpc_auth *); + int (*hash_cred)(struct auth_cred *, unsigned int); + struct rpc_cred * (*lookup_cred)(struct rpc_auth *, struct auth_cred *, int); + struct rpc_cred * (*crcreate)(struct rpc_auth *, struct auth_cred *, int, gfp_t); + rpc_authflavor_t (*info2flavor)(struct rpcsec_gss_info *); + int (*flavor2info)(rpc_authflavor_t, struct rpcsec_gss_info *); + int (*key_timeout)(struct rpc_auth *, struct rpc_cred *); + int (*ping)(struct rpc_clnt *); +}; + +struct rpc_auth_create_args { + rpc_authflavor_t pseudoflavor; + const char *target_name; +}; + +struct rpcsec_gss_oid { + unsigned int len; + u8 data[32]; +}; + +struct rpcsec_gss_info { + struct rpcsec_gss_oid oid; + u32 qop; + u32 service; +}; + +struct rpc_xprt_ops { + void (*set_buffer_size)(struct rpc_xprt *, size_t, size_t); + int (*reserve_xprt)(struct rpc_xprt *, struct rpc_task *); + void (*release_xprt)(struct rpc_xprt *, struct rpc_task *); + void (*alloc_slot)(struct rpc_xprt *, struct rpc_task *); + void (*free_slot)(struct rpc_xprt *, struct rpc_rqst *); + void (*rpcbind)(struct rpc_task *); + void (*set_port)(struct rpc_xprt *, short unsigned int); + void (*connect)(struct rpc_xprt *, struct rpc_task *); + int (*get_srcaddr)(struct rpc_xprt *, char *, size_t); + short unsigned int (*get_srcport)(struct rpc_xprt *); + int (*buf_alloc)(struct rpc_task *); + void (*buf_free)(struct rpc_task *); + int (*prepare_request)(struct rpc_rqst *, struct xdr_buf *); + int (*send_request)(struct rpc_rqst *); + void (*abort_send_request)(struct rpc_rqst *); + void (*wait_for_reply_request)(struct rpc_task *); + void (*timer)(struct rpc_xprt *, struct rpc_task *); + void (*release_request)(struct rpc_task *); + void (*close)(struct rpc_xprt *); + void (*destroy)(struct rpc_xprt *); + void (*set_connect_timeout)(struct rpc_xprt *, long unsigned int, long unsigned int); + void (*print_stats)(struct rpc_xprt *, struct seq_file *); + int (*enable_swap)(struct rpc_xprt *); + void (*disable_swap)(struct rpc_xprt *); + void (*inject_disconnect)(struct rpc_xprt *); + int (*bc_setup)(struct rpc_xprt *, unsigned int); + size_t (*bc_maxpayload)(struct rpc_xprt *); + unsigned int (*bc_num_slots)(struct rpc_xprt *); + void (*bc_free_rqst)(struct rpc_rqst *); + void (*bc_destroy)(struct rpc_xprt *, unsigned int); +}; + +struct svc_program; + +struct svc_stat; + +struct svc_pool; + +struct svc_serv { + struct svc_program *sv_programs; + struct svc_stat *sv_stats; + spinlock_t sv_lock; + unsigned int sv_nprogs; + unsigned int sv_nrthreads; + unsigned int sv_max_payload; + unsigned int sv_max_mesg; + unsigned int sv_xdrsize; + struct list_head sv_permsocks; + struct list_head sv_tempsocks; + int sv_tmpcnt; + struct timer_list sv_temptimer; + char *sv_name; + unsigned int sv_nrpools; + bool sv_is_pooled; + struct svc_pool *sv_pools; + int (*sv_threadfn)(void *); + struct lwq sv_cb_list; + bool sv_bc_enabled; +}; + +struct xprt_create; + +struct xprt_class { + struct list_head list; + int ident; + struct rpc_xprt * (*setup)(struct xprt_create *); + struct module *owner; + char name[32]; + const char *netid[0]; +}; + +struct xprt_create { + int ident; + struct net *net; + struct sockaddr *srcaddr; + struct sockaddr *dstaddr; + size_t addrlen; + const char *servername; + struct svc_xprt *bc_xprt; + struct rpc_xprt_switch *bc_xps; + unsigned int flags; + struct xprtsec_parms xprtsec; + long unsigned int connect_timeout; + long unsigned int reconnect_timeout; +}; + +struct rpc_sysfs_xprt_switch; + +struct rpc_xprt_switch { + spinlock_t xps_lock; + struct kref xps_kref; + unsigned int xps_id; + unsigned int xps_nxprts; + unsigned int xps_nactive; + unsigned int xps_nunique_destaddr_xprts; + atomic_long_t xps_queuelen; + struct list_head xps_xprt_list; + struct net *xps_net; + const struct rpc_xprt_iter_ops *xps_iter_ops; + struct rpc_sysfs_xprt_switch *xps_sysfs; + struct callback_head xps_rcu; +}; + +struct rpc_stat { + const struct rpc_program *program; + unsigned int netcnt; + unsigned int netudpcnt; + unsigned int nettcpcnt; + unsigned int nettcpconn; + unsigned int netreconn; + unsigned int rpccnt; + unsigned int rpcretrans; + unsigned int rpcauthrefresh; + unsigned int rpcgarbage; +}; + +struct rpc_version; + +struct rpc_program { + const char *name; + u32 number; + unsigned int nrvers; + const struct rpc_version **version; + struct rpc_stat *stats; + const char *pipe_dir_name; +}; + +struct svc_stat { + struct svc_program *program; + unsigned int netcnt; + unsigned int netudpcnt; + unsigned int nettcpcnt; + unsigned int nettcpconn; + unsigned int rpccnt; + unsigned int rpcbadfmt; + unsigned int rpcbadauth; + unsigned int rpcbadclnt; +}; + +enum svc_auth_status { + SVC_GARBAGE = 1, + SVC_VALID = 2, + SVC_NEGATIVE = 3, + SVC_OK = 4, + SVC_DROP = 5, + SVC_CLOSE = 6, + SVC_DENIED = 7, + SVC_PENDING = 8, + SVC_COMPLETE = 9, +}; + +struct svc_version; + +struct svc_rqst; + +struct svc_process_info; + +struct svc_program { + u32 pg_prog; + unsigned int pg_lovers; + unsigned int pg_hivers; + unsigned int pg_nvers; + const struct svc_version **pg_vers; + char *pg_name; + char *pg_class; + enum svc_auth_status (*pg_authenticate)(struct svc_rqst *); + __be32 (*pg_init_request)(struct svc_rqst *, const struct svc_program *, struct svc_process_info *); + int (*pg_rpcbind_set)(struct net *, const struct svc_program *, u32, int, short unsigned int, short unsigned int); +}; + +struct rpc_xprt_iter_ops { + void (*xpi_rewind)(struct rpc_xprt_iter *); + struct rpc_xprt * (*xpi_xprt)(struct rpc_xprt_iter *); + struct rpc_xprt * (*xpi_next)(struct rpc_xprt_iter *); +}; + +struct rpc_sysfs_client { + struct kobject kobject; + struct net *net; + struct rpc_clnt *clnt; + struct rpc_xprt_switch *xprt_switch; +}; + +struct rpc_version { + u32 number; + unsigned int nrprocs; + const struct rpc_procinfo *procs; + unsigned int *counts; +}; + +struct nfs_fh { + short unsigned int size; + unsigned char data[128]; +}; + +enum nfs3_stable_how { + NFS_UNSTABLE = 0, + NFS_DATA_SYNC = 1, + NFS_FILE_SYNC = 2, + NFS_INVALID_STABLE_HOW = -1, +}; + +struct nfstime4 { + int64_t seconds; + uint32_t nseconds; +}; + +struct nfs4_label { + uint32_t lfs; + uint32_t pi; + u32 lsmid; + u32 len; + char *label; +}; + +typedef struct { + char data[8]; +} nfs4_verifier; + +struct nfs4_stateid_struct { + union { + char data[16]; + struct { + __be32 seqid; + char other[12]; + }; + }; + enum { + NFS4_INVALID_STATEID_TYPE = 0, + NFS4_SPECIAL_STATEID_TYPE = 1, + NFS4_OPEN_STATEID_TYPE = 2, + NFS4_LOCK_STATEID_TYPE = 3, + NFS4_DELEGATION_STATEID_TYPE = 4, + NFS4_LAYOUT_STATEID_TYPE = 5, + NFS4_PNFS_DS_STATEID_TYPE = 6, + NFS4_REVOKED_STATEID_TYPE = 7, + NFS4_FREED_STATEID_TYPE = 8, + } type; +}; + +typedef struct nfs4_stateid_struct nfs4_stateid; + +enum nfs_opnum4 { + OP_ACCESS = 3, + OP_CLOSE = 4, + OP_COMMIT = 5, + OP_CREATE = 6, + OP_DELEGPURGE = 7, + OP_DELEGRETURN = 8, + OP_GETATTR = 9, + OP_GETFH = 10, + OP_LINK = 11, + OP_LOCK = 12, + OP_LOCKT = 13, + OP_LOCKU = 14, + OP_LOOKUP = 15, + OP_LOOKUPP = 16, + OP_NVERIFY = 17, + OP_OPEN = 18, + OP_OPENATTR = 19, + OP_OPEN_CONFIRM = 20, + OP_OPEN_DOWNGRADE = 21, + OP_PUTFH = 22, + OP_PUTPUBFH = 23, + OP_PUTROOTFH = 24, + OP_READ = 25, + OP_READDIR = 26, + OP_READLINK = 27, + OP_REMOVE = 28, + OP_RENAME = 29, + OP_RENEW = 30, + OP_RESTOREFH = 31, + OP_SAVEFH = 32, + OP_SECINFO = 33, + OP_SETATTR = 34, + OP_SETCLIENTID = 35, + OP_SETCLIENTID_CONFIRM = 36, + OP_VERIFY = 37, + OP_WRITE = 38, + OP_RELEASE_LOCKOWNER = 39, + OP_BACKCHANNEL_CTL = 40, + OP_BIND_CONN_TO_SESSION = 41, + OP_EXCHANGE_ID = 42, + OP_CREATE_SESSION = 43, + OP_DESTROY_SESSION = 44, + OP_FREE_STATEID = 45, + OP_GET_DIR_DELEGATION = 46, + OP_GETDEVICEINFO = 47, + OP_GETDEVICELIST = 48, + OP_LAYOUTCOMMIT = 49, + OP_LAYOUTGET = 50, + OP_LAYOUTRETURN = 51, + OP_SECINFO_NO_NAME = 52, + OP_SEQUENCE = 53, + OP_SET_SSV = 54, + OP_TEST_STATEID = 55, + OP_WANT_DELEGATION = 56, + OP_DESTROY_CLIENTID = 57, + OP_RECLAIM_COMPLETE = 58, + OP_ALLOCATE = 59, + OP_COPY = 60, + OP_COPY_NOTIFY = 61, + OP_DEALLOCATE = 62, + OP_IO_ADVISE = 63, + OP_LAYOUTERROR = 64, + OP_LAYOUTSTATS = 65, + OP_OFFLOAD_CANCEL = 66, + OP_OFFLOAD_STATUS = 67, + OP_READ_PLUS = 68, + OP_SEEK = 69, + OP_WRITE_SAME = 70, + OP_CLONE = 71, + OP_GETXATTR = 72, + OP_SETXATTR = 73, + OP_LISTXATTRS = 74, + OP_REMOVEXATTR = 75, + OP_ILLEGAL = 10044, +}; + +enum nfs4_change_attr_type { + NFS4_CHANGE_TYPE_IS_MONOTONIC_INCR = 0, + NFS4_CHANGE_TYPE_IS_VERSION_COUNTER = 1, + NFS4_CHANGE_TYPE_IS_VERSION_COUNTER_NOPNFS = 2, + NFS4_CHANGE_TYPE_IS_TIME_METADATA = 3, + NFS4_CHANGE_TYPE_IS_UNDEFINED = 4, +}; + +struct gss_api_mech; + +struct gss_ctx { + struct gss_api_mech *mech_type; + void *internal_ctx_id; + unsigned int slack; + unsigned int align; +}; + +struct gss_api_ops; + +struct pf_desc; + +struct gss_api_mech { + struct list_head gm_list; + struct module *gm_owner; + struct rpcsec_gss_oid gm_oid; + char *gm_name; + const struct gss_api_ops *gm_ops; + int gm_pf_num; + struct pf_desc *gm_pfs; + const char *gm_upcall_enctypes; +}; + +struct auth_domain; + +struct pf_desc { + u32 pseudoflavor; + u32 qop; + u32 service; + char *name; + char *auth_domain_name; + struct auth_domain *domain; + bool datatouch; +}; + +struct auth_ops; + +struct auth_domain { + struct kref ref; + struct hlist_node hash; + char *name; + struct auth_ops *flavour; + struct callback_head callback_head; +}; + +struct gss_api_ops { + int (*gss_import_sec_context)(const void *, size_t, struct gss_ctx *, time64_t *, gfp_t); + u32 (*gss_get_mic)(struct gss_ctx *, struct xdr_buf *, struct xdr_netobj *); + u32 (*gss_verify_mic)(struct gss_ctx *, struct xdr_buf *, struct xdr_netobj *); + u32 (*gss_wrap)(struct gss_ctx *, int, struct xdr_buf *, struct page **); + u32 (*gss_unwrap)(struct gss_ctx *, int, int, struct xdr_buf *); + void (*gss_delete_sec_context)(void *); +}; + +struct nfs4_string { + unsigned int len; + char *data; +}; + +struct nfs_fsid { + uint64_t major; + uint64_t minor; +}; + +struct nfs4_threshold { + __u32 bm; + __u32 l_type; + __u64 rd_sz; + __u64 wr_sz; + __u64 rd_io_sz; + __u64 wr_io_sz; +}; + +struct nfs_fattr { + __u64 valid; + umode_t mode; + __u32 nlink; + kuid_t uid; + kgid_t gid; + dev_t rdev; + __u64 size; + union { + struct { + __u32 blocksize; + __u32 blocks; + } nfs2; + struct { + __u64 used; + } nfs3; + } du; + struct nfs_fsid fsid; + __u64 fileid; + __u64 mounted_on_fileid; + struct timespec64 atime; + struct timespec64 mtime; + struct timespec64 ctime; + struct timespec64 btime; + __u64 change_attr; + __u64 pre_change_attr; + __u64 pre_size; + struct timespec64 pre_mtime; + struct timespec64 pre_ctime; + long unsigned int time_start; + long unsigned int gencount; + struct nfs4_string *owner_name; + struct nfs4_string *group_name; + struct nfs4_threshold *mdsthreshold; + struct nfs4_label *label; +}; + +struct nfs_fsinfo { + struct nfs_fattr *fattr; + __u32 rtmax; + __u32 rtpref; + __u32 rtmult; + __u32 wtmax; + __u32 wtpref; + __u32 wtmult; + __u32 dtpref; + __u64 maxfilesize; + struct timespec64 time_delta; + __u32 lease_time; + __u32 nlayouttypes; + __u32 layouttype[8]; + __u32 blksize; + __u32 clone_blksize; + enum nfs4_change_attr_type change_attr_type; + __u32 xattr_support; +}; + +struct nfs_fsstat { + struct nfs_fattr *fattr; + __u64 tbytes; + __u64 fbytes; + __u64 abytes; + __u64 tfiles; + __u64 ffiles; + __u64 afiles; +}; + +struct nfs_pathconf { + struct nfs_fattr *fattr; + __u32 max_link; + __u32 max_namelen; +}; + +struct nfs4_change_info { + u32 atomic; + u64 before; + u64 after; +}; + +struct nfs4_slot; + +struct nfs4_sequence_args { + struct nfs4_slot *sa_slot; + u8 sa_cache_this: 1; + u8 sa_privileged: 1; +}; + +struct nfs4_sequence_res { + struct nfs4_slot *sr_slot; + long unsigned int sr_timestamp; + int sr_status; + u32 sr_status_flags; + u32 sr_highest_slotid; + u32 sr_target_highest_slotid; +}; + +struct nfs_open_context; + +struct nfs_lock_context { + refcount_t count; + struct list_head list; + struct nfs_open_context *open_context; + fl_owner_t lockowner; + atomic_t io_count; + struct callback_head callback_head; +}; + +struct nfsd_file; + +struct nfs_file_localio { + struct nfsd_file *ro_file; + struct nfsd_file *rw_file; + struct list_head list; + void *nfs_uuid; +}; + +struct nfs4_state; + +struct nfs_open_context { + struct nfs_lock_context lock_context; + fl_owner_t flock_owner; + struct dentry *dentry; + const struct cred *cred; + struct rpc_cred *ll_cred; + struct nfs4_state *state; + fmode_t mode; + int error; + long unsigned int flags; + struct nfs4_threshold *mdsthreshold; + struct list_head list; + struct callback_head callback_head; + struct nfs_file_localio nfl; +}; + +struct nlm_host; + +struct nfs_iostats; + +struct nfs_auth_info { + unsigned int flavor_len; + rpc_authflavor_t flavors[12]; +}; + +struct fscache_volume; + +struct pnfs_layoutdriver_type; + +struct nfs_client; + +struct nfs_server { + struct nfs_client *nfs_client; + struct list_head client_link; + struct list_head master_link; + struct rpc_clnt *client; + struct rpc_clnt *client_acl; + struct nlm_host *nlm_host; + struct nfs_iostats *io_stats; + wait_queue_head_t write_congestion_wait; + atomic_long_t writeback; + unsigned int write_congested; + unsigned int flags; + unsigned int automount_inherit; + unsigned int caps; + __u64 fattr_valid; + unsigned int rsize; + unsigned int rpages; + unsigned int wsize; + unsigned int wtmult; + unsigned int dtsize; + short unsigned int port; + unsigned int bsize; + unsigned int gxasize; + unsigned int sxasize; + unsigned int lxasize; + unsigned int acregmin; + unsigned int acregmax; + unsigned int acdirmin; + unsigned int acdirmax; + unsigned int namelen; + unsigned int options; + unsigned int clone_blksize; + enum nfs4_change_attr_type change_attr_type; + struct nfs_fsid fsid; + int s_sysfs_id; + __u64 maxfilesize; + long unsigned int mount_time; + struct super_block *super; + dev_t s_dev; + struct nfs_auth_info auth_info; + struct fscache_volume *fscache; + char *fscache_uniq; + u32 fh_expire_type; + u32 pnfs_blksize; + u32 attr_bitmask[3]; + u32 attr_bitmask_nl[3]; + u32 exclcreat_bitmask[3]; + u32 cache_consistency_bitmask[3]; + u32 acl_bitmask; + struct pnfs_layoutdriver_type *pnfs_curr_ld; + struct rpc_wait_queue roc_rpcwaitq; + struct rb_root state_owners; + atomic64_t owner_ctr; + struct list_head state_owners_lru; + struct list_head layouts; + struct list_head delegations; + atomic_long_t nr_active_delegations; + unsigned int delegation_hash_mask; + struct hlist_head *delegation_hash_table; + struct list_head ss_copies; + struct list_head ss_src_copies; + long unsigned int delegation_flags; + long unsigned int delegation_gen; + long unsigned int mig_gen; + long unsigned int mig_status; + void (*destroy)(struct nfs_server *); + atomic_t active; + struct __kernel_sockaddr_storage mountd_address; + size_t mountd_addrlen; + u32 mountd_version; + short unsigned int mountd_port; + short unsigned int mountd_protocol; + struct rpc_wait_queue uoc_rpcwaitq; + unsigned int read_hdrsize; + const struct cred *cred; + bool has_sec_mnt_opts; + struct kobject kobj; + struct callback_head rcu; +}; + +struct nfs_subversion; + +struct idmap; + +struct nfs4_slot_table; + +struct nfs4_session; + +struct nfs_rpc_ops; + +struct nfs4_minor_version_ops; + +struct nfs41_server_owner; + +struct nfs41_server_scope; + +struct nfs41_impl_id; + +struct nfs_client { + refcount_t cl_count; + atomic_t cl_mds_count; + int cl_cons_state; + long unsigned int cl_res_state; + long unsigned int cl_flags; + struct __kernel_sockaddr_storage cl_addr; + size_t cl_addrlen; + char *cl_hostname; + char *cl_acceptor; + struct list_head cl_share_link; + struct list_head cl_superblocks; + struct rpc_clnt *cl_rpcclient; + const struct nfs_rpc_ops *rpc_ops; + int cl_proto; + struct nfs_subversion *cl_nfs_mod; + u32 cl_minorversion; + unsigned int cl_nconnect; + unsigned int cl_max_connect; + const char *cl_principal; + struct xprtsec_parms cl_xprtsec; + struct list_head cl_ds_clients; + u64 cl_clientid; + nfs4_verifier cl_confirm; + long unsigned int cl_state; + spinlock_t cl_lock; + long unsigned int cl_lease_time; + long unsigned int cl_last_renewal; + struct delayed_work cl_renewd; + struct rpc_wait_queue cl_rpcwaitq; + struct idmap *cl_idmap; + const char *cl_owner_id; + u32 cl_cb_ident; + const struct nfs4_minor_version_ops *cl_mvops; + long unsigned int cl_mig_gen; + struct nfs4_slot_table *cl_slot_tbl; + u32 cl_seqid; + u32 cl_exchange_flags; + struct nfs4_session *cl_session; + bool cl_preserve_clid; + struct nfs41_server_owner *cl_serverowner; + struct nfs41_server_scope *cl_serverscope; + struct nfs41_impl_id *cl_implid; + long unsigned int cl_sp4_flags; + wait_queue_head_t cl_lock_waitq; + char cl_ipaddr[48]; + struct net *cl_net; + netns_tracker cl_ns_tracker; + struct list_head pending_cb_stateids; + struct callback_head rcu; +}; + +struct pnfs_layout_segment; + +struct nfs_seqid_counter; + +struct nfs_seqid { + struct nfs_seqid_counter *sequence; + struct list_head list; + struct rpc_task *task; +}; + +struct nfs_write_verifier { + char data[8]; +}; + +struct nfs_writeverf { + struct nfs_write_verifier verifier; + enum nfs3_stable_how committed; +}; + +struct nfs_pgio_args { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fh; + struct nfs_open_context *context; + struct nfs_lock_context *lock_context; + nfs4_stateid stateid; + __u64 offset; + __u32 count; + unsigned int pgbase; + struct page **pages; + union { + unsigned int replen; + struct { + const u32 *bitmask; + u32 bitmask_store[3]; + enum nfs3_stable_how stable; + }; + }; +}; + +struct nfs_pgio_res { + struct nfs4_sequence_res seq_res; + struct nfs_fattr *fattr; + __u64 count; + __u32 op_status; + union { + struct { + unsigned int replen; + int eof; + void *scratch; + }; + struct { + struct nfs_writeverf *verf; + const struct nfs_server *server; + }; + }; +}; + +struct nfs_commitargs { + struct nfs4_sequence_args seq_args; + struct nfs_fh *fh; + __u64 offset; + __u32 count; + const u32 *bitmask; +}; + +struct nfs_commitres { + struct nfs4_sequence_res seq_res; + __u32 op_status; + struct nfs_fattr *fattr; + struct nfs_writeverf *verf; + const struct nfs_server *server; +}; + +struct nfs_removeargs { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *fh; + struct qstr name; +}; + +struct nfs_removeres { + struct nfs4_sequence_res seq_res; + struct nfs_server *server; + struct nfs_fattr *dir_attr; + struct nfs4_change_info cinfo; +}; + +struct nfs_renameargs { + struct nfs4_sequence_args seq_args; + const struct nfs_fh *old_dir; + const struct nfs_fh *new_dir; + const struct qstr *old_name; + const struct qstr *new_name; +}; + +struct nfs_renameres { + struct nfs4_sequence_res seq_res; + struct nfs_server *server; + struct nfs4_change_info old_cinfo; + struct nfs_fattr *old_fattr; + struct nfs4_change_info new_cinfo; + struct nfs_fattr *new_fattr; +}; + +struct nfs_entry { + __u64 ino; + __u64 cookie; + const char *name; + unsigned int len; + int eof; + struct nfs_fh *fh; + struct nfs_fattr *fattr; + unsigned char d_type; + struct nfs_server *server; +}; + +struct nfs_readdir_arg { + struct dentry *dentry; + const struct cred *cred; + __be32 *verf; + u64 cookie; + struct page **pages; + unsigned int page_len; + bool plus; +}; + +struct nfs_readdir_res { + __be32 *verf; +}; + +struct nfs4_pathname { + unsigned int ncomponents; + struct nfs4_string components[512]; +}; + +struct nfs4_fs_location { + unsigned int nservers; + struct nfs4_string servers[10]; + struct nfs4_pathname rootpath; +}; + +struct nfs4_fs_locations { + struct nfs_fattr *fattr; + const struct nfs_server *server; + struct nfs4_pathname fs_path; + int nlocations; + struct nfs4_fs_location locations[10]; +}; + +struct pnfs_commit_ops; + +struct pnfs_ds_commit_info { + struct list_head commits; + unsigned int nwritten; + unsigned int ncommitting; + const struct pnfs_commit_ops *ops; +}; + +struct nfs41_server_owner { + uint64_t minor_id; + uint32_t major_id_sz; + char major_id[1024]; +}; + +struct nfs41_server_scope { + uint32_t server_scope_sz; + char server_scope[1024]; +}; + +struct nfs41_impl_id { + char domain[1025]; + char name[1025]; + struct nfstime4 date; +}; + +struct nfs_page_array { + struct page **pagevec; + unsigned int npages; + struct page *page_array[8]; +}; + +struct nfs_page; + +struct nfs_rw_ops; + +struct nfs_io_completion; + +struct nfs_direct_req; + +struct nfs_pgio_completion_ops; + +struct nfs_pgio_header { + struct inode *inode; + const struct cred *cred; + struct list_head pages; + struct nfs_page *req; + struct nfs_writeverf verf; + fmode_t rw_mode; + struct pnfs_layout_segment *lseg; + loff_t io_start; + const struct rpc_call_ops *mds_ops; + void (*release)(struct nfs_pgio_header *); + const struct nfs_pgio_completion_ops *completion_ops; + const struct nfs_rw_ops *rw_ops; + struct nfs_io_completion *io_completion; + struct nfs_direct_req *dreq; + void *netfs; + short unsigned int retrans; + int pnfs_error; + int error; + unsigned int good_bytes; + long unsigned int flags; + struct rpc_task task; + struct nfs_fattr fattr; + struct nfs_pgio_args args; + struct nfs_pgio_res res; + long unsigned int timestamp; + int (*pgio_done_cb)(struct rpc_task *, struct nfs_pgio_header *); + __u64 mds_offset; + struct nfs_page_array page_array; + struct nfs_client *ds_clp; + u32 ds_commit_idx; + u32 pgio_mirror_idx; +}; + +struct nfs_pgio_completion_ops { + void (*error_cleanup)(struct list_head *, int); + void (*init_hdr)(struct nfs_pgio_header *); + void (*completion)(struct nfs_pgio_header *); + void (*reschedule_io)(struct nfs_pgio_header *); +}; + +struct nfs_mds_commit_info { + atomic_t rpcs_out; + atomic_long_t ncommit; + struct list_head list; +}; + +struct nfs_commit_data; + +struct nfs_commit_info; + +struct nfs_commit_completion_ops { + void (*completion)(struct nfs_commit_data *); + void (*resched_write)(struct nfs_commit_info *, struct nfs_page *); +}; + +struct nfs_commit_data { + struct rpc_task task; + struct inode *inode; + const struct cred *cred; + struct nfs_fattr fattr; + struct nfs_writeverf verf; + struct list_head pages; + struct list_head list; + struct nfs_direct_req *dreq; + struct nfs_commitargs args; + struct nfs_commitres res; + struct nfs_open_context *context; + struct pnfs_layout_segment *lseg; + struct nfs_client *ds_clp; + int ds_commit_index; + loff_t lwb; + const struct rpc_call_ops *mds_ops; + const struct nfs_commit_completion_ops *completion_ops; + int (*commit_done_cb)(struct rpc_task *, struct nfs_commit_data *); + long unsigned int flags; +}; + +struct nfs_commit_info { + struct inode *inode; + struct nfs_mds_commit_info *mds; + struct pnfs_ds_commit_info *ds; + struct nfs_direct_req *dreq; + const struct nfs_commit_completion_ops *completion_ops; +}; + +struct nfs_unlinkdata { + struct nfs_removeargs args; + struct nfs_removeres res; + struct dentry *dentry; + wait_queue_head_t wq; + const struct cred *cred; + struct nfs_fattr dir_attr; + long int timeout; +}; + +struct nfs_renamedata { + struct nfs_renameargs args; + struct nfs_renameres res; + struct rpc_task task; + const struct cred *cred; + struct inode *old_dir; + struct dentry *old_dentry; + struct nfs_fattr old_fattr; + struct inode *new_dir; + struct dentry *new_dentry; + struct nfs_fattr new_fattr; + void (*complete)(struct rpc_task *, struct nfs_renamedata *); + long int timeout; + bool cancelled; +}; + +struct nlmclnt_operations; + +struct nfs_client_initdata; + +struct nfs_access_entry; + +struct nfs_rpc_ops { + u32 version; + const struct dentry_operations *dentry_ops; + const struct inode_operations *dir_inode_ops; + const struct inode_operations *file_inode_ops; + const struct file_operations *file_ops; + const struct nlmclnt_operations *nlmclnt_ops; + int (*getroot)(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); + int (*submount)(struct fs_context *, struct nfs_server *); + int (*try_get_tree)(struct fs_context *); + int (*getattr)(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *, struct inode *); + int (*setattr)(struct dentry *, struct nfs_fattr *, struct iattr *); + int (*lookup)(struct inode *, struct dentry *, const struct qstr *, struct nfs_fh *, struct nfs_fattr *); + int (*lookupp)(struct inode *, struct nfs_fh *, struct nfs_fattr *); + int (*access)(struct inode *, struct nfs_access_entry *, const struct cred *); + int (*readlink)(struct inode *, struct page *, unsigned int, unsigned int); + int (*create)(struct inode *, struct dentry *, struct iattr *, int); + int (*remove)(struct inode *, struct dentry *); + void (*unlink_setup)(struct rpc_message *, struct dentry *, struct inode *); + void (*unlink_rpc_prepare)(struct rpc_task *, struct nfs_unlinkdata *); + int (*unlink_done)(struct rpc_task *, struct inode *); + void (*rename_setup)(struct rpc_message *, struct dentry *, struct dentry *); + void (*rename_rpc_prepare)(struct rpc_task *, struct nfs_renamedata *); + int (*rename_done)(struct rpc_task *, struct inode *, struct inode *); + int (*link)(struct inode *, struct inode *, const struct qstr *); + int (*symlink)(struct inode *, struct dentry *, struct folio *, unsigned int, struct iattr *); + struct dentry * (*mkdir)(struct inode *, struct dentry *, struct iattr *); + int (*rmdir)(struct inode *, const struct qstr *); + int (*readdir)(struct nfs_readdir_arg *, struct nfs_readdir_res *); + int (*mknod)(struct inode *, struct dentry *, struct iattr *, dev_t); + int (*statfs)(struct nfs_server *, struct nfs_fh *, struct nfs_fsstat *); + int (*fsinfo)(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); + int (*pathconf)(struct nfs_server *, struct nfs_fh *, struct nfs_pathconf *); + int (*set_capabilities)(struct nfs_server *, struct nfs_fh *); + int (*decode_dirent)(struct xdr_stream *, struct nfs_entry *, bool); + int (*pgio_rpc_prepare)(struct rpc_task *, struct nfs_pgio_header *); + void (*read_setup)(struct nfs_pgio_header *, struct rpc_message *); + int (*read_done)(struct rpc_task *, struct nfs_pgio_header *); + void (*write_setup)(struct nfs_pgio_header *, struct rpc_message *, struct rpc_clnt **); + int (*write_done)(struct rpc_task *, struct nfs_pgio_header *); + void (*commit_setup)(struct nfs_commit_data *, struct rpc_message *, struct rpc_clnt **); + void (*commit_rpc_prepare)(struct rpc_task *, struct nfs_commit_data *); + int (*commit_done)(struct rpc_task *, struct nfs_commit_data *); + int (*lock)(struct file *, int, struct file_lock *); + int (*lock_check_bounds)(const struct file_lock *); + void (*clear_acl_cache)(struct inode *); + void (*close_context)(struct nfs_open_context *, int); + struct inode * (*open_context)(struct inode *, struct nfs_open_context *, int, struct iattr *, int *); + int (*have_delegation)(struct inode *, fmode_t, int); + int (*return_delegation)(struct inode *); + struct nfs_client * (*alloc_client)(const struct nfs_client_initdata *); + struct nfs_client * (*init_client)(struct nfs_client *, const struct nfs_client_initdata *); + void (*free_client)(struct nfs_client *); + struct nfs_server * (*create_server)(struct fs_context *); + struct nfs_server * (*clone_server)(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *, rpc_authflavor_t); + int (*discover_trunking)(struct nfs_server *, struct nfs_fh *); + void (*enable_swap)(struct inode *); + void (*disable_swap)(struct inode *); +}; + +struct nfs_access_entry { + struct rb_node rb_node; + struct list_head lru; + kuid_t fsuid; + kgid_t fsgid; + struct group_info *group_info; + u64 timestamp; + __u32 mask; + struct callback_head callback_head; +}; + +struct nfs4_state_recovery_ops; + +struct nfs4_state_maintenance_ops; + +struct nfs4_mig_recovery_ops; + +struct nfs4_minor_version_ops { + u32 minor_version; + unsigned int init_caps; + int (*init_client)(struct nfs_client *); + void (*shutdown_client)(struct nfs_client *); + bool (*match_stateid)(const nfs4_stateid *, const nfs4_stateid *); + int (*find_root_sec)(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *); + void (*free_lock_state)(struct nfs_server *, struct nfs4_lock_state *); + int (*test_and_free_expired)(struct nfs_server *, nfs4_stateid *, const struct cred *); + struct nfs_seqid * (*alloc_seqid)(struct nfs_seqid_counter *, gfp_t); + void (*session_trunk)(struct rpc_clnt *, struct rpc_xprt *, void *); + const struct rpc_call_ops *call_sync_ops; + const struct nfs4_state_recovery_ops *reboot_recovery_ops; + const struct nfs4_state_recovery_ops *nograce_recovery_ops; + const struct nfs4_state_maintenance_ops *state_renewal_ops; + const struct nfs4_mig_recovery_ops *mig_recovery_ops; +}; + +struct nfs4_state_owner; + +struct nfs4_state { + struct list_head open_states; + struct list_head inode_states; + struct list_head lock_states; + struct nfs4_state_owner *owner; + struct inode *inode; + long unsigned int flags; + spinlock_t state_lock; + seqlock_t seqlock; + nfs4_stateid stateid; + nfs4_stateid open_stateid; + unsigned int n_rdonly; + unsigned int n_wronly; + unsigned int n_rdwr; + fmode_t state; + refcount_t count; + wait_queue_head_t waitq; + struct callback_head callback_head; +}; + +struct cache_head { + struct hlist_node cache_list; + time64_t expiry_time; + time64_t last_refresh; + struct kref ref; + long unsigned int flags; +}; + +struct cache_deferred_req; + +struct cache_req { + struct cache_deferred_req * (*defer)(struct cache_req *); + long unsigned int thread_wait; +}; + +struct cache_deferred_req { + struct hlist_node hash; + struct list_head recent; + struct cache_head *item; + void *owner; + void (*revisit)(struct cache_deferred_req *, int); +}; + +struct svc_cred { + kuid_t cr_uid; + kgid_t cr_gid; + struct group_info *cr_group_info; + u32 cr_flavor; + char *cr_raw_principal; + char *cr_principal; + char *cr_targ_princ; + struct gss_api_mech *cr_gss_mech; +}; + +struct auth_ops { + char *name; + struct module *owner; + int flavour; + enum svc_auth_status (*accept)(struct svc_rqst *); + int (*release)(struct svc_rqst *); + void (*domain_release)(struct auth_domain *); + enum svc_auth_status (*set_client)(struct svc_rqst *); + rpc_authflavor_t (*pseudoflavor)(struct svc_rqst *); +}; + +struct svc_procedure; + +struct svc_deferred_req; + +struct svc_rqst { + struct list_head rq_all; + struct llist_node rq_idle; + struct callback_head rq_rcu_head; + struct svc_xprt *rq_xprt; + struct __kernel_sockaddr_storage rq_addr; + size_t rq_addrlen; + struct __kernel_sockaddr_storage rq_daddr; + size_t rq_daddrlen; + struct svc_serv *rq_server; + struct svc_pool *rq_pool; + const struct svc_procedure *rq_procinfo; + struct auth_ops *rq_authop; + struct svc_cred rq_cred; + void *rq_xprt_ctxt; + struct svc_deferred_req *rq_deferred; + struct xdr_buf rq_arg; + struct xdr_stream rq_arg_stream; + struct xdr_stream rq_res_stream; + struct page *rq_scratch_page; + struct xdr_buf rq_res; + long unsigned int rq_maxpages; + struct page **rq_pages; + struct page **rq_respages; + struct page **rq_next_page; + struct page **rq_page_end; + struct folio_batch rq_fbatch; + struct bio_vec *rq_bvec; + __be32 rq_xid; + u32 rq_prog; + u32 rq_vers; + u32 rq_proc; + u32 rq_prot; + int rq_cachetype; + long unsigned int rq_flags; + ktime_t rq_qtime; + void *rq_argp; + void *rq_resp; + __be32 *rq_accept_statp; + void *rq_auth_data; + __be32 rq_auth_stat; + int rq_auth_slack; + int rq_reserved; + ktime_t rq_stime; + struct cache_req rq_chandle; + struct auth_domain *rq_client; + struct auth_domain *rq_gssclient; + struct task_struct *rq_task; + struct net *rq_bc_net; + int rq_err; + long unsigned int bc_to_initval; + unsigned int bc_to_retries; + unsigned int rq_status_counter; + void **rq_lease_breaker; +}; + +struct svc_pool { + unsigned int sp_id; + struct lwq sp_xprts; + unsigned int sp_nrthreads; + struct list_head sp_all_threads; + struct llist_head sp_idle_threads; + struct percpu_counter sp_messages_arrived; + struct percpu_counter sp_sockets_queued; + struct percpu_counter sp_threads_woken; + long unsigned int sp_flags; +}; + +struct svc_procedure { + __be32 (*pc_func)(struct svc_rqst *); + bool (*pc_decode)(struct svc_rqst *, struct xdr_stream *); + bool (*pc_encode)(struct svc_rqst *, struct xdr_stream *); + void (*pc_release)(struct svc_rqst *); + unsigned int pc_argsize; + unsigned int pc_argzero; + unsigned int pc_ressize; + unsigned int pc_cachetype; + unsigned int pc_xdrressize; + const char *pc_name; +}; + +struct svc_deferred_req { + u32 prot; + struct svc_xprt *xprt; + struct __kernel_sockaddr_storage addr; + size_t addrlen; + struct __kernel_sockaddr_storage daddr; + size_t daddrlen; + void *xprt_ctxt; + struct cache_deferred_req handle; + int argslen; + __be32 args[0]; +}; + +struct svc_process_info { + union { + int (*dispatch)(struct svc_rqst *); + struct { + unsigned int lovers; + unsigned int hivers; + } mismatch; + }; +}; + +struct svc_version { + u32 vs_vers; + u32 vs_nproc; + const struct svc_procedure *vs_proc; + long unsigned int *vs_count; + u32 vs_xdrsize; + bool vs_hidden; + bool vs_rpcb_optnl; + bool vs_need_cong_ctrl; + int (*vs_dispatch)(struct svc_rqst *); +}; + +struct nfs4_ssc_client_ops; + +struct nfs_ssc_client_ops; + +struct nfs_ssc_client_ops_tbl { + const struct nfs4_ssc_client_ops *ssc_nfs4_ops; + const struct nfs_ssc_client_ops *ssc_nfs_ops; +}; + +struct nfs4_ssc_client_ops { + struct file * (*sco_open)(struct vfsmount *, struct nfs_fh *, nfs4_stateid *); + void (*sco_close)(struct file *); +}; + +struct nfs_ssc_client_ops { + void (*sco_sb_deactive)(struct super_block *); +}; + +struct nfs_seqid_counter { + ktime_t create_time; + u64 owner_id; + int flags; + u32 counter; + spinlock_t lock; + struct list_head list; + struct rpc_wait_queue wait; +}; + +struct nfs4_lock_state { + struct list_head ls_locks; + struct nfs4_state *ls_state; + long unsigned int ls_flags; + struct nfs_seqid_counter ls_seqid; + nfs4_stateid ls_stateid; + refcount_t ls_count; + fl_owner_t ls_owner; +}; + +struct nfs4_state_recovery_ops { + int owner_flag_bit; + int state_flag_bit; + int (*recover_open)(struct nfs4_state_owner *, struct nfs4_state *); + int (*recover_lock)(struct nfs4_state *, struct file_lock *); + int (*establish_clid)(struct nfs_client *, const struct cred *); + int (*reclaim_complete)(struct nfs_client *, const struct cred *); + int (*detect_trunking)(struct nfs_client *, struct nfs_client **, const struct cred *); +}; + +struct nfs4_state_maintenance_ops { + int (*sched_state_renewal)(struct nfs_client *, const struct cred *, unsigned int); + const struct cred * (*get_state_renewal_cred)(struct nfs_client *); + int (*renew_lease)(struct nfs_client *, const struct cred *); +}; + +struct nfs4_mig_recovery_ops { + int (*get_locations)(struct nfs_server *, struct nfs_fh *, struct nfs4_fs_locations *, struct page *, const struct cred *); + int (*fsid_present)(struct inode *, const struct cred *); +}; + +struct nfs4_state_owner { + struct nfs_server *so_server; + struct list_head so_lru; + long unsigned int so_expires; + struct rb_node so_server_node; + const struct cred *so_cred; + spinlock_t so_lock; + atomic_t so_count; + long unsigned int so_flags; + struct list_head so_states; + struct nfs_seqid_counter so_seqid; + struct mutex so_delegreturn_mutex; +}; + +struct page_region { + __u64 start; + __u64 end; + __u64 categories; +}; + +struct pm_scan_arg { + __u64 size; + __u64 flags; + __u64 start; + __u64 end; + __u64 walk_end; + __u64 vec; + __u64 vec_len; + __u64 max_pages; + __u64 category_inverted; + __u64 category_mask; + __u64 category_anyof_mask; + __u64 return_mask; +}; + +enum procmap_query_flags { + PROCMAP_QUERY_VMA_READABLE = 1, + PROCMAP_QUERY_VMA_WRITABLE = 2, + PROCMAP_QUERY_VMA_EXECUTABLE = 4, + PROCMAP_QUERY_VMA_SHARED = 8, + PROCMAP_QUERY_COVERING_OR_NEXT_VMA = 16, + PROCMAP_QUERY_FILE_BACKED_VMA = 32, +}; + +struct procmap_query { + __u64 size; + __u64 query_flags; + __u64 query_addr; + __u64 vma_start; + __u64 vma_end; + __u64 vma_flags; + __u64 vma_page_size; + __u64 vma_offset; + __u64 inode; + __u32 dev_major; + __u32 dev_minor; + __u32 vma_name_size; + __u32 build_id_size; + __u64 vma_name_addr; + __u64 build_id_addr; +}; + +struct proc_maps_private { + struct inode *inode; + struct task_struct *task; + struct mm_struct *mm; + struct vma_iterator iter; + loff_t last_pos; + bool mmap_locked; + struct vm_area_struct *locked_vma; + struct mempolicy *task_mempolicy; +}; + +struct mem_size_stats { + long unsigned int resident; + long unsigned int shared_clean; + long unsigned int shared_dirty; + long unsigned int private_clean; + long unsigned int private_dirty; + long unsigned int referenced; + long unsigned int anonymous; + long unsigned int lazyfree; + long unsigned int anonymous_thp; + long unsigned int shmem_thp; + long unsigned int file_thp; + long unsigned int swap; + long unsigned int shared_hugetlb; + long unsigned int private_hugetlb; + long unsigned int ksm; + u64 pss; + u64 pss_anon; + u64 pss_file; + u64 pss_shmem; + u64 pss_dirty; + u64 pss_locked; + u64 swap_pss; +}; + +enum clear_refs_types { + CLEAR_REFS_ALL = 1, + CLEAR_REFS_ANON = 2, + CLEAR_REFS_MAPPED = 3, + CLEAR_REFS_SOFT_DIRTY = 4, + CLEAR_REFS_MM_HIWATER_RSS = 5, + CLEAR_REFS_LAST = 6, +}; + +struct clear_refs_private { + enum clear_refs_types type; +}; + +typedef struct { + u64 pme; +} pagemap_entry_t; + +struct pagemapread { + int pos; + int len; + pagemap_entry_t *buffer; + bool show_pfn; +}; + +struct pagemap_scan_private { + struct pm_scan_arg arg; + long unsigned int masks_of_interest; + long unsigned int cur_vma_category; + struct page_region *vec_buf; + long unsigned int vec_buf_len; + long unsigned int vec_buf_index; + long unsigned int found_pages; + struct page_region *vec_out; +}; + +struct numa_maps { + long unsigned int pages; + long unsigned int anon; + long unsigned int active; + long unsigned int writeback; + long unsigned int mapcount_max; + long unsigned int dirty; + long unsigned int swapcache; + long unsigned int node[1024]; +}; + +struct numa_maps_private { + struct proc_maps_private proc_maps; + struct numa_maps md; +}; + +struct kernfs_global_locks { + struct mutex open_file_mutex[1024]; +}; + +struct kernfs_super_info { + struct super_block *sb; + struct kernfs_root *root; + const void *ns; + struct list_head node; +}; + +struct pts_mount_opts { + int setuid; + int setgid; + kuid_t uid; + kgid_t gid; + umode_t mode; + umode_t ptmxmode; + int reserve; + int max; +}; + +enum { + Opt_uid___5 = 0, + Opt_gid___6 = 1, + Opt_mode___4 = 2, + Opt_ptmxmode = 3, + Opt_newinstance = 4, + Opt_max = 5, + Opt_err___4 = 6, +}; + +struct pts_fs_info { + struct ida allocated_ptys; + struct pts_mount_opts mount_opts; + struct super_block *sb; + struct dentry *ptmx_dentry; +}; + +struct fname { + __u32 hash; + __u32 minor_hash; + struct rb_node rb_hash; + struct fname *next; + __u32 inode; + __u8 name_len; + __u8 file_type; + char name[0]; +}; + +typedef __kernel_mode_t mode_t; + +struct orlov_stats { + __u64 free_clusters; + __u32 free_inodes; + __u32 used_dirs; +}; + +enum blk_default_limits { + BLK_MAX_SEGMENTS = 128, + BLK_SAFE_MAX_SECTORS = 255, + BLK_MAX_SEGMENT_SIZE = 65536, + BLK_SEG_BOUNDARY_MASK = 4294967295, +}; + +struct ext4_allocation_request { + struct inode *inode; + unsigned int len; + ext4_lblk_t logical; + ext4_lblk_t lleft; + ext4_lblk_t lright; + ext4_fsblk_t goal; + ext4_fsblk_t pleft; + ext4_fsblk_t pright; + unsigned int flags; +}; + +struct ext4_free_data { + struct list_head efd_list; + struct rb_node efd_node; + ext4_group_t efd_group; + ext4_grpblk_t efd_start_cluster; + ext4_grpblk_t efd_count; + tid_t efd_tid; +}; + +struct ext4_prealloc_space { + union { + struct rb_node inode_node; + struct list_head lg_list; + } pa_node; + struct list_head pa_group_list; + union { + struct list_head pa_tmp_list; + struct callback_head pa_rcu; + } u; + spinlock_t pa_lock; + atomic_t pa_count; + unsigned int pa_deleted; + ext4_fsblk_t pa_pstart; + ext4_lblk_t pa_lstart; + ext4_grpblk_t pa_len; + ext4_grpblk_t pa_free; + short unsigned int pa_type; + union { + rwlock_t *inode_lock; + spinlock_t *lg_lock; + } pa_node_lock; + struct inode *pa_inode; +}; + +enum { + MB_INODE_PA = 0, + MB_GROUP_PA = 1, +}; + +struct ext4_free_extent { + ext4_lblk_t fe_logical; + ext4_grpblk_t fe_start; + ext4_group_t fe_group; + ext4_grpblk_t fe_len; +}; + +struct ext4_buddy; + +struct ext4_allocation_context { + struct inode *ac_inode; + struct super_block *ac_sb; + struct ext4_free_extent ac_o_ex; + struct ext4_free_extent ac_g_ex; + struct ext4_free_extent ac_b_ex; + struct ext4_free_extent ac_f_ex; + ext4_grpblk_t ac_orig_goal_len; + ext4_group_t ac_prefetch_grp; + unsigned int ac_prefetch_ios; + unsigned int ac_prefetch_nr; + int ac_first_err; + __u32 ac_flags; + __u16 ac_groups_scanned; + __u16 ac_found; + __u16 ac_cX_found[5]; + __u16 ac_tail; + __u16 ac_buddy; + __u8 ac_status; + __u8 ac_criteria; + __u8 ac_2order; + __u8 ac_op; + struct ext4_buddy *ac_e4b; + struct folio *ac_bitmap_folio; + struct folio *ac_buddy_folio; + struct ext4_prealloc_space *ac_pa; + struct ext4_locality_group *ac_lg; +}; + +struct ext4_buddy { + struct folio *bd_buddy_folio; + void *bd_buddy; + struct folio *bd_bitmap_folio; + void *bd_bitmap; + struct ext4_group_info *bd_info; + struct super_block *bd_sb; + __u16 bd_blkbits; + ext4_group_t bd_group; +}; + +typedef int (*ext4_mballoc_query_range_fn)(struct super_block *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t, void *); + +enum bio_post_read_step { + STEP_INITIAL = 0, + STEP_DECRYPT = 1, + STEP_VERITY = 2, + STEP_MAX = 3, +}; + +struct bio_post_read_ctx { + struct bio *bio; + struct work_struct work; + unsigned int cur_step; + unsigned int enabled_steps; +}; + +typedef struct { + __le16 e_tag; + __le16 e_perm; + __le32 e_id; +} ext4_acl_entry; + +typedef struct { + __le32 a_version; +} ext4_acl_header; + +struct commit_header { + __be32 h_magic; + __be32 h_blocktype; + __be32 h_sequence; + unsigned char h_chksum_type; + unsigned char h_chksum_size; + unsigned char h_padding[2]; + __be32 h_chksum[8]; + __be64 h_commit_sec; + __be32 h_commit_nsec; +}; + +struct journal_block_tag3_s { + __be32 t_blocknr; + __be32 t_flags; + __be32 t_blocknr_high; + __be32 t_checksum; +}; + +typedef struct journal_block_tag3_s journal_block_tag3_t; + +struct journal_block_tag_s { + __be32 t_blocknr; + __be16 t_checksum; + __be16 t_flags; + __be32 t_blocknr_high; +}; + +typedef struct journal_block_tag_s journal_block_tag_t; + +struct jbd2_journal_revoke_header_s { + journal_header_t r_header; + __be32 r_count; +}; + +typedef struct jbd2_journal_revoke_header_s jbd2_journal_revoke_header_t; + +struct recovery_info { + tid_t start_transaction; + tid_t end_transaction; + long unsigned int head_block; + int nr_replays; + int nr_revokes; + int nr_revoke_hits; +}; + +struct squashfs_dir_index { + __le32 index; + __le32 start_block; + __le32 size; + unsigned char name[0]; +}; + +struct squashfs_dir_entry { + __le16 offset; + __le16 inode_number; + __le16 type; + __le16 size; + char name[0]; +}; + +struct squashfs_dir_header { + __le32 count; + __le32 start_block; + __le32 inode_number; +}; + +struct squashfs_inode_info { + u64 start; + int offset; + u64 xattr; + unsigned int xattr_size; + int xattr_count; + int parent; + union { + struct { + u64 fragment_block; + int fragment_size; + int fragment_offset; + u64 block_list_start; + }; + struct { + u64 dir_idx_start; + int dir_idx_offset; + int dir_idx_cnt; + }; + }; + struct inode vfs_inode; +}; + +struct squashfs_fragment_entry { + __le64 start_block; + __le32 size; + unsigned int unused; +}; + +struct squashfs_base_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; +}; + +struct squashfs_ipc_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le32 nlink; +}; + +struct squashfs_lipc_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le32 nlink; + __le32 xattr; +}; + +struct squashfs_dev_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le32 nlink; + __le32 rdev; +}; + +struct squashfs_ldev_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le32 nlink; + __le32 rdev; + __le32 xattr; +}; + +struct squashfs_symlink_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le32 nlink; + __le32 symlink_size; + char symlink[0]; +}; + +struct squashfs_reg_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le32 start_block; + __le32 fragment; + __le32 offset; + __le32 file_size; + __le16 block_list[0]; +}; + +struct squashfs_lreg_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le64 start_block; + __le64 file_size; + __le64 sparse; + __le32 nlink; + __le32 fragment; + __le32 offset; + __le32 xattr; + __le16 block_list[0]; +}; + +struct squashfs_dir_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le32 start_block; + __le32 nlink; + __le16 file_size; + __le16 offset; + __le32 parent_inode; +}; + +struct squashfs_ldir_inode { + __le16 inode_type; + __le16 mode; + __le16 uid; + __le16 guid; + __le32 mtime; + __le32 inode_number; + __le32 nlink; + __le32 file_size; + __le32 start_block; + __le32 parent_inode; + __le16 i_count; + __le16 offset; + __le32 xattr; + struct squashfs_dir_index index[0]; +}; + +union squashfs_inode { + struct squashfs_base_inode base; + struct squashfs_dev_inode dev; + struct squashfs_ldev_inode ldev; + struct squashfs_symlink_inode symlink; + struct squashfs_reg_inode reg; + struct squashfs_lreg_inode lreg; + struct squashfs_dir_inode dir; + struct squashfs_ldir_inode ldir; + struct squashfs_ipc_inode ipc; + struct squashfs_lipc_inode lipc; +}; + +struct squashfs_xattr_entry { + __le16 type; + __le16 size; + char data[0]; +}; + +struct squashfs_xattr_val { + __le32 vsize; + char value[0]; +}; + +struct xz_dec; + +struct squashfs_xz { + struct xz_dec *state; + struct xz_buf buf; +}; + +struct disk_comp_opts { + __le32 dictionary_size; + __le32 flags; +}; + +struct comp_opts { + int dict_size; +}; + +typedef long long unsigned int llu; + +struct fatent_ra { + sector_t cur; + sector_t limit; + unsigned int ra_blocks; + sector_t ra_advance; + sector_t ra_next; + sector_t ra_limit; +}; + +struct fat_fid { + u32 i_gen; + u32 i_pos_low; + u16 i_pos_hi; + u16 parent_i_pos_hi; + u32 parent_i_pos_low; + u32 parent_i_gen; +}; + +struct ecryptfs_file_info { + struct file *wfi_file; + struct ecryptfs_crypt_stat *crypt_stat; +}; + +struct fuse_kstatfs { + uint64_t blocks; + uint64_t bfree; + uint64_t bavail; + uint64_t files; + uint64_t ffree; + uint32_t bsize; + uint32_t namelen; + uint32_t frsize; + uint32_t padding; + uint32_t spare[6]; +}; + +struct fuse_statfs_out { + struct fuse_kstatfs st; +}; + +struct fuse_init_in { + uint32_t major; + uint32_t minor; + uint32_t max_readahead; + uint32_t flags; + uint32_t flags2; + uint32_t unused[11]; +}; + +struct fuse_init_out { + uint32_t major; + uint32_t minor; + uint32_t max_readahead; + uint32_t flags; + uint16_t max_background; + uint16_t congestion_threshold; + uint32_t max_write; + uint32_t time_gran; + uint16_t max_pages; + uint16_t map_alignment; + uint32_t flags2; + uint32_t max_stack_depth; + uint16_t request_timeout; + uint16_t unused[11]; +}; + +struct fuse_syncfs_in { + uint64_t padding; +}; + +struct fuse_fs_context { + int fd; + struct file *file; + unsigned int rootmode; + kuid_t user_id; + kgid_t group_id; + bool is_bdev: 1; + bool fd_present: 1; + bool rootmode_present: 1; + bool user_id_present: 1; + bool group_id_present: 1; + bool default_permissions: 1; + bool allow_other: 1; + bool destroy: 1; + bool no_control: 1; + bool no_force_umount: 1; + bool legacy_opts_show: 1; + enum fuse_dax_mode dax_mode; + unsigned int max_read; + unsigned int blksize; + const char *subtype; + struct dax_device *dax_dev; + void **fudptr; +}; + +enum { + OPT_SOURCE = 0, + OPT_SUBTYPE = 1, + OPT_FD = 2, + OPT_ROOTMODE = 3, + OPT_USER_ID = 4, + OPT_GROUP_ID = 5, + OPT_DEFAULT_PERMISSIONS = 6, + OPT_ALLOW_OTHER = 7, + OPT_MAX_READ = 8, + OPT_BLKSIZE = 9, + OPT_ERR = 10, +}; + +struct fuse_inode_handle { + u64 nodeid; + u32 generation; +}; + +struct fuse_init_args { + struct fuse_args args; + struct fuse_init_in in; + struct fuse_init_out out; +}; + +typedef int (*eventfs_callback)(const char *, umode_t *, void **, const struct file_operations **); + +typedef void (*eventfs_release)(const char *, void *); + +struct eventfs_entry { + const char *name; + eventfs_callback callback; + eventfs_release release; +}; + +enum { + TRACEFS_EVENT_INODE = 2, + TRACEFS_GID_PERM_SET = 4, + TRACEFS_UID_PERM_SET = 8, + TRACEFS_INSTANCE_INODE = 16, +}; + +struct tracefs_inode { + struct inode vfs_inode; + struct list_head list; + long unsigned int flags; + void *private; +}; + +struct eventfs_attr { + int mode; + kuid_t uid; + kgid_t gid; +}; + +struct eventfs_inode { + union { + struct list_head list; + struct callback_head rcu; + }; + struct list_head children; + const struct eventfs_entry *entries; + const char *name; + struct eventfs_attr *entry_attrs; + void *data; + struct eventfs_attr attr; + struct kref kref; + unsigned int is_freed: 1; + unsigned int is_events: 1; + unsigned int nr_entries: 30; + unsigned int ino; +}; + +struct eventfs_root_inode { + struct eventfs_inode ei; + struct dentry *events_dir; +}; + +enum { + EVENTFS_SAVE_MODE = 65536, + EVENTFS_SAVE_UID = 131072, + EVENTFS_SAVE_GID = 262144, +}; + +struct efi_generic_dev_path { + u8 type; + u8 sub_type; + u16 length; +}; + +struct variable_validate { + efi_guid_t vendor; + char *name; + bool (*validate)(efi_char16_t *, int, u8 *, long unsigned int); +}; + +struct mon_data { + struct list_head list; + enum resctrl_res_level rid; + enum resctrl_event_id evtid; + int domid; + bool sum; +}; + +struct rdt_parse_data { + struct rdtgroup *rdtgrp; + char *buf; +}; + +typedef int ctrlval_parser_t(struct rdt_parse_data *, struct resctrl_schema *, struct rdt_ctrl_domain *); + +struct ipc_proc_iface { + const char *path; + const char *header; + int ids; + int (*show)(struct seq_file *, void *); +}; + +struct ipc_proc_iter { + struct ipc_namespace *ns; + struct pid_namespace *pid_ns; + struct ipc_proc_iface *iface; +}; + +struct compat_ipc_kludge { + compat_uptr_t msgp; + compat_long_t msgtyp; +}; + +struct keyctl_dh_params { + union { + __s32 private; + __s32 priv; + }; + __s32 prime; + __s32 base; +}; + +struct keyctl_kdf_params { + char *hashname; + char *otherinfo; + __u32 otherinfolen; + __u32 __spare[8]; +}; + +struct keyctl_pkey_query { + __u32 supported_ops; + __u32 key_size; + __u16 max_data_size; + __u16 max_sig_size; + __u16 max_enc_size; + __u16 max_dec_size; + __u32 __spare[10]; +}; + +struct keyctl_pkey_params { + __s32 key_id; + __u32 in_len; + union { + __u32 out_len; + __u32 in2_len; + }; + __u32 __spare[7]; +}; + +enum key_notification_subtype { + NOTIFY_KEY_INSTANTIATED = 0, + NOTIFY_KEY_UPDATED = 1, + NOTIFY_KEY_LINKED = 2, + NOTIFY_KEY_UNLINKED = 3, + NOTIFY_KEY_CLEARED = 4, + NOTIFY_KEY_REVOKED = 5, + NOTIFY_KEY_INVALIDATED = 6, + NOTIFY_KEY_SETATTR = 7, +}; + +struct key_notification { + struct watch_notification watch; + __u32 key_id; + __u32 aux; +}; + +struct compat_keyctl_kdf_params { + compat_uptr_t hashname; + compat_uptr_t otherinfo; + __u32 otherinfolen; + __u32 __spare[8]; +}; + +enum chacha20poly1305_lengths { + XCHACHA20POLY1305_NONCE_SIZE = 24, + CHACHA20POLY1305_KEY_SIZE = 32, + CHACHA20POLY1305_AUTHTAG_SIZE = 16, +}; + +struct big_key_payload { + u8 *data; + struct path path; + size_t length; +}; + +enum ecryptfs_token_types { + ECRYPTFS_PASSWORD = 0, + ECRYPTFS_PRIVATE_KEY = 1, +}; + +struct extended_perms_decision { + u8 used; + u8 driver; + u8 base_perm; + struct extended_perms_data *allowed; + struct extended_perms_data *auditallow; + struct extended_perms_data *dontaudit; +}; + +struct extended_perms { + u16 len; + u8 base_perms; + struct extended_perms_data drivers; +}; + +struct security_class_mapping { + const char *name; + const char *perms[33]; +}; + +struct trace_event_raw_selinux_audited { + struct trace_entry ent; + u32 requested; + u32 denied; + u32 audited; + int result; + u32 __data_loc_scontext; + u32 __data_loc_tcontext; + u32 __data_loc_tclass; + char __data[0]; +}; + +struct trace_event_data_offsets_selinux_audited { + u32 scontext; + const void *scontext_ptr_; + u32 tcontext; + const void *tcontext_ptr_; + u32 tclass; + const void *tclass_ptr_; +}; + +typedef void (*btf_trace_selinux_audited)(void *, struct selinux_audit_data *, char *, char *, const char *); + +struct avc_xperms_node; + +struct avc_entry { + u32 ssid; + u32 tsid; + u16 tclass; + struct av_decision avd; + struct avc_xperms_node *xp_node; +}; + +struct avc_xperms_node { + struct extended_perms xp; + struct list_head xpd_head; +}; + +struct avc_node { + struct avc_entry ae; + struct hlist_node list; + struct callback_head rhead; +}; + +struct avc_xperms_decision_node { + struct extended_perms_decision xpd; + struct list_head xpd_list; +}; + +struct avc_cache { + struct hlist_head slots[512]; + spinlock_t slots_lock[512]; + atomic_t lru_hint; + atomic_t active_nodes; + u32 latest_notif; +}; + +struct avc_callback_node { + int (*callback)(u32); + u32 events; + struct avc_callback_node *next; +}; + +struct selinux_avc { + unsigned int avc_cache_threshold; + struct avc_cache avc_cache; +}; + +enum { + INET_DIAG_REQ_NONE = 0, + INET_DIAG_REQ_BYTECODE = 1, + INET_DIAG_REQ_SK_BPF_STORAGES = 2, + INET_DIAG_REQ_PROTOCOL = 3, + __INET_DIAG_REQ_MAX = 4, +}; + +struct nlmsg_perm { + u16 nlmsg_type; + u32 perm; +}; + +struct smk_net4addr { + struct list_head list; + struct in_addr smk_host; + struct in_addr smk_mask; + int smk_masks; + struct smack_known *smk_label; +}; + +struct smk_net6addr { + struct list_head list; + struct in6_addr smk_host; + struct in6_addr smk_mask; + int smk_masks; + struct smack_known *smk_label; +}; + +enum smk_inos { + SMK_ROOT_INO = 2, + SMK_LOAD = 3, + SMK_CIPSO = 4, + SMK_DOI = 5, + SMK_DIRECT = 6, + SMK_AMBIENT = 7, + SMK_NET4ADDR = 8, + SMK_ONLYCAP = 9, + SMK_LOGGING = 10, + SMK_LOAD_SELF = 11, + SMK_ACCESSES = 12, + SMK_MAPPED = 13, + SMK_LOAD2 = 14, + SMK_LOAD_SELF2 = 15, + SMK_ACCESS2 = 16, + SMK_CIPSO2 = 17, + SMK_REVOKE_SUBJ = 18, + SMK_CHANGE_RULE = 19, + SMK_SYSLOG = 20, + SMK_PTRACE = 21, + SMK_NET6ADDR = 23, + SMK_RELABEL_SELF = 24, +}; + +struct smack_parsed_rule { + struct smack_known *smk_subject; + struct smack_known *smk_object; + int smk_access1; + int smk_access2; +}; + +enum tomoyo_grant_log { + TOMOYO_GRANTLOG_AUTO = 0, + TOMOYO_GRANTLOG_NO = 1, + TOMOYO_GRANTLOG_YES = 2, +}; + +enum tomoyo_value_type { + TOMOYO_VALUE_TYPE_INVALID = 0, + TOMOYO_VALUE_TYPE_DECIMAL = 1, + TOMOYO_VALUE_TYPE_OCTAL = 2, + TOMOYO_VALUE_TYPE_HEXADECIMAL = 3, +}; + +struct tomoyo_argv { + long unsigned int index; + const struct tomoyo_path_info *value; + bool is_not; +}; + +struct tomoyo_envp { + const struct tomoyo_path_info *name; + const struct tomoyo_path_info *value; + bool is_not; +}; + +struct tomoyo_condition_element { + u8 left; + u8 right; + bool equals; +}; + +struct tomoyo_env_acl { + struct tomoyo_acl_info head; + const struct tomoyo_path_info *env; +}; + +struct apparmor_notif_common { + __u16 len; + __u16 version; +}; + +struct apparmor_notif_register_v5 { + struct apparmor_notif_common base; + __u64 listener_id; +} __attribute__((packed)); + +struct apparmor_notif_resend_v5 { + struct apparmor_notif_common base; + __u64 listener_id; + __u32 ready; + __u32 pending; +} __attribute__((packed)); + +struct apparmor_notif_filter { + struct apparmor_notif_common base; + __u32 modeset; + __u32 ns; + __u32 filter; + __u8 data[0]; +}; + +struct apparmor_notif { + struct apparmor_notif_common base; + __u16 ntype; + __u8 signalled; + __u8 flags; + __u64 id; + __s32 error; +} __attribute__((packed)); + +struct apparmor_notif_resp_perm { + struct apparmor_notif base; + __s32 error; + __u32 allow; + __u32 deny; +}; + +struct apparmor_notif_resp_name { + union { + struct apparmor_notif base; + struct apparmor_notif_resp_perm perm; + }; + __u32 name; + __u8 data[0]; +}; + +union apparmor_notif_filters { + struct { + struct apparmor_notif_common base; + __u32 modeset; + __u32 ns; + __u32 filter; + __u8 data[0]; + }; + struct apparmor_notif_filter v3; + struct apparmor_notif_filter v5; +}; + +union apparmor_notif_resp { + struct apparmor_notif base; + struct apparmor_notif_resp_perm perm; + struct apparmor_notif_resp_name name; + union { + struct apparmor_notif_resp_perm perm; + struct apparmor_notif_resp_name name; + } v3; + union { + struct apparmor_notif_resp_perm perm; + struct apparmor_notif_resp_name name; + } v5; +}; + +struct aa_listener { + struct kref count; + spinlock_t lock; + wait_queue_head_t wait; + struct list_head ns_proxies; + struct list_head notifications; + struct list_head pending; + struct aa_ns *ns; + struct aa_dfa *filter; + struct aa_label *label; + u64 listener_id; + u64 last_id; + u32 mask; + u32 flags; + u16 version; +}; + +struct aa_listener_proxy { + struct aa_ns *ns; + struct aa_listener *listener; + struct list_head llist; + struct list_head nslist; + struct delayed_work work; +}; + +struct rawdata_f_data { + struct aa_loaddata *loaddata; +}; + +struct aa_revision { + struct aa_ns *ns; + long int last_read; +}; + +struct multi_transaction { + struct kref count; + ssize_t size; + char data[0]; +}; + +enum { + KERNEL_PARAM_OPS_FL_NOARG = 1, +}; + +enum nf_hook_ops_type { + NF_HOOK_OP_UNDEFINED = 0, + NF_HOOK_OP_NF_TABLES = 1, + NF_HOOK_OP_BPF = 2, + NF_HOOK_OP_NFT_FT = 3, +}; + +struct nf_hook_ops { + struct list_head list; + struct callback_head rcu; + nf_hookfn *hook; + struct net_device *dev; + void *priv; + u8 pf; + enum nf_hook_ops_type hook_ops_type: 8; + unsigned int hooknum; + int priority; +}; + +enum nf_ip_hook_priorities { + NF_IP_PRI_FIRST = -2147483648, + NF_IP_PRI_RAW_BEFORE_DEFRAG = -450, + NF_IP_PRI_CONNTRACK_DEFRAG = -400, + NF_IP_PRI_RAW = -300, + NF_IP_PRI_SELINUX_FIRST = -225, + NF_IP_PRI_CONNTRACK = -200, + NF_IP_PRI_MANGLE = -150, + NF_IP_PRI_NAT_DST = -100, + NF_IP_PRI_FILTER = 0, + NF_IP_PRI_SECURITY = 50, + NF_IP_PRI_NAT_SRC = 100, + NF_IP_PRI_SELINUX_LAST = 225, + NF_IP_PRI_CONNTRACK_HELPER = 300, + NF_IP_PRI_CONNTRACK_CONFIRM = 2147483647, + NF_IP_PRI_LAST = 2147483647, +}; + +enum nf_ip6_hook_priorities { + NF_IP6_PRI_FIRST = -2147483648, + NF_IP6_PRI_RAW_BEFORE_DEFRAG = -450, + NF_IP6_PRI_CONNTRACK_DEFRAG = -400, + NF_IP6_PRI_RAW = -300, + NF_IP6_PRI_SELINUX_FIRST = -225, + NF_IP6_PRI_CONNTRACK = -200, + NF_IP6_PRI_MANGLE = -150, + NF_IP6_PRI_NAT_DST = -100, + NF_IP6_PRI_FILTER = 0, + NF_IP6_PRI_SECURITY = 50, + NF_IP6_PRI_NAT_SRC = 100, + NF_IP6_PRI_SELINUX_LAST = 225, + NF_IP6_PRI_CONNTRACK_HELPER = 300, + NF_IP6_PRI_LAST = 2147483647, +}; + +struct aa_task_ctx { + struct aa_label *nnp; + struct aa_label *onexec; + struct aa_label *previous; + u64 token; +}; + +union aa_buffer { + struct list_head list; + struct { + struct {} __empty_buffer; + char buffer[0]; + }; +}; + +struct aa_local_cache { + unsigned int hold; + unsigned int count; + struct list_head head; +}; + +enum addr_type { + ADDR_LOCAL = 0, + ADDR_LOCAL_PRIV = 1, + ADDR_REMOTE = 2, +}; + +struct match_addr { + const char *addrp; + enum addr_type addrtype; + int len; + __be16 port; +}; + +struct stored_match_addr { + union { + struct sockaddr addr; + struct sockaddr_in addr4; + struct sockaddr_in6 addr6; + }; + int addrlen; + struct match_addr maddr; +}; + +enum cmd_type { + CMD_ADDR = 1, + CMD_LISTEN = 2, + CMD_OPT = 4, +}; + +struct ptrace_relation { + struct task_struct *tracer; + struct task_struct *tracee; + bool invalid; + struct list_head node; + struct callback_head rcu; +}; + +struct access_report_info { + struct callback_head work; + const char *access; + struct task_struct *target; + struct task_struct *agent; +}; + +enum devcg_behavior { + DEVCG_DEFAULT_NONE = 0, + DEVCG_DEFAULT_ALLOW = 1, + DEVCG_DEFAULT_DENY = 2, +}; + +struct dev_exception_item { + u32 major; + u32 minor; + short int type; + short int access; + struct list_head list; + struct callback_head rcu; +}; + +struct dev_cgroup { + struct cgroup_subsys_state css; + struct list_head exceptions; + enum devcg_behavior behavior; +}; + +struct ipefs_file { + const char *name; + umode_t access; + const struct file_operations *fops; +}; + +enum ipe_prop_type { + IPE_PROP_BOOT_VERIFIED_FALSE = 0, + IPE_PROP_BOOT_VERIFIED_TRUE = 1, + IPE_PROP_DMV_ROOTHASH = 2, + IPE_PROP_DMV_SIG_FALSE = 3, + IPE_PROP_DMV_SIG_TRUE = 4, + IPE_PROP_FSV_DIGEST = 5, + IPE_PROP_FSV_SIG_FALSE = 6, + IPE_PROP_FSV_SIG_TRUE = 7, + __IPE_PROP_MAX = 8, +}; + +struct ipe_prop { + struct list_head next; + enum ipe_prop_type type; + void *value; +}; + +struct ipe_rule { + enum ipe_op_type op; + enum ipe_action_type action; + struct list_head props; + struct list_head next; +}; + +enum ipe_match { + IPE_MATCH_RULE = 0, + IPE_MATCH_TABLE = 1, + IPE_MATCH_GLOBAL = 2, + __IPE_MATCH_MAX = 3, +}; + +struct efi_mokvar_table_entry { + char name[256]; + u64 data_size; + u8 data[0]; +}; + +typedef void (*efi_element_handler_t)(const char *, const void *, size_t); + +enum blacklist_hash_type { + BLACKLIST_HASH_X509_TBS = 1, + BLACKLIST_HASH_BINARY = 2, +}; + +struct ima_algo_desc { + struct crypto_shash *tfm; + enum hash_algo algo; +}; + +struct ima_queue_entry { + struct hlist_node hnext; + struct list_head later; + struct ima_template_entry *entry; +}; + +struct ima_h_table { + atomic_long_t len; + atomic_long_t violations; + struct hlist_head queue[1024]; +}; + +enum ima_fs_flags { + IMA_FS_BUSY = 0, +}; + +enum data_formats { + DATA_FMT_DIGEST = 0, + DATA_FMT_DIGEST_WITH_ALGO = 1, + DATA_FMT_DIGEST_WITH_TYPE_AND_ALGO = 2, + DATA_FMT_STRING = 3, + DATA_FMT_HEX = 4, + DATA_FMT_UINT = 5, +}; + +enum digest_type { + DIGEST_TYPE_IMA = 0, + DIGEST_TYPE_VERITY = 1, + DIGEST_TYPE__LAST = 2, +}; + +struct evm_xattr { + struct evm_ima_xattr_data_hdr data; + u8 digest[20]; +}; + +struct evm_iint_cache { + long unsigned int flags; + enum integrity_status evm_status: 4; + struct integrity_inode_attributes metadata_inode; +}; + +struct evm_digest { + struct ima_digest_data_hdr hdr; + char digest[64]; +}; + +struct crypto_report_aead { + char type[64]; + char geniv[64]; + unsigned int blocksize; + unsigned int maxauthsize; + unsigned int ivsize; +}; + +struct crypto_cipher { + struct crypto_tfm base; +}; + +struct crypto_cipher_spawn { + struct crypto_spawn base; +}; + +struct skcipher_alg { + int (*setkey)(struct crypto_skcipher *, const u8 *, unsigned int); + int (*encrypt)(struct skcipher_request *); + int (*decrypt)(struct skcipher_request *); + int (*export)(struct skcipher_request *, void *); + int (*import)(struct skcipher_request *, const void *); + int (*init)(struct crypto_skcipher *); + void (*exit)(struct crypto_skcipher *); + unsigned int walksize; + union { + struct { + unsigned int min_keysize; + unsigned int max_keysize; + unsigned int ivsize; + unsigned int chunksize; + unsigned int statesize; + struct crypto_alg base; + }; + struct skcipher_alg_common co; + }; +}; + +struct skcipher_instance { + void (*free)(struct skcipher_instance *); + union { + struct { + char head[88]; + struct crypto_instance base; + } s; + struct skcipher_alg alg; + }; +}; + +struct skcipher_ctx_simple { + struct crypto_cipher *cipher; +}; + +struct crypto_sig_spawn { + struct crypto_spawn base; +}; + +struct crypto_report_sig { + char type[64]; +}; + +struct dh { + const void *key; + const void *p; + const void *g; + unsigned int key_size; + unsigned int p_size; + unsigned int g_size; +}; + +struct dh_ctx { + MPI p; + MPI g; + MPI xa; +}; + +struct dh_safe_prime { + unsigned int max_strength; + unsigned int p_size; + const char *p; +}; + +struct dh_safe_prime_instance_ctx { + struct crypto_kpp_spawn dh_spawn; + const struct dh_safe_prime *safe_prime; +}; + +struct dh_safe_prime_tfm_ctx { + struct crypto_kpp *dh_tfm; +}; + +struct acomp_req_chain { + crypto_completion_t compl; + void *data; + struct scatterlist ssg; + struct scatterlist dsg; + union { + const u8 *src; + struct folio *sfolio; + }; + union { + u8 *dst; + struct folio *dfolio; + }; + u32 flags; +}; + +struct acomp_req { + struct crypto_async_request base; + union { + struct scatterlist *src; + const u8 *svirt; + }; + union { + struct scatterlist *dst; + u8 *dvirt; + }; + unsigned int slen; + unsigned int dlen; + struct acomp_req_chain chain; + void *__ctx[0]; +}; + +struct crypto_acomp { + int (*compress)(struct acomp_req *); + int (*decompress)(struct acomp_req *); + unsigned int reqsize; + struct crypto_tfm base; +}; + +struct acomp_alg { + int (*compress)(struct acomp_req *); + int (*decompress)(struct acomp_req *); + int (*init)(struct crypto_acomp *); + void (*exit)(struct crypto_acomp *); + union { + struct { + struct crypto_alg base; + }; + struct comp_alg_common calg; + }; +}; + +struct acomp_walk { + union { + struct { + struct { + const void * const addr; + } virt; + } src; + struct scatter_walk in; + }; + union { + struct { + struct { + void * const addr; + } virt; + } dst; + struct scatter_walk out; + }; + unsigned int slen; + unsigned int dlen; + int flags; +}; + +struct crypto_report_acomp { + char type[64]; +}; + +enum { + ACOMP_WALK_SLEEP = 1, + ACOMP_WALK_SRC_LINEAR = 2, + ACOMP_WALK_DST_LINEAR = 4, +}; + +struct crypto_rfc3686_ctx { + struct crypto_skcipher *child; + u8 nonce[4]; +}; + +struct crypto_rfc3686_req_ctx { + u8 iv[16]; + struct skcipher_request subreq; +}; + +struct deflate_stream { + struct z_stream_s stream; + u8 workspace[0]; +}; + +struct crypto_report_rng { + char type[64]; + unsigned int seedsize; +}; + +enum x509_actions { + ACT_x509_extract_key_data = 0, + ACT_x509_extract_name_segment = 1, + ACT_x509_note_OID = 2, + ACT_x509_note_issuer = 3, + ACT_x509_note_not_after = 4, + ACT_x509_note_not_before = 5, + ACT_x509_note_params = 6, + ACT_x509_note_serial = 7, + ACT_x509_note_sig_algo = 8, + ACT_x509_note_signature = 9, + ACT_x509_note_subject = 10, + ACT_x509_note_tbs_certificate = 11, + ACT_x509_process_extension = 12, + NR__x509_actions = 13, +}; + +enum x509_akid_actions { + ACT_x509_akid_note_kid = 0, + ACT_x509_akid_note_name = 1, + ACT_x509_akid_note_serial = 2, + ACT_x509_extract_name_segment___2 = 3, + ACT_x509_note_OID___2 = 4, + NR__x509_akid_actions = 5, +}; + +struct x509_parse_context { + struct x509_certificate *cert; + long unsigned int data; + const void *key; + size_t key_size; + const void *params; + size_t params_size; + enum OID key_algo; + enum OID last_oid; + enum OID sig_algo; + u8 o_size; + u8 cn_size; + u8 email_size; + u16 o_offset; + u16 cn_offset; + u16 email_offset; + unsigned int raw_akid_size; + const void *raw_akid; + const void *akid_raw_issuer; + unsigned int akid_raw_issuer_size; +}; + +enum pkcs7_actions { + ACT_pkcs7_check_content_type = 0, + ACT_pkcs7_extract_cert = 1, + ACT_pkcs7_note_OID = 2, + ACT_pkcs7_note_certificate_list = 3, + ACT_pkcs7_note_content = 4, + ACT_pkcs7_note_data = 5, + ACT_pkcs7_note_signed_info = 6, + ACT_pkcs7_note_signeddata_version = 7, + ACT_pkcs7_note_signerinfo_version = 8, + ACT_pkcs7_sig_note_authenticated_attr = 9, + ACT_pkcs7_sig_note_digest_algo = 10, + ACT_pkcs7_sig_note_issuer = 11, + ACT_pkcs7_sig_note_pkey_algo = 12, + ACT_pkcs7_sig_note_serial = 13, + ACT_pkcs7_sig_note_set_of_authattrs = 14, + ACT_pkcs7_sig_note_signature = 15, + ACT_pkcs7_sig_note_skid = 16, + NR__pkcs7_actions = 17, +}; + +enum mscode_actions { + ACT_mscode_note_content_type = 0, + ACT_mscode_note_digest = 1, + ACT_mscode_note_digest_algo = 2, + NR__mscode_actions = 3, +}; + +struct kdf_testvec { + unsigned char *key; + size_t keylen; + unsigned char *ikm; + size_t ikmlen; + struct kvec info; + unsigned char *expected; + size_t expectedlen; +}; + +struct bio_alloc_cache { + struct bio *free_list; + struct bio *free_list_irq; + unsigned int nr; + unsigned int nr_irq; +}; + +struct biovec_slab { + int nr_vecs; + char *name; + struct kmem_cache *slab; +}; + +struct bio_slab { + struct kmem_cache *slab; + unsigned int slab_ref; + unsigned int slab_size; + char name[12]; +}; + +struct blk_plug_cb; + +typedef void (*blk_plug_cb_fn)(struct blk_plug_cb *, bool); + +struct blk_plug_cb { + struct list_head list; + blk_plug_cb_fn callback; + void *data; +}; + +struct trace_event_raw_block_buffer { + struct trace_entry ent; + dev_t dev; + sector_t sector; + size_t size; + char __data[0]; +}; + +struct trace_event_raw_block_rq_requeue { + struct trace_entry ent; + dev_t dev; + sector_t sector; + unsigned int nr_sector; + short unsigned int ioprio; + char rwbs[10]; + u32 __data_loc_cmd; + char __data[0]; +}; + +struct trace_event_raw_block_rq_completion { + struct trace_entry ent; + dev_t dev; + sector_t sector; + unsigned int nr_sector; + int error; + short unsigned int ioprio; + char rwbs[10]; + u32 __data_loc_cmd; + char __data[0]; +}; + +struct trace_event_raw_block_rq { + struct trace_entry ent; + dev_t dev; + sector_t sector; + unsigned int nr_sector; + unsigned int bytes; + short unsigned int ioprio; + char rwbs[10]; + char comm[16]; + u32 __data_loc_cmd; + char __data[0]; +}; + +struct trace_event_raw_block_bio_complete { + struct trace_entry ent; + dev_t dev; + sector_t sector; + unsigned int nr_sector; + int error; + char rwbs[10]; + char __data[0]; +}; + +struct trace_event_raw_block_bio { + struct trace_entry ent; + dev_t dev; + sector_t sector; + unsigned int nr_sector; + char rwbs[10]; + char comm[16]; + char __data[0]; +}; + +struct trace_event_raw_block_plug { + struct trace_entry ent; + char comm[16]; + char __data[0]; +}; + +struct trace_event_raw_block_unplug { + struct trace_entry ent; + int nr_rq; + char comm[16]; + char __data[0]; +}; + +struct trace_event_raw_block_split { + struct trace_entry ent; + dev_t dev; + sector_t sector; + sector_t new_sector; + char rwbs[10]; + char comm[16]; + char __data[0]; +}; + +struct trace_event_raw_block_bio_remap { + struct trace_entry ent; + dev_t dev; + sector_t sector; + unsigned int nr_sector; + dev_t old_dev; + sector_t old_sector; + char rwbs[10]; + char __data[0]; +}; + +struct trace_event_raw_block_rq_remap { + struct trace_entry ent; + dev_t dev; + sector_t sector; + unsigned int nr_sector; + dev_t old_dev; + sector_t old_sector; + unsigned int nr_bios; + char rwbs[10]; + char __data[0]; +}; + +struct trace_event_raw_blkdev_zone_mgmt { + struct trace_entry ent; + dev_t dev; + sector_t sector; + sector_t nr_sectors; + char rwbs[10]; + char __data[0]; +}; + +struct trace_event_raw_block_zwplug { + struct trace_entry ent; + dev_t dev; + unsigned int zno; + sector_t sector; + unsigned int nr_sectors; + char __data[0]; +}; + +struct trace_event_data_offsets_block_buffer {}; + +struct trace_event_data_offsets_block_rq_requeue { + u32 cmd; + const void *cmd_ptr_; +}; + +struct trace_event_data_offsets_block_rq_completion { + u32 cmd; + const void *cmd_ptr_; +}; + +struct trace_event_data_offsets_block_rq { + u32 cmd; + const void *cmd_ptr_; +}; + +struct trace_event_data_offsets_block_bio_complete {}; + +struct trace_event_data_offsets_block_bio {}; + +struct trace_event_data_offsets_block_plug {}; + +struct trace_event_data_offsets_block_unplug {}; + +struct trace_event_data_offsets_block_split {}; + +struct trace_event_data_offsets_block_bio_remap {}; + +struct trace_event_data_offsets_block_rq_remap {}; + +struct trace_event_data_offsets_blkdev_zone_mgmt {}; + +struct trace_event_data_offsets_block_zwplug {}; + +typedef void (*btf_trace_block_touch_buffer)(void *, struct buffer_head *); + +typedef void (*btf_trace_block_dirty_buffer)(void *, struct buffer_head *); + +typedef void (*btf_trace_block_rq_requeue)(void *, struct request *); + +typedef void (*btf_trace_block_rq_complete)(void *, struct request *, blk_status_t, unsigned int); + +typedef void (*btf_trace_block_rq_error)(void *, struct request *, blk_status_t, unsigned int); + +typedef void (*btf_trace_block_rq_insert)(void *, struct request *); + +typedef void (*btf_trace_block_rq_issue)(void *, struct request *); + +typedef void (*btf_trace_block_rq_merge)(void *, struct request *); + +typedef void (*btf_trace_block_io_start)(void *, struct request *); + +typedef void (*btf_trace_block_io_done)(void *, struct request *); + +typedef void (*btf_trace_block_bio_complete)(void *, struct request_queue *, struct bio *); + +typedef void (*btf_trace_block_bio_backmerge)(void *, struct bio *); + +typedef void (*btf_trace_block_bio_frontmerge)(void *, struct bio *); + +typedef void (*btf_trace_block_bio_queue)(void *, struct bio *); + +typedef void (*btf_trace_block_getrq)(void *, struct bio *); + +typedef void (*btf_trace_blk_zone_append_update_request_bio)(void *, struct request *); + +typedef void (*btf_trace_block_plug)(void *, struct request_queue *); + +typedef void (*btf_trace_block_unplug)(void *, struct request_queue *, unsigned int, bool); + +typedef void (*btf_trace_block_split)(void *, struct bio *, unsigned int); + +typedef void (*btf_trace_block_bio_remap)(void *, struct bio *, dev_t, sector_t); + +typedef void (*btf_trace_block_rq_remap)(void *, struct request *, dev_t, sector_t); + +typedef void (*btf_trace_blkdev_zone_mgmt)(void *, struct bio *, sector_t); + +typedef void (*btf_trace_disk_zone_wplug_add_bio)(void *, struct request_queue *, unsigned int, sector_t, unsigned int); + +typedef void (*btf_trace_blk_zone_wplug_bio)(void *, struct request_queue *, unsigned int, sector_t, unsigned int); + +struct req_iterator { + struct bvec_iter iter; + struct bio *bio; +}; + +enum bio_merge_status { + BIO_MERGE_OK = 0, + BIO_MERGE_NONE = 1, + BIO_MERGE_FAILED = 2, +}; + +struct dma_iova_state { + dma_addr_t addr; + u64 __size; +}; + +struct blk_dma_iter { + dma_addr_t addr; + u32 len; + blk_status_t status; + struct req_iterator iter; + struct pci_p2pdma_map_state p2pdma; +}; + +struct phys_vec { + phys_addr_t paddr; + u32 len; +}; + +struct logical_block_metadata_cap { + __u32 lbmd_flags; + __u16 lbmd_interval; + __u8 lbmd_size; + __u8 lbmd_opaque_size; + __u8 lbmd_opaque_offset; + __u8 lbmd_pi_size; + __u8 lbmd_pi_offset; + __u8 lbmd_guard_tag_type; + __u8 lbmd_app_tag_size; + __u8 lbmd_ref_tag_size; + __u8 lbmd_storage_tag_size; + __u8 pad; +}; + +struct blkpg_ioctl_arg { + int op; + int flags; + int datalen; + void *data; +}; + +struct blkpg_partition { + long long int start; + long long int length; + int pno; + char devname[64]; + char volname[64]; +}; + +struct pr_reservation { + __u64 key; + __u32 type; + __u32 flags; +}; + +struct pr_registration { + __u64 old_key; + __u64 new_key; + __u32 flags; + __u32 __pad; +}; + +struct pr_preempt { + __u64 old_key; + __u64 new_key; + __u32 type; + __u32 flags; +}; + +struct pr_clear { + __u64 key; + __u32 flags; + __u32 __pad; +}; + +enum { + IOU_F_TWQ_LAZY_WAKE = 1, +}; + +struct compat_blkpg_ioctl_arg { + compat_int_t op; + compat_int_t flags; + compat_int_t datalen; + compat_caddr_t data; +}; + +struct compat_hd_geometry { + unsigned char heads; + unsigned char sectors; + short unsigned int cylinders; + u32 start; +}; + +struct blk_iou_cmd { + int res; + bool nowait; +}; + +struct badblocks_context { + sector_t start; + sector_t len; + int ack; +}; + +struct lvm_rec { + char lvm_id[4]; + char reserved4[16]; + __be32 lvmarea_len; + __be32 vgda_len; + __be32 vgda_psn[2]; + char reserved36[10]; + __be16 pp_size; + char reserved46[12]; + __be16 version; +}; + +struct vgda { + __be32 secs; + __be32 usec; + char reserved8[16]; + __be16 numlvs; + __be16 maxlvs; + __be16 pp_size; + __be16 numpvs; + __be16 total_vgdas; + __be16 vgda_size; +}; + +struct lvd { + __be16 lv_ix; + __be16 res2; + __be16 res4; + __be16 maxsize; + __be16 lv_state; + __be16 mirror; + __be16 mirror_policy; + __be16 num_lps; + __be16 res10[8]; +}; + +struct lvname { + char name[64]; +}; + +struct ppe { + __be16 lv_ix; + short unsigned int res2; + short unsigned int res4; + __be16 lp_ix; + short unsigned int res8[12]; +}; + +struct pvd { + char reserved0[16]; + __be16 pp_count; + char reserved18[2]; + __be32 psn_part1; + char reserved24[8]; + struct ppe ppe[1016]; +}; + +struct lv_info { + short unsigned int pps_per_lv; + short unsigned int pps_found; + unsigned char lv_is_contiguous; +}; + +struct fat_boot_sector { + __u8 ignored[3]; + __u8 system_id[8]; + __u8 sector_size[2]; + __u8 sec_per_clus; + __le16 reserved; + __u8 fats; + __u8 dir_entries[2]; + __u8 sectors[2]; + __u8 media; + __le16 fat_length; + __le16 secs_track; + __le16 heads; + __le32 hidden; + __le32 total_sect; + union { + struct { + __u8 drive_number; + __u8 state; + __u8 signature; + __u8 vol_id[4]; + __u8 vol_label[11]; + __u8 fs_type[8]; + } fat16; + struct { + __le32 length; + __le16 flags; + __u8 version[2]; + __le32 root_cluster; + __le16 info_sector; + __le16 backup_boot; + __le16 reserved2[6]; + __u8 drive_number; + __u8 state; + __u8 signature; + __u8 vol_id[4]; + __u8 vol_label[11]; + __u8 fs_type[8]; + } fat32; + }; +}; + +struct msdos_partition { + u8 boot_ind; + u8 head; + u8 sector; + u8 cyl; + u8 sys_ind; + u8 end_head; + u8 end_sector; + u8 end_cyl; + __le32 start_sect; + __le32 nr_sects; +}; + +enum msdos_sys_ind { + DOS_EXTENDED_PARTITION = 5, + LINUX_EXTENDED_PARTITION = 133, + WIN98_EXTENDED_PARTITION = 15, + LINUX_DATA_PARTITION = 131, + LINUX_LVM_PARTITION = 142, + LINUX_RAID_PARTITION___2 = 253, + SOLARIS_X86_PARTITION = 130, + NEW_SOLARIS_X86_PARTITION = 191, + DM6_AUX1PARTITION = 81, + DM6_AUX3PARTITION = 83, + DM6_PARTITION = 84, + EZD_PARTITION = 85, + FREEBSD_PARTITION = 165, + OPENBSD_PARTITION = 166, + NETBSD_PARTITION = 169, + BSDI_PARTITION = 183, + MINIX_PARTITION = 129, + UNIXWARE_PARTITION = 99, +}; + +struct solaris_x86_slice { + __le16 s_tag; + __le16 s_flag; + __le32 s_start; + __le32 s_size; +}; + +struct solaris_x86_vtoc { + unsigned int v_bootinfo[3]; + __le32 v_sanity; + __le32 v_version; + char v_volume[8]; + __le16 v_sectorsz; + __le16 v_nparts; + unsigned int v_reserved[10]; + struct solaris_x86_slice v_slice[16]; + unsigned int timestamp[16]; + char v_asciilabel[128]; +}; + +struct bsd_partition { + __le32 p_size; + __le32 p_offset; + __le32 p_fsize; + __u8 p_fstype; + __u8 p_frag; + __le16 p_cpg; +}; + +struct bsd_disklabel { + __le32 d_magic; + __s16 d_type; + __s16 d_subtype; + char d_typename[16]; + char d_packname[16]; + __u32 d_secsize; + __u32 d_nsectors; + __u32 d_ntracks; + __u32 d_ncylinders; + __u32 d_secpercyl; + __u32 d_secperunit; + __u16 d_sparespertrack; + __u16 d_sparespercyl; + __u32 d_acylinders; + __u16 d_rpm; + __u16 d_interleave; + __u16 d_trackskew; + __u16 d_cylskew; + __u32 d_headswitch; + __u32 d_trkseek; + __u32 d_flags; + __u32 d_drivedata[5]; + __u32 d_spare[5]; + __le32 d_magic2; + __le16 d_checksum; + __le16 d_npartitions; + __le32 d_bbsize; + __le32 d_sbsize; + struct bsd_partition d_partitions[16]; +}; + +struct unixware_slice { + __le16 s_label; + __le16 s_flags; + __le32 start_sect; + __le32 nr_sects; +}; + +struct unixware_vtoc { + __le32 v_magic; + __le32 v_version; + char v_name[8]; + __le16 v_nslices; + __le16 v_unknown1; + __le32 v_reserved[10]; + struct unixware_slice v_slice[16]; +}; + +struct unixware_disklabel { + __le32 d_type; + __le32 d_magic; + __le32 d_version; + char d_serial[12]; + __le32 d_ncylinders; + __le32 d_ntracks; + __le32 d_nsectors; + __le32 d_secsize; + __le32 d_part_start; + __le32 d_unknown1[12]; + __le32 d_alt_tbl; + __le32 d_alt_len; + __le32 d_phys_cyl; + __le32 d_phys_trk; + __le32 d_phys_sec; + __le32 d_phys_bytes; + __le32 d_unknown2; + __le32 d_unknown3; + __le32 d_pad[8]; + struct unixware_vtoc vtoc; +}; + +struct pt_info { + s32 pi_nblocks; + u32 pi_blkoff; +}; + +struct ultrix_disklabel { + s32 pt_magic; + s32 pt_valid; + struct pt_info pt_part[8]; +}; + +struct volumeid { + u8 vid_unused[248]; + u8 vid_mac[8]; +}; + +struct dkconfig { + u8 ios_unused0[128]; + __be32 ios_slcblk; + __be16 ios_slccnt; + u8 ios_unused1[122]; +}; + +struct dkblk0 { + struct volumeid dk_vid; + struct dkconfig dk_ios; +}; + +struct slice { + __be32 nblocks; + __be32 blkoff; +}; + +struct class_dev_iter { + struct klist_iter ki; + const struct device_type *type; + struct subsys_private *sp; +}; + +struct uuidcmp { + const char *uuid; + int len; +}; + +enum prio_policy { + POLICY_NO_CHANGE = 0, + POLICY_PROMOTE_TO_RT = 1, + POLICY_RESTRICT_TO_BE = 2, + POLICY_ALL_TO_IDLE = 3, + POLICY_NONE_TO_RT = 4, +}; + +struct ioprio_blkcg { + struct blkcg_policy_data cpd; + enum prio_policy prio_policy; +}; + +struct t10_pi_tuple { + __be16 guard_tag; + __be16 app_tag; + __be32 ref_tag; +}; + +struct crc64_pi_tuple { + __be64 guard_tag; + __be16 app_tag; + __u8 ref_tag[6]; +}; + +enum blk_zone_type { + BLK_ZONE_TYPE_CONVENTIONAL = 1, + BLK_ZONE_TYPE_SEQWRITE_REQ = 2, + BLK_ZONE_TYPE_SEQWRITE_PREF = 3, +}; + +enum blk_zone_cond { + BLK_ZONE_COND_NOT_WP = 0, + BLK_ZONE_COND_EMPTY = 1, + BLK_ZONE_COND_IMP_OPEN = 2, + BLK_ZONE_COND_EXP_OPEN = 3, + BLK_ZONE_COND_CLOSED = 4, + BLK_ZONE_COND_READONLY = 13, + BLK_ZONE_COND_FULL = 14, + BLK_ZONE_COND_OFFLINE = 15, +}; + +enum blk_zone_report_flags { + BLK_ZONE_REP_CAPACITY = 1, +}; + +struct blk_zone_report { + __u64 sector; + __u32 nr_zones; + __u32 flags; + struct blk_zone zones[0]; +}; + +struct blk_zone_range { + __u64 sector; + __u64 nr_sectors; +}; + +struct blk_zone_wplug { + struct hlist_node node; + refcount_t ref; + spinlock_t lock; + unsigned int flags; + unsigned int zone_no; + unsigned int wp_offset; + struct bio_list bio_list; + struct work_struct bio_work; + struct callback_head callback_head; + struct gendisk *disk; +}; + +struct disk_report_zones_cb_args { + struct gendisk *disk; + report_zones_cb user_cb; + void *user_data; +}; + +struct zone_report_args { + struct blk_zone *zones; +}; + +struct blk_revalidate_zone_args { + struct gendisk *disk; + long unsigned int *conv_zones_bitmap; + unsigned int nr_zones; + unsigned int zone_capacity; + unsigned int last_zone_capacity; + sector_t sector; +}; + +struct blk_crypto_keyslot { + atomic_t slot_refs; + struct list_head idle_slot_node; + struct hlist_node hash_node; + const struct blk_crypto_key *key; + struct blk_crypto_profile *profile; +}; + +typedef u32 compat_sigset_word; + +typedef struct { + compat_sigset_word sig[2]; +} compat_sigset_t; + +struct io_sqring_offsets { + __u32 head; + __u32 tail; + __u32 ring_mask; + __u32 ring_entries; + __u32 flags; + __u32 dropped; + __u32 array; + __u32 resv1; + __u64 user_addr; +}; + +struct io_cqring_offsets { + __u32 head; + __u32 tail; + __u32 ring_mask; + __u32 ring_entries; + __u32 overflow; + __u32 cqes; + __u32 flags; + __u32 resv1; + __u64 user_addr; +}; + +struct io_uring_params { + __u32 sq_entries; + __u32 cq_entries; + __u32 flags; + __u32 sq_thread_cpu; + __u32 sq_thread_idle; + __u32 features; + __u32 wq_fd; + __u32 resv[3]; + struct io_sqring_offsets sq_off; + struct io_cqring_offsets cq_off; +}; + +enum { + IORING_REG_WAIT_TS = 1, +}; + +struct io_uring_reg_wait { + struct __kernel_timespec ts; + __u32 min_wait_usec; + __u32 flags; + __u64 sigmask; + __u32 sigmask_sz; + __u32 pad[3]; + __u64 pad2[2]; +}; + +struct io_uring_getevents_arg { + __u64 sigmask; + __u32 sigmask_sz; + __u32 min_wait_usec; + __u64 ts; +}; + +struct io_sq_data { + refcount_t refs; + atomic_t park_pending; + struct mutex lock; + struct list_head ctx_list; + struct task_struct *thread; + struct wait_queue_head wait; + unsigned int sq_thread_idle; + int sq_cpu; + pid_t task_pid; + pid_t task_tgid; + u64 work_time; + long unsigned int state; + struct completion exited; +}; + +struct io_overflow_cqe { + struct list_head list; + struct io_uring_cqe cqe; +}; + +struct trace_event_raw_io_uring_create { + struct trace_entry ent; + int fd; + void *ctx; + u32 sq_entries; + u32 cq_entries; + u32 flags; + char __data[0]; +}; + +struct trace_event_raw_io_uring_register { + struct trace_entry ent; + void *ctx; + unsigned int opcode; + unsigned int nr_files; + unsigned int nr_bufs; + long int ret; + char __data[0]; +}; + +struct trace_event_raw_io_uring_file_get { + struct trace_entry ent; + void *ctx; + void *req; + u64 user_data; + int fd; + char __data[0]; +}; + +struct trace_event_raw_io_uring_queue_async_work { + struct trace_entry ent; + void *ctx; + void *req; + u64 user_data; + u8 opcode; + long long unsigned int flags; + struct io_wq_work *work; + int rw; + u32 __data_loc_op_str; + char __data[0]; +}; + +struct trace_event_raw_io_uring_defer { + struct trace_entry ent; + void *ctx; + void *req; + long long unsigned int data; + u8 opcode; + u32 __data_loc_op_str; + char __data[0]; +}; + +struct trace_event_raw_io_uring_link { + struct trace_entry ent; + void *ctx; + void *req; + void *target_req; + char __data[0]; +}; + +struct trace_event_raw_io_uring_cqring_wait { + struct trace_entry ent; + void *ctx; + int min_events; + char __data[0]; +}; + +struct trace_event_raw_io_uring_fail_link { + struct trace_entry ent; + void *ctx; + void *req; + long long unsigned int user_data; + u8 opcode; + void *link; + u32 __data_loc_op_str; + char __data[0]; +}; + +struct trace_event_raw_io_uring_complete { + struct trace_entry ent; + void *ctx; + void *req; + u64 user_data; + int res; + unsigned int cflags; + u64 extra1; + u64 extra2; + char __data[0]; +}; + +struct trace_event_raw_io_uring_submit_req { + struct trace_entry ent; + void *ctx; + void *req; + long long unsigned int user_data; + u8 opcode; + long long unsigned int flags; + bool sq_thread; + u32 __data_loc_op_str; + char __data[0]; +}; + +struct trace_event_raw_io_uring_poll_arm { + struct trace_entry ent; + void *ctx; + void *req; + long long unsigned int user_data; + u8 opcode; + int mask; + int events; + u32 __data_loc_op_str; + char __data[0]; +}; + +struct trace_event_raw_io_uring_task_add { + struct trace_entry ent; + void *ctx; + void *req; + long long unsigned int user_data; + u8 opcode; + int mask; + u32 __data_loc_op_str; + char __data[0]; +}; + +struct trace_event_raw_io_uring_req_failed { + struct trace_entry ent; + void *ctx; + void *req; + long long unsigned int user_data; + u8 opcode; + u8 flags; + u8 ioprio; + u64 off; + u64 addr; + u32 len; + u32 op_flags; + u16 buf_index; + u16 personality; + u32 file_index; + u64 pad1; + u64 addr3; + int error; + u32 __data_loc_op_str; + char __data[0]; +}; + +struct trace_event_raw_io_uring_cqe_overflow { + struct trace_entry ent; + void *ctx; + long long unsigned int user_data; + s32 res; + u32 cflags; + void *ocqe; + char __data[0]; +}; + +struct trace_event_raw_io_uring_task_work_run { + struct trace_entry ent; + void *tctx; + unsigned int count; + char __data[0]; +}; + +struct trace_event_raw_io_uring_short_write { + struct trace_entry ent; + void *ctx; + u64 fpos; + u64 wanted; + u64 got; + char __data[0]; +}; + +struct trace_event_raw_io_uring_local_work_run { + struct trace_entry ent; + void *ctx; + int count; + unsigned int loops; + char __data[0]; +}; + +struct trace_event_data_offsets_io_uring_create {}; + +struct trace_event_data_offsets_io_uring_register {}; + +struct trace_event_data_offsets_io_uring_file_get {}; + +struct trace_event_data_offsets_io_uring_queue_async_work { + u32 op_str; + const void *op_str_ptr_; +}; + +struct trace_event_data_offsets_io_uring_defer { + u32 op_str; + const void *op_str_ptr_; +}; + +struct trace_event_data_offsets_io_uring_link {}; + +struct trace_event_data_offsets_io_uring_cqring_wait {}; + +struct trace_event_data_offsets_io_uring_fail_link { + u32 op_str; + const void *op_str_ptr_; +}; + +struct trace_event_data_offsets_io_uring_complete {}; + +struct trace_event_data_offsets_io_uring_submit_req { + u32 op_str; + const void *op_str_ptr_; +}; + +struct trace_event_data_offsets_io_uring_poll_arm { + u32 op_str; + const void *op_str_ptr_; +}; + +struct trace_event_data_offsets_io_uring_task_add { + u32 op_str; + const void *op_str_ptr_; +}; + +struct trace_event_data_offsets_io_uring_req_failed { + u32 op_str; + const void *op_str_ptr_; +}; + +struct trace_event_data_offsets_io_uring_cqe_overflow {}; + +struct trace_event_data_offsets_io_uring_task_work_run {}; + +struct trace_event_data_offsets_io_uring_short_write {}; + +struct trace_event_data_offsets_io_uring_local_work_run {}; + +typedef void (*btf_trace_io_uring_create)(void *, int, void *, u32, u32, u32); + +typedef void (*btf_trace_io_uring_register)(void *, void *, unsigned int, unsigned int, unsigned int, long int); + +typedef void (*btf_trace_io_uring_file_get)(void *, struct io_kiocb *, int); + +typedef void (*btf_trace_io_uring_queue_async_work)(void *, struct io_kiocb *, int); + +typedef void (*btf_trace_io_uring_defer)(void *, struct io_kiocb *); + +typedef void (*btf_trace_io_uring_link)(void *, struct io_kiocb *, struct io_kiocb *); + +typedef void (*btf_trace_io_uring_cqring_wait)(void *, void *, int); + +typedef void (*btf_trace_io_uring_fail_link)(void *, struct io_kiocb *, struct io_kiocb *); + +typedef void (*btf_trace_io_uring_complete)(void *, struct io_ring_ctx *, void *, struct io_uring_cqe *); + +typedef void (*btf_trace_io_uring_submit_req)(void *, struct io_kiocb *); + +typedef void (*btf_trace_io_uring_poll_arm)(void *, struct io_kiocb *, int, int); + +typedef void (*btf_trace_io_uring_task_add)(void *, struct io_kiocb *, int); + +typedef void (*btf_trace_io_uring_req_failed)(void *, const struct io_uring_sqe *, struct io_kiocb *, int); + +typedef void (*btf_trace_io_uring_cqe_overflow)(void *, void *, long long unsigned int, s32, u32, void *); + +typedef void (*btf_trace_io_uring_task_work_run)(void *, void *, unsigned int); + +typedef void (*btf_trace_io_uring_short_write)(void *, void *, u64, u64, u64); + +typedef void (*btf_trace_io_uring_local_work_run)(void *, void *, int, unsigned int); + +enum { + IO_IMU_DEST = 1, + IO_IMU_SOURCE = 2, +}; + +struct io_cold_def { + const char *name; + void (*sqe_copy)(struct io_kiocb *); + void (*cleanup)(struct io_kiocb *); + void (*fail)(struct io_kiocb *); +}; + +struct io_defer_entry { + struct list_head list; + struct io_kiocb *req; +}; + +struct ext_arg { + size_t argsz; + struct timespec64 ts; + const sigset_t *sig; + ktime_t min_time; + bool ts_set; + bool iowait; +}; + +struct io_tctx_exit { + struct callback_head task_work; + struct completion completion; + struct io_ring_ctx *ctx; +}; + +struct io_task_cancel { + struct io_uring_task *tctx; + bool all; +}; + +struct creds; + +struct io_poll_update { + struct file *file; + u64 old_user_data; + u64 new_user_data; + __poll_t events; + bool update_events; + bool update_user_data; +}; + +struct io_poll_table { + struct poll_table_struct pt; + struct io_kiocb *req; + int nr_entries; + int error; + bool owning; + __poll_t result_mask; +}; + +enum { + IOU_POLL_DONE = 0, + IOU_POLL_NO_ACTION = 1, + IOU_POLL_REMOVE_POLL_USE_RES = 2, + IOU_POLL_REISSUE = 3, + IOU_POLL_REQUEUE = 4, +}; + +enum { + IO_SQ_THREAD_SHOULD_STOP = 0, + IO_SQ_THREAD_SHOULD_PARK = 1, +}; + +struct io_sq_time { + bool started; + u64 usec; +}; + +struct io_sync { + struct file *file; + loff_t len; + loff_t off; + int flags; + int mode; +}; + +struct io_timeout_data { + struct io_kiocb *req; + struct hrtimer timer; + struct timespec64 ts; + enum hrtimer_mode mode; + u32 flags; +}; + +struct io_timeout { + struct file *file; + u32 off; + u32 target_seq; + u32 repeats; + struct list_head list; + struct io_kiocb *head; + struct io_kiocb *prev; +}; + +struct io_timeout_rem { + struct file *file; + u64 addr; + struct timespec64 ts; + u32 flags; + bool ltimeout; +}; + +struct io_ftrunc { + struct file *file; + loff_t len; +}; + +struct io_uring_zcrx_rqe { + __u64 off; + __u32 len; + __u32 __pad; +}; + +struct io_uring_zcrx_cqe { + __u64 off; + __u64 __pad; +}; + +struct io_uring_zcrx_offsets { + __u32 head; + __u32 tail; + __u32 rqes; + __u32 __resv2; + __u64 __resv[2]; +}; + +enum io_uring_zcrx_area_flags { + IORING_ZCRX_AREA_DMABUF = 1, +}; + +struct io_uring_zcrx_area_reg { + __u64 addr; + __u64 len; + __u64 rq_area_token; + __u32 flags; + __u32 dmabuf_fd; + __u64 __resv2[2]; +}; + +struct io_uring_zcrx_ifq_reg { + __u32 if_idx; + __u32 if_rxq; + __u32 rq_entries; + __u32 flags; + __u64 area_ptr; + __u64 region_ptr; + struct io_uring_zcrx_offsets offsets; + __u32 zcrx_id; + __u32 __resv2; + __u64 __resv[3]; +}; + +struct rps_map { + unsigned int len; + struct callback_head rcu; + u16 cpus[0]; +}; + +struct rps_dev_flow { + u16 cpu; + u16 filter; + unsigned int last_qtail; + u32 hash; +}; + +struct rps_dev_flow_table { + u8 log; + struct callback_head rcu; + struct rps_dev_flow flows[0]; +}; + +struct io_zcrx_mem { + long unsigned int size; + bool is_dmabuf; + struct page **pages; + long unsigned int nr_folios; + struct sg_table page_sg_table; + long unsigned int account_pages; + struct dma_buf_attachment *attach; + struct dma_buf *dmabuf; + struct sg_table *sgt; + long unsigned int dmabuf_offset; +}; + +struct io_zcrx_ifq; + +struct io_zcrx_area { + struct net_iov_area nia; + struct io_zcrx_ifq *ifq; + atomic_t *user_refs; + bool is_mapped; + u16 area_id; + long: 64; + long: 64; + spinlock_t freelist_lock; + u32 free_count; + u32 *freelist; + struct io_zcrx_mem mem; + long: 64; + long: 64; + long: 64; +}; + +struct io_zcrx_ifq { + struct io_ring_ctx *ctx; + struct io_zcrx_area *area; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + spinlock_t rq_lock; + struct io_uring *rq_ring; + struct io_uring_zcrx_rqe *rqes; + u32 cached_rq_head; + u32 rq_entries; + u32 if_rxq; + struct device *dev; + struct net_device *netdev; + netdevice_tracker netdev_tracker; + spinlock_t lock; + struct mutex dma_lock; + struct io_mapped_region region; + long: 64; +}; + +struct io_zcrx_args { + struct io_kiocb *req; + struct io_zcrx_ifq *ifq; + struct socket *sock; + unsigned int nr_skbs; +}; + +struct io_copy_cache { + struct page *page; + long unsigned int offset; + size_t size; +}; + +struct once_work { + struct work_struct work; + struct static_key_true *key; + struct module *module; +}; + +struct reciprocal_value_adv { + u32 m; + u8 sh; + u8 exp; + bool is_wide_m; +}; + +struct chacha_state { + u32 x[16]; +}; + +enum chacha_constants { + CHACHA_CONSTANT_EXPA = 1634760805, + CHACHA_CONSTANT_ND_3 = 857760878, + CHACHA_CONSTANT_2_BY = 2036477234, + CHACHA_CONSTANT_TE_K = 1797285236, +}; + +struct karatsuba_ctx { + struct karatsuba_ctx *next; + mpi_ptr_t tspace; + mpi_size_t tspace_size; + mpi_ptr_t tp; + mpi_size_t tp_size; +}; + +enum blake2s_lengths { + BLAKE2S_BLOCK_SIZE = 64, + BLAKE2S_HASH_SIZE = 32, + BLAKE2S_KEY_SIZE = 32, + BLAKE2S_128_HASH_SIZE = 16, + BLAKE2S_160_HASH_SIZE = 20, + BLAKE2S_224_HASH_SIZE = 28, + BLAKE2S_256_HASH_SIZE = 32, +}; + +struct blake2s_state { + u32 h[8]; + u32 t[2]; + u32 f[2]; + u8 buf[64]; + unsigned int buflen; + unsigned int outlen; +}; + +struct vdso_rng_data { + u64 generation; + u8 is_ready; +}; + +struct interval_tree_span_iter { + struct interval_tree_node *nodes[2]; + long unsigned int first_index; + long unsigned int last_index; + union { + long unsigned int start_hole; + long unsigned int start_used; + }; + union { + long unsigned int last_hole; + long unsigned int last_used; + }; + int is_hole; +}; + +struct packed_field_u8 { + u8 startbit; + u8 endbit; + u8 offset; + u8 size; +}; + +struct packed_field_u16 { + u16 startbit; + u16 endbit; + u16 offset; + u16 size; +}; + +enum packing_op { + PACK = 0, + UNPACK = 1, +}; + +struct genpool_data_align { + int align; +}; + +struct genpool_data_fixed { + long unsigned int offset; +}; + +typedef enum { + ZSTD_noDict = 0, + ZSTD_extDict = 1, + ZSTD_dictMatchState = 2, + ZSTD_dedicatedDictSearch = 3, +} ZSTD_dictMode_e; + +typedef U64 ZSTD_VecMask; + +typedef enum { + search_hashChain = 0, + search_binaryTree = 1, + search_rowHash = 2, +} searchMethod_e; + +struct cpu_rmap { + struct kref refcount; + u16 size; + void **obj; + struct { + u16 index; + u16 dist; + } near[0]; +}; + +struct irq_glue { + struct irq_affinity_notify notify; + struct cpu_rmap *rmap; + u16 index; +}; + +union handle_parts { + depot_stack_handle_t handle; + struct { + u32 pool_index_plus_1: 17; + u32 offset: 10; + u32 extra: 5; + }; +}; + +struct stack_record { + struct list_head hash_list; + u32 hash; + u32 size; + union handle_parts handle; + refcount_t count; + union { + long unsigned int entries[64]; + struct { + struct list_head free_list; + long unsigned int rcu_state; + }; + }; +}; + +typedef u32 depot_flags_t; + +enum depot_counter_id { + DEPOT_COUNTER_REFD_ALLOCS = 0, + DEPOT_COUNTER_REFD_FREES = 1, + DEPOT_COUNTER_REFD_INUSE = 2, + DEPOT_COUNTER_FREELIST_SIZE = 3, + DEPOT_COUNTER_PERSIST_COUNT = 4, + DEPOT_COUNTER_PERSIST_BYTES = 5, + DEPOT_COUNTER_COUNT = 6, +}; + +struct node_groups { + unsigned int id; + union { + unsigned int ngroups; + unsigned int ncpus; + }; +}; + +struct pldmfw_record { + struct list_head entry; + struct list_head descs; + const u8 *version_string; + u8 version_type; + u8 version_len; + u16 package_data_len; + u32 device_update_flags; + const u8 *package_data; + long unsigned int *component_bitmap; + u16 component_bitmap_len; +}; + +struct pldmfw_desc_tlv { + struct list_head entry; + const u8 *data; + u16 type; + u16 size; +}; + +struct pldmfw_component { + struct list_head entry; + u16 classification; + u16 identifier; + u16 options; + u16 activation_method; + u32 comparison_stamp; + u32 component_size; + const u8 *component_data; + const u8 *version_string; + u8 version_type; + u8 version_len; + u8 index; +}; + +enum pldmfw_update_mode { + PLDMFW_UPDATE_MODE_FULL = 0, + PLDMFW_UPDATE_MODE_SINGLE_COMPONENT = 1, +}; + +struct pldmfw_ops; + +struct pldmfw { + const struct pldmfw_ops *ops; + struct device *dev; + u16 component_identifier; + enum pldmfw_update_mode mode; +}; + +struct pldmfw_ops { + bool (*match_record)(struct pldmfw *, struct pldmfw_record *); + int (*send_package_data)(struct pldmfw *, const u8 *, u16); + int (*send_component_table)(struct pldmfw *, struct pldmfw_component *, u8); + int (*flash_component)(struct pldmfw *, struct pldmfw_component *); + int (*finalize_update)(struct pldmfw *); +}; + +struct __pldm_timestamp { + u8 b[13]; +}; + +struct __pldm_header { + uuid_t id; + u8 revision; + __le16 size; + struct __pldm_timestamp release_date; + __le16 component_bitmap_len; + u8 version_type; + u8 version_len; + u8 version_string[0]; +} __attribute__((packed)); + +struct __pldmfw_record_info { + __le16 record_len; + u8 descriptor_count; + __le32 device_update_flags; + u8 version_type; + u8 version_len; + __le16 package_data_len; + u8 variable_record_data[0]; +} __attribute__((packed)); + +struct __pldmfw_desc_tlv { + __le16 type; + __le16 size; + u8 data[0]; +}; + +struct __pldmfw_record_area { + u8 record_count; + u8 records[0]; +}; + +struct __pldmfw_component_info { + __le16 classification; + __le16 identifier; + __le32 comparison_stamp; + __le16 options; + __le16 activation_method; + __le32 location_offset; + __le32 size; + u8 version_type; + u8 version_len; + u8 version_string[0]; +} __attribute__((packed)); + +struct __pldmfw_component_area { + __le16 component_image_count; + u8 components[0]; +}; + +struct pldmfw_priv { + struct pldmfw *context; + const struct firmware *fw; + size_t offset; + struct list_head records; + struct list_head components; + const struct __pldm_header *header; + u16 total_header_size; + u16 component_bitmap_len; + u16 bitmap_size; + u16 component_count; + const u8 *component_start; + const u8 *record_start; + u8 record_count; + u32 header_crc; + struct pldmfw_record *matching_record; +}; + +struct pldm_pci_record_id { + int vendor; + int device; + int subsystem_vendor; + int subsystem_device; +}; + +struct phy_configure_opts_mipi_dphy { + unsigned int clk_miss; + unsigned int clk_post; + unsigned int clk_pre; + unsigned int clk_prepare; + unsigned int clk_settle; + unsigned int clk_term_en; + unsigned int clk_trail; + unsigned int clk_zero; + unsigned int d_term_en; + unsigned int eot; + unsigned int hs_exit; + unsigned int hs_prepare; + unsigned int hs_settle; + unsigned int hs_skip; + unsigned int hs_trail; + unsigned int hs_zero; + unsigned int init; + unsigned int lpx; + unsigned int ta_get; + unsigned int ta_go; + unsigned int ta_sure; + unsigned int wakeup; + long unsigned int hs_clk_rate; + long unsigned int lp_clk_rate; + unsigned char lanes; +}; + +struct dev_pin_info { + struct pinctrl *p; + struct pinctrl_state *default_state; + struct pinctrl_state *init_state; + struct pinctrl_state *sleep_state; + struct pinctrl_state *idle_state; +}; + +struct pinctrl_maps { + struct list_head node; + const struct pinctrl_map *maps; + unsigned int num_maps; +}; + +struct pctldev; + +struct _gpiochip_for_each_data { + const char **label; + unsigned int *i; +}; + +typedef struct _gpiochip_for_each_data class__gpiochip_for_each_data_t; + +enum { + INTEL_GPIO_BASE_ZERO = -2, + INTEL_GPIO_BASE_NOMAP = -1, + INTEL_GPIO_BASE_MATCH = 0, +}; + +struct intel_pad_context___2; + +struct intel_community_context___2; + +struct intel_pinctrl_context___2 { + struct intel_pad_context___2 *pads; + struct intel_community_context___2 *communities; +}; + +struct intel_pad_context___2 { + u32 padcfg0; + u32 padcfg1; + u32 padcfg2; +}; + +struct intel_community_context___2 { + u32 *intmask; + u32 *hostown; +}; + +struct intel_pinctrl___2 { + struct device *dev; + raw_spinlock_t lock; + struct pinctrl_desc pctldesc; + struct pinctrl_dev *pctldev; + struct gpio_chip chip; + const struct intel_pinctrl_soc_data *soc; + struct intel_community *communities; + size_t ncommunities; + struct intel_pinctrl_context___2 context; + int irq; +}; + +enum { + PAD_UNLOCKED = 0, + PAD_LOCKED = 1, + PAD_LOCKED_TX = 2, + PAD_LOCKED_FULL = 3, +}; + +enum { + PAD_CONNECT_NONE = 0, + PAD_CONNECT_INPUT = 1, + PAD_CONNECT_OUTPUT = 2, + PAD_CONNECT_FULL = 3, +}; + +enum { + GPIO_SYSFS_LINE_CLASS_ATTR_DIRECTION = 0, + GPIO_SYSFS_LINE_CLASS_ATTR_VALUE = 1, + GPIO_SYSFS_LINE_CLASS_ATTR_EDGE = 2, + GPIO_SYSFS_LINE_CLASS_ATTR_ACTIVE_LOW = 3, + GPIO_SYSFS_LINE_CLASS_ATTR_SENTINEL = 4, + GPIO_SYSFS_LINE_CLASS_ATTR_SIZE = 5, +}; + +enum { + GPIO_SYSFS_LINE_CHIP_ATTR_DIRECTION = 0, + GPIO_SYSFS_LINE_CHIP_ATTR_VALUE = 1, + GPIO_SYSFS_LINE_CHIP_ATTR_SENTINEL = 2, + GPIO_SYSFS_LINE_CHIP_ATTR_SIZE = 3, +}; + +struct gpiod_data { + struct list_head list; + struct gpio_desc *desc; + struct device *dev; + struct mutex mutex; + struct kernfs_node *value_kn; + int irq; + unsigned char irq_flags; + bool direction_can_change; + struct kobject *parent; + struct device_attribute dir_attr; + struct device_attribute val_attr; + struct device_attribute edge_attr; + struct device_attribute active_low_attr; + struct attribute *class_attrs[5]; + struct attribute_group class_attr_group; + const struct attribute_group *class_attr_groups[2]; + struct attribute *chip_attrs[3]; + struct attribute_group chip_attr_group; + const struct attribute_group *chip_attr_groups[2]; +}; + +struct gpiodev_data { + struct list_head exported_lines; + struct gpio_device *gdev; + struct device *cdev_id; + struct device *cdev_base; +}; + +struct acpi_gpiolib_dmi_quirk { + bool no_edge_events_on_boot; + char *ignore_wake; + char *ignore_interrupt; +}; + +struct tps65910_sleep_keepon_data { + unsigned int therm_keepon: 1; + unsigned int clkout32k_keepon: 1; + unsigned int i2chs_keepon: 1; +}; + +struct tps65910_board { + int gpio_base; + int irq; + int irq_base; + int vmbch_threshold; + int vmbch2_threshold; + bool en_ck32k_xtal; + bool en_dev_slp; + bool pm_off; + struct tps65910_sleep_keepon_data slp_keepon; + bool en_gpio_sleep[9]; + long unsigned int regulator_ext_sleep_control[14]; + struct regulator_init_data *tps65910_pmic_init_data[14]; +}; + +struct tps65910 { + struct device *dev; + struct i2c_client *i2c_client; + struct regmap *regmap; + long unsigned int id; + struct tps65910_board *of_plat_data; + int chip_irq; + struct regmap_irq_chip_data *irq_data; +}; + +struct tps65910_gpio { + struct gpio_chip gpio_chip; + struct tps65910 *tps65910; +}; + +enum led_default_state { + LEDS_DEFSTATE_OFF = 0, + LEDS_DEFSTATE_ON = 1, + LEDS_DEFSTATE_KEEP = 2, +}; + +struct led_init_data { + struct fwnode_handle *fwnode; + const char *default_label; + const char *devicename; + bool devname_mandatory; +}; + +struct led_properties { + u32 color; + bool color_present; + const char *function; + u32 func_enum; + bool func_enum_present; + const char *label; +}; + +struct mc_subled { + unsigned int color_index; + unsigned int brightness; + unsigned int intensity; + unsigned int channel; +}; + +struct led_classdev_mc { + struct led_classdev led_cdev; + unsigned int num_colors; + struct mc_subled *subled_info; +}; + +struct pci_dynid { + struct list_head node; + struct pci_device_id id; +}; + +struct drv_dev_and_id { + struct pci_driver *drv; + struct pci_dev *dev; + const struct pci_device_id *id; +}; + +struct pcim_iomap_devres { + void *table[17]; +}; + +struct pcim_intx_devres { + int orig_intx; +}; + +enum pcim_addr_devres_type { + PCIM_ADDR_DEVRES_TYPE_INVALID = 0, + PCIM_ADDR_DEVRES_TYPE_REGION = 1, + PCIM_ADDR_DEVRES_TYPE_REGION_MAPPING = 2, + PCIM_ADDR_DEVRES_TYPE_MAPPING = 3, +}; + +struct pcim_addr_devres { + enum pcim_addr_devres_type type; + void *baseaddr; + long unsigned int offset; + long unsigned int len; + int bar; +}; + +struct msix_entry { + u32 vector; + u16 entry; +}; + +struct walk_rcec_data { + struct pci_dev *rcec; + int (*user_callback)(struct pci_dev *, void *); + void *user_data; +}; + +enum { + CPER_SEV_RECOVERABLE = 0, + CPER_SEV_FATAL = 1, + CPER_SEV_CORRECTED = 2, + CPER_SEV_INFORMATIONAL = 3, +}; + +struct aer_info { + u64 dev_cor_errs[16]; + u64 dev_fatal_errs[32]; + u64 dev_nonfatal_errs[32]; + u64 dev_total_cor_errs; + u64 dev_total_fatal_errs; + u64 dev_total_nonfatal_errs; + u64 rootport_total_cor_errs; + u64 rootport_total_fatal_errs; + u64 rootport_total_nonfatal_errs; + struct ratelimit_state correctable_ratelimit; + struct ratelimit_state nonfatal_ratelimit; +}; + +struct pcie_tlp_log { + union { + u32 dw[14]; + struct { + u32 _do_not_use[4]; + u32 prefix[4]; + }; + }; + u8 header_len; + bool flit; +}; + +struct aer_capability_regs { + u32 header; + u32 uncor_status; + u32 uncor_mask; + u32 uncor_severity; + u32 cor_status; + u32 cor_mask; + u32 cap_control; + struct pcie_tlp_log header_log; + u32 root_command; + u32 root_status; + u16 cor_err_source; + u16 uncor_err_source; +}; + +struct aer_err_info { + struct pci_dev *dev[5]; + int ratelimit_print[5]; + int error_dev_num; + const char *level; + unsigned int id: 16; + unsigned int severity: 2; + unsigned int root_ratelimit_print: 1; + unsigned int __pad1: 4; + unsigned int multi_error_valid: 1; + unsigned int first_error: 5; + unsigned int __pad2: 2; + unsigned int tlp_header_valid: 1; + unsigned int status; + unsigned int mask; + struct pcie_tlp_log tlp; +}; + +struct aer_err_source { + u32 status; + u32 id; +}; + +struct aer_rpc { + struct pci_dev *rpd; + struct { + union { + struct __kfifo kfifo; + struct aer_err_source *type; + const struct aer_err_source *const_type; + char (*rectype)[0]; + struct aer_err_source *ptr; + const struct aer_err_source *ptr_const; + }; + struct aer_err_source buf[128]; + } aer_fifo; +}; + +struct aer_recover_entry { + u8 bus; + u8 devfn; + u16 domain; + int severity; + struct aer_capability_regs *regs; +}; + +struct pci_filp_private { + enum pci_mmap_state mmap_state; + int write_combine; +}; + +enum pci_irq_reroute_variant { + INTEL_IRQ_REROUTE_VARIANT = 1, + MAX_IRQ_REROUTE_VARIANTS = 3, +}; + +struct pci_fixup { + u16 vendor; + u16 device; + u32 class; + unsigned int class_shift; + int hook_offset; +}; + +enum { + NVME_AEN_BIT_NS_ATTR = 8, + NVME_AEN_BIT_FW_ACT = 9, + NVME_AEN_BIT_ANA_CHANGE = 11, + NVME_AEN_BIT_DISC_CHANGE = 31, +}; + +enum { + SWITCHTEC_GAS_MRPC_OFFSET = 0, + SWITCHTEC_GAS_TOP_CFG_OFFSET = 4096, + SWITCHTEC_GAS_SW_EVENT_OFFSET = 6144, + SWITCHTEC_GAS_SYS_INFO_OFFSET = 8192, + SWITCHTEC_GAS_FLASH_INFO_OFFSET = 8704, + SWITCHTEC_GAS_PART_CFG_OFFSET = 16384, + SWITCHTEC_GAS_NTB_OFFSET = 65536, + SWITCHTEC_GAS_PFF_CSR_OFFSET = 1261568, +}; + +enum { + SWITCHTEC_NTB_REG_INFO_OFFSET = 0, + SWITCHTEC_NTB_REG_CTRL_OFFSET = 16384, + SWITCHTEC_NTB_REG_DBMSG_OFFSET = 409600, +}; + +struct nt_partition_info { + u32 xlink_enabled; + u32 target_part_low; + u32 target_part_high; + u32 reserved; +}; + +struct ntb_info_regs { + u8 partition_count; + u8 partition_id; + u16 reserved1; + u64 ep_map; + u16 requester_id; + u16 reserved2; + u32 reserved3[4]; + struct nt_partition_info ntp_info[48]; +} __attribute__((packed)); + +struct ntb_ctrl_regs { + u32 partition_status; + u32 partition_op; + u32 partition_ctrl; + u32 bar_setup; + u32 bar_error; + u16 lut_table_entries; + u16 lut_table_offset; + u32 lut_error; + u16 req_id_table_size; + u16 req_id_table_offset; + u32 req_id_error; + u32 reserved1[7]; + struct { + u32 ctl; + u32 win_size; + u64 xlate_addr; + } bar_entry[6]; + struct { + u32 win_size; + u32 reserved[3]; + } bar_ext_entry[6]; + u32 reserved2[192]; + u32 req_id_table[512]; + u32 reserved3[256]; + u64 lut_entry[512]; +}; + +struct pci_dev_reset_methods { + u16 vendor; + u16 device; + int (*reset)(struct pci_dev *, bool); +}; + +struct pci_dev_acs_enabled { + u16 vendor; + u16 device; + int (*acs_enabled)(struct pci_dev *, u16); +}; + +struct pci_dev_acs_ops { + u16 vendor; + u16 device; + int (*enable_acs)(struct pci_dev *); + int (*disable_acs_redir)(struct pci_dev *); +}; + +struct acpi_pci_root { + struct acpi_device *device; + struct pci_bus *bus; + u16 segment; + int bridge_type; + struct resource secondary; + u32 osc_support_set; + u32 osc_control_set; + u32 osc_ext_support_set; + u32 osc_ext_control_set; + phys_addr_t mcfg_addr; +}; + +struct acpiphp_slot; + +struct slot___3 { + struct hotplug_slot hotplug_slot; + struct acpiphp_slot *acpi_slot; + unsigned int sun; +}; + +struct acpiphp_slot { + struct list_head node; + struct pci_bus *bus; + struct list_head funcs; + struct slot___3 *slot; + u8 device; + u32 flags; +}; + +struct acpiphp_context; + +struct acpiphp_bridge { + struct list_head list; + struct list_head slots; + struct kref ref; + struct acpiphp_context *context; + int nr_slots; + struct pci_bus *pci_bus; + struct pci_dev *pci_dev; + bool is_going_away; +}; + +struct acpiphp_func { + struct acpiphp_bridge *parent; + struct acpiphp_slot *slot; + struct list_head sibling; + u8 function; + u32 flags; +}; + +struct acpiphp_context { + struct acpi_hotplug_context hp; + struct acpiphp_func func; + struct acpiphp_bridge *bridge; + unsigned int refcount; +}; + +struct acpiphp_root_context { + struct acpi_hotplug_context hp; + struct acpiphp_bridge *root_bridge; +}; + +struct vga_device { + struct list_head list; + struct pci_dev *pdev; + unsigned int decodes; + unsigned int owns; + unsigned int locks; + unsigned int io_lock_cnt; + unsigned int mem_lock_cnt; + unsigned int io_norm_cnt; + unsigned int mem_norm_cnt; + bool bridge_has_one_vga; + bool is_firmware_default; + unsigned int (*set_decode)(struct pci_dev *, bool); +}; + +struct vga_arb_user_card { + struct pci_dev *pdev; + unsigned int mem_cnt; + unsigned int io_cnt; +}; + +struct vga_arb_private { + struct list_head list; + struct pci_dev *target; + struct vga_arb_user_card cards[16]; + spinlock_t lock; +}; + +struct dw_pcie_ob_atu_cfg { + int index; + int type; + u8 func_no; + u8 code; + u8 routing; + u64 parent_bus_addr; + u64 pci_addr; + u64 size; +}; + +enum rio_device_state { + RIO_DEVICE_INITIALIZING = 0, + RIO_DEVICE_RUNNING = 1, + RIO_DEVICE_GONE = 2, + RIO_DEVICE_SHUTDOWN = 3, +}; + +struct rio_dbell { + struct list_head node; + struct resource *res; + void (*dinb)(struct rio_mport *, void *, u16, u16, u16); + void *dev_id; +}; + +enum rio_write_type { + RDW_DEFAULT = 0, + RDW_ALL_NWRITE = 1, + RDW_ALL_NWRITE_R = 2, + RDW_LAST_NWRITE_R = 3, +}; + +struct rio_dma_ext { + u16 destid; + u64 rio_addr; + u8 rio_addr_u; + enum rio_write_type wr_type; +}; + +struct rio_dma_data { + struct scatterlist *sg; + unsigned int sg_len; + u64 rio_addr; + u8 rio_addr_u; + enum rio_write_type wr_type; +}; + +struct rio_scan_node { + int mport_id; + struct list_head node; + struct rio_scan *ops; +}; + +struct rio_pwrite { + struct list_head node; + int (*pwcback)(struct rio_mport *, void *, union rio_pw_msg *, int); + void *context; +}; + +struct rio_disc_work { + struct work_struct work; + struct rio_mport *mport; +}; + +struct vgastate { + void *vgabase; + long unsigned int membase; + __u32 memsize; + __u32 flags; + __u32 depth; + __u32 num_attr; + __u32 num_crtc; + __u32 num_gfx; + __u32 num_seq; + void *vidstate; +}; + +struct fb_cmap_user { + __u32 start; + __u32 len; + __u16 *red; + __u16 *green; + __u16 *blue; + __u16 *transp; +}; + +struct fb_fix_screeninfo32 { + char id[16]; + compat_caddr_t smem_start; + u32 smem_len; + u32 type; + u32 type_aux; + u32 visual; + u16 xpanstep; + u16 ypanstep; + u16 ywrapstep; + u32 line_length; + compat_caddr_t mmio_start; + u32 mmio_len; + u32 accel; + u16 reserved[3]; +}; + +struct fb_cmap32 { + u32 start; + u32 len; + compat_caddr_t red; + compat_caddr_t green; + compat_caddr_t blue; + compat_caddr_t transp; +}; + +typedef unsigned int u_int; + +struct fb_con2fbmap { + __u32 console; + __u32 framebuffer; +}; + +enum { + FBCON_LOGO_CANSHOW = -1, + FBCON_LOGO_DRAW = -2, + FBCON_LOGO_DONTSHOW = -3, +}; + +enum ipmi_addr_src { + SI_INVALID = 0, + SI_HOTMOD = 1, + SI_HARDCODED = 2, + SI_SPMI = 3, + SI_ACPI = 4, + SI_SMBIOS = 5, + SI_PCI = 6, + SI_DEVICETREE = 7, + SI_PLATFORM = 8, + SI_LAST = 9, +}; + +enum ipmi_plat_interface_type { + IPMI_PLAT_IF_SI = 0, + IPMI_PLAT_IF_SSIF = 1, +}; + +struct ipmi_plat_data { + enum ipmi_plat_interface_type iftype; + unsigned int type; + unsigned int space; + long unsigned int addr; + unsigned int regspacing; + unsigned int regsize; + unsigned int regshift; + unsigned int irq; + unsigned int slave_addr; + enum ipmi_addr_src addr_source; +}; + +enum si_type { + SI_TYPE_INVALID = 0, + SI_KCS = 1, + SI_SMIC = 2, + SI_BT = 3, + SI_TYPE_MAX = 4, +}; + +enum ipmi_addr_space { + IPMI_IO_ADDR_SPACE = 0, + IPMI_MEM_ADDR_SPACE = 1, +}; + +struct acpi_handle_list { + u32 count; + acpi_handle *handles; +}; + +enum acpi_predicate { + all_versions = 0, + less_than_or_equal = 1, + equal = 2, + greater_than_or_equal = 3, +}; + +struct acpi_platform_list { + char oem_id[7]; + char oem_table_id[9]; + u32 oem_revision; + char *table; + enum acpi_predicate pred; + char *reason; + u32 data; +}; + +struct acpi_device_bus_id { + const char *bus_id; + struct ida instance_ida; + struct list_head node; +}; + +struct acpi_dev_match_info { + struct acpi_device_id hid[2]; + const char *uid; + s64 hrv; +}; + +struct acpi_data_node { + struct list_head sibling; + const char *name; + acpi_handle handle; + struct fwnode_handle fwnode; + struct fwnode_handle *parent; + struct acpi_device_data data; + struct kobject kobj; + struct completion kobj_done; +}; + +struct acpi_data_node_attr { + struct attribute attr; + ssize_t (*show)(struct acpi_data_node *, char *); + ssize_t (*store)(struct acpi_data_node *, const char *, size_t); +}; + +struct find_child_walk_data { + struct acpi_device *adev; + u64 address; + int score; + bool check_sta; + bool check_children; +}; + +struct acpi_power_register { + u8 descriptor; + u16 length; + u8 space_id; + u8 bit_width; + u8 bit_offset; + u8 access_size; + u64 address; +} __attribute__((packed)); + +struct acpi_processor_errata { + u8 smp; + struct { + u8 throttle: 1; + u8 fdma: 1; + u8 reserved: 6; + u32 bmisx; + } piix4; +}; + +struct acpi_pci_routing_table { + u32 length; + u32 pin; + u64 address; + u32 source_index; + union { + char pad[4]; + struct { + struct {} __Empty_source; + char source[0]; + }; + }; +}; + +struct acpi_prt_entry { + struct acpi_pci_id id; + u8 pin; + acpi_handle link; + u32 index; +}; + +struct prt_quirk { + const struct dmi_system_id *system; + unsigned int segment; + unsigned int bus; + unsigned int device; + unsigned char pin; + const char *source; + const char *actual_source; +}; + +struct acpi_ged_device { + struct device *dev; + struct list_head event_list; +}; + +struct acpi_ged_event { + struct list_head node; + struct device *dev; + unsigned int gsi; + unsigned int irq; + acpi_handle handle; +}; + +typedef u64 acpi_integer; + +struct acpi_prmt_module_info { + u16 revision; + u16 length; + u8 module_guid[16]; + u16 major_rev; + u16 minor_rev; + u16 handler_info_count; + u32 handler_info_offset; + u64 mmio_list_pointer; +} __attribute__((packed)); + +struct acpi_prmt_handler_info { + u16 revision; + u16 length; + u8 handler_guid[16]; + u64 handler_address; + u64 static_data_buffer_address; + u64 acpi_param_buffer_address; +} __attribute__((packed)); + +struct prm_mmio_addr_range { + u64 phys_addr; + u64 virt_addr; + u32 length; +} __attribute__((packed)); + +struct prm_mmio_info { + u64 mmio_count; + struct prm_mmio_addr_range addr_ranges[0]; +}; + +struct prm_buffer { + u8 prm_status; + u64 efi_status; + u8 prm_cmd; + guid_t handler_guid; +} __attribute__((packed)); + +struct prm_context_buffer { + char signature[4]; + u16 revision; + u16 reserved; + guid_t identifier; + u64 static_data_buffer; + struct prm_mmio_info *mmio_ranges; +}; + +struct prm_handler_info { + efi_guid_t guid; + efi_status_t (*handler_addr)(u64, void *); + u64 static_data_buffer_addr; + u64 acpi_param_buffer_addr; + struct list_head handler_list; +}; + +struct prm_module_info { + guid_t guid; + u16 major_rev; + u16 minor_rev; + u16 handler_count; + struct prm_mmio_info *mmio_info; + bool updatable; + struct list_head module_list; + struct prm_handler_info handlers[0]; +}; + +struct acpi_subtbl_hdr_16 { + u16 type; + u16 length; +}; + +struct acpi_table_mrrm { + struct acpi_table_header header; + u8 max_mem_region; + u8 flags; + u8 reserved[26]; + u8 memory_range_entry[0]; +}; + +struct acpi_mrrm_mem_range_entry { + struct acpi_subtbl_hdr_16 header; + u32 reserved0; + u64 addr_base; + u64 addr_len; + u16 region_id_flags; + u8 local_region_id; + u8 remote_region_id; + u32 reserved1; +}; + +struct mrrm_mem_range_entry { + u64 base; + u64 length; + int node; + u8 local_region_id; + u8 remote_region_id; +}; + +typedef acpi_status (*acpi_execute_op)(struct acpi_walk_state *); + +typedef u32 (*acpi_sci_handler)(void *); + +struct acpi_sci_handler_info { + struct acpi_sci_handler_info *next; + acpi_sci_handler address; + void *context; +}; + +struct acpi_mem_mapping { + acpi_physical_address physical_address; + u8 *logical_address; + acpi_size length; + struct acpi_mem_mapping *next_mm; +}; + +struct acpi_mem_space_context { + u32 length; + acpi_physical_address address; + struct acpi_mem_mapping *cur_mm; + struct acpi_mem_mapping *first_mm; +}; + +struct acpi_data_table_mapping { + void *pointer; +}; + +struct acpi_gpe_block_status_context { + struct acpi_gpe_register_info *gpe_skip_register_info; + u8 gpe_skip_mask; + u8 retval; +}; + +struct acpi_predefined_names { + const char *name; + u8 type; + char *val; +}; + +struct acpi_walk_info { + u32 debug_level; + u32 count; + acpi_owner_id owner_id; + u8 display_type; +}; + +enum acpi_return_package_types { + ACPI_PTYPE1_FIXED = 1, + ACPI_PTYPE1_VAR = 2, + ACPI_PTYPE1_OPTION = 3, + ACPI_PTYPE2 = 4, + ACPI_PTYPE2_COUNT = 5, + ACPI_PTYPE2_PKG_COUNT = 6, + ACPI_PTYPE2_FIXED = 7, + ACPI_PTYPE2_MIN = 8, + ACPI_PTYPE2_REV_FIXED = 9, + ACPI_PTYPE2_FIX_VAR = 10, + ACPI_PTYPE2_VAR_VAR = 11, + ACPI_PTYPE2_UUID_PAIR = 12, + ACPI_PTYPE_CUSTOM = 13, +}; + +struct acpi_rw_lock { + void *writer_mutex; + void *reader_mutex; + u32 num_readers; +}; + +struct acpi_get_devices_info { + acpi_walk_callback user_function; + void *context; + const char *hid; +}; + +typedef u16 acpi_rs_length; + +typedef u32 acpi_rsdesc_size; + +typedef enum { + ACPI_TRACE_AML_METHOD = 0, + ACPI_TRACE_AML_OPCODE = 1, + ACPI_TRACE_AML_REGION = 2, +} acpi_trace_event_type; + +typedef acpi_status (*acpi_init_handler)(acpi_handle, u32); + +struct acpi_address_range { + struct acpi_address_range *next; + struct acpi_namespace_node *region_node; + acpi_physical_address start_address; + acpi_physical_address end_address; +}; + +typedef acpi_status (*acpi_walk_aml_callback)(u8 *, u32, u32, u8, void **); + +struct acpi_ged_handler_info { + struct acpi_ged_handler_info *next; + u32 int_id; + struct acpi_namespace_node *evt_method; +}; + +struct history_info { + char *command; + u32 cmd_num; +}; + +typedef struct history_info HISTORY_INFO; + +struct acpi_db_command_info { + const char *name; + u8 min_args; +}; + +struct acpi_db_command_help { + u8 line_count; + char *invocation; + char *description; +}; + +enum acpi_ex_debugger_commands { + CMD_NOT_FOUND = 0, + CMD_NULL = 1, + CMD_ALL = 2, + CMD_ALLOCATIONS = 3, + CMD_ARGS = 4, + CMD_ARGUMENTS = 5, + CMD_BREAKPOINT = 6, + CMD_BUSINFO = 7, + CMD_CALL = 8, + CMD_DEBUG = 9, + CMD_DISASSEMBLE = 10, + CMD_DISASM = 11, + CMD_DUMP = 12, + CMD_EVALUATE = 13, + CMD_EXECUTE = 14, + CMD_EXIT = 15, + CMD_FIELDS = 16, + CMD_FIND = 17, + CMD_GO = 18, + CMD_HANDLERS = 19, + CMD_HELP = 20, + CMD_HELP2 = 21, + CMD_HISTORY = 22, + CMD_HISTORY_EXE = 23, + CMD_HISTORY_LAST = 24, + CMD_INFORMATION = 25, + CMD_INTEGRITY = 26, + CMD_INTO = 27, + CMD_LEVEL = 28, + CMD_LIST = 29, + CMD_LOCALS = 30, + CMD_LOCKS = 31, + CMD_METHODS = 32, + CMD_NAMESPACE = 33, + CMD_NOTIFY = 34, + CMD_OBJECTS = 35, + CMD_OSI = 36, + CMD_OWNER = 37, + CMD_PATHS = 38, + CMD_PREDEFINED = 39, + CMD_PREFIX = 40, + CMD_QUIT = 41, + CMD_REFERENCES = 42, + CMD_RESOURCES = 43, + CMD_RESULTS = 44, + CMD_SET = 45, + CMD_STATS = 46, + CMD_STOP = 47, + CMD_TABLES = 48, + CMD_TEMPLATE = 49, + CMD_TRACE = 50, + CMD_TREE = 51, + CMD_TYPE = 52, +}; + +struct throttling_tstate { + unsigned int cpu; + int target_state; +}; + +struct acpi_processor_throttling_arg { + struct acpi_processor *pr; + int target_state; + bool force; +}; + +struct resource_win { + struct resource res; + resource_size_t offset; +}; + +struct acpi_pci_ioapic { + acpi_handle root_handle; + acpi_handle handle; + u32 gsi_base; + struct resource res; + struct pci_dev *pdev; + struct list_head list; +}; + +struct circ_buf { + char *buf; + int head; + int tail; +}; + +struct acpi_debugger_ops { + int (*create_thread)(acpi_osd_exec_callback, void *); + ssize_t (*write_log)(const char *); + ssize_t (*read_cmd)(char *, size_t); + int (*wait_command_ready)(bool, char *, size_t); + int (*notify_command_complete)(void); +}; + +struct acpi_aml_io { + wait_queue_head_t wait; + long unsigned int flags; + long unsigned int users; + struct mutex lock; + struct task_struct *thread; + char out_buf[4096]; + struct circ_buf out_crc; + char in_buf[4096]; + struct circ_buf in_crc; + acpi_osd_exec_callback function; + void *context; + long unsigned int usages; +}; + +struct acpi_table_bert { + struct acpi_table_header header; + u32 region_length; + u64 address; +}; + +struct acpi_bert_region { + u32 block_status; + u32 raw_data_offset; + u32 raw_data_length; + u32 data_length; + u32 error_severity; +}; + +struct acpi_hest_generic_status { + u32 block_status; + u32 raw_data_offset; + u32 raw_data_length; + u32 data_length; + u32 error_severity; +}; + +enum axp20x_variants { + AXP152_ID = 0, + AXP192_ID = 1, + AXP202_ID = 2, + AXP209_ID = 3, + AXP221_ID = 4, + AXP223_ID = 5, + AXP288_ID = 6, + AXP313A_ID = 7, + AXP323_ID = 8, + AXP717_ID = 9, + AXP803_ID = 10, + AXP806_ID = 11, + AXP809_ID = 12, + AXP813_ID = 13, + AXP15060_ID = 14, + NR_AXP20X_VARIANTS = 15, +}; + +struct axp20x_dev { + struct device *dev; + int irq; + long unsigned int irq_flags; + struct regmap *regmap; + struct regmap_irq_chip_data *regmap_irqc; + enum axp20x_variants variant; + int nr_cells; + const struct mfd_cell *cells; + const struct regmap_config *regmap_cfg; + const struct regmap_irq_chip *regmap_irq_chip; +}; + +struct acpi_table_viot { + struct acpi_table_header header; + u16 node_count; + u16 node_offset; + u8 reserved[8]; +}; + +struct acpi_viot_header { + u8 type; + u8 reserved; + u16 length; +}; + +enum acpi_viot_node_type { + ACPI_VIOT_NODE_PCI_RANGE = 1, + ACPI_VIOT_NODE_MMIO = 2, + ACPI_VIOT_NODE_VIRTIO_IOMMU_PCI = 3, + ACPI_VIOT_NODE_VIRTIO_IOMMU_MMIO = 4, + ACPI_VIOT_RESERVED = 5, +}; + +struct acpi_viot_pci_range { + struct acpi_viot_header header; + u32 endpoint_start; + u16 segment_start; + u16 segment_end; + u16 bdf_start; + u16 bdf_end; + u16 output_node; + u8 reserved[6]; +}; + +struct acpi_viot_mmio { + struct acpi_viot_header header; + u32 endpoint; + u64 base_address; + u16 output_node; + u8 reserved[6]; +}; + +struct acpi_viot_virtio_iommu_pci { + struct acpi_viot_header header; + u16 segment; + u16 bdf; + u8 reserved[8]; +}; + +struct acpi_viot_virtio_iommu_mmio { + struct acpi_viot_header header; + u8 reserved[4]; + u64 base_address; +}; + +struct viot_iommu { + unsigned int offset; + struct fwnode_handle *fwnode; + struct list_head list; +}; + +struct viot_endpoint { + union { + struct { + u16 segment_start; + u16 segment_end; + u16 bdf_start; + u16 bdf_end; + }; + u64 address; + }; + u32 endpoint_id; + struct viot_iommu *viommu; + struct list_head list; +}; + +struct lpss_clk_data { + const char *name; + struct clk *clk; +}; + +enum pwm_polarity { + PWM_POLARITY_NORMAL = 0, + PWM_POLARITY_INVERSED = 1, +}; + +struct pwm_lookup { + struct list_head list; + const char *provider; + unsigned int index; + const char *dev_id; + const char *con_id; + unsigned int period; + enum pwm_polarity polarity; + const char *module; +}; + +enum pxa_ssp_type { + SSP_UNDEFINED = 0, + PXA25x_SSP = 1, + PXA25x_NSSP = 2, + PXA27x_SSP = 3, + PXA3xx_SSP = 4, + PXA168_SSP = 5, + PXA910_SSP = 6, + CE4100_SSP = 7, + MMP2_SSP = 8, + MRFLD_SSP = 9, + QUARK_X1000_SSP = 10, + LPSS_LPT_SSP = 11, + LPSS_BYT_SSP = 12, + LPSS_BSW_SSP = 13, + LPSS_SPT_SSP = 14, + LPSS_BXT_SSP = 15, + LPSS_CNL_SSP = 16, + SSP_MAX = 17, +}; + +struct lpss_private_data; + +struct lpss_device_desc { + unsigned int flags; + const char *clk_con_id; + unsigned int prv_offset; + size_t prv_size_override; + const struct property_entry *properties; + void (*setup)(struct lpss_private_data *); + bool resume_from_noirq; +}; + +struct lpss_private_data { + struct acpi_device *adev; + void *mmio_base; + resource_size_t mmio_size; + unsigned int fixed_clk_rate; + struct clk *clk; + const struct lpss_device_desc *dev_desc; + u32 prv_reg_ctx[9]; +}; + +struct lpss_device_links { + const char *supplier_hid; + const char *supplier_uid; + const char *consumer_hid; + const char *consumer_uid; + u32 flags; + const struct dmi_system_id *dep_missing_ids; +}; + +struct hid_uid { + const char *hid; + const char *uid; +}; + +struct pnp_info_buffer { + char *buffer; + char *curr; + long unsigned int size; + long unsigned int len; + int stop; + int error; +}; + +typedef struct pnp_info_buffer pnp_info_buffer_t; + +struct acpi_vendor_uuid { + u8 subtype; + u8 data[16]; +}; + +struct acpipnp_parse_option_s { + struct pnp_dev *dev; + unsigned int option_flags; +}; + +struct clk_div_table { + unsigned int val; + unsigned int div; +}; + +struct clk_divider { + struct clk_hw hw; + void *reg; + u8 shift; + u8 width; + u16 flags; + const struct clk_div_table *table; + spinlock_t *lock; +}; + +struct clk_multiplier { + struct clk_hw hw; + void *reg; + u8 shift; + u8 width; + u8 flags; + spinlock_t *lock; +}; + +struct clk_mux { + struct clk_hw hw; + void *reg; + const u32 *table; + u32 mask; + u8 shift; + u8 flags; + spinlock_t *lock; +}; + +struct clk_gpio { + struct clk_hw hw; + struct gpio_desc *gpiod; +}; + +struct clk_gated_fixed { + struct clk_gpio clk_gpio; + struct regulator *supply; + long unsigned int rate; +}; + +struct dma_chan_tbl_ent { + struct dma_chan *chan; +}; + +struct dmaengine_unmap_pool { + struct kmem_cache *cache; + const char *name; + mempool_t *pool; + size_t size; +}; + +enum gpd_status { + GENPD_STATE_ON = 0, + GENPD_STATE_OFF = 1, +}; + +enum genpd_notication { + GENPD_NOTIFY_PRE_OFF = 0, + GENPD_NOTIFY_OFF = 1, + GENPD_NOTIFY_PRE_ON = 2, + GENPD_NOTIFY_ON = 3, +}; + +enum genpd_sync_state { + GENPD_SYNC_STATE_OFF = 0, + GENPD_SYNC_STATE_SIMPLE = 1, + GENPD_SYNC_STATE_ONECELL = 2, +}; + +struct dev_power_governor { + bool (*power_down_ok)(struct dev_pm_domain *); + bool (*suspend_ok)(struct device *); +}; + +struct gpd_dev_ops { + int (*start)(struct device *); + int (*stop)(struct device *); +}; + +struct genpd_governor_data { + s64 max_off_time_ns; + bool max_off_time_changed; + ktime_t next_wakeup; + ktime_t next_hrtimer; + ktime_t last_enter; + bool reflect_residency; + bool cached_power_down_ok; + bool cached_power_down_state_idx; +}; + +struct genpd_power_state { + const char *name; + s64 power_off_latency_ns; + s64 power_on_latency_ns; + s64 residency_ns; + u64 usage; + u64 rejected; + u64 above; + u64 below; + struct fwnode_handle *fwnode; + u64 idle_time; + void *data; +}; + +struct genpd_lock_ops; + +struct generic_pm_domain { + struct device dev; + struct dev_pm_domain domain; + struct list_head gpd_list_node; + struct list_head parent_links; + struct list_head child_links; + struct list_head dev_list; + struct dev_power_governor *gov; + struct genpd_governor_data *gd; + struct work_struct power_off_work; + struct fwnode_handle *provider; + bool has_provider; + const char *name; + atomic_t sd_count; + enum gpd_status status; + unsigned int device_count; + unsigned int device_id; + unsigned int suspended_count; + unsigned int prepared_count; + unsigned int performance_state; + cpumask_var_t cpus; + bool synced_poweroff; + bool stay_on; + enum genpd_sync_state sync_state; + int (*power_off)(struct generic_pm_domain *); + int (*power_on)(struct generic_pm_domain *); + struct raw_notifier_head power_notifiers; + struct opp_table *opp_table; + int (*set_performance_state)(struct generic_pm_domain *, unsigned int); + struct gpd_dev_ops dev_ops; + int (*set_hwmode_dev)(struct generic_pm_domain *, struct device *, bool); + bool (*get_hwmode_dev)(struct generic_pm_domain *, struct device *); + int (*attach_dev)(struct generic_pm_domain *, struct device *); + void (*detach_dev)(struct generic_pm_domain *, struct device *); + unsigned int flags; + struct genpd_power_state *states; + void (*free_states)(struct genpd_power_state *, unsigned int); + unsigned int state_count; + unsigned int state_idx; + u64 on_time; + u64 accounting_time; + const struct genpd_lock_ops *lock_ops; + union { + struct mutex mlock; + struct { + spinlock_t slock; + long unsigned int lock_flags; + }; + struct { + raw_spinlock_t raw_slock; + long unsigned int raw_lock_flags; + }; + }; +}; + +struct genpd_lock_ops { + void (*lock)(struct generic_pm_domain *); + void (*lock_nested)(struct generic_pm_domain *, int); + int (*lock_interruptible)(struct generic_pm_domain *); + void (*unlock)(struct generic_pm_domain *); +}; + +struct gpd_link { + struct generic_pm_domain *parent; + struct list_head parent_node; + struct generic_pm_domain *child; + struct list_head child_node; + unsigned int performance_state; + unsigned int prev_performance_state; +}; + +struct gpd_timing_data { + s64 suspend_latency_ns; + s64 resume_latency_ns; + s64 effective_constraint_ns; + ktime_t next_wakeup; + bool constraint_changed; + bool cached_suspend_ok; +}; + +struct generic_pm_domain_data { + struct pm_domain_data base; + struct gpd_timing_data *td; + struct notifier_block nb; + struct notifier_block *power_nb; + int cpu; + unsigned int performance_state; + unsigned int default_pstate; + unsigned int rpm_pstate; + unsigned int opp_token; + bool hw_mode; + bool rpm_always_on; + void *data; +}; + +enum { + VP_MSIX_CONFIG_VECTOR = 0, + VP_MSIX_VQ_VECTOR = 1, +}; + +enum vp_vq_vector_policy { + VP_VQ_VECTOR_POLICY_EACH = 0, + VP_VQ_VECTOR_POLICY_SHARED_SLOW = 1, + VP_VQ_VECTOR_POLICY_SHARED = 2, +}; + +enum hw_protection_action { + HWPROT_ACT_DEFAULT = 0, + HWPROT_ACT_SHUTDOWN = 1, + HWPROT_ACT_REBOOT = 2, +}; + +struct pre_voltage_change_data { + long unsigned int old_uV; + long unsigned int min_uV; + long unsigned int max_uV; +}; + +struct regulator_coupler { + struct list_head list; + int (*attach_regulator)(struct regulator_coupler *, struct regulator_dev *); + int (*detach_regulator)(struct regulator_coupler *, struct regulator_dev *); + int (*balance_voltage)(struct regulator_coupler *, struct regulator_dev *, suspend_state_t); +}; + +struct ww_class { + atomic_long_t stamp; + struct lock_class_key acquire_key; + struct lock_class_key mutex_key; + const char *acquire_name; + const char *mutex_name; + unsigned int is_wait_die; +}; + +enum regulator_status { + REGULATOR_STATUS_OFF = 0, + REGULATOR_STATUS_ON = 1, + REGULATOR_STATUS_ERROR = 2, + REGULATOR_STATUS_FAST = 3, + REGULATOR_STATUS_NORMAL = 4, + REGULATOR_STATUS_IDLE = 5, + REGULATOR_STATUS_STANDBY = 6, + REGULATOR_STATUS_BYPASS = 7, + REGULATOR_STATUS_UNDEFINED = 8, +}; + +enum regulator_detection_severity { + REGULATOR_SEVERITY_PROT = 0, + REGULATOR_SEVERITY_ERR = 1, + REGULATOR_SEVERITY_WARN = 2, +}; + +struct regulator_enable_gpio { + struct list_head list; + struct gpio_desc *gpiod; + u32 enable_count; + u32 request_count; +}; + +enum regulator_active_discharge { + REGULATOR_ACTIVE_DISCHARGE_DEFAULT = 0, + REGULATOR_ACTIVE_DISCHARGE_DISABLE = 1, + REGULATOR_ACTIVE_DISCHARGE_ENABLE = 2, +}; + +struct trace_event_raw_regulator_basic { + struct trace_entry ent; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_regulator_range { + struct trace_entry ent; + u32 __data_loc_name; + int min; + int max; + char __data[0]; +}; + +struct trace_event_raw_regulator_value { + struct trace_entry ent; + u32 __data_loc_name; + unsigned int val; + char __data[0]; +}; + +struct trace_event_data_offsets_regulator_basic { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_regulator_range { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_regulator_value { + u32 name; + const void *name_ptr_; +}; + +typedef void (*btf_trace_regulator_enable)(void *, const char *); + +typedef void (*btf_trace_regulator_enable_delay)(void *, const char *); + +typedef void (*btf_trace_regulator_enable_complete)(void *, const char *); + +typedef void (*btf_trace_regulator_disable)(void *, const char *); + +typedef void (*btf_trace_regulator_disable_complete)(void *, const char *); + +typedef void (*btf_trace_regulator_bypass_enable)(void *, const char *); + +typedef void (*btf_trace_regulator_bypass_enable_complete)(void *, const char *); + +typedef void (*btf_trace_regulator_bypass_disable)(void *, const char *); + +typedef void (*btf_trace_regulator_bypass_disable_complete)(void *, const char *); + +typedef void (*btf_trace_regulator_set_voltage)(void *, const char *, int, int); + +typedef void (*btf_trace_regulator_set_voltage_complete)(void *, const char *, unsigned int); + +struct regulator_map { + struct list_head list; + const char *dev_name; + const char *supply; + struct regulator_dev *regulator; +}; + +struct regulator_supply_alias { + struct list_head list; + struct device *src_dev; + const char *src_supply; + struct device *alias_dev; + const char *alias_supply; +}; + +struct summary_data { + struct seq_file *s; + struct regulator_dev *parent; + int level; +}; + +struct summary_lock_data { + struct ww_acquire_ctx *ww_ctx; + struct regulator_dev **new_contended_rdev; + struct regulator_dev **old_contended_rdev; +}; + +struct reg_genl_event { + char reg_name[32]; + uint64_t event; +}; + +enum { + REG_GENL_ATTR_UNSPEC = 0, + REG_GENL_ATTR_EVENT = 1, + __REG_GENL_ATTR_MAX = 2, +}; + +enum { + REG_GENL_CMD_UNSPEC = 0, + REG_GENL_CMD_EVENT = 1, + __REG_GENL_CMD_MAX = 2, +}; + +enum tty_flow_change { + TTY_FLOW_NO_CHANGE = 0, + TTY_THROTTLE_SAFE = 1, + TTY_UNTHROTTLE_SAFE = 2, +}; + +struct n_tty_data { + size_t read_head; + size_t commit_head; + size_t canon_head; + size_t echo_head; + size_t echo_commit; + size_t echo_mark; + long unsigned int char_map[4]; + long unsigned int overrun_time; + unsigned int num_overrun; + bool no_room; + unsigned char lnext: 1; + unsigned char erasing: 1; + unsigned char raw: 1; + unsigned char real_raw: 1; + unsigned char icanon: 1; + unsigned char push: 1; + u8 read_buf[4096]; + long unsigned int read_flags[64]; + u8 echo_buf[4096]; + size_t read_tail; + size_t line_start; + size_t lookahead_count; + unsigned int column; + unsigned int canon_column; + size_t echo_tail; + struct mutex atomic_read_lock; + struct mutex output_lock; +}; + +enum { + ERASE = 0, + WERASE = 1, + KILL = 2, +}; + +struct sysrq_state { + struct input_handle handle; + struct work_struct reinject_work; + long unsigned int key_down[12]; + unsigned int alt; + unsigned int alt_use; + unsigned int shift; + unsigned int shift_use; + bool active; + bool need_reinject; + bool reinjecting; + bool reset_canceled; + bool reset_requested; + long unsigned int reset_keybit[12]; + int reset_seq_len; + int reset_seq_cnt; + int reset_seq_version; + struct timer_list keyreset_timer; +}; + +typedef short unsigned int ushort; + +struct console_font_op { + unsigned int op; + unsigned int flags; + unsigned int width; + unsigned int height; + unsigned int charcount; + unsigned char *data; +}; + +enum translation_map { + LAT1_MAP = 0, + GRAF_MAP = 1, + IBMPC_MAP = 2, + USER_MAP = 3, + FIRST_MAP = 0, + LAST_MAP = 3, +}; + +struct con_driver { + const struct consw *con; + const char *desc; + struct device *dev; + int node; + int first; + int last; + int flag; +}; + +enum { + blank_off = 0, + blank_normal_wait = 1, + blank_vesa_wait = 2, +}; + +enum { + EPecma = 0, + EPdec = 1, + EPeq = 2, + EPgt = 3, + EPlt = 4, +}; + +enum CSI_J { + CSI_J_CURSOR_TO_END = 0, + CSI_J_START_TO_CURSOR = 1, + CSI_J_VISIBLE = 2, + CSI_J_FULL = 3, +}; + +enum { + CSI_K_CURSOR_TO_LINEEND = 0, + CSI_K_LINESTART_TO_CURSOR = 1, + CSI_K_LINE = 2, +}; + +struct rgb { + u8 r; + u8 g; + u8 b; +}; + +enum { + CSI_m_DEFAULT = 0, + CSI_m_BOLD = 1, + CSI_m_HALF_BRIGHT = 2, + CSI_m_ITALIC = 3, + CSI_m_UNDERLINE = 4, + CSI_m_BLINK = 5, + CSI_m_REVERSE = 7, + CSI_m_PRI_FONT = 10, + CSI_m_ALT_FONT1 = 11, + CSI_m_ALT_FONT2 = 12, + CSI_m_DOUBLE_UNDERLINE = 21, + CSI_m_NORMAL_INTENSITY = 22, + CSI_m_NO_ITALIC = 23, + CSI_m_NO_UNDERLINE = 24, + CSI_m_NO_BLINK = 25, + CSI_m_NO_REVERSE = 27, + CSI_m_FG_COLOR_BEG = 30, + CSI_m_FG_COLOR_END = 37, + CSI_m_FG_COLOR = 38, + CSI_m_DEFAULT_FG_COLOR = 39, + CSI_m_BG_COLOR_BEG = 40, + CSI_m_BG_COLOR_END = 47, + CSI_m_BG_COLOR = 48, + CSI_m_DEFAULT_BG_COLOR = 49, + CSI_m_BRIGHT_FG_COLOR_BEG = 90, + CSI_m_BRIGHT_FG_COLOR_END = 97, + CSI_m_BRIGHT_FG_COLOR_OFF = 60, + CSI_m_BRIGHT_BG_COLOR_BEG = 100, + CSI_m_BRIGHT_BG_COLOR_END = 107, + CSI_m_BRIGHT_BG_COLOR_OFF = 60, +}; + +enum { + CSI_DEC_hl_CURSOR_KEYS = 1, + CSI_DEC_hl_132_COLUMNS = 3, + CSI_DEC_hl_REVERSE_VIDEO = 5, + CSI_DEC_hl_ORIGIN_MODE = 6, + CSI_DEC_hl_AUTOWRAP = 7, + CSI_DEC_hl_AUTOREPEAT = 8, + CSI_DEC_hl_MOUSE_X10 = 9, + CSI_DEC_hl_SHOW_CURSOR = 25, + CSI_DEC_hl_MOUSE_VT200 = 1000, + CSI_DEC_hl_BRACKETED_PASTE = 2004, +}; + +enum { + CSI_hl_DISPLAY_CTRL = 3, + CSI_hl_INSERT = 4, + CSI_hl_AUTO_NL = 20, +}; + +enum CSI_right_square_bracket { + CSI_RSB_COLOR_FOR_UNDERLINE = 1, + CSI_RSB_COLOR_FOR_HALF_BRIGHT = 2, + CSI_RSB_MAKE_CUR_COLOR_DEFAULT = 8, + CSI_RSB_BLANKING_INTERVAL = 9, + CSI_RSB_BELL_FREQUENCY = 10, + CSI_RSB_BELL_DURATION = 11, + CSI_RSB_BRING_CONSOLE_TO_FRONT = 12, + CSI_RSB_UNBLANK = 13, + CSI_RSB_VESA_OFF_INTERVAL = 14, + CSI_RSB_BRING_PREV_CONSOLE_TO_FRONT = 15, + CSI_RSB_CURSOR_BLINK_INTERVAL = 16, +}; + +enum vc_ctl_state { + ESnormal = 0, + ESesc = 1, + ESsquare = 2, + ESgetpars = 3, + ESfunckey = 4, + EShash = 5, + ESsetG0 = 6, + ESsetG1 = 7, + ESpercent = 8, + EScsiignore = 9, + ESnonstd = 10, + ESpalette = 11, + ESosc = 12, + ESANSI_first = 12, + ESapc = 13, + ESpm = 14, + ESdcs = 15, + ESANSI_last = 15, +}; + +enum { + ASCII_NULL = 0, + ASCII_BELL = 7, + ASCII_BACKSPACE = 8, + ASCII_IGNORE_FIRST = 8, + ASCII_HTAB = 9, + ASCII_LINEFEED = 10, + ASCII_VTAB = 11, + ASCII_FORMFEED = 12, + ASCII_CAR_RET = 13, + ASCII_IGNORE_LAST = 13, + ASCII_SHIFTOUT = 14, + ASCII_SHIFTIN = 15, + ASCII_CANCEL = 24, + ASCII_SUBSTITUTE = 26, + ASCII_ESCAPE = 27, + ASCII_CSI_IGNORE_FIRST = 32, + ASCII_CSI_IGNORE_LAST = 63, + ASCII_DEL = 127, + ASCII_EXT_CSI = 155, +}; + +struct vc_draw_region { + long unsigned int from; + long unsigned int to; + int x; +}; + +struct serial_ctrl_device { + struct device dev; + struct ida port_ida; +}; + +struct earlycon_device { + struct console *con; + struct uart_port port; + char options[32]; + unsigned int baud; +}; + +struct earlycon_id { + char name[15]; + char name_term; + char compatible[128]; + int (*setup)(struct earlycon_device *, const char *); +}; + +struct dw8250_port_data { + int line; + struct uart_8250_dma dma; + u32 cpr_value; + u8 dlf_size; + bool hw_rs485_support; +}; + +struct max310x_if_cfg { + int (*extended_reg_enable)(struct device *, bool); + u8 rev_id_offset; +}; + +struct max310x_devtype { + struct { + short unsigned int min; + short unsigned int max; + } slave_addr; + int nr; + char name[9]; + u8 mode1; + u8 rev_id_val; + u8 rev_id_reg; + u8 power_reg; + u8 power_bit; +}; + +struct max310x_one { + struct uart_port port; + struct work_struct tx_work; + struct work_struct md_work; + struct work_struct rs_work; + struct regmap *regmap; + u8 rx_buf[128]; +}; + +struct max310x_port { + const struct max310x_devtype *devtype; + const struct max310x_if_cfg *if_cfg; + struct regmap *regmap; + struct clk *clk; + struct gpio_chip gpio; + struct max310x_one p[0]; +}; + +struct timer_rand_state { + long unsigned int last_time; + long int last_delta; + long int last_delta2; +}; + +enum blake2s_iv { + BLAKE2S_IV0 = 1779033703, + BLAKE2S_IV1 = 3144134277, + BLAKE2S_IV2 = 1013904242, + BLAKE2S_IV3 = 2773480762, + BLAKE2S_IV4 = 1359893119, + BLAKE2S_IV5 = 2600822924, + BLAKE2S_IV6 = 528734635, + BLAKE2S_IV7 = 1541459225, +}; + +enum { + CRNG_EMPTY = 0, + CRNG_EARLY = 1, + CRNG_READY = 2, +}; + +enum { + CRNG_RESEED_START_INTERVAL = 1000, + CRNG_RESEED_INTERVAL = 60000, +}; + +struct crng { + u8 key[32]; + long unsigned int generation; + local_lock_t lock; +}; + +struct batch_u8 { + u8 entropy[96]; + local_lock_t lock; + long unsigned int generation; + unsigned int position; +}; + +struct batch_u16 { + u16 entropy[48]; + local_lock_t lock; + long unsigned int generation; + unsigned int position; +}; + +struct batch_u32 { + u32 entropy[24]; + local_lock_t lock; + long unsigned int generation; + unsigned int position; +}; + +struct batch_u64 { + u64 entropy[12]; + local_lock_t lock; + long unsigned int generation; + unsigned int position; +}; + +enum { + POOL_BITS = 256, + POOL_READY_BITS = 256, + POOL_EARLY_BITS = 128, +}; + +struct fast_pool { + long unsigned int pool[4]; + long unsigned int last; + unsigned int count; + struct timer_list mix; +}; + +struct entropy_timer_state { + long unsigned int entropy; + struct timer_list timer; + atomic_t samples; + unsigned int samples_per_bit; +}; + +enum { + NUM_TRIAL_SAMPLES = 8192, + MAX_SAMPLES_PER_BIT = 66, +}; + +enum { + MIX_INFLIGHT = 2147483648, +}; + +struct intel_agp_driver_description { + unsigned int chip_id; + char *name; + const struct agp_bridge_driver *driver; +}; + +enum tpm2_startup_types { + TPM2_SU_CLEAR = 0, + TPM2_SU_STATE = 1, +}; + +enum TPM_OPS_FLAGS { + TPM_OPS_AUTO_STARTUP = 1, +}; + +enum tpm2_timeouts { + TPM2_TIMEOUT_A = 750, + TPM2_TIMEOUT_B = 4000, + TPM2_TIMEOUT_C = 200, + TPM2_TIMEOUT_D = 30, + TPM2_DURATION_SHORT = 20, + TPM2_DURATION_MEDIUM = 750, + TPM2_DURATION_LONG = 2000, + TPM2_DURATION_LONG_LONG = 300000, + TPM2_DURATION_DEFAULT = 120000, +}; + +enum tpm2_return_codes { + TPM2_RC_SUCCESS = 0, + TPM2_RC_HASH = 131, + TPM2_RC_HANDLE = 139, + TPM2_RC_INTEGRITY = 159, + TPM2_RC_INITIALIZE = 256, + TPM2_RC_FAILURE = 257, + TPM2_RC_DISABLED = 288, + TPM2_RC_UPGRADE = 301, + TPM2_RC_COMMAND_CODE = 323, + TPM2_RC_TESTING = 2314, + TPM2_RC_REFERENCE_H0 = 2320, + TPM2_RC_RETRY = 2338, + TPM2_RC_SESSION_MEMORY = 2307, +}; + +enum tpm2_command_codes { + TPM2_CC_FIRST = 287, + TPM2_CC_HIERARCHY_CONTROL = 289, + TPM2_CC_HIERARCHY_CHANGE_AUTH = 297, + TPM2_CC_CREATE_PRIMARY = 305, + TPM2_CC_SEQUENCE_COMPLETE = 318, + TPM2_CC_SELF_TEST = 323, + TPM2_CC_STARTUP = 324, + TPM2_CC_SHUTDOWN = 325, + TPM2_CC_NV_READ = 334, + TPM2_CC_CREATE = 339, + TPM2_CC_LOAD = 343, + TPM2_CC_SEQUENCE_UPDATE = 348, + TPM2_CC_UNSEAL = 350, + TPM2_CC_CONTEXT_LOAD = 353, + TPM2_CC_CONTEXT_SAVE = 354, + TPM2_CC_FLUSH_CONTEXT = 357, + TPM2_CC_READ_PUBLIC = 371, + TPM2_CC_START_AUTH_SESS = 374, + TPM2_CC_VERIFY_SIGNATURE = 375, + TPM2_CC_GET_CAPABILITY = 378, + TPM2_CC_GET_RANDOM = 379, + TPM2_CC_PCR_READ = 382, + TPM2_CC_PCR_EXTEND = 386, + TPM2_CC_EVENT_SEQUENCE_COMPLETE = 389, + TPM2_CC_HASH_SEQUENCE_START = 390, + TPM2_CC_CREATE_LOADED = 401, + TPM2_CC_LAST = 403, +}; + +enum tpm_timeout { + TPM_TIMEOUT = 5, + TPM_TIMEOUT_RETRY = 100, + TPM_TIMEOUT_RANGE_US = 300, + TPM_TIMEOUT_POLL = 1, + TPM_TIMEOUT_USECS_MIN = 100, + TPM_TIMEOUT_USECS_MAX = 500, +}; + +enum tpm2_capabilities { + TPM2_CAP_HANDLES = 1, + TPM2_CAP_COMMANDS = 2, + TPM2_CAP_PCRS = 5, + TPM2_CAP_TPM_PROPERTIES = 6, +}; + +enum tpm2_cc_attrs { + TPM2_CC_ATTR_CHANDLES = 25, + TPM2_CC_ATTR_RHANDLE = 28, + TPM2_CC_ATTR_VENDOR = 29, +}; + +enum tpm2_handle_types { + TPM2_HT_HMAC_SESSION = 33554432, + TPM2_HT_POLICY_SESSION = 50331648, + TPM2_HT_TRANSIENT = 2147483648, +}; + +struct tpm2_context { + __be64 sequence; + __be32 saved_handle; + __be32 hierarchy; + __be16 blob_size; +} __attribute__((packed)); + +struct tpm2_cap_handles { + u8 more_data; + __be32 capability; + __be32 count; + __be32 handles[0]; +} __attribute__((packed)); + +struct tcpa_event { + u32 pcr_index; + u32 event_type; + u8 pcr_value[20]; + u32 event_size; + u8 event_data[0]; +}; + +struct tcpa_pc_event { + u32 event_id; + u32 event_size; + u8 event_data[0]; +}; + +enum tcpa_pc_event_ids { + SMBIOS = 1, + BIS_CERT = 2, + POST_BIOS_ROM = 3, + ESCD = 4, + CMOS = 5, + NVRAM = 6, + OPTION_ROM_EXEC = 7, + OPTION_ROM_CONFIG = 8, + OPTION_ROM_MICROCODE = 10, + S_CRTM_VERSION = 11, + S_CRTM_CONTENTS = 12, + POST_CONTENTS = 13, + HOST_TABLE_OF_DEVICES = 14, +}; + +enum tpm2_permanent_handles { + TPM2_RH_NULL = 1073741831, + TPM2_RS_PW = 1073741833, +}; + +struct tpm2_auth { + u32 handle; + u32 session; + u8 our_nonce[32]; + u8 tpm_nonce[32]; + union { + u8 salt[32]; + u8 scratch[32]; + }; + u8 session_key[32]; + u8 passphrase[32]; + int passphrase_len; + struct crypto_aes_ctx aes_ctx; + u8 attrs; + __be32 ordinal; + u32 name_h[3]; + u8 name[198]; +}; + +enum tis_defaults { + TIS_MEM_LEN = 20480, + TIS_SHORT_TIMEOUT = 750, + TIS_LONG_TIMEOUT = 4000, + TIS_TIMEOUT_MIN_ATML = 14700, + TIS_TIMEOUT_MAX_ATML = 15000, +}; + +enum tpm_tis_flags { + TPM_TIS_ITPM_WORKAROUND = 0, + TPM_TIS_INVALID_STATUS = 1, + TPM_TIS_DEFAULT_CANCELLATION = 2, + TPM_TIS_IRQ_TESTED = 3, + TPM_TIS_STATUS_VALID_RETRY = 4, +}; + +struct tpm_tis_phy_ops; + +struct tpm_tis_data { + struct tpm_chip *chip; + u16 manufacturer_id; + struct mutex locality_count_mutex; + unsigned int locality_count; + int locality; + int irq; + struct work_struct free_irq_work; + long unsigned int last_unhandled_irq; + unsigned int unhandled_irqs; + unsigned int int_mask; + long unsigned int flags; + void *ilb_base_addr; + u16 clkrun_enabled; + wait_queue_head_t int_queue; + wait_queue_head_t read_queue; + const struct tpm_tis_phy_ops *phy_ops; + short unsigned int rng_quality; + unsigned int timeout_min; + unsigned int timeout_max; +}; + +enum tpm_tis_io_mode { + TPM_TIS_PHYS_8 = 0, + TPM_TIS_PHYS_16 = 1, + TPM_TIS_PHYS_32 = 2, +}; + +struct tpm_tis_phy_ops { + int (*read_bytes)(struct tpm_tis_data *, u32, u16, u8 *, enum tpm_tis_io_mode); + int (*write_bytes)(struct tpm_tis_data *, u32, u16, const u8 *, enum tpm_tis_io_mode); + int (*verify_crc)(struct tpm_tis_data *, size_t, const u8 *); +}; + +struct tpm_info { + struct resource res; + int irq; +}; + +struct tpm_tis_tcg_phy { + struct tpm_tis_data priv; + void *iobase; +}; + +enum iommufd_hwpt_alloc_flags { + IOMMU_HWPT_ALLOC_NEST_PARENT = 1, + IOMMU_HWPT_ALLOC_DIRTY_TRACKING = 2, + IOMMU_HWPT_FAULT_ID_VALID = 4, + IOMMU_HWPT_ALLOC_PASID = 8, +}; + +struct amd_iommu_pi_data { + u64 vapic_addr; + u32 ga_tag; + u32 vector; + int cpu; + bool ga_log_intr; + bool is_guest_mode; + void *ir_data; +}; + +struct pdom_iommu_info { + struct amd_iommu *iommu; + u32 refcnt; +}; + +struct iommu_cmd { + u32 data[4]; +}; + +union irte___2 { + u32 val; + struct { + u32 valid: 1; + u32 no_fault: 1; + u32 int_type: 3; + u32 rq_eoi: 1; + u32 dm: 1; + u32 rsvd_1: 1; + u32 destination: 8; + u32 vector: 8; + u32 rsvd_2: 8; + } fields; +}; + +union irte_ga_lo { + u64 val; + struct { + u64 valid: 1; + u64 no_fault: 1; + u64 int_type: 3; + u64 rq_eoi: 1; + u64 dm: 1; + u64 guest_mode: 1; + u64 destination: 24; + u64 ga_tag: 32; + } fields_remap; + struct { + u64 valid: 1; + u64 no_fault: 1; + u64 ga_log_intr: 1; + u64 rsvd1: 3; + u64 is_run: 1; + u64 guest_mode: 1; + u64 destination: 24; + u64 ga_tag: 32; + } fields_vapic; +}; + +union irte_ga_hi { + u64 val; + struct { + u64 vector: 8; + u64 rsvd_1: 4; + u64 ga_root_ptr: 40; + u64 rsvd_2: 4; + u64 destination: 8; + } fields; +}; + +struct irte_ga { + union { + struct { + union irte_ga_lo lo; + union irte_ga_hi hi; + }; + u128 irte; + }; +}; + +struct irq_2_irte { + u16 devid; + u16 index; +}; + +struct amd_ir_data { + struct amd_iommu *iommu; + struct irq_2_irte irq_2_irte; + struct msi_msg msi_entry; + void *entry; + struct irq_cfg *cfg; + int ga_vector; + u64 ga_root_ptr; + u32 ga_tag; +}; + +enum iommu_page_response_code { + IOMMU_PAGE_RESP_SUCCESS = 0, + IOMMU_PAGE_RESP_INVALID = 1, + IOMMU_PAGE_RESP_FAILURE = 2, +}; + +enum iommu_hwpt_data_type { + IOMMU_HWPT_DATA_NONE = 0, + IOMMU_HWPT_DATA_VTD_S1 = 1, + IOMMU_HWPT_DATA_ARM_SMMUV3 = 2, +}; + +enum iommu_hwpt_invalidate_data_type { + IOMMU_HWPT_INVALIDATE_DATA_VTD_S1 = 0, + IOMMU_VIOMMU_INVALIDATE_DATA_ARM_SMMUV3 = 1, +}; + +enum iommu_hwpt_vtd_s1_invalidate_flags { + IOMMU_VTD_INV_FLAGS_LEAF = 1, +}; + +struct iommu_hwpt_vtd_s1_invalidate { + __u64 addr; + __u64 npages; + __u32 flags; + __u32 __reserved; +}; + +struct dev_pasid_info { + struct list_head link_domain; + struct device *dev; + ioasid_t pasid; +}; + +enum cache_tag_type { + CACHE_TAG_IOTLB = 0, + CACHE_TAG_DEVTLB = 1, + CACHE_TAG_NESTING_IOTLB = 2, + CACHE_TAG_NESTING_DEVTLB = 3, +}; + +struct cache_tag { + struct list_head node; + enum cache_tag_type type; + struct intel_iommu *iommu; + struct device *dev; + u16 domain_id; + ioasid_t pasid; + unsigned int users; +}; + +struct trace_event_raw_qi_submit { + struct trace_entry ent; + u64 qw0; + u64 qw1; + u64 qw2; + u64 qw3; + u32 __data_loc_iommu; + char __data[0]; +}; + +struct trace_event_raw_prq_report { + struct trace_entry ent; + u64 dw0; + u64 dw1; + u64 dw2; + u64 dw3; + long unsigned int seq; + u32 __data_loc_iommu; + u32 __data_loc_dev; + u32 __data_loc_buff; + char __data[0]; +}; + +struct trace_event_raw_cache_tag_log { + struct trace_entry ent; + u32 __data_loc_iommu; + u32 __data_loc_dev; + u16 type; + u16 domain_id; + u32 pasid; + u32 users; + char __data[0]; +}; + +struct trace_event_raw_cache_tag_flush { + struct trace_entry ent; + u32 __data_loc_iommu; + u32 __data_loc_dev; + u16 type; + u16 domain_id; + u32 pasid; + long unsigned int start; + long unsigned int end; + long unsigned int addr; + long unsigned int pages; + long unsigned int mask; + char __data[0]; +}; + +struct trace_event_data_offsets_qi_submit { + u32 iommu; + const void *iommu_ptr_; +}; + +struct trace_event_data_offsets_prq_report { + u32 iommu; + const void *iommu_ptr_; + u32 dev; + const void *dev_ptr_; + u32 buff; + const void *buff_ptr_; +}; + +struct trace_event_data_offsets_cache_tag_log { + u32 iommu; + const void *iommu_ptr_; + u32 dev; + const void *dev_ptr_; +}; + +struct trace_event_data_offsets_cache_tag_flush { + u32 iommu; + const void *iommu_ptr_; + u32 dev; + const void *dev_ptr_; +}; + +typedef void (*btf_trace_qi_submit)(void *, struct intel_iommu *, u64, u64, u64, u64); + +typedef void (*btf_trace_prq_report)(void *, struct intel_iommu *, struct device *, u64, u64, u64, u64, long unsigned int); + +typedef void (*btf_trace_cache_tag_assign)(void *, struct cache_tag *); + +typedef void (*btf_trace_cache_tag_unassign)(void *, struct cache_tag *); + +typedef void (*btf_trace_cache_tag_flush_range)(void *, struct cache_tag *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + +typedef void (*btf_trace_cache_tag_flush_range_np)(void *, struct cache_tag *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + +struct iova { + struct rb_node node; + long unsigned int pfn_hi; + long unsigned int pfn_lo; +}; + +struct iova_rcache; + +struct iova_domain { + spinlock_t iova_rbtree_lock; + struct rb_root rbroot; + struct rb_node *cached_node; + struct rb_node *cached32_node; + long unsigned int granule; + long unsigned int start_pfn; + long unsigned int dma_32bit_pfn; + long unsigned int max32_alloc_size; + struct iova anchor; + struct iova_rcache *rcaches; + struct hlist_node cpuhp_dead; +}; + +enum iommu_dma_queue_type { + IOMMU_DMA_OPTS_PER_CPU_QUEUE = 0, + IOMMU_DMA_OPTS_SINGLE_QUEUE = 1, +}; + +struct iommu_dma_options { + enum iommu_dma_queue_type qt; + size_t fq_size; + unsigned int fq_timeout; +}; + +struct iova_fq; + +struct iommu_dma_cookie { + struct iova_domain iovad; + struct list_head msi_page_list; + union { + struct iova_fq *single_fq; + struct iova_fq *percpu_fq; + }; + atomic64_t fq_flush_start_cnt; + atomic64_t fq_flush_finish_cnt; + struct timer_list fq_timer; + atomic_t fq_timer_on; + struct iommu_domain *fq_domain; + struct iommu_dma_options options; +}; + +struct iommu_dma_msi_cookie { + dma_addr_t msi_iova; + struct list_head msi_page_list; +}; + +struct iommu_dma_msi_page { + struct list_head list; + dma_addr_t iova; + phys_addr_t phys; +}; + +struct iova_fq_entry { + long unsigned int iova_pfn; + long unsigned int pages; + struct iommu_pages_list freelist; + u64 counter; +}; + +struct iova_fq { + spinlock_t lock; + unsigned int head; + unsigned int tail; + unsigned int mod_mask; + struct iova_fq_entry entries[0]; +}; + +struct dma_sgt_handle { + struct sg_table sgt; + struct page **pages; +}; + +struct iommu_sva { + struct iommu_attach_handle handle; + struct device *dev; + refcount_t users; +}; + +enum proc_cn_mcast_op { + PROC_CN_MCAST_LISTEN = 1, + PROC_CN_MCAST_IGNORE = 2, +}; + +struct proc_input { + enum proc_cn_mcast_op mcast_op; + enum proc_cn_event event_type; +}; + +struct fork_proc_event { + __kernel_pid_t parent_pid; + __kernel_pid_t parent_tgid; + __kernel_pid_t child_pid; + __kernel_pid_t child_tgid; +}; + +struct exec_proc_event { + __kernel_pid_t process_pid; + __kernel_pid_t process_tgid; +}; + +struct id_proc_event { + __kernel_pid_t process_pid; + __kernel_pid_t process_tgid; + union { + __u32 ruid; + __u32 rgid; + } r; + union { + __u32 euid; + __u32 egid; + } e; +}; + +struct sid_proc_event { + __kernel_pid_t process_pid; + __kernel_pid_t process_tgid; +}; + +struct ptrace_proc_event { + __kernel_pid_t process_pid; + __kernel_pid_t process_tgid; + __kernel_pid_t tracer_pid; + __kernel_pid_t tracer_tgid; +}; + +struct comm_proc_event { + __kernel_pid_t process_pid; + __kernel_pid_t process_tgid; + char comm[16]; +}; + +struct coredump_proc_event { + __kernel_pid_t process_pid; + __kernel_pid_t process_tgid; + __kernel_pid_t parent_pid; + __kernel_pid_t parent_tgid; +}; + +struct exit_proc_event { + __kernel_pid_t process_pid; + __kernel_pid_t process_tgid; + __u32 exit_code; + __u32 exit_signal; + __kernel_pid_t parent_pid; + __kernel_pid_t parent_tgid; +}; + +struct proc_event { + enum proc_cn_event what; + __u32 cpu; + __u64 timestamp_ns; + union { + struct { + __u32 err; + } ack; + struct fork_proc_event fork; + struct exec_proc_event exec; + struct id_proc_event id; + struct sid_proc_event sid; + struct ptrace_proc_event ptrace; + struct comm_proc_event comm; + struct coredump_proc_event coredump; + struct exit_proc_event exit; + } event_data; +}; + +struct local_event { + local_lock_t lock; + __u32 count; +}; + +struct device_attach_data { + struct device *dev; + bool check_async; + bool want_async; + bool have_async; +}; + +struct class_interface { + struct list_head node; + const struct class *class; + int (*add_dev)(struct device *); + void (*remove_dev)(struct device *); +}; + +struct class_compat { + struct kobject *kobj; +}; + +struct probe { + struct probe *next; + dev_t dev; + long unsigned int range; + struct module *owner; + kobj_probe_t *get; + int (*lock)(dev_t, void *); + void *data; +}; + +struct kobj_map { + struct probe *probes[255]; + struct mutex *lock; +}; + +struct internal_container { + struct klist_node node; + struct attribute_container *cont; + struct device classdev; +}; + +typedef void * (*devcon_match_fn_t)(const struct fwnode_handle *, const char *, void *); + +struct faux_object { + struct faux_device faux_dev; + const struct faux_device_ops *faux_ops; + const struct attribute_group **groups; +}; + +struct dev_pm_domain_attach_data { + const char * const *pd_names; + const u32 num_pd_names; + const u32 pd_flags; +}; + +struct dev_pm_domain_list { + struct device **pd_devs; + struct device_link **pd_links; + u32 *opp_tokens; + u32 num_pds; +}; + +struct dev_pm_opp; + +typedef int (*config_regulators_t)(struct device *, struct dev_pm_opp *, struct dev_pm_opp *, struct regulator **, unsigned int); + +typedef int (*config_clks_t)(struct device *, struct opp_table *, struct dev_pm_opp *, void *, bool); + +struct dev_pm_opp_config { + const char * const *clk_names; + config_clks_t config_clks; + const char *prop_name; + config_regulators_t config_regulators; + const unsigned int *supported_hw; + unsigned int supported_hw_count; + const char * const *regulator_names; + struct device *required_dev; + unsigned int required_dev_index; +}; + +struct pm_clk_notifier_block { + struct notifier_block nb; + struct dev_pm_domain *pm_domain; + char *con_ids[0]; +}; + +enum pce_status { + PCE_STATUS_NONE = 0, + PCE_STATUS_ACQUIRED = 1, + PCE_STATUS_PREPARED = 2, + PCE_STATUS_ENABLED = 3, + PCE_STATUS_ERROR = 4, +}; + +struct pm_clock_entry { + struct list_head node; + char *con_id; + struct clk *clk; + enum pce_status status; + bool enabled_when_prepared; +}; + +struct firmware_fallback_config { + unsigned int force_sysfs_fallback; + unsigned int ignore_sysfs_fallback; + int old_timeout; + int loading_timeout; +}; + +struct auxiliary_device { + struct device dev; + const char *name; + u32 id; + struct { + struct xarray irqs; + struct mutex lock; + bool irq_dir_exists; + } sysfs; +}; + +struct auxiliary_irq_info { + struct device_attribute sysfs_attr; + char name[11]; +}; + +struct soc_device_attribute { + const char *machine; + const char *family; + const char *revision; + const char *serial_number; + const char *soc_id; + const void *data; + const struct attribute_group *custom_attr_group; +}; + +struct soc_device { + struct device dev; + struct soc_device_attribute *attr; + int soc_dev_num; +}; + +typedef void (*irq_write_msi_msg_t)(struct msi_desc *, struct msi_msg *); + +struct virtio_blk_geometry { + __virtio16 cylinders; + __u8 heads; + __u8 sectors; +}; + +struct virtio_blk_zoned_characteristics { + __virtio32 zone_sectors; + __virtio32 max_open_zones; + __virtio32 max_active_zones; + __virtio32 max_append_sectors; + __virtio32 write_granularity; + __u8 model; + __u8 unused2[3]; +}; + +struct virtio_blk_config { + __virtio64 capacity; + __virtio32 size_max; + __virtio32 seg_max; + struct virtio_blk_geometry geometry; + __virtio32 blk_size; + __u8 physical_block_exp; + __u8 alignment_offset; + __virtio16 min_io_size; + __virtio32 opt_io_size; + __u8 wce; + __u8 unused; + __virtio16 num_queues; + __virtio32 max_discard_sectors; + __virtio32 max_discard_seg; + __virtio32 discard_sector_alignment; + __virtio32 max_write_zeroes_sectors; + __virtio32 max_write_zeroes_seg; + __u8 write_zeroes_may_unmap; + __u8 unused1[3]; + __virtio32 max_secure_erase_sectors; + __virtio32 max_secure_erase_seg; + __virtio32 secure_erase_sector_alignment; + struct virtio_blk_zoned_characteristics zoned; +}; + +struct virtio_blk_outhdr { + __virtio32 type; + __virtio32 ioprio; + __virtio64 sector; +}; + +struct virtio_blk_zone_descriptor { + __virtio64 z_cap; + __virtio64 z_start; + __virtio64 z_wp; + __u8 z_type; + __u8 z_state; + __u8 reserved[38]; +}; + +struct virtio_blk_zone_report { + __virtio64 nr_zones; + __u8 reserved[56]; + struct virtio_blk_zone_descriptor zones[0]; +}; + +struct virtio_blk_discard_write_zeroes { + __le64 sector; + __le32 num_sectors; + __le32 flags; +}; + +struct virtio_blk_vq { + struct virtqueue *vq; + spinlock_t lock; + char name[16]; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct virtio_blk { + struct mutex vdev_mutex; + struct virtio_device *vdev; + struct gendisk *disk; + struct blk_mq_tag_set tag_set; + struct work_struct config_work; + int index; + int num_vqs; + int io_queues[3]; + struct virtio_blk_vq *vqs; + unsigned int zone_sectors; +}; + +struct virtblk_req { + struct virtio_blk_outhdr out_hdr; + union { + u8 status; + struct { + __virtio64 sector; + u8 status; + } zone_append; + } in_hdr; + size_t in_hdr_len; + struct sg_table sg_table; + struct scatterlist sg[0]; +}; + +struct wm8400_platform_data { + int (*platform_init)(struct device *); +}; + +struct wm8400 { + struct device *dev; + struct regmap *regmap; + struct platform_device regulators[6]; +}; + +enum tps65912_irqs { + TPS65912_IRQ_PWRHOLD_F = 0, + TPS65912_IRQ_VMON = 1, + TPS65912_IRQ_PWRON = 2, + TPS65912_IRQ_PWRON_LP = 3, + TPS65912_IRQ_PWRHOLD_R = 4, + TPS65912_IRQ_HOTDIE = 5, + TPS65912_IRQ_GPIO1_R = 6, + TPS65912_IRQ_GPIO1_F = 7, + TPS65912_IRQ_GPIO2_R = 8, + TPS65912_IRQ_GPIO2_F = 9, + TPS65912_IRQ_GPIO3_R = 10, + TPS65912_IRQ_GPIO3_F = 11, + TPS65912_IRQ_GPIO4_R = 12, + TPS65912_IRQ_GPIO4_F = 13, + TPS65912_IRQ_GPIO5_R = 14, + TPS65912_IRQ_GPIO5_F = 15, + TPS65912_IRQ_PGOOD_DCDC1 = 16, + TPS65912_IRQ_PGOOD_DCDC2 = 17, + TPS65912_IRQ_PGOOD_DCDC3 = 18, + TPS65912_IRQ_PGOOD_DCDC4 = 19, + TPS65912_IRQ_PGOOD_LDO1 = 20, + TPS65912_IRQ_PGOOD_LDO2 = 21, + TPS65912_IRQ_PGOOD_LDO3 = 22, + TPS65912_IRQ_PGOOD_LDO4 = 23, + TPS65912_IRQ_PGOOD_LDO5 = 24, + TPS65912_IRQ_PGOOD_LDO6 = 25, + TPS65912_IRQ_PGOOD_LDO7 = 26, + TPS65912_IRQ_PGOOD_LDO8 = 27, + TPS65912_IRQ_PGOOD_LDO9 = 28, + TPS65912_IRQ_PGOOD_LDO10 = 29, +}; + +struct of_dev_auxdata { + char *compatible; + resource_size_t phys_addr; + char *name; + void *platform_data; +}; + +enum twl4030_module_ids { + TWL4030_MODULE_AUDIO_VOICE = 9, + TWL4030_MODULE_GPIO = 10, + TWL4030_MODULE_INTBR = 11, + TWL4030_MODULE_TEST = 12, + TWL4030_MODULE_KEYPAD = 13, + TWL4030_MODULE_MADC = 14, + TWL4030_MODULE_INTERRUPTS = 15, + TWL4030_MODULE_PRECHARGE = 16, + TWL4030_MODULE_BACKUP = 17, + TWL4030_MODULE_INT = 18, + TWL5031_MODULE_ACCESSORY = 19, + TWL5031_MODULE_INTERRUPTS = 20, + TWL4030_MODULE_LAST = 21, +}; + +enum twl6030_module_ids { + TWL6030_MODULE_ID0 = 9, + TWL6030_MODULE_ID1 = 10, + TWL6030_MODULE_ID2 = 11, + TWL6030_MODULE_GPADC = 12, + TWL6030_MODULE_GASGAUGE = 13, + TWL6032_MODULE_CHARGE = 14, + TWL6030_MODULE_LAST = 15, +}; + +struct twl_client { + struct i2c_client *client; + struct regmap *regmap; +}; + +struct twl_mapping { + unsigned char sid; + unsigned char base; +}; + +struct twl_private { + bool ready; + u32 twl_idcode; + unsigned int twl_id; + struct twl_mapping *twl_map; + struct twl_client *twl_modules; +}; + +struct twl4030_codec_data { + unsigned int digimic_delay; + unsigned int ramp_delay_value; + unsigned int offset_cncl_path; + unsigned int hs_extmute: 1; + int hs_extmute_gpio; +}; + +struct twl4030_vibra_data { + unsigned int coexist; +}; + +struct twl4030_audio_data { + unsigned int audio_mclk; + struct twl4030_codec_data *codec; + struct twl4030_vibra_data *vibra; + int audpwron_gpio; + int naudint_irq; + unsigned int irq_base; +}; + +enum twl4030_audio_res { + TWL4030_AUDIO_RES_POWER = 0, + TWL4030_AUDIO_RES_APLL = 1, + TWL4030_AUDIO_RES_MAX = 2, +}; + +struct twl4030_audio_resource { + int request_count; + u8 reg; + u8 mask; +}; + +struct twl4030_audio { + unsigned int audio_mclk; + struct mutex mutex; + struct twl4030_audio_resource resource[2]; + struct mfd_cell cells[2]; +}; + +struct da903x_subdev_info { + int id; + const char *name; + void *platform_data; +}; + +struct da903x_platform_data { + int num_subdevs; + struct da903x_subdev_info *subdevs; +}; + +struct da903x_chip; + +struct da903x_chip_ops { + int (*init_chip)(struct da903x_chip *); + int (*unmask_events)(struct da903x_chip *, unsigned int); + int (*mask_events)(struct da903x_chip *, unsigned int); + int (*read_events)(struct da903x_chip *, unsigned int *); + int (*read_status)(struct da903x_chip *, unsigned int *); +}; + +struct da903x_chip { + struct i2c_client *client; + struct device *dev; + const struct da903x_chip_ops *ops; + int type; + uint32_t events_mask; + struct mutex lock; + struct work_struct irq_work; + struct blocking_notifier_head notifier_list; +}; + +enum da9052_chip_id { + DA9052 = 0, + DA9053_AA = 1, + DA9053_BA = 2, + DA9053_BB = 3, + DA9053_BC = 4, +}; + +struct lp8788_irq_data { + struct lp8788 *lp; + struct mutex irq_lock; + struct irq_domain *domain; + int enabled[24]; +}; + +enum { + MAX8925_IRQ_VCHG_DC_OVP = 0, + MAX8925_IRQ_VCHG_DC_F = 1, + MAX8925_IRQ_VCHG_DC_R = 2, + MAX8925_IRQ_VCHG_THM_OK_R = 3, + MAX8925_IRQ_VCHG_THM_OK_F = 4, + MAX8925_IRQ_VCHG_SYSLOW_F = 5, + MAX8925_IRQ_VCHG_SYSLOW_R = 6, + MAX8925_IRQ_VCHG_RST = 7, + MAX8925_IRQ_VCHG_DONE = 8, + MAX8925_IRQ_VCHG_TOPOFF = 9, + MAX8925_IRQ_VCHG_TMR_FAULT = 10, + MAX8925_IRQ_GPM_RSTIN = 11, + MAX8925_IRQ_GPM_MPL = 12, + MAX8925_IRQ_GPM_SW_3SEC = 13, + MAX8925_IRQ_GPM_EXTON_F = 14, + MAX8925_IRQ_GPM_EXTON_R = 15, + MAX8925_IRQ_GPM_SW_1SEC = 16, + MAX8925_IRQ_GPM_SW_F = 17, + MAX8925_IRQ_GPM_SW_R = 18, + MAX8925_IRQ_GPM_SYSCKEN_F = 19, + MAX8925_IRQ_GPM_SYSCKEN_R = 20, + MAX8925_IRQ_RTC_ALARM1 = 21, + MAX8925_IRQ_RTC_ALARM0 = 22, + MAX8925_IRQ_TSC_STICK = 23, + MAX8925_IRQ_TSC_NSTICK = 24, + MAX8925_NR_IRQS = 25, +}; + +enum { + FLAGS_ADC = 1, + FLAGS_RTC = 2, +}; + +struct max8925_irq_data { + int reg; + int mask_reg; + int enable; + int offs; + int flags; + int tsc_irq; +}; + +struct max8997_regulator_data { + int id; + struct regulator_init_data *initdata; + struct device_node *reg_node; +}; + +struct max8997_muic_reg_data { + u8 addr; + u8 data; +}; + +struct max8997_muic_platform_data { + struct max8997_muic_reg_data *init_data; + int num_init_data; + int detcable_delay_ms; + int path_usb; + int path_uart; +}; + +enum max8997_haptic_motor_type { + MAX8997_HAPTIC_ERM = 0, + MAX8997_HAPTIC_LRA = 1, +}; + +enum max8997_haptic_pulse_mode { + MAX8997_EXTERNAL_MODE = 0, + MAX8997_INTERNAL_MODE = 1, +}; + +enum max8997_haptic_pwm_divisor { + MAX8997_PWM_DIVISOR_32 = 0, + MAX8997_PWM_DIVISOR_64 = 1, + MAX8997_PWM_DIVISOR_128 = 2, + MAX8997_PWM_DIVISOR_256 = 3, +}; + +struct max8997_haptic_platform_data { + unsigned int pwm_period; + enum max8997_haptic_motor_type type; + enum max8997_haptic_pulse_mode mode; + enum max8997_haptic_pwm_divisor pwm_divisor; + unsigned int internal_mode_pattern; + unsigned int pattern_cycle; + unsigned int pattern_signal_period; +}; + +enum max8997_led_mode { + MAX8997_NONE = 0, + MAX8997_FLASH_MODE = 1, + MAX8997_MOVIE_MODE = 2, + MAX8997_FLASH_PIN_CONTROL_MODE = 3, + MAX8997_MOVIE_PIN_CONTROL_MODE = 4, +}; + +struct max8997_led_platform_data { + enum max8997_led_mode mode[2]; + u8 brightness[2]; +}; + +struct max8997_platform_data { + int ono; + struct max8997_regulator_data *regulators; + int num_regulators; + bool ignore_gpiodvs_side_effect; + int buck125_default_idx; + unsigned int buck1_voltage[8]; + bool buck1_gpiodvs; + unsigned int buck2_voltage[8]; + bool buck2_gpiodvs; + unsigned int buck5_voltage[8]; + bool buck5_gpiodvs; + int eoc_mA; + int timeout; + struct max8997_muic_platform_data *muic_pdata; + struct max8997_haptic_platform_data *haptic_pdata; + struct max8997_led_platform_data *led_pdata; +}; + +enum max8997_pmic_reg { + MAX8997_REG_PMIC_ID0 = 0, + MAX8997_REG_PMIC_ID1 = 1, + MAX8997_REG_INTSRC = 2, + MAX8997_REG_INT1 = 3, + MAX8997_REG_INT2 = 4, + MAX8997_REG_INT3 = 5, + MAX8997_REG_INT4 = 6, + MAX8997_REG_INT1MSK = 8, + MAX8997_REG_INT2MSK = 9, + MAX8997_REG_INT3MSK = 10, + MAX8997_REG_INT4MSK = 11, + MAX8997_REG_STATUS1 = 13, + MAX8997_REG_STATUS2 = 14, + MAX8997_REG_STATUS3 = 15, + MAX8997_REG_STATUS4 = 16, + MAX8997_REG_MAINCON1 = 19, + MAX8997_REG_MAINCON2 = 20, + MAX8997_REG_BUCKRAMP = 21, + MAX8997_REG_BUCK1CTRL = 24, + MAX8997_REG_BUCK1DVS1 = 25, + MAX8997_REG_BUCK1DVS2 = 26, + MAX8997_REG_BUCK1DVS3 = 27, + MAX8997_REG_BUCK1DVS4 = 28, + MAX8997_REG_BUCK1DVS5 = 29, + MAX8997_REG_BUCK1DVS6 = 30, + MAX8997_REG_BUCK1DVS7 = 31, + MAX8997_REG_BUCK1DVS8 = 32, + MAX8997_REG_BUCK2CTRL = 33, + MAX8997_REG_BUCK2DVS1 = 34, + MAX8997_REG_BUCK2DVS2 = 35, + MAX8997_REG_BUCK2DVS3 = 36, + MAX8997_REG_BUCK2DVS4 = 37, + MAX8997_REG_BUCK2DVS5 = 38, + MAX8997_REG_BUCK2DVS6 = 39, + MAX8997_REG_BUCK2DVS7 = 40, + MAX8997_REG_BUCK2DVS8 = 41, + MAX8997_REG_BUCK3CTRL = 42, + MAX8997_REG_BUCK3DVS = 43, + MAX8997_REG_BUCK4CTRL = 44, + MAX8997_REG_BUCK4DVS = 45, + MAX8997_REG_BUCK5CTRL = 46, + MAX8997_REG_BUCK5DVS1 = 47, + MAX8997_REG_BUCK5DVS2 = 48, + MAX8997_REG_BUCK5DVS3 = 49, + MAX8997_REG_BUCK5DVS4 = 50, + MAX8997_REG_BUCK5DVS5 = 51, + MAX8997_REG_BUCK5DVS6 = 52, + MAX8997_REG_BUCK5DVS7 = 53, + MAX8997_REG_BUCK5DVS8 = 54, + MAX8997_REG_BUCK6CTRL = 55, + MAX8997_REG_BUCK6BPSKIPCTRL = 56, + MAX8997_REG_BUCK7CTRL = 57, + MAX8997_REG_BUCK7DVS = 58, + MAX8997_REG_LDO1CTRL = 59, + MAX8997_REG_LDO2CTRL = 60, + MAX8997_REG_LDO3CTRL = 61, + MAX8997_REG_LDO4CTRL = 62, + MAX8997_REG_LDO5CTRL = 63, + MAX8997_REG_LDO6CTRL = 64, + MAX8997_REG_LDO7CTRL = 65, + MAX8997_REG_LDO8CTRL = 66, + MAX8997_REG_LDO9CTRL = 67, + MAX8997_REG_LDO10CTRL = 68, + MAX8997_REG_LDO11CTRL = 69, + MAX8997_REG_LDO12CTRL = 70, + MAX8997_REG_LDO13CTRL = 71, + MAX8997_REG_LDO14CTRL = 72, + MAX8997_REG_LDO15CTRL = 73, + MAX8997_REG_LDO16CTRL = 74, + MAX8997_REG_LDO17CTRL = 75, + MAX8997_REG_LDO18CTRL = 76, + MAX8997_REG_LDO21CTRL = 77, + MAX8997_REG_MBCCTRL1 = 80, + MAX8997_REG_MBCCTRL2 = 81, + MAX8997_REG_MBCCTRL3 = 82, + MAX8997_REG_MBCCTRL4 = 83, + MAX8997_REG_MBCCTRL5 = 84, + MAX8997_REG_MBCCTRL6 = 85, + MAX8997_REG_OTPCGHCVS = 86, + MAX8997_REG_SAFEOUTCTRL = 90, + MAX8997_REG_LBCNFG1 = 94, + MAX8997_REG_LBCNFG2 = 95, + MAX8997_REG_BBCCTRL = 96, + MAX8997_REG_FLASH1_CUR = 99, + MAX8997_REG_FLASH2_CUR = 100, + MAX8997_REG_MOVIE_CUR = 101, + MAX8997_REG_GSMB_CUR = 102, + MAX8997_REG_BOOST_CNTL = 103, + MAX8997_REG_LEN_CNTL = 104, + MAX8997_REG_FLASH_CNTL = 105, + MAX8997_REG_WDT_CNTL = 106, + MAX8997_REG_MAXFLASH1 = 107, + MAX8997_REG_MAXFLASH2 = 108, + MAX8997_REG_FLASHSTATUS = 109, + MAX8997_REG_FLASHSTATUSMASK = 110, + MAX8997_REG_GPIOCNTL1 = 112, + MAX8997_REG_GPIOCNTL2 = 113, + MAX8997_REG_GPIOCNTL3 = 114, + MAX8997_REG_GPIOCNTL4 = 115, + MAX8997_REG_GPIOCNTL5 = 116, + MAX8997_REG_GPIOCNTL6 = 117, + MAX8997_REG_GPIOCNTL7 = 118, + MAX8997_REG_GPIOCNTL8 = 119, + MAX8997_REG_GPIOCNTL9 = 120, + MAX8997_REG_GPIOCNTL10 = 121, + MAX8997_REG_GPIOCNTL11 = 122, + MAX8997_REG_GPIOCNTL12 = 123, + MAX8997_REG_LDO1CONFIG = 128, + MAX8997_REG_LDO2CONFIG = 129, + MAX8997_REG_LDO3CONFIG = 130, + MAX8997_REG_LDO4CONFIG = 131, + MAX8997_REG_LDO5CONFIG = 132, + MAX8997_REG_LDO6CONFIG = 133, + MAX8997_REG_LDO7CONFIG = 134, + MAX8997_REG_LDO8CONFIG = 135, + MAX8997_REG_LDO9CONFIG = 136, + MAX8997_REG_LDO10CONFIG = 137, + MAX8997_REG_LDO11CONFIG = 138, + MAX8997_REG_LDO12CONFIG = 139, + MAX8997_REG_LDO13CONFIG = 140, + MAX8997_REG_LDO14CONFIG = 141, + MAX8997_REG_LDO15CONFIG = 142, + MAX8997_REG_LDO16CONFIG = 143, + MAX8997_REG_LDO17CONFIG = 144, + MAX8997_REG_LDO18CONFIG = 145, + MAX8997_REG_LDO21CONFIG = 146, + MAX8997_REG_DVSOKTIMER1 = 151, + MAX8997_REG_DVSOKTIMER2 = 152, + MAX8997_REG_DVSOKTIMER4 = 153, + MAX8997_REG_DVSOKTIMER5 = 154, + MAX8997_REG_PMIC_END = 155, +}; + +enum max8997_muic_reg { + MAX8997_MUIC_REG_ID = 0, + MAX8997_MUIC_REG_INT1 = 1, + MAX8997_MUIC_REG_INT2 = 2, + MAX8997_MUIC_REG_INT3 = 3, + MAX8997_MUIC_REG_STATUS1 = 4, + MAX8997_MUIC_REG_STATUS2 = 5, + MAX8997_MUIC_REG_STATUS3 = 6, + MAX8997_MUIC_REG_INTMASK1 = 7, + MAX8997_MUIC_REG_INTMASK2 = 8, + MAX8997_MUIC_REG_INTMASK3 = 9, + MAX8997_MUIC_REG_CDETCTRL = 10, + MAX8997_MUIC_REG_CONTROL1 = 12, + MAX8997_MUIC_REG_CONTROL2 = 13, + MAX8997_MUIC_REG_CONTROL3 = 14, + MAX8997_MUIC_REG_END = 15, +}; + +enum max8997_haptic_reg { + MAX8997_HAPTIC_REG_GENERAL = 0, + MAX8997_HAPTIC_REG_CONF1 = 1, + MAX8997_HAPTIC_REG_CONF2 = 2, + MAX8997_HAPTIC_REG_DRVCONF = 3, + MAX8997_HAPTIC_REG_CYCLECONF1 = 4, + MAX8997_HAPTIC_REG_CYCLECONF2 = 5, + MAX8997_HAPTIC_REG_SIGCONF1 = 6, + MAX8997_HAPTIC_REG_SIGCONF2 = 7, + MAX8997_HAPTIC_REG_SIGCONF3 = 8, + MAX8997_HAPTIC_REG_SIGCONF4 = 9, + MAX8997_HAPTIC_REG_SIGDC1 = 10, + MAX8997_HAPTIC_REG_SIGDC2 = 11, + MAX8997_HAPTIC_REG_SIGPWMDC1 = 12, + MAX8997_HAPTIC_REG_SIGPWMDC2 = 13, + MAX8997_HAPTIC_REG_SIGPWMDC3 = 14, + MAX8997_HAPTIC_REG_SIGPWMDC4 = 15, + MAX8997_HAPTIC_REG_MTR_REV = 16, + MAX8997_HAPTIC_REG_END = 17, +}; + +enum max8997_irq_source { + PMIC_INT1 = 0, + PMIC_INT2 = 1, + PMIC_INT3 = 2, + PMIC_INT4 = 3, + FUEL_GAUGE = 4, + MUIC_INT1 = 5, + MUIC_INT2 = 6, + MUIC_INT3 = 7, + GPIO_LOW = 8, + GPIO_HI = 9, + FLASH_STATUS = 10, + MAX8997_IRQ_GROUP_NR = 11, +}; + +enum max8997_irq { + MAX8997_PMICIRQ_PWRONR = 0, + MAX8997_PMICIRQ_PWRONF = 1, + MAX8997_PMICIRQ_PWRON1SEC = 2, + MAX8997_PMICIRQ_JIGONR = 3, + MAX8997_PMICIRQ_JIGONF = 4, + MAX8997_PMICIRQ_LOWBAT2 = 5, + MAX8997_PMICIRQ_LOWBAT1 = 6, + MAX8997_PMICIRQ_JIGR = 7, + MAX8997_PMICIRQ_JIGF = 8, + MAX8997_PMICIRQ_MR = 9, + MAX8997_PMICIRQ_DVS1OK = 10, + MAX8997_PMICIRQ_DVS2OK = 11, + MAX8997_PMICIRQ_DVS3OK = 12, + MAX8997_PMICIRQ_DVS4OK = 13, + MAX8997_PMICIRQ_CHGINS = 14, + MAX8997_PMICIRQ_CHGRM = 15, + MAX8997_PMICIRQ_DCINOVP = 16, + MAX8997_PMICIRQ_TOPOFFR = 17, + MAX8997_PMICIRQ_CHGRSTF = 18, + MAX8997_PMICIRQ_MBCHGTMEXPD = 19, + MAX8997_PMICIRQ_RTC60S = 20, + MAX8997_PMICIRQ_RTCA1 = 21, + MAX8997_PMICIRQ_RTCA2 = 22, + MAX8997_PMICIRQ_SMPL_INT = 23, + MAX8997_PMICIRQ_RTC1S = 24, + MAX8997_PMICIRQ_WTSR = 25, + MAX8997_MUICIRQ_ADCError = 26, + MAX8997_MUICIRQ_ADCLow = 27, + MAX8997_MUICIRQ_ADC = 28, + MAX8997_MUICIRQ_VBVolt = 29, + MAX8997_MUICIRQ_DBChg = 30, + MAX8997_MUICIRQ_DCDTmr = 31, + MAX8997_MUICIRQ_ChgDetRun = 32, + MAX8997_MUICIRQ_ChgTyp = 33, + MAX8997_MUICIRQ_OVP = 34, + MAX8997_IRQ_NR = 35, +}; + +struct max8997_dev { + struct device *dev; + struct max8997_platform_data *pdata; + struct i2c_client *i2c; + struct i2c_client *rtc; + struct i2c_client *haptic; + struct i2c_client *muic; + struct mutex iolock; + long unsigned int type; + struct platform_device *battery; + int irq; + int ono; + struct irq_domain *irq_domain; + struct mutex irqlock; + int irq_masks_cur[11]; + int irq_masks_cache[11]; + u8 reg_dump[187]; + bool gpio_status[12]; +}; + +struct max8997_irq_data { + int mask; + enum max8997_irq_source group; +}; + +enum { + TPS6586X_ID_SYS = 0, + TPS6586X_ID_SM_0 = 1, + TPS6586X_ID_SM_1 = 2, + TPS6586X_ID_SM_2 = 3, + TPS6586X_ID_LDO_0 = 4, + TPS6586X_ID_LDO_1 = 5, + TPS6586X_ID_LDO_2 = 6, + TPS6586X_ID_LDO_3 = 7, + TPS6586X_ID_LDO_4 = 8, + TPS6586X_ID_LDO_5 = 9, + TPS6586X_ID_LDO_6 = 10, + TPS6586X_ID_LDO_7 = 11, + TPS6586X_ID_LDO_8 = 12, + TPS6586X_ID_LDO_9 = 13, + TPS6586X_ID_LDO_RTC = 14, + TPS6586X_ID_MAX_REGULATOR = 15, +}; + +struct tps6586x_irq_data { + u8 mask_reg; + u8 mask_mask; +}; + +struct tps6586x { + struct device *dev; + struct i2c_client *client; + struct regmap *regmap; + int version; + int irq; + struct irq_chip irq_chip; + struct mutex irq_lock; + int irq_base; + u32 irq_en; + u8 mask_reg[5]; + struct irq_domain *irq_domain; +}; + +enum { + RC5T583_DS_NONE = 0, + RC5T583_DS_DC0 = 1, + RC5T583_DS_DC1 = 2, + RC5T583_DS_DC2 = 3, + RC5T583_DS_DC3 = 4, + RC5T583_DS_LDO0 = 5, + RC5T583_DS_LDO1 = 6, + RC5T583_DS_LDO2 = 7, + RC5T583_DS_LDO3 = 8, + RC5T583_DS_LDO4 = 9, + RC5T583_DS_LDO5 = 10, + RC5T583_DS_LDO6 = 11, + RC5T583_DS_LDO7 = 12, + RC5T583_DS_LDO8 = 13, + RC5T583_DS_LDO9 = 14, + RC5T583_DS_PSO0 = 15, + RC5T583_DS_PSO1 = 16, + RC5T583_DS_PSO2 = 17, + RC5T583_DS_PSO3 = 18, + RC5T583_DS_PSO4 = 19, + RC5T583_DS_PSO5 = 20, + RC5T583_DS_PSO6 = 21, + RC5T583_DS_PSO7 = 22, + RC5T583_DS_MAX = 23, +}; + +enum { + RC5T583_EXT_PWRREQ1_CONTROL = 1, + RC5T583_EXT_PWRREQ2_CONTROL = 2, +}; + +struct rc5t583_platform_data { + int irq_base; + int gpio_base; + bool enable_shutdown; + int regulator_deepsleep_slot[14]; + long unsigned int regulator_ext_pwr_control[14]; + struct regulator_init_data *reg_init_data[14]; +}; + +struct deepsleep_control_data { + u8 reg_add; + u8 ds_pos_bit; +}; + +struct nd_label_id { + char id[50]; +}; + +enum nd_driver_flags { + ND_DRIVER_DIMM = 2, + ND_DRIVER_REGION_PMEM = 4, + ND_DRIVER_REGION_BLK = 8, + ND_DRIVER_NAMESPACE_IO = 16, + ND_DRIVER_NAMESPACE_PMEM = 32, + ND_DRIVER_DAX_PMEM = 128, +}; + +struct dax_region { + int id; + int target_node; + struct kref kref; + struct device *dev; + unsigned int align; + struct ida ida; + struct resource res; + struct device *seed; + struct device *youngest; +}; + +struct dax_mapping { + struct device dev; + int range_id; + int id; +}; + +struct dev_dax_range { + long unsigned int pgoff; + struct range range; + struct dax_mapping *mapping; +}; + +struct dev_dax { + struct dax_region *region; + struct dax_device *dax_dev; + unsigned int align; + int target_node; + bool dyn_id; + int id; + struct ida ida; + struct device dev; + struct dev_pagemap *pgmap; + bool memmap_on_memory; + int nr_range; + struct dev_dax_range *ranges; +}; + +struct dev_dax_data { + struct dax_region *dax_region; + struct dev_pagemap *pgmap; + resource_size_t size; + int id; + bool memmap_on_memory; +}; + +enum dax_driver_type { + DAXDRV_KMEM_TYPE = 0, + DAXDRV_DEVICE_TYPE = 1, +}; + +struct dax_device_driver { + struct device_driver drv; + struct list_head ids; + enum dax_driver_type type; + int (*probe)(struct dev_dax *); + void (*remove)(struct dev_dax *); +}; + +struct dax_id { + struct list_head list; + char dev_name[30]; +}; + +enum id_action { + ID_REMOVE = 0, + ID_ADD = 1, +}; + +struct dma_buf_export_info { + const char *exp_name; + struct module *owner; + const struct dma_buf_ops *ops; + size_t size; + int flags; + struct dma_resv *resv; + void *priv; +}; + +struct dma_resv_iter { + struct dma_resv *obj; + enum dma_resv_usage usage; + struct dma_fence *fence; + enum dma_resv_usage fence_usage; + unsigned int index; + struct dma_resv_list *fences; + unsigned int num_fences; + bool is_restarted; +}; + +struct dma_buf_sync { + __u64 flags; +}; + +struct dma_buf_export_sync_file { + __u32 flags; + __s32 fd; +}; + +struct dma_buf_import_sync_file { + __u32 flags; + __s32 fd; +}; + +struct dma_heap; + +struct dma_heap_ops { + struct dma_buf * (*allocate)(struct dma_heap *, long unsigned int, u32, u64); +}; + +struct dma_heap_export_info { + const char *name; + const struct dma_heap_ops *ops; + void *priv; +}; + +struct system_heap_buffer { + struct dma_heap *heap; + struct list_head attachments; + struct mutex lock; + long unsigned int len; + struct sg_table sg_table; + int vmap_cnt; + void *vaddr; +}; + +struct dma_heap_attachment { + struct device *dev; + struct sg_table table; + struct list_head list; + bool mapped; +}; + +struct sync_timeline { + struct kref kref; + char name[32]; + u64 context; + int value; + struct rb_root pt_tree; + struct list_head pt_list; + spinlock_t lock; + struct list_head sync_timeline_list; +}; + +struct sync_pt { + struct dma_fence base; + struct list_head link; + struct rb_node node; + ktime_t deadline; +}; + +struct trace_event_raw_sync_timeline { + struct trace_entry ent; + u32 __data_loc_name; + u32 value; + char __data[0]; +}; + +struct trace_event_data_offsets_sync_timeline { + u32 name; + const void *name_ptr_; +}; + +typedef void (*btf_trace_sync_timeline)(void *, struct sync_timeline *); + +struct sw_sync_create_fence_data { + __u32 value; + char name[32]; + __s32 fence; +}; + +struct sw_sync_get_deadline { + __u64 deadline_ns; + __u32 pad; + __s32 fence_fd; +}; + +struct value_name_pair; + +struct sa_name_list { + int opcode; + const struct value_name_pair *arr; + int arr_sz; +}; + +struct value_name_pair { + int value; + const char *name; +}; + +struct error_info { + short unsigned int code12; + short unsigned int size; +}; + +struct error_info2 { + unsigned char code1; + unsigned char code2_min; + unsigned char code2_max; + const char *str; + const char *fmt; +}; + +struct scsi_proc_entry { + struct list_head entry; + const struct scsi_host_template *sht; + struct proc_dir_entry *proc_dir; + unsigned int present; +}; + +struct virtio_scsi_cmd_req { + __u8 lun[8]; + __virtio64 tag; + __u8 task_attr; + __u8 prio; + __u8 crn; + __u8 cdb[32]; +} __attribute__((packed)); + +struct virtio_scsi_cmd_req_pi { + __u8 lun[8]; + __virtio64 tag; + __u8 task_attr; + __u8 prio; + __u8 crn; + __virtio32 pi_bytesout; + __virtio32 pi_bytesin; + __u8 cdb[32]; +} __attribute__((packed)); + +struct virtio_scsi_cmd_resp { + __virtio32 sense_len; + __virtio32 resid; + __virtio16 status_qualifier; + __u8 status; + __u8 response; + __u8 sense[96]; +}; + +struct virtio_scsi_ctrl_tmf_req { + __virtio32 type; + __virtio32 subtype; + __u8 lun[8]; + __virtio64 tag; +}; + +struct virtio_scsi_ctrl_tmf_resp { + __u8 response; +}; + +struct virtio_scsi_ctrl_an_req { + __virtio32 type; + __u8 lun[8]; + __virtio32 event_requested; +}; + +struct virtio_scsi_ctrl_an_resp { + __virtio32 event_actual; + __u8 response; +} __attribute__((packed)); + +struct virtio_scsi_event { + __virtio32 event; + __u8 lun[8]; + __virtio32 reason; +}; + +struct virtio_scsi_config { + __virtio32 num_queues; + __virtio32 seg_max; + __virtio32 max_sectors; + __virtio32 cmd_per_lun; + __virtio32 event_info_size; + __virtio32 sense_size; + __virtio32 cdb_size; + __virtio16 max_channel; + __virtio16 max_target; + __virtio32 max_lun; +}; + +enum scsi_host_guard_type { + SHOST_DIX_GUARD_CRC = 1, + SHOST_DIX_GUARD_IP = 2, +}; + +struct virtio_scsi_cmd { + struct scsi_cmnd *sc; + struct completion *comp; + union { + struct virtio_scsi_cmd_req cmd; + struct virtio_scsi_cmd_req_pi cmd_pi; + struct virtio_scsi_ctrl_tmf_req tmf; + struct virtio_scsi_ctrl_an_req an; + } req; + union { + struct virtio_scsi_cmd_resp cmd; + struct virtio_scsi_ctrl_tmf_resp tmf; + struct virtio_scsi_ctrl_an_resp an; + struct virtio_scsi_event evt; + } resp; + long: 64; +} __attribute__((packed)); + +struct virtio_scsi; + +struct virtio_scsi_event_node { + struct virtio_scsi *vscsi; + struct virtio_scsi_event event; + struct work_struct work; +}; + +struct virtio_scsi_vq { + spinlock_t vq_lock; + struct virtqueue *vq; +}; + +struct virtio_scsi { + struct virtio_device *vdev; + struct virtio_scsi_event_node event_list[8]; + u32 num_queues; + int io_queues[3]; + struct hlist_node node; + bool stop_events; + struct virtio_scsi_vq ctrl_vq; + struct virtio_scsi_vq event_vq; + struct virtio_scsi_vq req_vqs[0]; +}; + +enum t10_dif_type { + T10_PI_TYPE0_PROTECTION = 0, + T10_PI_TYPE1_PROTECTION = 1, + T10_PI_TYPE2_PROTECTION = 2, + T10_PI_TYPE3_PROTECTION = 3, +}; + +struct cdrom_ti { + __u8 cdti_trk0; + __u8 cdti_ind0; + __u8 cdti_trk1; + __u8 cdti_ind1; +}; + +struct cdrom_tochdr { + __u8 cdth_trk0; + __u8 cdth_trk1; +}; + +struct cdrom_tocentry { + __u8 cdte_track; + __u8 cdte_adr: 4; + __u8 cdte_ctrl: 4; + __u8 cdte_format; + union cdrom_addr cdte_addr; + __u8 cdte_datamode; +}; + +struct media_event_desc { + __u8 media_event_code: 4; + __u8 reserved1: 4; + __u8 door_open: 1; + __u8 media_present: 1; + __u8 reserved2: 6; + __u8 start_slot; + __u8 end_slot; +}; + +struct scsi_cd { + unsigned int capacity; + struct scsi_device *device; + unsigned int vendor; + long unsigned int ms_offset; + unsigned int writeable: 1; + unsigned int use: 1; + unsigned int xa_flag: 1; + unsigned int readcd_known: 1; + unsigned int readcd_cdda: 1; + unsigned int media_present: 1; + int tur_mismatch; + bool tur_changed: 1; + bool get_event_changed: 1; + bool ignore_get_event: 1; + struct cdrom_device_info cdi; + struct mutex lock; + struct gendisk *disk; +}; + +typedef struct scsi_cd Scsi_CD; + +enum { + NVME_AUTH_HASH_SHA256 = 1, + NVME_AUTH_HASH_SHA384 = 2, + NVME_AUTH_HASH_SHA512 = 3, + NVME_AUTH_HASH_INVALID = 255, +}; + +enum { + NVME_AUTH_DHGROUP_NULL = 0, + NVME_AUTH_DHGROUP_2048 = 1, + NVME_AUTH_DHGROUP_3072 = 2, + NVME_AUTH_DHGROUP_4096 = 3, + NVME_AUTH_DHGROUP_6144 = 4, + NVME_AUTH_DHGROUP_8192 = 5, + NVME_AUTH_DHGROUP_INVALID = 255, +}; + +struct nvme_auth_dhgroup_map { + const char name[16]; + const char kpp[16]; +}; + +struct nvme_dhchap_hash_map { + int len; + const char hmac[15]; + const char digest[8]; +}; + +struct nvme_zns_lbafe { + __le64 zsze; + __u8 zdes; + __u8 rsvd9[7]; +}; + +struct nvme_id_ns_zns { + __le16 zoc; + __le16 ozcs; + __le32 mar; + __le32 mor; + __le32 rrl; + __le32 frl; + __u8 rsvd20[2796]; + struct nvme_zns_lbafe lbafe[64]; + __u8 vs[256]; +}; + +struct nvme_id_ctrl_zns { + __u8 zasl; + __u8 rsvd1[4095]; +}; + +struct nvme_zone_descriptor { + __u8 zt; + __u8 zs; + __u8 za; + __u8 rsvd3[5]; + __le64 zcap; + __le64 zslba; + __le64 wp; + __u8 rsvd32[32]; +}; + +enum { + NVME_ZONE_TYPE_SEQWRITE_REQ = 2, +}; + +struct nvme_zone_report { + __le64 nr_zones; + __u8 resv8[56]; + struct nvme_zone_descriptor entries[0]; +}; + +enum { + NVME_ZRA_ZONE_REPORT = 0, + NVME_ZRASF_ZONE_REPORT_ALL = 0, + NVME_ZRASF_ZONE_STATE_EMPTY = 1, + NVME_ZRASF_ZONE_STATE_IMP_OPEN = 2, + NVME_ZRASF_ZONE_STATE_EXP_OPEN = 3, + NVME_ZRASF_ZONE_STATE_CLOSED = 4, + NVME_ZRASF_ZONE_STATE_READONLY = 5, + NVME_ZRASF_ZONE_STATE_FULL = 6, + NVME_ZRASF_ZONE_STATE_OFFLINE = 7, + NVME_REPORT_ZONE_PARTIAL = 1, +}; + +enum { + NVME_AUTH_DHCHAP_PROTOCOL_IDENTIFIER = 233, +}; + +enum { + NVME_AUTH_COMMON_MESSAGES = 0, + NVME_AUTH_DHCHAP_MESSAGES = 1, +}; + +enum { + NVME_AUTH_DHCHAP_MESSAGE_NEGOTIATE = 0, + NVME_AUTH_DHCHAP_MESSAGE_CHALLENGE = 1, + NVME_AUTH_DHCHAP_MESSAGE_REPLY = 2, + NVME_AUTH_DHCHAP_MESSAGE_SUCCESS1 = 3, + NVME_AUTH_DHCHAP_MESSAGE_SUCCESS2 = 4, + NVME_AUTH_DHCHAP_MESSAGE_FAILURE2 = 240, + NVME_AUTH_DHCHAP_MESSAGE_FAILURE1 = 241, +}; + +struct nvmf_auth_dhchap_protocol_descriptor { + __u8 authid; + __u8 rsvd; + __u8 halen; + __u8 dhlen; + __u8 idlist[60]; +}; + +enum { + NVME_AUTH_DHCHAP_AUTH_ID = 1, +}; + +enum { + NVME_AUTH_SECP_NOSC = 0, + NVME_AUTH_SECP_SC = 1, + NVME_AUTH_SECP_NEWTLSPSK = 2, + NVME_AUTH_SECP_REPLACETLSPSK = 3, +}; + +union nvmf_auth_protocol { + struct nvmf_auth_dhchap_protocol_descriptor dhchap; +}; + +struct nvmf_auth_dhchap_negotiate_data { + __u8 auth_type; + __u8 auth_id; + __le16 rsvd; + __le16 t_id; + __u8 sc_c; + __u8 napd; + union nvmf_auth_protocol auth_protocol[0]; +}; + +struct nvmf_auth_dhchap_challenge_data { + __u8 auth_type; + __u8 auth_id; + __u16 rsvd1; + __le16 t_id; + __u8 hl; + __u8 rsvd2; + __u8 hashid; + __u8 dhgid; + __le16 dhvlen; + __le32 seqnum; + __u8 cval[0]; +}; + +struct nvmf_auth_dhchap_reply_data { + __u8 auth_type; + __u8 auth_id; + __le16 rsvd1; + __le16 t_id; + __u8 hl; + __u8 rsvd2; + __u8 cvalid; + __u8 rsvd3; + __le16 dhvlen; + __le32 seqnum; + __u8 rval[0]; +}; + +struct nvmf_auth_dhchap_success1_data { + __u8 auth_type; + __u8 auth_id; + __le16 rsvd1; + __le16 t_id; + __u8 hl; + __u8 rsvd2; + __u8 rvalid; + __u8 rsvd3[7]; + __u8 rval[0]; +}; + +struct nvmf_auth_dhchap_success2_data { + __u8 auth_type; + __u8 auth_id; + __le16 rsvd1; + __le16 t_id; + __u8 rsvd2[10]; +}; + +struct nvmf_auth_dhchap_failure_data { + __u8 auth_type; + __u8 auth_id; + __le16 rsvd1; + __le16 t_id; + __u8 rescode; + __u8 rescode_exp; +}; + +enum { + NVME_AUTH_DHCHAP_FAILURE_REASON_FAILED = 1, +}; + +enum { + NVME_AUTH_DHCHAP_FAILURE_FAILED = 1, + NVME_AUTH_DHCHAP_FAILURE_NOT_USABLE = 2, + NVME_AUTH_DHCHAP_FAILURE_CONCAT_MISMATCH = 3, + NVME_AUTH_DHCHAP_FAILURE_HASH_UNUSABLE = 4, + NVME_AUTH_DHCHAP_FAILURE_DHGROUP_UNUSABLE = 5, + NVME_AUTH_DHCHAP_FAILURE_INCORRECT_PAYLOAD = 6, + NVME_AUTH_DHCHAP_FAILURE_INCORRECT_MESSAGE = 7, +}; + +struct nvme_dhchap_queue_context { + struct list_head entry; + struct work_struct auth_work; + struct nvme_ctrl *ctrl; + struct crypto_shash *shash_tfm; + struct crypto_kpp *dh_tfm; + struct nvme_dhchap_key *transformed_key; + void *buf; + int qid; + int error; + u32 s1; + u32 s2; + bool bi_directional; + bool authenticated; + u16 transaction; + u8 status; + u8 dhgroup_id; + u8 hash_id; + u8 sc_c; + size_t hash_len; + u8 c1[64]; + u8 c2[64]; + u8 response[64]; + u8 *ctrl_key; + u8 *host_key; + u8 *sess_key; + int ctrl_key_len; + int host_key_len; + int sess_key_len; +}; + +enum ata_lpm_hints { + ATA_LPM_EMPTY = 1, + ATA_LPM_HIPM = 2, + ATA_LPM_WAKE_ONLY = 4, +}; + +enum { + ATA_EH_SPDN_NCQ_OFF = 1, + ATA_EH_SPDN_SPEED_DOWN = 2, + ATA_EH_SPDN_FALLBACK_TO_PIO = 4, + ATA_EH_SPDN_KEEP_ERRORS = 8, + ATA_EFLAG_IS_IO = 1, + ATA_EFLAG_DUBIOUS_XFER = 2, + ATA_EFLAG_OLD_ER = -2147483648, + ATA_ECAT_NONE = 0, + ATA_ECAT_ATA_BUS = 1, + ATA_ECAT_TOUT_HSM = 2, + ATA_ECAT_UNK_DEV = 3, + ATA_ECAT_DUBIOUS_NONE = 4, + ATA_ECAT_DUBIOUS_ATA_BUS = 5, + ATA_ECAT_DUBIOUS_TOUT_HSM = 6, + ATA_ECAT_DUBIOUS_UNK_DEV = 7, + ATA_ECAT_NR = 8, + ATA_EH_CMD_DFL_TIMEOUT = 5000, + ATA_EH_RESET_COOL_DOWN = 5000, + ATA_EH_PRERESET_TIMEOUT = 10000, + ATA_EH_FASTDRAIN_INTERVAL = 3000, + ATA_EH_UA_TRIES = 5, + ATA_EH_PROBE_TRIAL_INTERVAL = 60000, + ATA_EH_PROBE_TRIALS = 2, +}; + +struct ata_eh_cmd_timeout_ent { + const u8 *commands; + const unsigned int *timeouts; +}; + +struct speed_down_verdict_arg { + u64 since; + int xfer_ok; + int nr_errors[8]; +}; + +struct sis_chipset { + u16 device; + const struct ata_port_info *info; +}; + +struct sis_laptop { + u16 device; + u16 subvendor; + u16 subdevice; +}; + +struct drm_mode_map_dumb { + __u32 handle; + __u32 pad; + __u64 offset; +}; + +struct drm_mode_destroy_dumb { + __u32 handle; +}; + +struct drm_mm_scan { + struct drm_mm *mm; + u64 size; + u64 alignment; + u64 remainder_mask; + u64 range_start; + u64 range_end; + u64 hit_start; + u64 hit_end; + long unsigned int color; + enum drm_mm_insert_mode mode; +}; + +struct drm_mode_card_res { + __u64 fb_id_ptr; + __u64 crtc_id_ptr; + __u64 connector_id_ptr; + __u64 encoder_id_ptr; + __u32 count_fbs; + __u32 count_crtcs; + __u32 count_connectors; + __u32 count_encoders; + __u32 min_width; + __u32 max_width; + __u32 min_height; + __u32 max_height; +}; + +struct drm_connector_list_iter { + struct drm_device *dev; + struct drm_connector *conn; +}; + +struct drm_prime_handle { + __u32 handle; + __u32 flags; + __s32 fd; +}; + +struct drm_prime_member { + struct dma_buf *dma_buf; + uint32_t handle; + struct rb_node dmabuf_rb; + struct rb_node handle_rb; +}; + +struct drm_crtc_get_sequence { + __u32 crtc_id; + __u32 active; + __u64 sequence; + __s64 sequence_ns; +}; + +struct drm_crtc_queue_sequence { + __u32 crtc_id; + __u32 flags; + __u64 sequence; + __u64 user_data; +}; + +typedef bool (*drm_vblank_get_scanout_position_func)(struct drm_crtc *, bool, int *, int *, ktime_t *, ktime_t *, const struct drm_display_mode *); + +struct drm_client_dev; + +struct drm_client_funcs { + struct module *owner; + void (*unregister)(struct drm_client_dev *); + int (*restore)(struct drm_client_dev *); + int (*hotplug)(struct drm_client_dev *); + int (*suspend)(struct drm_client_dev *, bool); + int (*resume)(struct drm_client_dev *, bool); +}; + +struct drm_client_dev { + struct drm_device *dev; + const char *name; + struct list_head list; + const struct drm_client_funcs *funcs; + struct drm_file *file; + struct mutex modeset_mutex; + struct drm_mode_set *modesets; + bool suspended; + bool hotplug_pending; + bool hotplug_failed; +}; + +struct drm_client_offset { + int x; + int y; +}; + +struct drm_mode_rect { + __s32 x1; + __s32 y1; + __s32 x2; + __s32 y2; +}; + +enum acpi_reconfig_event { + ACPI_RECONFIG_DEVICE_ADD = 0, + ACPI_RECONFIG_DEVICE_REMOVE = 1, +}; + +struct ptp_system_timestamp { + struct timespec64 pre_ts; + struct timespec64 post_ts; + clockid_t clockid; +}; + +struct spi_offload_ops; + +struct spi_offload { + struct device *provider_dev; + void *priv; + const struct spi_offload_ops *ops; + u32 xfer_flags; +}; + +struct spi_offload_ops { + int (*trigger_enable)(struct spi_offload *); + void (*trigger_disable)(struct spi_offload *); + struct dma_chan * (*tx_stream_request_dma_chan)(struct spi_offload *); + struct dma_chan * (*rx_stream_request_dma_chan)(struct spi_offload *); +}; + +typedef void (*spi_res_release_t)(struct spi_controller *, struct spi_message *, void *); + +struct spi_res { + struct list_head entry; + spi_res_release_t release; + long long unsigned int data[0]; +}; + +struct spi_replaced_transfers; + +typedef void (*spi_replaced_release_t)(struct spi_controller *, struct spi_message *, struct spi_replaced_transfers *); + +struct spi_replaced_transfers { + spi_replaced_release_t release; + void *extradata; + struct list_head replaced_transfers; + struct list_head *replaced_after; + size_t inserted; + struct spi_transfer inserted_transfers[0]; +}; + +struct spi_board_info { + char modalias[32]; + const void *platform_data; + const struct software_node *swnode; + void *controller_data; + int irq; + u32 max_speed_hz; + u16 bus_num; + u16 chip_select; + u32 mode; +}; + +enum spi_mem_data_dir { + SPI_MEM_NO_DATA = 0, + SPI_MEM_DATA_IN = 1, + SPI_MEM_DATA_OUT = 2, +}; + +struct spi_mem_op { + struct { + u8 nbytes; + u8 buswidth; + u8 dtr: 1; + u8 __pad: 7; + u16 opcode; + } cmd; + struct { + u8 nbytes; + u8 buswidth; + u8 dtr: 1; + u8 __pad: 7; + u64 val; + } addr; + struct { + u8 nbytes; + u8 buswidth; + u8 dtr: 1; + u8 __pad: 7; + } dummy; + struct { + u8 buswidth; + u8 dtr: 1; + u8 ecc: 1; + u8 swap16: 1; + u8 __pad: 5; + enum spi_mem_data_dir dir; + unsigned int nbytes; + union { + void *in; + const void *out; + } buf; + } data; + unsigned int max_freq; +}; + +struct spi_mem_dirmap_info { + struct spi_mem_op op_tmpl; + u64 offset; + u64 length; +}; + +struct spi_mem_dirmap_desc { + struct spi_mem *mem; + struct spi_mem_dirmap_info info; + unsigned int nodirmap; + void *priv; +}; + +struct spi_mem { + struct spi_device *spi; + void *drvpriv; + const char *name; +}; + +struct trace_event_raw_spi_controller { + struct trace_entry ent; + int bus_num; + char __data[0]; +}; + +struct trace_event_raw_spi_setup { + struct trace_entry ent; + int bus_num; + int chip_select; + long unsigned int mode; + unsigned int bits_per_word; + unsigned int max_speed_hz; + int status; + char __data[0]; +}; + +struct trace_event_raw_spi_set_cs { + struct trace_entry ent; + int bus_num; + int chip_select; + long unsigned int mode; + bool enable; + char __data[0]; +}; + +struct trace_event_raw_spi_message { + struct trace_entry ent; + int bus_num; + int chip_select; + struct spi_message *msg; + char __data[0]; +}; + +struct trace_event_raw_spi_message_done { + struct trace_entry ent; + int bus_num; + int chip_select; + struct spi_message *msg; + unsigned int frame; + unsigned int actual; + char __data[0]; +}; + +struct trace_event_raw_spi_transfer { + struct trace_entry ent; + int bus_num; + int chip_select; + struct spi_transfer *xfer; + int len; + u32 __data_loc_rx_buf; + u32 __data_loc_tx_buf; + char __data[0]; +}; + +struct trace_event_data_offsets_spi_controller {}; + +struct trace_event_data_offsets_spi_setup {}; + +struct trace_event_data_offsets_spi_set_cs {}; + +struct trace_event_data_offsets_spi_message {}; + +struct trace_event_data_offsets_spi_message_done {}; + +struct trace_event_data_offsets_spi_transfer { + u32 rx_buf; + const void *rx_buf_ptr_; + u32 tx_buf; + const void *tx_buf_ptr_; +}; + +typedef void (*btf_trace_spi_controller_idle)(void *, struct spi_controller *); + +typedef void (*btf_trace_spi_controller_busy)(void *, struct spi_controller *); + +typedef void (*btf_trace_spi_setup)(void *, struct spi_device *, int); + +typedef void (*btf_trace_spi_set_cs)(void *, struct spi_device *, bool); + +typedef void (*btf_trace_spi_message_submit)(void *, struct spi_message *); + +typedef void (*btf_trace_spi_message_start)(void *, struct spi_message *); + +typedef void (*btf_trace_spi_message_done)(void *, struct spi_message *); + +typedef void (*btf_trace_spi_transfer_start)(void *, struct spi_message *, struct spi_transfer *); + +typedef void (*btf_trace_spi_transfer_stop)(void *, struct spi_message *, struct spi_transfer *); + +struct boardinfo { + struct list_head list; + struct spi_board_info board_info; +}; + +struct acpi_spi_lookup { + struct spi_controller *ctlr; + u32 max_speed_hz; + u32 mode; + int irq; + u8 bits_per_word; + u8 chip_select; + int n; + int index; +}; + +struct swmii_regs { + u16 bmsr; + u16 lpa; + u16 lpagb; + u16 estat; +}; + +enum { + SWMII_SPEED_10 = 0, + SWMII_SPEED_100 = 1, + SWMII_SPEED_1000 = 2, + SWMII_DUPLEX_HALF = 0, + SWMII_DUPLEX_FULL = 1, +}; + +enum { + ETHTOOL_A_CABLE_RESULT_CODE_UNSPEC = 0, + ETHTOOL_A_CABLE_RESULT_CODE_OK = 1, + ETHTOOL_A_CABLE_RESULT_CODE_OPEN = 2, + ETHTOOL_A_CABLE_RESULT_CODE_SAME_SHORT = 3, + ETHTOOL_A_CABLE_RESULT_CODE_CROSS_SHORT = 4, + ETHTOOL_A_CABLE_RESULT_CODE_IMPEDANCE_MISMATCH = 5, + ETHTOOL_A_CABLE_RESULT_CODE_NOISE = 6, + ETHTOOL_A_CABLE_RESULT_CODE_RESOLUTION_NOT_POSSIBLE = 7, +}; + +struct mdiobus_devres { + struct mii_bus *mii; +}; + +enum ethtool_c33_pse_ext_state { + ETHTOOL_C33_PSE_EXT_STATE_ERROR_CONDITION = 1, + ETHTOOL_C33_PSE_EXT_STATE_MR_MPS_VALID = 2, + ETHTOOL_C33_PSE_EXT_STATE_MR_PSE_ENABLE = 3, + ETHTOOL_C33_PSE_EXT_STATE_OPTION_DETECT_TED = 4, + ETHTOOL_C33_PSE_EXT_STATE_OPTION_VPORT_LIM = 5, + ETHTOOL_C33_PSE_EXT_STATE_OVLD_DETECTED = 6, + ETHTOOL_C33_PSE_EXT_STATE_PD_DLL_POWER_TYPE = 7, + ETHTOOL_C33_PSE_EXT_STATE_POWER_NOT_AVAILABLE = 8, + ETHTOOL_C33_PSE_EXT_STATE_SHORT_DETECTED = 9, +}; + +enum ethtool_c33_pse_ext_substate_error_condition { + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_NON_EXISTING_PORT = 1, + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_UNDEFINED_PORT = 2, + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_INTERNAL_HW_FAULT = 3, + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_COMM_ERROR_AFTER_FORCE_ON = 4, + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_UNKNOWN_PORT_STATUS = 5, + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_HOST_CRASH_TURN_OFF = 6, + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_HOST_CRASH_FORCE_SHUTDOWN = 7, + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_CONFIG_CHANGE = 8, + ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_DETECTED_OVER_TEMP = 9, +}; + +enum ethtool_c33_pse_ext_substate_mr_pse_enable { + ETHTOOL_C33_PSE_EXT_SUBSTATE_MR_PSE_ENABLE_DISABLE_PIN_ACTIVE = 1, +}; + +enum ethtool_c33_pse_ext_substate_option_detect_ted { + ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_DETECT_TED_DET_IN_PROCESS = 1, + ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_DETECT_TED_CONNECTION_CHECK_ERROR = 2, +}; + +enum ethtool_c33_pse_ext_substate_option_vport_lim { + ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_VPORT_LIM_HIGH_VOLTAGE = 1, + ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_VPORT_LIM_LOW_VOLTAGE = 2, + ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_VPORT_LIM_VOLTAGE_INJECTION = 3, +}; + +enum ethtool_c33_pse_ext_substate_ovld_detected { + ETHTOOL_C33_PSE_EXT_SUBSTATE_OVLD_DETECTED_OVERLOAD = 1, +}; + +enum ethtool_c33_pse_ext_substate_power_not_available { + ETHTOOL_C33_PSE_EXT_SUBSTATE_POWER_NOT_AVAILABLE_BUDGET_EXCEEDED = 1, + ETHTOOL_C33_PSE_EXT_SUBSTATE_POWER_NOT_AVAILABLE_PORT_PW_LIMIT_EXCEEDS_CONTROLLER_BUDGET = 2, + ETHTOOL_C33_PSE_EXT_SUBSTATE_POWER_NOT_AVAILABLE_PD_REQUEST_EXCEEDS_PORT_LIMIT = 3, + ETHTOOL_C33_PSE_EXT_SUBSTATE_POWER_NOT_AVAILABLE_HW_PW_LIMIT = 4, +}; + +enum ethtool_c33_pse_ext_substate_short_detected { + ETHTOOL_C33_PSE_EXT_SUBSTATE_SHORT_DETECTED_SHORT_CONDITION = 1, +}; + +enum ethtool_pse_types { + ETHTOOL_PSE_UNKNOWN = 1, + ETHTOOL_PSE_PODL = 2, + ETHTOOL_PSE_C33 = 4, +}; + +enum ethtool_c33_pse_admin_state { + ETHTOOL_C33_PSE_ADMIN_STATE_UNKNOWN = 1, + ETHTOOL_C33_PSE_ADMIN_STATE_DISABLED = 2, + ETHTOOL_C33_PSE_ADMIN_STATE_ENABLED = 3, +}; + +enum ethtool_c33_pse_pw_d_status { + ETHTOOL_C33_PSE_PW_D_STATUS_UNKNOWN = 1, + ETHTOOL_C33_PSE_PW_D_STATUS_DISABLED = 2, + ETHTOOL_C33_PSE_PW_D_STATUS_SEARCHING = 3, + ETHTOOL_C33_PSE_PW_D_STATUS_DELIVERING = 4, + ETHTOOL_C33_PSE_PW_D_STATUS_TEST = 5, + ETHTOOL_C33_PSE_PW_D_STATUS_FAULT = 6, + ETHTOOL_C33_PSE_PW_D_STATUS_OTHERFAULT = 7, +}; + +enum ethtool_podl_pse_admin_state { + ETHTOOL_PODL_PSE_ADMIN_STATE_UNKNOWN = 1, + ETHTOOL_PODL_PSE_ADMIN_STATE_DISABLED = 2, + ETHTOOL_PODL_PSE_ADMIN_STATE_ENABLED = 3, +}; + +enum ethtool_podl_pse_pw_d_status { + ETHTOOL_PODL_PSE_PW_D_STATUS_UNKNOWN = 1, + ETHTOOL_PODL_PSE_PW_D_STATUS_DISABLED = 2, + ETHTOOL_PODL_PSE_PW_D_STATUS_SEARCHING = 3, + ETHTOOL_PODL_PSE_PW_D_STATUS_DELIVERING = 4, + ETHTOOL_PODL_PSE_PW_D_STATUS_SLEEP = 5, + ETHTOOL_PODL_PSE_PW_D_STATUS_IDLE = 6, + ETHTOOL_PODL_PSE_PW_D_STATUS_ERROR = 7, +}; + +enum ethtool_pse_event { + ETHTOOL_PSE_EVENT_OVER_CURRENT = 1, + ETHTOOL_PSE_EVENT_OVER_TEMP = 2, + ETHTOOL_C33_PSE_EVENT_DETECTION = 4, + ETHTOOL_C33_PSE_EVENT_CLASSIFICATION = 8, + ETHTOOL_C33_PSE_EVENT_DISCONNECTION = 16, + ETHTOOL_PSE_EVENT_OVER_BUDGET = 32, + ETHTOOL_PSE_EVENT_SW_PW_CONTROL_ERROR = 64, +}; + +struct pse_controller_dev; + +struct pse_control { + struct pse_controller_dev *pcdev; + struct regulator *ps; + struct list_head list; + unsigned int id; + struct kref refcnt; + struct phy_device *attached_phydev; +}; + +struct ethtool_c33_pse_ext_state_info { + enum ethtool_c33_pse_ext_state c33_pse_ext_state; + union { + enum ethtool_c33_pse_ext_substate_error_condition error_condition; + enum ethtool_c33_pse_ext_substate_mr_pse_enable mr_pse_enable; + enum ethtool_c33_pse_ext_substate_option_detect_ted option_detect_ted; + enum ethtool_c33_pse_ext_substate_option_vport_lim option_vport_lim; + enum ethtool_c33_pse_ext_substate_ovld_detected ovld_detected; + enum ethtool_c33_pse_ext_substate_power_not_available power_not_available; + enum ethtool_c33_pse_ext_substate_short_detected short_detected; + u32 __c33_pse_ext_substate; + }; +}; + +struct ethtool_c33_pse_pw_limit_range { + u32 min; + u32 max; +}; + +struct pse_irq_desc { + const char *name; + int (*map_event)(int, struct pse_controller_dev *, long unsigned int *, long unsigned int *); +}; + +struct pse_ntf { + int id; + long unsigned int notifs; +}; + +struct pse_controller_ops; + +struct pse_pi; + +struct pse_controller_dev { + const struct pse_controller_ops *ops; + struct module *owner; + struct list_head list; + struct list_head pse_control_head; + struct device *dev; + int of_pse_n_cells; + unsigned int nr_lines; + struct mutex lock; + enum ethtool_pse_types types; + struct pse_pi *pi; + bool no_of_pse_pi; + int irq; + unsigned int pis_prio_max; + u32 supp_budget_eval_strategies; + struct work_struct ntf_work; + struct { + union { + struct __kfifo kfifo; + struct pse_ntf *type; + const struct pse_ntf *const_type; + char (*rectype)[0]; + struct pse_ntf *ptr; + const struct pse_ntf *ptr_const; + }; + struct pse_ntf buf[0]; + } ntf_fifo; + spinlock_t ntf_fifo_lock; +}; + +struct pse_control_config { + enum ethtool_podl_pse_admin_state podl_admin_control; + enum ethtool_c33_pse_admin_state c33_admin_control; +}; + +struct pse_admin_state { + enum ethtool_podl_pse_admin_state podl_admin_state; + enum ethtool_c33_pse_admin_state c33_admin_state; +}; + +struct pse_pw_status { + enum ethtool_podl_pse_pw_d_status podl_pw_status; + enum ethtool_c33_pse_pw_d_status c33_pw_status; +}; + +struct pse_ext_state_info { + struct ethtool_c33_pse_ext_state_info c33_ext_state_info; +}; + +struct pse_pw_limit_ranges { + struct ethtool_c33_pse_pw_limit_range *c33_pw_limit_ranges; +}; + +struct ethtool_pse_control_status { + u32 pw_d_id; + enum ethtool_podl_pse_admin_state podl_admin_state; + enum ethtool_podl_pse_pw_d_status podl_pw_status; + enum ethtool_c33_pse_admin_state c33_admin_state; + enum ethtool_c33_pse_pw_d_status c33_pw_status; + u32 c33_pw_class; + u32 c33_actual_pw; + struct ethtool_c33_pse_ext_state_info c33_ext_state_info; + u32 c33_avail_pw_limit; + struct ethtool_c33_pse_pw_limit_range *c33_pw_limit_ranges; + u32 c33_pw_limit_nb_ranges; + u32 prio_max; + u32 prio; +}; + +struct pse_controller_ops { + int (*setup_pi_matrix)(struct pse_controller_dev *); + int (*pi_get_admin_state)(struct pse_controller_dev *, int, struct pse_admin_state *); + int (*pi_get_pw_status)(struct pse_controller_dev *, int, struct pse_pw_status *); + int (*pi_get_ext_state)(struct pse_controller_dev *, int, struct pse_ext_state_info *); + int (*pi_get_pw_class)(struct pse_controller_dev *, int); + int (*pi_get_actual_pw)(struct pse_controller_dev *, int); + int (*pi_enable)(struct pse_controller_dev *, int); + int (*pi_disable)(struct pse_controller_dev *, int); + int (*pi_get_voltage)(struct pse_controller_dev *, int); + int (*pi_get_pw_limit)(struct pse_controller_dev *, int); + int (*pi_set_pw_limit)(struct pse_controller_dev *, int, int); + int (*pi_get_pw_limit_ranges)(struct pse_controller_dev *, int, struct pse_pw_limit_ranges *); + int (*pi_get_prio)(struct pse_controller_dev *, int); + int (*pi_set_prio)(struct pse_controller_dev *, int, unsigned int); + int (*pi_get_pw_req)(struct pse_controller_dev *, int); +}; + +enum pse_pi_pairset_pinout { + ALTERNATIVE_A = 0, + ALTERNATIVE_B = 1, +}; + +struct pse_pi_pairset { + enum pse_pi_pairset_pinout pinout; + struct device_node *np; +}; + +struct pse_power_domain; + +struct pse_pi { + struct pse_pi_pairset pairset[2]; + struct device_node *np; + struct regulator_dev *rdev; + bool admin_state_enabled; + struct pse_power_domain *pw_d; + int prio; + bool isr_pd_detected; + int pw_allocated_mW; +}; + +struct pse_power_domain { + int id; + struct regulator *supply; + struct kref refcnt; + u32 budget_eval_strategy; +}; + +enum pse_budget_eval_strategies { + PSE_BUDGET_EVAL_STRAT_DISABLED = 1, + PSE_BUDGET_EVAL_STRAT_STATIC = 2, + PSE_BUDGET_EVAL_STRAT_DYNAMIC = 4, +}; + +struct pse_irq { + struct pse_controller_dev *pcdev; + struct pse_irq_desc desc; + long unsigned int *notifs; +}; + +enum ifla_vxlan_df { + VXLAN_DF_UNSET = 0, + VXLAN_DF_SET = 1, + VXLAN_DF_INHERIT = 2, + __VXLAN_DF_END = 3, + VXLAN_DF_MAX = 2, +}; + +enum ifla_vxlan_label_policy { + VXLAN_LABEL_FIXED = 0, + VXLAN_LABEL_INHERIT = 1, + __VXLAN_LABEL_END = 2, + VXLAN_LABEL_MAX = 1, +}; + +struct vxlanhdr { + __be32 vx_flags; + __be32 vx_vni; +}; + +struct vxlan_sock { + struct hlist_node hlist; + struct socket *sock; + struct hlist_head vni_list[1024]; + refcount_t refcnt; + u32 flags; +}; + +union vxlan_addr { + struct sockaddr_in sin; + struct sockaddr_in6 sin6; + struct sockaddr sa; +}; + +struct vxlan_rdst { + union vxlan_addr remote_ip; + __be16 remote_port; + u8 offloaded: 1; + __be32 remote_vni; + u32 remote_ifindex; + struct net_device *remote_dev; + struct list_head list; + struct callback_head rcu; + struct dst_cache dst_cache; +}; + +struct vxlan_config { + union vxlan_addr remote_ip; + union vxlan_addr saddr; + __be32 vni; + int remote_ifindex; + int mtu; + __be16 dst_port; + u16 port_min; + u16 port_max; + u8 tos; + u8 ttl; + __be32 label; + enum ifla_vxlan_label_policy label_policy; + u32 flags; + long unsigned int age_interval; + unsigned int addrmax; + bool no_share; + enum ifla_vxlan_df df; + struct vxlanhdr reserved_bits; +}; + +struct vxlan_vni_stats { + u64 rx_packets; + u64 rx_bytes; + u64 rx_drops; + u64 rx_errors; + u64 tx_packets; + u64 tx_bytes; + u64 tx_drops; + u64 tx_errors; +}; + +struct vxlan_vni_stats_pcpu { + struct vxlan_vni_stats stats; + struct u64_stats_sync syncp; +}; + +struct vxlan_dev; + +struct vxlan_dev_node { + struct hlist_node hlist; + struct vxlan_dev *vxlan; +}; + +struct vxlan_vni_group; + +struct vxlan_dev { + struct vxlan_dev_node hlist4; + struct vxlan_dev_node hlist6; + struct list_head next; + struct vxlan_sock *vn4_sock; + struct vxlan_sock *vn6_sock; + struct net_device *dev; + struct net *net; + struct vxlan_rdst default_dst; + struct ip_tunnel_fan fan; + struct timer_list age_timer; + spinlock_t hash_lock; + unsigned int addrcnt; + struct gro_cells gro_cells; + struct vxlan_config cfg; + struct vxlan_vni_group *vnigrp; + struct rhashtable fdb_hash_tbl; + struct rhashtable mdb_tbl; + struct hlist_head fdb_list; + struct hlist_head mdb_list; + unsigned int mdb_seq; +}; + +struct vxlan_vni_node { + struct rhash_head vnode; + struct vxlan_dev_node hlist4; + struct vxlan_dev_node hlist6; + struct list_head vlist; + __be32 vni; + union vxlan_addr remote_ip; + struct vxlan_vni_stats_pcpu *stats; + struct callback_head rcu; +}; + +struct vxlan_vni_group { + struct rhashtable vni_hash; + struct list_head vni_list; + u32 num_vnis; +}; + +struct vxlan_net { + struct list_head vxlan_list; + struct hlist_head sock_list[256]; + struct notifier_block nexthop_notifier_block; +}; + +struct tunnel_msg { + __u8 family; + __u8 flags; + __u16 reserved2; + __u32 ifindex; +}; + +enum { + VNIFILTER_ENTRY_STATS_UNSPEC = 0, + VNIFILTER_ENTRY_STATS_RX_BYTES = 1, + VNIFILTER_ENTRY_STATS_RX_PKTS = 2, + VNIFILTER_ENTRY_STATS_RX_DROPS = 3, + VNIFILTER_ENTRY_STATS_RX_ERRORS = 4, + VNIFILTER_ENTRY_STATS_TX_BYTES = 5, + VNIFILTER_ENTRY_STATS_TX_PKTS = 6, + VNIFILTER_ENTRY_STATS_TX_DROPS = 7, + VNIFILTER_ENTRY_STATS_TX_ERRORS = 8, + VNIFILTER_ENTRY_STATS_PAD = 9, + __VNIFILTER_ENTRY_STATS_MAX = 10, +}; + +enum { + VXLAN_VNIFILTER_ENTRY_UNSPEC = 0, + VXLAN_VNIFILTER_ENTRY_START = 1, + VXLAN_VNIFILTER_ENTRY_END = 2, + VXLAN_VNIFILTER_ENTRY_GROUP = 3, + VXLAN_VNIFILTER_ENTRY_GROUP6 = 4, + VXLAN_VNIFILTER_ENTRY_STATS = 5, + __VXLAN_VNIFILTER_ENTRY_MAX = 6, +}; + +enum { + VXLAN_VNIFILTER_UNSPEC = 0, + VXLAN_VNIFILTER_ENTRY = 1, + __VXLAN_VNIFILTER_MAX = 2, +}; + +enum { + VXLAN_VNI_STATS_RX = 0, + VXLAN_VNI_STATS_RX_DROPS = 1, + VXLAN_VNI_STATS_RX_ERRORS = 2, + VXLAN_VNI_STATS_TX = 3, + VXLAN_VNI_STATS_TX_DROPS = 4, + VXLAN_VNI_STATS_TX_ERRORS = 5, +}; + +enum { + NET_SHAPER_A_CAPS_IFINDEX = 1, + NET_SHAPER_A_CAPS_SCOPE = 2, + NET_SHAPER_A_CAPS_SUPPORT_METRIC_BPS = 3, + NET_SHAPER_A_CAPS_SUPPORT_METRIC_PPS = 4, + NET_SHAPER_A_CAPS_SUPPORT_NESTING = 5, + NET_SHAPER_A_CAPS_SUPPORT_BW_MIN = 6, + NET_SHAPER_A_CAPS_SUPPORT_BW_MAX = 7, + NET_SHAPER_A_CAPS_SUPPORT_BURST = 8, + NET_SHAPER_A_CAPS_SUPPORT_PRIORITY = 9, + NET_SHAPER_A_CAPS_SUPPORT_WEIGHT = 10, + __NET_SHAPER_A_CAPS_MAX = 11, + NET_SHAPER_A_CAPS_MAX = 10, +}; + +enum gdma_work_request_flags { + GDMA_WR_NONE = 0, + GDMA_WR_OOB_IN_SGL = 1, + GDMA_WR_PAD_BY_SGE0 = 2, +}; + +enum gdma_eqe_type { + GDMA_EQE_COMPLETION = 3, + GDMA_EQE_TEST_EVENT = 64, + GDMA_EQE_HWC_INIT_EQ_ID_DB = 129, + GDMA_EQE_HWC_INIT_DATA = 130, + GDMA_EQE_HWC_INIT_DONE = 131, + GDMA_EQE_HWC_FPGA_RECONFIG = 132, + GDMA_EQE_HWC_SOC_RECONFIG_DATA = 133, + GDMA_EQE_HWC_SOC_SERVICE = 134, + GDMA_EQE_HWC_RESET_REQUEST = 135, + GDMA_EQE_RNIC_QP_FATAL = 176, +}; + +enum { + GDMA_DEVICE_NONE = 0, + GDMA_DEVICE_HWC = 1, + GDMA_DEVICE_MANA = 2, + GDMA_DEVICE_MANA_IB = 3, +}; + +enum gdma_service_type { + GDMA_SERVICE_TYPE_NONE = 0, + GDMA_SERVICE_TYPE_RDMA_SUSPEND = 1, + GDMA_SERVICE_TYPE_RDMA_RESUME = 2, +}; + +struct mana_service_work { + struct work_struct work; + struct gdma_dev *gdma_dev; + enum gdma_service_type event; +}; + +struct gdma_msg_hdr { + u32 hdr_type; + u32 msg_type; + u16 msg_version; + u16 hwc_msg_id; + u32 msg_size; +}; + +struct gdma_req_hdr { + struct gdma_msg_hdr req; + struct gdma_msg_hdr resp; + struct gdma_dev_id dev_id; + u32 activity_id; +}; + +struct gdma_resp_hdr { + struct gdma_msg_hdr response; + struct gdma_dev_id dev_id; + u32 activity_id; + u32 status; + u32 reserved; +}; + +struct gdma_queue_spec { + enum gdma_queue_type type; + bool monitor_avl_buf; + unsigned int queue_size; + union { + struct { + gdma_eq_callback *callback; + void *context; + long unsigned int log2_throttle_limit; + unsigned int msix_index; + } eq; + struct { + gdma_cq_callback *callback; + void *context; + struct gdma_queue *parent_eq; + } cq; + }; +}; + +enum gdma_context_flags { + GC_PROBE_SUCCEEDED = 0, + GC_IN_SERVICE = 1, +}; + +struct mana_skb_head { + dma_addr_t dma_handle[19]; + u32 size[19]; +}; + +enum mana_tx_pkt_format { + MANA_SHORT_PKT_FMT = 0, + MANA_LONG_PKT_FMT = 1, +}; + +struct mana_tx_short_oob { + u32 pkt_fmt: 2; + u32 is_outer_ipv4: 1; + u32 is_outer_ipv6: 1; + u32 comp_iphdr_csum: 1; + u32 comp_tcp_csum: 1; + u32 comp_udp_csum: 1; + u32 supress_txcqe_gen: 1; + u32 vcq_num: 24; + u32 trans_off: 10; + u32 vsq_frame: 14; + u32 short_vp_offset: 8; +}; + +struct mana_tx_long_oob { + u32 is_encap: 1; + u32 inner_is_ipv6: 1; + u32 inner_tcp_opt: 1; + u32 inject_vlan_pri_tag: 1; + u32 reserved1: 12; + u32 pcp: 3; + u32 dei: 1; + u32 vlan_id: 12; + u32 inner_frame_offset: 10; + u32 inner_ip_rel_offset: 6; + u32 long_vp_offset: 12; + u32 reserved2: 4; + u32 reserved3; + u32 reserved4; +}; + +struct mana_tx_oob { + struct mana_tx_short_oob s_oob; + struct mana_tx_long_oob l_oob; +}; + +enum mana_cqe_type { + CQE_INVALID = 0, + CQE_RX_OKAY = 1, + CQE_RX_COALESCED_4 = 2, + CQE_RX_OBJECT_FENCE = 3, + CQE_RX_TRUNCATED = 4, + CQE_TX_OKAY = 32, + CQE_TX_SA_DROP = 33, + CQE_TX_MTU_DROP = 34, + CQE_TX_INVALID_OOB = 35, + CQE_TX_INVALID_ETH_TYPE = 36, + CQE_TX_HDR_PROCESSING_ERROR = 37, + CQE_TX_VF_DISABLED = 38, + CQE_TX_VPORT_IDX_OUT_OF_RANGE = 39, + CQE_TX_VPORT_DISABLED = 40, + CQE_TX_VLAN_TAGGING_VIOLATION = 41, +}; + +struct mana_cqe_header { + u32 cqe_type: 6; + u32 client_type: 2; + u32 vendor_err: 24; +}; + +struct mana_rxcomp_perpkt_info { + u32 pkt_len: 16; + u32 reserved1: 16; + u32 reserved2; + u32 pkt_hash; +}; + +struct mana_rxcomp_oob { + struct mana_cqe_header cqe_hdr; + u32 rx_vlan_id: 12; + u32 rx_vlantag_present: 1; + u32 rx_outer_iphdr_csum_succeed: 1; + u32 rx_outer_iphdr_csum_fail: 1; + u32 reserved1: 1; + u32 rx_hashtype: 9; + u32 rx_iphdr_csum_succeed: 1; + u32 rx_iphdr_csum_fail: 1; + u32 rx_tcp_csum_succeed: 1; + u32 rx_tcp_csum_fail: 1; + u32 rx_udp_csum_succeed: 1; + u32 rx_udp_csum_fail: 1; + u32 reserved2: 1; + struct mana_rxcomp_perpkt_info ppi[4]; + u32 rx_wqe_offset; +}; + +struct mana_tx_comp_oob { + struct mana_cqe_header cqe_hdr; + u32 tx_data_offset; + u32 tx_sgl_offset: 5; + u32 tx_wqe_offset: 27; + u32 reserved[12]; +}; + +struct mana_obj_spec { + u32 queue_index; + u64 gdma_region; + u32 queue_size; + u32 attached_eq; + u32 modr_ctx_id; +}; + +enum mana_command_code { + MANA_QUERY_DEV_CONFIG = 131073, + MANA_QUERY_GF_STAT = 131074, + MANA_CONFIG_VPORT_TX = 131075, + MANA_CREATE_WQ_OBJ = 131076, + MANA_DESTROY_WQ_OBJ = 131077, + MANA_FENCE_RQ = 131078, + MANA_CONFIG_VPORT_RX = 131079, + MANA_QUERY_VPORT_CONFIG = 131080, + MANA_QUERY_LINK_CONFIG = 131082, + MANA_SET_BW_CLAMP = 131083, + MANA_QUERY_PHY_STAT = 131084, + MANA_REGISTER_FILTER = 163840, + MANA_DEREGISTER_FILTER = 163841, + MANA_REGISTER_HW_PORT = 163843, + MANA_DEREGISTER_HW_PORT = 163844, +}; + +struct mana_query_link_config_req { + struct gdma_req_hdr hdr; + mana_handle_t vport; +}; + +struct mana_query_link_config_resp { + struct gdma_resp_hdr hdr; + u32 qos_speed_mbps; + u8 qos_unconfigured; + u8 reserved1[3]; + u32 link_speed_mbps; + u8 reserved2[4]; +}; + +struct mana_set_bw_clamp_req { + struct gdma_req_hdr hdr; + mana_handle_t vport; + enum TRI_STATE enable_clamping; + u32 link_speed_mbps; +}; + +struct mana_set_bw_clamp_resp { + struct gdma_resp_hdr hdr; + u8 qos_unconfigured; + u8 reserved[7]; +}; + +struct mana_query_device_cfg_req { + struct gdma_req_hdr hdr; + u64 mn_drv_cap_flags1; + u64 mn_drv_cap_flags2; + u64 mn_drv_cap_flags3; + u64 mn_drv_cap_flags4; + u32 proto_major_ver; + u32 proto_minor_ver; + u32 proto_micro_ver; + u32 reserved; +}; + +struct mana_query_device_cfg_resp { + struct gdma_resp_hdr hdr; + u64 pf_cap_flags1; + u64 pf_cap_flags2; + u64 pf_cap_flags3; + u64 pf_cap_flags4; + u16 max_num_vports; + u8 bm_hostmode; + u8 reserved; + u32 max_num_eqs; + u16 adapter_mtu; + u16 reserved2; + u32 reserved3; +}; + +struct mana_query_vport_cfg_req { + struct gdma_req_hdr hdr; + u32 vport_index; +}; + +struct mana_query_vport_cfg_resp { + struct gdma_resp_hdr hdr; + u32 max_num_sq; + u32 max_num_rq; + u32 num_indirection_ent; + u32 reserved1; + u8 mac_addr[6]; + u8 reserved2[2]; + mana_handle_t vport; +}; + +struct mana_config_vport_req { + struct gdma_req_hdr hdr; + mana_handle_t vport; + u32 pdid; + u32 doorbell_pageid; +}; + +struct mana_config_vport_resp { + struct gdma_resp_hdr hdr; + u16 tx_vport_offset; + u8 short_form_allowed; + u8 reserved; +}; + +struct mana_create_wqobj_req { + struct gdma_req_hdr hdr; + mana_handle_t vport; + u32 wq_type; + u32 reserved; + u64 wq_gdma_region; + u64 cq_gdma_region; + u32 wq_size; + u32 cq_size; + u32 cq_moderation_ctx_id; + u32 cq_parent_qid; +}; + +struct mana_create_wqobj_resp { + struct gdma_resp_hdr hdr; + u32 wq_id; + u32 cq_id; + mana_handle_t wq_obj; +}; + +struct mana_destroy_wqobj_req { + struct gdma_req_hdr hdr; + u32 wq_type; + u32 reserved; + mana_handle_t wq_obj_handle; +}; + +struct mana_destroy_wqobj_resp { + struct gdma_resp_hdr hdr; +}; + +struct mana_fence_rq_req { + struct gdma_req_hdr hdr; + mana_handle_t wq_obj_handle; +}; + +struct mana_fence_rq_resp { + struct gdma_resp_hdr hdr; +}; + +struct mana_query_gf_stat_req { + struct gdma_req_hdr hdr; + u64 req_stats; +}; + +struct mana_query_gf_stat_resp { + struct gdma_resp_hdr hdr; + u64 reported_stats; + u64 rx_discards_nowqe; + u64 rx_err_vport_disabled; + u64 hc_rx_bytes; + u64 hc_rx_ucast_pkts; + u64 hc_rx_ucast_bytes; + u64 hc_rx_bcast_pkts; + u64 hc_rx_bcast_bytes; + u64 hc_rx_mcast_pkts; + u64 hc_rx_mcast_bytes; + u64 tx_err_gf_disabled; + u64 tx_err_vport_disabled; + u64 tx_err_inval_vport_offset_pkt; + u64 tx_err_vlan_enforcement; + u64 tx_err_ethtype_enforcement; + u64 tx_err_SA_enforcement; + u64 tx_err_SQPDID_enforcement; + u64 tx_err_CQPDID_enforcement; + u64 tx_err_mtu_violation; + u64 tx_err_inval_oob; + u64 hc_tx_bytes; + u64 hc_tx_ucast_pkts; + u64 hc_tx_ucast_bytes; + u64 hc_tx_bcast_pkts; + u64 hc_tx_bcast_bytes; + u64 hc_tx_mcast_pkts; + u64 hc_tx_mcast_bytes; + u64 tx_err_gdma; +}; + +struct mana_query_phy_stat_req { + struct gdma_req_hdr hdr; + u64 req_stats; +}; + +struct mana_query_phy_stat_resp { + struct gdma_resp_hdr hdr; + u64 reported_stats; + u64 rx_pkt_drop_phy; + u64 tx_pkt_drop_phy; + u64 rx_pkt_tc0_phy; + u64 tx_pkt_tc0_phy; + u64 rx_pkt_tc1_phy; + u64 tx_pkt_tc1_phy; + u64 rx_pkt_tc2_phy; + u64 tx_pkt_tc2_phy; + u64 rx_pkt_tc3_phy; + u64 tx_pkt_tc3_phy; + u64 rx_pkt_tc4_phy; + u64 tx_pkt_tc4_phy; + u64 rx_pkt_tc5_phy; + u64 tx_pkt_tc5_phy; + u64 rx_pkt_tc6_phy; + u64 tx_pkt_tc6_phy; + u64 rx_pkt_tc7_phy; + u64 tx_pkt_tc7_phy; + u64 rx_byte_tc0_phy; + u64 tx_byte_tc0_phy; + u64 rx_byte_tc1_phy; + u64 tx_byte_tc1_phy; + u64 rx_byte_tc2_phy; + u64 tx_byte_tc2_phy; + u64 rx_byte_tc3_phy; + u64 tx_byte_tc3_phy; + u64 rx_byte_tc4_phy; + u64 tx_byte_tc4_phy; + u64 rx_byte_tc5_phy; + u64 tx_byte_tc5_phy; + u64 rx_byte_tc6_phy; + u64 tx_byte_tc6_phy; + u64 rx_byte_tc7_phy; + u64 tx_byte_tc7_phy; + u64 rx_pause_tc0_phy; + u64 tx_pause_tc0_phy; + u64 rx_pause_tc1_phy; + u64 tx_pause_tc1_phy; + u64 rx_pause_tc2_phy; + u64 tx_pause_tc2_phy; + u64 rx_pause_tc3_phy; + u64 tx_pause_tc3_phy; + u64 rx_pause_tc4_phy; + u64 tx_pause_tc4_phy; + u64 rx_pause_tc5_phy; + u64 tx_pause_tc5_phy; + u64 rx_pause_tc6_phy; + u64 tx_pause_tc6_phy; + u64 rx_pause_tc7_phy; + u64 tx_pause_tc7_phy; +}; + +struct mana_cfg_rx_steer_req_v2 { + struct gdma_req_hdr hdr; + mana_handle_t vport; + u16 num_indir_entries; + u16 indir_tab_offset; + u32 rx_enable; + u32 rss_enable; + u8 update_default_rxobj; + u8 update_hashkey; + u8 update_indir_tab; + u8 reserved; + mana_handle_t default_rxobj; + u8 hashkey[40]; + u8 cqe_coalescing_enable; + u8 reserved2[7]; + mana_handle_t indir_tab[0]; +}; + +struct mana_cfg_rx_steer_resp { + struct gdma_resp_hdr hdr; +}; + +struct mana_register_hw_vport_req { + struct gdma_req_hdr hdr; + u16 attached_gfid; + u8 is_pf_default_vport; + u8 reserved1; + u8 allow_all_ether_types; + u8 reserved2; + u8 reserved3; + u8 reserved4; +}; + +struct mana_register_hw_vport_resp { + struct gdma_resp_hdr hdr; + mana_handle_t hw_vport_handle; +}; + +struct mana_deregister_hw_vport_req { + struct gdma_req_hdr hdr; + mana_handle_t hw_vport_handle; +}; + +struct mana_deregister_hw_vport_resp { + struct gdma_resp_hdr hdr; +}; + +struct mana_register_filter_req { + struct gdma_req_hdr hdr; + mana_handle_t vport; + u8 mac_addr[6]; + u8 reserved1; + u8 reserved2; + u8 reserved3; + u8 reserved4; + u16 reserved5; + u32 reserved6; + u32 reserved7; + u32 reserved8; +}; + +struct mana_register_filter_resp { + struct gdma_resp_hdr hdr; + mana_handle_t filter_handle; +}; + +struct mana_deregister_filter_req { + struct gdma_req_hdr hdr; + mana_handle_t filter_handle; +}; + +struct mana_deregister_filter_resp { + struct gdma_resp_hdr hdr; +}; + +struct mana_tx_package { + struct gdma_wqe_request wqe_req; + struct gdma_sge sgl_array[5]; + struct gdma_sge *sgl_ptr; + struct mana_tx_oob tx_oob; + struct gdma_posted_wqe_info wqe_info; +}; + +struct mana_adev { + struct auxiliary_device adev; + struct gdma_dev *mdev; +}; + +struct cdrom_msf { + __u8 cdmsf_min0; + __u8 cdmsf_sec0; + __u8 cdmsf_frame0; + __u8 cdmsf_min1; + __u8 cdmsf_sec1; + __u8 cdmsf_frame1; +}; + +struct cdrom_volctrl { + __u8 channel0; + __u8 channel1; + __u8 channel2; + __u8 channel3; +}; + +struct cdrom_subchnl { + __u8 cdsc_format; + __u8 cdsc_audiostatus; + __u8 cdsc_adr: 4; + __u8 cdsc_ctrl: 4; + __u8 cdsc_trk; + __u8 cdsc_ind; + union cdrom_addr cdsc_absaddr; + union cdrom_addr cdsc_reladdr; +}; + +struct cdrom_read_audio { + union cdrom_addr addr; + __u8 addr_format; + int nframes; + __u8 *buf; +}; + +struct cdrom_blk { + unsigned int from; + short unsigned int len; +}; + +struct cdrom_timed_media_change_info { + __s64 last_media_change; + __u64 media_flags; +}; + +struct dvd_layer { + __u8 book_version: 4; + __u8 book_type: 4; + __u8 min_rate: 4; + __u8 disc_size: 4; + __u8 layer_type: 4; + __u8 track_path: 1; + __u8 nlayers: 2; + char: 1; + __u8 track_density: 4; + __u8 linear_density: 4; + __u8 bca: 1; + __u32 start_sector; + __u32 end_sector; + __u32 end_sector_l0; +}; + +struct dvd_physical { + __u8 type; + __u8 layer_num; + struct dvd_layer layer[4]; +}; + +struct dvd_copyright { + __u8 type; + __u8 layer_num; + __u8 cpst; + __u8 rmi; +}; + +struct dvd_disckey { + __u8 type; + unsigned int agid: 2; + __u8 value[2048]; +}; + +struct dvd_bca { + __u8 type; + int len; + __u8 value[188]; +}; + +struct dvd_manufact { + __u8 type; + __u8 layer_num; + int len; + __u8 value[2048]; +}; + +typedef union { + __u8 type; + struct dvd_physical physical; + struct dvd_copyright copyright; + struct dvd_disckey disckey; + struct dvd_bca bca; + struct dvd_manufact manufact; +} dvd_struct; + +typedef __u8 dvd_key[5]; + +typedef __u8 dvd_challenge[10]; + +struct dvd_lu_send_agid { + __u8 type; + unsigned int agid: 2; +}; + +struct dvd_host_send_challenge { + __u8 type; + unsigned int agid: 2; + dvd_challenge chal; +}; + +struct dvd_send_key { + __u8 type; + unsigned int agid: 2; + dvd_key key; +}; + +struct dvd_lu_send_challenge { + __u8 type; + unsigned int agid: 2; + dvd_challenge chal; +}; + +struct dvd_lu_send_title_key { + __u8 type; + unsigned int agid: 2; + dvd_key title_key; + int lba; + unsigned int cpm: 1; + unsigned int cp_sec: 1; + unsigned int cgms: 2; +}; + +struct dvd_lu_send_asf { + __u8 type; + unsigned int agid: 2; + unsigned int asf: 1; +}; + +struct dvd_host_send_rpcstate { + __u8 type; + __u8 pdrc; +}; + +struct dvd_lu_send_rpcstate { + __u8 type: 2; + __u8 vra: 3; + __u8 ucca: 3; + __u8 region_mask; + __u8 rpc_scheme; +}; + +typedef union { + __u8 type; + struct dvd_lu_send_agid lsa; + struct dvd_host_send_challenge hsc; + struct dvd_send_key lsk; + struct dvd_lu_send_challenge lsc; + struct dvd_send_key hsk; + struct dvd_lu_send_title_key lstk; + struct dvd_lu_send_asf lsasf; + struct dvd_host_send_rpcstate hrpcs; + struct dvd_lu_send_rpcstate lrpcs; +} dvd_authinfo; + +struct mrw_feature_desc { + __be16 feature_code; + __u8 curr: 1; + __u8 persistent: 1; + __u8 feature_version: 4; + __u8 reserved1: 2; + __u8 add_len; + __u8 write: 1; + __u8 reserved2: 7; + __u8 reserved3; + __u8 reserved4; + __u8 reserved5; +}; + +struct rwrt_feature_desc { + __be16 feature_code; + __u8 curr: 1; + __u8 persistent: 1; + __u8 feature_version: 4; + __u8 reserved1: 2; + __u8 add_len; + __u32 last_lba; + __u32 block_size; + __u16 blocking; + __u8 page_present: 1; + __u8 reserved2: 7; + __u8 reserved3; +}; + +typedef struct { + __be16 disc_information_length; + __u8 disc_status: 2; + __u8 border_status: 2; + __u8 erasable: 1; + __u8 reserved1: 3; + __u8 n_first_track; + __u8 n_sessions_lsb; + __u8 first_track_lsb; + __u8 last_track_lsb; + __u8 mrw_status: 2; + __u8 dbit: 1; + __u8 reserved2: 2; + __u8 uru: 1; + __u8 dbc_v: 1; + __u8 did_v: 1; + __u8 disc_type; + __u8 n_sessions_msb; + __u8 first_track_msb; + __u8 last_track_msb; + __u32 disc_id; + __u32 lead_in; + __u32 lead_out; + __u8 disc_bar_code[8]; + __u8 reserved3; + __u8 n_opc; +} disc_information; + +typedef struct { + __be16 track_information_length; + __u8 track_lsb; + __u8 session_lsb; + __u8 reserved1; + __u8 track_mode: 4; + __u8 copy: 1; + __u8 damage: 1; + __u8 reserved2: 2; + __u8 data_mode: 4; + __u8 fp: 1; + __u8 packet: 1; + __u8 blank: 1; + __u8 rt: 1; + __u8 nwa_v: 1; + __u8 lra_v: 1; + __u8 reserved3: 6; + __be32 track_start; + __be32 next_writable; + __be32 free_blocks; + __be32 fixed_packet_size; + __be32 track_size; + __be32 last_rec_address; +} track_information; + +struct mode_page_header { + __be16 mode_data_length; + __u8 medium_type; + __u8 reserved1; + __u8 reserved2; + __u8 reserved3; + __be16 desc_length; +}; + +typedef struct { + int data; + int audio; + int cdi; + int xa; + long int error; +} tracktype; + +struct cdrom_mechstat_header { + __u8 curslot: 5; + __u8 changer_state: 2; + __u8 fault: 1; + __u8 reserved1: 4; + __u8 door_open: 1; + __u8 mech_state: 3; + __u8 curlba[3]; + __u8 nslots; + __u16 slot_tablelen; +}; + +struct cdrom_slot { + __u8 change: 1; + __u8 reserved1: 6; + __u8 disc_present: 1; + __u8 reserved2[3]; +}; + +struct cdrom_changer_info { + struct cdrom_mechstat_header hdr; + struct cdrom_slot slots[256]; +}; + +struct modesel_head { + __u8 reserved1; + __u8 medium; + __u8 reserved2; + __u8 block_desc_length; + __u8 density; + __u8 number_of_blocks_hi; + __u8 number_of_blocks_med; + __u8 number_of_blocks_lo; + __u8 reserved3; + __u8 block_length_hi; + __u8 block_length_med; + __u8 block_length_lo; +}; + +typedef struct { + __u16 report_key_length; + __u8 reserved1; + __u8 reserved2; + __u8 ucca: 3; + __u8 vra: 3; + __u8 type_code: 2; + __u8 region_mask; + __u8 rpc_scheme; + __u8 reserved3; +} rpc_state_t; + +struct event_header { + __be16 data_len; + __u8 notification_class: 3; + __u8 reserved1: 4; + __u8 nea: 1; + __u8 supp_event_class; +}; + +struct cdrom_sysctl_settings { + char info[1000]; + int autoclose; + int autoeject; + int debug; + int lock; + int check; +}; + +enum cdrom_print_option { + CTL_NAME = 0, + CTL_SPEED = 1, + CTL_SLOTS = 2, + CTL_CAPABILITY = 3, +}; + +struct compat_cdrom_read_audio { + union cdrom_addr addr; + u8 addr_format; + compat_int_t nframes; + compat_caddr_t buf; +}; + +struct usb_dynid { + struct list_head node; + struct usb_device_id id; +}; + +struct usb_device_driver { + const char *name; + bool (*match)(struct usb_device *); + int (*probe)(struct usb_device *); + void (*disconnect)(struct usb_device *); + int (*suspend)(struct usb_device *, pm_message_t); + int (*resume)(struct usb_device *, pm_message_t); + int (*choose_configuration)(struct usb_device *); + const struct attribute_group **dev_groups; + struct device_driver driver; + const struct usb_device_id *id_table; + unsigned int supports_autosuspend: 1; + unsigned int generic_subclass: 1; +}; + +struct usbdevfs_ctrltransfer { + __u8 bRequestType; + __u8 bRequest; + __u16 wValue; + __u16 wIndex; + __u16 wLength; + __u32 timeout; + void *data; +}; + +struct usbdevfs_bulktransfer { + unsigned int ep; + unsigned int len; + unsigned int timeout; + void *data; +}; + +struct usbdevfs_setinterface { + unsigned int interface; + unsigned int altsetting; +}; + +struct usbdevfs_disconnectsignal { + unsigned int signr; + void *context; +}; + +struct usbdevfs_getdriver { + unsigned int interface; + char driver[256]; +}; + +struct usbdevfs_connectinfo { + unsigned int devnum; + unsigned char slow; +}; + +struct usbdevfs_conninfo_ex { + __u32 size; + __u32 busnum; + __u32 devnum; + __u32 speed; + __u8 num_ports; + __u8 ports[7]; +}; + +struct usbdevfs_iso_packet_desc { + unsigned int length; + unsigned int actual_length; + unsigned int status; +}; + +struct usbdevfs_urb { + unsigned char type; + unsigned char endpoint; + int status; + unsigned int flags; + void *buffer; + int buffer_length; + int actual_length; + int start_frame; + union { + int number_of_packets; + unsigned int stream_id; + }; + int error_count; + unsigned int signr; + void *usercontext; + struct usbdevfs_iso_packet_desc iso_frame_desc[0]; +}; + +struct usbdevfs_ioctl { + int ifno; + int ioctl_code; + void *data; +}; + +struct usbdevfs_disconnect_claim { + unsigned int interface; + unsigned int flags; + char driver[256]; +}; + +struct usbdevfs_streams { + unsigned int num_streams; + unsigned int num_eps; + unsigned char eps[0]; +}; + +struct usbdevfs_ctrltransfer32 { + u8 bRequestType; + u8 bRequest; + u16 wValue; + u16 wIndex; + u16 wLength; + u32 timeout; + compat_caddr_t data; +}; + +struct usbdevfs_bulktransfer32 { + compat_uint_t ep; + compat_uint_t len; + compat_uint_t timeout; + compat_caddr_t data; +}; + +struct usbdevfs_disconnectsignal32 { + compat_int_t signr; + compat_caddr_t context; +}; + +struct usbdevfs_urb32 { + unsigned char type; + unsigned char endpoint; + compat_int_t status; + compat_uint_t flags; + compat_caddr_t buffer; + compat_int_t buffer_length; + compat_int_t actual_length; + compat_int_t start_frame; + compat_int_t number_of_packets; + compat_int_t error_count; + compat_uint_t signr; + compat_caddr_t usercontext; + struct usbdevfs_iso_packet_desc iso_frame_desc[0]; +}; + +struct usbdevfs_ioctl32 { + s32 ifno; + s32 ioctl_code; + compat_caddr_t data; +}; + +struct usb_dev_state { + struct list_head list; + struct usb_device *dev; + struct file *file; + spinlock_t lock; + struct list_head async_pending; + struct list_head async_completed; + struct list_head memory_list; + wait_queue_head_t wait; + wait_queue_head_t wait_for_resume; + unsigned int discsignr; + struct pid *disc_pid; + const struct cred *cred; + sigval_t disccontext; + long unsigned int ifclaimed; + u32 disabled_bulk_eps; + long unsigned int interface_allowed_mask; + int not_yet_resumed; + bool suspend_allowed; + bool privileges_dropped; +}; + +struct usb_memory { + struct list_head memlist; + int vma_use_count; + int urb_use_count; + u32 size; + void *mem; + dma_addr_t dma_handle; + long unsigned int vm_start; + struct usb_dev_state *ps; +}; + +struct async { + struct list_head asynclist; + struct usb_dev_state *ps; + struct pid *pid; + const struct cred *cred; + unsigned int signr; + unsigned int ifnum; + void *userbuffer; + void *userurb; + sigval_t userurb_sigval; + struct urb *urb; + struct usb_memory *usbm; + unsigned int mem_usage; + int status; + u8 bulk_addr; + u8 bulk_status; +}; + +enum snoop_when { + SUBMIT = 0, + COMPLETE___2 = 1, +}; + +enum usb_port_connect_type { + USB_PORT_CONNECT_TYPE_UNKNOWN = 0, + USB_PORT_CONNECT_TYPE_HOT_PLUG = 1, + USB_PORT_CONNECT_TYPE_HARD_WIRED = 2, + USB_PORT_NOT_USED = 3, +}; + +struct usb_port_status { + __le16 wPortStatus; + __le16 wPortChange; + __le32 dwExtPortStatus; +}; + +struct usb_hub_status { + __le16 wHubStatus; + __le16 wHubChange; +}; + +struct usb_hub_descriptor { + __u8 bDescLength; + __u8 bDescriptorType; + __u8 bNbrPorts; + __le16 wHubCharacteristics; + __u8 bPwrOn2PwrGood; + __u8 bHubContrCurrent; + union { + struct { + __u8 DeviceRemovable[4]; + __u8 PortPwrCtrlMask[4]; + } hs; + struct { + __u8 bHubHdrDecLat; + __le16 wHubDelay; + __le16 DeviceRemovable; + } __attribute__((packed)) ss; + } u; +} __attribute__((packed)); + +struct typec_connector { + void (*attach)(struct typec_connector *, struct device *); + void (*deattach)(struct typec_connector *, struct device *); +}; + +typedef u32 usb_port_location_t; + +struct usb_port; + +struct usb_hub { + struct device *intfdev; + struct usb_device *hdev; + struct kref kref; + struct urb *urb; + u8 (*buffer)[8]; + union { + struct usb_hub_status hub; + struct usb_port_status port; + } *status; + struct mutex status_mutex; + int error; + int nerrors; + long unsigned int event_bits[1]; + long unsigned int change_bits[1]; + long unsigned int removed_bits[1]; + long unsigned int wakeup_bits[1]; + long unsigned int power_bits[1]; + long unsigned int child_usage_bits[1]; + long unsigned int warm_reset_bits[1]; + struct usb_hub_descriptor *descriptor; + struct usb_tt tt; + unsigned int mA_per_port; + unsigned int wakeup_enabled_descendants; + unsigned int limited_power: 1; + unsigned int quiescing: 1; + unsigned int disconnected: 1; + unsigned int in_reset: 1; + unsigned int quirk_disable_autosuspend: 1; + unsigned int quirk_check_port_auto_suspend: 1; + unsigned int has_indicators: 1; + u8 indicator[31]; + struct delayed_work leds; + struct delayed_work init_work; + struct delayed_work post_resume_work; + struct work_struct events; + spinlock_t irq_urb_lock; + struct timer_list irq_urb_retry; + struct usb_port **ports; + struct list_head onboard_devs; +}; + +struct usb_port { + struct usb_device *child; + struct device dev; + struct usb_dev_state *port_owner; + struct usb_port *peer; + struct typec_connector *connector; + struct dev_pm_qos_request *req; + enum usb_port_connect_type connect_type; + enum usb_device_state state; + struct kernfs_node *state_kn; + usb_port_location_t location; + struct mutex status_lock; + u32 over_current_count; + u8 portnum; + u32 quirks; + unsigned int early_stop: 1; + unsigned int ignore_event: 1; + unsigned int is_superspeed: 1; + unsigned int usb3_lpm_u1_permit: 1; + unsigned int usb3_lpm_u2_permit: 1; +}; + +struct dbc_regs { + __le32 capability; + __le32 doorbell; + __le32 ersts; + __le32 __reserved_0; + __le64 erstba; + __le64 erdp; + __le32 control; + __le32 status; + __le32 portsc; + __le32 __reserved_1; + __le64 dccp; + __le32 devinfo1; + __le32 devinfo2; +}; + +struct dbc_info_context { + __le64 string0; + __le64 manufacturer; + __le64 product; + __le64 serial; + __le32 length; + __le32 __reserved_0[7]; +}; + +struct dbc_str_descs { + char string0[64]; + char manufacturer[64]; + char product[64]; + char serial[64]; +}; + +enum dbc_state { + DS_DISABLED = 0, + DS_INITIALIZED = 1, + DS_ENABLED = 2, + DS_CONNECTED = 3, + DS_CONFIGURED = 4, + DS_MAX = 5, +}; + +struct xhci_dbc; + +struct dbc_ep { + struct xhci_dbc *dbc; + struct list_head list_pending; + struct xhci_ring *ring; + unsigned int direction: 1; + unsigned int halted: 1; +}; + +struct dbc_driver; + +struct xhci_dbc { + spinlock_t lock; + struct device *dev; + struct xhci_hcd *xhci; + struct dbc_regs *regs; + struct xhci_ring *ring_evt; + struct xhci_ring *ring_in; + struct xhci_ring *ring_out; + struct xhci_erst erst; + struct xhci_container_ctx *ctx; + struct dbc_str_descs *string; + dma_addr_t string_dma; + size_t string_size; + u16 idVendor; + u16 idProduct; + u16 bcdDevice; + u8 bInterfaceProtocol; + enum dbc_state state; + struct delayed_work event_work; + unsigned int poll_interval; + long unsigned int xfer_timestamp; + unsigned int resume_required: 1; + struct dbc_ep eps[2]; + const struct dbc_driver *driver; + void *priv; +}; + +struct dbc_driver { + int (*configure)(struct xhci_dbc *); + void (*disconnect)(struct xhci_dbc *); +}; + +struct dbc_request { + void *buf; + unsigned int length; + dma_addr_t dma; + void (*complete)(struct xhci_dbc *, struct dbc_request *); + struct list_head list_pool; + int status; + unsigned int actual; + struct xhci_dbc *dbc; + struct list_head list_pending; + dma_addr_t trb_dma; + union xhci_trb *trb; + unsigned int direction: 1; +}; + +enum evtreturn { + EVT_ERR = -1, + EVT_DONE = 0, + EVT_XFER_DONE = 1, + EVT_GSER = 2, + EVT_DISC = 3, +}; + +typedef class_mutex_t class_mutex_intr_t; + +enum serio_event_type { + SERIO_RESCAN_PORT = 0, + SERIO_RECONNECT_PORT = 1, + SERIO_RECONNECT_SUBTREE = 2, + SERIO_REGISTER_PORT = 3, + SERIO_ATTACH_DRIVER = 4, +}; + +struct serio_event { + enum serio_event_type type; + void *object; + struct module *owner; + struct list_head node; +}; + +struct input_event { + __kernel_ulong_t __sec; + __kernel_ulong_t __usec; + __u16 type; + __u16 code; + __s32 value; +}; + +struct input_event_compat { + compat_ulong_t sec; + compat_ulong_t usec; + __u16 type; + __u16 code; + __s32 value; +}; + +struct ff_periodic_effect_compat { + __u16 waveform; + __u16 period; + __s16 magnitude; + __s16 offset; + __u16 phase; + struct ff_envelope envelope; + __u32 custom_len; + compat_uptr_t custom_data; +}; + +struct ff_effect_compat { + __u16 type; + __s16 id; + __u16 direction; + struct ff_trigger trigger; + struct ff_replay replay; + union { + struct ff_constant_effect constant; + struct ff_ramp_effect ramp; + struct ff_periodic_effect_compat periodic; + struct ff_condition_effect condition[2]; + struct ff_rumble_effect rumble; + } u; +}; + +struct input_dev_poller { + void (*poll)(struct input_dev *); + unsigned int poll_interval; + unsigned int poll_interval_max; + unsigned int poll_interval_min; + struct input_dev *input; + struct delayed_work work; +}; + +struct vivaldi_data { + u32 function_row_physmap[24]; + unsigned int num_function_row_keys; +}; + +struct mousedev_hw_data { + int dx; + int dy; + int dz; + int x; + int y; + int abs_event; + long unsigned int buttons; +}; + +struct mousedev { + int open; + struct input_handle handle; + wait_queue_head_t wait; + struct list_head client_list; + spinlock_t client_lock; + struct mutex mutex; + struct device dev; + struct cdev cdev; + bool exist; + struct list_head mixdev_node; + bool opened_by_mixdev; + struct mousedev_hw_data packet; + unsigned int pkt_count; + int old_x[4]; + int old_y[4]; + int frac_dx; + int frac_dy; + long unsigned int touch; + int (*open_device)(struct mousedev *); + void (*close_device)(struct mousedev *); +}; + +enum mousedev_emul { + MOUSEDEV_EMUL_PS2 = 0, + MOUSEDEV_EMUL_IMPS = 1, + MOUSEDEV_EMUL_EXPS = 2, +}; + +struct mousedev_motion { + int dx; + int dy; + int dz; + long unsigned int buttons; +}; + +struct mousedev_client { + struct fasync_struct *fasync; + struct mousedev *mousedev; + struct list_head node; + struct mousedev_motion packets[16]; + unsigned int head; + unsigned int tail; + spinlock_t packet_lock; + int pos_x; + int pos_y; + u8 ps2[6]; + unsigned char ready; + unsigned char buffer; + unsigned char bufsiz; + unsigned char imexseq; + unsigned char impsseq; + enum mousedev_emul mode; + long unsigned int last_buttons; +}; + +enum { + FRACTION_DENOM = 128, +}; + +struct input_mt_slot { + int abs[14]; + unsigned int frame; + unsigned int key; +}; + +struct input_mt { + int trkid; + int num_slots; + int slot; + unsigned int flags; + unsigned int frame; + int *red; + struct input_mt_slot slots[0]; +}; + +struct uinput_ff_upload { + __u32 request_id; + __s32 retval; + struct ff_effect effect; + struct ff_effect old; +}; + +struct uinput_ff_erase { + __u32 request_id; + __s32 retval; + __u32 effect_id; +}; + +struct uinput_setup { + struct input_id id; + char name[80]; + __u32 ff_effects_max; +}; + +struct uinput_abs_setup { + __u16 code; + struct input_absinfo absinfo; +}; + +struct uinput_user_dev { + char name[80]; + struct input_id id; + __u32 ff_effects_max; + __s32 absmax[64]; + __s32 absmin[64]; + __s32 absfuzz[64]; + __s32 absflat[64]; +}; + +enum uinput_state { + UIST_NEW_DEVICE = 0, + UIST_SETUP_COMPLETE = 1, + UIST_CREATED = 2, +}; + +struct uinput_request { + unsigned int id; + unsigned int code; + int retval; + struct completion done; + union { + unsigned int effect_id; + struct { + struct ff_effect *effect; + struct ff_effect *old; + } upload; + } u; +}; + +struct uinput_device { + struct input_dev *dev; + struct mutex mutex; + enum uinput_state state; + wait_queue_head_t waitq; + unsigned char ready; + unsigned char head; + unsigned char tail; + struct input_event buff[16]; + unsigned int ff_effects_max; + struct uinput_request *requests[16]; + wait_queue_head_t requests_waitq; + spinlock_t requests_lock; +}; + +struct uinput_ff_upload_compat { + __u32 request_id; + __s32 retval; + struct ff_effect_compat effect; + struct ff_effect_compat old; +}; + +struct i2c_devinfo { + struct list_head list; + int busnum; + struct i2c_board_info board_info; +}; + +enum i2c_driver_flags { + I2C_DRV_ACPI_WAIVE_D0_PROBE = 1, +}; + +struct i2c_acpi_handler_data { + struct acpi_connection_info info; + struct i2c_adapter *adapter; +}; + +struct gsb_buffer { + u8 status; + u8 len; + union { + u16 wdata; + u8 bdata; + struct { + struct {} __empty_data; + u8 data[0]; + }; + }; +}; + +struct i2c_acpi_lookup { + struct i2c_board_info *info; + acpi_handle adapter_handle; + acpi_handle device_handle; + acpi_handle search_handle; + int n; + int index; + u32 speed; + u32 min_speed; + u32 force_speed; +}; + +struct i2c_acpi_irq_context { + int irq; + bool wake_capable; +}; + +struct pps_ktime { + __s64 sec; + __s32 nsec; + __u32 flags; +}; + +struct pps_ktime_compat { + __s64 sec; + __s32 nsec; + __u32 flags; +}; + +struct pps_kinfo { + __u32 assert_sequence; + __u32 clear_sequence; + struct pps_ktime assert_tu; + struct pps_ktime clear_tu; + int current_mode; +}; + +struct pps_kinfo_compat { + __u32 assert_sequence; + __u32 clear_sequence; + struct pps_ktime_compat assert_tu; + struct pps_ktime_compat clear_tu; + int current_mode; +} __attribute__((packed)); + +struct pps_kparams { + int api_version; + int mode; + struct pps_ktime assert_off_tu; + struct pps_ktime clear_off_tu; +}; + +struct pps_fdata { + struct pps_kinfo info; + struct pps_ktime timeout; +}; + +struct pps_fdata_compat { + struct pps_kinfo_compat info; + struct pps_ktime_compat timeout; +} __attribute__((packed)); + +struct pps_bind_args { + int tsformat; + int edge; + int consumer; +}; + +struct pps_device; + +struct pps_source_info { + char name[32]; + char path[32]; + int mode; + void (*echo)(struct pps_device *, int, void *); + struct module *owner; + struct device *dev; +}; + +struct pps_device { + struct pps_source_info info; + struct pps_kparams params; + __u32 assert_sequence; + __u32 clear_sequence; + struct pps_ktime assert_tu; + struct pps_ktime clear_tu; + int current_mode; + unsigned int last_ev; + unsigned int last_fetched_ev; + wait_queue_head_t queue; + unsigned int id; + const void *lookup_cookie; + struct device dev; + struct fasync_struct *async_queue; + spinlock_t lock; +}; + +struct system_time_snapshot { + u64 cycles; + ktime_t real; + ktime_t boot; + ktime_t raw; + enum clocksource_ids cs_id; + unsigned int clock_was_set_seq; + u8 cs_was_changed_seq; +}; + +struct system_device_crosststamp { + ktime_t device; + ktime_t sys_realtime; + ktime_t sys_monoraw; +}; + +struct posix_clock; + +struct posix_clock_context; + +struct posix_clock_operations { + struct module *owner; + int (*clock_adjtime)(struct posix_clock *, struct __kernel_timex *); + int (*clock_gettime)(struct posix_clock *, struct timespec64 *); + int (*clock_getres)(struct posix_clock *, struct timespec64 *); + int (*clock_settime)(struct posix_clock *, const struct timespec64 *); + long int (*ioctl)(struct posix_clock_context *, unsigned int, long unsigned int); + int (*open)(struct posix_clock_context *, fmode_t); + __poll_t (*poll)(struct posix_clock_context *, struct file *, poll_table *); + int (*release)(struct posix_clock_context *); + ssize_t (*read)(struct posix_clock_context *, uint, char *, size_t); +}; + +struct posix_clock { + struct posix_clock_operations ops; + struct cdev cdev; + struct device *dev; + struct rw_semaphore rwsem; + bool zombie; +}; + +struct posix_clock_context { + struct posix_clock *clk; + struct file *fp; + void *private_clkdata; +}; + +struct pps_event_time { + struct timespec64 ts_real; +}; + +struct ptp_clock_time { + __s64 sec; + __u32 nsec; + __u32 reserved; +}; + +struct ptp_extts_request { + unsigned int index; + unsigned int flags; + unsigned int rsv[2]; +}; + +struct ptp_perout_request { + union { + struct ptp_clock_time start; + struct ptp_clock_time phase; + }; + struct ptp_clock_time period; + unsigned int index; + unsigned int flags; + union { + struct ptp_clock_time on; + unsigned int rsv[4]; + }; +}; + +enum ptp_pin_function { + PTP_PF_NONE = 0, + PTP_PF_EXTTS = 1, + PTP_PF_PEROUT = 2, + PTP_PF_PHYSYNC = 3, +}; + +struct ptp_pin_desc { + char name[64]; + unsigned int index; + unsigned int func; + unsigned int chan; + unsigned int rsv[5]; +}; + +struct ptp_extts_event { + struct ptp_clock_time t; + unsigned int index; + unsigned int flags; + unsigned int rsv[2]; +}; + +struct cyclecounter { + u64 (*read)(struct cyclecounter *); + u64 mask; + u32 mult; + u32 shift; +}; + +struct timecounter { + struct cyclecounter *cc; + u64 cycle_last; + u64 nsec; + u64 mask; + u64 frac; +}; + +struct ptp_clock_request { + enum { + PTP_CLK_REQ_EXTTS = 0, + PTP_CLK_REQ_PEROUT = 1, + PTP_CLK_REQ_PPS = 2, + } type; + union { + struct ptp_extts_request extts; + struct ptp_perout_request perout; + }; +}; + +struct ptp_clock_info { + struct module *owner; + char name[32]; + s32 max_adj; + int n_alarm; + int n_ext_ts; + int n_per_out; + int n_pins; + int pps; + unsigned int supported_perout_flags; + unsigned int supported_extts_flags; + struct ptp_pin_desc *pin_config; + int (*adjfine)(struct ptp_clock_info *, long int); + int (*adjphase)(struct ptp_clock_info *, s32); + s32 (*getmaxphase)(struct ptp_clock_info *); + int (*adjtime)(struct ptp_clock_info *, s64); + int (*gettime64)(struct ptp_clock_info *, struct timespec64 *); + int (*gettimex64)(struct ptp_clock_info *, struct timespec64 *, struct ptp_system_timestamp *); + int (*getcrosststamp)(struct ptp_clock_info *, struct system_device_crosststamp *); + int (*settime64)(struct ptp_clock_info *, const struct timespec64 *); + int (*getcycles64)(struct ptp_clock_info *, struct timespec64 *); + int (*getcyclesx64)(struct ptp_clock_info *, struct timespec64 *, struct ptp_system_timestamp *); + int (*getcrosscycles)(struct ptp_clock_info *, struct system_device_crosststamp *); + int (*enable)(struct ptp_clock_info *, struct ptp_clock_request *, int); + int (*verify)(struct ptp_clock_info *, unsigned int, enum ptp_pin_function, unsigned int); + long int (*do_aux_work)(struct ptp_clock_info *); +}; + +enum ptp_clock_events { + PTP_CLOCK_ALARM = 0, + PTP_CLOCK_EXTTS = 1, + PTP_CLOCK_EXTOFF = 2, + PTP_CLOCK_PPS = 3, + PTP_CLOCK_PPSUSR = 4, +}; + +struct ptp_clock_event { + int type; + int index; + union { + u64 timestamp; + s64 offset; + struct pps_event_time pps_times; + }; +}; + +struct timestamp_event_queue { + struct ptp_extts_event buf[128]; + int head; + int tail; + spinlock_t lock; + struct list_head qlist; + long unsigned int *mask; + struct dentry *debugfs_instance; + struct debugfs_u32_array dfs_bitmap; +}; + +struct ptp_clock { + struct posix_clock clock; + struct device dev; + struct ptp_clock_info *info; + dev_t devid; + int index; + struct pps_device *pps_source; + long int dialed_frequency; + struct list_head tsevqs; + spinlock_t tsevqs_lock; + struct mutex pincfg_mux; + wait_queue_head_t tsev_wq; + int defunct; + struct device_attribute *pin_dev_attr; + struct attribute **pin_attr; + struct attribute_group pin_attr_group; + const struct attribute_group *pin_attr_groups[2]; + struct kthread_worker *kworker; + struct kthread_delayed_work aux_work; + unsigned int max_vclocks; + unsigned int n_vclocks; + int *vclock_index; + struct mutex n_vclocks_mux; + bool is_virtual_clock; + bool has_cycles; + struct dentry *debugfs_root; +}; + +struct ptp_vclock { + struct ptp_clock *pclock; + struct ptp_clock_info info; + struct ptp_clock *clock; + struct hlist_node vclock_hash_node; + struct cyclecounter cc; + struct timecounter tc; + struct mutex lock; +}; + +enum hwmon_sensor_types { + hwmon_chip = 0, + hwmon_temp = 1, + hwmon_in = 2, + hwmon_curr = 3, + hwmon_power = 4, + hwmon_energy = 5, + hwmon_humidity = 6, + hwmon_fan = 7, + hwmon_pwm = 8, + hwmon_intrusion = 9, + hwmon_max = 10, +}; + +enum hwmon_temp_attributes { + hwmon_temp_enable = 0, + hwmon_temp_input = 1, + hwmon_temp_type = 2, + hwmon_temp_lcrit = 3, + hwmon_temp_lcrit_hyst = 4, + hwmon_temp_min = 5, + hwmon_temp_min_hyst = 6, + hwmon_temp_max = 7, + hwmon_temp_max_hyst = 8, + hwmon_temp_crit = 9, + hwmon_temp_crit_hyst = 10, + hwmon_temp_emergency = 11, + hwmon_temp_emergency_hyst = 12, + hwmon_temp_alarm = 13, + hwmon_temp_lcrit_alarm = 14, + hwmon_temp_min_alarm = 15, + hwmon_temp_max_alarm = 16, + hwmon_temp_crit_alarm = 17, + hwmon_temp_emergency_alarm = 18, + hwmon_temp_fault = 19, + hwmon_temp_offset = 20, + hwmon_temp_label = 21, + hwmon_temp_lowest = 22, + hwmon_temp_highest = 23, + hwmon_temp_reset_history = 24, + hwmon_temp_rated_min = 25, + hwmon_temp_rated_max = 26, + hwmon_temp_beep = 27, +}; + +enum hwmon_in_attributes { + hwmon_in_enable = 0, + hwmon_in_input = 1, + hwmon_in_min = 2, + hwmon_in_max = 3, + hwmon_in_lcrit = 4, + hwmon_in_crit = 5, + hwmon_in_average = 6, + hwmon_in_lowest = 7, + hwmon_in_highest = 8, + hwmon_in_reset_history = 9, + hwmon_in_label = 10, + hwmon_in_alarm = 11, + hwmon_in_min_alarm = 12, + hwmon_in_max_alarm = 13, + hwmon_in_lcrit_alarm = 14, + hwmon_in_crit_alarm = 15, + hwmon_in_rated_min = 16, + hwmon_in_rated_max = 17, + hwmon_in_beep = 18, + hwmon_in_fault = 19, +}; + +enum hwmon_curr_attributes { + hwmon_curr_enable = 0, + hwmon_curr_input = 1, + hwmon_curr_min = 2, + hwmon_curr_max = 3, + hwmon_curr_lcrit = 4, + hwmon_curr_crit = 5, + hwmon_curr_average = 6, + hwmon_curr_lowest = 7, + hwmon_curr_highest = 8, + hwmon_curr_reset_history = 9, + hwmon_curr_label = 10, + hwmon_curr_alarm = 11, + hwmon_curr_min_alarm = 12, + hwmon_curr_max_alarm = 13, + hwmon_curr_lcrit_alarm = 14, + hwmon_curr_crit_alarm = 15, + hwmon_curr_rated_min = 16, + hwmon_curr_rated_max = 17, + hwmon_curr_beep = 18, +}; + +enum hwmon_power_attributes { + hwmon_power_enable = 0, + hwmon_power_average = 1, + hwmon_power_average_interval = 2, + hwmon_power_average_interval_max = 3, + hwmon_power_average_interval_min = 4, + hwmon_power_average_highest = 5, + hwmon_power_average_lowest = 6, + hwmon_power_average_max = 7, + hwmon_power_average_min = 8, + hwmon_power_input = 9, + hwmon_power_input_highest = 10, + hwmon_power_input_lowest = 11, + hwmon_power_reset_history = 12, + hwmon_power_accuracy = 13, + hwmon_power_cap = 14, + hwmon_power_cap_hyst = 15, + hwmon_power_cap_max = 16, + hwmon_power_cap_min = 17, + hwmon_power_min = 18, + hwmon_power_max = 19, + hwmon_power_crit = 20, + hwmon_power_lcrit = 21, + hwmon_power_label = 22, + hwmon_power_alarm = 23, + hwmon_power_cap_alarm = 24, + hwmon_power_min_alarm = 25, + hwmon_power_max_alarm = 26, + hwmon_power_lcrit_alarm = 27, + hwmon_power_crit_alarm = 28, + hwmon_power_rated_min = 29, + hwmon_power_rated_max = 30, +}; + +struct hwmon_ops { + umode_t visible; + umode_t (*is_visible)(const void *, enum hwmon_sensor_types, u32, int); + int (*read)(struct device *, enum hwmon_sensor_types, u32, int, long int *); + int (*read_string)(struct device *, enum hwmon_sensor_types, u32, int, const char **); + int (*write)(struct device *, enum hwmon_sensor_types, u32, int, long int); +}; + +struct hwmon_channel_info { + enum hwmon_sensor_types type; + const u32 *config; +}; + +struct hwmon_chip_info { + const struct hwmon_ops *ops; + const struct hwmon_channel_info * const *info; +}; + +struct power_supply_hwmon { + struct power_supply *psy; + long unsigned int *props; +}; + +struct hwmon_type_attr_list { + const u32 *attrs; + size_t n_attrs; +}; + +enum thermal_genl_attr { + THERMAL_GENL_ATTR_UNSPEC = 0, + THERMAL_GENL_ATTR_TZ = 1, + THERMAL_GENL_ATTR_TZ_ID = 2, + THERMAL_GENL_ATTR_TZ_TEMP = 3, + THERMAL_GENL_ATTR_TZ_TRIP = 4, + THERMAL_GENL_ATTR_TZ_TRIP_ID = 5, + THERMAL_GENL_ATTR_TZ_TRIP_TYPE = 6, + THERMAL_GENL_ATTR_TZ_TRIP_TEMP = 7, + THERMAL_GENL_ATTR_TZ_TRIP_HYST = 8, + THERMAL_GENL_ATTR_TZ_MODE = 9, + THERMAL_GENL_ATTR_TZ_NAME = 10, + THERMAL_GENL_ATTR_TZ_CDEV_WEIGHT = 11, + THERMAL_GENL_ATTR_TZ_GOV = 12, + THERMAL_GENL_ATTR_TZ_GOV_NAME = 13, + THERMAL_GENL_ATTR_CDEV = 14, + THERMAL_GENL_ATTR_CDEV_ID = 15, + THERMAL_GENL_ATTR_CDEV_CUR_STATE = 16, + THERMAL_GENL_ATTR_CDEV_MAX_STATE = 17, + THERMAL_GENL_ATTR_CDEV_NAME = 18, + THERMAL_GENL_ATTR_GOV_NAME = 19, + THERMAL_GENL_ATTR_CPU_CAPABILITY = 20, + THERMAL_GENL_ATTR_CPU_CAPABILITY_ID = 21, + THERMAL_GENL_ATTR_CPU_CAPABILITY_PERFORMANCE = 22, + THERMAL_GENL_ATTR_CPU_CAPABILITY_EFFICIENCY = 23, + THERMAL_GENL_ATTR_THRESHOLD = 24, + THERMAL_GENL_ATTR_THRESHOLD_TEMP = 25, + THERMAL_GENL_ATTR_THRESHOLD_DIRECTION = 26, + THERMAL_GENL_ATTR_TZ_PREV_TEMP = 27, + __THERMAL_GENL_ATTR_MAX = 28, +}; + +enum thermal_genl_sampling { + THERMAL_GENL_SAMPLING_TEMP = 0, + __THERMAL_GENL_SAMPLING_MAX = 1, +}; + +enum thermal_genl_event { + THERMAL_GENL_EVENT_UNSPEC = 0, + THERMAL_GENL_EVENT_TZ_CREATE = 1, + THERMAL_GENL_EVENT_TZ_DELETE = 2, + THERMAL_GENL_EVENT_TZ_DISABLE = 3, + THERMAL_GENL_EVENT_TZ_ENABLE = 4, + THERMAL_GENL_EVENT_TZ_TRIP_UP = 5, + THERMAL_GENL_EVENT_TZ_TRIP_DOWN = 6, + THERMAL_GENL_EVENT_TZ_TRIP_CHANGE = 7, + THERMAL_GENL_EVENT_TZ_TRIP_ADD = 8, + THERMAL_GENL_EVENT_TZ_TRIP_DELETE = 9, + THERMAL_GENL_EVENT_CDEV_ADD = 10, + THERMAL_GENL_EVENT_CDEV_DELETE = 11, + THERMAL_GENL_EVENT_CDEV_STATE_UPDATE = 12, + THERMAL_GENL_EVENT_TZ_GOV_CHANGE = 13, + THERMAL_GENL_EVENT_CPU_CAPABILITY_CHANGE = 14, + THERMAL_GENL_EVENT_THRESHOLD_ADD = 15, + THERMAL_GENL_EVENT_THRESHOLD_DELETE = 16, + THERMAL_GENL_EVENT_THRESHOLD_FLUSH = 17, + THERMAL_GENL_EVENT_THRESHOLD_UP = 18, + THERMAL_GENL_EVENT_THRESHOLD_DOWN = 19, + __THERMAL_GENL_EVENT_MAX = 20, +}; + +enum thermal_genl_cmd { + THERMAL_GENL_CMD_UNSPEC = 0, + THERMAL_GENL_CMD_TZ_GET_ID = 1, + THERMAL_GENL_CMD_TZ_GET_TRIP = 2, + THERMAL_GENL_CMD_TZ_GET_TEMP = 3, + THERMAL_GENL_CMD_TZ_GET_GOV = 4, + THERMAL_GENL_CMD_TZ_GET_MODE = 5, + THERMAL_GENL_CMD_CDEV_GET = 6, + THERMAL_GENL_CMD_THRESHOLD_GET = 7, + THERMAL_GENL_CMD_THRESHOLD_ADD = 8, + THERMAL_GENL_CMD_THRESHOLD_DELETE = 9, + THERMAL_GENL_CMD_THRESHOLD_FLUSH = 10, + __THERMAL_GENL_CMD_MAX = 11, +}; + +struct thermal_genl_cpu_caps { + int cpu; + int performance; + int efficiency; +}; + +enum thermal_genl_multicast_groups { + THERMAL_GENL_SAMPLING_GROUP = 0, + THERMAL_GENL_EVENT_GROUP = 1, + THERMAL_GENL_MAX_GROUP = 1, +}; + +struct thermal_genl_notify { + int mcgrp; +}; + +typedef struct thermal_zone_device *class_thermal_zone_get_by_id_t; + +struct param { + struct nlattr **attrs; + struct sk_buff *msg; + const char *name; + int tz_id; + int cdev_id; + int trip_id; + int trip_temp; + int trip_type; + int trip_hyst; + int temp; + int prev_temp; + int direction; + int cdev_state; + int cdev_max_state; + struct thermal_genl_cpu_caps *cpu_capabilities; + int cpu_capabilities_count; +}; + +typedef int (*cb_t)(struct param *); + +struct temp_masks { + u32 tcc_offset; + u32 digital_readout; + u32 pkg_digital_readout; +}; + +struct _thermal_state { + u64 next_check; + u64 last_interrupt_time; + struct delayed_work therm_work; + long unsigned int count; + long unsigned int last_count; + long unsigned int max_time_ms; + long unsigned int total_time_ms; + bool rate_control_active; + bool new_event; + u8 level; + u8 sample_index; + u8 sample_count; + u8 average; + u8 baseline_temp; + u8 temp_samples[3]; +}; + +struct thermal_state { + struct _thermal_state core_throttle; + struct _thermal_state core_power_limit; + struct _thermal_state package_throttle; + struct _thermal_state package_power_limit; + struct _thermal_state core_thresh0; + struct _thermal_state core_thresh1; + struct _thermal_state pkg_thresh0; + struct _thermal_state pkg_thresh1; +}; + +enum bitmap_state { + BITMAP_STALE = 1, + BITMAP_WRITE_ERROR = 2, + BITMAP_HOSTENDIAN = 15, +}; + +struct bitmap_super_s { + __le32 magic; + __le32 version; + __u8 uuid[16]; + __le64 events; + __le64 events_cleared; + __le64 sync_size; + __le32 state; + __le32 chunksize; + __le32 daemon_sleep; + __le32 write_behind; + __le32 sectors_reserved; + __le32 nodes; + __u8 cluster_name[64]; + __u8 pad[120]; +}; + +typedef struct bitmap_super_s bitmap_super_t; + +typedef __u16 bitmap_counter_t; + +struct bitmap_page { + char *map; + unsigned int hijacked: 1; + unsigned int pending: 1; + unsigned int count: 30; +}; + +struct bitmap_counts { + spinlock_t lock; + struct bitmap_page *bp; + long unsigned int pages; + long unsigned int missing_pages; + long unsigned int chunkshift; + long unsigned int chunks; +}; + +struct bitmap_storage { + struct file *file; + struct page *sb_page; + long unsigned int sb_index; + struct page **filemap; + long unsigned int *filemap_attr; + long unsigned int file_pages; + long unsigned int bytes; +}; + +struct bitmap { + struct bitmap_counts counts; + struct mddev *mddev; + __u64 events_cleared; + int need_sync; + struct bitmap_storage storage; + long unsigned int flags; + int allclean; + atomic_t behind_writes; + long unsigned int behind_writes_used; + long unsigned int daemon_lastrun; + long unsigned int last_end_sync; + atomic_t pending_writes; + wait_queue_head_t write_wait; + wait_queue_head_t overflow_wait; + wait_queue_head_t behind_wait; + struct kernfs_node *sysfs_can_clear; + int cluster_slot; +}; + +enum bitmap_page_attr { + BITMAP_PAGE_DIRTY = 0, + BITMAP_PAGE_PENDING = 1, + BITMAP_PAGE_NEEDWRITE = 2, +}; + +struct bitmap_unplug_work { + struct work_struct work; + struct bitmap *bitmap; + struct completion *done; +}; + +struct linear_c { + struct dm_dev *dev; + sector_t start; +}; + +struct dm_ioctl { + __u32 version[3]; + __u32 data_size; + __u32 data_start; + __u32 target_count; + __s32 open_count; + __u32 flags; + __u32 event_nr; + __u32 padding; + __u64 dev; + char name[128]; + char uuid[129]; + char data[7]; +}; + +struct dm_target_spec { + __u64 sector_start; + __u64 length; + __s32 status; + __u32 next; + char target_type[16]; +}; + +struct dm_target_deps { + __u32 count; + __u32 padding; + __u64 dev[0]; +}; + +struct dm_name_list { + __u64 dev; + __u32 next; + char name[0]; +}; + +struct dm_target_versions { + __u32 next; + __u32 version[3]; + char name[0]; +}; + +struct dm_target_msg { + __u64 sector; + char message[0]; +}; + +enum { + DM_VERSION_CMD = 0, + DM_REMOVE_ALL_CMD = 1, + DM_LIST_DEVICES_CMD = 2, + DM_DEV_CREATE_CMD = 3, + DM_DEV_REMOVE_CMD = 4, + DM_DEV_RENAME_CMD = 5, + DM_DEV_SUSPEND_CMD = 6, + DM_DEV_STATUS_CMD = 7, + DM_DEV_WAIT_CMD = 8, + DM_TABLE_LOAD_CMD = 9, + DM_TABLE_CLEAR_CMD = 10, + DM_TABLE_DEPS_CMD = 11, + DM_TABLE_STATUS_CMD = 12, + DM_LIST_VERSIONS_CMD = 13, + DM_TARGET_MSG_CMD = 14, + DM_DEV_SET_GEOMETRY_CMD = 15, + DM_DEV_ARM_POLL_CMD = 16, + DM_GET_TARGET_VERSION_CMD = 17, + DM_MPATH_PROBE_PATHS_CMD = 18, +}; + +struct dm_file { + volatile unsigned int global_event_nr; +}; + +struct hash_cell { + struct rb_node name_node; + struct rb_node uuid_node; + bool name_set; + bool uuid_set; + char *name; + char *uuid; + struct mapped_device *md; + struct dm_table *new_map; +}; + +struct vers_iter { + size_t param_size; + struct dm_target_versions *vers; + struct dm_target_versions *old_vers; + char *end; + uint32_t flags; +}; + +typedef int (*ioctl_fn)(struct file *, struct dm_ioctl *, size_t); + +struct dm_stats_last_position { + sector_t last_sector; + unsigned int last_rw; +}; + +struct dm_stat_percpu { + long long unsigned int sectors[2]; + long long unsigned int ios[2]; + long long unsigned int merges[2]; + long long unsigned int ticks[2]; + long long unsigned int io_ticks[2]; + long long unsigned int io_ticks_total; + long long unsigned int time_in_queue; + long long unsigned int *histogram; +}; + +struct dm_stat_shared { + atomic_t in_flight[2]; + long long unsigned int stamp; + struct dm_stat_percpu tmp; +}; + +struct dm_stat { + struct list_head list_entry; + int id; + unsigned int stat_flags; + size_t n_entries; + sector_t start; + sector_t end; + sector_t step; + unsigned int n_histogram_entries; + long long unsigned int *histogram_boundaries; + const char *program_id; + const char *aux_data; + struct callback_head callback_head; + size_t shared_alloc_size; + size_t percpu_alloc_size; + size_t histogram_alloc_size; + struct dm_stat_percpu *stat_percpu[8192]; + struct dm_stat_shared stat_shared[0]; +}; + +struct ctl_info_attribute { + struct attribute attr; + ssize_t (*show)(struct edac_device_ctl_info *, char *); + ssize_t (*store)(struct edac_device_ctl_info *, const char *, size_t); +}; + +struct instance_attribute { + struct attribute attr; + ssize_t (*show)(struct edac_device_instance *, char *); + ssize_t (*store)(struct edac_device_instance *, const char *, size_t); +}; + +enum edac_ecs_attributes { + ECS_LOG_ENTRY_TYPE = 0, + ECS_MODE = 1, + ECS_RESET = 2, + ECS_THRESHOLD = 3, + ECS_MAX_ATTRS = 4, +}; + +struct edac_ecs_dev_attr { + struct device_attribute dev_attr; + int fru_id; +}; + +struct edac_ecs_fru_context { + char name[128]; + struct edac_ecs_dev_attr dev_attr[4]; + struct attribute *ecs_attrs[5]; + struct attribute_group group; +}; + +struct edac_ecs_context { + u16 num_media_frus; + struct edac_ecs_fru_context *fru_ctxs; +}; + +struct edac_pci_counter { + atomic_t pe_count; + atomic_t npe_count; +}; + +struct edac_pci_ctl_info { + struct list_head link; + int pci_idx; + int op_state; + struct delayed_work work; + void (*edac_check)(struct edac_pci_ctl_info *); + struct device *dev; + const char *mod_name; + const char *ctl_name; + const char *dev_name; + void *pvt_info; + long unsigned int start_time; + char name[32]; + struct edac_pci_counter counters; + struct kobject kobj; +}; + +struct instance_attribute___2 { + struct attribute attr; + ssize_t (*show)(struct edac_pci_ctl_info *, char *); + ssize_t (*store)(struct edac_pci_ctl_info *, const char *, size_t); +}; + +struct edac_pci_dev_attribute { + struct attribute attr; + void *value; + ssize_t (*show)(void *, char *); + ssize_t (*store)(void *, const char *, size_t); +}; + +typedef void (*pci_parity_check_fn_t)(struct pci_dev *); + +struct dev_pm_opp_supply { + long unsigned int u_volt; + long unsigned int u_volt_min; + long unsigned int u_volt_max; + long unsigned int u_amp; + long unsigned int u_watt; +}; + +struct dev_pm_opp_icc_bw; + +struct dev_pm_opp { + struct list_head node; + struct kref kref; + bool available; + bool dynamic; + bool turbo; + bool suspend; + bool removed; + long unsigned int *rates; + unsigned int level; + struct dev_pm_opp_supply *supplies; + struct dev_pm_opp_icc_bw *bandwidth; + long unsigned int clock_latency_ns; + struct dev_pm_opp **required_opps; + struct opp_table *opp_table; + struct device_node *np; + struct dentry *dentry; + const char *of_name; +}; + +enum opp_table_access { + OPP_TABLE_ACCESS_UNKNOWN = 0, + OPP_TABLE_ACCESS_EXCLUSIVE = 1, + OPP_TABLE_ACCESS_SHARED = 2, +}; + +struct icc_path; + +struct opp_table { + struct list_head node; + struct list_head lazy; + struct blocking_notifier_head head; + struct list_head dev_list; + struct list_head opp_list; + struct kref kref; + struct mutex lock; + struct device_node *np; + long unsigned int clock_latency_ns_max; + unsigned int voltage_tolerance_v1; + unsigned int parsed_static_opps; + enum opp_table_access shared_opp; + long unsigned int current_rate_single_clk; + struct dev_pm_opp *current_opp; + struct dev_pm_opp *suspend_opp; + struct opp_table **required_opp_tables; + struct device **required_devs; + unsigned int required_opp_count; + unsigned int *supported_hw; + unsigned int supported_hw_count; + const char *prop_name; + config_clks_t config_clks; + struct clk **clks; + struct clk *clk; + int clk_count; + config_regulators_t config_regulators; + struct regulator **regulators; + int regulator_count; + struct icc_path **paths; + unsigned int path_count; + bool enabled; + bool is_genpd; + struct dentry *dentry; + char dentry_name[255]; +}; + +struct dev_pm_opp_icc_bw { + u32 avg; + u32 peak; +}; + +struct opp_device { + struct list_head node; + const struct device *dev; + struct dentry *dentry; +}; + +typedef struct cpufreq_policy *class_cpufreq_policy_write_t; + +typedef struct cpufreq_policy *class_cpufreq_policy_read_t; + +struct cpu_dbs_info { + u64 prev_cpu_idle; + u64 prev_update_time; + u64 prev_cpu_nice; + unsigned int prev_load; + struct update_util_data update_util; + struct policy_dbs_info *policy_dbs; +}; + +struct trace_event_raw_amd_pstate_perf { + struct trace_entry ent; + u8 min_perf; + u8 target_perf; + u8 capacity; + long long unsigned int freq; + long long unsigned int mperf; + long long unsigned int aperf; + long long unsigned int tsc; + unsigned int cpu_id; + bool fast_switch; + char __data[0]; +}; + +struct trace_event_raw_amd_pstate_epp_perf { + struct trace_entry ent; + unsigned int cpu_id; + u8 highest_perf; + u8 epp; + u8 min_perf; + u8 max_perf; + bool boost; + bool changed; + char __data[0]; +}; + +struct trace_event_data_offsets_amd_pstate_perf {}; + +struct trace_event_data_offsets_amd_pstate_epp_perf {}; + +typedef void (*btf_trace_amd_pstate_perf)(void *, u8, u8, u8, u64, u64, u64, u64, unsigned int, bool); + +typedef void (*btf_trace_amd_pstate_epp_perf)(void *, unsigned int, u8, u8, u8, u8, bool, bool); + +struct ladder_device_state { + struct { + u32 promotion_count; + u32 demotion_count; + u64 promotion_time_ns; + u64 demotion_time_ns; + } threshold; + struct { + int promotion_count; + int demotion_count; + } stats; +}; + +struct ladder_device { + struct ladder_device_state states[10]; +}; + +struct menu_device { + int needs_update; + int tick_wakeup; + u64 next_timer_ns; + unsigned int bucket; + unsigned int correction_factor[6]; + unsigned int intervals[8]; + int interval_ptr; +}; + +struct teo_bin { + unsigned int intercepts; + unsigned int hits; +}; + +struct teo_cpu { + s64 sleep_length_ns; + struct teo_bin state_bins[10]; + unsigned int total; + unsigned int tick_intercepts; + unsigned int short_idles; + bool artificial_wakeup; +}; + +struct efi_unaccepted_memory { + u32 version; + u32 unit_size; + u64 phys_base; + u64 size; + long unsigned int bitmap[0]; +}; + +typedef struct { + u16 version; + u16 length; + u32 runtime_services_supported; +} efi_rt_properties_table_t; + +struct linux_efi_random_seed { + u32 size; + u8 bits[0]; +}; + +struct linux_efi_memreserve { + int size; + atomic_t count; + phys_addr_t next; + struct { + phys_addr_t base; + phys_addr_t size; + } entry[0]; +}; + +struct linux_efi_initrd { + long unsigned int base; + long unsigned int size; +}; + +struct efi_error_code { + efi_status_t status; + int errno; + const char *description; +}; + +enum { + RCD = 0, + RCH_DP = 1, + DEVICE = 2, + LD = 3, + FMLD = 4, + RP = 5, + DSP = 6, + USP = 7, +}; + +struct cxl_cper_sec_prot_err { + u64 valid_bits; + u8 agent_type; + u8 reserved[7]; + union { + u64 rcrb_base_addr; + struct { + u8 function; + u8 device; + u8 bus; + u16 segment; + u8 reserved_1[3]; + } __attribute__((packed)); + } agent_addr; + struct { + u16 vendor_id; + u16 device_id; + u16 subsystem_vendor_id; + u16 subsystem_id; + u8 class_code[2]; + u16 slot; + u8 reserved_1[4]; + } device_id; + struct { + u32 lower_dw; + u32 upper_dw; + } dev_serial_num; + u8 capability[60]; + u16 dvsec_len; + u16 err_len; + u8 reserved_2[4]; +} __attribute__((packed)); + +struct cxl_ras_capability_regs { + u32 uncor_status; + u32 uncor_mask; + u32 uncor_severity; + u32 cor_status; + u32 cor_mask; + u32 cap_control; + u32 header_log[16]; +}; + +union efi_rts_args { + struct { + efi_time_t *time; + efi_time_cap_t *capabilities; + } GET_TIME; + struct { + efi_time_t *time; + } SET_TIME; + struct { + efi_bool_t *enabled; + efi_bool_t *pending; + efi_time_t *time; + } GET_WAKEUP_TIME; + struct { + efi_bool_t enable; + efi_time_t *time; + } SET_WAKEUP_TIME; + struct { + efi_char16_t *name; + efi_guid_t *vendor; + u32 *attr; + long unsigned int *data_size; + void *data; + } GET_VARIABLE; + struct { + long unsigned int *name_size; + efi_char16_t *name; + efi_guid_t *vendor; + } GET_NEXT_VARIABLE; + struct { + efi_char16_t *name; + efi_guid_t *vendor; + u32 attr; + long unsigned int data_size; + void *data; + } SET_VARIABLE; + struct { + u32 attr; + u64 *storage_space; + u64 *remaining_space; + u64 *max_variable_size; + } QUERY_VARIABLE_INFO; + struct { + u32 *high_count; + } GET_NEXT_HIGH_MONO_COUNT; + struct { + efi_capsule_header_t **capsules; + long unsigned int count; + long unsigned int sg_list; + } UPDATE_CAPSULE; + struct { + efi_capsule_header_t **capsules; + long unsigned int count; + u64 *max_size; + int *reset_type; + } QUERY_CAPSULE_CAPS; + struct { + efi_status_t (*acpi_prm_handler)(u64, void *); + u64 param_buffer_addr; + void *context; + } ACPI_PRM_HANDLER; +}; + +struct efi_acpi_dev_path { + struct efi_generic_dev_path header; + u32 hid; + u32 uid; +}; + +struct efi_pci_dev_path { + struct efi_generic_dev_path header; + u8 fn; + u8 dev; +}; + +struct efi_vendor_dev_path { + struct efi_generic_dev_path header; + efi_guid_t vendorguid; + u8 vendordata[0]; +}; + +struct efi_rel_offset_dev_path { + struct efi_generic_dev_path header; + u32 reserved; + u64 starting_offset; + u64 ending_offset; +}; + +struct efi_dev_path { + union { + struct efi_generic_dev_path header; + struct efi_acpi_dev_path acpi; + struct efi_pci_dev_path pci; + struct efi_vendor_dev_path vendor; + struct efi_rel_offset_dev_path rel_offset; + }; +}; + +struct dev_header { + u32 len; + u32 prop_count; + struct efi_dev_path path[0]; +}; + +struct properties_header { + u32 len; + u32 version; + u32 dev_count; + struct dev_header dev_header[0]; +} __attribute__((packed)); + +struct of_bus; + +struct of_pci_range_parser { + struct device_node *node; + const struct of_bus *bus; + const __be32 *range; + const __be32 *end; + int na; + int ns; + int pna; + bool dma; +}; + +struct of_pci_range { + union { + u64 pci_addr; + u64 bus_addr; + }; + u64 cpu_addr; + u64 parent_bus_addr; + u64 size; + u32 flags; +}; + +enum { + M_I17 = 0, + M_I20 = 1, + M_I20_SR = 2, + M_I24 = 3, + M_I24_8_1 = 4, + M_I24_10_1 = 5, + M_I27_11_1 = 6, + M_MINI = 7, + M_MINI_3_1 = 8, + M_MINI_4_1 = 9, + M_MB = 10, + M_MB_2 = 11, + M_MB_3 = 12, + M_MB_5_1 = 13, + M_MB_6_1 = 14, + M_MB_7_1 = 15, + M_MB_SR = 16, + M_MBA = 17, + M_MBA_3 = 18, + M_MBP = 19, + M_MBP_2 = 20, + M_MBP_2_2 = 21, + M_MBP_SR = 22, + M_MBP_4 = 23, + M_MBP_5_1 = 24, + M_MBP_5_2 = 25, + M_MBP_5_3 = 26, + M_MBP_6_1 = 27, + M_MBP_6_2 = 28, + M_MBP_7_1 = 29, + M_MBP_8_2 = 30, + M_UNKNOWN = 31, +}; + +struct efifb_dmi_info { + char *optname; + long unsigned int base; + int stride; + int width; + int height; + int flags; +}; + +enum { + OVERRIDE_NONE = 0, + OVERRIDE_BASE = 1, + OVERRIDE_STRIDE = 2, + OVERRIDE_HEIGHT = 4, + OVERRIDE_WIDTH = 8, +}; + +struct freq_band_range { + u64 start; + u64 end; +}; + +struct wbrf_ranges_in_out { + u64 num_of_ranges; + struct freq_band_range band_list[11]; +}; + +enum wbrf_notifier_actions { + WBRF_CHANGED = 0, +}; + +struct amd_wbrf_ranges_out { + u32 num_of_ranges; + struct freq_band_range band_list[11]; +} __attribute__((packed)); + +struct acpi_pcct_ext_pcc_slave { + struct acpi_subtable_header header; + u32 platform_interrupt; + u8 flags; + u8 reserved1; + u64 base_address; + u32 length; + struct acpi_generic_address doorbell_register; + u64 preserve_mask; + u64 write_mask; + u32 latency; + u32 max_access_rate; + u32 min_turnaround_time; + struct acpi_generic_address platform_ack_register; + u64 ack_preserve_mask; + u64 ack_set_mask; + u64 reserved2; + struct acpi_generic_address cmd_complete_register; + u64 cmd_complete_mask; + struct acpi_generic_address cmd_update_register; + u64 cmd_update_preserve_mask; + u64 cmd_update_set_mask; + struct acpi_generic_address error_status_register; + u64 error_status_mask; +} __attribute__((packed)); + +struct acpi_pcct_ext_pcc_shared_memory { + u32 signature; + u32 flags; + u32 length; + u32 command; +}; + +struct mbox_client { + struct device *dev; + bool tx_block; + long unsigned int tx_tout; + bool knows_txdone; + void (*rx_callback)(struct mbox_client *, void *); + void (*tx_prepare)(struct mbox_client *, void *); + void (*tx_done)(struct mbox_client *, void *, int); +}; + +struct mbox_chan; + +struct mbox_chan_ops { + int (*send_data)(struct mbox_chan *, void *); + int (*flush)(struct mbox_chan *, long unsigned int); + int (*startup)(struct mbox_chan *); + void (*shutdown)(struct mbox_chan *); + bool (*last_tx_done)(struct mbox_chan *); + bool (*peek_data)(struct mbox_chan *); +}; + +struct mbox_controller; + +struct mbox_chan { + struct mbox_controller *mbox; + unsigned int txdone_method; + struct mbox_client *cl; + struct completion tx_complete; + void *active_req; + unsigned int msg_count; + unsigned int msg_free; + void *msg_data[20]; + spinlock_t lock; + void *con_priv; +}; + +struct mbox_controller { + struct device *dev; + const struct mbox_chan_ops *ops; + struct mbox_chan *chans; + int num_chans; + bool txdone_irq; + bool txdone_poll; + unsigned int txpoll_period; + struct mbox_chan * (*of_xlate)(struct mbox_controller *, const struct of_phandle_args *); + struct hrtimer poll_hrt; + spinlock_t poll_hrt_lock; + struct list_head node; +}; + +struct pcc_mbox_chan { + struct mbox_chan *mchan; + u64 shmem_base_addr; + void *shmem; + u64 shmem_size; + u32 latency; + u32 max_access_rate; + u16 min_turnaround_time; + bool manage_writes; + void * (*rx_alloc)(struct mbox_client *, int); +}; + +struct amd_shmem_info { + struct acpi_pcct_ext_pcc_shared_memory header; + u32 version_number: 8; + u32 n_logical_processors: 8; + u32 n_capabilities: 8; + u32 table_update_context: 8; + u32 n_bitmaps: 8; + u32 reserved: 24; + u32 table_data[0]; +}; + +struct amd_hfi_data { + const char *name; + struct device *dev; + struct pcc_mbox_chan *pcc_chan; + void *pcc_comm_addr; + struct acpi_subtable_header *pcct_entry; + struct amd_shmem_info *shmem; + struct dentry *dbgfs_dir; +}; + +struct amd_hfi_classes { + u32 perf; + u32 eff; +}; + +struct amd_hfi_cpuinfo { + int cpu; + u32 apic_id; + cpumask_var_t cpus; + s16 class_index; + u8 nr_class; + int *ipcc_scores; + struct amd_hfi_classes *amd_hfi_classes; +}; + +struct intel_scu_ipc_data { + struct resource mem; + int irq; +}; + +struct acpi_table_pcct { + struct acpi_table_header header; + u32 flags; + u64 reserved; +}; + +enum acpi_pcct_type { + ACPI_PCCT_TYPE_GENERIC_SUBSPACE = 0, + ACPI_PCCT_TYPE_HW_REDUCED_SUBSPACE = 1, + ACPI_PCCT_TYPE_HW_REDUCED_SUBSPACE_TYPE2 = 2, + ACPI_PCCT_TYPE_EXT_PCC_MASTER_SUBSPACE = 3, + ACPI_PCCT_TYPE_EXT_PCC_SLAVE_SUBSPACE = 4, + ACPI_PCCT_TYPE_HW_REG_COMM_SUBSPACE = 5, + ACPI_PCCT_TYPE_RESERVED = 6, +}; + +struct acpi_pcct_subspace { + struct acpi_subtable_header header; + u8 reserved[6]; + u64 base_address; + u64 length; + struct acpi_generic_address doorbell_register; + u64 preserve_mask; + u64 write_mask; + u32 latency; + u32 max_access_rate; + u16 min_turnaround_time; +} __attribute__((packed)); + +struct acpi_pcct_hw_reduced { + struct acpi_subtable_header header; + u32 platform_interrupt; + u8 flags; + u8 reserved; + u64 base_address; + u64 length; + struct acpi_generic_address doorbell_register; + u64 preserve_mask; + u64 write_mask; + u32 latency; + u32 max_access_rate; + u16 min_turnaround_time; +} __attribute__((packed)); + +struct acpi_pcct_hw_reduced_type2 { + struct acpi_subtable_header header; + u32 platform_interrupt; + u8 flags; + u8 reserved; + u64 base_address; + u64 length; + struct acpi_generic_address doorbell_register; + u64 preserve_mask; + u64 write_mask; + u32 latency; + u32 max_access_rate; + u16 min_turnaround_time; + struct acpi_generic_address platform_ack_register; + u64 ack_preserve_mask; + u64 ack_write_mask; +} __attribute__((packed)); + +struct acpi_pcct_ext_pcc_master { + struct acpi_subtable_header header; + u32 platform_interrupt; + u8 flags; + u8 reserved1; + u64 base_address; + u32 length; + struct acpi_generic_address doorbell_register; + u64 preserve_mask; + u64 write_mask; + u32 latency; + u32 max_access_rate; + u32 min_turnaround_time; + struct acpi_generic_address platform_ack_register; + u64 ack_preserve_mask; + u64 ack_set_mask; + u64 reserved2; + struct acpi_generic_address cmd_complete_register; + u64 cmd_complete_mask; + struct acpi_generic_address cmd_update_register; + u64 cmd_update_preserve_mask; + u64 cmd_update_set_mask; + struct acpi_generic_address error_status_register; + u64 error_status_mask; +} __attribute__((packed)); + +struct pcc_header___2 { + u32 signature; + u32 flags; + u32 length; + u32 command; +}; + +struct pcc_chan_reg { + void *vaddr; + struct acpi_generic_address *gas; + u64 preserve_mask; + u64 set_mask; + u64 status_mask; +}; + +struct pcc_chan_info { + struct pcc_mbox_chan chan; + struct pcc_chan_reg db; + struct pcc_chan_reg plat_irq_ack; + struct pcc_chan_reg cmd_complete; + struct pcc_chan_reg cmd_update; + struct pcc_chan_reg error; + int plat_irq; + u8 type; + unsigned int plat_irq_flags; + bool chan_in_use; +}; + +struct tsm_report_desc { + unsigned int privlevel; + size_t inblob_len; + u8 inblob[64]; + char *service_provider; + guid_t service_guid; + unsigned int service_manifest_version; +}; + +struct tsm_report { + struct tsm_report_desc desc; + size_t outblob_len; + u8 *outblob; + size_t auxblob_len; + u8 *auxblob; + size_t manifestblob_len; + u8 *manifestblob; +}; + +enum tsm_attr_index { + TSM_REPORT_GENERATION = 0, + TSM_REPORT_PROVIDER = 1, + TSM_REPORT_PRIVLEVEL = 2, + TSM_REPORT_PRIVLEVEL_FLOOR = 3, + TSM_REPORT_SERVICE_PROVIDER = 4, + TSM_REPORT_SERVICE_GUID = 5, + TSM_REPORT_SERVICE_MANIFEST_VER = 6, +}; + +enum tsm_bin_attr_index { + TSM_REPORT_INBLOB = 0, + TSM_REPORT_OUTBLOB = 1, + TSM_REPORT_AUXBLOB = 2, + TSM_REPORT_MANIFESTBLOB = 3, +}; + +struct tsm_report_ops { + const char *name; + unsigned int privlevel_floor; + int (*report_new)(struct tsm_report *, void *); + bool (*report_attr_visible)(int); + bool (*report_bin_attr_visible)(int); +}; + +struct tsm_provider { + const struct tsm_report_ops *ops; + void *data; + atomic_t count; +}; + +struct tsm_report_state { + struct tsm_report report; + long unsigned int write_generation; + long unsigned int read_generation; + struct config_item cfg; +}; + +enum tsm_data_select { + TSM_REPORT = 0, + TSM_CERTS = 1, + TSM_MANIFEST = 2, +}; + +union hv_synic_sint { + u64 as_uint64; + struct { + u64 vector: 8; + u64 reserved1: 8; + u64 masked: 1; + u64 auto_eoi: 1; + u64 polling: 1; + u64 as_intercept: 1; + u64 proxy: 1; + u64 reserved2: 43; + }; +}; + +enum hv_message_type { + HVMSG_NONE = 0, + HVMSG_UNMAPPED_GPA = 2147483648, + HVMSG_GPA_INTERCEPT = 2147483649, + HVMSG_TIMER_EXPIRED = 2147483664, + HVMSG_INVALID_VP_REGISTER_VALUE = 2147483680, + HVMSG_UNRECOVERABLE_EXCEPTION = 2147483681, + HVMSG_UNSUPPORTED_FEATURE = 2147483682, + HVMSG_OPAQUE_INTERCEPT = 2147483711, + HVMSG_EVENTLOG_BUFFERCOMPLETE = 2147483712, + HVMSG_HYPERCALL_INTERCEPT = 2147483728, + HVMSG_SYNIC_EVENT_INTERCEPT = 2147483744, + HVMSG_SYNIC_SINT_INTERCEPT = 2147483745, + HVMSG_SYNIC_SINT_DELIVERABLE = 2147483746, + HVMSG_ASYNC_CALL_COMPLETION = 2147483760, + HVMSG_SCHEDULER_VP_SIGNAL_BITSET = 2147483904, + HVMSG_SCHEDULER_VP_SIGNAL_PAIR = 2147483905, + HVMSG_X64_IO_PORT_INTERCEPT = 2147549184, + HVMSG_X64_MSR_INTERCEPT = 2147549185, + HVMSG_X64_CPUID_INTERCEPT = 2147549186, + HVMSG_X64_EXCEPTION_INTERCEPT = 2147549187, + HVMSG_X64_APIC_EOI = 2147549188, + HVMSG_X64_LEGACY_FP_ERROR = 2147549189, + HVMSG_X64_IOMMU_PRQ = 2147549190, + HVMSG_X64_HALT = 2147549191, + HVMSG_X64_INTERRUPTION_DELIVERABLE = 2147549192, + HVMSG_X64_SIPI_INTERCEPT = 2147549193, +}; + +union hv_synic_simp { + u64 as_uint64; + struct { + u64 simp_enabled: 1; + u64 preserved: 11; + u64 base_simp_gpa: 52; + }; +}; + +union hv_connection_id { + u32 asu32; + struct { + u32 id: 24; + u32 reserved: 8; + } u; +}; + +union hv_synic_event_flags { + unsigned char flags8[256]; + u32 flags32[64]; + ulong flags[32]; +}; + +union hv_synic_scontrol { + u64 as_uint64; + struct { + u64 enable: 1; + u64 reserved: 63; + }; +}; + +union hv_synic_siefp { + u64 as_uint64; + struct { + u64 siefp_enabled: 1; + u64 preserved: 11; + u64 base_siefp_gpa: 52; + }; +}; + +union hv_monitor_trigger_group { + u64 as_uint64; + struct { + u32 pending; + u32 armed; + }; +}; + +struct hv_monitor_parameter { + union hv_connection_id connectionid; + u16 flagnumber; + u16 rsvdz; +}; + +union hv_monitor_trigger_state { + u32 asu32; + struct { + u32 group_enable: 4; + u32 rsvdz: 28; + }; +}; + +struct hv_monitor_page { + union hv_monitor_trigger_state trigger_state; + u32 rsvdz1; + union hv_monitor_trigger_group trigger_group[4]; + u64 rsvdz2[3]; + s32 next_checktime[128]; + u16 latency[128]; + u64 rsvdz3[32]; + struct hv_monitor_parameter parameter[128]; + u8 rsvdz4[1984]; +}; + +struct hv_input_post_message { + union hv_connection_id connectionid; + u32 reserved; + u32 message_type; + u32 payload_size; + u64 payload[30]; +}; + +enum { + VMBUS_MESSAGE_CONNECTION_ID = 1, + VMBUS_MESSAGE_CONNECTION_ID_4 = 4, + VMBUS_MESSAGE_PORT_ID = 1, + VMBUS_EVENT_CONNECTION_ID = 2, + VMBUS_EVENT_PORT_ID = 2, + VMBUS_MONITOR_CONNECTION_ID = 3, + VMBUS_MONITOR_PORT_ID = 3, + VMBUS_MESSAGE_SINT = 2, +}; + +struct hv_per_cpu_context { + void *synic_message_page; + void *synic_event_page; + void *post_msg_page; + struct tasklet_struct msg_dpc; +}; + +struct hv_context { + u64 guestid; + struct hv_per_cpu_context *cpu_context; + struct cpumask *hv_numa_map; +}; + +enum vmbus_connect_state { + DISCONNECTED = 0, + CONNECTING = 1, + CONNECTED = 2, + DISCONNECTING = 3, +}; + +struct vmbus_connection { + u32 msg_conn_id; + atomic_t offer_in_progress; + enum vmbus_connect_state conn_state; + atomic_t next_gpadl_handle; + struct completion unload_event; + void *int_page; + void *send_int_page; + void *recv_int_page; + struct hv_monitor_page *monitor_pages[2]; + struct list_head chn_msg_list; + spinlock_t channelmsg_lock; + struct list_head chn_list; + struct mutex channel_mutex; + struct vmbus_channel **channels; + struct workqueue_struct *work_queue; + struct workqueue_struct *handle_primary_chan_wq; + struct workqueue_struct *handle_sub_chan_wq; + struct workqueue_struct *rescind_work_queue; + bool ignore_any_offer_msg; + atomic_t nr_chan_close_on_suspend; + struct completion ready_for_suspend_event; + struct completion all_offers_delivered_event; +}; + +struct vmbus_channel_initiate_contact { + struct vmbus_channel_message_header header; + u32 vmbus_version_requested; + u32 target_vcpu; + union { + u64 interrupt_page; + struct { + u8 msg_sint; + u8 msg_vtl; + u8 reserved[6]; + }; + }; + u64 monitor_page1; + u64 monitor_page2; +}; + +struct gpa_range { + u32 byte_count; + u32 byte_offset; + u64 pfn_array[0]; +}; + +struct vmbus_channel_rescind_offer { + struct vmbus_channel_message_header header; + u32 child_relid; +}; + +struct vmbus_channel_open_channel { + struct vmbus_channel_message_header header; + u32 child_relid; + u32 openid; + u32 ringbuffer_gpadlhandle; + u32 target_vp; + u32 downstream_ringbuffer_pageoffset; + unsigned char userdata[120]; +}; + +struct vmbus_channel_gpadl_header { + struct vmbus_channel_message_header header; + u32 child_relid; + u32 gpadl; + u16 range_buflen; + u16 rangecount; + struct gpa_range range[0]; +} __attribute__((packed)); + +struct vmbus_channel_gpadl_body { + struct vmbus_channel_message_header header; + u32 msgnumber; + u32 gpadl; + u64 pfn[0]; +}; + +struct vmbus_channel_gpadl_teardown { + struct vmbus_channel_message_header header; + u32 child_relid; + u32 gpadl; +}; + +struct vmbus_channel_relid_released { + struct vmbus_channel_message_header header; + u32 child_relid; +}; + +struct vmbus_channel_tl_connect_request { + struct vmbus_channel_message_header header; + guid_t guest_endpoint_id; + guid_t host_service_id; +}; + +struct vmbus_channel_modifychannel { + struct vmbus_channel_message_header header; + u32 child_relid; + u32 target_vp; +}; + +struct trace_event_raw_vmbus_hdr_msg { + struct trace_entry ent; + unsigned int msgtype; + char __data[0]; +}; + +struct trace_event_raw_vmbus_onoffer { + struct trace_entry ent; + u32 child_relid; + u8 monitorid; + u16 is_ddc_int; + u32 connection_id; + char if_type[16]; + char if_instance[16]; + u16 chn_flags; + u16 mmio_mb; + u16 sub_idx; + char __data[0]; +}; + +struct trace_event_raw_vmbus_onoffer_rescind { + struct trace_entry ent; + u32 child_relid; + char __data[0]; +}; + +struct trace_event_raw_vmbus_onopen_result { + struct trace_entry ent; + u32 child_relid; + u32 openid; + u32 status; + char __data[0]; +}; + +struct trace_event_raw_vmbus_ongpadl_created { + struct trace_entry ent; + u32 child_relid; + u32 gpadl; + u32 status; + char __data[0]; +}; + +struct trace_event_raw_vmbus_onmodifychannel_response { + struct trace_entry ent; + u32 child_relid; + u32 status; + char __data[0]; +}; + +struct trace_event_raw_vmbus_ongpadl_torndown { + struct trace_entry ent; + u32 gpadl; + char __data[0]; +}; + +struct trace_event_raw_vmbus_onversion_response { + struct trace_entry ent; + u8 ver; + char __data[0]; +}; + +struct trace_event_raw_vmbus_request_offers { + struct trace_entry ent; + int ret; + char __data[0]; +}; + +struct trace_event_raw_vmbus_open { + struct trace_entry ent; + u32 child_relid; + u32 openid; + u32 gpadlhandle; + u32 target_vp; + u32 offset; + int ret; + char __data[0]; +}; + +struct trace_event_raw_vmbus_close_internal { + struct trace_entry ent; + u32 child_relid; + int ret; + char __data[0]; +}; + +struct trace_event_raw_vmbus_establish_gpadl_header { + struct trace_entry ent; + u32 child_relid; + u32 gpadl; + u16 range_buflen; + u16 rangecount; + int ret; + char __data[0]; +}; + +struct trace_event_raw_vmbus_establish_gpadl_body { + struct trace_entry ent; + u32 msgnumber; + u32 gpadl; + int ret; + char __data[0]; +}; + +struct trace_event_raw_vmbus_teardown_gpadl { + struct trace_entry ent; + u32 child_relid; + u32 gpadl; + int ret; + char __data[0]; +}; + +struct trace_event_raw_vmbus_negotiate_version { + struct trace_entry ent; + u32 ver; + u32 target_vcpu; + int ret; + u64 int_page; + u64 mon_page1; + u64 mon_page2; + char __data[0]; +}; + +struct trace_event_raw_vmbus_release_relid { + struct trace_entry ent; + u32 child_relid; + int ret; + char __data[0]; +}; + +struct trace_event_raw_vmbus_send_tl_connect_request { + struct trace_entry ent; + char guest_id[16]; + char host_id[16]; + int ret; + char __data[0]; +}; + +struct trace_event_raw_vmbus_send_modifychannel { + struct trace_entry ent; + u32 child_relid; + u32 target_vp; + int ret; + char __data[0]; +}; + +struct trace_event_raw_vmbus_channel { + struct trace_entry ent; + u32 relid; + char __data[0]; +}; + +struct trace_event_data_offsets_vmbus_hdr_msg {}; + +struct trace_event_data_offsets_vmbus_onoffer {}; + +struct trace_event_data_offsets_vmbus_onoffer_rescind {}; + +struct trace_event_data_offsets_vmbus_onopen_result {}; + +struct trace_event_data_offsets_vmbus_ongpadl_created {}; + +struct trace_event_data_offsets_vmbus_onmodifychannel_response {}; + +struct trace_event_data_offsets_vmbus_ongpadl_torndown {}; + +struct trace_event_data_offsets_vmbus_onversion_response {}; + +struct trace_event_data_offsets_vmbus_request_offers {}; + +struct trace_event_data_offsets_vmbus_open {}; + +struct trace_event_data_offsets_vmbus_close_internal {}; + +struct trace_event_data_offsets_vmbus_establish_gpadl_header {}; + +struct trace_event_data_offsets_vmbus_establish_gpadl_body {}; + +struct trace_event_data_offsets_vmbus_teardown_gpadl {}; + +struct trace_event_data_offsets_vmbus_negotiate_version {}; + +struct trace_event_data_offsets_vmbus_release_relid {}; + +struct trace_event_data_offsets_vmbus_send_tl_connect_request {}; + +struct trace_event_data_offsets_vmbus_send_modifychannel {}; + +struct trace_event_data_offsets_vmbus_channel {}; + +typedef void (*btf_trace_vmbus_on_msg_dpc)(void *, const struct vmbus_channel_message_header *); + +typedef void (*btf_trace_vmbus_on_message)(void *, const struct vmbus_channel_message_header *); + +typedef void (*btf_trace_vmbus_onoffer)(void *, const struct vmbus_channel_offer_channel *); + +typedef void (*btf_trace_vmbus_onoffer_rescind)(void *, const struct vmbus_channel_rescind_offer *); + +typedef void (*btf_trace_vmbus_onopen_result)(void *, const struct vmbus_channel_open_result *); + +typedef void (*btf_trace_vmbus_ongpadl_created)(void *, const struct vmbus_channel_gpadl_created *); + +typedef void (*btf_trace_vmbus_onmodifychannel_response)(void *, const struct vmbus_channel_modifychannel_response *); + +typedef void (*btf_trace_vmbus_ongpadl_torndown)(void *, const struct vmbus_channel_gpadl_torndown *); + +typedef void (*btf_trace_vmbus_onversion_response)(void *, const struct vmbus_channel_version_response *); + +typedef void (*btf_trace_vmbus_request_offers)(void *, int); + +typedef void (*btf_trace_vmbus_open)(void *, const struct vmbus_channel_open_channel *, int); + +typedef void (*btf_trace_vmbus_close_internal)(void *, const struct vmbus_channel_close_channel *, int); + +typedef void (*btf_trace_vmbus_establish_gpadl_header)(void *, const struct vmbus_channel_gpadl_header *, int); + +typedef void (*btf_trace_vmbus_establish_gpadl_body)(void *, const struct vmbus_channel_gpadl_body *, int); + +typedef void (*btf_trace_vmbus_teardown_gpadl)(void *, const struct vmbus_channel_gpadl_teardown *, int); + +typedef void (*btf_trace_vmbus_negotiate_version)(void *, const struct vmbus_channel_initiate_contact *, int); + +typedef void (*btf_trace_vmbus_release_relid)(void *, const struct vmbus_channel_relid_released *, int); + +typedef void (*btf_trace_vmbus_send_tl_connect_request)(void *, const struct vmbus_channel_tl_connect_request *, int); + +typedef void (*btf_trace_vmbus_send_modifychannel)(void *, const struct vmbus_channel_modifychannel *, int); + +typedef void (*btf_trace_vmbus_chan_sched)(void *, const struct vmbus_channel *); + +typedef void (*btf_trace_vmbus_setevent)(void *, const struct vmbus_channel *); + +typedef void (*btf_trace_vmbus_on_event)(void *, const struct vmbus_channel *); + +struct page_reporting_dev_info { + int (*report)(struct page_reporting_dev_info *, struct scatterlist *, unsigned int); + struct delayed_work work; + atomic_t state; + unsigned int order; +}; + +enum { + HV_EXTMEM_HEAT_HINT_COLD = 0, + HV_EXTMEM_HEAT_HINT_HOT = 1, + HV_EXTMEM_HEAT_HINT_COLD_DISCARD = 2, + HV_EXTMEM_HEAT_HINT_MAX = 3, +}; + +struct hv_memory_hint { + u64 heat_type: 2; + u64 reserved: 62; + union hv_gpa_page_range ranges[0]; +}; + +struct trace_event_raw_balloon_status { + struct trace_entry ent; + u64 available; + u64 committed; + long unsigned int vm_memory_committed; + long unsigned int pages_ballooned; + long unsigned int pages_added; + long unsigned int pages_onlined; + char __data[0]; +}; + +struct trace_event_data_offsets_balloon_status {}; + +typedef void (*btf_trace_balloon_status)(void *, u64, u64, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + +enum { + DYNMEM_PROTOCOL_VERSION_1 = 3, + DYNMEM_PROTOCOL_VERSION_2 = 65536, + DYNMEM_PROTOCOL_VERSION_3 = 131072, + DYNMEM_PROTOCOL_VERSION_WIN7 = 3, + DYNMEM_PROTOCOL_VERSION_WIN8 = 65536, + DYNMEM_PROTOCOL_VERSION_WIN10 = 131072, + DYNMEM_PROTOCOL_VERSION_CURRENT = 131072, +}; + +enum dm_message_type { + DM_ERROR = 0, + DM_VERSION_REQUEST = 1, + DM_VERSION_RESPONSE = 2, + DM_CAPABILITIES_REPORT = 3, + DM_CAPABILITIES_RESPONSE = 4, + DM_STATUS_REPORT = 5, + DM_BALLOON_REQUEST = 6, + DM_BALLOON_RESPONSE = 7, + DM_UNBALLOON_REQUEST = 8, + DM_UNBALLOON_RESPONSE = 9, + DM_MEM_HOT_ADD_REQUEST = 10, + DM_MEM_HOT_ADD_RESPONSE = 11, + DM_VERSION_03_MAX = 11, + DM_INFO_MESSAGE = 12, + DM_VERSION_1_MAX = 12, +}; + +union dm_version { + struct { + __u16 minor_version; + __u16 major_version; + }; + __u32 version; +}; + +union dm_caps { + struct { + __u64 balloon: 1; + __u64 hot_add: 1; + __u64 hot_add_alignment: 4; + __u64 reservedz: 58; + } cap_bits; + __u64 caps; +}; + +union dm_mem_page_range { + struct { + __u64 start_page: 40; + __u64 page_cnt: 24; + } finfo; + __u64 page_range; +}; + +struct dm_header { + __u16 type; + __u16 size; + __u32 trans_id; +}; + +struct dm_message { + struct dm_header hdr; + __u8 data[0]; +}; + +struct dm_version_request { + struct dm_header hdr; + union dm_version version; + __u32 is_last_attempt: 1; + __u32 reservedz: 31; +}; + +struct dm_version_response { + struct dm_header hdr; + __u64 is_accepted: 1; + __u64 reservedz: 63; +}; + +struct dm_capabilities { + struct dm_header hdr; + union dm_caps caps; + __u64 min_page_cnt; + __u64 max_page_number; +}; + +struct dm_capabilities_resp_msg { + struct dm_header hdr; + __u64 is_accepted: 1; + __u64 reservedz: 63; +}; + +struct dm_status { + struct dm_header hdr; + __u64 num_avail; + __u64 num_committed; + __u64 page_file_size; + __u64 zero_free; + __u32 page_file_writes; + __u32 io_diff; +}; + +struct dm_balloon { + struct dm_header hdr; + __u32 num_pages; + __u32 reservedz; +}; + +struct dm_balloon_response { + struct dm_header hdr; + __u32 reservedz; + __u32 more_pages: 1; + __u32 range_count: 31; + union dm_mem_page_range range_array[0]; +}; + +struct dm_unballoon_request { + struct dm_header hdr; + __u32 more_pages: 1; + __u32 reservedz: 31; + __u32 range_count; + union dm_mem_page_range range_array[0]; +}; + +struct dm_unballoon_response { + struct dm_header hdr; +}; + +struct dm_hot_add { + struct dm_header hdr; + union dm_mem_page_range range; +}; + +struct dm_hot_add_response { + struct dm_header hdr; + __u32 page_count; + __u32 result; +}; + +enum dm_info_type { + INFO_TYPE_MAX_PAGE_CNT = 0, + MAX_INFO_TYPE = 1, +}; + +struct dm_info_header { + enum dm_info_type type; + __u32 data_size; +}; + +struct dm_info_msg { + struct dm_header hdr; + __u32 reserved; + __u32 info_size; + __u8 info[0]; +}; + +struct hv_hotadd_state { + struct list_head list; + long unsigned int start_pfn; + long unsigned int covered_start_pfn; + long unsigned int covered_end_pfn; + long unsigned int ha_end_pfn; + long unsigned int end_pfn; + struct list_head gap_list; +}; + +struct hv_hotadd_gap { + struct list_head list; + long unsigned int start_pfn; + long unsigned int end_pfn; +}; + +struct balloon_state { + __u32 num_pages; + struct work_struct wrk; +}; + +struct hot_add_wrk { + union dm_mem_page_range ha_page_range; + union dm_mem_page_range ha_region_range; + struct work_struct wrk; +}; + +enum hv_dm_state { + DM_INITIALIZING = 0, + DM_INITIALIZED = 1, + DM_BALLOON_UP = 2, + DM_BALLOON_DOWN = 3, + DM_HOT_ADD = 4, + DM_INIT_ERROR = 5, +}; + +struct hv_dynmem_device { + struct hv_device *dev; + enum hv_dm_state state; + struct completion host_event; + struct completion config_event; + unsigned int num_pages_ballooned; + unsigned int num_pages_onlined; + unsigned int num_pages_added; + struct balloon_state balloon_wrk; + struct hot_add_wrk ha_wrk; + bool host_specified_ha_region; + struct completion ol_waitevent; + struct task_struct *thread; + spinlock_t ha_lock; + struct list_head ha_region_list; + __u32 next_version; + __u32 version; + struct page_reporting_dev_info pr_dev_info; + __u64 max_dynamic_page_count; +}; + +struct devfreq_cooling_power { + int (*get_real_power)(struct devfreq *, u32 *, long unsigned int, long unsigned int); +}; + +struct trace_event_raw_devfreq_frequency { + struct trace_entry ent; + u32 __data_loc_dev_name; + long unsigned int freq; + long unsigned int prev_freq; + long unsigned int busy_time; + long unsigned int total_time; + char __data[0]; +}; + +struct trace_event_raw_devfreq_monitor { + struct trace_entry ent; + long unsigned int freq; + long unsigned int busy_time; + long unsigned int total_time; + unsigned int polling_ms; + u32 __data_loc_dev_name; + char __data[0]; +}; + +struct trace_event_data_offsets_devfreq_frequency { + u32 dev_name; + const void *dev_name_ptr_; +}; + +struct trace_event_data_offsets_devfreq_monitor { + u32 dev_name; + const void *dev_name_ptr_; +}; + +typedef void (*btf_trace_devfreq_frequency)(void *, struct devfreq *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_devfreq_monitor)(void *, struct devfreq *); + +struct devfreq_notifier_devres { + struct devfreq *devfreq; + struct notifier_block *nb; + unsigned int list; +}; + +struct powercap_control_type; + +struct powercap_control_type_ops { + int (*set_enable)(struct powercap_control_type *, bool); + int (*get_enable)(struct powercap_control_type *, bool *); + int (*release)(struct powercap_control_type *); +}; + +struct powercap_control_type { + struct device dev; + struct idr idr; + int nr_zones; + const struct powercap_control_type_ops *ops; + struct mutex lock; + bool allocated; + struct list_head node; +}; + +struct powercap_zone; + +struct powercap_zone_ops { + int (*get_max_energy_range_uj)(struct powercap_zone *, u64 *); + int (*get_energy_uj)(struct powercap_zone *, u64 *); + int (*reset_energy_uj)(struct powercap_zone *); + int (*get_max_power_range_uw)(struct powercap_zone *, u64 *); + int (*get_power_uw)(struct powercap_zone *, u64 *); + int (*set_enable)(struct powercap_zone *, bool); + int (*get_enable)(struct powercap_zone *, bool *); + int (*release)(struct powercap_zone *); +}; + +struct powercap_zone_constraint; + +struct powercap_zone { + int id; + char *name; + void *control_type_inst; + const struct powercap_zone_ops *ops; + struct device dev; + int const_id_cnt; + struct idr idr; + struct idr *parent_idr; + void *private_data; + struct attribute **zone_dev_attrs; + int zone_attr_count; + struct attribute_group dev_zone_attr_group; + const struct attribute_group *dev_attr_groups[2]; + bool allocated; + struct powercap_zone_constraint *constraints; +}; + +struct powercap_zone_constraint_ops; + +struct powercap_zone_constraint { + int id; + struct powercap_zone *power_zone; + const struct powercap_zone_constraint_ops *ops; +}; + +struct powercap_zone_constraint_ops { + int (*set_power_limit_uw)(struct powercap_zone *, int, u64); + int (*get_power_limit_uw)(struct powercap_zone *, int, u64 *); + int (*set_time_window_us)(struct powercap_zone *, int, u64); + int (*get_time_window_us)(struct powercap_zone *, int, u64 *); + int (*get_max_power_uw)(struct powercap_zone *, int, u64 *); + int (*get_min_power_uw)(struct powercap_zone *, int, u64 *); + int (*get_max_time_window_us)(struct powercap_zone *, int, u64 *); + int (*get_min_time_window_us)(struct powercap_zone *, int, u64 *); + const char * (*get_name)(struct powercap_zone *, int); +}; + +struct powercap_constraint_attr { + struct device_attribute power_limit_attr; + struct device_attribute time_window_attr; + struct device_attribute max_power_attr; + struct device_attribute min_power_attr; + struct device_attribute max_time_window_attr; + struct device_attribute min_time_window_attr; + struct device_attribute name_attr; +}; + +struct ce_array { + u64 *array; + unsigned int n; + unsigned int decay_count; + u64 pfns_poisoned; + u64 ces_entered; + u64 decays_done; + union { + struct { + __u32 disabled: 1; + __u32 __resv: 31; + }; + __u32 flags; + }; +}; + +struct icc_bulk_data { + struct icc_path *path; + const char *name; + u32 avg_bw; + u32 peak_bw; +}; + +struct icc_bulk_devres { + struct icc_bulk_data *paths; + int num_paths; +}; + +struct dpll_device_registration { + struct list_head list; + const struct dpll_device_ops *ops; + void *priv; +}; + +struct dpll_pin_registration { + struct list_head list; + const struct dpll_pin_ops *ops; + void *priv; + void *cookie; +}; + +struct __kernel_sock_timeval { + __s64 tv_sec; + __s64 tv_usec; +}; + +struct dmabuf_token { + __u32 token_start; + __u32 token_count; +}; + +struct linger { + int l_onoff; + int l_linger; +}; + +struct ucred { + __u32 pid; + __u32 uid; + __u32 gid; +}; + +struct sock_fprog { + short unsigned int len; + struct sock_filter *filter; +}; + +struct so_timestamping { + int flags; + int bind_phc; +}; + +enum txtime_flags { + SOF_TXTIME_DEADLINE_MODE = 1, + SOF_TXTIME_REPORT_ERRORS = 2, + SOF_TXTIME_FLAGS_LAST = 2, + SOF_TXTIME_FLAGS_MASK = 3, +}; + +struct sock_txtime { + __kernel_clockid_t clockid; + __u32 flags; +}; + +enum sk_pacing { + SK_PACING_NONE = 0, + SK_PACING_NEEDED = 1, + SK_PACING_FQ = 2, +}; + +struct sock_skb_cb { + u32 dropcount; +}; + +typedef short unsigned int mifi_t; + +struct sioc_sg_req6 { + struct sockaddr_in6 src; + struct sockaddr_in6 grp; + long unsigned int pktcnt; + long unsigned int bytecnt; + long unsigned int wrong_if; +}; + +struct sioc_mif_req6 { + mifi_t mifi; + long unsigned int icount; + long unsigned int ocount; + long unsigned int ibytes; + long unsigned int obytes; +}; + +struct cgroup_cls_state { + struct cgroup_subsys_state css; + u32 classid; +}; + +enum { + SK_MEMINFO_RMEM_ALLOC = 0, + SK_MEMINFO_RCVBUF = 1, + SK_MEMINFO_WMEM_ALLOC = 2, + SK_MEMINFO_SNDBUF = 3, + SK_MEMINFO_FWD_ALLOC = 4, + SK_MEMINFO_WMEM_QUEUED = 5, + SK_MEMINFO_OPTMEM = 6, + SK_MEMINFO_BACKLOG = 7, + SK_MEMINFO_DROPS = 8, + SK_MEMINFO_VARS = 9, +}; + +enum sknetlink_groups { + SKNLGRP_NONE = 0, + SKNLGRP_INET_TCP_DESTROY = 1, + SKNLGRP_INET_UDP_DESTROY = 2, + SKNLGRP_INET6_TCP_DESTROY = 3, + SKNLGRP_INET6_UDP_DESTROY = 4, + __SKNLGRP_MAX = 5, +}; + +struct __kernel_old_timespec { + __kernel_old_time_t tv_sec; + long int tv_nsec; +}; + +struct scm_timestamping_internal { + struct timespec64 ts[3]; +}; + +struct unix_edge; + +struct scm_fp_list { + short int count; + short int count_unix; + short int max; + bool inflight; + bool dead; + struct list_head vertices; + struct unix_edge *edges; + struct user_struct *user; + struct file *fp[253]; +}; + +struct scm_cookie { + struct pid *pid; + struct scm_fp_list *fp; + struct scm_creds creds; + u32 secid; +}; + +struct scm_timestamping { + struct __kernel_old_timespec ts[3]; +}; + +struct scm_timestamping64 { + struct __kernel_timespec ts[3]; +}; + +enum { + NETNSA_NONE = 0, + NETNSA_NSID = 1, + NETNSA_PID = 2, + NETNSA_FD = 3, + NETNSA_TARGET_NSID = 4, + NETNSA_CURRENT_NSID = 5, + __NETNSA_MAX = 6, +}; + +struct net_fill_args { + u32 portid; + u32 seq; + int flags; + int cmd; + int nsid; + bool add_ref; + int ref_nsid; +}; + +struct rtnl_net_dump_cb { + struct net *tgt_net; + struct net *ref_net; + struct sk_buff *skb; + struct net_fill_args fillargs; + int idx; + int s_idx; +}; + +typedef u16 u_int16_t; + +enum { + BPF_F_RECOMPUTE_CSUM = 1, + BPF_F_INVALIDATE_HASH = 2, +}; + +enum { + BPF_F_HDR_FIELD_MASK = 15, +}; + +enum { + BPF_F_PSEUDO_HDR = 16, + BPF_F_MARK_MANGLED_0 = 32, + BPF_F_MARK_ENFORCE = 64, + BPF_F_IPV6 = 128, +}; + +enum { + BPF_F_TUNINFO_IPV6 = 1, +}; + +enum { + BPF_F_ZERO_CSUM_TX = 2, + BPF_F_DONT_FRAGMENT = 4, + BPF_F_SEQ_NUMBER = 8, + BPF_F_NO_TUNNEL_KEY = 16, +}; + +enum { + BPF_F_TUNINFO_FLAGS = 16, +}; + +enum { + BPF_CSUM_LEVEL_QUERY = 0, + BPF_CSUM_LEVEL_INC = 1, + BPF_CSUM_LEVEL_DEC = 2, + BPF_CSUM_LEVEL_RESET = 3, +}; + +enum { + BPF_F_ADJ_ROOM_FIXED_GSO = 1, + BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 2, + BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 4, + BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 8, + BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 16, + BPF_F_ADJ_ROOM_NO_CSUM_RESET = 32, + BPF_F_ADJ_ROOM_ENCAP_L2_ETH = 64, + BPF_F_ADJ_ROOM_DECAP_L3_IPV4 = 128, + BPF_F_ADJ_ROOM_DECAP_L3_IPV6 = 256, +}; + +enum { + BPF_ADJ_ROOM_ENCAP_L2_MASK = 255, + BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 56, +}; + +enum { + BPF_SK_LOOKUP_F_REPLACE = 1, + BPF_SK_LOOKUP_F_NO_REUSEPORT = 2, +}; + +enum bpf_adj_room_mode { + BPF_ADJ_ROOM_NET = 0, + BPF_ADJ_ROOM_MAC = 1, +}; + +enum bpf_hdr_start_off { + BPF_HDR_START_MAC = 0, + BPF_HDR_START_NET = 1, +}; + +enum bpf_lwt_encap_mode { + BPF_LWT_ENCAP_SEG6 = 0, + BPF_LWT_ENCAP_SEG6_INLINE = 1, + BPF_LWT_ENCAP_IP = 2, +}; + +enum { + BPF_SKB_TSTAMP_UNSPEC = 0, + BPF_SKB_TSTAMP_DELIVERY_MONO = 1, + BPF_SKB_CLOCK_REALTIME = 0, + BPF_SKB_CLOCK_MONOTONIC = 1, + BPF_SKB_CLOCK_TAI = 2, +}; + +struct bpf_tunnel_key { + __u32 tunnel_id; + union { + __u32 remote_ipv4; + __u32 remote_ipv6[4]; + }; + __u8 tunnel_tos; + __u8 tunnel_ttl; + union { + __u16 tunnel_ext; + __be16 tunnel_flags; + }; + __u32 tunnel_label; + union { + __u32 local_ipv4; + __u32 local_ipv6[4]; + }; +}; + +struct bpf_xfrm_state { + __u32 reqid; + __u32 spi; + __u16 family; + __u16 ext; + union { + __u32 remote_ipv4; + __u32 remote_ipv6[4]; + }; +}; + +struct bpf_tcp_sock { + __u32 snd_cwnd; + __u32 srtt_us; + __u32 rtt_min; + __u32 snd_ssthresh; + __u32 rcv_nxt; + __u32 snd_nxt; + __u32 snd_una; + __u32 mss_cache; + __u32 ecn_flags; + __u32 rate_delivered; + __u32 rate_interval_us; + __u32 packets_out; + __u32 retrans_out; + __u32 total_retrans; + __u32 segs_in; + __u32 data_segs_in; + __u32 segs_out; + __u32 data_segs_out; + __u32 lost_out; + __u32 sacked_out; + __u64 bytes_received; + __u64 bytes_acked; + __u32 dsack_dups; + __u32 delivered; + __u32 delivered_ce; + __u32 icsk_retransmits; +}; + +struct bpf_sock_tuple { + union { + struct { + __be32 saddr; + __be32 daddr; + __be16 sport; + __be16 dport; + } ipv4; + struct { + __be32 saddr[4]; + __be32 daddr[4]; + __be16 sport; + __be16 dport; + } ipv6; + }; +}; + +struct bpf_xdp_sock { + __u32 queue_id; +}; + +struct sk_msg_md { + union { + void *data; + }; + union { + void *data_end; + }; + __u32 family; + __u32 remote_ip4; + __u32 local_ip4; + __u32 remote_ip6[4]; + __u32 local_ip6[4]; + __u32 remote_port; + __u32 local_port; + __u32 size; + union { + struct bpf_sock *sk; + }; +}; + +struct sk_reuseport_md { + union { + void *data; + }; + union { + void *data_end; + }; + __u32 len; + __u32 eth_protocol; + __u32 ip_protocol; + __u32 bind_inany; + __u32 hash; + union { + struct bpf_sock *sk; + }; + union { + struct bpf_sock *migrating_sk; + }; +}; + +struct bpf_sock_addr { + __u32 user_family; + __u32 user_ip4; + __u32 user_ip6[4]; + __u32 user_port; + __u32 family; + __u32 type; + __u32 protocol; + __u32 msg_src_ip4; + __u32 msg_src_ip6[4]; + union { + struct bpf_sock *sk; + }; +}; + +struct bpf_sock_ops { + __u32 op; + union { + __u32 args[4]; + __u32 reply; + __u32 replylong[4]; + }; + __u32 family; + __u32 remote_ip4; + __u32 local_ip4; + __u32 remote_ip6[4]; + __u32 local_ip6[4]; + __u32 remote_port; + __u32 local_port; + __u32 is_fullsock; + __u32 snd_cwnd; + __u32 srtt_us; + __u32 bpf_sock_ops_cb_flags; + __u32 state; + __u32 rtt_min; + __u32 snd_ssthresh; + __u32 rcv_nxt; + __u32 snd_nxt; + __u32 snd_una; + __u32 mss_cache; + __u32 ecn_flags; + __u32 rate_delivered; + __u32 rate_interval_us; + __u32 packets_out; + __u32 retrans_out; + __u32 total_retrans; + __u32 segs_in; + __u32 data_segs_in; + __u32 segs_out; + __u32 data_segs_out; + __u32 lost_out; + __u32 sacked_out; + __u32 sk_txhash; + __u64 bytes_received; + __u64 bytes_acked; + union { + struct bpf_sock *sk; + }; + union { + void *skb_data; + }; + union { + void *skb_data_end; + }; + __u32 skb_len; + __u32 skb_tcp_flags; + __u64 skb_hwtstamp; +}; + +enum { + SK_BPF_CB_TX_TIMESTAMPING = 1, + SK_BPF_CB_MASK = 1, +}; + +enum { + TCP_BPF_IW = 1001, + TCP_BPF_SNDCWND_CLAMP = 1002, + TCP_BPF_DELACK_MAX = 1003, + TCP_BPF_RTO_MIN = 1004, + TCP_BPF_SYN = 1005, + TCP_BPF_SYN_IP = 1006, + TCP_BPF_SYN_MAC = 1007, + TCP_BPF_SOCK_OPS_CB_FLAGS = 1008, + SK_BPF_CB_FLAGS = 1009, +}; + +enum { + BPF_LOAD_HDR_OPT_TCP_SYN = 1, +}; + +enum { + BPF_FIB_LOOKUP_DIRECT = 1, + BPF_FIB_LOOKUP_OUTPUT = 2, + BPF_FIB_LOOKUP_SKIP_NEIGH = 4, + BPF_FIB_LOOKUP_TBID = 8, + BPF_FIB_LOOKUP_SRC = 16, + BPF_FIB_LOOKUP_MARK = 32, +}; + +enum { + BPF_FIB_LKUP_RET_SUCCESS = 0, + BPF_FIB_LKUP_RET_BLACKHOLE = 1, + BPF_FIB_LKUP_RET_UNREACHABLE = 2, + BPF_FIB_LKUP_RET_PROHIBIT = 3, + BPF_FIB_LKUP_RET_NOT_FWDED = 4, + BPF_FIB_LKUP_RET_FWD_DISABLED = 5, + BPF_FIB_LKUP_RET_UNSUPP_LWT = 6, + BPF_FIB_LKUP_RET_NO_NEIGH = 7, + BPF_FIB_LKUP_RET_FRAG_NEEDED = 8, + BPF_FIB_LKUP_RET_NO_SRC_ADDR = 9, +}; + +struct bpf_fib_lookup { + __u8 family; + __u8 l4_protocol; + __be16 sport; + __be16 dport; + union { + __u16 tot_len; + __u16 mtu_result; + }; + __u32 ifindex; + union { + __u8 tos; + __be32 flowinfo; + __u32 rt_metric; + }; + union { + __be32 ipv4_src; + __u32 ipv6_src[4]; + }; + union { + __be32 ipv4_dst; + __u32 ipv6_dst[4]; + }; + union { + struct { + __be16 h_vlan_proto; + __be16 h_vlan_TCI; + }; + __u32 tbid; + }; + union { + struct { + __u32 mark; + }; + struct { + __u8 smac[6]; + __u8 dmac[6]; + }; + }; +}; + +struct bpf_redir_neigh { + __u32 nh_family; + union { + __be32 ipv4_nh; + __u32 ipv6_nh[4]; + }; +}; + +enum bpf_check_mtu_flags { + BPF_MTU_CHK_SEGS = 1, +}; + +enum bpf_check_mtu_ret { + BPF_MTU_CHK_RET_SUCCESS = 0, + BPF_MTU_CHK_RET_FRAG_NEEDED = 1, + BPF_MTU_CHK_RET_SEGS_TOOBIG = 2, +}; + +struct bpf_sk_lookup { + union { + union { + struct bpf_sock *sk; + }; + __u64 cookie; + }; + __u32 family; + __u32 protocol; + __u32 remote_ip4; + __u32 remote_ip6[4]; + __be16 remote_port; + __u32 local_ip4; + __u32 local_ip6[4]; + __u32 local_port; + __u32 ingress_ifindex; +}; + +struct bpf_dispatcher_prog { + struct bpf_prog *prog; + refcount_t users; +}; + +struct bpf_dispatcher { + struct mutex mutex; + void *func; + struct bpf_dispatcher_prog progs[48]; + int num_progs; + void *image; + void *rw_image; + u32 image_off; + struct bpf_ksym ksym; + struct static_call_key *sc_key; + void *sc_tramp; +}; + +struct sk_reuseport_kern { + struct sk_buff *skb; + struct sock *sk; + struct sock *selected_sk; + struct sock *migrating_sk; + void *data_end; + u32 hash; + u32 reuseport_id; + bool bind_inany; +}; + +struct bpf_flow_dissector { + struct bpf_flow_keys *flow_keys; + const struct sk_buff *skb; + const void *data; + const void *data_end; +}; + +union nf_inet_addr { + __u32 all[4]; + __be32 ip; + __be32 ip6[4]; + struct in_addr in; + struct in6_addr in6; +}; + +struct ip_ct_tcp_state { + u_int32_t td_end; + u_int32_t td_maxend; + u_int32_t td_maxwin; + u_int32_t td_maxack; + u_int8_t td_scale; + u_int8_t flags; +}; + +struct ip_ct_tcp { + struct ip_ct_tcp_state seen[2]; + u_int8_t state; + u_int8_t last_dir; + u_int8_t retrans; + u_int8_t last_index; + u_int32_t last_seq; + u_int32_t last_ack; + u_int32_t last_end; + u_int16_t last_win; + u_int8_t last_wscale; + u_int8_t last_flags; +}; + +union nf_conntrack_man_proto { + __be16 all; + struct { + __be16 port; + } tcp; + struct { + __be16 port; + } udp; + struct { + __be16 id; + } icmp; + struct { + __be16 port; + } dccp; + struct { + __be16 port; + } sctp; + struct { + __be16 key; + } gre; +}; + +struct ip_ct_sctp { + enum sctp_conntrack state; + __be32 vtag[2]; + u8 init[2]; + u8 last_dir; + u8 flags; +}; + +struct compat_sock_fprog { + u16 len; + compat_uptr_t filter; +}; + +typedef int (*bpf_aux_classic_check_t)(struct sock_filter *, unsigned int); + +struct udp6_sock { + struct udp_sock udp; + struct ipv6_pinfo inet6; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct ipv6_bpf_stub { + int (*inet6_bind)(struct sock *, struct sockaddr *, int, u32); + struct sock * (*udp6_lib_lookup)(const struct net *, const struct in6_addr *, __be16, const struct in6_addr *, __be16, int, int, struct udp_table *, struct sk_buff *); + int (*ipv6_setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); + int (*ipv6_getsockopt)(struct sock *, int, int, sockptr_t, sockptr_t); + int (*ipv6_dev_get_saddr)(struct net *, const struct net_device *, const struct in6_addr *, unsigned int, struct in6_addr *); +}; + +struct bpf_tcp_req_attrs { + u32 rcv_tsval; + u32 rcv_tsecr; + u16 mss; + u8 rcv_wscale; + u8 snd_wscale; + u8 ecn_ok; + u8 wscale_ok; + u8 sack_ok; + u8 tstamp_ok; + u8 usec_ts_ok; + u8 reserved[3]; +}; + +struct _strp_msg { + struct strp_msg strp; + int accum_len; +}; + +struct tls_msg { + u8 control; +}; + +struct sk_skb_cb { + unsigned char data[20]; + unsigned char pad[4]; + struct _strp_msg strp; + struct tls_msg tls; + u64 temp_reg; +}; + +enum { + SEG6_LOCAL_ACTION_UNSPEC = 0, + SEG6_LOCAL_ACTION_END = 1, + SEG6_LOCAL_ACTION_END_X = 2, + SEG6_LOCAL_ACTION_END_T = 3, + SEG6_LOCAL_ACTION_END_DX2 = 4, + SEG6_LOCAL_ACTION_END_DX6 = 5, + SEG6_LOCAL_ACTION_END_DX4 = 6, + SEG6_LOCAL_ACTION_END_DT6 = 7, + SEG6_LOCAL_ACTION_END_DT4 = 8, + SEG6_LOCAL_ACTION_END_B6 = 9, + SEG6_LOCAL_ACTION_END_B6_ENCAP = 10, + SEG6_LOCAL_ACTION_END_BM = 11, + SEG6_LOCAL_ACTION_END_S = 12, + SEG6_LOCAL_ACTION_END_AS = 13, + SEG6_LOCAL_ACTION_END_AM = 14, + SEG6_LOCAL_ACTION_END_BPF = 15, + SEG6_LOCAL_ACTION_END_DT46 = 16, + __SEG6_LOCAL_ACTION_MAX = 17, +}; + +struct seg6_bpf_srh_state { + local_lock_t bh_lock; + struct ipv6_sr_hdr *srh; + u16 hdrlen; + bool valid; +}; + +struct tls_strparser { + struct sock *sk; + u32 mark: 8; + u32 stopped: 1; + u32 copy_mode: 1; + u32 mixed_decrypted: 1; + bool msg_ready; + struct strp_msg stm; + struct sk_buff *anchor; + struct work_struct work; +}; + +struct tls_sw_context_rx { + struct crypto_aead *aead_recv; + struct crypto_wait async_wait; + struct sk_buff_head rx_list; + void (*saved_data_ready)(struct sock *); + u8 reader_present; + u8 async_capable: 1; + u8 zc_capable: 1; + u8 reader_contended: 1; + bool key_update_pending; + struct tls_strparser strp; + atomic_t decrypt_pending; + struct sk_buff_head async_hold; + struct wait_queue_head wq; +}; + +struct nf_ct_gre { + unsigned int stream_timeout; + unsigned int timeout; +}; + +struct nf_conntrack_zone { + u16 id; + u8 flags; + u8 dir; +}; + +struct nf_conntrack_man { + union nf_inet_addr u3; + union nf_conntrack_man_proto u; + u_int16_t l3num; +}; + +struct nf_conntrack_tuple { + struct nf_conntrack_man src; + struct { + union nf_inet_addr u3; + union { + __be16 all; + struct { + __be16 port; + } tcp; + struct { + __be16 port; + } udp; + struct { + u_int8_t type; + u_int8_t code; + } icmp; + struct { + __be16 port; + } dccp; + struct { + __be16 port; + } sctp; + struct { + __be16 key; + } gre; + } u; + u_int8_t protonum; + struct {} __nfct_hash_offsetend; + u_int8_t dir; + } dst; +}; + +struct nf_conntrack_tuple_hash { + struct hlist_nulls_node hnnode; + struct nf_conntrack_tuple tuple; +}; + +struct nf_ct_udp { + long unsigned int stream_ts; +}; + +union nf_conntrack_proto { + struct ip_ct_sctp sctp; + struct ip_ct_tcp tcp; + struct nf_ct_udp udp; + struct nf_ct_gre gre; + unsigned int tmpl_padto; +}; + +struct nf_ct_ext; + +struct nf_conn { + struct nf_conntrack ct_general; + spinlock_t lock; + u32 timeout; + struct nf_conntrack_zone zone; + struct nf_conntrack_tuple_hash tuplehash[2]; + long unsigned int status; + possible_net_t ct_net; + struct hlist_node nat_bysource; + struct {} __nfct_init_offset; + struct nf_conn *master; + u_int32_t mark; + u_int32_t secmark; + struct nf_ct_ext *ext; + union nf_conntrack_proto proto; +}; + +struct nf_conn___init { + struct nf_conn ct; +}; + +typedef u64 (*btf_bpf_skb_get_pay_offset)(struct sk_buff *); + +typedef u64 (*btf_bpf_skb_get_nlattr)(struct sk_buff *, u32, u32); + +typedef u64 (*btf_bpf_skb_get_nlattr_nest)(struct sk_buff *, u32, u32); + +typedef u64 (*btf_bpf_skb_load_helper_8)(const struct sk_buff *, const void *, int, int); + +typedef u64 (*btf_bpf_skb_load_helper_8_no_cache)(const struct sk_buff *, int); + +typedef u64 (*btf_bpf_skb_load_helper_16)(const struct sk_buff *, const void *, int, int); + +typedef u64 (*btf_bpf_skb_load_helper_16_no_cache)(const struct sk_buff *, int); + +typedef u64 (*btf_bpf_skb_load_helper_32)(const struct sk_buff *, const void *, int, int); + +typedef u64 (*btf_bpf_skb_load_helper_32_no_cache)(const struct sk_buff *, int); + +typedef u64 (*btf_bpf_skb_store_bytes)(struct sk_buff *, u32, const void *, u32, u64); + +typedef u64 (*btf_bpf_skb_load_bytes)(const struct sk_buff *, u32, void *, u32); + +typedef u64 (*btf_bpf_flow_dissector_load_bytes)(const struct bpf_flow_dissector *, u32, void *, u32); + +typedef u64 (*btf_bpf_skb_load_bytes_relative)(const struct sk_buff *, u32, void *, u32, u32); + +typedef u64 (*btf_bpf_skb_pull_data)(struct sk_buff *, u32); + +typedef u64 (*btf_bpf_sk_fullsock)(struct sock *); + +typedef u64 (*btf_sk_skb_pull_data)(struct sk_buff *, u32); + +typedef u64 (*btf_bpf_l3_csum_replace)(struct sk_buff *, u32, u64, u64, u64); + +typedef u64 (*btf_bpf_l4_csum_replace)(struct sk_buff *, u32, u64, u64, u64); + +typedef u64 (*btf_bpf_csum_diff)(__be32 *, u32, __be32 *, u32, __wsum); + +typedef u64 (*btf_bpf_csum_update)(struct sk_buff *, __wsum); + +typedef u64 (*btf_bpf_csum_level)(struct sk_buff *, u64); + +enum { + BPF_F_NEIGH = 65536, + BPF_F_PEER = 131072, + BPF_F_NEXTHOP = 262144, +}; + +typedef u64 (*btf_bpf_clone_redirect)(struct sk_buff *, u32, u64); + +typedef u64 (*btf_bpf_redirect)(u32, u64); + +typedef u64 (*btf_bpf_redirect_peer)(u32, u64); + +typedef u64 (*btf_bpf_redirect_neigh)(u32, struct bpf_redir_neigh *, int, u64); + +typedef u64 (*btf_bpf_msg_apply_bytes)(struct sk_msg *, u32); + +typedef u64 (*btf_bpf_msg_cork_bytes)(struct sk_msg *, u32); + +typedef u64 (*btf_bpf_msg_pull_data)(struct sk_msg *, u32, u32, u64); + +typedef u64 (*btf_bpf_msg_push_data)(struct sk_msg *, u32, u32, u64); + +typedef u64 (*btf_bpf_msg_pop_data)(struct sk_msg *, u32, u32, u64); + +typedef u64 (*btf_bpf_get_cgroup_classid_curr)(void); + +typedef u64 (*btf_bpf_skb_cgroup_classid)(const struct sk_buff *); + +typedef u64 (*btf_bpf_get_cgroup_classid)(const struct sk_buff *); + +typedef u64 (*btf_bpf_get_route_realm)(const struct sk_buff *); + +typedef u64 (*btf_bpf_get_hash_recalc)(struct sk_buff *); + +typedef u64 (*btf_bpf_set_hash_invalid)(struct sk_buff *); + +typedef u64 (*btf_bpf_set_hash)(struct sk_buff *, u32); + +typedef u64 (*btf_bpf_skb_vlan_push)(struct sk_buff *, __be16, u16); + +typedef u64 (*btf_bpf_skb_vlan_pop)(struct sk_buff *); + +typedef u64 (*btf_bpf_skb_change_proto)(struct sk_buff *, __be16, u64); + +typedef u64 (*btf_bpf_skb_change_type)(struct sk_buff *, u32); + +typedef u64 (*btf_sk_skb_adjust_room)(struct sk_buff *, s32, u32, u64); + +typedef u64 (*btf_bpf_skb_adjust_room)(struct sk_buff *, s32, u32, u64); + +typedef u64 (*btf_bpf_skb_change_tail)(struct sk_buff *, u32, u64); + +typedef u64 (*btf_sk_skb_change_tail)(struct sk_buff *, u32, u64); + +typedef u64 (*btf_bpf_skb_change_head)(struct sk_buff *, u32, u64); + +typedef u64 (*btf_sk_skb_change_head)(struct sk_buff *, u32, u64); + +typedef u64 (*btf_bpf_xdp_get_buff_len)(struct xdp_buff *); + +typedef u64 (*btf_bpf_xdp_adjust_head)(struct xdp_buff *, int); + +typedef u64 (*btf_bpf_xdp_load_bytes)(struct xdp_buff *, u32, void *, u32); + +typedef u64 (*btf_bpf_xdp_store_bytes)(struct xdp_buff *, u32, void *, u32); + +typedef u64 (*btf_bpf_xdp_adjust_tail)(struct xdp_buff *, int); + +typedef u64 (*btf_bpf_xdp_adjust_meta)(struct xdp_buff *, int); + +typedef u64 (*btf_bpf_xdp_redirect)(u32, u64); + +typedef u64 (*btf_bpf_xdp_redirect_map)(struct bpf_map *, u64, u64); + +typedef u64 (*btf_bpf_skb_event_output)(struct sk_buff *, struct bpf_map *, u64, void *, u64); + +typedef u64 (*btf_bpf_skb_get_tunnel_key)(struct sk_buff *, struct bpf_tunnel_key *, u32, u64); + +typedef u64 (*btf_bpf_skb_get_tunnel_opt)(struct sk_buff *, u8 *, u32); + +typedef u64 (*btf_bpf_skb_set_tunnel_key)(struct sk_buff *, const struct bpf_tunnel_key *, u32, u64); + +typedef u64 (*btf_bpf_skb_set_tunnel_opt)(struct sk_buff *, const u8 *, u32); + +typedef u64 (*btf_bpf_skb_under_cgroup)(struct sk_buff *, struct bpf_map *, u32); + +typedef u64 (*btf_bpf_skb_cgroup_id)(const struct sk_buff *); + +typedef u64 (*btf_bpf_skb_ancestor_cgroup_id)(const struct sk_buff *, int); + +typedef u64 (*btf_bpf_sk_cgroup_id)(struct sock *); + +typedef u64 (*btf_bpf_sk_ancestor_cgroup_id)(struct sock *, int); + +typedef u64 (*btf_bpf_xdp_event_output)(struct xdp_buff *, struct bpf_map *, u64, void *, u64); + +typedef u64 (*btf_bpf_get_socket_cookie)(struct sk_buff *); + +typedef u64 (*btf_bpf_get_socket_cookie_sock_addr)(struct bpf_sock_addr_kern *); + +typedef u64 (*btf_bpf_get_socket_cookie_sock)(struct sock *); + +typedef u64 (*btf_bpf_get_socket_ptr_cookie)(struct sock *); + +typedef u64 (*btf_bpf_get_socket_cookie_sock_ops)(struct bpf_sock_ops_kern *); + +typedef u64 (*btf_bpf_get_netns_cookie)(struct sk_buff *); + +typedef u64 (*btf_bpf_get_netns_cookie_sock)(struct sock *); + +typedef u64 (*btf_bpf_get_netns_cookie_sock_addr)(struct bpf_sock_addr_kern *); + +typedef u64 (*btf_bpf_get_netns_cookie_sock_ops)(struct bpf_sock_ops_kern *); + +typedef u64 (*btf_bpf_get_netns_cookie_sk_msg)(struct sk_msg *); + +typedef u64 (*btf_bpf_get_socket_uid)(struct sk_buff *); + +typedef u64 (*btf_bpf_sk_setsockopt)(struct sock *, int, int, char *, int); + +typedef u64 (*btf_bpf_sk_getsockopt)(struct sock *, int, int, char *, int); + +typedef u64 (*btf_bpf_unlocked_sk_setsockopt)(struct sock *, int, int, char *, int); + +typedef u64 (*btf_bpf_unlocked_sk_getsockopt)(struct sock *, int, int, char *, int); + +typedef u64 (*btf_bpf_sock_addr_setsockopt)(struct bpf_sock_addr_kern *, int, int, char *, int); + +typedef u64 (*btf_bpf_sock_addr_getsockopt)(struct bpf_sock_addr_kern *, int, int, char *, int); + +typedef u64 (*btf_bpf_sock_ops_setsockopt)(struct bpf_sock_ops_kern *, int, int, char *, int); + +typedef u64 (*btf_bpf_sock_ops_getsockopt)(struct bpf_sock_ops_kern *, int, int, char *, int); + +typedef u64 (*btf_bpf_sock_ops_cb_flags_set)(struct bpf_sock_ops_kern *, int); + +typedef u64 (*btf_bpf_bind)(struct bpf_sock_addr_kern *, struct sockaddr *, int); + +typedef u64 (*btf_bpf_skb_get_xfrm_state)(struct sk_buff *, u32, struct bpf_xfrm_state *, u32, u64); + +typedef u64 (*btf_bpf_xdp_fib_lookup)(struct xdp_buff *, struct bpf_fib_lookup *, int, u32); + +typedef u64 (*btf_bpf_skb_fib_lookup)(struct sk_buff *, struct bpf_fib_lookup *, int, u32); + +typedef u64 (*btf_bpf_skb_check_mtu)(struct sk_buff *, u32, u32 *, s32, u64); + +typedef u64 (*btf_bpf_xdp_check_mtu)(struct xdp_buff *, u32, u32 *, s32, u64); + +typedef u64 (*btf_bpf_lwt_in_push_encap)(struct sk_buff *, u32, void *, u32); + +typedef u64 (*btf_bpf_lwt_xmit_push_encap)(struct sk_buff *, u32, void *, u32); + +typedef u64 (*btf_bpf_lwt_seg6_store_bytes)(struct sk_buff *, u32, const void *, u32); + +typedef u64 (*btf_bpf_lwt_seg6_action)(struct sk_buff *, u32, void *, u32); + +typedef u64 (*btf_bpf_lwt_seg6_adjust_srh)(struct sk_buff *, u32, s32); + +typedef u64 (*btf_bpf_skc_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_sk_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_sk_lookup_udp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_tc_skc_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_tc_sk_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_tc_sk_lookup_udp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_sk_release)(struct sock *); + +typedef u64 (*btf_bpf_xdp_sk_lookup_udp)(struct xdp_buff *, struct bpf_sock_tuple *, u32, u32, u64); + +typedef u64 (*btf_bpf_xdp_skc_lookup_tcp)(struct xdp_buff *, struct bpf_sock_tuple *, u32, u32, u64); + +typedef u64 (*btf_bpf_xdp_sk_lookup_tcp)(struct xdp_buff *, struct bpf_sock_tuple *, u32, u32, u64); + +typedef u64 (*btf_bpf_sock_addr_skc_lookup_tcp)(struct bpf_sock_addr_kern *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_sock_addr_sk_lookup_tcp)(struct bpf_sock_addr_kern *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_sock_addr_sk_lookup_udp)(struct bpf_sock_addr_kern *, struct bpf_sock_tuple *, u32, u64, u64); + +typedef u64 (*btf_bpf_tcp_sock)(struct sock *); + +typedef u64 (*btf_bpf_get_listener_sock)(struct sock *); + +typedef u64 (*btf_bpf_skb_ecn_set_ce)(struct sk_buff *); + +typedef u64 (*btf_bpf_tcp_check_syncookie)(struct sock *, void *, u32, struct tcphdr *, u32); + +typedef u64 (*btf_bpf_tcp_gen_syncookie)(struct sock *, void *, u32, struct tcphdr *, u32); + +typedef u64 (*btf_bpf_sk_assign)(struct sk_buff *, struct sock *, u64); + +typedef u64 (*btf_bpf_sock_ops_load_hdr_opt)(struct bpf_sock_ops_kern *, void *, u32, u64); + +typedef u64 (*btf_bpf_sock_ops_store_hdr_opt)(struct bpf_sock_ops_kern *, const void *, u32, u64); + +typedef u64 (*btf_bpf_sock_ops_reserve_hdr_opt)(struct bpf_sock_ops_kern *, u32, u64); + +typedef u64 (*btf_bpf_skb_set_tstamp)(struct sk_buff *, u64, u32); + +typedef u64 (*btf_bpf_tcp_raw_gen_syncookie_ipv4)(struct iphdr *, struct tcphdr *, u32); + +typedef u64 (*btf_bpf_tcp_raw_gen_syncookie_ipv6)(struct ipv6hdr *, struct tcphdr *, u32); + +typedef u64 (*btf_bpf_tcp_raw_check_syncookie_ipv4)(struct iphdr *, struct tcphdr *); + +typedef u64 (*btf_bpf_tcp_raw_check_syncookie_ipv6)(struct ipv6hdr *, struct tcphdr *); + +typedef u64 (*btf_sk_select_reuseport)(struct sk_reuseport_kern *, struct bpf_map *, void *, u32); + +typedef u64 (*btf_sk_reuseport_load_bytes)(const struct sk_reuseport_kern *, u32, void *, u32); + +typedef u64 (*btf_sk_reuseport_load_bytes_relative)(const struct sk_reuseport_kern *, u32, void *, u32, u32); + +typedef u64 (*btf_bpf_sk_lookup_assign)(struct bpf_sk_lookup_kern *, struct sock *, u64); + +typedef u64 (*btf_bpf_skc_to_tcp6_sock)(struct sock *); + +typedef u64 (*btf_bpf_skc_to_tcp_sock)(struct sock *); + +typedef u64 (*btf_bpf_skc_to_tcp_timewait_sock)(struct sock *); + +typedef u64 (*btf_bpf_skc_to_tcp_request_sock)(struct sock *); + +typedef u64 (*btf_bpf_skc_to_udp6_sock)(struct sock *); + +typedef u64 (*btf_bpf_skc_to_unix_sock)(struct sock *); + +typedef u64 (*btf_bpf_skc_to_mptcp_sock)(struct sock *); + +typedef u64 (*btf_bpf_sock_from_file)(struct file *); + +enum netdev_xdp_rx_metadata { + NETDEV_XDP_RX_METADATA_TIMESTAMP = 1, + NETDEV_XDP_RX_METADATA_HASH = 2, + NETDEV_XDP_RX_METADATA_VLAN_TAG = 4, +}; + +enum netdev_xsk_flags { + NETDEV_XSK_FLAGS_TX_TIMESTAMP = 1, + NETDEV_XSK_FLAGS_TX_CHECKSUM = 2, + NETDEV_XSK_FLAGS_TX_LAUNCH_TIME_FIFO = 4, +}; + +enum netdev_qstats_scope { + NETDEV_QSTATS_SCOPE_QUEUE = 1, +}; + +enum netdev_napi_threaded { + NETDEV_NAPI_THREADED_DISABLED = 0, + NETDEV_NAPI_THREADED_ENABLED = 1, +}; + +enum { + NETDEV_A_DEV_IFINDEX = 1, + NETDEV_A_DEV_PAD = 2, + NETDEV_A_DEV_XDP_FEATURES = 3, + NETDEV_A_DEV_XDP_ZC_MAX_SEGS = 4, + NETDEV_A_DEV_XDP_RX_METADATA_FEATURES = 5, + NETDEV_A_DEV_XSK_FEATURES = 6, + __NETDEV_A_DEV_MAX = 7, + NETDEV_A_DEV_MAX = 6, +}; + +enum { + NETDEV_A_NAPI_IFINDEX = 1, + NETDEV_A_NAPI_ID = 2, + NETDEV_A_NAPI_IRQ = 3, + NETDEV_A_NAPI_PID = 4, + NETDEV_A_NAPI_DEFER_HARD_IRQS = 5, + NETDEV_A_NAPI_GRO_FLUSH_TIMEOUT = 6, + NETDEV_A_NAPI_IRQ_SUSPEND_TIMEOUT = 7, + NETDEV_A_NAPI_THREADED = 8, + __NETDEV_A_NAPI_MAX = 9, + NETDEV_A_NAPI_MAX = 8, +}; + +enum { + NETDEV_A_QSTATS_IFINDEX = 1, + NETDEV_A_QSTATS_QUEUE_TYPE = 2, + NETDEV_A_QSTATS_QUEUE_ID = 3, + NETDEV_A_QSTATS_SCOPE = 4, + NETDEV_A_QSTATS_RX_PACKETS = 8, + NETDEV_A_QSTATS_RX_BYTES = 9, + NETDEV_A_QSTATS_TX_PACKETS = 10, + NETDEV_A_QSTATS_TX_BYTES = 11, + NETDEV_A_QSTATS_RX_ALLOC_FAIL = 12, + NETDEV_A_QSTATS_RX_HW_DROPS = 13, + NETDEV_A_QSTATS_RX_HW_DROP_OVERRUNS = 14, + NETDEV_A_QSTATS_RX_CSUM_COMPLETE = 15, + NETDEV_A_QSTATS_RX_CSUM_UNNECESSARY = 16, + NETDEV_A_QSTATS_RX_CSUM_NONE = 17, + NETDEV_A_QSTATS_RX_CSUM_BAD = 18, + NETDEV_A_QSTATS_RX_HW_GRO_PACKETS = 19, + NETDEV_A_QSTATS_RX_HW_GRO_BYTES = 20, + NETDEV_A_QSTATS_RX_HW_GRO_WIRE_PACKETS = 21, + NETDEV_A_QSTATS_RX_HW_GRO_WIRE_BYTES = 22, + NETDEV_A_QSTATS_RX_HW_DROP_RATELIMITS = 23, + NETDEV_A_QSTATS_TX_HW_DROPS = 24, + NETDEV_A_QSTATS_TX_HW_DROP_ERRORS = 25, + NETDEV_A_QSTATS_TX_CSUM_NONE = 26, + NETDEV_A_QSTATS_TX_NEEDS_CSUM = 27, + NETDEV_A_QSTATS_TX_HW_GSO_PACKETS = 28, + NETDEV_A_QSTATS_TX_HW_GSO_BYTES = 29, + NETDEV_A_QSTATS_TX_HW_GSO_WIRE_PACKETS = 30, + NETDEV_A_QSTATS_TX_HW_GSO_WIRE_BYTES = 31, + NETDEV_A_QSTATS_TX_HW_DROP_RATELIMITS = 32, + NETDEV_A_QSTATS_TX_STOP = 33, + NETDEV_A_QSTATS_TX_WAKE = 34, + __NETDEV_A_QSTATS_MAX = 35, + NETDEV_A_QSTATS_MAX = 34, +}; + +enum { + NETDEV_A_DMABUF_IFINDEX = 1, + NETDEV_A_DMABUF_QUEUES = 2, + NETDEV_A_DMABUF_FD = 3, + NETDEV_A_DMABUF_ID = 4, + __NETDEV_A_DMABUF_MAX = 5, + NETDEV_A_DMABUF_MAX = 4, +}; + +enum { + NETDEV_CMD_DEV_GET = 1, + NETDEV_CMD_DEV_ADD_NTF = 2, + NETDEV_CMD_DEV_DEL_NTF = 3, + NETDEV_CMD_DEV_CHANGE_NTF = 4, + NETDEV_CMD_PAGE_POOL_GET = 5, + NETDEV_CMD_PAGE_POOL_ADD_NTF = 6, + NETDEV_CMD_PAGE_POOL_DEL_NTF = 7, + NETDEV_CMD_PAGE_POOL_CHANGE_NTF = 8, + NETDEV_CMD_PAGE_POOL_STATS_GET = 9, + NETDEV_CMD_QUEUE_GET = 10, + NETDEV_CMD_NAPI_GET = 11, + NETDEV_CMD_QSTATS_GET = 12, + NETDEV_CMD_BIND_RX = 13, + NETDEV_CMD_NAPI_SET = 14, + NETDEV_CMD_BIND_TX = 15, + __NETDEV_CMD_MAX = 16, + NETDEV_CMD_MAX = 15, +}; + +enum { + NETDEV_NLGRP_MGMT = 0, + NETDEV_NLGRP_PAGE_POOL = 1, +}; + +struct netdev_nl_dump_ctx { + long unsigned int ifindex; + unsigned int rxq_idx; + unsigned int txq_idx; + unsigned int napi_id; +}; + +enum ethtool_tcp_data_split { + ETHTOOL_TCP_DATA_SPLIT_UNKNOWN = 0, + ETHTOOL_TCP_DATA_SPLIT_DISABLED = 1, + ETHTOOL_TCP_DATA_SPLIT_ENABLED = 2, +}; + +struct netpoll; + +struct netpoll_info { + refcount_t refcnt; + struct semaphore dev_lock; + struct sk_buff_head txq; + struct delayed_work tx_work; + struct netpoll *netpoll; + struct callback_head rcu; +}; + +union inet_addr { + __be32 ip; + struct in6_addr in6; +}; + +struct netpoll { + struct net_device *dev; + netdevice_tracker dev_tracker; + char dev_name[16]; + u8 dev_mac[6]; + const char *name; + union inet_addr local_ip; + union inet_addr remote_ip; + bool ipv6; + u16 local_port; + u16 remote_port; + u8 remote_mac[6]; + struct sk_buff_head skb_pool; + struct work_struct refill_wq; +}; + +struct vlan_ethhdr { + union { + struct { + unsigned char h_dest[6]; + unsigned char h_source[6]; + }; + struct { + unsigned char h_dest[6]; + unsigned char h_source[6]; + } addrs; + }; + __be16 h_vlan_proto; + __be16 h_vlan_TCI; + __be16 h_vlan_encapsulated_proto; +}; + +struct dm_hw_stat_delta { + long unsigned int last_rx; + long unsigned int last_drop_val; + struct callback_head rcu; +}; + +struct net_dm_drop_point { + __u8 pc[8]; + __u32 count; +}; + +struct net_dm_alert_msg { + __u32 entries; + struct net_dm_drop_point points[0]; +}; + +enum { + NET_DM_CMD_UNSPEC = 0, + NET_DM_CMD_ALERT = 1, + NET_DM_CMD_CONFIG = 2, + NET_DM_CMD_START = 3, + NET_DM_CMD_STOP = 4, + NET_DM_CMD_PACKET_ALERT = 5, + NET_DM_CMD_CONFIG_GET = 6, + NET_DM_CMD_CONFIG_NEW = 7, + NET_DM_CMD_STATS_GET = 8, + NET_DM_CMD_STATS_NEW = 9, + _NET_DM_CMD_MAX = 10, +}; + +enum net_dm_attr { + NET_DM_ATTR_UNSPEC = 0, + NET_DM_ATTR_ALERT_MODE = 1, + NET_DM_ATTR_PC = 2, + NET_DM_ATTR_SYMBOL = 3, + NET_DM_ATTR_IN_PORT = 4, + NET_DM_ATTR_TIMESTAMP = 5, + NET_DM_ATTR_PROTO = 6, + NET_DM_ATTR_PAYLOAD = 7, + NET_DM_ATTR_PAD = 8, + NET_DM_ATTR_TRUNC_LEN = 9, + NET_DM_ATTR_ORIG_LEN = 10, + NET_DM_ATTR_QUEUE_LEN = 11, + NET_DM_ATTR_STATS = 12, + NET_DM_ATTR_HW_STATS = 13, + NET_DM_ATTR_ORIGIN = 14, + NET_DM_ATTR_HW_TRAP_GROUP_NAME = 15, + NET_DM_ATTR_HW_TRAP_NAME = 16, + NET_DM_ATTR_HW_ENTRIES = 17, + NET_DM_ATTR_HW_ENTRY = 18, + NET_DM_ATTR_HW_TRAP_COUNT = 19, + NET_DM_ATTR_SW_DROPS = 20, + NET_DM_ATTR_HW_DROPS = 21, + NET_DM_ATTR_FLOW_ACTION_COOKIE = 22, + NET_DM_ATTR_REASON = 23, + __NET_DM_ATTR_MAX = 24, + NET_DM_ATTR_MAX = 23, +}; + +enum net_dm_alert_mode { + NET_DM_ALERT_MODE_SUMMARY = 0, + NET_DM_ALERT_MODE_PACKET = 1, +}; + +enum { + NET_DM_ATTR_PORT_NETDEV_IFINDEX = 0, + NET_DM_ATTR_PORT_NETDEV_NAME = 1, + __NET_DM_ATTR_PORT_MAX = 2, + NET_DM_ATTR_PORT_MAX = 1, +}; + +enum { + NET_DM_ATTR_STATS_DROPPED = 0, + __NET_DM_ATTR_STATS_MAX = 1, + NET_DM_ATTR_STATS_MAX = 0, +}; + +enum net_dm_origin { + NET_DM_ORIGIN_SW = 0, + NET_DM_ORIGIN_HW = 1, +}; + +enum skb_drop_reason_subsys { + SKB_DROP_REASON_SUBSYS_CORE = 0, + SKB_DROP_REASON_SUBSYS_MAC80211_UNUSABLE = 1, + SKB_DROP_REASON_SUBSYS_OPENVSWITCH = 2, + SKB_DROP_REASON_SUBSYS_NUM = 3, +}; + +struct drop_reason_list { + const char * const *reasons; + size_t n_reasons; +}; + +struct devlink_trap_metadata { + const char *trap_name; + const char *trap_group_name; + struct net_device *input_dev; + netdevice_tracker dev_tracker; + const struct flow_action_cookie *fa_cookie; + enum devlink_trap_type trap_type; +}; + +struct net_dm_stats { + u64_stats_t dropped; + struct u64_stats_sync syncp; +}; + +struct net_dm_hw_entry { + char trap_name[40]; + u32 count; +}; + +struct net_dm_hw_entries { + u32 num_entries; + struct net_dm_hw_entry entries[0]; +}; + +struct per_cpu_dm_data { + raw_spinlock_t lock; + union { + struct sk_buff *skb; + struct net_dm_hw_entries *hw_entries; + }; + struct sk_buff_head drop_queue; + struct work_struct dm_alert_work; + struct timer_list send_timer; + struct net_dm_stats stats; +}; + +struct net_dm_alert_ops { + void (*kfree_skb_probe)(void *, struct sk_buff *, void *, enum skb_drop_reason, struct sock *); + void (*napi_poll_probe)(void *, struct napi_struct *, int, int); + void (*work_item_func)(struct work_struct *); + void (*hw_work_item_func)(struct work_struct *); + void (*hw_trap_probe)(void *, const struct devlink *, struct sk_buff *, const struct devlink_trap_metadata *); +}; + +struct net_dm_skb_cb { + union { + struct devlink_trap_metadata *hw_metadata; + void *pc; + }; + enum skb_drop_reason reason; +}; + +struct clock_identity { + u8 id[8]; +}; + +struct port_identity { + struct clock_identity clock_identity; + __be16 port_number; +}; + +struct ptp_header { + u8 tsmt; + u8 ver; + __be16 message_length; + u8 domain_number; + u8 reserved1; + u8 flag_field[2]; + __be64 correction; + __be32 reserved2; + struct port_identity source_port_identity; + __be16 sequence_id; + u8 control; + u8 log_message_interval; +} __attribute__((packed)); + +enum bpf_ret_code { + BPF_OK = 0, + BPF_DROP = 2, + BPF_REDIRECT = 7, + BPF_LWT_REROUTE = 128, + BPF_FLOW_DISSECTOR_CONTINUE = 129, +}; + +enum { + LWT_BPF_PROG_UNSPEC = 0, + LWT_BPF_PROG_FD = 1, + LWT_BPF_PROG_NAME = 2, + __LWT_BPF_PROG_MAX = 3, +}; + +enum { + LWT_BPF_UNSPEC = 0, + LWT_BPF_IN = 1, + LWT_BPF_OUT = 2, + LWT_BPF_XMIT = 3, + LWT_BPF_XMIT_HEADROOM = 4, + __LWT_BPF_MAX = 5, +}; + +struct gre_base_hdr { + __be16 flags; + __be16 protocol; +}; + +struct bpf_lwt_prog { + struct bpf_prog *prog; + char *name; +}; + +struct bpf_lwt { + struct bpf_lwt_prog in; + struct bpf_lwt_prog out; + struct bpf_lwt_prog xmit; + int family; +}; + +enum { + SK_DIAG_BPF_STORAGE_REQ_NONE = 0, + SK_DIAG_BPF_STORAGE_REQ_MAP_FD = 1, + __SK_DIAG_BPF_STORAGE_REQ_MAX = 2, +}; + +enum { + SK_DIAG_BPF_STORAGE_REP_NONE = 0, + SK_DIAG_BPF_STORAGE = 1, + __SK_DIAG_BPF_STORAGE_REP_MAX = 2, +}; + +enum { + SK_DIAG_BPF_STORAGE_NONE = 0, + SK_DIAG_BPF_STORAGE_PAD = 1, + SK_DIAG_BPF_STORAGE_MAP_ID = 2, + SK_DIAG_BPF_STORAGE_MAP_VALUE = 3, + __SK_DIAG_BPF_STORAGE_MAX = 4, +}; + +typedef u64 (*btf_bpf_sk_storage_get)(struct bpf_map *, struct sock *, void *, u64, gfp_t); + +typedef u64 (*btf_bpf_sk_storage_delete)(struct bpf_map *, struct sock *); + +typedef u64 (*btf_bpf_sk_storage_get_tracing)(struct bpf_map *, struct sock *, void *, u64, gfp_t); + +typedef u64 (*btf_bpf_sk_storage_delete_tracing)(struct bpf_map *, struct sock *); + +struct bpf_sk_storage_diag { + u32 nr_maps; + struct bpf_map *maps[0]; +}; + +struct bpf_iter_seq_sk_storage_map_info { + struct bpf_map *map; + unsigned int bucket_id; + unsigned int skip_elems; +}; + +struct bpf_iter__bpf_sk_storage_map { + union { + struct bpf_iter_meta *meta; + }; + union { + struct bpf_map *map; + }; + union { + struct sock *sk; + }; + union { + void *value; + }; +}; + +enum tc_link_layer { + TC_LINKLAYER_UNAWARE = 0, + TC_LINKLAYER_ETHERNET = 1, + TC_LINKLAYER_ATM = 2, +}; + +enum { + TCA_STAB_UNSPEC = 0, + TCA_STAB_BASE = 1, + TCA_STAB_DATA = 2, + __TCA_STAB_MAX = 3, +}; + +struct qdisc_rate_table { + struct tc_ratespec rate; + u32 data[256]; + struct qdisc_rate_table *next; + int refcnt; +}; + +struct Qdisc_class_common { + u32 classid; + unsigned int filter_cnt; + struct hlist_node hnode; +}; + +struct Qdisc_class_hash { + struct hlist_head *hash; + unsigned int hashsize; + unsigned int hashmask; + unsigned int hashelems; +}; + +struct qdisc_watchdog { + struct hrtimer timer; + struct Qdisc *qdisc; +}; + +struct tc_query_caps_base { + enum tc_setup_type type; + void *caps; +}; + +enum tc_root_command { + TC_ROOT_GRAFT = 0, +}; + +struct tc_root_qopt_offload { + enum tc_root_command command; + u32 handle; + bool ingress; +}; + +struct check_loop_arg { + struct qdisc_walker w; + struct Qdisc *p; + int depth; +}; + +struct tcf_bind_args { + struct tcf_walker w; + long unsigned int base; + long unsigned int cl; + u32 classid; +}; + +struct tc_bind_class_args { + struct qdisc_walker w; + long unsigned int new_cl; + u32 portid; + u32 clid; +}; + +struct qdisc_dump_args { + struct qdisc_walker w; + struct sk_buff *skb; + struct netlink_callback *cb; +}; + +struct bpf_sched_data { + struct qdisc_watchdog watchdog; +}; + +struct bpf_sk_buff_ptr { + struct sk_buff *skb; +}; + +enum qdisc_ops_kf_flags { + QDISC_OPS_KF_COMMON = 0, + QDISC_OPS_KF_ENQUEUE = 1, + QDISC_OPS_KF_DEQUEUE = 2, +}; + +struct bpf_struct_ops_Qdisc_ops { + struct bpf_struct_ops_common_value common; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct Qdisc_ops data; + long: 64; + long: 64; +}; + +enum netlink_attribute_type { + NL_ATTR_TYPE_INVALID = 0, + NL_ATTR_TYPE_FLAG = 1, + NL_ATTR_TYPE_U8 = 2, + NL_ATTR_TYPE_U16 = 3, + NL_ATTR_TYPE_U32 = 4, + NL_ATTR_TYPE_U64 = 5, + NL_ATTR_TYPE_S8 = 6, + NL_ATTR_TYPE_S16 = 7, + NL_ATTR_TYPE_S32 = 8, + NL_ATTR_TYPE_S64 = 9, + NL_ATTR_TYPE_BINARY = 10, + NL_ATTR_TYPE_STRING = 11, + NL_ATTR_TYPE_NUL_STRING = 12, + NL_ATTR_TYPE_NESTED = 13, + NL_ATTR_TYPE_NESTED_ARRAY = 14, + NL_ATTR_TYPE_BITFIELD32 = 15, + NL_ATTR_TYPE_SINT = 16, + NL_ATTR_TYPE_UINT = 17, +}; + +enum netlink_policy_type_attr { + NL_POLICY_TYPE_ATTR_UNSPEC = 0, + NL_POLICY_TYPE_ATTR_TYPE = 1, + NL_POLICY_TYPE_ATTR_MIN_VALUE_S = 2, + NL_POLICY_TYPE_ATTR_MAX_VALUE_S = 3, + NL_POLICY_TYPE_ATTR_MIN_VALUE_U = 4, + NL_POLICY_TYPE_ATTR_MAX_VALUE_U = 5, + NL_POLICY_TYPE_ATTR_MIN_LENGTH = 6, + NL_POLICY_TYPE_ATTR_MAX_LENGTH = 7, + NL_POLICY_TYPE_ATTR_POLICY_IDX = 8, + NL_POLICY_TYPE_ATTR_POLICY_MAXTYPE = 9, + NL_POLICY_TYPE_ATTR_BITFIELD32_MASK = 10, + NL_POLICY_TYPE_ATTR_PAD = 11, + NL_POLICY_TYPE_ATTR_MASK = 12, + __NL_POLICY_TYPE_ATTR_MAX = 13, + NL_POLICY_TYPE_ATTR_MAX = 12, +}; + +struct netlink_policy_dump_state { + unsigned int policy_idx; + unsigned int attr_idx; + unsigned int n_alloc; + struct { + const struct nla_policy *policy; + unsigned int maxtype; + } policies[0]; +}; + +struct bpf_nf_ctx { + const struct nf_hook_state *state; + struct sk_buff *skb; +}; + +struct trace_event_raw_bpf_trigger_tp { + struct trace_entry ent; + int nonce; + char __data[0]; +}; + +struct trace_event_raw_bpf_test_finish { + struct trace_entry ent; + int err; + char __data[0]; +}; + +struct trace_event_data_offsets_bpf_trigger_tp {}; + +struct trace_event_data_offsets_bpf_test_finish {}; + +typedef void (*btf_trace_bpf_trigger_tp)(void *, int); + +typedef void (*btf_trace_bpf_test_finish)(void *, int *); + +struct bpf_test_timer { + enum { + NO_PREEMPT = 0, + NO_MIGRATE = 1, + } mode; + u32 i; + u64 time_start; + u64 time_spent; +}; + +struct xdp_page_head { + struct xdp_buff orig_ctx; + struct xdp_buff ctx; + union { + struct { + struct {} __empty_frame; + struct xdp_frame frame[0]; + }; + struct { + struct {} __empty_data; + u8 data[0]; + }; + }; +}; + +struct xdp_test_data { + struct xdp_buff *orig_ctx; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct xdp_rxq_info rxq; + struct net_device *dev; + struct page_pool *pp; + struct xdp_frame **frames; + struct sk_buff **skbs; + struct xdp_mem_info mem; + u32 batch_size; + u32 frame_cnt; + long: 64; + long: 64; +}; + +struct bpf_fentry_test_t { + struct bpf_fentry_test_t *a; +}; + +struct prog_test_member1 { + int a; +}; + +struct prog_test_member { + struct prog_test_member1 m; + int c; +}; + +struct prog_test_ref_kfunc { + int a; + int b; + struct prog_test_member memb; + struct prog_test_ref_kfunc *next; + refcount_t cnt; +}; + +struct bpf_raw_tp_test_run_info { + struct bpf_prog *prog; + void *ctx; + u32 retval; +}; + +enum { + ETHTOOL_A_BITSET_BIT_UNSPEC = 0, + ETHTOOL_A_BITSET_BIT_INDEX = 1, + ETHTOOL_A_BITSET_BIT_NAME = 2, + ETHTOOL_A_BITSET_BIT_VALUE = 3, + __ETHTOOL_A_BITSET_BIT_CNT = 4, + ETHTOOL_A_BITSET_BIT_MAX = 3, +}; + +enum { + ETHTOOL_A_BITSET_BITS_UNSPEC = 0, + ETHTOOL_A_BITSET_BITS_BIT = 1, + __ETHTOOL_A_BITSET_BITS_CNT = 2, + ETHTOOL_A_BITSET_BITS_MAX = 1, +}; + +enum { + ETHTOOL_A_BITSET_UNSPEC = 0, + ETHTOOL_A_BITSET_NOMASK = 1, + ETHTOOL_A_BITSET_SIZE = 2, + ETHTOOL_A_BITSET_BITS = 3, + ETHTOOL_A_BITSET_VALUE = 4, + ETHTOOL_A_BITSET_MASK = 5, + __ETHTOOL_A_BITSET_CNT = 6, + ETHTOOL_A_BITSET_MAX = 5, +}; + +struct linkmodes_reply_data { + struct ethnl_reply_data base; + struct ethtool_link_ksettings ksettings; + struct ethtool_link_settings *lsettings; + bool peer_empty; +}; + +struct debug_reply_data { + struct ethnl_reply_data base; + u32 msg_mask; +}; + +enum ethtool_supported_ring_param { + ETHTOOL_RING_USE_RX_BUF_LEN = 1, + ETHTOOL_RING_USE_CQE_SIZE = 2, + ETHTOOL_RING_USE_TX_PUSH = 4, + ETHTOOL_RING_USE_RX_PUSH = 8, + ETHTOOL_RING_USE_TX_PUSH_BUF_LEN = 16, + ETHTOOL_RING_USE_TCP_DATA_SPLIT = 32, + ETHTOOL_RING_USE_HDS_THRS = 64, +}; + +struct rings_reply_data { + struct ethnl_reply_data base; + struct ethtool_ringparam ringparam; + struct kernel_ethtool_ringparam kernel_ringparam; + u32 supported_ring_params; +}; + +struct eee_reply_data { + struct ethnl_reply_data base; + struct ethtool_keee eee; +}; + +enum ethtool_fec_config_bits { + ETHTOOL_FEC_NONE_BIT = 0, + ETHTOOL_FEC_AUTO_BIT = 1, + ETHTOOL_FEC_OFF_BIT = 2, + ETHTOOL_FEC_RS_BIT = 3, + ETHTOOL_FEC_BASER_BIT = 4, + ETHTOOL_FEC_LLRS_BIT = 5, +}; + +enum { + ETHTOOL_A_FEC_STAT_UNSPEC = 0, + ETHTOOL_A_FEC_STAT_PAD = 1, + ETHTOOL_A_FEC_STAT_CORRECTED = 2, + ETHTOOL_A_FEC_STAT_UNCORR = 3, + ETHTOOL_A_FEC_STAT_CORR_BITS = 4, + __ETHTOOL_A_FEC_STAT_CNT = 5, + ETHTOOL_A_FEC_STAT_MAX = 4, +}; + +struct fec_stat_grp { + u64 stats[9]; + u8 cnt; +}; + +struct fec_reply_data { + struct ethnl_reply_data base; + long unsigned int fec_link_modes[2]; + u32 active_fec; + u8 fec_auto; + struct fec_stat_grp corr; + struct fec_stat_grp uncorr; + struct fec_stat_grp corr_bits; +}; + +enum { + ETHTOOL_A_MM_STAT_UNSPEC = 0, + ETHTOOL_A_MM_STAT_PAD = 1, + ETHTOOL_A_MM_STAT_REASSEMBLY_ERRORS = 2, + ETHTOOL_A_MM_STAT_SMD_ERRORS = 3, + ETHTOOL_A_MM_STAT_REASSEMBLY_OK = 4, + ETHTOOL_A_MM_STAT_RX_FRAG_COUNT = 5, + ETHTOOL_A_MM_STAT_TX_FRAG_COUNT = 6, + ETHTOOL_A_MM_STAT_HOLD_COUNT = 7, + __ETHTOOL_A_MM_STAT_CNT = 8, + ETHTOOL_A_MM_STAT_MAX = 7, +}; + +enum ethtool_mmsv_event { + ETHTOOL_MMSV_LP_SENT_VERIFY_MPACKET = 0, + ETHTOOL_MMSV_LD_SENT_VERIFY_MPACKET = 1, + ETHTOOL_MMSV_LP_SENT_RESPONSE_MPACKET = 2, +}; + +enum ethtool_mpacket { + ETHTOOL_MPACKET_VERIFY = 0, + ETHTOOL_MPACKET_RESPONSE = 1, +}; + +struct ethtool_mmsv; + +struct ethtool_mmsv_ops { + void (*configure_tx)(struct ethtool_mmsv *, bool); + void (*configure_pmac)(struct ethtool_mmsv *, bool); + void (*send_mpacket)(struct ethtool_mmsv *, enum ethtool_mpacket); +}; + +struct ethtool_mmsv { + const struct ethtool_mmsv_ops *ops; + struct net_device *dev; + spinlock_t lock; + enum ethtool_mm_verify_status status; + struct timer_list verify_timer; + bool verify_enabled; + int verify_retries; + bool pmac_enabled; + u32 verify_time; + bool tx_enabled; +}; + +struct mm_reply_data { + struct ethnl_reply_data base; + struct ethtool_mm_state state; + struct ethtool_mm_stats stats; +}; + +enum { + ETHTOOL_A_C33_PSE_PW_LIMIT_UNSPEC = 0, + ETHTOOL_A_C33_PSE_PW_LIMIT_MIN = 1, + ETHTOOL_A_C33_PSE_PW_LIMIT_MAX = 2, + __ETHTOOL_A_C33_PSE_PW_LIMIT_CNT = 3, + __ETHTOOL_A_C33_PSE_PW_LIMIT_MAX = 2, +}; + +enum { + ETHTOOL_A_PSE_NTF_HEADER = 1, + ETHTOOL_A_PSE_NTF_EVENTS = 2, + __ETHTOOL_A_PSE_NTF_CNT = 3, + ETHTOOL_A_PSE_NTF_MAX = 2, +}; + +struct pse_reply_data { + struct ethnl_reply_data base; + struct ethtool_pse_control_status status; +}; + +enum ip_conntrack_info { + IP_CT_ESTABLISHED = 0, + IP_CT_RELATED = 1, + IP_CT_NEW = 2, + IP_CT_IS_REPLY = 3, + IP_CT_ESTABLISHED_REPLY = 3, + IP_CT_RELATED_REPLY = 4, + IP_CT_NUMBER = 5, + IP_CT_UNTRACKED = 7, +}; + +enum nf_dev_hooks { + NF_NETDEV_INGRESS = 0, + NF_NETDEV_EGRESS = 1, + NF_NETDEV_NUMHOOKS = 2, +}; + +struct nf_hook_entries_rcu_head { + struct callback_head head; + void *allocation; +}; + +enum nf_nat_manip_type; + +struct nf_nat_hook { + int (*parse_nat_setup)(struct nf_conn *, enum nf_nat_manip_type, const struct nlattr *); + void (*decode_session)(struct sk_buff *, struct flowi *); + void (*remove_nat_bysrc)(struct nf_conn *); +}; + +struct nf_ct_hook { + int (*update)(struct net *, struct sk_buff *); + void (*destroy)(struct nf_conntrack *); + bool (*get_tuple_skb)(struct nf_conntrack_tuple *, const struct sk_buff *); + void (*attach)(struct sk_buff *, const struct sk_buff *); + void (*set_closing)(struct nf_conntrack *); + int (*confirm)(struct sk_buff *); + u32 (*get_id)(const struct nf_conntrack *); +}; + +struct nfnl_ct_hook { + size_t (*build_size)(const struct nf_conn *); + int (*build)(struct sk_buff *, struct nf_conn *, enum ip_conntrack_info, u_int16_t, u_int16_t); + int (*parse)(const struct nlattr *, struct nf_conn *); + int (*attach_expect)(const struct nlattr *, struct nf_conn *, u32, u32); + void (*seq_adjust)(struct sk_buff *, struct nf_conn *, enum ip_conntrack_info, s32); +}; + +struct nf_defrag_hook { + struct module *owner; + int (*enable)(struct net *); + void (*disable)(struct net *); +}; + +struct nf_ipv6_ops { + void (*route_input)(struct sk_buff *); + int (*fragment)(struct net *, struct sock *, struct sk_buff *, int (*)(struct net *, struct sock *, struct sk_buff *)); + int (*reroute)(struct sk_buff *, const struct nf_queue_entry *); +}; + +struct rtvia { + __kernel_sa_family_t rtvia_family; + __u8 rtvia_addr[0]; +}; + +struct rt_cache_stat { + unsigned int in_slow_tot; + unsigned int in_slow_mc; + unsigned int in_no_route; + unsigned int in_brd; + unsigned int in_martian_dst; + unsigned int in_martian_src; + unsigned int out_slow_tot; + unsigned int out_slow_mc; +}; + +struct tcp_plb_state { + u8 consec_cong_rounds: 5; + u8 unused: 3; + u32 pause_until; +}; + +struct ip_options_data { + struct ip_options_rcu opt; + char data[40]; +}; + +struct ipcm_cookie { + struct sockcm_cookie sockc; + __be32 addr; + int oif; + struct ip_options_rcu *opt; + __u8 protocol; + __u8 ttl; + __s16 tos; + __u16 gso_size; +}; + +struct icmp_err { + int errno; + unsigned int fatal: 1; +}; + +struct udp_skb_cb { + union { + struct inet_skb_parm h4; + struct inet6_skb_parm h6; + } header; + __u16 cscov; + __u8 partial_cov; +}; + +struct udp_dev_scratch { + u32 _tsize_state; + u16 len; + bool is_linear; + bool csum_unnecessary; +}; + +struct udp_seq_afinfo { + sa_family_t family; + struct udp_table *udp_table; +}; + +struct udp_iter_state { + struct seq_net_private p; + int bucket; +}; + +typedef struct sk_buff * (*udp_gro_receive_t)(struct sock *, struct list_head *, struct sk_buff *); + +struct bpf_iter__udp { + union { + struct bpf_iter_meta *meta; + }; + union { + struct udp_sock *udp_sk; + }; + uid_t uid; + long: 0; + int bucket; +}; + +union bpf_udp_iter_batch_item { + struct sock *sk; + __u64 cookie; +}; + +struct bpf_udp_iter_state { + struct udp_iter_state state; + unsigned int cur_sk; + unsigned int end_sk; + unsigned int max_sk; + union bpf_udp_iter_batch_item *batch; +}; + +enum ip_conntrack_status { + IPS_EXPECTED_BIT = 0, + IPS_EXPECTED = 1, + IPS_SEEN_REPLY_BIT = 1, + IPS_SEEN_REPLY = 2, + IPS_ASSURED_BIT = 2, + IPS_ASSURED = 4, + IPS_CONFIRMED_BIT = 3, + IPS_CONFIRMED = 8, + IPS_SRC_NAT_BIT = 4, + IPS_SRC_NAT = 16, + IPS_DST_NAT_BIT = 5, + IPS_DST_NAT = 32, + IPS_NAT_MASK = 48, + IPS_SEQ_ADJUST_BIT = 6, + IPS_SEQ_ADJUST = 64, + IPS_SRC_NAT_DONE_BIT = 7, + IPS_SRC_NAT_DONE = 128, + IPS_DST_NAT_DONE_BIT = 8, + IPS_DST_NAT_DONE = 256, + IPS_NAT_DONE_MASK = 384, + IPS_DYING_BIT = 9, + IPS_DYING = 512, + IPS_FIXED_TIMEOUT_BIT = 10, + IPS_FIXED_TIMEOUT = 1024, + IPS_TEMPLATE_BIT = 11, + IPS_TEMPLATE = 2048, + IPS_UNTRACKED_BIT = 12, + IPS_UNTRACKED = 4096, + IPS_NAT_CLASH_BIT = 12, + IPS_NAT_CLASH = 4096, + IPS_HELPER_BIT = 13, + IPS_HELPER = 8192, + IPS_OFFLOAD_BIT = 14, + IPS_OFFLOAD = 16384, + IPS_HW_OFFLOAD_BIT = 15, + IPS_HW_OFFLOAD = 32768, + IPS_UNCHANGEABLE_MASK = 56313, + __IPS_MAX_BIT = 16, +}; + +enum { + XFRM_LOOKUP_ICMP = 1, + XFRM_LOOKUP_QUEUE = 2, + XFRM_LOOKUP_KEEP_DST_REF = 4, +}; + +struct icmp_ext_hdr { + __u8 reserved1: 4; + __u8 version: 4; + __u8 reserved2; + __sum16 checksum; +}; + +struct icmp_extobj_hdr { + __be16 length; + __u8 class_num; + __u8 class_type; +}; + +struct icmp_ext_echo_ctype3_hdr { + __be16 afi; + __u8 addrlen; + __u8 reserved; +}; + +struct icmp_ext_echo_iio { + struct icmp_extobj_hdr extobj_hdr; + union { + char name[16]; + __be32 ifindex; + struct { + struct icmp_ext_echo_ctype3_hdr ctype3_hdr; + union { + __be32 ipv4_addr; + struct in6_addr ipv6_addr; + } ip_addr; + } addr; + } ident; +}; + +struct trace_event_raw_icmp_send { + struct trace_entry ent; + const void *skbaddr; + int type; + int code; + __u8 saddr[4]; + __u8 daddr[4]; + __u16 sport; + __u16 dport; + short unsigned int ulen; + char __data[0]; +}; + +struct trace_event_data_offsets_icmp_send {}; + +typedef void (*btf_trace_icmp_send)(void *, const struct sk_buff *, int, int); + +struct icmp_bxm { + struct sk_buff *skb; + int offset; + int data_len; + struct { + struct icmphdr icmph; + __be32 times[3]; + } data; + int head_len; + struct ip_options_data replyopts; +}; + +struct icmp_control { + enum skb_drop_reason (*handler)(struct sk_buff *); + short int error; +}; + +struct netdev_notifier_info_ext { + struct netdev_notifier_info info; + union { + u32 mtu; + } ext; +}; + +struct fib_result_nl { + __be32 fl_addr; + u32 fl_mark; + unsigned char fl_tos; + unsigned char fl_scope; + unsigned char tb_id_in; + unsigned char tb_id; + unsigned char prefixlen; + unsigned char nh_sel; + unsigned char type; + unsigned char scope; + int err; +}; + +struct rtentry { + long unsigned int rt_pad1; + struct sockaddr rt_dst; + struct sockaddr rt_gateway; + struct sockaddr rt_genmask; + short unsigned int rt_flags; + short int rt_pad2; + long unsigned int rt_pad3; + void *rt_pad4; + short int rt_metric; + char *rt_dev; + long unsigned int rt_mtu; + long unsigned int rt_window; + short unsigned int rt_irtt; +}; + +struct pingv6_ops { + int (*ipv6_recv_error)(struct sock *, struct msghdr *, int, int *); + void (*ip6_datagram_recv_common_ctl)(struct sock *, struct msghdr *, struct sk_buff *); + void (*ip6_datagram_recv_specific_ctl)(struct sock *, struct msghdr *, struct sk_buff *); + int (*icmpv6_err_convert)(u8, u8, int *); + void (*ipv6_icmp_error)(struct sock *, struct sk_buff *, int, __be16, u32, u8 *); + int (*ipv6_chk_addr)(struct net *, const struct in6_addr *, const struct net_device *, int); +}; + +struct ping_iter_state { + struct seq_net_private p; + int bucket; + sa_family_t family; +}; + +struct pingfakehdr { + struct icmphdr icmph; + struct msghdr *msg; + sa_family_t family; + __wsum wcheck; +}; + +struct ping_table { + struct hlist_head hash[64]; + spinlock_t lock; +}; + +struct nhmsg { + unsigned char nh_family; + unsigned char nh_scope; + unsigned char nh_protocol; + unsigned char resvd; + unsigned int nh_flags; +}; + +struct nexthop_grp { + __u32 id; + __u8 weight; + __u8 weight_high; + __u16 resvd2; +}; + +enum { + NEXTHOP_GRP_TYPE_MPATH = 0, + NEXTHOP_GRP_TYPE_RES = 1, + __NEXTHOP_GRP_TYPE_MAX = 2, +}; + +enum { + NHA_UNSPEC = 0, + NHA_ID = 1, + NHA_GROUP = 2, + NHA_GROUP_TYPE = 3, + NHA_BLACKHOLE = 4, + NHA_OIF = 5, + NHA_GATEWAY = 6, + NHA_ENCAP_TYPE = 7, + NHA_ENCAP = 8, + NHA_GROUPS = 9, + NHA_MASTER = 10, + NHA_FDB = 11, + NHA_RES_GROUP = 12, + NHA_RES_BUCKET = 13, + NHA_OP_FLAGS = 14, + NHA_GROUP_STATS = 15, + NHA_HW_STATS_ENABLE = 16, + NHA_HW_STATS_USED = 17, + __NHA_MAX = 18, +}; + +enum { + NHA_RES_GROUP_UNSPEC = 0, + NHA_RES_GROUP_PAD = 0, + NHA_RES_GROUP_BUCKETS = 1, + NHA_RES_GROUP_IDLE_TIMER = 2, + NHA_RES_GROUP_UNBALANCED_TIMER = 3, + NHA_RES_GROUP_UNBALANCED_TIME = 4, + __NHA_RES_GROUP_MAX = 5, +}; + +enum { + NHA_RES_BUCKET_UNSPEC = 0, + NHA_RES_BUCKET_PAD = 0, + NHA_RES_BUCKET_INDEX = 1, + NHA_RES_BUCKET_IDLE_TIME = 2, + NHA_RES_BUCKET_NH_ID = 3, + __NHA_RES_BUCKET_MAX = 4, +}; + +enum { + NHA_GROUP_STATS_UNSPEC = 0, + NHA_GROUP_STATS_ENTRY = 1, + __NHA_GROUP_STATS_MAX = 2, +}; + +enum { + NHA_GROUP_STATS_ENTRY_UNSPEC = 0, + NHA_GROUP_STATS_ENTRY_ID = 1, + NHA_GROUP_STATS_ENTRY_PACKETS = 2, + NHA_GROUP_STATS_ENTRY_PACKETS_HW = 3, + __NHA_GROUP_STATS_ENTRY_MAX = 4, +}; + +struct nh_config { + u32 nh_id; + u8 nh_family; + u8 nh_protocol; + u8 nh_blackhole; + u8 nh_fdb; + u32 nh_flags; + int nh_ifindex; + struct net_device *dev; + union { + __be32 ipv4; + struct in6_addr ipv6; + } gw; + struct nlattr *nh_grp; + u16 nh_grp_type; + u16 nh_grp_res_num_buckets; + long unsigned int nh_grp_res_idle_timer; + long unsigned int nh_grp_res_unbalanced_timer; + bool nh_grp_res_has_num_buckets; + bool nh_grp_res_has_idle_timer; + bool nh_grp_res_has_unbalanced_timer; + bool nh_hw_stats; + struct nlattr *nh_encap; + u16 nh_encap_type; + u32 nlflags; + struct nl_info nlinfo; +}; + +enum nexthop_event_type { + NEXTHOP_EVENT_DEL = 0, + NEXTHOP_EVENT_REPLACE = 1, + NEXTHOP_EVENT_RES_TABLE_PRE_REPLACE = 2, + NEXTHOP_EVENT_BUCKET_REPLACE = 3, + NEXTHOP_EVENT_HW_STATS_REPORT_DELTA = 4, +}; + +enum nh_notifier_info_type { + NH_NOTIFIER_INFO_TYPE_SINGLE = 0, + NH_NOTIFIER_INFO_TYPE_GRP = 1, + NH_NOTIFIER_INFO_TYPE_RES_TABLE = 2, + NH_NOTIFIER_INFO_TYPE_RES_BUCKET = 3, + NH_NOTIFIER_INFO_TYPE_GRP_HW_STATS = 4, +}; + +struct nh_notifier_single_info { + struct net_device *dev; + u8 gw_family; + union { + __be32 ipv4; + struct in6_addr ipv6; + }; + u32 id; + u8 is_reject: 1; + u8 is_fdb: 1; + u8 has_encap: 1; +}; + +struct nh_notifier_grp_entry_info { + u16 weight; + struct nh_notifier_single_info nh; +}; + +struct nh_notifier_grp_info { + u16 num_nh; + bool is_fdb; + bool hw_stats; + struct nh_notifier_grp_entry_info nh_entries[0]; +}; + +struct nh_notifier_res_bucket_info { + u16 bucket_index; + unsigned int idle_timer_ms; + bool force; + struct nh_notifier_single_info old_nh; + struct nh_notifier_single_info new_nh; +}; + +struct nh_notifier_res_table_info { + u16 num_nh_buckets; + bool hw_stats; + struct nh_notifier_single_info nhs[0]; +}; + +struct nh_notifier_grp_hw_stats_entry_info { + u32 id; + u64 packets; +}; + +struct nh_notifier_grp_hw_stats_info { + u16 num_nh; + bool hw_stats_used; + struct nh_notifier_grp_hw_stats_entry_info stats[0]; +}; + +struct nh_notifier_info { + struct net *net; + struct netlink_ext_ack *extack; + u32 id; + enum nh_notifier_info_type type; + union { + struct nh_notifier_single_info *nh; + struct nh_notifier_grp_info *nh_grp; + struct nh_notifier_res_table_info *nh_res_table; + struct nh_notifier_res_bucket_info *nh_res_bucket; + struct nh_notifier_grp_hw_stats_info *nh_grp_hw_stats; + }; +}; + +struct nh_dump_filter { + u32 nh_id; + int dev_idx; + int master_idx; + bool group_filter; + bool fdb_filter; + u32 res_bucket_nh_id; + u32 op_flags; +}; + +struct rtm_dump_nh_ctx { + u32 idx; +}; + +struct rtm_dump_res_bucket_ctx { + struct rtm_dump_nh_ctx nh; + u16 bucket_index; +}; + +struct rtm_dump_nexthop_bucket_data { + struct rtm_dump_res_bucket_ctx *ctx; + struct nh_dump_filter filter; +}; + +struct snmp_mib { + const char *name; + int entry; +}; + +enum sock_shutdown_cmd { + SHUT_RD = 0, + SHUT_WR = 1, + SHUT_RDWR = 2, +}; + +struct udp_port_cfg { + u8 family; + union { + struct in_addr local_ip; + struct in6_addr local_ip6; + }; + union { + struct in_addr peer_ip; + struct in6_addr peer_ip6; + }; + __be16 local_udp_port; + __be16 peer_udp_port; + int bind_ifindex; + unsigned int use_udp_checksums: 1; + unsigned int use_udp6_tx_checksums: 1; + unsigned int use_udp6_rx_checksums: 1; + unsigned int ipv6_v6only: 1; +}; + +typedef int (*udp_tunnel_encap_rcv_t)(struct sock *, struct sk_buff *); + +typedef int (*udp_tunnel_encap_err_lookup_t)(struct sock *, struct sk_buff *); + +typedef void (*udp_tunnel_encap_err_rcv_t)(struct sock *, struct sk_buff *, int, __be16, u32, u8 *); + +typedef void (*udp_tunnel_encap_destroy_t)(struct sock *); + +typedef struct sk_buff * (*udp_tunnel_gro_receive_t)(struct sock *, struct list_head *, struct sk_buff *); + +typedef int (*udp_tunnel_gro_complete_t)(struct sock *, struct sk_buff *, int); + +struct udp_tunnel_sock_cfg { + void *sk_user_data; + __u8 encap_type; + udp_tunnel_encap_rcv_t encap_rcv; + udp_tunnel_encap_err_lookup_t encap_err_lookup; + udp_tunnel_encap_err_rcv_t encap_err_rcv; + udp_tunnel_encap_destroy_t encap_destroy; + udp_tunnel_gro_receive_t gro_receive; + udp_tunnel_gro_complete_t gro_complete; +}; + +struct udp_tunnel_nic_ops { + void (*get_port)(struct net_device *, unsigned int, unsigned int, struct udp_tunnel_info *); + void (*set_port_priv)(struct net_device *, unsigned int, unsigned int, u8); + void (*add_port)(struct net_device *, struct udp_tunnel_info *); + void (*del_port)(struct net_device *, struct udp_tunnel_info *); + void (*reset_ntf)(struct net_device *); + size_t (*dump_size)(struct net_device *, unsigned int); + int (*dump_write)(struct net_device *, unsigned int, struct sk_buff *); + void (*assert_locked)(struct net_device *); + void (*lock)(struct net_device *); + void (*unlock)(struct net_device *); +}; + +struct bictcp { + u32 cnt; + u32 last_max_cwnd; + u32 last_cwnd; + u32 last_time; + u32 bic_origin_point; + u32 bic_K; + u32 delay_min; + u32 epoch_start; + u32 ack_cnt; + u32 tcp_cwnd; + u16 unused; + u8 sample_cnt; + u8 found; + u32 round_start; + u32 end_seq; + u32 last_ack; + u32 curr_rtt; +}; + +struct cipso_v4_map_cache_bkt { + spinlock_t lock; + u32 size; + struct list_head list; +}; + +struct cipso_v4_map_cache_entry { + u32 hash; + unsigned char *key; + size_t key_len; + struct netlbl_lsm_cache *lsm_data; + u32 activity; + struct list_head list; +}; + +typedef u64 (*btf_bpf_tcp_send_ack)(struct tcp_sock *, u32); + +struct bpf_struct_ops_tcp_congestion_ops { + struct bpf_struct_ops_common_value common; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct tcp_congestion_ops data; +}; + +struct ip_beet_phdr { + __u8 nexthdr; + __u8 hdrlen; + __u8 padlen; + __u8 reserved; +}; + +struct xfrm_user_offload { + int ifindex; + __u8 flags; +}; + +enum { + XFRM_DEV_OFFLOAD_IN = 1, + XFRM_DEV_OFFLOAD_OUT = 2, + XFRM_DEV_OFFLOAD_FWD = 3, +}; + +enum { + BPF_F_CURRENT_NETNS = -1, +}; + +struct bpf_xfrm_state_opts { + s32 error; + s32 netns_id; + u32 mark; + xfrm_address_t daddr; + __be32 spi; + u8 proto; + u16 family; +}; + +enum { + BPF_XFRM_STATE_OPTS_SZ = 36, +}; + +enum fib6_walk_state { + FWS_S = 0, + FWS_L = 1, + FWS_R = 2, + FWS_C = 3, + FWS_U = 4, +}; + +struct fib6_walker { + struct list_head lh; + struct fib6_node *root; + struct fib6_node *node; + struct fib6_info *leaf; + enum fib6_walk_state state; + unsigned int skip; + unsigned int count; + unsigned int skip_in_node; + int (*func)(struct fib6_walker *); + void *args; +}; + +struct fib6_entry_notifier_info { + struct fib_notifier_info info; + struct fib6_info *rt; + unsigned int nsiblings; +}; + +struct ipv6_route_iter { + struct seq_net_private p; + struct fib6_walker w; + loff_t skip; + struct fib6_table *tbl; + int sernum; +}; + +struct bpf_iter__ipv6_route { + union { + struct bpf_iter_meta *meta; + }; + union { + struct fib6_info *rt; + }; +}; + +struct fib6_cleaner { + struct fib6_walker w; + struct net *net; + int (*func)(struct fib6_info *, void *); + int sernum; + void *arg; + bool skip_notify; +}; + +enum { + FIB6_NO_SERNUM_CHANGE = 0, +}; + +struct fib6_dump_arg { + struct net *net; + struct notifier_block *nb; + struct netlink_ext_ack *extack; +}; + +struct lookup_args { + int offset; + const struct in6_addr *addr; +}; + +enum { + INET_FRAG_FIRST_IN = 1, + INET_FRAG_LAST_IN = 2, + INET_FRAG_COMPLETE = 4, + INET_FRAG_HASH_DEAD = 8, + INET_FRAG_DROP = 16, +}; + +enum ip6_defrag_users { + IP6_DEFRAG_LOCAL_DELIVER = 0, + IP6_DEFRAG_CONNTRACK_IN = 1, + __IP6_DEFRAG_CONNTRACK_IN = 65536, + IP6_DEFRAG_CONNTRACK_OUT = 65537, + __IP6_DEFRAG_CONNTRACK_OUT = 131072, + IP6_DEFRAG_CONNTRACK_BRIDGE_IN = 131073, + __IP6_DEFRAG_CONNTRACK_BRIDGE_IN = 196608, +}; + +struct frag_queue { + struct inet_frag_queue q; + int iif; + __u16 nhoffset; + u8 ecn; +}; + +struct ioam6_pernet_data { + struct mutex lock; + struct rhashtable namespaces; + struct rhashtable schemas; +}; + +struct rt0_hdr { + struct ipv6_rt_hdr rt_hdr; + __u32 reserved; + struct in6_addr addr[0]; +}; + +struct ipv6_destopt_hao { + __u8 type; + __u8 length; + struct in6_addr addr; +} __attribute__((packed)); + +struct ipv6_rpl_sr_hdr { + __u8 nexthdr; + __u8 hdrlen; + __u8 type; + __u8 segments_left; + __u32 cmpre: 4; + __u32 cmpri: 4; + __u32 reserved: 4; + __u32 pad: 4; + __u32 reserved1: 16; + union { + struct { + struct {} __empty_addr; + struct in6_addr addr[0]; + }; + struct { + struct {} __empty_data; + __u8 data[0]; + }; + } segments; +}; + +struct ioam6_hdr { + __u8 opt_type; + __u8 opt_len; + char: 8; + __u8 type; +}; + +struct ioam6_trace_hdr { + __be16 namespace_id; + char: 2; + __u8 overflow: 1; + __u8 nodelen: 5; + __u8 remlen: 7; + union { + __be32 type_be32; + struct { + __u32 bit7: 1; + __u32 bit6: 1; + __u32 bit5: 1; + __u32 bit4: 1; + __u32 bit3: 1; + __u32 bit2: 1; + __u32 bit1: 1; + __u32 bit0: 1; + __u32 bit15: 1; + __u32 bit14: 1; + __u32 bit13: 1; + __u32 bit12: 1; + __u32 bit11: 1; + __u32 bit10: 1; + __u32 bit9: 1; + __u32 bit8: 1; + __u32 bit23: 1; + __u32 bit22: 1; + __u32 bit21: 1; + __u32 bit20: 1; + __u32 bit19: 1; + __u32 bit18: 1; + __u32 bit17: 1; + __u32 bit16: 1; + } type; + }; + __u8 data[0]; +}; + +enum ioam6_event_type { + IOAM6_EVENT_UNSPEC = 0, + IOAM6_EVENT_TRACE = 1, +}; + +struct ioam6_schema; + +struct ioam6_namespace { + struct rhash_head head; + struct callback_head rcu; + struct ioam6_schema *schema; + __be16 id; + __be32 data; + __be64 data_wide; +}; + +struct ioam6_schema { + struct rhash_head head; + struct callback_head rcu; + struct ioam6_namespace *ns; + u32 id; + int len; + __be32 hdr; + u8 data[0]; +}; + +struct sr6_tlv { + __u8 type; + __u8 len; + __u8 data[0]; +}; + +struct sr6_tlv_hmac { + struct sr6_tlv tlvhdr; + __u16 reserved; + __be32 hmackeyid; + __u8 hmac[32]; +}; + +enum { + SEG6_HMAC_ALGO_SHA1 = 1, + SEG6_HMAC_ALGO_SHA256 = 2, +}; + +struct seg6_hmac_info { + struct rhash_head node; + struct callback_head rcu; + u32 hmackeyid; + char secret[64]; + u8 slen; + u8 alg_id; +}; + +struct seg6_hmac_algo { + u8 alg_id; + char name[64]; + struct crypto_shash **tfms; + struct shash_desc **shashs; +}; + +struct hmac_storage { + local_lock_t bh_lock; + char hmac_ring[256]; +}; + +struct tcp6_ao_context { + struct in6_addr saddr; + struct in6_addr daddr; + __be16 sport; + __be16 dport; + __be32 sisn; + __be32 disn; +}; + +struct kdf_input_block___2 { + u8 counter; + u8 label[6]; + struct tcp6_ao_context ctx; + __be16 outlen; +} __attribute__((packed)); + +struct devlink_nl_sock_priv { + struct devlink_obj_desc *flt; + spinlock_t flt_lock; +}; + +enum devlink_dpipe_match_type { + DEVLINK_DPIPE_MATCH_TYPE_FIELD_EXACT = 0, +}; + +enum devlink_dpipe_action_type { + DEVLINK_DPIPE_ACTION_TYPE_FIELD_MODIFY = 0, +}; + +enum devlink_dpipe_field_ethernet_id { + DEVLINK_DPIPE_FIELD_ETHERNET_DST_MAC = 0, +}; + +enum devlink_dpipe_field_ipv4_id { + DEVLINK_DPIPE_FIELD_IPV4_DST_IP = 0, +}; + +enum devlink_dpipe_field_ipv6_id { + DEVLINK_DPIPE_FIELD_IPV6_DST_IP = 0, +}; + +enum devlink_dpipe_header_id { + DEVLINK_DPIPE_HEADER_ETHERNET = 0, + DEVLINK_DPIPE_HEADER_IPV4 = 1, + DEVLINK_DPIPE_HEADER_IPV6 = 2, +}; + +struct devlink_dpipe_match { + enum devlink_dpipe_match_type type; + unsigned int header_index; + struct devlink_dpipe_header *header; + unsigned int field_id; +}; + +struct devlink_dpipe_action { + enum devlink_dpipe_action_type type; + unsigned int header_index; + struct devlink_dpipe_header *header; + unsigned int field_id; +}; + +struct devlink_dpipe_value { + union { + struct devlink_dpipe_action *action; + struct devlink_dpipe_match *match; + }; + unsigned int mapping_value; + bool mapping_valid; + unsigned int value_size; + void *value; + void *mask; +}; + +struct devlink_dpipe_entry { + u64 index; + struct devlink_dpipe_value *match_values; + unsigned int match_values_count; + struct devlink_dpipe_value *action_values; + unsigned int action_values_count; + u64 counter; + bool counter_valid; +}; + +struct devlink_dpipe_dump_ctx { + struct genl_info *info; + enum devlink_command cmd; + struct sk_buff *skb; + struct nlattr *nest; + void *hdr; +}; + +struct devlink_dpipe_table_ops; + +struct devlink_dpipe_table { + void *priv; + struct list_head list; + const char *name; + bool counters_enabled; + bool counter_control_extern; + bool resource_valid; + u64 resource_id; + u64 resource_units; + const struct devlink_dpipe_table_ops *table_ops; + struct callback_head rcu; +}; + +struct devlink_dpipe_table_ops { + int (*actions_dump)(void *, struct sk_buff *); + int (*matches_dump)(void *, struct sk_buff *); + int (*entries_dump)(void *, bool, struct devlink_dpipe_dump_ctx *); + int (*counters_set_update)(void *, bool); + u64 (*size_get)(void *); +}; + +struct devlink_region_ops { + const char *name; + void (*destructor)(const void *); + int (*snapshot)(struct devlink *, const struct devlink_region_ops *, struct netlink_ext_ack *, u8 **); + int (*read)(struct devlink *, const struct devlink_region_ops *, struct netlink_ext_ack *, u64, u32, u8 *); + void *priv; +}; + +struct devlink_port_region_ops { + const char *name; + void (*destructor)(const void *); + int (*snapshot)(struct devlink_port *, const struct devlink_port_region_ops *, struct netlink_ext_ack *, u8 **); + int (*read)(struct devlink_port *, const struct devlink_port_region_ops *, struct netlink_ext_ack *, u64, u32, u8 *); + void *priv; +}; + +struct devlink_region { + struct devlink *devlink; + struct devlink_port *port; + struct list_head list; + union { + const struct devlink_region_ops *ops; + const struct devlink_port_region_ops *port_ops; + }; + struct mutex snapshot_lock; + struct list_head snapshot_list; + u32 max_snapshots; + u32 cur_snapshots; + u64 size; +}; + +struct devlink_snapshot { + struct list_head list; + struct devlink_region *region; + u8 *data; + u32 id; +}; + +typedef int devlink_chunk_fill_t(void *, u8 *, u32, u64, struct netlink_ext_ack *); + +struct vlan_group { + unsigned int nr_vlan_devs; + struct hlist_node hlist; + struct net_device **vlan_devices_arrays[16]; +}; + +struct vlan_info { + struct net_device *real_dev; + struct vlan_group grp; + struct list_head vid_list; + unsigned int nr_vids; + bool auto_vid0; + struct callback_head rcu; +}; + +enum vlan_flags { + VLAN_FLAG_REORDER_HDR = 1, + VLAN_FLAG_GVRP = 2, + VLAN_FLAG_LOOSE_BINDING = 4, + VLAN_FLAG_MVRP = 8, + VLAN_FLAG_BRIDGE_BINDING = 16, +}; + +struct vlan_pcpu_stats { + u64_stats_t rx_packets; + u64_stats_t rx_bytes; + u64_stats_t rx_multicast; + u64_stats_t tx_packets; + u64_stats_t tx_bytes; + struct u64_stats_sync syncp; + u32 rx_errors; + u32 tx_dropped; +}; + +struct vlan_priority_tci_mapping { + u32 priority; + u16 vlan_qos; + struct vlan_priority_tci_mapping *next; +}; + +struct vlan_dev_priv { + unsigned int nr_ingress_mappings; + u32 ingress_priority_map[8]; + unsigned int nr_egress_mappings; + struct vlan_priority_tci_mapping *egress_priority_map[16]; + __be16 vlan_proto; + u16 vlan_id; + u16 flags; + struct net_device *real_dev; + netdevice_tracker dev_tracker; + unsigned char real_dev_addr[6]; + struct proc_dir_entry *dent; + struct vlan_pcpu_stats *vlan_pcpu_stats; + struct netpoll *netpoll; +}; + +enum vlan_protos { + VLAN_PROTO_8021Q = 0, + VLAN_PROTO_8021AD = 1, + VLAN_PROTO_NUM = 2, +}; + +struct vlan_vid_info { + struct list_head list; + __be16 proto; + u16 vid; + int refcount; +}; + +enum { + NLBL_CIPSOV4_C_UNSPEC = 0, + NLBL_CIPSOV4_C_ADD = 1, + NLBL_CIPSOV4_C_REMOVE = 2, + NLBL_CIPSOV4_C_LIST = 3, + NLBL_CIPSOV4_C_LISTALL = 4, + __NLBL_CIPSOV4_C_MAX = 5, +}; + +enum { + NLBL_CIPSOV4_A_UNSPEC = 0, + NLBL_CIPSOV4_A_DOI = 1, + NLBL_CIPSOV4_A_MTYPE = 2, + NLBL_CIPSOV4_A_TAG = 3, + NLBL_CIPSOV4_A_TAGLST = 4, + NLBL_CIPSOV4_A_MLSLVLLOC = 5, + NLBL_CIPSOV4_A_MLSLVLREM = 6, + NLBL_CIPSOV4_A_MLSLVL = 7, + NLBL_CIPSOV4_A_MLSLVLLST = 8, + NLBL_CIPSOV4_A_MLSCATLOC = 9, + NLBL_CIPSOV4_A_MLSCATREM = 10, + NLBL_CIPSOV4_A_MLSCAT = 11, + NLBL_CIPSOV4_A_MLSCATLST = 12, + __NLBL_CIPSOV4_A_MAX = 13, +}; + +struct netlbl_cipsov4_doiwalk_arg { + struct netlink_callback *nl_cb; + struct sk_buff *skb; + u32 seq; +}; + +enum { + dns_key_data = 0, + dns_key_error = 1, +}; + +enum l3mdev_type { + L3MDEV_TYPE_UNSPEC = 0, + L3MDEV_TYPE_VRF = 1, + __L3MDEV_TYPE_MAX = 2, +}; + +typedef int (*lookup_by_table_id_t)(struct net *, u32); + +struct l3mdev_handler { + lookup_by_table_id_t dev_lookup; +}; + +struct ncsi_aen_pkt_hdr { + struct ncsi_pkt_hdr common; + unsigned char reserved2[3]; + unsigned char type; +}; + +struct ncsi_aen_lsc_pkt { + struct ncsi_aen_pkt_hdr aen; + __be32 status; + __be32 oem_status; + __be32 checksum; + unsigned char pad[14]; +}; + +struct ncsi_aen_hncdsc_pkt { + struct ncsi_aen_pkt_hdr aen; + __be32 status; + __be32 checksum; + unsigned char pad[18]; +}; + +struct ncsi_aen_handler { + unsigned char type; + int payload; + int (*handler)(struct ncsi_dev_priv *, struct ncsi_aen_pkt_hdr *); +}; + +struct xdp_umem_reg { + __u64 addr; + __u64 len; + __u32 chunk_size; + __u32 headroom; + __u32 flags; + __u32 tx_metadata_len; +}; + +struct xsk_tx_metadata { + __u64 flags; + union { + struct { + __u16 csum_start; + __u16 csum_offset; + __u64 launch_time; + } request; + struct { + __u64 tx_timestamp; + } completion; + }; +}; + +struct xsk_dma_map { + dma_addr_t *dma_pages; + struct device *dev; + struct net_device *netdev; + refcount_t users; + struct list_head list; + u32 dma_pages_cnt; +}; + +struct xdp_desc_ctx { + dma_addr_t dma; + struct xsk_tx_metadata *meta; +}; + +struct xsk_cb_desc { + void *src; + u8 off; + u8 bytes; +}; + +struct mptcp_out_options { + u16 suboptions; + struct mptcp_rm_list rm_list; + u8 join_id; + u8 backup; + u8 reset_reason: 4; + u8 reset_transient: 1; + u8 csum_reqd: 1; + u8 allow_join_id0: 1; + union { + struct { + u64 sndr_key; + u64 rcvr_key; + u64 data_seq; + u32 subflow_seq; + u16 data_len; + __sum16 csum; + }; + struct { + struct mptcp_addr_info addr; + u64 ahmac; + }; + struct { + struct mptcp_ext ext_copy; + u64 fail_seq; + }; + struct { + u32 nonce; + u32 token; + u64 thmac; + u8 hmac[20]; + }; + }; +}; + +enum mptcp_addr_signal_status { + MPTCP_ADD_ADDR_SIGNAL = 0, + MPTCP_ADD_ADDR_ECHO = 1, + MPTCP_RM_ADDR_SIGNAL = 2, +}; + +struct csum_pseudo_header { + __be64 data_seq; + __be32 subflow_seq; + __be16 data_len; + __sum16 csum; +}; + +enum mptcp_event_type { + MPTCP_EVENT_UNSPEC = 0, + MPTCP_EVENT_CREATED = 1, + MPTCP_EVENT_ESTABLISHED = 2, + MPTCP_EVENT_CLOSED = 3, + MPTCP_EVENT_ANNOUNCED = 6, + MPTCP_EVENT_REMOVED = 7, + MPTCP_EVENT_SUB_ESTABLISHED = 10, + MPTCP_EVENT_SUB_CLOSED = 11, + MPTCP_EVENT_SUB_PRIORITY = 13, + MPTCP_EVENT_LISTENER_CREATED = 15, + MPTCP_EVENT_LISTENER_CLOSED = 16, +}; + +enum mptcp_pm_status { + MPTCP_PM_ADD_ADDR_RECEIVED = 0, + MPTCP_PM_ADD_ADDR_SEND_ACK = 1, + MPTCP_PM_RM_ADDR_RECEIVED = 2, + MPTCP_PM_ESTABLISHED = 3, + MPTCP_PM_SUBFLOW_ESTABLISHED = 4, + MPTCP_PM_ALREADY_ESTABLISHED = 5, + MPTCP_PM_MPC_ENDPOINT_ACCOUNTED = 6, +}; + +struct mptcp_pm_addr_entry { + struct list_head list; + struct mptcp_addr_info addr; + u8 flags; + int ifindex; + struct socket *lsk; +}; + +struct mptcp_pm_add_entry { + struct list_head list; + struct mptcp_addr_info addr; + u8 retrans_times; + struct timer_list add_timer; + struct mptcp_sock *sock; + struct callback_head rcu; +}; + +enum { + MPTCP_PM_ADDR_ATTR_UNSPEC = 0, + MPTCP_PM_ADDR_ATTR_FAMILY = 1, + MPTCP_PM_ADDR_ATTR_ID = 2, + MPTCP_PM_ADDR_ATTR_ADDR4 = 3, + MPTCP_PM_ADDR_ATTR_ADDR6 = 4, + MPTCP_PM_ADDR_ATTR_PORT = 5, + MPTCP_PM_ADDR_ATTR_FLAGS = 6, + MPTCP_PM_ADDR_ATTR_IF_IDX = 7, + __MPTCP_PM_ADDR_ATTR_MAX = 8, +}; + +enum { + MPTCP_PM_ENDPOINT_ADDR = 1, + __MPTCP_PM_ENDPOINT_MAX = 2, +}; + +enum { + MPTCP_PM_ATTR_UNSPEC = 0, + MPTCP_PM_ATTR_ADDR = 1, + MPTCP_PM_ATTR_RCV_ADD_ADDRS = 2, + MPTCP_PM_ATTR_SUBFLOWS = 3, + MPTCP_PM_ATTR_TOKEN = 4, + MPTCP_PM_ATTR_LOC_ID = 5, + MPTCP_PM_ATTR_ADDR_REMOTE = 6, + __MPTCP_ATTR_AFTER_LAST = 7, +}; + +enum mptcp_event_attr { + MPTCP_ATTR_UNSPEC = 0, + MPTCP_ATTR_TOKEN = 1, + MPTCP_ATTR_FAMILY = 2, + MPTCP_ATTR_LOC_ID = 3, + MPTCP_ATTR_REM_ID = 4, + MPTCP_ATTR_SADDR4 = 5, + MPTCP_ATTR_SADDR6 = 6, + MPTCP_ATTR_DADDR4 = 7, + MPTCP_ATTR_DADDR6 = 8, + MPTCP_ATTR_SPORT = 9, + MPTCP_ATTR_DPORT = 10, + MPTCP_ATTR_BACKUP = 11, + MPTCP_ATTR_ERROR = 12, + MPTCP_ATTR_FLAGS = 13, + MPTCP_ATTR_TIMEOUT = 14, + MPTCP_ATTR_IF_IDX = 15, + MPTCP_ATTR_RESET_REASON = 16, + MPTCP_ATTR_RESET_FLAGS = 17, + MPTCP_ATTR_SERVER_SIDE = 18, + __MPTCP_ATTR_MAX = 19, +}; + +enum { + MPTCP_PM_CMD_UNSPEC = 0, + MPTCP_PM_CMD_ADD_ADDR = 1, + MPTCP_PM_CMD_DEL_ADDR = 2, + MPTCP_PM_CMD_GET_ADDR = 3, + MPTCP_PM_CMD_FLUSH_ADDRS = 4, + MPTCP_PM_CMD_SET_LIMITS = 5, + MPTCP_PM_CMD_GET_LIMITS = 6, + MPTCP_PM_CMD_SET_FLAGS = 7, + MPTCP_PM_CMD_ANNOUNCE = 8, + MPTCP_PM_CMD_REMOVE = 9, + MPTCP_PM_CMD_SUBFLOW_CREATE = 10, + MPTCP_PM_CMD_SUBFLOW_DESTROY = 11, + __MPTCP_PM_CMD_AFTER_LAST = 12, +}; + +struct net_proto_family { + int family; + int (*create)(struct net *, struct socket *, int, int); + struct module *owner; +}; + +struct mctp_addr { + mctp_eid_t s_addr; +}; + +struct sockaddr_mctp { + __kernel_sa_family_t smctp_family; + __u16 __smctp_pad0; + unsigned int smctp_network; + struct mctp_addr smctp_addr; + __u8 smctp_type; + __u8 smctp_tag; + __u8 __smctp_pad1; +}; + +struct sockaddr_mctp_ext { + struct sockaddr_mctp smctp_base; + int smctp_ifindex; + __u8 smctp_halen; + __u8 __smctp_pad0[3]; + __u8 smctp_haddr[32]; +}; + +struct mctp_ioc_tag_ctl { + mctp_eid_t peer_addr; + __u8 tag; + __u16 flags; +}; + +struct mctp_ioc_tag_ctl2 { + unsigned int net; + mctp_eid_t peer_addr; + mctp_eid_t local_addr; + __u16 flags; + __u8 tag; +}; + +struct mctp_hdr { + u8 ver; + u8 dest; + u8 src; + u8 flags_seq_tag; +}; + +struct mctp_sock { + struct sock sk; + unsigned int bind_net; + mctp_eid_t bind_local_addr; + mctp_eid_t bind_peer_addr; + unsigned int bind_peer_net; + bool bind_peer_set; + __u8 bind_type; + bool addr_ext; + struct hlist_head keys; + struct timer_list key_expiry; +}; + +struct mctp_skb_cb { + unsigned int magic; + unsigned int net; + int ifindex; + unsigned char halen; + unsigned char haddr[32]; +}; + +struct mctp_dst { + struct mctp_dev *dev; + unsigned int mtu; + mctp_eid_t nexthop; + unsigned char halen; + unsigned char haddr[32]; + int (*output)(struct mctp_dst *, struct sk_buff *); +}; + +enum { + MCTP_TRACE_KEY_TIMEOUT = 0, + MCTP_TRACE_KEY_REPLIED = 1, + MCTP_TRACE_KEY_INVALIDATED = 2, + MCTP_TRACE_KEY_CLOSED = 3, + MCTP_TRACE_KEY_DROPPED = 4, +}; + +struct trace_event_raw_mctp_key_acquire { + struct trace_entry ent; + __u8 paddr; + __u8 laddr; + __u8 tag; + char __data[0]; +}; + +struct trace_event_raw_mctp_key_release { + struct trace_entry ent; + __u8 paddr; + __u8 laddr; + __u8 tag; + int reason; + char __data[0]; +}; + +struct trace_event_data_offsets_mctp_key_acquire {}; + +struct trace_event_data_offsets_mctp_key_release {}; + +typedef void (*btf_trace_mctp_key_acquire)(void *, const struct mctp_sk_key *); + +typedef void (*btf_trace_mctp_key_release)(void *, const struct mctp_sk_key *, int); + +enum { + TLS_RECORD_TYPE_CHANGE_CIPHER_SPEC = 20, + TLS_RECORD_TYPE_ALERT = 21, + TLS_RECORD_TYPE_HANDSHAKE = 22, + TLS_RECORD_TYPE_DATA = 23, + TLS_RECORD_TYPE_HEARTBEAT = 24, + TLS_RECORD_TYPE_TLS12_CID = 25, + TLS_RECORD_TYPE_ACK = 26, +}; + +struct handshake_net { + spinlock_t hn_lock; + int hn_pending; + int hn_pending_max; + struct list_head hn_requests; + long unsigned int hn_flags; +}; + +enum hn_flags_bits { + HANDSHAKE_F_NET_DRAINING = 0, +}; + +enum { + NET_SHAPER_A_HANDLE = 1, + NET_SHAPER_A_METRIC = 2, + NET_SHAPER_A_BW_MIN = 3, + NET_SHAPER_A_BW_MAX = 4, + NET_SHAPER_A_BURST = 5, + NET_SHAPER_A_PRIORITY = 6, + NET_SHAPER_A_WEIGHT = 7, + NET_SHAPER_A_IFINDEX = 8, + NET_SHAPER_A_PARENT = 9, + NET_SHAPER_A_LEAVES = 10, + __NET_SHAPER_A_MAX = 11, + NET_SHAPER_A_MAX = 10, +}; + +enum { + NET_SHAPER_A_HANDLE_SCOPE = 1, + NET_SHAPER_A_HANDLE_ID = 2, + __NET_SHAPER_A_HANDLE_MAX = 3, + NET_SHAPER_A_HANDLE_MAX = 2, +}; + +enum { + NET_SHAPER_CMD_GET = 1, + NET_SHAPER_CMD_SET = 2, + NET_SHAPER_CMD_DELETE = 3, + NET_SHAPER_CMD_GROUP = 4, + NET_SHAPER_CMD_CAP_GET = 5, + __NET_SHAPER_CMD_MAX = 6, + NET_SHAPER_CMD_MAX = 5, +}; + +struct pci_raw_ops { + int (*read)(unsigned int, unsigned int, unsigned int, int, int, u32 *); + int (*write)(unsigned int, unsigned int, unsigned int, int, int, u32); +}; + +struct acpi_pci_root_ops; + +struct acpi_pci_root_info { + struct acpi_pci_root *root; + struct acpi_device *bridge; + struct acpi_pci_root_ops *ops; + struct list_head resources; + char name[16]; +}; + +struct acpi_pci_root_ops { + struct pci_ops *pci_ops; + int (*init_info)(struct acpi_pci_root_info *); + void (*release_info)(struct acpi_pci_root_info *); + int (*prepare_resources)(struct acpi_pci_root_info *); +}; + +struct pci_root_info___2 { + struct acpi_pci_root_info common; + struct pci_sysdata sd; + bool mcfg_added; + u8 start_bus; + u8 end_bus; +}; + +struct irq_info { + u8 bus; + u8 devfn; + struct { + u8 link; + u16 bitmap; + } __attribute__((packed)) irq[4]; + u8 slot; + u8 rfu; +}; + +struct irq_routing_table { + u32 signature; + u16 version; + u16 size; + u8 rtr_bus; + u8 rtr_devfn; + u16 exclusive_irqs; + u16 rtr_vendor; + u16 rtr_device; + u32 miniport_data; + u8 rfu[11]; + u8 checksum; + struct irq_info slots[0]; +}; + +struct irt_routing_table { + u32 signature; + u8 size; + u8 used; + u16 exclusive_irqs; + struct irq_info slots[0]; +}; + +struct irq_router { + char *name; + u16 vendor; + u16 device; + int (*get)(struct pci_dev *, struct pci_dev *, int); + int (*set)(struct pci_dev *, struct pci_dev *, int, int); + int (*lvl)(struct pci_dev *, struct pci_dev *, int, int); +}; + +struct irq_router_handler { + u16 vendor; + int (*probe)(struct irq_router *, struct pci_dev *, u16); +}; + +struct restore_data_record { + long unsigned int jump_address; + long unsigned int jump_address_phys; + long unsigned int cr3; + long unsigned int magic; + long unsigned int e820_checksum; +}; + +typedef __u32 Elf32_Addr; + +typedef __u16 Elf32_Half; + +typedef __u32 Elf32_Off; + +struct elf32_hdr { + unsigned char e_ident[16]; + Elf32_Half e_type; + Elf32_Half e_machine; + Elf32_Word e_version; + Elf32_Addr e_entry; + Elf32_Off e_phoff; + Elf32_Off e_shoff; + Elf32_Word e_flags; + Elf32_Half e_ehsize; + Elf32_Half e_phentsize; + Elf32_Half e_phnum; + Elf32_Half e_shentsize; + Elf32_Half e_shnum; + Elf32_Half e_shstrndx; +}; + +typedef struct elf32_hdr Elf32_Ehdr; + +struct elf32_phdr { + Elf32_Word p_type; + Elf32_Off p_offset; + Elf32_Addr p_vaddr; + Elf32_Addr p_paddr; + Elf32_Word p_filesz; + Elf32_Word p_memsz; + Elf32_Word p_flags; + Elf32_Word p_align; +}; + +typedef struct elf32_phdr Elf32_Phdr; + +typedef struct elf32_note Elf32_Nhdr; + +struct freader { + void *buf; + u32 buf_sz; + int err; + union { + struct { + struct file *file; + struct folio *folio; + void *addr; + loff_t folio_off; + bool may_fault; + }; + struct { + const char *data; + u64 data_sz; + }; + }; +}; + +struct compress_format { + unsigned char magic[2]; + const char *name; + decompress_fn decompressor; +}; + +struct fdt_errtabent { + const char *str; +}; + +struct radix_tree_iter { + long unsigned int index; + long unsigned int next_index; + long unsigned int tags; + struct xa_node *node; +}; + +enum { + RADIX_TREE_ITER_TAG_MASK = 15, + RADIX_TREE_ITER_TAGGED = 16, + RADIX_TREE_ITER_CONTIG = 32, +}; + +struct ida_bitmap { + long unsigned int bitmap[16]; +}; + +struct klist_waiter { + struct list_head list; + struct klist_node *node; + struct task_struct *process; + int woken; +}; + +enum { + LOGIC_PIO_INDIRECT = 0, + LOGIC_PIO_CPU_MMIO = 1, +}; + +struct logic_pio_host_ops; + +struct logic_pio_hwaddr { + struct list_head list; + const struct fwnode_handle *fwnode; + resource_size_t hw_start; + resource_size_t io_start; + resource_size_t size; + long unsigned int flags; + void *hostdata; + const struct logic_pio_host_ops *ops; +}; + +struct logic_pio_host_ops { + u32 (*in)(void *, long unsigned int, size_t); + void (*out)(void *, long unsigned int, u32, size_t); + u32 (*ins)(void *, long unsigned int, void *, size_t, unsigned int); + void (*outs)(void *, long unsigned int, const void *, size_t, unsigned int); +}; + +struct maple_metadata { + unsigned char end; + unsigned char gap; +}; + +struct maple_pnode; + +struct maple_range_64 { + struct maple_pnode *parent; + long unsigned int pivot[15]; + union { + void *slot[16]; + struct { + void *pad[15]; + struct maple_metadata meta; + }; + }; +}; + +struct maple_arange_64 { + struct maple_pnode *parent; + long unsigned int pivot[9]; + void *slot[10]; + long unsigned int gap[10]; + struct maple_metadata meta; +}; + +struct maple_topiary { + struct maple_pnode *parent; + struct maple_enode *next; +}; + +enum maple_type { + maple_dense = 0, + maple_leaf_64 = 1, + maple_range_64 = 2, + maple_arange_64 = 3, +}; + +struct maple_node { + union { + struct { + struct maple_pnode *parent; + void *slot[31]; + }; + struct { + void *pad; + struct callback_head rcu; + struct maple_enode *piv_parent; + unsigned char parent_slot; + enum maple_type type; + unsigned char slot_len; + unsigned int ma_flags; + }; + struct maple_range_64 mr64; + struct maple_arange_64 ma64; + struct maple_alloc alloc; + }; +}; + +struct ma_topiary { + struct maple_enode *head; + struct maple_enode *tail; + struct maple_tree *mtree; +}; + +struct ma_wr_state { + struct ma_state *mas; + struct maple_node *node; + long unsigned int r_min; + long unsigned int r_max; + enum maple_type type; + unsigned char offset_end; + long unsigned int *pivots; + long unsigned int end_piv; + void **slots; + void *entry; + void *content; + unsigned char vacant_height; + unsigned char sufficient_height; +}; + +struct trace_event_raw_ma_op { + struct trace_entry ent; + const char *fn; + long unsigned int min; + long unsigned int max; + long unsigned int index; + long unsigned int last; + void *node; + char __data[0]; +}; + +struct trace_event_raw_ma_read { + struct trace_entry ent; + const char *fn; + long unsigned int min; + long unsigned int max; + long unsigned int index; + long unsigned int last; + void *node; + char __data[0]; +}; + +struct trace_event_raw_ma_write { + struct trace_entry ent; + const char *fn; + long unsigned int min; + long unsigned int max; + long unsigned int index; + long unsigned int last; + long unsigned int piv; + void *val; + void *node; + char __data[0]; +}; + +struct trace_event_data_offsets_ma_op {}; + +struct trace_event_data_offsets_ma_read {}; + +struct trace_event_data_offsets_ma_write {}; + +typedef void (*btf_trace_ma_op)(void *, const char *, struct ma_state *); + +typedef void (*btf_trace_ma_read)(void *, const char *, struct ma_state *); + +typedef void (*btf_trace_ma_write)(void *, const char *, struct ma_state *, long unsigned int, void *); + +struct maple_big_node { + long unsigned int pivot[33]; + union { + struct maple_enode *slot[34]; + struct { + long unsigned int padding[21]; + long unsigned int gap[21]; + }; + }; + unsigned char b_end; + enum maple_type type; +}; + +struct maple_subtree_state { + struct ma_state *orig_l; + struct ma_state *orig_r; + struct ma_state *l; + struct ma_state *m; + struct ma_state *r; + struct ma_topiary *free; + struct ma_topiary *destroy; + struct maple_big_node *bn; +}; + +enum { + Root_NFS = 255, + Root_CIFS = 254, + Root_Generic = 253, + Root_RAM0 = 1048576, +}; + +enum perf_msr_id { + PERF_MSR_TSC = 0, + PERF_MSR_APERF = 1, + PERF_MSR_MPERF = 2, + PERF_MSR_PPERF = 3, + PERF_MSR_SMI = 4, + PERF_MSR_PTSC = 5, + PERF_MSR_IRPERF = 6, + PERF_MSR_THERM = 7, + PERF_MSR_EVENT_MAX = 8, +}; + +struct pebs_basic { + u64 format_group: 32; + u64 retire_latency: 16; + u64 format_size: 16; + u64 ip; + u64 applicable_counters; + u64 tsc; +}; + +struct pebs_meminfo { + u64 address; + u64 aux; + union { + u64 mem_latency; + struct { + u64 instr_latency: 16; + u64 pad2: 16; + u64 cache_latency: 16; + u64 pad3: 16; + }; + }; + u64 tsx_tuning; +}; + +struct pebs_gprs { + u64 flags; + u64 ip; + u64 ax; + u64 cx; + u64 dx; + u64 bx; + u64 sp; + u64 bp; + u64 si; + u64 di; + u64 r8; + u64 r9; + u64 r10; + u64 r11; + u64 r12; + u64 r13; + u64 r14; + u64 r15; +}; + +struct pebs_xmm { + u64 xmm[32]; +}; + +struct pebs_cntr_header { + u32 cntr; + u32 fixed; + u32 metrics; + u32 reserved; +}; + +struct x86_perf_regs { + struct pt_regs regs; + u64 *xmm_regs; +}; + +enum { + PERF_TXN_ELISION = 1ULL, + PERF_TXN_TRANSACTION = 2ULL, + PERF_TXN_SYNC = 4ULL, + PERF_TXN_ASYNC = 8ULL, + PERF_TXN_RETRY = 16ULL, + PERF_TXN_CONFLICT = 32ULL, + PERF_TXN_CAPACITY_WRITE = 64ULL, + PERF_TXN_CAPACITY_READ = 128ULL, + PERF_TXN_MAX = 256ULL, + PERF_TXN_ABORT_MASK = 18446744069414584320ULL, + PERF_TXN_ABORT_SHIFT = 32ULL, +}; + +union intel_x86_pebs_dse { + u64 val; + struct { + unsigned int ld_dse: 4; + unsigned int ld_stlb_miss: 1; + unsigned int ld_locked: 1; + unsigned int ld_data_blk: 1; + unsigned int ld_addr_blk: 1; + unsigned int ld_reserved: 24; + }; + struct { + unsigned int st_l1d_hit: 1; + unsigned int st_reserved1: 3; + unsigned int st_stlb_miss: 1; + unsigned int st_locked: 1; + unsigned int st_reserved2: 26; + }; + struct { + unsigned int st_lat_dse: 4; + unsigned int st_lat_stlb_miss: 1; + unsigned int st_lat_locked: 1; + unsigned int ld_reserved3: 26; + }; + struct { + unsigned int mtl_dse: 5; + unsigned int mtl_locked: 1; + unsigned int mtl_stlb_miss: 1; + unsigned int mtl_fwd_blk: 1; + unsigned int ld_reserved4: 24; + }; + struct { + unsigned int lnc_dse: 8; + unsigned int ld_reserved5: 2; + unsigned int lnc_stlb_miss: 1; + unsigned int lnc_locked: 1; + unsigned int lnc_data_blk: 1; + unsigned int lnc_addr_blk: 1; + unsigned int ld_reserved6: 18; + }; +}; + +struct pebs_record_core { + u64 flags; + u64 ip; + u64 ax; + u64 bx; + u64 cx; + u64 dx; + u64 si; + u64 di; + u64 bp; + u64 sp; + u64 r8; + u64 r9; + u64 r10; + u64 r11; + u64 r12; + u64 r13; + u64 r14; + u64 r15; +}; + +struct pebs_record_nhm { + u64 flags; + u64 ip; + u64 ax; + u64 bx; + u64 cx; + u64 dx; + u64 si; + u64 di; + u64 bp; + u64 sp; + u64 r8; + u64 r9; + u64 r10; + u64 r11; + u64 r12; + u64 r13; + u64 r14; + u64 r15; + u64 status; + u64 dla; + u64 dse; + u64 lat; +}; + +union hsw_tsx_tuning { + struct { + u32 cycles_last_block: 32; + u32 hle_abort: 1; + u32 rtm_abort: 1; + u32 instruction_abort: 1; + u32 non_instruction_abort: 1; + u32 retry: 1; + u32 data_conflict: 1; + u32 capacity_writes: 1; + u32 capacity_reads: 1; + }; + u64 value; +}; + +struct pebs_record_skl { + u64 flags; + u64 ip; + u64 ax; + u64 bx; + u64 cx; + u64 dx; + u64 si; + u64 di; + u64 bp; + u64 sp; + u64 r8; + u64 r9; + u64 r10; + u64 r11; + u64 r12; + u64 r13; + u64 r14; + u64 r15; + u64 status; + u64 dla; + u64 dse; + u64 lat; + u64 real_ip; + u64 tsx_tuning; + u64 tsc; +}; + +typedef void (*setup_fn)(struct perf_event *, struct pt_regs *, void *, struct perf_sample_data *, struct pt_regs *); + +struct bts_record { + u64 from; + u64 to; + u64 flags; +}; + +enum { + SNB_PCI_UNCORE_IMC = 0, +}; + +enum perf_snb_uncore_imc_freerunning_types { + SNB_PCI_UNCORE_IMC_DATA_READS = 0, + SNB_PCI_UNCORE_IMC_DATA_WRITES = 1, + SNB_PCI_UNCORE_IMC_GT_REQUESTS = 2, + SNB_PCI_UNCORE_IMC_IA_REQUESTS = 3, + SNB_PCI_UNCORE_IMC_IO_REQUESTS = 4, + SNB_PCI_UNCORE_IMC_FREERUNNING_TYPE_MAX = 5, +}; + +struct imc_uncore_pci_dev { + __u32 pci_id; + struct pci_driver *driver; +}; + +enum perf_tgl_uncore_imc_freerunning_types { + TGL_MMIO_UNCORE_IMC_DATA_TOTAL = 0, + TGL_MMIO_UNCORE_IMC_DATA_READ = 1, + TGL_MMIO_UNCORE_IMC_DATA_WRITE = 2, + TGL_MMIO_UNCORE_IMC_FREERUNNING_TYPE_MAX = 3, +}; + +enum perf_adl_uncore_imc_freerunning_types { + ADL_MMIO_UNCORE_IMC_DATA_TOTAL = 0, + ADL_MMIO_UNCORE_IMC_DATA_READ = 1, + ADL_MMIO_UNCORE_IMC_DATA_WRITE = 2, + ADL_MMIO_UNCORE_IMC_FREERUNNING_TYPE_MAX = 3, +}; + +union cpuid10_eax { + struct { + unsigned int version_id: 8; + unsigned int num_counters: 8; + unsigned int bit_width: 8; + unsigned int mask_length: 8; + } split; + unsigned int full; +}; + +union cpuid10_ebx { + struct { + unsigned int no_unhalted_core_cycles: 1; + unsigned int no_instructions_retired: 1; + unsigned int no_unhalted_reference_cycles: 1; + unsigned int no_llc_reference: 1; + unsigned int no_llc_misses: 1; + unsigned int no_branch_instruction_retired: 1; + unsigned int no_branch_misses_retired: 1; + } split; + unsigned int full; +}; + +union cpuid10_edx { + struct { + unsigned int num_counters_fixed: 5; + unsigned int bit_width_fixed: 8; + unsigned int reserved1: 2; + unsigned int anythread_deprecated: 1; + unsigned int reserved2: 16; + } split; + unsigned int full; +}; + +union x86_pmu_config { + struct { + u64 event: 8; + u64 umask: 8; + u64 usr: 1; + u64 os: 1; + u64 edge: 1; + u64 pc: 1; + u64 interrupt: 1; + u64 __reserved1: 1; + u64 en: 1; + u64 inv: 1; + u64 cmask: 8; + u64 event2: 4; + u64 __reserved2: 4; + u64 go: 1; + u64 ho: 1; + } bits; + u64 value; +}; + +enum hv_interrupt_type { + HV_X64_INTERRUPT_TYPE_FIXED = 0, + HV_X64_INTERRUPT_TYPE_LOWESTPRIORITY = 1, + HV_X64_INTERRUPT_TYPE_SMI = 2, + HV_X64_INTERRUPT_TYPE_REMOTEREAD = 3, + HV_X64_INTERRUPT_TYPE_NMI = 4, + HV_X64_INTERRUPT_TYPE_INIT = 5, + HV_X64_INTERRUPT_TYPE_SIPI = 6, + HV_X64_INTERRUPT_TYPE_EXTINT = 7, + HV_X64_INTERRUPT_TYPE_LOCALINT0 = 8, + HV_X64_INTERRUPT_TYPE_LOCALINT1 = 9, + HV_X64_INTERRUPT_TYPE_MAXIMUM = 10, +}; + +enum hv_interrupt_trigger_mode { + HV_INTERRUPT_TRIGGER_MODE_EDGE = 0, + HV_INTERRUPT_TRIGGER_MODE_LEVEL = 1, +}; + +struct hv_device_interrupt_descriptor { + u32 interrupt_type; + u32 trigger_mode; + u32 vector_count; + u32 reserved; + struct hv_device_interrupt_target target; +}; + +struct hv_input_map_device_interrupt { + u64 partition_id; + u64 device_id; + u32 flags; + u32 base_irt_idx; + struct hv_interrupt_entry logical_interrupt_entry; + struct hv_device_interrupt_descriptor interrupt_descriptor; +}; + +struct hv_output_map_device_interrupt { + struct hv_interrupt_entry interrupt_entry; + u64 ext_status_deprecated[5]; +}; + +struct hv_input_unmap_device_interrupt { + u64 partition_id; + u64 device_id; + struct hv_interrupt_entry interrupt_entry; + u32 flags; +} __attribute__((packed)); + +typedef u16 hv_pci_rid; + +typedef u16 hv_pci_segment; + +union hv_pci_bdf { + u16 as_uint16; + struct { + u8 function: 3; + u8 device: 5; + u8 bus; + }; +}; + +union hv_pci_bus_range { + u16 as_uint16; + struct { + u8 subordinate_bus; + u8 secondary_bus; + }; +}; + +enum hv_device_type { + HV_DEVICE_TYPE_LOGICAL = 0, + HV_DEVICE_TYPE_PCI = 1, + HV_DEVICE_TYPE_IOAPIC = 2, + HV_DEVICE_TYPE_ACPI = 3, +}; + +union hv_device_id { + u64 as_uint64; + struct { + u64 reserved0: 62; + u64 device_type: 2; + }; + struct { + u64 id: 62; + u64 device_type: 2; + } logical; + struct { + union { + hv_pci_rid rid; + union hv_pci_bdf bdf; + }; + hv_pci_segment segment; + union hv_pci_bus_range shadow_bus_range; + u16 phantom_function_bits: 2; + u16 source_shadow: 1; + u16 rsvdz0: 11; + u16 device_type: 2; + } pci; + struct { + u8 ioapic_id; + u8 rsvdz0; + u16 rsvdz1; + u16 rsvdz2; + u16 rsvdz3: 14; + u16 device_type: 2; + } ioapic; + struct { + u32 input_mapping_base; + u32 input_mapping_count: 30; + u32 device_type: 2; + } acpi; +}; + +struct rid_data { + struct pci_dev *bridge; + u32 rid; +}; + +struct trampoline_header { + u64 start; + u64 efer; + u32 cr4; + u32 flags; + u32 lock; +}; + +struct boot_params_to_save { + unsigned int start; + unsigned int len; +}; + +enum bug_trap_type { + BUG_TRAP_TYPE_NONE = 0, + BUG_TRAP_TYPE_WARN = 1, + BUG_TRAP_TYPE_BUG = 2, +}; + +enum kernel_gp_hint { + GP_NO_HINT = 0, + GP_NON_CANONICAL = 1, + GP_CANONICAL = 2, +}; + +struct trace_event_raw_nmi_handler { + struct trace_entry ent; + void *handler; + s64 delta_ns; + int handled; + char __data[0]; +}; + +struct trace_event_data_offsets_nmi_handler {}; + +typedef void (*btf_trace_nmi_handler)(void *, void *, s64, int); + +struct nmi_desc { + raw_spinlock_t lock; + nmi_handler_t emerg_handler; + struct list_head head; +}; + +struct nmi_stats { + unsigned int normal; + unsigned int unknown; + unsigned int external; + unsigned int swallow; + long unsigned int recv_jiffies; + long unsigned int idt_seq; + long unsigned int idt_nmi_seq; + long unsigned int idt_ignored; + atomic_long_t idt_calls; + long unsigned int idt_seq_snap; + long unsigned int idt_nmi_seq_snap; + long unsigned int idt_ignored_snap; + long int idt_calls_snap; +}; + +enum nmi_states { + NMI_NOT_RUNNING = 0, + NMI_EXECUTING = 1, + NMI_LATCHED = 2, +}; + +struct x86_apic_ops { + unsigned int (*io_apic_read)(unsigned int, unsigned int); + void (*restore)(void); +}; + +struct _fpx_sw_bytes { + __u32 magic1; + __u32 extended_size; + __u64 xfeatures; + __u32 xstate_size; + __u32 padding[7]; +}; + +struct _xmmreg { + __u32 element[4]; +}; + +struct _fpstate_32 { + __u32 cw; + __u32 sw; + __u32 tag; + __u32 ipoff; + __u32 cssel; + __u32 dataoff; + __u32 datasel; + struct _fpreg _st[8]; + __u16 status; + __u16 magic; + __u32 _fxsr_env[6]; + __u32 mxcsr; + __u32 reserved; + struct _fpxreg _fxsr_st[8]; + struct _xmmreg _xmm[8]; + union { + __u32 padding1[44]; + __u32 padding[44]; + }; + union { + __u32 padding2[12]; + struct _fpx_sw_bytes sw_reserved; + }; +}; + +struct sigcontext_32 { + __u16 gs; + __u16 __gsh; + __u16 fs; + __u16 __fsh; + __u16 es; + __u16 __esh; + __u16 ds; + __u16 __dsh; + __u32 di; + __u32 si; + __u32 bp; + __u32 sp; + __u32 bx; + __u32 dx; + __u32 cx; + __u32 ax; + __u32 trapno; + __u32 err; + __u32 ip; + __u16 cs; + __u16 __csh; + __u32 flags; + __u32 sp_at_signal; + __u16 ss; + __u16 __ssh; + __u32 fpstate; + __u32 oldmask; + __u32 cr2; +}; + +struct compat_sigaltstack { + compat_uptr_t ss_sp; + int ss_flags; + compat_size_t ss_size; +}; + +typedef struct compat_sigaltstack compat_stack_t; + +typedef struct compat_siginfo compat_siginfo_t; + +struct ucontext_ia32 { + unsigned int uc_flags; + unsigned int uc_link; + compat_stack_t uc_stack; + struct sigcontext_32 uc_mcontext; + compat_sigset_t uc_sigmask; +}; + +struct sigframe_ia32 { + u32 pretcode; + int sig; + struct sigcontext_32 sc; + struct _fpstate_32 fpstate_unused; + unsigned int extramask[1]; + char retcode[8]; +}; + +struct rt_sigframe_ia32 { + u32 pretcode; + int sig; + u32 pinfo; + u32 puc; + compat_siginfo_t info; + struct ucontext_ia32 uc; + char retcode[8]; +}; + +struct change_member { + struct e820_entry *entry; + long long unsigned int addr; +}; + +typedef u8 retpoline_thunk_t[32]; + +enum cfi_mode { + CFI_AUTO = 0, + CFI_OFF = 1, + CFI_KCFI = 2, + CFI_FINEIBT = 3, +}; + +struct smp_alt_module { + struct module *mod; + char *name; + const s32 *locks; + const s32 *locks_end; + u8 *text; + u8 *text_end; + struct list_head next; +}; + +typedef void text_poke_f(void *, const void *, size_t); + +struct smp_text_poke_loc { + s32 rel_addr; + s32 disp; + u8 len; + u8 opcode; + const u8 text[5]; + u8 old; +}; + +struct smp_text_poke_array { + struct smp_text_poke_loc vec[256]; + int nr_entries; +}; + +struct user_regset_view { + const char *name; + const struct user_regset *regsets; + unsigned int n; + u32 e_flags; + u16 e_machine; + u8 ei_osabi; +}; + +enum x86_regset_32 { + REGSET32_GENERAL = 0, + REGSET32_FP = 1, + REGSET32_XFP = 2, + REGSET32_XSTATE = 3, + REGSET32_TLS = 4, + REGSET32_IOPERM = 5, +}; + +enum x86_regset_64 { + REGSET64_GENERAL = 0, + REGSET64_FP = 1, + REGSET64_IOPERM = 2, + REGSET64_XSTATE = 3, + REGSET64_SSP = 4, +}; + +struct pt_regs_offset { + const char *name; + int offset; +}; + +enum _cache_type { + CTYPE_NULL = 0, + CTYPE_DATA = 1, + CTYPE_INST = 2, + CTYPE_UNIFIED = 3, +}; + +union _cpuid4_leaf_eax { + struct { + enum _cache_type type: 5; + unsigned int level: 3; + unsigned int is_self_initializing: 1; + unsigned int is_fully_associative: 1; + unsigned int reserved: 4; + unsigned int num_threads_sharing: 12; + unsigned int num_cores_on_die: 6; + } split; + u32 full; +}; + +union _cpuid4_leaf_ebx { + struct { + unsigned int coherency_line_size: 12; + unsigned int physical_line_partition: 10; + unsigned int ways_of_associativity: 10; + } split; + u32 full; +}; + +union _cpuid4_leaf_ecx { + struct { + unsigned int number_of_sets: 32; + } split; + u32 full; +}; + +struct _cpuid4_info { + union _cpuid4_leaf_eax eax; + union _cpuid4_leaf_ebx ebx; + union _cpuid4_leaf_ecx ecx; + unsigned int id; + long unsigned int size; +}; + +union l1_cache { + struct { + unsigned int line_size: 8; + unsigned int lines_per_tag: 8; + unsigned int assoc: 8; + unsigned int size_in_kb: 8; + }; + unsigned int val; +}; + +union l2_cache { + struct { + unsigned int line_size: 8; + unsigned int lines_per_tag: 4; + unsigned int assoc: 4; + unsigned int size_in_kb: 16; + }; + unsigned int val; +}; + +union l3_cache { + struct { + unsigned int line_size: 8; + unsigned int lines_per_tag: 4; + unsigned int assoc: 4; + unsigned int res: 2; + unsigned int size_encoded: 14; + }; + unsigned int val; +}; + +enum { + SAMPLES = 8, + MIN_CHANGE = 5, +}; + +enum spectre_v2_user_mitigation { + SPECTRE_V2_USER_NONE = 0, + SPECTRE_V2_USER_STRICT = 1, + SPECTRE_V2_USER_STRICT_PREFERRED = 2, + SPECTRE_V2_USER_PRCTL = 3, + SPECTRE_V2_USER_SECCOMP = 4, +}; + +enum ssb_mitigation { + SPEC_STORE_BYPASS_NONE = 0, + SPEC_STORE_BYPASS_DISABLE = 1, + SPEC_STORE_BYPASS_PRCTL = 2, + SPEC_STORE_BYPASS_SECCOMP = 3, +}; + +enum l1tf_mitigations { + L1TF_MITIGATION_OFF = 0, + L1TF_MITIGATION_AUTO = 1, + L1TF_MITIGATION_FLUSH_NOWARN = 2, + L1TF_MITIGATION_FLUSH = 3, + L1TF_MITIGATION_FLUSH_NOSMT = 4, + L1TF_MITIGATION_FULL = 5, + L1TF_MITIGATION_FULL_FORCE = 6, +}; + +enum mds_mitigations { + MDS_MITIGATION_OFF = 0, + MDS_MITIGATION_AUTO = 1, + MDS_MITIGATION_FULL = 2, + MDS_MITIGATION_VMWERV = 3, +}; + +enum smt_mitigations { + SMT_MITIGATIONS_OFF = 0, + SMT_MITIGATIONS_AUTO = 1, + SMT_MITIGATIONS_ON = 2, +}; + +enum vmx_l1d_flush_state { + VMENTER_L1D_FLUSH_AUTO = 0, + VMENTER_L1D_FLUSH_NEVER = 1, + VMENTER_L1D_FLUSH_COND = 2, + VMENTER_L1D_FLUSH_ALWAYS = 3, + VMENTER_L1D_FLUSH_EPT_DISABLED = 4, + VMENTER_L1D_FLUSH_NOT_REQUIRED = 5, +}; + +enum taa_mitigations { + TAA_MITIGATION_OFF = 0, + TAA_MITIGATION_AUTO = 1, + TAA_MITIGATION_UCODE_NEEDED = 2, + TAA_MITIGATION_VERW = 3, + TAA_MITIGATION_TSX_DISABLED = 4, +}; + +enum mmio_mitigations { + MMIO_MITIGATION_OFF = 0, + MMIO_MITIGATION_AUTO = 1, + MMIO_MITIGATION_UCODE_NEEDED = 2, + MMIO_MITIGATION_VERW = 3, +}; + +enum rfds_mitigations { + RFDS_MITIGATION_OFF = 0, + RFDS_MITIGATION_AUTO = 1, + RFDS_MITIGATION_VERW = 2, + RFDS_MITIGATION_UCODE_NEEDED = 3, +}; + +enum srbds_mitigations { + SRBDS_MITIGATION_OFF = 0, + SRBDS_MITIGATION_AUTO = 1, + SRBDS_MITIGATION_UCODE_NEEDED = 2, + SRBDS_MITIGATION_FULL = 3, + SRBDS_MITIGATION_TSX_OFF = 4, + SRBDS_MITIGATION_HYPERVISOR = 5, +}; + +enum l1d_flush_mitigations { + L1D_FLUSH_OFF = 0, + L1D_FLUSH_ON = 1, +}; + +enum gds_mitigations { + GDS_MITIGATION_OFF = 0, + GDS_MITIGATION_AUTO = 1, + GDS_MITIGATION_UCODE_NEEDED = 2, + GDS_MITIGATION_FORCE = 3, + GDS_MITIGATION_FULL = 4, + GDS_MITIGATION_FULL_LOCKED = 5, + GDS_MITIGATION_HYPERVISOR = 6, +}; + +enum spectre_v1_mitigation { + SPECTRE_V1_MITIGATION_NONE = 0, + SPECTRE_V1_MITIGATION_AUTO = 1, +}; + +enum its_mitigation { + ITS_MITIGATION_OFF = 0, + ITS_MITIGATION_AUTO = 1, + ITS_MITIGATION_VMEXIT_ONLY = 2, + ITS_MITIGATION_ALIGNED_THUNKS = 3, + ITS_MITIGATION_RETPOLINE_STUFF = 4, +}; + +enum retbleed_mitigation { + RETBLEED_MITIGATION_NONE = 0, + RETBLEED_MITIGATION_AUTO = 1, + RETBLEED_MITIGATION_UNRET = 2, + RETBLEED_MITIGATION_IBPB = 3, + RETBLEED_MITIGATION_IBRS = 4, + RETBLEED_MITIGATION_EIBRS = 5, + RETBLEED_MITIGATION_STUFF = 6, +}; + +enum srso_mitigation { + SRSO_MITIGATION_NONE = 0, + SRSO_MITIGATION_AUTO = 1, + SRSO_MITIGATION_UCODE_NEEDED = 2, + SRSO_MITIGATION_SAFE_RET_UCODE_NEEDED = 3, + SRSO_MITIGATION_MICROCODE = 4, + SRSO_MITIGATION_NOSMT = 5, + SRSO_MITIGATION_SAFE_RET = 6, + SRSO_MITIGATION_IBPB = 7, + SRSO_MITIGATION_IBPB_ON_VMEXIT = 8, + SRSO_MITIGATION_BP_SPEC_REDUCE = 9, +}; + +enum tsa_mitigations { + TSA_MITIGATION_NONE = 0, + TSA_MITIGATION_AUTO = 1, + TSA_MITIGATION_UCODE_NEEDED = 2, + TSA_MITIGATION_USER_KERNEL = 3, + TSA_MITIGATION_VM = 4, + TSA_MITIGATION_FULL = 5, +}; + +enum spectre_v2_mitigation_cmd { + SPECTRE_V2_CMD_NONE = 0, + SPECTRE_V2_CMD_AUTO = 1, + SPECTRE_V2_CMD_FORCE = 2, + SPECTRE_V2_CMD_RETPOLINE = 3, + SPECTRE_V2_CMD_RETPOLINE_GENERIC = 4, + SPECTRE_V2_CMD_RETPOLINE_LFENCE = 5, + SPECTRE_V2_CMD_EIBRS = 6, + SPECTRE_V2_CMD_EIBRS_RETPOLINE = 7, + SPECTRE_V2_CMD_EIBRS_LFENCE = 8, + SPECTRE_V2_CMD_IBRS = 9, +}; + +enum spectre_v2_user_cmd { + SPECTRE_V2_USER_CMD_NONE = 0, + SPECTRE_V2_USER_CMD_AUTO = 1, + SPECTRE_V2_USER_CMD_FORCE = 2, + SPECTRE_V2_USER_CMD_PRCTL = 3, + SPECTRE_V2_USER_CMD_PRCTL_IBPB = 4, + SPECTRE_V2_USER_CMD_SECCOMP = 5, + SPECTRE_V2_USER_CMD_SECCOMP_IBPB = 6, +}; + +enum bhi_mitigations { + BHI_MITIGATION_OFF = 0, + BHI_MITIGATION_AUTO = 1, + BHI_MITIGATION_ON = 2, + BHI_MITIGATION_VMEXIT_ONLY = 3, +}; + +enum ssb_mitigation_cmd { + SPEC_STORE_BYPASS_CMD_NONE = 0, + SPEC_STORE_BYPASS_CMD_AUTO = 1, + SPEC_STORE_BYPASS_CMD_ON = 2, + SPEC_STORE_BYPASS_CMD_PRCTL = 3, + SPEC_STORE_BYPASS_CMD_SECCOMP = 4, +}; + +enum vmscape_mitigations { + VMSCAPE_MITIGATION_NONE = 0, + VMSCAPE_MITIGATION_AUTO = 1, + VMSCAPE_MITIGATION_IBPB_EXIT_TO_USER = 2, + VMSCAPE_MITIGATION_IBPB_ON_VMEXIT = 3, +}; + +enum energy_perf_value_index { + EPB_INDEX_PERFORMANCE = 0, + EPB_INDEX_BALANCE_PERFORMANCE = 1, + EPB_INDEX_NORMAL = 2, + EPB_INDEX_BALANCE_POWERSAVE = 3, + EPB_INDEX_POWERSAVE = 4, +}; + +enum severity_level { + MCE_NO_SEVERITY = 0, + MCE_DEFERRED_SEVERITY = 1, + MCE_UCNA_SEVERITY = 1, + MCE_KEEP_SEVERITY = 2, + MCE_SOME_SEVERITY = 3, + MCE_AO_SEVERITY = 4, + MCE_UC_SEVERITY = 5, + MCE_AR_SEVERITY = 6, + MCE_PANIC_SEVERITY = 7, +}; + +struct trace_event_raw_mce_record { + struct trace_entry ent; + u64 mcgcap; + u64 mcgstatus; + u64 status; + u64 addr; + u64 misc; + u64 synd; + u64 ipid; + u64 ip; + u64 tsc; + u64 ppin; + u64 walltime; + u32 cpu; + u32 cpuid; + u32 apicid; + u32 socketid; + u8 cs; + u8 bank; + u8 cpuvendor; + u32 microcode; + u32 __data_loc_v_data; + char __data[0]; +}; + +struct trace_event_data_offsets_mce_record { + u32 v_data; + const void *v_data_ptr_; +}; + +typedef void (*btf_trace_mce_record)(void *, struct mce_hw_err *); + +struct mce_bank_dev { + struct device_attribute attr; + char attrname[16]; + u8 bank; +}; + +struct mtrr_sentry { + __u64 base; + __u32 size; + __u32 type; +}; + +struct mtrr_gentry { + __u64 base; + __u32 size; + __u32 regnum; + __u32 type; + __u32 _pad; +}; + +struct mtrr_sentry32 { + compat_ulong_t base; + compat_uint_t size; + compat_uint_t type; +}; + +struct mtrr_gentry32 { + compat_ulong_t regnum; + compat_uint_t base; + compat_uint_t size; + compat_uint_t type; +}; + +struct fixed_range_block { + int base_msr; + int ranges; +}; + +struct cache_map { + u64 start; + u64 end; + u64 flags; + u64 type: 8; + u64 fixed: 1; +}; + +struct ucode_patch { + struct list_head plist; + void *data; + unsigned int size; + u32 patch_id; + u16 equiv_cpu; +}; + +struct equiv_cpu_entry { + u32 installed_cpu; + u32 fixed_errata_mask; + u32 fixed_errata_compare; + u16 equiv_cpu; + u16 res; +}; + +struct microcode_header_amd { + u32 data_code; + u32 patch_id; + u16 mc_patch_data_id; + u8 mc_patch_data_len; + u8 init_flag; + u32 mc_patch_data_checksum; + u32 nb_dev_id; + u32 sb_dev_id; + u16 processor_rev_id; + u8 nb_rev_id; + u8 sb_rev_id; + u8 bios_api_rev; + u8 reserved1[3]; + u32 match_reg[8]; +}; + +struct microcode_amd { + struct microcode_header_amd hdr; + unsigned int mpb[0]; +}; + +struct equiv_cpu_table { + unsigned int num_entries; + struct equiv_cpu_entry *entry; +}; + +union zen_patch_rev { + struct { + __u32 rev: 8; + __u32 stepping: 4; + __u32 model: 4; + __u32 __reserved: 4; + __u32 ext_model: 4; + __u32 ext_fam: 8; + }; + __u32 ucode_rev; +}; + +union cpuid_1_eax { + struct { + __u32 stepping: 4; + __u32 model: 4; + __u32 family: 4; + __u32 __reserved0: 4; + __u32 ext_model: 4; + __u32 ext_fam: 8; + __u32 __reserved1: 4; + }; + __u32 full; +}; + +struct cont_desc { + struct microcode_amd *mc; + u32 psize; + u8 *data; + size_t size; +}; + +struct patch_digest { + u32 patch_id; + u8 sha256[32]; +}; + +struct trace_event_raw_pseudo_lock_mem_latency { + struct trace_entry ent; + u32 latency; + char __data[0]; +}; + +struct trace_event_raw_pseudo_lock_l2 { + struct trace_entry ent; + u64 l2_hits; + u64 l2_miss; + char __data[0]; +}; + +struct trace_event_raw_pseudo_lock_l3 { + struct trace_entry ent; + u64 l3_hits; + u64 l3_miss; + char __data[0]; +}; + +struct trace_event_data_offsets_pseudo_lock_mem_latency {}; + +struct trace_event_data_offsets_pseudo_lock_l2 {}; + +struct trace_event_data_offsets_pseudo_lock_l3 {}; + +typedef void (*btf_trace_pseudo_lock_mem_latency)(void *, u32); + +typedef void (*btf_trace_pseudo_lock_l2)(void *, u64, u64); + +typedef void (*btf_trace_pseudo_lock_l3)(void *, u64, u64); + +struct residency_counts { + u64 miss_before; + u64 hits_before; + u64 miss_after; + u64 hits_after; +}; + +enum split_lock_detect_state { + sld_off = 0, + sld_warn = 1, + sld_fatal = 2, + sld_ratelimit = 3, +}; + +struct cstate_entry { + struct { + unsigned int eax; + unsigned int ecx; + } states[8]; +}; + +struct sched_domain_topology_level; + +typedef const struct cpumask * (*sched_domain_mask_f)(struct sched_domain_topology_level *, int); + +typedef int (*sched_domain_flags_f)(void); + +struct sd_data { + struct sched_domain **sd; + struct sched_domain_shared **sds; + struct sched_group **sg; + struct sched_group_capacity **sgc; +}; + +struct sched_domain_topology_level { + sched_domain_mask_f mask; + sched_domain_flags_f sd_flags; + int numa_level; + struct sd_data data; + char *name; +}; + +enum apic_intr_mode_id { + APIC_PIC = 0, + APIC_VIRTUAL_WIRE = 1, + APIC_VIRTUAL_WIRE_NO_CONFIG = 2, + APIC_SYMMETRIC_IO = 3, + APIC_SYMMETRIC_IO_NO_ROUTING = 4, +}; + +struct mwait_cpu_dead { + unsigned int control; + unsigned int status; +}; + +struct mpc_ioapic { + unsigned char type; + unsigned char apicid; + unsigned char apicver; + unsigned char flags; + unsigned int apicaddr; +}; + +union IO_APIC_reg_00 { + u32 raw; + struct { + u32 __reserved_2: 14; + u32 LTS: 1; + u32 delivery_type: 1; + u32 __reserved_1: 8; + u32 ID: 8; + } bits; +}; + +union IO_APIC_reg_01 { + u32 raw; + struct { + u32 version: 8; + u32 __reserved_2: 7; + u32 PRQ: 1; + u32 entries: 8; + u32 __reserved_1: 8; + } bits; +}; + +union IO_APIC_reg_02 { + u32 raw; + struct { + u32 __reserved_2: 24; + u32 arbitration: 4; + u32 __reserved_1: 4; + } bits; +}; + +union IO_APIC_reg_03 { + u32 raw; + struct { + u32 boot_DT: 1; + u32 __reserved_1: 31; + } bits; +}; + +struct IO_APIC_route_entry { + union { + struct { + u64 vector: 8; + u64 delivery_mode: 3; + u64 dest_mode_logical: 1; + u64 delivery_status: 1; + u64 active_low: 1; + u64 irr: 1; + u64 is_level: 1; + u64 masked: 1; + u64 reserved_0: 15; + u64 reserved_1: 17; + u64 virt_destid_8_14: 7; + u64 destid_0_7: 8; + }; + struct { + u64 ir_shared_0: 8; + u64 ir_zero: 3; + u64 ir_index_15: 1; + u64 ir_shared_1: 5; + u64 ir_reserved_0: 31; + u64 ir_format: 1; + u64 ir_index_0_14: 15; + }; + struct { + u64 w1: 32; + u64 w2: 32; + }; + }; +}; + +struct irq_pin_list { + struct list_head list; + int apic; + int pin; +}; + +struct mp_chip_data { + struct list_head irq_2_pin; + struct IO_APIC_route_entry entry; + bool is_level; + bool active_low; + bool isa_irq; + u32 count; +}; + +struct mp_ioapic_gsi { + u32 gsi_base; + u32 gsi_end; +}; + +struct ioapic { + int nr_registers; + struct IO_APIC_route_entry *saved_registers; + struct mpc_ioapic mp_config; + struct mp_ioapic_gsi gsi_config; + struct ioapic_domain_cfg irqdomain_cfg; + struct irq_domain *irqdomain; + struct resource *iomem_res; +}; + +struct io_apic { + unsigned int index; + unsigned int unused[3]; + unsigned int data; + unsigned int unused2[11]; + unsigned int eoi; +}; + +struct dyn_arch_ftrace {}; + +enum { + FTRACE_FL_ENABLED = 2147483648, + FTRACE_FL_REGS = 1073741824, + FTRACE_FL_REGS_EN = 536870912, + FTRACE_FL_TRAMP = 268435456, + FTRACE_FL_TRAMP_EN = 134217728, + FTRACE_FL_IPMODIFY = 67108864, + FTRACE_FL_DISABLED = 33554432, + FTRACE_FL_DIRECT = 16777216, + FTRACE_FL_DIRECT_EN = 8388608, + FTRACE_FL_CALL_OPS = 4194304, + FTRACE_FL_CALL_OPS_EN = 2097152, + FTRACE_FL_TOUCHED = 1048576, + FTRACE_FL_MODIFIED = 524288, +}; + +struct dyn_ftrace { + long unsigned int ip; + long unsigned int flags; + struct dyn_arch_ftrace arch; +}; + +enum { + FTRACE_UPDATE_IGNORE = 0, + FTRACE_UPDATE_MAKE_CALL = 1, + FTRACE_UPDATE_MODIFY_CALL = 2, + FTRACE_UPDATE_MAKE_NOP = 3, +}; + +union ftrace_op_code_union { + char code[7]; + struct { + char op[3]; + int offset; + } __attribute__((packed)); +}; + +struct __arch_relative_insn { + u8 op; + s32 raddr; +} __attribute__((packed)); + +struct hpet_data { + long unsigned int hd_phys_address; + void *hd_address; + short unsigned int hd_nirqs; + unsigned int hd_state; + unsigned int hd_irq[32]; +}; + +typedef irqreturn_t (*rtc_irq_handler)(int, void *); + +enum hpet_mode { + HPET_MODE_UNUSED = 0, + HPET_MODE_LEGACY = 1, + HPET_MODE_CLOCKEVT = 2, + HPET_MODE_DEVICE = 3, +}; + +struct hpet_channel { + struct clock_event_device evt; + unsigned int num; + unsigned int cpu; + unsigned int irq; + unsigned int in_use; + enum hpet_mode mode; + unsigned int boot_cfg; + char name[10]; + long: 64; + long: 64; + long: 64; +}; + +struct hpet_base { + unsigned int nr_channels; + unsigned int nr_clockevents; + unsigned int boot_cfg; + struct hpet_channel *channels; +}; + +union hpet_lock { + struct { + arch_spinlock_t lock; + u32 value; + }; + u64 lockval; +}; + +enum cp_error_code { + CP_EC = 32767, + CP_RET = 1, + CP_IRET = 2, + CP_ENDBR = 3, + CP_RSTRORSSP = 4, + CP_SETSSBSY = 5, + CP_ENCL = 32768, +}; + +struct trace_event_raw_exceptions { + struct trace_entry ent; + long unsigned int address; + long unsigned int ip; + long unsigned int error_code; + char __data[0]; +}; + +struct trace_event_data_offsets_exceptions {}; + +typedef void (*btf_trace_page_fault_user)(void *, long unsigned int, struct pt_regs *, long unsigned int); + +typedef void (*btf_trace_page_fault_kernel)(void *, long unsigned int, struct pt_regs *, long unsigned int); + +enum tlb_flush_reason { + TLB_FLUSH_ON_TASK_SWITCH = 0, + TLB_REMOTE_SHOOTDOWN = 1, + TLB_LOCAL_SHOOTDOWN = 2, + TLB_LOCAL_MM_SHOOTDOWN = 3, + TLB_REMOTE_SEND_IPI = 4, + TLB_REMOTE_WRONG_CPU = 5, + NR_TLB_FLUSH_REASONS = 6, +}; + +struct tlb_state_shared { + bool is_lazy; +}; + +enum addr_stride { + PTE_STRIDE = 0, + PMD_STRIDE = 1, +}; + +struct new_asid { + unsigned int asid: 16; + unsigned int need_flush: 1; +}; + +struct addr_marker; + +struct pg_state { + struct ptdump_state ptdump; + int level; + pgprotval_t current_prot; + pgprotval_t effective_prot; + pgprotval_t prot_levels[5]; + long unsigned int start_address; + const struct addr_marker *marker; + long unsigned int lines; + bool to_dmesg; + bool check_wx; + long unsigned int wx_pages; + struct seq_file *seq; +}; + +struct addr_marker { + long unsigned int start_address; + const char *name; + long unsigned int max_lines; +}; + +enum address_markers_idx { + USER_SPACE_NR = 0, + KERNEL_SPACE_NR = 1, + LDT_NR = 2, + LOW_KERNEL_NR = 3, + VMALLOC_START_NR = 4, + VMEMMAP_START_NR = 5, + CPU_ENTRY_AREA_NR = 6, + ESPFIX_START_NR = 7, + EFI_END_NR = 8, + HIGH_KERNEL_NR = 9, + MODULES_VADDR_NR = 10, + MODULES_END_NR = 11, + FIXADDR_START_NR = 12, + END_OF_SPACE_NR = 13, +}; + +struct kaslr_memory_region { + long unsigned int *base; + long unsigned int *end; + long unsigned int size_tb; +}; + +struct efi_runtime_map_entry { + efi_memory_desc_t md; + struct kobject kobj; +}; + +struct map_attribute { + struct attribute attr; + ssize_t (*show)(struct efi_runtime_map_entry *, char *); +}; + +struct bpf_binary_header { + u32 size; + long: 0; + u8 image[0]; +}; + +typedef void (*bpf_jit_fill_hole_t)(void *, unsigned int); + +struct jit_context { + int cleanup_addr; + int tail_call_direct_label; + int tail_call_indirect_label; +}; + +struct x64_jit_data { + struct bpf_binary_header *rw_header; + struct bpf_binary_header *header; + int *addrs; + u8 *image; + int proglen; + struct jit_context ctx; +}; + +struct trace_event_raw_cpuhp_enter { + struct trace_entry ent; + unsigned int cpu; + int target; + int idx; + void *fun; + char __data[0]; +}; + +struct trace_event_raw_cpuhp_multi_enter { + struct trace_entry ent; + unsigned int cpu; + int target; + int idx; + void *fun; + char __data[0]; +}; + +struct trace_event_raw_cpuhp_exit { + struct trace_entry ent; + unsigned int cpu; + int state; + int idx; + int ret; + char __data[0]; +}; + +struct trace_event_data_offsets_cpuhp_enter {}; + +struct trace_event_data_offsets_cpuhp_multi_enter {}; + +struct trace_event_data_offsets_cpuhp_exit {}; + +typedef void (*btf_trace_cpuhp_enter)(void *, unsigned int, int, int, int (*)(unsigned int)); + +typedef void (*btf_trace_cpuhp_multi_enter)(void *, unsigned int, int, int, int (*)(unsigned int, struct hlist_node *), struct hlist_node *); + +typedef void (*btf_trace_cpuhp_exit)(void *, unsigned int, int, int, int); + +struct cpuhp_cpu_state { + enum cpuhp_state state; + enum cpuhp_state target; + enum cpuhp_state fail; + struct task_struct *thread; + bool should_run; + bool rollback; + bool single; + bool bringup; + struct hlist_node *node; + struct hlist_node *last; + enum cpuhp_state cb_state; + int result; + atomic_t ap_sync_state; + struct completion done_up; + struct completion done_down; +}; + +struct cpuhp_step { + const char *name; + union { + int (*single)(unsigned int); + int (*multi)(unsigned int, struct hlist_node *); + } startup; + union { + int (*single)(unsigned int); + int (*multi)(unsigned int, struct hlist_node *); + } teardown; + struct hlist_head list; + bool cant_stop; + bool multi_instance; +}; + +enum cpuhp_sync_state { + SYNC_STATE_DEAD = 0, + SYNC_STATE_KICKED = 1, + SYNC_STATE_SHOULD_DIE = 2, + SYNC_STATE_ALIVE = 3, + SYNC_STATE_SHOULD_ONLINE = 4, + SYNC_STATE_ONLINE = 5, +}; + +struct cpu_down_work { + unsigned int cpu; + enum cpuhp_state target; +}; + +enum cpu_mitigations { + CPU_MITIGATIONS_OFF = 0, + CPU_MITIGATIONS_AUTO = 1, + CPU_MITIGATIONS_AUTO_NOSMT = 2, +}; + +enum { + NO_USER_KERNEL = 0, + NO_USER_USER = 1, + NO_GUEST_HOST = 2, + NO_GUEST_GUEST = 3, + NO_CROSS_THREAD = 4, + NR_VECTOR_PARAMS = 5, +}; + +enum sysctl_writes_mode { + SYSCTL_WRITES_LEGACY = -1, + SYSCTL_WRITES_WARN = 0, + SYSCTL_WRITES_STRICT = 1, +}; + +struct do_proc_dointvec_minmax_conv_param { + int *min; + int *max; +}; + +struct do_proc_douintvec_minmax_conv_param { + unsigned int *min; + unsigned int *max; +}; + +typedef long unsigned int old_sigset_t; + +struct sigaltstack { + void *ss_sp; + int ss_flags; + __kernel_size_t ss_size; +}; + +typedef struct sigaltstack stack_t; + +typedef struct siginfo siginfo_t; + +enum siginfo_layout { + SIL_KILL = 0, + SIL_TIMER = 1, + SIL_POLL = 2, + SIL_FAULT = 3, + SIL_FAULT_TRAPNO = 4, + SIL_FAULT_MCEERR = 5, + SIL_FAULT_BNDERR = 6, + SIL_FAULT_PKUERR = 7, + SIL_FAULT_PERF_EVENT = 8, + SIL_CHLD = 9, + SIL_RT = 10, + SIL_SYS = 11, +}; + +typedef u32 compat_old_sigset_t; + +struct compat_sigaction { + compat_uptr_t sa_handler; + compat_ulong_t sa_flags; + compat_uptr_t sa_restorer; + compat_sigset_t sa_mask; +}; + +struct compat_old_sigaction { + compat_uptr_t sa_handler; + compat_old_sigset_t sa_mask; + compat_ulong_t sa_flags; + compat_uptr_t sa_restorer; +}; + +enum { + TRACE_SIGNAL_DELIVERED = 0, + TRACE_SIGNAL_IGNORED = 1, + TRACE_SIGNAL_ALREADY_PENDING = 2, + TRACE_SIGNAL_OVERFLOW_FAIL = 3, + TRACE_SIGNAL_LOSE_INFO = 4, +}; + +struct trace_event_raw_signal_generate { + struct trace_entry ent; + int sig; + int errno; + int code; + char comm[16]; + pid_t pid; + int group; + int result; + char __data[0]; +}; + +struct trace_event_raw_signal_deliver { + struct trace_entry ent; + int sig; + int errno; + int code; + long unsigned int sa_handler; + long unsigned int sa_flags; + char __data[0]; +}; + +struct trace_event_data_offsets_signal_generate {}; + +struct trace_event_data_offsets_signal_deliver {}; + +typedef void (*btf_trace_signal_generate)(void *, int, struct kernel_siginfo *, struct task_struct *, int, int); + +typedef void (*btf_trace_signal_deliver)(void *, int, struct kernel_siginfo *, struct k_sigaction *); + +enum sig_handler { + HANDLER_CURRENT = 0, + HANDLER_SIG_DFL = 1, + HANDLER_EXIT = 2, +}; + +struct param_attribute { + struct module_attribute mattr; + const struct kernel_param *param; +}; + +struct module_param_attrs { + unsigned int num; + struct attribute_group grp; + struct param_attribute attrs[0]; +}; + +struct kmalloced_param { + struct list_head list; + char val[0]; +}; + +struct trace_event_raw_notifier_info { + struct trace_entry ent; + void *cb; + char __data[0]; +}; + +struct trace_event_data_offsets_notifier_info {}; + +typedef void (*btf_trace_notifier_register)(void *, void *); + +typedef void (*btf_trace_notifier_unregister)(void *, void *); + +typedef void (*btf_trace_notifier_run)(void *, void *); + +struct smpboot_thread_data { + unsigned int cpu; + unsigned int status; + struct smp_hotplug_thread *ht; +}; + +enum { + HP_THREAD_NONE = 0, + HP_THREAD_ACTIVE = 1, + HP_THREAD_PARKED = 2, +}; + +enum { + MEMBARRIER_STATE_PRIVATE_EXPEDITED_READY = 1, + MEMBARRIER_STATE_PRIVATE_EXPEDITED = 2, + MEMBARRIER_STATE_GLOBAL_EXPEDITED_READY = 4, + MEMBARRIER_STATE_GLOBAL_EXPEDITED = 8, + MEMBARRIER_STATE_PRIVATE_EXPEDITED_SYNC_CORE_READY = 16, + MEMBARRIER_STATE_PRIVATE_EXPEDITED_SYNC_CORE = 32, + MEMBARRIER_STATE_PRIVATE_EXPEDITED_RSEQ_READY = 64, + MEMBARRIER_STATE_PRIVATE_EXPEDITED_RSEQ = 128, +}; + +enum { + MEMBARRIER_FLAG_SYNC_CORE = 1, + MEMBARRIER_FLAG_RSEQ = 2, +}; + +enum { + __SD_BALANCE_NEWIDLE = 0, + __SD_BALANCE_EXEC = 1, + __SD_BALANCE_FORK = 2, + __SD_BALANCE_WAKE = 3, + __SD_WAKE_AFFINE = 4, + __SD_ASYM_CPUCAPACITY = 5, + __SD_ASYM_CPUCAPACITY_FULL = 6, + __SD_SHARE_CPUCAPACITY = 7, + __SD_CLUSTER = 8, + __SD_SHARE_LLC = 9, + __SD_SERIALIZE = 10, + __SD_ASYM_PACKING = 11, + __SD_PREFER_SIBLING = 12, + __SD_NUMA = 13, + __SD_FLAG_CNT = 14, +}; + +struct sd_flag_debug { + unsigned int meta_flags; + char *name; +}; + +enum membarrier_cmd { + MEMBARRIER_CMD_QUERY = 0, + MEMBARRIER_CMD_GLOBAL = 1, + MEMBARRIER_CMD_GLOBAL_EXPEDITED = 2, + MEMBARRIER_CMD_REGISTER_GLOBAL_EXPEDITED = 4, + MEMBARRIER_CMD_PRIVATE_EXPEDITED = 8, + MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED = 16, + MEMBARRIER_CMD_PRIVATE_EXPEDITED_SYNC_CORE = 32, + MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_SYNC_CORE = 64, + MEMBARRIER_CMD_PRIVATE_EXPEDITED_RSEQ = 128, + MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_RSEQ = 256, + MEMBARRIER_CMD_GET_REGISTRATIONS = 512, + MEMBARRIER_CMD_SHARED = 1, +}; + +enum membarrier_cmd_flag { + MEMBARRIER_CMD_FLAG_CPU = 1, +}; + +struct psi_window { + u64 size; + u64 start_time; + u64 start_value; + u64 prev_growth; +}; + +struct psi_trigger { + enum psi_states state; + u64 threshold; + struct list_head node; + struct psi_group *group; + wait_queue_head_t event_wait; + struct kernfs_open_file *of; + int event; + struct psi_window win; + u64 last_event_time; + bool pending_event; + enum psi_aggregators aggregator; +}; + +struct sched_clock_data { + u64 tick_raw; + u64 tick_gtod; + u64 clock; +}; + +enum cpuacct_stat_index { + CPUACCT_STAT_USER = 0, + CPUACCT_STAT_SYSTEM = 1, + CPUACCT_STAT_NSTATS = 2, +}; + +struct cpuacct { + struct cgroup_subsys_state css; + u64 *cpuusage; + struct kernel_cpustat *cpustat; +}; + +struct sugov_tunables { + struct gov_attr_set attr_set; + unsigned int rate_limit_us; +}; + +struct sugov_policy { + struct cpufreq_policy *policy; + struct sugov_tunables *tunables; + struct list_head tunables_hook; + raw_spinlock_t update_lock; + u64 last_freq_update_time; + s64 freq_update_delay_ns; + unsigned int next_freq; + unsigned int cached_raw_freq; + struct irq_work irq_work; + struct kthread_work work; + struct mutex work_lock; + struct kthread_worker worker; + struct task_struct *thread; + bool work_in_progress; + bool limits_changed; + bool need_freq_update; +}; + +struct sugov_cpu { + struct update_util_data update_util; + struct sugov_policy *sg_policy; + unsigned int cpu; + bool iowait_boost_pending; + unsigned int iowait_boost; + u64 last_update; + long unsigned int util; + long unsigned int bw_min; + long unsigned int saved_idle_calls; +}; + +enum dl_param { + DL_RUNTIME = 0, + DL_PERIOD = 1, +}; + +struct s_data { + struct sched_domain **sd; + struct root_domain *rd; +}; + +enum s_alloc { + sa_rootdomain = 0, + sa_sd = 1, + sa_sd_storage = 2, + sa_none = 3, +}; + +struct __cmp_key { + const struct cpumask *cpus; + struct cpumask ***masks; + int node; + int cpu; + int w; +}; + +struct sched_core_cookie { + refcount_t refcnt; +}; + +enum hk_flags { + HK_FLAG_DOMAIN = 1, + HK_FLAG_MANAGED_IRQ = 2, + HK_FLAG_KERNEL_NOISE = 4, +}; + +struct housekeeping { + cpumask_var_t cpumasks[3]; + long unsigned int flags; +}; + +struct semaphore_waiter { + struct list_head list; + struct task_struct *task; + bool up; +}; + +enum vcpu_state { + VCPU_RUNNING = 0, + VCPU_HALTED = 1, + VCPU_HASHED = 2, +}; + +struct pv_node { + struct mcs_spinlock mcs; + int cpu; + u8 state; +}; + +struct pv_hash_entry { + struct qspinlock *lock; + struct pv_node *node; +}; + +struct suspend_stats { + unsigned int step_failures[8]; + unsigned int success; + unsigned int fail; + int last_failed_dev; + char failed_devs[80]; + int last_failed_errno; + int errno[2]; + int last_failed_step; + u64 last_hw_sleep; + u64 total_hw_sleep; + u64 max_hw_sleep; + enum suspend_stat_step failed_steps[2]; +}; + +struct pbe { + void *address; + void *orig_address; + struct pbe *next; +}; + +struct swsusp_info { + struct new_utsname uts; + u32 version_code; + long unsigned int num_physpages; + int cpus; + long unsigned int image_pages; + long unsigned int pages; + long unsigned int size; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct linked_page { + struct linked_page *next; + char data[4088]; +}; + +struct chain_allocator { + struct linked_page *chain; + unsigned int used_space; + gfp_t gfp_mask; + int safe_needed; +}; + +struct rtree_node { + struct list_head list; + long unsigned int *data; +}; + +struct mem_zone_bm_rtree { + struct list_head list; + struct list_head nodes; + struct list_head leaves; + long unsigned int start_pfn; + long unsigned int end_pfn; + struct rtree_node *rtree; + int levels; + unsigned int blocks; +}; + +struct bm_position { + struct mem_zone_bm_rtree *zone; + struct rtree_node *node; + long unsigned int node_pfn; + long unsigned int cur_pfn; + int node_bit; +}; + +struct memory_bitmap { + struct list_head zones; + struct linked_page *p_list; + struct bm_position cur; +}; + +struct mem_extent { + struct list_head hook; + long unsigned int start; + long unsigned int end; +}; + +struct nosave_region { + struct list_head list; + long unsigned int start_pfn; + long unsigned int end_pfn; +}; + +struct trace_event_raw_console { + struct trace_entry ent; + u32 __data_loc_msg; + char __data[0]; +}; + +struct trace_event_data_offsets_console { + u32 msg; + const void *msg_ptr_; +}; + +typedef void (*btf_trace_console)(void *, const char *, size_t); + +struct console_cmdline { + char name[16]; + int index; + char devname[32]; + bool user_specified; + char *options; +}; + +enum printk_info_flags { + LOG_FORCE_CON = 1, + LOG_NEWLINE = 2, + LOG_CONT = 8, +}; + +enum devkmsg_log_bits { + __DEVKMSG_LOG_BIT_ON = 0, + __DEVKMSG_LOG_BIT_OFF = 1, + __DEVKMSG_LOG_BIT_LOCK = 2, +}; + +enum devkmsg_log_masks { + DEVKMSG_LOG_MASK_ON = 1, + DEVKMSG_LOG_MASK_OFF = 2, + DEVKMSG_LOG_MASK_LOCK = 4, +}; + +enum con_msg_format_flags { + MSG_FORMAT_DEFAULT = 0, + MSG_FORMAT_SYSLOG = 1, +}; + +struct latched_seq { + seqcount_latch_t latch; + u64 val[2]; +}; + +struct devkmsg_user { + atomic64_t seq; + struct ratelimit_state rs; + struct mutex lock; + struct printk_buffers pbufs; +}; + +enum { + IRQ_STARTUP_NORMAL = 0, + IRQ_STARTUP_MANAGED = 1, + IRQ_STARTUP_ABORT = 2, +}; + +struct irqchip_fwid { + struct fwnode_handle fwnode; + unsigned int type; + char *name; + phys_addr_t *pa; +}; + +enum { + GP_IDLE = 0, + GP_ENTER = 1, + GP_PASSED = 2, + GP_EXIT = 3, + GP_REPLAY = 4, +}; + +struct klp_find_arg { + const char *name; + long unsigned int addr; + long unsigned int count; + long unsigned int pos; +}; + +struct ptrace_sud_config { + __u64 mode; + __u64 selector; + __u64 offset; + __u64 len; +}; + +struct latch_tree_ops { + bool (*less)(struct latch_tree_node *, struct latch_tree_node *); + int (*comp)(void *, struct latch_tree_node *); +}; + +typedef __kernel_long_t __kernel_suseconds_t; + +typedef __kernel_suseconds_t suseconds_t; + +enum timekeeper_ids { + TIMEKEEPER_CORE = 0, + TIMEKEEPER_AUX_FIRST = 1, + TIMEKEEPER_AUX_LAST = 8, + TIMEKEEPERS_MAX = 9, +}; + +struct ntp_data { + long unsigned int tick_usec; + u64 tick_length; + u64 tick_length_base; + int time_state; + int time_status; + s64 time_offset; + long int time_constant; + long int time_maxerror; + long int time_esterror; + s64 time_freq; + time64_t time_reftime; + long int time_adjust; + s64 ntp_tick_adj; + time64_t ntp_next_leap_sec; +}; + +struct trace_event_raw_alarmtimer_suspend { + struct trace_entry ent; + s64 expires; + unsigned char alarm_type; + char __data[0]; +}; + +struct trace_event_raw_alarm_class { + struct trace_entry ent; + void *alarm; + unsigned char alarm_type; + s64 expires; + s64 now; + char __data[0]; +}; + +struct trace_event_data_offsets_alarmtimer_suspend {}; + +struct trace_event_data_offsets_alarm_class {}; + +typedef void (*btf_trace_alarmtimer_suspend)(void *, ktime_t, int); + +typedef void (*btf_trace_alarmtimer_fired)(void *, struct alarm *, ktime_t); + +typedef void (*btf_trace_alarmtimer_start)(void *, struct alarm *, ktime_t); + +typedef void (*btf_trace_alarmtimer_cancel)(void *, struct alarm *, ktime_t); + +struct alarm_base { + spinlock_t lock; + struct timerqueue_head timerqueue; + ktime_t (*get_ktime)(void); + void (*get_timespec)(struct timespec64 *); + clockid_t base_clockid; +}; + +struct ce_unbind { + struct clock_event_device *ce; + int res; +}; + +struct tmigr_event { + struct timerqueue_node nextevt; + unsigned int cpu; + bool ignore; +}; + +struct tmigr_group { + raw_spinlock_t lock; + struct tmigr_group *parent; + struct tmigr_event groupevt; + u64 next_expiry; + struct timerqueue_head events; + atomic_t migr_state; + unsigned int level; + int numa_node; + unsigned int num_children; + u8 groupmask; + struct list_head list; +}; + +struct tmigr_cpu { + raw_spinlock_t lock; + bool online; + bool idle; + bool remote; + struct tmigr_group *tmgroup; + u8 groupmask; + u64 wakeup; + struct tmigr_event cpuevt; +}; + +union tmigr_state { + u32 state; + struct { + u8 active; + u8 migrator; + u16 seq; + }; +}; + +struct trace_event_raw_tmigr_group_set { + struct trace_entry ent; + void *group; + unsigned int lvl; + unsigned int numa_node; + char __data[0]; +}; + +struct trace_event_raw_tmigr_connect_child_parent { + struct trace_entry ent; + void *child; + void *parent; + unsigned int lvl; + unsigned int numa_node; + unsigned int num_children; + u32 groupmask; + char __data[0]; +}; + +struct trace_event_raw_tmigr_connect_cpu_parent { + struct trace_entry ent; + void *parent; + unsigned int cpu; + unsigned int lvl; + unsigned int numa_node; + unsigned int num_children; + u32 groupmask; + char __data[0]; +}; + +struct trace_event_raw_tmigr_group_and_cpu { + struct trace_entry ent; + void *group; + void *parent; + unsigned int lvl; + unsigned int numa_node; + u32 childmask; + u8 active; + u8 migrator; + char __data[0]; +}; + +struct trace_event_raw_tmigr_cpugroup { + struct trace_entry ent; + u64 wakeup; + void *parent; + unsigned int cpu; + char __data[0]; +}; + +struct trace_event_raw_tmigr_idle { + struct trace_entry ent; + u64 nextevt; + u64 wakeup; + void *parent; + unsigned int cpu; + char __data[0]; +}; + +struct trace_event_raw_tmigr_update_events { + struct trace_entry ent; + void *child; + void *group; + u64 nextevt; + u64 group_next_expiry; + u64 child_evt_expiry; + unsigned int group_lvl; + unsigned int child_evtcpu; + u8 child_active; + u8 group_active; + char __data[0]; +}; + +struct trace_event_raw_tmigr_handle_remote { + struct trace_entry ent; + void *group; + unsigned int lvl; + char __data[0]; +}; + +struct trace_event_data_offsets_tmigr_group_set {}; + +struct trace_event_data_offsets_tmigr_connect_child_parent {}; + +struct trace_event_data_offsets_tmigr_connect_cpu_parent {}; + +struct trace_event_data_offsets_tmigr_group_and_cpu {}; + +struct trace_event_data_offsets_tmigr_cpugroup {}; + +struct trace_event_data_offsets_tmigr_idle {}; + +struct trace_event_data_offsets_tmigr_update_events {}; + +struct trace_event_data_offsets_tmigr_handle_remote {}; + +typedef void (*btf_trace_tmigr_group_set)(void *, struct tmigr_group *); + +typedef void (*btf_trace_tmigr_connect_child_parent)(void *, struct tmigr_group *); + +typedef void (*btf_trace_tmigr_connect_cpu_parent)(void *, struct tmigr_cpu *); + +typedef void (*btf_trace_tmigr_group_set_cpu_inactive)(void *, struct tmigr_group *, union tmigr_state, u32); + +typedef void (*btf_trace_tmigr_group_set_cpu_active)(void *, struct tmigr_group *, union tmigr_state, u32); + +typedef void (*btf_trace_tmigr_cpu_new_timer)(void *, struct tmigr_cpu *); + +typedef void (*btf_trace_tmigr_cpu_active)(void *, struct tmigr_cpu *); + +typedef void (*btf_trace_tmigr_cpu_online)(void *, struct tmigr_cpu *); + +typedef void (*btf_trace_tmigr_cpu_offline)(void *, struct tmigr_cpu *); + +typedef void (*btf_trace_tmigr_handle_remote_cpu)(void *, struct tmigr_cpu *); + +typedef void (*btf_trace_tmigr_cpu_idle)(void *, struct tmigr_cpu *, u64); + +typedef void (*btf_trace_tmigr_cpu_new_timer_idle)(void *, struct tmigr_cpu *, u64); + +typedef void (*btf_trace_tmigr_update_events)(void *, struct tmigr_group *, struct tmigr_group *, union tmigr_state, union tmigr_state, u64); + +typedef void (*btf_trace_tmigr_handle_remote)(void *, struct tmigr_group *); + +struct tmigr_walk { + u64 nextexp; + u64 firstexp; + struct tmigr_event *evt; + u8 childmask; + bool remote; + long unsigned int basej; + u64 now; + bool check; + bool tmc_active; +}; + +typedef bool (*up_f)(struct tmigr_group *, struct tmigr_group *, struct tmigr_walk *); + +enum { + Q_REQUEUE_PI_NONE = 0, + Q_REQUEUE_PI_IGNORE = 1, + Q_REQUEUE_PI_IN_PROGRESS = 2, + Q_REQUEUE_PI_WAIT = 3, + Q_REQUEUE_PI_DONE = 4, + Q_REQUEUE_PI_LOCKED = 5, +}; + +struct compat_kexec_segment { + compat_uptr_t buf; + compat_size_t bufsz; + compat_ulong_t mem; + compat_size_t memsz; +}; + +struct cgroup_fs_context { + struct kernfs_fs_context kfc; + struct cgroup_root *root; + struct cgroup_namespace *ns; + unsigned int flags; + bool cpuset_clone_children; + bool none; + bool all_ss; + u16 subsys_mask; + char *name; + char *release_agent; +}; + +struct cgroup_pidlist; + +struct cgroup_file_ctx { + struct cgroup_namespace *ns; + struct { + void *trigger; + } psi; + struct { + bool started; + struct css_task_iter iter; + } procs; + struct { + struct cgroup_pidlist *pidlist; + } procs1; + struct cgroup_of_peak peak; +}; + +struct cgrp_cset_link { + struct cgroup *cgrp; + struct css_set *cset; + struct list_head cset_link; + struct list_head cgrp_link; +}; + +struct cgroup_mgctx { + struct list_head preloaded_src_csets; + struct list_head preloaded_dst_csets; + struct cgroup_taskset tset; + u16 ss_mask; +}; + +struct trace_event_raw_cgroup_root { + struct trace_entry ent; + int root; + u16 ss_mask; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_cgroup { + struct trace_entry ent; + int root; + int level; + u64 id; + u32 __data_loc_path; + char __data[0]; +}; + +struct trace_event_raw_cgroup_migrate { + struct trace_entry ent; + int dst_root; + int dst_level; + u64 dst_id; + int pid; + u32 __data_loc_dst_path; + u32 __data_loc_comm; + char __data[0]; +}; + +struct trace_event_raw_cgroup_event { + struct trace_entry ent; + int root; + int level; + u64 id; + u32 __data_loc_path; + int val; + char __data[0]; +}; + +struct trace_event_raw_cgroup_rstat { + struct trace_entry ent; + int root; + int level; + u64 id; + int cpu; + bool contended; + char __data[0]; +}; + +struct trace_event_data_offsets_cgroup_root { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_cgroup { + u32 path; + const void *path_ptr_; +}; + +struct trace_event_data_offsets_cgroup_migrate { + u32 dst_path; + const void *dst_path_ptr_; + u32 comm; + const void *comm_ptr_; +}; + +struct trace_event_data_offsets_cgroup_event { + u32 path; + const void *path_ptr_; +}; + +struct trace_event_data_offsets_cgroup_rstat {}; + +typedef void (*btf_trace_cgroup_setup_root)(void *, struct cgroup_root *); + +typedef void (*btf_trace_cgroup_destroy_root)(void *, struct cgroup_root *); + +typedef void (*btf_trace_cgroup_remount)(void *, struct cgroup_root *); + +typedef void (*btf_trace_cgroup_mkdir)(void *, struct cgroup *, const char *); + +typedef void (*btf_trace_cgroup_rmdir)(void *, struct cgroup *, const char *); + +typedef void (*btf_trace_cgroup_release)(void *, struct cgroup *, const char *); + +typedef void (*btf_trace_cgroup_rename)(void *, struct cgroup *, const char *); + +typedef void (*btf_trace_cgroup_freeze)(void *, struct cgroup *, const char *); + +typedef void (*btf_trace_cgroup_unfreeze)(void *, struct cgroup *, const char *); + +typedef void (*btf_trace_cgroup_attach_task)(void *, struct cgroup *, const char *, struct task_struct *, bool); + +typedef void (*btf_trace_cgroup_transfer_tasks)(void *, struct cgroup *, const char *, struct task_struct *, bool); + +typedef void (*btf_trace_cgroup_notify_populated)(void *, struct cgroup *, const char *, int); + +typedef void (*btf_trace_cgroup_notify_frozen)(void *, struct cgroup *, const char *, int); + +typedef void (*btf_trace_cgroup_rstat_lock_contended)(void *, struct cgroup *, int, bool); + +typedef void (*btf_trace_cgroup_rstat_locked)(void *, struct cgroup *, int, bool); + +typedef void (*btf_trace_cgroup_rstat_unlock)(void *, struct cgroup *, int, bool); + +enum cgroup_opt_features { + OPT_FEATURE_PRESSURE = 0, + OPT_FEATURE_COUNT = 1, +}; + +enum cgroup2_param { + Opt_nsdelegate = 0, + Opt_favordynmods = 1, + Opt_memory_localevents = 2, + Opt_memory_recursiveprot = 3, + Opt_memory_hugetlb_accounting = 4, + Opt_pids_localevents = 5, + nr__cgroup2_params = 6, +}; + +struct idmap_key { + bool map_up; + u32 id; + u32 count; +}; + +struct cpu_vfs_cap_data { + __u32 magic_etc; + kuid_t rootid; + kernel_cap_t permitted; + kernel_cap_t inheritable; +}; + +enum audit_nfcfgop { + AUDIT_XT_OP_REGISTER = 0, + AUDIT_XT_OP_REPLACE = 1, + AUDIT_XT_OP_UNREGISTER = 2, + AUDIT_NFT_OP_TABLE_REGISTER = 3, + AUDIT_NFT_OP_TABLE_UNREGISTER = 4, + AUDIT_NFT_OP_CHAIN_REGISTER = 5, + AUDIT_NFT_OP_CHAIN_UNREGISTER = 6, + AUDIT_NFT_OP_RULE_REGISTER = 7, + AUDIT_NFT_OP_RULE_UNREGISTER = 8, + AUDIT_NFT_OP_SET_REGISTER = 9, + AUDIT_NFT_OP_SET_UNREGISTER = 10, + AUDIT_NFT_OP_SETELEM_REGISTER = 11, + AUDIT_NFT_OP_SETELEM_UNREGISTER = 12, + AUDIT_NFT_OP_GEN_REGISTER = 13, + AUDIT_NFT_OP_OBJ_REGISTER = 14, + AUDIT_NFT_OP_OBJ_UNREGISTER = 15, + AUDIT_NFT_OP_OBJ_RESET = 16, + AUDIT_NFT_OP_FLOWTABLE_REGISTER = 17, + AUDIT_NFT_OP_FLOWTABLE_UNREGISTER = 18, + AUDIT_NFT_OP_SETELEM_RESET = 19, + AUDIT_NFT_OP_RULE_RESET = 20, + AUDIT_NFT_OP_INVALID = 21, +}; + +struct audit_aux_data { + struct audit_aux_data *next; + int type; +}; + +struct audit_chunk; + +struct audit_tree_refs { + struct audit_tree_refs *next; + struct audit_chunk *c[31]; +}; + +struct audit_aux_data_pids { + struct audit_aux_data d; + pid_t target_pid[16]; + kuid_t target_auid[16]; + kuid_t target_uid[16]; + unsigned int target_sessionid[16]; + struct lsm_prop target_ref[16]; + char target_comm[256]; + int pid_count; +}; + +struct audit_aux_data_bprm_fcaps { + struct audit_aux_data d; + struct audit_cap_data fcap; + unsigned int fcap_ver; + struct audit_cap_data old_pcap; + struct audit_cap_data new_pcap; +}; + +struct audit_nfcfgop_tab { + enum audit_nfcfgop op; + const char *s; +}; + +struct audit_fsnotify_mark { + dev_t dev; + long unsigned int ino; + char *path; + struct fsnotify_mark mark; + struct audit_krule *rule; +}; + +typedef enum { + KDB_ENABLE_ALL = 1, + KDB_ENABLE_MEM_READ = 2, + KDB_ENABLE_MEM_WRITE = 4, + KDB_ENABLE_REG_READ = 8, + KDB_ENABLE_REG_WRITE = 16, + KDB_ENABLE_INSPECT = 32, + KDB_ENABLE_FLOW_CTRL = 64, + KDB_ENABLE_SIGNAL = 128, + KDB_ENABLE_REBOOT = 256, + KDB_ENABLE_ALWAYS_SAFE = 512, + KDB_ENABLE_MASK = 1023, + KDB_ENABLE_ALL_NO_ARGS = 1024, + KDB_ENABLE_MEM_READ_NO_ARGS = 2048, + KDB_ENABLE_MEM_WRITE_NO_ARGS = 4096, + KDB_ENABLE_REG_READ_NO_ARGS = 8192, + KDB_ENABLE_REG_WRITE_NO_ARGS = 16384, + KDB_ENABLE_INSPECT_NO_ARGS = 32768, + KDB_ENABLE_FLOW_CTRL_NO_ARGS = 65536, + KDB_ENABLE_SIGNAL_NO_ARGS = 131072, + KDB_ENABLE_REBOOT_NO_ARGS = 262144, + KDB_ENABLE_ALWAYS_SAFE_NO_ARGS = 524288, + KDB_ENABLE_MASK_NO_ARGS = 1047552, + KDB_REPEAT_NO_ARGS = 1073741824, + KDB_REPEAT_WITH_ARGS = 2147483648, +} kdb_cmdflags_t; + +typedef int (*kdb_func_t)(int, const char **); + +struct _kdbtab { + char *name; + kdb_func_t func; + char *usage; + char *help; + short int minlen; + kdb_cmdflags_t flags; + struct list_head list_node; +}; + +typedef struct _kdbtab kdbtab_t; + +struct _kdb_bp { + long unsigned int bp_addr; + unsigned int bp_free: 1; + unsigned int bp_enabled: 1; + unsigned int bp_type: 4; + unsigned int bp_installed: 1; + unsigned int bp_delay: 1; + unsigned int bp_delayed: 1; + unsigned int bph_length; +}; + +typedef struct _kdb_bp kdb_bp_t; + +typedef enum { + KDB_REASON_ENTER = 1, + KDB_REASON_ENTER_SLAVE = 2, + KDB_REASON_BREAK = 3, + KDB_REASON_DEBUG = 4, + KDB_REASON_OOPS = 5, + KDB_REASON_SWITCH = 6, + KDB_REASON_KEYBOARD = 7, + KDB_REASON_NMI = 8, + KDB_REASON_RECURSE = 9, + KDB_REASON_SSTEP = 10, + KDB_REASON_SYSTEM_NMI = 11, +} kdb_reason_t; + +typedef enum { + KDB_DB_BPT = 0, + KDB_DB_SS = 1, + KDB_DB_SSBPT = 2, + KDB_DB_NOBPT = 3, +} kdb_dbtrap_t; + +enum { + TASKSTATS_TYPE_UNSPEC = 0, + TASKSTATS_TYPE_PID = 1, + TASKSTATS_TYPE_TGID = 2, + TASKSTATS_TYPE_STATS = 3, + TASKSTATS_TYPE_AGGR_PID = 4, + TASKSTATS_TYPE_AGGR_TGID = 5, + TASKSTATS_TYPE_NULL = 6, + __TASKSTATS_TYPE_MAX = 7, +}; + +enum { + TASKSTATS_CMD_ATTR_UNSPEC = 0, + TASKSTATS_CMD_ATTR_PID = 1, + TASKSTATS_CMD_ATTR_TGID = 2, + TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 3, + TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 4, + __TASKSTATS_CMD_ATTR_MAX = 5, +}; + +struct cgroupstats { + __u64 nr_sleeping; + __u64 nr_running; + __u64 nr_stopped; + __u64 nr_uninterruptible; + __u64 nr_io_wait; +}; + +enum { + CGROUPSTATS_CMD_UNSPEC = 3, + CGROUPSTATS_CMD_GET = 4, + CGROUPSTATS_CMD_NEW = 5, + __CGROUPSTATS_CMD_MAX = 6, +}; + +enum { + CGROUPSTATS_TYPE_UNSPEC = 0, + CGROUPSTATS_TYPE_CGROUP_STATS = 1, + __CGROUPSTATS_TYPE_MAX = 2, +}; + +enum { + CGROUPSTATS_CMD_ATTR_UNSPEC = 0, + CGROUPSTATS_CMD_ATTR_FD = 1, + __CGROUPSTATS_CMD_ATTR_MAX = 2, +}; + +struct listener { + struct list_head list; + pid_t pid; + char valid; +}; + +struct listener_list { + struct rw_semaphore sem; + struct list_head list; +}; + +enum actions { + REGISTER = 0, + DEREGISTER = 1, + CPU_DONT_CARE = 2, +}; + +struct ctx_switch_entry { + struct trace_entry ent; + unsigned int prev_pid; + unsigned int next_pid; + unsigned int next_cpu; + unsigned char prev_prio; + unsigned char prev_state; + unsigned char next_prio; + unsigned char next_state; +}; + +struct trace_mark { + long long unsigned int val; + char sym; +}; + +struct tracer_stat { + const char *name; + void * (*stat_start)(struct tracer_stat *); + void * (*stat_next)(void *, int); + cmp_func_t stat_cmp; + int (*stat_show)(struct seq_file *, void *); + void (*stat_release)(void *); + int (*stat_headers)(struct seq_file *); +}; + +struct stat_node { + struct rb_node node; + void *stat; +}; + +struct stat_session { + struct list_head session_list; + struct tracer_stat *ts; + struct rb_root stat_root; + struct mutex stat_mutex; + struct dentry *file; +}; + +enum { + TRACE_FUNC_NO_OPTS = 0, + TRACE_FUNC_OPT_STACK = 1, + TRACE_FUNC_OPT_NO_REPEATS = 2, + TRACE_FUNC_OPT_ARGS = 4, + TRACE_FUNC_OPT_HIGHEST_BIT = 8, +}; + +enum { + FTRACE_ITER_FILTER = 1, + FTRACE_ITER_NOTRACE = 2, + FTRACE_ITER_PRINTALL = 4, + FTRACE_ITER_DO_PROBES = 8, + FTRACE_ITER_PROBE = 16, + FTRACE_ITER_MOD = 32, + FTRACE_ITER_ENABLED = 64, + FTRACE_ITER_TOUCHED = 128, + FTRACE_ITER_ADDRS = 256, +}; + +enum { + TRACE_PIDS = 1, + TRACE_NO_PIDS = 2, +}; + +struct module_string { + struct list_head next; + struct module *module; + char *str; +}; + +struct event_mod_load { + struct list_head list; + char *module; + char *match; + char *system; + char *event; +}; + +enum set_event_iter_type { + SET_EVENT_FILE = 0, + SET_EVENT_MOD = 1, +}; + +struct set_event_iter { + enum set_event_iter_type type; + union { + struct trace_event_file *file; + struct event_mod_load *event_mod; + }; +}; + +enum { + FORMAT_HEADER = 1, + FORMAT_FIELD_SEPERATOR = 2, + FORMAT_PRINTFMT = 3, +}; + +struct boot_triggers { + const char *event; + char *trigger; +}; + +struct event_probe_data { + struct trace_event_file *file; + long unsigned int count; + int ref; + bool enable; +}; + +struct filter_pred; + +struct prog_entry { + int target; + int when_to_branch; + struct filter_pred *pred; +}; + +struct regex; + +typedef int (*regex_match_func)(char *, struct regex *, int); + +struct regex { + char pattern[256]; + int len; + int field_len; + regex_match_func match; +}; + +enum regex_type { + MATCH_FULL = 0, + MATCH_FRONT_ONLY = 1, + MATCH_MIDDLE_ONLY = 2, + MATCH_END_ONLY = 3, + MATCH_GLOB = 4, + MATCH_INDEX = 5, +}; + +enum filter_op_ids { + OP_GLOB = 0, + OP_NE = 1, + OP_EQ = 2, + OP_LE = 3, + OP_LT = 4, + OP_GE = 5, + OP_GT = 6, + OP_BAND = 7, + OP_MAX = 8, +}; + +enum filter_pred_fn { + FILTER_PRED_FN_NOP = 0, + FILTER_PRED_FN_64 = 1, + FILTER_PRED_FN_64_CPUMASK = 2, + FILTER_PRED_FN_S64 = 3, + FILTER_PRED_FN_U64 = 4, + FILTER_PRED_FN_32 = 5, + FILTER_PRED_FN_32_CPUMASK = 6, + FILTER_PRED_FN_S32 = 7, + FILTER_PRED_FN_U32 = 8, + FILTER_PRED_FN_16 = 9, + FILTER_PRED_FN_16_CPUMASK = 10, + FILTER_PRED_FN_S16 = 11, + FILTER_PRED_FN_U16 = 12, + FILTER_PRED_FN_8 = 13, + FILTER_PRED_FN_8_CPUMASK = 14, + FILTER_PRED_FN_S8 = 15, + FILTER_PRED_FN_U8 = 16, + FILTER_PRED_FN_COMM = 17, + FILTER_PRED_FN_STRING = 18, + FILTER_PRED_FN_STRLOC = 19, + FILTER_PRED_FN_STRRELLOC = 20, + FILTER_PRED_FN_PCHAR_USER = 21, + FILTER_PRED_FN_PCHAR = 22, + FILTER_PRED_FN_CPU = 23, + FILTER_PRED_FN_CPU_CPUMASK = 24, + FILTER_PRED_FN_CPUMASK = 25, + FILTER_PRED_FN_CPUMASK_CPU = 26, + FILTER_PRED_FN_FUNCTION = 27, + FILTER_PRED_FN_ = 28, + FILTER_PRED_TEST_VISITED = 29, +}; + +struct filter_pred { + struct regex *regex; + struct cpumask *mask; + short unsigned int *ops; + struct ftrace_event_field *field; + u64 val; + u64 val2; + enum filter_pred_fn fn_num; + int offset; + int not; + int op; +}; + +enum { + FILT_ERR_NONE = 0, + FILT_ERR_INVALID_OP = 1, + FILT_ERR_TOO_MANY_OPEN = 2, + FILT_ERR_TOO_MANY_CLOSE = 3, + FILT_ERR_MISSING_QUOTE = 4, + FILT_ERR_MISSING_BRACE_OPEN = 5, + FILT_ERR_MISSING_BRACE_CLOSE = 6, + FILT_ERR_OPERAND_TOO_LONG = 7, + FILT_ERR_EXPECT_STRING = 8, + FILT_ERR_EXPECT_DIGIT = 9, + FILT_ERR_ILLEGAL_FIELD_OP = 10, + FILT_ERR_FIELD_NOT_FOUND = 11, + FILT_ERR_ILLEGAL_INTVAL = 12, + FILT_ERR_BAD_SUBSYS_FILTER = 13, + FILT_ERR_TOO_MANY_PREDS = 14, + FILT_ERR_INVALID_FILTER = 15, + FILT_ERR_INVALID_CPULIST = 16, + FILT_ERR_IP_FIELD_ONLY = 17, + FILT_ERR_INVALID_VALUE = 18, + FILT_ERR_NO_FUNCTION = 19, + FILT_ERR_ERRNO = 20, + FILT_ERR_NO_FILTER = 21, +}; + +struct filter_parse_error { + int lasterr; + int lasterr_pos; +}; + +typedef int (*parse_pred_fn)(const char *, void *, int, struct filter_parse_error *, struct filter_pred **); + +enum { + INVERT = 1, + PROCESS_AND = 2, + PROCESS_OR = 4, +}; + +struct ustring_buffer { + char buffer[1024]; +}; + +struct filter_list { + struct list_head list; + struct event_filter *filter; +}; + +struct filter_head { + struct list_head list; + union { + struct callback_head rcu; + struct rcu_work rwork; + }; +}; + +enum { + TOO_MANY_CLOSE = -1, + TOO_MANY_OPEN = -2, + MISSING_QUOTE = -3, +}; + +struct function_filter_data { + struct ftrace_ops *ops; + int first_filter; + int first_notrace; +}; + +struct trace_dynamic_info { + u16 offset; + u16 len; +}; + +struct synth_field_desc { + const char *type; + const char *name; +}; + +struct synth_trace_event; + +struct synth_event; + +struct synth_event_trace_state { + struct trace_event_buffer fbuffer; + struct synth_trace_event *entry; + struct trace_buffer *buffer; + struct synth_event *event; + unsigned int cur_field; + unsigned int n_u64; + bool disabled; + bool add_next; + bool add_name; +}; + +union trace_synth_field { + u8 as_u8; + u16 as_u16; + u32 as_u32; + u64 as_u64; + struct trace_dynamic_info as_dynamic; +}; + +struct synth_trace_event { + struct trace_entry ent; + union trace_synth_field fields[0]; +}; + +struct synth_field; + +struct synth_event { + struct dyn_event devent; + int ref; + char *name; + struct synth_field **fields; + unsigned int n_fields; + struct synth_field **dynamic_fields; + unsigned int n_dynamic_fields; + unsigned int n_u64; + struct trace_event_class class; + struct trace_event_call call; + struct tracepoint *tp; + struct module *mod; +}; + +typedef int (*dynevent_check_arg_fn_t)(void *); + +struct dynevent_arg { + const char *str; + char separator; +}; + +struct dynevent_arg_pair { + const char *lhs; + const char *rhs; + char operator; + char separator; +}; + +struct synth_field { + char *type; + char *name; + size_t size; + unsigned int offset; + unsigned int field_pos; + bool is_signed; + bool is_string; + bool is_dynamic; + bool is_stack; +}; + +enum { + SYNTH_ERR_BAD_NAME = 0, + SYNTH_ERR_INVALID_CMD = 1, + SYNTH_ERR_INVALID_DYN_CMD = 2, + SYNTH_ERR_EVENT_EXISTS = 3, + SYNTH_ERR_TOO_MANY_FIELDS = 4, + SYNTH_ERR_INCOMPLETE_TYPE = 5, + SYNTH_ERR_INVALID_TYPE = 6, + SYNTH_ERR_INVALID_FIELD = 7, + SYNTH_ERR_INVALID_ARRAY_SPEC = 8, +}; + +struct kprobe_trace_entry_head { + struct trace_entry ent; + long unsigned int ip; +}; + +struct kretprobe_trace_entry_head { + struct trace_entry ent; + long unsigned int func; + long unsigned int ret_ip; +}; + +struct trace_kprobe { + struct dyn_event devent; + struct kretprobe rp; + long unsigned int *nhit; + const char *symbol; + struct trace_probe tp; +}; + +struct sym_count_ctx { + unsigned int count; + const char *name; +}; + +typedef int (*objpool_init_obj_cb)(void *, void *); + +struct trace_event_raw_event_da_monitor_id { + struct trace_entry ent; + int id; + u32 __data_loc_state; + u32 __data_loc_event; + u32 __data_loc_next_state; + bool final_state; + char __data[0]; +}; + +struct trace_event_raw_error_da_monitor_id { + struct trace_entry ent; + int id; + u32 __data_loc_state; + u32 __data_loc_event; + char __data[0]; +}; + +struct trace_event_raw_rv_retries_error { + struct trace_entry ent; + u32 __data_loc_name; + u32 __data_loc_event; + char __data[0]; +}; + +struct trace_event_data_offsets_event_da_monitor_id { + u32 state; + const void *state_ptr_; + u32 event; + const void *event_ptr_; + u32 next_state; + const void *next_state_ptr_; +}; + +struct trace_event_data_offsets_error_da_monitor_id { + u32 state; + const void *state_ptr_; + u32 event; + const void *event_ptr_; +}; + +struct trace_event_data_offsets_rv_retries_error { + u32 name; + const void *name_ptr_; + u32 event; + const void *event_ptr_; +}; + +typedef void (*btf_trace_event_wwnr)(void *, int, char *, char *, char *, bool); + +typedef void (*btf_trace_error_wwnr)(void *, int, char *, char *); + +typedef void (*btf_trace_rv_retries_error)(void *, char *, char *); + +struct rv_interface { + struct dentry *root_dir; + struct dentry *monitors_dir; +}; + +struct bpf_timed_may_goto { + u64 count; + u64 timestamp; +}; + +enum page_size_enum { + __PAGE_SIZE = 4096, +}; + +struct bpf_prog_pack { + struct list_head list; + void *ptr; + long unsigned int bitmap[0]; +}; + +struct bpf_prog_dummy { + struct bpf_prog prog; +}; + +typedef u64 (*btf_bpf_user_rnd_u32)(void); + +typedef u64 (*btf_bpf_get_raw_cpu_id)(void); + +struct _bpf_dtab_netdev { + struct net_device *dev; +}; + +struct xdp_mem_allocator { + struct xdp_mem_info mem; + union { + void *allocator; + struct page_pool *page_pool; + }; + struct rhash_head node; + struct callback_head rcu; +}; + +struct trace_event_raw_xdp_exception { + struct trace_entry ent; + int prog_id; + u32 act; + int ifindex; + char __data[0]; +}; + +struct trace_event_raw_xdp_bulk_tx { + struct trace_entry ent; + int ifindex; + u32 act; + int drops; + int sent; + int err; + char __data[0]; +}; + +struct trace_event_raw_xdp_redirect_template { + struct trace_entry ent; + int prog_id; + u32 act; + int ifindex; + int err; + int to_ifindex; + u32 map_id; + int map_index; + char __data[0]; +}; + +struct trace_event_raw_xdp_cpumap_kthread { + struct trace_entry ent; + int map_id; + u32 act; + int cpu; + unsigned int drops; + unsigned int processed; + int sched; + unsigned int xdp_pass; + unsigned int xdp_drop; + unsigned int xdp_redirect; + char __data[0]; +}; + +struct trace_event_raw_xdp_cpumap_enqueue { + struct trace_entry ent; + int map_id; + u32 act; + int cpu; + unsigned int drops; + unsigned int processed; + int to_cpu; + char __data[0]; +}; + +struct trace_event_raw_xdp_devmap_xmit { + struct trace_entry ent; + int from_ifindex; + u32 act; + int to_ifindex; + int drops; + int sent; + int err; + char __data[0]; +}; + +struct trace_event_raw_mem_disconnect { + struct trace_entry ent; + const struct xdp_mem_allocator *xa; + u32 mem_id; + u32 mem_type; + const void *allocator; + char __data[0]; +}; + +struct trace_event_raw_mem_connect { + struct trace_entry ent; + const struct xdp_mem_allocator *xa; + u32 mem_id; + u32 mem_type; + const void *allocator; + const struct xdp_rxq_info *rxq; + int ifindex; + char __data[0]; +}; + +struct trace_event_raw_bpf_xdp_link_attach_failed { + struct trace_entry ent; + u32 __data_loc_msg; + char __data[0]; +}; + +struct trace_event_data_offsets_xdp_exception {}; + +struct trace_event_data_offsets_xdp_bulk_tx {}; + +struct trace_event_data_offsets_xdp_redirect_template {}; + +struct trace_event_data_offsets_xdp_cpumap_kthread {}; + +struct trace_event_data_offsets_xdp_cpumap_enqueue {}; + +struct trace_event_data_offsets_xdp_devmap_xmit {}; + +struct trace_event_data_offsets_mem_disconnect {}; + +struct trace_event_data_offsets_mem_connect {}; + +struct trace_event_data_offsets_bpf_xdp_link_attach_failed { + u32 msg; + const void *msg_ptr_; +}; + +typedef void (*btf_trace_xdp_exception)(void *, const struct net_device *, const struct bpf_prog *, u32); + +typedef void (*btf_trace_xdp_bulk_tx)(void *, const struct net_device *, int, int, int); + +typedef void (*btf_trace_xdp_redirect)(void *, const struct net_device *, const struct bpf_prog *, const void *, int, enum bpf_map_type, u32, u32); + +typedef void (*btf_trace_xdp_redirect_err)(void *, const struct net_device *, const struct bpf_prog *, const void *, int, enum bpf_map_type, u32, u32); + +typedef void (*btf_trace_xdp_cpumap_kthread)(void *, int, unsigned int, unsigned int, int, struct xdp_cpumap_stats *); + +typedef void (*btf_trace_xdp_cpumap_enqueue)(void *, int, unsigned int, unsigned int, int); + +typedef void (*btf_trace_xdp_devmap_xmit)(void *, const struct net_device *, const struct net_device *, int, int, int); + +typedef void (*btf_trace_mem_disconnect)(void *, const struct xdp_mem_allocator *); + +typedef void (*btf_trace_mem_connect)(void *, const struct xdp_mem_allocator *, const struct xdp_rxq_info *); + +typedef void (*btf_trace_bpf_xdp_link_attach_failed)(void *, const char *); + +struct walk_stack_ctx { + struct bpf_prog *prog; +}; + +struct mmap_unlock_irq_work { + struct irq_work irq_work; + struct mm_struct *mm; +}; + +struct bpf_iter_seq_task_common { + struct pid_namespace *ns; + enum bpf_iter_task_type type; + u32 pid; + u32 pid_visiting; +}; + +struct bpf_iter_seq_task_info { + struct bpf_iter_seq_task_common common; + u32 tid; +}; + +struct bpf_iter__task { + union { + struct bpf_iter_meta *meta; + }; + union { + struct task_struct *task; + }; +}; + +struct bpf_iter_seq_task_file_info { + struct bpf_iter_seq_task_common common; + struct task_struct *task; + u32 tid; + u32 fd; +}; + +struct bpf_iter__task_file { + union { + struct bpf_iter_meta *meta; + }; + union { + struct task_struct *task; + }; + u32 fd; + union { + struct file *file; + }; +}; + +struct bpf_iter_seq_task_vma_info { + struct bpf_iter_seq_task_common common; + struct task_struct *task; + struct mm_struct *mm; + struct vm_area_struct *vma; + u32 tid; + long unsigned int prev_vm_start; + long unsigned int prev_vm_end; +}; + +enum bpf_task_vma_iter_find_op { + task_vma_iter_first_vma = 0, + task_vma_iter_next_vma = 1, + task_vma_iter_find_vma = 2, +}; + +struct bpf_iter__task_vma { + union { + struct bpf_iter_meta *meta; + }; + union { + struct task_struct *task; + }; + union { + struct vm_area_struct *vma; + }; +}; + +typedef u64 (*btf_bpf_find_vma)(struct task_struct *, u64, bpf_callback_t, void *, u64); + +struct bpf_iter_task_vma_kern_data { + struct task_struct *task; + struct mm_struct *mm; + struct mmap_unlock_irq_work *work; + struct vma_iterator vmi; +}; + +struct bpf_iter_task_vma { + __u64 __opaque[1]; +}; + +struct bpf_iter_task_vma_kern { + struct bpf_iter_task_vma_kern_data *data; +}; + +struct bpf_iter_css_task { + __u64 __opaque[1]; +}; + +struct bpf_iter_css_task_kern { + struct css_task_iter *css_it; +}; + +struct bpf_iter_task { + __u64 __opaque[3]; +}; + +struct bpf_iter_task_kern { + struct task_struct *task; + struct task_struct *pos; + unsigned int flags; +}; + +enum { + BPF_TASK_ITER_ALL_PROCS = 0, + BPF_TASK_ITER_ALL_THREADS = 1, + BPF_TASK_ITER_PROC_THREADS = 2, +}; + +struct bpf_iter__bpf_map_elem { + union { + struct bpf_iter_meta *meta; + }; + union { + struct bpf_map *map; + }; + union { + void *key; + }; + union { + void *value; + }; +}; + +struct bpf_iter_seq_array_map_info { + struct bpf_map *map; + void *percpu_value_buf; + u32 index; +}; + +struct prog_poke_elem { + struct list_head list; + struct bpf_prog_aux *aux; +}; + +struct bpf_cgroup_storage_map { + struct bpf_map map; + spinlock_t lock; + struct rb_root root; + struct list_head list; +}; + +typedef u64 (*btf_bpf_task_storage_get_recur)(struct bpf_map *, struct task_struct *, void *, u64, gfp_t); + +typedef u64 (*btf_bpf_task_storage_get)(struct bpf_map *, struct task_struct *, void *, u64, gfp_t); + +typedef u64 (*btf_bpf_task_storage_delete_recur)(struct bpf_map *, struct task_struct *); + +typedef u64 (*btf_bpf_task_storage_delete)(struct bpf_map *, struct task_struct *); + +enum { + BTF_VAR_STATIC = 0, + BTF_VAR_GLOBAL_ALLOCATED = 1, + BTF_VAR_GLOBAL_EXTERN = 2, +}; + +struct btf_var { + __u32 linkage; +}; + +struct btf_decl_tag { + __s32 component_idx; +}; + +struct btf_enum64 { + __u32 name_off; + __u32 val_lo32; + __u32 val_hi32; +}; + +struct bpf_btf_info { + __u64 btf; + __u32 btf_size; + __u32 id; + __u64 name; + __u32 name_len; + __u32 kernel_btf; +}; + +struct btf_struct_metas { + u32 cnt; + struct btf_struct_meta types[0]; +}; + +enum { + BTF_FIELDS_MAX = 11, +}; + +struct bpf_core_cand { + const struct btf *btf; + __u32 id; +}; + +struct bpf_core_cand_list { + struct bpf_core_cand *cands; + int len; +}; + +struct bpf_core_accessor { + __u32 type_id; + __u32 idx; + const char *name; +}; + +struct bpf_core_spec { + const struct btf *btf; + struct bpf_core_accessor spec[64]; + __u32 root_type_id; + enum bpf_core_relo_kind relo_kind; + int len; + int raw_spec[64]; + int raw_len; + __u32 bit_offset; +}; + +struct bpf_core_relo_res { + __u64 orig_val; + __u64 new_val; + bool poison; + bool validate; + bool fail_memsz_adjust; + __u32 orig_sz; + __u32 orig_type_id; + __u32 new_sz; + __u32 new_type_id; +}; + +enum btf_kfunc_hook { + BTF_KFUNC_HOOK_COMMON = 0, + BTF_KFUNC_HOOK_XDP = 1, + BTF_KFUNC_HOOK_TC = 2, + BTF_KFUNC_HOOK_STRUCT_OPS = 3, + BTF_KFUNC_HOOK_TRACING = 4, + BTF_KFUNC_HOOK_SYSCALL = 5, + BTF_KFUNC_HOOK_FMODRET = 6, + BTF_KFUNC_HOOK_CGROUP = 7, + BTF_KFUNC_HOOK_SCHED_ACT = 8, + BTF_KFUNC_HOOK_SK_SKB = 9, + BTF_KFUNC_HOOK_SOCKET_FILTER = 10, + BTF_KFUNC_HOOK_LWT = 11, + BTF_KFUNC_HOOK_NETFILTER = 12, + BTF_KFUNC_HOOK_KPROBE = 13, + BTF_KFUNC_HOOK_MAX = 14, +}; + +enum { + BTF_KFUNC_SET_MAX_CNT = 256, + BTF_DTOR_KFUNC_MAX_CNT = 256, + BTF_KFUNC_FILTER_MAX_CNT = 16, +}; + +struct btf_kfunc_hook_filter { + btf_kfunc_filter_t filters[16]; + u32 nr_filters; +}; + +struct btf_kfunc_set_tab { + struct btf_id_set8 *sets[14]; + struct btf_kfunc_hook_filter hook_filters[14]; +}; + +struct btf_id_dtor_kfunc_tab { + u32 cnt; + struct btf_id_dtor_kfunc dtors[0]; +}; + +struct btf_struct_ops_tab { + u32 cnt; + u32 capacity; + struct bpf_struct_ops_desc ops[0]; +}; + +enum verifier_phase { + CHECK_META = 0, + CHECK_TYPE = 1, +}; + +struct resolve_vertex { + const struct btf_type *t; + u32 type_id; + u16 next_member; +}; + +enum visit_state { + NOT_VISITED = 0, + VISITED = 1, + RESOLVED = 2, +}; + +enum resolve_mode { + RESOLVE_TBD = 0, + RESOLVE_PTR = 1, + RESOLVE_STRUCT_OR_ARRAY = 2, +}; + +struct btf_sec_info { + u32 off; + u32 len; +}; + +struct btf_verifier_env { + struct btf *btf; + u8 *visit_states; + struct resolve_vertex stack[32]; + struct bpf_verifier_log log; + u32 log_type_id; + u32 top_stack; + enum verifier_phase phase; + enum resolve_mode resolve_mode; +}; + +struct btf_show { + u64 flags; + void *target; + void (*showfn)(struct btf_show *, const char *, struct __va_list_tag *); + const struct btf *btf; + struct { + u8 depth; + u8 depth_to_show; + u8 depth_check; + u8 array_member: 1; + u8 array_terminated: 1; + u16 array_encoding; + u32 type_id; + int status; + const struct btf_type *type; + const struct btf_member *member; + char name[80]; + } state; + struct { + u32 size; + void *head; + void *data; + u8 safe[32]; + } obj; +}; + +struct btf_kind_operations { + s32 (*check_meta)(struct btf_verifier_env *, const struct btf_type *, u32); + int (*resolve)(struct btf_verifier_env *, const struct resolve_vertex *); + int (*check_member)(struct btf_verifier_env *, const struct btf_type *, const struct btf_member *, const struct btf_type *); + int (*check_kflag_member)(struct btf_verifier_env *, const struct btf_type *, const struct btf_member *, const struct btf_type *); + void (*log_details)(struct btf_verifier_env *, const struct btf_type *); + void (*show)(const struct btf *, const struct btf_type *, u32, void *, u8, struct btf_show *); +}; + +enum { + BTF_FIELD_IGNORE = 0, + BTF_FIELD_FOUND = 1, +}; + +struct btf_field_info { + enum btf_field_type type; + u32 off; + union { + struct { + u32 type_id; + } kptr; + struct { + const char *node_name; + u32 value_btf_id; + } graph_root; + }; +}; + +struct bpf_ctx_convert { + struct __sk_buff BPF_PROG_TYPE_SOCKET_FILTER_prog; + struct sk_buff BPF_PROG_TYPE_SOCKET_FILTER_kern; + struct __sk_buff BPF_PROG_TYPE_SCHED_CLS_prog; + struct sk_buff BPF_PROG_TYPE_SCHED_CLS_kern; + struct __sk_buff BPF_PROG_TYPE_SCHED_ACT_prog; + struct sk_buff BPF_PROG_TYPE_SCHED_ACT_kern; + struct xdp_md BPF_PROG_TYPE_XDP_prog; + struct xdp_buff BPF_PROG_TYPE_XDP_kern; + struct __sk_buff BPF_PROG_TYPE_CGROUP_SKB_prog; + struct sk_buff BPF_PROG_TYPE_CGROUP_SKB_kern; + struct bpf_sock BPF_PROG_TYPE_CGROUP_SOCK_prog; + struct sock BPF_PROG_TYPE_CGROUP_SOCK_kern; + struct bpf_sock_addr BPF_PROG_TYPE_CGROUP_SOCK_ADDR_prog; + struct bpf_sock_addr_kern BPF_PROG_TYPE_CGROUP_SOCK_ADDR_kern; + struct __sk_buff BPF_PROG_TYPE_LWT_IN_prog; + struct sk_buff BPF_PROG_TYPE_LWT_IN_kern; + struct __sk_buff BPF_PROG_TYPE_LWT_OUT_prog; + struct sk_buff BPF_PROG_TYPE_LWT_OUT_kern; + struct __sk_buff BPF_PROG_TYPE_LWT_XMIT_prog; + struct sk_buff BPF_PROG_TYPE_LWT_XMIT_kern; + struct __sk_buff BPF_PROG_TYPE_LWT_SEG6LOCAL_prog; + struct sk_buff BPF_PROG_TYPE_LWT_SEG6LOCAL_kern; + struct bpf_sock_ops BPF_PROG_TYPE_SOCK_OPS_prog; + struct bpf_sock_ops_kern BPF_PROG_TYPE_SOCK_OPS_kern; + struct __sk_buff BPF_PROG_TYPE_SK_SKB_prog; + struct sk_buff BPF_PROG_TYPE_SK_SKB_kern; + struct sk_msg_md BPF_PROG_TYPE_SK_MSG_prog; + struct sk_msg BPF_PROG_TYPE_SK_MSG_kern; + struct __sk_buff BPF_PROG_TYPE_FLOW_DISSECTOR_prog; + struct bpf_flow_dissector BPF_PROG_TYPE_FLOW_DISSECTOR_kern; + bpf_user_pt_regs_t BPF_PROG_TYPE_KPROBE_prog; + struct pt_regs BPF_PROG_TYPE_KPROBE_kern; + __u64 BPF_PROG_TYPE_TRACEPOINT_prog; + u64 BPF_PROG_TYPE_TRACEPOINT_kern; + struct bpf_perf_event_data BPF_PROG_TYPE_PERF_EVENT_prog; + struct bpf_perf_event_data_kern BPF_PROG_TYPE_PERF_EVENT_kern; + struct bpf_raw_tracepoint_args BPF_PROG_TYPE_RAW_TRACEPOINT_prog; + u64 BPF_PROG_TYPE_RAW_TRACEPOINT_kern; + struct bpf_raw_tracepoint_args BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE_prog; + u64 BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE_kern; + void *BPF_PROG_TYPE_TRACING_prog; + void *BPF_PROG_TYPE_TRACING_kern; + struct bpf_cgroup_dev_ctx BPF_PROG_TYPE_CGROUP_DEVICE_prog; + struct bpf_cgroup_dev_ctx BPF_PROG_TYPE_CGROUP_DEVICE_kern; + struct bpf_sysctl BPF_PROG_TYPE_CGROUP_SYSCTL_prog; + struct bpf_sysctl_kern BPF_PROG_TYPE_CGROUP_SYSCTL_kern; + struct bpf_sockopt BPF_PROG_TYPE_CGROUP_SOCKOPT_prog; + struct bpf_sockopt_kern BPF_PROG_TYPE_CGROUP_SOCKOPT_kern; + struct sk_reuseport_md BPF_PROG_TYPE_SK_REUSEPORT_prog; + struct sk_reuseport_kern BPF_PROG_TYPE_SK_REUSEPORT_kern; + struct bpf_sk_lookup BPF_PROG_TYPE_SK_LOOKUP_prog; + struct bpf_sk_lookup_kern BPF_PROG_TYPE_SK_LOOKUP_kern; + void *BPF_PROG_TYPE_STRUCT_OPS_prog; + void *BPF_PROG_TYPE_STRUCT_OPS_kern; + void *BPF_PROG_TYPE_EXT_prog; + void *BPF_PROG_TYPE_EXT_kern; + void *BPF_PROG_TYPE_LSM_prog; + void *BPF_PROG_TYPE_LSM_kern; + void *BPF_PROG_TYPE_SYSCALL_prog; + void *BPF_PROG_TYPE_SYSCALL_kern; + struct bpf_nf_ctx BPF_PROG_TYPE_NETFILTER_prog; + struct bpf_nf_ctx BPF_PROG_TYPE_NETFILTER_kern; +}; + +enum { + __ctx_convertBPF_PROG_TYPE_SOCKET_FILTER = 0, + __ctx_convertBPF_PROG_TYPE_SCHED_CLS = 1, + __ctx_convertBPF_PROG_TYPE_SCHED_ACT = 2, + __ctx_convertBPF_PROG_TYPE_XDP = 3, + __ctx_convertBPF_PROG_TYPE_CGROUP_SKB = 4, + __ctx_convertBPF_PROG_TYPE_CGROUP_SOCK = 5, + __ctx_convertBPF_PROG_TYPE_CGROUP_SOCK_ADDR = 6, + __ctx_convertBPF_PROG_TYPE_LWT_IN = 7, + __ctx_convertBPF_PROG_TYPE_LWT_OUT = 8, + __ctx_convertBPF_PROG_TYPE_LWT_XMIT = 9, + __ctx_convertBPF_PROG_TYPE_LWT_SEG6LOCAL = 10, + __ctx_convertBPF_PROG_TYPE_SOCK_OPS = 11, + __ctx_convertBPF_PROG_TYPE_SK_SKB = 12, + __ctx_convertBPF_PROG_TYPE_SK_MSG = 13, + __ctx_convertBPF_PROG_TYPE_FLOW_DISSECTOR = 14, + __ctx_convertBPF_PROG_TYPE_KPROBE = 15, + __ctx_convertBPF_PROG_TYPE_TRACEPOINT = 16, + __ctx_convertBPF_PROG_TYPE_PERF_EVENT = 17, + __ctx_convertBPF_PROG_TYPE_RAW_TRACEPOINT = 18, + __ctx_convertBPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE = 19, + __ctx_convertBPF_PROG_TYPE_TRACING = 20, + __ctx_convertBPF_PROG_TYPE_CGROUP_DEVICE = 21, + __ctx_convertBPF_PROG_TYPE_CGROUP_SYSCTL = 22, + __ctx_convertBPF_PROG_TYPE_CGROUP_SOCKOPT = 23, + __ctx_convertBPF_PROG_TYPE_SK_REUSEPORT = 24, + __ctx_convertBPF_PROG_TYPE_SK_LOOKUP = 25, + __ctx_convertBPF_PROG_TYPE_STRUCT_OPS = 26, + __ctx_convertBPF_PROG_TYPE_EXT = 27, + __ctx_convertBPF_PROG_TYPE_LSM = 28, + __ctx_convertBPF_PROG_TYPE_SYSCALL = 29, + __ctx_convertBPF_PROG_TYPE_NETFILTER = 30, + __ctx_convert_unused = 31, +}; + +struct bpf_raw_tp_null_args { + const char *func; + u64 mask; +}; + +enum bpf_struct_walk_result { + WALK_SCALAR = 0, + WALK_PTR = 1, + WALK_PTR_UNTRUSTED = 2, + WALK_STRUCT = 3, +}; + +struct bpf_cand_cache { + const char *name; + u32 name_len; + u16 kind; + u16 cnt; + struct { + const struct btf *btf; + u32 id; + } cands[0]; +}; + +enum btf_arg_tag { + ARG_TAG_CTX = 1, + ARG_TAG_NONNULL = 2, + ARG_TAG_TRUSTED = 4, + ARG_TAG_UNTRUSTED = 8, + ARG_TAG_NULLABLE = 16, + ARG_TAG_ARENA = 32, +}; + +struct btf_show_snprintf { + struct btf_show show; + int len_left; + int len; +}; + +enum { + BTF_MODULE_F_LIVE = 1, +}; + +struct btf_module { + struct list_head list; + struct module *module; + struct btf *btf; + struct bin_attribute *sysfs_attr; + int flags; +}; + +typedef u64 (*btf_bpf_btf_find_by_name_kind)(char *, int, u32, int); + +struct bpf_prog_info { + __u32 type; + __u32 id; + __u8 tag[8]; + __u32 jited_prog_len; + __u32 xlated_prog_len; + __u64 jited_prog_insns; + __u64 xlated_prog_insns; + __u64 load_time; + __u32 created_by_uid; + __u32 nr_map_ids; + __u64 map_ids; + char name[16]; + __u32 ifindex; + __u32 gpl_compatible: 1; + __u64 netns_dev; + __u64 netns_ino; + __u32 nr_jited_ksyms; + __u32 nr_jited_func_lens; + __u64 jited_ksyms; + __u64 jited_func_lens; + __u32 btf_id; + __u32 func_info_rec_size; + __u64 func_info; + __u32 nr_func_info; + __u32 nr_line_info; + __u64 line_info; + __u64 jited_line_info; + __u32 nr_jited_line_info; + __u32 line_info_rec_size; + __u32 jited_line_info_rec_size; + __u32 nr_prog_tags; + __u64 prog_tags; + __u64 run_time_ns; + __u64 run_cnt; + __u64 recursion_misses; + __u32 verified_insns; + __u32 attach_btf_obj_id; + __u32 attach_btf_id; +}; + +struct bpf_map_info { + __u32 type; + __u32 id; + __u32 key_size; + __u32 value_size; + __u32 max_entries; + __u32 map_flags; + char name[16]; + __u32 ifindex; + __u32 btf_vmlinux_value_type_id; + __u64 netns_dev; + __u64 netns_ino; + __u32 btf_id; + __u32 btf_key_type_id; + __u32 btf_value_type_id; + __u32 btf_vmlinux_id; + __u64 map_extra; +}; + +struct bpf_prog_offload_ops { + int (*insn_hook)(struct bpf_verifier_env *, int, int); + int (*finalize)(struct bpf_verifier_env *); + int (*replace_insn)(struct bpf_verifier_env *, u32, struct bpf_insn *); + int (*remove_insns)(struct bpf_verifier_env *, u32, u32); + int (*prepare)(struct bpf_prog *); + int (*translate)(struct bpf_prog *); + void (*destroy)(struct bpf_prog *); +}; + +struct bpf_offload_dev { + const struct bpf_prog_offload_ops *ops; + struct list_head netdevs; + void *priv; +}; + +typedef struct ns_common *ns_get_path_helper_t(void *); + +enum xdp_rx_metadata { + XDP_METADATA_KFUNC_RX_TIMESTAMP = 0, + XDP_METADATA_KFUNC_RX_HASH = 1, + XDP_METADATA_KFUNC_RX_VLAN_TAG = 2, + MAX_XDP_METADATA_KFUNC = 3, +}; + +struct bpf_offload_netdev { + struct rhash_head l; + struct net_device *netdev; + struct bpf_offload_dev *offdev; + struct list_head progs; + struct list_head maps; + struct list_head offdev_netdevs; +}; + +struct ns_get_path_bpf_prog_args { + struct bpf_prog *prog; + struct bpf_prog_info *info; +}; + +struct ns_get_path_bpf_map_args { + struct bpf_offloaded_map *offmap; + struct bpf_map_info *info; +}; + +enum bpf_stack_build_id_status { + BPF_STACK_BUILD_ID_EMPTY = 0, + BPF_STACK_BUILD_ID_VALID = 1, + BPF_STACK_BUILD_ID_IP = 2, +}; + +struct bpf_stack_build_id { + __s32 status; + unsigned char build_id[20]; + union { + __u64 offset; + __u64 ip; + }; +}; + +enum { + BPF_F_SKIP_FIELD_MASK = 255, + BPF_F_USER_STACK = 256, + BPF_F_FAST_STACK_CMP = 512, + BPF_F_REUSE_STACKID = 1024, + BPF_F_USER_BUILD_ID = 2048, +}; + +enum perf_callchain_context { + PERF_CONTEXT_HV = 18446744073709551584ULL, + PERF_CONTEXT_KERNEL = 18446744073709551488ULL, + PERF_CONTEXT_USER = 18446744073709551104ULL, + PERF_CONTEXT_GUEST = 18446744073709549568ULL, + PERF_CONTEXT_GUEST_KERNEL = 18446744073709549440ULL, + PERF_CONTEXT_GUEST_USER = 18446744073709549056ULL, + PERF_CONTEXT_MAX = 18446744073709547521ULL, +}; + +struct stack_map_bucket { + struct pcpu_freelist_node fnode; + u32 hash; + u32 nr; + u64 data[0]; +}; + +struct bpf_stack_map { + struct bpf_map map; + void *elems; + struct pcpu_freelist freelist; + u32 n_buckets; + struct stack_map_bucket *buckets[0]; +}; + +typedef u64 (*btf_bpf_get_stackid)(struct pt_regs *, struct bpf_map *, u64); + +typedef u64 (*btf_bpf_get_stackid_pe)(struct bpf_perf_event_data_kern *, struct bpf_map *, u64); + +typedef u64 (*btf_bpf_get_stack)(struct pt_regs *, void *, u32, u64); + +typedef u64 (*btf_bpf_get_stack_sleepable)(struct pt_regs *, void *, u32, u64); + +typedef u64 (*btf_bpf_get_task_stack)(struct task_struct *, void *, u32, u64); + +typedef u64 (*btf_bpf_get_task_stack_sleepable)(struct task_struct *, void *, u32, u64); + +typedef u64 (*btf_bpf_get_stack_pe)(struct bpf_perf_event_data_kern *, void *, u32, u64); + +struct bpf_struct_ops_value { + struct bpf_struct_ops_common_value common; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + char data[0]; +}; + +struct bpf_struct_ops_map { + struct bpf_map map; + const struct bpf_struct_ops_desc *st_ops_desc; + struct mutex lock; + struct bpf_link **links; + struct bpf_ksym **ksyms; + u32 funcs_cnt; + u32 image_pages_cnt; + void *image_pages[8]; + struct btf *btf; + struct bpf_struct_ops_value *uvalue; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct bpf_struct_ops_value kvalue; +}; + +struct bpf_struct_ops_link { + struct bpf_link link; + struct bpf_map *map; + wait_queue_head_t wait_hup; +}; + +enum { + IDX_MODULE_ID = 0, + IDX_ST_OPS_COMMON_VALUE_ID = 1, +}; + +struct dmabuf_iter_priv { + struct dma_buf *dmabuf; +}; + +struct bpf_iter__dmabuf { + union { + struct bpf_iter_meta *meta; + }; + union { + struct dma_buf *dmabuf; + }; +}; + +struct bpf_iter_dmabuf { + __u64 __opaque[1]; +}; + +struct bpf_iter_dmabuf_kern { + struct dma_buf *dmabuf; +}; + +enum bp_type_idx { + TYPE_INST = 0, + TYPE_DATA = 0, + TYPE_MAX = 1, +}; + +struct bp_slots_histogram { + atomic_t count[4]; +}; + +struct bp_cpuinfo { + unsigned int cpu_pinned; + struct bp_slots_histogram tsk_pinned; +}; + +struct user_return_notifier { + void (*on_user_return)(struct user_return_notifier *); + struct hlist_node link; +}; + +struct static_key_mod { + struct static_key_mod *next; + struct jump_entry *entries; + struct module *mod; +}; + +struct static_key_deferred { + struct static_key key; + long unsigned int timeout; + struct delayed_work work; +}; + +struct trace_event_raw_context_tracking_user { + struct trace_entry ent; + int dummy; + char __data[0]; +}; + +struct trace_event_data_offsets_context_tracking_user {}; + +typedef void (*btf_trace_user_enter)(void *, int); + +typedef void (*btf_trace_user_exit)(void *, int); + +struct trace_event_raw_oom_score_adj_update { + struct trace_entry ent; + pid_t pid; + char comm[16]; + short int oom_score_adj; + char __data[0]; +}; + +struct trace_event_raw_reclaim_retry_zone { + struct trace_entry ent; + int node; + int zone_idx; + int order; + long unsigned int reclaimable; + long unsigned int available; + long unsigned int min_wmark; + int no_progress_loops; + bool wmark_check; + char __data[0]; +}; + +struct trace_event_raw_mark_victim { + struct trace_entry ent; + int pid; + u32 __data_loc_comm; + long unsigned int total_vm; + long unsigned int anon_rss; + long unsigned int file_rss; + long unsigned int shmem_rss; + uid_t uid; + long unsigned int pgtables; + short int oom_score_adj; + char __data[0]; +}; + +struct trace_event_raw_wake_reaper { + struct trace_entry ent; + int pid; + char __data[0]; +}; + +struct trace_event_raw_start_task_reaping { + struct trace_entry ent; + int pid; + char __data[0]; +}; + +struct trace_event_raw_finish_task_reaping { + struct trace_entry ent; + int pid; + char __data[0]; +}; + +struct trace_event_raw_skip_task_reaping { + struct trace_entry ent; + int pid; + char __data[0]; +}; + +struct trace_event_raw_compact_retry { + struct trace_entry ent; + int order; + int priority; + int result; + int retries; + int max_retries; + bool ret; + char __data[0]; +}; + +struct trace_event_data_offsets_oom_score_adj_update {}; + +struct trace_event_data_offsets_reclaim_retry_zone {}; + +struct trace_event_data_offsets_mark_victim { + u32 comm; + const void *comm_ptr_; +}; + +struct trace_event_data_offsets_wake_reaper {}; + +struct trace_event_data_offsets_start_task_reaping {}; + +struct trace_event_data_offsets_finish_task_reaping {}; + +struct trace_event_data_offsets_skip_task_reaping {}; + +struct trace_event_data_offsets_compact_retry {}; + +typedef void (*btf_trace_oom_score_adj_update)(void *, struct task_struct *); + +typedef void (*btf_trace_reclaim_retry_zone)(void *, struct zoneref *, int, long unsigned int, long unsigned int, long unsigned int, int, bool); + +typedef void (*btf_trace_mark_victim)(void *, struct task_struct *, uid_t); + +typedef void (*btf_trace_wake_reaper)(void *, int); + +typedef void (*btf_trace_start_task_reaping)(void *, int); + +typedef void (*btf_trace_finish_task_reaping)(void *, int); + +typedef void (*btf_trace_skip_task_reaping)(void *, int); + +typedef void (*btf_trace_compact_retry)(void *, int, enum compact_priority, enum compact_result, int, int, bool); + +struct contig_page_info { + long unsigned int free_pages; + long unsigned int free_blocks_total; + long unsigned int free_blocks_suitable; +}; + +struct pcpu_group_info { + int nr_units; + long unsigned int base_offset; + unsigned int *cpu_map; +}; + +struct pcpu_alloc_info { + size_t static_size; + size_t reserved_size; + size_t dyn_size; + size_t unit_size; + size_t atom_size; + size_t alloc_size; + size_t __ai_size; + int nr_groups; + struct pcpu_group_info groups[0]; +}; + +typedef int pcpu_fc_cpu_to_node_fn_t(int); + +typedef int pcpu_fc_cpu_distance_fn_t(unsigned int, unsigned int); + +struct trace_event_raw_percpu_alloc_percpu { + struct trace_entry ent; + long unsigned int call_site; + bool reserved; + bool is_atomic; + size_t size; + size_t align; + void *base_addr; + int off; + void *ptr; + size_t bytes_alloc; + long unsigned int gfp_flags; + char __data[0]; +}; + +struct trace_event_raw_percpu_free_percpu { + struct trace_entry ent; + void *base_addr; + int off; + void *ptr; + char __data[0]; +}; + +struct trace_event_raw_percpu_alloc_percpu_fail { + struct trace_entry ent; + bool reserved; + bool is_atomic; + size_t size; + size_t align; + char __data[0]; +}; + +struct trace_event_raw_percpu_create_chunk { + struct trace_entry ent; + void *base_addr; + char __data[0]; +}; + +struct trace_event_raw_percpu_destroy_chunk { + struct trace_entry ent; + void *base_addr; + char __data[0]; +}; + +struct trace_event_data_offsets_percpu_alloc_percpu {}; + +struct trace_event_data_offsets_percpu_free_percpu {}; + +struct trace_event_data_offsets_percpu_alloc_percpu_fail {}; + +struct trace_event_data_offsets_percpu_create_chunk {}; + +struct trace_event_data_offsets_percpu_destroy_chunk {}; + +typedef void (*btf_trace_percpu_alloc_percpu)(void *, long unsigned int, bool, bool, size_t, size_t, void *, int, void *, size_t, gfp_t); + +typedef void (*btf_trace_percpu_free_percpu)(void *, void *, int, void *); + +typedef void (*btf_trace_percpu_alloc_percpu_fail)(void *, bool, bool, size_t, size_t); + +typedef void (*btf_trace_percpu_create_chunk)(void *, void *); + +typedef void (*btf_trace_percpu_destroy_chunk)(void *, void *); + +struct pcpu_block_md { + int scan_hint; + int scan_hint_start; + int contig_hint; + int contig_hint_start; + int left_free; + int right_free; + int first_free; + int nr_bits; +}; + +struct pcpuobj_ext { + struct obj_cgroup *cgroup; +}; + +struct pcpu_chunk { + struct list_head list; + int free_bytes; + struct pcpu_block_md chunk_md; + long unsigned int *bound_map; + void *base_addr; + long unsigned int *alloc_map; + struct pcpu_block_md *md_blocks; + void *data; + bool immutable; + bool isolated; + int start_offset; + int end_offset; + struct pcpuobj_ext *obj_exts; + int nr_pages; + int nr_populated; + int nr_empty_pop_pages; + long unsigned int populated[0]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct page_snapshot { + struct folio folio_snapshot; + struct page page_snapshot; + long unsigned int pfn; + long unsigned int idx; + long unsigned int flags; + long: 64; +}; + +struct mlock_fbatch { + local_lock_t lock; + struct folio_batch fbatch; +}; + +struct page_frag_cache { + long unsigned int encoded_page; + __u32 offset; + __u32 pagecnt_bias; +}; + +struct kmem_cache_cpu { + union { + struct { + void **freelist; + long unsigned int tid; + }; + freelist_aba_t freelist_tid; + }; + struct slab *slab; + struct slab *partial; + local_lock_t lock; +}; + +struct kmem_cache_node { + spinlock_t list_lock; + long unsigned int nr_partial; + struct list_head partial; + atomic_long_t nr_slabs; + atomic_long_t total_objects; + struct list_head full; +}; + +enum slab_flags { + SL_locked = 0, + SL_partial = 9, + SL_pfmemalloc = 8, +}; + +struct partial_context { + gfp_t flags; + unsigned int orig_size; + void *object; +}; + +struct track { + long unsigned int addr; + depot_stack_handle_t handle; + int cpu; + int pid; + long unsigned int when; +}; + +enum track_item { + TRACK_ALLOC = 0, + TRACK_FREE = 1, +}; + +enum stat_item { + ALLOC_FASTPATH = 0, + ALLOC_SLOWPATH = 1, + FREE_FASTPATH = 2, + FREE_SLOWPATH = 3, + FREE_FROZEN = 4, + FREE_ADD_PARTIAL = 5, + FREE_REMOVE_PARTIAL = 6, + ALLOC_FROM_PARTIAL = 7, + ALLOC_SLAB = 8, + ALLOC_REFILL = 9, + ALLOC_NODE_MISMATCH = 10, + FREE_SLAB = 11, + CPUSLAB_FLUSH = 12, + DEACTIVATE_FULL = 13, + DEACTIVATE_EMPTY = 14, + DEACTIVATE_TO_HEAD = 15, + DEACTIVATE_TO_TAIL = 16, + DEACTIVATE_REMOTE_FREES = 17, + DEACTIVATE_BYPASS = 18, + ORDER_FALLBACK = 19, + CMPXCHG_DOUBLE_CPU_FAIL = 20, + CMPXCHG_DOUBLE_FAIL = 21, + CPU_PARTIAL_ALLOC = 22, + CPU_PARTIAL_FREE = 23, + CPU_PARTIAL_NODE = 24, + CPU_PARTIAL_DRAIN = 25, + NR_SLUB_STAT_ITEMS = 26, +}; + +struct slub_flush_work { + struct work_struct work; + struct kmem_cache *s; + bool skip; +}; + +struct detached_freelist { + struct slab *slab; + void *tail; + void *freelist; + int cnt; + struct kmem_cache *s; +}; + +struct location { + depot_stack_handle_t handle; + long unsigned int count; + long unsigned int addr; + long unsigned int waste; + long long int sum_time; + long int min_time; + long int max_time; + long int min_pid; + long int max_pid; + long unsigned int cpus[128]; + nodemask_t nodes; +}; + +struct loc_track { + long unsigned int max; + long unsigned int count; + struct location *loc; + loff_t idx; +}; + +enum slab_stat_type { + SL_ALL = 0, + SL_PARTIAL = 1, + SL_CPU = 2, + SL_OBJECTS = 3, + SL_TOTAL = 4, +}; + +struct slab_attribute { + struct attribute attr; + ssize_t (*show)(struct kmem_cache *, char *); + ssize_t (*store)(struct kmem_cache *, const char *, size_t); +}; + +struct saved_alias { + struct kmem_cache *s; + const char *name; + struct saved_alias *next; +}; + +struct crypto_acomp_ctx { + struct crypto_acomp *acomp; + struct acomp_req *req; + struct crypto_wait wait; + u8 *buffer; + struct mutex mutex; + bool is_sleepable; +}; + +struct zswap_pool { + struct zpool *zpool; + struct crypto_acomp_ctx *acomp_ctx; + struct percpu_ref ref; + struct list_head list; + struct work_struct release_work; + struct hlist_node node; + char tfm_name[128]; +}; + +struct zswap_entry { + swp_entry_t swpentry; + unsigned int length; + bool referenced; + struct zswap_pool *pool; + long unsigned int handle; + struct obj_cgroup *objcg; + struct list_head lru; +}; + +enum zswap_init_type { + ZSWAP_UNINIT = 0, + ZSWAP_INIT_SUCCEED = 1, + ZSWAP_INIT_FAILED = 2, +}; + +struct vmemmap_remap_walk { + void (*remap_pte)(pte_t *, long unsigned int, struct vmemmap_remap_walk *); + long unsigned int nr_walked; + struct page *reuse_page; + long unsigned int reuse_addr; + struct list_head *vmemmap_pages; + long unsigned int flags; +}; + +struct kcsan_scoped_access {}; + +enum kfence_object_state { + KFENCE_OBJECT_UNUSED = 0, + KFENCE_OBJECT_ALLOCATED = 1, + KFENCE_OBJECT_RCU_FREEING = 2, + KFENCE_OBJECT_FREED = 3, +}; + +struct kfence_track { + pid_t pid; + int cpu; + u64 ts_nsec; + int num_stack_entries; + long unsigned int stack_entries[64]; +}; + +struct kfence_metadata { + struct list_head list; + struct callback_head callback_head; + raw_spinlock_t lock; + enum kfence_object_state state; + long unsigned int addr; + size_t size; + struct kmem_cache *cache; + long unsigned int unprotected_page; + struct kfence_track alloc_track; + struct kfence_track free_track; + u32 alloc_stack_hash; + struct slabobj_ext obj_exts; +}; + +enum kfence_error_type { + KFENCE_ERROR_OOB = 0, + KFENCE_ERROR_UAF = 1, + KFENCE_ERROR_CORRUPTION = 2, + KFENCE_ERROR_INVALID = 3, + KFENCE_ERROR_INVALID_FREE = 4, +}; + +enum kfence_counter_id { + KFENCE_COUNTER_ALLOCATED = 0, + KFENCE_COUNTER_ALLOCS = 1, + KFENCE_COUNTER_FREES = 2, + KFENCE_COUNTER_ZOMBIES = 3, + KFENCE_COUNTER_BUGS = 4, + KFENCE_COUNTER_SKIP_INCOMPAT = 5, + KFENCE_COUNTER_SKIP_CAPACITY = 6, + KFENCE_COUNTER_SKIP_COVERED = 7, + KFENCE_COUNTER_COUNT = 8, +}; + +struct trace_event_raw_migration_pmd { + struct trace_entry ent; + long unsigned int addr; + long unsigned int pmd; + char __data[0]; +}; + +struct trace_event_data_offsets_migration_pmd {}; + +typedef void (*btf_trace_set_migration_pmd)(void *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_remove_migration_pmd)(void *, long unsigned int, long unsigned int); + +struct folio_or_pfn { + union { + struct folio *folio; + long unsigned int pfn; + }; + bool is_folio; +}; + +struct wp_walk { + struct mmu_notifier_range range; + long unsigned int tlbflush_start; + long unsigned int tlbflush_end; + long unsigned int total; +}; + +struct clean_walk { + struct wp_walk base; + long unsigned int bitmap_pgoff; + long unsigned int *bitmap; + long unsigned int start; + long unsigned int end; +}; + +struct user_arg_ptr { + bool is_compat; + union { + const char * const *native; + const compat_uptr_t *compat; + } ptr; +}; + +struct linux_dirent64 { + u64 d_ino; + s64 d_off; + short unsigned int d_reclen; + unsigned char d_type; + char d_name[0]; +}; + +struct old_linux_dirent { + long unsigned int d_ino; + long unsigned int d_offset; + short unsigned int d_namlen; + char d_name[0]; +}; + +struct readdir_callback { + struct dir_context ctx; + struct old_linux_dirent *dirent; + int result; +}; + +struct linux_dirent { + long unsigned int d_ino; + long unsigned int d_off; + short unsigned int d_reclen; + char d_name[0]; +}; + +struct getdents_callback { + struct dir_context ctx; + struct linux_dirent *current_dir; + int prev_reclen; + int error; +}; + +struct getdents_callback64 { + struct dir_context ctx; + struct linux_dirent64 *current_dir; + int prev_reclen; + int error; +}; + +struct compat_old_linux_dirent { + compat_ulong_t d_ino; + compat_ulong_t d_offset; + short unsigned int d_namlen; + char d_name[0]; +}; + +struct compat_readdir_callback { + struct dir_context ctx; + struct compat_old_linux_dirent *dirent; + int result; +}; + +struct compat_linux_dirent { + compat_ulong_t d_ino; + compat_ulong_t d_off; + short unsigned int d_reclen; + char d_name[0]; +}; + +struct compat_getdents_callback { + struct dir_context ctx; + struct compat_linux_dirent *current_dir; + int prev_reclen; + int error; +}; + +struct inodes_stat_t { + long int nr_inodes; + long int nr_unused; + long int dummy[5]; +}; + +struct trace_event_raw_ctime { + struct trace_entry ent; + dev_t dev; + ino_t ino; + time64_t ctime_s; + u32 ctime_ns; + u32 gen; + char __data[0]; +}; + +struct trace_event_raw_ctime_ns_xchg { + struct trace_entry ent; + dev_t dev; + ino_t ino; + u32 gen; + u32 old; + u32 new; + u32 cur; + char __data[0]; +}; + +struct trace_event_raw_fill_mg_cmtime { + struct trace_entry ent; + dev_t dev; + ino_t ino; + time64_t ctime_s; + time64_t mtime_s; + u32 ctime_ns; + u32 mtime_ns; + u32 gen; + char __data[0]; +}; + +struct trace_event_data_offsets_ctime {}; + +struct trace_event_data_offsets_ctime_ns_xchg {}; + +struct trace_event_data_offsets_fill_mg_cmtime {}; + +typedef void (*btf_trace_inode_set_ctime_to_ts)(void *, struct inode *, struct timespec64 *); + +typedef void (*btf_trace_ctime_xchg_skip)(void *, struct inode *, struct timespec64 *); + +typedef void (*btf_trace_ctime_ns_xchg)(void *, struct inode *, u32, u32, u32); + +typedef void (*btf_trace_fill_mg_cmtime)(void *, struct inode *, struct timespec64 *, struct timespec64 *); + +struct mnt_idmap { + struct uid_gid_map uid_map; + struct uid_gid_map gid_map; + refcount_t count; +}; + +struct mount_attr { + __u64 attr_set; + __u64 attr_clr; + __u64 propagation; + __u64 userns_fd; +}; + +struct statmount { + __u32 size; + __u32 mnt_opts; + __u64 mask; + __u32 sb_dev_major; + __u32 sb_dev_minor; + __u64 sb_magic; + __u32 sb_flags; + __u32 fs_type; + __u64 mnt_id; + __u64 mnt_parent_id; + __u32 mnt_id_old; + __u32 mnt_parent_id_old; + __u64 mnt_attr; + __u64 mnt_propagation; + __u64 mnt_peer_group; + __u64 mnt_master; + __u64 propagate_from; + __u32 mnt_root; + __u32 mnt_point; + __u64 mnt_ns_id; + __u32 fs_subtype; + __u32 sb_source; + __u32 opt_num; + __u32 opt_array; + __u32 opt_sec_num; + __u32 opt_sec_array; + __u64 supported_mask; + __u32 mnt_uidmap_num; + __u32 mnt_uidmap; + __u32 mnt_gidmap_num; + __u32 mnt_gidmap; + __u64 __spare2[43]; + char str[0]; +}; + +struct mnt_id_req { + __u32 size; + __u32 mnt_ns_fd; + __u64 mnt_id; + __u64 param; + __u64 mnt_ns_id; +}; + +enum mount_kattr_flags_t { + MOUNT_KATTR_RECURSE = 1, + MOUNT_KATTR_IDMAP_REPLACE = 2, +}; + +struct mount_kattr { + unsigned int attr_set; + unsigned int attr_clr; + unsigned int propagation; + unsigned int lookup_flags; + enum mount_kattr_flags_t kflags; + struct user_namespace *mnt_userns; + struct mnt_idmap *mnt_idmap; +}; + +struct pinned_mountpoint { + struct hlist_node node; + struct mountpoint *mp; +}; + +typedef struct rw_semaphore *class_namespace_lock_t; + +enum umount_tree_flags { + UMOUNT_SYNC = 1, + UMOUNT_PROPAGATE = 2, + UMOUNT_CONNECTED = 4, +}; + +enum mnt_tree_flags_t { + MNT_TREE_BENEATH = 1, + MNT_TREE_PROPAGATION = 2, +}; + +struct kstatmount { + struct statmount *buf; + size_t bufsize; + struct vfsmount *mnt; + struct mnt_idmap *idmap; + u64 mask; + struct path root; + struct seq_file seq; + struct statmount sm; +}; + +struct klistmount { + u64 last_mnt_id; + u64 mnt_parent_id; + u64 *kmnt_ids; + u32 nr_mnt_ids; + struct mnt_namespace *ns; + struct path root; +}; + +typedef int splice_direct_actor(struct pipe_inode_info *, struct splice_desc *); + +enum legacy_fs_param { + LEGACY_FS_UNSET_PARAMS = 0, + LEGACY_FS_MONOLITHIC_PARAMS = 1, + LEGACY_FS_INDIVIDUAL_PARAMS = 2, +}; + +struct legacy_fs_context { + char *legacy_data; + size_t data_size; + enum legacy_fs_param param_type; +}; + +typedef int dio_iodone_t(struct kiocb *, loff_t, ssize_t, void *); + +enum { + DIO_LOCKING = 1, + DIO_SKIP_HOLES = 2, +}; + +struct dio_submit { + struct bio *bio; + unsigned int blkbits; + unsigned int blkfactor; + unsigned int start_zero_done; + int pages_in_io; + sector_t block_in_file; + unsigned int blocks_available; + int reap_counter; + sector_t final_block_in_request; + int boundary; + get_block_t *get_block; + loff_t logical_offset_in_bio; + sector_t final_block_in_bio; + sector_t next_block_for_io; + struct page *cur_page; + unsigned int cur_page_offset; + unsigned int cur_page_len; + sector_t cur_page_block; + loff_t cur_page_fs_offset; + struct iov_iter *iter; + unsigned int head; + unsigned int tail; + size_t from; + size_t to; +}; + +struct dio { + int flags; + blk_opf_t opf; + struct gendisk *bio_disk; + struct inode *inode; + loff_t i_size; + dio_iodone_t *end_io; + bool is_pinned; + void *private; + spinlock_t bio_lock; + int page_errors; + int is_async; + bool defer_completion; + bool should_dirty; + int io_error; + long unsigned int refcount; + struct bio *bio_list; + struct task_struct *waiter; + struct kiocb *iocb; + ssize_t result; + union { + struct page *pages[64]; + struct work_struct complete_work; + }; + long: 64; +}; + +struct inotify_event_info { + struct fsnotify_event fse; + u32 mask; + int wd; + u32 sync_cookie; + int name_len; + char name[0]; +}; + +struct fanotify_event_metadata { + __u32 event_len; + __u8 vers; + __u8 reserved; + __u16 metadata_len; + __u64 mask; + __s32 fd; + __s32 pid; +}; + +struct fanotify_event_info_header { + __u8 info_type; + __u8 pad; + __u16 len; +}; + +struct fanotify_event_info_fid { + struct fanotify_event_info_header hdr; + __kernel_fsid_t fsid; + unsigned char handle[0]; +}; + +struct fanotify_event_info_pidfd { + struct fanotify_event_info_header hdr; + __s32 pidfd; +}; + +struct fanotify_event_info_error { + struct fanotify_event_info_header hdr; + __s32 error; + __u32 error_count; +}; + +struct fanotify_event_info_range { + struct fanotify_event_info_header hdr; + __u32 pad; + __u64 offset; + __u64 count; +}; + +struct fanotify_event_info_mnt { + struct fanotify_event_info_header hdr; + __u64 mnt_id; +}; + +struct fanotify_response { + __s32 fd; + __u32 response; +}; + +struct fan_fsid { + struct super_block *sb; + __kernel_fsid_t id; + bool weak; +}; + +struct signalfd_siginfo { + __u32 ssi_signo; + __s32 ssi_errno; + __s32 ssi_code; + __u32 ssi_pid; + __u32 ssi_uid; + __s32 ssi_fd; + __u32 ssi_tid; + __u32 ssi_band; + __u32 ssi_overrun; + __u32 ssi_trapno; + __s32 ssi_status; + __s32 ssi_int; + __u64 ssi_ptr; + __u64 ssi_utime; + __u64 ssi_stime; + __u64 ssi_addr; + __u16 ssi_addr_lsb; + __u16 __pad2; + __s32 ssi_syscall; + __u64 ssi_call_addr; + __u32 ssi_arch; + __u8 __pad[28]; +}; + +struct signalfd_ctx { + sigset_t sigmask; +}; + +struct eventfd_ctx { + struct kref kref; + wait_queue_head_t wqh; + __u64 count; + unsigned int flags; + int id; +}; + +struct fscrypt_context_v1 { + u8 version; + u8 contents_encryption_mode; + u8 filenames_encryption_mode; + u8 flags; + u8 master_key_descriptor[8]; + u8 nonce[16]; +}; + +struct fscrypt_context_v2 { + u8 version; + u8 contents_encryption_mode; + u8 filenames_encryption_mode; + u8 flags; + u8 log2_data_unit_size; + u8 __reserved[3]; + u8 master_key_identifier[16]; + u8 nonce[16]; +}; + +union fscrypt_context { + u8 version; + struct fscrypt_context_v1 v1; + struct fscrypt_context_v2 v2; +}; + +struct fsverity_digest { + __u16 digest_algorithm; + __u16 digest_size; + __u8 digest[0]; +}; + +struct user_regs_struct32 { + __u32 ebx; + __u32 ecx; + __u32 edx; + __u32 esi; + __u32 edi; + __u32 ebp; + __u32 eax; + short unsigned int ds; + short unsigned int __ds; + short unsigned int es; + short unsigned int __es; + short unsigned int fs; + short unsigned int __fs; + short unsigned int gs; + short unsigned int __gs; + __u32 orig_eax; + __u32 eip; + short unsigned int cs; + short unsigned int __cs; + __u32 eflags; + __u32 esp; + short unsigned int ss; + short unsigned int __ss; +}; + +struct user_regs_struct { + long unsigned int r15; + long unsigned int r14; + long unsigned int r13; + long unsigned int r12; + long unsigned int bp; + long unsigned int bx; + long unsigned int r11; + long unsigned int r10; + long unsigned int r9; + long unsigned int r8; + long unsigned int ax; + long unsigned int cx; + long unsigned int dx; + long unsigned int si; + long unsigned int di; + long unsigned int orig_ax; + long unsigned int ip; + long unsigned int cs; + long unsigned int flags; + long unsigned int sp; + long unsigned int ss; + long unsigned int fs_base; + long unsigned int gs_base; + long unsigned int ds; + long unsigned int es; + long unsigned int fs; + long unsigned int gs; +}; + +struct elf32_shdr { + Elf32_Word sh_name; + Elf32_Word sh_type; + Elf32_Word sh_flags; + Elf32_Addr sh_addr; + Elf32_Off sh_offset; + Elf32_Word sh_size; + Elf32_Word sh_link; + Elf32_Word sh_info; + Elf32_Word sh_addralign; + Elf32_Word sh_entsize; +}; + +struct compat_elf_siginfo { + compat_int_t si_signo; + compat_int_t si_code; + compat_int_t si_errno; +}; + +struct compat_elf_prstatus_common { + struct compat_elf_siginfo pr_info; + short int pr_cursig; + compat_ulong_t pr_sigpend; + compat_ulong_t pr_sighold; + compat_pid_t pr_pid; + compat_pid_t pr_ppid; + compat_pid_t pr_pgrp; + compat_pid_t pr_sid; + struct old_timeval32 pr_utime; + struct old_timeval32 pr_stime; + struct old_timeval32 pr_cutime; + struct old_timeval32 pr_cstime; +}; + +struct compat_elf_prpsinfo { + char pr_state; + char pr_sname; + char pr_zomb; + char pr_nice; + compat_ulong_t pr_flag; + __compat_uid_t pr_uid; + __compat_gid_t pr_gid; + compat_pid_t pr_pid; + compat_pid_t pr_ppid; + compat_pid_t pr_pgrp; + compat_pid_t pr_sid; + char pr_fname[16]; + char pr_psargs[80]; +}; + +typedef struct user_regs_struct compat_elf_gregset_t; + +struct i386_elf_prstatus { + struct compat_elf_prstatus_common common; + struct user_regs_struct32 pr_reg; + compat_int_t pr_fpvalid; +}; + +struct compat_elf_prstatus { + struct compat_elf_prstatus_common common; + compat_elf_gregset_t pr_reg; + compat_int_t pr_fpvalid; +}; + +struct arch_elf_state {}; + +struct memelfnote { + const char *name; + int type; + unsigned int datasz; + void *data; +}; + +struct elf_thread_core_info { + struct elf_thread_core_info *next; + struct task_struct *task; + struct compat_elf_prstatus prstatus; + struct memelfnote notes[0]; +}; + +struct elf_note_info { + struct elf_thread_core_info *thread; + struct memelfnote psinfo; + struct memelfnote signote; + struct memelfnote auxv; + struct memelfnote files; + compat_siginfo_t csigdata; + size_t size; + int thread_notes; +}; + +enum nfs_stat { + NFS_OK = 0, + NFSERR_PERM = 1, + NFSERR_NOENT = 2, + NFSERR_IO = 5, + NFSERR_NXIO = 6, + NFSERR_ACCES = 13, + NFSERR_EXIST = 17, + NFSERR_XDEV = 18, + NFSERR_NODEV = 19, + NFSERR_NOTDIR = 20, + NFSERR_ISDIR = 21, + NFSERR_INVAL = 22, + NFSERR_FBIG = 27, + NFSERR_NOSPC = 28, + NFSERR_ROFS = 30, + NFSERR_MLINK = 31, + NFSERR_NAMETOOLONG = 63, + NFSERR_NOTEMPTY = 66, + NFSERR_DQUOT = 69, + NFSERR_STALE = 70, + NFSERR_REMOTE = 71, + NFSERR_WFLUSH = 99, + NFSERR_BADHANDLE = 10001, + NFSERR_NOT_SYNC = 10002, + NFSERR_BAD_COOKIE = 10003, + NFSERR_NOTSUPP = 10004, + NFSERR_TOOSMALL = 10005, + NFSERR_SERVERFAULT = 10006, + NFSERR_BADTYPE = 10007, + NFSERR_JUKEBOX = 10008, + NFSERR_SAME = 10009, + NFSERR_DENIED = 10010, + NFSERR_EXPIRED = 10011, + NFSERR_LOCKED = 10012, + NFSERR_GRACE = 10013, + NFSERR_FHEXPIRED = 10014, + NFSERR_SHARE_DENIED = 10015, + NFSERR_WRONGSEC = 10016, + NFSERR_CLID_INUSE = 10017, + NFSERR_RESOURCE = 10018, + NFSERR_MOVED = 10019, + NFSERR_NOFILEHANDLE = 10020, + NFSERR_MINOR_VERS_MISMATCH = 10021, + NFSERR_STALE_CLIENTID = 10022, + NFSERR_STALE_STATEID = 10023, + NFSERR_OLD_STATEID = 10024, + NFSERR_BAD_STATEID = 10025, + NFSERR_BAD_SEQID = 10026, + NFSERR_NOT_SAME = 10027, + NFSERR_LOCK_RANGE = 10028, + NFSERR_SYMLINK = 10029, + NFSERR_RESTOREFH = 10030, + NFSERR_LEASE_MOVED = 10031, + NFSERR_ATTRNOTSUPP = 10032, + NFSERR_NO_GRACE = 10033, + NFSERR_RECLAIM_BAD = 10034, + NFSERR_RECLAIM_CONFLICT = 10035, + NFSERR_BAD_XDR = 10036, + NFSERR_LOCKS_HELD = 10037, + NFSERR_OPENMODE = 10038, + NFSERR_BADOWNER = 10039, + NFSERR_BADCHAR = 10040, + NFSERR_BADNAME = 10041, + NFSERR_BAD_RANGE = 10042, + NFSERR_LOCK_NOTSUPP = 10043, + NFSERR_OP_ILLEGAL = 10044, + NFSERR_DEADLOCK = 10045, + NFSERR_FILE_OPEN = 10046, + NFSERR_ADMIN_REVOKED = 10047, + NFSERR_CB_PATH_DOWN = 10048, +}; + +enum nfsstat4 { + NFS4_OK = 0, + NFS4ERR_PERM = 1, + NFS4ERR_NOENT = 2, + NFS4ERR_IO = 5, + NFS4ERR_NXIO = 6, + NFS4ERR_ACCESS = 13, + NFS4ERR_EXIST = 17, + NFS4ERR_XDEV = 18, + NFS4ERR_NOTDIR = 20, + NFS4ERR_ISDIR = 21, + NFS4ERR_INVAL = 22, + NFS4ERR_FBIG = 27, + NFS4ERR_NOSPC = 28, + NFS4ERR_ROFS = 30, + NFS4ERR_MLINK = 31, + NFS4ERR_NAMETOOLONG = 63, + NFS4ERR_NOTEMPTY = 66, + NFS4ERR_DQUOT = 69, + NFS4ERR_STALE = 70, + NFS4ERR_BADHANDLE = 10001, + NFS4ERR_BAD_COOKIE = 10003, + NFS4ERR_NOTSUPP = 10004, + NFS4ERR_TOOSMALL = 10005, + NFS4ERR_SERVERFAULT = 10006, + NFS4ERR_BADTYPE = 10007, + NFS4ERR_DELAY = 10008, + NFS4ERR_SAME = 10009, + NFS4ERR_DENIED = 10010, + NFS4ERR_EXPIRED = 10011, + NFS4ERR_LOCKED = 10012, + NFS4ERR_GRACE = 10013, + NFS4ERR_FHEXPIRED = 10014, + NFS4ERR_SHARE_DENIED = 10015, + NFS4ERR_WRONGSEC = 10016, + NFS4ERR_CLID_INUSE = 10017, + NFS4ERR_RESOURCE = 10018, + NFS4ERR_MOVED = 10019, + NFS4ERR_NOFILEHANDLE = 10020, + NFS4ERR_MINOR_VERS_MISMATCH = 10021, + NFS4ERR_STALE_CLIENTID = 10022, + NFS4ERR_STALE_STATEID = 10023, + NFS4ERR_OLD_STATEID = 10024, + NFS4ERR_BAD_STATEID = 10025, + NFS4ERR_BAD_SEQID = 10026, + NFS4ERR_NOT_SAME = 10027, + NFS4ERR_LOCK_RANGE = 10028, + NFS4ERR_SYMLINK = 10029, + NFS4ERR_RESTOREFH = 10030, + NFS4ERR_LEASE_MOVED = 10031, + NFS4ERR_ATTRNOTSUPP = 10032, + NFS4ERR_NO_GRACE = 10033, + NFS4ERR_RECLAIM_BAD = 10034, + NFS4ERR_RECLAIM_CONFLICT = 10035, + NFS4ERR_BADXDR = 10036, + NFS4ERR_LOCKS_HELD = 10037, + NFS4ERR_OPENMODE = 10038, + NFS4ERR_BADOWNER = 10039, + NFS4ERR_BADCHAR = 10040, + NFS4ERR_BADNAME = 10041, + NFS4ERR_BAD_RANGE = 10042, + NFS4ERR_LOCK_NOTSUPP = 10043, + NFS4ERR_OP_ILLEGAL = 10044, + NFS4ERR_DEADLOCK = 10045, + NFS4ERR_FILE_OPEN = 10046, + NFS4ERR_ADMIN_REVOKED = 10047, + NFS4ERR_CB_PATH_DOWN = 10048, + NFS4ERR_BADIOMODE = 10049, + NFS4ERR_BADLAYOUT = 10050, + NFS4ERR_BAD_SESSION_DIGEST = 10051, + NFS4ERR_BADSESSION = 10052, + NFS4ERR_BADSLOT = 10053, + NFS4ERR_COMPLETE_ALREADY = 10054, + NFS4ERR_CONN_NOT_BOUND_TO_SESSION = 10055, + NFS4ERR_DELEG_ALREADY_WANTED = 10056, + NFS4ERR_BACK_CHAN_BUSY = 10057, + NFS4ERR_LAYOUTTRYLATER = 10058, + NFS4ERR_LAYOUTUNAVAILABLE = 10059, + NFS4ERR_NOMATCHING_LAYOUT = 10060, + NFS4ERR_RECALLCONFLICT = 10061, + NFS4ERR_UNKNOWN_LAYOUTTYPE = 10062, + NFS4ERR_SEQ_MISORDERED = 10063, + NFS4ERR_SEQUENCE_POS = 10064, + NFS4ERR_REQ_TOO_BIG = 10065, + NFS4ERR_REP_TOO_BIG = 10066, + NFS4ERR_REP_TOO_BIG_TO_CACHE = 10067, + NFS4ERR_RETRY_UNCACHED_REP = 10068, + NFS4ERR_UNSAFE_COMPOUND = 10069, + NFS4ERR_TOO_MANY_OPS = 10070, + NFS4ERR_OP_NOT_IN_SESSION = 10071, + NFS4ERR_HASH_ALG_UNSUPP = 10072, + NFS4ERR_CLIENTID_BUSY = 10074, + NFS4ERR_PNFS_IO_HOLE = 10075, + NFS4ERR_SEQ_FALSE_RETRY = 10076, + NFS4ERR_BAD_HIGH_SLOT = 10077, + NFS4ERR_DEADSESSION = 10078, + NFS4ERR_ENCR_ALG_UNSUPP = 10079, + NFS4ERR_PNFS_NO_LAYOUT = 10080, + NFS4ERR_NOT_ONLY_OP = 10081, + NFS4ERR_WRONG_CRED = 10082, + NFS4ERR_WRONG_TYPE = 10083, + NFS4ERR_DIRDELEG_UNAVAIL = 10084, + NFS4ERR_REJECT_DELEG = 10085, + NFS4ERR_RETURNCONFLICT = 10086, + NFS4ERR_DELEG_REVOKED = 10087, + NFS4ERR_PARTNER_NOTSUPP = 10088, + NFS4ERR_PARTNER_NO_AUTH = 10089, + NFS4ERR_UNION_NOTSUPP = 10090, + NFS4ERR_OFFLOAD_DENIED = 10091, + NFS4ERR_WRONG_LFS = 10092, + NFS4ERR_BADLABEL = 10093, + NFS4ERR_OFFLOAD_NO_REQS = 10094, + NFS4ERR_NOXATTR = 10095, + NFS4ERR_XATTR2BIG = 10096, + NFS4ERR_FIRST_FREE = 10097, +}; + +enum { + COREDUMP_KERNEL = 1, + COREDUMP_USERSPACE = 2, + COREDUMP_REJECT = 4, + COREDUMP_WAIT = 8, +}; + +struct coredump_req { + __u32 size; + __u32 size_ack; + __u64 mask; +}; + +struct coredump_ack { + __u32 size; + __u32 spare; + __u64 mask; +}; + +enum { + COREDUMP_ACK_SIZE_VER0 = 16, +}; + +enum coredump_mark { + COREDUMP_MARK_REQACK = 0, + COREDUMP_MARK_MINSIZE = 1, + COREDUMP_MARK_MAXSIZE = 2, + COREDUMP_MARK_UNSUPPORTED = 3, + COREDUMP_MARK_CONFLICTING = 4, + __COREDUMP_MARK_MAX = 2147483648, +}; + +enum coredump_type_t { + COREDUMP_FILE = 1, + COREDUMP_PIPE = 2, + COREDUMP_SOCK = 3, + COREDUMP_SOCK_REQ = 4, +}; + +struct core_name { + char *corename; + int used; + int size; + unsigned int core_pipe_limit; + bool core_dumped; + enum coredump_type_t core_type; + u64 mask; +}; + +typedef void (*iomap_punch_t)(struct inode *, loff_t, loff_t, struct iomap *); + +struct iomap_writepage_ctx; + +struct iomap_writeback_ops { + ssize_t (*writeback_range)(struct iomap_writepage_ctx *, struct folio *, u64, unsigned int, u64); + int (*writeback_submit)(struct iomap_writepage_ctx *, int); +}; + +struct iomap_writepage_ctx { + struct iomap iomap; + struct inode *inode; + struct writeback_control *wbc; + const struct iomap_writeback_ops *ops; + u32 nr_folios; + void *wb_ctx; +}; + +struct iomap_folio_state { + spinlock_t state_lock; + unsigned int read_bytes_pending; + atomic_t write_bytes_pending; + long unsigned int state[0]; +}; + +struct iomap_readpage_ctx { + struct folio *cur_folio; + bool cur_folio_in_bio; + struct bio *bio; + struct readahead_control *rac; +}; + +struct fs_disk_quota { + __s8 d_version; + __s8 d_flags; + __u16 d_fieldmask; + __u32 d_id; + __u64 d_blk_hardlimit; + __u64 d_blk_softlimit; + __u64 d_ino_hardlimit; + __u64 d_ino_softlimit; + __u64 d_bcount; + __u64 d_icount; + __s32 d_itimer; + __s32 d_btimer; + __u16 d_iwarns; + __u16 d_bwarns; + __s8 d_itimer_hi; + __s8 d_btimer_hi; + __s8 d_rtbtimer_hi; + __s8 d_padding2; + __u64 d_rtb_hardlimit; + __u64 d_rtb_softlimit; + __u64 d_rtbcount; + __s32 d_rtbtimer; + __u16 d_rtbwarns; + __s16 d_padding3; + char d_padding4[8]; +}; + +struct fs_qfilestat { + __u64 qfs_ino; + __u64 qfs_nblks; + __u32 qfs_nextents; +}; + +typedef struct fs_qfilestat fs_qfilestat_t; + +struct fs_quota_stat { + __s8 qs_version; + __u16 qs_flags; + __s8 qs_pad; + fs_qfilestat_t qs_uquota; + fs_qfilestat_t qs_gquota; + __u32 qs_incoredqs; + __s32 qs_btimelimit; + __s32 qs_itimelimit; + __s32 qs_rtbtimelimit; + __u16 qs_bwarnlimit; + __u16 qs_iwarnlimit; +}; + +struct fs_qfilestatv { + __u64 qfs_ino; + __u64 qfs_nblks; + __u32 qfs_nextents; + __u32 qfs_pad; +}; + +struct fs_quota_statv { + __s8 qs_version; + __u8 qs_pad1; + __u16 qs_flags; + __u32 qs_incoredqs; + struct fs_qfilestatv qs_uquota; + struct fs_qfilestatv qs_gquota; + struct fs_qfilestatv qs_pquota; + __s32 qs_btimelimit; + __s32 qs_itimelimit; + __s32 qs_rtbtimelimit; + __u16 qs_bwarnlimit; + __u16 qs_iwarnlimit; + __u16 qs_rtbwarnlimit; + __u16 qs_pad3; + __u32 qs_pad4; + __u64 qs_pad2[7]; +}; + +struct if_dqblk { + __u64 dqb_bhardlimit; + __u64 dqb_bsoftlimit; + __u64 dqb_curspace; + __u64 dqb_ihardlimit; + __u64 dqb_isoftlimit; + __u64 dqb_curinodes; + __u64 dqb_btime; + __u64 dqb_itime; + __u32 dqb_valid; +}; + +struct if_nextdqblk { + __u64 dqb_bhardlimit; + __u64 dqb_bsoftlimit; + __u64 dqb_curspace; + __u64 dqb_ihardlimit; + __u64 dqb_isoftlimit; + __u64 dqb_curinodes; + __u64 dqb_btime; + __u64 dqb_itime; + __u32 dqb_valid; + __u32 dqb_id; +}; + +struct if_dqinfo { + __u64 dqi_bgrace; + __u64 dqi_igrace; + __u32 dqi_flags; + __u32 dqi_valid; +}; + +struct compat_if_dqblk { + compat_u64 dqb_bhardlimit; + compat_u64 dqb_bsoftlimit; + compat_u64 dqb_curspace; + compat_u64 dqb_ihardlimit; + compat_u64 dqb_isoftlimit; + compat_u64 dqb_curinodes; + compat_u64 dqb_btime; + compat_u64 dqb_itime; + compat_uint_t dqb_valid; +} __attribute__((packed)); + +struct compat_fs_qfilestat { + compat_u64 dqb_bhardlimit; + compat_u64 qfs_nblks; + compat_uint_t qfs_nextents; +} __attribute__((packed)); + +struct compat_fs_quota_stat { + __s8 qs_version; + __u16 qs_flags; + __s8 qs_pad; + long: 0; + struct compat_fs_qfilestat qs_uquota; + struct compat_fs_qfilestat qs_gquota; + compat_uint_t qs_incoredqs; + compat_int_t qs_btimelimit; + compat_int_t qs_itimelimit; + compat_int_t qs_rtbtimelimit; + __u16 qs_bwarnlimit; + __u16 qs_iwarnlimit; +}; + +struct pde_opener { + struct list_head lh; + struct file *file; + bool closing; + struct completion *c; +}; + +enum { + BIAS = 2147483648, +}; + +typedef struct dentry *instantiate_t(struct dentry *, struct task_struct *, const void *); + +struct fd_data { + fmode_t mode; + unsigned int fd; +}; + +struct elf_prpsinfo { + char pr_state; + char pr_sname; + char pr_zomb; + char pr_nice; + long unsigned int pr_flag; + __kernel_uid_t pr_uid; + __kernel_gid_t pr_gid; + pid_t pr_pid; + pid_t pr_ppid; + pid_t pr_pgrp; + pid_t pr_sid; + char pr_fname[16]; + char pr_psargs[80]; +}; + +struct kernfs_open_node { + struct callback_head callback_head; + atomic_t event; + wait_queue_head_t poll; + struct list_head files; + unsigned int nr_mmapped; + unsigned int nr_to_release; +}; + +enum SHIFT_DIRECTION { + SHIFT_LEFT = 0, + SHIFT_RIGHT = 1, +}; + +struct ext4_io_end_vec { + struct list_head list; + loff_t offset; + ssize_t size; +}; + +struct ext4_io_end { + struct list_head list; + handle_t *handle; + struct inode *inode; + struct bio *bio; + unsigned int flag; + refcount_t count; + struct list_head list_vec; +}; + +typedef struct ext4_io_end ext4_io_end_t; + +struct ext4_extent_tail { + __le32 et_checksum; +}; + +struct partial_cluster { + ext4_fsblk_t pclu; + ext4_lblk_t lblk; + enum { + initial = 0, + tofree = 1, + nofree = 2, + } state; +}; + +typedef short unsigned int __kernel_uid16_t; + +typedef short unsigned int __kernel_gid16_t; + +typedef __kernel_uid16_t uid16_t; + +typedef __kernel_gid16_t gid16_t; + +struct ext4_io_submit { + struct writeback_control *io_wbc; + struct bio *io_bio; + ext4_io_end_t *io_end; + sector_t io_next_block; +}; + +struct ext4_xattr_inode_array { + unsigned int count; + struct inode *inodes[0]; +}; + +struct mpage_da_data { + struct inode *inode; + struct writeback_control *wbc; + unsigned int can_map: 1; + loff_t start_pos; + loff_t next_pos; + loff_t end_pos; + struct ext4_map_blocks map; + struct ext4_io_submit io_submit; + unsigned int do_map: 1; + unsigned int scanned_until_end: 1; + unsigned int journalled_more_data: 1; +}; + +struct ext4_dir_entry { + __le32 inode; + __le16 rec_len; + __le16 name_len; + char name[255]; +}; + +struct ext4_dir_entry_tail { + __le32 det_reserved_zero1; + __le16 det_rec_len; + __u8 det_reserved_zero2; + __u8 det_reserved_ft; + __le32 det_checksum; +}; + +typedef enum { + EITHER = 0, + INDEX = 1, + DIRENT = 2, + DIRENT_HTREE = 3, +} dirblock_type_t; + +struct fake_dirent { + __le32 inode; + __le16 rec_len; + u8 name_len; + u8 file_type; +}; + +struct dx_countlimit { + __le16 limit; + __le16 count; +}; + +struct dx_entry { + __le32 hash; + __le32 block; +}; + +struct dx_root_info { + __le32 reserved_zero; + u8 hash_version; + u8 info_length; + u8 indirect_levels; + u8 unused_flags; +}; + +struct dx_root { + struct fake_dirent dot; + char dot_name[4]; + struct fake_dirent dotdot; + char dotdot_name[4]; + struct dx_root_info info; + struct dx_entry entries[0]; +}; + +struct dx_node { + struct fake_dirent fake; + struct dx_entry entries[0]; +}; + +struct dx_frame { + struct buffer_head *bh; + struct dx_entry *entries; + struct dx_entry *at; +}; + +struct dx_map_entry { + u32 hash; + u16 offs; + u16 size; +}; + +struct dx_tail { + u32 dt_reserved; + __le32 dt_checksum; +}; + +struct ext4_renament { + struct inode *dir; + struct dentry *dentry; + struct inode *inode; + bool is_dir; + int dir_nlink_delta; + struct buffer_head *bh; + struct ext4_dir_entry_2 *de; + int inlined; + struct buffer_head *dir_bh; + struct ext4_dir_entry_2 *parent_de; + int dir_inlined; +}; + +enum { + MBE_REFERENCED_B = 0, + MBE_REUSABLE_B = 1, +}; + +struct mb_cache_entry { + struct list_head e_list; + struct hlist_bl_node e_hash_list; + atomic_t e_refcnt; + u32 e_key; + long unsigned int e_flags; + u64 e_value; +}; + +struct ext4_xattr_header { + __le32 h_magic; + __le32 h_refcount; + __le32 h_blocks; + __le32 h_hash; + __le32 h_checksum; + __u32 h_reserved[3]; +}; + +struct ext4_xattr_block_find { + struct ext4_xattr_search s; + struct buffer_head *bh; +}; + +struct ext4_orphan_block_tail { + __le32 ob_magic; + __le32 ob_checksum; +}; + +struct squashfs_stream___2 { + void *comp_opts; + struct list_head strm_list; + struct mutex mutex; + int avail_decomp; + wait_queue_head_t wait; +}; + +struct decomp_stream { + void *stream; + struct list_head list; +}; + +struct lz4_comp_opts { + __le32 version; + __le32 flags; +}; + +struct squashfs_lz4 { + void *input; + void *output; +}; + +struct workspace { + void *mem; + size_t mem_size; + size_t window_size; +}; + +struct fat_cache { + struct list_head cache_list; + int nr_contig; + int fcluster; + int dcluster; +}; + +struct fat_cache_id { + unsigned int id; + int nr_contig; + int fcluster; + int dcluster; +}; + +struct fat_boot_fsinfo { + __le32 signature1; + __le32 reserved1[120]; + __le32 signature2; + __le32 free_clusters; + __le32 next_cluster; + __le32 reserved2[4]; +}; + +struct fat_bios_param_block { + u16 fat_sector_size; + u8 fat_sec_per_clus; + u16 fat_reserved; + u8 fat_fats; + u16 fat_dir_entries; + u16 fat_sectors; + u16 fat_fat_length; + u32 fat_total_sect; + u8 fat16_state; + u32 fat16_vol_id; + u32 fat32_length; + u32 fat32_root_cluster; + u16 fat32_info_sector; + u8 fat32_state; + u32 fat32_vol_id; +}; + +struct fat_floppy_defaults { + unsigned int nr_sectors; + unsigned int sec_per_clus; + unsigned int dir_entries; + unsigned int media; + unsigned int fat_length; +}; + +enum { + Opt_check = 0, + Opt_uid___6 = 1, + Opt_gid___7 = 2, + Opt_umask = 3, + Opt_dmask = 4, + Opt_fmask = 5, + Opt_allow_utime = 6, + Opt_codepage = 7, + Opt_usefree = 8, + Opt_nocase = 9, + Opt_quiet = 10, + Opt_showexec = 11, + Opt_debug = 12, + Opt_immutable = 13, + Opt_dots = 14, + Opt_dotsOK = 15, + Opt_charset = 16, + Opt_shortname = 17, + Opt_utf8 = 18, + Opt_utf8_bool = 19, + Opt_uni_xl = 20, + Opt_uni_xl_bool = 21, + Opt_nonumtail = 22, + Opt_nonumtail_bool = 23, + Opt_obsolete = 24, + Opt_flush = 25, + Opt_tz = 26, + Opt_rodir = 27, + Opt_errors = 28, + Opt_discard = 29, + Opt_nfs = 30, + Opt_nfs_enum = 31, + Opt_time_offset = 32, + Opt_dos1xfloppy = 33, +}; + +struct ecryptfs_getdents_callback { + struct dir_context ctx; + struct dir_context *caller; + struct super_block *sb; + int filldir_called; + int entries_written; +}; + +struct ecryptfs_key_sig { + struct list_head crypt_stat_list; + char keysig[17]; +}; + +struct ecryptfs_filename { + struct list_head crypt_stat_list; + u32 flags; + u32 seq_no; + char *filename; + char *encrypted_filename; + size_t filename_size; + size_t encrypted_filename_size; + char fnek_sig[16]; + char dentry_name[57]; +}; + +struct ecryptfs_key_tfm { + struct crypto_skcipher *key_tfm; + size_t key_size; + struct mutex key_tfm_mutex; + struct list_head key_tfm_list; + unsigned char cipher_name[32]; +}; + +struct ecryptfs_flag_map_elem { + u32 file_flag; + u32 local_flag; +}; + +struct ecryptfs_cipher_code_str_map_elem { + char cipher_str[16]; + u8 cipher_code; +}; + +typedef u32 unicode_t; + +struct utf8_table { + int cmask; + int cval; + int shift; + long int lmask; + long int lval; +}; + +enum fuse_ext_type { + FUSE_MAX_NR_SECCTX = 31, + FUSE_EXT_GROUPS = 32, +}; + +struct fuse_getattr_in { + uint32_t getattr_flags; + uint32_t dummy; + uint64_t fh; +}; + +struct fuse_attr_out { + uint64_t attr_valid; + uint32_t attr_valid_nsec; + uint32_t dummy; + struct fuse_attr attr; +}; + +struct fuse_statx_in { + uint32_t getattr_flags; + uint32_t reserved; + uint64_t fh; + uint32_t sx_flags; + uint32_t sx_mask; +}; + +struct fuse_statx_out { + uint64_t attr_valid; + uint32_t attr_valid_nsec; + uint32_t flags; + uint64_t spare[2]; + struct fuse_statx stat; +}; + +struct fuse_mknod_in { + uint32_t mode; + uint32_t rdev; + uint32_t umask; + uint32_t padding; +}; + +struct fuse_mkdir_in { + uint32_t mode; + uint32_t umask; +}; + +struct fuse_rename2_in { + uint64_t newdir; + uint32_t flags; + uint32_t padding; +}; + +struct fuse_link_in { + uint64_t oldnodeid; +}; + +struct fuse_setattr_in { + uint32_t valid; + uint32_t padding; + uint64_t fh; + uint64_t size; + uint64_t lock_owner; + uint64_t atime; + uint64_t mtime; + uint64_t ctime; + uint32_t atimensec; + uint32_t mtimensec; + uint32_t ctimensec; + uint32_t mode; + uint32_t unused4; + uint32_t uid; + uint32_t gid; + uint32_t unused5; +}; + +struct fuse_create_in { + uint32_t flags; + uint32_t mode; + uint32_t umask; + uint32_t open_flags; +}; + +struct fuse_access_in { + uint32_t mask; + uint32_t padding; +}; + +struct fuse_secctx { + uint32_t size; + uint32_t padding; +}; + +struct fuse_secctx_header { + uint32_t size; + uint32_t nr_secctx; +}; + +struct fuse_ext_header { + uint32_t size; + uint32_t type; +}; + +struct fuse_supp_groups { + uint32_t nr_groups; + uint32_t groups[0]; +}; + +struct fuse_setupmapping_in { + uint64_t fh; + uint64_t foffset; + uint64_t len; + uint64_t flags; + uint64_t moffset; +}; + +struct fuse_removemapping_in { + uint32_t count; +}; + +struct fuse_removemapping_one { + uint64_t moffset; + uint64_t len; +}; + +struct fuse_inode_dax { + struct rw_semaphore sem; + struct rb_root_cached tree; + long unsigned int nr; +}; + +struct fuse_conn_dax { + struct dax_device *dev; + spinlock_t lock; + long unsigned int nr_busy_ranges; + struct list_head busy_ranges; + struct delayed_work free_work; + wait_queue_head_t range_waitq; + long int nr_free_ranges; + struct list_head free_ranges; + long unsigned int nr_ranges; +}; + +struct fuse_dax_mapping { + struct inode *inode; + struct list_head list; + struct interval_tree_node itn; + struct list_head busy_list; + u64 window_offset; + loff_t length; + bool writable; + refcount_t refcnt; +}; + +enum { + HAS_READ = 1, + HAS_WRITE = 2, + HAS_LSEEK = 4, + HAS_POLL = 8, + HAS_IOCTL = 16, +}; + +enum dbgfs_get_mode { + DBGFS_GET_ALREADY = 0, + DBGFS_GET_REGULAR = 1, + DBGFS_GET_SHORT = 2, +}; + +struct debugfs_devm_entry { + int (*read)(struct seq_file *, void *); + struct device *dev; +}; + +struct rdt_fs_context { + struct kernfs_fs_context kfc; + bool enable_cdpl2; + bool enable_cdpl3; + bool enable_mba_mbps; + bool enable_debug; +}; + +struct rftype { + char *name; + umode_t mode; + const struct kernfs_ops *kf_ops; + long unsigned int flags; + long unsigned int fflags; + int (*seq_show)(struct kernfs_open_file *, struct seq_file *, void *); + ssize_t (*write)(struct kernfs_open_file *, char *, size_t, loff_t); +}; + +enum rdt_param { + Opt_cdp = 0, + Opt_cdpl2 = 1, + Opt_mba_mbps = 2, + Opt_debug___2 = 3, + nr__rdt_params = 4, +}; + +struct msg_msgseg { + struct msg_msgseg *next; +}; + +struct compat_shmid64_ds { + struct compat_ipc64_perm shm_perm; + compat_size_t shm_segsz; + compat_ulong_t shm_atime; + compat_ulong_t shm_atime_high; + compat_ulong_t shm_dtime; + compat_ulong_t shm_dtime_high; + compat_ulong_t shm_ctime; + compat_ulong_t shm_ctime_high; + compat_pid_t shm_cpid; + compat_pid_t shm_lpid; + compat_ulong_t shm_nattch; + compat_ulong_t __unused4; + compat_ulong_t __unused5; +}; + +struct shmid_ds { + struct ipc_perm shm_perm; + int shm_segsz; + __kernel_old_time_t shm_atime; + __kernel_old_time_t shm_dtime; + __kernel_old_time_t shm_ctime; + __kernel_ipc_pid_t shm_cpid; + __kernel_ipc_pid_t shm_lpid; + short unsigned int shm_nattch; + short unsigned int shm_unused; + void *shm_unused2; + void *shm_unused3; +}; + +struct shmid64_ds { + struct ipc64_perm shm_perm; + __kernel_size_t shm_segsz; + long int shm_atime; + long int shm_dtime; + long int shm_ctime; + __kernel_pid_t shm_cpid; + __kernel_pid_t shm_lpid; + long unsigned int shm_nattch; + long unsigned int __unused4; + long unsigned int __unused5; +}; + +struct shminfo64 { + long unsigned int shmmax; + long unsigned int shmmin; + long unsigned int shmmni; + long unsigned int shmseg; + long unsigned int shmall; + long unsigned int __unused1; + long unsigned int __unused2; + long unsigned int __unused3; + long unsigned int __unused4; +}; + +struct shminfo { + int shmmax; + int shmmin; + int shmmni; + int shmseg; + int shmall; +}; + +struct shm_info { + int used_ids; + __kernel_ulong_t shm_tot; + __kernel_ulong_t shm_rss; + __kernel_ulong_t shm_swp; + __kernel_ulong_t swap_attempts; + __kernel_ulong_t swap_successes; +}; + +struct shmid_kernel { + struct kern_ipc_perm shm_perm; + struct file *shm_file; + long unsigned int shm_nattch; + long unsigned int shm_segsz; + time64_t shm_atim; + time64_t shm_dtim; + time64_t shm_ctim; + struct pid *shm_cprid; + struct pid *shm_lprid; + struct ucounts *mlock_ucounts; + struct task_struct *shm_creator; + struct list_head shm_clist; + struct ipc_namespace *ns; + long: 64; + long: 64; + long: 64; +}; + +struct shm_file_data { + int id; + struct ipc_namespace *ns; + struct file *file; + const struct vm_operations_struct *vm_ops; +}; + +struct compat_shmid_ds { + struct compat_ipc_perm shm_perm; + int shm_segsz; + old_time32_t shm_atime; + old_time32_t shm_dtime; + old_time32_t shm_ctime; + compat_ipc_pid_t shm_cpid; + compat_ipc_pid_t shm_lpid; + short unsigned int shm_nattch; + short unsigned int shm_unused; + compat_uptr_t shm_unused2; + compat_uptr_t shm_unused3; +}; + +struct compat_shminfo64 { + compat_ulong_t shmmax; + compat_ulong_t shmmin; + compat_ulong_t shmmni; + compat_ulong_t shmseg; + compat_ulong_t shmall; + compat_ulong_t __unused1; + compat_ulong_t __unused2; + compat_ulong_t __unused3; + compat_ulong_t __unused4; +}; + +struct compat_shm_info { + compat_int_t used_ids; + compat_ulong_t shm_tot; + compat_ulong_t shm_rss; + compat_ulong_t shm_swp; + compat_ulong_t swap_attempts; + compat_ulong_t swap_successes; +}; + +enum { + Opt_err___5 = 0, + Opt_enc = 1, + Opt_hash___2 = 2, +}; + +enum tpm_algorithms { + TPM_ALG_ERROR = 0, + TPM_ALG_SHA1 = 4, + TPM_ALG_AES = 6, + TPM_ALG_KEYEDHASH = 8, + TPM_ALG_SHA256 = 11, + TPM_ALG_SHA384 = 12, + TPM_ALG_SHA512 = 13, + TPM_ALG_NULL = 16, + TPM_ALG_SM3_256 = 18, + TPM_ALG_ECC = 35, + TPM_ALG_CFB = 67, +}; + +enum tpm2_object_attributes { + TPM2_OA_FIXED_TPM = 2, + TPM2_OA_ST_CLEAR = 4, + TPM2_OA_FIXED_PARENT = 16, + TPM2_OA_SENSITIVE_DATA_ORIGIN = 32, + TPM2_OA_USER_WITH_AUTH = 64, + TPM2_OA_ADMIN_WITH_POLICY = 128, + TPM2_OA_NO_DA = 1024, + TPM2_OA_ENCRYPTED_DUPLICATION = 2048, + TPM2_OA_RESTRICTED = 65536, + TPM2_OA_DECRYPT = 131072, + TPM2_OA_SIGN = 262144, +}; + +enum tpm2_session_attributes { + TPM2_SA_CONTINUE_SESSION = 1, + TPM2_SA_AUDIT_EXCLUSIVE = 2, + TPM2_SA_AUDIT_RESET = 8, + TPM2_SA_DECRYPT = 32, + TPM2_SA_ENCRYPT = 64, + TPM2_SA_AUDIT = 128, +}; + +struct tpm2_hash { + unsigned int crypto_id; + unsigned int tpm_id; +}; + +struct trusted_key_options { + uint16_t keytype; + uint32_t keyhandle; + unsigned char keyauth[20]; + uint32_t blobauth_len; + unsigned char blobauth[20]; + uint32_t pcrinfo_len; + unsigned char pcrinfo[64]; + int pcrlock; + uint32_t hash; + uint32_t policydigest_len; + unsigned char policydigest[64]; + uint32_t policyhandle; +}; + +struct tpm2_key_context { + u32 parent; + const u8 *pub; + u32 pub_len; + const u8 *priv; + u32 priv_len; +}; + +enum { + SELNL_MSG_SETENFORCE = 16, + SELNL_MSG_POLICYLOAD = 17, + SELNL_MSG_MAX = 18, +}; + +enum selinux_nlgroups { + SELNLGRP_NONE = 0, + SELNLGRP_AVC = 1, + __SELNLGRP_MAX = 2, +}; + +struct selnl_msg_setenforce { + __s32 val; +}; + +struct selnl_msg_policyload { + __u32 seqno; +}; + +struct netif_security_struct { + const struct net *ns; + int ifindex; + u32 sid; +}; + +struct sel_netif { + struct list_head list; + struct netif_security_struct nsec; + struct callback_head callback_head; +}; + +struct sidtab_str_cache { + struct callback_head rcu_member; + struct list_head lru_member; + struct sidtab_entry *parent; + u32 len; + char str[0]; +}; + +struct selinux_mapping; + +struct selinux_map { + struct selinux_mapping *mapping; + u16 size; +}; + +struct selinux_policy { + struct sidtab *sidtab; + struct policydb policydb; + struct selinux_map map; + u32 latest_granting; +}; + +struct selinux_policy_convert_data { + struct convert_context_args args; + struct sidtab_convert_params sidtab_params; +}; + +struct selinux_mapping { + u16 value; + u16 num_perms; + u32 perms[32]; +}; + +struct superblock_security_struct { + u32 sid; + u32 def_sid; + u32 mntpoint_sid; + short unsigned int behavior; + short unsigned int flags; + struct mutex lock; + struct list_head isec_head; + spinlock_t isec_lock; +}; + +enum sctp_msg_flags { + MSG_NOTIFICATION = 32768, +}; + +enum sctp_cid { + SCTP_CID_DATA = 0, + SCTP_CID_INIT = 1, + SCTP_CID_INIT_ACK = 2, + SCTP_CID_SACK = 3, + SCTP_CID_HEARTBEAT = 4, + SCTP_CID_HEARTBEAT_ACK = 5, + SCTP_CID_ABORT = 6, + SCTP_CID_SHUTDOWN = 7, + SCTP_CID_SHUTDOWN_ACK = 8, + SCTP_CID_ERROR = 9, + SCTP_CID_COOKIE_ECHO = 10, + SCTP_CID_COOKIE_ACK = 11, + SCTP_CID_ECN_ECNE = 12, + SCTP_CID_ECN_CWR = 13, + SCTP_CID_SHUTDOWN_COMPLETE = 14, + SCTP_CID_AUTH = 15, + SCTP_CID_I_DATA = 64, + SCTP_CID_FWD_TSN = 192, + SCTP_CID_ASCONF = 193, + SCTP_CID_I_FWD_TSN = 194, + SCTP_CID_ASCONF_ACK = 128, + SCTP_CID_RECONF = 130, + SCTP_CID_PAD = 132, +}; + +enum { + SCTP_MAX_STREAM = 65535, +}; + +enum sctp_event_timeout { + SCTP_EVENT_TIMEOUT_NONE = 0, + SCTP_EVENT_TIMEOUT_T1_COOKIE = 1, + SCTP_EVENT_TIMEOUT_T1_INIT = 2, + SCTP_EVENT_TIMEOUT_T2_SHUTDOWN = 3, + SCTP_EVENT_TIMEOUT_T3_RTX = 4, + SCTP_EVENT_TIMEOUT_T4_RTO = 5, + SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD = 6, + SCTP_EVENT_TIMEOUT_HEARTBEAT = 7, + SCTP_EVENT_TIMEOUT_RECONF = 8, + SCTP_EVENT_TIMEOUT_PROBE = 9, + SCTP_EVENT_TIMEOUT_SACK = 10, + SCTP_EVENT_TIMEOUT_AUTOCLOSE = 11, +}; + +enum { + SCTP_MAX_DUP_TSNS = 16, +}; + +enum { + SCTP_AUTH_HMAC_ID_RESERVED_0 = 0, + SCTP_AUTH_HMAC_ID_SHA1 = 1, + SCTP_AUTH_HMAC_ID_RESERVED_2 = 2, + SCTP_AUTH_HMAC_ID_SHA256 = 3, + __SCTP_AUTH_HMAC_MAX = 4, +}; + +struct selinux_audit_rule { + u32 au_seqno; + struct context au_ctxt; +}; + +struct pkey_security_struct { + u64 subnet_prefix; + u16 pkey; + u32 sid; +}; + +struct sel_ib_pkey_bkt { + int size; + struct list_head list; +}; + +struct sel_ib_pkey { + struct pkey_security_struct psec; + struct list_head list; + struct callback_head rcu; +}; + +struct socket_smack { + struct smack_known *smk_out; + struct smack_known *smk_in; + struct smack_known *smk_packet; + int smk_state; +}; + +enum tomoyo_securityfs_interface_index { + TOMOYO_DOMAINPOLICY = 0, + TOMOYO_EXCEPTIONPOLICY = 1, + TOMOYO_PROCESS_STATUS = 2, + TOMOYO_STAT = 3, + TOMOYO_AUDIT = 4, + TOMOYO_VERSION = 5, + TOMOYO_PROFILE = 6, + TOMOYO_QUERY = 7, + TOMOYO_MANAGER = 8, +}; + +struct tomoyo_task_acl { + struct tomoyo_acl_info head; + const struct tomoyo_path_info *domainname; +}; + +struct tomoyo_path_number_acl { + struct tomoyo_acl_info head; + u8 perm; + struct tomoyo_name_union name; + struct tomoyo_number_union number; +}; + +struct tomoyo_mkdev_acl { + struct tomoyo_acl_info head; + u8 perm; + struct tomoyo_name_union name; + struct tomoyo_number_union mode; + struct tomoyo_number_union major; + struct tomoyo_number_union minor; +}; + +struct tomoyo_path2_acl { + struct tomoyo_acl_info head; + u8 perm; + struct tomoyo_name_union name1; + struct tomoyo_name_union name2; +}; + +struct tomoyo_mount_acl { + struct tomoyo_acl_info head; + struct tomoyo_name_union dev_name; + struct tomoyo_name_union dir_name; + struct tomoyo_name_union fs_type; + struct tomoyo_number_union flags; +}; + +struct tomoyo_inet_acl { + struct tomoyo_acl_info head; + u8 protocol; + u8 perm; + struct tomoyo_ipaddr_union address; + struct tomoyo_number_union port; +}; + +struct tomoyo_unix_acl { + struct tomoyo_acl_info head; + u8 protocol; + u8 perm; + struct tomoyo_name_union name; +}; + +struct tomoyo_io_buffer { + void (*read)(struct tomoyo_io_buffer *); + int (*write)(struct tomoyo_io_buffer *); + __poll_t (*poll)(struct file *, poll_table *); + struct mutex io_sem; + char *read_user_buf; + size_t read_user_buf_avail; + struct { + struct list_head *ns; + struct list_head *domain; + struct list_head *group; + struct list_head *acl; + size_t avail; + unsigned int step; + unsigned int query_index; + u16 index; + u16 cond_index; + u8 acl_group_index; + u8 cond_step; + u8 bit; + u8 w_pos; + bool eof; + bool print_this_domain_only; + bool print_transition_related_only; + bool print_cond_part; + const char *w[64]; + } r; + struct { + struct tomoyo_policy_namespace *ns; + struct tomoyo_domain_info *domain; + size_t avail; + bool is_delete; + } w; + char *read_buf; + size_t readbuf_size; + char *write_buf; + size_t writebuf_size; + enum tomoyo_securityfs_interface_index type; + u8 users; + struct list_head list; +}; + +struct tomoyo_manager { + struct tomoyo_acl_head head; + const struct tomoyo_path_info *manager; +}; + +struct tomoyo_time { + u16 year; + u8 month; + u8 day; + u8 hour; + u8 min; + u8 sec; +}; + +struct tomoyo_query { + struct list_head list; + struct tomoyo_domain_info *domain; + char *query; + size_t query_len; + unsigned int serial; + u8 timer; + u8 answer; + u8 retry; +}; + +enum tomoyo_special_mount { + TOMOYO_MOUNT_BIND = 0, + TOMOYO_MOUNT_MOVE = 1, + TOMOYO_MOUNT_REMOUNT = 2, + TOMOYO_MOUNT_MAKE_UNBINDABLE = 3, + TOMOYO_MOUNT_MAKE_PRIVATE = 4, + TOMOYO_MOUNT_MAKE_SLAVE = 5, + TOMOYO_MOUNT_MAKE_SHARED = 6, + TOMOYO_MAX_SPECIAL_MOUNT = 7, +}; + +struct aa_audit_rule { + struct aa_label *label; +}; + +struct apparmor_notif_op { + struct apparmor_notif base; + __u32 allow; + __u32 deny; + pid_t pid; + __u32 label; + __u16 class; + __u16 op; +}; + +struct apparmor_tags_header_v5 { + __u32 mask; + __u32 count; + __u32 tagset; +}; + +struct apparmor_notif_file { + struct apparmor_notif_op base; + uid_t subj_uid; + uid_t obj_uid; + __u32 name; + __u8 data[0]; +}; + +struct apparmor_notif_file_v5 { + struct apparmor_notif_op base; + uid_t subj_uid; + uid_t obj_uid; + __u32 name; + __u32 tags; + __u16 tags_count; + __u8 data[0]; +} __attribute__((packed)); + +union apparmor_notif_recv { + struct { + struct apparmor_notif_op base; + uid_t subj_uid; + uid_t obj_uid; + __u32 name; + __u8 data[0]; + }; + struct { + struct apparmor_notif_file file; + } v3; + struct { + struct apparmor_notif_file_v5 file; + } v5; +}; + +union apparmor_notif_register { + struct { + struct apparmor_notif_register_v5 registration; + struct apparmor_notif_resend_v5 resend; + } v5; +}; + +union apparmor_notif_all { + struct apparmor_notif_common common; + struct apparmor_notif base; + struct apparmor_notif_op op; + struct apparmor_notif_file filev3; + struct apparmor_notif_file_v5 file; + union apparmor_notif_filters filter; + union apparmor_notif_recv recv; + union apparmor_notif_resp respnse; + union apparmor_notif_register registration; +}; + +struct landlock_object; + +struct landlock_object_underops { + void (*release)(struct landlock_object * const); +}; + +struct landlock_object { + refcount_t usage; + spinlock_t lock; + void *underobj; + union { + struct callback_head rcu_free; + const struct landlock_object_underops *underops; + }; +}; + +struct landlock_layer { + u16 level; + access_mask_t access; +}; + +union landlock_key { + struct landlock_object *object; + uintptr_t data; +}; + +enum landlock_key_type { + LANDLOCK_KEY_INODE = 1, + LANDLOCK_KEY_NET_PORT = 2, +}; + +struct landlock_id { + union landlock_key key; + const enum landlock_key_type type; +}; + +struct landlock_rule { + struct rb_node node; + union landlock_key key; + u32 num_layers; + struct landlock_layer layers[0]; +}; + +typedef access_mask_t get_access_mask_t(const struct landlock_ruleset * const, const u16); + +typedef struct { + efi_guid_t signature_owner; + u8 signature_data[0]; +} efi_signature_data_t; + +typedef struct { + efi_guid_t signature_type; + u32 signature_list_size; + u32 signature_header_size; + u32 signature_size; + u8 signature_header[0]; +} efi_signature_list_t; + +enum tpm_pcrs { + TPM_PCR0 = 0, + TPM_PCR8 = 8, + TPM_PCR10 = 10, +}; + +struct ima_kexec_hdr { + u16 version; + u16 _reserved0; + u32 _reserved1; + u64 buffer_size; + u64 count; +}; + +enum header_fields { + HDR_PCR = 0, + HDR_DIGEST = 1, + HDR_TEMPLATE_NAME = 2, + HDR_TEMPLATE_DATA = 3, + HDR__LAST = 4, +}; + +struct ima_key_entry { + struct list_head list; + void *payload; + size_t payload_len; + char *keyring_name; +}; + +struct h_misc { + long unsigned int ino; + __u32 generation; + uid_t uid; + gid_t gid; + umode_t mode; +}; + +enum { + SKCIPHER_WALK_SLOW = 1, + SKCIPHER_WALK_COPY = 2, + SKCIPHER_WALK_DIFF = 4, + SKCIPHER_WALK_SLEEP = 8, +}; + +struct aead_geniv_ctx { + spinlock_t lock; + struct crypto_aead *child; + u8 salt[0]; +}; + +struct shash_instance { + void (*free)(struct shash_instance *); + union { + struct { + char head[120]; + struct crypto_instance base; + } s; + struct shash_alg alg; + }; +}; + +struct crypto_shash_spawn { + struct crypto_spawn base; +}; + +struct hkdf_testvec { + const char *test; + const u8 *ikm; + const u8 *salt; + const u8 *info; + const u8 *prk; + const u8 *okm; + u16 ikm_size; + u16 salt_size; + u16 info_size; + u16 prk_size; + u16 okm_size; +}; + +enum rsaprivkey_actions { + ACT_rsa_get_d = 0, + ACT_rsa_get_dp = 1, + ACT_rsa_get_dq = 2, + ACT_rsa_get_e = 3, + ACT_rsa_get_n = 4, + ACT_rsa_get_p = 5, + ACT_rsa_get_q = 6, + ACT_rsa_get_qinv = 7, + NR__rsaprivkey_actions = 8, +}; + +struct rsa_key { + const u8 *n; + const u8 *e; + const u8 *d; + const u8 *p; + const u8 *q; + const u8 *dp; + const u8 *dq; + const u8 *qinv; + size_t n_sz; + size_t e_sz; + size_t d_sz; + size_t p_sz; + size_t q_sz; + size_t dp_sz; + size_t dq_sz; + size_t qinv_sz; +}; + +struct rsa_mpi_key { + MPI n; + MPI e; + MPI d; + MPI p; + MPI q; + MPI dp; + MPI dq; + MPI qinv; +}; + +struct crypto_report_comp { + char type[64]; +}; + +struct scomp_scratch { + spinlock_t lock; + union { + void *src; + long unsigned int saddr; + }; +}; + +struct md5_state { + u32 hash[4]; + u64 byte_count; + u32 block[16]; +}; + +struct sha3_state { + u64 st[25]; +}; + +struct crypto_cts_ctx { + struct crypto_skcipher *child; +}; + +struct crypto_cts_reqctx { + struct scatterlist sg[2]; + unsigned int offset; + struct skcipher_request subreq; +}; + +struct drbg_string { + const unsigned char *buf; + size_t len; + struct list_head list; +}; + +typedef uint32_t drbg_flag_t; + +struct drbg_core { + drbg_flag_t flags; + __u8 statelen; + __u8 blocklen_bytes; + char cra_name[128]; + char backend_cra_name[128]; +}; + +struct drbg_state; + +struct drbg_state_ops { + int (*update)(struct drbg_state *, struct list_head *, int); + int (*generate)(struct drbg_state *, unsigned char *, unsigned int, struct list_head *); + int (*crypto_init)(struct drbg_state *); + int (*crypto_fini)(struct drbg_state *); +}; + +enum drbg_seed_state { + DRBG_SEED_STATE_UNSEEDED = 0, + DRBG_SEED_STATE_PARTIAL = 1, + DRBG_SEED_STATE_FULL = 2, +}; + +struct drbg_state { + struct mutex drbg_mutex; + unsigned char *V; + unsigned char *Vbuf; + unsigned char *C; + unsigned char *Cbuf; + size_t reseed_ctr; + size_t reseed_threshold; + unsigned char *scratchpad; + unsigned char *scratchpadbuf; + void *priv_data; + struct crypto_skcipher *ctr_handle; + struct skcipher_request *ctr_req; + __u8 *outscratchpadbuf; + __u8 *outscratchpad; + struct crypto_wait ctr_wait; + struct scatterlist sg_in; + struct scatterlist sg_out; + enum drbg_seed_state seeded; + long unsigned int last_seed_time; + bool pr; + bool fips_primed; + unsigned char *prev; + struct crypto_rng *jent; + const struct drbg_state_ops *d_ops; + const struct drbg_core *core; + struct drbg_string test_data; +}; + +enum drbg_prefixes { + DRBG_PREFIX0 = 0, + DRBG_PREFIX1 = 1, + DRBG_PREFIX2 = 2, + DRBG_PREFIX3 = 3, +}; + +struct sdesc { + struct shash_desc shash; + char ctx[0]; +}; + +struct s { + __be32 conv; +}; + +struct ecdh_ctx { + unsigned int curve_id; + unsigned int ndigits; + u64 private_key[9]; +}; + +struct bdev_inode { + struct block_device bdev; + struct inode vfs_inode; +}; + +struct bio_map_data { + bool is_our_pages: 1; + bool is_null_mapped: 1; + struct iov_iter iter; + struct iovec iov[0]; +}; + +struct blk_rq_stat { + u64 mean; + u64 min; + u64 max; + u32 nr_samples; + u64 batch; +}; + +struct blk_queue_stats { + struct list_head callbacks; + spinlock_t lock; + int accounting; +}; + +struct blk_stat_callback { + struct list_head list; + struct timer_list timer; + struct blk_rq_stat *cpu_stat; + int (*bucket_fn)(const struct request *); + unsigned int buckets; + struct blk_rq_stat *stat; + void (*timer_fn)(struct blk_stat_callback *); + void *data; + struct callback_head rcu; +}; + +struct blk_mq_hw_ctx_sysfs_entry { + struct attribute attr; + ssize_t (*show)(struct blk_mq_hw_ctx *, char *); +}; + +struct blk_major_name { + struct blk_major_name *next; + int major; + char name[16]; + void (*probe)(dev_t); +}; + +struct mac_partition { + __be16 signature; + __be16 res1; + __be32 map_count; + __be32 start_block; + __be32 block_count; + char name[32]; + char type[32]; + __be32 data_start; + __be32 data_count; + __be32 status; + __be32 boot_start; + __be32 boot_size; + __be32 boot_load; + __be32 boot_load2; + __be32 boot_entry; + __be32 boot_entry2; + __be32 boot_cksum; + char processor[16]; +}; + +struct mac_driver_desc { + __be16 signature; + __be16 block_size; + __be32 block_count; +}; + +struct d_partition___2 { + __le32 p_size; + __le32 p_offset; + __le32 p_fsize; + u8 p_fstype; + u8 p_frag; + __le16 p_cpg; +}; + +struct disklabel___2 { + __le32 d_magic; + __le16 d_type; + __le16 d_subtype; + u8 d_typename[16]; + u8 d_packname[16]; + __le32 d_secsize; + __le32 d_nsectors; + __le32 d_ntracks; + __le32 d_ncylinders; + __le32 d_secpercyl; + __le32 d_secprtunit; + __le16 d_sparespertrack; + __le16 d_sparespercyl; + __le32 d_acylinders; + __le16 d_rpm; + __le16 d_interleave; + __le16 d_trackskew; + __le16 d_cylskew; + __le32 d_headswitch; + __le32 d_trkseek; + __le32 d_flags; + __le32 d_drivedata[5]; + __le32 d_spare[5]; + __le32 d_magic2; + __le16 d_checksum; + __le16 d_npartitions; + __le32 d_bbsize; + __le32 d_sbsize; + struct d_partition___2 d_partitions[18]; +}; + +struct _gpt_header { + __le64 signature; + __le32 revision; + __le32 header_size; + __le32 header_crc32; + __le32 reserved1; + __le64 my_lba; + __le64 alternate_lba; + __le64 first_usable_lba; + __le64 last_usable_lba; + efi_guid_t disk_guid; + __le64 partition_entry_lba; + __le32 num_partition_entries; + __le32 sizeof_partition_entry; + __le32 partition_entry_array_crc32; +} __attribute__((packed)); + +typedef struct _gpt_header gpt_header; + +struct _gpt_entry_attributes { + u64 required_to_function: 1; + u64 reserved: 47; + u64 type_guid_specific: 16; +}; + +typedef struct _gpt_entry_attributes gpt_entry_attributes; + +struct _gpt_entry { + efi_guid_t partition_type_guid; + efi_guid_t unique_partition_guid; + __le64 starting_lba; + __le64 ending_lba; + gpt_entry_attributes attributes; + __le16 partition_name[36]; +}; + +typedef struct _gpt_entry gpt_entry; + +struct _gpt_mbr_record { + u8 boot_indicator; + u8 start_head; + u8 start_sector; + u8 start_track; + u8 os_type; + u8 end_head; + u8 end_sector; + u8 end_track; + __le32 starting_lba; + __le32 size_in_lba; +}; + +typedef struct _gpt_mbr_record gpt_mbr_record; + +struct _legacy_mbr { + u8 boot_code[440]; + __le32 unique_mbr_signature; + __le16 unknown; + gpt_mbr_record partition_record[4]; + __le16 signature; +} __attribute__((packed)); + +typedef struct _legacy_mbr legacy_mbr; + +struct blk_ia_range_sysfs_entry { + struct attribute attr; + ssize_t (*show)(struct blk_independent_access_range *, char *); +}; + +struct bsg_device { + struct request_queue *queue; + struct device device; + struct cdev cdev; + int max_queue; + unsigned int timeout; + unsigned int reserved_size; + bsg_sg_io_fn *sg_io_fn; +}; + +enum dd_data_dir { + DD_READ = 0, + DD_WRITE = 1, +}; + +enum { + DD_DIR_COUNT = 2, +}; + +enum dd_prio { + DD_RT_PRIO = 0, + DD_BE_PRIO = 1, + DD_IDLE_PRIO = 2, + DD_PRIO_MAX = 2, +}; + +enum { + DD_PRIO_COUNT = 3, +}; + +struct io_stats_per_prio { + uint32_t inserted; + uint32_t merged; + uint32_t dispatched; + atomic_t completed; +}; + +struct dd_per_prio { + struct rb_root sort_list[2]; + struct list_head fifo_list[2]; + sector_t latest_pos[2]; + struct io_stats_per_prio stats; +}; + +struct deadline_data { + struct list_head dispatch; + struct dd_per_prio per_prio[3]; + enum dd_data_dir last_dir; + unsigned int batching; + unsigned int starved; + int fifo_expire[2]; + int fifo_batch; + int writes_starved; + int front_merges; + u32 async_depth; + int prio_aging_expire; + spinlock_t lock; +}; + +struct blk_integrity_iter { + void *prot_buf; + void *data_buf; + sector_t seed; + unsigned int data_size; + short unsigned int interval; + const char *disk_name; +}; + +struct rq_wait { + wait_queue_head_t wait; + atomic_t inflight; +}; + +struct rq_depth { + unsigned int max_depth; + int scale_step; + bool scaled_max; + unsigned int queue_depth; + unsigned int default_depth; +}; + +typedef bool acquire_inflight_cb_t(struct rq_wait *, void *); + +typedef void cleanup_cb_t(struct rq_wait *, void *); + +struct trace_event_raw_wbt_stat { + struct trace_entry ent; + char name[32]; + s64 rmean; + u64 rmin; + u64 rmax; + s64 rnr_samples; + s64 rtime; + s64 wmean; + u64 wmin; + u64 wmax; + s64 wnr_samples; + s64 wtime; + char __data[0]; +}; + +struct trace_event_raw_wbt_lat { + struct trace_entry ent; + char name[32]; + long unsigned int lat; + char __data[0]; +}; + +struct trace_event_raw_wbt_step { + struct trace_entry ent; + char name[32]; + const char *msg; + int step; + long unsigned int window; + unsigned int bg; + unsigned int normal; + unsigned int max; + char __data[0]; +}; + +struct trace_event_raw_wbt_timer { + struct trace_entry ent; + char name[32]; + unsigned int status; + int step; + unsigned int inflight; + char __data[0]; +}; + +struct trace_event_data_offsets_wbt_stat {}; + +struct trace_event_data_offsets_wbt_lat {}; + +struct trace_event_data_offsets_wbt_step {}; + +struct trace_event_data_offsets_wbt_timer {}; + +typedef void (*btf_trace_wbt_stat)(void *, struct backing_dev_info *, struct blk_rq_stat *); + +typedef void (*btf_trace_wbt_lat)(void *, struct backing_dev_info *, long unsigned int); + +typedef void (*btf_trace_wbt_step)(void *, struct backing_dev_info *, const char *, int, long unsigned int, unsigned int, unsigned int, unsigned int); + +typedef void (*btf_trace_wbt_timer)(void *, struct backing_dev_info *, unsigned int, int, unsigned int); + +enum wbt_flags { + WBT_TRACKED = 1, + WBT_READ = 2, + WBT_SWAP = 4, + WBT_DISCARD = 8, + WBT_NR_BITS = 4, +}; + +enum { + WBT_RWQ_BG = 0, + WBT_RWQ_SWAP = 1, + WBT_RWQ_DISCARD = 2, + WBT_NUM_RWQ = 3, +}; + +enum { + WBT_STATE_ON_DEFAULT = 1, + WBT_STATE_ON_MANUAL = 2, + WBT_STATE_OFF_DEFAULT = 3, + WBT_STATE_OFF_MANUAL = 4, +}; + +struct rq_wb { + unsigned int wb_background; + unsigned int wb_normal; + short int enable_state; + unsigned int unknown_cnt; + u64 win_nsec; + u64 cur_win_nsec; + struct blk_stat_callback *cb; + u64 sync_issue; + void *sync_cookie; + long unsigned int last_issue; + long unsigned int last_comp; + long unsigned int min_lat_nsec; + struct rq_qos rqos; + struct rq_wait rq_wait[3]; + struct rq_depth rq_depth; +}; + +enum { + RWB_DEF_DEPTH = 16, + RWB_WINDOW_NSEC = 100000000, + RWB_MIN_WRITE_SAMPLES = 3, + RWB_UNKNOWN_BUMP = 5, +}; + +enum { + LAT_OK = 1, + LAT_UNKNOWN = 2, + LAT_UNKNOWN_WRITES = 3, + LAT_EXCEEDED = 4, +}; + +struct wbt_wait_data { + struct rq_wb *rwb; + enum wbt_flags wb_acct; + blk_opf_t opf; +}; + +struct blk_crypto_kobj { + struct kobject kobj; + struct blk_crypto_profile *profile; +}; + +struct blk_crypto_attr { + struct attribute attr; + ssize_t (*show)(struct blk_crypto_profile *, struct blk_crypto_attr *, char *); +}; + +struct io_notif_data { + struct file *file; + struct ubuf_info uarg; + struct io_notif_data *next; + struct io_notif_data *head; + unsigned int account_pages; + bool zc_report; + bool zc_used; + bool zc_copied; +}; + +struct compat_iovec { + compat_uptr_t iov_base; + compat_size_t iov_len; +}; + +struct io_uring_attr_pi { + __u16 flags; + __u16 app_tag; + __u32 len; + __u64 addr; + __u64 seed; + __u64 rsvd; +}; + +struct io_meta_state { + u32 seed; + struct iov_iter_state iter_meta; +}; + +struct io_async_rw { + struct iou_vec vec; + size_t bytes_done; + union { + struct { + struct iov_iter iter; + struct iov_iter_state iter_state; + struct iovec fast_iov; + unsigned int buf_group; + union { + struct wait_page_queue wpq; + struct { + struct uio_meta meta; + struct io_meta_state meta_state; + }; + }; + }; + struct { + struct iov_iter iter; + struct iov_iter_state iter_state; + struct iovec fast_iov; + unsigned int buf_group; + union { + struct wait_page_queue wpq; + struct { + struct uio_meta meta; + struct io_meta_state meta_state; + }; + }; + } clear; + }; +}; + +struct io_rw { + struct kiocb kiocb; + u64 addr; + u32 len; + rwf_t flags; +}; + +struct io_open { + struct file *file; + int dfd; + u32 file_slot; + struct filename *filename; + struct open_how how; + long unsigned int nofile; +}; + +struct io_close { + struct file *file; + int fd; + u32 file_slot; +}; + +struct io_fixed_install { + struct file *file; + unsigned int o_flags; +}; + +struct io_pipe { + struct file *file; + int *fds; + int flags; + int file_slot; + long unsigned int nofile; +}; + +struct xattr_name { + char name[256]; +}; + +struct kernel_xattr_ctx { + union { + const void *cvalue; + void *value; + }; + void *kvalue; + size_t size; + struct xattr_name *kname; + unsigned int flags; +}; + +struct io_xattr { + struct file *file; + struct kernel_xattr_ctx ctx; + struct filename *filename; +}; + +struct io_rename { + struct file *file; + int old_dfd; + int new_dfd; + struct filename *oldpath; + struct filename *newpath; + int flags; +}; + +struct io_unlink { + struct file *file; + int dfd; + int flags; + struct filename *filename; +}; + +struct io_mkdir { + struct file *file; + int dfd; + umode_t mode; + struct filename *filename; +}; + +struct io_link { + struct file *file; + int old_dfd; + int new_dfd; + struct filename *oldpath; + struct filename *newpath; + int flags; +}; + +struct io_fadvise { + struct file *file; + u64 offset; + u64 len; + u32 advice; +}; + +struct io_madvise { + struct file *file; + u64 addr; + u64 len; + u32 advice; +}; + +struct io_uring_sync_cancel_reg { + __u64 addr; + __s32 fd; + __u32 flags; + struct __kernel_timespec timeout; + __u8 opcode; + __u8 pad[7]; + __u64 pad2[3]; +}; + +struct io_cancel { + struct file *file; + u64 addr; + u32 flags; + s32 fd; + u8 opcode; +}; + +enum { + IORING_MEM_REGION_REG_WAIT_ARG = 1, +}; + +struct io_uring_mem_region_reg { + __u64 region_uptr; + __u64 flags; + __u64 __resv[2]; +}; + +struct io_uring_probe_op { + __u8 op; + __u8 resv; + __u16 flags; + __u32 resv2; +}; + +struct io_uring_probe { + __u8 last_op; + __u8 ops_len; + __u16 resv; + __u32 resv2[3]; + struct io_uring_probe_op ops[0]; +}; + +struct io_uring_restriction { + __u16 opcode; + union { + __u8 register_op; + __u8 sqe_op; + __u8 sqe_flags; + }; + __u8 resv; + __u32 resv2[3]; +}; + +struct io_uring_clock_register { + __u32 clockid; + __u32 __resv[3]; +}; + +enum io_uring_register_restriction_op { + IORING_RESTRICTION_REGISTER_OP = 0, + IORING_RESTRICTION_SQE_OP = 1, + IORING_RESTRICTION_SQE_FLAGS_ALLOWED = 2, + IORING_RESTRICTION_SQE_FLAGS_REQUIRED = 3, + IORING_RESTRICTION_LAST = 4, +}; + +struct io_ring_ctx_rings { + struct io_rings *rings; + struct io_uring_sqe *sq_sqes; + struct io_mapped_region sq_region; + struct io_mapped_region ring_region; +}; + +struct io_futex { + struct file *file; + void *uaddr; + long unsigned int futex_val; + long unsigned int futex_mask; + long unsigned int futexv_owned; + u32 futex_flags; + unsigned int futex_nr; + bool futexv_unqueued; +}; + +struct io_futex_data { + struct futex_q q; + struct io_kiocb *req; +}; + +struct user_msghdr { + void *msg_name; + int msg_namelen; + struct iovec *msg_iov; + __kernel_size_t msg_iovlen; + void *msg_control; + __kernel_size_t msg_controllen; + unsigned int msg_flags; +}; + +struct compat_msghdr { + compat_uptr_t msg_name; + compat_int_t msg_namelen; + compat_uptr_t msg_iov; + compat_size_t msg_iovlen; + compat_uptr_t msg_control; + compat_size_t msg_controllen; + compat_uint_t msg_flags; +}; + +struct io_uring_recvmsg_out { + __u32 namelen; + __u32 controllen; + __u32 payloadlen; + __u32 flags; +}; + +struct io_async_msghdr { + struct iou_vec vec; + union { + struct { + int namelen; + struct iovec fast_iov; + __kernel_size_t controllen; + __kernel_size_t payloadlen; + struct sockaddr *uaddr; + struct msghdr msg; + struct __kernel_sockaddr_storage addr; + }; + struct { + int namelen; + struct iovec fast_iov; + __kernel_size_t controllen; + __kernel_size_t payloadlen; + struct sockaddr *uaddr; + struct msghdr msg; + struct __kernel_sockaddr_storage addr; + } clear; + }; +}; + +struct io_shutdown { + struct file *file; + int how; +}; + +struct io_accept { + struct file *file; + struct sockaddr *addr; + int *addr_len; + int flags; + int iou_flags; + u32 file_slot; + long unsigned int nofile; +}; + +struct io_socket { + struct file *file; + int domain; + int type; + int protocol; + int flags; + u32 file_slot; + long unsigned int nofile; +}; + +struct io_connect { + struct file *file; + struct sockaddr *addr; + int addr_len; + bool in_progress; + bool seen_econnaborted; +}; + +struct io_bind { + struct file *file; + int addr_len; +}; + +struct io_listen { + struct file *file; + int backlog; +}; + +struct io_sr_msg { + struct file *file; + union { + struct compat_msghdr *umsg_compat; + struct user_msghdr *umsg; + void *buf; + }; + int len; + unsigned int done_io; + unsigned int msg_flags; + unsigned int nr_multishot_loops; + u16 flags; + u16 buf_group; + unsigned int mshot_len; + unsigned int mshot_total_len; + void *msg_control; + struct io_kiocb *notif; +}; + +enum sr_retry_flags { + IORING_RECV_RETRY = 32768, + IORING_RECV_PARTIAL_MAP = 16384, + IORING_RECV_MSHOT_CAP = 8192, + IORING_RECV_MSHOT_LIM = 4096, + IORING_RECV_MSHOT_DONE = 2048, + IORING_RECV_RETRY_CLEAR = 49152, + IORING_RECV_NO_RETRY = 59392, +}; + +struct io_recvzc { + struct file *file; + unsigned int msg_flags; + u16 flags; + u32 len; + struct io_zcrx_ifq *ifq; +}; + +struct io_recvmsg_multishot_hdr { + struct io_uring_recvmsg_out msg; + struct __kernel_sockaddr_storage addr; +}; + +struct wrapper { + cmp_func_t cmp; + swap_func_t swap; +}; + +struct genradix_node { + union { + struct genradix_node *children[64]; + u8 data[512]; + }; +}; + +struct genradix_iter { + size_t offset; + size_t pos; +}; + +struct strarray { + char **array; + size_t n; +}; + +struct poly1305_arch_internal { + union { + struct { + u32 h[5]; + u32 is_base2_26; + }; + u64 hs[3]; + }; + u64 r[2]; + u64 pad; + struct { + u32 r2; + u32 r1; + u32 r4; + u32 r3; + } rn[9]; +}; + +struct btree_head { + long unsigned int *node; + mempool_t *mempool; + int height; +}; + +struct btree_geo { + int keylen; + int no_pairs; + int no_longs; +}; + +typedef void (*visitor128_t)(void *, long unsigned int, u64, u64, size_t); + +typedef void (*visitorl_t)(void *, long unsigned int, long unsigned int, size_t); + +typedef void (*visitor32_t)(void *, long unsigned int, u32, size_t); + +typedef void (*visitor64_t)(void *, long unsigned int, u64, size_t); + +struct assoc_array_ops { + long unsigned int (*get_key_chunk)(const void *, int); + long unsigned int (*get_object_key_chunk)(const void *, int); + bool (*compare_object)(const void *, const void *); + int (*diff_objects)(const void *, const void *); + void (*free_object)(void *); +}; + +struct assoc_array_node { + struct assoc_array_ptr *back_pointer; + u8 parent_slot; + struct assoc_array_ptr *slots[16]; + long unsigned int nr_leaves_on_branch; +}; + +struct assoc_array_shortcut { + struct assoc_array_ptr *back_pointer; + int parent_slot; + int skip_to_level; + struct assoc_array_ptr *next_node; + long unsigned int index_key[0]; +}; + +struct assoc_array_edit { + struct callback_head rcu; + struct assoc_array *array; + const struct assoc_array_ops *ops; + const struct assoc_array_ops *ops_for_excised_subtree; + struct assoc_array_ptr *leaf; + struct assoc_array_ptr **leaf_p; + struct assoc_array_ptr *dead_leaf; + struct assoc_array_ptr *new_meta[3]; + struct assoc_array_ptr *excised_meta[1]; + struct assoc_array_ptr *excised_subtree; + struct assoc_array_ptr **set_backpointers[16]; + struct assoc_array_ptr *set_backpointers_to; + struct assoc_array_node *adjust_count_on; + long int adjust_count_by; + struct { + struct assoc_array_ptr **ptr; + struct assoc_array_ptr *to; + } set[2]; + struct { + u8 *p; + u8 to; + } set_parent_slot[1]; + u8 segment_cache[17]; +}; + +enum assoc_array_walk_status { + assoc_array_walk_tree_empty = 0, + assoc_array_walk_found_terminal_node = 1, + assoc_array_walk_found_wrong_shortcut = 2, +}; + +struct assoc_array_walk_result { + struct { + struct assoc_array_node *node; + int level; + int slot; + } terminal_node; + struct { + struct assoc_array_shortcut *shortcut; + int level; + int sc_level; + long unsigned int sc_segments; + long unsigned int dissimilarity; + } wrong_shortcut; +}; + +struct assoc_array_delete_collapse_context { + struct assoc_array_node *node; + const void *skip_leaf; + int slot; +}; + +struct xxh32_state { + uint32_t total_len_32; + uint32_t large_len; + uint32_t v1; + uint32_t v2; + uint32_t v3; + uint32_t v4; + uint32_t mem32[4]; + uint32_t memsize; +}; + +union uu { + short unsigned int us; + unsigned char b[2]; +}; + +typedef enum { + need_more = 0, + block_done = 1, + finish_started = 2, + finish_done = 3, +} block_state; + +typedef block_state (*compress_func)(deflate_state *, int); + +struct deflate_workspace { + deflate_state deflate_memory; + Byte *window_memory; + Pos *prev_memory; + Pos *head_memory; + char *overlay_memory; +}; + +typedef struct deflate_workspace deflate_workspace; + +struct config_s { + ush good_length; + ush max_lazy; + ush nice_length; + ush max_chain; + compress_func func; +}; + +typedef struct config_s config; + +typedef struct { + const uint8_t *externalDict; + size_t extDictSize; + const uint8_t *prefixEnd; + size_t prefixSize; +} LZ4_streamDecode_t_internal; + +typedef union { + long long unsigned int table[4]; + LZ4_streamDecode_t_internal internal_donotuse; +} LZ4_streamDecode_t; + +typedef uintptr_t uptrval; + +typedef enum { + noDict = 0, + withPrefix64k = 1, + usingExtDict = 2, +} dict_directive; + +typedef enum { + endOnOutputSize = 0, + endOnInputSize = 1, +} endCondition_directive; + +typedef enum { + decode_full_block = 0, + partial_decode = 1, +} earlyEnd_directive; + +typedef enum { + trustInput = 0, + checkMaxSymbolValue = 1, +} HIST_checkInput_e; + +typedef enum { + ZSTDcs_created = 0, + ZSTDcs_init = 1, + ZSTDcs_ongoing = 2, + ZSTDcs_ending = 3, +} ZSTD_compressionStage_e; + +typedef struct { + int contentSizeFlag; + int checksumFlag; + int noDictIDFlag; +} ZSTD_frameParameters; + +typedef enum { + ZSTD_dictDefaultAttach = 0, + ZSTD_dictForceAttach = 1, + ZSTD_dictForceCopy = 2, + ZSTD_dictForceLoad = 3, +} ZSTD_dictAttachPref_e; + +typedef struct { + ZSTD_ParamSwitch_e enableLdm; + U32 hashLog; + U32 bucketSizeLog; + U32 minMatchLength; + U32 hashRateLog; + U32 windowLog; +} ldmParams_t; + +typedef enum { + ZSTD_sf_noBlockDelimiters = 0, + ZSTD_sf_explicitBlockDelimiters = 1, +} ZSTD_SequenceFormat_e; + +typedef struct { + unsigned int offset; + unsigned int litLength; + unsigned int matchLength; + unsigned int rep; +} ZSTD_Sequence; + +typedef size_t (*ZSTD_sequenceProducer_F)(void *, ZSTD_Sequence *, size_t, const void *, size_t, const void *, size_t, int, size_t); + +struct ZSTD_CCtx_params_s { + ZSTD_format_e format; + ZSTD_compressionParameters cParams; + ZSTD_frameParameters fParams; + int compressionLevel; + int forceWindow; + size_t targetCBlockSize; + int srcSizeHint; + ZSTD_dictAttachPref_e attachDictPref; + ZSTD_ParamSwitch_e literalCompressionMode; + int nbWorkers; + size_t jobSize; + int overlapLog; + int rsyncable; + ldmParams_t ldmParams; + int enableDedicatedDictSearch; + ZSTD_bufferMode_e inBufferMode; + ZSTD_bufferMode_e outBufferMode; + ZSTD_SequenceFormat_e blockDelimiters; + int validateSequences; + ZSTD_ParamSwitch_e postBlockSplitter; + int preBlockSplitter_level; + size_t maxBlockSize; + ZSTD_ParamSwitch_e useRowMatchFinder; + int deterministicRefPrefix; + ZSTD_customMem customMem; + ZSTD_ParamSwitch_e prefetchCDictTables; + int enableMatchFinderFallback; + void *extSeqProdState; + ZSTD_sequenceProducer_F extSeqProdFunc; + ZSTD_ParamSwitch_e searchForExternalRepcodes; +}; + +typedef struct ZSTD_CCtx_params_s ZSTD_CCtx_params; + +typedef enum { + ZSTD_cwksp_alloc_objects = 0, + ZSTD_cwksp_alloc_aligned_init_once = 1, + ZSTD_cwksp_alloc_aligned = 2, + ZSTD_cwksp_alloc_buffers = 3, +} ZSTD_cwksp_alloc_phase_e; + +typedef enum { + ZSTD_cwksp_dynamic_alloc = 0, + ZSTD_cwksp_static_alloc = 1, +} ZSTD_cwksp_static_alloc_e; + +typedef struct { + void *workspace; + void *workspaceEnd; + void *objectEnd; + void *tableEnd; + void *tableValidEnd; + void *allocStart; + void *initOnceStart; + BYTE allocFailed; + int workspaceOversizedDuration; + ZSTD_cwksp_alloc_phase_e phase; + ZSTD_cwksp_static_alloc_e isStatic; +} ZSTD_cwksp; + +struct POOL_ctx_s; + +typedef struct POOL_ctx_s ZSTD_threadPool; + +typedef struct { + int collectSequences; + ZSTD_Sequence *seqStart; + size_t seqIndex; + size_t maxSequences; +} SeqCollector; + +typedef struct { + U32 offset; + U32 checksum; +} ldmEntry_t; + +typedef struct { + const BYTE *split; + U32 hash; + U32 checksum; + ldmEntry_t *bucket; +} ldmMatchCandidate_t; + +typedef struct { + ZSTD_window_t window; + ldmEntry_t *hashTable; + U32 loadedDictEnd; + BYTE *bucketOffsets; + size_t splitIndices[64]; + ldmMatchCandidate_t matchCandidates[64]; +} ldmState_t; + +typedef struct { + ZSTD_entropyCTables_t entropy; + U32 rep[3]; +} ZSTD_compressedBlockState_t; + +typedef struct { + ZSTD_compressedBlockState_t *prevCBlock; + ZSTD_compressedBlockState_t *nextCBlock; + ZSTD_MatchState_t matchState; +} ZSTD_blockState_t; + +typedef enum { + ZSTDb_not_buffered = 0, + ZSTDb_buffered = 1, +} ZSTD_buffered_policy_e; + +typedef enum { + zcss_init = 0, + zcss_load = 1, + zcss_flush = 2, +} ZSTD_cStreamStage; + +struct ZSTD_CDict_s; + +typedef struct ZSTD_CDict_s ZSTD_CDict; + +typedef struct { + void *dictBuffer; + const void *dict; + size_t dictSize; + ZSTD_dictContentType_e dictContentType; + ZSTD_CDict *cdict; +} ZSTD_localDict; + +struct ZSTD_prefixDict_s { + const void *dict; + size_t dictSize; + ZSTD_dictContentType_e dictContentType; +}; + +typedef struct ZSTD_prefixDict_s ZSTD_prefixDict; + +typedef enum { + set_basic = 0, + set_rle = 1, + set_compressed = 2, + set_repeat = 3, +} SymbolEncodingType_e; + +typedef struct { + SymbolEncodingType_e hType; + BYTE hufDesBuffer[128]; + size_t hufDesSize; +} ZSTD_hufCTablesMetadata_t; + +typedef struct { + SymbolEncodingType_e llType; + SymbolEncodingType_e ofType; + SymbolEncodingType_e mlType; + BYTE fseTablesBuffer[133]; + size_t fseTablesSize; + size_t lastCountSize; +} ZSTD_fseCTablesMetadata_t; + +typedef struct { + ZSTD_hufCTablesMetadata_t hufMetadata; + ZSTD_fseCTablesMetadata_t fseMetadata; +} ZSTD_entropyCTablesMetadata_t; + +typedef struct { + SeqStore_t fullSeqStoreChunk; + SeqStore_t firstHalfSeqStore; + SeqStore_t secondHalfSeqStore; + SeqStore_t currSeqStore; + SeqStore_t nextSeqStore; + U32 partitions[196]; + ZSTD_entropyCTablesMetadata_t entropyMetadata; +} ZSTD_blockSplitCtx; + +struct ZSTD_CCtx_s { + ZSTD_compressionStage_e stage; + int cParamsChanged; + int bmi2; + ZSTD_CCtx_params requestedParams; + ZSTD_CCtx_params appliedParams; + ZSTD_CCtx_params simpleApiParams; + U32 dictID; + size_t dictContentSize; + ZSTD_cwksp workspace; + size_t blockSizeMax; + long long unsigned int pledgedSrcSizePlusOne; + long long unsigned int consumedSrcSize; + long long unsigned int producedCSize; + struct xxh64_state xxhState; + ZSTD_customMem customMem; + ZSTD_threadPool *pool; + size_t staticSize; + SeqCollector seqCollector; + int isFirstBlock; + int initialized; + SeqStore_t seqStore; + ldmState_t ldmState; + rawSeq *ldmSequences; + size_t maxNbLdmSequences; + RawSeqStore_t externSeqStore; + ZSTD_blockState_t blockState; + void *tmpWorkspace; + size_t tmpWkspSize; + ZSTD_buffered_policy_e bufferedPolicy; + char *inBuff; + size_t inBuffSize; + size_t inToCompress; + size_t inBuffPos; + size_t inBuffTarget; + char *outBuff; + size_t outBuffSize; + size_t outBuffContentSize; + size_t outBuffFlushedSize; + ZSTD_cStreamStage streamStage; + U32 frameEnded; + ZSTD_inBuffer expectedInBuffer; + size_t stableIn_notConsumed; + size_t expectedOutBufferSize; + ZSTD_localDict localDict; + const ZSTD_CDict *cdict; + ZSTD_prefixDict prefixDict; + ZSTD_blockSplitCtx blockSplitCtx; + ZSTD_Sequence *extSeqBuf; + size_t extSeqBufCapacity; +}; + +typedef struct ZSTD_CCtx_s ZSTD_CCtx; + +typedef enum { + ZSTD_c_compressionLevel = 100, + ZSTD_c_windowLog = 101, + ZSTD_c_hashLog = 102, + ZSTD_c_chainLog = 103, + ZSTD_c_searchLog = 104, + ZSTD_c_minMatch = 105, + ZSTD_c_targetLength = 106, + ZSTD_c_strategy = 107, + ZSTD_c_targetCBlockSize = 130, + ZSTD_c_enableLongDistanceMatching = 160, + ZSTD_c_ldmHashLog = 161, + ZSTD_c_ldmMinMatch = 162, + ZSTD_c_ldmBucketSizeLog = 163, + ZSTD_c_ldmHashRateLog = 164, + ZSTD_c_contentSizeFlag = 200, + ZSTD_c_checksumFlag = 201, + ZSTD_c_dictIDFlag = 202, + ZSTD_c_nbWorkers = 400, + ZSTD_c_jobSize = 401, + ZSTD_c_overlapLog = 402, + ZSTD_c_experimentalParam1 = 500, + ZSTD_c_experimentalParam2 = 10, + ZSTD_c_experimentalParam3 = 1000, + ZSTD_c_experimentalParam4 = 1001, + ZSTD_c_experimentalParam5 = 1002, + ZSTD_c_experimentalParam7 = 1004, + ZSTD_c_experimentalParam8 = 1005, + ZSTD_c_experimentalParam9 = 1006, + ZSTD_c_experimentalParam10 = 1007, + ZSTD_c_experimentalParam11 = 1008, + ZSTD_c_experimentalParam12 = 1009, + ZSTD_c_experimentalParam13 = 1010, + ZSTD_c_experimentalParam14 = 1011, + ZSTD_c_experimentalParam15 = 1012, + ZSTD_c_experimentalParam16 = 1013, + ZSTD_c_experimentalParam17 = 1014, + ZSTD_c_experimentalParam18 = 1015, + ZSTD_c_experimentalParam19 = 1016, + ZSTD_c_experimentalParam20 = 1017, +} ZSTD_cParameter; + +typedef struct { + size_t error; + int lowerBound; + int upperBound; +} ZSTD_bounds; + +typedef ZSTD_CCtx ZSTD_CStream; + +typedef enum { + ZSTD_e_continue = 0, + ZSTD_e_flush = 1, + ZSTD_e_end = 2, +} ZSTD_EndDirective; + +struct ZSTD_CDict_s { + const void *dictContent; + size_t dictContentSize; + ZSTD_dictContentType_e dictContentType; + U32 *entropyWorkspace; + ZSTD_cwksp workspace; + ZSTD_MatchState_t matchState; + ZSTD_compressedBlockState_t cBlockState; + ZSTD_customMem customMem; + U32 dictID; + int compressionLevel; + ZSTD_ParamSwitch_e useRowMatchFinder; +}; + +typedef struct { + ZSTD_compressionParameters cParams; + ZSTD_frameParameters fParams; +} ZSTD_parameters; + +typedef struct { + long long unsigned int ingested; + long long unsigned int consumed; + long long unsigned int produced; + long long unsigned int flushed; + unsigned int currentJobID; + unsigned int nbActiveWorkers; +} ZSTD_frameProgression; + +typedef struct { + U32 f1c; + U32 f1d; + U32 f7b; + U32 f7c; +} ZSTD_cpuid_t; + +typedef enum { + ZSTD_cpm_noAttachDict = 0, + ZSTD_cpm_attachDict = 1, + ZSTD_cpm_createCDict = 2, + ZSTD_cpm_unknown = 3, +} ZSTD_CParamMode_e; + +typedef size_t (*ZSTD_BlockCompressor_f)(ZSTD_MatchState_t *, SeqStore_t *, U32 *, const void *, size_t); + +struct repcodes_s { + U32 rep[3]; +}; + +typedef struct repcodes_s Repcodes_t; + +typedef struct { + U32 idx; + U32 posInSequence; + size_t posInSrc; +} ZSTD_SequencePosition; + +typedef struct { + size_t nbSequences; + size_t blockSize; + size_t litSize; +} BlockSummary; + +typedef enum { + ZSTD_defaultDisallowed = 0, + ZSTD_defaultAllowed = 1, +} ZSTD_DefaultPolicy_e; + +typedef enum { + ZSTDcrp_makeClean = 0, + ZSTDcrp_leaveDirty = 1, +} ZSTD_compResetPolicy_e; + +typedef enum { + ZSTDirp_continue = 0, + ZSTDirp_reset = 1, +} ZSTD_indexResetPolicy_e; + +typedef enum { + ZSTD_resetTarget_CDict = 0, + ZSTD_resetTarget_CCtx = 1, +} ZSTD_resetTarget_e; + +typedef struct { + U32 LLtype; + U32 Offtype; + U32 MLtype; + size_t size; + size_t lastCountSize; + int longOffsets; +} ZSTD_symbolEncodingTypeStats_t; + +enum { + ZSTDbss_compress = 0, + ZSTDbss_noCompress = 1, +}; + +typedef struct { + U32 *splitLocations; + size_t idx; +} seqStoreSplits; + +typedef size_t (*ZSTD_SequenceCopier_f)(ZSTD_CCtx *, ZSTD_SequencePosition *, const ZSTD_Sequence * const, size_t, const void *, size_t, ZSTD_ParamSwitch_e); + +typedef struct { + U64 rolling; + U64 stopMask; +} ldmRollingHashState_t; + +typedef enum { + base_0possible = 0, + base_1guaranteed = 1, +} base_directive_e; + +typedef U32 (*ZSTD_getAllMatchesFn)(ZSTD_match_t *, ZSTD_MatchState_t *, U32 *, const BYTE *, const BYTE *, const U32 *, const U32, const U32); + +typedef struct { + RawSeqStore_t seqStore; + U32 startPosInBlock; + U32 endPosInBlock; + U32 offset; +} ZSTD_optLdm_t; + +typedef struct { + blockType_e blockType; + U32 lastBlock; + U32 origSize; +} blockProperties_t; + +typedef struct { + U32 fastMode; + U32 tableLog; +} ZSTD_seqSymbol_header; + +typedef enum { + not_streaming = 0, + is_streaming = 1, +} streaming_operation; + +typedef struct { + size_t litLength; + size_t matchLength; + size_t offset; +} seq_t; + +typedef struct { + size_t state; + const ZSTD_seqSymbol *table; +} ZSTD_fseState; + +typedef struct { + BIT_DStream_t DStream; + ZSTD_fseState stateLL; + ZSTD_fseState stateOffb; + ZSTD_fseState stateML; + size_t prevOffset[3]; +} seqState_t; + +typedef enum { + ZSTD_lo_isRegularOffset = 0, + ZSTD_lo_isLongOffset = 1, +} ZSTD_longOffset_e; + +typedef struct { + unsigned int longOffsetShare; + unsigned int maxNbAdditionalBits; +} ZSTD_OffsetInfo; + +typedef uint64_t vli_type; + +enum xz_check { + XZ_CHECK_NONE = 0, + XZ_CHECK_CRC32 = 1, + XZ_CHECK_CRC64 = 4, + XZ_CHECK_SHA256 = 10, +}; + +struct xz_dec_hash { + vli_type unpadded; + vli_type uncompressed; + uint32_t crc32; +}; + +struct xz_dec_lzma2; + +struct xz_dec_bcj; + +struct xz_dec { + enum { + SEQ_STREAM_HEADER = 0, + SEQ_BLOCK_START = 1, + SEQ_BLOCK_HEADER = 2, + SEQ_BLOCK_UNCOMPRESS = 3, + SEQ_BLOCK_PADDING = 4, + SEQ_BLOCK_CHECK = 5, + SEQ_INDEX = 6, + SEQ_INDEX_PADDING = 7, + SEQ_INDEX_CRC32 = 8, + SEQ_STREAM_FOOTER = 9, + } sequence; + uint32_t pos; + vli_type vli; + size_t in_start; + size_t out_start; + uint32_t crc32; + enum xz_check check_type; + enum xz_mode mode; + bool allow_buf_error; + struct { + vli_type compressed; + vli_type uncompressed; + uint32_t size; + } block_header; + struct { + vli_type compressed; + vli_type uncompressed; + vli_type count; + struct xz_dec_hash hash; + } block; + struct { + enum { + SEQ_INDEX_COUNT = 0, + SEQ_INDEX_UNPADDED = 1, + SEQ_INDEX_UNCOMPRESSED = 2, + } sequence; + vli_type size; + vli_type count; + struct xz_dec_hash hash; + } index; + struct { + size_t pos; + size_t size; + uint8_t buf[1024]; + } temp; + struct xz_dec_lzma2 *lzma2; + struct xz_dec_bcj *bcj; + bool bcj_active; +}; + +enum lzma_state { + STATE_LIT_LIT = 0, + STATE_MATCH_LIT_LIT = 1, + STATE_REP_LIT_LIT = 2, + STATE_SHORTREP_LIT_LIT = 3, + STATE_MATCH_LIT = 4, + STATE_REP_LIT = 5, + STATE_SHORTREP_LIT = 6, + STATE_LIT_MATCH = 7, + STATE_LIT_LONGREP = 8, + STATE_LIT_SHORTREP = 9, + STATE_NONLIT_MATCH = 10, + STATE_NONLIT_REP = 11, +}; + +struct dictionary { + uint8_t *buf; + size_t start; + size_t pos; + size_t full; + size_t limit; + size_t end; + uint32_t size; + uint32_t size_max; + uint32_t allocated; + enum xz_mode mode; +}; + +struct rc_dec { + uint32_t range; + uint32_t code; + uint32_t init_bytes_left; + const uint8_t *in; + size_t in_pos; + size_t in_limit; +}; + +struct lzma_len_dec { + uint16_t choice; + uint16_t choice2; + uint16_t low[128]; + uint16_t mid[128]; + uint16_t high[256]; +}; + +struct lzma_dec { + uint32_t rep0; + uint32_t rep1; + uint32_t rep2; + uint32_t rep3; + enum lzma_state state; + uint32_t len; + uint32_t lc; + uint32_t literal_pos_mask; + uint32_t pos_mask; + uint16_t is_match[192]; + uint16_t is_rep[12]; + uint16_t is_rep0[12]; + uint16_t is_rep1[12]; + uint16_t is_rep2[12]; + uint16_t is_rep0_long[192]; + uint16_t dist_slot[256]; + uint16_t dist_special[114]; + uint16_t dist_align[16]; + struct lzma_len_dec match_len_dec; + struct lzma_len_dec rep_len_dec; + uint16_t literal[12288]; +}; + +enum lzma2_seq { + SEQ_CONTROL = 0, + SEQ_UNCOMPRESSED_1 = 1, + SEQ_UNCOMPRESSED_2 = 2, + SEQ_COMPRESSED_0 = 3, + SEQ_COMPRESSED_1 = 4, + SEQ_PROPERTIES = 5, + SEQ_LZMA_PREPARE = 6, + SEQ_LZMA_RUN = 7, + SEQ_COPY = 8, +}; + +struct lzma2_dec { + enum lzma2_seq sequence; + enum lzma2_seq next_sequence; + uint32_t uncompressed; + uint32_t compressed; + bool need_dict_reset; + bool need_props; + bool pedantic_microlzma; +}; + +struct xz_dec_lzma2 { + struct rc_dec rc; + struct dictionary dict; + struct lzma2_dec lzma2; + struct lzma_dec lzma; + struct { + uint32_t size; + uint8_t buf[63]; + } temp; +}; + +struct xz_dec_microlzma { + struct xz_dec_lzma2 s; +}; + +struct seccomp_data { + int nr; + __u32 arch; + __u64 instruction_pointer; + __u64 args[6]; +}; + +struct syscall_info { + __u64 sp; + struct seccomp_data data; +}; + +struct nla_bitfield32 { + __u32 value; + __u32 selector; +}; + +typedef void closure_fn(struct work_struct *); + +struct closure_waitlist { + struct llist_head list; +}; + +enum closure_state { + CLOSURE_BITS_START = 67108864, + CLOSURE_DESTRUCTOR = 67108864, + CLOSURE_WAITING = 268435456, + CLOSURE_RUNNING = 1073741824, +}; + +struct closure_syncer { + struct task_struct *task; + int done; +}; + +struct closure { + union { + struct { + struct workqueue_struct *wq; + struct closure_syncer *s; + struct llist_node list; + closure_fn *fn; + }; + struct work_struct work; + }; + struct closure *parent; + atomic_t remaining; + bool closure_get_happened; +}; + +enum { + type_kind_int = 0, + type_kind_float = 1, + type_unknown = 65535, +}; + +struct type_descriptor { + u16 type_kind; + u16 type_info; + char type_name[0]; +}; + +struct source_location { + const char *file_name; + union { + long unsigned int reported; + struct { + u32 line; + u32 column; + }; + }; +}; + +struct overflow_data { + struct source_location location; + struct type_descriptor *type; +}; + +struct implicit_conversion_data { + struct source_location location; + struct type_descriptor *from_type; + struct type_descriptor *to_type; + unsigned char type_check_kind; +}; + +struct type_mismatch_data { + struct source_location location; + struct type_descriptor *type; + long unsigned int alignment; + unsigned char type_check_kind; +}; + +struct type_mismatch_data_v1 { + struct source_location location; + struct type_descriptor *type; + unsigned char log_alignment; + unsigned char type_check_kind; +}; + +struct type_mismatch_data_common { + struct source_location *location; + struct type_descriptor *type; + long unsigned int alignment; + unsigned char type_check_kind; +}; + +struct out_of_bounds_data { + struct source_location location; + struct type_descriptor *array_type; + struct type_descriptor *index_type; +}; + +struct shift_out_of_bounds_data { + struct source_location location; + struct type_descriptor *lhs_type; + struct type_descriptor *rhs_type; +}; + +struct unreachable_data { + struct source_location location; +}; + +struct invalid_value_data { + struct source_location location; + struct type_descriptor *type; +}; + +struct alignment_assumption_data { + struct source_location location; + struct source_location assumption_location; + struct type_descriptor *type; +}; + +typedef __int128 s_max; + +typedef __int128 unsigned u_max; + +struct phy_configure_opts_dp { + unsigned int link_rate; + unsigned int lanes; + unsigned int voltage[4]; + unsigned int pre[4]; + u8 ssc: 1; + u8 set_rate: 1; + u8 set_lanes: 1; + u8 set_voltages: 1; +}; + +struct phy_configure_opts_hdmi { + long long unsigned int tmds_char_rate; + unsigned int bpc; +}; + +struct phy_configure_opts_lvds { + unsigned int bits_per_lane_and_dclk_cycle; + long unsigned int differential_clk_rate; + unsigned int lanes; + bool is_slave; +}; + +enum phy_mode { + PHY_MODE_INVALID = 0, + PHY_MODE_USB_HOST = 1, + PHY_MODE_USB_HOST_LS = 2, + PHY_MODE_USB_HOST_FS = 3, + PHY_MODE_USB_HOST_HS = 4, + PHY_MODE_USB_HOST_SS = 5, + PHY_MODE_USB_DEVICE = 6, + PHY_MODE_USB_DEVICE_LS = 7, + PHY_MODE_USB_DEVICE_FS = 8, + PHY_MODE_USB_DEVICE_HS = 9, + PHY_MODE_USB_DEVICE_SS = 10, + PHY_MODE_USB_OTG = 11, + PHY_MODE_UFS_HS_A = 12, + PHY_MODE_UFS_HS_B = 13, + PHY_MODE_PCIE = 14, + PHY_MODE_ETHERNET = 15, + PHY_MODE_MIPI_DPHY = 16, + PHY_MODE_SATA = 17, + PHY_MODE_LVDS = 18, + PHY_MODE_DP = 19, + PHY_MODE_HDMI = 20, +}; + +enum phy_media { + PHY_MEDIA_DEFAULT = 0, + PHY_MEDIA_SR = 1, + PHY_MEDIA_DAC = 2, +}; + +union phy_configure_opts { + struct phy_configure_opts_mipi_dphy mipi_dphy; + struct phy_configure_opts_dp dp; + struct phy_configure_opts_lvds lvds; + struct phy_configure_opts_hdmi hdmi; +}; + +struct phy; + +struct phy_ops { + int (*init)(struct phy *); + int (*exit)(struct phy *); + int (*power_on)(struct phy *); + int (*power_off)(struct phy *); + int (*set_mode)(struct phy *, enum phy_mode, int); + int (*set_media)(struct phy *, enum phy_media); + int (*set_speed)(struct phy *, int); + int (*configure)(struct phy *, union phy_configure_opts *); + int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *); + int (*reset)(struct phy *); + int (*calibrate)(struct phy *); + int (*connect)(struct phy *, int); + int (*disconnect)(struct phy *, int); + void (*release)(struct phy *); + struct module *owner; +}; + +struct phy_attrs { + u32 bus_width; + u32 max_link_rate; + enum phy_mode mode; +}; + +struct phy { + struct device dev; + int id; + const struct phy_ops *ops; + struct mutex mutex; + struct lock_class_key lockdep_key; + int init_count; + int power_count; + struct phy_attrs attrs; + struct regulator *pwr; + struct dentry *debugfs; +}; + +struct phy_provider { + struct device *dev; + struct device_node *children; + struct module *owner; + struct list_head list; + struct phy * (*of_xlate)(struct device *, const struct of_phandle_args *); +}; + +struct phy_lookup { + struct list_head node; + const char *dev_id; + const char *con_id; + struct phy *phy; +}; + +struct intel_community_context; + +struct intel_pad_context___3; + +struct intel_pinctrl_context___3 { + struct intel_pad_context___3 *pads; + struct intel_community_context *communities; +}; + +struct intel_pad_context___3 { + u32 conf0; + u32 val; +}; + +struct intel_pinctrl___3 { + struct device *dev; + raw_spinlock_t lock; + struct pinctrl_desc pctldesc; + struct pinctrl_dev *pctldev; + struct gpio_chip chip; + const struct intel_pinctrl_soc_data *soc; + struct intel_community *communities; + size_t ncommunities; + struct intel_pinctrl_context___3 context; + int irq; +}; + +typedef struct { + rwlock_t *lock; + long unsigned int flags; +} class_read_lock_irqsave_t; + +struct gpio_pin_range { + struct list_head node; + struct pinctrl_dev *pctldev; + struct pinctrl_gpio_range range; +}; + +struct gpiod_hog { + struct list_head list; + const char *chip_label; + u16 chip_hwnum; + const char *line_name; + long unsigned int lflags; + int dflags; +}; + +struct trace_event_raw_gpio_direction { + struct trace_entry ent; + unsigned int gpio; + int in; + int err; + char __data[0]; +}; + +struct trace_event_raw_gpio_value { + struct trace_entry ent; + unsigned int gpio; + int get; + int value; + char __data[0]; +}; + +struct trace_event_data_offsets_gpio_direction {}; + +struct trace_event_data_offsets_gpio_value {}; + +typedef void (*btf_trace_gpio_direction)(void *, unsigned int, int, int); + +typedef void (*btf_trace_gpio_value)(void *, unsigned int, int, int); + +struct gpiolib_seq_priv { + bool newline; + int idx; +}; + +enum { + RC5T583_GPIO0 = 0, + RC5T583_GPIO1 = 1, + RC5T583_GPIO2 = 2, + RC5T583_GPIO3 = 3, + RC5T583_GPIO4 = 4, + RC5T583_GPIO5 = 5, + RC5T583_GPIO6 = 6, + RC5T583_GPIO7 = 7, + RC5T583_MAX_GPIO = 8, +}; + +struct rc5t583_gpio { + struct gpio_chip gpio_chip; + struct rc5t583 *rc5t583; +}; + +struct pwm_args { + u64 period; + enum pwm_polarity polarity; +}; + +enum { + PWMF_REQUESTED = 0, + PWMF_EXPORTED = 1, +}; + +struct pwm_waveform { + u64 period_length_ns; + u64 duty_length_ns; + u64 duty_offset_ns; +}; + +struct pwm_state { + u64 period; + u64 duty_cycle; + enum pwm_polarity polarity; + bool enabled; + bool usage_power; +}; + +struct pwm_chip; + +struct pwm_device { + const char *label; + long unsigned int flags; + unsigned int hwpwm; + struct pwm_chip *chip; + struct pwm_args args; + struct pwm_state state; + struct pwm_state last; +}; + +struct pwm_ops; + +struct pwm_chip { + struct device dev; + struct cdev cdev; + const struct pwm_ops *ops; + struct module *owner; + unsigned int id; + unsigned int npwm; + struct pwm_device * (*of_xlate)(struct pwm_chip *, const struct of_phandle_args *); + bool atomic; + bool uses_pwmchip_alloc; + bool operational; + union { + struct mutex nonatomic_lock; + spinlock_t atomic_lock; + }; + struct pwm_device pwms[0]; +}; + +struct pwm_capture { + unsigned int period; + unsigned int duty_cycle; +}; + +struct pwm_ops { + int (*request)(struct pwm_chip *, struct pwm_device *); + void (*free)(struct pwm_chip *, struct pwm_device *); + int (*capture)(struct pwm_chip *, struct pwm_device *, struct pwm_capture *, long unsigned int); + size_t sizeof_wfhw; + int (*round_waveform_tohw)(struct pwm_chip *, struct pwm_device *, const struct pwm_waveform *, void *); + int (*round_waveform_fromhw)(struct pwm_chip *, struct pwm_device *, const void *, struct pwm_waveform *); + int (*read_waveform)(struct pwm_chip *, struct pwm_device *, void *); + int (*write_waveform)(struct pwm_chip *, struct pwm_device *, const void *); + int (*apply)(struct pwm_chip *, struct pwm_device *, const struct pwm_state *); + int (*get_state)(struct pwm_chip *, struct pwm_device *, struct pwm_state *); +}; + +struct pwmchip_waveform { + __u32 hwpwm; + __u32 __pad; + __u64 period_length_ns; + __u64 duty_length_ns; + __u64 duty_offset_ns; +}; + +struct trace_event_raw_pwm_round_waveform_tohw { + struct trace_entry ent; + unsigned int chipid; + unsigned int hwpwm; + u64 wf_period_length_ns; + u64 wf_duty_length_ns; + u64 wf_duty_offset_ns; + void *wfhw; + int err; + char __data[0]; +}; + +struct trace_event_raw_pwm_round_waveform_fromhw { + struct trace_entry ent; + unsigned int chipid; + unsigned int hwpwm; + const void *wfhw; + u64 wf_period_length_ns; + u64 wf_duty_length_ns; + u64 wf_duty_offset_ns; + int err; + char __data[0]; +}; + +struct trace_event_raw_pwm_read_waveform { + struct trace_entry ent; + unsigned int chipid; + unsigned int hwpwm; + void *wfhw; + int err; + char __data[0]; +}; + +struct trace_event_raw_pwm_write_waveform { + struct trace_entry ent; + unsigned int chipid; + unsigned int hwpwm; + const void *wfhw; + int err; + char __data[0]; +}; + +struct trace_event_raw_pwm { + struct trace_entry ent; + unsigned int chipid; + unsigned int hwpwm; + u64 period; + u64 duty_cycle; + enum pwm_polarity polarity; + bool enabled; + int err; + char __data[0]; +}; + +struct trace_event_data_offsets_pwm_round_waveform_tohw {}; + +struct trace_event_data_offsets_pwm_round_waveform_fromhw {}; + +struct trace_event_data_offsets_pwm_read_waveform {}; + +struct trace_event_data_offsets_pwm_write_waveform {}; + +struct trace_event_data_offsets_pwm {}; + +typedef void (*btf_trace_pwm_round_waveform_tohw)(void *, struct pwm_device *, const struct pwm_waveform *, void *, int); + +typedef void (*btf_trace_pwm_round_waveform_fromhw)(void *, struct pwm_device *, const void *, struct pwm_waveform *, int); + +typedef void (*btf_trace_pwm_read_waveform)(void *, struct pwm_device *, void *, int); + +typedef void (*btf_trace_pwm_write_waveform)(void *, struct pwm_device *, const void *, int); + +typedef void (*btf_trace_pwm_apply)(void *, struct pwm_device *, const struct pwm_state *, int); + +typedef void (*btf_trace_pwm_get)(void *, struct pwm_device *, const struct pwm_state *, int); + +typedef struct pwm_chip *class_pwmchip_t; + +struct pwm_export { + struct device pwm_dev; + struct pwm_device *pwm; + struct mutex lock; + struct pwm_state suspend; +}; + +struct pwm_cdev_data { + struct pwm_chip *chip; + struct pwm_device *pwm[0]; +}; + +struct pci_bus_resource { + struct list_head list; + struct resource *res; +}; + +struct msi_map { + int index; + int virq; +}; + +struct portdrv_service_data { + struct pcie_port_service_driver *drv; + struct device *dev; + u32 service; +}; + +typedef int (*pcie_callback_t)(struct pcie_device *); + +struct pcie_link_state { + struct pci_dev *pdev; + struct pci_dev *downstream; + struct pcie_link_state *root; + struct pcie_link_state *parent; + struct list_head sibling; + u32 aspm_support: 7; + u32 aspm_enabled: 7; + u32 aspm_capable: 7; + u32 aspm_default: 7; + int: 4; + u32 aspm_disable: 7; + u32 clkpm_capable: 1; + u32 clkpm_enabled: 1; + u32 clkpm_default: 1; + u32 clkpm_disable: 1; +}; + +struct pcie_pme_service_data { + spinlock_t lock; + struct pcie_device *srv; + struct work_struct work; + bool noirq; +}; + +struct cpci_hp_controller_ops { + int (*query_enum)(void); + int (*enable_irq)(void); + int (*disable_irq)(void); + int (*check_irq)(void *); +}; + +struct cpci_hp_controller { + unsigned int irq; + long unsigned int irq_flags; + char *devname; + void *dev_id; + char *name; + struct cpci_hp_controller_ops *ops; +}; + +struct event_info { + u32 event_type; + struct slot___2 *p_slot; + struct work_struct work; +}; + +struct pushbutton_work_info { + struct slot___2 *p_slot; + struct work_struct work; +}; + +struct acpiphp_attention_info { + int (*set_attn)(struct hotplug_slot *, u8); + int (*get_attn)(struct hotplug_slot *, u8 *); + struct module *owner; +}; + +struct pci_p2pdma { + struct gen_pool *pool; + bool p2pmem_published; + struct xarray map_types; +}; + +struct pci_p2pdma_pagemap { + struct pci_dev *provider; + u64 bus_offset; + struct dev_pagemap pgmap; +}; + +struct pci_p2pdma_whitelist_entry { + short unsigned int vendor; + short unsigned int device; + enum { + REQ_SAME_HOST_BRIDGE = 1, + } flags; +}; + +struct pci_epf_group { + struct config_group group; + struct config_group primary_epc_group; + struct config_group secondary_epc_group; + struct delayed_work cfs_work; + struct pci_epf *epf; + int index; +}; + +struct pci_epc_group { + struct config_group group; + struct pci_epc *epc; + bool start; +}; + +struct pci_epf_msix_tbl { + u64 msg_addr; + u32 msg_data; + u32 vector_ctrl; +}; + +struct dw_pcie_ep_func { + struct list_head list; + u8 func_no; + u8 msi_cap; + u8 msix_cap; +}; + +struct dp_sdp_header { + u8 HB0; + u8 HB1; + u8 HB2; + u8 HB3; +}; + +struct dp_sdp { + struct dp_sdp_header sdp_header; + u8 db[32]; +}; + +struct fb_cvt_data { + u32 xres; + u32 yres; + u32 refresh; + u32 f_refresh; + u32 pixclock; + u32 hperiod; + u32 hblank; + u32 hfreq; + u32 htotal; + u32 vtotal; + u32 vsync; + u32 hsync; + u32 h_front_porch; + u32 h_back_porch; + u32 v_front_porch; + u32 v_back_porch; + u32 h_margin; + u32 v_margin; + u32 interlace; + u32 aspect_ratio; + u32 active_pixels; + u32 flags; + u32 status; +}; + +enum backlight_type { + BACKLIGHT_RAW = 1, + BACKLIGHT_PLATFORM = 2, + BACKLIGHT_FIRMWARE = 3, + BACKLIGHT_TYPE_MAX = 4, +}; + +enum backlight_scale { + BACKLIGHT_SCALE_UNKNOWN = 0, + BACKLIGHT_SCALE_LINEAR = 1, + BACKLIGHT_SCALE_NON_LINEAR = 2, +}; + +struct backlight_properties { + int brightness; + int max_brightness; + int power; + enum backlight_type type; + unsigned int state; + enum backlight_scale scale; +}; + +struct backlight_ops; + +struct backlight_device { + struct backlight_properties props; + struct mutex update_lock; + struct mutex ops_lock; + const struct backlight_ops *ops; + struct list_head entry; + struct device dev; + int use_count; +}; + +struct backlight_ops { + unsigned int options; + int (*update_status)(struct backlight_device *); + int (*get_brightness)(struct backlight_device *); + bool (*controls_device)(struct backlight_device *, struct device *); +}; + +struct ipmi_dmi_info { + enum si_type si_type; + unsigned int space; + long unsigned int addr; + u8 slave_addr; + struct ipmi_dmi_info *next; +}; + +struct acpi_wakeup_handler { + struct list_head list_node; + bool (*wakeup)(void *); + void *context; +}; + +struct acpi_table_stao { + struct acpi_table_header header; + u8 ignore_uart; +} __attribute__((packed)); + +enum acpi_bus_device_type { + ACPI_BUS_TYPE_DEVICE = 0, + ACPI_BUS_TYPE_POWER = 1, + ACPI_BUS_TYPE_PROCESSOR = 2, + ACPI_BUS_TYPE_THERMAL = 3, + ACPI_BUS_TYPE_POWER_BUTTON = 4, + ACPI_BUS_TYPE_SLEEP_BUTTON = 5, + ACPI_BUS_TYPE_ECDT_EC = 6, + ACPI_BUS_DEVICE_TYPE_COUNT = 7, +}; + +struct acpi_dep_data { + struct list_head node; + acpi_handle supplier; + acpi_handle consumer; + bool honor_dep; + bool met; + bool free_when_met; +}; + +struct acpi_probe_entry; + +typedef bool (*acpi_probe_entry_validate_subtbl)(struct acpi_subtable_header *, struct acpi_probe_entry *); + +struct acpi_probe_entry { + __u8 id[5]; + __u8 type; + acpi_probe_entry_validate_subtbl subtable_valid; + union { + acpi_tbl_table_handler probe_table; + acpi_tbl_entry_handler probe_subtbl; + }; + kernel_ulong_t driver_data; +}; + +struct acpi_scan_clear_dep_work { + struct work_struct work; + struct acpi_device *adev; +}; + +struct acpi_madt_generic_interrupt { + struct acpi_subtable_header header; + u16 reserved; + u32 cpu_interface_number; + u32 uid; + u32 flags; + u32 parking_version; + u32 performance_interrupt; + u64 parked_address; + u64 base_address; + u64 gicv_base_address; + u64 gich_base_address; + u32 vgic_interrupt; + u64 gicr_base_address; + u64 arm_mpidr; + u8 efficiency_class; + u8 reserved2[1]; + u16 spe_interrupt; + u16 trbe_interrupt; +} __attribute__((packed)); + +struct acpi_madt_core_pic { + struct acpi_subtable_header header; + u8 version; + u32 processor_id; + u32 core_id; + u32 flags; +} __attribute__((packed)); + +struct acpi_madt_rintc { + struct acpi_subtable_header header; + u8 version; + u8 reserved; + u32 flags; + u64 hart_id; + u32 uid; + u32 ext_intc_id; + u64 imsic_addr; + u32 imsic_size; +} __attribute__((packed)); + +struct acpi_table_ecdt { + struct acpi_table_header header; + struct acpi_generic_address control; + struct acpi_generic_address data; + u32 uid; + u8 gpe; + u8 id[0]; +} __attribute__((packed)); + +enum acpi_ec_event_state { + EC_EVENT_READY = 0, + EC_EVENT_IN_PROGRESS = 1, + EC_EVENT_COMPLETE = 2, +}; + +struct transaction; + +struct acpi_ec { + acpi_handle handle; + int gpe; + int irq; + long unsigned int command_addr; + long unsigned int data_addr; + bool global_lock; + long unsigned int flags; + long unsigned int reference_count; + struct mutex mutex; + wait_queue_head_t wait; + struct list_head list; + struct transaction *curr; + spinlock_t lock; + struct work_struct work; + long unsigned int timestamp; + enum acpi_ec_event_state event_state; + unsigned int events_to_process; + unsigned int events_in_progress; + unsigned int queries_in_progress; + bool busy_polling; + unsigned int polling_guard; +}; + +struct transaction { + const u8 *wdata; + u8 *rdata; + short unsigned int irq_count; + u8 command; + u8 wi; + u8 ri; + u8 wlen; + u8 rlen; + u8 flags; +}; + +typedef int (*acpi_ec_query_func)(void *); + +enum ec_command { + ACPI_EC_COMMAND_READ = 128, + ACPI_EC_COMMAND_WRITE = 129, + ACPI_EC_BURST_ENABLE = 130, + ACPI_EC_BURST_DISABLE = 131, + ACPI_EC_COMMAND_QUERY = 132, +}; + +enum { + EC_FLAGS_QUERY_ENABLED = 0, + EC_FLAGS_EVENT_HANDLER_INSTALLED = 1, + EC_FLAGS_EC_HANDLER_INSTALLED = 2, + EC_FLAGS_EC_REG_CALLED = 3, + EC_FLAGS_QUERY_METHODS_INSTALLED = 4, + EC_FLAGS_STARTED = 5, + EC_FLAGS_STOPPED = 6, + EC_FLAGS_EVENTS_MASKED = 7, +}; + +struct acpi_ec_query_handler { + struct list_head node; + acpi_ec_query_func func; + acpi_handle handle; + void *data; + u8 query_bit; + struct kref kref; +}; + +struct acpi_ec_query { + struct transaction transaction; + struct work_struct work; + struct acpi_ec_query_handler *handler; + struct acpi_ec *ec; +}; + +struct acpi_power_dependent_device { + struct device *dev; + struct list_head node; +}; + +struct acpi_power_resource { + struct acpi_device device; + struct list_head list_node; + u32 system_level; + u32 order; + unsigned int ref_count; + u8 state; + struct mutex resource_lock; + struct list_head dependents; +}; + +struct acpi_power_resource_entry { + struct list_head node; + struct acpi_power_resource *resource; +}; + +struct acpi_device_properties { + struct list_head list; + const guid_t *guid; + union acpi_object *properties; + void **bufs; +}; + +struct acpi_table_lpit { + struct acpi_table_header header; +}; + +struct acpi_lpit_header { + u32 type; + u32 length; + u16 unique_id; + u16 reserved; + u32 flags; +}; + +struct acpi_lpit_native { + struct acpi_lpit_header header; + struct acpi_generic_address entry_trigger; + u32 residency; + u32 latency; + struct acpi_generic_address residency_counter; + u64 counter_frequency; +}; + +struct lpit_residency_info { + struct acpi_generic_address gaddr; + u64 frequency; + void *iomem_addr; +}; + +struct acpi_gpe_walk_info { + struct acpi_namespace_node *gpe_device; + struct acpi_gpe_block_info *gpe_block; + u16 count; + acpi_owner_id owner_id; + u8 execute_by_owner_id; +}; + +struct acpi_exdump_info { + u8 opcode; + u8 offset; + const char *name; +} __attribute__((packed)); + +enum { + MATCH_MTR = 0, + MATCH_MEQ = 1, + MATCH_MLE = 2, + MATCH_MLT = 3, + MATCH_MGE = 4, + MATCH_MGT = 5, +}; + +struct acpi_port_info { + char *name; + u16 start; + u16 end; + u8 osi_dependency; +}; + +struct acpi_init_walk_info { + u32 table_index; + u32 object_count; + u32 method_count; + u32 serial_method_count; + u32 non_serial_method_count; + u32 serialized_method_count; + u32 device_count; + u32 op_region_count; + u32 field_count; + u32 buffer_count; + u32 package_count; + u32 op_region_init; + u32 field_init; + u32 buffer_init; + u32 package_init; + acpi_owner_id owner_id; +}; + +struct acpi_device_walk_info { + struct acpi_table_desc *table_desc; + struct acpi_evaluate_info *evaluate_info; + u32 device_count; + u32 num_STA; + u32 num_INI; +}; + +typedef acpi_status (*acpi_object_converter)(struct acpi_namespace_node *, union acpi_operand_object *, union acpi_operand_object **); + +struct acpi_simple_repair_info { + char name[4]; + u32 unexpected_btypes; + u32 package_index; + acpi_object_converter object_converter; +}; + +struct acpi_namestring_info { + const char *external_name; + const char *next_external_char; + char *internal_name; + u32 length; + u32 num_segments; + u32 num_carats; + u8 fully_qualified; +}; + +struct acpi_vendor_walk_info { + struct acpi_vendor_uuid *uuid; + struct acpi_buffer *buffer; + acpi_status status; +}; + +struct acpi_comment_node { + char *comment; + struct acpi_comment_node *next; +}; + +struct acpi_db_method_info { + acpi_handle method; + acpi_handle main_thread_gate; + acpi_handle thread_complete_gate; + acpi_handle info_gate; + u64 *threads; + u32 num_threads; + u32 num_created; + u32 num_completed; + char *name; + u32 flags; + u32 num_loops; + char pathname[512]; + char **args; + acpi_object_type *types; + char init_args; + acpi_object_type arg_types[7]; + char *arguments[7]; + char num_threads_str[11]; + char id_of_thread_str[11]; + char index_of_thread_str[11]; +}; + +struct acpi_integrity_info { + u32 nodes; + u32 objects; +}; + +struct acpi_object_info { + u32 types[28]; +}; + +struct acpi_region_walk_info { + u32 debug_level; + u32 count; + acpi_owner_id owner_id; + u8 display_type; + u32 address_space_id; +}; + +enum { + ACPI_BUTTON_LID_INIT_IGNORE = 0, + ACPI_BUTTON_LID_INIT_OPEN = 1, + ACPI_BUTTON_LID_INIT_METHOD = 2, + ACPI_BUTTON_LID_INIT_DISABLED = 3, +}; + +struct acpi_button { + unsigned int type; + struct input_dev *input; + char phys[32]; + long unsigned int pushed; + int last_state; + ktime_t last_time; + bool suspended; + bool lid_state_initialized; +}; + +struct acpi_lpi_states_array { + unsigned int size; + unsigned int composite_states_size; + struct acpi_lpi_state *entries; + struct acpi_lpi_state *composite_states[8]; +}; + +struct nd_intel_get_security_state { + u32 status; + u8 extended_state; + u8 reserved[3]; + u8 state; + u8 reserved1[3]; +}; + +struct nd_intel_set_passphrase { + u8 old_pass[32]; + u8 new_pass[32]; + u32 status; +}; + +struct nd_intel_unlock_unit { + u8 passphrase[32]; + u32 status; +}; + +struct nd_intel_disable_passphrase { + u8 passphrase[32]; + u32 status; +}; + +struct nd_intel_freeze_lock { + u32 status; +}; + +struct nd_intel_secure_erase { + u8 passphrase[32]; + u32 status; +}; + +struct nd_intel_overwrite { + u8 passphrase[32]; + u32 status; +}; + +struct nd_intel_query_overwrite { + u32 status; +}; + +struct nd_intel_fw_activate_dimminfo { + u32 status; + u16 result; + u8 state; + u8 reserved[7]; +} __attribute__((packed)); + +struct nd_intel_fw_activate_arm { + u8 activate_arm; + u32 status; +} __attribute__((packed)); + +struct nd_intel_bus_fw_activate_businfo { + u32 status; + u16 reserved; + u8 state; + u8 capability; + u64 activate_tmo; + u64 cpu_quiesce_tmo; + u64 io_quiesce_tmo; + u64 max_quiesce_tmo; +}; + +struct nd_intel_bus_fw_activate { + u8 iodev_state; + u32 status; +} __attribute__((packed)); + +enum acpi_cedt_type { + ACPI_CEDT_TYPE_CHBS = 0, + ACPI_CEDT_TYPE_CFMWS = 1, + ACPI_CEDT_TYPE_CXIMS = 2, + ACPI_CEDT_TYPE_RDPAS = 3, + ACPI_CEDT_TYPE_RESERVED = 4, +}; + +struct acpi_cedt_cfmws { + struct acpi_cedt_header header; + u32 reserved1; + u64 base_hpa; + u64 window_size; + u8 interleave_ways; + u8 interleave_arithmetic; + u16 reserved2; + u32 granularity; + u16 restrictions; + u16 qtg_id; + u32 interleave_targets[0]; +} __attribute__((packed)); + +struct acpi_table_slit { + struct acpi_table_header header; + u64 locality_count; + u8 entry[0]; +} __attribute__((packed)); + +struct acpi_table_srat { + struct acpi_table_header header; + u32 table_revision; + u64 reserved; +}; + +enum acpi_srat_type { + ACPI_SRAT_TYPE_CPU_AFFINITY = 0, + ACPI_SRAT_TYPE_MEMORY_AFFINITY = 1, + ACPI_SRAT_TYPE_X2APIC_CPU_AFFINITY = 2, + ACPI_SRAT_TYPE_GICC_AFFINITY = 3, + ACPI_SRAT_TYPE_GIC_ITS_AFFINITY = 4, + ACPI_SRAT_TYPE_GENERIC_AFFINITY = 5, + ACPI_SRAT_TYPE_GENERIC_PORT_AFFINITY = 6, + ACPI_SRAT_TYPE_RINTC_AFFINITY = 7, + ACPI_SRAT_TYPE_RESERVED = 8, +}; + +struct acpi_srat_cpu_affinity { + struct acpi_subtable_header header; + u8 proximity_domain_lo; + u8 apic_id; + u32 flags; + u8 local_sapic_eid; + u8 proximity_domain_hi[3]; + u32 clock_domain; +}; + +struct acpi_srat_mem_affinity { + struct acpi_subtable_header header; + u32 proximity_domain; + u16 reserved; + u64 base_address; + u64 length; + u32 reserved1; + u32 flags; + u64 reserved2; +} __attribute__((packed)); + +struct acpi_srat_x2apic_cpu_affinity { + struct acpi_subtable_header header; + u16 reserved; + u32 proximity_domain; + u32 apic_id; + u32 flags; + u32 clock_domain; + u32 reserved2; +}; + +struct acpi_srat_gicc_affinity { + struct acpi_subtable_header header; + u32 proximity_domain; + u32 acpi_processor_uid; + u32 flags; + u32 clock_domain; +} __attribute__((packed)); + +struct acpi_srat_generic_affinity { + struct acpi_subtable_header header; + u8 reserved; + u8 device_handle_type; + u32 proximity_domain; + u8 device_handle[16]; + u32 flags; + u32 reserved1; +}; + +struct acpi_srat_rintc_affinity { + struct acpi_subtable_header header; + u16 reserved; + u32 proximity_domain; + u32 acpi_processor_uid; + u32 flags; + u32 clock_domain; +}; + +struct access_coordinate { + unsigned int read_bandwidth; + unsigned int write_bandwidth; + unsigned int read_latency; + unsigned int write_latency; +}; + +enum cache_indexing { + NODE_CACHE_DIRECT_MAP = 0, + NODE_CACHE_INDEXED = 1, + NODE_CACHE_OTHER = 2, +}; + +enum cache_write_policy { + NODE_CACHE_WRITE_BACK = 0, + NODE_CACHE_WRITE_THROUGH = 1, + NODE_CACHE_WRITE_OTHER = 2, +}; + +enum cache_mode { + NODE_CACHE_ADDR_MODE_RESERVED = 0, + NODE_CACHE_ADDR_MODE_EXTENDED_LINEAR = 1, +}; + +struct node_cache_attrs { + enum cache_indexing indexing; + enum cache_write_policy write_policy; + u64 size; + u16 line_size; + u8 level; + u16 address_mode; +}; + +enum acpi_hmat_type { + ACPI_HMAT_TYPE_PROXIMITY = 0, + ACPI_HMAT_TYPE_LOCALITY = 1, + ACPI_HMAT_TYPE_CACHE = 2, + ACPI_HMAT_TYPE_RESERVED = 3, +}; + +struct acpi_hmat_proximity_domain { + struct acpi_hmat_structure header; + u16 flags; + u16 reserved1; + u32 processor_PD; + u32 memory_PD; + u32 reserved2; + u64 reserved3; + u64 reserved4; +}; + +struct acpi_hmat_locality { + struct acpi_hmat_structure header; + u8 flags; + u8 data_type; + u8 min_transfer_size; + u8 reserved1; + u32 number_of_initiator_Pds; + u32 number_of_target_Pds; + u32 reserved2; + u64 entry_base_unit; +}; + +struct acpi_hmat_cache { + struct acpi_hmat_structure header; + u32 memory_PD; + u32 reserved1; + u64 cache_size; + u32 cache_attributes; + u16 address_mode; + u16 number_of_SMBIOShandles; +}; + +enum locality_types { + WRITE_LATENCY = 0, + READ_LATENCY = 1, + WRITE_BANDWIDTH = 2, + READ_BANDWIDTH = 3, +}; + +struct memory_locality { + struct list_head node; + struct acpi_hmat_locality *hmat_loc; +}; + +struct target_cache { + struct list_head node; + struct node_cache_attrs cache_attrs; +}; + +enum { + NODE_ACCESS_CLASS_GENPORT_SINK_LOCAL = 2, + NODE_ACCESS_CLASS_GENPORT_SINK_CPU = 3, + NODE_ACCESS_CLASS_MAX = 4, +}; + +struct memory_target { + struct list_head node; + unsigned int memory_pxm; + unsigned int processor_pxm; + struct resource memregions; + struct access_coordinate coord[4]; + struct list_head caches; + struct node_cache_attrs cache_attrs; + u8 gen_port_device_handle[16]; + bool registered; + bool ext_updated; +}; + +struct memory_initiator { + struct list_head node; + unsigned int processor_pxm; + bool has_cpu; +}; + +struct acpi_pcct_shared_memory { + u32 signature; + u16 command; + u16 status; +}; + +struct cpc_register_resource { + acpi_object_type type; + u64 *sys_mem_vaddr; + union { + struct cpc_reg reg; + u64 int_value; + } cpc_entry; +}; + +struct cpc_desc { + int num_entries; + int version; + int cpu_id; + int write_cmd_status; + int write_cmd_id; + raw_spinlock_t rmw_lock; + struct cpc_register_resource cpc_regs[21]; + struct acpi_psd_package domain_info; + struct kobject kobj; +}; + +enum cppc_regs { + HIGHEST_PERF = 0, + NOMINAL_PERF = 1, + LOW_NON_LINEAR_PERF = 2, + LOWEST_PERF = 3, + GUARANTEED_PERF = 4, + DESIRED_PERF = 5, + MIN_PERF = 6, + MAX_PERF = 7, + PERF_REDUC_TOLERANCE = 8, + TIME_WINDOW = 9, + CTR_WRAP_TIME = 10, + REFERENCE_CTR = 11, + DELIVERED_CTR = 12, + PERF_LIMITED = 13, + ENABLE = 14, + AUTO_SEL_ENABLE = 15, + AUTO_ACT_WINDOW = 16, + ENERGY_PERF = 17, + REFERENCE_PERF = 18, + LOWEST_FREQ = 19, + NOMINAL_FREQ = 20, +}; + +struct cppc_perf_ctrls { + u32 max_perf; + u32 min_perf; + u32 desired_perf; + u32 energy_perf; +}; + +struct cppc_perf_fb_ctrs { + u64 reference; + u64 delivered; + u64 reference_perf; + u64 wraparound_time; +}; + +struct cppc_cpudata { + struct cppc_perf_caps perf_caps; + struct cppc_perf_ctrls perf_ctrls; + struct cppc_perf_fb_ctrs perf_fb_ctrs; + unsigned int shared_type; + cpumask_var_t shared_cpu_map; +}; + +struct cppc_pcc_data { + struct pcc_mbox_chan *pcc_channel; + bool pcc_channel_acquired; + unsigned int deadline_us; + unsigned int pcc_mpar; + unsigned int pcc_mrtt; + unsigned int pcc_nominal; + bool pending_pcc_write_cmd; + bool platform_owns_pcc; + unsigned int pcc_write_cnt; + struct rw_semaphore pcc_lock; + wait_queue_head_t pcc_write_wait_q; + ktime_t last_cmd_cmpl_time; + ktime_t last_mpar_reset; + int mpar_count; + int refcount; +}; + +struct acpi_table_hest { + struct acpi_table_header header; + u32 error_source_count; +}; + +enum acpi_hest_types { + ACPI_HEST_TYPE_IA32_CHECK = 0, + ACPI_HEST_TYPE_IA32_CORRECTED_CHECK = 1, + ACPI_HEST_TYPE_IA32_NMI = 2, + ACPI_HEST_TYPE_NOT_USED3 = 3, + ACPI_HEST_TYPE_NOT_USED4 = 4, + ACPI_HEST_TYPE_NOT_USED5 = 5, + ACPI_HEST_TYPE_AER_ROOT_PORT = 6, + ACPI_HEST_TYPE_AER_ENDPOINT = 7, + ACPI_HEST_TYPE_AER_BRIDGE = 8, + ACPI_HEST_TYPE_GENERIC_ERROR = 9, + ACPI_HEST_TYPE_GENERIC_ERROR_V2 = 10, + ACPI_HEST_TYPE_IA32_DEFERRED_CHECK = 11, + ACPI_HEST_TYPE_RESERVED = 12, +}; + +struct acpi_hest_ia_machine_check { + struct acpi_hest_header header; + u16 reserved1; + u8 flags; + u8 enabled; + u32 records_to_preallocate; + u32 max_sections_per_record; + u64 global_capability_data; + u64 global_control_data; + u8 num_hardware_banks; + u8 reserved3[7]; +}; + +struct acpi_hest_generic { + struct acpi_hest_header header; + u16 related_source_id; + u8 reserved; + u8 enabled; + u32 records_to_preallocate; + u32 max_sections_per_record; + u32 max_raw_data_length; + struct acpi_generic_address error_status_address; + struct acpi_hest_notify notify; + u32 error_block_length; +}; + +struct acpi_hest_ia_deferred_check { + struct acpi_hest_header header; + u16 reserved1; + u8 flags; + u8 enabled; + u32 records_to_preallocate; + u32 max_sections_per_record; + struct acpi_hest_notify notify; + u8 num_hardware_banks; + u8 reserved2[3]; +}; + +enum hest_status { + HEST_ENABLED = 0, + HEST_DISABLED = 1, + HEST_NOT_FOUND = 2, +}; + +typedef int (*apei_hest_func_t)(struct acpi_hest_header *, void *); + +struct acpi_table_erst { + struct acpi_table_header header; + u32 header_length; + u32 reserved; + u32 entries; +}; + +enum acpi_erst_actions { + ACPI_ERST_BEGIN_WRITE = 0, + ACPI_ERST_BEGIN_READ = 1, + ACPI_ERST_BEGIN_CLEAR = 2, + ACPI_ERST_END = 3, + ACPI_ERST_SET_RECORD_OFFSET = 4, + ACPI_ERST_EXECUTE_OPERATION = 5, + ACPI_ERST_CHECK_BUSY_STATUS = 6, + ACPI_ERST_GET_COMMAND_STATUS = 7, + ACPI_ERST_GET_RECORD_ID = 8, + ACPI_ERST_SET_RECORD_ID = 9, + ACPI_ERST_GET_RECORD_COUNT = 10, + ACPI_ERST_BEGIN_DUMMY_WRIITE = 11, + ACPI_ERST_NOT_USED = 12, + ACPI_ERST_GET_ERROR_RANGE = 13, + ACPI_ERST_GET_ERROR_LENGTH = 14, + ACPI_ERST_GET_ERROR_ATTRIBUTES = 15, + ACPI_ERST_EXECUTE_TIMINGS = 16, + ACPI_ERST_ACTION_RESERVED = 17, +}; + +enum acpi_erst_instructions { + ACPI_ERST_READ_REGISTER = 0, + ACPI_ERST_READ_REGISTER_VALUE = 1, + ACPI_ERST_WRITE_REGISTER = 2, + ACPI_ERST_WRITE_REGISTER_VALUE = 3, + ACPI_ERST_NOOP = 4, + ACPI_ERST_LOAD_VAR1 = 5, + ACPI_ERST_LOAD_VAR2 = 6, + ACPI_ERST_STORE_VAR1 = 7, + ACPI_ERST_ADD = 8, + ACPI_ERST_SUBTRACT = 9, + ACPI_ERST_ADD_VALUE = 10, + ACPI_ERST_SUBTRACT_VALUE = 11, + ACPI_ERST_STALL = 12, + ACPI_ERST_STALL_WHILE_TRUE = 13, + ACPI_ERST_SKIP_NEXT_IF_TRUE = 14, + ACPI_ERST_GOTO = 15, + ACPI_ERST_SET_SRC_ADDRESS_BASE = 16, + ACPI_ERST_SET_DST_ADDRESS_BASE = 17, + ACPI_ERST_MOVE_DATA = 18, + ACPI_ERST_INSTRUCTION_RESERVED = 19, +}; + +struct cper_record_header { + char signature[4]; + u16 revision; + u32 signature_end; + u16 section_count; + u32 error_severity; + u32 validation_bits; + u32 record_length; + u64 timestamp; + guid_t platform_id; + guid_t partition_id; + guid_t creator_id; + guid_t notification_type; + u64 record_id; + u32 flags; + u64 persistence_information; + u8 reserved[12]; +} __attribute__((packed)); + +struct cper_section_descriptor { + u32 section_offset; + u32 section_length; + u16 revision; + u8 validation_bits; + u8 reserved; + u32 flags; + guid_t section_type; + guid_t fru_id; + u32 section_severity; + u8 fru_text[20]; +}; + +struct erst_erange { + u64 base; + u64 size; + void *vaddr; + u32 attr; + u64 timings; +}; + +struct erst_record_id_cache { + struct mutex lock; + u64 *entries; + int len; + int size; + int refcount; +}; + +struct cper_pstore_record { + struct cper_record_header hdr; + struct cper_section_descriptor sec_hdr; + char data[0]; +}; + +struct pnp_fixup { + char id[8]; + void (*quirk_function)(struct pnp_dev *); +}; + +struct devm_clk_state { + struct clk *clk; + void (*exit)(struct clk *); +}; + +struct clk_bulk_devres { + struct clk_bulk_data *clks; + int num_clks; +}; + +struct clk_notifier { + struct clk *clk; + struct srcu_notifier_head notifier_head; + struct list_head node; +}; + +struct clk_notifier_data { + struct clk *clk; + long unsigned int old_rate; + long unsigned int new_rate; +}; + +struct clk_parent_map; + +struct clk_core { + const char *name; + const struct clk_ops *ops; + struct clk_hw *hw; + struct module *owner; + struct device *dev; + struct hlist_node rpm_node; + struct device_node *of_node; + struct clk_core *parent; + struct clk_parent_map *parents; + u8 num_parents; + u8 new_parent_index; + long unsigned int rate; + long unsigned int req_rate; + long unsigned int new_rate; + struct clk_core *new_parent; + struct clk_core *new_child; + long unsigned int flags; + bool orphan; + bool rpm_enabled; + unsigned int enable_count; + unsigned int prepare_count; + unsigned int protect_count; + long unsigned int min_rate; + long unsigned int max_rate; + long unsigned int accuracy; + int phase; + struct clk_duty duty; + struct hlist_head children; + struct hlist_node child_node; + struct hlist_head clks; + unsigned int notifier_count; + struct dentry *dentry; + struct hlist_node debug_node; + struct kref ref; +}; + +struct clk_parent_map { + const struct clk_hw *hw; + struct clk_core *core; + const char *fw_name; + const char *name; + int index; +}; + +struct trace_event_raw_clk { + struct trace_entry ent; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_clk_rate { + struct trace_entry ent; + u32 __data_loc_name; + long unsigned int rate; + char __data[0]; +}; + +struct trace_event_raw_clk_rate_range { + struct trace_entry ent; + u32 __data_loc_name; + long unsigned int min; + long unsigned int max; + char __data[0]; +}; + +struct trace_event_raw_clk_parent { + struct trace_entry ent; + u32 __data_loc_name; + u32 __data_loc_pname; + char __data[0]; +}; + +struct trace_event_raw_clk_phase { + struct trace_entry ent; + u32 __data_loc_name; + int phase; + char __data[0]; +}; + +struct trace_event_raw_clk_duty_cycle { + struct trace_entry ent; + u32 __data_loc_name; + unsigned int num; + unsigned int den; + char __data[0]; +}; + +struct trace_event_raw_clk_rate_request { + struct trace_entry ent; + u32 __data_loc_name; + u32 __data_loc_pname; + long unsigned int min; + long unsigned int max; + long unsigned int prate; + char __data[0]; +}; + +struct trace_event_data_offsets_clk { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_clk_rate { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_clk_rate_range { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_clk_parent { + u32 name; + const void *name_ptr_; + u32 pname; + const void *pname_ptr_; +}; + +struct trace_event_data_offsets_clk_phase { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_clk_duty_cycle { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_clk_rate_request { + u32 name; + const void *name_ptr_; + u32 pname; + const void *pname_ptr_; +}; + +typedef void (*btf_trace_clk_enable)(void *, struct clk_core *); + +typedef void (*btf_trace_clk_enable_complete)(void *, struct clk_core *); + +typedef void (*btf_trace_clk_disable)(void *, struct clk_core *); + +typedef void (*btf_trace_clk_disable_complete)(void *, struct clk_core *); + +typedef void (*btf_trace_clk_prepare)(void *, struct clk_core *); + +typedef void (*btf_trace_clk_prepare_complete)(void *, struct clk_core *); + +typedef void (*btf_trace_clk_unprepare)(void *, struct clk_core *); + +typedef void (*btf_trace_clk_unprepare_complete)(void *, struct clk_core *); + +typedef void (*btf_trace_clk_set_rate)(void *, struct clk_core *, long unsigned int); + +typedef void (*btf_trace_clk_set_rate_complete)(void *, struct clk_core *, long unsigned int); + +typedef void (*btf_trace_clk_set_min_rate)(void *, struct clk_core *, long unsigned int); + +typedef void (*btf_trace_clk_set_max_rate)(void *, struct clk_core *, long unsigned int); + +typedef void (*btf_trace_clk_set_rate_range)(void *, struct clk_core *, long unsigned int, long unsigned int); + +typedef void (*btf_trace_clk_set_parent)(void *, struct clk_core *, struct clk_core *); + +typedef void (*btf_trace_clk_set_parent_complete)(void *, struct clk_core *, struct clk_core *); + +typedef void (*btf_trace_clk_set_phase)(void *, struct clk_core *, int); + +typedef void (*btf_trace_clk_set_phase_complete)(void *, struct clk_core *, int); + +typedef void (*btf_trace_clk_set_duty_cycle)(void *, struct clk_core *, struct clk_duty *); + +typedef void (*btf_trace_clk_set_duty_cycle_complete)(void *, struct clk_core *, struct clk_duty *); + +typedef void (*btf_trace_clk_rate_request_start)(void *, struct clk_rate_request *); + +typedef void (*btf_trace_clk_rate_request_done)(void *, struct clk_rate_request *); + +struct clk_notifier_devres { + struct clk *clk; + struct notifier_block *nb; +}; + +struct pmc_clk { + const char *name; + long unsigned int freq; + const char *parent_name; +}; + +struct pmc_clk_data { + void *base; + const struct pmc_clk *clks; + bool critical; +}; + +struct clk_plt_fixed { + struct clk_hw *clk; + struct clk_lookup *lookup; +}; + +struct clk_plt { + struct clk_hw hw; + void *reg; + struct clk_lookup *lookup; + spinlock_t lock; +}; + +struct clk_plt_data { + struct clk_plt_fixed **parents; + u8 nparents; + struct clk_plt *clks[6]; + struct clk_lookup *mclk_lookup; + struct clk_lookup *ether_clk_lookup; +}; + +struct hsu_dma_chan; + +struct hsu_dma { + struct dma_device dma; + struct hsu_dma_chan *chan; + short unsigned int nr_channels; +}; + +struct hsu_dma_sg { + dma_addr_t addr; + unsigned int len; +}; + +struct hsu_dma_desc { + struct virt_dma_desc vdesc; + enum dma_transfer_direction direction; + struct hsu_dma_sg *sg; + unsigned int nents; + size_t length; + unsigned int active; + enum dma_status status; +}; + +struct hsu_dma_chan { + struct virt_dma_chan vchan; + void *reg; + enum dma_transfer_direction direction; + struct dma_slave_config config; + struct hsu_dma_desc *desc; +}; + +struct virtio_admin_cmd_hdr { + __le16 opcode; + __le16 group_type; + __u8 reserved1[12]; + __le64 group_member_id; +}; + +struct virtio_admin_cmd_status { + __le16 status; + __le16 status_qualifier; + __u8 reserved2[4]; +}; + +struct virtio_dev_parts_cap { + __u8 get_parts_resource_objects_limit; + __u8 set_parts_resource_objects_limit; +}; + +struct virtio_admin_cmd_query_cap_id_result { + __le64 supported_caps[1]; +}; + +struct virtio_admin_cmd_cap_get_data { + __le16 id; + __u8 reserved[6]; +}; + +struct virtio_admin_cmd_cap_set_data { + __le16 id; + __u8 reserved[6]; + __u8 cap_specific_data[0]; +}; + +struct virtio_admin_cmd_resource_obj_cmd_hdr { + __le16 type; + __u8 reserved[2]; + __le32 id; +}; + +struct virtio_admin_cmd_resource_obj_create_data { + struct virtio_admin_cmd_resource_obj_cmd_hdr hdr; + __le64 flags; + __u8 resource_obj_specific_data[0]; +}; + +struct virtio_resource_obj_dev_parts { + __u8 type; + __u8 reserved[7]; +}; + +struct virtio_admin_cmd_dev_parts_metadata_data { + struct virtio_admin_cmd_resource_obj_cmd_hdr hdr; + __u8 type; + __u8 reserved[7]; +}; + +struct virtio_dev_part_hdr { + __le16 part_type; + __u8 flags; + __u8 reserved; + union { + struct { + __le32 offset; + __le32 reserved; + } pci_common_cfg; + struct { + __le16 index; + __u8 reserved[6]; + } vq_index; + } selector; + __le32 length; +}; + +struct virtio_admin_cmd_dev_parts_metadata_result { + union { + struct { + __le32 size; + __le32 reserved; + } parts_size; + struct { + __le32 count; + __le32 reserved; + } hdr_list_count; + struct { + __le32 count; + __le32 reserved; + struct virtio_dev_part_hdr hdrs[0]; + } hdr_list; + }; +}; + +struct virtio_admin_cmd_dev_parts_get_data { + struct virtio_admin_cmd_resource_obj_cmd_hdr hdr; + __u8 type; + __u8 reserved[7]; + struct virtio_dev_part_hdr hdr_list[0]; +}; + +struct virtio_admin_cmd_dev_mode_set_data { + __u8 flags; +}; + +enum { + REGULATOR_ERROR_CLEARED = 0, + REGULATOR_FAILED_RETRY = 1, + REGULATOR_ERROR_ON = 2, +}; + +struct regulator_irq { + struct regulator_irq_data rdata; + struct regulator_irq_desc desc; + int irq; + int retry_cnt; + struct delayed_work isr_work; +}; + +struct reset_simple_data { + spinlock_t lock; + void *membase; + struct reset_controller_dev rcdev; + bool active_low; + bool status_active_low; + unsigned int reset_us; +}; + +struct reset_simple_devdata { + u32 reg_offset; + u32 nr_resets; + bool active_low; + bool status_active_low; +}; + +struct termios { + tcflag_t c_iflag; + tcflag_t c_oflag; + tcflag_t c_cflag; + tcflag_t c_lflag; + cc_t c_line; + cc_t c_cc[19]; +}; + +struct termios2 { + tcflag_t c_iflag; + tcflag_t c_oflag; + tcflag_t c_cflag; + tcflag_t c_lflag; + cc_t c_line; + cc_t c_cc[19]; + speed_t c_ispeed; + speed_t c_ospeed; +}; + +struct termio { + short unsigned int c_iflag; + short unsigned int c_oflag; + short unsigned int c_cflag; + short unsigned int c_lflag; + unsigned char c_line; + unsigned char c_cc[8]; +}; + +struct ldsem_waiter { + struct list_head list; + struct task_struct *task; +}; + +struct unipair { + short unsigned int unicode; + short unsigned int fontpos; +}; + +struct unimapdesc { + short unsigned int entry_ct; + struct unipair *entries; +}; + +struct kbentry { + unsigned char kb_table; + unsigned char kb_index; + short unsigned int kb_value; +}; + +struct kbsentry { + unsigned char kb_func; + unsigned char kb_string[512]; +}; + +struct kbkeycode { + unsigned int scancode; + unsigned int keycode; +}; + +struct kbd_repeat { + int delay; + int period; +}; + +struct vt_stat { + __u16 v_active; + __u16 v_signal; + __u16 v_state; +}; + +struct vt_sizes { + __u16 v_rows; + __u16 v_cols; + __u16 v_scrollsize; +}; + +struct vt_consize { + __u16 v_rows; + __u16 v_cols; + __u16 v_vlin; + __u16 v_clin; + __u16 v_vcol; + __u16 v_ccol; +}; + +struct vt_event { + __u32 event; + __u32 oldev; + __u32 newev; + __u32 pad[4]; +}; + +struct vt_setactivate { + __u32 console; + struct vt_mode mode; +}; + +struct vt_consizecsrpos { + __u16 con_rows; + __u16 con_cols; + __u16 csr_row; + __u16 csr_col; +}; + +struct vt_spawn_console { + spinlock_t lock; + struct pid *pid; + int sig; +}; + +struct vt_event_wait { + struct list_head list; + struct vt_event event; + int done; +}; + +struct compat_console_font_op { + compat_uint_t op; + compat_uint_t flags; + compat_uint_t width; + compat_uint_t height; + compat_uint_t charcount; + compat_caddr_t data; +}; + +struct compat_unimapdesc { + short unsigned int entry_ct; + compat_caddr_t entries; +}; + +struct kbdiacr { + unsigned char diacr; + unsigned char base; + unsigned char result; +}; + +struct kbdiacrs { + unsigned int kb_cnt; + struct kbdiacr kbdiacr[256]; +}; + +struct kbdiacruc { + unsigned int diacr; + unsigned int base; + unsigned int result; +}; + +struct kbdiacrsuc { + unsigned int kb_cnt; + struct kbdiacruc kbdiacruc[256]; +}; + +struct keyboard_notifier_param { + struct vc_data *vc; + int down; + int shift; + int ledstate; + unsigned int value; +}; + +struct kbd_struct { + unsigned char lockstate; + unsigned char slockstate; + unsigned char ledmode: 1; + unsigned char ledflagstate: 4; + char: 3; + unsigned char default_ledflagstate: 4; + unsigned char kbdmode: 3; + int: 1; + unsigned char modeflags: 5; +}; + +typedef void k_handler_fn(struct vc_data *, unsigned char, char); + +typedef void fn_handler_fn(struct vc_data *); + +struct getset_keycode_data { + struct input_keymap_entry ke; + int error; +}; + +struct uart_match { + struct uart_port *port; + struct uart_driver *driver; +}; + +struct serial8250_config { + const char *name; + short unsigned int fifo_size; + short unsigned int tx_loadsz; + unsigned char fcr; + unsigned char rxtrig_bytes[4]; + unsigned int flags; +}; + +enum mctrl_gpio_idx { + UART_GPIO_CTS = 0, + UART_GPIO_DSR = 1, + UART_GPIO_DCD = 2, + UART_GPIO_RNG = 3, + UART_GPIO_RI = 3, + UART_GPIO_RTS = 4, + UART_GPIO_DTR = 5, + UART_GPIO_MAX = 6, +}; + +struct mctrl_gpios { + struct uart_port *port; + struct gpio_desc *gpio[6]; + int irq[6]; + unsigned int mctrl_prev; + bool mctrl_on; +}; + +struct ttyprintk_port { + struct tty_port port; + spinlock_t spinlock; +}; + +struct virtio_console_config { + __virtio16 cols; + __virtio16 rows; + __virtio32 max_nr_ports; + __virtio32 emerg_wr; +}; + +struct virtio_console_control { + __virtio32 id; + __virtio16 event; + __virtio16 value; +}; + +struct ports_driver_data { + struct dentry *debugfs_dir; + struct list_head portdevs; + struct list_head consoles; +}; + +struct console___2 { + struct list_head list; + struct hvc_struct *hvc; + struct winsize ws; + u32 vtermno; +}; + +struct port_buffer { + char *buf; + size_t size; + size_t len; + size_t offset; + dma_addr_t dma; + struct device *dev; + struct list_head list; + unsigned int sgpages; + struct scatterlist sg[0]; +}; + +struct ports_device { + struct list_head list; + struct work_struct control_work; + struct work_struct config_work; + struct list_head ports; + spinlock_t ports_lock; + spinlock_t c_ivq_lock; + spinlock_t c_ovq_lock; + u32 max_nr_ports; + struct virtio_device *vdev; + struct virtqueue *c_ivq; + struct virtqueue *c_ovq; + struct virtio_console_control cpkt; + struct virtqueue **in_vqs; + struct virtqueue **out_vqs; + int chr_major; +}; + +struct port_stats { + long unsigned int bytes_sent; + long unsigned int bytes_received; + long unsigned int bytes_discarded; +}; + +struct port { + struct list_head list; + struct ports_device *portdev; + struct port_buffer *inbuf; + spinlock_t inbuf_lock; + spinlock_t outvq_lock; + struct virtqueue *in_vq; + struct virtqueue *out_vq; + struct dentry *debugfs_file; + struct port_stats stats; + struct console___2 cons; + struct cdev *cdev; + struct device *dev; + struct kref kref; + wait_queue_head_t waitqueue; + char *name; + struct fasync_struct *async_queue; + u32 id; + bool outvq_full; + bool host_connected; + bool guest_connected; +}; + +struct sg_list { + unsigned int n; + unsigned int size; + size_t len; + struct scatterlist *sg; +}; + +struct agp_3_5_dev { + struct list_head list; + u8 capndx; + u32 maxbw; + struct pci_dev *dev; +}; + +struct isoch_data { + u32 maxbw; + u32 n; + u32 y; + u32 l; + u32 rq; + struct agp_3_5_dev *dev; +}; + +enum tpm2_const { + TPM2_PLATFORM_PCR = 24, + TPM2_PCR_SELECT_MIN = 3, +}; + +enum tpm2_properties { + TPM_PT_TOTAL_COMMANDS = 297, +}; + +struct tpm2_pcr_read_out { + __be32 update_cnt; + __be32 pcr_selects_cnt; + __be16 hash_alg; + u8 pcr_select_size; + u8 pcr_select[3]; + __be32 digests_cnt; + __be16 digest_size; + u8 digest[0]; +} __attribute__((packed)); + +struct tpm2_get_random_out { + __be16 size; + u8 buffer[128]; +}; + +struct tpm2_get_cap_out { + u8 more_data; + __be32 subcap_id; + __be32 property_cnt; + __be32 property_id; + __be32 value; +} __attribute__((packed)); + +struct tpm2_pcr_selection { + __be16 hash_alg; + u8 size_of_select; + u8 pcr_select[3]; +}; + +struct stclear_flags_t { + __be16 tag; + u8 deactivated; + u8 disableForceClear; + u8 physicalPresence; + u8 physicalPresenceLock; + u8 bGlobalLock; +} __attribute__((packed)); + +struct tpm1_version { + u8 major; + u8 minor; + u8 rev_major; + u8 rev_minor; +}; + +struct tpm1_version2 { + __be16 tag; + struct tpm1_version version; +}; + +struct timeout_t { + __be32 a; + __be32 b; + __be32 c; + __be32 d; +}; + +struct duration_t { + __be32 tpm_short; + __be32 tpm_medium; + __be32 tpm_long; +}; + +struct permanent_flags_t { + __be16 tag; + u8 disable; + u8 ownership; + u8 deactivated; + u8 readPubek; + u8 disableOwnerClear; + u8 allowMaintenance; + u8 physicalPresenceLifetimeLock; + u8 physicalPresenceHWEnable; + u8 physicalPresenceCMDEnable; + u8 CEKPUsed; + u8 TPMpost; + u8 TPMpostLock; + u8 FIPS; + u8 operator; + u8 enableRevokeEK; + u8 nvLocked; + u8 readSRKPub; + u8 tpmEstablished; + u8 maintenanceDone; + u8 disableFullDALogicInfo; +}; + +typedef union { + struct permanent_flags_t perm_flags; + struct stclear_flags_t stclear_flags; + __u8 owned; + __be32 num_pcrs; + struct tpm1_version version1; + struct tpm1_version2 version2; + __be32 manufacturer_id; + struct timeout_t timeout; + struct duration_t duration; +} cap_t; + +enum tpm_capabilities { + TPM_CAP_FLAG = 4, + TPM_CAP_PROP = 5, + TPM_CAP_VERSION_1_1 = 6, + TPM_CAP_VERSION_1_2 = 26, +}; + +enum tpm_sub_capabilities { + TPM_CAP_PROP_PCR = 257, + TPM_CAP_PROP_MANUFACTURER = 259, + TPM_CAP_FLAG_PERM = 264, + TPM_CAP_FLAG_VOL = 265, + TPM_CAP_PROP_OWNER = 273, + TPM_CAP_PROP_TIS_TIMEOUT = 277, + TPM_CAP_PROP_TIS_DURATION = 288, +}; + +struct tpm_readpubek_out { + u8 algorithm[4]; + u8 encscheme[2]; + u8 sigscheme[2]; + __be32 paramsize; + u8 parameters[12]; + __be32 keysize; + u8 modulus[256]; + u8 checksum[20]; +}; + +struct tpm_pcr_attr { + int alg_id; + int pcr; + struct device_attribute attr; +}; + +enum tis_access { + TPM_ACCESS_VALID = 128, + TPM_ACCESS_ACTIVE_LOCALITY = 32, + TPM_ACCESS_REQUEST_PENDING = 4, + TPM_ACCESS_REQUEST_USE = 2, +}; + +enum tis_status { + TPM_STS_VALID = 128, + TPM_STS_COMMAND_READY = 64, + TPM_STS_GO = 32, + TPM_STS_DATA_AVAIL = 16, + TPM_STS_DATA_EXPECT = 8, + TPM_STS_RESPONSE_RETRY = 2, + TPM_STS_READ_ZERO = 35, +}; + +enum tis_int_flags { + TPM_GLOBAL_INT_ENABLE = 2147483648, + TPM_INTF_BURST_COUNT_STATIC = 256, + TPM_INTF_CMD_READY_INT = 128, + TPM_INTF_INT_EDGE_FALLING = 64, + TPM_INTF_INT_EDGE_RISING = 32, + TPM_INTF_INT_LEVEL_LOW = 16, + TPM_INTF_INT_LEVEL_HIGH = 8, + TPM_INTF_LOCALITY_CHANGE_INT = 4, + TPM_INTF_STS_VALID_INT = 2, + TPM_INTF_DATA_AVAIL_INT = 1, +}; + +struct tis_vendor_durations_override { + u32 did_vid; + struct tpm1_version version; + long unsigned int durations[3]; +}; + +struct tis_vendor_timeout_override { + u32 did_vid; + long unsigned int timeout_us[4]; +}; + +enum crb_defaults { + CRB_ACPI_START_REVISION_ID = 1, + CRB_ACPI_START_INDEX = 1, +}; + +enum crb_loc_ctrl { + CRB_LOC_CTRL_REQUEST_ACCESS = 1, + CRB_LOC_CTRL_RELINQUISH = 2, +}; + +enum crb_loc_state { + CRB_LOC_STATE_LOC_ASSIGNED = 2, + CRB_LOC_STATE_TPM_REG_VALID_STS = 128, +}; + +enum crb_ctrl_req { + CRB_CTRL_REQ_CMD_READY = 1, + CRB_CTRL_REQ_GO_IDLE = 2, +}; + +enum crb_ctrl_sts { + CRB_CTRL_STS_ERROR = 1, + CRB_CTRL_STS_TPM_IDLE = 2, +}; + +enum crb_start { + CRB_START_INVOKE = 1, +}; + +enum crb_cancel { + CRB_CANCEL_INVOKE = 1, +}; + +struct crb_regs_head { + u32 loc_state; + u32 reserved1; + u32 loc_ctrl; + u32 loc_sts; + u8 reserved2[32]; + u64 intf_id; + u64 ctrl_ext; +}; + +struct crb_regs_tail { + u32 ctrl_req; + u32 ctrl_sts; + u32 ctrl_cancel; + u32 ctrl_start; + u32 ctrl_int_enable; + u32 ctrl_int_sts; + u32 ctrl_cmd_size; + u32 ctrl_cmd_pa_low; + u32 ctrl_cmd_pa_high; + u32 ctrl_rsp_size; + u64 ctrl_rsp_pa; +}; + +enum crb_status { + CRB_DRV_STS_COMPLETE = 1, +}; + +struct crb_priv { + u32 sm; + const char *hid; + struct crb_regs_head *regs_h; + struct crb_regs_tail *regs_t; + u8 *cmd; + u8 *rsp; + u32 cmd_size; + u32 smc_func_id; + u32 *pluton_start_addr; + u32 *pluton_reply_addr; + u8 ffa_flags; + u8 ffa_attributes; +}; + +struct tpm2_crb_smc { + u32 interrupt; + u8 interrupt_flags; + u8 op_flags; + u16 reserved2; + u32 smc_func_id; +}; + +struct tpm2_crb_ffa { + u8 flags; + u8 attributes; + u16 partition_id; + u8 reserved[8]; +}; + +struct tpm2_crb_pluton { + u64 start_addr; + u64 reply_addr; +}; + +struct io_pgtable_init_fns { + struct io_pgtable * (*alloc)(struct io_pgtable_cfg *, void *); + void (*free)(struct io_pgtable *); + u32 caps; +}; + +struct acpi_dmar_reserved_memory { + struct acpi_dmar_header header; + u16 reserved; + u16 segment; + u64 base_address; + u64 end_address; +}; + +struct acpi_dmar_atsr { + struct acpi_dmar_header header; + u8 flags; + u8 reserved; + u16 segment; +}; + +struct acpi_dmar_satc { + struct acpi_dmar_header header; + u8 flags; + u8 reserved; + u16 segment; +}; + +enum iommu_hw_info_vtd_flags { + IOMMU_HW_INFO_VTD_ERRATA_772415_SPR17 = 1, +}; + +struct iommu_hw_info_vtd { + __u32 flags; + __u32 __reserved; + __u64 cap_reg; + __u64 ecap_reg; +}; + +struct context_entry { + u64 lo; + u64 hi; +}; + +struct ioptdesc { + long unsigned int __page_flags; + struct list_head iopt_freelist_elm; + long unsigned int __page_mapping; + long unsigned int __index; + void *_private; + unsigned int __page_type; + atomic_t __page_refcount; + long unsigned int memcg_data; +}; + +struct dmar_rmrr_unit { + struct list_head list; + struct acpi_dmar_header *hdr; + u64 base_address; + u64 end_address; + struct dmar_dev_scope *devices; + int devices_cnt; +}; + +struct dmar_atsr_unit { + struct list_head list; + struct acpi_dmar_header *hdr; + struct dmar_dev_scope *devices; + int devices_cnt; + u8 include_all: 1; +}; + +struct dmar_satc_unit { + struct list_head list; + struct acpi_dmar_header *hdr; + struct dmar_dev_scope *devices; + struct intel_iommu *iommu; + int devices_cnt; + u8 atc_required: 1; +}; + +enum acpi_dmar_type { + ACPI_DMAR_TYPE_HARDWARE_UNIT = 0, + ACPI_DMAR_TYPE_RESERVED_MEMORY = 1, + ACPI_DMAR_TYPE_ROOT_ATS = 2, + ACPI_DMAR_TYPE_HARDWARE_AFFINITY = 3, + ACPI_DMAR_TYPE_NAMESPACE = 4, + ACPI_DMAR_TYPE_SATC = 5, + ACPI_DMAR_TYPE_SIDP = 6, + ACPI_DMAR_TYPE_RESERVED = 7, +}; + +struct acpi_dmar_rhsa { + struct acpi_dmar_header header; + u32 reserved; + u64 base_address; + u32 proximity_domain; +} __attribute__((packed)); + +struct acpi_dmar_andd { + struct acpi_dmar_header header; + u8 reserved[3]; + u8 device_number; + union { + char __pad; + struct { + struct {} __Empty_device_name; + char device_name[0]; + }; + }; +} __attribute__((packed)); + +enum latency_type { + DMAR_LATENCY_INV_IOTLB = 0, + DMAR_LATENCY_INV_DEVTLB = 1, + DMAR_LATENCY_INV_IEC = 2, + DMAR_LATENCY_NUM = 3, +}; + +enum latency_count { + COUNTS_10e2 = 0, + COUNTS_10e3 = 1, + COUNTS_10e4 = 2, + COUNTS_10e5 = 3, + COUNTS_10e6 = 4, + COUNTS_10e7 = 5, + COUNTS_10e8_plus = 6, + COUNTS_MIN = 7, + COUNTS_MAX = 8, + COUNTS_SUM = 9, + COUNTS_NUM = 10, +}; + +typedef int (*dmar_res_handler_t)(struct acpi_dmar_header *, void *); + +struct dmar_res_callback { + dmar_res_handler_t cb[7]; + void *arg[7]; + bool ignore_unhandled; + bool print_entry; +}; + +enum faulttype { + DMA_REMAP = 0, + INTR_REMAP = 1, + UNKNOWN = 2, +}; + +struct iommu_group { + struct kobject kobj; + struct kobject *devices_kobj; + struct list_head devices; + struct xarray pasid_array; + struct mutex mutex; + void *iommu_data; + void (*iommu_data_release)(void *); + char *name; + int id; + struct iommu_domain *default_domain; + struct iommu_domain *blocking_domain; + struct iommu_domain *domain; + struct list_head entry; + unsigned int owner_cnt; + void *owner; +}; + +enum iommu_hw_queue_type { + IOMMU_HW_QUEUE_TYPE_DEFAULT = 0, + IOMMU_HW_QUEUE_TYPE_TEGRA241_CMDQV = 1, +}; + +enum iommufd_object_type { + IOMMUFD_OBJ_NONE = 0, + IOMMUFD_OBJ_ANY = 0, + IOMMUFD_OBJ_DEVICE = 1, + IOMMUFD_OBJ_HWPT_PAGING = 2, + IOMMUFD_OBJ_HWPT_NESTED = 3, + IOMMUFD_OBJ_IOAS = 4, + IOMMUFD_OBJ_ACCESS = 5, + IOMMUFD_OBJ_FAULT = 6, + IOMMUFD_OBJ_VIOMMU = 7, + IOMMUFD_OBJ_VDEVICE = 8, + IOMMUFD_OBJ_VEVENTQ = 9, + IOMMUFD_OBJ_HW_QUEUE = 10, + IOMMUFD_OBJ_MAX = 11, +}; + +struct iommufd_object { + refcount_t wait_cnt; + refcount_t users; + enum iommufd_object_type type; + unsigned int id; +}; + +struct iommufd_ctx; + +struct iommufd_hwpt_paging; + +struct iommufd_viommu_ops; + +struct iommufd_viommu { + struct iommufd_object obj; + struct iommufd_ctx *ictx; + struct iommu_device *iommu_dev; + struct iommufd_hwpt_paging *hwpt; + const struct iommufd_viommu_ops *ops; + struct xarray vdevs; + struct list_head veventqs; + struct rw_semaphore veventqs_rwsem; + enum iommu_viommu_type type; +}; + +struct iommufd_vdevice; + +struct iommufd_hw_queue; + +struct iommufd_viommu_ops { + void (*destroy)(struct iommufd_viommu *); + struct iommu_domain * (*alloc_domain_nested)(struct iommufd_viommu *, u32, const struct iommu_user_data *); + int (*cache_invalidate)(struct iommufd_viommu *, struct iommu_user_data_array *); + const size_t vdevice_size; + int (*vdevice_init)(struct iommufd_vdevice *); + size_t (*get_hw_queue_size)(struct iommufd_viommu *, enum iommu_hw_queue_type); + int (*hw_queue_init_phys)(struct iommufd_hw_queue *, u32, phys_addr_t); +}; + +struct iommufd_device; + +struct iommufd_vdevice { + struct iommufd_object obj; + struct iommufd_viommu *viommu; + struct iommufd_device *idev; + u64 virt_id; + void (*destroy)(struct iommufd_vdevice *); +}; + +struct iommufd_access; + +struct iommufd_hw_queue { + struct iommufd_object obj; + struct iommufd_viommu *viommu; + struct iommufd_access *access; + u64 base_addr; + size_t length; + enum iommu_hw_queue_type type; + void (*destroy)(struct iommufd_hw_queue *); +}; + +struct fsl_mc_obj_desc { + char type[16]; + int id; + u16 vendor; + u16 ver_major; + u16 ver_minor; + u8 irq_count; + u8 region_count; + u32 state; + char label[16]; + u16 flags; +}; + +struct fsl_mc_io; + +struct fsl_mc_device_irq; + +struct fsl_mc_resource; + +struct fsl_mc_device { + struct device dev; + u64 dma_mask; + u16 flags; + u32 icid; + u16 mc_handle; + struct fsl_mc_io *mc_io; + struct fsl_mc_obj_desc obj_desc; + struct resource *regions; + struct fsl_mc_device_irq **irqs; + struct fsl_mc_resource *resource; + struct device_link *consumer_link; + const char *driver_override; +}; + +enum fsl_mc_pool_type { + FSL_MC_POOL_DPMCP = 0, + FSL_MC_POOL_DPBP = 1, + FSL_MC_POOL_DPCON = 2, + FSL_MC_POOL_IRQ = 3, + FSL_MC_NUM_POOL_TYPES = 4, +}; + +struct fsl_mc_resource_pool; + +struct fsl_mc_resource { + enum fsl_mc_pool_type type; + s32 id; + void *data; + struct fsl_mc_resource_pool *parent_pool; + struct list_head node; +}; + +struct fsl_mc_device_irq { + unsigned int virq; + struct fsl_mc_device *mc_dev; + u8 dev_irq_index; + struct fsl_mc_resource resource; +}; + +struct fsl_mc_io { + struct device *dev; + u16 flags; + u32 portal_size; + phys_addr_t portal_phys_addr; + void *portal_virt_addr; + struct fsl_mc_device *dpmcp_dev; + union { + struct mutex mutex; + raw_spinlock_t spinlock; + }; +}; + +enum { + IOMMU_PASID_ARRAY_DOMAIN = 0, + IOMMU_PASID_ARRAY_HANDLE = 1, +}; + +struct group_device { + struct list_head list; + struct device *dev; + char *name; +}; + +struct iommu_group_attribute { + struct attribute attr; + ssize_t (*show)(struct iommu_group *, char *); + ssize_t (*store)(struct iommu_group *, const char *, size_t); +}; + +enum { + IOMMU_SET_DOMAIN_MUST_SUCCEED = 1, +}; + +struct group_for_pci_data { + struct pci_dev *pdev; + struct iommu_group *group; +}; + +enum io_pgtable_caps { + IO_PGTABLE_CAP_CUSTOM_ALLOCATOR = 1, +}; + +struct hyperv_root_ir_data { + u8 ioapic_id; + bool is_level; + struct hv_interrupt_entry entry; +} __attribute__((packed)); + +typedef int (*pm_callback_t)(struct device *); + +struct firmware_cache { + spinlock_t lock; + struct list_head head; + int state; + spinlock_t name_lock; + struct list_head fw_names; + struct delayed_work work; + struct notifier_block pm_notify; +}; + +struct fw_cache_entry { + struct list_head list; + const char *name; +}; + +struct fw_name_devm { + long unsigned int magic; + const char *name; +}; + +struct firmware_work { + struct work_struct work; + struct module *module; + const char *name; + struct device *device; + void *context; + void (*cont)(const struct firmware *, void *); + u32 opt_flags; +}; + +struct regcache_rbtree_node { + void *block; + long unsigned int *cache_present; + unsigned int base_reg; + unsigned int blklen; + struct rb_node node; +}; + +struct regcache_rbtree_ctx { + struct rb_root root; + struct regcache_rbtree_node *cached_rbnode; +}; + +struct regmap_debugfs_off_cache { + struct list_head list; + off_t min; + off_t max; + unsigned int base_reg; + unsigned int max_reg; +}; + +struct regmap_debugfs_node { + struct regmap *map; + struct list_head link; +}; + +struct regmap_mmio_context { + void *regs; + unsigned int val_bytes; + bool big_endian; + bool attached_clk; + struct clk *clk; + void (*reg_write)(struct regmap_mmio_context *, unsigned int, unsigned int); + unsigned int (*reg_read)(struct regmap_mmio_context *, unsigned int); +}; + +struct devcd_entry { + struct device devcd_dev; + void *data; + size_t datalen; + struct mutex mutex; + bool init_completed; + bool deleted; + struct module *owner; + ssize_t (*read)(char *, loff_t, size_t, void *, size_t); + void (*free)(void *); + struct delayed_work del_wk; + struct device *failing_dev; +}; + +typedef long unsigned int __kernel_old_dev_t; + +typedef u16 compat_dev_t; + +enum { + LO_FLAGS_READ_ONLY = 1, + LO_FLAGS_AUTOCLEAR = 4, + LO_FLAGS_PARTSCAN = 8, + LO_FLAGS_DIRECT_IO = 16, +}; + +struct loop_info { + int lo_number; + __kernel_old_dev_t lo_device; + long unsigned int lo_inode; + __kernel_old_dev_t lo_rdevice; + int lo_offset; + int lo_encrypt_type; + int lo_encrypt_key_size; + int lo_flags; + char lo_name[64]; + unsigned char lo_encrypt_key[32]; + long unsigned int lo_init[2]; + char reserved[4]; +}; + +struct loop_info64 { + __u64 lo_device; + __u64 lo_inode; + __u64 lo_rdevice; + __u64 lo_offset; + __u64 lo_sizelimit; + __u32 lo_number; + __u32 lo_encrypt_type; + __u32 lo_encrypt_key_size; + __u32 lo_flags; + __u8 lo_file_name[64]; + __u8 lo_crypt_name[64]; + __u8 lo_encrypt_key[32]; + __u64 lo_init[2]; +}; + +struct loop_config { + __u32 fd; + __u32 block_size; + struct loop_info64 info; + __u64 __reserved[8]; +}; + +enum { + Lo_unbound = 0, + Lo_bound = 1, + Lo_rundown = 2, + Lo_deleting = 3, +}; + +struct loop_device { + int lo_number; + loff_t lo_offset; + loff_t lo_sizelimit; + int lo_flags; + char lo_file_name[64]; + struct file *lo_backing_file; + unsigned int lo_min_dio_size; + struct block_device *lo_device; + gfp_t old_gfp_mask; + spinlock_t lo_lock; + int lo_state; + spinlock_t lo_work_lock; + struct workqueue_struct *workqueue; + struct work_struct rootcg_work; + struct list_head rootcg_cmd_list; + struct list_head idle_worker_list; + struct rb_root worker_tree; + struct timer_list timer; + bool sysfs_inited; + struct request_queue *lo_queue; + struct blk_mq_tag_set tag_set; + struct gendisk *lo_disk; + struct mutex lo_mutex; + bool idr_visible; +}; + +struct loop_cmd { + struct list_head list_entry; + bool use_aio; + atomic_t ref; + long int ret; + struct kiocb iocb; + struct bio_vec *bvec; + struct cgroup_subsys_state *blkcg_css; + struct cgroup_subsys_state *memcg_css; +}; + +struct loop_worker { + struct rb_node rb_node; + struct work_struct work; + struct list_head cmd_list; + struct list_head idle_list; + struct loop_device *lo; + struct cgroup_subsys_state *blkcg_css; + long unsigned int last_ran_at; +}; + +struct compat_loop_info { + compat_int_t lo_number; + compat_dev_t lo_device; + compat_ulong_t lo_inode; + compat_dev_t lo_rdevice; + compat_int_t lo_offset; + compat_int_t lo_encrypt_type; + compat_int_t lo_encrypt_key_size; + compat_int_t lo_flags; + char lo_name[64]; + unsigned char lo_encrypt_key[32]; + compat_ulong_t lo_init[2]; + char reserved[4]; +}; + +struct wm831x_irq_data { + int primary; + int reg; + int mask; +}; + +struct wm8350_reg_access { + u16 readable; + u16 writable; + u16 vol; +}; + +struct pcap_subdev { + int id; + const char *name; + void *platform_data; +}; + +struct pcap_platform_data { + unsigned int irq_base; + unsigned int config; + int gpio; + void (*init)(void *); + int num_subdevs; + struct pcap_subdev *subdevs; +}; + +struct pcap_adc_request { + u8 bank; + u8 ch[2]; + u32 flags; + void (*callback)(void *, u16 *); + void *data; +}; + +struct pcap_chip { + struct spi_device *spi; + u32 buf; + spinlock_t io_lock; + unsigned int irq_base; + u32 msr; + struct work_struct isr_work; + struct work_struct msr_work; + struct workqueue_struct *workqueue; + struct pcap_adc_request *adc_queue[8]; + u8 adc_head; + u8 adc_tail; + spinlock_t adc_lock; +}; + +enum { + MAX8998_IRQ_DCINF = 0, + MAX8998_IRQ_DCINR = 1, + MAX8998_IRQ_JIGF = 2, + MAX8998_IRQ_JIGR = 3, + MAX8998_IRQ_PWRONF = 4, + MAX8998_IRQ_PWRONR = 5, + MAX8998_IRQ_WTSREVNT = 6, + MAX8998_IRQ_SMPLEVNT = 7, + MAX8998_IRQ_ALARM1 = 8, + MAX8998_IRQ_ALARM0 = 9, + MAX8998_IRQ_ONKEY1S = 10, + MAX8998_IRQ_TOPOFFR = 11, + MAX8998_IRQ_DCINOVPR = 12, + MAX8998_IRQ_CHGRSTF = 13, + MAX8998_IRQ_DONER = 14, + MAX8998_IRQ_CHGFAULT = 15, + MAX8998_IRQ_LOBAT1 = 16, + MAX8998_IRQ_LOBAT2 = 17, + MAX8998_IRQ_NR = 18, +}; + +struct max8998_irq_data { + int reg; + int mask; +}; + +struct syscon { + struct device_node *np; + struct regmap *regmap; + struct reset_control *reset; + struct list_head list; +}; + +struct nvdimm_map { + struct nvdimm_bus *nvdimm_bus; + struct list_head list; + resource_size_t offset; + long unsigned int flags; + size_t size; + union { + void *mem; + void *iomem; + }; + struct kref kref; +}; + +struct nd_namespace_pmem { + struct nd_namespace_io nsio; + long unsigned int lbasize; + char *alt_name; + uuid_t *uuid; + int id; +}; + +enum nd_label_flags { + ND_LABEL_REAP = 0, +}; + +struct pmem_device { + phys_addr_t phys_addr; + phys_addr_t data_offset; + void *virt_addr; + size_t size; + u32 pfn_pad; + struct kernfs_node *bb_state; + struct badblocks bb; + struct dax_device *dax_dev; + struct gendisk *disk; + struct dev_pagemap pgmap; +}; + +struct dma_fence_array; + +struct dma_fence_array_cb { + struct dma_fence_cb cb; + struct dma_fence_array *array; +}; + +struct dma_fence_array { + struct dma_fence base; + spinlock_t lock; + unsigned int num_fences; + atomic_t num_pending; + struct dma_fence **fences; + struct irq_work work; + struct dma_fence_array_cb callbacks[0]; +}; + +struct dma_heap { + const char *name; + const struct dma_heap_ops *ops; + void *priv; + dev_t heap_devt; + struct list_head list; + struct cdev heap_cdev; +}; + +struct dma_heap_allocation_data { + __u64 len; + __u32 fd; + __u32 fd_flags; + __u64 heap_flags; +}; + +struct scsi_host_busy_iter_data { + bool (*fn)(struct scsi_cmnd *, void *); + void *priv; +}; + +struct scsi_eh_save { + int result; + unsigned int resid_len; + int eh_eflags; + enum dma_data_direction data_direction; + unsigned int underflow; + unsigned char cmd_len; + unsigned char prot_op; + unsigned char cmnd[32]; + struct scsi_data_buffer sdb; + struct scatterlist sense_sgl; + struct bio_crypt_ctx *rq_crypt_ctx; + struct blk_crypto_keyslot *rq_crypt_keyslot; +}; + +enum { + SCSI_DH_OK = 0, + SCSI_DH_DEV_FAILED = 1, + SCSI_DH_DEV_TEMP_BUSY = 2, + SCSI_DH_DEV_UNSUPP = 3, + SCSI_DH_DEVICE_MAX = 4, + SCSI_DH_NOTCONN = 5, + SCSI_DH_CONN_FAILURE = 6, + SCSI_DH_TRANSPORT_MAX = 7, + SCSI_DH_IO = 8, + SCSI_DH_INVALID_IO = 9, + SCSI_DH_RETRY = 10, + SCSI_DH_IMM_RETRY = 11, + SCSI_DH_TIMED_OUT = 12, + SCSI_DH_RES_TEMP_UNAVAIL = 13, + SCSI_DH_DEV_OFFLINED = 14, + SCSI_DH_NOMEM = 15, + SCSI_DH_NOSYS = 16, + SCSI_DH_DRIVER_MAX = 17, +}; + +struct scsi_dh_blist { + const char *vendor; + const char *model; + const char *driver; +}; + +struct hv_multipage_buffer { + u32 len; + u32 offset; + u64 pfn_array[32]; +}; + +struct hv_mpb_array { + u32 len; + u32 offset; + u64 pfn_array[0]; +}; + +struct vmbus_channel_packet_multipage_buffer { + u16 type; + u16 dataoffset8; + u16 length8; + u16 flags; + u64 transactionid; + u32 reserved; + u32 rangecount; + struct hv_multipage_buffer range; +}; + +struct vmbus_packet_mpb_array { + u16 type; + u16 dataoffset8; + u16 length8; + u16 flags; + u64 transactionid; + u32 reserved; + u32 rangecount; + struct hv_mpb_array range; +}; + +enum vstor_packet_operation { + VSTOR_OPERATION_COMPLETE_IO = 1, + VSTOR_OPERATION_REMOVE_DEVICE = 2, + VSTOR_OPERATION_EXECUTE_SRB = 3, + VSTOR_OPERATION_RESET_LUN = 4, + VSTOR_OPERATION_RESET_ADAPTER = 5, + VSTOR_OPERATION_RESET_BUS = 6, + VSTOR_OPERATION_BEGIN_INITIALIZATION = 7, + VSTOR_OPERATION_END_INITIALIZATION = 8, + VSTOR_OPERATION_QUERY_PROTOCOL_VERSION = 9, + VSTOR_OPERATION_QUERY_PROPERTIES = 10, + VSTOR_OPERATION_ENUMERATE_BUS = 11, + VSTOR_OPERATION_FCHBA_DATA = 12, + VSTOR_OPERATION_CREATE_SUB_CHANNELS = 13, + VSTOR_OPERATION_MAXIMUM = 13, +}; + +struct hv_fc_wwn_packet { + u8 primary_active; + u8 reserved1[3]; + u8 primary_port_wwn[8]; + u8 primary_node_wwn[8]; + u8 secondary_port_wwn[8]; + u8 secondary_node_wwn[8]; +}; + +struct vmscsi_request { + u16 length; + u8 srb_status; + u8 scsi_status; + u8 port_number; + u8 path_id; + u8 target_id; + u8 lun; + u8 cdb_length; + u8 sense_info_length; + u8 data_in; + u8 reserved; + u32 data_transfer_length; + union { + u8 cdb[16]; + u8 sense_data[20]; + u8 reserved_array[20]; + }; + u16 reserve; + u8 queue_tag; + u8 queue_action; + u32 srb_flags; + u32 time_out_value; + u32 queue_sort_ey; +}; + +struct vmstorage_channel_properties { + u32 reserved; + u16 max_channel_cnt; + u16 reserved1; + u32 flags; + u32 max_transfer_bytes; + u64 reserved2; +}; + +struct vmstorage_protocol_version { + u16 major_minor; + u16 revision; +}; + +struct vstor_packet { + enum vstor_packet_operation operation; + u32 flags; + u32 status; + union { + struct vmscsi_request vm_srb; + struct vmstorage_channel_properties storage_channel_properties; + struct vmstorage_protocol_version version; + struct hv_fc_wwn_packet wwn_packet; + u16 sub_channel_count; + u8 buffer[52]; + }; +}; + +enum storvsc_request_type { + WRITE_TYPE = 0, + READ_TYPE = 1, + UNKNOWN_TYPE = 2, +}; + +struct storvsc_cmd_request { + struct scsi_cmnd *cmd; + struct hv_device *device; + struct completion wait_event; + struct vmbus_channel_packet_multipage_buffer mpb; + struct vmbus_packet_mpb_array *payload; + u32 payload_sz; + struct vstor_packet vstor_packet; +}; + +struct storvsc_device { + struct hv_device *device; + bool destroy; + bool drain_notify; + atomic_t num_outstanding_req; + struct Scsi_Host *host; + wait_queue_head_t waiting_to_drain; + unsigned int port_number; + unsigned char path_id; + unsigned char target_id; + u32 max_transfer_bytes; + u16 num_sc; + struct vmbus_channel **stor_chns; + struct cpumask alloced_cpus; + spinlock_t lock; + struct storvsc_cmd_request init_request; + struct storvsc_cmd_request reset_request; + u64 node_name; + u64 port_name; + struct fc_rport *rport; +}; + +struct hv_host_device { + struct hv_device *dev; + unsigned int port; + unsigned char path; + unsigned char target; + struct workqueue_struct *handle_error_wq; + struct work_struct host_scan_work; + struct Scsi_Host *host; +}; + +struct storvsc_scan_work { + struct work_struct work; + struct Scsi_Host *host; + u8 lun; + u8 tgt_id; +}; + +enum { + SCSI_GUID = 0, + IDE_GUID = 1, + SFC_GUID = 2, +}; + +enum { + mechtype_caddy = 0, + mechtype_tray = 1, + mechtype_popup = 2, + mechtype_individual_changer = 4, + mechtype_cartridge_changer = 5, +}; + +enum scsi_msg_byte { + COMMAND_COMPLETE = 0, + EXTENDED_MESSAGE = 1, + SAVE_POINTERS = 2, + RESTORE_POINTERS = 3, + DISCONNECT = 4, + INITIATOR_ERROR = 5, + ABORT_TASK_SET = 6, + MESSAGE_REJECT = 7, + NOP___2 = 8, + MSG_PARITY_ERROR = 9, + LINKED_CMD_COMPLETE = 10, + LINKED_FLG_CMD_COMPLETE = 11, + TARGET_RESET = 12, + ABORT_TASK = 13, + CLEAR_TASK_SET = 14, + INITIATE_RECOVERY = 15, + RELEASE_RECOVERY = 16, + TERMINATE_IO_PROC = 17, + CLEAR_ACA = 22, + LOGICAL_UNIT_RESET = 23, + SIMPLE_QUEUE_TAG = 32, + HEAD_OF_QUEUE_TAG = 33, + ORDERED_QUEUE_TAG = 34, + IGNORE_WIDE_RESIDUE = 35, + ACA = 36, + QAS_REQUEST = 85, + BUS_DEVICE_RESET = 12, + ABORT = 6, +}; + +struct sg_io_hdr { + int interface_id; + int dxfer_direction; + unsigned char cmd_len; + unsigned char mx_sb_len; + short unsigned int iovec_count; + unsigned int dxfer_len; + void *dxferp; + unsigned char *cmdp; + void *sbp; + unsigned int timeout; + unsigned int flags; + int pack_id; + void *usr_ptr; + unsigned char status; + unsigned char masked_status; + unsigned char msg_status; + unsigned char sb_len_wr; + short unsigned int host_status; + short unsigned int driver_status; + int resid; + unsigned int duration; + unsigned int info; +}; + +typedef struct sg_io_hdr sg_io_hdr_t; + +struct compat_sg_io_hdr { + compat_int_t interface_id; + compat_int_t dxfer_direction; + unsigned char cmd_len; + unsigned char mx_sb_len; + short unsigned int iovec_count; + compat_uint_t dxfer_len; + compat_uint_t dxferp; + compat_uptr_t cmdp; + compat_uptr_t sbp; + compat_uint_t timeout; + compat_uint_t flags; + compat_int_t pack_id; + compat_uptr_t usr_ptr; + unsigned char status; + unsigned char masked_status; + unsigned char msg_status; + unsigned char sb_len_wr; + short unsigned int host_status; + short unsigned int driver_status; + compat_int_t resid; + compat_uint_t duration; + compat_uint_t info; +}; + +struct sg_scsi_id { + int host_no; + int channel; + int scsi_id; + int lun; + int scsi_type; + short int h_cmd_per_lun; + short int d_queue_depth; + int unused[2]; +}; + +typedef struct sg_scsi_id sg_scsi_id_t; + +struct sg_req_info { + char req_state; + char orphan; + char sg_io_owned; + char problem; + int pack_id; + void *usr_ptr; + unsigned int duration; + int unused; +}; + +typedef struct sg_req_info sg_req_info_t; + +struct sg_header { + int pack_len; + int reply_len; + int pack_id; + int result; + unsigned int twelve_byte: 1; + unsigned int target_status: 5; + unsigned int host_status: 8; + unsigned int driver_status: 8; + unsigned int other_flags: 10; + unsigned char sense_buffer[16]; +}; + +struct sg_scatter_hold { + short unsigned int k_use_sg; + unsigned int sglist_len; + unsigned int bufflen; + struct page **pages; + int page_order; + char dio_in_use; + unsigned char cmd_opcode; +}; + +typedef struct sg_scatter_hold Sg_scatter_hold; + +struct sg_fd; + +struct sg_request { + struct list_head entry; + struct sg_fd *parentfp; + Sg_scatter_hold data; + sg_io_hdr_t header; + unsigned char sense_b[96]; + char res_used; + char orphan; + char sg_io_owned; + char done; + struct request *rq; + struct bio *bio; + struct execute_work ew; +}; + +typedef struct sg_request Sg_request; + +struct sg_device; + +struct sg_fd { + struct list_head sfd_siblings; + struct sg_device *parentdp; + wait_queue_head_t read_wait; + rwlock_t rq_list_lock; + struct mutex f_mutex; + int timeout; + int timeout_user; + Sg_scatter_hold reserve; + struct list_head rq_list; + struct fasync_struct *async_qp; + Sg_request req_arr[16]; + char force_packid; + char cmd_q; + unsigned char next_cmd_len; + char keep_orphan; + char mmap_called; + char res_in_use; + struct kref f_ref; + struct execute_work ew; +}; + +struct sg_device { + struct scsi_device *device; + wait_queue_head_t open_wait; + struct mutex open_rel_lock; + int sg_tablesize; + u32 index; + struct list_head sfds; + rwlock_t sfd_lock; + atomic_t detaching; + bool exclude; + int open_cnt; + char sgdebug; + char name[32]; + struct cdev *cdev; + struct kref d_ref; +}; + +typedef struct sg_fd Sg_fd; + +typedef struct sg_device Sg_device; + +struct compat_sg_req_info { + char req_state; + char orphan; + char sg_io_owned; + char problem; + int pack_id; + compat_uptr_t usr_ptr; + unsigned int duration; + int unused; +}; + +struct sg_proc_deviter { + loff_t index; + size_t max; +}; + +enum pr_status { + PR_STS_SUCCESS = 0, + PR_STS_IOERR = 2, + PR_STS_RESERVATION_CONFLICT = 24, + PR_STS_RETRY_PATH_FAILURE = 917504, + PR_STS_PATH_FAST_FAILED = 983040, + PR_STS_PATH_FAILED = 65536, +}; + +enum nvme_pr_type { + NVME_PR_WRITE_EXCLUSIVE = 1, + NVME_PR_EXCLUSIVE_ACCESS = 2, + NVME_PR_WRITE_EXCLUSIVE_REG_ONLY = 3, + NVME_PR_EXCLUSIVE_ACCESS_REG_ONLY = 4, + NVME_PR_WRITE_EXCLUSIVE_ALL_REGS = 5, + NVME_PR_EXCLUSIVE_ACCESS_ALL_REGS = 6, +}; + +enum nvme_eds { + NVME_EXTENDED_DATA_STRUCT = 1, +}; + +struct nvme_registered_ctrl { + __le16 cntlid; + __u8 rcsts; + __u8 rsvd3[5]; + __le64 hostid; + __le64 rkey; +}; + +struct nvme_reservation_status { + __le32 gen; + __u8 rtype; + __u8 regctl[2]; + __u8 resv5[2]; + __u8 ptpls; + __u8 resv10[14]; + struct nvme_registered_ctrl regctl_ds[0]; +}; + +struct nvme_registered_ctrl_ext { + __le16 cntlid; + __u8 rcsts; + __u8 rsvd3[5]; + __le64 rkey; + __u8 hostid[16]; + __u8 rsvd32[32]; +}; + +struct nvme_reservation_status_ext { + __le32 gen; + __u8 rtype; + __u8 regctl[2]; + __u8 resv5[2]; + __u8 ptpls; + __u8 resv10[14]; + __u8 rsvd24[40]; + struct nvme_registered_ctrl_ext regctl_eds[0]; +}; + +struct nvmet_pr_register_data { + __le64 crkey; + __le64 nrkey; +}; + +struct nvmet_pr_acquire_data { + __le64 crkey; + __le64 prkey; +}; + +struct nvmet_pr_release_data { + __le64 crkey; +}; + +enum nvme_pr_register_action { + NVME_PR_REGISTER_ACT_REG = 0, + NVME_PR_REGISTER_ACT_UNREG = 1, + NVME_PR_REGISTER_ACT_REPLACE = 2, +}; + +enum nvme_pr_acquire_action { + NVME_PR_ACQUIRE_ACT_ACQUIRE = 0, + NVME_PR_ACQUIRE_ACT_PREEMPT = 1, + NVME_PR_ACQUIRE_ACT_PREEMPT_AND_ABORT = 2, +}; + +enum nvme_pr_release_action { + NVME_PR_RELEASE_ACT_RELEASE = 0, + NVME_PR_RELEASE_ACT_CLEAR = 1, +}; + +enum nvme_pr_change_ptpl { + NVME_PR_CPTPL_NO_CHANGE = 0, + NVME_PR_CPTPL_RESV = 1073741824, + NVME_PR_CPTPL_CLEARED = -2147483648, + NVME_PR_CPTPL_PERSIST = -1073741824, +}; + +struct nvme_ana_group_desc { + __le32 grpid; + __le32 nnsids; + __le64 chgcnt; + __u8 state; + __u8 rsvd17[15]; + __le32 nsids[0]; +}; + +enum { + NVME_CMBSZ_SQS = 1, + NVME_CMBSZ_CQS = 2, + NVME_CMBSZ_LISTS = 4, + NVME_CMBSZ_RDS = 8, + NVME_CMBSZ_WDS = 16, + NVME_CMBSZ_SZ_SHIFT = 12, + NVME_CMBSZ_SZ_MASK = 1048575, + NVME_CMBSZ_SZU_SHIFT = 8, + NVME_CMBSZ_SZU_MASK = 15, +}; + +enum { + NVME_CMBMSC_CRE = 1, + NVME_CMBMSC_CMSE = 2, +}; + +enum { + NVME_SGL_FMT_DATA_DESC = 0, + NVME_SGL_FMT_SEG_DESC = 2, + NVME_SGL_FMT_LAST_SEG_DESC = 3, + NVME_KEY_SGL_FMT_DATA_DESC = 4, + NVME_TRANSPORT_SGL_DATA_DESC = 5, +}; + +enum { + NVME_HOST_MEM_ENABLE = 1, + NVME_HOST_MEM_RETURN = 2, +}; + +struct nvme_host_mem_buf_desc { + __le64 addr; + __le32 size; + __u32 rsvd; +}; + +struct nvme_completion { + union nvme_result result; + __le16 sq_head; + __le16 sq_id; + __u16 command_id; + __le16 status; +}; + +struct nvme_descriptor_pools { + struct dma_pool *large; + struct dma_pool *small; +}; + +struct nvme_queue; + +struct nvme_dev { + struct nvme_queue *queues; + struct blk_mq_tag_set tagset; + struct blk_mq_tag_set admin_tagset; + u32 *dbs; + struct device *dev; + unsigned int online_queues; + unsigned int max_qid; + unsigned int io_queues[3]; + unsigned int num_vecs; + u32 q_depth; + int io_sqes; + u32 db_stride; + void *bar; + long unsigned int bar_mapped_size; + struct mutex shutdown_lock; + bool subsystem; + u64 cmb_size; + bool cmb_use_sqes; + u32 cmbsz; + u32 cmbloc; + struct nvme_ctrl ctrl; + u32 last_ps; + bool hmb; + struct sg_table *hmb_sgt; + mempool_t *dmavec_mempool; + mempool_t *iod_meta_mempool; + __le32 *dbbuf_dbs; + dma_addr_t dbbuf_dbs_dma_addr; + __le32 *dbbuf_eis; + dma_addr_t dbbuf_eis_dma_addr; + u64 host_mem_size; + u32 nr_host_mem_descs; + u32 host_mem_descs_size; + dma_addr_t host_mem_descs_dma; + struct nvme_host_mem_buf_desc *host_mem_descs; + void **host_mem_desc_bufs; + unsigned int nr_allocated_queues; + unsigned int nr_write_queues; + unsigned int nr_poll_queues; + struct nvme_descriptor_pools descriptor_pools[0]; +}; + +struct nvme_queue { + struct nvme_dev *dev; + struct nvme_descriptor_pools descriptor_pools; + spinlock_t sq_lock; + void *sq_cmds; + long: 64; + long: 64; + long: 64; + spinlock_t cq_poll_lock; + struct nvme_completion *cqes; + dma_addr_t sq_dma_addr; + dma_addr_t cq_dma_addr; + u32 *q_db; + u32 q_depth; + u16 cq_vector; + u16 sq_tail; + u16 last_sq_tail; + u16 cq_head; + u16 qid; + u8 cq_phase; + u8 sqes; + long unsigned int flags; + __le32 *dbbuf_sq_db; + __le32 *dbbuf_cq_db; + __le32 *dbbuf_sq_ei; + __le32 *dbbuf_cq_ei; + struct completion delete_done; +}; + +enum nvme_iod_flags { + IOD_ABORTED = 1, + IOD_SMALL_DESCRIPTOR = 2, + IOD_SINGLE_SEGMENT = 4, +}; + +struct nvme_dma_vec { + dma_addr_t addr; + unsigned int len; +}; + +struct nvme_iod { + struct nvme_request req; + struct nvme_command cmd; + u8 flags; + u8 nr_descriptors; + unsigned int total_len; + struct dma_iova_state dma_state; + void *descriptors[5]; + struct nvme_dma_vec *dma_vecs; + unsigned int nr_dma_vecs; + dma_addr_t meta_dma; + struct sg_table meta_sgt; + struct nvme_sgl_desc *meta_descriptor; +}; + +enum nvme_use_sgl { + SGL_UNSUPPORTED = 0, + SGL_SUPPORTED = 1, + SGL_FORCED = 2, +}; + +struct ata_internal { + struct scsi_transport_template t; + struct device_attribute private_port_attrs[3]; + struct device_attribute private_link_attrs[3]; + struct device_attribute private_dev_attrs[9]; + struct transport_container link_attr_cont; + struct transport_container dev_attr_cont; + struct device_attribute *link_attrs[4]; + struct device_attribute *port_attrs[4]; + struct device_attribute *dev_attrs[10]; +}; + +struct ata_show_ering_arg { + char *buf; + int written; +}; + +enum { + PIIX_IOCFG = 84, + ICH5_PMR = 144, + ICH5_PCS = 146, + PIIX_SIDPR_BAR = 5, + PIIX_SIDPR_LEN = 16, + PIIX_SIDPR_IDX = 0, + PIIX_SIDPR_DATA = 4, + PIIX_FLAG_CHECKINTR = 268435456, + PIIX_FLAG_SIDPR = 536870912, + PIIX_PATA_FLAGS = 1, + PIIX_SATA_FLAGS = 268435458, + PIIX_FLAG_PIO16 = 1073741824, + PIIX_80C_PRI = 48, + PIIX_80C_SEC = 192, + P0 = 0, + P1 = 1, + P2 = 2, + P3 = 3, + IDE = -1, + NA = -2, + RV = -3, + PIIX_AHCI_DEVICE = 6, + PIIX_HOST_BROKEN_SUSPEND = 16777216, +}; + +enum piix_controller_ids { + piix_pata_mwdma = 0, + piix_pata_33 = 1, + ich_pata_33 = 2, + ich_pata_66 = 3, + ich_pata_100 = 4, + ich_pata_100_nomwdma1 = 5, + ich5_sata = 6, + ich6_sata = 7, + ich6m_sata = 8, + ich8_sata = 9, + ich8_2port_sata = 10, + ich8m_apple_sata = 11, + tolapai_sata = 12, + piix_pata_vmw = 13, + ich8_sata_snb = 14, + ich8_2port_sata_snb = 15, + ich8_2port_sata_byt = 16, +}; + +struct piix_map_db { + const u32 mask; + const u16 port_enable; + const int map[0]; +}; + +struct piix_host_priv { + const int *map; + u32 saved_iocfg; + void *sidpr; +}; + +struct ich_laptop { + u16 device; + u16 subvendor; + u16 subdevice; +}; + +struct drm_mode_atomic { + __u32 flags; + __u32 count_objs; + __u64 objs_ptr; + __u64 count_props_ptr; + __u64 props_ptr; + __u64 prop_values_ptr; + __u64 reserved; + __u64 user_data; +}; + +struct drm_out_fence_state { + s32 *out_fence_ptr; + struct sync_file *sync_file; + int fd; +}; + +struct drm_mode_get_connector { + __u64 encoders_ptr; + __u64 modes_ptr; + __u64 props_ptr; + __u64 prop_values_ptr; + __u32 count_modes; + __u32 count_props; + __u32 count_encoders; + __u32 encoder_id; + __u32 connector_id; + __u32 connector_type; + __u32 connector_type_id; + __u32 connection; + __u32 mm_width; + __u32 mm_height; + __u32 subpixel; + __u32 pad; +}; + +struct drm_mode_connector_set_property { + __u64 value; + __u32 prop_id; + __u32 connector_id; +}; + +struct drm_mode_obj_set_property { + __u64 value; + __u32 prop_id; + __u32 obj_id; + __u32 obj_type; +}; + +struct drm_panel; + +struct drm_panel_funcs { + int (*prepare)(struct drm_panel *); + int (*enable)(struct drm_panel *); + int (*disable)(struct drm_panel *); + int (*unprepare)(struct drm_panel *); + int (*get_modes)(struct drm_panel *, struct drm_connector *); + enum drm_panel_orientation (*get_orientation)(struct drm_panel *); + int (*get_timings)(struct drm_panel *, unsigned int, struct display_timing *); + void (*debugfs_init)(struct drm_panel *, struct dentry *); +}; + +struct drm_panel { + struct device *dev; + struct backlight_device *backlight; + const struct drm_panel_funcs *funcs; + int connector_type; + struct list_head list; + struct list_head followers; + struct mutex follower_lock; + bool prepare_prev_first; + bool prepared; + bool enabled; + void *container; + struct kref refcount; +}; + +struct drm_conn_prop_enum_list { + int type; + const char *name; + struct ida ida; +}; + +struct cea_sad { + u8 format; + u8 channels; + u8 freq; + u8 byte2; +}; + +struct drm_mode_get_encoder { + __u32 encoder_id; + __u32 encoder_type; + __u32 crtc_id; + __u32 possible_crtcs; + __u32 possible_clones; +}; + +struct drm_memory_stats { + u64 shared; + u64 private; + u64 resident; + u64 purgeable; + u64 active; +}; + +struct drm_stats { + long unsigned int count; + struct { + long unsigned int value; + enum drm_stat_type type; + } data[15]; +}; + +struct drm_set_version { + int drm_di_major; + int drm_di_minor; + int drm_dd_major; + int drm_dd_minor; +}; + +struct drm_get_cap { + __u64 capability; + __u64 value; +}; + +struct drm_set_client_cap { + __u64 capability; + __u64 value; +}; + +struct drm_set_client_name { + __u64 name_len; + __u64 name; +}; + +struct drmres_node { + struct list_head entry; + drmres_release_t release; + const char *name; + size_t size; +}; + +struct drmres { + struct drmres_node node; + u8 data[0]; +}; + +struct drm_mode_obj_get_properties { + __u64 props_ptr; + __u64 prop_values_ptr; + __u32 count_props; + __u32 obj_id; + __u32 obj_type; +}; + +struct drm_mode_set_plane { + __u32 plane_id; + __u32 crtc_id; + __u32 fb_id; + __u32 flags; + __s32 crtc_x; + __s32 crtc_y; + __u32 crtc_w; + __u32 crtc_h; + __u32 src_x; + __u32 src_y; + __u32 src_h; + __u32 src_w; +}; + +struct drm_mode_get_plane { + __u32 plane_id; + __u32 crtc_id; + __u32 fb_id; + __u32 possible_crtcs; + __u32 gamma_size; + __u32 count_format_types; + __u64 format_type_ptr; +}; + +struct drm_mode_get_plane_res { + __u64 plane_id_ptr; + __u32 count_planes; +}; + +struct drm_mode_cursor { + __u32 flags; + __u32 crtc_id; + __s32 x; + __s32 y; + __u32 width; + __u32 height; + __u32 handle; +}; + +struct drm_mode_cursor2 { + __u32 flags; + __u32 crtc_id; + __s32 x; + __s32 y; + __u32 width; + __u32 height; + __u32 handle; + __s32 hot_x; + __s32 hot_y; +}; + +struct drm_plane_size_hint { + __u16 width; + __u16 height; +}; + +struct drm_mode_crtc_page_flip_target { + __u32 crtc_id; + __u32 fb_id; + __u32 flags; + __u32 sequence; + __u64 user_data; +}; + +struct drm_format_modifier_blob { + __u32 version; + __u32 flags; + __u32 count_formats; + __u32 formats_offset; + __u32 count_modifiers; + __u32 modifiers_offset; +}; + +struct drm_format_modifier { + __u64 formats; + __u32 offset; + __u32 pad; + __u64 modifier; +}; + +struct drm_mode_property_enum { + __u64 value; + char name[32]; +}; + +struct drm_mode_get_property { + __u64 values_ptr; + __u64 enum_blob_ptr; + __u32 prop_id; + __u32 flags; + char name[32]; + __u32 count_values; + __u32 count_enum_blobs; +}; + +struct drm_mode_get_blob { + __u32 blob_id; + __u32 length; + __u64 data; +}; + +struct drm_mode_create_blob { + __u64 data; + __u32 length; + __u32 blob_id; +}; + +struct drm_mode_destroy_blob { + __u32 blob_id; +}; + +struct drm_property_enum { + uint64_t value; + struct list_head head; + char name[32]; +}; + +struct trace_event_raw_drm_vblank_event { + struct trace_entry ent; + int crtc; + unsigned int seq; + ktime_t time; + bool high_prec; + char __data[0]; +}; + +struct trace_event_raw_drm_vblank_event_queued { + struct trace_entry ent; + struct drm_file *file; + int crtc; + unsigned int seq; + char __data[0]; +}; + +struct trace_event_raw_drm_vblank_event_delivered { + struct trace_entry ent; + struct drm_file *file; + int crtc; + unsigned int seq; + char __data[0]; +}; + +struct trace_event_data_offsets_drm_vblank_event {}; + +struct trace_event_data_offsets_drm_vblank_event_queued {}; + +struct trace_event_data_offsets_drm_vblank_event_delivered {}; + +typedef void (*btf_trace_drm_vblank_event)(void *, int, unsigned int, ktime_t, bool); + +typedef void (*btf_trace_drm_vblank_event_queued)(void *, struct drm_file *, int, unsigned int); + +typedef void (*btf_trace_drm_vblank_event_delivered)(void *, struct drm_file *, int, unsigned int); + +struct drm_client_buffer { + struct drm_client_dev *client; + u32 pitch; + struct drm_gem_object *gem; + struct iosys_map map; + struct drm_framebuffer *fb; +}; + +struct drm_panel_follower; + +struct drm_panel_follower_funcs { + int (*panel_prepared)(struct drm_panel_follower *); + int (*panel_unpreparing)(struct drm_panel_follower *); + int (*panel_enabled)(struct drm_panel_follower *); + int (*panel_disabling)(struct drm_panel_follower *); +}; + +struct drm_panel_follower { + const struct drm_panel_follower_funcs *funcs; + struct list_head list; + struct drm_panel *panel; +}; + +struct drm_dmi_panel_orientation_data { + int width; + int height; + const char * const *bios_dates; + int orientation; +}; + +struct drm_fb_helper_funcs; + +struct drm_fb_helper { + struct drm_client_dev client; + struct drm_client_buffer *buffer; + struct drm_framebuffer *fb; + struct drm_device *dev; + const struct drm_fb_helper_funcs *funcs; + struct fb_info *info; + u32 pseudo_palette[17]; + struct drm_clip_rect damage_clip; + spinlock_t damage_lock; + struct work_struct damage_work; + struct work_struct resume_work; + struct mutex lock; + struct list_head kernel_fb_list; + bool delayed_hotplug; + bool deferred_setup; + int preferred_bpp; + struct fb_deferred_io fbdefio; +}; + +struct drm_fb_helper_surface_size { + u32 fb_width; + u32 fb_height; + u32 surface_width; + u32 surface_height; + u32 surface_bpp; + u32 surface_depth; +}; + +struct drm_fb_helper_funcs { + int (*fb_dirty)(struct drm_fb_helper *, struct drm_clip_rect *); + void (*fb_restore)(struct drm_fb_helper *); + void (*fb_set_suspend)(struct drm_fb_helper *, bool); +}; + +struct drm_gem_shmem_object { + struct drm_gem_object base; + struct page **pages; + refcount_t pages_use_count; + refcount_t pages_pin_count; + int madv; + struct list_head madv_list; + struct sg_table *sgt; + void *vaddr; + refcount_t vmap_use_count; + bool pages_mark_dirty_on_put: 1; + bool pages_mark_accessed_on_put: 1; + bool map_wc: 1; +}; + +struct panel_bridge { + struct drm_bridge bridge; + struct drm_connector connector; + struct drm_panel *panel; + u32 connector_type; +}; + +struct drm_log_scanout { + struct drm_client_buffer *buffer; + const struct font_desc *font; + u32 rows; + u32 columns; + u32 scaled_font_h; + u32 scaled_font_w; + u32 line; + u32 format; + u32 px_width; + u32 front_color; + u32 prefix_color; +}; + +struct drm_log { + struct mutex lock; + struct drm_client_dev client; + struct console con; + bool probed; + u32 n_scanout; + struct drm_log_scanout *scanout; +}; + +struct pixel_format { + unsigned char bits_per_pixel; + bool indexed; + union { + struct { + struct { + unsigned char offset; + unsigned char length; + } alpha; + struct { + unsigned char offset; + unsigned char length; + } red; + struct { + unsigned char offset; + unsigned char length; + } green; + struct { + unsigned char offset; + unsigned char length; + } blue; + }; + struct { + unsigned char offset; + unsigned char length; + } index; + }; +}; + +struct drm_sysfb_format { + struct pixel_format pixel; + u32 fourcc; +}; + +struct spi_mem_driver { + struct spi_driver spidrv; + int (*probe)(struct spi_mem *); + int (*remove)(struct spi_mem *); + void (*shutdown)(struct spi_mem *); +}; + +enum tcx_action_base { + TCX_NEXT = -1, + TCX_PASS = 0, + TCX_DROP = 2, + TCX_REDIRECT = 7, +}; + +enum netkit_action { + NETKIT_NEXT = -1, + NETKIT_PASS = 0, + NETKIT_DROP = 2, + NETKIT_REDIRECT = 7, +}; + +enum netkit_mode { + NETKIT_L2 = 0, + NETKIT_L3 = 1, +}; + +enum netkit_scrub { + NETKIT_SCRUB_NONE = 0, + NETKIT_SCRUB_DEFAULT = 1, +}; + +enum { + IFLA_NETKIT_UNSPEC = 0, + IFLA_NETKIT_PEER_INFO = 1, + IFLA_NETKIT_PRIMARY = 2, + IFLA_NETKIT_POLICY = 3, + IFLA_NETKIT_PEER_POLICY = 4, + IFLA_NETKIT_MODE = 5, + IFLA_NETKIT_SCRUB = 6, + IFLA_NETKIT_PEER_SCRUB = 7, + IFLA_NETKIT_HEADROOM = 8, + IFLA_NETKIT_TAILROOM = 9, + __IFLA_NETKIT_MAX = 10, +}; + +struct netkit { + struct net_device *peer; + struct bpf_mprog_entry *active; + enum netkit_action policy; + enum netkit_scrub scrub; + struct bpf_mprog_bundle bundle; + enum netkit_mode mode; + bool primary; + u32 headroom; +}; + +struct netkit_link { + struct bpf_link link; + struct net_device *dev; +}; + +struct mii_ioctl_data { + __u16 phy_id; + __u16 reg_num; + __u16 val_in; + __u16 val_out; +}; + +enum link_inband_signalling { + LINK_INBAND_DISABLE = 1, + LINK_INBAND_ENABLE = 2, + LINK_INBAND_BYPASS = 4, +}; + +enum phy_state_work { + PHY_STATE_WORK_NONE = 0, + PHY_STATE_WORK_ANEG = 1, + PHY_STATE_WORK_SUSPEND = 2, +}; + +struct sfp; + +struct sfp_socket_ops; + +struct sfp_quirk; + +struct sfp_upstream_ops; + +struct sfp_bus { + struct kref kref; + struct list_head node; + const struct fwnode_handle *fwnode; + const struct sfp_socket_ops *socket_ops; + struct device *sfp_dev; + struct sfp *sfp; + const struct sfp_quirk *sfp_quirk; + const struct sfp_upstream_ops *upstream_ops; + void *upstream; + struct phy_device *phydev; + bool registered; + bool started; +}; + +struct sfp_eeprom_base { + u8 phys_id; + u8 phys_ext_id; + u8 connector; + u8 if_1x_copper_passive: 1; + u8 if_1x_copper_active: 1; + u8 if_1x_lx: 1; + u8 if_1x_sx: 1; + u8 e10g_base_sr: 1; + u8 e10g_base_lr: 1; + u8 e10g_base_lrm: 1; + u8 e10g_base_er: 1; + u8 sonet_oc3_short_reach: 1; + u8 sonet_oc3_smf_intermediate_reach: 1; + u8 sonet_oc3_smf_long_reach: 1; + u8 unallocated_5_3: 1; + u8 sonet_oc12_short_reach: 1; + u8 sonet_oc12_smf_intermediate_reach: 1; + u8 sonet_oc12_smf_long_reach: 1; + u8 unallocated_5_7: 1; + u8 sonet_oc48_short_reach: 1; + u8 sonet_oc48_intermediate_reach: 1; + u8 sonet_oc48_long_reach: 1; + u8 sonet_reach_bit2: 1; + u8 sonet_reach_bit1: 1; + u8 sonet_oc192_short_reach: 1; + u8 escon_smf_1310_laser: 1; + u8 escon_mmf_1310_led: 1; + u8 e1000_base_sx: 1; + u8 e1000_base_lx: 1; + u8 e1000_base_cx: 1; + u8 e1000_base_t: 1; + u8 e100_base_lx: 1; + u8 e100_base_fx: 1; + u8 e_base_bx10: 1; + u8 e_base_px: 1; + u8 fc_tech_electrical_inter_enclosure: 1; + u8 fc_tech_lc: 1; + u8 fc_tech_sa: 1; + u8 fc_ll_m: 1; + u8 fc_ll_l: 1; + u8 fc_ll_i: 1; + u8 fc_ll_s: 1; + u8 fc_ll_v: 1; + u8 unallocated_8_0: 1; + u8 unallocated_8_1: 1; + u8 sfp_ct_passive: 1; + u8 sfp_ct_active: 1; + u8 fc_tech_ll: 1; + u8 fc_tech_sl: 1; + u8 fc_tech_sn: 1; + u8 fc_tech_electrical_intra_enclosure: 1; + u8 fc_media_sm: 1; + u8 unallocated_9_1: 1; + u8 fc_media_m5: 1; + u8 fc_media_m6: 1; + u8 fc_media_tv: 1; + u8 fc_media_mi: 1; + u8 fc_media_tp: 1; + u8 fc_media_tw: 1; + u8 fc_speed_100: 1; + u8 unallocated_10_1: 1; + u8 fc_speed_200: 1; + u8 fc_speed_3200: 1; + u8 fc_speed_400: 1; + u8 fc_speed_1600: 1; + u8 fc_speed_800: 1; + u8 fc_speed_1200: 1; + u8 encoding; + u8 br_nominal; + u8 rate_id; + u8 link_len[6]; + char vendor_name[16]; + u8 extended_cc; + char vendor_oui[3]; + char vendor_pn[16]; + char vendor_rev[4]; + union { + __be16 optical_wavelength; + __be16 cable_compliance; + struct { + u8 sff8431_app_e: 1; + u8 fc_pi_4_app_h: 1; + u8 reserved60_2: 6; + u8 reserved61: 8; + } passive; + struct { + u8 sff8431_app_e: 1; + u8 fc_pi_4_app_h: 1; + u8 sff8431_lim: 1; + u8 fc_pi_4_lim: 1; + u8 reserved60_4: 4; + u8 reserved61: 8; + } active; + }; + u8 reserved62; + u8 cc_base; +}; + +struct sfp_eeprom_ext { + __be16 options; + u8 br_max; + u8 br_min; + char vendor_sn[16]; + char datecode[8]; + u8 diagmon; + u8 enhopts; + u8 sff8472_compliance; + u8 cc_ext; +}; + +struct sfp_eeprom_id { + struct sfp_eeprom_base base; + struct sfp_eeprom_ext ext; +}; + +enum { + SFF8024_ID_UNK = 0, + SFF8024_ID_SFF_8472 = 2, + SFF8024_ID_SFP = 3, + SFF8024_ID_DWDM_SFP = 11, + SFF8024_ID_QSFP_8438 = 12, + SFF8024_ID_QSFP_8436_8636 = 13, + SFF8024_ID_QSFP28_8636 = 17, + SFF8024_ID_QSFP_DD = 24, + SFF8024_ID_OSFP = 25, + SFF8024_ID_DSFP = 27, + SFF8024_ID_QSFP_PLUS_CMIS = 30, + SFF8024_ID_SFP_DD_CMIS = 31, + SFF8024_ID_SFP_PLUS_CMIS = 32, + SFF8024_ENCODING_UNSPEC = 0, + SFF8024_ENCODING_8B10B = 1, + SFF8024_ENCODING_4B5B = 2, + SFF8024_ENCODING_NRZ = 3, + SFF8024_ENCODING_8472_MANCHESTER = 4, + SFF8024_ENCODING_8472_SONET = 5, + SFF8024_ENCODING_8472_64B66B = 6, + SFF8024_ENCODING_8436_MANCHESTER = 6, + SFF8024_ENCODING_8436_SONET = 4, + SFF8024_ENCODING_8436_64B66B = 5, + SFF8024_ENCODING_256B257B = 7, + SFF8024_ENCODING_PAM4 = 8, + SFF8024_CONNECTOR_UNSPEC = 0, + SFF8024_CONNECTOR_SC = 1, + SFF8024_CONNECTOR_FIBERJACK = 6, + SFF8024_CONNECTOR_LC = 7, + SFF8024_CONNECTOR_MT_RJ = 8, + SFF8024_CONNECTOR_MU = 9, + SFF8024_CONNECTOR_SG = 10, + SFF8024_CONNECTOR_OPTICAL_PIGTAIL = 11, + SFF8024_CONNECTOR_MPO_1X12 = 12, + SFF8024_CONNECTOR_MPO_2X16 = 13, + SFF8024_CONNECTOR_HSSDC_II = 32, + SFF8024_CONNECTOR_COPPER_PIGTAIL = 33, + SFF8024_CONNECTOR_RJ45 = 34, + SFF8024_CONNECTOR_NOSEPARATE = 35, + SFF8024_CONNECTOR_MXC_2X16 = 36, + SFF8024_ECC_UNSPEC = 0, + SFF8024_ECC_100G_25GAUI_C2M_AOC = 1, + SFF8024_ECC_100GBASE_SR4_25GBASE_SR = 2, + SFF8024_ECC_100GBASE_LR4_25GBASE_LR = 3, + SFF8024_ECC_100GBASE_ER4_25GBASE_ER = 4, + SFF8024_ECC_100GBASE_SR10 = 5, + SFF8024_ECC_100GBASE_CR4 = 11, + SFF8024_ECC_25GBASE_CR_S = 12, + SFF8024_ECC_25GBASE_CR_N = 13, + SFF8024_ECC_10GBASE_T_SFI = 22, + SFF8024_ECC_10GBASE_T_SR = 28, + SFF8024_ECC_5GBASE_T = 29, + SFF8024_ECC_2_5GBASE_T = 30, +}; + +struct sfp_upstream_ops { + void (*attach)(void *, struct sfp_bus *); + void (*detach)(void *, struct sfp_bus *); + int (*module_insert)(void *, const struct sfp_eeprom_id *); + void (*module_remove)(void *); + int (*module_start)(void *); + void (*module_stop)(void *); + void (*link_down)(void *); + void (*link_up)(void *); + int (*connect_phy)(void *, struct phy_device *); + void (*disconnect_phy)(void *, struct phy_device *); +}; + +struct sfp_quirk { + const char *vendor; + const char *part; + void (*modes)(const struct sfp_eeprom_id *, long unsigned int *, long unsigned int *); + void (*fixup)(struct sfp *); +}; + +struct sfp_socket_ops { + void (*attach)(struct sfp *); + void (*detach)(struct sfp *); + void (*start)(struct sfp *); + void (*stop)(struct sfp *); + void (*set_signal_rate)(struct sfp *, unsigned int); + int (*module_info)(struct sfp *, struct ethtool_modinfo *); + int (*module_eeprom)(struct sfp *, struct ethtool_eeprom *, u8 *); + int (*module_eeprom_by_page)(struct sfp *, const struct ethtool_module_eeprom *, struct netlink_ext_ack *); +}; + +struct nda_cacheinfo { + __u32 ndm_confirmed; + __u32 ndm_used; + __u32 ndm_updated; + __u32 ndm_refcnt; +}; + +enum { + IFLA_VXLAN_UNSPEC = 0, + IFLA_VXLAN_ID = 1, + IFLA_VXLAN_GROUP = 2, + IFLA_VXLAN_LINK = 3, + IFLA_VXLAN_LOCAL = 4, + IFLA_VXLAN_TTL = 5, + IFLA_VXLAN_TOS = 6, + IFLA_VXLAN_LEARNING = 7, + IFLA_VXLAN_AGEING = 8, + IFLA_VXLAN_LIMIT = 9, + IFLA_VXLAN_PORT_RANGE = 10, + IFLA_VXLAN_PROXY = 11, + IFLA_VXLAN_RSC = 12, + IFLA_VXLAN_L2MISS = 13, + IFLA_VXLAN_L3MISS = 14, + IFLA_VXLAN_PORT = 15, + IFLA_VXLAN_GROUP6 = 16, + IFLA_VXLAN_LOCAL6 = 17, + IFLA_VXLAN_UDP_CSUM = 18, + IFLA_VXLAN_UDP_ZERO_CSUM6_TX = 19, + IFLA_VXLAN_UDP_ZERO_CSUM6_RX = 20, + IFLA_VXLAN_REMCSUM_TX = 21, + IFLA_VXLAN_REMCSUM_RX = 22, + IFLA_VXLAN_GBP = 23, + IFLA_VXLAN_REMCSUM_NOPARTIAL = 24, + IFLA_VXLAN_COLLECT_METADATA = 25, + IFLA_VXLAN_LABEL = 26, + IFLA_VXLAN_GPE = 27, + IFLA_VXLAN_TTL_INHERIT = 28, + IFLA_VXLAN_DF = 29, + IFLA_VXLAN_VNIFILTER = 30, + IFLA_VXLAN_LOCALBYPASS = 31, + IFLA_VXLAN_LABEL_POLICY = 32, + IFLA_VXLAN_RESERVED_BITS = 33, + IFLA_VXLAN_MC_ROUTE = 34, + IFLA_VXLAN_FAN_MAP = 35, + __IFLA_VXLAN_MAX = 36, +}; + +struct ifla_vxlan_port_range { + __be16 low; + __be16 high; +}; + +struct arphdr { + __be16 ar_hrd; + __be16 ar_pro; + unsigned char ar_hln; + unsigned char ar_pln; + __be16 ar_op; +}; + +struct nd_msg { + struct icmp6hdr icmph; + struct in6_addr target; + __u8 opt[0]; +}; + +struct gro_remcsum { + int offset; + __wsum delta; +}; + +enum { + IFLA_FAN_UNSPEC = 0, + IFLA_FAN_MAPPING = 1, + __IFLA_FAN_MAX = 2, +}; + +struct ifla_fan_map { + __be32 underlay; + __be32 overlay; + __u16 underlay_prefix; + __u16 overlay_prefix; +}; + +struct ip_fan_map { + __be32 underlay; + __be32 overlay; + u16 underlay_prefix; + u16 overlay_prefix; + u32 overlay_mask; + struct list_head list; + struct callback_head rcu; +}; + +enum udp_parsable_tunnel_type { + UDP_TUNNEL_TYPE_VXLAN = 1, + UDP_TUNNEL_TYPE_GENEVE = 2, + UDP_TUNNEL_TYPE_VXLAN_GPE = 4, +}; + +enum switchdev_notifier_type { + SWITCHDEV_FDB_ADD_TO_BRIDGE = 1, + SWITCHDEV_FDB_DEL_TO_BRIDGE = 2, + SWITCHDEV_FDB_ADD_TO_DEVICE = 3, + SWITCHDEV_FDB_DEL_TO_DEVICE = 4, + SWITCHDEV_FDB_OFFLOADED = 5, + SWITCHDEV_FDB_FLUSH_TO_BRIDGE = 6, + SWITCHDEV_PORT_OBJ_ADD = 7, + SWITCHDEV_PORT_OBJ_DEL = 8, + SWITCHDEV_PORT_ATTR_SET = 9, + SWITCHDEV_VXLAN_FDB_ADD_TO_BRIDGE = 10, + SWITCHDEV_VXLAN_FDB_DEL_TO_BRIDGE = 11, + SWITCHDEV_VXLAN_FDB_ADD_TO_DEVICE = 12, + SWITCHDEV_VXLAN_FDB_DEL_TO_DEVICE = 13, + SWITCHDEV_VXLAN_FDB_OFFLOADED = 14, + SWITCHDEV_BRPORT_OFFLOADED = 15, + SWITCHDEV_BRPORT_UNOFFLOADED = 16, + SWITCHDEV_BRPORT_REPLAY = 17, +}; + +struct switchdev_notifier_info { + struct net_device *dev; + struct netlink_ext_ack *extack; + const void *ctx; +}; + +struct vxlanhdr_gbp { + u8 vx_flags; + u8 reserved_flags1: 3; + u8 policy_applied: 1; + u8 reserved_flags2: 2; + u8 dont_learn: 1; + u8 reserved_flags3: 1; + __be16 policy_id; + __be32 vx_vni; +}; + +struct vxlanhdr_gpe { + u8 oam_flag: 1; + u8 reserved_flags1: 1; + u8 np_applied: 1; + u8 instance_applied: 1; + u8 version: 2; + u8 reserved_flags2: 2; + u8 reserved_flags3; + u8 reserved_flags4; + u8 next_protocol; + __be32 vx_vni; +}; + +struct switchdev_notifier_vxlan_fdb_info { + struct switchdev_notifier_info info; + union vxlan_addr remote_ip; + __be16 remote_port; + __be32 remote_vni; + u32 remote_ifindex; + u8 eth_addr[6]; + __be32 vni; + bool offloaded; + bool added_by_user; +}; + +struct vxlan_fdb_key { + u8 eth_addr[6]; + __be32 vni; +}; + +struct vxlan_fdb { + struct rhash_head rhnode; + struct callback_head rcu; + long unsigned int updated; + long unsigned int used; + struct list_head remotes; + struct vxlan_fdb_key key; + u16 state; + u16 flags; + struct list_head nh_list; + struct hlist_node fdb_node; + struct nexthop *nh; + struct vxlan_dev *vdev; +}; + +struct vxlan_fdb_flush_desc { + bool ignore_default_entry; + long unsigned int state; + long unsigned int state_mask; + long unsigned int flags; + long unsigned int flags_mask; + __be32 src_vni; + u32 nhid; + __be32 vni; + __be16 port; + union vxlan_addr dst_ip; +}; + +struct vxlan_mdb_entry_key { + union vxlan_addr src; + union vxlan_addr dst; + __be32 vni; +}; + +struct vxlan_mdb_entry { + struct rhash_head rhnode; + struct list_head remotes; + struct vxlan_mdb_entry_key key; + struct hlist_node mdb_node; + struct callback_head rcu; +}; + +enum gdma_request_type { + GDMA_VERIFY_VF_DRIVER_VERSION = 1, + GDMA_QUERY_MAX_RESOURCES = 2, + GDMA_LIST_DEVICES = 3, + GDMA_REGISTER_DEVICE = 4, + GDMA_DEREGISTER_DEVICE = 5, + GDMA_GENERATE_TEST_EQE = 10, + GDMA_CREATE_QUEUE = 12, + GDMA_DISABLE_QUEUE = 13, + GDMA_ALLOCATE_RESOURCE_RANGE = 22, + GDMA_DESTROY_RESOURCE_RANGE = 24, + GDMA_CREATE_DMA_REGION = 25, + GDMA_DMA_REGION_ADD_PAGES = 26, + GDMA_DESTROY_DMA_REGION = 27, + GDMA_CREATE_PD = 29, + GDMA_DESTROY_PD = 30, + GDMA_CREATE_MR = 31, + GDMA_DESTROY_MR = 32, + GDMA_QUERY_HWC_TIMEOUT = 84, +}; + +struct gdma_resource { + spinlock_t lock; + u32 size; + long unsigned int *map; +}; + +union gdma_doorbell_entry { + u64 as_uint64; + struct { + u64 id: 24; + u64 reserved: 8; + u64 tail_ptr: 31; + u64 arm: 1; + } cq; + struct { + u64 id: 24; + u64 wqe_cnt: 8; + u64 tail_ptr: 32; + } rq; + struct { + u64 id: 24; + u64 reserved: 8; + u64 tail_ptr: 32; + } sq; + struct { + u64 id: 16; + u64 reserved: 16; + u64 tail_ptr: 31; + u64 arm: 1; + } eq; +}; + +struct gdma_general_req { + struct gdma_req_hdr hdr; +}; + +struct gdma_general_resp { + struct gdma_resp_hdr hdr; +}; + +enum gdma_page_type { + GDMA_PAGE_TYPE_4K = 0, +}; + +struct mana_serv_work { + struct work_struct serv_work; + struct pci_dev *pdev; + enum gdma_eqe_type type; +}; + +struct gdma_irq_context { + void (*handler)(void *); + spinlock_t lock; + struct list_head eq_list; + char name[32]; +}; + +struct gdma_wqe { + u32 reserved: 24; + u32 last_vbytes: 8; + union { + u32 flags; + struct { + u32 num_sge: 8; + u32 inline_oob_size_div4: 3; + u32 client_oob_in_sgl: 1; + u32 reserved1: 4; + u32 client_data_unit: 14; + u32 reserved2: 2; + }; + }; +}; + +struct gdma_cqe { + u32 cqe_data[15]; + union { + u32 as_uint32; + struct { + u32 wq_num: 24; + u32 is_sq: 1; + u32 reserved: 4; + u32 owner_bits: 3; + }; + } cqe_info; +}; + +union gdma_eqe_info { + u32 as_uint32; + struct { + u32 type: 8; + u32 reserved1: 8; + u32 client_id: 2; + u32 reserved2: 11; + u32 owner_bits: 3; + }; +}; + +struct gdma_eqe { + u32 details[3]; + u32 eqe_info; +}; + +struct gdma_generate_test_event_req { + struct gdma_req_hdr hdr; + u32 queue_index; +}; + +enum { + GDMA_PROTOCOL_V1 = 1, + GDMA_PROTOCOL_FIRST = 1, + GDMA_PROTOCOL_LAST = 1, +}; + +struct gdma_verify_ver_req { + struct gdma_req_hdr hdr; + u64 protocol_ver_min; + u64 protocol_ver_max; + u64 gd_drv_cap_flags1; + u64 gd_drv_cap_flags2; + u64 gd_drv_cap_flags3; + u64 gd_drv_cap_flags4; + u64 drv_ver; + u32 os_type; + u32 reserved; + u32 os_ver_major; + u32 os_ver_minor; + u32 os_ver_build; + u32 os_ver_platform; + u64 reserved_2; + u8 os_ver_str1[128]; + u8 os_ver_str2[128]; + u8 os_ver_str3[128]; + u8 os_ver_str4[128]; +}; + +struct gdma_verify_ver_resp { + struct gdma_resp_hdr hdr; + u64 gdma_protocol_ver; + u64 pf_cap_flags1; + u64 pf_cap_flags2; + u64 pf_cap_flags3; + u64 pf_cap_flags4; +}; + +struct gdma_query_max_resources_resp { + struct gdma_resp_hdr hdr; + u32 status; + u32 max_sq; + u32 max_rq; + u32 max_cq; + u32 max_eq; + u32 max_db; + u32 max_mst; + u32 max_cq_mod_ctx; + u32 max_mod_cq; + u32 max_msix; +}; + +struct gdma_list_devices_resp { + struct gdma_resp_hdr hdr; + u32 num_of_devs; + u32 reserved; + struct gdma_dev_id devs[64]; +}; + +struct gdma_register_device_resp { + struct gdma_resp_hdr hdr; + u32 pdid; + u32 gpa_mkey; + u32 db_id; +}; + +struct gdma_create_queue_req { + struct gdma_req_hdr hdr; + u32 type; + u32 reserved1; + u32 pdid; + u32 doolbell_id; + u64 gdma_region; + u32 reserved2; + u32 queue_size; + u32 log2_throttle_limit; + u32 eq_pci_msix_index; + u32 cq_mod_ctx_id; + u32 cq_parent_eq_id; + u8 rq_drop_on_overrun; + u8 rq_err_on_wqe_overflow; + u8 rq_chain_rec_wqes; + u8 sq_hw_db; + u32 reserved3; +}; + +struct gdma_create_queue_resp { + struct gdma_resp_hdr hdr; + u32 queue_index; +}; + +struct gdma_disable_queue_req { + struct gdma_req_hdr hdr; + u32 type; + u32 queue_index; + u32 alloc_res_id_on_creation; +}; + +struct gdma_query_hwc_timeout_req { + struct gdma_req_hdr hdr; + u32 timeout_ms; + u32 reserved; +}; + +struct gdma_query_hwc_timeout_resp { + struct gdma_resp_hdr hdr; + u32 timeout_ms; + u32 reserved; +}; + +struct gdma_create_dma_region_req { + struct gdma_req_hdr hdr; + u64 length; + u32 offset_in_page; + u32 gdma_page_type; + u32 page_count; + u32 page_addr_list_len; + u64 page_addr_list[0]; +}; + +struct gdma_create_dma_region_resp { + struct gdma_resp_hdr hdr; + u64 dma_region_handle; +}; + +struct gdma_destroy_dma_region_req { + struct gdma_req_hdr hdr; + u64 dma_region_handle; +}; + +struct hwc_rx_oob { + u32 type: 6; + u32 eom: 1; + u32 som: 1; + u32 vendor_err: 8; + u32 reserved1: 16; + u32 src_virt_wq: 24; + u32 src_vfid: 8; + u32 reserved2; + union { + u32 wqe_addr_low; + u32 wqe_offset; + }; + u32 wqe_addr_high; + u32 client_data_unit: 14; + u32 reserved3: 18; + u32 tx_oob_data_size; + u32 chunk_offset: 21; + u32 reserved4: 11; +}; + +struct hwc_tx_oob { + u32 reserved1; + u32 reserved2; + u32 vrq_id: 24; + u32 dest_vfid: 8; + u32 vrcq_id: 24; + u32 reserved3: 8; + u32 vscq_id: 24; + u32 loopback: 1; + u32 lso_override: 1; + u32 dest_pf: 1; + u32 reserved4: 5; + u32 vsq_id: 24; + u32 reserved5: 8; +}; + +struct hwc_work_request { + void *buf_va; + void *buf_sge_addr; + u32 buf_len; + u32 msg_size; + struct gdma_wqe_request wqe_req; + struct hwc_tx_oob tx_oob; + struct gdma_sge sge; +}; + +struct hwc_dma_buf { + struct gdma_mem_info mem_info; + u32 gpa_mkey; + u32 num_reqs; + struct hwc_work_request reqs[0]; +}; + +typedef void hwc_rx_event_handler_t(void *, u32, const struct hwc_rx_oob *); + +typedef void hwc_tx_event_handler_t(void *, u32, const struct hwc_rx_oob *); + +struct hw_channel_context; + +struct hwc_cq { + struct hw_channel_context *hwc; + struct gdma_queue *gdma_cq; + struct gdma_queue *gdma_eq; + struct gdma_comp *comp_buf; + u16 queue_depth; + hwc_rx_event_handler_t *rx_event_handler; + void *rx_event_ctx; + hwc_tx_event_handler_t *tx_event_handler; + void *tx_event_ctx; +}; + +struct hwc_wq; + +struct hwc_caller_ctx; + +struct hw_channel_context { + struct gdma_dev *gdma_dev; + struct device *dev; + u16 num_inflight_msg; + u32 max_req_msg_size; + u16 hwc_init_q_depth_max; + u32 hwc_init_max_req_msg_size; + u32 hwc_init_max_resp_msg_size; + struct completion hwc_init_eqe_comp; + struct hwc_wq *rxq; + struct hwc_wq *txq; + struct hwc_cq *cq; + struct semaphore sema; + struct gdma_resource inflight_msg_res; + u32 pf_dest_vrq_id; + u32 pf_dest_vrcq_id; + u32 hwc_timeout; + struct hwc_caller_ctx *caller_ctx; +}; + +struct hwc_wq { + struct hw_channel_context *hwc; + struct gdma_queue *gdma_wq; + struct hwc_dma_buf *msg_buf; + u16 queue_depth; + struct hwc_cq *hwc_cq; +}; + +struct hwc_caller_ctx { + struct completion comp_event; + void *output_buf; + u32 output_buflen; + u32 error; + u32 status_code; +}; + +struct mana_dev_recovery { + struct list_head list; + struct pci_dev *pdev; + enum gdma_eqe_type type; +}; + +struct mana_dev_recovery_work { + struct list_head dev_list; + struct delayed_work work; + spinlock_t lock; +}; + +struct mana_stats_desc { + char name[32]; + u16 offset; +}; + +enum vcap_type { + VCAP_TYPE_ES0 = 0, + VCAP_TYPE_ES2 = 1, + VCAP_TYPE_IS0 = 2, + VCAP_TYPE_IS1 = 3, + VCAP_TYPE_IS2 = 4, + VCAP_TYPE_MAX = 5, +}; + +enum vcap_keyfield_set { + VCAP_KFS_NO_VALUE = 0, + VCAP_KFS_5TUPLE_IP4 = 1, + VCAP_KFS_5TUPLE_IP6 = 2, + VCAP_KFS_7TUPLE = 3, + VCAP_KFS_ARP = 4, + VCAP_KFS_DBL_VID = 5, + VCAP_KFS_DMAC_VID = 6, + VCAP_KFS_ETAG = 7, + VCAP_KFS_IP4_OTHER = 8, + VCAP_KFS_IP4_TCP_UDP = 9, + VCAP_KFS_IP4_VID = 10, + VCAP_KFS_IP6_OTHER = 11, + VCAP_KFS_IP6_STD = 12, + VCAP_KFS_IP6_TCP_UDP = 13, + VCAP_KFS_IP6_VID = 14, + VCAP_KFS_IP_7TUPLE = 15, + VCAP_KFS_ISDX = 16, + VCAP_KFS_LL_FULL = 17, + VCAP_KFS_MAC_ETYPE = 18, + VCAP_KFS_MAC_LLC = 19, + VCAP_KFS_MAC_SNAP = 20, + VCAP_KFS_NORMAL = 21, + VCAP_KFS_NORMAL_5TUPLE_IP4 = 22, + VCAP_KFS_NORMAL_7TUPLE = 23, + VCAP_KFS_NORMAL_IP6 = 24, + VCAP_KFS_OAM = 25, + VCAP_KFS_PURE_5TUPLE_IP4 = 26, + VCAP_KFS_RT = 27, + VCAP_KFS_SMAC_SIP4 = 28, + VCAP_KFS_SMAC_SIP6 = 29, + VCAP_KFS_VID = 30, +}; + +enum vcap_key_field { + VCAP_KF_NO_VALUE = 0, + VCAP_KF_8021BR_ECID_BASE = 1, + VCAP_KF_8021BR_ECID_EXT = 2, + VCAP_KF_8021BR_E_TAGGED = 3, + VCAP_KF_8021BR_GRP = 4, + VCAP_KF_8021BR_IGR_ECID_BASE = 5, + VCAP_KF_8021BR_IGR_ECID_EXT = 6, + VCAP_KF_8021CB_R_TAGGED_IS = 7, + VCAP_KF_8021Q_DEI0 = 8, + VCAP_KF_8021Q_DEI1 = 9, + VCAP_KF_8021Q_DEI2 = 10, + VCAP_KF_8021Q_DEI_CLS = 11, + VCAP_KF_8021Q_PCP0 = 12, + VCAP_KF_8021Q_PCP1 = 13, + VCAP_KF_8021Q_PCP2 = 14, + VCAP_KF_8021Q_PCP_CLS = 15, + VCAP_KF_8021Q_TPID = 16, + VCAP_KF_8021Q_TPID0 = 17, + VCAP_KF_8021Q_TPID1 = 18, + VCAP_KF_8021Q_TPID2 = 19, + VCAP_KF_8021Q_VID0 = 20, + VCAP_KF_8021Q_VID1 = 21, + VCAP_KF_8021Q_VID2 = 22, + VCAP_KF_8021Q_VID_CLS = 23, + VCAP_KF_8021Q_VLAN_DBL_TAGGED_IS = 24, + VCAP_KF_8021Q_VLAN_TAGGED_IS = 25, + VCAP_KF_8021Q_VLAN_TAGS = 26, + VCAP_KF_ACL_GRP_ID = 27, + VCAP_KF_ARP_ADDR_SPACE_OK_IS = 28, + VCAP_KF_ARP_LEN_OK_IS = 29, + VCAP_KF_ARP_OPCODE = 30, + VCAP_KF_ARP_OPCODE_UNKNOWN_IS = 31, + VCAP_KF_ARP_PROTO_SPACE_OK_IS = 32, + VCAP_KF_ARP_SENDER_MATCH_IS = 33, + VCAP_KF_ARP_TGT_MATCH_IS = 34, + VCAP_KF_COSID_CLS = 35, + VCAP_KF_ES0_ISDX_KEY_ENA = 36, + VCAP_KF_ETYPE = 37, + VCAP_KF_ETYPE_LEN_IS = 38, + VCAP_KF_HOST_MATCH = 39, + VCAP_KF_IF_EGR_PORT_MASK = 40, + VCAP_KF_IF_EGR_PORT_MASK_RNG = 41, + VCAP_KF_IF_EGR_PORT_NO = 42, + VCAP_KF_IF_IGR_PORT = 43, + VCAP_KF_IF_IGR_PORT_MASK = 44, + VCAP_KF_IF_IGR_PORT_MASK_L3 = 45, + VCAP_KF_IF_IGR_PORT_MASK_RNG = 46, + VCAP_KF_IF_IGR_PORT_MASK_SEL = 47, + VCAP_KF_IF_IGR_PORT_SEL = 48, + VCAP_KF_IP4_IS = 49, + VCAP_KF_IP_MC_IS = 50, + VCAP_KF_IP_PAYLOAD_5TUPLE = 51, + VCAP_KF_IP_PAYLOAD_S1_IP6 = 52, + VCAP_KF_IP_SNAP_IS = 53, + VCAP_KF_ISDX_CLS = 54, + VCAP_KF_ISDX_GT0_IS = 55, + VCAP_KF_L2_BC_IS = 56, + VCAP_KF_L2_DMAC = 57, + VCAP_KF_L2_FRM_TYPE = 58, + VCAP_KF_L2_FWD_IS = 59, + VCAP_KF_L2_LLC = 60, + VCAP_KF_L2_MAC = 61, + VCAP_KF_L2_MC_IS = 62, + VCAP_KF_L2_PAYLOAD0 = 63, + VCAP_KF_L2_PAYLOAD1 = 64, + VCAP_KF_L2_PAYLOAD2 = 65, + VCAP_KF_L2_PAYLOAD_ETYPE = 66, + VCAP_KF_L2_SMAC = 67, + VCAP_KF_L2_SNAP = 68, + VCAP_KF_L3_DIP_EQ_SIP_IS = 69, + VCAP_KF_L3_DPL_CLS = 70, + VCAP_KF_L3_DSCP = 71, + VCAP_KF_L3_DST_IS = 72, + VCAP_KF_L3_FRAGMENT = 73, + VCAP_KF_L3_FRAGMENT_TYPE = 74, + VCAP_KF_L3_FRAG_INVLD_L4_LEN = 75, + VCAP_KF_L3_FRAG_OFS_GT0 = 76, + VCAP_KF_L3_IP4_DIP = 77, + VCAP_KF_L3_IP4_SIP = 78, + VCAP_KF_L3_IP6_DIP = 79, + VCAP_KF_L3_IP6_DIP_MSB = 80, + VCAP_KF_L3_IP6_SIP = 81, + VCAP_KF_L3_IP6_SIP_MSB = 82, + VCAP_KF_L3_IP_PROTO = 83, + VCAP_KF_L3_OPTIONS_IS = 84, + VCAP_KF_L3_PAYLOAD = 85, + VCAP_KF_L3_RT_IS = 86, + VCAP_KF_L3_TOS = 87, + VCAP_KF_L3_TTL_GT0 = 88, + VCAP_KF_L4_1588_DOM = 89, + VCAP_KF_L4_1588_VER = 90, + VCAP_KF_L4_ACK = 91, + VCAP_KF_L4_DPORT = 92, + VCAP_KF_L4_FIN = 93, + VCAP_KF_L4_PAYLOAD = 94, + VCAP_KF_L4_PSH = 95, + VCAP_KF_L4_RNG = 96, + VCAP_KF_L4_RST = 97, + VCAP_KF_L4_SEQUENCE_EQ0_IS = 98, + VCAP_KF_L4_SPORT = 99, + VCAP_KF_L4_SPORT_EQ_DPORT_IS = 100, + VCAP_KF_L4_SYN = 101, + VCAP_KF_L4_URG = 102, + VCAP_KF_LOOKUP_FIRST_IS = 103, + VCAP_KF_LOOKUP_GEN_IDX = 104, + VCAP_KF_LOOKUP_GEN_IDX_SEL = 105, + VCAP_KF_LOOKUP_INDEX = 106, + VCAP_KF_LOOKUP_PAG = 107, + VCAP_KF_MIRROR_PROBE = 108, + VCAP_KF_OAM_CCM_CNTS_EQ0 = 109, + VCAP_KF_OAM_DETECTED = 110, + VCAP_KF_OAM_FLAGS = 111, + VCAP_KF_OAM_MEL_FLAGS = 112, + VCAP_KF_OAM_MEPID = 113, + VCAP_KF_OAM_OPCODE = 114, + VCAP_KF_OAM_VER = 115, + VCAP_KF_OAM_Y1731_IS = 116, + VCAP_KF_PDU_TYPE = 117, + VCAP_KF_PROT_ACTIVE = 118, + VCAP_KF_RTP_ID = 119, + VCAP_KF_RT_FRMID = 120, + VCAP_KF_RT_TYPE = 121, + VCAP_KF_RT_VLAN_IDX = 122, + VCAP_KF_TCP_IS = 123, + VCAP_KF_TCP_UDP_IS = 124, + VCAP_KF_TYPE = 125, +}; + +enum vcap_actionfield_set { + VCAP_AFS_NO_VALUE = 0, + VCAP_AFS_BASE_TYPE = 1, + VCAP_AFS_CLASSIFICATION = 2, + VCAP_AFS_CLASS_REDUCED = 3, + VCAP_AFS_ES0 = 4, + VCAP_AFS_FULL = 5, + VCAP_AFS_S1 = 6, + VCAP_AFS_SMAC_SIP = 7, + VCAP_AFS_VID = 8, +}; + +enum vcap_action_field { + VCAP_AF_NO_VALUE = 0, + VCAP_AF_ACL_ID = 1, + VCAP_AF_CLS_VID_SEL = 2, + VCAP_AF_CNT_ID = 3, + VCAP_AF_COPY_PORT_NUM = 4, + VCAP_AF_COPY_QUEUE_NUM = 5, + VCAP_AF_CPU_COPY_ENA = 6, + VCAP_AF_CPU_QU = 7, + VCAP_AF_CPU_QUEUE_NUM = 8, + VCAP_AF_CUSTOM_ACE_TYPE_ENA = 9, + VCAP_AF_DEI_A_VAL = 10, + VCAP_AF_DEI_B_VAL = 11, + VCAP_AF_DEI_C_VAL = 12, + VCAP_AF_DEI_ENA = 13, + VCAP_AF_DEI_VAL = 14, + VCAP_AF_DLR_SEL = 15, + VCAP_AF_DP_ENA = 16, + VCAP_AF_DP_VAL = 17, + VCAP_AF_DSCP_ENA = 18, + VCAP_AF_DSCP_SEL = 19, + VCAP_AF_DSCP_VAL = 20, + VCAP_AF_ES2_REW_CMD = 21, + VCAP_AF_ESDX = 22, + VCAP_AF_FWD_KILL_ENA = 23, + VCAP_AF_FWD_MODE = 24, + VCAP_AF_FWD_SEL = 25, + VCAP_AF_HIT_ME_ONCE = 26, + VCAP_AF_HOST_MATCH = 27, + VCAP_AF_IGNORE_PIPELINE_CTRL = 28, + VCAP_AF_INTR_ENA = 29, + VCAP_AF_ISDX_ADD_REPLACE_SEL = 30, + VCAP_AF_ISDX_ADD_VAL = 31, + VCAP_AF_ISDX_ENA = 32, + VCAP_AF_ISDX_REPLACE_ENA = 33, + VCAP_AF_ISDX_VAL = 34, + VCAP_AF_LOOP_ENA = 35, + VCAP_AF_LRN_DIS = 36, + VCAP_AF_MAP_IDX = 37, + VCAP_AF_MAP_KEY = 38, + VCAP_AF_MAP_LOOKUP_SEL = 39, + VCAP_AF_MASK_MODE = 40, + VCAP_AF_MATCH_ID = 41, + VCAP_AF_MATCH_ID_MASK = 42, + VCAP_AF_MIRROR_ENA = 43, + VCAP_AF_MIRROR_PROBE = 44, + VCAP_AF_MIRROR_PROBE_ID = 45, + VCAP_AF_MRP_SEL = 46, + VCAP_AF_NXT_IDX = 47, + VCAP_AF_NXT_IDX_CTRL = 48, + VCAP_AF_OAM_SEL = 49, + VCAP_AF_PAG_OVERRIDE_MASK = 50, + VCAP_AF_PAG_VAL = 51, + VCAP_AF_PCP_A_VAL = 52, + VCAP_AF_PCP_B_VAL = 53, + VCAP_AF_PCP_C_VAL = 54, + VCAP_AF_PCP_ENA = 55, + VCAP_AF_PCP_VAL = 56, + VCAP_AF_PIPELINE_ACT = 57, + VCAP_AF_PIPELINE_FORCE_ENA = 58, + VCAP_AF_PIPELINE_PT = 59, + VCAP_AF_POLICE_ENA = 60, + VCAP_AF_POLICE_IDX = 61, + VCAP_AF_POLICE_REMARK = 62, + VCAP_AF_POLICE_VCAP_ONLY = 63, + VCAP_AF_POP_VAL = 64, + VCAP_AF_PORT_MASK = 65, + VCAP_AF_PUSH_CUSTOMER_TAG = 66, + VCAP_AF_PUSH_INNER_TAG = 67, + VCAP_AF_PUSH_OUTER_TAG = 68, + VCAP_AF_QOS_ENA = 69, + VCAP_AF_QOS_VAL = 70, + VCAP_AF_REW_OP = 71, + VCAP_AF_RT_DIS = 72, + VCAP_AF_SFID_ENA = 73, + VCAP_AF_SFID_VAL = 74, + VCAP_AF_SGID_ENA = 75, + VCAP_AF_SGID_VAL = 76, + VCAP_AF_SWAP_MACS_ENA = 77, + VCAP_AF_TAG_A_DEI_SEL = 78, + VCAP_AF_TAG_A_PCP_SEL = 79, + VCAP_AF_TAG_A_TPID_SEL = 80, + VCAP_AF_TAG_A_VID_SEL = 81, + VCAP_AF_TAG_B_DEI_SEL = 82, + VCAP_AF_TAG_B_PCP_SEL = 83, + VCAP_AF_TAG_B_TPID_SEL = 84, + VCAP_AF_TAG_B_VID_SEL = 85, + VCAP_AF_TAG_C_DEI_SEL = 86, + VCAP_AF_TAG_C_PCP_SEL = 87, + VCAP_AF_TAG_C_TPID_SEL = 88, + VCAP_AF_TAG_C_VID_SEL = 89, + VCAP_AF_TYPE = 90, + VCAP_AF_UNTAG_VID_ENA = 91, + VCAP_AF_VID_A_VAL = 92, + VCAP_AF_VID_B_VAL = 93, + VCAP_AF_VID_C_VAL = 94, + VCAP_AF_VID_REPLACE_ENA = 95, + VCAP_AF_VID_VAL = 96, + VCAP_AF_VLAN_POP_CNT = 97, + VCAP_AF_VLAN_POP_CNT_ENA = 98, +}; + +enum vcap_user { + VCAP_USER_PTP = 0, + VCAP_USER_MRP = 1, + VCAP_USER_CFM = 2, + VCAP_USER_VLAN = 3, + VCAP_USER_QOS = 4, + VCAP_USER_VCAP_UTIL = 5, + VCAP_USER_TC = 6, + VCAP_USER_TC_EXTRA = 7, + __VCAP_USER_AFTER_LAST = 8, + VCAP_USER_MAX = 7, +}; + +struct vcap_statistics { + char *name; + int count; + const char * const *keyfield_set_names; + const char * const *actionfield_set_names; + const char * const *keyfield_names; + const char * const *actionfield_names; +}; + +struct vcap_field { + u16 type; + u16 width; + u16 offset; +}; + +struct vcap_set { + u8 type_id; + u8 sw_per_item; + u8 sw_cnt; +}; + +struct vcap_typegroup { + u16 offset; + u16 width; + u16 value; +}; + +struct vcap_info { + char *name; + u16 rows; + u16 sw_count; + u16 sw_width; + u16 sticky_width; + u16 act_width; + u16 default_cnt; + u16 require_cnt_dis; + u16 version; + const struct vcap_set *keyfield_set; + int keyfield_set_size; + const struct vcap_set *actionfield_set; + int actionfield_set_size; + const struct vcap_field **keyfield_set_map; + int *keyfield_set_map_size; + const struct vcap_field **actionfield_set_map; + int *actionfield_set_map_size; + const struct vcap_typegroup **keyfield_set_typegroups; + const struct vcap_typegroup **actionfield_set_typegroups; +}; + +enum vcap_field_type { + VCAP_FIELD_BIT = 0, + VCAP_FIELD_U32 = 1, + VCAP_FIELD_U48 = 2, + VCAP_FIELD_U56 = 3, + VCAP_FIELD_U64 = 4, + VCAP_FIELD_U72 = 5, + VCAP_FIELD_U112 = 6, + VCAP_FIELD_U128 = 7, +}; + +struct vcap_cache_data { + u32 *keystream; + u32 *maskstream; + u32 *actionstream; + u32 counter; + bool sticky; +}; + +enum vcap_selection { + VCAP_SEL_ENTRY = 1, + VCAP_SEL_ACTION = 2, + VCAP_SEL_COUNTER = 4, + VCAP_SEL_ALL = 255, +}; + +enum vcap_command { + VCAP_CMD_WRITE = 0, + VCAP_CMD_READ = 1, + VCAP_CMD_MOVE_DOWN = 2, + VCAP_CMD_MOVE_UP = 3, + VCAP_CMD_INITIALIZE = 4, +}; + +enum vcap_rule_error { + VCAP_ERR_NONE = 0, + VCAP_ERR_NO_ADMIN = 1, + VCAP_ERR_NO_NETDEV = 2, + VCAP_ERR_NO_KEYSET_MATCH = 3, + VCAP_ERR_NO_ACTIONSET_MATCH = 4, + VCAP_ERR_NO_PORT_KEYSET_MATCH = 5, +}; + +struct vcap_admin { + struct list_head list; + struct list_head rules; + struct list_head enabled; + struct mutex lock; + enum vcap_type vtype; + int vinst; + int first_cid; + int last_cid; + int tgt_inst; + int lookups; + int lookups_per_instance; + int last_valid_addr; + int first_valid_addr; + int last_used_addr; + bool w32be; + bool ingress; + struct vcap_cache_data cache; +}; + +struct vcap_rule { + int vcap_chain_id; + enum vcap_user user; + u16 priority; + u32 id; + u64 cookie; + struct list_head keyfields; + struct list_head actionfields; + enum vcap_keyfield_set keyset; + enum vcap_actionfield_set actionset; + enum vcap_rule_error exterr; + u64 client; +}; + +struct vcap_keyset_list { + int max; + int cnt; + enum vcap_keyfield_set *keysets; +}; + +struct vcap_actionset_list { + int max; + int cnt; + enum vcap_actionfield_set *actionsets; +}; + +struct vcap_output_print { + void (*prf)(void *, const char *, ...); + void *dst; +}; + +struct vcap_operations { + enum vcap_keyfield_set (*validate_keyset)(struct net_device *, struct vcap_admin *, struct vcap_rule *, struct vcap_keyset_list *, u16); + void (*add_default_fields)(struct net_device *, struct vcap_admin *, struct vcap_rule *); + void (*cache_erase)(struct vcap_admin *); + void (*cache_write)(struct net_device *, struct vcap_admin *, enum vcap_selection, u32, u32); + void (*cache_read)(struct net_device *, struct vcap_admin *, enum vcap_selection, u32, u32); + void (*init)(struct net_device *, struct vcap_admin *, u32, u32); + void (*update)(struct net_device *, struct vcap_admin *, enum vcap_command, enum vcap_selection, u32); + void (*move)(struct net_device *, struct vcap_admin *, u32, int, int); + int (*port_info)(struct net_device *, struct vcap_admin *, struct vcap_output_print *); +}; + +struct vcap_control { + const struct vcap_operations *ops; + const struct vcap_info *vcaps; + const struct vcap_statistics *stats; + struct list_head list; +}; + +struct vcap_client_keyfield_ctrl { + struct list_head list; + enum vcap_key_field key; + enum vcap_field_type type; +}; + +struct vcap_u1_key { + u8 value; + u8 mask; +}; + +struct vcap_u32_key { + u32 value; + u32 mask; +}; + +struct vcap_u48_key { + u8 value[6]; + u8 mask[6]; +}; + +struct vcap_u56_key { + u8 value[7]; + u8 mask[7]; +}; + +struct vcap_u64_key { + u8 value[8]; + u8 mask[8]; +}; + +struct vcap_u72_key { + u8 value[9]; + u8 mask[9]; +}; + +struct vcap_u112_key { + u8 value[14]; + u8 mask[14]; +}; + +struct vcap_u128_key { + u8 value[16]; + u8 mask[16]; +}; + +struct vcap_client_keyfield_data { + union { + struct vcap_u1_key u1; + struct vcap_u32_key u32; + struct vcap_u48_key u48; + struct vcap_u56_key u56; + struct vcap_u64_key u64; + struct vcap_u72_key u72; + struct vcap_u112_key u112; + struct vcap_u128_key u128; + }; +}; + +struct vcap_client_keyfield { + struct vcap_client_keyfield_ctrl ctrl; + struct vcap_client_keyfield_data data; +}; + +struct vcap_client_actionfield_ctrl { + struct list_head list; + enum vcap_action_field action; + enum vcap_field_type type; +}; + +struct vcap_u1_action { + u8 value; +}; + +struct vcap_u32_action { + u32 value; +}; + +struct vcap_u48_action { + u8 value[6]; +}; + +struct vcap_u56_action { + u8 value[7]; +}; + +struct vcap_u64_action { + u8 value[8]; +}; + +struct vcap_u72_action { + u8 value[9]; +}; + +struct vcap_u112_action { + u8 value[14]; +}; + +struct vcap_u128_action { + u8 value[16]; +}; + +struct vcap_client_actionfield_data { + union { + struct vcap_u1_action u1; + struct vcap_u32_action u32; + struct vcap_u48_action u48; + struct vcap_u56_action u56; + struct vcap_u64_action u64; + struct vcap_u72_action u72; + struct vcap_u112_action u112; + struct vcap_u128_action u128; + }; +}; + +struct vcap_client_actionfield { + struct vcap_client_actionfield_ctrl ctrl; + struct vcap_client_actionfield_data data; +}; + +enum vcap_bit { + VCAP_BIT_ANY = 0, + VCAP_BIT_0 = 1, + VCAP_BIT_1 = 2, +}; + +struct vcap_counter { + u32 value; + bool sticky; +}; + +enum vcap_rule_state { + VCAP_RS_PERMANENT = 0, + VCAP_RS_ENABLED = 1, + VCAP_RS_DISABLED = 2, +}; + +struct vcap_rule_internal { + struct vcap_rule data; + struct list_head list; + struct vcap_admin *admin; + struct net_device *ndev; + struct vcap_control *vctrl; + u32 sort_key; + int keyset_sw; + int actionset_sw; + int keyset_sw_regs; + int actionset_sw_regs; + int size; + u32 addr; + u32 counter_id; + struct vcap_counter counter; + enum vcap_rule_state state; +}; + +struct vcap_stream_iter { + u32 offset; + u32 sw_width; + u32 regs_per_sw; + u32 reg_idx; + u32 reg_bitpos; + const struct vcap_typegroup *tg; +}; + +struct vcap_rule_move { + int addr; + int offset; + int count; +}; + +struct vcap_enabled_port { + struct list_head list; + struct net_device *ndev; + long unsigned int cookie; + int src_cid; + int dst_cid; +}; + +enum { + IFLA_PPP_UNSPEC = 0, + IFLA_PPP_DEV_FD = 1, + __IFLA_PPP_MAX = 2, +}; + +enum NPmode { + NPMODE_PASS = 0, + NPMODE_DROP = 1, + NPMODE_ERROR = 2, + NPMODE_QUEUE = 3, +}; + +struct pppstat { + __u32 ppp_discards; + __u32 ppp_ibytes; + __u32 ppp_ioctects; + __u32 ppp_ipackets; + __u32 ppp_ierrors; + __u32 ppp_ilqrs; + __u32 ppp_obytes; + __u32 ppp_ooctects; + __u32 ppp_opackets; + __u32 ppp_oerrors; + __u32 ppp_olqrs; +}; + +struct vjstat { + __u32 vjs_packets; + __u32 vjs_compressed; + __u32 vjs_searches; + __u32 vjs_misses; + __u32 vjs_uncompressedin; + __u32 vjs_compressedin; + __u32 vjs_errorin; + __u32 vjs_tossed; +}; + +struct compstat { + __u32 unc_bytes; + __u32 unc_packets; + __u32 comp_bytes; + __u32 comp_packets; + __u32 inc_bytes; + __u32 inc_packets; + __u32 in_count; + __u32 bytes_out; + double ratio; +}; + +struct ppp_stats { + struct pppstat p; + struct vjstat vj; +}; + +struct ppp_comp_stats { + struct compstat c; + struct compstat d; +}; + +struct ppp_idle32 { + __s32 xmit_idle; + __s32 recv_idle; +}; + +struct ppp_idle64 { + __s64 xmit_idle; + __s64 recv_idle; +}; + +struct npioctl { + int protocol; + enum NPmode mode; +}; + +struct ppp_option_data { + __u8 *ptr; + __u32 length; + int transmit; +}; + +struct ppp_channel; + +struct ppp_channel_ops { + int (*start_xmit)(struct ppp_channel *, struct sk_buff *); + int (*ioctl)(struct ppp_channel *, unsigned int, long unsigned int); + int (*fill_forward_path)(struct net_device_path_ctx *, struct net_device_path *, const struct ppp_channel *); +}; + +struct ppp_channel { + void *private; + const struct ppp_channel_ops *ops; + int mtu; + int hdrlen; + void *ppp; + int speed; + bool direct_xmit; +}; + +struct compressor { + int compress_proto; + void * (*comp_alloc)(unsigned char *, int); + void (*comp_free)(void *); + int (*comp_init)(void *, unsigned char *, int, int, int, int); + void (*comp_reset)(void *); + int (*compress)(void *, unsigned char *, unsigned char *, int, int); + void (*comp_stat)(void *, struct compstat *); + void * (*decomp_alloc)(unsigned char *, int); + void (*decomp_free)(void *); + int (*decomp_init)(void *, unsigned char *, int, int, int, int, int); + void (*decomp_reset)(void *); + int (*decompress)(void *, unsigned char *, int, unsigned char *, int); + void (*incomp)(void *, unsigned char *, int); + void (*decomp_stat)(void *, struct compstat *); + struct module *owner; + unsigned int comp_extra; +}; + +typedef __u8 byte_t; + +typedef __u32 int32; + +struct cstate { + byte_t cs_this; + bool initialized; + struct cstate *next; + struct iphdr cs_ip; + struct tcphdr cs_tcp; + unsigned char cs_ipopt[64]; + unsigned char cs_tcpopt[64]; + int cs_hsize; +}; + +struct slcompress { + struct cstate *tstate; + struct cstate *rstate; + byte_t tslot_limit; + byte_t rslot_limit; + byte_t xmit_oldest; + byte_t xmit_current; + byte_t recv_current; + byte_t flags; + int32 sls_o_nontcp; + int32 sls_o_tcp; + int32 sls_o_uncompressed; + int32 sls_o_compressed; + int32 sls_o_searches; + int32 sls_o_misses; + int32 sls_i_uncompressed; + int32 sls_i_compressed; + int32 sls_i_error; + int32 sls_i_tossed; + int32 sls_i_runt; + int32 sls_i_badcheck; +}; + +struct ppp_file { + enum { + INTERFACE = 1, + CHANNEL = 2, + } kind; + struct sk_buff_head xq; + struct sk_buff_head rq; + wait_queue_head_t rwait; + refcount_t refcnt; + int hdrlen; + int index; + int dead; +}; + +struct ppp_xmit_recursion { + struct task_struct *owner; + local_lock_t bh_lock; +}; + +struct ppp { + struct ppp_file file; + struct file *owner; + struct list_head channels; + int n_channels; + spinlock_t rlock; + spinlock_t wlock; + struct ppp_xmit_recursion *xmit_recursion; + int mru; + unsigned int flags; + unsigned int xstate; + unsigned int rstate; + int debug; + struct slcompress *vj; + enum NPmode npmode[6]; + struct sk_buff *xmit_pending; + struct compressor *xcomp; + void *xc_state; + struct compressor *rcomp; + void *rc_state; + long unsigned int last_xmit; + long unsigned int last_recv; + struct net_device *dev; + int closing; + int nxchan; + u32 nxseq; + int mrru; + u32 nextseq; + u32 minseq; + struct sk_buff_head mrq; + struct bpf_prog *pass_filter; + struct bpf_prog *active_filter; + struct net *ppp_net; +}; + +struct channel { + struct ppp_file file; + struct list_head list; + struct ppp_channel *chan; + struct rw_semaphore chan_sem; + spinlock_t downl; + struct ppp *ppp; + struct net *chan_net; + netns_tracker ns_tracker; + struct list_head clist; + rwlock_t upl; + struct channel *bridge; + u8 avail; + u8 had_frag; + u32 lastseq; + int speed; +}; + +struct ppp_config { + struct file *file; + s32 unit; + bool ifname_is_set; +}; + +struct ppp_net { + struct idr units_idr; + struct mutex all_ppp_mutex; + struct list_head all_channels; + struct list_head new_channels; + int last_channel_index; + spinlock_t all_channels_lock; +}; + +struct sock_fprog32 { + short unsigned int len; + compat_caddr_t filter; +}; + +struct ppp_option_data32 { + compat_uptr_t ptr; + u32 length; + compat_int_t transmit; +}; + +struct ppp_mp_skb_parm { + u32 sequence; + u8 BEbits; +}; + +struct compressor_entry { + struct list_head list; + struct compressor *comp; +}; + +enum usb_phy_type { + USB_PHY_TYPE_UNDEFINED = 0, + USB_PHY_TYPE_USB2 = 1, + USB_PHY_TYPE_USB3 = 2, +}; + +enum usb_phy_events { + USB_EVENT_NONE = 0, + USB_EVENT_VBUS = 1, + USB_EVENT_ID = 2, + USB_EVENT_CHARGER = 3, + USB_EVENT_ENUMERATED = 4, +}; + +enum usb_charger_type { + UNKNOWN_TYPE___2 = 0, + SDP_TYPE = 1, + DCP_TYPE = 2, + CDP_TYPE = 3, + ACA_TYPE = 4, +}; + +enum usb_charger_state { + USB_CHARGER_DEFAULT = 0, + USB_CHARGER_PRESENT = 1, + USB_CHARGER_ABSENT = 2, +}; + +struct usb_charger_current { + unsigned int sdp_min; + unsigned int sdp_max; + unsigned int dcp_min; + unsigned int dcp_max; + unsigned int cdp_min; + unsigned int cdp_max; + unsigned int aca_min; + unsigned int aca_max; +}; + +struct usb_otg; + +struct usb_phy_io_ops; + +struct usb_phy { + struct device *dev; + const char *label; + unsigned int flags; + enum usb_phy_type type; + enum usb_phy_events last_event; + struct usb_otg *otg; + struct device *io_dev; + struct usb_phy_io_ops *io_ops; + void *io_priv; + struct extcon_dev *edev; + struct extcon_dev *id_edev; + struct notifier_block vbus_nb; + struct notifier_block id_nb; + struct notifier_block type_nb; + enum usb_charger_type chg_type; + enum usb_charger_state chg_state; + struct usb_charger_current chg_cur; + struct work_struct chg_work; + struct atomic_notifier_head notifier; + u16 port_status; + u16 port_change; + struct list_head head; + int (*init)(struct usb_phy *); + void (*shutdown)(struct usb_phy *); + int (*set_vbus)(struct usb_phy *, int); + int (*set_power)(struct usb_phy *, unsigned int); + int (*set_suspend)(struct usb_phy *, int); + int (*set_wakeup)(struct usb_phy *, bool); + int (*notify_connect)(struct usb_phy *, enum usb_device_speed); + int (*notify_disconnect)(struct usb_phy *, enum usb_device_speed); + enum usb_charger_type (*charger_detect)(struct usb_phy *); +}; + +struct usb_phy_io_ops { + int (*read)(struct usb_phy *, u32); + int (*write)(struct usb_phy *, u32, u32); +}; + +struct usb_gadget; + +struct usb_otg { + u8 default_a; + struct phy *phy; + struct usb_phy *usb_phy; + struct usb_bus *host; + struct usb_gadget *gadget; + enum usb_otg_state state; + int (*set_host)(struct usb_otg *, struct usb_bus *); + int (*set_peripheral)(struct usb_otg *, struct usb_gadget *); + int (*set_vbus)(struct usb_otg *, bool); + int (*start_srp)(struct usb_otg *); + int (*start_hnp)(struct usb_otg *); +}; + +struct find_interface_arg { + int minor; + struct device_driver *drv; +}; + +struct each_dev_arg { + void *data; + int (*fn)(struct usb_device *, void *); +}; + +enum usb_led_event { + USB_LED_EVENT_HOST = 0, + USB_LED_EVENT_GADGET = 1, +}; + +struct usb_class_driver { + char *name; + char * (*devnode)(const struct device *, umode_t *); + const struct file_operations *fops; + int minor_base; +}; + +struct ep_device { + struct usb_endpoint_descriptor *desc; + struct usb_device *udev; + struct device dev; +}; + +struct usb_phy_roothub { + struct phy *phy; + struct list_head list; +}; + +struct phy_devm { + struct usb_phy *phy; + struct notifier_block *nb; +}; + +struct dbc_port { + struct tty_port port; + spinlock_t port_lock; + int minor; + struct list_head read_pool; + struct list_head read_queue; + unsigned int n_read; + struct tasklet_struct push; + struct list_head write_pool; + unsigned int tx_boundary; + bool registered; + bool tx_running; +}; + +struct input_seq_state { + short unsigned int pos; + bool mutex_acquired; + int input_devices_state; +}; + +struct input_devres { + struct input_dev *input; +}; + +struct input_mt_pos { + s16 x; + s16 y; +}; + +struct touchscreen_properties { + unsigned int max_x; + unsigned int max_y; + bool invert_x; + bool invert_y; + bool swap_x_y; +}; + +struct atkbd { + struct ps2dev ps2dev; + struct input_dev *dev; + char name[64]; + char phys[32]; + short unsigned int id; + short unsigned int keycode[512]; + long unsigned int force_release_mask[8]; + unsigned char set; + bool translated; + bool extra; + bool write; + bool softrepeat; + bool softraw; + bool scroll; + bool enabled; + unsigned char emul; + bool resend; + bool release; + long unsigned int xl_bit; + unsigned int last; + long unsigned int time; + long unsigned int err_count; + struct delayed_work event_work; + long unsigned int event_jiffies; + long unsigned int event_mask; + struct mutex mutex; + struct vivaldi_data vdata; +}; + +struct trace_event_raw_rtc_time_alarm_class { + struct trace_entry ent; + time64_t secs; + int err; + char __data[0]; +}; + +struct trace_event_raw_rtc_irq_set_freq { + struct trace_entry ent; + int freq; + int err; + char __data[0]; +}; + +struct trace_event_raw_rtc_irq_set_state { + struct trace_entry ent; + int enabled; + int err; + char __data[0]; +}; + +struct trace_event_raw_rtc_alarm_irq_enable { + struct trace_entry ent; + unsigned int enabled; + int err; + char __data[0]; +}; + +struct trace_event_raw_rtc_offset_class { + struct trace_entry ent; + long int offset; + int err; + char __data[0]; +}; + +struct trace_event_raw_rtc_timer_class { + struct trace_entry ent; + struct rtc_timer *timer; + ktime_t expires; + ktime_t period; + char __data[0]; +}; + +struct trace_event_data_offsets_rtc_time_alarm_class {}; + +struct trace_event_data_offsets_rtc_irq_set_freq {}; + +struct trace_event_data_offsets_rtc_irq_set_state {}; + +struct trace_event_data_offsets_rtc_alarm_irq_enable {}; + +struct trace_event_data_offsets_rtc_offset_class {}; + +struct trace_event_data_offsets_rtc_timer_class {}; + +typedef void (*btf_trace_rtc_set_time)(void *, time64_t, int); + +typedef void (*btf_trace_rtc_read_time)(void *, time64_t, int); + +typedef void (*btf_trace_rtc_set_alarm)(void *, time64_t, int); + +typedef void (*btf_trace_rtc_read_alarm)(void *, time64_t, int); + +typedef void (*btf_trace_rtc_irq_set_freq)(void *, int, int); + +typedef void (*btf_trace_rtc_irq_set_state)(void *, int, int); + +typedef void (*btf_trace_rtc_alarm_irq_enable)(void *, unsigned int, int); + +typedef void (*btf_trace_rtc_set_offset)(void *, long int, int); + +typedef void (*btf_trace_rtc_read_offset)(void *, long int, int); + +typedef void (*btf_trace_rtc_timer_enqueue)(void *, struct rtc_timer *); + +typedef void (*btf_trace_rtc_timer_dequeue)(void *, struct rtc_timer *); + +typedef void (*btf_trace_rtc_timer_fired)(void *, struct rtc_timer *); + +enum { + none = 0, + day = 1, + month = 2, + year = 3, +}; + +struct i2c_device_identity { + u16 manufacturer_id; + u16 part_id; + u8 die_revision; +}; + +struct i2c_timings { + u32 bus_freq_hz; + u32 scl_rise_ns; + u32 scl_fall_ns; + u32 scl_int_delay_ns; + u32 sda_fall_ns; + u32 sda_hold_ns; + u32 digital_filter_width_ns; + u32 analog_filter_cutoff_freq_hz; +}; + +struct trace_event_raw_i2c_write { + struct trace_entry ent; + int adapter_nr; + __u16 msg_nr; + __u16 addr; + __u16 flags; + __u16 len; + u32 __data_loc_buf; + char __data[0]; +}; + +struct trace_event_raw_i2c_read { + struct trace_entry ent; + int adapter_nr; + __u16 msg_nr; + __u16 addr; + __u16 flags; + __u16 len; + char __data[0]; +}; + +struct trace_event_raw_i2c_reply { + struct trace_entry ent; + int adapter_nr; + __u16 msg_nr; + __u16 addr; + __u16 flags; + __u16 len; + u32 __data_loc_buf; + char __data[0]; +}; + +struct trace_event_raw_i2c_result { + struct trace_entry ent; + int adapter_nr; + __u16 nr_msgs; + __s16 ret; + char __data[0]; +}; + +struct trace_event_data_offsets_i2c_write { + u32 buf; + const void *buf_ptr_; +}; + +struct trace_event_data_offsets_i2c_read {}; + +struct trace_event_data_offsets_i2c_reply { + u32 buf; + const void *buf_ptr_; +}; + +struct trace_event_data_offsets_i2c_result {}; + +typedef void (*btf_trace_i2c_write)(void *, const struct i2c_adapter *, const struct i2c_msg *, int); + +typedef void (*btf_trace_i2c_read)(void *, const struct i2c_adapter *, const struct i2c_msg *, int); + +typedef void (*btf_trace_i2c_reply)(void *, const struct i2c_adapter *, const struct i2c_msg *, int); + +typedef void (*btf_trace_i2c_result)(void *, const struct i2c_adapter *, int, int); + +struct i2c_cmd_arg { + unsigned int cmd; + void *arg; +}; + +struct ptp_clock_caps { + int max_adj; + int n_alarm; + int n_ext_ts; + int n_per_out; + int pps; + int n_pins; + int cross_timestamping; + int adjust_phase; + int max_phase_adj; + int rsv[11]; +}; + +struct ptp_sys_offset { + unsigned int n_samples; + unsigned int rsv[3]; + struct ptp_clock_time ts[51]; +}; + +struct ptp_sys_offset_extended { + unsigned int n_samples; + __kernel_clockid_t clockid; + unsigned int rsv[2]; + struct ptp_clock_time ts[75]; +}; + +struct ptp_sys_offset_precise { + struct ptp_clock_time device; + struct ptp_clock_time sys_realtime; + struct ptp_clock_time sys_monoraw; + unsigned int rsv[4]; +}; + +struct tps65086_regulator_config; + +struct tps65086 { + struct device *dev; + struct regmap *regmap; + unsigned int chip_id; + const struct tps65086_regulator_config *reg_config; + int irq; + struct regmap_irq_chip_data *irq_data; +}; + +enum power_supply_charge_type { + POWER_SUPPLY_CHARGE_TYPE_UNKNOWN = 0, + POWER_SUPPLY_CHARGE_TYPE_NONE = 1, + POWER_SUPPLY_CHARGE_TYPE_TRICKLE = 2, + POWER_SUPPLY_CHARGE_TYPE_FAST = 3, + POWER_SUPPLY_CHARGE_TYPE_STANDARD = 4, + POWER_SUPPLY_CHARGE_TYPE_ADAPTIVE = 5, + POWER_SUPPLY_CHARGE_TYPE_CUSTOM = 6, + POWER_SUPPLY_CHARGE_TYPE_LONGLIFE = 7, + POWER_SUPPLY_CHARGE_TYPE_BYPASS = 8, +}; + +enum { + POWER_SUPPLY_HEALTH_UNKNOWN = 0, + POWER_SUPPLY_HEALTH_GOOD = 1, + POWER_SUPPLY_HEALTH_OVERHEAT = 2, + POWER_SUPPLY_HEALTH_DEAD = 3, + POWER_SUPPLY_HEALTH_OVERVOLTAGE = 4, + POWER_SUPPLY_HEALTH_UNDERVOLTAGE = 5, + POWER_SUPPLY_HEALTH_UNSPEC_FAILURE = 6, + POWER_SUPPLY_HEALTH_COLD = 7, + POWER_SUPPLY_HEALTH_WATCHDOG_TIMER_EXPIRE = 8, + POWER_SUPPLY_HEALTH_SAFETY_TIMER_EXPIRE = 9, + POWER_SUPPLY_HEALTH_OVERCURRENT = 10, + POWER_SUPPLY_HEALTH_CALIBRATION_REQUIRED = 11, + POWER_SUPPLY_HEALTH_WARM = 12, + POWER_SUPPLY_HEALTH_COOL = 13, + POWER_SUPPLY_HEALTH_HOT = 14, + POWER_SUPPLY_HEALTH_NO_BATTERY = 15, + POWER_SUPPLY_HEALTH_BLOWN_FUSE = 16, + POWER_SUPPLY_HEALTH_CELL_IMBALANCE = 17, +}; + +enum { + POWER_SUPPLY_TECHNOLOGY_UNKNOWN = 0, + POWER_SUPPLY_TECHNOLOGY_NiMH = 1, + POWER_SUPPLY_TECHNOLOGY_LION = 2, + POWER_SUPPLY_TECHNOLOGY_LIPO = 3, + POWER_SUPPLY_TECHNOLOGY_LiFe = 4, + POWER_SUPPLY_TECHNOLOGY_NiCd = 5, + POWER_SUPPLY_TECHNOLOGY_LiMn = 6, +}; + +enum { + POWER_SUPPLY_CAPACITY_LEVEL_UNKNOWN = 0, + POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL = 1, + POWER_SUPPLY_CAPACITY_LEVEL_LOW = 2, + POWER_SUPPLY_CAPACITY_LEVEL_NORMAL = 3, + POWER_SUPPLY_CAPACITY_LEVEL_HIGH = 4, + POWER_SUPPLY_CAPACITY_LEVEL_FULL = 5, +}; + +enum { + POWER_SUPPLY_SCOPE_UNKNOWN = 0, + POWER_SUPPLY_SCOPE_SYSTEM = 1, + POWER_SUPPLY_SCOPE_DEVICE = 2, +}; + +enum power_supply_usb_type { + POWER_SUPPLY_USB_TYPE_UNKNOWN = 0, + POWER_SUPPLY_USB_TYPE_SDP = 1, + POWER_SUPPLY_USB_TYPE_DCP = 2, + POWER_SUPPLY_USB_TYPE_CDP = 3, + POWER_SUPPLY_USB_TYPE_ACA = 4, + POWER_SUPPLY_USB_TYPE_C = 5, + POWER_SUPPLY_USB_TYPE_PD = 6, + POWER_SUPPLY_USB_TYPE_PD_DRP = 7, + POWER_SUPPLY_USB_TYPE_PD_PPS = 8, + POWER_SUPPLY_USB_TYPE_APPLE_BRICK_ID = 9, +}; + +enum power_supply_charge_behaviour { + POWER_SUPPLY_CHARGE_BEHAVIOUR_AUTO = 0, + POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE = 1, + POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE_AWAKE = 2, + POWER_SUPPLY_CHARGE_BEHAVIOUR_FORCE_DISCHARGE = 3, +}; + +struct power_supply_ext { + const char * const name; + u8 charge_behaviours; + u32 charge_types; + const enum power_supply_property *properties; + size_t num_properties; + int (*get_property)(struct power_supply *, const struct power_supply_ext *, void *, enum power_supply_property, union power_supply_propval *); + int (*set_property)(struct power_supply *, const struct power_supply_ext *, void *, enum power_supply_property, const union power_supply_propval *); + int (*property_is_writeable)(struct power_supply *, const struct power_supply_ext *, void *, enum power_supply_property); +}; + +struct power_supply_ext_registration { + struct list_head list_head; + const struct power_supply_ext *ext; + struct device *dev; + void *data; +}; + +struct power_supply_attr { + const char *prop_name; + char attr_name[31]; + struct device_attribute dev_attr; + const char * const *text_values; + int text_values_len; +}; + +enum hwmon_chip_attributes { + hwmon_chip_temp_reset_history = 0, + hwmon_chip_in_reset_history = 1, + hwmon_chip_curr_reset_history = 2, + hwmon_chip_power_reset_history = 3, + hwmon_chip_register_tz = 4, + hwmon_chip_update_interval = 5, + hwmon_chip_alarms = 6, + hwmon_chip_samples = 7, + hwmon_chip_curr_samples = 8, + hwmon_chip_in_samples = 9, + hwmon_chip_power_samples = 10, + hwmon_chip_temp_samples = 11, + hwmon_chip_beep_enable = 12, + hwmon_chip_pec = 13, +}; + +enum hwmon_energy_attributes { + hwmon_energy_enable = 0, + hwmon_energy_input = 1, + hwmon_energy_label = 2, +}; + +enum hwmon_humidity_attributes { + hwmon_humidity_enable = 0, + hwmon_humidity_input = 1, + hwmon_humidity_label = 2, + hwmon_humidity_min = 3, + hwmon_humidity_min_hyst = 4, + hwmon_humidity_max = 5, + hwmon_humidity_max_hyst = 6, + hwmon_humidity_alarm = 7, + hwmon_humidity_fault = 8, + hwmon_humidity_rated_min = 9, + hwmon_humidity_rated_max = 10, + hwmon_humidity_min_alarm = 11, + hwmon_humidity_max_alarm = 12, +}; + +enum hwmon_fan_attributes { + hwmon_fan_enable = 0, + hwmon_fan_input = 1, + hwmon_fan_label = 2, + hwmon_fan_min = 3, + hwmon_fan_max = 4, + hwmon_fan_div = 5, + hwmon_fan_pulses = 6, + hwmon_fan_target = 7, + hwmon_fan_alarm = 8, + hwmon_fan_min_alarm = 9, + hwmon_fan_max_alarm = 10, + hwmon_fan_fault = 11, + hwmon_fan_beep = 12, +}; + +enum hwmon_pwm_attributes { + hwmon_pwm_input = 0, + hwmon_pwm_enable = 1, + hwmon_pwm_mode = 2, + hwmon_pwm_freq = 3, + hwmon_pwm_auto_channels_temp = 4, +}; + +enum hwmon_intrusion_attributes { + hwmon_intrusion_alarm = 0, + hwmon_intrusion_beep = 1, +}; + +struct trace_event_raw_hwmon_attr_class { + struct trace_entry ent; + int index; + u32 __data_loc_attr_name; + long int val; + char __data[0]; +}; + +struct trace_event_raw_hwmon_attr_show_string { + struct trace_entry ent; + int index; + u32 __data_loc_attr_name; + u32 __data_loc_label; + char __data[0]; +}; + +struct trace_event_data_offsets_hwmon_attr_class { + u32 attr_name; + const void *attr_name_ptr_; +}; + +struct trace_event_data_offsets_hwmon_attr_show_string { + u32 attr_name; + const void *attr_name_ptr_; + u32 label; + const void *label_ptr_; +}; + +typedef void (*btf_trace_hwmon_attr_show)(void *, int, const char *, long int); + +typedef void (*btf_trace_hwmon_attr_store)(void *, int, const char *, long int); + +typedef void (*btf_trace_hwmon_attr_show_string)(void *, int, const char *, const char *); + +struct hwmon_device { + const char *name; + const char *label; + struct device dev; + const struct hwmon_chip_info *chip; + struct list_head tzdata; + struct attribute_group group; + const struct attribute_group **groups; +}; + +struct hwmon_device_attribute { + struct device_attribute dev_attr; + const struct hwmon_ops *ops; + enum hwmon_sensor_types type; + u32 attr; + int index; + char name[32]; +}; + +struct hwmon_thermal_data { + struct list_head node; + struct device *dev; + int index; + struct thermal_zone_device *tzd; +}; + +struct trace_event_raw_thermal_power_allocator { + struct trace_entry ent; + int tz_id; + u32 total_req_power; + u32 total_granted_power; + size_t num_actors; + u32 power_range; + u32 max_allocatable_power; + int current_temp; + s32 delta_temp; + char __data[0]; +}; + +struct trace_event_raw_thermal_power_actor { + struct trace_entry ent; + int tz_id; + int actor_id; + u32 req_power; + u32 granted_power; + char __data[0]; +}; + +struct trace_event_raw_thermal_power_allocator_pid { + struct trace_entry ent; + int tz_id; + s32 err; + s32 err_integral; + s64 p; + s64 i; + s64 d; + s32 output; + char __data[0]; +}; + +struct trace_event_data_offsets_thermal_power_allocator {}; + +struct trace_event_data_offsets_thermal_power_actor {}; + +struct trace_event_data_offsets_thermal_power_allocator_pid {}; + +typedef void (*btf_trace_thermal_power_allocator)(void *, struct thermal_zone_device *, u32, u32, int, u32, u32, int, s32); + +typedef void (*btf_trace_thermal_power_actor)(void *, struct thermal_zone_device *, int, u32, u32); + +typedef void (*btf_trace_thermal_power_allocator_pid)(void *, struct thermal_zone_device *, s32, s32, s64, s64, s64, s32); + +struct power_actor { + u32 req_power; + u32 max_power; + u32 granted_power; + u32 extra_actor_power; + u32 weighted_req_power; +}; + +struct power_allocator_params { + bool allocated_tzp; + bool update_cdevs; + s64 err_integral; + s32 prev_err; + u32 sustainable_power; + const struct thermal_trip *trip_switch_on; + const struct thermal_trip *trip_max; + int total_weight; + unsigned int num_actors; + unsigned int buffer_size; + struct power_actor *power; +}; + +struct watchdog_pretimeout { + struct watchdog_device *wdd; + struct list_head entry; +}; + +struct governor_priv { + struct watchdog_governor *gov; + struct list_head entry; +}; + +struct dm_device { + struct dm_ioctl dmi; + struct dm_target_spec *table[256]; + char *target_args_array[256]; + struct list_head list; +}; + +enum dm_uevent_type { + DM_UEVENT_PATH_FAILED = 0, + DM_UEVENT_PATH_REINSTATED = 1, +}; + +struct dm_uevent { + struct mapped_device *md; + enum kobject_action action; + struct kobj_uevent_env ku_env; + struct list_head elist; + char name[128]; + char uuid[129]; +}; + +struct io_err_c { + struct dm_dev *dev; + sector_t start; +}; + +struct stripe { + struct dm_dev *dev; + sector_t physical_start; + atomic_t error_count; +}; + +struct stripe_c { + uint32_t stripes; + int stripes_shift; + sector_t stripe_width; + uint32_t chunk_size; + int chunk_size_shift; + struct dm_target *ti; + struct work_struct trigger_event; + struct stripe stripe[0]; +}; + +struct dm_io_region { + struct block_device *bdev; + sector_t sector; + sector_t count; +}; + +struct page_list { + struct page_list *next; + struct page *page; +}; + +typedef void (*io_notify_fn)(long unsigned int, void *); + +enum dm_io_mem_type { + DM_IO_PAGE_LIST = 0, + DM_IO_BIO = 1, + DM_IO_VMA = 2, + DM_IO_KMEM = 3, +}; + +struct dm_io_memory { + enum dm_io_mem_type type; + unsigned int offset; + union { + struct page_list *pl; + struct bio *bio; + void *vma; + void *addr; + } ptr; +}; + +struct dm_io_notify { + io_notify_fn fn; + void *context; +}; + +struct dm_io_client; + +struct dm_io_request { + blk_opf_t bi_opf; + struct dm_io_memory mem; + struct dm_io_notify notify; + struct dm_io_client *client; +}; + +struct dm_kcopyd_throttle { + unsigned int throttle; + unsigned int num_io_jobs; + unsigned int io_period; + unsigned int total_period; + unsigned int last_jiffies; +}; + +typedef void (*dm_kcopyd_notify_fn)(int, long unsigned int, void *); + +struct dm_kcopyd_client { + struct page_list *pages; + unsigned int nr_reserved_pages; + unsigned int nr_free_pages; + unsigned int sub_job_size; + struct dm_io_client *io_client; + wait_queue_head_t destroyq; + mempool_t job_pool; + struct workqueue_struct *kcopyd_wq; + struct work_struct kcopyd_work; + struct dm_kcopyd_throttle *throttle; + atomic_t nr_jobs; + spinlock_t job_lock; + struct list_head callback_jobs; + struct list_head complete_jobs; + struct list_head io_jobs; + struct list_head pages_jobs; +}; + +struct kcopyd_job { + struct dm_kcopyd_client *kc; + struct list_head list; + unsigned int flags; + int read_err; + long unsigned int write_err; + enum req_op op; + struct dm_io_region source; + unsigned int num_dests; + struct dm_io_region dests[8]; + struct page_list *pages; + dm_kcopyd_notify_fn fn; + void *context; + struct mutex lock; + atomic_t sub_jobs; + sector_t progress; + sector_t write_offset; + struct kcopyd_job *master_job; +}; + +struct dm_rq_target_io; + +struct dm_rq_clone_bio_info { + struct bio *orig; + struct dm_rq_target_io *tio; + struct bio clone; +}; + +struct dm_rq_target_io { + struct mapped_device *md; + struct dm_target *ti; + struct request *orig; + struct request *clone; + struct kthread_work work; + blk_status_t error; + union map_info info; + struct dm_stats_aux stats_aux; + long unsigned int duration_jiffies; + unsigned int n_sectors; + unsigned int completed; +}; + +enum dev_type { + DEV_UNKNOWN = 0, + DEV_X1 = 1, + DEV_X2 = 2, + DEV_X4 = 3, + DEV_X8 = 4, + DEV_X16 = 5, + DEV_X32 = 6, + DEV_X64 = 7, +}; + +enum hw_event_mc_err_type { + HW_EVENT_ERR_CORRECTED = 0, + HW_EVENT_ERR_UNCORRECTED = 1, + HW_EVENT_ERR_DEFERRED = 2, + HW_EVENT_ERR_FATAL = 3, + HW_EVENT_ERR_INFO = 4, +}; + +enum mem_type { + MEM_EMPTY = 0, + MEM_RESERVED = 1, + MEM_UNKNOWN = 2, + MEM_FPM = 3, + MEM_EDO = 4, + MEM_BEDO = 5, + MEM_SDR = 6, + MEM_RDR = 7, + MEM_DDR = 8, + MEM_RDDR = 9, + MEM_RMBS = 10, + MEM_DDR2 = 11, + MEM_FB_DDR2 = 12, + MEM_RDDR2 = 13, + MEM_XDR = 14, + MEM_DDR3 = 15, + MEM_RDDR3 = 16, + MEM_LRDDR3 = 17, + MEM_LPDDR3 = 18, + MEM_DDR4 = 19, + MEM_RDDR4 = 20, + MEM_LRDDR4 = 21, + MEM_LPDDR4 = 22, + MEM_DDR5 = 23, + MEM_RDDR5 = 24, + MEM_LRDDR5 = 25, + MEM_NVDIMM = 26, + MEM_WIO2 = 27, + MEM_HBM2 = 28, + MEM_HBM3 = 29, +}; + +enum edac_type { + EDAC_UNKNOWN = 0, + EDAC_NONE = 1, + EDAC_RESERVED = 2, + EDAC_PARITY = 3, + EDAC_EC = 4, + EDAC_SECDED = 5, + EDAC_S2ECD2ED = 6, + EDAC_S4ECD4ED = 7, + EDAC_S8ECD8ED = 8, + EDAC_S16ECD16ED = 9, +}; + +enum scrub_type { + SCRUB_UNKNOWN = 0, + SCRUB_NONE = 1, + SCRUB_SW_PROG = 2, + SCRUB_SW_SRC = 3, + SCRUB_SW_PROG_SRC = 4, + SCRUB_SW_TUNABLE = 5, + SCRUB_HW_PROG = 6, + SCRUB_HW_SRC = 7, + SCRUB_HW_PROG_SRC = 8, + SCRUB_HW_TUNABLE = 9, +}; + +enum edac_mc_layer_type { + EDAC_MC_LAYER_BRANCH = 0, + EDAC_MC_LAYER_CHANNEL = 1, + EDAC_MC_LAYER_SLOT = 2, + EDAC_MC_LAYER_CHIP_SELECT = 3, + EDAC_MC_LAYER_ALL_MEM = 4, +}; + +struct edac_mc_layer { + enum edac_mc_layer_type type; + unsigned int size; + bool is_virt_csrow; +}; + +struct mem_ctl_info; + +struct dimm_info { + struct device dev; + char label[32]; + unsigned int location[3]; + struct mem_ctl_info *mci; + unsigned int idx; + u32 grain; + enum dev_type dtype; + enum mem_type mtype; + enum edac_type edac_mode; + u32 nr_pages; + unsigned int csrow; + unsigned int cschannel; + u16 smbios_handle; + u32 ce_count; + u32 ue_count; +}; + +struct mcidev_sysfs_attribute; + +struct edac_raw_error_desc { + char location[256]; + char label[296]; + long int grain; + u16 error_count; + enum hw_event_mc_err_type type; + int top_layer; + int mid_layer; + int low_layer; + long unsigned int page_frame_number; + long unsigned int offset_in_page; + long unsigned int syndrome; + const char *msg; + const char *other_detail; +}; + +struct csrow_info; + +struct mem_ctl_info { + struct device dev; + const struct bus_type *bus; + struct list_head link; + struct module *owner; + long unsigned int mtype_cap; + long unsigned int edac_ctl_cap; + long unsigned int edac_cap; + long unsigned int scrub_cap; + enum scrub_type scrub_mode; + int (*set_sdram_scrub_rate)(struct mem_ctl_info *, u32); + int (*get_sdram_scrub_rate)(struct mem_ctl_info *); + void (*edac_check)(struct mem_ctl_info *); + long unsigned int (*ctl_page_to_phys)(struct mem_ctl_info *, long unsigned int); + int mc_idx; + struct csrow_info **csrows; + unsigned int nr_csrows; + unsigned int num_cschannel; + unsigned int n_layers; + struct edac_mc_layer *layers; + bool csbased; + unsigned int tot_dimms; + struct dimm_info **dimms; + struct device *pdev; + const char *mod_name; + const char *ctl_name; + const char *dev_name; + void *pvt_info; + long unsigned int start_time; + u32 ce_noinfo_count; + u32 ue_noinfo_count; + u32 ue_mc; + u32 ce_mc; + struct completion complete; + const struct mcidev_sysfs_attribute *mc_driver_sysfs_attributes; + struct delayed_work work; + struct edac_raw_error_desc error_desc; + int op_state; + struct dentry *debugfs; + u8 fake_inject_layer[3]; + bool fake_inject_ue; + u16 fake_inject_count; +}; + +struct rank_info { + int chan_idx; + struct csrow_info *csrow; + struct dimm_info *dimm; + u32 ce_count; +}; + +struct csrow_info { + struct device dev; + long unsigned int first_page; + long unsigned int last_page; + long unsigned int page_mask; + int csrow_idx; + u32 ue_count; + u32 ce_count; + struct mem_ctl_info *mci; + u32 nr_channels; + struct rank_info **channels; +}; + +enum edac_scrub_attributes { + SCRUB_ADDRESS = 0, + SCRUB_SIZE = 1, + SCRUB_ENABLE_BACKGROUND = 2, + SCRUB_MIN_CYCLE_DURATION = 3, + SCRUB_MAX_CYCLE_DURATION = 4, + SCRUB_CUR_CYCLE_DURATION = 5, + SCRUB_MAX_ATTRS = 6, +}; + +struct edac_scrub_dev_attr { + struct device_attribute dev_attr; + u8 instance; +}; + +struct edac_scrub_context { + char name[128]; + struct edac_scrub_dev_attr scrub_dev_attr[6]; + struct attribute *scrub_attrs[7]; + struct attribute_group group; +}; + +struct edac_pci_gen_data { + int edac_idx; +}; + +struct userspace_policy { + unsigned int is_managed; + unsigned int setspeed; + struct mutex mutex; +}; + +struct cs_policy_dbs_info { + struct policy_dbs_info policy_dbs; + unsigned int down_skip; + unsigned int requested_freq; +}; + +struct cs_dbs_tuners { + unsigned int down_threshold; + unsigned int freq_step; +}; + +enum acpi_preferred_pm_profiles { + PM_UNSPECIFIED = 0, + PM_DESKTOP = 1, + PM_MOBILE = 2, + PM_WORKSTATION = 3, + PM_ENTERPRISE_SERVER = 4, + PM_SOHO_SERVER = 5, + PM_APPLIANCE_PC = 6, + PM_PERFORMANCE_SERVER = 7, + PM_TABLET = 8, + NR_PM_PROFILES = 9, +}; + +union perf_cached { + struct { + u8 highest_perf; + u8 nominal_perf; + u8 lowest_nonlinear_perf; + u8 lowest_perf; + u8 min_limit_perf; + u8 max_limit_perf; + u8 bios_min_perf; + }; + u64 val; +}; + +struct amd_aperf_mperf { + u64 aperf; + u64 mperf; + u64 tsc; +}; + +struct amd_cpudata { + int cpu; + struct freq_qos_request req[2]; + u64 cppc_req_cached; + union perf_cached perf; + u8 prefcore_ranking; + u32 min_limit_freq; + u32 max_limit_freq; + u32 nominal_freq; + u32 lowest_nonlinear_freq; + struct amd_aperf_mperf cur; + struct amd_aperf_mperf prev; + u64 freq; + bool boost_supported; + bool hw_prefcore; + u32 policy; + bool suspended; + u8 epp_default; +}; + +enum amd_pstate_mode { + AMD_PSTATE_UNDEFINED = 0, + AMD_PSTATE_DISABLE = 1, + AMD_PSTATE_PASSIVE = 2, + AMD_PSTATE_ACTIVE = 3, + AMD_PSTATE_GUIDED = 4, + AMD_PSTATE_MAX = 5, +}; + +struct quirk_entry___2 { + u32 nominal_freq; + u32 lowest_freq; +}; + +enum energy_perf_value_index___2 { + EPP_INDEX_DEFAULT = 0, + EPP_INDEX_PERFORMANCE = 1, + EPP_INDEX_BALANCE_PERFORMANCE = 2, + EPP_INDEX_BALANCE_POWERSAVE = 3, + EPP_INDEX_POWERSAVE = 4, +}; + +typedef int (*cppc_mode_transition_fn)(int); + +struct sample { + int32_t core_avg_perf; + int32_t busy_scaled; + u64 aperf; + u64 mperf; + u64 tsc; + u64 time; +}; + +struct pstate_data { + int current_pstate; + int min_pstate; + int max_pstate; + int max_pstate_physical; + int perf_ctl_scaling; + int scaling; + int turbo_pstate; + unsigned int min_freq; + unsigned int max_freq; + unsigned int turbo_freq; +}; + +struct vid_data { + int min; + int max; + int turbo; + int32_t ratio; +}; + +struct global_params { + bool no_turbo; + bool turbo_disabled; + int max_perf_pct; + int min_perf_pct; +}; + +struct cpudata { + int cpu; + unsigned int policy; + struct update_util_data update_util; + bool update_util_set; + struct pstate_data pstate; + struct vid_data vid; + u64 last_update; + u64 last_sample_time; + u64 aperf_mperf_shift; + u64 prev_aperf; + u64 prev_mperf; + u64 prev_tsc; + struct sample sample; + int32_t min_perf_ratio; + int32_t max_perf_ratio; + struct acpi_processor_performance acpi_perf_data; + bool valid_pss_table; + unsigned int iowait_boost; + s16 epp_powersave; + s16 epp_policy; + s16 epp_default; + s16 epp_cached; + u64 hwp_req_cached; + u64 hwp_cap_cached; + u64 last_io_update; + unsigned int capacity_perf; + unsigned int sched_flags; + u32 hwp_boost_min; + bool suspended; + bool pd_registered; + struct delayed_work hwp_notify_work; +}; + +struct pstate_funcs { + int (*get_max)(int); + int (*get_max_physical)(int); + int (*get_min)(int); + int (*get_turbo)(int); + int (*get_scaling)(void); + int (*get_cpu_scaling)(int); + int (*get_aperf_mperf_shift)(void); + u64 (*get_val)(struct cpudata *, int); + void (*get_vid)(struct cpudata *); +}; + +enum { + PSS = 0, + PPC = 1, +}; + +struct dmi_device_attribute { + struct device_attribute dev_attr; + int field; +}; + +struct mafield { + const char *prefix; + int field; +}; + +struct simplefb_platform_data { + u32 width; + u32 height; + u32 stride; + const char *format; +}; + +struct efi_system_resource_entry_v1 { + efi_guid_t fw_class; + u32 fw_type; + u32 fw_version; + u32 lowest_supported_fw_version; + u32 capsule_flags; + u32 last_attempt_version; + u32 last_attempt_status; +}; + +struct efi_system_resource_table { + u32 fw_resource_count; + u32 fw_resource_count_max; + u64 fw_resource_version; + u8 entries[0]; +}; + +struct esre_entry { + union { + struct efi_system_resource_entry_v1 *esre1; + } esre; + struct kobject kobj; + struct list_head list; +}; + +struct esre_attribute { + struct attribute attr; + ssize_t (*show)(struct esre_entry *, char *); +}; + +struct hid_bpf_offset_write_range { + const char *struct_name; + u32 struct_length; + u32 start; + u32 end; +}; + +struct bpf_struct_ops_hid_bpf_ops { + struct bpf_struct_ops_common_value common; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct hid_bpf_ops data; +}; + +struct p2sb_res_cache { + u32 bus_dev_id; + struct resource res; +}; + +struct acpi_s2idle_dev_ops { + struct list_head list_node; + void (*prepare)(void); + void (*check)(void); + void (*restore)(void); +}; + +enum simatic_ipc_station_ids { + SIMATIC_IPC_INVALID_STATION_ID = 0, + SIMATIC_IPC_IPC227D = 1281, + SIMATIC_IPC_IPC427D = 1793, + SIMATIC_IPC_IPC227E = 2305, + SIMATIC_IPC_IPC277E = 2306, + SIMATIC_IPC_IPC427E = 2561, + SIMATIC_IPC_IPC477E = 2562, + SIMATIC_IPC_IPC127E = 3329, + SIMATIC_IPC_IPC227G = 3841, + SIMATIC_IPC_IPC277G = 3842, + SIMATIC_IPC_IPCBX_39A = 4097, + SIMATIC_IPC_IPCPX_39A = 4098, + SIMATIC_IPC_IPCBX_21A = 4353, + SIMATIC_IPC_IPCBX_56A = 4609, + SIMATIC_IPC_IPCBX_59A = 4610, +}; + +struct pmc_bit_map { + const char *name; + u32 bit_mask; +}; + +struct pmc_reg_map { + const struct pmc_bit_map *d3_sts_0; + const struct pmc_bit_map *d3_sts_1; + const struct pmc_bit_map *func_dis; + const struct pmc_bit_map *func_dis_2; + const struct pmc_bit_map *pss; +}; + +struct pmc_data { + const struct pmc_reg_map *map; + const struct pmc_clk *clks; +}; + +struct pmc_dev { + u32 base_addr; + void *regmap; + const struct pmc_reg_map *map; + struct dentry *dbgfs_dir; + bool init; +}; + +struct hwspinlock_ops { + int (*trylock)(struct hwspinlock *); + void (*unlock)(struct hwspinlock *); + int (*bust)(struct hwspinlock *, unsigned int); + void (*relax)(struct hwspinlock *); +}; + +struct hwspinlock_device; + +struct hwspinlock { + struct hwspinlock_device *bank; + spinlock_t lock; + void *priv; +}; + +struct hwspinlock_device { + struct device *dev; + const struct hwspinlock_ops *ops; + int base_id; + int num_locks; + struct hwspinlock lock[0]; +}; + +struct tsm_measurement_register { + const char *mr_name; + void *mr_value; + u32 mr_size; + u32 mr_flags; + enum hash_algo mr_hash; +}; + +struct tsm_measurements { + const struct tsm_measurement_register *mrs; + size_t nr_mrs; + int (*refresh)(const struct tsm_measurements *); + int (*write)(const struct tsm_measurements *, const struct tsm_measurement_register *, const u8 *); +}; + +struct trace_event_raw_tsm_mr_read { + struct trace_entry ent; + u32 __data_loc_mr; + u32 __data_loc_hash; + u32 __data_loc_d; + char __data[0]; +}; + +struct trace_event_raw_tsm_mr_refresh { + struct trace_entry ent; + u32 __data_loc_mr; + int rc; + char __data[0]; +}; + +struct trace_event_raw_tsm_mr_write { + struct trace_entry ent; + u32 __data_loc_mr; + u32 __data_loc_hash; + u32 __data_loc_d; + char __data[0]; +}; + +struct trace_event_data_offsets_tsm_mr_read { + u32 mr; + const void *mr_ptr_; + u32 hash; + const void *hash_ptr_; + u32 d; + const void *d_ptr_; +}; + +struct trace_event_data_offsets_tsm_mr_refresh { + u32 mr; + const void *mr_ptr_; +}; + +struct trace_event_data_offsets_tsm_mr_write { + u32 mr; + const void *mr_ptr_; + u32 hash; + const void *hash_ptr_; + u32 d; + const void *d_ptr_; +}; + +typedef void (*btf_trace_tsm_mr_read)(void *, const struct tsm_measurement_register *); + +typedef void (*btf_trace_tsm_mr_refresh)(void *, const struct tsm_measurement_register *, int); + +typedef void (*btf_trace_tsm_mr_write)(void *, const struct tsm_measurement_register *, const u8 *); + +struct tm_context { + struct rw_semaphore rwsem; + struct attribute_group agrp; + const struct tsm_measurements *tm; + bool in_sync; + struct bin_attribute mrs[0]; +}; + +enum hv_gpadl_type { + HV_GPADL_BUFFER = 0, + HV_GPADL_RING = 1, +}; + +struct shutdown_msg_data { + u32 reason_code; + u32 timeout_seconds; + u32 flags; + u8 display_message[2048]; +}; + +struct heartbeat_msg_data { + u64 seq_num; + u32 reserved[8]; +}; + +struct ictimesync_data { + u64 parenttime; + u64 childtime; + u64 roundtriptime; + u8 flags; +} __attribute__((packed)); + +struct ictimesync_ref_data { + u64 parenttime; + u64 vmreferencetime; + u8 flags; + char leapflags; + char stratum; + u8 reserved[3]; +} __attribute__((packed)); + +struct hibernate_work_context { + struct work_struct work; + struct hv_device *dev; +}; + +enum hvutil_transport_mode { + HVUTIL_TRANSPORT_INIT = 0, + HVUTIL_TRANSPORT_NETLINK = 1, + HVUTIL_TRANSPORT_CHARDEV = 2, + HVUTIL_TRANSPORT_DESTROY = 3, +}; + +struct hv_proximity_domain_flags { + u32 proximity_preferred: 1; + u32 reserved: 30; + u32 proximity_info_valid: 1; +}; + +struct hv_proximity_domain_info { + u32 domain_id; + struct hv_proximity_domain_flags flags; +}; + +struct hv_deposit_memory { + u64 partition_id; + u64 gpa_page_list[0]; +}; + +struct hv_lp_startup_status { + u64 hv_status; + u64 substatus1; + u64 substatus2; + u64 substatus3; + u64 substatus4; + u64 substatus5; + u64 substatus6; +}; + +struct hv_input_add_logical_processor { + u32 lp_index; + u32 apic_id; + struct hv_proximity_domain_info proximity_domain_info; +}; + +struct hv_output_add_logical_processor { + struct hv_lp_startup_status startup_status; +}; + +enum { + HV_SUBNODE_ANY = 0, + HV_SUBNODE_SOCKET = 1, + HV_SUBNODE_CLUSTER = 2, + HV_SUBNODE_L3 = 3, + HV_SUBNODE_COUNT = 4, + HV_SUBNODE_INVALID = -1, +}; + +struct hv_create_vp { + u64 partition_id; + u32 vp_index; + u8 padding[3]; + u8 subnode_type; + u64 subnode_id; + struct hv_proximity_domain_info proximity_domain_info; + u64 flags; +}; + +struct devfreq_simple_ondemand_data { + unsigned int upthreshold; + unsigned int downdifferential; +}; + +struct userspace_data { + long unsigned int user_frequency; + bool valid; +}; + +struct extcon_cable; + +struct extcon_dev { + const char *name; + const unsigned int *supported_cable; + const u32 *mutually_exclusive; + struct device dev; + unsigned int id; + struct raw_notifier_head nh_all; + struct raw_notifier_head *nh; + struct list_head entry; + int max_supported; + spinlock_t lock; + u32 state; + struct device_type extcon_dev_type; + struct extcon_cable *cables; + struct attribute_group attr_g_muex; + struct attribute **attrs_muex; + struct device_attribute *d_attrs_muex; +}; + +struct extcon_dev_notifier_devres { + struct extcon_dev *edev; + unsigned int id; + struct notifier_block *nb; +}; + +struct cper_sec_proc_arm { + u32 validation_bits; + u16 err_info_num; + u16 context_info_num; + u32 section_length; + u8 affinity_level; + u8 reserved[3]; + u64 mpidr; + u64 midr; + u32 running_state; + u32 psci_state; +}; + +struct cper_arm_err_info { + u8 version; + u8 length; + u16 validation_bits; + u8 type; + u16 multiple_error; + u8 flags; + u64 error_info; + u64 virt_fault_addr; + u64 physical_fault_addr; +} __attribute__((packed)); + +struct cper_arm_ctx_info { + u16 version; + u16 type; + u32 size; +}; + +struct cper_mem_err_compact { + u64 validation_bits; + u16 node; + u16 card; + u16 module; + u16 bank; + u16 device; + u16 row; + u16 column; + u16 bit_pos; + u64 requestor_id; + u64 responder_id; + u64 target_id; + u16 rank; + u16 mem_array_handle; + u16 mem_dev_handle; + u8 extended; +} __attribute__((packed)); + +struct atl_err { + u64 addr; + u64 ipid; + u32 cpu; +}; + +struct trace_event_raw_extlog_mem_event { + struct trace_entry ent; + u32 err_seq; + u8 etype; + u8 sev; + u64 pa; + u8 pa_mask_lsb; + guid_t fru_id; + u32 __data_loc_fru_text; + struct cper_mem_err_compact data; + char __data[0]; +}; + +struct trace_event_raw_mc_event { + struct trace_entry ent; + unsigned int error_type; + u32 __data_loc_msg; + u32 __data_loc_label; + u16 error_count; + u8 mc_index; + s8 top_layer; + s8 middle_layer; + s8 lower_layer; + long int address; + u8 grain_bits; + long int syndrome; + u32 __data_loc_driver_detail; + char __data[0]; +}; + +struct trace_event_raw_arm_event { + struct trace_entry ent; + u64 mpidr; + u64 midr; + u32 running_state; + u32 psci_state; + u8 affinity; + u32 pei_len; + u32 __data_loc_pei_buf; + u32 ctx_len; + u32 __data_loc_ctx_buf; + u32 oem_len; + u32 __data_loc_oem_buf; + u8 sev; + int cpu; + char __data[0]; +}; + +struct trace_event_raw_non_standard_event { + struct trace_entry ent; + char sec_type[16]; + char fru_id[16]; + u32 __data_loc_fru_text; + u8 sev; + u32 len; + u32 __data_loc_buf; + char __data[0]; +}; + +struct trace_event_raw_aer_event { + struct trace_entry ent; + u32 __data_loc_dev_name; + u32 status; + u8 severity; + u8 tlp_header_valid; + u32 tlp_header[14]; + char __data[0]; +}; + +struct trace_event_raw_memory_failure_event { + struct trace_entry ent; + long unsigned int pfn; + int type; + int result; + char __data[0]; +}; + +struct trace_event_data_offsets_extlog_mem_event { + u32 fru_text; + const void *fru_text_ptr_; +}; + +struct trace_event_data_offsets_mc_event { + u32 msg; + const void *msg_ptr_; + u32 label; + const void *label_ptr_; + u32 driver_detail; + const void *driver_detail_ptr_; +}; + +struct trace_event_data_offsets_arm_event { + u32 pei_buf; + const void *pei_buf_ptr_; + u32 ctx_buf; + const void *ctx_buf_ptr_; + u32 oem_buf; + const void *oem_buf_ptr_; +}; + +struct trace_event_data_offsets_non_standard_event { + u32 fru_text; + const void *fru_text_ptr_; + u32 buf; + const void *buf_ptr_; +}; + +struct trace_event_data_offsets_aer_event { + u32 dev_name; + const void *dev_name_ptr_; +}; + +struct trace_event_data_offsets_memory_failure_event {}; + +typedef void (*btf_trace_extlog_mem_event)(void *, struct cper_sec_mem_err *, u32, const guid_t *, const char *, u8); + +typedef void (*btf_trace_mc_event)(void *, const unsigned int, const char *, const char *, const int, const u8, const s8, const s8, const s8, long unsigned int, const u8, long unsigned int, const char *); + +typedef void (*btf_trace_arm_event)(void *, const struct cper_sec_proc_arm *, const u8 *, const u32, const u8 *, const u32, const u8 *, const u32, u8, int); + +typedef void (*btf_trace_non_standard_event)(void *, const guid_t *, const guid_t *, const char *, const u8, const u8 *, const u32); + +typedef void (*btf_trace_aer_event)(void *, const char *, const u32, const u8, const u8, struct pcie_tlp_log *); + +typedef void (*btf_trace_memory_failure_event)(void *, long unsigned int, int, int); + +struct hte_clk_info { + u64 hz; + clockid_t type; +}; + +struct hte_chip; + +struct hte_ops { + int (*request)(struct hte_chip *, struct hte_ts_desc *, u32); + int (*release)(struct hte_chip *, struct hte_ts_desc *, u32); + int (*enable)(struct hte_chip *, u32); + int (*disable)(struct hte_chip *, u32); + int (*get_clk_src_info)(struct hte_chip *, struct hte_clk_info *); +}; + +struct hte_device; + +struct hte_chip { + const char *name; + struct device *dev; + const struct hte_ops *ops; + u32 nlines; + int (*xlate_of)(struct hte_chip *, const struct of_phandle_args *, struct hte_ts_desc *, u32 *); + int (*xlate_plat)(struct hte_chip *, struct hte_ts_desc *, u32 *); + bool (*match_from_linedata)(const struct hte_chip *, const struct hte_ts_desc *); + u8 of_hte_n_cells; + struct hte_device *gdev; + void *data; +}; + +struct hte_ts_info { + u32 xlated_id; + long unsigned int flags; + long unsigned int hte_cb_flags; + u64 seq; + char *line_name; + bool free_attr_name; + hte_ts_cb_t cb; + hte_ts_sec_cb_t tcb; + atomic_t dropped_ts; + spinlock_t slock; + struct work_struct cb_work; + struct mutex req_mlock; + struct dentry *ts_dbg_root; + struct hte_device *gdev; + void *cl_data; +}; + +struct hte_device { + u32 nlines; + atomic_t ts_req; + struct device *sdev; + struct dentry *dbg_root; + struct list_head list; + struct hte_chip *chip; + struct module *owner; + struct hte_ts_info ei[0]; +}; + +enum { + HTE_TS_REGISTERED = 0, + HTE_TS_REQ = 1, + HTE_TS_DISABLE = 2, + HTE_TS_QUEUE_WK = 3, +}; + +struct net_device_devres { + struct net_device *ndev; +}; + +enum { + SKB_FCLONE_UNAVAILABLE = 0, + SKB_FCLONE_ORIG = 1, + SKB_FCLONE_CLONE = 2, +}; + +struct sk_buff_fclones { + struct sk_buff skb1; + struct sk_buff skb2; + refcount_t fclone_ref; +}; + +struct skb_seq_state { + __u32 lower_offset; + __u32 upper_offset; + __u32 frag_idx; + __u32 stepped_offset; + struct sk_buff *root_skb; + struct sk_buff *cur_skb; + __u8 *frag_data; + __u32 frag_off; +}; + +struct ip_auth_hdr { + __u8 nexthdr; + __u8 hdrlen; + __be16 reserved; + __be32 spi; + __be32 seq_no; + __u8 auth_data[0]; +}; + +struct mpls_shim_hdr { + __be32 label_stack_entry; +}; + +struct mctp_flow { + struct mctp_sk_key *key; +}; + +struct ts_state { + unsigned int offset; + char cb[48]; +}; + +struct ts_config; + +struct ts_ops { + const char *name; + struct ts_config * (*init)(const void *, unsigned int, gfp_t, int); + unsigned int (*find)(struct ts_config *, struct ts_state *); + void (*destroy)(struct ts_config *); + void * (*get_pattern)(struct ts_config *); + unsigned int (*get_pattern_len)(struct ts_config *); + struct module *owner; + struct list_head list; +}; + +struct ts_config { + struct ts_ops *ops; + int flags; + unsigned int (*get_next_block)(unsigned int, const u8 **, struct ts_config *, struct ts_state *); + void (*finish)(struct ts_config *, struct ts_state *); +}; + +struct napi_alloc_cache { + local_lock_t bh_lock; + struct page_frag_cache page; + unsigned int skb_count; + void *skb_cache[64]; +}; + +struct skb_free_array { + unsigned int skb_count; + void *skb_array[16]; +}; + +typedef int (*sendmsg_func)(struct sock *, struct msghdr *); + +struct gnet_stats_rate_est64 { + __u64 bps; + __u64 pps; +}; + +struct gnet_estimator { + signed char interval; + unsigned char ewma_log; +}; + +struct net_rate_estimator { + struct gnet_stats_basic_sync *bstats; + spinlock_t *stats_lock; + bool running; + struct gnet_stats_basic_sync *cpu_bstats; + u8 ewma_log; + u8 intvl_log; + seqcount_t seq; + u64 last_packets; + u64 last_bytes; + u64 avpps; + u64 avbps; + long unsigned int next_jiffies; + struct timer_list timer; + struct callback_head rcu; +}; + +enum { + TCA_FLOWER_KEY_CT_FLAGS_NEW = 1, + TCA_FLOWER_KEY_CT_FLAGS_ESTABLISHED = 2, + TCA_FLOWER_KEY_CT_FLAGS_RELATED = 4, + TCA_FLOWER_KEY_CT_FLAGS_TRACKED = 8, + TCA_FLOWER_KEY_CT_FLAGS_INVALID = 16, + TCA_FLOWER_KEY_CT_FLAGS_REPLY = 32, + __TCA_FLOWER_KEY_CT_FLAGS_MAX = 33, +}; + +enum flow_dissect_ret { + FLOW_DISSECT_RET_OUT_GOOD = 0, + FLOW_DISSECT_RET_OUT_BAD = 1, + FLOW_DISSECT_RET_PROTO_AGAIN = 2, + FLOW_DISSECT_RET_IPPROTO_AGAIN = 3, + FLOW_DISSECT_RET_CONTINUE = 4, +}; + +struct flow_dissector_key_hash { + u32 hash; +}; + +struct flow_dissector_key_num_of_vlans { + u8 num_of_vlans; +}; + +struct flow_dissector_key_cfm { + u8 mdl_ver; + u8 opcode; +}; + +struct flow_dissector_key { + enum flow_dissector_key_id key_id; + size_t offset; +}; + +struct flow_keys_digest { + u8 data[16]; +}; + +struct tc_skb_ext { + union { + u64 act_miss_cookie; + __u32 chain; + }; + __u16 mru; + __u16 zone; + u8 post_ct: 1; + u8 post_ct_snat: 1; + u8 post_ct_dnat: 1; + u8 act_miss: 1; + u8 l2_miss: 1; +}; + +struct ip_esp_hdr { + __be32 spi; + __be32 seq_no; + __u8 enc_data[0]; +}; + +struct nf_ct_event; + +struct nf_exp_event; + +struct nf_ct_event_notifier { + int (*ct_event)(unsigned int, const struct nf_ct_event *); + int (*exp_event)(unsigned int, const struct nf_exp_event *); +}; + +enum { + BPF_FLOW_DISSECTOR_F_PARSE_1ST_FRAG = 1, + BPF_FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL = 2, + BPF_FLOW_DISSECTOR_F_STOP_AT_ENCAP = 4, +}; + +struct gre_full_hdr { + struct gre_base_hdr fixed_header; + __be16 csum; + __be16 reserved1; + __be32 key; + __be32 seq; +}; + +struct pptp_gre_header { + struct gre_base_hdr gre_hd; + __be16 payload_len; + __be16 call_id; + __be32 seq; + __be32 ack; +}; + +struct tipc_basic_hdr { + __be32 w[4]; +}; + +struct pppoe_tag { + __be16 tag_type; + __be16 tag_len; + char tag_data[0]; +}; + +struct pppoe_hdr { + __u8 type: 4; + __u8 ver: 4; + __u8 code; + __be16 sid; + __be16 length; + struct pppoe_tag tag[0]; +}; + +struct hsr_tag { + __be16 path_and_LSDU_size; + __be16 sequence_nr; + __be16 encap_proto; +}; + +struct mpls_label { + __be32 entry; +}; + +enum batadv_packettype { + BATADV_IV_OGM = 0, + BATADV_BCAST = 1, + BATADV_CODED = 2, + BATADV_ELP = 3, + BATADV_OGM2 = 4, + BATADV_MCAST = 5, + BATADV_UNICAST = 64, + BATADV_UNICAST_FRAG = 65, + BATADV_UNICAST_4ADDR = 66, + BATADV_ICMP = 67, + BATADV_UNICAST_TVLV = 68, +}; + +struct batadv_unicast_packet { + __u8 packet_type; + __u8 version; + __u8 ttl; + __u8 ttvn; + __u8 dest[6]; +}; + +struct nf_conntrack_tuple_mask { + struct { + union nf_inet_addr u3; + union nf_conntrack_man_proto u; + } src; +}; + +struct nf_ct_ext { + u8 offset[10]; + u8 len; + unsigned int gen_id; + char data[0]; +}; + +struct nf_conntrack_helper; + +struct nf_conntrack_expect { + struct hlist_node lnode; + struct hlist_node hnode; + struct nf_conntrack_tuple tuple; + struct nf_conntrack_tuple_mask mask; + refcount_t use; + unsigned int flags; + unsigned int class; + void (*expectfn)(struct nf_conn *, struct nf_conntrack_expect *); + struct nf_conntrack_helper *helper; + struct nf_conn *master; + struct timer_list timeout; + union nf_inet_addr saved_addr; + union nf_conntrack_man_proto saved_proto; + enum ip_conntrack_dir dir; + struct callback_head rcu; +}; + +enum nf_ct_ext_id { + NF_CT_EXT_HELPER = 0, + NF_CT_EXT_NAT = 1, + NF_CT_EXT_SEQADJ = 2, + NF_CT_EXT_ACCT = 3, + NF_CT_EXT_ECACHE = 4, + NF_CT_EXT_TSTAMP = 5, + NF_CT_EXT_TIMEOUT = 6, + NF_CT_EXT_LABELS = 7, + NF_CT_EXT_SYNPROXY = 8, + NF_CT_EXT_ACT_CT = 9, + NF_CT_EXT_NUM = 10, +}; + +struct nf_ct_event { + struct nf_conn *ct; + u32 portid; + int report; +}; + +struct nf_exp_event { + struct nf_conntrack_expect *exp; + u32 portid; + int report; +}; + +struct nf_conn_labels { + long unsigned int bits[2]; +}; + +struct _flow_keys_digest_data { + __be16 n_proto; + u8 ip_proto; + u8 padding; + __be32 ports; + __be32 src; + __be32 dst; +}; + +struct ndt_stats { + __u64 ndts_allocs; + __u64 ndts_destroys; + __u64 ndts_hash_grows; + __u64 ndts_res_failed; + __u64 ndts_lookups; + __u64 ndts_hits; + __u64 ndts_rcv_probes_mcast; + __u64 ndts_rcv_probes_ucast; + __u64 ndts_periodic_gc_runs; + __u64 ndts_forced_gc_runs; + __u64 ndts_table_fulls; +}; + +enum { + NDTPA_UNSPEC = 0, + NDTPA_IFINDEX = 1, + NDTPA_REFCNT = 2, + NDTPA_REACHABLE_TIME = 3, + NDTPA_BASE_REACHABLE_TIME = 4, + NDTPA_RETRANS_TIME = 5, + NDTPA_GC_STALETIME = 6, + NDTPA_DELAY_PROBE_TIME = 7, + NDTPA_QUEUE_LEN = 8, + NDTPA_APP_PROBES = 9, + NDTPA_UCAST_PROBES = 10, + NDTPA_MCAST_PROBES = 11, + NDTPA_ANYCAST_DELAY = 12, + NDTPA_PROXY_DELAY = 13, + NDTPA_PROXY_QLEN = 14, + NDTPA_LOCKTIME = 15, + NDTPA_QUEUE_LENBYTES = 16, + NDTPA_MCAST_REPROBES = 17, + NDTPA_PAD = 18, + NDTPA_INTERVAL_PROBE_TIME_MS = 19, + __NDTPA_MAX = 20, +}; + +struct ndtmsg { + __u8 ndtm_family; + __u8 ndtm_pad1; + __u16 ndtm_pad2; +}; + +struct ndt_config { + __u16 ndtc_key_len; + __u16 ndtc_entry_size; + __u32 ndtc_entries; + __u32 ndtc_last_flush; + __u32 ndtc_last_rand; + __u32 ndtc_hash_rnd; + __u32 ndtc_hash_mask; + __u32 ndtc_hash_chain_gc; + __u32 ndtc_proxy_qlen; +}; + +enum { + NDTA_UNSPEC = 0, + NDTA_NAME = 1, + NDTA_THRESH1 = 2, + NDTA_THRESH2 = 3, + NDTA_THRESH3 = 4, + NDTA_CONFIG = 5, + NDTA_PARMS = 6, + NDTA_STATS = 7, + NDTA_GC_INTERVAL = 8, + NDTA_PAD = 9, + __NDTA_MAX = 10, +}; + +struct neigh_seq_state { + struct seq_net_private p; + struct neigh_table *tbl; + struct neigh_hash_table *nht; + void * (*neigh_sub_iter)(struct neigh_seq_state *, struct neighbour *, loff_t *); + unsigned int bucket; + unsigned int flags; +}; + +struct neighbour_cb { + long unsigned int sched_next; + unsigned int flags; +}; + +struct neigh_dump_filter { + int master_idx; + int dev_idx; +}; + +struct neigh_sysctl_table { + struct ctl_table_header *sysctl_header; + struct ctl_table neigh_vars[21]; +}; + +enum { + IF_LINK_MODE_DEFAULT = 0, + IF_LINK_MODE_DORMANT = 1, + IF_LINK_MODE_TESTING = 2, +}; + +enum lw_bits { + LW_URGENT = 0, +}; + +struct tso_t { + int next_frag_idx; + int size; + void *data; + u16 ip_id; + u8 tlen; + bool ipv6; + u32 tcp_seq; +}; + +struct page_pool_bh { + struct page_pool *pool; + local_lock_t bh_lock; +}; + +struct xdp_frame_bulk { + int count; + netmem_ref q[16]; +}; + +struct xdp_attachment_info { + struct bpf_prog *prog; + u32 flags; +}; + +enum { + NETDEV_A_PAGE_POOL_STATS_INFO = 1, + NETDEV_A_PAGE_POOL_STATS_ALLOC_FAST = 8, + NETDEV_A_PAGE_POOL_STATS_ALLOC_SLOW = 9, + NETDEV_A_PAGE_POOL_STATS_ALLOC_SLOW_HIGH_ORDER = 10, + NETDEV_A_PAGE_POOL_STATS_ALLOC_EMPTY = 11, + NETDEV_A_PAGE_POOL_STATS_ALLOC_REFILL = 12, + NETDEV_A_PAGE_POOL_STATS_ALLOC_WAIVE = 13, + NETDEV_A_PAGE_POOL_STATS_RECYCLE_CACHED = 14, + NETDEV_A_PAGE_POOL_STATS_RECYCLE_CACHE_FULL = 15, + NETDEV_A_PAGE_POOL_STATS_RECYCLE_RING = 16, + NETDEV_A_PAGE_POOL_STATS_RECYCLE_RING_FULL = 17, + NETDEV_A_PAGE_POOL_STATS_RECYCLE_RELEASED_REFCNT = 18, + __NETDEV_A_PAGE_POOL_STATS_MAX = 19, + NETDEV_A_PAGE_POOL_STATS_MAX = 18, +}; + +typedef int (*pp_nl_fill_cb)(struct sk_buff *, const struct page_pool *, const struct genl_info *); + +struct page_pool_dump_cb { + long unsigned int ifindex; + u32 pp_id; +}; + +struct fib_rule_uid_range { + __u32 start; + __u32 end; +}; + +struct fib_rule_notifier_info { + struct fib_notifier_info info; + struct fib_rule *rule; +}; + +enum ieee8021q_traffic_type { + IEEE8021Q_TT_BK = 0, + IEEE8021Q_TT_BE = 1, + IEEE8021Q_TT_EE = 2, + IEEE8021Q_TT_CA = 3, + IEEE8021Q_TT_VI = 4, + IEEE8021Q_TT_VO = 5, + IEEE8021Q_TT_IC = 6, + IEEE8021Q_TT_NC = 7, + IEEE8021Q_TT_MAX = 8, +}; + +enum ethtool_test_flags { + ETH_TEST_FL_OFFLINE = 1, + ETH_TEST_FL_FAILED = 2, + ETH_TEST_FL_EXTERNAL_LB = 4, + ETH_TEST_FL_EXTERNAL_LB_DONE = 8, +}; + +struct net_packet_attrs { + const unsigned char *src; + const unsigned char *dst; + u32 ip_src; + u32 ip_dst; + bool tcp; + u16 sport; + u16 dport; + int timeout; + int size; + int max_size; + u8 id; + u16 queue_mapping; + bool bad_csum; +}; + +struct net_test_priv { + struct net_packet_attrs *packet; + struct packet_type pt; + struct completion comp; + int double_vlan; + int vlan_id; + int ok; +}; + +struct netsfhdr { + __be32 version; + __be64 magic; + u8 id; +} __attribute__((packed)); + +struct net_test { + char name[32]; + int (*fn)(struct net_device *); +}; + +struct dst_cache_pcpu { + long unsigned int refresh_ts; + struct dst_entry *dst; + local_lock_t bh_lock; + u32 cookie; + union { + struct in_addr in_saddr; + struct in6_addr in6_saddr; + }; +}; + +struct sk_psock_link { + struct list_head list; + struct bpf_map *map; + void *link_raw; +}; + +struct bpf_stab { + struct bpf_map map; + struct sock **sks; + struct sk_psock_progs progs; + spinlock_t lock; +}; + +typedef u64 (*btf_bpf_sock_map_update)(struct bpf_sock_ops_kern *, struct bpf_map *, void *, u64); + +typedef u64 (*btf_bpf_sk_redirect_map)(struct sk_buff *, struct bpf_map *, u32, u64); + +typedef u64 (*btf_bpf_msg_redirect_map)(struct sk_msg *, struct bpf_map *, u32, u64); + +struct sock_map_seq_info { + struct bpf_map *map; + struct sock *sk; + u32 index; +}; + +struct bpf_iter__sockmap { + union { + struct bpf_iter_meta *meta; + }; + union { + struct bpf_map *map; + }; + union { + void *key; + }; + union { + struct sock *sk; + }; +}; + +struct bpf_shtab_elem { + struct callback_head rcu; + u32 hash; + struct sock *sk; + struct hlist_node node; + u8 key[0]; +}; + +struct bpf_shtab_bucket { + struct hlist_head head; + spinlock_t lock; +}; + +struct bpf_shtab { + struct bpf_map map; + struct bpf_shtab_bucket *buckets; + u32 buckets_num; + u32 elem_size; + struct sk_psock_progs progs; + atomic_t count; +}; + +typedef u64 (*btf_bpf_sock_hash_update)(struct bpf_sock_ops_kern *, struct bpf_map *, void *, u64); + +typedef u64 (*btf_bpf_sk_redirect_hash)(struct sk_buff *, struct bpf_map *, void *, u64); + +typedef u64 (*btf_bpf_msg_redirect_hash)(struct sk_msg *, struct bpf_map *, void *, u64); + +struct sock_hash_seq_info { + struct bpf_map *map; + struct bpf_shtab *htab; + u32 bucket_id; +}; + +struct sockmap_link { + struct bpf_link link; + struct bpf_map *map; +}; + +struct fddi_8022_1_hdr { + __u8 dsap; + __u8 ssap; + __u8 ctrl; +}; + +struct fddi_8022_2_hdr { + __u8 dsap; + __u8 ssap; + __u8 ctrl_1; + __u8 ctrl_2; +}; + +struct fddi_snap_hdr { + __u8 dsap; + __u8 ssap; + __u8 ctrl; + __u8 oui[3]; + __be16 ethertype; +}; + +struct fddihdr { + __u8 fc; + __u8 daddr[6]; + __u8 saddr[6]; + union { + struct fddi_8022_1_hdr llc_8022_1; + struct fddi_8022_2_hdr llc_8022_2; + struct fddi_snap_hdr llc_snap; + } hdr; +} __attribute__((packed)); + +struct sch_frag_data { + long unsigned int dst; + struct qdisc_skb_cb cb; + __be16 inner_protocol; + u16 vlan_tci; + __be16 vlan_proto; + unsigned int l2_len; + u8 l2_data[18]; + int (*xmit)(struct sk_buff *); + local_lock_t bh_lock; +}; + +enum { + TCA_ACT_UNSPEC = 0, + TCA_ACT_KIND = 1, + TCA_ACT_OPTIONS = 2, + TCA_ACT_INDEX = 3, + TCA_ACT_STATS = 4, + TCA_ACT_PAD = 5, + TCA_ACT_COOKIE = 6, + TCA_ACT_FLAGS = 7, + TCA_ACT_HW_STATS = 8, + TCA_ACT_USED_HW_STATS = 9, + TCA_ACT_IN_HW_COUNT = 10, + __TCA_ACT_MAX = 11, +}; + +struct tcamsg { + unsigned char tca_family; + unsigned char tca__pad1; + short unsigned int tca__pad2; +}; + +enum { + TCA_ROOT_UNSPEC = 0, + TCA_ROOT_TAB = 1, + TCA_ROOT_FLAGS = 2, + TCA_ROOT_COUNT = 3, + TCA_ROOT_TIME_DELTA = 4, + TCA_ROOT_EXT_WARN_MSG = 5, + __TCA_ROOT_MAX = 6, +}; + +struct tc_action_net { + struct tcf_idrinfo *idrinfo; + const struct tc_action_ops *ops; +}; + +enum pedit_header_type { + TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK = 0, + TCA_PEDIT_KEY_EX_HDR_TYPE_ETH = 1, + TCA_PEDIT_KEY_EX_HDR_TYPE_IP4 = 2, + TCA_PEDIT_KEY_EX_HDR_TYPE_IP6 = 3, + TCA_PEDIT_KEY_EX_HDR_TYPE_TCP = 4, + TCA_PEDIT_KEY_EX_HDR_TYPE_UDP = 5, + __PEDIT_HDR_TYPE_MAX = 6, +}; + +enum pedit_cmd { + TCA_PEDIT_KEY_EX_CMD_SET = 0, + TCA_PEDIT_KEY_EX_CMD_ADD = 1, + __PEDIT_CMD_MAX = 2, +}; + +struct tc_pedit_key { + __u32 mask; + __u32 val; + __u32 off; + __u32 at; + __u32 offmask; + __u32 shift; +}; + +struct tcf_pedit_key_ex { + enum pedit_header_type htype; + enum pedit_cmd cmd; +}; + +struct tcf_pedit_parms { + struct tc_pedit_key *tcfp_keys; + struct tcf_pedit_key_ex *tcfp_keys_ex; + int action; + unsigned char tcfp_nkeys; + unsigned char tcfp_flags; + struct callback_head rcu; +}; + +struct tcf_pedit { + struct tc_action common; + struct tcf_pedit_parms *parms; + long: 64; +}; + +struct tc_act_pernet_id { + struct list_head list; + unsigned int id; +}; + +enum { + CTRL_CMD_UNSPEC = 0, + CTRL_CMD_NEWFAMILY = 1, + CTRL_CMD_DELFAMILY = 2, + CTRL_CMD_GETFAMILY = 3, + CTRL_CMD_NEWOPS = 4, + CTRL_CMD_DELOPS = 5, + CTRL_CMD_GETOPS = 6, + CTRL_CMD_NEWMCAST_GRP = 7, + CTRL_CMD_DELMCAST_GRP = 8, + CTRL_CMD_GETMCAST_GRP = 9, + CTRL_CMD_GETPOLICY = 10, + __CTRL_CMD_MAX = 11, +}; + +enum { + CTRL_ATTR_UNSPEC = 0, + CTRL_ATTR_FAMILY_ID = 1, + CTRL_ATTR_FAMILY_NAME = 2, + CTRL_ATTR_VERSION = 3, + CTRL_ATTR_HDRSIZE = 4, + CTRL_ATTR_MAXATTR = 5, + CTRL_ATTR_OPS = 6, + CTRL_ATTR_MCAST_GROUPS = 7, + CTRL_ATTR_POLICY = 8, + CTRL_ATTR_OP_POLICY = 9, + CTRL_ATTR_OP = 10, + __CTRL_ATTR_MAX = 11, +}; + +enum { + CTRL_ATTR_OP_UNSPEC = 0, + CTRL_ATTR_OP_ID = 1, + CTRL_ATTR_OP_FLAGS = 2, + __CTRL_ATTR_OP_MAX = 3, +}; + +enum { + CTRL_ATTR_MCAST_GRP_UNSPEC = 0, + CTRL_ATTR_MCAST_GRP_NAME = 1, + CTRL_ATTR_MCAST_GRP_ID = 2, + __CTRL_ATTR_MCAST_GRP_MAX = 3, +}; + +enum { + CTRL_ATTR_POLICY_UNSPEC = 0, + CTRL_ATTR_POLICY_DO = 1, + CTRL_ATTR_POLICY_DUMP = 2, + __CTRL_ATTR_POLICY_DUMP_MAX = 3, + CTRL_ATTR_POLICY_DUMP_MAX = 2, +}; + +struct genl_op_iter { + const struct genl_family *family; + struct genl_split_ops doit; + struct genl_split_ops dumpit; + int cmd_idx; + int entry_idx; + u32 cmd; + u8 flags; +}; + +struct genl_start_context { + const struct genl_family *family; + struct nlmsghdr *nlh; + struct netlink_ext_ack *extack; + const struct genl_split_ops *ops; + int hdrlen; +}; + +struct ctrl_dump_policy_ctx { + struct netlink_policy_dump_state *state; + const struct genl_family *rt; + struct genl_op_iter *op_iter; + u32 op; + u16 fam_id; + u8 dump_map: 1; + u8 single_op: 1; +}; + +struct ethtool_cmd { + __u32 cmd; + __u32 supported; + __u32 advertising; + __u16 speed; + __u8 duplex; + __u8 port; + __u8 phy_address; + __u8 transceiver; + __u8 autoneg; + __u8 mdio_support; + __u32 maxtxpkt; + __u32 maxrxpkt; + __u16 speed_hi; + __u8 eth_tp_mdix; + __u8 eth_tp_mdix_ctrl; + __u32 lp_advertising; + __u32 reserved[2]; +}; + +struct ethtool_value { + __u32 cmd; + __u32 data; +}; + +enum tunable_type_id { + ETHTOOL_TUNABLE_UNSPEC = 0, + ETHTOOL_TUNABLE_U8 = 1, + ETHTOOL_TUNABLE_U16 = 2, + ETHTOOL_TUNABLE_U32 = 3, + ETHTOOL_TUNABLE_U64 = 4, + ETHTOOL_TUNABLE_STRING = 5, + ETHTOOL_TUNABLE_S8 = 6, + ETHTOOL_TUNABLE_S16 = 7, + ETHTOOL_TUNABLE_S32 = 8, + ETHTOOL_TUNABLE_S64 = 9, +}; + +struct ethtool_eee { + __u32 cmd; + __u32 supported; + __u32 advertised; + __u32 lp_advertised; + __u32 eee_active; + __u32 eee_enabled; + __u32 tx_lpi_enabled; + __u32 tx_lpi_timer; + __u32 reserved[2]; +}; + +struct ethtool_gstrings { + __u32 cmd; + __u32 string_set; + __u32 len; + __u8 data[0]; +}; + +struct ethtool_sset_info { + __u32 cmd; + __u32 reserved; + __u64 sset_mask; + __u32 data[0]; +}; + +struct ethtool_perm_addr { + __u32 cmd; + __u32 size; + __u8 data[0]; +}; + +enum ethtool_flags { + ETH_FLAG_TXVLAN = 128, + ETH_FLAG_RXVLAN = 256, + ETH_FLAG_LRO = 32768, + ETH_FLAG_NTUPLE = 134217728, + ETH_FLAG_RXHASH = 268435456, +}; + +struct ethtool_rxfh { + __u32 cmd; + __u32 rss_context; + __u32 indir_size; + __u32 key_size; + __u8 hfunc; + __u8 input_xfrm; + __u8 rsvd8[2]; + __u32 rsvd32; + __u32 rss_config[0]; +}; + +struct ethtool_get_features_block { + __u32 available; + __u32 requested; + __u32 active; + __u32 never_changed; +}; + +struct ethtool_gfeatures { + __u32 cmd; + __u32 size; + struct ethtool_get_features_block features[0]; +}; + +struct ethtool_set_features_block { + __u32 valid; + __u32 requested; +}; + +struct ethtool_sfeatures { + __u32 cmd; + __u32 size; + struct ethtool_set_features_block features[0]; +}; + +struct ethtool_ts_info { + __u32 cmd; + __u32 so_timestamping; + __s32 phc_index; + __u32 tx_types; + __u32 tx_reserved[3]; + __u32 rx_filters; + __u32 rx_reserved[3]; +}; + +enum ethtool_sfeatures_retval_bits { + ETHTOOL_F_UNSUPPORTED__BIT = 0, + ETHTOOL_F_WISH__BIT = 1, + ETHTOOL_F_COMPAT__BIT = 2, +}; + +struct ethtool_per_queue_op { + __u32 cmd; + __u32 sub_command; + __u32 queue_mask[128]; + char data[0]; +}; + +struct compat_ethtool_rx_flow_spec { + u32 flow_type; + union ethtool_flow_union h_u; + struct ethtool_flow_ext h_ext; + union ethtool_flow_union m_u; + struct ethtool_flow_ext m_ext; + compat_u64 ring_cookie; + u32 location; +} __attribute__((packed)); + +struct compat_ethtool_rxnfc { + u32 cmd; + u32 flow_type; + compat_u64 data; + struct compat_ethtool_rx_flow_spec fs; + u32 rule_cnt; + u32 rule_locs[0]; +} __attribute__((packed)); + +struct ethtool_rx_flow_rule { + struct flow_rule *rule; + long unsigned int priv[0]; +}; + +struct ethtool_rx_flow_spec_input { + const struct ethtool_rx_flow_spec *fs; + u32 rss_ctx; +}; + +struct ethtool_devlink_compat { + struct devlink *devlink; + union { + struct ethtool_flash efl; + struct ethtool_drvinfo info; + }; +}; + +struct ethtool_link_usettings { + struct ethtool_link_settings base; + struct { + __u32 supported[4]; + __u32 advertising[4]; + __u32 lp_advertising[4]; + } link_modes; +}; + +struct ethtool_rx_flow_key { + struct flow_dissector_key_basic basic; + union { + struct flow_dissector_key_ipv4_addrs ipv4; + struct flow_dissector_key_ipv6_addrs ipv6; + }; + struct flow_dissector_key_ports tp; + struct flow_dissector_key_ip ip; + struct flow_dissector_key_vlan vlan; + struct flow_dissector_key_eth_addrs eth_addrs; +}; + +struct ethtool_rx_flow_match { + struct flow_dissector dissector; + struct ethtool_rx_flow_key key; + struct ethtool_rx_flow_key mask; +}; + +struct linkinfo_reply_data { + struct ethnl_reply_data base; + struct ethtool_link_ksettings ksettings; + struct ethtool_link_settings *lsettings; +}; + +struct linkstate_reply_data { + struct ethnl_reply_data base; + int link; + int sqi; + int sqi_max; + struct ethtool_link_ext_stats link_stats; + bool link_ext_state_provided; + struct ethtool_link_ext_state_info ethtool_link_ext_state_info; +}; + +struct wol_reply_data { + struct ethnl_reply_data base; + struct ethtool_wolinfo wol; + bool show_sopass; +}; + +struct channels_reply_data { + struct ethnl_reply_data base; + struct ethtool_channels channels; +}; + +enum { + ETHTOOL_A_TS_STAT_UNSPEC = 0, + ETHTOOL_A_TS_STAT_TX_PKTS = 1, + ETHTOOL_A_TS_STAT_TX_LOST = 2, + ETHTOOL_A_TS_STAT_TX_ERR = 3, + ETHTOOL_A_TS_STAT_TX_ONESTEP_PKTS_UNCONFIRMED = 4, + __ETHTOOL_A_TS_STAT_CNT = 5, + ETHTOOL_A_TS_STAT_MAX = 4, +}; + +enum { + ETHTOOL_A_TS_HWTSTAMP_PROVIDER_UNSPEC = 0, + ETHTOOL_A_TS_HWTSTAMP_PROVIDER_INDEX = 1, + ETHTOOL_A_TS_HWTSTAMP_PROVIDER_QUALIFIER = 2, + __ETHTOOL_A_TS_HWTSTAMP_PROVIDER_CNT = 3, + ETHTOOL_A_TS_HWTSTAMP_PROVIDER_MAX = 2, +}; + +struct tsinfo_req_info { + struct ethnl_req_info base; + struct hwtstamp_provider_desc hwprov_desc; +}; + +struct tsinfo_reply_data { + struct ethnl_reply_data base; + struct kernel_ethtool_ts_info ts_info; + struct ethtool_ts_stats stats; +}; + +struct ethnl_tsinfo_dump_ctx { + struct tsinfo_req_info *req_info; + struct tsinfo_reply_data *reply_data; + long unsigned int pos_ifindex; + bool netdev_dump_done; + long unsigned int pos_phyindex; + enum hwtstamp_provider_qualifier pos_phcqualifier; +}; + +struct eeprom_req_info { + struct ethnl_req_info base; + u32 offset; + u32 length; + u8 page; + u8 bank; + u8 i2c_address; +}; + +struct eeprom_reply_data { + struct ethnl_reply_data base; + u32 length; + u8 *data; +}; + +enum ethtool_module_fw_flash_status { + ETHTOOL_MODULE_FW_FLASH_STATUS_STARTED = 1, + ETHTOOL_MODULE_FW_FLASH_STATUS_IN_PROGRESS = 2, + ETHTOOL_MODULE_FW_FLASH_STATUS_COMPLETED = 3, + ETHTOOL_MODULE_FW_FLASH_STATUS_ERROR = 4, +}; + +enum { + SFP_PHYS_ID = 0, + SFP_PHYS_EXT_ID = 1, + SFP_PHYS_EXT_ID_SFP = 4, + SFP_CONNECTOR = 2, + SFP_COMPLIANCE = 3, + SFP_ENCODING = 11, + SFP_BR_NOMINAL = 12, + SFP_RATE_ID = 13, + SFF_RID_8079 = 1, + SFF_RID_8431_RX_ONLY = 2, + SFF_RID_8431_TX_ONLY = 4, + SFF_RID_8431 = 6, + SFF_RID_10G8G = 14, + SFP_LINK_LEN_SM_KM = 14, + SFP_LINK_LEN_SM_100M = 15, + SFP_LINK_LEN_50UM_OM2_10M = 16, + SFP_LINK_LEN_62_5UM_OM1_10M = 17, + SFP_LINK_LEN_COPPER_1M = 18, + SFP_LINK_LEN_50UM_OM4_10M = 18, + SFP_LINK_LEN_50UM_OM3_10M = 19, + SFP_VENDOR_NAME = 20, + SFP_VENDOR_OUI = 37, + SFP_VENDOR_PN = 40, + SFP_VENDOR_REV = 56, + SFP_OPTICAL_WAVELENGTH_MSB = 60, + SFP_OPTICAL_WAVELENGTH_LSB = 61, + SFP_CABLE_SPEC = 60, + SFP_CC_BASE = 63, + SFP_OPTIONS = 64, + SFP_OPTIONS_HIGH_POWER_LEVEL = 8192, + SFP_OPTIONS_PAGING_A2 = 4096, + SFP_OPTIONS_RETIMER = 2048, + SFP_OPTIONS_COOLED_XCVR = 1024, + SFP_OPTIONS_POWER_DECL = 512, + SFP_OPTIONS_RX_LINEAR_OUT = 256, + SFP_OPTIONS_RX_DECISION_THRESH = 128, + SFP_OPTIONS_TUNABLE_TX = 64, + SFP_OPTIONS_RATE_SELECT = 32, + SFP_OPTIONS_TX_DISABLE = 16, + SFP_OPTIONS_TX_FAULT = 8, + SFP_OPTIONS_LOS_INVERTED = 4, + SFP_OPTIONS_LOS_NORMAL = 2, + SFP_BR_MAX = 66, + SFP_BR_MIN = 67, + SFP_VENDOR_SN = 68, + SFP_DATECODE = 84, + SFP_DIAGMON = 92, + SFP_DIAGMON_DDM = 64, + SFP_DIAGMON_INT_CAL = 32, + SFP_DIAGMON_EXT_CAL = 16, + SFP_DIAGMON_RXPWR_AVG = 8, + SFP_DIAGMON_ADDRMODE = 4, + SFP_ENHOPTS = 93, + SFP_ENHOPTS_ALARMWARN = 128, + SFP_ENHOPTS_SOFT_TX_DISABLE = 64, + SFP_ENHOPTS_SOFT_TX_FAULT = 32, + SFP_ENHOPTS_SOFT_RX_LOS = 16, + SFP_ENHOPTS_SOFT_RATE_SELECT = 8, + SFP_ENHOPTS_APP_SELECT_SFF8079 = 4, + SFP_ENHOPTS_SOFT_RATE_SFF8431 = 2, + SFP_SFF8472_COMPLIANCE = 94, + SFP_SFF8472_COMPLIANCE_NONE = 0, + SFP_SFF8472_COMPLIANCE_REV9_3 = 1, + SFP_SFF8472_COMPLIANCE_REV9_5 = 2, + SFP_SFF8472_COMPLIANCE_REV10_2 = 3, + SFP_SFF8472_COMPLIANCE_REV10_4 = 4, + SFP_SFF8472_COMPLIANCE_REV11_0 = 5, + SFP_SFF8472_COMPLIANCE_REV11_3 = 6, + SFP_SFF8472_COMPLIANCE_REV11_4 = 7, + SFP_SFF8472_COMPLIANCE_REV12_0 = 8, + SFP_CC_EXT = 95, +}; + +struct ethtool_module_fw_flash { + struct list_head list; + netdevice_tracker dev_tracker; + struct work_struct work; + struct ethtool_cmis_fw_update_params fw_update; +}; + +struct module_reply_data { + struct ethnl_reply_data base; + struct ethtool_module_power_mode_params power; +}; + +struct tsconfig_req_info { + struct ethnl_req_info base; +}; + +struct tsconfig_reply_data { + struct ethnl_reply_data base; + struct hwtstamp_provider_desc hwprov_desc; + struct { + u32 tx_type; + u32 rx_filter; + u32 flags; + } hwtst_config; +}; + +struct nf_sockopt_ops { + struct list_head list; + u_int8_t pf; + int set_optmin; + int set_optmax; + int (*set)(struct sock *, int, sockptr_t, unsigned int); + int get_optmin; + int get_optmax; + int (*get)(struct sock *, int, void *, int *); + struct module *owner; +}; + +struct bpf_nf_link { + struct bpf_link link; + struct nf_hook_ops hook_ops; + netns_tracker ns_tracker; + struct net *net; + u32 dead; + const struct nf_defrag_hook *defrag_hook; +}; + +struct ipq { + struct inet_frag_queue q; + u8 ecn; + u16 max_df_size; + int iif; + unsigned int rid; + struct inet_peer *peer; +}; + +struct ip_mreq_source { + __be32 imr_multiaddr; + __be32 imr_interface; + __be32 imr_sourceaddr; +}; + +struct ip_msfilter { + __be32 imsf_multiaddr; + __be32 imsf_interface; + __u32 imsf_fmode; + __u32 imsf_numsrc; + union { + __be32 imsf_slist[1]; + struct { + struct {} __empty_imsf_slist_flex; + __be32 imsf_slist_flex[0]; + }; + }; +}; + +struct group_req { + __u32 gr_interface; + struct __kernel_sockaddr_storage gr_group; +}; + +struct group_source_req { + __u32 gsr_interface; + struct __kernel_sockaddr_storage gsr_group; + struct __kernel_sockaddr_storage gsr_source; +}; + +struct group_filter { + union { + struct { + __u32 gf_interface_aux; + struct __kernel_sockaddr_storage gf_group_aux; + __u32 gf_fmode_aux; + __u32 gf_numsrc_aux; + struct __kernel_sockaddr_storage gf_slist[1]; + }; + struct { + __u32 gf_interface; + struct __kernel_sockaddr_storage gf_group; + __u32 gf_fmode; + __u32 gf_numsrc; + struct __kernel_sockaddr_storage gf_slist_flex[0]; + }; + }; +}; + +struct compat_group_req { + __u32 gr_interface; + struct __kernel_sockaddr_storage gr_group; +} __attribute__((packed)); + +struct compat_group_source_req { + __u32 gsr_interface; + struct __kernel_sockaddr_storage gsr_group; + struct __kernel_sockaddr_storage gsr_source; +} __attribute__((packed)); + +struct compat_group_filter { + union { + struct { + __u32 gf_interface_aux; + struct __kernel_sockaddr_storage gf_group_aux; + __u32 gf_fmode_aux; + __u32 gf_numsrc_aux; + struct __kernel_sockaddr_storage gf_slist[1]; + } __attribute__((packed)); + struct { + __u32 gf_interface; + struct __kernel_sockaddr_storage gf_group; + __u32 gf_fmode; + __u32 gf_numsrc; + struct __kernel_sockaddr_storage gf_slist_flex[0]; + } __attribute__((packed)); + }; +}; + +enum { + BPF_WRITE_HDR_TCP_CURRENT_MSS = 1, + BPF_WRITE_HDR_TCP_SYNACK_COOKIE = 2, +}; + +enum { + TCP_NO_QUEUE = 0, + TCP_RECV_QUEUE = 1, + TCP_SEND_QUEUE = 2, + TCP_QUEUES_NR = 3, +}; + +enum tsq_flags { + TSQF_THROTTLED = 1, + TSQF_QUEUED = 2, + TCPF_TSQ_DEFERRED = 4, + TCPF_WRITE_TIMER_DEFERRED = 8, + TCPF_DELACK_TIMER_DEFERRED = 16, + TCPF_MTU_REDUCED_DEFERRED = 32, + TCPF_ACK_DEFERRED = 64, +}; + +struct tcp_out_options { + u16 options; + u16 mss; + u8 ws; + u8 num_sack_blocks; + u8 hash_size; + u8 bpf_opt_len; + __u8 *hash_location; + __u32 tsval; + __u32 tsecr; + struct tcp_fastopen_cookie *fastopen_cookie; + struct mptcp_out_options mptcp; +}; + +struct tsq_work { + struct work_struct work; + struct list_head head; +}; + +enum tcp_metric_index { + TCP_METRIC_RTT = 0, + TCP_METRIC_RTTVAR = 1, + TCP_METRIC_SSTHRESH = 2, + TCP_METRIC_CWND = 3, + TCP_METRIC_REORDERING = 4, + TCP_METRIC_RTT_US = 5, + TCP_METRIC_RTTVAR_US = 6, + __TCP_METRIC_MAX = 7, +}; + +enum { + TCP_METRICS_ATTR_UNSPEC = 0, + TCP_METRICS_ATTR_ADDR_IPV4 = 1, + TCP_METRICS_ATTR_ADDR_IPV6 = 2, + TCP_METRICS_ATTR_AGE = 3, + TCP_METRICS_ATTR_TW_TSVAL = 4, + TCP_METRICS_ATTR_TW_TS_STAMP = 5, + TCP_METRICS_ATTR_VALS = 6, + TCP_METRICS_ATTR_FOPEN_MSS = 7, + TCP_METRICS_ATTR_FOPEN_SYN_DROPS = 8, + TCP_METRICS_ATTR_FOPEN_SYN_DROP_TS = 9, + TCP_METRICS_ATTR_FOPEN_COOKIE = 10, + TCP_METRICS_ATTR_SADDR_IPV4 = 11, + TCP_METRICS_ATTR_SADDR_IPV6 = 12, + TCP_METRICS_ATTR_PAD = 13, + __TCP_METRICS_ATTR_MAX = 14, +}; + +enum { + TCP_METRICS_CMD_UNSPEC = 0, + TCP_METRICS_CMD_GET = 1, + TCP_METRICS_CMD_DEL = 2, + __TCP_METRICS_CMD_MAX = 3, +}; + +struct tcp_fastopen_metrics { + u16 mss; + u16 syn_loss: 10; + u16 try_exp: 2; + long unsigned int last_syn_loss; + struct tcp_fastopen_cookie cookie; +}; + +struct tcp_metrics_block { + struct tcp_metrics_block *tcpm_next; + struct net *tcpm_net; + struct inetpeer_addr tcpm_saddr; + struct inetpeer_addr tcpm_daddr; + long unsigned int tcpm_stamp; + u32 tcpm_lock; + u32 tcpm_vals[5]; + struct tcp_fastopen_metrics tcpm_fastopen; + struct callback_head callback_head; +}; + +struct tcpm_hash_bucket { + struct tcp_metrics_block *chain; +}; + +struct igmpv3_grec { + __u8 grec_type; + __u8 grec_auxwords; + __be16 grec_nsrcs; + __be32 grec_mca; + __be32 grec_src[0]; +}; + +struct igmpv3_report { + __u8 type; + __u8 resv1; + __sum16 csum; + __be16 resv2; + __be16 ngrec; + struct igmpv3_grec grec[0]; +}; + +struct igmpv3_query { + __u8 type; + __u8 code; + __sum16 csum; + __be32 group; + __u8 qrv: 3; + __u8 suppress: 1; + __u8 resv: 4; + __u8 qqic; + __be16 nsrcs; + __be32 srcs[0]; +}; + +struct igmp_mc_iter_state { + struct seq_net_private p; + struct net_device *dev; + struct in_device *in_dev; +}; + +struct igmp_mcf_iter_state { + struct seq_net_private p; + struct net_device *dev; + struct in_device *idev; + struct ip_mc_list *im; +}; + +struct rta_mfc_stats { + __u64 mfcs_packets; + __u64 mfcs_bytes; + __u64 mfcs_wrong_if; +}; + +enum { + ETHTOOL_A_TUNNEL_UDP_ENTRY_UNSPEC = 0, + ETHTOOL_A_TUNNEL_UDP_ENTRY_PORT = 1, + ETHTOOL_A_TUNNEL_UDP_ENTRY_TYPE = 2, + __ETHTOOL_A_TUNNEL_UDP_ENTRY_CNT = 3, + ETHTOOL_A_TUNNEL_UDP_ENTRY_MAX = 2, +}; + +enum { + ETHTOOL_A_TUNNEL_UDP_TABLE_UNSPEC = 0, + ETHTOOL_A_TUNNEL_UDP_TABLE_SIZE = 1, + ETHTOOL_A_TUNNEL_UDP_TABLE_TYPES = 2, + ETHTOOL_A_TUNNEL_UDP_TABLE_ENTRY = 3, + __ETHTOOL_A_TUNNEL_UDP_TABLE_CNT = 4, + ETHTOOL_A_TUNNEL_UDP_TABLE_MAX = 3, +}; + +struct udp_tunnel_nic_table_entry; + +struct udp_tunnel_nic { + struct work_struct work; + struct net_device *dev; + struct mutex lock; + u8 need_sync: 1; + u8 need_replay: 1; + u8 work_pending: 1; + unsigned int n_tables; + long unsigned int missed; + struct udp_tunnel_nic_table_entry *entries[0]; +}; + +enum udp_tunnel_nic_info_flags { + UDP_TUNNEL_NIC_INFO_OPEN_ONLY = 1, + UDP_TUNNEL_NIC_INFO_IPV4_ONLY = 2, + UDP_TUNNEL_NIC_INFO_STATIC_IANA_VXLAN = 4, +}; + +struct udp_tunnel_nic_shared_node { + struct net_device *dev; + struct list_head list; +}; + +enum udp_tunnel_nic_table_entry_flags { + UDP_TUNNEL_NIC_ENTRY_ADD = 1, + UDP_TUNNEL_NIC_ENTRY_DEL = 2, + UDP_TUNNEL_NIC_ENTRY_OP_FAIL = 4, + UDP_TUNNEL_NIC_ENTRY_FROZEN = 8, +}; + +struct udp_tunnel_nic_table_entry { + __be16 port; + u8 type; + u8 flags; + u16 use_cnt; + u8 hw_priv; +}; + +struct sigpool_scratch { + local_lock_t bh_lock; + void *pad; +}; + +struct sigpool_entry { + struct crypto_ahash *hash; + const char *alg; + struct kref kref; + uint16_t needs_key: 1; + uint16_t reserved: 15; +}; + +struct scratches_to_free { + struct callback_head rcu; + unsigned int cnt; + void *scratches[0]; +}; + +struct xfrm_input_afinfo { + u8 family; + bool is_ipip; + int (*callback)(struct sk_buff *, u8, int); +}; + +struct __ip6_tnl_parm { + char name[16]; + int link; + __u8 proto; + __u8 encap_limit; + __u8 hop_limit; + bool collect_md; + __be32 flowinfo; + __u32 flags; + struct in6_addr laddr; + struct in6_addr raddr; + long unsigned int i_flags[1]; + long unsigned int o_flags[1]; + __be32 i_key; + __be32 o_key; + __u32 fwmark; + __u32 index; + __u8 erspan_ver; + __u8 dir; + __u16 hwid; +}; + +struct ip6_tnl { + struct ip6_tnl *next; + struct net_device *dev; + netdevice_tracker dev_tracker; + struct net *net; + struct __ip6_tnl_parm parms; + struct flowi fl; + struct dst_cache dst_cache; + struct gro_cells gro_cells; + int err_count; + long unsigned int err_time; + __u32 i_seqno; + atomic_t o_seqno; + int hlen; + int tun_hlen; + int encap_hlen; + struct ip_tunnel_encap encap; + int mlink; +}; + +struct xfrm_trans_tasklet { + struct work_struct work; + spinlock_t queue_lock; + struct sk_buff_head queue; +}; + +struct xfrm_trans_cb { + union { + struct inet_skb_parm h4; + struct inet6_skb_parm h6; + } header; + int (*finish)(struct net *, struct sock *, struct sk_buff *); + struct net *net; +}; + +struct unix_edge { + struct unix_sock *predecessor; + struct unix_sock *successor; + struct list_head vertex_entry; + struct list_head stack_entry; +}; + +struct unix_vertex { + struct list_head edges; + struct list_head entry; + struct list_head scc_entry; + long unsigned int out_degree; + long unsigned int index; + long unsigned int scc_index; +}; + +struct unix_skb_parms { + struct pid *pid; + kuid_t uid; + kgid_t gid; + struct scm_fp_list *fp; + u32 secid; + u32 consumed; +}; + +enum unix_vertex_index { + UNIX_VERTEX_INDEX_MARK1 = 0, + UNIX_VERTEX_INDEX_MARK2 = 1, + UNIX_VERTEX_INDEX_START = 2, +}; + +struct ipv6_params { + __s32 disable_ipv6; + __s32 autoconf; +}; + +struct compat_in6_rtmsg { + struct in6_addr rtmsg_dst; + struct in6_addr rtmsg_src; + struct in6_addr rtmsg_gateway; + u32 rtmsg_type; + u16 rtmsg_dst_len; + u16 rtmsg_src_len; + u32 rtmsg_metric; + u32 rtmsg_info; + u32 rtmsg_flags; + s32 rtmsg_ifindex; +}; + +enum { + IFLA_INET6_UNSPEC = 0, + IFLA_INET6_FLAGS = 1, + IFLA_INET6_CONF = 2, + IFLA_INET6_STATS = 3, + IFLA_INET6_MCAST = 4, + IFLA_INET6_CACHEINFO = 5, + IFLA_INET6_ICMP6STATS = 6, + IFLA_INET6_TOKEN = 7, + IFLA_INET6_ADDR_GEN_MODE = 8, + IFLA_INET6_RA_MTU = 9, + __IFLA_INET6_MAX = 10, +}; + +enum in6_addr_gen_mode { + IN6_ADDR_GEN_MODE_EUI64 = 0, + IN6_ADDR_GEN_MODE_NONE = 1, + IN6_ADDR_GEN_MODE_STABLE_PRIVACY = 2, + IN6_ADDR_GEN_MODE_RANDOM = 3, +}; + +struct ifla_cacheinfo { + __u32 max_reasm_len; + __u32 tstamp; + __u32 reachable_time; + __u32 retrans_time; +}; + +struct wpan_phy; + +struct wpan_dev_header_ops; + +struct ieee802154_pan_device; + +struct wpan_dev { + struct wpan_phy *wpan_phy; + int iftype; + struct list_head list; + struct net_device *netdev; + const struct wpan_dev_header_ops *header_ops; + struct net_device *lowpan_dev; + u32 identifier; + __le16 pan_id; + __le16 short_addr; + __le64 extended_addr; + atomic_t bsn; + atomic_t dsn; + u8 min_be; + u8 max_be; + u8 csma_retries; + s8 frame_retries; + bool lbt; + bool ackreq; + struct mutex association_lock; + struct ieee802154_pan_device *parent; + struct list_head children; + unsigned int max_associations; + unsigned int nchildren; +}; + +struct netdev_notifier_change_info { + struct netdev_notifier_info info; + unsigned int flags_changed; +}; + +struct prefixmsg { + unsigned char prefix_family; + unsigned char prefix_pad1; + short unsigned int prefix_pad2; + int prefix_ifindex; + unsigned char prefix_type; + unsigned char prefix_len; + unsigned char prefix_flags; + unsigned char prefix_pad3; +}; + +enum { + PREFIX_UNSPEC = 0, + PREFIX_ADDRESS = 1, + PREFIX_CACHEINFO = 2, + __PREFIX_MAX = 3, +}; + +struct prefix_cacheinfo { + __u32 preferred_time; + __u32 valid_time; +}; + +struct in6_ifreq { + struct in6_addr ifr6_addr; + __u32 ifr6_prefixlen; + int ifr6_ifindex; +}; + +enum { + DEVCONF_FORWARDING = 0, + DEVCONF_HOPLIMIT = 1, + DEVCONF_MTU6 = 2, + DEVCONF_ACCEPT_RA = 3, + DEVCONF_ACCEPT_REDIRECTS = 4, + DEVCONF_AUTOCONF = 5, + DEVCONF_DAD_TRANSMITS = 6, + DEVCONF_RTR_SOLICITS = 7, + DEVCONF_RTR_SOLICIT_INTERVAL = 8, + DEVCONF_RTR_SOLICIT_DELAY = 9, + DEVCONF_USE_TEMPADDR = 10, + DEVCONF_TEMP_VALID_LFT = 11, + DEVCONF_TEMP_PREFERED_LFT = 12, + DEVCONF_REGEN_MAX_RETRY = 13, + DEVCONF_MAX_DESYNC_FACTOR = 14, + DEVCONF_MAX_ADDRESSES = 15, + DEVCONF_FORCE_MLD_VERSION = 16, + DEVCONF_ACCEPT_RA_DEFRTR = 17, + DEVCONF_ACCEPT_RA_PINFO = 18, + DEVCONF_ACCEPT_RA_RTR_PREF = 19, + DEVCONF_RTR_PROBE_INTERVAL = 20, + DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN = 21, + DEVCONF_PROXY_NDP = 22, + DEVCONF_OPTIMISTIC_DAD = 23, + DEVCONF_ACCEPT_SOURCE_ROUTE = 24, + DEVCONF_MC_FORWARDING = 25, + DEVCONF_DISABLE_IPV6 = 26, + DEVCONF_ACCEPT_DAD = 27, + DEVCONF_FORCE_TLLAO = 28, + DEVCONF_NDISC_NOTIFY = 29, + DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL = 30, + DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL = 31, + DEVCONF_SUPPRESS_FRAG_NDISC = 32, + DEVCONF_ACCEPT_RA_FROM_LOCAL = 33, + DEVCONF_USE_OPTIMISTIC = 34, + DEVCONF_ACCEPT_RA_MTU = 35, + DEVCONF_STABLE_SECRET = 36, + DEVCONF_USE_OIF_ADDRS_ONLY = 37, + DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT = 38, + DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN = 39, + DEVCONF_DROP_UNICAST_IN_L2_MULTICAST = 40, + DEVCONF_DROP_UNSOLICITED_NA = 41, + DEVCONF_KEEP_ADDR_ON_DOWN = 42, + DEVCONF_RTR_SOLICIT_MAX_INTERVAL = 43, + DEVCONF_SEG6_ENABLED = 44, + DEVCONF_SEG6_REQUIRE_HMAC = 45, + DEVCONF_ENHANCED_DAD = 46, + DEVCONF_ADDR_GEN_MODE = 47, + DEVCONF_DISABLE_POLICY = 48, + DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN = 49, + DEVCONF_NDISC_TCLASS = 50, + DEVCONF_RPL_SEG_ENABLED = 51, + DEVCONF_RA_DEFRTR_METRIC = 52, + DEVCONF_IOAM6_ENABLED = 53, + DEVCONF_IOAM6_ID = 54, + DEVCONF_IOAM6_ID_WIDE = 55, + DEVCONF_NDISC_EVICT_NOCARRIER = 56, + DEVCONF_ACCEPT_UNTRACKED_NA = 57, + DEVCONF_ACCEPT_RA_MIN_LFT = 58, + DEVCONF_FORCE_FORWARDING = 59, + DEVCONF_MAX = 60, +}; + +enum { + INET6_IFADDR_STATE_PREDAD = 0, + INET6_IFADDR_STATE_DAD = 1, + INET6_IFADDR_STATE_POSTDAD = 2, + INET6_IFADDR_STATE_ERRDAD = 3, + INET6_IFADDR_STATE_DEAD = 4, +}; + +struct in6_validator_info { + struct in6_addr i6vi_addr; + struct inet6_dev *i6vi_dev; + struct netlink_ext_ack *extack; +}; + +struct ifa6_config { + const struct in6_addr *pfx; + unsigned int plen; + u8 ifa_proto; + const struct in6_addr *peer_pfx; + u32 rt_priority; + u32 ifa_flags; + u32 preferred_lft; + u32 valid_lft; + u16 scope; +}; + +enum addr_type_t { + UNICAST_ADDR = 0, + MULTICAST_ADDR = 1, + ANYCAST_ADDR = 2, +}; + +struct inet6_fill_args { + u32 portid; + u32 seq; + int event; + unsigned int flags; + int netnsid; + int ifindex; + enum addr_type_t type; + bool force_rt_scope_universe; +}; + +enum ieee802154_filtering_level { + IEEE802154_FILTERING_NONE = 0, + IEEE802154_FILTERING_1_FCS = 1, + IEEE802154_FILTERING_2_PROMISCUOUS = 2, + IEEE802154_FILTERING_3_SCAN = 3, + IEEE802154_FILTERING_4_FRAME_FIELDS = 4, +}; + +enum nl802154_cca_modes { + __NL802154_CCA_INVALID = 0, + NL802154_CCA_ENERGY = 1, + NL802154_CCA_CARRIER = 2, + NL802154_CCA_ENERGY_CARRIER = 3, + NL802154_CCA_ALOHA = 4, + NL802154_CCA_UWB_SHR = 5, + NL802154_CCA_UWB_MULTIPLEXED = 6, + __NL802154_CCA_ATTR_AFTER_LAST = 7, + NL802154_CCA_ATTR_MAX = 6, +}; + +enum nl802154_cca_opts { + NL802154_CCA_OPT_ENERGY_CARRIER_AND = 0, + NL802154_CCA_OPT_ENERGY_CARRIER_OR = 1, + __NL802154_CCA_OPT_ATTR_AFTER_LAST = 2, + NL802154_CCA_OPT_ATTR_MAX = 1, +}; + +enum nl802154_supported_bool_states { + NL802154_SUPPORTED_BOOL_FALSE = 0, + NL802154_SUPPORTED_BOOL_TRUE = 1, + __NL802154_SUPPORTED_BOOL_INVALD = 2, + NL802154_SUPPORTED_BOOL_BOTH = 3, + __NL802154_SUPPORTED_BOOL_AFTER_LAST = 4, + NL802154_SUPPORTED_BOOL_MAX = 3, +}; + +struct wpan_phy_supported { + u32 channels[32]; + u32 cca_modes; + u32 cca_opts; + u32 iftypes; + enum nl802154_supported_bool_states lbt; + u8 min_minbe; + u8 max_minbe; + u8 min_maxbe; + u8 max_maxbe; + u8 min_csma_backoffs; + u8 max_csma_backoffs; + s8 min_frame_retries; + s8 max_frame_retries; + size_t tx_powers_size; + size_t cca_ed_levels_size; + const s32 *tx_powers; + const s32 *cca_ed_levels; +}; + +struct wpan_phy_cca { + enum nl802154_cca_modes mode; + enum nl802154_cca_opts opt; +}; + +struct wpan_phy { + const void *privid; + long unsigned int flags; + u8 current_channel; + u8 current_page; + struct wpan_phy_supported supported; + s32 transmit_power; + struct wpan_phy_cca cca; + __le64 perm_extended_addr; + s32 cca_ed_level; + u32 symbol_duration; + u16 lifs_period; + u16 sifs_period; + struct device dev; + possible_net_t _net; + spinlock_t queue_lock; + atomic_t ongoing_txs; + atomic_t hold_txs; + wait_queue_head_t sync_txq; + enum ieee802154_filtering_level filtering; + long: 0; + char priv[0]; +}; + +struct ieee802154_addr { + u8 mode; + __le16 pan_id; + union { + __le16 short_addr; + __le64 extended_addr; + }; +}; + +struct ieee802154_pan_device { + __le16 pan_id; + u8 mode; + __le16 short_addr; + __le64 extended_addr; + struct list_head node; +}; + +struct wpan_dev_header_ops { + int (*create)(struct sk_buff *, struct net_device *, const struct ieee802154_addr *, const struct ieee802154_addr *, unsigned int); +}; + +union fwnet_hwaddr { + u8 u[16]; + struct { + __be64 uniq_id; + u8 max_rec; + u8 sspd; + u8 fifo[6]; + } uc; +}; + +enum cleanup_prefix_rt_t { + CLEANUP_PREFIX_RT_NOP = 0, + CLEANUP_PREFIX_RT_DEL = 1, + CLEANUP_PREFIX_RT_EXPIRE = 2, +}; + +enum { + IPV6_SADDR_RULE_INIT = 0, + IPV6_SADDR_RULE_LOCAL = 1, + IPV6_SADDR_RULE_SCOPE = 2, + IPV6_SADDR_RULE_PREFERRED = 3, + IPV6_SADDR_RULE_OIF = 4, + IPV6_SADDR_RULE_LABEL = 5, + IPV6_SADDR_RULE_PRIVACY = 6, + IPV6_SADDR_RULE_ORCHID = 7, + IPV6_SADDR_RULE_PREFIX = 8, + IPV6_SADDR_RULE_NOT_OPTIMISTIC = 9, + IPV6_SADDR_RULE_MAX = 10, +}; + +struct ipv6_saddr_score { + int rule; + int addr_type; + struct inet6_ifaddr *ifa; + long unsigned int scorebits[1]; + int scopedist; + int matchlen; +}; + +struct ipv6_saddr_dst { + const struct in6_addr *addr; + int ifindex; + int scope; + int label; + unsigned int prefs; +}; + +struct if6_iter_state { + struct seq_net_private p; + int bucket; + int offset; +}; + +enum { + DAD_PROCESS = 0, + DAD_BEGIN = 1, + DAD_ABORT = 2, +}; + +struct nduseroptmsg { + unsigned char nduseropt_family; + unsigned char nduseropt_pad1; + short unsigned int nduseropt_opts_len; + int nduseropt_ifindex; + __u8 nduseropt_icmp_type; + __u8 nduseropt_icmp_code; + short unsigned int nduseropt_pad2; + unsigned int nduseropt_pad3; +}; + +enum { + NDUSEROPT_UNSPEC = 0, + NDUSEROPT_SRCADDR = 1, + __NDUSEROPT_MAX = 2, +}; + +struct rs_msg { + struct icmp6hdr icmph; + __u8 opt[0]; +}; + +struct ra_msg { + struct icmp6hdr icmph; + __be32 reachable_time; + __be32 retrans_timer; +}; + +typedef void ip6_icmp_send_t(struct sk_buff *, u8, u8, __u32, const struct in6_addr *, const struct inet6_skb_parm *); + +struct icmpv6_msg { + struct sk_buff *skb; + int offset; + uint8_t type; +}; + +struct icmp6_err { + int err; + int fatal; +}; + +typedef __u32 if_mask; + +struct if_set { + if_mask ifs_bits[8]; +}; + +struct mif6ctl { + mifi_t mif6c_mifi; + unsigned char mif6c_flags; + unsigned char vifc_threshold; + __u16 mif6c_pifi; + unsigned int vifc_rate_limit; +}; + +struct mf6cctl { + struct sockaddr_in6 mf6cc_origin; + struct sockaddr_in6 mf6cc_mcastgrp; + mifi_t mf6cc_parent; + struct if_set mf6cc_ifset; +}; + +struct mrt6msg { + __u8 im6_mbz; + __u8 im6_msgtype; + __u16 im6_mif; + __u32 im6_pad; + struct in6_addr im6_src; + struct in6_addr im6_dst; +}; + +enum { + IP6MRA_CREPORT_UNSPEC = 0, + IP6MRA_CREPORT_MSGTYPE = 1, + IP6MRA_CREPORT_MIF_ID = 2, + IP6MRA_CREPORT_SRC_ADDR = 3, + IP6MRA_CREPORT_DST_ADDR = 4, + IP6MRA_CREPORT_PKT = 5, + __IP6MRA_CREPORT_MAX = 6, +}; + +struct mfc6_cache_cmp_arg { + struct in6_addr mf6c_mcastgrp; + struct in6_addr mf6c_origin; +}; + +struct mfc6_cache { + struct mr_mfc _c; + union { + struct { + struct in6_addr mf6c_mcastgrp; + struct in6_addr mf6c_origin; + }; + struct mfc6_cache_cmp_arg cmparg; + }; +}; + +struct ip6mr_result { + struct mr_table *mrt; +}; + +struct compat_sioc_sg_req6 { + struct sockaddr_in6 src; + struct sockaddr_in6 grp; + compat_ulong_t pktcnt; + compat_ulong_t bytecnt; + compat_ulong_t wrong_if; +}; + +struct compat_sioc_mif_req6 { + mifi_t mifi; + compat_ulong_t icount; + compat_ulong_t ocount; + compat_ulong_t ibytes; + compat_ulong_t obytes; +}; + +struct br_input_skb_cb { + struct net_device *brdev; + u16 frag_max_size; + u8 igmp; + u8 mrouters_only: 1; + u8 proxyarp_replied: 1; + u8 src_port_isolated: 1; + u8 vlan_filtered: 1; + u8 br_netfilter_broute: 1; + u8 tx_fwd_offload: 1; + int src_hwdom; + long unsigned int fwd_hwdoms; + u32 backup_nhid; +}; + +struct nf_bridge_frag_data; + +struct calipso_map_cache_bkt { + spinlock_t lock; + u32 size; + struct list_head list; +}; + +struct calipso_map_cache_entry { + u32 hash; + unsigned char *key; + size_t key_len; + struct netlbl_lsm_cache *lsm_data; + u32 activity; + struct list_head list; +}; + +enum { + __IOAM6_IPTUNNEL_MODE_MIN = 0, + IOAM6_IPTUNNEL_MODE_INLINE = 1, + IOAM6_IPTUNNEL_MODE_ENCAP = 2, + IOAM6_IPTUNNEL_MODE_AUTO = 3, + __IOAM6_IPTUNNEL_MODE_MAX = 4, +}; + +enum { + IOAM6_IPTUNNEL_UNSPEC = 0, + IOAM6_IPTUNNEL_MODE = 1, + IOAM6_IPTUNNEL_DST = 2, + IOAM6_IPTUNNEL_TRACE = 3, + IOAM6_IPTUNNEL_FREQ_K = 4, + IOAM6_IPTUNNEL_FREQ_N = 5, + IOAM6_IPTUNNEL_SRC = 6, + __IOAM6_IPTUNNEL_MAX = 7, +}; + +struct ioam6_lwt_encap { + struct ipv6_opt_hdr eh; + u8 pad[2]; + struct ioam6_hdr ioamh; + struct ioam6_trace_hdr traceh; +}; + +struct ioam6_lwt_freq { + u32 k; + u32 n; +}; + +struct ioam6_lwt { + struct dst_entry null_dst; + struct dst_cache cache; + struct ioam6_lwt_freq freq; + atomic_t pkt_cnt; + u8 mode; + bool has_tunsrc; + struct in6_addr tunsrc; + struct in6_addr tundst; + struct ioam6_lwt_encap tuninfo; +}; + +struct trace_event_raw_devlink_hwmsg { + struct trace_entry ent; + u32 __data_loc_bus_name; + u32 __data_loc_dev_name; + u32 __data_loc_driver_name; + bool incoming; + long unsigned int type; + u32 __data_loc_buf; + size_t len; + char __data[0]; +}; + +struct trace_event_raw_devlink_hwerr { + struct trace_entry ent; + u32 __data_loc_bus_name; + u32 __data_loc_dev_name; + u32 __data_loc_driver_name; + int err; + u32 __data_loc_msg; + char __data[0]; +}; + +struct trace_event_raw_devlink_health_report { + struct trace_entry ent; + u32 __data_loc_bus_name; + u32 __data_loc_dev_name; + u32 __data_loc_driver_name; + u32 __data_loc_reporter_name; + u32 __data_loc_msg; + char __data[0]; +}; + +struct trace_event_raw_devlink_health_recover_aborted { + struct trace_entry ent; + u32 __data_loc_bus_name; + u32 __data_loc_dev_name; + u32 __data_loc_driver_name; + u32 __data_loc_reporter_name; + bool health_state; + u64 time_since_last_recover; + char __data[0]; +}; + +struct trace_event_raw_devlink_health_reporter_state_update { + struct trace_entry ent; + u32 __data_loc_bus_name; + u32 __data_loc_dev_name; + u32 __data_loc_driver_name; + u32 __data_loc_reporter_name; + u8 new_state; + char __data[0]; +}; + +struct trace_event_raw_devlink_trap_report { + struct trace_entry ent; + u32 __data_loc_bus_name; + u32 __data_loc_dev_name; + u32 __data_loc_driver_name; + u32 __data_loc_trap_name; + u32 __data_loc_trap_group_name; + char input_dev_name[16]; + char __data[0]; +}; + +struct trace_event_data_offsets_devlink_hwmsg { + u32 bus_name; + const void *bus_name_ptr_; + u32 dev_name; + const void *dev_name_ptr_; + u32 driver_name; + const void *driver_name_ptr_; + u32 buf; + const void *buf_ptr_; +}; + +struct trace_event_data_offsets_devlink_hwerr { + u32 bus_name; + const void *bus_name_ptr_; + u32 dev_name; + const void *dev_name_ptr_; + u32 driver_name; + const void *driver_name_ptr_; + u32 msg; + const void *msg_ptr_; +}; + +struct trace_event_data_offsets_devlink_health_report { + u32 bus_name; + const void *bus_name_ptr_; + u32 dev_name; + const void *dev_name_ptr_; + u32 driver_name; + const void *driver_name_ptr_; + u32 reporter_name; + const void *reporter_name_ptr_; + u32 msg; + const void *msg_ptr_; +}; + +struct trace_event_data_offsets_devlink_health_recover_aborted { + u32 bus_name; + const void *bus_name_ptr_; + u32 dev_name; + const void *dev_name_ptr_; + u32 driver_name; + const void *driver_name_ptr_; + u32 reporter_name; + const void *reporter_name_ptr_; +}; + +struct trace_event_data_offsets_devlink_health_reporter_state_update { + u32 bus_name; + const void *bus_name_ptr_; + u32 dev_name; + const void *dev_name_ptr_; + u32 driver_name; + const void *driver_name_ptr_; + u32 reporter_name; + const void *reporter_name_ptr_; +}; + +struct trace_event_data_offsets_devlink_trap_report { + u32 bus_name; + const void *bus_name_ptr_; + u32 dev_name; + const void *dev_name_ptr_; + u32 driver_name; + const void *driver_name_ptr_; + u32 trap_name; + const void *trap_name_ptr_; + u32 trap_group_name; + const void *trap_group_name_ptr_; +}; + +typedef void (*btf_trace_devlink_hwmsg)(void *, const struct devlink *, bool, long unsigned int, const u8 *, size_t); + +typedef void (*btf_trace_devlink_hwerr)(void *, const struct devlink *, int, const char *); + +typedef void (*btf_trace_devlink_health_report)(void *, const struct devlink *, const char *, const char *); + +typedef void (*btf_trace_devlink_health_recover_aborted)(void *, const struct devlink *, const char *, bool, u64); + +typedef void (*btf_trace_devlink_health_reporter_state_update)(void *, const struct devlink *, const char *, bool); + +typedef void (*btf_trace_devlink_trap_report)(void *, const struct devlink *, struct sk_buff *, const struct devlink_trap_metadata *); + +typedef void devlink_rel_notify_cb_t(struct devlink *, u32); + +typedef void devlink_rel_cleanup_cb_t(struct devlink *, u32, u32); + +struct devlink_rel { + u32 index; + refcount_t refcount; + u32 devlink_index; + struct { + u32 devlink_index; + u32 obj_index; + devlink_rel_notify_cb_t *notify_cb; + devlink_rel_cleanup_cb_t *cleanup_cb; + struct delayed_work notify_work; + } nested_in; +}; + +enum devlink_port_fn_attr_cap { + DEVLINK_PORT_FN_ATTR_CAP_ROCE_BIT = 0, + DEVLINK_PORT_FN_ATTR_CAP_MIGRATABLE_BIT = 1, + DEVLINK_PORT_FN_ATTR_CAP_IPSEC_CRYPTO_BIT = 2, + DEVLINK_PORT_FN_ATTR_CAP_IPSEC_PACKET_BIT = 3, + __DEVLINK_PORT_FN_ATTR_CAPS_MAX = 4, +}; + +enum devlink_linecard_state { + DEVLINK_LINECARD_STATE_UNSPEC = 0, + DEVLINK_LINECARD_STATE_UNPROVISIONED = 1, + DEVLINK_LINECARD_STATE_UNPROVISIONING = 2, + DEVLINK_LINECARD_STATE_PROVISIONING = 3, + DEVLINK_LINECARD_STATE_PROVISIONING_FAILED = 4, + DEVLINK_LINECARD_STATE_PROVISIONED = 5, + DEVLINK_LINECARD_STATE_ACTIVE = 6, + __DEVLINK_LINECARD_STATE_MAX = 7, + DEVLINK_LINECARD_STATE_MAX = 6, +}; + +struct devlink_linecard_ops; + +struct devlink_linecard_type; + +struct devlink_linecard { + struct list_head list; + struct devlink *devlink; + unsigned int index; + const struct devlink_linecard_ops *ops; + void *priv; + enum devlink_linecard_state state; + struct mutex state_lock; + const char *type; + struct devlink_linecard_type *types; + unsigned int types_count; + u32 rel_index; +}; + +struct devlink_linecard_ops { + int (*provision)(struct devlink_linecard *, void *, const char *, const void *, struct netlink_ext_ack *); + int (*unprovision)(struct devlink_linecard *, void *, struct netlink_ext_ack *); + bool (*same_provision)(struct devlink_linecard *, void *, const char *, const void *); + unsigned int (*types_count)(struct devlink_linecard *, void *); + void (*types_get)(struct devlink_linecard *, void *, unsigned int, const char **, const void **); +}; + +struct devlink_linecard_type { + const char *type; + const void *priv; +}; + +enum { + NLBL_MGMT_C_UNSPEC = 0, + NLBL_MGMT_C_ADD = 1, + NLBL_MGMT_C_REMOVE = 2, + NLBL_MGMT_C_LISTALL = 3, + NLBL_MGMT_C_ADDDEF = 4, + NLBL_MGMT_C_REMOVEDEF = 5, + NLBL_MGMT_C_LISTDEF = 6, + NLBL_MGMT_C_PROTOCOLS = 7, + NLBL_MGMT_C_VERSION = 8, + __NLBL_MGMT_C_MAX = 9, +}; + +enum { + NLBL_MGMT_A_UNSPEC = 0, + NLBL_MGMT_A_DOMAIN = 1, + NLBL_MGMT_A_PROTOCOL = 2, + NLBL_MGMT_A_VERSION = 3, + NLBL_MGMT_A_CV4DOI = 4, + NLBL_MGMT_A_IPV6ADDR = 5, + NLBL_MGMT_A_IPV6MASK = 6, + NLBL_MGMT_A_IPV4ADDR = 7, + NLBL_MGMT_A_IPV4MASK = 8, + NLBL_MGMT_A_ADDRSELECTOR = 9, + NLBL_MGMT_A_SELECTORLIST = 10, + NLBL_MGMT_A_FAMILY = 11, + NLBL_MGMT_A_CLPDOI = 12, + __NLBL_MGMT_A_MAX = 13, +}; + +struct netlbl_domhsh_walk_arg___2 { + struct netlink_callback *nl_cb; + struct sk_buff *skb; + u32 seq; +}; + +enum rfkill_type { + RFKILL_TYPE_ALL = 0, + RFKILL_TYPE_WLAN = 1, + RFKILL_TYPE_BLUETOOTH = 2, + RFKILL_TYPE_UWB = 3, + RFKILL_TYPE_WIMAX = 4, + RFKILL_TYPE_WWAN = 5, + RFKILL_TYPE_GPS = 6, + RFKILL_TYPE_FM = 7, + RFKILL_TYPE_NFC = 8, + NUM_RFKILL_TYPES = 9, +}; + +enum rfkill_operation { + RFKILL_OP_ADD = 0, + RFKILL_OP_DEL = 1, + RFKILL_OP_CHANGE = 2, + RFKILL_OP_CHANGE_ALL = 3, +}; + +enum rfkill_hard_block_reasons { + RFKILL_HARD_BLOCK_SIGNAL = 1, + RFKILL_HARD_BLOCK_NOT_OWNER = 2, +}; + +struct rfkill_event_ext { + __u32 idx; + __u8 type; + __u8 op; + __u8 soft; + __u8 hard; + __u8 hard_block_reasons; +} __attribute__((packed)); + +enum rfkill_user_states { + RFKILL_USER_STATE_SOFT_BLOCKED = 0, + RFKILL_USER_STATE_UNBLOCKED = 1, + RFKILL_USER_STATE_HARD_BLOCKED = 2, +}; + +struct rfkill_ops { + void (*poll)(struct rfkill *, void *); + void (*query)(struct rfkill *, void *); + int (*set_block)(void *, bool); +}; + +struct rfkill { + spinlock_t lock; + enum rfkill_type type; + long unsigned int state; + long unsigned int hard_block_reasons; + u32 idx; + bool registered; + bool persistent; + bool polling_paused; + bool suspended; + bool need_sync; + const struct rfkill_ops *ops; + void *data; + struct led_trigger led_trigger; + const char *ledtrigname; + struct device dev; + struct list_head node; + struct delayed_work poll_work; + struct work_struct uevent_work; + struct work_struct sync_work; + char name[0]; +}; + +struct rfkill_int_event { + struct list_head list; + struct rfkill_event_ext ev; +}; + +struct rfkill_data { + struct list_head list; + struct list_head events; + struct mutex mtx; + wait_queue_head_t read_wait; + bool input_handler; +}; + +struct dcbmsg { + __u8 dcb_family; + __u8 cmd; + __u16 dcb_pad; +}; + +enum dcbnl_commands { + DCB_CMD_UNDEFINED = 0, + DCB_CMD_GSTATE = 1, + DCB_CMD_SSTATE = 2, + DCB_CMD_PGTX_GCFG = 3, + DCB_CMD_PGTX_SCFG = 4, + DCB_CMD_PGRX_GCFG = 5, + DCB_CMD_PGRX_SCFG = 6, + DCB_CMD_PFC_GCFG = 7, + DCB_CMD_PFC_SCFG = 8, + DCB_CMD_SET_ALL = 9, + DCB_CMD_GPERM_HWADDR = 10, + DCB_CMD_GCAP = 11, + DCB_CMD_GNUMTCS = 12, + DCB_CMD_SNUMTCS = 13, + DCB_CMD_PFC_GSTATE = 14, + DCB_CMD_PFC_SSTATE = 15, + DCB_CMD_BCN_GCFG = 16, + DCB_CMD_BCN_SCFG = 17, + DCB_CMD_GAPP = 18, + DCB_CMD_SAPP = 19, + DCB_CMD_IEEE_SET = 20, + DCB_CMD_IEEE_GET = 21, + DCB_CMD_GDCBX = 22, + DCB_CMD_SDCBX = 23, + DCB_CMD_GFEATCFG = 24, + DCB_CMD_SFEATCFG = 25, + DCB_CMD_CEE_GET = 26, + DCB_CMD_IEEE_DEL = 27, + __DCB_CMD_ENUM_MAX = 28, + DCB_CMD_MAX = 27, +}; + +enum dcbnl_attrs { + DCB_ATTR_UNDEFINED = 0, + DCB_ATTR_IFNAME = 1, + DCB_ATTR_STATE = 2, + DCB_ATTR_PFC_STATE = 3, + DCB_ATTR_PFC_CFG = 4, + DCB_ATTR_NUM_TC = 5, + DCB_ATTR_PG_CFG = 6, + DCB_ATTR_SET_ALL = 7, + DCB_ATTR_PERM_HWADDR = 8, + DCB_ATTR_CAP = 9, + DCB_ATTR_NUMTCS = 10, + DCB_ATTR_BCN = 11, + DCB_ATTR_APP = 12, + DCB_ATTR_IEEE = 13, + DCB_ATTR_DCBX = 14, + DCB_ATTR_FEATCFG = 15, + DCB_ATTR_CEE = 16, + __DCB_ATTR_ENUM_MAX = 17, + DCB_ATTR_MAX = 16, +}; + +enum ieee_attrs { + DCB_ATTR_IEEE_UNSPEC = 0, + DCB_ATTR_IEEE_ETS = 1, + DCB_ATTR_IEEE_PFC = 2, + DCB_ATTR_IEEE_APP_TABLE = 3, + DCB_ATTR_IEEE_PEER_ETS = 4, + DCB_ATTR_IEEE_PEER_PFC = 5, + DCB_ATTR_IEEE_PEER_APP = 6, + DCB_ATTR_IEEE_MAXRATE = 7, + DCB_ATTR_IEEE_QCN = 8, + DCB_ATTR_IEEE_QCN_STATS = 9, + DCB_ATTR_DCB_BUFFER = 10, + DCB_ATTR_DCB_APP_TRUST_TABLE = 11, + DCB_ATTR_DCB_REWR_TABLE = 12, + __DCB_ATTR_IEEE_MAX = 13, +}; + +enum ieee_attrs_app { + DCB_ATTR_IEEE_APP_UNSPEC = 0, + DCB_ATTR_IEEE_APP = 1, + DCB_ATTR_DCB_APP = 2, + __DCB_ATTR_IEEE_APP_MAX = 3, +}; + +enum cee_attrs { + DCB_ATTR_CEE_UNSPEC = 0, + DCB_ATTR_CEE_PEER_PG = 1, + DCB_ATTR_CEE_PEER_PFC = 2, + DCB_ATTR_CEE_PEER_APP_TABLE = 3, + DCB_ATTR_CEE_TX_PG = 4, + DCB_ATTR_CEE_RX_PG = 5, + DCB_ATTR_CEE_PFC = 6, + DCB_ATTR_CEE_APP_TABLE = 7, + DCB_ATTR_CEE_FEAT = 8, + __DCB_ATTR_CEE_MAX = 9, +}; + +enum peer_app_attr { + DCB_ATTR_CEE_PEER_APP_UNSPEC = 0, + DCB_ATTR_CEE_PEER_APP_INFO = 1, + DCB_ATTR_CEE_PEER_APP = 2, + __DCB_ATTR_CEE_PEER_APP_MAX = 3, +}; + +enum dcbnl_pfc_up_attrs { + DCB_PFC_UP_ATTR_UNDEFINED = 0, + DCB_PFC_UP_ATTR_0 = 1, + DCB_PFC_UP_ATTR_1 = 2, + DCB_PFC_UP_ATTR_2 = 3, + DCB_PFC_UP_ATTR_3 = 4, + DCB_PFC_UP_ATTR_4 = 5, + DCB_PFC_UP_ATTR_5 = 6, + DCB_PFC_UP_ATTR_6 = 7, + DCB_PFC_UP_ATTR_7 = 8, + DCB_PFC_UP_ATTR_ALL = 9, + __DCB_PFC_UP_ATTR_ENUM_MAX = 10, + DCB_PFC_UP_ATTR_MAX = 9, +}; + +enum dcbnl_pg_attrs { + DCB_PG_ATTR_UNDEFINED = 0, + DCB_PG_ATTR_TC_0 = 1, + DCB_PG_ATTR_TC_1 = 2, + DCB_PG_ATTR_TC_2 = 3, + DCB_PG_ATTR_TC_3 = 4, + DCB_PG_ATTR_TC_4 = 5, + DCB_PG_ATTR_TC_5 = 6, + DCB_PG_ATTR_TC_6 = 7, + DCB_PG_ATTR_TC_7 = 8, + DCB_PG_ATTR_TC_MAX = 9, + DCB_PG_ATTR_TC_ALL = 10, + DCB_PG_ATTR_BW_ID_0 = 11, + DCB_PG_ATTR_BW_ID_1 = 12, + DCB_PG_ATTR_BW_ID_2 = 13, + DCB_PG_ATTR_BW_ID_3 = 14, + DCB_PG_ATTR_BW_ID_4 = 15, + DCB_PG_ATTR_BW_ID_5 = 16, + DCB_PG_ATTR_BW_ID_6 = 17, + DCB_PG_ATTR_BW_ID_7 = 18, + DCB_PG_ATTR_BW_ID_MAX = 19, + DCB_PG_ATTR_BW_ID_ALL = 20, + __DCB_PG_ATTR_ENUM_MAX = 21, + DCB_PG_ATTR_MAX = 20, +}; + +enum dcbnl_tc_attrs { + DCB_TC_ATTR_PARAM_UNDEFINED = 0, + DCB_TC_ATTR_PARAM_PGID = 1, + DCB_TC_ATTR_PARAM_UP_MAPPING = 2, + DCB_TC_ATTR_PARAM_STRICT_PRIO = 3, + DCB_TC_ATTR_PARAM_BW_PCT = 4, + DCB_TC_ATTR_PARAM_ALL = 5, + __DCB_TC_ATTR_PARAM_ENUM_MAX = 6, + DCB_TC_ATTR_PARAM_MAX = 5, +}; + +enum dcbnl_cap_attrs { + DCB_CAP_ATTR_UNDEFINED = 0, + DCB_CAP_ATTR_ALL = 1, + DCB_CAP_ATTR_PG = 2, + DCB_CAP_ATTR_PFC = 3, + DCB_CAP_ATTR_UP2TC = 4, + DCB_CAP_ATTR_PG_TCS = 5, + DCB_CAP_ATTR_PFC_TCS = 6, + DCB_CAP_ATTR_GSP = 7, + DCB_CAP_ATTR_BCN = 8, + DCB_CAP_ATTR_DCBX = 9, + __DCB_CAP_ATTR_ENUM_MAX = 10, + DCB_CAP_ATTR_MAX = 9, +}; + +enum dcbnl_numtcs_attrs { + DCB_NUMTCS_ATTR_UNDEFINED = 0, + DCB_NUMTCS_ATTR_ALL = 1, + DCB_NUMTCS_ATTR_PG = 2, + DCB_NUMTCS_ATTR_PFC = 3, + __DCB_NUMTCS_ATTR_ENUM_MAX = 4, + DCB_NUMTCS_ATTR_MAX = 3, +}; + +enum dcbnl_bcn_attrs { + DCB_BCN_ATTR_UNDEFINED = 0, + DCB_BCN_ATTR_RP_0 = 1, + DCB_BCN_ATTR_RP_1 = 2, + DCB_BCN_ATTR_RP_2 = 3, + DCB_BCN_ATTR_RP_3 = 4, + DCB_BCN_ATTR_RP_4 = 5, + DCB_BCN_ATTR_RP_5 = 6, + DCB_BCN_ATTR_RP_6 = 7, + DCB_BCN_ATTR_RP_7 = 8, + DCB_BCN_ATTR_RP_ALL = 9, + DCB_BCN_ATTR_BCNA_0 = 10, + DCB_BCN_ATTR_BCNA_1 = 11, + DCB_BCN_ATTR_ALPHA = 12, + DCB_BCN_ATTR_BETA = 13, + DCB_BCN_ATTR_GD = 14, + DCB_BCN_ATTR_GI = 15, + DCB_BCN_ATTR_TMAX = 16, + DCB_BCN_ATTR_TD = 17, + DCB_BCN_ATTR_RMIN = 18, + DCB_BCN_ATTR_W = 19, + DCB_BCN_ATTR_RD = 20, + DCB_BCN_ATTR_RU = 21, + DCB_BCN_ATTR_WRTT = 22, + DCB_BCN_ATTR_RI = 23, + DCB_BCN_ATTR_C = 24, + DCB_BCN_ATTR_ALL = 25, + __DCB_BCN_ATTR_ENUM_MAX = 26, + DCB_BCN_ATTR_MAX = 25, +}; + +enum dcb_general_attr_values { + DCB_ATTR_VALUE_UNDEFINED = 255, +}; + +enum dcbnl_app_attrs { + DCB_APP_ATTR_UNDEFINED = 0, + DCB_APP_ATTR_IDTYPE = 1, + DCB_APP_ATTR_ID = 2, + DCB_APP_ATTR_PRIORITY = 3, + __DCB_APP_ATTR_ENUM_MAX = 4, + DCB_APP_ATTR_MAX = 3, +}; + +enum dcbnl_featcfg_attrs { + DCB_FEATCFG_ATTR_UNDEFINED = 0, + DCB_FEATCFG_ATTR_ALL = 1, + DCB_FEATCFG_ATTR_PG = 2, + DCB_FEATCFG_ATTR_PFC = 3, + DCB_FEATCFG_ATTR_APP = 4, + __DCB_FEATCFG_ATTR_ENUM_MAX = 5, + DCB_FEATCFG_ATTR_MAX = 4, +}; + +struct dcb_app_type { + int ifindex; + struct dcb_app app; + struct list_head list; + u8 dcbx; +}; + +struct dcb_rewr_prio_pcp_map { + u16 map[8]; +}; + +struct dcb_ieee_app_prio_map { + u64 map[8]; +}; + +struct dcb_ieee_app_dscp_map { + u8 map[64]; +}; + +enum dcbevent_notif_type { + DCB_APP_EVENT = 1, +}; + +struct reply_func { + int type; + int (*cb)(struct net_device *, struct nlmsghdr *, u32, struct nlattr **, struct sk_buff *); +}; + +enum { + ncsi_dev_state_registered = 0, + ncsi_dev_state_functional = 256, + ncsi_dev_state_probe = 512, + ncsi_dev_state_config = 768, + ncsi_dev_state_suspend = 1024, +}; + +enum { + NCSI_CAP_GENERIC_HWA = 1, + NCSI_CAP_GENERIC_HDS = 2, + NCSI_CAP_GENERIC_FC = 4, + NCSI_CAP_GENERIC_FC1 = 8, + NCSI_CAP_GENERIC_MC = 16, + NCSI_CAP_GENERIC_HWA_UNKNOWN = 0, + NCSI_CAP_GENERIC_HWA_SUPPORT = 32, + NCSI_CAP_GENERIC_HWA_NOT_SUPPORT = 64, + NCSI_CAP_GENERIC_HWA_RESERVED = 96, + NCSI_CAP_GENERIC_HWA_MASK = 96, + NCSI_CAP_GENERIC_MASK = 127, + NCSI_CAP_BC_ARP = 1, + NCSI_CAP_BC_DHCPC = 2, + NCSI_CAP_BC_DHCPS = 4, + NCSI_CAP_BC_NETBIOS = 8, + NCSI_CAP_BC_MASK = 15, + NCSI_CAP_MC_IPV6_NEIGHBOR = 1, + NCSI_CAP_MC_IPV6_ROUTER = 2, + NCSI_CAP_MC_DHCPV6_RELAY = 4, + NCSI_CAP_MC_DHCPV6_WELL_KNOWN = 8, + NCSI_CAP_MC_IPV6_MLD = 16, + NCSI_CAP_MC_IPV6_NEIGHBOR_S = 32, + NCSI_CAP_MC_MASK = 63, + NCSI_CAP_AEN_LSC = 1, + NCSI_CAP_AEN_CR = 2, + NCSI_CAP_AEN_HDS = 4, + NCSI_CAP_AEN_MASK = 7, + NCSI_CAP_VLAN_ONLY = 1, + NCSI_CAP_VLAN_NO = 2, + NCSI_CAP_VLAN_ANY = 4, + NCSI_CAP_VLAN_MASK = 7, +}; + +enum { + MLX_MC_RBT_SUPPORT = 1, + MLX_MC_RBT_AVL = 8, +}; + +enum { + ncsi_dev_state_major = 65280, + ncsi_dev_state_minor = 255, + ncsi_dev_state_probe_deselect = 513, + ncsi_dev_state_probe_package = 514, + ncsi_dev_state_probe_channel = 515, + ncsi_dev_state_probe_mlx_gma = 516, + ncsi_dev_state_probe_mlx_smaf = 517, + ncsi_dev_state_probe_cis = 518, + ncsi_dev_state_probe_keep_phy = 519, + ncsi_dev_state_probe_gvi = 520, + ncsi_dev_state_probe_gc = 521, + ncsi_dev_state_probe_gls = 522, + ncsi_dev_state_probe_dp = 523, + ncsi_dev_state_config_sp = 769, + ncsi_dev_state_config_cis = 770, + ncsi_dev_state_config_oem_gma = 771, + ncsi_dev_state_config_apply_mac = 772, + ncsi_dev_state_config_clear_vids = 773, + ncsi_dev_state_config_svf = 774, + ncsi_dev_state_config_ev = 775, + ncsi_dev_state_config_sma = 776, + ncsi_dev_state_config_ebf = 777, + ncsi_dev_state_config_dgmf = 778, + ncsi_dev_state_config_ecnt = 779, + ncsi_dev_state_config_ec = 780, + ncsi_dev_state_config_ae = 781, + ncsi_dev_state_config_gls = 782, + ncsi_dev_state_config_done = 783, + ncsi_dev_state_suspend_select = 1025, + ncsi_dev_state_suspend_gls = 1026, + ncsi_dev_state_suspend_dcnt = 1027, + ncsi_dev_state_suspend_dc = 1028, + ncsi_dev_state_suspend_deselect = 1029, + ncsi_dev_state_suspend_done = 1030, +}; + +struct vlan_vid { + struct list_head list; + __be16 proto; + u16 vid; +}; + +struct ncsi_oem_gma_handler { + unsigned int mfr_id; + int (*handler)(struct ncsi_cmd_arg *); +}; + +struct mptcp_info { + __u8 mptcpi_subflows; + __u8 mptcpi_add_addr_signal; + __u8 mptcpi_add_addr_accepted; + __u8 mptcpi_subflows_max; + __u8 mptcpi_add_addr_signal_max; + __u8 mptcpi_add_addr_accepted_max; + __u32 mptcpi_flags; + __u32 mptcpi_token; + __u64 mptcpi_write_seq; + __u64 mptcpi_snd_una; + __u64 mptcpi_rcv_nxt; + __u8 mptcpi_local_addr_used; + __u8 mptcpi_local_addr_max; + __u8 mptcpi_csum_enabled; + __u32 mptcpi_retransmits; + __u64 mptcpi_bytes_retrans; + __u64 mptcpi_bytes_sent; + __u64 mptcpi_bytes_received; + __u64 mptcpi_bytes_acked; + __u8 mptcpi_subflows_total; + __u8 reserved[3]; + __u32 mptcpi_last_data_sent; + __u32 mptcpi_last_data_recv; + __u32 mptcpi_last_ack_recv; +}; + +struct mptcp_subflow_data { + __u32 size_subflow_data; + __u32 num_subflows; + __u32 size_kernel; + __u32 size_user; +}; + +struct mptcp_subflow_addrs { + union { + __kernel_sa_family_t sa_family; + struct sockaddr sa_local; + struct sockaddr_in sin_local; + struct sockaddr_in6 sin6_local; + struct __kernel_sockaddr_storage ss_local; + }; + union { + struct sockaddr sa_remote; + struct sockaddr_in sin_remote; + struct sockaddr_in6 sin6_remote; + struct __kernel_sockaddr_storage ss_remote; + }; +}; + +struct mptcp_subflow_info { + __u32 id; + struct mptcp_subflow_addrs addrs; +}; + +struct mptcp_full_info { + __u32 size_tcpinfo_kernel; + __u32 size_tcpinfo_user; + __u32 size_sfinfo_kernel; + __u32 size_sfinfo_user; + __u32 num_subflows; + __u32 size_arrays_user; + __u64 subflow_info; + __u64 tcp_info; + struct mptcp_info mptcp_info; +}; + +struct tcp_info { + __u8 tcpi_state; + __u8 tcpi_ca_state; + __u8 tcpi_retransmits; + __u8 tcpi_probes; + __u8 tcpi_backoff; + __u8 tcpi_options; + __u8 tcpi_snd_wscale: 4; + __u8 tcpi_rcv_wscale: 4; + __u8 tcpi_delivery_rate_app_limited: 1; + __u8 tcpi_fastopen_client_fail: 2; + __u32 tcpi_rto; + __u32 tcpi_ato; + __u32 tcpi_snd_mss; + __u32 tcpi_rcv_mss; + __u32 tcpi_unacked; + __u32 tcpi_sacked; + __u32 tcpi_lost; + __u32 tcpi_retrans; + __u32 tcpi_fackets; + __u32 tcpi_last_data_sent; + __u32 tcpi_last_ack_sent; + __u32 tcpi_last_data_recv; + __u32 tcpi_last_ack_recv; + __u32 tcpi_pmtu; + __u32 tcpi_rcv_ssthresh; + __u32 tcpi_rtt; + __u32 tcpi_rttvar; + __u32 tcpi_snd_ssthresh; + __u32 tcpi_snd_cwnd; + __u32 tcpi_advmss; + __u32 tcpi_reordering; + __u32 tcpi_rcv_rtt; + __u32 tcpi_rcv_space; + __u32 tcpi_total_retrans; + __u64 tcpi_pacing_rate; + __u64 tcpi_max_pacing_rate; + __u64 tcpi_bytes_acked; + __u64 tcpi_bytes_received; + __u32 tcpi_segs_out; + __u32 tcpi_segs_in; + __u32 tcpi_notsent_bytes; + __u32 tcpi_min_rtt; + __u32 tcpi_data_segs_in; + __u32 tcpi_data_segs_out; + __u64 tcpi_delivery_rate; + __u64 tcpi_busy_time; + __u64 tcpi_rwnd_limited; + __u64 tcpi_sndbuf_limited; + __u32 tcpi_delivered; + __u32 tcpi_delivered_ce; + __u64 tcpi_bytes_sent; + __u64 tcpi_bytes_retrans; + __u32 tcpi_dsack_dups; + __u32 tcpi_reord_seen; + __u32 tcpi_rcv_ooopack; + __u32 tcpi_snd_wnd; + __u32 tcpi_rcv_wnd; + __u32 tcpi_rehash; + __u16 tcpi_total_rto; + __u16 tcpi_total_rto_recoveries; + __u32 tcpi_total_rto_time; +}; + +struct pm_nl_pernet { + spinlock_t lock; + struct list_head local_addr_list; + unsigned int addrs; + unsigned int stale_loss_cnt; + unsigned int add_addr_signal_max; + unsigned int add_addr_accept_max; + unsigned int local_addr_max; + unsigned int subflows_max; + unsigned int next_id; + long unsigned int id_bitmap[4]; +}; + +enum { + IFLA_MCTP_UNSPEC = 0, + IFLA_MCTP_NET = 1, + IFLA_MCTP_PHYS_BINDING = 2, + __IFLA_MCTP_MAX = 3, +}; + +struct mctp_dump_cb { + long unsigned int ifindex; + size_t a_idx; +}; + +enum { + HANDSHAKE_CMD_READY = 1, + HANDSHAKE_CMD_ACCEPT = 2, + HANDSHAKE_CMD_DONE = 3, + __HANDSHAKE_CMD_MAX = 4, + HANDSHAKE_CMD_MAX = 3, +}; + +enum { + HANDSHAKE_NLGRP_NONE = 0, + HANDSHAKE_NLGRP_TLSHD = 1, +}; + +struct trace_event_raw_handshake_event_class { + struct trace_entry ent; + const void *req; + const void *sk; + unsigned int netns_ino; + char __data[0]; +}; + +struct trace_event_raw_handshake_fd_class { + struct trace_entry ent; + const void *req; + const void *sk; + int fd; + unsigned int netns_ino; + char __data[0]; +}; + +struct trace_event_raw_handshake_error_class { + struct trace_entry ent; + const void *req; + const void *sk; + int err; + unsigned int netns_ino; + char __data[0]; +}; + +struct trace_event_raw_handshake_alert_class { + struct trace_entry ent; + __u8 saddr[28]; + __u8 daddr[28]; + unsigned int netns_ino; + long unsigned int level; + long unsigned int description; + char __data[0]; +}; + +struct trace_event_raw_handshake_complete { + struct trace_entry ent; + const void *req; + const void *sk; + int status; + unsigned int netns_ino; + char __data[0]; +}; + +struct trace_event_raw_tls_contenttype { + struct trace_entry ent; + __u8 saddr[28]; + __u8 daddr[28]; + unsigned int netns_ino; + long unsigned int type; + char __data[0]; +}; + +struct trace_event_data_offsets_handshake_event_class {}; + +struct trace_event_data_offsets_handshake_fd_class {}; + +struct trace_event_data_offsets_handshake_error_class {}; + +struct trace_event_data_offsets_handshake_alert_class {}; + +struct trace_event_data_offsets_handshake_complete {}; + +struct trace_event_data_offsets_tls_contenttype {}; + +typedef void (*btf_trace_handshake_submit)(void *, const struct net *, const struct handshake_req *, const struct sock *); + +typedef void (*btf_trace_handshake_submit_err)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); + +typedef void (*btf_trace_handshake_cancel)(void *, const struct net *, const struct handshake_req *, const struct sock *); + +typedef void (*btf_trace_handshake_cancel_none)(void *, const struct net *, const struct handshake_req *, const struct sock *); + +typedef void (*btf_trace_handshake_cancel_busy)(void *, const struct net *, const struct handshake_req *, const struct sock *); + +typedef void (*btf_trace_handshake_destruct)(void *, const struct net *, const struct handshake_req *, const struct sock *); + +typedef void (*btf_trace_handshake_complete)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); + +typedef void (*btf_trace_handshake_notify_err)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); + +typedef void (*btf_trace_handshake_cmd_accept)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); + +typedef void (*btf_trace_handshake_cmd_accept_err)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); + +typedef void (*btf_trace_handshake_cmd_done)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); + +typedef void (*btf_trace_handshake_cmd_done_err)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); + +typedef void (*btf_trace_tls_contenttype)(void *, const struct sock *, unsigned char); + +typedef void (*btf_trace_tls_alert_send)(void *, const struct sock *, unsigned char, unsigned char); + +typedef void (*btf_trace_tls_alert_recv)(void *, const struct sock *, unsigned char, unsigned char); + +struct sys_info_name { + long unsigned int bit; + const char *name; +}; + +enum { + st_wordstart = 0, + st_wordcmp = 1, + st_wordskip = 2, + st_bufcpy = 3, +}; + +enum { + st_wordstart___2 = 0, + st_wordcmp___2 = 1, + st_wordskip___2 = 2, +}; + +enum reg_type { + REG_TYPE_RM = 0, + REG_TYPE_REG = 1, + REG_TYPE_INDEX = 2, + REG_TYPE_BASE = 3, +}; + +struct preempt_notifier; + +struct preempt_ops { + void (*sched_in)(struct preempt_notifier *, int); + void (*sched_out)(struct preempt_notifier *, struct task_struct *); +}; + +struct preempt_notifier { + struct hlist_node link; + struct preempt_ops *ops; +}; + +struct kvm_regs { + __u64 rax; + __u64 rbx; + __u64 rcx; + __u64 rdx; + __u64 rsi; + __u64 rdi; + __u64 rsp; + __u64 rbp; + __u64 r8; + __u64 r9; + __u64 r10; + __u64 r11; + __u64 r12; + __u64 r13; + __u64 r14; + __u64 r15; + __u64 rip; + __u64 rflags; +}; + +struct kvm_segment { + __u64 base; + __u32 limit; + __u16 selector; + __u8 type; + __u8 present; + __u8 dpl; + __u8 db; + __u8 s; + __u8 l; + __u8 g; + __u8 avl; + __u8 unusable; + __u8 padding; +}; + +struct kvm_dtable { + __u64 base; + __u16 limit; + __u16 padding[3]; +}; + +struct kvm_sregs { + struct kvm_segment cs; + struct kvm_segment ds; + struct kvm_segment es; + struct kvm_segment fs; + struct kvm_segment gs; + struct kvm_segment ss; + struct kvm_segment tr; + struct kvm_segment ldt; + struct kvm_dtable gdt; + struct kvm_dtable idt; + __u64 cr0; + __u64 cr2; + __u64 cr3; + __u64 cr4; + __u64 cr8; + __u64 efer; + __u64 apic_base; + __u64 interrupt_bitmap[4]; +}; + +struct kvm_cpuid_entry2 { + __u32 function; + __u32 index; + __u32 flags; + __u32 eax; + __u32 ebx; + __u32 ecx; + __u32 edx; + __u32 padding[3]; +}; + +struct kvm_debug_exit_arch { + __u32 exception; + __u32 pad; + __u64 pc; + __u64 dr6; + __u64 dr7; +}; + +struct kvm_vcpu_events { + struct { + __u8 injected; + __u8 nr; + __u8 has_error_code; + __u8 pending; + __u32 error_code; + } exception; + struct { + __u8 injected; + __u8 nr; + __u8 soft; + __u8 shadow; + } interrupt; + struct { + __u8 injected; + __u8 pending; + __u8 masked; + __u8 pad; + } nmi; + __u32 sipi_vector; + __u32 flags; + struct { + __u8 smm; + __u8 pending; + __u8 smm_inside_nmi; + __u8 latched_init; + } smi; + struct { + __u8 pending; + } triple_fault; + __u8 reserved[26]; + __u8 exception_has_payload; + __u64 exception_payload; +}; + +struct kvm_sync_regs { + struct kvm_regs regs; + struct kvm_sregs sregs; + struct kvm_vcpu_events events; +}; + +struct kvm_vmx_nested_state_data { + __u8 vmcs12[4096]; + __u8 shadow_vmcs12[4096]; +}; + +struct kvm_vmx_nested_state_hdr { + __u64 vmxon_pa; + __u64 vmcs12_pa; + struct { + __u16 flags; + } smm; + __u16 pad; + __u32 flags; + __u64 preemption_timer_deadline; +}; + +struct kvm_svm_nested_state_data { + __u8 vmcb12[4096]; +}; + +struct kvm_svm_nested_state_hdr { + __u64 vmcb_pa; +}; + +struct kvm_nested_state { + __u16 flags; + __u16 format; + __u32 size; + union { + struct kvm_vmx_nested_state_hdr vmx; + struct kvm_svm_nested_state_hdr svm; + __u8 pad[120]; + } hdr; + union { + struct { + struct {} __empty_vmx; + struct kvm_vmx_nested_state_data vmx[0]; + }; + struct { + struct {} __empty_svm; + struct kvm_svm_nested_state_data svm[0]; + }; + } data; +}; + +struct kvm_xen_hvm_config { + __u32 flags; + __u32 msr; + __u64 blob_addr_32; + __u64 blob_addr_64; + __u8 blob_size_32; + __u8 blob_size_64; + __u8 pad2[30]; +}; + +struct kvm_hyperv_exit { + __u32 type; + __u32 pad1; + union { + struct { + __u32 msr; + __u32 pad2; + __u64 control; + __u64 evt_page; + __u64 msg_page; + } synic; + struct { + __u64 input; + __u64 result; + __u64 params[2]; + } hcall; + struct { + __u32 msr; + __u32 pad2; + __u64 control; + __u64 status; + __u64 send_page; + __u64 recv_page; + __u64 pending_page; + } syndbg; + } u; +}; + +struct kvm_xen_exit { + __u32 type; + union { + struct { + __u32 longmode; + __u32 cpl; + __u64 input; + __u64 result; + __u64 params[6]; + } hcall; + } u; +}; + +struct kvm_run { + __u8 request_interrupt_window; + __u8 immediate_exit__unsafe; + __u8 padding1[6]; + __u32 exit_reason; + __u8 ready_for_interrupt_injection; + __u8 if_flag; + __u16 flags; + __u64 cr8; + __u64 apic_base; + union { + struct { + __u64 hardware_exit_reason; + } hw; + struct { + __u64 hardware_entry_failure_reason; + __u32 cpu; + } fail_entry; + struct { + __u32 exception; + __u32 error_code; + } ex; + struct { + __u8 direction; + __u8 size; + __u16 port; + __u32 count; + __u64 data_offset; + } io; + struct { + struct kvm_debug_exit_arch arch; + } debug; + struct { + __u64 phys_addr; + __u8 data[8]; + __u32 len; + __u8 is_write; + } mmio; + struct { + __u64 phys_addr; + __u8 data[8]; + __u32 len; + __u8 is_write; + } iocsr_io; + struct { + __u64 nr; + __u64 args[6]; + __u64 ret; + union { + __u64 flags; + }; + } hypercall; + struct { + __u64 rip; + __u32 is_write; + __u32 pad; + } tpr_access; + struct { + __u8 icptcode; + __u16 ipa; + __u32 ipb; + } s390_sieic; + __u64 s390_reset_flags; + struct { + __u64 trans_exc_code; + __u32 pgm_code; + } s390_ucontrol; + struct { + __u32 dcrn; + __u32 data; + __u8 is_write; + } dcr; + struct { + __u32 suberror; + __u32 ndata; + __u64 data[16]; + } internal; + struct { + __u32 suberror; + __u32 ndata; + __u64 flags; + union { + struct { + __u8 insn_size; + __u8 insn_bytes[15]; + }; + }; + } emulation_failure; + struct { + __u64 gprs[32]; + } osi; + struct { + __u64 nr; + __u64 ret; + __u64 args[9]; + } papr_hcall; + struct { + __u16 subchannel_id; + __u16 subchannel_nr; + __u32 io_int_parm; + __u32 io_int_word; + __u32 ipb; + __u8 dequeued; + } s390_tsch; + struct { + __u32 epr; + } epr; + struct { + __u32 type; + __u32 ndata; + union { + __u64 data[16]; + }; + } system_event; + struct { + __u64 addr; + __u8 ar; + __u8 reserved; + __u8 fc; + __u8 sel1; + __u16 sel2; + } s390_stsi; + struct { + __u8 vector; + } eoi; + struct kvm_hyperv_exit hyperv; + struct { + __u64 esr_iss; + __u64 fault_ipa; + } arm_nisv; + struct { + __u8 error; + __u8 pad[7]; + __u32 reason; + __u32 index; + __u64 data; + } msr; + struct kvm_xen_exit xen; + struct { + long unsigned int extension_id; + long unsigned int function_id; + long unsigned int args[6]; + long unsigned int ret[2]; + } riscv_sbi; + struct { + long unsigned int csr_num; + long unsigned int new_value; + long unsigned int write_mask; + long unsigned int ret_value; + } riscv_csr; + struct { + __u32 flags; + } notify; + struct { + __u64 flags; + __u64 gpa; + __u64 size; + } memory_fault; + struct { + __u64 flags; + __u64 nr; + union { + struct { + __u64 ret; + __u64 data[5]; + } unknown; + struct { + __u64 ret; + __u64 gpa; + __u64 size; + } get_quote; + struct { + __u64 ret; + __u64 leaf; + __u64 r11; + __u64 r12; + __u64 r13; + __u64 r14; + } get_tdvmcall_info; + struct { + __u64 ret; + __u64 vector; + } setup_event_notify; + }; + } tdx; + char padding[256]; + }; + __u64 kvm_valid_regs; + __u64 kvm_dirty_regs; + union { + struct kvm_sync_regs regs; + char padding[2048]; + } s; +}; + +struct kvm_coalesced_mmio { + __u64 phys_addr; + __u32 len; + union { + __u32 pad; + __u32 pio; + }; + __u8 data[8]; +}; + +struct kvm_coalesced_mmio_ring { + __u32 first; + __u32 last; + struct kvm_coalesced_mmio coalesced_mmio[0]; +}; + +struct kvm_enc_region { + __u64 addr; + __u64 size; +}; + +struct kvm_dirty_gfn { + __u32 flags; + __u32 slot; + __u64 offset; +}; + +struct kvm_stats_desc { + __u32 flags; + __s16 exponent; + __u16 size; + __u32 offset; + __u32 bucket_size; + char name[0]; +}; + +typedef long unsigned int gva_t; + +typedef u64 gpa_t; + +typedef u64 gfn_t; + +typedef u64 hpa_t; + +typedef u64 hfn_t; + +typedef hfn_t kvm_pfn_t; + +struct kvm_memory_slot; + +struct gfn_to_hva_cache { + u64 generation; + gpa_t gpa; + long unsigned int hva; + long unsigned int len; + struct kvm_memory_slot *memslot; +}; + +struct kvm_rmap_head; + +struct kvm_lpage_info; + +struct kvm_arch_memory_slot { + struct kvm_rmap_head *rmap[3]; + struct kvm_lpage_info *lpage_info[2]; + short unsigned int *gfn_write_track; +}; + +struct kvm_memory_slot { + struct hlist_node id_node[2]; + struct interval_tree_node hva_node[2]; + struct rb_node gfn_node[2]; + gfn_t base_gfn; + long unsigned int npages; + long unsigned int *dirty_bitmap; + struct kvm_arch_memory_slot arch; + long unsigned int userspace_addr; + u32 flags; + short int id; + u16 as_id; + struct { + struct file *file; + long unsigned int pgoff; + } gmem; +}; + +struct kvm; + +struct gfn_to_pfn_cache { + u64 generation; + gpa_t gpa; + long unsigned int uhva; + struct kvm_memory_slot *memslot; + struct kvm *kvm; + struct list_head list; + rwlock_t lock; + struct mutex refresh_lock; + void *khva; + kvm_pfn_t pfn; + bool active; + bool valid; +}; + +struct kvm_memslots { + u64 generation; + atomic_long_t last_used_slot; + struct rb_root_cached hva_tree; + struct rb_root gfn_tree; + struct hlist_head id_hash[128]; + int node_idx; +}; + +struct kvm_vm_stat_generic { + u64 remote_tlb_flush; + u64 remote_tlb_flush_requests; +}; + +struct kvm_vm_stat { + struct kvm_vm_stat_generic generic; + u64 mmu_shadow_zapped; + u64 mmu_pte_write; + u64 mmu_pde_zapped; + u64 mmu_flooded; + u64 mmu_recycled; + u64 mmu_cache_miss; + u64 mmu_unsync; + union { + struct { + atomic64_t pages_4k; + atomic64_t pages_2m; + atomic64_t pages_1g; + }; + atomic64_t pages[3]; + }; + u64 nx_lpage_splits; + u64 max_mmu_page_hash_collisions; + u64 max_mmu_rmap_size; +}; + +struct kvm_page_track_notifier_head { + struct srcu_struct track_srcu; + struct hlist_head track_notifier_list; +}; + +struct kvm_pic; + +struct kvm_ioapic; + +struct kvm_pit; + +enum hv_tsc_page_status { + HV_TSC_PAGE_UNSET = 0, + HV_TSC_PAGE_GUEST_CHANGED = 1, + HV_TSC_PAGE_HOST_CHANGED = 2, + HV_TSC_PAGE_SET = 3, + HV_TSC_PAGE_BROKEN = 4, +}; + +struct ms_hyperv_tsc_page { + volatile u32 tsc_sequence; + u32 reserved1; + volatile u64 tsc_scale; + volatile s64 tsc_offset; +}; + +struct kvm_hv_syndbg { + struct { + u64 control; + u64 status; + u64 send_page; + u64 recv_page; + u64 pending_page; + } control; + u64 options; +}; + +struct kvm_hv { + struct mutex hv_lock; + u64 hv_guest_os_id; + u64 hv_hypercall; + u64 hv_tsc_page; + enum hv_tsc_page_status hv_tsc_page_status; + u64 hv_crash_param[5]; + u64 hv_crash_ctl; + struct ms_hyperv_tsc_page tsc_ref; + struct idr conn_to_evt; + u64 hv_reenlightenment_control; + u64 hv_tsc_emulation_control; + u64 hv_tsc_emulation_status; + u64 hv_invtsc_control; + atomic_t num_mismatched_vp_indexes; + unsigned int synic_auto_eoi_used; + struct kvm_hv_syndbg hv_syndbg; + bool xsaves_xsavec_checked; +}; + +struct kvm_xen { + struct mutex xen_lock; + u32 xen_version; + bool long_mode; + bool runstate_update_flag; + u8 upcall_vector; + struct gfn_to_pfn_cache shinfo_cache; + struct idr evtchn_ports; + long unsigned int poll_mask[64]; + struct kvm_xen_hvm_config hvm_config; +}; + +enum kvm_irqchip_mode { + KVM_IRQCHIP_NONE = 0, + KVM_IRQCHIP_KERNEL = 1, + KVM_IRQCHIP_SPLIT = 2, +}; + +struct once { + atomic_t state; + struct mutex lock; +}; + +struct kvm_mmu_memory_cache { + gfp_t gfp_zero; + gfp_t gfp_custom; + u64 init_value; + struct kmem_cache *kmem_cache; + int capacity; + int nobjs; + void **objects; +}; + +struct kvm_apic_map; + +struct kvm_x86_msr_filter; + +struct kvm_x86_pmu_event_filter; + +struct vhost_task; + +struct hv_partition_assist_pg; + +struct kvm_arch { + long unsigned int n_used_mmu_pages; + long unsigned int n_requested_mmu_pages; + long unsigned int n_max_mmu_pages; + unsigned int indirect_shadow_pages; + u8 mmu_valid_gen; + u8 vm_type; + bool has_private_mem; + bool has_protected_state; + bool pre_fault_allowed; + struct hlist_head *mmu_page_hash; + struct list_head active_mmu_pages; + struct list_head possible_nx_huge_pages; + struct kvm_page_track_notifier_head track_notifier_head; + spinlock_t mmu_unsync_pages_lock; + u64 shadow_mmio_value; + atomic_t noncoherent_dma_count; + long unsigned int nr_possible_bypass_irqs; + struct kvm_pic *vpic; + struct kvm_ioapic *vioapic; + struct kvm_pit *vpit; + atomic_t vapics_in_nmi_mode; + struct mutex apic_map_lock; + struct kvm_apic_map *apic_map; + atomic_t apic_map_dirty; + bool apic_access_memslot_enabled; + bool apic_access_memslot_inhibited; + struct rw_semaphore apicv_update_lock; + long unsigned int apicv_inhibit_reasons; + gpa_t wall_clock; + u64 disabled_exits; + s64 kvmclock_offset; + raw_spinlock_t tsc_write_lock; + u64 last_tsc_nsec; + u64 last_tsc_write; + u32 last_tsc_khz; + u64 last_tsc_offset; + u64 cur_tsc_nsec; + u64 cur_tsc_write; + u64 cur_tsc_offset; + u64 cur_tsc_generation; + int nr_vcpus_matched_tsc; + u32 default_tsc_khz; + bool user_set_tsc; + u64 apic_bus_cycle_ns; + seqcount_raw_spinlock_t pvclock_sc; + bool use_master_clock; + u64 master_kernel_ns; + u64 master_cycle_now; + struct delayed_work kvmclock_update_work; + struct delayed_work kvmclock_sync_work; + struct kvm_hv hyperv; + struct kvm_xen xen; + bool backwards_tsc_observed; + bool boot_vcpu_runs_old_kvmclock; + u32 bsp_vcpu_id; + u64 disabled_quirks; + enum kvm_irqchip_mode irqchip_mode; + u8 nr_reserved_ioapic_pins; + bool disabled_lapic_found; + bool x2apic_format; + bool x2apic_broadcast_quirk_disabled; + bool has_mapped_host_mmio; + bool guest_can_read_msr_platform_info; + bool exception_payload_enabled; + bool triple_fault_event; + bool bus_lock_detection_enabled; + bool enable_pmu; + u32 notify_window; + u32 notify_vmexit_flags; + bool exit_on_emulation_error; + u32 user_space_msr_mask; + struct kvm_x86_msr_filter *msr_filter; + u32 hypercall_exit_enabled; + bool sgx_provisioning_allowed; + struct kvm_x86_pmu_event_filter *pmu_event_filter; + struct vhost_task *nx_huge_page_recovery_thread; + u64 nx_huge_page_last; + struct once nx_once; + struct list_head tdp_mmu_roots; + spinlock_t tdp_mmu_pages_lock; + bool shadow_root_allocated; + bool external_write_tracking_enabled; + hpa_t hv_root_tdp; + spinlock_t hv_root_tdp_lock; + struct hv_partition_assist_pg *hv_pa_pg; + u32 max_vcpu_ids; + bool disable_nx_huge_pages; + struct kvm_mmu_memory_cache split_shadow_page_cache; + struct kvm_mmu_memory_cache split_page_header_cache; + struct kvm_mmu_memory_cache split_desc_cache; + gfn_t gfn_direct_bits; + int cpu_dirty_log_size; +}; + +struct kvm_io_bus; + +struct kvm_irq_routing_table; + +struct kvm_stat_data; + +struct kvm { + rwlock_t mmu_lock; + struct mutex slots_lock; + struct mutex slots_arch_lock; + struct mm_struct *mm; + long unsigned int nr_memslot_pages; + struct kvm_memslots __memslots[4]; + struct kvm_memslots *memslots[2]; + struct xarray vcpu_array; + atomic_t nr_memslots_dirty_logging; + spinlock_t mn_invalidate_lock; + long unsigned int mn_active_invalidate_count; + struct rcuwait mn_memslots_update_rcuwait; + spinlock_t gpc_lock; + struct list_head gpc_list; + atomic_t online_vcpus; + int max_vcpus; + int created_vcpus; + int last_boosted_vcpu; + struct list_head vm_list; + struct mutex lock; + struct kvm_io_bus *buses[5]; + struct { + spinlock_t lock; + struct list_head items; + struct list_head resampler_list; + struct mutex resampler_lock; + } irqfds; + struct list_head ioeventfds; + struct kvm_vm_stat stat; + struct kvm_arch arch; + refcount_t users_count; + struct kvm_coalesced_mmio_ring *coalesced_mmio_ring; + spinlock_t ring_lock; + struct list_head coalesced_zones; + struct mutex irq_lock; + struct kvm_irq_routing_table *irq_routing; + struct hlist_head irq_ack_notifier_list; + struct mmu_notifier mmu_notifier; + long unsigned int mmu_invalidate_seq; + long int mmu_invalidate_in_progress; + gfn_t mmu_invalidate_range_start; + gfn_t mmu_invalidate_range_end; + struct list_head devices; + u64 manual_dirty_log_protect; + struct dentry *debugfs_dentry; + struct kvm_stat_data **debugfs_stat_data; + struct srcu_struct srcu; + struct srcu_struct irq_srcu; + pid_t userspace_pid; + bool override_halt_poll_ns; + unsigned int max_halt_poll_ns; + u32 dirty_ring_size; + bool dirty_ring_with_bitmap; + bool vm_bugged; + bool vm_dead; + struct notifier_block pm_notifier; + struct xarray mem_attr_array; + char stats_id[48]; +}; + +struct kvm_vcpu_stat_generic { + u64 halt_successful_poll; + u64 halt_attempted_poll; + u64 halt_poll_invalid; + u64 halt_wakeup; + u64 halt_poll_success_ns; + u64 halt_poll_fail_ns; + u64 halt_wait_ns; + u64 halt_poll_success_hist[32]; + u64 halt_poll_fail_hist[32]; + u64 halt_wait_hist[32]; + u64 blocking; +}; + +union cpuid35_eax { + struct { + unsigned int leaf0: 1; + unsigned int cntr_subleaf: 1; + unsigned int acr_subleaf: 1; + unsigned int events_subleaf: 1; + unsigned int reserved: 28; + } split; + unsigned int full; +}; + +union cpuid35_ebx { + struct { + unsigned int umask2: 1; + unsigned int eq: 1; + unsigned int reserved: 30; + } split; + unsigned int full; +}; + +struct perf_pmu_format_hybrid_attr { + struct device_attribute attr; + u64 pmu_type; +}; + +union hv_stimer_config { + u64 as_uint64; + struct { + u64 enable: 1; + u64 periodic: 1; + u64 lazy: 1; + u64 auto_enable: 1; + u64 apic_vector: 8; + u64 direct_mode: 1; + u64 reserved_z0: 3; + u64 sintx: 4; + u64 reserved_z1: 44; + }; +}; + +union hv_port_id { + u32 asu32; + struct { + u32 id: 24; + u32 reserved: 8; + } u; +}; + +union hv_message_flags { + u8 asu8; + struct { + u8 msg_pending: 1; + u8 reserved: 7; + }; +}; + +struct hv_message_header { + u32 message_type; + u8 payload_size; + union hv_message_flags message_flags; + u8 reserved[2]; + union { + u64 sender; + union hv_port_id port; + }; +}; + +struct hv_message { + struct hv_message_header header; + union { + u64 payload[30]; + } u; +}; + +struct hv_partition_assist_pg { + u32 tlb_lock_count; +}; + +enum kvm_reg { + VCPU_REGS_RAX = 0, + VCPU_REGS_RCX = 1, + VCPU_REGS_RDX = 2, + VCPU_REGS_RBX = 3, + VCPU_REGS_RSP = 4, + VCPU_REGS_RBP = 5, + VCPU_REGS_RSI = 6, + VCPU_REGS_RDI = 7, + VCPU_REGS_R8 = 8, + VCPU_REGS_R9 = 9, + VCPU_REGS_R10 = 10, + VCPU_REGS_R11 = 11, + VCPU_REGS_R12 = 12, + VCPU_REGS_R13 = 13, + VCPU_REGS_R14 = 14, + VCPU_REGS_R15 = 15, + VCPU_REGS_RIP = 16, + NR_VCPU_REGS = 17, + VCPU_EXREG_PDPTR = 17, + VCPU_EXREG_CR0 = 18, + VCPU_EXREG_CR3 = 19, + VCPU_EXREG_CR4 = 20, + VCPU_EXREG_RFLAGS = 21, + VCPU_EXREG_SEGMENTS = 22, + VCPU_EXREG_EXIT_INFO_1 = 23, + VCPU_EXREG_EXIT_INFO_2 = 24, +}; + +enum exit_fastpath_completion { + EXIT_FASTPATH_NONE = 0, + EXIT_FASTPATH_REENTER_GUEST = 1, + EXIT_FASTPATH_EXIT_HANDLED = 2, + EXIT_FASTPATH_EXIT_USERSPACE = 3, +}; + +union kvm_mmu_page_role { + u32 word; + struct { + unsigned int level: 4; + unsigned int has_4_byte_gpte: 1; + unsigned int quadrant: 2; + unsigned int direct: 1; + unsigned int access: 3; + unsigned int invalid: 1; + unsigned int efer_nx: 1; + unsigned int cr0_wp: 1; + unsigned int smep_andnot_wp: 1; + unsigned int smap_andnot_wp: 1; + unsigned int ad_disabled: 1; + unsigned int guest_mode: 1; + unsigned int passthrough: 1; + unsigned int is_mirror: 1; + char: 4; + unsigned int smm: 8; + }; +}; + +union kvm_mmu_extended_role { + u32 word; + struct { + unsigned int valid: 1; + unsigned int execonly: 1; + unsigned int cr4_pse: 1; + unsigned int cr4_pke: 1; + unsigned int cr4_smap: 1; + unsigned int cr4_smep: 1; + unsigned int cr4_la57: 1; + unsigned int efer_lma: 1; + }; +}; + +union kvm_cpu_role { + u64 as_u64; + struct { + union kvm_mmu_page_role base; + union kvm_mmu_extended_role ext; + }; +}; + +struct kvm_rmap_head { + atomic_long_t val; +}; + +struct kvm_pio_request { + long unsigned int count; + int in; + int port; + int size; +}; + +struct rsvd_bits_validate { + u64 rsvd_bits_mask[10]; + u64 bad_mt_xwr; +}; + +struct kvm_mmu_root_info { + gpa_t pgd; + hpa_t hpa; +}; + +struct kvm_page_fault; + +struct x86_exception; + +struct kvm_mmu_page; + +struct kvm_vcpu; + +struct kvm_mmu { + long unsigned int (*get_guest_pgd)(struct kvm_vcpu *); + u64 (*get_pdptr)(struct kvm_vcpu *, int); + int (*page_fault)(struct kvm_vcpu *, struct kvm_page_fault *); + void (*inject_page_fault)(struct kvm_vcpu *, struct x86_exception *); + gpa_t (*gva_to_gpa)(struct kvm_vcpu *, struct kvm_mmu *, gpa_t, u64, struct x86_exception *); + int (*sync_spte)(struct kvm_vcpu *, struct kvm_mmu_page *, int); + struct kvm_mmu_root_info root; + hpa_t mirror_root_hpa; + union kvm_cpu_role cpu_role; + union kvm_mmu_page_role root_role; + u32 pkru_mask; + struct kvm_mmu_root_info prev_roots[3]; + u8 permissions[16]; + u64 *pae_root; + u64 *pml4_root; + u64 *pml5_root; + struct rsvd_bits_validate shadow_zero_check; + struct rsvd_bits_validate guest_rsvd_check; + u64 pdptrs[4]; +}; + +struct kvm_mmio_fragment { + gpa_t gpa; + void *data; + unsigned int len; +}; + +struct kvm_lapic; + +struct kvm_queued_exception { + bool pending; + bool injected; + bool has_error_code; + u8 vector; + u32 error_code; + long unsigned int payload; + bool has_payload; +}; + +struct kvm_queued_interrupt { + bool injected; + bool soft; + u8 nr; +}; + +struct x86_emulate_ctxt; + +struct kvm_mtrr { + u64 var[16]; + u64 fixed_64k; + u64 fixed_16k[2]; + u64 fixed_4k[8]; + u64 deftype; +}; + +enum pmc_type { + KVM_PMC_GP = 0, + KVM_PMC_FIXED = 1, +}; + +struct kvm_pmc { + enum pmc_type type; + u8 idx; + bool is_paused; + bool intr; + u64 counter; + u64 emulated_counter; + u64 eventsel; + struct perf_event *perf_event; + struct kvm_vcpu *vcpu; + u64 current_config; +}; + +struct kvm_pmu { + u8 version; + unsigned int nr_arch_gp_counters; + unsigned int nr_arch_fixed_counters; + unsigned int available_event_types; + u64 fixed_ctr_ctrl; + u64 fixed_ctr_ctrl_rsvd; + u64 global_ctrl; + u64 global_status; + u64 counter_bitmask[2]; + u64 global_ctrl_rsvd; + u64 global_status_rsvd; + u64 reserved_bits; + u64 raw_event_mask; + struct kvm_pmc gp_counters[8]; + struct kvm_pmc fixed_counters[3]; + union { + long unsigned int reprogram_pmi[1]; + atomic64_t __reprogram_pmi; + }; + long unsigned int all_valid_pmc_idx[1]; + long unsigned int pmc_in_use[1]; + u64 ds_area; + u64 pebs_enable; + u64 pebs_enable_rsvd; + u64 pebs_data_cfg; + u64 pebs_data_cfg_rsvd; + u64 host_cross_mapped_mask; + bool need_cleanup; + u8 event_count; +}; + +struct kvm_hypervisor_cpuid { + u32 base; + u32 limit; +}; + +struct kvm_vcpu_xen { + u64 hypercall_rip; + u32 current_runstate; + u8 upcall_vector; + struct gfn_to_pfn_cache vcpu_info_cache; + struct gfn_to_pfn_cache vcpu_time_info_cache; + struct gfn_to_pfn_cache runstate_cache; + struct gfn_to_pfn_cache runstate2_cache; + u64 last_steal; + u64 runstate_entry_time; + u64 runstate_times[4]; + long unsigned int evtchn_pending_sel; + u32 vcpu_id; + u32 timer_virq; + u64 timer_expires; + atomic_t timer_pending; + struct hrtimer timer; + int poll_evtchn; + struct timer_list poll_timer; + struct kvm_hypervisor_cpuid cpuid; +}; + +struct kvm_vcpu_hv; + +struct kvm_vcpu_arch { + long unsigned int regs[17]; + u32 regs_avail; + u32 regs_dirty; + long unsigned int cr0; + long unsigned int cr0_guest_owned_bits; + long unsigned int cr2; + long unsigned int cr3; + long unsigned int cr4; + long unsigned int cr4_guest_owned_bits; + long unsigned int cr4_guest_rsvd_bits; + long unsigned int cr8; + u32 host_pkru; + u32 pkru; + u32 hflags; + u64 efer; + u64 host_debugctl; + u64 apic_base; + struct kvm_lapic *apic; + bool load_eoi_exitmap_pending; + long unsigned int ioapic_handled_vectors[4]; + long unsigned int apic_attention; + int32_t apic_arb_prio; + int mp_state; + u64 ia32_misc_enable_msr; + u64 smbase; + u64 smi_count; + bool at_instruction_boundary; + bool tpr_access_reporting; + bool xfd_no_write_intercept; + u64 ia32_xss; + u64 microcode_version; + u64 arch_capabilities; + u64 perf_capabilities; + struct kvm_mmu *mmu; + struct kvm_mmu root_mmu; + struct kvm_mmu guest_mmu; + struct kvm_mmu nested_mmu; + struct kvm_mmu *walk_mmu; + struct kvm_mmu_memory_cache mmu_pte_list_desc_cache; + struct kvm_mmu_memory_cache mmu_shadow_page_cache; + struct kvm_mmu_memory_cache mmu_shadowed_info_cache; + struct kvm_mmu_memory_cache mmu_page_header_cache; + struct kvm_mmu_memory_cache mmu_external_spt_cache; + struct fpu_guest guest_fpu; + u64 xcr0; + u64 guest_supported_xcr0; + struct kvm_pio_request pio; + void *pio_data; + void *sev_pio_data; + unsigned int sev_pio_count; + u8 event_exit_inst_len; + bool exception_from_userspace; + struct kvm_queued_exception exception; + struct kvm_queued_exception exception_vmexit; + struct kvm_queued_interrupt interrupt; + int halt_request; + int cpuid_nent; + struct kvm_cpuid_entry2 *cpuid_entries; + bool cpuid_dynamic_bits_dirty; + bool is_amd_compatible; + u32 cpu_caps[29]; + u64 reserved_gpa_bits; + int maxphyaddr; + struct x86_emulate_ctxt *emulate_ctxt; + bool emulate_regs_need_sync_to_vcpu; + bool emulate_regs_need_sync_from_vcpu; + int (*complete_userspace_io)(struct kvm_vcpu *); + long unsigned int cui_linear_rip; + int cui_rdmsr_imm_reg; + gpa_t time; + s8 pvclock_tsc_shift; + u32 pvclock_tsc_mul; + unsigned int hw_tsc_khz; + struct gfn_to_pfn_cache pv_time; + bool pvclock_set_guest_stopped_request; + struct { + u8 preempted; + u64 msr_val; + u64 last_steal; + struct gfn_to_hva_cache cache; + } st; + u64 l1_tsc_offset; + u64 tsc_offset; + u64 last_guest_tsc; + u64 last_host_tsc; + u64 tsc_offset_adjustment; + u64 this_tsc_nsec; + u64 this_tsc_write; + u64 this_tsc_generation; + bool tsc_catchup; + bool tsc_always_catchup; + s8 virtual_tsc_shift; + u32 virtual_tsc_mult; + u32 virtual_tsc_khz; + s64 ia32_tsc_adjust_msr; + u64 msr_ia32_power_ctl; + u64 l1_tsc_scaling_ratio; + u64 tsc_scaling_ratio; + atomic_t nmi_queued; + unsigned int nmi_pending; + bool nmi_injected; + bool smi_pending; + u8 handling_intr_from_guest; + struct kvm_mtrr mtrr_state; + u64 pat; + unsigned int switch_db_regs; + long unsigned int db[4]; + long unsigned int dr6; + long unsigned int dr7; + long unsigned int eff_db[4]; + long unsigned int guest_debug_dr7; + u64 msr_platform_info; + u64 msr_misc_features_enables; + u64 mcg_cap; + u64 mcg_status; + u64 mcg_ctl; + u64 mcg_ext_ctl; + u64 *mce_banks; + u64 *mci_ctl2_banks; + u64 mmio_gva; + unsigned int mmio_access; + gfn_t mmio_gfn; + u64 mmio_gen; + struct kvm_pmu pmu; + long unsigned int singlestep_rip; + bool hyperv_enabled; + struct kvm_vcpu_hv *hyperv; + struct kvm_vcpu_xen xen; + cpumask_var_t wbinvd_dirty_mask; + long unsigned int last_retry_eip; + long unsigned int last_retry_addr; + struct { + bool halted; + gfn_t gfns[64]; + struct gfn_to_hva_cache data; + u64 msr_en_val; + u64 msr_int_val; + u16 vec; + u32 id; + u32 host_apf_flags; + bool send_always; + bool delivery_as_pf_vmexit; + bool pageready_pending; + } apf; + struct { + u64 length; + u64 status; + } osvw; + struct { + u64 msr_val; + struct gfn_to_hva_cache data; + } pv_eoi; + u64 msr_kvm_poll_control; + struct { + bool pv_unhalted; + } pv; + int pending_ioapic_eoi; + int pending_external_vector; + int highest_stale_pending_ioapic_eoi; + bool preempted_in_kernel; + bool l1tf_flush_l1d; + int last_vmentry_cpu; + u64 msr_hwcr; + struct { + u32 features; + bool enforce; + } pv_cpuid; + bool guest_state_protected; + bool guest_tsc_protected; + bool pdptrs_from_userspace; + hpa_t hv_root_tdp; +}; + +struct kvm_vcpu_stat { + struct kvm_vcpu_stat_generic generic; + u64 pf_taken; + u64 pf_fixed; + u64 pf_emulate; + u64 pf_spurious; + u64 pf_fast; + u64 pf_mmio_spte_created; + u64 pf_guest; + u64 tlb_flush; + u64 invlpg; + u64 exits; + u64 io_exits; + u64 mmio_exits; + u64 signal_exits; + u64 irq_window_exits; + u64 nmi_window_exits; + u64 l1d_flush; + u64 halt_exits; + u64 request_irq_exits; + u64 irq_exits; + u64 host_state_reload; + u64 fpu_reload; + u64 insn_emulation; + u64 insn_emulation_fail; + u64 hypercalls; + u64 irq_injections; + u64 nmi_injections; + u64 req_event; + u64 nested_run; + u64 directed_yield_attempted; + u64 directed_yield_successful; + u64 preemption_reported; + u64 preemption_other; + u64 guest_mode; + u64 notify_window_exits; +}; + +struct kvm_dirty_ring { + u32 dirty_index; + u32 reset_index; + u32 size; + u32 soft_limit; + struct kvm_dirty_gfn *dirty_gfns; + int index; +}; + +struct kvm_vcpu { + struct kvm *kvm; + struct preempt_notifier preempt_notifier; + int cpu; + int vcpu_id; + int vcpu_idx; + int ____srcu_idx; + int mode; + u64 requests; + long unsigned int guest_debug; + struct mutex mutex; + struct kvm_run *run; + struct rcuwait wait; + struct pid *pid; + rwlock_t pid_lock; + int sigset_active; + sigset_t sigset; + unsigned int halt_poll_ns; + bool valid_wakeup; + int mmio_needed; + int mmio_read_completed; + int mmio_is_write; + int mmio_cur_fragment; + int mmio_nr_fragments; + struct kvm_mmio_fragment mmio_fragments[2]; + struct { + u32 queued; + struct list_head queue; + struct list_head done; + spinlock_t lock; + } async_pf; + struct { + bool in_spin_loop; + bool dy_eligible; + } spin_loop; + bool wants_to_run; + bool preempted; + bool ready; + bool scheduled_out; + struct kvm_vcpu_arch arch; + struct kvm_vcpu_stat stat; + char stats_id[48]; + struct kvm_dirty_ring dirty_ring; + struct kvm_memory_slot *last_used_slot; + u64 last_used_slot_gen; +}; + +struct kvm_vcpu_hv_stimer { + struct hrtimer timer; + int index; + union hv_stimer_config config; + u64 count; + u64 exp_time; + struct hv_message msg; + bool msg_pending; +}; + +struct kvm_vcpu_hv_synic { + u64 version; + u64 control; + u64 msg_page; + u64 evt_page; + atomic64_t sint[16]; + atomic_t sint_to_gsi[16]; + long unsigned int auto_eoi_bitmap[4]; + long unsigned int vec_bitmap[4]; + bool active; + bool dont_zero_synic_pages; +}; + +enum hv_tlb_flush_fifos { + HV_L1_TLB_FLUSH_FIFO = 0, + HV_L2_TLB_FLUSH_FIFO = 1, + HV_NR_TLB_FLUSH_FIFOS = 2, +}; + +struct kvm_vcpu_hv_tlb_flush_fifo { + spinlock_t write_lock; + struct { + union { + struct __kfifo kfifo; + u64 *type; + const u64 *const_type; + char (*rectype)[0]; + u64 *ptr; + const u64 *ptr_const; + }; + u64 buf[16]; + } entries; +}; + +struct kvm_vcpu_hv { + struct kvm_vcpu *vcpu; + u32 vp_index; + u64 hv_vapic; + s64 runtime_offset; + struct kvm_vcpu_hv_synic synic; + struct kvm_hyperv_exit exit; + struct kvm_vcpu_hv_stimer stimer[4]; + long unsigned int stimer_pending_bitmap[1]; + bool enforce_cpuid; + struct { + u32 features_eax; + u32 features_ebx; + u32 features_edx; + u32 enlightenments_eax; + u32 enlightenments_ebx; + u32 syndbg_cap_eax; + u32 nested_eax; + u32 nested_ebx; + } cpuid_cache; + struct kvm_vcpu_hv_tlb_flush_fifo tlb_flush_fifo[2]; + u64 sparse_banks[64]; + long unsigned int vcpu_mask[64]; + struct hv_vp_assist_page vp_assist_page; + struct { + u64 pa_page_gpa; + u64 vm_id; + u32 vp_id; + } nested; +}; + +enum kvm_only_cpuid_leafs { + CPUID_12_EAX = 22, + CPUID_7_1_EDX = 23, + CPUID_8000_0007_EDX = 24, + CPUID_8000_0022_EAX = 25, + CPUID_7_2_EDX = 26, + CPUID_24_0_EBX = 27, + CPUID_8000_0021_ECX = 28, + NR_KVM_CPU_CAPS = 29, + NKVMCAPINTS = 7, +}; + +struct kvm_lpage_info { + int disallow_lpage; +}; + +enum kvm_apic_logical_mode { + KVM_APIC_MODE_SW_DISABLED = 0, + KVM_APIC_MODE_XAPIC_CLUSTER = 1, + KVM_APIC_MODE_XAPIC_FLAT = 2, + KVM_APIC_MODE_X2APIC = 3, + KVM_APIC_MODE_MAP_DISABLED = 4, +}; + +struct kvm_apic_map { + struct callback_head rcu; + enum kvm_apic_logical_mode logical_mode; + u32 max_apic_id; + union { + struct kvm_lapic *xapic_flat_map[8]; + struct kvm_lapic *xapic_cluster_map[64]; + }; + struct kvm_lapic *phys_map[0]; +}; + +struct msr_bitmap_range { + u32 flags; + u32 nmsrs; + u32 base; + long unsigned int *bitmap; +}; + +struct kvm_x86_msr_filter { + u8 count; + bool default_allow: 1; + struct msr_bitmap_range ranges[16]; +}; + +struct kvm_x86_pmu_event_filter { + __u32 action; + __u32 nevents; + __u32 fixed_counter_bitmap; + __u32 flags; + __u32 nr_includes; + __u32 nr_excludes; + __u64 *includes; + __u64 *excludes; + __u64 events[0]; +}; + +struct msr_data { + bool host_initiated; + u32 index; + u64 data; +}; + +struct x86_instruction_info; + +enum x86_intercept_stage; + +struct kvm_kernel_irqfd; + +union kvm_smram; + +struct kvm_x86_nested_ops; + +struct kvm_x86_ops { + const char *name; + int (*check_processor_compatibility)(void); + int (*enable_virtualization_cpu)(void); + void (*disable_virtualization_cpu)(void); + cpu_emergency_virt_cb *emergency_disable_virtualization_cpu; + void (*hardware_unsetup)(void); + bool (*has_emulated_msr)(struct kvm *, u32); + void (*vcpu_after_set_cpuid)(struct kvm_vcpu *); + unsigned int vm_size; + int (*vm_init)(struct kvm *); + void (*vm_destroy)(struct kvm *); + void (*vm_pre_destroy)(struct kvm *); + int (*vcpu_precreate)(struct kvm *); + int (*vcpu_create)(struct kvm_vcpu *); + void (*vcpu_free)(struct kvm_vcpu *); + void (*vcpu_reset)(struct kvm_vcpu *, bool); + void (*prepare_switch_to_guest)(struct kvm_vcpu *); + void (*vcpu_load)(struct kvm_vcpu *, int); + void (*vcpu_put)(struct kvm_vcpu *); + const u64 HOST_OWNED_DEBUGCTL; + void (*update_exception_bitmap)(struct kvm_vcpu *); + int (*get_msr)(struct kvm_vcpu *, struct msr_data *); + int (*set_msr)(struct kvm_vcpu *, struct msr_data *); + u64 (*get_segment_base)(struct kvm_vcpu *, int); + void (*get_segment)(struct kvm_vcpu *, struct kvm_segment *, int); + int (*get_cpl)(struct kvm_vcpu *); + int (*get_cpl_no_cache)(struct kvm_vcpu *); + void (*set_segment)(struct kvm_vcpu *, struct kvm_segment *, int); + void (*get_cs_db_l_bits)(struct kvm_vcpu *, int *, int *); + bool (*is_valid_cr0)(struct kvm_vcpu *, long unsigned int); + void (*set_cr0)(struct kvm_vcpu *, long unsigned int); + void (*post_set_cr3)(struct kvm_vcpu *, long unsigned int); + bool (*is_valid_cr4)(struct kvm_vcpu *, long unsigned int); + void (*set_cr4)(struct kvm_vcpu *, long unsigned int); + int (*set_efer)(struct kvm_vcpu *, u64); + void (*get_idt)(struct kvm_vcpu *, struct desc_ptr *); + void (*set_idt)(struct kvm_vcpu *, struct desc_ptr *); + void (*get_gdt)(struct kvm_vcpu *, struct desc_ptr *); + void (*set_gdt)(struct kvm_vcpu *, struct desc_ptr *); + void (*sync_dirty_debug_regs)(struct kvm_vcpu *); + void (*set_dr7)(struct kvm_vcpu *, long unsigned int); + void (*cache_reg)(struct kvm_vcpu *, enum kvm_reg); + long unsigned int (*get_rflags)(struct kvm_vcpu *); + void (*set_rflags)(struct kvm_vcpu *, long unsigned int); + bool (*get_if_flag)(struct kvm_vcpu *); + void (*flush_tlb_all)(struct kvm_vcpu *); + void (*flush_tlb_current)(struct kvm_vcpu *); + int (*flush_remote_tlbs)(struct kvm *); + int (*flush_remote_tlbs_range)(struct kvm *, gfn_t, gfn_t); + void (*flush_tlb_gva)(struct kvm_vcpu *, gva_t); + void (*flush_tlb_guest)(struct kvm_vcpu *); + int (*vcpu_pre_run)(struct kvm_vcpu *); + enum exit_fastpath_completion (*vcpu_run)(struct kvm_vcpu *, u64); + int (*handle_exit)(struct kvm_vcpu *, enum exit_fastpath_completion); + int (*skip_emulated_instruction)(struct kvm_vcpu *); + void (*update_emulated_instruction)(struct kvm_vcpu *); + void (*set_interrupt_shadow)(struct kvm_vcpu *, int); + u32 (*get_interrupt_shadow)(struct kvm_vcpu *); + void (*patch_hypercall)(struct kvm_vcpu *, unsigned char *); + void (*inject_irq)(struct kvm_vcpu *, bool); + void (*inject_nmi)(struct kvm_vcpu *); + void (*inject_exception)(struct kvm_vcpu *); + void (*cancel_injection)(struct kvm_vcpu *); + int (*interrupt_allowed)(struct kvm_vcpu *, bool); + int (*nmi_allowed)(struct kvm_vcpu *, bool); + bool (*get_nmi_mask)(struct kvm_vcpu *); + void (*set_nmi_mask)(struct kvm_vcpu *, bool); + bool (*is_vnmi_pending)(struct kvm_vcpu *); + bool (*set_vnmi_pending)(struct kvm_vcpu *); + void (*enable_nmi_window)(struct kvm_vcpu *); + void (*enable_irq_window)(struct kvm_vcpu *); + void (*update_cr8_intercept)(struct kvm_vcpu *, int, int); + const bool x2apic_icr_is_split; + const long unsigned int required_apicv_inhibits; + bool allow_apicv_in_x2apic_without_x2apic_virtualization; + void (*refresh_apicv_exec_ctrl)(struct kvm_vcpu *); + void (*hwapic_isr_update)(struct kvm_vcpu *, int); + void (*load_eoi_exitmap)(struct kvm_vcpu *, u64 *); + void (*set_virtual_apic_mode)(struct kvm_vcpu *); + void (*set_apic_access_page_addr)(struct kvm_vcpu *); + void (*deliver_interrupt)(struct kvm_lapic *, int, int, int); + int (*sync_pir_to_irr)(struct kvm_vcpu *); + int (*set_tss_addr)(struct kvm *, unsigned int); + int (*set_identity_map_addr)(struct kvm *, u64); + u8 (*get_mt_mask)(struct kvm_vcpu *, gfn_t, bool); + void (*load_mmu_pgd)(struct kvm_vcpu *, hpa_t, int); + int (*link_external_spt)(struct kvm *, gfn_t, enum pg_level, void *); + int (*set_external_spte)(struct kvm *, gfn_t, enum pg_level, kvm_pfn_t); + int (*free_external_spt)(struct kvm *, gfn_t, enum pg_level, void *); + int (*remove_external_spte)(struct kvm *, gfn_t, enum pg_level, kvm_pfn_t); + bool (*has_wbinvd_exit)(void); + u64 (*get_l2_tsc_offset)(struct kvm_vcpu *); + u64 (*get_l2_tsc_multiplier)(struct kvm_vcpu *); + void (*write_tsc_offset)(struct kvm_vcpu *); + void (*write_tsc_multiplier)(struct kvm_vcpu *); + void (*get_exit_info)(struct kvm_vcpu *, u32 *, u64 *, u64 *, u32 *, u32 *); + void (*get_entry_info)(struct kvm_vcpu *, u32 *, u32 *); + int (*check_intercept)(struct kvm_vcpu *, struct x86_instruction_info *, enum x86_intercept_stage, struct x86_exception *); + void (*handle_exit_irqoff)(struct kvm_vcpu *); + void (*update_cpu_dirty_logging)(struct kvm_vcpu *); + const struct kvm_x86_nested_ops *nested_ops; + void (*vcpu_blocking)(struct kvm_vcpu *); + void (*vcpu_unblocking)(struct kvm_vcpu *); + int (*pi_update_irte)(struct kvm_kernel_irqfd *, struct kvm *, unsigned int, uint32_t, struct kvm_vcpu *, u32); + void (*pi_start_bypass)(struct kvm *); + void (*apicv_pre_state_restore)(struct kvm_vcpu *); + void (*apicv_post_state_restore)(struct kvm_vcpu *); + bool (*dy_apicv_has_pending_interrupt)(struct kvm_vcpu *); + bool (*protected_apic_has_interrupt)(struct kvm_vcpu *); + int (*set_hv_timer)(struct kvm_vcpu *, u64, bool *); + void (*cancel_hv_timer)(struct kvm_vcpu *); + void (*setup_mce)(struct kvm_vcpu *); + int (*smi_allowed)(struct kvm_vcpu *, bool); + int (*enter_smm)(struct kvm_vcpu *, union kvm_smram *); + int (*leave_smm)(struct kvm_vcpu *, const union kvm_smram *); + void (*enable_smi_window)(struct kvm_vcpu *); + int (*dev_get_attr)(u32, u64, u64 *); + int (*mem_enc_ioctl)(struct kvm *, void *); + int (*vcpu_mem_enc_ioctl)(struct kvm_vcpu *, void *); + int (*mem_enc_register_region)(struct kvm *, struct kvm_enc_region *); + int (*mem_enc_unregister_region)(struct kvm *, struct kvm_enc_region *); + int (*vm_copy_enc_context_from)(struct kvm *, unsigned int); + int (*vm_move_enc_context_from)(struct kvm *, unsigned int); + void (*guest_memory_reclaimed)(struct kvm *); + int (*get_feature_msr)(u32, u64 *); + int (*check_emulate_instruction)(struct kvm_vcpu *, int, void *, int); + bool (*apic_init_signal_blocked)(struct kvm_vcpu *); + int (*enable_l2_tlb_flush)(struct kvm_vcpu *); + void (*migrate_timers)(struct kvm_vcpu *); + void (*recalc_msr_intercepts)(struct kvm_vcpu *); + int (*complete_emulated_msr)(struct kvm_vcpu *, int); + void (*vcpu_deliver_sipi_vector)(struct kvm_vcpu *, u8); + long unsigned int (*vcpu_get_apicv_inhibit_reasons)(struct kvm_vcpu *); + gva_t (*get_untagged_addr)(struct kvm_vcpu *, gva_t, unsigned int); + void * (*alloc_apic_backing_page)(struct kvm_vcpu *); + int (*gmem_prepare)(struct kvm *, kvm_pfn_t, gfn_t, int); + void (*gmem_invalidate)(kvm_pfn_t, kvm_pfn_t); + int (*private_max_mapping_level)(struct kvm *, kvm_pfn_t); +}; + +struct kvm_x86_nested_ops { + void (*leave_nested)(struct kvm_vcpu *); + bool (*is_exception_vmexit)(struct kvm_vcpu *, u8, u32); + int (*check_events)(struct kvm_vcpu *); + bool (*has_events)(struct kvm_vcpu *, bool); + void (*triple_fault)(struct kvm_vcpu *); + int (*get_state)(struct kvm_vcpu *, struct kvm_nested_state *, unsigned int); + int (*set_state)(struct kvm_vcpu *, struct kvm_nested_state *, struct kvm_nested_state *); + bool (*get_nested_state_pages)(struct kvm_vcpu *); + int (*write_log_dirty)(struct kvm_vcpu *, gpa_t); + int (*enable_evmcs)(struct kvm_vcpu *, uint16_t *); + uint16_t (*get_evmcs_version)(struct kvm_vcpu *); + void (*hv_inject_synthetic_vmexit_post_tlb_flush)(struct kvm_vcpu *); +}; + +struct kvm_io_device; + +struct kvm_io_range { + gpa_t addr; + int len; + struct kvm_io_device *dev; +}; + +struct kvm_io_bus { + int dev_count; + int ioeventfd_count; + struct kvm_io_range range[0]; +}; + +enum kvm_bus { + KVM_MMIO_BUS = 0, + KVM_PIO_BUS = 1, + KVM_VIRTIO_CCW_NOTIFY_BUS = 2, + KVM_FAST_MMIO_BUS = 3, + KVM_IOCSR_BUS = 4, + KVM_NR_BUSES = 5, +}; + +struct kvm_irq_routing_table { + int chip[72]; + u32 nr_rt_entries; + struct hlist_head map[0]; +}; + +enum kvm_stat_kind { + KVM_STAT_VM = 0, + KVM_STAT_VCPU = 1, +}; + +struct _kvm_stats_desc; + +struct kvm_stat_data { + struct kvm *kvm; + const struct _kvm_stats_desc *desc; + enum kvm_stat_kind kind; +}; + +struct _kvm_stats_desc { + struct kvm_stats_desc desc; + char name[48]; +}; + +enum intel_native_id { + INTEL_ATOM_CMT_NATIVE_ID = 2, + INTEL_ATOM_SKT_NATIVE_ID = 3, +}; + +enum pt_capabilities { + PT_CAP_max_subleaf = 0, + PT_CAP_cr3_filtering = 1, + PT_CAP_psb_cyc = 2, + PT_CAP_ip_filtering = 3, + PT_CAP_mtc = 4, + PT_CAP_ptwrite = 5, + PT_CAP_power_event_trace = 6, + PT_CAP_event_trace = 7, + PT_CAP_tnt_disable = 8, + PT_CAP_topa_output = 9, + PT_CAP_topa_multiple_entries = 10, + PT_CAP_single_range_output = 11, + PT_CAP_output_subsys = 12, + PT_CAP_payloads_lip = 13, + PT_CAP_num_address_ranges = 14, + PT_CAP_mtc_periods = 15, + PT_CAP_cycle_thresholds = 16, + PT_CAP_psb_periods = 17, +}; + +struct topa_entry { + u64 end: 1; + u64 rsvd0: 1; + u64 intr: 1; + u64 rsvd1: 1; + u64 stop: 1; + u64 rsvd2: 1; + u64 size: 4; + u64 rsvd3: 2; + u64 base: 40; + u64 rsvd4: 12; +}; + +struct pt_pmu { + struct pmu pmu; + u32 caps[8]; + bool vmx; + bool branch_en_always_on; + long unsigned int max_nonturbo_ratio; + unsigned int tsc_art_num; + unsigned int tsc_art_den; +}; + +struct topa; + +struct pt_buffer { + struct list_head tables; + struct topa *first; + struct topa *last; + struct topa *cur; + unsigned int cur_idx; + size_t output_off; + long unsigned int nr_pages; + local_t data_size; + local64_t head; + bool snapshot; + bool single; + bool wrapped; + long int stop_pos; + long int intr_pos; + struct topa_entry *stop_te; + struct topa_entry *intr_te; + void **data_pages; +}; + +struct topa { + struct list_head list; + u64 offset; + size_t size; + int last; + unsigned int z_count; +}; + +struct pt_filter { + long unsigned int msr_a; + long unsigned int msr_b; + long unsigned int config; +}; + +struct pt_filters { + struct pt_filter filter[4]; + unsigned int nr_filters; +}; + +struct pt { + struct perf_output_handle handle; + struct pt_filters filters; + int handle_nmi; + int vmx_on; + int pause_allowed; + int resume_allowed; + u64 output_base; + u64 output_mask; +}; + +struct pt_cap_desc { + const char *name; + u32 leaf; + u8 reg; + u32 mask; +}; + +struct pt_address_range { + long unsigned int msr_a; + long unsigned int msr_b; + unsigned int reg_off; +}; + +struct topa_page { + struct topa_entry table[507]; + struct topa topa; +}; + +enum { + SNBEP_PCI_QPI_PORT0_FILTER = 0, + SNBEP_PCI_QPI_PORT1_FILTER = 1, + BDX_PCI_QPI_PORT2_FILTER = 2, +}; + +enum { + SNBEP_PCI_UNCORE_HA = 0, + SNBEP_PCI_UNCORE_IMC = 1, + SNBEP_PCI_UNCORE_QPI = 2, + SNBEP_PCI_UNCORE_R2PCIE = 3, + SNBEP_PCI_UNCORE_R3QPI = 4, +}; + +enum { + IVBEP_PCI_UNCORE_HA = 0, + IVBEP_PCI_UNCORE_IMC = 1, + IVBEP_PCI_UNCORE_IRP = 2, + IVBEP_PCI_UNCORE_QPI = 3, + IVBEP_PCI_UNCORE_R2PCIE = 4, + IVBEP_PCI_UNCORE_R3QPI = 5, +}; + +enum { + KNL_PCI_UNCORE_MC_UCLK = 0, + KNL_PCI_UNCORE_MC_DCLK = 1, + KNL_PCI_UNCORE_EDC_UCLK = 2, + KNL_PCI_UNCORE_EDC_ECLK = 3, + KNL_PCI_UNCORE_M2PCIE = 4, + KNL_PCI_UNCORE_IRP = 5, +}; + +enum { + HSWEP_PCI_UNCORE_HA = 0, + HSWEP_PCI_UNCORE_IMC = 1, + HSWEP_PCI_UNCORE_IRP = 2, + HSWEP_PCI_UNCORE_QPI = 3, + HSWEP_PCI_UNCORE_R2PCIE = 4, + HSWEP_PCI_UNCORE_R3QPI = 5, +}; + +enum { + BDX_PCI_UNCORE_HA = 0, + BDX_PCI_UNCORE_IMC = 1, + BDX_PCI_UNCORE_IRP = 2, + BDX_PCI_UNCORE_QPI = 3, + BDX_PCI_UNCORE_R2PCIE = 4, + BDX_PCI_UNCORE_R3QPI = 5, +}; + +enum { + IIO_TOPOLOGY_TYPE = 0, + UPI_TOPOLOGY_TYPE = 1, + TOPOLOGY_MAX = 2, +}; + +enum perf_uncore_iio_freerunning_type_id { + SKX_IIO_MSR_IOCLK = 0, + SKX_IIO_MSR_BW = 1, + SKX_IIO_MSR_UTIL = 2, + SKX_IIO_FREERUNNING_TYPE_MAX = 3, +}; + +enum { + SKX_PCI_UNCORE_IMC = 0, + SKX_PCI_UNCORE_M2M = 1, + SKX_PCI_UNCORE_UPI = 2, + SKX_PCI_UNCORE_M2PCIE = 3, + SKX_PCI_UNCORE_M3UPI = 4, +}; + +enum { + SNR_QAT_PMON_ID = 0, + SNR_CBDMA_DMI_PMON_ID = 1, + SNR_NIS_PMON_ID = 2, + SNR_DLB_PMON_ID = 3, + SNR_PCIE_GEN3_PMON_ID = 4, +}; + +enum perf_uncore_snr_iio_freerunning_type_id { + SNR_IIO_MSR_IOCLK = 0, + SNR_IIO_MSR_BW_IN = 1, + SNR_IIO_FREERUNNING_TYPE_MAX = 2, +}; + +enum { + SNR_PCI_UNCORE_M2M = 0, + SNR_PCI_UNCORE_PCIE3 = 1, +}; + +enum perf_uncore_snr_imc_freerunning_type_id { + SNR_IMC_DCLK = 0, + SNR_IMC_DDR = 1, + SNR_IMC_FREERUNNING_TYPE_MAX = 2, +}; + +enum { + ICX_PCIE1_PMON_ID = 0, + ICX_PCIE2_PMON_ID = 1, + ICX_PCIE3_PMON_ID = 2, + ICX_PCIE4_PMON_ID = 3, + ICX_PCIE5_PMON_ID = 4, + ICX_CBDMA_DMI_PMON_ID = 5, +}; + +enum perf_uncore_icx_iio_freerunning_type_id { + ICX_IIO_MSR_IOCLK = 0, + ICX_IIO_MSR_BW_IN = 1, + ICX_IIO_FREERUNNING_TYPE_MAX = 2, +}; + +enum { + ICX_PCI_UNCORE_M2M = 0, + ICX_PCI_UNCORE_UPI = 1, + ICX_PCI_UNCORE_M3UPI = 2, +}; + +enum perf_uncore_icx_imc_freerunning_type_id { + ICX_IMC_DCLK = 0, + ICX_IMC_DDR = 1, + ICX_IMC_DDRT = 2, + ICX_IMC_FREERUNNING_TYPE_MAX = 3, +}; + +enum perf_uncore_spr_iio_freerunning_type_id { + SPR_IIO_MSR_IOCLK = 0, + SPR_IIO_MSR_BW_IN = 1, + SPR_IIO_MSR_BW_OUT = 2, + SPR_IIO_FREERUNNING_TYPE_MAX = 3, +}; + +enum perf_uncore_spr_imc_freerunning_type_id { + SPR_IMC_DCLK = 0, + SPR_IMC_PQ_CYCLES = 1, + SPR_IMC_FREERUNNING_TYPE_MAX = 2, +}; + +struct hv_tlb_flush { + u64 address_space; + u64 flags; + u64 processor_mask; + u64 gva_list[0]; +}; + +struct hv_tlb_flush_ex { + u64 address_space; + u64 flags; + struct hv_vpset hv_vp_set; + u64 gva_list[0]; +}; + +struct trace_event_raw_hyperv_mmu_flush_tlb_multi { + struct trace_entry ent; + unsigned int ncpus; + struct mm_struct *mm; + long unsigned int addr; + long unsigned int end; + char __data[0]; +}; + +struct trace_event_raw_hyperv_nested_flush_guest_mapping { + struct trace_entry ent; + u64 as; + int ret; + char __data[0]; +}; + +struct trace_event_raw_hyperv_nested_flush_guest_mapping_range { + struct trace_entry ent; + u64 as; + int ret; + char __data[0]; +}; + +struct trace_event_raw_hyperv_send_ipi_mask { + struct trace_entry ent; + unsigned int ncpus; + int vector; + char __data[0]; +}; + +struct trace_event_raw_hyperv_send_ipi_one { + struct trace_entry ent; + int cpu; + int vector; + char __data[0]; +}; + +struct trace_event_data_offsets_hyperv_mmu_flush_tlb_multi {}; + +struct trace_event_data_offsets_hyperv_nested_flush_guest_mapping {}; + +struct trace_event_data_offsets_hyperv_nested_flush_guest_mapping_range {}; + +struct trace_event_data_offsets_hyperv_send_ipi_mask {}; + +struct trace_event_data_offsets_hyperv_send_ipi_one {}; + +typedef void (*btf_trace_hyperv_mmu_flush_tlb_multi)(void *, const struct cpumask *, const struct flush_tlb_info *); + +typedef void (*btf_trace_hyperv_nested_flush_guest_mapping)(void *, u64, int); + +typedef void (*btf_trace_hyperv_nested_flush_guest_mapping_range)(void *, u64, int); + +typedef void (*btf_trace_hyperv_send_ipi_mask)(void *, const struct cpumask *, int); + +typedef void (*btf_trace_hyperv_send_ipi_one)(void *, int, int); + +struct sigcontext_64 { + __u64 r8; + __u64 r9; + __u64 r10; + __u64 r11; + __u64 r12; + __u64 r13; + __u64 r14; + __u64 r15; + __u64 di; + __u64 si; + __u64 bp; + __u64 bx; + __u64 dx; + __u64 ax; + __u64 cx; + __u64 sp; + __u64 ip; + __u64 flags; + __u16 cs; + __u16 gs; + __u16 fs; + __u16 ss; + __u64 err; + __u64 trapno; + __u64 oldmask; + __u64 cr2; + __u64 fpstate; + __u64 reserved1[8]; +}; + +struct ucontext { + long unsigned int uc_flags; + struct ucontext *uc_link; + stack_t uc_stack; + struct sigcontext_64 uc_mcontext; + sigset_t uc_sigmask; +}; + +struct rt_sigframe { + char *pretcode; + struct ucontext uc; + struct siginfo info; +}; + +typedef struct ldttss_desc ldt_desc; + +struct stat64 { + long long unsigned int st_dev; + unsigned char __pad0[4]; + unsigned int __st_ino; + unsigned int st_mode; + unsigned int st_nlink; + unsigned int st_uid; + unsigned int st_gid; + long long unsigned int st_rdev; + unsigned char __pad3[4]; + long long int st_size; + unsigned int st_blksize; + long long int st_blocks; + unsigned int st_atime; + unsigned int st_atime_nsec; + unsigned int st_mtime; + unsigned int st_mtime_nsec; + unsigned int st_ctime; + unsigned int st_ctime_nsec; + long long unsigned int st_ino; +} __attribute__((packed)); + +struct mmap_arg_struct32 { + unsigned int addr; + unsigned int len; + unsigned int prot; + unsigned int flags; + unsigned int fd; + unsigned int offset; +}; + +struct cyc2ns { + struct cyc2ns_data data[2]; + seqcount_latch_t seq; +}; + +struct trace_event_raw_x86_fpu { + struct trace_entry ent; + struct fpu *fpu; + bool load_fpu; + u64 xfeatures; + u64 xcomp_bv; + char __data[0]; +}; + +struct trace_event_data_offsets_x86_fpu {}; + +typedef void (*btf_trace_x86_fpu_before_save)(void *, struct fpu *); + +typedef void (*btf_trace_x86_fpu_after_save)(void *, struct fpu *); + +typedef void (*btf_trace_x86_fpu_regs_activated)(void *, struct fpu *); + +typedef void (*btf_trace_x86_fpu_regs_deactivated)(void *, struct fpu *); + +typedef void (*btf_trace_x86_fpu_dropped)(void *, struct fpu *); + +typedef void (*btf_trace_x86_fpu_copy_dst)(void *, struct fpu *); + +typedef void (*btf_trace_x86_fpu_xstate_check_failed)(void *, struct fpu *); + +struct cpuid_dep { + unsigned int feature; + unsigned int depends; +}; + +enum context___2 { + IN_KERNEL = 1, + IN_USER = 2, + IN_KERNEL_RECOV = 3, +}; + +enum ser { + SER_REQUIRED = 1, + NO_SER = 2, +}; + +enum exception { + EXCP_CONTEXT = 1, + NO_EXCP = 2, +}; + +struct severity { + u64 mask; + u64 result; + unsigned char sev; + short unsigned int mcgmask; + short unsigned int mcgres; + unsigned char ser; + unsigned char context; + unsigned char excp; + unsigned char covered; + unsigned int cpu_vfm; + unsigned char cpu_minstepping; + unsigned char bank_lo; + unsigned char bank_hi; + char *msg; +}; + +enum { + GHES_SEV_NO = 0, + GHES_SEV_CORRECTED = 1, + GHES_SEV_RECOVERABLE = 2, + GHES_SEV_PANIC = 3, +}; + +struct cper_mce_record { + struct cper_record_header hdr; + struct cper_section_descriptor sec_hdr; + struct mce mce; +}; + +struct set_mtrr_data { + long unsigned int smp_base; + long unsigned int smp_size; + unsigned int smp_reg; + mtrr_type smp_type; +}; + +struct sgx_vepc { + struct xarray page_array; + struct mutex lock; +}; + +struct wakeup_header { + u16 video_mode; + u32 pmode_entry; + u16 pmode_cs; + u32 pmode_cr0; + u32 pmode_cr3; + u32 pmode_cr4; + u32 pmode_efer_low; + u32 pmode_efer_high; + u64 pmode_gdt; + u32 pmode_misc_en_low; + u32 pmode_misc_en_high; + u32 pmode_behavior; + u32 realmode_flags; + u32 real_magic; + u32 signature; +} __attribute__((packed)); + +struct tsc_adjust { + s64 bootval; + s64 adjusted; + long unsigned int nextcheck; + bool warned; +}; + +struct mpf_intel { + char signature[4]; + unsigned int physptr; + unsigned char length; + unsigned char specification; + unsigned char checksum; + unsigned char feature1; + unsigned char feature2; + unsigned char feature3; + unsigned char feature4; + unsigned char feature5; +}; + +struct mpc_table { + char signature[4]; + short unsigned int length; + char spec; + char checksum; + char oem[8]; + char productid[12]; + unsigned int oemptr; + short unsigned int oemsize; + short unsigned int oemcount; + unsigned int lapic; + unsigned int reserved; +}; + +struct mpc_cpu { + unsigned char type; + unsigned char apicid; + unsigned char apicver; + unsigned char cpuflag; + unsigned int cpufeature; + unsigned int featureflag; + unsigned int reserved[2]; +}; + +struct mpc_bus { + unsigned char type; + unsigned char busid; + unsigned char bustype[6]; +}; + +struct mpc_lintsrc { + unsigned char type; + unsigned char irqtype; + short unsigned int irqflag; + unsigned char srcbusid; + unsigned char srcbusirq; + unsigned char destapic; + unsigned char destapiclint; +}; + +union apic_ir { + long unsigned int map[4]; + u32 regs[8]; +}; + +enum { + X2APIC_OFF = 0, + X2APIC_DISABLED = 1, + X2APIC_ON = 2, + X2APIC_ON_LOCKED = 3, +}; + +struct kexec_entry64_regs { + uint64_t rax; + uint64_t rcx; + uint64_t rdx; + uint64_t rbx; + uint64_t rsp; + uint64_t rbp; + uint64_t rsi; + uint64_t rdi; + uint64_t r8; + uint64_t r9; + uint64_t r10; + uint64_t r11; + uint64_t r12; + uint64_t r13; + uint64_t r14; + uint64_t r15; + uint64_t rip; +}; + +struct bzimage64_data { + void *bootparams_buf; +}; + +enum { + RNG_SEED_LENGTH = 32, +}; + +struct scan_area { + u64 addr; + u64 size; +}; + +typedef u8 uprobe_opcode_t; + +enum rp_check { + RP_CHECK_CALL = 0, + RP_CHECK_CHAIN_CALL = 1, + RP_CHECK_RET = 2, +}; + +struct core_text { + long unsigned int base; + long unsigned int end; + const char *name; +}; + +struct vmcore_cb { + bool (*pfn_is_ram)(struct vmcore_cb *, long unsigned int); + int (*get_device_ram)(struct vmcore_cb *, struct list_head *); + struct list_head next; +}; + +struct pci_hostbridge_probe { + u32 bus; + u32 slot; + u32 vendor; + u32 device; +}; + +struct map_range { + long unsigned int start; + long unsigned int end; + unsigned int page_size_mask; +}; + +struct cpa_data { + long unsigned int *vaddr; + pgd_t *pgd; + pgprot_t mask_set; + pgprot_t mask_clr; + long unsigned int numpages; + long unsigned int curpage; + long unsigned int pfn; + unsigned int flags; + unsigned int force_split: 1; + unsigned int force_static_prot: 1; + unsigned int force_flush_all: 1; + struct page **pages; +}; + +enum cpa_warn { + CPA_CONFLICT = 0, + CPA_PROTECT = 1, + CPA_DETECT = 2, +}; + +union efi_boot_services; + +typedef union efi_boot_services efi_boot_services_t; + +union efi_simple_text_input_protocol; + +typedef union efi_simple_text_input_protocol efi_simple_text_input_protocol_t; + +union efi_simple_text_output_protocol; + +typedef union efi_simple_text_output_protocol efi_simple_text_output_protocol_t; + +typedef union { + struct { + efi_table_hdr_t hdr; + long unsigned int fw_vendor; + u32 fw_revision; + long unsigned int con_in_handle; + efi_simple_text_input_protocol_t *con_in; + long unsigned int con_out_handle; + efi_simple_text_output_protocol_t *con_out; + long unsigned int stderr_handle; + long unsigned int stderr; + efi_runtime_services_t *runtime; + efi_boot_services_t *boottime; + long unsigned int nr_tables; + long unsigned int tables; + }; + efi_system_table_32_t mixed_mode; +} efi_system_table_t; + +typedef int (*efi_memattr_perm_setter)(struct mm_struct *, efi_memory_desc_t *, bool); + +struct uv_rtc_timer_head { + spinlock_t lock; + int next_cpu; + int ncpus; + struct { + int lcpu; + u64 expires; + } cpu[0]; +}; + +struct tdx_sys_info_features { + u64 tdx_features0; +}; + +struct tdx_sys_info_tdmr { + u16 max_tdmrs; + u16 max_reserved_per_tdmr; + u16 pamt_4k_entry_size; + u16 pamt_2m_entry_size; + u16 pamt_1g_entry_size; +}; + +struct tdx_sys_info_td_ctrl { + u16 tdr_base_size; + u16 tdcs_base_size; + u16 tdvps_base_size; +}; + +struct tdx_sys_info_td_conf { + u64 attributes_fixed0; + u64 attributes_fixed1; + u64 xfam_fixed0; + u64 xfam_fixed1; + u16 num_cpuid_config; + u16 max_vcpus_per_td; + u64 cpuid_config_leaves[128]; + u64 cpuid_config_values[256]; +}; + +struct tdx_sys_info { + struct tdx_sys_info_features features; + struct tdx_sys_info_tdmr tdmr; + struct tdx_sys_info_td_ctrl td_ctrl; + struct tdx_sys_info_td_conf td_conf; +}; + +typedef u64 (*sc_func_t)(u64, struct tdx_module_args *); + +struct tdx_td { + struct page *tdr_page; + int tdcs_nr_pages; + struct page **tdcs_pages; + int tdcx_nr_pages; +}; + +struct tdx_vp { + struct page *tdvpr_page; + phys_addr_t tdvpr_pa; + struct page **tdcx_pages; +}; + +struct tdmr_reserved_area { + u64 offset; + u64 size; +}; + +struct tdmr_info { + u64 base; + u64 size; + u64 pamt_1g_base; + u64 pamt_1g_size; + u64 pamt_2m_base; + u64 pamt_2m_size; + u64 pamt_4k_base; + u64 pamt_4k_size; + struct { + struct {} __empty_reserved_areas; + struct tdmr_reserved_area reserved_areas[0]; + }; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum tdx_module_status_t { + TDX_MODULE_UNINITIALIZED = 0, + TDX_MODULE_INITIALIZED = 1, + TDX_MODULE_ERROR = 2, +}; + +struct tdx_memblock { + struct list_head list; + long unsigned int start_pfn; + long unsigned int end_pfn; + int nid; +}; + +struct tdmr_info_list { + void *tdmrs; + int nr_consumed_tdmrs; + int tdmr_sz; + int max_tdmrs; +}; + +typedef void (*sc_err_func_t)(u64, u64, struct tdx_module_args *); + +enum error_detector { + ERROR_DETECTOR_KFENCE = 0, + ERROR_DETECTOR_KASAN = 1, + ERROR_DETECTOR_WARN = 2, +}; + +struct warn_args { + const char *fmt; + va_list args; +}; + +struct release_task_post { + struct pid *pids[4]; +}; + +typedef struct { + rwlock_t *lock; +} class_write_lock_irq_t; + +struct ptrace_peeksiginfo_args { + __u64 off; + __u32 flags; + __s32 nr; +}; + +struct ptrace_syscall_info { + __u8 op; + __u8 reserved; + __u16 flags; + __u32 arch; + __u64 instruction_pointer; + __u64 stack_pointer; + union { + struct { + __u64 nr; + __u64 args[6]; + } entry; + struct { + __s64 rval; + __u8 is_error; + } exit; + struct { + __u64 nr; + __u64 args[6]; + __u32 ret_data; + __u32 reserved2; + } seccomp; + }; +}; + +struct ptrace_rseq_configuration { + __u64 rseq_abi_pointer; + __u32 rseq_abi_size; + __u32 signature; + __u32 flags; + __u32 pad; +}; + +struct sys_off_handler { + struct notifier_block nb; + int (*sys_off_cb)(struct sys_off_data *); + void *cb_data; + enum sys_off_mode mode; + bool blocking; + void *list; + struct device *dev; +}; + +enum vhost_task_flags { + VHOST_TASK_FLAGS_STOP = 0, + VHOST_TASK_FLAGS_KILLED = 1, +}; + +struct vhost_task { + bool (*fn)(void *); + void (*handle_sigkill)(void *); + void *data; + struct completion exited; + long unsigned int flags; + struct task_struct *task; + struct mutex exit_mutex; +}; + +struct trace_event_raw_sched_kthread_stop { + struct trace_entry ent; + u32 __data_loc_comm; + pid_t pid; + char __data[0]; +}; + +struct trace_event_raw_sched_kthread_stop_ret { + struct trace_entry ent; + int ret; + char __data[0]; +}; + +struct trace_event_raw_sched_kthread_work_queue_work { + struct trace_entry ent; + void *work; + void *function; + void *worker; + char __data[0]; +}; + +struct trace_event_raw_sched_kthread_work_execute_start { + struct trace_entry ent; + void *work; + void *function; + char __data[0]; +}; + +struct trace_event_raw_sched_kthread_work_execute_end { + struct trace_entry ent; + void *work; + void *function; + char __data[0]; +}; + +struct trace_event_raw_sched_wakeup_template { + struct trace_entry ent; + char comm[16]; + pid_t pid; + int prio; + int target_cpu; + char __data[0]; +}; + +struct trace_event_raw_sched_switch { + struct trace_entry ent; + char prev_comm[16]; + pid_t prev_pid; + int prev_prio; + long int prev_state; + char next_comm[16]; + pid_t next_pid; + int next_prio; + char __data[0]; +}; + +struct trace_event_raw_sched_migrate_task { + struct trace_entry ent; + u32 __data_loc_comm; + pid_t pid; + int prio; + int orig_cpu; + int dest_cpu; + char __data[0]; +}; + +struct trace_event_raw_sched_process_template { + struct trace_entry ent; + u32 __data_loc_comm; + pid_t pid; + int prio; + char __data[0]; +}; + +struct trace_event_raw_sched_process_exit { + struct trace_entry ent; + char comm[16]; + pid_t pid; + int prio; + bool group_dead; + char __data[0]; +}; + +struct trace_event_raw_sched_process_wait { + struct trace_entry ent; + u32 __data_loc_comm; + pid_t pid; + int prio; + char __data[0]; +}; + +struct trace_event_raw_sched_process_fork { + struct trace_entry ent; + u32 __data_loc_parent_comm; + pid_t parent_pid; + u32 __data_loc_child_comm; + pid_t child_pid; + char __data[0]; +}; + +struct trace_event_raw_sched_process_exec { + struct trace_entry ent; + u32 __data_loc_filename; + pid_t pid; + pid_t old_pid; + char __data[0]; +}; + +struct trace_event_raw_sched_prepare_exec { + struct trace_entry ent; + u32 __data_loc_interp; + u32 __data_loc_filename; + pid_t pid; + u32 __data_loc_comm; + char __data[0]; +}; + +struct trace_event_raw_sched_stat_template { + struct trace_entry ent; + u32 __data_loc_comm; + pid_t pid; + u64 delay; + char __data[0]; +}; + +struct trace_event_raw_sched_stat_runtime { + struct trace_entry ent; + u32 __data_loc_comm; + pid_t pid; + u64 runtime; + char __data[0]; +}; + +struct trace_event_raw_sched_pi_setprio { + struct trace_entry ent; + u32 __data_loc_comm; + pid_t pid; + int oldprio; + int newprio; + char __data[0]; +}; + +struct trace_event_raw_sched_process_hang { + struct trace_entry ent; + u32 __data_loc_comm; + pid_t pid; + char __data[0]; +}; + +struct trace_event_raw_sched_move_numa { + struct trace_entry ent; + pid_t pid; + pid_t tgid; + pid_t ngid; + int src_cpu; + int src_nid; + int dst_cpu; + int dst_nid; + char __data[0]; +}; + +struct trace_event_raw_sched_numa_pair_template { + struct trace_entry ent; + pid_t src_pid; + pid_t src_tgid; + pid_t src_ngid; + int src_cpu; + int src_nid; + pid_t dst_pid; + pid_t dst_tgid; + pid_t dst_ngid; + int dst_cpu; + int dst_nid; + char __data[0]; +}; + +struct trace_event_raw_sched_skip_vma_numa { + struct trace_entry ent; + long unsigned int numa_scan_offset; + long unsigned int vm_start; + long unsigned int vm_end; + enum numa_vmaskip_reason reason; + char __data[0]; +}; + +struct trace_event_raw_sched_skip_cpuset_numa { + struct trace_entry ent; + char comm[16]; + pid_t pid; + pid_t tgid; + pid_t ngid; + long unsigned int mem_allowed[16]; + char __data[0]; +}; + +struct trace_event_raw_sched_wake_idle_without_ipi { + struct trace_entry ent; + int cpu; + char __data[0]; +}; + +struct trace_event_data_offsets_sched_kthread_stop { + u32 comm; + const void *comm_ptr_; +}; + +struct trace_event_data_offsets_sched_kthread_stop_ret {}; + +struct trace_event_data_offsets_sched_kthread_work_queue_work {}; + +struct trace_event_data_offsets_sched_kthread_work_execute_start {}; + +struct trace_event_data_offsets_sched_kthread_work_execute_end {}; + +struct trace_event_data_offsets_sched_wakeup_template {}; + +struct trace_event_data_offsets_sched_switch {}; + +struct trace_event_data_offsets_sched_migrate_task { + u32 comm; + const void *comm_ptr_; +}; + +struct trace_event_data_offsets_sched_process_template { + u32 comm; + const void *comm_ptr_; +}; + +struct trace_event_data_offsets_sched_process_exit {}; + +struct trace_event_data_offsets_sched_process_wait { + u32 comm; + const void *comm_ptr_; +}; + +struct trace_event_data_offsets_sched_process_fork { + u32 parent_comm; + const void *parent_comm_ptr_; + u32 child_comm; + const void *child_comm_ptr_; +}; + +struct trace_event_data_offsets_sched_process_exec { + u32 filename; + const void *filename_ptr_; +}; + +struct trace_event_data_offsets_sched_prepare_exec { + u32 interp; + const void *interp_ptr_; + u32 filename; + const void *filename_ptr_; + u32 comm; + const void *comm_ptr_; +}; + +struct trace_event_data_offsets_sched_stat_template { + u32 comm; + const void *comm_ptr_; +}; + +struct trace_event_data_offsets_sched_stat_runtime { + u32 comm; + const void *comm_ptr_; +}; + +struct trace_event_data_offsets_sched_pi_setprio { + u32 comm; + const void *comm_ptr_; +}; + +struct trace_event_data_offsets_sched_process_hang { + u32 comm; + const void *comm_ptr_; +}; + +struct trace_event_data_offsets_sched_move_numa {}; + +struct trace_event_data_offsets_sched_numa_pair_template {}; + +struct trace_event_data_offsets_sched_skip_vma_numa {}; + +struct trace_event_data_offsets_sched_skip_cpuset_numa {}; + +struct trace_event_data_offsets_sched_wake_idle_without_ipi {}; + +typedef void (*btf_trace_sched_kthread_stop)(void *, struct task_struct *); + +typedef void (*btf_trace_sched_kthread_stop_ret)(void *, int); + +typedef void (*btf_trace_sched_kthread_work_queue_work)(void *, struct kthread_worker *, struct kthread_work *); + +typedef void (*btf_trace_sched_kthread_work_execute_start)(void *, struct kthread_work *); + +typedef void (*btf_trace_sched_kthread_work_execute_end)(void *, struct kthread_work *, kthread_work_func_t); + +typedef void (*btf_trace_sched_waking)(void *, struct task_struct *); + +typedef void (*btf_trace_sched_wakeup)(void *, struct task_struct *); + +typedef void (*btf_trace_sched_wakeup_new)(void *, struct task_struct *); + +typedef void (*btf_trace_sched_switch)(void *, bool, struct task_struct *, struct task_struct *, unsigned int); + +typedef void (*btf_trace_sched_migrate_task)(void *, struct task_struct *, int); + +typedef void (*btf_trace_sched_process_free)(void *, struct task_struct *); + +typedef void (*btf_trace_sched_process_exit)(void *, struct task_struct *, bool); + +typedef void (*btf_trace_sched_wait_task)(void *, struct task_struct *); + +typedef void (*btf_trace_sched_process_wait)(void *, struct pid *); + +typedef void (*btf_trace_sched_process_fork)(void *, struct task_struct *, struct task_struct *); + +typedef void (*btf_trace_sched_process_exec)(void *, struct task_struct *, pid_t, struct linux_binprm *); + +typedef void (*btf_trace_sched_prepare_exec)(void *, struct task_struct *, struct linux_binprm *); + +typedef void (*btf_trace_sched_stat_wait)(void *, struct task_struct *, u64); + +typedef void (*btf_trace_sched_stat_sleep)(void *, struct task_struct *, u64); + +typedef void (*btf_trace_sched_stat_iowait)(void *, struct task_struct *, u64); + +typedef void (*btf_trace_sched_stat_blocked)(void *, struct task_struct *, u64); + +typedef void (*btf_trace_sched_stat_runtime)(void *, struct task_struct *, u64); + +typedef void (*btf_trace_sched_pi_setprio)(void *, struct task_struct *, struct task_struct *); + +typedef void (*btf_trace_sched_process_hang)(void *, struct task_struct *); + +typedef void (*btf_trace_sched_move_numa)(void *, struct task_struct *, int, int); + +typedef void (*btf_trace_sched_stick_numa)(void *, struct task_struct *, int, struct task_struct *, int); + +typedef void (*btf_trace_sched_swap_numa)(void *, struct task_struct *, int, struct task_struct *, int); + +typedef void (*btf_trace_sched_skip_vma_numa)(void *, struct mm_struct *, struct vm_area_struct *, enum numa_vmaskip_reason); + +typedef void (*btf_trace_sched_skip_cpuset_numa)(void *, struct task_struct *, nodemask_t *); + +typedef void (*btf_trace_sched_wake_idle_without_ipi)(void *, int); + +typedef void (*btf_trace_pelt_cfs_tp)(void *, struct cfs_rq *); + +typedef void (*btf_trace_pelt_rt_tp)(void *, struct rq *); + +typedef void (*btf_trace_pelt_dl_tp)(void *, struct rq *); + +typedef void (*btf_trace_pelt_hw_tp)(void *, struct rq *); + +typedef void (*btf_trace_pelt_irq_tp)(void *, struct rq *); + +typedef void (*btf_trace_pelt_se_tp)(void *, struct sched_entity *); + +typedef void (*btf_trace_sched_cpu_capacity_tp)(void *, struct rq *); + +typedef void (*btf_trace_sched_overutilized_tp)(void *, struct root_domain *, bool); + +typedef void (*btf_trace_sched_util_est_cfs_tp)(void *, struct cfs_rq *); + +typedef void (*btf_trace_sched_util_est_se_tp)(void *, struct sched_entity *); + +typedef void (*btf_trace_sched_update_nr_running_tp)(void *, struct rq *, int); + +typedef void (*btf_trace_sched_compute_energy_tp)(void *, struct task_struct *, int, long unsigned int, long unsigned int, long unsigned int); + +typedef void (*btf_trace_sched_entry_tp)(void *, bool); + +typedef void (*btf_trace_sched_exit_tp)(void *, bool); + +typedef void (*btf_trace_sched_set_need_resched_tp)(void *, struct task_struct *, int, int); + +struct trace_event_raw_ipi_send_cpu { + struct trace_entry ent; + unsigned int cpu; + void *callsite; + void *callback; + char __data[0]; +}; + +struct trace_event_raw_ipi_send_cpumask { + struct trace_entry ent; + u32 __data_loc_cpumask; + void *callsite; + void *callback; + char __data[0]; +}; + +struct trace_event_data_offsets_ipi_send_cpu {}; + +struct trace_event_data_offsets_ipi_send_cpumask { + u32 cpumask; + const void *cpumask_ptr_; +}; + +typedef void (*btf_trace_ipi_send_cpu)(void *, const unsigned int, long unsigned int, void *); + +typedef void (*btf_trace_ipi_send_cpumask)(void *, const struct cpumask *, long unsigned int, void *); + +typedef struct { + raw_spinlock_t *lock; + raw_spinlock_t *lock2; +} class_double_raw_spinlock_t; + +struct set_affinity_pending; + +struct migration_arg { + struct task_struct *task; + int dest_cpu; + struct set_affinity_pending *pending; +}; + +struct set_affinity_pending { + refcount_t refs; + unsigned int stop_pending; + struct completion done; + struct cpu_stop_work stop_work; + struct migration_arg arg; +}; + +struct migration_swap_arg { + struct task_struct *src_task; + struct task_struct *dst_task; + int src_cpu; + int dst_cpu; +}; + +struct tick_work { + int cpu; + atomic_t state; + struct delayed_work work; +}; + +typedef struct { + int *lock; + long unsigned int flags; +} class_core_lock_t; + +struct uclamp_request { + s64 percent; + u64 util; + int ret; +}; + +struct cfs_schedulable_data { + struct task_group *tg; + u64 period; + u64 quota; +}; + +enum { + cpuset = 0, + possible = 1, + fail = 2, +}; + +union cpumask_rcuhead { + cpumask_t cpumask; + struct callback_head rcu; +}; + +enum rwsem_waiter_type { + RWSEM_WAITING_FOR_WRITE = 0, + RWSEM_WAITING_FOR_READ = 1, +}; + +struct rwsem_waiter { + struct list_head list; + struct task_struct *task; + enum rwsem_waiter_type type; + long unsigned int timeout; + bool handoff_set; +}; + +enum rwsem_wake_type { + RWSEM_WAKE_ANY = 0, + RWSEM_WAKE_READERS = 1, + RWSEM_WAKE_READ_OWNED = 2, +}; + +enum owner_state { + OWNER_NULL = 1, + OWNER_WRITER = 2, + OWNER_READER = 4, + OWNER_NONSPINNABLE = 8, +}; + +struct optimistic_spin_node { + struct optimistic_spin_node *next; + struct optimistic_spin_node *prev; + int locked; + int cpu; +}; + +struct rt_wake_q_head { + struct wake_q_head head; + struct task_struct *rtlock_task; +}; + +enum rtmutex_chainwalk { + RT_MUTEX_MIN_CHAINWALK = 0, + RT_MUTEX_FULL_CHAINWALK = 1, +}; + +struct swap_map_page { + sector_t entries[511]; + sector_t next_swap; +}; + +struct swap_map_page_list { + struct swap_map_page *map; + struct swap_map_page_list *next; +}; + +struct swap_map_handle { + struct swap_map_page *cur; + struct swap_map_page_list *maps; + sector_t cur_swap; + sector_t first_sector; + unsigned int k; + long unsigned int reqd_free_pages; + u32 crc32; +}; + +struct swsusp_header { + char reserved[4056]; + u32 hw_sig; + u32 crc32; + sector_t image; + unsigned int flags; + char orig_sig[10]; + char sig[10]; +}; + +struct swsusp_extent { + struct rb_node node; + long unsigned int start; + long unsigned int end; +}; + +struct hib_bio_batch { + atomic_t count; + wait_queue_head_t wait; + blk_status_t error; + struct blk_plug plug; +}; + +struct crc_data { + struct task_struct *thr; + atomic_t ready; + atomic_t stop; + unsigned int run_threads; + wait_queue_head_t go; + wait_queue_head_t done; + u32 *crc32; + size_t *unc_len[3]; + unsigned char *unc[3]; +}; + +struct cmp_data { + struct task_struct *thr; + struct crypto_acomp *cc; + struct acomp_req *cr; + atomic_t ready; + atomic_t stop; + int ret; + wait_queue_head_t go; + wait_queue_head_t done; + size_t unc_len; + size_t cmp_len; + unsigned char unc[131072]; + unsigned char cmp[143360]; +}; + +struct dec_data { + struct task_struct *thr; + struct crypto_acomp *cc; + struct acomp_req *cr; + atomic_t ready; + atomic_t stop; + int ret; + wait_queue_head_t go; + wait_queue_head_t done; + size_t unc_len; + size_t cmp_len; + unsigned char unc[131072]; + unsigned char cmp[143360]; +}; + +struct wakelock { + char *name; + struct rb_node node; + struct wakeup_source *ws; + struct list_head lru; +}; + +struct irq_devres { + unsigned int irq; + void *dev_id; +}; + +struct irq_desc_devres { + unsigned int from; + unsigned int cnt; +}; + +struct irq_generic_chip_devres { + struct irq_chip_generic *gc; + u32 msk; + unsigned int clr; + unsigned int set; +}; + +struct msi_dev_domain { + struct xarray store; + struct irq_domain *domain; +}; + +struct msi_device_data { + long unsigned int properties; + struct mutex mutex; + struct msi_dev_domain __domains[1]; + long unsigned int __iter_idx; +}; + +struct msi_ctrl { + unsigned int domid; + unsigned int first; + unsigned int last; + unsigned int nirqs; +}; + +struct rcu_exp_work { + long unsigned int rew_s; + struct kthread_work rew_work; +}; + +struct rcu_node { + raw_spinlock_t lock; + long unsigned int gp_seq; + long unsigned int gp_seq_needed; + long unsigned int completedqs; + long unsigned int qsmask; + long unsigned int rcu_gp_init_mask; + long unsigned int qsmaskinit; + long unsigned int qsmaskinitnext; + long unsigned int expmask; + long unsigned int expmaskinit; + long unsigned int expmaskinitnext; + struct kthread_worker *exp_kworker; + long unsigned int cbovldmask; + long unsigned int ffmask; + long unsigned int grpmask; + int grplo; + int grphi; + u8 grpnum; + u8 level; + bool wait_blkd_tasks; + struct rcu_node *parent; + struct list_head blkd_tasks; + struct list_head *gp_tasks; + struct list_head *exp_tasks; + struct list_head *boost_tasks; + struct rt_mutex boost_mtx; + long unsigned int boost_time; + struct mutex kthread_mutex; + struct task_struct *boost_kthread_task; + unsigned int boost_kthread_status; + long unsigned int n_boosts; + struct swait_queue_head nocb_gp_wq[2]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + raw_spinlock_t fqslock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + spinlock_t exp_lock; + long unsigned int exp_seq_rq; + wait_queue_head_t exp_wq[4]; + struct rcu_exp_work rew; + bool exp_need_flush; + raw_spinlock_t exp_poll_lock; + long unsigned int exp_seq_poll_rq; + struct work_struct exp_poll_wq; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +union rcu_noqs { + struct { + u8 norm; + u8 exp; + } b; + u16 s; +}; + +struct rcu_snap_record { + long unsigned int gp_seq; + u64 cputime_irq; + u64 cputime_softirq; + u64 cputime_system; + u64 nr_hardirqs; + unsigned int nr_softirqs; + long long unsigned int nr_csw; + long unsigned int jiffies; +}; + +struct rcu_data { + long unsigned int gp_seq; + long unsigned int gp_seq_needed; + union rcu_noqs cpu_no_qs; + bool core_needs_qs; + bool beenonline; + bool gpwrap; + unsigned int gpwrap_count; + bool cpu_started; + struct rcu_node *mynode; + long unsigned int grpmask; + long unsigned int ticks_this_gp; + struct irq_work defer_qs_iw; + int defer_qs_iw_pending; + struct work_struct strict_work; + struct rcu_segcblist cblist; + long int qlen_last_fqs_check; + long unsigned int n_cbs_invoked; + long unsigned int n_force_qs_snap; + long int blimit; + int watching_snap; + bool rcu_need_heavy_qs; + bool rcu_urgent_qs; + bool rcu_forced_tick; + bool rcu_forced_tick_exp; + long unsigned int barrier_seq_snap; + struct callback_head barrier_head; + int exp_watching_snap; + struct swait_queue_head nocb_cb_wq; + struct swait_queue_head nocb_state_wq; + struct task_struct *nocb_gp_kthread; + raw_spinlock_t nocb_lock; + int nocb_defer_wakeup; + struct timer_list nocb_timer; + long unsigned int nocb_gp_adv_time; + struct mutex nocb_gp_kthread_mutex; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + raw_spinlock_t nocb_bypass_lock; + struct rcu_cblist nocb_bypass; + long unsigned int nocb_bypass_first; + long unsigned int nocb_nobypass_last; + int nocb_nobypass_count; + long: 64; + raw_spinlock_t nocb_gp_lock; + u8 nocb_gp_sleep; + u8 nocb_gp_bypass; + u8 nocb_gp_gp; + long unsigned int nocb_gp_seq; + long unsigned int nocb_gp_loops; + struct swait_queue_head nocb_gp_wq; + bool nocb_cb_sleep; + struct task_struct *nocb_cb_kthread; + struct list_head nocb_head_rdp; + struct list_head nocb_entry_rdp; + struct rcu_data *nocb_toggling_rdp; + long: 64; + long: 64; + long: 64; + struct rcu_data *nocb_gp_rdp; + struct task_struct *rcu_cpu_kthread_task; + unsigned int rcu_cpu_kthread_status; + char rcu_cpu_has_work; + long unsigned int rcuc_activity; + unsigned int softirq_snap; + struct irq_work rcu_iw; + bool rcu_iw_pending; + long unsigned int rcu_iw_gp_seq; + long unsigned int rcu_ofl_gp_seq; + short int rcu_ofl_gp_state; + long unsigned int rcu_onl_gp_seq; + short int rcu_onl_gp_state; + long unsigned int last_fqs_resched; + long unsigned int last_sched_clock; + struct rcu_snap_record snap_record; + long int lazy_len; + int cpu; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct sr_wait_node { + atomic_t inuse; + struct llist_node node; +}; + +struct rcu_state { + struct rcu_node node[521]; + struct rcu_node *level[4]; + int ncpus; + int n_online_cpus; + long: 64; + long: 64; + long: 64; + long unsigned int gp_seq; + long unsigned int gp_max; + struct task_struct *gp_kthread; + struct swait_queue_head gp_wq; + short int gp_flags; + short int gp_state; + long unsigned int gp_wake_time; + long unsigned int gp_wake_seq; + long unsigned int gp_seq_polled; + long unsigned int gp_seq_polled_snap; + long unsigned int gp_seq_polled_exp_snap; + struct mutex barrier_mutex; + atomic_t barrier_cpu_count; + struct completion barrier_completion; + long unsigned int barrier_sequence; + raw_spinlock_t barrier_lock; + struct mutex exp_mutex; + struct mutex exp_wake_mutex; + long unsigned int expedited_sequence; + atomic_t expedited_need_qs; + struct swait_queue_head expedited_wq; + int ncpus_snap; + u8 cbovld; + u8 cbovldnext; + long unsigned int jiffies_force_qs; + long unsigned int jiffies_kick_kthreads; + long unsigned int n_force_qs; + long unsigned int gp_start; + long unsigned int gp_end; + long unsigned int gp_activity; + long unsigned int gp_req_activity; + long unsigned int jiffies_stall; + int nr_fqs_jiffies_stall; + long unsigned int jiffies_resched; + long unsigned int n_force_qs_gpstart; + const char *name; + char abbr; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + arch_spinlock_t ofl_lock; + struct llist_head srs_next; + struct llist_node *srs_wait_tail; + struct llist_node *srs_done_tail; + struct sr_wait_node srs_wait_nodes[5]; + struct work_struct srs_cleanup_work; + atomic_t srs_cleanups_pending; + struct mutex nocb_mutex; + int nocb_is_setup; +}; + +struct io_tlb_area { + long unsigned int used; + unsigned int index; + spinlock_t lock; +}; + +struct io_tlb_slot { + phys_addr_t orig_addr; + size_t alloc_size; + short unsigned int list; + short unsigned int pad_slots; +}; + +struct trace_event_raw_swiotlb_bounced { + struct trace_entry ent; + u32 __data_loc_dev_name; + u64 dma_mask; + dma_addr_t dev_addr; + size_t size; + bool force; + char __data[0]; +}; + +struct trace_event_data_offsets_swiotlb_bounced { + u32 dev_name; + const void *dev_name_ptr_; +}; + +typedef void (*btf_trace_swiotlb_bounced)(void *, struct device *, dma_addr_t, size_t); + +struct module_sect_attrs { + struct attribute_group grp; + struct bin_attribute attrs[0]; +}; + +struct module_notes_attrs { + struct attribute_group grp; + struct bin_attribute attrs[0]; +}; + +struct process_timer { + struct timer_list timer; + struct task_struct *task; +}; + +typedef struct { + raw_spinlock_t *lock; +} class_raw_spinlock_nested_t; + +struct system_counterval_t { + u64 cycles; + enum clocksource_ids cs_id; + bool use_nsecs; +}; + +struct tk_read_base { + struct clocksource *clock; + u64 mask; + u64 cycle_last; + u32 mult; + u32 shift; + u64 xtime_nsec; + ktime_t base; + u64 base_real; +}; + +struct timekeeper { + struct tk_read_base tkr_mono; + u64 xtime_sec; + long unsigned int ktime_sec; + struct timespec64 wall_to_monotonic; + ktime_t offs_real; + ktime_t offs_boot; + union { + ktime_t offs_tai; + ktime_t offs_aux; + }; + u32 coarse_nsec; + enum timekeeper_ids id; + struct tk_read_base tkr_raw; + u64 raw_sec; + unsigned int clock_was_set_seq; + u8 cs_was_changed_seq; + u8 clock_valid; + union { + struct timespec64 monotonic_to_boot; + struct timespec64 monotonic_to_aux; + }; + u64 cycle_interval; + u64 xtime_interval; + s64 xtime_remainder; + u64 raw_interval; + ktime_t next_leap_ktime; + u64 ntp_tick; + s64 ntp_error; + u32 ntp_error_shift; + u32 ntp_err_mult; + u32 skip_second_overflow; + s32 tai_offset; +}; + +enum timekeeping_adv_mode { + TK_ADV_TICK = 0, + TK_ADV_FREQ = 1, +}; + +struct tk_data { + seqcount_raw_spinlock_t seq; + struct timekeeper timekeeper; + struct timekeeper shadow_timekeeper; + raw_spinlock_t lock; +}; + +struct tk_fast { + seqcount_latch_t seq; + struct tk_read_base base[2]; +}; + +struct adjtimex_result { + struct audit_ntp_data ad; + struct timespec64 delta; + bool clock_set; +}; + +struct timer_list_iter { + int cpu; + bool second_pass; + u64 now; +}; + +struct posix_clock_desc { + struct file *fp; + struct posix_clock *clk; +}; + +typedef __u16 comp_t; + +struct acct_v3 { + char ac_flag; + char ac_version; + __u16 ac_tty; + __u32 ac_exitcode; + __u32 ac_uid; + __u32 ac_gid; + __u32 ac_pid; + __u32 ac_ppid; + __u32 ac_btime; + __u32 ac_etime; + comp_t ac_utime; + comp_t ac_stime; + comp_t ac_mem; + comp_t ac_io; + comp_t ac_rw; + comp_t ac_minflt; + comp_t ac_majflt; + comp_t ac_swaps; + char ac_comm[16]; +}; + +typedef struct acct_v3 acct_t; + +struct bsd_acct_struct { + struct fs_pin pin; + atomic_long_t count; + struct callback_head rcu; + struct mutex lock; + bool active; + bool check_space; + long unsigned int needcheck; + struct file *file; + struct pid_namespace *ns; + struct work_struct work; + struct completion done; + acct_t ac; +}; + +struct kexec_load_limit { + struct mutex mutex; + int limit; +}; + +enum cgroup_filetype { + CGROUP_FILE_PROCS = 0, + CGROUP_FILE_TASKS = 1, +}; + +struct cgroup_pidlist { + struct { + enum cgroup_filetype type; + struct pid_namespace *ns; + } key; + pid_t *list; + int length; + struct list_head links; + struct cgroup *owner; + struct delayed_work destroy_dwork; +}; + +enum cgroup1_param { + Opt_all = 0, + Opt_clone_children = 1, + Opt_cpuset_v2_mode = 2, + Opt_name = 3, + Opt_none = 4, + Opt_noprefix = 5, + Opt_release_agent = 6, + Opt_xattr = 7, + Opt_favordynmods___2 = 8, + Opt_nofavordynmods = 9, +}; + +enum rdmacg_resource_type { + RDMACG_RESOURCE_HCA_HANDLE = 0, + RDMACG_RESOURCE_HCA_OBJECT = 1, + RDMACG_RESOURCE_MAX = 2, +}; + +enum rdmacg_file_type { + RDMACG_RESOURCE_TYPE_MAX = 0, + RDMACG_RESOURCE_TYPE_STAT = 1, +}; + +struct rdmacg_resource { + int max; + int usage; +}; + +struct rdmacg_resource_pool { + struct rdmacg_device *device; + struct rdmacg_resource resources[2]; + struct list_head cg_node; + struct list_head dev_node; + u64 usage_sum; + int num_max_cnt; +}; + +struct dmem_cgroup_region { + struct kref ref; + struct callback_head rcu; + struct list_head region_node; + struct list_head pools; + u64 size; + char *name; + bool unregistered; +}; + +struct dmemcg_state { + struct cgroup_subsys_state css; + struct list_head pools; +}; + +struct dmem_cgroup_pool_state { + struct dmem_cgroup_region *region; + struct dmemcg_state *cs; + struct list_head css_node; + struct list_head region_node; + struct callback_head rcu; + struct page_counter cnt; + bool inited; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct cpu_stop_done { + atomic_t nr_todo; + int ret; + struct completion completion; +}; + +struct cpu_stopper { + struct task_struct *thread; + raw_spinlock_t lock; + bool enabled; + struct list_head works; + struct cpu_stop_work stop_work; + long unsigned int caller; + cpu_stop_fn_t fn; +}; + +enum multi_stop_state { + MULTI_STOP_NONE = 0, + MULTI_STOP_PREPARE = 1, + MULTI_STOP_DISABLE_IRQ = 2, + MULTI_STOP_RUN = 3, + MULTI_STOP_EXIT = 4, +}; + +struct multi_stop_data { + cpu_stop_fn_t fn; + void *data; + unsigned int num_threads; + const struct cpumask *active_cpus; + enum multi_stop_state state; + atomic_t thread_ack; +}; + +struct audit_rule_data { + __u32 flags; + __u32 action; + __u32 field_count; + __u32 mask[64]; + __u32 fields[64]; + __u32 values[64]; + __u32 fieldflags[64]; + __u32 buflen; + char buf[0]; +}; + +struct audit_tree { + refcount_t count; + int goner; + struct audit_chunk *root; + struct list_head chunks; + struct list_head rules; + struct list_head list; + struct list_head same_root; + struct callback_head head; + char pathname[0]; +}; + +struct audit_node { + struct list_head list; + struct audit_tree *owner; + unsigned int index; +}; + +struct audit_chunk { + struct list_head hash; + long unsigned int key; + struct fsnotify_mark *mark; + struct list_head trees; + int count; + atomic_long_t refs; + struct callback_head head; + struct audit_node owners[0]; +}; + +struct audit_tree_mark { + struct fsnotify_mark mark; + struct audit_chunk *chunk; +}; + +enum { + HASH_SIZE = 128, +}; + +struct _kdbmsg { + int km_diag; + char *km_msg; +}; + +typedef struct _kdbmsg kdbmsg_t; + +struct kdb_macro { + kdbtab_t cmd; + struct list_head statements; +}; + +struct kdb_macro_statement { + char *statement; + struct list_head list_node; +}; + +struct action_cache { + long unsigned int allow_native[8]; + long unsigned int allow_compat[8]; +}; + +struct notification; + +struct seccomp_filter { + refcount_t refs; + refcount_t users; + bool log; + bool wait_killable_recv; + struct action_cache cache; + struct seccomp_filter *prev; + struct bpf_prog *prog; + struct notification *notif; + struct mutex notify_lock; + wait_queue_head_t wqh; +}; + +struct seccomp_metadata { + __u64 filter_off; + __u64 flags; +}; + +struct seccomp_notif_sizes { + __u16 seccomp_notif; + __u16 seccomp_notif_resp; + __u16 seccomp_data; +}; + +struct seccomp_notif { + __u64 id; + __u32 pid; + __u32 flags; + struct seccomp_data data; +}; + +struct seccomp_notif_resp { + __u64 id; + __s64 val; + __s32 error; + __u32 flags; +}; + +struct seccomp_notif_addfd { + __u64 id; + __u32 flags; + __u32 srcfd; + __u32 newfd; + __u32 newfd_flags; +}; + +enum notify_state { + SECCOMP_NOTIFY_INIT = 0, + SECCOMP_NOTIFY_SENT = 1, + SECCOMP_NOTIFY_REPLIED = 2, +}; + +struct seccomp_knotif { + struct task_struct *task; + u64 id; + const struct seccomp_data *data; + enum notify_state state; + int error; + long int val; + u32 flags; + struct completion ready; + struct list_head list; + struct list_head addfd; +}; + +struct seccomp_kaddfd { + struct file *file; + int fd; + unsigned int flags; + __u32 ioctl_flags; + union { + bool setfd; + int ret; + }; + struct completion completion; + struct list_head list; +}; + +struct notification { + atomic_t requests; + u32 flags; + u64 next_id; + struct list_head notifications; +}; + +struct seccomp_log_name { + u32 log; + const char *name; +}; + +struct ftrace_func_entry { + struct hlist_node hlist; + long unsigned int ip; + long unsigned int direct; +}; + +enum ftrace_bug_type { + FTRACE_BUG_UNKNOWN = 0, + FTRACE_BUG_INIT = 1, + FTRACE_BUG_NOP = 2, + FTRACE_BUG_CALL = 3, + FTRACE_BUG_UPDATE = 4, +}; + +struct ftrace_mod_load { + struct list_head list; + char *func; + char *module; + int enable; +}; + +enum { + FTRACE_HASH_FL_MOD = 1, +}; + +enum { + FTRACE_MODIFY_ENABLE_FL = 1, + FTRACE_MODIFY_MAY_SLEEP_FL = 2, +}; + +struct ftrace_profile { + struct hlist_node node; + long unsigned int ip; + long unsigned int counter; + long long unsigned int time; + long long unsigned int time_squared; +}; + +struct ftrace_profile_page { + struct ftrace_profile_page *next; + long unsigned int index; + struct ftrace_profile records[0]; +}; + +struct ftrace_profile_stat { + atomic_t disabled; + struct hlist_head *hash; + struct ftrace_profile_page *pages; + struct ftrace_profile_page *start; + struct tracer_stat stat; +}; + +struct profile_fgraph_data { + long long unsigned int calltime; + long long unsigned int subtime; + long long unsigned int sleeptime; +}; + +struct ftrace_func_probe { + struct ftrace_probe_ops *probe_ops; + struct ftrace_ops ops; + struct trace_array *tr; + struct list_head list; + void *data; + int ref; +}; + +struct ftrace_page { + struct ftrace_page *next; + struct dyn_ftrace *records; + int index; + int order; +}; + +struct ftrace_rec_iter { + struct ftrace_page *pg; + int index; +}; + +struct ftrace_iterator { + loff_t pos; + loff_t func_pos; + loff_t mod_pos; + struct ftrace_page *pg; + struct dyn_ftrace *func; + struct ftrace_func_probe *probe; + struct ftrace_func_entry *probe_entry; + struct trace_parser parser; + struct ftrace_hash *hash; + struct ftrace_ops *ops; + struct trace_array *tr; + struct list_head *mod_list; + int pidx; + int idx; + unsigned int flags; +}; + +struct ftrace_glob { + char *search; + unsigned int len; + int type; +}; + +struct ftrace_func_map { + struct ftrace_func_entry entry; + void *data; +}; + +struct ftrace_func_mapper { + struct ftrace_hash hash; +}; + +enum graph_filter_type { + GRAPH_FILTER_NOTRACE = 0, + GRAPH_FILTER_FUNCTION = 1, +}; + +struct ftrace_graph_data { + struct ftrace_hash *hash; + struct ftrace_func_entry *entry; + int idx; + enum graph_filter_type type; + struct ftrace_hash *new_hash; + const struct seq_operations *seq_ops; + struct trace_parser parser; +}; + +struct ftrace_mod_func { + struct list_head list; + char *name; + long unsigned int ip; + unsigned int size; +}; + +struct ftrace_mod_map { + struct callback_head rcu; + struct list_head list; + struct module *mod; + long unsigned int start_addr; + long unsigned int end_addr; + struct list_head funcs; + unsigned int num_funcs; +}; + +struct ftrace_init_func { + struct list_head list; + long unsigned int ip; +}; + +struct kallsyms_data { + long unsigned int *addrs; + const char **syms; + size_t cnt; + size_t found; +}; + +struct trace_bprintk_fmt { + struct list_head list; + const char *fmt; +}; + +enum { + TRACE_GRAPH_FL = 1, + TRACE_GRAPH_DEPTH_START_BIT = 2, + TRACE_GRAPH_DEPTH_END_BIT = 3, + TRACE_GRAPH_NOTRACE_BIT = 4, +}; + +enum { + TRACE_NOP_OPT_ACCEPT = 1, + TRACE_NOP_OPT_REFUSE = 2, +}; + +struct fgraph_retaddr_ent { + long unsigned int func; + int depth; + long unsigned int retaddr; +} __attribute__((packed)); + +struct ftrace_graph_ent_entry { + struct trace_entry ent; + struct ftrace_graph_ent graph_ent; + long unsigned int args[0]; +}; + +struct fgraph_retaddr_ent_entry { + struct trace_entry ent; + struct fgraph_retaddr_ent graph_ent; +}; + +struct ftrace_graph_ret_entry { + struct trace_entry ent; + struct ftrace_graph_ret ret; + long long unsigned int calltime; + long long unsigned int rettime; +}; + +struct fgraph_cpu_data { + pid_t last_pid; + int depth; + int depth_irq; + int ignore; + long unsigned int enter_funcs[50]; +}; + +struct fgraph_ent_args { + struct ftrace_graph_ent_entry ent; + long unsigned int args[6]; +}; + +struct fgraph_data { + struct fgraph_cpu_data *cpu_data; + union { + struct fgraph_ent_args ent; + struct fgraph_retaddr_ent_entry rent; + }; + struct ftrace_graph_ret_entry ret; + int failed; + int cpu; +}; + +enum { + FLAGS_FILL_FULL = 268435456, + FLAGS_FILL_START = 536870912, + FLAGS_FILL_END = 805306368, +}; + +struct fgraph_times { + long long unsigned int calltime; + long long unsigned int sleeptime; +}; + +struct enable_trigger_data { + struct trace_event_file *file; + bool enable; + bool hist; +}; + +enum { + HIST_ERR_NONE = 0, + HIST_ERR_DUPLICATE_VAR = 1, + HIST_ERR_VAR_NOT_UNIQUE = 2, + HIST_ERR_TOO_MANY_VARS = 3, + HIST_ERR_MALFORMED_ASSIGNMENT = 4, + HIST_ERR_NAMED_MISMATCH = 5, + HIST_ERR_TRIGGER_EEXIST = 6, + HIST_ERR_TRIGGER_ENOENT_CLEAR = 7, + HIST_ERR_SET_CLOCK_FAIL = 8, + HIST_ERR_BAD_FIELD_MODIFIER = 9, + HIST_ERR_TOO_MANY_SUBEXPR = 10, + HIST_ERR_TIMESTAMP_MISMATCH = 11, + HIST_ERR_TOO_MANY_FIELD_VARS = 12, + HIST_ERR_EVENT_FILE_NOT_FOUND = 13, + HIST_ERR_HIST_NOT_FOUND = 14, + HIST_ERR_HIST_CREATE_FAIL = 15, + HIST_ERR_SYNTH_VAR_NOT_FOUND = 16, + HIST_ERR_SYNTH_EVENT_NOT_FOUND = 17, + HIST_ERR_SYNTH_TYPE_MISMATCH = 18, + HIST_ERR_SYNTH_COUNT_MISMATCH = 19, + HIST_ERR_FIELD_VAR_PARSE_FAIL = 20, + HIST_ERR_VAR_CREATE_FIND_FAIL = 21, + HIST_ERR_ONX_NOT_VAR = 22, + HIST_ERR_ONX_VAR_NOT_FOUND = 23, + HIST_ERR_ONX_VAR_CREATE_FAIL = 24, + HIST_ERR_FIELD_VAR_CREATE_FAIL = 25, + HIST_ERR_TOO_MANY_PARAMS = 26, + HIST_ERR_PARAM_NOT_FOUND = 27, + HIST_ERR_INVALID_PARAM = 28, + HIST_ERR_ACTION_NOT_FOUND = 29, + HIST_ERR_NO_SAVE_PARAMS = 30, + HIST_ERR_TOO_MANY_SAVE_ACTIONS = 31, + HIST_ERR_ACTION_MISMATCH = 32, + HIST_ERR_NO_CLOSING_PAREN = 33, + HIST_ERR_SUBSYS_NOT_FOUND = 34, + HIST_ERR_INVALID_SUBSYS_EVENT = 35, + HIST_ERR_INVALID_REF_KEY = 36, + HIST_ERR_VAR_NOT_FOUND = 37, + HIST_ERR_FIELD_NOT_FOUND = 38, + HIST_ERR_EMPTY_ASSIGNMENT = 39, + HIST_ERR_INVALID_SORT_MODIFIER = 40, + HIST_ERR_EMPTY_SORT_FIELD = 41, + HIST_ERR_TOO_MANY_SORT_FIELDS = 42, + HIST_ERR_INVALID_SORT_FIELD = 43, + HIST_ERR_INVALID_STR_OPERAND = 44, + HIST_ERR_EXPECT_NUMBER = 45, + HIST_ERR_UNARY_MINUS_SUBEXPR = 46, + HIST_ERR_DIVISION_BY_ZERO = 47, + HIST_ERR_NEED_NOHC_VAL = 48, +}; + +enum hist_field_fn { + HIST_FIELD_FN_NOP = 0, + HIST_FIELD_FN_VAR_REF = 1, + HIST_FIELD_FN_COUNTER = 2, + HIST_FIELD_FN_CONST = 3, + HIST_FIELD_FN_LOG2 = 4, + HIST_FIELD_FN_BUCKET = 5, + HIST_FIELD_FN_TIMESTAMP = 6, + HIST_FIELD_FN_CPU = 7, + HIST_FIELD_FN_COMM = 8, + HIST_FIELD_FN_STRING = 9, + HIST_FIELD_FN_DYNSTRING = 10, + HIST_FIELD_FN_RELDYNSTRING = 11, + HIST_FIELD_FN_PSTRING = 12, + HIST_FIELD_FN_S64 = 13, + HIST_FIELD_FN_U64 = 14, + HIST_FIELD_FN_S32 = 15, + HIST_FIELD_FN_U32 = 16, + HIST_FIELD_FN_S16 = 17, + HIST_FIELD_FN_U16 = 18, + HIST_FIELD_FN_S8 = 19, + HIST_FIELD_FN_U8 = 20, + HIST_FIELD_FN_UMINUS = 21, + HIST_FIELD_FN_MINUS = 22, + HIST_FIELD_FN_PLUS = 23, + HIST_FIELD_FN_DIV = 24, + HIST_FIELD_FN_MULT = 25, + HIST_FIELD_FN_DIV_POWER2 = 26, + HIST_FIELD_FN_DIV_NOT_POWER2 = 27, + HIST_FIELD_FN_DIV_MULT_SHIFT = 28, + HIST_FIELD_FN_EXECNAME = 29, + HIST_FIELD_FN_STACK = 30, +}; + +struct hist_trigger_data; + +struct hist_var { + char *name; + struct hist_trigger_data *hist_data; + unsigned int idx; +}; + +enum field_op_id { + FIELD_OP_NONE = 0, + FIELD_OP_PLUS = 1, + FIELD_OP_MINUS = 2, + FIELD_OP_UNARY_MINUS = 3, + FIELD_OP_DIV = 4, + FIELD_OP_MULT = 5, +}; + +struct hist_field { + struct ftrace_event_field *field; + long unsigned int flags; + long unsigned int buckets; + const char *type; + struct hist_field *operands[2]; + struct hist_trigger_data *hist_data; + enum hist_field_fn fn_num; + unsigned int ref; + unsigned int size; + unsigned int offset; + unsigned int is_signed; + struct hist_var var; + enum field_op_id operator; + char *system; + char *event_name; + char *name; + unsigned int var_ref_idx; + bool read_once; + unsigned int var_str_idx; + u64 constant; + u64 div_multiplier; +}; + +struct hist_trigger_attrs; + +struct action_data; + +struct field_var; + +struct field_var_hist; + +struct hist_trigger_data { + struct hist_field *fields[22]; + unsigned int n_vals; + unsigned int n_keys; + unsigned int n_fields; + unsigned int n_vars; + unsigned int n_var_str; + unsigned int key_size; + struct tracing_map_sort_key sort_keys[2]; + unsigned int n_sort_keys; + struct trace_event_file *event_file; + struct hist_trigger_attrs *attrs; + struct tracing_map *map; + bool enable_timestamps; + bool remove; + struct hist_field *var_refs[16]; + unsigned int n_var_refs; + struct action_data *actions[8]; + unsigned int n_actions; + struct field_var *field_vars[64]; + unsigned int n_field_vars; + unsigned int n_field_var_str; + struct field_var_hist *field_var_hists[64]; + unsigned int n_field_var_hists; + struct field_var *save_vars[64]; + unsigned int n_save_vars; + unsigned int n_save_var_str; +}; + +enum hist_field_flags { + HIST_FIELD_FL_HITCOUNT = 1, + HIST_FIELD_FL_KEY = 2, + HIST_FIELD_FL_STRING = 4, + HIST_FIELD_FL_HEX = 8, + HIST_FIELD_FL_SYM = 16, + HIST_FIELD_FL_SYM_OFFSET = 32, + HIST_FIELD_FL_EXECNAME = 64, + HIST_FIELD_FL_SYSCALL = 128, + HIST_FIELD_FL_STACKTRACE = 256, + HIST_FIELD_FL_LOG2 = 512, + HIST_FIELD_FL_TIMESTAMP = 1024, + HIST_FIELD_FL_TIMESTAMP_USECS = 2048, + HIST_FIELD_FL_VAR = 4096, + HIST_FIELD_FL_EXPR = 8192, + HIST_FIELD_FL_VAR_REF = 16384, + HIST_FIELD_FL_CPU = 32768, + HIST_FIELD_FL_ALIAS = 65536, + HIST_FIELD_FL_BUCKET = 131072, + HIST_FIELD_FL_CONST = 262144, + HIST_FIELD_FL_PERCENT = 524288, + HIST_FIELD_FL_GRAPH = 1048576, + HIST_FIELD_FL_COMM = 2097152, +}; + +struct var_defs { + unsigned int n_vars; + char *name[16]; + char *expr[16]; +}; + +struct hist_trigger_attrs { + char *keys_str; + char *vals_str; + char *sort_key_str; + char *name; + char *clock; + bool pause; + bool cont; + bool clear; + bool ts_in_usecs; + bool no_hitcount; + unsigned int map_bits; + char *assignment_str[16]; + unsigned int n_assignments; + char *action_str[8]; + unsigned int n_actions; + struct var_defs var_defs; +}; + +struct field_var { + struct hist_field *var; + struct hist_field *val; +}; + +struct field_var_hist { + struct hist_trigger_data *hist_data; + char *cmd; +}; + +enum handler_id { + HANDLER_ONMATCH = 1, + HANDLER_ONMAX = 2, + HANDLER_ONCHANGE = 3, +}; + +enum action_id { + ACTION_SAVE = 1, + ACTION_TRACE = 2, + ACTION_SNAPSHOT = 3, +}; + +typedef void (*action_fn_t)(struct hist_trigger_data *, struct tracing_map_elt *, struct trace_buffer *, void *, struct ring_buffer_event *, void *, struct action_data *, u64 *); + +typedef bool (*check_track_val_fn_t)(u64, u64); + +struct action_data { + enum handler_id handler; + enum action_id action; + char *action_name; + action_fn_t fn; + unsigned int n_params; + char *params[64]; + unsigned int var_ref_idx[64]; + struct synth_event *synth_event; + bool use_trace_keyword; + char *synth_event_name; + union { + struct { + char *event; + char *event_system; + } match_data; + struct { + char *var_str; + struct hist_field *var_ref; + struct hist_field *track_var; + check_track_val_fn_t check_val; + action_fn_t save_data; + } track_data; + }; +}; + +struct track_data { + u64 track_val; + bool updated; + unsigned int key_len; + void *key; + struct tracing_map_elt elt; + struct action_data *action_data; + struct hist_trigger_data *hist_data; +}; + +struct hist_elt_data { + char *comm; + u64 *var_ref_vals; + char **field_var_str; + int n_field_var_str; +}; + +struct snapshot_context { + struct tracing_map_elt *elt; + void *key; +}; + +typedef void (*synth_probe_func_t)(void *, u64 *, unsigned int *); + +struct hist_var_data { + struct list_head list; + struct hist_trigger_data *hist_data; +}; + +struct hist_pad { + long unsigned int entries[16]; + u64 var_ref_vals[16]; + char compound_key[384]; +}; + +struct hist_val_stat { + u64 max; + u64 total; +}; + +struct hist_file_data { + struct file *file; + u64 last_read; + u64 last_act; +}; + +struct trace_event_raw_error_report_template { + struct trace_entry ent; + enum error_detector error_detector; + long unsigned int id; + char __data[0]; +}; + +struct trace_event_data_offsets_error_report_template {}; + +typedef void (*btf_trace_error_report_end)(void *, enum error_detector, long unsigned int); + +struct trace_uprobe { + struct dyn_event devent; + struct uprobe_consumer consumer; + struct path path; + char *filename; + struct uprobe *uprobe; + long unsigned int offset; + long unsigned int ref_ctr_offset; + long unsigned int *nhits; + struct trace_probe tp; +}; + +struct uprobe_trace_entry_head { + struct trace_entry ent; + long unsigned int vaddr[0]; +}; + +struct uprobe_cpu_buffer { + struct mutex mutex; + void *buf; + int dsize; +}; + +typedef bool (*filter_func_t)(struct uprobe_consumer *, struct mm_struct *); + +enum bpf_perf_event_type { + BPF_PERF_EVENT_UNSPEC = 0, + BPF_PERF_EVENT_UPROBE = 1, + BPF_PERF_EVENT_URETPROBE = 2, + BPF_PERF_EVENT_KPROBE = 3, + BPF_PERF_EVENT_KRETPROBE = 4, + BPF_PERF_EVENT_TRACEPOINT = 5, + BPF_PERF_EVENT_EVENT = 6, +}; + +enum { + BPF_F_KPROBE_MULTI_RETURN = 1, +}; + +enum bpf_stats_type { + BPF_STATS_RUN_TIME = 0, +}; + +struct bpf_token_info { + __u64 allowed_cmds; + __u64 allowed_maps; + __u64 allowed_progs; + __u64 allowed_attachs; +}; + +struct bpf_tracing_link { + struct bpf_tramp_link link; + struct bpf_trampoline *trampoline; + struct bpf_prog *tgt_prog; +}; + +struct pcpu_gen_cookie { + local_t nesting; + u64 last; +}; + +struct gen_cookie { + struct pcpu_gen_cookie *local; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + atomic64_t forward_last; + atomic64_t reverse_last; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum bpf_audit { + BPF_AUDIT_LOAD = 0, + BPF_AUDIT_UNLOAD = 1, + BPF_AUDIT_MAX = 2, +}; + +struct bpf_prog_kstats { + u64 nsecs; + u64 cnt; + u64 misses; +}; + +struct bpf_perf_link { + struct bpf_link link; + struct file *perf_file; +}; + +typedef u64 (*btf_bpf_sys_bpf)(int, union bpf_attr *, u32); + +typedef u64 (*btf_bpf_sys_close)(u32); + +typedef u64 (*btf_bpf_kallsyms_lookup_name)(const char *, int, int, u64 *); + +struct bpf_iter_seq_map_info { + u32 map_id; +}; + +struct bpf_iter__bpf_map { + union { + struct bpf_iter_meta *meta; + }; + union { + struct bpf_map *map; + }; +}; + +struct bucket { + struct hlist_nulls_head head; + rqspinlock_t raw_lock; +}; + +struct htab_elem; + +struct bpf_htab { + struct bpf_map map; + struct bpf_mem_alloc ma; + struct bpf_mem_alloc pcpu_ma; + struct bucket *buckets; + void *elems; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + union { + struct pcpu_freelist freelist; + struct bpf_lru lru; + }; + struct htab_elem **extra_elems; + struct percpu_counter pcount; + atomic_t count; + bool use_percpu_counter; + u32 n_buckets; + u32 elem_size; + u32 hashrnd; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct htab_elem { + union { + struct hlist_nulls_node hash_node; + struct { + void *padding; + union { + struct pcpu_freelist_node fnode; + struct htab_elem *batch_flink; + }; + }; + }; + union { + void *ptr_to_pptr; + struct bpf_lru_node lru_node; + }; + u32 hash; + long: 0; + char key[0]; +}; + +struct bpf_iter_seq_hash_map_info { + struct bpf_map *map; + struct bpf_htab *htab; + void *percpu_value_buf; + u32 bucket_id; + u32 skip_elems; +}; + +struct bpf_bloom_filter { + struct bpf_map map; + u32 bitset_mask; + u32 hash_seed; + u32 nr_hash_funcs; + long unsigned int bitset[0]; +}; + +enum { + BPF_RB_NO_WAKEUP = 1, + BPF_RB_FORCE_WAKEUP = 2, +}; + +enum { + BPF_RB_AVAIL_DATA = 0, + BPF_RB_RING_SIZE = 1, + BPF_RB_CONS_POS = 2, + BPF_RB_PROD_POS = 3, +}; + +enum { + BPF_RINGBUF_BUSY_BIT = 2147483648, + BPF_RINGBUF_DISCARD_BIT = 1073741824, + BPF_RINGBUF_HDR_SZ = 8, +}; + +struct bpf_ringbuf { + wait_queue_head_t waitq; + struct irq_work work; + u64 mask; + struct page **pages; + int nr_pages; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + rqspinlock_t spinlock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + atomic_t busy; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long unsigned int consumer_pos; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long unsigned int producer_pos; + long unsigned int pending_pos; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + char data[0]; +}; + +struct bpf_ringbuf_map { + struct bpf_map map; + struct bpf_ringbuf *rb; +}; + +struct bpf_ringbuf_hdr { + u32 len; + u32 pg_off; +}; + +typedef u64 (*btf_bpf_ringbuf_reserve)(struct bpf_map *, u64, u64); + +typedef u64 (*btf_bpf_ringbuf_submit)(void *, u64); + +typedef u64 (*btf_bpf_ringbuf_discard)(void *, u64); + +typedef u64 (*btf_bpf_ringbuf_output)(struct bpf_map *, void *, u64, u64); + +typedef u64 (*btf_bpf_ringbuf_query)(struct bpf_map *, u64); + +typedef u64 (*btf_bpf_ringbuf_reserve_dynptr)(struct bpf_map *, u32, u64, struct bpf_dynptr_kern *); + +typedef u64 (*btf_bpf_ringbuf_submit_dynptr)(struct bpf_dynptr_kern *, u64); + +typedef u64 (*btf_bpf_ringbuf_discard_dynptr)(struct bpf_dynptr_kern *, u64); + +typedef u64 (*btf_bpf_user_ringbuf_drain)(struct bpf_map *, void *, void *, u64); + +struct bpf_mem_cache { + struct llist_head free_llist; + local_t active; + struct llist_head free_llist_extra; + struct irq_work refill_work; + struct obj_cgroup *objcg; + int unit_size; + int free_cnt; + int low_watermark; + int high_watermark; + int batch; + int percpu_size; + bool draining; + struct bpf_mem_cache *tgt; + struct llist_head free_by_rcu; + struct llist_node *free_by_rcu_tail; + struct llist_head waiting_for_gp; + struct llist_node *waiting_for_gp_tail; + struct callback_head rcu; + atomic_t call_rcu_in_progress; + struct llist_head free_llist_extra_rcu; + struct llist_head free_by_rcu_ttrace; + struct llist_head waiting_for_gp_ttrace; + struct callback_head rcu_ttrace; + atomic_t call_rcu_ttrace_in_progress; +}; + +struct bpf_mem_caches { + struct bpf_mem_cache cache[11]; +}; + +struct range_node { + struct rb_node rn_rbnode; + struct rb_node rb_range_size; + u32 rn_start; + u32 rn_last; + u32 __rn_subtree_last; +}; + +struct bpf_netns_link { + struct bpf_link link; + struct net *net; + struct list_head node; + enum netns_bpf_attach_type netns_type; +}; + +typedef u64 (*btf_bpf_cgrp_storage_get)(struct bpf_map *, struct cgroup *, void *, u64, gfp_t); + +typedef u64 (*btf_bpf_cgrp_storage_delete)(struct bpf_map *, struct cgroup *); + +struct bpf_cpumask { + cpumask_t cpumask; + refcount_t usage; +}; + +enum btf_field_iter_kind { + BTF_FIELD_ITER_IDS = 0, + BTF_FIELD_ITER_STRS = 1, +}; + +struct btf_field_desc { + int t_off_cnt; + int t_offs[2]; + int m_sz; + int m_off_cnt; + int m_offs[1]; +}; + +struct btf_field_iter { + struct btf_field_desc desc; + void *p; + int m_idx; + int off_idx; + int vlen; +}; + +struct btf_relocate { + struct btf *btf; + const struct btf *base_btf; + const struct btf *dist_base_btf; + unsigned int nr_base_types; + unsigned int nr_split_types; + unsigned int nr_dist_base_types; + int dist_str_len; + int base_str_len; + __u32 *id_map; + __u32 *str_map; +}; + +struct btf_name_info { + const char *name; + bool needs_size: 1; + unsigned int size: 31; + __u32 id; +}; + +struct bpf_iter_kmem_cache { + __u64 __opaque[1]; +}; + +struct bpf_iter_kmem_cache_kern { + struct kmem_cache *pos; +}; + +struct bpf_iter__kmem_cache { + union { + struct bpf_iter_meta *meta; + }; + union { + struct kmem_cache *s; + }; +}; + +union kmem_cache_iter_priv { + struct bpf_iter_kmem_cache it; + struct bpf_iter_kmem_cache_kern kit; +}; + +struct callchain_cpus_entries { + struct callback_head callback_head; + struct perf_callchain_entry *cpu_entries[0]; +}; + +struct seqcount_rwlock { + seqcount_t seqcount; +}; + +typedef struct seqcount_rwlock seqcount_rwlock_t; + +struct uprobe { + struct rb_node rb_node; + refcount_t ref; + struct rw_semaphore register_rwsem; + struct rw_semaphore consumer_rwsem; + struct list_head pending_list; + struct list_head consumers; + struct inode *inode; + union { + struct callback_head rcu; + struct work_struct work; + }; + loff_t offset; + loff_t ref_ctr_offset; + long unsigned int flags; + struct arch_uprobe arch; +}; + +struct xol_area { + wait_queue_head_t wq; + long unsigned int *bitmap; + struct page *page; + long unsigned int vaddr; +}; + +struct delayed_uprobe { + struct list_head list; + struct uprobe *uprobe; + struct mm_struct *mm; +}; + +struct __uprobe_key { + struct inode *inode; + loff_t offset; +}; + +struct map_info___2 { + struct map_info___2 *next; + struct mm_struct *mm; + long unsigned int vaddr; +}; + +enum rseq_cpu_id_state { + RSEQ_CPU_ID_UNINITIALIZED = -1, + RSEQ_CPU_ID_REGISTRATION_FAILED = -2, +}; + +enum rseq_flags { + RSEQ_FLAG_UNREGISTER = 1, +}; + +enum rseq_cs_flags { + RSEQ_CS_FLAG_NO_RESTART_ON_PREEMPT = 1, + RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL = 2, + RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE = 4, +}; + +struct rseq_cs { + __u32 version; + __u32 flags; + __u64 start_ip; + __u64 post_commit_offset; + __u64 abort_ip; +}; + +struct trace_event_raw_rseq_update { + struct trace_entry ent; + s32 cpu_id; + s32 node_id; + s32 mm_cid; + char __data[0]; +}; + +struct trace_event_raw_rseq_ip_fixup { + struct trace_entry ent; + long unsigned int regs_ip; + long unsigned int start_ip; + long unsigned int post_commit_offset; + long unsigned int abort_ip; + char __data[0]; +}; + +struct trace_event_data_offsets_rseq_update {}; + +struct trace_event_data_offsets_rseq_ip_fixup {}; + +typedef void (*btf_trace_rseq_update)(void *, struct task_struct *); + +typedef void (*btf_trace_rseq_ip_fixup)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + +struct wb_stats { + long unsigned int nr_dirty; + long unsigned int nr_io; + long unsigned int nr_more_io; + long unsigned int nr_dirty_time; + long unsigned int nr_writeback; + long unsigned int nr_reclaimable; + long unsigned int nr_dirtied; + long unsigned int nr_written; + long unsigned int dirty_thresh; + long unsigned int wb_thresh; +}; + +struct alloc_context { + struct zonelist *zonelist; + nodemask_t *nodemask; + struct zoneref *preferred_zoneref; + int migratetype; + enum zone_type highest_zoneidx; + bool spread_dirty_pages; +}; + +struct trace_event_raw_mm_compaction_isolate_template { + struct trace_entry ent; + long unsigned int start_pfn; + long unsigned int end_pfn; + long unsigned int nr_scanned; + long unsigned int nr_taken; + char __data[0]; +}; + +struct trace_event_raw_mm_compaction_migratepages { + struct trace_entry ent; + long unsigned int nr_migrated; + long unsigned int nr_failed; + char __data[0]; +}; + +struct trace_event_raw_mm_compaction_begin { + struct trace_entry ent; + long unsigned int zone_start; + long unsigned int migrate_pfn; + long unsigned int free_pfn; + long unsigned int zone_end; + bool sync; + char __data[0]; +}; + +struct trace_event_raw_mm_compaction_end { + struct trace_entry ent; + long unsigned int zone_start; + long unsigned int migrate_pfn; + long unsigned int free_pfn; + long unsigned int zone_end; + bool sync; + int status; + char __data[0]; +}; + +struct trace_event_raw_mm_compaction_try_to_compact_pages { + struct trace_entry ent; + int order; + long unsigned int gfp_mask; + int prio; + char __data[0]; +}; + +struct trace_event_raw_mm_compaction_suitable_template { + struct trace_entry ent; + int nid; + enum zone_type idx; + int order; + int ret; + char __data[0]; +}; + +struct trace_event_raw_mm_compaction_defer_template { + struct trace_entry ent; + int nid; + enum zone_type idx; + int order; + unsigned int considered; + unsigned int defer_shift; + int order_failed; + char __data[0]; +}; + +struct trace_event_raw_mm_compaction_kcompactd_sleep { + struct trace_entry ent; + int nid; + char __data[0]; +}; + +struct trace_event_raw_kcompactd_wake_template { + struct trace_entry ent; + int nid; + int order; + enum zone_type highest_zoneidx; + char __data[0]; +}; + +struct trace_event_data_offsets_mm_compaction_isolate_template {}; + +struct trace_event_data_offsets_mm_compaction_migratepages {}; + +struct trace_event_data_offsets_mm_compaction_begin {}; + +struct trace_event_data_offsets_mm_compaction_end {}; + +struct trace_event_data_offsets_mm_compaction_try_to_compact_pages {}; + +struct trace_event_data_offsets_mm_compaction_suitable_template {}; + +struct trace_event_data_offsets_mm_compaction_defer_template {}; + +struct trace_event_data_offsets_mm_compaction_kcompactd_sleep {}; + +struct trace_event_data_offsets_kcompactd_wake_template {}; + +typedef void (*btf_trace_mm_compaction_isolate_migratepages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + +typedef void (*btf_trace_mm_compaction_isolate_freepages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + +typedef void (*btf_trace_mm_compaction_fast_isolate_freepages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); + +typedef void (*btf_trace_mm_compaction_migratepages)(void *, unsigned int, unsigned int); + +typedef void (*btf_trace_mm_compaction_begin)(void *, struct compact_control *, long unsigned int, long unsigned int, bool); + +typedef void (*btf_trace_mm_compaction_end)(void *, struct compact_control *, long unsigned int, long unsigned int, bool, int); + +typedef void (*btf_trace_mm_compaction_try_to_compact_pages)(void *, int, gfp_t, int); + +typedef void (*btf_trace_mm_compaction_finished)(void *, struct zone *, int, int); + +typedef void (*btf_trace_mm_compaction_suitable)(void *, struct zone *, int, int); + +typedef void (*btf_trace_mm_compaction_deferred)(void *, struct zone *, int); + +typedef void (*btf_trace_mm_compaction_defer_compaction)(void *, struct zone *, int); + +typedef void (*btf_trace_mm_compaction_defer_reset)(void *, struct zone *, int); + +typedef void (*btf_trace_mm_compaction_kcompactd_sleep)(void *, int); + +typedef void (*btf_trace_mm_compaction_wakeup_kcompactd)(void *, int, int, enum zone_type); + +typedef void (*btf_trace_mm_compaction_kcompactd_wake)(void *, int, int, enum zone_type); + +typedef enum { + ISOLATE_ABORT = 0, + ISOLATE_NONE = 1, + ISOLATE_SUCCESS = 2, +} isolate_migrate_t; + +enum { + FOLL_TOUCH = 65536, + FOLL_TRIED = 131072, + FOLL_REMOTE = 262144, + FOLL_PIN = 524288, + FOLL_FAST_ONLY = 1048576, + FOLL_UNLOCKABLE = 2097152, + FOLL_MADV_POPULATE = 4194304, +}; + +struct follow_page_context { + struct dev_pagemap *pgmap; + unsigned int page_mask; +}; + +struct pages_or_folios { + union { + struct page **pages; + struct folio **folios; + void **entries; + }; + bool has_folios; + long int nr_entries; +}; + +struct trace_event_raw_tlb_flush { + struct trace_entry ent; + int reason; + long unsigned int pages; + char __data[0]; +}; + +struct trace_event_data_offsets_tlb_flush {}; + +typedef void (*btf_trace_tlb_flush)(void *, int, long unsigned int); + +struct trace_event_raw_mm_migrate_pages { + struct trace_entry ent; + long unsigned int succeeded; + long unsigned int failed; + long unsigned int thp_succeeded; + long unsigned int thp_failed; + long unsigned int thp_split; + long unsigned int large_folio_split; + enum migrate_mode mode; + int reason; + char __data[0]; +}; + +struct trace_event_raw_mm_migrate_pages_start { + struct trace_entry ent; + enum migrate_mode mode; + int reason; + char __data[0]; +}; + +struct trace_event_raw_migration_pte { + struct trace_entry ent; + long unsigned int addr; + long unsigned int pte; + int order; + char __data[0]; +}; + +struct trace_event_data_offsets_mm_migrate_pages {}; + +struct trace_event_data_offsets_mm_migrate_pages_start {}; + +struct trace_event_data_offsets_migration_pte {}; + +typedef void (*btf_trace_mm_migrate_pages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, enum migrate_mode, int); + +typedef void (*btf_trace_mm_migrate_pages_start)(void *, enum migrate_mode, int); + +typedef void (*btf_trace_set_migration_pte)(void *, long unsigned int, long unsigned int, int); + +typedef void (*btf_trace_remove_migration_pte)(void *, long unsigned int, long unsigned int, int); + +struct folio_referenced_arg { + int mapcount; + int referenced; + vm_flags_t vm_flags; + struct mem_cgroup *memcg; +}; + +struct wrprotect_file_state { + int cleaned; + long unsigned int pgoff; + long unsigned int pfn; + long unsigned int nr_pages; +}; + +typedef unsigned int acr_flags_t; + +typedef int fpi_t; + +enum rmqueue_mode { + RMQUEUE_NORMAL = 0, + RMQUEUE_CMA = 1, + RMQUEUE_CLAIM = 2, + RMQUEUE_STEAL = 3, +}; + +struct swap_iocb { + struct kiocb iocb; + struct bio_vec bvec[32]; + int pages; + int len; +}; + +struct dma_block { + struct dma_block *next_block; + dma_addr_t dma; +}; + +struct dma_pool { + struct list_head page_list; + spinlock_t lock; + struct dma_block *next_block; + size_t nr_blocks; + size_t nr_active; + size_t nr_pages; + struct device *dev; + unsigned int size; + unsigned int allocation; + unsigned int boundary; + int node; + char name[32]; + struct list_head pools; +}; + +struct dma_page { + struct list_head page_list; + void *vaddr; + dma_addr_t dma; +}; + +struct nodemask_scratch { + nodemask_t mask1; + nodemask_t mask2; +}; + +struct sp_node { + struct rb_node nd; + long unsigned int start; + long unsigned int end; + struct mempolicy *policy; +}; + +struct weighted_interleave_state { + bool mode_auto; + u8 iw_table[0]; +}; + +struct mempolicy_operations { + int (*create)(struct mempolicy *, const nodemask_t *); + void (*rebind)(struct mempolicy *, const nodemask_t *); +}; + +struct migration_mpol { + struct mempolicy *pol; + long unsigned int ilx; +}; + +struct queue_pages { + struct list_head *pagelist; + long unsigned int flags; + nodemask_t *nmask; + long unsigned int start; + long unsigned int end; + struct vm_area_struct *first; + struct folio *large; + long int nr_failed; +}; + +struct iw_node_attr { + struct kobj_attribute kobj_attr; + int nid; +}; + +struct sysfs_wi_group { + struct kobject wi_kobj; + struct mutex kobj_lock; + struct iw_node_attr *nattrs[0]; +}; + +struct memory_tier { + struct list_head list; + struct list_head memory_types; + int adistance_start; + struct device dev; + nodemask_t lower_tier_mask; +}; + +struct memory_dev_type { + struct list_head tier_sibling; + struct list_head list; + int adistance; + nodemask_t nodes; + struct kref kref; +}; + +struct demotion_nodes { + nodemask_t preferred; +}; + +struct node_memory_type_map { + struct memory_dev_type *memtype; + int map_count; +}; + +enum scan_result { + SCAN_FAIL = 0, + SCAN_SUCCEED = 1, + SCAN_PMD_NULL = 2, + SCAN_PMD_NONE = 3, + SCAN_PMD_MAPPED = 4, + SCAN_EXCEED_NONE_PTE = 5, + SCAN_EXCEED_SWAP_PTE = 6, + SCAN_EXCEED_SHARED_PTE = 7, + SCAN_PTE_NON_PRESENT = 8, + SCAN_PTE_UFFD_WP = 9, + SCAN_PTE_MAPPED_HUGEPAGE = 10, + SCAN_PAGE_RO = 11, + SCAN_LACK_REFERENCED_PAGE = 12, + SCAN_PAGE_NULL = 13, + SCAN_SCAN_ABORT = 14, + SCAN_PAGE_COUNT = 15, + SCAN_PAGE_LRU = 16, + SCAN_PAGE_LOCK = 17, + SCAN_PAGE_ANON = 18, + SCAN_PAGE_COMPOUND = 19, + SCAN_ANY_PROCESS = 20, + SCAN_VMA_NULL = 21, + SCAN_VMA_CHECK = 22, + SCAN_ADDRESS_RANGE = 23, + SCAN_DEL_PAGE_LRU = 24, + SCAN_ALLOC_HUGE_PAGE_FAIL = 25, + SCAN_CGROUP_CHARGE_FAIL = 26, + SCAN_TRUNCATED = 27, + SCAN_PAGE_HAS_PRIVATE = 28, + SCAN_STORE_FAILED = 29, + SCAN_COPY_MC = 30, + SCAN_PAGE_FILLED = 31, +}; + +struct trace_event_raw_mm_khugepaged_scan_pmd { + struct trace_entry ent; + struct mm_struct *mm; + long unsigned int pfn; + bool writable; + int referenced; + int none_or_zero; + int status; + int unmapped; + char __data[0]; +}; + +struct trace_event_raw_mm_collapse_huge_page { + struct trace_entry ent; + struct mm_struct *mm; + int isolated; + int status; + char __data[0]; +}; + +struct trace_event_raw_mm_collapse_huge_page_isolate { + struct trace_entry ent; + long unsigned int pfn; + int none_or_zero; + int referenced; + bool writable; + int status; + char __data[0]; +}; + +struct trace_event_raw_mm_collapse_huge_page_swapin { + struct trace_entry ent; + struct mm_struct *mm; + int swapped_in; + int referenced; + int ret; + char __data[0]; +}; + +struct trace_event_raw_mm_khugepaged_scan_file { + struct trace_entry ent; + struct mm_struct *mm; + long unsigned int pfn; + u32 __data_loc_filename; + int present; + int swap; + int result; + char __data[0]; +}; + +struct trace_event_raw_mm_khugepaged_collapse_file { + struct trace_entry ent; + struct mm_struct *mm; + long unsigned int hpfn; + long unsigned int index; + long unsigned int addr; + bool is_shmem; + u32 __data_loc_filename; + int nr; + int result; + char __data[0]; +}; + +struct trace_event_data_offsets_mm_khugepaged_scan_pmd {}; + +struct trace_event_data_offsets_mm_collapse_huge_page {}; + +struct trace_event_data_offsets_mm_collapse_huge_page_isolate {}; + +struct trace_event_data_offsets_mm_collapse_huge_page_swapin {}; + +struct trace_event_data_offsets_mm_khugepaged_scan_file { + u32 filename; + const void *filename_ptr_; +}; + +struct trace_event_data_offsets_mm_khugepaged_collapse_file { + u32 filename; + const void *filename_ptr_; +}; + +typedef void (*btf_trace_mm_khugepaged_scan_pmd)(void *, struct mm_struct *, struct folio *, bool, int, int, int, int); + +typedef void (*btf_trace_mm_collapse_huge_page)(void *, struct mm_struct *, int, int); + +typedef void (*btf_trace_mm_collapse_huge_page_isolate)(void *, struct folio *, int, int, bool, int); + +typedef void (*btf_trace_mm_collapse_huge_page_swapin)(void *, struct mm_struct *, int, int, int); + +typedef void (*btf_trace_mm_khugepaged_scan_file)(void *, struct mm_struct *, struct folio *, struct file *, int, int, int); + +typedef void (*btf_trace_mm_khugepaged_collapse_file)(void *, struct mm_struct *, struct folio *, long unsigned int, long unsigned int, bool, struct file *, int, int); + +struct collapse_control { + bool is_khugepaged; + u32 node_load[1024]; + nodemask_t alloc_nmask; +}; + +struct khugepaged_mm_slot { + struct mm_slot slot; +}; + +struct khugepaged_scan { + struct list_head mm_head; + struct khugepaged_mm_slot *mm_slot; + long unsigned int address; +}; + +enum { + RES_USAGE = 0, + RES_RSVD_USAGE = 1, + RES_LIMIT = 2, + RES_RSVD_LIMIT = 3, + RES_MAX_USAGE = 4, + RES_RSVD_MAX_USAGE = 5, + RES_FAILCNT = 6, + RES_RSVD_FAILCNT = 7, +}; + +struct trace_event_raw_test_pages_isolated { + struct trace_entry ent; + long unsigned int start_pfn; + long unsigned int end_pfn; + long unsigned int fin_pfn; + char __data[0]; +}; + +struct trace_event_data_offsets_test_pages_isolated {}; + +typedef void (*btf_trace_test_pages_isolated)(void *, long unsigned int, long unsigned int, long unsigned int); + +struct trace_event_raw_cma_release { + struct trace_entry ent; + u32 __data_loc_name; + long unsigned int pfn; + const struct page *page; + long unsigned int count; + char __data[0]; +}; + +struct trace_event_raw_cma_alloc_start { + struct trace_entry ent; + u32 __data_loc_name; + long unsigned int count; + unsigned int align; + char __data[0]; +}; + +struct trace_event_raw_cma_alloc_finish { + struct trace_entry ent; + u32 __data_loc_name; + long unsigned int pfn; + const struct page *page; + long unsigned int count; + unsigned int align; + int errorno; + char __data[0]; +}; + +struct trace_event_raw_cma_alloc_busy_retry { + struct trace_entry ent; + u32 __data_loc_name; + long unsigned int pfn; + const struct page *page; + long unsigned int count; + unsigned int align; + char __data[0]; +}; + +struct trace_event_data_offsets_cma_release { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_cma_alloc_start { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_cma_alloc_finish { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_cma_alloc_busy_retry { + u32 name; + const void *name_ptr_; +}; + +typedef void (*btf_trace_cma_release)(void *, const char *, long unsigned int, const struct page *, long unsigned int); + +typedef void (*btf_trace_cma_alloc_start)(void *, const char *, long unsigned int, unsigned int); + +typedef void (*btf_trace_cma_alloc_finish)(void *, const char *, long unsigned int, const struct page *, long unsigned int, unsigned int, int); + +typedef void (*btf_trace_cma_alloc_busy_retry)(void *, const char *, long unsigned int, const struct page *, long unsigned int, unsigned int); + +enum cma_flags { + CMA_RESERVE_PAGES_ON_ERROR = 0, + CMA_ZONES_VALID = 1, + CMA_ZONES_INVALID = 2, + CMA_ACTIVATED = 3, +}; + +struct cma_init_memrange { + phys_addr_t base; + phys_addr_t size; + struct list_head list; +}; + +enum { + BAD_STACK = -1, + NOT_STACK = 0, + GOOD_FRAME = 1, + GOOD_STACK = 2, +}; + +enum hmm_pfn_flags { + HMM_PFN_VALID = 9223372036854775808ULL, + HMM_PFN_WRITE = 4611686018427387904ULL, + HMM_PFN_ERROR = 2305843009213693952ULL, + HMM_PFN_DMA_MAPPED = 1152921504606846976ULL, + HMM_PFN_P2PDMA = 576460752303423488ULL, + HMM_PFN_P2PDMA_BUS = 288230376151711744ULL, + HMM_PFN_ORDER_SHIFT = 53ULL, + HMM_PFN_REQ_FAULT = 9223372036854775808ULL, + HMM_PFN_REQ_WRITE = 4611686018427387904ULL, + HMM_PFN_FLAGS = 18437736874454810624ULL, +}; + +struct hmm_range { + struct mmu_interval_notifier *notifier; + long unsigned int notifier_seq; + long unsigned int start; + long unsigned int end; + long unsigned int *hmm_pfns; + long unsigned int default_flags; + long unsigned int pfn_flags_mask; + void *dev_private_owner; +}; + +struct hmm_dma_map { + struct dma_iova_state state; + long unsigned int *pfn_list; + dma_addr_t *dma_list; + size_t dma_entry_size; +}; + +struct hmm_vma_walk { + struct hmm_range *range; + long unsigned int last; +}; + +enum { + HMM_NEED_FAULT = 1, + HMM_NEED_WRITE_FAULT = 2, + HMM_NEED_ALL_BITS = 3, +}; + +enum { + HMM_PFN_INOUT_FLAGS = 2017612633061982208ULL, +}; + +enum { + PAGE_REPORTING_IDLE = 0, + PAGE_REPORTING_REQUESTED = 1, + PAGE_REPORTING_ACTIVE = 2, +}; + +enum super_iter_flags_t { + SUPER_ITER_EXCL = 1, + SUPER_ITER_UNLOCKED = 2, + SUPER_ITER_REVERSE = 4, +}; + +union pipe_index { + long unsigned int head_tail; + struct { + pipe_index_t head; + pipe_index_t tail; + }; +}; + +struct file_clone_range { + __s64 src_fd; + __u64 src_offset; + __u64 src_length; + __u64 dest_offset; +}; + +struct fsuuid2 { + __u8 len; + __u8 uuid[16]; +}; + +struct fs_sysfs_path { + __u8 len; + __u8 name[128]; +}; + +struct space_resv { + __s16 l_type; + __s16 l_whence; + __s64 l_start; + __s64 l_len; + __s32 l_sysid; + __u32 l_pid; + __s32 l_pad[4]; +}; + +struct space_resv_32 { + __s16 l_type; + __s16 l_whence; + __s64 l_start; + __s64 l_len; + __s32 l_sysid; + __u32 l_pid; + __s32 l_pad[4]; +} __attribute__((packed)); + +struct fiemap { + __u64 fm_start; + __u64 fm_length; + __u32 fm_flags; + __u32 fm_mapped_extents; + __u32 fm_extent_count; + __u32 fm_reserved; + struct fiemap_extent fm_extents[0]; +}; + +typedef struct { + long unsigned int fds_bits[16]; +} __kernel_fd_set; + +typedef __kernel_fd_set fd_set; + +struct poll_table_entry { + struct file *filp; + __poll_t key; + wait_queue_entry_t wait; + wait_queue_head_t *wait_address; +}; + +struct poll_table_page; + +struct poll_wqueues { + poll_table pt; + struct poll_table_page *table; + struct task_struct *polling_task; + int triggered; + int error; + int inline_index; + struct poll_table_entry inline_entries[9]; +}; + +struct poll_table_page { + struct poll_table_page *next; + struct poll_table_entry *entry; + struct poll_table_entry entries[0]; +}; + +enum poll_time_type { + PT_TIMEVAL = 0, + PT_OLD_TIMEVAL = 1, + PT_TIMESPEC = 2, + PT_OLD_TIMESPEC = 3, +}; + +typedef struct { + long unsigned int *in; + long unsigned int *out; + long unsigned int *ex; + long unsigned int *res_in; + long unsigned int *res_out; + long unsigned int *res_ex; +} fd_set_bits; + +struct sigset_argpack { + sigset_t *p; + size_t size; +}; + +struct poll_list { + struct poll_list *next; + unsigned int len; + struct pollfd entries[0]; +}; + +struct compat_sel_arg_struct { + compat_ulong_t n; + compat_uptr_t inp; + compat_uptr_t outp; + compat_uptr_t exp; + compat_uptr_t tvp; +}; + +struct compat_sigset_argpack { + compat_uptr_t p; + compat_size_t size; +}; + +struct xattr_args { + __u64 value; + __u32 size; + __u32 flags; +}; + +struct mnt_ns_info { + __u32 size; + __u32 nr_mounts; + __u64 mnt_ns_id; +}; + +struct ns_get_path_task_args { + const struct proc_ns_operations *ns_ops; + struct task_struct *task; +}; + +struct fsxattr { + __u32 fsx_xflags; + __u32 fsx_extsize; + __u32 fsx_nextents; + __u32 fsx_projid; + __u32 fsx_cowextsize; + unsigned char fsx_pad[8]; +}; + +struct file_attr { + __u64 fa_xflags; + __u32 fa_extsize; + __u32 fa_nextents; + __u32 fa_projid; + __u32 fa_cowextsize; +}; + +struct mpage_readpage_args { + struct bio *bio; + struct folio *folio; + unsigned int nr_pages; + bool is_readahead; + sector_t last_block_in_bio; + struct buffer_head map_bh; + long unsigned int first_logical_block; + get_block_t *get_block; +}; + +struct mpage_data { + struct bio *bio; + sector_t last_block_in_bio; + get_block_t *get_block; +}; + +typedef struct fsnotify_mark_connector *fsnotify_connp_t; + +struct inotify_event { + __s32 wd; + __u32 mask; + __u32 cookie; + __u32 len; + char name[0]; +}; + +struct epoll_event { + __poll_t events; + __u64 data; +} __attribute__((packed)); + +struct epoll_params { + __u32 busy_poll_usecs; + __u16 busy_poll_budget; + __u8 prefer_busy_poll; + __u8 __pad; +}; + +struct epoll_filefd { + struct file *file; + int fd; +} __attribute__((packed)); + +struct epitem; + +struct eppoll_entry { + struct eppoll_entry *next; + struct epitem *base; + wait_queue_entry_t wait; + wait_queue_head_t *whead; +}; + +struct eventpoll; + +struct epitem { + union { + struct rb_node rbn; + struct callback_head rcu; + }; + struct list_head rdllink; + struct epitem *next; + struct epoll_filefd ffd; + bool dying; + struct eppoll_entry *pwqlist; + struct eventpoll *ep; + struct hlist_node fllink; + struct wakeup_source *ws; + struct epoll_event event; +}; + +struct eventpoll { + struct mutex mtx; + wait_queue_head_t wq; + wait_queue_head_t poll_wait; + struct list_head rdllist; + spinlock_t lock; + struct rb_root_cached rbr; + struct epitem *ovflist; + struct wakeup_source *ws; + struct user_struct *user; + struct file *file; + u64 gen; + struct hlist_head refs; + u8 loop_check_depth; + refcount_t refcount; + unsigned int napi_id; + u32 busy_poll_usecs; + u16 busy_poll_budget; + bool prefer_busy_poll; +}; + +struct ep_pqueue { + poll_table pt; + struct epitem *epi; +}; + +struct epitems_head { + struct hlist_head epitems; + struct epitems_head *next; +}; + +struct kioctx; + +struct kioctx_table { + struct callback_head rcu; + unsigned int nr; + struct kioctx *table[0]; +}; + +typedef __kernel_ulong_t aio_context_t; + +enum { + IOCB_CMD_PREAD = 0, + IOCB_CMD_PWRITE = 1, + IOCB_CMD_FSYNC = 2, + IOCB_CMD_FDSYNC = 3, + IOCB_CMD_POLL = 5, + IOCB_CMD_NOOP = 6, + IOCB_CMD_PREADV = 7, + IOCB_CMD_PWRITEV = 8, +}; + +struct io_event { + __u64 data; + __u64 obj; + __s64 res; + __s64 res2; +}; + +struct iocb { + __u64 aio_data; + __u32 aio_key; + __kernel_rwf_t aio_rw_flags; + __u16 aio_lio_opcode; + __s16 aio_reqprio; + __u32 aio_fildes; + __u64 aio_buf; + __u64 aio_nbytes; + __s64 aio_offset; + __u64 aio_reserved2; + __u32 aio_flags; + __u32 aio_resfd; +}; + +typedef u32 compat_aio_context_t; + +typedef int kiocb_cancel_fn(struct kiocb *); + +struct aio_ring { + unsigned int id; + unsigned int nr; + unsigned int head; + unsigned int tail; + unsigned int magic; + unsigned int compat_features; + unsigned int incompat_features; + unsigned int header_length; + struct io_event io_events[0]; +}; + +struct kioctx_cpu; + +struct ctx_rq_wait; + +struct kioctx { + struct percpu_ref users; + atomic_t dead; + struct percpu_ref reqs; + long unsigned int user_id; + struct kioctx_cpu *cpu; + unsigned int req_batch; + unsigned int max_reqs; + unsigned int nr_events; + long unsigned int mmap_base; + long unsigned int mmap_size; + struct folio **ring_folios; + long int nr_pages; + struct rcu_work free_rwork; + struct ctx_rq_wait *rq_wait; + long: 64; + long: 64; + long: 64; + struct { + atomic_t reqs_available; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + }; + struct { + spinlock_t ctx_lock; + struct list_head active_reqs; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + }; + struct { + struct mutex ring_lock; + wait_queue_head_t wait; + long: 64; + }; + struct { + unsigned int tail; + unsigned int completed_events; + spinlock_t completion_lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + }; + struct folio *internal_folios[8]; + struct file *aio_ring_file; + unsigned int id; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct kioctx_cpu { + unsigned int reqs_available; +}; + +struct ctx_rq_wait { + struct completion comp; + atomic_t count; +}; + +struct fsync_iocb { + struct file *file; + struct work_struct work; + bool datasync; + struct cred *creds; +}; + +struct poll_iocb { + struct file *file; + struct wait_queue_head *head; + __poll_t events; + bool cancelled; + bool work_scheduled; + bool work_need_resched; + struct wait_queue_entry wait; + struct work_struct work; +}; + +struct aio_kiocb { + union { + struct file *ki_filp; + struct kiocb rw; + struct fsync_iocb fsync; + struct poll_iocb poll; + }; + struct kioctx *ki_ctx; + kiocb_cancel_fn *ki_cancel; + struct io_event ki_res; + struct list_head ki_list; + refcount_t ki_refcnt; + struct eventfd_ctx *ki_eventfd; +}; + +struct aio_waiter { + struct wait_queue_entry w; + size_t min_nr; +}; + +struct aio_poll_table { + struct poll_table_struct pt; + struct aio_kiocb *iocb; + bool queued; + int error; +}; + +struct __aio_sigset { + const sigset_t *sigmask; + size_t sigsetsize; +}; + +struct __compat_aio_sigset { + compat_uptr_t sigmask; + compat_size_t sigsetsize; +}; + +struct fscrypt_symlink_data { + __le16 len; + char encrypted_path[0]; +}; + +struct fscrypt_get_policy_ex_arg { + __u64 policy_size; + union { + __u8 version; + struct fscrypt_policy_v1 v1; + struct fscrypt_policy_v2 v2; + } policy; +}; + +struct elf_thread_core_info___2 { + struct elf_thread_core_info___2 *next; + struct task_struct *task; + struct elf_prstatus prstatus; + struct memelfnote notes[0]; +}; + +struct elf_note_info___2 { + struct elf_thread_core_info___2 *thread; + struct memelfnote psinfo; + struct memelfnote signote; + struct memelfnote auxv; + struct memelfnote files; + siginfo_t csigdata; + size_t size; + int thread_notes; +}; + +struct mb_cache { + struct hlist_bl_head *c_hash; + int c_bucket_bits; + long unsigned int c_max_entries; + spinlock_t c_list_lock; + struct list_head c_list; + long unsigned int c_entry_count; + struct shrinker *c_shrink; + struct work_struct c_shrink_work; +}; + +struct trace_event_raw_iomap_readpage_class { + struct trace_entry ent; + dev_t dev; + u64 ino; + int nr_pages; + char __data[0]; +}; + +struct trace_event_raw_iomap_range_class { + struct trace_entry ent; + dev_t dev; + u64 ino; + loff_t size; + loff_t offset; + u64 length; + char __data[0]; +}; + +struct trace_event_raw_iomap_class { + struct trace_entry ent; + dev_t dev; + u64 ino; + u64 addr; + loff_t offset; + u64 length; + u16 type; + u16 flags; + dev_t bdev; + char __data[0]; +}; + +struct trace_event_raw_iomap_add_to_ioend { + struct trace_entry ent; + dev_t dev; + u64 ino; + u64 pos; + u64 dirty_len; + u64 addr; + loff_t offset; + u64 length; + u16 type; + u16 flags; + dev_t bdev; + char __data[0]; +}; + +struct trace_event_raw_iomap_iter { + struct trace_entry ent; + dev_t dev; + u64 ino; + loff_t pos; + u64 length; + int status; + unsigned int flags; + const void *ops; + long unsigned int caller; + char __data[0]; +}; + +struct trace_event_raw_iomap_dio_rw_begin { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t isize; + loff_t pos; + size_t count; + size_t done_before; + int ki_flags; + unsigned int dio_flags; + bool aio; + char __data[0]; +}; + +struct trace_event_raw_iomap_dio_complete { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t isize; + loff_t pos; + int ki_flags; + bool aio; + int error; + ssize_t ret; + char __data[0]; +}; + +struct trace_event_data_offsets_iomap_readpage_class {}; + +struct trace_event_data_offsets_iomap_range_class {}; + +struct trace_event_data_offsets_iomap_class {}; + +struct trace_event_data_offsets_iomap_add_to_ioend {}; + +struct trace_event_data_offsets_iomap_iter {}; + +struct trace_event_data_offsets_iomap_dio_rw_begin {}; + +struct trace_event_data_offsets_iomap_dio_complete {}; + +typedef void (*btf_trace_iomap_readpage)(void *, struct inode *, int); + +typedef void (*btf_trace_iomap_readahead)(void *, struct inode *, int); + +typedef void (*btf_trace_iomap_writeback_folio)(void *, struct inode *, loff_t, u64); + +typedef void (*btf_trace_iomap_release_folio)(void *, struct inode *, loff_t, u64); + +typedef void (*btf_trace_iomap_invalidate_folio)(void *, struct inode *, loff_t, u64); + +typedef void (*btf_trace_iomap_dio_invalidate_fail)(void *, struct inode *, loff_t, u64); + +typedef void (*btf_trace_iomap_dio_rw_queued)(void *, struct inode *, loff_t, u64); + +typedef void (*btf_trace_iomap_iter_dstmap)(void *, struct inode *, struct iomap *); + +typedef void (*btf_trace_iomap_iter_srcmap)(void *, struct inode *, struct iomap *); + +typedef void (*btf_trace_iomap_add_to_ioend)(void *, struct inode *, u64, unsigned int, struct iomap *); + +typedef void (*btf_trace_iomap_iter)(void *, struct iomap_iter *, const void *, long unsigned int); + +typedef void (*btf_trace_iomap_dio_rw_begin)(void *, struct kiocb *, struct iov_iter *, unsigned int, size_t); + +typedef void (*btf_trace_iomap_dio_complete)(void *, struct kiocb *, int, ssize_t); + +struct iomap_swapfile_info { + struct iomap iomap; + struct swap_info_struct *sis; + uint64_t lowest_ppage; + uint64_t highest_ppage; + long unsigned int nr_pages; + int nr_extents; + struct file *file; +}; + +enum { + QUOTA_NL_C_UNSPEC = 0, + QUOTA_NL_C_WARNING = 1, + __QUOTA_NL_C_MAX = 2, +}; + +enum { + QUOTA_NL_A_UNSPEC = 0, + QUOTA_NL_A_QTYPE = 1, + QUOTA_NL_A_EXCESS_ID = 2, + QUOTA_NL_A_WARNING = 3, + QUOTA_NL_A_DEV_MAJOR = 4, + QUOTA_NL_A_DEV_MINOR = 5, + QUOTA_NL_A_CAUSED_ID = 6, + QUOTA_NL_A_PAD = 7, + __QUOTA_NL_A_MAX = 8, +}; + +typedef long int intptr_t; + +enum proc_mem_force { + PROC_MEM_FORCE_ALWAYS = 0, + PROC_MEM_FORCE_PTRACE = 1, + PROC_MEM_FORCE_NEVER = 2, +}; + +struct pid_entry { + const char *name; + unsigned int len; + umode_t mode; + const struct inode_operations *iop; + const struct file_operations *fop; + union proc_op op; +}; + +struct limit_names { + const char *name; + const char *unit; +}; + +struct map_files_info { + long unsigned int start; + long unsigned int end; + fmode_t mode; +}; + +struct timers_private { + struct pid *pid; + struct task_struct *task; + struct pid_namespace *ns; +}; + +struct tgid_iter { + unsigned int tgid; + struct task_struct *task; +}; + +typedef struct elf64_note Elf64_Nhdr; + +struct vmcoredd_header { + __u32 n_namesz; + __u32 n_descsz; + __u32 n_type; + __u8 name[8]; + __u8 dump_name[44]; +}; + +struct vmcore_range { + struct list_head list; + long long unsigned int paddr; + long long unsigned int size; + loff_t offset; +}; + +struct vmcoredd_data { + char dump_name[44]; + unsigned int size; + int (*vmcoredd_callback)(struct vmcoredd_data *, void *); +}; + +struct vmcoredd_node { + struct list_head list; + void *buf; + unsigned int size; +}; + +enum kpage_operation { + KPAGE_FLAGS = 0, + KPAGE_COUNT = 1, + KPAGE_CGROUP = 2, +}; + +struct configfs_buffer { + size_t count; + loff_t pos; + char *page; + struct configfs_item_operations *ops; + struct mutex mutex; + int needs_read_fill; + bool read_in_progress; + bool write_in_progress; + char *bin_buffer; + int bin_buffer_size; + int cb_max_size; + struct config_item *item; + struct module *owner; + union { + struct configfs_attribute *attr; + struct configfs_bin_attribute *bin_attr; + }; +}; + +struct fsmap { + __u32 fmr_device; + __u32 fmr_flags; + __u64 fmr_physical; + __u64 fmr_owner; + __u64 fmr_offset; + __u64 fmr_length; + __u64 fmr_reserved[3]; +}; + +struct ext4_fsmap { + struct list_head fmr_list; + dev_t fmr_device; + uint32_t fmr_flags; + uint64_t fmr_physical; + uint64_t fmr_owner; + uint64_t fmr_length; +}; + +struct ext4_fsmap_head { + uint32_t fmh_iflags; + uint32_t fmh_oflags; + unsigned int fmh_count; + unsigned int fmh_entries; + struct ext4_fsmap fmh_keys[2]; +}; + +typedef int (*ext4_fsmap_format_t)(struct ext4_fsmap *, void *); + +struct ext4_getfsmap_info { + struct ext4_fsmap_head *gfi_head; + ext4_fsmap_format_t gfi_formatter; + void *gfi_format_arg; + ext4_fsblk_t gfi_next_fsblk; + u32 gfi_dev; + ext4_group_t gfi_agno; + struct ext4_fsmap gfi_low; + struct ext4_fsmap gfi_high; + struct ext4_fsmap gfi_lastfree; + struct list_head gfi_meta_list; + bool gfi_last; +}; + +struct ext4_getfsmap_dev { + int (*gfd_fn)(struct super_block *, struct ext4_fsmap *, struct ext4_getfsmap_info *); + u32 gfd_dev; +}; + +typedef struct { + __le32 *p; + __le32 key; + struct buffer_head *bh; +} Indirect; + +struct fsuuid { + __u32 fsu_len; + __u32 fsu_flags; + __u8 fsu_uuid[0]; +}; + +struct move_extent { + __u32 reserved; + __u32 donor_fd; + __u64 orig_start; + __u64 donor_start; + __u64 len; + __u64 moved_len; +}; + +struct ext4_new_group_input { + __u32 group; + __u64 block_bitmap; + __u64 inode_bitmap; + __u64 inode_table; + __u32 blocks_count; + __u16 reserved_blocks; + __u16 unused; +}; + +struct compat_ext4_new_group_input { + u32 group; + compat_u64 block_bitmap; + compat_u64 inode_bitmap; + compat_u64 inode_table; + u32 blocks_count; + u16 reserved_blocks; + u16 unused; +} __attribute__((packed)); + +struct fsmap_head { + __u32 fmh_iflags; + __u32 fmh_oflags; + __u32 fmh_count; + __u32 fmh_entries; + __u64 fmh_reserved[6]; + struct fsmap fmh_keys[2]; + struct fsmap fmh_recs[0]; +}; + +typedef void ext4_update_sb_callback(struct ext4_super_block *, const void *); + +struct getfsmap_info { + struct super_block *gi_sb; + struct fsmap_head *gi_data; + unsigned int gi_idx; + __u32 gi_last_flags; +}; + +struct mmp_struct { + __le32 mmp_magic; + __le32 mmp_seq; + __le64 mmp_time; + char mmp_nodename[64]; + char mmp_bdevname[32]; + __le16 mmp_check_interval; + __le16 mmp_pad1; + __le32 mmp_pad2[226]; + __le32 mmp_checksum; +}; + +enum { + I_DATA_SEM_NORMAL = 0, + I_DATA_SEM_OTHER = 1, + I_DATA_SEM_QUOTA = 2, + I_DATA_SEM_EA = 3, +}; + +struct ext4_lazy_init { + long unsigned int li_state; + struct list_head li_request_list; + struct mutex li_list_mtx; +}; + +struct trace_event_raw_ext4_other_inode_update_time { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ino_t orig_ino; + uid_t uid; + gid_t gid; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_free_inode { + struct trace_entry ent; + dev_t dev; + ino_t ino; + uid_t uid; + gid_t gid; + __u64 blocks; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_request_inode { + struct trace_entry ent; + dev_t dev; + ino_t dir; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_allocate_inode { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ino_t dir; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_evict_inode { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int nlink; + char __data[0]; +}; + +struct trace_event_raw_ext4_drop_inode { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int drop; + char __data[0]; +}; + +struct trace_event_raw_ext4_nfs_commit_metadata { + struct trace_entry ent; + dev_t dev; + ino_t ino; + char __data[0]; +}; + +struct trace_event_raw_ext4_mark_inode_dirty { + struct trace_entry ent; + dev_t dev; + ino_t ino; + long unsigned int ip; + char __data[0]; +}; + +struct trace_event_raw_ext4_begin_ordered_truncate { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t new_size; + char __data[0]; +}; + +struct trace_event_raw_ext4__write_begin { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t pos; + unsigned int len; + char __data[0]; +}; + +struct trace_event_raw_ext4__write_end { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t pos; + unsigned int len; + unsigned int copied; + char __data[0]; +}; + +struct trace_event_raw_ext4_writepages { + struct trace_entry ent; + dev_t dev; + ino_t ino; + long int nr_to_write; + long int pages_skipped; + loff_t range_start; + loff_t range_end; + long unsigned int writeback_index; + int sync_mode; + char for_kupdate; + char range_cyclic; + char __data[0]; +}; + +struct trace_event_raw_ext4_da_write_folios_start { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t start_pos; + loff_t next_pos; + long int nr_to_write; + int sync_mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_da_write_folios_end { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t start_pos; + loff_t next_pos; + long int nr_to_write; + int ret; + char __data[0]; +}; + +struct trace_event_raw_ext4_da_write_pages_extent { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 lblk; + __u32 len; + __u32 flags; + char __data[0]; +}; + +struct trace_event_raw_ext4_writepages_result { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int ret; + int pages_written; + long int pages_skipped; + long unsigned int writeback_index; + int sync_mode; + char __data[0]; +}; + +struct trace_event_raw_ext4__folio_op { + struct trace_entry ent; + dev_t dev; + ino_t ino; + long unsigned int index; + char __data[0]; +}; + +struct trace_event_raw_ext4_invalidate_folio_op { + struct trace_entry ent; + dev_t dev; + ino_t ino; + long unsigned int index; + size_t offset; + size_t length; + char __data[0]; +}; + +struct trace_event_raw_ext4_discard_blocks { + struct trace_entry ent; + dev_t dev; + __u64 blk; + __u64 count; + char __data[0]; +}; + +struct trace_event_raw_ext4__mb_new_pa { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 pa_pstart; + __u64 pa_lstart; + __u32 pa_len; + char __data[0]; +}; + +struct trace_event_raw_ext4_mb_release_inode_pa { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 block; + __u32 count; + char __data[0]; +}; + +struct trace_event_raw_ext4_mb_release_group_pa { + struct trace_entry ent; + dev_t dev; + __u64 pa_pstart; + __u32 pa_len; + char __data[0]; +}; + +struct trace_event_raw_ext4_discard_preallocations { + struct trace_entry ent; + dev_t dev; + ino_t ino; + unsigned int len; + char __data[0]; +}; + +struct trace_event_raw_ext4_mb_discard_preallocations { + struct trace_entry ent; + dev_t dev; + int needed; + char __data[0]; +}; + +struct trace_event_raw_ext4_request_blocks { + struct trace_entry ent; + dev_t dev; + ino_t ino; + unsigned int len; + __u32 logical; + __u32 lleft; + __u32 lright; + __u64 goal; + __u64 pleft; + __u64 pright; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_ext4_allocate_blocks { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 block; + unsigned int len; + __u32 logical; + __u32 lleft; + __u32 lright; + __u64 goal; + __u64 pleft; + __u64 pright; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_ext4_free_blocks { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 block; + long unsigned int count; + int flags; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_sync_file_enter { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ino_t parent; + int datasync; + char __data[0]; +}; + +struct trace_event_raw_ext4_sync_file_exit { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int ret; + char __data[0]; +}; + +struct trace_event_raw_ext4_sync_fs { + struct trace_entry ent; + dev_t dev; + int wait; + char __data[0]; +}; + +struct trace_event_raw_ext4_alloc_da_blocks { + struct trace_entry ent; + dev_t dev; + ino_t ino; + unsigned int data_blocks; + char __data[0]; +}; + +struct trace_event_raw_ext4_mballoc_alloc { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u32 orig_logical; + int orig_start; + __u32 orig_group; + int orig_len; + __u32 goal_logical; + int goal_start; + __u32 goal_group; + int goal_len; + __u32 result_logical; + int result_start; + __u32 result_group; + int result_len; + __u16 found; + __u16 groups; + __u16 buddy; + __u16 flags; + __u16 tail; + __u8 cr; + char __data[0]; +}; + +struct trace_event_raw_ext4_mballoc_prealloc { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u32 orig_logical; + int orig_start; + __u32 orig_group; + int orig_len; + __u32 result_logical; + int result_start; + __u32 result_group; + int result_len; + char __data[0]; +}; + +struct trace_event_raw_ext4__mballoc { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int result_start; + __u32 result_group; + int result_len; + char __data[0]; +}; + +struct trace_event_raw_ext4_forget { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 block; + int is_metadata; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_da_update_reserve_space { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 i_blocks; + int used_blocks; + int reserved_data_blocks; + int quota_claim; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_da_reserve_space { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 i_blocks; + int reserve_blocks; + int reserved_data_blocks; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_da_release_space { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 i_blocks; + int freed_blocks; + int reserved_data_blocks; + __u16 mode; + char __data[0]; +}; + +struct trace_event_raw_ext4__bitmap_load { + struct trace_entry ent; + dev_t dev; + __u32 group; + char __data[0]; +}; + +struct trace_event_raw_ext4_read_block_bitmap_load { + struct trace_entry ent; + dev_t dev; + __u32 group; + bool prefetch; + char __data[0]; +}; + +struct trace_event_raw_ext4__fallocate_mode { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t offset; + loff_t len; + int mode; + char __data[0]; +}; + +struct trace_event_raw_ext4_fallocate_exit { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t pos; + unsigned int blocks; + int ret; + char __data[0]; +}; + +struct trace_event_raw_ext4_unlink_enter { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ino_t parent; + loff_t size; + char __data[0]; +}; + +struct trace_event_raw_ext4_unlink_exit { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int ret; + char __data[0]; +}; + +struct trace_event_raw_ext4__truncate { + struct trace_entry ent; + dev_t dev; + ino_t ino; + __u64 blocks; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_convert_to_initialized_enter { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t m_lblk; + unsigned int m_len; + ext4_lblk_t u_lblk; + unsigned int u_len; + ext4_fsblk_t u_pblk; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_convert_to_initialized_fastpath { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t m_lblk; + unsigned int m_len; + ext4_lblk_t u_lblk; + unsigned int u_len; + ext4_fsblk_t u_pblk; + ext4_lblk_t i_lblk; + unsigned int i_len; + ext4_fsblk_t i_pblk; + char __data[0]; +}; + +struct trace_event_raw_ext4__map_blocks_enter { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t lblk; + unsigned int len; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_ext4__map_blocks_exit { + struct trace_entry ent; + dev_t dev; + ino_t ino; + unsigned int flags; + ext4_fsblk_t pblk; + ext4_lblk_t lblk; + unsigned int len; + unsigned int mflags; + int ret; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_load_extent { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_fsblk_t pblk; + ext4_lblk_t lblk; + char __data[0]; +}; + +struct trace_event_raw_ext4_load_inode { + struct trace_entry ent; + dev_t dev; + ino_t ino; + char __data[0]; +}; + +struct trace_event_raw_ext4_journal_start_sb { + struct trace_entry ent; + dev_t dev; + long unsigned int ip; + int blocks; + int rsv_blocks; + int revoke_creds; + int type; + char __data[0]; +}; + +struct trace_event_raw_ext4_journal_start_inode { + struct trace_entry ent; + long unsigned int ino; + dev_t dev; + long unsigned int ip; + int blocks; + int rsv_blocks; + int revoke_creds; + int type; + char __data[0]; +}; + +struct trace_event_raw_ext4_journal_start_reserved { + struct trace_entry ent; + dev_t dev; + long unsigned int ip; + int blocks; + char __data[0]; +}; + +struct trace_event_raw_ext4__trim { + struct trace_entry ent; + int dev_major; + int dev_minor; + __u32 group; + int start; + int len; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_handle_unwritten_extents { + struct trace_entry ent; + dev_t dev; + ino_t ino; + int flags; + ext4_lblk_t lblk; + ext4_fsblk_t pblk; + unsigned int len; + unsigned int allocated; + ext4_fsblk_t newblk; + char __data[0]; +}; + +struct trace_event_raw_ext4_get_implied_cluster_alloc_exit { + struct trace_entry ent; + dev_t dev; + unsigned int flags; + ext4_lblk_t lblk; + ext4_fsblk_t pblk; + unsigned int len; + int ret; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_show_extent { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_fsblk_t pblk; + ext4_lblk_t lblk; + short unsigned int len; + char __data[0]; +}; + +struct trace_event_raw_ext4_remove_blocks { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t from; + ext4_lblk_t to; + ext4_fsblk_t ee_pblk; + ext4_lblk_t ee_lblk; + short unsigned int ee_len; + ext4_fsblk_t pc_pclu; + ext4_lblk_t pc_lblk; + int pc_state; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_rm_leaf { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t start; + ext4_lblk_t ee_lblk; + ext4_fsblk_t ee_pblk; + short int ee_len; + ext4_fsblk_t pc_pclu; + ext4_lblk_t pc_lblk; + int pc_state; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_rm_idx { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_fsblk_t pblk; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_remove_space { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t start; + ext4_lblk_t end; + int depth; + char __data[0]; +}; + +struct trace_event_raw_ext4_ext_remove_space_done { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t start; + ext4_lblk_t end; + int depth; + ext4_fsblk_t pc_pclu; + ext4_lblk_t pc_lblk; + int pc_state; + short unsigned int eh_entries; + char __data[0]; +}; + +struct trace_event_raw_ext4__es_extent { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t lblk; + ext4_lblk_t len; + ext4_fsblk_t pblk; + char status; + char __data[0]; +}; + +struct trace_event_raw_ext4_es_remove_extent { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t lblk; + loff_t len; + char __data[0]; +}; + +struct trace_event_raw_ext4_es_find_extent_range_enter { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t lblk; + char __data[0]; +}; + +struct trace_event_raw_ext4_es_find_extent_range_exit { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t lblk; + ext4_lblk_t len; + ext4_fsblk_t pblk; + char status; + char __data[0]; +}; + +struct trace_event_raw_ext4_es_lookup_extent_enter { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t lblk; + char __data[0]; +}; + +struct trace_event_raw_ext4_es_lookup_extent_exit { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t lblk; + ext4_lblk_t len; + ext4_fsblk_t pblk; + char status; + int found; + char __data[0]; +}; + +struct trace_event_raw_ext4__es_shrink_enter { + struct trace_entry ent; + dev_t dev; + int nr_to_scan; + int cache_cnt; + char __data[0]; +}; + +struct trace_event_raw_ext4_es_shrink_scan_exit { + struct trace_entry ent; + dev_t dev; + int nr_shrunk; + int cache_cnt; + char __data[0]; +}; + +struct trace_event_raw_ext4_collapse_range { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t offset; + loff_t len; + char __data[0]; +}; + +struct trace_event_raw_ext4_insert_range { + struct trace_entry ent; + dev_t dev; + ino_t ino; + loff_t offset; + loff_t len; + char __data[0]; +}; + +struct trace_event_raw_ext4_es_shrink { + struct trace_entry ent; + dev_t dev; + int nr_shrunk; + long long unsigned int scan_time; + int nr_skipped; + int retried; + char __data[0]; +}; + +struct trace_event_raw_ext4_es_insert_delayed_extent { + struct trace_entry ent; + dev_t dev; + ino_t ino; + ext4_lblk_t lblk; + ext4_lblk_t len; + ext4_fsblk_t pblk; + char status; + bool lclu_allocated; + bool end_allocated; + char __data[0]; +}; + +struct trace_event_raw_ext4_fsmap_class { + struct trace_entry ent; + dev_t dev; + dev_t keydev; + u32 agno; + u64 bno; + u64 len; + u64 owner; + char __data[0]; +}; + +struct trace_event_raw_ext4_getfsmap_class { + struct trace_entry ent; + dev_t dev; + dev_t keydev; + u64 block; + u64 len; + u64 owner; + u64 flags; + char __data[0]; +}; + +struct trace_event_raw_ext4_shutdown { + struct trace_entry ent; + dev_t dev; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_ext4_error { + struct trace_entry ent; + dev_t dev; + const char *function; + unsigned int line; + char __data[0]; +}; + +struct trace_event_raw_ext4_prefetch_bitmaps { + struct trace_entry ent; + dev_t dev; + __u32 group; + __u32 next; + __u32 ios; + char __data[0]; +}; + +struct trace_event_raw_ext4_lazy_itable_init { + struct trace_entry ent; + dev_t dev; + __u32 group; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_replay_scan { + struct trace_entry ent; + dev_t dev; + int error; + int off; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_replay { + struct trace_entry ent; + dev_t dev; + int tag; + int ino; + int priv1; + int priv2; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_commit_start { + struct trace_entry ent; + dev_t dev; + tid_t tid; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_commit_stop { + struct trace_entry ent; + dev_t dev; + int nblks; + int reason; + int num_fc; + int num_fc_ineligible; + int nblks_agg; + tid_t tid; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_stats { + struct trace_entry ent; + dev_t dev; + unsigned int fc_ineligible_rc[10]; + long unsigned int fc_commits; + long unsigned int fc_ineligible_commits; + long unsigned int fc_numblks; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_track_dentry { + struct trace_entry ent; + dev_t dev; + tid_t t_tid; + ino_t i_ino; + tid_t i_sync_tid; + int error; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_track_inode { + struct trace_entry ent; + dev_t dev; + tid_t t_tid; + ino_t i_ino; + tid_t i_sync_tid; + int error; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_track_range { + struct trace_entry ent; + dev_t dev; + tid_t t_tid; + ino_t i_ino; + tid_t i_sync_tid; + long int start; + long int end; + int error; + char __data[0]; +}; + +struct trace_event_raw_ext4_fc_cleanup { + struct trace_entry ent; + dev_t dev; + int j_fc_off; + int full; + tid_t tid; + char __data[0]; +}; + +struct trace_event_raw_ext4_update_sb { + struct trace_entry ent; + dev_t dev; + ext4_fsblk_t fsblk; + unsigned int flags; + char __data[0]; +}; + +struct trace_event_data_offsets_ext4_other_inode_update_time {}; + +struct trace_event_data_offsets_ext4_free_inode {}; + +struct trace_event_data_offsets_ext4_request_inode {}; + +struct trace_event_data_offsets_ext4_allocate_inode {}; + +struct trace_event_data_offsets_ext4_evict_inode {}; + +struct trace_event_data_offsets_ext4_drop_inode {}; + +struct trace_event_data_offsets_ext4_nfs_commit_metadata {}; + +struct trace_event_data_offsets_ext4_mark_inode_dirty {}; + +struct trace_event_data_offsets_ext4_begin_ordered_truncate {}; + +struct trace_event_data_offsets_ext4__write_begin {}; + +struct trace_event_data_offsets_ext4__write_end {}; + +struct trace_event_data_offsets_ext4_writepages {}; + +struct trace_event_data_offsets_ext4_da_write_folios_start {}; + +struct trace_event_data_offsets_ext4_da_write_folios_end {}; + +struct trace_event_data_offsets_ext4_da_write_pages_extent {}; + +struct trace_event_data_offsets_ext4_writepages_result {}; + +struct trace_event_data_offsets_ext4__folio_op {}; + +struct trace_event_data_offsets_ext4_invalidate_folio_op {}; + +struct trace_event_data_offsets_ext4_discard_blocks {}; + +struct trace_event_data_offsets_ext4__mb_new_pa {}; + +struct trace_event_data_offsets_ext4_mb_release_inode_pa {}; + +struct trace_event_data_offsets_ext4_mb_release_group_pa {}; + +struct trace_event_data_offsets_ext4_discard_preallocations {}; + +struct trace_event_data_offsets_ext4_mb_discard_preallocations {}; + +struct trace_event_data_offsets_ext4_request_blocks {}; + +struct trace_event_data_offsets_ext4_allocate_blocks {}; + +struct trace_event_data_offsets_ext4_free_blocks {}; + +struct trace_event_data_offsets_ext4_sync_file_enter {}; + +struct trace_event_data_offsets_ext4_sync_file_exit {}; + +struct trace_event_data_offsets_ext4_sync_fs {}; + +struct trace_event_data_offsets_ext4_alloc_da_blocks {}; + +struct trace_event_data_offsets_ext4_mballoc_alloc {}; + +struct trace_event_data_offsets_ext4_mballoc_prealloc {}; + +struct trace_event_data_offsets_ext4__mballoc {}; + +struct trace_event_data_offsets_ext4_forget {}; + +struct trace_event_data_offsets_ext4_da_update_reserve_space {}; + +struct trace_event_data_offsets_ext4_da_reserve_space {}; + +struct trace_event_data_offsets_ext4_da_release_space {}; + +struct trace_event_data_offsets_ext4__bitmap_load {}; + +struct trace_event_data_offsets_ext4_read_block_bitmap_load {}; + +struct trace_event_data_offsets_ext4__fallocate_mode {}; + +struct trace_event_data_offsets_ext4_fallocate_exit {}; + +struct trace_event_data_offsets_ext4_unlink_enter {}; + +struct trace_event_data_offsets_ext4_unlink_exit {}; + +struct trace_event_data_offsets_ext4__truncate {}; + +struct trace_event_data_offsets_ext4_ext_convert_to_initialized_enter {}; + +struct trace_event_data_offsets_ext4_ext_convert_to_initialized_fastpath {}; + +struct trace_event_data_offsets_ext4__map_blocks_enter {}; + +struct trace_event_data_offsets_ext4__map_blocks_exit {}; + +struct trace_event_data_offsets_ext4_ext_load_extent {}; + +struct trace_event_data_offsets_ext4_load_inode {}; + +struct trace_event_data_offsets_ext4_journal_start_sb {}; + +struct trace_event_data_offsets_ext4_journal_start_inode {}; + +struct trace_event_data_offsets_ext4_journal_start_reserved {}; + +struct trace_event_data_offsets_ext4__trim {}; + +struct trace_event_data_offsets_ext4_ext_handle_unwritten_extents {}; + +struct trace_event_data_offsets_ext4_get_implied_cluster_alloc_exit {}; + +struct trace_event_data_offsets_ext4_ext_show_extent {}; + +struct trace_event_data_offsets_ext4_remove_blocks {}; + +struct trace_event_data_offsets_ext4_ext_rm_leaf {}; + +struct trace_event_data_offsets_ext4_ext_rm_idx {}; + +struct trace_event_data_offsets_ext4_ext_remove_space {}; + +struct trace_event_data_offsets_ext4_ext_remove_space_done {}; + +struct trace_event_data_offsets_ext4__es_extent {}; + +struct trace_event_data_offsets_ext4_es_remove_extent {}; + +struct trace_event_data_offsets_ext4_es_find_extent_range_enter {}; + +struct trace_event_data_offsets_ext4_es_find_extent_range_exit {}; + +struct trace_event_data_offsets_ext4_es_lookup_extent_enter {}; + +struct trace_event_data_offsets_ext4_es_lookup_extent_exit {}; + +struct trace_event_data_offsets_ext4__es_shrink_enter {}; + +struct trace_event_data_offsets_ext4_es_shrink_scan_exit {}; + +struct trace_event_data_offsets_ext4_collapse_range {}; + +struct trace_event_data_offsets_ext4_insert_range {}; + +struct trace_event_data_offsets_ext4_es_shrink {}; + +struct trace_event_data_offsets_ext4_es_insert_delayed_extent {}; + +struct trace_event_data_offsets_ext4_fsmap_class {}; + +struct trace_event_data_offsets_ext4_getfsmap_class {}; + +struct trace_event_data_offsets_ext4_shutdown {}; + +struct trace_event_data_offsets_ext4_error {}; + +struct trace_event_data_offsets_ext4_prefetch_bitmaps {}; + +struct trace_event_data_offsets_ext4_lazy_itable_init {}; + +struct trace_event_data_offsets_ext4_fc_replay_scan {}; + +struct trace_event_data_offsets_ext4_fc_replay {}; + +struct trace_event_data_offsets_ext4_fc_commit_start {}; + +struct trace_event_data_offsets_ext4_fc_commit_stop {}; + +struct trace_event_data_offsets_ext4_fc_stats {}; + +struct trace_event_data_offsets_ext4_fc_track_dentry {}; + +struct trace_event_data_offsets_ext4_fc_track_inode {}; + +struct trace_event_data_offsets_ext4_fc_track_range {}; + +struct trace_event_data_offsets_ext4_fc_cleanup {}; + +struct trace_event_data_offsets_ext4_update_sb {}; + +typedef void (*btf_trace_ext4_other_inode_update_time)(void *, struct inode *, ino_t); + +typedef void (*btf_trace_ext4_free_inode)(void *, struct inode *); + +typedef void (*btf_trace_ext4_request_inode)(void *, struct inode *, int); + +typedef void (*btf_trace_ext4_allocate_inode)(void *, struct inode *, struct inode *, int); + +typedef void (*btf_trace_ext4_evict_inode)(void *, struct inode *); + +typedef void (*btf_trace_ext4_drop_inode)(void *, struct inode *, int); + +typedef void (*btf_trace_ext4_nfs_commit_metadata)(void *, struct inode *); + +typedef void (*btf_trace_ext4_mark_inode_dirty)(void *, struct inode *, long unsigned int); + +typedef void (*btf_trace_ext4_begin_ordered_truncate)(void *, struct inode *, loff_t); + +typedef void (*btf_trace_ext4_write_begin)(void *, struct inode *, loff_t, unsigned int); + +typedef void (*btf_trace_ext4_da_write_begin)(void *, struct inode *, loff_t, unsigned int); + +typedef void (*btf_trace_ext4_write_end)(void *, struct inode *, loff_t, unsigned int, unsigned int); + +typedef void (*btf_trace_ext4_journalled_write_end)(void *, struct inode *, loff_t, unsigned int, unsigned int); + +typedef void (*btf_trace_ext4_da_write_end)(void *, struct inode *, loff_t, unsigned int, unsigned int); + +typedef void (*btf_trace_ext4_writepages)(void *, struct inode *, struct writeback_control *); + +typedef void (*btf_trace_ext4_da_write_folios_start)(void *, struct inode *, loff_t, loff_t, struct writeback_control *); + +typedef void (*btf_trace_ext4_da_write_folios_end)(void *, struct inode *, loff_t, loff_t, struct writeback_control *, int); + +typedef void (*btf_trace_ext4_da_write_pages_extent)(void *, struct inode *, struct ext4_map_blocks *); + +typedef void (*btf_trace_ext4_writepages_result)(void *, struct inode *, struct writeback_control *, int, int); + +typedef void (*btf_trace_ext4_read_folio)(void *, struct inode *, struct folio *); + +typedef void (*btf_trace_ext4_release_folio)(void *, struct inode *, struct folio *); + +typedef void (*btf_trace_ext4_invalidate_folio)(void *, struct folio *, size_t, size_t); + +typedef void (*btf_trace_ext4_journalled_invalidate_folio)(void *, struct folio *, size_t, size_t); + +typedef void (*btf_trace_ext4_discard_blocks)(void *, struct super_block *, long long unsigned int, long long unsigned int); + +typedef void (*btf_trace_ext4_mb_new_inode_pa)(void *, struct ext4_allocation_context *, struct ext4_prealloc_space *); + +typedef void (*btf_trace_ext4_mb_new_group_pa)(void *, struct ext4_allocation_context *, struct ext4_prealloc_space *); + +typedef void (*btf_trace_ext4_mb_release_inode_pa)(void *, struct ext4_prealloc_space *, long long unsigned int, unsigned int); + +typedef void (*btf_trace_ext4_mb_release_group_pa)(void *, struct super_block *, struct ext4_prealloc_space *); + +typedef void (*btf_trace_ext4_discard_preallocations)(void *, struct inode *, unsigned int); + +typedef void (*btf_trace_ext4_mb_discard_preallocations)(void *, struct super_block *, int); + +typedef void (*btf_trace_ext4_request_blocks)(void *, struct ext4_allocation_request *); + +typedef void (*btf_trace_ext4_allocate_blocks)(void *, struct ext4_allocation_request *, long long unsigned int); + +typedef void (*btf_trace_ext4_free_blocks)(void *, struct inode *, __u64, long unsigned int, int); + +typedef void (*btf_trace_ext4_sync_file_enter)(void *, struct file *, int); + +typedef void (*btf_trace_ext4_sync_file_exit)(void *, struct inode *, int); + +typedef void (*btf_trace_ext4_sync_fs)(void *, struct super_block *, int); + +typedef void (*btf_trace_ext4_alloc_da_blocks)(void *, struct inode *); + +typedef void (*btf_trace_ext4_mballoc_alloc)(void *, struct ext4_allocation_context *); + +typedef void (*btf_trace_ext4_mballoc_prealloc)(void *, struct ext4_allocation_context *); + +typedef void (*btf_trace_ext4_mballoc_discard)(void *, struct super_block *, struct inode *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t); + +typedef void (*btf_trace_ext4_mballoc_free)(void *, struct super_block *, struct inode *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t); + +typedef void (*btf_trace_ext4_forget)(void *, struct inode *, int, __u64); + +typedef void (*btf_trace_ext4_da_update_reserve_space)(void *, struct inode *, int, int); + +typedef void (*btf_trace_ext4_da_reserve_space)(void *, struct inode *, int); + +typedef void (*btf_trace_ext4_da_release_space)(void *, struct inode *, int); + +typedef void (*btf_trace_ext4_mb_bitmap_load)(void *, struct super_block *, long unsigned int); + +typedef void (*btf_trace_ext4_mb_buddy_bitmap_load)(void *, struct super_block *, long unsigned int); + +typedef void (*btf_trace_ext4_load_inode_bitmap)(void *, struct super_block *, long unsigned int); + +typedef void (*btf_trace_ext4_read_block_bitmap_load)(void *, struct super_block *, long unsigned int, bool); + +typedef void (*btf_trace_ext4_fallocate_enter)(void *, struct inode *, loff_t, loff_t, int); + +typedef void (*btf_trace_ext4_punch_hole)(void *, struct inode *, loff_t, loff_t, int); + +typedef void (*btf_trace_ext4_zero_range)(void *, struct inode *, loff_t, loff_t, int); + +typedef void (*btf_trace_ext4_fallocate_exit)(void *, struct inode *, loff_t, unsigned int, int); + +typedef void (*btf_trace_ext4_unlink_enter)(void *, struct inode *, struct dentry *); + +typedef void (*btf_trace_ext4_unlink_exit)(void *, struct dentry *, int); + +typedef void (*btf_trace_ext4_truncate_enter)(void *, struct inode *); + +typedef void (*btf_trace_ext4_truncate_exit)(void *, struct inode *); + +typedef void (*btf_trace_ext4_ext_convert_to_initialized_enter)(void *, struct inode *, struct ext4_map_blocks *, struct ext4_extent *); + +typedef void (*btf_trace_ext4_ext_convert_to_initialized_fastpath)(void *, struct inode *, struct ext4_map_blocks *, struct ext4_extent *, struct ext4_extent *); + +typedef void (*btf_trace_ext4_ext_map_blocks_enter)(void *, struct inode *, ext4_lblk_t, unsigned int, unsigned int); + +typedef void (*btf_trace_ext4_ind_map_blocks_enter)(void *, struct inode *, ext4_lblk_t, unsigned int, unsigned int); + +typedef void (*btf_trace_ext4_ext_map_blocks_exit)(void *, struct inode *, unsigned int, struct ext4_map_blocks *, int); + +typedef void (*btf_trace_ext4_ind_map_blocks_exit)(void *, struct inode *, unsigned int, struct ext4_map_blocks *, int); + +typedef void (*btf_trace_ext4_ext_load_extent)(void *, struct inode *, ext4_lblk_t, ext4_fsblk_t); + +typedef void (*btf_trace_ext4_load_inode)(void *, struct super_block *, long unsigned int); + +typedef void (*btf_trace_ext4_journal_start_sb)(void *, struct super_block *, int, int, int, int, long unsigned int); + +typedef void (*btf_trace_ext4_journal_start_inode)(void *, struct inode *, int, int, int, int, long unsigned int); + +typedef void (*btf_trace_ext4_journal_start_reserved)(void *, struct super_block *, int, long unsigned int); + +typedef void (*btf_trace_ext4_trim_extent)(void *, struct super_block *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t); + +typedef void (*btf_trace_ext4_trim_all_free)(void *, struct super_block *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t); + +typedef void (*btf_trace_ext4_ext_handle_unwritten_extents)(void *, struct inode *, struct ext4_map_blocks *, int, unsigned int, ext4_fsblk_t); + +typedef void (*btf_trace_ext4_get_implied_cluster_alloc_exit)(void *, struct super_block *, struct ext4_map_blocks *, int); + +typedef void (*btf_trace_ext4_ext_show_extent)(void *, struct inode *, ext4_lblk_t, ext4_fsblk_t, short unsigned int); + +typedef void (*btf_trace_ext4_remove_blocks)(void *, struct inode *, struct ext4_extent *, ext4_lblk_t, ext4_fsblk_t, struct partial_cluster *); + +typedef void (*btf_trace_ext4_ext_rm_leaf)(void *, struct inode *, ext4_lblk_t, struct ext4_extent *, struct partial_cluster *); + +typedef void (*btf_trace_ext4_ext_rm_idx)(void *, struct inode *, ext4_fsblk_t); + +typedef void (*btf_trace_ext4_ext_remove_space)(void *, struct inode *, ext4_lblk_t, ext4_lblk_t, int); + +typedef void (*btf_trace_ext4_ext_remove_space_done)(void *, struct inode *, ext4_lblk_t, ext4_lblk_t, int, struct partial_cluster *, __le16); + +typedef void (*btf_trace_ext4_es_insert_extent)(void *, struct inode *, struct extent_status *); + +typedef void (*btf_trace_ext4_es_cache_extent)(void *, struct inode *, struct extent_status *); + +typedef void (*btf_trace_ext4_es_remove_extent)(void *, struct inode *, ext4_lblk_t, ext4_lblk_t); + +typedef void (*btf_trace_ext4_es_find_extent_range_enter)(void *, struct inode *, ext4_lblk_t); + +typedef void (*btf_trace_ext4_es_find_extent_range_exit)(void *, struct inode *, struct extent_status *); + +typedef void (*btf_trace_ext4_es_lookup_extent_enter)(void *, struct inode *, ext4_lblk_t); + +typedef void (*btf_trace_ext4_es_lookup_extent_exit)(void *, struct inode *, struct extent_status *, int); + +typedef void (*btf_trace_ext4_es_shrink_count)(void *, struct super_block *, int, int); + +typedef void (*btf_trace_ext4_es_shrink_scan_enter)(void *, struct super_block *, int, int); + +typedef void (*btf_trace_ext4_es_shrink_scan_exit)(void *, struct super_block *, int, int); + +typedef void (*btf_trace_ext4_collapse_range)(void *, struct inode *, loff_t, loff_t); + +typedef void (*btf_trace_ext4_insert_range)(void *, struct inode *, loff_t, loff_t); + +typedef void (*btf_trace_ext4_es_shrink)(void *, struct super_block *, int, u64, int, int); + +typedef void (*btf_trace_ext4_es_insert_delayed_extent)(void *, struct inode *, struct extent_status *, bool, bool); + +typedef void (*btf_trace_ext4_fsmap_low_key)(void *, struct super_block *, u32, u32, u64, u64, u64); + +typedef void (*btf_trace_ext4_fsmap_high_key)(void *, struct super_block *, u32, u32, u64, u64, u64); + +typedef void (*btf_trace_ext4_fsmap_mapping)(void *, struct super_block *, u32, u32, u64, u64, u64); + +typedef void (*btf_trace_ext4_getfsmap_low_key)(void *, struct super_block *, struct ext4_fsmap *); + +typedef void (*btf_trace_ext4_getfsmap_high_key)(void *, struct super_block *, struct ext4_fsmap *); + +typedef void (*btf_trace_ext4_getfsmap_mapping)(void *, struct super_block *, struct ext4_fsmap *); + +typedef void (*btf_trace_ext4_shutdown)(void *, struct super_block *, long unsigned int); + +typedef void (*btf_trace_ext4_error)(void *, struct super_block *, const char *, unsigned int); + +typedef void (*btf_trace_ext4_prefetch_bitmaps)(void *, struct super_block *, ext4_group_t, ext4_group_t, unsigned int); + +typedef void (*btf_trace_ext4_lazy_itable_init)(void *, struct super_block *, ext4_group_t); + +typedef void (*btf_trace_ext4_fc_replay_scan)(void *, struct super_block *, int, int); + +typedef void (*btf_trace_ext4_fc_replay)(void *, struct super_block *, int, int, int, int); + +typedef void (*btf_trace_ext4_fc_commit_start)(void *, struct super_block *, tid_t); + +typedef void (*btf_trace_ext4_fc_commit_stop)(void *, struct super_block *, int, int, tid_t); + +typedef void (*btf_trace_ext4_fc_stats)(void *, struct super_block *); + +typedef void (*btf_trace_ext4_fc_track_create)(void *, handle_t *, struct inode *, struct dentry *, int); + +typedef void (*btf_trace_ext4_fc_track_link)(void *, handle_t *, struct inode *, struct dentry *, int); + +typedef void (*btf_trace_ext4_fc_track_unlink)(void *, handle_t *, struct inode *, struct dentry *, int); + +typedef void (*btf_trace_ext4_fc_track_inode)(void *, handle_t *, struct inode *, int); + +typedef void (*btf_trace_ext4_fc_track_range)(void *, handle_t *, struct inode *, long int, long int, int); + +typedef void (*btf_trace_ext4_fc_cleanup)(void *, journal_t *, int, tid_t); + +typedef void (*btf_trace_ext4_update_sb)(void *, struct super_block *, ext4_fsblk_t, unsigned int); + +struct ext4_err_translation { + int code; + int errno; +}; + +enum { + Opt_bsd_df = 0, + Opt_minix_df = 1, + Opt_grpid = 2, + Opt_nogrpid = 3, + Opt_resgid = 4, + Opt_resuid = 5, + Opt_sb = 6, + Opt_nouid32 = 7, + Opt_debug___3 = 8, + Opt_removed = 9, + Opt_user_xattr = 10, + Opt_acl = 11, + Opt_auto_da_alloc = 12, + Opt_noauto_da_alloc = 13, + Opt_noload = 14, + Opt_commit = 15, + Opt_min_batch_time = 16, + Opt_max_batch_time = 17, + Opt_journal_dev = 18, + Opt_journal_path = 19, + Opt_journal_checksum = 20, + Opt_journal_async_commit = 21, + Opt_abort = 22, + Opt_data_journal = 23, + Opt_data_ordered = 24, + Opt_data_writeback = 25, + Opt_data_err_abort = 26, + Opt_data_err_ignore = 27, + Opt_test_dummy_encryption = 28, + Opt_inlinecrypt = 29, + Opt_usrjquota = 30, + Opt_grpjquota = 31, + Opt_quota___2 = 32, + Opt_noquota = 33, + Opt_barrier = 34, + Opt_nobarrier = 35, + Opt_err___6 = 36, + Opt_usrquota___2 = 37, + Opt_grpquota___2 = 38, + Opt_prjquota = 39, + Opt_dax = 40, + Opt_dax_always = 41, + Opt_dax_inode = 42, + Opt_dax_never = 43, + Opt_stripe = 44, + Opt_delalloc = 45, + Opt_nodelalloc = 46, + Opt_warn_on_error = 47, + Opt_nowarn_on_error = 48, + Opt_mblk_io_submit = 49, + Opt_debug_want_extra_isize = 50, + Opt_nomblk_io_submit = 51, + Opt_block_validity = 52, + Opt_noblock_validity = 53, + Opt_inode_readahead_blks = 54, + Opt_journal_ioprio = 55, + Opt_dioread_nolock = 56, + Opt_dioread_lock = 57, + Opt_discard___2 = 58, + Opt_nodiscard = 59, + Opt_init_itable = 60, + Opt_noinit_itable = 61, + Opt_max_dir_size_kb = 62, + Opt_nojournal_checksum = 63, + Opt_nombcache = 64, + Opt_no_prefetch_block_bitmaps = 65, + Opt_mb_optimize_scan = 66, + Opt_errors___2 = 67, + Opt_data = 68, + Opt_data_err = 69, + Opt_jqfmt = 70, + Opt_dax_type = 71, +}; + +struct mount_opts { + int token; + int mount_opt; + int flags; +}; + +struct ext4_sb_encodings { + __u16 magic; + char *name; + unsigned int version; +}; + +struct ext4_fs_context { + char *s_qf_names[3]; + struct fscrypt_dummy_policy dummy_enc_policy; + int s_jquota_fmt; + short unsigned int qname_spec; + long unsigned int vals_s_flags; + long unsigned int mask_s_flags; + long unsigned int journal_devnum; + long unsigned int s_commit_interval; + long unsigned int s_stripe; + unsigned int s_inode_readahead_blks; + unsigned int s_want_extra_isize; + unsigned int s_li_wait_mult; + unsigned int s_max_dir_size_kb; + unsigned int journal_ioprio; + unsigned int vals_s_mount_opt; + unsigned int mask_s_mount_opt; + unsigned int vals_s_mount_opt2; + unsigned int mask_s_mount_opt2; + unsigned int opt_flags; + unsigned int spec; + u32 s_max_batch_time; + u32 s_min_batch_time; + kuid_t s_resuid; + kgid_t s_resgid; + ext4_fsblk_t s_sb_block; +}; + +struct ext4_mount_options { + long unsigned int s_mount_opt; + long unsigned int s_mount_opt2; + kuid_t s_resuid; + kgid_t s_resgid; + long unsigned int s_commit_interval; + u32 s_min_batch_time; + u32 s_max_batch_time; + int s_jquota_fmt; + char *s_qf_names[3]; +}; + +struct jbd2_revoke_table_s { + int hash_size; + int hash_shift; + struct list_head *hash_table; +}; + +struct jbd2_revoke_record_s { + struct list_head hash; + tid_t sequence; + long long unsigned int blocknr; +}; + +struct squashfs_super_block { + __le32 s_magic; + __le32 inodes; + __le32 mkfs_time; + __le32 block_size; + __le32 fragments; + __le16 compression; + __le16 block_log; + __le16 flags; + __le16 no_ids; + __le16 s_major; + __le16 s_minor; + __le64 root_inode; + __le64 bytes_used; + __le64 id_table_start; + __le64 xattr_id_table_start; + __le64 inode_table_start; + __le64 directory_table_start; + __le64 fragment_table_start; + __le64 lookup_table_start; +}; + +enum Opt_errors { + Opt_errors_continue = 0, + Opt_errors_panic = 1, +}; + +enum squashfs_param { + Opt_errors___3 = 0, + Opt_threads = 1, +}; + +struct squashfs_mount_opts { + enum Opt_errors errors; + const struct squashfs_decompressor_thread_ops *thread_ops; + int thread_num; +}; + +struct squashfs_stream___3 { + void *stream; + local_lock_t lock; +}; + +struct squashfs_lzo { + void *input; + void *output; +}; + +struct ramfs_mount_opts { + umode_t mode; +}; + +struct ramfs_fs_info { + struct ramfs_mount_opts mount_opts; +}; + +enum ramfs_param { + Opt_mode___5 = 0, +}; + +struct compat_dirent { + u32 d_ino; + compat_off_t d_off; + u16 d_reclen; + char d_name[256]; +}; + +struct __fat_dirent { + long int d_ino; + __kernel_off_t d_off; + short unsigned int d_reclen; + char d_name[256]; +}; + +enum { + PARSE_INVALID = 1, + PARSE_NOT_LONGNAME = 2, + PARSE_EOF = 3, +}; + +struct fat_ioctl_filldir_callback { + struct dir_context ctx; + void *dirent; + int result; + const char *longname; + int long_len; + const char *shortname; + int short_len; +}; + +enum { + Opt_sig = 0, + Opt_ecryptfs_sig = 1, + Opt_cipher = 2, + Opt_ecryptfs_cipher = 3, + Opt_ecryptfs_key_bytes = 4, + Opt_passthrough = 5, + Opt_xattr_metadata = 6, + Opt_encrypted_view = 7, + Opt_fnek_sig = 8, + Opt_fn_cipher = 9, + Opt_fn_cipher_key_bytes = 10, + Opt_unlink_sigs = 11, + Opt_mount_auth_tok_only = 12, + Opt_check_dev_ruid = 13, +}; + +struct ecryptfs_fs_context { + bool check_ruid; + bool sig_set; + bool cipher_name_set; + bool cipher_key_bytes_set; + bool fn_cipher_name_set; + bool fn_cipher_key_bytes_set; +}; + +struct ecryptfs_cache_info { + struct kmem_cache **cache; + const char *name; + size_t size; + slab_flags_t flags; + void (*ctor)(void *); +}; + +struct ecryptfs_key_record { + unsigned char type; + size_t enc_key_size; + unsigned char sig[8]; + unsigned char enc_key[512]; +}; + +struct ecryptfs_auth_tok_list_item { + unsigned char encrypted_session_key[64]; + struct list_head list; + struct ecryptfs_auth_tok auth_tok; +}; + +struct ecryptfs_write_tag_70_packet_silly_stack { + u8 cipher_code; + size_t max_packet_size; + size_t packet_size_len; + size_t block_aligned_filename_size; + size_t block_size; + size_t i; + size_t j; + size_t num_rand_bytes; + struct mutex *tfm_mutex; + char *block_aligned_filename; + struct ecryptfs_auth_tok *auth_tok; + struct scatterlist src_sg[2]; + struct scatterlist dst_sg[2]; + struct crypto_skcipher *skcipher_tfm; + struct skcipher_request *skcipher_req; + char iv[16]; + char hash[16]; + char tmp_hash[16]; + struct crypto_shash *hash_tfm; + struct shash_desc *hash_desc; +}; + +struct ecryptfs_parse_tag_70_packet_silly_stack { + u8 cipher_code; + size_t max_packet_size; + size_t packet_size_len; + size_t parsed_tag_70_packet_size; + size_t block_aligned_filename_size; + size_t block_size; + size_t i; + struct mutex *tfm_mutex; + char *decrypted_filename; + struct ecryptfs_auth_tok *auth_tok; + struct scatterlist src_sg[2]; + struct scatterlist dst_sg[2]; + struct crypto_skcipher *skcipher_tfm; + struct skcipher_request *skcipher_req; + char fnek_sig_hex[17]; + char iv[16]; + char cipher_string[32]; +}; + +struct getdents_callback___2 { + struct dir_context ctx; + char *name; + u64 ino; + int found; + int sequence; +}; + +struct fuse_file_lock { + uint64_t start; + uint64_t end; + uint32_t type; + uint32_t pid; +}; + +struct fuse_open_in { + uint32_t flags; + uint32_t open_flags; +}; + +struct fuse_flush_in { + uint64_t fh; + uint32_t unused; + uint32_t padding; + uint64_t lock_owner; +}; + +struct fuse_fsync_in { + uint64_t fh; + uint32_t fsync_flags; + uint32_t padding; +}; + +struct fuse_lk_in { + uint64_t fh; + uint64_t owner; + struct fuse_file_lock lk; + uint32_t lk_flags; + uint32_t padding; +}; + +struct fuse_lk_out { + struct fuse_file_lock lk; +}; + +struct fuse_bmap_in { + uint64_t block; + uint32_t blocksize; + uint32_t padding; +}; + +struct fuse_bmap_out { + uint64_t block; +}; + +struct fuse_poll_in { + uint64_t fh; + uint64_t kh; + uint32_t flags; + uint32_t events; +}; + +struct fuse_poll_out { + uint32_t revents; + uint32_t padding; +}; + +struct fuse_fallocate_in { + uint64_t fh; + uint64_t offset; + uint64_t length; + uint32_t mode; + uint32_t padding; +}; + +struct fuse_lseek_in { + uint64_t fh; + uint64_t offset; + uint32_t whence; + uint32_t padding; +}; + +struct fuse_lseek_out { + uint64_t offset; +}; + +struct fuse_copy_file_range_in { + uint64_t fh_in; + uint64_t off_in; + uint64_t nodeid_out; + uint64_t fh_out; + uint64_t off_out; + uint64_t len; + uint64_t flags; +}; + +struct fuse_writepage_args { + struct fuse_io_args ia; + struct list_head queue_entry; + struct inode *inode; + struct fuse_sync_bucket *bucket; +}; + +struct fuse_fill_wb_data { + struct fuse_writepage_args *wpa; + struct fuse_file *ff; + unsigned int max_folios; + unsigned int nr_bytes; +}; + +struct fuse_setxattr_in { + uint32_t size; + uint32_t flags; + uint32_t setxattr_flags; + uint32_t padding; +}; + +struct fuse_getxattr_in { + uint32_t size; + uint32_t padding; +}; + +struct fuse_getxattr_out { + uint32_t size; + uint32_t padding; +}; + +struct fuse_ioctl_in { + uint64_t fh; + uint32_t flags; + uint32_t cmd; + uint64_t arg; + uint32_t in_size; + uint32_t out_size; +}; + +struct fuse_ioctl_iovec { + uint64_t base; + uint64_t len; +}; + +struct fuse_ioctl_out { + int32_t result; + uint32_t flags; + uint32_t in_iovs; + uint32_t out_iovs; +}; + +struct fuse_uring_ent_in_out { + uint64_t flags; + uint64_t commit_id; + uint32_t payload_sz; + uint32_t padding; + uint64_t reserved; +}; + +struct fuse_uring_req_header { + char in_out[128]; + char op_in[128]; + struct fuse_uring_ent_in_out ring_ent_in_out; +}; + +enum fuse_uring_cmd { + FUSE_IO_URING_CMD_INVALID = 0, + FUSE_IO_URING_CMD_REGISTER = 1, + FUSE_IO_URING_CMD_COMMIT_AND_FETCH = 2, +}; + +struct fuse_uring_cmd_req { + uint64_t flags; + uint64_t commit_id; + uint16_t qid; + uint8_t padding[6]; +}; + +enum fuse_ring_req_state { + FRRS_INVALID = 0, + FRRS_COMMIT = 1, + FRRS_AVAILABLE = 2, + FRRS_FUSE_REQ = 3, + FRRS_USERSPACE = 4, + FRRS_TEARDOWN = 5, + FRRS_RELEASED = 6, +}; + +struct fuse_ring_ent { + struct fuse_uring_req_header *headers; + void *payload; + struct fuse_ring_queue *queue; + struct io_uring_cmd *cmd; + struct list_head list; + enum fuse_ring_req_state state; + struct fuse_req *fuse_req; +}; + +struct fuse_uring_pdu { + struct fuse_ring_ent *ent; +}; + +struct tracefs_dir_ops { + int (*mkdir)(const char *); + int (*rmdir)(const char *); +}; + +struct tracefs_fs_info { + kuid_t uid; + kgid_t gid; + umode_t mode; + unsigned int opts; +}; + +enum { + Opt_uid___7 = 0, + Opt_gid___8 = 1, + Opt_mode___6 = 2, +}; + +struct pseudo_lock_pm_req { + struct list_head list; + struct dev_pm_qos_request req; +}; + +struct sem_undo_list { + refcount_t refcnt; + spinlock_t lock; + struct list_head list_proc; +}; + +struct sem; + +struct sem_queue; + +struct sem_undo; + +struct semid_ds { + struct ipc_perm sem_perm; + __kernel_old_time_t sem_otime; + __kernel_old_time_t sem_ctime; + struct sem *sem_base; + struct sem_queue *sem_pending; + struct sem_queue **sem_pending_last; + struct sem_undo *undo; + short unsigned int sem_nsems; +}; + +struct sem { + int semval; + struct pid *sempid; + spinlock_t lock; + struct list_head pending_alter; + struct list_head pending_const; + time64_t sem_otime; +}; + +struct sem_queue { + struct list_head list; + struct task_struct *sleeper; + struct sem_undo *undo; + struct pid *pid; + int status; + struct sembuf *sops; + struct sembuf *blocking; + int nsops; + bool alter; + bool dupsop; +}; + +struct sem_undo { + struct list_head list_proc; + struct callback_head rcu; + struct sem_undo_list *ulp; + struct list_head list_id; + int semid; + short int semadj[0]; +}; + +struct semid64_ds { + struct ipc64_perm sem_perm; + __kernel_long_t sem_otime; + __kernel_ulong_t __unused1; + __kernel_long_t sem_ctime; + __kernel_ulong_t __unused2; + __kernel_ulong_t sem_nsems; + __kernel_ulong_t __unused3; + __kernel_ulong_t __unused4; +}; + +struct seminfo { + int semmap; + int semmni; + int semmns; + int semmnu; + int semmsl; + int semopm; + int semume; + int semusz; + int semvmx; + int semaem; +}; + +struct compat_semid64_ds { + struct compat_ipc64_perm sem_perm; + compat_ulong_t sem_otime; + compat_ulong_t sem_otime_high; + compat_ulong_t sem_ctime; + compat_ulong_t sem_ctime_high; + compat_ulong_t sem_nsems; + compat_ulong_t __unused3; + compat_ulong_t __unused4; +}; + +struct sem_array { + struct kern_ipc_perm sem_perm; + time64_t sem_ctime; + struct list_head pending_alter; + struct list_head pending_const; + struct list_head list_id; + int sem_nsems; + int complex_count; + unsigned int use_global_lock; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct sem sems[0]; +}; + +struct compat_semid_ds { + struct compat_ipc_perm sem_perm; + old_time32_t sem_otime; + old_time32_t sem_ctime; + compat_uptr_t sem_base; + compat_uptr_t sem_pending; + compat_uptr_t sem_pending_last; + compat_uptr_t undo; + short unsigned int sem_nsems; +}; + +struct keyring_read_iterator_context { + size_t buflen; + size_t count; + key_serial_t *buffer; +}; + +struct osapsess { + uint32_t handle; + unsigned char secret[20]; + unsigned char enonce[20]; +}; + +enum { + SEAL_keytype = 1, + SRK_keytype = 4, +}; + +struct tpm_digests { + unsigned char encauth[20]; + unsigned char pubauth[20]; + unsigned char xorwork[40]; + unsigned char xorhash[20]; + unsigned char nonceodd[20]; +}; + +enum { + Opt_err___7 = 0, + Opt_keyhandle = 1, + Opt_keyauth = 2, + Opt_blobauth = 3, + Opt_pcrinfo = 4, + Opt_pcrlock = 5, + Opt_migratable = 6, + Opt_hash___3 = 7, + Opt_policydigest = 8, + Opt_policyhandle = 9, +}; + +struct vfs_cap_data { + __le32 magic_etc; + struct { + __le32 permitted; + __le32 inheritable; + } data[2]; +}; + +struct vfs_ns_cap_data { + __le32 magic_etc; + struct { + __le32 permitted; + __le32 inheritable; + } data[2]; + __le32 rootid; +}; + +struct trace_event_raw_cap_capable { + struct trace_entry ent; + const struct cred *cred; + struct user_namespace *target_ns; + const struct user_namespace *capable_ns; + int cap; + int ret; + char __data[0]; +}; + +struct trace_event_data_offsets_cap_capable {}; + +typedef void (*btf_trace_cap_capable)(void *, const struct cred *, struct user_namespace *, const struct user_namespace *, int, int); + +enum sctp_param { + SCTP_PARAM_HEARTBEAT_INFO = 256, + SCTP_PARAM_IPV4_ADDRESS = 1280, + SCTP_PARAM_IPV6_ADDRESS = 1536, + SCTP_PARAM_STATE_COOKIE = 1792, + SCTP_PARAM_UNRECOGNIZED_PARAMETERS = 2048, + SCTP_PARAM_COOKIE_PRESERVATIVE = 2304, + SCTP_PARAM_HOST_NAME_ADDRESS = 2816, + SCTP_PARAM_SUPPORTED_ADDRESS_TYPES = 3072, + SCTP_PARAM_ECN_CAPABLE = 128, + SCTP_PARAM_RANDOM = 640, + SCTP_PARAM_CHUNKS = 896, + SCTP_PARAM_HMAC_ALGO = 1152, + SCTP_PARAM_SUPPORTED_EXT = 2176, + SCTP_PARAM_FWD_TSN_SUPPORT = 192, + SCTP_PARAM_ADD_IP = 448, + SCTP_PARAM_DEL_IP = 704, + SCTP_PARAM_ERR_CAUSE = 960, + SCTP_PARAM_SET_PRIMARY = 1216, + SCTP_PARAM_SUCCESS_REPORT = 1472, + SCTP_PARAM_ADAPTATION_LAYER_IND = 1728, + SCTP_PARAM_RESET_OUT_REQUEST = 3328, + SCTP_PARAM_RESET_IN_REQUEST = 3584, + SCTP_PARAM_RESET_TSN_REQUEST = 3840, + SCTP_PARAM_RESET_RESPONSE = 4096, + SCTP_PARAM_RESET_ADD_OUT_STREAMS = 4352, + SCTP_PARAM_RESET_ADD_IN_STREAMS = 4608, +}; + +struct avdc_entry { + u32 isid; + u32 allowed; + u32 audited; + bool permissive; +}; + +struct task_security_struct { + struct { + u32 sid; + u32 seqno; + unsigned int dir_spot; + struct avdc_entry dir[4]; + bool permissive_neveraudit; + } avdcache; +}; + +struct file_security_struct { + u32 sid; + u32 fown_sid; + u32 isid; + u32 pseqno; +}; + +struct msg_security_struct { + u32 sid; +}; + +struct ipc_security_struct { + u16 sclass; + u32 sid; +}; + +struct tun_security_struct { + u32 sid; +}; + +struct key_security_struct { + u32 sid; +}; + +struct ib_security_struct { + u32 sid; +}; + +struct bpf_security_struct { + u32 sid; +}; + +struct perf_event_security_struct { + u32 sid; +}; + +struct selinux_mnt_opts { + u32 fscontext_sid; + u32 context_sid; + u32 rootcontext_sid; + u32 defcontext_sid; +}; + +enum { + Opt_error___2 = -1, + Opt_context = 0, + Opt_defcontext = 1, + Opt_fscontext = 2, + Opt_rootcontext = 3, + Opt_seclabel = 4, +}; + +struct cond_insertf_data { + struct policydb *p; + struct avtab_node **dst; + struct cond_av_list *other; +}; + +struct superblock_smack { + struct smack_known *smk_root; + struct smack_known *smk_floor; + struct smack_known *smk_hat; + struct smack_known *smk_default; + int smk_flags; +}; + +struct inode_smack { + struct smack_known *smk_inode; + struct smack_known *smk_task; + struct smack_known *smk_mmap; + int smk_flags; +}; + +enum { + Opt_error___3 = -1, + Opt_fsdefault = 0, + Opt_fsfloor = 1, + Opt_fshat = 2, + Opt_fsroot = 3, + Opt_fstransmute = 4, +}; + +struct smack_mnt_opts { + const char *fsdefault; + const char *fsfloor; + const char *fshat; + const char *fsroot; + const char *fstransmute; +}; + +struct tomoyo_log { + struct list_head list; + char *log; + int size; +}; + +struct tomoyo_inet_addr_info { + __be16 port; + const __be32 *address; + bool is_ipv6; +}; + +struct tomoyo_unix_addr_info { + u8 *addr; + unsigned int addr_len; +}; + +struct tomoyo_addr_info { + u8 protocol; + u8 operation; + struct tomoyo_inet_addr_info inet; + struct tomoyo_unix_addr_info unix0; +}; + +struct match_workbuf { + unsigned int pos; + unsigned int len; + unsigned int history[32]; +}; + +typedef ZSTD_compressionParameters zstd_compression_parameters; + +typedef ZSTD_parameters zstd_parameters; + +typedef ZSTD_CCtx zstd_cctx; + +enum aa_code { + AA_U8 = 0, + AA_U16 = 1, + AA_U32 = 2, + AA_U64 = 3, + AA_NAME = 4, + AA_STRING = 5, + AA_BLOB = 6, + AA_STRUCT = 7, + AA_STRUCTEND = 8, + AA_LIST = 9, + AA_LISTEND = 10, + AA_ARRAY = 11, + AA_ARRAYEND = 12, +}; + +struct aa_ext { + void *start; + void *end; + void *pos; + u32 version; +}; + +struct landlock_inode_security { + struct landlock_object *object; +}; + +struct landlock_superblock_security { + atomic_long_t inode_refs; +}; + +enum header_opt { + IPE_HEADER_POLICY_NAME = 0, + IPE_HEADER_POLICY_VERSION = 1, + __IPE_HEADER_MAX = 2, +}; + +struct akcipher_instance { + void (*free)(struct akcipher_instance *); + union { + struct { + char head[56]; + struct crypto_instance base; + } s; + struct akcipher_alg alg; + }; +}; + +struct crypto_report_akcipher { + char type[64]; +}; + +struct crypto_akcipher_sync_data { + struct crypto_akcipher *tfm; + const void *src; + void *dst; + unsigned int slen; + unsigned int dlen; + struct akcipher_request *req; + struct crypto_wait cwait; + struct scatterlist sg; + u8 *buf; +}; + +enum rsapubkey_actions { + ACT_rsa_get_e___2 = 0, + ACT_rsa_get_n___2 = 1, + NR__rsapubkey_actions = 2, +}; + +struct pkcs1pad_ctx { + struct crypto_akcipher *child; + unsigned int key_size; +}; + +struct pkcs1pad_inst_ctx { + struct crypto_akcipher_spawn spawn; +}; + +struct pkcs1pad_request { + struct scatterlist in_sg[2]; + struct scatterlist out_sg[1]; + uint8_t *in_buf; + uint8_t *out_buf; + struct akcipher_request child_req; +}; + +struct hmac_ctx { + struct crypto_shash *hash; + u8 pads[0]; +}; + +struct ahash_hmac_ctx { + struct crypto_ahash *hash; + u8 pads[0]; +}; + +struct __hmac_sha512_key { + struct sha512_block_state istate; + struct sha512_block_state ostate; +}; + +struct __hmac_sha512_ctx { + struct __sha512_ctx sha_ctx; + struct sha512_block_state ostate; +}; + +struct sha384_ctx { + struct __sha512_ctx ctx; +}; + +struct hmac_sha384_key { + struct __hmac_sha512_key key; +}; + +struct hmac_sha384_ctx { + struct __hmac_sha512_ctx ctx; +}; + +struct hmac_sha512_key { + struct __hmac_sha512_key key; +}; + +struct hmac_sha512_ctx { + struct __hmac_sha512_ctx ctx; +}; + +struct xts_tfm_ctx { + struct crypto_skcipher *child; + struct crypto_cipher *tweak; +}; + +struct xts_instance_ctx { + struct crypto_skcipher_spawn spawn; + struct crypto_cipher_spawn tweak_spawn; +}; + +struct xts_request_ctx { + le128 t; + struct scatterlist *tail; + struct scatterlist sg[2]; + struct skcipher_request subreq; +}; + +struct chksum_ctx { + u32 key; +}; + +struct chksum_desc_ctx { + u32 crc; +}; + +struct ghash_ctx { + struct gf128mul_4k *gf128; +}; + +struct ghash_desc_ctx { + u8 buffer[16]; +}; + +struct ecc_point { + u64 *x; + u64 *y; + u8 ndigits; +}; + +struct ecc_curve { + char *name; + u32 nbits; + struct ecc_point g; + u64 *p; + u64 *n; + u64 *a; + u64 *b; +}; + +typedef struct { + u64 m_low; + u64 m_high; +} uint128_t; + +enum { + REQ_FSEQ_PREFLUSH = 1, + REQ_FSEQ_DATA = 2, + REQ_FSEQ_POSTFLUSH = 4, + REQ_FSEQ_DONE = 8, + REQ_FSEQ_ACTIONS = 7, + FLUSH_PENDING_TIMEOUT = 5000, +}; + +struct mq_inflight { + struct block_device *part; + unsigned int inflight[2]; +}; + +struct blk_rq_wait { + struct completion done; + blk_status_t ret; +}; + +struct blk_expired_data { + bool has_timedout_rq; + long unsigned int next; + long unsigned int timeout_start; +}; + +struct flush_busy_ctx_data { + struct blk_mq_hw_ctx *hctx; + struct list_head *list; +}; + +struct dispatch_rq_data { + struct blk_mq_hw_ctx *hctx; + struct request *rq; +}; + +enum prep_dispatch { + PREP_DISPATCH_OK = 0, + PREP_DISPATCH_NO_TAG = 1, + PREP_DISPATCH_NO_BUDGET = 2, +}; + +struct rq_iter_data { + struct blk_mq_hw_ctx *hctx; + bool has_rq; +}; + +struct frag { + struct list_head list; + u32 group; + u8 num; + u8 rec; + u8 map; + u8 data[0]; +}; + +struct privhead { + u16 ver_major; + u16 ver_minor; + u64 logical_disk_start; + u64 logical_disk_size; + u64 config_start; + u64 config_size; + uuid_t disk_id; +}; + +struct tocblock { + u8 bitmap1_name[16]; + u64 bitmap1_start; + u64 bitmap1_size; + u8 bitmap2_name[16]; + u64 bitmap2_start; + u64 bitmap2_size; +}; + +struct vmdb { + u16 ver_major; + u16 ver_minor; + u32 vblk_size; + u32 vblk_offset; + u32 last_vblk_seq; +}; + +struct vblk_comp { + u8 state[16]; + u64 parent_id; + u8 type; + u8 children; + u16 chunksize; +}; + +struct vblk_dgrp { + u8 disk_id[64]; +}; + +struct vblk_disk { + uuid_t disk_id; + u8 alt_name[128]; +}; + +struct vblk_part { + u64 start; + u64 size; + u64 volume_offset; + u64 parent_id; + u64 disk_id; + u8 partnum; +}; + +struct vblk_volu { + u8 volume_type[16]; + u8 volume_state[16]; + u8 guid[16]; + u8 drive_hint[4]; + u64 size; + u8 partition_type; +}; + +struct vblk { + u8 name[64]; + u64 obj_id; + u32 sequence; + u8 flags; + u8 type; + union { + struct vblk_comp comp; + struct vblk_dgrp dgrp; + struct vblk_disk disk; + struct vblk_part part; + struct vblk_volu volu; + } vblk; + struct list_head list; +}; + +struct ldmdb { + struct privhead ph; + struct tocblock toc; + struct vmdb vm; + struct list_head v_dgrp; + struct list_head v_disk; + struct list_head v_volu; + struct list_head v_comp; + struct list_head v_part; +}; + +enum { + SUN_WHOLE_DISK = 5, + LINUX_RAID_PARTITION___3 = 253, +}; + +struct sun_info { + __be16 id; + __be16 flags; +}; + +struct sun_vtoc { + __be32 version; + char volume[8]; + __be16 nparts; + struct sun_info infos[8]; + __be16 padding; + __be32 bootinfo[3]; + __be32 sanity; + __be32 reserved[10]; + __be32 timestamp[8]; +}; + +struct sun_partition { + __be32 start_cylinder; + __be32 num_sectors; +}; + +struct sun_disklabel { + unsigned char info[128]; + struct sun_vtoc vtoc; + __be32 write_reinstruct; + __be32 read_reinstruct; + unsigned char spare[148]; + __be16 rspeed; + __be16 pcylcount; + __be16 sparecyl; + __be16 obs1; + __be16 obs2; + __be16 ilfact; + __be16 ncyl; + __be16 nacyl; + __be16 ntrks; + __be16 nsect; + __be16 obs3; + __be16 obs4; + struct sun_partition partitions[8]; + __be16 magic; + __be16 csum; +}; + +struct rq_qos_wait_data { + struct wait_queue_entry wq; + struct rq_wait *rqw; + acquire_inflight_cb_t *cb; + void *private_data; + bool got_token; +}; + +enum { + MILLION = 1000000, + MIN_PERIOD = 1000, + MAX_PERIOD = 1000000, + MARGIN_MIN_PCT = 10, + MARGIN_LOW_PCT = 20, + MARGIN_TARGET_PCT = 50, + INUSE_ADJ_STEP_PCT = 25, + TIMER_SLACK_PCT = 1, + WEIGHT_ONE = 65536, +}; + +enum { + VTIME_PER_SEC_SHIFT = 37ULL, + VTIME_PER_SEC = 137438953472ULL, + VTIME_PER_USEC = 137438ULL, + VTIME_PER_NSEC = 137ULL, + VRATE_MIN_PPM = 10000ULL, + VRATE_MAX_PPM = 100000000ULL, + VRATE_MIN = 1374ULL, + VRATE_CLAMP_ADJ_PCT = 4ULL, + AUTOP_CYCLE_NSEC = 10000000000ULL, +}; + +enum { + RQ_WAIT_BUSY_PCT = 5, + UNBUSY_THR_PCT = 75, + MIN_DELAY_THR_PCT = 500, + MAX_DELAY_THR_PCT = 25000, + MIN_DELAY = 250, + MAX_DELAY = 250000, + DFGV_USAGE_PCT = 50, + DFGV_PERIOD = 100000, + MAX_LAGGING_PERIODS = 10, + IOC_PAGE_SHIFT = 12, + IOC_PAGE_SIZE = 4096, + IOC_SECT_TO_PAGE_SHIFT = 3, + LCOEF_RANDIO_PAGES = 4096, +}; + +enum ioc_running { + IOC_IDLE = 0, + IOC_RUNNING = 1, + IOC_STOP = 2, +}; + +enum { + QOS_ENABLE = 0, + QOS_CTRL = 1, + NR_QOS_CTRL_PARAMS = 2, +}; + +enum { + QOS_RPPM = 0, + QOS_RLAT = 1, + QOS_WPPM = 2, + QOS_WLAT = 3, + QOS_MIN = 4, + QOS_MAX = 5, + NR_QOS_PARAMS = 6, +}; + +enum { + COST_CTRL = 0, + COST_MODEL = 1, + NR_COST_CTRL_PARAMS = 2, +}; + +enum { + I_LCOEF_RBPS = 0, + I_LCOEF_RSEQIOPS = 1, + I_LCOEF_RRANDIOPS = 2, + I_LCOEF_WBPS = 3, + I_LCOEF_WSEQIOPS = 4, + I_LCOEF_WRANDIOPS = 5, + NR_I_LCOEFS = 6, +}; + +enum { + LCOEF_RPAGE = 0, + LCOEF_RSEQIO = 1, + LCOEF_RRANDIO = 2, + LCOEF_WPAGE = 3, + LCOEF_WSEQIO = 4, + LCOEF_WRANDIO = 5, + NR_LCOEFS = 6, +}; + +enum { + AUTOP_INVALID = 0, + AUTOP_HDD = 1, + AUTOP_SSD_QD1 = 2, + AUTOP_SSD_DFL = 3, + AUTOP_SSD_FAST = 4, +}; + +struct ioc_params { + u32 qos[6]; + u64 i_lcoefs[6]; + u64 lcoefs[6]; + u32 too_fast_vrate_pct; + u32 too_slow_vrate_pct; +}; + +struct ioc_margins { + s64 min; + s64 low; + s64 target; +}; + +struct ioc_missed { + local_t nr_met; + local_t nr_missed; + u32 last_met; + u32 last_missed; +}; + +struct ioc_pcpu_stat { + struct ioc_missed missed[2]; + local64_t rq_wait_ns; + u64 last_rq_wait_ns; +}; + +struct ioc { + struct rq_qos rqos; + bool enabled; + struct ioc_params params; + struct ioc_margins margins; + u32 period_us; + u32 timer_slack_ns; + u64 vrate_min; + u64 vrate_max; + spinlock_t lock; + struct timer_list timer; + struct list_head active_iocgs; + struct ioc_pcpu_stat *pcpu_stat; + enum ioc_running running; + atomic64_t vtime_rate; + u64 vtime_base_rate; + s64 vtime_err; + seqcount_spinlock_t period_seqcount; + u64 period_at; + u64 period_at_vtime; + atomic64_t cur_period; + int busy_level; + bool weights_updated; + atomic_t hweight_gen; + u64 dfgv_period_at; + u64 dfgv_period_rem; + u64 dfgv_usage_us_sum; + u64 autop_too_fast_at; + u64 autop_too_slow_at; + int autop_idx; + bool user_qos_params: 1; + bool user_cost_model: 1; +}; + +struct iocg_pcpu_stat { + local64_t abs_vusage; +}; + +struct iocg_stat { + u64 usage_us; + u64 wait_us; + u64 indebt_us; + u64 indelay_us; +}; + +struct ioc_gq { + struct blkg_policy_data pd; + struct ioc *ioc; + u32 cfg_weight; + u32 weight; + u32 active; + u32 inuse; + u32 last_inuse; + s64 saved_margin; + sector_t cursor; + atomic64_t vtime; + atomic64_t done_vtime; + u64 abs_vdebt; + u64 delay; + u64 delay_at; + atomic64_t active_period; + struct list_head active_list; + u64 child_active_sum; + u64 child_inuse_sum; + u64 child_adjusted_sum; + int hweight_gen; + u32 hweight_active; + u32 hweight_inuse; + u32 hweight_donating; + u32 hweight_after_donation; + struct list_head walk_list; + struct list_head surplus_list; + struct wait_queue_head waitq; + struct hrtimer waitq_timer; + u64 activated_at; + struct iocg_pcpu_stat *pcpu_stat; + struct iocg_stat stat; + struct iocg_stat last_stat; + u64 last_stat_abs_vusage; + u64 usage_delta_us; + u64 wait_since; + u64 indebt_since; + u64 indelay_since; + int level; + struct ioc_gq *ancestors[0]; +}; + +struct ioc_cgrp { + struct blkcg_policy_data cpd; + unsigned int dfl_weight; +}; + +struct ioc_now { + u64 now_ns; + u64 now; + u64 vnow; +}; + +struct iocg_wait { + struct wait_queue_entry wait; + struct bio *bio; + u64 abs_cost; + bool committed; +}; + +struct iocg_wake_ctx { + struct ioc_gq *iocg; + u32 hw_inuse; + s64 vbudget; +}; + +struct trace_event_raw_iocost_iocg_state { + struct trace_entry ent; + u32 __data_loc_devname; + u32 __data_loc_cgroup; + u64 now; + u64 vnow; + u64 vrate; + u64 last_period; + u64 cur_period; + u64 vtime; + u32 weight; + u32 inuse; + u64 hweight_active; + u64 hweight_inuse; + char __data[0]; +}; + +struct trace_event_raw_iocg_inuse_update { + struct trace_entry ent; + u32 __data_loc_devname; + u32 __data_loc_cgroup; + u64 now; + u32 old_inuse; + u32 new_inuse; + u64 old_hweight_inuse; + u64 new_hweight_inuse; + char __data[0]; +}; + +struct trace_event_raw_iocost_ioc_vrate_adj { + struct trace_entry ent; + u32 __data_loc_devname; + u64 old_vrate; + u64 new_vrate; + int busy_level; + u32 read_missed_ppm; + u32 write_missed_ppm; + u32 rq_wait_pct; + int nr_lagging; + int nr_shortages; + char __data[0]; +}; + +struct trace_event_raw_iocost_iocg_forgive_debt { + struct trace_entry ent; + u32 __data_loc_devname; + u32 __data_loc_cgroup; + u64 now; + u64 vnow; + u32 usage_pct; + u64 old_debt; + u64 new_debt; + u64 old_delay; + u64 new_delay; + char __data[0]; +}; + +struct trace_event_data_offsets_iocost_iocg_state { + u32 devname; + const void *devname_ptr_; + u32 cgroup; + const void *cgroup_ptr_; +}; + +struct trace_event_data_offsets_iocg_inuse_update { + u32 devname; + const void *devname_ptr_; + u32 cgroup; + const void *cgroup_ptr_; +}; + +struct trace_event_data_offsets_iocost_ioc_vrate_adj { + u32 devname; + const void *devname_ptr_; +}; + +struct trace_event_data_offsets_iocost_iocg_forgive_debt { + u32 devname; + const void *devname_ptr_; + u32 cgroup; + const void *cgroup_ptr_; +}; + +typedef void (*btf_trace_iocost_iocg_activate)(void *, struct ioc_gq *, const char *, struct ioc_now *, u64, u64, u64); + +typedef void (*btf_trace_iocost_iocg_idle)(void *, struct ioc_gq *, const char *, struct ioc_now *, u64, u64, u64); + +typedef void (*btf_trace_iocost_inuse_shortage)(void *, struct ioc_gq *, const char *, struct ioc_now *, u32, u32, u64, u64); + +typedef void (*btf_trace_iocost_inuse_transfer)(void *, struct ioc_gq *, const char *, struct ioc_now *, u32, u32, u64, u64); + +typedef void (*btf_trace_iocost_inuse_adjust)(void *, struct ioc_gq *, const char *, struct ioc_now *, u32, u32, u64, u64); + +typedef void (*btf_trace_iocost_ioc_vrate_adj)(void *, struct ioc *, u64, u32 *, u32, int, int); + +typedef void (*btf_trace_iocost_iocg_forgive_debt)(void *, struct ioc_gq *, const char *, struct ioc_now *, u32, u64, u64, u64, u64); + +enum opal_mbr { + OPAL_MBR_ENABLE = 0, + OPAL_MBR_DISABLE = 1, +}; + +enum opal_mbr_done_flag { + OPAL_MBR_NOT_DONE = 0, + OPAL_MBR_DONE = 1, +}; + +enum opal_user { + OPAL_ADMIN1 = 0, + OPAL_USER1 = 1, + OPAL_USER2 = 2, + OPAL_USER3 = 3, + OPAL_USER4 = 4, + OPAL_USER5 = 5, + OPAL_USER6 = 6, + OPAL_USER7 = 7, + OPAL_USER8 = 8, + OPAL_USER9 = 9, +}; + +enum opal_lock_state { + OPAL_RO = 1, + OPAL_RW = 2, + OPAL_LK = 4, +}; + +enum opal_lock_flags { + OPAL_SAVE_FOR_LOCK = 1, +}; + +enum opal_key_type { + OPAL_INCLUDED = 0, + OPAL_KEYRING = 1, +}; + +struct opal_key { + __u8 lr; + __u8 key_len; + __u8 key_type; + __u8 __align[5]; + __u8 key[256]; +}; + +enum opal_revert_lsp_opts { + OPAL_PRESERVE = 1, +}; + +struct opal_lr_act { + struct opal_key key; + __u32 sum; + __u8 num_lrs; + __u8 lr[9]; + __u8 align[2]; +}; + +struct opal_session_info { + __u32 sum; + __u32 who; + struct opal_key opal_key; +}; + +struct opal_user_lr_setup { + __u64 range_start; + __u64 range_length; + __u32 RLE; + __u32 WLE; + struct opal_session_info session; +}; + +struct opal_lr_status { + struct opal_session_info session; + __u64 range_start; + __u64 range_length; + __u32 RLE; + __u32 WLE; + __u32 l_state; + __u8 align[4]; +}; + +struct opal_lock_unlock { + struct opal_session_info session; + __u32 l_state; + __u16 flags; + __u8 __align[2]; +}; + +struct opal_new_pw { + struct opal_session_info session; + struct opal_session_info new_user_pw; +}; + +struct opal_mbr_data { + struct opal_key key; + __u8 enable_disable; + __u8 __align[7]; +}; + +struct opal_mbr_done { + struct opal_key key; + __u8 done_flag; + __u8 __align[7]; +}; + +struct opal_shadow_mbr { + struct opal_key key; + const __u64 data; + __u64 offset; + __u64 size; +}; + +enum opal_table_ops { + OPAL_READ_TABLE = 0, + OPAL_WRITE_TABLE = 1, +}; + +struct opal_read_write_table { + struct opal_key key; + const __u64 data; + const __u8 table_uid[8]; + __u64 offset; + __u64 size; + __u64 flags; + __u64 priv; +}; + +struct opal_status { + __u32 flags; + __u32 reserved; +}; + +struct opal_geometry { + __u8 align; + __u32 logical_block_size; + __u64 alignment_granularity; + __u64 lowest_aligned_lba; + __u8 __align[3]; +}; + +struct opal_discovery { + __u64 data; + __u64 size; +}; + +struct opal_revert_lsp { + struct opal_key key; + __u32 options; + __u32 __pad; +}; + +enum { + TCG_SECP_00 = 0, + TCG_SECP_01 = 1, +}; + +enum opal_response_token { + OPAL_DTA_TOKENID_BYTESTRING = 224, + OPAL_DTA_TOKENID_SINT = 225, + OPAL_DTA_TOKENID_UINT = 226, + OPAL_DTA_TOKENID_TOKEN = 227, + OPAL_DTA_TOKENID_INVALID = 0, +}; + +enum opal_uid { + OPAL_SMUID_UID = 0, + OPAL_THISSP_UID = 1, + OPAL_ADMINSP_UID = 2, + OPAL_LOCKINGSP_UID = 3, + OPAL_ENTERPRISE_LOCKINGSP_UID = 4, + OPAL_ANYBODY_UID = 5, + OPAL_SID_UID = 6, + OPAL_ADMIN1_UID = 7, + OPAL_USER1_UID = 8, + OPAL_USER2_UID = 9, + OPAL_PSID_UID = 10, + OPAL_ENTERPRISE_BANDMASTER0_UID = 11, + OPAL_ENTERPRISE_ERASEMASTER_UID = 12, + OPAL_TABLE_TABLE = 13, + OPAL_LOCKINGRANGE_GLOBAL = 14, + OPAL_LOCKINGRANGE_ACE_START_TO_KEY = 15, + OPAL_LOCKINGRANGE_ACE_RDLOCKED = 16, + OPAL_LOCKINGRANGE_ACE_WRLOCKED = 17, + OPAL_MBRCONTROL = 18, + OPAL_MBR = 19, + OPAL_AUTHORITY_TABLE = 20, + OPAL_C_PIN_TABLE = 21, + OPAL_LOCKING_INFO_TABLE = 22, + OPAL_ENTERPRISE_LOCKING_INFO_TABLE = 23, + OPAL_DATASTORE = 24, + OPAL_C_PIN_MSID = 25, + OPAL_C_PIN_SID = 26, + OPAL_C_PIN_ADMIN1 = 27, + OPAL_HALF_UID_AUTHORITY_OBJ_REF = 28, + OPAL_HALF_UID_BOOLEAN_ACE = 29, + OPAL_UID_HEXFF = 30, +}; + +enum opal_method { + OPAL_PROPERTIES = 0, + OPAL_STARTSESSION = 1, + OPAL_REVERT = 2, + OPAL_ACTIVATE = 3, + OPAL_EGET = 4, + OPAL_ESET = 5, + OPAL_NEXT = 6, + OPAL_EAUTHENTICATE = 7, + OPAL_GETACL = 8, + OPAL_GENKEY = 9, + OPAL_REVERTSP = 10, + OPAL_GET = 11, + OPAL_SET = 12, + OPAL_AUTHENTICATE = 13, + OPAL_RANDOM = 14, + OPAL_ERASE = 15, +}; + +enum opal_token { + OPAL_TRUE = 1, + OPAL_FALSE = 0, + OPAL_BOOLEAN_EXPR = 3, + OPAL_TABLE = 0, + OPAL_STARTROW = 1, + OPAL_ENDROW = 2, + OPAL_STARTCOLUMN = 3, + OPAL_ENDCOLUMN = 4, + OPAL_VALUES = 1, + OPAL_TABLE_UID = 0, + OPAL_TABLE_NAME = 1, + OPAL_TABLE_COMMON = 2, + OPAL_TABLE_TEMPLATE = 3, + OPAL_TABLE_KIND = 4, + OPAL_TABLE_COLUMN = 5, + OPAL_TABLE_COLUMNS = 6, + OPAL_TABLE_ROWS = 7, + OPAL_TABLE_ROWS_FREE = 8, + OPAL_TABLE_ROW_BYTES = 9, + OPAL_TABLE_LASTID = 10, + OPAL_TABLE_MIN = 11, + OPAL_TABLE_MAX = 12, + OPAL_PIN = 3, + OPAL_RANGESTART = 3, + OPAL_RANGELENGTH = 4, + OPAL_READLOCKENABLED = 5, + OPAL_WRITELOCKENABLED = 6, + OPAL_READLOCKED = 7, + OPAL_WRITELOCKED = 8, + OPAL_ACTIVEKEY = 10, + OPAL_LIFECYCLE = 6, + OPAL_MAXRANGES = 4, + OPAL_MBRENABLE = 1, + OPAL_MBRDONE = 2, + OPAL_HOSTPROPERTIES = 0, + OPAL_STARTLIST = 240, + OPAL_ENDLIST = 241, + OPAL_STARTNAME = 242, + OPAL_ENDNAME = 243, + OPAL_CALL = 248, + OPAL_ENDOFDATA = 249, + OPAL_ENDOFSESSION = 250, + OPAL_STARTTRANSACTON = 251, + OPAL_ENDTRANSACTON = 252, + OPAL_EMPTYATOM = 255, + OPAL_WHERE = 0, +}; + +enum opal_parameter { + OPAL_SUM_SET_LIST = 393216, +}; + +enum opal_revertlsp { + OPAL_KEEP_GLOBAL_RANGE_KEY = 393216, +}; + +struct opal_compacket { + __be32 reserved0; + u8 extendedComID[4]; + __be32 outstandingData; + __be32 minTransfer; + __be32 length; +}; + +struct opal_packet { + __be32 tsn; + __be32 hsn; + __be32 seq_number; + __be16 reserved0; + __be16 ack_type; + __be32 acknowledgment; + __be32 length; +}; + +struct opal_data_subpacket { + u8 reserved0[6]; + __be16 kind; + __be32 length; +}; + +struct opal_header { + struct opal_compacket cp; + struct opal_packet pkt; + struct opal_data_subpacket subpkt; +}; + +struct d0_header { + __be32 length; + __be32 revision; + __be32 reserved01; + __be32 reserved02; + u8 ignored[32]; +}; + +struct d0_tper_features { + u8 supported_features; + u8 reserved01[3]; + __be32 reserved02; + __be32 reserved03; +}; + +struct d0_locking_features { + u8 supported_features; + u8 reserved01[3]; + __be32 reserved02; + __be32 reserved03; +}; + +struct d0_geometry_features { + u8 header[4]; + u8 reserved01; + u8 reserved02[7]; + __be32 logical_block_size; + __be64 alignment_granularity; + __be64 lowest_aligned_lba; +}; + +struct d0_opal_v100 { + __be16 baseComID; + __be16 numComIDs; +}; + +struct d0_single_user_mode { + __be32 num_locking_objects; + u8 reserved01; + u8 reserved02; + __be16 reserved03; + __be32 reserved04; +}; + +struct d0_opal_v200 { + __be16 baseComID; + __be16 numComIDs; + u8 range_crossing; + u8 num_locking_admin_auth[2]; + u8 num_locking_user_auth[2]; + u8 initialPIN; + u8 revertedPIN; + u8 reserved01; + __be32 reserved02; +}; + +struct d0_features { + __be16 code; + u8 r_version; + u8 length; + u8 features[0]; +}; + +struct opal_step { + int (*fn)(struct opal_dev *, void *); + void *data; +}; + +enum opal_atom_width { + OPAL_WIDTH_TINY = 0, + OPAL_WIDTH_SHORT = 1, + OPAL_WIDTH_MEDIUM = 2, + OPAL_WIDTH_LONG = 3, + OPAL_WIDTH_TOKEN = 4, +}; + +struct opal_resp_tok { + const u8 *pos; + size_t len; + enum opal_response_token type; + enum opal_atom_width width; + union { + u64 u; + s64 s; + } stored; +}; + +struct parsed_resp { + int num; + struct opal_resp_tok toks[64]; +}; + +struct opal_dev { + u32 flags; + void *data; + sec_send_recv *send_recv; + struct mutex dev_lock; + u16 comid; + u32 hsn; + u32 tsn; + u64 align; + u64 lowest_lba; + u32 logical_block_size; + u8 align_required; + size_t pos; + u8 *cmd; + u8 *resp; + struct parsed_resp parsed; + size_t prev_d_len; + void *prev_data; + struct list_head unlk_lst; +}; + +typedef int cont_fn(struct opal_dev *); + +struct opal_suspend_data { + struct opal_lock_unlock unlk; + u8 lr; + struct list_head node; +}; + +struct bio_fallback_crypt_ctx { + struct bio_crypt_ctx crypt_ctx; + struct bvec_iter crypt_iter; + union { + struct { + struct work_struct work; + struct bio *bio; + }; + struct { + void *bi_private_orig; + bio_end_io_t *bi_end_io_orig; + }; + }; +}; + +struct blk_crypto_fallback_keyslot { + enum blk_crypto_mode_num crypto_mode; + struct crypto_skcipher *tfms[5]; +}; + +union blk_crypto_iv { + __le64 dun[4]; + u8 bytes[32]; +}; + +struct io_uring_rsrc_register { + __u32 nr; + __u32 flags; + __u64 resv2; + __u64 data; + __u64 tags; +}; + +struct io_uring_rsrc_update2 { + __u32 offset; + __u32 resv; + __u64 data; + __u64 tags; + __u32 nr; + __u32 resv2; +}; + +enum { + IORING_REGISTER_SRC_REGISTERED = 1, + IORING_REGISTER_DST_REPLACE = 2, +}; + +struct io_uring_clone_buffers { + __u32 src_fd; + __u32 flags; + __u32 src_off; + __u32 dst_off; + __u32 nr; + __u32 pad[3]; +}; + +struct io_rsrc_update { + struct file *file; + u64 arg; + u32 nr_args; + u32 offset; +}; + +enum io_uring_msg_ring_flags { + IORING_MSG_DATA = 0, + IORING_MSG_SEND_FD = 1, +}; + +struct io_msg { + struct file *file; + struct file *src_file; + struct callback_head tw; + u64 user_data; + u32 len; + u32 cmd; + u32 src_fd; + union { + u32 dst_fd; + u32 cqe_flags; + }; + u32 flags; +}; + +struct io_epoll { + struct file *file; + int epfd; + int op; + int fd; + struct epoll_event event; +}; + +struct io_epoll_wait { + struct file *file; + int maxevents; + struct epoll_event *events; +}; + +enum io_uring_socket_op { + SOCKET_URING_OP_SIOCINQ = 0, + SOCKET_URING_OP_SIOCOUTQ = 1, + SOCKET_URING_OP_GETSOCKOPT = 2, + SOCKET_URING_OP_SETSOCKOPT = 3, + SOCKET_URING_OP_TX_TIMESTAMP = 4, +}; + +struct io_timespec { + __u64 tv_sec; + __u64 tv_nsec; +}; + +union nested_table { + union nested_table *table; + struct rhash_lock_head *bucket; +}; + +typedef long int mpi_limb_signed_t; + +typedef ZSTD_cParameter zstd_cparameter; + +typedef ZSTD_CDict zstd_cdict; + +typedef ZSTD_CStream zstd_cstream; + +typedef ZSTD_sequenceProducer_F zstd_sequence_producer_f; + +typedef ZSTD_Sequence zstd_sequence; + +typedef size_t (*huf_compress_f)(void *, size_t, const void *, size_t, unsigned int, unsigned int, void *, size_t, HUF_CElt *, HUF_repeat *, int); + +typedef struct { + S16 norm[53]; + U32 wksp[285]; +} ZSTD_BuildCTableWksp; + +typedef struct { + U32 litLength; + U32 matchLength; +} ZSTD_SequenceLength; + +typedef struct { + size_t estLitSize; + size_t estBlockSize; +} EstimatedBlockSize; + +typedef int (*ZSTD_match4Found)(const BYTE *, const BYTE *, U32, U32); + +typedef enum { + ZSTD_d_windowLogMax = 100, + ZSTD_d_experimentalParam1 = 1000, + ZSTD_d_experimentalParam2 = 1001, + ZSTD_d_experimentalParam3 = 1002, + ZSTD_d_experimentalParam4 = 1003, + ZSTD_d_experimentalParam5 = 1004, + ZSTD_d_experimentalParam6 = 1005, +} ZSTD_dParameter; + +typedef enum { + ZSTDnit_frameHeader = 0, + ZSTDnit_blockHeader = 1, + ZSTDnit_block = 2, + ZSTDnit_lastBlock = 3, + ZSTDnit_checksum = 4, + ZSTDnit_skippableFrame = 5, +} ZSTD_nextInputType_e; + +typedef struct { + size_t nbBlocks; + size_t compressedSize; + long long unsigned int decompressedBound; +} ZSTD_frameSizeInfo; + +typedef unsigned int FSE_DTable; + +typedef struct { + size_t state; + const void *table; +} FSE_DState_t; + +typedef struct { + U16 tableLog; + U16 fastMode; +} FSE_DTableHeader; + +typedef struct { + short unsigned int newState; + unsigned char symbol; + unsigned char nbBits; +} FSE_decode_t; + +typedef struct { + short int ncount[256]; +} FSE_DecompressWksp; + +struct xz_dec_bcj { + enum { + BCJ_X86 = 4, + BCJ_POWERPC = 5, + BCJ_IA64 = 6, + BCJ_ARM = 7, + BCJ_ARMTHUMB = 8, + BCJ_SPARC = 9, + BCJ_ARM64 = 10, + BCJ_RISCV = 11, + } type; + enum xz_ret ret; + bool single_call; + uint32_t pos; + uint32_t x86_prev_mask; + uint8_t *out; + size_t out_pos; + size_t out_size; + struct { + size_t filtered; + size_t size; + uint8_t buf[16]; + } temp; +}; + +struct ts_linear_state { + unsigned int len; + const void *data; +}; + +struct sg_pool { + size_t size; + char *name; + struct kmem_cache *slab; + mempool_t *pool; +}; + +enum { + SX150X_123 = 0, + SX150X_456 = 1, + SX150X_789 = 2, +}; + +enum { + SX150X_789_REG_MISC_AUTOCLEAR_OFF = 1, + SX150X_MAX_REGISTER = 173, + SX150X_IRQ_TYPE_EDGE_RISING = 1, + SX150X_IRQ_TYPE_EDGE_FALLING = 2, + SX150X_789_RESET_KEY1 = 18, + SX150X_789_RESET_KEY2 = 52, +}; + +struct sx150x_123_pri { + u8 reg_pld_mode; + u8 reg_pld_table0; + u8 reg_pld_table1; + u8 reg_pld_table2; + u8 reg_pld_table3; + u8 reg_pld_table4; + u8 reg_advanced; +}; + +struct sx150x_456_pri { + u8 reg_pld_mode; + u8 reg_pld_table0; + u8 reg_pld_table1; + u8 reg_pld_table2; + u8 reg_pld_table3; + u8 reg_pld_table4; + u8 reg_advanced; +}; + +struct sx150x_789_pri { + u8 reg_drain; + u8 reg_polarity; + u8 reg_clock; + u8 reg_misc; + u8 reg_reset; + u8 ngpios; +}; + +struct sx150x_device_data { + u8 model; + u8 reg_pullup; + u8 reg_pulldn; + u8 reg_dir; + u8 reg_data; + u8 reg_irq_mask; + u8 reg_irq_src; + u8 reg_sense; + u8 ngpios; + union { + struct sx150x_123_pri x123; + struct sx150x_456_pri x456; + struct sx150x_789_pri x789; + } pri; + const struct pinctrl_pin_desc *pins; + unsigned int npins; +}; + +struct sx150x_pinctrl { + struct device *dev; + struct i2c_client *client; + struct pinctrl_dev *pctldev; + struct pinctrl_desc pinctrl_desc; + struct gpio_chip gpio; + struct regmap *regmap; + struct { + u32 sense; + u32 masked; + } irq; + struct mutex lock; + const struct sx150x_device_data *data; +}; + +struct pwm_lpss_chip { + void *regs; + const struct pwm_lpss_boardinfo *info; +}; + +struct expresswire_timing { + long unsigned int poweroff_us; + long unsigned int detect_delay_us; + long unsigned int detect_us; + long unsigned int data_start_us; + long unsigned int end_of_data_low_us; + long unsigned int end_of_data_high_us; + long unsigned int short_bitset_us; + long unsigned int long_bitset_us; +}; + +struct expresswire_common_props { + struct gpio_desc *ctrl_gpio; + struct expresswire_timing timing; +}; + +enum pcie_reset_state { + pcie_deassert_reset = 1, + pcie_warm_reset = 2, + pcie_hot_reset = 3, +}; + +struct pci_pme_device { + struct list_head list; + struct pci_dev *dev; +}; + +struct pci_acs { + u16 cap; + u16 ctrl; + u16 fw_ctrl; +}; + +struct pci_saved_state { + u32 config_space[16]; + struct pci_cap_saved_data cap[0]; +}; + +struct hpx_type0 { + u32 revision; + u8 cache_line_size; + u8 latency_timer; + u8 enable_serr; + u8 enable_perr; +}; + +struct hpx_type1 { + u32 revision; + u8 max_mem_read; + u8 avg_max_split; + u16 tot_max_split; +}; + +struct hpx_type2 { + u32 revision; + u32 unc_err_mask_and; + u32 unc_err_mask_or; + u32 unc_err_sever_and; + u32 unc_err_sever_or; + u32 cor_err_mask_and; + u32 cor_err_mask_or; + u32 adv_err_cap_and; + u32 adv_err_cap_or; + u16 pci_exp_devctl_and; + u16 pci_exp_devctl_or; + u16 pci_exp_lnkctl_and; + u16 pci_exp_lnkctl_or; + u32 sec_unc_err_sever_and; + u32 sec_unc_err_sever_or; + u32 sec_unc_err_mask_and; + u32 sec_unc_err_mask_or; +}; + +struct hpx_type3 { + u16 device_type; + u16 function_type; + u16 config_space_location; + u16 pci_exp_cap_id; + u16 pci_exp_cap_ver; + u16 pci_exp_vendor_id; + u16 dvsec_id; + u16 dvsec_rev; + u16 match_offset; + u32 match_mask_and; + u32 match_value; + u16 reg_offset; + u32 reg_mask_and; + u32 reg_mask_or; +}; + +enum hpx_type3_dev_type { + HPX_TYPE_ENDPOINT = 1, + HPX_TYPE_LEG_END = 2, + HPX_TYPE_RC_END = 4, + HPX_TYPE_RC_EC = 8, + HPX_TYPE_ROOT_PORT = 16, + HPX_TYPE_UPSTREAM = 32, + HPX_TYPE_DOWNSTREAM = 64, + HPX_TYPE_PCI_BRIDGE = 128, + HPX_TYPE_PCIE_BRIDGE = 256, +}; + +enum hpx_type3_fn_type { + HPX_FN_NORMAL = 1, + HPX_FN_SRIOV_PHYS = 2, + HPX_FN_SRIOV_VIRT = 4, +}; + +enum hpx_type3_cfg_loc { + HPX_CFG_PCICFG = 0, + HPX_CFG_PCIE_CAP = 1, + HPX_CFG_PCIE_CAP_EXT = 2, + HPX_CFG_VEND_CAP = 3, + HPX_CFG_DVSEC = 4, + HPX_CFG_MAX = 5, +}; + +enum octep_hp_intr_type { + OCTEP_HP_INTR_INVALID = -1, + OCTEP_HP_INTR_ENA = 0, + OCTEP_HP_INTR_DIS = 1, + OCTEP_HP_INTR_MAX = 2, +}; + +struct octep_hp_cmd { + struct list_head list; + enum octep_hp_intr_type intr_type; + u64 intr_val; +}; + +struct octep_hp_controller; + +struct octep_hp_slot { + struct list_head list; + struct hotplug_slot slot; + u16 slot_number; + struct pci_dev *hp_pdev; + unsigned int hp_devfn; + struct octep_hp_controller *ctrl; +}; + +struct octep_hp_intr_info { + enum octep_hp_intr_type type; + int number; + char name[16]; +}; + +struct octep_hp_controller { + void *base; + struct pci_dev *pdev; + struct octep_hp_intr_info intr[2]; + struct work_struct work; + struct list_head slot_list; + struct mutex slot_lock; + struct list_head hp_cmd_list; + spinlock_t hp_cmd_lock; +}; + +enum smbios_attr_enum { + SMBIOS_ATTR_NONE = 0, + SMBIOS_ATTR_LABEL_SHOW = 1, + SMBIOS_ATTR_INSTANCE_SHOW = 2, +}; + +enum acpi_attr_enum { + ACPI_ATTR_LABEL_SHOW = 0, + ACPI_ATTR_INDEX_SHOW = 1, +}; + +union st_info { + struct { + u64 vm_st_valid: 1; + u64 vm_xst_valid: 1; + u64 vm_ph_ignore: 1; + u64 rsvd1: 5; + u64 vm_st: 8; + u64 vm_xst: 16; + u64 pm_st_valid: 1; + u64 pm_xst_valid: 1; + u64 pm_ph_ignore: 1; + u64 rsvd2: 5; + u64 pm_st: 8; + u64 pm_xst: 16; + }; + u64 value; +}; + +enum dw_edma_chip_flags { + DW_EDMA_CHIP_LOCAL = 1, +}; + +struct dwc_pcie_vsec_id { + u16 vendor_id; + u16 vsec_id; + u8 vsec_rev; +}; + +struct meson_pcie_clk_res { + struct clk *clk; + struct clk *port_clk; + struct clk *general_clk; +}; + +struct meson_pcie_rc_reset { + struct reset_control *port; + struct reset_control *apb; +}; + +struct meson_pcie { + struct dw_pcie pci; + void *cfg_base; + struct meson_pcie_clk_res clk_res; + struct meson_pcie_rc_reset mrst; + struct gpio_desc *reset_gpio; + struct phy *phy; +}; + +struct aperture_range { + struct device *dev; + resource_size_t base; + resource_size_t size; + struct list_head lh; + void (*detach)(struct device *); +}; + +enum backlight_update_reason { + BACKLIGHT_UPDATE_HOTKEY = 0, + BACKLIGHT_UPDATE_SYSFS = 1, +}; + +struct acpi_madt_io_sapic { + struct acpi_subtable_header header; + u8 id; + u8 reserved; + u32 global_irq_base; + u64 address; +}; + +struct acpi_madt_interrupt_source { + struct acpi_subtable_header header; + u16 inti_flags; + u8 type; + u8 id; + u8 eid; + u8 io_sapic_vector; + u32 global_irq; + u32 flags; +}; + +struct acpi_madt_generic_distributor { + struct acpi_subtable_header header; + u16 reserved; + u32 gic_id; + u64 base_address; + u32 global_irq_base; + u8 version; + u8 reserved2[3]; +}; + +struct acpi_osi_entry { + char string[64]; + bool enable; +}; + +struct acpi_osi_config { + u8 default_disabling; + unsigned int linux_enable: 1; + unsigned int linux_dmi: 1; + unsigned int linux_cmdline: 1; + unsigned int darwin_enable: 1; + unsigned int darwin_dmi: 1; + unsigned int darwin_cmdline: 1; +}; + +struct acpi_debugger { + const struct acpi_debugger_ops *ops; + struct module *owner; + struct mutex lock; +}; + +struct acpi_os_dpc { + acpi_osd_exec_callback function; + void *context; + struct work_struct work; +}; + +struct acpi_ioremap { + struct list_head list; + void *virt; + acpi_physical_address phys; + acpi_size size; + union { + long unsigned int refcount; + struct rcu_work rwork; + } track; +}; + +struct acpi_hp_work { + struct work_struct work; + struct acpi_device *adev; + u32 src; +}; + +struct irq_override_cmp { + const struct dmi_system_id *system; + unsigned char irq; + unsigned char triggering; + unsigned char polarity; + unsigned char shareable; + bool override; +}; + +struct res_proc_context { + struct list_head *list; + int (*preproc)(struct acpi_resource *, void *); + void *preproc_data; + int count; + int error; +}; + +enum acpi_bridge_type { + ACPI_BRIDGE_TYPE_PCIE = 1, + ACPI_BRIDGE_TYPE_CXL = 2, +}; + +struct pci_osc_bit_struct { + u32 bit; + char *desc; +}; + +struct acpi_table_ccel { + struct acpi_table_header header; + u8 CCtype; + u8 Ccsub_type; + u16 reserved; + u64 log_area_minimum_length; + u64 log_area_start_address; +}; + +struct acpi_dlayer { + const char *name; + long unsigned int value; +}; + +struct acpi_dlevel { + const char *name; + long unsigned int value; +}; + +struct acpi_table_attr { + struct bin_attribute attr; + char name[4]; + int instance; + char filename[8]; + struct list_head node; +}; + +struct acpi_data_attr { + struct bin_attribute attr; + u64 addr; +}; + +struct acpi_data_obj { + char *name; + int (*fn)(void *, struct acpi_data_attr *); +}; + +struct event_counter { + u32 count; + u32 flags; +}; + +enum fpdt_subtable_type { + SUBTABLE_FBPT = 0, + SUBTABLE_S3PT = 1, +}; + +struct fpdt_subtable_entry { + u16 type; + u8 length; + u8 revision; + u32 reserved; + u64 address; +}; + +struct fpdt_subtable_header { + u32 signature; + u32 length; +}; + +enum fpdt_record_type { + RECORD_S3_RESUME = 0, + RECORD_S3_SUSPEND = 1, + RECORD_BOOT = 2, +}; + +struct fpdt_record_header { + u16 type; + u8 length; + u8 revision; +}; + +struct resume_performance_record { + struct fpdt_record_header header; + u32 resume_count; + u64 resume_prev; + u64 resume_avg; +}; + +struct boot_performance_record { + struct fpdt_record_header header; + u32 reserved; + u64 firmware_start; + u64 bootloader_load; + u64 bootloader_launch; + u64 exitbootservice_start; + u64 exitbootservice_end; +}; + +struct suspend_performance_record { + struct fpdt_record_header header; + u64 suspend_start; + u64 suspend_end; +} __attribute__((packed)); + +struct pcc_data { + struct pcc_mbox_chan *pcc_chan; + struct completion done; + struct mbox_client cl; + struct acpi_pcc_info ctx; +}; + +struct acpi_signal_fatal_info { + u32 type; + u32 code; + u32 argument; +}; + +struct acpi_exception_info { + char *name; +}; + +enum intel_cht_wc_models { + INTEL_CHT_WC_UNKNOWN = 0, + INTEL_CHT_WC_GPD_WIN_POCKET = 1, + INTEL_CHT_WC_XIAOMI_MIPAD2 = 2, + INTEL_CHT_WC_LENOVO_YOGABOOK1 = 3, + INTEL_CHT_WC_LENOVO_YT3_X90 = 4, +}; + +struct intel_scu_ipc_dev; + +struct intel_soc_pmic { + int irq; + struct regmap *regmap; + struct regmap_irq_chip_data *irq_chip_data; + struct regmap_irq_chip_data *irq_chip_data_pwrbtn; + struct regmap_irq_chip_data *irq_chip_data_tmu; + struct regmap_irq_chip_data *irq_chip_data_bcu; + struct regmap_irq_chip_data *irq_chip_data_adc; + struct regmap_irq_chip_data *irq_chip_data_chgr; + struct regmap_irq_chip_data *irq_chip_data_crit; + struct device *dev; + struct intel_scu_ipc_dev *scu; + enum intel_cht_wc_models cht_wc_model; +}; + +struct lpi_device_info { + char *name; + int enabled; + union acpi_object *package; +}; + +struct lpi_device_constraint { + int uid; + int min_dstate; + int function_states; +}; + +struct lpi_constraints { + acpi_handle handle; + int min_dstate; +}; + +struct lpi_device_constraint_amd { + char *name; + int enabled; + int function_states; + int min_dstate; +}; + +struct amd_lps0_hid_device_data { + const bool check_off_by_one; +}; + +struct clk_fixed_factor { + struct clk_hw hw; + unsigned int mult; + unsigned int div; + long unsigned int acc; + unsigned int flags; +}; + +struct clk_gate { + struct clk_hw hw; + void *reg; + u8 bit_idx; + u8 flags; + spinlock_t *lock; +}; + +struct u32_fract { + __u32 numerator; + __u32 denominator; +}; + +struct clk_fractional_divider { + struct clk_hw hw; + void *reg; + u8 mshift; + u8 mwidth; + u8 nshift; + u8 nwidth; + u8 flags; + void (*approximation)(struct clk_hw *, long unsigned int, long unsigned int *, long unsigned int *, long unsigned int *); + spinlock_t *lock; +}; + +struct acpi_table_csrt { + struct acpi_table_header header; +}; + +struct acpi_csrt_group { + u32 length; + u32 vendor_id; + u32 subvendor_id; + u16 device_id; + u16 subdevice_id; + u16 revision; + u16 reserved; + u32 shared_info_length; +}; + +struct acpi_csrt_shared_info { + u16 major_version; + u16 minor_version; + u32 mmio_base_low; + u32 mmio_base_high; + u32 gsi_interrupt; + u8 interrupt_polarity; + u8 interrupt_mode; + u8 num_channels; + u8 dma_address_width; + u16 base_request_line; + u16 num_handshake_signals; + u32 max_block_size; +}; + +struct acpi_dma_spec { + int chan_id; + int slave_id; + struct device *dev; +}; + +struct acpi_dma { + struct list_head dma_controllers; + struct device *dev; + struct dma_chan * (*acpi_dma_xlate)(struct acpi_dma_spec *, struct acpi_dma *); + void *data; + short unsigned int base_request_line; + short unsigned int end_request_line; +}; + +struct acpi_dma_filter_info { + dma_cap_mask_t dma_cap; + dma_filter_fn filter_fn; +}; + +struct acpi_dma_parser_data { + struct acpi_dma_spec dma_spec; + size_t index; + size_t n; +}; + +struct vring_desc { + __virtio64 addr; + __virtio32 len; + __virtio16 flags; + __virtio16 next; +}; + +struct vring_avail { + __virtio16 flags; + __virtio16 idx; + __virtio16 ring[0]; +}; + +struct vring_used_elem { + __virtio32 id; + __virtio32 len; +}; + +typedef struct vring_used_elem vring_used_elem_t; + +struct vring_used { + __virtio16 flags; + __virtio16 idx; + vring_used_elem_t ring[0]; +}; + +typedef struct vring_desc vring_desc_t; + +typedef struct vring_avail vring_avail_t; + +typedef struct vring_used vring_used_t; + +struct vring { + unsigned int num; + vring_desc_t *desc; + vring_avail_t *avail; + vring_used_t *used; +}; + +struct vring_packed_desc_event { + __le16 off_wrap; + __le16 flags; +}; + +struct vring_packed_desc { + __le64 addr; + __le32 len; + __le16 id; + __le16 flags; +}; + +struct vring_desc_state_split { + void *data; + struct vring_desc *indir_desc; +}; + +struct vring_desc_state_packed { + void *data; + struct vring_packed_desc *indir_desc; + u16 num; + u16 last; +}; + +struct vring_desc_extra { + dma_addr_t addr; + u32 len; + u16 flags; + u16 next; +}; + +struct vring_virtqueue_split { + struct vring vring; + u16 avail_flags_shadow; + u16 avail_idx_shadow; + struct vring_desc_state_split *desc_state; + struct vring_desc_extra *desc_extra; + dma_addr_t queue_dma_addr; + size_t queue_size_in_bytes; + u32 vring_align; + bool may_reduce_num; +}; + +struct vring_virtqueue_packed { + struct { + unsigned int num; + struct vring_packed_desc *desc; + struct vring_packed_desc_event *driver; + struct vring_packed_desc_event *device; + } vring; + bool avail_wrap_counter; + u16 avail_used_flags; + u16 next_avail_idx; + u16 event_flags_shadow; + struct vring_desc_state_packed *desc_state; + struct vring_desc_extra *desc_extra; + dma_addr_t ring_dma_addr; + dma_addr_t driver_event_dma_addr; + dma_addr_t device_event_dma_addr; + size_t ring_size_in_bytes; + size_t event_size_in_bytes; +}; + +struct vring_virtqueue { + struct virtqueue vq; + bool packed_ring; + bool use_dma_api; + bool weak_barriers; + bool broken; + bool indirect; + bool event; + unsigned int free_head; + unsigned int num_added; + u16 last_used_idx; + bool event_triggered; + union { + struct vring_virtqueue_split split; + struct vring_virtqueue_packed packed; + }; + bool (*notify)(struct virtqueue *); + bool we_own_ring; + struct device *dma_dev; +}; + +struct virtio_balloon_config { + __le32 num_pages; + __le32 actual; + union { + __le32 free_page_hint_cmd_id; + __le32 free_page_report_cmd_id; + }; + __le32 poison_val; +}; + +struct virtio_balloon_stat { + __virtio16 tag; + __virtio64 val; +} __attribute__((packed)); + +enum virtio_balloon_vq { + VIRTIO_BALLOON_VQ_INFLATE = 0, + VIRTIO_BALLOON_VQ_DEFLATE = 1, + VIRTIO_BALLOON_VQ_STATS = 2, + VIRTIO_BALLOON_VQ_FREE_PAGE = 3, + VIRTIO_BALLOON_VQ_REPORTING = 4, + VIRTIO_BALLOON_VQ_MAX = 5, +}; + +enum virtio_balloon_config_read { + VIRTIO_BALLOON_CONFIG_READ_CMD_ID = 0, +}; + +struct virtio_balloon { + struct virtio_device *vdev; + struct virtqueue *inflate_vq; + struct virtqueue *deflate_vq; + struct virtqueue *stats_vq; + struct virtqueue *free_page_vq; + struct workqueue_struct *balloon_wq; + struct work_struct report_free_page_work; + struct work_struct update_balloon_stats_work; + struct work_struct update_balloon_size_work; + spinlock_t stop_update_lock; + bool stop_update; + long unsigned int config_read_bitmap; + struct list_head free_page_list; + spinlock_t free_page_list_lock; + long unsigned int num_free_page_blocks; + u32 cmd_id_received_cache; + __virtio32 cmd_id_active; + __virtio32 cmd_id_stop; + wait_queue_head_t acked; + unsigned int num_pages; + struct balloon_dev_info vb_dev_info; + struct mutex balloon_lock; + unsigned int num_pfns; + __virtio32 pfns[256]; + struct virtio_balloon_stat stats[16]; + struct shrinker *shrinker; + struct notifier_block oom_nb; + struct virtqueue *reporting_vq; + struct page_reporting_dev_info pr_dev_info; + spinlock_t wakeup_lock; + bool processing_wakeup_event; + u32 wakeup_signal_mask; +}; + +struct uni_pagedict { + u16 **uni_pgdir[32]; + long unsigned int refcount; + long unsigned int sum; + unsigned char *inverse_translations[4]; + u16 *inverse_trans_unicode; +}; + +struct irq_info___2 { + struct hlist_node node; + int irq; + spinlock_t lock; + struct list_head *head; +}; + +struct pciserial_board { + unsigned int flags; + unsigned int num_ports; + unsigned int base_baud; + unsigned int uart_offset; + unsigned int reg_shift; + unsigned int first_offset; +}; + +struct serial_private; + +struct pci_serial_quirk { + u32 vendor; + u32 device; + u32 subvendor; + u32 subdevice; + int (*probe)(struct pci_dev *); + int (*init)(struct pci_dev *); + int (*setup)(struct serial_private *, const struct pciserial_board *, struct uart_8250_port *, int); + void (*exit)(struct pci_dev *); +}; + +struct serial_private { + struct pci_dev *dev; + unsigned int nr; + struct pci_serial_quirk *quirk; + const struct pciserial_board *board; + int line[0]; +}; + +struct f815xxa_data { + spinlock_t lock; + int idx; +}; + +struct timedia_struct { + int num; + const short unsigned int *ids; +}; + +enum { + MOXA_SUPP_RS232 = 1, + MOXA_SUPP_RS422 = 2, + MOXA_SUPP_RS485 = 4, +}; + +enum pci_board_num_t { + pbn_default = 0, + pbn_b0_1_115200 = 1, + pbn_b0_2_115200 = 2, + pbn_b0_4_115200 = 3, + pbn_b0_5_115200 = 4, + pbn_b0_8_115200 = 5, + pbn_b0_1_921600 = 6, + pbn_b0_2_921600 = 7, + pbn_b0_4_921600 = 8, + pbn_b0_2_1130000 = 9, + pbn_b0_4_1152000 = 10, + pbn_b0_4_1250000 = 11, + pbn_b0_2_1843200 = 12, + pbn_b0_4_1843200 = 13, + pbn_b0_1_15625000 = 14, + pbn_b0_bt_1_115200 = 15, + pbn_b0_bt_2_115200 = 16, + pbn_b0_bt_4_115200 = 17, + pbn_b0_bt_8_115200 = 18, + pbn_b0_bt_1_460800 = 19, + pbn_b0_bt_2_460800 = 20, + pbn_b0_bt_4_460800 = 21, + pbn_b0_bt_1_921600 = 22, + pbn_b0_bt_2_921600 = 23, + pbn_b0_bt_4_921600 = 24, + pbn_b0_bt_8_921600 = 25, + pbn_b1_1_115200 = 26, + pbn_b1_2_115200 = 27, + pbn_b1_4_115200 = 28, + pbn_b1_8_115200 = 29, + pbn_b1_16_115200 = 30, + pbn_b1_1_921600 = 31, + pbn_b1_2_921600 = 32, + pbn_b1_4_921600 = 33, + pbn_b1_8_921600 = 34, + pbn_b1_2_1250000 = 35, + pbn_b1_bt_1_115200 = 36, + pbn_b1_bt_2_115200 = 37, + pbn_b1_bt_4_115200 = 38, + pbn_b1_bt_2_921600 = 39, + pbn_b1_1_1382400 = 40, + pbn_b1_2_1382400 = 41, + pbn_b1_4_1382400 = 42, + pbn_b1_8_1382400 = 43, + pbn_b2_1_115200 = 44, + pbn_b2_2_115200 = 45, + pbn_b2_4_115200 = 46, + pbn_b2_8_115200 = 47, + pbn_b2_1_460800 = 48, + pbn_b2_4_460800 = 49, + pbn_b2_8_460800 = 50, + pbn_b2_16_460800 = 51, + pbn_b2_1_921600 = 52, + pbn_b2_4_921600 = 53, + pbn_b2_8_921600 = 54, + pbn_b2_8_1152000 = 55, + pbn_b2_bt_1_115200 = 56, + pbn_b2_bt_2_115200 = 57, + pbn_b2_bt_4_115200 = 58, + pbn_b2_bt_2_921600 = 59, + pbn_b2_bt_4_921600 = 60, + pbn_b3_2_115200 = 61, + pbn_b3_4_115200 = 62, + pbn_b3_8_115200 = 63, + pbn_b4_bt_2_921600 = 64, + pbn_b4_bt_4_921600 = 65, + pbn_b4_bt_8_921600 = 66, + pbn_panacom = 67, + pbn_panacom2 = 68, + pbn_panacom4 = 69, + pbn_plx_romulus = 70, + pbn_oxsemi = 71, + pbn_oxsemi_1_15625000 = 72, + pbn_oxsemi_2_15625000 = 73, + pbn_oxsemi_4_15625000 = 74, + pbn_oxsemi_8_15625000 = 75, + pbn_intel_i960 = 76, + pbn_sgi_ioc3 = 77, + pbn_computone_4 = 78, + pbn_computone_6 = 79, + pbn_computone_8 = 80, + pbn_sbsxrsio = 81, + pbn_pasemi_1682M = 82, + pbn_ni8430_2 = 83, + pbn_ni8430_4 = 84, + pbn_ni8430_8 = 85, + pbn_ni8430_16 = 86, + pbn_ADDIDATA_PCIe_1_3906250 = 87, + pbn_ADDIDATA_PCIe_2_3906250 = 88, + pbn_ADDIDATA_PCIe_4_3906250 = 89, + pbn_ADDIDATA_PCIe_8_3906250 = 90, + pbn_ce4100_1_115200 = 91, + pbn_omegapci = 92, + pbn_NETMOS9900_2s_115200 = 93, + pbn_brcm_trumanage = 94, + pbn_fintek_4 = 95, + pbn_fintek_8 = 96, + pbn_fintek_12 = 97, + pbn_fintek_F81504A = 98, + pbn_fintek_F81508A = 99, + pbn_fintek_F81512A = 100, + pbn_wch382_2 = 101, + pbn_wch384_4 = 102, + pbn_wch384_8 = 103, + pbn_sunix_pci_1s = 104, + pbn_sunix_pci_2s = 105, + pbn_sunix_pci_4s = 106, + pbn_sunix_pci_8s = 107, + pbn_sunix_pci_16s = 108, + pbn_titan_1_4000000 = 109, + pbn_titan_2_4000000 = 110, + pbn_titan_4_4000000 = 111, + pbn_titan_8_4000000 = 112, + pbn_moxa_2 = 113, + pbn_moxa_4 = 114, + pbn_moxa_8 = 115, +}; + +struct hpet_info { + long unsigned int hi_ireqfreq; + long unsigned int hi_flags; + short unsigned int hi_hpet; + short unsigned int hi_timer; +}; + +struct hpet_timer { + u64 hpet_config; + union { + u64 _hpet_hc64; + u32 _hpet_hc32; + long unsigned int _hpet_compare; + } _u1; + u64 hpet_fsb[2]; +}; + +struct hpet { + u64 hpet_cap; + u64 res0; + u64 hpet_config; + u64 res1; + u64 hpet_isr; + u64 res2[25]; + union { + u64 _hpet_mc64; + u32 _hpet_mc32; + long unsigned int _hpet_mc; + } _u0; + u64 res3; + struct hpet_timer hpet_timers[0]; +}; + +struct hpets; + +struct hpet_dev { + struct hpets *hd_hpets; + struct hpet *hd_hpet; + struct hpet_timer *hd_timer; + long unsigned int hd_ireqfreq; + long unsigned int hd_irqdata; + wait_queue_head_t hd_waitqueue; + struct fasync_struct *hd_async_queue; + unsigned int hd_flags; + unsigned int hd_irq; + unsigned int hd_hdwirq; + char hd_name[7]; +}; + +struct hpets { + struct hpets *hp_next; + struct hpet *hp_hpet; + long unsigned int hp_hpet_phys; + long long unsigned int hp_tick_freq; + long unsigned int hp_delta; + unsigned int hp_ntimer; + unsigned int hp_which; + struct hpet_dev hp_dev[0]; +}; + +struct compat_hpet_info { + compat_ulong_t hi_ireqfreq; + compat_ulong_t hi_flags; + short unsigned int hi_hpet; + short unsigned int hi_timer; +}; + +struct aper_size_info_lvl2 { + int size; + int num_entries; + u32 size_value; +}; + +struct aper_size_info_fixed { + int size; + int num_entries; + int page_order; +}; + +struct intel_gtt_driver { + unsigned int gen: 8; + unsigned int is_g33: 1; + unsigned int is_pineview: 1; + unsigned int is_ironlake: 1; + unsigned int has_pgtbl_enable: 1; + unsigned int dma_mask_size: 8; + int (*setup)(void); + void (*cleanup)(void); + void (*write_entry)(dma_addr_t, unsigned int, unsigned int); + dma_addr_t (*read_entry)(unsigned int, bool *, bool *); + bool (*check_flags)(unsigned int); + void (*chipset_flush)(void); +}; + +struct _intel_private { + const struct intel_gtt_driver *driver; + struct pci_dev *pcidev; + struct pci_dev *bridge_dev; + u8 *registers; + phys_addr_t gtt_phys_addr; + u32 PGETBL_save; + u32 *gtt; + bool clear_fake_agp; + int num_dcache_entries; + void *i9xx_flush_page; + char *i81x_gtt_table; + struct resource ifp_resource; + int resource_valid; + struct page *scratch_page; + phys_addr_t scratch_page_dma; + int refcount; + unsigned int needs_dmar: 1; + phys_addr_t gma_bus_addr; + resource_size_t stolen_size; + unsigned int gtt_total_entries; + unsigned int gtt_mappable_entries; +}; + +struct intel_gtt_driver_description { + unsigned int gmch_chip_id; + char *name; + const struct intel_gtt_driver *gtt_driver; +}; + +struct tpm1_get_random_out { + __be32 rng_data_len; + u8 rng_data[128]; +}; + +struct iommufd_vevent_header { + __u32 flags; + __u32 sequence; +}; + +enum iommu_veventq_type { + IOMMU_VEVENTQ_TYPE_DEFAULT = 0, + IOMMU_VEVENTQ_TYPE_ARM_SMMUV3 = 1, + IOMMU_VEVENTQ_TYPE_TEGRA241_CMDQV = 2, +}; + +struct iommufd_fault; + +struct iommufd_hw_pagetable { + struct iommufd_object obj; + struct iommu_domain *domain; + struct iommufd_fault *fault; + bool pasid_compat: 1; +}; + +struct iommufd_access_ops { + u8 needs_pin_pages: 1; + void (*unmap)(void *, long unsigned int, long unsigned int); +}; + +struct iommufd_ioas; + +struct iommufd_ctx { + struct file *file; + struct xarray objects; + struct xarray groups; + wait_queue_head_t destroy_wait; + struct rw_semaphore ioas_creation_lock; + struct maple_tree mt_mmap; + struct mutex sw_msi_lock; + struct list_head sw_msi_list; + unsigned int sw_msi_id; + u8 account_mode; + u8 no_iommu_mode; + struct iommufd_ioas *vfio_ioas; +}; + +struct iommufd_sw_msi_maps { + long unsigned int bitmap[1]; +}; + +struct iommufd_hwpt_paging { + struct iommufd_hw_pagetable common; + struct iommufd_ioas *ioas; + bool auto_domain: 1; + bool enforce_cache_coherency: 1; + bool nest_parent: 1; + struct list_head hwpt_item; + struct iommufd_sw_msi_maps present_sw_msi; +}; + +struct iommufd_group; + +struct iommufd_device { + struct iommufd_object obj; + struct iommufd_ctx *ictx; + struct iommufd_group *igroup; + struct list_head group_item; + struct device *dev; + bool enforce_cache_coherency; + struct iommufd_vdevice *vdev; + bool destroying; +}; + +struct iommufd_access { + struct iommufd_object obj; + struct iommufd_ctx *ictx; + struct iommufd_ioas *ioas; + struct iommufd_ioas *ioas_unpin; + struct mutex ioas_lock; + const struct iommufd_access_ops *ops; + void *data; + long unsigned int iova_alignment; + u32 iopt_access_list_id; +}; + +struct io_pagetable { + struct rw_semaphore domains_rwsem; + struct xarray domains; + struct xarray access_list; + unsigned int next_domain_id; + struct rw_semaphore iova_rwsem; + struct rb_root_cached area_itree; + struct rb_root_cached allowed_itree; + struct rb_root_cached reserved_itree; + u8 disable_large_pages; + long unsigned int iova_alignment; +}; + +struct iommufd_ioas { + struct iommufd_object obj; + struct io_pagetable iopt; + struct mutex mutex; + struct list_head hwpt_list; +}; + +struct iommufd_mmap { + struct iommufd_object *owner; + long unsigned int vm_pgoff; + phys_addr_t mmio_addr; + size_t length; +}; + +struct iommufd_eventq { + struct iommufd_object obj; + struct iommufd_ctx *ictx; + struct file *filep; + spinlock_t lock; + struct list_head deliver; + struct wait_queue_head wait_queue; +}; + +struct iommufd_fault { + struct iommufd_eventq common; + struct mutex mutex; + struct xarray response; +}; + +struct iommufd_group { + struct kref ref; + struct mutex lock; + struct iommufd_ctx *ictx; + struct iommu_group *group; + struct xarray pasid_attach; + struct iommufd_sw_msi_maps required_sw_msi; + phys_addr_t sw_msi_start; +}; + +struct iommufd_vevent { + struct iommufd_vevent_header header; + struct list_head node; + ssize_t data_len; + u64 event_data[0]; +}; + +struct iommufd_veventq { + struct iommufd_eventq common; + struct iommufd_viommu *viommu; + struct list_head node; + struct iommufd_vevent lost_events_header; + enum iommu_veventq_type type; + unsigned int depth; + u32 num_events; + u32 sequence; +}; + +struct ivrs_quirk_entry { + u8 id; + u32 devid; +}; + +enum { + DELL_INSPIRON_7375 = 0, + DELL_LATITUDE_5495 = 1, + LENOVO_IDEAPAD_330S_15ARR = 2, +}; + +enum iommu_hwpt_vtd_s1_flags { + IOMMU_VTD_S1_SRE = 1, + IOMMU_VTD_S1_EAFE = 2, + IOMMU_VTD_S1_WPE = 4, +}; + +struct pasid_dir_entry { + u64 val; +}; + +struct pasid_entry { + u64 val[8]; +}; + +struct iova_magazine; + +struct iova_cpu_rcache; + +struct iova_rcache { + spinlock_t lock; + unsigned int depot_size; + struct iova_magazine *depot; + struct iova_cpu_rcache *cpu_rcaches; + struct iova_domain *iovad; + struct delayed_work work; +}; + +struct iova_magazine { + union { + long unsigned int size; + struct iova_magazine *next; + }; + long unsigned int pfns[127]; +}; + +struct iova_cpu_rcache { + spinlock_t lock; + struct iova_magazine *loaded; + struct iova_magazine *prev; +}; + +struct component_master_ops { + int (*bind)(struct device *); + void (*unbind)(struct device *); +}; + +struct component; + +struct component_match_array { + void *data; + int (*compare)(struct device *, void *); + int (*compare_typed)(struct device *, int, void *); + void (*release)(struct device *, void *); + struct component *component; + bool duplicate; +}; + +struct aggregate_device; + +struct component { + struct list_head node; + struct aggregate_device *adev; + bool bound; + const struct component_ops *ops; + int subcomponent; + struct device *dev; +}; + +struct component_match { + size_t alloc; + size_t num; + struct component_match_array *compare; +}; + +struct aggregate_device { + struct list_head node; + bool bound; + const struct component_master_ops *ops; + struct device *parent; + struct component_match *match; +}; + +enum dpm_order { + DPM_ORDER_NONE = 0, + DPM_ORDER_DEV_AFTER_PARENT = 1, + DPM_ORDER_PARENT_BEFORE_DEV = 2, + DPM_ORDER_DEV_LAST = 3, +}; + +struct fwnode_link { + struct fwnode_handle *supplier; + struct list_head s_hook; + struct fwnode_handle *consumer; + struct list_head c_hook; + u8 flags; +}; + +union device_attr_group_devres { + const struct attribute_group *group; + const struct attribute_group **groups; +}; + +struct class_dir { + struct kobject kobj; + const struct class *class; +}; + +struct root_device { + struct device dev; + struct module *owner; +}; + +struct irq_affinity_devres { + unsigned int count; + unsigned int irq[0]; +}; + +struct platform_object { + struct platform_device pdev; + char name[0]; +}; + +struct devres_node { + struct list_head entry; + dr_release_t release; + const char *name; + size_t size; +}; + +struct devres { + struct devres_node node; + u8 data[0]; +}; + +struct devres_group { + struct devres_node node[2]; + void *id; + int color; +}; + +struct action_devres { + void *data; + void (*action)(void *); +}; + +struct pages_devres { + long unsigned int addr; + unsigned int order; +}; + +struct auxiliary_device_id { + char name[32]; + kernel_ulong_t driver_data; +}; + +struct auxiliary_driver { + int (*probe)(struct auxiliary_device *, const struct auxiliary_device_id *); + void (*remove)(struct auxiliary_device *); + void (*shutdown)(struct auxiliary_device *); + int (*suspend)(struct auxiliary_device *, pm_message_t); + int (*resume)(struct auxiliary_device *); + const char *name; + struct device_driver driver; + const struct auxiliary_device_id *id_table; +}; + +struct node_access_nodes { + struct device dev; + struct list_head list_node; + unsigned int access; + struct access_coordinate coord; +}; + +struct node_cache_info { + struct device dev; + struct list_head node; + struct node_cache_attrs cache_attrs; +}; + +struct node_attr { + struct device_attribute attr; + enum node_states state; +}; + +struct regmap_async_spi { + struct regmap_async core; + struct spi_message m; + struct spi_transfer t[2]; +}; + +struct trace_event_raw_devres { + struct trace_entry ent; + u32 __data_loc_devname; + struct device *dev; + const char *op; + void *node; + u32 __data_loc_name; + size_t size; + char __data[0]; +}; + +struct trace_event_data_offsets_devres { + u32 devname; + const void *devname_ptr_; + u32 name; + const void *name_ptr_; +}; + +typedef void (*btf_trace_devres_log)(void *, struct device *, const char *, void *, const char *, size_t); + +struct tps65910_platform_data { + int irq; + int irq_base; +}; + +struct sih_irq_data { + u8 isr_offset; + u8 imr_offset; +}; + +struct sih { + char name[8]; + u8 module; + u8 control_offset; + bool set_cor; + u8 bits; + u8 bytes_ixr; + u8 edr_offset; + u8 bytes_edr; + u8 irq_lines; + struct sih_irq_data mask[2]; +}; + +struct sih_agent { + int irq_base; + const struct sih *sih; + u32 imr; + bool imr_change_pending; + u32 edge_change; + struct mutex irq_lock; + char *irq_name; +}; + +struct twl6040 { + struct device *dev; + struct regmap *regmap; + struct regmap_irq_chip_data *irq_data; + struct regulator_bulk_data supplies[2]; + struct clk *clk32k; + struct clk *mclk; + struct mutex mutex; + struct mutex irq_mutex; + struct mfd_cell cells[4]; + struct completion ready; + struct gpio_desc *audpwron; + int power_count; + int rev; + int pll; + unsigned int sysclk_rate; + unsigned int mclk_rate; + unsigned int irq; + unsigned int irq_ready; + unsigned int irq_th; +}; + +enum gpio_select { + NO_GPIO = 0, + GPIO_1 = 1, + GPIO_2 = 2, +}; + +struct da9055_pdata { + int (*init)(struct da9055 *); + int irq_base; + int gpio_base; + struct regulator_init_data *regulators[8]; + bool reset_enable; + enum gpio_select *reg_ren; + enum gpio_select *reg_rsel; +}; + +enum max77693_types { + TYPE_MAX77693_UNKNOWN = 0, + TYPE_MAX77693 = 1, + TYPE_MAX77705 = 2, + TYPE_MAX77843 = 3, + TYPE_MAX77693_NUM = 4, +}; + +struct max77693_dev { + struct device *dev; + struct i2c_client *i2c; + struct i2c_client *i2c_muic; + struct i2c_client *i2c_haptic; + struct i2c_client *i2c_chg; + enum max77693_types type; + struct regmap *regmap; + struct regmap *regmap_muic; + struct regmap *regmap_haptic; + struct regmap *regmap_chg; + struct regmap *regmap_leds; + struct regmap_irq_chip_data *irq_data_led; + struct regmap_irq_chip_data *irq_data_topsys; + struct regmap_irq_chip_data *irq_data_chg; + struct regmap_irq_chip_data *irq_data_muic; + int irq; +}; + +enum max77843_sys_reg { + MAX77843_SYS_REG_PMICID = 0, + MAX77843_SYS_REG_PMICREV = 1, + MAX77843_SYS_REG_MAINCTRL1 = 2, + MAX77843_SYS_REG_INTSRC = 34, + MAX77843_SYS_REG_INTSRCMASK = 35, + MAX77843_SYS_REG_SYSINTSRC = 36, + MAX77843_SYS_REG_SYSINTMASK = 38, + MAX77843_SYS_REG_TOPSYS_STAT = 40, + MAX77843_SYS_REG_SAFEOUTCTRL = 198, + MAX77843_SYS_REG_END = 199, +}; + +enum max77843_charger_reg { + MAX77843_CHG_REG_CHG_INT = 176, + MAX77843_CHG_REG_CHG_INT_MASK = 177, + MAX77843_CHG_REG_CHG_INT_OK = 178, + MAX77843_CHG_REG_CHG_DTLS_00 = 179, + MAX77843_CHG_REG_CHG_DTLS_01 = 180, + MAX77843_CHG_REG_CHG_DTLS_02 = 181, + MAX77843_CHG_REG_CHG_CNFG_00 = 183, + MAX77843_CHG_REG_CHG_CNFG_01 = 184, + MAX77843_CHG_REG_CHG_CNFG_02 = 185, + MAX77843_CHG_REG_CHG_CNFG_03 = 186, + MAX77843_CHG_REG_CHG_CNFG_04 = 187, + MAX77843_CHG_REG_CHG_CNFG_06 = 189, + MAX77843_CHG_REG_CHG_CNFG_07 = 190, + MAX77843_CHG_REG_CHG_CNFG_09 = 192, + MAX77843_CHG_REG_CHG_CNFG_10 = 193, + MAX77843_CHG_REG_CHG_CNFG_11 = 194, + MAX77843_CHG_REG_CHG_CNFG_12 = 195, + MAX77843_CHG_REG_END = 196, +}; + +enum max8997_types { + TYPE_MAX8997 = 0, + TYPE_MAX8966 = 1, +}; + +struct adp5520_gpio_platform_data { + unsigned int gpio_start; + u8 gpio_en_mask; + u8 gpio_pullup_mask; +}; + +struct adp5520_keys_platform_data { + int rows_en_mask; + int cols_en_mask; + const short unsigned int *keymap; + short unsigned int keymapsize; + unsigned int repeat: 1; +}; + +struct led_info; + +struct adp5520_leds_platform_data { + int num_leds; + struct led_info *leds; + u8 fade_in; + u8 fade_out; + u8 led_on_time; +}; + +struct adp5520_backlight_platform_data { + u8 fade_in; + u8 fade_out; + u8 fade_led_law; + u8 en_ambl_sens; + u8 abml_filt; + u8 l1_daylight_max; + u8 l1_daylight_dim; + u8 l2_office_max; + u8 l2_office_dim; + u8 l3_dark_max; + u8 l3_dark_dim; + u8 l2_trip; + u8 l2_hyst; + u8 l3_trip; + u8 l3_hyst; +}; + +struct adp5520_platform_data { + struct adp5520_keys_platform_data *keys; + struct adp5520_gpio_platform_data *gpio; + struct adp5520_leds_platform_data *leds; + struct adp5520_backlight_platform_data *backlight; +}; + +struct adp5520_chip { + struct i2c_client *client; + struct device *dev; + struct mutex lock; + struct blocking_notifier_head notifier_list; + int irq; + long unsigned int id; + uint8_t mode; +}; + +enum aat2870_id { + AAT2870_ID_BL = 0, + AAT2870_ID_LDOA = 1, + AAT2870_ID_LDOB = 2, + AAT2870_ID_LDOC = 3, + AAT2870_ID_LDOD = 4, +}; + +struct aat2870_register { + bool readable; + bool writeable; + u8 value; +}; + +struct aat2870_data { + struct device *dev; + struct i2c_client *client; + struct mutex io_lock; + struct aat2870_register *reg_cache; + int en_pin; + bool is_enable; + int (*init)(struct aat2870_data *); + void (*uninit)(struct aat2870_data *); + int (*read)(struct aat2870_data *, u8, u8 *); + int (*write)(struct aat2870_data *, u8, u8); + int (*update)(struct aat2870_data *, u8, u8, u8); +}; + +struct aat2870_subdev_info { + int id; + const char *name; + void *platform_data; +}; + +struct aat2870_platform_data { + int en_pin; + struct aat2870_subdev_info *subdevs; + int num_subdevs; + int (*init)(struct aat2870_data *); + void (*uninit)(struct aat2870_data *); +}; + +struct as3711 { + struct device *dev; + struct regmap *regmap; +}; + +enum as3711_su2_feedback { + AS3711_SU2_VOLTAGE = 0, + AS3711_SU2_CURR1 = 1, + AS3711_SU2_CURR2 = 2, + AS3711_SU2_CURR3 = 3, + AS3711_SU2_CURR_AUTO = 4, +}; + +enum as3711_su2_fbprot { + AS3711_SU2_LX_SD4 = 0, + AS3711_SU2_GPIO2 = 1, + AS3711_SU2_GPIO3 = 2, + AS3711_SU2_GPIO4 = 3, +}; + +struct as3711_regulator_pdata { + struct regulator_init_data *init_data[12]; +}; + +struct as3711_bl_pdata { + bool su1_fb; + int su1_max_uA; + bool su2_fb; + int su2_max_uA; + enum as3711_su2_feedback su2_feedback; + enum as3711_su2_fbprot su2_fbprot; + bool su2_auto_curr1; + bool su2_auto_curr2; + bool su2_auto_curr3; +}; + +struct as3711_platform_data { + struct as3711_regulator_pdata regulator; + struct as3711_bl_pdata backlight; +}; + +enum { + AS3711_REGULATOR = 0, + AS3711_BACKLIGHT = 1, +}; + +struct nvdimm_pmu { + struct pmu pmu; + struct device *dev; + int cpu; + struct hlist_node node; + enum cpuhp_state cpuhp_state; + struct cpumask arch_cpumask; +}; + +enum { + CTL_RES_CNT = 1, +}; + +enum { + CTL_RES_TM = 2, +}; + +enum { + POWERON_SECS = 3, +}; + +enum { + MEM_LIFE = 4, +}; + +enum { + CRI_RES_UTIL = 5, +}; + +enum { + HOST_L_CNT = 6, +}; + +enum { + HOST_S_CNT = 7, +}; + +enum { + HOST_S_DUR = 8, +}; + +enum { + HOST_L_DUR = 9, +}; + +enum { + MED_R_CNT = 10, +}; + +enum { + MED_W_CNT = 11, +}; + +enum { + MED_R_DUR = 12, +}; + +enum { + MED_W_DUR = 13, +}; + +enum { + CACHE_RH_CNT = 14, +}; + +enum { + CACHE_WH_CNT = 15, +}; + +enum { + FAST_W_CNT = 16, +}; + +enum { + ND_MIN_NAMESPACE_SIZE = 4096, +}; + +enum alloc_loc { + ALLOC_ERR = 0, + ALLOC_BEFORE = 1, + ALLOC_MID = 2, + ALLOC_AFTER = 3, +}; + +struct btt_sb { + u8 signature[16]; + u8 uuid[16]; + u8 parent_uuid[16]; + __le32 flags; + __le16 version_major; + __le16 version_minor; + __le32 external_lbasize; + __le32 external_nlba; + __le32 internal_lbasize; + __le32 internal_nlba; + __le32 nfree; + __le32 infosize; + __le64 nextoff; + __le64 dataoff; + __le64 mapoff; + __le64 logoff; + __le64 info2off; + u8 padding[3968]; + __le64 checksum; +}; + +enum btt_init_state { + INIT_UNCHECKED = 0, + INIT_NOTFOUND = 1, + INIT_READY = 2, +}; + +struct log_entry { + __le32 lba; + __le32 old_map; + __le32 new_map; + __le32 seq; +}; + +struct log_group { + struct log_entry ent[4]; +}; + +struct free_entry { + u32 block; + u8 sub; + u8 seq; + u8 has_err; +}; + +struct aligned_lock { + union { + spinlock_t lock; + u8 cacheline_padding[64]; + }; +}; + +struct arena_info { + u64 size; + u64 external_lba_start; + u32 internal_nlba; + u32 internal_lbasize; + u32 external_nlba; + u32 external_lbasize; + u32 nfree; + u16 version_major; + u16 version_minor; + u32 sector_size; + u64 nextoff; + u64 infooff; + u64 dataoff; + u64 mapoff; + u64 logoff; + u64 info2off; + struct free_entry *freelist; + u32 *rtt; + struct aligned_lock *map_locks; + struct nd_btt *nd_btt; + struct list_head list; + struct dentry *debugfs_dir; + u32 flags; + struct mutex err_lock; + int log_index[2]; +}; + +enum log_ent_request { + LOG_NEW_ENT = 0, + LOG_OLD_ENT = 1, +}; + +typedef int (*walk_hmem_fn)(struct device *, int, const struct resource *); + +struct dma_resv_list { + struct callback_head rcu; + u32 num_fences; + u32 max_fences; + struct dma_fence *table[0]; +}; + +struct cma_heap { + struct dma_heap *heap; + struct cma *cma; +}; + +struct cma_heap_buffer { + struct cma_heap *heap; + struct list_head attachments; + struct mutex lock; + long unsigned int len; + struct page *cma_pages; + struct page **pages; + long unsigned int pagecount; + int vmap_cnt; + void *vaddr; +}; + +struct udmabuf_create { + __u32 memfd; + __u32 flags; + __u64 offset; + __u64 size; +}; + +struct udmabuf_create_item { + __u32 memfd; + __u32 __pad; + __u64 offset; + __u64 size; +}; + +struct udmabuf_create_list { + __u32 flags; + __u32 count; + struct udmabuf_create_item list[0]; +}; + +struct udmabuf { + long unsigned int pagecount; + struct folio **folios; + long unsigned int nr_pinned; + struct folio **pinned_folios; + struct sg_table *sg; + struct miscdevice *device; + long unsigned int *offsets; +}; + +struct request_sense; + +struct cdrom_generic_command { + unsigned char cmd[12]; + unsigned char *buffer; + unsigned int buflen; + int stat; + struct request_sense *sense; + unsigned char data_direction; + int quiet; + int timeout; + union { + void *reserved[1]; + void *unused; + }; +}; + +struct request_sense { + __u8 error_code: 7; + __u8 valid: 1; + __u8 segment_number; + __u8 sense_key: 4; + __u8 reserved2: 1; + __u8 ili: 1; + __u8 reserved1: 2; + __u8 information[4]; + __u8 add_sense_len; + __u8 command_info[4]; + __u8 asc; + __u8 ascq; + __u8 fruc; + __u8 sks[3]; + __u8 asb[46]; +}; + +struct scsi_ioctl_command { + unsigned int inlen; + unsigned int outlen; + unsigned char data[0]; +}; + +struct scsi_idlun { + __u32 dev_id; + __u32 host_unique_id; +}; + +struct compat_cdrom_generic_command { + unsigned char cmd[12]; + compat_caddr_t buffer; + compat_uint_t buflen; + compat_int_t stat; + compat_caddr_t sense; + unsigned char data_direction; + unsigned char pad[3]; + compat_int_t quiet; + compat_int_t timeout; + compat_caddr_t unused; +}; + +enum scsi_timeouts { + SCSI_DEFAULT_EH_TIMEOUT = 10000, +}; + +struct async_scan_data { + struct list_head list; + struct Scsi_Host *shost; + struct completion prev_finished; +}; + +struct scsi_varlen_cdb_hdr { + __u8 opcode; + __u8 control; + __u8 misc[5]; + __u8 additional_cdb_length; + __be16 service_action; +}; + +struct scsi_io_group_descriptor { + u8 ic_enable: 1; + u8 cs_enble: 1; + u8 st_enble: 1; + u8 reserved1: 3; + u8 io_advice_hints_mode: 2; + u8 reserved2[3]; + u8 lbm_descriptor_type: 4; + u8 rlbsr: 2; + u8 reserved3: 1; + u8 acdlu: 1; + u8 params[2]; + u8 reserved4; + u8 reserved5[8]; +}; + +struct scsi_stream_status { + u8 reserved1: 7; + u8 perm: 1; + u8 reserved2; + __be16 stream_identifier; + u8 rel_lifetime: 6; + u8 reserved3: 2; + u8 reserved4[3]; +}; + +struct scsi_stream_status_header { + __be32 len; + u16 reserved; + __be16 number_of_open_streams; +}; + +enum scsi_prot_flags { + SCSI_PROT_TRANSFER_PI = 1, + SCSI_PROT_GUARD_CHECK = 2, + SCSI_PROT_REF_CHECK = 4, + SCSI_PROT_REF_INCREMENT = 8, + SCSI_PROT_IP_CHECKSUM = 16, +}; + +enum { + SD_EXT_CDB_SIZE = 32, + SD_MEMPOOL_SIZE = 2, +}; + +enum { + SD_DEF_XFER_BLOCKS = 65535, + SD_MAX_XFER_BLOCKS = 4294967295, + SD_MAX_WS10_BLOCKS = 65535, + SD_MAX_WS16_BLOCKS = 8388607, +}; + +enum { + SD_LBP_FULL = 0, + SD_LBP_UNMAP = 1, + SD_LBP_WS16 = 2, + SD_LBP_WS10 = 3, + SD_LBP_ZERO = 4, + SD_LBP_DISABLE = 5, +}; + +enum { + SD_ZERO_WRITE = 0, + SD_ZERO_WS = 1, + SD_ZERO_WS16_UNMAP = 2, + SD_ZERO_WS10_UNMAP = 3, +}; + +struct ccs_modesel_head { + __u8 _r1; + __u8 medium; + __u8 _r2; + __u8 block_desc_length; + __u8 density; + __u8 number_blocks_hi; + __u8 number_blocks_med; + __u8 number_blocks_lo; + __u8 _r3; + __u8 block_length_hi; + __u8 block_length_med; + __u8 block_length_lo; +}; + +enum nvme_tcp_tls_cipher { + NVME_TCP_TLS_CIPHER_INVALID = 0, + NVME_TCP_TLS_CIPHER_SHA256 = 1, + NVME_TCP_TLS_CIPHER_SHA384 = 2, +}; + +struct nvme_tls_psk_priority_list { + bool generated; + u8 psk_ver; + enum nvme_tcp_tls_cipher cipher; +}; + +struct nvme_user_io { + __u8 opcode; + __u8 flags; + __u16 control; + __u16 nblocks; + __u16 rsvd; + __u64 metadata; + __u64 addr; + __u64 slba; + __u32 dsmgmt; + __u32 reftag; + __u16 apptag; + __u16 appmask; +}; + +struct nvme_passthru_cmd { + __u8 opcode; + __u8 flags; + __u16 rsvd1; + __u32 nsid; + __u32 cdw2; + __u32 cdw3; + __u64 metadata; + __u64 addr; + __u32 metadata_len; + __u32 data_len; + __u32 cdw10; + __u32 cdw11; + __u32 cdw12; + __u32 cdw13; + __u32 cdw14; + __u32 cdw15; + __u32 timeout_ms; + __u32 result; +}; + +struct nvme_passthru_cmd64 { + __u8 opcode; + __u8 flags; + __u16 rsvd1; + __u32 nsid; + __u32 cdw2; + __u32 cdw3; + __u64 metadata; + __u64 addr; + __u32 metadata_len; + union { + __u32 data_len; + __u32 vec_cnt; + }; + __u32 cdw10; + __u32 cdw11; + __u32 cdw12; + __u32 cdw13; + __u32 cdw14; + __u32 cdw15; + __u32 timeout_ms; + __u32 rsvd2; + __u64 result; +}; + +struct nvme_uring_cmd { + __u8 opcode; + __u8 flags; + __u16 rsvd1; + __u32 nsid; + __u32 cdw2; + __u32 cdw3; + __u64 metadata; + __u64 addr; + __u32 metadata_len; + __u32 data_len; + __u32 cdw10; + __u32 cdw11; + __u32 cdw12; + __u32 cdw13; + __u32 cdw14; + __u32 cdw15; + __u32 timeout_ms; + __u32 rsvd2; +}; + +enum { + NVME_IOCTL_VEC = 1, + NVME_IOCTL_PARTITION = 2, +}; + +struct nvme_uring_data { + __u64 metadata; + __u64 addr; + __u32 data_len; + __u32 metadata_len; + __u32 timeout_ms; +}; + +struct nvme_uring_cmd_pdu { + struct request *req; + struct bio *bio; + u64 result; + int status; +}; + +struct nvme_smart_log { + __u8 critical_warning; + __u8 temperature[2]; + __u8 avail_spare; + __u8 spare_thresh; + __u8 percent_used; + __u8 endu_grp_crit_warn_sumry; + __u8 rsvd7[25]; + __u8 data_units_read[16]; + __u8 data_units_written[16]; + __u8 host_reads[16]; + __u8 host_writes[16]; + __u8 ctrl_busy_time[16]; + __u8 power_cycles[16]; + __u8 power_on_hours[16]; + __u8 unsafe_shutdowns[16]; + __u8 media_errors[16]; + __u8 num_err_log_entries[16]; + __le32 warning_temp_time; + __le32 critical_comp_time; + __le16 temp_sensor[8]; + __le32 thm_temp1_trans_count; + __le32 thm_temp2_trans_count; + __le32 thm_temp1_total_time; + __le32 thm_temp2_total_time; + __u8 rsvd232[280]; +}; + +enum { + NVME_SMART_CRIT_SPARE = 1, + NVME_SMART_CRIT_TEMPERATURE = 2, + NVME_SMART_CRIT_RELIABILITY = 4, + NVME_SMART_CRIT_MEDIA = 8, + NVME_SMART_CRIT_VOLATILE_MEMORY = 16, +}; + +enum { + NVME_TEMP_THRESH_MASK = 65535, + NVME_TEMP_THRESH_SELECT_SHIFT = 16, + NVME_TEMP_THRESH_TYPE_UNDER = 1048576, +}; + +struct nvme_hwmon_data { + struct nvme_ctrl *ctrl; + struct nvme_smart_log *log; + struct mutex read_lock; +}; + +typedef unsigned int (*ata_xlat_func_t)(struct ata_queued_cmd *); + +struct drm_mode_crtc { + __u64 set_connectors_ptr; + __u32 count_connectors; + __u32 crtc_id; + __u32 fb_id; + __u32 x; + __u32 y; + __u32 gamma_size; + __u32 mode_valid; + struct drm_mode_modeinfo mode; +}; + +struct est_timings { + u8 t1; + u8 t2; + u8 mfg_rsvd; +}; + +struct std_timing { + u8 hsize; + u8 vfreq_aspect; +}; + +struct detailed_pixel_timing { + u8 hactive_lo; + u8 hblank_lo; + u8 hactive_hblank_hi; + u8 vactive_lo; + u8 vblank_lo; + u8 vactive_vblank_hi; + u8 hsync_offset_lo; + u8 hsync_pulse_width_lo; + u8 vsync_offset_pulse_width_lo; + u8 hsync_vsync_offset_pulse_width_hi; + u8 width_mm_lo; + u8 height_mm_lo; + u8 width_height_mm_hi; + u8 hborder; + u8 vborder; + u8 misc; +}; + +struct detailed_data_string { + u8 str[13]; +}; + +enum drm_edid_quirk { + DRM_EDID_QUIRK_DP_DPCD_PROBE = 0, + DRM_EDID_QUIRK_NUM = 1, +}; + +struct detailed_data_monitor_range { + u8 min_vfreq; + u8 max_vfreq; + u8 min_hfreq_khz; + u8 max_hfreq_khz; + u8 pixel_clock_mhz; + u8 flags; + union { + struct { + u8 reserved; + u8 hfreq_start_khz; + u8 c; + __le16 m; + u8 k; + u8 j; + } __attribute__((packed)) gtf2; + struct { + u8 version; + u8 data1; + u8 data2; + u8 supported_aspects; + u8 flags; + u8 supported_scalings; + u8 preferred_refresh; + } cvt; + } formula; +}; + +struct detailed_data_wpindex { + u8 white_yx_lo; + u8 white_x_hi; + u8 white_y_hi; + u8 gamma; +}; + +struct cvt_timing { + u8 code[3]; +}; + +struct detailed_non_pixel { + u8 pad1; + u8 type; + u8 pad2; + union { + struct detailed_data_string str; + struct detailed_data_monitor_range range; + struct detailed_data_wpindex color; + struct std_timing timings[6]; + struct cvt_timing cvt[4]; + } data; +}; + +struct detailed_timing { + __le16 pixel_clock; + union { + struct detailed_pixel_timing pixel_data; + struct detailed_non_pixel other_data; + } data; +}; + +struct drm_edid_product_id { + __be16 manufacturer_name; + __le16 product_code; + __le32 serial_number; + u8 week_of_manufacture; + u8 year_of_manufacture; +} __attribute__((packed)); + +struct edid { + u8 header[8]; + union { + struct drm_edid_product_id product_id; + struct { + u8 mfg_id[2]; + u8 prod_code[2]; + u32 serial; + u8 mfg_week; + u8 mfg_year; + } __attribute__((packed)); + }; + u8 version; + u8 revision; + u8 input; + u8 width_cm; + u8 height_cm; + u8 gamma; + u8 features; + u8 red_green_lo; + u8 blue_white_lo; + u8 red_x; + u8 red_y; + u8 green_x; + u8 green_y; + u8 blue_x; + u8 blue_y; + u8 white_x; + u8 white_y; + struct est_timings established_timings; + struct std_timing standard_timings[8]; + struct detailed_timing detailed_timings[4]; + u8 extensions; + u8 checksum; +}; + +struct displayid_tiled_block { + struct displayid_block base; + u8 tile_cap; + u8 topo[3]; + u8 tile_size[4]; + u8 tile_pixel_bezel[5]; + u8 topology_id[8]; +}; + +struct displayid_detailed_timings_1 { + u8 pixel_clock[3]; + u8 flags; + __le16 hactive; + __le16 hblank; + __le16 hsync; + __le16 hsw; + __le16 vactive; + __le16 vblank; + __le16 vsync; + __le16 vsw; +}; + +struct displayid_detailed_timing_block { + struct displayid_block base; + struct displayid_detailed_timings_1 timings[0]; +} __attribute__((packed)); + +struct displayid_formula_timings_9 { + u8 flags; + __le16 hactive; + __le16 vactive; + u8 vrefresh; +} __attribute__((packed)); + +struct displayid_formula_timing_block { + struct displayid_block base; + struct displayid_formula_timings_9 timings[0]; +}; + +struct displayid_vesa_vendor_specific_block { + struct displayid_block base; + u8 oui[3]; + u8 data_structure_type; + u8 mso; +}; + +enum drm_edid_internal_quirk { + EDID_QUIRK_PREFER_LARGE_60 = 1, + EDID_QUIRK_135_CLOCK_TOO_HIGH = 2, + EDID_QUIRK_PREFER_LARGE_75 = 3, + EDID_QUIRK_DETAILED_IN_CM = 4, + EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE = 5, + EDID_QUIRK_DETAILED_SYNC_PP = 6, + EDID_QUIRK_FORCE_REDUCED_BLANKING = 7, + EDID_QUIRK_FORCE_8BPC = 8, + EDID_QUIRK_FORCE_12BPC = 9, + EDID_QUIRK_FORCE_6BPC = 10, + EDID_QUIRK_FORCE_10BPC = 11, + EDID_QUIRK_NON_DESKTOP = 12, + EDID_QUIRK_CAP_DSC_15BPP = 13, +}; + +struct detailed_mode_closure { + struct drm_connector *connector; + const struct drm_edid *drm_edid; + bool preferred; + int modes; +}; + +struct drm_edid_match_closure { + const struct drm_edid_ident *ident; + bool matched; +}; + +struct edid_quirk { + const struct drm_edid_ident ident; + u32 quirks; +}; + +struct minimode { + short int w; + short int h; + short int r; + short int rb; +}; + +struct drm_edid_iter { + const struct drm_edid *drm_edid; + int index; +}; + +enum edid_block_status { + EDID_BLOCK_OK = 0, + EDID_BLOCK_READ_FAIL = 1, + EDID_BLOCK_NULL = 2, + EDID_BLOCK_ZERO = 3, + EDID_BLOCK_HEADER_CORRUPT = 4, + EDID_BLOCK_HEADER_REPAIR = 5, + EDID_BLOCK_HEADER_FIXED = 6, + EDID_BLOCK_CHECKSUM = 7, + EDID_BLOCK_VERSION = 8, +}; + +typedef int read_block_fn(void *, u8 *, unsigned int, size_t); + +typedef void detailed_cb(const struct detailed_timing *, void *); + +struct stereo_mandatory_mode { + int width; + int height; + int vrefresh; + unsigned int flags; +}; + +struct cea_db_iter { + struct drm_edid_iter edid_iter; + struct displayid_iter displayid_iter; + const u8 *collection; + int index; + int end; +}; + +struct cea_db { + u8 tag_length; + u8 data[0]; +}; + +struct drm_gem_close { + __u32 handle; + __u32 pad; +}; + +struct drm_gem_flink { + __u32 handle; + __u32 name; +}; + +struct drm_gem_open { + __u32 name; + __u32 handle; + __u64 size; +}; + +struct drm_syncobj_create { + __u32 handle; + __u32 flags; +}; + +struct drm_syncobj_destroy { + __u32 handle; + __u32 pad; +}; + +struct drm_syncobj_handle { + __u32 handle; + __u32 flags; + __s32 fd; + __u32 pad; + __u64 point; +}; + +struct drm_syncobj_transfer { + __u32 src_handle; + __u32 dst_handle; + __u64 src_point; + __u64 dst_point; + __u32 flags; + __u32 pad; +}; + +struct drm_syncobj_wait { + __u64 handles; + __s64 timeout_nsec; + __u32 count_handles; + __u32 flags; + __u32 first_signaled; + __u32 pad; + __u64 deadline_nsec; +}; + +struct drm_syncobj_timeline_wait { + __u64 handles; + __u64 points; + __s64 timeout_nsec; + __u32 count_handles; + __u32 flags; + __u32 first_signaled; + __u32 pad; + __u64 deadline_nsec; +}; + +struct drm_syncobj_eventfd { + __u32 handle; + __u32 flags; + __u64 point; + __s32 fd; + __u32 pad; +}; + +struct drm_syncobj_array { + __u64 handles; + __u32 count_handles; + __u32 pad; +}; + +struct drm_syncobj_timeline_array { + __u64 handles; + __u64 points; + __u32 count_handles; + __u32 flags; +}; + +struct drm_syncobj { + struct kref refcount; + struct dma_fence *fence; + struct list_head cb_list; + struct list_head ev_fd_list; + spinlock_t lock; + struct file *file; +}; + +struct syncobj_wait_entry { + struct list_head node; + struct task_struct *task; + struct dma_fence *fence; + struct dma_fence_cb fence_cb; + u64 point; +}; + +struct syncobj_eventfd_entry { + struct list_head node; + struct dma_fence *fence; + struct dma_fence_cb fence_cb; + struct drm_syncobj *syncobj; + struct eventfd_ctx *ev_fd_ctx; + u64 point; + u32 flags; +}; + +struct drm_vblank_work { + struct kthread_work base; + struct drm_vblank_crtc *vblank; + u64 count; + int cancelling; + struct list_head node; +}; + +struct drm_afbc_framebuffer { + struct drm_framebuffer base; + u32 block_width; + u32 block_height; + u32 aligned_width; + u32 aligned_height; + u32 offset; + u32 afbc_size; +}; + +struct simplefb_format { + const char *name; + u32 bits_per_pixel; + struct fb_bitfield red; + struct fb_bitfield green; + struct fb_bitfield blue; + struct fb_bitfield transp; + u32 fourcc; +}; + +struct simpledrm_device { + struct drm_sysfb_device sysfb; + u32 formats[2]; + struct drm_plane primary_plane; + struct drm_crtc crtc; + struct drm_encoder encoder; + struct drm_connector connector; +}; + +enum spi_offload_trigger_type { + SPI_OFFLOAD_TRIGGER_DATA_READY = 0, + SPI_OFFLOAD_TRIGGER_PERIODIC = 1, +}; + +struct spi_offload_trigger_periodic { + u64 frequency_hz; +}; + +struct spi_offload_trigger_config { + enum spi_offload_trigger_type type; + union { + struct spi_offload_trigger_periodic periodic; + }; +}; + +struct spi_offload_trigger; + +struct spi_offload_trigger_ops { + bool (*match)(struct spi_offload_trigger *, enum spi_offload_trigger_type, u64 *, u32); + int (*request)(struct spi_offload_trigger *, enum spi_offload_trigger_type, u64 *, u32); + void (*release)(struct spi_offload_trigger *); + int (*validate)(struct spi_offload_trigger *, struct spi_offload_trigger_config *); + int (*enable)(struct spi_offload_trigger *, struct spi_offload_trigger_config *); + void (*disable)(struct spi_offload_trigger *); +}; + +struct spi_offload_trigger { + struct list_head list; + struct kref ref; + struct fwnode_handle *fwnode; + struct mutex lock; + const struct spi_offload_trigger_ops *ops; + void *priv; +}; + +struct spi_offload_trigger_info { + struct fwnode_handle *fwnode; + const struct spi_offload_trigger_ops *ops; + void *priv; +}; + +struct spi_controller_and_offload { + struct spi_controller *controller; + struct spi_offload *offload; +}; + +struct mdio_board_entry { + struct list_head list; + struct mdio_board_info board_info; +}; + +struct phy_fixup { + struct list_head list; + char bus_id[64]; + u32 phy_uid; + u32 phy_uid_mask; + int (*run)(struct phy_device *); +}; + +struct mdio_device_id { + __u32 phy_id; + __u32 phy_id_mask; +}; + +enum { + MDIO_AN_C22 = 65504, +}; + +enum { + IFLA_TUN_UNSPEC = 0, + IFLA_TUN_OWNER = 1, + IFLA_TUN_GROUP = 2, + IFLA_TUN_TYPE = 3, + IFLA_TUN_PI = 4, + IFLA_TUN_VNET_HDR = 5, + IFLA_TUN_PERSIST = 6, + IFLA_TUN_MULTI_QUEUE = 7, + IFLA_TUN_NUM_QUEUES = 8, + IFLA_TUN_NUM_DISABLED_QUEUES = 9, + __IFLA_TUN_MAX = 10, +}; + +typedef struct { + char slave; + struct timer_list slave_timer; + short unsigned int slave_timeout; +} ax25_dama_info; + +struct ax25_dev { + struct list_head list; + struct net_device *dev; + netdevice_tracker dev_tracker; + struct net_device *forward; + struct ctl_table_header *sysheader; + int values[14]; + ax25_dama_info dama; + refcount_t refcount; + bool device_up; + struct callback_head rcu; +}; + +struct tun_pi { + __u16 flags; + __be16 proto; +}; + +struct tun_filter { + __u16 flags; + __u16 count; + __u8 addr[0]; +}; + +struct tun_msg_ctl { + short unsigned int type; + short unsigned int num; + void *ptr; +}; + +enum { + AX25_VALUES_IPDEFMODE = 0, + AX25_VALUES_AXDEFMODE = 1, + AX25_VALUES_BACKOFF = 2, + AX25_VALUES_CONMODE = 3, + AX25_VALUES_WINDOW = 4, + AX25_VALUES_EWINDOW = 5, + AX25_VALUES_T1 = 6, + AX25_VALUES_T2 = 7, + AX25_VALUES_T3 = 8, + AX25_VALUES_IDLE = 9, + AX25_VALUES_N2 = 10, + AX25_VALUES_PACLEN = 11, + AX25_VALUES_PROTOCOL = 12, + AX25_VALUES_DS_TIMEOUT = 13, + AX25_MAX_VALUES = 14, +}; + +struct tap_filter { + unsigned int count; + u32 mask[2]; + unsigned char addr[48]; +}; + +struct tun_struct; + +struct tun_file { + struct sock sk; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct socket socket; + struct tun_struct *tun; + struct fasync_struct *fasync; + unsigned int flags; + union { + u16 queue_index; + unsigned int ifindex; + }; + struct napi_struct napi; + bool napi_enabled; + bool napi_frags_enabled; + struct mutex napi_mutex; + struct list_head next; + struct tun_struct *detached; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + struct ptr_ring tx_ring; + struct xdp_rxq_info xdp_rxq; +}; + +struct tun_prog; + +struct tun_struct { + struct tun_file *tfiles[256]; + unsigned int numqueues; + unsigned int flags; + kuid_t owner; + kgid_t group; + struct net_device *dev; + netdev_features_t set_features; + int align; + int vnet_hdr_sz; + int sndbuf; + struct tap_filter txflt; + struct sock_fprog fprog; + bool filter_attached; + u32 msg_enable; + spinlock_t lock; + struct hlist_head flows[1024]; + struct timer_list flow_gc_timer; + long unsigned int ageing_time; + unsigned int numdisabled; + struct list_head disabled; + void *security; + u32 flow_count; + u32 rx_batched; + atomic_long_t rx_frame_errors; + struct bpf_prog *xdp_prog; + struct tun_prog *steering_prog; + struct tun_prog *filter_prog; + struct ethtool_link_ksettings link_ksettings; + struct file *file; + struct ifreq *ifr; +}; + +struct tun_page { + struct page *page; + int count; +}; + +struct tun_flow_entry { + struct hlist_node hash_link; + struct callback_head rcu; + struct tun_struct *tun; + u32 rxhash; + u32 rps_rxhash; + int queue_index; + long: 64; + long unsigned int updated; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct tun_prog { + struct callback_head rcu; + struct bpf_prog *prog; +}; + +struct veth { + __be16 h_vlan_proto; + __be16 h_vlan_TCI; +}; + +enum { + MDBA_UNSPEC = 0, + MDBA_MDB = 1, + MDBA_ROUTER = 2, + __MDBA_MAX = 3, +}; + +enum { + MDBA_MDB_UNSPEC = 0, + MDBA_MDB_ENTRY = 1, + __MDBA_MDB_MAX = 2, +}; + +enum { + MDBA_MDB_ENTRY_UNSPEC = 0, + MDBA_MDB_ENTRY_INFO = 1, + __MDBA_MDB_ENTRY_MAX = 2, +}; + +enum { + MDBA_MDB_EATTR_UNSPEC = 0, + MDBA_MDB_EATTR_TIMER = 1, + MDBA_MDB_EATTR_SRC_LIST = 2, + MDBA_MDB_EATTR_GROUP_MODE = 3, + MDBA_MDB_EATTR_SOURCE = 4, + MDBA_MDB_EATTR_RTPROT = 5, + MDBA_MDB_EATTR_DST = 6, + MDBA_MDB_EATTR_DST_PORT = 7, + MDBA_MDB_EATTR_VNI = 8, + MDBA_MDB_EATTR_IFINDEX = 9, + MDBA_MDB_EATTR_SRC_VNI = 10, + __MDBA_MDB_EATTR_MAX = 11, +}; + +enum { + MDBA_MDB_SRCLIST_UNSPEC = 0, + MDBA_MDB_SRCLIST_ENTRY = 1, + __MDBA_MDB_SRCLIST_MAX = 2, +}; + +enum { + MDBA_MDB_SRCATTR_UNSPEC = 0, + MDBA_MDB_SRCATTR_ADDRESS = 1, + MDBA_MDB_SRCATTR_TIMER = 2, + __MDBA_MDB_SRCATTR_MAX = 3, +}; + +enum { + MDBE_ATTR_UNSPEC = 0, + MDBE_ATTR_SOURCE = 1, + MDBE_ATTR_SRC_LIST = 2, + MDBE_ATTR_GROUP_MODE = 3, + MDBE_ATTR_RTPROT = 4, + MDBE_ATTR_DST = 5, + MDBE_ATTR_DST_PORT = 6, + MDBE_ATTR_VNI = 7, + MDBE_ATTR_IFINDEX = 8, + MDBE_ATTR_SRC_VNI = 9, + MDBE_ATTR_STATE_MASK = 10, + __MDBE_ATTR_MAX = 11, +}; + +enum { + MDBE_SRC_LIST_UNSPEC = 0, + MDBE_SRC_LIST_ENTRY = 1, + __MDBE_SRC_LIST_MAX = 2, +}; + +enum { + MDBE_SRCATTR_UNSPEC = 0, + MDBE_SRCATTR_ADDRESS = 1, + __MDBE_SRCATTR_MAX = 2, +}; + +struct vxlan_mdb_remote { + struct list_head list; + struct vxlan_rdst *rd; + u8 flags; + u8 filter_mode; + u8 rt_protocol; + struct hlist_head src_list; + struct callback_head rcu; +}; + +struct vxlan_mdb_src_entry { + struct hlist_node node; + union vxlan_addr addr; + u8 flags; +}; + +struct vxlan_mdb_dump_ctx { + long int reserved; + long int entry_idx; + long int remote_idx; +}; + +struct vxlan_mdb_config_src_entry { + union vxlan_addr addr; + struct list_head node; +}; + +struct vxlan_mdb_config { + struct vxlan_dev *vxlan; + struct vxlan_mdb_entry_key group; + struct list_head src_list; + union vxlan_addr remote_ip; + u32 remote_ifindex; + __be32 remote_vni; + __be16 remote_port; + u16 nlflags; + u8 flags; + u8 filter_mode; + u8 rt_protocol; +}; + +struct vxlan_mdb_flush_desc { + union vxlan_addr remote_ip; + __be32 src_vni; + __be32 remote_vni; + __be16 remote_port; + u8 rt_protocol; +}; + +union hwc_init_eq_id_db { + u32 as_uint32; + struct { + u32 eq_id: 16; + u32 doorbell: 16; + }; +}; + +union hwc_init_type_data { + u32 as_uint32; + struct { + u32 value: 24; + u32 type: 8; + }; +}; + +union hwc_init_soc_service_type { + u32 as_uint32; + struct { + u32 value: 28; + u32 type: 4; + }; +}; + +struct vcap_admin_debugfs_info { + struct vcap_control *vctrl; + struct vcap_admin *admin; +}; + +struct vcap_port_debugfs_info { + struct vcap_control *vctrl; + struct net_device *ndev; +}; + +struct vcap_tc_flower_parse_usage { + struct flow_cls_offload *fco; + struct flow_rule *frule; + struct vcap_rule *vrule; + struct vcap_admin *admin; + u16 l3_proto; + u8 l4_proto; + u16 tpid; + long long unsigned int used_keys; +}; + +enum vcap_is2_arp_opcode { + VCAP_IS2_ARP_REQUEST = 0, + VCAP_IS2_ARP_REPLY = 1, + VCAP_IS2_RARP_REQUEST = 2, + VCAP_IS2_RARP_REPLY = 3, +}; + +enum vcap_arp_opcode { + VCAP_ARP_OP_RESERVED = 0, + VCAP_ARP_OP_REQUEST = 1, + VCAP_ARP_OP_REPLY = 2, +}; + +struct netdev_lag_lower_state_info { + u8 link_up: 1; + u8 tx_enabled: 1; +}; + +struct net_failover_info { + struct net_device *primary_dev; + struct net_device *standby_dev; + struct rtnl_link_stats64 primary_stats; + struct rtnl_link_stats64 standby_stats; + struct rtnl_link_stats64 failover_stats; + spinlock_t stats_lock; +}; + +struct usb_qualifier_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __le16 bcdUSB; + __u8 bDeviceClass; + __u8 bDeviceSubClass; + __u8 bDeviceProtocol; + __u8 bMaxPacketSize0; + __u8 bNumConfigurations; + __u8 bRESERVED; +}; + +struct usb_set_sel_req { + __u8 u1_sel; + __u8 u1_pel; + __le16 u2_sel; + __le16 u2_pel; +}; + +struct usbdevfs_hub_portinfo { + char nports; + char port[127]; +}; + +enum hub_led_mode { + INDICATOR_AUTO = 0, + INDICATOR_CYCLE = 1, + INDICATOR_GREEN_BLINK = 2, + INDICATOR_GREEN_BLINK_OFF = 3, + INDICATOR_AMBER_BLINK = 4, + INDICATOR_AMBER_BLINK_OFF = 5, + INDICATOR_ALT_BLINK = 6, + INDICATOR_ALT_BLINK_OFF = 7, +} __attribute__((mode(byte))); + +struct usb_tt_clear { + struct list_head clear_list; + unsigned int tt; + u16 devinfo; + struct usb_hcd *hcd; + struct usb_host_endpoint *ep; +}; + +enum hub_activation_type { + HUB_INIT = 0, + HUB_INIT2 = 1, + HUB_INIT3 = 2, + HUB_POST_RESET = 3, + HUB_RESUME = 4, + HUB_RESET_RESUME = 5, +}; + +enum hub_quiescing_type { + HUB_DISCONNECT = 0, + HUB_PRE_RESET = 1, + HUB_SUSPEND = 2, +}; + +struct usb_sg_request { + int status; + size_t bytes; + spinlock_t lock; + struct usb_device *dev; + int pipe; + int entries; + struct urb **urbs; + int count; + struct completion complete; +}; + +struct usb_cdc_header_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __le16 bcdCDC; +} __attribute__((packed)); + +struct usb_cdc_call_mgmt_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __u8 bmCapabilities; + __u8 bDataInterface; +}; + +struct usb_cdc_acm_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __u8 bmCapabilities; +}; + +struct usb_cdc_union_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __u8 bMasterInterface0; + __u8 bSlaveInterface0; +}; + +struct usb_cdc_country_functional_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __u8 iCountryCodeRelDate; + __le16 wCountyCode0; +}; + +struct usb_cdc_network_terminal_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __u8 bEntityId; + __u8 iName; + __u8 bChannelIndex; + __u8 bPhysicalInterface; +}; + +struct usb_cdc_ether_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __u8 iMACAddress; + __le32 bmEthernetStatistics; + __le16 wMaxSegmentSize; + __le16 wNumberMCFilters; + __u8 bNumberPowerFilters; +} __attribute__((packed)); + +struct usb_cdc_dmm_desc { + __u8 bFunctionLength; + __u8 bDescriptorType; + __u8 bDescriptorSubtype; + __u16 bcdVersion; + __le16 wMaxCommand; +} __attribute__((packed)); + +struct usb_cdc_mdlm_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __le16 bcdVersion; + __u8 bGUID[16]; +} __attribute__((packed)); + +struct usb_cdc_mdlm_detail_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __u8 bGuidDescriptorType; + __u8 bDetailData[0]; +}; + +struct usb_cdc_obex_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __le16 bcdVersion; +} __attribute__((packed)); + +struct usb_cdc_ncm_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __le16 bcdNcmVersion; + __u8 bmNetworkCapabilities; +} __attribute__((packed)); + +struct usb_cdc_mbim_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __le16 bcdMBIMVersion; + __le16 wMaxControlMessage; + __u8 bNumberFilters; + __u8 bMaxFilterSize; + __le16 wMaxSegmentSize; + __u8 bmNetworkCapabilities; +} __attribute__((packed)); + +struct usb_cdc_mbim_extended_desc { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDescriptorSubType; + __le16 bcdMBIMExtendedVersion; + __u8 bMaxOutstandingCommandMessages; + __le16 wMTU; +} __attribute__((packed)); + +struct usb_cdc_parsed_header { + struct usb_cdc_union_desc *usb_cdc_union_desc; + struct usb_cdc_header_desc *usb_cdc_header_desc; + struct usb_cdc_call_mgmt_descriptor *usb_cdc_call_mgmt_descriptor; + struct usb_cdc_acm_descriptor *usb_cdc_acm_descriptor; + struct usb_cdc_country_functional_desc *usb_cdc_country_functional_desc; + struct usb_cdc_network_terminal_desc *usb_cdc_network_terminal_desc; + struct usb_cdc_ether_desc *usb_cdc_ether_desc; + struct usb_cdc_dmm_desc *usb_cdc_dmm_desc; + struct usb_cdc_mdlm_desc *usb_cdc_mdlm_desc; + struct usb_cdc_mdlm_detail_desc *usb_cdc_mdlm_detail_desc; + struct usb_cdc_obex_desc *usb_cdc_obex_desc; + struct usb_cdc_ncm_desc *usb_cdc_ncm_desc; + struct usb_cdc_mbim_desc *usb_cdc_mbim_desc; + struct usb_cdc_mbim_extended_desc *usb_cdc_mbim_extended_desc; + bool phonet_magic_present; +}; + +struct api_context { + struct completion done; + int status; +}; + +struct set_config_request { + struct usb_device *udev; + int config; + struct work_struct work; + struct list_head node; +}; + +struct class_info { + int class; + char *class_name; +}; + +enum amd_chipset_gen { + NOT_AMD_CHIPSET = 0, + AMD_CHIPSET_SB600 = 1, + AMD_CHIPSET_SB700 = 2, + AMD_CHIPSET_SB800 = 3, + AMD_CHIPSET_HUDSON2 = 4, + AMD_CHIPSET_BOLTON = 5, + AMD_CHIPSET_YANGTZE = 6, + AMD_CHIPSET_TAISHAN = 7, + AMD_CHIPSET_UNKNOWN = 8, +}; + +struct amd_chipset_type { + enum amd_chipset_gen gen; + u8 rev; +}; + +struct amd_chipset_info { + struct pci_dev *nb_dev; + struct pci_dev *smbus_dev; + int nb_type; + struct amd_chipset_type sb_type; + int isoc_reqs; + int probe_count; + bool need_pll_quirk; +}; + +enum xhci_ep_reset_type { + EP_HARD_RESET = 0, + EP_SOFT_RESET = 1, +}; + +struct trace_event_raw_xhci_log_msg { + struct trace_entry ent; + u32 __data_loc_msg; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_ctx { + struct trace_entry ent; + int ctx_64; + unsigned int ctx_type; + dma_addr_t ctx_dma; + u8 *ctx_va; + unsigned int ctx_ep_num; + u32 __data_loc_ctx_data; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_trb { + struct trace_entry ent; + dma_addr_t dma; + u32 type; + u32 field0; + u32 field1; + u32 field2; + u32 field3; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_free_virt_dev { + struct trace_entry ent; + void *vdev; + long long unsigned int out_ctx; + long long unsigned int in_ctx; + int slot_id; + u16 current_mel; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_virt_dev { + struct trace_entry ent; + void *vdev; + long long unsigned int out_ctx; + long long unsigned int in_ctx; + int devnum; + int state; + int speed; + u8 portnum; + u8 level; + int slot_id; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_urb { + struct trace_entry ent; + u32 __data_loc_devname; + void *urb; + unsigned int pipe; + unsigned int stream; + int status; + unsigned int flags; + int num_mapped_sgs; + int num_sgs; + int length; + int actual; + int epnum; + int dir_in; + int type; + int slot_id; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_stream_ctx { + struct trace_entry ent; + unsigned int stream_id; + u64 stream_ring; + dma_addr_t ctx_array_dma; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_ep_ctx { + struct trace_entry ent; + u32 info; + u32 info2; + u64 deq; + u32 tx_info; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_slot_ctx { + struct trace_entry ent; + u32 info; + u32 info2; + u32 tt_info; + u32 state; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_ctrl_ctx { + struct trace_entry ent; + u32 drop; + u32 add; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_ring { + struct trace_entry ent; + u32 type; + void *ring; + dma_addr_t enq; + dma_addr_t deq; + unsigned int num_segs; + unsigned int stream_id; + unsigned int cycle_state; + unsigned int bounce_buf_len; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_portsc { + struct trace_entry ent; + u32 busnum; + u32 portnum; + u32 portsc; + char __data[0]; +}; + +struct trace_event_raw_xhci_log_doorbell { + struct trace_entry ent; + u32 slot; + u32 doorbell; + char __data[0]; +}; + +struct trace_event_raw_xhci_dbc_log_request { + struct trace_entry ent; + struct dbc_request *req; + bool dir; + unsigned int actual; + unsigned int length; + int status; + char __data[0]; +}; + +struct trace_event_data_offsets_xhci_log_msg { + u32 msg; + const void *msg_ptr_; +}; + +struct trace_event_data_offsets_xhci_log_ctx { + u32 ctx_data; + const void *ctx_data_ptr_; +}; + +struct trace_event_data_offsets_xhci_log_trb {}; + +struct trace_event_data_offsets_xhci_log_free_virt_dev {}; + +struct trace_event_data_offsets_xhci_log_virt_dev {}; + +struct trace_event_data_offsets_xhci_log_urb { + u32 devname; + const void *devname_ptr_; +}; + +struct trace_event_data_offsets_xhci_log_stream_ctx {}; + +struct trace_event_data_offsets_xhci_log_ep_ctx {}; + +struct trace_event_data_offsets_xhci_log_slot_ctx {}; + +struct trace_event_data_offsets_xhci_log_ctrl_ctx {}; + +struct trace_event_data_offsets_xhci_log_ring {}; + +struct trace_event_data_offsets_xhci_log_portsc {}; + +struct trace_event_data_offsets_xhci_log_doorbell {}; + +struct trace_event_data_offsets_xhci_dbc_log_request {}; + +typedef void (*btf_trace_xhci_dbg_address)(void *, struct va_format *); + +typedef void (*btf_trace_xhci_dbg_context_change)(void *, struct va_format *); + +typedef void (*btf_trace_xhci_dbg_quirks)(void *, struct va_format *); + +typedef void (*btf_trace_xhci_dbg_reset_ep)(void *, struct va_format *); + +typedef void (*btf_trace_xhci_dbg_cancel_urb)(void *, struct va_format *); + +typedef void (*btf_trace_xhci_dbg_init)(void *, struct va_format *); + +typedef void (*btf_trace_xhci_dbg_ring_expansion)(void *, struct va_format *); + +typedef void (*btf_trace_xhci_address_ctx)(void *, struct xhci_hcd *, struct xhci_container_ctx *, unsigned int); + +typedef void (*btf_trace_xhci_handle_event)(void *, struct xhci_ring *, struct xhci_generic_trb *, dma_addr_t); + +typedef void (*btf_trace_xhci_handle_command)(void *, struct xhci_ring *, struct xhci_generic_trb *, dma_addr_t); + +typedef void (*btf_trace_xhci_handle_transfer)(void *, struct xhci_ring *, struct xhci_generic_trb *, dma_addr_t); + +typedef void (*btf_trace_xhci_queue_trb)(void *, struct xhci_ring *, struct xhci_generic_trb *, dma_addr_t); + +typedef void (*btf_trace_xhci_dbc_handle_event)(void *, struct xhci_ring *, struct xhci_generic_trb *, dma_addr_t); + +typedef void (*btf_trace_xhci_dbc_handle_transfer)(void *, struct xhci_ring *, struct xhci_generic_trb *, dma_addr_t); + +typedef void (*btf_trace_xhci_dbc_gadget_ep_queue)(void *, struct xhci_ring *, struct xhci_generic_trb *, dma_addr_t); + +typedef void (*btf_trace_xhci_free_virt_device)(void *, struct xhci_virt_device *); + +typedef void (*btf_trace_xhci_alloc_virt_device)(void *, struct xhci_virt_device *); + +typedef void (*btf_trace_xhci_setup_device)(void *, struct xhci_virt_device *); + +typedef void (*btf_trace_xhci_setup_addressable_virt_device)(void *, struct xhci_virt_device *); + +typedef void (*btf_trace_xhci_stop_device)(void *, struct xhci_virt_device *); + +typedef void (*btf_trace_xhci_urb_enqueue)(void *, struct urb *); + +typedef void (*btf_trace_xhci_urb_giveback)(void *, struct urb *); + +typedef void (*btf_trace_xhci_urb_dequeue)(void *, struct urb *); + +typedef void (*btf_trace_xhci_alloc_stream_info_ctx)(void *, struct xhci_stream_info *, unsigned int); + +typedef void (*btf_trace_xhci_handle_cmd_set_deq_stream)(void *, struct xhci_stream_info *, unsigned int); + +typedef void (*btf_trace_xhci_handle_cmd_stop_ep)(void *, struct xhci_ep_ctx *); + +typedef void (*btf_trace_xhci_handle_cmd_set_deq_ep)(void *, struct xhci_ep_ctx *); + +typedef void (*btf_trace_xhci_handle_cmd_reset_ep)(void *, struct xhci_ep_ctx *); + +typedef void (*btf_trace_xhci_handle_cmd_config_ep)(void *, struct xhci_ep_ctx *); + +typedef void (*btf_trace_xhci_add_endpoint)(void *, struct xhci_ep_ctx *); + +typedef void (*btf_trace_xhci_alloc_dev)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_free_dev)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_handle_cmd_disable_slot)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_discover_or_reset_device)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_setup_device_slot)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_handle_cmd_addr_dev)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_handle_cmd_reset_dev)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_handle_cmd_set_deq)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_configure_endpoint)(void *, struct xhci_slot_ctx *); + +typedef void (*btf_trace_xhci_address_ctrl_ctx)(void *, struct xhci_input_control_ctx *); + +typedef void (*btf_trace_xhci_configure_endpoint_ctrl_ctx)(void *, struct xhci_input_control_ctx *); + +typedef void (*btf_trace_xhci_ring_alloc)(void *, struct xhci_ring *); + +typedef void (*btf_trace_xhci_ring_free)(void *, struct xhci_ring *); + +typedef void (*btf_trace_xhci_ring_expansion)(void *, struct xhci_ring *); + +typedef void (*btf_trace_xhci_inc_enq)(void *, struct xhci_ring *); + +typedef void (*btf_trace_xhci_inc_deq)(void *, struct xhci_ring *); + +typedef void (*btf_trace_xhci_handle_port_status)(void *, struct xhci_port *, u32); + +typedef void (*btf_trace_xhci_get_port_status)(void *, struct xhci_port *, u32); + +typedef void (*btf_trace_xhci_hub_status_data)(void *, struct xhci_port *, u32); + +typedef void (*btf_trace_xhci_ring_ep_doorbell)(void *, u32, u32); + +typedef void (*btf_trace_xhci_ring_host_doorbell)(void *, u32, u32); + +typedef void (*btf_trace_xhci_dbc_alloc_request)(void *, struct dbc_request *); + +typedef void (*btf_trace_xhci_dbc_free_request)(void *, struct dbc_request *); + +typedef void (*btf_trace_xhci_dbc_queue_request)(void *, struct dbc_request *); + +typedef void (*btf_trace_xhci_dbc_giveback_request)(void *, struct dbc_request *); + +struct usb_debug_descriptor { + __u8 bLength; + __u8 bDescriptorType; + __u8 bDebugInEndpoint; + __u8 bDebugOutEndpoint; +}; + +struct ehci_dbg_port { + u32 control; + u32 pids; + u32 data03; + u32 data47; + u32 address; +}; + +struct ehci_caps { + u32 hc_capbase; + u32 hcs_params; + u32 hcc_params; + u8 portroute[8]; +}; + +struct ehci_regs { + u32 command; + u32 status; + u32 intr_enable; + u32 frame_index; + u32 segment; + u32 frame_list; + u32 async_next; + u32 reserved1[2]; + u32 txfill_tuning; + u32 reserved2[6]; + u32 configured_flag; + union { + u32 port_status[15]; + struct { + u32 reserved3[9]; + u32 usbmode; + }; + }; + union { + struct { + u32 reserved4; + u32 hostpc[15]; + }; + u32 brcm_insnreg[4]; + }; + u32 reserved5[2]; + u32 usbmode_ex; +}; + +struct ehci_dev { + u32 bus; + u32 slot; + u32 func; +}; + +typedef void (*set_debug_port_t)(int); + +typedef bool (*i8042_filter_t)(unsigned char, unsigned char, struct serio *, void *); + +enum i8042_controller_reset_mode { + I8042_RESET_NEVER = 0, + I8042_RESET_ALWAYS = 1, + I8042_RESET_ON_S2RAM = 2, +}; + +struct i8042_port { + struct serio *serio; + int irq; + bool exists; + bool driver_bound; + signed char mux; +}; + +struct touch_overlay_segment { + struct list_head list; + u32 x_origin; + u32 y_origin; + u32 x_size; + u32 y_size; + u32 key; + bool pressed; + int slot; +}; + +struct input_mask { + __u32 type; + __u32 codes_size; + __u64 codes_ptr; +}; + +struct evdev_client; + +struct evdev { + int open; + struct input_handle handle; + struct evdev_client *grab; + struct list_head client_list; + spinlock_t client_lock; + struct mutex mutex; + struct device dev; + struct cdev cdev; + bool exist; +}; + +struct evdev_client { + unsigned int head; + unsigned int tail; + unsigned int packet_head; + spinlock_t buffer_lock; + wait_queue_head_t wait; + struct fasync_struct *fasync; + struct evdev *evdev; + struct list_head node; + enum input_clock_type clk_type; + bool revoked; + long unsigned int *evmasks[32]; + unsigned int bufsize; + struct input_event buffer[0]; +}; + +struct mc146818_get_time_callback_param { + struct rtc_time *time; + unsigned char ctrl; + unsigned char century; +}; + +struct cmos_rtc_board_info { + void (*wake_on)(struct device *); + void (*wake_off)(struct device *); + u32 flags; + int address_space; + u8 rtc_day_alarm; + u8 rtc_mon_alarm; + u8 rtc_century; +}; + +struct cmos_rtc { + struct rtc_device *rtc; + struct device *dev; + int irq; + struct resource *iomem; + time64_t alarm_expires; + void (*wake_on)(struct device *); + void (*wake_off)(struct device *); + u8 enabled_wake; + u8 suspend_ctrl; + u8 day_alrm; + u8 mon_alrm; + u8 century; + struct rtc_wkalrm saved_wkalrm; +}; + +struct cmos_read_alarm_callback_param { + struct cmos_rtc *cmos; + struct rtc_time *time; + unsigned char rtc_control; +}; + +struct cmos_set_alarm_callback_param { + struct cmos_rtc *cmos; + unsigned char mon; + unsigned char mday; + unsigned char hrs; + unsigned char min; + unsigned char sec; + struct rtc_wkalrm *t; +}; + +struct i2c_smbus_alert_setup { + int irq; +}; + +struct trace_event_raw_smbus_write { + struct trace_entry ent; + int adapter_nr; + __u16 addr; + __u16 flags; + __u8 command; + __u8 len; + __u32 protocol; + __u8 buf[34]; + char __data[0]; +}; + +struct trace_event_raw_smbus_read { + struct trace_entry ent; + int adapter_nr; + __u16 flags; + __u16 addr; + __u8 command; + __u32 protocol; + __u8 buf[34]; + char __data[0]; +}; + +struct trace_event_raw_smbus_reply { + struct trace_entry ent; + int adapter_nr; + __u16 addr; + __u16 flags; + __u8 command; + __u8 len; + __u32 protocol; + __u8 buf[34]; + char __data[0]; +}; + +struct trace_event_raw_smbus_result { + struct trace_entry ent; + int adapter_nr; + __u16 addr; + __u16 flags; + __u8 read_write; + __u8 command; + __s16 res; + __u32 protocol; + char __data[0]; +}; + +struct trace_event_data_offsets_smbus_write {}; + +struct trace_event_data_offsets_smbus_read {}; + +struct trace_event_data_offsets_smbus_reply {}; + +struct trace_event_data_offsets_smbus_result {}; + +typedef void (*btf_trace_smbus_write)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int, const union i2c_smbus_data *); + +typedef void (*btf_trace_smbus_read)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int); + +typedef void (*btf_trace_smbus_reply)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int, const union i2c_smbus_data *, int); + +typedef void (*btf_trace_smbus_result)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int, int); + +enum power_supply_notifier_events { + PSY_EVENT_PROP_CHANGED = 0, +}; + +struct power_supply_config { + struct fwnode_handle *fwnode; + void *drv_data; + const struct attribute_group **attr_grp; + char **supplied_to; + size_t num_supplicants; + bool no_wakeup_source; +}; + +struct psy_for_each_psy_cb_data { + int (*fn)(struct power_supply *, void *); + void *data; +}; + +struct psy_am_i_supplied_data { + struct power_supply *psy; + unsigned int count; +}; + +struct psy_get_supplier_prop_data { + struct power_supply *psy; + enum power_supply_property psp; + union power_supply_propval *val; +}; + +typedef struct thermal_zone_device *class_thermal_zone_reverse_t; + +struct trace_event_raw_thermal_temperature { + struct trace_entry ent; + u32 __data_loc_thermal_zone; + int id; + int temp_prev; + int temp; + char __data[0]; +}; + +struct trace_event_raw_cdev_update { + struct trace_entry ent; + u32 __data_loc_type; + long unsigned int target; + char __data[0]; +}; + +struct trace_event_raw_thermal_zone_trip { + struct trace_entry ent; + u32 __data_loc_thermal_zone; + int id; + int trip; + enum thermal_trip_type trip_type; + char __data[0]; +}; + +struct trace_event_raw_thermal_power_devfreq_get_power { + struct trace_entry ent; + u32 __data_loc_type; + long unsigned int freq; + u32 busy_time; + u32 total_time; + u32 power; + char __data[0]; +}; + +struct trace_event_raw_thermal_power_devfreq_limit { + struct trace_entry ent; + u32 __data_loc_type; + unsigned int freq; + long unsigned int cdev_state; + u32 power; + char __data[0]; +}; + +struct trace_event_data_offsets_thermal_temperature { + u32 thermal_zone; + const void *thermal_zone_ptr_; +}; + +struct trace_event_data_offsets_cdev_update { + u32 type; + const void *type_ptr_; +}; + +struct trace_event_data_offsets_thermal_zone_trip { + u32 thermal_zone; + const void *thermal_zone_ptr_; +}; + +struct trace_event_data_offsets_thermal_power_devfreq_get_power { + u32 type; + const void *type_ptr_; +}; + +struct trace_event_data_offsets_thermal_power_devfreq_limit { + u32 type; + const void *type_ptr_; +}; + +typedef void (*btf_trace_thermal_temperature)(void *, struct thermal_zone_device *); + +typedef void (*btf_trace_cdev_update)(void *, struct thermal_cooling_device *, long unsigned int); + +typedef void (*btf_trace_thermal_zone_trip)(void *, struct thermal_zone_device *, int, enum thermal_trip_type); + +typedef void (*btf_trace_thermal_power_devfreq_get_power)(void *, struct thermal_cooling_device *, struct devfreq_dev_status *, long unsigned int, u32); + +typedef void (*btf_trace_thermal_power_devfreq_limit)(void *, struct thermal_cooling_device *, long unsigned int, long unsigned int, u32); + +struct devfreq_cooling_device { + struct thermal_cooling_device *cdev; + struct thermal_cooling_device_ops cooling_ops; + struct devfreq *devfreq; + long unsigned int cooling_state; + u32 *freq_table; + size_t max_state; + struct devfreq_cooling_power *power_ops; + u32 res_util; + int capped_state; + struct dev_pm_qos_request req_max_freq; + struct em_perf_domain *em_pd; +}; + +union hfi_capabilities { + struct { + u8 performance: 1; + u8 energy_efficiency: 1; + u8 __reserved: 6; + } split; + u8 bits; +}; + +union cpuid6_edx { + struct { + union hfi_capabilities capabilities; + u32 table_pages: 4; + u32 __reserved: 4; + s32 index: 16; + } split; + u32 full; +}; + +struct hfi_cpu_data { + u8 perf_cap; + u8 ee_cap; +}; + +struct hfi_instance { + union { + void *local_table; + u64 *timestamp; + }; + void *hdr; + void *data; + cpumask_var_t cpus; + void *hw_table; + struct delayed_work update_work; + raw_spinlock_t table_lock; + raw_spinlock_t event_lock; +}; + +struct hfi_features { + size_t nr_table_pages; + unsigned int cpu_stride; + unsigned int hdr_size; +}; + +struct hfi_cpu_info { + s16 index; + struct hfi_instance *hfi_instance; +}; + +struct md_setup_args { + int minor; + int partitioned; + int level; + int chunk; + char *device_names; +}; + +struct dm_device_zone_count { + sector_t start; + sector_t len; + unsigned int total_nr_seq_zones; + unsigned int target_nr_seq_zones; +}; + +struct dm_zone_resource_limits { + unsigned int mapped_nr_seq_zones; + struct queue_limits *lim; + bool reliable_limits; +}; + +enum { + DM_TIO_INSIDE_DM_IO = 0, + DM_TIO_IS_DUPLICATE_BIO = 1, +}; + +enum { + DM_IO_ACCOUNTED = 0, + DM_IO_WAS_SPLIT = 1, + DM_IO_BLK_STAT = 2, +}; + +struct clone_info { + struct dm_table *map; + struct bio *bio; + struct dm_io *io; + sector_t sector; + unsigned int sector_count; + bool is_abnormal_io: 1; + bool submit_as_polled: 1; +}; + +struct table_device { + struct list_head list; + refcount_t count; + struct dm_dev dm_dev; +}; + +struct dm_blkdev_id { + u8 *id; + enum blk_unique_id type; +}; + +struct dm_pr { + u64 old_key; + u64 new_key; + u32 flags; + bool abort; + bool fail_early; + int ret; + enum pr_type type; + struct pr_keys *read_keys; + struct pr_held_reservation *rsv; +}; + +struct dm_io_client { + mempool_t pool; + struct bio_set bios; +}; + +struct io { + long unsigned int error_bits; + atomic_t count; + struct dm_io_client *client; + io_notify_fn callback; + void *context; + void *vma_invalidate_address; + long unsigned int vma_invalidate_size; + long: 64; +}; + +struct dpages { + void (*get_page)(struct dpages *, struct page **, long unsigned int *, unsigned int *); + void (*next_page)(struct dpages *); + union { + unsigned int context_u; + struct bvec_iter context_bi; + }; + void *context_ptr; + void *vma_invalidate_address; + long unsigned int vma_invalidate_size; +}; + +struct sync_io { + long unsigned int error_bits; + struct completion wait; +}; + +struct dm_sysfs_attr { + struct attribute attr; + ssize_t (*show)(struct mapped_device *, char *); + ssize_t (*store)(struct mapped_device *, const char *, size_t); +}; + +enum edac_mem_repair_type { + EDAC_REPAIR_PPR = 0, + EDAC_REPAIR_CACHELINE_SPARING = 1, + EDAC_REPAIR_ROW_SPARING = 2, + EDAC_REPAIR_BANK_SPARING = 3, + EDAC_REPAIR_RANK_SPARING = 4, + EDAC_REPAIR_MAX = 5, +}; + +enum edac_mem_repair_attributes { + MR_TYPE = 0, + MR_PERSIST_MODE = 1, + MR_SAFE_IN_USE = 2, + MR_HPA = 3, + MR_MIN_HPA = 4, + MR_MAX_HPA = 5, + MR_DPA = 6, + MR_MIN_DPA = 7, + MR_MAX_DPA = 8, + MR_NIBBLE_MASK = 9, + MR_BANK_GROUP = 10, + MR_BANK = 11, + MR_RANK = 12, + MR_ROW = 13, + MR_COLUMN = 14, + MR_CHANNEL = 15, + MR_SUB_CHANNEL = 16, + MEM_DO_REPAIR = 17, + MR_MAX_ATTRS = 18, +}; + +struct edac_mem_repair_dev_attr { + struct device_attribute dev_attr; + u8 instance; +}; + +struct edac_mem_repair_context { + char name[128]; + struct edac_mem_repair_dev_attr mem_repair_dev_attr[18]; + struct attribute *mem_repair_attrs[19]; + struct attribute_group group; +}; + +enum tt_ids { + TT_INSTR = 0, + TT_DATA = 1, + TT_GEN = 2, + TT_RESV = 3, +}; + +enum ll_ids { + LL_RESV = 0, + LL_L1 = 1, + LL_L2 = 2, + LL_LG = 3, +}; + +enum ii_ids { + II_MEM = 0, + II_RESV = 1, + II_IO = 2, + II_GEN = 3, +}; + +enum rrrr_ids { + R4_GEN = 0, + R4_RD = 1, + R4_WR = 2, + R4_DRD = 3, + R4_DWR = 4, + R4_IRD = 5, + R4_PREF = 6, + R4_EVICT = 7, + R4_SNOOP = 8, +}; + +struct amd_decoder_ops { + bool (*mc0_mce)(u16, u8); + bool (*mc1_mce)(u16, u8); + bool (*mc2_mce)(u16, u8); +}; + +enum dev_pm_opp_event { + OPP_EVENT_ADD = 0, + OPP_EVENT_REMOVE = 1, + OPP_EVENT_ENABLE = 2, + OPP_EVENT_DISABLE = 3, + OPP_EVENT_ADJUST_VOLTAGE = 4, +}; + +struct dev_pm_opp_data { + bool turbo; + unsigned int level; + long unsigned int freq; + long unsigned int u_volt; +}; + +struct opp_config_data { + struct opp_table *opp_table; + unsigned int flags; + unsigned int required_dev_index; +}; + +struct cpufreq_stats { + unsigned int total_trans; + long long unsigned int last_time; + unsigned int max_state; + unsigned int state_num; + unsigned int last_index; + u64 *time_in_state; + unsigned int *freq_table; + unsigned int *trans_table; + unsigned int reset_pending; + long long unsigned int reset_time; +}; + +struct powernow_k8_data { + unsigned int cpu; + u32 numps; + u32 batps; + u32 rvo; + u32 irt; + u32 vidmvs; + u32 vstable; + u32 plllock; + u32 exttype; + u32 currvid; + u32 currfid; + struct cpufreq_frequency_table *powernow_table; + struct acpi_processor_performance acpi_data; + struct cpumask *available_cores; +}; + +struct psb_s { + u8 signature[10]; + u8 tableversion; + u8 flags1; + u16 vstable; + u8 flags2; + u8 num_tables; + u32 cpuid; + u8 plllocktime; + u8 maxfid; + u8 maxvid; + u8 numps; +}; + +struct pst_s { + u8 fid; + u8 vid; +}; + +struct powernowk8_target_arg { + struct cpufreq_policy *pol; + unsigned int newstate; +}; + +struct init_on_cpu { + struct powernow_k8_data *data; + int rc; +}; + +struct cpu_id { + __u8 x86; + __u8 x86_model; + __u8 x86_stepping; +}; + +enum { + CPU_BANIAS = 0, + CPU_DOTHAN_A1 = 1, + CPU_DOTHAN_A2 = 2, + CPU_DOTHAN_B0 = 3, + CPU_MP4HT_D0 = 4, + CPU_MP4HT_E0 = 5, +}; + +struct cpu_model { + const struct cpu_id *cpu_id; + const char *model_name; + unsigned int max_freq; + struct cpufreq_frequency_table *op_points; +}; + +struct edd_device { + unsigned int index; + unsigned int mbr_signature; + struct edd_info *info; + struct kobject kobj; +}; + +struct edd_attribute { + struct attribute attr; + ssize_t (*show)(struct edd_device *, char *); + int (*test)(struct edd_device *); +}; + +typedef struct { + u32 version; + u32 num_entries; + u32 desc_size; + u32 flags; + efi_memory_desc_t entry[0]; +} efi_memory_attributes_table_t; + +struct cper_sec_proc_generic { + u64 validation_bits; + u8 proc_type; + u8 proc_isa; + u8 proc_error_type; + u8 operation; + u8 flags; + u8 level; + u16 reserved; + u64 cpu_version; + char cpu_brand[128]; + u64 proc_id; + u64 target_addr; + u64 requestor_id; + u64 responder_id; + u64 ip; +}; + +struct cper_sec_pcie { + u64 validation_bits; + u32 port_type; + struct { + u8 minor; + u8 major; + u8 reserved[2]; + } version; + u16 command; + u16 status; + u32 reserved; + struct { + u16 vendor_id; + u16 device_id; + u8 class_code[3]; + u8 function; + u8 device; + u16 segment; + u8 bus; + u8 secondary_bus; + u16 slot; + u8 reserved; + } __attribute__((packed)) device_id; + struct { + u32 lower; + u32 upper; + } serial_number; + struct { + u16 secondary_status; + u16 control; + } bridge; + u8 capability[60]; + u8 aer_info[96]; +}; + +struct cper_sec_fw_err_rec_ref { + u8 record_type; + u8 revision; + u8 reserved[6]; + u64 record_identifier; + guid_t record_identifier_guid; +}; + +struct acpi_hest_generic_data { + u8 section_type[16]; + u32 error_severity; + u16 revision; + u8 validation_bits; + u8 flags; + u32 error_data_length; + u8 fru_id[16]; + u8 fru_text[20]; +}; + +struct acpi_hest_generic_data_v300 { + u8 section_type[16]; + u32 error_severity; + u16 revision; + u8 validation_bits; + u8 flags; + u32 error_data_length; + u8 fru_id[16]; + u8 fru_text[20]; + u64 time_stamp; +}; + +struct ignore_section { + guid_t guid; + const char *name; +}; + +struct efi_mokvar_sysfs_attr { + struct bin_attribute bin_attr; + struct list_head node; +}; + +struct accept_range { + struct list_head list; + long unsigned int start; + long unsigned int end; +}; + +enum vme_resource_type { + VME_MASTER = 0, + VME_SLAVE = 1, + VME_DMA = 2, + VME_LM = 3, +}; + +struct vme_dma_attr { + u32 type; + void *private; +}; + +struct vme_resource { + enum vme_resource_type type; + struct list_head *entry; +}; + +struct vme_bridge; + +struct vme_dev { + int num; + struct vme_bridge *bridge; + struct device dev; + struct list_head drv_list; + struct list_head bridge_list; +}; + +struct vme_callback { + void (*func)(int, int, void *); + void *priv_data; +}; + +struct vme_irq { + int count; + struct vme_callback callback[256]; +}; + +struct vme_slave_resource; + +struct vme_master_resource; + +struct vme_dma_list; + +struct vme_lm_resource; + +struct vme_bridge { + char name[16]; + int num; + struct list_head master_resources; + struct list_head slave_resources; + struct list_head dma_resources; + struct list_head lm_resources; + struct list_head vme_error_handlers; + struct list_head devices; + struct device *parent; + void *driver_priv; + struct list_head bus_list; + struct vme_irq irq[7]; + struct mutex irq_mtx; + int (*slave_get)(struct vme_slave_resource *, int *, long long unsigned int *, long long unsigned int *, dma_addr_t *, u32 *, u32 *); + int (*slave_set)(struct vme_slave_resource *, int, long long unsigned int, long long unsigned int, dma_addr_t, u32, u32); + int (*master_get)(struct vme_master_resource *, int *, long long unsigned int *, long long unsigned int *, u32 *, u32 *, u32 *); + int (*master_set)(struct vme_master_resource *, int, long long unsigned int, long long unsigned int, u32, u32, u32); + ssize_t (*master_read)(struct vme_master_resource *, void *, size_t, loff_t); + ssize_t (*master_write)(struct vme_master_resource *, void *, size_t, loff_t); + unsigned int (*master_rmw)(struct vme_master_resource *, unsigned int, unsigned int, unsigned int, loff_t); + int (*dma_list_add)(struct vme_dma_list *, struct vme_dma_attr *, struct vme_dma_attr *, size_t); + int (*dma_list_exec)(struct vme_dma_list *); + int (*dma_list_empty)(struct vme_dma_list *); + void (*irq_set)(struct vme_bridge *, int, int, int); + int (*irq_generate)(struct vme_bridge *, int, int); + int (*lm_set)(struct vme_lm_resource *, long long unsigned int, u32, u32); + int (*lm_get)(struct vme_lm_resource *, long long unsigned int *, u32 *, u32 *); + int (*lm_attach)(struct vme_lm_resource *, int, void (*)(void *), void *); + int (*lm_detach)(struct vme_lm_resource *, int); + int (*slot_get)(struct vme_bridge *); + void * (*alloc_consistent)(struct device *, size_t, dma_addr_t *); + void (*free_consistent)(struct device *, size_t, void *, dma_addr_t); +}; + +struct vme_driver { + const char *name; + int (*match)(struct vme_dev *); + int (*probe)(struct vme_dev *); + void (*remove)(struct vme_dev *); + struct device_driver driver; + struct list_head devices; +}; + +struct vme_master_resource { + struct list_head list; + struct vme_bridge *parent; + spinlock_t lock; + int locked; + int number; + u32 address_attr; + u32 cycle_attr; + u32 width_attr; + struct resource bus_resource; + void *kern_base; +}; + +struct vme_slave_resource { + struct list_head list; + struct vme_bridge *parent; + struct mutex mtx; + int locked; + int number; + u32 address_attr; + u32 cycle_attr; +}; + +struct vme_dma_pattern { + u32 pattern; + u32 type; +}; + +struct vme_dma_pci { + dma_addr_t address; +}; + +struct vme_dma_vme { + long long unsigned int address; + u32 aspace; + u32 cycle; + u32 dwidth; +}; + +struct vme_dma_resource; + +struct vme_dma_list { + struct list_head list; + struct vme_dma_resource *parent; + struct list_head entries; + struct mutex mtx; +}; + +struct vme_dma_resource { + struct list_head list; + struct vme_bridge *parent; + struct mutex mtx; + int locked; + int number; + struct list_head pending; + struct list_head running; + u32 route_attr; +}; + +struct vme_lm_resource { + struct list_head list; + struct vme_bridge *parent; + struct mutex mtx; + int locked; + int number; + int monitors; +}; + +struct vme_error_handler { + struct list_head list; + long long unsigned int start; + long long unsigned int end; + long long unsigned int first_error; + u32 aspace; + unsigned int num_errors; +}; + +struct intel_scu_ipc_dev { + struct device dev; + struct module *owner; + void *ipc_base; + struct completion cmd_complete; + struct intel_scu_ipc_data data; +}; + +struct intel_scu_ipc_devres { + struct intel_scu_ipc_dev *scu; +}; + +struct tdx_report_req { + __u8 reportdata[64]; + __u8 tdreport[1024]; +}; + +enum { + TDREPORT_reportdata = 128, + TDREPORT_tee_tcb_info = 256, + TDREPORT_tdinfo = 512, + TDREPORT_attributes = 512, + TDREPORT_xfam = 520, + TDREPORT_mrtd = 528, + TDREPORT_mrconfigid = 576, + TDREPORT_mrowner = 624, + TDREPORT_mrownerconfig = 672, + TDREPORT_rtmr0 = 720, + TDREPORT_rtmr1 = 768, + TDREPORT_rtmr2 = 816, + TDREPORT_rtmr3 = 864, + TDREPORT_servtd_hash = 912, +}; + +struct tdx_quote_buf { + u64 version; + u64 status; + u32 in_len; + u32 out_len; + u8 data[0]; +}; + +struct vmbus_device { + size_t pref_ring_size; + u16 dev_type; + guid_t guid; + bool perf_device; + bool allowed_in_isolated; +}; + +enum vmbus_message_handler_type { + VMHT_BLOCKING = 0, + VMHT_NON_BLOCKING = 1, +}; + +struct vmbus_channel_message_table_entry { + enum vmbus_channel_message_type message_type; + enum vmbus_message_handler_type handler_type; + void (*message_handler)(struct vmbus_channel_message_header *); + u32 min_payload_len; +}; + +struct vmbus_dynid { + struct list_head node; + struct hv_vmbus_device_id id; +}; + +struct onmessage_work_context { + struct work_struct work; + struct { + struct hv_message_header header; + u8 payload[0]; + } msg; +}; + +struct vmbus_chan_attribute { + struct attribute attr; + ssize_t (*show)(struct vmbus_channel *, char *); + ssize_t (*store)(struct vmbus_channel *, const char *, size_t); +}; + +enum vmbus_device_type { + HV_IDE = 0, + HV_SCSI = 1, + HV_FC = 2, + HV_NIC = 3, + HV_ND = 4, + HV_PCIE = 5, + HV_FB = 6, + HV_KBD = 7, + HV_MOUSE = 8, + HV_KVP = 9, + HV_TS = 10, + HV_HB = 11, + HV_SHUTDOWN = 12, + HV_FCOPY = 13, + HV_BACKUP = 14, + HV_DM = 15, + HV_AZURE_BLOB = 16, + HV_UNKNOWN = 17, +}; + +struct icmsg_negotiate { + u16 icframe_vercnt; + u16 icmsg_vercnt; + u32 reserved; + struct ic_version icversion_data[0]; +}; + +enum hv_kvp_exchg_op { + KVP_OP_GET = 0, + KVP_OP_SET = 1, + KVP_OP_DELETE = 2, + KVP_OP_ENUMERATE = 3, + KVP_OP_GET_IP_INFO = 4, + KVP_OP_SET_IP_INFO = 5, + KVP_OP_COUNT = 6, +}; + +struct hv_kvp_ipaddr_value { + __u16 adapter_id[128]; + __u8 addr_family; + __u8 dhcp_enabled; + __u16 ip_addr[1024]; + __u16 sub_net[1024]; + __u16 gate_way[512]; + __u16 dns_addr[1024]; +}; + +struct hv_kvp_hdr { + __u8 operation; + __u8 pool; + __u16 pad; +}; + +struct hv_kvp_exchg_msg_value { + __u32 value_type; + __u32 key_size; + __u32 value_size; + __u8 key[512]; + union { + __u8 value[2048]; + __u32 value_u32; + __u64 value_u64; + }; +} __attribute__((packed)); + +struct hv_kvp_msg_enumerate { + __u32 index; + struct hv_kvp_exchg_msg_value data; +}; + +struct hv_kvp_msg_get { + struct hv_kvp_exchg_msg_value data; +}; + +struct hv_kvp_msg_set { + struct hv_kvp_exchg_msg_value data; +}; + +struct hv_kvp_msg_delete { + __u32 key_size; + __u8 key[512]; +}; + +struct hv_kvp_register { + __u8 version[512]; +}; + +struct hv_kvp_msg { + union { + struct hv_kvp_hdr kvp_hdr; + int error; + }; + union { + struct hv_kvp_msg_get kvp_get; + struct hv_kvp_msg_set kvp_set; + struct hv_kvp_msg_delete kvp_delete; + struct hv_kvp_msg_enumerate kvp_enum_data; + struct hv_kvp_ipaddr_value kvp_ip_val; + struct hv_kvp_register kvp_register; + } body; +}; + +struct hv_kvp_ip_msg { + __u8 operation; + __u8 pool; + struct hv_kvp_ipaddr_value kvp_ip_val; +}; + +enum { + NEGO_NOT_STARTED = 0, + NEGO_IN_PROGRESS = 1, + NEGO_FINISHED = 2, +}; + +struct hv_output_get_partition_id { + u64 partition_id; +}; + +struct hv_status_info { + char *string; + int errno; + u16 code; +}; + +struct devfreq_event_desc; + +struct devfreq_event_dev { + struct list_head node; + struct device dev; + struct mutex lock; + u32 enable_count; + const struct devfreq_event_desc *desc; +}; + +struct devfreq_event_ops; + +struct devfreq_event_desc { + const char *name; + u32 event_type; + void *driver_data; + const struct devfreq_event_ops *ops; +}; + +struct devfreq_event_data { + long unsigned int load_count; + long unsigned int total_count; +}; + +struct devfreq_event_ops { + int (*enable)(struct devfreq_event_dev *); + int (*disable)(struct devfreq_event_dev *); + int (*reset)(struct devfreq_event_dev *); + int (*set_event)(struct devfreq_event_dev *); + int (*get_event)(struct devfreq_event_dev *, struct devfreq_event_data *); +}; + +union extcon_property_value { + int intval; +}; + +struct extcon_cable { + struct extcon_dev *edev; + int cable_index; + struct attribute_group attr_g; + struct device_attribute attr_name; + struct device_attribute attr_state; + struct attribute *attrs[3]; + union extcon_property_value usb_propval[3]; + union extcon_property_value chg_propval[1]; + union extcon_property_value jack_propval[1]; + union extcon_property_value disp_propval[2]; + long unsigned int usb_bits[1]; + long unsigned int chg_bits[1]; + long unsigned int jack_bits[1]; + long unsigned int disp_bits[1]; +}; + +struct __extcon_info { + unsigned int type; + unsigned int id; + const char *name; +}; + +struct icc_node; + +struct icc_req { + struct hlist_node req_node; + struct icc_node *node; + struct device *dev; + bool enabled; + u32 tag; + u32 avg_bw; + u32 peak_bw; +}; + +struct icc_path { + const char *name; + size_t num_nodes; + struct icc_req reqs[0]; +}; + +struct icc_node_data { + struct icc_node *node; + u32 tag; +}; + +struct icc_provider; + +struct icc_node { + int id; + const char *name; + struct icc_node **links; + size_t num_links; + struct icc_provider *provider; + struct list_head node_list; + struct list_head search_list; + struct icc_node *reverse; + u8 is_traversed: 1; + struct hlist_head req_list; + u32 avg_bw; + u32 peak_bw; + u32 init_avg; + u32 init_peak; + void *data; +}; + +struct icc_onecell_data { + unsigned int num_nodes; + struct icc_node *nodes[0]; +}; + +struct icc_provider { + struct list_head provider_list; + struct list_head nodes; + int (*set)(struct icc_node *, struct icc_node *); + int (*aggregate)(struct icc_node *, u32, u32, u32, u32 *, u32 *); + void (*pre_aggregate)(struct icc_node *); + int (*get_bw)(struct icc_node *, u32 *, u32 *); + struct icc_node * (*xlate)(const struct of_phandle_args *, void *); + struct icc_node_data * (*xlate_extended)(const struct of_phandle_args *, void *); + struct device *dev; + int users; + bool inter_set; + void *data; +}; + +struct trace_event_raw_icc_set_bw { + struct trace_entry ent; + u32 __data_loc_path_name; + u32 __data_loc_dev; + u32 __data_loc_node_name; + u32 avg_bw; + u32 peak_bw; + u32 node_avg_bw; + u32 node_peak_bw; + char __data[0]; +}; + +struct trace_event_raw_icc_set_bw_end { + struct trace_entry ent; + u32 __data_loc_path_name; + u32 __data_loc_dev; + int ret; + char __data[0]; +}; + +struct trace_event_data_offsets_icc_set_bw { + u32 path_name; + const void *path_name_ptr_; + u32 dev; + const void *dev_ptr_; + u32 node_name; + const void *node_name_ptr_; +}; + +struct trace_event_data_offsets_icc_set_bw_end { + u32 path_name; + const void *path_name_ptr_; + u32 dev; + const void *dev_ptr_; +}; + +typedef void (*btf_trace_icc_set_bw)(void *, struct icc_path *, struct icc_node *, int, u32, u32); + +typedef void (*btf_trace_icc_set_bw_end)(void *, struct icc_path *, int); + +enum { + DPLL_NLGRP_MONITOR = 0, +}; + +struct mmsghdr { + struct user_msghdr msg_hdr; + unsigned int msg_len; +}; + +struct compat_if_settings { + unsigned int type; + unsigned int size; + compat_uptr_t ifs_ifsu; +}; + +struct compat_ifreq { + union { + char ifrn_name[16]; + } ifr_ifrn; + union { + struct sockaddr ifru_addr; + struct sockaddr ifru_dstaddr; + struct sockaddr ifru_broadaddr; + struct sockaddr ifru_netmask; + struct sockaddr ifru_hwaddr; + short int ifru_flags; + compat_int_t ifru_ivalue; + compat_int_t ifru_mtu; + struct compat_ifmap ifru_map; + char ifru_slave[16]; + char ifru_newname[16]; + compat_caddr_t ifru_data; + struct compat_if_settings ifru_settings; + } ifr_ifru; +}; + +struct compat_mmsghdr { + struct compat_msghdr msg_hdr; + compat_uint_t msg_len; +}; + +struct scm_ts_pktinfo { + __u32 if_index; + __u32 pkt_length; + __u32 reserved[2]; +}; + +struct used_address { + struct __kernel_sockaddr_storage name; + unsigned int name_len; +}; + +enum { + TCA_STATS_UNSPEC = 0, + TCA_STATS_BASIC = 1, + TCA_STATS_RATE_EST = 2, + TCA_STATS_QUEUE = 3, + TCA_STATS_APP = 4, + TCA_STATS_RATE_EST64 = 5, + TCA_STATS_PAD = 6, + TCA_STATS_BASIC_HW = 7, + TCA_STATS_PKT64 = 8, + __TCA_STATS_MAX = 9, +}; + +struct gnet_stats_basic { + __u64 bytes; + __u32 packets; +}; + +struct gnet_stats_rate_est { + __u32 bps; + __u32 pps; +}; + +struct ifbond { + __s32 bond_mode; + __s32 num_slaves; + __s32 miimon; +}; + +typedef struct ifbond ifbond; + +struct ifslave { + __s32 slave_id; + char slave_name[16]; + __s8 link; + __s8 state; + __u32 link_failure_count; +}; + +typedef struct ifslave ifslave; + +struct net_device_path_stack { + int num_paths; + struct net_device_path path[5]; +}; + +struct bpf_xdp_link { + struct bpf_link link; + struct net_device *dev; + int flags; +}; + +struct netdev_net_notifier { + struct list_head list; + struct notifier_block *nb; +}; + +struct netdev_notifier_changelowerstate_info { + struct netdev_notifier_info info; + void *lower_state_info; +}; + +struct netdev_notifier_pre_changeaddr_info { + struct netdev_notifier_info info; + const unsigned char *dev_addr; +}; + +struct netdev_notifier_offload_xstats_rd { + struct rtnl_hw_stats64 stats; + bool used; +}; + +struct netdev_notifier_offload_xstats_ru { + bool used; +}; + +struct netdev_notifier_offload_xstats_info { + struct netdev_notifier_info info; + enum netdev_offload_xstats_type type; + union { + struct netdev_notifier_offload_xstats_rd *report_delta; + struct netdev_notifier_offload_xstats_ru *report_used; + }; +}; + +enum { + NESTED_SYNC_IMM_BIT = 0, + NESTED_SYNC_TODO_BIT = 1, +}; + +struct netdev_nested_priv { + unsigned char flags; + void *data; +}; + +struct netdev_bonding_info { + ifslave slave; + ifbond master; +}; + +struct netdev_notifier_bonding_info { + struct netdev_notifier_info info; + struct netdev_bonding_info bonding_info; +}; + +typedef int (*bpf_op_t)(struct net_device *, struct netdev_bpf *); + +struct dev_kfree_skb_cb { + enum skb_drop_reason reason; +}; + +struct flush_backlogs { + cpumask_t flush_cpus; + struct work_struct w[0]; +}; + +enum { + NAPI_F_PREFER_BUSY_POLL = 1, + NAPI_F_END_ON_RESCHED = 2, +}; + +struct netdev_adjacent { + struct net_device *dev; + netdevice_tracker dev_tracker; + bool master; + bool ignore; + u16 ref_nr; + void *private; + struct list_head list; + struct callback_head rcu; +}; + +struct sock_diag_req { + __u8 sdiag_family; + __u8 sdiag_protocol; +}; + +struct sock_diag_handler { + struct module *owner; + __u8 family; + int (*dump)(struct sk_buff *, struct nlmsghdr *); + int (*get_info)(struct sk_buff *, struct sock *); + int (*destroy)(struct sk_buff *, struct nlmsghdr *); +}; + +struct sock_diag_inet_compat { + struct module *owner; + int (*fn)(struct sk_buff *, struct nlmsghdr *); +}; + +struct broadcast_sk { + struct sock *sk; + struct work_struct work; +}; + +struct netdev_queue_attribute { + struct attribute attr; + ssize_t (*show)(struct kobject *, struct attribute *, struct netdev_queue *, char *); + ssize_t (*store)(struct kobject *, struct attribute *, struct netdev_queue *, const char *, size_t); +}; + +struct trace_event_raw_kfree_skb { + struct trace_entry ent; + void *skbaddr; + void *location; + void *rx_sk; + short unsigned int protocol; + enum skb_drop_reason reason; + char __data[0]; +}; + +struct trace_event_raw_consume_skb { + struct trace_entry ent; + void *skbaddr; + void *location; + char __data[0]; +}; + +struct trace_event_raw_skb_copy_datagram_iovec { + struct trace_entry ent; + const void *skbaddr; + int len; + char __data[0]; +}; + +struct trace_event_data_offsets_kfree_skb {}; + +struct trace_event_data_offsets_consume_skb {}; + +struct trace_event_data_offsets_skb_copy_datagram_iovec {}; + +typedef void (*btf_trace_kfree_skb)(void *, struct sk_buff *, void *, enum skb_drop_reason, struct sock *); + +typedef void (*btf_trace_consume_skb)(void *, struct sk_buff *, void *); + +typedef void (*btf_trace_skb_copy_datagram_iovec)(void *, const struct sk_buff *, int); + +struct trace_event_raw_net_dev_start_xmit { + struct trace_entry ent; + u32 __data_loc_name; + u16 queue_mapping; + const void *skbaddr; + bool vlan_tagged; + u16 vlan_proto; + u16 vlan_tci; + u16 protocol; + u8 ip_summed; + unsigned int len; + unsigned int data_len; + int network_offset; + bool transport_offset_valid; + int transport_offset; + u8 tx_flags; + u16 gso_size; + u16 gso_segs; + u16 gso_type; + char __data[0]; +}; + +struct trace_event_raw_net_dev_xmit { + struct trace_entry ent; + void *skbaddr; + unsigned int len; + int rc; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_net_dev_xmit_timeout { + struct trace_entry ent; + u32 __data_loc_name; + u32 __data_loc_driver; + int queue_index; + char __data[0]; +}; + +struct trace_event_raw_net_dev_template { + struct trace_entry ent; + void *skbaddr; + unsigned int len; + u32 __data_loc_name; + char __data[0]; +}; + +struct trace_event_raw_net_dev_rx_verbose_template { + struct trace_entry ent; + u32 __data_loc_name; + unsigned int napi_id; + u16 queue_mapping; + const void *skbaddr; + bool vlan_tagged; + u16 vlan_proto; + u16 vlan_tci; + u16 protocol; + u8 ip_summed; + u32 hash; + bool l4_hash; + unsigned int len; + unsigned int data_len; + unsigned int truesize; + bool mac_header_valid; + int mac_header; + unsigned char nr_frags; + u16 gso_size; + u16 gso_type; + char __data[0]; +}; + +struct trace_event_raw_net_dev_rx_exit_template { + struct trace_entry ent; + int ret; + char __data[0]; +}; + +struct trace_event_data_offsets_net_dev_start_xmit { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_net_dev_xmit { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_net_dev_xmit_timeout { + u32 name; + const void *name_ptr_; + u32 driver; + const void *driver_ptr_; +}; + +struct trace_event_data_offsets_net_dev_template { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_net_dev_rx_verbose_template { + u32 name; + const void *name_ptr_; +}; + +struct trace_event_data_offsets_net_dev_rx_exit_template {}; + +typedef void (*btf_trace_net_dev_start_xmit)(void *, const struct sk_buff *, const struct net_device *); + +typedef void (*btf_trace_net_dev_xmit)(void *, struct sk_buff *, int, struct net_device *, unsigned int); + +typedef void (*btf_trace_net_dev_xmit_timeout)(void *, struct net_device *, int); + +typedef void (*btf_trace_net_dev_queue)(void *, struct sk_buff *); + +typedef void (*btf_trace_netif_receive_skb)(void *, struct sk_buff *); + +typedef void (*btf_trace_netif_rx)(void *, struct sk_buff *); + +typedef void (*btf_trace_napi_gro_frags_entry)(void *, const struct sk_buff *); + +typedef void (*btf_trace_napi_gro_receive_entry)(void *, const struct sk_buff *); + +typedef void (*btf_trace_netif_receive_skb_entry)(void *, const struct sk_buff *); + +typedef void (*btf_trace_netif_receive_skb_list_entry)(void *, const struct sk_buff *); + +typedef void (*btf_trace_netif_rx_entry)(void *, const struct sk_buff *); + +typedef void (*btf_trace_napi_gro_frags_exit)(void *, int); + +typedef void (*btf_trace_napi_gro_receive_exit)(void *, int); + +typedef void (*btf_trace_netif_receive_skb_exit)(void *, int); + +typedef void (*btf_trace_netif_rx_exit)(void *, int); + +typedef void (*btf_trace_netif_receive_skb_list_exit)(void *, int); + +struct trace_event_raw_napi_poll { + struct trace_entry ent; + struct napi_struct *napi; + u32 __data_loc_dev_name; + int work; + int budget; + char __data[0]; +}; + +struct trace_event_raw_dql_stall_detected { + struct trace_entry ent; + short unsigned int thrs; + unsigned int len; + long unsigned int last_reap; + long unsigned int hist_head; + long unsigned int now; + long unsigned int hist[4]; + char __data[0]; +}; + +struct trace_event_data_offsets_napi_poll { + u32 dev_name; + const void *dev_name_ptr_; +}; + +struct trace_event_data_offsets_dql_stall_detected {}; + +typedef void (*btf_trace_napi_poll)(void *, struct napi_struct *, int, int); + +typedef void (*btf_trace_dql_stall_detected)(void *, short unsigned int, unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int *); + +struct trace_event_raw_sock_rcvqueue_full { + struct trace_entry ent; + int rmem_alloc; + unsigned int truesize; + int sk_rcvbuf; + char __data[0]; +}; + +struct trace_event_raw_sock_exceed_buf_limit { + struct trace_entry ent; + char name[32]; + long int sysctl_mem[3]; + long int allocated; + int sysctl_rmem; + int rmem_alloc; + int sysctl_wmem; + int wmem_alloc; + int wmem_queued; + int kind; + char __data[0]; +}; + +struct trace_event_raw_inet_sock_set_state { + struct trace_entry ent; + const void *skaddr; + int oldstate; + int newstate; + __u16 sport; + __u16 dport; + __u16 family; + __u16 protocol; + __u8 saddr[4]; + __u8 daddr[4]; + __u8 saddr_v6[16]; + __u8 daddr_v6[16]; + char __data[0]; +}; + +struct trace_event_raw_inet_sk_error_report { + struct trace_entry ent; + int error; + __u16 sport; + __u16 dport; + __u16 family; + __u16 protocol; + __u8 saddr[4]; + __u8 daddr[4]; + __u8 saddr_v6[16]; + __u8 daddr_v6[16]; + char __data[0]; +}; + +struct trace_event_raw_sk_data_ready { + struct trace_entry ent; + const void *skaddr; + __u16 family; + __u16 protocol; + long unsigned int ip; + char __data[0]; +}; + +struct trace_event_raw_sock_msg_length { + struct trace_entry ent; + void *sk; + __u16 family; + __u16 protocol; + int ret; + int flags; + char __data[0]; +}; + +struct trace_event_data_offsets_sock_rcvqueue_full {}; + +struct trace_event_data_offsets_sock_exceed_buf_limit {}; + +struct trace_event_data_offsets_inet_sock_set_state {}; + +struct trace_event_data_offsets_inet_sk_error_report {}; + +struct trace_event_data_offsets_sk_data_ready {}; + +struct trace_event_data_offsets_sock_msg_length {}; + +typedef void (*btf_trace_sock_rcvqueue_full)(void *, struct sock *, struct sk_buff *); + +typedef void (*btf_trace_sock_exceed_buf_limit)(void *, struct sock *, struct proto *, long int, int); + +typedef void (*btf_trace_inet_sock_set_state)(void *, const struct sock *, const int, const int); + +typedef void (*btf_trace_inet_sk_error_report)(void *, const struct sock *); + +typedef void (*btf_trace_sk_data_ready)(void *, const struct sock *); + +typedef void (*btf_trace_sock_send_length)(void *, struct sock *, int, int); + +typedef void (*btf_trace_sock_recv_length)(void *, struct sock *, int, int); + +struct trace_event_raw_udp_fail_queue_rcv_skb { + struct trace_entry ent; + int rc; + __u16 sport; + __u16 dport; + __u16 family; + __u8 saddr[28]; + __u8 daddr[28]; + char __data[0]; +}; + +struct trace_event_data_offsets_udp_fail_queue_rcv_skb {}; + +typedef void (*btf_trace_udp_fail_queue_rcv_skb)(void *, int, struct sock *, struct sk_buff *); + +struct trace_event_raw_tcp_retransmit_skb { + struct trace_entry ent; + const void *skbaddr; + const void *skaddr; + int state; + __u16 sport; + __u16 dport; + __u16 family; + __u8 saddr[4]; + __u8 daddr[4]; + __u8 saddr_v6[16]; + __u8 daddr_v6[16]; + int err; + char __data[0]; +}; + +struct trace_event_raw_tcp_send_reset { + struct trace_entry ent; + const void *skbaddr; + const void *skaddr; + int state; + enum sk_rst_reason reason; + __u8 saddr[28]; + __u8 daddr[28]; + char __data[0]; +}; + +struct trace_event_raw_tcp_event_sk { + struct trace_entry ent; + const void *skaddr; + __u16 sport; + __u16 dport; + __u16 family; + __u8 saddr[4]; + __u8 daddr[4]; + __u8 saddr_v6[16]; + __u8 daddr_v6[16]; + __u64 sock_cookie; + char __data[0]; +}; + +struct trace_event_raw_tcp_rcvbuf_grow { + struct trace_entry ent; + int time; + __u32 rtt_us; + __u32 copied; + __u32 inq; + __u32 space; + __u32 ooo_space; + __u32 rcvbuf; + __u8 scaling_ratio; + __u16 sport; + __u16 dport; + __u16 family; + __u8 saddr[4]; + __u8 daddr[4]; + __u8 saddr_v6[16]; + __u8 daddr_v6[16]; + const void *skaddr; + __u64 sock_cookie; + char __data[0]; +}; + +struct trace_event_raw_tcp_retransmit_synack { + struct trace_entry ent; + const void *skaddr; + const void *req; + __u16 sport; + __u16 dport; + __u16 family; + __u8 saddr[4]; + __u8 daddr[4]; + __u8 saddr_v6[16]; + __u8 daddr_v6[16]; + char __data[0]; +}; + +struct trace_event_raw_tcp_sendmsg_locked { + struct trace_entry ent; + const void *skb_addr; + int skb_len; + int msg_left; + int size_goal; + char __data[0]; +}; + +struct trace_event_raw_tcp_probe { + struct trace_entry ent; + __u8 saddr[28]; + __u8 daddr[28]; + __u16 sport; + __u16 dport; + __u16 family; + __u32 mark; + __u16 data_len; + __u32 snd_nxt; + __u32 snd_una; + __u32 snd_cwnd; + __u32 ssthresh; + __u32 snd_wnd; + __u32 srtt; + __u32 rcv_wnd; + __u64 sock_cookie; + const void *skbaddr; + const void *skaddr; + char __data[0]; +}; + +struct trace_event_raw_tcp_event_skb { + struct trace_entry ent; + const void *skbaddr; + __u8 saddr[28]; + __u8 daddr[28]; + char __data[0]; +}; + +struct trace_event_raw_tcp_cong_state_set { + struct trace_entry ent; + const void *skaddr; + __u16 sport; + __u16 dport; + __u16 family; + __u8 saddr[4]; + __u8 daddr[4]; + __u8 saddr_v6[16]; + __u8 daddr_v6[16]; + __u8 cong_state; + char __data[0]; +}; + +struct trace_event_raw_tcp_hash_event { + struct trace_entry ent; + __u64 net_cookie; + const void *skbaddr; + const void *skaddr; + int state; + __u8 saddr[28]; + __u8 daddr[28]; + int l3index; + __u16 sport; + __u16 dport; + __u16 family; + bool fin; + bool syn; + bool rst; + bool psh; + bool ack; + char __data[0]; +}; + +struct trace_event_raw_tcp_ao_event { + struct trace_entry ent; + __u64 net_cookie; + const void *skbaddr; + const void *skaddr; + int state; + __u8 saddr[28]; + __u8 daddr[28]; + int l3index; + __u16 sport; + __u16 dport; + __u16 family; + bool fin; + bool syn; + bool rst; + bool psh; + bool ack; + __u8 keyid; + __u8 rnext; + __u8 maclen; + char __data[0]; +}; + +struct trace_event_raw_tcp_ao_event_sk { + struct trace_entry ent; + __u64 net_cookie; + const void *skaddr; + int state; + __u8 saddr[28]; + __u8 daddr[28]; + __u16 sport; + __u16 dport; + __u16 family; + __u8 keyid; + __u8 rnext; + char __data[0]; +}; + +struct trace_event_raw_tcp_ao_event_sne { + struct trace_entry ent; + __u64 net_cookie; + const void *skaddr; + int state; + __u8 saddr[28]; + __u8 daddr[28]; + __u16 sport; + __u16 dport; + __u16 family; + __u32 new_sne; + char __data[0]; +}; + +struct trace_event_data_offsets_tcp_retransmit_skb {}; + +struct trace_event_data_offsets_tcp_send_reset {}; + +struct trace_event_data_offsets_tcp_event_sk {}; + +struct trace_event_data_offsets_tcp_rcvbuf_grow {}; + +struct trace_event_data_offsets_tcp_retransmit_synack {}; + +struct trace_event_data_offsets_tcp_sendmsg_locked {}; + +struct trace_event_data_offsets_tcp_probe {}; + +struct trace_event_data_offsets_tcp_event_skb {}; + +struct trace_event_data_offsets_tcp_cong_state_set {}; + +struct trace_event_data_offsets_tcp_hash_event {}; + +struct trace_event_data_offsets_tcp_ao_event {}; + +struct trace_event_data_offsets_tcp_ao_event_sk {}; + +struct trace_event_data_offsets_tcp_ao_event_sne {}; + +typedef void (*btf_trace_tcp_retransmit_skb)(void *, const struct sock *, const struct sk_buff *, int); + +typedef void (*btf_trace_tcp_send_reset)(void *, const struct sock *, const struct sk_buff *, const enum sk_rst_reason); + +typedef void (*btf_trace_tcp_receive_reset)(void *, struct sock *); + +typedef void (*btf_trace_tcp_destroy_sock)(void *, struct sock *); + +typedef void (*btf_trace_tcp_rcv_space_adjust)(void *, struct sock *); + +typedef void (*btf_trace_tcp_rcvbuf_grow)(void *, struct sock *, int); + +typedef void (*btf_trace_tcp_retransmit_synack)(void *, const struct sock *, const struct request_sock *); + +typedef void (*btf_trace_tcp_sendmsg_locked)(void *, const struct sock *, const struct msghdr *, const struct sk_buff *, int); + +typedef void (*btf_trace_tcp_cwnd_reduction_tp)(void *, const struct sock *, int, int, int); + +typedef void (*btf_trace_tcp_probe)(void *, struct sock *, const struct sk_buff *); + +typedef void (*btf_trace_tcp_bad_csum)(void *, const struct sk_buff *); + +typedef void (*btf_trace_tcp_cong_state_set)(void *, struct sock *, const u8); + +typedef void (*btf_trace_tcp_hash_bad_header)(void *, const struct sock *, const struct sk_buff *); + +typedef void (*btf_trace_tcp_hash_md5_required)(void *, const struct sock *, const struct sk_buff *); + +typedef void (*btf_trace_tcp_hash_md5_unexpected)(void *, const struct sock *, const struct sk_buff *); + +typedef void (*btf_trace_tcp_hash_md5_mismatch)(void *, const struct sock *, const struct sk_buff *); + +typedef void (*btf_trace_tcp_hash_ao_required)(void *, const struct sock *, const struct sk_buff *); + +typedef void (*btf_trace_tcp_ao_handshake_failure)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); + +typedef void (*btf_trace_tcp_ao_wrong_maclen)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); + +typedef void (*btf_trace_tcp_ao_mismatch)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); + +typedef void (*btf_trace_tcp_ao_key_not_found)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); + +typedef void (*btf_trace_tcp_ao_rnext_request)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); + +typedef void (*btf_trace_tcp_ao_synack_no_key)(void *, const struct sock *, const __u8, const __u8); + +typedef void (*btf_trace_tcp_ao_snd_sne_update)(void *, const struct sock *, __u32); + +typedef void (*btf_trace_tcp_ao_rcv_sne_update)(void *, const struct sock *, __u32); + +struct trace_event_raw_fib_table_lookup { + struct trace_entry ent; + u32 tb_id; + int err; + int oif; + int iif; + u8 proto; + __u8 tos; + __u8 scope; + __u8 flags; + __u8 src[4]; + __u8 dst[4]; + __u8 gw4[4]; + __u8 gw6[16]; + u16 sport; + u16 dport; + char name[16]; + char __data[0]; +}; + +struct trace_event_data_offsets_fib_table_lookup {}; + +typedef void (*btf_trace_fib_table_lookup)(void *, u32, const struct flowi4 *, const struct fib_nh_common *, int); + +struct trace_event_raw_qdisc_dequeue { + struct trace_entry ent; + struct Qdisc *qdisc; + const struct netdev_queue *txq; + int packets; + void *skbaddr; + int ifindex; + u32 handle; + u32 parent; + long unsigned int txq_state; + char __data[0]; +}; + +struct trace_event_raw_qdisc_enqueue { + struct trace_entry ent; + struct Qdisc *qdisc; + const struct netdev_queue *txq; + void *skbaddr; + int ifindex; + u32 handle; + u32 parent; + char __data[0]; +}; + +struct trace_event_raw_qdisc_reset { + struct trace_entry ent; + u32 __data_loc_dev; + u32 __data_loc_kind; + u32 parent; + u32 handle; + char __data[0]; +}; + +struct trace_event_raw_qdisc_destroy { + struct trace_entry ent; + u32 __data_loc_dev; + u32 __data_loc_kind; + u32 parent; + u32 handle; + char __data[0]; +}; + +struct trace_event_raw_qdisc_create { + struct trace_entry ent; + u32 __data_loc_dev; + u32 __data_loc_kind; + u32 parent; + char __data[0]; +}; + +struct trace_event_data_offsets_qdisc_dequeue {}; + +struct trace_event_data_offsets_qdisc_enqueue {}; + +struct trace_event_data_offsets_qdisc_reset { + u32 dev; + const void *dev_ptr_; + u32 kind; + const void *kind_ptr_; +}; + +struct trace_event_data_offsets_qdisc_destroy { + u32 dev; + const void *dev_ptr_; + u32 kind; + const void *kind_ptr_; +}; + +struct trace_event_data_offsets_qdisc_create { + u32 dev; + const void *dev_ptr_; + u32 kind; + const void *kind_ptr_; +}; + +typedef void (*btf_trace_qdisc_dequeue)(void *, struct Qdisc *, const struct netdev_queue *, int, struct sk_buff *); + +typedef void (*btf_trace_qdisc_enqueue)(void *, struct Qdisc *, const struct netdev_queue *, struct sk_buff *); + +typedef void (*btf_trace_qdisc_reset)(void *, struct Qdisc *); + +typedef void (*btf_trace_qdisc_destroy)(void *, struct Qdisc *); + +typedef void (*btf_trace_qdisc_create)(void *, const struct Qdisc_ops *, struct net_device *, u32); + +struct bridge_stp_xstats { + __u64 transition_blk; + __u64 transition_fwd; + __u64 rx_bpdu; + __u64 tx_bpdu; + __u64 rx_tcn; + __u64 tx_tcn; +}; + +struct br_mcast_stats { + __u64 igmp_v1queries[2]; + __u64 igmp_v2queries[2]; + __u64 igmp_v3queries[2]; + __u64 igmp_leaves[2]; + __u64 igmp_v1reports[2]; + __u64 igmp_v2reports[2]; + __u64 igmp_v3reports[2]; + __u64 igmp_parse_errors; + __u64 mld_v1queries[2]; + __u64 mld_v2queries[2]; + __u64 mld_leaves[2]; + __u64 mld_v1reports[2]; + __u64 mld_v2reports[2]; + __u64 mld_parse_errors; + __u64 mcast_bytes[2]; + __u64 mcast_packets[2]; +}; + +struct br_ip { + union { + __be32 ip4; + struct in6_addr ip6; + } src; + union { + __be32 ip4; + struct in6_addr ip6; + unsigned char mac_addr[6]; + } dst; + __be16 proto; + __u16 vid; +}; + +struct bridge_id { + unsigned char prio[2]; + unsigned char addr[6]; +}; + +typedef struct bridge_id bridge_id; + +struct mac_addr { + unsigned char addr[6]; +}; + +typedef struct mac_addr mac_addr; + +typedef __u16 port_id; + +struct bridge_mcast_own_query { + struct timer_list timer; + u32 startup_sent; +}; + +struct bridge_mcast_other_query { + struct timer_list timer; + struct timer_list delay_timer; +}; + +struct bridge_mcast_querier { + struct br_ip addr; + int port_ifidx; + seqcount_spinlock_t seq; +}; + +struct bridge_mcast_stats { + struct br_mcast_stats mstats; + struct u64_stats_sync syncp; +}; + +struct net_bridge; + +struct net_bridge_vlan; + +struct net_bridge_mcast { + struct net_bridge *br; + struct net_bridge_vlan *vlan; + u32 multicast_last_member_count; + u32 multicast_startup_query_count; + u8 multicast_querier; + u8 multicast_igmp_version; + u8 multicast_router; + u8 multicast_mld_version; + long unsigned int multicast_last_member_interval; + long unsigned int multicast_membership_interval; + long unsigned int multicast_querier_interval; + long unsigned int multicast_query_interval; + long unsigned int multicast_query_response_interval; + long unsigned int multicast_startup_query_interval; + struct hlist_head ip4_mc_router_list; + struct timer_list ip4_mc_router_timer; + struct bridge_mcast_other_query ip4_other_query; + struct bridge_mcast_own_query ip4_own_query; + struct bridge_mcast_querier ip4_querier; + struct hlist_head ip6_mc_router_list; + struct timer_list ip6_mc_router_timer; + struct bridge_mcast_other_query ip6_other_query; + struct bridge_mcast_own_query ip6_own_query; + struct bridge_mcast_querier ip6_querier; +}; + +struct net_bridge_vlan_group; + +struct net_bridge { + spinlock_t lock; + spinlock_t hash_lock; + struct hlist_head frame_type_list; + struct net_device *dev; + long unsigned int options; + __be16 vlan_proto; + u16 default_pvid; + struct net_bridge_vlan_group *vlgrp; + struct rhashtable fdb_hash_tbl; + struct list_head port_list; + union { + struct rtable fake_rtable; + struct rt6_info fake_rt6_info; + }; + u32 metrics[17]; + u16 group_fwd_mask; + u16 group_fwd_mask_required; + bridge_id designated_root; + bridge_id bridge_id; + unsigned char topology_change; + unsigned char topology_change_detected; + u16 root_port; + long unsigned int max_age; + long unsigned int hello_time; + long unsigned int forward_delay; + long unsigned int ageing_time; + long unsigned int bridge_max_age; + long unsigned int bridge_hello_time; + long unsigned int bridge_forward_delay; + long unsigned int bridge_ageing_time; + u32 root_path_cost; + u8 group_addr[6]; + enum { + BR_NO_STP = 0, + BR_KERNEL_STP = 1, + BR_USER_STP = 2, + } stp_enabled; + struct net_bridge_mcast multicast_ctx; + struct bridge_mcast_stats *mcast_stats; + u32 hash_max; + spinlock_t multicast_lock; + struct rhashtable mdb_hash_tbl; + struct rhashtable sg_port_tbl; + struct hlist_head mcast_gc_list; + struct hlist_head mdb_list; + struct work_struct mcast_gc_work; + struct timer_list hello_timer; + struct timer_list tcn_timer; + struct timer_list topology_change_timer; + struct delayed_work gc_work; + struct kobject *ifobj; + u32 auto_cnt; + atomic_t fdb_n_learned; + u32 fdb_max_learned; + int last_hwdom; + long unsigned int busy_hwdoms; + struct hlist_head fdb_list; + struct hlist_head mrp_list; + struct hlist_head mep_list; +}; + +struct net_bridge_port; + +struct net_bridge_mcast_port { + struct net_bridge_port *port; + struct net_bridge_vlan *vlan; + struct bridge_mcast_own_query ip4_own_query; + struct timer_list ip4_mc_router_timer; + struct hlist_node ip4_rlist; + struct bridge_mcast_own_query ip6_own_query; + struct timer_list ip6_mc_router_timer; + struct hlist_node ip6_rlist; + unsigned char multicast_router; + u32 mdb_n_entries; + u32 mdb_max_entries; +}; + +struct net_bridge_port { + struct net_bridge *br; + struct net_device *dev; + netdevice_tracker dev_tracker; + struct list_head list; + long unsigned int flags; + struct net_bridge_vlan_group *vlgrp; + struct net_bridge_port *backup_port; + u32 backup_nhid; + u8 priority; + u8 state; + u16 port_no; + unsigned char topology_change_ack; + unsigned char config_pending; + port_id port_id; + port_id designated_port; + bridge_id designated_root; + bridge_id designated_bridge; + u32 path_cost; + u32 designated_cost; + long unsigned int designated_age; + struct timer_list forward_delay_timer; + struct timer_list hold_timer; + struct timer_list message_age_timer; + struct kobject kobj; + struct callback_head rcu; + struct net_bridge_mcast_port multicast_ctx; + struct bridge_mcast_stats *mcast_stats; + u32 multicast_eht_hosts_limit; + u32 multicast_eht_hosts_cnt; + struct hlist_head mglist; + char sysfs_name[16]; + struct netpoll *np; + int hwdom; + int offload_count; + struct netdev_phys_item_id ppid; + u16 group_fwd_mask; + u16 backup_redirected_cnt; + struct bridge_stp_xstats stp_xstats; +}; + +struct br_tunnel_info { + __be64 tunnel_id; + struct metadata_dst *tunnel_dst; +}; + +struct net_bridge_vlan { + struct rhash_head vnode; + struct rhash_head tnode; + u16 vid; + u16 flags; + u16 priv_flags; + u8 state; + struct pcpu_sw_netstats *stats; + union { + struct net_bridge *br; + struct net_bridge_port *port; + }; + union { + refcount_t refcnt; + struct net_bridge_vlan *brvlan; + }; + struct br_tunnel_info tinfo; + union { + struct net_bridge_mcast br_mcast_ctx; + struct net_bridge_mcast_port port_mcast_ctx; + }; + u16 msti; + struct list_head vlist; + struct callback_head rcu; +}; + +struct net_bridge_vlan_group { + struct rhashtable vlan_hash; + struct rhashtable tunnel_hash; + struct list_head vlan_list; + u16 num_vlans; + u16 pvid; + u8 pvid_state; +}; + +struct net_bridge_fdb_key { + mac_addr addr; + u16 vlan_id; +}; + +struct net_bridge_fdb_entry { + struct rhash_head rhnode; + struct net_bridge_port *dst; + struct net_bridge_fdb_key key; + struct hlist_node fdb_node; + long unsigned int flags; + long: 64; + long: 64; + long unsigned int updated; + long unsigned int used; + struct callback_head rcu; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct trace_event_raw_br_fdb_add { + struct trace_entry ent; + u8 ndm_flags; + u32 __data_loc_dev; + unsigned char addr[6]; + u16 vid; + u16 nlh_flags; + char __data[0]; +}; + +struct trace_event_raw_br_fdb_external_learn_add { + struct trace_entry ent; + u32 __data_loc_br_dev; + u32 __data_loc_dev; + unsigned char addr[6]; + u16 vid; + char __data[0]; +}; + +struct trace_event_raw_fdb_delete { + struct trace_entry ent; + u32 __data_loc_br_dev; + u32 __data_loc_dev; + unsigned char addr[6]; + u16 vid; + char __data[0]; +}; + +struct trace_event_raw_br_fdb_update { + struct trace_entry ent; + u32 __data_loc_br_dev; + u32 __data_loc_dev; + unsigned char addr[6]; + u16 vid; + long unsigned int flags; + char __data[0]; +}; + +struct trace_event_raw_br_mdb_full { + struct trace_entry ent; + u32 __data_loc_dev; + int af; + u16 vid; + __u8 src[16]; + __u8 grp[16]; + __u8 grpmac[6]; + char __data[0]; +}; + +struct trace_event_data_offsets_br_fdb_add { + u32 dev; + const void *dev_ptr_; +}; + +struct trace_event_data_offsets_br_fdb_external_learn_add { + u32 br_dev; + const void *br_dev_ptr_; + u32 dev; + const void *dev_ptr_; +}; + +struct trace_event_data_offsets_fdb_delete { + u32 br_dev; + const void *br_dev_ptr_; + u32 dev; + const void *dev_ptr_; +}; + +struct trace_event_data_offsets_br_fdb_update { + u32 br_dev; + const void *br_dev_ptr_; + u32 dev; + const void *dev_ptr_; +}; + +struct trace_event_data_offsets_br_mdb_full { + u32 dev; + const void *dev_ptr_; +}; + +typedef void (*btf_trace_br_fdb_add)(void *, struct ndmsg *, struct net_device *, const unsigned char *, u16, u16); + +typedef void (*btf_trace_br_fdb_external_learn_add)(void *, struct net_bridge *, struct net_bridge_port *, const unsigned char *, u16); + +typedef void (*btf_trace_fdb_delete)(void *, struct net_bridge *, struct net_bridge_fdb_entry *); + +typedef void (*btf_trace_br_fdb_update)(void *, struct net_bridge *, struct net_bridge_port *, const unsigned char *, u16, long unsigned int); + +typedef void (*btf_trace_br_mdb_full)(void *, const struct net_device *, const struct br_ip *); + +struct trace_event_raw_page_pool_release { + struct trace_entry ent; + const struct page_pool *pool; + s32 inflight; + u32 hold; + u32 release; + u64 cnt; + char __data[0]; +}; + +struct trace_event_raw_page_pool_state_release { + struct trace_entry ent; + const struct page_pool *pool; + long unsigned int netmem; + u32 release; + long unsigned int pfn; + char __data[0]; +}; + +struct trace_event_raw_page_pool_state_hold { + struct trace_entry ent; + const struct page_pool *pool; + long unsigned int netmem; + u32 hold; + long unsigned int pfn; + char __data[0]; +}; + +struct trace_event_raw_page_pool_update_nid { + struct trace_entry ent; + const struct page_pool *pool; + int pool_nid; + int new_nid; + char __data[0]; +}; + +struct trace_event_data_offsets_page_pool_release {}; + +struct trace_event_data_offsets_page_pool_state_release {}; + +struct trace_event_data_offsets_page_pool_state_hold {}; + +struct trace_event_data_offsets_page_pool_update_nid {}; + +typedef void (*btf_trace_page_pool_release)(void *, const struct page_pool *, s32, u32, u32); + +typedef void (*btf_trace_page_pool_state_release)(void *, const struct page_pool *, netmem_ref, u32); + +typedef void (*btf_trace_page_pool_state_hold)(void *, const struct page_pool *, netmem_ref, u32); + +typedef void (*btf_trace_page_pool_update_nid)(void *, const struct page_pool *, int); + +struct trace_event_raw_neigh_create { + struct trace_entry ent; + u32 family; + u32 __data_loc_dev; + int entries; + u8 created; + u8 gc_exempt; + u8 primary_key4[4]; + u8 primary_key6[16]; + char __data[0]; +}; + +struct trace_event_raw_neigh_update { + struct trace_entry ent; + u32 family; + u32 __data_loc_dev; + u8 lladdr[32]; + u8 lladdr_len; + u8 flags; + u8 nud_state; + u8 type; + u8 dead; + int refcnt; + __u8 primary_key4[4]; + __u8 primary_key6[16]; + long unsigned int confirmed; + long unsigned int updated; + long unsigned int used; + u8 new_lladdr[32]; + u8 new_state; + u32 update_flags; + u32 pid; + char __data[0]; +}; + +struct trace_event_raw_neigh__update { + struct trace_entry ent; + u32 family; + u32 __data_loc_dev; + u8 lladdr[32]; + u8 lladdr_len; + u8 flags; + u8 nud_state; + u8 type; + u8 dead; + int refcnt; + __u8 primary_key4[4]; + __u8 primary_key6[16]; + long unsigned int confirmed; + long unsigned int updated; + long unsigned int used; + u32 err; + char __data[0]; +}; + +struct trace_event_data_offsets_neigh_create { + u32 dev; + const void *dev_ptr_; +}; + +struct trace_event_data_offsets_neigh_update { + u32 dev; + const void *dev_ptr_; +}; + +struct trace_event_data_offsets_neigh__update { + u32 dev; + const void *dev_ptr_; +}; + +typedef void (*btf_trace_neigh_create)(void *, struct neigh_table *, struct net_device *, const void *, const struct neighbour *, bool); + +typedef void (*btf_trace_neigh_update)(void *, struct neighbour *, const u8 *, u8, u32, u32); + +typedef void (*btf_trace_neigh_update_done)(void *, struct neighbour *, int); + +typedef void (*btf_trace_neigh_timer_handler)(void *, struct neighbour *, int); + +typedef void (*btf_trace_neigh_event_send_done)(void *, struct neighbour *, int); + +typedef void (*btf_trace_neigh_event_send_dead)(void *, struct neighbour *, int); + +typedef void (*btf_trace_neigh_cleanup_and_release)(void *, struct neighbour *, int); + +struct update_classid_context { + u32 classid; + unsigned int batch; +}; + +struct gro_cell { + struct sk_buff_head napi_skbs; + struct napi_struct napi; +}; + +struct percpu_free_defer { + struct callback_head rcu; + void *ptr; +}; + +struct compat_cmsghdr { + compat_size_t cmsg_len; + compat_int_t cmsg_level; + compat_int_t cmsg_type; +}; + +enum tc_mq_command { + TC_MQ_CREATE = 0, + TC_MQ_DESTROY = 1, + TC_MQ_STATS = 2, + TC_MQ_GRAFT = 3, +}; + +struct tc_mq_opt_offload_graft_params { + long unsigned int queue; + u32 child_handle; +}; + +struct tc_mq_qopt_offload { + enum tc_mq_command command; + u32 handle; + union { + struct tc_qopt_offload_stats stats; + struct tc_mq_opt_offload_graft_params graft_params; + }; +}; + +struct mq_sched { + struct Qdisc **qdiscs; +}; + +struct psample_group { + struct list_head list; + struct net *net; + u32 group_num; + u32 refcount; + u32 seq; + struct callback_head rcu; +}; + +struct action_gate_entry { + u8 gate_state; + u32 interval; + s32 ipv; + s32 maxoctets; +}; + +enum qdisc_class_ops_flags { + QDISC_CLASS_OPS_DOIT_UNLOCKED = 1, +}; + +enum tcf_proto_ops_flags { + TCF_PROTO_OPS_DOIT_UNLOCKED = 1, +}; + +typedef void tcf_chain_head_change_t(struct tcf_proto *, void *); + +struct tcf_block_ext_info { + enum flow_block_binder_type binder_type; + tcf_chain_head_change_t *chain_head_change; + void *chain_head_change_priv; + u32 block_index; +}; + +struct tcf_qevent { + struct tcf_block *block; + struct tcf_block_ext_info info; + struct tcf_proto *filter_chain; +}; + +struct tcf_exts_miss_cookie_node { + const struct tcf_chain *chain; + const struct tcf_proto *tp; + const struct tcf_exts *exts; + u32 chain_index; + u32 tp_prio; + u32 handle; + u32 miss_cookie_base; + struct callback_head rcu; +}; + +union tcf_exts_miss_cookie { + struct { + u32 miss_cookie_base; + u32 act_index; + }; + u64 miss_cookie; +}; + +struct tcf_filter_chain_list_item { + struct list_head list; + tcf_chain_head_change_t *chain_head_change; + void *chain_head_change_priv; +}; + +struct tcf_net { + spinlock_t idr_lock; + struct idr idr; +}; + +struct tcf_block_owner_item { + struct list_head list; + struct Qdisc *q; + enum flow_block_binder_type binder_type; +}; + +struct tcf_chain_info { + struct tcf_proto **pprev; + struct tcf_proto *next; +}; + +struct tcf_dump_args { + struct tcf_walker w; + struct sk_buff *skb; + struct netlink_callback *cb; + struct tcf_block *block; + struct Qdisc *q; + u32 parent; + bool terse_dump; +}; + +struct sockaddr_nl { + __kernel_sa_family_t nl_family; + short unsigned int nl_pad; + __u32 nl_pid; + __u32 nl_groups; +}; + +enum nlmsgerr_attrs { + NLMSGERR_ATTR_UNUSED = 0, + NLMSGERR_ATTR_MSG = 1, + NLMSGERR_ATTR_OFFS = 2, + NLMSGERR_ATTR_COOKIE = 3, + NLMSGERR_ATTR_POLICY = 4, + NLMSGERR_ATTR_MISS_TYPE = 5, + NLMSGERR_ATTR_MISS_NEST = 6, + __NLMSGERR_ATTR_MAX = 7, + NLMSGERR_ATTR_MAX = 6, +}; + +struct nl_pktinfo { + __u32 group; +}; + +enum { + NETLINK_UNCONNECTED = 0, + NETLINK_CONNECTED = 1, +}; + +enum netlink_skb_flags { + NETLINK_SKB_DST = 8, +}; + +struct netlink_notify { + struct net *net; + u32 portid; + int protocol; +}; + +struct netlink_tap { + struct net_device *dev; + struct module *module; + struct list_head list; +}; + +struct trace_event_raw_netlink_extack { + struct trace_entry ent; + u32 __data_loc_msg; + char __data[0]; +}; + +struct trace_event_data_offsets_netlink_extack { + u32 msg; + const void *msg_ptr_; +}; + +typedef void (*btf_trace_netlink_extack)(void *, const char *); + +enum { + NETLINK_F_KERNEL_SOCKET = 0, + NETLINK_F_RECV_PKTINFO = 1, + NETLINK_F_BROADCAST_SEND_ERROR = 2, + NETLINK_F_RECV_NO_ENOBUFS = 3, + NETLINK_F_LISTEN_ALL_NSID = 4, + NETLINK_F_CAP_ACK = 5, + NETLINK_F_EXT_ACK = 6, + NETLINK_F_STRICT_CHK = 7, +}; + +struct netlink_sock { + struct sock sk; + long unsigned int flags; + u32 portid; + u32 dst_portid; + u32 dst_group; + u32 subscriptions; + u32 ngroups; + long unsigned int *groups; + long unsigned int state; + size_t max_recvmsg_len; + wait_queue_head_t wait; + bool bound; + bool cb_running; + int dump_done_errno; + struct netlink_callback cb; + struct mutex nl_cb_mutex; + void (*netlink_rcv)(struct sk_buff *); + int (*netlink_bind)(struct net *, int); + void (*netlink_unbind)(struct net *, int); + void (*netlink_release)(struct sock *, long unsigned int *); + struct module *module; + struct rhash_head node; + struct callback_head rcu; +}; + +struct listeners; + +struct netlink_table { + struct rhashtable hash; + struct hlist_head mc_list; + struct listeners *listeners; + unsigned int flags; + unsigned int groups; + struct mutex *cb_mutex; + struct module *module; + int (*bind)(struct net *, int); + void (*unbind)(struct net *, int); + void (*release)(struct sock *, long unsigned int *); + int registered; +}; + +struct listeners { + struct callback_head rcu; + long unsigned int masks[0]; +}; + +struct netlink_tap_net { + struct list_head netlink_tap_all; + struct mutex netlink_tap_lock; +}; + +struct netlink_compare_arg { + possible_net_t pnet; + u32 portid; +}; + +struct netlink_broadcast_data { + struct sock *exclude_sk; + struct net *net; + u32 portid; + u32 group; + int failure; + int delivery_failure; + int congested; + int delivered; + gfp_t allocation; + struct sk_buff *skb; + struct sk_buff *skb2; + int (*tx_filter)(struct sock *, struct sk_buff *, void *); + void *tx_data; +}; + +struct netlink_set_err_data { + struct sock *exclude_sk; + u32 portid; + u32 group; + int code; +}; + +struct nl_seq_iter { + struct seq_net_private p; + struct rhashtable_iter hti; + int link; +}; + +struct bpf_iter__netlink { + union { + struct bpf_iter_meta *meta; + }; + union { + struct netlink_sock *sk; + }; +}; + +enum { + ETHTOOL_UDP_TUNNEL_TYPE_VXLAN = 0, + ETHTOOL_UDP_TUNNEL_TYPE_GENEVE = 1, + ETHTOOL_UDP_TUNNEL_TYPE_VXLAN_GPE = 2, + __ETHTOOL_UDP_TUNNEL_TYPE_CNT = 3, + ETHTOOL_UDP_TUNNEL_TYPE_MAX = 2, +}; + +struct ethtool_forced_speed_map { + u32 speed; + long unsigned int caps[2]; + const u32 *cap_arr; + u32 arr_size; +}; + +enum { + ETHTOOL_A_STRING_UNSPEC = 0, + ETHTOOL_A_STRING_INDEX = 1, + ETHTOOL_A_STRING_VALUE = 2, + __ETHTOOL_A_STRING_CNT = 3, + ETHTOOL_A_STRING_MAX = 2, +}; + +enum { + ETHTOOL_A_STRINGS_UNSPEC = 0, + ETHTOOL_A_STRINGS_STRING = 1, + __ETHTOOL_A_STRINGS_CNT = 2, + ETHTOOL_A_STRINGS_MAX = 1, +}; + +enum { + ETHTOOL_A_STRINGSET_UNSPEC = 0, + ETHTOOL_A_STRINGSET_ID = 1, + ETHTOOL_A_STRINGSET_COUNT = 2, + ETHTOOL_A_STRINGSET_STRINGS = 3, + __ETHTOOL_A_STRINGSET_CNT = 4, + ETHTOOL_A_STRINGSET_MAX = 3, +}; + +enum { + ETHTOOL_A_STRINGSETS_UNSPEC = 0, + ETHTOOL_A_STRINGSETS_STRINGSET = 1, + __ETHTOOL_A_STRINGSETS_CNT = 2, + ETHTOOL_A_STRINGSETS_MAX = 1, +}; + +struct strset_info { + bool per_dev; + bool free_strings; + unsigned int count; + const char (*strings)[32]; +}; + +struct strset_req_info { + struct ethnl_req_info base; + u32 req_ids; + bool counts_only; +}; + +struct strset_reply_data { + struct ethnl_reply_data base; + struct strset_info sets[23]; +}; + +enum { + ETHTOOL_A_FLOW_ETHER = 1, + ETHTOOL_A_FLOW_IP4 = 2, + ETHTOOL_A_FLOW_IP6 = 3, + ETHTOOL_A_FLOW_TCP4 = 4, + ETHTOOL_A_FLOW_TCP6 = 5, + ETHTOOL_A_FLOW_UDP4 = 6, + ETHTOOL_A_FLOW_UDP6 = 7, + ETHTOOL_A_FLOW_SCTP4 = 8, + ETHTOOL_A_FLOW_SCTP6 = 9, + ETHTOOL_A_FLOW_AH4 = 10, + ETHTOOL_A_FLOW_AH6 = 11, + ETHTOOL_A_FLOW_ESP4 = 12, + ETHTOOL_A_FLOW_ESP6 = 13, + ETHTOOL_A_FLOW_AH_ESP4 = 14, + ETHTOOL_A_FLOW_AH_ESP6 = 15, + ETHTOOL_A_FLOW_GTPU4 = 16, + ETHTOOL_A_FLOW_GTPU6 = 17, + ETHTOOL_A_FLOW_GTPC4 = 18, + ETHTOOL_A_FLOW_GTPC6 = 19, + ETHTOOL_A_FLOW_GTPC_TEID4 = 20, + ETHTOOL_A_FLOW_GTPC_TEID6 = 21, + ETHTOOL_A_FLOW_GTPU_EH4 = 22, + ETHTOOL_A_FLOW_GTPU_EH6 = 23, + ETHTOOL_A_FLOW_GTPU_UL4 = 24, + ETHTOOL_A_FLOW_GTPU_UL6 = 25, + ETHTOOL_A_FLOW_GTPU_DL4 = 26, + ETHTOOL_A_FLOW_GTPU_DL6 = 27, + __ETHTOOL_A_FLOW_CNT = 28, + ETHTOOL_A_FLOW_MAX = 27, +}; + +struct rss_req_info { + struct ethnl_req_info base; + u32 rss_context; +}; + +struct rss_reply_data { + struct ethnl_reply_data base; + bool has_flow_hash; + bool no_key_fields; + u32 indir_size; + u32 hkey_size; + u32 hfunc; + u32 input_xfrm; + u32 *indir_table; + u8 *hkey; + int flow_hash[28]; +}; + +struct rss_nl_dump_ctx { + long unsigned int ifindex; + long unsigned int ctx_idx; + unsigned int match_ifindex; + unsigned int start_ctx; +}; + +struct privflags_reply_data { + struct ethnl_reply_data base; + const char (*priv_flag_names)[32]; + unsigned int n_priv_flags; + u32 priv_flags; +}; + +enum { + ETHTOOL_A_PAUSE_STAT_UNSPEC = 0, + ETHTOOL_A_PAUSE_STAT_PAD = 1, + ETHTOOL_A_PAUSE_STAT_TX_FRAMES = 2, + ETHTOOL_A_PAUSE_STAT_RX_FRAMES = 3, + __ETHTOOL_A_PAUSE_STAT_CNT = 4, + ETHTOOL_A_PAUSE_STAT_MAX = 3, +}; + +struct pause_req_info { + struct ethnl_req_info base; + enum ethtool_mac_stats_src src; +}; + +struct pause_reply_data { + struct ethnl_reply_data base; + struct ethtool_pauseparam pauseparam; + struct ethtool_pause_stats pausestat; +}; + +enum { + ETHTOOL_A_TUNNEL_UDP_UNSPEC = 0, + ETHTOOL_A_TUNNEL_UDP_TABLE = 1, + __ETHTOOL_A_TUNNEL_UDP_CNT = 2, + ETHTOOL_A_TUNNEL_UDP_MAX = 1, +}; + +struct ethnl_tunnel_info_dump_ctx { + struct ethnl_req_info req_info; + long unsigned int ifindex; +}; + +struct phc_vclocks_reply_data { + struct ethnl_reply_data base; + int num; + int *index; +}; + +struct ethtool_cmis_cdb_rpl_hdr { + u8 rpl_len; + u8 rpl_chk_code; +}; + +struct ethtool_cmis_cdb_rpl { + struct ethtool_cmis_cdb_rpl_hdr hdr; + u8 payload[120]; +}; + +struct cmis_rev_rpl { + u8 rev; +}; + +struct cmis_cdb_advert_rpl { + u8 inst_supported; + u8 read_write_len_ext; + u8 resv1; + u8 resv2; +}; + +struct cmis_password_entry_pl { + __be32 password; +}; + +struct cmis_cdb_query_status_pl { + u16 response_delay; +}; + +struct cmis_cdb_query_status_rpl { + u8 length; + u8 status; +}; + +struct cmis_cdb_module_features_rpl { + u8 resv1[34]; + __be16 max_completion_time; +}; + +struct cmis_wait_for_cond_rpl { + u8 state; +}; + +struct phy_reply_data { + struct ethnl_reply_data base; + u32 phyindex; + char *drvname; + char *name; + unsigned int upstream_type; + char *upstream_sfp_name; + unsigned int upstream_index; + char *downstream_sfp_name; +}; + +struct nf_loginfo { + u_int8_t type; + union { + struct { + u_int32_t copy_len; + u_int16_t group; + u_int16_t qthreshold; + u_int16_t flags; + } ulog; + struct { + u_int8_t level; + u_int8_t logflags; + } log; + } u; +}; + +struct nf_log_buf { + unsigned int count; + char buf[1020]; +}; + +struct ip_fraglist_iter { + struct sk_buff *frag; + struct iphdr *iph; + int offset; + unsigned int hlen; +}; + +struct ip_frag_state { + bool DF; + unsigned int hlen; + unsigned int ll_rs; + unsigned int mtu; + unsigned int left; + int offset; + int ptr; + __be16 not_last_frag; +}; + +struct ip_reply_arg { + struct kvec iov[1]; + int flags; + __wsum csum; + int csumoffset; + int bound_dev_if; + u8 tos; + kuid_t uid; +}; + +struct dmabuf_cmsg { + __u64 frag_offset; + __u32 frag_size; + __u32 frag_token; + __u32 dmabuf_id; + __u32 flags; +}; + +enum { + BPF_TCP_ESTABLISHED = 1, + BPF_TCP_SYN_SENT = 2, + BPF_TCP_SYN_RECV = 3, + BPF_TCP_FIN_WAIT1 = 4, + BPF_TCP_FIN_WAIT2 = 5, + BPF_TCP_TIME_WAIT = 6, + BPF_TCP_CLOSE = 7, + BPF_TCP_CLOSE_WAIT = 8, + BPF_TCP_LAST_ACK = 9, + BPF_TCP_LISTEN = 10, + BPF_TCP_CLOSING = 11, + BPF_TCP_NEW_SYN_RECV = 12, + BPF_TCP_BOUND_INACTIVE = 13, + BPF_TCP_MAX_STATES = 14, +}; + +struct tcpvegas_info { + __u32 tcpv_enabled; + __u32 tcpv_rttcnt; + __u32 tcpv_rtt; + __u32 tcpv_minrtt; +}; + +struct tcp_dctcp_info { + __u16 dctcp_enabled; + __u16 dctcp_ce_state; + __u32 dctcp_alpha; + __u32 dctcp_ab_ecn; + __u32 dctcp_ab_tot; +}; + +struct tcp_bbr_info { + __u32 bbr_bw_lo; + __u32 bbr_bw_hi; + __u32 bbr_min_rtt; + __u32 bbr_pacing_gain; + __u32 bbr_cwnd_gain; +}; + +union tcp_cc_info { + struct tcpvegas_info vegas; + struct tcp_dctcp_info dctcp; + struct tcp_bbr_info bbr; +}; + +struct tcp_repair_opt { + __u32 opt_code; + __u32 opt_val; +}; + +struct tcp_repair_window { + __u32 snd_wl1; + __u32 snd_wnd; + __u32 max_window; + __u32 rcv_wnd; + __u32 rcv_wup; +}; + +enum { + TCP_NLA_PAD = 0, + TCP_NLA_BUSY = 1, + TCP_NLA_RWND_LIMITED = 2, + TCP_NLA_SNDBUF_LIMITED = 3, + TCP_NLA_DATA_SEGS_OUT = 4, + TCP_NLA_TOTAL_RETRANS = 5, + TCP_NLA_PACING_RATE = 6, + TCP_NLA_DELIVERY_RATE = 7, + TCP_NLA_SND_CWND = 8, + TCP_NLA_REORDERING = 9, + TCP_NLA_MIN_RTT = 10, + TCP_NLA_RECUR_RETRANS = 11, + TCP_NLA_DELIVERY_RATE_APP_LMT = 12, + TCP_NLA_SNDQ_SIZE = 13, + TCP_NLA_CA_STATE = 14, + TCP_NLA_SND_SSTHRESH = 15, + TCP_NLA_DELIVERED = 16, + TCP_NLA_DELIVERED_CE = 17, + TCP_NLA_BYTES_SENT = 18, + TCP_NLA_BYTES_RETRANS = 19, + TCP_NLA_DSACK_DUPS = 20, + TCP_NLA_REORD_SEEN = 21, + TCP_NLA_SRTT = 22, + TCP_NLA_TIMEOUT_REHASH = 23, + TCP_NLA_BYTES_NOTSENT = 24, + TCP_NLA_EDT = 25, + TCP_NLA_TTL = 26, + TCP_NLA_REHASH = 27, +}; + +struct tcp_zerocopy_receive { + __u64 address; + __u32 length; + __u32 recv_skip_hint; + __u32 inq; + __s32 err; + __u64 copybuf_address; + __s32 copybuf_len; + __u32 flags; + __u64 msg_control; + __u64 msg_controllen; + __u32 msg_flags; + __u32 reserved; +}; + +enum { + TCP_CMSG_INQ = 1, + TCP_CMSG_TS = 2, +}; + +struct tcp_splice_state { + struct pipe_inode_info *pipe; + size_t len; + unsigned int flags; +}; + +struct tcp_xa_pool { + u8 max; + u8 idx; + __u32 tokens[17]; + netmem_ref netmems[17]; +}; + +struct sock_bh_locked { + struct sock *sock; + local_lock_t bh_lock; +}; + +union bpf_tcp_iter_batch_item { + struct sock *sk; + __u64 cookie; +}; + +struct bpf_tcp_iter_state { + struct tcp_iter_state state; + unsigned int cur_sk; + unsigned int end_sk; + unsigned int max_sk; + union bpf_tcp_iter_batch_item *batch; +}; + +struct bpf_iter__tcp { + union { + struct bpf_iter_meta *meta; + }; + union { + struct sock_common *sk_common; + }; + uid_t uid; +}; + +struct raw_frag_vec { + struct msghdr *msg; + union { + struct icmphdr icmph; + char c[1]; + } hdr; + int hlen; +}; + +struct arpreq { + struct sockaddr arp_pa; + struct sockaddr arp_ha; + int arp_flags; + struct sockaddr arp_netmask; + char arp_dev[16]; +}; + +typedef struct { + char ax25_call[7]; +} ax25_address; + +struct compat_rtentry { + u32 rt_pad1; + struct sockaddr rt_dst; + struct sockaddr rt_gateway; + struct sockaddr rt_genmask; + short unsigned int rt_flags; + short int rt_pad2; + u32 rt_pad3; + unsigned char rt_tos; + unsigned char rt_class; + short int rt_pad4; + short int rt_metric; + compat_uptr_t rt_dev; + u32 rt_mtu; + u32 rt_window; + short unsigned int rt_irtt; +}; + +struct fib_nh_notifier_info { + struct fib_notifier_info info; + struct fib_nh *fib_nh; +}; + +struct ipfrag_skb_cb { + union { + struct inet_skb_parm h4; + struct inet6_skb_parm h6; + }; + struct sk_buff *next_frag; + int frag_run_len; + int ip_defrag_offset; +}; + +struct fib4_rule { + struct fib_rule common; + u8 dst_len; + u8 src_len; + dscp_t dscp; + dscp_t dscp_mask; + u8 dscp_full: 1; + __be32 src; + __be32 srcmask; + __be32 dst; + __be32 dstmask; + u32 tclassid; +}; + +enum { + UDP_BPF_IPV4 = 0, + UDP_BPF_IPV6 = 1, + UDP_BPF_NUM_PROTS = 2, +}; + +struct xfrm4_protocol { + int (*handler)(struct sk_buff *); + int (*input_handler)(struct sk_buff *, int, __be32, int); + int (*cb_handler)(struct sk_buff *, int); + int (*err_handler)(struct sk_buff *, u32); + struct xfrm4_protocol *next; + int priority; +}; + +struct xfrm_if_decode_session_result { + struct net *net; + u32 if_id; +}; + +struct xfrm_if_cb { + bool (*decode_session)(struct sk_buff *, short unsigned int, struct xfrm_if_decode_session_result *); +}; + +struct xfrm_policy_walk { + struct xfrm_policy_walk_entry walk; + u8 type; + u32 seq; +}; + +struct xfrmk_spdinfo { + u32 incnt; + u32 outcnt; + u32 fwdcnt; + u32 inscnt; + u32 outscnt; + u32 fwdscnt; + u32 spdhcnt; + u32 spdhmcnt; +}; + +struct xfrm_flo { + struct dst_entry *dst_orig; + u8 flags; +}; + +struct xfrm_pol_inexact_node { + struct rb_node node; + union { + xfrm_address_t addr; + struct callback_head rcu; + }; + u8 prefixlen; + struct rb_root root; + struct hlist_head hhead; +}; + +struct xfrm_pol_inexact_key { + possible_net_t net; + u32 if_id; + u16 family; + u8 dir; + u8 type; +}; + +struct xfrm_pol_inexact_bin { + struct xfrm_pol_inexact_key k; + struct rhash_head head; + struct hlist_head hhead; + seqcount_spinlock_t count; + struct rb_root root_d; + struct rb_root root_s; + struct list_head inexact_bins; + struct callback_head rcu; +}; + +enum xfrm_pol_inexact_candidate_type { + XFRM_POL_CAND_BOTH = 0, + XFRM_POL_CAND_SADDR = 1, + XFRM_POL_CAND_DADDR = 2, + XFRM_POL_CAND_ANY = 3, + XFRM_POL_CAND_MAX = 4, +}; + +struct xfrm_pol_inexact_candidates { + struct hlist_head *res[4]; +}; + +struct xfrm_flow_keys { + struct flow_dissector_key_basic basic; + struct flow_dissector_key_control control; + union { + struct flow_dissector_key_ipv4_addrs ipv4; + struct flow_dissector_key_ipv6_addrs ipv6; + } addrs; + struct flow_dissector_key_ip ip; + struct flow_dissector_key_icmp icmp; + struct flow_dissector_key_ports ports; + struct flow_dissector_key_keyid gre; +}; + +struct nat_keepalive { + struct net *net; + u16 family; + xfrm_address_t saddr; + xfrm_address_t daddr; + __be16 encap_sport; + __be16 encap_dport; + __u32 smark; +}; + +struct nat_keepalive_work_ctx { + time64_t next_run; + time64_t now; +}; + +struct unix_peercred { + struct pid *peer_pid; + const struct cred *peer_cred; +}; + +struct unix_stream_read_state { + int (*recv_actor)(struct sk_buff *, int, int, struct unix_stream_read_state *); + struct socket *socket; + struct msghdr *msg; + struct pipe_inode_info *pipe; + size_t size; + int flags; + unsigned int splice_flags; +}; + +struct bpf_unix_iter_state { + struct seq_net_private p; + unsigned int cur_sk; + unsigned int end_sk; + unsigned int max_sk; + struct sock **batch; + bool st_bucket_done; +}; + +struct bpf_iter__unix { + union { + struct bpf_iter_meta *meta; + }; + union { + struct unix_sock *unix_sk; + }; + uid_t uid; +}; + +struct ac6_iter_state { + struct seq_net_private p; + struct net_device *dev; +}; + +struct ifaddrlblmsg { + __u8 ifal_family; + __u8 __ifal_reserved; + __u8 ifal_prefixlen; + __u8 ifal_flags; + __u32 ifal_index; + __u32 ifal_seq; +}; + +enum { + IFAL_ADDRESS = 1, + IFAL_LABEL = 2, + __IFAL_MAX = 3, +}; + +struct ip6addrlbl_entry { + struct in6_addr prefix; + int prefixlen; + int ifindex; + int addrtype; + u32 label; + struct hlist_node list; + struct callback_head rcu; +}; + +struct ip6addrlbl_init_table { + const struct in6_addr *prefix; + int prefixlen; + u32 label; +}; + +struct ipv6_mreq { + struct in6_addr ipv6mr_multiaddr; + int ipv6mr_ifindex; +}; + +struct in6_flowlabel_req { + struct in6_addr flr_dst; + __be32 flr_label; + __u8 flr_action; + __u8 flr_share; + __u16 flr_flags; + __u16 flr_expires; + __u16 flr_linger; + __u32 __flr_pad; +}; + +struct mld2_grec { + __u8 grec_type; + __u8 grec_auxwords; + __be16 grec_nsrcs; + struct in6_addr grec_mca; + struct in6_addr grec_src[0]; +}; + +struct mld2_report { + struct icmp6hdr mld2r_hdr; + struct mld2_grec mld2r_grec[0]; +}; + +struct mld2_query { + struct icmp6hdr mld2q_hdr; + struct in6_addr mld2q_mca; + __u8 mld2q_qrv: 3; + __u8 mld2q_suppress: 1; + __u8 mld2q_resv2: 4; + __u8 mld2q_qqic; + __be16 mld2q_nsrcs; + struct in6_addr mld2q_srcs[0]; +}; + +struct igmp6_mc_iter_state { + struct seq_net_private p; + struct net_device *dev; + struct inet6_dev *idev; +}; + +struct igmp6_mcf_iter_state { + struct seq_net_private p; + struct net_device *dev; + struct inet6_dev *idev; + struct ifmcaddr6 *im; +}; + +struct ip6fl_iter_state { + struct seq_net_private p; + struct pid_namespace *pid_ns; + int bucket; +}; + +enum { + SEG6_ATTR_UNSPEC = 0, + SEG6_ATTR_DST = 1, + SEG6_ATTR_DSTLEN = 2, + SEG6_ATTR_HMACKEYID = 3, + SEG6_ATTR_SECRET = 4, + SEG6_ATTR_SECRETLEN = 5, + SEG6_ATTR_ALGID = 6, + SEG6_ATTR_HMACINFO = 7, + __SEG6_ATTR_MAX = 8, +}; + +enum { + SEG6_CMD_UNSPEC = 0, + SEG6_CMD_SETHMAC = 1, + SEG6_CMD_DUMPHMAC = 2, + SEG6_CMD_SET_TUNSRC = 3, + SEG6_CMD_GET_TUNSRC = 4, + __SEG6_CMD_MAX = 5, +}; + +enum { + IOAM6_ATTR_UNSPEC = 0, + IOAM6_ATTR_NS_ID = 1, + IOAM6_ATTR_NS_DATA = 2, + IOAM6_ATTR_NS_DATA_WIDE = 3, + IOAM6_ATTR_SC_ID = 4, + IOAM6_ATTR_SC_DATA = 5, + IOAM6_ATTR_SC_NONE = 6, + IOAM6_ATTR_PAD = 7, + __IOAM6_ATTR_MAX = 8, +}; + +enum { + IOAM6_CMD_UNSPEC = 0, + IOAM6_CMD_ADD_NAMESPACE = 1, + IOAM6_CMD_DEL_NAMESPACE = 2, + IOAM6_CMD_DUMP_NAMESPACES = 3, + IOAM6_CMD_ADD_SCHEMA = 4, + IOAM6_CMD_DEL_SCHEMA = 5, + IOAM6_CMD_DUMP_SCHEMAS = 6, + IOAM6_CMD_NS_SET_SCHEMA = 7, + __IOAM6_CMD_MAX = 8, +}; + +enum ioam6_event_attr { + IOAM6_EVENT_ATTR_UNSPEC = 0, + IOAM6_EVENT_ATTR_TRACE_NAMESPACE = 1, + IOAM6_EVENT_ATTR_TRACE_NODELEN = 2, + IOAM6_EVENT_ATTR_TRACE_TYPE = 3, + IOAM6_EVENT_ATTR_TRACE_DATA = 4, + __IOAM6_EVENT_ATTR_MAX = 5, +}; + +struct xfrm6_protocol { + int (*handler)(struct sk_buff *); + int (*input_handler)(struct sk_buff *, int, __be32, int); + int (*cb_handler)(struct sk_buff *, int); + int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); + struct xfrm6_protocol *next; + int priority; +}; + +enum { + IP6_FH_F_FRAG = 1, + IP6_FH_F_AUTH = 2, + IP6_FH_F_SKIP_RH = 4, +}; + +enum { + SEG6_LOCAL_UNSPEC = 0, + SEG6_LOCAL_ACTION = 1, + SEG6_LOCAL_SRH = 2, + SEG6_LOCAL_TABLE = 3, + SEG6_LOCAL_NH4 = 4, + SEG6_LOCAL_NH6 = 5, + SEG6_LOCAL_IIF = 6, + SEG6_LOCAL_OIF = 7, + SEG6_LOCAL_BPF = 8, + SEG6_LOCAL_VRFTABLE = 9, + SEG6_LOCAL_COUNTERS = 10, + SEG6_LOCAL_FLAVORS = 11, + __SEG6_LOCAL_MAX = 12, +}; + +enum { + SEG6_LOCAL_BPF_PROG_UNSPEC = 0, + SEG6_LOCAL_BPF_PROG = 1, + SEG6_LOCAL_BPF_PROG_NAME = 2, + __SEG6_LOCAL_BPF_PROG_MAX = 3, +}; + +enum { + SEG6_LOCAL_CNT_UNSPEC = 0, + SEG6_LOCAL_CNT_PAD = 1, + SEG6_LOCAL_CNT_PACKETS = 2, + SEG6_LOCAL_CNT_BYTES = 3, + SEG6_LOCAL_CNT_ERRORS = 4, + __SEG6_LOCAL_CNT_MAX = 5, +}; + +enum { + SEG6_LOCAL_FLV_UNSPEC = 0, + SEG6_LOCAL_FLV_OPERATION = 1, + SEG6_LOCAL_FLV_LCBLOCK_BITS = 2, + SEG6_LOCAL_FLV_LCNODE_FN_BITS = 3, + __SEG6_LOCAL_FLV_MAX = 4, +}; + +enum { + SEG6_LOCAL_FLV_OP_UNSPEC = 0, + SEG6_LOCAL_FLV_OP_PSP = 1, + SEG6_LOCAL_FLV_OP_USP = 2, + SEG6_LOCAL_FLV_OP_USD = 3, + SEG6_LOCAL_FLV_OP_NEXT_CSID = 4, + __SEG6_LOCAL_FLV_OP_MAX = 5, +}; + +struct seg6_local_lwt; + +struct seg6_local_lwtunnel_ops { + int (*build_state)(struct seg6_local_lwt *, const void *, struct netlink_ext_ack *); + void (*destroy_state)(struct seg6_local_lwt *); +}; + +enum seg6_end_dt_mode { + DT_INVALID_MODE = -22, + DT_LEGACY_MODE = 0, + DT_VRF_MODE = 1, +}; + +struct seg6_end_dt_info { + enum seg6_end_dt_mode mode; + struct net *net; + int vrf_ifindex; + int vrf_table; + u16 family; +}; + +struct seg6_flavors_info { + __u32 flv_ops; + __u8 lcblock_bits; + __u8 lcnode_func_bits; +}; + +struct pcpu_seg6_local_counters; + +struct seg6_action_desc; + +struct seg6_local_lwt { + int action; + struct ipv6_sr_hdr *srh; + int table; + struct in_addr nh4; + struct in6_addr nh6; + int iif; + int oif; + struct bpf_lwt_prog bpf; + struct seg6_end_dt_info dt_info; + struct seg6_flavors_info flv_info; + struct pcpu_seg6_local_counters *pcpu_counters; + int headroom; + struct seg6_action_desc *desc; + long unsigned int parsed_optattrs; +}; + +struct seg6_action_desc { + int action; + long unsigned int attrs; + long unsigned int optattrs; + int (*input)(struct sk_buff *, struct seg6_local_lwt *); + int static_headroom; + struct seg6_local_lwtunnel_ops slwt_ops; +}; + +struct pcpu_seg6_local_counters { + u64_stats_t packets; + u64_stats_t bytes; + u64_stats_t errors; + struct u64_stats_sync syncp; +}; + +struct seg6_local_counters { + __u64 packets; + __u64 bytes; + __u64 errors; +}; + +enum seg6_local_pktinfo { + SEG6_LOCAL_PKTINFO_NOHDR = 0, + SEG6_LOCAL_PKTINFO_SL_ZERO = 1, + SEG6_LOCAL_PKTINFO_SL_ONE = 2, + SEG6_LOCAL_PKTINFO_SL_MORE = 3, + __SEG6_LOCAL_PKTINFO_MAX = 4, +}; + +enum seg6_local_flv_action { + SEG6_LOCAL_FLV_ACT_UNSPEC = 0, + SEG6_LOCAL_FLV_ACT_END = 1, + SEG6_LOCAL_FLV_ACT_PSP = 2, + SEG6_LOCAL_FLV_ACT_USP = 3, + SEG6_LOCAL_FLV_ACT_USD = 4, + __SEG6_LOCAL_FLV_ACT_MAX = 5, +}; + +struct seg6_action_param { + int (*parse)(struct nlattr **, struct seg6_local_lwt *, struct netlink_ext_ack *); + int (*put)(struct sk_buff *, struct seg6_local_lwt *); + int (*cmp)(struct seg6_local_lwt *, struct seg6_local_lwt *); + void (*destroy)(struct seg6_local_lwt *); +}; + +struct sockaddr_pkt { + short unsigned int spkt_family; + unsigned char spkt_device[14]; + __be16 spkt_protocol; +}; + +struct sockaddr_ll { + short unsigned int sll_family; + __be16 sll_protocol; + int sll_ifindex; + short unsigned int sll_hatype; + unsigned char sll_pkttype; + unsigned char sll_halen; + unsigned char sll_addr[8]; +}; + +struct tpacket_stats { + unsigned int tp_packets; + unsigned int tp_drops; +}; + +struct tpacket_stats_v3 { + unsigned int tp_packets; + unsigned int tp_drops; + unsigned int tp_freeze_q_cnt; +}; + +struct tpacket_rollover_stats { + __u64 tp_all; + __u64 tp_huge; + __u64 tp_failed; +}; + +union tpacket_stats_u { + struct tpacket_stats stats1; + struct tpacket_stats_v3 stats3; +}; + +struct tpacket_auxdata { + __u32 tp_status; + __u32 tp_len; + __u32 tp_snaplen; + __u16 tp_mac; + __u16 tp_net; + __u16 tp_vlan_tci; + __u16 tp_vlan_tpid; +}; + +struct tpacket_hdr { + long unsigned int tp_status; + unsigned int tp_len; + unsigned int tp_snaplen; + short unsigned int tp_mac; + short unsigned int tp_net; + unsigned int tp_sec; + unsigned int tp_usec; +}; + +struct tpacket2_hdr { + __u32 tp_status; + __u32 tp_len; + __u32 tp_snaplen; + __u16 tp_mac; + __u16 tp_net; + __u32 tp_sec; + __u32 tp_nsec; + __u16 tp_vlan_tci; + __u16 tp_vlan_tpid; + __u8 tp_padding[4]; +}; + +struct tpacket_hdr_variant1 { + __u32 tp_rxhash; + __u32 tp_vlan_tci; + __u16 tp_vlan_tpid; + __u16 tp_padding; +}; + +struct tpacket3_hdr { + __u32 tp_next_offset; + __u32 tp_sec; + __u32 tp_nsec; + __u32 tp_snaplen; + __u32 tp_len; + __u32 tp_status; + __u16 tp_mac; + __u16 tp_net; + union { + struct tpacket_hdr_variant1 hv1; + }; + __u8 tp_padding[8]; +}; + +struct tpacket_bd_ts { + unsigned int ts_sec; + union { + unsigned int ts_usec; + unsigned int ts_nsec; + }; +}; + +struct tpacket_hdr_v1 { + __u32 block_status; + __u32 num_pkts; + __u32 offset_to_first_pkt; + __u32 blk_len; + __u64 seq_num; + struct tpacket_bd_ts ts_first_pkt; + struct tpacket_bd_ts ts_last_pkt; +}; + +union tpacket_bd_header_u { + struct tpacket_hdr_v1 bh1; +}; + +struct tpacket_block_desc { + __u32 version; + __u32 offset_to_priv; + union tpacket_bd_header_u hdr; +}; + +enum tpacket_versions { + TPACKET_V1 = 0, + TPACKET_V2 = 1, + TPACKET_V3 = 2, +}; + +struct tpacket_req { + unsigned int tp_block_size; + unsigned int tp_block_nr; + unsigned int tp_frame_size; + unsigned int tp_frame_nr; +}; + +struct tpacket_req3 { + unsigned int tp_block_size; + unsigned int tp_block_nr; + unsigned int tp_frame_size; + unsigned int tp_frame_nr; + unsigned int tp_retire_blk_tov; + unsigned int tp_sizeof_priv; + unsigned int tp_feature_req_word; +}; + +union tpacket_req_u { + struct tpacket_req req; + struct tpacket_req3 req3; +}; + +struct fanout_args { + __u16 id; + __u16 type_flags; + __u32 max_num_members; +}; + +struct packet_mclist { + struct packet_mclist *next; + int ifindex; + int count; + short unsigned int type; + short unsigned int alen; + unsigned char addr[32]; + struct list_head remove_list; +}; + +struct pgv; + +struct tpacket_kbdq_core { + struct pgv *pkbdq; + unsigned int feature_req_word; + unsigned int hdrlen; + unsigned char reset_pending_on_curr_blk; + unsigned char delete_blk_timer; + short unsigned int kactive_blk_num; + short unsigned int blk_sizeof_priv; + short unsigned int last_kactive_blk_num; + char *pkblk_start; + char *pkblk_end; + int kblk_size; + unsigned int max_frame_len; + unsigned int knum_blocks; + uint64_t knxt_seq_num; + char *prev; + char *nxt_offset; + struct sk_buff *skb; + rwlock_t blk_fill_in_prog_lock; + short unsigned int retire_blk_tov; + short unsigned int version; + long unsigned int tov_in_jiffies; + struct timer_list retire_blk_timer; +}; + +struct pgv { + char *buffer; +}; + +struct packet_ring_buffer { + struct pgv *pg_vec; + unsigned int head; + unsigned int frames_per_block; + unsigned int frame_size; + unsigned int frame_max; + unsigned int pg_vec_order; + unsigned int pg_vec_pages; + unsigned int pg_vec_len; + unsigned int *pending_refcnt; + union { + long unsigned int *rx_owner_map; + struct tpacket_kbdq_core prb_bdqc; + }; +}; + +struct packet_fanout { + possible_net_t net; + unsigned int num_members; + u32 max_num_members; + u16 id; + u8 type; + u8 flags; + union { + atomic_t rr_cur; + struct bpf_prog *bpf_prog; + }; + struct list_head list; + spinlock_t lock; + refcount_t sk_ref; + long: 64; + struct packet_type prot_hook; + struct sock *arr[0]; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +struct packet_rollover { + int sock; + atomic_long_t num; + atomic_long_t num_huge; + atomic_long_t num_failed; + long: 64; + long: 64; + long: 64; + long: 64; + u32 history[16]; +}; + +struct packet_sock { + struct sock sk; + struct packet_fanout *fanout; + union tpacket_stats_u stats; + struct packet_ring_buffer rx_ring; + struct packet_ring_buffer tx_ring; + int copy_thresh; + spinlock_t bind_lock; + struct mutex pg_vec_lock; + long unsigned int flags; + int ifindex; + u8 vnet_hdr_sz; + __be16 num; + struct packet_rollover *rollover; + struct packet_mclist *mclist; + atomic_long_t mapped; + enum tpacket_versions tp_version; + unsigned int tp_hdrlen; + unsigned int tp_reserve; + unsigned int tp_tstamp; + struct completion skb_completion; + struct net_device *cached_dev; + struct packet_type prot_hook; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + atomic_t tp_drops; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; + long: 64; +}; + +enum packet_sock_flags { + PACKET_SOCK_ORIGDEV = 0, + PACKET_SOCK_AUXDATA = 1, + PACKET_SOCK_TX_HAS_OFF = 2, + PACKET_SOCK_TP_LOSS = 3, + PACKET_SOCK_RUNNING = 4, + PACKET_SOCK_PRESSURE = 5, + PACKET_SOCK_QDISC_BYPASS = 6, +}; + +struct packet_mreq_max { + int mr_ifindex; + short unsigned int mr_type; + short unsigned int mr_alen; + unsigned char mr_address[32]; +}; + +union tpacket_uhdr { + struct tpacket_hdr *h1; + struct tpacket2_hdr *h2; + struct tpacket3_hdr *h3; + void *raw; +}; + +struct packet_skb_cb { + union { + struct sockaddr_pkt pkt; + union { + unsigned int origlen; + struct sockaddr_ll ll; + }; + } sa; +}; + +enum devlink_attr_selftest_result { + DEVLINK_ATTR_SELFTEST_RESULT_UNSPEC = 0, + DEVLINK_ATTR_SELFTEST_RESULT = 1, + DEVLINK_ATTR_SELFTEST_RESULT_ID = 2, + DEVLINK_ATTR_SELFTEST_RESULT_STATUS = 3, + __DEVLINK_ATTR_SELFTEST_RESULT_MAX = 4, + DEVLINK_ATTR_SELFTEST_RESULT_MAX = 3, +}; + +struct devlink_flash_notify { + const char *status_msg; + const char *component; + long unsigned int done; + long unsigned int total; + long unsigned int timeout; +}; + +enum devlink_info_version_type { + DEVLINK_INFO_VERSION_TYPE_NONE = 0, + DEVLINK_INFO_VERSION_TYPE_COMPONENT = 1, +}; + +struct devlink_info_req { + struct sk_buff *msg; + void (*version_cb)(const char *, enum devlink_info_version_type, void *); + void *version_cb_priv; +}; + +struct devlink_reload_combination { + enum devlink_reload_action action; + enum devlink_reload_limit limit; +}; + +struct devlink_flash_component_lookup_ctx { + const char *lookup_name; + bool lookup_name_found; +}; + +enum devlink_resource_unit { + DEVLINK_RESOURCE_UNIT_ENTRY = 0, +}; + +struct devlink_resource_size_params { + u64 size_min; + u64 size_max; + u64 size_granularity; + enum devlink_resource_unit unit; +}; + +typedef u64 devlink_resource_occ_get_t(void *); + +struct devlink_resource { + const char *name; + u64 id; + u64 size; + u64 size_new; + bool size_valid; + struct devlink_resource *parent; + struct devlink_resource_size_params size_params; + struct list_head list; + struct list_head resource_list; + devlink_resource_occ_get_t *occ_get; + void *occ_get_priv; +}; + +enum { + DEVLINK_ATTR_STATS_RX_PACKETS = 0, + DEVLINK_ATTR_STATS_RX_BYTES = 1, + DEVLINK_ATTR_STATS_RX_DROPPED = 2, + __DEVLINK_ATTR_STATS_MAX = 3, + DEVLINK_ATTR_STATS_MAX = 2, +}; + +enum { + DEVLINK_ATTR_TRAP_METADATA_TYPE_IN_PORT = 0, + DEVLINK_ATTR_TRAP_METADATA_TYPE_FA_COOKIE = 1, +}; + +enum devlink_trap_generic_id { + DEVLINK_TRAP_GENERIC_ID_SMAC_MC = 0, + DEVLINK_TRAP_GENERIC_ID_VLAN_TAG_MISMATCH = 1, + DEVLINK_TRAP_GENERIC_ID_INGRESS_VLAN_FILTER = 2, + DEVLINK_TRAP_GENERIC_ID_INGRESS_STP_FILTER = 3, + DEVLINK_TRAP_GENERIC_ID_EMPTY_TX_LIST = 4, + DEVLINK_TRAP_GENERIC_ID_PORT_LOOPBACK_FILTER = 5, + DEVLINK_TRAP_GENERIC_ID_BLACKHOLE_ROUTE = 6, + DEVLINK_TRAP_GENERIC_ID_TTL_ERROR = 7, + DEVLINK_TRAP_GENERIC_ID_TAIL_DROP = 8, + DEVLINK_TRAP_GENERIC_ID_NON_IP_PACKET = 9, + DEVLINK_TRAP_GENERIC_ID_UC_DIP_MC_DMAC = 10, + DEVLINK_TRAP_GENERIC_ID_DIP_LB = 11, + DEVLINK_TRAP_GENERIC_ID_SIP_MC = 12, + DEVLINK_TRAP_GENERIC_ID_SIP_LB = 13, + DEVLINK_TRAP_GENERIC_ID_CORRUPTED_IP_HDR = 14, + DEVLINK_TRAP_GENERIC_ID_IPV4_SIP_BC = 15, + DEVLINK_TRAP_GENERIC_ID_IPV6_MC_DIP_RESERVED_SCOPE = 16, + DEVLINK_TRAP_GENERIC_ID_IPV6_MC_DIP_INTERFACE_LOCAL_SCOPE = 17, + DEVLINK_TRAP_GENERIC_ID_MTU_ERROR = 18, + DEVLINK_TRAP_GENERIC_ID_UNRESOLVED_NEIGH = 19, + DEVLINK_TRAP_GENERIC_ID_RPF = 20, + DEVLINK_TRAP_GENERIC_ID_REJECT_ROUTE = 21, + DEVLINK_TRAP_GENERIC_ID_IPV4_LPM_UNICAST_MISS = 22, + DEVLINK_TRAP_GENERIC_ID_IPV6_LPM_UNICAST_MISS = 23, + DEVLINK_TRAP_GENERIC_ID_NON_ROUTABLE = 24, + DEVLINK_TRAP_GENERIC_ID_DECAP_ERROR = 25, + DEVLINK_TRAP_GENERIC_ID_OVERLAY_SMAC_MC = 26, + DEVLINK_TRAP_GENERIC_ID_INGRESS_FLOW_ACTION_DROP = 27, + DEVLINK_TRAP_GENERIC_ID_EGRESS_FLOW_ACTION_DROP = 28, + DEVLINK_TRAP_GENERIC_ID_STP = 29, + DEVLINK_TRAP_GENERIC_ID_LACP = 30, + DEVLINK_TRAP_GENERIC_ID_LLDP = 31, + DEVLINK_TRAP_GENERIC_ID_IGMP_QUERY = 32, + DEVLINK_TRAP_GENERIC_ID_IGMP_V1_REPORT = 33, + DEVLINK_TRAP_GENERIC_ID_IGMP_V2_REPORT = 34, + DEVLINK_TRAP_GENERIC_ID_IGMP_V3_REPORT = 35, + DEVLINK_TRAP_GENERIC_ID_IGMP_V2_LEAVE = 36, + DEVLINK_TRAP_GENERIC_ID_MLD_QUERY = 37, + DEVLINK_TRAP_GENERIC_ID_MLD_V1_REPORT = 38, + DEVLINK_TRAP_GENERIC_ID_MLD_V2_REPORT = 39, + DEVLINK_TRAP_GENERIC_ID_MLD_V1_DONE = 40, + DEVLINK_TRAP_GENERIC_ID_IPV4_DHCP = 41, + DEVLINK_TRAP_GENERIC_ID_IPV6_DHCP = 42, + DEVLINK_TRAP_GENERIC_ID_ARP_REQUEST = 43, + DEVLINK_TRAP_GENERIC_ID_ARP_RESPONSE = 44, + DEVLINK_TRAP_GENERIC_ID_ARP_OVERLAY = 45, + DEVLINK_TRAP_GENERIC_ID_IPV6_NEIGH_SOLICIT = 46, + DEVLINK_TRAP_GENERIC_ID_IPV6_NEIGH_ADVERT = 47, + DEVLINK_TRAP_GENERIC_ID_IPV4_BFD = 48, + DEVLINK_TRAP_GENERIC_ID_IPV6_BFD = 49, + DEVLINK_TRAP_GENERIC_ID_IPV4_OSPF = 50, + DEVLINK_TRAP_GENERIC_ID_IPV6_OSPF = 51, + DEVLINK_TRAP_GENERIC_ID_IPV4_BGP = 52, + DEVLINK_TRAP_GENERIC_ID_IPV6_BGP = 53, + DEVLINK_TRAP_GENERIC_ID_IPV4_VRRP = 54, + DEVLINK_TRAP_GENERIC_ID_IPV6_VRRP = 55, + DEVLINK_TRAP_GENERIC_ID_IPV4_PIM = 56, + DEVLINK_TRAP_GENERIC_ID_IPV6_PIM = 57, + DEVLINK_TRAP_GENERIC_ID_UC_LB = 58, + DEVLINK_TRAP_GENERIC_ID_LOCAL_ROUTE = 59, + DEVLINK_TRAP_GENERIC_ID_EXTERNAL_ROUTE = 60, + DEVLINK_TRAP_GENERIC_ID_IPV6_UC_DIP_LINK_LOCAL_SCOPE = 61, + DEVLINK_TRAP_GENERIC_ID_IPV6_DIP_ALL_NODES = 62, + DEVLINK_TRAP_GENERIC_ID_IPV6_DIP_ALL_ROUTERS = 63, + DEVLINK_TRAP_GENERIC_ID_IPV6_ROUTER_SOLICIT = 64, + DEVLINK_TRAP_GENERIC_ID_IPV6_ROUTER_ADVERT = 65, + DEVLINK_TRAP_GENERIC_ID_IPV6_REDIRECT = 66, + DEVLINK_TRAP_GENERIC_ID_IPV4_ROUTER_ALERT = 67, + DEVLINK_TRAP_GENERIC_ID_IPV6_ROUTER_ALERT = 68, + DEVLINK_TRAP_GENERIC_ID_PTP_EVENT = 69, + DEVLINK_TRAP_GENERIC_ID_PTP_GENERAL = 70, + DEVLINK_TRAP_GENERIC_ID_FLOW_ACTION_SAMPLE = 71, + DEVLINK_TRAP_GENERIC_ID_FLOW_ACTION_TRAP = 72, + DEVLINK_TRAP_GENERIC_ID_EARLY_DROP = 73, + DEVLINK_TRAP_GENERIC_ID_VXLAN_PARSING = 74, + DEVLINK_TRAP_GENERIC_ID_LLC_SNAP_PARSING = 75, + DEVLINK_TRAP_GENERIC_ID_VLAN_PARSING = 76, + DEVLINK_TRAP_GENERIC_ID_PPPOE_PPP_PARSING = 77, + DEVLINK_TRAP_GENERIC_ID_MPLS_PARSING = 78, + DEVLINK_TRAP_GENERIC_ID_ARP_PARSING = 79, + DEVLINK_TRAP_GENERIC_ID_IP_1_PARSING = 80, + DEVLINK_TRAP_GENERIC_ID_IP_N_PARSING = 81, + DEVLINK_TRAP_GENERIC_ID_GRE_PARSING = 82, + DEVLINK_TRAP_GENERIC_ID_UDP_PARSING = 83, + DEVLINK_TRAP_GENERIC_ID_TCP_PARSING = 84, + DEVLINK_TRAP_GENERIC_ID_IPSEC_PARSING = 85, + DEVLINK_TRAP_GENERIC_ID_SCTP_PARSING = 86, + DEVLINK_TRAP_GENERIC_ID_DCCP_PARSING = 87, + DEVLINK_TRAP_GENERIC_ID_GTP_PARSING = 88, + DEVLINK_TRAP_GENERIC_ID_ESP_PARSING = 89, + DEVLINK_TRAP_GENERIC_ID_BLACKHOLE_NEXTHOP = 90, + DEVLINK_TRAP_GENERIC_ID_DMAC_FILTER = 91, + DEVLINK_TRAP_GENERIC_ID_EAPOL = 92, + DEVLINK_TRAP_GENERIC_ID_LOCKED_PORT = 93, + __DEVLINK_TRAP_GENERIC_ID_MAX = 94, + DEVLINK_TRAP_GENERIC_ID_MAX = 93, +}; + +enum devlink_trap_group_generic_id { + DEVLINK_TRAP_GROUP_GENERIC_ID_L2_DROPS = 0, + DEVLINK_TRAP_GROUP_GENERIC_ID_L3_DROPS = 1, + DEVLINK_TRAP_GROUP_GENERIC_ID_L3_EXCEPTIONS = 2, + DEVLINK_TRAP_GROUP_GENERIC_ID_BUFFER_DROPS = 3, + DEVLINK_TRAP_GROUP_GENERIC_ID_TUNNEL_DROPS = 4, + DEVLINK_TRAP_GROUP_GENERIC_ID_ACL_DROPS = 5, + DEVLINK_TRAP_GROUP_GENERIC_ID_STP = 6, + DEVLINK_TRAP_GROUP_GENERIC_ID_LACP = 7, + DEVLINK_TRAP_GROUP_GENERIC_ID_LLDP = 8, + DEVLINK_TRAP_GROUP_GENERIC_ID_MC_SNOOPING = 9, + DEVLINK_TRAP_GROUP_GENERIC_ID_DHCP = 10, + DEVLINK_TRAP_GROUP_GENERIC_ID_NEIGH_DISCOVERY = 11, + DEVLINK_TRAP_GROUP_GENERIC_ID_BFD = 12, + DEVLINK_TRAP_GROUP_GENERIC_ID_OSPF = 13, + DEVLINK_TRAP_GROUP_GENERIC_ID_BGP = 14, + DEVLINK_TRAP_GROUP_GENERIC_ID_VRRP = 15, + DEVLINK_TRAP_GROUP_GENERIC_ID_PIM = 16, + DEVLINK_TRAP_GROUP_GENERIC_ID_UC_LB = 17, + DEVLINK_TRAP_GROUP_GENERIC_ID_LOCAL_DELIVERY = 18, + DEVLINK_TRAP_GROUP_GENERIC_ID_EXTERNAL_DELIVERY = 19, + DEVLINK_TRAP_GROUP_GENERIC_ID_IPV6 = 20, + DEVLINK_TRAP_GROUP_GENERIC_ID_PTP_EVENT = 21, + DEVLINK_TRAP_GROUP_GENERIC_ID_PTP_GENERAL = 22, + DEVLINK_TRAP_GROUP_GENERIC_ID_ACL_SAMPLE = 23, + DEVLINK_TRAP_GROUP_GENERIC_ID_ACL_TRAP = 24, + DEVLINK_TRAP_GROUP_GENERIC_ID_PARSER_ERROR_DROPS = 25, + DEVLINK_TRAP_GROUP_GENERIC_ID_EAPOL = 26, + __DEVLINK_TRAP_GROUP_GENERIC_ID_MAX = 27, + DEVLINK_TRAP_GROUP_GENERIC_ID_MAX = 26, +}; + +struct devlink_stats { + u64_stats_t rx_bytes; + u64_stats_t rx_packets; + struct u64_stats_sync syncp; +}; + +struct devlink_trap_policer_item { + const struct devlink_trap_policer *policer; + u64 rate; + u64 burst; + struct list_head list; +}; + +struct devlink_trap_group_item { + const struct devlink_trap_group *group; + struct devlink_trap_policer_item *policer_item; + struct list_head list; + struct devlink_stats *stats; +}; + +struct devlink_trap_item { + const struct devlink_trap *trap; + struct devlink_trap_group_item *group_item; + struct list_head list; + enum devlink_trap_action action; + struct devlink_stats *stats; + void *priv; +}; + +enum { + NLBL_UNLABEL_C_UNSPEC = 0, + NLBL_UNLABEL_C_ACCEPT = 1, + NLBL_UNLABEL_C_LIST = 2, + NLBL_UNLABEL_C_STATICADD = 3, + NLBL_UNLABEL_C_STATICREMOVE = 4, + NLBL_UNLABEL_C_STATICLIST = 5, + NLBL_UNLABEL_C_STATICADDDEF = 6, + NLBL_UNLABEL_C_STATICREMOVEDEF = 7, + NLBL_UNLABEL_C_STATICLISTDEF = 8, + __NLBL_UNLABEL_C_MAX = 9, +}; + +enum { + NLBL_UNLABEL_A_UNSPEC = 0, + NLBL_UNLABEL_A_ACPTFLG = 1, + NLBL_UNLABEL_A_IPV6ADDR = 2, + NLBL_UNLABEL_A_IPV6MASK = 3, + NLBL_UNLABEL_A_IPV4ADDR = 4, + NLBL_UNLABEL_A_IPV4MASK = 5, + NLBL_UNLABEL_A_IFACE = 6, + NLBL_UNLABEL_A_SECCTX = 7, + __NLBL_UNLABEL_A_MAX = 8, +}; + +struct netlbl_unlhsh_tbl { + struct list_head *tbl; + u32 size; +}; + +struct netlbl_unlhsh_addr4 { + u32 secid; + struct netlbl_af4list list; + struct callback_head rcu; +}; + +struct netlbl_unlhsh_addr6 { + u32 secid; + struct netlbl_af6list list; + struct callback_head rcu; +}; + +struct netlbl_unlhsh_iface { + int ifindex; + struct list_head addr4_list; + struct list_head addr6_list; + u32 valid; + struct list_head list; + struct callback_head rcu; +}; + +struct netlbl_unlhsh_walk_arg { + struct netlink_callback *nl_cb; + struct sk_buff *skb; + u32 seq; +}; + +enum rfkill_input_master_mode { + RFKILL_INPUT_MASTER_UNLOCK = 0, + RFKILL_INPUT_MASTER_RESTORE = 1, + RFKILL_INPUT_MASTER_UNBLOCKALL = 2, + NUM_RFKILL_INPUT_MASTER_MODES = 3, +}; + +enum rfkill_sched_op { + RFKILL_GLOBAL_OP_EPO = 0, + RFKILL_GLOBAL_OP_RESTORE = 1, + RFKILL_GLOBAL_OP_UNLOCK = 2, + RFKILL_GLOBAL_OP_UNBLOCK = 3, +}; + +enum dns_payload_content_type { + DNS_PAYLOAD_IS_SERVER_LIST = 0, +}; + +enum dns_lookup_status { + DNS_LOOKUP_NOT_DONE = 0, + DNS_LOOKUP_GOOD = 1, + DNS_LOOKUP_GOOD_WITH_BAD = 2, + DNS_LOOKUP_BAD = 3, + DNS_LOOKUP_GOT_NOT_FOUND = 4, + DNS_LOOKUP_GOT_LOCAL_FAILURE = 5, + DNS_LOOKUP_GOT_TEMP_FAILURE = 6, + DNS_LOOKUP_GOT_NS_FAILURE = 7, + NR__dns_lookup_status = 8, +}; + +struct dns_payload_header { + __u8 zero; + __u8 content; + __u8 version; +}; + +struct dns_server_list_v1_header { + struct dns_payload_header hdr; + __u8 source; + __u8 status; + __u8 nr_servers; +}; + +enum switchdev_attr_id { + SWITCHDEV_ATTR_ID_UNDEFINED = 0, + SWITCHDEV_ATTR_ID_PORT_STP_STATE = 1, + SWITCHDEV_ATTR_ID_PORT_MST_STATE = 2, + SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS = 3, + SWITCHDEV_ATTR_ID_PORT_PRE_BRIDGE_FLAGS = 4, + SWITCHDEV_ATTR_ID_PORT_MROUTER = 5, + SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME = 6, + SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING = 7, + SWITCHDEV_ATTR_ID_BRIDGE_VLAN_PROTOCOL = 8, + SWITCHDEV_ATTR_ID_BRIDGE_MC_DISABLED = 9, + SWITCHDEV_ATTR_ID_BRIDGE_MROUTER = 10, + SWITCHDEV_ATTR_ID_BRIDGE_MST = 11, + SWITCHDEV_ATTR_ID_MRP_PORT_ROLE = 12, + SWITCHDEV_ATTR_ID_VLAN_MSTI = 13, +}; + +struct switchdev_attr { + struct net_device *orig_dev; + enum switchdev_attr_id id; + u32 flags; + void *complete_priv; + void (*complete)(struct net_device *, int, void *); + union { + u8 stp_state; + struct switchdev_mst_state mst_state; + struct switchdev_brport_flags brport_flags; + bool mrouter; + clock_t ageing_time; + bool vlan_filtering; + u16 vlan_protocol; + bool mst; + bool mc_disabled; + u8 mrp_port_role; + struct switchdev_vlan_msti vlan_msti; + } u; +}; + +struct switchdev_brport { + struct net_device *dev; + const void *ctx; + struct notifier_block *atomic_nb; + struct notifier_block *blocking_nb; + bool tx_fwd_offload; +}; + +struct switchdev_notifier_fdb_info { + struct switchdev_notifier_info info; + const unsigned char *addr; + u16 vid; + u8 added_by_user: 1; + u8 is_local: 1; + u8 locked: 1; + u8 offloaded: 1; +}; + +struct switchdev_notifier_port_obj_info { + struct switchdev_notifier_info info; + const struct switchdev_obj *obj; + bool handled; +}; + +struct switchdev_notifier_port_attr_info { + struct switchdev_notifier_info info; + const struct switchdev_attr *attr; + bool handled; +}; + +struct switchdev_notifier_brport_info { + struct switchdev_notifier_info info; + const struct switchdev_brport brport; +}; + +typedef void switchdev_deferred_func_t(struct net_device *, const void *); + +struct switchdev_deferred_item { + struct list_head list; + struct net_device *dev; + netdevice_tracker dev_tracker; + switchdev_deferred_func_t *func; + long unsigned int data[0]; +}; + +struct switchdev_nested_priv { + bool (*check_cb)(const struct net_device *); + bool (*foreign_dev_check_cb)(const struct net_device *, const struct net_device *); + const struct net_device *dev; + struct net_device *lower_dev; +}; + +struct ncsi_rsp_pkt_hdr { + struct ncsi_pkt_hdr common; + __be16 code; + __be16 reason; +}; + +struct ncsi_rsp_pkt { + struct ncsi_rsp_pkt_hdr rsp; + __be32 checksum; + unsigned char pad[22]; +}; + +struct ncsi_rsp_oem_pkt { + struct ncsi_rsp_pkt_hdr rsp; + __be32 mfr_id; + unsigned char data[0]; +}; + +struct ncsi_rsp_oem_mlx_pkt { + unsigned char cmd_rev; + unsigned char cmd; + unsigned char param; + unsigned char optional; + unsigned char data[0]; +}; + +struct ncsi_rsp_oem_bcm_pkt { + unsigned char ver; + unsigned char type; + __be16 len; + unsigned char data[0]; +}; + +struct ncsi_rsp_oem_intel_pkt { + unsigned char cmd; + unsigned char data[0]; +}; + +struct ncsi_rsp_gls_pkt { + struct ncsi_rsp_pkt_hdr rsp; + __be32 status; + __be32 other; + __be32 oem_status; + __be32 checksum; + unsigned char pad[10]; +}; + +struct ncsi_rsp_gvi_pkt { + struct ncsi_rsp_pkt_hdr rsp; + unsigned char major; + unsigned char minor; + unsigned char update; + unsigned char alpha1; + unsigned char reserved[3]; + unsigned char alpha2; + unsigned char fw_name[12]; + __be32 fw_version; + __be16 pci_ids[4]; + __be32 mf_id; + __be32 checksum; +}; + +struct ncsi_rsp_gc_pkt { + struct ncsi_rsp_pkt_hdr rsp; + __be32 cap; + __be32 bc_cap; + __be32 mc_cap; + __be32 buf_cap; + __be32 aen_cap; + unsigned char vlan_cnt; + unsigned char mixed_cnt; + unsigned char mc_cnt; + unsigned char uc_cnt; + unsigned char reserved[2]; + unsigned char vlan_mode; + unsigned char channel_cnt; + __be32 checksum; +}; + +struct ncsi_rsp_gp_pkt { + struct ncsi_rsp_pkt_hdr rsp; + unsigned char mac_cnt; + unsigned char reserved[2]; + unsigned char mac_enable; + unsigned char vlan_cnt; + unsigned char reserved1; + __be16 vlan_enable; + __be32 link_mode; + __be32 bc_mode; + __be32 valid_modes; + unsigned char vlan_mode; + unsigned char fc_mode; + unsigned char reserved2[2]; + __be32 aen_mode; + unsigned char mac[6]; + __be16 vlan; + __be32 checksum; +}; + +struct ncsi_rsp_gcps_pkt { + struct ncsi_rsp_pkt_hdr rsp; + __be64 cnt; + __be64 rx_bytes; + __be64 tx_bytes; + __be64 rx_uc_pkts; + __be64 rx_mc_pkts; + __be64 rx_bc_pkts; + __be64 tx_uc_pkts; + __be64 tx_mc_pkts; + __be64 tx_bc_pkts; + __be32 fcs_err; + __be32 align_err; + __be32 false_carrier; + __be32 runt_pkts; + __be32 jabber_pkts; + __be32 rx_pause_xon; + __be32 rx_pause_xoff; + __be32 tx_pause_xon; + __be32 tx_pause_xoff; + __be32 tx_s_collision; + __be32 tx_m_collision; + __be32 l_collision; + __be32 e_collision; + __be32 rx_ctl_frames; + __be32 rx_64_frames; + __be32 rx_127_frames; + __be32 rx_255_frames; + __be32 rx_511_frames; + __be32 rx_1023_frames; + __be32 rx_1522_frames; + __be32 rx_9022_frames; + __be32 tx_64_frames; + __be32 tx_127_frames; + __be32 tx_255_frames; + __be32 tx_511_frames; + __be32 tx_1023_frames; + __be32 tx_1522_frames; + __be32 tx_9022_frames; + __be64 rx_valid_bytes; + __be32 rx_runt_pkts; + __be32 rx_jabber_pkts; + __be32 checksum; +} __attribute__((packed)); + +struct ncsi_rsp_gns_pkt { + struct ncsi_rsp_pkt_hdr rsp; + __be32 rx_cmds; + __be32 dropped_cmds; + __be32 cmd_type_errs; + __be32 cmd_csum_errs; + __be32 rx_pkts; + __be32 tx_pkts; + __be32 tx_aen_pkts; + __be32 checksum; +}; + +struct ncsi_rsp_gnpts_pkt { + struct ncsi_rsp_pkt_hdr rsp; + __be32 tx_pkts; + __be32 tx_dropped; + __be32 tx_channel_err; + __be32 tx_us_err; + __be32 rx_pkts; + __be32 rx_dropped; + __be32 rx_channel_err; + __be32 rx_us_err; + __be32 rx_os_err; + __be32 checksum; +}; + +struct ncsi_rsp_gps_pkt { + struct ncsi_rsp_pkt_hdr rsp; + __be32 status; + __be32 checksum; +}; + +struct ncsi_rsp_gpuuid_pkt { + struct ncsi_rsp_pkt_hdr rsp; + unsigned char uuid[16]; + __be32 checksum; +}; + +struct ncsi_rsp_gmcma_pkt { + struct ncsi_rsp_pkt_hdr rsp; + unsigned char address_count; + unsigned char reserved[3]; + unsigned char addresses[0]; +}; + +struct ncsi_rsp_oem_handler { + unsigned int mfr_id; + int (*handler)(struct ncsi_request *); +}; + +struct ncsi_rsp_handler { + unsigned char type; + int payload; + int (*handler)(struct ncsi_request *); +}; + +struct sockaddr_xdp { + __u16 sxdp_family; + __u16 sxdp_flags; + __u32 sxdp_ifindex; + __u32 sxdp_queue_id; + __u32 sxdp_shared_umem_fd; +}; + +struct xdp_ring_offset { + __u64 producer; + __u64 consumer; + __u64 desc; + __u64 flags; +}; + +struct xdp_mmap_offsets { + struct xdp_ring_offset rx; + struct xdp_ring_offset tx; + struct xdp_ring_offset fr; + struct xdp_ring_offset cr; +}; + +struct xdp_statistics { + __u64 rx_dropped; + __u64 rx_invalid_descs; + __u64 tx_invalid_descs; + __u64 rx_ring_full; + __u64 rx_fill_ring_empty_descs; + __u64 tx_ring_empty_descs; +}; + +struct xdp_options { + __u32 flags; +}; + +struct xdp_ring_offset_v1 { + __u64 producer; + __u64 consumer; + __u64 desc; +}; + +struct xdp_mmap_offsets_v1 { + struct xdp_ring_offset_v1 rx; + struct xdp_ring_offset_v1 tx; + struct xdp_ring_offset_v1 fr; + struct xdp_ring_offset_v1 cr; +}; + +struct parsed_desc { + u32 mb; + u32 valid; +}; + +struct xsk_addrs { + u32 num_descs; + u64 addrs[18]; +}; + +struct trace_event_raw_mptcp_subflow_get_send { + struct trace_entry ent; + bool active; + bool free; + u32 snd_wnd; + u32 pace; + u8 backup; + u64 ratio; + char __data[0]; +}; + +struct trace_event_raw_mptcp_dump_mpext { + struct trace_entry ent; + u64 data_ack; + u64 data_seq; + u32 subflow_seq; + u16 data_len; + u16 csum; + u8 use_map; + u8 dsn64; + u8 data_fin; + u8 use_ack; + u8 ack64; + u8 mpc_map; + u8 frozen; + u8 reset_transient; + u8 reset_reason; + u8 csum_reqd; + u8 infinite_map; + char __data[0]; +}; + +struct trace_event_raw_ack_update_msk { + struct trace_entry ent; + u64 data_ack; + u64 old_snd_una; + u64 new_snd_una; + u64 new_wnd_end; + u64 msk_wnd_end; + char __data[0]; +}; + +struct trace_event_raw_subflow_check_data_avail { + struct trace_entry ent; + u8 status; + const void *skb; + char __data[0]; +}; + +struct trace_event_data_offsets_mptcp_subflow_get_send {}; + +struct trace_event_data_offsets_mptcp_dump_mpext {}; + +struct trace_event_data_offsets_ack_update_msk {}; + +struct trace_event_data_offsets_subflow_check_data_avail {}; + +typedef void (*btf_trace_mptcp_subflow_get_send)(void *, struct mptcp_subflow_context *); + +typedef void (*btf_trace_mptcp_sendmsg_frag)(void *, struct mptcp_ext *); + +typedef void (*btf_trace_get_mapping_status)(void *, struct mptcp_ext *); + +typedef void (*btf_trace_ack_update_msk)(void *, u64, u64, u64, u64, u64); + +typedef void (*btf_trace_subflow_check_data_avail)(void *, __u8, struct sk_buff *); + +struct mptcp6_sock { + struct mptcp_sock msk; + struct ipv6_pinfo np; +}; + +enum { + MPTCP_CMSG_TS = 1, + MPTCP_CMSG_INQ = 2, +}; + +struct mptcp_sendmsg_info { + int mss_now; + int size_goal; + u16 limit; + u16 sent; + unsigned int flags; + bool data_lock_held; +}; + +struct subflow_send_info { + struct sock *ssk; + u64 linger_time; +}; + +struct token_bucket { + spinlock_t lock; + int chain_len; + struct hlist_nulls_head req_chain; + struct hlist_nulls_head msk_chain; +}; + +enum { + INET_ULP_INFO_UNSPEC = 0, + INET_ULP_INFO_NAME = 1, + INET_ULP_INFO_TLS = 2, + INET_ULP_INFO_MPTCP = 3, + __INET_ULP_INFO_MAX = 4, +}; + +enum { + MPTCP_SUBFLOW_ATTR_UNSPEC = 0, + MPTCP_SUBFLOW_ATTR_TOKEN_REM = 1, + MPTCP_SUBFLOW_ATTR_TOKEN_LOC = 2, + MPTCP_SUBFLOW_ATTR_RELWRITE_SEQ = 3, + MPTCP_SUBFLOW_ATTR_MAP_SEQ = 4, + MPTCP_SUBFLOW_ATTR_MAP_SFSEQ = 5, + MPTCP_SUBFLOW_ATTR_SSN_OFFSET = 6, + MPTCP_SUBFLOW_ATTR_MAP_DATALEN = 7, + MPTCP_SUBFLOW_ATTR_FLAGS = 8, + MPTCP_SUBFLOW_ATTR_ID_REM = 9, + MPTCP_SUBFLOW_ATTR_ID_LOC = 10, + MPTCP_SUBFLOW_ATTR_PAD = 11, + __MPTCP_SUBFLOW_ATTR_MAX = 12, +}; + +struct id_bitmap { + long unsigned int map[4]; +}; + +struct mctp_fq_addr { + unsigned int net; + mctp_eid_t eid; +}; + +struct mctp_route { + mctp_eid_t min; + mctp_eid_t max; + unsigned char type; + unsigned int mtu; + enum { + MCTP_ROUTE_DIRECT = 0, + MCTP_ROUTE_GATEWAY = 1, + } dst_type; + union { + struct mctp_dev *dev; + struct mctp_fq_addr gateway; + }; + int (*output)(struct mctp_dst *, struct sk_buff *); + struct list_head list; + refcount_t refs; + struct callback_head rcu; +}; + +struct net_shaper_hierarchy { + struct xarray shapers; +}; + +struct net_shaper_nl_ctx { + struct net_shaper_binding binding; + netdevice_tracker dev_tracker; + long unsigned int start_index; +}; + +struct acpi_table_mcfg { + struct acpi_table_header header; + u8 reserved[8]; +}; + +struct acpi_mcfg_allocation { + u64 address; + u16 pci_segment; + u8 start_bus_number; + u8 end_bus_number; + u32 reserved; +}; + +struct pci_mmcfg_hostbridge_probe { + u32 bus; + u32 devfn; + u32 vendor; + u32 device; + const char * (*probe)(void); +}; + +typedef bool (*check_reserved_t)(u64, u64, enum e820_type); + +enum pci_bf_sort_state { + pci_bf_sort_default = 0, + pci_force_nobf = 1, + pci_force_bf = 2, + pci_dmi_bf = 3, +}; + +struct pci_setup_rom { + struct setup_data data; + uint16_t vendor; + uint16_t devid; + uint64_t pcilen; + long unsigned int segment; + long unsigned int bus; + long unsigned int device; + long unsigned int function; + uint8_t romdata[0]; +}; + +struct group_data { + int limit[21]; + int base[20]; + int permute[258]; + int minLen; + int maxLen; +}; + +struct bunzip_data { + int writeCopies; + int writePos; + int writeRunCountdown; + int writeCount; + int writeCurrent; + long int (*fill)(void *, long unsigned int); + long int inbufCount; + long int inbufPos; + unsigned char *inbuf; + unsigned int inbufBitCount; + unsigned int inbufBits; + unsigned int crc32Table[256]; + unsigned int headerCRC; + unsigned int totalCRC; + unsigned int writeCRC; + unsigned int *dbuf; + unsigned int dbufSize; + unsigned char selectors[32768]; + struct group_data groups[6]; + int io_error; + int byteCount[256]; + unsigned char symToByte[256]; + unsigned char mtfSymbol[256]; +}; + +struct rc { + long int (*fill)(void *, long unsigned int); + uint8_t *ptr; + uint8_t *buffer; + uint8_t *buffer_end; + long int buffer_size; + uint32_t code; + uint32_t range; + uint32_t bound; + void (*error)(char *); +}; + +struct lzma_header { + uint8_t pos; + uint32_t dict_size; + uint64_t dst_size; +} __attribute__((packed)); + +struct writer { + uint8_t *buffer; + uint8_t previous_byte; + size_t buffer_pos; + int bufsize; + size_t global_pos; + long int (*flush)(void *, long unsigned int); + struct lzma_header *header; +}; + +struct cstate___2 { + int state; + uint32_t rep0; + uint32_t rep1; + uint32_t rep2; + uint32_t rep3; +}; + +#ifndef BPF_NO_PRESERVE_ACCESS_INDEX +#pragma clang attribute pop +#endif + +#endif /* __VMLINUX_H__ */ From e5875d0d1ea757af9c9d61958544d05378dbb33f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 11:16:19 +0800 Subject: [PATCH 19/33] fix(ebpf): correct vmlinux.h/bpf2go paths in the Dockerfile builder MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit WORKDIR is /build/components/execd, so the headers live under pkg/ebpf/prog/ and the source at pkg/ebpf/prog/audit.bpf.c — the case statement and bpf2go invocation must use those paths (the Makefile cds into pkg/ebpf first, which is why its relative paths were fine). --- components/execd/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/components/execd/Dockerfile b/components/execd/Dockerfile index 491166913..c42d3e399 100644 --- a/components/execd/Dockerfile +++ b/components/execd/Dockerfile @@ -126,18 +126,18 @@ WORKDIR /build/components/execd # TARGETARCH (bpf2go embeds it into audit_bpf_.go, picked up by the # Go build tags). Requires clang's bpf target only — no host kernel BTF. RUN case "${TARGETARCH}" in \ - amd64) VMLINUX=prog/vmlinux-x86_64.h ;; \ - arm64) VMLINUX=prog/vmlinux-arm64.h ;; \ + amd64) VMLINUX=pkg/ebpf/prog/vmlinux-x86_64.h ;; \ + arm64) VMLINUX=pkg/ebpf/prog/vmlinux-arm64.h ;; \ *) echo "unsupported TARGETARCH=${TARGETARCH}" >&2; exit 1 ;; \ esac \ - && cp "$VMLINUX" prog/vmlinux.h \ + && cp "$VMLINUX" pkg/ebpf/prog/vmlinux.h \ && go run github.com/cilium/ebpf/cmd/bpf2go@v0.16.0 \ -cc clang -no-strip \ - -cflags "-Iprog -I$(go env GOMODCACHE)/github.com/cilium/ebpf@v0.16.0/btf/testdata" \ + -cflags "-Ipkg/ebpf/prog -I$(go env GOMODCACHE)/github.com/cilium/ebpf@v0.16.0/btf/testdata" \ -target "${TARGETARCH}" \ -go-package ebpf -output-dir pkg/ebpf \ - audit prog/audit.bpf.c \ - && rm -f prog/vmlinux.h + audit pkg/ebpf/prog/audit.bpf.c \ + && rm -f pkg/ebpf/prog/vmlinux.h # cilium/ebpf is pure Go, so the variant builds fully static. RUN CGO_ENABLED=0 go build -tags ebpf -trimpath -buildvcs=false \ -ldflags "-buildid= -B none \ From d449757649c3198771e3c8d99b28cb4a1bf51939 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 11:24:48 +0800 Subject: [PATCH 20/33] feat(ebpf): vendor libbpf headers into prog/bpf for hermetic bpf2go bpf2go needs bpf_helpers.h/bpf_tracing.h/bpf_core_read.h etc. The Dockerfile previously reached into the module cache ($GOMODCACHE/.../btf/testdata), which is fragile inside the builder stage. Vendor the cilium/ebpf v0.16.0 headers (bpf/ subdir) so both the Dockerfile and make generate-ebpf use -Iprog only. --- components/execd/Dockerfile | 2 +- components/execd/Makefile | 2 +- .../execd/pkg/ebpf/prog/bpf/bpf_core_read.h | 456 ++ .../execd/pkg/ebpf/prog/bpf/bpf_endian.h | 99 + .../execd/pkg/ebpf/prog/bpf/bpf_helper_defs.h | 4139 +++++++++++++++++ .../execd/pkg/ebpf/prog/bpf/bpf_helpers.h | 262 ++ .../execd/pkg/ebpf/prog/bpf/bpf_tracing.h | 492 ++ components/execd/pkg/ebpf/prog/bpf/common.h | 161 + 8 files changed, 5611 insertions(+), 2 deletions(-) create mode 100644 components/execd/pkg/ebpf/prog/bpf/bpf_core_read.h create mode 100644 components/execd/pkg/ebpf/prog/bpf/bpf_endian.h create mode 100644 components/execd/pkg/ebpf/prog/bpf/bpf_helper_defs.h create mode 100644 components/execd/pkg/ebpf/prog/bpf/bpf_helpers.h create mode 100644 components/execd/pkg/ebpf/prog/bpf/bpf_tracing.h create mode 100644 components/execd/pkg/ebpf/prog/bpf/common.h diff --git a/components/execd/Dockerfile b/components/execd/Dockerfile index c42d3e399..85a48a9a5 100644 --- a/components/execd/Dockerfile +++ b/components/execd/Dockerfile @@ -133,7 +133,7 @@ RUN case "${TARGETARCH}" in \ && cp "$VMLINUX" pkg/ebpf/prog/vmlinux.h \ && go run github.com/cilium/ebpf/cmd/bpf2go@v0.16.0 \ -cc clang -no-strip \ - -cflags "-Ipkg/ebpf/prog -I$(go env GOMODCACHE)/github.com/cilium/ebpf@v0.16.0/btf/testdata" \ + -cflags "-Ipkg/ebpf/prog" \ -target "${TARGETARCH}" \ -go-package ebpf -output-dir pkg/ebpf \ audit pkg/ebpf/prog/audit.bpf.c \ diff --git a/components/execd/Makefile b/components/execd/Makefile index bc0637d6c..26ebac4c9 100644 --- a/components/execd/Makefile +++ b/components/execd/Makefile @@ -182,7 +182,7 @@ generate-ebpf: @cp "$(VMLINUX)" pkg/ebpf/prog/vmlinux.h @cd pkg/ebpf && go run github.com/cilium/ebpf/cmd/bpf2go@v0.16.0 \ -cc clang -no-strip \ - -cflags "-Iprog -I$(shell go env GOMODCACHE)/github.com/cilium/ebpf@v0.16.0/btf/testdata" \ + -cflags "-Iprog" \ -target $(ARCH) \ -go-package ebpf -output-dir . \ audit prog/audit.bpf.c diff --git a/components/execd/pkg/ebpf/prog/bpf/bpf_core_read.h b/components/execd/pkg/ebpf/prog/bpf/bpf_core_read.h new file mode 100644 index 000000000..9b26f1e3d --- /dev/null +++ b/components/execd/pkg/ebpf/prog/bpf/bpf_core_read.h @@ -0,0 +1,456 @@ +/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ +#ifndef __BPF_CORE_READ_H__ +#define __BPF_CORE_READ_H__ + +/* + * enum bpf_field_info_kind is passed as a second argument into + * __builtin_preserve_field_info() built-in to get a specific aspect of + * a field, captured as a first argument. __builtin_preserve_field_info(field, + * info_kind) returns __u32 integer and produces BTF field relocation, which + * is understood and processed by libbpf during BPF object loading. See + * selftests/bpf for examples. + */ +enum bpf_field_info_kind { + BPF_FIELD_BYTE_OFFSET = 0, /* field byte offset */ + BPF_FIELD_BYTE_SIZE = 1, + BPF_FIELD_EXISTS = 2, /* field existence in target kernel */ + BPF_FIELD_SIGNED = 3, + BPF_FIELD_LSHIFT_U64 = 4, + BPF_FIELD_RSHIFT_U64 = 5, +}; + +/* second argument to __builtin_btf_type_id() built-in */ +enum bpf_type_id_kind { + BPF_TYPE_ID_LOCAL = 0, /* BTF type ID in local program */ + BPF_TYPE_ID_TARGET = 1, /* BTF type ID in target kernel */ +}; + +/* second argument to __builtin_preserve_type_info() built-in */ +enum bpf_type_info_kind { + BPF_TYPE_EXISTS = 0, /* type existence in target kernel */ + BPF_TYPE_SIZE = 1, /* type size in target kernel */ + BPF_TYPE_MATCHES = 2, /* type match in target kernel */ +}; + +/* second argument to __builtin_preserve_enum_value() built-in */ +enum bpf_enum_value_kind { + BPF_ENUMVAL_EXISTS = 0, /* enum value existence in kernel */ + BPF_ENUMVAL_VALUE = 1, /* enum value value relocation */ +}; + +#define __CORE_RELO(src, field, info) \ + __builtin_preserve_field_info((src)->field, BPF_FIELD_##info) + +#if __BYTE_ORDER == __LITTLE_ENDIAN +#define __CORE_BITFIELD_PROBE_READ(dst, src, fld) \ + bpf_probe_read_kernel( \ + (void *)dst, \ + __CORE_RELO(src, fld, BYTE_SIZE), \ + (const void *)src + __CORE_RELO(src, fld, BYTE_OFFSET)) +#else +/* semantics of LSHIFT_64 assumes loading values into low-ordered bytes, so + * for big-endian we need to adjust destination pointer accordingly, based on + * field byte size + */ +#define __CORE_BITFIELD_PROBE_READ(dst, src, fld) \ + bpf_probe_read_kernel( \ + (void *)dst + (8 - __CORE_RELO(src, fld, BYTE_SIZE)), \ + __CORE_RELO(src, fld, BYTE_SIZE), \ + (const void *)src + __CORE_RELO(src, fld, BYTE_OFFSET)) +#endif + +/* + * Extract bitfield, identified by s->field, and return its value as u64. + * All this is done in relocatable manner, so bitfield changes such as + * signedness, bit size, offset changes, this will be handled automatically. + * This version of macro is using bpf_probe_read_kernel() to read underlying + * integer storage. Macro functions as an expression and its return type is + * bpf_probe_read_kernel()'s return value: 0, on success, <0 on error. + */ +#define BPF_CORE_READ_BITFIELD_PROBED(s, field) ({ \ + unsigned long long val = 0; \ + \ + __CORE_BITFIELD_PROBE_READ(&val, s, field); \ + val <<= __CORE_RELO(s, field, LSHIFT_U64); \ + if (__CORE_RELO(s, field, SIGNED)) \ + val = ((long long)val) >> __CORE_RELO(s, field, RSHIFT_U64); \ + else \ + val = val >> __CORE_RELO(s, field, RSHIFT_U64); \ + val; \ +}) + +/* + * Extract bitfield, identified by s->field, and return its value as u64. + * This version of macro is using direct memory reads and should be used from + * BPF program types that support such functionality (e.g., typed raw + * tracepoints). + */ +#define BPF_CORE_READ_BITFIELD(s, field) ({ \ + const void *p = (const void *)s + __CORE_RELO(s, field, BYTE_OFFSET); \ + unsigned long long val; \ + \ + /* This is a so-called barrier_var() operation that makes specified \ + * variable "a black box" for optimizing compiler. \ + * It forces compiler to perform BYTE_OFFSET relocation on p and use \ + * its calculated value in the switch below, instead of applying \ + * the same relocation 4 times for each individual memory load. \ + */ \ + asm volatile("" : "=r"(p) : "0"(p)); \ + \ + switch (__CORE_RELO(s, field, BYTE_SIZE)) { \ + case 1: val = *(const unsigned char *)p; break; \ + case 2: val = *(const unsigned short *)p; break; \ + case 4: val = *(const unsigned int *)p; break; \ + case 8: val = *(const unsigned long long *)p; break; \ + } \ + val <<= __CORE_RELO(s, field, LSHIFT_U64); \ + if (__CORE_RELO(s, field, SIGNED)) \ + val = ((long long)val) >> __CORE_RELO(s, field, RSHIFT_U64); \ + else \ + val = val >> __CORE_RELO(s, field, RSHIFT_U64); \ + val; \ +}) + +/* + * Convenience macro to check that field actually exists in target kernel's. + * Returns: + * 1, if matching field is present in target kernel; + * 0, if no matching field found. + */ +#define bpf_core_field_exists(field) \ + __builtin_preserve_field_info(field, BPF_FIELD_EXISTS) + +/* + * Convenience macro to get the byte size of a field. Works for integers, + * struct/unions, pointers, arrays, and enums. + */ +#define bpf_core_field_size(field) \ + __builtin_preserve_field_info(field, BPF_FIELD_BYTE_SIZE) + +/* + * Convenience macro to get BTF type ID of a specified type, using a local BTF + * information. Return 32-bit unsigned integer with type ID from program's own + * BTF. Always succeeds. + */ +#define bpf_core_type_id_local(type) \ + __builtin_btf_type_id(*(typeof(type) *)0, BPF_TYPE_ID_LOCAL) + +/* + * Convenience macro to get BTF type ID of a target kernel's type that matches + * specified local type. + * Returns: + * - valid 32-bit unsigned type ID in kernel BTF; + * - 0, if no matching type was found in a target kernel BTF. + */ +#define bpf_core_type_id_kernel(type) \ + __builtin_btf_type_id(*(typeof(type) *)0, BPF_TYPE_ID_TARGET) + +/* + * Convenience macro to check that provided named type + * (struct/union/enum/typedef) exists in a target kernel. + * Returns: + * 1, if such type is present in target kernel's BTF; + * 0, if no matching type is found. + */ +#define bpf_core_type_exists(type) \ + __builtin_preserve_type_info(*(typeof(type) *)0, BPF_TYPE_EXISTS) + +/* + * Convenience macro to check that provided named type + * (struct/union/enum/typedef) "matches" that in a target kernel. + * Returns: + * 1, if the type matches in the target kernel's BTF; + * 0, if the type does not match any in the target kernel + */ +#define bpf_core_type_matches(type) \ + __builtin_preserve_type_info(*(typeof(type) *)0, BPF_TYPE_MATCHES) + + +/* + * Convenience macro to get the byte size of a provided named type + * (struct/union/enum/typedef) in a target kernel. + * Returns: + * >= 0 size (in bytes), if type is present in target kernel's BTF; + * 0, if no matching type is found. + */ +#define bpf_core_type_size(type) \ + __builtin_preserve_type_info(*(typeof(type) *)0, BPF_TYPE_SIZE) + +/* + * Convenience macro to check that provided enumerator value is defined in + * a target kernel. + * Returns: + * 1, if specified enum type and its enumerator value are present in target + * kernel's BTF; + * 0, if no matching enum and/or enum value within that enum is found. + */ +#define bpf_core_enum_value_exists(enum_type, enum_value) \ + __builtin_preserve_enum_value(*(typeof(enum_type) *)enum_value, BPF_ENUMVAL_EXISTS) + +/* + * Convenience macro to get the integer value of an enumerator value in + * a target kernel. + * Returns: + * 64-bit value, if specified enum type and its enumerator value are + * present in target kernel's BTF; + * 0, if no matching enum and/or enum value within that enum is found. + */ +#define bpf_core_enum_value(enum_type, enum_value) \ + __builtin_preserve_enum_value(*(typeof(enum_type) *)enum_value, BPF_ENUMVAL_VALUE) + +/* + * bpf_core_read() abstracts away bpf_probe_read_kernel() call and captures + * offset relocation for source address using __builtin_preserve_access_index() + * built-in, provided by Clang. + * + * __builtin_preserve_access_index() takes as an argument an expression of + * taking an address of a field within struct/union. It makes compiler emit + * a relocation, which records BTF type ID describing root struct/union and an + * accessor string which describes exact embedded field that was used to take + * an address. See detailed description of this relocation format and + * semantics in comments to struct bpf_field_reloc in libbpf_internal.h. + * + * This relocation allows libbpf to adjust BPF instruction to use correct + * actual field offset, based on target kernel BTF type that matches original + * (local) BTF, used to record relocation. + */ +#define bpf_core_read(dst, sz, src) \ + bpf_probe_read_kernel(dst, sz, (const void *)__builtin_preserve_access_index(src)) + +/* NOTE: see comments for BPF_CORE_READ_USER() about the proper types use. */ +#define bpf_core_read_user(dst, sz, src) \ + bpf_probe_read_user(dst, sz, (const void *)__builtin_preserve_access_index(src)) +/* + * bpf_core_read_str() is a thin wrapper around bpf_probe_read_str() + * additionally emitting BPF CO-RE field relocation for specified source + * argument. + */ +#define bpf_core_read_str(dst, sz, src) \ + bpf_probe_read_kernel_str(dst, sz, (const void *)__builtin_preserve_access_index(src)) + +/* NOTE: see comments for BPF_CORE_READ_USER() about the proper types use. */ +#define bpf_core_read_user_str(dst, sz, src) \ + bpf_probe_read_user_str(dst, sz, (const void *)__builtin_preserve_access_index(src)) + +#define ___concat(a, b) a ## b +#define ___apply(fn, n) ___concat(fn, n) +#define ___nth(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, __11, N, ...) N + +/* + * return number of provided arguments; used for switch-based variadic macro + * definitions (see ___last, ___arrow, etc below) + */ +#define ___narg(...) ___nth(_, ##__VA_ARGS__, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0) +/* + * return 0 if no arguments are passed, N - otherwise; used for + * recursively-defined macros to specify termination (0) case, and generic + * (N) case (e.g., ___read_ptrs, ___core_read) + */ +#define ___empty(...) ___nth(_, ##__VA_ARGS__, N, N, N, N, N, N, N, N, N, N, 0) + +#define ___last1(x) x +#define ___last2(a, x) x +#define ___last3(a, b, x) x +#define ___last4(a, b, c, x) x +#define ___last5(a, b, c, d, x) x +#define ___last6(a, b, c, d, e, x) x +#define ___last7(a, b, c, d, e, f, x) x +#define ___last8(a, b, c, d, e, f, g, x) x +#define ___last9(a, b, c, d, e, f, g, h, x) x +#define ___last10(a, b, c, d, e, f, g, h, i, x) x +#define ___last(...) ___apply(___last, ___narg(__VA_ARGS__))(__VA_ARGS__) + +#define ___nolast2(a, _) a +#define ___nolast3(a, b, _) a, b +#define ___nolast4(a, b, c, _) a, b, c +#define ___nolast5(a, b, c, d, _) a, b, c, d +#define ___nolast6(a, b, c, d, e, _) a, b, c, d, e +#define ___nolast7(a, b, c, d, e, f, _) a, b, c, d, e, f +#define ___nolast8(a, b, c, d, e, f, g, _) a, b, c, d, e, f, g +#define ___nolast9(a, b, c, d, e, f, g, h, _) a, b, c, d, e, f, g, h +#define ___nolast10(a, b, c, d, e, f, g, h, i, _) a, b, c, d, e, f, g, h, i +#define ___nolast(...) ___apply(___nolast, ___narg(__VA_ARGS__))(__VA_ARGS__) + +#define ___arrow1(a) a +#define ___arrow2(a, b) a->b +#define ___arrow3(a, b, c) a->b->c +#define ___arrow4(a, b, c, d) a->b->c->d +#define ___arrow5(a, b, c, d, e) a->b->c->d->e +#define ___arrow6(a, b, c, d, e, f) a->b->c->d->e->f +#define ___arrow7(a, b, c, d, e, f, g) a->b->c->d->e->f->g +#define ___arrow8(a, b, c, d, e, f, g, h) a->b->c->d->e->f->g->h +#define ___arrow9(a, b, c, d, e, f, g, h, i) a->b->c->d->e->f->g->h->i +#define ___arrow10(a, b, c, d, e, f, g, h, i, j) a->b->c->d->e->f->g->h->i->j +#define ___arrow(...) ___apply(___arrow, ___narg(__VA_ARGS__))(__VA_ARGS__) + +#define ___type(...) typeof(___arrow(__VA_ARGS__)) + +#define ___read(read_fn, dst, src_type, src, accessor) \ + read_fn((void *)(dst), sizeof(*(dst)), &((src_type)(src))->accessor) + +/* "recursively" read a sequence of inner pointers using local __t var */ +#define ___rd_first(fn, src, a) ___read(fn, &__t, ___type(src), src, a); +#define ___rd_last(fn, ...) \ + ___read(fn, &__t, ___type(___nolast(__VA_ARGS__)), __t, ___last(__VA_ARGS__)); +#define ___rd_p1(fn, ...) const void *__t; ___rd_first(fn, __VA_ARGS__) +#define ___rd_p2(fn, ...) ___rd_p1(fn, ___nolast(__VA_ARGS__)) ___rd_last(fn, __VA_ARGS__) +#define ___rd_p3(fn, ...) ___rd_p2(fn, ___nolast(__VA_ARGS__)) ___rd_last(fn, __VA_ARGS__) +#define ___rd_p4(fn, ...) ___rd_p3(fn, ___nolast(__VA_ARGS__)) ___rd_last(fn, __VA_ARGS__) +#define ___rd_p5(fn, ...) ___rd_p4(fn, ___nolast(__VA_ARGS__)) ___rd_last(fn, __VA_ARGS__) +#define ___rd_p6(fn, ...) ___rd_p5(fn, ___nolast(__VA_ARGS__)) ___rd_last(fn, __VA_ARGS__) +#define ___rd_p7(fn, ...) ___rd_p6(fn, ___nolast(__VA_ARGS__)) ___rd_last(fn, __VA_ARGS__) +#define ___rd_p8(fn, ...) ___rd_p7(fn, ___nolast(__VA_ARGS__)) ___rd_last(fn, __VA_ARGS__) +#define ___rd_p9(fn, ...) ___rd_p8(fn, ___nolast(__VA_ARGS__)) ___rd_last(fn, __VA_ARGS__) +#define ___read_ptrs(fn, src, ...) \ + ___apply(___rd_p, ___narg(__VA_ARGS__))(fn, src, __VA_ARGS__) + +#define ___core_read0(fn, fn_ptr, dst, src, a) \ + ___read(fn, dst, ___type(src), src, a); +#define ___core_readN(fn, fn_ptr, dst, src, ...) \ + ___read_ptrs(fn_ptr, src, ___nolast(__VA_ARGS__)) \ + ___read(fn, dst, ___type(src, ___nolast(__VA_ARGS__)), __t, \ + ___last(__VA_ARGS__)); +#define ___core_read(fn, fn_ptr, dst, src, a, ...) \ + ___apply(___core_read, ___empty(__VA_ARGS__))(fn, fn_ptr, dst, \ + src, a, ##__VA_ARGS__) + +/* + * BPF_CORE_READ_INTO() is a more performance-conscious variant of + * BPF_CORE_READ(), in which final field is read into user-provided storage. + * See BPF_CORE_READ() below for more details on general usage. + */ +#define BPF_CORE_READ_INTO(dst, src, a, ...) ({ \ + ___core_read(bpf_core_read, bpf_core_read, \ + dst, (src), a, ##__VA_ARGS__) \ +}) + +/* + * Variant of BPF_CORE_READ_INTO() for reading from user-space memory. + * + * NOTE: see comments for BPF_CORE_READ_USER() about the proper types use. + */ +#define BPF_CORE_READ_USER_INTO(dst, src, a, ...) ({ \ + ___core_read(bpf_core_read_user, bpf_core_read_user, \ + dst, (src), a, ##__VA_ARGS__) \ +}) + +/* Non-CO-RE variant of BPF_CORE_READ_INTO() */ +#define BPF_PROBE_READ_INTO(dst, src, a, ...) ({ \ + ___core_read(bpf_probe_read, bpf_probe_read, \ + dst, (src), a, ##__VA_ARGS__) \ +}) + +/* Non-CO-RE variant of BPF_CORE_READ_USER_INTO(). + * + * As no CO-RE relocations are emitted, source types can be arbitrary and are + * not restricted to kernel types only. + */ +#define BPF_PROBE_READ_USER_INTO(dst, src, a, ...) ({ \ + ___core_read(bpf_probe_read_user, bpf_probe_read_user, \ + dst, (src), a, ##__VA_ARGS__) \ +}) + +/* + * BPF_CORE_READ_STR_INTO() does same "pointer chasing" as + * BPF_CORE_READ() for intermediate pointers, but then executes (and returns + * corresponding error code) bpf_core_read_str() for final string read. + */ +#define BPF_CORE_READ_STR_INTO(dst, src, a, ...) ({ \ + ___core_read(bpf_core_read_str, bpf_core_read, \ + dst, (src), a, ##__VA_ARGS__) \ +}) + +/* + * Variant of BPF_CORE_READ_STR_INTO() for reading from user-space memory. + * + * NOTE: see comments for BPF_CORE_READ_USER() about the proper types use. + */ +#define BPF_CORE_READ_USER_STR_INTO(dst, src, a, ...) ({ \ + ___core_read(bpf_core_read_user_str, bpf_core_read_user, \ + dst, (src), a, ##__VA_ARGS__) \ +}) + +/* Non-CO-RE variant of BPF_CORE_READ_STR_INTO() */ +#define BPF_PROBE_READ_STR_INTO(dst, src, a, ...) ({ \ + ___core_read(bpf_probe_read_str, bpf_probe_read, \ + dst, (src), a, ##__VA_ARGS__) \ +}) + +/* + * Non-CO-RE variant of BPF_CORE_READ_USER_STR_INTO(). + * + * As no CO-RE relocations are emitted, source types can be arbitrary and are + * not restricted to kernel types only. + */ +#define BPF_PROBE_READ_USER_STR_INTO(dst, src, a, ...) ({ \ + ___core_read(bpf_probe_read_user_str, bpf_probe_read_user, \ + dst, (src), a, ##__VA_ARGS__) \ +}) + +/* + * BPF_CORE_READ() is used to simplify BPF CO-RE relocatable read, especially + * when there are few pointer chasing steps. + * E.g., what in non-BPF world (or in BPF w/ BCC) would be something like: + * int x = s->a.b.c->d.e->f->g; + * can be succinctly achieved using BPF_CORE_READ as: + * int x = BPF_CORE_READ(s, a.b.c, d.e, f, g); + * + * BPF_CORE_READ will decompose above statement into 4 bpf_core_read (BPF + * CO-RE relocatable bpf_probe_read_kernel() wrapper) calls, logically + * equivalent to: + * 1. const void *__t = s->a.b.c; + * 2. __t = __t->d.e; + * 3. __t = __t->f; + * 4. return __t->g; + * + * Equivalence is logical, because there is a heavy type casting/preservation + * involved, as well as all the reads are happening through + * bpf_probe_read_kernel() calls using __builtin_preserve_access_index() to + * emit CO-RE relocations. + * + * N.B. Only up to 9 "field accessors" are supported, which should be more + * than enough for any practical purpose. + */ +#define BPF_CORE_READ(src, a, ...) ({ \ + ___type((src), a, ##__VA_ARGS__) __r; \ + BPF_CORE_READ_INTO(&__r, (src), a, ##__VA_ARGS__); \ + __r; \ +}) + +/* + * Variant of BPF_CORE_READ() for reading from user-space memory. + * + * NOTE: all the source types involved are still *kernel types* and need to + * exist in kernel (or kernel module) BTF, otherwise CO-RE relocation will + * fail. Custom user types are not relocatable with CO-RE. + * The typical situation in which BPF_CORE_READ_USER() might be used is to + * read kernel UAPI types from the user-space memory passed in as a syscall + * input argument. + */ +#define BPF_CORE_READ_USER(src, a, ...) ({ \ + ___type((src), a, ##__VA_ARGS__) __r; \ + BPF_CORE_READ_USER_INTO(&__r, (src), a, ##__VA_ARGS__); \ + __r; \ +}) + +/* Non-CO-RE variant of BPF_CORE_READ() */ +#define BPF_PROBE_READ(src, a, ...) ({ \ + ___type((src), a, ##__VA_ARGS__) __r; \ + BPF_PROBE_READ_INTO(&__r, (src), a, ##__VA_ARGS__); \ + __r; \ +}) + +/* + * Non-CO-RE variant of BPF_CORE_READ_USER(). + * + * As no CO-RE relocations are emitted, source types can be arbitrary and are + * not restricted to kernel types only. + */ +#define BPF_PROBE_READ_USER(src, a, ...) ({ \ + ___type((src), a, ##__VA_ARGS__) __r; \ + BPF_PROBE_READ_USER_INTO(&__r, (src), a, ##__VA_ARGS__); \ + __r; \ +}) + +#endif + diff --git a/components/execd/pkg/ebpf/prog/bpf/bpf_endian.h b/components/execd/pkg/ebpf/prog/bpf/bpf_endian.h new file mode 100644 index 000000000..ec9db4fec --- /dev/null +++ b/components/execd/pkg/ebpf/prog/bpf/bpf_endian.h @@ -0,0 +1,99 @@ +/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ +#ifndef __BPF_ENDIAN__ +#define __BPF_ENDIAN__ + +/* + * Isolate byte #n and put it into byte #m, for __u##b type. + * E.g., moving byte #6 (nnnnnnnn) into byte #1 (mmmmmmmm) for __u64: + * 1) xxxxxxxx nnnnnnnn xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx mmmmmmmm xxxxxxxx + * 2) nnnnnnnn xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx mmmmmmmm xxxxxxxx 00000000 + * 3) 00000000 00000000 00000000 00000000 00000000 00000000 00000000 nnnnnnnn + * 4) 00000000 00000000 00000000 00000000 00000000 00000000 nnnnnnnn 00000000 + */ +#define ___bpf_mvb(x, b, n, m) ((__u##b)(x) << (b-(n+1)*8) >> (b-8) << (m*8)) + +#define ___bpf_swab16(x) ((__u16)( \ + ___bpf_mvb(x, 16, 0, 1) | \ + ___bpf_mvb(x, 16, 1, 0))) + +#define ___bpf_swab32(x) ((__u32)( \ + ___bpf_mvb(x, 32, 0, 3) | \ + ___bpf_mvb(x, 32, 1, 2) | \ + ___bpf_mvb(x, 32, 2, 1) | \ + ___bpf_mvb(x, 32, 3, 0))) + +#define ___bpf_swab64(x) ((__u64)( \ + ___bpf_mvb(x, 64, 0, 7) | \ + ___bpf_mvb(x, 64, 1, 6) | \ + ___bpf_mvb(x, 64, 2, 5) | \ + ___bpf_mvb(x, 64, 3, 4) | \ + ___bpf_mvb(x, 64, 4, 3) | \ + ___bpf_mvb(x, 64, 5, 2) | \ + ___bpf_mvb(x, 64, 6, 1) | \ + ___bpf_mvb(x, 64, 7, 0))) + +/* LLVM's BPF target selects the endianness of the CPU + * it compiles on, or the user specifies (bpfel/bpfeb), + * respectively. The used __BYTE_ORDER__ is defined by + * the compiler, we cannot rely on __BYTE_ORDER from + * libc headers, since it doesn't reflect the actual + * requested byte order. + * + * Note, LLVM's BPF target has different __builtin_bswapX() + * semantics. It does map to BPF_ALU | BPF_END | BPF_TO_BE + * in bpfel and bpfeb case, which means below, that we map + * to cpu_to_be16(). We could use it unconditionally in BPF + * case, but better not rely on it, so that this header here + * can be used from application and BPF program side, which + * use different targets. + */ +#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ +# define __bpf_ntohs(x) __builtin_bswap16(x) +# define __bpf_htons(x) __builtin_bswap16(x) +# define __bpf_constant_ntohs(x) ___bpf_swab16(x) +# define __bpf_constant_htons(x) ___bpf_swab16(x) +# define __bpf_ntohl(x) __builtin_bswap32(x) +# define __bpf_htonl(x) __builtin_bswap32(x) +# define __bpf_constant_ntohl(x) ___bpf_swab32(x) +# define __bpf_constant_htonl(x) ___bpf_swab32(x) +# define __bpf_be64_to_cpu(x) __builtin_bswap64(x) +# define __bpf_cpu_to_be64(x) __builtin_bswap64(x) +# define __bpf_constant_be64_to_cpu(x) ___bpf_swab64(x) +# define __bpf_constant_cpu_to_be64(x) ___bpf_swab64(x) +#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ +# define __bpf_ntohs(x) (x) +# define __bpf_htons(x) (x) +# define __bpf_constant_ntohs(x) (x) +# define __bpf_constant_htons(x) (x) +# define __bpf_ntohl(x) (x) +# define __bpf_htonl(x) (x) +# define __bpf_constant_ntohl(x) (x) +# define __bpf_constant_htonl(x) (x) +# define __bpf_be64_to_cpu(x) (x) +# define __bpf_cpu_to_be64(x) (x) +# define __bpf_constant_be64_to_cpu(x) (x) +# define __bpf_constant_cpu_to_be64(x) (x) +#else +# error "Fix your compiler's __BYTE_ORDER__?!" +#endif + +#define bpf_htons(x) \ + (__builtin_constant_p(x) ? \ + __bpf_constant_htons(x) : __bpf_htons(x)) +#define bpf_ntohs(x) \ + (__builtin_constant_p(x) ? \ + __bpf_constant_ntohs(x) : __bpf_ntohs(x)) +#define bpf_htonl(x) \ + (__builtin_constant_p(x) ? \ + __bpf_constant_htonl(x) : __bpf_htonl(x)) +#define bpf_ntohl(x) \ + (__builtin_constant_p(x) ? \ + __bpf_constant_ntohl(x) : __bpf_ntohl(x)) +#define bpf_cpu_to_be64(x) \ + (__builtin_constant_p(x) ? \ + __bpf_constant_cpu_to_be64(x) : __bpf_cpu_to_be64(x)) +#define bpf_be64_to_cpu(x) \ + (__builtin_constant_p(x) ? \ + __bpf_constant_be64_to_cpu(x) : __bpf_be64_to_cpu(x)) + +#endif /* __BPF_ENDIAN__ */ diff --git a/components/execd/pkg/ebpf/prog/bpf/bpf_helper_defs.h b/components/execd/pkg/ebpf/prog/bpf/bpf_helper_defs.h new file mode 100644 index 000000000..3fbe7ff2a --- /dev/null +++ b/components/execd/pkg/ebpf/prog/bpf/bpf_helper_defs.h @@ -0,0 +1,4139 @@ +/* This is auto-generated file. See bpf_doc.py for details. */ + +/* Forward declarations of BPF structs */ +struct bpf_fib_lookup; +struct bpf_sk_lookup; +struct bpf_perf_event_data; +struct bpf_perf_event_value; +struct bpf_pidns_info; +struct bpf_redir_neigh; +struct bpf_sock; +struct bpf_sock_addr; +struct bpf_sock_ops; +struct bpf_sock_tuple; +struct bpf_spin_lock; +struct bpf_sysctl; +struct bpf_tcp_sock; +struct bpf_tunnel_key; +struct bpf_xfrm_state; +struct linux_binprm; +struct pt_regs; +struct sk_reuseport_md; +struct sockaddr; +struct tcphdr; +struct seq_file; +struct tcp6_sock; +struct tcp_sock; +struct tcp_timewait_sock; +struct tcp_request_sock; +struct udp6_sock; +struct unix_sock; +struct task_struct; +struct __sk_buff; +struct sk_msg_md; +struct xdp_md; +struct path; +struct btf_ptr; +struct inode; +struct socket; +struct file; +struct bpf_timer; + +/* + * bpf_map_lookup_elem + * + * Perform a lookup in *map* for an entry associated to *key*. + * + * Returns + * Map value associated to *key*, or **NULL** if no entry was + * found. + */ +static void *(*bpf_map_lookup_elem)(void *map, const void *key) = (void *) 1; + +/* + * bpf_map_update_elem + * + * Add or update the value of the entry associated to *key* in + * *map* with *value*. *flags* is one of: + * + * **BPF_NOEXIST** + * The entry for *key* must not exist in the map. + * **BPF_EXIST** + * The entry for *key* must already exist in the map. + * **BPF_ANY** + * No condition on the existence of the entry for *key*. + * + * Flag value **BPF_NOEXIST** cannot be used for maps of types + * **BPF_MAP_TYPE_ARRAY** or **BPF_MAP_TYPE_PERCPU_ARRAY** (all + * elements always exist), the helper would return an error. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_map_update_elem)(void *map, const void *key, const void *value, __u64 flags) = (void *) 2; + +/* + * bpf_map_delete_elem + * + * Delete entry with *key* from *map*. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_map_delete_elem)(void *map, const void *key) = (void *) 3; + +/* + * bpf_probe_read + * + * For tracing programs, safely attempt to read *size* bytes from + * kernel space address *unsafe_ptr* and store the data in *dst*. + * + * Generally, use **bpf_probe_read_user**\ () or + * **bpf_probe_read_kernel**\ () instead. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_probe_read)(void *dst, __u32 size, const void *unsafe_ptr) = (void *) 4; + +/* + * bpf_ktime_get_ns + * + * Return the time elapsed since system boot, in nanoseconds. + * Does not include time the system was suspended. + * See: **clock_gettime**\ (**CLOCK_MONOTONIC**) + * + * Returns + * Current *ktime*. + */ +static __u64 (*bpf_ktime_get_ns)(void) = (void *) 5; + +/* + * bpf_trace_printk + * + * This helper is a "printk()-like" facility for debugging. It + * prints a message defined by format *fmt* (of size *fmt_size*) + * to file *\/sys/kernel/debug/tracing/trace* from DebugFS, if + * available. It can take up to three additional **u64** + * arguments (as an eBPF helpers, the total number of arguments is + * limited to five). + * + * Each time the helper is called, it appends a line to the trace. + * Lines are discarded while *\/sys/kernel/debug/tracing/trace* is + * open, use *\/sys/kernel/debug/tracing/trace_pipe* to avoid this. + * The format of the trace is customizable, and the exact output + * one will get depends on the options set in + * *\/sys/kernel/debug/tracing/trace_options* (see also the + * *README* file under the same directory). However, it usually + * defaults to something like: + * + * :: + * + * telnet-470 [001] .N.. 419421.045894: 0x00000001: + * + * In the above: + * + * * ``telnet`` is the name of the current task. + * * ``470`` is the PID of the current task. + * * ``001`` is the CPU number on which the task is + * running. + * * In ``.N..``, each character refers to a set of + * options (whether irqs are enabled, scheduling + * options, whether hard/softirqs are running, level of + * preempt_disabled respectively). **N** means that + * **TIF_NEED_RESCHED** and **PREEMPT_NEED_RESCHED** + * are set. + * * ``419421.045894`` is a timestamp. + * * ``0x00000001`` is a fake value used by BPF for the + * instruction pointer register. + * * ```` is the message formatted with + * *fmt*. + * + * The conversion specifiers supported by *fmt* are similar, but + * more limited than for printk(). They are **%d**, **%i**, + * **%u**, **%x**, **%ld**, **%li**, **%lu**, **%lx**, **%lld**, + * **%lli**, **%llu**, **%llx**, **%p**, **%s**. No modifier (size + * of field, padding with zeroes, etc.) is available, and the + * helper will return **-EINVAL** (but print nothing) if it + * encounters an unknown specifier. + * + * Also, note that **bpf_trace_printk**\ () is slow, and should + * only be used for debugging purposes. For this reason, a notice + * block (spanning several lines) is printed to kernel logs and + * states that the helper should not be used "for production use" + * the first time this helper is used (or more precisely, when + * **trace_printk**\ () buffers are allocated). For passing values + * to user space, perf events should be preferred. + * + * Returns + * The number of bytes written to the buffer, or a negative error + * in case of failure. + */ +static long (*bpf_trace_printk)(const char *fmt, __u32 fmt_size, ...) = (void *) 6; + +/* + * bpf_get_prandom_u32 + * + * Get a pseudo-random number. + * + * From a security point of view, this helper uses its own + * pseudo-random internal state, and cannot be used to infer the + * seed of other random functions in the kernel. However, it is + * essential to note that the generator used by the helper is not + * cryptographically secure. + * + * Returns + * A random 32-bit unsigned value. + */ +static __u32 (*bpf_get_prandom_u32)(void) = (void *) 7; + +/* + * bpf_get_smp_processor_id + * + * Get the SMP (symmetric multiprocessing) processor id. Note that + * all programs run with migration disabled, which means that the + * SMP processor id is stable during all the execution of the + * program. + * + * Returns + * The SMP id of the processor running the program. + */ +static __u32 (*bpf_get_smp_processor_id)(void) = (void *) 8; + +/* + * bpf_skb_store_bytes + * + * Store *len* bytes from address *from* into the packet + * associated to *skb*, at *offset*. *flags* are a combination of + * **BPF_F_RECOMPUTE_CSUM** (automatically recompute the + * checksum for the packet after storing the bytes) and + * **BPF_F_INVALIDATE_HASH** (set *skb*\ **->hash**, *skb*\ + * **->swhash** and *skb*\ **->l4hash** to 0). + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_skb_store_bytes)(struct __sk_buff *skb, __u32 offset, const void *from, __u32 len, __u64 flags) = (void *) 9; + +/* + * bpf_l3_csum_replace + * + * Recompute the layer 3 (e.g. IP) checksum for the packet + * associated to *skb*. Computation is incremental, so the helper + * must know the former value of the header field that was + * modified (*from*), the new value of this field (*to*), and the + * number of bytes (2 or 4) for this field, stored in *size*. + * Alternatively, it is possible to store the difference between + * the previous and the new values of the header field in *to*, by + * setting *from* and *size* to 0. For both methods, *offset* + * indicates the location of the IP checksum within the packet. + * + * This helper works in combination with **bpf_csum_diff**\ (), + * which does not update the checksum in-place, but offers more + * flexibility and can handle sizes larger than 2 or 4 for the + * checksum to update. + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_l3_csum_replace)(struct __sk_buff *skb, __u32 offset, __u64 from, __u64 to, __u64 size) = (void *) 10; + +/* + * bpf_l4_csum_replace + * + * Recompute the layer 4 (e.g. TCP, UDP or ICMP) checksum for the + * packet associated to *skb*. Computation is incremental, so the + * helper must know the former value of the header field that was + * modified (*from*), the new value of this field (*to*), and the + * number of bytes (2 or 4) for this field, stored on the lowest + * four bits of *flags*. Alternatively, it is possible to store + * the difference between the previous and the new values of the + * header field in *to*, by setting *from* and the four lowest + * bits of *flags* to 0. For both methods, *offset* indicates the + * location of the IP checksum within the packet. In addition to + * the size of the field, *flags* can be added (bitwise OR) actual + * flags. With **BPF_F_MARK_MANGLED_0**, a null checksum is left + * untouched (unless **BPF_F_MARK_ENFORCE** is added as well), and + * for updates resulting in a null checksum the value is set to + * **CSUM_MANGLED_0** instead. Flag **BPF_F_PSEUDO_HDR** indicates + * the checksum is to be computed against a pseudo-header. + * + * This helper works in combination with **bpf_csum_diff**\ (), + * which does not update the checksum in-place, but offers more + * flexibility and can handle sizes larger than 2 or 4 for the + * checksum to update. + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_l4_csum_replace)(struct __sk_buff *skb, __u32 offset, __u64 from, __u64 to, __u64 flags) = (void *) 11; + +/* + * bpf_tail_call + * + * This special helper is used to trigger a "tail call", or in + * other words, to jump into another eBPF program. The same stack + * frame is used (but values on stack and in registers for the + * caller are not accessible to the callee). This mechanism allows + * for program chaining, either for raising the maximum number of + * available eBPF instructions, or to execute given programs in + * conditional blocks. For security reasons, there is an upper + * limit to the number of successive tail calls that can be + * performed. + * + * Upon call of this helper, the program attempts to jump into a + * program referenced at index *index* in *prog_array_map*, a + * special map of type **BPF_MAP_TYPE_PROG_ARRAY**, and passes + * *ctx*, a pointer to the context. + * + * If the call succeeds, the kernel immediately runs the first + * instruction of the new program. This is not a function call, + * and it never returns to the previous program. If the call + * fails, then the helper has no effect, and the caller continues + * to run its subsequent instructions. A call can fail if the + * destination program for the jump does not exist (i.e. *index* + * is superior to the number of entries in *prog_array_map*), or + * if the maximum number of tail calls has been reached for this + * chain of programs. This limit is defined in the kernel by the + * macro **MAX_TAIL_CALL_CNT** (not accessible to user space), + * which is currently set to 33. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_tail_call)(void *ctx, void *prog_array_map, __u32 index) = (void *) 12; + +/* + * bpf_clone_redirect + * + * Clone and redirect the packet associated to *skb* to another + * net device of index *ifindex*. Both ingress and egress + * interfaces can be used for redirection. The **BPF_F_INGRESS** + * value in *flags* is used to make the distinction (ingress path + * is selected if the flag is present, egress path otherwise). + * This is the only flag supported for now. + * + * In comparison with **bpf_redirect**\ () helper, + * **bpf_clone_redirect**\ () has the associated cost of + * duplicating the packet buffer, but this can be executed out of + * the eBPF program. Conversely, **bpf_redirect**\ () is more + * efficient, but it is handled through an action code where the + * redirection happens only after the eBPF program has returned. + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_clone_redirect)(struct __sk_buff *skb, __u32 ifindex, __u64 flags) = (void *) 13; + +/* + * bpf_get_current_pid_tgid + * + * + * Returns + * A 64-bit integer containing the current tgid and pid, and + * created as such: + * *current_task*\ **->tgid << 32 \|** + * *current_task*\ **->pid**. + */ +static __u64 (*bpf_get_current_pid_tgid)(void) = (void *) 14; + +/* + * bpf_get_current_uid_gid + * + * + * Returns + * A 64-bit integer containing the current GID and UID, and + * created as such: *current_gid* **<< 32 \|** *current_uid*. + */ +static __u64 (*bpf_get_current_uid_gid)(void) = (void *) 15; + +/* + * bpf_get_current_comm + * + * Copy the **comm** attribute of the current task into *buf* of + * *size_of_buf*. The **comm** attribute contains the name of + * the executable (excluding the path) for the current task. The + * *size_of_buf* must be strictly positive. On success, the + * helper makes sure that the *buf* is NUL-terminated. On failure, + * it is filled with zeroes. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_get_current_comm)(void *buf, __u32 size_of_buf) = (void *) 16; + +/* + * bpf_get_cgroup_classid + * + * Retrieve the classid for the current task, i.e. for the net_cls + * cgroup to which *skb* belongs. + * + * This helper can be used on TC egress path, but not on ingress. + * + * The net_cls cgroup provides an interface to tag network packets + * based on a user-provided identifier for all traffic coming from + * the tasks belonging to the related cgroup. See also the related + * kernel documentation, available from the Linux sources in file + * *Documentation/admin-guide/cgroup-v1/net_cls.rst*. + * + * The Linux kernel has two versions for cgroups: there are + * cgroups v1 and cgroups v2. Both are available to users, who can + * use a mixture of them, but note that the net_cls cgroup is for + * cgroup v1 only. This makes it incompatible with BPF programs + * run on cgroups, which is a cgroup-v2-only feature (a socket can + * only hold data for one version of cgroups at a time). + * + * This helper is only available is the kernel was compiled with + * the **CONFIG_CGROUP_NET_CLASSID** configuration option set to + * "**y**" or to "**m**". + * + * Returns + * The classid, or 0 for the default unconfigured classid. + */ +static __u32 (*bpf_get_cgroup_classid)(struct __sk_buff *skb) = (void *) 17; + +/* + * bpf_skb_vlan_push + * + * Push a *vlan_tci* (VLAN tag control information) of protocol + * *vlan_proto* to the packet associated to *skb*, then update + * the checksum. Note that if *vlan_proto* is different from + * **ETH_P_8021Q** and **ETH_P_8021AD**, it is considered to + * be **ETH_P_8021Q**. + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_skb_vlan_push)(struct __sk_buff *skb, __be16 vlan_proto, __u16 vlan_tci) = (void *) 18; + +/* + * bpf_skb_vlan_pop + * + * Pop a VLAN header from the packet associated to *skb*. + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_skb_vlan_pop)(struct __sk_buff *skb) = (void *) 19; + +/* + * bpf_skb_get_tunnel_key + * + * Get tunnel metadata. This helper takes a pointer *key* to an + * empty **struct bpf_tunnel_key** of **size**, that will be + * filled with tunnel metadata for the packet associated to *skb*. + * The *flags* can be set to **BPF_F_TUNINFO_IPV6**, which + * indicates that the tunnel is based on IPv6 protocol instead of + * IPv4. + * + * The **struct bpf_tunnel_key** is an object that generalizes the + * principal parameters used by various tunneling protocols into a + * single struct. This way, it can be used to easily make a + * decision based on the contents of the encapsulation header, + * "summarized" in this struct. In particular, it holds the IP + * address of the remote end (IPv4 or IPv6, depending on the case) + * in *key*\ **->remote_ipv4** or *key*\ **->remote_ipv6**. Also, + * this struct exposes the *key*\ **->tunnel_id**, which is + * generally mapped to a VNI (Virtual Network Identifier), making + * it programmable together with the **bpf_skb_set_tunnel_key**\ + * () helper. + * + * Let's imagine that the following code is part of a program + * attached to the TC ingress interface, on one end of a GRE + * tunnel, and is supposed to filter out all messages coming from + * remote ends with IPv4 address other than 10.0.0.1: + * + * :: + * + * int ret; + * struct bpf_tunnel_key key = {}; + * + * ret = bpf_skb_get_tunnel_key(skb, &key, sizeof(key), 0); + * if (ret < 0) + * return TC_ACT_SHOT; // drop packet + * + * if (key.remote_ipv4 != 0x0a000001) + * return TC_ACT_SHOT; // drop packet + * + * return TC_ACT_OK; // accept packet + * + * This interface can also be used with all encapsulation devices + * that can operate in "collect metadata" mode: instead of having + * one network device per specific configuration, the "collect + * metadata" mode only requires a single device where the + * configuration can be extracted from this helper. + * + * This can be used together with various tunnels such as VXLan, + * Geneve, GRE or IP in IP (IPIP). + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_skb_get_tunnel_key)(struct __sk_buff *skb, struct bpf_tunnel_key *key, __u32 size, __u64 flags) = (void *) 20; + +/* + * bpf_skb_set_tunnel_key + * + * Populate tunnel metadata for packet associated to *skb.* The + * tunnel metadata is set to the contents of *key*, of *size*. The + * *flags* can be set to a combination of the following values: + * + * **BPF_F_TUNINFO_IPV6** + * Indicate that the tunnel is based on IPv6 protocol + * instead of IPv4. + * **BPF_F_ZERO_CSUM_TX** + * For IPv4 packets, add a flag to tunnel metadata + * indicating that checksum computation should be skipped + * and checksum set to zeroes. + * **BPF_F_DONT_FRAGMENT** + * Add a flag to tunnel metadata indicating that the + * packet should not be fragmented. + * **BPF_F_SEQ_NUMBER** + * Add a flag to tunnel metadata indicating that a + * sequence number should be added to tunnel header before + * sending the packet. This flag was added for GRE + * encapsulation, but might be used with other protocols + * as well in the future. + * + * Here is a typical usage on the transmit path: + * + * :: + * + * struct bpf_tunnel_key key; + * populate key ... + * bpf_skb_set_tunnel_key(skb, &key, sizeof(key), 0); + * bpf_clone_redirect(skb, vxlan_dev_ifindex, 0); + * + * See also the description of the **bpf_skb_get_tunnel_key**\ () + * helper for additional information. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_skb_set_tunnel_key)(struct __sk_buff *skb, struct bpf_tunnel_key *key, __u32 size, __u64 flags) = (void *) 21; + +/* + * bpf_perf_event_read + * + * Read the value of a perf event counter. This helper relies on a + * *map* of type **BPF_MAP_TYPE_PERF_EVENT_ARRAY**. The nature of + * the perf event counter is selected when *map* is updated with + * perf event file descriptors. The *map* is an array whose size + * is the number of available CPUs, and each cell contains a value + * relative to one CPU. The value to retrieve is indicated by + * *flags*, that contains the index of the CPU to look up, masked + * with **BPF_F_INDEX_MASK**. Alternatively, *flags* can be set to + * **BPF_F_CURRENT_CPU** to indicate that the value for the + * current CPU should be retrieved. + * + * Note that before Linux 4.13, only hardware perf event can be + * retrieved. + * + * Also, be aware that the newer helper + * **bpf_perf_event_read_value**\ () is recommended over + * **bpf_perf_event_read**\ () in general. The latter has some ABI + * quirks where error and counter value are used as a return code + * (which is wrong to do since ranges may overlap). This issue is + * fixed with **bpf_perf_event_read_value**\ (), which at the same + * time provides more features over the **bpf_perf_event_read**\ + * () interface. Please refer to the description of + * **bpf_perf_event_read_value**\ () for details. + * + * Returns + * The value of the perf event counter read from the map, or a + * negative error code in case of failure. + */ +static __u64 (*bpf_perf_event_read)(void *map, __u64 flags) = (void *) 22; + +/* + * bpf_redirect + * + * Redirect the packet to another net device of index *ifindex*. + * This helper is somewhat similar to **bpf_clone_redirect**\ + * (), except that the packet is not cloned, which provides + * increased performance. + * + * Except for XDP, both ingress and egress interfaces can be used + * for redirection. The **BPF_F_INGRESS** value in *flags* is used + * to make the distinction (ingress path is selected if the flag + * is present, egress path otherwise). Currently, XDP only + * supports redirection to the egress interface, and accepts no + * flag at all. + * + * The same effect can also be attained with the more generic + * **bpf_redirect_map**\ (), which uses a BPF map to store the + * redirect target instead of providing it directly to the helper. + * + * Returns + * For XDP, the helper returns **XDP_REDIRECT** on success or + * **XDP_ABORTED** on error. For other program types, the values + * are **TC_ACT_REDIRECT** on success or **TC_ACT_SHOT** on + * error. + */ +static long (*bpf_redirect)(__u32 ifindex, __u64 flags) = (void *) 23; + +/* + * bpf_get_route_realm + * + * Retrieve the realm or the route, that is to say the + * **tclassid** field of the destination for the *skb*. The + * identifier retrieved is a user-provided tag, similar to the + * one used with the net_cls cgroup (see description for + * **bpf_get_cgroup_classid**\ () helper), but here this tag is + * held by a route (a destination entry), not by a task. + * + * Retrieving this identifier works with the clsact TC egress hook + * (see also **tc-bpf(8)**), or alternatively on conventional + * classful egress qdiscs, but not on TC ingress path. In case of + * clsact TC egress hook, this has the advantage that, internally, + * the destination entry has not been dropped yet in the transmit + * path. Therefore, the destination entry does not need to be + * artificially held via **netif_keep_dst**\ () for a classful + * qdisc until the *skb* is freed. + * + * This helper is available only if the kernel was compiled with + * **CONFIG_IP_ROUTE_CLASSID** configuration option. + * + * Returns + * The realm of the route for the packet associated to *skb*, or 0 + * if none was found. + */ +static __u32 (*bpf_get_route_realm)(struct __sk_buff *skb) = (void *) 24; + +/* + * bpf_perf_event_output + * + * Write raw *data* blob into a special BPF perf event held by + * *map* of type **BPF_MAP_TYPE_PERF_EVENT_ARRAY**. This perf + * event must have the following attributes: **PERF_SAMPLE_RAW** + * as **sample_type**, **PERF_TYPE_SOFTWARE** as **type**, and + * **PERF_COUNT_SW_BPF_OUTPUT** as **config**. + * + * The *flags* are used to indicate the index in *map* for which + * the value must be put, masked with **BPF_F_INDEX_MASK**. + * Alternatively, *flags* can be set to **BPF_F_CURRENT_CPU** + * to indicate that the index of the current CPU core should be + * used. + * + * The value to write, of *size*, is passed through eBPF stack and + * pointed by *data*. + * + * The context of the program *ctx* needs also be passed to the + * helper. + * + * On user space, a program willing to read the values needs to + * call **perf_event_open**\ () on the perf event (either for + * one or for all CPUs) and to store the file descriptor into the + * *map*. This must be done before the eBPF program can send data + * into it. An example is available in file + * *samples/bpf/trace_output_user.c* in the Linux kernel source + * tree (the eBPF program counterpart is in + * *samples/bpf/trace_output_kern.c*). + * + * **bpf_perf_event_output**\ () achieves better performance + * than **bpf_trace_printk**\ () for sharing data with user + * space, and is much better suitable for streaming data from eBPF + * programs. + * + * Note that this helper is not restricted to tracing use cases + * and can be used with programs attached to TC or XDP as well, + * where it allows for passing data to user space listeners. Data + * can be: + * + * * Only custom structs, + * * Only the packet payload, or + * * A combination of both. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_perf_event_output)(void *ctx, void *map, __u64 flags, void *data, __u64 size) = (void *) 25; + +/* + * bpf_skb_load_bytes + * + * This helper was provided as an easy way to load data from a + * packet. It can be used to load *len* bytes from *offset* from + * the packet associated to *skb*, into the buffer pointed by + * *to*. + * + * Since Linux 4.7, usage of this helper has mostly been replaced + * by "direct packet access", enabling packet data to be + * manipulated with *skb*\ **->data** and *skb*\ **->data_end** + * pointing respectively to the first byte of packet data and to + * the byte after the last byte of packet data. However, it + * remains useful if one wishes to read large quantities of data + * at once from a packet into the eBPF stack. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_skb_load_bytes)(const void *skb, __u32 offset, void *to, __u32 len) = (void *) 26; + +/* + * bpf_get_stackid + * + * Walk a user or a kernel stack and return its id. To achieve + * this, the helper needs *ctx*, which is a pointer to the context + * on which the tracing program is executed, and a pointer to a + * *map* of type **BPF_MAP_TYPE_STACK_TRACE**. + * + * The last argument, *flags*, holds the number of stack frames to + * skip (from 0 to 255), masked with + * **BPF_F_SKIP_FIELD_MASK**. The next bits can be used to set + * a combination of the following flags: + * + * **BPF_F_USER_STACK** + * Collect a user space stack instead of a kernel stack. + * **BPF_F_FAST_STACK_CMP** + * Compare stacks by hash only. + * **BPF_F_REUSE_STACKID** + * If two different stacks hash into the same *stackid*, + * discard the old one. + * + * The stack id retrieved is a 32 bit long integer handle which + * can be further combined with other data (including other stack + * ids) and used as a key into maps. This can be useful for + * generating a variety of graphs (such as flame graphs or off-cpu + * graphs). + * + * For walking a stack, this helper is an improvement over + * **bpf_probe_read**\ (), which can be used with unrolled loops + * but is not efficient and consumes a lot of eBPF instructions. + * Instead, **bpf_get_stackid**\ () can collect up to + * **PERF_MAX_STACK_DEPTH** both kernel and user frames. Note that + * this limit can be controlled with the **sysctl** program, and + * that it should be manually increased in order to profile long + * user stacks (such as stacks for Java programs). To do so, use: + * + * :: + * + * # sysctl kernel.perf_event_max_stack= + * + * Returns + * The positive or null stack id on success, or a negative error + * in case of failure. + */ +static long (*bpf_get_stackid)(void *ctx, void *map, __u64 flags) = (void *) 27; + +/* + * bpf_csum_diff + * + * Compute a checksum difference, from the raw buffer pointed by + * *from*, of length *from_size* (that must be a multiple of 4), + * towards the raw buffer pointed by *to*, of size *to_size* + * (same remark). An optional *seed* can be added to the value + * (this can be cascaded, the seed may come from a previous call + * to the helper). + * + * This is flexible enough to be used in several ways: + * + * * With *from_size* == 0, *to_size* > 0 and *seed* set to + * checksum, it can be used when pushing new data. + * * With *from_size* > 0, *to_size* == 0 and *seed* set to + * checksum, it can be used when removing data from a packet. + * * With *from_size* > 0, *to_size* > 0 and *seed* set to 0, it + * can be used to compute a diff. Note that *from_size* and + * *to_size* do not need to be equal. + * + * This helper can be used in combination with + * **bpf_l3_csum_replace**\ () and **bpf_l4_csum_replace**\ (), to + * which one can feed in the difference computed with + * **bpf_csum_diff**\ (). + * + * Returns + * The checksum result, or a negative error code in case of + * failure. + */ +static __s64 (*bpf_csum_diff)(__be32 *from, __u32 from_size, __be32 *to, __u32 to_size, __wsum seed) = (void *) 28; + +/* + * bpf_skb_get_tunnel_opt + * + * Retrieve tunnel options metadata for the packet associated to + * *skb*, and store the raw tunnel option data to the buffer *opt* + * of *size*. + * + * This helper can be used with encapsulation devices that can + * operate in "collect metadata" mode (please refer to the related + * note in the description of **bpf_skb_get_tunnel_key**\ () for + * more details). A particular example where this can be used is + * in combination with the Geneve encapsulation protocol, where it + * allows for pushing (with **bpf_skb_get_tunnel_opt**\ () helper) + * and retrieving arbitrary TLVs (Type-Length-Value headers) from + * the eBPF program. This allows for full customization of these + * headers. + * + * Returns + * The size of the option data retrieved. + */ +static long (*bpf_skb_get_tunnel_opt)(struct __sk_buff *skb, void *opt, __u32 size) = (void *) 29; + +/* + * bpf_skb_set_tunnel_opt + * + * Set tunnel options metadata for the packet associated to *skb* + * to the option data contained in the raw buffer *opt* of *size*. + * + * See also the description of the **bpf_skb_get_tunnel_opt**\ () + * helper for additional information. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_skb_set_tunnel_opt)(struct __sk_buff *skb, void *opt, __u32 size) = (void *) 30; + +/* + * bpf_skb_change_proto + * + * Change the protocol of the *skb* to *proto*. Currently + * supported are transition from IPv4 to IPv6, and from IPv6 to + * IPv4. The helper takes care of the groundwork for the + * transition, including resizing the socket buffer. The eBPF + * program is expected to fill the new headers, if any, via + * **skb_store_bytes**\ () and to recompute the checksums with + * **bpf_l3_csum_replace**\ () and **bpf_l4_csum_replace**\ + * (). The main case for this helper is to perform NAT64 + * operations out of an eBPF program. + * + * Internally, the GSO type is marked as dodgy so that headers are + * checked and segments are recalculated by the GSO/GRO engine. + * The size for GSO target is adapted as well. + * + * All values for *flags* are reserved for future usage, and must + * be left at zero. + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_skb_change_proto)(struct __sk_buff *skb, __be16 proto, __u64 flags) = (void *) 31; + +/* + * bpf_skb_change_type + * + * Change the packet type for the packet associated to *skb*. This + * comes down to setting *skb*\ **->pkt_type** to *type*, except + * the eBPF program does not have a write access to *skb*\ + * **->pkt_type** beside this helper. Using a helper here allows + * for graceful handling of errors. + * + * The major use case is to change incoming *skb*s to + * **PACKET_HOST** in a programmatic way instead of having to + * recirculate via **redirect**\ (..., **BPF_F_INGRESS**), for + * example. + * + * Note that *type* only allows certain values. At this time, they + * are: + * + * **PACKET_HOST** + * Packet is for us. + * **PACKET_BROADCAST** + * Send packet to all. + * **PACKET_MULTICAST** + * Send packet to group. + * **PACKET_OTHERHOST** + * Send packet to someone else. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_skb_change_type)(struct __sk_buff *skb, __u32 type) = (void *) 32; + +/* + * bpf_skb_under_cgroup + * + * Check whether *skb* is a descendant of the cgroup2 held by + * *map* of type **BPF_MAP_TYPE_CGROUP_ARRAY**, at *index*. + * + * Returns + * The return value depends on the result of the test, and can be: + * + * * 0, if the *skb* failed the cgroup2 descendant test. + * * 1, if the *skb* succeeded the cgroup2 descendant test. + * * A negative error code, if an error occurred. + */ +static long (*bpf_skb_under_cgroup)(struct __sk_buff *skb, void *map, __u32 index) = (void *) 33; + +/* + * bpf_get_hash_recalc + * + * Retrieve the hash of the packet, *skb*\ **->hash**. If it is + * not set, in particular if the hash was cleared due to mangling, + * recompute this hash. Later accesses to the hash can be done + * directly with *skb*\ **->hash**. + * + * Calling **bpf_set_hash_invalid**\ (), changing a packet + * prototype with **bpf_skb_change_proto**\ (), or calling + * **bpf_skb_store_bytes**\ () with the + * **BPF_F_INVALIDATE_HASH** are actions susceptible to clear + * the hash and to trigger a new computation for the next call to + * **bpf_get_hash_recalc**\ (). + * + * Returns + * The 32-bit hash. + */ +static __u32 (*bpf_get_hash_recalc)(struct __sk_buff *skb) = (void *) 34; + +/* + * bpf_get_current_task + * + * + * Returns + * A pointer to the current task struct. + */ +static __u64 (*bpf_get_current_task)(void) = (void *) 35; + +/* + * bpf_probe_write_user + * + * Attempt in a safe way to write *len* bytes from the buffer + * *src* to *dst* in memory. It only works for threads that are in + * user context, and *dst* must be a valid user space address. + * + * This helper should not be used to implement any kind of + * security mechanism because of TOC-TOU attacks, but rather to + * debug, divert, and manipulate execution of semi-cooperative + * processes. + * + * Keep in mind that this feature is meant for experiments, and it + * has a risk of crashing the system and running programs. + * Therefore, when an eBPF program using this helper is attached, + * a warning including PID and process name is printed to kernel + * logs. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_probe_write_user)(void *dst, const void *src, __u32 len) = (void *) 36; + +/* + * bpf_current_task_under_cgroup + * + * Check whether the probe is being run is the context of a given + * subset of the cgroup2 hierarchy. The cgroup2 to test is held by + * *map* of type **BPF_MAP_TYPE_CGROUP_ARRAY**, at *index*. + * + * Returns + * The return value depends on the result of the test, and can be: + * + * * 0, if current task belongs to the cgroup2. + * * 1, if current task does not belong to the cgroup2. + * * A negative error code, if an error occurred. + */ +static long (*bpf_current_task_under_cgroup)(void *map, __u32 index) = (void *) 37; + +/* + * bpf_skb_change_tail + * + * Resize (trim or grow) the packet associated to *skb* to the + * new *len*. The *flags* are reserved for future usage, and must + * be left at zero. + * + * The basic idea is that the helper performs the needed work to + * change the size of the packet, then the eBPF program rewrites + * the rest via helpers like **bpf_skb_store_bytes**\ (), + * **bpf_l3_csum_replace**\ (), **bpf_l3_csum_replace**\ () + * and others. This helper is a slow path utility intended for + * replies with control messages. And because it is targeted for + * slow path, the helper itself can afford to be slow: it + * implicitly linearizes, unclones and drops offloads from the + * *skb*. + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_skb_change_tail)(struct __sk_buff *skb, __u32 len, __u64 flags) = (void *) 38; + +/* + * bpf_skb_pull_data + * + * Pull in non-linear data in case the *skb* is non-linear and not + * all of *len* are part of the linear section. Make *len* bytes + * from *skb* readable and writable. If a zero value is passed for + * *len*, then the whole length of the *skb* is pulled. + * + * This helper is only needed for reading and writing with direct + * packet access. + * + * For direct packet access, testing that offsets to access + * are within packet boundaries (test on *skb*\ **->data_end**) is + * susceptible to fail if offsets are invalid, or if the requested + * data is in non-linear parts of the *skb*. On failure the + * program can just bail out, or in the case of a non-linear + * buffer, use a helper to make the data available. The + * **bpf_skb_load_bytes**\ () helper is a first solution to access + * the data. Another one consists in using **bpf_skb_pull_data** + * to pull in once the non-linear parts, then retesting and + * eventually access the data. + * + * At the same time, this also makes sure the *skb* is uncloned, + * which is a necessary condition for direct write. As this needs + * to be an invariant for the write part only, the verifier + * detects writes and adds a prologue that is calling + * **bpf_skb_pull_data()** to effectively unclone the *skb* from + * the very beginning in case it is indeed cloned. + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_skb_pull_data)(struct __sk_buff *skb, __u32 len) = (void *) 39; + +/* + * bpf_csum_update + * + * Add the checksum *csum* into *skb*\ **->csum** in case the + * driver has supplied a checksum for the entire packet into that + * field. Return an error otherwise. This helper is intended to be + * used in combination with **bpf_csum_diff**\ (), in particular + * when the checksum needs to be updated after data has been + * written into the packet through direct packet access. + * + * Returns + * The checksum on success, or a negative error code in case of + * failure. + */ +static __s64 (*bpf_csum_update)(struct __sk_buff *skb, __wsum csum) = (void *) 40; + +/* + * bpf_set_hash_invalid + * + * Invalidate the current *skb*\ **->hash**. It can be used after + * mangling on headers through direct packet access, in order to + * indicate that the hash is outdated and to trigger a + * recalculation the next time the kernel tries to access this + * hash or when the **bpf_get_hash_recalc**\ () helper is called. + * + */ +static void (*bpf_set_hash_invalid)(struct __sk_buff *skb) = (void *) 41; + +/* + * bpf_get_numa_node_id + * + * Return the id of the current NUMA node. The primary use case + * for this helper is the selection of sockets for the local NUMA + * node, when the program is attached to sockets using the + * **SO_ATTACH_REUSEPORT_EBPF** option (see also **socket(7)**), + * but the helper is also available to other eBPF program types, + * similarly to **bpf_get_smp_processor_id**\ (). + * + * Returns + * The id of current NUMA node. + */ +static long (*bpf_get_numa_node_id)(void) = (void *) 42; + +/* + * bpf_skb_change_head + * + * Grows headroom of packet associated to *skb* and adjusts the + * offset of the MAC header accordingly, adding *len* bytes of + * space. It automatically extends and reallocates memory as + * required. + * + * This helper can be used on a layer 3 *skb* to push a MAC header + * for redirection into a layer 2 device. + * + * All values for *flags* are reserved for future usage, and must + * be left at zero. + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_skb_change_head)(struct __sk_buff *skb, __u32 len, __u64 flags) = (void *) 43; + +/* + * bpf_xdp_adjust_head + * + * Adjust (move) *xdp_md*\ **->data** by *delta* bytes. Note that + * it is possible to use a negative value for *delta*. This helper + * can be used to prepare the packet for pushing or popping + * headers. + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_xdp_adjust_head)(struct xdp_md *xdp_md, int delta) = (void *) 44; + +/* + * bpf_probe_read_str + * + * Copy a NUL terminated string from an unsafe kernel address + * *unsafe_ptr* to *dst*. See **bpf_probe_read_kernel_str**\ () for + * more details. + * + * Generally, use **bpf_probe_read_user_str**\ () or + * **bpf_probe_read_kernel_str**\ () instead. + * + * Returns + * On success, the strictly positive length of the string, + * including the trailing NUL character. On error, a negative + * value. + */ +static long (*bpf_probe_read_str)(void *dst, __u32 size, const void *unsafe_ptr) = (void *) 45; + +/* + * bpf_get_socket_cookie + * + * If the **struct sk_buff** pointed by *skb* has a known socket, + * retrieve the cookie (generated by the kernel) of this socket. + * If no cookie has been set yet, generate a new cookie. Once + * generated, the socket cookie remains stable for the life of the + * socket. This helper can be useful for monitoring per socket + * networking traffic statistics as it provides a global socket + * identifier that can be assumed unique. + * + * Returns + * A 8-byte long unique number on success, or 0 if the socket + * field is missing inside *skb*. + */ +static __u64 (*bpf_get_socket_cookie)(void *ctx) = (void *) 46; + +/* + * bpf_get_socket_uid + * + * + * Returns + * The owner UID of the socket associated to *skb*. If the socket + * is **NULL**, or if it is not a full socket (i.e. if it is a + * time-wait or a request socket instead), **overflowuid** value + * is returned (note that **overflowuid** might also be the actual + * UID value for the socket). + */ +static __u32 (*bpf_get_socket_uid)(struct __sk_buff *skb) = (void *) 47; + +/* + * bpf_set_hash + * + * Set the full hash for *skb* (set the field *skb*\ **->hash**) + * to value *hash*. + * + * Returns + * 0 + */ +static long (*bpf_set_hash)(struct __sk_buff *skb, __u32 hash) = (void *) 48; + +/* + * bpf_setsockopt + * + * Emulate a call to **setsockopt()** on the socket associated to + * *bpf_socket*, which must be a full socket. The *level* at + * which the option resides and the name *optname* of the option + * must be specified, see **setsockopt(2)** for more information. + * The option value of length *optlen* is pointed by *optval*. + * + * *bpf_socket* should be one of the following: + * + * * **struct bpf_sock_ops** for **BPF_PROG_TYPE_SOCK_OPS**. + * * **struct bpf_sock_addr** for **BPF_CGROUP_INET4_CONNECT** + * and **BPF_CGROUP_INET6_CONNECT**. + * + * This helper actually implements a subset of **setsockopt()**. + * It supports the following *level*\ s: + * + * * **SOL_SOCKET**, which supports the following *optname*\ s: + * **SO_RCVBUF**, **SO_SNDBUF**, **SO_MAX_PACING_RATE**, + * **SO_PRIORITY**, **SO_RCVLOWAT**, **SO_MARK**, + * **SO_BINDTODEVICE**, **SO_KEEPALIVE**. + * * **IPPROTO_TCP**, which supports the following *optname*\ s: + * **TCP_CONGESTION**, **TCP_BPF_IW**, + * **TCP_BPF_SNDCWND_CLAMP**, **TCP_SAVE_SYN**, + * **TCP_KEEPIDLE**, **TCP_KEEPINTVL**, **TCP_KEEPCNT**, + * **TCP_SYNCNT**, **TCP_USER_TIMEOUT**, **TCP_NOTSENT_LOWAT**. + * * **IPPROTO_IP**, which supports *optname* **IP_TOS**. + * * **IPPROTO_IPV6**, which supports *optname* **IPV6_TCLASS**. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_setsockopt)(void *bpf_socket, int level, int optname, void *optval, int optlen) = (void *) 49; + +/* + * bpf_skb_adjust_room + * + * Grow or shrink the room for data in the packet associated to + * *skb* by *len_diff*, and according to the selected *mode*. + * + * By default, the helper will reset any offloaded checksum + * indicator of the skb to CHECKSUM_NONE. This can be avoided + * by the following flag: + * + * * **BPF_F_ADJ_ROOM_NO_CSUM_RESET**: Do not reset offloaded + * checksum data of the skb to CHECKSUM_NONE. + * + * There are two supported modes at this time: + * + * * **BPF_ADJ_ROOM_MAC**: Adjust room at the mac layer + * (room space is added or removed below the layer 2 header). + * + * * **BPF_ADJ_ROOM_NET**: Adjust room at the network layer + * (room space is added or removed below the layer 3 header). + * + * The following flags are supported at this time: + * + * * **BPF_F_ADJ_ROOM_FIXED_GSO**: Do not adjust gso_size. + * Adjusting mss in this way is not allowed for datagrams. + * + * * **BPF_F_ADJ_ROOM_ENCAP_L3_IPV4**, + * **BPF_F_ADJ_ROOM_ENCAP_L3_IPV6**: + * Any new space is reserved to hold a tunnel header. + * Configure skb offsets and other fields accordingly. + * + * * **BPF_F_ADJ_ROOM_ENCAP_L4_GRE**, + * **BPF_F_ADJ_ROOM_ENCAP_L4_UDP**: + * Use with ENCAP_L3 flags to further specify the tunnel type. + * + * * **BPF_F_ADJ_ROOM_ENCAP_L2**\ (*len*): + * Use with ENCAP_L3/L4 flags to further specify the tunnel + * type; *len* is the length of the inner MAC header. + * + * * **BPF_F_ADJ_ROOM_ENCAP_L2_ETH**: + * Use with BPF_F_ADJ_ROOM_ENCAP_L2 flag to further specify the + * L2 type as Ethernet. + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_skb_adjust_room)(struct __sk_buff *skb, __s32 len_diff, __u32 mode, __u64 flags) = (void *) 50; + +/* + * bpf_redirect_map + * + * Redirect the packet to the endpoint referenced by *map* at + * index *key*. Depending on its type, this *map* can contain + * references to net devices (for forwarding packets through other + * ports), or to CPUs (for redirecting XDP frames to another CPU; + * but this is only implemented for native XDP (with driver + * support) as of this writing). + * + * The lower two bits of *flags* are used as the return code if + * the map lookup fails. This is so that the return value can be + * one of the XDP program return codes up to **XDP_TX**, as chosen + * by the caller. The higher bits of *flags* can be set to + * BPF_F_BROADCAST or BPF_F_EXCLUDE_INGRESS as defined below. + * + * With BPF_F_BROADCAST the packet will be broadcasted to all the + * interfaces in the map, with BPF_F_EXCLUDE_INGRESS the ingress + * interface will be excluded when do broadcasting. + * + * See also **bpf_redirect**\ (), which only supports redirecting + * to an ifindex, but doesn't require a map to do so. + * + * Returns + * **XDP_REDIRECT** on success, or the value of the two lower bits + * of the *flags* argument on error. + */ +static long (*bpf_redirect_map)(void *map, __u32 key, __u64 flags) = (void *) 51; + +/* + * bpf_sk_redirect_map + * + * Redirect the packet to the socket referenced by *map* (of type + * **BPF_MAP_TYPE_SOCKMAP**) at index *key*. Both ingress and + * egress interfaces can be used for redirection. The + * **BPF_F_INGRESS** value in *flags* is used to make the + * distinction (ingress path is selected if the flag is present, + * egress path otherwise). This is the only flag supported for now. + * + * Returns + * **SK_PASS** on success, or **SK_DROP** on error. + */ +static long (*bpf_sk_redirect_map)(struct __sk_buff *skb, void *map, __u32 key, __u64 flags) = (void *) 52; + +/* + * bpf_sock_map_update + * + * Add an entry to, or update a *map* referencing sockets. The + * *skops* is used as a new value for the entry associated to + * *key*. *flags* is one of: + * + * **BPF_NOEXIST** + * The entry for *key* must not exist in the map. + * **BPF_EXIST** + * The entry for *key* must already exist in the map. + * **BPF_ANY** + * No condition on the existence of the entry for *key*. + * + * If the *map* has eBPF programs (parser and verdict), those will + * be inherited by the socket being added. If the socket is + * already attached to eBPF programs, this results in an error. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_sock_map_update)(struct bpf_sock_ops *skops, void *map, void *key, __u64 flags) = (void *) 53; + +/* + * bpf_xdp_adjust_meta + * + * Adjust the address pointed by *xdp_md*\ **->data_meta** by + * *delta* (which can be positive or negative). Note that this + * operation modifies the address stored in *xdp_md*\ **->data**, + * so the latter must be loaded only after the helper has been + * called. + * + * The use of *xdp_md*\ **->data_meta** is optional and programs + * are not required to use it. The rationale is that when the + * packet is processed with XDP (e.g. as DoS filter), it is + * possible to push further meta data along with it before passing + * to the stack, and to give the guarantee that an ingress eBPF + * program attached as a TC classifier on the same device can pick + * this up for further post-processing. Since TC works with socket + * buffers, it remains possible to set from XDP the **mark** or + * **priority** pointers, or other pointers for the socket buffer. + * Having this scratch space generic and programmable allows for + * more flexibility as the user is free to store whatever meta + * data they need. + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_xdp_adjust_meta)(struct xdp_md *xdp_md, int delta) = (void *) 54; + +/* + * bpf_perf_event_read_value + * + * Read the value of a perf event counter, and store it into *buf* + * of size *buf_size*. This helper relies on a *map* of type + * **BPF_MAP_TYPE_PERF_EVENT_ARRAY**. The nature of the perf event + * counter is selected when *map* is updated with perf event file + * descriptors. The *map* is an array whose size is the number of + * available CPUs, and each cell contains a value relative to one + * CPU. The value to retrieve is indicated by *flags*, that + * contains the index of the CPU to look up, masked with + * **BPF_F_INDEX_MASK**. Alternatively, *flags* can be set to + * **BPF_F_CURRENT_CPU** to indicate that the value for the + * current CPU should be retrieved. + * + * This helper behaves in a way close to + * **bpf_perf_event_read**\ () helper, save that instead of + * just returning the value observed, it fills the *buf* + * structure. This allows for additional data to be retrieved: in + * particular, the enabled and running times (in *buf*\ + * **->enabled** and *buf*\ **->running**, respectively) are + * copied. In general, **bpf_perf_event_read_value**\ () is + * recommended over **bpf_perf_event_read**\ (), which has some + * ABI issues and provides fewer functionalities. + * + * These values are interesting, because hardware PMU (Performance + * Monitoring Unit) counters are limited resources. When there are + * more PMU based perf events opened than available counters, + * kernel will multiplex these events so each event gets certain + * percentage (but not all) of the PMU time. In case that + * multiplexing happens, the number of samples or counter value + * will not reflect the case compared to when no multiplexing + * occurs. This makes comparison between different runs difficult. + * Typically, the counter value should be normalized before + * comparing to other experiments. The usual normalization is done + * as follows. + * + * :: + * + * normalized_counter = counter * t_enabled / t_running + * + * Where t_enabled is the time enabled for event and t_running is + * the time running for event since last normalization. The + * enabled and running times are accumulated since the perf event + * open. To achieve scaling factor between two invocations of an + * eBPF program, users can use CPU id as the key (which is + * typical for perf array usage model) to remember the previous + * value and do the calculation inside the eBPF program. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_perf_event_read_value)(void *map, __u64 flags, struct bpf_perf_event_value *buf, __u32 buf_size) = (void *) 55; + +/* + * bpf_perf_prog_read_value + * + * For en eBPF program attached to a perf event, retrieve the + * value of the event counter associated to *ctx* and store it in + * the structure pointed by *buf* and of size *buf_size*. Enabled + * and running times are also stored in the structure (see + * description of helper **bpf_perf_event_read_value**\ () for + * more details). + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_perf_prog_read_value)(struct bpf_perf_event_data *ctx, struct bpf_perf_event_value *buf, __u32 buf_size) = (void *) 56; + +/* + * bpf_getsockopt + * + * Emulate a call to **getsockopt()** on the socket associated to + * *bpf_socket*, which must be a full socket. The *level* at + * which the option resides and the name *optname* of the option + * must be specified, see **getsockopt(2)** for more information. + * The retrieved value is stored in the structure pointed by + * *opval* and of length *optlen*. + * + * *bpf_socket* should be one of the following: + * + * * **struct bpf_sock_ops** for **BPF_PROG_TYPE_SOCK_OPS**. + * * **struct bpf_sock_addr** for **BPF_CGROUP_INET4_CONNECT** + * and **BPF_CGROUP_INET6_CONNECT**. + * + * This helper actually implements a subset of **getsockopt()**. + * It supports the following *level*\ s: + * + * * **IPPROTO_TCP**, which supports *optname* + * **TCP_CONGESTION**. + * * **IPPROTO_IP**, which supports *optname* **IP_TOS**. + * * **IPPROTO_IPV6**, which supports *optname* **IPV6_TCLASS**. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_getsockopt)(void *bpf_socket, int level, int optname, void *optval, int optlen) = (void *) 57; + +/* + * bpf_override_return + * + * Used for error injection, this helper uses kprobes to override + * the return value of the probed function, and to set it to *rc*. + * The first argument is the context *regs* on which the kprobe + * works. + * + * This helper works by setting the PC (program counter) + * to an override function which is run in place of the original + * probed function. This means the probed function is not run at + * all. The replacement function just returns with the required + * value. + * + * This helper has security implications, and thus is subject to + * restrictions. It is only available if the kernel was compiled + * with the **CONFIG_BPF_KPROBE_OVERRIDE** configuration + * option, and in this case it only works on functions tagged with + * **ALLOW_ERROR_INJECTION** in the kernel code. + * + * Also, the helper is only available for the architectures having + * the CONFIG_FUNCTION_ERROR_INJECTION option. As of this writing, + * x86 architecture is the only one to support this feature. + * + * Returns + * 0 + */ +static long (*bpf_override_return)(struct pt_regs *regs, __u64 rc) = (void *) 58; + +/* + * bpf_sock_ops_cb_flags_set + * + * Attempt to set the value of the **bpf_sock_ops_cb_flags** field + * for the full TCP socket associated to *bpf_sock_ops* to + * *argval*. + * + * The primary use of this field is to determine if there should + * be calls to eBPF programs of type + * **BPF_PROG_TYPE_SOCK_OPS** at various points in the TCP + * code. A program of the same type can change its value, per + * connection and as necessary, when the connection is + * established. This field is directly accessible for reading, but + * this helper must be used for updates in order to return an + * error if an eBPF program tries to set a callback that is not + * supported in the current kernel. + * + * *argval* is a flag array which can combine these flags: + * + * * **BPF_SOCK_OPS_RTO_CB_FLAG** (retransmission time out) + * * **BPF_SOCK_OPS_RETRANS_CB_FLAG** (retransmission) + * * **BPF_SOCK_OPS_STATE_CB_FLAG** (TCP state change) + * * **BPF_SOCK_OPS_RTT_CB_FLAG** (every RTT) + * + * Therefore, this function can be used to clear a callback flag by + * setting the appropriate bit to zero. e.g. to disable the RTO + * callback: + * + * **bpf_sock_ops_cb_flags_set(bpf_sock,** + * **bpf_sock->bpf_sock_ops_cb_flags & ~BPF_SOCK_OPS_RTO_CB_FLAG)** + * + * Here are some examples of where one could call such eBPF + * program: + * + * * When RTO fires. + * * When a packet is retransmitted. + * * When the connection terminates. + * * When a packet is sent. + * * When a packet is received. + * + * Returns + * Code **-EINVAL** if the socket is not a full TCP socket; + * otherwise, a positive number containing the bits that could not + * be set is returned (which comes down to 0 if all bits were set + * as required). + */ +static long (*bpf_sock_ops_cb_flags_set)(struct bpf_sock_ops *bpf_sock, int argval) = (void *) 59; + +/* + * bpf_msg_redirect_map + * + * This helper is used in programs implementing policies at the + * socket level. If the message *msg* is allowed to pass (i.e. if + * the verdict eBPF program returns **SK_PASS**), redirect it to + * the socket referenced by *map* (of type + * **BPF_MAP_TYPE_SOCKMAP**) at index *key*. Both ingress and + * egress interfaces can be used for redirection. The + * **BPF_F_INGRESS** value in *flags* is used to make the + * distinction (ingress path is selected if the flag is present, + * egress path otherwise). This is the only flag supported for now. + * + * Returns + * **SK_PASS** on success, or **SK_DROP** on error. + */ +static long (*bpf_msg_redirect_map)(struct sk_msg_md *msg, void *map, __u32 key, __u64 flags) = (void *) 60; + +/* + * bpf_msg_apply_bytes + * + * For socket policies, apply the verdict of the eBPF program to + * the next *bytes* (number of bytes) of message *msg*. + * + * For example, this helper can be used in the following cases: + * + * * A single **sendmsg**\ () or **sendfile**\ () system call + * contains multiple logical messages that the eBPF program is + * supposed to read and for which it should apply a verdict. + * * An eBPF program only cares to read the first *bytes* of a + * *msg*. If the message has a large payload, then setting up + * and calling the eBPF program repeatedly for all bytes, even + * though the verdict is already known, would create unnecessary + * overhead. + * + * When called from within an eBPF program, the helper sets a + * counter internal to the BPF infrastructure, that is used to + * apply the last verdict to the next *bytes*. If *bytes* is + * smaller than the current data being processed from a + * **sendmsg**\ () or **sendfile**\ () system call, the first + * *bytes* will be sent and the eBPF program will be re-run with + * the pointer for start of data pointing to byte number *bytes* + * **+ 1**. If *bytes* is larger than the current data being + * processed, then the eBPF verdict will be applied to multiple + * **sendmsg**\ () or **sendfile**\ () calls until *bytes* are + * consumed. + * + * Note that if a socket closes with the internal counter holding + * a non-zero value, this is not a problem because data is not + * being buffered for *bytes* and is sent as it is received. + * + * Returns + * 0 + */ +static long (*bpf_msg_apply_bytes)(struct sk_msg_md *msg, __u32 bytes) = (void *) 61; + +/* + * bpf_msg_cork_bytes + * + * For socket policies, prevent the execution of the verdict eBPF + * program for message *msg* until *bytes* (byte number) have been + * accumulated. + * + * This can be used when one needs a specific number of bytes + * before a verdict can be assigned, even if the data spans + * multiple **sendmsg**\ () or **sendfile**\ () calls. The extreme + * case would be a user calling **sendmsg**\ () repeatedly with + * 1-byte long message segments. Obviously, this is bad for + * performance, but it is still valid. If the eBPF program needs + * *bytes* bytes to validate a header, this helper can be used to + * prevent the eBPF program to be called again until *bytes* have + * been accumulated. + * + * Returns + * 0 + */ +static long (*bpf_msg_cork_bytes)(struct sk_msg_md *msg, __u32 bytes) = (void *) 62; + +/* + * bpf_msg_pull_data + * + * For socket policies, pull in non-linear data from user space + * for *msg* and set pointers *msg*\ **->data** and *msg*\ + * **->data_end** to *start* and *end* bytes offsets into *msg*, + * respectively. + * + * If a program of type **BPF_PROG_TYPE_SK_MSG** is run on a + * *msg* it can only parse data that the (**data**, **data_end**) + * pointers have already consumed. For **sendmsg**\ () hooks this + * is likely the first scatterlist element. But for calls relying + * on the **sendpage** handler (e.g. **sendfile**\ ()) this will + * be the range (**0**, **0**) because the data is shared with + * user space and by default the objective is to avoid allowing + * user space to modify data while (or after) eBPF verdict is + * being decided. This helper can be used to pull in data and to + * set the start and end pointer to given values. Data will be + * copied if necessary (i.e. if data was not linear and if start + * and end pointers do not point to the same chunk). + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * All values for *flags* are reserved for future usage, and must + * be left at zero. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_msg_pull_data)(struct sk_msg_md *msg, __u32 start, __u32 end, __u64 flags) = (void *) 63; + +/* + * bpf_bind + * + * Bind the socket associated to *ctx* to the address pointed by + * *addr*, of length *addr_len*. This allows for making outgoing + * connection from the desired IP address, which can be useful for + * example when all processes inside a cgroup should use one + * single IP address on a host that has multiple IP configured. + * + * This helper works for IPv4 and IPv6, TCP and UDP sockets. The + * domain (*addr*\ **->sa_family**) must be **AF_INET** (or + * **AF_INET6**). It's advised to pass zero port (**sin_port** + * or **sin6_port**) which triggers IP_BIND_ADDRESS_NO_PORT-like + * behavior and lets the kernel efficiently pick up an unused + * port as long as 4-tuple is unique. Passing non-zero port might + * lead to degraded performance. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_bind)(struct bpf_sock_addr *ctx, struct sockaddr *addr, int addr_len) = (void *) 64; + +/* + * bpf_xdp_adjust_tail + * + * Adjust (move) *xdp_md*\ **->data_end** by *delta* bytes. It is + * possible to both shrink and grow the packet tail. + * Shrink done via *delta* being a negative integer. + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_xdp_adjust_tail)(struct xdp_md *xdp_md, int delta) = (void *) 65; + +/* + * bpf_skb_get_xfrm_state + * + * Retrieve the XFRM state (IP transform framework, see also + * **ip-xfrm(8)**) at *index* in XFRM "security path" for *skb*. + * + * The retrieved value is stored in the **struct bpf_xfrm_state** + * pointed by *xfrm_state* and of length *size*. + * + * All values for *flags* are reserved for future usage, and must + * be left at zero. + * + * This helper is available only if the kernel was compiled with + * **CONFIG_XFRM** configuration option. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_skb_get_xfrm_state)(struct __sk_buff *skb, __u32 index, struct bpf_xfrm_state *xfrm_state, __u32 size, __u64 flags) = (void *) 66; + +/* + * bpf_get_stack + * + * Return a user or a kernel stack in bpf program provided buffer. + * To achieve this, the helper needs *ctx*, which is a pointer + * to the context on which the tracing program is executed. + * To store the stacktrace, the bpf program provides *buf* with + * a nonnegative *size*. + * + * The last argument, *flags*, holds the number of stack frames to + * skip (from 0 to 255), masked with + * **BPF_F_SKIP_FIELD_MASK**. The next bits can be used to set + * the following flags: + * + * **BPF_F_USER_STACK** + * Collect a user space stack instead of a kernel stack. + * **BPF_F_USER_BUILD_ID** + * Collect buildid+offset instead of ips for user stack, + * only valid if **BPF_F_USER_STACK** is also specified. + * + * **bpf_get_stack**\ () can collect up to + * **PERF_MAX_STACK_DEPTH** both kernel and user frames, subject + * to sufficient large buffer size. Note that + * this limit can be controlled with the **sysctl** program, and + * that it should be manually increased in order to profile long + * user stacks (such as stacks for Java programs). To do so, use: + * + * :: + * + * # sysctl kernel.perf_event_max_stack= + * + * Returns + * A non-negative value equal to or less than *size* on success, + * or a negative error in case of failure. + */ +static long (*bpf_get_stack)(void *ctx, void *buf, __u32 size, __u64 flags) = (void *) 67; + +/* + * bpf_skb_load_bytes_relative + * + * This helper is similar to **bpf_skb_load_bytes**\ () in that + * it provides an easy way to load *len* bytes from *offset* + * from the packet associated to *skb*, into the buffer pointed + * by *to*. The difference to **bpf_skb_load_bytes**\ () is that + * a fifth argument *start_header* exists in order to select a + * base offset to start from. *start_header* can be one of: + * + * **BPF_HDR_START_MAC** + * Base offset to load data from is *skb*'s mac header. + * **BPF_HDR_START_NET** + * Base offset to load data from is *skb*'s network header. + * + * In general, "direct packet access" is the preferred method to + * access packet data, however, this helper is in particular useful + * in socket filters where *skb*\ **->data** does not always point + * to the start of the mac header and where "direct packet access" + * is not available. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_skb_load_bytes_relative)(const void *skb, __u32 offset, void *to, __u32 len, __u32 start_header) = (void *) 68; + +/* + * bpf_fib_lookup + * + * Do FIB lookup in kernel tables using parameters in *params*. + * If lookup is successful and result shows packet is to be + * forwarded, the neighbor tables are searched for the nexthop. + * If successful (ie., FIB lookup shows forwarding and nexthop + * is resolved), the nexthop address is returned in ipv4_dst + * or ipv6_dst based on family, smac is set to mac address of + * egress device, dmac is set to nexthop mac address, rt_metric + * is set to metric from route (IPv4/IPv6 only), and ifindex + * is set to the device index of the nexthop from the FIB lookup. + * + * *plen* argument is the size of the passed in struct. + * *flags* argument can be a combination of one or more of the + * following values: + * + * **BPF_FIB_LOOKUP_DIRECT** + * Do a direct table lookup vs full lookup using FIB + * rules. + * **BPF_FIB_LOOKUP_OUTPUT** + * Perform lookup from an egress perspective (default is + * ingress). + * + * *ctx* is either **struct xdp_md** for XDP programs or + * **struct sk_buff** tc cls_act programs. + * + * Returns + * * < 0 if any input argument is invalid + * * 0 on success (packet is forwarded, nexthop neighbor exists) + * * > 0 one of **BPF_FIB_LKUP_RET_** codes explaining why the + * packet is not forwarded or needs assist from full stack + * + * If lookup fails with BPF_FIB_LKUP_RET_FRAG_NEEDED, then the MTU + * was exceeded and output params->mtu_result contains the MTU. + */ +static long (*bpf_fib_lookup)(void *ctx, struct bpf_fib_lookup *params, int plen, __u32 flags) = (void *) 69; + +/* + * bpf_sock_hash_update + * + * Add an entry to, or update a sockhash *map* referencing sockets. + * The *skops* is used as a new value for the entry associated to + * *key*. *flags* is one of: + * + * **BPF_NOEXIST** + * The entry for *key* must not exist in the map. + * **BPF_EXIST** + * The entry for *key* must already exist in the map. + * **BPF_ANY** + * No condition on the existence of the entry for *key*. + * + * If the *map* has eBPF programs (parser and verdict), those will + * be inherited by the socket being added. If the socket is + * already attached to eBPF programs, this results in an error. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_sock_hash_update)(struct bpf_sock_ops *skops, void *map, void *key, __u64 flags) = (void *) 70; + +/* + * bpf_msg_redirect_hash + * + * This helper is used in programs implementing policies at the + * socket level. If the message *msg* is allowed to pass (i.e. if + * the verdict eBPF program returns **SK_PASS**), redirect it to + * the socket referenced by *map* (of type + * **BPF_MAP_TYPE_SOCKHASH**) using hash *key*. Both ingress and + * egress interfaces can be used for redirection. The + * **BPF_F_INGRESS** value in *flags* is used to make the + * distinction (ingress path is selected if the flag is present, + * egress path otherwise). This is the only flag supported for now. + * + * Returns + * **SK_PASS** on success, or **SK_DROP** on error. + */ +static long (*bpf_msg_redirect_hash)(struct sk_msg_md *msg, void *map, void *key, __u64 flags) = (void *) 71; + +/* + * bpf_sk_redirect_hash + * + * This helper is used in programs implementing policies at the + * skb socket level. If the sk_buff *skb* is allowed to pass (i.e. + * if the verdict eBPF program returns **SK_PASS**), redirect it + * to the socket referenced by *map* (of type + * **BPF_MAP_TYPE_SOCKHASH**) using hash *key*. Both ingress and + * egress interfaces can be used for redirection. The + * **BPF_F_INGRESS** value in *flags* is used to make the + * distinction (ingress path is selected if the flag is present, + * egress otherwise). This is the only flag supported for now. + * + * Returns + * **SK_PASS** on success, or **SK_DROP** on error. + */ +static long (*bpf_sk_redirect_hash)(struct __sk_buff *skb, void *map, void *key, __u64 flags) = (void *) 72; + +/* + * bpf_lwt_push_encap + * + * Encapsulate the packet associated to *skb* within a Layer 3 + * protocol header. This header is provided in the buffer at + * address *hdr*, with *len* its size in bytes. *type* indicates + * the protocol of the header and can be one of: + * + * **BPF_LWT_ENCAP_SEG6** + * IPv6 encapsulation with Segment Routing Header + * (**struct ipv6_sr_hdr**). *hdr* only contains the SRH, + * the IPv6 header is computed by the kernel. + * **BPF_LWT_ENCAP_SEG6_INLINE** + * Only works if *skb* contains an IPv6 packet. Insert a + * Segment Routing Header (**struct ipv6_sr_hdr**) inside + * the IPv6 header. + * **BPF_LWT_ENCAP_IP** + * IP encapsulation (GRE/GUE/IPIP/etc). The outer header + * must be IPv4 or IPv6, followed by zero or more + * additional headers, up to **LWT_BPF_MAX_HEADROOM** + * total bytes in all prepended headers. Please note that + * if **skb_is_gso**\ (*skb*) is true, no more than two + * headers can be prepended, and the inner header, if + * present, should be either GRE or UDP/GUE. + * + * **BPF_LWT_ENCAP_SEG6**\ \* types can be called by BPF programs + * of type **BPF_PROG_TYPE_LWT_IN**; **BPF_LWT_ENCAP_IP** type can + * be called by bpf programs of types **BPF_PROG_TYPE_LWT_IN** and + * **BPF_PROG_TYPE_LWT_XMIT**. + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_lwt_push_encap)(struct __sk_buff *skb, __u32 type, void *hdr, __u32 len) = (void *) 73; + +/* + * bpf_lwt_seg6_store_bytes + * + * Store *len* bytes from address *from* into the packet + * associated to *skb*, at *offset*. Only the flags, tag and TLVs + * inside the outermost IPv6 Segment Routing Header can be + * modified through this helper. + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_lwt_seg6_store_bytes)(struct __sk_buff *skb, __u32 offset, const void *from, __u32 len) = (void *) 74; + +/* + * bpf_lwt_seg6_adjust_srh + * + * Adjust the size allocated to TLVs in the outermost IPv6 + * Segment Routing Header contained in the packet associated to + * *skb*, at position *offset* by *delta* bytes. Only offsets + * after the segments are accepted. *delta* can be as well + * positive (growing) as negative (shrinking). + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_lwt_seg6_adjust_srh)(struct __sk_buff *skb, __u32 offset, __s32 delta) = (void *) 75; + +/* + * bpf_lwt_seg6_action + * + * Apply an IPv6 Segment Routing action of type *action* to the + * packet associated to *skb*. Each action takes a parameter + * contained at address *param*, and of length *param_len* bytes. + * *action* can be one of: + * + * **SEG6_LOCAL_ACTION_END_X** + * End.X action: Endpoint with Layer-3 cross-connect. + * Type of *param*: **struct in6_addr**. + * **SEG6_LOCAL_ACTION_END_T** + * End.T action: Endpoint with specific IPv6 table lookup. + * Type of *param*: **int**. + * **SEG6_LOCAL_ACTION_END_B6** + * End.B6 action: Endpoint bound to an SRv6 policy. + * Type of *param*: **struct ipv6_sr_hdr**. + * **SEG6_LOCAL_ACTION_END_B6_ENCAP** + * End.B6.Encap action: Endpoint bound to an SRv6 + * encapsulation policy. + * Type of *param*: **struct ipv6_sr_hdr**. + * + * A call to this helper is susceptible to change the underlying + * packet buffer. Therefore, at load time, all checks on pointers + * previously done by the verifier are invalidated and must be + * performed again, if the helper is used in combination with + * direct packet access. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_lwt_seg6_action)(struct __sk_buff *skb, __u32 action, void *param, __u32 param_len) = (void *) 76; + +/* + * bpf_rc_repeat + * + * This helper is used in programs implementing IR decoding, to + * report a successfully decoded repeat key message. This delays + * the generation of a key up event for previously generated + * key down event. + * + * Some IR protocols like NEC have a special IR message for + * repeating last button, for when a button is held down. + * + * The *ctx* should point to the lirc sample as passed into + * the program. + * + * This helper is only available is the kernel was compiled with + * the **CONFIG_BPF_LIRC_MODE2** configuration option set to + * "**y**". + * + * Returns + * 0 + */ +static long (*bpf_rc_repeat)(void *ctx) = (void *) 77; + +/* + * bpf_rc_keydown + * + * This helper is used in programs implementing IR decoding, to + * report a successfully decoded key press with *scancode*, + * *toggle* value in the given *protocol*. The scancode will be + * translated to a keycode using the rc keymap, and reported as + * an input key down event. After a period a key up event is + * generated. This period can be extended by calling either + * **bpf_rc_keydown**\ () again with the same values, or calling + * **bpf_rc_repeat**\ (). + * + * Some protocols include a toggle bit, in case the button was + * released and pressed again between consecutive scancodes. + * + * The *ctx* should point to the lirc sample as passed into + * the program. + * + * The *protocol* is the decoded protocol number (see + * **enum rc_proto** for some predefined values). + * + * This helper is only available is the kernel was compiled with + * the **CONFIG_BPF_LIRC_MODE2** configuration option set to + * "**y**". + * + * Returns + * 0 + */ +static long (*bpf_rc_keydown)(void *ctx, __u32 protocol, __u64 scancode, __u32 toggle) = (void *) 78; + +/* + * bpf_skb_cgroup_id + * + * Return the cgroup v2 id of the socket associated with the *skb*. + * This is roughly similar to the **bpf_get_cgroup_classid**\ () + * helper for cgroup v1 by providing a tag resp. identifier that + * can be matched on or used for map lookups e.g. to implement + * policy. The cgroup v2 id of a given path in the hierarchy is + * exposed in user space through the f_handle API in order to get + * to the same 64-bit id. + * + * This helper can be used on TC egress path, but not on ingress, + * and is available only if the kernel was compiled with the + * **CONFIG_SOCK_CGROUP_DATA** configuration option. + * + * Returns + * The id is returned or 0 in case the id could not be retrieved. + */ +static __u64 (*bpf_skb_cgroup_id)(struct __sk_buff *skb) = (void *) 79; + +/* + * bpf_get_current_cgroup_id + * + * + * Returns + * A 64-bit integer containing the current cgroup id based + * on the cgroup within which the current task is running. + */ +static __u64 (*bpf_get_current_cgroup_id)(void) = (void *) 80; + +/* + * bpf_get_local_storage + * + * Get the pointer to the local storage area. + * The type and the size of the local storage is defined + * by the *map* argument. + * The *flags* meaning is specific for each map type, + * and has to be 0 for cgroup local storage. + * + * Depending on the BPF program type, a local storage area + * can be shared between multiple instances of the BPF program, + * running simultaneously. + * + * A user should care about the synchronization by himself. + * For example, by using the **BPF_ATOMIC** instructions to alter + * the shared data. + * + * Returns + * A pointer to the local storage area. + */ +static void *(*bpf_get_local_storage)(void *map, __u64 flags) = (void *) 81; + +/* + * bpf_sk_select_reuseport + * + * Select a **SO_REUSEPORT** socket from a + * **BPF_MAP_TYPE_REUSEPORT_SOCKARRAY** *map*. + * It checks the selected socket is matching the incoming + * request in the socket buffer. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_sk_select_reuseport)(struct sk_reuseport_md *reuse, void *map, void *key, __u64 flags) = (void *) 82; + +/* + * bpf_skb_ancestor_cgroup_id + * + * Return id of cgroup v2 that is ancestor of cgroup associated + * with the *skb* at the *ancestor_level*. The root cgroup is at + * *ancestor_level* zero and each step down the hierarchy + * increments the level. If *ancestor_level* == level of cgroup + * associated with *skb*, then return value will be same as that + * of **bpf_skb_cgroup_id**\ (). + * + * The helper is useful to implement policies based on cgroups + * that are upper in hierarchy than immediate cgroup associated + * with *skb*. + * + * The format of returned id and helper limitations are same as in + * **bpf_skb_cgroup_id**\ (). + * + * Returns + * The id is returned or 0 in case the id could not be retrieved. + */ +static __u64 (*bpf_skb_ancestor_cgroup_id)(struct __sk_buff *skb, int ancestor_level) = (void *) 83; + +/* + * bpf_sk_lookup_tcp + * + * Look for TCP socket matching *tuple*, optionally in a child + * network namespace *netns*. The return value must be checked, + * and if non-**NULL**, released via **bpf_sk_release**\ (). + * + * The *ctx* should point to the context of the program, such as + * the skb or socket (depending on the hook in use). This is used + * to determine the base network namespace for the lookup. + * + * *tuple_size* must be one of: + * + * **sizeof**\ (*tuple*\ **->ipv4**) + * Look for an IPv4 socket. + * **sizeof**\ (*tuple*\ **->ipv6**) + * Look for an IPv6 socket. + * + * If the *netns* is a negative signed 32-bit integer, then the + * socket lookup table in the netns associated with the *ctx* + * will be used. For the TC hooks, this is the netns of the device + * in the skb. For socket hooks, this is the netns of the socket. + * If *netns* is any other signed 32-bit value greater than or + * equal to zero then it specifies the ID of the netns relative to + * the netns associated with the *ctx*. *netns* values beyond the + * range of 32-bit integers are reserved for future use. + * + * All values for *flags* are reserved for future usage, and must + * be left at zero. + * + * This helper is available only if the kernel was compiled with + * **CONFIG_NET** configuration option. + * + * Returns + * Pointer to **struct bpf_sock**, or **NULL** in case of failure. + * For sockets with reuseport option, the **struct bpf_sock** + * result is from *reuse*\ **->socks**\ [] using the hash of the + * tuple. + */ +static struct bpf_sock *(*bpf_sk_lookup_tcp)(void *ctx, struct bpf_sock_tuple *tuple, __u32 tuple_size, __u64 netns, __u64 flags) = (void *) 84; + +/* + * bpf_sk_lookup_udp + * + * Look for UDP socket matching *tuple*, optionally in a child + * network namespace *netns*. The return value must be checked, + * and if non-**NULL**, released via **bpf_sk_release**\ (). + * + * The *ctx* should point to the context of the program, such as + * the skb or socket (depending on the hook in use). This is used + * to determine the base network namespace for the lookup. + * + * *tuple_size* must be one of: + * + * **sizeof**\ (*tuple*\ **->ipv4**) + * Look for an IPv4 socket. + * **sizeof**\ (*tuple*\ **->ipv6**) + * Look for an IPv6 socket. + * + * If the *netns* is a negative signed 32-bit integer, then the + * socket lookup table in the netns associated with the *ctx* + * will be used. For the TC hooks, this is the netns of the device + * in the skb. For socket hooks, this is the netns of the socket. + * If *netns* is any other signed 32-bit value greater than or + * equal to zero then it specifies the ID of the netns relative to + * the netns associated with the *ctx*. *netns* values beyond the + * range of 32-bit integers are reserved for future use. + * + * All values for *flags* are reserved for future usage, and must + * be left at zero. + * + * This helper is available only if the kernel was compiled with + * **CONFIG_NET** configuration option. + * + * Returns + * Pointer to **struct bpf_sock**, or **NULL** in case of failure. + * For sockets with reuseport option, the **struct bpf_sock** + * result is from *reuse*\ **->socks**\ [] using the hash of the + * tuple. + */ +static struct bpf_sock *(*bpf_sk_lookup_udp)(void *ctx, struct bpf_sock_tuple *tuple, __u32 tuple_size, __u64 netns, __u64 flags) = (void *) 85; + +/* + * bpf_sk_release + * + * Release the reference held by *sock*. *sock* must be a + * non-**NULL** pointer that was returned from + * **bpf_sk_lookup_xxx**\ (). + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_sk_release)(void *sock) = (void *) 86; + +/* + * bpf_map_push_elem + * + * Push an element *value* in *map*. *flags* is one of: + * + * **BPF_EXIST** + * If the queue/stack is full, the oldest element is + * removed to make room for this. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_map_push_elem)(void *map, const void *value, __u64 flags) = (void *) 87; + +/* + * bpf_map_pop_elem + * + * Pop an element from *map*. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_map_pop_elem)(void *map, void *value) = (void *) 88; + +/* + * bpf_map_peek_elem + * + * Get an element from *map* without removing it. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_map_peek_elem)(void *map, void *value) = (void *) 89; + +/* + * bpf_msg_push_data + * + * For socket policies, insert *len* bytes into *msg* at offset + * *start*. + * + * If a program of type **BPF_PROG_TYPE_SK_MSG** is run on a + * *msg* it may want to insert metadata or options into the *msg*. + * This can later be read and used by any of the lower layer BPF + * hooks. + * + * This helper may fail if under memory pressure (a malloc + * fails) in these cases BPF programs will get an appropriate + * error and BPF programs will need to handle them. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_msg_push_data)(struct sk_msg_md *msg, __u32 start, __u32 len, __u64 flags) = (void *) 90; + +/* + * bpf_msg_pop_data + * + * Will remove *len* bytes from a *msg* starting at byte *start*. + * This may result in **ENOMEM** errors under certain situations if + * an allocation and copy are required due to a full ring buffer. + * However, the helper will try to avoid doing the allocation + * if possible. Other errors can occur if input parameters are + * invalid either due to *start* byte not being valid part of *msg* + * payload and/or *pop* value being to large. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_msg_pop_data)(struct sk_msg_md *msg, __u32 start, __u32 len, __u64 flags) = (void *) 91; + +/* + * bpf_rc_pointer_rel + * + * This helper is used in programs implementing IR decoding, to + * report a successfully decoded pointer movement. + * + * The *ctx* should point to the lirc sample as passed into + * the program. + * + * This helper is only available is the kernel was compiled with + * the **CONFIG_BPF_LIRC_MODE2** configuration option set to + * "**y**". + * + * Returns + * 0 + */ +static long (*bpf_rc_pointer_rel)(void *ctx, __s32 rel_x, __s32 rel_y) = (void *) 92; + +/* + * bpf_spin_lock + * + * Acquire a spinlock represented by the pointer *lock*, which is + * stored as part of a value of a map. Taking the lock allows to + * safely update the rest of the fields in that value. The + * spinlock can (and must) later be released with a call to + * **bpf_spin_unlock**\ (\ *lock*\ ). + * + * Spinlocks in BPF programs come with a number of restrictions + * and constraints: + * + * * **bpf_spin_lock** objects are only allowed inside maps of + * types **BPF_MAP_TYPE_HASH** and **BPF_MAP_TYPE_ARRAY** (this + * list could be extended in the future). + * * BTF description of the map is mandatory. + * * The BPF program can take ONE lock at a time, since taking two + * or more could cause dead locks. + * * Only one **struct bpf_spin_lock** is allowed per map element. + * * When the lock is taken, calls (either BPF to BPF or helpers) + * are not allowed. + * * The **BPF_LD_ABS** and **BPF_LD_IND** instructions are not + * allowed inside a spinlock-ed region. + * * The BPF program MUST call **bpf_spin_unlock**\ () to release + * the lock, on all execution paths, before it returns. + * * The BPF program can access **struct bpf_spin_lock** only via + * the **bpf_spin_lock**\ () and **bpf_spin_unlock**\ () + * helpers. Loading or storing data into the **struct + * bpf_spin_lock** *lock*\ **;** field of a map is not allowed. + * * To use the **bpf_spin_lock**\ () helper, the BTF description + * of the map value must be a struct and have **struct + * bpf_spin_lock** *anyname*\ **;** field at the top level. + * Nested lock inside another struct is not allowed. + * * The **struct bpf_spin_lock** *lock* field in a map value must + * be aligned on a multiple of 4 bytes in that value. + * * Syscall with command **BPF_MAP_LOOKUP_ELEM** does not copy + * the **bpf_spin_lock** field to user space. + * * Syscall with command **BPF_MAP_UPDATE_ELEM**, or update from + * a BPF program, do not update the **bpf_spin_lock** field. + * * **bpf_spin_lock** cannot be on the stack or inside a + * networking packet (it can only be inside of a map values). + * * **bpf_spin_lock** is available to root only. + * * Tracing programs and socket filter programs cannot use + * **bpf_spin_lock**\ () due to insufficient preemption checks + * (but this may change in the future). + * * **bpf_spin_lock** is not allowed in inner maps of map-in-map. + * + * Returns + * 0 + */ +static long (*bpf_spin_lock)(struct bpf_spin_lock *lock) = (void *) 93; + +/* + * bpf_spin_unlock + * + * Release the *lock* previously locked by a call to + * **bpf_spin_lock**\ (\ *lock*\ ). + * + * Returns + * 0 + */ +static long (*bpf_spin_unlock)(struct bpf_spin_lock *lock) = (void *) 94; + +/* + * bpf_sk_fullsock + * + * This helper gets a **struct bpf_sock** pointer such + * that all the fields in this **bpf_sock** can be accessed. + * + * Returns + * A **struct bpf_sock** pointer on success, or **NULL** in + * case of failure. + */ +static struct bpf_sock *(*bpf_sk_fullsock)(struct bpf_sock *sk) = (void *) 95; + +/* + * bpf_tcp_sock + * + * This helper gets a **struct bpf_tcp_sock** pointer from a + * **struct bpf_sock** pointer. + * + * Returns + * A **struct bpf_tcp_sock** pointer on success, or **NULL** in + * case of failure. + */ +static struct bpf_tcp_sock *(*bpf_tcp_sock)(struct bpf_sock *sk) = (void *) 96; + +/* + * bpf_skb_ecn_set_ce + * + * Set ECN (Explicit Congestion Notification) field of IP header + * to **CE** (Congestion Encountered) if current value is **ECT** + * (ECN Capable Transport). Otherwise, do nothing. Works with IPv6 + * and IPv4. + * + * Returns + * 1 if the **CE** flag is set (either by the current helper call + * or because it was already present), 0 if it is not set. + */ +static long (*bpf_skb_ecn_set_ce)(struct __sk_buff *skb) = (void *) 97; + +/* + * bpf_get_listener_sock + * + * Return a **struct bpf_sock** pointer in **TCP_LISTEN** state. + * **bpf_sk_release**\ () is unnecessary and not allowed. + * + * Returns + * A **struct bpf_sock** pointer on success, or **NULL** in + * case of failure. + */ +static struct bpf_sock *(*bpf_get_listener_sock)(struct bpf_sock *sk) = (void *) 98; + +/* + * bpf_skc_lookup_tcp + * + * Look for TCP socket matching *tuple*, optionally in a child + * network namespace *netns*. The return value must be checked, + * and if non-**NULL**, released via **bpf_sk_release**\ (). + * + * This function is identical to **bpf_sk_lookup_tcp**\ (), except + * that it also returns timewait or request sockets. Use + * **bpf_sk_fullsock**\ () or **bpf_tcp_sock**\ () to access the + * full structure. + * + * This helper is available only if the kernel was compiled with + * **CONFIG_NET** configuration option. + * + * Returns + * Pointer to **struct bpf_sock**, or **NULL** in case of failure. + * For sockets with reuseport option, the **struct bpf_sock** + * result is from *reuse*\ **->socks**\ [] using the hash of the + * tuple. + */ +static struct bpf_sock *(*bpf_skc_lookup_tcp)(void *ctx, struct bpf_sock_tuple *tuple, __u32 tuple_size, __u64 netns, __u64 flags) = (void *) 99; + +/* + * bpf_tcp_check_syncookie + * + * Check whether *iph* and *th* contain a valid SYN cookie ACK for + * the listening socket in *sk*. + * + * *iph* points to the start of the IPv4 or IPv6 header, while + * *iph_len* contains **sizeof**\ (**struct iphdr**) or + * **sizeof**\ (**struct ip6hdr**). + * + * *th* points to the start of the TCP header, while *th_len* + * contains **sizeof**\ (**struct tcphdr**). + * + * Returns + * 0 if *iph* and *th* are a valid SYN cookie ACK, or a negative + * error otherwise. + */ +static long (*bpf_tcp_check_syncookie)(void *sk, void *iph, __u32 iph_len, struct tcphdr *th, __u32 th_len) = (void *) 100; + +/* + * bpf_sysctl_get_name + * + * Get name of sysctl in /proc/sys/ and copy it into provided by + * program buffer *buf* of size *buf_len*. + * + * The buffer is always NUL terminated, unless it's zero-sized. + * + * If *flags* is zero, full name (e.g. "net/ipv4/tcp_mem") is + * copied. Use **BPF_F_SYSCTL_BASE_NAME** flag to copy base name + * only (e.g. "tcp_mem"). + * + * Returns + * Number of character copied (not including the trailing NUL). + * + * **-E2BIG** if the buffer wasn't big enough (*buf* will contain + * truncated name in this case). + */ +static long (*bpf_sysctl_get_name)(struct bpf_sysctl *ctx, char *buf, unsigned long buf_len, __u64 flags) = (void *) 101; + +/* + * bpf_sysctl_get_current_value + * + * Get current value of sysctl as it is presented in /proc/sys + * (incl. newline, etc), and copy it as a string into provided + * by program buffer *buf* of size *buf_len*. + * + * The whole value is copied, no matter what file position user + * space issued e.g. sys_read at. + * + * The buffer is always NUL terminated, unless it's zero-sized. + * + * Returns + * Number of character copied (not including the trailing NUL). + * + * **-E2BIG** if the buffer wasn't big enough (*buf* will contain + * truncated name in this case). + * + * **-EINVAL** if current value was unavailable, e.g. because + * sysctl is uninitialized and read returns -EIO for it. + */ +static long (*bpf_sysctl_get_current_value)(struct bpf_sysctl *ctx, char *buf, unsigned long buf_len) = (void *) 102; + +/* + * bpf_sysctl_get_new_value + * + * Get new value being written by user space to sysctl (before + * the actual write happens) and copy it as a string into + * provided by program buffer *buf* of size *buf_len*. + * + * User space may write new value at file position > 0. + * + * The buffer is always NUL terminated, unless it's zero-sized. + * + * Returns + * Number of character copied (not including the trailing NUL). + * + * **-E2BIG** if the buffer wasn't big enough (*buf* will contain + * truncated name in this case). + * + * **-EINVAL** if sysctl is being read. + */ +static long (*bpf_sysctl_get_new_value)(struct bpf_sysctl *ctx, char *buf, unsigned long buf_len) = (void *) 103; + +/* + * bpf_sysctl_set_new_value + * + * Override new value being written by user space to sysctl with + * value provided by program in buffer *buf* of size *buf_len*. + * + * *buf* should contain a string in same form as provided by user + * space on sysctl write. + * + * User space may write new value at file position > 0. To override + * the whole sysctl value file position should be set to zero. + * + * Returns + * 0 on success. + * + * **-E2BIG** if the *buf_len* is too big. + * + * **-EINVAL** if sysctl is being read. + */ +static long (*bpf_sysctl_set_new_value)(struct bpf_sysctl *ctx, const char *buf, unsigned long buf_len) = (void *) 104; + +/* + * bpf_strtol + * + * Convert the initial part of the string from buffer *buf* of + * size *buf_len* to a long integer according to the given base + * and save the result in *res*. + * + * The string may begin with an arbitrary amount of white space + * (as determined by **isspace**\ (3)) followed by a single + * optional '**-**' sign. + * + * Five least significant bits of *flags* encode base, other bits + * are currently unused. + * + * Base must be either 8, 10, 16 or 0 to detect it automatically + * similar to user space **strtol**\ (3). + * + * Returns + * Number of characters consumed on success. Must be positive but + * no more than *buf_len*. + * + * **-EINVAL** if no valid digits were found or unsupported base + * was provided. + * + * **-ERANGE** if resulting value was out of range. + */ +static long (*bpf_strtol)(const char *buf, unsigned long buf_len, __u64 flags, long *res) = (void *) 105; + +/* + * bpf_strtoul + * + * Convert the initial part of the string from buffer *buf* of + * size *buf_len* to an unsigned long integer according to the + * given base and save the result in *res*. + * + * The string may begin with an arbitrary amount of white space + * (as determined by **isspace**\ (3)). + * + * Five least significant bits of *flags* encode base, other bits + * are currently unused. + * + * Base must be either 8, 10, 16 or 0 to detect it automatically + * similar to user space **strtoul**\ (3). + * + * Returns + * Number of characters consumed on success. Must be positive but + * no more than *buf_len*. + * + * **-EINVAL** if no valid digits were found or unsupported base + * was provided. + * + * **-ERANGE** if resulting value was out of range. + */ +static long (*bpf_strtoul)(const char *buf, unsigned long buf_len, __u64 flags, unsigned long *res) = (void *) 106; + +/* + * bpf_sk_storage_get + * + * Get a bpf-local-storage from a *sk*. + * + * Logically, it could be thought of getting the value from + * a *map* with *sk* as the **key**. From this + * perspective, the usage is not much different from + * **bpf_map_lookup_elem**\ (*map*, **&**\ *sk*) except this + * helper enforces the key must be a full socket and the map must + * be a **BPF_MAP_TYPE_SK_STORAGE** also. + * + * Underneath, the value is stored locally at *sk* instead of + * the *map*. The *map* is used as the bpf-local-storage + * "type". The bpf-local-storage "type" (i.e. the *map*) is + * searched against all bpf-local-storages residing at *sk*. + * + * *sk* is a kernel **struct sock** pointer for LSM program. + * *sk* is a **struct bpf_sock** pointer for other program types. + * + * An optional *flags* (**BPF_SK_STORAGE_GET_F_CREATE**) can be + * used such that a new bpf-local-storage will be + * created if one does not exist. *value* can be used + * together with **BPF_SK_STORAGE_GET_F_CREATE** to specify + * the initial value of a bpf-local-storage. If *value* is + * **NULL**, the new bpf-local-storage will be zero initialized. + * + * Returns + * A bpf-local-storage pointer is returned on success. + * + * **NULL** if not found or there was an error in adding + * a new bpf-local-storage. + */ +static void *(*bpf_sk_storage_get)(void *map, void *sk, void *value, __u64 flags) = (void *) 107; + +/* + * bpf_sk_storage_delete + * + * Delete a bpf-local-storage from a *sk*. + * + * Returns + * 0 on success. + * + * **-ENOENT** if the bpf-local-storage cannot be found. + * **-EINVAL** if sk is not a fullsock (e.g. a request_sock). + */ +static long (*bpf_sk_storage_delete)(void *map, void *sk) = (void *) 108; + +/* + * bpf_send_signal + * + * Send signal *sig* to the process of the current task. + * The signal may be delivered to any of this process's threads. + * + * Returns + * 0 on success or successfully queued. + * + * **-EBUSY** if work queue under nmi is full. + * + * **-EINVAL** if *sig* is invalid. + * + * **-EPERM** if no permission to send the *sig*. + * + * **-EAGAIN** if bpf program can try again. + */ +static long (*bpf_send_signal)(__u32 sig) = (void *) 109; + +/* + * bpf_tcp_gen_syncookie + * + * Try to issue a SYN cookie for the packet with corresponding + * IP/TCP headers, *iph* and *th*, on the listening socket in *sk*. + * + * *iph* points to the start of the IPv4 or IPv6 header, while + * *iph_len* contains **sizeof**\ (**struct iphdr**) or + * **sizeof**\ (**struct ip6hdr**). + * + * *th* points to the start of the TCP header, while *th_len* + * contains the length of the TCP header. + * + * Returns + * On success, lower 32 bits hold the generated SYN cookie in + * followed by 16 bits which hold the MSS value for that cookie, + * and the top 16 bits are unused. + * + * On failure, the returned value is one of the following: + * + * **-EINVAL** SYN cookie cannot be issued due to error + * + * **-ENOENT** SYN cookie should not be issued (no SYN flood) + * + * **-EOPNOTSUPP** kernel configuration does not enable SYN cookies + * + * **-EPROTONOSUPPORT** IP packet version is not 4 or 6 + */ +static __s64 (*bpf_tcp_gen_syncookie)(void *sk, void *iph, __u32 iph_len, struct tcphdr *th, __u32 th_len) = (void *) 110; + +/* + * bpf_skb_output + * + * Write raw *data* blob into a special BPF perf event held by + * *map* of type **BPF_MAP_TYPE_PERF_EVENT_ARRAY**. This perf + * event must have the following attributes: **PERF_SAMPLE_RAW** + * as **sample_type**, **PERF_TYPE_SOFTWARE** as **type**, and + * **PERF_COUNT_SW_BPF_OUTPUT** as **config**. + * + * The *flags* are used to indicate the index in *map* for which + * the value must be put, masked with **BPF_F_INDEX_MASK**. + * Alternatively, *flags* can be set to **BPF_F_CURRENT_CPU** + * to indicate that the index of the current CPU core should be + * used. + * + * The value to write, of *size*, is passed through eBPF stack and + * pointed by *data*. + * + * *ctx* is a pointer to in-kernel struct sk_buff. + * + * This helper is similar to **bpf_perf_event_output**\ () but + * restricted to raw_tracepoint bpf programs. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_skb_output)(void *ctx, void *map, __u64 flags, void *data, __u64 size) = (void *) 111; + +/* + * bpf_probe_read_user + * + * Safely attempt to read *size* bytes from user space address + * *unsafe_ptr* and store the data in *dst*. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_probe_read_user)(void *dst, __u32 size, const void *unsafe_ptr) = (void *) 112; + +/* + * bpf_probe_read_kernel + * + * Safely attempt to read *size* bytes from kernel space address + * *unsafe_ptr* and store the data in *dst*. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_probe_read_kernel)(void *dst, __u32 size, const void *unsafe_ptr) = (void *) 113; + +/* + * bpf_probe_read_user_str + * + * Copy a NUL terminated string from an unsafe user address + * *unsafe_ptr* to *dst*. The *size* should include the + * terminating NUL byte. In case the string length is smaller than + * *size*, the target is not padded with further NUL bytes. If the + * string length is larger than *size*, just *size*-1 bytes are + * copied and the last byte is set to NUL. + * + * On success, returns the number of bytes that were written, + * including the terminal NUL. This makes this helper useful in + * tracing programs for reading strings, and more importantly to + * get its length at runtime. See the following snippet: + * + * :: + * + * SEC("kprobe/sys_open") + * void bpf_sys_open(struct pt_regs *ctx) + * { + * char buf[PATHLEN]; // PATHLEN is defined to 256 + * int res = bpf_probe_read_user_str(buf, sizeof(buf), + * ctx->di); + * + * // Consume buf, for example push it to + * // userspace via bpf_perf_event_output(); we + * // can use res (the string length) as event + * // size, after checking its boundaries. + * } + * + * In comparison, using **bpf_probe_read_user**\ () helper here + * instead to read the string would require to estimate the length + * at compile time, and would often result in copying more memory + * than necessary. + * + * Another useful use case is when parsing individual process + * arguments or individual environment variables navigating + * *current*\ **->mm->arg_start** and *current*\ + * **->mm->env_start**: using this helper and the return value, + * one can quickly iterate at the right offset of the memory area. + * + * Returns + * On success, the strictly positive length of the output string, + * including the trailing NUL character. On error, a negative + * value. + */ +static long (*bpf_probe_read_user_str)(void *dst, __u32 size, const void *unsafe_ptr) = (void *) 114; + +/* + * bpf_probe_read_kernel_str + * + * Copy a NUL terminated string from an unsafe kernel address *unsafe_ptr* + * to *dst*. Same semantics as with **bpf_probe_read_user_str**\ () apply. + * + * Returns + * On success, the strictly positive length of the string, including + * the trailing NUL character. On error, a negative value. + */ +static long (*bpf_probe_read_kernel_str)(void *dst, __u32 size, const void *unsafe_ptr) = (void *) 115; + +/* + * bpf_tcp_send_ack + * + * Send out a tcp-ack. *tp* is the in-kernel struct **tcp_sock**. + * *rcv_nxt* is the ack_seq to be sent out. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_tcp_send_ack)(void *tp, __u32 rcv_nxt) = (void *) 116; + +/* + * bpf_send_signal_thread + * + * Send signal *sig* to the thread corresponding to the current task. + * + * Returns + * 0 on success or successfully queued. + * + * **-EBUSY** if work queue under nmi is full. + * + * **-EINVAL** if *sig* is invalid. + * + * **-EPERM** if no permission to send the *sig*. + * + * **-EAGAIN** if bpf program can try again. + */ +static long (*bpf_send_signal_thread)(__u32 sig) = (void *) 117; + +/* + * bpf_jiffies64 + * + * Obtain the 64bit jiffies + * + * Returns + * The 64 bit jiffies + */ +static __u64 (*bpf_jiffies64)(void) = (void *) 118; + +/* + * bpf_read_branch_records + * + * For an eBPF program attached to a perf event, retrieve the + * branch records (**struct perf_branch_entry**) associated to *ctx* + * and store it in the buffer pointed by *buf* up to size + * *size* bytes. + * + * Returns + * On success, number of bytes written to *buf*. On error, a + * negative value. + * + * The *flags* can be set to **BPF_F_GET_BRANCH_RECORDS_SIZE** to + * instead return the number of bytes required to store all the + * branch entries. If this flag is set, *buf* may be NULL. + * + * **-EINVAL** if arguments invalid or **size** not a multiple + * of **sizeof**\ (**struct perf_branch_entry**\ ). + * + * **-ENOENT** if architecture does not support branch records. + */ +static long (*bpf_read_branch_records)(struct bpf_perf_event_data *ctx, void *buf, __u32 size, __u64 flags) = (void *) 119; + +/* + * bpf_get_ns_current_pid_tgid + * + * Returns 0 on success, values for *pid* and *tgid* as seen from the current + * *namespace* will be returned in *nsdata*. + * + * Returns + * 0 on success, or one of the following in case of failure: + * + * **-EINVAL** if dev and inum supplied don't match dev_t and inode number + * with nsfs of current task, or if dev conversion to dev_t lost high bits. + * + * **-ENOENT** if pidns does not exists for the current task. + */ +static long (*bpf_get_ns_current_pid_tgid)(__u64 dev, __u64 ino, struct bpf_pidns_info *nsdata, __u32 size) = (void *) 120; + +/* + * bpf_xdp_output + * + * Write raw *data* blob into a special BPF perf event held by + * *map* of type **BPF_MAP_TYPE_PERF_EVENT_ARRAY**. This perf + * event must have the following attributes: **PERF_SAMPLE_RAW** + * as **sample_type**, **PERF_TYPE_SOFTWARE** as **type**, and + * **PERF_COUNT_SW_BPF_OUTPUT** as **config**. + * + * The *flags* are used to indicate the index in *map* for which + * the value must be put, masked with **BPF_F_INDEX_MASK**. + * Alternatively, *flags* can be set to **BPF_F_CURRENT_CPU** + * to indicate that the index of the current CPU core should be + * used. + * + * The value to write, of *size*, is passed through eBPF stack and + * pointed by *data*. + * + * *ctx* is a pointer to in-kernel struct xdp_buff. + * + * This helper is similar to **bpf_perf_eventoutput**\ () but + * restricted to raw_tracepoint bpf programs. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_xdp_output)(void *ctx, void *map, __u64 flags, void *data, __u64 size) = (void *) 121; + +/* + * bpf_get_netns_cookie + * + * Retrieve the cookie (generated by the kernel) of the network + * namespace the input *ctx* is associated with. The network + * namespace cookie remains stable for its lifetime and provides + * a global identifier that can be assumed unique. If *ctx* is + * NULL, then the helper returns the cookie for the initial + * network namespace. The cookie itself is very similar to that + * of **bpf_get_socket_cookie**\ () helper, but for network + * namespaces instead of sockets. + * + * Returns + * A 8-byte long opaque number. + */ +static __u64 (*bpf_get_netns_cookie)(void *ctx) = (void *) 122; + +/* + * bpf_get_current_ancestor_cgroup_id + * + * Return id of cgroup v2 that is ancestor of the cgroup associated + * with the current task at the *ancestor_level*. The root cgroup + * is at *ancestor_level* zero and each step down the hierarchy + * increments the level. If *ancestor_level* == level of cgroup + * associated with the current task, then return value will be the + * same as that of **bpf_get_current_cgroup_id**\ (). + * + * The helper is useful to implement policies based on cgroups + * that are upper in hierarchy than immediate cgroup associated + * with the current task. + * + * The format of returned id and helper limitations are same as in + * **bpf_get_current_cgroup_id**\ (). + * + * Returns + * The id is returned or 0 in case the id could not be retrieved. + */ +static __u64 (*bpf_get_current_ancestor_cgroup_id)(int ancestor_level) = (void *) 123; + +/* + * bpf_sk_assign + * + * Helper is overloaded depending on BPF program type. This + * description applies to **BPF_PROG_TYPE_SCHED_CLS** and + * **BPF_PROG_TYPE_SCHED_ACT** programs. + * + * Assign the *sk* to the *skb*. When combined with appropriate + * routing configuration to receive the packet towards the socket, + * will cause *skb* to be delivered to the specified socket. + * Subsequent redirection of *skb* via **bpf_redirect**\ (), + * **bpf_clone_redirect**\ () or other methods outside of BPF may + * interfere with successful delivery to the socket. + * + * This operation is only valid from TC ingress path. + * + * The *flags* argument must be zero. + * + * Returns + * 0 on success, or a negative error in case of failure: + * + * **-EINVAL** if specified *flags* are not supported. + * + * **-ENOENT** if the socket is unavailable for assignment. + * + * **-ENETUNREACH** if the socket is unreachable (wrong netns). + * + * **-EOPNOTSUPP** if the operation is not supported, for example + * a call from outside of TC ingress. + * + * **-ESOCKTNOSUPPORT** if the socket type is not supported + * (reuseport). + */ +static long (*bpf_sk_assign)(void *ctx, void *sk, __u64 flags) = (void *) 124; + +/* + * bpf_ktime_get_boot_ns + * + * Return the time elapsed since system boot, in nanoseconds. + * Does include the time the system was suspended. + * See: **clock_gettime**\ (**CLOCK_BOOTTIME**) + * + * Returns + * Current *ktime*. + */ +static __u64 (*bpf_ktime_get_boot_ns)(void) = (void *) 125; + +/* + * bpf_seq_printf + * + * **bpf_seq_printf**\ () uses seq_file **seq_printf**\ () to print + * out the format string. + * The *m* represents the seq_file. The *fmt* and *fmt_size* are for + * the format string itself. The *data* and *data_len* are format string + * arguments. The *data* are a **u64** array and corresponding format string + * values are stored in the array. For strings and pointers where pointees + * are accessed, only the pointer values are stored in the *data* array. + * The *data_len* is the size of *data* in bytes - must be a multiple of 8. + * + * Formats **%s**, **%p{i,I}{4,6}** requires to read kernel memory. + * Reading kernel memory may fail due to either invalid address or + * valid address but requiring a major memory fault. If reading kernel memory + * fails, the string for **%s** will be an empty string, and the ip + * address for **%p{i,I}{4,6}** will be 0. Not returning error to + * bpf program is consistent with what **bpf_trace_printk**\ () does for now. + * + * Returns + * 0 on success, or a negative error in case of failure: + * + * **-EBUSY** if per-CPU memory copy buffer is busy, can try again + * by returning 1 from bpf program. + * + * **-EINVAL** if arguments are invalid, or if *fmt* is invalid/unsupported. + * + * **-E2BIG** if *fmt* contains too many format specifiers. + * + * **-EOVERFLOW** if an overflow happened: The same object will be tried again. + */ +static long (*bpf_seq_printf)(struct seq_file *m, const char *fmt, __u32 fmt_size, const void *data, __u32 data_len) = (void *) 126; + +/* + * bpf_seq_write + * + * **bpf_seq_write**\ () uses seq_file **seq_write**\ () to write the data. + * The *m* represents the seq_file. The *data* and *len* represent the + * data to write in bytes. + * + * Returns + * 0 on success, or a negative error in case of failure: + * + * **-EOVERFLOW** if an overflow happened: The same object will be tried again. + */ +static long (*bpf_seq_write)(struct seq_file *m, const void *data, __u32 len) = (void *) 127; + +/* + * bpf_sk_cgroup_id + * + * Return the cgroup v2 id of the socket *sk*. + * + * *sk* must be a non-**NULL** pointer to a socket, e.g. one + * returned from **bpf_sk_lookup_xxx**\ (), + * **bpf_sk_fullsock**\ (), etc. The format of returned id is + * same as in **bpf_skb_cgroup_id**\ (). + * + * This helper is available only if the kernel was compiled with + * the **CONFIG_SOCK_CGROUP_DATA** configuration option. + * + * Returns + * The id is returned or 0 in case the id could not be retrieved. + */ +static __u64 (*bpf_sk_cgroup_id)(void *sk) = (void *) 128; + +/* + * bpf_sk_ancestor_cgroup_id + * + * Return id of cgroup v2 that is ancestor of cgroup associated + * with the *sk* at the *ancestor_level*. The root cgroup is at + * *ancestor_level* zero and each step down the hierarchy + * increments the level. If *ancestor_level* == level of cgroup + * associated with *sk*, then return value will be same as that + * of **bpf_sk_cgroup_id**\ (). + * + * The helper is useful to implement policies based on cgroups + * that are upper in hierarchy than immediate cgroup associated + * with *sk*. + * + * The format of returned id and helper limitations are same as in + * **bpf_sk_cgroup_id**\ (). + * + * Returns + * The id is returned or 0 in case the id could not be retrieved. + */ +static __u64 (*bpf_sk_ancestor_cgroup_id)(void *sk, int ancestor_level) = (void *) 129; + +/* + * bpf_ringbuf_output + * + * Copy *size* bytes from *data* into a ring buffer *ringbuf*. + * If **BPF_RB_NO_WAKEUP** is specified in *flags*, no notification + * of new data availability is sent. + * If **BPF_RB_FORCE_WAKEUP** is specified in *flags*, notification + * of new data availability is sent unconditionally. + * If **0** is specified in *flags*, an adaptive notification + * of new data availability is sent. + * + * An adaptive notification is a notification sent whenever the user-space + * process has caught up and consumed all available payloads. In case the user-space + * process is still processing a previous payload, then no notification is needed + * as it will process the newly added payload automatically. + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_ringbuf_output)(void *ringbuf, void *data, __u64 size, __u64 flags) = (void *) 130; + +/* + * bpf_ringbuf_reserve + * + * Reserve *size* bytes of payload in a ring buffer *ringbuf*. + * *flags* must be 0. + * + * Returns + * Valid pointer with *size* bytes of memory available; NULL, + * otherwise. + */ +static void *(*bpf_ringbuf_reserve)(void *ringbuf, __u64 size, __u64 flags) = (void *) 131; + +/* + * bpf_ringbuf_submit + * + * Submit reserved ring buffer sample, pointed to by *data*. + * If **BPF_RB_NO_WAKEUP** is specified in *flags*, no notification + * of new data availability is sent. + * If **BPF_RB_FORCE_WAKEUP** is specified in *flags*, notification + * of new data availability is sent unconditionally. + * If **0** is specified in *flags*, an adaptive notification + * of new data availability is sent. + * + * See 'bpf_ringbuf_output()' for the definition of adaptive notification. + * + * Returns + * Nothing. Always succeeds. + */ +static void (*bpf_ringbuf_submit)(void *data, __u64 flags) = (void *) 132; + +/* + * bpf_ringbuf_discard + * + * Discard reserved ring buffer sample, pointed to by *data*. + * If **BPF_RB_NO_WAKEUP** is specified in *flags*, no notification + * of new data availability is sent. + * If **BPF_RB_FORCE_WAKEUP** is specified in *flags*, notification + * of new data availability is sent unconditionally. + * If **0** is specified in *flags*, an adaptive notification + * of new data availability is sent. + * + * See 'bpf_ringbuf_output()' for the definition of adaptive notification. + * + * Returns + * Nothing. Always succeeds. + */ +static void (*bpf_ringbuf_discard)(void *data, __u64 flags) = (void *) 133; + +/* + * bpf_ringbuf_query + * + * Query various characteristics of provided ring buffer. What + * exactly is queries is determined by *flags*: + * + * * **BPF_RB_AVAIL_DATA**: Amount of data not yet consumed. + * * **BPF_RB_RING_SIZE**: The size of ring buffer. + * * **BPF_RB_CONS_POS**: Consumer position (can wrap around). + * * **BPF_RB_PROD_POS**: Producer(s) position (can wrap around). + * + * Data returned is just a momentary snapshot of actual values + * and could be inaccurate, so this facility should be used to + * power heuristics and for reporting, not to make 100% correct + * calculation. + * + * Returns + * Requested value, or 0, if *flags* are not recognized. + */ +static __u64 (*bpf_ringbuf_query)(void *ringbuf, __u64 flags) = (void *) 134; + +/* + * bpf_csum_level + * + * Change the skbs checksum level by one layer up or down, or + * reset it entirely to none in order to have the stack perform + * checksum validation. The level is applicable to the following + * protocols: TCP, UDP, GRE, SCTP, FCOE. For example, a decap of + * | ETH | IP | UDP | GUE | IP | TCP | into | ETH | IP | TCP | + * through **bpf_skb_adjust_room**\ () helper with passing in + * **BPF_F_ADJ_ROOM_NO_CSUM_RESET** flag would require one call + * to **bpf_csum_level**\ () with **BPF_CSUM_LEVEL_DEC** since + * the UDP header is removed. Similarly, an encap of the latter + * into the former could be accompanied by a helper call to + * **bpf_csum_level**\ () with **BPF_CSUM_LEVEL_INC** if the + * skb is still intended to be processed in higher layers of the + * stack instead of just egressing at tc. + * + * There are three supported level settings at this time: + * + * * **BPF_CSUM_LEVEL_INC**: Increases skb->csum_level for skbs + * with CHECKSUM_UNNECESSARY. + * * **BPF_CSUM_LEVEL_DEC**: Decreases skb->csum_level for skbs + * with CHECKSUM_UNNECESSARY. + * * **BPF_CSUM_LEVEL_RESET**: Resets skb->csum_level to 0 and + * sets CHECKSUM_NONE to force checksum validation by the stack. + * * **BPF_CSUM_LEVEL_QUERY**: No-op, returns the current + * skb->csum_level. + * + * Returns + * 0 on success, or a negative error in case of failure. In the + * case of **BPF_CSUM_LEVEL_QUERY**, the current skb->csum_level + * is returned or the error code -EACCES in case the skb is not + * subject to CHECKSUM_UNNECESSARY. + */ +static long (*bpf_csum_level)(struct __sk_buff *skb, __u64 level) = (void *) 135; + +/* + * bpf_skc_to_tcp6_sock + * + * Dynamically cast a *sk* pointer to a *tcp6_sock* pointer. + * + * Returns + * *sk* if casting is valid, or **NULL** otherwise. + */ +static struct tcp6_sock *(*bpf_skc_to_tcp6_sock)(void *sk) = (void *) 136; + +/* + * bpf_skc_to_tcp_sock + * + * Dynamically cast a *sk* pointer to a *tcp_sock* pointer. + * + * Returns + * *sk* if casting is valid, or **NULL** otherwise. + */ +static struct tcp_sock *(*bpf_skc_to_tcp_sock)(void *sk) = (void *) 137; + +/* + * bpf_skc_to_tcp_timewait_sock + * + * Dynamically cast a *sk* pointer to a *tcp_timewait_sock* pointer. + * + * Returns + * *sk* if casting is valid, or **NULL** otherwise. + */ +static struct tcp_timewait_sock *(*bpf_skc_to_tcp_timewait_sock)(void *sk) = (void *) 138; + +/* + * bpf_skc_to_tcp_request_sock + * + * Dynamically cast a *sk* pointer to a *tcp_request_sock* pointer. + * + * Returns + * *sk* if casting is valid, or **NULL** otherwise. + */ +static struct tcp_request_sock *(*bpf_skc_to_tcp_request_sock)(void *sk) = (void *) 139; + +/* + * bpf_skc_to_udp6_sock + * + * Dynamically cast a *sk* pointer to a *udp6_sock* pointer. + * + * Returns + * *sk* if casting is valid, or **NULL** otherwise. + */ +static struct udp6_sock *(*bpf_skc_to_udp6_sock)(void *sk) = (void *) 140; + +/* + * bpf_get_task_stack + * + * Return a user or a kernel stack in bpf program provided buffer. + * To achieve this, the helper needs *task*, which is a valid + * pointer to **struct task_struct**. To store the stacktrace, the + * bpf program provides *buf* with a nonnegative *size*. + * + * The last argument, *flags*, holds the number of stack frames to + * skip (from 0 to 255), masked with + * **BPF_F_SKIP_FIELD_MASK**. The next bits can be used to set + * the following flags: + * + * **BPF_F_USER_STACK** + * Collect a user space stack instead of a kernel stack. + * **BPF_F_USER_BUILD_ID** + * Collect buildid+offset instead of ips for user stack, + * only valid if **BPF_F_USER_STACK** is also specified. + * + * **bpf_get_task_stack**\ () can collect up to + * **PERF_MAX_STACK_DEPTH** both kernel and user frames, subject + * to sufficient large buffer size. Note that + * this limit can be controlled with the **sysctl** program, and + * that it should be manually increased in order to profile long + * user stacks (such as stacks for Java programs). To do so, use: + * + * :: + * + * # sysctl kernel.perf_event_max_stack= + * + * Returns + * A non-negative value equal to or less than *size* on success, + * or a negative error in case of failure. + */ +static long (*bpf_get_task_stack)(struct task_struct *task, void *buf, __u32 size, __u64 flags) = (void *) 141; + +/* + * bpf_load_hdr_opt + * + * Load header option. Support reading a particular TCP header + * option for bpf program (**BPF_PROG_TYPE_SOCK_OPS**). + * + * If *flags* is 0, it will search the option from the + * *skops*\ **->skb_data**. The comment in **struct bpf_sock_ops** + * has details on what skb_data contains under different + * *skops*\ **->op**. + * + * The first byte of the *searchby_res* specifies the + * kind that it wants to search. + * + * If the searching kind is an experimental kind + * (i.e. 253 or 254 according to RFC6994). It also + * needs to specify the "magic" which is either + * 2 bytes or 4 bytes. It then also needs to + * specify the size of the magic by using + * the 2nd byte which is "kind-length" of a TCP + * header option and the "kind-length" also + * includes the first 2 bytes "kind" and "kind-length" + * itself as a normal TCP header option also does. + * + * For example, to search experimental kind 254 with + * 2 byte magic 0xeB9F, the searchby_res should be + * [ 254, 4, 0xeB, 0x9F, 0, 0, .... 0 ]. + * + * To search for the standard window scale option (3), + * the *searchby_res* should be [ 3, 0, 0, .... 0 ]. + * Note, kind-length must be 0 for regular option. + * + * Searching for No-Op (0) and End-of-Option-List (1) are + * not supported. + * + * *len* must be at least 2 bytes which is the minimal size + * of a header option. + * + * Supported flags: + * + * * **BPF_LOAD_HDR_OPT_TCP_SYN** to search from the + * saved_syn packet or the just-received syn packet. + * + * + * Returns + * > 0 when found, the header option is copied to *searchby_res*. + * The return value is the total length copied. On failure, a + * negative error code is returned: + * + * **-EINVAL** if a parameter is invalid. + * + * **-ENOMSG** if the option is not found. + * + * **-ENOENT** if no syn packet is available when + * **BPF_LOAD_HDR_OPT_TCP_SYN** is used. + * + * **-ENOSPC** if there is not enough space. Only *len* number of + * bytes are copied. + * + * **-EFAULT** on failure to parse the header options in the + * packet. + * + * **-EPERM** if the helper cannot be used under the current + * *skops*\ **->op**. + */ +static long (*bpf_load_hdr_opt)(struct bpf_sock_ops *skops, void *searchby_res, __u32 len, __u64 flags) = (void *) 142; + +/* + * bpf_store_hdr_opt + * + * Store header option. The data will be copied + * from buffer *from* with length *len* to the TCP header. + * + * The buffer *from* should have the whole option that + * includes the kind, kind-length, and the actual + * option data. The *len* must be at least kind-length + * long. The kind-length does not have to be 4 byte + * aligned. The kernel will take care of the padding + * and setting the 4 bytes aligned value to th->doff. + * + * This helper will check for duplicated option + * by searching the same option in the outgoing skb. + * + * This helper can only be called during + * **BPF_SOCK_OPS_WRITE_HDR_OPT_CB**. + * + * + * Returns + * 0 on success, or negative error in case of failure: + * + * **-EINVAL** If param is invalid. + * + * **-ENOSPC** if there is not enough space in the header. + * Nothing has been written + * + * **-EEXIST** if the option already exists. + * + * **-EFAULT** on failrue to parse the existing header options. + * + * **-EPERM** if the helper cannot be used under the current + * *skops*\ **->op**. + */ +static long (*bpf_store_hdr_opt)(struct bpf_sock_ops *skops, const void *from, __u32 len, __u64 flags) = (void *) 143; + +/* + * bpf_reserve_hdr_opt + * + * Reserve *len* bytes for the bpf header option. The + * space will be used by **bpf_store_hdr_opt**\ () later in + * **BPF_SOCK_OPS_WRITE_HDR_OPT_CB**. + * + * If **bpf_reserve_hdr_opt**\ () is called multiple times, + * the total number of bytes will be reserved. + * + * This helper can only be called during + * **BPF_SOCK_OPS_HDR_OPT_LEN_CB**. + * + * + * Returns + * 0 on success, or negative error in case of failure: + * + * **-EINVAL** if a parameter is invalid. + * + * **-ENOSPC** if there is not enough space in the header. + * + * **-EPERM** if the helper cannot be used under the current + * *skops*\ **->op**. + */ +static long (*bpf_reserve_hdr_opt)(struct bpf_sock_ops *skops, __u32 len, __u64 flags) = (void *) 144; + +/* + * bpf_inode_storage_get + * + * Get a bpf_local_storage from an *inode*. + * + * Logically, it could be thought of as getting the value from + * a *map* with *inode* as the **key**. From this + * perspective, the usage is not much different from + * **bpf_map_lookup_elem**\ (*map*, **&**\ *inode*) except this + * helper enforces the key must be an inode and the map must also + * be a **BPF_MAP_TYPE_INODE_STORAGE**. + * + * Underneath, the value is stored locally at *inode* instead of + * the *map*. The *map* is used as the bpf-local-storage + * "type". The bpf-local-storage "type" (i.e. the *map*) is + * searched against all bpf_local_storage residing at *inode*. + * + * An optional *flags* (**BPF_LOCAL_STORAGE_GET_F_CREATE**) can be + * used such that a new bpf_local_storage will be + * created if one does not exist. *value* can be used + * together with **BPF_LOCAL_STORAGE_GET_F_CREATE** to specify + * the initial value of a bpf_local_storage. If *value* is + * **NULL**, the new bpf_local_storage will be zero initialized. + * + * Returns + * A bpf_local_storage pointer is returned on success. + * + * **NULL** if not found or there was an error in adding + * a new bpf_local_storage. + */ +static void *(*bpf_inode_storage_get)(void *map, void *inode, void *value, __u64 flags) = (void *) 145; + +/* + * bpf_inode_storage_delete + * + * Delete a bpf_local_storage from an *inode*. + * + * Returns + * 0 on success. + * + * **-ENOENT** if the bpf_local_storage cannot be found. + */ +static int (*bpf_inode_storage_delete)(void *map, void *inode) = (void *) 146; + +/* + * bpf_d_path + * + * Return full path for given **struct path** object, which + * needs to be the kernel BTF *path* object. The path is + * returned in the provided buffer *buf* of size *sz* and + * is zero terminated. + * + * + * Returns + * On success, the strictly positive length of the string, + * including the trailing NUL character. On error, a negative + * value. + */ +static long (*bpf_d_path)(struct path *path, char *buf, __u32 sz) = (void *) 147; + +/* + * bpf_copy_from_user + * + * Read *size* bytes from user space address *user_ptr* and store + * the data in *dst*. This is a wrapper of **copy_from_user**\ (). + * + * Returns + * 0 on success, or a negative error in case of failure. + */ +static long (*bpf_copy_from_user)(void *dst, __u32 size, const void *user_ptr) = (void *) 148; + +/* + * bpf_snprintf_btf + * + * Use BTF to store a string representation of *ptr*->ptr in *str*, + * using *ptr*->type_id. This value should specify the type + * that *ptr*->ptr points to. LLVM __builtin_btf_type_id(type, 1) + * can be used to look up vmlinux BTF type ids. Traversing the + * data structure using BTF, the type information and values are + * stored in the first *str_size* - 1 bytes of *str*. Safe copy of + * the pointer data is carried out to avoid kernel crashes during + * operation. Smaller types can use string space on the stack; + * larger programs can use map data to store the string + * representation. + * + * The string can be subsequently shared with userspace via + * bpf_perf_event_output() or ring buffer interfaces. + * bpf_trace_printk() is to be avoided as it places too small + * a limit on string size to be useful. + * + * *flags* is a combination of + * + * **BTF_F_COMPACT** + * no formatting around type information + * **BTF_F_NONAME** + * no struct/union member names/types + * **BTF_F_PTR_RAW** + * show raw (unobfuscated) pointer values; + * equivalent to printk specifier %px. + * **BTF_F_ZERO** + * show zero-valued struct/union members; they + * are not displayed by default + * + * + * Returns + * The number of bytes that were written (or would have been + * written if output had to be truncated due to string size), + * or a negative error in cases of failure. + */ +static long (*bpf_snprintf_btf)(char *str, __u32 str_size, struct btf_ptr *ptr, __u32 btf_ptr_size, __u64 flags) = (void *) 149; + +/* + * bpf_seq_printf_btf + * + * Use BTF to write to seq_write a string representation of + * *ptr*->ptr, using *ptr*->type_id as per bpf_snprintf_btf(). + * *flags* are identical to those used for bpf_snprintf_btf. + * + * Returns + * 0 on success or a negative error in case of failure. + */ +static long (*bpf_seq_printf_btf)(struct seq_file *m, struct btf_ptr *ptr, __u32 ptr_size, __u64 flags) = (void *) 150; + +/* + * bpf_skb_cgroup_classid + * + * See **bpf_get_cgroup_classid**\ () for the main description. + * This helper differs from **bpf_get_cgroup_classid**\ () in that + * the cgroup v1 net_cls class is retrieved only from the *skb*'s + * associated socket instead of the current process. + * + * Returns + * The id is returned or 0 in case the id could not be retrieved. + */ +static __u64 (*bpf_skb_cgroup_classid)(struct __sk_buff *skb) = (void *) 151; + +/* + * bpf_redirect_neigh + * + * Redirect the packet to another net device of index *ifindex* + * and fill in L2 addresses from neighboring subsystem. This helper + * is somewhat similar to **bpf_redirect**\ (), except that it + * populates L2 addresses as well, meaning, internally, the helper + * relies on the neighbor lookup for the L2 address of the nexthop. + * + * The helper will perform a FIB lookup based on the skb's + * networking header to get the address of the next hop, unless + * this is supplied by the caller in the *params* argument. The + * *plen* argument indicates the len of *params* and should be set + * to 0 if *params* is NULL. + * + * The *flags* argument is reserved and must be 0. The helper is + * currently only supported for tc BPF program types, and enabled + * for IPv4 and IPv6 protocols. + * + * Returns + * The helper returns **TC_ACT_REDIRECT** on success or + * **TC_ACT_SHOT** on error. + */ +static long (*bpf_redirect_neigh)(__u32 ifindex, struct bpf_redir_neigh *params, int plen, __u64 flags) = (void *) 152; + +/* + * bpf_per_cpu_ptr + * + * Take a pointer to a percpu ksym, *percpu_ptr*, and return a + * pointer to the percpu kernel variable on *cpu*. A ksym is an + * extern variable decorated with '__ksym'. For ksym, there is a + * global var (either static or global) defined of the same name + * in the kernel. The ksym is percpu if the global var is percpu. + * The returned pointer points to the global percpu var on *cpu*. + * + * bpf_per_cpu_ptr() has the same semantic as per_cpu_ptr() in the + * kernel, except that bpf_per_cpu_ptr() may return NULL. This + * happens if *cpu* is larger than nr_cpu_ids. The caller of + * bpf_per_cpu_ptr() must check the returned value. + * + * Returns + * A pointer pointing to the kernel percpu variable on *cpu*, or + * NULL, if *cpu* is invalid. + */ +static void *(*bpf_per_cpu_ptr)(const void *percpu_ptr, __u32 cpu) = (void *) 153; + +/* + * bpf_this_cpu_ptr + * + * Take a pointer to a percpu ksym, *percpu_ptr*, and return a + * pointer to the percpu kernel variable on this cpu. See the + * description of 'ksym' in **bpf_per_cpu_ptr**\ (). + * + * bpf_this_cpu_ptr() has the same semantic as this_cpu_ptr() in + * the kernel. Different from **bpf_per_cpu_ptr**\ (), it would + * never return NULL. + * + * Returns + * A pointer pointing to the kernel percpu variable on this cpu. + */ +static void *(*bpf_this_cpu_ptr)(const void *percpu_ptr) = (void *) 154; + +/* + * bpf_redirect_peer + * + * Redirect the packet to another net device of index *ifindex*. + * This helper is somewhat similar to **bpf_redirect**\ (), except + * that the redirection happens to the *ifindex*' peer device and + * the netns switch takes place from ingress to ingress without + * going through the CPU's backlog queue. + * + * The *flags* argument is reserved and must be 0. The helper is + * currently only supported for tc BPF program types at the ingress + * hook and for veth device types. The peer device must reside in a + * different network namespace. + * + * Returns + * The helper returns **TC_ACT_REDIRECT** on success or + * **TC_ACT_SHOT** on error. + */ +static long (*bpf_redirect_peer)(__u32 ifindex, __u64 flags) = (void *) 155; + +/* + * bpf_task_storage_get + * + * Get a bpf_local_storage from the *task*. + * + * Logically, it could be thought of as getting the value from + * a *map* with *task* as the **key**. From this + * perspective, the usage is not much different from + * **bpf_map_lookup_elem**\ (*map*, **&**\ *task*) except this + * helper enforces the key must be an task_struct and the map must also + * be a **BPF_MAP_TYPE_TASK_STORAGE**. + * + * Underneath, the value is stored locally at *task* instead of + * the *map*. The *map* is used as the bpf-local-storage + * "type". The bpf-local-storage "type" (i.e. the *map*) is + * searched against all bpf_local_storage residing at *task*. + * + * An optional *flags* (**BPF_LOCAL_STORAGE_GET_F_CREATE**) can be + * used such that a new bpf_local_storage will be + * created if one does not exist. *value* can be used + * together with **BPF_LOCAL_STORAGE_GET_F_CREATE** to specify + * the initial value of a bpf_local_storage. If *value* is + * **NULL**, the new bpf_local_storage will be zero initialized. + * + * Returns + * A bpf_local_storage pointer is returned on success. + * + * **NULL** if not found or there was an error in adding + * a new bpf_local_storage. + */ +static void *(*bpf_task_storage_get)(void *map, struct task_struct *task, void *value, __u64 flags) = (void *) 156; + +/* + * bpf_task_storage_delete + * + * Delete a bpf_local_storage from a *task*. + * + * Returns + * 0 on success. + * + * **-ENOENT** if the bpf_local_storage cannot be found. + */ +static long (*bpf_task_storage_delete)(void *map, struct task_struct *task) = (void *) 157; + +/* + * bpf_get_current_task_btf + * + * Return a BTF pointer to the "current" task. + * This pointer can also be used in helpers that accept an + * *ARG_PTR_TO_BTF_ID* of type *task_struct*. + * + * Returns + * Pointer to the current task. + */ +static struct task_struct *(*bpf_get_current_task_btf)(void) = (void *) 158; + +/* + * bpf_bprm_opts_set + * + * Set or clear certain options on *bprm*: + * + * **BPF_F_BPRM_SECUREEXEC** Set the secureexec bit + * which sets the **AT_SECURE** auxv for glibc. The bit + * is cleared if the flag is not specified. + * + * Returns + * **-EINVAL** if invalid *flags* are passed, zero otherwise. + */ +static long (*bpf_bprm_opts_set)(struct linux_binprm *bprm, __u64 flags) = (void *) 159; + +/* + * bpf_ktime_get_coarse_ns + * + * Return a coarse-grained version of the time elapsed since + * system boot, in nanoseconds. Does not include time the system + * was suspended. + * + * See: **clock_gettime**\ (**CLOCK_MONOTONIC_COARSE**) + * + * Returns + * Current *ktime*. + */ +static __u64 (*bpf_ktime_get_coarse_ns)(void) = (void *) 160; + +/* + * bpf_ima_inode_hash + * + * Returns the stored IMA hash of the *inode* (if it's avaialable). + * If the hash is larger than *size*, then only *size* + * bytes will be copied to *dst* + * + * Returns + * The **hash_algo** is returned on success, + * **-EOPNOTSUP** if IMA is disabled or **-EINVAL** if + * invalid arguments are passed. + */ +static long (*bpf_ima_inode_hash)(struct inode *inode, void *dst, __u32 size) = (void *) 161; + +/* + * bpf_sock_from_file + * + * If the given file represents a socket, returns the associated + * socket. + * + * Returns + * A pointer to a struct socket on success or NULL if the file is + * not a socket. + */ +static struct socket *(*bpf_sock_from_file)(struct file *file) = (void *) 162; + +/* + * bpf_check_mtu + * + * Check packet size against exceeding MTU of net device (based + * on *ifindex*). This helper will likely be used in combination + * with helpers that adjust/change the packet size. + * + * The argument *len_diff* can be used for querying with a planned + * size change. This allows to check MTU prior to changing packet + * ctx. Providing an *len_diff* adjustment that is larger than the + * actual packet size (resulting in negative packet size) will in + * principle not exceed the MTU, why it is not considered a + * failure. Other BPF-helpers are needed for performing the + * planned size change, why the responsibility for catch a negative + * packet size belong in those helpers. + * + * Specifying *ifindex* zero means the MTU check is performed + * against the current net device. This is practical if this isn't + * used prior to redirect. + * + * On input *mtu_len* must be a valid pointer, else verifier will + * reject BPF program. If the value *mtu_len* is initialized to + * zero then the ctx packet size is use. When value *mtu_len* is + * provided as input this specify the L3 length that the MTU check + * is done against. Remember XDP and TC length operate at L2, but + * this value is L3 as this correlate to MTU and IP-header tot_len + * values which are L3 (similar behavior as bpf_fib_lookup). + * + * The Linux kernel route table can configure MTUs on a more + * specific per route level, which is not provided by this helper. + * For route level MTU checks use the **bpf_fib_lookup**\ () + * helper. + * + * *ctx* is either **struct xdp_md** for XDP programs or + * **struct sk_buff** for tc cls_act programs. + * + * The *flags* argument can be a combination of one or more of the + * following values: + * + * **BPF_MTU_CHK_SEGS** + * This flag will only works for *ctx* **struct sk_buff**. + * If packet context contains extra packet segment buffers + * (often knows as GSO skb), then MTU check is harder to + * check at this point, because in transmit path it is + * possible for the skb packet to get re-segmented + * (depending on net device features). This could still be + * a MTU violation, so this flag enables performing MTU + * check against segments, with a different violation + * return code to tell it apart. Check cannot use len_diff. + * + * On return *mtu_len* pointer contains the MTU value of the net + * device. Remember the net device configured MTU is the L3 size, + * which is returned here and XDP and TC length operate at L2. + * Helper take this into account for you, but remember when using + * MTU value in your BPF-code. + * + * + * Returns + * * 0 on success, and populate MTU value in *mtu_len* pointer. + * + * * < 0 if any input argument is invalid (*mtu_len* not updated) + * + * MTU violations return positive values, but also populate MTU + * value in *mtu_len* pointer, as this can be needed for + * implementing PMTU handing: + * + * * **BPF_MTU_CHK_RET_FRAG_NEEDED** + * * **BPF_MTU_CHK_RET_SEGS_TOOBIG** + */ +static long (*bpf_check_mtu)(void *ctx, __u32 ifindex, __u32 *mtu_len, __s32 len_diff, __u64 flags) = (void *) 163; + +/* + * bpf_for_each_map_elem + * + * For each element in **map**, call **callback_fn** function with + * **map**, **callback_ctx** and other map-specific parameters. + * The **callback_fn** should be a static function and + * the **callback_ctx** should be a pointer to the stack. + * The **flags** is used to control certain aspects of the helper. + * Currently, the **flags** must be 0. + * + * The following are a list of supported map types and their + * respective expected callback signatures: + * + * BPF_MAP_TYPE_HASH, BPF_MAP_TYPE_PERCPU_HASH, + * BPF_MAP_TYPE_LRU_HASH, BPF_MAP_TYPE_LRU_PERCPU_HASH, + * BPF_MAP_TYPE_ARRAY, BPF_MAP_TYPE_PERCPU_ARRAY + * + * long (\*callback_fn)(struct bpf_map \*map, const void \*key, void \*value, void \*ctx); + * + * For per_cpu maps, the map_value is the value on the cpu where the + * bpf_prog is running. + * + * If **callback_fn** return 0, the helper will continue to the next + * element. If return value is 1, the helper will skip the rest of + * elements and return. Other return values are not used now. + * + * + * Returns + * The number of traversed map elements for success, **-EINVAL** for + * invalid **flags**. + */ +static long (*bpf_for_each_map_elem)(void *map, void *callback_fn, void *callback_ctx, __u64 flags) = (void *) 164; + +/* + * bpf_snprintf + * + * Outputs a string into the **str** buffer of size **str_size** + * based on a format string stored in a read-only map pointed by + * **fmt**. + * + * Each format specifier in **fmt** corresponds to one u64 element + * in the **data** array. For strings and pointers where pointees + * are accessed, only the pointer values are stored in the *data* + * array. The *data_len* is the size of *data* in bytes - must be + * a multiple of 8. + * + * Formats **%s** and **%p{i,I}{4,6}** require to read kernel + * memory. Reading kernel memory may fail due to either invalid + * address or valid address but requiring a major memory fault. If + * reading kernel memory fails, the string for **%s** will be an + * empty string, and the ip address for **%p{i,I}{4,6}** will be 0. + * Not returning error to bpf program is consistent with what + * **bpf_trace_printk**\ () does for now. + * + * + * Returns + * The strictly positive length of the formatted string, including + * the trailing zero character. If the return value is greater than + * **str_size**, **str** contains a truncated string, guaranteed to + * be zero-terminated except when **str_size** is 0. + * + * Or **-EBUSY** if the per-CPU memory copy buffer is busy. + */ +static long (*bpf_snprintf)(char *str, __u32 str_size, const char *fmt, __u64 *data, __u32 data_len) = (void *) 165; + +/* + * bpf_sys_bpf + * + * Execute bpf syscall with given arguments. + * + * Returns + * A syscall result. + */ +static long (*bpf_sys_bpf)(__u32 cmd, void *attr, __u32 attr_size) = (void *) 166; + +/* + * bpf_btf_find_by_name_kind + * + * Find BTF type with given name and kind in vmlinux BTF or in module's BTFs. + * + * Returns + * Returns btf_id and btf_obj_fd in lower and upper 32 bits. + */ +static long (*bpf_btf_find_by_name_kind)(char *name, int name_sz, __u32 kind, int flags) = (void *) 167; + +/* + * bpf_sys_close + * + * Execute close syscall for given FD. + * + * Returns + * A syscall result. + */ +static long (*bpf_sys_close)(__u32 fd) = (void *) 168; + +/* + * bpf_timer_init + * + * Initialize the timer. + * First 4 bits of *flags* specify clockid. + * Only CLOCK_MONOTONIC, CLOCK_REALTIME, CLOCK_BOOTTIME are allowed. + * All other bits of *flags* are reserved. + * The verifier will reject the program if *timer* is not from + * the same *map*. + * + * Returns + * 0 on success. + * **-EBUSY** if *timer* is already initialized. + * **-EINVAL** if invalid *flags* are passed. + * **-EPERM** if *timer* is in a map that doesn't have any user references. + * The user space should either hold a file descriptor to a map with timers + * or pin such map in bpffs. When map is unpinned or file descriptor is + * closed all timers in the map will be cancelled and freed. + */ +static long (*bpf_timer_init)(struct bpf_timer *timer, void *map, __u64 flags) = (void *) 169; + +/* + * bpf_timer_set_callback + * + * Configure the timer to call *callback_fn* static function. + * + * Returns + * 0 on success. + * **-EINVAL** if *timer* was not initialized with bpf_timer_init() earlier. + * **-EPERM** if *timer* is in a map that doesn't have any user references. + * The user space should either hold a file descriptor to a map with timers + * or pin such map in bpffs. When map is unpinned or file descriptor is + * closed all timers in the map will be cancelled and freed. + */ +static long (*bpf_timer_set_callback)(struct bpf_timer *timer, void *callback_fn) = (void *) 170; + +/* + * bpf_timer_start + * + * Set timer expiration N nanoseconds from the current time. The + * configured callback will be invoked in soft irq context on some cpu + * and will not repeat unless another bpf_timer_start() is made. + * In such case the next invocation can migrate to a different cpu. + * Since struct bpf_timer is a field inside map element the map + * owns the timer. The bpf_timer_set_callback() will increment refcnt + * of BPF program to make sure that callback_fn code stays valid. + * When user space reference to a map reaches zero all timers + * in a map are cancelled and corresponding program's refcnts are + * decremented. This is done to make sure that Ctrl-C of a user + * process doesn't leave any timers running. If map is pinned in + * bpffs the callback_fn can re-arm itself indefinitely. + * bpf_map_update/delete_elem() helpers and user space sys_bpf commands + * cancel and free the timer in the given map element. + * The map can contain timers that invoke callback_fn-s from different + * programs. The same callback_fn can serve different timers from + * different maps if key/value layout matches across maps. + * Every bpf_timer_set_callback() can have different callback_fn. + * + * + * Returns + * 0 on success. + * **-EINVAL** if *timer* was not initialized with bpf_timer_init() earlier + * or invalid *flags* are passed. + */ +static long (*bpf_timer_start)(struct bpf_timer *timer, __u64 nsecs, __u64 flags) = (void *) 171; + +/* + * bpf_timer_cancel + * + * Cancel the timer and wait for callback_fn to finish if it was running. + * + * Returns + * 0 if the timer was not active. + * 1 if the timer was active. + * **-EINVAL** if *timer* was not initialized with bpf_timer_init() earlier. + * **-EDEADLK** if callback_fn tried to call bpf_timer_cancel() on its + * own timer which would have led to a deadlock otherwise. + */ +static long (*bpf_timer_cancel)(struct bpf_timer *timer) = (void *) 172; + +/* + * bpf_get_func_ip + * + * Get address of the traced function (for tracing and kprobe programs). + * + * Returns + * Address of the traced function. + */ +static __u64 (*bpf_get_func_ip)(void *ctx) = (void *) 173; + +/* + * bpf_get_attach_cookie + * + * Get bpf_cookie value provided (optionally) during the program + * attachment. It might be different for each individual + * attachment, even if BPF program itself is the same. + * Expects BPF program context *ctx* as a first argument. + * + * Supported for the following program types: + * - kprobe/uprobe; + * - tracepoint; + * - perf_event. + * + * Returns + * Value specified by user at BPF link creation/attachment time + * or 0, if it was not specified. + */ +static __u64 (*bpf_get_attach_cookie)(void *ctx) = (void *) 174; + +/* + * bpf_task_pt_regs + * + * Get the struct pt_regs associated with **task**. + * + * Returns + * A pointer to struct pt_regs. + */ +static long (*bpf_task_pt_regs)(struct task_struct *task) = (void *) 175; + +/* + * bpf_get_branch_snapshot + * + * Get branch trace from hardware engines like Intel LBR. The + * hardware engine is stopped shortly after the helper is + * called. Therefore, the user need to filter branch entries + * based on the actual use case. To capture branch trace + * before the trigger point of the BPF program, the helper + * should be called at the beginning of the BPF program. + * + * The data is stored as struct perf_branch_entry into output + * buffer *entries*. *size* is the size of *entries* in bytes. + * *flags* is reserved for now and must be zero. + * + * + * Returns + * On success, number of bytes written to *buf*. On error, a + * negative value. + * + * **-EINVAL** if *flags* is not zero. + * + * **-ENOENT** if architecture does not support branch records. + */ +static long (*bpf_get_branch_snapshot)(void *entries, __u32 size, __u64 flags) = (void *) 176; + +/* + * bpf_trace_vprintk + * + * Behaves like **bpf_trace_printk**\ () helper, but takes an array of u64 + * to format and can handle more format args as a result. + * + * Arguments are to be used as in **bpf_seq_printf**\ () helper. + * + * Returns + * The number of bytes written to the buffer, or a negative error + * in case of failure. + */ +static long (*bpf_trace_vprintk)(const char *fmt, __u32 fmt_size, const void *data, __u32 data_len) = (void *) 177; + +/* + * bpf_skc_to_unix_sock + * + * Dynamically cast a *sk* pointer to a *unix_sock* pointer. + * + * Returns + * *sk* if casting is valid, or **NULL** otherwise. + */ +static struct unix_sock *(*bpf_skc_to_unix_sock)(void *sk) = (void *) 178; + +/* + * bpf_kallsyms_lookup_name + * + * Get the address of a kernel symbol, returned in *res*. *res* is + * set to 0 if the symbol is not found. + * + * Returns + * On success, zero. On error, a negative value. + * + * **-EINVAL** if *flags* is not zero. + * + * **-EINVAL** if string *name* is not the same size as *name_sz*. + * + * **-ENOENT** if symbol is not found. + * + * **-EPERM** if caller does not have permission to obtain kernel address. + */ +static long (*bpf_kallsyms_lookup_name)(const char *name, int name_sz, int flags, __u64 *res) = (void *) 179; + +/* + * bpf_find_vma + * + * Find vma of *task* that contains *addr*, call *callback_fn* + * function with *task*, *vma*, and *callback_ctx*. + * The *callback_fn* should be a static function and + * the *callback_ctx* should be a pointer to the stack. + * The *flags* is used to control certain aspects of the helper. + * Currently, the *flags* must be 0. + * + * The expected callback signature is + * + * long (\*callback_fn)(struct task_struct \*task, struct vm_area_struct \*vma, void \*callback_ctx); + * + * + * Returns + * 0 on success. + * **-ENOENT** if *task->mm* is NULL, or no vma contains *addr*. + * **-EBUSY** if failed to try lock mmap_lock. + * **-EINVAL** for invalid **flags**. + */ +static long (*bpf_find_vma)(struct task_struct *task, __u64 addr, void *callback_fn, void *callback_ctx, __u64 flags) = (void *) 180; + + diff --git a/components/execd/pkg/ebpf/prog/bpf/bpf_helpers.h b/components/execd/pkg/ebpf/prog/bpf/bpf_helpers.h new file mode 100644 index 000000000..963b1060d --- /dev/null +++ b/components/execd/pkg/ebpf/prog/bpf/bpf_helpers.h @@ -0,0 +1,262 @@ +/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ +#ifndef __BPF_HELPERS__ +#define __BPF_HELPERS__ + +/* + * Note that bpf programs need to include either + * vmlinux.h (auto-generated from BTF) or linux/types.h + * in advance since bpf_helper_defs.h uses such types + * as __u64. + */ +#include "bpf_helper_defs.h" + +#define __uint(name, val) int (*name)[val] +#define __type(name, val) typeof(val) *name +#define __array(name, val) typeof(val) *name[] + +/* + * Helper macro to place programs, maps, license in + * different sections in elf_bpf file. Section names + * are interpreted by libbpf depending on the context (BPF programs, BPF maps, + * extern variables, etc). + * To allow use of SEC() with externs (e.g., for extern .maps declarations), + * make sure __attribute__((unused)) doesn't trigger compilation warning. + */ +#define SEC(name) \ + _Pragma("GCC diagnostic push") \ + _Pragma("GCC diagnostic ignored \"-Wignored-attributes\"") \ + __attribute__((section(name), used)) \ + _Pragma("GCC diagnostic pop") \ + +/* Avoid 'linux/stddef.h' definition of '__always_inline'. */ +#undef __always_inline +#define __always_inline inline __attribute__((always_inline)) + +#ifndef __noinline +#define __noinline __attribute__((noinline)) +#endif +#ifndef __weak +#define __weak __attribute__((weak)) +#endif + +/* + * Use __hidden attribute to mark a non-static BPF subprogram effectively + * static for BPF verifier's verification algorithm purposes, allowing more + * extensive and permissive BPF verification process, taking into account + * subprogram's caller context. + */ +#define __hidden __attribute__((visibility("hidden"))) + +/* When utilizing vmlinux.h with BPF CO-RE, user BPF programs can't include + * any system-level headers (such as stddef.h, linux/version.h, etc), and + * commonly-used macros like NULL and KERNEL_VERSION aren't available through + * vmlinux.h. This just adds unnecessary hurdles and forces users to re-define + * them on their own. So as a convenience, provide such definitions here. + */ +#ifndef NULL +#define NULL ((void *)0) +#endif + +#ifndef KERNEL_VERSION +#define KERNEL_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + ((c) > 255 ? 255 : (c))) +#endif + +/* + * Helper macros to manipulate data structures + */ +#ifndef offsetof +#define offsetof(TYPE, MEMBER) ((unsigned long)&((TYPE *)0)->MEMBER) +#endif +#ifndef container_of +#define container_of(ptr, type, member) \ + ({ \ + void *__mptr = (void *)(ptr); \ + ((type *)(__mptr - offsetof(type, member))); \ + }) +#endif + +/* + * Helper macro to throw a compilation error if __bpf_unreachable() gets + * built into the resulting code. This works given BPF back end does not + * implement __builtin_trap(). This is useful to assert that certain paths + * of the program code are never used and hence eliminated by the compiler. + * + * For example, consider a switch statement that covers known cases used by + * the program. __bpf_unreachable() can then reside in the default case. If + * the program gets extended such that a case is not covered in the switch + * statement, then it will throw a build error due to the default case not + * being compiled out. + */ +#ifndef __bpf_unreachable +# define __bpf_unreachable() __builtin_trap() +#endif + +/* + * Helper function to perform a tail call with a constant/immediate map slot. + */ +#if __clang_major__ >= 8 && defined(__bpf__) +static __always_inline void +bpf_tail_call_static(void *ctx, const void *map, const __u32 slot) +{ + if (!__builtin_constant_p(slot)) + __bpf_unreachable(); + + /* + * Provide a hard guarantee that LLVM won't optimize setting r2 (map + * pointer) and r3 (constant map index) from _different paths_ ending + * up at the _same_ call insn as otherwise we won't be able to use the + * jmpq/nopl retpoline-free patching by the x86-64 JIT in the kernel + * given they mismatch. See also d2e4c1e6c294 ("bpf: Constant map key + * tracking for prog array pokes") for details on verifier tracking. + * + * Note on clobber list: we need to stay in-line with BPF calling + * convention, so even if we don't end up using r0, r4, r5, we need + * to mark them as clobber so that LLVM doesn't end up using them + * before / after the call. + */ + asm volatile("r1 = %[ctx]\n\t" + "r2 = %[map]\n\t" + "r3 = %[slot]\n\t" + "call 12" + :: [ctx]"r"(ctx), [map]"r"(map), [slot]"i"(slot) + : "r0", "r1", "r2", "r3", "r4", "r5"); +} +#endif + +/* + * Helper structure used by eBPF C program + * to describe BPF map attributes to libbpf loader + */ +struct bpf_map_def { + unsigned int type; + unsigned int key_size; + unsigned int value_size; + unsigned int max_entries; + unsigned int map_flags; +}; + +enum libbpf_pin_type { + LIBBPF_PIN_NONE, + /* PIN_BY_NAME: pin maps by name (in /sys/fs/bpf by default) */ + LIBBPF_PIN_BY_NAME, +}; + +enum libbpf_tristate { + TRI_NO = 0, + TRI_YES = 1, + TRI_MODULE = 2, +}; + +#define __kconfig __attribute__((section(".kconfig"))) +#define __ksym __attribute__((section(".ksyms"))) + +#ifndef ___bpf_concat +#define ___bpf_concat(a, b) a ## b +#endif +#ifndef ___bpf_apply +#define ___bpf_apply(fn, n) ___bpf_concat(fn, n) +#endif +#ifndef ___bpf_nth +#define ___bpf_nth(_, _1, _2, _3, _4, _5, _6, _7, _8, _9, _a, _b, _c, N, ...) N +#endif +#ifndef ___bpf_narg +#define ___bpf_narg(...) \ + ___bpf_nth(_, ##__VA_ARGS__, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0) +#endif + +#define ___bpf_fill0(arr, p, x) do {} while (0) +#define ___bpf_fill1(arr, p, x) arr[p] = x +#define ___bpf_fill2(arr, p, x, args...) arr[p] = x; ___bpf_fill1(arr, p + 1, args) +#define ___bpf_fill3(arr, p, x, args...) arr[p] = x; ___bpf_fill2(arr, p + 1, args) +#define ___bpf_fill4(arr, p, x, args...) arr[p] = x; ___bpf_fill3(arr, p + 1, args) +#define ___bpf_fill5(arr, p, x, args...) arr[p] = x; ___bpf_fill4(arr, p + 1, args) +#define ___bpf_fill6(arr, p, x, args...) arr[p] = x; ___bpf_fill5(arr, p + 1, args) +#define ___bpf_fill7(arr, p, x, args...) arr[p] = x; ___bpf_fill6(arr, p + 1, args) +#define ___bpf_fill8(arr, p, x, args...) arr[p] = x; ___bpf_fill7(arr, p + 1, args) +#define ___bpf_fill9(arr, p, x, args...) arr[p] = x; ___bpf_fill8(arr, p + 1, args) +#define ___bpf_fill10(arr, p, x, args...) arr[p] = x; ___bpf_fill9(arr, p + 1, args) +#define ___bpf_fill11(arr, p, x, args...) arr[p] = x; ___bpf_fill10(arr, p + 1, args) +#define ___bpf_fill12(arr, p, x, args...) arr[p] = x; ___bpf_fill11(arr, p + 1, args) +#define ___bpf_fill(arr, args...) \ + ___bpf_apply(___bpf_fill, ___bpf_narg(args))(arr, 0, args) + +/* + * BPF_SEQ_PRINTF to wrap bpf_seq_printf to-be-printed values + * in a structure. + */ +#define BPF_SEQ_PRINTF(seq, fmt, args...) \ +({ \ + static const char ___fmt[] = fmt; \ + unsigned long long ___param[___bpf_narg(args)]; \ + \ + _Pragma("GCC diagnostic push") \ + _Pragma("GCC diagnostic ignored \"-Wint-conversion\"") \ + ___bpf_fill(___param, args); \ + _Pragma("GCC diagnostic pop") \ + \ + bpf_seq_printf(seq, ___fmt, sizeof(___fmt), \ + ___param, sizeof(___param)); \ +}) + +/* + * BPF_SNPRINTF wraps the bpf_snprintf helper with variadic arguments instead of + * an array of u64. + */ +#define BPF_SNPRINTF(out, out_size, fmt, args...) \ +({ \ + static const char ___fmt[] = fmt; \ + unsigned long long ___param[___bpf_narg(args)]; \ + \ + _Pragma("GCC diagnostic push") \ + _Pragma("GCC diagnostic ignored \"-Wint-conversion\"") \ + ___bpf_fill(___param, args); \ + _Pragma("GCC diagnostic pop") \ + \ + bpf_snprintf(out, out_size, ___fmt, \ + ___param, sizeof(___param)); \ +}) + +#ifdef BPF_NO_GLOBAL_DATA +#define BPF_PRINTK_FMT_MOD +#else +#define BPF_PRINTK_FMT_MOD static const +#endif + +#define __bpf_printk(fmt, ...) \ +({ \ + BPF_PRINTK_FMT_MOD char ____fmt[] = fmt; \ + bpf_trace_printk(____fmt, sizeof(____fmt), \ + ##__VA_ARGS__); \ +}) + +/* + * __bpf_vprintk wraps the bpf_trace_vprintk helper with variadic arguments + * instead of an array of u64. + */ +#define __bpf_vprintk(fmt, args...) \ +({ \ + static const char ___fmt[] = fmt; \ + unsigned long long ___param[___bpf_narg(args)]; \ + \ + _Pragma("GCC diagnostic push") \ + _Pragma("GCC diagnostic ignored \"-Wint-conversion\"") \ + ___bpf_fill(___param, args); \ + _Pragma("GCC diagnostic pop") \ + \ + bpf_trace_vprintk(___fmt, sizeof(___fmt), \ + ___param, sizeof(___param)); \ +}) + +/* Use __bpf_printk when bpf_printk call has 3 or fewer fmt args + * Otherwise use __bpf_vprintk + */ +#define ___bpf_pick_printk(...) \ + ___bpf_nth(_, ##__VA_ARGS__, __bpf_vprintk, __bpf_vprintk, __bpf_vprintk, \ + __bpf_vprintk, __bpf_vprintk, __bpf_vprintk, __bpf_vprintk, \ + __bpf_vprintk, __bpf_vprintk, __bpf_printk /*3*/, __bpf_printk /*2*/,\ + __bpf_printk /*1*/, __bpf_printk /*0*/) + +/* Helper macro to print out debug messages */ +#define bpf_printk(fmt, args...) ___bpf_pick_printk(args)(fmt, ##args) + +#endif diff --git a/components/execd/pkg/ebpf/prog/bpf/bpf_tracing.h b/components/execd/pkg/ebpf/prog/bpf/bpf_tracing.h new file mode 100644 index 000000000..db05a5937 --- /dev/null +++ b/components/execd/pkg/ebpf/prog/bpf/bpf_tracing.h @@ -0,0 +1,492 @@ +/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ +#ifndef __BPF_TRACING_H__ +#define __BPF_TRACING_H__ + +/* Scan the ARCH passed in from ARCH env variable (see Makefile) */ +#if defined(__TARGET_ARCH_x86) + #define bpf_target_x86 + #define bpf_target_defined +#elif defined(__TARGET_ARCH_s390) + #define bpf_target_s390 + #define bpf_target_defined +#elif defined(__TARGET_ARCH_arm) + #define bpf_target_arm + #define bpf_target_defined +#elif defined(__TARGET_ARCH_arm64) + #define bpf_target_arm64 + #define bpf_target_defined +#elif defined(__TARGET_ARCH_mips) + #define bpf_target_mips + #define bpf_target_defined +#elif defined(__TARGET_ARCH_powerpc) + #define bpf_target_powerpc + #define bpf_target_defined +#elif defined(__TARGET_ARCH_sparc) + #define bpf_target_sparc + #define bpf_target_defined +#elif defined(__TARGET_ARCH_riscv) + #define bpf_target_riscv + #define bpf_target_defined +#else + +/* Fall back to what the compiler says */ +#if defined(__x86_64__) + #define bpf_target_x86 + #define bpf_target_defined +#elif defined(__s390__) + #define bpf_target_s390 + #define bpf_target_defined +#elif defined(__arm__) + #define bpf_target_arm + #define bpf_target_defined +#elif defined(__aarch64__) + #define bpf_target_arm64 + #define bpf_target_defined +#elif defined(__mips__) + #define bpf_target_mips + #define bpf_target_defined +#elif defined(__powerpc__) + #define bpf_target_powerpc + #define bpf_target_defined +#elif defined(__sparc__) + #define bpf_target_sparc + #define bpf_target_defined +#elif defined(__riscv) && __riscv_xlen == 64 + #define bpf_target_riscv + #define bpf_target_defined +#endif /* no compiler target */ + +#endif + +#ifndef __BPF_TARGET_MISSING +#define __BPF_TARGET_MISSING "GCC error \"Must specify a BPF target arch via __TARGET_ARCH_xxx\"" +#endif + +#if defined(bpf_target_x86) + +#if defined(__KERNEL__) || defined(__VMLINUX_H__) + +#define PT_REGS_PARM1(x) ((x)->di) +#define PT_REGS_PARM2(x) ((x)->si) +#define PT_REGS_PARM3(x) ((x)->dx) +#define PT_REGS_PARM4(x) ((x)->cx) +#define PT_REGS_PARM5(x) ((x)->r8) +#define PT_REGS_RET(x) ((x)->sp) +#define PT_REGS_FP(x) ((x)->bp) +#define PT_REGS_RC(x) ((x)->ax) +#define PT_REGS_SP(x) ((x)->sp) +#define PT_REGS_IP(x) ((x)->ip) + +#define PT_REGS_PARM1_CORE(x) BPF_CORE_READ((x), di) +#define PT_REGS_PARM2_CORE(x) BPF_CORE_READ((x), si) +#define PT_REGS_PARM3_CORE(x) BPF_CORE_READ((x), dx) +#define PT_REGS_PARM4_CORE(x) BPF_CORE_READ((x), cx) +#define PT_REGS_PARM5_CORE(x) BPF_CORE_READ((x), r8) +#define PT_REGS_RET_CORE(x) BPF_CORE_READ((x), sp) +#define PT_REGS_FP_CORE(x) BPF_CORE_READ((x), bp) +#define PT_REGS_RC_CORE(x) BPF_CORE_READ((x), ax) +#define PT_REGS_SP_CORE(x) BPF_CORE_READ((x), sp) +#define PT_REGS_IP_CORE(x) BPF_CORE_READ((x), ip) + +#else + +#ifdef __i386__ +/* i386 kernel is built with -mregparm=3 */ +#define PT_REGS_PARM1(x) ((x)->eax) +#define PT_REGS_PARM2(x) ((x)->edx) +#define PT_REGS_PARM3(x) ((x)->ecx) +#define PT_REGS_PARM4(x) 0 +#define PT_REGS_PARM5(x) 0 +#define PT_REGS_RET(x) ((x)->esp) +#define PT_REGS_FP(x) ((x)->ebp) +#define PT_REGS_RC(x) ((x)->eax) +#define PT_REGS_SP(x) ((x)->esp) +#define PT_REGS_IP(x) ((x)->eip) + +#define PT_REGS_PARM1_CORE(x) BPF_CORE_READ((x), eax) +#define PT_REGS_PARM2_CORE(x) BPF_CORE_READ((x), edx) +#define PT_REGS_PARM3_CORE(x) BPF_CORE_READ((x), ecx) +#define PT_REGS_PARM4_CORE(x) 0 +#define PT_REGS_PARM5_CORE(x) 0 +#define PT_REGS_RET_CORE(x) BPF_CORE_READ((x), esp) +#define PT_REGS_FP_CORE(x) BPF_CORE_READ((x), ebp) +#define PT_REGS_RC_CORE(x) BPF_CORE_READ((x), eax) +#define PT_REGS_SP_CORE(x) BPF_CORE_READ((x), esp) +#define PT_REGS_IP_CORE(x) BPF_CORE_READ((x), eip) + +#else + +#define PT_REGS_PARM1(x) ((x)->rdi) +#define PT_REGS_PARM2(x) ((x)->rsi) +#define PT_REGS_PARM3(x) ((x)->rdx) +#define PT_REGS_PARM4(x) ((x)->rcx) +#define PT_REGS_PARM5(x) ((x)->r8) +#define PT_REGS_RET(x) ((x)->rsp) +#define PT_REGS_FP(x) ((x)->rbp) +#define PT_REGS_RC(x) ((x)->rax) +#define PT_REGS_SP(x) ((x)->rsp) +#define PT_REGS_IP(x) ((x)->rip) + +#define PT_REGS_PARM1_CORE(x) BPF_CORE_READ((x), rdi) +#define PT_REGS_PARM2_CORE(x) BPF_CORE_READ((x), rsi) +#define PT_REGS_PARM3_CORE(x) BPF_CORE_READ((x), rdx) +#define PT_REGS_PARM4_CORE(x) BPF_CORE_READ((x), rcx) +#define PT_REGS_PARM5_CORE(x) BPF_CORE_READ((x), r8) +#define PT_REGS_RET_CORE(x) BPF_CORE_READ((x), rsp) +#define PT_REGS_FP_CORE(x) BPF_CORE_READ((x), rbp) +#define PT_REGS_RC_CORE(x) BPF_CORE_READ((x), rax) +#define PT_REGS_SP_CORE(x) BPF_CORE_READ((x), rsp) +#define PT_REGS_IP_CORE(x) BPF_CORE_READ((x), rip) + +#endif +#endif + +#elif defined(bpf_target_s390) + +/* s390 provides user_pt_regs instead of struct pt_regs to userspace */ +struct pt_regs; +#define PT_REGS_S390 const volatile user_pt_regs +#define PT_REGS_PARM1(x) (((PT_REGS_S390 *)(x))->gprs[2]) +#define PT_REGS_PARM2(x) (((PT_REGS_S390 *)(x))->gprs[3]) +#define PT_REGS_PARM3(x) (((PT_REGS_S390 *)(x))->gprs[4]) +#define PT_REGS_PARM4(x) (((PT_REGS_S390 *)(x))->gprs[5]) +#define PT_REGS_PARM5(x) (((PT_REGS_S390 *)(x))->gprs[6]) +#define PT_REGS_RET(x) (((PT_REGS_S390 *)(x))->gprs[14]) +/* Works only with CONFIG_FRAME_POINTER */ +#define PT_REGS_FP(x) (((PT_REGS_S390 *)(x))->gprs[11]) +#define PT_REGS_RC(x) (((PT_REGS_S390 *)(x))->gprs[2]) +#define PT_REGS_SP(x) (((PT_REGS_S390 *)(x))->gprs[15]) +#define PT_REGS_IP(x) (((PT_REGS_S390 *)(x))->psw.addr) + +#define PT_REGS_PARM1_CORE(x) BPF_CORE_READ((PT_REGS_S390 *)(x), gprs[2]) +#define PT_REGS_PARM2_CORE(x) BPF_CORE_READ((PT_REGS_S390 *)(x), gprs[3]) +#define PT_REGS_PARM3_CORE(x) BPF_CORE_READ((PT_REGS_S390 *)(x), gprs[4]) +#define PT_REGS_PARM4_CORE(x) BPF_CORE_READ((PT_REGS_S390 *)(x), gprs[5]) +#define PT_REGS_PARM5_CORE(x) BPF_CORE_READ((PT_REGS_S390 *)(x), gprs[6]) +#define PT_REGS_RET_CORE(x) BPF_CORE_READ((PT_REGS_S390 *)(x), gprs[14]) +#define PT_REGS_FP_CORE(x) BPF_CORE_READ((PT_REGS_S390 *)(x), gprs[11]) +#define PT_REGS_RC_CORE(x) BPF_CORE_READ((PT_REGS_S390 *)(x), gprs[2]) +#define PT_REGS_SP_CORE(x) BPF_CORE_READ((PT_REGS_S390 *)(x), gprs[15]) +#define PT_REGS_IP_CORE(x) BPF_CORE_READ((PT_REGS_S390 *)(x), psw.addr) + +#elif defined(bpf_target_arm) + +#define PT_REGS_PARM1(x) ((x)->uregs[0]) +#define PT_REGS_PARM2(x) ((x)->uregs[1]) +#define PT_REGS_PARM3(x) ((x)->uregs[2]) +#define PT_REGS_PARM4(x) ((x)->uregs[3]) +#define PT_REGS_PARM5(x) ((x)->uregs[4]) +#define PT_REGS_RET(x) ((x)->uregs[14]) +#define PT_REGS_FP(x) ((x)->uregs[11]) /* Works only with CONFIG_FRAME_POINTER */ +#define PT_REGS_RC(x) ((x)->uregs[0]) +#define PT_REGS_SP(x) ((x)->uregs[13]) +#define PT_REGS_IP(x) ((x)->uregs[12]) + +#define PT_REGS_PARM1_CORE(x) BPF_CORE_READ((x), uregs[0]) +#define PT_REGS_PARM2_CORE(x) BPF_CORE_READ((x), uregs[1]) +#define PT_REGS_PARM3_CORE(x) BPF_CORE_READ((x), uregs[2]) +#define PT_REGS_PARM4_CORE(x) BPF_CORE_READ((x), uregs[3]) +#define PT_REGS_PARM5_CORE(x) BPF_CORE_READ((x), uregs[4]) +#define PT_REGS_RET_CORE(x) BPF_CORE_READ((x), uregs[14]) +#define PT_REGS_FP_CORE(x) BPF_CORE_READ((x), uregs[11]) +#define PT_REGS_RC_CORE(x) BPF_CORE_READ((x), uregs[0]) +#define PT_REGS_SP_CORE(x) BPF_CORE_READ((x), uregs[13]) +#define PT_REGS_IP_CORE(x) BPF_CORE_READ((x), uregs[12]) + +#elif defined(bpf_target_arm64) + +/* arm64 provides struct user_pt_regs instead of struct pt_regs to userspace */ +struct pt_regs; +#define PT_REGS_ARM64 const volatile struct user_pt_regs +#define PT_REGS_PARM1(x) (((PT_REGS_ARM64 *)(x))->regs[0]) +#define PT_REGS_PARM2(x) (((PT_REGS_ARM64 *)(x))->regs[1]) +#define PT_REGS_PARM3(x) (((PT_REGS_ARM64 *)(x))->regs[2]) +#define PT_REGS_PARM4(x) (((PT_REGS_ARM64 *)(x))->regs[3]) +#define PT_REGS_PARM5(x) (((PT_REGS_ARM64 *)(x))->regs[4]) +#define PT_REGS_RET(x) (((PT_REGS_ARM64 *)(x))->regs[30]) +/* Works only with CONFIG_FRAME_POINTER */ +#define PT_REGS_FP(x) (((PT_REGS_ARM64 *)(x))->regs[29]) +#define PT_REGS_RC(x) (((PT_REGS_ARM64 *)(x))->regs[0]) +#define PT_REGS_SP(x) (((PT_REGS_ARM64 *)(x))->sp) +#define PT_REGS_IP(x) (((PT_REGS_ARM64 *)(x))->pc) + +#define PT_REGS_PARM1_CORE(x) BPF_CORE_READ((PT_REGS_ARM64 *)(x), regs[0]) +#define PT_REGS_PARM2_CORE(x) BPF_CORE_READ((PT_REGS_ARM64 *)(x), regs[1]) +#define PT_REGS_PARM3_CORE(x) BPF_CORE_READ((PT_REGS_ARM64 *)(x), regs[2]) +#define PT_REGS_PARM4_CORE(x) BPF_CORE_READ((PT_REGS_ARM64 *)(x), regs[3]) +#define PT_REGS_PARM5_CORE(x) BPF_CORE_READ((PT_REGS_ARM64 *)(x), regs[4]) +#define PT_REGS_RET_CORE(x) BPF_CORE_READ((PT_REGS_ARM64 *)(x), regs[30]) +#define PT_REGS_FP_CORE(x) BPF_CORE_READ((PT_REGS_ARM64 *)(x), regs[29]) +#define PT_REGS_RC_CORE(x) BPF_CORE_READ((PT_REGS_ARM64 *)(x), regs[0]) +#define PT_REGS_SP_CORE(x) BPF_CORE_READ((PT_REGS_ARM64 *)(x), sp) +#define PT_REGS_IP_CORE(x) BPF_CORE_READ((PT_REGS_ARM64 *)(x), pc) + +#elif defined(bpf_target_mips) + +#define PT_REGS_PARM1(x) ((x)->regs[4]) +#define PT_REGS_PARM2(x) ((x)->regs[5]) +#define PT_REGS_PARM3(x) ((x)->regs[6]) +#define PT_REGS_PARM4(x) ((x)->regs[7]) +#define PT_REGS_PARM5(x) ((x)->regs[8]) +#define PT_REGS_RET(x) ((x)->regs[31]) +#define PT_REGS_FP(x) ((x)->regs[30]) /* Works only with CONFIG_FRAME_POINTER */ +#define PT_REGS_RC(x) ((x)->regs[2]) +#define PT_REGS_SP(x) ((x)->regs[29]) +#define PT_REGS_IP(x) ((x)->cp0_epc) + +#define PT_REGS_PARM1_CORE(x) BPF_CORE_READ((x), regs[4]) +#define PT_REGS_PARM2_CORE(x) BPF_CORE_READ((x), regs[5]) +#define PT_REGS_PARM3_CORE(x) BPF_CORE_READ((x), regs[6]) +#define PT_REGS_PARM4_CORE(x) BPF_CORE_READ((x), regs[7]) +#define PT_REGS_PARM5_CORE(x) BPF_CORE_READ((x), regs[8]) +#define PT_REGS_RET_CORE(x) BPF_CORE_READ((x), regs[31]) +#define PT_REGS_FP_CORE(x) BPF_CORE_READ((x), regs[30]) +#define PT_REGS_RC_CORE(x) BPF_CORE_READ((x), regs[2]) +#define PT_REGS_SP_CORE(x) BPF_CORE_READ((x), regs[29]) +#define PT_REGS_IP_CORE(x) BPF_CORE_READ((x), cp0_epc) + +#elif defined(bpf_target_powerpc) + +#define PT_REGS_PARM1(x) ((x)->gpr[3]) +#define PT_REGS_PARM2(x) ((x)->gpr[4]) +#define PT_REGS_PARM3(x) ((x)->gpr[5]) +#define PT_REGS_PARM4(x) ((x)->gpr[6]) +#define PT_REGS_PARM5(x) ((x)->gpr[7]) +#define PT_REGS_RC(x) ((x)->gpr[3]) +#define PT_REGS_SP(x) ((x)->sp) +#define PT_REGS_IP(x) ((x)->nip) + +#define PT_REGS_PARM1_CORE(x) BPF_CORE_READ((x), gpr[3]) +#define PT_REGS_PARM2_CORE(x) BPF_CORE_READ((x), gpr[4]) +#define PT_REGS_PARM3_CORE(x) BPF_CORE_READ((x), gpr[5]) +#define PT_REGS_PARM4_CORE(x) BPF_CORE_READ((x), gpr[6]) +#define PT_REGS_PARM5_CORE(x) BPF_CORE_READ((x), gpr[7]) +#define PT_REGS_RC_CORE(x) BPF_CORE_READ((x), gpr[3]) +#define PT_REGS_SP_CORE(x) BPF_CORE_READ((x), sp) +#define PT_REGS_IP_CORE(x) BPF_CORE_READ((x), nip) + +#elif defined(bpf_target_sparc) + +#define PT_REGS_PARM1(x) ((x)->u_regs[UREG_I0]) +#define PT_REGS_PARM2(x) ((x)->u_regs[UREG_I1]) +#define PT_REGS_PARM3(x) ((x)->u_regs[UREG_I2]) +#define PT_REGS_PARM4(x) ((x)->u_regs[UREG_I3]) +#define PT_REGS_PARM5(x) ((x)->u_regs[UREG_I4]) +#define PT_REGS_RET(x) ((x)->u_regs[UREG_I7]) +#define PT_REGS_RC(x) ((x)->u_regs[UREG_I0]) +#define PT_REGS_SP(x) ((x)->u_regs[UREG_FP]) + +#define PT_REGS_PARM1_CORE(x) BPF_CORE_READ((x), u_regs[UREG_I0]) +#define PT_REGS_PARM2_CORE(x) BPF_CORE_READ((x), u_regs[UREG_I1]) +#define PT_REGS_PARM3_CORE(x) BPF_CORE_READ((x), u_regs[UREG_I2]) +#define PT_REGS_PARM4_CORE(x) BPF_CORE_READ((x), u_regs[UREG_I3]) +#define PT_REGS_PARM5_CORE(x) BPF_CORE_READ((x), u_regs[UREG_I4]) +#define PT_REGS_RET_CORE(x) BPF_CORE_READ((x), u_regs[UREG_I7]) +#define PT_REGS_RC_CORE(x) BPF_CORE_READ((x), u_regs[UREG_I0]) +#define PT_REGS_SP_CORE(x) BPF_CORE_READ((x), u_regs[UREG_FP]) + +/* Should this also be a bpf_target check for the sparc case? */ +#if defined(__arch64__) +#define PT_REGS_IP(x) ((x)->tpc) +#define PT_REGS_IP_CORE(x) BPF_CORE_READ((x), tpc) +#else +#define PT_REGS_IP(x) ((x)->pc) +#define PT_REGS_IP_CORE(x) BPF_CORE_READ((x), pc) +#endif + +#elif defined(bpf_target_riscv) + +struct pt_regs; +#define PT_REGS_RV const volatile struct user_regs_struct +#define PT_REGS_PARM1(x) (((PT_REGS_RV *)(x))->a0) +#define PT_REGS_PARM2(x) (((PT_REGS_RV *)(x))->a1) +#define PT_REGS_PARM3(x) (((PT_REGS_RV *)(x))->a2) +#define PT_REGS_PARM4(x) (((PT_REGS_RV *)(x))->a3) +#define PT_REGS_PARM5(x) (((PT_REGS_RV *)(x))->a4) +#define PT_REGS_RET(x) (((PT_REGS_RV *)(x))->ra) +#define PT_REGS_FP(x) (((PT_REGS_RV *)(x))->s5) +#define PT_REGS_RC(x) (((PT_REGS_RV *)(x))->a5) +#define PT_REGS_SP(x) (((PT_REGS_RV *)(x))->sp) +#define PT_REGS_IP(x) (((PT_REGS_RV *)(x))->epc) + +#define PT_REGS_PARM1_CORE(x) BPF_CORE_READ((PT_REGS_RV *)(x), a0) +#define PT_REGS_PARM2_CORE(x) BPF_CORE_READ((PT_REGS_RV *)(x), a1) +#define PT_REGS_PARM3_CORE(x) BPF_CORE_READ((PT_REGS_RV *)(x), a2) +#define PT_REGS_PARM4_CORE(x) BPF_CORE_READ((PT_REGS_RV *)(x), a3) +#define PT_REGS_PARM5_CORE(x) BPF_CORE_READ((PT_REGS_RV *)(x), a4) +#define PT_REGS_RET_CORE(x) BPF_CORE_READ((PT_REGS_RV *)(x), ra) +#define PT_REGS_FP_CORE(x) BPF_CORE_READ((PT_REGS_RV *)(x), fp) +#define PT_REGS_RC_CORE(x) BPF_CORE_READ((PT_REGS_RV *)(x), a5) +#define PT_REGS_SP_CORE(x) BPF_CORE_READ((PT_REGS_RV *)(x), sp) +#define PT_REGS_IP_CORE(x) BPF_CORE_READ((PT_REGS_RV *)(x), epc) + +#endif + +#if defined(bpf_target_powerpc) +#define BPF_KPROBE_READ_RET_IP(ip, ctx) ({ (ip) = (ctx)->link; }) +#define BPF_KRETPROBE_READ_RET_IP BPF_KPROBE_READ_RET_IP +#elif defined(bpf_target_sparc) +#define BPF_KPROBE_READ_RET_IP(ip, ctx) ({ (ip) = PT_REGS_RET(ctx); }) +#define BPF_KRETPROBE_READ_RET_IP BPF_KPROBE_READ_RET_IP +#elif defined(bpf_target_defined) +#define BPF_KPROBE_READ_RET_IP(ip, ctx) \ + ({ bpf_probe_read_kernel(&(ip), sizeof(ip), (void *)PT_REGS_RET(ctx)); }) +#define BPF_KRETPROBE_READ_RET_IP(ip, ctx) \ + ({ bpf_probe_read_kernel(&(ip), sizeof(ip), \ + (void *)(PT_REGS_FP(ctx) + sizeof(ip))); }) +#endif + +#if !defined(bpf_target_defined) + +#define PT_REGS_PARM1(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_PARM2(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_PARM3(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_PARM4(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_PARM5(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_RET(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_FP(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_RC(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_SP(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_IP(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) + +#define PT_REGS_PARM1_CORE(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_PARM2_CORE(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_PARM3_CORE(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_PARM4_CORE(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_PARM5_CORE(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_RET_CORE(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_FP_CORE(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_RC_CORE(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_SP_CORE(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define PT_REGS_IP_CORE(x) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) + +#define BPF_KPROBE_READ_RET_IP(ip, ctx) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) +#define BPF_KRETPROBE_READ_RET_IP(ip, ctx) ({ _Pragma(__BPF_TARGET_MISSING); 0l; }) + +#endif /* !defined(bpf_target_defined) */ + +#ifndef ___bpf_concat +#define ___bpf_concat(a, b) a ## b +#endif +#ifndef ___bpf_apply +#define ___bpf_apply(fn, n) ___bpf_concat(fn, n) +#endif +#ifndef ___bpf_nth +#define ___bpf_nth(_, _1, _2, _3, _4, _5, _6, _7, _8, _9, _a, _b, _c, N, ...) N +#endif +#ifndef ___bpf_narg +#define ___bpf_narg(...) \ + ___bpf_nth(_, ##__VA_ARGS__, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0) +#endif + +#define ___bpf_ctx_cast0() ctx +#define ___bpf_ctx_cast1(x) ___bpf_ctx_cast0(), (void *)ctx[0] +#define ___bpf_ctx_cast2(x, args...) ___bpf_ctx_cast1(args), (void *)ctx[1] +#define ___bpf_ctx_cast3(x, args...) ___bpf_ctx_cast2(args), (void *)ctx[2] +#define ___bpf_ctx_cast4(x, args...) ___bpf_ctx_cast3(args), (void *)ctx[3] +#define ___bpf_ctx_cast5(x, args...) ___bpf_ctx_cast4(args), (void *)ctx[4] +#define ___bpf_ctx_cast6(x, args...) ___bpf_ctx_cast5(args), (void *)ctx[5] +#define ___bpf_ctx_cast7(x, args...) ___bpf_ctx_cast6(args), (void *)ctx[6] +#define ___bpf_ctx_cast8(x, args...) ___bpf_ctx_cast7(args), (void *)ctx[7] +#define ___bpf_ctx_cast9(x, args...) ___bpf_ctx_cast8(args), (void *)ctx[8] +#define ___bpf_ctx_cast10(x, args...) ___bpf_ctx_cast9(args), (void *)ctx[9] +#define ___bpf_ctx_cast11(x, args...) ___bpf_ctx_cast10(args), (void *)ctx[10] +#define ___bpf_ctx_cast12(x, args...) ___bpf_ctx_cast11(args), (void *)ctx[11] +#define ___bpf_ctx_cast(args...) \ + ___bpf_apply(___bpf_ctx_cast, ___bpf_narg(args))(args) + +/* + * BPF_PROG is a convenience wrapper for generic tp_btf/fentry/fexit and + * similar kinds of BPF programs, that accept input arguments as a single + * pointer to untyped u64 array, where each u64 can actually be a typed + * pointer or integer of different size. Instead of requring user to write + * manual casts and work with array elements by index, BPF_PROG macro + * allows user to declare a list of named and typed input arguments in the + * same syntax as for normal C function. All the casting is hidden and + * performed transparently, while user code can just assume working with + * function arguments of specified type and name. + * + * Original raw context argument is preserved as well as 'ctx' argument. + * This is useful when using BPF helpers that expect original context + * as one of the parameters (e.g., for bpf_perf_event_output()). + */ +#define BPF_PROG(name, args...) \ +name(unsigned long long *ctx); \ +static __attribute__((always_inline)) typeof(name(0)) \ +____##name(unsigned long long *ctx, ##args); \ +typeof(name(0)) name(unsigned long long *ctx) \ +{ \ + _Pragma("GCC diagnostic push") \ + _Pragma("GCC diagnostic ignored \"-Wint-conversion\"") \ + return ____##name(___bpf_ctx_cast(args)); \ + _Pragma("GCC diagnostic pop") \ +} \ +static __attribute__((always_inline)) typeof(name(0)) \ +____##name(unsigned long long *ctx, ##args) + +struct pt_regs; + +#define ___bpf_kprobe_args0() ctx +#define ___bpf_kprobe_args1(x) \ + ___bpf_kprobe_args0(), (void *)PT_REGS_PARM1(ctx) +#define ___bpf_kprobe_args2(x, args...) \ + ___bpf_kprobe_args1(args), (void *)PT_REGS_PARM2(ctx) +#define ___bpf_kprobe_args3(x, args...) \ + ___bpf_kprobe_args2(args), (void *)PT_REGS_PARM3(ctx) +#define ___bpf_kprobe_args4(x, args...) \ + ___bpf_kprobe_args3(args), (void *)PT_REGS_PARM4(ctx) +#define ___bpf_kprobe_args5(x, args...) \ + ___bpf_kprobe_args4(args), (void *)PT_REGS_PARM5(ctx) +#define ___bpf_kprobe_args(args...) \ + ___bpf_apply(___bpf_kprobe_args, ___bpf_narg(args))(args) + +/* + * BPF_KPROBE serves the same purpose for kprobes as BPF_PROG for + * tp_btf/fentry/fexit BPF programs. It hides the underlying platform-specific + * low-level way of getting kprobe input arguments from struct pt_regs, and + * provides a familiar typed and named function arguments syntax and + * semantics of accessing kprobe input paremeters. + * + * Original struct pt_regs* context is preserved as 'ctx' argument. This might + * be necessary when using BPF helpers like bpf_perf_event_output(). + */ +#define BPF_KPROBE(name, args...) \ +name(struct pt_regs *ctx); \ +static __attribute__((always_inline)) typeof(name(0)) \ +____##name(struct pt_regs *ctx, ##args); \ +typeof(name(0)) name(struct pt_regs *ctx) \ +{ \ + _Pragma("GCC diagnostic push") \ + _Pragma("GCC diagnostic ignored \"-Wint-conversion\"") \ + return ____##name(___bpf_kprobe_args(args)); \ + _Pragma("GCC diagnostic pop") \ +} \ +static __attribute__((always_inline)) typeof(name(0)) \ +____##name(struct pt_regs *ctx, ##args) + +#define ___bpf_kretprobe_args0() ctx +#define ___bpf_kretprobe_args1(x) \ + ___bpf_kretprobe_args0(), (void *)PT_REGS_RC(ctx) +#define ___bpf_kretprobe_args(args...) \ + ___bpf_apply(___bpf_kretprobe_args, ___bpf_narg(args))(args) + +/* + * BPF_KRETPROBE is similar to BPF_KPROBE, except, it only provides optional + * return value (in addition to `struct pt_regs *ctx`), but no input + * arguments, because they will be clobbered by the time probed function + * returns. + */ +#define BPF_KRETPROBE(name, args...) \ +name(struct pt_regs *ctx); \ +static __attribute__((always_inline)) typeof(name(0)) \ +____##name(struct pt_regs *ctx, ##args); \ +typeof(name(0)) name(struct pt_regs *ctx) \ +{ \ + _Pragma("GCC diagnostic push") \ + _Pragma("GCC diagnostic ignored \"-Wint-conversion\"") \ + return ____##name(___bpf_kretprobe_args(args)); \ + _Pragma("GCC diagnostic pop") \ +} \ +static __always_inline typeof(name(0)) ____##name(struct pt_regs *ctx, ##args) + +#endif diff --git a/components/execd/pkg/ebpf/prog/bpf/common.h b/components/execd/pkg/ebpf/prog/bpf/common.h new file mode 100644 index 000000000..55d4fe9d9 --- /dev/null +++ b/components/execd/pkg/ebpf/prog/bpf/common.h @@ -0,0 +1,161 @@ +// This is a compact version of `vmlinux.h` to be used in the examples using C code. + +#pragma once + +typedef unsigned char __u8; +typedef short int __s16; +typedef short unsigned int __u16; +typedef int __s32; +typedef unsigned int __u32; +typedef long long int __s64; +typedef long long unsigned int __u64; +typedef __u8 u8; +typedef __s16 s16; +typedef __u16 u16; +typedef __s32 s32; +typedef __u32 u32; +typedef __s64 s64; +typedef __u64 u64; +typedef __u16 __le16; +typedef __u16 __be16; +typedef __u32 __be32; +typedef __u64 __be64; +typedef __u32 __wsum; + +#include "bpf_helpers.h" + +enum bpf_map_type { + BPF_MAP_TYPE_UNSPEC = 0, + BPF_MAP_TYPE_HASH = 1, + BPF_MAP_TYPE_ARRAY = 2, + BPF_MAP_TYPE_PROG_ARRAY = 3, + BPF_MAP_TYPE_PERF_EVENT_ARRAY = 4, + BPF_MAP_TYPE_PERCPU_HASH = 5, + BPF_MAP_TYPE_PERCPU_ARRAY = 6, + BPF_MAP_TYPE_STACK_TRACE = 7, + BPF_MAP_TYPE_CGROUP_ARRAY = 8, + BPF_MAP_TYPE_LRU_HASH = 9, + BPF_MAP_TYPE_LRU_PERCPU_HASH = 10, + BPF_MAP_TYPE_LPM_TRIE = 11, + BPF_MAP_TYPE_ARRAY_OF_MAPS = 12, + BPF_MAP_TYPE_HASH_OF_MAPS = 13, + BPF_MAP_TYPE_DEVMAP = 14, + BPF_MAP_TYPE_SOCKMAP = 15, + BPF_MAP_TYPE_CPUMAP = 16, + BPF_MAP_TYPE_XSKMAP = 17, + BPF_MAP_TYPE_SOCKHASH = 18, + BPF_MAP_TYPE_CGROUP_STORAGE = 19, + BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 20, + BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 21, + BPF_MAP_TYPE_QUEUE = 22, + BPF_MAP_TYPE_STACK = 23, + BPF_MAP_TYPE_SK_STORAGE = 24, + BPF_MAP_TYPE_DEVMAP_HASH = 25, + BPF_MAP_TYPE_STRUCT_OPS = 26, + BPF_MAP_TYPE_RINGBUF = 27, + BPF_MAP_TYPE_INODE_STORAGE = 28, +}; + +enum xdp_action { + XDP_ABORTED = 0, + XDP_DROP = 1, + XDP_PASS = 2, + XDP_TX = 3, + XDP_REDIRECT = 4, +}; + +enum tc_action { + TC_ACT_UNSPEC = -1, + TC_ACT_OK = 0, + TC_ACT_RECLASSIFY = 1, + TC_ACT_SHOT = 2, + TC_ACT_PIPE = 3, + TC_ACT_STOLEN = 4, + TC_ACT_QUEUED = 5, + TC_ACT_REPEAT = 6, + TC_ACT_REDIRECT = 7, + TC_ACT_JUMP = 0x10000000 +}; + +struct xdp_md { + __u32 data; + __u32 data_end; + __u32 data_meta; + __u32 ingress_ifindex; + __u32 rx_queue_index; + __u32 egress_ifindex; +}; + +typedef __u16 __sum16; + +#define ETH_P_IP 0x0800 + +struct ethhdr { + unsigned char h_dest[6]; + unsigned char h_source[6]; + __be16 h_proto; +}; + +struct iphdr { + __u8 ihl: 4; + __u8 version: 4; + __u8 tos; + __be16 tot_len; + __be16 id; + __be16 frag_off; + __u8 ttl; + __u8 protocol; + __sum16 check; + __be32 saddr; + __be32 daddr; +}; + +enum { + BPF_ANY = 0, + BPF_NOEXIST = 1, + BPF_EXIST = 2, + BPF_F_LOCK = 4, +}; + +/* BPF_FUNC_perf_event_output, BPF_FUNC_perf_event_read and + * BPF_FUNC_perf_event_read_value flags. + */ +#define BPF_F_INDEX_MASK 0xffffffffULL +#define BPF_F_CURRENT_CPU BPF_F_INDEX_MASK + +#if defined(__TARGET_ARCH_x86) +struct pt_regs { + /* + * C ABI says these regs are callee-preserved. They aren't saved on kernel entry + * unless syscall needs a complete, fully filled "struct pt_regs". + */ + unsigned long r15; + unsigned long r14; + unsigned long r13; + unsigned long r12; + unsigned long rbp; + unsigned long rbx; + /* These regs are callee-clobbered. Always saved on kernel entry. */ + unsigned long r11; + unsigned long r10; + unsigned long r9; + unsigned long r8; + unsigned long rax; + unsigned long rcx; + unsigned long rdx; + unsigned long rsi; + unsigned long rdi; + /* + * On syscall entry, this is syscall#. On CPU exception, this is error code. + * On hw interrupt, it's IRQ number: + */ + unsigned long orig_rax; + /* Return frame for iretq */ + unsigned long rip; + unsigned long cs; + unsigned long eflags; + unsigned long rsp; + unsigned long ss; + /* top of stack page */ +}; +#endif /* __TARGET_ARCH_x86 */ From 09bdaea7f2d89824a6656442774173cd3a4d52c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 11:33:51 +0800 Subject: [PATCH 21/33] fix(ebpf): remove the generic audit_bpfel/eb generated files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit bpf2go -target amd64|arm64 emits audit_x86_bpfel.go / audit_arm64_bpfel.go (per-arch, build-tagged); the old generic audit_bpfel.go/audit_bpfeb.go stayed in the tree and redeclared loadAudit & friends. Delete them — the Dockerfile builder regenerates the per-arch files at image build time. --- components/execd/pkg/ebpf/audit_bpfeb.go | 125 ----------------------- components/execd/pkg/ebpf/audit_bpfeb.o | Bin 70504 -> 0 bytes components/execd/pkg/ebpf/audit_bpfel.go | 125 ----------------------- components/execd/pkg/ebpf/audit_bpfel.o | Bin 70504 -> 0 bytes 4 files changed, 250 deletions(-) delete mode 100644 components/execd/pkg/ebpf/audit_bpfeb.go delete mode 100644 components/execd/pkg/ebpf/audit_bpfeb.o delete mode 100644 components/execd/pkg/ebpf/audit_bpfel.go delete mode 100644 components/execd/pkg/ebpf/audit_bpfel.o diff --git a/components/execd/pkg/ebpf/audit_bpfeb.go b/components/execd/pkg/ebpf/audit_bpfeb.go deleted file mode 100644 index 8bdb46ca5..000000000 --- a/components/execd/pkg/ebpf/audit_bpfeb.go +++ /dev/null @@ -1,125 +0,0 @@ -// Code generated by bpf2go; DO NOT EDIT. -//go:build ebpf && (mips || mips64 || ppc64 || s390x) - -package ebpf - -import ( - "bytes" - _ "embed" - "fmt" - "io" - - "github.com/cilium/ebpf" -) - -// loadAudit returns the embedded CollectionSpec for audit. -func loadAudit() (*ebpf.CollectionSpec, error) { - reader := bytes.NewReader(_AuditBytes) - spec, err := ebpf.LoadCollectionSpecFromReader(reader) - if err != nil { - return nil, fmt.Errorf("can't load audit: %w", err) - } - - return spec, err -} - -// loadAuditObjects loads audit and converts it into a struct. -// -// The following types are suitable as obj argument: -// -// *auditObjects -// *auditPrograms -// *auditMaps -// -// See ebpf.CollectionSpec.LoadAndAssign documentation for details. -func loadAuditObjects(obj interface{}, opts *ebpf.CollectionOptions) error { - spec, err := loadAudit() - if err != nil { - return err - } - - return spec.LoadAndAssign(obj, opts) -} - -// auditSpecs contains maps and programs before they are loaded into the kernel. -// -// It can be passed ebpf.CollectionSpec.Assign. -type auditSpecs struct { - auditProgramSpecs - auditMapSpecs -} - -// auditSpecs contains programs before they are loaded into the kernel. -// -// It can be passed ebpf.CollectionSpec.Assign. -type auditProgramSpecs struct { - OnCommitCreds *ebpf.ProgramSpec `ebpf:"on_commit_creds"` - OnConnect *ebpf.ProgramSpec `ebpf:"on_connect"` - OnExec *ebpf.ProgramSpec `ebpf:"on_exec"` -} - -// auditMapSpecs contains maps before they are loaded into the kernel. -// -// It can be passed ebpf.CollectionSpec.Assign. -type auditMapSpecs struct { - Events *ebpf.MapSpec `ebpf:"events"` -} - -// auditObjects contains all objects after they have been loaded into the kernel. -// -// It can be passed to loadAuditObjects or ebpf.CollectionSpec.LoadAndAssign. -type auditObjects struct { - auditPrograms - auditMaps -} - -func (o *auditObjects) Close() error { - return _AuditClose( - &o.auditPrograms, - &o.auditMaps, - ) -} - -// auditMaps contains all maps after they have been loaded into the kernel. -// -// It can be passed to loadAuditObjects or ebpf.CollectionSpec.LoadAndAssign. -type auditMaps struct { - Events *ebpf.Map `ebpf:"events"` -} - -func (m *auditMaps) Close() error { - return _AuditClose( - m.Events, - ) -} - -// auditPrograms contains all programs after they have been loaded into the kernel. -// -// It can be passed to loadAuditObjects or ebpf.CollectionSpec.LoadAndAssign. -type auditPrograms struct { - OnCommitCreds *ebpf.Program `ebpf:"on_commit_creds"` - OnConnect *ebpf.Program `ebpf:"on_connect"` - OnExec *ebpf.Program `ebpf:"on_exec"` -} - -func (p *auditPrograms) Close() error { - return _AuditClose( - p.OnCommitCreds, - p.OnConnect, - p.OnExec, - ) -} - -func _AuditClose(closers ...io.Closer) error { - for _, closer := range closers { - if err := closer.Close(); err != nil { - return err - } - } - return nil -} - -// Do not access this directly. -// -//go:embed audit_bpfeb.o -var _AuditBytes []byte diff --git a/components/execd/pkg/ebpf/audit_bpfeb.o b/components/execd/pkg/ebpf/audit_bpfeb.o deleted file mode 100644 index 8a62674b709cde93e4887d7c4785701651f1e154..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 70504 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 Xs(w$YI-fj~Tu=E{nq2Q({tN#HDR8(y diff --git a/components/execd/pkg/ebpf/audit_bpfel.go b/components/execd/pkg/ebpf/audit_bpfel.go deleted file mode 100644 index b750c5b0a..000000000 --- a/components/execd/pkg/ebpf/audit_bpfel.go +++ /dev/null @@ -1,125 +0,0 @@ -// Code generated by bpf2go; DO NOT EDIT. -//go:build ebpf && (386 || amd64 || arm || arm64 || loong64 || mips64le || mipsle || ppc64le || riscv64) - -package ebpf - -import ( - "bytes" - _ "embed" - "fmt" - "io" - - "github.com/cilium/ebpf" -) - -// loadAudit returns the embedded CollectionSpec for audit. -func loadAudit() (*ebpf.CollectionSpec, error) { - reader := bytes.NewReader(_AuditBytes) - spec, err := ebpf.LoadCollectionSpecFromReader(reader) - if err != nil { - return nil, fmt.Errorf("can't load audit: %w", err) - } - - return spec, err -} - -// loadAuditObjects loads audit and converts it into a struct. -// -// The following types are suitable as obj argument: -// -// *auditObjects -// *auditPrograms -// *auditMaps -// -// See ebpf.CollectionSpec.LoadAndAssign documentation for details. -func loadAuditObjects(obj interface{}, opts *ebpf.CollectionOptions) error { - spec, err := loadAudit() - if err != nil { - return err - } - - return spec.LoadAndAssign(obj, opts) -} - -// auditSpecs contains maps and programs before they are loaded into the kernel. -// -// It can be passed ebpf.CollectionSpec.Assign. -type auditSpecs struct { - auditProgramSpecs - auditMapSpecs -} - -// auditSpecs contains programs before they are loaded into the kernel. -// -// It can be passed ebpf.CollectionSpec.Assign. -type auditProgramSpecs struct { - OnCommitCreds *ebpf.ProgramSpec `ebpf:"on_commit_creds"` - OnConnect *ebpf.ProgramSpec `ebpf:"on_connect"` - OnExec *ebpf.ProgramSpec `ebpf:"on_exec"` -} - -// auditMapSpecs contains maps before they are loaded into the kernel. -// -// It can be passed ebpf.CollectionSpec.Assign. -type auditMapSpecs struct { - Events *ebpf.MapSpec `ebpf:"events"` -} - -// auditObjects contains all objects after they have been loaded into the kernel. -// -// It can be passed to loadAuditObjects or ebpf.CollectionSpec.LoadAndAssign. -type auditObjects struct { - auditPrograms - auditMaps -} - -func (o *auditObjects) Close() error { - return _AuditClose( - &o.auditPrograms, - &o.auditMaps, - ) -} - -// auditMaps contains all maps after they have been loaded into the kernel. -// -// It can be passed to loadAuditObjects or ebpf.CollectionSpec.LoadAndAssign. -type auditMaps struct { - Events *ebpf.Map `ebpf:"events"` -} - -func (m *auditMaps) Close() error { - return _AuditClose( - m.Events, - ) -} - -// auditPrograms contains all programs after they have been loaded into the kernel. -// -// It can be passed to loadAuditObjects or ebpf.CollectionSpec.LoadAndAssign. -type auditPrograms struct { - OnCommitCreds *ebpf.Program `ebpf:"on_commit_creds"` - OnConnect *ebpf.Program `ebpf:"on_connect"` - OnExec *ebpf.Program `ebpf:"on_exec"` -} - -func (p *auditPrograms) Close() error { - return _AuditClose( - p.OnCommitCreds, - p.OnConnect, - p.OnExec, - ) -} - -func _AuditClose(closers ...io.Closer) error { - for _, closer := range closers { - if err := closer.Close(); err != nil { - return err - } - } - return nil -} - -// Do not access this directly. -// -//go:embed audit_bpfel.o -var _AuditBytes []byte diff --git a/components/execd/pkg/ebpf/audit_bpfel.o b/components/execd/pkg/ebpf/audit_bpfel.o deleted file mode 100644 index 6a5836bae119b892af45dbe4abbfc6d05d602bdc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 70504 zcmeFa36xw_z5jc{jg%}tzV8=`sFCPC*mf8D*s%dbh&y~SVM ze!=ZOx&4gWzju3u+mE^ZsM|kx`$4zwcl$oKzvp(t?Qgn$yW6+AeT&;Sx&4aSXOqTt zd6x2&dAcXx(3EeDTlwi&Gt1Un9|z{HYl6Kd^6}SRd+oMTmbFVhA;=ZpNj&m5AAifQ z8@KS*dvkc7`oGEjPvlkfm%hKn-z#dpm#uL5FWb0nZGMB>;_o(Rwz_z(TunTk*Ia4o zI+nm*gVyu0Y^=h4!76?_(a$s`ahQ^l;m^ePf@Vd8n!QORm5ypv5k2j7d zld{lmq`&8X6aSx9DbH9gZ^B(y~!Qh(35zqB3Qh9}iy)8CoqZ6$v%tj1rg*VV-n+e;cxQ-3w#|8+It-$s7& zG+nF7PaH>;@7TW98+(2FZ};%6yt~8usK5N$FyDQS@m<=2Gyt}?~L*)Z5kd0z&* z-@bBt>Acqa*L9(Nyl?9;z;<36=IhSuLO*=p)-(vr#%-$I|DAFE=cIRa{a^>e|L^+2 zLGur@biC2e)qiZuHuIM!T$p8gF6eD)mnMKAM_HS4Ty8ouy|S@Q^0)9zl7RQF7hI?$ zQ{75_Ld&)=CaR5ZF3;|3OKgRg^Sqr0v#v(6_#P}x=4Tfk^d@S~S;!M+`7j5n26CQ$ zo(*_9c!r$|>}5RiH_me!59yw$wxe{YugF}$vks5acd@g|OJUMfR36#YJeW4QrT0a- za4W3}@0)Ug>+#bN!P2|euvK0U1$Voe;xC;Q<}-m~c(DkqEVWEhc}K&`b>!zc9)_jt zMIK~t+E@$_$XUhKS@tR%>wPUeC_M$T4V=f}x4~N>Z@^o_WmuV3nMl73Pv;Tm*fV(e zFYDlE51wt{0(&-(bkt&wfK|RZ+y$#{3wQwLzpMd&zeijoNt1J86m7@i9&%ntZi7%MCI8FYCzBg;;Ac@AId@&ujFUUK+2=MK2bxqt_q$Kg|9l}`gc6JB58?3raBbuRCjwO!{t z1^$-vRQP`9t>Irg=kW8+v*3R_&xYG+(+YnMyrJ`4cq`|5@NUir!h1U(1RvylFnqN0 zA@KX1-vuv$t?iNiW$=LV1*>c};3@W|Zz30u!xy-I1O6mTGtIJnvg~^29KI2@_5k1N zobAi_=sE@b1D7}8pE~FJW!Z1w4-#YpeilAm;qRYie{r2GXI_WTKwQ9+nJmtP8}Me% z*(~ZER=>#MJ>V_i0^ZNL0nc$(13v^lOZxD;;Sa;v9QrprRetBvzF@0&c-T3c#~vA0 z_&I!ra{*r*_2ExN{R6Y?8u%jV!(WC!0XGh&pTeJ3T<^-VhnySmA?HKUxyp;Z1^@@xT+$>HnZ^%c%h zo8X_q1^f;8A-Dm58@70lV_t(TU+^!Sv*WYu zN#`7X0sgtdfnSAxp>W`JC;J=$ZwEh$Toc_+@XlZk&xC&|eRwwfE9tzKtVJET8~(L) z;2L~|beJU1gso1Q7(WU>hPVu01wRhw@E2XbfbW78Z^7jG0Q?&`tDp=2R{HSM@Cvwq zpNHwX*+uX_Ts{uBuO0H$fH#4ah86Jk&RGX--gV0Gk?`i|?qL-3!GH{i!%D^K`$a9Mtz%(6eiCAb6rH~eC}Is)QZk zGMK~r!dt-wJP&>uZoo&u|A4cn7+c_ff;rp={|heQ55WJ18*l-?2CHH(gtIneu=WCL zF#OFxbODc*751g*SRKJKZ{sO=u0XEzGu1QMUvFNC+$yDH&&P6b$eL6o&oar*rls1J zABL@N(Ye&QfUk9Kz&F7=%P)!2K8$8-`?=eYi_b%LkMl+F&zwIA{}xvG4fqev*#z39 za}IAn2BlNLTfnzb8yTNw`j(vz4F;jYn16E1<%X`pc%AS}bcmR%lW`(ol&pH?I z-(cml!SkB)3V7WOyzdj!rp`IMjkDUvjxb*AOkgIwCh^X|eITs7$Q&8<;bWZ}a4#&s z8R4issoj?0laPyNz{}x1;T(2T+5`9?a_ZtNjeV*cm9xx+$gQ2hpK@0CpK(?=Uve(s zuSI>h0q>$fNK3Onz#0RU&H}y<9r1W6YkS!F8hC~CweX*vuY+}-ApPs%S6%)Yc-;+y z{Il?;&Yy#~bG`xI1Ku0I4Z_GH)4q>{=Soi7T>#I6Rq);LpD5C!TCP;OU@6%w>duw-vyK0iDmpKu2?S* zz>2HE^9YP--^DEZDedn}5bGS^oMZnsgtrFS&YlncvbHx{l3gn+sf^r|Hl_V7^^yZpc?CD{i#D-8!bs|!a|=&MRQGP03a08oR`0_$+je zf^+zz&K>X-?ze!igO5h10pA3(4Y6~$ufyuQ8i&6J+x$;XAB5Gna`-pS1^fr+2HYI0 z8Dswu_2CH{WtqxUWAB^bW8nt;HrU1q+OnI{=EOSv2;on7l__?SL{~flxQ&?+l?DY|DTG!P05KyEv=T_Ky1S z+^7#9>)e3r&dS_HQ6K(%)Q7(v_2C~xecH?~qdxqns1Lsy^xfQeVq&V zNaqGziTaF}HJBo>Ht+$sLLL)SI<4g>b+&kN7knoAnD!pC?58C8M?B0Nz7($7tL6_S z68afgwQmHMqeHRU+V8XQB3Hcuw*KyJ^lj~`GnLsc`vN**MA=uI)&A~u)*8l5=`3Q_ zSt&(e^Y-27Sbs<1hp_Fd;Ga7e@Dt7r_yuPb*sD<=UW)}MK~J29PCTavvyG6eFXud4 zIyYc9rLC|-ab_38l&8(7R|k3a zIc!D!Wo+rlVB4PSPGlzsQPzM@adxZp#iYJ&bf)`FETeEg`X6w`pL*Ci?q4`}z)!%+ zPr>u7a|3o$x+w|&>v!@X~!qt_pD9a+R{ z{ax*6Y9c>BVYR1dNbf|Y`9Q*)?ZUI$TYX<5=_t>KqoZ~zbAq$R1f5~?pY{DtO11!H${_!Br_CdZAobyOuekp$2k4T;vCEd<1ly*6Ep0D)p z2_J;t%dlk*gRj6Ycox8lvmoFT;Ft!r`%fa5IT87%uyZ+rDaEjGmM(W8L9F9weiaXC zv3@!PFZ7qAu-bOca~galb_dUy@Xpu;&qrY8Re4ccnu?v6(p4?T#uaaPe*yj{VPe|9X;v#e6W+pkr_0@S>i^uOm^z&~_uzz;@!GWYAK4?i9C;a6cy z`@?3n>Rs#nSnutcOwoCSpSQwzvocKQT+^VM79@H3M#6U_d}oV|X5(3P66*yljkk14 z-%NN8yi-U|o7x2Zf#jGeeJjyR+LK9Rdu^#?rElZdov^TMEpiC_lm~VMe6aKToYf9` zVN849}F_gCx&Puxp1Ym0baLM}rEHs|-h1(AMBe@XcGBrV4#{GEiq z3*SLn)IL>L+W&6nVcZkslO%r_e%0lV!L%dOe;Pj6<$s1%-eq@VSxm10Dgfe$rgS%N zUPXT+UR|^X^Y7bu?+Tm3C0O;d1-z!@8#9K%7CyWqycOac-ov?oXTk00H{iL>I(Rz* zw)%%pa4z6Q@LJM`2jB^cmw-=)t?kTUT?qFf&*4wQOQgRmXBV)>mV7t%-OdI4E$0UO zU1xo)_;J*Sm0v1w;$r+i3@dFizjV&w$DIrKcg_v?KcYVAcsA<8&qaOs#i$Rz6!odJ ze?)!w)u<2a{W7Xc!cq8Q2=16qebqaVV_%ww>4)%_6_#oKw zM;eZHF2nD4&fz{-dG3I97i+T851)+uO>hJLAk2SO7}_7MgIw#>^P^wbzQxKfd>Qg% zP;bE3!8QjI_Scus)YvovPZcx1oCfcxw83Y<@~d&@0@%hT=BUeHg43wRV(duYJR zV5=AE?QD1-baMCtct2QU@s%)^-KYH;{BGn~nRyGgz5w3?AB((zwZ=UTZoog8!Z{qA zVgHh65!~25*{9LaeuG?fk;6~H>%k4!P3bE7(F@3F66eqrvNj4wfBUj2_N&-CV*eX^ zE;iO{$79RXv579bAh_GtlLLcgbLXYVHLl29<~kd!MrUDA$*x9c-z+=pJlraKrBf!Z zk;?Fw&>{O-&Li_?!Yi=9?(zowU1ufaCsDsGYkS0b7W`Z1+3-`&bKn=8=fbZ#&x7Bz zb%^&scvI(t;BA}_hIKDdX*&d-?(%oRJ2@W;@8f(J{4VFi;Uk@ofRA@RvMnq1I3I<4 z(0KuTs`JtChnyF}mpLB;-{MSrYWu!3ZK&E3K>F9L8zjxOC^cP*H zfMqr%-f_5X+fY^wc(QXgG3XGDtu;4{a>V6?r6nDy?|?kE|Gg8I4(~0TLleJ8CtOK* zNy4e$dLlnL;d2tcBw_iDX}bb>Oq=AJdD)9e+gVEgXInaLw>hKM_8n)!YP;W=qI%me zVQq673Iwx-hxs&en|DysSgmm~hvWFH^4EM#cy_nuKha-Teo2JN*~U*L2s0gd0sq70 z*(BB>+qn+>X6FLl+PMMC(6uLZ7*W5THaXvx@RkX0m2f%XDG5(Ycrqzg_!{4oW|`e% z+Ti_Qjfn-%AUD zc{As^8n$rY7*_$yAh&()XV8i1za{Z29ip6=W9$CL-V(TxTyflq{?1W|9mBjk3G+wJ zx$8+sQ`v*arxK9N!|*n61AZK)iCDf~fMeQTcFxh!<+iQSFThDKRc>uqYjl=FGH-qx zaxqJ%cGZKJvA#6LuJ-O(e`kT|9Qwkn=2*X&UJVtQ;L4X z%8v|bv%Jj5@9ZGT-s{|syBAh@s5}Q@LK=d(};Vx+n`2_y3tWGpP z+t|a)KX{xp;Sa;p?1YbqP- zFG0>a%Fau!ge^T}dK_jQrQBp+a4z6mT}Peed(Jtmb&32I@K0RcfFFwbYcO6!efUq# z1^ln556h^%wqy76_!yB*WT7A~^T zYpod#YtE*@o26|!It(jjc7gfN(zd7b4BQ96F-&~}NyB8l+B9rK&r*JmLf>^J9p_9D zuG`_v_&DiAXZlL1?o9gEJk@y$={wJPTUyg4&fB4Xl{3XX;j_-~fWPFt6W#B2SY@le z_Fb1Nq4&aS@3|bol#amtBjlug;(X5!>uNI(A-DFx%U{DsA#K3_0jrKyz|XplE};Gu zW{sWY@M}@d#JxU)gu=;T8I`B@J)0wsaZ1j*-OSd=X{L7OqBOI%4~F?hW!qSj3_B~~ zGtiejhuv7qkc@C_O(c05Ci{Y52uEp)VTxmzmgZH$lq`n12l1+$HRc@xv!^f<$Akjc zeAiK3=)BFshu??X!iU|Ij!D|{l?i_u{>c<;s}mnZS>rf+5Hp$=*=tyxY8|7v3!V>kw7&d+M>Trkjc|HiU*RZkWJeOK))VckQwHz^h?7_0# z@k20n&NwId&jzsN?J{iqMN|50D?TI5bIO4AS#&8@yX)|C_(YHQm(B%xzln0*JsIWj zGf_@t&%szW4*Ua-W%`P9PB^c@idyleap9CH4e;{23@TL6#Dfv&EMjfF!90b0koP(K z9IX5mJb!Z@hhKx~!dZi75)DTDAkW&)E8q>CUx42N4-=*mHO09MZx5fOxOiqbH{fNc za{OlVCYDTT2)Ucd5wNYC=Kv~aJ#JQ#s~ltqqWO39{W$g_POLZ8_?bDw{&x7Rc6{yw zk0O&f2>v*n6ZjxJ6`6P`tbKF`d?tJ;ItBbO=bXyE4!&IB&{w_)E1U-WP{RL!uW*BQxZwIfhc;Q`~JK%lcX~+wBK0F(~2<~zIBzzLAIvj^jfv;3tu*|2G zHparUkzWmKti1#tMqI#GyWa+UBdqkVfFDTs@2(^Hzu{{X=2`^1Yxp}X%^MrQcOoy~ zx4;S~qZVf+d?Nf!m)BtBU5)Y#Sn1dK@FgzS`S4Y+!s&qTN%&8$FZrvm>Z^d)=DUrR z1H7?w1KtKMqq73u6}JB59}B-t_&Iz4a;snX2v}*$={!~E4tNZHMsdL(g#Q9d@myG8 z=Ie2$2U~jJtDVQ;8(?c2@Q)Mz3oO44O~D#t&O`7P&X3}EJ6LI30q^Ae0=zeD^|B#x!e7tY}uVfpQVZ-YMw7x3Nir{MCB*W61=lBcgWYsVa?|S`iDC=;N#&*8o@SZZwsq$ z7VwyJ13ue1+l00WuYtb4M_li6eUG>W)_A7x5&Cx!UM9$l_3i`kWnd2f0$xix@bBPj zCsZ*zXobv}m93iy8HWqD$pf5gKn!!nnk6PYM&zw!(^OOZ#j z%=snc82h_P0s6Lg$@b)Kj_XWzF7tjf7-Rp|j6mTl+O3eQ&&o`LPf6lJWU1HOEL|^# zrr(+9e<0ESpfmsWgiIQj-Elbr`Dw0m9IS9{yl{QF-K?ehmQgyTvq*kTLf=f-MWuI< z(sMnWvpfzgE0a$kKig$d|1k6~M=l+Oe;s^oqQh&8_w&fLzL5C}e4g_+;SVMHytcAZ z{!~`&@(_&4RVR|`kx}^4xtDNkT!J5jFYquQhd;b>_@$ASyVPl+Dx?sv>L!LQVJx?& z2`84@3-CuhjMrdvEbrPYT;y`ypS~E*6-Y3p=m%#h>M8w-Z~eV29MhZvYs{3{F=4r* z{=SL)poEW0So#>t;T$05YY{pKZC@pYPk5R~kduY1;L*8~#^iAxnOF|u%Uoakl}|al zPO}_7>2m!|rZ|^EFs1L}UQS$TxxJA-X|{BpgZ@+xKxd)&&B{DFql@9|?yR^#?xxgb zxi?qo5@-Bco4J@UuR>quvV?;qEA5{69d|vf*rl3n4E@q>iSBhMT|;<$(w(>`@|$6e zkutZ!YDYQG9nKB70lyzRM^9yMb1D2&40B! zF5tgAkHfFRHxfnzF73@;6ISC`8~&2yte4k=ZxORT-30!!n2z=q_$#p1k7f8^ylU;X zIreOx`{13Ciywq9aQUO~OqXkYr~Sz^-n{_pPVZL zz=y(^_Rq)<2Fu2$t$FuZmo0Ri&*AQZDW)*4qkn_z=x+A8xXU~;=vZGo5&fw_WWS$x zeb=!ucnBTkQD!Op1#~nHxuImkdx|xaqe#+lKCFHw^I_*Qd?8G>?Ox>+%I9W}S9>;b zfsXcgHumGb5`FRdJlY3}%RHZR`3yMj19SK*$mbBoeE8eW$H6~z?tmYJDF>U+b-(&L zcpUko$T96-gk{K+jq6V%kMrao;5e2)2Wu@L^CC>yOw8d4`-HP3$=~cO`PR+_{7&Zv zd{ERUtd6J;FOT~0$D%%bBTSi3EaUfEE(f!_opbm{&ISB)=LY;ZOx|t0`72COn|T>l zT^BsB!sOld>g%xx)m}tq3t0WJ!4v;J+X@mlrqqq6ZPB5*TRDtQ;r_k*jrH3=ac6Y2 z_ECN93#-4YUUc8s(g4p!F4i1+u=7RmQO+6zk9WVSyAJ0DyvTV4JP0c;^B4W4x!Fvo&~5MxSBgtTKE7d^_)CJ_>&W&fzOuF1{Ytcv0|t6;@sv zlu;Z*z6)P~O!Dtpl>pekBdpud$F$$!allGOG?un&c_(3s=LfF;E!S6m%g7%=elNDn zae8MJTVZmiOGT5+ut{lxW1EE~z+jNi9X zZqK;iyWQVgkW0Ve@_Qxc*%JBpv2(dG_hC0k;1uL4yPV8vZqz!gfVW339*1YZS{F9p zJ)O0t&Yf4lN5I-Uz5u@;o`XKzR&{<6UgG@c30bM;%)e*Xw%qw8_)O=&!52FJ9sZQ_ z%Y-j;zw$vvY2N+~yn=b>Ms&m(4NG(TZ{ZyN5^`|?-wG>V4ftDd8D0V34X==28lwzB zPg2{K`JUvMpP;j2z}9&y?uU_Y>vCBn(fWnfbg>RsUCZ2~^thkcPSW=OIAN+@qKP`X zmq!ya^DH_^+mXylhi$IX-~6{N5ZZVvg&%lc{*K=`Mor%Tb#d8RY@dy4{ zwo{$o27knPOZXb+t>BxS%kVdxr@;3)PlbQxyfyr5=WXC;ooUZ)e}&cWXYjlVPs7f6 zWPU<9cVKJHNHe##yk<_q;c=ezV96UiGCxIsg%Rhbu*Rf~@}N_e8}oDQ-1%Yb4xYE> zAq~UuZq5aKu(Reaol$H3GR||n%Wr{CbZ)@Qogai{)IQZm&dNDQahc@t{fCfaUbla~ z2zlHiU*W9rL?(v$xxBRpll*5%_~_Ug@D_BGW|=$l5az1kd=Gh)-JdXCnsI48u5y-n zByX|YN)J!=Ebw}TKj0kMvGCJy0e8XA!VS0=z6;KHPJuO^g9q<*-1$;BCaef@W z1O5ZH#?tS=^4oy#fwj+A0Y3~shy4Q2Z{fdUYw__6{1RNiFT;O>8}NkLo|j3ir4q(h z_IGqLN~vNciXQyU~&SahNH? z)`M}+s&(I=kSne-{2Kg<^x+8%n3e{3edlp_D*UR_0PhHIgN)Np5T%uQc;Hj|cLX*#QXZ@Rf zd%>!g9G>S~z{fZ@;BIFXYCY=1r^8mx{CvoH99F&+R|CEnx%$e3@VN7%@RwndmaTxN zOh8`_7HYR4-$rR>;q_g3Dq?**dC0j8KLu}#P7c2eZx0vn#ChaRe&O}tcfc77wawuj zr4Mfl?<{?I22AvJ&a^kIbgn=?*ZCRvFy|NG`S33IeHng_%U>q5OPsa1A92zEJPv;!-W8<={KLpBI)5CQMdu^% zZqi}V`6R47W-L0NcP_&(!v`bI;Ry$_u0X$lC&TYY-helO->C%AQOfX4IESaf`Zwtd zco$gxsKL)Z@Ltj{Q-<)~(uWto`$!+|g!hFT@QLvL(w{=Rf)9{Bd@8Io7x4Mc{MSmP#`ykd` z=rrJs;kmFjjb+%*VyDxNV2Sg$lMh(+rMp7&;ho_Eeh+*mtbbp=7oMkh;ZfHSpAFAO zr2&5wR=wN@e+oVj{RiKXt^awKuRwk$e2^mEf%7d`<)6b3!G|C(;1%$@;PD-@_UGY4 z;Rf=5z=zB4j-;K4j)Zeqd)fJL0qY-d`<-+sk1gQy#rWG9enR^2e(>+54<86W1vlVh zU@K?rE}m(4En^SyJR`r@%X$7Fzu0HUNI6I7fzu(LEI*^}z0 zm^0D;y|ditoYjs^xrg-7RIYL^+Y0D^rlX*qYK1#l|E~u(rDqcPqC`FbUq@V+_CKQY zIp-A!ZiY#l?fdk1nA4<%(cjXG*Eg5_ScreZ|HPH$rRR~|NjS*uY$<-WKlmDm7 zDT`=IRr6ua(y%j@)%A11wg6jRtJv~3hTV!HD}B<#Rd8di7p0{MFLTEK z#4?KK5XR2fG9Pv>;E%zWcJ(tirL`1kFq4-jVXmFXPey(Xezml@-IeVko%6cr=FaQE zg|q%Hyy3h7Y#GJc5Y9bcZ{zW)X~k0v@#y@Af(5}h>;Uws*FhCG(@_HUrGXQFe+ z8|a*n=nTGr&KZf$$KOEbhD7JKH_*8+(Ru6*bpD*^OklmRy7sdP@|gE+-au#fL}&IY zI`odxsP|3rc61aslTS(H(-QfqiTv$}`~!)6heZCtM7~oZKP{2ZNaS(cARVT$4xr(n z%(H;>Bee0hd50dk=4k~{@bsedaqI?4$ z3BNPp{qVbVHGXF%I(d>`<J_O0h7X9FBS0l&J8&J+kwjDCy;l@FZ0Wla2MPl{%he8xS-H)f=4BXzXFd* ze*?}h;H7X5-wB^A9r$keAQcv8W%t8cm*?^x<{k z)1(7$0vFQRh&;ik!#TW@>+62&0r0)3=uYdA@WEgiuE1xYKMh_CpDDlaFnktVz)NA! z{{5fR;j?k9Kt4Jp>=`o7XwE^d@XPSWU`r=_6?`uGI>)&l{*VGgbaqfZ3&Q*9v z=U#Xp=SA>5_)TO#$G^__)UIUo?@L*}V70@AN+*0c`Z{M(Cs+UBHJrt&jQ&{=I>k^Y7r(ojE6NyUdwAQ`;@h?3wUwrgXI83uZD+AevI_CkRUKPINY* zZM!Kggq0owv%Srva+dL5YD)84eoI>=eotu0C%+?+zdw;rN#td?L0ohvyW{i#tTL4O zrE>v48RaDEKjBWoE8v&lINp>N$QNA!n^)OXY(+a0TTvc_y$AKSCohkNyFE=6*xEbZ zPIR6EFLRy>pXIzYe3A1u@TZ-(g>P}*4*st5_V9hq)8L1kr^8Re>yoaVC*G~>fMYu< z;1|%TDxIYHU+^L^PwD88=Dd`(t?N7s-o$w}yqz=WQ*C=Xb3WBJ*O@b>wj-T6KWeMM zdlP&?_ye$=2~fEDw^J7*Yrv-<*Ik$fW8OLN0P=#iejz*+zYSRb4v}~Td^vKpWk&W1 zH^3_A32SC;cQ{Xkf9O03{+06@@N>>dgOpuC466Hax@mP4FD& zb>O35rKikH^FDZx^yhFD9)dgI5$6IfV8r(KITt!NkdMPEpRAp;dgmPex^n^Fy?v6zEUc#UW**alS2rnDK#(#D?w$v}iMm75kHcc6M}+Ad;QW!w}CpmpW^1m-&R-vVK80n0D3%(UdOZ#cz;f+1;x&ZMwgy@bajQ z+NW^KtS+w0{heD8cj5(~odl^w%S84R|+r z+~4mBUjygJbND(~I`iRcrNeVPJQXa%eefl44iCdx&o|&@&MLg~;Omj)@CCe=P61zt z{Ikd#@TKs*$XCGE!?y0A!F?508Va}pTUjyixGB8_{Rfa^S)Kj@RyZ=hftBVm{IvVc z;pbtD{XeK*f(dToGz8j@#_=}(8{s+f`0s)juqbpWig%6SfiZ$aJx9}a&RE?~7uwU-9Z0^}W6 zhfjq+jl2P$34ay+Ob_Pk3ZLhE&{{w4Xx5WW3vf&Ny*r>N{6*HOCNl)mEnxF>H(8h(rpB5PMagKzcszkt66 z=g}u>Z$sZr>8;MFOe!OM9DRM4k$DETwF>+^jA_3e#lJc4W+MA3U7mz#---~EJqvS< z;~7s}cSCqv=PlrG5}wRf@VA_&!?d@FW#oInn@a(su}Ec*^X!LQ+`)6Oa{(XaJPyAX zR(&<#9vIX9ZI2_Cv;KZ!b9>eNDQP@(Q=%=%IVmR@AD@j@DUUyKw&Extv^8fvo$I^Z9AmtGIm(ueCfBymGOK=xFXTm>1-hgF( zA{`3sBIE~yIs7Tu${+p={8Mxa_-6QL@(bSzYiv|m+zmg3ozqV4hkq`8_#t?6>A;V{ zmJc%adszJ|hyM!yLi+H(VU2qYc*FN_#|YM-_*VE4g%3}IAC*2V12*qF{}6}FKIp_Y zDK}#4JF}5*E&=9H=Nw)DW7_X`|76el>3fm?*kxU=vxTXKcv-?{OOQX{IwSCd&aO6D z?$g|FjGK3*11J+2UQaAzpT^IQ*fQs%FWrV5!IV_CksofwF?m)ZpPTSJSY;LS@*JLj z+485LN(UzTzxH>C*15|gigQ40uZj0kvc|FRCzlh~Z(QMe__v9&;)?T#ctz{o*aZ^CCM z{N99LOycTDMzrl+7caZ;s7kSfb zR{C(uuhGl$$orN!;A~`)mwDWjKGISuy*uFx6aHwzLkVBhVxxH8O!U!|E?z|^ra=n# zk{4cE9`$cwg=G?B0P=V?@>^JIr4D%rrnIJqNj%N5GyXkI`c3vy^q$5)rhT&efmH-% z=riVDedcf+*PLMe=uK<4bd5BB$djH^D*TYVb$El9XeR3{+Ra)Uz-I9B=U7#uC&||!nJmEN5V&LXn~si$BA73-&TytA4}v~ zUqty6iTsZV|106i9WDLM5}uOq4hicF6l3w~|2q(QW=D(XCH&rm`x72c_>_dtP59D; zuS)plgl|vy-h>}c_=$v{P53Vfzmo8z&P>MgxNgEz64u?QsIzM#KOo_ECH(G$dlJ?> z9K#t%@q-FY+Uaj{Y5hD1R!E9~v6BmC5iH zEgk(oc%uGGiT;GHmR#dO)LA=`ZA6aIF>_a*#j!n*4n!+bK4KbP65b)av*7+Gq1An`1$iHm271Ba5Wp~Tvn+Lj@0_9^{hGu)w7XWXLq$?j!La_X{Fx1 zxY|=0t_^ip>-9=?S+zSuk05(GM>;G0L*13$zW(Z9=Rh?ZrlAk@ql_Ki$IyskdDh$C zxu~8E*Q(Wl;gL%B&?v!-4%Yh?4OV-~^~FQA#M!;LvzCqSwkzT2x2dMw5PU@mSW>MG zR{IqjPV>+`vMd`K42iUS3=iR9XUjtPT{$DLaz$ z?ve6;UmoSR6Yun_jB!7q^i)>m>R5Td@+lwK$6i;*b|SS1h^?}yN+FEaYLsTk!=k>P zY17O5?_b_+*PuSqSzm&3GbK1H9>d$GuNs7ur%m4{lkHmB$l_YHv!~KG*gHgd)kiu< zs#(2rjQVsQ>Fi#Tjn+FCQF)e86<_!8XtuO-35~$2O<1k;_V*3fO&qw=Q|<0tUZKJC zch*NLrj*sH-O9~qofw*-2ne-y5>?+flqu%EZt4LZ9I6d;QiI|erGQ=Q8(E&!t2ncs ze*UY}tF^IeEvt7g<55%WCc=8wJyfe!28Vj8fx3r=mh?Ffb$5>r6Uoq^`>-NeR2v!{ z&PMS)FkGosPja;Mv|8oh&`4izU$s`xxEGgBhzmm(u15`~m(6^{&iK`4(2YdPk7bTLOzIta@f3+tOg-%oJ9wp6G zCH-wlWw2Twk;kTVbkOAW;c9nZXTQl+G+u#H>yiTLwi1&-Wm2yUj&;|UntpIEruzrN6J9`l~MMqj^*HElm@d+DNV2vO@{QyhzkH+*cVHGGB>C z%#}ndMJ7R4{}Rts)1^p5OR;uu8Ox}m#VXp6@0ODW78C{svd-?2zOiZr>g^ouAE{Sj zbyNmAhlf?*mV?lBLjKhLf{;;+k{|A=c8)BrXiUR(;!s!j2tu0E5N>PP)`V--I-Q?R z(K}RI5}Wmq#^J8fk!oFq&_C4K<8MNXp;d%jDZLcLh&yZ5fuWJAbwJv8P@yjk5YRHl zGaC%Ys-nK3rJa2vqW;=w#qvlGtaMw?s5IMU)>|7oxjLu@Tp6ei^i=yhm&+4O*8BS{ zP|X#+JwnEq&iZ1NPUpzb06p7VEN!%tbXdd7Mi|@F(`dZior9fB2DD~6ey2vi%&qRl zef>QMvU*=vzXA*i>!;l_0EF?W$8B%gKEP?h(KLXsCCp%9)U&2OrV_673=J~yX}nbw zl@Zjt36}oZbT37Z=Ex8l-WZpQB-`(@r5Q`0oZnEf)25q5Q$_Cd!EeQB`I zx>U%#X?Zye4UL#{fHLdtA7L~((d^-&df&1bFyqcD?uruTnI^q8nt>IaQTXZfHg(b{ zWlkSoQeDoVNHf-?+^1V4eAL8KZM(-B^n|2YWIfT0*j-!)KYkMOHL%q^ozg>*j>wVszI=j0^ zDm4m^Znz6W6|S*?#GyJ{Hq6XHFKtdnse_61B%6ll2FR%dn^0;)BSTD2*43C*7x_3o z)HTYiZdpG^<6KD4a0nU>tq5Um2O1)JV*KTGKWjc}o6M+ZVH ztg-Udz+y_)zm38Q#V|}j*~kzBZY7l@thO5_6%!8Af@mGKy3in@>ef$%#d!caY=BUn zVKp*P=_Xs2zJb6ocT58am`sDb5~jxt^)M!l^mow}y0iK)tD`DQSoRZ^_ug9PqRgg^ zx|T;heYKH3Qq)4meI}PoFO~-;$i*bHpEfnvy<81ssKz48wg@W=GnHJeQm1HH2-S(l z%8D_4C9xLPsvosembgtPqxHyQI%s^+8+xF8hbnYIy}yd4Dk&%ou?D5u%*9w(VGTFD z*z*xIT8)}kNk1aHp-SYnvY0m6Twv&ZHq><@zsyz43#>~RyI6^<{21UE$!Q@PTv#us zu1e?FqHGDv5&A&Q7J9b6(pr;2ixvsPfL zsydX0#j4Hb=rD^Kmh$SJmJBl4N~0XC(x^=!4DVsW?duBK3a6PPIZV3=3om{saSy(|lc`{<&q5C++5 zG5v?$Z^sgSw6-dH3q}GoWpe`56GnT6!%^>*F^DBr;v+E<^?d6D2QOH7$l>!ARE{`u z!Mvjv&RVcAi<0Q(A3CO^?x`HEnv+Uz)-}YktTJ1_Ed|S2Z|vF2Mw+!*KZ(JC8CF|g z0lSAF(c~*Z7$n$6bT3(MbE!74nm;twE$Iy#2kcOgL&N0WN<-CP9nJ=WrmIsU7VAgv z4@BBiAFe1O=5XWcV2o7KuuaiypkoWI^4O~kjVS?|-EF$&5J0y0MSRw%36 z5uAQ~%v7gjSPib3yMunDLXD4g_Kz|_jB?U2q7?ax!A?SGUW|Nk535{KXnox}QevSP zD$h_0FM}|yhu8GvuzRJUYqWQVdbrKhaR}6`ZA&-a&>!WB9mv-3t`}G_NiVpfo{gyX z%9b^@4ortf4P&;L>Fs2D)RPRHmCjz}Q45{dzf&EmW3Be3cJq2MRO?|*4PT$Ub&Zbs1_f#ZD9{R zIAje;r-1$0XlGAPO%2`hP#v)WDoA(bOo2l-+P&LkxOqt35^3O4wkvi3zi=T#)e-YD z*|QcN@@}I!M;<sfg#$k?b5=Q)CS*CoziN}sA)c| zUNoy^LrVvl@@&wuA{}Ci2rkVLL)ucw=V3h+j}j? ztJZfoNMM=0n7!+WrU_CqtQEvSA6-}J8m?4(d#j;%5QwXB_FEFlXth49<#5jc0- z74Z_Xh82FBZ*hjV;TwXgtaA{Rx<`GU8_?XyIT)uxKJ^4g^UNtsZt>tLb{NI#{V1zhLkMR~ zVXpNLSENbhgRZ83_Ifm7D?QB<3`cwcTWY^L-{K1hzns;xP_A?>=ae{GO6^yjIoRl~ z_G>;$r5Xi%=#Aaf8lF<5Bzo6v$|ya3g=1&m+s}b{Wpq$m%`Q7r)8N1-Jc-o;SjhEQ z3atIv$gx^)+LW@`V5=d@hI)I|6jj{xS@i!_t+v|sAl($^p`Z4>2b+YzvOS4{@l)i!Xa>zCizE{;b{trIuTF={3 zY^*;UV@1sn!r&UV*O~)3vU69rnn+Kzi-SL}SPwDyUs-1BzUuP2zLC|?hk`;jKwa9V zzRov;T6kX{quxh2*{_9SaG zL*`GysD#DY$ndUCy~6_>sfX)TAT6;gVD$? zM0nu*3ajpg^D1+WS+HQ<5er*_1Lq%o$l-Ha?xUINtkA*%YJHSBagYrSrCuH8aG~|} zC0m+07I)Dg=>$tMk!{10Q^W8P+dmHYX9S<$!^a)#{NcMoAJHxIFKzKtS(rRS`}2KI zaIpIF;QT|mz5vEiF2O}r#{cl`ad==f<7s|UU|Gey;;kxtcnA|`IOWr%M8egb*!I}L zpNZnaafIf?PLoh-nL33I!PJWwJyWNR5B6g5Qj1<^HSrLHujKaqqZN9L@O3X@wBbdV z`2t%J4h^a$+id5hJ)of?=oyB*)w(pRhBDNG&&Cp+48d_g*8F%9oynH9E{xx^qH{?f zi?8VL~b*1-w z!5`!!1!vv*8b)hooEhRgm`^5JDltXYsWE**vDIIuU3oA2Fm|?sES77p6EsIB-Af1u zZQ-*v-8aPHr;}_HZ8MkES)$m&f+LkMnz0JtTZa$%s3?dv>doz8ySGInYu$?+zq^sVGt%jO)T zSJSl>T*#5NXto#w?0%aEo4)wrgz0V@);N#HhXU z)ssED2Wv&gH5c20v*@s~-x>}B4$G`geUjtAw~tSxeZw4()AYl4wvcZ6Bum3)B#X6z zjFB(W;;HG<5|TNdwcsjgY`w6YC<-zj+Kg~7=V#(nV<^g>EC$*_{KMBDdr`!vGQ3AqSgNkq)JqwK3%Q*ULrZ1Ga9 z_+v%lm-|F^g6iv33QnIa*vGR}R?Ch~Yw32nr{ZHuQQm_m7x-r^mQt3Zu!jm`ik;ZC zuu|(89^l#(mqg5yCIuQ$t&=1(f`!@_u9R9D4k|Px?hNQ_tmQVu)yg=N;BXk+hL_f~ zGUjV(T{pD&HcCy{uxHCog0=;L-Sx5oT5B`zQY>1;7;8(a*XxC)ma0j|TpZ-EHjQ&( zEjhuch4m-fj26&+1xLhxwh6usLe!P=WgQ4jLg8mO`)S!^+4qzDzd9 z0VC_~t)U=9#=KhX9Iz8boxTh&X4P!n%0jXoh9ycXar@{NyjiF6#1fA$S}p&cPycSw zJIY`^)>+%7(z8_dt`)O(!!m7sE^j7Ujv>Z;tbXIwQAZzejr|O+ z>4nuNzPZ9=_F~QI64dHr99OAtt4OlWu0AUz+J6vmM{ZGN8Q;&swTHnW)_H6Xd#c=? z;=|f5;WHk4F8e&vy+k)ubeK+q(dimHe{G^Q(uVMiV&KCRKKEbDH?QqGER9vYRlL%R zte?v83p1f5+n5;Uc6Av$=_hVT_d*Tm`S#JCgVGjyJ&$$`dC%5SxCJ)Ab)iMf@T8ve z4Es!%`6@{7X}IpPvTCi5LS$U$v+JxOF<~2Tj5e1PG=WC{F~(Mil5`LBWCt!>Fl)}d z%8~PruFN@nZe`vPvt}PQuX6OkvleiOHUID<=N@t(S8L}TcHsX^bN)Qev{ngo?jc97 zE>Kg|B@vEUbl&1KX6JBUXU0z#Km2V7KcYpQcAvymSz%?1`%+1Br#WNqy>_$fsP-vW z-xIXNnzmi|Ot(W>eQBt7T5wL^p}d_|K0EG@QoOOnHB$navARHX#gz?fGZc3#m=NHO z`}3Lr$`~aey#}lG&9v?CB1nUfd%DHCi+SwpEl+Evp8J|KE*f@yq&|)9&W`)9=5q4% z>E%<*tKuDHn9=c4StFwsNNNe(w4FWwz{(uH990&uMpjTelvfv2NW21CjhQw!#1-GS zPsexp9pz~&#jss@#YlfdAsdaifN^~@?EsR$);VL>Xs@p|l|iPA`VQQV#tvEB zp*&-HdB6S2GeXh0XI!BNhc$=Jt@*^l-bN=_I^GMzReg!g2MjX7Jy>1pFE}z`+hD)F zodbRS%Nen_^2A3RCST1aJ@#u{;eX_7PC@vnI>?|CQs7s~iFfDKrGOTto8v41!kJITAcV0E@duD6%^9V z+JYNLi2Tmn>%)3oe1!CRtu)41^C3!`Pn9KKZ0Vw*B4qcjy{O$wv=Sbvhh^pK18*fE z3HtSFuTMirLGa|~KZ<%tE2^-|z*QgY@tRpGxwSv5XLB~yMp~clW8-c%Ra#U$xl(WE z6Q^ZSe-6Nxag92o)(Gs(n<(vLla+eV;B=5LWJ@Y1Q!UmOM(TpsXK~e%_;2gNYCjZ% z_Qsx~7#~?zQmo0bX!Ad`Si;wGT|uXTlCN-q69+w9$I&|C#KqCEt`S!&%QzxqP~dCr zlFFhwUoLch?rhs}tyfdGR^Pa-VEr#LD3N8h1VbJRZE+u0K5)~E!a=_k-hWjjNnVwZ z=D84o=pe;fy+YLe_Qh3w?XW)4bcO+si|D*yq34?CEht9I~Rrj5w;{SEaLxNFVkTYL&4hhS0_MR2g1ueZ*d{R%$BQZEt+g z#@Mw3 z-qM`wcLE8)?vrR>Q*bulQrJ2tl{@rAJ9&~b%m5)WxxH*O63S_Zr~J8c zD^*rV@%Eu!vw0ch?h#WfRV@WepqdQn*L37_R(%P7j1cC0p)Uv^ivW*Kwm6WhZ+L9x z&>%|$Ikd{qxj84ha&~d=q=#gVF^QN!tsyF!JvNg<(uzXrILH|XQBlyGXu9>+2qWD? z!^^`IYU*5QwgHBA68_ReVK8Z}M%YSHGaN<=3q_F)clPNUO%oMRD_N~HRfwHiJ$mhJ zrd!t+#hesMtYY!dnrNXl%S-!Og`-=Kc(BH67Z0L$r6PRtA)GWNyBwWV)7X+0wOK$7c!za^>uMi9p%^^Lk zaQb?+fC*!JwVxF!LsmZ{6P;Jq(oPN?SO%OF;-aB*X_t}Cu57W~vqTNnf<4BnXju<` zp|@1S6#HX4PHVbO3Y5`PIK+|)!$zgjANrexWa${o210oCm>^r0)8uvMS&b^7mREht zD8h=}2zAz<=&^3k;u6lnRr}(wPf6N6>zt`36{6_x>#f=-*4@jBhauTMlT(2D#-p>4 z)NSvXigar&(O5}hIz-1d)9x^892^?7n>bq6tmcLJU}RdokJY`fEVWWTTBCCGoj)YR zzCDFIukx(ig}jE<93Ra38D;IuIr9=NtR)l~~0 zH8~g7^h0^^;hw82`Xe@-*mm~oSc+fTAcq37m!H@E)c zi0UC#dYQJlJ)^ebJrg@)f~gGlGVR#%T-|n{lko+6F(a4kl}BKfBwP&PD|I}|Hy0OE zP|tep9Vd5H^#CQsFFy3r`)vu74eL)&yO;CFXYr2#bTf&YzC(O9)G%(dDSvoe{XeCh zPiWoQb;o~_cX2KPgUy>KCtVt=pj}30N zr2r^>;;pT%#?}>7^%_#tfKgmdN%=9hb6dD#Sj0rEK}?Y;7fG0XZ*xs1f}6|I&rJQt z05dm7s_>%Nt(rp%$$)GUSr3du)7IXTZ=H&zO((91Aa|KN#DqZ-<7hJnTClN(GOBg| zo$HvK=v2lBgL;B;^6We&n$|n82yjxyHo`dUD076isBB+FpI7_-x?ivDq9!UfJ9YHd z$wuvFO~M2X)y(21k%Lr>9IH+p%&oUSY%3I9e^+~OFAowd5IAYXNxtDkuvhtL4}y5pYl}) z(Y8s-l!(_jO{)o>IA`WEf-_b!5(9dPPT-`F(S7y(j+i_6v8!kqaOx!2k zNwldOLO_Q%*6r18_ZSHD#vZqIXRM=-)#Hg{)jFNsMNW@d&0-BjA&${nBSJD$b}?2Wfq8LiSjn?y58evP@7?>?%?o}}=b;yj`O`Aw4?KNyyXUTV`)@xdl zIZ}>2vj_}WZ*46x3mdnn0xVr`UAb0S*kB5hA(wN)rcfxmE4H&rp@%S!uFDACU*RA2dh3CVeIh@q^Z(fvr?H9 zU+L;4xZw3ohj5nN8MOv#)RpBWs--C8X?&kr4Qou8M##TMf0u_Gt?r$zHdNmDQ1#tG zBNuslv<{6Y;k&h5w;95MRBRB0qPI6Tc7vsqRx+wpOc*AEQumLx)549!h@{xRSXq2g z?ZCnLbuZpbuq zWHt6)p&^nsHg%WF9raGHk)T7S=P7JrAor93H9D!mW`y(!strL{tW4LMZm`v2n4vEs zkstl1D-=%YurFx-fL?72jY+fZ)(z~|q~~p80M#(_b^AbD^G%U}%SIrps;0?qgBe<4 z0k~gHa!AXVq&9YGgXqV$$gr_wJgYZ`Wn8NzxvbgF>c4kF~G;3b(d*%6)fra*04IYynSV(^*oC#sI!Rx*gvUcsh@R$QMXi zH;kyB^NQ_iZhmIEF+DZ&9`;{T^HXQ1xsr}C)$ckr^A~A8=vnaIpKi>~O8tKK~5&33vA~TV3HEhe~`2Cu7Fy zYXw_jhJy&)|Iv}+vTr8b(cd*?vqXwFM0pDaV-pqN3K=msxG;aSJ=kehu$#6P>DPp$ z%Uf7{A>wP)E@WoF#g=k5J$0KQh1ipBQXIY6Vqg(DlV$(!H$KQg>oj+HAf&R80lN{x z!B%30M=G@wkxUe9GOI1WY^7S;wQUZp-(oGJl9UNE5?g_k1IZo!a%0DCu$Kc*Dp<6JajO2{Vc&{8I?1UM_Vod^enEmi=QQ3?#dK)+y$#dH>+dtlHf z$D&CUN^~_~LKibdaN3~bX^kvJ5M#Hm*fwQnrQ*g5j)E*%H9z-tu&YlQvCA3j%s|6b=yc>gmks( z%Ir4~0Gc5W1EPUyu=7QkDLewL5F^w*7+tmF>;tUY8 zOV225O*gso(0WMn^12wSgsGOK=}F+9sqb1*w7s*d7U^%YVUG^WEUD`@%zWC}(dE>| zji0UgOKWB^gOPP?7-Tb^oG{u^5oDIhNr}s9&1grrs!``|g^lQoYg}|Dp##BFyLlBd z7ZX*uAd$A(GA0(iNUK7y-06}E>l1W8Qw5K%n2Ka;5!&5#PSjhr+!j`heiDeQ0GQ<` zb1;KlyGSE6N$UWdd$`buwAn{3lr3s_MTWsl1mhrn|&Xp!SDDIlfaZrniIHi@xtsRLo4C47w6BHZro7; zi&<@xaF9=-r)Dm(OnS^PrSU`vtg$H&DQPL~qBL+>Onl_VI-|iXX5C09kQu@{G9(U7}411|`Ycb=#P*kP+sb znA4hMG=Lqf#P(*c(`47jkYm*CJ)WsQn082r z;%zD4#TE{=EE4w}xeF#T$c7JJOL==&CeB?yYpp$mVT_tRyLtDDeqDOUi!G=s9vd01 z?d8a+&GrtnhHbkBj5S9D%-g!pA&j1-XIe@7e2xEBYv?Jh5fnHvCyk<8c{paa^?ohN z0p40(s)4DjAU%_LjD%LyU#7Kq^%sQjs|*pZym!Wit|s)?^ny2bpiJ4?DKJ&j&C`hGs@)j7 za084Wzp$n6wCc&m8(+L{?hU=!Iz=2lx8`56Slv!QD zxL=Ky&?v>C4&uk(rj2~|U8dj3c`1*R=r>M8!cyKYG-^%BrdFyoB)wYF`|8_D)LpuI z-)On(47J(*?pq&FNLLIW=NS~_gasMoGyY7Ulk%}#J>CyTR+;UrA}3B#m$!OUyG`J( zo-$e&tgcM$g5o*xYAO^Ih+vXLl~Lu^OAT}RX7xkYv)+_qp(YEA6zN?{t6zhU>$-{b z<4naJ)6joUoa^MMXbQtz<_2l%6!;N^T7krj_;8T&?;97W4xe6itb`8oaCc znIVL7af5{D68*%Gss&1Zbt2FwoRk)?Uws?zF$Rw%^w#f8hzl{wgm9`8;yn@?P!lqS z9A#O;NlEaUm*v?>6s1rSQ3^|6oHCoenMDIOv5qF zT$tqIldBywd+xE3sK!{JcdD`NEn7%+*%T^Rw$*g;Mckj}X1;ENX_s`xT_aq}=S%O6 zwVh4l#%%@D`IYS-Z0jf{E|vyu;RHiAA<2PlWTlzr*T3qb&seyUTtOmec2X%SOA@;{ z>}8NjlYX{!Ht7LU1vc+pVS;C9xx^-H2e~jDmXI6elVirli}{5272h7OnPfx;aRKY& zK0?{rz$sYh2cZnK+h$WLA3KrKOMQH#bww%b7$^>&I37WirBz=$5_DPRj||2aOYM`o zT(jus?2bt};EzXLTFTv&dE4H1&SffeFR`eFjDIOq` z8Vf3_iJzQa&bC`9sUZa3=4eDqp)0SM3Ym^!#DXX|YPB?B zoDW(ceXW8sqacnon9GTRS~3vr6&Hof(povlr)DmWwfykP4(7^0)pzW8QDj4G%K4xd z)=uBz#KBMEc6EBEd?=#2T^v9}0g$^|o_YIaN8N;iHH$l?BZ?i6TbrrGNqwMM-y#7O z)}T{O44vn)+S&~p7R`=vjfA?OmGMa*GVSGe$6qs7mf>Qgz0b)%`%C+VD_$>ywFt>P{1RVa%Urp{QSe@U*a!+h(^ z*@)^f1(Phpck#)}hM6y2eW80-sEJ)1o;mk8Njq2KSH&_(HuER*noCgKS$X*F4AI;Q zD;u;hhPAlqjsx9a5Yb$Asqx17VO;a%mpr)-PEu4z_0mBeF-UQ)QVySgu0H;cp=!iFal?0l`PJXy=c?)qf3FVt z_was=8?W}f%>M~KK$`FlFaPY{=`;Vs2mD)(ilc97>iGl0j48sKL-w6V;qUYJ%Bi91 ze)#___=Sm~>OqFT0)Cj`!{A4O?-Ty@b3@hVfsen*2T7-gs^hpT{SSm^hpN%QDZkT& zKS@~lB3{{s4OjB7qB!8-IcuwJ;l7Ha8 z2fut|xNfIUglQCtXyHE<{-2@hv%pWl$BzwH6v6z3Uj{!3{2XK9AdPq^=>97B`B#Ul z(}5S{Pa|FqoZ5Xa!)o`Nfm6HR%COq~b{1akz8^TX`=h`gYiyFa#^{%613l`WKUFy< zhU@Y88}O^slq>v2pVz-PT-^%%C;)C22SCtplk9!9{8UWzB62p?-c%Y;lB_#`KNyIOT~xiw+jC|flu-A)Po;UpTHl1 zpT9d?eIEEH!hF=8u4D9kf$wqt35{?(!+#7O$?$RTXog<{k7xL0@ND33lHQm8Ww=_% z@L@1bVEM`ab?`=pzYd0kwf`uXD%SXI@U6h9-%%y=7goQc2!>O?yO&}0yZc#q^}9!b zQ@{H>aNfVP7JPxf&-iJ z>hl_XNsr3$F@KG~Du?iX;Qhe6`Y`YR;W^-+3GNGdpe{|X*8!tWubal(i&;81MOYqv z@B3)wAG8xbq<=hr#NSbC1%vf>nU4Wq%<_F4>4@YnX89gs{nztL{*G4u;XPrszdaET zQdnx|G7QUM{afLZzxrds^1qc~wTb$l9)*|xvA+@W{Dj{OtYRtrMCPy3MVGPiDUEOO zr$^;g($fMw!b;;Ze|m%!zAeC$@J&Nqe7nGR3#|E4Pm2G*P!~Tc@Z$nMEwB{|x0Igx zpq_+B3OrumGXP_4{Q^HM@Mi^nQsB=EoW@^W{}_)6j~4iJfzK6qp}-pj z-Yf8}0^cd{eu3{7_+f!REAZ0{+p8+ZqaWcT1s*Bzc!AFpc(%Zo3*0X7%>v&p@ZAF6 zEAWE?KPvF!0zWNqnv&&g^^b)r;gJH57x+wpXA69}!0iIxEb#3D-!1UH0zWA5qXIuJ z@Y4d@q@TCHCjAVL6nMPAX9_%9;8un;)qGUozbo)R6!?=2YpDLXz&|hWFADst0)N52 zChPrO=^ZQZn;BMr_*Q|Z3;ewTw+j5i(HCDj@_W^oiEYME2OE25{@pPNjk-7MxX1^& zxk=B9Ga#httF1u?NQLCR)k3f-nGf<2izEGNt{gy6|24^x2j1|LB=pK753keQK_8c; zY<5BB7*Z`%1gbG^-?ZP5_@@fi=LAsj|MzJ9wt1>Z=D)t^3zvA~{E6kPb`sWKbc5Rc zO#RmT64OKN_>a8(uK0-`Oc4?vnDAX*#3!BMFMm!y=OrBp$D{nJo+9p`vk8e4^PSesEC!djs;<&`I%A{qNwW z{EKX={RmjLms6Dp@w~zBp!oM9e#$3>Px&YOIN}#%t{z0dGJJ{uGvcT8((l6v_}gD4 z7ym8m^91KX^t%)E8;|JfKZp5C`KNkmhf>l+Q6BzA|Cx_tzH;RAVtUuFya(m~FtuOA zSN<>XSLVNj+kxrdZt-)IzxsI+lSPa{Pk(JtkGJly{mM&PMy From 8fe79a40a0f782490fa1897f02c2a1f00adc25e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 11:46:49 +0800 Subject: [PATCH 22/33] ci(ebpf): regenerate per-arch bytecode before running ebpf tests The generated audit_x86_bpfel.go etc. are build artifacts (no longer committed), so the ebpf-tagged test needs them generated first. Install clang on the runner and run make generate-ebpf ARCH=$(go env GOARCH) before go test -tags ebpf. --- .github/workflows/execd-test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/execd-test.yml b/.github/workflows/execd-test.yml index 190b14ba2..89cbbf89e 100644 --- a/.github/workflows/execd-test.yml +++ b/.github/workflows/execd-test.yml @@ -58,6 +58,10 @@ jobs: - name: Run execd-ebpf variant tests working-directory: components/execd run: | + # Regenerate the per-arch bytecode first: the generated files are + # build artifacts (not committed), so local tests need them too. + sudo apt-get update -qq && sudo apt-get install -y -qq clang >/dev/null + make generate-ebpf ARCH=$(go env GOARCH) CGO_ENABLED=1 go test -tags ebpf -count=1 ./pkg/ebpf/ - name: Upload per-arch vmlinux.h (for bytecode regeneration) From 0e701211ec3873357fbfbaef605ffc7eb59a4643 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 11:55:08 +0800 Subject: [PATCH 23/33] fix(ebpf): fix generate-ebpf recipe variable scope and paths MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit VMLINUX was set inside the recipe shell but expanded by make (empty); use $$VMLINUX and chain the recipe with semicolons. Drop the cd into pkg/ebpf — use full relative paths from the repo root for both cflags and the source file. --- components/execd/Makefile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/components/execd/Makefile b/components/execd/Makefile index 26ebac4c9..3d3451319 100644 --- a/components/execd/Makefile +++ b/components/execd/Makefile @@ -171,22 +171,22 @@ build-ebpf: ## Build the execd-ebpf observation variant (CGO + cilium/ebpf). # Requires clang with the bpf target. bpf2go writes audit_bpf_.{go,o}; # the Go build picks the right one via build tags. .PHONY: generate-ebpf +ARCH ?= $(shell go env GOARCH) generate-ebpf: - @ARCH ?= $(shell go env GOARCH) @case "$(ARCH)" in \ amd64) VMLINUX=pkg/ebpf/prog/vmlinux-x86_64.h ;; \ arm64) VMLINUX=pkg/ebpf/prog/vmlinux-arm64.h ;; \ *) echo "generate-ebpf: unsupported ARCH=$(ARCH) (amd64|arm64)" >&2; exit 1 ;; \ - esac - @test -f "$(VMLINUX)" || { echo "missing $(VMLINUX) — commit the per-arch vmlinux.h first" >&2; exit 1; } - @cp "$(VMLINUX)" pkg/ebpf/prog/vmlinux.h - @cd pkg/ebpf && go run github.com/cilium/ebpf/cmd/bpf2go@v0.16.0 \ + esac; \ + test -f "$$VMLINUX" || { echo "missing $$VMLINUX — commit the per-arch vmlinux.h first" >&2; exit 1; }; \ + cp "$$VMLINUX" pkg/ebpf/prog/vmlinux.h; \ + go run github.com/cilium/ebpf/cmd/bpf2go@v0.16.0 \ -cc clang -no-strip \ - -cflags "-Iprog" \ + -cflags "-Ipkg/ebpf/prog" \ -target $(ARCH) \ - -go-package ebpf -output-dir . \ - audit prog/audit.bpf.c - @rm -f pkg/ebpf/prog/vmlinux.h + -go-package ebpf -output-dir pkg/ebpf \ + audit pkg/ebpf/prog/audit.bpf.c; \ + rm -f pkg/ebpf/prog/vmlinux.h @echo "regenerated pkg/ebpf/audit_bpf_$(ARCH).{go,o}" .PHONY: test-integration From 8514b5d90c20495329ff1feffe6b2246d85ace9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 13:16:17 +0800 Subject: [PATCH 24/33] ci: retrigger execd tests (previous run stuck in queued) From 4e8d9db7f6b6d93f22a72815f587d84a063fdd23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 13:26:41 +0800 Subject: [PATCH 25/33] feat(ebpf): replace per-arch vmlinux.h with a minimal audit_types.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The two committed vmlinux.h dumps (~300k lines) are replaced by prog/audit_types.h (~150 lines) declaring only the kernel members the audit programs touch. CO-RE resolves every accessor by member NAME against the target kernel BTF at load time, so the compile-time layout does not need to match any kernel — this makes the bpf2go build hermetic, architecture-independent and removes the per-arch vmlinux.h requirement from the Dockerfile/Makefile (issue #1563). vendored libbpf headers stay in prog/bpf/. --- components/execd/Dockerfile | 28 +- components/execd/Makefile | 21 +- components/execd/launcher | Bin 0 -> 3152153 bytes components/execd/pkg/ebpf/prog/audit.bpf.c | 13 +- components/execd/pkg/ebpf/prog/audit_types.h | 116 + .../execd/pkg/ebpf/prog/vmlinux-arm64.h | 152124 -------------- .../execd/pkg/ebpf/prog/vmlinux-x86_64.h | 161230 --------------- 7 files changed, 140 insertions(+), 313392 deletions(-) create mode 100755 components/execd/launcher create mode 100644 components/execd/pkg/ebpf/prog/audit_types.h delete mode 100644 components/execd/pkg/ebpf/prog/vmlinux-arm64.h delete mode 100644 components/execd/pkg/ebpf/prog/vmlinux-x86_64.h diff --git a/components/execd/Dockerfile b/components/execd/Dockerfile index 85a48a9a5..da9849386 100644 --- a/components/execd/Dockerfile +++ b/components/execd/Dockerfile @@ -103,16 +103,15 @@ RUN rm /usr/lib/libcap.so /usr/lib/libcap.so.2 && \ # exec/connect/privilege audit hooks and needs CAP_BPF + CAP_PERFMON in the # container ceiling. # -# The CO-RE audit bytecode is REGENERATED here per TARGETARCH from the -# committed per-arch vmlinux.h (prog/vmlinux-.h). The BPF_KPROBE -# parameter relocations are architecture-specific (issue #1563): a vmlinux.h -# from the wrong arch poisons them, so each platform's bytecode is compiled -# against its own header at image build time. +# The CO-RE audit bytecode is REGENERATED here at image build time with +# bpf2go. prog/audit_types.h declares only the kernel members the programs +# touch (resolved by name against the target kernel BTF at load time), so +# no per-arch vmlinux.h or host kernel BTF is needed — this stage is fully +# hermetic and cross-compiles for every TARGETARCH. FROM golang:1.25.9 AS ebpf-builder ARG VERSION=dev ARG GIT_COMMIT=unknown ARG BUILD_TIME=unknown -ARG TARGETARCH RUN apt-get update && apt-get install -y --no-install-recommends clang WORKDIR /build COPY components/internal/go.mod components/internal/go.sum ./components/internal/ @@ -122,22 +121,15 @@ RUN cd components/execd && go mod download COPY components/internal ./components/internal COPY components/execd ./components/execd WORKDIR /build/components/execd -# Select the per-arch vmlinux.h and generate the CO-RE bytecode for this -# TARGETARCH (bpf2go embeds it into audit_bpf_.go, picked up by the -# Go build tags). Requires clang's bpf target only — no host kernel BTF. -RUN case "${TARGETARCH}" in \ - amd64) VMLINUX=pkg/ebpf/prog/vmlinux-x86_64.h ;; \ - arm64) VMLINUX=pkg/ebpf/prog/vmlinux-arm64.h ;; \ - *) echo "unsupported TARGETARCH=${TARGETARCH}" >&2; exit 1 ;; \ - esac \ - && cp "$VMLINUX" pkg/ebpf/prog/vmlinux.h \ - && go run github.com/cilium/ebpf/cmd/bpf2go@v0.16.0 \ +# Generate the CO-RE bytecode for this TARGETARCH (bpf2go embeds it into +# audit_bpf_.go, picked up by the Go build tags). clang's bpf target +# only — no host kernel BTF. +RUN go run github.com/cilium/ebpf/cmd/bpf2go@v0.16.0 \ -cc clang -no-strip \ -cflags "-Ipkg/ebpf/prog" \ -target "${TARGETARCH}" \ -go-package ebpf -output-dir pkg/ebpf \ - audit pkg/ebpf/prog/audit.bpf.c \ - && rm -f pkg/ebpf/prog/vmlinux.h + audit pkg/ebpf/prog/audit.bpf.c # cilium/ebpf is pure Go, so the variant builds fully static. RUN CGO_ENABLED=0 go build -tags ebpf -trimpath -buildvcs=false \ -ldflags "-buildid= -B none \ diff --git a/components/execd/Makefile b/components/execd/Makefile index 3d3451319..8a7cdc06c 100644 --- a/components/execd/Makefile +++ b/components/execd/Makefile @@ -159,12 +159,11 @@ build-ebpf: ## Build the execd-ebpf observation variant (CGO + cilium/ebpf). CGO_ENABLED=1 go build -tags ebpf $(GO_BUILD_FLAGS) -ldflags "$(GO_LDFLAGS)" -o bin/execd-ebpf main.go @echo "built bin/execd-ebpf" -# Regenerate the CO-RE audit bytecode for one architecture from the committed -# per-arch vmlinux.h (pkg/ebpf/prog/vmlinux-.h). The vmlinux.h files are -# committed so the bytecode can be regenerated anywhere (local make, CI, or -# inside the Dockerfile ebpf-builder stage) without access to a host kernel -# BTF — a vmlinux.h from the wrong arch (e.g. an arm64 dump shipped to x86_64) -# poisons the BPF_KPROBE parameter relocations (issue #1563). +# Regenerate the CO-RE audit bytecode for one architecture from +# prog/audit.bpf.c + prog/audit_types.h. The types header declares only the +# kernel members the programs touch (resolved by name against the target +# kernel BTF at load time), so no vmlinux.h is needed and the bytecode is +# hermetic across architectures (issue #1563). # # make generate-ebpf ARCH=amd64 # or arm64; defaults to GOARCH # @@ -174,19 +173,15 @@ build-ebpf: ## Build the execd-ebpf observation variant (CGO + cilium/ebpf). ARCH ?= $(shell go env GOARCH) generate-ebpf: @case "$(ARCH)" in \ - amd64) VMLINUX=pkg/ebpf/prog/vmlinux-x86_64.h ;; \ - arm64) VMLINUX=pkg/ebpf/prog/vmlinux-arm64.h ;; \ + amd64|arm64) ;; \ *) echo "generate-ebpf: unsupported ARCH=$(ARCH) (amd64|arm64)" >&2; exit 1 ;; \ - esac; \ - test -f "$$VMLINUX" || { echo "missing $$VMLINUX — commit the per-arch vmlinux.h first" >&2; exit 1; }; \ - cp "$$VMLINUX" pkg/ebpf/prog/vmlinux.h; \ + esac go run github.com/cilium/ebpf/cmd/bpf2go@v0.16.0 \ -cc clang -no-strip \ -cflags "-Ipkg/ebpf/prog" \ -target $(ARCH) \ -go-package ebpf -output-dir pkg/ebpf \ - audit pkg/ebpf/prog/audit.bpf.c; \ - rm -f pkg/ebpf/prog/vmlinux.h + audit pkg/ebpf/prog/audit.bpf.c @echo "regenerated pkg/ebpf/audit_bpf_$(ARCH).{go,o}" .PHONY: test-integration diff --git a/components/execd/launcher b/components/execd/launcher new file mode 100755 index 0000000000000000000000000000000000000000..f3cec947ed2a6b0f8a51698d308ca47651ef80e6 GIT binary patch literal 3152153 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≥L@H0^aC1QN@~~oT*3D^^&wdZ{kS=6oSo19K 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

q#rQ%(k{feQsxBm}*H2p3pa;GxFZ_gvA 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⋐&ZyGd?J0Dq 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

aVIRCigT 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%0Dog`>$;8gGlzL#{2E)i&z7~kebqPys+cp@o+xw> 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%0DdTHS8Q%W=iTRuJ8;0|P-);Vm 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

OObNNh`E`08g{?VK565*auv`q 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⋙ex^yq>2+=!wa#!CIxZhtJI0=56If>` zxY6sW1FR=+cXBz$vHtPxBg5-;7WYF=_^8e)(p*lu-{eh%a!fAg_J}!4AzA@!pXc1Y z_=lZT`*J6>lfHJ&bW&Z!YZ$ZBSK=oX4meLRHX9$G@KfUqb?q8#l2&w`_RUt@&G!Aj zyXgCJ`bQr-XQH2%KsVSa-O!PAt!x#=`8VL_o4R=NvZ3C*;`8)xJ^kYhfz;ROU)dBV zh7G5DQIj7Umhbyw@j-!!$90+Z-F%*{tktmX|IpWd7wy_S9^39I@ZHFMaZ|`~>mi4y zi~ZteUEq`#cyQSDoWk?p1II-0EF0-N=;_X_!(+<7TS?AHHS6MQ$rlNMTg~Yu`{tSa z2yYEM{j@oP{no&19*A$d-N2v8kFfAdo^DVdfW2RiU@dsN7X41S4)lEzdoVi={kQ1Y zwofC6DQj#(uTSaqnfJSK=v?|%LEp6BOnQALeCLj@-JjC+OaDp^W?gP(`(QTmH2etd8co*egEtp-m~VSjQ5;9 z+g$UAvvd+Nux5pO_Cfx2f%4x|x1I-f5<5d4p4R=d-g{)C_NuRW!Mn%q>DE1G3ar@9 z_t-#MQ?&~o&M(Ms?8Lv*iGL?I5H|juBsx#}@Y$BWIS(_Rl|9&n3@xO5h-ZcE&eFp# zQ4c|{@o|jK><5i)--_*-KxSBf zqAUI{J4Sjjhe5lKrbY(a^sk-*m((LNs|3!YM5upE@{K3qdc1N&`mpXO#6`L zl2e*wUz+wY;aKN~iBTdOXR$Ubf1WEFwRS`~K7mgnlc3Wg@)Qc^68{=aexuh$8*Qo` ztryYWp7Mjmfk*Q!mF=Yddi2pf#G+^ZF?>TQ{{!tSl)a}A^1{&Xbm+I8wj{g!G%4A2 zmc6&E>{5RPOBxRCrDN?z$_pmNqf5Owkj`X%4qkQrP&fC=FKfq3e&tX2#%dGaIo@B| zAH{sbf4-R6Zx8*OV7xR|L$k(doW=?9>?fzGa zlPP|$vC|k@o64TeV{z8Q`H|Y=ejuFf_T!AU{WweKdr?+;Uin@*;7j&Q7x^!*fd{{w zm#tl8Y;AYnG28ypLE4v$->CM_BjYQPU0c|T#2pv+OhW&-yg|;Y<)MED9y=bKxy*QE z;yWemEtpGQS`+^CV!>Dl{g()5TALke9&*juO>^-{>zszUIjngviKJ@tD`VijXD+t7 zeEhPLXMN_Z$)D1_3zHX*Sj!#`(8*yBo?m-3V)%KL%g^1cW%TdwZq`I%KPXBOP=DYigd*dPel#aa)J2U$R1ejSgs4X9|?^Z3QtV%>@dPS$emVa&g*K8GWx9 zcY|Q8VE-4+y=(h$WqCEf6~s#d!Y#6;1OD4L3cB&isV}yz$Jx7K^Dx#c!Jn!_YL_0$Sa-WajEu=&^^yPX**7v+Zijhqxx0n#Nxrrljrq>$@vA}f;G%o2uIlS zN0n=H5AAotv&QF9+Q0wOw;D^q@)cqroyf=}wu)q}&dci?wyvj>xS3$n{yJS#GWF!} zo#}%QpQ@`)^-SqsUU0QixBB)4(IIoR?=h|}y}E1q9C+`qLj9ll-~TOqsrEk0ZyD=y z%a|ulS~ihbDDW~aefU`3gfD9N)!wC(mM!S5VVrg$qclg^>4X|P!AYye5SsonaJXX- zY@TWAmcM~Ld$|^!S)TTv`|*2nAuVs)b3ZsEJS}@Af-S#yv#$2sh)n!SaVP^DJW^s{ z;~a0+&Q4^l+C=(NvTQ={D*A#y@3?5Mmg{;aw@3SXY5zUR-~!gt=7FbQaX(>ME#(&U z_F-3ki$1E1%I@X6ql~#*Cby@6*m0)JUFkB z-zzv&@8#65cQ^C>INB{)c31B>-j@KoE3^8?$lPba=C|4JF1s%Ian$w{=74Iu0N<@` zTjN#c^Db61+~HHN~cD=Yes(_i^;`Z06uj^AwG^I7KF#r2Km+QoGh z*Ms5ux8!GL%Yhx99I*Ia4ButrTl}pUlKQDRpVm-51AQVu3_om!zIQq~NBa&tr;mEP z(apHwr#L>z;5OVtj@}$s{*@T{SI75-1B`dX2te%wz+CQn*c){9K0op8^O zIlI+uC)`s8U&{9}hI%JaZ#Vs#ylgRglC!j_|NEwX=|$oJ(zqu7;l_t^hBSUYkkeRL%(%-Zc*Hr~2(C4UVsGNqDfFw( zbTsoR>@W4z2}Dxcz|#)!IZ3uI_7uO-E^Mk5#p__v{5e6IPxj>zqj<&e-31GDMn_E z)z^JvWyeeV!IYuXviUItewQ2Fiq1n0PC}BcINrgOMZT|dg=p)?p--I)LgrAF5mY&*Y`YVu3dTAN4`onpV)J*cax9X zPZn~{^;X{)Sb6v`bnc)3Xs)vrKB+H)2k2khMNVqrJ5`TAl#|!EXym^C>|&pda3FkC z?UEl!Ze(Q7#NtCwYA)jT&zMb`8dG+Q%!TM9QRT04U0f&>}$D0GWM{5}4Ztjb?FI!f}*f~AytqXkyoA)YT z2U}g&KNtWPk{Msf!o!a|9N7NrjP>k%o+Ny)^$rQ3IIx%EzUHWq->~7Of**#!=Ve+Fy(+@LVU5@Z18#}*e7I+drxZ~pG%y{_v zqQRX@YxfL-yTUBo$saD>)t|+mcru%R)ux>XhzC~z6MD?(oqNQ0vk@8ah zS2>|qk+&xf$7O!6v#XV}xsGvi>9Dd_zQhQ=)HMgsZF+)#Gag}=u0Eo6 z!sv6$gZOLoy_?(d=B^x8;_UH73uyG5aow?9X z64~3zTsScrnFmcIkY$HN^JB16D3chC>_TRj<_F~CKQ^D(-AZD2RvpgZ#e?{J= zc>CXh-NM^#^hf{mJyb^VwlxOkTm$nB9?W)+9=*R)FmukCV3w_yz*fvRc;<{*t!I)CP;tWqzM^)@b}_CU=yjbjtNnM|7}F$j zNqT7ONOwH#y47Tf8!z0-xLyl$xocVkUO+!8E;U|5?SRTfv2mT}U>{pHu;@N@wJ9*1%r&{=J)VmED)3z9e+3 zyuS(Xjo?gRM<=0Kvo;=E`E9;g>9~4Q`a@?XB*Be^U9>7+;2&BkFMD78q+A6zJxriP~G@m+fSDl+_P!L?{_oS_wjG(Ju!lQ zK=W7FaT^gyJx+TbyQcO3!&&ri=@>csf}vT_HMrDRP6Utj_8pY?durK?=}o(n#T@eg)@!+qeR9o#{SQPFlQxYiiP8T(sr#`E3g-TgdLPi8?BUe`|Z|0lm3c+Bsq<3Z*ptJVR&IaX7>e52KE;lU`%L@5)eB$Hb2t8!wct!Va5LBW zb$3nghCeC-;U)X9$;1yG@KY_cJ&$(b$D=obv#sx}THoNf>x{)u8)##5kUW3Jxt6h; z&o@Tih+kwk3r@yQd)F!cpxKY8`uaf3okf zsgWyuPhVy^;iH;U%Fj~9bs0APy1F|0R?u^V_XTx}r(=IEnTs72XFP9&J~v~_)cM=Qe-Q{JQJN@8Mc{ zL_F{aW9H`pja317)IOR&{Sn_Gmqd?>jhJ%_7#E%E)dYRU;WOn0`r*ii)$qp{_l&5p z<&QB9Ey~RhU)Vp(A4l-5`_Cg6{YppVvi~u*-}6cMrLEe1X7$Dzaw>mGE-l|g6^|_8 zcdrxbdHQE7o)q09^EW!q2+q6-Hh<-$C-0#xzB}Fqy^6;ab8Sb)$kq^U=1`y8FYi2W zzHxP7!0WI3JfHE(e`nqLn~_+cKA22!RUKtxOT~dw-sD&diy~B;x+}@9Tw`Idjf)p67eNJ>Ms{H_BMX z=R^*q(2r?7k&WzNf!3dyLdXi?DYM!=o0n<8{eA!i`D9f5Qfhp zj4c|J9_{2ly>}e+;UAH;W-hv>%GNbo+`bCg3+j)a&6sCV7nDQac4Qc`Rec`ZIIs)5 ztk&J!C-`^q*N%ncw(jEdUj8L?5VnIGPr8S?WLK6d$8%=}dO6Z==T8@&A(}~^C#HJR z*dpp}v#e*7du)@OC)RZq_|CNsfA`hGmmh0E1{|QK?!J3+9{00;UDrM{)so4c8pbtZ zXd#;h>~oV8b4|v@>}!`(dsAFtYVEKK$h{()dl+K~_S7zmcn0s?bqiv8)zoBHZNrM zq$A(3;r4VcV%*#5?Z%urLl57=9$&p8jLph8p@GJkjc#!2RlH-h0OxbCL*`TSAQzK5jnFKUW6g|8T~bFL?c1{jbf=aBXJ#wZLbB z6&bEw$~CRkwTC3*WD~8XPBy{E$d!L^_*nA(h~H=GnL-zde@7*Jg02SS<1%P)DPt@F zPw-7-5p)CJ2zJQ0YSj#hN2Pyk8`t03GLfF;i@*`|7Fz;6E=7(l16~c#J3JYNrf1QQ z<$lZBX7lycN99vfFV~FDeI~+v%kdeCfcIGC$ zXgwaT$_idXjenTyVd0l|xO3=bOk@`7^N_Ej#CM zA)nV4ghY$=@TPcNv@N-YG9D%PXzpIvL>V&z-{>8NXPvQssj)SlJ2w2Dactg?y>#Ta z#QnEpH?>oDDPKUg{CdkGMV@2qrA8}j&3T;t7DhH@VN(gdvN>bq>5KTgfWO!u#y{v{ zo-eab!L%EAZU&zFfmJ{Dh*6O_zpciPTOFF(Bcmf02xT-S~-HGNd z5e&FTFbLlSJ%Ru5DrgS=i~0S;!2F&Vn9Y9y@b}X8kDK4*U%H$+`wy}ka$4V^ek%R9 zB7RH1cDlJgtMzs6m%X7mJ#Rkew7!~QjFY(E<(+gI_Yc57;&tggKRQ?X`F?oG<$3Y{ zKIr{B&#kwe>`9a6S7Tyw^YD&Myy|Lcea+obuo?N3Uuw`p<{` zY2v_E)-LHdcYX!bI(g&8+1#fXq}I&YAiG|%tZmXy23OepMf3zOYUG?9;?H^5TUT27 zyY!oU#$}Hz{?mPond{5mg>P6W9&K-R2 zxscf(C3OF7&!;OWOF8$bl(DSu0Fn-j7-ekRgX+md`RP0 zZn^KVa?3KlPIM%80yG~TX|F3a9-Zv@AsulYYqV?Lvs-6)*6YTkyQw#J`S+zXesTHZ ze{=n%|4Zvv|J@T=|8URxv%TvdZp(_z?)ryw_F9JZyXU>wHEN$p*yE~4?!%Vq>$A%G zkiqgipMXf8H zo)K5V6N-b%epL)jd_m9kUB=!7uiIEl7#(J6hG#)b*ghTDS;{-Rv1Y}UrEg2OtawcJ zVlA>Mifz|{?2+ze|0lY^wg-j@p4fFJJ_9dG|Hnq+hqH#6$bs;xnIYv9Y#z4jV!!`& zn}5dnnF~5cai;WpT%95Qy4r;``40w8*D3GroquEn^=-vg@PQm;3^Lw^nf=aV1=itA zvgzOV+V9povv{ZWM!EbKGWsc5pFf>mnRUx%B4d%WoJE0LI6^%8u+9dl8qxCD^dZR3 zo3i62d`6BoNseLzUu3S=%!q%RnuZc&x4zfaWXH{T4XNWL#;G4*ocS~2w|d8!?~Joz zfN>TLFwX5W;$QKObGtLnssYAXGQc=XXT-1YjQ@{ZS#?eLy0-$f^P($j0H zM`k7H1wQxMTY)Uadd~@tU>)Ll3pr&G@384IIo@2xdoROy3r&4PGM_GaB>P2q^$y7i zWEAgU%+bLQ7au2IZpHoUi1{M3WEVt{OA9}1J=(^eR`Hk7^;`>Mqo{v}OQZF~W+mtH z;B7xJ%f2)af16ynuASw_re16JzcKdLJ$WH&9^%w5Jkx+ppfTJS>|FHy4xSs&GvwOh zx~~Dd#KhK+Q;#9fytatV#xDf@z= zj|>fkR~3eg9OT_m&RtXgjYsZsZR~50$|m;C(S3K6_if@Gn?Aaf8e#RKaL%knzpUqa z3G*$xJ9V5eGE_ABMu#mwz4bq~J&~*zz$Ook13t=|R#Zb5*l2=L5oZHKSJkE$rWHuQ zE;{tv%-ud0@;=RL?q$p?uvKf@fsasf_3+@4#JcP}XZjfT3WfuWVb=76!eBUUjCH)r zy1Fp9oM&yCvB!4T`lz$kR~#B~`BD2-z4dkI7UHZ{yo6YMWN5b8KUE4H&!zX>ee|fClr5>h(&>tyNyjUP;a+of{{7Bb2>XEDdh#JJ(c^!vHSLm_ z@KYA|3x8es45Dx4ft1%({gn7e_C0>iMLDC$_fO$mLGs?}x267GQPy7BRvOG2h3`|$ zzk6~*MQv7D3AB~VJ|R=%2R}!#XVrsjJ=ZMOWXFN9Gq4@bPw<^xhbLPhkUh)EC)n2_ zqjN%%8M1rYu!Sf^3P!(y+`_)`>bXi}ChJM)ILY!k%)OmCm%#V(IV9`I32w2%=Q^^^ zssF>?cXRs_gfs0c#r}KL!`otU;Z;15!tYg1ekH?xQ`JUG*2IQ@OKkeN@P0kM7XI5a z75rmg-Sb@q_wSuqxtaWQ?&S5<%a=00`r32JzxsPi_^v#I#!;>H^10%L9K#EWgH@br z%Q?3%*yZ494eKqYekK53wAXVJ?_YOnMQ9Ue_{~~Z6Kn`iC)$ZmesQ+GYwmN%;J8VH{*Kic(&N%{g#l z@tTRNL))rlQO=8+7ZPXi##dxF$bOLAS8a6^_-6Bd$t1;Hr2mcW032h$&g5Q2bHHyqd~y|Qt0b<_ z3C^{~Dg*aCpu zE%4s$Kd}~D^orQd++QT8t36LE>D{pMjKG`phh991YuiWp7KeFu`=gw1&EL1U#~t$) za_yDOS>qZwFlNg)IHQI!bd!dgrzkNe?U1bf~RYlGC0dfep9ACY9IWcGLXIH=PPGpbv@+v2&_~WL0>(R!v z^`!d5j&3CG{US9f&-1U*_)o)w=u&LF&j<70aO9Kpr&H5-qu?(6iBJE82lm22f*-I$ zy#6u1dAtUg2Y_`AFs}vYHNditwMmx!tKfzlq6dAmc;Jg8tVfHnm3Z!Xf9T)#`rljk z*BZ+|8Q-h=UglUy9gE@{*c;XBWHU6D2P^2oQNnqmUfJdSoW8a_ze|<9B@R95tZJ=A z|7ksLeZ_0zwWieiiby@Ut@4*e!E^WqWZZRDe3oO6^6Fxfg0orQG+`UZT)s;bJ=Gc0l)^uaT-17D(c`$a1-Rdt-?La1L; zE~2Pa`zgw1(g#e>h!z;5i|14`Cf%NXe~zxD+=qQB89kkKOeLpL2k* zggqI;W|uwji>o|maIwzi;PFM)ILDfH$ppvlRBwy<;81hI&tuMkt;%miX7i3&@C7{a zMA|qp^~#t9kIV)J@Q3zM==ofpv*BU)f_6W5#Pg;m;!yBR%9@HQ%4E9~{j+ss2e#Wr z49ol}jeD=K@>dg6KT^!KmEQMXZ_}lC#Kdu@GLPxZgK_WXzPtFRJhF0Kom~6jKlL>? z7O+pB&$XOMr+bT-XCpAs=ThL{*LwM^oGN_0P3JEXx7n?@jmFZtqM`#n=Rgzsta~e_ z1d!RbPc-36yqD{ye;j!CuJ^0g!#BKN?-*?CzkJa%_BWDaGv6bJ;32KCM(3^a*&ROy zzCO5#ngHy{?gDFfxAl2y4)^UWfG39_kG`O}^IRA>uLHKCS<$ZORW$C7Gg)v0hjS&* zJup2>*MYTLQzt*gmQRX{T2Ai3sX5}T^e|(DIn&oWhUU17Ifn5&%p4n2=LjPMU)z5Y z|ERV}HJ`Rzu*Yu19@f}ei_WKaap1i_Rc_kPP4*30z39+AZ!Rjaf`tng9UbZ$x~9k~ zG_bPO2~g-;{!scU~L zhb(-(fQ-iX*p@ZS+NNBj>NQl4*zU>;^qkJ)gC?pQ;HftK<*b(F&{j-xk}>wXGt((vh@}-E;T&(=O==4HrbM(2?j~{?-7`qX>4LzNWjWl-} z_=5II%vnX}5!SN=r&)20>Bgbv5WgyAyb^qvx=XcIf9pQg#jxgN&72)e zS1kW0!>mU)zw&YONt zFqc{Er?_r_@wpe+KO?!2fFbt_hGs11`R*_9d?_%5R$UloWrAU81{gxmf?I*1crMV&kMtc2Y_J&-jHu0I0>G{zCu6U%l#3)k7GX!c7w?wbf60wvBw+8srk{% zlHr@c^V!JhSyuM0x%`V^e|BSA<$bhj^$tt@Zi#8aZ}RPIncUcnxfZfb!K)}t#0|Fg*Z$zPFwI9YNR+^D`^GVLp(Yo6DA zCU(lRXW^ge-do@&jib6R*~{*8UqTnS@9;irbdWO+bYHD;3V7CiuKj9Y<#~_n3O#S$ z<(b#KD`Mc*0X9)dNo=xsjPs*IVUXL(mbhx2(9yyWT+6FY!DY?x%VE(WJ5 zdfYS5TabU5WQ5jX@F6+xxjzeB{QGS1%^dFoe&#;WANOe8*RpQc7gjF=7gmx-I@c%N z7C!0q{&xP?R3q-#`FD8gJC67Z?epC?sbBd?spq@z;(YfveDUzBoa??_I)t;y7V2e9o2ieVlC*<32~$@Ak_2rx?#Gr{;1# zRsxSYztw+|=|kEDEINTj2e5GUn)DcYWlIURps_bS`tV-X+R56xfQ|7192j)8Bd67^iytd34A!CNj@1_i>#2P|<}VD+86F57 zt11l69UTaDt*zjme6HE!&Lw8q#kj(Ej5*XWSM<$p>Fk?rJnk;>;*t3}I(v6QXET54 zo0-BRpFa&AzcUCPFG<7WUv-|5tFt|LEV(`aEoYnftoKY@@{4=QCt63Y1WrY@mN^qw z@HY1|Px*J){aa-B%Wqx3+J@&3ZtPR-%Hd`0P=eoFrT2Q|R+N z$EVQePI&oc*~PqvJUDz()cQ;0PpXUo@7x<@yf0kCnjF~o^^GC^dq$}5J$Mw_o9yzOK> zFaNC^0B>Q|xNWHQ=)1DBYQFLbc9spVcG+3h>5iRM5%&px8E7K13z@XYu|ar`u|b|C zzQ$Z4d{41Ko=vks7M-9CvdghSJhUj=qZ+!^->dkmID2FTczhq+eF#mgK<0dC@tygh zx21c(FZeJgW0%nHr}ir1Fxlwle}QhXq1?Iu#xr-tFja?9`b}&m=D&{bE!a@?OUyZN zs?FXNSxbDGzjM$<(Pj%9CTo}9+3SYfh+pzK>dKHcEyxuAV(7aMnp#6m6Z~TMME?A-Yc2-0!ky=0NA)Q@q2_Wil4>4Sv%Z866{Sy&+$^4Ln-bKd`SP zyY>2M$D6fJeJ(fJS$wSU}<|Ik!VoJ_yh`+1*gEYFw{+(C{r$~D=aio5)Ar>*zo z0}*%HmazNy?epYt2GWT!^57No{CKgzruACn$`ZGt~V{d0|#ig z^9|?;n0B+a{m7-Fvus~dKDB5%##~(5&^R$*)^R)UcmqH3O=4i~bHl77zNwPC_H%#G zbKDy)gdVwP4>XUR{!9+>ja*`mxx^f?6(>ia(fgpGO(y1;(<_=Sp;xA4L0}2;jQMx) zu1?<7#d{TVOTdb8tB5PdpnaoH&$G4(-}o4W_dL4n;$k(fzt6e^+?bcxNzg>YlbNTTy28nm*T0pM_mm5l@9xQLFlI z?&q1JFIh*z*n~EG@=Z@z-5+7yQD6{bo%!I%l_Rnr?R%+RE_URI^mBU#eS0>)AA_D& ziMM>Mzb2;U)w?$n%d0)jni^S!&aP&RWA+$EuaB^f6mTA%pL5|FMp;KD;Ri^^*Ofv` z+#liI%dpoLUk*K$WA9G)#iLK_J^1|aUKHM|yaW0CG;2VH$es(Av##kC@o!3}XpQ_v zug^F=KI1!p9r8NpK6@e0hTn!CmRRvh(K|J>V~2`%(J|mV0=+3u6lE@z4=^9uip(j1 z&0#(-BS)EQUENu z_ZRY9Lk4)R%mB}ZRCqqSU;uc&3p|$w;^&#9%;L7h#DQyw;%nvmb^5)&K|REF8zxq zHu7HS0ehbcw9Ea(3ZIeBCp~1wdILFy4A9xWvS&>kVmmhSMfUvUBTMdVL_ahTYk-H4 z^EpO8+yuQDIicUtv&4R$nZtdNUe%Y_{VD2*`)%O2*xH*yRnW2M-mOKiLY|%r9Mum5 zJs;n|vo*+pM&40_YzRElSFJNLGTDaqSroPpcp{(i%du5V{%yDNZxeU2ABcCSTn~Rf zIF9Re;@!rxgXDe>S2ms&yx^aYr{2f&r*fZtcEu3l5IW~zSnJP$cSj3#B-m>5BV0S9 zy9)jKb95N`O#584*UR7zI7h)n1HGhv!(QRu7AyWbamqt?E;@SXaog@~A;%ISmhxow z6;p4|ITKstX(C05(bww#k#oU}p_YT7zV<_nnWh z2952m5j!R}*%$BHjNYEW{l*?M^*`*9rv8WAZ|CF+=-u$c7Pn643F4NwPzzCv z-d{(bdA-N<9-M$(x;YRRFOloqlQ$xJ4RvSnmDCBrPl@MqIXmntJa5i*TrmEqY^EOg z`vCkcI8_s$51p!3xfc z_S!%tuOw}tt`z$=rg3*D+bQxE?R@GlQM z?62paEnBuMA_uXE9K=Cv75Muo}z2NN7w2IL0$R|A#puU~6_M+5@ zbPI1Ap}|sksK^&T{BtY*9ysjm!}ox$l4tKF@p-`j_}lcH)LjXm@VeH~wNbWg zPOIkKQv@%SR>U>G_rUXE5&3Ta27L7Q5&ov%^Jnfs9&T~u z;cm&pLpRbJM|pu&$=Zd9|Cx+w{`T+5dV9McXR*gQrV4tb%LpNq`!*r}uKjGG>*?Re{w0qkOj`CCQ6`Y4# z$bzx0zoQqHi5(ATUo!k`Isch@imC$p{EoMXA6E@ci63_~K*Piq!?*k7^Tne}eb~Le z_&96^SI)X}Aw6b#F}6x{DYUyxu`%1ujx6Cb@~s0Nk$g2VPUNfpCUNO+eTDVaQ%7R^ z#Y2o=97dMaB1>}MP1Rp$%r5xg7|+kcPd9RO3--Rz+ zUb+E$uL`M%MI$A7e*=cNBR4-%RjBez>x@bBqnQTIA+HaQoFu1H*0XAaHw?K5&D< zP4#re%J%@P_1J8U@`=BSKj8nisf|%RUE=z!_VsMwVD7tUXizzYFmg8XG;#pAy$IYk z05{3WQut42V<`tDxXCtM3(N#R*(Xur-7)N?2skf+FBK~+*87nSp?T!;pC-l)?~C7^ z8sCd!$k`6!O~OSJYjeMs!u!O&7!Mnk{&lfkcK-rDye^t@bJdKuyTp^fc!Tri2BNt; zKLK`8^hyl9;^KM6Io6{qa*&D8QQ%qPCcvW&csM!c6gu+eZmty_jf9S{7YC!Gj$dcs zLu`Ts9gX~CI+_d}8C%=on+|l9WMWG0azaJC5!)-}K5{cIe~EAC?_OrkoBB83;-@}` z&;OvcxDom(;(P6-R<-3PHsjF$$5X6FOQ!%2?Agc*zzn!xZzXd0E#zpd5<73ZgS}nR z?G`-{Oih@P-<{Bov2z?6Qf|fv%v@h;`4rhXIsNhu)a4%uD~HMZJ_!ehh@(c{M=vbP zOpiIxBk=(CQh0J{%Mv*lL!Wi3n|R;O!E{n*qR*v%r*0w>J#H|5e+oTL9)uo$&zLSR z(>HJwF`C`=Q>)_jf#uJ$ujc|Ee5_d7+>a{XTuJ}jdD#tbZpzMCv$F6$+!<=b_-!7) zJ;AjOd<ll<=L{1^b;mXO4_~3L%?73 zR*l#HfVeSdx(&onPk844PBt+a##X-PsUISHkqt3?EE}izEZ|!5WW}t$=HGH}3o#|( zvK@XBZBVn3!cVSz5pCQJE)}m(j5L#M`R?2dxNOLP%MWc_-XUD_c`#hAe6&9WaQ*?6pzy+l(FI(Sy(Y$|Jw{y`K2G(RUYJ01e)~HOe(NzV2&Jl~Z2) zj#F$a7yW$#eElKwiM$726VJ*-3&S(f!qN=1@SaTz@9l#Y_&gXbj9=NG7A_uy7XHkb zE?@rxurszPJQs!Mj@|lk^JTz|8mOlFn(N9WH}9hcs@_ur)nHkRH(4vGfpU08_u`}4 zHBc4t)5!&WgglmBTDLq^FIm(wd+i&qUV2KfI|l4l46c_nKkUQZDfZzCk6t>)I%4?o zwtYjsr@viz-;1gEE_&X#IKuuP*<=;@*ktIEa^gwYWz~Kw@cgSkeR%IG&hDhIOo+AoW5x;4_*NLw1(F_Hj3aW zU!pvR*d}MOl~eZ}An#F!zu?l|Krnd=9o7#fdBEh6fnl;R6HFe-0F%5=hRM%7Fqv7C z3X|c3z~ng(Ob(JieFfdCn$v{LfbNV>+&;{19ECvni91ve)(qBsI}^6$LGQ1?Gs-%@^*{YuK(kaf%)oQ&$@oWx?-Gt=jEZ* zRjK+Vv0ikX*6Wp#HLO>8vq)d&^)Ah{Uh*{k*4t<6mm9TSJ`c9u@n7h_-X9LK-kF~D z-pzX1r`YrgwHrFa?xn)KHOuhrZ?35+dlh=$k8XLzqg(c&TXKA>*mq#t8?p~fEWj!X zt|VT3v-0X5{J+gLVojrpIM+6Sy%uBdQ$2g1$U7`nzg)?q$kqLM#*Pao1HbeJj4m2XhD6&^b&=$*k+A-9=&pY z%VRH(fBCUZ{4K&}YeU}3#%c8MoP6m7{Q>vw=yt)W<8AbGO=cQ=tByDuc_=5&)|7~| zNj5X*Yi}W^Nq)7$_O+8d__m$XtYW@1@DYFcCt_^md6Ww+9ckw@J8JY>(%-I9Y|Zfp zV$+j!`rn5K=Eol~t}A=@`keK#?ier?ZM9n=y7sV4-iN1D0$3E&>srgZjX~RX-sbJrU_VbHt$Iipf@CE9|DwgOA)Q%-?+%)I* zna2agbz?8bJ~7{y%sgIPJZJ1qhcD#QN8l${KBvp(qtH#{P3Ce_W_*qK1bjU(5We0_ z#n<2HGiUgM>j`|_G%&tOOOyCIZxDRF!?-SA6oMD83@!mzdBWB8*dd%>*?@msLheKQ zS-zcX2M-0FUitiUU}9=q;ja{X7&ziHZjsMeU!=1@I0FQnxOKC3y|#SDyw-pHJh3_M z_l~2O5b-y7RQD9MR&qvb6j?uqdQI0pa_3~zk?cb|zwt10(p)q~^mcI7J+PcF{f`WC z{`L%ZdABX+2eZo;Y)_T*?mWHpWXHkndCp~?s%4DCGSkyNwT^8=T-4Y$s<&R0LD$D@ zUH?_^8{_j}y8fk;leA)BgzvuLy@6%vY!A)g7bayUI9VWicI2w@gTSG5$z#ycH`DI@ zn(lRNc;xxFs0SmLo{0Bk6YuFLq6}HjRnD4awOeTiEC2Jv7bIC1t$l-`&r*zTl0PFZSq-*ukbx+&QEjCO;^5D_OSQ6 z7k)bbse^cq`pA#P2XymW-WYB+I^58+BbSv6N{{o_I(wXv>1L1f8{{t1ul6> zWVG$eA5ZjRnQ^quU-MS_y1wJCE06d!>-ZD>$-;So_?zkZyA}5S!AYj)L300K_(o_I z9FAi@TqX6Tip2?^s!z6K@95PF8T&k9epU2wp_c8N%u{=W%=(FCufv{xmc8-O^QdK0 zeaeN}hm_S@kDTtP3dDzNyjiSqD*yQI@}^>HD_QSK>x|&iS2@22-07X#uVZ+87QH&C zNqCZ4ghqOk+&3a;&2;AJ)-*hc4}P)e8Jb;>ji@>0kbB=wEl~w{=$Or%%bELhd)_mh zc}L5!;ie-eW;^#Q9?x92V>1UhYg9Q(twrn5{B1pD%M46dHN%Sz8XfYqw!**CuQypW6s6Y$tzP2aoD+l=v06JFI;hb%j}L?B|M7>J+xq zw`3jjS?TFnvLAUYc`rRLz4A|*gKHZAm;Xynoq8!_8+7pfK5T=_vGY~yVPrBma%Ity zL)b3dqa43z%^UAL0~&L6W*E60fhN6cO6WAxH`iXLyLMM!m1dxqv0SsCwOXI$9io}v zI)B^w>!p+V4xQWuorreI>BF%I`1#0pma7koK4K8feb{viEk%H@7$|NwmF! zn8zH>M8TE}7Qq9n!ENb++G%rv>wWx&>|ET#-ov>oeRgk{QP$!Gz;Gl#(cVONeDS#6V|o5d&@=Dy>QCmL>=l=%K6g$WoOv(TUhwaq6ujnUw_lyD|6IN) zb>NZGe-jvZ$M-i?n0kLRR^ZIwIDg~bvH`{$?u>VcwU~OBc3WQ-;M1k|5Ao$!hN9?f z$wKcM!Z&aYT_34IcB_XVc1JR*>Jp?y^Th;vCOD$;S!NTAQ?co@n&6w1v!jJXH ztU2r*uLlP8kCq2J;OBbsD6yeAp*gA>-FacKihH8Nb3@S^kd@G6bajB>N?qJ^b(z zdcclD;qy%d2OH^+BVYYWKC7odoBr}!8+7y;Xi0ISXM8}v zvxm2i-%F75^5O3PN5yb0dgUU!ks01+MC&QvJ#|gr*V>%k3hEW%u7|=5aGN~OFM^#Q zdm(~;ldTd(uf|wk2fcMWk6C5j+M_YpW#oIf7ucg?JNg3L6Da#T^OOCeGf`v6i8kRf8X}Te%PE zw0-z330VlPzu|%SpFHq;ZIs}5YQlbr zU~j2MOf7Lm^=4PhL^hqSTlD(28tD;;j8ok>b3IJ|_27=fA2*MqKh6r(aaotK&(hyp zN6nL9ZNtqz#|;{y#+tL4zk0mcXW{Qy1;HrxA#yGxdF{sMwWnJ4>yPP!r_UvR<^(>u zPj&2vt;SKo=NO~t9xGIIkB@&@DbLIH5d7fl_>UMv-^b-qcLr^+9;esrl;CD}9&JA3 zQ>V-U+fs8_tvT@7%mG?r&HC3=(s)5o^Rd@-Qt(lGtfmsHyx&+|(3Zwp%2@h*HtWe{ zoCs@&H=fb{dBIsdg!`JEX?qc4r7NaB3`NY7R z@|Twd)k7$s`R6acAlOx!8|waO-vgVeEotMvNWCxkF#8$JbJqvTR&j=Hm^lWRqs1Iw zCJxsLFS&EnxT49JXP)jHr|8_(gpPIazp^6q#a~KC`djbCXQ;$y`201*dpzGS;k(h9 z(5`%;$EckZ->Wv+*+<#^M6NfyU*LS zZtJ*d2i-Fa?eAL4EY_0VU$DUVqe*#CkrznV$@fx&I*$4EybZpgnaD_N2IaNdEz|RQ z*I%%$NAiAZe>L~Sz6oslFwc|_Pp=?mUI{K4>k_YQJ^X@gn`mAo%pd`C&b$VqKiMBC{k3HS z*!%9BzS6d?6CK~qIDd8MSn}aWm1F-EYmCte9T(l0RTja{Q~y_QF9G#Hwj@V4R+fd? z#~Zs2xlLS7b>8Z4AK{$8Ft*xv$RC>C@>Qi~kLAVGCDd{*c$oVm{H_>vSbj0`r_I!B zX9o*!I^Mhj`m47-Pfux`r93W3{iyVofg5p_izREMCk}CznLbPBNXOXp==5J@Zr*om zj`cI(civlz3~T%hdnvhQ_EK`Km}}m3wXrVE6JL#9xax`E?_GY1y{;SGb*-@1)yMZh z+PYe`F65BAuD8CDwyxp~>l$gV>shUf&zaU`*5tf5eNBPk{nvyJ+Eb2=xf9mQPOuX{a2FRDyq@1t*m_qtg_@r0E5x?`L_oERj&jOlSbl3wPIRB@K& zj8NBk&?7!Z$LPFJSC!7t@Y8=HJJg3A5FI{~>$AAdJ&*XgKb!ka9Otlw%~1nxkpWvO z+j4_h=pE6jq+l!M;v zx0XOE>}|ZIuFqa`Y08=_oc(v>$AD;+7i)v+fKj#w~j8U50rhF z)}PJvFHMs->epST_ffYVrJm$pyHfp}L@e6l3*6?u!=tbEXV9;4W2xIP-hJ) zSEW2eC-oz4J#!24DZ>2PeOFAax29b(1N{nKOpnR&>~~0?>!QS5?Q_l)LygM6Mece1 zAjNRsf!D*>dF|RSZcPu)rQaZN*yr!(9mEbs)w174eUJ5A0GU$H-onJ*9DIZDeCk4h z)%~6LEPSqFZGh;3+mjSBJ)W{x@LLQYNKdcNvM!D)R>}HIteLrFQLkWpczphP{QIoJ zEc6w08a^i&T`?qN_(eT2Hf9CiyGpjNmFSbPhPd$^IuDL9V~jNp`%QFX>lA!a=Jl1! z`kMc!Ydoiz*=Lcdo2}f{-Ne_s;l~FS%s;xy%A+4*zUha!i5OA7`XR#mdPaOw0AEDl z`8A9a#;$)*e>3>BFQ{f)`qo3oU*ulb{&wltK2v-E`lX-gKy=r8zTL|-hMz7vP<&xO zv4Xi*(B~xEI>O%dM9krP(4b-slXQ)k!g}sgOtghKLI=HD74L6YK&%13GYkGuKUDp0 z^M|k1y>AA7s_6X;=zZOA>zNm!_eyF;tDyI6=v{q&%>E{5ES;Y){G1qvO=p}}wpzW| zUjgp(>A`-p#kq%^>s!nmR|5CE6u4)#{#f`1?wV7Ze7-b(ia?WLcqw{elApGAr1H~K z)HQr6eu76jFNB}y6}k)^5u2QupNhp#(6{&rJ0*pm4FB=mpuB=_?DEQb@) z`0jOz9f(P<`LIlQYsuS|7#CBZLlJd&CUZ#)t|BpyZ9tH!Fc z=6^2l--A|cIcUcP6|)gp+gh#2?_NpWH@&D8Hf@VAzq{=ZY5Lfqrruxo_k)yb%*mx^lZMliV&y z%I*5B;BsikE4R;tF0w_7jH$5_avK^)_P2(a*TG9|T09|Ht@x!QtAC_-p$~rG$m+)i zkk!{`pg+#POTmz+j`=5obNr!@RrR+@%Z1qFm`mUN8+36j~ZN*j>l1EV;Kk}zKdXp9J zf>%0k1cx5^yXRbF?|fv#P3T+XVCRkKXJBB)14s1vDSMFEtM6nhxQ~7j8yHJ_5bZu9 z-`+Zxn8Hfy@cvi&$;Q`=rgcWeX{A-U}U}e zp#&1^=plz{!_tR-P;Y&E4cY2vuweW&@!x&}KfxfMXLDOWh`PMu*!&sn*P$8c#CzVT zd%i%(oG+9-U%=JJ|5N&ic<4jEjr2PE>&q6X2HugKMf5~do~@|B&W~Mz-8q7F>Utfy z^(*kDbRI*|$?orscM-!MRdhbav9U^IV`bp`t9~&s-#5S3pYI=b_};7ECJ__Lq~HF3#V5V-o)SLK zbn!z^V&SJG@x9F8m-}q|2JSNWos{_fd4u0`65mZMu;_w;@%!fg5`GIl1%5v>0Dgb} zB?rIZvkiVL2Egy$Z3E-CC$_b)GMe^QsHhT#mljESc9(5bA3fLOd;tUgpcTUIDM{L|-Ug zEq$TyvUAmcv-5Ue*|@gau~$%^PK>p>h&>u5(2w3-KVNgHADfL#HQyJ_JYGv}`h%h` zcy~E}D+6=Jn%_2F{i{H6>DVV&tNFh9>R;6sj~lyy?;DZRT6a5tB}4Uh0resKYpmy` zTWxMzO#2Fm*4lbS&Iex668hhg1TwB3(lIxzU{%~5NG=KHBj%+KCm3B`PB)?p*6M~ zx;27+Fg;tdO%IR0hM|mKh(AX?4RtD7bIicUS$BI@a4PFg=G%)}FZ@5qn?=}I$ZX^o zan93&r$gsm*kifG<%x%GQ61w<#er_ewpt=Tf?h0(_>64JddR2P4|dfQVm~LzhcGr& zWTQX$jhU%-RUv%wAvt=DGtLh!Ggb%Vl&+=EA3V^7ALq)_c(uc8wFCOA#)kUvnKWJ- z4c)a{WnHh@vCt~@D0AaGqXYaF;I}~8S-j8ApV<5sDpJ3gRDRQ*OYLtBi|^2H(G|d{ zf$_0}I&SinwG&I!UV7!U^N7!PlWUN?^V&h1%ZP2P09NRZj+?N9uw}X$)cXiJe1sZ% z&OXtefdvx+p+0Pk5_nKOM0M`cL(~SeJD2{wLx0r!w$+n7IaAp2t4y z>x1X9mAyP4@$kH8PV_Lz@~`RR+E#o!qw`Juln52D`Byc!Z%L?OQ5$bpFf6Hq%+t z@LJ5~H3KWrEOU0}v66X=hkq|eX62yoB}X)_=AtoE{B&T|6n6Nn%H}uWFB5K8vS(vH z`04{+byO#6N8_s$n^}x_sljab^rcJJ= zpw-8E(&0NT4ZeMSCxv9^N1&B!e)@6q9At~m=8~LgRE^B|+#tEOtx;r+@Tz`}?OX9X zRt-zap?ZJt+RIbr(1D+)$qY|kV=DFC33;*6u5tRC=X?U?Pp%|B`SI{%y{mXkc>={{ z+#0N#fnisv9YfgX#C%^R=G*7Qe08l2+L#1P_c<}&eNN1GCU)*Vc(}`n`R*g;iw#=s zcXA^7UAj&_gnM5Xyy}%Zoy0K&-wvnVD4X6|UYI0)=pAjBBHKIl@ z5JP3#Y-G9YY=*sk5 z2#P7UN^weSI=Y{R(p!bNbW$?#z-cI`Ze&bo6>yN!QCe?oLT583+m$4pX zVCNEK;0=7gjvjo}^z9dIp?@Mn3pw9%n5mVVGaQ)(4Uo?XcKJ_&$A`7j$^OA_IyOC3oIDfxOe=?*5itGuQ~tn&_U?7ceaI`%Wpk|toaMF`aO8{ z2jcU|yuXThlyh&mqKtlmQ`HCD?tdaVCfSnTx{=;lsvV0`Qy4>TDz@Hw8S zCKD^=y$7JfL)Qi3f4PCagVKEy0&&K?q!+%unD?#es3@CFAK^6tbN!i2@4A{?%Kz7Q zozA-+;~jUSBlHf%4XXT-RmnA}#^8VY9`U8do&A2^)EDq??RWtFe)b`kfB`&ziShz< z4^)N1z-ci3YJBiP5a_^#WJ7Gb*= zeFfd~QD5~D5 zukFZwM&sAv5c(;$UpW>7f|CMCwir zs0S9ZcSJC{F*kT=>G9_ECDv5;z7FsnTbudbKXI@0PMC50jDzjfw6g7U!H&($@yDKb zJU*%8f zkE@zF)yns6L{4*GWQkzRy!F1}!$LZnK>N$48=1gdm5X!gEk4hjZ9gvG_;HPQjyqbX z+F5uS|B^mL^e2!G;GHYZ>}w_`bcsGsJ8$FSLi>jonAxtLF67h_?Uip;yD%*ps4r^~F{U z&DbWuWHU0T+bRv-NAJJ={HFT&alomgd3LB9+Q?+@`mlF-2fiwP0QYy{8{Ecu#3}Y9 z&pz=daK+yWdh^}|jQ{>V@n>XdWaw3)*iF2P-#Tu@C*%1rGQS&K?O(?kZOE)JaPMaR z%5@)rH^b=4{qTEtG-K? z{xjdBe6E7$s4Ll1r5f8CD$3TO4ZOI)eCP<9K(yCJ4ad5ir2P|l51xON zxk4YRR|&_U8Sp55pgkS3or`sSAJ@?1eSM$7CmM}U1Ps9Eovj}?SHQm|*wm2~p9zKc zaUC6VN6PilwyoWCdT_a7I~(Carx)q|r-ARPQM>yWvVST{NJgE6Awt{GvC<7 zea(`|?wv;^R5b%Z^4HKX4TrKS)%((ZJH)-!ucPi=1j2c8TL4? zZ`}yZ7ZWQm&rC@^a}Pb_!Xw>1ocY08;lP640@)^>D><2{O$H|Dq)}Di8XwcH=R_vk z_K*#ab@D+I^?k|xD5}%l1f1jtY|j9XNyK>4_oGD7uZkITV|NSRgV_f+Ft2p`U>5qn z4;j?$u@6e{Q(d1?zso*Qyv4n50=>7i4@R(@zoLq|`@CN1OvNj%BpzV*CQH^-6i)1G zR=lFe*m3YPG(BVraRKhV%~!bVw&UMfeU)$6nl-+myMAmbx0r*x$qgN-_XT^26<>|~ zxY}o_ws%V{eK+ks{OEGd2v=-Cd+)oj)y56)YnI+qd}o7nID9?>Ii-ByXzCEWF`E>b z&wM8Qmus`y`!Qr=cy(<}+V3tu{^`05{5ZKkKfe2PnjPth9ZYm^?yV(Tk%s>x?RLDe zXDs$&duqHf>exPgYbC2K+g`*z`6PPSn}HrO*^54M3WM2;4-AKAHfFX9bq@H~cuxoP z8LPrxz@O9}w6Ofu53MqS*h zkqcGi(CcMmu43$wCx>G7{9RiZ+K7!-Z(WKlM674+@K9_cK9p^L?l$&k%pd$gF*Qy@ ztf`e|-%W8a${4C~iXk(i!%vo;YO)w3QkornEpWVfgNY}xZ)U~tP?Yg1(#E@}#I{kr z;~77P@nXy^%roTM;?Wyf>&T%Y_^YWhzSy(Zj-Z<(;HO0Q06*E8z;?HL24#h_SML~m zX2WBQj%iv}RciK|?a`wY@(LeZAYNb@wgU*Gd!v;hY=l?5Vjr zEx5EiSx+xL{&V0dJ&rO<*iSaRlKn8m?=kpYws!|`i$U*EJ$8f5KLqH5A>v1pK2{yP&Dg zx2>`Xw!9BcK;HMQv*S0?)93T7mku>YuYQi9SH34+1Lua<^M-~xmVk4w{%g+)?i@=z zhcilI(17%kbX<)4QuHqO-BM)hN&PmLF^Fe2ZE8Fx*oke>fsG)#>kw}+hGI}1a0q|{FGzt0cMJ4 z7yHWJGV=jOE76H_r4!$DbRzHkd%Z^|nq0>ckaU34e9#FMvHVAp$=m+YT$|{*TaeC*$_hiHvLV?9z$C0X*yYtF}(`7bJCJ zRaS5<{m8vK@jUWor^5$=vC)ZwGvg$5BHxWp9sY0d(R`ZJBlAnI8FYqWbWq&HeRZDdT@yf7R}{kn~sOtIB8f>cgJ* zyz*#B@V8ex@~G`n<4b0eM_Z^x_#}BW+JT2FkL0iS82Omg&&ubBZ>47x7o6t{T#}E> zP`uWhl?5Nz_M&(~c4BU;1wUxd$3*UvEO4*?-SAKHIo;>gnF+bBczMh!>+ZJeDh^Rg zDZOaqy5i(9?A7i-S$aP&6K^p2($x8{C$8h#8H(ZA`Ej>5hOL`jJ3x6jouxO7ID&t{ zoM{ao`4-=bPcZ{sCY}H7X6gx~A6W}~sh;n^-e^>;=$FK`hSDDyxX@^wW%X zc~j{tSzS&o&>H4b-eE0{z1s4ao>hM``8sBdV^#5QF^2cq(swXM*qFA@$?9m3~>Z;kMCyekBZAL~t zj^Bq}aT_*b$7p^Z$vjqYjz=|hD|gO48Xe9x-e1eRi^y{{0=w`?=y!!3Up71<-Ou-8 z?)g3IHnFcN+iywGBx4IcS9xg>8{5!I*-zG z?RnMt*}sD$WJv{exRE~QkpUJ}XV~Z3K0y6$&3N`QYYu0m&fyfj7oQ^ej)18nb>4B8 znb*XW-%TB9&6JdDruRh6i`xvy>E156&ajNsavK{6qJ=nO|ZBLkkuh zeTtfJ<0YO}n1mur!cDg9{{k*h*pS&dW4d)WPHn9FYUr#WpO{hWz;y7ifT zH(BwQ@s&3<`q}@U)4Ky1d=`5FCKOkMCegc~b4)>~yL3pXhxFF_{{ak{h{uS z*`Xf%m+-186%+k;`>g%OJ2CX!xRUXoX9 zQL!K7Wh-ab%OBmhx|TkB%lY0K!A_ZO#m|N>i_o-jLBy>t1g<|011squO0^7qtIA8YFFWp6Tu`Hg3~IhRhKJE!xR`98_MUU&ZHtR&X+ z3+8OopVJ?L+TKIM(8)E8&lg#~MGy7$RlgD#&2%sAsK3AhaM^<&Qhvnl2Us4r z7Q@fg<^N_auG4uT+&huloc+`t^xSAY{~IfB*JSGL4uXsBj~-e*A2`%lLwoN9&j-Lo zH@J!rCy#NCrHk)sVB8H14*2u&0=DuF$qMV_n8cJ-zD9=p7_Kfj+-Ko$3bqsUQ znDJ(PVc@&-u#+}fxxptE%$>Fo8z`l&lCfnoc3cOY%_he#9Mhl8eg8$m@$8DSj_WGQ z&N|iFbN`PY-kY2IL(Vmw!xz=-I;Q8_g{fm8n>#N>L zAHWvsUw_K^x36(;3v%~0@+1ovESy#jKSbz(so!5iZZ2G~VA`b98opb;K5KCa*9A*z z9jf=U?$?0hXMMgky#|hJ95@b1)T8z!U^xU>79?Qlb70v6EOj=qa_@q>*{2Llldvpk zeGB@Eai4)DFzsMnvLC(hG_Zu$U0xCFj9myU)8QB;M;Zf$8pptq_=@Vu1;eMVy?<~1 z%qRc))ClXj1S|`IrR@3|cw8~ydfo#qw~)V~=SlVbz+fl1?*s;&@bx^#sR4GPr7qUg zX=usbW8~s;2Xp9Tj$N$F>_c*BNiqKY30kuEXZ@>cB)QkrNO4~ZZ$fXXqqtmkaOQJv zYo+;|Z>~=;pLGUvcI$Z0J!O2(#ItWwqwD3_(H@>P{Mv5o(@B@e#ydF?ujyL?k8aE^ z>s*VxeFUCe11?v=Lo3in4d_{9XWtFdw?n9zF9?-zcDQQne5Plc&S@M*A1!ng<3y0L z5!IWlMRu)$2UdXdN06}_XV|ses{}KD;yhl}$xf0?;C}bM{XBEPUx>_5Z4z}g8b|UG z9E#QtjkBtIE~Gy$^xjK73;PZ(IS9YEIP#;#ksmF{kM-)U>nrHJg&6D3DOU9q_8))8 z=U;QJ&$sKU;}5UC3OUke4eKSQS$%Mp6+eJo5d-J8d>m%tBr)dV;=WS!2R;v=rw^jL z?b@jNncj1d z`i(=>acJJ+UBTEpw`)(c_B?`Y8jfswW5K!4{mwdR&Fk##`|T-K*%a!ZB;(xQb*A_M z@S~c%^lN7gvo1LVPPQYnb|7!gDUh5R)_WVD&t;qz>!jWu_7PmW;Oo=&A+y%guU5Y+ z*LUrL+ot^vnY9m@6#;)O;O{r!@2NAb>O;V|l>F(}!CMnJeCT-7>Z`3naClO07I29H z|AW9^^2mnGNd`79{`OKMAUI1890b-b{&aqFw}ZRCV5hY)egwSBAKoP1`vm+Q0)H+H zq?->Q6NSsGPP2knvz~{*B|cu$Pr>C+z@-vt#t~B2Mdf|#a8_ZeupX`5&ci6oG{H>RQBh5|u(kS<9PMl>Q zr0*>@9JprgdbjfM`YpzF;q(C4g)iYMrr$I^V;=w>vLnv*S&wS{>!B_A+);R6@s)gR zQ9W-xR2k~v*$(7mWX+IJ7+c=dC@sN`2bLCajE%gKzO7e3fuQg;&{fKhwIjCaul8t{`hn!dcbrEN)Ov@KunU+6MJ11MB1X2g+m(ET+Z`9j1cw!{1HtW$zJ$cvXW`hqjq18>8?Q~&cH`1$ByZ~e~>YINQDANd!q zP3^{CUQ4V0Q9N}S@dm*~^HC0O1GR~B;8o=hZedR2IFDF;T;y--{td{P$~NkK$op|_ zU%cU?tWZO-_8k_rsAW(w?50o%LwrCqG}evjm~{t&f3aZOFA6Kv9?m+c&gw?e5vpwOTNPhDC3pDfj)aAyd5Y$s)(If%8SOiphOua~3P~l9c<)whF&d z=%R|>>;2Z$3hqbtZChtzK&J-(%s$0B)#6Q|j+uBd^=Bc~j*Wv}vY7LWCa*muIF1~W zORx8;Zz(X|&f1FAGxb#Z2@?nN!ZYv*-_!4R*Zmo1-7k4~DP{fG8y^o(=AXmpj+|2~ zLV3h>zR6!|HcC4JQ?yOn1m{>rjk=;ysg>v-Ym=LUFzqN8@qbnO{r4`PuMkxz)EAKfk(# zz0|~{s#`d_A;KERpbNaX@`0;P^719n%6jB}N#j{2rxpg+UU+Mq2r+_8&;P;ue677- zzu)uZZ3cS(%iiY$rJ3K)dSuJH?|08)$Y%cAcz!(de}eh143{cT6<6(t_S(p&8P@0K zlpWY`-h_b(=U5Chr*+;rSp&d?aVn6H?wnlu7fhSH&j$v83Fll4^!`Tg^KAn>&mN-+ z^pg92FHFASg~>VxCe+5;d4q|Jo*xQNKaHA%}1AXAN*W!|L}&bdDjjskIrWfpH?1~YTg6M zBM(pCN1d!IdrnH%pT@rUUywH+*gX=mIESGW9Z*g$%m=|!hxE&xrAOC;+hu8ThdnT< zatIl^fi)E=uI`!tmpt=N@8|p=ezjK~eR_Fm^IXj!^537JLespSzv8z*-x(z-VG=0p=QpR*-PF|{R zN?+>*-nDvcpW8Fg#OFT+O&HrJkc;he&(?!i4@?uM@cvIr6Zx9+05q|Wee6DB@hw|y z9a@tCP9Kn$Pr$y>mCfHy)#1pH9oVYk{~Y;sjJrMq9wXkdpcS8NIPl|xRunHt$I&0W z_d9rBM=vn1{g95MojjAtKF!U5qdiqAe7ie?ecI&Or|5&G?mMRk7qD+>MJkTWeiPR| z{R!_M07qLq_Gy#XK5fyQ2f`7#{s_K;aOCht;(g+cha4C!mwnyl;Adzm9k+17-j0rvktuze+&*zy#ab{n0Kwkcd z=Izi*AmQ6NI?4mjlRWTz+M|PAc-p=G(%_kD>m+b5Ik1}dN>1Byz?QAa+BC;j;_SAF zd)#L{-C)ZztYlgd~f4m1Ixsn%;D40 z#0#4DKs4c@fipccpt>=yJS<4}Z#eVN_`%4*N#JlCbwTF)C~I*DT#n05e)ssvDR>P2 zKla`RJj&|K|9>Wvkc0$*ib~Zs2|*yB(iRj_wq}xuylH7GyLQ*^FM*(dXsx=t(o&mf z@CBlUsdm#!TR;??u~ura)wR2zv{X!MQTy(0otL}^thBH)@{<4Od!FZ+JTsYupxyue z|JU{Nx-c`(oadbT-0$Z;_qmUk4w0eLp>Ys8>>k#i4o#;)2mGS9JAUp9&gER_CkCOz z_3wcWe?LSzJWu^NR~9#WWbuER9v6A(VY#uCRJqC|7e#~6<8vA4G4VapZ#(P)8l!~YXIAIl-eAgIFiv*dpNT=RA0j@AOAcEJ-!1B zr>m!eL!`%FsD<^vAs^Ry=`n!a$s`}w3__2GGSH*uJG9%^n-$`s?=oy(b>)vG=Y$KQ`Px->6uD zeD-hm;hHnq=`^$Ve8@vdjkS9Gj}zoOx^n%;H2-6TslVreM=|(k`}RuGVfm657At-I z;OtF3EmTD9<`P~7Z?WMj5> zKDeV#_LmI64|VDMK%B$7@9E`_fCu(p1G_7KD}d?b$TWWcuCv#wJw|+Pm)73>v>$un zYe?r2n?DN%k-_sl@OaPry%&D{rWcmlbXW%F*CyT@h+kjw_vcrgFZJl&Q}OGDj-}Jg zKG^I*`1SL^aJu}uSa1)4U-ytR>gu_H_*Hd=Qt0pD*T-33^{wS?n(j>utb?|D#_JqF zKDsi+yI6}4#AoBYw2chxo2KicF@wT~F7r(oQuA7z)g5NC} z@O$Iw;`bXiem^`2e&@Ug{C<3h`2E)D;CIcy_&wK)-{OH|JL&qNa1i{?%Yff8r;Fc* z&S772_0xN253C>l#6JJ&>W3Kb3`IX&emeNwF))5#WW1z)2n-#+I|b(e`r#1!+iq;Y z)ek@BEaYj})*T&V#v1&7eh~aNzX$xT8zO!WPz!Cy`r+pTA9i@x zie0Q5Jo;h3_Oy3${@9}*He^^U?)R(}H*}22GycQ%srcRRu3@xRTt5JQx3cc^tQGfr z*NS%y5x=eE77tlJr0U-!jPlQPA72u`n}?3yMT6ism;t|^J6-&4uUi=QOA5!@DIQ!58@o#ws{ARyL{Qj^yML#5YL;U+DFl5pXgYoZcf_n&S z$LVSKtz}PMdDe<`=s&GD-1{6tCdSlvzh0JNX5S)TfqZA})dtx6_VFz817Gk<@C$o( zO;yLM_*eO$a-YceKBTp#?uXKORBE}IyM#=QO`XHy>|e1tuP{2OS|M8=(HVWtMv%uI zS3W*xi&Xz+HnAc5Y`X3kz=WvSigH4JklnrXVZMao#0iq0V+5fO#bE~)uC@B z7BZf?Aszl~&Y{;o*kJ{}=I1QB^w}2GX{e>HCV5xx9k)~H!;ZJuci|P2qiDTU5sW7D z;gZkyTi?>TS~vg8ejcGO!C4Lu+OXw?C-B+igO=L)>90{!DpDFKe{_KLbcpzj_dJNs zf9U;jz*2SNWt^1`JpH#L-Fj5cnI5P9+w&K9Zf2P(eQawLnuRG(@I19mN zQ}+P4?YZ0adsKhP)K=pBo6cuPv#g!za7+UZ)ugQ8jKrPPO;$}8)toVN=e?gDINrRO z+K8$d6F&!<(zYAegeUJP`GJGodpn-{ zK4OfgdONCVHS=uy?p=*vPye;_tC~g1RftRs&<=ht3M4Le+Qq?}Y3so1-l^UNT=fpD zm+`Lpnx|*L`a&A4)Z%%K7@d8uI(hR;thtwJOr0sKvSwad!n`=kXzpKETQ3}0v@yBP zK5FDapWPFw3C0~YcX5ucio0sP_xI{NaUTusIzdCatG85nj*{W5@S-Vpy%~+Wn_4Q~ z+CbuwfT<-nDfs8fC+s`Gsb#vo{6ur5&QN&kw!vF&-8SCAwvfj z{he>{j_~iTdDHP-Tb^PgIm_qaJ=A3~-^MYlB`x|L_50s0`F1~W3y;2sYRwt8sb z%71i_@L=^8A!) zn(Kb=Dt};x>Ql$iEm6+DKZ5?gi+g1D=>EytTvI!4m+reT^5xh?bar`YenvzP5rlpA>qEK`*<@oVxNgN&8L3TqLA*> zy#bwRad)P4*iC$nFjv7P8?>9e{*K0~^3M3><(*dE%X95J120v38_wBB*ww$__m1&W+8FBVdHPa) zNH0GT`|9UUL<_R1ag`HlgD2WIQ6q1AF6ZB88=UDLEY*_v7Pzxv?ej6*`a|Zfq3!g+ znBQSc_bhO$d&kiB%R`Y2{GIeKFB43C{-tV_RFL1TJ4>^lqQ+1q=*V$A)5j@0P##{cD+5CG1nA-eVEp?{Gl+|=6FpU1? z$>y!Sn_erj{3{ppP6a-O1-z=8cemwhGH2!Mu=mTLV?`jL{W1NfbDNu})!_Zz)WYGp zY_?$4d4K&CkLvGi#)r=qsU9uoID?Ys;-oK~6@FzCzBGNS_L1r!JpM7@K)x$@cifIO z54Yi4tA<(t_#z9@2S&H&gny+RzJ9M{QMiOSrY~6SD7__TtsOJFS9qx-U=S zoC!EqpZ6A9uhvk*NAjlMCecTv+A=jh8%I&|2l$sz_rignd?Kv{vclg1{us46WMfoE zq47fC*Icr*djyl2L$y5z`D$&zD;Re%hH6zr(3PrlwpsJxH{n?IFd_@=KFz$GchpXE z)jVUsu6l&hx7)b`*VHb%#dph=bF4)Z;ej`q%ZOrY(e~xb?BCW>OAI;`ecR4qEm}(+ zH#pVz-N5x0uoV5fz3*B?KT)35K!d6atVOxY$IYBbji|Zwy8~V*qOZ#H?cc%2qAt!3 z*F!*S=d8pG{pCc)QN>wTP~*b*c;LYiUKlEP-DeC8x;D z_~UEVZML$h3E~f5NFCzcXC9rAZEfVvXP&c2V=-Ro0X(dyY4*YlU{T^ckN<4J&x=Z2FB)X?QNXVdHD{R`$x_&_w-jvPRwV z2sCJ;X6l+rIpH;dfX-}>c@(*QjDMS~oR!7MeFT1pVi(0Tk8}T24)e%C*2h^^OZyzw zG*(X2ChEw&Wa!Ddfm+u;p}v*Yk+u#}&8RH&Pj=XkUQl0pFDAQ8-;(=#KLYJ7i*@KQ zQ|Hx{vx~rIJ2rST@U%K`NI$$p-4^sn%iRVJ*0S{12^^|t=fW{>B(MWV#DT+xLB2M% zs$Q|-P@n2w@8^Lt)wI$&+Z|tbL=}pr@NxtDx| zhC|N$R42pCF*(0f{Hg}|uT)nC+c1!w_@DS~6M8rf{zMbI)}`w|*tW@iUaH(G1Dh2d zWj<$zCz!vwzb-pm;Q2kz`TfJ5XMR4PYrYQ)k2Qbo_e_2iW2=vMm8ao+e#i6qu;=q3 z&*!(yXZe%E!aaP}`w8>RZ~ANJbGo1V%@AX#p7Kb1zO?!-E6jSmFFz&18mW@Iz_PIW zHRPwez^-n9erzzeZ)potG0(R z&2QwNX`b96V_;2z#nF{E%=HH5S-@i6$KIIt*&nG@-(#>FJiDBEDqc~BAG4S~>yXO| za())mM(@dosBmzr@0E-J-dd`_OBHxoVr4b4uI`6h+vfYjiYW-ck#jaZ?8QBGJdtxB zzK~6)DrEfy=3fmB>Y;(=U+>IcbkcoVE`NU(zR8HcqrH9jJ4&5I=l$KDcjtL{PCn>~ z$8COFMjQFQ`p?8OtH+xA56U*Gp7gmX_gO}-_9r3>{nX4mk92_ZL%n~p5{LJUN~sO~ zHO4XbAl79ij@5l2Sj!oxWByUW`g;CWJAWJPzlZ(jq`ceUzFW;Wdwfqv;#r9ZZ6XC( ziC=#McysyAcv1AVY=`{SR_=ssRa4BzJw#cF*hYM%H!SX7 z^(Cwgz%;{04ZJE7zl(1~m)?wTR8g5|Z^mXkh|SqrndsU?3=epEj#a8A?-+Z{b8fI; z^zJ_#;BLfwxGzikz^<)luO$?N!eUM9D-L|^zXeX<#YXoGr_ShI@@en25_#Okn}0|4#;(_`#B^U))8X}5i6dLbq|o78 z4jsDJS0(1p1NJweC2ek)8VL2=29BzI;4JX;XPHX`Sj_wd7x-h5s%Ko zMus(JjPZuwk-u^N;;dIMp|0H#=1P9UjvJ`=GC#|j9-RsuuVtN6gMX?R7d4Zj{!&C723-XkVOl}&i&-&A4l}nd^pwe=Trx82p%iLsr%&Bsd5G&=Aff6Hh1Q+HimXIYoD zZ3pkbroY?f1`-#Mt5STP6>8;Kt+}V{1MIUDg^zs|9rKQl+C#d#jC-$uLC=rq`9kg& z1_s@GFW*e{mD`%C5?gDtf^GG7z2?Y5?l`4Q8}C)13+A&=6|D#VO}5-0=G~24pmyR< zmxWH$S+9QE!R1n5YIWp($;dz`IsQA9iBJ0N`(8}Hj3XTUY*fxh&2KsLyN?|8JmTg@ z*W9r}Uxz2n9zv^FI4}IFveTsMG zFps^=L*FNG$1O32gw~d=Z(<|RcWnjdhvMKQ?*CAz{Y`WVw#3|L2XCFweVx_knmc_D zpbPJ%M(AMr($$sS)s=~!+u(P6uLHldSf>~ET=bjXMft3?9?H+#Xmoa(>`!&*b`Ut9 zMD`CN`^RW=)2u+~O6 z(cM~4M6k6ncrtEaDGb-6(|++HdtunDR_szcbM9J+&D}!{O?angme16%ZEMV;9wmHR zJtBCR{=9tqC*Y8dEroC6fAJ*(Ccpk{c!8R3@iT%4p|KwytD5*E_W&iLjp!Kke0&dl z4$j(EVzZWEvu0JAdvDU;|7gw$6XV6smK%SJK4SFIN*`^!-%dXr^wG)tUGy^s-ih4I zIQRnQP7G{WD>|)h7vnrn+xn`+)9_Ju6ZKT#i!Sig0lrjUO+F+(I5rW#1b&TBlQz-> zZtzRm@liVKvl1P{|D+AS<@%WmfQDcMCn`l>KDg)7wNYp{8oj2 zQawD`bK{#KlS|kOKUR8Ha4GzKtnRGf^+o*MdRB1xME=Il!tPt41Ept|AK8-|Ot*>6 z4&Gxw1D{iTiCFc#@)xtL8M003ZSQy5w$iq>5!+OQZsOiwKl;P&NK6iUIQP$VYIMc>O!z zC9)d%q>cJiyK%&R#ZNx&CQs5~J#<*$OO!0NaeOE1n8hF`oPa@9*lv`)*L}tL^r!_x@dZYrb`9k`J$jU;g6J2kiaBCuVJ)2MxG`X~*h4 z_C1sFtBI#w4!`|HG0=+N!1I@K2g2Kr)lLky{WdE>-qM&TZ4BSi#^u|g_6HBz{WaMA zxqX+O0*>T+n^WJ@-8kCo*lP0ea;f|3?mJpFanVLR5aW_q6exx)!vz4XhzjcaPNUOfx{ZQ)_h(KHaeYmy*mBi_iXuSuc*TLrZ6Cd-t z4IktO;NmHGE^V%JnQP>>Dtgb}y#D&yP%+W>CE$)~}Ix)84N&b3y z^6X4>s_)}NL#LY=>j~(zy+57)_%Y~oGw?jY_}d*iF-H14{=rKpeixmRG%>!c&*ayM zUarq_KlJ%L`By&W+>i?#gGY3)Y_xreL{p>rQa#)$nEAM1<7S^Veb zYpf+s;>~X>9Tf=WCk(b~*WakAE6ZrQgdskbG-peuLOphOLc5R;>gY4UvRt)g? zR(srb{0fa1Ent4T8Sh>`YkhZ~uc5q`y(Z-Z40G}W zw0EhRyteHlHg%$Rr}k`i`|TV6{birnykqf>{hT}ko}2iif4Cig#NRmVFHDI)M(!o< zgf5Cdh(2n<)~xq&??&M1F8*mBiF`MHtE3Hf5j&+Al;TE_d$ChZ$Wse`GI576ds{Uh zwGNG7k8HwNYiBpI+;uFwyt6mE{3UX^+TXx;0-x>pyi~7fU=a1Cks8GxpTt(nN(OT^urw_er!@}AFKmQ*UL;EFs+IxBV67D{ZAG^G~ zn!oZ9;h{wxz#gGqwcbe|x1DiEay~vV0iWoX@G^bqec@hz1)uzZgXqq?89U0@iUG`H zKQ#v#-}dF~jeF7K9rXPxE4S%z+#;rwpW-8b6JC|S(H>_Vj6Q8&?V}H?C!amno#$H{ z%{!&3e)av%I}zTocqc+EPWsFT&m1YWh()E2(crX?t!9o31p{{uruBKd+h!_lHd^LB z^kVFH5%Y`uXw$>)+%;#DLjyj92l*%9@zPH4nD@a{Jc=gft_)z)p5H^neazaO=bhj( z3JzBy8|K{)4gT&&bshqJ6NQfi1AB!n>OW*zEfu~zBSW3o4bxXiT3-&YijM@xWz+`l ze1clqtP4A_C0$RkjvKMIr;~X`=<@^2t7~gtU)jj1*|YTUh#h~eOiWQh`LycHNEs@|HkRu z&6kN^50djFe(hpB69a``Igd_WMSjmbY9Yq4UluXr>6T@`pT=kZ<-DK5y94m;YfjrJ zutx{r+kI{u_%>?zHaBd!e7k+q!%4ZuzKSkMeWG>$o}a)Z@yCh-zt(K4yv+jS& z3P0+3zJzCWm(%Tx#Fp<#&6hw-T4> zWWATforBL8KGGkbKi0GDefW$+|JGeL4|M*B93l@scY)8xp?RLqYO$Du)~C0cxSj6R z$_jtl;7f74tnerKESuxrKcV~Ylz%3h-@C=O`PdTf#pB-IP1T`sp8e)Sjd{lY?wf1& zF;eVr^jh%}IGbbph!17^Hy%c(9r5R-*o;CKXXviS!C5D3dhy`A+1Rt&u-i4hg!=lG z-pBTe7ZrEi#=cGKG9R%x?1jsF4*qWO;tzdD&Ry_Eo<*<49uP;8&)T{SyT20qe_LhZ zFl~-7zL$5}!Haam5q{eyxcGgTcqa}1|8&~5FCdmj+X)WuJcj(Wp?9SZ#Y?T&cI~g( zIgv%-ON^e%?g@Q@IIT0cblm*Z={rKd#x{bRBU^KbXXd5EGnJPpSgm>J>R$NC)j?^n ze&1=Qm`hRz(VutTkGpMp;k8UU$csbxv282z3=V~#-A8k0Xuj^;cR_#ocv`E^H1o~r z*>?%PzyR}IJH+|c4{^T#?9OG7`QGTZ$uwVVXq5TM?^mv03jd_dy_UH@f$t=qpLg-V zH2st_p37J5hTrkC$ip*u!7p%m{2q8bowxsOsz*0GVe|GgJR1zQ!?e?QUOHdw!ohFi zZgM19&$pwO}f$85@OKy`a;jL!g;jy z;w$F7d*l@O`km7*6TYMmrhv01;t}GLwdW1YCwtxTn2+e=^2u7(A?bXw7h95w$1&lL zc<~6#!sC=7^2v+X4_9Y-W!TkOYsp7^XaE`hh6DGhbk8#amn@ln+ zzv+GIEcucH@%QJ3IN#3`i=6jkt>mQ+Y4R&cT87_6klk5#ehJzP- zbd)2*_w#Hp86NJ8aVifvmI?2(=dwG_E z$27mfwcUg1WciKhHt|vi)?wI0+jeC4D1S3Kw=}EyHBHUsIX z_o0(B&G%hoPJG`t-<+N@{IR6oPMhyrPWz$EH}13@Y`%YR+hm%rY|v@=k7_N_>93dGaMpTmeEHBGXT3Ka{j?`l zKegV>T8#Bt`|YgRSeHfXdqhij9GPvsnRO%Uo%Y*VJECJv z9uE58Fz*N!uYUSl7e;UNtctzISvM%=t~i+PaHyo6@YzL=iW&mt2Yn}{{uk-Kq><;%$LFFIqzfTfB! zc?=p^#OO?W_&l91KXlqhfa_FrdBSNs7+oH5+oaJY;6M69$>w3;^5XDco%WIm<1+%U zJA?f7a)w>+e?v5cp3wp5Eqr#G_?CS(=$qS4HmB3{Ru`UA&~&-e zE`_G(ZfN@IsbJ`3f8l|cojWI5nz(TWd0Xg=F;rSsJMD);%b8Bw!Dunq`>0}CvZ&!>CHZ{T}(wfP(DuCNjvbw27{DaS8AJWus;W}#cIK|j-n z`iWi(UTcVV)M1kr5Qm$ApErkCoZh=RkoX(D0~`asQ_VZmc&DQ89qt8r$lGr_{j|*@ zj!oY^(y5HE{hwBoYdAdI2V+6Fn0IC8m46tUN({zl?X3BTUGF1GK99YpJpZU-EZS#F z{qCOEvVTvBMLTr-Tn0L>hnM7==s!cxYTG}_C$4h1I@LdkqJOkUrM0eND2f5QKD%-i zy}D}|{3QL~g`F|>u-b`bb5^yLcyt@SO*=kL2eIc){GQk~_&fA(d~59Rk-AhHd9~A@ z_R)+ke#au;4u3)Wn`vXub=pR&JvK6}zY4d_J8q0N&)7)Icl3v`m6haRkhcVnk&BUt zpfjVyyp^A>-y(dL9*tka9ydNsz2cRee{92sX}|2DF~c?<)*RB{8t07J!5liUKONwt zo*bEcVk7eBqMJA);=Y>(@0l6qAHk1G?(wFLmFu*RfrI28Z(5%xAG2u`0|(wc-iVa} z2h5Y)7JL5K=O}Y$pRgw%*^M*rZ00?tFgxSCTb*&*n77FhV%}}oq6+wEANxX)tyW^E z`)(SHzjogB(tWUb?{nug$h>#EZ8FR|3Vp{xd*yVF6YYW1$Rzg5_>0wjG0y$uk^EA* zBqoR0AO5-dtaXJyyf67VE4=$)T3?x2?oErJ` zXBmAv51u*f&rXeRG+BwQ=-c{Y>(EMa8I-@=wvm33|JZu?i{Dkl=lbJS58jhKtf`$b zmvKg;lQU7dzFc!g<0W*f@;fG${OsY5bF4()o^!T|?RsVW^9~-5OmTd3be8eW8+|Fd zV5!rtdo?M`#q1N< zXP6Sb(>qJenufDWefzRcQRf3YY(E3`7-NKa7H#75dTa-_u(cT-zY#kCojT4T#$M{| zCDQ%~WB&l!DZX{N;RAdBurd=LIC}ce${p6(R5!lG7&^yp+gqFdD~LlJZcL?r1bS?EpPUJvc3`!yZ|2zTL;#(a;pR(E7d=xu|_1n|{bg(O&x2R6nEK=_f)z#?R;- zcrW;3r|n=dtqa^Xy^r|n?4h`DXj zaADTJz=iuI`wNotX4`LXTu^fN zU#joO-#47UzjyxrmcRXE(8=w%Pr2G&J&mm{^~j*)uea_aJ@e2hDfy)6w`~5&Z;X<& z=x04Jo`0L*|Hb;A$9Mkedlb7@a(`vWy04PjQ2fsKhkrMCp6L@&li*qV9N#w=StX{KUFIzwr%ZP4or6lb$~e!&^(5P7G%5Bk34wKH{2yhe3A z&{aKrzA)d~aKG=u-~%gG∈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

P}D+^O%m(0Fxu+XHtDBK|Ho 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 Got8f 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

&2> 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 z zANEH!&9bHmdvHgBhL$Y#*k3ouvXs?(oO)Z?DPrp)e^$QISfqmh+F-?Xz{eqQh>0{_`5k6s&o30cJ*~m4rKqnrAd4r?PHIT62RF{@hBp*$CVg0YX?#6lUHi-*ODX9>rzDa*XIX$=WX_t8teNLHS^b+d9`ML zCDktxQ@nY~*&)uoo8jiQejiachu6(A$*W`uUa)_y*`;-}zGh#m*`L*d_-4M@+-Jg@ z*5LZ)1hAJhw9&4-gjni9 zw!p+=Mm=dm6l0QJl%!L(@(^7G0{2KN%0RrKW@+iiCLCt0FG42EPiivPi^ z+|4XDy|yD)YIBG7x|b9;8(IP8%o0<+$DUSB&Meo?DBE+(g=a=$#C)d?lb2N{n?4`s z*UlH5P{lQekLl()GWI!lB=?h5Y)=}4FK<$G} zR~Gr)<{JO$IkXIHo4(W1HjLUm5w|FvK@X;DF(B|EqM@LPZgc3mMlw5^Jcx2vn3rx5 zc=;LvfdUbOfeEXSht z9r7Zt)g&gmSiOl{3d|x1pqZc82(G4p6wE zj7BJP)q(?sn!} zwy*kClR+braJ=E2yPkO{Vrpw%iLot^+2oKJ7GLaS$`i{Eslba^Xbm&9hJ`6oF*z$u z-wH7(ETQ;PD4ygPDdxb|ILqSri8ccqjsTQMHgNECSulb3Gm?!=Q>bQ@dc*aqOvFKm zeUR%T(N~$wO8YMN?$nM&kBOZ9F^~Em0;p(G+;d5K7t4G}bc%*h4giZd(((?ZP&gQ? zl^C@8VXeXlg^+HfvRqG>`VXvkW~qP*;%yui4OEe@g)BhOr?)a_6~xtc9fC8#g6L+SJ0{qo9%t-{#>vFA^JqB=a1uI1!W)dX ziB`_|A-oao6mUQNAmL4ji8!B%jIa&KL!p$)Q4Q(Bq)ls7?QdM)9Q&W#)e4A4D1hHg z%2kB>m0UW3W(-+R*9;|l(YZRVGUfsuFEaMG#ypQ17?0U}uU$Lobsm26R7bxu<}sc0km;grN&94)d6452*eNjzR+x9G={eGIYtQ{dCDgAfd2K3NNSiCb^j=Xw$y%f zy-3Gx*W*1vUzr?MWssMWB#|kJGepFQlf2z0`UScr|MP zffGnT@76w^inlutBqBPWU}T5q#Lw+#ZkD~$F@T@@W{mC9QM&BTi*v(V(`v7PK`xamy*zLyh3H=J&pj}wz30aFH&=itHBEV5Wp7g682TrUAC+4Q@!wg;1 zew|z0Zq~HlVOO{F3z+x<);n`(D}l*~Xlimzj*T=A;wJD2*a;(ln3BQL2)!`KHAO(3 z#!;lnQjomuD5hg(v{*`bASo6>XHZ|oc+7H5dZS!1k6g69G#ouwA&cE0^OdV-1QnD+H=Bwr_6v3n{`qIY{#{8$bsAw)^xrb5!&8*TxC;&qN%v|sO!(CJ| z*)=etcVDH4FUy`nfTAZb%ocR5I(uRIS?haTWn^5mWNpW7eMTsQm{Wx?H!B= zKS+*Zg2D$~3vT)5#)7?xxo>WO`v>tMJVanib=%x=phE(x)_3DjQ=Gb|b3`RA zy3OJmA>;YHtkO?qC}g8%za{(r+fsWw`Y^O8SkNX|lF%@_v)RS$4(~aD8EV6xBICBy zUYv{PyMFpnN<~*;mB`y)&}rNP8M!nbZi&wM3^s;ZJu_NJ!Gp7eXVQ^Doj@gE2TFAq zdY)z2)HI!O;J%=Rg#(eFO$e3752E_FUJwmeQ^>UNx>O+wy2nh%p@AL>MWG_%L&k2? zdP*NuFjiz?9Y{)gpkI!+b}p2!s=kN)Ah`4$O!ys}w4eY`Eo07oApo60!bw9^r#NBO z$y%s{g$Gm+a(_r`pRc<>V}mq^I9}MV11uH{c^=-SDnu+_<0S(uSnWuGYI4}t0_E610b1Q` zfAl~jcS)PMybUBI`Ia}otC{C&_L73RQU>fSLIrbn!JJVvUo+PL5at`PSsweD@wIK{ z$~MW8Bg#Qk8VIGCe3~mczjd~RfQz-V#zCtU1n~e=QEEbExm+?m)Xgku+g$WbC+OUoWe)WrR}OP#y-)?J$yaoI z*~VaYh2OB|!LoT+icVIB`*qElUzN=hy7FY%Jgwt1W%Hblzb(frv|ya)jgEN##(&V# zPIeL<%?k>tKnw``*EaJSK#FY`fNoD|ARH+`*CtOO17>Xs&)nEBHz6<=n`6H7dn&?k!i@uGdU=$|QKJ(Bph zL07{GYhLl|{IqBV_|il^ZLzvj1wzeeEN6k4ho#K)Ycn5(KIu(d&?RAGJ6)jk4DgF2@EA?liej9M-#!Vj382Lyq* z3GYsEJ?9uIv(y|QD!nQy9sAWgr{~so+Q&N0uQ~yS>$=baeyiJ_+s%mnjX%f{{jqTH zS3`|cbARnNFLzfU(Zh!&%pYOOX$8y{!E8|k8fZuiZVAHCntvM}(jxl(mo=p|pg=oy zem5i48P#&pH9hXg>E`I^3@xA#MWVgP``#0+>B)U#x;d4oVvs$G<)*J?*~7qbo!~Y( z^T~5-FmD_mD&fQ65hg+oWg#Z#CGF%}uV#z}S(laXDIbDKr?^yF4ew--zYOA49f z%;U|e3jY_nkuN9q*PC2^sXNZu$EQsaz;~G6DwTsbk9C-}9jpQmcbErtyuZWTtK&T# z_Q`4Hsc9}eCz|5f4)eS0ohLfXuk_5L9p)h&ALuaut>Z5`?60SpE9qx*eOH3`*;mRg zK5lyPIb!34PJ;Cb=(NlKM}|%bBoR6v+hj35=$?xrKy;Q*Sq2j1T?A2{v_TIk%6Q_N ztiB0$$6(fp4dopP-ueo#Iuy@XG(!KwkSK1;Xr_T?T? z3?Z|&+dk3lABUXje7HN{lAr?xM8%E*Y4sL6%DoA8)WeR-LO4KHRjjBIW{gEo^yRMY zH8+tWknjGX)BL#;7^emCExqQB-bxj~>?dhifblt5aoFmR_z*8K71u$NssQF|eYv0Y zn)|bIPUte<>{2<*l81WDI?8E{9m;#HgnbmLl~9v`(qyM0vSX>4qsDsef?JEzSw*{W z)~gvmOudET^60e`N=EdSAbw$VGm+)Y?b9)XdT<+iI!Z3^nwE#(b(zDanN#{E+4wBi zUGM+YYoG3Qvz31YG1qqXdp+j+k`^PV@bh?erhTSs>g4!yub<^F>WeS$D{mA3zBl=0 zZ)@tp<;aATf2sXwHikR7{?x_0p~8)IRO$(v$lv=hmIZuJgn`=z9vbL)23R=Pf9_2EiX>B{6qJ z0Bt2OVEk1HKA3GVj70RyoanX;AMe%2Ymh~75{X?L-9MQ7ZEyU)z2@Vyy-|DkZ!=&L{+V76(H_JM(0z?oPU!tn5oT%D#$|G-PmVu?lV8=qnda0 znL`K7VT0PgJP@Q2zzd|rF@xr{fr`Gx7wlZdDRfmkUQ4ZRA}idc-K5}PSq#pZ*))MT z+bz0vDEDBWeYnp&q%S_vXI2cFm4oc<>4OkeG?vLC5yhl`)S#27QyQHCJ}I=p$ZWUi zC#{O(y(ly~WA~T?#pto&++X_LtNrE`HTt!F^W6b+ z&46Y9odI+8fW2k_Lzrs^Xz=9&ttm(tf55)90mzt!b>D2w1fG$j*be%%ux2(BGzF<3 zYHFfEM30WJMv*O~G?F2ril3${$ayKf zwH6gbO>{*!jR|?S9#_zNq?s^=8N$yJ9|n)Ys(RjP*C`|{#48sP#XB8~enBC?)Puw3 z>EVEDBoim)<^TdUb8H`LZ!<*xNgRNW=2B)qKcaHfv{x4(k zYh&f@;#UK^VvU)$TJm%v8yBLV&dfbN>Yf@kPmWTNr$_BMW9Hm3!~X0sbJm#U9BXHGou`hq z7T%E!GcJH0hWNs6A^cto<}!H8U{2Uqw9itrh5EaQVPmcO29)Ml^vjvFLB#aqW0NSu zVe{MJj4~WHYlkWM;bEYIxfux#^}n+_d~d1m;xA?jBjuS>8dIhe7-e1wiDu`~~p zjWbYd-hEJoilRvneOx}Dq5=n_+&Zl)_GOim4j&mQmD1QCg;0D2*+rwR5QRP?dVW4r zg0}&t!)KbKXM*oY3Joub);w;~XlXE}p&v?hLQWbwMb>dkx+te6$qO+FoMuY`T~TEg_y{uyBp0Zi;rbl(C(6=D z(Fquf7?yw>fgj-_eKNy-dp`0L`@~#x^?Y*`0p5B0yYt-v z`&`&JCSA|6Ch-hwB>}OXUr7GopDZx9E-*JV%}q@TRUiMP=9~I4=#SlEjn4cB> zx}trs=zm#E2(Cjl)EUnd{i{X$$D(Deqi~B-Or2u7e)J%qW@_T#TBFE zr?&>^MDZ^`cn6I3ToS!-Ip=+TXI6lHYghT`)6El+#f|-TuQH) zXRn(VU(`c40Ym2E9&?$_t+}AbtRhaMS=nRG(edmabB2z@B>xAWJiRBrO)UDIoHgy!3Lep7G!jR8=` z@&Tix?rk_fX#gMdTRQCR9p<(U*kxoiYfJu#l6|D)A1&n*|6LhSK>ps3GnGuKqXFtQDODZNv7HoGB z;Y_21c7h@hK%R&bNi08pbWw`?q+`h+oO!Q&i|0c`RYFMy2?V10f{g4z>{{*6HR-G_ zQ+vXbG%)B;_bEPRh{>IF;V>)VJy&E*ubhb!zbU6ga>M72cp4!AxZ&I#WI@rzPeZ#olD$KoUrPtFT115jTVuVdKg_?Ar4_ z`e{A^3hWE9`7M$s)ND~82jr7vB|TABAS6)LW`t^~YJ3Z2T3}ZL&JGw;Saa$&En0_( zqJ1d-Kll*b4lhh8M_F^UczP|aS&byD9idhr?-|&es}n?^0-xId-3>iDsaK-P=A>_- zK0;O4BH=gHg@hGSFbsaF(w|266%#_12F}$S)1Sb<9@pRczDOW6;`)Ay%Rg7cx=iQD zD~X{_RC_CnU!=`j`^YJ-p^jR2~uY%)`)vm1VMQ8zS4VF zCB-i6B@u3*b-EF$8?f|~_Wa%L<=OFQXr;A7v{D<6ybu!vo`yhCoC@(Pw77SIuXFR)ILS!tsC zy77FF(di<$P`zt80w8iXCPWg%+alRJBwH|=i$HIGD4G}XumK3A;|N#;^vc!iiso2) zh8czWOcAEAlSc?6lkek7=GYR3&GRXBTt#!9a@A(Tfri;ZGgWgNTwe!sSEY9Jrl_PrOUam$0ap zpevO~YM=lrM+H6rhe!Oea=S`5BJ{5AAs~@@2V)y)=c~}EIHIC<;$ORZS2|Y}$E!uC zP>hnw9g#2cx-=Q)mLBAA_J=(kSuwKPp%@G`RE&rMVKA6)71bRWop=e79c(0(M?J@A zS1M&v`KdlFne>x=sPi_6rR{I}9QW?%E&r~MB2}8qGa0HOS;T3IZJt$_k3sQ)EjcOU zdBzu~wZ5pnZGEv2zF5n?*pgna4_}-RVA~`6^~H6)*>q*8lB0pYVEJQircemlba zZ&TEOGB^{xBolr^4TI4aq5!BtNneC-O6l%}d>)vK*SHU?c4m!pllHrW^S#45APrxww#r$+I})$-*-x>Of72At9xa|RYF3V# zBS+1$QF`ma5wnwB%y#Bz9PW7TU~$tXqu~77VXtdbB&JIHqG@qUe}23-+g$}z5V6j& zovkrt{8vmEK50M2l@ZcwTsdN|81dJPnD36*2j-eH=9R+%vH|thu%IWh%H&P<*BGIbG-l(LrFw1RBZPSc9PQLiZ@_7a+nlm_ zxqV>&9(Y$e#w2j6l5qu!%8}r87WEQu8n$>&f-R+r<8urBmOQsmB&0UC^@b9* z^4oKV)HN<_-8*`PH{GGJ*zV*t#pzuBz(TZnSGSAVxv-br)9+>Ww0lpwvya2sdh9(s zW&C^1dw}ux+7G5=C~_aD{mWaKxvxyb06+opamFhv-Yg>VXFpNrz{&JH|=j7 z$I(m6RG-gl*~^ZkybiyMkW2Y!r7e8UuERb96RA3b)-uj%ZN(Z6Po9^E;9LT5`^vRuaStc#!XV?kZvPt|Hj zhe&=;^`UKREI61FW2cD8KhbZBkQ>kp!7g0(EA{AWBo|cX30?ttVhkg76iLKH2>9*R zdb7?SZ`b1NH;(VeN`)SkG(=o3L;%SC>#;qZ)WNc;F(yP#P(~UoSruM4JV*X)M@}k| zx`;S|^J9rVi&4vPLs8DU$ z+ab8dCinQR+`-aiGL@O&LF@V=+xDfn<=DY^=w8(EB^kZ@dV#wLr(SE5=1YfNqp-Sn=rSSBIY-QYWKW*DNp@8t06`axA^M;sQuKdV?D;ll_<~5i zs$R#C43bGw6RmQ*8RWmAPMmo+m}~(HCyc^-1zq2?go-$}A>ClyP?XI_#lirUvgcS; z!)RcPDwW*;C4{jJ&nBHASwu$3-65_~aVDAwbV~TalQ@(*LrzA~hwPR_|JjZBL%RVn zfp(_W7zTVf_eDbpJ6Kcup`Z~smf&!7)}Kvu9!ekpi*5qY;rOgQ*Cyv!yAtBbU8EXP zZ!y0jaWuT~#g^-&j>xW_s@Q;BU&)5Ai=I#@$M8mW?{sU>9yVvlbrUkCxmBVTrfDWp+YONO;Ctu`M#4#LQ<97z1A- zk5Kl>lmmHzM6uchtF2i>MiK32g#E0re=!U0KP~+D`+FarDawJ%-{hksu+7408zdnU z6O57D;K!>F;{%BPU~HKMFvAiTgmc6N$y?06c)aiH4vN8O%g zue`3zAe5F&llMV++kw>@rkW;kg@$>I45-*yaWLWxGwl)|98*DN`ev;Nq08Y<-_(P_IRXfz}6dY zojxzcq9Twj0Cl|L!k~7C5y|}P-WSHDIuZ}J;Z(VGU|E>^U@Gho)6Js$z_$2~S@SIu zUkXTz3cya9Nr*lJ&9+8;C z6SFKaM-qxC@qdc_%Q1`D;np01t`L)0D0mEb@Wu5%Lqcj1p&{SPZRMM-EyVl^I!BZQW@10=7GiF3pJ1R!_{-~_c1P%50u zPLi4y@lFiFUy0c;D*?i}F(h;DbY<=pyCP>+=F$~8B7W^$Y8G#{(S2!duY^1)h~E}( z^4&eLfwzS{&5gL>irMjNLUC#&VY)4jH)Yw_gOFiWp%Ad%#c}O_BzL#}V=U4`uJIej zmU*ZN#iYPl8AG%}*UiTM!1$Zt4c!lEh!(u!-2^r>g*p>}w*D7xNS@$^8y7MyRzSvv zmS!vff#MG3t_7JSOd}4y3O!9DbZv2?39Lm zuPt}-HLZTj=t?=k5jcV-fMH1rby!#kAXr_p55;=IkG03Mp*p0#UwolKUjA)G!1YhK z=*~P+W1F(Z+PSpsa%2A=r&4iio5>}@Q`!%6yg-qjIbLjtipTM6V?V+z9601_c8V@7 zH+Ged-!Vw+xTjY?65~{MvRqo+WyXNi3<?FeN@T)AuvH_`azR zkOLNw`dY%>>^c8_9{RGXu(3k!P(YU!ZF2P(UH$h>%9~P=-Fe_^n>_H743G%KO}%c> zq=2Ql!T41;z-ul)!id9|nsKHP;2ulKL!bsU!G!8X_SOiq)>YHCq#m~w>V@`%KuCp# zs1w<<<|^f~0gi~{oyULtu1^%Voaz8IjOM4P@Y5D1KpB&E%a32Zitk541 zB`g+&eq?ha3EHv3Z~<*f76s~khY%SuO~}PcUxOIp0ce6Y2s{+z);v^bA7p-4>^;ge z`-rj}-vhoV$_bN}^2Fl>a~OOT>(#>~onQ_C(P6d<&u3H^scKjfP&07_D`O}~MmEA6 zbr59{S{aE>+uiQ!Cv_hSIlVK$GTDZF_GN+K%$yg217^Bif)ezT_F#9CDWAZ+Z=pHi7LhlqY4AwaiHt2s6{tF4{6fn z6@?;PP#wrqZG|z1`7V%GV}ODeGFf$LQ(wm3WNixN!;WNX$Wh6yi-)-AW}EvW4f=Py zG(H)BiqUn&n37a*8%@ed*=t#z+HsyHq@eIwfv5=m!)C^#{d%I2{^4gnHDPp4oV%u=ZW;+%!MZ8(BpC~iLSwqiawX6 zWY$~Iff@qQByn`JCciU>+UgP1zir|f#gpU#K2Q7kJd>k{T8m`m(qfTCisf}p{1H5v z*2Hc#YA#~18rzfaM}kpiYm4rKwlsgTW@uUk-l|Zl+4vQcp!K9h@z-r~wk<9UP*36X zp8|DCL4q_cENTllr;;-l6w9cV`d68F&x@x`}J>c^9TCfmZK#={QuDAOI4J9FJ5JVg&EYKgF z>603wA@K>cNRgO908D&b_<^OIf;x2}k%45UUxwhe`!$fVQ^u$@=kId%D)~TxahcHx zD!ATqvn4{bViMP6_JgrtM z5~v~sLTtC!G|IngfZTY3-eubGQLz}1A=H|l<6OW;MW~?dhZ-jUv0}b$EISKm7Ys<< zA#pT^cY82bb2zVN1qbX6z<}kEPk_{xnrk-t{p9++9C~1l?P?Nu*SS4;N`rc4fuVd#mZMD zqaFc0RxFizF`swc+0Y`_o~Q;oM5csGNIE55ibBUR#1KO)w4s8D9fV&IL8wZuF*}FP zq^pIh-xGZ*m26S+0GJBqt7J4bpXMg&tRU0`4+(jFLe1%Y>H27Sg@9dcS=?~z-WGjc z&J%0QJ`=^W#&m}BLfB&l#|Im=T3a%BK(q|@CJPV(Mw(M&f>37+Um&$2nFDhJ+j(V{VcoBL~UfN*MKQX%mGx2oIv=FG3SO% zz1-%|S1mXB{mf=%WnTOU+A{%G7%}xB*Q5#n)(NzNp*2`6sO*hYNK4&;>mj_9T@y&H zh1R@1`X*h-ynKIX$6@j@5Q+kug05M!&~SNlT@Ct7Xj=$OrERC? z6~7a%AZ5q%wa|#SN2lBTXsg0Qm57AJx0lr2D@}QYG}Xxp7V`_sNr_%n*o+Aa1c@~O z*CG@*QKficof%te%sR7Y*r#iGZ5%1frQj0)A4rzgj3Y4*;V5yR!)X!o1DRGbFhU?~ z84h9MQ)#Z!)Yd)y0+#d(W30{=De+ICZNsz{fbS#tPy%0p*?C4vSo>A#6?D2%6MLku z;|rquBqE{m%7skSEATy(JrX#wb!5XeniW^T$~0Kz+g;Whv()<6?F({a8BgoEHhECC zgHslv7Ai#-`1CZy8O**jojsY<)LCN)nZvc#p6~v|xx0l~Ml`Ds&{HXb@7rV>XumYx zjTP@fhifDXW;Ol8v<*-#!^%o)PmEmt;qz4HK2BP8e+~dV7fG+;+#>oa^Di03)F4_^ z=#0Day{<3jm_|F&`|BFX~aKixWN`W993C?A!9A1m$bxVg+bYh z0h~sQioKZTb`_!nDJ(%_a8)C{u@Ta5slF|N2IdohWS|>4c&W*$z0wj34F((cG6we_ zm0@!M%~?vcC8k9~j>oQbOdvmvw+$JPE<3E1gvb@qN) zXG1QNq+<&>WV#%1*iNfrptZNs*%%gD-GdrX9?v!mji&sTlx6DuEYkPH^WbuV2ea^W zgCeH6Qt4YBuI)_kS9yD$_vd(fuJEgzdg}Y$-{S49-v7Yco4x<8ch`h6(i?U6D(}DN?e)5Dukrp8?=RKexr_vT6mTqdw)n$Zu$upC)xK8sf2jHwtAv=Gh*YKT!aq#u$F?c` z$ODoz?jvkLmEBA~R}pNd_8j3@ru1Aby1o(WcmfHQ>|u3(Ox+$^_ea+4vbukz<_Pka z)$u6Zf0f$T?GbeX@Da+-|FPy@s%3Q)%m?q!0;Z*1BhjPG)gV0pp%z6ZH4tKof(xcS z@|hlGb8InIU|pY$USKUNBX*D$qzL~->(CT~b#Y@v+Ft%%TUV^H#*d;;C+=feW}Y5Q;X3qoK-AW&); z+IpJxC&}U8FSqt&>(8|w<%tm2XZ@F2OhF$NnSgnPqoe4sCST-M{MB^zKx31NwM8pgfr2Z? zr>Vrp{ip3`NND*fzrSD7s)UwsVY$Yn3bc%@YQ7Uzm-~$=Q_SPJ1C-BzLK`S;^1*s^ zt^!yS6+-~_nDx(COHkt{Eq1&9A?qI&fDy_(d=j2$18~X6k2V)rBDky7X(KkoKA#UR zH8aT^IIt;{w@2$l8>&aI5Hi2e`zyS?QfS;>>ir7uS3(bk{w}uq8j5B(Jw(H~l}hn4(ai}tmm z|3lHg2r0;<%|>o=4{GEBT2OPiziA)VqE{;$n(^N%{O*$f?~=X0>U{-C<&CW)n1^!oQ7G^3mP( z^p;wfp?B2m>Y81H`CWK3?t9D0k3X(>?rK%^vmWuoCR0aB2=6 zRfic*H#eUyeO~el@jB%s|1VPUL0VClAYP$T$+wH?bwz)zEX0dj1@=BLV2FKV`))lb zK6n;H#4r}FO$jj%0&|Ny11Ycu=9JI2yA*vEafPHltiUWa#ntdY2yI|ecmp@yaJ6f- zp6!9{cLSs{?`HDK$c4P!#6p3dKn2LV)AjBe=whOrYJRI+3UV?OUTNmY_kUp1WvdxI z+KJ>Zn?fy9L&MQ z(Y<2KYt&QM@RDfRc#8;bhcXeKA(hw zBZmksU>$9JNYdPoHqfCAyb?VU-yF2FiZfaAsRe=r^?FCK-%W&Bsq?wn*|NA8QZ-;r zVxeKLp`?tI8LzX8)>^a9?hy7L40}=sB07D7tdfes#DkQrKhO)ZF{3S?O7h7o1vh<5^lYs$F|isw>W#aodOPVXnr$Ns_xNcj%m8Uxp8bIwDW>q_X*ZLdqln3UpxI&pl#cmPkqBk~_Ws zp?ZSJ75C5^$mgUvs}YNeA)uCgmEQ_7|Axn3c>6QGuV*esq-zN_N$W{yV(UW=J6b_W z1wihaSw>8pzSm{FnBg^tf_!KG%>b z@EbEQw%#}S{oyJ1$xq4e;wIMyH~Bq%%5UH7+2nWsl;0{dp)QrC>nOGA6^FWStY_RT zbPRE?ldaS&ZSsD1_^mR0vu%@mwKw@aFzMZ{4d-#QzR7!2+Y|%;llw7l4sG&#)BBtL z&iXy8bLWQd`exsx^U2q%ZUrCf}br26408QER3fzLjfcZJ#JV*Q|E*Ha8t7 z-_e-zPTVnT(r>>>8J;rQ8L#}ClmqV_o=cmh==wswFPR?i9Peg!wfn{I0F`bJ#`>ze z%z~w5uR>BY3~_^XW)EZo#?r zd^683GlXu4FMIQ+eLoheC%pM{_6GV6=+*tCqH)_bFYVi@4iC*jnwah+kNZD2Q03yZ%3Q=N)HRRptA;_TJ~5n?v1-UAeldI?zpQa%#ySpunIADov1a z#++u*QD_wT5(ES!L$`_`f{Gawr3Fz$Oc+K-#(v-5KDUY@&b-h2>vi=B z_k?|RSbOc27q%`r!h6mfpXt|o5UiGoU~sb;2100a%3m_~Wi!6` zg0GM-Ae6sq?#>ux`vo7n#gaG1lCfHK;JNoA7ry*|(J99RlUMyOp8F5X|4}=o7yK`t z6)~A!^1pcSL^JtAr`hWN#lvSPu7By0tofIKH`k6Y++(|jUs>y*=YQrBXP3>4nVu`Y z7mM&8TDUv$kHc4jq=cw2l>kfrq3rLMn$>l`>VF2BZ=3y)gjuTGp|5N1Y);q+o%o`^U-OLn zR2o_Uv&K2^B!2u^zXzZ3J9wDiInM`A$h5QPH>7@qMoN=<%4{Lt2}XWeW555LFeyvqkV zb!R? z34SM9W@d#1d?8DAt+(? zO}nWe2QNI9OPDMok!cEAlpg?=$N8oYZN+^Dx(PwFiA`v>_;DO69sUw^%GuP(qZnfd z{c_82n_4ECJ!>=R5DEdi#MLLCup|{M1~z4r!VDxDkU1DxgCX3Z-7=~pkFa=cq3*i{ z)UJ^Yf&lb@FvZ6ti9#0B;|B3;9b~=_Cx>9v!y^cg$Tbxky=`oBO>I7%bVkyrp~2$& zB&>xkA+51;r{sp!dAagJSgLPGtf6NUH-RNksfZ?BMH_}>x7U$^Aku(o=!wTD1to)7 zs3{V#M1q5wveY&ZxRv!$OP^mbMt617Z zS&MU1d>K<*pa|)cFlvkLV?cAg^)BkQ%1PA?Wm{P}Ebh07`&Y&N4spMI+*jg$@3>z& z=gKSN`2lgCzjbsxzr{9`k-NMPuo!0RWgG9D4{)4jTfjEdIoG|zNnPAzt8%^z+Z3DL zo#-6rbFV9IZi_LFZMJ#bQ+ay7zjME*^ZfQ4OKduNwthC<+mvl7+X&kfJb#O$Usl^< zDe@Nbu=OOJ->RRkFXoy<#^NQi?p)iF6t^W3X$7W!28T{P$L!XG7<>bXgMn<)3(7ZQiSJO|!TpT@{)q1X~r7 zbG)7FL)_QMXnn4)V!aL!VwnTTgA}?PvID!r+gH5(1&>%5Xm3|z-3Zf+rE?46!AT9w zz5Ch9aPnn)g*(rfgPW&2GjEYB7f-=T?zs>3+sXN3oAI#|Ui^_Q$qxevpPT(CtdF?ZKfL%;__x4D#PZ0b_&nd8E$=3tl${y>KJdJKGW+D` zc@h@tj2D0EqNl%1CfyhNGExytwE6C(FaF$zRpQoRC-~cdFa-xu7C11b@GAmf^1a}% zHYp}p;tf*eU;(D)(5PRx?6jFN9%OT-#+|Zy@XWli6bTm8$!?jO>X9@#3R7 zZr`dJk3x5pKIWeVJDsw74dXVT&iT)Jf4)yuxeH#rSkf$e+ZX`Yf;}>5`-rl@04j^; zfaYw~FJ*n_nNPgfGZ%<(=(iNb=KZ$1ZrXUn;% zOD1_cVsG$;r=AA8`Gf%3oC`gX#Lej@#%)+@_+>IFZM@(G5Mq0XbTP-sZ5ebHi* z_j@}?BkLZ))%it=R(4N(`Y@e%@#h#R8Ny0$Mf#Xo;F>`ov%LX;UDst_^|pt9mpc|f zJ&cZ_8pUtDNPTVdWHYLU0UMlktZmpirMPr&db{Ril~{}-9U zUZdyxgq0QJ@+_z*5>G1Tr8^g~a5$y?%oqNFIa>J0vo4-oEb#$c+kYO4j|8{Y+=VGt zJC~&Hc6n!dr0JJG>y^(I3ENoolbCyxD#s<&aC%!fmoB^uZKds=9LkR#fDL(fS5{P} z3-{-?{Y6#}e`}*o{cGF(c+QiEk)1uplhyrLZT{Fr2UG>L;kTUD?rz)tZQMmTeqFJQ zE}HXZ{Khq1**9Wp`fsW1Z?=;!%y}Y~eS23nzxrq>f2*GN2#?W)xKUS#Qn0ErafdI> zxh3zSQ!DNi;^I}j9!Xci%?{n_OSjd_rI|iW6klUi#XsXQ?}lzBeuqn|YdfRG+pCl) z@05z0TiV!lS?P;i!M`xp@yx`VyFB8HE`K5e?N>o4V`P?A&}Rlbtzm68(CeTNF+^KO zI($>=v{Jc~A`)8Z!{3k`IQwejg|SfzHd@!Pzd8397_N-@GLgBidVvLObGU{@?yElA zY>v$09Z=M`^`_$-aZ*Z2oExS&F5pP?fpnVVILE^~zgKvsUOF%Cq3vhS_vik<^4y6` z_OOr>lE%g3<@6tt+?Qd}gNt}P$BCJ9W^ELXOmf_g7nJTynbUUowakzOsPaF!FhHiUzTqn152(gLk=#FyxWq3pGfM;8IN$FUm1r@g+TuUV^ z#<8N3z7#&QQe27}I7sTk8zZiU4t7_5SKJ8NS#d5>T5rpipU)p`!I|s4>Ne&n;%Bhc z+=9)fm$kQe)!^_@btAeIXz>^0w)sAIBysrU&ffPuh7x0!Y%alueR{sb;g$>K12Ovw5wy*oXdNUqS}!cx9kA);Sw)PFg!_xQS?h zH0~$-IBZz{)YRY-meED<;E{yGOK<5cQ?bp=wPeeQox~^e$o7rp1SDefyUpB9Uy|wf z^7_unJ~P*nJ%?YeFJKjiz0$;frB}pXLgTa;n;AcLQ0Wk!7IWUfq@w~3QpVgp+$;Sd z)r0l4nD4rcTHkB)k{~AIo0Er?R`AxV>=oz><7i|@h9edpEyqQ7lpXDl3P-0$f&OA| z+tKc*-CfmMT8#!NK?9z_=29_rc;a;~`D3Dx09mAR#I947;ijV_r-R;_Y)X~+8Pq$pD; z6c&fq$R~8HBO(On*ow$s*Ti4%qFth$*Dk~K?T$X2`ha7+Dqal{^J=XEK{U4WZ>hf8 zM$&gfx5<+Z2jPg3D%^+uMmhO)Wr$^F%!U20Un#pA=QP>8 zVbX#WqI_0On%QWLf=MGCXqYp8tcGz)yzj2Bxof$O!VU*b*4d~|1ZDrJ8h)eZh}DV; z!|-@DJW50x9AS79>COSs+}S%+WzojDhAd+p2`V(fgIkYGgS?@(6bD#(!VfZWr#Lp) zmeAkpYpDi+jd-3YpToqagV|7>t-o+w5f4fQc=vV5bP$wO(yDJ~y`?l6%&;$~ z16v)5$1A~c3~M~0us5`^+-%fVP ziFk1$&PkJI)=rV0yU}RQRT zjP{P%XuEJ<#qL3$li-t-;G6h4pRvZ3zvT(TjH)44fc-gUJGfm)+4^#z1k+5uhr1V8 zP7d4}1ybc!tT0be88gZqF8sV=4>13Mq0a3NVmanMs*nAE=Xba~g8!WT<+Bjv>}1^Y_L z-+?3#uh%jpnMdb zeu9pIkTkFiCDVo~q69*-^}D|M@B0Xb)`+0(@ut#4G6)xNW2UAI>eVn$pj-?uFBFz> zGX|)wW5U_P)>iX|+FAE_VHJ6oVHnfWDgD`LWT!(>0R@uek$Ifkn6jCYc{4`H>CupN zb{6KldAMJL8OGzJSTr*c@PzB5{)2_{2BK{s^{uS#udnH+zNLt2AZI%Djra!Z3qCL} ziwK99D?*@k;MQS}*e4srd6R`ZsUwLj@`*fl7UOcXqxB>A&}P? ztXv_cxokz(+fRTzEWFc)Fua}jCo7x`D#Mb(Y;Pe8%^ltqR@4*{IN*a95h>?kH`^1( z!F+;oT|T_5yw7 zEnXpU(8v10;JtPj6kwYQe!M^IiBDSI+B;Z=h@BesZJ#vvGK%I-8cs9}ATgjV$$=f2 zKpn!5Wb|_8DQ#RWR!Dcp=jb^irwBBb_rx_kEeusrHA)nfH0y;MDH!E7@ypDwu+430 zvK^vzExc;|5Z`u^>J#=|-&7iHhLLa(6bs71$9bq(xQ{Y08Q~i%^JG{1Xh}}-038~c z{nXKghmA#nMUy_iOCLMNj!52G#_~|XXR3?g+W<4A1~NSTrVu zAu=;w0S1BEf<_h~z{ardW()nxWV;El0l1(M>&&HX89@r%4kX1D#+tq^8`;6I+MgG# z^EZq8#^6Ai*c;vJST0^` z?3vXY17=Wsa#92}Fs4k;YU--r3-0@Lq%=cPm4!{gay^)H(LP@SKVVf&cHykNWw}%y zEiWza6b_1T!T|8CkJ8a1W&} z(2_&YxDUf#;+@GXaO1@ZjU>?;F?98Wn)9P&7#l*}G4!;E1I*GmADJ^HtL@=`1lK)`IdX@Z$C68P7E7SXb6GcFWQ8FRP zzGbmoJw-jgir;iBx1ZSrU(Xl5{LC-hrZ3$7^cSevo%#Zyw?Hu8ir>S#?mo-Tr++|C z-hD@W4~y^i;b`}6;*O*W{9g>;W4K2cEiJ2BH5KquT1HlF&I!LtE968@JX|VU$4C(O zcgQbQ6knN$E~ZncxwNkA2yE~T3^&8f>xfmEJ?q0R56RAapSbUi`~JAE#r^Bz{;0Um z?;aM<_jm|LlcD=V;Ti&IFhUrVCwTn1e~Z2Jt^{MYYiEF5!ldTUPktxR}qZqU&@DO@1qI3 zxSeU#+h^Z;b`wsqyZR(B^#E^Oe z-ayP9PS0*3iCpUbrN~-b`hFf%&{n3ATtJw}teL<sj&E7Aje3e}s*3xov~^@PWVd|_$iTzNI~Y&M{)G#sNH z&OexW@E&~z3yA}TaD(E!?TsLj@A`#zM}`YfHZpNi)naC0ub-{OyK&i?2*xAV8( z60e+Y83LguS|QMi*hj-)KjuU_r^E%~(@UASfT8a!Qo^>!D&lwZBo`MdIK zcR+~d*EsuDe(hf8zm;FRmw21`weLCq!~EKPT2*^|g`k(;a_$MD0TVY;OR77|mDZSB zE$DooqahjiDz)8gSKEsw_J+@xofq%(lxQadM{$JeAw=J3whxpedIEow`&Dp~wk8<{)5{z|OSNU$Cg^=7qxNg@) z(ws+hFFV28lP+6Ubk*-GR-{ybU-Nd?v%g(*S1M~{7q&vfHU@iuaRtO=FM{ApQh=2zz?nQ-Zn=Iy)T#PY*p4>i%lk6!kvAg*VP2 z7WV)QD}MJHR7z^cT{f8Vv`Bvz#idL)k9? zTSgHFK2^G&;7TM@!D>mdw~#hfl-nr~MbOuYbVE$M&@49slCD5BO(gD}Xqs4SVg+MF z(DeP~K3r}wRFZdu8`x7uO(Xg$F{PxT8}t+U7J-UJ{dDJSz9YVHYhi6c4}zTxzmH*Z z92&xKJ(n(8LT=^fzxWB~W;jp;hHty?j-;De5 z)d|IK-B<75lADE0YEdfiSB0kaFNtV11 zg37<&+{qGFuQGp%xl=7UK`-K!=RS?;oI=lPUDrhMyW^*$FGI8e?Yr}>UM7mGU!K;l zNE_485Zy+Q&zsHeHg~Vg(pq+lDZ?Rx8-s>Mvg^XuZX4DQ3~;_osimK!^`EA!T>Snf zni<)~;OYFUwElS7;IDPi?3l&TtGy-4S%7L@&LvME{r>x3F zpO$`;)qk521hhfI-&}C*-CneC8}Qpcam@R2EQbUOdD8?g!CNCVOx%1KTS|oXB&6U8 z5)QG_gHtoVEqv4%>8n=my7h)#Y~`+p#C>nv*EZ}zAMe7*BIGNFMzQG|Z!WAXiRO;7 z7p5l+eLqf7jrJ!}yFN{8_Kl)l?80S843IvPZ720tq?k05LS1gMFzjhxt3DWq2U<$R zuShL07l0m-x_(JA1tkH>Pgw`>n8D zidi+XBS;J+3*Cy`P1RA;dKeLLPCD-<05~h-d|ZjPfeF|e$`=kqklDpEekK;zXlzP^ zS6->8#zcvU$sdp&^9AacDI_9Cv;*oP#D_HB(Snj&j&D8*->C6QJ3JTW!L`1%@OwVi z<{ijyhw7Gbk21Saa$bHP5^n6B_73~0`CTE((q>u*Yu2wdu7F(`#NDv_M}SqL5y|$p zo7*+cKp6J-A+X|&WJ}RD9#uOx=zN@^)8wV`+HR~qi|kfosd42~NFYa%v!8f3T}cW@ zt0$A(t(Mcy-|={(i^qblCR8I+u7WhJGE#XHf|Vv)vAjRmQWA~2%2u;)y-N-=NdJgd zOQauHfzGPDHGK=iIUoE1&_T!?i(^Cnw*}YVkXqVi+aGdGtCOBGhy2OX&na64Su&&& zq1hhqu_w)-kD)ue?3>O%M99MGr%Uc3bb$F^rkI5hKAsX00oU{01in%7&Mf>l!w>h6 zk}N3o_o22$O~)7EookRo(%6iZ$TJFzTW{8f&3t<5fPFG#zw7S6oa9b|-ym&^udhbs zaeqF8ko;s)vC#+>!>#ARJrE>$8UeQlS&v&(`T)Qyodpk@78F})oe<=0jr z^%$(qU&D`yznI-B8MY6sX|$O2CdF1j-+D#1FnvdCBffpq;H9Kb;z%10oAbp(;}`cM zlb4f$4$!&39b~WQDB=!I6lR~UdD`@<=%9!aq%w1_5(I;*!`ZOES@pd|eTmyE=ohYm z;C=^ph>-6HHxceMd{@CRfRzmvUJGTt7@nS$PfO014Sq}{Q|7KTw}nuO1b#nvVq0!r5xLr?g zq@R&K2m$t`c)?ORmJcx2AcHykD;cklqD0#Bm9{8HpOAq?omI3`aLnJzS^?NYECfSa zCk+g9t3()7WRmFwV#YKZV6DQcj%AfEl2Fy71_F;3h$g>{MB8fSL40KS9w4lg&F@Ue z+*cQ_&Ja6?tRBa^WWR0NZ<_42?04)TPH0uRIwBDc*ds#}?^m__CtDqzW-s5vTLyk8 zkFqDlBl56=*hkgi!Gw2LW6=~N#6$>1cTl^ zHbrf%9FCM>P6q@cqCZ~;pdF84X*hChCBfsRMSO?SNvZ^+Z#Q5z_x} zTHm4PdY-5CbozmOnI{IG)o_t}Gx+Ag7sNMHt9f@8-~0!tW!3ZHo9X}W@C{b%&x>!s zNB>{o8<8W$h;QQPdxwvxiMqc^^G`WCf8LnSxavx{jCu=NxP$?K>SBD0dp!8rZg{@m}gOLn%=swqjYh1m* z(bq17`W*v}uMD(v+%pO)CE!#Sx;sp~WWv%gg`Znv&DFA%LGZ;F^v$8-U>Dy!uy_Ef zX?hZt5PC;}%Ts+9J6zU#>bVcnRTlHTAqhfy9?WC@*Sbh3Uhjzvmn?@^<@7bwB_RzyNaTOaM6|8|po{$bHr;R&vUHp}Tw!nZ|SPo@|cs zInONr^6Z{3PX>g>UpIfgxnt}ozOcsZe99nk_j%^OZH{N&#OEn`N2u+(yCGIni85}; zKZQ&K(LfY1)`@>YcAs-CAe|+v2?KbZ1qy+bxYXQb<}T5q`#Jr3?k7I2mw}ZMwrtuT z4axq7Ilp!FJuJ_NdYq>tK4=L0t}uuhz-ATH07LRBPNySX>fPxgpjfizhXrmYyUW5P ztK-HHZ2Kzsyja9-k@2wl1hHT+cmJWSj(`%Bvw2We?$fw(<>~&as}s# zQiN$Dj_{e4wz(*(a6EWKVvzo1xG)K~vW-pj)cxxec8V8;P?VWKQf7!Xrwj!cQ)*&Q zgn6DPco&jqn4td@(nuPGg{4>9Dnwa4{itgcsu(4Z`slflVl8AE~9 zdMJ~xHm;@!6U#V|(-y=}=tEF)RMJg42+P|M{us>saK}Od_%Dhx zO&*%}U?zNgX9(me5A4T!$OeVmygZ!oCJ67@0qPy~;NG z^#LNS4HZ6{*I<`egO~U{W^1r_*x&6}T#!wqhf)Ws90zP}9mZ$su>9#d)Sj;n(C_%0 zrS5C@1rui)hr8KhhwiO2!y1(7dFs}omM05?pV=;B_$fvXuoAW?LJq*-h6af2+( z$ZCA9rCTdiJPnb6K6UTTjs-_iQU}No!($ZP!II=E)NpkMipqMIzz z?Pz_;kRQwt9fC9#t8m`k#2sZv*94z}U{!N~fstuN2Ni*I}kZJ*J^X=fj6a0LdxG~eP7SEK%RW8PVB+`7*K2uEB6w8+;brSqkO1+J0 zF4mVuT9lDTu@1!UN~6F>Ev8q^?M_b)k&dzg7gWt~^(*;bSt>a)@ z1~rp4Sr(*J=&nmsohIdM|H6-=H^PdWEiPi!BdbgILhutY3k%t6w2)2K6(UoAIv(l> z-OdzyPk1-`V~LT!MXRfF4fKuqYs}(4IsgBf&tVZ_+RfpEL?Velde%|4^Wa-)rDqq= zH@WTe1@vDT{|cRfXc7VIP!zDj1E7mL5;JvHl8JmJNef4AsztI`R{+yWyR$au!hBIq zfMPe+t;%F|iYzNym+s?f|+6jI;MmyB{ z!a@-2&e-{Lq@70fK}h1xf+&2fSq4>%;8HCvLNQ~_FWOh7zMWX~BP*@2hE%#$h0kGS z#(e{<8Z~v$`IuaFmtUUKA#MVXK3O8@t0UZFEdk9zrvx&3g$rf`pEzCu$qVWDj`*`1 zDrPA@*0c&R_V0?&ad3o=R9PxViY+*t0cfqPF>mj}FIXtuquxIuBK@3z_3=h1q|T$G zr1%4Ig(0XimI=&dGOaXxsgw9ot1`FOB0Dqw8 z3SrUT=HKq#mU6xk&QF!=l4NznxG>nMnD%SU-C|wq3>U05W)}fs#m`#(Zw}>D`6nP| zpbk^$2dwKyR{bv1Quabb=DgpfKeMi%8+vszvo;Qjs|_7Z?Z-J};MaucL4v61_@ zq49Ml`V{hoO$lJtOV+^7N+c1BOS`ah)Euni#3h49Pb8Zz)cELHfq}H%RokerqQCGx zC;zUo)@TN0JXDxY%V;7hu?BpjqdOGo&-c;}+Y!AI<$ZV@0*?Mj#`d6aQ?FwrS9nEt zpD%sO{);RgnJ-l z8@d@mQOCe7x@VzUC}lLvy(lH63-0B%s3~r7oZbBP9sH2HCCJHGSS=x5YQz!c@J3+} zO|N5f>_DI=jF7Wrf4X6f?G!OUWi@2zfkK)hwrRBVT}_0F_2x z_lk6hY!)L}!OEY`9pnl?UI*sI*HcIeN-GyW=MWwu_Aj4TFEhuFh(vzqp0)goqQShzyc!eW3kne#XfOvMrLZpR3^GTA~M6vu>w z;L>VvUUSo$@{+qSwTX_^LV!_%5E*h~*p?)+L{bi|v+2pnI4Fs23MWFtmIYD+1PDVd zOlxerIDn0~N6DEMmb|)fvPdFGP8v-@CxKWV3xtJ*#%Sb_fl%2DIhmX9r}>SN)t9oV z&OF#9R<}d-_0e;iVigt#pbWRMsi;1;1xnWS?#*%E`w(K*B`nt!w_tLiuXa_k1=9;l zopW2@7FG(kvMy!+72JQ~*fQDhe*p#3Woc3COw&#QuTU@CIi>^H4hWwt@(g_{^rRX$ zcvIM%xh*W|Nzo==eH;3e?Dp|od;_%{W-%P`15jabGNlIjjE7uRE}&WzgufPHp)Ify zNizv)(*S|6T$1E(nq(-GC3+(+=6n_swL(9ybjvoFt#ohQ00FS1CLOGFhOvQ)U>?|# z*+$n2c!Ig?iC~WeqDk1Vu`wsOP&X$gKdABr{}orOSbBKBNLCF@q1{WHd8 z3+crolqT;wX@>NbXh8KNI1Y##si-f0A>Bv8E(Dz_7@$04J5Qz)wkzVgL47&)V0Z3oAE&J*m9Dd5 zsYK{t)y?}FBn(>Q*u$Dr`M6cTgE4sfa2&avF(4Ejs7YGljl z{~c_{_zmR0Zfn0)X9{nUPgqQ3Wv7#`#pwN*Z;SXw^v&#|ftsqK2qjuv(qH(gG&QWT zR6ziTfRjpbqIJBf3b}ud_~;DG*Fj6|h?dTEg~tJeUxA!9u)?5L~$^QcJ>F2hXBUe6Xt$x9zU}j5RYLz z;Xm67N2W)-d4X3l?}dIrlOw?ukWME2&K4w?qBwq!F8qrXeyTt$ z8ibYor)ZH-r}X5gR`h?}<_p#8%hSvY zQ8x?LvasBa(}Zl0k=|09lvFUWCX1MF6r!xif`crJ9`BjoD85PJtyfKQJ4rc`Hr z!v}1Gw^Il0{eAAg+C&u7P|44Y;U@vLuq9nBoP*(nOV+t#*TTxV5#>J$@H?fV*dU0$ zw-g@3A`OTpYR0L-pAwqiLF8`tO!_m??1ymgq`zs*){TX=W8qUF{WPvX!Qy^?(LPQL zz0iG@qH&xN20soCiO9;!jEm;vV4L%&1jW(}7BI>jWDvWSI~K*3WZrZA5y?D?GNQaSOK-_PPY~}#4tqs(+V+EZJB2aTTHPGfq>fw#74Rj zzV%Nf+4;d;7~BQHUmWbBP`e`7<)Qq!NF-K16AaM|`_G1OeyC&|?flStF%sjtJj=ge?7CpL1ivoW+AvV`x9V5l?ZSamaXt_|jlLt5QtYoh=7jtpKp(MBx1V!9 zKR%PsM5#rXf_?57`nAt*jwM>3KS-X25f#EsY98d6r$#pu{QzBbj(R1WRfiE>DH3w@ zJI)d*MCYWFJzFn+4>3L>^^e&og)g$_yH?*<}d3S|{ktpmK=OrnQ#``((izGw-)LOZI<(Hwszq=AWirz9O1-mQIY@1-pg_rr7bWp z#1e<7`S%RtC32Eab#S9PASYh(?p8N5=^J6GB8s5Ol~5{IDB;Ewr3(AR{c3*H3t<#- z!r3fw)RU65f|SZ!x{f)WmE@qkoCj%(AfE)~8CYZE>f z@It?1iG6aZ{gdryf5mjm-DV|Rq15PM1S@M(<9Vbk0L7QmB$m+B6*pVn9jSdK_4lTB zPujO8C5cX^THs~k+zn}ZJ)Wj%#=b~RlIvB&^3ADzA@%HUif_mqP9ru0!^;>>Jqh8;OGwWM8VR+;m3i^5WUMnT!2%Q@vyYiN1xY>+;$j?rubB*n?GWm1t05j&^R3vAq)*EX@k~0)O_9LmV0ox; z`q5jhjQvjw$DvZp#MV?87LW|iL<%q3-`AI7`&^utMymmEVr~-@(M{hVNkCZw{%Ub$ z3u_TXg^EOSY`e?Mn$?YJ-m6HR7i4xJlhA(Awny5iHmYuMLI_E>$fl{i_AZ-Z9yII^ zsXr;R6SLN7nSCH*`Afb!?Cu>7_Y5Z=&eGE}_u*{nqnUjq>pnAcXJmsPM=S0>k_C<* z%lcMj!b32^B1iw9n=E%>xU1QJZi(;;<>YW)Q#%lr70t7yUvs9POi=J(L{s5bo zYf+p#0Td3JrVO)S>q{>^CyG^Sd(W8tF`Tg?Y$$_tgTiCal@lSQO=UyT)1d zgM5m)IJa5~F2ST?P-4F^z8rmN5fuGMTu>FipSa5`tQT70Z0x|ww@ihL%Mb@Xp4qQ(A0jbKe5v(BX1~rRew*2E zvU$H}5dlJfo%#5?`$^R3e#+(8*vH71i4$VPj3kc3U_9^RyvUlS*^sLl32&^~&~Vde zd)|n-KMoTtzRUoE&iV@&1;xD7C~yE}#de+;d&PZ-`y}p{ z#r;s+kH!5Kao=2xYW2YqoDPg)@%8o=d#m5kddkwe$Q6hW70ab9H1LG(+}~bm`v#dq zah--ZKU&lD#jy>z#0wJV1fDC2UnzT54$cX#2-bQD1rQsjBD0fi{7X>Bh>ieAeXF{V zH5*$2gnwuV`FErpVMqFZ29GQBW{$no;?-b+NVU5E5(U@M5?wo8myjckJbd?vrc z^b9N^iy@w`*iM}9jPHv};7U1PfTOcxeiD1uZEbtNwCyR`5kq{W|I>W`oN0Plshs-9 z=G${_+(=jZFPEOCb?+vGui~LbG)Bh3xZFsC0i4qx`SP+#N*xySWf1gaI_|^FG@xqX z=@P=sUt8FZ+Je&G4pEp@erOflZ=eef)3GYb>j6OdetAK&lkGI74 zLuu1kE+&0Eb1dgC<({~wCgm}c;<=)#XzkH^y0-<-4e@(`ZI}&`8|5UFb*Id0^pGB2 zrBZb_uPID6=VNTk;&oP8j;|{hJNKX6qFU(-1ivm-3ja_<+b7EQ>oPH!lMR3IwQcj+lM|DNf|9zhQLk?0K=Gk9$&Dn{A zcCrZ1QwHrc9X~i|r|bBU!Q`ZpBVYVUC1Zbu$T0TC{>>6O`@i&uKlZ!->JNYG_YYOl z^%eI}W$NLI{jAdaV8wo1@xQ3pqm@3+o27qu>j(T#2JGhp;gNyx=W_O!vioy+{>^>v z3spopN@O6nuUo5jPt|@`?pj$PCkcs8*oT!BpXnEgrv6s$eX8vLUiK$d2$5Yr6$>r* zsY()KVpmR8@|3SxsT)N|9(cut4OMmNDL}Q*X!?z6xUWh&1b1)M-&1XVr)uA>`tMZT zx2qQSoFfB~rQ{KvH`e!uANSkC{o!YD&j@jztS66>^WJ?>u^61s`(|Y+4B73NKiNn6 z-NkkLM%~@mAHLXcxAuoy`om|c*?Cp>ndL;Qv-e{ zckzI~V8AXL2$v3ot14;y8cgw(6+h(euJl}~_!DFZ!iha9My|rT3R=U1kvAZkbM)DOUrw@b=4!AQ1!WjbtcU3~XqlU!R}4cAot7pmnet9DV#Q^DspckB!B9rFf56=ahsBhUX+ENr-=<^IQZ% zgbV%1N$ZJt4kgAzGEt(SoF5*5soB~cfB>7Te9<$)0xqxI1ESksCmB zj6&7BMW~KW9q_KoQ`V0{l^c zH>!5bfBi^`jW6^+RAcX`O?dQxedEZ#taToj#TGYj1 zQHY@(dN=YLd$fq~;KG*8ZLnqB zu7ub-Y@6%=!-LH#F-?eG61ES^vz;AI?S2>c5=7;@+HSqO`aQsRd)i**J>6b`qhsSc zF68aR`h~%q&Z`&vAjT`Vwll}dEwtv_!ygbEbpY|P)9N2R}z)Hyu32!o0*>^+(1%VxHN7){3cX*xMJ?GicwWH#-qr*}D=<-o^jDMXS z)BU=!e??04&oDL5*^<}SLU_Z#o4elR-&}r^y|qWg_*>jt!&}O43~#VEw%_32?lBl@ zzs=t1-(l};zr(t4tZB&jV8xrLkjF?l4B+@dCxHWI7&Va#A~rD;9Gg-%Yr|t@ zc4o=cWM+n01C2|oukh&xbSX#-Ztce<|I?CvAL*cd52XxBJz~xxTKjGZ3t}F(`?)1X zK-!P6r`SWS@&p?|o{#hnqroWjv>5I-Lnall1iQ0==9=5^oM0jFADvIQBy<^(SJ@nN z5RF!Pxy`kVz!vjJZXcAgY_2$a^TPT@`hN0u)S)jLx!n4+y8Q&X{j&wv4f{~tK3Er% z+<$sKItr&FKsikT@NX2N)pZdD-y=9D0o25LuF;DZDPZ##SWWGEWltJKFr+V>jnXYh~qgG%xZ(M|VZFU}`a1Rs*_8Jh*2>$88vpsHbi zZn(!9_RCJ8?O!yol>BhhPHm!3-4hFlk11CFY1QNeQE(6=a*`?AC!4muX$K(mAvp+4 z<=-e6GRoHAbA=XjXQT%gHQS$6!Y8hBJio3N9%_cqNouS}R(TIG*~&9LbcV#`A5!x9 zOPrla`VL}NpqawJEA|p2il_r%xm3?-5?$snt_eev|bJ7MhntMeFPmNQnmyJmAs(dsUp4&`P5X6|erD1AtJyERLVTh8`=^ICoB5UclTBs7n^p4=W%kd_^e;{K=O(Lme7yI`X82o^(tVfxq3QqHwEt}OJ=LV< zL;|#Ig88K}LQn!#z{oJ$@_*FC{TP*D1uWwJ?)}+Ky1f!B(xk>wWQqW78{#>CrkX!y zt6&XOi2nelV-*aQej+;B5BjbBAnqZps7&FDbe<@xsw2+}tmJDsPn6LG7|E%qiFo~= zxt>O=+Jum6dIm|utU?LHQJ!BBukRxYs!-Sg70V9(a-Z((#-NFs&`Es>b`NQ{+p98I z-K`zfj7ZAC97{WhP=bm)YbSP*2!-DiMUMui>+8}BiMwyid)ED2fZkANKPc$l2(QrDJw^-4;OYrj0~iqxxmmHky{mU zTR?zZ?*k5{TuZDcc?O9Tq|uu2kxW`xZX#laqMWkn3R`okT-O!if3c9H@au$)Pu95C ztd@*zTs9$px*jrsY<*n(T}2l9pf7vem6{VT<0qyftuT%QqNGD(7T(m>}{L zOvogemA8&;XUug+pHn70IWvag*iene5H#Q+YMiEf*`As}b}tq3|LIAjfqhYYiMVj^e{zmPtP%EDZ} zM;#O?8&x@&;uD#lpobjt9h?b~t}&UU5K8~s2x?07ZS7UciOx=PF5h>@_cCnbvCkux zBX)Y(3_&6zC5vAJS6}qcaBqq^)n48!o_nNk$v9TmCoW`70Rx4cAc}hcPI>F1F{SiYJ}TS>Vm}s zV~`&QHQ@?{opEO8i3LrdNIr{QtHleo=i27UxAb{ z>mra~>cv+!@d?G*0hb3DbL|~TI0zn}G0)Pr_g?<@SKNAuwR(`fx^s%rGE;Zn!10xaRXZE$iac?YqG~kv2R-!;P zNxd7<0BDFa-rc7T^Htv6?NQpf-i692uFS}2v#@pSPfvdMDA#44y0&@{V+yyF6egtR zpm{9)6pOGFWq2a%nC08Y&gAPIi|UyFNngk5Al71W;R&p`td$#*VL^sz87)?Lp!Tz_ zk?_uXo^=fv34QHm$0k&>PdamHHFcC$Uq_h@g2;AZ)OoT9faP6>!V#OZ&N-RUXU|K- zHpBBYL(L7h)rQ*|IlNprP63hWwP@j|x8@aofrgd~>d1F_#RGqr`!_fWMM`oq+)^K} zGCRQtkilc2+S4&Q*n*A(hi`@ifGct*P$|`@W+&$upIvX;#tEN2#5_Fi<#=O|soBX! zjz{qc6;ni~%cz*Ds1+PCme;Hg=;#BZCAoS(iO$f=moOCQ2=M=>xS>w>3zjt;qqs)| ztT@^<5T9=-Qy_^AQ6#=F$t+mT=#}+Jp#zYrnz0pp5g(PRiU!MUq*E#&prCgHn0*{K z(z)8kVJ=P@!XsKG27fiA9-WS9s}*eW_@U&fyn{wMC3hmg?8rcHb2~I|G6^9Vn~jCh zv_O=SDjp9Q5ny9kc)c7VR@#^>fISw#>88;ULUg$lbj$;sM9~WIwT|>k1Ulv7b*WH- z82wWJJSbmMNS74OrnPpkw5Zv>(y_u3mXf{G-FQW1U@FKWsSq;`197}~xvs!pGR90O zYR0)HT@7!AhnurE#j+}nz<2i6F_#{ZzPhvEGKVNjf-)i^Yeg*-=3`I+pDW8K(jEcC zHAviGbJ|97RC?4SNyy*oRiwQlGs}o&-|z2 zZ{tX)8UT_0&xcF)iTI=_OdwAKrx?DVok+-Z6NwUN11{&fQ{WT&AX+cV=5CU(Xg>PI zMG)0&%n5^oVrS%ut@>6Qu40^{uBphNhix*}Hyy7RUI8WbClZn-_GDte5wjf4%n^f` z`%oKoa;)XY+jd4#dC{{tjUqFJ`eas&R zY(%DdIS4BgppZQ}O{y(pT9Hvx8)RG^;(p_}_i?{u&Ut=!eC7(xYE2Z!yT)v^k61|c zC2pg46jm}(nd-tMXJO)>d{`D9T7jn_cUp+zZbRT;eiDJd*_aLD;CY+5f3Rjl6H^~Z zz!AVq#KCIkKI<^am}XUQ)ky_VhM1cOJCj*(e$qF{0#?pFuwa>5ZMC++PEb zKZ#$6yoC-CDI>?mPeIO54wc~>NiPZ`LR0`1@1P&n+5EKvuq5vHiu=-9mfWuatU??F z-=jJBgFnMy&X;}6-eGaHHWHOpOs$Z2VdPG)#5QLaZd@#S<6k!~YM z;Z!FC-o)Bw#BIf58<(C8V5qp)779Djb9=Mwt#^G7Ied^p++UnqGz`lXDQp|HlUf*n zVA>@_L7%XpM!}ezj6c+_i=Zm^DR-=t$qGT)4GF5S6m4u6#{~LeFj*+H>zFpHN##NJ zoMp+UQ}?N~!h|{}_2;Hcsp7e5dQMtBR};;hi-OZu&pv+zR6myoFz`8l_TpJqd%q=@ zW&YC4R~qMKxY*`n<=w-Q4}(g!!qc#gf5QT%A`?Fh$-$=-77z)UY8NndqFoGiT>d(( zWX)hq@QdJHDJc$!7a?g(jsHXx;^_qMpdPwzr61nlAVTs;!Dr`m$weHh2pO3Z^W!|| zr@yPv<9Nl=#yhjtbI)XD%jG>M;T+GS0o>Xb}x z;s}rF4QCQV0w%b9+1lnz|K8rROPc-bL=sSsTj9a=4EO{>iaN6H_l9y!0wlE3MCt||#IAN> zifAem^2x!!d|Tqt=J;W+xI*S8I`W0bNnNYtGVJ@1{77~=&#wqn4+vq%SPO*fA!-Qb z%CA?0ZWTp`a6q;qgSvY{WZ}O$I>-%v)POy|@PKb&_S}!SB zPT67c?Mn+H72pv7#g%`QIowV48YQlmLJPdNn5xHgTq&g0*N`OJcSV1H580w~KcZ8y z(J}vH=kEjiA}9Q;?BPCBiRPwWlopo{j9JSn(L;{ zT9wD0;7hzG|D|{YhwC_28_kbPJI4lrpB0hfYuyep-NOs)^W%+AS32jn4A(xFbDQZ&Dh0t<;-6uPq5C#?ItzPTDM6Q}vK50m*w zee(I;sNfo#w_0RY9v?9g{dp&!@A}Jb`FOgZTT3jsR9R{SX%D*MQ%hKco~2;=&{8{N zsXf)QM_PX6Qafi*Cs&zFC%!-6uIr^Ufie3MvOIJUTS$WCE?jCCEM;ZY-==t1a0IJ; zy@kM*FaBeJ`|kzye=P7PE(GpX%>@yCSKI_W4)H_1X!Ukqd5^r z)31itS%V)$N1TV>m;jB6!k6I7gE==iOK9$P5Cl4A+D(J7`eu5Inu4Q_{L@OCFZhii zfy41x;RjHPVrgl3Bp%gq>Omcmii!M@RkwPlCwd|3rr-}D@i3}uAYELFv`5RRFJ3=J z(A}(XGOqFfhawnsCuq0gKZJ3BtHV@qE8%^ZKVcXAw3X8+0#*F3OiPbdT{=n z^M2}amvdhiFgu46@_pL7`{YkvB!TkQ1n0?t?4W$y8WI13WTDjBx+lfVD+>i^N4zMh zC&wjJZ22f?*RiELXC!{0%gKHWwFbha5(1ne@m<<*;L$xDK#A=lPG*<@%GRTFinK2N z_RzhxxSx0kzzfRB#&}0Qd|^D#d2;F(Cny4nD2#yv;>KsM$|i_V|eZ<%s+3i2uz< z?XeMNcH$oyaa{e?NOobvUC^+b8{viqIc72{O!hZuj%L`jJkEr;rjcCLK(tO^cv51t zSiY}rNPh=p`mA(g!*0mW{{;ljC3lgamU-BV{I3g3lUG4~bos?FJBd~SIXGPg&c^XZ zpq;A{lZ7bq__jg{h(5qs1UEYr8<^;twVR|B!8^JSnYP(LeFQ)nHCa!4EQBZgxMQo0 zC8HR~jAoN=zDY3SQij;5F@XN#7JM!aer9cySU#j?vc~u8rG-s z*-|zUp@OWMT{Ftsks_Vav$Dd2v$M476p1n7IKhl=z0fm(l ze1n;Cuu?F|<4D*h+%*!sUE8)B+sP-o?X}@GwgTGW;JEZ8)4V>`ou{ zA08$k*lEM|kzr&r=B{fSZ(i5-*S7tY@eRZq=^43X%cHS_9_r+GL#h-Oi4N+-ANjGw z03hvFm=9tfKq?~M4f!RUB6*!inNv-UEG`B=lSx>lz99BwXr>4cjC+I!;@t^$`$#Vc zAxnPqOcJb zpwWt$BCfcJ5aGHFzfeMuLR8aH&pli>vz7HdHq>lo{cUmornv8o`{B5MEX0F*f&KTn zfgKIY7+nKQ{~y-Q1U{2{mi22T|`#p0n zr#2DM7@391SKw@jdLKsJvugBt3H6#%XJ968pI)QRs!@n$`bImy9qqrWP;D_0Yi|eV zJ9TGEBugcdt@KkK6W5lzo|du^%pFPOpTL082%L?sE_!vxsxEIbbO>1RoaSq`&|tpm zt3^Iny@+$faA;9rAmM0gdWQJC5U-B&*-3B;he@bWNR|GMp_BhOwho3j(21Sk7v`!1 zJ@WR5Yz)`6PcSMap6B>BK3lBhL_3)&7AveL@a`gBqU$)5S=&FfkE5lHrnX2cz>U)vMmnYEap08r?rN>RTGUzcg}0@F9s)0)3*V7cd(KMNe;ZogzmBy6Vk9!t>)j zKlZMiKBwk~5n!Evy4GiC^QmwAs55r{Ce@>^jg0l%_Kl79f+ps1=d`AT!;yjE*JCl6p}DKw^&U|8y+-HV zM)h%{^HF09!vW=#H5Uw4lA*8$vvf?r?Zr)MS(9^4QyS5iPCVl4?d)w4Z`RvW*@S{c zp^N}2Q0;Bz{k>o?JE_Z-xP;kO9mSUQn7bgq*230J(?a}Oc;2QmdVOgym#4pB6rgC|Q76HMIXmVHM#y!*L9P7W*c zgLpjV1~pC7V|9}zFxs~`lXPd>ejSshrbOt#I#yo|8;e^A(++Yt4q%TM0(WEsG+oR$ z;8|wIQ?YtZ0(8ysXtKu)@hPMKBu4)TXLQhj_}q-6xtdnH#bpfdL?~{H90=TcRBYrf zm|5%%zoN%_V^ZVMVvUdR=NPM0jb&=uT)9+fz>W)7!aI z*>E(?*}*n;r(>)3rn7emEj!cQsa+2vf1)MnSKF_UC2_=DqbpbjAXtGDL0ZPqClp8Y zq^;Ij*plO{11+-%E9?uSiThggy)BXZTGYKQ@%virJ6obLv$bA0A#uK%q5k6t(Wyx> z2ozsnZP-bmEfEJ^JIT2RB*dl`(bdb5Z*e3Fcn|mcV|%WMss7l$=DMG`cA0C$TvuoV z$D8Y=wtZiP=~au?lnw^Q{gyBK*EPS-n;3df(z0s+QS7)ZGfzizMMTu@S<$haz1 z#RAu!X5EmW6dPn8i8A|0I__nhNZc1;P!VQHR{mUdrNMo!LBHJKywuQyQK(Kl%K?HS zyO9Mk@&2vBexSh_Xs{n;vqjXtIGVmFsxOYJw+WjZjJP9NkxJJuH@LSq=zAKRyBk`A z=v2EKW9@D9KI{`?r!Kj=B%wIlF^zC9H{6ZSa_smuuahV|*@ea4u<3D;u1v8rse! z{p9^f*u@C(aTuu6Ij`k3*MH?S^eM*D z8>5=7K95O=hojEzvHvK=$1x6!N4>0<K)`(YwDf*>uq*^Tp4e=BCfBDs}G@B;?tNnqWalOf!=^4b!k!R zoEr6bz4KVTT3hctS#O^cx0l76&WY<~arK&f_GS#DyZe)>INH9cUfovj+*%J8wT9tG zYz^6xv5tK%_4<$X&Z>In&-LtYv2Tty-4xe1$JJ@fIEh7ZcLw5)lXL2g275iMA1XR^ zQjY23(|UD!E_OzadOs;AOBUYogo$lKz4LxO@10NT+drsx-lcJ7@z@~m?Abo2TYtg1_7qkHumW@+zW-k?c0Q#KR6!#rD!r;}&AF|%(SlRH~iOsr#ueIYD?Y}MSH zUYNSXyqR6#a8gnV#GqqyIAJx0@`CJZ({K5bRok%edzdK(!qHaPJj!$v z{vJzwvRENco1Tpz?`)PCmV@?Tafga~kvtBSRq{R!`2%8$9IEmR6EhMloY-!IPO8z* zu*8cZ_i9PhrLwg_wlUL|=19!CY${O`G&JUtjWInc<|kv!o3Yv;-`JMysI5)f(T3Vg zLnb~xGrB32&m<;h#^6+7QfA!9iH#F#*i{mAHBN3xwGBG+Do06FvuL*W<+%4IGEop0ftJKWcjNmJcdvvDSbF>rY zG`+hXM01AzLpr4DVAjC<8)bCRnWg*&tT-9zBj`n9X|a0X=#m7|T|_=LJF=-pEJ_6x&g;AH`R~h%^V0sOGdRSgYzF)spT=wkJk8Benc>+N0B*dbApw9)s!|7RDa8 zi(y@0U)WHSo`l_0S9-F$9W}F=E!sA^gS)+E%gp#H>(aIh8u;CGx7xL3rZYqFm;Xxb z9mFNQwEWGr4@`>_t%K6vbP8Lf zcSx2ED~i94dGxpM)&7Wi_xreqI!gX*Hl#H5>SNSTQa?`poH_WX3jg8qXCG((vgtU@ zA;YQT*+*V)|62XV`E{bmd>mh(#MbE~<(#aXlaLlD7I96dD!MLbwx>>0ku#J!T{&kE zR&z|vB001swn*7SztNmIXDVf`?Pn>6lYh*W6&&ljv{}t@ictD@s&1)Dovr+3$~i~0 z@N!+Q>~mF`Q-wHN=zL5Kq}P~%m=3@JJR%D&s#Xzp%Q*wfQ*ah(W^sbiYh zv%0fM>dnB85s-F*xw?f6?K>qRF7DPbl|NN!U6g)*_2iE z-3fi4IN7>Cq1Gh0>NN>i)?0Yu{6)@V#%Ua^QHldO(e2d3zQXyCJ_Ak*nhO?8UdAkz zwBDP11TfY_ELuSa-WnqV&hf4jzF*`!3or!{!MHG0Le3}}RACPeG+gvHhJQ|&Yp1z7 z=9=aZF6(hj$zb`zZ6S_6H>s8~*nvE3E9Jr=R1)kINbcV?}VVXQ>! zhtmyFv55?R>N*C?&TeZJhLWs5S^wew9TK5))KQ#VO0?v&mL%K5{3eKG6hkg=q_(G9 zosRX0gWkv~j>a%)vVooi{ae!}KwUWn6YY>~XI?*4Xi{M`t?oOoNwWL~BjjJ(n>YRw5Nsdes zU7c7;3Y|IqQ}azN`#l};v55pmqk0IfA|1(Oq?*BcoM};UrM!K0o~!ypKFZR#nuEqL z2g0=T1P>I%tyH~GRyS-^SXCWtt|QGgCg$p$iL9S#oHc6CEVla*_5i3^-u4)TORki? zC&D&yx2ib@mCb^+))~;-yTbLaWQiH1Yj1aJ)0rFG>_u+$a(Qx!rx&qF$o2L`v|5Yv zglk;;GNe;lU!v8e+P~6vu6A|5>$K5h!=ksFu0dlLC7$^$t8|~8iKf$L5Kh+8S(?;1 zVYcNoJ}MJo^ksAyoW&sk9A#&*rHshD5=j58=G|vZfKueWhTiN;4OCTd_6e?aboHzQ z)}fqrK(CYnhoT1Q@-+9X!`>B6k~(^#-J_B{MO{2G3>)vz$bpA&j&wd zysUrMv9s>>3=93q_#czi9THjAezH56k&Itic%K?-4ns74iIoy}bX)Cp^EAoiZ5HW> zx9R>PIN93a$gZ(^nm3;96K26~+b2SB@jVvBfF{de0xRV2ADs~4AY}}MWrH6lv)6D` z0z=|v+DrSE-5tu0PR5!L9^jAmZ2(X0?`{!1DnM-Q!G`HGN7M1LdT z4AXjTtNTQ2_5vNdP`l5zI?uGK4;}k?Cvsnnx)(DSR^6fRLK&{aa9S}%VdDk0>UvQI840F+d#&oP(dVMYgC0&~d5t=kHbF+=01WBQ zX0#B}y|tNiuD+qw{X=W^P93{TyEnHwH?^W#vKP7bUA4)-)>aoJQ;9?f*0lw(%-A^* zgBHxmy$l}3aaU)^m6p*|h;k606cT2wQ)U0lQ>HClm(}bq3Pro;4Yj3D zlkU4oS(6HZAd06i@ZAf2=7fk|+UhQD&Ay;xFKTyLt8-4PN<`jEs(0b~mR6a|oS6M$-o67qswKl0AO;(%A0J3jcV24e` z(|`8eRUuV2w7BoKWIxlf&$at;i}Mj~KkbiG$x~{pn}(!i?7jsp7#3=suvOGDj)b&u zd^$$hCT{qzZ9+Oz2D)V9v6xG*b0BCqy8PU98#w^o`08k}^CTOdY0|2`B5b~F?XdSy z<}XtH?d>tyx`!5_R{QRiX!)YA#MPa?zROqV`RZg_|K3)2`TA_f!MW!-j(RVpUe7uo z*owVZI`Yq~em!e13e=f_y)aNG1(8>?`jxEwJ}vNGCA#``aaD=iFJKW23ld{|5LReD zZGiRV7$>cFWvn)%Mn?Zg7&-JY#0-@~BRg85*zyKml)aJj@w1&9#xRm?RYPp}l6^pOO>ZP3X246&VDdanECPV_L z-c6_vL@xYcLVYaw334aFjR_aGExHc(Eiw>)o=Bdatd{Zcu#DSt3RF7ue3a31hn0|} zhewHo3ETYVMstyfmn6Kj^11)3vPikY^1LkNSywI3y>az|lxLVnk^5WKgJLl7P^-G9 z6|p^qZ&iPjCx35M{}6n#RXr{EOsjjBl z+1T#AP#o13on1G=Xm&cD(U4Ws;qAo_r>PR%l9 zvxP9OB!Bd?N3;G?b}I(z+JLqCX+hYCFN&*`aeYOcymDM9t?3Vee?tHZpzWfR>m$@; z)YoG{YI%^n(~jL``;Yo+X*T&lygG(SKS!Ws)G;FZA-ECY2%`UirNGAzQ=$=+9PDf@ z-p}CDnq*XuI^)?XHCujQyG=wMtUe8zmSvi4%XcH#~%}3F5`ozng|f_F0pe(0)i>Cu)~2BSslcVwC2nJa%wENIBCD1`!crUk|bhk z3LCN==b=HxaT*Fg`_g3cs&J4H4{f5RHU*sk&)O&hg_w$c6@VcbVhBVo8|G+iH5X26 z6IGtDmc@eQqCAa1U=;Jobo3+y1aEmED9Tk@y~YlRAOYS5l2nJAlp$r(ar@e+^1Mk!?AD} zEgE3l(#f|PC%j*LQzzCN@$fmzXlzZkHD8$L7o z{WhWc68>ok7ZW-r4%GcIJaXviYMQ-N>KV5VOH$77QmiX4k;N*;dC$7>%PFNA2P4P+ zQ#v@aTAhd7-8&<$PLKObu-jKp#QcBITQCQSiO&fHp>(6jX#M60_w^C&r}>c$dFO35 z$k;qMt+DxaFZNH*KdaICZKJa=k-k8-9mp^v>GKh!syE-OgLyZ zhJ)q~tV`QDxT}u--M|6}n{O1)948S=;@^yMRYx-k77DdEI!xzk>ixQuFqko?O&>$4u+ZID#o-!b(|!1k5=G*eH`tUz3HWI6oA_ zdMGF((g+G)hvlY5#xZxJ$T)m+O>QJfMv|emjc-~E%U(6!tY;P`f~R6%)*^7)ws3Qc zI5)1&$CX@`)_O;v{t`I1u=>-BN7(jXf(w- za#&+eTGuDy8^5$@Ovo=Xw^T>VcVgOelw@gH ziw-P@6*`84(qu7fvOjKcUubAv9K`wpe|>}VT7&Z<%02PYI@Csw;KS|sLnSh-IYNgW zSeuB?lNRWf=5Q%2iEycJn%i+Sw;dHnK@M+iVx!53S8Z`eLZ9YnEW(KvSj?tj$^VuJ z&#;^((q<lMrkwrYoBf|6s;sEp*NHGMXz>|pgt4+)r&*sTg8P#G-AU&$ zw1{|D)OROEUx?Q_R)ZoOMIuGc8Qu|`h#bMrn4T?r6lI_^d`=oZrz!q%HEld+HDU)C}3&A49nr-pOwhvKQxc_->(Dy#k-wQ+p;aNs`>aQrhH_QX_H zT=hm;XfMSE_nlnx#voRV_#1NQjh%l-)2CoQVcN?+6l?4MXe%sSc0?lB!Gy6zYmu*_ z3{G=RYhi4{#C2#v&r~E-VEczV`wJ~4VcnH%#s$|9*%&QU^9d=dv&*U^MTIYmJoW^J z!%Qpjuz18roz0V|>@6aEOq$n@a8^eg2 zcM|Rg3H2CFi}?XxUVq2ogY$Gk`j@7ssZTgR+}!~8f_+bT#I4p_F?1kV<8%Nc{cNNc zkrAKPB32c%EUS$HOin(9?;>6qHar(=V;I`)RyZ-MbC%U#LwiSBgvFoiswH+l!34>c z)9r>jXqE}2l|LE~hsTSoT{bRZ{-<}MtYw9?lf9>Db4{3QySa`w*ZS2cON`uHSYleF%r2^J?s-u`}EWB7(L;vQe$?)w+lt4r$5 z`7{s9nJ-XOJ;h>F&WFNcc@XAVn!A3-Qy+NxeNSy*5u!ix)Te@zI~C(5W4ibhX& zsGXVexD6PXtsMp1LrB9xzmKz^)sex1m$X$&`I{hL|pk8rZ*Wuq5nTZB~%>+@({i?uN4 z7)IHR%u``*1NX>Kq&kV#f(RR7^Z_eG7#&@~s=a$^I)Vcq`EzSKtVx)-QWP0x=-{F$ zl}5vc2%d4mgJgi&fQ^uTT3wGG&%e$EBdc9?kL%t|^Rh<}4sQ}%9roR6XN)5puzXmc znL)NZVu)If?x89~6d`-Uzb6|BjVO+-?_%AHskWRHLslPR%QbmT$@ZSz-&EGbAmBv1 z8nI@E$rJXN4@bbyKz-;Vnlsu4;<2=@qfF?gGIpaBV-zua5hqsNE5Pxn^e+4&J9(A` zZMq$ybQ1TyCOhN*M@a0op&$W*1SMi9O&aak)70zGAogX?I4!c z^nG}7{0NY)j>0Ww8!HCR2KCnE|_#4wJ7`OC!@O2n5t$;Peuwh zJlc3{ad7=EOEHYOT#Q%i*eDfCh#Xles8rn^n{jrPCCpfE=Vb}V zjBEeVW^6!rCOq8kk-AiUjdgV72r+SXe^?zkvF%}Ek{QDAbz8yL1%|haSTp@W#r_fX z7Ojj_Io<2cuvxKGrMZcbyy;6!wkRX&81~HQC1oJegdR%(IKJ^rr3q0UAr;qC0lpNj zlyB8!>uA(2PN9h;-9v3_;#jLp)S@s_Kay0%l#Kt55lI1EMiLOqP)s=aCB2&QjOXIJ zAZ`u7^Pcc0GFI(h zh*?aY#JI+R)kL^(bI?oZS-qLCe8vKVgj%9xCXzr$&&ROpPaM~MhvE4sAq7CdjuL=+{;pKc=)0B4EKCLWGEa`SUeceA`f(qWcxx=H_5T{ zo^zwpJA~A_OoStxbB`m1DwX3<+BSbU3Uj>gM}8Din!YO3X2T9qw9xk?Cg|NhjNT!Q zpQ+`KfJIw|1J9rh4|B=fi%hfId)Mq|C^NS zs#zD892FJTY`v-3thr7bR@be=o}|q0;ZL@c&3_XY+18EpBsw2l9rMH0DsnwpV@*+m zJV*vn{&DvRuO~btW#XTC&rkKbl!Djjl3rBKDhYE_H4NWK2pnz=h4?@@mrICC9H$=~ zf05&S!zeCk(exD#u`qo_IzA)ufAkxSNqH{z<#2NUC5)^A|8HR!I|#$Fnj~nHP+8gw zoj&92VA{(ZOhl6U8|FHiYl0Re{fwpJb6V!}h#KikL8aJ$dx{>upq#6SX?aQKvhKGZo)vnKt$ zqMA(B!VY`5^&)v<+k$rPu>Ctx_ei>bu{ks+Oc$R|q(giBFXN2xEYQqbXQs{dOsUDpT+u;4N4gQ3{3QT}yGT`#d;Wny25oX@1Y9A8;VT_|tPF>lTvdULAsPsfB> z-kfCKTs!pUSRZ>y9{*VKdB@Px@A}_UNAUDec{(ukw8zJ3IZyYMr!NjY-NoNc?aos~ z4!-r?(9?-N+tqnGPM)61NmeF@jk4C|X-=MA7=htLiMZ=Jjd_4O?CP&WgfOwDBi61v z678zPZ=Y=4fJYdZ!l-?A#C}+*hm^lGqR);bmPXXs5r0`E8}VE(<%hhltq-8AhDof2 zADt+SA}-gcWw=l$!MN<(ldYMUJmErZENt-08RrEt-V-(!ri$9F$}Ac~nMKr^iIF19 zM(iFe41ZbRvbD%CtBzWeaqi97_ht0G8JVw)P-1Ano)`|sBVd1$p(|8T&^vmpc+L=B zp5q8ft*j0;O=g?bj26QruOej9twBo$lntc;3J}@Xrq-x+MkaWs_R9oLxJx^c zoKyu)zw^{m&*u74t%wUQ6SF++zVu~ZI_G+-C|@q{^ckXA=5$GIzbhI2x2@k6w<}I$ z&{l7=?T>lke6Q&;uiCZGmVz1A|3A^eeF3EcrJ}ny3cpa4yG6s9K{KhhxBA zm6Ht;SyYUPXu?lI2C0Lsg#4pLWVBftJyiZ=Ys5M~6TIZ^2rH-)-&G!dv3VLeXu*exn5lDo{fLhuV@y?4?UE_y1XEGE zwT8-Qv@XvC6sh68WaTu`)UX7O2bXf0NiiFA#Rt1o6l=_T|JqjJfyt)*7BHDlD`sjbx%)@2b?j)n<@ z5saBbE4Goclk-bCs79(nV>@1pOfJfAp4eQ^Wjh+J77OunFg<4DUO17(?DKJFgtYcF zWV8q(=Br=mg-UbB$O`Q}o1POIYRFj26LtzvQ}T<`x+~Fi#i|ID|7~vK{-cTN6r)FPzRaGy@%&+s)JW zq617YAz(R8r}1@#=6WhwVK9~fOuX$z?WBTvvt=A1$&vJG}T;<*}vyCT{) zOjBc(Bbf&J{N;D0XCvwC!-XS;Kg{ZsG0ivd_lQvvPLnf{^2J31ri>+)STUDK`s!=Z zy>yTMDqfp(wB7E2UOClV1LcN=?V!timT}L>s?)Rn5?LWLZ==34lQRZ=IL^Xd;%fAg z&K+4A_MP&poUQlbGtlpfkS~rO3~`FeX&G!7!627~T*3aTSIdaET074xHs~LzXX_Ve zwp19^F`Jy?C_*2peuuXupG_b_i1%qwz9-vF7PUsKLMl~*ti?j=!L9KtT# zOw-xKW2QY_PxJXhemF&s^Sf{+1Vv13$lTPSbJ+$Y(9G@BC;KpHt4NLzrii{pLP|%c zDB^e)>6}bSR2frK(i2fQ?tYPiKdt<~BWem7I&oVt4)+}Kn7xmlXJZr^M+hlxeD@={ zZ^DD%^~%K`+)-v#BD{r&A!!t5U?4448m>NsKNeQb7;?}gdBqY1{)#`@h}MJ>lQTc$ z0e5neJB8*>GA8l^7U}YaxUdF78Z3Pf-&p((Xi;Iz+ku?QG-NkrN+~6k8V^&#*xM7c zVhoJgLC~4f%$7DvT0N8cALB?zShw%M?6>%WgG%Ld(WI z2T6%1Ws+P;j0}usLtu_E+wiYr99%5o{`3gEW}pKgL>sJCTF)Zg?RdTebub+{e1gd* z;J%%83kQKYJ0jq3qd9KF+p+D@7Bk#w`)Q`mgJ?ry{qQqJIdW?6V-&=`I~RwFQ4Z_d zn?dM&dO&O>GfEx1%od^et$kIL9dYYhvYg^`jChZQ#L|Kg!?VAtUiKAHLZ5yE`813O z!LU_fuip?;!pO%URg6EYHpWyj9y8Y^;m!UVk(AG2DE?KD3dY)-yzEQ=W8TBdzD#IR zt^O>vCrBe7?qmOIENGZqhxypwak9!|a7Qkr(xaPv?8mD<_L+U`As_oNB*w=+%AkZg zp7p@5>|dr)RM2Fluo4HB38v_B&m`{Mh({qD@uzu11=2EkdcUpK*qWi z_GTyjRkeY{crc$CIWs8D^I)FIVSVB%&v@IbK9{}DA~Va;-qWNU+N(4W&R9&1*0(Bs zklqQ07e>{<`Px?Vvrq?0h$_0;8Xz_ zB^rYcL#aB+Hd_cra&QRF(#4K}`0xQG>jC0JEdis%H%@lbmtW@d-!uS2KGB+tF_!;$ z0wtl4nCP#}@1c7kBBpH)BNM+ERCJzSo5_iZ&lkSx9A zMB(;*s_3^k6gDI+h9u3bjwY-*D>aS0|j!$K`powp2H$)Tmb8Mo?2w~-f zCXB#x{sH59)c}B}!>C|yQKF&7B?G23Fhc`y=zbjKfOkMdu|MuZh;XO~>!>n{P>CM8 zE~+ZgeazK1*MBQHY;VquwzZIB0c9XTE^Q7Ms3TgWoo;jl{?yWNyl@vVV&WbLWjRd0 z*jlBWUE$^$=q>C+G(3+vdI0W{lVJHv!6#_7EglC%B*by!i<)w{9j2&a(#AoBM z*xPZmqzN^Sufr4_z8-~lsiA`k!iFN1DYEGaSp6d@8b*XB^q+XJGPBPRVPqy^G=?3H z^Hz4n$&)SK5?6vvdZr=ZW%&r*srOZ#crh{RP#hj1a&pW1o2#`dYgmTxio5V*twsOk zkOOHMFz_65km8Vo7}oF6T~l8;(H&s6S)^k*S0!kXetd zU6ZKD{^;Fm1xt)*YK64L^~ze0Y+uz*XR@LHv2e*Sw{*awQrNW0WH@4mJC2pMbE)v? zf{={T+Jp=;Ar6sah@e6uX=O5kWa2v{i#b7Hb9`KPZycUT!(fGn8(+%Rjf_G(^a2B?#HM~rKl^tVyR5K0uRzcHiD z>Tu)^$DD{6b1KRjPk{PNj8f9oiNVA3vSbA=opIo&8VE{SmYgR_EC9>q9l z#i-Usov?SU2BQGm-C10gR$IwOqV{JF$U4)p*I|-vW*O4W&v6{bG(rp}#75&Y1_8h5 z-mf+~s_4ed^=IZfYa{kXb1wh?$nA{L2ptT+^Z&x@#4%Og%-ui&o!`Xmm=3}uGsN*A zlrbC+yRmfqKRF(I7`HR5Ppy$iX=-{m8jBpB7&j+zk1%WulpM{LJiQy%!sdt`tRnQe z!`PT5Ash2kxR}XOv;0YXGTz7`Kn%6^ztw6R_rte^(6O3van8#&9891)3}21KP?dif z#mB;Jj1sFNehcr?5=CiCR}}Yv!ncS6bJ?9`cbM`TzNMv>!?y?{Jj=yKi2GkN9~YeS@x-c*fUPin2!E@PYlU6) zvi#SufSJ|w|2fzK;ICMBh-n^!rHEcs_J5n<&CEn~ya}^tZ_3s&WQfrQ#|68>AeiAM z%naIRamin?=NLPm>E>#i>n%!*e&$p(41&J}gOFkf!3t-HK^SS+1K0qWAH>DfW(HwA zf>P==-1TS}1dKn0K^VCud(i6D!5-kwpvoR##}Tpzo8q=LVT3u5CnAbNlp?G_wN6Gu z_f9>F#s0R`i_~O7;|ql~u55XLH(J0(2Wo9Qgb*>Q4Y8nmTvPOZ`wXd)emk`SN1$^` zGNmH&tnJ)1rPeT+rZ-KgHB718Ri{)V%M51#+&~zC=2rL@kol2U%;wIok=r6n#p?mN zM$gY5wF8|Ln~RlKziE05O}-jeXe_?=S;4Ywjyc|ikB~jmF6mTEk0Ooz^64@DrPE`Y z=`lHMdW_UnDb`HmkcI3B@?t1-1k<8vrs1@R5#FbQO{vIYvohk;jhDy*g#p;a7hT7^t;q&FM6XDd^jNzrBFfN2nK z+onOJS3r->rQsBplqv2w^|SwvlN_;q*)+$td5u4=aGDzmvw5PEC&Q+?{LoZ46!J?a zyK0@EB&NZzaCMwf(yFdjSfl3D41SI`lbxx3M>DBok|n!{88SR}`e$Xs6g${?!pHKY z!$GM7mpocoj#{boRSL>Eg%nm``cSuk)-BQ*8Eq2)?{JajDuOKBcuFCO2o@F8LAdUr zeIZ!jg8VhMtJh6W6%~Rp6^d|QRqe$1LQW$ts@fCcMYJsz%?WNFrM_jQ`9RK%=vO!b ziT8`bM&4rlr?JP&@RlP>qT<9F&&R{62b9h+xD~Wbd$`^A&JC9Bl zP!(}R?^>tI5vW&)!0d9TeyVJSQ9Fo`jaDS7v7j`vBA5)>o55ZXo{801oK-bp#CvKz zG8!4Xq;&b3wum)|^qB!)=qz!FU5+ev;rp%6L)Y&19;PYMAUWD%dR6vYW8DQC8W$nI zd?tLBOm${5^-tsMdJoUk{!)(>rg&x-p-GDQRkCC>eI}WDo{~X10&)zQ;FKWgb;_P? zS<}gbNbzc{C8(;!fd(wR>=g)DY(zt&dOg<+RG87ChDj%#L?ezEYZ$;MSvLpqz`L}= zzNlWE6c_I#c(skjZb<4&k~No#&$Th3@Eg-tGEE+u98Lp+J^{utRBgnG*qpS(c0G#M zNIyk@EUO<3VrQ;kEdQIR8z>7JN*P9V!pWm^tQIsplRZ2=QbsRn%a|}VF(fAOIdfUmIY+fY6hQj#GkG9g7CAP ztEKf^151QX7HeZ{SGd2HYI62B%?smI9>4%|78_5+7#n3coBMeyb=ECQ7;yr^fj+WI zbk4O`$mw=1D>#(I88b6EL(h}}*yk@gL(Rndy@t7;DZ+YLyGMupPR>xfM|V>*;g59t zjDu!+GqN*VW(3wfkw8qrp}Op7puN5Bi=ImkDEm0jFZqd=Q|hIZZ>~{J>*kzpIkbq^ z%hb4+Q=D|82LsJ{-J71qOjtYo;yoF|Kl?9llf^*297JCV)Pi6r(Phdb)|XQ43sLYQ zyF^IJl9pXosq=(-Cwbnb5nSe97O`WEgMsN`kdDHRG0h*RXf%tk$3a-8e6fTJCAy)M z4lxVQd19W2VW%zs)IVfM>f?l5~=M(y{Fp}Aj6H+#7FWB{*yIgT(`^C z2H8GzEA1T)-!P8&V#n(tdBURsrH6qYCsG*kTfpxa6cGhtlo-rCJhv?IlC|tjcg4^g zEg_=X_PVdjA$Lt#Jj-%G0h^yW0gE9;W6aYf1}#tH55xY5oI4-e(N6?Fw^?i}hYrkDF`P*Jbh6%|I@_W*qse zGnAJRlj>q@`U%4{-8;`}vQ>A8f}CIYm*w0~sD*BOQh4j9@#%YOl51)tdaI?HpQCB3<5IfWvND8#DxwP%Q>esn4l ziw8QDm>{-8SX}XhZ3Ho0TOVs8nE;v8*6cTZLO2a`NQeWk;vE{XPDYzcsmKHQ3a<|J zEAwfTGgs*?h^LxyJDjCkjj1vYMgoH?N36FAN42JLwTFjY8IGe`T)*|JgT+STSmN@F z;UD&zRVK1`pRe$c$WtFPeda!9fI92Mj3`NoX(&o4DN%5Y&NgbUJ{|UFKujL~Al>5z zk6K75P=X!u1IsMIvwtfgrjD&-ln=jzDWX#dxVjYS(fD}eIT`18JeZ? zDE&L7J7A5s7U`U<77_f5wI-h_JP?X5W(Q_$5t4?dE*E}6i#mkAjzbgHl#?|A3r-EJ z3M#~82$`X(726JeGhQ%ytAHKkv^0etTLcs)yGB4!gJ5FQH^$RC-+(%6LVlTGf&x&K zxZa6kFb0OLhhoJ{v9>e!Rl&pry&oNLM?^#L<37UTCyk!KDSVIYXAX@aijb^}2;zT} zrOo08v(6gIh_GK_;(I|;I!QOvBj?_QNgg7~6}rjf6=FU!(p*EUrg`FbV9J0(?!W<8 zlzT`q!LZ~qmu*r%)WIHNm?H`ZwqIfuV9q{9ZLnDZK^BDCftReRACLf`e$e9>+J>n% zaLDH+hpQfHLg|8;lyFREh_@|~v7wnZBJD;7EbLV%8NFww-jnqP-XlbFhjk&ADb|!@ zDPK{2RZPrMY_eR>hpHClsVb=t5G&A6tCIQvu>yC)#R@`yg~5f9D&&mY4)!;V7 zJsc4jK{^>=`rA@sklHLjrwm3}qHv?1)^XipfZAt>No zJ?s<&31#NOQi;qQ{z#Z9awwSbl15O#_&#)Ank8yjtglg*>G zm~O~KmCv_fOy_y{2_&AAon*B3x6YtTC_}n;BYbtlinI zN0=CU>+mlz#P)U22#BnSmP1kGKxIz+!av%yjk2cm7m2r2wMfOzRC6$(-*@IJn1)3&r(F+ir%!FFaGED9i!{kmiSI=BS*Q+t}yKOaA ziw!|0k@YxQtmRwo!S1iHSYqIWOK9^B-Wje!7gU}T&QMYvV*Makm`!|^@jlP!&sa({ zMq!AZ1su@h9IS3o3Oj7|ds?jP-On^2Wzs<-d`AS+BNaq`!fDMBb)`~^b#S6m2df_5 zYu39?#LMqiUDec9c?O0x+CofEr+0~yW}1evs1bLg#@=Q469_@O?m*ws=uCs>OX0sM zj^`hR)fja|4ryOFJjejA@ zq;(?O^I4qS)J&4sG&_H6);Bae*EQ?wo1M#=?aT4~?hmctnX=d{?hE+(k!DVCTF67is?=Y zl}<6c!1-4HIN#k`f{nh35!3x5mrW|m5y_j zGc+Pe6`5W*K^WF+ohc!4+ob_fCK-v~G1G`32<8`^_d;)4{zh!MX`LNcsF!D(NvwCL+9725I8apiM?=suS z03au;Fp1!IQ+p^3oYA0&YiO735n=r1aB8?}mi(+QWt|zPuVr$^Id3fo$i!HsbLGTC z#iE=^6n}vyz{pL+Z33${Cc1F5Q`T+goUI= z3gOHoqvRuj@w$j2>Ubw}8WK%rvk^n1p>M4rDm=QH6)k%dYN}C)e27iE5=AqI(T0Mq z39CiW6}m6Tn%}km@x+mB3Qme@Tdb_-Swt{VVFx0K#&NYVvYY9Sak(Bm}{=pmBpx`?jG2kyz zs2uH6gr6kqarg@ig3N z>!jJ`WNY!i4Ob_V8riK!$S*`AcSH`mAo37NNcy&1zY~{Ngs(QH&(6Q z!+8&tvX~$?g}!Q|=sa=CjrMHU6^sjuIO$HL(P9UuWtY8A5k;IsYGhf2+Q=Ums(Iwl zn1pYUCL~+S0U2dz8fpA9wZiKBmw&7FruFbHwU1@>gY&==SOP0xFq`K@QvfXntyN$d zOzmq~eZ)EsEYVWRau4kq_Oq-WO4th)!8KqXm}h5r8JrIefCFG2`OnxM;s%Rg30w&LNH%Tcrb;%EigZ6#k0JL2X=7lDQlO|q{H7z{`!yP z9e@4vC_h*{hP1#zFyPt1kNFhr|0(5{`=3#U@00F)$`6*0=MNnGHRb;S=@m&E95{*c zgFUAa_J_oII^_qu7V!=o?4$fYBJSUjCTK0C{9tJrVU8lb3n)L>bs^;k`@rc(6W2xj z22&SPe$cv%GLzQvRRzJ@SA;rVss zAM6F!$o(Hki?a8EJzxo32@ZnRv3ys8ZeZUZc?S-H0W|8lfwFZl0L0|#y)U9kIB^7$*mfCaGoHu46R!405wJ9MH>tviSlEPw-otBLP7gf9~x zSO&{r;ZDkN0?+RzPhc;&2CS^197Xc>0O7&@2MG^WKx+ZNAA){h_rsJ;?!n+h(i$L6 zF!dPUfc@YGunhK`#QP_y2Qa@DnuDpQsqd3{2QCE5UeR_H^#SA~^U@ z>P7GkzBz+uZ}B-;0V`nl+vMv^;sN`>-uHc+8 zSag)N1}wPB%AZB~d}YlCQ-QJuzydgSF&I%+5$uX7Ypq~hSq**U9qa}3N#X(f!2IvH zPZJNA$|$Q0mcWK3#FHgFSOM37J#~aXn{>hXU|)`O!Qu$gT?#glF4)&Xy5IoVa1PH~ zi3haWhzBf#`DNrMPds2(2l2=~IQCrfGm?0~GPoA(8%6l##0Sm?3*!h6_Jd>3gMJeT z59TKm9_$0V&L`j75FRW~C%oYHguj6Ab|AdqPJ|cSmGBqxes{!tVCpN%s(^*Plr{Y# z(%pwWS72#2_BdeIe#+{;nD4;lVE0$y$G|>t)(YycM_K)X`zvb$SO$CgiT7*7Blr#C z0ej{U&n3JEmxI=U!~=GLvo0llupjK5OFZBJ*mD`rzp1R1V9!CyvM%R2I2Y{tma}(JBk`Y4KEV`w>dN2%*uWUxa}oIj2f#IQe=+%F%&vg* z!F)e-0IgMoXKYS^GG>==Aw1Y~EAih%cyJzAxQ+aPy?2s-u;+g2moc05lNq~v!L{6X zKR`SDGx>Xvb_kZh3fS`y^j^jLhlvmD2g{)KSJM9r;lKiDJxck&!6!)n7UKB_bOI}2 zAK3jQ`2&kj^Zr)upMhTBAlNVW&ypTk0`s>~&NnG9*axlxE8qsO^e@`&?R*Co!Q$J* z3s%7V9pn%D!TDhR1M&%`J|>^5q35U239NiZd|>}Z>a9#TR`qj1mLygQ90Y?qLH7F; zz+PWltH6Aqt<+tl7tz){uq&#qGT0Z_R>R$3lJH#CLmAKCo{V6 zBA$mycW>eWt$m3H9Ndq1{!08`BOWk+0P%o>2NKUC#QRO+0gDF_57_lB==3P*gS}ws z5N)jiyAIV>et`H3+L{lRz%p3;4(UDyewTCw4=m{3U%2DJKEFDcgpCJFokWbL+B_6Q+W8(P-{pM%H0}lM0c)-#x ziRVe)A4fc3*YU&y_WzoA){?K^5D!>Bf&7E1BISLG^uS(lU;*U?OD9s^r}^$A$_tiG z*46+xaEi9ZK0~~xQSV@Cp|;k7gQsh&>sjJGQ(Ftc(jvlxy=M{rIqGLI;RTlvKR9qU z@jp*}Tt@t08C(SxE~lMyv_1ekY-=u99Bo@Au-s`| z!H2{<*0u^@d7N#n0*e!DE46|0OvEQ5nA*y=%HSZ_@DcG(vaMdwnrvHZz+N!_G5G-J zgFRigH2@Z;*w)xj$mdkTgZJCQC}+J$t%?p;au zbMoI!JYZ=z;sJ}hlmCt6YXmrflF9l$(T z0xKZKGuGg@h#xE+Li}?7ZQ_ULwhkqJumF|>ze{*{Z|g9^gZ zd|(OeswKYP&=0^OSONPN&=1m-_hiC@)+vMs3t$&(i9v87SUi>RVCpo&v!>_=`@pV+ zqzjh8?mE&topOK`a1iW0gL2ms@0rjEEPxfT4CZs>YZ3JarhZF11}lqc#|?akplu%5 zwS;y6_M8npM({n@3znDC4#3`J#M4MV!TDg9ds=M%mOI)J@k_XW^T?!lm$`wPhz zXssY$U;*3!4uah+#M@6fz``Zu7ql)TU#;9<37xjBaqOS}(~KG+AA!2z&g9Ql3-`hsP!3=aO4=i|Z02oHAsjrIwa!3t>o9ePaw zALl*T1+D~(psWS+Pm=G6eE$^f3+#HD_67EW-CL1wun1PbGFW~FI!q!wI14O4OMQYp z&r_eEwT}Kcnf3~<1g#fH2Q0oyI$gAb*N6`+fn_lDPx8Mt@4;TM0Gz=Lo%pV2|fmYrq1QTfubF0cQzD9maaTOF7mC!CJ@a-kx%2 z9cww*1Fi)N^~ARW`Oi7le6ZZ$SY@!giTHNpeY0Z~z^)d@S_zgxYbU{o=+k^u)mA=z`;F; z4=n6SeBG3LAMy?6_jRm6uxmfcxf|*9uoWGwfa}4&{VC7x;5SGgwB|b20N4YLox%49 zJ5~|w{x;u<1h6 zrhGqxZeZ8Xp$}LBgMFyCUl1=i0QLzU2OYq^QMLjJ%q+hW#&UFVR$uT!pNv^#KM1^EEW{m|(E@_7mAfYzn7 zN3a48f`gYq|8J1*%b^2ktt37$e>L?rhwrYZTwvD?qz?{&sRQ}`Ps9ff-b#IeJ-1O` zb9sI{bOj5mi4PnsLsz-Klk$9%@9%;RVCr7dm;3t&e-L!OpMD4StfBm1*MrdQV9E=w z1iK$5{%?`LM`-WhAXoxZf2TeVAziQ__&DVTi%*l!Zxarj2Ns_ppJ49`(CJX<@-pGU z(kp}qdtW8~0^z|~VEHxj0~XekA9)V;e24V@Nq)cq(E2Xly+MA!3RnVD{~|nCc#HBL zMz}%h3G8~G_5v0^pxzJX{zLKw7B-MCF#jp}`X2XSFW3i`!0yi|-w~t__JH|~q!0F3 zE_w{|3C;osl#6bI@3m`f0Qs`By8A(}m?oYd zK#vUZfQ2UF0ehNV`Xl21~{;tYc>3s@29y| zFE{|M0aMe7=O^T6d(s8FcA#8fKUe`P;Pju8|DB-&I0z1a-MhNh*kgI#?OH{!Yj@XL z3wFtsMGoSpNK)B<`512om z{D3`RLlL^1NO-}M2@m$3O8g7R*J;ELrWO)ESOObPB%QMe5B4l3Jecnz{*%bx?}#5P zg9CEE1p1%MJy-<$mqLHAa1Qi8h40UW{$L-t2DFwF yX&Ibpm&m!`5Gx2~Ga3xq+Mfl%Ro?8eH=5HlD*nJz}&mul>7HHk!TK$5n zNf+!X(~cHH53mS!-$}W_(p{9VkN5XbKEZp54;;LY_C zYpDmY_ZjLFEUlwH&jl;wU+@L$6D+()eJ+QtFH@gjA6Nm)uhO5+Bc1j1Cve~``Ulwa zHu0ZN_;*Mb9QZfsg1zsO{|m^^d*mM+09S#f56J(8yx&0n!Jbdazu;%&|03w|Iq`rg z%d^&i1u%ax=_}8g4-RP08UTA7&*Gdls{$6mlIvM(!CtoGb@dY-TnMtW#99j$!Tcq> z#}|JuScrSpDloYUJ*xy-St-q%V6qC>J=Nmd0<~V;lZ8`!e2!`z;3V?oDY`3vfxPGujG5M0CtZe zK5!6BT}?cri4U|o2@e**hHD5nhVp@BaE;(t%KdxlVI1*;{onxDHy-+3OFkw*KX4FS zEB6zj-*v>d74!r9CV5r`90aFdPdO)h^ewQs9rzjs0*1qwzcivt8i zs0tbep-dVCqzY(|sVHEWq$p@a#R`Z48Hx->M8P=%YEjfUS49bm%xVyjiimN-q974b zD-L|Wm2)=P?aS-)`dt5SU)AdVn@_#oARcf8b`Qf(I0F0Mq&~y37rq8R-(o!h;seLvrEqv8I`Vro zI;&a#Sae|bICNnDb?CfJJa5Dvj@^zutR~Yg?_duH;Sd~!6EOEUu^m7U4#5#Pdi!?0%y<={d% z3CCg2gN%=@=))m61ed~5*!uzTfQw-FL(~KI!MPuz3y0wlTn0yA-$&@fOW_2Zgw@0N zA7?#q1dcs||8N5KZ)5qR#1W1>MtgnCayTDOz)@H|PJ3;qJRE?1a0wiM-8)!6TmVPl z7#xGMcj9k^`oms$BOHJ|pI{Fc!Vx$Q$Kae@tPc*s>Iv!(dth%V>w}Bn0GxnBaPFs+ zhr@6TE`t-WZ#U~(M*U$woP^_W-e>47r~YsdE{9{Ve-D1Hp#E?GR-a=J=fmMAsXrVj zrv7`eUrGI8&ok5?_QUE6mc#jQ5RSqjI5UBN&teaIp2uE(!|pHf6E1)QFAy&{0%w0k zJ{*L7QQ`%MVb9mty-2*^2poq!uMn?q_zj0(->bw6PQW?e;^%AR!*RF-_Li{TefR|z zz;QSxzu#cJ-(e32Vf7~Kh5fL*41Kr&PQo!b@D}#_DGvu>-)ijP2<-VDJGc;bzm1=8 z7|!_tzu*w;eFs0~H|#w?J=V~!Z~&HTs8KlgAo*))S2zrp!RkHQ^+)XBrEmgH!m)L< z>mioEj}9DOj}GkLfKC#B;4tjngbp0ug3eErhnK>EkI;d=AER@a_JbpE6fTF8u>WV4 zZ>N92L0BDOIh+qC;V7(j(%!!imrt;V)h^ZxM@xwV?EQ?m{YrT_ACAIH;W(UtlW@*& z__v2R!7(@n`#wjvoOXiqVE2nQ3a5B7YC-cfYELJtmni#;5L zJ%8ZeKI~yX9ET%t&YzSk!yXR8rEm=P{zd+N)(eMVxkjCUbN{AZ-&0RG1ed{{ABgWU z)(02C5qKl44$+?!*S6pS*!?T@lizT*!^v?j{Rs}iQP}%C^>*?b4#1IP^kdlPaHXz= z`VZkbcYgKR_?B$u-2popXU>^_D_^PrTUJCQAWtD`zu%{Z= zfs5co9T(R%(638**av63xON8T!M=Jf6@tTX39Ra)2M6JtOv=Ln*x!Kl!7(@v`%ZBw zZaL;$yi57uK(yJ{qjtJS>|Fd*KkAfH%tT z(_N|@j>5hy)(i7}P~|>@^}_);yB7X>@DEPFQ8?Cw_|;}TO^E{>I+OUpfo9YT_ML?u z_YQcPyHprfEnJ)gy#&b|{185y^}udk9pO0{e_Fa!5capie>iv^?N^7maj$g% zj(S-?9B<9~>r%cA>xbR#SU>E$fc3+n_NC_L-gTvkFFL0!%OBKWZUeptgT}r<>gZ1<#zOWk(!Cp8DN8oZe3i}%2 zCtL)pKGYNTz}b!Q0}j9exEPMXNjMJYda&<{F6@Cf!d}?j1V7+>I0#4JFkA*lVY#Oy z4j01F%ZV2pz5;*GL?8CU33w^&@zd_GAI@n;J{*MO{fGHa2O85akvyt z!k*^X^(X#t435G{xExjksDBHV!$oimE`bxU%3=9Hbm0UXf&GIhC;5Z%^K9AyE{0V; z_UG^$&WF_y)&mFO%yWr1oDav~VmJwx!|E#H*pl{v3tH*E}RcXWjP#^<#1eNZ`IJZ4^ zBWOR^Gm`!SdtqM(^x>s&3{Jvo6miML9*)2XxE%J3rd>L+Ubq;J!KxGG#}Fqt21jA< zwX{oT;tB^~HJ19rVc6Y;_83R~;Rqaqqi}Xt?60H#a01>4N3W;;7gBCK^@o#i91cvN z{uj{>a0pJorEuT|>hB{TE`ozMQhzuB=XRrggVY~R!ewyaChC7N_V7~JKM@@`0DHSr zkDJkfW4EFM$Kl)_)MpYpun#VS{jjem>w}lVVK@m#;k--ueLHc4-IIwU?3qFwdr^P5 z7*4_}54}5xBkYHxa1zeE6rE|r5f0r+9AWo#;&>VPZ~^R{NgUxgoZXw{v(SNkv(bUW zbI|F-@*;HL@ZIRZ?s@3+Wj$~K?46H4a1>UTQ=bLsz~P1Hz|niqxq|xNOMPL_BI*lA z;UpY>fcpB;Swek*#Bn(Ja0K@3AdavX_FqH(PT~mrcM-<`_1a4u z;pkVy5l((h97mAJR(>rv78_gGZ)AaG+|YDupA}G8y}DR;DU~-6v(L1RUTCYq?{oN4-qu z0G4NGsxmmp`+---tb207tIGUbsK@L6+xda*dQY!yDl^?70cOt1?v~>=~NL+`{^Y z@s*~D@HNCscqBToZ!|hLqcetj!Qrvg3yzGVUbnE`8>tuUzlnMY7gDcVsXr|DEQW8# zPdGXSKPM5VsrU&e;27+=1O40Z3l74eY4`~T?!?bRmfwY+a2$@q2{`9=@@L^E9ED5a z;B4A;GV7m1yTa}w+7*t&xl{0CF6|1(=FzUOe*x_}mHI8BUE$b$v@0B1OuODe{qCn- zVb7zqD;!)#{ik6EhhbkaIQ`} z_H8HbZ~}JECVvNUhl4wbJM8;}xX&RDrNkYMeoEYhcN6y_mhU0%u=jJ~F2DB@_qo`A zLEPbBg1E!sFNyoz#NjLA4#(gG?D?Ad&%^#3>JNMNQGem@sQ-NO%cwt`*iZf8(D&4T z0de|)`orD>)E^H1Nc|TQ$0YTK!@pDid&oaZ{bBbX)E|z(nPGJQr2cRKE`ejP`(Enx z7xjlje^Y-r0cS6wpB|(Ba7b0>xeoMrNYis4<#?R35DsPVP98W6=PYJ9-@pvP-puMe z*FnAcfTj0-mcxa@HL!;RJffNN0Di+E*q?>H{D!?t_|2zli{K=jfP=NGtK6mhhQn~; zr0S{+j=QTX--9gY6NXFS2%LnYaNa|#zYh6u5Kh7|IPYQBU$;8XkWs#VbyW^0n^af+ zN3d&FT@}OXEb`&NIpjZzo|k+$+^)J(k5TWg)m1*sL92?w?rzmp=HuA+s?Iq;^e(Ti zN?>(Gb3U~j+boZDkPaP|}E!9mz}CGmxW{fX}~>;@1o*v+?3V{m9N_RH}X z&WFSKtQQVk#d=pz{%Y0>dxo-JI0nnT!$IB@RRAa880-t+|5L;l&V!?H5$qX3oM9iF z`!xA*81|1O&Tw!P?NW>m9E3xoSr6cjFHnn1?^Ge?I=ag8vKfA9gRqe>egAUnMSK`Vs8Dmv(rKd^jIg zi^+$*uzDR`I3G^HQ8;iv?OcNX1GF<7fs5fdoP>Q#SnnI?KFE4uKb(XkuPyJ z@EG}U{H?B0$)a1zdZ2fugX5A6Mf z{vf}P(eKvqo2T;&-~?Y1kHKNS(3c$}E}1n{5Kh7y;UM3%^sJ>l;X+vP{nEJnhI8J< z4lablS>(f^TI9b+J!;obAvnaRlH+j9jm|ps>tGLi>yj^A5Bv974u@cW{Tiwi_B5=a zyz5yHTm&cK1nfDzhRWT5Uwqjx42K%mP-U=cRzvwVqSw5JS_((bt)Y^zx}b*2+k{Ss z8Y%)uI@VC-u)9+Y?qOuToolFKIC5DHrMBRA?;0u}Rs(9NsQiXAx1u|+h6=!*AvIJ9 z>>FA`xj&#BTmZ`h+{JKg1nY(4H?rOju@B-u9J~$x;bbBHe}wL2{D*^6@E=Z0#s4_< zpN9W%XcjuKnvKpj)&oai&m8=R6R`hdbc$FnoP^bO^ycC}9D}2zOS{r8{`$6)^_tZym$uzC>vUGPKX!x6X`_B>2}DZk--*z*YMg+q^` z539$}|CHr$1P(q#g1CGF%Ur`PYz`@rk2Zvzy*VF?pfIV+8&S2kLjI(dBhl9dz zqXUQ6Fh0H|F7J{L``#lTj>4JyD8CMUI0%;ruSfqo>bC)XI1b0)1e{&Q`ZuBj`!=Bi z2Vl>B?BPP#znSp|M_~8&)b}HFU>_WV{c!dVl!JqC5Z(wU;^-V8?mN(d65aSZzsjAJ6!p6_ViL+F*!zHn$i?F;+9C(cRY@e}O}dkNg_9OCuQ z>KB&t4z7GS$Sb>}aJX7cmH8|6$*Re{ysYo!nyLhj@f8sFZD(@fY z^sA|g;86dXDgnC()>OHFvK$V>YDi6028XY%$vt)a9#&H=g%iVTa&H~^fto7sZ_16V z$vq?RsG6!A_K&9i$Iu-^{bB#L)L(J0@>uE*$KfcPfO#jdiWE?P*guZ?!{O_wzmwnN zsXrW^K>gupkos4l+(haRMC|6%2K9%-cTxXp z=+C77a1`DMCuXx=7j|>-ANCjFKOCBi|Cy}kZv2P6^YI_{!I{-r??U{CV{i!^ya$~c z+|wS$e>izB{=>oh@V_SI7UMtcevtLT{>Sk@s|wdI@gEMqivPlK{IA9GZTJr-KE{7o z?Zp4u*zdxBI1VRZZz=6}68^$r;ZJElI1KyT__Le#gWaFeesBcN*O5Bd+BJVyLaA)nVz6~kV6QF=D@u9l_p;b>Ntiozb=nVW>Y zwX;-SL)e|ABCx++mMVv1aPFz-)z9KyA^biiOO?TK*moNBJ}pZvh2wCk{60O4Yendu zk)?{@P@^oBfFq63IRpKs=)mq~=)m!_&}oF-+2{y+@dx&_#-GNluMPgdez+V?!afi6 zZi~HeJM3X!d+eJKH#h=EJ7Et8J7;l^66@_Hr0|0TphI4?_OHlzHd zSzMc*5HHv}f_TB< zk<|ZO%8#P{uo_MM;m{cB-x7N`0!Oc<{;+o(^>4-R>!?2*x}N%<$M5mf9}Z0*ACAN2 zaNq`X&W9(V1IG)=m*4Zz@$wrkhW!iBY0dA&=)j)Gh$9?ZMjYGV=St!T2c9L4uzG+8f34y+-LaPocPcme)>KpbKJHsT1!KOv6oiF+w=gae-u zN7(l{aqIwpK^$TA6>)_9-xJ4Ne*Zum;RIX;`wtMuj+BR&!bvy@tAo_P6Y+;5Z~`ue zLqAgg&iH+Z`onQpb-^x4{bBb{)E|z*nO(_0O#NZ?GxdkVu=_&dbcFiDNm!oU3;crp zMcBguIQA>{uliS#LM;|7N|gn{S!Ovwo^tEtPpOepRo7F$Sk4PQ18^9QzzMhoU$%h@HaI6LE?ZxjLbl~7QtQYpRWW9N;5B9^sR_MS9xD583S4-twN_kkG zISigpIXL8{+-3L!7r>r2_zSz+<8N>D;2^9zuzolJXZ9gK7acg<5gjqAPqp5IsraulUl-{u@#+ z$$#`X@we3W(S21~ZwtFQQI>TF+P^FK`${knX#Y+Taq2xPMM_-@i;Y=tf3Bsg>z!b^ z{H=8-@OKd047BbBTXzF_k~RaeF?H3G6?G$&;c?mHx;!GQYLHh8XkEG8jpS+!p99*1 z*1*&qKcb?pA{ITd(f)ShZ}G(sYu!7r5#34TO$Q4=5ioU|6)zxgAS!E0W^&8pW+W6?FaYSJVyDFJ8n(>z<0n*`OuRx{ukqli=xK0Vo2d zza?ilQvFN&8>KL}si~Y)Rh3$e{Z=4{&RX|r{wBFb<3kY41JgnIdH6%8l>Rz@gvGDY zp}L?a?{TY5IqmOD*slQ}0){QM=0hH&{uR(`Blcp)0-#WQ>`*{7lUU&FswoG#_v}OkHQ_{yD)}2jcebJX z|H|Juy2a?asi>s0si&YNu&bPk3yWOm>kNL#^6&}f#pYa1rHc}jhAJ_eVjS?{}guxs;9+U{JowG z9wSVpJ7Kf`>bYF%E^$yCZk=xE&c>cc^wdLue<|IV*rD5=M>j48Bf!s`~b9n zEi4_E57FLWFt`$!_0DT#%`@6RdGF#A=<4}E_t$BZlO#vcvfX4Q)$;H`$4zr;8H?q; zjjtL0&7wTFjH`Qq_D}btMdUpSB*|^Q|I|O_J&@ZC-IdsLYpvoo+5e%-t*vSkkhBdx zk*;j_q`gBpegs{exXn{>>!$h&h@a9Xw!cnp)jZxF5z5u3LiRExmXTuU@M!Syek^(dJ+B$-{~!A~X5Y~5pvSYk7n4VWE9m}=Z`|IQiWl8cod!t% zL)YvlTGwljj|93?PoVpUq1)LC%Ku4M`z!D5&kmTxBUO0EAJKkSsb%ds@-Vt3?P5gT~lKQaxzsN?>9cm)nu&dR2_Rk7Lar*I8*+x zwdH-Kb+KpYr&4M?{I%S$PmNjIUfyfk68oG=_Rkph;+xi&_n%&fy~nnf{Xzk^tE7_j zkyJmi_2oUOGS|_iQ%Sc|4SV7^om@6i$MxlXsxsF>sZ<|3LAGHp<52q}?_Hf~`2Q+) zf;VjYGcc9?b!{*2XMMu3*YSBL<%Cj=FqOWe?d3hLJkoc(zVBftSZ~-%8)$oZ-|Oet z>+MWi8nZp%GE2%te37wEa@`^gZKvD$`$XeN&$sgaSRQ#h-cDQ=QFFlEKtkOFr2Ihl ze)71CkV;R(Etx!K)?@C-PtU_&wzK9lc^|EZF+sDY(kkpZrLRhW);-@^9R zoJ6y-?#axJ(mwKj+Y8b4h%u=Ydrp0;Z-CadkCj}9$m6thD)IjH6Z+ekb&0Oe!(-y; z=2+&(bvZqKT=x=dnX3+Y|4DZfgD2%Lx>L~g+q!zc;|$r5kuWX}qJTIXGUDnN$8X$E>eq>I#uJ4=e(59AeJT1B$G5OsBJme{mX^M+c7U zK0%oe0jF7y>yEZ{Te1&jyfZYtKCv8(;%v{vdkBm_%4iN7ms z-4*0jbRykJER{H@ z796t}{{CU>Heds&{oR#PQZ7zyC{9155~mqXIKIT+Jy^ui)0lLLthi!1BR}&o4k+uTsni#_P06qSAiRV*1g%*{f4|GsL3Q+1$Zvt z@o-LP$h)7jMq2tS2XIR$TJnBtZrM8Ce;Z@p33LToceAZKjJyIM=_XjuU*fM$$K%_E zN2byBTIOmJ_DjGrpmo2qb<4;*0qj;I{-^Dkyl_;ix_W+)_m^{P$#LD+v0n!^0Ie%^pl+_sVLNNL>5a?N*hbJxUpW zH|AKjeIEXn^f>ms?YjBE6^15pbd1pMc%jcMK?9xy0dLSSI_JD*pCI* z0j+zVt-FZ4N5Ko=DKOLM4>OA_UAe?6y2&2QOKfvI;w&kK{RbckwC?jYua5#UBp z07BRdpkA^cQpia?iHG>x413=tj0@&+PfC@3i~XxW_Q$nuJ-h$zC+`0?|`k~eGtG`IgcfNjEjR8n|Pv&Oe#H!{R`kV zpmp!EbzN*5>VW3p4DhGnuWx`(Uwoj@7;%1402H=1j)#9;=;^1XnS z=rUEN(je@IgAqXMhHTw2D zFdSsiANBt3kvpw8?4_+9#a_N=P@N!ntg`Ag?B4@_OF8mne$cw}*q46*JOv&FrtUYP zit&~2BXl%$f5G0#zI9iibuVT7kX#>;w;Oy9z64&{R{Ohy6W$UBJ@3f(7OpdNJA2r# z1~&t(%QPU#B?lK-;0$mI*hpUpG-De#n{i^>FGb^*x9T9P-$@Yp~x8wgIhsnXN15;eRH- zD&y>L*xb&??0#08K7h-q?@OGCt{!h$lsN@72U_=9TQ@-7^ zdk6I=xn3ggZLkw;1l}gr{-n&muduTvx}6c_v1%HW{%PoXnqv>s(9KMF!K*&7-wz7TP3xXiCAH8sl6~bH zz-%xXl;W%2uU?($O!++tQ;Dy9-()h&bsQR=XYK1WgSEfB%1@Fjm%Q#kk{rLA+j%n% zqATA^i5R+xvK8GvDLB7B8J-Qxog47ASOTi?d zb>$is$#s~#zraaebin}nLI8+vNlmLiJb02)w__~dbK!Gu$K%ig`)j~5pmiCJl3f1Q z%ynQQ7z509>%z{9#6q9Pknh9XY3Odi{wr`+o3!pATUX}EkI63sp8->M>RT0cLB zwP$}5yb6ke>F?^*maZOe@;#ibhHi}x!~hfktvkrpt)I*JD9{0%15DjN->#_Z4e=@i zLs#N3pECb84t=&))Q#UozcX}yNAskPY)63h_ZCOWVb`=y94~< zMP2_Kj&~cR`)`BJY>UA{pmmu-B)NKbVgCV403$({QyCW^KAY{^LQ7Y+oBT_CPpG}2 zyBYhRz{OqDy310s%5{vqnimpd&;V4>y{DqCcfL~n4BctiF9xSvl-AYfAIAFF{)0uJ z2)OApp@AH?;_sf%E9%Pkj;=R!&+W#!2hbJhINWQ;w?BEq!5Co9J2_Vo3))4-o8Es2 z+{-JL(aly?8c&%8U?0%BY&s;lp1qhy55NcDT_AB70A%~tWlhC)Q;QidhHjhgj5n|f zXx)jn?yWtz&IXo%`M}hj8mp))-*u`DHqBXDU@h0DkdK+E6y?7J*&0rhQx(;;dJFea2eG7g92Y`7To3P_M$+As- z3r4P;xGkSlIrhhZ+=F52ve+g2)y_Q2urL^=n{g|_rTVno0GDp&X?gI@Bpn#my_grguG(#CU_CZakoB>P1^n8V{~7| z*z*)^z+lVd?>K&bfc+lu0}x#wpok<_GmcHq2VFsXATelG4~;qOPZn7*)BVg-%shjx zPSQqwDAONMET!8Grb?MLY@=Z;Gtd1h=4u@WVcAdgqWks#n4$ocM$8 zK0|jrdNL+%hFP5Qx4Y%1voZO18oo+)gz_~SrrT#W%NKyfK;kH6#V?ZU74p`A55RhG zdfjw?`liULa~^ZTxfpv_TIUWjQ$=YT?7s&4fYu#gEpt`t!*wp`RxF!9o`$&T5p31gBr@vW$)xPvqApOtK&5+|SNrPEdq5m;9 zF244oi0w}Ht(`i1D&$6HRh&t-<8A)4}?y=y3M)^9F03xI?`$~O_i6V%U)vu-~< z-^zFUCZ0fdv7tNUztENM0N!orK7!t}-~~f>l&ve*LEa-@(q{O7^LGZzV^NMTPoTTq z(7iFGq+I_-SH4sDjG_A-dOw20hVB$wSGH$I$(K~+^8el62`rcI9=>@3-5QkB?G_Rt z+U?)y%6AmE7`k=PI~%k$bZ6PRa@=|a`GY{^`~Ex~t#POOgM63qXG2%U%rMH0Fm#>P zK>8o|S(Meb`n~RB!df?kZq?J${a3Evk3n;spcQH zUUWwry1Lz_8@l!W3xECS$~j&=pK0A$hOWNf_}|1=zA-oZ1iEt#-BbSyf5Yf5If3p1 zL-&mTLN|);N<;Tv^km*yYUp}w-3WQl0!jaAKU%)6_oksM`{$zjlA(L1t^05G&x7cG za01%$3ODj*PjjD zx|BHwv;%tn?P}}Fb$&njgMnOQHFbTJbmcp;RqP#mX^-KQ83!f+yK2 z_LovFa6Js0-C!@!{>iZ$$#salBS6ycu-b2%!I+P(PJd%x ztsnc&K*z0xwa{6Yyhb2_zXMLTGJUH#??8FCEpQgg+ko~!`_;x;=ITkFA4nPui(mP5 zsnd|OUwS(iLwB;_*HG+7fw4gQ)y|Si?dM%bzK&Tc`)$rgQ(ljQn^-;>Oat1l`c`?@ zljJ=EB)tgxiIv1FZp15_I=2;rcj$kHUlOl3Df14{e)SMLex4{^@}1*148Jx~Za3Hq zv|ry@+gk>B{^4=?sFB+x$?R?7J2OcwYCtyc% zy+ht6unWY2sT;88jq4B<`@mX`-_X_l?knsMfulhC%ORO0*CqWq=LW`t;b1EJWh)qy z;%U9P7E8aIfwAvB&V3uYld!)7gn-tKh$^~8`2p9mG?{aSuD5 zavke5>?4~w-)8uCC-$?!T%h}9!qPqAI8IQ07v*)oypM8^ftP{y>ss5dAISR^)EG>g z!sd7>``l{hNw|w^yl;)|IJ$a%XhNB@K}(=@Wt&KHbs?`8kmQF$6#Cz;SNXPbeC$c< z4#r+|uK`;3ep~lO@+JdG|4BE7Zaq&r4tG)RK9B%f_c2@dU_N6R)S*2xL0J=G!F(_6 zb6}^{e{>w=JLn;Fb^5pMllp!-<#qeq$~r>eE};E7VEg4|CHIpr=@Ixu$EVt_$TrUX zdD7$iN$gjF7l78)*C}5oZ#9s#7XGJk7(+MaNw?2>?2m$u%=KC~OFAa){^He~+XCN% zz2E@*0&+vDjKh|XT5**5_Y|__d-2;m{9z|O4m%G`kHc#$-T!qQ9vDd*mC|0G^f=6; zd_OQAX#d`^{geAbwvm4jd88JrBHTS~k94oJ@a-8jb=sJI^+rTjUDU+1vA3-AG5 zo^VL2)-S;J41N1%$iI^B7-{*p!uIbLw)OrpuAvz^^{_b&oC~zhc3Y=Ad6$F1 zKzy5uZ{kykF&0Os?wM9Si?APwjl};(Soe!+j+BsV7I|SHX$dS^uh5s(OiQmJf9n1g z+E2TptJ5RcF9%NpCz*MmmZj@_l{~pWM)xx*6Q_JH%Dd$UX#>mmfCSKfRks$os*b`A zGzATTj03rENa`4-j>21<*0@c6&zyc{TDKMU7lTWH*6nNS2FaTO?g6ub+&@)FBg%Ev zNM+q0usbu|UzTAn_piPVYh5-Gl3YKM_cxGKcQkWI2ez>Rd>U-|D*hgi-|hW#q=4yZz=)PE4VC$So50sFR~36S}+9{Xh3biO{L z=);^;f7Q@wjm;(CGN9{gk5}jIlnp@`u2qK-VwNT9!IqT}%E( zAkV*Q9jV)jxmNogA3qrm<)G~|ZQWgz`5qhuTK7gH>jpU4 z-w9nkep+GQ8axcNZhc$#7JCO{DqIN6aXGqm#rqv%+=LQCSNBJG{_4!@nb(2V?QZMp z=hVBiOrGI3b$w4;{vO{i%XFySC(s>W=;r+&bVHSNt*sJ zy#c=lOn-OGt>|x{xk8gUeVU!u%gKfy1GAw(XH7c-9A5x-VHqC3bgK4TlX3U z*!5sOm;rK_H_F(bmG+TuqYGbPZ=XGN9BK@@I(?1(VNfNQo{yL+BxSTFuM6l25>=>w z9ZS=@0l(@x)B<#LI}O5S7zhCEAFGm-nokPImvj?swv+fKNw-rJ-Q|X^+=oy|nJI>D zwyi7oAuJ&OQSbne;|YEKB5LnHi0+-NH^4=xH_+AXzXJPb!Sg`-+tk*T^MJ3BFKG>I zjw8$4^gNY7cN@BH%UrF;{sRyPTK95WSN6~Mk}v5yIFJ1o?XT9=?eAyf^~DKve>8N5 z{ujD2bPpT4f1+3SCiZ85_IJCj8zOHWcoIAWN}A9I7zg5O29txZ_)FL1`;*MqIqCjT zg8c@t8ED-_>$-iMI${kCY_UzL{+jXacnE7+ZG&d4=F^FdfK!PP*N)Mq6=^ z=N(=}C(K2@J?QEr=l7qaOfe9-Jh0x?l(Fz1t)-T!re3Na5fJv-h1Yuv)~?w}#iy1ACqsq=z4sE6*rse@9d9MsTyCYfHJhkK{QD`$ri5Ctc5(4)uf)-v_Z@0g8e4 zcb?^9>bl#TdWmj3!Kl&>-no10CCw06RLHF8o z(s4K)y|clkhOWNPWHosk!CtT(%*WS+?Qikkin_^j9qN5_vr{hN)a~5I26_M;-yycY zr*lA=13G~=z>IHxuC;%`tA$hB0nhmy51gC!SN4Z)r_5BKbsx9Zd3^s(e#-uk*#{&B zl5`xx=r%-Gr}^kT2qHlDtJ^GpGiprXI0G~R38SyNJMp`XL-j|;V+-YAa}k&Ww14xg z`PsE=D)$_K8h0>vgD!r~3jy(~+^)CG`!Aps<99i_dg||ueE{4Fv~Evvlu*lgkCo)V z4x->s#*+9cx~kY>c^*x+f3c1ZRi|Y-o}01X3621*dzY*VJ;YS}*87){E)F%w&`n@}2%JM@w644p zOX5&7L>~v|f~Fw55!*4lzZNk6i>}_kh+O1Qub`{@>kZgX11|%ud)U@pJe__4UIWho zQ@7mKmFpXEMSL%IsILuwf5yJb4B8rK-Mp$8;&1D_xHk(71bsk0?Onnc5NpIb%y6(A zXkArJ+*Ph2v)SH)LJ$O=X4nAnb1D5wSmGf4EZ*Cp?lJs*8~cr53(&gPRz^Uq6<3%PFdJY`-4+TUfiu3WcypL|KOy_IoMT-(yKyiLzD5p-|HUXKeouGvc2 z?S}4ZTUV~@|1P>k_IVN`4qkg)=s5VUaH!`Ee_fQR4NeBy-;ZtGhU7H^lH_`jIp0?H zH;ir!UELqfrCfW^4QSnFu9TEZ=7*cfp9Q7@bAM6J_ldSX4h#Ans?6|L&O1CpnOA|< z?QZMp^A3ktCg&Z@dB<05>FRkr*w3MAouBr%+FUCRC&5~mPr*rYH6*VQkaQ+oOnisd zp+D!R+fMr%L-#Cnb;`kB;(Iv>GdxUY1m?uK7JmJb9Af%a>j z?N`UUIVJ|9z#y=c`J)&}{EG9eaV3835#50fbt}4FSqUkE{R?0-(7M0cy7JzTYV#Ny zpcdFcqw4EpAv=z%+gRIKKPL^B8UCJ+eS6RmXx&I^jmp)Vyg@+HHE>HqSA3Qv{>E7z zL-%!bGgH=_1I2y<2m-CU%39`<jLvf zTe{+JYCDE*F1oti=3>7TEC*VbO^GDe_v9S{e}E%E-kqn9>(xq2_m{JWxY`Ftn zLXk@Dg|r#y3AC=<7esP>MBYyDE!YE0-A7ot#GzAL_A{^#40ou<(DkH>a{m7w;sE9V ztvl1!y)w+c0hkEJfQ;r`BLJe8%l@3O?2obwuR^!7Y5+M)hN*JGFIO_>4UW}tP0w(b$~eh04mxGo9HJ56P5 zNP897{z`mhztMLs=V|C0+F!X3!%MjiKj&cc69ke!09S;=IN5 zZ*T!Hbr;+7gN{RlNpK;$dK~w~ejo?|tvj4KmgLI1pZzG%7-WMk^xr%neuijNVVQqr zTzIZ$e-vGhlq6k={b(=;Xx;g?Zp{a12jB%~06G32VC%+=aWPifd4fZ&Lsz%kVC=62 z+Q@gaLtTN6j$cD;&Iav(t|v_-DfK+|Lh_5j5+Gwq zpO0EK+G=k(9!DH3pIggZr$0p8KnHLhF#D%xqou2lmy)+R z)Ead4c$pm0 zoN?6BC_kI!_ku@&?(dg~A#O^4e~J7zfaz09>KeGqp>9LRYuT!IvDpc}0lI#EYniL% znB`D!p{x7lQ0zy68-UiGX6wqhUP}HmU^y`7A)l=~ z30vuxp4ko+H|qTc_M5=BK-YV*rJFG=!f_LL5%}3Id9Nm}VB;68W1d50bV!fK53o4` zsyvbQ?`f4vuItE~1QvojL4p+()wSvyvi;M?S^k9%)e2o*?MwD0Z!mOADRU5%1Fb9Hjv%=%UdDT-z%VcfnAZy;m2~}Khnj`1 z9ybNp-wH~A)@3S4>2_<%b>HReTYv)4jt<%bh`-Iy5!Ty_$RhT4a?^2GkNqd$FQ9eT z+PdGYpglm9C)o#v_ngYPj?*mN>?Re*xq85%T6awAUQU^-!9zgnrUnpkX!aDx-QXgS z3nUIb>RY<6(C@`x-LH~M9BMAQo>Wz7U+nJzj{~jS+FF)6Zh49P7IRn^{z?oa>GzI>(S5`4HxK)PARlO5LMX{~8+lWK zq*<`McljH9wiK=Z?`9iKC{*AfhuVs+?q~C{UjiNiTKAlkl5%Y)Z!eJa9ekqmPI`WJ zKjKhwokr^>u|Ec!#cACkmXzys@>&2%@?M31(v72g*wF2O{e_?>(Eg6Kq*B+rhLJxS zR369U?RL}t`X65@{{Ri7pQE$|A^^Ml;)7_8f7g8fI}W1#(INK0~g`EMWjk`BSA zpTRz`J&v`%GA>?ac>>)bhVHM}S7Bea8qm6{Qc8?t^3Dg681X!#sB7c0qvuXryJd;(9N;Sv_b?UyOR6jg1#{1-jl* zOUEVq6$8k>8eB}CS?_gsTmI>KC(y0c*(xai%XliF+-*SnS7I&BSWMpI;3;7GC-2$_ ztahjthR&(@Vq00CJM{B;wJ|mFrf6h9}U(GoHPGkhx_}q$)$6BYl2Ak>N zAkaEdt9`3AewqC}&pEt;m z`-T1>KjRgvJrCfl=)|S{HagUOhK?&h9k8ndw9Z$SUm5+ov5!c8D_duAT}vl{P7s}~ z=;(gd4x5WWcc9xb*K*gj553XkODgB@2s#N?CO+w;`Gre&_Kr`#Q2x}kfS zwaoQ8dG7*AAHk*d{^#~VZ-2wQwEB*7)8kFfH~~4x>EGf|we5*RjI*(644MLFi`2ZbO&0J|-pkaU ze2JkP4@&ZFb*RQh`ED$~4D>b1@5GL=oY{}Op}_P(w}a+YRv%CibaPLjJIc`A@h^1k zKF@)ZL-jLs$D%h8Ob0q{?JOTMo*-`(co~>J%S)xA=uAW>TY^A(2b)j90dTxsC4kI# z(q9_A#ykto0u{8LwfbY%ldSnpeZ>Bntt;2Tx?(>Bd=0d&es6FcCYGk46KDtIIMPR3 z7cR$-pB;+nUuoUsPKRoCValJ>e{W&G4r~Cro!dzO_$mEm7x~i8a!;b9@F(1VW|Wub zArjbpZIqW|cT(zkh=X={-A@vf_Z#Jpuw44dAFza*uB9HZ%gg%^bc}qvxIe=vSM?2! z)xiLu+e^NSM9SDp-uK`zkn(xNG`gI7$wzX}>u!g-+t4}dP39Ni16t=ZTSt!DhLb-A zNDPjj`(Qib`;7Z14V_!CnF{U#TIWMsN8UT|IQdTj(b4mvoBoqTXNRGqf* zSpBREtmCrW^2@28OV)iwR+ylCp;7)4%Jl_)AmNmLcAix}b$`??N|u_Cv1I-9x_VN0Ra-M)?O=z8tIv+K)>ZucQol|968J_tOBmt`%rx z%?Uo{hR`90+Udi}PI`Xr5lj0qj57b%`Slfheodfz)R*4g<)L>acoImpBu3$<^pR=2p-XTm&SBdJ|opp2hw(unANlQ{s8V z(#??P6aOH;+WQqXV;lMXmqTqgbQ)sQ1PlOLrzwp>O1;ki7xFI$ zJ%K*XlXec-+f%)No2J)?mGj=o45#|R&^?5G z2JLqd(7N{im+J@eegm~OF=m16FZO9*#WlC7)sM8lL6=k2?~#u0W!U!xqk-1Vbfg@1 zJwcwN6|lTZ(Dc_$p2S1WtH^PbC)26A8oFy)z7-q-TK6Jb_rlHG{|K%IR{~RaqwTM} zS9uS*q3TXmfUa8{A&I{WDf1xEx+^OAyPjp0{S8n~{MB*r)^MslhQD7>=0{L{OIml0 ztviCe31AAi1(^P3US`Et`q>Qp3-geE-<~N~Q~y1K{fl5Lph~H6VeeLFoUzri%YpUW zE6x9sfyA^*ZGJ05TWPwCCcM`08%p zR3~4OK7P9in`vMc(EhpYc72k(DA3op+Zo4iK6_r*$8S+|TcE4c>rxIJ1lqq=mTpFm zkGO9fTm=#=)cbcO^p)f(PBjr79lz<=+zXxu+P^Do|E`ErPcRV_0Q3BA){%67o`6%H z)10aZT|IB!hkXP*4YV$Y-I82u$=eF{f}KF_%Mw4O@A>U|>+|w)bR+0WKk`Fact8AyuKzncwC}@jc?8o_M;(ImXhlcJ)-lk5K(M#O1lI;JyPMJ4>?%zG+ z4}P9#|0hU!k5OLs_t#N&0}yxe0EgU?oaX+1oN`?#=T0r+d;|910q>4CzgbTj07*Cg`q0Oq)lGDo>vIMr-J zXCXEbunTCNA8ehjpHNS51rVL$+EyF3S%KElum@+q#QB<+?N22G)Yb&DoX!c_01OZ_@FT z{u}brKQ2x8-yXY}>%cIe{r$_<-Avw2AZZ``3YzPHw1-Z5yA)~TR2QME{XK~NUm)kR zwC=sK0^-nz4Ng9o2nv8~_j}a0baS)P{+@!dw}VsNXy`tH{c~VF(EheyZW7&#K4(7< z3%xj!KvLl>WQKZyEc| zK>NGj_IKFVJm(9>gR#II#|6DB_TO+G+i`StdK7!vzjz9Ek}312%avN{jFGnm$npIi z{F3D7#w2I&^myID^3T9uK>NilA(C8jzN76ooJRsh{B7=ElqIbC{=!P7ecYEh)ns&a z`wXPaHQ+^%!E*6yhOL|bE&Hut61WkV~fZ$;+MU5W1dJQQl=lnX2Eh{|&Ui`4Uic_mOuP zxXP$AEbSg{WYvHC6P9l6ldSsyB7AJDexJ0z`INaCOb1%`4O>^9ciu{VDcBCo_#V02 z(%1fa1~4C@tM?Q3W8YvuF$G%pu&vwgd*)wo8<+r+#N`p&-_@M(lsL#d8>Di{!A|Aq zo9?Hj*na_9{E*hYivA;Uc#OQ2;4SbHknO6z{+Zp!(v|se2FAW2PL+eM_V+0ERSz&X z0qt+l*6mH+ATSaP17;lLWTp03`dR2Iry5}B-irNHunK71J8j*JgY4IU7T{E1_Ok=_ zc-8w$-l0xa*f-s7eX#Ej#sRJSf~_m>ce;=KC%{9%^taEo727R=?o)l!x>4+32HSzw z{oK}V@S}v8XG7taD~&h*=8C$}VNSKn&}~ndJdh8xu6*a70yD5o`cj_hDOiKY2%h^C!+D!KUsiTbJFn)c6dI zrk#yAo=lmBpcl~X@v^0xv6#Ha!80IX$5O^*{+ZmH#KYQ`UXdQ>A7S$`_z7tLp0<2< zwLfhA(GflyKg_l*L(3fJ$!ncz61uvbhEirMmj*Z|%EQt$b7tbQG? z)W4$zPW7yz`!V*PgYSXXU2f~j{=VyHVh`5$t{Bf|^D2%T-#Dk*Z0MdrnP#9D(7N_H zR@WTz7J+5pVPLk?&|fO*CeYoFuG4ouxh<^FJkQ%yzJld3B3 zwZ{Gk_zh^?<+iTe_j$^%mSH2fkbYMAJ;<^jAn}dd=u{7(tJ7K7w*p=uax&jNW9g>8 zH`0mxgfUO4pi{j=dAq1TY=V{X6v4Ll;xl&=mboEi)~%; zms=`S^mdM0uS~~xJoYz(ML_E|mOt=!QGNE)$S(!kfwa4{mCRR}Us){Y5mWJ<>{O%C z^`wf@kFft6)cPZ>dycIu&quZ(|2!biN1D$g53uJK9bfMhr+OP*x2@ZiG6TR8p#5!c z>vs5)`yN0)&>NWj|GT*m02k zsUSXvrg2_*KspX}{$l$MdH}6E#nzSM;it$i0WSbkH)Bl2eiplv<7{;Gc0rz3IY=4j z-)Y_ZZQb)NR;^f8`8`td9${&}N%$)5<_}pGLjVJFmAZZ3H^Mkt~+n%ef*ov<15Aj(}wchY|F7}JTQlNFI zq9oUD^1cPXfFFT5Kg8|$%D9kz=AGkI-y6DrVqe?Ay9R*P?O^N5cxywxq>ivTPl~US zL^sZIcac+7!CuFq2loBJNT78CB80yuC)oCoUjkkPrfy*~tKD=Ql5A9mp{vKmci8_9 zvYct%Whq&e`kv>7NE`d>%i?mrgOTJ;!s;s>U~&G zlm8M(uuz|uSI^P@^PTGX|BtkHfwOA*|NmF#GAD^fHz7JHU34)KjYOvlCX%6xbkV3( zQW*-RXiBL_jfA8aDvD%Ol!Pfo6b(fo8B{`Q+)}9i&-Y&I-B~l=zCORt_rD&GXM1|@ zwO;4Fu6ymZZ|G>g*AnL=*aw<#y>4)IxQyur1ECLye>zWG=gwa>-`P_*{(AX-i1>Lh z2UM3Sm4ui)udoce1bM!~&$q3mR+Mr?+o7QS065fH1O+tT&a0%;Uk=1p{w=Xp7?jbXDLZt z8S@CSymDnsK70lnVB&eKyU@0G&tbet*!w@^{BJCg<4mG9cMZ}7|J=lSE6A zv@{5hurHgx{Jgi=Z}soQF5_7Ciy@Qm>B@DSMWkEo=}ryQSeIk|_AYh_rOzL6Z34`<0OCfUbu5#9s#Afiy1}&u3bx$l!{M^DqviPt2&uc}o}0rEV%?a+ie6J)X`R z#F2Kjnyro#vNlEtt`BZ-8oItyO#10w{^WgNn~1XoG=HDC{K*d(T>0Ny>i$WKEoZzFAM@}%m`^Pa znVZnnu#Pkz!>6F_rHa)J$$jX*V3#(h?WKtHV@R*#?g944s+2M1K>e!i{F3|e64)hN zDf_E3o>ZaiDIYC29e1-=&a+^}MS3sXS*3^+0v^I)CN4qNdm-$aO|3hks6_50GE2H(eh|yc;rI z(A97e>Dt28AaXK}{bqH8=S&A+zZJAiiQZD?RE6ja_58b=IOAa=sDBmY59&$Y6Z07M z*-&~Minp*n9`*0Nka-E+c#xFqkfeDT7K7?mbGmY#x()kxAagdq{x|fqy1KrQx{l+n z=kH$99E5*Bb<><~+G)JQ3|fO+ukm%$oWFX$llgwge2=d7`*x)14!uEjCpukujvyEN zTzCScO!eNygwxgISmFcbgFTb=|03~M!PV81y6c?ouG1Ogq4F7=w}9MJy19*$T(HBDP$f( zSI3#3iGK*H#gn>vz5NkvPs3t(0sOYL?py1(j59L-NZk@LbG&lcNc_*>FsQ#W_7H;e z)EjD+F*k#pr~10pT3COzon>zgnYTUNX{31;R)Ol~Io%u1GzH7>1WG9+gTyHRngV*JxCg9zbUnnx;10A9OOQ) zv$0EP!q#uUIv(gap1Pg;89d!|;$I3Gp#C;@y0U)L7rTU8*#2+2VezDK>U8D&P1|3Dp{RoNmR{!Yuuq$MCc>eAo&F^q> z-K6g4PPaR@esCMe{W$)6*6V#|b&vW>2a#{qXgixu8fj;9*s8xjI9+*;^JnaT!|&j? zhw}ZcuC}v+-62!0S5o)HdYrREcTn9*T#F^dPN~na4w}QcAm@MjjhEWfZ278g-cQW; z(be*uMEr+gDX4B2rz`7CzhXZGGVhXhrth1d=*mIMH)l`CWTLAi+I@ht}tMbVJ@F4B4=ibs-tUL~rw{$?q7*c$@o6$jtW2Gu()}fCQ+& zHy>~PmFp+lvG0Lh;Mafpb+(?gJk$Q*ej%?suj1scEA$5~&m~qj@(8x4U>^9IW)Z); zpZi)oou$NC1%;qG?>ikipE!*DxN}O5*$H$C(K#-QIt{WyITGhAs0W(Qrgo@{U5l+J zNEpDj;0*4!u5Qau%20w_7h?!AIR`?fR#viJh7$iim?J!hq!n^)qE5B3y6y}u72h%H* ztd~rFpg+2CenY}J#J?2Uf$Hvdy7D|s&vQAig=~=T7o<9W54ifSE5Aeh)G}f7bXKw) z_7VRuoN!)J_hRx!h{^rL>#-NZZb)m!c?d|kj(XPmtH;4aBy7&VF*%N0M0pV zQ@3}r9JUbuS2zf&dkb+zSB|f@r?b`yBf&3+>VH~Y9amDh0Mi;>9aokRe>MC7sypB5 zzIq{j54OW+Amizd)2v?gJ*Dc6n|kxnjR!8#j+%3x1h;_do+N+Z?_1d3hfkppe1CU5 zX!Z5Eoa`!Lv)?O+V&Wfx6D~^XUT%LgCiD7q>>1DseBFlbcqQ`z83*&LhE1hD$#UpS z{F~r4P=EV6-Jj^Ie?scT>;r$?o_=O>d>u{vqSL}=2fA^a*1S#pjS#;isr$CmmFvCV zVE+^Lzy`*hiKpBA|FhbbubkhkDMNcWBW$8Lr1jRVCFkNW5Y%6WYY8!VzF-vg`#`=M zTi_iJvRuEAwPGoUEFOfYgRag89w5yVFbhh9Dbhlyq9uC2; zAnTwq*APFuQYXH@g=dD%RCIOxZQY7v0_210-sN=fXv@7kttnr)6Qp10``xQAvATL( z%sDG;I^2}3x82158xDi&Qtc9g`>N}=VSI$r_Yvl}a?o+IfPw8kPxm6ybbxC>bu*l< zTtB%F`=c-!{PNB9bfu0G^}^;^PdAVFqPqlCcc9ai`#-l}mr(ltPbpgoNBylIHmlLq z^4(6lZ{ROacbwCGpsm%+W&05L{#KrB>+fj!HVB(K8YZx}CaE_+^P3|N7fpoumy5+5#F};tl>7|_CFz@vJZSTe%Er(PF_~xZ_ zFDG3WP=7f@N;s;Udkoz{rF4tY?e6KyeH%}b?kP|A1*a?bZ7jyV8r}f^`gFcm4l!r2^-#wufwV*Lu3LettgbT6nr;Tsg@4c?ayBkD*&wO1B8zFFf5I zr0EYsK>aP}baSvh2-BdnzeS~VGtYi`UIgio2JyPo zPi@;DT5Pf7&N9wZIaM<`y!4%@vG6Fc5k|AtL z`VN{L&Y7f-%6xB@VLT4B$C)})o^%%m*D&tavG1BsSl(;i(N zr#h2n0Newr`@GYY>mc7?{{?n~KVFyJY4xRi<##$kn z`8AXM3!nhhuY=AnxnHs3)x0MKP6L1by3qAY^{co|*nEesjz<>}zb$kG)n$q+AvOWq zG?)vsK{~cRPhqG#si*Z^?~qG4X_to05zpTx#4mt%Ky@cZt*(rpAB!GA#!tU~L{ozL zn}=>KCM4QUw~}rroWj_py3?HQcx<^a7oLEooXhI>Xb-sg;QO`g_>{OjY&N4C54@n? z5dQ!~uSx2@<#c8J;9Tr&;bM?^W&-VE>V2+jr*ger#=YW*1VgKFmFlc_;rUW}=NE&>%ZT) zw7*5@PWE)y5Pu7N0jhhPm5QC*k-R{CDE%Bn!nJ=Lr;Dx%n|D3kOGqQSo!P1`OAQiY z@_a=O_FR|*e*52CYWy$i5H`P{tH;sV#D5810oA412D&{vaqR@gz+K>v1C#%><=d#P z9rw~YhE2^u$@Z|E_)>50uvOhvPInjEFR@G5!S>(E*L32%(9`{y`1|3e&Pm;lffDaO z=|b5;D`*bunA>axsk4PYmpp$nUBaf~kmPaYIpV(xRjy0wKIU{!D&pR5>>t89@XNPF z*q+bp_)>IT*reQ=)NR@of8ZI=a@eQ-Mme5e&+!4|d`RZiI=-}6Q}Vnp>w1pcp6T>ESA^85v66`CW^!<5}hirMMzX@*M>hI~kPnylJ9aMLW)0O*Ue#L$eq`&#) zu%Xm(A+>whOhH$JNJP4EuK~#4a=c=Qkq~0YKH7KVq?=7T9aoMgeq}fr)SpM(ajMUa ztiOVUv)J$Z@PxhnU~Lo#6KUd@N~<%VN)Aj**d`$Ad*MfO&q| z8n%AQo>i*<^bQB#cGY~#HR7G5IRL8rgwxggQyTXCpZBK}l&XJjtTj*Kua2jp+lF*q zKy~v=>5e*vZeLgbvd$*Q{XBHv@XAx(_c@hx^Fhn=3#%Kv?{g#e&%iIwK?j&e^$nZP z&`Gs%%|7Dnhw3*Z{i|=APw@WS9@uXNx!&Yocb&m{qtv+`pNi2fMpyGag*1=D2cY@h z>vXT}W&h~G_B!y}XL?JkEBE5&Nw$5Q-=> zJ@?*5U5j5V&j#gKbaU7oMpxVWv&4T1J^(F8ZjF=>llw|fyOH@meAUb5SF}a1{Xx6c zeqKC~b*|fkbiqHZNRtWo0!f1Wa*LRR$Sc@Z!h4{;$~%as)7J9_aXy2Nw#!|_*$2_y zN&lKyo#6Sw+SnVxTg&c` zJ!`)6(S6&?_dwE&fd@hJ-Nx!h+MLaEJ=k9Zzdxp-SvZ9A1kb-WB@P?{^{$Wa)}MN9k6l7Xwtl}6pC!oixP#fBIh1)Fx*96?=6yV*=?2m) zrQh6WcZS-quP=7ZznBY2-`z_;nEexBvX`EwAtAIF+dH6jA;yAXVRI|#wViyx{?FkX z(0sil5y{s&&aY0miF=VjuAj<0xcw=dQ!yT_Ae2 zhU9%93GBXKd8A)SdhHjNvwsMT1of-frVs9S+=6`v$a8Or(>bm(c8Na?$-Hbk@S`%W zrj7`kuhG@^QB0b@;rM<@-A1J>fIS~H&*Ebinpq>m<^oS=8FAi%)u81@F-i!@bN+>%h8Xine<|rT ze_PnU19pR!+hCW!!`P1NZ~s$~t)D;fM}p=rXH?j9_551VnP;v^e;Vo3uc^*2c@Jk@ z?3y?6tB~~lNU!zTnElP5C8%FJoL|y^uE*X7ZUEI0f3jVVC-nW7Ury*K^Qa<(0!`;_rjg z2PFL+=5*&_dj;Nw6(Hk@uD@<=Y3CtY4tZmk*Q2Z9H{yqH=3E4{U1!T5wCm>B+Cn=J zO+6;Jrw^u$3!A^Z^6X5UEEoz}p6T{SVreIEY{Whr+VZ!5U(O)cpXGZCa-GGDXI$o5 zg|@3jq+G3h>sZJsXE3JI|^{@Lwx zWu4?$?MmyZ7~L+O?mnmcr>A>YAZubvujHK!1FgURNjK;Iuo>j(mLr|`Tam4nLr`A$ zE9*LE{6FfZP6(Uvp01X|S)T5A=kI@04teN4?dht&O*~yrKPCKE{-#X~o8_La`g^gb z`>@mfZ~QGl_Y+T7{cY#zKH+r#oAS+^6gIm(UG=xKr~CB(!QUcuk9fN3?~R`By#Is0 z*$*)9lr)`h70FjH^$UN?$qxK1k!RWeGOPyeKQG#@7<>mTatnP6jt7|s>3ipj z)|Z?Iz=yc`ybQyLDSF%0U_#|1B@hSBoj!&L$Ch>2A$3S%} zy79izAf5q*_HY@D;yO;l8rIL12TS@}G&O8qLRZ5*#Fug8ezsZ&WGHw^Z4>)YdIOx~~iBKBpl800x}eLi`zJKpJi5Czk@ZiBA2)78ZP6ut#5 z2bOdLf93j0(;-|3gqE_UK=po`g-%!f&3-IwdV9JZiJt|1Ky_z1-6hrdE-ZEl@?1?& zzRY>#J+Y5v3&@eLE4ngNphI;rOgPNJapnt=u6`4 zhZ?sg{rkZAw-Vbr_yRtLt#lY&PhMWZ&TlqVvGcLqnXKP<`M!|Mo|4TuA!xpTa=P`f zX=uSt9e*^>veoh|L^pJ|#^$>!q&*kT2Wd`{?}YpS^LRP`Zi8L&EORCai6_IRD(Q8c zZO{IW&=1tFYi;`AdsOB=}c47&sw zC#4?bxvsL;C)?lS?2~aa3*8=Gen*gQEKCBaR;h=BRySBbdYH&{-W(9JCF4r&%d3d*$aPw`ge-e zjhu8l?Gnxcxu)Is6r10CG_#)Jz93JhA#pB(3{agboX&&T9)qW$h@Co5uRR6t=Y-7~ zbmEc|!b0M_28TfNnd9=ga42ieupZulZ2XbuBISPHCZ1z{g?LU*tZ2kPH8mv6aW>vZfAYO_6-e==SdvOjZv*bMOU-GuluzO?XkBR0RW z3~X0{glpOQK1x|i&~}rH?%kfh*AYJphJyObWorq+`!SbdUj_1h%yl(cx2bD__YUlF z{ZP)Q&LMKn3#`L>{%$7Cm#`O9w{;+EuREV{C+!hRKi6KKdlr0uGhYmw`JQe%X|8~) zKy|x2UAaGK1a=8y*-H89@h~U^uN*QLhE0K|`w;PG!t!q;y6kQ#Ee<4lmF3v|mbsu%Qa=&-E;gkcM4msyi@15!E^56;4XO8OaGeP9a@EL z186%EbNrRCX+U}%zc;aeH~bBnue!GAV_m8;j~Y?NTnqA@A{leGVUu#2ahA>3ooGtF zvKNQVV05*-Mw8|NcnMUO!<>Xz>~7}HP#aDM(XEDv=%%MyT|HkmOS!MW)4h`T-CzQ! zE|JJ z?3LWFfUbs=d%4#UP6BN=jje9zlu3NM7rWnX3P>NjS5tG}5Btx9W?uS>U3&RW(bd?s z{3KQOo6JW@A9oU6*#9K_1ez}n#S&t2T$nz(jCm2B2LFAr%UwOlabYZx3kz6RL|4b% zy~O_;j?YQzQX~>$azAzl?7g8o`29DLZ_7*8E2TYVu4Y}^%kLe;9|iY=9v4~#vL@1| zH*-+z3qZ?E%Dy2Dpb(vpTH1*6?_%P-4)1{KuuLN%@;SC0@Dpg+iH_V~m-bHBjPdgM zJ8_O5!+jQ@<;RdAA=V6AYv>ABfq$QI!NtjZW)nGWP1ro+KIV9k zP5M`kk$$k3esJKHIcEBN(yt=Djwf>7eHUp*g68Wsn?87-q@1@)Xu`%XBPk~ddF+$= zOI;f_n>^h~=;gsYPnT)CgqY0ttB$q0r?Wkl?$L4Ty|CGZu8vc+h<`RT2K9H9)0OKI z&9O_6?}r{sSLfBm=>F~b+lq9V(8<$X>vV@;8vzn#_dm9-`dhdzY)%-REZ-c`N%>Cj zbU$&rvM%zt(|wBVvHVrtwD-g23{UrY;=cwfK+9p9)7_5k2ar(A_TO|fISD(*)9uG1 zp0vk5Jl(xcSH2T*H~S@A!;kv?*|r96zJqStW9T07bbql@G0{ElKI^aO{+qvr=w6Sm zwg>sXSSo2NgOQGzk^^M=N*NvUut`Zujf7sbahjmgd@$~u-cM#kS>SuYI<(Rw=_EYRX!ncr*6Z#&b zv<-Ir(Dj7k55r~-x)QeWyGMv$VI1oQpngtgAK8qC#`7*Br~&dWg+VefcjdhQdhRz9 z0YdS|T-SAa^8dcXmHPm0VXNcON3w(S-eb*A(mn~B@4fVQk?vj?1CqTA=xOsAlKY&s zZVO1a-%Hoy8hii26W;G~=|aLW??2#WY$lo$><|8#L%J8C0JI$3QdMLF^Ne4y9|ZY* z{f@_S<}PM)*i^nGsZ;rWu93kRp!uhWC4?q+=IQGF_y3JtMz)B^*3l= zW7)5DB5CqT|7eb;Hf9Xtp0taBUi$VneOTJXFzk|kH}e@epDrT(LNEOY_K$_}Uiyyi z_vLy1N3j=?Ue}Wfz6_i9z4TA9e;zCZZ4bNxUP5F!Hu?QGLGvJWXK2^O=o~~x+rt{- ztcM+-^~S4vB?RA1uQrJ>6Ka4zkJ(eIJrpqbbRC=2ZAJV{xCK;qk<)z++bggZR)VkF zQy-xHg1q0~U$4r^FR5$34s#4o`YZ4KZc4gl zpt`)`A}9xW?{|0Xy+Pi)3m0=-=NEbNu7k#xoI-bP{92l-{DETC0W|h>FLSzbJxYVji+z8kJ|*b5S%hwPbah^lj^5=k#?$TT zbYE=Eb(N`QOdU84cAv+2D~MiY&i7?2_rnh6$8&xTo14+qFqrtm;XaUJmHN5Y>PD7e zdkfZrU(e3Ip}CTZ6?mQaC~mEJXbpZ?!-10o`%PvY$Ngo;@8}M*1vN6xSS6Z z|H5@$Pj@Tvzk}aF9!#L)vz2? zcfZq}KaKlqVHLa%(vRi-C%GSTSpSm#X6+9%PvQq$sP>4R2i0J!?fne;8sV7ppghv2 zd+FhA;p(9P-HD#=qom1$S3q?~I9+-F^k(c|Lh1YOcX;(6^_zEq=chg0J*4>?LerDF z4?5k|@ABRb?De1)`2MDHjMDlQ-Q0uRM}}@$DHOsv#J>bC2le+Crz`7@{jd*%!Jy?S zdJA1S6BPt_C?Tlm0!4bXvcESly8H?{_OC^(0L(>7(~kPfp+w(#?V;pne^8 zetm;&5Bvf0yi5^wp=bxKO09z4&~6nks92>kMjyL!kYs`!Ih>xIeH0@e1VkrsI^vC zkC*Y(h#7*ehFQda9$o{AH8^g(XLTd;{MdHvJ3;d-nhB0;abChQ9vwaI{x0dC;yf8N z-+P>YpJ3Y#2jLee+mv*$ZXEOZOzWSXf1An?v&i#L?yHpk+VJUQeO5Ux@cx+JH_s&f zJEYh8xPWvm;U-YOvTXX;XV|vE&#)8ZTyJ?*TW(w3yeN;KlKRN18ZrAlzbfZ3hlj?X z<+jS|2Jg-8guOfX<+g{hDfML9>%_qS;GcoSxg92e>U`vMHa*X`XhZ}2YXUixe*rJI zJl)gznK*w!vuBbzrOi9u)3@>*$iVozer zgM}~;{JgE(Y0E8-pA5>YdW3VX;P-=n-Xs1;@D*r2cRBy=BA*Ab9|m8ufPAK%9x-ot z{#BU6+9uQo_3xnbPwroDhrKg&0RK2>7F++c9~7YbA-dXr2NHh-%mvkLe0<<~OwO-P zoLk1k;S?A~pVjAI2h>Zp-?2o`Z2V{GQMkRJWJYmG|XO!9EwB1UYZZufiC` z{3+qab@ewb9x=PU@_do_ufeCFUEZv&af`s)Ja2bSy)IgKLbOV7XWN%JdISeW#0r}IzV=XeeF9^ki&^pjX0 zY#cE^p`-OOf;eMgCa8a9Pq5{8Sx4?u!JhgO_uYf6kLi0Bb2eE2^g3}KFWvpy^RGVf z?|@b>C;e+;bt4@)miB?yVZO{s)>^I2?Lwyb(ugVZVDS6FKh2j>f6x!K-4@!pMMS>K z^&0j!LED|w>4AFG_2m&$5glzO-x4RXoIU`WPg$!X#G&CwiFL`{< zzcOMLpqmyXWu2J#_rfEfy61AOP;_@=`whY?7(3an;n=0`O;}D{h_9_W*zq`iRm8lF zZo1QLNSbDl0jitfbjM@Mg<0@8_}^nnxN)>HbtmI|T8D`F%q!0~h`$YLzL6}?>#c62 z3O_y%`%>`7fmw`U*_j;ACMU~N)*XH$-eFMx9&`T5x<^hqc^A8uHxT^FHy9=aON zCe8WK0<^vtIRE52Z&&QSz_0I2#^PKSTHAU4^&`$m_!88=RnEWKZ!s>wmCzF8KEoV0 z&)aZf$#EgKbHw!Y{3{~ZtScg9ZPIFi7AIo#8eG4&*S4khiSy(>Sx-yjp+8D73KNz)A;2h|<#bT41U zJ$Wz$`a#wOjPK2C-y1feWIK;{kC-i3@q zOx$zG>dH7Vm`YCE5HS}%lx#=x-X2+(9!*;Hce~S-=Ps`hBSF^D{qbAMLITNycAkUo zm7eY-^m5@zPxm{g+om_)EycbTR)VjaRqD8IdPR&pD@}|=Jbh}r_j}KgfuDda-9gYpI&WsBb~2hPJ_J{6tPq1H-#Ih!@it9 zc>Za54kxbq*UR}Q^*;`~g#T3kdFa07={`uhC!o;N?dx<$yvKD2m<^AD^#2VY<=A#W z$$S^~kC?;g>O6ES@ns$O8@B52BBv|QRsD@Ux(=VgAEUBeyVCQh!~o`JQ znLC4DPi?0%&*EXdt3935iE|dz1G;iB?>l1s3(2^AE_Tgtpgt&K1|1{)g@NPidUbv*7$x}h)wwBMXuNn)DVVXWA$XkdVzbnD;YT zlkZfCPZIRLjC^zpJ-@WP?;xG}b*b}9%6klU->=lWBIcl%{sHzs3JXE&J=3O-aLcIq z7W>bj8sbYj?Wqu*lXH{hUiL%oiG%^5`Mb&G@4}C`pAl|=E+FR(N1x+3QnK6&?~a&0 zp6*)WZ-%cybyKM~LQMQCvyppOVb0TbPPB&Kl5h%)cZ<)fXW(bdoeFNvk-y*!j*f2j#R2J;Ep@Yb%$ z`qXxo7!@(kdVa}s7IHjk;Q3YG`6ct{i?RFtIG^;(NguaAXWFvA6RZUFE8Y3EzL0fV z_#O5@E_1y+kUE{b)z*W&=Ud9ljE$K0z5HJPG4n*Y9aQ&ur<;%MZIJL0Te-iqYolad zMPKt99~UuSqnjGU<~|?d?|@35Bz4z0-3{2b!jJF``0oW-IM4cfbl!VE>m&~++hdze ztZBo|p#J{qbWbYcoiW(=f_z6(`kUVOf1uPnCykH1R76)p{ms0uly;NGR@=>~tN{^% z=h>TM_uEYl>FapuTe`-wz%F%~zUDAFK2!^Dj6X&H{fP zE6+Ro^^pBQ#9ZO|HJJF)?uN0|abTX+jmSJ^GWLf-^Cnuk^sypz?)G%_ewA6o)$&>7 z@~8K!`0Y3TV8l%K($6KG%>Q3xtA1>7e!PrL?u%Q&RyD+rJp9N)XYMg{R(U!f{s*0W zbn?(yaSWZcp3X=AL8m~<1)a^u(0Sj}+4vuH3ekyAj+mlj=zQqu6#fUDA}Jqq!qc=B z^L|3oOF4h+>3sYjbc&^X&^hZEI-hzvpZo_M(~|N*=R9=kIhQ^s{qIoWvt+y8YIS1E zu)PQ0!e=m1=DIWvsr#J8b}QdGNnr@e&yAQa=<4`#i1=lzC|@1=AzuBXl*$_JjgLnE?xla4{V%|qp#5j1^(#0J z+lT!C6tPp!!?Kyjr9Kuh6&^|E@A%KTZVIzO^Y^36-`X#EE)fpH?~u=$U8iepJ*+Hm z*GnG9H#v?JKFxW!r(5k+V_w?EcK|?jM+XNS6O;D{N55iy5stsbj?20}R)CLE-*-CQ zg1m_7;psLaO;czCs{5GJmFo=su@3^d&LH4W+x!u}KZ^^y7!{R5q;o=#*tYm!h6RA;5r zX^!nu$OP#Z`c0iw`dRUuh;7;)sDEYb z$#(1(Y(7Kd7_dSbm z1ufz_qUYZ|-*N1PLQww>IR6TE@VpZ2gs;FqXB_ov$$p=5Z;Lef_wy^cp+NOuzq0rjhwO&@%h{88+)p!9QN3rn^Cq9qa2 zz|);an%CfGP+eJTAjDqX#l1xEJ$wyvKf(Yv@2frC<~NUs(hQ2|zhyLss|*nb`5fcA%GHho0i^ZXU|9UvNV??F(XoSzrH z88PELohrL|ZzuEy)#>hZwqg4o_JaB%I{&=KvEuEBnd6mHlOI@HfIgt*G|uY8-oy3@ z6v5}YY?u$KJI(1% zV_s8)y%@d+d2h5n->|{;N4>8xb6vzV^mP9we(KM(Sy0^qr#l8)F3f_*I3a5L?KJKl7 zOc-68bAQS~+Jv-&gsZnZTsfGJSaaA4|61A*8tn#(?U^Y}R9PpW#~U8=&<2 zugykV&bt0ww3+(_(9N(unXgInH)Q>q)IG=PKJ^=OS9lLzhq*PF&x4ff!q;qjxVQ_? z?J!2F->-gR4RPeZc8n-~m`Ww0$z9asxaO$7Q<5?ZMGcq6BQdkN8F=#%0tzZZD|DdDe z*FNI>1tA)amS=aX6O-@VHo$%%oC|)wGhP4E=UDT1av!4SUxN6TLx0fY?Fi@JbZk$< zbKv`zNt?>v6)~$loi~ZIM&g0$xZ4dPe_{(AWUT;vogBuhVsy5nqxD;jI5nXeXg*iE zd{WfrChUWt^!ov_Tt2ma3%-w-Vo!G@Y3_$9pt?*$B*fn0TxlNmg&@yU_~n;fN;hkF z#H7#$)nA#vFCkr_r%M+Jbkq3v7wmt5%-?<87Kci<$6|Ejp6*G1v33OKgZewq>B_u& z1onqu9LV*tHH=--4$~`_9H&!%#NQ{9{^k?^byx$c`-an%>rKVj55h#sx`>L@cjgqh z<4PWJPliHtXQ8Y8r`+H49jFefyW8pR%jAA9>{mb=@XMj0>z8s~FS^-3Ma(OnZfD~6 zkTjsWZJe%*BQoET5X=X>OwBVjyfdu?ZTMzU%d^9=TdAZ4KE z5lm%bDGd&4cDeoU2!JV&!1Tj&t$@}L@0Hk0uq?T?75JTqC3rxK?o zGypAc9bc#a!gEL1Z-Ktx*JF`8YLhQ^V+@}idpcP~^Wj!6F42Mz3vVDiaq>#w*eHZQTDea|Q zhfHUXd$(6IP)gY?XUr-_r@iOjFyf4cC7}M@WOZVh%$5GY9xKB)l-c_2Fuh92@h^Ua zd8((|m^2r_Kv3NgPIn%*d{_-{fUIZe`-qp9(#(QovAm<^1P zQvY@ESI*OmDn!l0p6;6xA2xuN150HRg7@(p#x6nL$K#)uiKYb6mGLL-q^QY1hHkWM zQkQNo;lI+&;U#B<=*EMj#xz6kGU(#zQiKv>W3Wwzr{Ga&Tb*)b-ZOs;TPj!l?S-@1 zM9!}iHAm3Z@$O~fzYdokm-N?_eXLr!kf{gF;au>?lix2YdB0)SX;IT4FWJscJU(Qq zz=fdY%Vik}u@TtD!8CXfgxGkKDvc@$#S@mG*`lnpt`pQY9@G|V-5C?VLgbiI{%C0 zx^_%lX%7WFYUTrq z+*?}uyP@d~YdNDtQKY9)tmM9 z$PsP7c}=6{8P8vNerW<}r+B(UoUW9^eC#iSytmZ%x5%}JqvON*QM1JJ_chY|0Q*7x zeZc9;_1qRGbL|P*$hM+=Pmi>R@`IB7crf`Xynt~BU9Gq7#P0{Uf$AP-=jp+F{wH9c z45jZ!ZRm9K&WMKmJ!&e=#0CEsil@ zcQ?jx>Lz|+)YS8I+7jm)$bvA^;zwJjGZEV(FcZ`lX*bguOVXN0O=nN%CE~ma%RzOn zbvkk%%~tGRf#@`)@8#i-Nw7s{5IS0qyNOc_e?r9hGvDe2@7au<5;EmM-m|ImXVFSU zOMKIDvk2WBPqz|j&W5g_x*Yl?1kYW)fPFE@d$#?&RzGZYwI1^?j+$I_HOTv9J|^9# zp!LXfNy0JTCsR!N7f2ruqA({R-A`~3)GxPg8B6DY(FSgWPB8II*2Y2dxyFs>@;<%| z90wCEqox2|Eyrx)-vg6DbywTpjP;>C6k-1zz6U?QzdPML;!1zWPejen=;}BY=HnSB z!ug=O#ZGtN1m5?FeHJ_dzHaeG>-YH-lIW(jj+*eir0!bcZ-yU0bx$T=gy1@Et?D6j z9-IxnZlbWHZlX=pRQGf*&YS6afIZ)k=PIqX1)*Ip+qhT4yvwW57S>1)qC#Aiu zclB1#K5Fhqm)$|AT{C2wKwD7V$;2hZUig*kf!Lpf;QA!K);`VZ)_&M-KdEioLrw?I z&pm$^k>(xv095x)r~APdd?)$Lkhvb(Lna+=58CPX(GQkdT{-@Y#fiMksCm!RmG7|) zC(TGu-Lf)Z;jey=Z4UcNe~+z`^H+~+iEE-fbDC_w`9Jdv9_e29bkB6URrdz^=4bXT zq0IgBzZ}nB=@+RCn)}ez<9pd!%xj@GsK1#`SNdBn_UGV9i9@9{b@i6^u`P#xC zav8v@Mr9XZy=t_`{7lNB|?JsoM9e-iI6kiSLe32~HhwH*KG7?4A{ ziC(@;UHTlH3Ysr&#gY)4#&2GL{bG>kO#OO@Cz9<($}4_j)GS7~tfVAlkfsle1J&iy zp@i5rI{uH?|AF7YFR$I?P5O`a_jsSEc^6#`4eD_|4BbJ?>x5{qHzM~VyoG%&XnsX& zIcre4eWT_pPeEYM)6w==Ulh|G@nxTgy6j)Em^aa zQ2KhJ_$5K}S%~iGo^D(8dcg!w_XaB!E5f!1jz60+faQ&trh({Xd~dg^n=>G466mJd zw5A^MTf#h0e`h=0nVc9s2cNt$xC(aKvzS}h9T1sT7%Y0 zSvy`vG?h3nz#>rp-25PRe4~)53XP#A$n*LK+<2Zy zSU=@E+8i=W;J7 z=zfH5y3_4M+MaNur`y`@i`|TE7)X%s?-ipf@5dj|BdOb*y~6H`t;F^oNcc$h z$7xp-{tQodLzdOe9U3*M^ONK5CgSgcA0-{>B_HE~5PYw?Y-6iiiLL*h1u0tzGVYEh za_+FGIU8MVuW{lxfO9}~7YDNTzJ;r?_kk|pk0Y50TgD8BW-Rfu?ueReJb#A}|4z6Y zRF}h~gjly>_<>!*6Ks#=ue?Y8O4@h)&ZxP?^LH-sMfVj@T~47T1ka&t#J&^009hy3 z>-AZQlKvKZ2beCZec*s3nKR7wcG zv!mu6(4*oi($bpt`&oFwni3gWMf33#NdaH)Ne*_2m6vqT33gpNO3`h4VeH z9F7qG#0x^^6j0p}@(2FzpzXB6o&oYcH@|!*yY-Ltu6#46MopO)lH=?3q!|Qvfa*?i zx^n-?RO~Z=TUtt#Z*Ic+y@By6n5X4NO+|FIJv>dCMequ!F1OGI{>pn|zQO(@OvEq0 z-WHbfH}P=P)JHcSB;~z7q)BPU`ZB0)q0_ze8m>EHKO5w`N`5(PaJt9itoU1i?ltIY zy`4`Q(QOT?yVcX}iv3u+dz`M+o9HH{MNL1?-(I8}1VcStZkdu0llP-fz&-^^`&*vL zkhF)R{-Qe)-LxPn#}CrXhZjNp<&tusTPB^g8K?%8pdQC?DPz%V=yWGEwf^Q!kD4dZ z)$^Qlh~E}EfaesDyUog*}g8gxj_w)JrHLu$8)N#Pfh?)mH-RDTN1U7)`N?bxr?hE)0`(cpxA6nuD$$Jo6pMA>{jMe(tmPiMon#WwSE?mW+iL{ z^|yvQ?#cUmPq~QmZIJK2`SYH_Qsr3uBx9tZ#Y zv~4MWvu8)mRL@^|kMYZ-Sp%y3h0~SyEB%Q5ANUQVeD%JAM5*?a`V{Nx=xUI5UZF+E zR0N7Dm-`IIWQE>q>Z1+cva7~?}lHNDn}O6%P&fnqiMytCv*kXJ>qm%4mV~m z_GoLaHL%@XlfLP6S3Xx#H|qtiE1;{#;SADrgdw217rFV!Ao|bi*w;gW?5~=94j}$X z$$pvhV$`%mSC12Wh#zXhwRKS4Zcev;Th^taJtRP$Kg@OWoNddjzu%L$!Bk4_qNwTW z>Apn#br8EWsmm*oCBz0k!*e0n--owAo;w)EaYBx3wI8>-|Dd~#$i?|llkMroFAJF# z&=b_(bL0=#P7APq2=ZN=dhz7_CQAn;ex^*&G!+|TI z6>M$9`80^XqdrLLioe{PW9Fi(;W6URhUFmHm!X+Ux)LJ&+jBn{_J6>i;|w~&aUPvF z(9!xotzF2}f%>5SWmuiydq6i~9|W6rmmKehl^W-=mPgG`p6*D}JOEQbb+eqVJZG~5 z`!Dbl`2BuvDc!skQIqnr*AK4X{0L42)#a2xLQKA!SqHm>Mr?guDN_l0JdVE+H8s)I za!4osRd73~?$b_J=A&<7-w5kuzw`qtTi$;$oQo8qTZf;O`cJH+AE2v2-b*dx@_y2Z zXHrj8frMkempX^^ef<1hNq*sMP`}=GemzK^8IFAnNd5Tdv(;Kzzcjz*EzWN|-4{sn zDinh1{@`@wJ*^emGd~1*e!|x++qjf2&OGAf_af3{z(CM;Im1>-WEpD$uVXI&zg;fJ z*USR$qw{oPStfYif5i$4io%j|Yg3kg_^;eQ_yKmgW-8B;N+=-xFJAgF*uUX-{`CB~ z-uWT(>XWYunKQumBbzZTv5Ijw-)hRgO^B0#E};1dI~}<`w*vcnaDcLF8n=D70G<5R zQBxNk>oV`XB+d_T7__`u+LRDGuLEm@a0OfnQr-s`2a3kiJ~vrSt;ftYtV?+Q^&YPNX(ttQTT*a+(14x7)|AK1**_CLq76|MG8 zOWM8!^{@Eds5#{M$4{Axq-hN5-xB$Qaf)UZgs$xK>tP0MEdRZzIq8*T`3)t`-Ec3c zfBM~6X%D&BC6u0rTkn$o#n(kmQ&0B^(&a(Er(0KkfO?Vh#X{^~!rR%jL2q7KP-=dX zhwinWt~>|vBkBI~bT4zdX^2=`JAtVps{P+u!Mag6%8#33h<5JDCcWGFIK3529u} zx^bJ<>?i&aIPRLH?%huJG;DPs9h$%f#xs2n?n0+qp{g+t6F;$@>$;1R<#1IIYZ|1v z6x83*PPa3*EEod)>P=Eh%x-&a+y$0TeWw4_b^PYNEZyR$A z(UxPqSMcXX2l+ zKI7>|I)}_ja2lv?%nk`LxsSaW_DdlF{_(6ZQBpT^3)ka4-S))44tjy=GW`tvmE*{5 z*zbek;J1gOQo4ocPC+*wBsJy%;?IU>Ky|4?39(h!Hh_dr+3u;5tT!oJ339zj+Izv) zsCfxpia!Y768{%Cp-WPCkkfqv+X7e#OJO>FYZwDdW)EX>-1zWNZTcAXk^Lp-HJ-m; z68{%C{ko)XuG2lYE5|SB1Q{UTL(}&%c5Q9v3(}7Z@i6~u?)zXKkm~$hPyFrhEoeFH zbh0ZcoeogZ4+VB6+ z{f2giuD0KGJezR|X)g10Q|$39wreQY*s$LQvTo!1TbwA_&a%FZngQs>T{#RV%@}wF z)ZYqDSKizH4ffw)4-{e7wf3w{R#(T#)E(SU<>^-J###;30@ZEobmjPV9(D<`zL;7m zIZkRh$bCyPugyjGF?6+^H78v=80hIXbGmD=ZGxYm2)f3p_hx9*&I(*Rt3ewXg>Jzv zuHSg&8|luPB%BQD?>ML165ACZp(9(r9Ms=D_KCk{H|^Iehi=5b6W#~a&3C%hdvXmK zI>2R6fUo6mq;BSN-x2Ljv}c{jcdwBx+{=B3=xUJX(xrS~A|2f(n5Vk=O-P~Y7K$C^@Czp&1Up3V!-ByJPv z51PNmRxh>^+k5aOYz8?7Y~xsv+m-x%Z`+R^zYBkjn(NTjP_`H2DpUa}dGWKI)eY6c z)))dk`nQDa-=b!)m(OPGPe5BxzvSJhgjg4BH^OZ&5LQ-6j&r7!^-IPhxqTx3d(_

A>;YM4naeR%+H-rHlmHTr#VVBU8 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⁣SMldy_`;g~GpF6Ite<+;5byUOEe&<8Oef)3Yt*xId zhC9P><$09PVSZ=0(>+(-gCMD(oH>0yTW-tJn&(4RaKAL%gWyRyY=^HN=U?#Lbva(7 z?n}5j49E+@?%FAL7sH*o9^6v6jbpg2440pKlN78=yp?eGi{Tzt4mqwui#^BJBb0B)B@SHyWRN&;-M65!PuS z_Y=NIz9e4PUSkefkHf71y(PmYG}#`VZO z!Z?Tj6keZEZpkFhFATRo_Sd1;khb56p8Es$r0sPd@AE<%aa~K^qg2#1{c9hV!oV zp76}+EOm}k%5~N#u3N%62u=!nNmA7_v73!FzIWsU`@x3UMfhi97IKXyI&ZDlB}(9y zz}5N}u3WdAXSn<%wxqvsYnu-*g*){Bft!Z=7+mdV-XP8|(6=VuiP>;na2ZvUKau;9 zQ1rg7lE^r^d@}77E>q~)v=u(R(Ez07tMeEc@>ZZt?&p4Kmdm!wJ(tzV_qVJ0?y(eR z>QU~GGV$(+Pjl1;DK`~=rcdO>Pa<~`!NoWdEZaWk2Q{+o}j^*G6x$7?4A4oZ5 zud7bwKKli^dYgs4#QPdjE|)YVWq;ppA^DO%X4%o-$0yhCmAkea;5LilE;Za1>)?2li2)DbCni059;MCyg)OS(+f zn|2m0-;&1?ZXjIkAI@fy`&xVk8t#eGkx_3I{hYg!^^)XzS#AAdIoy$OwR~@acRzZ; za9f6`K<>la{6Vhop_Zt$Df`yWVHphI-Uo?!DVxJC;!@KRZi0z-BAJuX@%U*ulu0K? zymEhVFY+bzVQKqZEeAb5l*4@-Zb8-nua*6x z=t=q=Qx3OaFWlQ%N@TJh`}^<`50Lkm;SJ@&md1GLY^2-I zp;l7xA$d#DALx5jfBW3?V`<+nENIBRRFqfcQwjGKTuoAh$w?enk$jdoUktf5t`Aq? zm-kMto;SsQC$u}#cz*WnN8TrYCHZCOdeoBd*86vdQzlx^Qf`IQx!)MBwoAERViRtx=;)<>D&POaxO+}1JNDTcc=!j&(HaNOMGOX0=+2zz(F`QT7X#dd& zn;psBxJy;k0eYpzXUbUV|o=do2;if`gwDo@KZ^IwL7Kn*4s`OL~syN-`9l zKEI*uO5R7fnDtd~>%W`3FYuS&Lhb;=4LtWI@^16oyIHP?;VxKAhvGJXhz_ju;irGu!>P%EznyLBaD0*VB|k z0laO|&W3w?_?_8t;eq5IjoKkw4w*4UwQ9L zQ|vQvXT#P0R{F))@p;Q|2Y7CD++xSaS`NCurCv<9_hYyp7%s1Eko1@Swl;1F+|`Er z1w5&@6^1+6bLG8atH_tMhNW$1(ReH1Zuwqre@jeet_QV7+8+Gx8U$T#<@ROrN1&m| zj)zwGahA4+)JqAsD_q?#WIkdFK2Ia%9^>!N()ozDS(lxU$jhCNPVvWe-7m`Ewm0!E z!Dl7<#c+T0<*@w}-Zg^`M6FS;Epy|AAK3?`EabUl*^k}KguB_q`{Q)_-X}TU;HU9! z?T=@hA14lB`ls{z61Y?0YCAg~-YKZN;r{01mHV@b&IyNH8+`}nHQXs!a@fi8j(RSz7t6%2_<04Of%gZ#5Uc`AAxn9Dn`l*!!*A zD?HbVf!6zb_ap8X-~zkCR{7HT0h**><+-^M5NrqJXe4B zxQun&j$4D9W}Bssv>dD99%r~u<1-sAHe7v=i#(UpYAW-rs134XnT}u8?Go~)_oz8px0wOV~1`**CTmnR?4@B zDqp_0>=klL-sC+`Cf-M}e;&<88t+GNnd=JneVpSW>VwWelXhc{tqbha7&H3z{~ERu zZ{gbs_m1Jpb3JmO^p*H2w~l;(JD9wq!q4s&KF9U5$}NSvB!)ZMa2u`%w*v0(hAYQ0 ziT7^9-NthtAn!3G>7U}QhP&ya+SdVxM7bIL0!_|0SHr%G`5pOBnwuUS7 zM^X;+4EJEqeTTfoNYckFrQV{?6KlOy!0ilI`!gwrAzhvO%y5s>{SCf6=hYb-ncuMc zMYSJ?u`1ins^OjmHzh%kzJ>Q2YWPI1ojvEdJ;*y3m7)cVv+X#c@|kdd{+-6lKVDeR zb0%;#jlicIEk<%UkpBDD`q{Ph+E1(NI-}E&eP2a?9zdvik9i%#xsGGnu zYy7`t{jaFulez79DfF+m@ZLIZH2L=;=`+&%aU6v)y-^)k_yPA_8;(A&F&kUmj^7!Z zkYb;UEyX_*<6mX`H`?Ow{VVYQ&G^gt!Tb1rgtR{PV}6)aPtOmQv(C01*Pin&I6KIR zmru&6Hk^YaoIfL+0yx!hI>OQREXTY2rIouUG#W2*!P>-p34a6 zY!lxWv=wPD9q`q1?iq5k?WGy(bQ@)pD)Ap={Exx!1k?*@IhBhcND^bKW;-${nc>5!ygMtA0`$?uQk{k@i3|Dv#e z)c!p6Ny2??xYyw`6pch0@19|i26M<;fZj*)yHJ)}*uEyW@>8C}_#g~O{(gebcjz~y z?RQkjt#`t7Sm;6|W3oklOjZQ5gifFl9Nq5AvAG5fL>ix;n)u84xs6ZTKq22L$At>G zdq%i7!5nG0&-v}v^ZvV87oE2(_S>yo_hrHz9^p#7_Z#lK2v^D{%8kZb47Ym>_YuQ= zYdyH-aIb@_``453W}qs=UE;a&UiIJ^`bN}sLd|wH$&br*|4J?6cxSk+83#1MZx^KX z#;zo3?R>NR=kLlvxutNY!)+wSB$=-fZY#rO*O!#NzroJe#I=W&Y@4))O1M>qdmy~S z&=H2)Ba3x`%(ERwzNEi9-&JmEIq!jw;dV3JGuMNghP&m5xpL5Wdm3)<_26dU?gLlb zgUl04`SvwjsS8r@-if>qll51!E?RFTe!tLqEBq?qx|(>k-mWv;t2|fkOZm6;mWF$| ziFX*h+tHndJKMM4ksR9}CSTHHENeSHq`u}kW4M}RoI4$#N~HbQ8zHKm%!jSqigT?9 zvy?I@f%Amn$a@u*V7mZYaqoz>4ZkGz_ZQ3Yf5G^Fh~Jl}!LzwIZXzItT=mA1HxWIG zGUUk|Q~4>hk-Zr>f17aIf0S!4A7Jw(`U>g(cvcuku$=L5lFn~avDci6TjnFH_|Af#x&O>? zFT|%m8iJJD$)68AK;C2MStP$RC%?z7zuVTy$2+%4_?&$e+_7-AeZPWF6FG=y=%DVg!@Nu6&E^(p{LLk#HBr#Iz5c@^T;@-d=1afaif#g&m!!X zqLoO?VU+BE#QWn&o(+iI3WQJugY2{)B><$4eHSE8$ta_^B3aPMfr z{YvCZ8pqOdwH)L&iUo-sEeXl3j-X^~V1I)^|Y1A}PL( zXh$(5geQA)ZJzvINEx!7W$l@-f^)mszCPGohOR`qefxx*K<2^Z`jDjTJQxAWHfov4 zvH|~><85KRz)dvqJ;%kSK`@6Qjc=PQ$<;fnG1vFWACGK&<-}J8=MgyCUM6Dm9D3;G zTzonoF?bg5u0S);G*nDGTv5XHP5Ref+i|Z7shsbW_=+|T+{O=79r z-CjP>UY;WFB_v7S$07F*uHK$&4%DkKCFy-98MtqocxApv-b*#daKqF1zg`cq{cuRl zozJ8;3EU5GHAyXq-t=)b#S7MWTmsF157Up{r9E?R9`h&83&kdnp);_aY;8Mn3zC+Y( zPFTKT|BkTzb`)$LxC4y+A=rt12bP#RvHw(TQ5W)xus_V$_aN`6xxC-O*cV7Yjr~*P zRbzjAXip~RmE_62(DPVI5`F{9XsgI}7i|%^9>(tt@Atm(+bqVf48QY?-^bX?ar`Tm zx;>kFzm?>zE$fDXyWIHw>issDoAcYk`{k3Tex>*gHhzs*C*Rl9_%)32%iwpb@oVn= zS{uJDWBiJ@4BS1&uZ{O>Z~V53@vFq|5#!epd%4H^1moAp`*kBvx37qsIi53q{aBYz z=Qq&!ZSDPr7{4m~<{H0yyI6vHpZ_Szoo|SRqywn@oVh; z-X~ADFU>``pF_X2w8!PF+mh{DW&Cy|pEjL1nG?@)_8sxHX(QH`ZWFi-GJNn!+M1{Y zA4$^Ar^<(VE|HF5X#bmr(=a23E-in0;V*M@eGKPu@;4!#{xO{Jk|O;EoTiyvzpnB0 zGn^T4@`sDHy*h+TbRlvJ>7;111XKW6__U?=fE zZR~$#4Zn?;m=qI#IF(HQ3g;9!S}rf)Fa69s!&w7|eJjx|CjO(c-_G$9&IN|E1rs;Y z|7aHTdt#Uh+_#3)AKRG}-gPXcW`xs% z4;&W~*OOO9qHU{Vg+o7ylH*PEyb8l> z8R5-|;Z66v@|^(Nm7RB)9cwV|m;945qd!F~H;qBphUy}C| zS{B1w$&=nc}%Gf<*kb0E%Ushodeg&@an^n`fX%***QPMOESQU z*6%9MOEn8zcf)J!dCd*4RV2PfF}$QU++FAw46h{|>G#_h-d>(}5P2t}<}tiRo>vX; zTEjaHd-=_wK8Clq=UqtNP}C-d*Iaqc16O8vw|L&&hS%EjCXn|E>KMaoqr6=MH^K1c zWB=xN&V68b`*_|G^0r`drdtfJqvsXu7Px7Kw=MR*jfd zEdw{(@OpV(Kf~M4^DZav0n|T+*W2@ocMsfR!+XT@W*A#O_;CdO})z~*=@NtXb9qM_b$eV*!#qgGSUV7ia zU14}{dfq37R}|qTxp(X@{h#Mm?iaY54etxj`_1s$MtF^4c*$0Bv?T4%{DI;9>3N%1 z)lB;K_OGx#Sfb9JpU&>@P6(-Hm+-_8Wc1um*%A8S{#6 zHug+yWcg#sOJlz+_8O1ck2m&L8T)eVcf($j+CPN7B#Hl3#zry@9LsUpj*;YZ*Q^!S zY2X|ThxzVodJ=y*E>{}PcW~-5zMWL?S5D*b>sSe zKPH~zy%v@x6?;3PS38XCi4nm?N| zaISwj-}IpPI6iB=$SVIU?|MLSJso3zxUt{g*cV{`W{mx@#{OVqpThpj82hfqzOAt@ z#Qx71`yR%=gRw8dezPxf^`hn3)7T$j?2EDACC2`2V}GQvFTwuM82by1{Tar-6#Emf zC#B_&#&fZ;KhM~wvF{n$i@DpI6MIpAZ_jJ;U3Si#YY70UhMU_b5AGc=Fz9#Uf$)j zowslJ9@lG+4BTTTp2pa8Q+JTwES0mMRW0y zv@QS19!q>V6kxy5*z57G%GkFPM{i$<{fEZ>W9(!eb}38wp2qy)cERla`wMx|{a62A z4rdh{k6jyQ-GyPC!pUB*VSBrA@KHZq_LP`N6>v8AGIxB`_%||~gTxR{{}|4BvW`>* zrx6@IUQ3@O+Qx7W7ehF!Vva{M!m#;a!NBbdheL5TX*_!w&Iz&x&Y~DjkI>Df;OqmZ zvH!nv+8fU4p0g~5GtI|S1gCur=LEy)?KyK|I8!{Q1kQ1Aw7z=bzlQnAK8ACp=k$&# z=d=BGRKh7S9BC?|5r#9ubK1njBes&N;9LlYl$JkQUt-gfli~yEc$@q(V4%!_j_2FM3YLn0Q8ePAQz1V>n92= z63;EdVY?Q^wC82MoGan%3#Vz;D|ddh;o=-;yypy!DW68Zf--Q9hC@orpT_vhb=O^3 zio3)!$#V`SZxtJ%eX}kH@Rg}z&iCP@1VU<$t!&%TEF}r&3D0R0)1Eu}c#7flGx3~? zzg!>d#ZugbGebUb-jOD+Tg>rMzA*!5u;IvDr05pI`NGHZ6L}>u9I{;1ae*6aIC`F& zdOx>aGS8B&ub8swza#5NspA7T$#B}^FRaciB@EfF6FjF6dCOv0Lt&M|nPE8EZ(MBR z>FGH`W7Fl<)_=MBRdjK9?TEhe4|J?CEX#>TMfv%U(>=Z2&4OfvEG_nc(RJ~7M3 zQw`@w!;!Wlnr=9QloQjQ$7(ru30&P}IQsT1_s@&oFq|^aX%xdL^aF!RI0c5I@uWTo z1D5(?h?lMR=`m%qMQG-#;WRZI+_LrE+Hf+S(>taOQYB$JA#kk?N6Yyj!}-E<`p0b7 zI3G_6&arR`J+>46Qa)W+N^G)STS~(x?>6!(vF{o4z2)A1JM6Pv68+U9; zuTs%I?8o$exeVO94EJfqx-#CC=Ut=RdE~u|Bz?%zaQZ(LZ`KICS1y|abq_^?=0DX$$xZjZfJNgmX_o`L< zc$@LH0|j(4<4zNA-H*capTBDl8?j!}KedNaxVOO7ai2VgBYlg^-wB~3^6fVv&uwi6 zcNydCMUnkM+Lxqqcn_F3<#`n88375A@+gj zJiFXCE2$dZJMc8gwuxk3FA`t&y)&{-SqS`;@bVwws%1k!`uBoAuj__g2pSgh;*TY~?N`0IFS2l_*q57`h<^!U<(b$cR7ty#9=W}#@m z_;%~;*u+)B-3PAL(`D3y_Ons090&II+>v~ayANKDThirL!|iCehu~N7O?d8QxtIoD zvJD+P_gI#-aVt+_KHqS^oEDC&<+;-+_qK0&52ELm`~$b7d*H4zTq%RNa*%k>&fxw{!<~R%ZTrO|p8Gt{W!DyO zs%PM;4R>AohuYdhA>57V$MtxzF72$gc#GlgYPhpY25+uv~4rT?vsn}IvdaQ~?s^nEqbPu5nxsa}D5 zW*xZyw*M`GyTEYenE7|d%?2_7=#z|xYKylL?lQxjRm=WX2=ldnxxW>k#dX1zx&7jw z+V9(*EAM5jHD0*8{y%UF&*nZK!~L(?Ln+(~40p)UJd5x*$N6cjTWt1=+RDM56S$Fv zE6l&+)@Pk28DG@KErVNOxEbPEioQb8BtyTI&fxNAaGFo`@#Q(4me*5IZV){M9GJmyIa_e*@f zL#vULuatwn|Fhu|-Z9j(4$ry$^?jx7{d21tZwBrh!`&U9gV13}xpEH!DL99`i_sNm z6?wKC3L@oO(TDxGI#<4Fd`6&&NVzgL7w#wItw28@d0(F84!l?WJ4R`4= zT$^OVeN&{|{XKU_@=7@uXvtE(%W_kZc&p)FYPeH6^S&kg4l&$gJhuyZJ_fqQMA3QOLSMdGZzUH5?r_7MfsdV!m-egNxvYB!N&2Vx*DAQ@8tw=9 zEki#cZ4b)bHAzei(a3x?V%H8^KY-uRKYz0uBJ=Vb=*n#_dwF3cJl3v zk9E%>FO77(CqBg&2d;~WOWKa?GdEx-^&|dAvLprJBK-Sz`<1q*61W$_O?jtb@W!Hh z47X*tE_jl>O7u3Gi)L(=n|E4qQP>~8vQu~*E9@7z+u%0$+z+r%e#*P!k;c1^=blL3 z8A#FvEIaM&+-XS9*=4!g-u#X<>nktiIa;^{S?k;!e~U-M^R#A^!^txutNM{XcNa;I{jJ;8wux z0awR&m(ecMXfTrUZBAjI&XN@D^BH|MlJpKQU5zVW-QUWt2;4P>E5BEN@$t^}#$UP5 zWl1i$jJ#oJoYs{;2zB;H@} z`4b6uH_D+%K$L^VTktvWXN$yJ6glpe!(CwFmEQr|3cu}A}wFvj|HvBYlkEq&2mOV{MjgtQ?yQq0^Ca2W3evxRJa&k))4);@;^ka_`+%w(b|{Yw6eFYQKIz zelMX}NV(-%k_%E_)^!J?!_jtE)^Qzq@6klY)55HGd$`nkE4VIjvrN3*@sZz6>B~~N zx?c<-?^bjlx)a&`qBPQeE8xECxgFWWhp~SV%}2^z;^WyFP8jSqX{@R|(u(=OCj&ysA#gKmBOY-I(P>1`YXs>+k-ykwHHAbK1rca-OTO5PfjTu$3yPSu{Drz6~|p*&w^%3&*fnxVExxgUD&c=D#BSJ9lG znKR#+V{_9m&e4%_D7%U4v)E|7GcV!Z68yeF%KhDQ^S|ObU$iZfezr!uk#<@zjO$*% z=53VI|B)SX9`R)MP>4!8<*{>=iTYK`77^-Jtp!U$dAQ-ej{UpnQ>5Ivo?CxKUAG%L5Vb~@JIl8xjz?16vcJ~}>%HzJb+4K+o* z8|M1=AALOXxQy)Qsgd+QG~h;_dkFR&&*k~BAjf0>1o{(c`Mn-~XYlGu?#Du#f6F_?P!$cdup4zdkhuHQara@@aIf&1 zW!dcV{9@7@m)T+eV-9t>9n+f;MBKxd-UP=1qec>J4PesiZ^7%tRL$IHK zHu^5dWm6>uoxkV)Jv15Jhqj;(DZGw%5>gILnVgw|k(NX8-8|>%8;UqjgHP7RYC(n+rg(;~SF|ci}1nwt> z8$Cai{lb^hzdApZ@)d3xZUg4uHC}mtwA?SO_kGxS(`@@NBxy9u+Tu+;!1WcwjowdU zx#M9?^4zKaz^#OPq~ZQo1?08m+3Q3F0`F#z0G9Z8@?Rm zcje;BSL>}3?h3>0+57Lg@50P@?sAs3aZ4w0KYJqA9{#IxD1&>E;YR0U{;vJX{SLLo zTLt$e!~L(~t%kcX7f^J+h+Z$Y?Kita_&;(#Ph7mZ9~V8u^FfCDU)5VR-17|gzbc1< zhj}lZ;r?gs7w(n}fVF)8tM=d~2ksoh{jbU)1$UYsuuD~c&wli)>{Gvl<8FBkso#(5 z=99M#(lLqHr}2LQ|3>m3(vGa}ggPVX2d>9?e0GfsMvylaNjjds*p4^Dqr#ds@_VAv zf0sTIxcAKVD)%14)p6KI|APCP9&e^{Up3s61VLJcuUxxbW4Nb>8yxJvieo*JbTrGj zcpoQNi8oV0z31n+#n|^j7a%Q%p`JUCyb(y!XqJD+9l-jE$9Y~3uC}MUu$S_EmZfsP z@LVZ}#ILoNua-mkG~SzIxF7RlR2$>FJreE>FlGEfT6^3rW8E-hNV!LN?m55Jb^XwF=qhCUmy93V=y`qNGmJk>yhE{n0?kCqeZ+I0|DE{) zv=F_8Y`iCo3CA}YZ`JdGTVl9NvHuDEij=F@S#M^t{9c(bCq2y4#;fgD`@_mg<_%3b zJc<4I&6o#dsoW{P-rOI&8y-n&!BY1xWy+Fik8C?DewpXHxM@YpSGjxQr`$KzgPWPj z@eyueHVWrXg?AAeYq)xz*8WfCHP994JXF9reIavZ5@(S=A3cx(Oj_c2mG`N_)%IJC z{bH0@lZ$tsaMObkd+$E)Z2sdu<0;ln|r4ZiQ{WjFE1DGe&M=c7xE54r=iYhENx+qZx4h0eti61 zVfj|R%lkNDxR>Im<#6D?;7*Hhix+a;9d63UI~LwT^n>9Z>ACmT%X6#IE*s>ztQBgYIwDpYgsB!~Gol@6eA( zxt#WAxqAe8yjCpF6`|<7YPIjzwVy2dg8Om|_h@`hK|PRiFYw$C$yQY{nO}Kq}&5N zH$&dnNYW~nmMe88Nx0{;zVNHS?O?ch`FUjkCdBzZr`+r*H|a_DO+xVFJIk{OIL85hpWe-_wZSaRv7Nq*)4a$ z$s2}cP{LARP_(sLLg%NH){DvTnw?~BgTMT!Lv0-~qZrQiImjP~@(ARCe z5&bqg94S}(hcoNvxiq>LjY5m)bC#iEo^hM++e0UgZ!(^%`Y~`#Xh=n#`v~?=qvw!v z@AvT@ym6i@MUt*!S-BNF6t;x$?|COM^k#kL7v6IPm##UR24O!DO+w1$bX!vJBYA6( zq{JrdcN|wT{MT}4ozDGZ#9Qzi&)L9DWv$7>et&c#QtrxdUGOJ)+i#lZ_Cvd(MZ~Jt z@!I?HmEY~2ihc2)Tz53_o{0Tf=v<`St9|?Zj=VpRq)iI)Tqnj4`a2^UbB1`kuy0h> zO}ajCi?i0;i-G;lXji1%X`VZbyfH}9M3!;f6Fs+NgCy?_&9#Rq*guJ;BjxfFZ<2yf z$@>OL`kCeDrW`ch?zD&D*q0}g?s~XIS!>Rn_@RadXji1%6`s4*W_hj&+7IoCs^RMI zkEHzmChegc71`1ZRM^|lz}f=!d| zeZ#H4d7j%5?TnOrN*3#a+sL~YJ%JuZmRp|*94QO^9ruz3N%x)M&c^<2^d3^~gPvQo z1$Biaoxsv^wS4t=C{tS`U9d^698SUhDs(MU?q{BRb;CS&BbtcDqGY37`<36i)p%um zR^BM-_JOP8k`J)|5`Be~dx5XFVqP@R2c=PeWaGWW?-whY`s+N~Cf&&<-qF}gz1_!B zx#K){CT7CCS_9!zdg}jNV(s5?(yXH<@t~9EaiSy z+y55&cGifmrTMvv?UU{gkv$8i6^N4T4^LCV$RP;>J3MhBoM zw6+0!}D#M+E zy>MSb%B704G$Ic=+6dXU(h`1jyBw1vCrRzaTHRnTqhv~L&+PBB;C()701jZ*FUuF%JN$J zvohLXYPY281vizo=6A%fe-^!hlzTw9F8G|hZ&96X^W4uY?fzEg%i&t$9WC6JNjKJT z>*KQrIs_@Vz2|P;n6Wx4Mh79wt@Pt4;dZADSL~H^4GVJZ_X6y%M?;Zv-|^fB$a@S) zy5KT?`-F~J`*ke~9amTGopdeW>VEtzem|iO0u~j@BTJSNok2JLb9j(c@?eT14m~DO)aD zW|w1N3b(3#(!F8IL9XA+cw72><%Z$9;4@e&k)&T();7OW)*3(g!OUavs7NBZY_N6^YtVP7?j!e2k8sx?yKVlO!$#WYaiBCAUhF=o&BX1CrG>qlA z27evrO*lT>?#$6icZT8KihVhH8Yy?S=l)4vepB`Zv?ZECU!eU#U*E2T%M>9OR+H{y zxLQvSUczq>k>3$N7cx z>#YiI3EY$~hl}wUfy$6@CjdP)To=qDZy}Pj;rVrHaJB9pBmmiO%T8f@W4IsV_bXbB zlsh0xa=~8B^W4Em(!|kqW4Ss{pE@n+t~BM_9zVIS^(2vx5p_q> zyrg{n+PasJw-{w83jN*a!k$UD#KiR_>wiaUki_)>&KnAtdT-Z){R(wMGQVQun&R8P z)_YMe_SY?ParMLJN;C*b?j-*BwRK05r!03C?HfNG2To?)tLSqi@ra++Ylq$PTu*d4 zx)3#zan-(I`AqTiwrj_M=OkS}!@U#xspw^-Ts;rps3r5Zs14d3m6-mc((jMLmE%PD zxk>j3Tm12axwuFQMvylFNt(n0;$y(EoV?P(A_RMhyd2VST z=OJhont>|Q9GgmrZ4meE+!@B(lX$sB$QAeJd>L+v&yx0UmFL={&Pd~3?73%=cL}-* zO-%3`e&#q;;rkCcPn3A8;XW3_9b&kdf5EMcaLcYpx|iW<`Hq7(89i&bC9)xu@1NxD zx>ufSi`t;(j8Pih8@97|{Qme$t8mOvaaGdQ=Oy6Ueow%@1YLx*9PabnGtY2tB>7{| z`FytHi7Fqjw%^hLN!J{%wzEBlu`l2^*>Ilx1ooAj$-j$v!&vD1KGu{7FS0~+ZhWjqQ8T6Ck`VJtF`#*Ntn=(dn z|A*z)yCaNSxm9rQjNu-Fua<91-yUk?wvKSq*CgG0hT8|;WoVS)p5nQ3p7;j&8MF}D zc!#d28E?t8Nw)_t289n_4XC^zo5jvIqp2q-JZNX(E&)xSNnfy2N~ba)|M~a`wUkQb+{66 zq~Uh*++)bo^iS7yGH{XLJxIA{d+tl*%|~(E zSrKj(+;US63-J32eTS6$qKP+uf6kwf#Jh-mk<^=G{3%OqzhyTj-P3SW*&?Kk;3M`zB`Bjt|SARA)v^?{7d(7p%dxfW4pc-gq$QQRo3Q9@*nin{8@xD@P^WVdQDN-(b&0 zShqP+?rP6%OI|0`6P<`GwCs8o1Fjz5F2(*PbQ@A`K_V=N=g6ClGH4+xZk)Tn zV43fK<+_gSi{-a5Z(z8;U_ba!VlK*Y8+-0cZS&mg=y$Xdtze>UHIjDFxB>S7k@R{| zYCQGEh0;0Mkoe7jc3cBM?ywwpZa8obE+nrCeTSB!ia{KAXEOJ7A9MF7)Eq~ZPDr{N z`~_G+KYJqYu5Hi!36gGM679b_whIj{CE|Gdc;aEys<-(gm$L za4i)LLYJd9W}MLRn{c~zezs^*(oHkm>Da%D-ayK|GK+P=&*arPJkQnV*!2rVQq8!$ z8`p4Foy>fp-(U4UF85H<&4#PTvHJLJi<%?lR(Ng)@=ic!qwdJ|Tk|959|aF5-KVA; z`(Zy6-G&G$TaMF1ZoS#$eTJ$58sC>bz8%Ob zM3Q9wIKxLd&k~jI*MqC|e>HwX z(Je^1G9N?AKKF1R`BRXb$J_agRHU9t9_4)7aG$`Z63s-)m1ot3`$3k+c!Z_Yzi{Qu=r*L> zC*d+S39j$NdHgZ#f9MEwNf++-FJTVrKE~v~gj_w(DXdJoQeHZ(_4X0=tI$Tr=D07) z7r?!gyfi99!;tJ>rR-lN-DF-aVtAMsgTO-T;(U-4s%V#CskER^D zW4{QkK+5gq`|ItGCsx!M9f_o!$vY*bzGhuevm6RuOS)TWpjy83vHt=6f|UEX=N{T6 z&mD~7 zuFej*dV3Z7 zx6xvx<#34SenZ|Wv|(3{KWH4~tJhUZe7tLqXA6?9f#Ej5K82bf<(}oady{tvk|gg- zvGInjA=e%*1A z@jm9cay@r0`R}4CWaDk=+nMffrSB%)DTezw_QL%ZDfb1>ZE#YaYmAzpD7RCDTl8Mi zU24iiMIpxC!o`ja?kVJa`K)-Z=rc;byJQ*JBQqYMd4E79SyhW z!=$S=@&1f`-YJ~_Bjw)ex%-mW79EF2 zGS5wuHw=wLztFAO{-G?wt%N($aL3~_5j}`B-tnG0mAq$>q?cG)uIw9RD|UDeyKMdPnP)oLb=7Cv%eW`7ksWjqmgnq^yg(k55^@Z zg|jb$a?kSIo5;HhO+wl~toHpwOWz)(|CRkM zwUqO8!<~sw6bX7gU}dsGm?0<9Qyk5Rc_&mr0WQ`jgNOC_AjD&NV&Uu?ha>g zUWhuQBTzMSLG`#^E@iOVpSSG7xRuMru5=~+gDKw&u)i1GkCc0v=Qixgy?AIZ)DlVi z)$wFso(&Yf?iW>bR{i1Xaq|r9UqCM-<(7Nyj9$zwq1EVTRJAYTeI&dAzlB^qZkGL; zbQ9oeKbd!Scz(PQOXZ%)JshN9SMoZcE=bOg_4hTJpW2FE50B+dD zI@c4Q3(+-5xm$*1AB-Vy0(uC^^&~r9AMWc-&$|nL=enBVPRHj}G!H4aolLY4ue?Vy zL%zI6bN10SxfQ;hDYqQ1ycA92U5?++=nuo~8r(|X9<+Qb{$T#WaOM4+TXF)wHBzoVAEWQ* zl%iM_iC5aNB;}_6;hw1o8`+bF_ayJgU z+~8gEGH5Ak$2Zw}tBSPWw99u>W4J2~x8c9wW+L2zI{9v{;rU}%udigHDNv=KU{?-IP<&N~+Z0-3!|FplA!QC0IwufEd?TZdD+=u);!94Po zpr6r7B+v8I_vZo0m0{d^zgfOv`8XQ%3CF2TSZchpe7r}K*A<D z@{scuInEa*^WB+-dnxvE|L_2o%00#R>vxj(Jeq}Me`~*4I7cZw_d>|kc`lcq?=FQ) zO3R-G_~duwcb!;D?qdGz&vGk%FD==Zxqa#>rSWCI zh5dF**6oNSHD?(&F4g_3Y{PtaKV0n(T4CQ79g8fNG78QhuM}O5b^fiid*O0g2`FXAZlKC84 zZ+#=&YPkCt?tfLjrJLlt&i@bGYPjdY)qZAswsALf5Q>&VFY+!#SE0+0Er+IehWoAV z7nx1--3^9YhW&W-D2j65BkvQm3`MyoM7UK2>~E$V{=i4-ZNm%x%9ZyPZ%=+)y$z4l zTWN!Q_q^dUeeZV0cQb;G#+%(C__G}=7?#&42S?u|`-bkv<#69IT-j$u(*Ij7{|)5+ zh^CTB`lsVV1>Eo8rn1(~ZT&#_JF4z{y>D2*)3;TUIOz+rirNsfPJ(4O~5+ zs(&H(wW8^zIWA2n%kA2aV=lTIjYYj_WUWg=Ui;?Zb!9!Ds@{?QyjhOB^q|_NaO4blN4-qIpa^%4Hcsb;!OK--4wsy-rFP`ca*fq zcTdAD%DOstBlh>Bhmdlw^xUiab8d_zJLyZ^{E#vx!FbDhoOSt*im$hcx3|ITx7qBn5l6yOma93jU zQZ_;t)V+%PAdsXRST15tsDet+SY@f>y7a;MZYEr9x1+G1gk~b;KIG#)aRB2vbPc); zb=#Bol%b9{aJ`Xh;KJ4Mtt(<2!pWR+U&MZ2=9lKMRPGYbT}j?XS2H(;wm^2CrNH-# zGdBtAt)Okb`w6b@56!UO7af9>yWDd#%0!w+{mMw>ruQ%lu9+&Sn;)Y3$H~KyzX}@8$xgZPmfBx?M zRLU)dyQ|?w-$zuJSmU^V_g?RQe6O6Bl)>!|SL^LVwr?`qIm4I3v2d>lV+`IUuNt|5 z%yYApa_EcZbY&jWw=+Gi7ah;|#&8?plR{09l&^5F@!WmLI|}tcCnEbiU!gBw<(78I zcdr}nS=e8KZbZr*@3~Kq_cD41y@uquuoQio#GCf*LAiw|Q}Dc_CSBNty+U@`{S13yB`#)Y;i zviEa!!cOD*I5Z7l)zG7&Sr4T^+6q4kYg= zbQ>V1brr{=pBhI=OVQqLE#RPOhlJCM8)NYZGQ_V*Ix7$8aGO`VqS zI>OZ?@0Yv-p9x3^(tf^X$+oS1-)KGFjjeSgtQE8$S!yZ;R|&TdTs^)#4(}y27iqlp z!>QF|0f=&%k}yltbGmv13kXLs;5Q1xq>9y$sfAtk*ISeo;xjTWI{n z_B!l_A}vSnFJWd=cls=4NGzpnYcZUk3};>AsK9@_!rcBMzbRvXS4Qen;vm)N$E6Hw z8$YMc$ajYt?tj&f7s0*6aHHoZHr{nPKdFE_+Hj-q-?UtL|K_dKlO(xrP+K_^_sn-s z!PPVtzkAR$U(fOm2EVr6>;K2zdw@q(w15ATLYC}qAQTahvJ??SAQWke2~DaHrHBO# zy+Z^<#KM9ohzLPZ5nI3p)~M)%1&N}FiW(JEtg(WM7!grK<^9}y=4OXH5%u@}-s^w; zuj>qaGrMzUK6~$drky!uN!yG5KvM6tzm2k=b4R9{w;WD*0rR?6tYZ^PeG?8{zJ#Pk zq_srCNM=9D!#;{B|Gh1L8A%=4-UIbUTAuDiLbMU z4PVT$J(<+roC%EMj=jm(aPK^-j^rDQA9@jsy^Toggt{TO|2PSzYxfMXc_RIq<*wm< zf65F)W07(fl8sOmhMl>S zQ_XgVEBos`m>(eBU-hs_zW+bjU$d-;B@>KM8?@q@^tK z-nh@VFSPYbd^?kj*kH1`IOCXB@$s!9KNVx-r3O7pHG9)3NSe~brZ0Gm7zhpfj zm+d*Zsiq}do$uU7{wL8>NV(%JFu^IBmTK0))o>5_A4VIHSSIzh zj<+%SBhq%Fy{MRt+8d@MTUi~Sam1^2?EsTZ_ z$e*wTCQ`fPS$~AY_M~-1(uY)+%16kZooaefzPk6;WV3xNx*w@scX{Ol?U%Cdf>xoM z&~4bT9?AEMTD!Ep;{?PguottVNbGY4>F-J!O zk#eWRzPWdu#3<4wbV07Y>Idbf&r3C%;c9)DNV$3FDu;_H5(0OT_8gM1Wk2uIcav!0CNbU75Z!v*3*K>V08j1!Zxz49=HQLY+j!~^2YVux=Pt&hT zHQ&J1c6Ax~m!SfrT$XJl1im57+`u^o6hbbyujNX+;#9WDy*kzW?r>X@|8z7ODffKK zy`8jmXd^1kon*P=8+hEJ1`dhd#)zpBi_4iE53_%l-a{Jl#wv4nj=n*96gWdX&Z@F3@@~%lWC%~=l*<@az z%&X{Qq})d=H}yu=WY7snt{-x_1(vJVcjqqRyq)8Rj+E(&1|#LZ={4QJWu)DJZbRaS zfsP*vOZg$^+EjD8!+nG@!u=0Y?hecSinQO6aLe5kzn)C$S&`++aVQ^WvKObC0giuz z@6u}Z~Br{GZn7R zSF}Dn=y1QV+@sY8ncPYrq3edlaIb*d*w%-);q62zH^==jMjS$WJDs$lXet_qb~6UF zVSXj`cd>03l^S~OA|o%=EP-3Po-LuA`u7{lJz70WxAtm1OJA01Zgu?dG`ttkc85FF zUVo9Wf_Xivhh)F$^@XzEBBlKR_aV3vN{HG}<~%e8iCblU6??(_{eIFmpsnavKC3Z4 zSaA;5aKPLr013-eO(DEU>sZ%dh#BxF=zb+SMANYG1ZiB z8$bWigZ$ZOq{H1~>%mge?nMtF>2F+nvur(hsiEx`ZsK^u;p+L;Ldr^rVqST9!Syoh znZvlgl-J`zvXSEtIL#bRf6_!>Ih@#h9nP9EI72L_2u=?;vCpJ@>FZdeUP`T{PYe8; z>sYdGW?l_f+vo4tl}d+K9qIm7ZgR&xCBa6hBW@5tO5 z=dQNgMWo$?9z?5=j3;`X_Ii8%@ZkpD{R=sFq?$Jz?#JZs$RMznSnZ8D7JJ*=#`Wr` zKRO+`$5ju`^6IK^WgRR3PUb^!b^nhczdQ?gDzS3w%MOFPmb7(9!anlI7gl?9f5~xz z_#tCes!3}X=We9jo9IiV+|HIe`*zL)pcm0|sHh#|DH3L(bNnIP?E6y9bhx_TJ|usQ zp4dUG+&PwO?qJ@ABvd7?&N_fzSFZNz{UKT0^e`W8RxCHyq>x|M)mjlNcd6y}By9ka zkVD+C4DKz1d7d-d^Vc#?Ioz@2pM_eligRzZ+?4w{zD85gSX96maMEzk52JFu^Qg+r zdOg(~fUEO>F%PkZfMz4LcerO_Amd@y`;mkJ#Ihc;mC3XEKw>@4E_{pYSK7z>ne)gm z>w^=BmCN#~gup`5ZbcFvCjPPk=hgY%`9tGuoo}YU!#X)!t!JB3IVZ*WlqVdnb!p%o z%lv})6Xe$4t+xK^^9f7f_JA9SSz%0T)|%wJ`W}b-g0;8)Bi@Tv#Ldtw=eTCKzp+n;HD$Vdp9E)I7UWm?n5HxMiLGs`s_xy~0Ik7^;88+Ewz zFt<1{XlBE0FSZlflfNe#iIgi{3?cA7XBsLujAk2SvX*;{v$V;A;Py_&jqd)Ep_d zspXzS+9)&=O+`BImhT_F#M^JLG%)5z$sY=u7I3xx%5@fVDKj4_x6pFEh~Ii)Tj}d8 zPO@A*t|@@q6|U|#nS;cBzm&4Fhh&_WbpZlrqP*}t+jPxiJ$+fe^{wo)5_kh0o?I`t zh5WA}wNsvtPB`LxpIk3jmS6RFCNCT`W8s$fOfc0L(>{gyt;3aPpt#&xbZj#Ax!f&# zJiqGxilzn4Zig%VZad0#L255Q9eD)z61GX->~b6ba3nXULeMlhCGOW1l(`eFM(S67 zqDDfBJU8YI(%(a_U;Em9C4P-o44RG(Zx?xgKzot$D#;6Y%{MWZL|u@}o8<5c(}Sju z!#kV2W6)%z-@CQ9#{)Nzb~jp&9!J%ia4d(Uo)$R!UfNZpa?lKi8xczg8_E9$+K!Z) zWw}3)W?tmFG?a?m=MENHuB<~$hLcexXfA`BB~Ze#339qJqiWDBb^I`y{4>!dNVy{{cP?p*k%apgLuFtoJzvuKT_N0i96!kK zybAY5hda)4SCRIZ<$jr+Xx!&Iip>(#581~AO`+q5rzrOddL5~~FIeuO5j#JHQv5XgO`nlI^0~#T};|j zXbbwBeq63^+!yic!`%!@;s?E6Fj6aMn!(k6_G96_%(*F~_TFf@lSrF|BrG77--%ua zTX-6zpPk3{+&V$i9j^L!Df#b3YmsuliIGg;b<*BPpQ6&wZ!Naz0P<~+`c*2iy^U97S|;fuIx8+a?rdESLb0X zDRT#U3MscGc?pNdvrcc&{~~vM$hO>1Xm1_JT+l9PK872Sl7vy@pM&NhA!e zn#!Hx^|#!c^xLQkQhWPZ?jX`6TuwX-x%I&mdj8e=TX;&)^n=?tR)T9o$)8xnyc;Q3 z@)81{z0LJ_?=TldqtUoQ)VEcf6S$k-Dc|d`TP=4WjrnHEy@kF(%DusIQ{QD?jV?x0(Tg0f_8snh|7TxI zFf1z^zD~~!q@RSVL9RC_q0BExER%WI3N|z39KPNl;k_g4nCb1Yy&A#2iR90LTjR92 zAIejv3aWq@A>b^Bm|DwD2VMooyEnG7hoi zbohFftn-6r7F-SL-+`1<|8|3WH2KYc zb2Ui)_L|2DjQEJ>Z=lQ3#mH@+S%u#I(0;XOYS8@T*te4WtI+*Ozn}GL;*+GEz?wI^ zB_{c}NN&*lL3ynwFOg>ts{C=>E)Gp41eSclbDhy<^f+3`zFdKdIL7#WtJl6C$8W`a zVD801Ga)n1?f)sq0w43+rNsJu_uJ#{n@PJDJ%r@ic`t2Yca~TevFO(UD+<7 zZz-;}Z9RU=y)0jSgxFV6mIqvLDLj&gx3;Irpz!j4=Gpc!=IniSAD@;5j8+- zoceI;8(w`7d%whS(W`>yVz_k4u~7PcNNI=SUu+2coBK`q0XK7UI~{IwY{^1BP-%Pnk#-LHv4{Du-*g2_@IkZ&Oa&=`(EGz#8DI#A1(>d)0#mDtyKI4U!NcR))7nyuUZIO}=NzbwLw# zxN;m{m-G`Tr`!b3+}QIcnp$q@=cg!J>wR=d(A?s11%bI{ct3A{i@iyfOY-3$dE9Ze zG&c|K<8XC6DE<3Bj{pAE@B3sgWq#_|Tlzexa-|>qH|IeM;eO@V+XnyjK`X6)^YKGx z@7o9Z?d19~bQ#J;@|@|*=+t*Hj(1z+_1ikXh^z>jJG#XE&}$dhRHLy-_M31&v)mg< zy93>WZfDWJ_3v)mzbe<<5;RZ2mGBWNpv(re8A*+j)900BBiAXsN7`O=05QBBzNS4q z+ZYbFys$FJvy?raB*=X!iQjPk3@MML6{(AVd0)y&@U$LCEXU9JaODSzv>wQHrZr*K zL-PH_&Q|h)>@T^_^x7{HO&hkAUf=F(+4}t>x8m0_xS0+&D~3HfcTy>CKHPP1b-j21 zykTg#bUhbVi zGs59KOdh#!;~8S{n{YaKACk0%w0A6H9nKhXHuF5nFSq6AlkX$8%l#JLIORKf<;(3S zE#W(Sj}7HnZ^)&*e6Jd8kLCx>7RL^~ZzD*4wc`|zQ}%rutAgfFr+jV7$r#koDR1{* zVl&d(qa*e|<&W(i_ouwdB+vbJRYv?^>uida(|sawJzF#nP6s$TJ}IXQEZN_}Io10f zmh8Qe{(cP=RM;+8$B}%vV;pXGcmvVd4ws=>LSO-DcOVJ(5xf1IvXxt~I%t-_)&650 z`8T6iklK4ujAQ~8cXQqXNoYqb_kWaLzn1IsC$l~M?x1<=j^h`J-!C2XMF@ z$lntUK+4Uw+{;N@j_yUbB9}YL+N<2cwL!BDZp15Vo+rQD2eOq|x$P`>Cu#eUgg=N~ zKd66CtLFJ3dVkP-4_Dip+!vSf1LyRSa?h~bmZW8&KIqn;ShHnt&OpL^(E35!MdX1X z&qa-M&!x<0l#7&mp5-nfZ56s7ef;y0$3a_5aZBLNhZ~_RQ&#f?Wj;blbc)IyC!GfE z_+HYUL!YAeP^3Mn!_W|p>jMeqE?(+&w&?{yGq|T$kYpq4Qx9^lXw@I%{pTb$Gj<$a z|0}B>Q~&O^s9d<0!d3subB)~NARTAm2K2c`^7*BoYouKDZwcIdxY{mC|K8u{)JJQ= zzxutuj7K?sb^K7B?;k-YBdJjiH+c$a@1bH58+BZa78;Yaj^n>xaevCVc#wQLE(+&p z<6;5jyV&wH1@k9mLwi|MLllkKq2uClq@9G=#s4)f<~|WLS2}jcxOg&obzBrXjy5i) zKN&Qeo$|S?amjH_d&iD?yeA}fChaVwzL3Ox%5S5*?kBn5{XFsvLsDPm^G8cY_WvZ( zW=bMq4zb%G=>FIFWeMC*;A*|Pn6goHrNeFOp<>r%Tur)!jk#rWwO-}^hjnm=D|=9W z=V__Km1acvukp7mdzBl7Td8;4Ug2I3^G1i88N>cNZXVova3fw>a|^sR=rxC{<5`WL zm^-3w=oBRVqCOXOx$SSIKllh%*Ile#5!p}>y6dY?-P z+$SA-Pa%I-)B`DZspaO8b`O$JKs<>)Tz|J!>)E>vJbOzv1kLkswVwTl{F~8sq+ENu zU!dI2*o#g@tJF4d3cZ48Bf6?Jw4n{!jbwS)OSoYZL2Z4tD~)3(-Xm zw{pw^lXwMb%aD!>l3YOfA1SZ?TfufIe-~2!>GfX6@a)pZNSAQRjq!DS-6s-jdy2fs zc}BQyzw#7ipLMugf+gW!^((n>6Z*#M=gaWkKp#0=nQIHT1B;de(Fk-Na_1Q@+V&*% zQ|4Q_n}g;QxN7f(<)9e{SN$uy zZ9ir7ctQHtQ!Uqvyub1tj@Dll!M&^$_W)cuo>6;k8~#`QU@_c0#}BocN69r>`aCnS z*H*nil;;rq!DmWH`Sr;28{!KIdYl~H!u2i=_xwAp-zls1Dp!7wts*=La-VQn>x|0H zdWC+);g){RLmx28jREbSzk6O!4%|;2Zs~PV*AFf?$cG)x-a@!PIoy?JCB&X1Dr0tO zKge^Ot6M+R`y2mezZx{*Gwe5o)%Y6k+Wr$MC;iJ1{BVP3XqnHg$*25rl-Kd3Ipt16 z{gButfKuLi8z8Kd@XYA<*)hG#ss9?fXF_^&x+U7t6dQN2=$xpowt9rOq!_l7B7Qij+GwhBbi-2RW8T{ZSW` z(U$oM5^iCk7wi2pMekD2;Hn>f`OTPVl(`5gcdq5i?^9e!x`cOFUM;Ji)%A$1_kw1$ z!(BwVmFOjhyU22v{?2hHdK9fiu76Lm?Lz%q^g+<9ft%r#H6M|GFWQgP-j^)5`k%~O zkc154;$t`l<*oQZ!v_343jbymbDb01NGvyF3;Fw@Gm&x!$$ntJ$?u9>MY@C~#JkJj z%6?<2VsbtUnz!NVe!GSI_oB5(x#KMNEz&+hd(lqh_J@U~=7rgx2hHz}y}$P0`GkkK zXAUWMisj1v@HI)7(16$-&(#lNuZ-sfaMSuHm@LUmIFbBWs2fu549iU+rFtxtXRQ)P znJ^WX@^8h##=HwBvNLGv!c{-CB>(AX5K`_7mb;3S2T>8)gj{Nxp0ej1mQ9)Ska9n@T>0J0 zOG#gddN1Idr!$}L>(pQ2W_`=J3s=XB8z}Px`V1*|kL6ZMN;b{WAan*QqON{v`-g$n z55G|N=qgO!k3q8^u7xG7*vt)a<_;FXU-A__qrQJmKu^t7ty;s(ZBfnfjexZ~jO}_UhmU|^>OOS+H ziBD=kJ4b4(#90G9d(F?R8^P86w3_^K&Hn?$%KhGQH;}dkNqC32J;yP+ex__4*9+i| zaJV0k|8c&@7sSd<<~DLYTn4u)<&@j}f56TDh2vVdk(fzb z$H(~42xd!%tNo&k4}D1=fJ*;<+@e$;Vy8vIh2`-u0U$SJv((-rR_^td`xR;Xkc7V)CyOmN-Gt08xY{qudXHR7anRx3 zZn<*aFRi@CeTf2PwKrK;7C+>{{mtQ4rCeXGcdbRN_TFQ;BS^c>awjm^D2uzjg6D^5 zV#riHGhQE-Q?3c0d7Hz1(Q=DO`_6Lz>ioqgmYbgxGWFqVd)rI7iCj~5(BZyox!qHf z&G~2=8jW0g7u)`JJp1ue{E%BNWZF6Q-bnsC&|0K^*k!ppNZW@FqLO(>9zQ*3x$>M4 zsSkN6A#*-l?RQdw$)+}HkCgj|<+cqao2$^1=x(%&y8ElGzXPd^QjZe`Fz?2XMd6T% zI)3O7rY}T8k#dhGA0hBLX`!@a(-=iid5)#4+vDl>wLI=j{P4Ntt`ssi!p)G^gpuUG z1g%BN?PIyaDll%Khta*LG0gTThj!8MR*(BLu_Hq{|D#~q+FKDBm}NJp0NTwf#mm-U2dWEuW)6&$U84&(g()veV;O4p#4a> zkHoMha9X2ea}LTu4U3QDp5)joTr)IePJyfSY&vDGMyrr=bzR^W(yE=nc#W#i&$#xk zv-8wd>__1i4-1(|4!1pJ&Oq5nxty+$5LiOmE$9KX8oAsr9j^E{FDGO+!p)MBghKMa zhQ3D1rK^$5m2@xz7G>>Lc!m)w6{^c=1TvF49MYOgSdx>W8Z+lZWm?%H12o zn!tOceU83C9q32g^H6=Qf7K7^BSU7W!~LByp(e?u0#dG>y9GX}&UrY}C3GWp{h~bfSst?i8A#*w4@W0O%SynePn$o>FxPf{g6E-WZr_S<3+#k5{-@-%GGv!47>=EAY;F4ulhmP zwQ|RX%;#{+dp4O9C>Q1+p%t+Z?qq*A_qGMH8*(3<<+kL*+f*bxUDVMi@d*SL`UNm!>uwn?uV}Mve5vC+r@Ink~RxTko6IFeNXMxb(ee|VARy% zUP-wnXcfh|~A(I0);*~XTQ09gdu1g_S?%9_63uzUa zCYwg626ERQ(k)llAMz%I%q4KETkgr^?}pBna-_+Ai}g>`-_@jTKwCunz3XB0Jaxo! z^?upxNg;EMWABHQDM3jm#km|pNC@;MZ4jD{MxY04v#xQR_x%^!cJWeu=GyH1yvZSR zk7Mr=^1qBeKx*$C%N^Vd9-4!uBe}nKJ#6voF5B;Ht-vuB`3rJG{04cv-?@qW@*I#y ziIv+xDj)V9AT7N)#}%kH%Eo!}JVxPWSU^Ia5H9#e88RE~yK6FxfZ~kz0OYb@N`7=W%4@sAyW;mw&O+QuM6ZBV!{1~`p{FTaOL+J?;~A;w3VZ^ zH*-bEG;_G}m8Fe7>~IJ1p75{EgQUal3|ITJ$Kbt!UU#_jEw=_2Beg-NqfW@Rx9S~7 zwzrIE$Xo|E;*~Wc$uINYDa7grSsy0^mLJdk>7?I;u0w7=ndP*%OURrtH)QUDtL;s> z_c+|=W7s3P&zIt6TdrPbkui_)*xK6|=e|mQc@EPKhx?u7{y|##*4}%l_B${IZEXa=&aZ($7O@A=ke-)?Piol083UzJaS@ z0{P_}>P5s1HL-fO+uN8pm$aI!{pj(rBo|QrkW)U7JS))4h$?Eh^-bra$(7n9n=xoI zQigobHrFPY;;Tbu&be_rj z#+|W#<4MXX_XW%KBJXbsYb|Bjd-(Vk?zN7+Ps6*eTY}l-a1UATSEMDj^ZbxTybIs% zLyZ}5#a0R04$YE~Sr1qDTQ%}adpVw1?X4(Z0{>pvp64T2?p=3sEeZ8O$5W3Q_irKG z4;=1#uECJ?{N4_?j^)bp!G~Gy%J0ke!{Pn5G{nJV+`nTfC-vbHhs&iHF?-jNw$5@l z5|?GK&R25sLgoax>W9tbm*dd4h}94FwwXZF_Q|F#l8{MU)_zlaOO}PqS#Tq<+>Ax! zm-~Ci6DxP3wf7OyokEHM*hd)ln^Ud?z1NZ zwO+q{g8cU$eb}W?%xKd zC7TIo4^r;=(lO$P)?JuObcKl)pp&PcZ9O@f;v-@)v(34CFbZ_${v}#Cl%5{toQtwd3K$YHvthV6R-a zbQS3mmJ`eKQ%avd)B2nJR>-VzxOb9Y+Qq{T*Dj?6-Y4xFBw;_XoZtBsiJcmhTl{v& zY;(AOkYDCO;r?-Z>Bb}ka!9)nEkg5CxHGJOm20+#%&`~5{jiGs!hL~Qa5BD) zx7_O4jD4s*67Kud)i06QYUrdTR&M0Ikm(Lr>w`SEO!~6{lvVCx%Z*uW|4e6lS?z5u z^LQEGir}8(*!yQTZHO|LI^6vpD{_Z$52hns*e2(jxL zZ@1jbhaSEEjlzA*;oeQThfsmTJGKWy}v*O(OmU}5_cc5p`qo_Iu zzKxOGXScqV?bqp3WgN=+BxIhXPm++2z9s)J=r<(YZYG;L5);Y=2EamP-Cq#-G-SGt z@HmoL?k}iEUcJ9SIH$-4=Cx)0UQ!|D-=@6okA{?${n3nA{dT>F51c~U=}5xg?T_4I z&R5t9BKhV1i(9$xOYgrByE@1QZl5mmzC_CJwcjhBO#f5=9Au|!K?zel%f5~iP9wJumcDvvHL)vB}LC*6RR*J973R{A- zBk5NoJ2@V9xUW-g7YYrEb9Y$oC8VuH8_*LdhdwG7$?rn8ukF=$ZJ)*8giP}2xV^i` z{|9P3IL`gSa_=YYW%Moj97SQ~S?+CieMGtG-!uPoxV6t_Tta6f^+TfUDBArx(%wRQ z(YI&~bFTGB>Z;SA=BI89y^5VaL@pxTz$ULi==&w{zUuH7MSl_ZqE{Lzp1^^ zy&-dqz=lz1}d-)-$y?cR%wDhx-Tl!{>2b4N|T?|7;m)x1k5oJ;>!2m*Qss zO1pxa5i^Nv!^r;)s&Iasdy2Jp7HMnI^JqP4T%Y=dWWQBE-P>r={P1{ z&-Rf&IFxG>klH)Ka!Vv_Sh8t~8lZgY*h2d12%zL?N7jduLm@NR;a)-h8_;T`+!rkO z6Vkp%f1v%y^}|+sJfi;1P6(Te9B%pr9G9VnNV#&49wBflX=kEyQTj*R8+Z)1BJsm+ zhb!$kBQb1N!p)8qW$s3qOVBk)x$j%GF2Ps?YDw( z*o+$MbpTR$0{Nvsn@%id%6M@MT)tc4#iT9R9lt+C@<-CbW+~;<rLhQM_I)9b#EJ4=~GAe}418}vU-9ovK(XU9kT`jlYNUrli7o#c2-S1g1 z9N7-Wt%Hf)AC_R9T{ zk5T3cq+D)OmJrxTS`m^U^FDdr@?Y)uBDgcHy?rUagK~RNr7>~t4VHTuX}6$_=rL4q zGIKimk?c*zMA<(}_&l{Y=eV%B39bgM=esDU`zIgnU)A#>%0FMm_uWl-{l0pA$-nu& zIkm#(W4P_DVf*3zi4w-fxsTZITamPyNJ2g0t(E?JKCyX_oln#bo5b<)`qYU0?NNWE z_Hz0~Lf{(GZbJ{FyO4W)lFYi9+b*MZ!sbl4+Ad!r{~PEnq}(?x_j}T~;5POlA>#Se z(e>;f;c1ZTQ1n!x#_jYXHEnJ5oG==rz4mMhP5Urzp_ZLM)xAMm*yiO z@C|7{BMB)JxsC@PtgwDi|0*}yBy4_%EA{L_#*Yf*Z-^QrNmh&yQlRv9f z*i3_4-YaYPsMrayHz=oEvDYShulW0S$L-m0Z*=_d7QBzpr%3&9fk#U|NLqL@*Onj| zgGBPZ3$e8XPNrkuHS;+izJ_NLkyq^->u~~&N&DqnDkMRkr{lI;;YpauHrY?Pt;6PF zhueX&eNlghyGlT~V=M)Kc^?m%kqI&WLxS<*g5KcjDv z{N9JI;}zNcbXx_lePy)`o60OS>%78D@%&klSh;UlZfgeYdZaf-^86py-eSwu^J2wt z&v3XcC^G}iLduouOLxw1#%8&zYWN+pTb=KPc!(|K)JUkpIwqtn(8q zSI>9I@3k%?eFa)b1$6B#DP?c&DPgnB;oeD^b?84xxnZfq*t>%?lgr!yg^=st#ii^` z?-Vu#4!0ip$Dj#Fxiu_z7ikw>h`lHexqjH4>dn{H4_RHq<|l{yAMzKXO-Q-DE%ysa zo5t}rs)$^BA1q~WUbnDG<04(H4^7E`I_ia#%jIY>KTIa=HdKJ_LoU~F?}xMtwKx0p zuxa9OpCNw{+J=;Cmmvbd>5NIJ59)?oZhC2M&#>v~a0iorG#ZDLn``ZzN7`ES3|fa= zZln~qxL4SWD}%e4a>||k54ahnxVe48=9)6N#ST~3+m2>$Rw=GIgL!-z+}|ATl7C=t zb}4RNzp#13;Z~iIY;LB#H6d0%==r2xq|HK$(3QybZ%!$0R(9BY<#2B#|C{u``NYb- z*V_9qY0o1GU69+3rH)C^ey0fTZw_}0V}8 zR6^gL1{(&E&rTkDh zC~PJ<-2RC?uYwDbOC0VumOGAZZ(iov`&ak%Xnn{S95(YD?(gtIGg*g0>R($20*y)Q zkA|ajk-OjWO4*xtcG%op26qzWl>3{t_h{VwQrwauVe?QK+^ZdKlK0h*YHvX)ZuYrh z^I{p?e1{wU2i(F^+=BDMW=9#^rycGw|A1Rmikm((YoT~NFOJu<4*!6g zUW%JHB5Zn-mD(j?JjBxdg5r zPjrDd6isrtLoD|u(pI4dkzA);%)DQpowe1@ck=nX*m2cp=6#O6a^2KM%56s4j=2O! z!r}9w@35`ql}Fy6mtp;&>p?|u*TId%it^kd%IrqJI9#T=5(0H*alRRKLamTom!rq6 zS(f`!eed|aU`*J&3s;Zddy@ZbG!Lo0FUkwJ!ArQl9yLJ?PzfLSJCd>D{Gd0VJbe5< zK5Tw=xWmXl5zRx&-DF_Vgp|A8axWomKDq(P?{~^N#%?5j*lp{B zatkJf%~^0WyuRDqOPQC^`$&&3fA+X3DVMTdhH9e592ZJG6Xq!EgROIniB1liryX8X z^2+)4HpEh0<+%NLZ(StiRML8sVhK-zup|`0+W{}zdu#fUe-Ijm)IKibl#nuowDvQ3 zMlEsqT5M;<*c@{FIFGzfqCH6c_?Y$MotJY@1$qT-Knqz@T7ksAq7S`T z{3xd8%;flwiMRH%30EYWS}1~)%O&U%0y9X9A_)tL%bMREZdbFyX1v2)LjF6^+eo=X zt-ammGM3L{u8$r>J?C+KbM-_M`G|FvlfC+{+?>T>a|h={)ZWdxTuVd4mwO$RYpX?t?cW<=6kqVF)F_~MgD9w5Gl8lw=K|SKJ#&O3tEO2vqn=q$lG5h*}53n7UQXJJNWvS$N8=W*4x39ajr;c_^8bo{N6Ot~x%mrNH(cm(k0HJr zdw;clP@CocsAtHZw>E4#azTaex7y@yg-%AwE$3B;z;x2CKzV2Zs>*dx+7~Rp)ANUL zpM#t8K-jE}Cg`>2<{t7tfu2IjZEd+bNjveHWRrAniN!2il9uWA6~wU&RM~ZG8}XUzGfhhRvp{;@tE_Tt|-@ zAmui)+;d607)gi{iyxHh`uAnFXFSgNhXwKauz>uxqg6<`3@Z`>?~+#KT8~?YSn5OR z{U-J7RWcVm$vVR|@pgPQ>pZDFP3+o#Y>;8AxcHD)sM{CDf{|TGHaMiz!u%j*N zh?L7C10)3Yk!BWq_SPgGhi_+D|EeEmVDIx}&e_QE3EV6xNvKc$(@+tC@xD^+IRE{yd2VsM9si0Q=khH6jgr&sNj+HBH3F2RA$623-O`j$4`fwBZ#Sae>D_7g`XQb^%5)!WW>O<-M zrtR2#&N{loO(lN~R2wN*+uLWPeUBsrZYaCG?K#Vs*V&%^ZPdM^ zKgjjx72!#!PJFcf!F(4s2}|SL3wdz9{>F7_?q^(gUC(k){2OjD+@^5#xaU92N6MO) za4Zw(`&pvdZVy)Exi4kSqx3vQ_U^Fh?QrEgx5k!^$hB9vF$eHxBj=RTh+S^(8D4!; zZVudu4!0}3Y;;~3T>ZV932c+|)h;($idzDADcp!PM(h=dJ+8gH4O|58G9*FnpD1g; z$@ScF{Aa!oo5$d4eV9wRzw)pAp2#B0UChO2?tQvmt2lJ%=?eBd5Zofi56h0iUCB1R ze(mq}TQS@p;WifA3HMOeeZHj}Pl#V+zZJ0U86;tKvqUrBnNO;{a-EL&A-X4Qs^!JG zFHo+mb|Kt1*tWxRi;0iM&G>K+pZo82E_9NSVxBE@5YdG3|%iS9```~K3_}`jGnV-U@_OgG@OEjqT<=V9e z8H-Ec{0yhM1x+Q799zyLmTxGWU%YLBC}|qxcT3Cq-g@6i&d;2$yFNZXh^5jeE_1kl zda%R&xV)7-Zhx!&f%fCMa2q?^8{yrJ9&xz&o?8MRlJ+YK-^lS5x{UR!NL!A9`0jaU z963G|?hl(OaJ62^?|{j3wvMHo`eBRZ%I}sPPr3wo&Q?{{Fmzo^?UnsMkL_8%gv|oD z;$Jz}+njQpP+x~zle~n$g`{1Eu1D9R-|NFYlYO*`b;5jkhN3a*UvnUAR>0M87x_D4 z{DZ`Tll|7%<0idG+J~rw^_*;YJ%?b|Z(;L@Jc z4)-SCpGxF3nWCAzn}4A-~+8 z_Ytw$%aln%;8)T@w{X51g*eA8_vdY4jvu=Yw6wh`Y0O*V^W_GVX@z%v?<>~`p=@&G&2EiM$9DgkYC#UkHpHYDKD@$btSf<6Hx;c zZoqG%BC$8$)_-|kj&SpXX=a|oJ(>Kcq3%ez^)2^o(#D}#=t2~6>VH8gZgwcmtbnWY z#KAC5LUSmm+!HNVeg~lg>)aCl?!KOUxDPwr>)^eQK61FNEqB(f%=?jqPl?~hmtW@7 z&#d-*D|J}wLw@Bn^D^9sWF~w^eyP8|5v#o{-$@9ZcpGaVNJ39y_c^56F7*Dq!YXOz zW4IdnlV9#j8$wJ|jkVWDJyi01(jG!jBYE!qN%&WI;W@P5W75n4hck*bkW(r5I(acO z#wqkTiSLoNl{GWH#z;OpkMb3l$NRa!LSw!rUkQ?8(r?`7nHey*bB!3=L&UN_-2VO~ zY!RDuoGXUg5N?)y2%#!vGEf_&TwO2NONL3+tqr*Bx&1ojgnE17j)@EBB!o z$pm_lHVR3YOnfwMaU{(ggxlULYi5#v8M+ZEcayg*P$Qoa7QAwx3#Sg%Sg*d>(B#8 z)(fP5if`BDd$Fz;6rPY~wmJ5GNdB+U0i@g#?;`_ES0$S))C0+Ldt|*p_uC{}AH-fc z9w=#?W)g0S`{7*5j7O7@a&^7nR?-TPgr|sQy+FBIA9TGS_rx^Q1a4L=H}!-3;)m_T z%B8!P5D2bjtr1CRO#D~%;Z?S0os?$IgsY+R6ZnZ^N=|bfZm+VH@0K|8YJP)}?QVO` zr~HMK*Lg_`KCj?=6YKNUE=v!zWm{)!S8rmsz3TVX_L|!)&CGY~n%+Or44}-pNcxc^ z;Fg;>lC&AfwX2x&%bfD(GiIGinMHjVa?a;J zM4EnfA>|&YTy^WvSK0O+`UHtTq+GPdR!T!EjMv6X=9PrrP$YKmu8NmeB;;~o*gKFiLs2eLZg0z7dP|bIjr50z<@wt#*DwwWU+vB7kY@7W>bz38 zccCX8Zh3JiemEL8-Ev=QXxDE#rkMxe>Ub#oLL|S{BB2&Whvh}GN!e1-vq|jIFe@Y* znR~!_1x~j2HpURn=h!DfI24a@ayUNG@*2--AsdfphOflv6I_1rM-uye2Sj!*d;S~i^&{~H(GDb3iXGnY1a?9Ps?*{N4^*O4g zx#?Zf%nY~@udI2Ca(|+fwQ+l=SZ+tsPDkU>aI_p-^R2xRt+(`HG9Sq6mS&d2)$!m$ z^2>8(qQvTln=N-WY0o1GZxFAk$4v?NGrB772N@4!tup)cG;=>(9S`0kzx-Cux5Uc5 z-*V;mdj7QB-@3=^i~2y~dQ^_s`~~i_j=kmXXaAyxNV)&9+#J$!(UnN9llip?W5NJz z-o$af9cK=YU%eP-;A(xii85mEJ;ciWz;dttI??=xbO}Xg!NivX(HeZAHcNjqneFMl z)65~q-a^WWf8TVtzs5-XZrKBT4F#Yx5_kiyK-vhn}d=K~@ z@IByr!1sXf0pA0@2Ye6s9`HTjd%*XA?*ZQfz6X2{_#W^*;CsOLfbRj{1HK1*5BMJN zJ>Yx5_kiyK-vhn}d=K~@@IByr!1sXf0pA0@2Ye6s9`HTjd%*XA?*ZQfz6X2{_#W^* z;CsOLfbRj{1HK1*5BMJNJ>Yx5_kiyK-vhn}d=K~@@IByr!1sXf0pA0@2Ye6s9`HTj zd%*XA?*ZQfz6X2{_#W^*;CsOLfbRj{1HK1*5BMJNJ>Yx5_kiyK-vhn}d=K~@@IByr z!1sXf0pA0@2Ye6s9`HTjd%*XA?*ZQfz6X2{_#W^*;CsOLfbRj{1HK1*5BMJNJ>Yx5 z_kiyK-vhn}d=K~@@IByr!1sXf0pA0@2Ye6s9`HTjd%*XA?*ZQfz6X2{_#W^*;CsOL zfbRj{1HK1*5BMJNJ>Yx5_kiyK-vhn}d=K~@@IByr!1sXf0pA0@2Ye6s9`HTjd%*XA z?*ZQfz6X2{_#W^*;CsOLfbRj{1HK1*5BMJNJ>Yx5_kiyK-vhn}d=K~@@IByr!1sXf z0pA0@2Ye6s9`HTjd%*XA?*ZQf|NryAp-7LZkr5Y-pEPRxlrbI4Czk#O<;PBK*}T=s z&D*@0lyUJR;p=CVPwf2J^MSA5t^RfH@EPM$$Bv&d?xGRRM^2sGV)&%-BZiL{-ePL* z=qb~OPZ>30>Z}%{XN?{?s>R63qgqTFe$kYX<3>*lPM$jIAC*dNJZkjJ(UY2_21kv~ zO&vRR((ox`n@^oKw#BR#(=VBxIy0kro0FSoq>gLZaa8{{BWL%UJ$roL@#BZ&PU?H+ z*e+eW=XRYrddC6pVKKA`>v_YViBf{?u3b&$hXKHKWX%| zPGd*fq^>>sU(mf@=PrG_ck7g4(|Yvpd{)<AGZPzxVP5aiv$2etYjGsKZQ>%gthcW?q-{&eh)E>+R{-{vR_wcRIU&YUGgF+3oS; z-aEF+=CAs1I`fR2=B9P-|pYBv76^mLm~92d){ zCB0bR{goY2`+0>mBe7SvBt6AYv9md}`aBp7Ff*d0FqoKi6)K)t&5V-scz1i`yaFkF}Zf)92bspk>?G7fMa|-PRAyKrEkM zwA>?<+^QrmLs7X%>_w9I)@W?s#v&=7+sXT0#WvRMImwaO%R(DR%X{y2d+9jeM5~!d zLL@Pg6iJShi=;#Xk@At$NHEeOazVsoL^tMdjNX~IF}k#LN$cNTCdXVd+q0|*!S8`)O2BGy=DiV zfaG%uh~KfVbIT=|*+|kaBVJ@*FDAa;zFtmzqkSC>Cz!{Ou*2ved2@m_04csS@vDTkJ{Id6F+5NKSTVieO<_B@3o&_$Y+0Q zKR<`ho?}11KA+vS)aQFv{PkbjLfL!uAEf@1l7Icl-WKok%O>H-qgrwFtzJ=+Aa$}_ zN=hJ5zI+fc`b zx}`#-RQNjwFab+9)eS>|$uij{$K;x*$us$;z!aJyQ*27;>(Ik@`O*ZACn&bvAFUqmwaG{NLJkGH13v8TQE&{`tJo~;V$$Ot})3Y_d zeIM0wHZHMo#K!41F1DN!8ylORZ{s2x$3FZo|CBIBN@$oBi_AG*oVC=87jE+63BShT z==|oL4WX#=$XGo8y_;k4=+|GDIC4RLVi#gO+)m=v%WF<1&id-MjMc<>bzXe-UE(&4 zex4ZaYNEyMF4@$%tI2==s}t038$0>=2fCV0%W}RP@>$oc#ZSzt{m3!hvVZve z-7jnQ>3040Gg96xiFSh<3mK*Z%`_)vd`f~TNjbpZ!oVwm1T!XeYHEV{I`s$sjtNc; z@;dkff5(KThIk$NfxlzIQ|ZyZ4*$U4F=PuJYWcS12bce;d~&dAuzGM#h5IXPNI$t! zG2P07%GXq0Qu&U`$yJ(EX<4OBm5x=;uUfUnu{GM(NUhbb)|y&@+QHhV)IP2DnA+oO zFRguj?Mij0HoRcM#tG+695Hd5Q}~>P3ybG1H1cx({Dp;l_Wa^`nDSR2ztCFsS08@ZEIImPATbOgI)s>@2~qFU zOa)VsVWbjs|0<>`gGn`x&Z?UlMh28xrnaeL>Y9kDXX={D7_+YB-1m~+jg<}!1+xx&mbCI26XAOEjI;!#7D zBquaTN@|mwoZQX%Oxp}h-XBXYdgtkTGpkp5<+uGKpUnL7k`ERSSzMU8_}zmYY8Jkf zxnlRaX2afmH8VUe@u_OhzM0uEP~m|lSu3|?eiFX@^?IMbn;AT|?ln&z zw<9xuUi)9Z>+xY``nRo$2aNqVvnb`YaaYa$H1pn$@0xPY7iU%|y0K2njh|({Jv*~U z()!Oc$JWdL?ePb`$hKiF|s$6xhEJbuVrn{-{$>ZFWvdF5)Q ze4LV5{(|zKm!F@yHucfePg0YEO@b|hZG!EBoq|Jy^Mgx**9X@I9}TVxZVtXmGfECM z3AGHh2@MO)4=oGb8oE97N+>N{DcmI7J=`mNcKEvRvhdpQy6{WkSHho$OPH8eO6#81 zD=nHfKkc!!XVbQ)y_a@ng{vxDTjA~s_f~kR!pjxjtkARKii#U5zFu*2dauf7S3ZYv z=F!RrUM5|3c_QGQ;RIgj(f|_%V8&db&y64v&R`-dzFV+31?$33XMs8}_ zsM&qZ9%=TUW*eKm-0aO}?=}0h*~;cwbnQ!9)@}9necSGPW9^}}Cp^&Nfp!Nw9n3t~ zU7PTDMLjE%Aniy%Kq!IIY&p z2`g{8C87Gz842V`c&y4P3B9jxm{7S=B^hcHIxP9ZyuNj-S={_-LpihKn%m9sy{jI+FB4;#chJ4CYH6kfawg zYx>3>J7zO$ItRs=%#LJ+6nkBp*GOLH6R)+evsqa<2T6L)gak7l$?HPmSM2NTiR3|& z{>FO=<`9zCS)V1CUPxY-e9m`4vDaVn8p-SIZzzjm=?6(i^7?3@4`amu#)paY`P1p= zpJ3JcCG(Z})Z9_$E7P=IMnXnHOa9GC7{FS}OZ?l+zZVl;PT0b~SNQjG!mA0d@oy{t zUQPHhVK4uF;@^)6-IH!fx<2W#q#Ki-NLrD!o_9|rtxS44N!G>llM0hoB|V>XSJDef z_a<#lTATC=Ig7~oGdbTP=W}(RPAVbi6Q(ffU2^_N&Q1Kgi`?7E-Kbs>^tY1s@$O!7 zTH>uHDZIb8KIxTr#t#(&RTd(3@eR7=0))C1IYxTZ2r_ONx-O9h5 zI(O9hloj#rShP0j#Cm=3+DoSQy?yw%u$JlQtpMiOIBTW1M>PIFti1_1Rblt{zmIt) zDrE?zQpiwgkPM+xN=dU2jT%Hk6Cra*C`BmqP?Qv9h>|EYph&5x$W+J_-tWymPafCr zcm3b@y8gH8v)1~qbML*+u+QH2z0N*I)Z5Vtq9a|PVS4Gt(fqr4qpu#*QxiukH-X9I z{e;;F?W6KWtNXoWcS?b@05`~SB8|5rb4jK(l$ zq^e-wQ6I_soiUHWLa8#;V3#mf!Wu9fVVxLfV9zmJ84Svu;eptb;SKA<@I}U-aS`?s zBN#T6aRoM<5dj;CnhArt!H7f8ct#>@3gZ^+ZALom9mZYUdXI4*@dL&q2HVInf`NK# zG4kZNz@T0-YH{mFMjI?SIxwg%#vjBzj9$e33{@5uYAK643xm>NSq`hsvH}@h7JbC4 zSk@udW3^$Gr)*hIu(DCktRAeKlozWHK4J4?^=D2Z97R-RI4L(7 zO5qF-LqSOa_grDO0t;oSV1;;}!ePWm6l@UND%dNqQfC!h5W6aTLH?&gE9`Ftt+;hg zI&p{MSSXjctFY7K=fz{+h(7}B6n_TxY`h1oZ~O(=!1y58(D)?SWS!+rS=z^T}M);{G7+rG{Y{3?=LX z^BId^moiqtu3 zgPlraWS~zbBMbQ)MjrCyJcVZ%=O+e5&P@!ejPU{aIz~GzIYTk1Zbl!L8em9aADh84 zA9fjwCJQU2#iE0FCChqPBbH6r4>z-Hf!)Tk1DTyH<}7TK1A-pl`}1kmGuSgzSZ~9o zvzEbD;GD*wDp{*x-?O%(X9sI1;%?Rf?8(Y(X4r=<*v?_U^<~S0Enq8yEoW20K5W76 zfql3_s2}_ApwKXEugD(O_NH8&6TQ<5~f~B)k_IdpQRe5 z*r;_f?lNkWvVs}*Mhk^K3T)I~g+tgI?G#R6FFmL56>*C~8*C>gx%?DEai$_ZV?eot zgVK&WjJ@<++%?!4@k-do=Eom}JsE!*);Zo2)-V2IJUewMJ{WuB<@iKo?!_0v7RQ&s zzKXAo=b+xl|B08RjFWAWC8=Y{d8kKe4{sm-pY~E|%wnVQTAXBcW_4%X%)X7?hy4Qk zGxiGhX7+aWE)>4`IfXb4I1N#)%IECo9OP8wQs&yhwTtT@mkpOc*A*^5?f~vU?n~Tv zxHGx4xF2yp;eN(l%w5V|#$AoS58Pk5zi|(7GkAD-1bKvbM0l3)EaTDPS;@1CXAO@b z&j$Q$NxBq}AUCaNWBENU)lC+Z?vCrT=p9in|GqD-A4J;iZ~%ao)kX;ZpUQjwpk zJXL+F7XEan9-eA5_4rhmsmW8*raqrqF|}su$Eo6C)5K1TIitc!>YGtwsbXnjWhld} z6*m&^6#px}NJ1S|PD8v)$k9GW;+aH+L_bP2lcdP;T^jEIa#T0Me(xgnMyg7xUFx^g zkd%=0Y-wfbUD7tv$E1%-hf7CE=Sx>ecc7%>D-$R)OIAzPK-OH=PX2^^r$V0s*~1kT zl@<3X9#ynabXE*ij8Zh6=Q6JoWu8i<4y6GlhH|KKnDVePyUJIU4i&$cz?h<#iWvDg zt+<{z3VU}&{QLOd@d^pb2}=^R5*!j-5}qcMp%z=8V4P@{cskJqwb+k|YDrp2hDoFr zyECaEsW$0P5+j)-nLAk^c|!8!Wa(sUyenFhNtKpLxmlf7T~u9KJy1>c9qza3f8S3H za14kHhz>{&6b!r>2p9|+d^T8)zmCDFL()UmLpDQyhZw`T!v(|7hD(OahhGm@57!KT z7_J{~8~!^y_&>~Y8K@+oHVjOG3+M+p0Z=S}6U+yTKsbn^sem5@E;x3EgD6k|>cIe@ za73H|6oCOS0w;kBCPl=MgZnKlKB}X^Rq+>$IID38CZg&fP7|1p%SmgiK8Dd z0p?&IZ~@tX;$l$jfD0@J%V;#=uY-7S8`OhtFaX548I%-Q0yJq{;O~P+pd7pg96St) z4=eVF)$?d*BQTKn3^# zm~(du^YoR#2%G>epbJo#vugtvkOHvk>fG%Lx49pQ90xlp67}P;v15N`M-~|Ff7zhWE zfGWo^3n&A9U<3*QRe{F^s8<;OgE_z!oC3{&dX2{m^1&NW4>|$$2BTA84jcjX7TWKm#!ARqGJ12Z3K0)Gd$?NbPEvrlMiAepUaSK|T3__Z+AK_V04uN$Tm#YIA?N_V0M&u_B~S*JKoqzI z(m^-Cl$A;a-vG;R9Akhw&;qM~5!e9C!5%<$;(hstL45!%pac8`nC?<1z$x$^)PtX( zgNEv5P`p40tOQ128!!i+AP}U2G>{IcJ_cpnkK4gvU;|DA7vKc~!BbEMYC%2t0Xjf0 zz_f=d0UdzU2~l3AK4H{NVGOtjG%)GNNZt?d-o{ zr8x|6em}x-6!sX$8`w&YMh+qB8%G-l7uC+u&%uj<&|l<-IfOXz2_B~s&iRI%v9Rf! zC7e^KQqE??U7X#p{kU?3gJN(^;=-|>OO}g=lH=0innG!FZAHc$GX=apT%NGrm@!}< z<9ZIu#!bcn8r(+QBGguH3&h8`$!Op_w;wE-Q(%wePJm6~PJ<=$3pR`uvJmHBb}@na zz+H#<6ZdD>4(?yDf4SLtxG{d<;lUXZvkjaNdE{W{@+iZq^2~=_$fE|k81oS9VLUrw zck$TrOr-31jw3$La{)Gh=OXMSo&?w=o;27yJa=L5VTOXOV}2q+)$@Et+{eSt%SUnW z^6_Gen5STiymGK}d6i*RdFR6}#M}js6!R4+%9PiP7xPG73uKP*y73BA=P`Rh{fRda zHVCsAGDf)y8_s(jJ;{uQjUsazHjG)4kS8-6yqdi1d+>%2phzg0Gq^j7xo@zKX_c2`AAbA`Re&t zsLy=A_=Ir97#qJZ#m>*ikFD?v!3y&)h1K9+$3KDE#J?G_8NUVWNq%S8^Oz~&{KKCP zdzb$qESWX2Qjaln!ZAxgSpd(8z&+VYf@1fgP>5jIA9uNwgr}CeaDoE%67I%rJ4>kj%sQike31E~C{%GT+46Wu%U1 zgt`kEVUcR0`AFTxMJfZC%#jLWu2cakE`?H0kSQ9eCRSj6iZkd)O|gEYrubW`3zuv0uTA~FnWlFU>YHcCuJ60t0*k1VJ@Dk4^rSpvIEMiW*~ zW;N_O88?}Qlsl@Dr%{z`P{3IXwH%D;6gpw4F|`~r)5Ytk=%P4*I)~XVUPr|^*aXE} zuxW~!un!b-Ve=J>V2c&YU@H`>VBaZzgjJfyu3W|7P*zcvr&N^}D&x$nybM+w^JL8G zlp|rImHT1;V%CiLn2M4Lj{GYAuu&>`upKJHu+)M)L)dkGF<5`hAS@Nj7l(6goD}Tb zIC)sDxFfL6aS^alagDH|@lx>^1IBy7`eOEtW#eDLzKO5IIkF0KaXjjHMgoIkO<;%R zOyGg#OPCI;m0$y4pEv|dCCMdWok=>dx=Cwb&67^Ro=iHMgo=35ZN%wG_Yh|$WhJpv z*-1Iboe#JZjvES|c@!j^*H&((y8Q4La6@C-n-_pINgY zF|%$l5@UoyY7!)7)+Ini7E)&+pLA-$o6vc4_!D&O0#E8N zq<=m9Z#wRRC-oSTr?_$C104Wh?A|Nrdjx*8+;{^#oVrET;d|a%8oF1Jg^__EcOlmw& z=$KjOA_4P-Gy#xxiona$u_nA09h16}2OW=&Wk#3vMUISW z$g%MOegglLj!7Mh)UUG8=N$YkK>ELfucc#B z&r$*;PwHBvje1`u@_aU_~UIO~?!K(t& ze0dp47|8bDj=Q>SiQQYGz!3#60lx=vWKh7N{a`2T$r~BmE^& z!viGdg6F1VUU+3X)`urGHS)b13-~>BejogPIz9;RO~<76Mrv-Wu+q=)zX4f4ixg&% zfIKJc@Irv(h2iJZF{#N>(s<0sGvG-*j`VSn9j(QYnAGDs0EwA3ITC9xz-tOd^16ui z>3IKWeU9Wwjcykpu?>7K9aq4UTHVO9)_5JkNPqYhbZiMv>UJd0tlf?DIr8uOILsOz z$r~NTd=#ue91Krtc_dHjd7tU{D?F*^Ng~gHCv`p2hgsVji7$-S_ee}?e4T*A-S7i+ zJP1ET$M|S@qz*{>kXj(A15QJ{0iM(YNuJaMNj;EU!LkRQ)CEbNSsNrVvpzVIe>7Sn zBr&s2NMdHKaHRiR)UN=EH^Yb1@pX7o-y?Za<0JJw@;-`#CpA72C&8xx(&rX@79Br? z&jDng$%QYZ^H1T~D@Xft!jn27S(elaC(`j`cnLb52ET-k)!~=Zu@<~89W!f;e2p_;TO=c8vHssHiADw$2Ra@bnFA4 zK*ve&1$6ubp42?aePGr(NzANul9*ZF9O?6Uw6;m&MTkj#lfbRO#K+GiIV=L9?JY~8mWtty5~JSxwx!` zVg;lRJG>Mf%fL^kV`hDn>>G2CQ>F6@;1|*H5_nQSCHn@cp_2M3xd?SNydj-m2frSW zZEb+xNXN`ND_Q?Gks*EUJatZ$N-S>q%zv(7ovpRRR|#CT_s zdMAmQHBS<21M+n%(xgW$j_dFzK|Q`&O;W_)gC~3^4~X{p@Kr>hNsm~Zli|s42#_W{ zVzE5@A24=(z0gDBa%5u!CqUYWXHb+9z=-ufC_@uSTSDJQ6==c~S`)7dy=bK0zh##| zlXKD7^%+1rjLSJf6G-!<*Xaa(c3eMaXu{i}(dUYI7idD^=;9;(95jKn*Q1Vdg+4!$ z`*;65pb4avjXGTCHgXDp`q$4JIUl;;OS+#gwBJbXUq63n0%_|<9lpziF(I8Rp>u)I z1ky@J9d!{pXe9S9GXBHbA1ue1kx%;9j>>cMsTGy@sY?8NMr89QP8m?xqsV5A%!B4 zRx|2w9U+eWx{@?ca8B3dYrmBi*R?qmH@@ojI=G zeP{w{wWAJKGE!95xPCZg(^!jw638d+bI!X_kK-$VtN9jYaAIbe&pAj@ciry~q8=wgibdLCq z(1dApj(B5e!aVwZ5Kq2XOi-nB#BYY)0_M{>;>*=^XJpp$Y3_M;`?7 z=Fo((>$89+tfBi6ZwXCMq1Q+J9%zCb-H-Ua&;(sNNBn+hf)c$f@duy@igb?ngV2Pr z%UVMddghGYXW|b*6SV1V5PuY!Fm`>%pb3NYvc%g$6Xfab5^oPpm`mq~KLbtpPA^Nm z3p8OC-H&)zXu=Bmz7X#QO&HtH6PhrW?nk^AG+}H%Z)n0pdK<+1K>LE(bdGpGXhIg9 zBR&Y4Fq6&^9|296L~ob)>(B&YI!C-728)DE^!`n}4YVB?`<^}l?JzEP3i=FirI#h% z8Ja-a@li*4Kodw~UjOd}?L+5gj^2dp$nn_doEDwK*OYK&`KZvOa~Gkb>6|p3y9u2< zE|&sLsG*-1;!~k-gIYRAd^+@FP*3NGFMuX|rgOv>LYI!~_X3)bPxmAKC3G2hOy`I% zhbEB5{3V|XXhH$qkN8*6glBY)_)2KPD>_Gf6*QrQ&JkY?P3Wa_#J_`X2V-B$4roFW z-H-TR(1bKPNBnPS0w-AdbZpxwcBI!F9@XhH;? zBi;j=5JTsP_k~6+6lPOIpR-3p8_^?j`-8iXTVuHN4yKP zCm4JGyr2UBY0Ui~5c=}CepjF)$MuVXjvv=A0s8j1ereF@R>*ovYH!gPpnn2pS?W4;ELSGu!FBqEepM4MgL!lGL^-F>#koJgPUotd-v~)U` z0!<+89-T{tCXkj#=Wan0NMo)q4Vpk&8{ID*nm}3=ox1}~Anhley9-SqEs7p9XFwN@ zi@jYFw@g`u(_EH}s!zIpbuE z1%Nqz2bFAxcpK!b6kaFnmWJ zONeJ)%QLng^O~Nq{g~JAkbbl2^)Y{MacqwHyNhFU%->%en`2(%^Pavh#4~?CacqwH zJBnj-%->TSn{(kCz3zl;LyH(R=JhA}^frhm*8=1L(xgW$`azTH1I9joT1Rk2Eg(&L z#Nsu9b_Qenk zxe4sUN0+?8M0cRg_9{mb#+9Jl{mdHqCM*G|i;mtN<}1^Q0u zY?*G*c4huwm&KlKs>g4AR7yzxFegt_J(^=qlIDc%Rq8=i#$9ckPi14al{_=(-Lpr0 zZ^qV;)qfQEJ03Zip2%B%!};^A><@NMLJA7+x{QyO`Fsl7-gMx{8lP+8oKC^)k2B?? z-d%M6^6`-CmsOYh^pC};6|c*jd2KS+3~}+n`&TX)>Yn`awMSZ@vAaWg$ky30?V#Ub z|AmPgcFkAJ$ypy6y7PQH*Bw`pZwp-<6;fxcd~|oOyzfVq7q?}MO4Zk%NHI~C9+>Q_ zktaS^HrL?OB~j~TKe9fg^54F(AoZ|hwPW4+HM@Tpzu%wQsO4v6>tUTV|ER{Xx1I%4 zq&D0h6xh!ZLY4Ymc%JzC4E&7#v(CYxewNtVIP+_f!u@+oGNzk^TuGDmu2}54^6~>}Fm0iUso9YX z6IaW0zg>3H*CpMO7W8<_{M`MhPDw2=;c3H+N``$)Q|u}E%7-g5gnN#t&6IgQ|ISK9 z^*ts@Y1UVH+>ac1n14O2*E_fQZ8*nc{+T5!nr%4pPbeIj$)mgKm)w?J2ZK1+7MIjo zZSk1V^#%(dOY&X{`KUp=f~iotH|{O6CJWi=1Q-udGSzz`;6nctOyOms#yQ0T;|;mXRiC%amiJ`$F#$}f;?-4F@zFBO$J8^ZZ@ie|OgF~T@&0d@od?*tBGmq-NuK0SgPql?-Mc=-! z>l~gQblY9la!oV-<)t3&@adH&^kfGZKMDjVJa)9-xWd}!?dDb|mK&XkNsiXuB0O$Y zx|!!O^PN-h7SxZZ@|Cx%jN=TjUOzXYP3*}aA{43$yzWj_& zc^f;mXN79bUiF4u$^H_lt_L}_mcPvn)G~-r+kD6J-NhShKjL&9w(nmz{fqtj<(_J# z>^CYVO*+Q%C270ySN=rS<(?(FJGS$?T{TgW+qvOQfk*HVkJHv47hNi+g}oPcw@p}* zYk2v{?#z0hy~6>bu>r!xiZU8J17EKwY7N_&mWA;~JX)~#+i8Di2`}gU{Vp!+p8R|~ zEG1zZIpbg?%aUm6-S_t18J>M}oo9;f$`zi^6S8+xk;A{%Oi!$yG<9OrKw^f5d7-Am z(RrJf6tk>MzFcdw!7GS5}tusb2Q*PKAfX^*K7`ly-EL z@0256c0En~TMrvMYF%9Y;?{NVgGTl-OKz{)9~#)b!?}hvRA=LJ4)?=~j9n+4!UDY9 z)ZfIN;%Y2*JlFlM+WBsh6^~coRfA~*Ri9PMUz(X$I&+v@jcWV7bJk1e=z8^?=clb| z&R>sT;r?@oBFSdb4Q13XI@=+RVdOXt?5D0?lsR@Ut2N?^WPTvNyzT&l`J>avHV!? z)T{fq`r-+#YYjTx!ha`iyP~#vz)&q%s379f9nn)ejxK*9fAaH+tl-}|;pJ@#VeIkS zceETT=?uSY?B+Jtak$7x#dbDVjoR#dt&3U~sIqOsmT9!4ogypJz4sj6oRC~4S zmWaM!u;vl>ZKq7W$hn{Y6Lv*ZB&*!JQK_a`Y<}ac01`hvvW?1&~^Un7VldBbvS>-hR3GXnU zf8lO%+mA6t1qjtvV;$t-g;zptmpch1dqRi zZY*xj-S2XGEO)(C|hXx$+lvzV)X8Wl6|iaPwUxsy>z9H`J)((#E&j+T;Gm& zoX>r~(eWq$1>?yUF}_kkhi1-0K$t zF+W^7FXvr;S?&?_@(zcK@XP5I9cOM2=DQ^npEKi<-r{2IbjVa(BR%GIf0{b`aW&&D`y{xA2y!uk{n^v)4S=v{@YUO1?TJ(qrrED^2Bfv-NLsSf1i|F=La1 z+weu5%5>4S#p+^Qc?xq(tei718C;h%%Px^FX>+hUs3Fx5-sWn1D&y>?<=u0=c6(g% zUy(Fp{Z)(WO&9JgoI9{@@twE9Enld9b}JRB!mhq^MIYJf-dxanIA4p6b}Ojn746%HJmRdajj{ zdAYVca@Qlt3#>eE{v=B6J3vVnt~?>X$Hx7I=kd38_1aX|`<6NCnnkZay)AYR+`19h zM(^+9E_Zk)$})U0gd`^oGRwhK>nb@8i_-2RUB<3NNvYlRP}xARy2{Imb(Xp6=j~rz+bz|7}<2 zEk7}-CEVcp;2h2KpMSM$WxsqQHe0vu>FF;2Z`<1BU&%f8`m7wXsi$n~ROQ~|4_&hy zyZx5e1z%;{mRhE^@!;3*RjSJV6PG@Ie06qd;Wyn6(SDkb(!;!dW##woS}K%0r}2LL zBti4;(C;0Ye^$Mnbo^uNgj(STcOJ>4S}oYIT71H0!K#a*dq4eL(2`5N=T9#Qc|P-D zS)}zPo%lAb^&3nz2GrXR6nN@C5Z*9%!p+zWzJ4BSw!3q-eoMB^Za)9LW95f$1z!Zk zdIB~J9@w)_rght;D7)HA^<8%rj0=}PKCoZ;ftS(i2UC964~Q&%HbqB!nw^QQo89`$ ze*IUt`mP7PYAkPFXJs@a=k}63gZuhDdY{~4cb}0xlv3+<-(S@)+t=DQ-n1;VaE-Us z9#u`H#3LN*Cv=}XopC)mXJ|;^lrc~74HMfN*DO4$)XdD96pnM`oVWMXV+@LTur0bj zWATJl3g0(2g=+u3691GfR>5P^_MWKtn}0W`JHHy3{=L@D@XFOEtG;Q7oNsr{{#pOJ z!hHGT?iw@xt$UMiCd>-sWbeD6a`)AJp*GFX7aMJySL-|c8k8z(3~nlaI6ObDz16ol zbLh=A!NFe^m67=Y)=l$bt%izSjZYuRE_s$_S9J4a*`UTL%l+a!2Xgw>aqW!bi_Yax zTrRUA&SG--Zl2Ea^{bDpdT`-DqhP;yVgHNv!ke|;+h_eM{CKJNOQ%G={dWC1p}qG{ zEVbTQd-%$Xts=iJ-+lOJ&qQvI`5V1+73OViJri~CxbrsOefe?nZ674IWUPxRNN5+m zueEqpZLmngA&cFHok2hA8jSSCgtJ8@i~F*r(;W6rn$}ny75ZbIu;hp16U%taU#hly z$nLtBy;)WyDC`{n1DD~Xgw%WY4jgK|{Ac*H&^PnEO5v$9zCO0>n%1v*p(G&u^3&w@ z?hAKLr^odMDCgXD8_W!~woCt5Yg+N=?&*}MhDTPX^(*SE6PN0o?09M2An+%bU*U#N zk@54_R}MY)hzPnnZ^C_p)cXmiIP;zz`=RS#ezMXk;+^g4RI6%?Iqv&b9qiR%-rhO{tKYyPVga zwv2U`3x*!FP8$kd5v$rfG-vm84ZG#D6XP^a2A7#_)ZBh%AqSV|gE?M%Ur3zmnN^$oo zyrwe0Rc(%2{I!S)pWg1-<#e4#CDFap@*>OA%E<=9_eAv#&%D{w@o3?SKYHu@^Iny$ zF`5^nIXRTk99H%Dn36}qu7)KS%C8Nav&vt)eci*^b|*}|YzkdZ-Z;~7v{$IIm-FCK zlUdmp{m!oo^;I+B>G5XsZoVy-**@#b!+Gw_FOH|^$v4*CxtW|+(;N{bOg;DIRX_TC zy}tFW;vn5cqFN7+lyR3n{3^;(bMpQqc1fXwJUTCOl0HOu25xIqoFQ!Bs-GB{*_>Fg zseemAUvlV&=~phTwA!<&v#D3{ZqMdNm*menZp%44$41tn@6+~7lV!E*er{1~pIUUH zdBFGA3~Sz?>EBvet)m|Q&aWkJ*jLp&5OYVx_N}SJc z%(50VdbzgL|3Tw}$ed4c@$vd1F_iS#JF}$XIa4oJ6wC4X?WNxOD>>Q~%f8s<+OI08 z&U;1wpXeS5mtNbnYcHi?z&zB!! zr*d0on?JoQ{rvGm&n9YM{pxp;nr1NOh%8>da>hQ{R+&Awd2BPI`gp&3 z@SVt43qG)X#|41~uHLe12?3XEbhFq5?kEdO@@5tk1lc|C3;ABK>gX={-$m(JS?a4g z9dZIY#dy^+Z!MlCmtY{)QQ4A__W44gWlhmc)s1!1hj`__2&69Fes)#(7Bgd?;2E6T zE^K&L)Df}WO>xnW6sML|x6}6c_a4$yY3S9RKIO`6@!Ai=Tg9zPultKzPZG@Q?cnm! zRGO}FR^Rr^)0)?9YKp!of)5YAkbEbw!{MT5l6!AzbyG$`r0~k7E6v%#%^M%S@Q~eo zcV+dJ8Je+8OJZj?J13+rjhf2u+~O}_<>jB=5cxVqmQ8tox$#u*<&*l_+HSg4E3z-s zDNHbv_uqa$so5{a(21i|xGQK;ri#iQlbLBRD|j1necwI&G9hodnTe>s%M*c!Ter#% z?x;Ed?z`i)SLx|T{X^C_7tOn9_Ji?hQj~`Jnv@wcioQI`R#&m` z731RP*>$-k*+KkJqR*Knw`2?g{TAkY4>g(o%((T#v-g|k)i`KZ8J)Ga-??dGvxHYu zRz>A2-p0DuL3RhiWMz}Ae(0_#TDL32)1jg;PcilF@(H}{>c6( zvrlSzi$z_3Mb4VpalZ}D#kNlQxGy_+iC*fo^z!O58_(eKW|ywNE7mC7EjxFC#W2yy zZDzE}--)|=%ye!juZR-a+Hiz>x%$DAzZ{Zz1uCP&TZ+2r)_U;d4~4rEOfFBJs9+4 zqq@EB%Za&HFS&{eE@QuMKielLgt~h8@nXw5Vc#NI<8+0dY!~YJFVWmmQ)g*@pcN4vx_UF!9yW_Lrlic8tZ$dnO)-V=D2)<8ATiSD4 zGBDV$^ZH|VcVoeKJGmErkj=Sc74`^6)_ zRnda0mv*X)4OGFof7a|ic2F3~(kYokWqEVXLR zfM{CBd|bDW?d9{|&uMKKI{loU*6E{vN40cE#627Ngw&@Iqgw6|``5KQP_!4qN7aSi>mxI`Vyl#@e$En$>pYlGaJSH*H8UPbYn^M_S{9~6%Ssu z2SI9G*D&~%%FfC@yD0fSbOrm%@WWG|ttd*nAKD0gV+Q5gaCB$$sWR2G0oa<4g3FCM z-_8ax*F4j^_>?1cku-1R5#{UAyOkE!_i>kvbCq)ZqV=Otf7hz4jka|iWPh*+bMtIofmad?<5<4v%fLb)}DDu zAlcOO5>FkYQI^y4i?U|;cXlW+!L&zv%8w1H~p&Utl8@$yU%9b zf4$UDrz*)MqP=7KvpXN-_jr2OzxJ)Hcb8B7*{k%^E3(Vvg{8xJzWM5FFI^j$Y5nY& zb>6bdxborEQjP^D+x3>L({K0n2`qG$m_4~O%3xO zZiz_Vd!^WVc3Eg>(ZuAJhF7;*eYvr0Q+cE0w7)GrQ8woH&t529GiQZa>`e89)MCHI zdp@S+UhfpSFVMbP_Q_puDpZ{T?r^YkjEfX<*SnCrt!af-CyriQ?zfEQ|+E)F@LUSZi}}~x%hx#vt^^^=IHd22QeN; zcio%CvbJ?rc{2B|!EY}!*mtOGJ-2?7qXlo#_FZW%GSAXAZdq6!s9NIh@XP)~RMX;V zFQ+bj#JaZlSmohMBF|?$+oKh=Dw)k}X_>)l$E^b=!Zqcr_> z=Jg*Zz8utRFUXrF)ZDqQsr>1UiPxS^PQKeNY+$?f)vxG>jV&(fZ3Yz~mp}O5(mUca zS4z&JB+*p&Va_F0v1)F`?pd~d%O=`SYTg`fW;1KnvTa+xi^nM(Fbq26=D?Sx19 z=Nsh?h4q;$twIFD2M+U|4D&5C>AKR8vMa}1J4be9i{_%M_pW^M-;$}&avzGY z)Yr3@@3ekhv@dht9Hr03fAX*G()e_|&6Rpx@04?>D{QOG4iDc6NjF_Mw!LfdJeGf} z>DRtnA;B-CR~;4j(R9H^4Bv&Tsr%qO@d7)y%AKtqfkO+ly(Ybl+}5GLCg)>Y{DS4K z8UmD-0)v*;>mw#cst~w(uKUMIYaV`fj!Edc)Rv%3;QF zmRI-fnPMgUZSt^w`)TJNFRtlHGed%ej+TqSluV_Ft|0F!+6++}RpK#*+z=*B>w@ zZ5sT1?vCV!XvV@S{i0bqVu`1>PnX&g%dJ!3`>to}fwZOzj`s7-IQ0)~+w%SDEjJ0P z^s0^2BJazEN{Z2sug1*CG4xvcy68%=XOKw4GqL6sfddl?uju7w&vBSi z=M>$rDdS{S=TOz*IbFfKHobc;dGIse-mPYF4PjFxA1;`Eed8Cu0Oxr<<)-<&8k!jC zdf&y;?4@k|Z`GYdz3iYFKD-4_uk8r(*x@m4V)cH9ltcci_g#Oh?f)G= z>pkC!kZMlVVXGOpby?b9J>dMYI_I0Nvy{|{)`J!c-Qu`+haZxjZ1z3wO~TVGmKZ_5 zlZBoMwQA9UTq2A1v%d7ctWdLQ_38qv?TyycWv06v%DFF;bglOHVA@9x>%_TH&r%wL zgI$A;YM6!=KQ&%h+$SoPy<~<%sbAN_rS}tb`Uj2}Ph>kWcevW|p1W=0f$(gD{Zr42 zbPw@Yf0;$C>bw7_id);nik`R!;gn6jtK;^g}QO$ViRmc?O}PD*)K`rnoJ3z`fh zv3d*}Y#nIJU0m+gXFNAM#C>0$>AdWuHaCmkr;cwAuDcU;xqoNI+>nO8wyP74^#y z$IgqFy{~!c{I;L0s1(%yWcu6`bnC9kx@~bzRn+dl-1ob!KB!K<9xt99J@lcR z)jr_VnM--s&R@JCSF-$Vq3%Yznw^ffS-vkUz4JHTs{f#f7uV9{REso5UVB8v-~+uW zNj_YYr=FB3xMlrRPh<9$>zh)2c0^veX?wNk&l(TMKVLSbsD)W-#(7FFyIL1NIYa#5 z7I)`mahnt0-|53!e*X5V)RFxa&;72{v(A2a@+GC8KE{VzC-9Z! zHf=J_`*6QM_HaV+{>cI7=E=^LYk$-D$W!;g8OD)5p@_|5PWCYYDTyJ4AI?2rWTM+* zULADduIR*5UB+J?oc466`x%EFgtG3 zUhS>7udC$$Wj__haqvJzQ{IMowX9OTIbU0(biZg%|1H}2*Q;>WiByRnvn#j1PHL-D zT9$k~?ajLxUyk|w@-R7Asm@!qdY${e&5E9XHXpa&y@&nT`C5xTjFeuvj6<)4ALbS< zj^CJ_%cxeH|M}VZ>H|l5IbPW<5Vg=}$!`h2JBvkcM~rJA!?drOrDL|cd792-Tf>`O z+8I3;SX)$L9e2LDRwn)8*v4r4V{H4*mW9qQ)?t}5?D59Esc1JPsJ&b|=RmYmyj%;UUDPp9idKYMg-VT?e< zrQY&`L$#)ty!(<1Ru~FDdGN=LeQ4vt-k&|2I}L1nPtHGSTlmpf=2YkQ$yau+owqH2 z%KGC~2~FG5eu?MWeR4Y5@p1PAJ`pP$iMAW93Gyj=n@j6_zWXjOdiC~vaFCj4wfyps z!=LAsE#feU&sxM*_agH`e{op$Xz=jrOHy5KirG@^19Lc^-xRmPT8||9}|zoTv%zQ;JG|u=J8Zh zq0JNh`O~L5^vJCfR(dtXKG-_!mr>o(q^s|3taDtIo-g}49J~Y-L^wmCoq9?y$w08WGDbAsHzwR`C z^*+HUid%TXs*lr7M@cM5&=Y#2%BG*p(`spa@bL*%6VV|{*baLv<>_%eHL zR`&0>U+YqDaQQf0d{Uc!eBXiFLbq;gE%j-szSljcJ)u7Oa7oG@(Y&h8xQk((bKh*` z;T{y#tUK}|P3TWvS~q9=+BJXc{DXalKLmHS`}bK*61tsZ@IE|Kibtb2HKYslzcHmIs#();C__3@zS0?Fy~{T^vL z9L%hB^*}{^er&Vm?PS48>@h(zepEIHXvP2bG%TH?=oY6wIh{Q~SZG6gll1cAy)yz! zc1S+EGkMcYYuQA@i+>arry$e2LQE`NE3@4{**AU8Jv-SH_h{+Dikr!{ zp|_?TzY(Zd-T3@R=M%rpg3D@xy!M0Aou?n4YofB*@qB;Wv`Vwto&h0VODjJvw7#@cZvOd2zxH=#&-M1%%&Pyu?zeN? zdBqiJ2khk)72LPP3AIaA*!`U&uzQYr__aHK_8sgNaSb??aWT7dwVRGv7vt&gD>v+} z%BUsUNXUvf9Md_Wq**G&NOF7QH>0)sE&m(i0fC_;Edy1y#cEv~u|F&)nm)f?S@B^x zd(n#YRb^jJZ_7AU#KRu!?{Po4uI8NhhojMAy|dgTre^#;T_UG)v8gde=vv23ODPK_ zi9y>l-Ih{iZy&e#E!($5-SScShu_QM83w;a-kq;!WzVf-l!$t8X&<>fWnKI`T@S@I zu8$((4PLFzxi0fcpz3>X-3|Hk8zS_=TUhVuJZ}tqSfZ!ixzRQG^Q9HLFR4q}AJh=# zN&CKga?OLcOC5Rk2|wkF;0uo)xF+=dsjTl_7x{tNUpyIlXDki|{%KWoG5^z-Uelx< z`k~J~!|uS6s9rnAT^p=kKQvw(_xZ=?8CIuO@z&lsYx#fJd+WHWny+sd6(kgp?(S}o z5D`SW5lQLpQc5HQkq&93Lj;sA5$WzODJ3MNky2jo>zsW(?={cObNzhp&-2Io`N$uv z^IdD!nl)?I%$}LO_c`}@KO=`3O|jleBJPXQe^_UAX-1~_^oCoHSjL@4-(9U+FRAIy zyh7`K+JX2rzn00EWTC9)#ogWyX(y7#>P-8>Mw66`g|T8qQtkv^`8+#awU|uY<9gCP zJq6*LG7V$(Bl%iS16{PwKWgk+=sJXclfmVrc#Xw%Zok3q?;OfurAu^1KUCm--m3P4 ztD{Phv2A`nU)5 z=XpGoyX!+?#NAwnv@mYgtU|>9@P2yU$`I(pOR!;=sFJzrN6nl(Nw8>30hvwkYPBKC#qqf4R9{8^7Cp&M=jqO#uFw~lp* z>*PKHnBCXsE~|Q|#?~&YN6;A{4gctm^Is;+tF@$L-ea$BlltNBMN2uS{PoVSn=E8J zGxFX;z4$I6Ls6<RLlnv z=XW1+q?m_K;Vh|`_6)H)-yY)=_P#Hh2=z?;yy<|dmvI6fKdQ=Q`gfx;rseOCj zbLwdYW!IbQrAcjBpJm;f^4C=iv!k!(>ffmjO?gGYGr}`mmrK&pKFzo{?%VV&?HK}! zO(bc;+bI8F>(Ac3hr1U+K)b zYb$1&w0j##ja^k=`L1w(Y*6IShOLOUl^XiTCU|HP@89r>?i>)!aPqo!Jycjmtyr6H zi*usHxpfEsN#(r0yb)cZTV2HJgU~@8(k~N_=W6Xf#;t4ZRDL(Ai3(qN)6JVBAR1F# zlwI+jf!`@3_NQ-nD|$8QBzo4HlIA{CVQ=bPeyrt^yww~uB_XQiFX8teG<8M18Z=Vs zT@1>nNZn=Lbox++6eyhKL$V%|C;86xb${V}GY^s(=Z;fdP)L|e=Ovraa-YDbUPTe> zR^PUhg)cvUw?Ju;Hl5&{i^RO?*VSY(9g3SF@!~d0kc7}kRJ}XZi(;)8FRhi(tVX0| z_}M2c3rLF#-0yu3eTJGm-7KhhcMMDM*YAI0OzbX+SrUIKUJHn&!oZBc3b&_-xnLaLde_pVTy*f)`PcvP?`AMIOdd!17xhVlQ874efK!BYI3G@Z;Isiw z5i;O%IQ4kCa_1r&PJ`a~ecpHvQ9>K~B{$=IYcTtGJF!W4wHT-wa<}btSLwFUy z+WZ8Chk0C04|1O>3OWbJiYeU|6lJ3^~3NLI6hf}VGKBi?9BuA zw&57z1Xdo_>R)HA>;Jv}jbO^ZEQpoau`G~2HJQ0>l?KH>kl6;=iG(G59Y=JuokR zz2kWg_6e392nejpF!^<$eK*4X**;1Da{^clz{+r(zVpv`b|1hn?Eim#7Y589DE{sM z4h8UhC@g>B?*4iS8`k~-czqC_2kV=2T?dg7*L1xY&sKcM8St8 zB>r1Y$@wqxf76G{|27Q&@OS+j|7ZK@aQXjNeM)9%#`vcNsQ&-kav$;kzJ7!Iu=xKS zch!HEgZ%sT14Dl~{&zVbew5t*cjf6U|6-r@zn4>@QvT&BD%@X)!XW}B222iJ?;r}v z5s+bWDE}b}$r~zQ@>_5QL?O8WHB1isJ}&5cxghDUceL0}^$}_pL?Jl>3QW!eXFwE^ zH^8r3=x_!^|CZ-b{`HXx&VVQ+XZ!-2AFsn1FS_-SA=!UXpG?ZX;N`#m!@k1{{_!so zcnH&n{r`VUV4ow$V3NPrQ$UeGU_A$j5qz>J|6)N-LG%-#% z@gWMy8{qAS=6#4l^7%rTeJJlB3ds?=U~(=v1EP=|n!ljIDf1H`j`GCnr^^;NBTc(H)K`}*bi;|X8pxL{%r&LP(2sXyFmWz|E4}IkUyHg z+5X$Zu>89Uckt*p>+b>j|LiyQM?S;q|9js3P5+gF{zLpt{Y+r|p!}x(#}SzS&~@qh zZ|ctj?dSYW{pv|r{m{Bl`8V}zf&9JkoBA7o|G2-Yf6@BD;6Joe4D{b!K+or*fd}V* zAArRVx~{7O`v0Pi&B7oBAz4|55&?z6LP=i2SC0JrI8=Ub_FG9dBIN zm6H&zDE1%fLG@Sw{?q=Zz5y_Q-26>_aQ(^%=>OaGYZ2&w6<|J}0rCrKH$>k7@@OC* z3IO|%9z+}1DF6Cs4tEryV*D^Z3Y-s7=sE%E&%^hhbZ`bl5eQ-W(0Ul6U_8n%!^%N? zh(h-NjZ%`q^ljh;A?gF)H$&?}h+Y8KFeH{SN~2-3pkGzJG(w@6h@>7Z@+U zn{Qx$e7p{uzo7GVy7BARe%#5Qy8%BJ90BGh^y@yTw2J8J9q{vif8c!l8$K`}0_U;i zUt#Tm_W9xP>lc{Upr8M@FcN(I1I-K90NgnW^A}nl+0MW)G|qe`U>G_dzykDx06Ex> z`#}3O0jvYyhX6JNunB<80Swl!2HbBF=7IGebpHax+JIbA09Kw7ZWzR-fII-e{K_zW zdbqxT84R<-v9~o0bHeeKFbq?{v9u)&bHFhIaQ`Rg4oprBm$w7>iVsY#1nC3x6dpfl z-b)Aeo4vsLc?7`I00zt>oCEejIl=Tl^9{V7S^@oQ3t$HTI|KL;fZYM?1>mOu_5*ML zfP(-W0^k8)d_@A|C2Pu75B1km022V?^ARwf#{qv50DsZ}>=Q@% zmuC%diVzROVsPpMrwwq5kN}s%sSlhsz$ro^Tn?u`aM}Q;2uW}`och3N1Dqlx!{u=5 z1E&peijV@A!>JFPHoz&uE4Um^ec-eKP7zY!aya#YQ-llts)79HJBRfTbpMV3xPN;U zSU<)C=d;Fyu<=R+uP=xchKb?W4Y+>32J};a>un{lzRU&WnBeshz*fNgxj_N*hXn2q z3(!6=OyK%?5s24U080Yr9e2LN;tBiz>-!1e;|t3FVPL(02%MKA)4}{Dg*#RU#4`*y zp91F}U!Xsmfc3&{V7!_G@pAy?Q!qY0K>L${_8s)YS`Murx&iqZeEdW6$25TF0bBs+ zF9Gr^K>Sewj0xc9fd6^`HUTgr&|mUEKBfWw^aK751DFf2hX$8J@j?gi8eo4I-ha^g z2oGoc}0ev-~e^mf~egOVN0{$!k{R>_nZUEP-LZCmN z0QKnr@ks~jyU7H*-jTr*n-s7Q<~xXafcej0434_(0ieGuy3lN_WK;Ij%{}PbD0x&0FuLJNm9f&6%P~HvjPY96v z0Pzh1@G3AK0|0x`00!rSi!gL9mjPd&LKvc@a6WWi3h{r!`A~oVEeG-d;(rA4590TL z^8nn@!3+35;BkZ2c~JdMz<7lA748@CIf3{>q)<_q}kz;pXh`S-}M>ml?!IdslHZ~?yxcpe)n{~Z%%2YP-F;wu98$Drr; z%r4*)0_!QLJSDI%h3>ZtUBFKU_Tf-@PuhR(ccFD*{001<@aJ`*^#W8r40vuG;-_=N z>_g|L&~v{ZFW|TG!^%^_`xPp`A_U`8!THenKMHXE3Gq*X_bMPh+g+F)8n_*3-K%^7 z|ArK-JS|ZETn@&k1Ndu7Fg`t;59Rd@;9M8tpR2&iGXUl5)nR-_I3I?7{f@~6d`?YR z2_~StsSb?K4Ch1RBLd*V#eb7xV7x-}Uq6r+5FZ0LcY)@i8em>|2Co5`66P0lE(G!I zfb|??=Mb20g5Y*2fO;W*4sfmxHLMNr2fEH6vBUg<-n)S8xC7_=PwH>}mU7?`gmt@&x!$9AbcVJoH=0H$-4|sNnio@CrDAI6&>q1m**%d_G_w;&WYK zzZHn*C3wAGf%^wgd#Qo`h4`v~eTaVth^H^S0r~(Rs&^g8L&(lMV80CUoq&EpgxhZe z$~VCI-+=2g#Q%N)A7KhMqM_>uR4?iUeC!MOBp2{$FW|FXz~{e!fBOQy^aXsC3;5a> z@Qp9v+g!kRy@2n10sr|0{KyOVi5KuQFW?tkz%Rdm|KS3D+Xejo3-}Wk@E0!NuU)|3 zyMTXo0Uv4lzt39?fDa!Q{~LJ*taB_0VDl4nKSC8)4<-ZU`A=Z=!?b?=UL&AS2CT1Y zf%l(Ofc2d;V9yj-Pw)Wt!1t+0f%UX1u|RJ z{svGVBd~uo2KFs?f&K&I@fau{48(H=7*AwC{a1l~NifjAUO>Jy0PTwc z0{t@!#4i%)&rAT{0`fBwSf_6Q@s|@p}VC6aB z@(Q5-R2!I_3oiG62*WIJTn@Bn186@FFy8e6{|A8htAOQ!_PGMM7Z|Vezfe{S?~Wf7)|3fnhdyyeENuVhAu^ z+JOF02FBYw5bqWsKIedco4|PE2iju_s&kFutDx@%{4B0q2;IKKTC10q}euR1Tz&A7a41`#-H8(k}&` zFZ|v3f$v{!0PP3;2Js$H9u1y9&^ZoR9>UPRE(dtO`*-~>{vYaJhR?Uq`PJ{%-}*1{ zht@S0<=;)<`vj_i=c}Ony(s^FebfD4A%)Hf8vuPM-WO4)Iha0lUiqKuL;2VCKdgTn z82@1XQ2Z`xe?0K~EvSzVZ}>&=zYE0wclE1jVDlSvt_A8t{dZCQm_Yt@{AT|hY{U8w zI`1R}>|NCFQ2$K;`Ahg8j$g>G(=n`m*nb3s-_=(J;{Ou3&+~8nFAQ8SKz+zhkV5Sr z0OAemL+7U#*zJfd5S&5xyRQ z@^1$42lN-jD?s^3p#FawzbC-;2h{(!@y7&=7f>Jc7sL}l{($-y#ShBAETF$Z{eNr! zCHQ_3TCafm(E8<~{IdY^57hs+`oZ_7!2E~mzi9mU1M|l=a9iwG!-SGdL@#n*z2>gk_p9uVkz@G^GiNK!-{E5Jy2>gk_p9uVk zz@G^GiNK!-{E5Jy2>gk_p9uVkz@G^GiNK!-{E5Jy2>gk_p9uVkz@G^GiNK!-{E5Jy z2>gk_p9uVkz@G^GiNK!-{E5K-%?LoxL7Ty!13oH}6>b^`Q(i}7 zWDNR9OG``4pkmK3!`Ha#e02G>Tc35Bi%<&Dx5KK#HSI~fnn)`P-KY>_uKU&pa|Lrq zv?}(vkvdfOMad?%PUPN|&vCmA$lm6bzQQg)b5Lotl1WBhc_Y+ncEkJ7Tgwf1Tl4OK zXSS@%lDO|A<^3hICmo?T@dpH`39ej7v8pg7wpjrF=* zwjTpa_K8)fpu6+o<$L1K+>Dh((LOtVBG`HNSUL2WdXXVF{(>ZL!|>blh{p#p=9M^? zhkeXB4EQ%pM#tPA_^yl}QRg;OV+hPPai1w!Hb-%&We0z+pDJ^fxm4gWP+Wgx_W?a* zTyLzn#zC{b1{vLcn0{UFmW3Ndh`4pk;ez(ycFBG5MSjUQ5*kxobi~!aUI#iqPrWBj z2*uMW6!y(35O%xN^W&PA-u()J>sudwve2-6ef5%AvzW0i_%hpDlXtINZlR?nlSj0B zd|TNVdc`Zu*2pj8Y#GBF-(;6u{z?2!WU@3?-BoE{6lzLIJLb$-1UAAFpN{*imu+Qy zygr^MSQmYm{+78SvUTc(Iki!-oaEfY)t=%U%GFNj+-Lu?#fXlJ;gN(0en|Ug`*@`V zrC*;~jd!YP@>-W4msj-Z59;by8U5T{KDI47*ds}vBGFD>)9A6c)vV0SsDC19>?yHv zt8|pjmi2N@MOOX?$0bkv>!m&R>sBn6DaEt0@{8=WnkUg+69dN*@E#WumEFb*Id&!6 z?CmB=BGz7?BH>O8ZJin$sVL_yPpzyI#JAtFvb<^Q?#wznJ38brwY!{9QTmqd(^&DZ z>TZ3i%q=O}EN667Fy5}LwUc~q7B1iteHqcG@@?#fu?XUvNOybf^$Z1)%f-{H7f)z=1tSy1ajXhJU zIr{}+a*gP{C-3XGLTBv`qh%=U8Kj~YyD1( zWX@g-kWjxDNISS=R$)uJ+Px@nH|`bZOq%Q%3R7C#{$jD;)a+|N{i`{Lho(CYnrmCZ zcvFcSE?j1EBQc(S`@5GCO=1cB^#}>-W@4f*?Xb=bR8;n>Yl~8bGrTX9jj7{F6X{%V zlA5`V_(V8d$3u_gC^6QU2j%p1LxsgstbCs!ppGGp^p5E37mr9K(2k-+=1I^lz0-Ms zyFI(uS+Rn@Os=s}uVGic&(c~`zL%=&VQH)*@x&AB>eSe%x<0MoVu93A-`HEQP7K)<|wZ)J13AX zcC!bUgGvsSY+L1?Z;75rq08VBn&Q0h-Y&%?%K2zW{G!BWwD!7-=4a`gfp6?BojFbJ)lcfUP4LC% zi*r^HWxt=yP9#y&6l?h5j=mOA0|E7M$+ta~kNVdRJr&2~w5>KLt7Q^@`q(1*HA<&5 z@4P|!@$zwyvkPlf`7NECw*gYd-jThH0w>QI`y;aq_K-H2wOOCyxI09I@)meo8V_E4U8iL^%0uNc7JrTq`%EmM|I7$+ zPiymf4+++YqO=g<`H>h_gY+@Tg{q{CPUg_G8EXRrH`9eQ)zpUAiE_6A-`bfR& z_mSt_qD)vWfoQtcZCO>$=ZO3WKkwtj_$ED@KJovqPwX>?Irr3R_I%Q7IYHl!d?)?b z$unWkd(T_$sPF3{YDL+NoTd|WF=pE%!;jti7^x(udVN{t*)i&FT0cvFs<4jaMJ%_( zSjoucgx}QtlxC#ZV?LoKnO;RPB?>#`+vjWSisl+#se~DZxE!P@D&?gT zvT|IJ^gF!b1+DGj>LpH1DClarjQe`Q$jEMZ`P-jiZOkt6P;fow>_c#IHP{5`Uzc$4k0_7Eq05;32E;SC;GAPTuwr2Cs{nJcDu;_ zE2l^5LB3{TeGZM@crCYzyS7ef_h=$TE*mv|bKzuX_Siuyx7xVGBbAU=m0wr*=#NXYJ*88$zxM&g=10IwZu)Pcw2dzNW1wamytOuZ#=4v$3?ZvaqsGo*S4{PD|AP z$j$RqQcp_l$0T}D$z_D@DsBab&W#Clbo-&cvnqXLYUTjTjeRy6%Kk6+j5uo;>RlZXqiLQ@s@7p z71iW-d^crTizAS+vtf@ToO+_26vDrbvYb+RKFOU`;{LPL$kvWuPXqB|agiDCeLNk$ z!a^RicsGIjdzJgaZMhg_E~^-|1(ZzkhUcn+QikFl?ze^u9kd1qrlw}5+OnfLbr4C> z6$*|eQDDwj_<_^K>wm>SC(L-ez7EAu%s zN+jpT%K0k=7)|p`h;_1bu?LN{t0`0P=@b|gw5Ixa->4|WF_oA_Hp$25UX?_a?-0(R+td(#!f=-jS{tv|U*E zhATIto2j}%@F`0jDdm&g{aVj9-kdhBn3pe~z3HKsi5n` z(-F~h)0`@8{zS%h=}$BLSLwpmO3myHc?B7be0GedkG!d@_Bo8+M9N05Eghy4TYnQS zrPGw%qE2Eayj2pOH5K|zg($LJoVx$i2ysJziZfdCT=`z0a;uO`$oK03lIB0v)c29_ zM@OBC^un3yZ8O5w2ct>NPF`fE|GET^P_T=2WYk2t7@D4qK5KSTCZu@juZ1a#qTi$+ z;7=zp_JXS-+wMm^%J4Ny^9lA;*JaU+rgsh4i|D%%R$u$ri6TEG^&xVIF@DG%6OjKYiRSBe>(l1h7X_*McGSAI6eNX#L zB9g^rO)2%JzpPASdFblpoh+J``H#9@313X^t?`mvDa9tA+p$-tIF9}DCBZ4MW@?LK zwBHNMoR^Rgw%{7)NSrn|fFX@tStgqsG+tT;aE3ycN zSBbpRF16Pz)!r)7f4M3n7cFN%{K$$fYUDP?3BAiGT5|6jY|OZR>Xh3g#r*GEwMtE1 zT+ix97j`vgezR+5{pff*J^R(C=*UZ@KJC`6Z>G~KEM!04RGyC`)AH?Rx&O38F?&qd z%GK4D1wHM0cG%$N7*fx*oH7X{XX^xYyJ*>03AK4<(kiC*%XhkF^+U%O>feab;{DjY z%^j^OO@3)A$~I5#{S--XzKCsaQLB1WC0^KpB6~Y+y)!xE z;awxm!b0oYo!_&bT(4-ad{ktJ^dV44{AXoCZe?M8zTW+3ZUX{Q zGa{^w+LKeorHc3c>evV~R;6f9HvL`e3|NQA+_sSw(5&y%$*9$a1)Hm)p^dZYj7^M8 zJWNL=&DO(T)*aLwA4^}mr+eUsQl0ZIBguHw)#Z&gj(%-sR>p^#njafpV{T8J)pR`d z)ZY8XSZeBRvkgy78K`%-NvP$Pyk+{3S@PjY05ktiU~b(mmVTTikB4HNqn35^o6Ce@ zy$72}R@-;NRKydmlPTDSbte;#%#z#Z>&y;}O}u)b^10lYV_>5Q-Id7yfrq<HTf$r8F#WK+JMCU-QV3;~A6z9rcip3lYV9n{ zDl9L`cw6z1Y$|*~sIZjP=DnX;uqh!1MK{TG^7;`cUBZ@ED)Gztvimnli*mxuM3k&; zx_Dhm7hTl!JU?4)hJ0euqK?@LK{Nm9gvop+k>I3~u$#xZ)IE&(hI8A%{#1UX z>9h$ge{e(wkEEEPaIdSl?-o^EK{IhGs@hvLwN(8j*(vsR(_x-b)top=rPn=(MKdRp z=|kKpQX%%zW9dWo`xX-2+lYRF-V$U;rhap;1rYq!n_lWaXPVnI%rSK%m1MrfP<%=& z8}jBd1*4g<2d0iM`*=vlM`?LB`#xUQO-B08so(-cdC^jvh=h)WQl*pU>OZH@ ztnIo&qES;~sKDT^rR8qWoYeKK4!z)vl0?HDi$p_EDky_-L4I^x*>X^TKECShi>tmx zTGZ(2UZy{S18Z|JM%&C+tKtT>&3&E^bmLL;DLgl0ai=z7yNQ$6%8@Jh)U~n!r0K$g0`9Thpon_#)iV%@QAKF z9eWeL{Ae>SE1n2(ZEEk*juZf?b^EyAYJaSS)j}OgP1#-E!U05ZQ z60CI;_o+;EjP8@1mug;{MK^paOyhTaudqR`l21M@IFWbQHkyvuLW2eMG)COkfSE>M zLy0>spkIyQc;@Srno3fM;%t0z_;giELUc<^vWeJ0nk2`EAH1J*DX2NOhA&-Kb0p4U zx;l~4$xR$>Axtvxk=%NsSg89QAxHP5T8W`+@XqB$`C#+$ARa%8B=JM_nfFPu7_q{q zTRZk|H;3(Qlv^D*X_X>CQ*%Q$PI{uTzTcM-;K``50bvKT~c570T~g)^UA5v6 zud2r)X{^%SC(Pyjy=OWSNxPSb@L2@&+p@0tSI^_f1zYKqg;?s4rbTtIP``F5#K)%&hz<#W%-fo88fpqEa_5cQLizKi&>uqF`B{>cuWqJ~dE^ zdeS;RQp9puE8+~42%L+Cm^kXFTnm>P`g8yEugo$Opeped5qelBES- zW&YO;OT&9VWbad%4Q=D9N1QB&=N?{GYc5Uy< zZl@+4Qnn;pEzVyyjn8-}iEYjl-<4FfcNLP|(eNY=&zT^3jX@WAot|&@Q)4KWC$YA! zhs=O=9frAf8}U!G9nSeuBYDAr%wTza$$CPL1re6$wB|x-r_^h>D}M6cnCt|lo9As0 zu}!(0gG&<9OE#j!>6@=|p$CLs3DmKub!RmpMbh|e!G;^Q7;V82beAR9!9Xti%{~4m zMvn<5{988I&8vnC0~R@4GpvhWDsDX|o;eS`ml$B3PCjMeb89r_`!(bm8@Vhg7K z_#n`#a3&z)Yp&VU%R~Y47At4wqSL4HK9RN=E|u95?d#!`T0K|&$I=JSb?XMV$kNp( zEXX`vESE?OQ?#c2&0@N*4wTH3k8A6yzpo`2Wt(wIV-1lzmf}a?GrtijUJ3Ta zXu1*X#r(zxiKjyP&?14fQF(B7;N)SBxX`;oYbO5M@Ykn^q%|n3--m+3ZN8#zGhXJf zn#aOxto)90?7`vlC0eqc=lE8_3YK^_HE%@Wl%&?>#U^TVYS9HGSl}X(R};*Ounp;(3tlHm9fZC?}8@v(Q1ZBsh9$)m#nN=!~C@@LDJvFy~KyvBp@WMr#4<1PS2Mh zUu6GqQg!^zNFx3k&2ZR=p>MRQZ<)zGJx>E)3sz}M6LN3uH<)+gcigpoUm0q9OLfX) zYw!>TFptc?77y$%i^D?<-wB`yH4-YQHu4z3!X3^EX3Rx&3;M-SKEWRz#go55%g<66 zqFIuI{NQ1NQR?1Ug;t~U!^n8S8UI){xdb13dAbHiX`I@5sS9Dya0se4g+p@B$Un#XHf zUc~99SH$k2;~q6Ev`m&>lU+fsSBV+6>q8w@5NEfXJuRqR=r?-_yxFd+W_4Dbv1Y4c5VFH;~1`O|OG<)ygvzj7WQt3?oDmi_Zn`buoqYa5H z&tfM#rf|@M;|qgs;aHL zXpCk^V&bN%ZSAS$f&E&=EMk0ohcZF2yat_xdiW5qY`(qzD_%~bO zUYVKyf_B3VhvwQQPRYVkjAo%rID}QVLrH=nZ_el(bZC!@VohF7N5(>(vDqjI;>oRc zVAf>edf{kW_07k~MzdLT=*J7nK^sPD!@`>Cq6py}D>?=26sd3GnP)R*=Q<2q#%sOS zWqzVlhQmS{f)D+lRtD&7$alz_k(0TeRK3)5>_J~89K7S|V=PT-Gh&z{^Et`nRo%xp zXQqiPykwk4_Z)SG4?n*9Sqnd(&}>{M{OqYnbUl^%;P{b3p7m2rhpB9B*IPuDY;~X3 zod`8qYQn69v$h)=bQ}rey9B?^(3%zCdz2*^{J7#FgZb*qM|>rVo(eCQfEQy@a|_!h zB@v1m+SlaM8~Ti?pK&}ILGxi5%SHS+{}VVxp$-QmPcEFIFb%9pQpEi^3#ku$}|OK#-r(WItS+<1a@J`>mP;xD0U7oS6V zt!e-b^C;h79VOq8ti9Lx6^@@%bl7%Vhvfke|odV z9G0(+kI%gxgHg=5Gajk9e%H(La{G~=>KvXO^1&Cgox+%QQ!b_jPU@F#l0P;w+MhkU zI&SAI%tB||VzBkQu2Q|JBR8KY|Yg6;{;#ERAI*QpexrYI^S;ncmXOlxxks0GCOP_I%#dAT+tAkeJD7L2 zm9%=s>o2+DIr0ZTf7-K{5SpGi5hIY8;Hos_?`NgI{dkg2$VAD#%0q@)E1B{K+qqt2 zOo`05saBeulo5J&A;k6|KFsNt!x(6(!Kd6W9((HDxF|E#A?vslyqg2q$9iXd9?;0uM6Opdd2!}AU@`FAui zrl&DmO$!YHtzk=yy($^pA}lQA%udnRDW8qPBb-%9m(`y1dE!;P$PUK0W{*>#tzmiJ zj@Q#EeffzNZ%lH-VS$TMUBtt9OqJv;r}a|MDA5TCFgZ_s*tQXcCm z2u%{S%v>XqeAqd;By-;tPw>(yAJap>yhk=|B12O`SQR*nj&XvoN$@b+PcgV97PAG@ zR$pv5$J#qqtA3<=+BP{^Eb(1K@?bXoRP8FQB|Ytdppwf;)^lF0LIt99uXGINVrSgT zDH)l_O*dzFW;d_u%e|f$LlY`9dUX@^XpHC{_qXj#ZT%rdzNo{Q%ZrY&JAw~HPBj}D zxK(W_{QGMTOJ4U_#J?r5%UBUTHQs(;LfT2|Ja%-*bwm;$Q9J#zmyV$#I%dX$oK(D2 zfM`@W;_|E0Z6+3JE!%;xMY>l3E{i9NTyN%L+FJ?~N9dzfB@=Kp)=jZr4f5LOzcApg zj*xvHn!!;~9VmZK>c)bw#I;WWN=_XuHR%NysW+uihjD(LE($W6M0Bx-hZr2CEs(4( z%?Q54(CV)AS}WFk)kZ@a($0%}K7B4sKO*F86Qr#YG8L#0czMr3$Fp6v!emuN0ZHlW z-6d6=JmM{jH#$)flHUq%d)CxibamNMC?Y_QpxH*2*N^ZjZkcB^>LSx^Z( zG82W4sfB};qrcrCVaovFqinK-^Kirx8S&(9vy)@{u_sY%d=aY|0jA88FSfNvgsG{FLzj(B zSa*FpaAo?2$8V_izTX-|-`H8?Lcq#yYVPPkWUsZS`S|WW11p>1vHx)4fJLCuRs9%3 zVlPbZGI4+VeS-p(_-(n%{`N8^+iZjO?*8^}LrN#g{#$n_(9r9VpWN)2_bhhRd9P6t zv_jJ*8+K>Lvf!Py755#3ow#MQ3iY^v+!pTK!ZnN4fgw{W)2``Xw;|RvO7$FV0}S2G z$17fanw=v2=FBAg<%z6Gd`fAdd%(%N&(~3|9r~4zvk4en9yW5H^$0R}R@{`oA4=jS zmz7>&$wE9et+2R1fGSE;?$WPr@9CT4X=YHa?r_kyAlfa@N#A=tY)&fRaMQ9|XI;C` zPMzm?U;eXG^H82tUqJ9#>eop#{2PjrdY*f#qVic+_<76XcLMTFu>`w>rs7|v8cYqk zZni~=vXz%8bvGyDEFRPkVBaq43wl-8SrMta)&ID6KfM*nY|0pI1#MlFU&E~Rt>dr9 z4n)b{A%@W2@}#nKiAp;#+5GIt;*~!nNm+5}Oe7U+W@sgIPSWzKwXT(|?&qwRp1u)y zXXy+qsZZ+WMUT8bX0=yDv|~2L%4lZ4d_%gBkKq??W8snbJq#sh1&{7j)2k{Tq4JHp zZRG0(i?r=3=h$Xq?@5WxuWnpS+|{#a8(2CY@$PuO(vJUe$14^8MyiS-MZ_?-hQqUI zKYJ;ncZT;S3)}7(Ro#u{R4N|dHEn1N_#ojn+J(x#;hHgM*N)ad_&M0`*_Qm#kS<-cU8@yRutT_0Or?ztO%t`z(ru`nvYE%5#e|L)Oh5o-?4=sGj6nSOR%0{a=l%m-!fo{e%p*U#w{G=6?wnOT z3UuXeGy2?7jjB)@(cUyq^Sz3cBO$pYqV?l@G%|n3IZ=H5t;d^~)Fcev`qCw_0taPZ zB4pI+y<=DImTZT}M}_{lliDiYjBud!W4G7)P2YK+(f5`F-=`7n0w*;i3(W5aix!r# z0-ecOj=oc!x_QZCx;K@G+*s|*=F**NH_Fr@5$&qoFm`-$&R8(pK-cz-{6W~+#MLRb z3Fr4XLb}@|Lx>{OyPA#;3KIuz%*$C3)lZT~=t?IfIu_@363Qc5MYWOqh@%(TWEQJ# zN$~P|A&YuXH)oFTJKw_|sz}jcHKK?JtL*3U%fsj_o01f{a^yFv%kRMU#h@cMiX}{V zY-m5aO-Wp=MS4O=?R%9+shjx64;68-8$rhj>ogL)-q|0xiT50F&Sb~fs$V!q?xffZ za0{gPhS-H(T|{7r`*BA-|Kno9lN8@Hxd0vqdr{-wjonKl=7J5&Co-p+sc&9Vl(c^h zGMzgZ2=}NoM7=a5_9t1(lVD<$4!dpQwqi+@)=QyF`F(*r?a^P%ViNKS z2E@CgMbY=X(tn7h-P*^DI{(@zQ#5!-isw5|q z`3U+8Um0}Qo1UtMwK6rL3Vls8cz{xG>0Bw&N#HfTe3DwOy@rw0`hXK#CbQE)-nNX# zPe_l=PTBj+HDHI=5T$amyx%c0qNulYk;InnOwrp6j})g=nOTL~&yFBO?XV<4R}N#J zY&xFyCyoAhzc8T zWpWO&Cr>Hea{N{VW(MT9=vss@ZZi?xK0B>)(IIPT%t{d1cSf4klo4&{Cy@*B@{UPs zZH!p-@Sb-(eWrt3^x2_*!S(+9R3%D$N&e?Yq!DR2lY8I2M$21L{iWQ|S}AMXzU=Bb zSZ$&f(0!thi4e9mm_vt{L5!v zxq5SHt)GSyHl0%Y8?)tdkFLcm-XHEfuzAmd+Bxa$fZ;Br^SwQ1~;Tp!D}QM)uf6H26aX=l@7DPHaBGm zyx44N=ljIdPKgGQQ)dcS{7dKDoLcN;(sFcYNb95Ozpz$}b)FU!8cQ2Q98#H=Ee7^w z6u+GqZ>}wt344@0c^64Wm@2GV2+<;#HtpR~P0XbDgD2z-rih%3cSqVMX_2$q+Scgd)C0>DLqq6K1JN6uvni+vCb> zc^U6iVM3xpvzYB0$%aTH;V1I(wkM$nIS#fdNpbCJ?^A;ljA#(eeo#AkcW zThRZZt6cF1I_qgSlR$D(7l{xS##gvPRO+3!D#jihnBDu^gDLZKpR5{rDXew(F^~7F z*kr!y6EJ*1Ia(qYNT{xQ=4#9OS;X7ALUH3-uVwbr@(!BH!@$Ik6lUJto&CEq%#H#W z*c(X5D}_@n&DyoPYs+icT<`YtnMfu&&{f>na|zkapSzb1RPLCT%JH8nm0XW?N-kl) zRF8>`6ihRXkK8Y8ytqK6QhQbxfc*CMmNHYrmFPw?ypCmeBrYV`$*VR-MQs zf~maC8KT{8=+@?j9`VAkM5@V4d+5t4-QElT=QWBZxyiz)o&x&rthn{VUxS~2jUmO- zb(?P%#Nbn!5FM?j3qwn5JFR4G7r}B@580b}v#yo$$RY1)fv)Sfp`mx=JkyUj-wg7N zKd$vht;I|zmy4;-k~tEm)iv`LAhxtmimKedH@P{y(8&BW3t80``Sh`~pr>fJ-N8lxY4sSosT z=OJm;`ga$S60whAj84%Vd2?9C%MhWOOjlclM^NzAK6)`vTc4Km>ANR7-(+jWM>b6X z;})0JH0{@>(|$!$VcMG%I^|PU82OK~G~_Vd$x^qLZZ)2mN}|iuXQ#dMPiu z5!!-#kUv??qoYzKFU^QRWHT-&k(q8 za+{#3mFGCQ$dqD5#5vkFAPJK+d6dXm%a*a%jV>%2i~e+#-geY;&ed8a2wv(~Q_rzY zCTI+b`^0rCy)(Rc?`h$ycW!g7eJhEzm0@JVQiM8H!KwU0hC^~L%eQkQ@h}&zC7bBT z5A;X8k%u>3yu79+^;^_Ev($F;WeK=dWeGX{(&XOxgp#A^lLUxE$QSoMu~`v^Yny5 zQiQHvGjd;JJrS}D4t8cT^E2j*?Oj4J=FnzXFiqu@R}0f=R(O7G+X~b6&atI4RZsas z(1XN>3U_J-ETpSqzsRq958a||zPs9P!cZA7?UsI|@d3$DiYbx$tJ7n1=8onn;n*ji zJaM^<3J3MxNNr))b@}JM8_F^loVRXmK5a)l7ct=^y^Yw6ekqXU`3CmJnv6=>ne*O> zck!5BN??(M>hmx&v+(4^ntFkd7Zzq3VKJ6QNMAFZW4b~k$jln+uGqYqmnwIdxk7P! zO=f}I#6l5=+&47B{O%QFY1cIYb$*fjS<3sDIkI-Y$}=;+RA}jvncCYn5g1kDe;RMQ zko*QIpIa(iQM!WnJsFSq=n75!{OyjDcWV@QA~;#^V|@unJ`j$ywstPv$~t)~Khh}I zaYNtF7)FV=hh=el&*|zY)$bF|&m>8)}M}>P?V|V5)N^ zb3DE<#N6%1hfIMR<_u0R9C`Xx%h^Qg_)V_}OcO1hbXPDD<-Sl9+4REULO{Po_mGy^ zGwz5?Kql2UR_hV#?P3CH=Bef(jLi?xU&J0hE2$t=or)5e6l5EVq2toBQKqEl&bnQI z#rKSz^akQRY63rxZw|_~0qJIh$^~Wj1n5wxH@1C0bFsNmaG+B*8;7KnN7^toDuj-p zt`)UOZ1i9$7_}fhxJJw_7uPRI^=*TqYwONABw(UKTeKnmlxL7BWIEk@Y3ddhY&?XwA(Mc6KC+2 zuffYPN`XuuF-h9lyz<*}_%X$=KaTcoMrl*OqyA zQL%OHQhhWPnjJ$n65;aQ0rmllaP!FKl2r9;s!&U4?_ zq|vE2&A%Q#x?1#!V)Qu3VL?RR)L+kGT0MZ}NGth~Zx{b&AM&(riME3RCri(a<2LSR z^|u69R~@NyV)#hcc{!&1sPGvUBPx(mzFy5G^oh7J|8c(HIf7Rd0+OS6w&uu{dsQJ- z{|^9zKzzS}0I!=G=qbN#3x@Eu8lt6@jJ1(Jb@S!~Y$m0w6Y*yEggzs;mU?0>JA$OZ z>#T-?3Nxrld0bkuhAW96QGPB&`6{Lul%FBWCJg?Vx2W?sW(6Nm+2G_bo0kSGamBDi z98K2dB_%6jS?E?NnDB z{B}yvN7u9mn)=iEOkbzWyQQ1D8GarR;g;?Rea6pt2zvn$ZYvqFEAgA&6d4b>B>FUp z-h*Kb->|6WkYH3^oZ2Mr3m|yn;4TfzmnB8hH`)PpL zt=$v)jE4ibX#)>;hp-8DbV|_cH-umxQ?Odq4ef5_(#6&>2i7}BEv~6l)=QqlBl-Dj zo$!_!tc3J1%MrovhmbVIAb2woyxJhRCqVG(?g@Ryt%o4^K!jk4U|sj0S^1=N<#UyK zH))vV_7g?ug%F|3+JhOQL%<+(Nqe~K!a<61twswu_%a7QoAJ8N(hKqU&ktNK-a(AYC&V6N5N&=7!Mo0QNh2>SJUDwTYNU2D+F)b;^5L* z!I&QmJ5GU^QXANDKQ|qBOVDvY@1D?SJX_dt4lXDe2{d*?8T^U0la^aU$eLmxf0>Z) zGm!5HAm7(Lq0jhrA!KoIP05I)IUK&(oqBJD*$jsRs)5p^$e>rwBXcLkZtXJM7b142 zQt1J{8mw+7mHbJ~<{;NKL9xqaS(l3sgkBnT9+4Ll@L)1wm*8jQft&{GwL_OkQg{)| zhzj?s2%mI#R;#<3uco>^B*JT5l!!QAGBRL&2CsEZ=raZbA`FOww{%W$(s7MsB!sE? zk+A0d3YInRwk_PQHGh+7tohek^SAkGYTnJ7-!e6C3~GL>YeJu~wV>wL@->sFwv9cV zuHX(Xgb4Y?cJ|2SdC0#f36I%l+qjymE2%YhKhmqt)ct7ZsBP2yZDzvDjKC)CF4a9n zDiU8HdM|bzClNT;AnBa1Dq*lSc0}>Qhz_@w#%@DM2xC=bS=sYU1baJ?3{L7Mi3--;-!O{E zQ^F;iU>gk$zZDES9kQVe`U^iEsI!DqbxIj~IeLrWwp!P3Uz-kx@*0D8`7OR@O zP}H6kBy(A_UNP;^MGV)&By^-JqdULD@VTf3&$0zM=9(~aWkabi)q(?^DZxOg&j$>Y z2KderPj0CZy#bB-%|b5fjc+0iuI-fy(49)82j{+H0;^U3=H|#G-eOHyUz!oTt&3A# zFAS9CB#jo19h8j_clHIFfNpn#45L3fj(^_sA^w7mWwT8+3njFjbEp{kNW(yydU)g| zB1R-D2hYO1yLM*?u>yNT@1gT<=v!RyLQr1?CZexP!msP{UoYXQ=)ri%u(9l9?z3Dh zUJX^cwE8``8!|efe%*@^@NHJX?$@pP^e2rwhYV=EH>HxP0uQy5Q<3%6sFx|BgWBWL zn3@4SjJl{ z4dG;+`ErzJzsV!K8TBhO$p6K=6y~sO~mJMMo+wu_J4It2jeVpK? z-cd;t$SHX?t8`=(gk2%l$#~QnmjU}Yu};DFdwHjt z*zyBF+~LxjCGc~Ru|0fKHw_;vIBUpG;^V&U3D&xHlJQcuk+>dn@1zZxA8+pE zLgIK##C+oVdSA*uUXY8kp$>jQvjejYn@S$CGH4%?;m9#r`)WWp50zY;4$B}{^QCN# zE{{nBn$5c1Fpgo~AEP2wEHXgG$F?sq{yX)^)@(?Hp6wlB{tD#if|G%|cND6#dqWtN z-?BG?=^B{ihM?e5JIMy_*WzLRu`+8=5(@?n}txG=wtc@gPu!RGHW95yt6S+zmAOq3@o2Z7d`xrA6OJ9Ot4Ph$4V;k zv)&2v#k63#X6egH+6K0i=ET`$SK#H&Xj9(yeGz4TNy?CYZI8Nf-u~$8DCwe?G3cCM z7kC;ga339l%#=$n4x9n0mUIo)u<5%wS6Sb;X$WBEC)6%)RbpS?grps8itG39&R{5F z+OELkEiP;MNw3T7-y^~3xqGTKV^GSG$Du!KEiij>_PiA}`$f}i+s1F43`<|TX4FvN zB}TIfUY_D7QR3@Hp(PACBgdomtl?iOvsmn!HRM;1sPQ#P_DLB**6~d`M+Fa+`gR3= zpc0GQaCS5P!glbW;`jsgE|L-jMEl{PM7y~d(PTYob#X|mS3+7nYiRW~L#wYww0hCd zioU@L++!&v#~eK%Y}l^ARcqXcMZXhK>1{(LV#wNd^%!q)1^y5Yj(hTh9oC62sYCJ$60Z|A;%95ISxz@XT`uOSJZ*_gM9bivnJZi zwa%KRA!T+2t~7+u3tg`ZD?h({M3Oo~@vE*OcGI;zu3dpK==$fj9v641w3>|@`^*P5 zK#x@$CeD*+G*T_Qgl+1P1%a73>NJ+siZhF=bcaTsvnc@a|fj z%ah>Cc?Ks3H)_6LX+HC59dQ!eQqHS`Egz3|O<;&O$&PkqInL5a^hNW2n;kXz+JYv3 z&48D}CO=`Cd}WW~%ONPZzud2`sS;0BpaXJlb(K3-62I=6Aj$*0a(-N*DLL8chK#F4q6Q2VG~nVQ4S3o#;46gpgw)GOMMX+2z4#I)|CoZ8P?~=88l^o3a=<mR8>iu};E(J+AhJYk69XgE3A?N5>a7l&jm0JodL;5s%$5 zWm-51$MWqT4(7OnU#%LlZQNu$MtXyIv;_Ih zPId-Uhi$GfR4h2N?AiE*ez55(U_K5+!FP}1qKQzqw5mGri?t*MuGe&34{Rdz)Ayr; zdIl9e2m5-5glCmto#ltKZ10SyQ|{y`ASxm@bH%x-ohAQLo#1tb0?_bEmQkn^?C*5B zel#c~339t_BUc*DkiGdSzi3v3%zYs;f(NGsQsDMh7I*Mfu6Z21XaxFCr;%V(jc#pq z6Jfg+92J3jq=a6kfz9%0U;#*rIwIB0#>h;1&{|z;r|3^HQU|kq-QDatJj`dhPs2i& zTT_V+UT==LkIodolm{mlv}cQE>Png2;SSm-f(-p`C4rq2!U?k^#9L@iJ0M0%EGkuL z{z(##Mi+B3J{nxiAOd;_2X!d5G;Bf>DKnrN0cQEU(+sVewcW+63>rrG)pt-$^isTOsrz;#ZcPR_JSDBZC9kdYPgc16;3^t@vTAZc)GspuM_J`+cF}BXe z2Gvh$&E$TEnhDlxl1`0@HLf_dwu9FxOQhER7y~9#wj+2^m#!5KzKk(R@EU9e$)JJ< z33y52iAU<}KmCBD?T?A|QCb8I)O9jKK$BfA%dZz-w%D_AISE2azFab?HX6bUV!|BS zZ8R2G92!8#XSnuJ{>17`n8q%_D%B2OQwL;)-~ze_#X1{1)RR0wHBfNd%y1&)+FaxL zdrf^c6@qo9#J}K|Jri73Y)8(fYva6-9pN1YxpHvaotMV9c8!LrC<~5{Al#)8)P!?sH*I@=>0o+8 z2h$`?@CUC-4(MPSq@pyYCcj!UF0NqY0iGv+6&)9s*}e?gv+*{q>UIUz%ZTcPG>16s z9F8>^NYaMtDI438r`2nDLAPLD)S8_Ib7MV+!e88+0rlg&a(HvLsK4*c5*6&{6DFpP zpp63OHIw*N6;y$V`*yD4!zSOaK94&!Nt=9cr<>$yC}};dARWk^?UJ_s*M6r?ec%q+ z442ZojLmVkZQ}>wxEc+|)!S=zTxIQ?j;rCR6a-|-JHuf9S4tw5zrK6aN*X@0=){Ot z&uGsVjH?~_Z!hp01K8OG3}*NVPvGUq{z1>Ey0K{6QZJ%TAx_e8pxM9!$f=?;(i53R z_ns70e1O13huqh>wTfV$>6|dL>et2tWTH3%_2L;NqjBD7?&msPiVjkWY@9eaL*gyu z_*LSwB#n(5%y$lIY^7J=8rU9!f`e;e(A4llY5n`eUzAU6CxOLhxG+SJYcY*)i5}`)|@QLw&=j zl7qry^i&Dqz?q-}izTvG zY#H7*KLW7Zw1$L!yE8PI|CCtUHeDU$gQY${{{}QMeNzwkvjrDSnY1hLI(z9RR=~8U z8Qv_E%K|4RFgF1fyFP;*Ov=(d_|M~P?&U~ zChcVs3thnGi^E+aY4tnP&h=zKD0ho1c@g)Ch~y8Ht3oO~D~cUQ+xUweL+oty8NzZ(n6wmVCrosIEhMCT+4CbC1(8ev)ycC4Nov@g%pFa0rrP1h;5YpFV5<2A)pmIqy{RP^&I?1NtWD zY3UgX7g+1gh={phcKLuk2QJ4fMc@F#FLX-SC*U95h=raRl$e7L7&(X6W4>-`Ur^v4T$E3K zg4-+yB`r@RaXO>R7#Kt&mnZ2YEByyoysQi-LU+#IeA%a2mKq4Lh*~(1q>KorU&~)b z2wWL@KWoIR3>11cf%1a7iJ98y=dz9ecu?zxXhYs#M{sV8n-h1f&+o6o<;dapJv^G# z6I@CKh~p|PRxXa0bS1DsJXs(1&>4Rlf%yr+upURF*4Ydywfv=22(BXElP@sJ0!C~* zm|_Yo6qh~$I*mEVDDbg1%cSsCn;5>ZG$ny%-<)MqSVY}GoDe}FZfh!d zrTD;6^bnDhtY7db9UyqSX98JpHEyVJeJ`aTmPQhD``<^jcuSl11*HZ~H%((LL}I%- zue|j_mwMD4pNqg`Vn0QL7C9O0!lR2XpDZm76H7@8^ z8GY!-x&qjEMPn~;>A~P%JQzGz4|%W~{sOSNzgh6*gTcP8V6mkjbuf-MP3nJU!@+vS zKSw0Ik0iwUfM##UGC0rjG1==1)>-~xgJWHv4vzi^)YgBAKs`)Qq!?$pjxeQC*uQ+i zYcwBXW8Vbcisy&i`3hAtbViUD{aXb2HzDMtB$6AGHzt=PHzrl)nR-}hR1cnw^8~(2 z`zG*0K^<3V9atL;>qY+&!G9@)?~p|*>UdJ2T-!H+u>vUHHcjl??L0~;DT$jQJ6Kw(F?8uk-MOfzG{QVJ+%T5 z8;1kgsX%V%pTHvpK(-$WWbfG#karFT@}L5_wSNLXEdX-+p+FX$69L(18?j!{oKKQ& zclS?VM*)mahhz&Hv;9jEhzkw}QAH4+nc!(bA>luF2!NR@BLJ5j4&W35_~Hak%hU5; z4gt{86al#AZ~z}Bfd87nNqGQg9Rgrya|GafhXXj40O}{WH79JsvO@qYSQP=dnhyc6wKW28=ivYx0_d19wtb^b&=jQeJLrYIZ4rP6?E+0R)*hulLI)QI zGZj9Dd3{9iLp7Go;p2S2Ah2Uea7S z>B*-7t6A3(RQVxHQ=K|#pCsJnOYv=g2wz$4=IuxMyhm$Z9ewqc;%#0ki>vLE@Y}Mm z+%@VdI0;XcW$X{(n$@Z6muhY@k^=d*eRWWM1%AZiscDcBe3hrQ{KXcj{kp^RZCzO& zv{##;1$cguxg$(`-x2r7rd_T0?6R7w>;b{K^4^HDPMBE0EQ#W!w)A zpNHz=%|7*yY*r>ox855JSwl{POP#79oaOa6?IF27mpkg!K{*Ix;-u-0&d)#fL`Os| z=!z)yK%P?P|FMAlHJ0j@-NPqV9GUWKeVRuMHa_ z9&-UVig6X~Y)sOYq&&oP9E$(4a5fp0T5pM~>69 zmgFAJyZTe~pW+j~?#+Zpmo}mNvJlF!LK!_6N{frnm@aB@>HG~rc^TU77?jVplXB`? zP!*3@5&Dk`q31LCM>7$tdBF13bDr5MZ?% zgLzPabB)Vi^vnqAdDK9Y;xU|=3thhQRun3m+tt;rXF__SLZ4@R3*rn2Qxa^a(JP3+ zTarAhdIQIqTK6~WNL3#gPqx#Nh>y|G#fhTfa5svFHMAZ!MJ#9MV1(%|-6?^oBLZ#( zRW9Pt;GVWl;RPJ!IkdZ&>hsDMoRAS*$hGMp{t)x^@Eji(^}C!%xV_)i)wSkG;=x!3 zxAmuFlccM0Uo3|cGAPSopg&93^37{pVIYIQZgRF=WNWpQ$bhe3euHuFG{ zSR<7+Jb_5kGDzz|C40HUMX8^t7kZ~OxS%tO(%fb;6Wg~=I#A6+70Z0IxtN;a-%?*3 z-pFFjoe(|WOB|#*Gw@-$`LLKn#j4`HH4fUcn3~%_U}e5_;yZ@{o9c`6uKh7=SRJ%x zUAeYqvV&1@4%XAQT^*R^j7f<-PLmtAbaNzd%F~MBC8;0rBn)UE9$ijpwXLOTqW)dz z?IqQ41>rJ3Z5{ml>_MNe)X#)&oz5*I4wjD6jOwceG|npkU}ct)F>~)XQF3-m`mAa! zn8e~N)=sP!{Eiv}UW(;NzC~Gf-&gumi5kMieX$Hq@cCu6%bPA1rEo{TOV_`)MbBr@ z{uXTN&(a{27H=v37l#naa)R^wvl6}PnW|VTz=6 zONI4WTGwf;ryte9x%~`8e3up;EQqSQsz1xC6w*2mH;ZR()1ud(wQ%s((|Wp)y! z50l7L2uaOP18z=A0M`FWK*nH z;#f3+`59XA<0Ce>bhRt+WZ$R^;PY<8S-)oZl^)>e1a}FPSv!Md`!s<&TboD=BAZ&1 zv`^(VG`e6pjptR^r*gb|e4&?3b8)U4-b(sai)YzJrCD^9snGs7%ndUm3|yM=|Hch7 z390_?UNN&X&Sl^fhDauo3DVH{|MrF%YXOgl@T`a9`!*($OOhmy)$&d?FPw316ck=H zW1YS)8Q9USpO9c^sU>h9Qli zHH9)iSwlB+T6U4WCaaC$C=WCwe z_?4a%u^Ne^bpq46(EDwI>o(@y7}1CaSRO>9w^GTaZa^cw z>gF#%Ug^T-9fJDA!Dz2ZQISm;v=ukK0w;*h-*Iz<6tBP;7Q{y$=cq9gav?jUo*vEW z15$Z&rGqs?n8xv3a48M-jB>w{Sqv(i$7ZeuSL8eqCsXVqCg^cDCWCyz^*B}~ubDaI zh8&y|t`m4IO;W6D;s?aDK6B7TIXOwtgk1SHJMs{;sDxk&RRf}9T@@5>p1_>w#vH9= znw}wt&IxmAPS9IhZ;uG`fArFv+B>3pd1;Q05^C-25KpYT;+#f@-JD~c4tty@>shPx zyPoY)aCeS%I!Y*&!taOQo)e6R*xga}FU7ee99F5cF=_UWd`$2;Zm0XWnEP`+#`|+V zj>??&_j<7w7%Ne&{jul#W$)<@q>S|{yu60-S_TXh!P8^NAFyL|X2Zbcol zD$zG_$h|t&Ur#J_7h019?DaBC+dx3a?GKnbRPb2~ zCc}1}@t{e!EAWa&&2ZzKXB~4OQSCaju)r65fveplFASrUqo+m{1c$3m%6{~_8L=3d zKoMy2cqY({S}0XZ^NP+P<{+^dhQ?F8VINcgeM3wNbMPF)K-*;jai}MIV%6;z4~=f3 z8i^4uO|a4>IaDuBBvFy!B~IL?2`@X$zpZ33Js(5V5g%1i`riX6#lO$CBd3pq8yiaU+!{}u-GyRaFK-+W&oMWr z(HVCmPl7ZVDFh=KUkHsNzGNh+>$pI)7a$QIM<0>M3-n^usK`Wr7QGYe3$LqN_nWBM zMw|!Derqu$xi(uRxi;nh4Ga|#mEB?3>eCShq3kYteI4%rt8|Vk5Z;W-pJG;%6v*z< zO6!;dfl#KjJVRyy;=Oh%P}RB@NbNcb?W7Uf z8S3#oXhMbd+`P~(L`Rs(DEZb|rm%`^Rxrh{u2NP(Gf60~1BScv_YpDvkIL(9FGTek zc|8zaa@WhDf4HbVAr#f8>-WP%^$DS$V(Y zS%|%3DlxYuGNL?O{I=x3Ov6Y<_wFHJoV1lOpB79W`pL8Y!+hF# zvor$ z+YSS%iozg<3sKfF*e9*f7F>8HgGzmcxZ+*eoR3on2xmfTzA-m|2^{s_121ptn84I!`co6md5-m8WqU)0yo+S=Uuo@MKn zHpZ;DW6k)`r(!X`uA{wqc|%h}Yh8Oo=995lfct67n|YO8slRvzf%?_`>v)j8`^ixT6SDPI@Nn1l*YyH_;!HS0P z`nl2q6rJ!Yy0Yc1(fx6y(fx6yq$7)$uc&KlZ*0mmbdqvuZE&MrHaA66({-&Y6P3&v zyf@XgH?CI1rm#faiskyTzPY2Rz3`(UH@{5{=yK54w)#5LylGkuK^1<_G%F4z`D^4# zV`Wy$nyF@IGVsyBxl14ZKq8Fn-I>pDYC*uqo_w+&lq0iG3=XPJ?Id~7R3eTDI{)4{(KQo z)Yb%UMm+q(C|qBR=)gbgCKa5V3H|9?y90<8W-*$ZXD%Q|58=L^A--*bulp5j3;TK| zY@R*CQ~&n&WX*GedH45Z#iL7I{VaN!2l{BluafG8`sg7(qT5nDI&VB@kf-r^OLPlS zQh4(_*TnN*^e z$Hl`vWxn8tt6iZIdw-daJ64lgw6HzO^M5PM&QIg0x3Hy`EqufBYqeQhdg<%R-?!Hr zVf2=vzM4iD?V}331~P0^dwHF49KX}Uwf%1KY8G=JFwd1+%lgrhwU5%v-1O!O!8ER_ z)QaFFXh5T<+Y>a5M%l(=nHurx6G=M#%l#^;OWNi*F_|_iV>sS zV8y#G5a;F<8j3un30Ia$@#(t7bQb4<2N75Y=$!og1-&6ns&;XZZD4)8R2 z!cmnq;cVZ`6{>LY`S{``GEBd0VE^88UWCij!O<;s)#8boR&J&XkBc8}t8jwbtTjv? zQ%2YYoNUEgTrWfZ9;14Vyot?&Mncw@600cw)22|i=M#WtvQT>wuL7hpH14! zE$3{~-{4ATTs*FEbr&+QZ_SVrYa2sgl1g~9s#OD|=^h7r)}#*Y9|Ij_TER1>0({LG zskVWq*RV&d&*Ex_1pMvcxCI2%s=vdkiRQ1@j2>D`ln>WB90g-*QamXmr26wtjs-7U z6H%Rg@rr5nSJu!u%5(fR^?ApCjG3FaW^@UNRKsNdNqy{a4Vao$ zvE)!YZS81kZ(P|he`Q@uQEji7K5UegB2fQ~O4?kkOoT~G^NJNkV77I&)z=mMLcEI< zhyWge(2dRWmlZ?g$X9`z3x|tT^OS-LrLoXd&rOgYnkMtImv^nso&qfcT z+9{JtSJt)Y@AB5>4)dhn(wT;(9jYLg2E#Ia=ndNkeMnU1(KzVCK{srdE^BUGS=Y`A z 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

~;-@6^Dc zQo&tzu$sFs>?4!P>2y#MwJ36W>{W3{R$eMhwXHx2WB=k4?3y&!1^j&LR0eCAE9i|d zI^-65T-?oAxtB}EaB+7efq6_nzQRs86EBvGKc=z&aIol#FxC;f@kt_#htcD9K5d&phm1@F3AU6StR);{i5Ja2K)u zakuO6B6LRX-PWDL-6dn#(M@gY?hWLziX_;r_y>m-L?vw_#~6oN2GoS7`Lb`<|? zK-r~&?NjMHv;>d0W$jX2pC{jFo2wJnp>X6q2&IA%wdV8168uV+!JN-Yb_IU4)>RWI z)f$UqEMu1jqlrBE4zdlDiG1ceo$8Wch{^yr!4C-$Pjdff~6bRr&#prUr5`f_M z?9ey6*r6B5B;M@e+8A4eSDlv%MtR>73tr#t;*BmBIXaPF?{dXD6JM5b=DE5w#~hDv zB49u=f&*Rj8)HCnIM9{CfQ&GS-}q~n;)ZD)>@0yTdJA+iLFjC0K3akwwFR^L zzC7l4@OJrsz_xB3qI*hmLJ0V6Ne0_E)6b$^BCrJgrX(jd{LVOA>r6aTGHw{j02Qy4 zczCIcq@*r4 zYN}r2X5mV{1qW)6^DCtGf*(#hM{TkPO=v9_@~tPzyd6 zDJ8+>7u7;-(%B8Yzm8XkmEz8se$Ag%mo|_GlRkGD3*V2Mb;)*P7gxoPaG2l)BXch8 z(l2|FiPVboxu(VI>eI;S^BXGv*m0Zno!W@e76$eGE#?($>~R2qK!3l59#U5P^{K%v z4m8ti?`?~E?hzZJdj*7xsf-d$}JgSM~7-NE*K!8drfm0-6$ zLcZIVk|ecP59f?Zx-#^f&HH>vSiu9Ov#ZtdyhW(vdV;U6)lPiL&fxO3t|aiB?d#$U z#ssV}3S6+=z}#2p!iL;~N{GX?PFi4(2%finy4HC&su!Lha>0Cws#p|} zf2mCxJ)=0c)EB(l$t&d9F6*;6uXH>cQgQF12$eq?R3VXg=@~%|linuTMU7srpEBRbmgXj8OJ~48HeM5>QYH%s@ zy-b@zWlg0lltj{9D0rch`r)Oe89s8LU0Uknh0c`qulP#oI9}<@I`~SdPo9r&mih^7 zjQe<_FNG~}f3e`TKG(z_4Y9CJmd8td9+cvteKasO^}7-tqknx3mu=I0=h4mA*WfH& zAio&P;Ie)foh~hM-7adg_@J+RRy~;<9+dEUBbvH3nes)qrfLba@t5~A#EQ(XMm%Rd zxqwQxO}JjM!lP{7P^XJum1b~br|V$Y$zkUjSFBU@aP&B z&z1W4N_R>s@q1lH;HvH+N#NNM`jg2MSh-WJ*wWqVY*Zmm>AK0BfQiiplYPWwQ>TkR zmS(W^AWW+8DltKY&nw_CS?bfzTg$Z;#=BVgI&B%UtX#q(s7e1SL);SP6f!;3odX*SQE8V z8mE)OZtSI@#kro{IML_U;M};+FonH+F4prg$3EL6Y4*Oc-zs^M)p~^r_w;zWu*4tx z+?uL{U~4?1u2}M$cQg%G#4~~wE-l!eV6q_b9G4aXPX_Hdycd~$U|WGn?M5df_|+O0 z*E<=Eu5mH!WZ2ob-Wl7Booj}y({a5s9(?k}L0Qfigjlx@F#M845!^&jzgS}iOg&vy z`*phmcCIGa5rP#5w>TsCIZJS0jbZ1S6o!M3)(IGK#_g%t7xRlR-lLmC1V82Zy13OD z(Hu^ zsQ=8ujw6KYA12Wv%HQxGJ5Bk9;Bgh}1*|{C>ba^FY$P`k46xz@hDvNbjpf%n<298v zg0oUW!`YWy!JA!Fnu9p*^^kMv39e3PDrduaT=3M430R)=ZRda8AF#*S4l8a#jC-IlY&~}u7iTd zyNQ>?U|$ydDM{2i4SS4mNMh;@Sm9!d9(+dC$v%@)qkqEwl;Gzv-#$}tOTTM>iZ6PO z=UIBL!!LiFo+OERM+pM=d6en==W9 zTg7vDB%YJOq{csT_;2fDV8LMFX>@_>FxF^jX@3e?jVUmyijx$t+H4>_Q*d$rDBJL| zX~V_+Df?4=5l?w48usz-r$6q zK;hc@rHBmQJ%kM5(KPRg;UD_6moJKIFaM#By?haa1tSb!GC3|WIbPBnmuL>fP!ZD; zYXVzkY-NN|5N+z~K%@mVf7Tqs)sJu(jgG#@`m*e~@0nU3(^|i0YNd^Y9y+}(mBC(V z!Y8@!Foo_jh4hUt97ugb;&HT7(>W9O5uV@E}U?aHL@A=Sfe!;wLJ3fgA`MBw8tFpJKX=u12$1M$w_PEDqS$< zydA;WdB<=|RPC@vz=UVcu%U1CYOigvwAbF~Wv^{9VH3u`KS%-bXS3QF(u3UP&t|3F zh-5}*mJ$u{t-$Ruvo%8Wm2d>IO^njyhKJ9(;;}0$Gg57T5}zfmiH!1t_1yiy(^&0K zGAz!MWRf|3-~J^2%H`w#A}I-tyw4fti8LQIfm1WvqG~@xp3R5|-n-1MP)%T?cuA*% z0+H;GlZY##Y6edw2+=tzJTflm=tb=j#F>ORAk}m$(b=IBk%bicF8fS2$+OS&>`ze_ zOLNFBwm&5`_L)*?f2t;#qtobZndE740r+(t5qLef-S8_<(zUX1J$?K%9Fy^u=h*TN zmmOX1+n>^?d~v+0u<46d8%Rcs?1-B)Ro)km#Y$pMY+o!Ei^t<{mrses%fm6aZ!!rl{6eq|Q5#C$SMKwk1<-N%%PHeM1Op*$!O<9SAfQ)MbuBCo zB|glKfI`ie0)aqq?>Hsz0yWxy1OmyZ98JycGNEYhi7>a zk#F*-{_}sjKO*?o`{PBW>6)(wMWI^Tf4Rzgc|fh$68^v)ROk#f!gIa; z4yldU5gDC~CL#l~?MMWV_zT}6@<041s)YytPk~dURSw)K$G8~MYk^@wNFbzjd9M$w z1#ki|kUQzWC~A2B0e0`d@{;mf>Y^1H(~JM7V=7+@3gM&2x?`FPgxhvh!G>P~i2N7D zv-&Sm_B$%@R(J*I1r?={;#KJhGr0%#+O`_-4eo%y@_#~MGGJNTCRm2sK9Vs}b*_^0(a>!GCsCt(d>Lz^DEd;JbU3N4DpWEL@T* zamhqar#K`6?$M8^vEUxSsD-9aLVI3IwGLB4lz7m%;t8f(kkc$)$0K4xhRp_lu&vzb@Z0;R#h5rD!thCqLq!I z^cYvOidaK#D<$twAZPROE^>6LbvIkK81jg*jaK^Bd8eG<7dxglT*Mi}81)S_H?Ee*_6?h_o*O)t<`&G23 zJK338s^}+FiGCDh3N=D3?QNNKye!g`+pBylv5b<8pt<0bnjmj~E-U0MOFaJE zU+P$BF@=WUnFi_3Mzj(+!`N(TkzJ%CsIHPmx8WPk-UfxY<6MuU9~i*4MjSW{n0FZn zT2f>>5D#eL#9hs9?eaojk;~e-&T6JGT5I&5aPIaq4TfxhP433}ucC|E40-^zDL`j+nRV7Bu*%z6otY z=OxEkF4~Z!ky;8>xWGl;z(p7e7ZKjWHJ1)pe*K3~pVuMJjhrk*pNU&rT;QNCbLbcs;)YAy}j;b}*` z)*NL^TzMeV<1E7sqR*Azq7yk2NXl=)-$Zd zfXz%BMRjM<7U*&|Ad$@T!3hb01t)5#fe`W6%~}k)qyAyGj9R7(bJ%ob_F)bVBW;u` zy`TqzDGzt2IDX%c$gy`Fzr{t-uP95e2-o2t%yF2xH*i8{dSn0#2&T>(;6m^wY|3?} z2mRNhc+EIr7x_^x@)mETJ3i+3=6YYibd2&bom|hfK@3H1h-fzq{XdI%V@PrYt!6V9 z;SV3@;x#rm=tP$ak|N43=egjJPK5McuI<1MppLLEEtwg(*ykkrxAAy0rV83C?IXB{ ze;lTQMhfn!*qq>3nm6%crR0-RZuQhHle$v=?t{jPBzhuJTR(~Q_jwr8&YftYfmoAH zbbc;Y2hix&pnr^R{!bqRcPKk_Sh10VjzB_#%^)lQhTvr^3O1!X6W*ZG39cwKahysq z&DMY1Z}b^uUCsz3#k7_j#Es%Ot%J$vt1C@dEKTe^!D5a*0b0fc|7N8(!8d|eJ;IL8 zZaRF-`mgYkX*uw)5oG?4l~5X&2n;Ii(i5$rly^Gb@d+Q&Hx#5$qfow}6a7efEhB)< zxKsT}zT(V(ONh;#`Bj9OKSN%@zGjsIP&7!EumDVbzTiL~WeYju23;G%V#YVtj(CkN zZ4n)@n-LzbPV^R*BnYy2D>U)A;F?{cCG98*?q-WL2f`TrG7pT=g8|qwfgU!oMZd@o zBQ!7W?=TX%qQ%TAkOXry2Ka#5%ReEo?b3H2)^FC&JA{{Ucz) z%@+$fMM0&S4hv~wfx?@+$TSl?kygk`7=V5rd4V(T%s;qSG;zeT;U^TrqeB8A~YLZ3I8>Y)(?hy9vN;)i8UdJ0f@BOVzo6>Kjr zaFL85WV`B#)p3z}P0yRO>+@wUyPog&mydaB@}u6(sGaSx$!Dtzy0>-g7#K~-qW6$2}L@#WL~5MdE@W?xM#Zfj3> zC3==j5#H7BswbW8Y42>^S5q$9PC)RT3gxoxZOL?{N!?fcD!+d>OzJy<>A{d*mQJQK zODllkw>U+lvOQ)0cMh%VP89mySAWSRiR6-m-JQs!_EijX+S#2-?=xOnXI6-JU+pBj zdetH1mSCk*NUALUQ4o>1aNN+|DK?k%iju*_5*A4Zp5>e6{Ps;zriTWU#R$1)us4V z)g8S(X(>_)Sru|aRs~g9v9KGdO7LAiALWs%f)yfF1yKUM`#*G?PBBM#D-Uj0^1Hn) zbDDhUYD+Cnl|~apeB{Nw86gl24=APeq&vF2wt^BP3s3RxM5eVw1J&6su!~Y-)v31b zbfyef!E}3PXIH$lXNeorIh|RG_7x?@)7{;fPI>O`E8$8=vmFu8ctXuucV}l$sZQy$2d)&5 z&ZHzjDzBO8%=EQoQk{KjX@VF^16OOd)Ks>oEqPjhJk#0Jl2s$g_Ph1^%e7>9^7~&b zC96xM*X1pqU`h>;ro8c(h7AqCPhUQ1p_MIkpb#Zyw0Fwg%}h1AS&5$bVvNRp?8QnK zSZArN33X;?Ix{WpoypVMGOa$qvpN>HWfHP}YrI%%vn6<2BGc~?`0TxPFwS zbT;XR>OKfe7Ud4A6hu+I>}$(PQwJrw(-}c-jk~9vh?+HMLJA!0zW%7Z?r3T2=}4%> z)3GG&{>roo@(<}qCX!2}=NjO%JCQjp-nn?OswsozC>6 z6RpBIYC2kz*}imIb=1|C$*2Wi(~j9p3hR+pvhjwx7KP`7y_HhamB_fE(X;&>J&6|S zs`T?9KRn(+UG2TCZL*|lvOQkA*|ye9qBKD@oi0(A-}2RTB-+~*-PUw;C0f&^k;~(x zuPEt}g^VnjSenkXx+nm7DzubpmPS>RT#`@#f;ilfWRgAUtjv0i3Xv)Ad%6?Jv^!g+ z7ihj$wJ!zIOVb%uzN0nS-qxXzhX<+C(VFb*>{bZw=xb@|RkN3D?L;h8DU#{zNtbxA z%yc~4)s}JRp{Ap&yHnMY4!tJi!5>74sITbsw5b_uOqo6ojeUhj@mWJu3r3mctFIX)OGmaVk;$qUlQkWS z+m;E%pj?fTL`#g$TaEar0dX?ag99OL=jIydHE{+T;Suj-w&2&^TfG`;!6F-vY zjqnQ7l#Rq_scap}j_@E%0IN|}!cF2>UNmTV>A-rY-@1FF0-s3>k@LlBx$VjI$d&c-MO+Z2G;N-PiFVbZgmXdPR16MXG6m0#iF~!qWkF-R1UB zO&_gwFSi0AZI$eGf`N}mafkhnhGpcOGYs?SX6(Ps2Lzx9-TM(*v%?5228bA=*v(Sbc-5{DZc^u({aC zk8s>rC)%DOTdaLTrjZ7q)P=r9`_Kf;Ofzq)6cYId^zq8cJTHsS@O$}(Si+qi%6B5g}VJL%O|CS=9O0`8Fjq3vF ztmw!gC|02(!Uu#skq8bJTNHL+;sW3(JY+Y?qLIJ{7L-tV6Q7`Ov497QX;Z%7jdJIG z{wOzSDl-P|Y0eY%ucgnVe+0$3XxD&=D;_#PA_8QvR^u*ZqZcmfGZ6zvOv#E(%}^*y z_)1_}``8;cUya3%$y71n9`&wG&V9fIU;$kq3A(oGF{Vew6$3ti3z)_ROgLFIa-5&g z=hOWG2XC*+izCYw`Is;Q?I?OOu$$u)ngBK4gF+}W6x)Ba7-&YN5N70`GyD<#CjSYGNRL@0QUqC;{O_biov@IvB z=V!qb>U}3a?g8{707AqVXg4u-0}Mu+N8cFt*8h%&{o(%@^ub#>?pbJ_w8j1QDVkOr zE}{|buw9fZc$G&>1#C5UR6WF2q?!7m7mQOr=CO!*kGO4pm_$LjmYV<&CU3P@rpqgH z3W>i*Q9p#9o#yDLFkK2y9Ale4m+50E{Sdlz8m77#3=vciv7zZ>+A36X3ez3E8&=yX3 z46gZc^$pDGLts`T>}T5A?0%Dao+XfSp@!KB}9?+Ch z5&Ccown~z7C0!tD?x70|f-uqDzp4xL`bQh=YWwgz=>Ar4O?m_1%U>wXU$CV43+|~I zD`{_`#y!0^-77F_ds2+w^5RrnHCKAo*10sDEIoRtE_>6NoIJbbs zhJ77IxTM1f`8tfy9y*MWcakpGVT4LLjF6}vd>w{*^iQF9EZ1SkAd@8>MyRC2K+#rJ zv!ufac{+@cx41&sa6BDGsHDRPiITvbI6<_$DCscNv#-MdB)$#<4^pR0hY>32FhXTI zjL>8qhD>_AOotKjbr`BcSBIe<{6SREVTAV7VfdIA$jWpW(>+2{A6y+qXtEAtno{e} zaMk)%*iTS?W~vkT#ZQ{7VF!yT&cAQ4M5t9O4WaTE5_!S+DZSOoPZ6 z_srJMExm52Exlgvy*`M3jf3f0F~I?#jW)-%IkaqC;`_o68|Q&Y6I+N>ZzbhtGj96D z#|#I^ILB#)uZ~ke7QLyCxSRr|G2c4^^FP_{K9Wdlo^9?wnjry99p!w(6i7p0fAr4^}e4U zmL~oXNO@ z$MFpjDRIWp!^pazIr^bwq`0Vu#rnfSk!eU^5_a=R9Lg{dk?+gV;GrbWM3%2Vpn+iz z+~(_Ca1W(uZMevTV(~)9InjFhk{DqepVFt%bvPKK;oqtgFvsPnMqe;teIk*T=yN8I zNGMXWp&c=r1vQ`WvAgPezpLMYSb!OvZ)pxXOG;<&-&bdG>Fk5R4J|Tx1PY+8VJ-r$ zY3P#X!|2ED_{)CBn{RMCuB8((#v*7q&7(sJS$AU&p7|>fdq+7II8)CWw zhD+NiGu%Ma9i@u{o?jS%CJEM*nuCm(PvV&^y_SB0d86)F109fRftP)Ep@C^;im{I9 z0OVTLYv^}56SddrV|op}3MPkRGhUsggR2-cG7y8R7|v`4tyJU553_|d{^LA?FhxGU zadq2zEj_P+mdeyGUG6v79>sa9WR$;%)B$^wR`GzX@AH7|9%kSDSvOmjm04T~j;M5~ zTbxKH)7fmIC+>EHjn+Fflnw`)y0HvSzQCN~faO_-qbW_boaya|0Zb~hALBrw{j^u z*ptkrd%9Y?%gy^s_sn8c&{lT0H05De^G;L{wT4|*HG`%@9KpiHA4!>k2=%Vsdfo=N z+yP|NhDTu6XJFHGq8!&gLc!gly_2O&Uw!Z+Y25fshus(nXj{jM<@MPA!n zOmp)!toKSY9S3e%L`LMWKdpB_8fso0RFo zG`!o>jz->joHXdd3vNP{e0+3eG*qR!M==hBw9S|KQ{SlE@*(Y$meQ-3K8pmr)Cl|C zuMN}D4&HqN!Nfl1(5WIrgC)>>hrR(B9((X0EdA#XaRg;=%1Z-CW&{C(jvitd0$U&z zq!qCs=pb(tYQosOid7wC)s3);vy6q8*XPH@(Fg<*<+`X|#RmN%4^Vy=Z~$?FEnBam ztI;DahfLTigDczuAy>E?LNL>>0}ji(MmbuFAB{oBrt0-7yw)|kEs$a*vPlJr6DG_N zf6?uze^cK4SL@$_`ZvCd`v0B+3g{;o7-O`+$1m`t9@OtWzT6*hXgb#ZW%*%*ViUw! zOxFS#biBj#MM&mqNcR9Fd;v;uD8lsq**)^BGflrk1^pYriuXr zJUy8H5O8Qj3L}{jjY8~ohw%V9#W!^74nszvSJ4mi1s!COQbSOudb%5f_+{Q)P5BsU zL-Nl@hU5Z@K0oQLHnf^yqF_lpF}g{*b?G5RzXCu2vj<@+HKvDvZ@gYj&d`R1^wrpE zj?)aslj!ID++TE0;y8)J3-+;197i*o5Z9dU3px~ZY#Sj~s+fjzAkIgEP89tba(KOl zvE9b8lOq4u(YE53cUIJA3SmJ%*q>aM(7hJ>`WLjd<949GRVq7)D z-0hNo5WYw_l8Vn2&a7$#1|5a5k8(pZQ(Ojm#28bPL`AJ!VZOu2JGiW{hKsNXnXl}D zc6`Yn%h|9vp%n#*;iEKD!g^qBqBJwurGUlz!4jCpz$yg!bho@IvQ>~2S;8mb1!M7} zBFDn$>dSslW9W&I{SEQC8j+DnC#0=V&P0@r!Os+?2j^+XjQ#KnMR^Y0|bJ z0^A}GClq)>D?4&#MEUg5)4`z#DqI?LkbVDUIJ5mJ=sS3 zSWPfp7L+b_*sJ{1C)PJ!@6K4ARE*%Vv8f3I==UV*ObY{*yX z@6Y7G)`zGdt3V780LNQu>}QmZ{f|DP==Va zUQOTE1oLmKFnKcO-%^8pdccIDu$t+IP?C5?WkPWyismrZKMp_{0Sy02z{H5@R~p{Hip^&0EXtd8Fk=Jb12+*pBVx3%)gmv{ z6oVsL+^p;L-4&qC@hXQNl+{d|f>2K)2XB;DmqpS&ccBmWPsMIXu^}wk?*Mld*Q*d2 zoe$LmjpEL#}2Vl+&fSH#fuW<7NlebqOuTh-*_?gj~1H3(sDwV?hj9rH(rJL)n3M5Gkq zf`fz!k^;w-FHnU?LL1LKq%xQJTN_lCj2UeM6XIe630bWm4Rw(XEmZ5y{4fNmn{RLq=8=6g3PBAovAr`4I^^xLR@Sq zDR5hGyIwuxnEq3qPWlDG6T?gOME0e2Ik|+mczn>S|C_d5-w|)>M&i9Uu)<}^w0EI z&cp{1ZK-ZDC#YfiT&ykvsF?0o1+NJ@h_dlS&ZHfJz|R$^cDqu+*3cJ#`t7-xsBCH^ zZ3ZZfSUZO5cdLya&3-zD88{jPZAO)^2=&#_Tp{Wf0qOlv%38pdv<~9ZYv>k$E#}G~ z%1Ml?hN&qA`nd_9(w!h55#o;ozI{5Y5kqK{`%YdudQn)L(Agq?KkNFYi(=^Lp#2@> zYsKE%oqHuoVDq6Bu}0wgCh1ROdLXyOk=B+$2OX#Wn13cX&2MyvG)hRbv=r;?!61mH z0rf|7SfK`vjxcR-k5PzXk}=&Q?DB4bh<>^)8qL{E$d1iLRSZ2 zrQ@iI_2X}Q8Wx^T(7Wjxos0_K#EJ)d(d3j0`2T{@qU?E?S*DkACKWV?z78IAh3Nlk z9Qpy`WBNeBVDG&#V#HPF^W0V#~r zoJMD>!i;#wSixI-R-N&&^%_{UOb$8pBs+9Pzu7>~Nc5g2osf3NosdSL1=rHpoi(}^ ztW_cM$N3n*ll>k#WR3o$xaH4rqAxp*YIHxua+hbaMcqK-<^f3vxCL@CRY3w6f`0&A zCg|D%MADlBCY=kCR6G_V{)-YKF39_mpGFT)Y96a(onB2plRfCmqSYQmFOX+|t%+Pr zucqNVpulHZCtu~;s{>O0EX_gS+BnA-c@_wPE+2c6$QIJv)j;q~?9gw3zF#Z!F>UUb zS-CtP0}}V5v^Ro|4LDZk_M)|M8TLO!eR#M0ej4JoOK#TyPSkuF(lD@b2??`#cBM~m z8huwZ2WLwgJA)35A@9a*{Vv(<%3;xQxzw&P4MJ!l8r*B<{;r80K?#^h;iNOI!g}x)>83ZJB zsW%=ZPQ&a%h&L!cOmkE4yMi=8UpA31Rxxg20T<@H)rnO`^rHcjE{C!To!m-8vM;D1 z{!MeR9+2IgZ6s7_7CJZREWeFcf&yw$X*@LgtLDI&i|F+g1*}6AJzWN`YcxuZjgjqK z5o6jGkV&|faQi^?)(TnDZ$ptod6W7I^mXhDKa>&g3Oe9|X-pN-O-jc#Y4bxeFKE$q zqN||k2|4scFa?rRZ17&C?1A^5?6UNR8sy7CxmH4yAf~&k9Hjj*VG08)EZQvjADd{? za_O1jLE_HRLqVqjdujw1VT*_9kW_?=6!$futCsqduo{PHT$n`|ahJu}g|w92#MqQ9 zwvdQ}s#7)&>}7w{K^_bYPDt2!sk`9cw65>-J9r!&unM;}sFbSOT+$(MAj}qKp00*Q zO_q_)bcx(NTvsJq1Cu7YyC$EC*Dv#%UW=2TaC?v#4)AJErjJ4`M2Bs+*;ZlZ7~wcA zrYrK;_AMLXw&MIaeX0lazjTES0_s^*&b&W1jI*wSeM+JzOm@P$4w~5gCl`+iG;| zA`CaK4_7<3%3qQ|YIIyIKzy;V#x7MYGySnTg~d^ss&?pxJVL@TMIFZFB_R!ruF+bCG_2^H^~lG>6vk z=?pwDyH0hlH*WiyD2e%7OSc zz5=86F#}MauX1cfqJkL)Ex`sc!j|?SY9FTq9cnk>Neg#ZqJKye&_DTW@0BWOB&Rt| z5hO&=iT)&IFyIT7p6P`Z0`L!@x@@$?rnj8N*2?1gFJI}nD(|n^ZANXlNHs$?9FZgT zI-5HDrM zT}IVRt+3Q4rgQqem02)=&F}d0`ghPV)4Bb!m8&(n#Q;{IYh?PNU-Cs&^89{5$V=!A z7cpQ)7Q-eeMFZn%-^XczTFr%<0h|;Am)sF3It$_(10kjv(xE}!8kf#uWUA0p$NND$wu)g3T zAtagv(uVYEdQpQO?fe0=ku4ch1Oma$LA<>qCwhYoK?k}GrvDMu*KZKas{ZPHLorFz!;Q68>(1f7xRUwtLK`M~A(04UN5c&AWfK#W3==}V!64`)h z*h?>R_moDZ9ZS%bz!2tQHjXfTKw}jUb3IO}Om}(2`4iZepxo1V<1LW&d9xn5L#t8c z2g|Uu9QasJ%%l&x5*so{0n62Nj6*NxpwWhVJGPr@rVpj`5M@m2i`DA{bcxQJ=?A#@ z!ScFEhUCsT1lq|5%@9lOBFye46;QxeYJ?aDILNd?Fpt9NBt#bGR5@3d23M3**H6G6 zNLJ4yLYPsuWH2IAT_uns0}W1Ic#z|dPIOq=YUGF>q9tlEj;TWTqH(4GO+kyGwim}r>y%|w-MznqDNk@g8F z1rrTVVxr*^6Af2lqG84i*I^5BnW%ch&6PN4*yo@=`*fAwJJ0s9ya)RXS7e{zO6)Vt zQ?k!6S7M)GE@z+Ncf~%#yifKSmhiYG_8Bg*&+sJn87^m^;VIZBZh!V*pX!x5H&x)B zVV8G;y?Kn&yOcTC$Mw5soZ)>k&hWp;IKz_}XP7H7&M=oV&hUOS&hQ?LGrSk$4DUbV z3{TBC!+SH%a0SL0<~~8C6M+iNYdaU}v8^mbl% zPdMfKE&if9)q(AvmH7vVn+L)_&`klzjHB8rg^78M{qh3RsAnqb8 z4CL7wreDaAaa4KAz)k7T`pgE#4Gzwp7F%|7HO>G7O4|iF(L21nA;yeNXykHr-*FuT zFU$$ZX`rjYmTVt<0Z1y57hrK21HGyeHVj#f{q z3qxs3sP{yS_kS@`^|Flr9^usKHFWAQE`F7kxZ>I9F~xqrRL*^Cp!BI$wrm*q68HgB z%d$}Cq8g@D4Dq6LjW$*ThNo~cI!v96zGl)QveFK z4D+dJT#*GjoF}v$2ZYZCpzvh+42}!pfQ}Pb4b#K2l@c4YNo+aX*Y^d);DzZ2SQ+#J zmb^C_H+EA0oX_Sg@0uJ>vBEV+5p#`J1h3a~;BH^PwzOuK+IS8$>TgtX?% z-6}KagV30UfS3m~N1s8XYL>K;KoS*w=rw8)6!Afy!Lo77viKJEGJOX96B;T8(pd_; zEdd9yi+nePhIcN-F4AYZw%}suw_3#w=qu>eFw@j$&>2v>g8o;5GW8iW(I10~VKu0A zGz50lgzo>cRK&NJK*%yX)ssvUW-x6Ky8z{?B5T~;U}msv79<8GGw2c7lO6`Lg@et2 zFr`R7hNU>wufom45piN*zXVlK;#*n z>GE7mpF!_)Bo#4qF1U-shg3nIL37+?tytJe{vH$fi9dIL!}hNxZ?#O`?tM?*Ex;CF zxd*ZdPzI3&SiVJx0KWkpqQKo4h)mw^3{1<7A_7dFyp3w|Hs*)@*}K=9yx45HFW!`{jp zy~3ZpUm_0VAa);Q&kUx^@RsX!jb5$>#xKOq^Fb%V^bM1alpz9V7m3(1Lt%&L zoScdM3@`pB1f?J!aI-*{tg8_9fL=)^U(kQ6# zMeLM740@L9WJP4^+7AvD(DK2LLTCE6RCzh*a06P|qbPk)nBXmWQ=j3>cw1%4W-whT z3mLQwbs`-+#1(h0=W>&Ei0g;dVh9)2UDIw{yy!tTXmvk=rdXOC2x7llu)!|~kDB=vi_C zVzXDM-kWJlcBaxN^!6;aD}44__Y$*cK|`DQzDiz_%CS3`?QMY*p&w#UD^E9~mGS_% zKg-jNXvoIlCg2F-_u@8p`tZ>1X5$F9ws)#7yeQ>m9_m!;KoUF%D8Ms*=xq{0y(-(; zEgyK#R0q6ws)K6a4V8_KL{CyR16<)%NX;yMhT9X_o|3daTk0RwEdAtJ-C9gw*H#c%CJM+B;ZMz zH=}Z=Yp-JprkJq$*)q;Dui02u61Fbz?7^qlYJ})5QqB(?zVi~l({br^gf*uWCH7MP z>s!HEcO?fx+PUs~6$Q3=LUVJapW^!VBX*6&TP4-}e0SB|U3uYC#Z~9|{$>#Xzct(5 z*0awLs@{4Kimk3hv2H_{zo1(hzcrc1@|2_MMWVZ-p{`T_HOdPGLfWjW6^qd|IvA5x z(~si(c)H+ z@?!a}JFD5E6Vrc+oU^DuEU-|E5@lNMcJ55HIAuQVQD zW!oF-o%)CwsiUB?293a_y0Dr6j6ie0a)m`|K_dS9W;c?|o&U;O>303;5!waeX!ph9 zy|OA;;y%_58d9qUQIF)8CcjG2FiSxdk*~L-tt`6(7RtO|`V;ig+HldB1uMHoj#C&{ z(u+i{K$bn|KMb0gvXz0#E(waQF|8H020_U4eo+&eRN7yeSokpg;l#%lA9p=aWjGKZamN@Nx$T zDzM_s?i^nAugswvPZPnW_BDOrM=HOXaJ-5szTKw4#Debc^1Vv9ptOM!n5gxoVMVYi zNE?D2db+zn4@AyL`ir7s_WNyV%che(`)a|3 zEL)*WcFK_ME-$Q5r_^(Q&r~6o_D@nNiRD5SAE+dvl!>z?VN=VtyIG@x?%=Ro$xB41 zdm++wFlBtI@}qa@{x4RT!{=)MoMd4B@hVs@wfhfo$l;SdmjXX2NXx}}M3yUkM?SU5 zRa-lercK_tA;hZ6Qxb*T+3}kQrI+=jyECW|7KscqP$q%ZOci0>Z>il&kQXWw{rqHR z)6sjEm$5Ajx&6v;0RQP4oeQlk7nKYR{SFuyGUQr}?AAp#s51sn1~3o&Su4K`f{N5Y zwwO2>j&~w{@G8IIi%A8%iohPWc@&vf2237Q3>7(K=D*p((8t!{+6cXlvZb9FM4oo& ze<>e>aG5vD{|4_ILgYJ9^6*w}ZeS&2LKA00lmU=U_O(QKZwuQ5i-eKzF}o>mN`PCK zrP3S+L9o=AN2Cx`U$C%)FSpIsngR_J>N!p+QzRBBudnt8xLaY4Z3N>DIZR7UK!Gi| zna>o#cZMX5vEWU@)*$to#7^UA0}lcsL{eE%AU&l7=oEGg+-m}$O^7(K96?}~`(3Xe z@w>iQ7u+`TLXN{y0!6DI<%_Eph$z6g#s2bCg10W)t z+#qh72!Ugu7&?=nw3lh(nDWd3Vu?1xB$z_m37TJHkc-9|TRTP~A{Jz17O<=xw#(g@ zn{1R)d-T-5B|p|r5py zj$t>jb_9YOYiU5C)j{~CPC+>xf(Jn)oaeq?;CR_Qo^qX!#Ww_tMQ#DQ@n;*?+59BD z*f?TPuHa4(phQzl{eA?HldkuhSu2hxm_>_?wL(DF6KpI*i-6=zwzjhb#0GeHQ}C2q z>u>N|xu6O}H6k83OUGIAP9=wV1jw4}AaHOCM8jiKbmVq8`W)soGDWZ=Vbj6%T)@$% zi({ikzsbdjov5Q?1V{jY-a-StE#fVFF6qAuCM|}81$CN;t>K=ufagJ$D`?u8E7)wk zmC!!+8s$wo566C7QqvGz8sC84mkvzj=@17` zttK7nh-=q3AqzF*GB8Cq=S>8NM!m7TsZWPzmaZYP4OKa?M??vQiz`IWIEs8cA_)qO z138c7V!+N%gAS!ldY{w$xUM10wfKl%C#_yl@!QIniQ8)>(9vOzSRc5o1W^|p7#&;C z+bZuRC|4|lewZ&1r!bn3Lkj`)a1cWMMfq5xJ{|Xpx<*&$u_|$et|!2oF>Mw(;54E&v&{uBVU z0dqN=*XM`p*VR#Y2;3EJxbQ7eYszS5%a~m+=jK7Suv{#bXr{(mgdRR4Km5+UPKBSZ zZ$ZQzc-_bX_;*|=YD^!;6cj<}`!S*^+GaFvvBa^%YS(OfD>we$KwVk@qsO^>QN+Lv z`#U%HMd17RJ@Ng;;Raf%_)P>@m1)e!9E1M(9)?V(4%btE0gjR2OU(_Ksab5%&fJ!F zhI9%%0*$Nbd|bR>-JKU|7=zMC)Lb_C8?^=x5R!(jd{cfkhz zbR{ClKr*svxC%^mEz3|I@P_hNf%&CLbKg*{}WH^(mgOYzK10P{p_#OxFy}Sgs z6G{O&qEl`CGsybHZ0s9&bhtyOncxK24jb@{of<(v=zl!)g&gqm3AyqwG4?%?_a=}x zOSU7+pih@7!>VPvxa?^AsQz|ti<`NR{`)-+aznmA&1O_w@mk*#QzO_Mg5pO+N`FrT zady5yhoh|sThKPs(M|*bm1bdOZAGZj_cUx8%NL++2B;r@Pc0$XY5{y;1bUnIHt4HC zZ!r_0CK>r%sS(j$KwtP{(3SauC-Ce`h}e_XE`{VU8+7)we1WzFQt(oFHw~=M50kaM zj!rdkR>G|KWdGxQfwl)yh^O&xTKtI*(&hOAJsn8F@aEk#a7BKYPIN(17xIYW8&hH} zpc`R<={*tQCp@OK;k{8C(|;Erz*?@;r3>Gt_uA@79(<$kwWW_2fW;B^*Vov4Ymsis z7sO_-s5b3U?25Xk9Yw#?cGFQQ$lHgCbYD>no2%pZfkvx_RwJ#Y%_GL52;H;1fIasGZHTR=X3eIrz9-g* zP|XF12^S8Sh==N@Kyt7>R9TR^g|8MJ9Y zvLdgAU_-yDaw0UQ(Eh5A_U8A9_VX3m*Oj3iX!$^jPJ35qc|Pai{G0*vorVEnj>cD- zUTC|Mp7PJ?PqIoFq0M~_cNO0>Be*B9p>R4KiWUoR+Y9n+8g$@L1j;8$K_^E2vcL4l zgn>v#8M(RDPJDx{q(k}G5Ve~$&56`gwt%1wa_3_ixR%u%`lcz3$LPQmj$j526x`Pb zrRbY6Iw*zPJ~^vGX8|?VLg82L?qd84fPa z2HASsetS^f%ygQXnYv<#uZZM66SP!aU<5+i=4X7gtg2RMk?{7j)aR7OQ zyU;#MfgG;u)mhDMd2ap z6=&zG*&=-?!6{8w@CN?q!Aox-t?*j5w8M~~+kyVnusEKgd_f*;jvI}PkkD_k#lGY2 zg6I7f&POs5rrBfkEp39e`Bcb_Grbvf=$E-I^jrCN82@T>=$E;1`fV@;qp94u&DLYv z)_5A34$BCvHmG0T!N|&oj zqJZ?fymNnR|IDq8J4(Oyt@~ShqpH0P0N=E~m99~hCIkG7{jGhSTN}h9*d5v5nzu+z z0|6xHeelAF+Z+*{_Ht7+z@k#Nxxss2s{t1aD^0a*CDTCzlwY8AL|lK8VS)t741XfP z!ngYn)@8Ft$ROviLmzg^Ct9CFe_6T(xg@ILf5z~Kr&(AM^lU!}kJgLzlN#R}OZSs* zv*S$L`%P39W&#DjK{w`N073xTYke>-c9j44Q!w*w_j8m+22Yx=e9r$#*P!`t!(LY=!RvOT%Vau(VsqtUH}y^ z{kGb{;g^vn5J@!tT#N9RoI|%SL-LpX z0&N_!EC^ZltZi%=4R(`_%~qd7S1lXfKW6&t+!h?g1B9jvtL8#xw1_M0h|Hq~NK zFD%{S&C?d_#^X6t)<_A4=l2(eHNrkCz<`5pW%g1ThP8PUE9}|*-M_z=8<$`>mf9H4 z-Y?{*n0}At3}RikzcrrAjYGjsPiw*hFCT~@4j-nA{)zi2tkY!$>;McKNccLz<#i5y zYgxfV^S-Ez>2JAlt|xsA$uJmLLvwI=lL>Lj>-+l!uaMV^IggmTcP^&Y zoh?4$PoUsVn6F|qPax|X%3O^yNc|Q_0gS8P4bp}r$RI`_Q%%!BoUkRF&IaAERAz;O zV>m!E-6j@ianL0<>(gn+Qd8ONN(g+K4hzK}}Nu{+*!83P- z;5j&lic2vQun&M|p2qZAXuCe09$Ol#+;W_wXnDkMc`I^8p>d!!!uVQ*g}W zMzp#qH0DzAWoqwv0cI8hrap%*6L@xn92wF--eE}JMaRJMCD>l+d0+&O7X#^~anQ3N zgk*#Z{dD^4RBgJ0xd?4Cb>p5!hV#(C7NCj^+Pj=8PHtkvq z>`X?qh#o~}I0gQBX>6me?Vm)0kz5F(dLf5gnsApp!xgLE6sZ@7uQ=D^fNoIdFl2H% z72fUOi`ziOcjUIP4KrU$tdD33mPQnx>A+M};&am-IkPUx@;lCS7yKLP`rvkb4qd(s z>uSGb5s|*0#D;TM&ZNI?32_*}Tuxr_(W5!^!E|&Lk1>!m$kwKyaeHLo75suR_ zV-kecqEBuC%o||IK*3a96t{JN02kTrzjVS7{a1mD4W7Pd#{n)JvuPTvX^Jp+qdXYH zbf)L@6p!e$nJ!xa+yJ@}v;-cgY<$!&_|bur|3)m5Jd2ZN9s$Ln{`LJayBRIs$&Nmo zZtNd+YnED5ZO~&l_o2#F{iY34L5T^8z&7HV4Q$k>(=Vi*`}&8ujwfCJ>(gnJ$Mo6s zQ2%hf3|%~O4B%`V#R}r}0wY9ZWdo{aRgzxqTi$N5CT9UhU2P zXz9yQwP9%C+?7#BLFY`Mo~p(SbvCqkP(K9039x+i1LzEh1FpFj|9@ofSFhr6&$r<;PcSa#Uv7a_PQ7e!fmkXkh<5Zqu%(3c|=%Hs6K5wWWd zgtXC8d#g0GhZ`K=fbI!kAs5;590PWiiaw;HC>A(Knq~soYa!5qK{g}%99tgF&z)1F zIL&l=rm7Zh)F1#B>%rwFg1p4_x!{=CLZ>r55FA2*TF@*+k-2Qp#W}eIISYQXoPu3A zf(5~V%0gy*{M{}HJJQ#XuA1w2``4;k`mSIbAW{`97U}lDkUkgD>y@1A_ImVoeJ-ue z$@PNtHVeJc#(b=-Gs+HwjWo(8hXVn!0F8O7+2;5A9ls`KdhmR;t~J?C&~*}gR?sUl z57TY>7{}?B6)~pUbqqvS+gcQP0(X(U!=54Pst@?>o`qo1Jc7My4EkQXg?_wO%a2LR zSEA*uZp&yj!V&t>3X`7Fha54vwT5^Nk0_u{-=fV?3g*r8{N6Sy#@5JZa$MFin%Sz1 zd>Qd_k&0S^P7L*I;i53If7XB`L_tR@{e?8|gMOnoPLuT~Z3$^^5{6*Vs-Bp%L93>X z!R~j9sK!CHam9qF-*<0caAb`~T6e4V65NDQ3N)`|!AHPW&ze?(CO_Rm4*Q zsZVWMsmj>!|7ox}j*#-rrepxY!jku1p=Q);n!1%y^&RpHeogAZ{U+gbsLHWzsFjrP z?UtM8kVq1!YAEaB5u`1aUL`BsASdATO=0lV7J6x=Fr4!wAE8aVvnJOea2YQ9EvEU~ zNhDnuU(@PoploVJ2&ecWPXw8FjElAz^e9|k29f`*SvTmqys0u@f7pS$cddgg*c~v{ zisSiE>@InL8=DX;;X%nJ4+vxiw#_45Rtve22v_$b9X@iJ_3fp;EDzuQ7z&j>Vqk8pU=MM9p{hv9NE6s zaXn@XcO4cR&34p=tF}kddMpDd?1xg^`dA_8PY8 zApKFd(o|z7pp|AM!i}_YxY>??@q%}tFUx@qzI_&3)H^QMS@d;Z(&{?CMlG@#^c+B@ zLx)6EI~W&MQkw@cJ8l9B)h0=3t~dlQ=xl_e_Z9$LGg6txX~1`JTy=uq{7Ep!E8ebZ`sI+ME@IWq+?SEu+S*+YAredDF$V4 zk{dge#YQD-6Ot@0KI8$y8yo{*pl;Alp#lQMJ&ucJ!Mt#1fCX6wLmR2X)$0&^7a-@7 z;n>Dn?B{H`&+aggE|Tr;`@fUNZ;@&CQ#?2=PwB0 z$BIkA`Vr`a@i3ysny4zv%o1v}R9FQ_MA|X0vt`s#SAk|asxQlEsq@i*VJKr-Ph6BI z%5L#i(1HdZhPAGf2X5dL06N(8;STJN&=US!&G3JvM*@z70=4L^z(k~;X*bN@XkBn3 z0wz)sbdqKbV|^OmwX zsZ2XnU+3h<(E%0FrwfscLqYTeO3}r6Ik5G`=&u0>uw0JP!vYM`w23G?{3ZZDtk@YnH1CftS#HfwVU$_?QIpaAU%WKG@{1!L9bk4v{R zcT+y*^_;+|bxiE|_Mo^=p=nwmoqZt&XLO|Iv6wzP4i8HUwt85yHd|K{%>HTh(I)jmJeM5m?L~(s3k@pN=*d|V5cKp?0*BT0ve0ytI&MW zf-(96UV?_^kFh}~n^6eih#Loo__e zr^YcZ;?X14z{x(b4$EOAVT03R%JD}#>~+wqLHRAf1$KIywfff@q)-F4TezXX$9*9} z2ymS8F`Pc0HimcvJpb~(aTc}h(*~5}cy(DH*5y2?UM;4+7-PGDlE9)~IWgQ;<+v(f zk(g-bN}OpBR%bbci|NqzL3k-pN}qwta(%i%cfi--rIj(XsiY~|u~KQgXD~gsyr55~ zTYVUQg%m0olV&??M>wucQ{wvQCw+80sn>>!5{ww;{m4FoF~j}?Yh#qH)%M_H4Uu}4 zRCgO}ZZKo;=TF6Cr--Ru$&D6>v=_XC0w= z6S6LDY9Q-?93BA%C|}CF`aeEoI|I<(VDGn>J{5y3f!;`{ivB0YmO*tedpWs)6tB(n zAHXX8Dz6|gs4?X_b)gSP&B!DV$pj8RMLEzHnFfaO_m}0Yx=k$kp&W=K_LT`g9>)2& znVa2F^t-J)0*pP@AutB&?X8K!B zy8brq0bkCU+)U>Id(fNZwt{NMzyQ?X_N$#+$OKj&g@0j3LsIGoe-P-~*d_f?VS zOKqUUI(iQKJqlc;3Owf*V7gSbvBPWQlAwb~@qQma3Qo{=um0t#{`N8$t_V)hHt+jS z)%R^>-+zww>w&>s0YWmeMg9Z0_+{QitXCzC&>ARx4Z0_gqOrUf$kE9K+8s!lOsQBD zhD_9A(gz$HVMuc(MI&rbZK{!e zE`?|eXsukvrVXmhW3bV*Tq>| zbwS!k^Ty+YY+Y@$WWzv!6uiWrI@zU{nV{4&>9hjfo-5GTW4I_~+>?@ISn;^T+c}fY z04m=SR02sQF6eWK*T5y{^kE>bkTOzQ`r-I>V-{a%AkMw>@z z;E3j=Y#YZ)OLP>ff8YmF#$wU*ftR|iTxjB1Q*0wjGT$L&!bQfl(IDc)$Tv z3_u=)grXqtJkh#nN6-w=2pSMXRXKD?-lT0{bM6V?8QeZ&<TBl6;Jwl@=Dl!&}k|2{>+@2mCst zsN;&}BA{#Y=^Nu~)PGzw=(E0QY9Qs4+WBy~*AJlY4vgzF>93ljxiR{hOJ&Xwfu|^R zjO80|P`7h$N9(X&0Th>_x1{~H&sM(JHe8BZF>lr&2HzTkhDp5{mEC*<@dcaMqS-@C z8HfV2n&{vO$_&$NM+swijbK-}vygxU(A`Pbh9gyZ2+|5$s9G~Y{lnN!`Vk&LKa}al z+&I9r^_dbUwwC^|qM*;DA7V?;Ynfh<>!YpuOr{HUhjyB7`r) z0X)vlL_*HscTfS5B%L&Hb?uV>8k@BfcQKT9C{$D%x%<{)t$r6<+7Zy>#MxL&-PkCN zxUDu~ZSF3Zm0GK#O?HE{6X#LtEqEe&pv#4O2K@tK@F2&vkLGfiQa_>dH|T>y9ttF5c{k2l4dHa0Om5=g-r zf*#PfgE3$TG`d2h`Z|un36oxdO#5Sz!9+UL9r}?xJ(7#bVJdFW-TD}PcSQ_c@dR!Q zJuTsbc}0t1#D=_e+K@h-UWejT4>H}`JMNv_=dDu3^x1T;9J-3&qP;N(XEv<+OAq zr*!MMo1yd_lXDO9`4NC&Iu}+zOfb?K z5!-EcPw2B55x&)N|56mfn`f5BaCQ^01gP?sO^HrG)5ajcbyg}gb12Gn;=D&8C(89q znM%cG4Mn&f_bL{J9r*N6N2Ox3hiq<;Lon3{>08=|z!}x;qj8`zzq^RH!xnKi(;xa{ z$RvrIQrt38%@AZooIWt8D?|l}D2~7&&6-em=n!y|tQ6%@rmreM5cLmMt8(P~jO-Xb zCXN>9o1m^c!V&EnrsGsqaWc~8%LqiX_dzuRx$oZ~a=8WF$Op#&`8Pz9@^4Z(D0X49 znZ6DKoI!m$-5GFX<^lWO)@*07rO&2cj0gV*c*N8sTpbvqa zP3S?~v!JpI!A`#rLOUNf;SI6t2dXldBsQ)Qwmkcs&F&|~%1TvEazk4~Y+W$HmRLw_ zzh4Vf1&qKOGb%=&Joxy)3B7wpeC$?{YAby4!zsE&PDu20cC=NBDe0F?w6yK3p|0-E z#cl2B?sT%Vd!I2?y&kjumBL5*-6fYKl1maQ!sp&2D;4YN-PdQYvt(;`XK&ZON+vs( zrn?iZ=@YtplATNURnlv-Bhj_b5%hE?l4p8hU3HnZeOkarS8RDLZ^WP92>TR+<4r$|`b-kIo;Z%fjN zu2gSFmprsBP9#->ZsQ-F{F=}YUQtJ)E1pfar;|PLY+qYe;zFyJ{*zZWnC)wGqv=z7 zXY#b}L`DS%l{UQM!H(pTbn>*0M7R4f-BC8yj&x6VTT*%nb}VkoB-#N*u%k8U{adPt z5vjLbiPm(Yy}dITZ>Vc&Q{(LbKakJ(;WGxj(L1^mnO23zU`Mtm(W5%dqxmdO42UE@VXOcbXtm>^Rk!e#PX8SvO5-q4(_LI8Wdt2Ki$|=BcOZFs^ z3J2M?)=Z+^kBJ)W%qo;j3gg_7OeB}cqy!V)=}bbp=xAx{=}5R}XcgqdGo7v7>2#(i zohV@~+vf$B?P|+p(u!O<1ZS!pps>_|JWl!w?6$PIi0WufW|N7f=}fDF2NX~qCp@_% zp~k8xM|u!u}f z*529b6M;8DG7xv8z;8}=cB@tF(o#I_Q&d-XI^EHw2G`Zy<_^=v$cd;8I_OEXRG51} zQidfdEMT`JToPK`n@M)bT+-51w$p7R;bk`nmR?HbM7!c0$*x{JS9c`SnVxQMwPm{! znQU5t+OfE8nan=Q1rymsW`X)8`*pmlQ@F3ZO15^!J3MN{L$<9ok?d*fRK$=LQyp=-{JzMJiCM##~xySwA9F?4-Iuwe8~26mwl1-wz#*)oe%K; zJ)8AkmN)6YoYY*fqb1SZ-R7?4L`xgsrEGhfyM=Y66*91sWI8k17LQT1CQI1qXiat{ zl5QIvZJCaQqLmJxpgXc{%N33@EnRJ0={WvUGvo5-c0`&kBMtkEyRD~RjaEweuY9<(=?=Am zvgw}q(vC!22v6{%YP7YU-ka`q!F3Gw5l6A3;pQfsSpJiB8 z&t?6|cd+h6RuMy1w&Avn!bi4$QtkdM%64@n8|oCiJ&9J2tEiu4f<#X`+ap_nAX@hS zc&2l4;xsiDY#iub;Pf8U0D9WX_7Gv$C3=)ccU7u~?sTiiDdnSzX0DpWd}5O=J-Liq zw%*g)+&S*eWD|>3AupX#aA~5wwYx2oQsf}pK)QXgi}XSod4*WK2Wj;Fg7 z?`+FpajW6j-Dv_wV(v~v|>pa<>$YzxUc%X1XbXTi{ zbo@LholPdXimg2ZEXl%p(^dk(q zfVS($u|WlWyI7>322Fij{|M8K@G91iW7-mO@VsHEiKj{yJA zp5k+7>Fe&jzn*fNUw1;j!gs*Ze-&gHedu4Kf>PgT$Kb+Jn@@dmsX{}zyqutA{vBf1 z?S4aV!KKW*uv}GoFRo!8SnEsg3ve0p-fu3wUsL{mN9q0A^7nx|{C^sQ%l zP;`~P|ESXU2TR|7Cf}pB{;MFe59?o}pK1=S1+KxZ$}-G}+%Ha0&eyh|`y0Re>)h&6 z|K0)A|E2PWkos~_hMPrW0xlKqjYRWZe*ITbUuAW5jV4>fn9FRGdx@(#j;o#^t`seK zf>A=he`!7IZnvcq=&oRGxQM`MWNb&s3f!4Du;r7{s#4Jh*j;H+w$6ly0gwz zwE7A31UdTQbj5(FuMN`L0VK`3J?L;;KY?Nwa=3y(Vvelmj?_t zM}I}J$TDX6P&a!8{wqw+1ZxK)xb%bti;OU(?l2`g2sITJF&*RJb{({7DVrf&RoQH< z1G+dtpYa)M^8;?zL`S>$7=_6;E~Te|`cYF1iE&#DH}<%VNQTN?v6%)6r8#@hZ|VVX zO{$jqFkXTYBZ&G;%9fB^D*ghB^IFh65*BDMburmeF7SE?*R48H$iYvQE;SI9|b6a{;nUpRvkt>$*uce<1du-EP!ck!< z7Ss7vDY|vJI9g&Uj)3Sax~0moqjn>}v2BE5wi|@UyQ2kKNNf>spfoV>T?<{#h{Lhv%3(-+)qnHYu|;82@7R$~)J_3?Nuc|5*^zKw;+R=cV-r zgHEIH0!(u=Mg+ELI6f{OlJ3=l6hB6~P24-+C~jfp#c}-}XN&&R)K8`llxp56*=6GN z#hABxc5L&=j-CZ+@d&2<(3IcV=Ah%1UGTVH_IhlCfKQB#q+>YCH`t9Bm>8AFED3P{ z`Eb$)uM*tKVsQhUf*!sTWZFDXMvRP2nJxWTLj3k9E9ZXwSf;mNe~CAR{1!_3Okn*J zE@;Qn6Yhn+-Mre9S$B9}qqGBnV}G{5BlIJgHVz2ZpVl0V{PG-T{6QG$FpLZ>rhx*( zUD{&0*xPp9nR--n0Kb|j7&SKNCnL#G z0u{nK8KjI1A+~-jt#1H}eD2dGkbQB3!?r$+>8wx5^Q#snCCYTp=VEl{N>iCIs+m?a zfO&=wF#UoYx>uZVEScUXS5BJV9|C{`jl#h30W<_l`4RdTdB_ophtRz%O&P@5GKgJj z5Nr1}h$mN?Hr%8EH#R)Vn*#2Alfk`OfqMzSebxi_;`azH)0UN3pTjv!3_g0*{LMn1QKznIwG~} zV@Lr35~eSi)QxQr9tv@)cVMk4o82QT$_S92&>i}`Nhdl;bfLDohgV`6)cP0^F^jIy zQuG9b5^mH_mZT`&c65~vR|POK0pJtE-cNTsR0io0x>BN+eUTN%pnK6Sq>B~8bMDg} zeA|R4JggPOpeZb1pY?xFR;~~T-76i#$=cRWrt`|aJcKXTPTnDfuGNNC1o2#Jaw1|2 z$}!8>KO?qn(>ApqVwbihW9Q_}@zR`0PpBf^=E!sb++Ea`jt%|w6)` zHXi75qy=#IO@Jtj$*^FTh4fs&2sd*QGJ}Fw*S#{&Z<7L3|NNAteL{DUv}OX6`*ui6!_8i@G>aGmaNi}U{E7rq_=N-%e2+hPRn z@~4|HYNntg#(mrvftR}z!Hbj$lRdh11?bSHlWH8L z@ntEK_#v{3=^+>ecGh1kFQa^>U!yJkSb9tCduJlJ5Sab=0M3F@rq$YZ`kKGB%=(Kv zx{AEx6z^-4p2yf_X9WdZAQbSDP{6NYEvP8q72VNKrn66x6 zF>gzp^;Z{~C~c6BNDBQNgmFNA3HVk_ucGJsWqnHPM0%1KUOy6Wl#2x&8!`@i>=k*B!e(0vUpt-A_(M6NO$$ny@1>yZ&>i~Qip5*J@g^pEU;1Z z4VxG2bi0Bp5stp34b?+LxjO(+6)c$P1n3KZK$wbJA_8v+;xotwpY@Z;!LusfIHVs* zUods1j}9q*enl{)Gh80msTLB_SR1y?O=S%ojbjw8@Fld9{^0}nPYA?=;!Xe#gfL9v zus=}nHr7$Ea95ZPuf{G*<4J z`q50c8Y#Vte$!{-;ReIeyO{3ogB?8x+G0!l?AwBW?UV_&8nEas*1kO9|BYhW*+B~J zR+}zdw%ORGA5B*$yY^EJmVM#Pj8(nPuu6q(*s{MQR$f+q!WWaG(?92`QTI25Sylp z=_}I6u`=9K<@cijdDw`QmloTadt6@dng^KD^m4J}GKUdi0)PViiOaB5kQWiin*rOC zs^Kg0(#_-Q>1XQc%%F7oCJdD^hmEL!wbX^|HYQ~-r55%0r}tA{_rbYOQH>IsJTSn2 zqG;qmNAIFeQ=dk&q>C<-ju@gZ6*S~!4urG^OAW2UQRQ)=iU`^Mbb? z-|+h{q8clwag=LLP)Wu1pjWP&AnKvmAY0Iu08!Y8t+$zG!SgiE)MYj#nrNnjU+SX_ z1Yz1YFgS{}&|3*Rce?;|(_ONr0YF^wNd#;oN{!m}_8NdR%E$nYeFr)f3~jI=daEM! z`(bQ$j=K$3)4$b*N3gbxSxB})YEmc{Yi6s7lkzv#rS|n*Y^`aQ0P8U!WsGUW+Z(sK zQ?fORHToFTiZ~t_)B~L{d;)RQ^JLpqZ~NUp>W{}_V~tl}N2$P$iUm%Z@LFJcB~V)u zjZg7E&@JG!Sa`BJp{xpSM{Il=LO>S`c*K|$jWxh)S5l|4f3~J>lV+ys*=CFXf26$$ zoK)47z};2n)}d%X(V!7pB2JPqF^NNX-Thv7zZr@1F_Xz;CXC5U5=*HDE0f)zvi6D= z&<&J|`>wbzEwYG-Ys7t5lqjgExbI5TxPZ#{`=9&jRpXd^nfa1mW4-(CyUV%fo_qG& zuHnH^OZMv@Ma^<#AUl`jH|u3&McZ2u2bCKK<2|ElpANGlY8k#De8DrYR6bKIkcHzs-c6SLEB|`MMHO z0xG9kCJOwYU#eRpr}Y-(rMgl!lHP4HveMK{M9R;~DxWW@Z0`xmfC3Kj|FfO4wbS_N zc6KYN9Mv0?WnQKtJ!R=GFTketb+3Dyp3BzpKQ~04WA`S(k1M7jMOmMrmeC?rA85jq zMQK4tnQLEb!Rj)jj65=^U{;wp$Uz1FU6wCcqY=4GcD0{LXWTrq`wj&^BfxR+*K^7; zrdj|=kkU5UbBBUy1MIOu9d?z;Xf&wch%)I|2NfJvmQmFhsl<$gn1PZrXZp@*BkTMOLr&*YG^Xwk) zLp0=;y`I9OhW;DeK60X#e7i5&@x36MoE+nJO-47y{_`UmnXiln2wph`{WjY`|`re5Q6lPiK?x`hPG)&LRXw^;aPGXtj0yxi0q z5S!FY%krC)ins5UG&@UnfwynreH$~cPM>TdGAfR=QGOlB&L(tC58Nyn7Ry&-_anJ0 zTXOejTv705!x&!%T;10w-@gw;p8&h*ZH=k!>IGP{HZP}8WrE)1Z zpZ=`uekAYMm;K!Vd4T2cK)HggH*g0wx>?-9bD#!p7U~y&;|~iVds}kPq1cg34vshv z%y#*rZ~pY|z}=rAcMhEqpyjVVnQnJ$brsx?WS#YUS~tV}2_qbXF7H6P*O0Hi5X


`$4Xp5VrO_5JA%(MKQ&YL5$;On50&=+t3(MMMS*-5$z z#v9n!G#T8|?)C0K`89*{*;U}Zsyle?=hLO!f0X-?Je;jC>g52|85`M5x*5!^^)Z)Q zC5G>jd!*mpR>y~r_zy4d4s4qzpY;SXl)JsEpS4#%nKUjCnC+vJ;mtw3tM7B4SNYIY z+#Hp@&Oq(?16Oi$?6K%RFCVzr_H5M8Mpgg+K5gNX`JDsq^Rmr!Do~Myk+D~yhHg$? zj_w@LB9@F~Ch`>eY@-ie(-N|q80xv1nC3S31iDJCW8tc*3Ku;ERY8-QhEo>dI6iq z{V3=%ii#G?#u=(??PNQKk<53@0$OUMR6}{QvrJ9-V`spBTUFk)%1hi7S&B-)W?3|f zTg0vBwYpfRHJU1}s3A&A{?k*)CJAH5eIcFg#TjNB$@>O+>9;^@uBwYX@mNdjpItoHMdp$qkctdjhu;X^h-3dDDJl zgBd3CdMQ6UL;15-eyaU`*?xamNBKglv%t!?TKPLxUa|5EtlW|iaiG}9?_lJX*xl^} zcj$)6alHk5^#HHrcensd)38-s409q=VNLgpex+%^gAb_CEo_DL}> zx`sV35=S7p5S1^EbmHsln8$^^fhjH7T#+tvyC7uxPA;Jnx;@%J@-f+kvU|&jt>A(6 z%}YezVRCtIffNUbON@9aYC8Cb*lac-IrTfsNmkSOtmYojg~(>CVom%rzn8DL}f zt8%$)h0qvhhk6cWcUk*1`=xEwgK+6S=@kFOuua$ZAvE6pNFGfXy5!d|406ER#Em1R zWQB$#JVTev7wwUS^m7h|mbV|=y}7~O_5hSJ-9JSOi|g=NnhS{lz{tq=fTa{Bb@^p$}b0)NPFPxG{wz?FCcuLlVSWct@4S65sAn?-ANiXS#t6i@Vp-cG^f1}6A4*5M zLFVn3v^rNN@Lj*=TVc7w#`zpphg8W;-QOkkj?Ty^zuuZ(*%l!t8?T?=Nc}=}!>=7w zf2`Gyu2lSwxYTsLH}gr4&n{|9+>ddYzcx^?h}tPxp=IOKuIr_FlrC;EU758sporw5 z%)tEN6KJ`kGb-QUuxn=_(2+Ef%OF4-1k(YDC<2N0sfogC8ZI*ATD5P#FbBR^fQ ze{PhTa;@Vhq~r4jgno_8Ma&?0a20~f2330tp2Vtw-E2`)0b(q(nI{tMxFBu0UKW^p zSg6^rAo`j_X_S%GGXI4tBe1sm)g;+SKkm4U9DqvvA4=}HjGDuU%Kn?!CRT8LZyC+J zPx+N?!AUo?7dOJxxJmN&akcHGjmd~6$?=>z+K+n$>iJ3XQC*z+wXLhwvnwb1HJV~0 zZE0m0+BsDH(!nKo9(!DD>Y$-9n&>=R&A*O)obxK2Clwvl;_0fAWur$$2LK9klpP&BuzJ2i~y3NwV^* zPgj^}JPGnwkM|?Ers`tlCdq9a1!nuXz6ZPiZE!ZB45^^;`&ED+5b4F_r&E>`)Iac-f)Rj=ZovbN>rzqYA-J#N=6n`TK|saQ}bkMD&}ad3m^Q6Sjh}Di8RNRwW-96G!=He6+D{lk5h6 z99rrSL)v7!wzs4x@<|Ovu;@&Zr!qAZSyrpJz>e{Ll@{1=`BzL9(qhNJ>Ai!`2|?fR z9RT}uT?}m8*%|p^0QPwt&K@i4$m;97Is7DaNYSz2Uc zrX;&pd`@}Usl=YijuqW1uXfv5&*tb}i5ZBqwy^y|(0^zg z`&5VW-({5}3OFRnzr)GNztA_CAU*HXjuf|ALwUD*Ku*fW=yp-09}rYE#N+l)*5PwF zXR_z`<5=UI;C`Z_9$Yh~F0EE?lt0?CAxJ8&22hyl-=SJG6+}E$i)cLhOwKHtOBkFY z?lLko?pN;1WYwlAx89-{nr;g>q68*_w=#`=5ej!XL<`zg9;`zVu?d#PHL6_bDso>> z8ALVLZTTq;Oo1@UY(B-=8!Yane8-1xnno~r;~zLLLtt0bF!eIpd_V%DMp=*>Rlh2Z6ygl1*>dfBzq zW@(Y1U<`Q56t&Ou!1B2YDWsx^bzWiW1mN9I(yZ<1*D+z?(uDI;No7`f3X}!FB=DgE zdVOv=wgr&u0kS(-+;qgmdAO&|E&SsPF#`9-m-xj_AXZD+5@ z*ou51mVXNDvNx9VxZZ89QQo%m>@nBCbpWo>XilqcK)eVOi^teWt|3$d0+L_FG#|su!!I0npXnm-Sn?%fK^YsB zBG(|-b=jW0mF$nm%ZHbfG=#kas2g#L<{$X=6!~RVV43&42Z?`Y;OJ|vLTuT0(~+&q zqY0fX7j%`?_QI1=a+6igH~-E?c^P+1x1Y-Sa{{h2(NLRQqr5ky)Z#s*PAXpGWq^IVW^nHoiUng^BhVHv~;TN zq9utI1$MxIgh~k^Nd1Gk4 z8!*ooXB)`R$TQUt5k`KDR)SoTKMm9_W?6+|@{8DAu)bheI5NOV#|uFn1^L_>a_=?S z4r19iYACyv)k|K|!l&82uM7jQuRg%x@XUdK(AH`#|O zeL2s{e8bpDCa`rD$aK`u*bpdG*(Yw2gYo(!GUMOT63SO&eq>`{C%c!hh^Ty}B;7$v z6J&H~44vCy&Gx9++ZMC_F?v&aX-o=H=p*{i$#PqD_BZ4VOKix z8Pj~7r#fJo`dp)203hV673mF{q=?$tDwCK|MK;w|^Opq-Q!~r5k8Q&is`xuQnY~|E z9G!cE#@fohQYB=ks;%tHb9Y$TQ}i=e_WNa-QCOgT@|)D1X5@dROKbO&y2zZjW93#A)8MlB`^Fa2 zBt1bSUyt2*dCai#ja+OZ;r9b}l1N;|0~qbJ*0~z9T5h~7>cAlD8s)=W45};yk2Eh^ zdE_lnc`p~^r{oTlySZh9qHBghCR0kh2e%A1wKUn$>Q}!MV-khLRH{q?zSJSx4Jz#FOQFcP zp`J_AwV^&m4=U&Nrg^~E719OS%{bp87Sc zJUDIYlWJ4cbDVTD5RqOShEgM-;FK8!8CP-D_sm=6?qPA$RE*g&H_+x5 z-RNSFAklqJbvcZDprz*Ju?!9^vC7Ha0kC~F3z@ZngP14gV@0ju1-_XkBb-woYl|F~ zI+Kr|l8*bV5u>=^HJaiVG1RGTQ)NbtPp#GbEj9b`Afaj-Y$;nh8*8h0i3)6J#u0TL z2&!^*eMJw(UU*~*v5CdB=lgtnq2|+DhnLpgp0g7N-+uD!5#>Rw{4tY zdDCrHJ$9x~t&X8yKHOsCz8yKO+JG$Bc~pI0r4_74 z6f;4D6wMftC$kuS16@*Y)Mn#MJG&U`rA9)ae2d&9`P1P+Vw!AJIdY+5w+c9@Q_tsG-W?Wjdsf12x+y*BzOh zfp-tDXe(QpZ6ddVl5$;rY(pz5K80bEnrZgJx%}FpfNs| z9o4UPWh(v;3o|%Fs1NNgT0BIk{nhcWtA04Xp1ZJ6t3H;gxCU8~;dr_@hqIA}vYLF@ z7xolP;>@>$kF~wn{_~{w@%3_4W|VEPs8zld$Unr;zr@Gf=yyk8x~|CWA~&F4(l$3f zxq5}NYkC71mOJZ8Q&di^kL49Mg<|rYz72*?^MQs{Ey3hp)H+^nz{elqqO@HuO$;cy zq_^P4%ae5_SNh%?QW|jXjnI>tv52G40pqJU18eVl@{<1UuMJ|-PJB?x$^x4 zE=O93gnH?OgvOOP58NOLQ%EwZf9iYmCcI={ZW)J?Wtk(-n_aLN3$}jFIGh^E5 zK}5VH7t4l@pq0I*a!Ib@=e~Hhd1*0s`?CubKjnQ4d=czT0bR&0*4c(n4r6- zNCy?%x8#@}=n_yIuV#NRPQdg^A=gB>Z>c=kUH07Js_Yt`A7Bh}MYgm$;&C01Dg)VA zGHY-i%EpcETk>#s&_ttGXJhv*xtTV0?8nsMH1Kfuz-P3-JX>1a$m{jK{VTHZ8uu-F zvt}1$;UicSRU31GS~ zQyR2rhM5$h-amsreVzS`rwZCFo$4B-gf#a> zP>bnw1g4p-0(f(+om<@~*C7AI?jNtx8e_l;BW-Q<44GUdvAl?5#;H)D*SpZ)hkk^1 zxk|@+;~D+c0#&-RY({mQ_42A4<#v%bY%)*)d{uT)d95?hRdl(+m9Q#zqV01H*oY}z zJtUTEkrU+(E%8h4&{%Gn8z9E|iJ#iL-s9!=y11nU0upH}92EClM*R@8ve|jZt88;f ztMh>lj~_br{KBXiUQ@aTWQeIqw|5|^G`^HK^7?qrz>1eOpwOJRFGG>4?6L&pr!3BpFkW1zU6eaZS6V#WsyPxoDv82OjguI)J&4v0 z23EE{;0c{onXxUKuv^RKR)Ofa$&^r_I94c)ZHXLu1>ooTNOzFf=yTuoi8SU7&);&tk$a z`f8_>YK|_Fst9oITXJr-wP$>_bL^YVLrXNhj0cs+eZwtDvu9B%PY;ca9@9YD?o&f) zmw8}qZK*Pj<2q{qSvbrHAny;=A{1>Gm31=<3IA|)J^q+?%``CGQg1V|^V1EN_vlz< z(a>01P{~2laa(9-0J5nokP9VlX^DW+mYE5Zmew1T-l9cWSYMJX>14VC=Jx@GDhujk zkjx5YD`iryk7LRB8PZfb!(&VkVusTc4;OGE`=6kK7Xqr@K6TyIDa!*WbJXWeLh|9- zq$v?wRSl(AFEAqBI7N$1Rfuh_eg2w#j@QZMnUXw$M`K9>%&mCWMUnIqum2~BwY3H4 z%dlA6Ox~>+@quS%Z0i_M)AC2Qo8cS0#)Bzu z)aHJ9vZo-+V0$+A1W{9~9NQJhn`m`aE9kZOgu9F?Hee)16RV5SX_4DMfi|ELy`1RoxO+wy)YE04fB zynX~4q5V{@@KUDA245nV9^tugnNzM}-pZrX9@f(Xp>=K&4m>_H+^UU39G*?+ z-1bv51Wz)D@h=K;_|L~86%SyLDQhI$+qxLmr6Zh=R3)0bVVD#YdYMS#ax5_ohv#cR!^bLp> zK;%UfJ#^j?K)xjt^I4j&kGOuWo@DgdadL@Wk(uWntAjKz>tXk3k1dug)(&lNAsgBkW96!J`C`fbYx|X;lS3jF!VcfI ze%FvBblOklZX$MigNk>~8~xrAFDOhPj{=bY9>S2_o1HhOyO|6Me~VuZ$lt`+)V_$a z1Y*?ImcSq)$6YZ}Ikc>OGBeFIFnMu0^c(QQ5m#w;Ir*pxjs>;}TQoex52m?D_Vg8T%||Yl zzb~PUJxG>8mQbfYTUT-iS=>Rhwot?0z6@?I`l}VN2jRg1BW7yK|AboQE%MGyQ29d4 z`#nr&z_ElIwjYGCe6h-q5;f)oP$f{dSzFp&%-zfhvoiIsABo&(lV$BgeLQO6Oj`wh zA>B`qBKoF%pePe?CTsOsDzxY(XkJ$LZi^U6vB2B0fX-q#`sI62_VE=KOa3{iUL^j{ zOjKGnMTx5qoDZHlb`tifeBICa-^}HYC_%FW4u{;|1d;ZBt@fJ?R5#bf|Dz?gw{6br zEd){Sfkpu&3i}8iWZTM55*;qa`;G*KSSf#tSv1rwnz{Up#RkpujneX zEL@cxx`Vhjo1w`-Z+Q@TnYT2>!aJ+vr44La%s@k(*2dlmRW|gXBaq88W^a4OXn~yX zpE_-NA?`N?BV>nEX>a@SY4d-|Ag8$oc{IyPU1pr?#(vfU;LO)>KHl^R(cW@=^5JeW zj*L({SG13~?jmx7vA(UJE->tqpVqP?oRBuLwr*5?pPP&KNzsi~Ica#@s(o%Zm5+{O zz>C}GgK)KBpO}7n51(ouoa^g(&a&O)q}c_FWHi0UR*BtiG9PCX?FVLN(%6=v^r)Ty zPNrSS0THUXS})O}KMA;UwXC7+T#>E_RpPL2o}f z9o`2vJQ-1u4wEXrf=`DQ-EP`O*Q_{(7F@&=mM@IjBbSrCtYQcZ@)bFvTs?2boszbF zY-Uvb3c^1^?&8HZmzQsH+_Py++n^yI&kj`nK9&QRO};`dPRh|``80J@XRobB;@c#@ zDJUC}>GGzi_zC)vLZS1!X!yA8$;a#~kfU0Tj5IZ=kEDiF`!o5~5DU~=|9-^T}jZ?0eUb7`(NcS^On*Q(7uQEl#mw7FNR z&7C#4xi1qU!uDb9!X^#npSEdHe%BjR^#xnbOyNuFoIdTN+r*cuA8w?4h+5WIt{FyJ z4fEvU!NC)UHX4^zy@eF}{2Km$A>jRW6)+I;I!(jIX}ZzG-z88o;ukp$Xqs9iiwsqM zQg#ipDH{W`3%ZS2lYJ_3es2NmGx^f8iO@OuoODjBGU)jGyjBCbbBxN{oPcgO&C9Vp z-k{rtWuMign6)g&=JwNn}wN9mhD;QeUkB`EltF*R|(Cs^HT_4FL(e; zuEJzsXbi^dJdCk{9H8=84?^|iM9^~w$VMN9y;B^kOev@gEy?F%vSZ4jke7CZ?Y2m+ z?giwQvTr>%6sUE215Lcr>VD&)39nPq_? zR*~(1zwL!R1$hGLbV#iD^GY^0*E)_3q;HvpDMES+g44$btjaSO7-e~;6M z%Ual`jYJ$UAVNOKI^a9|xF?Xl47N`GJ;2&&lx;l$464fkch*7ka+00SkGq_l*d4&% zfpn8q{$$e40V*GPbSdwME?av7&csmVqMm?zZu?|)Cax}9-Nos$Z58%9`DaWG<#KXO zPeG3FE#P5)5b5vmSUo^qk&?^FRfeyLvi|^;wOP~DbG}`r+|!F2duYr~5%l^)7kaP* zWI#$Pm-TYEJX%*$3)jv;Ni=l(5_S@9atFx8-$BxGIoobU$MlavaAAA07;cihmgYY^ zK;D;<+gI*rs<;E>_U~BUsq30zjohd6mmZ*U%Xc8Q`>NdA1TJ4qb$)X&K}!x$S@Rvj zqBafcpwE@s&3j4edpsT$be+TV!_C&E4Q034^P` z@w`h1HStcJwefhyx3L@<#oBmikZpEF&o;L^?wV}OMH%^Z>h3f0va~I+B+vK4LvkC*j6#cArfj6#zGNk|Pr2`( zlfxYPF?EF6*J9W#?Iv3fN}@gTigZY(ZNSBbxC^8Y$gVYuu5dA}MDyv(;vov@(N$~V z8Tc?-Xmbb3$3{9OTftZU!|ue`ihx7H-sIeyygcpxP5*JIFjqz2Q%$*Ct9P0mu8Z{$ z_Z_^*G^G879bn3eXnu8vPQEg2_-y-N(LxK$UEp;Tj6-@--|CklYZwy4 z#P34P@_!gRHkwwcpAR+6%kN~3np-F7e%WmBvc8~;gXIpjuY& z+fUUxn_4KJKq*FL1uH&P>q2ThF{mvoxb#!C2B`IiLA9*lyie6yO|AO})v|&!K2_^l zYTYrYmKB`%sak8PbZdFKF!6(M`)bN4qz+6C* z*0O@PKUM1)+B#=Yk5=&7r)s@Sty2fpvV!M7RqI`9Eg4kH3O0VK7Rg+RGfc;21rL3y z*3s}QP`2tEt>B(&EzOe}jBU$5MgFO7;FJ0C)r83aPpsf~)i2rRn|!|XlyjvP3Dn`* zcG$uf&=!sp)lpc%W!1JmYZMG+hw-2$#oa$`!wQyG+epT98$De=Xw+6f3XH)dz}Ii5&+65r8t*5NG zGVB14GV;Yob+r|+0+hXjN4J<-#4lI-wSrr!{U+;VajeK&)mm0?eYKY6=<3(h>i$n0u3^vr;aB#Xa+GXEw&3W5=jrEMMeV^($&UYcsvXMhDqpL} zEyx>kSWs0J)ZLXHr_ahLn5}H${xGuoW)FGV^A1Jsk#Upci`6W*d&nbX8&(csAcG)> z9w{>ZsEDo(4}f6=f%_K(6XtoHU#Z2GDeOTFTUrpN7%+|S7qsBG%eh{SCiYgBJxFg1 zWBW-Rr+TO>G<18Y9NoK3F(Y>t^b=zuR%l)hBV7}MQ&pw4_MT*}d&mW_AudOVU6BTU zjeHry8t;L%;vcs~i?Hqt_dM$4d(#g+C)Zpij5>hReGy9SCdrcw0(kug zu-%}tt2v+`4U^AkE|FfuG}<_}_tXY*RF-*xC+!U4XS^}UsobBb$j<{pQSfB{1*iZD zv?Bmp(Ubr{n7ww16atI_)clnxgn>5NJe8r_z3_?}4OGp>Bx&d<$WIC~CYD1m(8!l# zl^@bYo8rBZDJeEl!%|C7m*}pPJp`hLWYqa>CT7mJ_5?hwHO9N>_K>@bntSLX7@!d< z1caa-5}@esD2S90tf6f<$Cx0Rm!Tza#qEH>Y)i~BITWjVXm)SOZPj8w+kmYTYJ`mz zTL6xgaIZK+4Py;s?c0Op*Ul;4N~2xq!Ib2&wJ5TW>MpoFjGru8 z6DZk;Z+OSbE0`0Bo|Rt&ktr`^R+-nWvD-s_Xo0;usf@%k7}y_<{E8Ugs@BRqSetqA zTN~|8Du3t+cpk{aJl%~Vfamo6UEMpR7288jr>4BlXN2mzo#b)*eUX)aV879R>;(7Z z_K;(&+`93-a45PxI40drLT<1q6 zkBa5Upe=P`V&v(FEDCB3l_kcbU>z0G$n%-BW&z0O)^z zWXMi#7tk#))7OJ_D4yQvDTAVHU(;xTrbxNf|047mD}dBJ6MXSbC2Yw2A1E!P0_KJk zXHRsffck7Znqwgfkp`8kN3i3W(nCiC7{tv+oKV`jjp_HBOoh~EBf-Fse173hz`jNxE1J$eU1 zwhQEmgK&((35 zFM@DHRma+u)z_o(p|0<%xSWgz9Y-gv5q4oCgRz1XO131wN?j)=Kan&)TJGiaA{eM2 zxq9q-$-k-j2LMS|3e$<3(k~z6OWmNwY~&BuWwmz?eEMD8lj(O?nudI_Ta!_FvpaC3 z<%BF37swmk1txGpB7xBLA`ROVG+m8`an80XQmm{s_bf=&ucifj5;>nX&NnTs`A{r| z(B#zOjqTkA7h`XsdDtp5tu0Y=ydx&m>a4QwF)7KMvdhW6xLnZi)sQ=t?t!WnqweW+ zVjsIv^()+DnN76DXq6Eq^ruG<2**?GCTpJNM$0gMTZ%5j$B_5KFs9&FVra;6Yf*Z( zVN{=N8W5|Mw=ZX7@3rtWzT^zu4U1=}`Pf~Mkykp|kt=xj5zeEZhj!5x40O92Emz`Mgq8WR&H))$a-*eOE!o~_YxO(c{(FG!8TW!) zOeY80|Mf=w(ehqh1!Xf9@Bc0^{tH+}7DAr1b=W{Qe^b=4kXt)Z=8jfb;NWQ_SAiDT z?PRFbrn#Iv(S;Irw93U2FVfIZ?N;+K9j)^FTpTe(_}fix93}&kK5Ts-?g1Et%eA7?h=jNIF(oM96&r`BqoCtH4h?Okiq|pC=@qYt^iWB zzt*>p^$P4_`lCH_0W-HRYve}DTB-0o(efVBTW#1IWFflqs=`jL?cG+Tfm>ck5&cT_ zbi6+~KY%234$eUPp}-04UixDC%`-Xw4Ru#8sPf~RYZaCz6&Q3rT2O6b;!9~0e^d-V zi`@komD4+zxS{x4xmX@H>CjF~ruD{L-WJ_xS)D@^n5%hNGdIBrZ_Zb_#v=UCyIznX zz*dX2=T)UTt=;V_SKuV-Mr&SPn8gVx8TN-zuV@5kJtl8s~pWv4@yW=P_SZK zTe}VD59xGQXbcI-?~0fZ$=f}tf5W_2Q#d|Cb`I?`RJ&(R!Ht&R4dL)ulTo>APMMy5 zH^flypRn{*$K48n>SOHrk%QKF;%jNccUi;z`e-t=MqD({LemZ#>J1J7vr#CChEGM~*ZA8A}AqIcQ|nbZG* zh^pKytWSQb79kpUCX`EVl=x6+e=8Gth%g~0wjy6*M9|AT)RTeommdkt8GLS&hBS0T zPnj10Y_!TPCWaQlz`SJExSTvU8#!mR%Gr4f#Cdjhz|*q4N%v3tr}Og&jkL4GO(L8* z5tB#DGxnw*<-nr36rbM%NT0G|kUWgtSb1%3V99`UWEv}yHtlop)tbi;MgY7Ut9hBZ z%}qc#?Q(zF32d}{G^FGv$hTidL67&%U!qCV#KB|_eg z;k=wNcbj@|vHjU_92iMG17{0Ke0vLP;8cY#t4D3hep6d;m6NEfs6_OWWXyV6->lw5;J{hk#0ExqW1oUyQsA;Pjr8 z^+|zT3Mn&!l;4FBidSfuu^G-FFSFMtT?z^?U8La?fjMT#-1X!qo{iY;aw@-@<2#WD zjcVjnR#r>y_a++X9#oA57km*ldr?L*TM;0=JFTKVYIon1`(_0i=BG8f?-9hxTQ=Cu zLt_eVoMmUE=^zluyy|GQyv+sn+8((BpqDNukD!yow7N1I!`QQ;%X8RYA10}Y!LbOl zY&7-kIfkOo4OXmE_Ba1ZuIc|`i1rB0}9xaRN;i=k@S3u8aX7kF>Q{|}oisBJ~ zvLJMojLOl*$sTQ+kokv3na^T(Sl7?zDNs3ccAzkc>3RKIpZ(?xVk+qAso09W7@M_0(5#Ya%R^$yvX-R^!q!k}Y;V8JNe`=)A15OlEoWIDf5?Su7iAso3G#No@lln*^-PvqIdmBC)Bdw%$!Aab z&+eLKTjrXfL_M*0>14QEG0Pa$4MU9wx@ktj1KmtE2&7$?Q&~3)FT4F!$j7%6QZr5~ zp~{zVz__Rv{^K&JlT0Wn!4Tl{ds^hY`rQoPZX<;Lzu=(cYuhRAo52~em0pZ#Sy1ix zLyG*JLlHV<y{X-PnG>!F zs&k{|4GW{`Q@kS+F?<^E8V>B35zN#WoO=r|Co=uI3k+M&^P%n{%3=1l2rl zLVYSH3&|ro_!${D|IHjsA+4IA|{G(8t0nP0;=Iq|@xtwgDk({kZS)CiJb#ASX-6XkV z292K&hoo}$hzgGE#~+z|vBmIXnwumK4;sUjmb?K?{f)Jc<>C<>ZL-rEH%YD^RQq-t zaRfxjo^ipTPi~?iR8?#Vl-aBa+%AbB6ejJQnSUjdHkz#qUP(K`O<2e#N65P2DNx_6 z0#&li{G369eAWiflokyd-(!r=J1*xBNm#L~a3q_Nh<*2Cydu?gA6K{}J#HS6_IMU4 zNl=6_vNr7_uY2W)0XJIS83AgxyD75Z2m`i!IKr~*_gTypm?s}lB9$Y`q!bvfGH)k_ z{n`;hy46nE32bN~!oHf=Na+p}N0He)WOGbb_oSUFSf)1D8c?}lr;0B6^WWcA`(Do3 zsUq#Ex^LOe=`0^*mK>*A)Tz2c1+8fd1`o7H`1Z2C{TeRRimpiF$$lO*L(W)nV`D80 z7BKaz&x;Su<5_lIL;76lEgVb&Skxjb^eceK3TMm0Uasu3vB$WS6}9Sol{mqV{9M}NyR_Kv6@K66#M)oQ zV)MG$q~9;_+!$-P+U2Uu`Eb>jL1h#j%1QtX?xvz(# zDm)~c;MkU0*XN)XmHD5V%#FRxEMH2Y#5i_A?>IWi--{pD5ECN3vu_VV`zQ?Q0 zbtNxT3vPeBb~(_OP=SCtt8oQ2-2R#u{4GN{JUEo&^BN8SI(@3ke4oz~o7vM{f%ftK zJPsxQK7jE4B9MKNUk!_PL&MfD-^Yt{r1@r#jODPvO_ocf#77(XNWNNTPGn`ZGJ#K%qPUY;vpXAf?GI3RTGH#D_B-f%{mm^SGSGUXF@?hOo8d}L1 zR351_;U6}R&EC$d;~0`3<83xZT!@m6Zm*7!yxsegQx}}Mwue#OX_a5bF6t+AcP5sf zu#tA$AY&|5Hrt~fVj32zTYcW>>d;j#l2OX1xW(@;_twSo1%FPMq4&_n#4DMMV)FN~ z$^j<7|IqKmylko44)pwWd-iWtS{Og3+KF6?4QWZU%W>yX(u-O0atakukIP4Aw#&7~ zsvX)Wch|*g?rgHrc2FdD7^z5Rm>nyxW>F6J%kQoHAU~k&Sb4$9f!68p54KHS&u+(r zIe2rwo82z6$})rlBIG&=`F21`2>1_JVY>|?b+g?wnadbyCe}$RZXdZ?_%>>FW8@z8 zhE~&jkd1Z)R!2C*J8|&hVt9%uc&Iyo4WiQJ*^(RMYYZjNsXeP@M=x5aaG#Ghz_s}q zN8O7%%O)F7H4&M1;2ZiA1rkc6mGZBtNVoJ0>9F7N1h@}YoO6hvp(i!FU#zRWz^yRU{O6bp)YfMI zxLn^`VB!SMOd^|t8zYxwz^yN;Y_y>bWJzeWugZnt8jz3awkxY z2nIzvZrLZD``uaM_I5@f$fNzeN<;lfTX_gcY8tiLu~szWAuuMe%CwjkSS4SL<;Sq` zbS{pQ8@BuC9&*Yo%Njb9ykv};J7_4g3O=h651~RJd4HAHy9zERc1+VSH^J? z`V`)=%4L2guVe}3!Z1O84Rl1<`db8^SFw{nZ$}A}0AQzraONEFm-3*FF*>_l<-WQK zeVtu}<8ouQW0gm`433ve{1>`j`hV%#Huna3wx{f3xuH9m_PJ);j#ZxX(+1-X|4Y+8 z2VbuL^|asb33NN$!gmI$`)~Y&bpQPx_YX*OYpPG3UVD2hyOXzyPu_xTB9g7E)#$_Q zj3Oy-W|84*P%s|d3AOzMV+^uVciGg8Te{g|$7SP$ZTw7S<`{W_b02+<*I|Crf$a2l zHU^cJ0x|>+4k}Mbi?-3HAj@_qJC&McTh*M($DS%3osI1d5zi1xrsU?zTODwkwFq@+ z>>Ow@XAY=bY+*K!b}$=mqwwm|KXeq_7`Z&hSu$LH-(^UCEBzrw@x{Y@p>icv$X#e! z3yT;#1J@GU+^@Oq{rIrSKb9kvy*ZeTUwz*;l>Fp>YCwNhsKS3~K9sAt^JCYOhqAu#7BpD+&<}7i`NKcbThH0BG)Y@E`wmHW1`o)q) zn3mnXvMNBq>4wW)Ug3F7SVH}Ir+>OGG)3?2{^^FW!n<4j(~V&ww4L$KWq;gyNconB ztGo~Xs4OxB8cwDhrm@7K6Y3i@gC~sTSnT#qeBL*>F|yK7L=GcH@U%g7@3FcV-jfN> zi_!@ni$jLnR~7^nH%7L7mzYsRoHMH!rJnYyJfDqWQe>Om^nsykjF8(VaS3OdkAD|-OY$Y$CH9rKCj9>c z^B6hy-)Jz@R;Kh}SF%acDJ_&38J3GvlA&+N;oN?^ExkvTv$Z1MPva|>wWg4J7@v}r zZeMPJ^h~%{ou8142N$|Aa;j|x$(YfQGs8FyBk8T2e>_6b`!#f5QzR_k(!&s3O0HsI z0nmL`l2e(78Oo09ugURwzyUExt z96#;SNt$ohFu$udqU#{~e@RAVo4IL?QBrML!8@K79hGRR|RQ|rPt&w z67=A+ol{vgn*a#UGM}H1@!MEiXC^dna*Xg>x(_u1nf>JlLGn7L{ERu~vXFq{v9n>d>Xq4nWVk@k*D#p8l=rz6v)BIHnvQ! z&xQ;v&BxLl%fAH7;;q>L^3yAHB4o6>La<@p*~||*8MFMRV9ietGz{d3f^Snslg0_W z=R$52y)cL=2)6*j=Jw_$UYcMj_Mr})9wZHO*XU(Y-oJ6N*Ad7 zpx_#0EpJqA8WQUw7QRWtRWfRm{M@w6u0ihc1mx-=w&D9`p;99c4ja)<^LK`p@Z1B< z5gpw``PioS!O(cBn<$HC8I)ceYU__qfD@uYWpxLpkTJL;SH+sm|CTPs0&L?l26DR{ zs_4ec{V{8m{8GjHN5zBvau9%f2!O*qeOM&ttKtbrhF&}aZBv!P-6DM&K z6DOyY-=i|Nn{TR|a3rb1FWQ}nxG{3~tbi5x?NFQN4TmEREjH&M)44GG4@qEb(_c6B;pBPpGa$%ww?I(HDM3sAIki+RRS7C7>{GnziLB{(y zb1cC{JJ>5&!MQ0rN&K<$`zg@P7lP5BG^b4Rm4Rx)@G&Z{v;BB?)|^^6+8C85hG5%d z^X1vL*e4rQ*3ZI^D<^+4Ji2~($u(%UU0#{F&E-%idQ`n(I1}B7<|;3@9J!75ZnCoc z6MpMIGZXIlY2&NMsN7~Rm*B8j3gF)57w|Y6WjOm29zH)+Io!yzYpKP6!oR!+rPmO| zlNp6J?sJ0KhVRkG|M|JbiBV{rAF2IhL~ z2(a?{*+JyKDQ6u~plo3GDssv?kms{eY4K1{sa!>+kE*CN-=oqtk4g&?RN7iaB@0Nh zQ_L<5{CIX5*u3QpP!Rt#VfoS@RVO4z?KG;sZ?X1y+ftdYq5#kf0**OspuM+ zRjwK)C;vG4ypoYO(2xT}go>QXW8DG8mt?u#DH#^#cq zlQVt63q#EYxy(PEpN&h>kuJi>gKC|AWSx3m9~9$2$jRF7a$cUsp=eo;^?4<%w_*=- zICHM>k7V%YaixEJ&<3os%0E7kJg)YS_a~26`N#W`$2I=(-sF+2|2es`mwx2oI>HAa z)8wP`qzz!PopR1M`wV^#?dJglI7NS4HNp$Pxm7?x0dh%CF41Gi|RT#mf?Y!62M zN8kIgN$+oGOD#l7$y+@Idw+bUA{!)@#;5XXz@LIs9a`cCv;Y4eJjDuFp(}NzfIe_hv74nt8LBI z3drXY;x5ij2qEs}W@*yASf=TGd#mD`uxl*r-6K#$K&@7LYlsXr`^LPa!KK*}*Ft~Z z;D()JXslrIAA178XgZimM!XXMp>LIpyq$^V#@;l+&Xy@P=siq4nWBS{o3a(T#v5y4 z36dT3Du~}diDMg*vTr9iA>`8<=>@jrISeD+zK9BO`?2O8tU4i_g zw@>IsU7`JAK1AQ~`|2Ijrox>WdoDc%PGc=fr@sX+TCAk8D#{O233*(pHn7)iU=RkW zL?~pv!!o<#`CRNq%XJzvw`=FJW!J&4yZu#e!9Brhz3eQ=C`8{;tA5K|^IE-8;R}|- zbyGPnOC)x4(9jzM(m_1zVE|Y zb1m4x$??Ci)&QpaAvh`*_X3XakZi)xZux0#q5pv5wx7-QLT4Z+^aS!oCg#7&4@P;W zGZOQBvK`OjQT{mBpmnT5F`x5aQu#QpAI`~J{`FFO{fvDn=d#_I?e*M;KdxjWJl}&r zp6n=StCgIai>GR{Hcxf2JYg_bxsX~K0*VX%kDz!i6T=lGBLBpn*C6mJ5I}W>m&_;T zg2mV8nL%uz18%!E8Ru98LgoJxgh-=+ zY}lwpZDlqORy)X!l{Ic_i%d_Ci1ELw&EzsvfLhT;my>>aW=yh`m?9ZhQEA6wH9vhZ zkN6jr?aBPk%*FDHK*{O(i-PPHdm%v%O6_c$2X*ztkWo->+1L@daVigGp$S)}2hF9q zxCQ+@#wL&-^OF1nI`EvzC3Dze@(666%H?xFR+T4*#LaEW>6Et{yYf+N-W=SQ#3pRj zMiO9z*(8t6%3s$e{(^;t;3h8Ky9N~lCx;BRe}5U6sTSQ?qn+Tp#furq*?w!h$ktFf z-JVolRi95%Z5;545dt)_G7W!kKtq{RmaoCC35jq_e}pM6w14r?`hN=9#JV{CH??uz zFmx2uY^!nLz@^{AV9OjkJMcNJWb6*qoV-0JkSF~ad%fpxpG!Y8A(0R;Ch_8&z-G-R zmeYsC+Dagv6(-S0H<+wNgyTJPj5wb@B+iaZ3}w@6!#f?_69)}*CY!XoH=}YH1k^^m zacCuCa}ubTY~GcFKEHE^&-=M1;n1j!T-A9R4e?A(fHLp!wAXrhs(uvK`}MP{<6WLN ztp;SB32vN?UCp-F@;pjO24L9t!0a*rTb_>-6-f50NT{i&-@GHzZsaHeDd=Zq+Rr-Q z4>D#><+|DU`&l>l=C>Pvbg6HDT|PFwMbf(T)ab~OwGK|Mc0iby2iObw>KrbvHU2bn zkWO@%XV3Py|Dwkr(~?^A$>A_>My>hfH18(JnU;d!Bl94f;9a#Dv^+7igijMx=b4#h zPt)ZS)2b0yI?MLlM?-6YrJVS-(to|z0Vumx395i9^;LK4r3@hHd$vO{Z#~ z`;zA6l%4?>+2Q*oIT6pg_U86xbcu}ly(BtC*FdL@`9PhB`n3qF_309001(g6A`q3* zCf|Xfs>PA4oRbdcY%eTnvzsIzbO(tk9N0;0d`;x`l`p}X_PIz7_Gxzyu5QbTbJK>d z9MsTDwT4gvvxk(_!!D91y?lj%G*a1|F^vZPDf`NK&GG+CZX2mQ`7Z_cMRSGb>0H5{ zeT#W+Su3(k&{S84w7E8eN{q*u?7W>#sW@WDD4Hz~YW8X4re*qi zSmD)Ofs5n;iX0K^t4x5j689yQ?MM>3!bP-TR=RzOH!E7ayR7$>RUYAcok}$FAPBu^ z=3M*?7Sy^|E5=;H=-L4hW-tDHh!(0Qb6jn2LshGN+B#J(?X`tIxT@P7*;QK~b6HuU zjc$^>WEOtx@R6Jji)Ot)Y-92;UFzZ#qSI@QTxX4VY=$#4!_0y>r45(dImiFTn)i-)3Z#)*~_Fl&xk9E(J6 z=yKZu0vlmT4#I=8d-!u^b9Xx9GV%-px!IC1xP)4a7WZ>B+9q?6=H=}SZazW3bfmWk zt?WtLINRDF-)s~$lb5@jv?HFLZM5)MmWPd&M~w%&nK+v+>rETE&>HD8K{Y>eLG?(i zo0rzOni}vGAsP-hPW}TuZln?*TaQ!uE@xJxvb3wLa*2!GIQcFZxwI?b(M+qB5BD)5 zZy(pN@d_$+X%;mZ#SjkI!<=@%lEG9#em)#_e6 zQ{dr??5Y(c>zSl7zl$OJ4e&G{u=m`ejLJ>;OmL7Ko5cwy%FAlmZg19hunf1F-lpBy zj~29z+0iI(v!mauxJhz!XSqsy2N+^H~`i}Z8(iNfl8j3ffqf=Q909< z$V!IL8p)k5Civ#CK$>HfLeQec783du1FUT}BREfT;(sodUjG}cQTbpl%d=Qx4XE`YpD6NhLav#epJxd3?g2t>O8ffFx!YVM zCnPQ6S&pME2teq17U4j|ZmL|_iCH32+2AUWnKpNzT++$-9yLW7=+Uli(h*25CWd?{ zB9`pNI70c(0KVv6jhKhi30YJB>)(lcX#8DW}3EW-;aDn-!_XeQtOLZ}P z|3!AY$6lJ3r|Y)6NS;Hqk>!8=2hS@!g;(bF)^6BdoQ~o`M!_v$zqh>?soVl)vq^57 z1K4jsra=wmB3Z>N#Uz(d-|pzcmGwhnLvZ#244LhX=j)J5`&oZ^U+tbL85Xz6cLEFZfyIP9#}xRqNjj3(5x~rhY4&P5_9df+e==z=cPmVy`5YkguZFfH6xUd+3F&n0Yhb{ zirY&bvl_NGe{N~K0U89_OXamW11?9BTDO1(d?DD#d@ z+x}Cv?YxXf;qmFlzvmlgF|j5AzV~LAS(QbIW}E8b9Xh*N0pckJ&{u}og5EnDXkVY_ zg~3h@6(W@ztnBeQnEd4`VovVDtH=1hD-G4|wr{VYry1oYW{@D;+T+q0EFEh43YBYS zgGP5*qd4-^I=b7+?*Gh=uD6bEu#Rre+YYJfAx17uJ2~6?GT~ZRLp#3&Uyg~l^Ms~d zy(`m2NI@#$n&y_~9pLjKi?M)-B!=wGwLZ@ALUstBocN}}gi4`6zgU8P9H@LHR%i=v z$T^U2hk_qmh0D6*(;=^@Hix#yySm9_YidI5nY)oGgYUK%OQ%}^7^5oSGRr&2q zBYDh_MZBv%rgZhpfT#QI;!+LGtd+rG0xpQ}@^b!;A3o+kJkNjlRDIkAJq~LQY--l0 z!wRxH4Z?ZaF;L~@mYtZ4Z%IaOBen<}eLRYc>4AFvJX$=L#C$vv`(uPK!mNYa$9<|MHTzBZ3Tk8dQMp$3 zRr%spi^S2_Ck_ zoTB9@x(RYrZ$Yz1Wj^Sa&T^UAu|LfF?JHhLT6<>N?=$q9NFF8hw&V_?)$xYsVl>Fs zu?R3o@E58K2R0K_uFjOAgO#iM*7gJx++<5E8ZU}`ViO#Nsn?o6xjOOD8h@oOB`& z4#raMCso@N%2hQ38fs#NNz|B=&rLtvoP5}3lFa`{_Aq%cQ`vU<1od%mW>3s}!o#M=J(ShtH)8Nelvfk7UzX2rg)_!cbyZK`a?Rk8 zw!rC)vnraG;x<{q>Pkb2LOBF3((eAl(ZQ!H3uRdBaCOGUZZ_}o=YGfZ)TEFL($Tz4xZG++(-yV1ai)LJWoW-p@Q695 zmkng_mp)WIGG|*GsYG(}A@wLkbUD$-GEKlQ+Xtilw!7da$b)_X->|xOIiz~>I>=r4 zj9dfWL#A}2i{(R1AU5JfE+>CoEY}3m?aPg^6&x#+>=Eaf#DKQHSttcvC6Fl3RP znA}ynK$Px3%*QaIv1^cNf%~Q`FrPl}=BBB?-d&)In;=`vhjToaXvZMK+Z_RGh@(Ww zHOTgnsNmfMx$7|Vj{Cj!@{WI~>|(hP`0Sm-0s?>EuPe!;hU|wjX56$U04Z748+c}C z0@j=t@!t4xfdAsjbSrOknEMm)6%$n6!te-T787K}Gz%y>%`a;4uoAod%ozdn!%YzD zuYVY0;W+w8TV1T#ugjH(Z*vpmcC>f6`(4qAv0#GABechquNS7ca3^yBoFHqMgRL3L zFd(odat(4SQ&xHTF!NG9{x-(% z^8DTcCno(@5G@(ewz+{jP&U!1%Bno$;TU6CKd8r#ux}>rdMZ5wh6D2cT%NsITC$}G zZU3vC^mU3eFTOmd1C#{yS7c-c*Y*Z^-gc??e4C(h8?Z3l*f#ZU81@xkBmW%4Vvx9a zg38idg$8j;%&FYejnD(#xg)#XHON)gF77K6U)c!JSywEFz?XfTG>v|*LB$5y~fLqR@?vEuAzUwUJZP=<7~{3S>0mewG5 zYn4j=4o!iIgXF>Hai6q(x1{>ryQB^dRi>4}CX!!cVtWr!cZIocPQX)Pvurh*YAE?o zw~cfKZZ+JJ_6QfL+VwC+lu&uOu?JLKo{O7YgPfTT=Eb=M4VTCd3x~+z1({a1*a~zk zhnu?{WG}fS3+p>5^MY-ckLH4Y82Tq@lDjkyO~|&G*-K`DPR|?7I+HOecznVxZ2t)= zZ-D1l!r(R;wt8e8gsVRe z{?LT82DA7R^H7^$dB&-OI*9lDwRq%xxtnG=&>Q5Ud}#``ZzDYw#0;O$gE*0ItAiMv z1Syi&J@q}YMtxsDEKvAOnb!-Wac%Es5?^SqUEE~NR;;aezy*4#?6Ss9kmq<*-2J}; zF=>RRlF_w6PTnOs2%hr2UuvH}=^xIo4ut|aHdDg6%{9ok|J*p_uAYG8^ElL7F1G~D zjk`5-e>M?$$6b}2?hWz;zT1kZUj9Epn4=@qJo{39>PV%Nvn&_{B_;6U+jG+INDi%T-7-RwT(yGP03ZrwyCO zk5&|_?!Jjj^R=Xs1sCpwbb>o~+g1AMX?5{*$V0owMWP+8_J^jPTmfU{8f1m1OY0JL z4(FEfnwQ7%n{yN7qV55&;jfhQKZY5N(;x} zf=+)7$_vhJeK~_eSmi}mkrCixiyTqlV9k$gY%y1Y`H)aRvkmeIL};d5EuF^%biU_0 zpPy@9NE2i`rA({Lw9JIitd?8<4wSF7qJO>heuB!{Y%JeP4TvkROQHJUkWunsC)@T@ zqS_}p_CEnh&b)m*A986fZbK3HfcfQ3P+5&H5w1l3{ZTn%WYEH_^y7Ew$ zlY6S)U6YHew)pASC!?7tix7Twu~`J#BeX9Xp+rt>iR-RUYo1~?C5tVwfC{(WkgOk! z!z(=ySCY;G|7JgF5Lp4M4UKHE?nsldu2 zo09Cg5n)AsU67q%FX&s~D(p`8P{X`*4@fq~rwh-~Y`m~7m}0!vRg2|_GWFXvTo_MP zZn_GY&EWhZOMjmZ;zJw6B5k&7liIX7A&D(m7u&c-sEyX<`$iD2c;vs^2WgSoZ%P}y zG?8|#UZh3F=o8OOwQz>WV*Pw*!&K7DhWyiq1)bDR>?~YCE=2j_CTd=u$!u?tX|>?$ zwP{!Ds$HS6!=D!MlHtXT(p?1t(Vi$<7R&TERD`>4cZvo(}94dN2n9&P|RtJI+kL($(!6mc7m~Ar}+xNWc8h zzO-xJaDng#_(XZ$5JfWZS_AbZ`4Yjx%V!2|l3)Y(x~PfrtiT~{sOPkAmj5cqek2bz zB*MZ>uJJw$?rx%-KC=vkDB=N;(2~h_ro-rW7Cd8liz-k%&ckg?nwsOAkXJU$->?M?=Bpy68Ze6X~Y=r+@L1T zOLAN%8*z}ftwCjrowjmL&w6>rBuU79i>CI0k@u#39giuys`_lzqW4&WH`ty}?XbRtX_orjIjzkn z9_8yZC7x015eX8jT<9gN205*l4M|!%yR}pZY$ zj^Ig0sN}t}$*87S=|>41^0L^i;Siq@IBN_T9L=^hM(uyTrI=x*6$5d2%9F3v&xmecCwOEV>ZaVUO z@cVPwEQ`1z!1mB`H;I6SgdR7jTsowrD_tztba1G#xPLVi`TYJYlH5IZ(+Jjz2D#Rv zPo+@ifQDJsuqlc$JwxV0sK)~NLM+oPpHWe?ge9*#fKZN&iA+Zn(nH)NdB~6us@)*R zTeGlXtz-os)ZvA^k&&C^-`6+G*GtkBL^3^)?!uG^hIL3Rvw}s^U6zh=nXGd&gKC`Z z+DFobeHoEx3FFO+Y|;?JTh%N%@zJ!}8&uO3EZ`I7e!K?xgRHR=+Duotx*mODAT z*43I>gfoB~RF=QBo6{_`;*e}&!J4=s?d}BXEoL;2bd`z9)5wl$ugl|@@i2v3Dh|4; z{VFBCO8XkK#Hy^k^E->^^zOA%5t;N%OX}vc8cMeLbHkg z3jC1InP21KWn-F)njQNAA1>jPR(v4)8mrTo{8-xM(Pq@AB4%0=dJmVQ4gcp4iJO!d z4Z(NMtg9Ge7a-xX7%Mc?g&LXV%1*CY=@B>a@wEM0hT26A^%a%b12QBgiODr{jH=yb ze)~--cg|uX+%VJ(y10(rG@D)Eadz!c4ik7)Tvj}<(x7tP&=Pk?hJqX0iN;~IYIvw0 zro3RhT!bcFF2t!Kh-F5APm#)2M4K@s85YZO~Xj#D}0Rp9~Xv$S+Z8UC_?48 zy#+T(UaWnpa!!2-%{pg;$|L5AzCR%vE?3KY*dPmr#`qnQ-vPQme~!_8l~0C{xkJ8e z!utlZtwK9dpSy7?4|fm?V1AwC3b>rPC874MmaK&sP;TG3i8h$YDvhd!lt`9*`A#}G7+5%88|uz9(Ch~0E?gWYV< zpmG~o1nK5_x>32EXKa2&4%7K~0l0>|%!fbJP&Xip_(Q!FHT5QjBipgNdNuV?J=9>?Me z!{UdA#vFcRZ+!dz5Q5O4atg`;Bo8Vt)|X_(?0^(9P%#`-6YiF6ZUB(W<_5-L z;7zz)E!V}dGuf=;=(B=OJYCO%^} z?Fi0a+3zE8_g=&P!<1Uoh}J^QF9AQYW8cFQst@e8p04UmS*ejPr65?yg%mJcvC7Fa zSnpSdf%M1BNRa-4VF?ejhPNskhnd^02;NSdeS@qQ@7vPT+y8=lkrVQ9Ge;?nVd$A8 z3ue>~h3%Hvq6oo#-HJWIeQ$V4j!0t%r@x#|=nN)=?1~gi{LIt10t49{<*7@oUB=3Z zhHpI^<^vx8!5Fca9A-rVZwSqziD^ z_?)ik@2JJRh^YglPzq*$Zkaa=RsL<{o7FMNnreII6~hNCWh+i(GLws*Lw`|G-VT5? zWToz{w1p3L=0>kYy3jz|?9=`t|GWVvGn2|NlS$v1VWNpIiCe%>4Y}`yvBSq4e>k4~ zo{t&eR&XZPuAympk z_Sxzt$(F;}8*GBf@`wr24JxPkQNH9y38AL+bha)zioRc7s4@~|PtA35@*h(uoMZP+ zE;9BGrG|+#K;h0R6juB8@AvJ~_G+MDTT7M=kAcAJ(`yhoZDa|u^gn?hKll5Db6j?g z)pBX|8tZT)KEhh{ijaGU#d3WwPzM_f0$-Nf>HxvLp9O*&{Sa^QL#%?}dO#r8_Lirp z>}NaS;A~=vX@4gLz;gxwaTV!W&s0`V2gZIeA27HPJ9T#2ZG+rC5*pA>I`%^lhg#Sc zpfhXP$i%^Gc3ceYnyhm43>>6k*!)0`@&olH9LtL}Y}7Ur4*`B&wpTa!QNs-fKRFU; zq*I$`1dNL(PfUkVg)dqnYgLjs*3E`N-CS(lylu68H(N$lq_;f3Dh5q_FYRPKodBN8 zj)dXbFnkm6zvVYI`2T(v@D}(lAJpR2yLk9}<^{5cOv+!Mn=GeSA@{O}+^HUN!1`r_ zTG36Gv#XV!^Oer>m8zKY>~IV1AMcrldGDt~evTpQ5}gvs`9}ou%m@}Q;%@#HITy{G zJkwLIZv4-|+MJo$q@g8Rd7y_YQ>f$;v}Vx7YJ5c~nw$i^cQ-s(JmP4`nr7}7BH^G3w-_Tg|IavVH6kpB3v+NSN> zwIr9~+XCrQ^RJR?J~fs5Z7O@jDyJ~GR~Q{;P$hjf!f)c#B=?Pon^lMn%zPD%D zzW3Pbf*FG-*zf&tZ}!8jF2aolTvQDk4y&TXAmrP)iy_}7ht+WW(OtmtThcBXWZAAD zpUQ8$%M0boY(@VP)Q87vaX*A${AbEuEZdeseH~B-VXru%3{d|t0?o_q>F65d`dzCC zyK>MdR__X*I$34e5yW3Ls669me2$;7F9DUn%?qomxXD+#z*nk*<%tp8235t0c^{>t zd-HSPgjoeH`E?awgR@RIsGNTgr=n1HrycR?^d1b-M^yLH+A}MgEuEcu+?-c(w%Y^>uT-4N&6tlcKKV@?xSDO(x=GG zRlC_r-}j5^N>7rLGF+tKd)&HPh1if#SGq}ZK{~)es8aC_yz^%oSif7P)#c=+{q6=P&)4&!6_6Pji#xxX=20ng9IhKlAxZ zyHy|;WHg^73qPxY%X|Zm{+R~00EJ0%)MtHqrT_GyKlACIcB>FdHc8(9tmV7Le|%^9 zafAGJHx~O@>&h?U{M{?_!4~;miY7}lu8#k?26=Ax;{?uJisboO}d8fN9$7Ex0C67j6FO_3CcxmL1nK)t=p~`{Kc3HvMypFT^R@06W zc%!gNvU@B)<7cSyZg*gfhs`jp@=kZb9s$6{RxHnc$cr*6H+KiFS#HXfTHK?Gpn9QD4Io-U^(Ty?m(W(#& zFK_e|*YlXR$4?yv#bM??}A{>jH*8xtRF%Y%J^QVsf?@kkhrO6|6IMr9qofEA!CEqf9NTT;3UIQ66w5 zSw(_wQ@KEtWN1lBK}*!uD!arI#`1035AuZ=i=N7o&MKOI%qBe=fI^w8X!-(J7TR_r znF7=~R5`07kmsDJTn8~GZf_wNhp(1I zfy^w+TE>)w6=q_&E)$c14WhD|x!m7VkQ=FT3mfAW0IG6hPawBbcwJAR*_nVg+rqzn zFnN3PiyYD+K66^cTPR|z6f7l~$y*(k%iu6{KFvy2WL^zh!`JgNAKS|MHJ0UmJnMS` zxq|Vm?n|k-8~4Zz`&tzZlOAg zwO>d_@dBPm{l>8$)3HrHG|XNsB)cF;Lgj-xI6LX<4J>08r@zWE9R+`2aD5*2q)c+h z=R6jj?CfykIB3@>Hd_>KuSKNet02d{M0%T@xQOjyFO`qyB6K&a9IbJLnofRbSdMWe znTu?n3%e@w4Dp#CG?CmNa+0fPpUg}-n2~#@6Fh&&sQMNCtz=c0TcCpzHP%R{=;8>* zN^YGS$Q{aga?RX=Cg;iT)h2!K+$x2*+r?Is!QW>6!|}-Z7M2pK=yumE8;nIZdyd>X zcfE&@k|$P+rofgoHxurAoOYZS46znHmB^G<+N-?o^#t(&SMPFxga@?pLVee zWuP;_`_BlxJZtmsYtpbq&g~53DbS5^0<9Z0mSw(?i+d70PjdukE+L|)b`&@D8AHJ5DZNijL^A790~ZKnSYo6QO~Ox0k_P? z#TRRs9VAjzW;4cfOUhrM}4u| z6Mlj=F5(cTj%C)^hsm^SpUf^xzT}$CClmhCP8h2FAczpeC2LnCHA`cx(otxyjfiny z+FdYqA3W?HaC^dgE9u359>_OhIgo#KyZIT1D&HHJ>YC*nbY1JprpL5S;CST135hiV zJmF{c$l)$oQbGT@seLV0e0QY5R@&{Qa`-lG)QoW!c6(B8#QCV+am!2yS?)A zld{U0wO4y5bZuKt+JF^-9~WAT@QywaEHHg?Gwz^f{w7B8F)fh2@i3B|wtLZb@Ap&= zD9e78`SOFZ>{U_ucQy{?<_4U2Gj0A_ieT5`&2I=cjFc@WRB;J@FemRCB;V{Y*OB9S z@HtTqlyedka(jA_2)Li^E5PV@j;+<@WKqVp!}~n}guh8c`EMej&!?_@+%s^9tsVN5 zC;VJxO>Zz5zJFj-9t;fbt-*z|CGbA(|W)fy>?&oNCd%^sJ+mF^&=$kmwN}8iZVs+i`s5xMzwwmWObS;(^1} znk^Z@Cc7@oFyUv-DqmXT&r|ySgd@;gTSHD8J0(?4%W@7TCuEcCQbG~wLit6&H+Hpu zQCn#1qm0d(YnGek%du-B@j)x>KrG`#T^zYkj_tKE9iQ>p9!Z@Ls+`sv zaD#@>dsGzAI6ty{yUb+! z*;o%~~`np6^GEBXi1RU;2`_>a1-}JGsRW09ygD1?INX2KAChc0z-ajTb3w zWS(p<8h%#4+~zQU$G#>;XZ3_ETHN%c z$NSQzO!(TCYWpfjXGS6J|C&=Ob;Si(ZH;8j%fW%#Vzz47$f9eg{IzHkKx4nF+(Z%B zaLe2R+>XX@b1szM`+)nN0FQI*`8IAC0;5Cng^Hz^X|gOO=2D6?70QA!2vc}{Tf5t= z-M+Nl_i0y3!8CtUBpROK;8bYwej2r)n3Xx@RyopBOn6|bRgHA>+NvOsXEO=X$j}(5 zV#Kt%2t{aEfeSBK0=&ii%PXof+xR$bsy{nQxdB9QO5!tL*Lc*9pe;EOj3k3P&#~_e zGv%D#K%Tb~%4oPsg%igz5kd<>S(q?|HXyWEb*2At9N2EGUDPx3@6&;;$c}=FdlQCV z1YicRyUi_^xh-PBpJcIF$_p~3BJRNr1veQW&NpnDglYMOX^ORfJ4OZgyO)uo0KJW$kOKZi8k2l=id&dyswRN?Nqo>Lz}zHUdQ5Z7eZam-L3HBY)7EdjusvGy^|@~H!pP; z+*mkp;}%+Kr^Dp$q&-*^D6yGr`QAWW1#g>&IgV)R%H9Ic57nWb3*9vt<@PWwx_wn{ zx08RY%BD`P!Gso?a70cv*b(G#OWx0+S%j2ocHBp(uT;7Q-~{?IiTVPLbGAe^sdiAa&9s0!(Mi;LOy zaU%+0M3+Bg^=X`^F9fGuj75EU%lK&gK?B8*dvl0xQ2M$jDfywqO~^ zV`G4Nv`DF}GP)vj3fd=!rINKGF00k8}9OgBMD;lhk%lQ{)9+441w#boW#HBYzPjDhJJ zs93)A$tthH9MI1xnG(;h^mu~3NUijwOpIfR%*Df?mR*0#_tOENi~&OX*c+W?U8$kA zxJmNy|I6E-KuJ|yi~o36?OU6oMMZ4~f+#!`VuJ>A>AttSZ(hvzh4&KjG#z8c5~><1 zYT|?=V|SwkbOWU#&QrvBKZqTQHk>`#u-HZ>$C4rjTv6df34qgwbVWL z+%xR6&z{ddcA^nxKR`Oo7;QOXP^4%3HV6g;5J4&aZE;4)bIAeO0Ww?5a!g`18S#sx z!&5n?19?Qh>GEelEyl!$M^ zuM+UwX4CF;YBehx;WmuuOpgB0Sc%hLlw4!SFl^K>RBvq1{1}CfVD0)0`5CI5ZIKg8 zGO?txOIhV8B(E$n4W68wi{wDnX}YhmUy_@30j<5S$s z{Hy#>e$i<+T1u>~$l`XF>=*p2f#y_JVbouUnGp*q(xyCKWog4qo$`PJIGljA`Osu| zpQCY@I2wlV!x?az;k-f!=C8x|IefcYXn`M88gi6|TLiSWDdx6Ex{D3>xO?q`sh z?XGNOm~$!mBD`Ewj(5%E1k#eJJftov@3)n(?lAK?>Xi_cOh}4o+4?cb=(`yJryh`h zZEd(3Bx{H8JPrHjd^_4ChGv?i2LC?C{xR%-b>OIFSjK)%sE$9r*%e2I1SyhZa&B+SPNTIb0kU1GSExpvq zseIH5yF{y;oerFweBNqa%Ta_$gu0W;U`1aTF1nLewSKsgPc56MU}6Z zAT6I7cBJwqv0ap0-0I5GQ~;5>J{3@MNl3;_TgjL8_+XX!W8F@Js$d6oE5SNC^(?#trRrV{Y z)H9b4YyuB6G&!TyHR~*Q)1~a1hsUP5PENibkmc9OV3w30QF0#{Cw?5>WHHNn`%eau zQ@OR(l~G9`eAQveYRqHv&vi0#uJtw2K=KnC%)me%XmjQMR3LX41J9^DXtnMR+1PR( z6x~KWLOWERx7@QrZA@N(V}~-P11DpRvOECXWZ;5 zMIxBe$;mTew_5?>np7Zf8?c@+z=n83$B(CIuAUFSXmy+9A!{jq7E^lXq%8wrxPBj3 z+2QNCwiH?1rNq6scH>hR?Q|x~o2{T>zx zk=UD@TzZh4nck=#^kuf@HR~mSKHv{YTbshRGMppG8y*c^iYO|-G;AD#U>kWrr9H9O z^*u6bV4ysku89q^1C!EfIW1GuNvBAWS-V3pY9+3`zDMO#wFcT)a58cUr?j1c#0I}2 z8!;Q0#TjeCToXhgSOeu#lk#qwN_@*emB-CS4B-K&P9|#^VFoJUW^fH-%`r3Fa8x|_ zYPq!1^Ylv3)18g%2qTB1RGznvQTGQ*Cpf3_+0+uvpBnbNRrB3P$IZ(Py=oxO7a&ej z{f+SB^C!DJy{Tmo_Pp@vecgiN*DusJsI-=xjLeHa+Yo+sMp*G9liblY;y+~W`1c&` zpwUw%uTtxB3uIM8$3nJm4EznpL}UDcJW^Fd7^>bYB1)_RnN{P z$^%tpqz8k84bBL8s28R(4n99P#g%uk&Z>OU<~l!+^IJI-^NAGIr;$0+ z$U@y;SPU8xdyk_BmD1aH_XDa>GAz`e+v6T#itTbMzg5`ar z3XTH4N9(e3YDx2n&!=#Fv>b!voK#I?V;w7eUn;Pa{jwkxID_P#HWyUeC2$6*6fhcV zoz^$%c;Crz1>YdWWt&m?eo^zzAkE4Fn;K(us5&9(;D%HUwYIT#PJm?fq4|^DdiAwH ze$R}`h^0{*Kix$08EQ-mYb0$hsI>VsXyIh!DDp%PfRf^-AgH(14 z?0_{cA|A74XOs*;PGR>Ak~>pnnVi@k6Ms%Mj$ zGCAn6AsJS+yeT!Eth}tPD*I}&2pp4@)m3H1IHx0>T6wYfwUefuBPJ!iB5!Sn)Wkh~2mCrI06=3u#ToV(hP9R{H!uSjk5 zxkIkq<=l#g6qeJ_80=&OHT>Ud+t^4F;&B{)V=3xs>GA|t9rfJB5W`$&+ zpW-=)KWv_ue0Z)?Q{B<&)MDQTm!)Cd%ycAkcgNLgWi2u{=HNndGvJ2!?I5uXcyJx~ zBY5zB1sdn2HsWNc6kKQp%YdJtr+CQYPKHwi&LFux&HeW#ee7rZW|?6L(a}Fa)Z0B! z8Qpg2K}pgFEjW*-$bsP;Xe*mF-b`5|-<#f?MKZB6nd~|T8ix$)A>u?T^MYx~z=nZtKB_h= zvnU-fs{6tPzaw3A4wNTRhLrqBbbeyaIZ(5*%{ne%i<HEGVZ=4j(sb}3c+E}a=y z?5Rw znYzlp_Znni5%&gl*j{G%>C}-X-dYkE5RQxgfohiPe|`Ayffl|tuqc0UIj<#y>{31s z05qvLwh@Grbb!R$jrh-kK2>GUOH4MOn+}`<<$heU8I{{p0W}^(yK?zxaXYJRwjaB% z3RzL|Ig-E~VYfVJnT}-4!e~ybZC)TS2j)&J8F%WpP0mR7L;bWqSWl*;#9t$7&N>eU)h?B$SW~fz@gnQ~(``{R9@N#t9HYZ^%Os zR?K2jlXTH?%F+H}U*(t*ZVrQM#G?AnPUd$FVhiFm=Ou|owgbMbQztMnNuMo(2tk7~ zk)<;Ki*r^gJy2G+ZgNJ;9|;KCE^y9D$qJ)HBr6@QvJ^ff$1WVJ6=AY@PSX2>^xg?w z(+*vu^~$WlJ(LNX^*G;oEG2KXy3S}hFJ0uED6qqmI~xbFXLeF=CZ6I5Lkn}0_FoL! z4}sI-Lk;_e2GQKPij4s@J5;^&ai1TmHvuye4O(mX;;@cPOw1n(&Wxd0EpKa0x9?=+bh3sr z+z$~@K;I7g($n++6nL`-q@PULv87W|W>0AhMcm#Mx0VL*%qev0FyDf`~@JLGK(urt?Lo_RcBY>`*$yN~vk9x^% zuvOe1AQ^OL6LhSmPIspXYAXN7g_ zw5Lt5M^nugBu!lqR{Ptg)>rCW8rJ!{O-;BkX=>R&saADSQqAt~V=H!Rhjt}_FojBu z&_-z_#cD*Wx4cs0D(Dn)6!HT%oe%?tF$9b{9L?(KDy*dHIYZ>XOo6yE6>x>i5V^gb z5IS`FzE=HMw+`11EIj!`GT{alw&{4c$(P?J*-^SLj%QL$Tudi4Ldxt^A!nyH_{3r0 zNr^~u-%H{TP|T`3$n_oGM%AtL+TF+@8`o)8dC}~xLsYuL*b+{aLL;oiMRR?()#d4I z<38IIeL2BJ1r*Dg;#sPqdm^0Af^?uAa#UiLS$}B)u{&eBZ6pUM8+XbT0-02b5o5xFr2bnl zf;Gt4#^Q~~FoDo|L<}ziCo~+z#~SnyOuTfz&+0hM+2(TMBR%LdwJQp|^q?>J1w)>& zFeVTqE>Aj~jS>hp7a+QjXkWdxtiQ>$NQX8EI6IK$s3u2B2*!}sQZk3;E0QK3$kb>) zoedd!p;CSYu?L-@FPWyYfP)p{noE%t&BQvu&zz75$-a-HEi}_4P@dbbesk(j=KaF!i-A= z4q~HZ8S=hxb-MFFN@cEbiXke`S^8`gEX-gksdWWC)TRUUSgbm2Xas;au?z<;gfx(E zm^x7R=={)xtCP{5OG0O;9&myK%HCV}_BRQCI}}to+E2S$uLhZ6tZk>3UXx0$E+3+uo2fL1H7LBIz#1RLMj2m ztHcO8L+y4lV_b}!x#Pm~w6Vb%BCE;n!PVUIa;vL3xez*_@_K6tQ^C77s`=rqGzQHm zl_t9I!Sas1K06aAXaDdAK0L`V( zSoBhdq3=<=`Adit-hxnVB*~to-st0_X-S7@@#9# z!r=1|v+$RklSZbrR4CE%&bvN=-n+eOz+=e z6RTP)lg4G`|1pdk;$g_UR&$OLwdAW;&}>jpuO85LBJKd%O+=KAlaq5q<`Z4Ay+xQ} z%~B~(u9*1{ncmkRj8Z$sRYIBNH-tSC{%8;s zOK6Z(S1#_xjt9m=IJXJpWQ&AD`o|*eAusV3a_q^ktv4D+{+yD?pH*G){Hx{7-ZfCr zdTrDK%byK{bQ0B|kkplrNIq`bmC51iHG&Z+cumf5StC*n~bQiIBEBO+U;cFK{!caUV!A$4RGL8Vn=D~>DvP+#& zq(s0p?qhjdO^cITg;_rKA*bhM32u*;2<2k$0*| z-(X66q2L@MXaCcx$}uOuk>KTKIsGJv+K1H^vW=GQ93t!6OkTPLdZ%^==_q;SWMGa1 zB|~gB7LU-xK15|^?=68dN4=F;PhQE*+tdKeyC)kRzb6dW<8%?UDhxtyR#`q71~5crxmv{C-IGJ=70G;e z*;1jsHEULuO;ak4EJ*tTqIYi|?YBJTYPGWbJsspE1J_xO~XNJ6F2J6MAw@fBe z1?pYc>CI77QKt`EQ_U(%%^@{JN!!8mqOI#aLA{u?ci$QVMV=-2uG4@gnD_f&9)Ly7 zj*fVl>E~$kw6`Xrd-H8^1J&}?HZ`44JbgwJPsqIZy=!OYv{UPmznfK_!Z7c+DqT}^ zJg;;D^&MBb45`>uCd)g`@^oDD#;Jxde93zz?yB5iA2dKbkSVg9wezyb5d??Bb*P;F z{by{%y+RRi`t8xMT?uNcJLZmLho~%yds-Ea>4s=btE>yS0+uJn#2Xv^GvS!7r)C&) z$(UA6b!B2HX0y%9lHQ)FLS0eM0@&+xwy(3)^Rc6bd$Oz^)5cEM!T-DhM><+d+Cid% zh;29Dk+k;;?ael*uMHEne-IrkTXd z!%ebZ@++|x7w$}YIwMt6-4*H4b}#}zP;1HjK!%@>VD@413z55&V>7Jl6B4ihyy%|h zHah)fy@^93l9VfEp%|s|k=?k!#&+ejRFN7Rdj)*>`6NTT`R(Q@|Du-_emDt2A{TNh zoEs*Hvl3#f#*(=}^NuU8rvhiJ%7t+H=scn4jF6AA*1#MtzK~OQ4(RE#vP&0iiNQI9X5sh%xw@q5D7v~cXzu%4vsx6km``jVr^BN+k@?sF@!8g zzaZRJS^4oQY+;skTJ{O#*LJ=?OVz9#y2=?P!(tgIPQdD_yfDpn%H<(MWBh+UG`)ov z6yT`KYd-O<&0C%<;9X`*U<-z*R+tf6lGax$bw`!JW#3O~47?|4<}z%coQm@-4A=ZH zy#o0IhJk~XcrD&oR%%z}hc4Q!m*u{~9RrmqIgUwS*_5MP=U{of%9i3_mn%^`71AAO zC-#PD6>TKuR(46WSFDrYxm&*j5uGqkUU;M8#6;_zaBni~5iazJXP9O z=sU+JXC78Q5KZ(TF`~vjvKbs;MWaHx+}XE*KMtw2MD)nyr^;;@!i=#c8t7hPOZ$&mcKTL zA_F`orvQ3sN*2fSegbCH;4DokF^?hCo}|pSkB4Z$TaK)SFQ2iOa%($dMHvb0f$|F^ zp<20C*8#CVPj;PJx!#UrfFZT=saZ(UKbDVD8*LpaR}Y|k#w+I_P5($%Ox|RQ(~*#G zvwB2MujP*>sQ6`t9`f~#y@)%dlY``5;w2TlVGs{tX{5Q(;sSCo;CzD|SK`YhnKIQ@ zO<}B8#i;i$kM*f3;aI06lzqbE@gS?YSQVmzOHc8SHL&0On7l7fYRavU5NthQv|UvS zCiAWI4mjtO<)ue(M&wwXup;h8UbBxu5H^S`Vi%f1g1kX7#sitWkT7WsC1HkNG$LoH zJfooMGTxeeI#lI}FpHlJCBa3ou(1J9T|U_jH+IY`cyEj-v8D%z_J(T7=?C&hZsI(SN|2~X{Ks!7jgC0(jEj-|qngH#@w zX7WtI9Hdk1|Hs?^C)xko?f(x|Ed`%!Zg&w1?;IrWr;-F(D_2Gf^HUjQ7kqj;#>vPz zDZJM|Re6_PH@i+{Kmc@oI5cTi?7VPPYW_FF%qq;H1I&xRxNyORQoWh z7!OCRO1gc5uQYVDkAu{Dif=0m!PUSJSiAA%-=E@8jghmTf}>`LN0FBklEVulo=)10 z*iK#xGvi(-RNlTpuQXnH+g*A4j=e?MfJGqNc@5H*gxU3dCh6rPYO+5e5o>j1qp2vK zZ%251F?I<|!DasKR8RIUtBlD}g7##QDWh{Bhc7#q>(L%0W&d*BJxOQrB;+Hbr>{XM zuy-QjnDLWTvus$NXtklCzKL^JeYGn}a!cL3FL$*kn%;!f$rO5erP2dFof*^34V5Z) zqb<;go!WycF-o6KeD!je$62-lrx-aF7)2hfT$6P2IFy$b45&6zABaXe`-ta~n$OY~ z5Dojn?4k6Cfym3QqAxx-Or^nWU!6Hd^D-%s6Pwp2jlF5z`ZMEx=2c$3^R-tiE3ZD_ z6(~vcMuV(N1(g;CKA$xHkyV?E`PksT8W^lGqqy`A5>PL%d@&1}t7R>*Ow59<28x-H zkgP&R^r7N}WVCORC~D0ZJ0DPyfBBn(H-jIv0w~56)NG-Tha|nsX(qPqjZ+~(>F<3` zMY*aiG}ne_y{?K5cz&IT%uJWjup=FH!wb=@Yvpv-2TK?RGVEq~C3kY(=;JsBC=c50 zigN!ib1KXB3Ai8;=iHUQvar%q_pyr#H~-R})_vQao(SLBSsRtJ_pzJsp85r(yjD3@ zR3LRyJlQ4Kb!RrhN(ko0{V$tGVYSJVyV18D%WAO0!8ktV4;7Dp5$V~nWWt59RS2d$ z(Ll3u^MAWsaze6;yhKn~B1 zQ?tJ`kr!NUBd-OgsM>AnVFIO$iapCm$Q*J`L!gCv^`z^+U0F#w1sKpD|Jw)zL9%&{ zq30pb@vl(eIV$`I)}o$_*%WWW4Sz|N?qNgNkktAO6=M8yQe!m;3edblfopbrtbW8F z*!z6JOiI6#+e-!nPoHbQWf$2G8D7f z{i&eQ$p~3kN!`y!@1+7+L!hUwHZ2~#(^F{+WvNOU`l?ss{;Oqkx(16^Vx%6?fcRC>jHAJlt~H6civ4ahPMF`mVt8=lME(L`(2;vD;^>BqGyLxm5oK_; zf1d#yKvP-yegqWry>kYREgntxZnTrOk`YwPHEUbB0<*vCZGSWIw%5w}f8X1_VX7_8 zndWW(KFD@}Ionr;i*`97ZIg|G176Qgiu}F*#Q@y!Rt!M7%|QghW>X)(9r1SZ*0M`% z{dPj-?eh5Bj`|q?x|6rn@}N^ADRSaKZsQ8;lM1qe&!ZHZ=>rKof+g?=9kXj1B4)e% zop?mm@|;tnosL6heVeRPO9uM5`3*g4Zm^mel9Re-mvU+~y^n0H+UQ$wa*5UITa+K6 z23=(WNsHsK9uO*4LxM)rYSCV*^pYFnt>CLSY@T* zO}Js^ll!B+L@YOBPtrIwzn_e06=Nc1))^)D_87ojHUMMgV!D|ejSS8KMIa+qEO>tp`Q!A$tjEQoH zPy(x&x@v}Y$w`Unr|QFGMz?bpy>gc3yp+nvrYb_mv}gq%q3Wxgrgn=?6Q(~4+*@Fp zSgp#d0_E!T8#gV4I})XEv@z!@eFP63$+I_FU^6K-<5av=&sf4)X)obyQIXYohmIBi!q>)Z%nbIxgl!+WC zV?4}CZxqF>+0ivCr?fBRKAKrm+=xxq%0@Nm==2br@?m&J54V<05HA##xyMqnB&xDP z%h97#i#iR3m0m^8w=?X}(FmTtWZi_jpraSu7&ed|z>Sc|cG=l-g6#?By=hV$&q*BO zNrWL@o|4`G0quH%>s+2vsb1Hh9qHj;A}W$x7mqI}l%8bhB^PKCuR8tH1as~n{6jVl z=5SU%yK^+JH<{Oi zU7jZ&T*UCZD>YxDrq0zvwb7PttusoxlIz!N<*8oaCS8I?<64~2=0VM4bb&i&tihI^8LNKlE3a4cTFVNTcg(;FnZ@Fz^5!H%^^1B1 zPP3dJZ`#+zJlGdZBP&X+%Im`G3#Kh3Z{U^F?3UYFxrU$`N}ivTqt=zZf&yW2gd-@N z-eO?_xdaq84X4G)$a(M;2S4m{oJZpOb6SxkNId z&skyVUnDUuHXNoby}>48?+^*26yXIYBWH&n8n$0zE+sY+pD+i{mqSXid86=E((^4A z{DE_37WNvn^(N}m;#FoetL5z73%xcvgJu26uG1`k23rBhlTPSpo(lGbeyLiOC!B!I z5?}CY2Inx_w8|VagU-fetMchYLyCU|c&DdB;8~{kEIT(V6Lb2tcE1dftrQ~LztZk0 zQM=QUMcI(baI0Ar`xem5W@0Ge03?Jhy;{xF;?j>OMFoJ?N_t(L#Xq5*n{^D@0yLq7jK&KOim31O z;hK$TKLfn$Q-L_v_WF}tr&bnNJOn<3mv~kRnDN4sLxP``wY|6C0>L#&dgP@kc`vMa zR&+!DyC)g!&Z-Wi#x{}hgphwSfcr6>8f{bNIN(j{`Fb8smhVPoz*Jru#GFt-GL7 z;jiGQc9?aif?&D0=D=P_Q*Y9g(?_o1%1}o7TxwmTOmcncRh$7;LKVZl)8W+0npBV; z5o)!|D@}Yv6Or;ceM%$(o~mH|)h8KUweSq5mU}#$jM%mNPHlRBIj#3bB)~{f8WV?N zEXXFqn`t2^>M;`_^Op#j()-J$y*DCP7$Cu$kg}LyF(w@yx|!EIY3UtWQu&{fN<-PX zA|;nubW|5}27#ohjBh$CO+k2?a;zyl7Dqoz)c1I}f*ai(|W<1O8$_E$m zL8lMAZZvr1omyE{9n6UFVBoe%JsqS(D`QXHoQ!7`R-!)LV<-~lnjDQMAxutSygeL@i~?*ww{Nx)|MHi3LAkl*G+mP(tMzI`WDRCsQ{Wcs!ZpB936FM4$~*V;9uJ;U*`o z(vgi)y-u=4yFaApg6G}NsVUibJQz{lwkQWu=1DP$YwF%HLF5;)UdoXY%(IW=3| zJ6YSeXNOVA&LEXfrf~#jY&6~lee5)FXMuC#Fkdx`Mwk;IPbev1ynmae&L~67Fx_&k zJh^Qd?%xoeDaiAc+;@WEX5J>4kBpfQ_X*$?_t-mP0{Z}S^tySK1(a3WmKAc?0Np<0 zL=&Sv1c%i(VXvv47jwfGpV$kiD3%VxQZVTp;zFESd3W1Dt|wR_w6xl9PvzNk(bo=b zZ~~cmLbOd*gIsK!g(tALpXo!aX9Gz6KKRGld^4oJxOdrUMyd>P`m){z{TEN(N}gO` z5`~O6qA%lf>ER)BTDfz)meummc8E_6cI-ld0^sRXkC0yvR43(A|8in8YThOORzBR$ z3~>!JRiM&_dhGHBP9c*GB^?;QDS-Ki$Q&@WACR&ZpQN#-7)EBA!mdfv3$`~D%Nxxp zG!$fNB7rZj)VhmWoei3wsj_2Ga7Kd}k(Kl=Ag%?{9)uf_CG2QwbOy`930v8UpV_Vq zUNLzS`?B&n_lbj!H*RNw(o@G7o-Eo99kbg`71^PpQSw!Cdw#9Fwmo*%3?V@GOn_V6 zy}fe$J6zzri$C~b`z~zmwn}qLj(4K~tXh@RwlCXC$$+BDIKvs|)RfArHq<+} zXXkiwY%b<_%fFSZ%!_?tk!9>%^PtDJ`QHw2|34?(Ht*QBX>gk5ENYmkKIe=g>j+~A zhxT}1W{R%}V=aqAEJ(*V?SK~8hVa$BoyqKuXHoL#i$Y5F%J8*NM4F>MgyUuL&6 zf$DjE%23=ocnfNAARk#vVEez^l2a>Z^TCP`K^|0Yx9hv@*izOH&G*ZBBX{%-K*RIx;e)E@(LwXEF{UZB!zi{r>w$1oi5@zfpQ44!DEVkR*{mtSKKy3ny7Y0ud zf~t+&tEL_TkW9@vfqZdvv>{)nRRFQz7}G6Z+943G!^Hqimix1h4k=}Nki56!#*jMO zrtEYAS!emf*jV2{6qJSA*+eRy%EFKYKFf9jfmzJ^k8z{zWFpBOJJ`{h`)s@2xkFG- zof5zS3~qwmn9^@nMlkP}^Fye8bLkQkFX_<@dQ!vhh)Oxogx zTqXWPx&NY%oF2mJuREAS|1`#=@=^G7+c9>;xDFSf88%MeVIw5Y$;g8^uEWARcG_5w zUnd@o<=>9SSS{z(SS~o&HuesgV&w9pqoM_Sb4MJffy#wP+k(BdW5C%I){D)6mFKid zKOgVZbIm;H>NA!Z?wc;!atJq~h!e<@N4oN572d=pJF#!p9`&_-bJIv2>oAtW7e=cpy7ygov6c^2>*>+qXE zv2|N_x^Sm0IQE_(Y8>=nAd7dl#f@4>50Yg&ZfwMJ65_>%9Rh-6xS5~tVk+IZc1vc9Xm~i}_7295x&vq$?=RgXGMeiR0E1thA zlJ)aFYIW>dc1Fp2zc0mPL8Y{7S;=lVO8)wLRxVs;N>MZWsC@MYLy=Q=4hnqrdwcqF zmofu;jdya<&W1f3c~F_PbKr*vri98xQqqL)CKKyoVx8KcoDypcT@hm5skJ>uaP_Xp ze~_#PDii1-w9i3t|0GhhD`NZg7Kt7Pt8tl39KSS@UkL(CaFfwIxN8l(I!+5Zz4B%) z<5bz!wo}K^k&6FmxQesGRb*X1Ww)E4bzNorDr*32eSmGkX*MDam)bG#CB>z|`*Fun z<;86y0(oLwP8JUcz$vtS`Ep!Ie!)%HEW_s^;5&E0j`bJo$W~tE$@;P^YoVi&@5^@mp?fAr)}X;F;(&wfrF$+lrg(ljXjBHzF36{{6NdZ*k@6fq^W{ zBcwfRn`qIlBohr(UOb{Fn>Cs6l3gu3^ksiQNc*|UOAdkB8I_xH8=DmSbNM3@V@4jF z=8}II0YpBsYbzPP=g-l+(@*8A6I|y2xiPX_XJyUKfiqd&Je-#Mshr&>XvDg%vS}MA zFtUc{t6aW^$z_-Qn0mD;%XW)K@U(qt641ikHewT+@%yOGm%G4rJRfR(Z?fcD2gNPg zHOi=v{vIiXKu5YXYt?Iq8-;tq59FzQ&dJD)QD5@hZV=0i%JYY#6V$3)xmy5+oYMpC zR_w+)<{8qO!*S*BrE*#?o5o)!xjda7I+i{RpU%LnLR;tWz=u90q1>ar)z+ThAjg)R zQF3vQHxJsIybt;J%u@Nt;W3)+1`J>!HZ4GLO^+{^?N%1Xh6%JaIgh!#F+ron{ScIq zRz3B`n8->1r+ju&&X|+Tt}d#4dXjCL9^~mdk_4-Kd@OK_-GQ>jh*pud!0iGc{33+% zbQ@@P4eVML9$_-)J=`g6_wSlVR1G@+io0^wj-ea$WK(K#=}6C9A0+cyVe?`Tp{V^3 zdqCxmT?0!9Vs^os!m<^+1_eJ-jg7h{BLDR7CGEXLdrn3!0wHWe)XK8mOi4miUU^uE zlj%XSq~Av3e8HA$4|m}-#IDMke$XLI<=uxxYq!#1xYgR7ZfI=uP@e8r_Blz9mL7(h zB@Z{TAGHjuLxH5HEdqX%qK_w?Yvkg(GX4iLHwL!hFolG!}%ZH?f5aXnhcf z4-boUgjZNIN-jOz*6a1%P!U|M4~?BKA5I5+`c2fftI&H5L%4n=I&rk%fMh}ozr{J* zZv2Z;2IG4HZUpoB{fvn`akz2sr3{dPTNopf9zLm9H~vd zau`)!uL|UBJHZOJbokn6MHdj9N9=@VWyu~zS<#YXNtYg0S<)4CP%tT3l1y2*MwVuUt4A(O$po@&ce66w9@D++!3nm_mcwx8?xyK) z%d&RtkB{~X!kcI{ukvVB^mS3*8JDB}gCM5!|CGaZPDUOFV|cs?&j%Hfl7&J;*)TR1 zdi2FEfv<9ZRXH3`QRU-tI5G+<%d3iUVZOX@V$q$@zN(@@@#Xb9%t-oo@lRPG^)%?*W#V4J8SYE17uqwelF-jo?EV=PAdPw&JVL z>;_+b$A+;LU;P{dcviYoMS04g_u22*5H$ZAS01bi5F(xoXeDDR9+k(;%!zg+nuaWS+eXt9?d|O z?#^~<#2o9ZN1}Jw$d%)bVamDR3gpW)=zjiqL)klbFJgZ3o7C0ucGGfRXXELb8GfO% zX?KEVmd5Qr9@3zj!p~RiUdFhm^5E`)+&kWFRJpL#Re3!fG$447ufXuM0c>Q*;)@1Z zTPT?^fHi26?%e}fIo^%DN%D!=I{rB*U+W*J9WIbB(`C8I7?`C|l@l!%?(vv2%`-9? zsQi_^qtG7z@5RC`{dZWD%2N;&l|Kz2U5@cfpbw`@e_Jjezezo$sz!Ns593B({Eq>? z!#Bzg^_Oc}as_9QoNkjgX|tzqG*J1xEeaI)OFWg!!l}I2FR-3W^`os0tZlCxW{60b z+c)u+UtuD$9L{NYPfp(>kPlm2<|0IBsASe5UZ|{11-S4Y_!rRq-2Uhcfy(v8oLH#C z;<)6=qKOHM`v1KdoMmkC8_(b)L`oUE%7hzu#?l@;b&>5<=Htoo-2=IMyxUm77KA4J zPd9CeF{?aLwNCEa{U0sj?c;3`HyINB(?$H4<^am+AqYPFyC7Iuw1IuoMZCqN965Ov z7hfZLwsHvHc>@CZV4NY(Ga!wL%ED=$SZR&))$ql!wCBmM>>p>coCBxQe|Q6q z5$cQkZ}cG-g4V)?Sm9Lrs9bTF3v_QF(-_e;XTnM-`S5opOv~xtG6Dc>lRb0Ozqe;r zg?r|OwpHm!uh{U5L^^$R0BZLm{mXJ|F$ZAe(td%wXg$g0{Qy@y2FAf}S$CN043hJT zu9HbbnKO5X89ZfqMI&aQR+y1b$Az3rW)Fbw<2b+&NDga{XciwdKrJ?5BV5gnO3=m9 z{%{Z~di*~f*{uq{O6Kq~b0Ac!k6cv*QC{jFz_fmb@jq|rhc}LQLz#MwcFh90Zfgj* z8}yO?MrK&r5EOi^_vO)XtK{YZfy!g!SSq}1G7|MK%Xt?Vw5PIc00ROV(ZTMA#{r2m zK+8y~e_;2ZNtO*L%l+04s%!y!lS)k>TXtQFJH|k{1xgm?Qjz0H1Fv!vqvqtR?68j5 z82JK%s!i&GIR8Xmy<+zOgQ5J^mAwM_1s6}t!8s*|&HMpnSxffH`f%Lm9~@@;%$@9w%qrIZE}w&omr$@IfGuR!MI@D?BP!feb4H??yHP zS#~&QSiLxB#FE_@67^UL{^ZWXu{69f&P}w`3-%}%w4Q)z4ze4o51INoW@w`N${wZj zDV0C(TGkG^?g%#>1tJa{lMMUbt%l9*0G`TSHuU93xb}-7$vsCbL?A4&{+Lew1w)Fw zxl0)Lu-RgQ19^2YaN2rTpjQ@|it0`Ye{PSetBE;bOfRwl~eVK7*Lv zqqCRyD6_xh;DzakyiF)1aGJL#UWAO?))Lvh9^NBBv|M5^sa5&&9?&FPvQ*G0CnWS` zeWj5rXoMuj<5<$uqEFL<Glqd<8B*R#?XH9jNT>7oD`~|52 zLjPP#WR&P+1e9!SF==Dw9z+S$Yk@3GlU#0WV)OCT?mB_oHqL~z)4{*r=zp}h_m`fMu_vqryJtRb2J*Pch@9&ChpTBw_CUC{cX(T43~o=k(b&Na26Q7N zDzgTbVTd4J*WZ-y&m4Rux>QE;ThhgXj4s*c#^j-1^iM99LaL5PApQjqN8(hOU1?gL z8wiMJrX$+aT=`%NA2@+5E122-fj!Mwc}^kHLLS;P(o2>Vj4rI&Gmw*9lG3%2fr?gr zU%5YKn%hKu%0OLOAO9e8B2Xg3dnKLj$fP?Ef>rvIsI3Wq2&3OQ|LUZ3w7 zsBAtwr&7j-^^u9WXHG)a{B%z^;Jf4org{GI_`;z#ptLcebrRF=Q)6v&GhA^-o} zcvl{QV0E)?blZ5cXb_a$Z}e4O`&~)ptA2rO>m>3wEwC# z0ahj*98h`t4sUg~%7Z=Tv~Zwd#?yJjj2nzXvTLEXB=FZriy z7?6o1+EFjiG$mK%jZ&-~7$pcIlmL1_g}*!!51c?=%Y%H7f^W2qE*lW|&QMu(7%o9b zXg`cdTvnY|&$MBcdw=Ju-1MzL9_TUue`QUVe9P7}p{E0nPauBFe}r3eMxL!{J5#=l zXF4mK=@$bdS;@R`D?>LULya{^b?YKJ`&CI@v%`f{yBr#(Sgc)W3i*3H7JN3RNepHu%8_ebdtR` z$^ch5G3om``tBqzXrxsysJwfTccx9;f?-|dQ78@P=~S)_A^n`q45(VY#YI$C&>JKp zN^&`85_y-E2OK;WVN}@zR!m-j`2)9Lp?5O!N&4UeE*D$B#Y})M@{N(VuW6(?**+R$WbrhH%0O76^*tK<`0q5<86VQ0HzkIE zOy8>}v?H*uPZ|4fk+>Oq1~cLv&^$G1`isF~(+ofT8^SHTG4Up9lCJUAihe>wDFnxRF#sxpQdl^(xpHZO5!y@{iBM7O2rjcu|xfe zOtT<)TPn}@ zS(*5)-$MUGUHt03jW)dU+lV%-*c)&`8tp9szr)=KKw3%yrz%Vo{00vKo5#mP zY)imyX7vE?vmtnIiov@X@HRG)uLdLBquc!(n$c2>PxpleiaSG-#8XF?)RRmR?Q64* zH(a;%m31?rJ={|bzAry7#WLf{ISJm(`8Mb}JG_wt#_SA}XY=MiSGi>%IglRBm$>%0 zR<0Si&JMCw?n)sqP9%rUo13(Gy0wW8<>~kyO3?aBl?7DkL{N~-I%rDN$^qr1l`E(c zoAt3yGQ2!;kKe#C$%qPdSH4)n7id9jsnvoinS&ZP* zt=86+zlKGw8;a3*)vsOU>dRV{7if;Xfag-4#VZ(YgWJEokuzX(4z&?}GMF2GXbyfs zC)oxyGuwN=hQXgdG;jvU6)kqM;Ngj``Ko#sL&~y7yR=j5=&oa^Ap|2Nh71$`r6%e? zh-miz6t)A+%6)B{!o7Vbqi1hF@M}w9_$T4e%9n$K@eP)*xj{W{Ax2pp?_}iZ-#{L0 zm)|hNO!NSb!5FwYoj~UPDnh!DD zZ&BVo)|IpEke-cO-sZAzm1Wxp^1uXF<@W8NtE)oNbYo~qeJXrfWY%`;aAjDsm=d{j zLQXk*D-Y4YZU1Hi=GwXGS1_zFjC935Ff2K>Z#h)%upZ`BHXV!aNKW}$@t4QqYP#gt zd~bwP<-vW*T+6|Vj)|qe=5rI^zYFkLqcCEsqw=Xdz7Kp>-rYWsvnJ%?e|=}LT=Po| z#7Vl&H@_XohV7v>5janqkb|_p7iO$I$Cfh7F-Q`F+p6SMQcKkna$KMm=51+S+`cRq z0>0O_Cue9M{o0zIF@ZIeueL8rX+lmmZ*RN4Kx?N=D9NVn1DQD?$G;&q=2c1)tmP?* zi*>~L$=uJbg-di;19PG15%HZ~snU^D38%&xh#q8mWu@lz)I_GBYa{F&8aGLU61giJ z`y1N@a=~$~%In*GV-!2{xSYyc+XZqF4ZQkqHee|B(l0@g5XCO5H56O4{njY#xEH0x(OG?@U50hhjAj+Hvk*6lfpt77^vi3UE<4tAcpw* z6!HUKBSe5Arr9V}(ljLp{qERLURjS-!qf{z%XAffpz3KiadrP$_?` zXZeCk`Qtsy*H_A)8b-F5jNEfb6bpIxFwV!?_9gUO{sWkUE-=35jF)ERo?lpSi^>DF zfqLEb(l?M}$!i(@A1jO<{!j%?CJN zp&%`qZwaX=+h(@r6%O_)_xQm|E*efK0fVApPqQ@I*`$$Q1@B603HD1O2~R_Dqm&E08p>8Av|XwQxi*i;qqiK=kHrn-7#BA zeb6stizRzRqKxn4mBJFR>vkzcPZ!e&JmKP*PvgMK-VJccNQG1a-t!QO#Pp1?XvqK?_ms zP?be=shr&>CgbtpMNrgI&yhNI?awQe>gs(#$2_j$2M(b)BtVz!TPE^J^CM$RL*J{D z4qx53rn+lxLA_ZBbT|GyvXn0#9;t6n{@m1_TZeP3twHOxex#v}X>n&C!kPfOf7v_8 zF8cV}W#VsdI5-k!p57N+@im{7L6)v*#=$23uHH8QbC&3#%8n)o`@A00eQRGBFwB_* z)?JEVp2zs;rT3QYH}Q#O&yGj@&c5u*d#eID8hx5$=`tEv`073DYr!|tfz@6+oUtmM2OFJ} z&-S%;W*_WYvIeJCzStKR1m2rhLP%c>r(1oHa9(QS%*5`S%KWGl{mI)C$w^XQFVkE(u_V7QNjpEr%9NaP zT^%}6Tay2BWmiHnzSuAHtle`kY-{;4VGWnQx^mIJ7T5Dh z_%xT7l?!m27sqYOCEtOsb^y@u7N;zFUwRN6!GjRi#RRo#N%GMReB=c3*3Tl-?O$o1 zEiunvu_1&7tIW<>_3y#sCfnT7R*FZkzA}Pa7y-T@Zs;Up^La9~^ijE=1yi}10cjSr zNH^GA5F0F4RpiFoa8oj!hiFXa)M0V@^Uo^VYsq)mUNB1^BjPQ#^Ne=N4c{>bLnQD{ zUz)VFinh3p(@Yqz{mf{h%H{i!(K8gnu)jPVzgV~*>0x}6YM>(>Do;$!Xlbb;XrA^JSl~_q!Q{;Wq@pdI0;GsJTKe z#)PWd5`b?4;M$2umsh#Zf8g9X-xEvHJ?{$)9>JvT1;jDTlYG<%*~twC$pdx!KfS>gsdlBY-5 z!@{4MH1qTbR0cqC5sMs|$X9$PI^}%nPs5d$^&-&x{~~ z@iH423}L`$CnHyf-{%pw=8Oo)95I_=%jYAC>d8G-MdfIs9OPQ} zr?p!Gv#Tq8s4N>%j^7c@#^J;s-JH6A83}HdHTq=;+tN=>JL6Fc+RN5JJWTG)xeYg#0Wh37HsVVg#t1C8-LEC{_W8Yx#~OYa})K%31o_^4O+)) ze(}@r+!&K?F!JX`;fs0LHdU^p$7sR3N7y0uyM9{1(0lg>ertYe@JEVTGa}G}%*Yna zq_wpTZR5mT!5Ia#lWl+J{%rf~Y|YQ)a-Wada`CoozAM=sf8C$mAyPIU>w-%6DzEHc zmZl=PXf^(~197s>Czk_UgWU)VFA%&J;Bp0#Ca>arp|4}*xRNvlQgG{t{LK_CV@G2> zI&G)#%PJ?3$EHG)9<^?5Ps#b;rBzw#@DGj0e+2+|!&H1VACoi_gqr(Zpx=S^3*}nh zqn%mbEjxj{cTgk+ygwqA3)pt@E{{+Wt~H#F0!l{-<4+H(amm>+0_2k>tj$Uf!}T6Yj+^7#=-N}dt-CQEqlchPbcZWcxx z8Z947{D!OJWm;~o$ssZ&ky%z&K7NjmI~ndA{s)^TYChCoe4w&C0ZZ9DOft#jW&_Na2l{?tvMlKxc9$?+wq!JYzJ zejU-y8T964G%ME}WZ92p&HiMCO%IoA4%!55lQsJnkp@OuM#IL?GLAaOUqMG21k=ZH z5sldiIn<)hsh2Lu*BR@(yQ|Jdjk}nt7e!28~WeKL1}Mf~K+G<_2=EQO?!2jq|$1 z870pq4b;lQkxcI%wvpWVT^Q+LmGwVi2VG`8g6SQ8bm=dOMI>vkUy)4b8K$GN5jF3w zG_7(UZL8ctStVxtfsqCq2(b0KI_~vB>-7%nm3@T`Xq5c12Mq4#9VmS^IS#>Gr&bA;FSa#mcDTgshtz!_g4ifcZ34u zCqITBXXN4(1GHs$XQU-nmLpyD)*!8W#8T|Mk#!>md<|Nhr&$@WPV-J5c^(W`xoV`@ z5!QxJSC1?@8JRH}UsigMe4g4EHonC*>OK8`UFZ8Mk5vUE&Gxubk^k?7s&iF4#+pqo z1Dc5@$lF;W!7LK3QIJH~_I)Oq_j2Yv$MVJ99}eNpk%8rqUSm_NRk^M{&@Pq#A^l)? zII*mF>zEfDE}B<*fb5Tg1?PJ^OsK&O&aJ0#H6Bj&Wc0$Z(&mm;Pxea~^2%qE!K|~v z;QGW*x&dPx1DIC_wUenyuAc)|C!dr(6T`NlhNl>V4wZCtK?dTLXW`a_-h>P4^pSf< z8}{B=7x;1_0TPDO&j53iV!P_LG{Tv%@Q;+EOG%=tHA%0xdo|Tv=*`(3eP2B?uduZB zQOIL@-_JvKkDtKf<|~YYDi@Dl<;E1XSCv6 zGH1r7j|0{vaJ%0J*E*Gjhc2-6S}=I{>W#(!js&%r`kw)=HExddAChR5=YRHjDcvj zFUW<}G+bU!mjE)L)5@v|7m!-MVo+paf+8C#O|EJJ!TG!nuO>g(R(aVqz>+41k$`b& zO78q2!omGbrkF4Lp&ep+sVNZ4hT_Ri!5HUYl?$!b(@jRU&D6bPc*?cGIasdYrOKM7 z05wOpE!HV_;xO72{KbgTLMq9#O@Vf3i&>SR$x~wNhWZvRun%=1lPZ#wIi)WJcn3oL=(i4|Bf%kLxdL zvWwc*s5fq;(@UQCp_?0TV7RymK2K^B19N+Y`o0pa+%fV7SFz5nm$~h(Y!k?du6$k< z$YtQ4ya>BVmE|IP;(5;0 z80m$bAbjg&w9Yw3J_tXZm*P{|5I&s|J~7)1Q*b^!e^~an55Cq~ZNO3YM){=8mCvdI z*|}UVT|hzQ731u3Lz}CzDiwsh!~#0loVL3<)oao^7LLq-ta8L2ArLKGzq?BI2&8vW zrnuSC+%*k#GONv%jj3QPCXcDE*>BVPd?qv6aul-&tvG=^&On=~b1XK4a=m;-x|&nr zY!@5lm7_UJot5e7ElvJ-RLL=4ZJsqt+H*N+b7!i&04!ug{qZs>(dehYlXQ9wUv)M~I*{e9 zt}HkAkUY`q%Hnh&Yg$WkZCJE|wOEo4WOZv!u47GD|Lm;sDs~yQ=VPq94vEt_Mpj5* z_im82OqR5|vU4Cy`RFm4x!JNDfw;$Py$=khGlt;*Cz?AM=^yQ-v(iCRAb+&!rU%Fy zX~eH4Iok@dvLU_2t_MR7Jqccr4R6chgi5w=$R#4&!~>NMTqA{8H?UA`SCk1Z?s9R; z^6oUSNBs=-h6 z`m7vdS2=5)Of8Mk8`)PXZ7y`Ky);v0S?j-nkC&zcPSl`r8L5Y~WuKO(TT8Mi9ds5D z-NIenp{w9~mH zrBYo~&-qCtvT~U2l9Xs!(nT3q#Ql)hMuF#wACS6)$GhPm^1YyOq#6JlDe<9R&oUbI zLY1crt`zOkEt6dzX;QmDNLK?54&`WVD8noQ zFcTC1X7?wR#y_&gZ4LSXFC^?sQu1OITscGo55DI7L~d;_S-{AqZ5K zSCMCXdQYG~XKJEMOUyYFKCN_If~SWa_wLd0`<0FxI-ODSp&>@Jif>k#w=FtDvY|(7 zw^(bl69j}K&tjR*Yq!~J;k-K^Mp?y(c_>p^W z`DfAaFHH%TRU&eN4cDb~sdH(H)M>~bwrOkxJ_Mmh1BK6{1{~?fnubR4k8FwnerZZD zOFNEY06i-O)1iWXL;>0z74I|To9BjuVtCB$Y-st9tuEkBaJoc z(jYw!Yb32#%gd=6E!({lbJfd|!N?*)SuF?8Kl^Q_}k*t=lWmE{kg6sr2K0-0WmG-Wr9kl4f6}Sw1N+ zmGDBBM*BJ7bIlVGMhqeJHvBie&*$;4e)h|ZBxbPw+W#QPJ<2MNi3q>4N<%Y!v&?4Y zB~@lFK)jJSB2VQMS&H$OjWSXjOOP7PBNeKAJk6DPWGee$nyU!GMvv0_GOF4a%EILnnoV=(|{aOxfbEos37?U?NDQIQoT;|+$1X&7T6*OCCEKplYSpENzXbV z7{t>oBxOZaApdO>cbesR`vE%H3A>0gkLZ=O@syyOmXaG7l&q2< ze8@S?%9DD|V<}CKkQ=6La+>97Df%2P);if6B|N;JJj5X2Z3{NGAh}gEv&Pz78MfI) zoAQJNowO)j$ibp1pK^%u&)9Ky&p9upS=nU^N10=tdkPGmR+hJ9O3EX4$TLyr-?#E94;zeGf{N$j^JTAN?s7YvJ*g5y79#3~k9 zF(j6M&P&OYCUy8eu(`E8$0zb=71qns<55XENN%7$FQxM3R2Lj60YVMW{7}4csvCKr zlBDJXx37TD1V2XdUnQ&lpP=$6mEC#_<|PJ09Y9H~^dPyX3RS7a87vpKGY2!d7}$5j zCVyoNr}O~1ziJ~#xCUn_<#T!2X7Z^CJjitC+2?XxvcS!KD@SQJ=D`#bG)fPyPTpvOFxhgL8on;eL z*}|yRX3%6dA3HYwm0_96^mdm4QVFo1(vE0Pa0^_;fwv$g*EypAXEf?j@a|#zRO8Gvg5L1@YS}Qc{L(Lzv6bkqXS1oZd@5Y1>3Rp0N>6 zW2Fr(SIeO|$2T0;lL%0%p z>@Gp*BqE0DtdzXl*7I|jYr6q#xFW^3D)R^|>I;OQwH8B5*+Y$X9~t!F2_67E4UlOEUwnixD=$?QWkGvR&Cuv+XmwP1sj3`8Db3HV+?u^(aTAC|T@(93}_sx)%mHDZ4 zD(}J3&q|dotS~DlaS1i+yL|x0$-9XSiozOzaSx^_xr+X+aOW_D70v==Gt!uh`+qh$ zgRQ=yr-tx_~?^vK4(A|#@&vs;6spB!C$TBn6)21 zIz^?NR{59#SNsVOZ(XPJq{$ z!XlwqTzQ<6g5#5b6qfC){J>TDUXcq6(h)!7Vr79xoDBHiuDo%;)RuYj~{ z+rLv=v_LQrcakzEC{_eHxTW-FFYiitcAzf1@v~`L?Z#6jsAK0Mdf>$6_mOT07NjWJ zU_Te^V=~d%!Ixb%dWOo z^U4CCS;mdBC??<8D6>1p1uQGr9J7w~dsd+J0?-2W8*IVDZhgPb2Q8A(RhHd1)I&Np zD1aTdKKu&%2D)quCt#U8nUHvyMhvR-`^Eo<{Z9XnsNXA7(ihnsA)DYPDW`%^nZ7b* zG~Z&9)`Y2Qq-~X?ii>S#7~?QhWUy`v$7bw{tJ+I4sWdY-rgRUE`k9}SYWk5qmO5vq zR4h?;i!(ok5OroMyufo#k7p2KZt|SX>(b;wvtvQ~RJlh9flz37l?JgUi1e(J<143U z35RDmnzB`yX)vN&m9^Tpy|yZwW@Xu}%BEUb@2$$FSXuQ}Ws|LJo2|+wSy`X0$|hRb zwp*2*Y-QVRRd$k4`E$()(74^fCcXMRda4lPh*=gbsYs?M) z-rb&)Z`*TCAipog+_ZUkWdhGs)i9Vl5ZsMLuhBU!p$f(Vy44$l zPp_zXXSB-ZG|U_p;`z?-$ahkM3mWz-MhOkmwkuG&TCpnW>S^aJd+_TZ3k6LUR2-(9hwTmH#x|M&%203JzCf zXE`A;_>35ljAyR!?XQ$G2CU>q^kcZOCoAdm>Wx%D8*f&vLl5mQPox4CzEM4j*B~=H z{Z+ctf!XMy@`q?iF~`2%>N@>p0scIdms(xEx`2`M)w@;eoZ)ho;aGPpN5z2ayMH{; zYPn80PHyam<$=Z8u~r#G#>H5C;hZW7l02xnSg=3?Dq4;RJqToi>bQy7HMplnO6E@_RyRxO|lk8jux4mrAZ+C3D>fw=&z!QsZRg+-VU~y)CSU+&PWwV7DF-&Y_k%MG(s? z5r@c&S>TaP@O49vmd|!*dCSzOTi|pmO)W+}16$rP$CB zG-Ew_UVUZ!E1Vjgqc_@R5g<;!!IupdWhrx}x$=qSB+MezB-iR5;KiTIMyIB_W3C@Y zDyR4POuagpnB&gUaO7R;J+D$z#5>4gOMi}f+3}pXoRq^j$+NAE#dbrTa0MfdU?oD< zkvUUY)ITdL%vnkoP&@%#*eExEa9LvZLAvfKY;m|wv^|H*%nTpOmML*7!&RPdv(3DA z%0g$jOwR<)Xn8c;#JAHNWMs5P8scybV+W9CB}-e%Z3xcje>kM4+90BGiJQ8G>+DNW1q^=2tzQ8{&*onpBL+c?GR zu<zP#TB}FZ-%(g3u%&W zUgvwlZsb8r&eww&4_EmUTh%!vD}R;187^l`bL}+F1ygd)aCtiu_|75np1nG28q^~r zXW6TFGeyf6#6lm!5J=bQ442=V7uCtgAEyvsJY3WJ%j=nqM4((piDspRfYob;p{8e4 zX8w|s3By(XY$M6Y*;7h9e$KEh-iE=;r;~xjT*c^d*;E6<~Y+08Id7ueHHq0i zxSbDJz^Al`6#C?3fZL^D6b(MfCUl0&A`P-NI2G1dV@OE60hl%uo}>AZjVd+kREq96mEGAQueBOYUkrbU z*@OJiY?t8*NxGaM#N5dGwwg{uV_YaPgOPK6V}@{GGt&_1lB9iH`QMdcmGJ90qvdX} zMYlM^Uv=dZ?x`r^8r>js7qzlXK%BsNLGF|>m2mv~P zmjbz_ovjCj;jt)_OR+J0;E$7z?xG{!^C_|?`HMVV15}r2UYFo?+gH||1Xmue=|OU3 zwcX;sWfCo~c81F-y=O8^QgTn^Ua%G+eNPe)imH)J^ZfY|s1e4RyCCzA>EFp<(lauE{YR?VFmMVCgfqlJpaB9S0V zpzDb_LIiNXhc9MX2=_SG=}f5%2xM1$!{!F}RDM+oJ;Ql%im`Ro%uuI}b!>~Ax6r@y=_#4N}e z?XELSW?R>93m)HLnw4{q^W^mQujz%uR4fF`=`U|fk;n5*M!;IqUtXg~E}WKg_LJw@ zHaWv&8Fv~VXERydmUD*5wHVFe4QPjAM_-ITn(elM@P3R`1`Tx2wNL+HUACezKh!9j#hPSI)ym>b1~AMo>J2-h$KXgTKbF<_@N*g~!t$$800{$eA! zh@PGOVEy$*ehv=p{y@o2bYyM!Sir2TYIE@& z$a7@XAnDR6ZA^w>ykW8>U1pQ2p~tz~5Fqr{i7uK3$MC?JbGHd-_8m%7f##f1@|HD# z4{R7WnW`sTk~hx0PkCQXgcV>1?2p^l8Ag5tCy-BD*%{?@Q5*50yxHoKesq{@02-9c z4-v{j+b86><-njH$TOx+v1~1ftX98Sv+`UDvrnLMPOF6nyqyl22q{5_$)jy1n5Y~^ zJ{=E*Ri%&v7LYr1=pyRWD3y!a7AEWWnn@Vsw78N1tNc-las+iKFCavm|3e=%sA zo#2PAGdo4(rIV5S46A3u74I~z=Q+bHoRVw2=eL$vM5n)8;ecL`w7C`o^U1UXuT|zc zWeXo8z;=BrFAQH*W;kUV{o$my7#5w>%K8v_r@zuOr5Cp)h*Iw(L`jCT8(_g7TPw)& zhRw6mOmB~x_vGh@~;mE~f5?Cxo-(Q;S>0?*`I0%rtE?F^F}TS9vL9^(8K%gy$Tb{A(ik5-jG7WKv(^Q1~9iBK_r;kmB zc&iPOl+kRs6zY{MXfKh*QC_JEh^K)GAogKkCxUTD<>Z`tS*Z@{i3Se8mR?)JSo;Dk z9paLc$CN3XRzrP5=m-4@Rd*)0X3OnPz@0m&t28OMhwAh)r)W*wHx=p1cSgtuDS$OE z+zRqWTa;yT4IMpDRZi~~DSL%vS|zQqu!PX~AeW?yupqehRloyUl13M34d*W7M!W2DPwr{Uab$2YZDU8WVVz`UODJ2>7WEgF-9#B@VXWTL zR5_OT`i@I_dNfka2~n&M-R5Pp=uIR{+|DbqBVo0-Pc~M2p$6gx($VJ1dOA>ZoBW)? zda^hi;XS;#D;~|KSSU;`bXg(1#a_WuSK~fJuWmy5u--tm!77WwzMjn0%T+LLv+wLiYE- zBlj7b4No8g1N8`B0^xcG@>n|H{FKTAF)$xP!~l#oLx2a&AVY`+7}su{%ykj*lvsn0FyK_F}Cpj_eCoT4rfr?kSE8 zG4;NH7PO_y_>VH_UG#nDAlYELGxu{1Q#nJ;OU251+GIkJnFCP~z=3HlnTD*r8?j`p zRxf>L>I;OX9ch$%b@89k(GvB{V$kSolk9A;61#Z>iNhyGYDPa}16#PXT&9N)rNe;$ zDTt68G?XG}4g$`=V9_4v?per+1-wWvyft|MX?M?=0V3~*S{#!}_xl2y%P-8@g267m zyPUMC9(}CLp>cu*VpYV+$R~EqTn~foFqKj-2yOa6Gu!NI4Tb8KCzeSkhOx~~y}2M# zOI_z0Gx?-1vx8xsYIqe=MYt_undzC6T)4n%RYhkQ^qYrQIFMRyTSY~cGF!i8CU;^( z_Ol(#=VuHCT?A~s2FXsI<76P0JR8d7VkLdTgcxO1&hA~Kh1lshJ$WG)^scGyFq_6) zrz<6IV`Z_Gw{-o``@Azu&g>n8Z$pJ=n4H$T7z_9VkBfVe6*R_tGb(?b=sLAu1LwS~ z;eD2~iJrnY$6ow#w^z^O+b)2a}ouoX8Ep< z{O=}~%Uu^@B*&dR&F-Xmq6Vafen6)=bKqa#b;!)RC0+LAgp!TS&Fu) z@(}h0^j?E(vKa@Skj%LQ!wyP69*g7hX{ z^vjcsKg=NejmoBznca-uFmiBNvRjA&wQo(_l2Ub9ISkCa__I5&^2Ba6*3qXa3q(HE z`Px7ern$l$&ak%M?hWU`)RKc1SvC!eGStOQa3@nxixPFeWN( z3rf%uP-QR5+oou9IXu87*bCFIoFnTBF=7@@ih7zT_r}H}%xQCJTw0TW-j$VlYpQCh zyDSwHB(zh#8|&FG^Rt8+PE`5WLRx?|vRjwtg`8DCD=`R5`A_W*=oz(VOesZ#3J-6S zGgLM}@|=ls#uV3{id372^TOyE17n5-<#;q=r&^28L4>G!!6ev57Tb{L43*c+UKZ`- zi7GRvn1pxIr{I^2OEi+{lM+armm-jfa9OY31X1hYnG8KmRJj2!iRHa#EP1iiQiN1_ z91Km}Lrr%%ESGF0Wm zUO^+1xNUBa`n)zYc4|kHI7QK*0kbIL)eglvnE>8+I$P^x`=CMP zIF8EbcqQyfGL%emRkka#GMlP6#-P&KZkiEWG`oZ53udkIq}S3h#y&~EQBd!z!rC!2 zTk5qDIxtJ|$}zwxiQ0C+DU|^dMn#N2#C}n1^y=pH3MRU9RKz^RoMmP3BD z!>CVs;8*D&)KJ#ZAvs2qDq&U;Us9Idkd4{?L zsBp(V0q#@CmUL8NEt@x^(&`P^Kef{`)X&r=DPf*5F-JDHndL=JO|6qJ+7`~zd|k|r z3o|P%JWUJmrcP)|i`HqAwh(BLEpV($W$MBhY6E9gKD!EJFwOwr+Xqj# zmNx4aF#f7^5W}&#vjUK_Fcxu!4hF{phXTe-_k>)sBI4qwf!{#?hmloP9k9 zBN9u;8H#k2oWD7)IaHp5S!=h}tCuC!V8}xmw69Grda^N>$eHaSYGQn?#xjym-pd~gP8f5T4M0SE4}mtxx0On zEUzkNMv$1jKbqiY+&`yXI0vCd!(;WAD1PKHGP!U(dPYY^Qp*sP={- zr}zHMX9oww10v_=3>T(Z77&hVPAQdCe#iD?Sq_oYvjH#&c`u+DyUBNk;$m%d7Nz92 z$p{I90)CG*(!I_ZitXDbTsD3`ROO?I=pl1r1$-_Ub9kdL^2cjAh?W6 z(&ddfJL&jL2csPqN*HwmyU>mDA=nD)W!FIW_#5kFG>ZXM^Ulz$JdoPrnn`1Z1kO;I zZ*+u&@T{}#*>%oX`D`jOKLgAg;PZf_gb}z6FUt|h7MpNxJf>>7KEwG%t@k-eYV7X> zHYS^DwtCqywzHd*D?y;0bcjC9mmx-T8Unp)LW-Q{`F<;IcZBo?(Rx6Z}h6E z?jqE^S!Mzvo4*troMx4c)36K=mG{zt>=b~PKGqcC);yKHmpaYz7jS@YE|q{!*7J!8 z4N++s)b->*BKze(13A!@?-o^_Z7ZoCiC2A(_Kvlg;3Ojj~HS#RX~psNor#YbKjO`kbLimbf6%b%@n;&~1U8LsdAX+Z-Ot z?E!+7tO!c)hm#1Q9IBz49aFV@zpS3hF{{w{fA?7!|tDv$*LXT2qQi+}^T zNy0Q&z4W&?;d(Lh@M=71d`u7%u30=Xhm~FmXuXt&7BD27z-cDwOt?m8hb#9EaH*`^ zdYrC6FO{4v41kBE1Xwg^~w0S-}_X=xc0^7&QFkPQeVKJe9K{=9RDd^)Y<0AfI$ zzYLYx!dVtvn6dlt(xmwk)`i*Za|omDhtsFBA3ij@<`T^-Of-K}JvY52v})jjq=j3o z1%yGlzcr__EFH-Gt(#QtNSB#llX@-6ji1u93mu6nX#S%uRkvUAx6O`LfjmFJ_1B_=0OzXVz~tM)B`?Sz5(ps? zgNYM|1c#Q?eXkqh%oCd=lbO-P&LlI!zE{>YVDO^Y@~*{1wk6vF#2S_m%pN1KWFxa1 z#2R)C0xw{|Kp=!Hm;eSWK;Q3ws;c|S79{h|^M0?AYr3ndPo3IMojO}xZ<;=KDDT`3 zn|loX5q->Sxm-`~VVkS^Y*32?+o@`u^%j=+kk70XLd1!66CTJEWDGI|@_*oreue zjb@kLO%7m*t^r11l;%~#@>%8!tkr0n2oVaH9$HwfM$;Wd62tbvh0<7T6g$vhx*u{~ zwEtz{9oB&5YGK@3@mCjQ!e{DOMm^Uu!SkiX;J|?#=={| zh`WI4t_Ezf7~;ohAmBswB@q4~bAggM`Xm{`pcm8N!^Rf+Ws%GYdTDVq zC?(xd*IlL=Z^Y~L%~e8LMu4Wt&qa`V@#Jjb5F+MK4t(@NL5{9p>TxCQ6mhFeTip$q zxha)5QKbh_;%YRIUec|-5-&`9)wkVYCeCgARtYFE8~b;W7fIiX0QJ3XrCPY6P6Y`J6F|exSolAzdN_ z;X!_2It!Ry!WmM={d$E%POTq{XEu6R<60HM^oNEPJ0Y3gQ#o*&BrKJ-v;bCt z;N>$-1uyE;rQ%P~1IQSl$DtuXx81+6nlWT9Jy0}2&n$(M86z(?gi|duTDLhG`VY;} zOW#M~DZ1kVcjIKmR48{KuW!ck7|qm|$bnP85%0Q_^p2>F&_RV))2qv{kIlep(==d9 zK`u+bZ9r;1@o9(bo}HuUJNp0&M~Suu53AA~CAb1rzDJM~r~-O(X*J$2E@+32P!;Gs zYp5-Y>FlN!vE#}x6em7i)!;F`N?|}vUKmVcx*Ud)j3K2b6CvQ9t8it@Wf<1|M-?Gl zeWvR$^7I!w73ZNrVQ9v%ik`!C0i-|cPC8$A5*Qk!zJ*<%gBqHlhjKwoJZ_7I#HE|HkeKNGznZ>?I z2%svUs|;A@NP4LNp>CYRp{=Do%UbAMsrZkk#Qqh3P=Ls-)PO5camJv7+o!==0&^VH zjcTF;P4lfN1SUigJfnwEOlUD9wL0?O#lXP0<1 zE~Mqj9D49?f@I$kY%n*;&fU5c&mUn~GOfZ3(>}a`jHuDHSH4({&Q+u7L&!&FMWT`A zcSfi_3shH=TyXSffqwzuGyMrK+D%2q_bqs`0GGeZxG{adMWPcH0HSO$z~ONY>8l~^ z4j@vfXxF+|Y`zsKwD<*E!EbSi<9$1qd;YDn2?rni=Qbc=N60|utdi=*i` z*r1vAp^NBdK}|OcT=o4J1-c6!ZFIi_Lh;Z-ng8!{NcTdP&H?P_kw_nMNcTt~&4Yc2 z7S3&%HjSyNlU^Zg6+Y~iWu}#LD@<}N7ua!kG=6WwuZHHeXtIQkW;(kthYrnWrkM_E zHxbef%`r}W@bv9T(v6~rEP&C&XnMa8YE*oC0T^+pOYw3kUYOn}3^7Fqzz*ncp}V9b zE?V4&iSZ}!yr4S#yg0E;%%{bFMW(n>o>7gC_i-pgKy;dg^WJd-cs6SUoI?PETJRBK z_%a-iXk7uV$K5&G4I@r1F8X;rMuK5jg)?r_9{w`u)2lG8=tcdAZaOGbqv>}*9Onxe zpurS%G<^(YnQHpzTr&_aG*mlAMzE(h>iqSPtjM|Xg(V{Fx&>hA0qN7xdeX$)A4AtF zloXagbPAfAhG|#<)58b{fluzle1<5KIHdcQ>_6SFbwPUMV1uZlkSg(NxbJ8-L684_ z#Pd2A2a`=AvYi21L?JU;@{@m9=*C89kcF{&&K=O!M_&(VvPZ{;a7*k|1+;pRVdXy%5qAMo z=OTzrz=gly4$w!7P4m=f*s7qw+lyr2_G{^Yw3M!p@-og(;F!g-g4IDeAq#Lc z#ThLpfxhMOk;ZB(c}_eOjpLOthQVcL?<_>c8rgG-VKCeZGOP;dO3T`vrSH!A>~lHO zR`Eltq-01M~iy@h#dC>`PcZ|z@zy)VVbUC;rM1B`jJJ}ay{?H2x zAz@AF{-9qMi6xv1qYy3qO7V&nE4Z5Ohcgjq$sNreucY7USK8bhh1|(L9QDHUQZsnP zH2W)XNXBsBjO)o}j8G85^T^@MpcAt1l+luY=)EY}4g#p-lSYV$V+D%)Om{5A`m%W6 zU6f0)Ur|E^F!Y7BAua2Nc9+J;Xfge#hl4hKTVCm3BT>YkRNAa}$!t0b~0*emqn^Yr{evoMFGJ8Or9YoPZznC5|Za*P~d!s8LL-9Xly z1A~>3SSK!UI|`sRSdF+sTr8z_*305wKP;pz2jJW}3~W^``=T_2?A#EdKbls!bj`2< z;~!hVP8q$l4DyTTibLu`dzj=Pzd!Y+Tcq(p4b5typXl{>bmZHWcrt3#YZhm^WT8iY zC<2k#xWF@_ywS8(;J_jijk;OSGmO(i5rSKj*klC_+M~zm96e6^5xl2|g)pSQsafOm zL?TA$DTB~tI!}1}RJj?a_m)nq&SYBJMBgvniwo>P;UUT>&Ylj%|l(>n49 zZj|@|$n<2UM+~N;QU9)5R_$YgWSWGQIm0y5oxY9?-Z<0 zcFe@6+G=o?T2)-HEjyX|%!v}>g8Kv^(6`BSx16i45l&$; z)2?JY0?0>lmdUhPwa1h4X;b%P`b30GV$}o5pY`)P6x1SMIu+LQ(23Kqkp2q{#VfXo zE0SR<2w)5#8$5V#UZo~dt5hmjF?~esOvzoaNt9&Wdml)=3Kyb^ZbX1v=s}c#ttZ26 za-xJ-k^Pg?pnz%f63kJAFqjP8BKY@* z8oX#Fya*AXaP^R}{EJ>6&Nt{*+J~K@f}=n;-P@zOUI)w0?MBXmV~JigqKGnUp=?J~ z{7Nuk@cqUISap9}jGOReI>8nfOT@{M1Hsr6OFSbMm`oSCIhqp<*t!^CuLd|w?#W{T z`D`A@E@7gg^K%;Xt0xcc1~*6bE%qofZl^)?;w0^Y-T`-`Ek>Xz;Dx*QXXDg^0`pu7Pwi}-tY z1uLDe>p8Rh`53kL?5C>)tsc&(6Pf-ST;|0|7d94d+e+J}2`|JSN|08zbz)UOhbYw; zk$i7nX^BIN9vBXvF^~wBc%JMN%wfbNGy}gUw*<;BFmLm!EyK2aS6uBmFcJIQY7;M- z(o^VD*!9RUWH@x~SQ`?Eg=v8|J_WO)FiZ118Xjh$dOxxqR>D4a2joD+#R13_{v%#5 zxUY@AoP&~h1_lS5m@B#vurNNmB$FP7A+ktkgXNK>2zz{}YBX!-maLEl{tzq3r}}E= zSUoP?FGrZ~MKhsMgyt=fa~n*{gfIF=$W&boDhjv0JDygh1j_%?2&L zE80cRG_}Bf;*Z>p>OWcHv2)a3jEx#YD=b#~a872rpt;44Q{pw&I_)X638C5BLiVe* z!uGZ%Y5kL!Sh6v?T72pXV~?o_2239V(X3Ep*{DJU%yvybZ}^)->{jbXY1Qb9F^ zb}y}FXU1OkX-Ovy%W-)+2xw+Y0LEWV5l#pu2@W_~mEMhHs*c$5vNxh0ITKt*8zRxc zt0>?e%!xZ2ThtVYb!1c!P{bGc6V~}pqa#VxA0jAs3lweD(F1b^^u%M09{V^z`Qop# z!V;RT@pq5mJE+MR!Gyq$!M-DzLvNX&Y2xn$qq+=d5gCOVTDX-OBg3TLHzO?GP^HCP zU`SW84PxbE#(mV_(Zv*kbQ~Je>F_raQ(~VbYZd4Kx}9XEVQQim(}L4MJpud9I6AE# z?wO}olgeR@HpqI!Vu4H*3~w#AHEtCOIOJmm>aBY@Gxy3;Mh8D3e!G1L6L(BsQGvDC2~P#}N=8}&AuO-YsvBo_^RsHJ}yjC`ih+Z5V}igkaA zx@HZS4K;?g0XC|?VHxD#W0-cRP$n{JMn_09(kV5CF4vRrS%tZJgMQI6`YB9Z;0p15 z-)DW#i0#B;VF!i}CRi|79wlwOySW;{O4D>?h&ztnTMF8@R)RRtsh*BrVpQHKFhv0s zh|n&eSz@6|hwNgX{;h919hn12kaSuA&xtUgxw=RRiu^}h1bgdZ#E2M)5Kib$FvSp@ z_D!en2p+qa0*`eCAywg?B6PPnLikKSuU0>&Pa5S)rt=$7>|Lx>v`w^Ah~owS}hX;vH_-I%p;oJM}96#)2iX!=7(9HhGB$`J4KK$NjtEEE!0gYLKA)-H(?P- zK25O+kiAh^4vsnqjnhj15iN`Ex1+It8Dr0DrZG%~1z%L?)}mjrS}^o(ihbwHgn-{z zTZSd*-V*`&K!70LuCK#A@eYtjEj{RlQ;p&Hy5EVuSf1QT3wsOb@llPQSg z2H{^92bDpkoNjCKU}XOm!B`C#m}f6LLiMkN9W&lva(3zcL0fK*VcHGnOErbAXskB8 zgD>sEGDZF?*b-6q<-+=;HMznqF7WA*oIMSCRX9h{OSnq_rNvVNdZ00KM}RJPwb)p@ z=z=UP08EFKycZ$xD4cP0<+6S?g8O#(=wltmB9C`Ql?v2{|DO$m6J>H4A z)GEfrU>IXA>c8YI?mOq{DMeA20FfrGilJ-av_t z0lS1Y;`Mp*>ym0U1)j!Y+jfhb0%cY|$*9RkH==j&U$MnQ zjWDm+A>dqEzobu1F&YV}N-k7DL*7V0;xdNm5-caA`~kLTxS0ut`8%8+(~N#PJcN)J z3NyGK)ucSl;4qc-h;lh20nO34djXH>pATqzO8Wmt)$Bvt1`EoALZSEIix3Q(igO{| z-R#lvAyzeF}=SLk_t-;2M0&xR@nCOodJi>xw0M zGrgIkh3JR=rsKBjGn~mfs=!=x2_tnpHhblfl!ywCtTQwzVE^k z!8t~E@D0t?m`hW{SOC=aDCl@G@xU;n8pw|W)&%vMW=QC#Fzo_$gVkkux?IS54dmA2 z^iicGS!h|{-vR@f4Ua8u!H1g*F%#O*?3Y0?*w?ODc3vanHknkn$O_w#WO`(=@FW`p z91SrCwty$cB_g^FR|6|O(RL+5X{DY}?9z*HWmHq>szUklDQpD5W1~p$#xOl;Q#K`W zh|okeFrS5@@Lq84$`(%bJ~ zy0yv3DYRQUeHUX+6Z$ZZaJCk?3c6)m6PWTF!6d6H>Rwch#48I!^j$YnF;{SJGB{+M zt1{}5BvU*13N?jYde_C(9FHWaeNm^HLhqtpC}MnWamqF7-5fQw%~?jjZhmNB(sw^#%8@dINaTI*d5XEdxtjEHmWfEYWk0`!*_ z!T4qho#%#@i>PxWM8v9ERnZ>t4j-EKuZ8jn`(OhE`S9JILLX|CS?gj!u)k2O`OQHC ztiy1oJF$zaDY!O?yVY=G)H#J7N({im08(^1KMD5tVmGAe)gZ(06FL|H*TiPD*J5I&7}MuLl@^BfPKASjZrr={Ne&@o^QBuuX?XPBHze}VRjE%6ToZGRU!X!Am| zlRs9JlV0yZH7@lP<-nt+;cNk(F3Y~y#tA4uk_WwlcA&wxHEX(dP}I>?!=sLV4Gu@MP-E*xoO;6_R*i@%TqTMu zOcxv-$Fd8%C{=**)3oCuOi^~eu@|c>n-eyPx)*g07Q9YjdP)jnJ?_9dqq78wR-C9H z<1@zo>qbUZ{~A@VSaMurUiFF=a`Kt%~W+;!>Hm*d6f0=wljVxj?dN9Ne#JO1kI5!khH_z|0?jrHLErZ7EYK8C~t zLn-HV>?Ua;lv^QjK!3Yw*so0X)Fk>Awoj0epLpsdTp8f2 zNmPG9`T8K10NI_5rXpew$?hkaT3wP{{jg(aP#kisUXebBt zh#*S0U}raaAgq8$tI(VG&FW++&V@k9*#+T?Asi)#S-7+Y;#TNe)zJuVqbAY&U>>1V zNQP<>HG4H`BK;}4#$OUS zS!U=={KktU3EP^lWra-J5}NSIxZKoSU2beV<*ZDdkbLwdLTn^}fD+)|zmUf-~u{J zDC&-gM&?)2ovot8lwgBU?@Xd!g16%=PiNd8tB+l3BG5N#o=HqA;W#T6_B-TWK+Eb4o#yK!*cu^Z@;v>^>lxZfSZYzQ)8|$*q6s@g__lO^t;RiErl!nO~n^ z$i}nprrVjoGvzpiYf8faDzbyZcKUKo+r8oFKnLe=VuMRZt63d6HHqFxgh1!AW)GwN z`$Q-U0!e3MNeC(Rfe`2uXVfH@cFQMBS2b7T8!QYQlw@IX4xj!?L&Md1vIwSwT!FqV z^^kqB&i(@`Lp$@b!IABkgfA}DU%WoV7s$@X9$yQ2gbCu7q)ZK;GA(q5N8>}<(kymm zjUL>#8RU*;g5FO<+nCytI6~}CpTTxz7^pCkl@l|P5r8X zK7hFt5@>a^2de^AK7M3@QR^6EI`KsMr&5VX0_OY# zrgP9LIH&ih6A?>+eRTqzlgz0TX-`upN(>}$6e?i)?f_@h2{0p?*spgpNSG!|q|Tv? zE|@-{P@PE6Ev?3S#PSsF)QPlI)@r&3jXsg-pZnAa2;8hrB*Y;;L9X~g#yjFbTmzgC ziVVdIc$Yen{wkw#0@KG9x%4hU&egc>k60iGXk(BQ>G>vz&Vi4JgHNPJ!N=G5(8NBy z{L*l3JQ1QFd(7_`8};J1q!-mB0eqtDBiq#^8i%m}>i^OQ_~q@~s!l{Oj6k2BtG*dQ z!2Rq{dt=!{01m=C6{B2XH_hF)@a;({jSXy#h!SKTrl`S7!^;m^D=5;KMnf8cu%Nh{ z$O-Y`@=x#9S>JD6_+=v;%(^Y{OTIz6ccO-Gct16(&p#+n1e`xT;bpK81 z*gMd%7eo7i)g^PH2TZC4ldbG;&vB+HcWB>E$fpj*2x2TIGCkU8 zjbI9Bb5!+*a(0Dd%%#}k=0CwBo?iK5)CjjM5% zg$3I>Cqzly&j9^`yfMAeSPc#UhS!opXEq{M^c8Z6Ev&lk042tiD>%^!tB+%iF=*=e zPTW4Z&R-QE)-OJ~s~P=y2#6bfQ&R3}#RjZ};)wmKI^N(G(ut+fF*{DYBw5NC8?>-4N-w6( z$x@h!m5I6T%J{ma?x+m5KUGE76T&BlOfTVrbfzoyJH0A$sIz2phD?8Jf*G7DpnGKF z2-&44nmSbh;dZwSN~~>`jRkVNjH+Uno&^_*9NcDF#S-rh9fx3BAtPimR7=p6O4qd~ za~jZlO|ea#XPeLTezFvw+s5|hWqqo%ko`Xh(;YIjpcdYQa$6N$EUa{E3c?G}N<@o$y~m1(w_K}EA%HEKty$#2h#t~*sDSomJh@2Bk?Lom31oYgWQ0cq7~m!5n=FK z0}kZH4I+J2qB1J6$&^5cx=`GXOTXeY)q8hZNAIo2cZv{3Nb`capzBLTe z1V5_dVg2pUb@ayNw(4?fEbVkdG;TdY4MLW=O}q#~TE7VQ?rn2(K;eo7{kV#?j}F>J zb=4}QOPn5d+fe>F7aLMY*DdlaKD|MN&vso;)GLMoD@#Qses4>lTd)=FSb-%^&DFN> zy14LOQ&`S&h>)X(2g5wWcrA3-rOwZz5_Xj~f&-SY;Gm9~@i#9v)( z>&8|cthDW}3M06elQ5}ieomc0R|}_dBD->Ol!bT^BqTugNi2RKt4?(3qDE=JA02Gr z&aoe_u-@=6_=#Efmn zi4pKy4DkILwkIy}U|d34^e%LYDilBP6B&NsATZQU;2z&?=tSl1V(sf3xtCXQYo%?| z?(as`KCvIrKZ$-lqzed)-k%!!0Of+gP>jlI_k;+_GaAZxQPrRYt(qRZBV&3Z(+7xG zr%s?YVQoLqv*j`iHlh(*zZZf0g9gcgI)VDIyMRk>S0P<5s`Fnqp|vqPyg$q7=kuH) zo$o;E^k@U7|LwAgPl9=^3h8!g2dmiM&mV4F{zODIZ;Hovi}od_pZS% zW%&55f}u3DQ%2z~YL||X=|N95R;v@~gQk8J(iQ?a068;4@5J{buq{gXT9F~Zt_@5n z_VgWjN4$=>_ywjoiCK<10TBo^DSzJS!IZb`rZp~dvw{j>{N}LoGxm_256r@~&d%fy}Dx`Id5TO^a@%ay#)+>aW z!^(%A%MC!}%usa4;2zcBLatCJ5cqL)rYlk80OTX|ivV%+$1?ka2%qg5!2aaCH!g7< zEOw{>PT7Bx`4hsdbUXPAn5Q~|D6z-(fdu5||3=e20a3yl(l>`KAFMc@mcW>i~R zx%-C^20ef;qQ0Z)74c{7PqYL1E0nmA?p}rkaD@tCxyL>unxmRX_cwS(<`>cxFp~xe zZ(}&EY1aU1st(%0Ogn~*ZT*p{^R^^?38Bf^=NIV9A=P>TEP%-gVQE)@yM++HIWNZc zZAqp*5Q{GZD|&G<1dO(3j|sQQV-B|&^VTDF(Oi%2LtH%x?ZRog9n2cjBN9huIrIzy zZ(vai+$LZ+FdS1H1Sz0PgbpK+4r^A5Fqe6}mLr2idDN!M^fgsi>Vu1sKnREwL9PWm;_Fn>fR5Y7Bkcg!|~)xYF&$x6m_8#nk;2D&B9vxJF05ufZcG5HU+y$bUlBk&R0qj?%51&91a^s|k6z z$CVaC;Xy?M*l4i@O@#3sbdykD-kGGYhVW#;Zt`q0M8Zwb5$ikj^low|Zp7A!IQg}j z^BdGucP8mNowGAm&gU=}nm&6cxid-E>yLIMv6I}Hq|5dDtD1|@|9%Dp6i1AYN%RrQ zsXLP{ecafmCQ*xnOm=al9SDY+NSh)_-kCen5JIC!x?Ylj7L5nQE;*o1f?Wh&?m_>Su&+*Hy058PO`^Ndd=NnyiIYS3hHiuTG*3D9RWPbrMJ(Ec2jOItjKKuu&DujY)Vr4ENf68Fm|Ll63D$ zxalc{nl~o#`6GhdEy*wswfi-EU@WT4&mUpz^(WB-`Wsv?DSP>6Hvn9+{^mjb%^m0~ ztna5afu(wpetp93r((p6CSs7dtV zKlGg%iJRBdBpi* zT}e7yzrUkrmj3rM=9g#{)LluJJ`}3f>hu6YdlN|9yUBL+CbeOaF@2zWy|t-@%V9ks zjH@2?fd~4xzBK)j5!>)_JI%d)hK#I zp0APT7v%XqdEO$=cggep^86clenp;dkmu**`C@tggFHVh&$l*u^o4LbR>#Rk)eWH} zuHK@CPBCCv0Vaf3TCqj%9NXezdL>aRH!5R`7n(92J9sjO)2ma~k3Akd2&s0Q5+p|P zyBJ9|im6>Rv*1I-+6vc6D_77FNqGN51ek=m%fi z)?hPO0#3gOY&tCZM>1ur)hId&Zg14wLNN9HaW&l0Ou(Xl^XQn6igHs^3^nXQp|No~ zO|M*0tWpL<7y*C$EW9$9egScdPfH?i?T&f2SLsT~^xF`CKwQ$+WPz8#ay%Rz(Rp+V zqO1He3W7R{e(iv{bOV}$90~MuRTFyRe4O@$j6ehF9Jv?UVsne6ILG4nFMP z2v;epQFJSoKPKSA$sX8wUC`*!TTTdFBOQ*Tzt7#a7&H=KBuqKfC>VRFk#w)X zxLaVnEYIuYd8a(%*f5grl;;N|{de+wn>=rp=SSuFb$PxFdl3g&#LWt+tI4CSk^)Kx z2A`gmD-USI0Mjy$?gEC4i3eLSgp{j)h!^ktJNqP9qLw1tEPQum_Wu# ztT`YPz0m1|GS=9I;ne4|bL58reK2cd@)a2V!@woD10>2UahjBWaPHQ{pMx+1C2xTn zo~(X^Pypj=f3yrw^tVJi`$1(&43dBsHbMAmX0>CcTiLcM(B3FO!TAQTd0w~aG(;E~ z#q>oS^YAUI%>Rk263s`<;KU!v0qu#z1sL@h-8@z$Ie@Fy8?il-3vM zVwSI=&H<}A5(Ik`9UoT4j}i(6*VD>%&zROfZqatDK=^1gC|S4<;to2vL11-=80=8l zp5MlW)*TKMA*Xx)*r)iC-o_;l9iVeAeOV8tj~)&NqlCd~Q6s4a8_Qw4n4ZBv;BbI= z3hy;Vq`7ysSenZhj3%YF&j7y%sH zGgB>_w>z)MYbY`pLfP85`nQmMAcW<%NNH<1B+xZ<1aGN~S_of%$}ag=hTmjvuhb zBF0eSwfFcztoj?gmwF=;ZN;*P(Y2kQTgUI0ztRPF18hMPCS^g3Wm1)mk9T7Ou_6 zrcu{nA=7EX`2s`+8k`E;k1J2uAZd6GoGBz}81ODr&OT#wUNC9Trvg#wxZUh;3#N5f zW-B#!GacKBo8?M3VCRI70(c71LG7z(DmJA|v_~h-k9y>mq|8yD*9O9a7PqUP;M#2U zGwd4rlB}h4AVg(O)G{^ z1=e^ggv%m1$9j|j2-v^Ltr6QfYHZ0qD>Dz{yn+2sE4fy#-2iRFCxGjgus_wUsjS5L z9PHUbxxoR+tH7(?m|mHpWnNB>IgC(?pjus29mxbbE{d>y27O_sLbqu1w6>(1{Z-WL zWyga=NLOrjdeqP8(MEI`2t6(7guEX-0hS}SBe-|M+Oox3N+d3hDp~{ef=uCfSoMjE z8ar_)Ti9Zk`#Ss8{aTocg@KR2B>C(HfPw{q-*lSa5=l|2E-}^JpQJ~z>d;-a>SzeU z?oUz*(vgWw_az3@{ScaXxOrYpr1g>D=Kds&gF8+Ha>AtsI4X0kbKC8ykePct> z`HDVVQ(ahwV6I{Ch1MV;i`ipN>U%DaYP<;IbIhJhrOh4pn<%&MtJnxIMX<8aOj`!Uka%{S|!;lqL!?HQzim|X3A|l z*TuOzoxFM59j9N9rH|fei>%2K>kQ1V(MG_O&WZ03m=I^bg@8s_h+zM)?qRDaUhM-} z&~tY?HADx3k}D0^AJH{RXm2KONUCh^_h^Gg39L$VaY2X8KAx_VQ=ys&w#c}29FJwA z3J|)RGwOJz2NM#R`;KN0Zx3s)@B*=_K)y?*1F}94d_gB1I-n*B`9E3~;_-AIwdc*J zbypeW19}4oWhiSn!`-|JN?s#+E4w->)B+@VZMn$Y#Y$ZTOs_jRuuRy^Aep}eWEAOt z5Mve?e819&76k0lH4fMSu&~tJX^CRuny7|zs8p4SFfs!W9SyM8g_VcALiY{=0A0LJ zc`4Du{xtNeW!UOsV85a~OXKA>{cxtgjVR?Hu)4&KD2Fy8`sy0JV15U=6iOqi2QHFZ z63ua>KEfgP20A@5bSt^mG~;mUL<9n>C9jIpAB3|vgqP?nS^63E9lCl^Cm_D+hA`Su z-=WLk_>ZJFBnfLc6R7XdCGfxHPdNidN*&HFZFfVvEGAqRRsXP5qx}J&kjTnd(TCH` zMWB#7)I_>1iXnYC-B8pXQRdzl$a=j>G91s>#Pv}X?GlEP3UOaK6gTE}%Qns+JX{SH z^I@8U?v6kDBZz%lY~i`bW_^*KOO&#&nB|g9?R1xgM6XhP5eDqhV2%5&LE(!C7>RDA zZ4wcR)-P)b>?Fv>rCtMI4(KUesynY#M_lSHQ|e(|>ejqcy>Y2`OsRWysk`$^?TJf$ zXiD9oOFfuZs%(9P{eUTTvo7^`Ua6|M)T*RzdIcUWf5wO*IPthS3S8|QYLT*!UR zX={0$d+UL@>*CzI56tb2b00h~cXyoo_<^~J&ZuR52j-T=xjR9{nXXaoOuLrB!iBC@ zIeE;$YYQiL4zLQaXz^?16m3ILIhZJd#baN*?{VzLRpiS$<)&7a0`Zr6di>*Cza$OXD|5*Q4AvO9ghvxqmjf8IEW~Vq?^-cTFz3#L$ScICr1P&HHvjoO>n- z?aco+8|St~xe->&rRL+na~0T_p~g<{baO)+P%)xtcKMjLh=$NU=TQ2mXx zP|FBfCH_l}8bxmhr(7`ghN0=$Y>=*_9iXOda_ol)r$P-U7I&f>n>{MasXF>5PMIOo z&#F}&!((nfxFy)JX2+`#)Cs!;@-~ao2Im9JSQTpDe2m>{^^YD`$1?3b0!OpqbbXBn zs8c;PoW_O-ScKf2Uy<;``?8+gIEgz=>M$)Pvgo_?g`ss4?tUyi?uEFb59o+P(8E6v z7`OR37?k}^zun;r#0T};U4A?A?$>WyeE7%JF+KW&7BvxFqt78By`5;+{WIS5&q>lh zfsTDEhb?qNYoK5UBE3-a5BEYH(<&T7a1&W3K2+Wo4cl)pY$~Kf+EpF&r^6Y+sPG-U zClP#GBR3E8DP$_isXF%H@H>`nEecf~J-pE4ECe?h^y((0F+H^q_qle9tQ*+-st#%B zKNZpwB7?+u{^Ko?@k9?r-N@KZF-DjjPx9LCE1G5^7Pu-nlg8B%FA$k*@Rz5pl$1Nxbfs}!QrXdo7uDjFV z{&RW&!;1z&i02z&UIyZCFl0E{5Ak2<=%HwZ&QgX<3Tag%itCWb@}%#lneL$oM6~!X zG5{HD9rQkUCs~R=p$$zf>gP<)C1JB!>p{ko<_h%_x)C+$EXY#vO^SV5EXsP^`+Reg zr+yA1Q3xE5X(R$IyW8}{v|{>FDWq86V|p`@<5o4C_9k}WbxpIU zrZEiN1NA-nqfAY(4?a>a5G`&HSc11M51?1dZDKrunAFwFTDY6?kc=0=x4H{8bmw75P?0F`?Jg@qdcxO|i7a5aAw> zmE3A4Z%1CCepKCgNa(Fo!V0wYsz5?|=y)_S8(95a*5cy(G4l z?7aq+G(E+#;rP5N>R6jOjJ{^_a6rdaf~|)}V&MT5)Cq~&6A5dbH;l$YB_U_|NW?pg z>G*c2$U&LJoDstAiU8V;AdA>Pzum7arV*4fsAL87ei?RtOjG*RC|c`;Y8bsQgw**l zR-MGUFoxb%bv zBk(XgfCE4Zj1nxKu(I9N)DZa??~V&!1_=XH5!b?|k85eWtSktfb}(Jt)WRulg-6zo z_Q5j71Is3)3c%j4WvkSiTnX(!>_M{8mD!m&$p_OS@P zew61mJQV}6BMMKtH7;=`4rbh%j*6HiGU4$ENUIcS3)n>U^68yK7+p28E-u(E1zR}? zR$4H7;@r!eQq_PUPO20lP%#Izgr?*PQ`@R!F?E2R`Orf`GyjcHtxD2=dR)#he?h!j zQc&CZd^6%^*`N|J1c?gNN^W}qX|WLm@6OAA9lZicp2-{cWM1uOJEf~RZSJRlI#x{K za5$x@9vzi~8jk)89(Om3?Tt2?n}J>OBGVZzIviYlajbXs0sHqI-i zYpImiP8Ag*`_Y!xZHtU6rYnm})e-c_(iVC;0lPmnj_D;3eQ-NBEc1ler&-dUkhtJ! zRY1=z^wbfA;2sDJ)9B%=TfzF_tL;mw)i`|>DMQDOjdHeUe0^GFv4c2D=oa2Z?=^YQ zp!#%iG6xmCFa6NPFTkuQ#lD^BWlx(%kE7oS(pN9_@{n#t#Bo%A=3u1v3es*D`}Vxo zVF7)S{tD{NYgaJg^70IK(E}8M)Vd{Nt=TH30vUF`wU_R0@YK~w>JS&rjQS$oBUaER%os#H!xpmWzahipuZ**-NPcde6R})hzs{terMhKnMUKHJz(7 z5PAm31WCJ~*-OEUf0<`aU`NrLvN8GrS28wLfrF_^vpO+e*wG{ig%Lk?Y>S$IzAQJi zo9W?1sE!hiQ~~r;(v&+b?hl|Xun9!wy*g8Z(I94z@aCWi><4nnmKx=ssaB;?wLPkI zi&H9!tOEMB)CkvirUx56^wymsx}%4hJaOazQ-dkzGu_`*&60-slwsP^UjGROhp)E~N|9&=lJDWVHoEGNrr9M-|;bhYZnA5 z*y%z2GSDyhtI){XmwM_)^cb$FX6nHU)8mLEhbcZXq*>LKn2+H0{4D#^G*v^Rz6pd)jio1=JlccVh#2H*EbY@IWFR*n@)+J>w0Fa!z0es^~duLUXMK`}`TPdBIqwt4ncDlK6fgWN-B0SZX^Q6F#G= z=xM2ZEK|1z@zh`t8%jf3fEDJ`FQN&z^$ptt#k6sBsW@D>S%y3DhdA@Eqe0tJa@t0} z;s@GduAG&3k<-ee!N9Q3J5!u-vADo%V{HVSaiN6~#b<_z2QVU>)@G^Q_UO_5W?b=| z$CS3Q)Vl&pIaMj**^@Cb?m8MrZhW2rb%JR2;p#pr%c-$+kr;x9On%7#$(vXd<}`-g?HV&Jr=Om+_(Gxh0Qwz3*o@^}_l?Ym zy5ro9=~6n~!?ucHp@T!q@o$aG+?p;0r3ysUg(q^uh^dK-J)JJqywH6Ty>l$n7C6?6 zOn|Ox@aP3$1~Bu50O~1$7E0ASaQUy8)LRrf{%o6BOuN#UU3mwxUYmJ&vY0MSmST~I=etIX7!`nH{+Jy;XgUgdle@#TP=?Q-^wOyX1jbPX@P?2zAxy@B% zF85>?ER+1>e1E`Fv8ulsD2n#M>Jq!)Q02p6?%RE z!sIkT7Ta}9YM(Po(WXXE!n+v8VrvYe127aZ-O=2l6w^b9!>bwTd}u53q21BwDWY4T zWJXDR_DBLpH`~s-Jr;j`^yk$)4c+e?vsV?+gH9AJTR~x7LrsxdrR*K^WfiT50UVCE zVFea~8-Nnf(teE=9oi!n!osTqRW~dAw0>@bQ;{2}$C9+V!BbWAOPs)E-9p&ajcfo7 zaH)lf?9}_WsOq!8FQ_r}b`uDm@b^_r5(*Lr*;aRyTLIIBRtaL~ZsZD1r4V2cHMCU( z!8A9hsHyC(NL7m9)U9mW>D5-GDpsc0Is5}yYBW`IYlR(;?E6vGS3~5eCzm+@cgLBV zk*P+}?Tsy}ihk#Wt8Agf-Uz}2C^QH{Rh;?Q0h#OK%$>;O)s^tMz~MaKldXy#u%b$M zJ(z!Lpf`cw6>CPA8*%-6o-5TTy0gJJ=4mxu6+Kjdb(kkeEBnx3eRYx^lm*eoJECKK zU0!Yij9|L+Ag;h_Iwl4*%aCMSteL=X& zuC1&sdMq7kXg3T`4Ru%-=dJ(;DDDgpOJe!q2O$vX+t-*r04K~ow6VvsOJ^5=nRVfk z2UB?UHQH+nw5ns7t}K9$F|-LHaZ0PN(Nlv8+*Ht`zDAD@O4}qK!Gu&3bnN$Obp$=p z7>SyWV?^6P4IJWSsh3vAB6tH>GV#g8Ec3A~Y-bTjbvCs`QncgXj+o;NzQ-Cz!~SAX z$jEk$tg{5SKiiB}bu67*(8F{n`~^S>M8)9J&qQ2tvhB{qfEkyzB)u#HY&Iu&mqEA$ zxf>Y#AfQdn5I1C)9#4e4iF))aeK%)CuUqqgb%N}+QDKO&5eox0cSq@Kw;&86?olJ5 zmu*WD&MNAhBqLe`!#8{G_T+#% zCrMAri4W7EEy)tNR+ogaeH%i+!`XLMwFHua)k3Nxg2OoR1mXcvb01UbWbsT52f3F{&6f7Y3H~@>s zH5R%#x^-2mr;RPjuYeVWihPbPAR;0-4_5sE>5hdCIqzk%hH?@m9N8oY9ZK|qF{QJ5Yb zP1Q2OZzn_e&LKx%+jx2(B&mYfDrR?kR0M7AA3=qVUCSt`dDIIV6q{O9wep`cR-MQuu&sVx9daG)aeCBG#M4(k$y)}0b$T$DF2KSN6oJ`WXsMLExY3go zn4V*N&~FGcrp`&a)X~_7Zen`Z84w5=&LE&=M5kTTBi}5hM~g)voUy#?a+~+tBrMiU zI4t-#@p$?%2G0-J-^RFq9BeK7^e>&~|K z`OcY1IQzk`&8N8@beUO(+wu;Ge1wog`RK0}w^i7DZpd;EMh;WV`G#BouGu%|KjZ~& za?|LK)XsEP0|Y$I=uZL5n7X@_0n^{~iQ%jU0CJ8*OiYktkDB|ZO=DV$&vtNSP$_|4 zB|3()Ir$-)jzhfRh1VTqdU8xLomE)cMn9@ej;LUN6gS)h9D;mUV$Fq=L3#IMVEw z%S%8TK{M=ZnlQ>@NteJJA1X(vQy~h%&t1)#XE~I!5-ySEXC1>SO*q(mxk2AipvKVE zFx*$T1M)?QQ!$3FDhlCmD2qVT65(dkDSWkcp$FIeD~k{)j_K8fn4oC6&lxRBbdmC` z<%&uUF*S}RI6z>_#1sUY4yl^+Slko zd@-5YgocGo`x>hOdZnYIRAqo?o5Iy&7&6rLkDCKdrtM8QcU&9SI>pn0dmnD>*A<^{ zD}Gy743BI~03YHJz0;x6nt#~(ZZiD>bq+HP#X0PKa0F=8@3pM%GAuqLtDDU9YLloH z5id6*9S5!IMCxqxj6vdLdX8`k3~-$aMrW^#aRyz9m3~38ohyN*n?i>L74n=`6X~2h zC&U*7hD#ODniL@LfSOD%BtwV^v8wR{r9(ix7R&`5oq95T;DlUB1v$8_qBGP9F70cm zR+DKZ^{5kQUqg$UO#O~H3@`P-`hhaQ6Y-h`@kE@=w3Bv`lLKN9sdo!~=j~|-@)-W< zJ_;=mxv0!hn4-4Ir3CtQfydqI1bU_c(*T?EWTs9E2^vPxF49|xoH~JCUFON%EM1uG zhwoC8=`5MRRSY68wak-284&^uLvt{hVf_Xj$<;}q3^lNt4BJmI5gCMT$Y8HP_Sp?K z`)?Ggv2@!obmwGt>B;(j6u4gsU~GB`*YRLY{!(@X_)o4-A((tB#aC5W1sbRO5;?qX zY4+4)ru!k&(C_Hx`!Ii4GeW`!jc-FupJ=8=O%|xQ=N^+PwLH>Xf|7 zhBJNY8t7*(>Qlq%Ofg4DGJU!bmIe{D#Hsc(Rp`pac|NzQBz)yzk751RmJcfSii`n@ z{ib8gO$n7P;kd`T#r|{)lOa5duaRHncbsw0~G)X7v4b?y{+MHuWIhZnvp* zQJOu4_eLq)#a&ify2qs2_r&SC2K!#J-+S49@8isSaa2#$0V#DR#ll>^-+RY?@9Xw^ z@80jdcfa?o<~_z?Pn3da0=7@e&KTUbar?bb*zdh+zxS+pFFuF|;)&H8r$)WM$ELM% z7d!O>b~W_Q(irIU9}L(7Ms~JN$K+zUy2lEcJ4}vzfxK1=Ymdo^jfN9*A}FvTm8L5_ zajHy~fN{bBJ1KVOr*~O?tZc3ZB&DO&tVtaL$tcHmb$674iLOy`H7a}JEVKufHYTU6 zF0a}=B)bQtpEkh0aMrDkVRAcuk^kM-kq^kNQFG?${J5va#VJMySY=XllOX|&EM$8J zWm%w!`5LHvkcVuCNe77SgIm7aWXUHHptAZrKv8Peq{57QG+LC`PrW8j;5g%u+ZwfF zK^`7H(=$CiAB0JaQZoF1x{vyb(lPj(>h0gRGmm93KDK& zLL!k!CX*i*55s?wcuORcuJi50aSP_pJ8st8+L~F%ojUip`SWUzo3~(2{mj`j5>C=} z4syPmNYu=q{q6aQWTMC^`-&^)aB{T){Tsy^{3HPUUx3fl%$r?VZYmjPE7_7P4G?a` z{#h=)&J-x7U#rs9$hC7~oynnJ7L*1-DvLb(mkxp;E&tOnQ}R4svXP>HDJ1K^lqBH~ zS@^?$Q-ORr_zxNT{q3J*-_3vHYWDjBn)!dGJZg>pqBQgOS??x274_Wif6^0(o+>QW zor5BF3Y8qKbBk$LQE3}s+kTx8<*X?#U5#&2sUVd~!88Zu(6a%|iS>*Av%Afn=;O7+ zOPwlBgeHu(b+yNd9VU^^8eUr5XrXH(C~Pu*=(JMvSjzGfhto1fZi zQ_mY-TD;wvrE8lo#*{sOcxmx~vskBYwW$~6r)Ixy%3heCy2qwol%Kl%8@g;U9Z|X_ z2xxey2Oym#CzP3*M!%+~r&0)NEq`e#k`8D@n5_w-4y_xjLD3CKy$lmY&T^AhOgAP= z+oGcDOfub?EDeHaq`PhMGs#k!aPm*y9COTpxa6C1yp&JhaeblA$HsHXH#h^ zu)A5WO}&uN_CbI4%aU)In$~}InXE1ID3u0o$^Vo8MaC$Jai+d&pni0o1r<&dIlFE0 zwS$s-zhg>YHz;}C@h16tg=MnU09o#tINxr8f*tPMPE`Np5rW+A0}ulDh{bj|)xmMpatu`pybd zyy^s#zG-lJ-H9gs=E3P5-!nkn20wnDph7O!^(VyiM;t$)w*oI6d)0lYZCW^a(#Q>01V;FaH;le)r(? z-XELv`&4N*sIjX(6{MoY@UN!Cj?XHQwI%+F648gtZSr0u2a(72I-7o9VJV24t*FqKSXkwb8?Qi6u7ivAo1GoA_j2;y9c5bY9{FoA_*A zVwFwYo|l-liO=UH*4f0iVWmObjph%%IbLWc9To=e(EpRoNAKQIugjlwv|%sT{fBOP zFZTYEXHubLj)NwYo zH?C`fO}j5ntFmbir6*{|B7z{3Y{iYi7+# zSUiZ|t-7vQGu8WVL8-Wl*V!_M=WS)O(M>)~v*4_TzbLwZzn^QCEv%ZeMRVs1AU&$z`fef-)-0%>d+LliGv?LQ&&ZvaNX(eC zFtcFJ%*Ee6b#5X#cTVk$Qx?pr{r0JI6V8mqGivn=ki1i7&8jSZka>x>;y7d2+&Q%Z(lN6i`A(w9shX!rN^z@lB+8{C zc4<*Rw=%>A(9XifvsF3lQb7&|dP}R7BVu!ca#Wr}HG-Zig6*gaJHI4T`@-1DbH1)Z z5gh~-b1PH@Ohr&qO;R75b30BsN(x!exwee;|5eQ;vW0z5O(QH z11aUeb=S!76U(9xaOrxN8O*FIrk_KNn2#mn7L*LSCc`_pHC17T!WT>DsT-fGVdt0+ z*=OfiTH0?Jx~&aS4dNcF4xwN4ABfWMoJFaw(R`rjGI-kMckI?U?{VZ&vK@Uh3K~u) zTx;a0^ouAOK~<9hR!UEzLwNPg9{lI4$3tOF$uN!i0;Sdt?M}zIQ3}1E!4yroCAem) zJk2n$!uTOdt{Y6vR;D&orptrMpaune*W&?N995fL9#t!0m0{3|eu8N<^xB(JqN0Np zbW^qVVZ6}_kju`DzFn&=W7II*VZ@&Xs+1lU9nCPK{Z*y(U=mSFuo7U%%av#y)R2{2 zn^MK%Fq45(^Q*8Eq7gaU3ce|*;0(7z!%L^am&N?($evYd82zfLg*Tcf)8bR$&{)&WC-232RDC z{kCVjZP^j9k~UT}>T7V;^wE-|;2Zfhh6|2fX>?GJ&N(Q|t8&6hQ{@P1O_su7-WPp7 zhE#|Lgx%EGVpl+KT>gS&d{Gb;?qc7Wv3COpVhAGxhsl8$z>JZE`qSq?mC&PNACl3? z+_KnHB}|VLf}G#7*rS4+*89TShn!HA&@=hvyBCWg9!y4HNwEp?D z^1A%bo?q;xR0-XjpZ3&Zj4+UdB^@B*8QwAUA5ij9bElroG#jrgtuk+SThwJ|5_-Ok z+tM%=ge{C4vM-l=`<1ZdsAO5k(0zW4K_oFfa5Y@F90YH8$N@r1rP+TL>$jB_c(%9e z)&rVXL4l*0V*xR&HxjfRyCYmdZ)1ky*7f{oSY=lyP|&|!PM@AI^}(vvc{(D zvneYPn*)0W0`X%F;il^0Onb%uSB;<+3-&|%34*<$?tCDoq5&9epz7rjSeOo(=4J$K zF(g&P+4(ZP(%7$Yzt~ptnyuv57Ub(TvfBs!v|KDS>Bw%8Wj<(d}U zBOzHwF!j2o1^3#NyKTxtHsyBrfEM&FGA%%!wBSBldW-%30h@BCO?hOIX~8Xkct8u5 zpKDq$9AR#Xg-65s+JS%8$kJ`>wA@n3c~RlNVIu}50)Hin$JJQOt>7%=buBjARyUoO zDsEKx28IcgcUSBA25bp|AK+Fs3`UUHY<&>UfA!eMZYfqbCG;a)omyFoJ!&|enS_Cf zDxnYIT!AIqBAaUolUyH*l$ADRUz4Xh4kkYtl#wfy&AM;uL^b5~aH}ezA9z*^U2W?=V{?H(JyflN+>w;dndH)yFcPVfMB{Zoz1rHdFTchr}S$)!V2ZfF?bJ_Z<2)9SD z%gPDB)cdb8n@i~1W_idcmoVy=djB1xUcxlaEEWk%SVG^-<<;911%U3oII8JkM{iC$ z)Nt_&mCf|Vq^ag9>_mXuoiu=-wkh!cl&ZJEHVkFf!|c3d?V^O%I{UTF^kUtmQGJiVPeghVv+Hq*S)oek zCS_Xp9r{j=z8f+mEX+8opzm7{W_}n0&!!3cQlsxQZrLNEHJHXfk!l2 z@Nt0|!<9B=pG{ci6Jaj8deiK#vqEy@_6ZJM**}b;1J1po2E$F*!%KbLwUR@c}-58&^ zk;cPlcU;$Q?8HJEUR#t$8-4@64aDL1vT>BqWv)Jnz;fAbQ^Ub{>J{{e-HA8JE?L6# zgxw{3Y|3Lc<#yROOPC(QzG)CM1oqWMokAuqaYH-w zY#OY&ig%+AX|;ZZ zg|bVhMZ0<88q*0Qis?J>rM1&$TwX@16dN||hH5MqP?wi|f1;FWSUb~#PB{XIAPfFy zj#+2B^9t`wl=513<)T)|nWUVVs@ZD|G9~mT49IZ?tkKkF!vZrRPZXOG*|5N@!>5bQ zh;-YOr)Z1n}rBG)6fB6%f ze#^S&ewQ3lA>$6EkcqSyr_RmIn7&{r4axt@nwgpNXVlhzp4!7;_PP3#n&~sOTIArN z)FK7~WYnS+!9%RqfSLd)6e|*AFsg-Yg!4xw*BO%5p%aM3K``qZf~I=w0x> z@cAfUy1W_uD6tNm?9lNcUjE%v4t)o1qXpVL+!sOnmgfEymRe1i9>M$2z+*ZMQV{s- z(BYuSPR(9iKH_#&SlU%r8-4XF!{wrik6?g}ioXdC+JTic-a4Cs$McDtDxgc7MZW)f zLN;CHGWCPwK zb;PzrsESYuLau-%T6je^Kz~&P+2=)!*2=zYSYU5`gm{6Iikx*EdM2@pQ(OU_-e(sv zPtKA4c_+~h$+Rk_3z|J_hZ*I-Q30$3+O>xL6;g5MR47bv39Q|pmY*6mt`A)#@`tt+ zb}QZ*XG`pDUNcoZO+m=%mk2D?%3`7#ebI4R1n@QV7Iz`4G&3AoRUt!?m0@QhIs24D z>m&}OtFN8Jb)Xsa>?*`5LVpe5wi$?aea^shqZsE@h_av)5|2@+UC!|AjLe=M)x8&u z;nr^clmj_tW0Kw9)UO=68zS_T`B&~tI3xP*&-ObPfrzGZN(8GbH}LjK%k!7bib_jZ zM#c1eQ@<*tk8u)Zw>zyID$7}4g5J3JDjc?;wZhhKvt?C4tqO*d$3UW`M`)uoXn{s;3w`~=>Pm(xiO6cA z+fNiZRVHun7u_Zm+LLlHI4}e@M%)vAp`nQ(aBP6wouBL&%lAi(Rl^VeH@p1o8MA9= z%^S4OuluRll({sOh7pQbqTnGtJ{TXQVCrb?15+v3;HFZmC13xM6QWQy2!m9RP1OWJ zP?LhaX%M8+-|fG^ zF#fZJbgsOn0_)0qb6AOCNLZC?F2t@j^7EOHAWLk<)8)FUF*oKiiSJO;#~o zMHo^&rnUphvKnkLE^-m`|0t^}%DRP0*X-yCvOzkPP4C!f+qT;jpw|c_GCMvSrqK5I zkDM@@MJqtQ!XPacsFXw^QZ0&GYcvwDrj?JeLh*-=w3q5k*JX<7No5cmJ-s2c@g`; zz_$gxAEczCnhf3jUpep8&ze7o;`SOWsHij>hC$k5x7((FB`-Zon&@8sKcM{4QMtBm zfj(>&4t3b9ty_SjTe7xpfx!=ESjWz6Vo{uoGZgGl+1&zEe(T^fMir!{s;tEut~8^rE619f?4w zkOAS>#+4A=iVP5u3S1aKk&}awNeY2UwGqQA^Iw{QvqHeF?zCV7We^IzGF>6;v|GZh zbaEflXrS!U&-&@>IcoMQD{=UmDgatx^RtQ;c(k;inyMi}Y^8?C#;f%hEr|(^M}@Fa}|o=4DBOEmFqI z(pM!n>t*RH@>Ju&sK7aaXdlKlh103F&q9!$fN60j}ZXmu=LIZ z?b-)YpP!Dis2!3RWy`1YWkA;A&qUd9Y|X4cP`H$<}e;J5|#rvyV}M=Kxb4Q)m|yQcoM_8kH=HzCJJ*iPt{hg3Ya6wm2Utf|GQZ=^XuabF*w%M71qvOFsDAh zXzkqDbv5$_eJye`fvyroPTg6<6ZlgO-6!HF&>kF@-Km_}h+yiGaa!W+sOVFP(%6N! zBu@VnAn2!}Z2xA+P@vMcK(Ydw?TKdr)*vpKpAVI_&osOpb+mx~uuuO|joZf9$AvO3 zxdQ<$tHzo@JU6G}!$6036v5apK$SqwU;;$L+dW>vtvAuBEkY&jPCl+9!nsR`bt?z- z14xdb;2^)9=_HRS-Oe?#Sg>{=iE%-rTd5*aD~~%j0(55t=q|*J*O2Z{v@_ia8`6go z2Lihds(89L5raD~0te{_f=2HEEq4*x7D2{CYOc;XN9~;^VwY9f9T*gMDy*35qMJ-Q z&X1s6?!c0Qo`+&tV{~n@oh5QQ{Wh878hnq84YUoy9|Uc%!icI1A~0{DZRnacE4h`s zDulK9%W%Crmkv!ih7@GaUoxcsK(ur}BOl5CfPVqx%R>;KIrXvoLH&&RpDV_mS5rF_ zMH-~KID9CwQELqFW7GMh`AD0v?d%R7DEk7rM zbtx7xxAVz}RmwVyCPIn=$}*2D#a@YEtE8C@`em}6K5c@`I{*fdSNfc$_Y)yZhJZbO zh%!VCEwzLj;Xp!(Ap4g%`(Vi4#`S(3LK0ycim=9XUbBXpYzM1L*~oaN*aK&b%)$?{z)=&69r zJhm4fcR|#gm(cr)=#{3y^JN$v9!aye#>KA^!i_l_MaC|<&;T1wkIJ;bo#=)1aw1g2 zaf1?OM7>AFav>M?>*oXZpwCZ3YjLwGq~}nS>FVZcRfwpcVxrmEEc^0e`FB|h!sNAL zQJBz*6E2EseG9d&QH68@YCNymqhqBmqLBW>3+US+Re7qA_CQoGu)p7r9))EG&N-`s zFrX%LFAgR!x(~fdbNbk)f?e#>{D`mU_*GQ#S?D`d{3ToQQ;DeNu4b=tP^G8nN^zu+ zYH@>>#8ri+BfxzhbPDQIsINY%Z|lWTecMnUujW-j8k~VP-iPgemi;d&W zrpqyH)>S=f-)}*o4I=1{!YoXyLaMH2U%vVVZmGhld})iND|MGg^{hdsq8`G%M#?pW(fZ=%&_>SL1;O`gkgl3!zLZ?RJ_J+3;h}tEAhvjM8?LJ}}N09BS( zAc=W_HG_H4%Fg%p(ySI?{2&ay%D`j#U9z;ei?%hvR-M+%9KuBTp{E#RACTyVBuq66 znci;d*S8w~3KM|o%_a}(%S)3v<)RJ9biP3sCHJL7ljbXzcAyMhpA7XgXfwV!Hqe2Z_ zxzw6$SGc~CMubfBymSSpKm*Vm1U_TBLZHwWAftF8MfV^!m@1_HrP4MX&etsg-i*zp zl512U-6M0~SF8&lfGEt2soTk6UIy&%sKi%3f>q;gPC?zJjZG~YM})0Ln8-r9H3GF& zFmdT7>H*QB>l-kl85az}IBn&#ygM4Xua*|K?oh5a%VpJ|Qn#4d$fZ#+m`e7FRyP3ClmBE1n?Ord zyt8k)@wx+2ItHigDA0$$6Nk29qM^h_(LttW?t=Sy1Rz76pFg5X8KH= zI`H3EV3LG%W9FCm@|@PeAfEXKwsHuV&7vawMyr zJ7<2qh)o8az~`LO`sQd>Cr_D4iLYT}7$V`0^h^Lq?X!PhUC!|w7xgi@YXtyqaj_qP! zs18wRmqKq0_8eHDx256X7jOlA6(T9hc77(<^BX;S!U>r+HF``P*cYUR4A{>jq8d65 zi4eaSHPFAdkQb(L$tkM&x>WPC&#va{A^lVun#HMW$OaC^c1G;w0j{D$RCt)eqFWmwiVFfBk9f&k&S{2V8z;Y+-q3~U3n9(yVtOfKe!;2O`eC~q3GR`s7+zF#&*BS(`9yo%e7B=o2xy^qb=9{#Hi*I<-GaJld~tCI9*QCeU}F$-_GDHYHA z4wLfv-}RbO@poIJ6p>Y8rdcXbW|UL15k_GIvnCZ?u^k<5_P`SyP1}Dx^gj3bw0-{2 z5p^`}mSIQ7I9<02v4%e7QFseg#OA36WHPAOszPMKXlf9|}YgtYT!oC4F_&tn}vgR>Y~pA=O&PaCEmH@l{8 zDD744?7AW9)WJE1$cVr$m@~iTlo_XqE=Y4ThYiL2p|!#ZM4VopFn9=qWRgV7nhbu6 zzI4!LK#d-hXn2rRFk7p(3nIC&wwlgFV%!4LBbifb=GS}2XQJ8$WmJ}bM#lX5d3iat zvqkpIww;Ab@l-Qs379e9Qy4R7l;3B_b0anlR@T|0we6yE;MU*8T@dK)J{V^shiTpH zens@^!69BQpY0)2LbK9CBcNb~Uy8$Y={!#n{b59iHG_nU=Xnf+)C@!=k3*WO9NL5v z4AYZNs2sWlFZ7tsa;c}Wk57g=-6yrn9mO9*PRAK%W%7fSh?7018f>_7=nJTW>ig`0 zWa}{z{`V!scON)DaxmfoAk@mOvpW^hV+V&!_s;g{?t{aVl|$QSdzAC&h#ciSMNALd z2FJzW!;MdrLnA{)^b7q&Gd%iINI5S{UkaIK;CxL?!w0k>^)htC!y}}>Zk1k9Iptt+ zXA}{9^3XjF0NyUVS~>e^mOvfIc(h5-xfRNVsPvZ;I`CSX- znKh=p2*oInx^*0xzIZAIzR!BuZHSisx^3g8AzRCUJl0!2U0uT zJfyB))B@JPHDkhb4LtOiwz>I8?N*ax zY2#4PUr8g-G0_K#=)8l)AB5>Ivr!>2U3hRiy7?_lJpb^89Njw8Q;NO<8j$l+O3BD5 z0*c~xQ6ua5tuM%T7tX|+OXnGiHWc9hA93#jUsZYL3umwY%9BNaBtTT!YD+t|W9PIz z*p+0h?5xiCopWZsnKN@{XwP)o&Nl3wuu)Mi;Z7jQw%x!EupKY;Qf*bnYc)Uu#=8RE ztF;ylh)PuI{SMwxiIVU4f8MoL5(vGV`Q~@@x5>J^>v?a_``q8>Wi|gNfW_(YNmnTJ zSl>VgY5l$l>=IsQ^VxWIG(@ylOcySl7zlkwIuI|-aqWqiN$PBn%MyH^Lwp9iZwZdm zA*LyhQy3z;8QJfKBl|6mtR6gKnO!~N;S8GO@I|(Tt>cf<6aQLYKM)c`8@Q3A7Q0Ak zg*R-4tq-UjC=vI+`ov^j{nJS{IP%@R6rX?0(xYT%Zg+pSF+&0|0ylIM*(gb3GjiD0Jn`D z8ZaF-Zg0AK(a=7Pns|VG#(H&A>(da4)zMiFCADFZYCLR_g>Mmukr_#;2?V(mXA*a* zmd7J9ahqOxlJ1<2hbcg?0JU6-{z4SsU9N9KvWAw_2H^=V6#SWns&SKFLn{ph5a$rl z#rkmqzqStI=5`m4SXtcE?)r6prjDOjGx5j~ulzdSnJ$MU-RTcOxYs&}ts#WvE-&l+ zI^U0=+%wwidIdCytya8QI+KjY;scHak5_c4yLgzLqIrdzVW>j!A7O7%6<~>rzfa+$ zVurp+M!99{Ymm_AWkDTU-CA0S)vGV`bX&(C@*92Ms`*T^wc^zz!wttAq)zeHZc5fR z)#zf=JAZm~Eo%e|^O!ZT%53T)FlY5hSg-;!ECgrGK9rF)vI=c|nBBLL^^orz@_B;&xru(k{*Js@Q-{CAy2Kzp>2RkLN*xat zn(m7gj8+7NL>3=)xC*X7uMIx#VAip-6M3jgGHzP#1ykF+&?@RE)zWmzDB}Q zP#@kN+s4DT&VFY{ij0wlLb44q19Iv-Py1gLsSi{0A#{MgP-C6zT+4_KXX46cHJe#q zJxJpOXH*!&n@3sEtyPJfKvio|8J(NuJ;4%I;oKx%7;LB1jvf())3GUBW@KSl%z)x4 zpCS>|H1m|ll)99b{GUXLhl;#TvGrFaB~1%Q9`R7}IkRxe;Z{47{3HI;ns54ljg{e+ z(KFjtjfSC7&A%r~jJP+->qVo6q{bM#;P;yl7LINei$6cgdp?e=W}~zz3Tzv$Gyq0G zxxfFua!f2b%KNbGqr8c02#YX#?kL3;E?O{S-rOalya_{gM|l&2W*F<}(Yj`x8!TxU zjSxicpAiO;AyS}^52FC)VMGC9YB59s=u09^u$r5)Otu@x_!9&8BECRuP+_Nw>);lmCreC*4!p-bNQUpby&)0E@Nb3s|nGqA$h|1&)s|8DpKYXiN$JQ@*lV`3h}0 zX-U%of4)Y~gbzd$xRE3?nW%D}s}}b~M&6Re29RyxfSQ)pYE*QcKi#)&s}{Fd+!OwA zyUP?Tw^&8n!Xxc2w>s-#>S^xqk7}}Qad0^g%S_r9bAK@m;#o2(-X3br zlR;2_vhh(#uWg|-=UOKqaS$D@I1qZ!@eD;7Wh)eG1xxd`jT7##}sxat-YDT&NNX?{XC6zGu3WR7RIAS)W07{Eq+45 zih~+=aj04)X~LP)`>XOF~BSCqwgobWOlcqo~)8I!~MbyV(VMu zwr*!zZ5ugyi&(Qb9+>}$4dWENlwhkbQj;0mil>=pfNzS4eh%~d9qdst!67}+;noPc z84x7Uqu`yjH4=tG;xT$?^}$W1gdOtb(c1l6o@!sd$PBgURIL zsT$-|u}8F{uvZ;@u=_QXmYxy^X5w4fFIGcgs7dJ4X%MedAGzYKtPQNMe}s0ozP5Kw zEn^~yEep6EAzi~2+o(bdccuO~uKF`-O_~=LEz}%onJq{I8$$65;{q&n{S58WFVncO zjvBTuLYlYBgvRa}G?%TP!#JE;+ZHTZ0@4 z_P(4e`(^#w5?tKo2HGhkdTkp%L#aYD&CSGE*6{KRZcv;}XIZ=HC^SFGhR z+8pQ$=A`)DTN8uBO7Z2P*=|Irrgg?B*vHTcdkhY=aXrE6XKjK!iW!E!547b4+!?}j zEa*hm3R3~@9|G}A2x8wz5NksaAB+HT?huIc)`YD%7SAZl>Q=(iZ`+#8UeMokUe=Eyh>ax~A}C{rN0;1Z_R zemvR+XmK&rnJ2Mg?toy0o=M*rh12$|i`rO@%M;8^#xvN{lC;O*zqxEel4)oDI%OY= z?+^|2p@Z)fSyxs(Y34BAp36&jc-$1COmPq(=ZzHd9|Q$F%S2`#t}lmr}3J_6&8%}t*TT(6=> znn<5+j9kJyhHAJ@1ArO-&lJQUu+O3zt{+yzyQT&{0-j>brr>(5p>MPr&i=Q!4?Ck8 zn(gtpN1aYv+g*D+BWP^k)^?Y1?2LG{!9aEgcj!X01%0d(8**;aw}ID`-Fo(TJVJXL z)#|&nq$4<|gOT90eZRwyRM8W})9i8>M3gx+`3#Zzw1m}dr5xq_TZU@96qGFsb)0Bu!38KH!SHdfRXwGumZ&e+5n zntqdtnRLNI@GH|co_=j6c?hI2sCL>8wzMm!)#>7t@rM^nOjvq1VT$!l+?F^P*>R`* zG@j`Dm3}$+sm}1*W`-{?GyIO3(epc0I30rYX5wJHN+L*Qc*v?AipSYI^juSiGngW2 z+nRIVms-0Fx3K>l_lFa`M++j0iiz*rwx;Jd-)_}K*WaNLW_B5L0|I$Pge-SaME8aK z>WF|hy9~FRy72&)rCo+C9d6X2DHnx9Q--`P!{Z73%vIfgPuBgr(TY{U$6!93t zXL$02bR##!g)fQQvWw}av6A6qfjys8fQ1y)%fm z7+TfOVrY96+9xU@V~rI-+ojMpgwS3hG-h?Dq&WmFj0V~<1nqVvhvi1BS}}%cU()u; zg5NFcvdgfZX;l>!jF_-l(hS&(nACZf#;v-{Bz~pTEZtnh3@hvrhC;1ybz{4?GATST z!?FoL=#|;n|)6YK+%KIrEGo+lnmrevvJU=Pi zo`w~9wB@ms@s7)5<#PMasC zOYAFfMF@UX6$ox#=u#La70*!4n88*uSEyjg02`$b#tzal+nU!z*vfn+8>M90<#BV) zA6s2c{c+P0M$I$dtDfkf)OO<%V#O;w`hv~6Y$=vQz_ zJ-zPI>z#UitzJK)*9E=)Sg(Jo*Kg_dkM;VHUT@ax$Ba9j8a(luWAV%wdb(}FFPEe+ zUbhWw9}@%_zm6IKPS5*w+&d8|qjcM5IB9A^nC?qP>I9E1O`$gt;2_;%Sk>C4S9)~C zj-@FuO?F!FDc{lq{KV3M=-J2m3{Ng~Db?U(3SMl@mR3fglnEY_z~^#gGQ1T1K+4CQ zN#bF_fN+Yi*qvdvoX9%yFfZRI_(D-Uyt>TA&&z_wBbvK0Z0^r_qy=7Dme(t%3Y(U? zQNu3hJF!m0=CH9u4Nq{XK4-pQZSbXBL~QW+QG@p#(O^y%!Q$GoEOF}(G`@iU8E4Zt z<*FF3US~>M3fPPDc%OCy-FeY#a0w4D>Emc!h%7D_Zji(atu8J%!->Zi6Qeej6T608 z3vUjmp!>}B!&i^MUG$m5Iub70dRGZZ4Z{pxsx z4se9j$|QJ1dwi$%`2Jzn_vrOjeI8#MWTtt5KGo7JH@>CS%wmi$@vgPAuZb&LJC1?s z#E1u4xrz(eN>o+@Tn`;CoQ~gWJtnbmnedh$+!%haiyw$)W~Pirl?O`sH%2=>BBJNY8pg{7XJFiG)9BwuaMbZNOM{L!5289H> zq9-?wA)>swm>E#Z1m_bt>m6P|HZr2sXxRkKp;#wc?1H7?+T9*a1I)2_RgxU?jhWf(uQ z%h*g!1+GJ{GizxS`!4Y`&>sIgPb_$dRztxSH8Yq)ZFsJh=hqEOf!V{LWbx{z`#cfH zbLu)*`^w{-iQ-wor$z_n+&s9nPmREy#BA;}9xTM^)@qq>Hu|BQ^l@Rnj)`qJX*@Ip zj#B@Py1pM!esOy=fqh)wz7%PQQU#2eKG;pNMw$sjE7(LeRSApOWw_hP+BQ!ZAr|p` z5^m(@kZ|D0i)~Yn;7%=RP97-}+!58=&w69q5@x$$Xb<+a=hd_%4(1ZKT*hCF3D_JB z$P!dA|HxrhsiCjAtHTQTF~xMP{b6=laH~V|NkD6LWbR*@$Alv0>c7o-8MMoAr4#4c zn6fcmqW2v`L1ecPMAq6iK0b@k3)O*mrwXjBr0vOqm(OH|+%mzH#|*L>>qiF|JoKF? zJrtwejf!{Qe3}5u1h-V^*1~AO*BFB3V0lWwMIg-mFKH>@S6ayIe#5P;E*>EZ5GRe_ z(%>Qmyjl|A!3hM#Ez;I^xWU5d;T$@rDh=}3$em}>n&MEu=uumiw$cg?p{0wqQ9Rb# zg^db(H+lOLtzEcL>*npSyvAGN;d$d2<3DGg4@H90_M!J{kF8e0>8`W#b{X#HsF9-R zmLZjVbz-MSBBWM^1)O|ncMKw+nhFk1&kH6ODV})JC|><^BLuMSb&?k}=^9iRos3iT z8r%qQTi>ud+UJ;YiXCLSxmAyW=lb(t2iw$b=e~ z37&Gev-x@wKdNL#)i}wh8kw!}r#}ln#kO3E$%q77xz+dHlC0qFTx|EC{p7C>Ml!{e zZSnUvMBjIHq__bXRDOvM|CT#UbaR**iEp--1QZJ$+)n!u9#TQH-ga<{-aiuG-=z1y ziSK*VB22+DM+4G(`l7jkGr@2fjZxw23y-W?K?@#?svZTjZ5!vBHf5t$-KRCMX*Why z|5U4fOJ7i*+sT2YmD3fx%Ipu$M$y5p;R`HJMPoMgo_Ne&poT65X(DqF>{*_-9bBUa zV>F4^s0Y$1;-A~*QYW%)`~@d-jTJPAH$(Mp)l_SF@>7}Mg0>Vj2_ovF7U@hXN!^(z z@s$aF($+`SA%b$56)>rKnP6MHOVa1r4(_+ev5bD=Nr6K8*=?$E@Sy>0N*HW+=!MpP z>S8~Yi_JVDqmZR(KHYm?-2Lt{@;FQ!6f9(nC)GcnRHBqVR_ps*Q&!_Al2+q{ zGtum^vJYzX66g05&H3X9eq9>y94P#aD>Nr4<@1OR&Somv-|DA*LGag{+n(jbna4^4 zL4yX-*PGFQpOSP4OgzHr)JRAJh^7(vp?bT&HDx=j)RdD>4l)@j>a!$m2H-nK0MveH zyEdC5AGW0;FP$TJl=d|C>z1|@4z_E8n!eHib5mqWJU7k~T-2)1-;h9j+rot$0;wP7 zg=0eq?Pa0Q_%eNu_AaHvbju!DT4)({1aHfrubxtT&($0SYA9w#N!pFYLupo&pU67; zBL4@aJxBY@xO*^{8!pMEs4=4|5YIZ{fH0pMH**Rm6_d7&PnbJ^U+pEW#ubS`++>5O z-T4EZnRSZ)X~R#64n)R+{_Ba;WZQVfz`&)Yfn@A5ys8x25nP%m)@#r*WkOE{3LWhN ztxH=~I3_T4;wg^M<)W^BB7rztSOZINJ{5haM>)*6krww;L2f`7bB^*+8uN6~@EhM3 z%>=O_N8EZ!iGo@Y`EqwCy%Q}g!Q(6V8E=jeY*3GCAIE}^^v5862UpoeoieY{F2gSs z?(s#OoW(!7I5`mR$FT%YuAmE+>rAnt+h+C&U5d2B;Y`C=6+9bieeQrS({;%!M3O<% zf8+mRt1Q90!<%>&ag;M&m$W+M#q`L0bX0|;%DW7;MK)l z_&K#m?amC2=AAlG*R;ob}OJ$5XnW%OBL z?NL#o#flU8_~Jae%EM){W3el^*=(jD527n@zFFM4R5TOocgEd*ZX7vQx8T4++G(&> z^;XBj9g9#A4yToQs;gj>k)(^eO6htJP%b!jFf+rhc5F5V5FpJNFB2kqpninm28 z(4+lW?OHS6kF>>aZ$TE1v?*yquM!NWp03uAG+ zDIwEFfQ^ZMyrW&*JPhD<`oYus0q0Etnw1)Y{JECct0fdPIK_15 zFWFA~wX5Ml@VEr=k9jFLxWA;A*+WUpl&}>@JKrwV@)s;uRcpWAr3L3Mca7poU7p7| zZxPR5tz?zkMmfZ5iC|mW@?6WfI-$EvqU|}+&K!JVo_A9Uj^dE2_QWW*VZ2f>g-4iV zQS62a4@o*9^s%RQ!ojrCJOX~gT;6Jsf|X=0P@~&z(0IN8+c2eig5u$ zp279c#;tueY%MNaloAhbjScYAMK1k07mv%*IrlD=YOGa-wVQ;GbN#3M_)YXvo1}&k z(h0?o!sxGIalCVQi3b+s1-Fe4sp>z+TYJ_&A2nU@(~4?IL=4;G0=Tro z%mnUSkivu71CE%=dAT^#+SI)fMEra7!A%R4I{apQKwn~=(1UrwVqHLV7E;9PQ!SZ3 zb|1Y8n;T8mn#FY9(aYYVWp6U&E?9VkYSlefMXBE`Qah-F4ZO!rwVBr24sOu<-SPc( zdjCv(e>Hbbv4Q6=WP9HsfwOJ=W>G5gi#q7xH-bl_IyUkieKCw1_5R8D{(8NCI=;Uq zs^h$caUL4m!6mFq*ORee5=)5U1#vbCDf89^N}9P!v3YzPgS7sIcm{6c4A?dTYZsAsf5ah@>Ed(2x$rF`>OV3|c60obpNx?I{DTN$~7= zYI_vJ9b7VlW?>X61E1L{jQ5P(`ccJ|yT%3hq=ibs$Y30-stiba?PJk7KTj!OUqx0h zH*dVXSmp}1r|TA8TkzU^BHqs`)c#7E#vdk<)T#A~Qa8)}Rx2HKL48!A6ugSxV1H;` zI=@oK52vfPigh8Mf2|@LP4BeV;sJQDDxBV~`AjvltD+w_&Ud9#@JvM(g_aaPt_*O& z{FLCeiU60)ca;j`t)aJqLQ5VWRvKpsbK-C$saX)oiQH5!*g2;O3-ghF-1B@K6m0Y@leJ#vQq^c%ONb80gbjn+CgVs$5NBxx+a+Av{1H9a#9loM6i~Hue zxQqUEUffotR_}S&U-hm+3#;amN z0~ZZD$i2`#UzGKD`lqhjMZGPHIGV}ubjkb z)5s6OL$g)g#2u3Yt{|LdDD#W6mCfVAN!dvAoN^%U`14W6FPK9b@y^67&Yz<+V&B9p zKAfGx+DU=n!`ZIp(!c@w`PQ;;_+a)3EL%P4V8r^Sd=$ffC4}Eh3LP3|pO~E*>2G#8 z+wAH&b3-}ntqH`03poTTXT7fXm&Et4=>28!{fl%n(U4?R9_xgUDD#Eg_b{$VeENU9N*oa0ebW&snVsM4Y26Zz@ zNuQe3B+7disG`4w9OT|()ph**0yPj_Gd>_fYum()fQI2|Q$LM?UOkzbxhAT6s?Ilt z+qBvf49}s(fn3QGT*EvMLZM&H51!!PRW!wOV`)}@IxOeu;`b#hbY*hUS|`vVT~OZb z30kOOVZ#~PbejAq+Pr;iAm}>7Mc;8jr!Tni3|d0&uHd?+cj*RIXPrS|5a0~g@{J>= z)^T5^Z3Q&0M{>e@pO66P?N+JG=2(RD9vL1a#!$tX+RR{$y0UQ%EX4f zS*n81C0a6#*HnYWG8Nv&@KsVgra7ZV>j^$F#n&u%aljP4e_d7CR0d!C*-~nz$V$W@oSM;Ihw|iNhVIcj=t` zL`B~o%{_rlOwjn7$x1Y~oSxDGtF!>2ra7&6|BNnlG7Sn#uxZ=I2RLUeUG|$!ck%e- ztl%BS*_|VSti!vc!naC*l#BPzaB-k2z$Fr3<9rt%R)mjJqR-DKB^12d%CSp}e)h;2 zF0MK*U@+paPbLJIOL%z{j|&{Ue?}fR9~X>Pc)m+QX_kFA-abQ{d@lyW z5eVLyuePIeDgwN(5~h!J6#+gBuh&!r_$a(y&Wyyg?EI-87L2TX)$*=@$m8SL(g0U0 z>iF10FA32s@bPqMfa}BOyGsMy5MJ*p4bT-{FLVEY0MciW@LEdVI?dQq5#U`kf(n_90oSMxX8ujW3z%67P(YS!FZ0H#(K6< zxLmMH@6w`C3C>#9bt6Oc1dj-7?xw0?)&^S0yd2CU#^9EPx=J1xr(jMZr=-x&m7(&- z*Gae)-Zlg8eyz}&imk2m@}_Z*1T?=4H&JPF7!7^#1aHhULYWjKHaVG_qojoq2S2Vb zd7)ckpX7OC;`R9K@zv#p9=yiv{o+#uVJgAva(M=Ou#?fF>vQ=`K9aIq%0mDEl?uBI z+ieD(K(Jk%2@Q4`&OJsCoZf$?st@NL(`y57pUDw&24f?0)z}bH8Sb*lDAq_F*V@>C z6U&h!8F%Vsl@w|sr}_G!j~?VloeY?1Bjvpaj5r`aAlIag#i7hM#OJ1si|gBE4~yH+ z3_X9IAWih1ibjGDtN`bmzJu%(@|ZNRdle;>Z?O_5sUIzyWGWxrGerd=_Zk_Uc8!2z3`pjN%EVstpHc3 ze&LB%L!)o4cy0r;2r0sn#G)!IIMnLmYzYF)&QBM0=7}$LL0;d8Hw4Y>Fw!u`QwFe% zdjKSjp)D9y$Au%{U@PN(If4|6k)TQ>yRmMui;vW@fk#THw6f*6CFkPT6#N9e>Ri_0 zZZ%3xN2I%j8TY47j_cTYJn34eaGTt4ih6l2&t%%eA6=2l`|(b|^FC)lX#QU7ngk8t zaVGooJ|DjvBlwW;-*$uJK^9_ivN-LzV}OUr7`f(2%EtD!-0=5#S-{E!+@(%mcX|u@Niak zOgS8QHZp(M30$ap`P&n9l&BMv>gf5lFAFVg~vhd%i-o_vlg@k`@)n(Kl)QzFn5tTL~hoic}>5!Df615 zrc7NBs&*DAM|ARx5G=1ru)Iq=l=VxeGGEfMZmwO%2q=jaN2NfFE0PV- z66ZP8<&Ih&Ed%1AqR3oyX)u%qEH1 z@sXH`VNZu;Oi9FfR5(*R&IpGG*rmC<3+nUGB-~u^q_q5X61ygf2Ev2E8&*I$g$G)w zkJLk3zE-f1)R*P?BR!_XsD&sjXhN)&EE~sJoOfniKQpEjSbs*2te^Yiwj?F0TUilJ zL_C4ys12aZsSTk2`tSyvXo%pH*>MA|(ST1vW$2V9^5W5OzIdy(E-vjg;-MqIn!+!q zv}BAmbxsVRpFx=1VLF4dM1rSIaU95u($d8(w?r-Tdy338Ae(cvOrj_SJQwm^KH)DT zb-p+ghxhw3N>kX^p^BafdY ziVUtPU`f1taq2wNm2x`qzFEY-y13({0Ow5za7euj*0sR(7PG8dkCOj!L4R^n&g8$j zT}&#l_eV!>8I7jQoI7J)cGld}|7&y8!kKk7qfwoCqdYu%uB(_tFr(GH1=&#(hJ{(f zkG`f%Ym|hTlV&Ya9Nr^_%RAdZ;$>;c80)<6$Kz+=uZmnVlq{{24~VxRDfo+i@$kbzAv?r*h zY@>j~$EQ&y#^>V4)Um&tXU%E`r6_E!>;!JkrIc>-K${<#ZrT>sami3#Ln25@cMm2q zqrVC78e5clpZzo8eb(n_zT-N6ismvlDADgXXbyc{5{>mLG_wQ{g?n-Nc5?4&9|d;e zHNWIjpr~nY%8QM#imS0azk1~=wB}c@UcHJM)6&=nwKo;Fml=WBUOc68WJbCas!dX6OG5l z7F8iRENZZ$X;CsYN%3eVfLiKQl*$Xw8nAR~TBMp)!1?l}7wS`?Q7?MNc?~++&Q6 z0kr4y3>oL94yReM5vQdD|KMV37XRc5YO{3PU}*~F!8+tz%yDrXn?NU4n>+L|afwY) z#*~+|(}XkfWY`6&Yu_;RetmO1;Ma3sz2J9=qU8B42NoS&nn*!#nbKl%4tB_Sil+|h zRdF zr4228qzs&zQJaS^D6(YKqV^SSiZ4jHM%!csTifzAwuJ}6`p42ZYXal7{$8#BZd3o{ z0B5FZsCzR(CJ_`?e`9?u576jHDSsmRB?2-{4X)>oVU2L@=;NUmxjfqQSTVqh*1Qa2 zS!~5G31u0TkK+SYP8oVS$l%r+89;9*#KEq1qYhEeTJQqS&L>G<~Qou>rIR1okot9 zXj(K+voH=nf;~HP#;iF_n!ztIbJoI{v(vL@&Y87frhahRqEPPU#e&ww`f%35mIbrs zn!`1k7R_tchfRy-Y4*Pa*=dtGggr4M`aEK`i8%RRB09kx&9lr&U-sg;JlKQKN{0?y zpWC!())IXvVP{#OEc%E{dj0)IHz6*3xmq+y8?jI67s*FgxDSsRlSp0|jmdwAu%)^d zmeag}tY(1c7J7VDAOEXs?ke@}Si-`;kewd8Tpm2ku~b1AK2sG# zjcLr;-O(j_Mn-cDmbzG)XAE@#r^eROsSn4aalMgM8l>454YXRb$9SH7c!CTlCR$OmJ@GwQ`oVZj4S4?5k#K8|}kaX~k zVx0t1CtilhyRD$e9UGiD@_L7yn28S4BW7gtHwJTYs9tXI zeda&m7>G~T6Zd906U39v!We2#IXO>fqf$YSIu_73hZVGQRQEQr_h~GMW2UA(5m)l7 z;gyhXP>KGNDrsXSlcGw7&XV5S7gzEYE8(fm^-@bcsI=(&4EE}mdO4Mq>YW}A9bP7S ziRpEk=TzxqhNto+iVaxqBArr{*FDBAX1G|Msuz5nWU^ZDZX1t;`6U;VZQ*`o`S7xK zt{Bb{_ksae=lX2R`Z8X|K^wTNjWp{G4C=MZq=zqq{<6z>BY1;6ftcN3q#$)daCK1W z26yc6J4kEW279 z+}g(AQ3$Tlp{iyUOKJ$L$_&z#93*CFyuqdoKqc9<&s12|LNU*fDKpa5f@k#e!^e0Q zHrNO4iMX5NAlPmPQqO_7dj-e*ULBWeLAMUYAJLkbD45o$dSX}Og|^pq6P z8e{qPJ@HV!aP*;k=084?EC2YB>^E&Ea>pb2qP9-U(&`FEib19fDk4@sO5{9!; z6wT$8h^BeNp>k-EqL(!!t4eF1;v`cj#rN`psaf&%;0r+mcxt2)Gj8*A3_muPe@o@g z`YI+Lq*=@D7knuYmRG)s<9m4&8=+!tE{~5mXgW!%5Kz)oLknHf)uA{V?IVfqCSlXwiHL_rx|G327s6@wMC9aHMJRg>LawLTK{T{v-RP{@POUp9JHRc`- z+Pf@mS7RYp-5efr`%m$Xg;U;%r%RKWNe@{t(vMf$_HEeeo zO+MrX8S$J$KBOPZ-Ra^OLlW7x+Jn}b0qG_e8FkEh5(gR zoywu^%F$pstmwTZ%E2;R&bvEwO1_E<6FMcB#sRpeB(SToH8)@b+e@-Ch01 zhTtNr+L%;SbYi3s-e~W`Me4Oaijf{$U_oh`^M%Jp8WR#TD_l zO0ixFQk z2ft3CLMf|}2z!0YXy zjn-%C3IP+qpvNkz`bZpPhjFHhUe|c?4VD(FsbrW z;-xr*L{6Xay=B=N=4d0e2uTYkvYyKPMCN#)PvM&k1N$y>=7&_EyPL`ca9zj#=@9hZ~?I!n!_cTOn&+w?1`P_k~m67KBWi5xE^avR~TSWGR8V@ zFziYhg_CaSHm$HH;#7tP{uxI~k%y16F1KXx>_1~;BSK}wtIbGfolh@lvnalEL90?u z4y}%52hL!9Qc0hx?Firnc_)P(>u^Su1H8u1d3%1o2HOIn6!;oIFV~ z02p`DWuans_|i&2WY3cgU=r*Aqms6B)m80Tucqr5W|SP+sy5c zQaFaq6D(6hA88@?1UC2Kr0mAc#6@4c+9V(Df}P!nAG!Eiu!f6T$>mqo6ozXkGwo54 z#S;&IpVw^AY2$EuMm%90aGeB7_~2yCU&LH~c^;)%qAq`o$STu2qCdtka(ju3uVw26 zKj?#=d_O22zMIGQ^MdHe%rLC`!c|L4p z;+o?zo3cYe{jutaWNnleDTipS%ehRmWVphC(svedBV6WW_qG|Q<)*fUE>Vni;EWWG zqX?iWOE4pE{cVYAN_)%Vfw<4uA30-0?Rbucyk`1wXXr0Ya>3n2f%n< z8c6wd+#EW@CI+&BE>WTL&%qgVk;w+`-}Sib>X;yuif54#I$Q+Qmj2l^vZ_38ES$fojAU?wap^aW0$K?MVt}iRY&TnR}UWRL~(8D_UdPP22ljKE5 z9}?LHmt4tT?VE|`tg&LtXBZfjY_VGOvRQa^>S`k!P4_n;QAEyl8E{>|3fKAvgCpA~ z#{Js_+Mx>dI?LL>%0c>@Ns@KNIFp!^zKfhOBXt?E>JMYAK;=^TJrh%rSBEG+nxweL@+YmU9ya zWqC^5S5OIp;sm3O8|ydMa-3x|=I0|&>yM2=y<&Q*`YF@5<%PWEf4Pz|_DUn|QKn`4 z_19DH*HeWwYcPv1gqCfoAtK12i%Ef|+aZBl>SBfaw9^niL}fq(AQkf>kzS$Nz~G7j zy9__J1B?$SgEWe!rX%81*-)!u89MC%61Zr08#`%>WQ6|;BJ8;|1|>HnovP`aBBgEg zvF1739epUxx&~ngFhY_TXBH`@wu-fcnNl>KoeOALgz9VbE;-@!{Y*U_t=R)YstqM6Dhw1wOMk z3T|NrPQl*xE|X}Ac)_(I1!5HE>P7Sle$nRQMPzXu{VF*M_uRNpUn}+XiU(Ds22YAd zlBGg1l~|9+CQnHLXQTwLfJq>!Q~A=3tJ?a=Akd+q95_S&jEv{5`cmA3oz$*K&kySX zx7_bfWGUWW*KyPyTn=V-eWA_8<;dc#VO?lEdKV^)(uMUSy71b_F3i*}G+H4U%X~R* z{lAl6b&7{?_c9J6Npj=Wa$+MF2#16;n`gYL2S@kVBhjmTpkBHq)4;Q310#Ja*Cx8C z`r$Mdh0zsiGoWMU8LlH|tr=_5DyLc901hX`C%SES_)YG^|ZI<{?KHtreehSYdimJ|Xe!8C&=rIT9S%JA2+1%ualJ8MLJjV*mMVQ&> zEND@KHnGSY7*SvF~HU;{z;NP zQu@r&GQfqto9)MnE*#feN2`+6YvO-6S$xI6oILBxAIYkfdBc8OB8l=-E_S~rsZ4;y zh&OePFUdM-aBEgc0cXW03Ag;0xV;zCfwhJvMd}+rG`g#gDa9J*t|if*?wZ7Vq$K3$ z-gHG5mDqq@&J_(0q{1txYAZ9PaL7)v;neDtHc{R4G@>fWk#Ari0v`~ktHg7j($Ds& zlg{HwfHX>Qr5ut${GA(7*1g}1TmLFsuk2%nq$P_Nm7L*n9eY{=8gx9+!B`vdWRFVs z?eTuKo^QpVR@yYQaD@_-1`1@w^9A>Iq)6XxPXvU~ffHJX7spaGt&{x#LZknRPu{LV{0Bu~JgL&>I--IJus$X;p#ute|^IR(=u07w5 zfqi2bFgtG8iUB$hJqN9a0po~5p|!@g_x)}R?Fl`(%e0Mb#Yy_aa1UR|3Nv$hf*-i{ z1X}Lx3dS?m+Y{(V5YMh)_pF6+>JSM13@gwL% zhXiR%w)RxMBIV{N6@&o`W3v2M*#@X;vz=H>WnzUJ`Fy7|#2u=M@x-oj@FaTeN}jpb zkdlmDgz~gk}N;&9|aqPo-34 zu^&XtwQTrJw8CL;n_FWDXe6pTopu#&wpfmPohrqeg2&qj>?-t-!%5n%#Ba$UzEBjL zmM7n0@DvF`4Oy2~N~&j^=6cykv?@^f;iSc2f>nGbNKqNQ@=HLF`W1ydfKRJHChVm5MvdT&n!y;Wu=)5{qhC zr`jrMBNJD(J!-Kir_oCDo^Y!l{z@}nQ)VZ&7{j}vD@t54;S;ZcNVV8B&cU|>!L}UL zD)I0zE4@`=;2~b$PD>pHX_b`Jcz0*cWxy>*1elS9W3h;*jy<(4_wmhturXt zQ$mDy@coog1bp;zeb6{q45PM4TkxxrfR?|IS%<#QjEUkfsVRI1*t!o$jc zbv5Iej;@TLIpu1Dss_V~Lb^E;#JGS5`z+Pj5d1PX5MjX7zl$;86BV!whwvHBLunX8 zo2SK5@{wGCpf!3Z&wnvc{AANlHOddh>kPaKN^@kVLZNBL=2!GC(s1T z;@Oq30^||U-SxSTYd1G?rHE&bbMQf1p1{^2sO65StYCf@L(Cc0L@Tb>NI)-e>4bm; zKVxAU)A4GXYmZZVtdg25*`!)nSqd>p>c&7XkI7dw;^;Xf*(V&V5sxHUd*@(hTgt9P z7Xqp*o`bQ2Dnt6>SzpKT2QkyFB{x_`-v;LQ(V>M+xs*0B=Q5M!JtYB+f@N7$1elrU zBJ%M0B4)Zw;xj*`819)Qc;G$)wwYcCr8^E*Pz1ETfn@_I4eGfytt_ys1UIR3w7?PC zUJ~d#R*+ITvQ`_ij1roze24af1eJRvf;yb$qBm{59$JBJU&#=jzbKKlLs}bolFsf@br#An^#1Py59WpEnrY{j^b%|1kKa z;q~G7Dc48wa{}g*O)_Wvjmrw}L(Oy#ZF#q(arcYXkqFb>8@NKfgF`BhpqalH5iSp+X5*QZm71qP2gOE8hl(j!dYfHYr2 zLE5Fz#*H~#2rjrKSbqf#uGO9R*KqY&!Gdj6-Q)rtac4^@zGrsDqgZbG#?6i5eU}r2 zqK2uQo;qufAI-aI=YNS&+Eh>)DjU{`?;j2P-pDzDne*|IM2M2qRj93+-C4BQ%Q3(} zJxluiAeu1`qHY#6<;>dADgas_|X4* zMVf+-a%juT%cYCJ)FX2l#@T z&-JXvUr9-cf01nR=+>>MOEPzlpZ(Di`!F}%G(g%={Ae0+hvy$D+c`-oM#m*v zUt(wxh_spD^(TR@K9!u$|Ijm9D>Gqmfn^>-NElD> zb{q@-YTb^#S6T}e4vYJ)*^b_TV~Jxy*t+U^2T71??KvSQk@^j5MmLfhrM49KPvEWK6xIFeZe`!F7PEPSq3O({}B6q0QdCH z4-pJLR+ElOj_E;M*VpW6lSt6C#&uV^5#NR>ST8S&Nwp1o>_V)L_t>kKlDKfJbL%TbqhVOzotZhpTJI*0xBWkcbJ*Wj~tpLWO3o*VC!i4fCbzI=aN zT?|0{vh3cmbAnfqv8DHAK?U^!@h(_poHBcbVgv`FViq;^J6WA3+mRH*??;4wY61J?Z;Ns^wOLR z>~Y-r133m1WkM}st+L8(PO+nY%}A|rI_5%;sU4~O>-1U#pLFkI+koHUoReU(q*nMg zWKmD4yZ3Myo3+q0KYTyrB;4mnN#HLRTQ9}Uu7zEjz|u#O&Dn{Y*XQp& zR7083?ZjWDA!QDE7uk!|hn4X0sJJ~k7rlDk(#{xa6LNju#d&1ndu3sKubz6Gv|;gg z4X_zd43$52)mdo4dE(=uhGy1+;#<8fh$AR>3Q}kacS~d3^O?+dRpEaPnX7J1YP7-= zk~xj_6SIwjH`S*Z3%o;uH}39DtRz1`ao)^u$KX&me@2@HZsJia_vq&NnD z##yIpEg2SrF>$9HIy!Lj8eapMfxm2S|HS%tC8#y~cby__W#71Sbhg!8yVF!bXAP9K z5FgqY?!FcZh}ylsyx1w8(Y>$(+gsd4CFtd4w4bLn<`a^b`AiQz{6I-c%J+V?kB&>N z&j*wa<=waaVk0PdZqq+lLI3>rOc| z@F1W2uNk^++J~G|Ez>^_nE>^W4%`@p8PgM@Wrd;mXd#WbVO=>!tjNN3vhHu$>3_@F zQz7fY)hOyKHgCi$w7pIF9lu{0jyn_dX%$(Kdjs_Am*d^qYie{Ibj)Ev*F_d}A8=Cw zl!3NgcE$cF`dyV%zIDVM$M5d7vKiz7Gy_U17{Br?f2D0qt&e-ZN_<1D)S!9i59~dr zQc@+``!3>~zFH?$8q^;qNm|}V(zN%5@fum5w;Y5*n;_BBV%V;hpJVzk{w?FSH5#&e;=d9>ORAy*>bu= zW6rlB-(HP6%~RrHRhAJ=sybTAwcLlcQiteh{ro^(0i&}G;yx*`Oc4*gjxVf{jp3db#7DTb&0oy4OiFrqbrAjJi%JT=Ek zP-|VA=Q!@!6R0`C=89^K=F`F94}H8vq(rchc0pgpQ{ggx@E6tpAZp-!)d)RC=X^hF zM`j1aeFL!cfU}SZ=sawJ{ucgi9#P|ex$A@_#m4rLmNV_`K z>3X~<{_4N^1#N4^bUeh<^XzYU4CNj8YE_9N8}UjAs%Ptb!k99%Vy8x;E; z`ecD(?B;PF+$xH3raoNi491%m9%0ot$IvPtX4zH$9z^i{dT3a8cl_&zJN91hAcZ?u zULlY0^?$Q7^{g`#MF?Js%Sx^;ec~rS(@MM6QFzYFrpvaiy5BWIWeMQij+>8eopBr# z6~gc87Ml{b;5xsw;W`cV_J`0%b{Uy)_mB0K z8%1xL@3D4ud2?`WFSsF=&DVbOFTid8R7hcG6I+e*zPY{n`WVGDS%NH~^f0;WCu*Pu zZ|UHMnSG#hQUsB+|7c6(CMSMpa!cgB_t;#S?)U+u@@ z5XKcsjod#1VYz-$eUFhDULK@-rHT&ml_dLMLi_djviF{C`rzT6UcY$sGrtSkA41G6 zXEFmhXsvoPoOQvakBo0C?hkftkXWg@9xOie%rQ$q)PDJ^B$-Ri}MAg>`7xJ0o)ChhCrYdPXzA>5%D5ePMZwskv${}uuh0eJg$VOyp z!t;6eQ=XeJR*NU`mQN~$#N8s#+$b}~875}Xh)cVg$5Q64NrwlMHvD9hix#pyQw4m# zQJ*$JHN0t)iOntn8!|}2cI1ie`&$S3wYlWm2bfEJb!|6Jw*7nX)xe`lW9@dgNWUn- zENAzJT=4Q#q<}o*N#8U;rPnkaMYH(&${k|HpRI#IT*^wicDAx_>h1`d_ zG=HvK6%+@yf!2kx7yrri#KwKUpyd!zk?6XyKk0~a6_Iz>2?*jlYcu_*&=CI%DII}{ zL-rp^yRX(qD$vBHu30Y(MRgw>F++R*{`rJ%&pA0)xqzlab*91{-gG?5meg`kw^&<~ zqWz=0;i1BW9$Z7R{E?sFmy-8G#yUv3Q)Yh#SKbqF2MK0`Dq!DM<52<=B5pZ_b!i{b z@3|kMgtwzWjuY3eF-0iFo+6PrvGJC7vF50o#C(3)NkLVeA$CaJi_brJqhho_x8do! zjNZj(;gND05O>5nbam$=?n?GS$lr)I)Wfdvtlckt*fMO7_p3F&BTl-%rmyUmi=F*i z{!JoGQ9l@K9D1F2IYGt?qyR}KyoA5sv8(salk*Oq2y7je;T+VpbTczae9fwv<0!hQ zPWYk_Mbrve2fo37cU`V#l?6CRU1Rul?stMaoi=^=m%q``>J1$NfFC;roIdz-aKpY1 ztZ>Y;fh1G39^PyV75Cnqg0b;(^=&WYx5DfUIV%#T1Ts0ax| z>nj0%ik*1$eh@(U!Mj83vAc{W0A`q#pml~!N>)nlT zA(CE1G(ZmGY163?^hvkD>Ay7WOE^F2vLi0I9O_kn?5&3A%i7-QmN<6UT8fA65iDxU zX!79us=Zj)(dF2?m8JEcOZEzg6owO|0~btuhu;YgE=Tn%P4?KD+mBE$658Np+UPa# zxaHmH(eY1vb?mK{?!7+P-S$TBv&{ZERfN}$>b@S{YDH}jGE2;zkfFYBHqxqMCS&P; zg~Ay+#+(;BWvL&V-9lY9vi>T5ecjZcn1y+K$RqN!OvDE09V?7}dVkNS-^${^*g9i1 zLXIRn9KqW(6oNXfIo^_dsg0YJIGX@-2!UZH<^ER3G*hLmbMOdpQkkxmR*1b#l7w<< z%|F3Seq-f%Qz9u(2N?W9(rixU!t)bo%~aTR!S}mzmwBA3(f(A`I zp+VzOgxJ~L+^K)@dk5yrn7V|M4dF4YUz}wjt!*uk$Clad~ItDw- zhzl~c?TUPL^@PIQ#gz_HS?KtE(cnLs_ELTFsC85;dwKup$Hmv1o|`_bfBP@G3Y5kO z(HAUV$r|9_d8!`%Md+hUA+TS@8s>zDJ15HItd1$25PTA($pQ~Tk8w8W!sl)lALb@K zVz^6nKY6bw?y=xu6(BOmJ>t2@6ceAZ7qDwKi0oMg1?5mb&qq0) zY~oQ=Fw0A;Oz4wCD(QdmOh)#2+cla(9A>=l1OOR)n$U2Lu=)!g+5M==eRrOoa1%ORiUDJ3a! zL22ys1=^ri`1ATr)+LmaSZRWJ@$6sc4ZhcV<*Yk{alYA##gCKhltmS<^UxMb7ihlr ztBN{BeL_Et+X)}x*#-WEy>WPS!S$xf2Li!*vhg)dXV*>rT1U)2l;}1NDXJ0jc~|m$czai6@LLOKE$%&v zCKYFT_B%Bx%8LCRAy4`a`mizno{&WQsTVBAk`$M&2PB>4Y}MZC;&98qjNjN%)8nWy zBN<#GAu0ST!DRm^nK)llE`!5ICcXZ-p1ROI4z1WO9q&{~ZO>FgXPnh<<5&2wBHtlU zxRM|Sl&*#H#|p|K9{+Yow*`bTG|bp#sCmEkNnft%DJ#p$Cc&#^~K!xa~Q=mMYUn6m620`-bY$jN=r60j>g{buaZZ#jyOYAfdo zNWt*;EH}UFx<^eDLC_~SH%ke`ZS0QIs!~TFvn`sHiF(sIu#(F+d=5Huw^oT$?%Sn- zrizmONnySx{y}YG$lZCBw-8RibOs)^I0aLkYrk#rv~U9gRzO#0<2bLV)?3{=<{`TE zKgbPGX?Q-wbLnAbC0A7ylV+qlW^l$VD(|tUOxAYLVC@994gOqwKNNJ%GAKVJfd{aw zw;r(@w;cJWS=I`kheD^`FZ)-MEyftsami+e#vf*u%PbvFfOmDL5 zn_KB`Fvg|-z<&NGMWc7Lu?BQJ`Bz1b1x~3b&FqGGTMCqAIN!SwV%%ZtD6Mn)vI0X= zhs~^Y-8WhA;z%;GVlr~NPYpC(L6M&84(VML|E35cup|T~dH5{4*q4evv*6=Tz+UAHrxcQp05hK)^9Oz0=_< zL4#-|ERuRt@*78LDAPLI(=2<@CT^VhkEV!+EBhn(}J+^rH~UQu&;LgA}ZjS1t3+FKklJ`Vae-1=AezVY^e$Cpy=Id4f~c*;X-e42}5Q#Ttf$F65;; zI^|Y0@jIbzIgt5=|=_IG~|as$7k>3Xwt2D za~f*C;M%uAnrY3;+aZGaR4_v2OxcS2HFPa_*`w>{U6`w?5|u+bvDOlbMDsQp$l4jZ z$0OgPQe#d7b$FdvI9-iz`~9=uqHs9~RfzEXNgMsWXAViF3D!r?X^^&@@-k>)xdr|| zx@B;o&!uE)LrrRVHbCRoR^rnBBY#4gO8`eRf2qj}j!K;p5WS+FTAN=p4pm3Qtw6wF z;3@ZF-4l?u{_Uj~Cog9Yt?IuG_)f5+M_%qlm$orV>pOg(5ZzBZ$AA0KUI)Dlwy>eS zAZLYuo(kIM1V`?f^QLqfjG8cEkijgrH`fI{aWJ@$FvX+2ec=k4tv#oT^&%Y&lLRxO z-+p#90dE#q=I@Ga1uiLAMWPtRH? zdgMQr`Y;93Jl)kZkX7-$mew_KA-(!rH}cP$fDoPS%Z1lcIIAId(i57gW4yX`IY*)J zGwE|L2E&ix7OTq0#}0lr&>o$unRRt&jad$9={|7mMaYDKd%rs&YJRhy|aSmq^bYk&L(JQE5iDh{3`E@Vv{0BU$J8 zOiszUiQt#CcflDi2i@WbQ-J*ES0b~fbyGf@B_umJd=C+%e4KsjpR*?w-q9gwEpD;^ zmAnLwe|j=+W+0p)a#lZ%f0_6oqs;ah7X|^jN!2d#!z9~b?ufT&j^=fPMpR# z*?zwf`yfOBWRT?I7Ak17pu!L(gVthts(Q~2xmi4>KI+V$t}oz_p$zuYMy-Ae+OXWTAo0Y5|*xSy9GIk__B9{mMJwo8#24;d$)RR4?ejp(~?Bn7?e|>2WqS;Ayn#(7qvHx z$Zz)q^I)n0OiegM@KDM>iP0BcmqmWN|&3xb-%ggaa zXwQ;{=<9J;eY*vKq}D3%^ZOTj(w z?-ZF`9Ka@wu+ua~EdLOcp!Uj1n5Vsk8$R5umuXCtwj*UEPT1Z=cP{0j*1oM>XV$by zQ|Hb{;YK5c3rcxk-KYd5AbhyF4rznd_ZO0PE4_1QPa26SX2j|Bh+Kt=)n)HtC{yE) z;FY^+hMg2^l`Bp8>d}Od^CZ=JJo5)`v@J*GROa*hwDrRGpv(lwGM46$8}_1ZuPa+! zc)ssv%NXPma%=s_-HG3+V19`f_(b48N>Co%~pJLQGM-1 zqA}qZT5ft3z}*n&F|hb)EpjImYh0_8^BMA_{}EqnOE#0Wda5OEUq#3Aa&;hR6}481 zmm4>)dH3{f!I_yB(v1jpU8??k>8SUSvoq8T%^WZGJGp#2u`XAbJx7pWTsuw}Tv5R4 z!i0#x{v&H&6R(NlU+^}2#)`0H$oRB`p8B7szkTbPY{!~0Ka1Rue7t|MF0bLJ0>iyN z8YT)b%bBlP>@*XZ;@dCxlt8GXRI#6Sot>|!y>Ie4!5q@ehsq!~#S>{s0bpZxN5~vTAOK@GKYJ&c#Pt#zd+8$^oi_8@KTIfG84UrCS17dWd-!9#lkZ?5>Ix2Yj z({IfoxXxPZeiBHI7ts@FWnHLdl#r~h7!M>lbFcZ~EBKEJz1Lf|pn zm+C#=x}S;6wPJ3u<%w=2jS)vRTxs*Q9UX1K5`VSN1@nYO;X&MPxRvVF{si>K(I7sr5QlBh(df`+Ow>VNz=*d87C)V%^6s9JJ;SL_Rg)JSMdyl`dSHHTp@8 zTx%3{Ox}F4W3#D&F~A6E+MhU86m4>!Xpb%;k&!FovZonpkL@QS`0`qF51FdjwK4WgPstrha<4Y_~h=F0V(;KHlda*4&h4xt9#W#P}4vjXJS{=FM*j|JrvcTd9ILM=L#VYbOY z>sy!C`CqHC5q{bjQqx|_52X?v6;k(|?9A{K7@2XpJfLLw0~_|;R=-`qheC4wlwl%|(;6F6<03n~Ln)`BHM)pRit0bR>@-xVdX8c|`#T$$S98nT z=f1Mi=Bdx$V{xr3u^C8bHGMMv>aHlP?Z3HlkYz2;N`hU%70EU)eIpo>V_vINVvG1y z;$#>lko1_j%@QL$muz6_;T!LFdgPtLlnnvTLJxyJ2E%AK*APTg{<(dxi@ga;0I0P2 z#4vkr6+DkaXAEh+Dhar~_;Ird%Y;fN%x<15T>x! zHiD?|>&{|Y6S*YC(oy2)UM}s>pyRCE8Ol|qpVGEpL(U00#JVw0G3p%xE$3l$xLI-J8I;xQdaqgPVIN+!nH!yL*jXyfO9D_*Y(~(r+5-?gyQ~N}E^| z(x7x4hHUe^ZFRfV+w1nFfSxbG5uXBXa6FQdWwnERrD7%Tuc+JC#A@7FD%>02y|l*h z(z64b7T$9<)D1rH8QcI)qKC1?Bm0wayZMTq(gF3~x*ct;*Zla1NBXU|lp4G};4G-j zv=?D|?{-K=IrPuP8d~`a%0^2TB{v))e*W_vr>8<{7^Af#s>7P=Ntf&5ap{8Q*Pr8J zs$j+S=mG6slIzB)Hn%PRxZIu8bu>eQ`yhF1BHUJ8Ki*2%RwwVgOOgevW(V(U?_AG@ zUcRi+-c-+7EdAeE#Q&exgiNgDmxz40WTxt4)kvzQ8#At zg3Z-j!MnZXKbNw`Ha`KBgTer6&gHGx2+{Gv+mzT6W5$*&!v{kYEs6YGECQOI!qn5xNAeEKZd2yiJD-wfUz_;->e@JgK*QysDt zTyy`o;@({ta^*BI(HVsLVG^u6!)XvWq_wQ;vRRaxU8*1}_VVg^7X^09|5_+bg%v0^*vv>8)D#FIeB{ z3F|GL^B@x{Eutn(<2PVgAm@u#rbmvEv0QhSl4L7I=~;KzrX6#Qd5(00<4iuPq;oIc zFr&${E*Zv8l{OJO)zN(Rcxw#(UQ0I$mx^$wvOe?rpX>yRP4DSN{f~XDY|af@+S<$c zv(~zaI2<8gH~_L-kYKCL^pOLvB&AJ`Qx69WD zAmB&$3)$`%81&e}n_zEFY=1}cBpc9Bzo5ouSTwrwsCmw0mzgqRJ*@c$e zcWg5ifz)v70Il($>+ z8~|jF6{AhyLOJ_7-8JBJrA!+?O4V*bu=>#t&nN1;fED1|)ejMw&zlNLO;S{Dks>x> zzNmNV1zKw)5&PHFakva44yL?v;UEQ>B%xn&B(bCf;t0h0nC!x;&OY^h^V#djD9p&F zl)w|HGcGZtm2*$Ej~`9)n0HyYsilA&pjotN=~1+NYH7Oqtw!A+XF15uQ1BgE3a9A) z*ZMaJ-hHMR@? z+H8p*+LK2%i)lLu0}{~pU+%@9TzB|Rs0o#d(EG1kUQbNNAuUVw+=&kvVo?!!2OB0D zbb}^S^j?Mi^WUg%3-_?MCiC^J7=;nEHeescAmkfrPvTQfGtJqwqnjBv=?*w3^0R!@ z#8n0C7%;mkh@Yah39}jFP|)VWmYpNuyh~v^_|{9CuiSPT=;fO&-HR_s=6-`01^iN` z&tc7KJ1mzc`;WZ4w&yZowG<=K9>?w&{4BAQeov*0M z+-*OAo<`Kv)-6ylFpoWJt1|VU6LiOrfz{B#1lmOwqzSXn<9B#D{Jz`c%N2G{NN9$| zU>rPWHzwo}(?@Huh^ie}dqKlaWVcv6=i%*PRkH+a$Pq?&PF8u<`>LkTjk+U~6P4F5 zES^+9vb4q`NY#CYKt!3iabi1lp4l|6WK#-Sv)KqX0j`VCI_@_4U1kU|$LA~!A>p3W z#&o>@`V-K7hEslWhidb`#CgG3k*%C2CsxYC^4%JVm?ZL!f7|i24~1Xahv#x7H91l& z@p_#_*bS_cfsx*=ow9;Hz*+sm%FL2?x^ezeSbTAtO>G>N6k+869kwt)w#Hx4%^0LP zH?0t@KF;hh;YH~GDgE{WsF3%lVyG*@=0CJCIp#)m{@PEL$@W$j_h-sCy0|IuTBUpm zCXmVkzl}VEwt>aV-re7>3&x;$XvZF(xR?H5#hW8PhpGNNW4WO4Zb96u8TlCJRsofQ zr}I9Q{LRwxbWU;gGy$;VVfgwT(Ixo5!;=w2PyYRQKTy-$nbyX7z@d)a7h3<;_2dOa zXnndT*39Vw_ZNVgIh+6F$XXYZ%gaX}3Zv@Dga{xBQ(cGbo)Oe~`0F7tG5o5x3^+(~ zW~chF<@zV^nS53v333L(4l6I;cqTH1FvNP%DPMc#dG#)Eq1>{n=l<`c21PE3mv;Jv zhvLjBLGwl-53r)mJG=PP!G;0=itiNAv#85`)(@?^`2A`%;29_rpn{dw$^@DdpZyWL zxNqNy#`z#m(J*{S_C(h4GH*l~ne=(#=>s|Idg#F+fP2MN9ViF6fWK0gXsG9+q=762 zHFDRQwj(j^>}V$RLk+@`P7bob-dadED8xapRo8d0zXT`G1O>@dZOb>ElJJJ>KYJRA zg|nJBD}_d#dTcJ>R+i7;x6wJ*2}=4wpgW=bRDog@TP_Y=AOP6F=O7eNy2VrfDcqIS zk0-tWk;#!0`Tjb+NoSRpkrtrgg=d#9d|9mo8P2#~weJuAf zJe%d}J2f$Kx?qO@ z%6-lk0gd=${Meea6L~PCi+Fdy{>DJq^9hygTFa=Rl4+?;izu zR`5W)*M@$>hw2sK5n@8`s}W#{mF#@LVNhUAqZMLSjS(#tnYGdk=RFH1#wr|v5Amj*_tk)rV z&w|L(kLniNc?B|Bed7#{+wNA*8!X(;%fdHr(qL7>l09c(_XiAYuz=Yq=zUBjLBGpc}l<5GyZsM8pGls=01ROFbcD52nX*(Da2HnIR`$HbD zQTDh&sZDDA%y^xA)#!=28;s#FoP)OFBKcK?bd+Vq-RsA&2yGr*OAp zBC6+_V^33#FvE#kw*{p%6=gcM+Xdyo!;0GH>Ah2^O6Q6~CA` z>x&4fQ`03MhGD&o@6MVC&E#?`*^CNUJMoYk+amOFwqdOq;T$4WvQk1>AJ@!NxRSAa zvYDxqBs;B?IHCK%XI6LixEI|7yx*=lv&l^0gg>}ASj@#(g!Jo)$yWQ6Kh=>b`hO)& zsjE;eVRW3^4pQ|vYDq#}Q1^11*Pn})WM3{E2wcOBYAs<6-=dJ{r6WZ{R;AzMyzaCM zp1?-PGP;?r+%~I;#rIE*Wa_P%4+${z`U6B{5Obi^{X?cV-NdF52O zR%>gc78iQ>xe^b^t+J}jy;tcjw517fL>CTrgZ`>ajd*R3z+9_+?bJOaLEngz-G9y(#NUz_O)<30vClusMVpM$hr88wl5Pj$DDn?~(Boohd*EeoMPmP4N5Bkb#pgPK94N4t zIrVE*IAaRrm{7CiV>jchZU9(|yDVw(tDZ0byT0bO;j@4cn)l<#u+|;#Q5GFgiMC7+sg7I=DK+^p1i!{udKn?}g__TU@X zk?@;y-%&n7uOWR~UaLEky-$Ola6$%q_we%~>!E)|%y@rask@*9u8>s2YQ6&mg1*7q z(2nD{k`#h*@DryPepW1qHFgG?12Xm;49k-f&;UWw@&r7liVIDEblysc*&}+cub@P| zxmvN#HSkpNK34J<<`5cYTl?|&b;t+>q2d=oESS)4seE&K*+8Pm_te@8hDcBlA7cY7 zwxV@HE7U^AJ32Lf5!p6`Ld!gQ|31eR2`H@G38>aZAbal7Yp3ULQC7Tb%Ls z`{0wXVc{EIa9l%^FS}3FQe3${7{+Cu+9Z}FOrX9Gf1Lpijh*#1DG1K{x%skz_F|tu zOi%<8a_igkhtK#yomjHKyi1@zS(ORK@Lp<6Dv=8x&R}4O%h0p%+q!(X$p*929~MQ{ ziC1P;H_RBTBFvDg&NB4G=Hw%`U8Gt)3BZkyj>3UTD2um%Q+$Ahnn^__W)DJ!a-`-g zwFp#T6hwuS$uuYDaIw^x((q$uyPuB|UerHc_);IoY6*em{FhmSFQ7mu-j~Al-X zYyT!*p~6}O_zE546TO<9OFKIqALwx$rh3?A)d{_(FEKIaU`*-OPi?5vgl@wRLd#>+ zi>F>%x(IH8cfC+#lcXFQi!yCA>CwGHaFUr6J$( zCIQ+)K|fO{kTNWNH$G?5>DR*Vv5DvzpsZeIJql*03*MQMQx%yjhsuGUa52vUe{)Y6 z5Z5^3M~H>~ty-GDO8Fj>Saj%&;2=dt8*l|aif--xbQ<`>E*+YW`F4=8HwB_*(g07P z3)%5|4h!2{@LTz(QNz2b(b9@%Vg|-58f^$8=I5lr5|7}QQ?gzs)i*7NL1wj^*=5CK zs$|f`8=qfeD!V7@==<7LT{zlAIlQ)_iN9zPU!=d|$%ngkzNnOB%dM*><@RxM7;6K*U-^&C4GGP3Re7c8Xs`LV>JRxt_2T!Q_yk0M06F21+ zGJ1IfFR5tkcy8|a>hBr+oymqwb1tz$B61RR=Eqv*7D56>-=sG&M(4hK8*C~>M6+J3 zq+j#iNd*O%-1?iw1;Wv1frT4i5N3pK)gR3Qw_~jq-U3@TkAm8KNBjC|k{j7EQOd?l zZ~fOWyymqW|7>O3&H~D&GE zldUcq_iDPQe;?8~ezN%IqI$@cwHF7T?8^}x;}b6VN_t-U>!6r1hB{YTv`BVw$5z@^ zG#YFuuMu}9-)n>?o5YZax+`jI=n66FDZ zx^!aTARRFc;pXR7zaHmq-nz>iu{dzA?UnlokH?k_ zssNz{5&wR1p}T@Y#n65&rKQPYj4^1tka{(5T|Hc{+x-t&k6&c&0XFb3E8c@+^6 zZ~VNr?$^p=drPTsxm77LXnW|vK@ZP(4xab!Rs#ZS67&U``WRc&-TbX{LFewh`W{)7 zKyjatKu#aYg~9U#fJd|AlhdaRt9(xCvoNc1*>W!G1ONGUk0o?$8I2j9^==mhSoDeUVN6lE(au-EX5wXMx>gThn*7pT1bJ z8}vs6HS%7)B|9LWqiWfXtI5|s@EZ2}BAfS>n0u`N(+qdXX$*Yu0hsRWd)(+ZI}9fc zjxU@+494Nvq8Z75qo{g2g2x0mjfkN7;KKdz1EH~vgXw#n-`M}n;P!ri{SfK0OTV30 zzD19L?$%Nx4z3{tyO1Zu4ST+*D9MYkG`X>huJOh&Y;q0 z_Y(?NDAJ&p8S)h^dum9A2lM2bD{)9wt|3sqF0!`v#4htZ$-SiWKaYH1f+^n8bu38T zA`s!3Tk*1Nw3g8xTZt6c0d+G55Pma0C~*gudU@p}31EFeCQekr^5)Q;6FoytzjR&G z?~Q(TajzTH>GOsClh`;(K-3s`_;R866EKI0=RdIUzL$Ljdoie>T+=;g-)0W~ujA9(d z9r@khntH?2`1ki7{)IHN%OWm1Tl8ZZvil$V6^L9-4Lf`&KAUm#&=u6*M`g!C5e+*x zTs;p8LMV`Kl2KjmkbpZN!|;#LTHr!pOZU2!wn1pl-p?%`p|{OB|I_O$cWsmul?M*K z%Lt!!Y9`*m-T+UcmsIV5ZFw?EBu8GZWLPiv<8Nn>E)*yJPCBJ3M?CzS;3{svdDq`2;4Q*UP8{Y0U5 z;Mc5^>{YBatIoNGeXeO3pqIH9z6kS$q>*gt&ZeiM!#xSlxBq##~$gh`lv^H9jISvnW1Fwz5M&P0NzZgK0j zvYYYCxiJy5WA_lNu*n1i+Q9JK_d4aeZz;~iN<88(BFW(Q5xni+-j93r9G#Z#KF6ow zx9X4=`)(>s?i}@M;&IkCLFHq)C1Cxlm8HzAzpQ#`^2~|*b&Fk`d3(9lJ7)N^8fLkw4^z41m9;M(WRPo`ON-vR)SA$ z#l-Z$Zez@9#9eK8p9YF#50UL@v+7zZSM9g&hHK!i>nCnjyy zW(BBX3*6FwYM5DH3zwgb1@Wn4b6mpTWI!Ai4eWbVbE zQI~a9t4|QaIp>8_{(YX$PsPU4Oj36eJPz(UUWn`mzFgw$`7nS6w98*ma3NCnxJHdm zhnLg(NhKvcyGg+QgBwE^03YE7&Cd;%XlZMVQydTVtp|O_R4^1yPoL_{YLzJEXBce* zWS|?7j8km!d(L;G5eIjvY2d&9U-cl=v$Hs=3sblG9Q+u*K53gXzdI=R&dg--!v1aF zvTMq|cX(iI1GGJmkO&h)qtO+ixK$2h{0^ZUrrp*oVLl)_o?M*@5}T6+fY#?Da7%7` z-}u8260u@BqS#iq!#Ou23g67OG?|tHXn6zxFKX0h@S0i?Ynfw^eyXQaFdgcD7O3Y; zCtazztG$_#&YMMZnhFb_0KN@xT!BI4xt?3m^eaN_e z@SEy9+(!x7Tlv<+om+F}Jr&R9j1L3Tb>^9}ER`TGWEaq{*}dgeP-%T}R+_@;D}N&- z?`Di*wpT{P43cr2*;wvXZp&xj-^+`h@}Uh9Uu+st(iphkiS_%F8YfHTT}Pjtlk!JI zR&de=a|2HU4eq4FD*``U3}s}+RzFQS;eUugeB1aLxvEAP7mj!%`tdqT0*2%O?VsD9 z!T$*`cF}x5Ye=2cJEqQ&T+3A>*2xImf=;pGnRCM#=fI43Arx_fW0-O^pe@Q3K@R^* zO!Dp&0zLr0!g^sx#z_JALzXK&n+4FKdPIN(@)DjSb8z!dMqzTs-rsXy*}1@*?!VtZ zt^Y+4&@zxcuoA|JOTu9YFqZ7rPm!;hr&*TF+)(*Yal)`oxcN zFpkIrG11Ve(roaUBHd66xJNxs6QYP{7*6KX&XJX4n$EjOf*CfnVm@ zC%}L1FO{%kB^6War=Bh9&lsFh?2R&)1lA~`1LH2VTid*!?qA|8f3gZk%4HlLX_*Q< zgAL{bo+dj^)&bYr-gF+f{?YA+<&Yb%X{r!qO_LeJLXZl5J;{D56(W0X<9YGr|~!rj`Ys zFE|T7jQ_%KcyJ8wOEm_^!OL$wLGQ#6G#_FC3k!kZ7ixnr;FCr-Ml}7zTPGB&`?H;& zDK8sDTj9tM_*zd{GdJNvqzel(!fLw$KSZt@XFwPnUCNSMV3ff#_BF*!b!fFB7zD?wk;O0E(Xm% z?wM-x357I#7a1?K>Ai|s3x3@$J9AL~00wV@7WEu2@!sr5g@61V1w9;sl~fmJ&^j>rtIy>9c|bQuKCK0=|NjPpd+A(?368BMeP&n| zNBh#XJRx$nA1P-!cRn}@u^Ja==4G{}stM|ryC?Cmsm!-pp*l92-^DU;?G=y_!)Pz$ z>l{fE{<@&azSZW;{@KON=)nO@_|Cwz5C?g*S1CGq{LjekLoaVW^S;P&UpTS~0`Hh#W=r&a$2W_J1dtG(9^!0(?gHapdvcwm=u{&@;Q2x(w>mtMMZ{+~=3}xt(W= zxsaJ*Z1x7L5wTUhU_Xm^IWbmD5ge0f#oV_#thzHi8mfOgH_n%XFRH>!Uz$8jR)@DI|T zmF5Lz+u1#oR(~>jbPYJbuB>-pj@)z2TljJ-{-Q15AsPRE-WfK!!Rr;>$er6Db8O-8 z-Cg09PxDb;>27jcmKCSF9K?&&Z#HsTU3R_T{9SQ<#M>`eBVr+?o0CezfSE=&or<}( zUx{~!)QRgruwy1bC5+p+k5;!l%#T&P;URXT(l46%SXhdQOSMoj;Nf=f!Lvto4RLRz zs@|P>Wg9uHZjJcjsfxFi#`P!77|osgpywhXYU{JKgC-*q?Mf`GJP(@}@JUnBGjva? z)_{iD8U%(j~^M1E8C}9%JB7xdtCgg=r1dzSN}?RnnjD7 zjSnAEOIKZ$7<7j9q_Idm}jPixkzgs9Pd@C+FeXs+}fLoC)5;hjZa?SlYB%(t!qp-10!8?i9R4P zPZ+dnPXs+rt^HoG|BE7~pmVUwnBp;eSJbmTKzzyS$2*k-btPe6UQwP}0MpUS0WXnl zF#83)WL|5g?Ud30SzdHdHyN|;0kJ)(vf~%d> zpUnI7)sHXM3V%(`?7^QOKZ6CLKy7Dl!M_s%tr_mAj|u6LC!2RHS!zjkwO|K3%cGTk z&x@sOeqVHSN3`9##y&ruXxHDJ7Fn=caozu37@_Yc=_T?P*(Na_dEbfWD57{jq8i@| ztMZMHvt16|yQ6SLz6eqS`w$RlYeKV{B0AGP^Z<&Eyu1wLT(`SG)`|sEJzj^C=ne7n zzt*BYb}y#*Ujg1`S+vzf=Uk1>d2Xk8py)-EP*}AX<;8{+ec-Y-kE~mC17_UkNDxwf ze0YGRrbFZxuMQo%W}-P`3RrF9^UDpl{d_l6c_#0Htn1Gw4T4{P|In36KIK|}we!;_ zsrbAHoo4}$P6?g=b~oADZOICYr*HbVG!;F`UP@2j?GBu^4K59_3Z9`%s(nXX2ptaj zxM?Y%(53kX_e)4P;vZn&PM@kzGkB;$yUe*Xt>#nWw1H)aa=UHN9pLlWttK6kMfV(` z`2+hhld@?N5c&Ap&2O#-yQBNIn179K|CCMdNA@kjWvbuahNdNI#lnzeMf(1eyDvU2 z8tbz>SVu?%txrK=oB&t@N1jex=VnI?jNMgu-EL~137w7rKL3KE6KPg(V~MXNCUt*N zE0aw9TG{!6cL{m)Dc^cy*g$Kd&`bPp^$S;@2H(MU>{L;N<@+PL?r(CG&|}Es4cB1l zi?8Xw=)AT(c@hh+H@2-B3Q;*kC~sEhsboARoZPj0^}0js_b zTXyRgqvJhr;6h6+_<6Ry3H!}|Kg-<&Mp}34@-l%roBZ#`{{IdAyYuQ0t#6f6 zo8x%@gC-&3BsVf2 z37B`>(;N{qzok;owIlTr+e&xLLXrx*Jf3fcBF+;E{m<%5A!^XggE+;8@Jo%Rvn$(6 z$^l}Ld)>-%WHec(tu%3@Y#F_S4|3aK$nB^A!~$R!_*D*`#n*;7md5H_wYd#zGk5GJ zR+~;TbRn%cSQ$x zDV{`mF&~npUb+kwPKx>Wzu`DNB*H*msno4s%+s*pSoOX84J~z*;#Lj8M#!d+5~^!8 zmnl=*r~VgQOgTQBE=?VbARB1^{3lCIK^e#e3g3Zdp#o{2G`1P95+i4)p2Ic(i-#Rk z35A@+O?3wM2s*_QpLsQhNb^&-{mb%ny+_ewQ&tc$?s5JaTFgHKKEV7%KK|4ZsKItN z-jQbX?-r@1hBI8nWN1KDaaFXKg#paj&GPt%{HC+5LEhSzG>}2Cd{l{iXK89l%-iR; zj?CU7SuwIp6nBoUhI;1FnD(c$2-@bHlf-gNXD{W(dk=!_YoF1E(pEsZb}`jp6PYDz zL&86weR*)R|C+*-EpO!9Bdm+J?cp4OW_!}_3t=@ntlQ<^C1{XYyP_l&%w#}`IO1>*wzz|K98Pn9|Ke&ecx(F#;~Mr z*xR5k(Ihl&VwEaOU8KukT~9CkDN*})qA$S^Rn3mrjA6d=l8PIDOv5NR_4ly6VAljx z6w*2+twhiS+;h(^%ci~&P5{DiCgT2vHWG}f?; z#MUeHgd{F}5tciOlhGbw%cY_=oy$YS7<2f9=CmE9(pUafqKo@Ru!#Qw^NnuIs!(X^|Va z<-^6KgU8LN&4IDe0iBqHO;PSs6PRj@RQLy43iS>BaH`OV#gd~ZpIuGju%Hr0a zV?1-bI zKX3m#9JvLHSS$;-Ja_?+hUNl%WvF)sobPZtNqrYVVc&8OMz;#v4H}2Bb4)piKYY+n z4;#9pFYbn^XB9HXIAJlJKo5^J2udSt!F$Imk{=rUW+eWy<+8tmV%;s-irOfh7Wiem zKi%#^dk=TuUCX?d%ynAIxb0EdJF#L4n%uAVuWZ|b9)dglOF=hEu~s{F-*TN9eRH{P zPq4Cl2%2bP)=KiqU%K+TEw`FFs6M^jX+CE^aHRPw>*81wPd7;reo9PX-f}`I`k1ZM zV`cJsl{_%XaZWn;k2P;(pz*MjROI>%%+Z>-kid6Rf?%QjO1AN=i9%l3rYO`y^74Vh zT7b9&HU-{*ZB8ZedaA#fu9(Ww1Z_)N%H{2x%;f*~AtU|3Y4NASoacw47V}6PQ+wW0 z0^^;>yH8t-h6D#c$K@b%mc9Tr-qsr@e8R5!<|*_#VeiB_GjvOw&tr3g#LCXEAhra> z`vi7$hWc*4&9^8D3I87R9P|e~_$uuXqmE*qd2lGGH~xoswn=KzCZuA0~wjq%yM_+K3ZS8V14D> zuRNo;9{tZTgY8z2^FjS8_rlL3o@hGrVSgChWmF?)CSNuLialbRPVG8s)XtU$(UB;c z((t%tQP!9CPKJaCzFKosiSeXXD%Fv%bj?M_`xYwvWC&t#(N|2NSB~g>ylK~G{#7Nz zCo+NA-Wu8U&pF_r!ROZ0m)3FO)f3zIInq$?t%7^B8Ivi~^Mm^r5?<2I!km59H}z?$ zRl+M}vX`_|BsLVg+dKK%?n}03mj0Z&iqlq`vyyCIX9JC<0(ZA|rcHQp0v92H0%2eCP&a zW``?@myu*c#)btnFdunxAr&>37bULS?iO=)P3d*#4VoFz!{+$$(-wL3jD*+0Pf?k{ zGuLkWpu6b0L8?v&*1&qedT7*7pkVeSds z6W`{sam8+>l&5o6Me&wQYzIe(cJK%&9evl@Ot%p3(;Wj#+B5%PdF@Ap|Hbt_lCiYc z1J4sfPpm@lcbn@6-Nb)17^|6R); zjs484l`98ZWgp0G`yrOMTCV+xeD`7efM0H#lFWH}>)&PDxzkve<91bA{=~vi&PKJZ zlAmrV%UjwPwm<8nG8b3X&_9*h@Qi0zZINUWSUrBHZW&*B1aR~%MC|NAUOawU1~v_t zuJdZW`{zLy{M$EkRyIT$7HcGk=gL*R$39u+U`h>#Sbu;VH5a|c`2a9*`Z`qf>*Obz zqA!y$WjQx>cl5y^yl~zh<9J@@W3f)yYF%a#8{BXL)ouaMW%-#qLCPfA*Mo>iQFGlepHc;Tsw)^oSu7#VE9k*S6v_EN_GP$cC)Aj!e1v(eDbT{;qgJ8U;+&ND04 zEP6Rq*%PlH)DbAWY?X%2^~$_6eZ6sDYymgEAcP-^Kj0#givHl$!v z)8Jcn6{6EO1^3HL%cDnsj{s}fApzv~tJg>_Q@iuc{=q)Qwtfu?A9~wb+@vDG7Wlur zyYyT&4)~-^FFos3^!tmlpq8r8vd`1jAh_LmXml$Vm*6hjR19VTFF;}|f%v+7AQD@| ztX)Ru82FpO;QyiZ0Da7g2ASD!I-$k8pAdx%0|3A5JwK8l*n9K!d;G_49&9v55Qkfp z(!8_F6gK#-z2Whqdgp|3Ud0l4q`P$XWlP8X6&8Fc43AHsriQi`kptU3|%Vx$<)4P^ECSIrea8t56?t!op6eV@}jc&)!NWn;4pLwve+|D9V z2=qEw5+9tU-C=uo`M$lO0`3YkecnLZ1lr-ybK>yKyJl7)dyBuEExdnOhs?Zp*oxK3 zOX#NZ?O${N@r^q^g;(uO85dFbbqtt<$vm=R;PUS8d{zgPFXM-Qn9Ststbr<=TV%iO0(m)5G-Xyn%cl|Gei0^QPmfK$SCC#sUPP_B~vNWe3 zX#|{LRQ%tyA_?Af4`w&A-;Mt?jHmO}6}5z`(ArgK-&JVyDzv2Yw4ClgyW>NSoG~}m zm9@c}W3avuk^m0=kF)seV;1t4Y3bOfa6Cy*nwzr&=y_FAE+J6P+k^6Gr=QCWEc$zk zubv^RIF?T%+TXl%0tJJlq3)5ibdiE@%iXXFt^UGdGX`dhL%{8K zUyZfrdC3=j3=vm~OrWG~|K@iA+*?1lZhO3d!l60^;X9F>#Wwl|&8%4N4ssWN!Z}#D zKFb5^kXj$x14R|d|0V5G`%Oi_|2(AWYun>D7urO1Je;&I+59}(Gs+$tiK=sjP9aev z2CVfU*lXF6mU^^s+^Km@FX}^_I_7#^J#zDffg0IyWm^Lfjd$iOR=d_3Py3eQe^0@< zxg4hZF@^?-DZLrl{!;5TCm3%3Vu`=F_;H{HD1cndGET)7fv?vQ-x^JxzQ5&ZmJ{qH z)fcx-@l5L#4PqyT*iIwXkN1Mybb>3ib_^yHD(V*4uu5ghb1~D+iyG|fFo|H;^s?i= zJ?FUK99R?T8`m24Gs>dJUEr?!{Ty>SrT}_j?;1&ckLh>zS<8IpbBN4-El2jplOc^? z`p9&(i7bc`qJ4G?{GqlvkJOxgi7i*{SJgHDO8rwd>tn^H5e#+m;}Hq>a}dkU?7gj> z>dC66Sax%jVH+{qYE+>gGy$N^2S38wTFimOfmH=T{t487)cfAPB+e1Q!92-0v4eZ- zfKxhk^ktM3j2MX+!#3F{0g~*}?!Z*pwZKzPy9uyu=SE-~-5Zw3+|vRk0h0j6Z`F0f z*N)4rW=BvGDyIV!6H$1RWz{`}4$5mvVWJ1((uw36^n3vNNP#o;y^dWq;BK-sVH`gm>l1w#Au@=U-{Kf%WPm#A}~a-b3Qs~aX~ zBX^;UmK2dda;f7FEin5E>W5r?UyZ9Ln|FXMQG4sZ=Dve8(ptmO|~__`~}F;Hf%f@Y@jcQxdXT|uuXLvNAh@5Jo#D)8rT*uSN&QitnC5NCkF z=+?m|Qj3&l{qfZ7b-~$frw(gLxC7KoQS2`@u6rKA3TbzFeG?JtM^%+aM*nA5at?yOhRW^T&YFs$S_i0FvwSq}qL_&Z|e5h61Ddz$u zU&;+uzJDR;VLTV+mX;>UnfP-XbGPy4iWczl!&NcMee!-)3m>Xw*VQ8#SqWJcYncmp zLaAVhmOxT~e|DMEsIwv5NYv0cL9jgX@ofie@Vc56ULfGANDp>W&5ILjl^G11)md#{ zf>dDKZQJ(LW!^rW6+Zf@k*;DD@62ioIy2UzblTJiQW62Q7L zg)O4^&HkcS!OGl;({sCYftlIr>gJSp=0Mr_x*}9(rj@51nm)9{bjNtGLRsGA7t^lB z7Uw#D&dqBc{$nC08xQgRRE=pveY-*B1%#p!2O0raqRvS0o8j^<#jXbbQYMR$4`b)rGBQkeJ4kS+ zz?gS#HkS`zc}KZPPB9304oTHG3SM zC`RD>tPh8`9J;HMGHcG-1lqH{&y0y6l?Xv^q-^6o5XWNm#j^Xq30-b<-aYa=`^+U? zV4(S7sUwL8tAGmjhPdXgwTvgOls>b4jn8skJzYSt3e^P(0LIL8XN9851(*>xXU1i( zCO8;FM_3~V+T4l5JTH5(_=? zTW7**2n%#%RQf+2z&_f|;UvqM-GJtU4Mm;i5DVzJYu_? zy!WZ_!-oC3#8^_d_@DUNWoPe~#4j=-{$HE9b~W9iwq=OU4a+h6N0ytmxT6Z3Kbw5i zhIuQ!z|nH|KGI?@iNPr~$7F^(XSi~WnyVnZ0Td-+p?AaDd)W!)wyd8J1<)#z$K--K zvW9kS%$wz3Grqy+o@tRw5{74yJ7@v(nSRoZg9qufiRQt*Y^ZaK3AaV*?oc*|s!yX= z{q8B3H*x*Cyr3ZRylCnvd_PHEc5B&5BhKFidQMC2DXIP6NQdF3~2jSD|m z7YX{X*CDHk3~i^UgBzxeAV;bdp*x_pD_D*(3G8P6Du_dsQ3@{{V6?y#NPyz5X5Uiy zYM0;OA(iciDq9yC(zG5MJ^J-U)&TwJDN)G8AIOt9a%y?qU$suBqPUrC9IhBd2%Y5n z8vT;Ok($msF9+nQY+9@S#?+Z`1(JDbDfqX_YPtJ*2}|KtFfHdM4gqxj-rO|l@ZqUr zLQwy!#zk(!hyQA&?loO)J#2dIOwAqeAJ)Awz+&=pk4T-HpC|vt&~?=^W2Od&Z4(+a zx`V?fT>=8E=G^lj!C<}StLQ%`le)DySke7vV+n;x%qyn+hs}hT=t&zro*R~{1w*>2 zC|Y}PpQwm`k@1K!&$bPC2K*bY%;EoI%MKQ2$5d84~l6({!G+uik zOz>Y@2jm-+^Jg?3ja!mE#?mW-GgX$u73tzvqu{qm`%Jee?1FfCuDvnlW&o7@jdblM z7xIQFbEY|VQLkmqJE(xl;8d~}?6s~q%$I-(YIBmWd!{dbZO}o*w3+6KVX2ueI z-i+3*2HUZJBDnjui9?-A6s0Q&V8NL@WYZk3T!CrqSR-=en?mG+`WdWKV~Odz%bVeE z;7xV-JLUt{z6o3|htIvJe+S^?Px{tugE$LqOQBa2ry6g6s5YfJFV%S0^QY^XFK?z_ zL_YQZe61>0@AM5b5vwajabH+7?g#QZ+qSc~e*mib@p~@6*T2N52OXBYep}+%Ti3oY z;Tng^cE5RL>t2EQlAFPk%AdxL#>fgN#_-GFZFaMf?fUQ@vdZB5$33op z2L=#Jz4v5(D@4c??^?IL(fzzIJ#OZJaNpvf&;1p~1Y0`jlrq7F>&TJuySuqVUIcPj zh(DYs0~rwaUU*ifqsK(`Mqs#xPDI<^ousbyuACfVO^Iw5#6@;!zP++rJhE>rFZS~j zJ`*@>?{|Jka=Q2Z?L*e`Pw1J`XG*U=(QYp&2evoPC}UdMuRT$` zdA5k{W0x>+V-vKFD_wt%6A1qL)tV*${=}a_r~bjB`e%$nc|~hbm0!5VRm+vzz$Du3 zGdCX6C;?kAH*Op|8>V|1vyRjst+SrcI7tEpvaeDdqMp$_;!6#zCkhvv79s zw7l#H*zbVbJ#5_ zFf13(-6wS&go?yFg+umNfSJ@Jdo(`@`n{{r)-SJh^RLwFOIk+?pG-M1leOyl&Z7jJ zL0Q z+r{9)r@DSuhQK}81!tytM*`GXEe(nzuGvkqOC!K@vf0TknHo0v2{rpyI#sN3j)5^= zUppj&jWB25{^>H@%dopN`;S(ln8`nJ?(x|WM%Qzz=0~tVA_x5A75&-6K{Y12H9~ld z1v2Em?AyV{TdFJ%w;z-Ob~P-1(fQpEbo}QOUG7fqf_Ox?TPHvXNBpz-a0YFn+S|x? zv7~GHgZp?+%hUY~X;en8*biIB?ii@W6o@66ni&^9;V_XsiFrL#$aqQU^qv7GvaO=W zp*@eZ)Oq&ef6M;1qFE6ane#NK$8OzT>>qhR3cI>qpols49CGQ>_+QN zq@A%?9~$v$XT;V1NKGJ)Ugc{W)4hGdQ#Ne{NIT9c93HXP;U0PLuzc&~c1%9UxP-Pq za7#68q08{Hylw$G^?&CKun(EK<^1fjAFr?$l&`L|vXvc>a@?WOmaj|h5wQzHHN8B5 zOJgwA;o0nyic+-9(n`x4!=rtURRdpLre9zm-0=;EJM7mHugf|Y{SZ&$c6!EPELTZQ z8-@pDJLKutDnLt~e?OQ_QSGPiwIs(V$JD;%e~?mJI%JSFN;BOVZHOT|L7kyT0$Hw^uM@dY3rD6?!eSz)uaY*Q}1d8Fb#Mz$>n!@5z&!lsLP`Kc61#4RB6} zVn(0aw-ZpxvCShrXJ)B4II{7V@E+fX-Rq7ij`N_1jPC${~lC_*Ctvzx&XmoIsUxTtuEMz;ikEGkVHh=9;hJkD7n^n}Tk-bnHU} z`N2yBaLg3Wz6bKBIZt&qJ3+p) zO2;sCLv&MFkBnxR5u7N~Z^{BThw1d)yntts8=peLkuqnBAkyreu8ALLVGbgN+CyI;$ zWCr^Ly2vM9cP-4W9BL9OVjGHvb8 z?5uMXRu2#+qnGofGP+Y})2Ab5nO``;L{1iw9H}nkaOT-S1?qB8ZFADnC=2c!I1&6@ zRrQ6?4}g$~=hLN^Mw+jG7ufW9fY6Yr; zn`1}UnFp?_S87havU!~C;|kLuRnlTKY=@7LrFGA&y)E)zpvHJemgT&pnas45 zs3lAp!h(^g)jDmbY2vC!1+Zs?6D-Jh#X3AwzjCBwJ5YHp0UNs6yHL1gDKnI4Z8a04 zL%l~(tQFmR=+&9tt{?myTNgY9Io|m-&zDZqmj{ZX=_h2&V&$Wd;Y+Oc5sio?j*DnH z>RNv0hkK73BK;JOTPqzV8M4xn<<+W!RZWKx!H>3rZmMKbUzaBY6jNWX&?Yp-`}#JO zftcoLN{eD-xEK>G?;nNzdc42!@b`eMMEuw+h#3npPLQH_V8U2Y*ce3_s91NgYTc5) zhL%xN)8@5F@Tk(e=6;D6+Wwig;h&GwB-r>8SvLf)w7c;6qk7rvEhP#)_lXW2IA%tp z*olyd5P^79w&-XE*Fe(teyUmknbSW#JO=+p9a*GuS`Ot7C&#DWPaI)2a^mXK?Noxk zkDe6YK9ZZT6c7KlNrY6ePj;d-Vfp-}EXmLi$6*1;FLQ=-f<4P<`||G%c*io&3HYQW zTYzrJyFMLKqSF(6VDt&QCN}qL*C*ss;Kg8AY-Z)a+g$3!*%<{)GH2y_Du)dqpgr+q zah+7iG9wvCV*Wjd+vam2ez608(#-XbI#CGH()&|?%y8Hr#lVjkoW-6ec)>i?KbR=W zp+gTZRm^R#4hggEJTx0hnkB_AR3821;;>Y?bK+J@>(89C8qDeXQv(Y`m(NO1S0&`Q zhJ?c+Yx7p0wUFgt6r)q7GEFM*Q>y}-hvtLMTdc?Xx|&mzYJp-xK(eA!gBiq!9j@S_ z=}0&rtn=VclBn4OH?+jM#D}JkuGRjTN0ztqVS8*K!5`5fD2jM_Sm(onjHK2*?-YE@ zmA@?dD|nZ9YG$@tU4cE?{8p;^r|V^kv-XdMW@Bb$X0xW4i_TLSVS|X(Egl8MD|LN$ zx5_1U_Pd@IOQc@5-O+#<<*mrXe81+Y6QDIEPHP?4&*d)lJf6;PEIUb# zq=#zB>#i=*A)|f8NjbLC;w##_O^pZ6gzcE!v`LW)(a8CzS(bT;^AI4EtXW9m$Yi`` zBflQX^eIV1n4%WT5^-hAC`h1VWWr|k{*pAjw4efGu`^C$ej@Hz?gszCa}<+%btEo_ zOIi;2`}?bQSjLTfxfbXKpe@JsUjdsOft&pP_jc#$tcS*=k$zI8-vpHVh`^c4mTjWb zKk2u%*7+kc;w7iEMC{fta(rjx+BmftNDZe2M;UmLu@)>ts`QEZSZ7VKj2U}iG!zmf zMH(Z0SR!sZbA(0^M{;gY!x~B7^Y3L?%&X`jag)sz?a0N~dzG}{xVce0L8i@s)y7JV z`$nHqXi8&D*`6)L7DUyRNwn^xjHteQW=;8gr~x!3h4k>o3;nnPU+UJyv82+I6M^Se zERp7OePYN%wpNc80ef8X&QVCNsxQPNC)?plHZ1g7Px(j@tjt@(p=S!iRm}U)q=;;+n+wD z`8D?+l;IPs(pi5ng9#Owl8`0EP;lJx25A4iv6#-R(9b}N9UqUau(XrQ3ibl9oNlIZ zu{9z^?vippBE@n+>6>V=Pgs@pUpA*HNHxjq;!hsGJMfwO)8iyc_%%Daw=5Yod|;T0 zxBF{=e0@z-wRL>%i*CGN;B41(Sno=pykgS*>>4Alp9ES&UsoO*Cik$9=LJD+?#ACF zdecgn;zv82NC0W#pED1NWTlPdbItH8TXGvfNzW#-u84>w@y5l6#N?BY`<%k{C?{mG z#rg&)6&d)Tgo!6*a4)`7} zIRvM_^xLg)pM}S{!{wbgWGM2F8pJW zKGfMhM4L73`I9gokzOJvN2`Rzl@J=%6U~YOTB9#P$0WkRFJQYV5x8FP*95{_C64Oi zv?vy&ejs*L7T0#VX6~Qug@5}*oB@; zuG>_X>uq8dZYAG)Y<}&Rd5x+0^dP0PUebw2+U}b6m|wj*IuCLzGi&z7il)t;C9eS^ z%+TRqLVCMF%ksAT-_WB_qR_-_EYO%;!GApSMjNz+VHAIKTMPV_3eT)W*K5Yl2p8NbjaZFJ#I(=*l|2buM6 zlOw@5`ug^0?{`F~TFI@iMEH`&ziM)TtDOOJh5sgUu^VaI`U68j3t}u1q$K$!(ysG; zxboU!>=`2ow#L3dk~#=HXoU|WiqJknb4tOEbS^qh^C}o*@BkvfUWw}fXb-<=Ri7VR z8awHi0?--x3rj2f>><6sRgvoj`G>_`hBaI2GNK^Q{`FJNFuZQ9N=+Q};01tdM%^H; z@!z*zL>32z>=Hi-kzX}~owjJVU~h;#MY9A}2aft@Plgb)S7&ddy94^HrO!Cpktwmj z|KJM;)04`)gYt)_Aw3?_=Al9jg*LfG7DunBy-hE=nI!i~Yvr1gg_8Kf(5LHFd<{|! zhhF*Gg!fdtw!X>`yG?UAHB%@_TkX_GCGa`#S|_=k=~;Zi9z#wx9X%@v>wEj=c*X}Y zFUc{8KnL2gfc88%X|rd^@y>GpTyg&Ef!oNm_X}r_oz}6rf=Scv=(GI|jPv;YN_1H^ z#Cj|41Cu^?KT3!k(Ov8dd@@4}M}CtI>v`AxzKz5fBnOz`hxmU7WcEehdi5hb z_`@)>ob{04%&CQ^=Efu6x5Jc&zK7i6V9v}5z^BxjA@(t#6(353+ews=G-FV~bop#B zYd&1Bd(xWwk=@42RKs`fAsU=&kd6^Jn+vv2>^R_%f2KY=^2nW%`ajciw?p1gj_!)M zB3upYth}r8SHAhMOO5^xZrEM<4(R&3SvO|P_va;l&%Nj)5g)%VzL)B8J1Bk*>H<9A zw~A}LkQzU2u5%K3$5#oalG-xERd_YJ)v}5cu;G&t`ti-n&lFinoFdjNfA84N0?qF2 zkz}bnPR*%L-n6-G7rGQ6ZBTACd|RGf(lzQI_P!wY%R6=ji(H~OYd#MXTXOPzK>vN% zIJA{&WgFpZco8n7yN+!H*^dgXV$vY5SlXUKDX1geRkve|^Fz2F$^_laYc*KoQX6-%x#jE#}Mn+l);(m^@zhZ*yC(xlhmH-&m|j8wLQ zgzl4hOxnYZPbFQQf9uOP(Prbni~7V5MYB(or~VMrJ~VcsP+A0X*6Q$Ibx9((VQ5B# zAwHfh$k24~Z-wk}FRY|pYgImW-EO~-5-$KbN72X)juXhUA6UmmaVSF{=tt-la^K8&6c zXNiq0^i*!sl}V>Mk&k{CAr+tb+z?Ey%Pn}iZmQ_~`nacO+Edl5XU=guzFyyUr$2GjCQtJVu>*X)O>vx1g#!#Jb53qjY z@-x-(bMpfd2}rHDfPqU0u?|j(YKP68L75M^<@ z`TfG*S~Ae6>}xj9@APS-zT!V(;S*Bl9d2&B3|Jzv_70TRd&X|`qmIgpAO4{Y>s1&- zJ3aLFZdh-n-H@*%GM%~p&~EgQk%@!St6V~IE&f9cLxM9bb5+nr+U2$jybu7?rE7Cn!eek=8+g1|M@IZbzZ#$I zdt*rh!RsyUxk*#@`oK9MMM+o|Fi|l{YaGB;-FsileSs?U0>0i^!V#3`AGsy-Cu!{` zrz8+VCxJf9lcm^wficuTW`BU(iz@U&35(OY4LWcVT8hU$2cAc*zGRHR(%D8<;6Fz% z04)OraX|de9Yx2$A%#wVGXo^5lk=~?i*B4w1}nie`uYatrZDmEEH^md_*aWb!=Ejh z9H(0})OD7f#&4a|{x2m0Tmy1hpmtjF&Jnw+cHft zzN9P9S9U#$^o>(jTFboOrpnb$J!(z2I1z`b%$ff;{(LZz@@TLIC@S^UPY5k-_rM^= zD5vJKg3FT1kn=)-5%Xn#WUI1676a|5eeqyY-BCbS>J(pVB5G32r@18LjEFMhUESVRzt={`BZwN}{Y0*ht8G#-pAv&~uo6UX0z<;(lIiHH6{z;k| zZ=>7IR_0z>?EgHEHDtzOylY0ZT9)6Y+m#2EmjO@J|I>kR{7Z+<^tB^siGHWUmeM=FW)?&`;Kc3<^ z@}h1`yEENwGf=5#bDCp}M+c~H5loLh{wcjbM z5=aEC09H%c#0rcw^boJiNZaqDibMYecni*RpArdeZ=!J=gD?^95C5+FbCg5%X$L$` z17>I@l1;1tpD^J!YqGUDsl?^oC+X$LsgmuM7@C$z35gV=XPt-rn3IOmc6= zPon9X@L%49p!4GsR|Hifs9df&N%KyyyiUb{KJgOgPRm{3OYQHCY*k?L{>0GsJ+m}O zPW}FNLe%(aFQKMuC#C}4IUagqQGL3nI`;iJF00m{hq(gf^ikO21ga9_>n(rh9Xpm2 z-t?DMTfW;MA*vXOH@Ajxo&U#{4us4M1dWj(__<22ia-TolZwoV`Qd|;igh{)UBpIr z7&uT|@2sSBFpy?MC?zmfqoG3{OEjYe3BU6xA3{vR{i`s>*tBLTyO&yya98j$ng@k) zd<^4==hV9c$2xWqD?)!o$oPYF2s!JRnOWRb?>5dtCyi=SH)5{KM+_K zZ1e~bnj=!3+VZl&1s!EyGaKRV!IOaxtN~=c8)4SSa zY>RHQdzJ}6VMcbw^^8s?IE~pB?fvfhL32$eC+oR=si!VI>x-Klm9Wc$qMha97g^YL zH-3Vy2J_!x&cz8zSmqXhWjAv|&}QXU7*ft6PMX^%w=|!T>lpT_0HTMlmYp*% zq;MGcJ%$HWV*n}7{#~z{8DYH)KLK0Wo@lJ3IY8lk+|RbdBRK<6`f=x{KeHTc3^+GN zVKq?Vx$CAKo>>m%9q4n|Qk|E6GkE@b$ZhD=IZX%bwat6;CsrRRojT#$zo&;bt^Ok_v_#={N(e@@2a7L9#1`TjjYbj3~YM3Vz$`lNRbux_0;49d^ zjQ_OXkR~GBZ!y20@V!Uhzw)Q&39ozQJD0HhcDNtG*kFGGtii#i-C6vGEIT9W zy`TPLSpMXTjcQ!~-`U){WmoyBGil`ssmAROFa@~nnT-!gO)&RPHGoOJeUN}}tK%NP zjtCP`@p1b~wj+~g+iypC=7bm))qGI-v#rMyFUnox5xY_xyYrpQ&-B0a55r3-{I;ij zmdu!Qylh{I=>@(~;|5rIXYLmPuY;F=F#2wm-@eFdP2*u(sT-XK`2Zkw zCpM+Kx=r;>pG5pvpYKEDxq@6ijuSqchnp|SeFa&6noo9kHc#uKW`Aq*1Fa*B96s(J zaQ+>LWArW>ITkSwep2?KagyHpL9ajD2g7(q@;5C8C!g595r^?%O#C)H$#OEk-r%*5 z+`hqYrs~z7;;F>T-sv@1*l%Yj;PE?ra&C^MXuM}X#PXJmS9&kEe&+$oyIyiL>=Qp* z|F-rh&S&353iIFQ(}|bKg^eR%DQ-0X#xkm}c|Gy6xT&p=>6~5l$X-}q?cPAVY~Q}M z4d)|BD~K#0T_?aKHrxrgT3tDrNJanH)yr>`O-;+L)AN8+)BjL08!0wX! z8+acUY!^Le>7l9PrZ%KWi7AME4&DIY54q+&YWRHf= zWjS%a%y|~~3~-tSRDPyqf>s&dJ4jqr|2ZORolOvEisXDeU^}vXr{>p7&J~{I%(!xI zbe(~zja1(3M_69=K8&4-(l}mH9#Zqn^Ges(7!1}1jIq_e(T}sdY2ANpmtDg0VWdXd zt73c5dQ!NScmWcpq=)*?V|j~uU2{=Q$EX<~so}nk;`zkS`CsjAdVUtSHU5X)*v4aO ze!U12>43ih!M8hH@o9U=`j+UgJKRd@1u`RB;_vp)Tp-@h5-+a9xgFahN9bUA1R+)v zV9DX|=ZH5kCU<-8_6kBvy$3n0wX^#I;$?bB`xl9Z+OUk8^xfF;GQKrGiW{k@w$glY z_9E7^E`Ha3G2t>jYD0th6Ne030lruNyDuSL)cf3z!1+42BQR!cO%p#3UP`=do^N_X z@d5h=TTr)P4sld|LjPsN&-9r2X=#3Qpmv~_JEoxo!a7I$HkOm~wfwt|=f`^7-=aV0 z1&SWUD_LH~57rm>DeMbOu#qF-O&o8D9YEZN3;{f2zeLCWt5{z~M;kZkvHBZQP(jr? zXKzIO%s(_g0r3`U1I`r8kZ3>K{ME$E{1P41y4)zHACNZDKQp3p7rx>`r+urnKy2yvQ>Hb9|({&|Cf!`A1X-rd7^21W}0Bzi& zIW3d-po0ncJ+QAzLQ^Y2!)D%iCEvpt`;+MflT%FFsb9gBCT2-5bpMukQ9j)+r9IgP z%OgNE#UMR2dmr&Kdu;mgR&~?F5(GI~?RPKUzZB2LP5Zd&cLOoZOtmJ#HfS)>)yaQu zeURlw{buI}71x}4er6AK-^gLXwLipiGJB?XgVK8Uz~Q3*!1x#K8I*6Z1B1V3xw#z> zKMy@W(@Ul&CHgv>PnGGaT6U!O4=g|SpX)EQcbEhRerf(A;TQe2IDZ4dZP=6k8#!L~ z4!V8rCmQQBiD1i4Uf*;QF6aLf!Z1{EgXQ+bVj)fuuMEHbZtL_yX|10T{ zjhoKk+@yI$>yw0w{LJ$=soypyl1-_=VG0J|uh?nixG24^)qgD1q z;8xiKi(M}{ZMTRY_c!X^=tf@@!=Y8l7!tl)>L$rU_hOc_uD{}oiNnYFEEkcu&PRJ9 zy{40FS0}!hKZ^Bb`;N@-VjLkGkIt77eu>J~`tIB=7w7g0*xwO2> zDU#LOdo=4^M;Fm?>hSB@Dfr$cEPsi8g(a}NA?#0dZ+#`6#5QGME1)x4DWOX3e*=yRH1@QUdi>6_`-5ih$h#oj=_L`%NrJRral z-nSfl1M%Yf=ZCm~__QWKw#iryh<$_E+&*gj2OXBP#7~0EOVNl=ZUbb(+{C)squ#3ts=s%Y2i1QBb zhaw<*OHK}0C0x_+=?fNWcYmAZMf=S2xz%~v1LZX+#fCui?0g&Xvi|NVpQU*3l2d^v zs&)UF<41eNdWCPZM^wv5PWU-|CIK?&ZFgSkL89}3rh5m<$R8Mg2m6=lmwNx8X&5F_ zOLegsj8#~_>R-w7vVFX(n+lKfWV&yo`FP^DgPkV5Y9zosodo0hh<{@biGK$&rPzRx zFTy}<9Ug|$zatEEipAFKPyF1un(bU-pSYIb2%_`w5aFZ#S?pIFL%FNsN){--?EXiV zm-z+OKb?cE)0~7(=SjLph#%u2-X6)ZmF1&TBsrRW?}g#@k6svF@qPCXPxgKIMB>Hu zV(%X!Dn8DUN6=SNx$1AH$8s`zZR?7;C_t_>K2yib;v9yj`t4iwCvlR#8a;{iW^q3o z6V+?qXtP;l)!RHyylmcYb-}!>l48|6ar`Cyg{27i5PjiwuVKCC+g{;Kp6qxgTppL@ zx)1DksLpy>jZ6Cnh?n^}MibH3zCj;rsOlS@xG=o=wHJoheaeO5jZa<}Uh}CJhS&e0 z3&We9x-h)<(=H5e`1JdSr+o+W>xq~9HPX+;4a|@0Fq~I%0?lbST$P1SIAX?RVL#{K z87wc0ukO`;f643A;j;N}=C8vo<&+81e?^qrxQ+Ar7z}<&5$Hg_ZID(RaqwK0n~jgovRo}YKXtfFAL=Y&dZ$V2T)i_a zx2T^hw~&O|YcZ#ErpXfT((+0D+AH}u^!5O>R$pe;;?=U|5o!ncl*BhNab-*3)iplfUPn>u`)KWv<>)?2!-V0nXZ|AxiGc9oMe)ruvO@^6r+b`dkVjmhAtq!*^Q zv)pd|p0PW2mG3^&xJv`ab3&o*C}<#ru!PUnPpaPHZN!WF zICTE6y5b9G{2)0VzDa&!`*(>ysJ9y<*f^*77?M&aNT5yEhy5h)U^$C=g7b9Kq4uZ# zc7C7mtpz>Nc!8wHL>!f#toXe5$HW_k`O(fMpJrdOj%taD=wE{aaIFRbs;BQz?obP%$m#TG!3P!rIn(uf2mUx5u{_V@l z?FQcwDajLkP}2 zseTq8Cw{liht|)xh!5>TDHIU+z55yBW%CTv-Lv ze9NESPxyYp3+m3d{N}Fv2S0ZBEUsm)Fl4B|Y2Q`cyT8Hmm+%AN7x=kxzVQE(vunw1 zY6+sPB=4)ICqLZ>5+6ktp9w;U0SJWnSP1bQB#;OM$p8r?1~Bjf7-R_^uz8k3!ru9pioRD76<#3JlC){g$TAW9u{{ma` zEo(uzcJ6#h?$$cq*YZL8q4&SB{w%+0f9&Pazvc0fdY(qFq_^0Ly0?g{kFif zMr$9nGx~${(J$tCfi=E$siR-s9znHJ{vuz@qjo;tJM9Xkw(~dX`w$oQeNt`5lDC=k z*zSdy{X@R!PbV&-_4BkfU`ksE>6h{^`3AwBDvq+ctBfcHRuK`g!G-fPgHz;B`G~gu z$X{^sI=*t6^vUj8y4(S54LiEZTTfg3_3(`IS>ul5-A{&qjM*CdXx{s?q+g;(FbvU4 z9yiaCKJBw~iQ}8^R(UCvgigV|NvE_%|zry|v z!hVPI(T+u1(sfM&HAH~rSj3gnYpf^b;Th{U$+xir6n<{Fa(113qk!){KSAqZHc)H4 z=u2?uW${3*@9+le`&C>yzj>6Oaq)Jaiy3i%kbo!xvz?~pH!lk?W_xcn;gwm>B6drU`n$)EBNm6uPKL^vCI2(0PtS=Q9o646yw7?QF0uPsaQ?`ANcPeEPMtpK zLt8>j2%UC#-l4LkN5>D?PRs{kei2m@h=c!QZ{+m$r|W6!i~M90FJGcJXwtYy(vXWw z2g^(X^;G_(;X}5Y?rpXdYn>gm?+Rlph1RW2Os&;)7L= zUu)f0gz;+rYI(wX)4s!S;6i?p`Z06*gd0sq0Cx$$h`xWy`j^;gBI5crTw#cQ&02~U<^%s zgLmYM^Fq03ZcGylh*Q`HAMTJZ;w|n|R(|}s-j$6~N-3rM3;+QC|8rQqD*-Qcb8;_i zZ)0I>FK2Hrb8=%Za&>NWX>DaMa&>NWX>DaKXJle7aCra$000000000@C=>ty00001 z000000001Z0nEK=oLxnkKmMFv0v(#9lOU_aEdC6QrpZPOqt48^=bn4-NzUdu=XQ5M z=FoKCBt7(I_wA6(j7}#I2>T+6AUY8h+(rd)5NC8)M#KdL9Ua9%P|yKoSN0|U&r?s; zx%Z}1RhM`F7fNpR_j&56r=EK1si&6n;$Z;oU>phnU<{8{E0bdbBPUH(wv1E;t0TkJ z3LFUl(6#eWL_jA1^gwZZ$>8YFNrU5~6T>5wC0oZ=_pCX&XWe_2OjfoIoH-2j@hw{b{qodY`RzU5M z$|xAGwPY-pR;#eTrM#t!{cCsY^q1&gds^=tpnvUcUEE9mx~O%_`3q$2td5hoZ?t8+ zl^Ss?V_@7%f}rA2kRLNa>d5L_X--ZK?4&xbKd4ITx}JBiKRsF)u8a(U@$<%te$n!e zTcqlYtCQ1%RjTRACTp_BM<)g*2hJR+fN>4cV56W_VSaISa(HYj%)sS_aa}6_JZ~5) ztN0%zW#<0j$yH!HZw$m;04t{81@^DE0zgLv0C0F9-3vzdM*+ZQ!(`4r0N4dx#&zA_ z0{|aK4P*1V!R$gQQf0@)_++&*9<$i=dw)UopC`TDl0P0igT3rHkO7S!ujW+3-@uoUP}U9%LMvdCeXDlyw5+Fn;aNCt5ThUeN4u$0Kkf2_!su$PW&+ipJL$q zQRKA-z;-UuCt76csh}6w0}pcB>WcToFHtK1)Dybe*`T{5Ys0my_J7Z6=c7%_ zMNB7`)*AA2#_GQ^R=n#w&@>(*{er;^;a+SA8p7j^hVTq;2s4BxMBpy%vaB`dGZB7~ ziNKwijuoGNF3XTwEOp1w^W%@=E|X5{)YjM!7y@G=zr$$RAsOVN8Zp5aCv?%n-5;Z=|~&(bIOlH zeeg(yJtvO9oWRVKT8;%(#8BSYcj@K}{X!clL)4>rS5@9;>cj z_nuj>(di{vLytFIt?W3+pO=gdOq@ozK3!==-3N$XvGT~x!Bt!Ka7g*AMn_24yZ z8QWfFHUh>y?Z&cgG#s#paab%JhVQpa3AuAMZf_(+ftC)#9dbgfaqSu~?r$V~Y9kZ% zr*c9tzST&w1cRhn)Xm45kG=cM0^>SdWZYpGD<=l3m}LOCgDs?<&8Db340Hn+L9Pbl z4&%|&aWOCoceCR6wg9Y{q;dZgvyTKz&K#~z!P5rnXBvM`RR<=k@Qi_a!WvhcJv;=@ zvY$8L-zVT6R_m=T0G)=x!uaRdpHFQC=v;&)gYXvv+cJbD>#$@Du3;`^x)or>D9$LK zX~8Q08ABlqBn}+;b?$DeIxu(^7&GmpfiJWgD@Oso(28xnpcP={+4$?lhZn%dTUp~* zf$;?jI9I%5s(KcDsddqB7r@O}^%#7ana&;fXPuc6q( zDE2Vi!r(_^h}Mab@roh%R_kdGEr4Zh0G&4y=w1eT7lNRp^VCIfivfVW_2t$Rm!7%^ zp!;2?E`s&=_m199fdAxwzOA);cPGI6+W@*R>;yQY4WQ$yPJkbAz^_`mZ|?;7Cj{Kn z32;#x!1DV$0dB;9JkSa7O=Jokk9Gq5h7(T81%aLn$J9bLP^1}fRX`!b4M=NxE|8M|YO<>dRXzkuH4`6LOK=0Pn+p zTs#jTMB0u|%mY};N$+m$zIz@(ihr1G-fSM@?xp4O7V6}OS`F;hhgi3cwF9i&2JjH; zovYeKCqL9m7XA+OJ`cBk<@XEVGwlE?&V=8#qI>!>{-{h&!Xpg$@9h8`KbZ&6!{z#I zYxlGB03JrkU!4cgG6&%8ZSw(O`TY3+3+A8_W?AM0&bu+Q$=3TiN!-Ut+{c-?$Ic;f zA7|qJE&f6)gvVQtxV{U5IYRu$nN+Z1%jCdlWeT2dedde>Ffj)kFueu-$eM7@9Doxh zCM#QpcfgaZ1XzpqGuj6a$^M#~-U3gwzVAC-0G%6foQ{r9R^VAS3|bDwTHx8%v(8um zi!q(Z)bMv)4NsC9PCOKVsbT%04Qj9%!F7A)!YC(ry0!b?_RNLT4h2~LUwh`lKQY8H z^MQE~G>#WryWck-;4)-coDXo=T!8LqKEV390LxFG58%uNc>5Nn>krNc_y7x&X6d># zFtrWZE}u_Yex%JTkrky>^cUTItYfiCzJD>|Q0uQAylVMUiw z(Hm{(ot|VxS5whU`~UloF2JmF=V!5G2kdG`;oC9Q2Awxy*>*U$9Y?_1IsrQG!IB-Y zrybjK3ZWjtvhA?9{i8ov02ZSDge5!R0ybTJfKV@D*>&+ztII>L0%iMWCwh-9d(0# z2%yu(vhDEk_Q5|afS)2N!jc_uO*^XV3F4Jv*>}cXk1cBJ_wZfO8T0)-HgLGUz+H0G{H|XWP2}rVHRx2rYI2+{h5f>{X68pMI9a5PMW{IooW7e2t^$|fl$=Z>kNwZzJ){2YwyN-=gbFS^&W*@gfUyj z5!Vv4rHDXg@0`z7^WF@45{G_@ptgVp0(u66VvoOBsj`oBTCk7^`D)!{$_+)nv`wz5tk=y-hyRotY@YVL7hZg{L z1Z60{%Dm1&c@0&DrYE|4rYe;&m^0H#Y@TR0Rt^C?(T>qmPZ!ORPp|>|zAoX&pJ-Z`+gY9qaZlgmc>|GvCvl>|Y3Huy%D!ys;22<+wk$cU<|# zLihy7najWZ#zOcY!yQZkbwa!2Q&T(Pkgpje`Ku)Pt4#8LsS`jSUCY;;A;LUY{3Wl zj~B23lVGp~0o0{r_~K)H%a*B1b^SWFfco6sdp~{8bvM4esg@k!u!+gx(F#X>{hXPZ znI$ZLKRY=xI57=J7PuUw;KX##)=JfL@)69;%wW zZ0mqp&7%XuV{qinT>yW}CR>1enyQh}J%*VWOi1xGWADHu7=M{#ESms$-`Bce8ScIE zMeFu~k!kVo>8XLO{NF(IW0kXMf!WJo#&d>&6r7f`$fh1H-uf{k2wnf>g=+W z$u&GSTm>VuXkI!xFv0%PvkF>pKMDiTkG9nQIy?rg`wpd{e1fs!9TVdt!-G3>>({}F z*oX5L0Im}&gSZ)wrSHVjn%@ECU$E4%-4JV3Gt;KbK(*|G64EMi&FTo&WTKcjr)LaD1o|vQC1w`}l$|F;gz;wsJ+0c(&avc6bZT2JRk|O{*--RnJEIJ*FzI+76 zjAUjcK};3_?a%OOV33P2h$8&&5vJtDZvj||HU(qI>L1?1Dp>`_81jP7btpd$_6d~d zOUSzu7n`h2(}?*dD=Q)n+xZVz_8=>ZMA<)M+2ObY-+8JiJC`Mn*091eMd1aku#Xk~ zy(qkl6`qfU9Uoo{u!HyI2fHs@4De+v7b=|`pU90*j|~lvZM6m_rr?m zQkej_+Q5Nz+mWK3S2OOg0{#0-$$ybK$Gt}ZtlV1ref3eI zpGx)8WRW0Z?7HF?D_5Xn+$2 zu|L0KSbvXhj?F4}8dui^3nW!UwSspyS%b z0B<>j+{azU@;lLe9D{$jcQL>+{)fAb?k5%lEIkI`?a!m1TMlmnSc^EW6O@omfpbOQ zJYX0r*;M#|fs^6;jsf7Qg$In&&RPiWF+w*FFo9r2Wi|Yo&5;Q*rcpdRHdP%M84;f1 zFk#a#83v8qmkb=bAIO-!#F>r3%WUra`7r=1whWI{E0a_3im`8GAv}&n6O-dx;oO$@ zj4p)djsfUA3Dq+UuQH<7vE;9@1P^(=#>x&kw$2=Jn(SExo%^`&{BDcU*@yVCfzb-w z-GcsN0V9~poYCOG1nw*+;}n~8w4U*YC5+wuTNi>sn1PWIHf}pwm;90bh=bLDTQNcs zTVPwqM+U~W_KZ(%J!!{DQ#+?lnjRb80Y{>6GaGRo2k>`?0O-R#Mi&|Ytp{b<6YrcF z92gm?5Bxd}4R}55n#sb%`4}sPht$HvgVqB_{>!ld`wArb*5*Y&!vJVMD9fJ8Or-r{uCa1_qB=Z22Jnlyn8|<7 zu>dOvCbzD^0`!G>Ua(dac)VbpDCp${CyRpgSO63sj9<*fX@iZ4|Cx&o*mf*H$I&MM zeDDwel;Br$yWevHz$CLWN$WdRr6LwB|3DXX9|s`XNNjl<_qI{TO|F6qm;`H%qc&d9 zhTXX7IBrTe90Gs>U);vJv3wl5q{9wAs0Jsd<4QFi{)Y1e-(DGH)f_63gYEgEFWE0s%^+@AA!0^WQDw()wKBvoGA2{i zad!Rz`ABP;%1-&nq@CE2qW>FD$H}3{s;i7_@sl)+;>1kKF{@Q3Jk2zP;T^mMGIbL! zKR#Ba=@DBZ>pQ}F13O2@x09f<+MVj~Xk{|042(c^>q2RJ2-Z71S)JxcHN$Xnd<$bJ zYfZd4P7A0VGhr?HiAkCb56Ssa@Fku$bu#}CF4 z7UfB!Z&5&kn1i9w4 zP8*`OTW-Gm9%=tXVJXU|>)oI)I$GpbY# z9LdA0OLTH317{}&gjB7B%khxsd`-1kZ1ithAX)dvHCnVvW!`~#K-Uausd%o&ld(mNnBn&5xCTL(GkG9) zt_GYfYp&M}1J6z($Kq=Z=>n1T@7uM-%QrOw_;$8}(F6~E;8UNzv0pQX)-6+R(Ns^+ zG>d4zp~E{~WK$03A{~_b%Nb4QhEcYt(jX(VFLQ9Kt7Jzs|u>!(XKCJ@C@FO9!* zHOSbZaDA^vMe!ys<2gE@2qb27HM zn>I6d@>+A!6e3#e-|_h-geh%UyJ{8VF3nNa)Kaqh%_4U!pKXGA=s&yfrsAH;5PkAJjKC(ILJQ#AJleHaDt+(DoxIw%FMF-zF?7G&8s~ z?@((np}B4^Yp&Zvo)bPo-`Qa(cz?8M-s{)#zyL{_=xS_kFYmQKH`i;7gf|*Vny4jS zdkXnKX|}wkRK)hP4*OVht>&pd={`gqYvGK(*eqv0))3#sSc^;9NJENd6cd^eS*IpE z!_b9+x#GXnTniG%wTq<9|7!u#f2z5`+`nOc z%3J@P=BBRx#P(x~+`nt&&EOd&AB)pnE%>9D}RX@m|V4|Az} zV*Y{}ZJA-r_eH;`LAqufV-`K(IW6^YtcRz3tVq)u%>NKY-igw_$l<%0YJDF-A*xZ^ z2@yp$&&{fJUIPo}(#?aqHpEWR=X+7=D2Lb+TvQ<4P^_zIg+GW1lmu@SQRJfL_BP+y$P8|~+NEhTbrh-zV=mToZDpbcLg3K;b`wDT9 zH&B}LYiOXLLqP?l#)7z@f-P&; zULE2IDukm}YGO){BQ%I9=<4NcZq#F!Q;nh*q?^8tHFA@|8U>}sF>%dsLUcE*BQ#S` zBNbXIqf+Oz4xnPz#>mvc=K*B(ZPQFJjZ&g=Sas?IofY^6r-<{b&kqh>qftg5vHgS^ zmN#uL@KZAvL=Uo6go~!F3#69c)q-NLT$l$JgF}dzJJkS zdp&a_KY9PCI>N}?y`JN9?C&*Lhte{C(!jjbN+L>7d`r`JUTXK+KK0wbtFf62R1Z8m zpw#K-HQe4`<^jx%cIA-`L$xzxElFJ`PHdkaF}PJDL_f*;j9Q^~zissr@{>A-eBb8( z)Eo<@ICtF#3@kP_3P@!74m6laufWV25Os0 zIkIuR;+bJ;x@3*gD+T2351_&=ST`u9uH$j7YFge{sUYt&og_^hk2+AJ>P8lJzvY(m zc534ymYktFYM4cDTjj*expr+us1D{1U{G+}#E#Mer9d^Sy#r|7AWqWA7K<T_&2FQ#mUe_B(8vdrMUD+4I~0?-#-@mQV#ZB*K8_YjZ>pK)$nlG*EgGwy z*m(`vExcxWHSIGKzB8&`9u=G@PSQ5|>W(SeiEuzn%2zdTz9d&$ND=qe?I=x3`~WCM zD(b;jPm%^v+8E`iM+Z9)%%uN=+O8Zwv5RB79rSR;;%*4B(S*p;YspjIQ2?E!#HrI|~T-GdM7Rz7KECpV}<3}MbY?cNGSsa=c z_3PytGQKNywR+lgLW>>04{d%f;9qojJ2frKjwy(^SiP2YLYptm>Syvx^hCTT+<>P& zFIAJEpW`d9`_vgVLZ(4>Zuqn6_98y@g1lI)-K>VYrk{5MYg4_BE>p{%k>mrq}W*DMW7KQP-mUr)kT#r&w@uIAvPPj>6!m`cRg9PIvthQ*b7ngjj! ztNLE7n-O2rqcMtalfg&dHJ}or1{d{Ee%haFNz~f@Jcu^JIeXViacGt)932AVK@COVO$q zuYSZA$7JGam7sePOR%TZG9%Qrd()Crq|?Rf@I=6cyHM|gAv)ws!5h>%Mrai9V_oV! zK!j$7q~7;Ks0cEi)GGo*J7)OmO*0%HW>NRuidndK67j=H{0J6S@Ef@99gN!satt6X& z)PsYwuzlQVp~XQ{1h`dJ=I0;P!=BgR2K+3YCWPZ~F=o{%P7aRD#IDn~+84&<+{V;$ z$pF;HXBae_y3`2-hK>1S4w@cE2@;WN*H|}Vv&l<+N+B-SQdN&>{EV17)uBneInJ#A zDvk9MluotrjDlJXxUZO+`Hg-O_VQrq8|pe3h2w7w3I*Y!ZqZOg4*A^|)LtRsZ>rp= zVV7*i0G;`cm$V$wK{DveYN+T7^}xe4N!b_e*89b>UykiOZX;7%IrGx~zftZhub$sfmr`0+oFy`))dY~z zuU^A%l*tl=xz%gw)dSfKkXwB+)geoU=2maub;yi4xB3(zhRnI=1YnM2?Bv$0q(F|Lvg-LR16 zDK{$HcR+|ZZ*iZhuIv=VhuQFzv8Nw|3^9& zk!flc5}p%N^(;Oo>IQwOS9TM6^+xJAh$}+}y>=8id0Hv*c7K1-o;FoiUBZ9BvzpmszT(iq=jNe<{6wd5EvrIB4s z9lzI%9McyuX)|PgJ}o)?l9IX=R884W13$Gwa;#0%5O2z*R>`(D#bu9e9Jn@5Q8!T? zEfm~v=PYL2r$Vmg&u#j%_LT>WXum(~5Q6lA>zfr6i)twS^JxLFAvkGIbsfU%l z7js=Hr_7BpSC%ry*u+d-Rhvs`D>a1n=~TUv?f)r3ZW7F9$)a4MZJS6+ML; zUcTwsnW3sQ%rC_#M|>FD<$RFlk}M>WuGYhXKxZMkN`;(rq3qL!lWH2}*i8toaaYZU zoC1%56sXgikOk2W_W~-vTgTkV_ouz4Tc(&u<%a8sY6Pk#MEq#3im6zsDg80esjKRW zlOVFwh#wfdTn(jBuCjx;tY7sdX0f*5Q-u_XNfoMmcM>$S7Q#>KP)8|w^;77f9Fnvm zRIwqURSoMGYk%e3mMvp{tFqvJKA7bWDca=lduY<$jVV_qZB=rxtjc%pyW|3CevVPF zfVTGSjF%t%{wJhfx*Q+yi3aI7EXQfdAqOjU9pyMJ$7G69b1lbduM=fkVY1O?nSPqH zC_^e!Aj6bn^wnunitM-)@VG-dw<8H&CiL*J>a}TXdZEk1eOap-NOE=*;Sw&067i`Z znagjWvn-q zny74yG}IFKb{dz0gw-J%p$!yaWXEL>_e?i2BI%sjKo!}v4CZ^LGfnkOlDAT`oN%o* zWdum#nSR-%;UGOQ)gW9y2RGH3{VuDdCRcL`;AHi(HD?D%=+Sy~MroRMp};a7tXEWr z#jx!NcItM!j+aDI0-L=AgBxio%d(>=h|vw)r+!|k+a2T6s4ImV3d%#sq9$*@nnKXcIick5;u+dS<KC2GXqswGa)59urtfcRq)|APW6SDk;-I=+~AWZJ>usB5en;6nm5MK_6kGcv!K5sZhs^iu+AE{uZYO&KX8$T`GaXPg2| z!I)0l0!=S=>5Q163jx2_q*FLUyMdK?8d)Y;m`FWAcAow?m6wf3?W`6nvN9ssUdybS zkSOLEzNU1A?a40A$u@mwRU?dFwtqW|zz!$_bZoP&ck-*&rF{EUw$VJR7AL=YO}dKq zWM$jJ2P1lSx_T`eqq0E!AVh0crK>kEqB+gCY0ZXo4Vh-s#wK=tWRd@D(fmYQ)svmx zoJAAae6b^2x*Uvx8Y0`-o=w4@S(ELg%_4}o&B)d&vk62Mx``+om~X=0GaB5B!z?B1 zcik++DB`5dlb=lq#j^lrK$*V@+OUN2eiPDT>}^I_=&iH9B%<}Y&VeRTKYq}!l=?y1 z=kT+Qx`t*%aVdxrOhe@OqvARnpG{fhTOPWBJDalCqNSd0^m0nKp^4f!ETfv$M(MtT zFz4B%mg&=0lh!O|(+UMiQ)2RJg@&||H`e+lY%%F)rxJs*J^*n1UVhPojW}Hh<-`I1 z=%1=rH?BTq?J10(%4+bAlbGgIGb!QtAyyqQGW#;7stL-=K6<4Z5?(_4wW?9-qo<(N zvr0JeRcKW-hQjj=e)0W96YGu&c6_?``Y;)``d|ZyRCtBXFLh~16S12&- zR6-ayKAxV4F_F*A=L985&_^4Da?OWn-n7{KuRV){IzTWgD~)Y@$C-&Bx8N`>1bsd~ z10(O)FvT<6{49>DYn{--z@CzG^5{8az*^06V-3?y4u4cj?vO&d;4ePbuhO_{oBSJ~ zZ&maQUDj!Qrb!;4;$1_$+f%27g3lSlxIyiFxiZ=Qo*5Km1hjXw9njRr>1N21kQ4q0oY+_)`#C` z?zu#2rUkdmPc%qfVlfKJ;hI@opLz6?pOCU;G_y$lbjQC)0~O~W=eF;>_TE>dVzKEI z%{NoGbnrAl>$E8Ku#6yY7tFFtUPwAyGNj#4C~4yuO1BG3C@=7XBoOacsySxZ)C$aq zPcza!VM5eMgyWRXt_&YW0X}eq2PRR^;&`ldf@egLZMukNgFvl10j=v5sjF<@UEgHs zM9nA?lTIK@XA(k{SP)}{4egXhC`8kbhpc%5L9NH6Uv$5MrEjNZRE*i_2s{8qk*$0M z?#`m1MAdx?ogY{S-Da15kBI89N_bG;a&0pbLD`IALyyTtG_jr3Q7F3Bw~0UA*e!|M z3b+cEP9dz8yq(~+5=v9e%*fL{42@4m(z-??3V(G`zEooD96t$C@^#GAQQRdm&rB3F z-5^k{3*YW*WUN+$Z}*8u&hV`Pb^rTzpZL%;3ZgJv-)3O0GQG&+UM{j#xCmmKc?fx~ zhw03>`*0sK)3CxP65}#oyUxsLdLuL=aeF{#IRtGqXN{UeC(n;f=)|Z+EIOVzoLtcz zYEz4yx^bkoo_KTI8}p-{Ga4-UN!}T1(<%F`VFIi{_ZEVPmT@zhF7BnnIC2Z~@LNJ$ zL`Ahh-kcSpeD~3xOV21-+#yRxS7dq(w`son$}M+Ghe4FYR?Sf5V=LMmCIP0Q*!fP@ zD!Jita9l(JhLtV=2=pWWnE$l-HH;yUWrw0cK{HEV3{>Z}vCz?n`%GA^l)=-p-Ya4d{J8zCeNQ z#Se(4mX}ZMxX($f5-y_b>^8Y9uauV&ioBpK&m{;8t{InDet;#ha0|{)oPr}BW0Cc( zj2``y&Pq_vCJ2V+GZ1nCO+W7h-H)U z!H7Ml7@6$taYm|BQGLA_Ofw=~OWB(hi525WV+1+@IRRd=vHLSB*@{RsE6y>0&W5B{6K^4)twK$ckeg8sOZHoiD$X%`%jUC zTY1k+bLB!E_d9og<9aD~kDuyb=lyIy!4}b?TsFz(J>*}&H{{E%Tf<9drM#Eo>4P*V z*KwbbPKpS(3w9LQdAy(>@H>F=iGmUIre@^fi-Y7=FMs8c3uO5@j%VLFCZjw@kB;n2 zl5?9u1&k`OBj0pWu7Nsposorx zNETT9^xo@Ihvl)OyLbW7v3LxzTitLx>MImQU3ZC^0QVg+La7Bn3YpR3@Psq#0%;(b z_c+kO*MnWNnC1gJ_LH<^_S$J#q+_MNeHJ-hrOe0_%JKu2ajWY9MO*MqH1^RIrr#Qk zbTaVxz2VGC*fdomlr9cPERy2eB06rhe^t?;mfw67jH%plNLuE4>`HCy= zv9Ir^xjYW38iB%ld>1{G%x zb}1~f-t*3=rRGq&HOZ8su&fN6eM@SMG~~#@A%2;{wR`!sD%q+epWsW)QREj(l%m}K z`u_d06<7`IQouX&ni8CIX*I3jXO*b=Qd361lPgn?$`+Cc;@>Wksxe7z-wN{LqKY)8 zO45SEAL^5KHDY{Hmu$}uG582VO6ky7_bU}u^vmeJY3KTRbq{2pYfv<`7b8AxOGBz1fqh)83(B;DwR;ufE5FD;*>u1`iWS7yTr-l`$-FPWKY_$URf@M>gCnS zc8d{|y?QI#<;y22KC{XCNMZbOfMFj)$*k$Tm7c2CM68&0 zUQuK1C~wmV_}BI~f%MCi&3#=9MmNGV`9@Pv!5Dq3LaR8xZzd6*QS`?ims^U8CwDe_$xzliMF9hs@`1ThV9>BHyY0fpRO$C1XQu-1<0{JoC7Zvqckwbn}Zi!xM#hW%Wy}hR5 zw7KY)7Je@!F5JIYx9*9AZV?{yEHBY68^V^CRcn(kM zNM{6(VbUmGD;{f<1*bLWI`QU-3R>5%zfz0|KQE@48x`$n#%1BxF(UCA)Bh@}49yHC zi~DUa4f#j=WJ@@LaQl!YCu}dpy2x_>tY~1o_7w7ivdG%@7$y}DdtClKg{ARi!in-B zfF~3zX0a+Zp&40g*Mu(L-Igt-P&S12p29f3Q&lb9qmiWuY%fh5*Dm%mM*pc$7{bDc z0^a{n;!MV^yt>ZE4| zF5s3WKdB;}>ILV5hds^D4NGTXf%Z(_D%r7kU{yNb3cMek%KAyF)jA->u2N$Q1J||r zw?d@8ih*bmgef024nK>GuVOF>5iXSy*_O(5_(B?iBZyD9N=6>fT&txEeBAV|HAUJr zSgp9erv!yj6B>^4x$J18vK3KYC`6t}XR<|kUtH>!X51MN50G;mV`nH0p)ab5scdv# zl+~{0m|BU8xo&0*%9b;v_*k4$N`@3K`$z{A`_(*y<6bKK1h>qlurxJ(876r^}jNUF;^ zaL$bR)hy{atV6pl|74S{ttdwpK{O+@c!x%6e05TA8KllgKyi~-e5*&g*r|czQr@Pp zVXbVIsRy%7YCK+?B_ibmT+sEsx&CL55A*BeTE*ZkWpO-*S-n>6X`jQx7M-OOt&-{c zHa~~@UX6N+R$#hz%;!MeFe>JwUK~eEX6c~j8Z6p24e9@qPVqHl7zLE(lO!r-+!bf?a1u02)>hfqSL!K}xb`8dJG4#aAK#+2>!I#*N-&2ntlx<jI@Ty7gQOCC3+=@Ei1SKPiX&J=FDjH1-bl`AQvF96Q!c zHbow!AFXAGhXS*K^=>UZF}ZmjuZPy!b({{IaL*(=PMvjHQf8mZW6tRw?FdQwGjoup z9fUcQ`MC($UGEIo7m#C-t{yo@zt7y9Mlr2{WIMdUC zZCKiz+W9b_<_m6u&tQ15ZIQX{->(Y*YQ*%Y1k-yH(ov0mARZxlqp6w-W}IN2e^Z(d z`ur?NmEK**lvmn3it)A@$vgKx``X&V_mai5%S9SwzvY~x)4TobfSi(aFl6RnpG2w8v@Js=$h9MSl+L* z#<&)b$X;s5f-~u6l;{*3 z9JLrqb`q%u7ctcLv@PT@k;uuc)@hsL9e%i5x^En(-G369L9DUE@W7A>DW8 z9P#yc=1`86b40?I$bBHueqc>QZA zA9(eZT1ivdXI3nIs6{EAFHi)`0*Bv4Vd|VwcykW6`$^DmXc}*t5&8T-?^3tOETm4E zZ==2Xq9QCy!z{_BK?M}8U9S@{${vVQ+mUF>d5ZNTN|%`YVDu++ZBD#`$*)G8tCKSE zyfC1X4L_28MT6|f>|a9{W7R6pnTcmokMB88Z6CRiEO@`d?WbXCnGS_O^3w>+&@EoA z+RiM~=hxe%XUqgQ{^GnM_lMFIC_T4ZGq~!XaZ{|CkYkyzZqAc_XM;q{=PmxxErm}@ z@k@WSWjmwe=kQw)dvrkGO!Kr{+tmb=?-=iH21>5?933bIjfKx(6>&yI?1za}c*`A_FJN z(=bv5St-65NQ3fR&7j0p2ySk&@$-acHgVlNS1LCkBH@FQ27G-keGr!% zC*pGAYZNo`(`IZU@JuV_4)pgLSv`~5^s?IAJd3}9`-%n^kB z^7m*o&#+~}eou$xan>WchWB#d^EzO^TjU=0E)CSTVmg}ek`Bnz>Oax=gwUkXc&UaT zTkbL=-m6hhSjr}W=ha;qhGAyI>QNqsA-*+B{qu-UfDrqh$*Nezry=7S^F6gkbxb4M zEGM)K`JPT!QBZKiM0lkZOrpN3!u@}oy<5yBNpctdfBGXWNLU8(V9OS^u&}t;+ubwm zS&5fARaxiMepQ*(nOW!izIjRU+E@bUTEg~{gC4%PCPKA)c$KGy&GeBq0|t-7AGJTk#~ z;L(ED$2-~l*1|j5seGy6L|s=JrVxHn=HxSs;kvE~_D>4}kGrYY^5)i(H!^=WgVUyT5oEs7C<^Ns zsvRBEh&>%cJVzBH=EqP^HWgvZbjB}Bh^zN8wD9(L6$?R$p4c&5saw>)OmDF~xv2C< z$oIik#E9K747~V=8gkq)6vq&+l+9+TD5;6dt+;t$4rxC2?qP+R9%P5&E(J{q9sgCXgo5OfYG8sNi+oBrq{AY$l>QY%eQo*vl022xl5VFT^D+ zgl(mb@7miiC||*iyVW$4RJyHnsA?zzT##*qL9zga^5kMw*k~VpDtWv#s2yEB4ZDtW zJAR*}+ziK}B*d+BIvJr*Ss~0vj#3g{gb$UyTENAV|A;q}-y3+~alz8hoTPYZq=F2t zCB;dM_#=h)wxd}u>#(LbFmMDj>cNtR5No^=n`;vcWTtnh*%T61@xH;m$R7o0~NNngdN@4M-4p zf}#_OEz1=`69G7^jLk6%&fj7uagwh#Ld%b^EHz|*a?`m5(=P5^WnQL$cDaN(_zLsV zc*-pw=M-G*mDu`I8O4Z%olUEL)*v#zZI)|KR_P-J`#o9lGdB7Xr-DF7WBo!vxmm(3 z&&s`}X|9-?SkGxNci`h^<|dg{ZZz5{T$jn`4e5qPUWb;1#ULr@(xm%t=%DZ=*lOBx z=DuUb&)M{%U>n%8ly^W-Aj+p|{IY(vRNp{c$GRPg2`c%rx#yaF;;IuV+Dl)QeqniEN zpZ=j=llSrt%Y%WF7_JnR;SGoDaBZt`y)H4a7+PR_zF8L)Y2ws8Cs3z=g=b*tRrm2NaL;WO(P4u@UP1ZJX z7k$aa2)9UhlUn*@DCZ4|nrxQ5!f{7~X;i41uF{@w&q?VkYYOGUz56ePdPhkB;x2vF zO(fz7qPP`3C%XUQ!w`u?i*Ogwq4t)}%Ec}AU1T@RU}>aLcy4$hF;_AMi6HhMMje=~ z5h`Jl!E#UnFYvp)B}KTP0dHAuc zO4T$=@_4xZUGIPHi5PDrN+|BHbW#ai5^zPr8S>uyk6(Sh23Tu3&+j|m|8&OHLe}~9 z4LAksJk873KlqLk6+RPrR6vrVkjU}V55D(tfn)Sl)Y(@f@w@LoF3IaoVmu$49i30* zn*kZm-p#xM%LXBlz!JaFHGHlWKJc)CAG2}wxFjhq9G4`eHRF<^v|LQy{A7t*G})7bsPL#P6b$ajTm0D{{^0M4%fsXqJO<~^X#UI3{G?ca zv_(_tRK~gX=~WrrOe4oAMN3VXRXE}GLW7IGUy-5erst>k#U%~Q zJo6_G9%4wH#UTRB{FeS>nWw$-a66xu0nt+e+}MpOII5xdMz%%APjpMQgRnW=y#{+7 z4)Lwux3i6|pdZUaXT5n#2BsjiENMKfrzPi!+>mJ-kPly!ldes}jd+YcF;1!kw7^j; zSGw8V217w~S(8Byb1YkowGpnJVCpZ9@nvnmcK6m0gR(Xw4t{XemgNkP;10Iq2RB5+ zN60xVK^_#R;zY_d=6NFJK4CGDbv)YTXoI&GHvUSlV| z*eI#P3Vo>D$kk&c0U`d-*m&%oZMSPe?JZ3eY3gBvT@%KkwiRzVzEV(*h&{G0G>;~( z-zg>OA{v5C+^YD(4gotIfmv2{HMowJj4Te{tp)GgkUJq2d%(^o?aoy}Y~1PwGbG_j zHB=gL2mrY{o0QBIB5kD`u8=3H)})*dgBn^muaAz>2XFnY~bf$c550*BEbd`x)S@(BQjtPGUV-`v>x zb9}&F`Mn~`@i^N$Y|9_q-*xnzZx*reWRdgiG=H)TZyKu{?eX6!qIZ*nm;g!Ty&}9B zXe<7)B9g-Nyz76v2#5UQRUN@MiX_9-`}t9&SBrSvaf!^2m!albajoXJir`04D6bWv zlZG8@r#+orJSh@f*HwL>!TCfMYtDbIpPu%43yZDD4jvu`8wh zOc}mV+8-^VS4#UMMR**aA1op-v`~Ce9Bmc|WvzwZTkIlf;omJoXD$465j=JVgT83q z{!S5|l=klzp=V0_eMN$W(uy1WB)^-MugbliZP(il?bNKV-<`$73GyDEcC|Cb4~rCC zgD>%hzTyimQU>{$6uxhQ>Q?k^KBG{D=3YO~PT?E8p){ z590riAODWeNXK~HZcYG}9HFkZnp{gU9i(fk(1xaJTDbB^?uWF>GgggO!7Ud8OZ!U# zAIzYZmOiOfMb;|cAm1w|&pr15?)_TXUz!ti;1W-E&{^Nb8Z0T0}jJ7cfykBF}WC67Sv+@|kpn9iZjQg&o|~ ztDLI>IFi`+vu9$gZAQm+RF-aPIMziuolaktT+9V}_8q0H?g-v3d6ojcGdQs9S>l&1sYJ;;t_)Wt}o^2$@LC_vQnj(@9>zbiC7qvnOLyb?98Y3BGAbj?oKua)>zj+(q*kP=pS{iZEO81zuF@zyT@?H8xB#M5{3hY{+_z}mSV~+) zviL0{14S#G+T$;gUUG@R{yx_;{GC$Y15J#lB{4#cLYx?HmXV$dZoOWT&%j)YZ@k9u zNq4BEG8_>&c69#z>!t6G744)v%h;f;D3L?Z4vrL(O*rE4YYLw-@tl#)&SP^^Gxi;a3Ez-E=J+t&zyFc@OPeWA z3I-p{h?nP3J!Q)|qmz*l9rXwvuY9_cFDo;*JYIpJ?+jnwmIcgs>kkd>`K0?K$Oi;@ zTf>ELvXTQNX4fjKbj?+N#K(hT<8TbWQ`Q~W2uVe|2tWBl0;%kr8}uJ3D4Wrw?YF&&S2LEU@Xp)3ep$ejfTC{DcKx&5tPrb)TEd=XP%CgNoKBQ=E4G%ya3_s~EWhtFC&*#^&rCqfS!E5A3$```cwYu>K zF3~KWp+UpOcKgP8FfrKb=d(&bR{ju0Ej?R=%`OeB?4ceXhH>yy)495ov_`GYU`@+H zp4$lTv{$w*y|TUT!VDdCku~C}i_w}L1s=1DPr_fvvyZIhx2irajhF1{9v>oDan^@a z1RlQ;T2&9uXP5Ua!14keItL+e(!;OK z@}7JY>ER<{1z<}B{FY*)V4%3#T3$(@>EOKWYMN*HiGXOlFp{rQKy2SEdCso*_GYPj z*;RKjfZ~g<*uA%vc4L*Q){4&|B6`wi%Z3{p((ctkU<+-i9xz4U)Z%X`FyR>wz`P=;*Z^1&T(7QI7r~)Ek0HsjDo5IGg1FZ`j%?TjNY< z6{Ei^UtHb|hWG)Q<@nq)l=tw-YRTcrFi}-OUW{=jeS>Te&pbzYSAOBOiIE9s?nv|f z;%7vb!P}?cg=pq|Hz){p8X6q2DZ;@+F8JM|1tHwAvwo@wDh|)&Te`uY@s@5XuBLpF z9FC8+t-E{>;HUqy)a_M0(5WXMwQ^#y^g&nkfU^YxS=Ej!&5LbAakx;~`VbzxM3?&I zQsE2m!9W46BCoP%IH=k6i!%hGu-87pE{=0k&+& zd0slx*ue87s&CXOXn7{U@GUPLBYA#!9Yo$LO)1TS7Wv7`p$QJSSLkSuM*yU zIPAJT6w}$*f&1`fH?n*qTkgZ5>Dsna;h_3HJ|A2VL0thImwc)?yeO;fqOT#QZHe)R zl>|8R8j9#&satrko)lPCf<<5BwClSX2vLIaJY3LN1uhAdU4!nBQrw*{c)dq;GP=5& z4~92L@m|mlIE237qBuEi8-^_shL}fH63M|_Q{q^Ot6p(}vTUkRU=3Ccj3fs6tk}2ph=tdMIR1s#K#-Gl26O{PCH*|-$iYg zb{m)Q&>33&q@7VB!CFqS11Z+SXgtGp%0ZYm3JbrxpgVocE-g%lG*Q1cKeB+Ellu#u zYqgJ`CvEEZ^G2#WhNa%{v!tEv63?aK5HIa+m-t6hES4n2dzWY^424a9bzUOK`cc`A zi{?lt;M_J8hr?#2t$xCNRPn)xv`I|JJ8an3`eRa|Z$TfMy~^kwVWAKB3#^LbFiD zf~`$7ONA^C6NUSpWKRO#gyx zr-z0}qZ?I6KTguDJILrFK%>YNl0&R_kPg+AqGMMaH!;vAk=6%xXhlC> zqD&WOp5sH2+qP?|aE^HCL+a8hvTb4vS|W6YFZ+pCd_>AyT5iSLMt2aRk%{7wmK})> z0wg$;l7YFCFqYMj4@>VPLkBf-Dun}N%EYU*wB14K?WCb11b*Y`d6Wn5v(0@<%guS8 za3dCT8Dh@&R(%CR4l^g(VyASK3!nY~7fe}O@guX(OUlV3D5oOJX=@J89ERTP@x3}Q zM}ad{irrr};i>_)FRF%<-2YcT+_Y=VP<7g+R*IUvX2rW(U1Rsfx#VgyDtP(9+p6|( zh;xH;pR*H+VkCO-GWqyJlv<~!n_$(>7!Re`LR~fK`~E*^!MKx%M)cerhu*jAO-FL%;sk z+mc^>(IwMSiR3Rl{a0^)Xsblsb#Rj#6(^(ey>j35V?xApgAL?O{v@@&s&KD&7> zj|a=nsczlN#Lt^$3W#&pF{1XgjORBlI&zlYC=>92p32CDXr63EvuIx3iVqkpg;Q55 zMvucLE4LX@ti&1oNd=0qjy;l!cFw@AWiGz|hb3EKForw>WsmpTPg<)!bmPNxSRziR z8T?#WNFhlC(gt?fxEXy=){XcqC>`L4(p>NaWP7F6Q9XBW$D4l9nKYY+syT+*^fc?G zIBrDY^Yu8MQVKw0(zM9dpyvB$g z68a>CUuRAhj7YK18N6s&iW?^I{TG*v6x+T(GxEhUcxL2#ii|v1qKg7~@!tJe+Fz9I zDNFmsd&|~~j6Zx~Zd?okB@w|B*dIpbhy-oIi@m2}KrR)9#S2uM(72f_PB-|5@Nb$Rn1w7`( zC^<6l$E2ld1{1pr8maUE(VSnw{gc@q2z}9oRPTej7?xKPKAdg;js(^}ArYuyue??J z&ggV?|Bd(LQZ$1aU~M#J$8P?2zW1wQ<(WYZ^UC<{d!G}Z>59O)*}tA^wr$`Ngt>-e z)IL^`5NE)~2YmqtaWGU7aY<<#wBf!d3ocq8#%)|jX7p@NLWk}$e5qV{Z;B6~IL~mRf7Vrfx;>r-=+g65%-n24AaCv2j$PFt)3;qsh zGENUvXVHP_ba!)^R{a}4Cpumi1Qgf$a-QM=9JH@q`TFJeM3W6&T;QKc7X&Zh#Ly?D z3yXvH`~)^iMzk8*2X!-cT#HGZ=h{==DK;j4lJ@Y_idBy=r~nar%FPw`c9#ScbChBh zK%gBxy$+$KxeL*fnP%$YvG&emRvFyhgfed(r$~!myrAp$;8;U_c|L=n0E{SxOVXpV z7*R#>iDLn^)u3Xt4P7&EC9j+lKjXEjAWa3EmnAW2ZeE*swkm)A65QFj`IG$F3lf-@ z$c;E9muNTf8#)_Aqm8>ATGRLZmexr=Gh6gwn{=0X1OHY*DOk?06m7)(1#49lm3Kja z7uRQ@ZXgLW`b#29R)NC|wQ%6s0&)YzAtrE}_LrjY2{=@@a6F2mD$39`#$6b-e<2$| zw+}l=3c^<93nPH5@u#0v3ra(ZALsUPR@rv(vWPe<0ElO>$bzV@ZjWNcdI^Zk^$Y`W zU3GLOC5Ba@O=YNXiae{_9u7?(O{su;w!OB3VnvG1&_F=qpgMRBpK-Zw84Rxtr)*o= zEKUhe+0QYCoJv`V_F+_t5;$`FkJj8!dd^o!e!trX>u4Orj0FHeLIfn742shm^1A45 zS#mjjnYBus-fkbfy**TxqHwu!0DX#AqO&6bz}8r!Nl!Dod$$iSD{E>q-l9rpYRC>Q zRCRj502E8+HB{+RkGjKWW<`2&s-DK4=<`ysq zYe0c;crvqQ(qMMe;e`Bh%7AZs?_w>cjEsB(`9)EfqG#%xu>K?E(orNUG|3G%hIZZM;G#FCU(s^fG4GTBTM*qG1J^zFrSb4h%?D*N{?e=JP4h z82aXnB211fqc{r|Br!89Hw2NPnHkZdEm}r&+DD3K223#zahB_)%4VB1LD`CHqsg|& zH^KNZv{mg*;o+-@-6Ak(Gp$d#fy3;$3Ckw&iknrvII(i#k8>*5t?MDNGYowl)G)#B z-9*nV*YvdOj;5b@r!R&^eG@RiKN~Jd+cl(!4xEl6R)^O0c(F--|1%P!T6wsL2Z>~1 zP^+rEMUtuM$Sai&*kj}AIWO34@}^YM+eibiMOQq`Qf5fP8hi?XTb6QD658I5{Jesc z$Pl58wtjGXT=}G&kA$`6qE?xtRgs2na<#OyO4%O?eB+ZuO5fOaJ18G<#iepf0&F|0 zuHyz!G8B;yNN}?J=$W*}&REa>OQ;VtXQf?1BupR(xq&S)Uc}^ zJwzr>FrExoW(QXs!-Ovl;pj`}vyr5S2Qle+BJDWfSn3977L$&&pfs1X@{9UvC1L8e zH>AGOc~$%XSOT=!O{|P1__7pfNnvb!C025-BM)-`Oj=(P@+K57-$g78J5@J|MHQtC zn?#{7_ZSCWvfByERq&-Gr-XxS;mvC87vERnVA7K-q$WfrV3h?%@XJcZ2`XeFQ1T+R z^4e8tMarlQz+hTHX#yx)(d{*JEZr^BZ5=9a@w{ihgFYY*j_iC`h{r8ShHA!(KEh1k z&ijz^2$m$z(Fep^W`@LR(AIE_G%TZG;zWp8sJ<89{uEd2wubm)S1ZcOU2-lODWK`B zs-cQRurwKR+{|E4;2bv)JHM{%9sEdpb>QbY6k)G)zlyTuxH+h*QHvM&bJ)(AdoMox z$b&G^d&NmDbAs&q8WWa-Q#K6)DzlWv1fNS(-BcDQA|d0^tI)G=BU@I42;xqvJZeMNR(w#kp;-jajFd+izPC|ypein+Ns#bY zqrjYS)G}u=ZFPNN-EyB`TP)DkRdF+wo4yv_xaE_eLZiO2`@+3I_%5fk+rf=A7@TBT zMJKm~^c?Nl3kuP}LyB0SkdBCQU+7eTJ#o`8Husf))zz+NXij0B3R728ygQ3C^%dzV z7MHkk;jsV;+TsYNXF?F zFMH8$Q?}dGsBU3k$WYR{e+_svC$^_c2vS)-oSzIDe%bj&$z}h7QiPV3~(1oN%bbzEAFH=tOp``UxDe zo5)bcBZiDse9#4gxy+X=caMQqs~oPqzLsKBKq@yIjI zr)_=w!mP;k9!3b~e@;m_2nwrn-<6)60*({Gq&?fQE$xHI$5>HLHhey{@1a6yw3In% zM~2pQ)^hsG6!Z7y#-71(++{12Sf72O+?3#UovMe5@7w0aKEiMHoU^up7rJ(hS|A(T z#QCJ5(i5U{w!-W_3i8-I`;BV>zgOBOb0IJB;8d!KuDFNYErh<1qnwtZtwrk<>TwEf zrQ-^g8-fK@+7jn9&8q!_`-=rX_YH(iyPKSbSv6195-v5E@B5?hW;VP~d;@|<@nt`3 zHqSW*SXV>svDsvXKkn3hS1TdCb4m@-e_Th0c`3{;6mSB7^&VpDvY`mN;x~)}WQoVB@-q7? z0v;vtoqxTAYvtnwhRi~~Xn%y4!5q|X#<7xZ>5>MYdpB+C*eR7Y`GRV3MO~gV0u@}! zLoVe*0*SJn`u-MaWeadY3s${rI}Tci+SB!S_?SQW8{$&X7Xk%6UB!{LudhPYcYDpj zY*CJV6?-e~m8ftH8j=xzVVy%2!z#UtPILc;_wC!a&eEoQ#xtD1szMX?jH&o*{ zGX>LC-GBM+r+*?d|Mq%Myq z15K*8wqSXZe5{Oh{AnLAKx6l^LqqBuyMB^u&$eT%8J>lWE>+19cR)Ujma0>t9*ce% z;BMxApZ)uH|6#_8BSpY9aZS7+jtuAT9LrVI&n`#=+yV?8+Gr$`|tjngf{hE&$0gY z&%XBkQncFCR+CpQxxJ=sIAKnVYMHj{sSz=HYIJW4VNatCdpMHMWJU!CQp3e%r0@M_ z((+(N!`T>;!H0-bU)|mjjQp|R`ti?;a)XQ{2$Q42ON)+K-c*(%n*h3|2`qj^xVGsc zpY$R0jQ{goyNVRk4aD&AOC&8|Xu5WV-~uO5s3E}PFMJgWO4K+Epsbm zsCOgfR7f`G3_g-GD~-zSCN;3T<9a|ym9exzZ{lccLNo;V@W78`Mrsi z`A*_|zM}yP6^xECzAeQE?;xCX_h?dleM!Dtxu%4z32K-$XV!48`d3g#mg6J3fg-IW z>y|A)L?9X5GxSnOl1)e?kX;xb8vtEEqQ5Gr<02q0Wf^g^hiL8!lH(d-D}|7fWw>c5 z8^S9=L1W>Gf?d36SrBw@9J!y;I?TNf7S6HCVci*ySg0MkMUw`6hJA=HOBYmWu%Oqe z?ZQy687bHjW4nE3BP$CUyR`l0;tb%fir@jYoN-Hf}B*x+8q zrllGe@Tj}L4YjTBJq#n4VU%YIJZw9ILtS^CX1T1`D-t>?meq6(UbHW3R3v$DANXI8 z$bw&yEPIj7E0Q#-{J8w2cQrm@O(`vaC=9V*C==KsK+^Rf^diML6_nBtlV@Kdq= z1@ll8nf_`oVUd(N2lKv4a=$lthZOiER*b*>};j$Lx2i7 zw^U7b*U=4N{KT)53^w$)v!SxX!xuuMcGG^|q=-i54kC5a(Ey6}?+&8$%2`&PXY9dK zbBrL>Sf--lOUr~iqX7PyQE%ur$05!+9GaFS1p@54Nu589FG{uPypMpY~qJ)@cPy_A4iyuA{kiHd{&zXR_sQvQ0m0Nt%RG< zUT^#i#*c~*!iuw%3FhyX-pfhm5-E~@P#pCHr&F!s@;aO>mBfx0Gw^6o< zXCWOiP99et-|v!aimd~f-SpyjB9`o3QHFp`5-g4opts5ou!fE~%8nL*XT|!elCA^% znlf3k4j;s|FrYQJoyA*K8{32{cRTD%kC6=*CJi&*mF{fgxN-w<_C~ep(qlXYS7b#v zPLPc;hev+T@BP+q`!j#~&wlGSecPY=)^GmyZ~niWyu zPyWlF{QE!k6aVaAT=B_3IS&_uInWJ=Xr1%Vs$*30G=9Bhw??=7a9% zwD7j?UrI(>NJ`1CaYfzDKS`A7E=gP;a=P8+2-WGPP)1kW5ao2)RkLVwa+)5JL^reU z8Xuz#){h4gCx_H6=-p@yX!GQ9QG@fvMVSxs;Krkj;BCOB6AHfOe5zp=Ur zkAt&9Zhc*8x?^THJAfgx_DcR^jjDg*pZ;?k9d z$8)5WQm?t~+U~ z_s}k2#*p3h{XENqavL>MuseIygB)!vG>-ycH*E-uCHdLIPzyB>v7sO4*`k;RM6ux? ztsi%3j{Km|);JncHr8q0`s;eEZAi1_UPm5VU$}E=y=`bu$%f8AB5HW5fjztfCWfmC z(zZuCk|bHjX$!SIW(Z|KS+ZyI*2hZN>@`R0r?9tXV=i0obl~U*`0<#BkR%|?fE5L6 z#@6qls0en9y?kmt)dv*p)u9?j9a5kE7SA@Rkic_XkXWxz>yHghTJAAwxTZYILH^J~ zzjQCV=IT+Mfj{`903Jte>g_PX)*VIm(J#M?O)@6*pbqn(X%_zXFF(ektu}t#TIw4s zAw*eItKd;)cm4n@@0Bb>;CpRq2Sv7G()O45R!x0VF#D5iFgsKbS$6*HDrJp>d+Wp0 z#Pf{szSDvZ*U-WvZ-^aCINb}Kg2PR4`SOxC&aa5luuvLdGbxAh;ix36#ays9ex6;X z5$mgdqvKmpT!Hp;sINO!VJs^0!Vd!Q9ozSMg4#q#!3*S!qBDo!WMcP{=LELW!GyDB z1yji4CcdkNMh{y*R$+DE#}hKoVuf4mL*WaQ{EkSex2=Yq2iZzNj%sLhHTaFDV}ZbC zKz7=>@LaO+`2dC_+>AizSv#tJ_JbL%9*RRr;7M=WV8q3Sq5eho3}qSH=xM17EJ&oK zrW;M0P5$-0(MGHuB9?bSB`}rGFhn5;JMdxlbXMUXa$A}nt*WC&3sWGpY(w=~{@J^w z<>`=XD1TH=y_`c90RJW-VPP5bEp5kSVFV=25ox$*r!bV5Zn=J28tMe~Tjjj&`x(oS z;WU&4cuqHUCIniqVhhY#MkDkZm`e2%KJlK9KP*gnz}6w#^*N!>h}(h7XPO}=bPOhw zJqueTY36=}=~EI7G*4y%k?fI|TE!`kKz6g0fJfRQvzzS*L`A_i*<%+$wef8?PrD$1 zf52@S34Ni|SXbeBAlA7+*uFUs2hS7+qF24Km%djvcr89qAb>J`*f;h#K^zPQ%3R~? zpmdI5&uD}n8&$d86xIttjbVHzRo5m2^|R+AYIjogY!yUaBG;_%BA|CwV-6vb4pI$f zBKt@|Do{RcrWfHLH=DK@cgW*;WmY-&NMzv8?Z&u_V0YL9CUwVYD&rD2%Ix7L!h2<> zE(RR3C$EH#S!wKfKOjR~5ql;g*gRnIH0&6ARI#}IfP2p?2kN83K=rlq7cuFTJ?Pqm zqg^Aiv!d0r2!BC;BNtv(Hq_}83~)lnXA@qwBj>28#HU zo-6J^0PiZOz#4+Zzx6Wf0jAagz1+kJ>o_)DgUkCeM4|}`Yy_uDw5(?=a8YLub4aS- zln3m>u{2H*92piA0cvVhV^c+kr_i?m-9#ws)wcnnqV zFDn=JkNCL>%|i+uT;+v|WOvDEI6dF=g&z}W`c4gtZk$f1ZwZ?OLN6mO9M9pf)u>}l z#lSM7C=F+&6C!u&Ou1xYK0J1v9cVKW##QwlLo_w5WDLE~ry_Gh%KQXHdX&Pnr~ zgCcQfdyFxl*+uKTHjCmPk!sUfBE{ZDBi zuOI^LK~0lbyozpx89b*8t5oS@Q@vA-hax_R{Kx!Cwjh00H&^IKMi95jg0wPpydD)+ zvJ4$82VFdXvpzWAh2gx3Ix`;YSfq~|Xg-%_% z!Qb;*nS(QbkFd7@Cg8}0-G6^!Aa3&a{CbIi!Wr0Gaq1a7R%^H5cS9}&Um9}Tdq7XF zvSg!5z3UezWMMS=-fu!`ys-NXOsD}2Qm77E(Dc4XcnUWwXe7e-K!O4he1?gaeI}5C zazg7zwZ!ZQ{+G~vd?|sww@>2;5qVHE0QqJ^R1zEqG09vwkp@NxUq`7+b_^c*=mSBL zyJW+10!)U*J_xQPphynQLSJukX#S8qea{`5g?^6slnCvvKl`Z%o-Od4`#;$j3L2st z{GV(9Pe3#N&u0r(;!6MLow9(Y%Lz(S;{`pqe#TTL{vXPOS2|9Av_Nx%6zw>NZ5Ms$g%!8l*Ft*T=+4oRD#`O(&n^rplJd55!?#iXY9XDaz>VP@~6o?-v4 ztwFBW$i2EXjU@anXyoMt3W-)4LLa($(tB{BV`n6Z=7f5?O;EwncoSXrIX0Bo=9hgSa5X}m(7m2Q_K6@lT)sRVp26)5 zS+QO>beH*Cf(SW6FuFL-e~FK-89Mg6D~3_S;tTsdstXr_qUBCP3>AEHO10snVV~-J z#0tnsZzr{-;2J?%VToTGniS!a-fqI3G}|~1_gOsWSAP46H?aE%H~PA}@O_GWWUn#Y z806qvRk=At!m#oH_|dt^t7aP_eIzCVcCQ8pPql`8pmOW`+X+rtY^bH|(J!&IuR5Jm zu(OvaK!>AajP*~t(YICCfo?&MkrQ^=cJOllF(lg%*X;GU8^P+B8Jr?eaPP7Xk#ejG zEEHydx3Rvg?N4Idh$Gq@1bv>?p?`lAR}%cyJfnZ*(XG5Th$7R8&;u?1V1AY3HKp5 z8F@uRT%%HpY^n$$(MZ7?e(?;8Mc(im{1n4)+)Np(wDF3!5c;|^A&{FrJLK?m6yWD_ z)_7utx6&CJGFn&n7~BvkVyiF=C?eQ`Q{eb%jYR!Ev9n5!2wz@cWZf;);jMDWR6kKP z^F8+$c-kswRj?8K>gS}}D zZJZG40f?Wz6)MQpSPmJ)0_xafrB?Ldl(ln6rF~rqp2EO*3y!1HK{`C0BpxcYX>bCi zmQO+`HZ^XR>&KVxdAgud#!vGEPhFl(rIU~}96y5p7sFBLu_1i290l8&;F?S)|7Bp-IcM2$*a z$DFQLu1ei_W0_LlO&k6P%TQ-VFsigIJFUQ{wS>LrAtjq=*$HdO11nn2 z)$G1?__UV1VFmu?_2BVap<>sAM~kiKVcV(6DcVG^7m`76bQOU!;cs$oxics(aO<~y z;RAsx8q0zmI3pUOq2Ui$xMH0V1%<|b6{amx_oT!8Cwx`edUw|yaE}Z@u6+nJzV~!G z@!LAzTn<%ydztSvzOJcuzO_|g8YlMg`7++B&QfT@$I9U467hFr z@J@#cKv3XU;CQDYd<1y~q#!cf(3D1QDbmN=Z+O@vn3~gxeW`5(T;dIo0&jx}!_J#* z4{u;$KLuqPZvb0%?Zp_{h8zMo9}(>-*Fp0TOIsZT|%8l-{`G&!E?%S zp5u45MoDn8%CTKnlOA)j&%r}zm=kf1g{g0~a+Rgo&uOD=92V@pNs{k+&lB8LvsHRh z_KNq#zW(?VZ~p(7CBiBQCIDakt{S#vOIZmKb};!9sAzb?*v$(IN#c&9$6~PqX@so$aTVT}7j+0SA$8dGNbR|u4SOZ)b)bvx_hAY{~ft~iiga9yJ6lD#e8kYF zMLAw6OMg%(A4O%i2PB3TgcennQ=4M7vYNY&q@?i@accD0K~_$QM7+g?%Oiw zxM;gV(YP<4Fc`;_-3t)+nOjJcRcztjVf7BvsWZ<3XgEWB?a;1cdZa2QU~ z>ak#bTj?%JM08OAQEuENGuOgJEKTy0$n#dY%pP*NB%lv~jP{UA7R+#qJ!FfXMRaBl zxpe*jUF;!SRyQD+#GXt9wT%y$KNh|Kbhl~Bw+Nt|Ahn^)FHDFw+Rvg zWV8@m{RHSrz%3SnEd&(NnT6m=R|O~*$+2oQ;c(8r3Lo)lhxLVm5WoVU>PvQaP>4&G z;wyzlqow%W67I}WaMc|{pN0kko=ga0Wh-$;blR+czdW`GjCMsjNP!gc&D(Q@&gFK6 zeUv|OiyOVnu6(1^dbBIQR{&;fD_3$eFtJ!5uJ}j*E*6Lj2aCXX;=`c~ol$pU>%1X|x#z3y~y+J2v;f)+0E;UOWi!Q$MSRN4Zt zC6Ay}Q?>=*YWxP=nf|l&P6Buts6XKQKkQcCw+%aZ9c_eyI?2^6oJEG62j^{}x|k&# z*tPUn0B_r{P17#>TmC3c(8YJn@ADA}&xBQw1dP^|_X8l<*|4n@3=jh6Avn5dH_p#1 zD0WE2)cAXEeEeXOPWb$iPQWegk$#PLlMqe^4=Eq!KsXcf?)Zx{#5KDRA;pg(;Rduz zBpCiq8?j1nL--(@SpZQm@ajYr6X5B9h=SGjpKC) zk>ow3?(^=F03|;SA3TAu!O_-$zxqKK#KKTfsj+UqWW(I8JRs@BMKV`Y|v79 z4?fg^Q27OX;mcN&mcOrn14|fu;k+ThudfPaK;+Q`rQ`!p5O=rQgpTub+oR{??5^wo z@?8q(-j zE(d(7PYpEBSd#=WXJS-0Z`BVimg-=mCp_XN|R+_jpd<*KvOu#1XIPdyTx8j|_C*`~u${DvA z(d={wCNDgaz@DbBBuV}Sc2+ZFA>59eYec1+a7)KU&=71ewhvQM)(tAFoy!N@v9fkp zTFrUs_rA8OQG?S}c=}Mnjyi_@^Pla#g$GqhvG|$ML(k>P3SCG17wr{0}NafXJYr14*&C3;EgmnkgmZ9Jfn2GXfte6YyU zLgL%Gqrn6^?)Y*>*DWDj>%Nq7KKM#?`3ID>1Fid~6X!+F@hMZjG!W2h07Jr0D%cJ- zzBJhrVYcmE^RZ}&PN%P}8WPN%41@UeS_(RZor-D>odCBm&8_g2(|6b{SkPYBGoVIh z8eG!IM3ZT8NnQ(UzHL01MU3GsMLtC~b8^@ZLai1(glr#yU#ncN`fUFH)`L&5^)Imo zs&E-`Iw3Ck(a;zENew}@V;w}Sa)+1rviVSPgqq$_#O$F?ar>v zs-E+^x*bG|wg#P|I7j%c>yCmzJ*JW%mOYUI7W}p;f%a+soU&^XdX_^gNpyK~jok+9 zT4FLRSVA-;LMI5ygvc9Xp}-w=O&Tt%y2^u}4vRVxULG`SeAPN-G4Ci4h|&W~GK5Mv z>|SNp`k2AX+w@&H2IE)RIk_8rwV@r$i|n}@P_^lMLo4q~A`pBHLG^#(JM1jq4SuKL zBw|B~iLhqwh8u+bq}Xnk&W=oZnR; zF^WC;0cc%{JV9akK!t#8dVaR8PHu-*JCj-!HyJzU2a_HaWcMNn3o*6qdIO-ip_2w= zm`Tdq#RD`nTC+`T@e>7}d!`*E=Uaxxz(k;cc?0dT9Q{`aqdz(8Dhlr5rx8>P=_8D{ zU9!Vh*GpVoL$Tib|WhYMQ1Csp+RTv#k*l@BC3{?|r-g4Yw3;5OEtbG&N?F z!$~gKmnTFnfJ6;bR|WK=MKr`VU!PS-rGHBiZ&jya-0ovV^rYPGkYY?8FXMspbC%vL z6WOY1HZ<5zmXVrl-%|x-qq@-MyUNJW=DS5?Q-uqV=fxp!RG0Ma9=So)E&BE=rAC9k zJyO8!N2~WSui|U+_p=;>|0FkSW8Ys8amwwSiBDdM$Zc%!cV!rb3P5cJoRu$#9fCkS z)2I+Q{8<^hJ3zodaI(Hv#%6+gLgrVuLF=9_)({2oco{hlw7vT;C1^9b z#KGH2U^Ud?-1|!Gs>SDskC z*5i(nQGP>iv)9@xIvD+?j2y?Yh6`{~!IxwP#&KM*vbhB8KKQC%lv_>a^0P9l(?uvH z_t63_)jEH01u(Svx>ZnbI`XNmfhVxc#zoy%E*0dJZT3aoF9j|?CyMo=?&l$EST^ux zcGriA`u40S3J6;;`LZc28fvJkzq z1kTrtx0k@nn(@me=whw8p%4}3@|?+5jt|RiCbRuH z5qGGDM$sMKM|j|cZ*;Zwo3Vw0*cQTqV(dSAhQ5Nvs_Ti4J?8dR4esS_i1~W{*B*E$ zd+6^g>wGmkGsP3;$AoqR7NbyOpvnK1@r}ltI-EtHl%Z;XJ3U1Ho{Zepmz^K0P*Cd` z8LazWH5v+WK=5p2`*&rc?(7R}05i$Ys;YszCb;o;hR&`Zm)l1YxXqe&rVH=6{LTuJ zebvq3BKJ8No(A;!0?t(~JVf#-85x3?%vnD_v4-Y`j{Yy6W^)Zrb6ttt@lw-_-WQx zhAlR9$YMf$bM|qu+wN!;IIquwO=1H_^8+OlIx%@AWHXbBFK?+ACf?I6LCP1J|N+A-H-dbP$pdFCVVtRNlP8ju^ldR8{4r>g&%uZWNHo}GfzmUi<*Y% z9TKSP$i?u81nO%?0SG@QqDB`i)6Ytsfq0x<23e_8~#)Q7iAplqtYPQ(qP z9?81#n>^F`aU4x|Ey(3Dsl{mC1QXDC8`kHyh%FuMNL_tYf=xYveqI8_vEo;e&O04G z_a?EW5cBv>2{bpPL0l#Vh;$Ez4YmIlq^6G7?nKaoA}D;`gqqnm#L>WIM zuyg}$ucy+>fs;u@cPndZGhX`IjIpwn{4HbQT^h8m$QeIM@R1BnrkLL;Wbh?>V-+uh z2~q955ziV238RlJmhk1b8adT5+X=6vfG?qp_?eo0Ar1vn@Ov7dux)+EYhH5)#nWn1 z79bH@L>sMr8<>=X&KHWX? zEBMkrJSt~ZTG`lfStyziKq-_g%+PA6?d2F%>BNTWE$!>RpO*?nD+sW|-o{*EApmdr z$Y7c|+&c4tjthLRlAVPhgiPvI zkbb=Y*-3{jHrimdY}DbBxEpQA>z0ueIF1jA$YZZ#usl2Gk=cH5(exGO10nr9=<6YV z`cx1E#D}903M?eS7Idv#Ie_|<7Ckcy4%ZH`!*F-5a=#Kd7p(bU1hnBn7+jOMruIAn60&Tj$eL zyu8vtU}PE)o_XiZ=Eq}MR$da2?}`~rsH*Jx@0MqP*j>rxP-7>(h4)z~rwZelv1zu~ zSCMVt4MUO^%leIUR);uHR&-ZU_-bg7Rb-OgIbBX?+k=-r^2D22IrvR?v0@T>ot}Z@ zXTI0%rXv+Rv85&eRqsg5g2nZ^ZFE5Kw#)03Va%IEuiGw`;C`Bwx7Te?ay`AkYL?e+ zj2aQlkk>7oCvcEXC!sO8!y%NwmW|ar*gcll);J28O!M}8IcdWwen#4e&Ntf+Ilgm<96|~B!gtdHOWX#;QFDNU z%2K^{@zlj?B2mEZba4-Hb1H%n>EpwL4?lW;fgmf-&KWg$4XUp3ZBLwRoC^(cz1IUh z!NHZFLzo%1YD#a7aJ8NY3h#4yJ@~3SRF`z75(XnY=mjH;+;Vm?Yr7A19RyLuR?Q5q zr5NETs7@ppD{Yqp0k_&^%s5*O6C^^I5TeLk@)M1v6C4aRAi1EbFl34UM=!G$81D3{WH);c(4Q3J63R|)MyIt79_*DbWWMmeFXN_;qn zwaWE~xK!*zn8XAe+@9P|f`Nea&aJZ7up5##t}|Z%I|SY4^Yx%B@OI8Y57REX3c31K z2yX72G;OHLuvAk=QhjPMxb?Fbc4>a)G+BjA$ub0zzB*p0%NVBpoUl@)2Tj-=7|LTh zuhR8)Nf!t_X&d4nJ|Im-NYv=UYco>E2ID3*INzB=MH7*$-VXfYbCVEDf@;Qv+7L2( zxsJQR0H9T1=deAlSmgqPfHQ^4};A~apu4n)a!Dv`i0NdrRk|GkS4K8s32T5TAGTz2W zR>|%3;F}rZ7LZSVlR6R>!VW8oI~+3y$EvhmpKpb@f>+Q#cf=PpXrbZWJOJR_k!o>w z0*IMZViG&XReS_64SiOd>J`G874JTwq>PHGk3Yx}v<*tYLJByD0(oIIJ)!Grs8t6Q zq+;C!)~@P)ZR^_9y>CKw1HL^#1*aR!D1vMlepVH=smBY4YK#45jYk9;c;gkJ?9vmU zctS~T3yDwQ0MW~FS?W8$v2YNw!5?D-AH%{jI|~AIa#hH6WG7@oh64;Q*|CP|RyO+K z*}Y@}_H}$Gh8I?BG~JZ*g36&&c)(9?SXB)K{wTFv zQ{r_Z(**8R%%FH^4ceFyo;yXxSKxcqZn=)EI7F?klssav8wp!4*#mDY9Z{{)?D#-gJ7} zg;TW1rd1c}QV&}{gi4rFF&&(rq0Uf)9(wXP3Y)jFh9Y)wo{_?YZ&*IrizC9%o2foOYssCM zH{p1L(h)5RU|~_D@sv9{Z{kQ{yW$`@Gp2o<*eaGdZH-OtGUnuGo8MY86Wnvp1@OWLK=f8M&x6$IxMyy&jJSC z@~aQAQUQ+zOq@<{hh7b|Z(?nGK<^qGmjUis9yg-NnFKpd-JH^Cs zr}_m8xn~Ra+`10JV%G1nlEyu2GEn*rgh*CSs+C= z!=v(D7q*t1HJztTqj2Xp&F4z=)c;_|(LqjBzG-D;hDg(ETDiXSGJo5*f9=^kdK#xnTMgtdW{$cBw_GqE#OkIea4PYn*MZU^l+yJ%C?Ly>BfG*$;!s_{;WpY=&Tt>%t17V4ayII)R7?UGH!%;fA~!8s zEUbYl0+Vv1RWRA2ck-cs{}{VuB$}My!2$u4qONRjhEUmnXS~s-^>t+%IIWVpvjRh` zIyz;C+i_yBQp=EX7y=>NYG|vuqtA0wf}jvqfv={e1VldClqh=8gt{}qxUkzJLW3J~ zr@~Hx(?Eib=AbO#Q5NjhCIdq~VM24;ngBjm4_-S_&XYRR4R&Wu=y|vpq7R+B2?yj9 ztIL3LU=Jl}Orab@0!yPfd8hhutcFlTM^d9{9mDFVOM!5QEk5p`8a?_7e4E%Q_S@UA z(k@VTR&Ox{Zvk?5wTCSRkj7|GR-W7SVW5XCTuBu-sRupys=feMWkp4DvGZ(sA;9Cd z2z4AXU}(aBk>yzrHxSUgf4f8wB)nK2R>BYwpsVc=C-I|Vv&L9Rq{J?Mri7e_g#7~< zdl=w;!}q$jrjC~=k4rRo$?NN?-jTfja3vUwEOP(HA_2VpM7ZbJwNMX`yNm-5e$!Gh zBEV~W(W#{k%~vE2BGNZKc`g4`Mt3UJi^A@GR)h~>AHY7#1k@8K^zK~T9pQj{Q|eu!z>_dU znZirgNcZ(ypqryP{KhJx)+%+kf}WB8m;-g` zOJcJDdJS29hY0OsnAdwm*r@8b>^~*~?L-2S_G^=?hGs)+&F93{2uS^S>k4F&&kO6o z)bd*-@Lt*2bN(Eshk#2%`HZwOQ=5y8dcOq5O#zPNZGw6rDz0}QkvbHSiPbw-G`sNn z?5ei2CGVrRK#+L4tHe{j=zY2Ph1BjH#dcvaLup@I1ziO5>LNa^Nw*iFQw*&6qjKL! zn~>)p;~E|eynliiw!y(bz0mNwHMq3cgZf|&@fGJ2U(DeE@v&p@d$DcJ175z+_J~6r zu@*{gRTaWJxK0qzsTCv+!IN$UHVs+ZTesj5_LI_Stc1Fj)w~=HWY=x!DGn zBA1?m6n!;%y5g6EDgd0PTSy`gI3Gjf#Yq7T(>coTRMl8xsB9cNH;`a!+Sc2nxAAJ2 zv+oPqWoVdtQV+%ps7Nt5nlqBffdM}#1@#Xu)J)OpB08g3CcNpD^qbkkQj11i8Q+nJ%>WVx1Ub(6m zibZ`v@gpPLO%mWhhH#%eb_()U7a}e-FcG!7>lQe7KbqjAmbJP0OQ3LE_{5KRXRAwfw?nt~sh2aLi|jjwm}aDnz3DW!3rCw0>_l4dC2 zCu&v_&zT8gd#Z+Zy6IN;8^7}9Prrg$?T=UBpZVo?Ji}?o-DWrset7-Dhfmf2R{%s+2AD+u*}+xBfL}s2rjR4(%Wid-FN-e zSHFjqFJL;`BZiyPlis$YLI|gMliu#;5h2_-O?s=l4k6sc2gpGDa?=1Hh9I2EOnQsK zHqdR(q)vK^Y6BR~c29bXp&@|b26WQfNp1It;Rb5bTL(%E?Qru6Ft#EAayD&q`)&A# z`-+D+W#8O>`<>TrBhbAC5TRbrqwZWj_%MsQh9GL|4Ls`Ax7`sy_wk_YgO9MNS7#r5 zBah13`e_z*N7mMxc+_3Dy(Tb!KMTsf_W%$2(Yr!J_sAHM=YuThwbyQsExnEfbr-lT zjb)0y&0WuIx{J+pcRW0Q?H8Y9Pl}uF|50|XL7rUIVfUw0%H>qZmsHA*tCD=MQ%Rf{ ziO5vq#MS@q+y8$v-F;j4cK>IFFJ0r^5!%vfR#}Y!=Sybxp(jGC2L=`_BP{F{wlTuI z4Mq|M1V|v>NPt*@AM#6nCbngaQs;5I`#-zqbkB#a-JSWJ+xKzq>)dnC1v1>Y{L2U4 zCi;rZ^0g%MoqxvPD&J-f7OrfD_?|+ixt}!@is4xegLj$8Z2bE=7E1Gb3N|-&lKHi8 z&v)+~Y8A~*-MRW-)KdlSs+VD({wuxSGh6Tt#=ldN%&g^jIe)KE)u6fmLE-v3{H{uc zD*TQ{*`Q$0s8mSnTPjsYu&-se!|!XTtHNo-w-wBrnAH&5;vaRi4n_IH5iS(w4>Ydt zde12sbdTV`_oB$zdciJVVid-ie<_wx4*59qNpR#7H&pQ~YN)QnaT5`K*j3C;oOKE9 z?R`Yt@Ws88sc0OC9T!YmV8k4xNF3f`cO_Mgw0@3VS2HrwnY*R6Q0(b>1!+GQ`=7#W zNCSK9Uyi?*&Te8DRYr)~R`l$<*uqKC7FAR)+RE9PY2lw96TSNdX+30Oc&Ry$HiM$x zb^iX_q(vjaV94WS&p#qIjENUEu5_RS8nzV6labx$id&v*%iM<5Kk^}Y=Di*QIY&^%eNT^y*-TQVq0|5I0ynpZ8#7fA3Kl_Hb{A z{buoeucl*)vrp`w5x+n}b5r9H6c%v*@%u%E>Up^P13~&TTY~2D!P#3Lm;3nTWhb6EtDCki$=NAKIx$M2=$s{KTg?n-X@sIzOr%2@PHLUgQn64xX%b1> zrVPcCj0S1D?gArC$@AEg=RT_V-ml#8VW~^>rs^(c%IR}*j|g~TJf(f=++BN8V-4YM z4&Og_m#9o6;LOtUq;`}+k{ZKpy2qWqCIgF0c>TfCXd*CMedD&;_E|HrD|(J zC`QJ_R*LgBZk&TN3+S_w5(1Yt;9QBAG@t-x2N$xWep#3TU0N}*Q|IOBIeTcZMKfk{(O-z)swKH#M%)RaW{Ws~bGxN-rare~H&FAHj ztuRIA2kQ66^YRo_m;y*F-C4bK-QM;5`TbMU4!1DKSxa5y%=t&e&2V7~f1rL}r{`ec z-+Plz;vf++aazknoxmv_csXGm+;d*i*fLFK8E;3$tzDUSy9Y_7OPl5#&VEn)mdA;O z<5S%6yu3?evMB4)2mb6hUwR1Dk0n0+yqHtUgmK4cGlqjlc}dgnsZlmd+SJ(s z?t^e}@SC2$TO5NpLm-uv@E6P6GA>ikFa6Zb6UA1(b?dkg1g7Ae?Ta;F^SGhGRH}Yk z<}qEekVZXQSN*8>=JWCn$kx@|Tr!5d{=B>%97=R!+MW6*x`E`}d3lRt>&lxvJR)?5 zGK|^bTXdpM*f#2?C9z-HiM9#bqR%IG3?;E7bD;$Cgl!qKj<%@sbZy(DFM~9*+SY7@ zCAu_j*f#AGdYe*!JaTgb10R-D+WXnIOuB$?dy-WN-Wlzm7?c-9z{POv4>PGaJOY*W z;V0yU3xMT>&4EShBz<&GsW~^T=B7~)s|j34u&8_cVi$*ZFH0H*#DyOYs5G65wN^#W zCba*M)4|X|oFz$vD&x}DEFtzf#0N++-^F;^7o)!(5He*avo}?Sr@EUTlMl}he5J4n zZ1tkLcG;|{`E>C1$K+$j0|`_Sc+J_SuJ~QnTOT{8RNhLxRK{hN>if*}FJ9dkx7j^8 zecNMi6W2xuvg%Cg3@;i^O|4ScD$q!Fda4NAxtdjUfO^aH+5oY^i^MlguMv$Yqo*XxS5<-GI;!g^re6Qi=j3UwgX2X+UE_nJ^vq?++;jr(8x?>Ez+t-h z@F<<&bK}@eKQazy9#Tj8L*lg*D&-s}$|9vnh#wed`#0Ag8HamI>eJ&e zT&u$zf9yHgKFm1=_DZ^A^|9yVP0xVlec*(&A=p!YAoc#|?ms2%*f{yZQ5>l+jhE4_ zG|gAW1-cuUUma&RRuX^mIeA}78TU~P_hqrpKlz-zKMpj^h(W8qHmb26{K4S?U`+ps z@$`GmdU!nXUbCJWhl^+<=6UA;UqGP03lnI^?fKhNSZew&j-zGO?L9yHoNTw?%I+@2 zermkpR+Z|@<5^i%l+Qo6FP>FVZkqDIQ25@F5ojYduG8Gl$*{9^JF7F)5NXwkP{HOc zY0X^K6)gPYHP}waQAJ9(|H8v^-#sWnqseU}BDCabEB?Zn7nGGmT@7$b{*EzzqlUPQ zrVr$J>V=2pwF-P;C_x{&eMAH82648q%zJn z^-4&}(=S|<^{lQAh)_{pHzotm`kn=jra4llr(%EpU6={qheHCD%rhoi#RUsN=rj@!&#UG-_-K9V-lA?eqR zBwa-=Dqvc}Qr>g%S#dgmj1V2tzITiswBJo?vmi2WoL0dlcu0{&_uetE)Af5UD!sjq z+x0;{ >*N%_1}2iKqjIWljYyLi9a*9Z=pb?3$V#op%OeJ!&rOaU>vX6&c^d1-|) z!0A;rY_`v7cz6r*%Nhh4fR}H>U1=%)5@cWq!$od5D&;dEDPqJWV%1vRS5tGZ8`nu zMR6Ruoa9PG?o*G-w!6y-Lx1i!d}lQ2$X~<9N=DQyik3KMA6zK4qM)1%>-f}^jl_62v)by0*T`K0gLYJ9DOHVq} zc!N=m<6wflQtGc=^1YA=LQ=#TZ`)Z`CbgwdmsnEi@@2;k->&_ia&Bf-3K4Hi32(*I zvic_#+Sw?H!-IR$G9B{Z6Buhau%vhg(L!t<^tZu6i8f>e{U*4LlH0|9R`M9YVd#)g zisP(p<8q^ol4ZuutWu04Ap6&!rHG5(wqyn#G;nBN@hK}5nm)b4Cy2IX4Iw+Q@}5+R z$dmV^+1R#;E#Q7ToPhnfT+i@vFbR-8N_#PH;axY5IxcOry=}8HwnbLX+qk05?Mvk^ zcWfC|S(r&*uJJS`%8LuzM})>=OWR*>p$_MK7e~BfYEh+!2P^+c&RsVTNwp#017Po~EUZx;SMmobx@^ASHQtv-P;X+)qhxJ?ZyU4LZHE7YQWj%eSC)UFbNCP; z4YU7UC;L)Ap%uj#7m6a8gP(E%?{O z7UQi=OkN7@;cYKw%Ki$8sn^59G*Y|{L9}*J>0!}@-<862pfLC>!7K!)_zewBKcN(_ zOoB>F21`g4sa~ZevnrvzN=v~)h(oo)0!aZ*23)6pA6L}Gmy~FyeoDgdb=;JU?yv0% z+hybtB_qScyUd6i_`wHwRVwbOSI{miq6gIhKJ>~d$#;qWjI2HNhBJ$Z9X>vz)yIU* zy=^;RPw8%^x6}9kb~TFBPfMkM5vaeDciU6vrNvzx&G=HDG=>_x20YF0h7ctQ2DYtPar(y*~m`$=-S4A<@i+U!>U8?@ z_LMRC%`>Jbx!)K~j!JNPBy$`D_}9mhqZa=yJ+%!g!h1(3%GvuAYQwT0;%zcC*@_0_ zG!qRx>K_M{ydZx%vvF*B5dTFLGr>#tbt(pLs$f@n&js1Q4xfea9tb|5r`LV=;jsj> z{u;-(^fWVXf9mBgrGNmBUXTs(n9n?3t6h;<>LOp&Q|?T6caCstv^4tQSfQ#qT%-KZ zI7-XBcaMXxGr`J#M9-%4FMIiaMetoZ=#9%bGRS=+BpcTs9Kmc_#}Q@n%{scCmHw5O z$$M0A+(--Uoo8i3L&RIv)QTBDZS=-5j1=b=bSy+Sd4rB+UBKpV>R>oIdXtX9yI@## z;*t#Nq-bO6t78<;Bhq@C(n>siQuMke%#ov#=u*uTAF_{N{7G>ol-amwJ@rXxuMALW zgQxx5)ru{{XnBW!a{`##{L>kD=ZSa`BB(x=Z*gV<^0RM%fh?yP1WB5_PIy z*3;t#c>e|2?FEw?PHG>&aR2@fNh@~v_UfeeH9ZI2q;_tE>*lJ5#xmPaEWfFzIha^} zX@nfi80U4AHScbn>gSbvRd5L*`8g){2V~Mh{2%O}^1xSRiMwLpkbmm#N8T>(@0v0~ zZ~Va(fv-F$`xVzsNrxW;{;N6X%vRi&B*NZ?Md(=alG32+9aMmIKQRC-oR?dWn3NKc~I%> z4bZ*&_NPZ#s^{(`^V!j?pdlP9@N=VyXWTBInLuV`h)wqND2;J|!Or@`C|X*0c^=`% zMq!(#@Wvm~Pma@YNf+72N7>3aAKp*+>?n;dt6<7cjj{uc{_;3n8w2kJbnSg{w7u&M zQW4C~7e>D@=rhkug8M%6^+`PUnQtm^LvON2HBGb+KO;NpF`DqLtw)}b`xc{S#&?`f z-8X^dKD$4K&3w4harQoWcEz;~2QmzbL!8|h|VILAc^^ANcn-lh?UfR5Jmd3H0?vp3RAQ7^1c04Of zo5v0!cEbR5^L=tKFHU=Db5{iZmiwexw5NGFv8S~A5-zDl>`o}1b}x;knNT|2Um8{e zDV8z-WT=xiPs<`B!-M2}>Uzqwh2-eP-bNgqco;i5x1KtKf{_MGZ@jBRmho?c1zeVBkEIlh5PtO5- zM>@JguC#Tuj52!8;=2k;FGT#VOr)g^3Jy{KpOwiR9LwqDg})N1S(H%zUnXqLfk^35 z5z(&%n8MF7L*fx8Kn@YfVGfC_V`L=nEMRCaoAg%zAe<_pemCd}R$9>L9izt&N{Cx=nmn6DF?~tA#{$qS zqH;YcR#l$OAYvhYPV_nis)#la5?#;$@-gY2crnD}Wf;RGX9$y9Tj8f9FD?TQ-Zuq$ zmq0arPb^*G=eWcG>S>v3@;Y1aM@27g1FwM9*5bRVkf7x8YRZ0g{af*)rRn?r?`agc z)zR?v2O2gUA%0&5ZB)`TRg!0|DebJ`hll=1NhkIh)`E1w0G^nN>IfO>{*Ni`nxRF( z_mxk<0WVazq~e zs_-}lWc`~;o;)p9enwgsmDbmU{Ir5>(tA=rCL?sk1ak8yN^W3}!p~^^xRO>F(f^;8 zlryni8i$da;Jc^AvAVQ1T&zLr>spe&q4DF}8idPg_@L;PZEOXfY^t%;Apa0w7n2j+ zc@3IMVFiTTDY2Z@fmQWIu^6a6n40MOPR!~u{abp1-MIPkhMirZaTx`{hx_s15pELZkN}yaNZWv zYje{57jXM_Gzxu9{Mbg?y5fGRaEivw6J86J*3|4cR=NfWZC@UP==k z`m=dvk&vF@gSXu*zci;Y&Zd~oj|ihGq_gf25w8Gdb6>Bed5x50l0?eV<8Go;cQ%I^ z14=Gl&dBDquPGVvW#W3dME7lAY=g|dl*`_@IU=IJd^T^qdnq!KeUq3gkdaKS zKASJ=?hV2pmNT@TmGJ_Tl3uR#*?a>og+VQfcLcKeM(SUQjCeD0)3+I1L#WyEE%hD- z6XR=VDFCQ66f)|YS&@+iQF7m9lI#>{j1oP%DW7vwV=zaubV;T=fW4_VAeJJgD%s@# z%vVUsln!LNLW%>#CWaaAKQ7ts0L&U9}MifW2P2VQmrNv>57`kX64kA$T zamiUzhmq3aV-;DM@kx$2!a-+dI!fSeeVE_jkV>4O1`@7l*E<1md;|d-YV=1Ht;#H1 zg@f?|b0E%tm>{CTWmKHKpvutH2t|^7GJz`AN}KR?aPj)zrf-Y2By-G(cQZFVybqI= zYYa-3PyqdAF(4(21CRqu+9w0%(2T)fmNtR_HU-4|rw$}-@_<7OD^N1m099p6Ter?y zLd75-o4zem@M&8Hm5_GffWl#1N>hwv$^T<7J-3Wx90M|5z%$pNveGIWsIStN|>}EuSVz$2C9={T0Q)Ih($Ptr~R@ z>0}2eI9Z5-HcQqS0MVJSto>E=^r~bu12p%>kSnva1q2F?+_2^(vk^e+E@SN!jah&} zT6Awkv}XZ^sSzjc`GKn-JuawdvO^G4WKukdL=uvuPm7yyy(#gH4y;1a zzyc({EI{{VL<2ICu-w1|#j_~Dd^RtmJWWUw#Iq(qmxZtL5dA|mJ^?x4M4K0IwV@)5 zC#(QLWe=tt(Fz1?Y1VNF=I$<@SOAM4R?w5$4hIifUJAl8 zK>!5`B4e1ge_T;KA_D=i)i}7n=1iCcMEli{_Xd4Cu#BQ5Xeclr2#BT?5NIGvWteD0 zLn@$A%(n`}(^a722p;*soQh{G%)tpUw3=vH1PuV3>bA}jSQz6WD3t4>CeW0A5jkp7(Nh9)kTx~HP%Qd!00tRw zcGmd1g-su3K=kGS0eCa+pn!Pv1OjDLTAv$^y(*q60SZr0fnw1kYhw>44dsZ^6gmnS21Q?&l~1gQhzF;=$Yy5vhM9OU-@`B_!Dbyo+_d0h z0K=&00wu|@f30|k+{-zKpUleIxFui66&*=H%o#j+0?mp;cyiHA1O)I13Q8e*od8vL zn0OF~*u3M!gHhmoHjnbUe@{_7{sP$5z=J2SDQSZs`U>?pJkDTgY`RG^C{yAP47-Rt z?NM%?z?(7&aa(Q~$6-89V4}u~zI9vxFOzgp#cmrHaHeh?758?H_NET%i+OpS2G0+` zcWAIP;M0tWzFy-zJ+MX%dFKc@XYSkx=S;)oT_a@R?jGTs@d3R@L-D=14!u`HvE)7! z=?xl6sRr~HG!)|Zci(^GC>hdxlSYERlAY?!8V1S~(mSt#phy9H%Lo|a3A|O~ASekp z_%CYQ+|b=ODvWqf1BMO1g8q`0Y6GrSsOfLhFmGybne5>EM_`Hs+2L>3a8M9@Ljbe! z%Nh!5*P~)UdZ+_PweiuM3il2z)utORe?`M87feaNs$p|e!>J=oLl;Ik&`p~r5shCD zYBaAnd-|Ok9VM@Tv?*4^uW2NxGi%?kk8uI~jS(;mHt!nYx`FODN5IhE-aW#Z06sJV zhF#`+G|q4OZrb`S4J@ukBPcfcdq=bLOT->n|)g2;5etEl6*$v;F5)5Guvl15cJ>1Yu$AA_y`Okj5_!U4TkPr zTP*tLG|riL39lw2`FV|m<%Esbz_S&mpeHq!%N5u!Xl&=Z2dREhB~6L9fB^iG2120< zKS%J(Iv6FH zHbeLRhQ`IYEe(GAn;Hi8Jf0f9rEx_l@-rHhLf~^BPKUm&p?*E8c>5~8K>{l_}_-4VL?lv=mXj=}e`H=Dbb%V@;yyM(RJ&Ffc6@rl@S5#haLqKht>->FV6^xPO=R$HFC2wqY5!6apy}yl2>z7@;`kT_$iLRe z$i<7+S0>KVEQW<^XD|C3O$^L9l#er-`(Z_UEFz!Kgx2`|E%DmQC5 z%&Bc{+eK6+xoLS(bBiVdP14Rb4~X2ViI5eZw@_Gy+cX@881{s@UF9HXJ|_1%9V?Tr z(eKbmF!UMk+a*1dMr-8PPm~y(#NVljti^mM{+vdkVS9L_bC*W<7V)~K#i9I`%%*32 zKG=ZVqop3)tggVizE?x}g&_prpn+gah|0v$`s)`ov@k`Q49~0HsL|ntk2h%$&D^Z* zZ`R1h8<$2+Uh~^b=QX%6#VqRMI=w|@VMe1GeXGXBw%Vi#r9Y(qMNOarZ-ynMe4h%E z#uE8UD!FDhSJwz{8^zIA4E5mtQ8sn#rSWzR1;@7yO!1dBEVC^f;SW5vAJA|ImxE!M z`3{Yuvs-vRvp>N76-}VZk`&IU$^?!lNJ*08e zeqA=-qp`SMxDt!=TO*tw`r5o#gW=N=54rEtK+5Udgc0if8l1vX2^=%2*MC4`!)!QQ z{C-dqAop{06Q|@qq|w-5pzGb7^G^w^%I&zDD4{M z`IA#vcDDM|IEz*Wey`*)4Tm`j6&u_C(;5o4w;uhBih6vcw)G}Y;Y~am>_0mu0*$&V z^7xntWU4J}0{sPx@PsB&c*7Ih=QJ$bU}7ctyvBwLN6bE{v5;B3@x$;JGmEw)~ZjQAEwl)M5S{0csn(w-Zz z6nkgMW)Z0vKo-%4abqvw0SIrjcc4@b0HMEgls4&J7+`f)K&T>5!-8}<2gxX-iqT38 zfyvUYZo~k?kY16+j;!HoRfAU=eOGjxht%q@c9KKk0Y;e%&)qNhp3J_Q(IDf|8yoYo z|FG1UzK+_8-=CB!3Yp4-c3^61T9t<;LQd51I%-q?rlbU{9EU8H-hspKXi6gtmk^G?4 zFafQ%PQGe;*Wa*x1bOM&ARO+rrF8|bm&ANW$r21b!7wJ}6gh9MZs5^BPE*P%vg=u% zm&VY*Dk%~b%AYuL-PX~gC$pXHU9x41JryVYA%7Lt!oOBEAn?)7&m%2+WUnOO>>Q&t z!}C(*t@8P?o$HQo{rvVx{D^oFdgUAC_U`dxJJ+Ga4^1k>BBuHJpG=}Twytd)z%SiUr~lA9%2YNx5fMnWdwX>?UpC&;iT-h*DrN}W|? zS)7)9ennknhsh5KkSa@K(rS*fh8=3A;bl4{|M{_kX`ztSU}!|1VUODc}y0 zx_W2TtFP)3)%#Ahb>zD3-452<1jm%>y4_=8%pb|d&i3wALtM`a=DKc1Cls!>xTs!z zReJ3BF4wZ&c+HWM+ear z?b;-~Od?okR{R39G_V4e@a9FDk$}l_h+>L$Bo!Pmv>A1dfYM|HWaaFP57DJ%4PeWh zM?Pu20#FyZS{kYWT9!1NOL10!89wK)RcsM;Ms_L23M2;?PwD+{_8OH2dw{)*yF5xk zR?0esV=HV1v9;qj0GZ~|oa#kV6`)+*T{J^YkOmlF>j<7}n>55^X_U8pZ7Ox1PijKAKNZ`` zv`v{U;dy+_tfW63?K6(z@R+0<9SWl-Ci;(~C|tKd^!uY|Y1bEq9m8H!=o-d|DKjW| zK_MI4qGJ2=_eK*=47wg*rnT}>(nS<*4vr?=cdPNzg?o%IzWCycQlKnXPwM%Ajjbbq z@s8HVlKugcWi)w7Jsud#jMUeGnMbu*=fPR(>%gsCjFY-LfhG+FkUBbWg{fT@>s=i= z2gYgX*w&}rOT?7{K&xYxwEPAVwF=YIn!WQgljbZ)sz_s)DLI0k6dDc4 zWftKlrFdw-lx96>krWLLu*w-y5ouu!kSXJ+>fd&kqM&ssW=@KKh7<;Mr)HI6paEC0 z@3pj92PRzmkpiFrQ`b2x9I6Nu8FTl;g0TSTtOA(*<9|c}eYaeej5&~8(osJurd3WG z9|7xUNO=S++kWtp$A|L3Y%h-z<;rX?j}+yBIb0qq%667V@!G=j!cZP8pv?Fb0!$6q zcJhExLc=YxSw_==v^a2e+13kZ*D*PHv?$vUVoKU>KuR0Vc$>42yR_ecewJ-aX=Ns- zEdCf>9j&DHrrmUTytwgI*B&K%pEMc`(Cw3iO2Y%8Zg;-DbN!8Uq$#N-q2=*tcbC$X z^oT&WI}yyT0qa2cx?ZO0d1?zJawz@DJzxIEh2xP9`(4Z9)7dKSu~V_5*( z68Hp!6EsP2fLmU5XtJGwcM}$DQp&{JdJ#@Qr15YiKW!E97ES7Sm*Td}X-A^>0Dt1h zb(76m+0KdGW7qt=dG$6sA&9M$p?7BM7a6}ICXrFynxd*V+iqbc9x_ICnKLho;~I3Xc9%9$okVI~Y)}q)Lg@v?Lx95Af0s1tbN8b|jZZDx{=! zy*m#&Ya%T5oZgeQO+(C5N`8_=rvoG-<$UEU2Xs*?#Xtrc3ZtpgS0qhakvNbu$$GRR zb0BA;EomSGZfA2B!jp+jm!cCevEA2nF&v4Jfuy$lZqF6!e_GYuqI?TMEveZX%d96MA}nabulTa`4V za&&AWWf78r7d*f?A!Q4g;PE3>BrprU8zEI7FlC5_C5>@)(REsz8Xx zAl1n#T^ibrNww3{@LJ8`a)S~fjL3L)5bvUYOw15g6tP8(N!44v^>@8lD6*%YKU zh;g3A_Qf;?9YOl&L6OiErhX!H2C0RI>7%v|@+3`!m&ni$28t{73wQ#&WbQvAF}Am^`pzQwMeq z4=vLOBX#7CEzNonM;;>Jk}+1A$~%d~?V~^N$L=L!!pvqn z*KVIYMowlU$yUd9cG!VV8ZrL`e?8_vG;uMQ23Jr~ z(-`EY^SfKre0yUxw*y*Xcg$$j+0jH?Tu9@DEZOt z#fcla`p2r11?E4u-APQ;#(3-a@gvu69ordb{odYKE%Wy};jV}6jn+0)U8v=;Y6ivb zRcddno|_xDwcM6tRlR=l*zWdh>&SJl**Zxs zzk7R1WgC~$R%H>nWIeo!AdTNW?rmCkxHN+IcULg1oNvk>}V|b&hg-lmX8*j!rdr_zr*$HK(uU!+@ndSR; zYK3-Uc);8`lNx8rn7^o2?E%pu^Pa`jD(=K)E-K^2rTJB>{h;*Vt7`4{a*ZF>>9mIM zb(H5OVZk9&QhZe~sGPJOU!_S6 z@|ThcdYZ-s88UqyM&0-p>0#6?sq@)*KkllH@|FdmX}U#1v#P-lP17rq>0(7p(<>4R zEi_G&NXAy+n|=6JvK7VW!jc`PsbCifqeFNr@-S^?`~AVRp@GT>!R7NBgWB=&`(gBv zrD1?LbYX*Rq;F~lUB|Ce@9f+WCS=vGw_uiq12K;5F`+^HItC|f(IJ*fHlZmXdoX5g z)U997Y6w+=l`^3@K(uN&GGaHWOz23fIc>vp9uvCLLCNS9nAr(^%CEOkp3Td`l=ZNR zCUh;o-kPGxBPiogbi(lL*I^S}&=KE+QQ5CUbhg$ub=8m)!-T=vuXh85 z(egzR7&TtSSJ*u#v}>Q|pjnh}MR%xL<(zkYNZy883pLx43g1NbovY z-YE>&5M+OEO6^s~WtMU-Z@vbJ``VeP2>FqB1p|?=AeHw71DKap{i`v1Q!3P%xrfVA z)L!zwVDKUQ!a!zH)vlXtz9607n^e8Eh=xO@YunyIX2ZO!ZF&bd_lU+DH}Hs4CupummRvKgH2FYw%DBL? zi{(IW$_UGHQMow~ROji{%z_{cj|1r`jWPHvy^=JLSEuaNuV-a)@ayWdy(%5eEL;%U z7<^luxmTsLvRx6KGV5@$OS>wnPU5RyjV*+>>>MrCnf!ocl;=E(_VS{0`K1aCb^VH_ zfCzEH&2!4ifQw9D?I!2quKwP?4a~W|w3ir{{48*5Q za9rxeI#in(YM68j=Q1C!T(&&;ap{82WyEn;8a$7u4g8$#A{ypca@4=fCt=XTdEgL3 z77ceOb%+6LLD3ZtH`d@s4$)7;;D&OCXm*gJVGSjxEEu`wp_4&ZLAgmw92N{?846BX z>aZXVVczuAgSES1onq z!9+VPRBL(WKz*=$>T(Fa9bUaq>z)$qRZCsw%p43L_;qzbGjpxq>>o)`moLPIu(xV! zL!n@y(UnYHp#(Z4tu9Jtt~CKvS07Mcj$#O^>kKGXA74#fSj-&sG>&GjE+Qb88(?&A zqZt{R)kVY1b$UIeE8spZnq}j$9foskCv_zq@~N86Yrjs0-@H&&zTPNXlV_bvlKKIF z5AI?|Q->!eP^s0P0!jC8>8pwgs53Qt)T?z5D7d}n8E^m8`2gvtisG!^Y%yX#=35`L zR)jhWlRgoEOgAQuRv=CD-7}ASdwY8~XiI5Gon-p8w_5HLg5}k1ZR;p+>#Q)XDdCzd zjfAR3Tq^3CvJ5ZsszqZ_wwkHR!Dw%CQ1yf9+;aF4RYMpKt)bRaW@Frz3^Jltjx(`! zN&hC*6u8T^T6dgs7qm{Dtr#{Ne4kmZYKGxnb6xYTYIW9Pfu>v$Q714KNv)&hojQXt z-1RKA=^3Vh5Ie6ri7^h3hSBh<&SFdlLzy~}F`Jlp{1S7$qx11CgZMd9>b?OH6d<~NI(rKPpH5oUf?r7gZFf`w7{ zzAQ1YMM^;`a86~sHXC(Y*){Y3Is1|=*>&Z*kvw=~kNkXP>*-0d`m1}7j-K2uBnf8n z7L(usky%xDLVtkQve)v^UFp;O2mTHB{sJGZXwWe0U=yVYM|-1*2t))xG+Y6k=_hhmvC3 zdzUGTcV|9v%u0hjdmzyxbw+5gUzyg_oA|R+7bX5RipUXLEPK4wPB*hjL_%6ydHato z<)3d>V;;^BV)2aMwd&tCS5vg@-?WgTQ2(YTsWog@eM^LOTur-HI{$4bPhnhj4$HV+ zPuT zw*Q{ZqN<;=aE5E!YoU1@rluRW7)Sr3<5rTI%ow=8A+IJkhK>V8UG7xPzcTI`WH(XG z)EPu)T)C)PQpcz-{kY1ct(M3!j1O~hX|)uNVO`9`YdT@n?$)nb+Q!J@w$EC^#<=H^ zUhvV4J+*X=k@O~Ox+N7FLU{Qy=`+r?w2VuP@6gtgF$T%+Nfux&`C^<~tS4EE5!Cz> zLrK5s0{&XMm5`~=wKR*7vklw4rgNFK9E-7Zt>I|IC~Bz{1LxayyUV3vwM>d}_kkM8 z53{hKY8Qern1r?Pq#!xeC>2P!HW-tckiR>>c zPK{wIcRlM^yBv(6wCyUb5PXLUUA()FYj+!i{2Hm<1J1>glETaO7x_o1Y=Zk8 zyyoJ$^saco@pn+Uyq|#;p}F_35L%1fx{I05+U(y&1TJ1CP_cqvBRq{UQqCN&5&k`d z=F++G$&LR$#CsRq);nDU{{w_QuZ|L{ZMAw1t@bDa%R8aRpT(2>Au2oGn)gQt6mOsZ zV+6{xxj#X$**@>2`lkpy4m<3hA?!D9Wrg@?K(|Hyr?TJqb5uiQkk$%LEoEVCP=w$1(z_aSH*uR1l z<7ww*Z|`|L{icyXJM+^Z{A)xydmUJDsQgoe4sjSp^gnAt$3gqg5!y@>UrWkH_%9H$ zw|DkT zVfQ{u4#sVUvlVGGpHyZroV5s;_v}+P$OJfn5yIGAm(QFNG6T+Kgc016X7_MLBVd~B zZD%{@7q8$1M@Zfz{|qNN{M$OElW^diJguca8(-dj54C#o+r>_km?M)w!9o zV4+@5o^a!Q&SgW@(y!bg_lHR7P_HMypC>|aL0~31Roq`GH#H9AF0K-W! zfj!v>c?=d9oEp=3?oZn=-B$Ud11HEdI6JzfrFfhJPLdO0ot<0auz=I$MEP>F{*{(~ zX`hu`PF9+kg{(ihueu3r_W8>74xRwsXKae^S|d9$W@UyzzWpc2^w1g@Hu7 zPW_Gr*9rE0TddFF4lWr`ZS=syc5-fViwtqN5I~HMTx%RJBo>Kya5+F7_`G|8>H7oA zBbQIJ_wv;yxF&G&6y}@Leud{Q9At=G_-;}DAV*|ETI)YZ5*eHpst+;575Zje^-W}wO%!<`)&*LDA4F|a+vpCyS$90f6GJc=S9;A)T=q*2_9BiM5`9a3` z$V)bPkU26>J9CgWGIW-S=s}*y(8ny(=yB|Ww2`?q`5w>PV&^_u+d=xsw5wfLbG9@a zEArHXRFav4D<+c#_aLieELAdzG=yKr{OMZSBGPckva&4Ub*vEucI zDUQ=$V&7eGg4=FgeE94je`FdxsJMmOJnOS+2YDlNPEhyK1darHm+`>G0QpoL6*n_x~}9#*8u89xr5Y@Iaj}IG_9xqqjF;4ASFz! zan78Bj8Hf%aC-^-ve~*#<8_q$;UF{oCOb|M4)R0hPOf{>dGbMG$ndL?t4j`&L&0*V zX0Z&(jt`Q>*FtA^PSLtiM@68XSvh{5YbCk|6XU`A9BQgdKZ#6oXfcxJH58Ono!balS;5ekH{ z_DoJ>`{INEg~Eh!-ZP+7m_d18TDUuw$rrbNOfE#Ynk6lpKmlD%$Bk;0e8i``xT*9; z4Wz=yUt!2JDNELzhN7XUN) zg4*4J8|3E>68*D-jwixSDRYU32jYU-glG*mlKI^SPtY zb0~Q1?n%2x7EA5!#^pk{G2G$T~Y$H%h(6;#c*P&(6y7~0!}9t>+Ld`*In!3d{Sw5GmX8W z3zFC{;FMA+F|UV{NyX|**IYK7M7|9E+HCp^reE(|F0_1xjzbKu(C``CxoNT;txN}# zVm-9~arscpQFvR(QE+3#nQeF)+ZU)5zF1zE9%OP2r5PE1yc#_Y2qhZvZW=rJod6{n z;nbjl109KSk~pCoxxY-NeV2ovn-ViFm(z1LNhlNnC-a38QLO9qrEn+;0f!*}G#UgE zG%tj1R7#C&T--hAMg?!q^h=u2(1{8V!-M&fma$~~ZM=LEt^!7>(j8(w}w>?AafXi&cIGrA@%+MN-{g9?O+pUmoX+^}6x`7uTfpUefdLjtjrf z<1nTtMB#dx6wOw9dQH!E!nHJ|n3J8#Kmr%i&UUu=Ll zqaTOyA!5~$!|&x{(L|x+Jky_8-q2ePQy5!L##<6~>l`-XlhMHRFrsa^SRY>1 z)j(s9l+|}s2kpCN0Yj^gB>pua5=i+U90JSI^coBgaKh52=RsyKu;b^@UM^vW{(J7_ zVWC4Wrv{-6sl=sUc>7M;SPTV73?JWchY}-X=dB5LTWMunmshdx2y~M*?;>ekS0V~~ zcoqwG7-12pI2Y(EPHyhoZJof$j-YB7N;iwroprR1%*}>MV#;+Kue#?R>W9I%rMHuj zycOz*(R30bTpi5`kV8&^4cT0B{$pKI3+nMun9Rm;MGIzml zolMu;)y_Td2;#=Ui32m}_!v*NXBS3E-QfIzNhD~t`Bg^%R|aPi%%c-EH0c%fz?lT& zrw40;QwV0rLF<)wC~*t9WpD<;JkxKJ>6XnKwKzD1h?K$%-~=M#=^qj|2+koQ+H}G3 zwPR$a!h=(Y$fFAkI9hK{R$K?1K}1@rE?AlA!KnnZ!gSjD*V$ahZqxT0;G}{{+1lvo zLUnF%V!^biA#u4ZML5S`63w?=5+41@G~NA4qmsf z!)XSyOwZ=L8D!Rpg0rM0+|8T#-lfU&>J<^Eik- zGOy}0kHZ;{_m9a_DD=x%Eb3U0!nlqjv-IAFV>t?qd>@B{o3~^(vzXYiIEBvV{4US* zCy`C_SeU}&qr`EV+A2rW7giR@#~FguNM!b2bc$YlQ5N!X&X5X;=JTy$j?)M!hPG3( zxL^`-A3io570(4jtGR#RPvnrS{isO#-N1E2)4LCJl03yUXlHjiNblUxUF4SvG_Ly~ zww#p;&FVhnMnDrH;JT8*`qxeO7eRBORtKZ*3|a)q!rxXIafhaG;x~V`bG%dL7jQXi z*v6Asc_P4U@;wN+ayyIB z&G8?tsUKImB9UoFc28|v>0$)U2$^)$LLr5h9qC9ELh>)$={4w&-L}Ssl5#jU$;uz> z;An^nhgV3txIOY{oC+uY-#r?vg7z<4@7=QKW{#!-OT8~iM`M?gmXDY-;aTTUeS~T* zmBD&_%5kZScf+WcIYN7oV%L!`q2ne)TVOc7259EaZnx;5pe-=x;?|Jy&<+^y?U!`5 z8MFgM%Sj{d0JMN{apS33=z?Bi{s`qR*tC2Dr7qYT@5kgeL!n<*-`rxta^@k+cCf_> zD>r_@785p&<$USQVY}DcV*QFZ9L@* z4TaF-9IU5c!#aXaLVQu{sR8#>kc9=qay`zX#a7Uoh3Zm|vDeHuq6KZ)U z5>%eR&o->K-3=y^p7EB@+8{luWZ$7}`caBwp+IRq5L?y!K%*z`E~5;1*y0D?<#}5< zqxx_|cRhq^uT}YX?Q3fD&XfP0dQD48@(Tp&=%sJ}1wz=C-ztPNA(-yc+Jd}M3W}Qw z<_k{s_bnV(1n&KPM}Q-X2r+(#CL~$EXal+vfva&YL)j-t= zB{t73v@ud@f(i_`_FZL!bw&L3wWvHyjQ>f~G&NP?CgPLmM6T%66&WM8lUfd)^d)9NKJW{Ezay+^!G8vBw6r~m#+J#Gy!g1+8f zq91|U6m<4bP@mWC1HY6RJllrh+OMX$cZ8(}N^UJNlfYNAh6A(K-I}v~k;c|8Wma6; z?Ngh)D~=|UaEvI<+kW(Mb9c?+6gx>;eo*ry_wd#fKhw&h4cp=^AD@ipNvowQp8th! zdW+Xl;d*=&3t(5UyNUQ~jv}HLnl{q0&)Dvo$B2aacD*>K|M+SSW9F*_X>WxdH{zB9 zk<6CSa+-<3KqLy@wWK!G=7DD&lPKnYw zmJd9mwj{ncgWMu}+HKf+dUtOCSwN=07DIsz5kkW|~wZd4aJjNE9hT3DWec^kG zMyJc9P>0Ou+;uTB2B8WWyts9wHCS#sR3pP__iH+|4K>N|s2He2M(P|AXi#v{xs4WE zWTp; z=6}KQ-~li)2FJI6fL<9#PnyN0Fq9P0&r2ICukG%o;7mYw`YEn3R&VN$*u_n>YR+$> z&YcWqG|iy$iF37Ar|0j1lnvv1yEa`a!hwM*U_v@abXb0?6;jcSE{mWkf&j~q4(4DA z-4zx3WM8wV2Ua8n6FS~+16>srO>QTb4P8}&$HJkfB6JbVegc7XHOZ!lu3T$pk#CJ}g zbcSt7=!?-md$2Jy0GeCE;1n}qGZ;#8;n4+~FkY{=AL;OKt8Ox*_g3zIfsHBfCN#9@ zG=}GKZJ#Mc{Myu-h)!*X(uwF8#^IQY;FRWrv1StbMGtuaFUwoco$syR=HTT03N$!r zr@Fu|L47#XP{y~~KxQ;b{WWNd8s(nwPX791!6$Uo6PA2}rxX|ozq>A*{lX&&37ufG z;()XnH_7A}n4ZF9z5qJUxU&=oI;}7%4s_Nqu+<8v%We86q-qj$T53;T0(INdJCrSI z5nzL2j6z#GF9o-CU$89#5ai(9wMh=K(e%1ybgsw@Cg+~$U8QZ*#S37mCZby~MFjAx2Ql13QNi`T9bQqe-bqnpZKlBLwYee6c-ss>1Qi+5{?P&3> z+EF;Qzb%O<2%0-WB`I8u9I8m6r2I5h0#<8wgklMyO6x=i) zQEav^Fd5kv^Ex>?2|sNYYkJ*jhoVko%r-nb|5VbDrA1osW?uP#Pf;IG^A?G6HBmtV z3Qr{3vsqAp$`ggJeVg4Zk*h@#%xKuc^-#y!1<5p8dOv;QT9(z`dKWj(0(qO%pVrYD z<(zz8Q|Tw8KaxNva$DRmL|+ZGm+?)>Rcts7ZXQW+m_{^HlR;SSlWec|%mvW0GmPbWbwE2Gtf6y9b*3Qj732BhFZ z_|Se7-ef+C%_@TCqiBse&}#K+WwABc*HHt~GO-p+WP2moRK${RfJP?5*udcsMdKnOKu!>%- zo@E3sR-r`*1uj;>Y4`vKYh*aLN|$Xni41Cuq4CES6fPr^%Aj<8`$D`AjScmorI}k7 z_-yj=#G(tE94U(b!+@9wOb4jdR)ClYnH)cm5#h=h0nCq}?Z55_eX-M`lT2WKgq(il zU=q_DV1a~Qz5Jg>!JWjaXF^a|@91Qe%kK}NxE`^oeiYdgIJN>s_AbcHz~VDeP^V&_ z^bZ}1=bfzTOMxhscVRR4^YSEXyeN=&Vf#7Glu`Wdf*gXqnpKiZ6uW7d_--3za*P7E zC^RBbAJBZeXV6EPfDsPHBU6aeFN%geKdnId zl^7EW(h16ca0HLsncy22Bn8|mTtTPH%Rnn=qch!?dYko_DsZb2d%AgbE>OhMh!j|X zlw-k-GgB!zt`Gv}YT{ngX2I#+)HV&~;>(M&pa5g}vGG`d?%dpP!se73E8LxF-DMc% zVo%s!!mhJfn$kG}e+d_FS9(>I=NMS&?z~O*t`CXAgpQ!uI-tt=kbAS-1l_c~UZBAR zeUkzTPQbazP|*Tjy*+PVVpD+Rwl6mqOq=IO*xoLa4VpY3G@VLsbv4o!`t5t@@r;7A zR2tgRG*YAyv?KO*)h;6Wc}sgtw~_vw-ezx2cl_U9Ie{)ZR__N!S%gy+FS|NGm-nRE z@zL?)99ml@Rq_9ZvQN#8lsnD}X*9Rg^mIA(;@xFDjnTxQ!E2LSZA{@Qlz={&2qtml zjYX(0vkBzmBnLzRo`C(VK-dOCwswxNZ9OC8V6Nlz%Dxr!$uO4u30-(gcZV|r>V!(q z488RkjG|lz&t6g`zlBa!#Y&W-wLpJPl;*xW_TfN3 z+xFvhgw-;k)CsqE*KLcUp-2)s^$!YUXuDXGt(LHDlUG7|yWWmBr5VOH4KYSasf{LB zGU7ifAnFHr5+IOwNujZvBHE$QhixSSn=ELP%4h2n7_=sW(;^@=ZBo)ee>=DhU|lU1 z8$}2fj3Shd_r)LF{}@HaF6fG3qe^)RL)I9xg+uw}8g#*ty9=dQP>LU3P^ENmq}AyX zwsCtuL0jz5FtW}1sLZtE30ept<7rsv_V{0BbN>b1C;V|waqXwy{(}u~O6ujS}1yepDd}D_e9LB;5-`b!B*2@hsI-5KNSS~N1NuprEJi?=6 z0n6nDG?fh2%p*K`La=Tgv5kMiBfL0W2OXjaJfK0wf#CZo|@9-Yi&)IlABsA(6$EadGyxc ztnjubE4Zo6iaj*X)AY2QDVgM_Z1Oz@HFXQVr#EZq<>2&7xi(G&?=2lvd8nc~Vr-aK z)39e&adD?ot;vczoX<#cdgt>&Yr0F6j$T%OAXNoK^_URaQtSjChjH$${49Z8;G*eQkU3jE z8_G@uc40@+1nIc>-Nnqaog$&CVd?^DfNNaWB(4JXyF@qjeMit2AGWLcNlzz2F?^dl&dP08>11QiTeA|Vf!%eLRoS;@6%Z|~Zr0yD zZ_QdDA`MshA^X;>1L7@DA!Ud+q$|5***7 zc#6lBYF#X_vwb#`m}di;p2=2pZ4zIUEypt>p|%^YAe?Q8=-Q6B0!^2n&eHVSuDAkC z*NF!Gfm_=dC-81KH(m8#pySPpbjt^uWKE$3$6NkkKbdqn7gjAdOG&gPo9n6N5AW+a zO;6ppTy$G%ZNR+e8Ea%ePc3P9PoY_!x4IF&mNLAjMP=6Vh4+l2Lp9g>o@7cn)Y66b zw5LU!O)XV;&oCqh)>3Wxui%hvmbOq^27II>OQ(Z4B0La`Q{WRQi#)+G*HQE{C*OR!5i7*||3}JS`E|RA_d-^1HOtm{8*gDihD=bsae{8pV#kPtL3qg^G9C$l@V%vtjv0^o zO!%{v!(i!T3+gLBdq(#NaMO|1(?7#SHwq!UC)`=D-$s_tHOq5uTsN|R#`cz;eq$^e z1&j@Lr3+PMo7gWZD}ZFvjP|X-BwC$f*J2=*yi|d;aLCS5muVR zz5eb9OLE-}gx_vql$xl`gGo4crq{+fp_5gJ+9CvjIkFc0{GFqg6rSx@0Lx>MmlxuV z#=i^Dq#pVw)f(LsK4srWfs9Kx-W$Asmqd~Z=RRc4Q7q#s7V8H&g;p?8P|LMh&(FM? zRmKjAZ;zzhNEGc7YYnD*692~ri$Y%_X^N7oLP0RGCV$IHLZNWSc$CF2T5M-pu3PY< zbm=JCv9h=?n;WQd87e5~r52KkcC4eo$CdT=9)|*od#RSybx)CiqFy3&%Przj=u7yQ zHIiaAi6lDPlMZu&IkY8X0~RU%B-4DGHQ1MWq2QZX-Ptd@7NRK3k%k4>IK9mTGH**;fTyDeOewZy-qYgUNo0p6b(z463Pr%o znx1Li!_}b3wj zLSN>sPxRx3D?+g^6ZR88CZZsiiP}OIM%oUKqG6_zT337i%rE3}l_-=IywP{G`_Re) zBMM=ev_9n+$aSI6m1*?;7ri~b+Aioe2Nc9IG0Nq2?Sga;MYGJ?D`I>0W8RaEVp}dD z*6g|`w@6=6e9J`gH1Ty{6x}l8Ata&*mr3!#XcX8odRk>=?mLk3X7u``lWtZq3TFl9 zb?wX~Izpi=GiDox9A8i%Q(e$Cl}#@slj|=z4eumBQb_MxF@r_XOsir_^kgWKiT@(C zTXUs-itEAeJ8ImX)Ur{ZSlYD0^Zh+w0pjm=g`+5@g_Bx7@vNN91%Y7o!QZ)D1+wLCwi(*ygeBN{@ITwISnJc?^6y%Q=OYnCo5vbSVW~zGbPD2Us&Pj|k>{mf$a%&U5VVe2)FGk3 z+sVc)J7`gp>L^xO(2C|hF#j6JI8I%D4`4K;l(FRZF}zs+uv7HJfABHR=IHu@bGpjt zp8)#9l;Tj{t?nglLVSe+-}xDcYX^=svCaQ-BQJ%PyVyvjc3A z#{4;gdOFf}dH8bYPD7(sxLRTog%7o;`&{BDZ z^Z5zx0a_l&_&CN;N|n(Mwu}<1OnPU}D7(tE2XjRURwnHY7v)!(6FNCXffB2XerJ;? zvC8slUcSnINu(y$C9=kn;ceg{!z5&o1xeJy3}lfdV^c~I`?Sy!WGMzwz8&tv{W0_f&%h7(4+1ZzIm5!noWE9dB{ae>XG9>GP?q*uNHPhrI zM?zIIx^vg7o9Ry!>jXDqzFp~znZAjJTjKk)sR#}BVSDxo2-AA`6|kLd9!X3{-7Xe>O`q!*uJoq9{#NN>UNLl)dFRK-BgFHvLY*}e3u5Ldx(QH*x# z^EQ7pOCI!b65?@t@PMMD_uJLX=gIb)?DfP0iV1e+gHT-lfnkjEIqkB=q6xQ|PIu%- zG%$R98kg-sFkdl+e^jxWx#b7rbucU66x}`1D`vtt@OSi2RVq+>I~cv(pq)2+!|Gyp zCU2%lwt{V^cXQYVZ_acqo_l~hu-Y%=;7_`Uhh5L?NM&@?GhPmk+aC3suMxs{KG>R# z{_EGT)pth4S;f=B@eP3nMtGSlop#jwkl)_k-u~a$uPC7%QZ+fp{x4uY!ph={MCrG; zE}S5TR}jYeID!}O-U=MqL;?5q=n)_htLcB*y!;n_vHf;l<^BOY)Dp?gomsZ&M;g|j z*aT7YhHn#PgEqF^#~MFvXWf*H&GdEQ7AW@&U2q+a1V0`Cnn&M?ec= zG(z)!Z`4X!G?IN4AL9)SKY25E7tR2DzvdT3QH}mY*79tgtnOSt0CSWr@o4P$(`N2w zoVIjr6mm2E#9KC++fDb^Zi|x?^Pm}vcYVU5*`)4<*-p3hmEOf=|3FR{4cSQQ$F(!Q z-|>)(h&)QD)}Og5R83l-q=|uDCZqq`k;+OAU6D)q0G*-Z%8<~~fSGl(JyKl)$5n9D zB<^i6J|r|MI-_GlP}%gqUOWT+wdYQv!uRlPoTpJIL~WHcW#p&DU+LY9o458w10pJZ z*iPP=zKh3hkx2}jed(rKZ+BTO3KQ$oDIU9R+_+RQdOMAG>tDC4n~!6zlcW|Yp!fP< z8Zt$`PBkuwqfCg@>8*D+y?O!1pve{6CdiwFan|SN{|4!Y{%_E)=*`k<9cp!kZ+G12Z$r%O#}ecE*!=TRJMndCp5VOE}UC}%$?BP z@QGH7;uRRkycs;MK@Zd+yCx_#IR0Bi#!T4RKC=>&UXV2t;c8xFl!>>lnIb`Ht~JX2 zDgV7Dx`j9KRY zX~D(>{QuU#BsDsan+86KC^iR;$2{PP5m&b2+l}qa^>rq>cFsNN!5=iRdwcKBo9Vjk z`ZT*^uhH9kciv3bZGTJJm&DrABxiYp7g$JMut1Hwg)ESl^n3mPk2Zr*o~k_eRNp#P z)ivCE->URu{ccnM4si8gFp?TDFZRf@|U2Ql<&yY!kD6t zh9BF)J8n%)2jHlJBkzQeIW&)({YC{y9N@oB-O;=tcVtKb^sB0lnF75P@ z@5{VCo3T^B?;Gc?g>P=V-krKjewGRS7p^t=@%srtG!b^6a zkV8fBGo>3O<7fKXR-b+Ui*W~}3BZW1AIL#S#?OR~b&y?}0$Tv9UOF~s`mP^nd6qs5 zV!~#4dIQ(&&J7(+NS_8J^j-|RLtfeP6 z%iQCO9fu0^40%wj#xf0*XvSiWqN$@TMp>CYe-h#N=ExR5F;DmhYiT))LcpmXc7CnZ&fUJI0c%Bc_FGT3%?$Jazz;2HNSlfhPc2u^-Mb1IDmIrL9ifPCYb(g-E%@E7!QrNgJL$4hl~+ zcJfk6+n+u1VohzwfRuJadn8=JvJ{5{1MaM}J&GBOcIub0vK}ODlx~9Ha1-?-ZJJV) zKd_YcOfmUjMsxLQly*&f1ovLrH|-HTW2DLmdj!uDsX#)E80`ZDvuw3efrJ|n?uk?= z;Rb}eA{9)y0pY$#l@o42Ag;w>mnta47>rrc!IY{g2r$-zR8c{Iu`XU^_=!kJ*2n7% z7=8-KBm1!oz{Q$&hVL<;K|6ZvJ9l7NE$`leg-=4CTwML;4t(91hmJ3){e*iMKw5+~ zCw*-b5A0TR$RI2r-<%=Cxi!-zF7f>n3qh;x$nJkqDG-jA7CK-0$r;#rG=ta9Pss(a zL3~RtfM>{0%?0q>5HDKCBSxJV`z3Vck4YPO0mnW1z5k!fK||)&oARH}MzB`?LNQA{6)OD@7>o*I&s&!LvFrq9N}5t2wZ%y94{zHDXxk=wd_H z&#Z-f5S(|Sv1vy%p&kBERXeB&h=x))+G)*nqU{}C({OopluheS0;Ci>;f4y`rK8>cH2_HONisVH@>wVL2)!&bY8<8zy&PwuGY zu2-%B@WR3E#$Y%V%+m8MaA)V|ek8nRNw@I$Nf($HN}!n*bHHn9cXmC(p3Iav&LANK zMo;}RuEXW+)KrF!cD0dCkX+3`8{-62Pm~7I)SG~Ys#ym*>DH9G!#xpBJ84aDPt7YzE+8^Xm?cMTpO1TvSesA>JZ=-nQ-+8pJA$>oAG>!p@SW-rsLvO z>S#ob@+y#rIX}~91{gEpBcF?Pau;;>CKn9tk%?-7DE>_*b>k{*d==esUpJyCs(qp; zSdjs~3RwGYt;Z+0b$+sRZ7^Y%XAOt!O#5u!=B+&$!gZFnka-F_6wNDN(;7ag4(s3q zk9rTLdbIAIp{Ae|2^V_vRFUG~`{cn*Y^~oBGIy$=C9kkK$Ink7aGaa&Ve%COv|er* zG_~#K=G?%^;HjbINSh>E9&lKji^Xl9%iw~pa4Kj*#~}DOf;1_CkXyPo1vPk^ zlc`>6k;T+NII;ypf%Kk7KtZt zh}5#?h@4K*7;1@gM!*FRY(h(&Gr;YhX+Iq$EP&7fbWcv<^YNj0}Nv!4HcN|F9F$*mrzhmJvj-A(X^AQ+jN064D--1Y5glc*E z9n^bUEnOcWNk`b8ma*TVB3ZT6{T}Ou)l&EoG<=n)tZfLVphqF^QJT zkFY2%s#nY3Z$Ux3TH1bxbjsB-_dDFFnV*~5l`z%P_dE2J3^&X)Es2jD`14RLfse!- zXoORIRIQfFN36fZ)p8|&Eu){nupu?2pFqM0sww>x=f+P>=%*+j#;OVZJZGkFY4d z4VLTdLQVI}96)$-p6U$%WP(Qz=N2TQ4s^k6$Xx(uRv9U#K_NaU{-NQj}x6nvL@r66h$v8a>3QQG1P z2dfDEo5fH}xgqv%WntYNP=EUKw@Xmo`TdW zJ(9S8zZi$I{)1vzFoJ(rj`g2_{$M$_b)TyJqbw-iGj*rv-iZEjK6J8UW7^o|{F8j} zlci57&rn$(_54rE!Q;|(9QyyWayXPgcboKoUXJ!E`xoWd;9>q{7MSn)RJLuy)csdk z*fYP<`LDCd*Z%a0wX^gH$VgN6-{hkQ(~MjAzs-l6afkkQ`DhfIuhjngd>nS!T*(3d zhcX-vXIQ8H<2`7H*Cf4K_|Npn)#f4vKDN2rOtbYx}!?Jgef z;yIlLp(_6SU3~ERw_Du)$6XvA;MvCW(!%wZ#+8x$pLcPBJBr*f?9%_rVna#xWx#iq z&P^L_s{VI519;-8_m_D7PdNjyj%D%%dj9X-9O~ZP+53NYvzYtYon`$0EFKt8)6KAW zkrNAhCz(zUeoDY%rT7F4TBDdnED)d2V_M%kub-Qh>_tp;y7=?*Q9dC5`T3YQ`2Pj@ zFutpRGvGV(ahRVBD*1(3NSAXzo2GSP!7s|fZG17ik=3OUesLBPd{c?vk^8O!$l!Ll zzoY=;Aip#Vvh5yvCUBKFD8DR=2U^?Ew+(#O;9CFX9vFY!*103}IJG0Q}0U-96lJMboWr4v0;d5ao<~nS=nG_4~8n{(G&E z+xi1#KrjT0X7mTkfIjH@LuELq;@yw4yVgdo;tyxBfSt6h!OQq>Uj9fH(0~1f{rtWx z4BO8i)u`#9AJc?M1}*=q9+5+QdoNE6yhngT<0P^#rXugAZ81m+=UZTK9fxaQb4AfS z7NiP0U+mb~d9A0}Kh99X04vY|*u6DYh<#Izr3}269E~NfRfhzT5tTPs0rdt^+Wk|X z0EHw_wCHIv!gTY2BjpteZr0vFU!KFMu+~+AyJmy4(fXRe`XK=Jk}5ak{{2l!nH&0(`_3~{mB4<* zmv*ra(qz~)G7dy8&58|q)0-=GTACjlz{`20q`fpzHuUUVC2}x;wHcfdWvo^ypmql< zlKG_6^GwQ-%qOL0(Isj-U*^7V;XQ~9xtV%=S*w0{dm62I#DSGWXTZD#Xz~o_3TkIR z!FO_fx6XW~Ae&jxV$a2S3uPLbB8abpo%nu1;iO%=7Y@} zViBedHo$B>)JUw2G_rzA;98&$jZ@YONRW*f=g@Q(@&~ zJ}2Ks8Q;$9<49pOL~4&XD5m=40v~hYv@0K8;)yoYbeHDT%t>ORe3T=G-U6E%MV;)- zHUytDo4VA`M2Z;c!24{LmZnMhAh+#x9ja+%@th{tQwvXS!(aF6RA6kbf$JTL-Eajb zW7_7S!$rxJ$19&g!1i3Bxi=FI6ZG88$orH!P6E5~DRY{dwKd~|bvd`SKf}t6b#_)e zj=kG2mK#2Brl%k2&=_(FINs$WQ#A=ET+EPFxl~m{a4ZvtzLCQNO)N?=!t3mG^iTU- zEjl?TlEZf%D7X%LZl+71*E)K}3pQpB2(>%5!rgtoNVdYb%mY-JY_<01v!~CIXbgo! zw3!C%;m!5YH=s=>K(uYtMAmeHRc?Lt(VzC-7v7)O%X^>xHs78$i0Jea`1wnp{GdR8Xtv~(qpMLMNLGrK9mK<~j z)BkbPx>O)x-#Tz`EZ#|bAeBov;xVQyq}mAwEJpN&Trx>2p0H=|nyu&B)~{13q*@9G zOdiJ#52>`mp2s^Z$m6(Cs8njfROMkW2YN8n=+45VdJjiTcINTpvU?LG+1aU7^x;SnFfzNH zc;A#Qjo0n89UrM4#BE_w8xQZOWX#g z8!D-|#2)LX!PZ&6Q=~Ig+SUT4ViN~aZ0CVga^iqRJFZ|r8yk}9PaH6+H!P%T6nhrI z)9oC$RG8w3$<9MbRVt2{?3N*^Sj7>Oc6_~B@R#r>-V#f7D~_1eTP9LHi#-zzXVK<% zi`utj+ihU7Thyd77e|u#^=P{$i4`!8xYb)OVm*u_F1v+RtdFth@`@BZze;_nSSjNs z2OOg<3$b9vo&|0fkjdlt@l+78aK;grY0E_{p>f2e9Y4NW-~@l-X&@HWIO0}sxro&@ zj<{4?E@G{XJr`KClJhmO;Km*s`?_?1#F`sNOtx!?Saaiu$?YXTtiy4{YP%qbWjT(R zY*!MoF2|lpa8kRa_Ov{Bgm#7>5G_%2hcD!Pv_P=gz?l)=u;H8r5()!3a)H~cC@qjfZ#T?6L>(tC6>;% zp&9MaJppk`+9^ANdehpe3a^1_=jsWFThh+b0W_Fp3e9K-=K;ZOXvgG$ur{=y9f>nN z^Vg2QfqtG6|D>IE0|e9dly^7o)20t8yQ~dtu162m&b0yRZXqXJigFu#Dly+{- z^sGGXj2h^#eZ91nZ`E;2+R-#1!F`6gpq)emVz^Z6Qw3K}0!}-A2Aq?Th0{)(BM56k zJ6s0H5KRQ_9GU5vzjkB{^y3tIt(^`7{m@nh`n*(P8a$*O9Znw3A#UC(ArP^K}brCE;6d5} zZ35z6X@{}^!kCS(|7(Yu0C<1p#I%Zcdo#y2~2MjWpAS3gXSEU!_rJ z1kH{;K~5NvWs1<*K`3h_Kl+SX$&5j{jeBBH#umh&k$^doC`7K@N>LCBiVy2zPAKYw zUf3@LsCF{|0!$Z_avZDWwBZzpZiQDfT=kpy9ZD@GMPLuF%mw+hU=%T6f^;ih3ndMg z&?xxO)?=VpRj8Vy^(KM&8bMlrJPJBSebPc}58(mQm2hfcRNzOMA|hOgA|hCUA|g~M znx!ivg0VtMK-0Y%2_F#XmJwu}ypY+bBGYv(b-k}8m)(x9uddsyYXyGb?lW8AVPLb3 z)^|kP02-9XLMgK{AmMt4$ z3%!qP$oew+B`x7ITiBy)-PxI&M4WEaK|t0;0p`A;vNMkspGy@erNsHTQ>G&4<1kdU z3U!zzT%>po9kRv@a5&7<+IQ|8ENcJ&m_K4ZM_Qx{k1EoJN5Qv@s6ky50dsllpJLGU z;9>KyUh9TjrtX!uu(g`U7A4i)ZNQGEoA48KG8655&IBlrTONcm&cy>qu;P&;7!(`k zni6@VN4S1*pTOpg9f1bxRG2q%1eykG=`-`ZF(XvH46X7|FyBU?@gmq2Yh8M;gX^mNg!o=E1Ym9;qiK$*9zu2LjyT)iX)I1FKtK3itR&1yQgXxGf zH_u85G<~u`OrDW?j8{jVof6KMHo+G2Y&Al3-T{usb*h_1J?zGs&d~9Yj99tf%F?@|$RS#$5zqD)KgGG>f0T3VMeuAM|DT5?ywdLz`5yo|rp(@Jmn zqdv7v?;hq`)H1ycWrv~DgQLZ(ibX!dql(;yM}Zq~>!a?{JSv*Yy5I1q9x8)-h3J06 z1FQaeYC2nctnNTO7VB&Bqh7iv@i;8A$vEAccpP;S&o9u#bf4m(zMBE9yBLq=Va$N= zP1Q0(V^o=;F=~8)Yg82lZW*Q);oyyg^XO|8XINYWUM5>jYcqZlMiotFUaHJjQDbMs_* z_1D+D+i#LuK505h)4zxYRdRq_z0tV7 zFnR`FYnSGMR@IE9j!n+1&4abeP$slYYnO8kfrEA@D&pW3=bP8=My23LbDo2CODf`k zCsC8R4y|3GwCnifUcJ)pO+`Fl%0RdW+i13V?E;kqck#A%pDKc1UF@LUF*5FASka0@ zcgc#D8-kP_)e^?_U0+;?+<6y$Jt1=RjOY#Z1%wc+S$*LkdT8Mu^&)OCbZ)HYb)v>* zo_g3XeMyg?V*<_9If}}9(Lr!Uu*lv3P-JZYfO$8CLw;Qi0pt()^ZHVBfCH^qtlv%} ztD7Al=9je{ngpoZUj&?+tIJ#HAq&8GFm-Bof3s*j9j0hV9R@lw&E`6Aia;M%M!w*K zB{V7YfpsXD5crY^;dHm+aBv?oTv^Zu*}-5YQA_&pI>_aDMun`y*grLO_Aom*k90;f z2{p>;Gq0l2j&MaI9^qI>-3=0GwA0egYt`3aJ|XZ6t+?!Bv(HOA-7qmk2?(3*$}je zLgx0%;lTC~m)kjqV^h!VAlC7QBg}{Sa!)rCd~s(JbVU!&^3#F5<;NsYKz{fI7-md7g>`IxOvUSM*0fCueR43B)qyqF|ETV|0ka>Alv?G@GuXSfi+2nBOTpcTli- z{3~fa*U2H0Rh0{ZX##%u9(8#vw2bDLt0<5328{4rMR_=y2SSVcTdXLEjIiMu->4WY z1=+cwe1iXKoEo$b`&m~5AzNp${4nBWYKzgis$1%TKkkG#P1mQF*3esMn$ot&2isY9 zmq#M&uU!@05Ku3;Q4RG01xc3@Ul5%jB46iQm8BbG56gmrxG5fXt#KFTQ+fiQKz z>v>#lZKKmK!%v^kl&lYPdZUVei5B`j5rNRyJ9XF=puen*0vcS z;WY*Ur4(&5JiXbFN*P%s^%^|LeA=j8DaVO-@Ykh#?D}W&?LSATQRNR*>EKr{7PAGI zmOjvs#(YaZ^;eo@(%^3a!#u1{uh#aR6(5hq87eu1o7mSWRx%O^`#Ne@IyV-uL14*} zJaB%2SEjIY(lVUT(x|FR2euGa*kPUCb`%>)iU&mxXWarEoqd^|Gm)flgo7RVv0tU> z;qul?DGhPe_LE&ld=zr&ri*d!qDrh|`l{{ii;EDY?Q+*%rw4c>-OTd{SKDz+q%Nk^ z{rPMU6ZQ$yz26HB5q@o4CpiKIZFJ2$Px z9OK&cNHCWlY@7us@3BFCig6$tiEleo46eon*8MbmXX^z^<3X#r&fo(8W&?|ixBA_I9p z1ZpX5%G99686IaO-z{AQ19Ehjj(A$n{nF71wd8jLhK6Z1HNT}Rt?@euJQ2#T)k?R# z0*E@Yw!J$plpK46xKhsC@Ikp0EF_THVxrxHq_6=%VAX9~p`r&fnkzXW>FQPtnJhfC z>mkyOErw7of1Su_NkIxz*Uf}m7e_7yD@+bunCj8e9ZBg17EqI!Fg^8Fx^D&aprG?J zPKUO4mrSH9RzOeur`VjN`&0>eY)aDQsRU5kr8`pz3O{fK^KemsbW;jI z&~=!AZVaSaQ%pM9wV|&Nr1DZs3GIV>Gq2lQB=Wt9$b4QV}U84fY>5@R5TC zaJ|mhS3wI%>s&^-xF9V}TZCG6!~=%0pZltB$wZI*JWAx8OOWWu)5nO(c2G2lnmKaz zDX4{f8jjqN$B!}HxoYZH2sv{5F$82g`G$_X{}y%js3ZT6sH(qSF+f4lj(k6okLN&q z_#4PbLEn+X-yp8d zLLVF*xqZYqUvuQ|kq$aA)f6xtxqBo&H{|aAsZYzA8WR_e?#%bqA71 z-kym~L$S$`qeogVIfP@d{y@0J2gOGYAJMQ14fTR{edOqom>tN}zk2u0H-Bucr?Zpt z$noEVE)ICK4j^!{WQF8Nj+Oue%ln0#7J)s^(Et^uxv+RSvVN2(+UUV5qr zYA18y2=pU;;diuVc;d;BkxRRR)^s)0wq8dls6CkZvYu>b%}jR{q&AwNTC33-T6{l{ z77HM=FBKird>}bspz8W((>QLDX8=0*5Y^1&Yo%S_cYOX^*EjE=*?u7P8+eUZX9^M{ zAkxawAkFL)A+Z6l@Uayw5ZG0z6OJ0f?TA_$*yjf# zT44pGtv}q-r5UDzOaMthw!e-s`zFlVoP(FlVBVb7_$OlSOl5tvwEdT2pct~8+NSad z$*dzp_=sAHeInwvnP%Iqa2Ae3CWSr`16hP*@V=R4sLgCc9V1z#*ifbcIoi!|DV;FuFj_pdtNjQo@|$RU zW%F^;*sdP>#+BAk`#IQgLUWkcM{5Vu!WUo3H!!k6xd!oK!Nqj-bTN+>uWT!3<$&-# z_S@OT?6O%o>iK02)QVl1t$|44vojDF6WXV&PoNODt^DD_X6yOE+h4A!#DKH8Hm;tQ zY%4LK8GPX>*-~Oa)zt8T??f|JGMTQWl^=q>wdtNrt1Ltb09+1^v($%#diglgO5&%q zuihYWmfXw7UL&z&=_zNo9!oZz5KknsjYa*=)0wjG2$jLHY`lOP~a+V0r&K)8An44rnn7^QKx1;H@2;vYQ=qE z3#YbC^_Gkt1MHl@_XZ4R4QlSd{)c|k*0t%VPUU*MaNTMUK61nwmkxU{Jr3HXebm8h z*<;O%YnQMGlV^`@I(JzeRdq0z_E7T@Ll0)w4(fi<)U;hcm}ia>#*&P|{o-m~;CCqW z!OU~iKuYjnhESM|-0#6m+~N5Hz=PSi!(7?VA56y^AkvM5sZ58Pbi3Md?D4rKu398T z_*=-c89V-LOPV8F43w1OcBHi;U{1>f8Alu?X*LAvY3_%?c_PXFBkI;#|J9jf@`3zn zUcTlB#;^aHul>4D{Sawi_B6|G)cHOS^A9+97={^`m>GP|x#!-wvxmA$-L3mosp^x| zUw_|yQOpxD5fczG#6&P}ANw^s7~5d8@B6;5-ZyM8`)0s^+4mg-wu#J?RI2Lkn_0(C z=Q|PoQ%YH>R4O-p-2eGsANw&M{c->IV_y0RFa7xc|M4&Ve;@n5KjEXzwu9msE73OP zw;L0J={X*r{v5pODLQkBi3NmDO1&rt%TM8cNn7F)`^rzDYb8`<;=q@R(!7u5B^5YGJvayp#s+GH>4hjPNCJWwQ(g7DR)d#q=`wKE?*Bh%sHaahD z{d0hd&ZUi9U>g&#&b=A3Y+O2y3nVjQf%}&iOof8Wq;l5O<H z8o`SajNN%iLD9~t4iX;r(I3Wgsb^Fja{l!XVE@wK9LsJ1sD=ytjR|C|hG z9F#f7qc*!eDYY+<&GM>`{$TPA`r_NzbMB4N_@T?r%lF8bSP2W<`$$iJuWXjy4^8yr z7*+3+8~^PxjHoNXCe|Ct(w7N9x9?Pslz!D z0?j-tmsIvSU{HqK*Q_oD`Q7ZI2is)S&I~lmFOsdz`?yiwG}se`xbhJqCZ<-Pm)=g9 zugUw^1djniWZ}h_Nmh=yDDPu?=*MVm(_u}M*OPd>MI=%%#y-ShEXK*7h&I5+`{Wz> z8!;cf?sR%~@weq5C;HsWrsK{HDLd}%BB`sv9*O>Ei7d=uSiE;MDI)zg8C@INqs32}v>g)vA=!#6FnGEt z@b|+qZ0SdJNW%Yp>v3S=wx-zAGGVL<$5waA_w)qRv(bC$LOS1hGrG{iYg7SDI%K$T zh;DG$esBj%?^1fvcL>)#1Lr=A-@YEKJDsj?-zfxJ8@I}Ix{XdNpIq**5pvuHH-L?n z`enRPCf5}#YUqMlEQQ})KY$&gwvD?RNgw>)6OAxB4JHeI?k|%vuB<%{H`>J{Q8>m6 z!ZAwT^)Jb$ecdNb0EwTT@&l3JrQ39x6uHHkYw8v8>tbSg7hSq|FNepy(?J6iOkKpO zUGh?#V4e3S?(Z0v$$40(Z!}qE;;ACJupc_I%w!UO-Dey`4~MR;7An&d*L@7P5at_8H2HMBgprjaRXO(<+H5eth9!RiLYn zs*Hq3b+R?_PVszAI?#Vmgha5ch z_WMPOD5Lgd>VE4wP{1$!@>TP@NvLm^qEd#kZsX=IrZlFvi1b)H*btA(gt$cyI=L-A zM@Be60_AjlyX32z?VtAGCO_gYisq>IAvS7M8`I?s?C%qO1l_CXtgFubHwkgwlHiZZ zfVVVL{N~>%Vq%6&A(C&B;wrBiCpU?Ng=r@_+-b_LoJoPH#R`4w}!E z;Y^2GVy|;f;``;e*7ydD5OS1#ooIbXP`fc&_&{D?M|&Xq;2-6L0q?Zx2>1^xfhm{i zpVq;k9;>8&y-$w4(zNyeQVy|$ZPF3(S27ed=0<6GN^(cUpVRA02>Ml#wjfk7ntw+K z($`UKbNJ=I%BH8U<3?|XRNMGp#GtLYP2Tz|79B|^wDWQ4mS6F{G9bTAev0M&lRDe$whUpTzXh}b`n84Sf{~~z}5Y@NQCz~ zKC|0DzdRnkRy51K1}9x?;6jTuUn7Mrj=#^A;s$Ugjx7>#r;b>DB`5i*=lv*rOELC!`NSl}~sN=YZ1$~L^ zGa(kgkLZ3zzb|GL0)JP=1`Adc6#1cC3c*1;{0Q_i2imx#SpHu0$*=TXa*E=V zMHls)uKg}C1&Eg8_@YY|%&FDbl@URg!u~UvuRyWi^@RK=$vIaeL12h|e=1%apG%cO z`4FkO(swlePm9O*sp$1my2J?^U=hf;|0G#{H#Dk?z4m*mVw;NJzD6X1gvSJ!q_4qEp~b!c~8& zn6f?eOa1>NVyXZh`zzBD)n5=w^eqB0$PDHTf&aZ^E5dgIqQ2SdmPQymmGt?quUd39 z#59S26tBSPUKtw)i(A_2ZZ0){CLRdcU^Jww;-`C7$_E6(>f2xHtsdwuaKkze^@~gqvbU-z|eR%G1+8$mTzi&9P09`|p&oL@R%A zy4N<$#o>>h7#@3NTUGkM{IPH#zpokluSGHiptRhJb+z?LjQ~(qrI`0mtkD;GqEDCIi|4z1mbt7`s>~J`+i-{)Mi4xXE84 zk`ct9J8?hIh4W&$_l(w|3#I|35{7uN^rx<#Yx!&0ZaBo=^h4YZT{j%jumZ~s=l}bw zM!*b_=_c`eBCu69ZV#!q*`JFc>E-y*Y09Ag(-p|jklXMtWEdT+k6YSHzbb^mWIizkf#bLC2mx{|99A0#h3m!_P}ckDb|S$Ph-@m&=yWU%3ZUqmWOMf*_=V z8MHae0BL@O6b>y7*${WikQFX+ zX)OlO#*H{}(G9u+kDgd1N{1Ppz5#D_lCz(ZNrE#ss-ZaBn}vv(d-U^V-=csZqXMb{ zkRP8X1!K3T9E+q~_pLIl2lqfKF#0vw0uQzcwf26!NNBDHUrv^{i00;0t6bcu<_Zqz z6es!~5ix>JNlD)zBZwJs)2l+yNUR{I8x7_A#j3$C_m#3~>XhdYoxVP3pIh~Pvk<+D zsvGx;GI{@%Y_>b-^EIS=#a|Qh1wbYkxK82n9!P0HN@*1v7n1`V$?=CvNtFxELm2{{ zv$)+^a-5|8R%b%PME)8$|P*1Hk|%)8QLsXjPRv$f{ug0wuM_ z!I2t&g_zQKq!av`ga{W)Q`v8kL7+fo`ea`wV?BaE_^zCfA_;SVADj3T@$C? zCzGqOGa(+$xWB`?Gvv^>$tIgk`^TbPA5?L_UTQiwmz)5-1ZGK_-z=L~P$ha_onGG} z2BW@ygq(PTjESLcUUji?X6=*%NOAvNY+AWQq^4#w{c*AX<`O)DU$aj1yx3>*JQ4%L z$d$hqa|M*_054GH=o882kBYy=G{EFjN&^04PcR6i>eCc1b|PIaKFt9AOvzjHUMXdG z#j`w``c^U5!Y$ppk=b7;JNttwFo;<|LQN|Clvg5-C zu}^l*>sA4uF1XjO!l^MHRQ6qb(i*6SuwM_6EfShXB27o@)a^_iUur`+XDUIXfvh{{ z$;I>gGPy}m40eHg3%~wf39;@*-%a}H=hmQ{YR!Pkfq3*QA_j-Hc4@p$B&4D3e67D; z5K`)VY>n!MT@1rjdcOK)a;&~hneM)X0zXTRHnWTTPsxFx?=T4rKjde~f#^tHv z9G(OTseYymrhOK{2w`Ht2<9hgUDM>rTrn$oN6D8x*Wox{>j-BZZNz-Qt ziCxED_k+8upr0v*ULTYVsnX)J#3-af5-_$^VSZ{CW{h zQ47B+K@mDf^jo6vdf61ccF@X~g3>=L`oxHFdWTtd=nlgry;=&6&XHT{T_VJ?>-U@1 zpwK~0-|Wq6a4CfGhBX*JwK9LB3^&VVM<#yh696ZN+jq#&ow9j>uNKMS5du&TZ{y>m zx{G^a=O@aLt-is9eX(e2bSqUhXlqqeH_CL;-Qoa$DU#=N1EiK1fAItZB-(%Y1kgnF z4^}{@jy)HjDX4clt+fQ~^AiUjDX~})i+o-2U9cif?Q|9A|K%0SYwv7na`n?I$m+J= z#m%wK8vA0I@EP!NXn-d!k?4NW3iQ^gU7UxF|EHM2SQCX@{-`^c4igev5+RTO`wD3A z3u$=miXGr}w}q@pwbRfYgeLw=E52}c6IAUPerpB&0{41y7yRa`0j}#eLH>=1al;V~ zoZ!rEm($PxMn-dv%=eU(N%6O`F-DbppC=JxVTZ5>WeQj7p;sXlRk77I8HQ!R;}uF4 zTQV~PrLY;B;IRP3F+EPnCU+Dd$vwN-^6zuk5;hAY1FR0m!Cgh265ZGmu?!qWC?ve| zL6eCn{#ag-70MQuWlD>u3b;)OXLEeCOI|E)TKMay^RGo?Kl32}ock;|I8>CPh;gjN zUt{?a9)$CAl&j8KfM=&DSJE_L;asB4C*lN7b|0eZ$MygnN_}qOzzO(7vcR|aLMd{J z+gCF*cvBF?3DgYLHy(5=0_7iuVmPrlR5(>Lk<1&DYojqCCU>|<%jCPjb!3ES^DRbb)Wk@Uyq&{Wd=zcQGh<{niuU9=eBz==h17WZdxi2N z0EyzN-CYBd%VerU677PH1YWd8|1h6c>?cY6xp8yB0ZNAV=&DwrtZ39@WUj0Nf!aeU zW=|mK6q}mbrtijXoeEN?d9a+BaKUeJcC2y*NQuHr*3u|zhX6i1G#TP}bg?%c(?XCW z%SLEwI}KueaL~nNbf#CSJL`#rd5Hjsi$38;mmm(FtNfDtn#(c)Os;U@GIZ#-4(dlI4a8-lRG_TlxLg^8K!26V9_Bic z0|dWD@1xpLD1)`Q&?tpY)^swV9aw6{B%()sunC>Ns$}2RxMiN%li+c8Nwf^9ve>7j zVAdu84&e&}bsUPd!~qpB4F-E7nDWrQXo?AW2zzazgfTmNB&vr92Ut5E#@)ui&Nhf39?AIW4i)8OLG!Q zBF*X92V(+p)>2Id7s6d0n!b%{1BHT+SdS1k(utU+bb{wP4^BUa06?WBxlV!zY}-i< zu}#)$1W>~DypmNcz=O6e1>a?5Y?vS;!);9F8yjy$2)^CY484ZhH=N|lMUw;^oM;H) zVtPoaI>`{kg-ig{DBI}nw2uo8z%^mP0rm>I=0gE}Go@UyWd|7wEn_@BDuEQ)9`b}s z5US=TuNB*beU8NH4&Bxxu${bc1Za+kTW_anGo`bft?oQQH$y*mI^)^W(i1$E;&^fZ zvmKF7(1`)ab+*YZp{>o2v2YD6^Y7E^1W1H!kD5SJXMSvzidZ%U_&gT&YNdnNd_x>1 zH&7p%p#yY!9)XR0o&%>w8f*p~U|W2}Ae*AN?2lw(o&@Xap6%S#DnrnF1TlCd#F`9! z3l&K*cl2XzlJxr?nu;I=?hcv}phut)N72h{=rtpA69KmEQU&mIYH)8{Wdz7l?qkhe z{4-`cF4)YT48dFy213MbPVh> zuema8#5k4Q91?p2e+_(w&y!4liMc^IY%WiyATEln$-xN*%JxG9o74b^oeuRjWzE{Y zMM!?!1_`~Fy`d!3tjRI5g|1L+bwVCst{vDrOCp=K18e4|-(xXBWi)V4n9Xpbaw@%+ zBgPeN#5t=9rI8X`**0kzK#0s>^1+ zO5z0AuD550a2h@)4!{=vpB(@%l!#}WoFE=7LNL6lR#)$m7&uVzi#BN0>FWI=Ahu;{ zI-@PklPyHVc_Iq*?BttbO9KIj5)oS+@}-%5xeZZzmvqdOm(BI^&p2|$;3xP9fk6-N zQ+ar_wDRw9kAx&rgrnRAI!f7AY%?U9-Z)ViLFl0c^KI!&WgmSYVvE+qNRMlEo{++k<=zSg0;sFe@0(6=t`9DON7`NpOzguw z1(hCdNY6GResWG6A@d+IIJ998Icp zdX0F1Tj;m|TXiZCHpRBks6=gcmhfA=C@1_g~=Nry{rm;|tj=ErvANb_?6JI>IfsJJq=x^hBJ=Q|?V zDknk?V}ANm5~Bdap{$DS2vjIQyXI<9Z0&pjF4pu8i895GA>=y7550(GvK{?_IE}Ga zOECL#Mgha&gWrMewOk<3`~xBE<3b40KJ-INV#4*{LjaZEq2Y;SxMrpRI#_)>>IP!6 zk5${c>W;uZsItIMw~L>Ze8z(X_iMV%;C$J3C`1rpXTo-DYvCHcjNY*C;u5%YiWIGI zgl^Jc5kUmEws6=^sYs3B+fbfde$NW3!x0|L-cqV0+t>r>QAq)Q3HC*J_&w=$xH-c{ z+L55LCHUEz2ez~Z;(C=okX>K83RGY_RCrd^59#UtxapuPUt9Yn)j%6_LbHrWli@;A0c0O;(@CTb~^f>uK3cfIf`?-dO52el(z8bEOaaMQGf1QYNvF-&b(c;(!wTU2%P@GDAF3a0oobw%_#-4+6aqn4@0XeOZ zq3mpP7d1#uAe$I*?DxA3Ip!LvWMPef>sH342`p@Zs7J3#;-CP!nk014FNu9b#m8nhT&|05nK@XJVvw6 z_tOtwGlOf=#$0~Pj3~V10Z(9&nFr5Rw?iM(8;op#s2(aExnMMEOm9jjH_9oOQ1_w( z;Rsx?^vno&Ti=uR=hAX6!fF0oRPz$N)4Tj22j_XbG{jAs0++)!!$Wl%WO5?wxERC| zIZ|m-uFPPycC{fJ1!2>%gXfUPaPp10fs6;(hg8Y1Tu=_aB-rG;|w?2#nkT! zN8+4fqLCIUSzM0UY|LyXLQ7(tk>KDciX567K=-E)Rb{oh!<-CI;y4K|FQZ-p7!u83 zn}dToHiWaOWlMbRZR8>wHI|-Vo2P-{47hxs*&w$8y!9pX|;%XpVsNnQI zIMv)ujubA7wjKhW(Mt~XCV24Q_Z_I`UF5q$7vr*m}jQd8@qp7%<puj=h6+AXs|YS zI$FIO&<0HzKe!w&wlW(F-uOZkmycSbD1QZtmZ}H4*t=$B>*Us}g1cKeIpDRObn4}= z&fYdFk`)}+%au*duwa{Qp{-$l7l%u(I6=ducZ3nZO3PVBTqyWt6h~?=^=Ic|&?j&T z2$kcGbE(YnCFuie)WOMYwx*%l@vt8{Vk?(Ga$(HV$5OaDlG#AIIXE4=Khbw^iEE|Y!+AIGSA-yTrC52*}^O+cOvk)CZhlJ&>c z1J=-Ro7$*x$@MkpMVe4^B{uai(2fgA<#7wI@!(*$;iNtg%=u2U!K#|8FhuQxp*9@| zzQ4ccu67e19|7tIYeK5OzrW`$qy^mGXcvsvc+yZ?a$5U68!|3qjQAK3jX;IOVECqE z>;9heJyqj?9;EeimPrORy6fUbc?}j4rY+L+r3`@ZKU8yICW3)z5qL>9sS4u$p1ZZ= zd9-&{^`?pNHWIBszVPj#>%iql(G*ak$pE?+vtds!YanGQ>x_lu%NrB!P-D|Rl}a62 z_|6Ot;N`QiPN~c;NXZ&(Y@D9fdM`%XHXl?l4n%Bm;rI7)!M7S7TmWB8nY?(@Oo4tJ z#-q6Bj6SKf!yvnX-glk*O1Qs*%LpVwrMf=xLLhf)t_h^tC^@)&JobH5ZEvP~)xBI7UCQf# z{UKdMX`yVahZ7>*qVDA?37${zBRCuTkrIaGXWEU~#&C-_Ard0#M>}p+3}bUnlk?ie z;Bz`2+rQsY!y{t@cye$OtPEbl3!`4=@VSG!Q%XeOJK%v4x0t;QO0pzq6O}8#&N!>1@765<6L43oa*4zgpS7XrYjj~ zTpVgK2;3BFTaQ)C*s8%cNubd+tQtJ=QK~uT_Bs6AwancT&x`;nlE`zxn={~Yy=1lO zV(A8B>tvm?n|Y3f|026s{W-_M2|wo+7eZYOU@Sbb9S7S{IVa7otB!rhqW#_&oy*j~~F9 zl}t4*+;L%m(!K3pFrocZeDN8uhwX{X7}_E0fzT!PLlzepLnJ=`M+2^ylrl7 zG@AY>rz?4oU%ur0L<_R$T}FDGPiz4^_GHL%=_|Ph2H8W6xiL*QP(m8J!q7v}TY_o} z*B+e#o8-{meY6%K6Ky`yFO?i zrWvyqQyIk{nnwExDUm*sh%f}zl|0hedrgwhS^$Oi!Cu+nXipi=8H;<3twk}rChfhF zXu~bw6uZh^JcVaTs}C%0Tb;m-t>FTpLLXyZI_M(rFju!8M(~km z!z2L#PMWsnBB$Dx%keHY!I7k~oHT8#ZG^7;(77-g3oafMQZ7zXL!Z}ffIA7qC}sZY z6Lj`Vu-p&lq?@zL4Rof1t`?iPF}Ou`4V}Q8`l*okG%PKTn`MRS)onfzIl-(@_Rwb! zG*RUCQiVlRC^d?J2#Og}b_pj9m&U;O4^4v;#%c%%7OD~XtwKYNV{TJa@D;TOgu>4Q z>_+jGeIdfYi)pkx*%uw982Q-|;HoF}N)M#a9M@vAR^`_=r|AzSB$867 ztmuLk1F`|}Rs34KbmQFeQn>qnqCn;MgRyjB=C?W#se-QjjzLIH1Q5)T)O07`o6#~u@P6#j%b0k41C$w|S)}&hychn?G$Cfq#r-QDVD-8d4 z+Qz3Ip?q-;)e3^Y=bXUs`+Q@LOB+?ItE*dagfESa*q&A;Y0DU9tkIn+6IPQML#XbC^yE91B2 zwD^_2gWpC-GNkiJFmptV%DAKPL`J|I0%`4X?;36$aH+E{!l}OEa7`%M<~5MpSpbCK zGbEBgX%0y_+i|JDCJd*tCWziecjywSdya_(NAJoEj;6@tHh5#9jyz-`>7KM2%al{7 zv8|?!$?4BC;Ji;cjddOh(}vunt?6_ewKGF&n*3rYD^90N0fv_TOTw zT;X;zm|5^C=tE?Na6ygGScUhxdP%gIt)$hFXhrxD>Ps}Sgt&qeQYm>m|AP!;HFnt!uLKCXhdW^o)nhb4; zPEW|r?DnC8N)Fxx%?8E_YAN`H--5dhAXB^!hZL^OjpHIz6MPK*aC?J}+7LioZ2!fPEAv{s^z9fewX$Lbb6En*3dDBAH=T@2em3^o8w+iR;pt$= zuguD{9b2hbVg%7UZ_^kgS$xP`-H;3KsBXOv=szX0W2qO@Q??* z7&dojaME2+O*cT{nvzbi0JlTe4ab2{*XZ(u3Pi z1#PSk@J?g~avqEVgqshzU2z+USu`Fto$-5WTZK?g3m1Y3iXiTQUV^5Xa`Ih}?v{E! zLhVOLK^^XLU%+0w8`Bh~irF*aO58~-2L)?WLr%`Maxz<}2`@UNOyGl@(wfF`RKLwR z4Qc?&QC5#DNF6r5ab}}y1BcVg6WxqPVG^$|XxB%ll~2`LVntK|qjoM`BE?cs!$auc z05eiUvaGot1dMag7LdJ&ED-Ofe4phE(24AsZNzzICh%Rlct}1Grnbya3JHe^hNnz7 zG|8JNr-wlB9w8qk1pUxKU_rMtjV7V!-NLai(VYO=(7qJS&TZpnTjHYYM zNK2QJt5C_PlB@-r5S(EiyRbtaRqD~t(Sa0?(POl3aJi`vx1Fm79oS7B7( zUh>q8k|jgGuPOq#?~@Rt3PC4VA;&Co@qrg=u++j>B-%5W9nt^@W!ZpE#Y7RpPl#ff zfv64jSVjbQR1%`G+vu7bg0TEUBH9N<&l9oIgTGHv7Mv7!C=mjh;iYm=8MlVfPOFf8 zQh@k$pJ16gf5Hpy%*nE3X)Tab@NzB9(M|mi+3(c*l#-sWKP=yC1Zr^7L;Nf=CD8hW zk<+3AeDl06+7E?9zC5Qvzd*)b?or8qkUU{HPBCQ{X|kdWIH($cQFUS;>{DRsDUYz__zF7)j<*xZGQyX%}E3fIAf$j(DyW$>(tqv_yC+(qxqNRX{w zI4b&zbB+Q&70qCa7Sd>(Wp-vFu+jQWP8AUe^L!?7@tl=mJ%Mb&7`duSv>oPCIAsLq zjwp-(&mOd&+Nd_UGg>GC$WIW9#Ve0vEcV7j_mmH+r!6C9YaYf9;M5xjD@=nrSr6!^ zxH)*LY!+|0OdsKPNJ;*wlf3xD=24t}4wEx*lZb^pqt~XVp77x4hN)*E&Ot0&AduK_ zq3lty)+^9bi-V*&_d%Kcga>t3ioI|Uu^cT1p_C>ZLi`cS5ZiE~@Wk>|2I+biw_3Lw z)sRWa`3X+>kq>w726>7+uPiwi$(eBuJ!yRphY+%Jy+pwv+t9-uJcwQ3r*p}A8)qTj zTjhITrL+%o%`MiNC&OgrEj|g$2&cMRe26)nYkALX6|v@CjxyP-E4VsM#KVKeAtf!~ z$62vy^DwjXl*?MEWFzBS<3m(8bP3@+RhRG{M2wV%*i@RBiBq^y&VYj%`M~9=otXz5 z1+~*{g%ZxJIHSE*2x%TA%Qu&+cV-P)ZE-1cXP}@eP_%u~H!C!6o;!?!3J3fE{g|=_ zS17KNfl>i;3iYlyQSwN+W}8c;Il~i7>&c?MLSbdnh_6KZ3ABw1)8<-ntd|*tP)~ph zx}4)d2=lGA;z%sBfIi%*QP7IBIKx8)7agQ%QIbj3wqz2CcJqXTXd@~TkzSr~c>{{% zbb`55L?PNJHO!M`ART|=}!^jB>IHH8t)5E1GAEuSBv@~39$IE~Jd*!E;wu_BcL zsrwSUVao5xvm~BS_23TsSu&0M!VddA+^~U$Cw_$J1H6-*BP8+J2ag^;JRrAOtI7@k z%-)-aw^dyIsdIg;!o z?YGo{EKtf)TDB0juw)@XC@qw-1;UoDv~Ovlp)4(wtpo~`rBL`i=gi!zE7{7uZh4>I z`$y?hM>BJ_Ip@roxwGb?(pGCTWabuRQJY^JG5rrJv#3q@wYAcHyrndKy=q&tHz1#@ zZ0L}4K9*GcG)7L}L1bw*zuZqMoZE`LxP5@GBXrlL7p1JUlg4WFwtD?dqh`jp)JrU@ zU@e$6c*JuG>_k>d5Gbv_woLh~nxQ~zYo{6TdKya`OXyY&k`CXAZ4ouogDp)<#U%_Z ztJSc_ggQGL*J{*h#?4}Dbw0_2nuTd~OeT$4n}un$Uq6jGqc*#$R^N_kT)Jj1L&Mf) z4M^k6%o5n@^jVtetSn5cv2Yr5PIgVLBA^+yZ5X!Iw~PrpOXTA$j@qR$>%8>LjYpow zw{D-hdL;NxvFN?X`QG64;2cJ@ZrfRiHNn}8IBJeFg7*4?v|@y)%+2bXG!v;s z?kupH7|6tGmG2~4P3>f2wRi9}xAnoA=|VB~+XvOpjNVo&DA*5w85C+~3I*HupiFeZ zd~^9(|*FwI56(1X=PMh*hAge#4%ksHo1t5$bq>!FP~ych&@U$P&(Gu&YA+_Vkt zNAQtI7>2MvHZYT6SG1aAOq-y|6RcURzqw<-AvSq}wFa7flQnsQGYvHRhHCNz8|uXu zpw%RHM$P`MPN&I3c%$!g1m5Vo9L8g-*>5;>ub}L3>_;7Or66;%A7z?6=_aCgH={C~ z(ZKZhV!yL8^B#3qk%4T)Cj0TxjIT#m`@N(Yd(?r=jI4(x`#r1)n{92i+>&lF`s|0* z^&%z=>4f$@!e2Ar7%N$wZ%^|fEPbqGbsF4+)#Pgr1m}y!W#4x6Je6KC`~E^$x`>ut zsAoRCGVS*Sf^|!R^*%XoXBmF8&^lUaebMHj&P?QncJD%Yp25;~8C+@CIJ=c)&=+Vt zt;R=~Di!DWF*Y`3tkj)Brn?^rLP%S%~4YxT7?3vlBo zhou&1FMD&dZ;`l`pRP!kcNW@sWr~sMu9`Y=(aezL(4f7Mp61}n*o37+u;zyyY&_{i zT!z0$VflO%p$&gX!WLTQTMR>%@Awd_Rv*pK=#M{GKcgmbMtVKL#xr_mY%;Rx_CyF|M>;zjtOy_W4zh(s7IUj4}h z>-UvRXvRYeLzee1H)c&u%#0H{RSIP|B=Gm0xfOnmvAiK^Aac~ z49l_OV!Bk4&rt{6t^P$GyJy(Uh@QoCkj32`G_IAf>Iv!L;I>7cV4Y9iLt*87Izp4% z-$Zwc$xFW2P3$sj>Szt{!_I9U8HlWWQs+9_Ew6re*1-pB5hVg0_Y_^?=um>5)&_pM zgEeB+`VIM*oiR!pB^qCi!~CrEXs#X|xR_511p2*#qpT{gWu+@??K+Y<4MS~+z+^jpA zG&(<~M~69RH&3glnKuS76|13{iAHmWUo62{8q^TGk#@c44}e?ur)k6{@BAjxbw|6q zUTmfxvg$6<$TY-Fd#~jPEelaT0n6I4^n9bH#M9sA7T-RWk9(%^=++s&2aYa)(T~?y z4n))VzIu=0hNsh2!k+eacQfx4X!rR2`rXt+_G^+!kqu$qc4pa0rDYQ*uhOsC+P9#@ zly_DP*>Y0eV#u$m(|!py-|xOuwnW>y3xzO|@WsxEoIEkasj&2b)|}SQXZdek63dsg}{L{Vxl>jm~0M;MUq~BAFQUjgEOkz}rF&RtfoNIcpZTzPiw%-V+lsJ zQ)?cA5UQ`;yHsv7vST5})75Jk{q?%hIK|i85OlZMZ1)CYqs?KJjv!1hY8!I3{B3PP zcZMHZHY@pgRz(^Z5cK2Fq^s(6doz8NZr+a*v4B z{;6!lc5%AdYMWR#T9%2d?vzcV`(@zeT3Rh-8ff)RbiH8~Q>$%eBVsdOtF3KmOkb;h zVYpX%vgMdg_eK-0aoPA+?RrH9GTr3Oa!gA9J; z&a6p0<7b^)hI3Wgb(6qiKKvsG!B)E%%~G1Z%WAWk8P9xYtJT&^!duirH{FQgh@ECC z;e+x3on4d;cbmT{>e77kZWm^_!<5)Awaq#>^ZP*z}hDR1RcX-bjmJ z8GUn6k>fwhrko2uAPi>NTuk^hx!U1rmGh&cQNMv{ZsC@`Y+`MCDb=#cnb7pkel)CF zefpzRmY!+ir1$og4b6l@LsOp7khZjJY{PK%i(f|L$i#Kj4opb@zT+~stmJ4MmhotM zm*utWA+yzE)5ZAmJgKv>=0IT*$!w!BuNIp{L zrcqhYc%9kGe}<#`8%*d{tuq^4k3Cicv~0XqpMH0aRo{?}NuJp5l{a)+TEp9rp)5Us zS(+sqkG@*yN=!DYr6*@$(^z9ku-Vrt&e>Y}^@!*^tH$iDg3B=cfS+c84HvPB-r4v8 zugynNhasBoRT!;!G~@;)@NbuC@%xcJeIf9LNk%6wdk)Y*lB4x_UYmm zSJYaeEp&okO!zZ~H7ALoKLTT|6@g&%?AFQ`2&3IM6IkGF6H{v9I^CeBwZ5I6EaiGx zI%76A`HQ#Sz_1o^%TG;9 zqbxpMtX{i?T=wC;jlvbJMy&>i`bBzYYT0IVq3Rd4c*Ur}(tULlori6)_*;}+$#&fX zi+!S_v^L4zw@C1^pj6{$;R64O-O!;WZk40NkUsYJ44IwPHPvJ z&^mc*@6i$TL#ozpBQS(_+SHKg+8k^32-9&3u-z51OnMWw_Cx`0b7yWqfa@RTRw08Q zPzcu5yZz?oyQ1HpPvb91oH zZS%6^OkC4phS4!4G8~z#8ohjz(AyC7`e|;bL(H%a**NS(rwi!{_BwB~H?SnAzm;S4 zVMl1K{`AL^Rd2V*+t#!s*yPIq%u@w2IG7D`y%RTj%}nVe^i4 zuC%58T3XtJG~l+WBLc5qWM4cTUXHbGiKExus_S9m#(>!p+P8@IV9Li(TI@czl8Gih z6IrvC?v%lAG>@-H%s{>THszD7`eWQy!=G&AHun;`sf|Up>TGl12K{pG+N$f#g&*)O zknfsU1|Xp{uDU-E^tLS&djc$*K_*^{{N%K0Bb^<+s=ANK7BKHDM+Iy`A?IwndX!ZuHQHYM)?wuc;xyZdF*yL_)@He>^h@fuQl!WeX6*DS! z^+Pxf^e{Sa(qfa?^#DTkxakE&PiuhgI5plkv+KP?VSZpiP#n0XtEcsgHSM;aObRsj zoxXX`u4@sE7WaH_Jw+_mfL&)M%vMi8UZ}^YR(l7{rcR^MWu_g?a+8MDb_+9!wgrKV zfM?geN%Ho_1>R=5?7P{ckK^oyJVK`?BDdIi$|$jr2;!F9B;GWdE-CNP>tmrcMJ_StRqq>xM^Ggt_#VPo!E%rIoIT9g=phHjf? zpI^A8)dXh_8hoULD`K_HGzWoJUyHBZ!@ZK2Q?S~&w5ZJ;TkebdVF2VTQ1)W?15{%c|NM8l4^jvX>;O6@R zVk+>^veT8rLMyq#ArZ?s_?9d75?}`t6iUk#<2f{`_vP=1E}Gnb0x1pto^;yH7q&oU1KnAhfl68okChU9O-= zC;_^RmTQ%(eGwE@UOrivs~r=V&*V9|ni;|A%gedCDuQXA(bC{q$dcvijtH#7+hF?m z%oVZ;l7hXjUOsZ4YfCKwdfNmn^Uk%ymjM0L)tk8I+RRF@4Oy_c){7e3>0Ly7O`ahG zzF?qE%%9|L_zY>Z*W8Vt;acUYMDDiFVC^2iXob0(zYZr_VeaP7aCOb@`UOos`R-Ki z5Wv74t?eFneUst5xg!CCx3&A4ymemD6Xl8q?v4g;AlTYGzrBt2d5cz&E8v=e+db}v zW}n!!kjnqs(Oi1B@0Y*qw6#nLuX0)m=b# z$cLnJwQ&ihOP6a;v;iih%Q>aAkWTFQco5pu&>n0Iwt74berqKS!{dVz{019WGMCnd z;kEngc}FN?h(w%b4`Y?v#Ad8)UWc%AgV#MjSl8AV^ap(H?)mht!s*sQ z#J^x<#1?m3uu(Y5A)I{#o;JF*5qPrGjD}IG&!X=ffr&9B91SB$ohuHtwE3EYbzX}l0EUt)$E?yrl50%gTal}3Ot3N7 z;%V`7v{@vBM=n3q;e8@b=4#mnSi783$u$^|fUQ2c$26DabhwTdcd*Xg>~5|1wu(rU z`$`sxV_Zf-OhiB$%GudS9DkGB>Y6DXGT;t)>oaH{QrA2+-|TTOJhbC5bv};BWRTigE4U zdg0=SbcvQmYK5}>9$Epu29N3F+0foxZI;zV-@cx9TRvcb23z!5>s(zglNKk#Jq^Mh zX;;YE1M~Q&O^$qWnL|J|$74OL-&|mg?uLcI248D{M#&7B%VZ4M>TCCO$i?wol@gr& z@vc>&a5&N0Sl`@SF9w`1$x>&M4qol0Cg)i*X<8sJ<@^d1#U(ZDW5T zE|irE*4O4~4F=jho?v~m&$HMgMv}QNdu;PHH@7!5$vKwXfhkxY47U2cB7QxTQ%TT*0*)kdF32_&abZex=5-qqD8|kq2#K% zNJ`vNnTvTgw3rdiB|DVw@@8YO3ElMOysP`9ha8ez~OyLzk(&oGQXWLwQM^yWSqJsS=%3Pq?>Qo_(Xh$Y-@XF+7ax#^~|&@*w^<=lP}m-_)L>C4B6JW$s6pe+~f|U z(7DMWhHNW+Ryr(bco%o*>QfB*)4|bDt?yPFKlammf11vtA3W* zHHPf#-s~LqU4E9?Jw~DZ4F9n0_Omk_WXP`mXJ>ebZ3E0U1`hmR&VjV}_zU!hx>jka zCi$h9E2PymFK81VUa#f4SEsGbPtRkwx!c_>V!r757q8E$BZBsO%+T9jyguhRo1o`= z0`>CtCYni{z+tAoRGp6a!z@d^cJ@IHL)>9o%^h{ejEx9f^ zZ6Fp|TdgG$9`}5=w-rvu^z+IA052^sfifmHJU@*Lr(@oE_TXE6bPKT4(PoCn>O!CZ zN)d5X;>l^+TCEG?c2xlVp)r(+pQu1J=Euvs`ohz?;(h&*s8-$+uc@w`RXy|M@`TnC z>WqN#&Q*YdNGzo#VxcJ2t}7IciW+)CU0qr-3FQc-qCb@C1w#H3RP@Ee8gTHm5}-hG zuO19VBjHd=YmUcPwGpUt*BGTDDKJn#*weZrQH_37`}?DjRC6Smf)X=R&W1~-;f~IP zOQsT$SWi+=g7R9P!K)&v^^eT;w0I;2^H7%5i_eHv@+u}@O8UH0ccSe$0SE@R!g$MeV zV+iHSRt12fRP_T&L3b&FmM@qn}IKp76GKofwoT$ z;hyop)b$6-fTc~_>0p?29kDfuP(RK=iIDCaEZsLqy5|k)zCleCFtEELv9M>Y z)-{j{bw)L8z{L(_YcYUvN)=ff7)SMa)gUmA2~_rByw6bz$8kVq7{}~5wiL(GZ!M9) zF$Cf{4saf^R>j{`fCzrYHGQp$>yHDbp1fAgsDjaIHsWnnu%D^3pGoZRI}Q-qT&P%4DG#-vqGmN;8Urz5FQC+-?Eh8nS9o3j-*PVq-7z!jNG z3=aPifa3fjnRhDXoyd8IQ(icdfQOiG{t{3;jj~vv({^_2ay9j1*Ct%7WCR29-@sQOf&nGEzLF6P#_0GI&b34$ z98baNcy+VrVGe&~EEEI8lSnjh@!oSqFhCfkP8ySizbew-5J|x4!0Tq~42N<@qi{M( z%uu)mra?hhJeJbdrZDc-8le9aVVRe0Sw=^FQUM$?p{u)Jcg)O^>giaIc_QfUbSN03 zqjg2&NiE#f8;Zf{_`<8AQfGWt0tIj9nZz}^#l%1?73tGx7=m%{%m9WaQ@04bWlQ$t zx+Gp8xkn->Dv|C3O}*%d;H~kLH`b(u`k|EQ_2%CBcZ*B#q~0JY@ie(px_3ToL~{OA zsB6{yflwmcG7wEg`lAs|IEpede1p~<8i=OadeUw?5W{eMOd zV&WU>qHFH^@a-4(Z9a0$h*oa!2K)p4{qaOfqY(Pw=@U69(y&dzx#lK15<14cG84E? z`uxYXeg5s7KJSUqu%^Kqp!osa_f-X0G2Ybvx}%{Uj9WenD9;zMBHw8%iWA<46v63N z^^~cN(NK?HOS!6j1F8Oj6qMT?N<}wt`OW5?Xg;EtGTf(>VPi zk3WRc!1eK1Dinz&p`4lqO%8M>QwbfE71XM&p_=%$6qLuEN<}QxrwM=xjYil_p;$N? ziS+;%pIM3t-FU(&G$$35&<3?cQfm*zdbIk!{!CpNT6r)}so()1_G+c52!We=MW_5X zt*Hq1=8>u~jomedldNIXU+$<1kuZAOPlKE?E}!KP0OM?x`ocx9+diyeZ` zy(8BsxhB+~1WtUl#AJVicsvo-61BO7-!(E(T}>kscd#94^ikbC5bLVJ5S~;-&-ZYF z!Xs%`{q2sdvG(l_9&0;&8&n+O6dykO3S6r;sCa<}6VB8I6-Ud0M+zW0O_?e_br*)B z1DdOvJZC+1!}Q(sfud9;fe)0P&QiQa9nxSZN@*IoyhD8w4{<(FXponSAb&{XZ2g<* zQ$h1nrs*u_FOBI?K4qFZjU=_xXs9QNbMU166ui!%RFQ6yz;%v+P$^0cVFZMv{>fwet-al2&P(ymC9H{D!QL-Uiik}hNQ<*IVvi;2Y zkHlGOKayOkCE~1mY{XuNF!YvuQB`0|KFRtQqB=+hq8w8GyHxl1Dkxj>De}YoyNbSq zlr8yWlw&6VmEXX%`3HY77LzEETGx+j@}K+lSj?FKIDa-+1dmj}HTkaR28+-@`85m6 z(Ch@90InMYIJd7Uf?ope$#*@nrU)$)0M{?p6yeMX)CUP=nQ9~*coX(Y6Yj`YCQT** zcI5vqT#BNfOaLZLCUJM<|6|Kol?Z#8wZ) zQ(8wd)T3cDt}77g`-!2xpD>lLQ~=c+36-C)_E0^*D0;FuN*p4%H=n#`N(E57mU33& ze$JU&LG>#>kMg<)@w5CHS}DAgS$w(7`)&TT&QfgUyc=ZR?>X-vc!&xtM3%-q4;LRHwEiLqPF{`|S?j-A*A zS}BTNq{40t6;Lfp-l1wv?!=$-r%xzF!SO&Po9iXE*3py}1``>Zk2g<3m;+&dDuElE zBL_wfolz}@8=Pci6u&}x67u1FZbpv~CvwO4x$*q^c$!9dab*$SmiqZ?zAJxK5hhFm zoINXxaQGO2fL6QCU0H;hN#rKZzid!3ehhf#>79Jn#~W0*CjnC(8&zQH;q(_wwOIna zBB-7<32+s!D#C?2`CtZlOlI=+D~r%4G2h5{tyo!v5-MSmgRe6l%^BB zK-ek~-WCY+bc7#eAhe|s9+n922!t~yOQHL9%%?Iie3UCn|9sx3UO- zOBb9(%BF(h-WL|1E26P~2XD*pySqTC>IQbRC!sQzXYh2Cxr_WvGQCYmQ&LH`CNT>S z6QT>0(C~>$k^Y@Zp!o2^fXcpP4?bmT{~{5K$5Up1 zJc&(3#A4bMs?ZlUs&L5)y{EdSZB)@a1>jku8HWMX(9g?v(X`REgdk?e=1GkARh}OE z{gjO9u_lQprpFFf3^ux zx3Q>?lU%x}+gN}d)8=lzKClDM1e`xqtI z;rDU+OJ4;l#Q^5#oYDDJ>etC*Blrb#c<`$<34AVPbr0gXBI;tFC8!4|i-PhCENtWi zg8RLm`4VT|$eGXUneTAs^OQM)PqvY+aIw+ju6MFWuIDeIDOEsKDA6;}r^Ql9V7-&3 z^X62s#->AA?_}E+A65)hCN(XFjZRW%M-|QKB@)=k04u7}hUKyRbbOB|{>iWIa4OFJ zjViuSEF#U1oKr8RUSZ;m8&!OlFu8c5EWXR>+PG20)+)dR_XNR7N9c<8^@U>L=15GA zg)Y%2%l0}I31bYYWyk$}-Mh9s6msJ2JT^T*)$fE%y<}8-JCCd3jO|fTBjwuRaGkwJ z#hX=t>pOc?d|U-MzrRPtoMK=+fD+eTdsH~90oMb2R2)+cR*L-8><_OdnR0$U{Qyro zm957DI7KNZ2M_hlcJ|#M3B20;Bq%V?^ z8QUm>KUGgz_5&49RRfi4Ldm*NG!*O7!f=yW|0;9aLWxu)6^X~RFzTqFWExQXb#j8J z)}3nBVi+Kn?rA_}REzbbdeKN3%P1oe>FG_w3{X~oWH6q>5(2q|(!G&b3QNBI;8@&6 z$-YP!2`YSoQnDW~3y~lpo+TkP5`y6S2>$J9q+{o88&#ZL43PSkxt`ys;^S$6>-CK) zzBCR()?(CSR`N*HnWLa4QQjyH?a! zqHQQ&a zX8ROep<*}58UpsQD6dnhQ%`+DDXzyp<%la(95F+W!~3LJB6x!F%4Yz@JE$qF#D31H zrJSFLoIi5T*Je=H@ubN53ui5&thBdw^~U2#t&Q4dPWxSfCmo`e8}oF3t!01Blm0q` z{na7;bz|ONuTXLB4B@XEc^d3qN_9e}9-$Q1a%0|mSE%?U)l%3~5%8$y_@HdeqX>b@ zD9&d(f1SaGyNDBSQDP-7=ERXRfy!0*9w$zj2}}{wO&4+ooM&xP@ri8Ym*=_e*ra0N zOu%*DCKcz=k0&>&`2I{9LlUU-a1l$c5TLsWf1+iBg?q->tl_MLfwEh>6v32ooWwcSUlPRP_hDb=N? zPM-}_3Dw}vJeuh1r5v`#oq3&GR1D45eNIq=^S~w*(_}4wl;*BU(Sao1Q}!(? z!Q*p)DTz=l9Ph)s%0J3Wf#Qvalk11q;(bPal2ETD)Hr=E;RDWno+}RLch?o+PN}!| z6xa53MR=WxoIhSyg!^T|2eif^V|lL@>ObVn^i>#=QDCy}h=+2^$!}~`@g6B41Wcxm zdfZ$Q!Z|US60DlZA8l1JZ7zKbMiR*sDhc-Ml#a$Rg%UnW^hV&K#L~Gy@z1E*5u897 zE9X*-`=iLIp`7)UV>Gv9q&w9RUlYq|_pL^QJ4&zEp?c$^9=Te@RuVrN2aY0!f234z zM5g{iDNz?u{4Qm1U61_+A z_nLV|psKqMSK~}&t9jLx5ojJ6*YNizt@J8liIqQfPJ-C;K#46UW$bx4jB#n%B@!FZ zd@-?gf)-6=k!NirWzJRvMq4Nr=`!c%jbTcjM50NH_QUD8&b;YC6pA?wr{e{=rQ*X# z31m@ydT0-)v0H zfAx|Q>>>k6V&m5@Ey11S2!)Sbt71KYyWYK4#eF9Mu8*%(@hBChcgN+DoENBZHZnKF zZCqA@UlBXn5J!nWWcq_OU7-)0lSP;m@`6s760cL`$20wn-z3FfwbwhSXVq8iSES#io#eY>JT zI+;ogbfwC_SkB24y`gA8Tbr7)Z216fPjHpbm}&`r4p4YVp_qG(?{ zFE1BPag}$*_Bpn^DtbXpoj+;|VAqrs-DD)GzOK z9nPU2%BMvp@_LJx9Znz)<^C~BMGBx*`80k@XqDDN*uOqTsi0MJS)Qq&?szoZO1pfN z5~U&%1FL*OD3L&E&k9n$&Td$M>5j%jso68_HRCieJA+PCXwfJ8(?+5Q6CcQ~Ao>Vk5Q zs#J8*ZY|COs^*lULW?Fzp&~Uwi*@0r>fw#U6(7^q_<0Ozko&B_XjBuD8ioq5_Yhj= zx|Eizo-(y=pu3x5(ELPv4U}DqLL0O8Oeh77S?N=BLLYA9Sp*EjaSw(fQQG$?h(M_` zu(K;F{Z4qAi_UaW=y*1d2LsJq!$d+49hr{T7h31;@7H4C(`lCrl;4eEF6{ig@g)r2 z_sQD?yW+9IY5`ssk4JgyVmO%+@qnr(nn+(L)m!aNdSl(XH&c77NJe^MV)q_&kk(Ku zlnQou28kr0H?x%B*2oLD+A}zu$gMW zOi0w?1i>c@IH75N(V0T&Q7Wio9l0N!lJ0bQ)ClD_V$&&gx)oj0UUFN#*fE;z$&sYL zKh&i`*{>)%MmCIzO@F+fS6X?50ObLNwMOhF#PFbOSi%y?>iU5cl#S^FeHBUlkX=Qm z*3AeFP~$Zj-L zR7ZicTz-6v1kf6fd6Hd+px{Y%H3eFlb3mj*Jv?U3CLN(sT=}x)kyt9bD7CKNXzVn; z$u5ugMN*!={?xh=2~#O;zZ|hpYz!;sp+iCw-)KCnaE%Bq;_-+@++?*xRv41G6#Ptq z=(#pM5CsF~K*Z3-h$I~Ei^M`PajO%Q2gfKCY~du3oK1b4F0kkk`SPb~Z_=|?9ve{3 zF5+mt^VjA9nE(!idaCEskoeLfr6LvT0Y3PZ-lbD(nlOmVis*;oeuvyMo+Cz+Kjm-( zD*CUh{cpP3gT}t}19t4oWtHw_27ddG3m11jF3CEf_Jy6yoLc_#x^>*%A4a_)FQMd``I>tmn%lNT4^3T@T0m_VNYcew5keM`FOn|f*;bY3{4JCX1 zy^-z|<R-+=4J2;W((x5U{q*mb@xyc<3VGKBD5)M*>sgtHl0%+KTsWf*-^s3e_?H>*RzK;x3nd zu!JMrQC|l*!d)-3^$52^rbBQ(a-)hzWisJ9>LwM(e;sfgcaw@nLZ?vwXIcJ4KH!}B zStLk~r6?*9Zn$0%y~=o*9#Xhhxr6~J-p!B&n-mUncX0vrLyfYa zmk}P~{F=ft_+CZZmoBmwcKxfV2wtkYHoXg3R zWpcI{6`i6dYq_nT%B^|ccOF;aa_g;m-j$E5nCk|_{v{~$c08`i6Y2A)T~KpL_M(nj zX`7o{X~W%*t5{0E)2-A)Yip!n_*>IvX|>~R(6lX|$t9FPihbBnpmEnCdXGFxvk zf0OA3;n?rXq?g_FW~N5o_?gUaWoNv@EuHb_M3!38F=IsoA!qzN#};%L%pZ-fF}ulT zlbcMHd@Ff)@qz9os2kBs{+<0u^x=SWu~!Z&4&>_&QZt)Fc8Rok&57(0WA&u)mr^}B zmx0Sa;)BKjY#Cq>_IR8_AQ3Ihl7Z`rTHS*Lr@f&8EDSMfzk$LOAv1Nr;+ ztC&}(j~5Q)KfRwk>MXjFP88Dl#abu__}DgG{P0r#EBjR}tK&iQ%lYr`SMd!>d_zmb z@ir5@vJNPoIhG-w%P;tuiXD`*fO5KeLy;JsXS|15*TqXHUu)IY;8h0xC1ta33`!fl zobOt8gNhfpfCAPzvf$Nx4p^_%0UWSO>M39m#1ACIa{}V4^%A0;A;|HzNr>n3!Gn@L zGW|k64@&wBzz1Z(!F(arZ)Ey4iTJ#cX2i9ONW+{rWx?zDt~+j2aSq8qoIxw8S#XtL~4-qxGaPPc*e0=VfhpRZb|yo_e{nniBWaXY8y_@1!MS*$gt{ zU__1uMYh-;_N@~bMkbao$9J*>IPrv1Jgf^qiJ#{ZfC4FnV@mHM_CEm})iE49by;^Z!jtjDsx~jSqg$>fG zlsK{>hgFx=%wBFS0d4F(MD>^BLOQ}~QuG7WrTBs_03{~m65w-Seo;x8EyBWREJ+STAPIxjyCz*0rrdbN~x)eXZi zc535to_?hB{@sc^oY+lUx1J{B4FcVSKgPpDndwlv`Cfs_$ziOVTT_Zj9vY`45?Dp~ zvpj(F$?Yn>DfQp)`e3_?g&x55*>)A(9N;)jaWVZ>j+mwwnO0mNryDb;lj6Jpk z`gV70fqo~}t%_0=rt{6Dod-R1#R{cJiBB8kZxuI@RVD^;n?jp;-`3T5H0e6_p` zTP5W6ic6hPhRYghh&QRd3^&MvZHnu(_A*>c1rQf)-72~6QTU>*9YpJu!6G~+eet?6 zF03iSUP9r9_-ms8aF(nn!=EID+ZET86=nDZQ8=li3@=HhTaKX1U6z;OjWpon%gazU zADH;`@-i%)Pr@9wL&bX%;!Xu9oU=p4RVY!mx|Zxv5uLAl<-@k@6$*#h4QQJjT?)I^ zu-a$BYM-&yzA+!-ax#3z*7%OWMx;@kSH=e)wP=_x{=|knx_#q5l6kmyXShsqRiqzR zW3M9I@1i{RmW%SpTaIa>sUKXNN1M;8C=r1;C4CAd`1**8^QdhGn&@^N5+dG@@8{7M z={M=7a4Y6rp;#+b{2K19s99Z;#{yi#0&FB2!&+yi{9U2gqTWbU!?i{m+9hc0Vj7n= z0afvSU>A#Z6G@)LEnKI2DG|XfT=H{DaGh@9I=xGEI-2Sf)7JRm4y-WXP1z zNUCO9ObJDC9ZxAx-5$>4x;@Nt9q;AuuYFAQ6iP7feaw3yaXECw#T4N6e4Lhuzmdnp z-(ce3^on-=Mjkch^S!!TzL7^!5yjP1EsB!waK>1=XuEi}p7{x9x;XO`%1ow0i4->R zip#vyfZ{VLm+-&iAc6}B6wb~aD%O^X0I|v8x^RbzZYtq|O|sxSqF|5;>{OBW@P@IC z528{t65PHq{Ai$0*j4SZ7y(cI%usB78dAa&hw z8c@Xsjl_Cd2cl7653fBPwm@gL$FX}>DJN>6>~Ux^QA-ITK~pz_nmZg$;C@COzW^w{ zo z9V+I@^4~jLckED6XCV4z!Jh=;8D>P{sLApdg{YBch)8@fQy?v@l@KpETu=GSu+1pA zSQh+Q6zu1Mv(^;h23hcu!*$J?BD~E7+t(Cfw=8(s;d*3E5sqn*H#DBwLJA^?pGt_= z1jJ=J#Qg+e;mDyxBD4-SVsEjCvL6c<{+M03yj8T-kJ)pkx3XJJhw?EuEt;dbI-de+ zq7|qdz`xjgHgO__f3f2{-)g?m>(a8{)0F>|vl7$Am8a$mzR&H_GMZBq5ax{HCyt_s z&#nD4ZtbtN0w_K}*`Ww7%75kMv3QU3UZXq;0e9q62&nK8;3s)Cc@c}#% zSt3avJch>|n<$^g9X&GtdIdb(=$Gkj^sUS?oFyr4kTQJNNV5#r>N4EUGElI)R6=|v zV%h^-@X-zxH^_qR`EXviybQZ#dY4T9RHkp2>EFuq6EgjtO#dujh^CGc>iaD%MQbth zd7P}{Tk+17T2~4;;YpY9wP*7=Tt1sWx26=o@(EvimhUxv&Zqm@vurL@_J#UA^aRTf z3Mh)X+Sucs%co%XO-`inTs}p+=P8xK>wF>VtCZ-b(MJ;R=KE)tV$SJ6Wjqn-$r#>T zT5w%$DLki3&*T2i?3=?f%)ZI)Y|bb?cAVj?FK`QKKb?HAin8Mo9L)dutWqrJJP+k1 z2Ra9FJJ+n2~{yK zp~u29`CGz4aqAa=%GHB-w}85~w+JglS=8#@E1*_a-a(_0;uPhs9>fO)A%6)@?f{B6 zQx*Y!$bbt3;1!KH;H)0vbY@XHwd0tUZ9fL~ik7am+e z5J_Ca;JYb7;MX$vGXzdwApSDk`$f?dUY4!&F(b{b^reL|QoOfN$N05`cs*alqCd&> zn<5sy@kLWCqS*71EWfCLDLNKOie-z4;um+S$U9cZaCU)f`c4%UTtIzRi7Ys`fO|3TDcJUx|WCxPU5Dmo6Y}?O!IV{0u=@j85nToR&zn@`+*G zjJM^D%8wOt&+%9x^&Foqqx+tK$GCltJ45d|9xJ5SM9WGwP#)vfN_U0-tdP#W1%bne-yA~YT_PovSBS|ZI;Og(2%kh7=+z5A62Ma2e=?HHOZ zdcUVd9iHYotT_Xy;t-Cf3n_+gri?*KQIy+HsqRF)PkwUX>B2`Bl;E)CT)pW~p5|Jh zGLmc^h(_@|7f)W!o#YFJ)JfKGB83+UsgvwmZo8)&*7f~2BlI7P4TcRC{+ls9WAHRg zAI0AsFGfJ`u~#3vf;;c`xS32^0Tl10^1)CPuX6;rYy~yS;=faF7lzdG1toZl;O_g9 zab@j=eDm^e2(sAqWkG&B=lw&F->yVFUZsfC9+IKwdB(b#K#ETh5O1h7KKX+V@diWu znIR$q;$4-7ByZ{v?=r-P3~{M|_*kU?=jfDNK4yp`J4p}@;g5YqbPLZGf&(-?OOyxT zS<&Mh+bIL|R6=2lXC%fe65|yk%^|%_$2il#cw0jJy--ZCd}^e*``*NW)H@WH3t|2) zNL{9rx|t!U$2nR;d{8LHNE2oHHkH5EYRbh}gL^%KKS`GVP!+;A$@HD75M`l}W>J33 zj7XGlx_~;WM|Dx2Vu;!&%g`qw?owSVo-D&loq%)olVunz2k5fIiwayb<*Ev2pZ|VEFm6M`IGj-E;-UWD77y~dRJ3Ejr2Z|`T9t& zV1lrc80nF)WfO$qcS&I<$n-{4Xl|O3W|?l+WqOchqHz#Cc0qo7u5g4#$-;01pQLb! zq`2HjGsTy6ivKVuc1ws$1;tc0#c#>-D$VkT*dGQa{%S=Ten%{4Y#M{FON@t)lpj}365}7T`U{P;i)M45=gLv_!|4L5{#$zW zKVyiR6=mp?5Pwr$i&vCkyar5MyP^z}HGr89O6EV-nSWbiyeXMqV5FIOjYjq+=2xW) zh`C#n9&tKDkQr~35Fe{>{%NO*AIkJ6s;h99iawIz3%gX@D`mL;NY|`gD%KGJ5zroy z82^&O{MJabFdGSyg?S-eK*C(A3v&}gkT9=Fh~LRZ_<>9xkm)Z@6lVRCWL0UTnbku~ zi0VBnT|lgUqqBO^fH+k`yeQhr+d2fgNp~d7dq=$_ za`32xcvU#~ncdRC2PO(Xlxu-M>XvJP577@=3;YE^lFOeZA>~@&ADA?)1#XrFaxL)B zR4~$_D$ml3n-W}NMZ`<*CDW!5>@XI!&M)E*ne&V2L*~tHvEvfT`9(BPu==pzx!W|= zoyKa;RzYM-5Oph^zV6u|1Y7#GGB4$1c9>`}rN>~zoYo`!GQgZ(G30uj-x;W*6o33YRz#yNjnXuK^*EnO|9&rd z2z~4SSeo^bBKC;GB6`7tvfwdMFrEue-KF9&S@3v~YsoGZUyT5+&@L70=|^OjijN4? z-UnP-3%3|rcui>GHP*s$D|IcrChRBc{07(ggq8GtMzeGWxt6n50>!^0&2-`IA{wOb zp`14;C%y_FvTA-xNJ)Iiig;=zjV~SaqD>5EJIO^prg9pAp3QF*oVtp9k##lxc+qs< z5Gn~%2^UO~1qVeziVH|rC&+>ig|0TNlDevl0<5c+DCwJ8;4BHc!O1PKmmp{kd@Vs_ zYqLj74a~%DV;%LoPNgadeAh{~z9y>c?7PnObnQxI0vGeI-$a4pda7&}zUL(Uyf6}V z+7gi*=5x3I)v9x96eX)7redWEmrFhR^`o2O_fWt)2Ai6LV9mu45 z8*LmRs_XN3r^Wib^G+(ozYMDD^Kwva5!c{pi3}lc$55Wa^sW;0uF9)AxfF$cx@xWx z^eU5yF1lO-TRAAolRsrtdg-)vX z3wgXK`2w%uE-{F_koPDp@9^lX^?0#6=*2u9rgt1KA}@~sXx-rqS^k&2VNA2`SCThh z2pN9JZbUL16css`*F2{boBG7+!9kYjGD^k!>9LQ4c}wS(;^`4oHOOYA1q&^KJ3$X9 z6WM=>s{M-zy=zqMUwKt?N@WKek)p463==)IuAi>9iWAKrVQ+!Z`38qll>#<6XpZ_z zG2N^i989ya8&~qLh8W$REe^+A!fUgOC}(mQ(^t$ZMJFYU72=B=;f7KSP+oTgmpCXI zoErm*lhkD5tFVzN+#>-tGQhqVwcx{+l;Lbyhm8)`lqF?&D+ah~mz3eSIN&;UNg0~r z1e)BX;yej@k;C=sP1~29y|<|NokZK>aBaFp z#ovhV#kZ(%^#jhUZ&C55(vdJ!C0%>&=}* zTMS8ob6Kh~0y=~O|JSWsgL_7_?8N`y1*@*XPe-)mObgM-k~O%Ow#!m*yvQMUN?ybP z3zJf~n1fnT!w7_8+8XYVWsJQKdx}Inyh+5vn;5lyHN7tojmFpTrWD-7ackXbJxbmr zSn;~b8!`;+a`3v!dBoINvRlOmvfviS)Y-dLz%_rjiao1=i56aFoQ{=SK1>8 zyubxS;0Rf8hnawykOamjC>Vxzt2jo&J??OA+^yn7g1BI}iWLNr?R^okv66c(T?_Y< z1CuVF5{=?1ZWOB$qES4>je=ePu0E^37I=!=#4y70>R>IQQ+>ebYn~BgpJB3FCD~_~ z>~2blw)PCu{Zf)g>d!fDYAi(^B|7mJ2MxBw6&#P7Ch&0{bEfK-sgfVcB?pD z7QF13`0#EOO9qJ5FLtX4%7VW-#Mg4KOuylP^P}A=2931Kb*qXnA!gex6b>iS<0$FA z4`NTDaNoCtir-=tCkKS(-eMJ>Ln)!+w^+qb46us-!7BbUB|7mwYv-$ja)S1KR`L2l zTPpsxuHuiF$iYFXH>vOfS+Bo4CjNSP8RBc?V&BFn{Ss@$=jV2I8L_rzDpbU|K zsDRi>??6M+9lJXrcpRdjfFdF|0xAxOdIW-q%25=-5m8YFMHCe$Kt%*`z=8L=SJmF> zgn;_j)ZU-^~_yN9M zfod~Ux*cZl*+^ZUJ8Uu20LymhHyNu&zYRAnK$DMbTcHB&HTz^8^aWlnn zGp-WH-7AiJl0Xq=iR1PXV7=FG4VV1;upGzuYh}#1GezR>v45NRd;Z@h{?2QuE4>?k zJxz{#wa4E6H(g1O4KfM$8;=b$@Eqf@kPC~)+Fsp&$BH76Qm5vwl<7L#+y}Lj9uy~a zxmr8vL2=SWgd#F$cu<@)=W5yMc}V>7^3{Oo7B#XTN`bfi0uLq{_~8`)#S1)Gbq$TE z8J>w-Ou{2NkRCGD-;>18xEFZvxJjR zy@Jn@b!)p=TeDcK>2|%gX0cdPNJv|=Sgg7Bda>pyvF73HjWz9z?59kbbusV~txMSr zv?h5(CVH8Kr&C(A7?FwBZZOuA8f(^P8f#*PaH;07i5%)%Q&JiUIOdqEA@M49nLgzC z6qQpH;tciql=pjQplSjS(gV+nnKuxsB*cbqHX&{1^J3=S3E-^pg%ob|oi>p`SsZVs zaFL`f!9Y z#tqYr8#eLNg}WAbFvk!sPw~%N;DP@}z`tOD2kmd9N0%+|;Ne<|Hx_tsz9g`Y|HmY} zX3AulfnV1i?JI;IR#;eR64s{pcU4%JOBwqrEWFGgNtG7X+z7PxRa$`m*h&i@NKOXr zTPEiw&GK_e_-KI#>rKLoDgNCHJm`26(0bnjzT}*;kYmTA7JAU*CYrzj!zZ=W95D1} zLjAJV$MKxlea#){Zq>27RSI?ZO*(eBN}-k#(uKNJ3U%>K35C=0>X8?OZ zgunQ{&gNJ26=j9-sChU0otq@!zn9`YX_BlDwi47{K`kW8%hmN$TIrhlMGCy9jLgL8 z2HvaNr@pOph26zP4yIpb(!bQ{qZ89vfLEII?@a+-XW*UM+rNll7QZItC|dh(W&rcEnoX%}tVZ4p`2J+ThOk+Vo8C)Ib3dCje4NT7sq2`hq!OPB%b%HE z!SoP5lN_CIp$U5Q_Ml$}`RDp*T){1-47_0hOVx0rH#QJB?RL?{cC z*K@{d)EuFUY;u~);hx>(wDx^7u=W<+ice1K$JN5Ax&-w})wYCmP)$x_Q2lo*53*EZ zcG{r68EA5=8M59dN4d&x1$-~lPPWz4({}ew#|q*$5f>SY+tXgXFdge}1zP0>D&moN zS^3DbI^y=UYxbu@&1vN#JGeN&_ak$M@IV?HluvJEdvPQmb`IfjLG7a!V=M7^+NeGm zIAt2^Do1xGwbqWEk|uF~`ZVLO^QRdP=e5=zX57pAZby@2b{f1Z&d)?I1J6l=_mqVm z3^wq*H2>oZJt&w4v|h~SS2qTuO!9&>9mnMcelShP@wF~2alA-0Wji;?B+M{`ce=0; zZXh92Y}P&Z^5p{xIPofvw>V)}r?qq)dJgVPOFOp-(!V6Hda)9=$Mtu^1#2+fv^GoA zWC?hw98>;&8Y?r;?JZ5yOTc9|UXlnp`nCgS`=YE|pj=oQDz@>qTp-4(xGGKBuvHRn z*|+I%TO~&ZyWU0_Y%o?yv>`i&H`6#dntYpd5UT~4eVb|7_#8M{zM@O`?CGY2drvnd zyd<%NH;l9JU*p*~({z!&ZQ#{u2ef?h1Y^BA^bY2l<)Dpex}*IOB>WL15=3mleoxOd@0pL%}A^!XP$*G8>l7@ z&N$?R({;#ypdI3yVH|Sm4C9dYr`HSlPA10}CT9B@_$w2NLtR)xF>eMNu6m)^fTt3J z@!bQ1ahndtuH<%LFiON2&tt88BFs|Wsl#!ngk#?s3>AjsP7{uHxEMc6X_U_Zd{^+T z_j3Fw)DtL37Sqa&JwNJG&a;_NUj^BtHu6m%<2|f3wc@Wdl@qXmztXz*&%kRlbjklE zCBKnSCDV4UX@ai_>5~6TO5U2ut_0O`DzC*%z;`vZ4B>jgbePGeiyKXojh5B=D9W9t z)OhP(ePzS;xNiI&%IJ&t-Cd!ZJyLyd_HYNM+f2t_H+yvTrN3_R(1uGWw_Y)n$DMUL z#{=sy-J|=DnI4r>ZUZwtclFP}=$YCBGd=7-rVy%R8a?nhA?<;g9`+xX-vRjM(CElm z%<-^0xbu$0IB$0j=6DY54jde$Wq;bZ=MImw>~rrhVZQhd6Xx$2he^xMm5vQ2$83+R zbga6Ao@Ud##U$M4(QWj1E-dl>J_+l``vJa5jP~^hM*CckG`*jbS3Ng}?QsRJr?J5; zyGM1|Jt}3l;|{0n9!)5_`5t;--FaZ!TU_@=8>av_f}bU`CN1))oMIbTBv05hxlp3&k!Dl!k(X1EcVPJ5+tqBRl5$Na>_I9SdHRGKX(3 zW1tu-J=b5Bj{lIU_mzbn9CwCpz+UmR{)8Q?|Eq-_ESKb+3q5FNlHc(7lNWjLt|a&t zd5~M1&}@+hpEIGpuepQPeY}2*>qEH}fxdWGd-`4R^d6ck4?O_ydhT4^1cUB!G}jdH zbv^_9ig2w|+3LI49@Z<=s2z)xR@xWZWHj#ew3{ww!X12Owhj$XzB`(@0vVHI3LpW!)n#XbZKbQDF!DIdCnIU4pfZxL@4& z9>Dh{JrNm;w;R2BVLBrB$k6+3Ngppda=Z8!qtn}sWV?9&J!ZRjJ%4b!IO$%R!(HLO z4C&fNvMcPn7m!`ye*E#{rI{E;()#5bkXMm~t2I@S^u~QP^^W;cC9n0bE4YL5>DMUn(#i}uNmUJ0eOuU!yEa^TGj~mDM%_OCNO2IGb9({vbQB98tX^%ixrU#H5Z)Z1)i0 z`-O>>=tIQ7hiF&*{zH4$7?zuG!|xW%Rcem%UcAVIk+}f<-N7GU%#Hjc%Z7zsi4nzVuu+!$QZwacR&XI>x%3k&0Kv(d@;?u9rd}` z&-^3Jp6y5~t#!KI=u`}((Lq~Lt<)Ux&MGQc&p8QCK-rNJd?DwR$ofGg9n*t~tk<~8 zJ*Ze<2WXeTro19HI^ij)FJd=M9&~&d@ISf8gFX)ft)E`RPXz0G zAV#j;?NOnyY~~J(%CRVXGD^Iw{96`z zaOJ~{?s|T&Clz1I8VudENr~e(iMXqbxJ@E%rYmk!g1EUx+(%m69EuZXEHVkdYiG=J zoblq}IHNGmC%PPOd?SM*s>eHGV!RWEaq+rQZ@;Lw)>UtRf_f{B7S&1OjZIYV;NH+; zu?=&RmB^c#B<`3hSEp<>@}?#+YJPX+O_lphwD;E-dADkLDUY!CVr*RwT*%_9Iq;$Bgz&m&G;-m8_$E{|cJ{JiK9qvB4Z z$%9GalHsn3znO#uT1DGY@!DDyz27YIAgPURc$OylGiyAUm0BlC#f?(yM5#MmrPdjx=#dMI>`%1p`yAQJ4^wu2tQgxJ3JhS_>y_La+Q{h^o@hDL?)i|dswn&B2OL)XpGdvQNZlt=?{}r{OOX1z zk-A??o$p9}>2IZ0;CEN-gcNB^CZw=Ed&7vGASVkxbHz?b;iy|1>usw?8Ix0_McwX* zRgWLKxO(9aSLjqNbgBq#^tdjrsUkG%aVJKmCI~&&2)$hkJ^gVLBR&33XaIk@Qt#AK z?-Z&1jMO_tYS5K>XM)tzjMQ0LYMCST#=n(Xioaa3_iM5Di`Z#K?END4QCIB!31ZJQ zVjtFG7dc{I|9i19?04nP*K+5J+_gsTe384&l{-H{ZZ{+MNiFwBN3QpYLznCTR4Z<> zv+mSrp*12j;|X1|H6pb26Hdw2BnTa7gf7)W&wRp^?1g_Pv;x<=QkQ9|%S7s6BXyZb zEp??XOOQIkNPSUDt#G8?`nOU`af2&%r53wV#NK7Zt`xBgU9l?@#Evy$U)N%vb;Q2= zH)3U-025TY?s(Q{xobr3heqxik^8wTca4@?zqPxP?~wNx9f)G0sy03Qhbf9vl@Eo( z4wu7+DYE8}9m7`nwdV=I+h=no#v3!XruZ-0oQXF70ldYVGclztkPYBk|M<%DM&Ggg5vcLtF=nh^vRtCq ztHinb6#pdU9I}1IE1z$@;^nr)QwtmoU-62HvMsc#t=>F%-P?l4iPIOFZJ}lh&9=~o zZS_L9Yzw7do{3LQjyJqs9)#Iu(q*BXM+km&(}iO@hhx6O(VLgRkxT0td0K}zy|U3X zbYVlqGrm00%66D6Va(l#HQLHGVqI##Ypu<|q`;T^5hHbPB6@qlQ`N7PZ$#(O%pHd zbBteH$9QWoqp-d@6=7-IyN{3CF-%j{>H6NOr@S)4drCgPZMqo9jYDY&xskE_{VKoW z%#PxDDU_`(VlWMI~F+)}fv;yn_O3yHL=0>yE5 zgnE;BL8FRuGO&^yH}LpJNdGH+HxS9TZYpbke;`ZGu)Sx%)+tar_~EKWimJcM(xyB^F7OT1mnYXHgTZ5JnS7 z$Uom$q65LoK)Be(Z4%t;S5gTBSgQcvtt5(!#r?9w+j*7o8D=)3QN0P5gfK%|yn6@* zBW0m*ARNd2f}2MsACpPR7~CnSr&duse7_MJ!s8_T^dMlb*WYf52c2I5TA#awdo zdWi>Do8+6k{<%v$X!9xnNx0D@RO^J!lJNKv52l%fo4x*5sP?Ns>vw2Iiw~E0aH-Jo z1I4=y-FmOT?c*L?#{|^AuOvqS-E)fxyN0-3m8&^Q-UG=g2Nbsp*S>0A_aU(9RUkJC zrCw$0j$}D$#zAdac_3=nK4LO#L?|3T!+p~v6poL;3{|bvoLm6sxKE4Wte={|f!d+( zPfd`N6Uzh6N$X%?D@DiJ83?aAEy_94bNc47xI;LX&?&F+PLe#Fdvpg2tzH9sPcgN! z9nL2vkC>N;DMlC4pZgkvLwE6OIsjCwi~p+{4|==?_`k35pr4R9CYA@Uj76gH9%bdc zJ)zc8ea^Yrznj(dDl2$1eWJfp14+`KHXAmAU#oO%h+se@oF6Mb1c&@sai78c`yGTL z9vIb(UoX{XE$vD(DV_RB@$u!&%q-ypeeJsV6CC)?3_9yM4Nj6BSvs*h4U(}we$&^kw+Lid_?=knUho9B(p^DE~? zI$9X=8owY0&SP|pBT!_3y9ktq%0h92_<)GwvU1?OYdTsu;&l#f0 z#b65p(RhgSIXj5%Oz87E`wfO-sa+E9XNOTik>g2UYKKR~N23=JcMuT`jT&7`vyiCr zP-P^JOG)w;;nAUR9G71AQWNYWSQZK*%0%BAKz5)sY6pVj6P1WkiDqvAzQ$+s3%*bg zWu$Na25W?O>k!0zg2m6`jzGppX{wCm`_pAr)`D4Me9`t?_Xz}c`9$dm7FFotQ)o)S* zx57D&`@bsp|9+LbL#@rwRc?}U>Rel?b8zaMR5|A?%p~Y~uS?1FUo! zI*pKyb%Qyd7^!xX)Q_Dk^jQt?u!<&9Iva8u2zfP0_gC3tFhxWat(M`91}ayhwkLC= zF8|7kKG>9N-l`LNnuy`GNXUD?CE=xkVQi%twOBTEki2{TlU!pt=xM+pranjznU10S6EN*Q))$->TiM)+XzK zyD`b>P}@m|nq)fEGo?dKHe=WuliK&NFlLSJP;ZpeD)$j8f`J|-BmsA0QuiJf7Oeqt zP2Z{Mkt<_Kbz>4olf1I;7UA>88fngM6W~1pW6V2gKN1*=+a=}Hw}DoCMLLFQf`Ipp zXFXVN284Gf`EOe0LC3cN|Lw~>7|S2?mU&R|HYdI${oIh=qe-Wcf}}6=2T9ktq(2$b zdo}5Iq#)_3?{J*C%!9ml5(krIb}$t9zmeqsg22B=&GqQOU*ZOSo&g%Y znj5?|%RKOO)N`Vzll&#mdvMRYfd9(pJ@|+}#y{`D9{#xgc@KPR0spPfd(d(%1DlzT zHkp^|%w0*r%s21{GvCJ_%=`?0F!NeB^BE@dGdlAQQZVxw?*WpzH-9j55q~iA)$b(+ ze^Jy9j4cSn<90M0`@hEj|NX}QUR9l<>%gwV8g1-Sd3`P1^`5Q+yQKSHPpAk6`kIi$ z_%79@uZ3UVWBaaG8-5ge^*-S1*^w&(kzhq>MGQZwRYTKp^!q@oXdoPnlwptB+bn~h za*`|*tisQdwI#D&OMDB>bXk zM=GQ3K>7cTi~o0wi)SgmAkDR+mQM40sK&bGM;BTMzOUo7C1+kY5h#KN?jj&j+H%{4 z79MzC7Wt#GII>B*h;V5Htq8nCU~~w60;?H;&ocr;ID?4Ij4>z4DUAR}GaAk&G&*FUu7pY?taNe# z5fXMs_Zwj0ign!fjYQ%&hMBKi2l%!yl8Q%%N`v~dz!%rCaXZ+S%8=SST4b49AGMmJ zxPzatyTbdPcT@J2fB?U*tGl}*>)P%{js8llP`;L_v;PnZj~apd)ZBEv4ZGV@>!u~4 zbU=R}xLdwaOIDyu{Rn9B_6r`g;*Sk4 zc+l@7YVbeaHuxu@^MIOec9s&CxfwgP%iIi|+GXz5gDg~hq+>^~P;VqudX|)rVWe@JE z1!`}hg~2r5U6x%+$X%9whmdiVUUB_~7;)7Cl|0zOk9A$8iE5W+8-FbB(95!IKCbVM z!2fJn_MbTAK~>#Y59||{5fAQ^RjSbt3xyx+_|eOVGYPrNi1P@E3s$M)hFDnovD0wZ zUq*cWW59R%x#ADKjJSiCP8y?^5r3jne4{i8S$Su=%EIez38AM zciD>-tajP!^ouQY{zN-SFJnarxyxQvgv3ENCY^J!h3h{#+-0v>pGdgqWv_<`ILltE z2sq1LKYnt+ve%XuJh;y^Xm=<1`z`mN(H6izbh!uT@yFQZ9`xSA)d7+|VMy=Mq*suF zq%--0r1M9xUXKUzU6DI)5a;=)vcou^^cF6O(zV&ip$m znEAZV0m*y`e=zfv{K3q(eC}l4YcfBhGtVOhGk?P$l$^8`kjy9Z2Q#0&6$y>d|7e-! zpOo1nir1mC%o3LsSY{3PUc1!fOD$ZqRhOAwR=ACjyR7gaAt{qx>aI&IEZJH+O3}*- zFKh*TM|9!{qt3FzyIT)jR`8Roc3I(bX3ZxqaaloqL7(Ymh0;!X&|sDod`yyMg-Vm~ z|If0*Kk@85KEFtG7auVz?lYLL_oaS@`uYTT=qrXY48}r z&NTQc0;A0|_{J{)-$Z)MOoQ*DM|^i^Oddyi3yE>thkrT^{wF?p)NLUWrfu{|!@+j+ z-eDHrr{(UnZ8srz+V(r4#A#dOFP(wX(aFOtocLv(Y11gQJYm`v{F1?QSo11# zHfsdttF;YGth}!_sXMW{huWBl)r-R|c)n?HVs*|pPOH_>#Oi`?0N>M8+L>4lA!Z*j z#b#o4#W!^)R@V@ACRX>5Jijw|yjoAJ9{z?VAN=@V?KSGrXe5fqR1I%D0ig5|Kt3Y$ zI&I-3mB0tIAmIogj{={YYhS5PVY#!_Az|~r0MC+X-jB-{FA2O?w9CLZ4sQa#)a9L0 zcLLn1^#FOp*`KQ?!FWQBE9QiOm1^(E40yIV&RuDqWIBL@aJ1!q4}UHXU;T$4Kq=O} zA-pav-DNR^)dk*hzh&U2&VZLk9^UCTWgut z3&?s*hektj8w*5FT`onyQbopD+jvre5bu^bonpdJOJ)5Pxpp*4K<<^P?};(7NLWfG zSN_F9ab@nc`Td5$qC^JAU-35#8o1Xwr=$!uO77dqaqqD1 zOat9Jtn&%UQE79Bb=fu?pj*S2t&#g;9oyutuU4B#e(u$3w-VCa_0?)i8{l5>r40kY=ChCcN|jZCAF;ok{b<=-mWj`{7Y^$JeiPY zt#35U-+rJ+VW;_A?Tkj0C-(gNb6F6^2-8DM5`O_L7a1gjW9&P4cAl>ZW*VJE{ zDz(E*Z*~oyt1r9j6&dK|$R;r4V6xqV)(27I@cV5ntFOh0BQp?mv>;GcSBu8dq`K|C ztP}RM<92a86du)Md~vBA>sAuCqhNcw%~Ow@2a?0_-qFao_~>4N;&?>UCDkM2jafY+ z;dm%qVGE-J#1;p_aZbdk$Kg(R&35=pI`K>KBU;i3znd^^2t}P&L4gF{FChG@>)I(Qi!a=cp$2aroKMHMQCdI)Yqq$rbnc#EFk*S4-}!%{;3sK zKT;Bi94FQfl?0L=kxWAMQLWlmqq;RXTv1x;)FN;471MZ$A;1BK zsz=FZc-(QG9py+5-sGBXItRa2s-Gh)12{vt;t+(Qk{#_4C>~9obHCR-FM6-Z0X)q( z)0MyW5NxTjJK{BJe0B(W8K<1t&h$g@CQtraE3&&R;{Zj3xI_C|;^~JV*55?9O7A+9 z68z4|@x*6`@B~|fupKRkL`vaJ?s}(I_0hQp`YaYGu?y`uyvfy#G}Zax0}UD-FDor{ zDbYBA62rVeDwM_9h0-6o#L#s33qbieACZ{VnV;44jx;MS3$`hal$D1{?PjAQdAaS* z%5C4NS=1gCC+Thy(x6>C)K|GGs|aY@JfmSU4&~LEho&ixl#lN* z+Abao)vN(Z{UM?H)2p&#ka2HTtfDB!chqDM>}n^3{DKE+TrF)ez>imJ$r6l^A-ox4 zsB%}fBL`_Gjj>S8XJ-B9j#T$xXw*KlkGC+^Rg>g z$8n>gk#V>|ZqrK!&|Rh@-RZ!|?9Ic_4}#pYgOkOI67*mVe^7=?4RB)*jS1l7klZd5 zZWoeU^0xrFT}V}Y-vZuIV=O$<86aUl|Ku?ij`@}m(GXwp3?^blk`l&4h4D}_K81|S zfuU6FtZ$te$xzBMcQp+CazwfjSYrfUA_8mb3bd=rOCv!WH_D}Je0lmDrv;I8zIDgZ)g{1ER|0!_`Cx1^0*D3nr*PFx>)UdT^*qRzho1Jykl;9s!5wW4eIV1pYKNq19I0dhv{;xUn(H4i}b}hT@pa%Wxz-9@e+kJuI&{zr2e9Vwc0f!++FpVW83` zj^1BNT-bp={?RF#hm#o7yg^&9qc`0xk-k{aXYU4lAJScASSoDB?dF0v<7Jmod1;aa z%niFuzIz&FX1eC{5tD`7@Z%^pXyZvt-C+hq87z^#s*A-xYvfnq> zLf4;6%W={9kf!QNKpql3z@Uoz+YOrNbLY7B0X9GwM~+Jy%fLP5+FWYN#Eb$EvW*N{TI zmDfdk^>(j#Yu3-ktG&C__398qcbBGH>d=j@M^|a+?$mT^9lB}t=;j!@S(@(jUyR&E z33T-Sazi)UtMy%L;9GURYn*&vB;;ds|7hrL@k(^x^NWe@CBHcFl+smOK2>x2$l-KS zSJ!ehcDhoz@1RFTd|*k54Bss`r7Td@H>@Wj`<*{v&iM($D?ZHD^rP2+f{z-ri9zeG zhcmQdwvHU8#rWb&ESHBWYYz^|N5J(y(N^gys|xZ_cJnZrFt(6d5f1S!@-`Lml8(7- z`E^gF?nzcz<$7Y!JY0@@rH(caW0w9=j5%`A+`$;QH=(L|$+e@XFr-mNYDrldze~YoKbB44pnbDFcq=1__;!*4SEdGooui85udgoTRd%0DGc(BziPYv!OO7 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

5mvAd(`6 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

0XqbB1?#r9XwXDu8vyw@!!gi266Ac zz>1(HbuwVKqM6Ly?LKbTV{_o3=FWYA)OTKe8gX%7pcktsQH|7MqwEpR_2EAElQ||z z8V8MWj=3*L+2(zL%{UQ) z;-2>fwv-Ww^B$Qp4jy(HK9)!&*H`#Om04Z~8~BWAYAq%8 zchC0+Ru|NFzmuu%7h851kKCVTN!!f_M9{rIkjst-vFEVc?AL~~3GG&^h5$7gR7178 z+>eve??;-%r;qD`LrtkV>-~Yb@ca7%n?d`;ppaC_Ax0d64q*g zZHD`KqPA+Y|A5OxP8D#U6ht+ce0n?rf{jc1ukkjqV*W>98^_RCcJG0`95~_8wQqk$ zfoN`3-yR~UJ^$N*N^b@E5Q1ay4lC4!!q!fD8kaSa&~SMXb4=R&I66TitQpRQ#(m z?Z&|t!BQUzWbJ<_u!BcE|6$$s#vOJ{@h7~ShjsrOHl}BOI8gY1!`;%(H0lo3yrF5a zX>+>XHUisu-1ASnf!pmU3o*#s>1-T4Lj%CalS>ls^1n8dappu5F$|SnqZC=;{_ZE3!yQuZf{pQEp9s=?>`yRJa6)_n!)Hn?lFf5c z8OFGW0R4kQZQ0$`Fe6;fh9_7@+vMU6tSdz9iNFR5(Rw0KK3?6BgO8tZ>biRRF_jp8 z9N4zqS{QyD*#0Au;C{>_)tTmqk3R-~>4Gu9(|^qWyx_~R+M`8=PQ{IR{$v1yKYoJg zZ7NFLk>Bd1o1_9$tdFW$R7Alf>a7$~;tM8&ERdr}w!CrYn4`1KJFPwKSJ$q+$|E!x z*bx131xSmM>)J^SjtGL#M05pYOadyB7xBr!#*TT~Y!c&sG7y)0GO*)3C0jj)#*B*v zJ*6d!W%a3)LwZn%^iRQHJpXCLWWnXaxdebZC!PujD7HyMR<$W1t52ij)c@|WTX*XU zT<__C#ghN-=|ErXY1pmwbAHRGk#(BBhEHWZayo7!0--Z$pNp@1n%RiqoBKh+TnNFV zp9WSSwwHgML zj7%9*ZicDb$2tGn4j=_r9Do}{t04( z0y4DjD5=PjuTx5hb$aekSWz%B|AgN%EuEl27+yU887;LN#%$9TNe8Zt?C^|Z=g&A+ zxKl&fJR6X1l(qg@BrA^%P~@`#Ml`ZYJ{vgqDYmR9&$^}F!~Oq&i(h{($b^-j2DZ*k zPN)re_Qt9EYP;W1{W?-6`tXi2DnZ%LJh$PCSp$EcW3xG(}8-Bu|>G=(&g>jwmnwhX0!-T`-BH~dEU$= zep*Q&y6!u41F|1^Y@LC$%bejq|9N104rT82ysMuF3ak1#3!BI0&`sv%<+l7= z5Ulksey>QRVl5!&(+h#^J?OC^DB*o%maMc@0iI-($G)w~nL&b_X+&}L?Y>DH zS>)WBG7UUDpCYA~ySiGcr->tlbxxBkiLW*dI5u$SZ_BDR4LF8*>nsmA!y*A1cou;M z=VBr2X9L?I;S~>ovw@(Zvw`gch&U&};BX;D1{+_if8C>VFg}^PTK~qm8*O;w%8gc_2wv4yESMg%*|GkZ%~5x7 zacnqd%VR5JR{2`vYr1S|W%_^c#C3OKRoP7McnWEz<8E75P0J}vf8oAr+2LREa5}O? zfyz30_2;e|US|c|+MCz6uD8kSr>J~8L*?56)$f_suD22uH>(>bH`>$nQEtWUBTfBT@x}82xQp$F! zi)6Q^!X0TU*h0?817yn4Ue7f!$+vU1aP88yHoUfQot3U@Ugv@V+LRWaxvqDe&ZGl~ zlKVTx;(?JS>Wj*eH7FNS$GLP418e6i-3`{cu6v!WTwmB|vp4i_u*DmfZdCAqt~EV6 zKWYo3)2mg0MO|fzjF#4w*IRG>!g^a=KU{B<*R-#(!8OBcY~s3>yUTt1K}HZYb=1E7 zfM%DQa(Q!0{5il9e8bNHXiho%u~IL&f>4!_`iMt5)6hVBXTMUNV~~`;S_r0TMCmf}(Lh zo~0LB3kl2<&vwKtJKq7wc-d0gQ}-ET5`nv z=z=4rR~Oc}U296XpU$|};+hpll-5qH)&9ZSp(D!cd+XJ+uzt}I!}XKbsAqY7%MtBs z298*|c6hCJ6|O6~*;u@;X6#?jq9y(ebcpC3cNWN z*wpnM*E4f{|9Tr-zmTnkm9c{R3#P|r zU3Y(MZp`M#7RNmQ7lG{{Xu+*yzi@EPF9HQ;yewG($159P&MGte=ka%IVS-!<7fcZp zX$q~E17}Y8|30iM|F)O0dm**F%z6t<@-hO&Wdcd-Wo#h>U-RCkWbt|#(V`r95HnbA z`jWX`#t~zJOnYdYFFTvBVkI?rAGK3Uis2v`g<0!VjgwG(x{1Sa$B6!+e z6>|5>47T_sXg3+Pf5}C;-Y){>FYI|5UN?qw6vumKx(fA@-uu5Tn_Q?H8hTt=t?PgjZcMk@ERf{ zpX;^EDdRO~ZP&>Z-&(K=Q5*pg-MjXC{%AohBoL^`jdfO~9+2YuZM+ph-_wqHk~ zta2T`=V?2;gN^Oh9=ZXxWyvBdL5^LNrcyFK&7_BuX>Rj z06Y%GPx*64sUNrHFYDhV&r1;fxA?~V03^?PE5NiZd=c`f&H+*-gRU)6tdnpo^%udJ zyD%k?BU>hyd6fXL37jXM0{_!)vN9P~QIp@U3w?Sk$l~2F z$Gyd>j62y|E*GiJThv+*H}PGpfu8>!sGgPOZ}1*=0?&UxussLt5I(V05K%307){;}v~w2c?;-9U#nn_V zdmkCLXhzhV)eRKw{lJth`*KT`*Cy))!7|QOR5cKL;cRFisJ39_;Cvqg_N@Qc$6g*r zoTBb$C?n_ly#H~Wk|s@lTUKYbPF~hMhx{2meu_Egf{d{Heqenn&MmA$*nI!;3xMUk z@60{#2Zs6Z{eTQ(x}b6ez7LAj^{ukHv0A-^!HcLVlI4B=FI0f{;g~7WRhEJGnMI@< zcps}W9yg3pc=7viFA4#RAR_Gjz$!8`zmH!drB&Y#Y(}Dyh`#BfeJKF%2i8<>TID|c ztkrXGswaP4t}0%{HL`*5GiBe^*{TZTeBS}-M#zr3OLCokKd_aglT%MY{%`LG)>$>Z zN4nzEk}Yvz1;n0w-nz<+zAFYDTQtxAePG8XeVYO&>Jg?gL@ve|B6~2DxZmSt z)(7fJTWvR9?v8^%rM*xw95KUf^!4)ofJ_b8^#_#Ql)#ruM@|Ifp7AmLrRmhcy8MgvyEqGvn zl&FW3`1%kl&Gp3TKFnC&pPg0w&&)xO&CY$c|G20VXd-`3q3DkS+ql*GsCNrKpz%lU z7C&;g_>sHCkK8SO#0;9sLNS(^Mv~!J@Rq^UJvKXb*}gJZKIrU4xT(^KfSFw6thRff z2etp8Hb;(YL#o}20XJtA{s{stv}1_>?>Ih?E&;o%KB3eNl@YpaxFQJZ4B6iLZyoZK; z$xS*LB%J{6{HZQE3%E^?Uji+`ql@qd5j`82m7;M64XaDVjRB}qOYS8Zl@1?Cjm(z< zmwZ~8*B6CaT?%a1J{`+9yA;^I!*+z}b1ATryihJVrAcF44C$o|NVtUGc&ZF*|B8}$ zU*h{=J-UP^0#k>Fmg7EmkP#D^|EdlhXozAAx#CG$=HG_a{?I?`p^8R4>|eHz%Zbhl3ftHn49f69!7_zNp4TKiwzANZF* zu_%8DNC)Gwb?SN{6vr)u;<$xSZWkUzS=jc;&`L1>nxLkWp_X6kqRkD^=7xbP+_qTIN3KtMTUGc zw1QtIF?DFgjBuvLZ-%n>dl1xn5rL)B^NXQN@rh@mRyJD>CPP=k%!L>fL-@)~Mbsf> z$W_pNCve$3r;<)$(@8O>Q>onXv^3!&-$%(5tdX0{SqFf-pIf4)STV2BhyK6p7hp#A za9d>Fk+It;jMFw9o6C?{4BfC<#6k@N_s@nc0;tZAW2_NdleD5&AN7ASR;ucpWf<*> zeHOX#g_CdJAwR)lXy91I5J$=)&K<=ZiAm@=#)0wB1azpoC zl{Io99;dwdbfP2EE?7%3bh_fKlQNbA>&clX?bq;HuAXygAG_3bE9NWi8&JSr19~dR zaZ6~(M^*)A>;-_6w}j-F)7^Jizwtj-&PnGhKkgDP)X*nq(tL1B*kLPTo416vboEgM zY&KUPouWoTa+AX1k&Raq|ct}W=4nA_!j-9YNqA&&J(mrhz zlAwt>36n#ZyxcEBGi-)(7IV_^ZV7EVL=?LvwBA+Sr2qMB5V24CgXQaNHG;fdnVef( zzs~Mb-P{toltBO+wqljYT-oKc-}Ao}+ChHaZ-o-{Zw*ODet1Y|aS5qmj`eaeuyINN z!hs#aHBOY+l&gEcNZy;}#8#3D|J;C(Dn&B(^ET%~70V-58)=N##7JwzCP&&M)*YE1 zv6+#=8Y{1YS8ZC!Jnwbo6pv#E8%bso31{}9vRxH8Xvc6$>* z)Bk^Sk7RVVvKarZF#d^D+PYjq*v5g@rv9FHS>|1ef6eBsPoUazu9UY*zLB>kHKAwL z_1&8h3$4Zz6cL%Ej#H2D?cv}2QstaYP-nVx`Rs*!@k`IXkYCDMfA#!o>#X^!->B{G zggP76Su?lRmeyW1wtmI;OvlcXsj>(jRN*IXm@vyB@NXgZcz+ZfPYd+k8X6VgZ80c> zR)~>=)HP2WWN0oF;8q7v>saJ7!Ch+A;Bn5HdTW@1y0?bbi~F(U4wIpMpqx#&hSnzm ziYkdxg+ymak!a$QZw+nnvq~(thE~lraxN~pFj90iu3fIe#>m8oj_&8@@5&;Xvax2u?O$G7Txa9!D(=Nr*VP=+T-RD>lk29|d44HWXhA77 zvi6r?Sn9+rW72#m?;8%8As9fecNhc)G>Gn{5Y`ZaUH}#kXwLX8(aybGbc~TlVdtw6NPlc)vN9tJ^~>kvpo5c)YBfIqCvxxIGktqH{?? zn#7EOnI-K){klCA2T%{?Mr;LWwvH6*UfAuS`Za(8i4HN+`cRUs>vr_eTIfs}SNFTn zjoXRq?}j=<%Q|UlROxQzsFuMjx8w8KcDKep4ett|ygjt(jG#z?O;TOXm0`O*Ow$1{ zNJ!33RSk1RK zuCztzb>nX89<*a$zLUu)FF2i{DFObD(Dsgl#mIlVhVWeo9ST^2-;}Z24lw9cNisJH z)-1D4nF!&Pqz>opD-}1H_H8yBpui^=vwufu^GbSfM<_RLt0Cr3$Vr1!p~g8+OAIWwFCt;Fx& z21~p=O#NM{es_e<$~i5c^gBYEjYw2-N0^!)?+9(qhGY>gMOKzFuC7IsL!a(ukparL z*vJM<2#dNSw8^ZeL>1#fycCrH zrl=GWe9VlfC4)q}>N1LQlrraXl!#L-1B7!Dl<(2pfs2HKZPHBpr$WP}`IMMBv4y8X zsj{a+TSj752Kq8xR8G0&TDt}+mvJf-yH}4}txttk z63}ugOdYUJu?EaJXh8!@RyGkWg?gXDuq%DPYo32+Xq$F;emS%)M?L?4hh{ljx5LO0 zdlwSB9aM$9GVEsBaT&wHV9PkDa-T-wnk=INDbwx>oh-G8D&ye5yFwe=i7wp;_sRa0Qc_;t$S4qp6)*S3JVNB)@MU8b>8QstZ^aY_oWz9RY+$wG!-4K zA`sfBSovV`jC9pX`$U@G4VJF%Z!ba_JXWxHXARZ2T>WY9x4o?9?B!B z9?Gw#?s#84Owqe~m_k=|L}6n8>e-B93^JJV`F6sY&?&*KWXfGxHp2msigRG7hbc#> z!`F~)>rB8NcJ!gyqzt&6-Db@deZcgshgeqJR6SHKWc5%eUqmG)d1F0H?QQkY7PW5F zvjya#(8i9YpY5Sg80JHvZ9C$zq1vMe7l80kDC41e_!c5aMk!(-spBDl6z29ra36^8 zhPG3>M8n6m@4KPxPMa;5Eg0%|-Mjv-evM;9%sebuj^*ZI_sSm*%^`sgGnoPNA4Xm1 zQd65@2Ix~IE5D2ykkk&&2Pr}iX5{`W##m!(pJ29Q?o{$t|Ip8rUQ zs~)8q4ytkRh&D%#Dsk*1$Ua^4BEDHO#K&#xHmb|-J!ppx+mR-?c^j!r^{LZDAIb3iKl&Nn)2jA^&|DSGs?hl#@a!@;5;6Wm#|wVwc)<^u z;9T{GNJ0=T^k+MKT=PbMh)X#lIZ2;D6?0tH=~k#r^DW1Pw|G#*k{`BN)_1MwKsDKp zLtnb%xO|>U1TK#IX^dDav~ls{7PB74+zQk1xfZJ_4goFxB7IbToF9d@eYeME=Pp^z zeBBu8 z+K&C8q0|FEZYRchJ7_XbbH5ULI=rkv{ zdE8^8i~S_Dja$ffktTu^q_zMgPzuLUSsJ0Nj-E!2anRo$!x#Dq0J)AJkV?diG8z0N zv{@0)N=lYMCjp9al4z7v(0U|vsF5(I74$J-U}=9ABaA*p19WmK@aWpUOOVX7j{7|u z%1!cF**J=V5*+Q;+h>J+mo;Ud<>j21-03lWq5Fv2me@ZKMi9z?qh= zky1NdJ-RkbrQ~}M#f)$vo^5_2mX0>E`9#Ke+AtnwZ#%TfjKK1xb4VC*e5VZyA)lJC zowTJvfc+wfvlY>hfYuIE-J4TO)f}pACO7x|eo|D%HVrb9tB8BEj#Prm`EB##GmTfX$X#bY2pV8tb z;wi9JZSfht6bY$Xa9jWs^ID zEab7_^>jlcBB0Ca5T07`G(>Ny8sqHk0(Q?jg-UU`HTWT|Zk>_-xMBklzIdu-W z^4#6OdG6-ra}UgcGR_|VA_^3`(~F_GREi=U2q zde{PNpAD77 zQYJ&N{9dRk zRK3uS@sIXknsW!ERtM zuY@+XD}@hU32onTEg|WYe1-Sg}X`y85)g4iQoIWBi!q%C=>n=f4W8YXkqF z<-8iIO5uNnHW|!PYi$W^I?cc94DnzZHfL4pyG-EoOM$=tLMc)q*&@iI`c_U0ZXf3O-I>$Mh@>2RQ6xsREgP4F{^i}2SzcOP2C&c71 zEpX+v(6%4Y%=%4;i@K_%b(H$&x1nv@@3B$px8Jhjc74x3AKI=am2N29e4go346GAk zs5p-vHiH6 z#QhzVtIKfFg4PE>#f8vC-GNqn{=1=V)Jlxt{w_MT=YJHML}r|Cl`&aMo%*+JN02AQ z%|{`Pox8IJXwgSbqxr}^&c#&FsfP`-NdkZBQ7iK3pTxnXVpaRB%V{8R!i!7a%kw`*KlA)gQn<1g5PA0rFK0UN{7*wW zqMSw@A{ypN^__9PPl1b=D1QmVv%-}xz?FqoDO%=jFiDva!Vkw zC4fUKA)#p}Eftwgn(*&b*gk1CEy(*8qjKM#11dLliz&6%Ehfw3t;Q#3VYt<7!bkeO z&E)5NyUF3}-wo@Q=Z~8e^>pKwI@gU`nr-(EV{ROjgg`RmI}ENw3aUHITBPzGID3z2 z-OyU| zn(Xf|E5~(g8)g*|cbeI#QHuOdGsLvL9#ks8vg+MwTEPUAYhM$Q9Uw$4K^@Nb{Z2Eb z-zjOKxyx|i*>xNdjlVVU=-PE$n=RYLK<+Z~e!83>cWX}Uyvc*wj6Na?_p_1@fK@Sa zukAXK!l?I{?LvHIyHAz-qJunA`>CN!NM%cR zvija@&Ph`#bBL1o+$eNW4QJUCLCp`x{+6_~-D}P_A9J_{4BVQ`I>gzLxM~4G0iU&) zFj>p-FPVSt}y|(``=c$GxT!)LL|O{4i{~ceI=l zEG;%~l}P*58e}b(W%piFLJaLE;jOZ5c>eundynxsOT1X81>bK@_i2fF+;1s^J$9T4 z0laOtb*By`q4oU+6RqoG-_NW=s=1$k3T|`1*>pw>eFUugEv-BDfC*wEL!puA&ZFl9 za?}GRvw=F?*LuKghQ(^ZPs^KYA3+!*oX7funv0u`Fn2v#WmMrNb}N@?_d!da;6Y1o z_(4l!o7p89`a!cM0AEK=G7rLt2yuGQY(Yd#cfD;VP)sLJ=Iff-&i!`a5J_>Ziud?{ z^gJ_xF!yfg++G|kZ>}#HolHM=X^As*bF5mTKP`i)7kfer4bkR zcbr}D{gAWwID0v6#a2qbaL!$O(SA-85y+IetrPt9JH{kt%lM4UM)Q$X#NKLVdq@c+^3-!SkF~fMsfxPQgvZxRuCQ!enx>lA_&DICc&e%tVv$ZE z{hC`^()G1wZfS9!zh=%yzpKTpX0kZw1$NzPoo3TdyYTC+VNbwEyJm8s)vloo1N0;c zEN!{3(39!7X37Ymfo;_WshM?i(N7*fTKgIWP?sN_5UVU~tf|Az^)*`aX) z#wyCO@gI(5soMdr|6x`TQ1TycO%xCF{5ro=4-}$|w>A|N>So*a3L~qV1IXKc*SDU4 zi#oG;3T<|dsN1Pnr*HvHb@fKV(?XJhsPaf7fJe z`mV{?^svcu`(d-4dpsXmOa_#uSsO#xvQO&0rU^B&mH_pp2^z9F2}@0$6yMm#P1;S% z1lImYzw*v0EDxahKQcQiBZUInuI!$IBVhLS7}Nu^ba`xlWO^|+P+Y^0ERA&dk;#+J z^Pj-kv}x8+&CDn8x)_fPuTv|9d@7zWn~0`JKxjtUXPu3(Z4q_- zrcXH$>M2te)2GZ19rf5y$n+_b(*6|pi17QA2}0BUij1C9W*atn{!h$CHzGZ5+pY$G z!B5Nx(qXelok~xxT#U}o>L+Hn%4lCtIk}%P2^XDU8ttZON+<8p-NzArN)uKg0nadd z$?Z zXp5DQjM5(co3?609=;b$HH%(=Rq{q(;EiHeeF0emU%D62EimeELLvAsuxeAen_U^f zI;FEV!)|Dm+`@=j#Fu{7QhuKqRsVkhxUWTRw%JG{+pK5K>+c03va69*qo&(8rz)Q> zn9XOzk|H%?(m7e%~iwsDKc1|In$Dv9Txg;i=p0Owg#(m%D! zvXh)eBbf=*)5(ZFJijV9;4F(_3qN1HD9*yf3uXoR3C$Qk<(91;)TYfDwQVPv)k&s1 zV-$TnenJCCQZZvTrJNEoX0v_?B+cY-Y!%%NWiz<;yaU(FK_+D-f|)VH3r^>9DB}!j z5{vPSIb{lGL(l((;f{5v0uImT{)O4tHgz-Wf59w3z4!&9BE-vP`;h)$MnaH6-1a?M z3iGLFEu!756>zvqO5d+8EWjq1+DSl7gX%>;RoI6@wU=Hm5x zEHJ92B!k^lh7k6$Uz-yGRInbUzfKPciOJWqG-j*EUw|362Opmgbx|R8gnp=1FcMkx z(&8>;B2;%#LHRw<9RA~8wiNzaOmu9U9XjUG*s;iIn{kP3L&=r05T@NpPcDD>y78LU{PU);?eiu`+ZHJ0GafcVo0ph&-fYQrRj%j)0@)#y z_q-{9_q^G0Q2z7Gkd$yfa_7OJW`J{<&=}Lso6-*J4$6`P&Rd#7{5%W_7mV{} zt|S|W%Z2Z}rJ&q-bk+rTIAFET<1EVOO@8mGHTgW^Y8oV|K?J9Ys9QY}(N~c~Mi;VG>;j7iZm$g&(F&WWx zX;jdpE|^V=crz0%-sDSEC~9riC33d}kPZqQcY_BMLcX zY4kYRe6EtWsw+5cHimswZ|F_LD~%v;)|)1mz&Ba638H_~QV*mzSt?6ewR^QF%JC){ z=sK~EN9h+)jK^auD+|w?W`me)M?8-Hj5o~%f_4@9`KH;7q6yzLtL7;Y_@-GcBVZjm z<7|H35%c-Qye+9(_FG7GFub>rNm8OCYtUO}T@eGrJEq{5ofEG^w&ues9}4}H+*%z2 zSRe3n{Ow_^uLG`ymrpo{s`|MTk!vR#v2c0k3=V|OVlXf#+;~vOP&WtW)J_h=VZR(s zgxaepRX{k^;!{`Mz}^O?T(;^VZX_izy$sA+Q72N*q=?@+yzF;o`;K{R_PdQBbNtQJ z2_!3m*lrQSfN0|1Au$o6@;m0B>g>|}j)6ekRP#N^G3TxK4x*apFPK~39h$iS;I=|O zC6HdcCl<`6g-pC_V7kDsP}@88)Ocaf<KWY)?k-1;N5I$zne{ME-3x(UFJBB>hJPv6S)1Z*^F||Fh<0CCd2d= zYGMjSsRQ)kcWFyV2?a6D_jovu&0Yk<_uxXnm+zT1q<6f>vtcQCj~9a~@xIx{10I`$ zpqTHQ9pZ@hIf9NwqwdI-o4l0TdQ=oR^&(=l=l@<3!}cA9L$DGH3I&Eaek-YJ4{C>CSQyQ;Ajy;o_56tR{cE-!Xzet$}j%G zZ1XPLUGj|#Jsxeo@*gFSY}qCcD34~5AE_+v{71gIa;`I3mVk06kSu3><@f$)>txmvn&}Prh0F}2C$R~@k>tr(VhuO>Pv871o$O@ zUyRF3Xo~`q_+n{GM+{}M{F50m41aP<&Yv7q@h1mW{0UQ$IFJX;l=1uzOslNb13}7* zE^mqYH*J;1`GI?g4@?j7f#I-+Qxus_gh5IpL2xb zk#LK$Nl8Km?2C) z9gG!4XGx3wgUSufN|FvaLdxOLtf-80L--oyH-|6-e1?bUrOWO#8i>HU-QzBkg4f>NXvx4v9mv83nixk?qNrG_*9Q19}G zfyq~Nedl_Y5qR$U>P9Qy(7eH8r;-F;-Nj3=nd~38=JoCCH5A_f@V>x`xU4FRNk!?0 zFOp1pisgY^aTm?z5z3b0Qeus-wZEpLE2M~QCLJ;>_7htkD}K#NUu%5L+FzS-BgXUf zytVR^d8>W3@m1@7wf9x4-#BrjwQgLv(dNgN$2`tm|64m7IIM#vx@kB>&sQq*$^2B_ zY9q}NTNx>>vhh`|Rn}cKy~<`+^;g;WS8HGOIQhcp;;1#YOl`6DmYFR!w`F0AEp2K3 zo7Ml<)c?|RXhi3)>>T{_%0JuqztsQ58vio?FB(5Tx-hDUXIoxZSZ~$!6YH(Lez4xU z*DPIQ%hwdXVvP;W4L0+&xvyFK>(gJi*{{!k-3DK;{ex9DO>eUPro~ORw5jk7oBzi0 zH>~ilt$+3Wi)OX;&Gk01X?oKaN7UVj*5BGW`=!^L*rc0Yx@P$rTmH(*SFE(5vB4%c zOl`2vhQhTrer@?$t6f{a)+VlZIP~ML0k3(?$NN%S4s@S+H^{KU~Bz0iJXbwXqWd>wKNBZ_fvu;KV$ZFBack|X;HM`0d zR*jEZd30)2XZqaEMU~X%F-L1|z+$qJST{eLx7Mo8Dq9>~as32qep!DZSIOzjh1|F! z90TSRC@H~3vwD6auQ3yO40$|oe&~9Z^TiSEYL2WpVsd2B5ldN5Wp#D6b^f)nMFV^P z+W%LZ``7t@z1$M9w3=k?7tMwlLDB;4Dy$iIL}SgQBbph}Uek3wb88kHvAkw>t&S?L z?K)z5ZQ9dcyWo1}GNQ7su}*`l88NkP+4U6Gm)C1oF(b+u5Py4=B#^j z!*R=njA;II%k@lT#MD1`UC+utkGplM@GmJ*|CfgAnc31y|F$i2TWn#=Qr7A_qWN!i zw&-DbOvi8_v($;XBRgxW5n z-p4R;c=yLRiZtD>WvR>`BYUAceQTZaD?)FtjE`?s~Dc zlNIWz!>c}#D}c<_|2GFtWAFaLfh(lrFB5)OH5)qrS6y3KVZQ7J(p&xPKzV@c=n^P% z6`THNrzpi*WIp#G{cs%lOGn}Uj(9bvX!=jMjW2X<+2+E8l}%aBas`(>ph^Z3-D@G1 zpGO+x`H3l0%O_^LPGpu6kEXMZ$V%V#t(t4))UEPoO5IOh8g+q@%FLmbgQY*gsM>Ws z*vPc2999X^nF?(sDY;{-He^k0CmPVydie=h;?P`=K=)6upHJdWH4~+IyjILMZMU7f z?BEe8oz7W%9{r!}9M+T~wBj_|FY70$=U{rbD`rOuM4$r^ub`rXtgc{rO9`SEJbGNz z4JDPNa;;$BYLdj!Y?G2393tN&`r9SrUr_o@I%bP@-AYHF#w zFCzmz8R4uAoKdLwr&yiHFv%G+g7V)w9Bth5|6+vQ?AR*`jpr}!CJT|EnwukBmIy99 zWJix%A)7)Td*pAlq>p>EGg>*vBbmmqN^2Aj$TvqBY6i7U{WleGznu!ynDc@0Z;q^t zd8DS#eRGsLklh?vK??BAQK|{w99bn?2z6*pcB`AC)M#>ZWJG3b*OHu1*@ZLt&}xyo zNm!P;6mx1ktco&2-W-`q8kHm50&k8|Z-$#An-QviGe3DfJ&EA(o0-O4*E5w7(-FGy z&HSSk_YPbt5NCoC;0%SFg22#jEo>LBizTMh1p7(gVb^<=C~1gh;UiqD<>mc5b@1Oajf5ri~x!v zpL;5F=@Vwj*|h?Hb#B1L$cBGwC)4}O4%#?|eF-1!Vx&CR#mHJd29qN1h0xn#B(T8B zGN=?IxdT{F4_@Ro%+R9xW7e9@TA)iF-6Tww|Fv53i|8o?q8P~_tnR9nBN3Czm%;P8 zNGQ5*i41ghrw28*SsSV{@0UZtEfHQPxE9*zevoVvos7>yp))jFTG@U_)QoDfoCmhc#S&u)oqUhwNJk@AXa|1cmy&n=NHX9Q84 znhx5Zx;KJr+!DDAs?MHvOCmQ>9ZDhbiG2rfxY> zHYCa17Nv2Vw?#H5kGb0-Tb7^uZIL_zZAy^cZM>KTSTxxEZ9L&DMjQ0T+al}hF*!*_ zbdC6v+h8j_5)9G0-A#ZU9uyPccD}hbt z867Bclt`7V#cHn;y1)K*e*YS9ZX@vge~<7j-nQLQo3z=@%J=UPJ|${j;TUp9)>_O4ExMnILrz6Teabr{8{Mo&yE8H#?as)0vc-sC zlHchb$AfSy|a)x0CeCK9wuKU3j9tCZSvUYlULJEUX8B&yeEe_SkH4o5QIDR*w|TQs;*m_!{A?SoO#X&Vx6ynv6enCPW`QlN@_t zYeiN$A|M&Tb^KP`3(lMkD5|9?6?a zyBb!AL^Lx(UO)uKsGFb7dIE9l{1@}MyHI7Kjxthr$5uo<6d@h&IqdnTBb?arhdUi9 z8^Y-*HB*SFAu|KWosJZEVYB)*vX&G4Pa_H-m!6IkYH$5`F1Aj7CU3p`VqO=KeC29I zoo22z$()N9(do#hP!XI}`81(}xRReH@{r;Tr*T?Od)l8_B2GuvmN)R}$m+>_qKi~= zI1;cc*LIif=f)i|p2ue(Pxm7%ld6&1b|Gypt%iKLz~>!QF8AbxV3~~L?JzY1JrXGf z?ur9|)jj%=lOKuj2imk*9VF+)F!V^I<>e99WVr#&`Pz@k+7@MXd?d@Pe-=_qX-PFqav6B<=itk~1= zjJj`4E$LZnB5SprhKLICG;f|-QBOy<6vE+t0*kkUCxps)G`H@uT?a)uJn1KqBrx?j zyY^2I*pWk?L6nAzJOhiv(d`+ul}_NSNYrsrUMpA9X)#{nT@DgkB8Be4HOtp{9Iz5s z600U(=vNinNit^Q*kky-*-EaOw~3L?h|P_Rud?c@#wu&Bnp$OZ*DScR{j~#hsRh1u zmq3?(ZZ2o_k>-d^jdn(@J32RN^P{EJ*1KlTok#_c7O(1RW0YCab ztFLL2#(I(>r;BTBY0dH)E3U1swffrTTANtgT5D5l+iPup?O?4ftX*7dOKXQ~&0*BM zvoASu=ZZ6x*4j9yYy5qu+p$|R%QKOD_@3b>4fOmqc_BRGW^?wM31aQy6<$W{XU z)t-s0Ajh?5B6B4mo{6lbrQn&!W?5p$b!kJT;eRGd;i_jMYr4$U-JCAj6tMM7WQ(~K z*Hg{c+}D`W>cp=6FmKCQ_xP&nDr>0D>@$&#ud1xliKbSyMn%l7DmkJwS{}8^Xxd$0 z-CC{vjf^O*sjgAact$L*DXz8hHB;^jSJ&3o+Va}^I%}+}ueZkf=6ai0-&t?V>&tFL zbKS%`TV7wd#){XZU9GiKYpuO@eyz?tkRgLdSi7{=^Ph#?*w!6Vf}V}!81rmo2k`xP zHnQVQUt=&++oZllJ0gh^*~gA~G>)I}{GVPH0--jkV=p1lKaB{JR{L^{iRb^PlN>sc z;Z)v<6phx26llm1==&{w_koII!7bB zs9K#|?@O<#oeN*Q7xj;A)rL@(GZASx$UY!S{Wl>OoI!I>2_-Vc5hR6X&cJ2Rd_{mP zo{6k3E#wT66G-YAV2zYml;VCSO4t4~ObUEh87xtX!5J}>D0L=N56?t4X?WkALAXr` z7wU2b1s^{P&Lc3KGi$z_$tKPjDs;CaJy$CuRQt#|-*8isjk%yQf}e@fxR^7MH8s`F zL{?F#B~O_VXLEy$n0JI@j%OlU5|`vn=F9HQ7c-)spK?7-S%c3+vL@?<(~9Bk ziu-KaK`8ScNjsXr^*|M$tQ^kpw-1;}E2yAoD3tMRBrR%ub`y_N96W4Clvd;a;9!^Z zvdj0E$|A|WpNd+ScPeiNVXjWxUitg(Og9B*>pITXW!^NfR1wnLMT7#e?xKgM#Il?a zx*((FP{;EFiE#dzU9bfuP@$NkTDYTjBMN3j8dy+fgDzll8)Yc%F2^-@M-%$a91$T7((C7#TmJsZtI(`E_EtL<~oY zt3)hk#MG*`>*;Ipd@-^)5oaUYebA-iP#$>2|IU)fvYaY~O?*Q;;tXdafj4K}GIKVC zV9!P-r_8h5Gq3h6NJC0E;q`2!oC+R9S4;5OC{3ex7Wi)HcDay+vys@o29uOZxUE_M zxSoG5aw{9ok+$fs`04O-NY&a6!#o!$IPzSi;K*};h*})axtl)+j>wxnm%Z|Hku`i$ z?TWx>_Z;dg#KD{2&)l+CGRCPI<)AQ(5X|R zD8~O1dNsHA688XjKNG1w_b))n=UjpdkJg@jPS5-WdPbL`D*V^KaC&5F2>k^TP2J54 z9VA5;Ra&hc+-FYM`^yo&qhNS1M{*f`IkH2C$;W}n^|E{UR>5VDzzB~n<@hWG(?NlI>Kjys7hB+H4%p(J?|TT--%IivAwuwy$;edjWtcn%JD)#=*qOj9h{ z9e1Wfhm~XTwMaOOPVTUY*U}g7${)WLS)p*T-h#vDv&u z8%zX!H(UFW5)u8k8}i?7CjWP&A^+`${I?tOo5%_ylOxs}nH}+Hm9A>xzwSW4RA63A z{Q?Q5w8f|qyKp#H9p^WZvtNy4*1*1PszaHEgSNqLh@tyUWcv;o|1}hu$g+k~1=qnH zoBUk$e8Jt6`ddEC_BX5*4c{dh0^ZSGHxxqjn<#a?`%Pq>{BmBqmYg$0DX?k|VeL2Y zyrHkMXBy!A_jnQ1S1RQJLw^(5xFovYI1Z+P4#wmn;?lp79AYlXh>NlQ4S?%RoVtbo z1}}|L;`zV540-<6X`6GHQ^;C<=$J%KbwCCU< z*U?@@q3H9G^>f|4P3LhXJnz2pd7wcJ-nCnx|9N4WkI4CP9)yF?v-6Qnu9{lq`L8nr$usggOt9;$&6!Dg=u(~8 zG?qdao%ed=cBWlJ(<#uIUI#T)>);V{6+~WV$tnA`BIk$KGYaA5#U5J z;mE=;&&tv8J^z9mdch67;BbTs4o7%X8pdXF^?EdR?;)SwQM~WpifrQ!<=A>Fvd!|; z*?-)lf!%E2z=?qq;RlXU3^0CpY_Q4=+?59IN^eKRAMM#|2U>7PRUfA~l~%2{@lw!| z4yEbN`u=ugJN775`PrU+= zd&4`C9ml5dP9&4fJCPkZ?)mQum9Yudx00%JyvrwO`r6f$`1u}hS6WpQA(GYfy+|n~ z-b4C9bXtsTcU9@isE7`GZp5Dd`^fgDON$z1t$}}t?9g$K&Eeyo|Hp{JTH{>bxf}g4 zTi%x<+cb|G#3GP0`G&(`Xmvua=S>NmR-D_7)j%kEQJ>64gGfnSY&j|*;Tl${CQtmibIZj3e{_LC>@e9Smo@6j>+L-N*k$9&6}QC8vO19wmv5*m|EVQV zB3-jj@~|&^sM#wX%Hx0vN>=*Bv#tw+t?F=DTXBj@kCss)k)Q{#O8|dd- zl4E4#`5#0!w%u*E2=V(Mvh7Dae;C=`BRD!J9oP^iDvP%$?Z%ulj06@ABV~6PMh3J$ zbkf`qP643uq5ivlN0lMREn^cbV?<|JNe=oSrmNTGevhuPeTLR8`e@Z{$<410H#I** zqe%ZRb&Gw^NQ(T>{VO&vQT{{s!=$Z0>z=kB^Po0w)doS~&!7Oxqk^=SwzRh*#pTby ze#;J2Q}>WoK`H+~;w5=(2r2x?EjS-Jd15)@X$~ItpfG_PPbqDRek$9k)zOufBkN`a zVXE4NX5jf3onmt_(uFQYENR$dKZ$JXagPm9d8%Q3g7;1p7fa_1r~Og~m4kjID1?gY zQNQ#M6?!Axqm^+joit3xpTO5)>7TG#q(nIc>ih&p3+#fQM6O=pa@37=x}so+Prw8S z$Nj_sik`m$?olAq)i6w5;a0GpE#gHPrLILQQhoLw(2UVB5?v*FHN>D+(1uYkIapS@ z6#!Axw3R5$Dkq}u&MVlsD8zLIZJ-+Jv^buM7z$9iBv+pk9ni2=?9uK-E3h<@*?t<~ zw|VS1-mv3-5i_~|+KJd>pYsCxG@JT2$F_Bsr_D}nV8l1awxB6_b8M*Ho_{j7&D-5( zn>GiIy3G-7NTQb#u-B8ZO^fx5z#w)qwt}=%5#W<2W1EsomI$d9oH!S$r&h<>t|5etqe=NdVUDd*~r zn9j{*MBfnw6=LK4NPgwD(L}QvGQ;wJ)8D_+iBdV(= zR%uLCRv+Has)6h2t(td4N%1wjpV8{526skhGot5+<9wWhU3hxgYkW&}Yk-;7yb(Pl+?YWT0DOYopB$oS-sJrX>{aTVnZX+9HK9R}|y*tym5nx5jpYMeEks zHo9s9x5j$qY<6kgyfqeJeN?D{YaBn}IZB(uN2D3w8p~pFYb=HE*4P^Q?Qe}8AdNSO z=a*s}-uE3~#kR5&aR5_Fu}W5Hz~~0syhGH6&2BR$C94$MhB0-dDPc>ze{~dp8xN$jqTQkedDq9oM<==@bp~Cabh|P~Kk6LkcWwq5;cUIfX>cMJTT)ni~N^6>H zJWkRanHaIDk@m=69no0btzbhA)c{RCh(o zoel#Vz??Z}&{MHXFGH6GEQ+6>ifvp4Zbg(`(1`X6_@1y?v*wy9_gtjb(!M3<^cY(= zBCc$65giFYFDz<9UNYqoM(rGHS#|`0#M-qYvj8u3Rn7Ha@we)g zEe)JrRUS==8P~J23P*rbv8}8sj9Ou|==Rq}8>7}7ofx%A1#O;+UDs7DovAU}9JSWy zR?;>VE{?O*rmQL)%kvow~5J&EeZ7y6Od6_I( z{GwUc%9Sn8|KD5$qk#zFlU?8Q?~Y}csKhRktP;yp?w;5-Z1>pgKJ5AT#_7a+Qf9w)6*HAB9fY1H05ghON55zkC1F>z~ zWSe(+{)4g5##(I0ssOZo-!+j67g1;?tI{-oG3d5|8}{ zkJvo+>J=b&QefKzo`f@Qy_9-Z3T;siDvj7G_yv=2#M)pMfDby&5e#8qF^$-TbTl&c zq7mDYk2$LmYwAeN(=l!72#r`VD(b;CSwuF`10~R&#H6 zKDI$z#&4GqwZP^%^_4q;mro-u8OB6aKCpTBE~}|t+k}}3NLn%+oKMHL%m^vHmv`!h zcJI|@-$6~u)3NP4ppJ2gJ*Sa|=6vjs1uI>X99vm-0Qw z1ilx`MigMq`(FADYXM&Uk2q=7mcUht$k~m|b}8;?Q#d3$j|h$JGIoe%H8pX5*)aI( z=Z@U9$MzoeI0yDNSLu5YmP}oPpoD)E($*ufP0Iq>jLmYE+u}iO-DcbOi#mRjO9A%% zm}2p}c7vI@RM6kQe8Bf(MRy+dpbj6kV}RG+kCjr?YT{>)#uRDTeH6~^(K>#@Tz%O` zV`m^J2FfB1`uZp{TcaEhLHQ3gPu%3pat*C4kFwad-QuI&B+>T#$6`Coi+?P(aV@2f z#n$uF9w9(wxe-4WE5)`oXrh)#NpMGF+@F&3?QXpO8TA)=t%L660* zRm@r?MG`y~+mu|CxB-XW&I8=S4<=$8uAN$Mo%Ox-9c3i8oc6zN% zukE?k)cVeP&;Ma;+YUKLlgDG*y3aZSb00_90m6FRDYk4}GT+DH7{vY_(@NCyZ8GeH z9{tB|avNtkew_7~$?-TEHY?%daXOnGkBvlP>5;9N=&G#;?9fpw2QzRuoDy2GZQ6`k zF>a2L~k7HL6 zc~K!`lMd9dAzoknMXsRGd~P9U%enFh&e*Fwh8;cb?j2CkX0m8BCqCEWMr>1YKe5FG z*SSe}cAt#&jmVm~O;wcqYBDw@fVsMB$4(>ebdm{C2S;!EHYo>|Nfw|9-^wGE5vz>U zM|3B3Ii5_$HklEse?*{>QYe}nK4tXlOSYVh9YR_P$BDruAagRdqJq7+YDTz7MTzmuzWHy4YmwTrn4O%Q??~GFCCMCu3Fz2arAq>nQ`>Op>QQCJ*1XUAE`2 z9TgH@@vWnH*Qa29MZWoRUlTf5t{+?@=l~Ta&C=vLn zlqa&eXd(5G;`I6r8FAkjg zVpkbCv=UB+S(@5$P?pIw566m4M+SmoOZdN3;RK6$vLKy}m2TZCSB#y)P?8;Rc^K*U z6zXOxjJVui&ed`@nXBb(B2P7(vn)SG==WI(Y|KMF{jn2v69$B{yz_a|M#9C<#;Nnv zS-5A9rG&JiXJeZT+b9_X>Yt63-@(WnqH|3$*GM6fwwCO()^yav0~A63Y^*3G4U)f$ zi^kv%n9eInF{gdCd?RlSxdxw&tqTCx8(AFj{B!!ATXu-raZo-Qp8ry8V+ZWuv9v7w zOR-!!W@0U{TEaR?NjakzaNw{9g^9?V()f#53B`WFZqI+&wO)3uU&g9+@=GVF_F|j_ z7K29UK~s>)DmYclXrcL)Q0P5-J*WeRj9}bXq<6N(KwpXR=}fEdy@EovMCq9Ez{^@9 zhO*4Of`|o2c?F@0E6xJmdu&j;XPu5Z>+bATy_rp$HTz$Uh2y>&t7;3Iy&jtb$36cw zy%udL>iAmBN{vC_wHP^;MWr7bA;x`o=032r=l^$XdvU@0Z(t8W218%H@-72dP)pA8 zcoV7B2tXiy!@uXTq0o(1OtqBmp7qo7f6K$zo@1hR>=YjU+w@L<8@p`4zm18F_Wbj) ze5lXIGCH5+SIn|i6&Yq905-2*I8)T4c5vzVaHoS9n z3T{{gSyDt`T^BI`nk_2{0cR8OdiqV5eQd0+V~8t~EfR71^;jYDX;J0Z(FY}Sq3662 z>jDZDup$aRsV_YGDRE~7n{Z_+)V24ZHgK^wVwnWqh|xR>!Yba#K#Mmr(BciCAOb(% zNX-+NLUf81R9uuywY1bXWpsPPW%ajKJn634iOFIA24Z~=zv-6gke0dw@>652d&L&gX42og; zb}mR#V5(k-4eyZ)vAkF=#CkUucoD3y7kCjVfhegbZR>tJc$17U&dAmz9uluKo5kr@KVJdQ^2MNqFRw1gr+O1s0E(8T zd0)bPc9IGA*|;9_tn4nd{{SJf&Ry-zSh|3+qdK3RH~FcWzHZ6kc5i05-J7vZI#?FS z_f4n2YaoKR2nV3OiR4rW)HBS8<&2n=>hxwTsL7`Eg5QkOSmHOccl&1cZr_3_^>F7H z_#Q2;k>37Wv1)3kOzAB?_#CSp5ZGH+{hS*W97gzMlQ6sK9>YKemwcU)?0LphE( zU`+zUOuO+89XJj!KzC|`(sY;%eP4GlFI;y3CJexfi&91u6+g{kgvxbr0GwA8(I8g! zULCJ2?U%c0se2YZWzntqC1Q<8Xf%jjzobf+@n{gI{)qz+z}d+2-;RY$lFwvWi`(0= zZQLb4+_z&J+oYB4ZI&;?^ZISK_Ph;BoT3}dcAcjV!0TK;-iGZiyKbN&?H^`6HGqhT zkhB7CBUa+>{&uXNP6n~mG5&2}3Dr(P!hJh7mp9>UlpcVfw_|G<5yHO{I73pa-#K02 zcd;B0nkc7G{Eq(xhs58-sg?Y9SOS>+zvI?fNq>iKllH7+gsUX+4xD2# zv`KkLyc64WRERx@rjW*W;xsPd9rzdG^EWs2Bj`JsT=7nveglq2Uvk>X zJBS zJ%1qvx+wYb#p5k4fO}lo!uxaqIaY%YfXFYz2w4083o%#MN>V}Z}UTjCYzRmaz@T@Y)raGZb%Vzo>Yl@Ws81cWd z<;(jA*?uPrycehQ={B;j zhAi?hBpq19=>T|S5v~gH2Y0?hUP|r1OdW8P%jNS2cpiRGe?aP~23C`6cGhwp+kas0 zP|4&EyqA>d$+zo|`XBMV{bQVM_&fg?qak~2al|ucLiuBgKR8eHKf;$V(fpCSPl=w` z^pX>_mz>FEi51FY!>3$g3g9oX6x(=4)a5|31eS;8ekof)mf~~;`5)&w^*_9DkIjxf z+8{9fPb?eN2k3{kb1$wD_*2w?9lEegWyGthg7N?nMX1|PGJoMiq{Y&+eMU2b!L z-|(Z@4zj)IKKe!U1CPy~{o3Fg^s(FbvD^1C)*6q^p(CFEi5U9!UAFs>8o0Ua&8R(& z+PWQ(9RJ6a*tYKW*r2Okif!k9kInw066QX2zH@)kIX7=dLWE;@^z1wA`Gv&!)+IK! z-B`bE$%j8j`W;UulAYAk6qh)eNK{Cdj+2SZGAU5TXpBTvEgL5j=XLLv zx08vuoRws=`etIYFa?kd)dCPWYcrwhL}626gg*{^h0OoW#CcvNrlQFpksh5${%*~} z%%;j-o?lG##%@W_*7*0nm0%wo*W9`_0pFA#sg?W*5^TyiFbf#grc~%`sK8>S(Dc&r z#~3`$ES~d~F+qviZ1DLbW-;;)zi=2i7P2E20vDE>=4ETZIa^m>SF+NTr#hI{+PXEd zHlpV&YwytTF17VHj&IGE)8}eN5Y@%I^cuu&n}{j&4&Xbjpdr%_-p5!jjfeT zCAL7yZI=MMlmH}-ZLw_!?a*P5_K{@UD<}IKg|H2H)vm zF0KQy){=?DW|Kkk*-1)R#y)ragtbx`wH!?mWub`ua*ESleG=picR{Mk>AatHq2j3v z1D#R1P1WITF!6%k|50Kq@C!-R3M~i`*-z=gSG{f@Hk(Xdvo~z?ENLQmuB_rwBXs zrUZJI;TyA|_6eR|!c~C0N9rm>Wr9Pd(a;8wy2kk-s&Os0dOQ`UQ@Wg3Ay>*-DOb*E zR6WNVSO0uWjok+j7y3TMnpHyMNNUeACsoH=M_)FcB*q+0le_uj8utRk3 zOORNO+@xM)FLO>z_a!zBhXma5{AyyG6v$E2dPZ}v=ii?gi6d+xYJoL(nD=NH_a`=p z2}ZnM7g~~{azA$u`*sS}{fU!iKWj?=@A-uC-k(Ui)PkzZR3q|;B-4pnq@=J;G#`2X z1G)k>x(5;)mm2V3A}{0z69glCeIIoHt>=i#fp-rkRu*vg?F4UEkL{GKz28oR@TPC# z+ll^vbJd!@o!F8OO81?_b`jq3odmOdU8-|Ev8}stKXr*5>xu5H&MJiH_7LCH^S_&@ zChWtB3$h+Z5_Go2hZDpa#Lkr3=Rx7yi}ACX8Ezj=WY4v_zwDL6xqRW2+UG&xf?&87SV#UhkMJZjzRdsxu`p^B zAJmqC!&<69{mA7RD4(@LXtjv4aE~O45wUTWMd$4QNMZ~4?k$DWmLhudIpmqE0N{&BTg|uxTb%67l`SMvvOK#QaAS+qlX09QB~6aQ$dvM^C85zazq- zdXF*EW3y$aHiTI`me{WSYVF?d`4bYAjvcoX%}|(t&4x0~R88p*CD~blaAHb?+j3k^ ztd`UhYqIRNlZC{V^Mw&BjgZu4BFVDP&W2VPDUIj~m_@7#tg@IVzIGyUI8T?gWg!{Q z*<2nc)QMD@Eb+&U=UO?N$Gm&)UbEd`xWFGt-D^n5%? zeU%?i(wcscC)Tui^ZZs~W1DUNA){_v1Ch4NVpS0e(c*NeZ?uyKx*^pEF+Hu=c%;KO z@3%w8Y(*6#Td)!J7JX3uR$_HI$hDHJQeD~&o3olYN{c@L7xGqOQ+kXRQvOn4)55G< zi4%OAGK;km>tw`Sm_EWV1OsR#*0M>$=hJRbH{A`Pc_Nln6SI}rc+`XoPe-2rqeL}l zf0Pg~cLFu>$BFR26Z#NsFwa@=apLX8du$?5BqR2sA16{Hf6QOi_MJTB%ojgSoY`i< zCm8C-i5z`A|H%Xw4uV{tOl<3R&wonHy$H&@BslFU_lrH{CKQ_;Vn$CTwtJ6Ml&2Cq zfFbtj#10&^GP?DQFMCljFg&k3c5UA&$n5FFh&Oo}uBCoi#Gg(S?3TKorY-HB2wEs+ z?LaM;LGLU;Q8&uY@HDx(M|wsH*ZnjwnN&0=d=?$fn~ML6jN|1u19U=*^=-1KjogZ zp-}5j-Ew-u^Zzr!9F2Lh!-+jMo44Ao{aXCaB({C87Q~Ga$n+6Xf~5WVrGCUV?N3AOBUtH5^Rwt0c9)GX9ms5HntJO6)6%?c;^8P4}h| zLus%32(K^;(jLiuPLzKoaZ6NP7}c*6+p?1kXYvRBbz(dBrQu1hCOCSab-l{h^w=E1 zI`C>@N3dPInyMmGdVjAXDgYV2>ZAmX*MeA-Z1!rRx&czqw6BfXcbfH?B!hCK@%-1^ z^7fk3eENxP-tVyiD)~)fV+TAo$0zU#$0+&R1RlGSr4GdYw~6hAR&v+0WAk?XV83PE z_t>aH>TeTg6P<&rv7Qy&MC+Ok5>k1bxXBa6OwJnaHO{4&$D)4gIpnlvU~PGD z%q7a;ZWTGL&m~H)V+)4M`JDU7Y(k#Bufq-icJ`g{XaL>3&T3vq#Y0h zu_h);1Ywhi+->K+oA#rh*#a0zL)D?)NWqZ`+`pP{$fc$`J0nYVpGb@ z@J6B(3)aNLyORtOtLLV2x*umGoky0dlPVSm$oa(ffM33u*v`YSqiJ|G@7@;tA$or` zT`;kOSOLpn7b!w<5KCYUy6p+X2-#a?S8>MEH<{7yWl2w$SFQqe{~tJ+PBB1({hK#% z_=xzkspP3FqcSG9dHu62#gYg6tjC}_R+5qEO+@%U_FOUYMPQHRz+Cm`HxnC%CEQ9T z2<69z@6E(k6aeyODnoT_);#~M1n5n8Eey_4AS6XK&yiJ|W$TCv`9JnTIOJ5+sZ+N623C1clF@9J{K ze$VkQn;}m^Me$bexrNqRIM&PtTfj=d3v9KYZSh)%-`UHPUUr&#}YcXt^5(ex3gj2S#!p`!d-0S=k z!eE=Il6kVYD2ZM%w!U8MpAx}Qp8r2iTKIs~xdMApwnI#bA0)PscpkQUkQ?_)ad*qX z@e?eXsm0-g%jdv{!1ITRZ7d@nahhRbTaPgwHOs2mxZYD|+A~Q1~x&9U1qn12i|!D;Ha)9+X6r0ini#I93Z5L-h~gYegk}y_neXif?T(sEcqw6@pSA=RviExR#}WTmGDthZ<+$mor-z=)V(CD*a=ml{yZwL~492 zdC+5f6Vu^io;oF9ZZ@T*`eOv5))g(+{RwYm+}GFeXl>bUdu~bus=pX}wKfGkcBIzEa;{lN&l4 zbh%l5OpzA6v&N>^4A$7f zRXc0SvT!M}Ir({CN^Dv0;ZkCid}YLjBaPM8UOll!w>3we?6j-0#u{tV{uQw6;;Par zD^qf`yGjRLIYQ?5c`^#hZl-0c#$;C-lT<^T0x1=01zdWGC7yro5@6^o>916PBlU8) z%5F75#Q!8dN2=Y8yDQHm1MejkWfEar!Y~C~atS6pNwo8{i&(bh^(*Ub?wa{)^qAdv zIuh@|KS6E+MZ?o$M>uqWM@_JiY zKXr{YH%z(@mhSAYxAAMp>3u1&>NPcY|xn&@rkKvUdq`b-r;gk?h+6-8%_b|kx#mmb6tJ9x{8UrEhl{3^KZ}D z*m2Jv&%x5*VWQOG0#e3vDGxlAlMl+NoN`p0%GtKv9-HlMgF*aMPFc!N<&>rT&K#&e zIWeI&d2Dtc*9K$vojJ#e@61_U0;(S5&YZlPtgGOGJ97$f(J>f@t)|G0a?U1|F1XAk zJT_ySrhl4Oe1o3h}$a<*+J0QH`I9t|8w?#db7BX^}Yc2~|Y zqHDMKIf2h=O-nJoE2sZZJ*iTI_xOD|&%ZC{LZ8RD z$dQA~W83iO9O0bS9>}FYea#(L%Snr_r3d^+&TNyX%{pz?jcK!Kt2WzrX@fgMJqLbF z6j(iHo3_~2J)ZyF9N_+;BUaW$AI=G!ewc~ivEhw8?B2*DIm=P8Bxj>zp8tKfdDLwl zbDIgb`GMQ~&}|-fo0i-B$Zei*n`d%1g|vu_;L+MR#t*hj+9QrS&s{a(x!e~9JfE}N z2G9SQ+q~d5{hZ~FBGh@1SPNdyS#Gb#h8!8MyBYI(4i9TUq1SU#BIfDv*z9zf=H_z- zEH|HXAj5nPNG8yTwjiweobW(f@zd^lAh!dU?R?HjSS?N0tmVRv=5wi4OvGjWJfBMw zgUsiIHRww70RfluIU8hzG*h%p?U!YKT)|rNIg^tHrRcTKx!cd@Qtt`Q56(RZsp_Z} zX2SWL)vX%2Bg8FuE?dS5O!o!7_bs@ncr@^Ux{%Yqb|Hs2ee{?eFZtS6@$urn0Bd2P zxxnm|9G-T|IE3F-`T{QGvXu)JD{IxWmZThKK)jH?PgXY1f6LALw{n)-q!!cQot)

@%&<5%-~yjBbD#1 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 vmlinux.h` on a -// target kernel before running bpf2go, and is NOT committed (the generated -// bytecode embedded in the audit_bpf*.go bindings is what ships). -#include "vmlinux.h" +// vmlinux.h is intentionally NOT used: CO-RE resolves every accessor by +// member name against the target kernel's BTF at load time, so the compile +// time layout does not need to match any kernel. audit_types.h declares the +// handful of kernel structures/members these programs touch (by name), which +// keeps the build hermetic, per-arch-vmlinux-free and small. See the header. +#include "audit_types.h" #include #include #include diff --git a/components/execd/pkg/ebpf/prog/audit_types.h b/components/execd/pkg/ebpf/prog/audit_types.h new file mode 100644 index 000000000..6add2e839 --- /dev/null +++ b/components/execd/pkg/ebpf/prog/audit_types.h @@ -0,0 +1,116 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +/* + * Minimal kernel type definitions for the audit BPF programs (CO-RE). + * + * This REPLACES vmlinux.h: CO-RE resolves every accessor by FIELD NAME + * against the target kernel's BTF at load time, so the compile-time type + * layout here does not need to match any real kernel. We only need the + * handful of structures and members the programs touch, declared with the + * same member NAMES (types/offsets are irrelevant). Keeping this header + * small (vs. the ~150k-line per-arch vmlinux.h) makes the build hermetic + * and architecture-independent. + * + * If a member below is renamed/removed in a future kernel, the CO-RE + * relocation fails open (the hook degrades) — extend this header to match. + * + * Members used: + * - task_struct: real_parent, pid, real_cred + * - cred: uid.val, gid.val, cap_effective + * - trace_event_raw_sched_process_exec: __data_loc_filename + * - trace_event_raw_inet_sock_set_state: newstate, skaddr + * - sock: __sk_common + * - sock_common: skc_family, skc_daddr, skc_v6_daddr.in6_u.u6_addr32, + * skc_dport + */ + +#ifndef __AUDIT_TYPES_H +#define __AUDIT_TYPES_H + +typedef unsigned char __u8; +typedef unsigned int __u32; +typedef unsigned long long __u64; +typedef unsigned short __u16; +typedef __u32 __be32; +typedef __u16 __be16; + +struct task_struct { + void *real_parent; + unsigned int pid; + void *real_cred; +}; + +struct kuid_t { + __u32 val; +}; +struct kgid_t { + __u32 val; +}; +struct kernel_cap_t { + __u64 val; +}; + +struct cred { + struct kuid_t uid; + struct kgid_t gid; + struct kernel_cap_t cap_effective; +}; + +/* trace_event_raw_sched_process_exec (5.16+ shape; field_exists probes + * older kernels via the inline-filename fallback in audit.bpf.c). */ +struct trace_event_raw_sched_process_exec { + void *ent; + __u32 pid; + __u32 old_pid; + __u32 __data_loc_filename; +}; + +struct trace_event_raw_inet_sock_set_state { + void *ent; + void *skaddr; + int oldstate; + int newstate; +}; + +struct in6_addr { + union { + __u8 u6_addr8[16]; + __be32 u6_addr32[4]; + } in6_u; +}; + +struct sock_common { + __u16 skc_dport; + __u32 skc_daddr; + struct in6_addr skc_v6_daddr; + unsigned short skc_family; +}; + +struct sock { + struct sock_common __sk_common; +}; + +/* pt_regs: only the member BPF_KPROBE's PT_REGS_PARM1 reads is needed; + * the arch macro (__TARGET_ARCH_x86/arm64) is set by bpf2go/clang. */ +struct pt_regs; + +#if defined(__TARGET_ARCH_arm64) +/* arm64: BPF_KPROBE uses PT_REGS_ARM64 = struct user_pt_regs, PARM1 = regs[0] */ +struct user_pt_regs { + __u64 regs[31]; + __u64 sp; + __u64 pc; + __u64 pstate; +}; +struct pt_regs { + struct user_pt_regs user_regs; +}; +#else +/* x86-64: PT_REGS_PARM1(x) = (x)->di — pt_regs is the flat register file */ +struct pt_regs { + __u64 r15, r14, r13, r12, bp, bx, r11, r10; + __u64 r9, r8, ax, cx, dx, si, di, orig_ax, ip; + __u64 cs, flags, sp, ss; +}; +#endif + +#endif /* __AUDIT_TYPES_H */ diff --git a/components/execd/pkg/ebpf/prog/vmlinux-arm64.h b/components/execd/pkg/ebpf/prog/vmlinux-arm64.h deleted file mode 100644 index 362803d69..000000000 --- a/components/execd/pkg/ebpf/prog/vmlinux-arm64.h +++ /dev/null @@ -1,152124 +0,0 @@ -#ifndef __VMLINUX_H__ -#define __VMLINUX_H__ - -#ifndef BPF_NO_PRESERVE_ACCESS_INDEX -#pragma clang attribute push (__attribute__((preserve_access_index)), apply_to = record) -#endif - -typedef unsigned char __u8; - -typedef short unsigned int __u16; - -typedef int __s32; - -typedef unsigned int __u32; - -typedef long long int __s64; - -typedef long long unsigned int __u64; - -typedef __u8 u8; - -typedef __u16 u16; - -typedef __s32 s32; - -typedef __u32 u32; - -typedef __s64 s64; - -typedef __u64 u64; - -enum { - false = 0, - true = 1, -}; - -typedef long int __kernel_long_t; - -typedef long unsigned int __kernel_ulong_t; - -typedef int __kernel_pid_t; - -typedef unsigned int __kernel_uid32_t; - -typedef __kernel_ulong_t __kernel_size_t; - -typedef long long int __kernel_time64_t; - -typedef __kernel_long_t __kernel_clock_t; - -typedef int __kernel_timer_t; - -typedef int __kernel_clockid_t; - -typedef __kernel_pid_t pid_t; - -typedef __kernel_clockid_t clockid_t; - -typedef _Bool bool; - -typedef __kernel_uid32_t uid_t; - -typedef __kernel_size_t size_t; - -typedef s64 ktime_t; - -typedef struct { - int counter; -} atomic_t; - -typedef struct { - s64 counter; -} atomic64_t; - -struct list_head { - struct list_head *next; - struct list_head *prev; -}; - -struct hlist_node { - struct hlist_node *next; - struct hlist_node **pprev; -}; - -struct callback_head { - struct callback_head *next; - void (*func)(struct callback_head *); -}; - -struct obs_kernel_param { - const char *str; - int (*setup_func)(char *); - int early; -}; - -typedef atomic64_t atomic_long_t; - -struct __kernel_timespec { - __kernel_time64_t tv_sec; - long long int tv_nsec; -}; - -struct qspinlock { - union { - atomic_t val; - struct { - u8 locked; - u8 pending; - }; - struct { - u16 locked_pending; - u16 tail; - }; - }; -}; - -typedef struct qspinlock arch_spinlock_t; - -struct raw_spinlock { - arch_spinlock_t raw_lock; -}; - -typedef struct raw_spinlock raw_spinlock_t; - -struct cpumask { - long unsigned int bits[1]; -}; - -typedef struct cpumask cpumask_t; - -enum timespec_type { - TT_NONE = 0, - TT_NATIVE = 1, - TT_COMPAT = 2, -}; - -typedef s32 old_time32_t; - -struct old_timespec32 { - old_time32_t tv_sec; - s32 tv_nsec; -}; - -struct pollfd; - -struct restart_block { - long unsigned int arch_data; - long int (*fn)(struct restart_block *); - union { - struct { - u32 *uaddr; - u32 val; - u32 flags; - u32 bitset; - u64 time; - u32 *uaddr2; - } futex; - struct { - clockid_t clockid; - enum timespec_type type; - union { - struct __kernel_timespec *rmtp; - struct old_timespec32 *compat_rmtp; - }; - u64 expires; - } nanosleep; - struct { - struct pollfd *ufds; - int nfds; - int has_timeout; - long unsigned int tv_sec; - long unsigned int tv_nsec; - } poll; - }; -}; - -struct thread_info { - long unsigned int flags; - union { - u64 preempt_count; - struct { - u32 count; - u32 need_resched; - } preempt; - }; - u32 cpu; -}; - -struct llist_node; - -struct llist_head { - struct llist_node *first; -}; - -struct llist_node { - struct llist_node *next; -}; - -struct __call_single_node { - struct llist_node llist; - union { - unsigned int u_flags; - atomic_t a_flags; - }; - u16 src; - u16 dst; -}; - -struct refcount_struct { - atomic_t refs; -}; - -typedef struct refcount_struct refcount_t; - -struct load_weight { - long unsigned int weight; - u32 inv_weight; -}; - -struct rb_node { - long unsigned int __rb_parent_color; - struct rb_node *rb_right; - struct rb_node *rb_left; -}; - -struct sched_avg { - u64 last_update_time; - u64 load_sum; - u64 runnable_sum; - u32 util_sum; - u32 period_contrib; - long unsigned int load_avg; - long unsigned int runnable_avg; - long unsigned int util_avg; - unsigned int util_est; -}; - -struct cfs_rq; - -struct sched_entity { - struct load_weight load; - struct rb_node run_node; - u64 deadline; - u64 min_vruntime; - u64 min_slice; - struct list_head group_node; - unsigned char on_rq; - unsigned char sched_delayed; - unsigned char rel_deadline; - unsigned char custom_slice; - u64 exec_start; - u64 sum_exec_runtime; - u64 prev_sum_exec_runtime; - u64 vruntime; - s64 vlag; - u64 slice; - u64 nr_migrations; - int depth; - struct sched_entity *parent; - struct cfs_rq *cfs_rq; - struct cfs_rq *my_q; - long unsigned int runnable_weight; - long: 64; - struct sched_avg avg; -}; - -struct sched_rt_entity { - struct list_head run_list; - long unsigned int timeout; - long unsigned int watchdog_stamp; - unsigned int time_slice; - short unsigned int on_rq; - short unsigned int on_list; - struct sched_rt_entity *back; -}; - -struct timerqueue_node { - struct rb_node node; - ktime_t expires; -}; - -enum hrtimer_restart { - HRTIMER_NORESTART = 0, - HRTIMER_RESTART = 1, -}; - -struct hrtimer_clock_base; - -struct hrtimer { - struct timerqueue_node node; - ktime_t _softexpires; - enum hrtimer_restart (*function)(struct hrtimer *); - struct hrtimer_clock_base *base; - u8 state; - u8 is_rel; - u8 is_soft; - u8 is_hard; -}; - -struct sched_dl_entity; - -typedef bool (*dl_server_has_tasks_f)(struct sched_dl_entity *); - -struct task_struct; - -typedef struct task_struct * (*dl_server_pick_f)(struct sched_dl_entity *); - -struct rq; - -struct sched_dl_entity { - struct rb_node rb_node; - u64 dl_runtime; - u64 dl_deadline; - u64 dl_period; - u64 dl_bw; - u64 dl_density; - s64 runtime; - u64 deadline; - unsigned int flags; - unsigned int dl_throttled: 1; - unsigned int dl_yielded: 1; - unsigned int dl_non_contending: 1; - unsigned int dl_overrun: 1; - unsigned int dl_server: 1; - unsigned int dl_server_active: 1; - unsigned int dl_defer: 1; - unsigned int dl_defer_armed: 1; - unsigned int dl_defer_running: 1; - struct hrtimer dl_timer; - struct hrtimer inactive_timer; - struct rq *rq; - dl_server_has_tasks_f server_has_tasks; - dl_server_pick_f server_pick_task; - struct sched_dl_entity *pi_se; -}; - -struct sched_statistics {}; - -union rcu_special { - struct { - u8 blocked; - u8 need_qs; - u8 exp_hint; - u8 need_mb; - } b; - u32 s; -}; - -struct sched_info { - long unsigned int pcount; - long long unsigned int run_delay; - long long unsigned int last_arrival; - long long unsigned int last_queued; -}; - -struct plist_node { - int prio; - struct list_head prio_list; - struct list_head node_list; -}; - -struct prev_cputime { - u64 utime; - u64 stime; - raw_spinlock_t lock; -}; - -struct rb_root { - struct rb_node *rb_node; -}; - -struct rb_root_cached { - struct rb_root rb_root; - struct rb_node *rb_leftmost; -}; - -struct timerqueue_head { - struct rb_root_cached rb_root; -}; - -struct posix_cputimer_base { - u64 nextevt; - struct timerqueue_head tqhead; -}; - -struct posix_cputimers { - struct posix_cputimer_base bases[3]; - unsigned int timers_active; - unsigned int expiry_active; -}; - -struct optimistic_spin_queue { - atomic_t tail; -}; - -struct mutex { - atomic_long_t owner; - raw_spinlock_t wait_lock; - struct optimistic_spin_queue osq; - struct list_head wait_list; -}; - -struct posix_cputimers_work { - struct callback_head work; - struct mutex mutex; - unsigned int scheduled; -}; - -struct sem_undo_list; - -struct sysv_sem { - struct sem_undo_list *undo_list; -}; - -struct sysv_shm { - struct list_head shm_clist; -}; - -typedef struct { - long unsigned int sig[1]; -} sigset_t; - -struct sigpending { - struct list_head list; - sigset_t signal; -}; - -typedef struct { - uid_t val; -} kuid_t; - -struct seccomp_filter; - -struct seccomp { - int mode; - atomic_t filter_count; - struct seccomp_filter *filter; -}; - -struct syscall_user_dispatch {}; - -struct spinlock { - union { - struct raw_spinlock rlock; - }; -}; - -typedef struct spinlock spinlock_t; - -struct wake_q_node { - struct wake_q_node *next; -}; - -struct task_io_accounting { - u64 rchar; - u64 wchar; - u64 syscr; - u64 syscw; - u64 read_bytes; - u64 write_bytes; - u64 cancelled_write_bytes; -}; - -typedef struct { - long unsigned int bits[1]; -} nodemask_t; - -struct seqcount { - unsigned int sequence; -}; - -typedef struct seqcount seqcount_t; - -struct seqcount_spinlock { - seqcount_t seqcount; -}; - -typedef struct seqcount_spinlock seqcount_spinlock_t; - -struct arch_tlbflush_unmap_batch {}; - -struct tlbflush_unmap_batch { - struct arch_tlbflush_unmap_batch arch; - bool flush_required; - bool writable; -}; - -struct page; - -struct page_frag { - struct page *page; - __u32 offset; - __u32 size; -}; - -struct kmap_ctrl {}; - -struct timer_list { - struct hlist_node entry; - long unsigned int expires; - void (*function)(struct timer_list *); - u32 flags; -}; - -struct cpu_context { - long unsigned int x19; - long unsigned int x20; - long unsigned int x21; - long unsigned int x22; - long unsigned int x23; - long unsigned int x24; - long unsigned int x25; - long unsigned int x26; - long unsigned int x27; - long unsigned int x28; - long unsigned int fp; - long unsigned int sp; - long unsigned int pc; -}; - -struct user_fpsimd_state { - __int128 unsigned vregs[32]; - __u32 fpsr; - __u32 fpcr; - __u32 __reserved[2]; -}; - -enum fp_type { - FP_STATE_CURRENT = 0, - FP_STATE_FPSIMD = 1, - FP_STATE_SVE = 2, -}; - -struct perf_event; - -struct debug_info { - int suspended_step; - int bps_disabled; - int wps_disabled; - struct perf_event *hbp_break[16]; - struct perf_event *hbp_watch[16]; -}; - -struct ptrauth_key { - long unsigned int lo; - long unsigned int hi; -}; - -struct ptrauth_keys_user { - struct ptrauth_key apia; - struct ptrauth_key apib; - struct ptrauth_key apda; - struct ptrauth_key apdb; - struct ptrauth_key apga; -}; - -struct ptrauth_keys_kernel { - struct ptrauth_key apia; -}; - -struct thread_struct { - struct cpu_context cpu_context; - long: 64; - struct { - long unsigned int tp_value; - long unsigned int tp2_value; - u64 fpmr; - long unsigned int pad; - struct user_fpsimd_state fpsimd_state; - } uw; - enum fp_type fp_type; - unsigned int fpsimd_cpu; - void *sve_state; - void *sme_state; - unsigned int vl[2]; - unsigned int vl_onexec[2]; - long unsigned int fault_address; - long unsigned int fault_code; - struct debug_info debug; - long: 64; - struct user_fpsimd_state kernel_fpsimd_state; - unsigned int kernel_fpsimd_cpu; - struct ptrauth_keys_user keys_user; - struct ptrauth_keys_kernel keys_kernel; - u64 mte_ctrl; - u64 sctlr_user; - u64 svcr; - u64 tpidr2_el0; - u64 por_el0; -}; - -struct sched_class; - -struct task_group; - -struct mm_struct; - -struct address_space; - -struct pid; - -struct completion; - -struct cred; - -struct key; - -struct nameidata; - -struct fs_struct; - -struct files_struct; - -struct io_uring_task; - -struct nsproxy; - -struct signal_struct; - -struct sighand_struct; - -struct audit_context; - -struct rt_mutex_waiter; - -struct bio_list; - -struct blk_plug; - -struct reclaim_state; - -struct io_context; - -struct capture_control; - -struct kernel_siginfo; - -typedef struct kernel_siginfo kernel_siginfo_t; - -struct css_set; - -struct robust_list_head; - -struct futex_pi_state; - -struct perf_event_context; - -struct rseq; - -struct pipe_inode_info; - -struct task_delay_info; - -struct mem_cgroup; - -struct obj_cgroup; - -struct gendisk; - -struct uprobe_task; - -struct bpf_local_storage; - -struct bpf_run_ctx; - -struct bpf_net_context; - -struct task_struct { - struct thread_info thread_info; - unsigned int __state; - unsigned int saved_state; - void *stack; - refcount_t usage; - unsigned int flags; - unsigned int ptrace; - int on_cpu; - struct __call_single_node wake_entry; - unsigned int wakee_flips; - long unsigned int wakee_flip_decay_ts; - struct task_struct *last_wakee; - int recent_used_cpu; - int wake_cpu; - int on_rq; - int prio; - int static_prio; - int normal_prio; - unsigned int rt_priority; - struct sched_entity se; - struct sched_rt_entity rt; - struct sched_dl_entity dl; - struct sched_dl_entity *dl_server; - const struct sched_class *sched_class; - struct task_group *sched_task_group; - struct sched_statistics stats; - unsigned int policy; - long unsigned int max_allowed_capacity; - int nr_cpus_allowed; - const cpumask_t *cpus_ptr; - cpumask_t *user_cpus_ptr; - cpumask_t cpus_mask; - void *migration_pending; - short unsigned int migration_disabled; - short unsigned int migration_flags; - int trc_reader_nesting; - int trc_ipi_to_cpu; - union rcu_special trc_reader_special; - struct list_head trc_holdout_list; - struct list_head trc_blkd_node; - int trc_blkd_cpu; - struct sched_info sched_info; - struct list_head tasks; - struct plist_node pushable_tasks; - struct rb_node pushable_dl_tasks; - struct mm_struct *mm; - struct mm_struct *active_mm; - struct address_space *faults_disabled_mapping; - int exit_state; - int exit_code; - int exit_signal; - int pdeath_signal; - long unsigned int jobctl; - unsigned int personality; - unsigned int sched_reset_on_fork: 1; - unsigned int sched_contributes_to_load: 1; - unsigned int sched_migrated: 1; - unsigned int sched_task_hot: 1; - long: 28; - unsigned int sched_remote_wakeup: 1; - unsigned int sched_rt_mutex: 1; - unsigned int in_execve: 1; - unsigned int in_iowait: 1; - unsigned int in_user_fault: 1; - unsigned int in_lru_fault: 1; - unsigned int no_cgroup_migration: 1; - unsigned int frozen: 1; - unsigned int use_memdelay: 1; - unsigned int in_memstall: 1; - unsigned int in_eventfd: 1; - unsigned int in_thrashing: 1; - long unsigned int atomic_flags; - struct restart_block restart_block; - pid_t pid; - pid_t tgid; - long unsigned int stack_canary; - struct task_struct *real_parent; - struct task_struct *parent; - struct list_head children; - struct list_head sibling; - struct task_struct *group_leader; - struct list_head ptraced; - struct list_head ptrace_entry; - struct pid *thread_pid; - struct hlist_node pid_links[4]; - struct list_head thread_node; - struct completion *vfork_done; - int *set_child_tid; - int *clear_child_tid; - void *worker_private; - u64 utime; - u64 stime; - u64 gtime; - struct prev_cputime prev_cputime; - long unsigned int nvcsw; - long unsigned int nivcsw; - u64 start_time; - u64 start_boottime; - long unsigned int min_flt; - long unsigned int maj_flt; - struct posix_cputimers posix_cputimers; - struct posix_cputimers_work posix_cputimers_work; - const struct cred *ptracer_cred; - const struct cred *real_cred; - const struct cred *cred; - struct key *cached_requested_key; - char comm[16]; - struct nameidata *nameidata; - struct sysv_sem sysvsem; - struct sysv_shm sysvshm; - struct fs_struct *fs; - struct files_struct *files; - struct io_uring_task *io_uring; - struct nsproxy *nsproxy; - struct signal_struct *signal; - struct sighand_struct *sighand; - sigset_t blocked; - sigset_t real_blocked; - sigset_t saved_sigmask; - struct sigpending pending; - long unsigned int sas_ss_sp; - size_t sas_ss_size; - unsigned int sas_ss_flags; - struct callback_head *task_works; - struct audit_context *audit_context; - kuid_t loginuid; - unsigned int sessionid; - struct seccomp seccomp; - struct syscall_user_dispatch syscall_dispatch; - u64 parent_exec_id; - u64 self_exec_id; - spinlock_t alloc_lock; - raw_spinlock_t pi_lock; - struct wake_q_node wake_q; - struct rb_root_cached pi_waiters; - struct task_struct *pi_top_task; - struct rt_mutex_waiter *pi_blocked_on; - void *journal_info; - struct bio_list *bio_list; - struct blk_plug *plug; - struct reclaim_state *reclaim_state; - struct io_context *io_context; - struct capture_control *capture_control; - long unsigned int ptrace_message; - kernel_siginfo_t *last_siginfo; - struct task_io_accounting ioac; - unsigned int psi_flags; - u64 acct_rss_mem1; - u64 acct_vm_mem1; - u64 acct_timexpd; - nodemask_t mems_allowed; - seqcount_spinlock_t mems_allowed_seq; - int cpuset_mem_spread_rotor; - struct css_set *cgroups; - struct list_head cg_list; - struct robust_list_head *robust_list; - struct list_head pi_state_list; - struct futex_pi_state *pi_state_cache; - struct mutex futex_exit_mutex; - unsigned int futex_state; - u8 perf_recursion[4]; - struct perf_event_context *perf_event_ctxp; - struct mutex perf_event_mutex; - struct list_head perf_event_list; - struct rseq *rseq; - u32 rseq_len; - u32 rseq_sig; - long unsigned int rseq_event_mask; - int mm_cid; - int last_mm_cid; - int migrate_from_cpu; - int mm_cid_active; - struct callback_head cid_work; - struct tlbflush_unmap_batch tlb_ubc; - struct pipe_inode_info *splice_pipe; - struct page_frag task_frag; - struct task_delay_info *delays; - int nr_dirtied; - int nr_dirtied_pause; - long unsigned int dirty_paused_when; - u64 timer_slack_ns; - u64 default_timer_slack_ns; - long unsigned int trace_recursion; - struct mem_cgroup *memcg_in_oom; - unsigned int memcg_nr_pages_over_high; - struct mem_cgroup *active_memcg; - struct obj_cgroup *objcg; - struct gendisk *throttle_disk; - struct uprobe_task *utask; - struct kmap_ctrl kmap_ctrl; - struct callback_head rcu; - refcount_t rcu_users; - int pagefault_disabled; - struct task_struct *oom_reaper_list; - struct timer_list oom_reaper_timer; - refcount_t stack_refcount; - void *security; - struct bpf_local_storage *bpf_storage; - struct bpf_run_ctx *bpf_ctx; - struct bpf_net_context *bpf_net_context; - struct llist_head kretprobe_instances; - u8 sched_docker_op; - struct thread_struct thread; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -union sigval { - int sival_int; - void *sival_ptr; -}; - -typedef union sigval sigval_t; - -union __sifields { - struct { - __kernel_pid_t _pid; - __kernel_uid32_t _uid; - } _kill; - struct { - __kernel_timer_t _tid; - int _overrun; - sigval_t _sigval; - int _sys_private; - } _timer; - struct { - __kernel_pid_t _pid; - __kernel_uid32_t _uid; - sigval_t _sigval; - } _rt; - struct { - __kernel_pid_t _pid; - __kernel_uid32_t _uid; - int _status; - __kernel_clock_t _utime; - __kernel_clock_t _stime; - } _sigchld; - struct { - void *_addr; - union { - int _trapno; - short int _addr_lsb; - struct { - char _dummy_bnd[8]; - void *_lower; - void *_upper; - } _addr_bnd; - struct { - char _dummy_pkey[8]; - __u32 _pkey; - } _addr_pkey; - struct { - long unsigned int _data; - __u32 _type; - __u32 _flags; - } _perf; - }; - } _sigfault; - struct { - long int _band; - int _fd; - } _sigpoll; - struct { - void *_call_addr; - int _syscall; - unsigned int _arch; - } _sigsys; -}; - -struct kernel_siginfo { - struct { - int si_signo; - int si_errno; - int si_code; - union __sifields _sifields; - }; -}; - -struct rseq { - __u32 cpu_id_start; - __u32 cpu_id; - __u64 rseq_cs; - __u32 flags; - __u32 node_id; - __u32 mm_cid; - char end[0]; -}; - -struct rq_flags; - -struct affinity_context; - -struct sched_class { - void (*enqueue_task)(struct rq *, struct task_struct *, int); - bool (*dequeue_task)(struct rq *, struct task_struct *, int); - void (*yield_task)(struct rq *); - bool (*yield_to_task)(struct rq *, struct task_struct *); - void (*wakeup_preempt)(struct rq *, struct task_struct *, int); - int (*balance)(struct rq *, struct task_struct *, struct rq_flags *); - struct task_struct * (*pick_task)(struct rq *); - struct task_struct * (*pick_next_task)(struct rq *, struct task_struct *); - void (*put_prev_task)(struct rq *, struct task_struct *, struct task_struct *); - void (*set_next_task)(struct rq *, struct task_struct *, bool); - int (*select_task_rq)(struct task_struct *, int, int); - void (*migrate_task_rq)(struct task_struct *, int); - void (*task_woken)(struct rq *, struct task_struct *); - void (*set_cpus_allowed)(struct task_struct *, struct affinity_context *); - void (*rq_online)(struct rq *); - void (*rq_offline)(struct rq *); - struct rq * (*find_lock_rq)(struct task_struct *, struct rq *); - void (*task_tick)(struct rq *, struct task_struct *, int); - void (*task_fork)(struct task_struct *); - void (*task_dead)(struct task_struct *); - void (*switching_to)(struct rq *, struct task_struct *); - void (*switched_from)(struct rq *, struct task_struct *); - void (*switched_to)(struct rq *, struct task_struct *); - void (*reweight_task)(struct rq *, struct task_struct *, const struct load_weight *); - void (*prio_changed)(struct rq *, struct task_struct *, int); - unsigned int (*get_rr_interval)(struct rq *, struct task_struct *); - void (*update_curr)(struct rq *); - void (*task_change_group)(struct task_struct *); -}; - -typedef unsigned int __kernel_gid32_t; - -typedef __kernel_gid32_t gid_t; - -typedef struct { - gid_t val; -} kgid_t; - -typedef struct { - u64 val; -} kernel_cap_t; - -struct user_struct; - -struct user_namespace; - -struct ucounts; - -struct group_info; - -struct cred { - atomic_long_t usage; - kuid_t uid; - kgid_t gid; - kuid_t suid; - kgid_t sgid; - kuid_t euid; - kgid_t egid; - kuid_t fsuid; - kgid_t fsgid; - unsigned int securebits; - kernel_cap_t cap_inheritable; - kernel_cap_t cap_permitted; - kernel_cap_t cap_effective; - kernel_cap_t cap_bset; - kernel_cap_t cap_ambient; - unsigned char jit_keyring; - struct key *session_keyring; - struct key *process_keyring; - struct key *thread_keyring; - struct key *request_key_auth; - void *security; - struct user_struct *user; - struct user_namespace *user_ns; - struct ucounts *ucounts; - struct group_info *group_info; - union { - int non_rcu; - struct callback_head rcu; - }; -}; - -enum pcpu_fc { - PCPU_FC_AUTO = 0, - PCPU_FC_EMBED = 1, - PCPU_FC_PAGE = 2, - PCPU_FC_NR = 3, -}; - -typedef signed char __s8; - -typedef short int __s16; - -typedef __s8 s8; - -typedef __kernel_long_t __kernel_ssize_t; - -typedef long long int __kernel_loff_t; - -typedef __u32 __le32; - -typedef unsigned int __poll_t; - -typedef u32 __kernel_dev_t; - -typedef __kernel_dev_t dev_t; - -typedef short unsigned int umode_t; - -typedef __kernel_loff_t loff_t; - -typedef __kernel_ssize_t ssize_t; - -typedef s32 int32_t; - -typedef u32 uint32_t; - -typedef u64 sector_t; - -typedef u64 blkcnt_t; - -typedef unsigned int gfp_t; - -typedef unsigned int fmode_t; - -struct hlist_head { - struct hlist_node *first; -}; - -struct jump_entry { - s32 code; - s32 target; - long int key; -}; - -struct static_key_mod; - -struct static_key { - atomic_t enabled; - union { - long unsigned int type; - struct jump_entry *entries; - struct static_key_mod *next; - }; -}; - -typedef bool pstate_check_t(long unsigned int); - -struct static_key_false { - struct static_key key; -}; - -struct lock_class_key {}; - -struct fs_context; - -struct fs_parameter_spec; - -struct dentry; - -struct super_block; - -struct module; - -struct file_system_type { - const char *name; - int fs_flags; - int (*init_fs_context)(struct fs_context *); - const struct fs_parameter_spec *parameters; - struct dentry * (*mount)(struct file_system_type *, int, const char *, void *); - void (*kill_sb)(struct super_block *); - struct module *owner; - struct file_system_type *next; - struct hlist_head fs_supers; - struct lock_class_key s_lock_key; - struct lock_class_key s_umount_key; - struct lock_class_key s_vfs_rename_key; - struct lock_class_key s_writers_key[3]; - struct lock_class_key i_lock_key; - struct lock_class_key i_mutex_key; - struct lock_class_key invalidate_lock_key; - struct lock_class_key i_mutex_dir_key; -}; - -struct qrwlock { - union { - atomic_t cnts; - struct { - u8 wlocked; - u8 __lstate[3]; - }; - }; - arch_spinlock_t wait_lock; -}; - -typedef struct qrwlock arch_rwlock_t; - -struct lockdep_map {}; - -struct ratelimit_state { - raw_spinlock_t lock; - int interval; - int burst; - int printed; - int missed; - unsigned int flags; - long unsigned int begin; -}; - -typedef unsigned int fop_flags_t; - -typedef void *fl_owner_t; - -struct file; - -struct kiocb; - -struct iov_iter; - -struct io_comp_batch; - -struct dir_context; - -struct poll_table_struct; - -struct vm_area_struct; - -struct inode; - -struct file_lock; - -struct file_lease; - -struct seq_file; - -struct io_uring_cmd; - -struct file_operations { - struct module *owner; - fop_flags_t fop_flags; - loff_t (*llseek)(struct file *, loff_t, int); - ssize_t (*read)(struct file *, char *, size_t, loff_t *); - ssize_t (*write)(struct file *, const char *, size_t, loff_t *); - ssize_t (*read_iter)(struct kiocb *, struct iov_iter *); - ssize_t (*write_iter)(struct kiocb *, struct iov_iter *); - int (*iopoll)(struct kiocb *, struct io_comp_batch *, unsigned int); - int (*iterate_shared)(struct file *, struct dir_context *); - __poll_t (*poll)(struct file *, struct poll_table_struct *); - long int (*unlocked_ioctl)(struct file *, unsigned int, long unsigned int); - long int (*compat_ioctl)(struct file *, unsigned int, long unsigned int); - int (*mmap)(struct file *, struct vm_area_struct *); - int (*open)(struct inode *, struct file *); - int (*flush)(struct file *, fl_owner_t); - int (*release)(struct inode *, struct file *); - int (*fsync)(struct file *, loff_t, loff_t, int); - int (*fasync)(int, struct file *, int); - int (*lock)(struct file *, int, struct file_lock *); - long unsigned int (*get_unmapped_area)(struct file *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - int (*check_flags)(int); - int (*flock)(struct file *, int, struct file_lock *); - ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int); - ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); - void (*splice_eof)(struct file *); - int (*setlease)(struct file *, int, struct file_lease **, void **); - long int (*fallocate)(struct file *, int, loff_t, loff_t); - void (*show_fdinfo)(struct seq_file *, struct file *); - ssize_t (*copy_file_range)(struct file *, loff_t, struct file *, loff_t, size_t, unsigned int); - loff_t (*remap_file_range)(struct file *, loff_t, struct file *, loff_t, loff_t, unsigned int); - int (*fadvise)(struct file *, loff_t, loff_t, int); - int (*uring_cmd)(struct io_uring_cmd *, unsigned int); - int (*uring_cmd_iopoll)(struct io_uring_cmd *, struct io_comp_batch *, unsigned int); -}; - -struct bug_entry { - int bug_addr_disp; - int file_disp; - short unsigned int line; - short unsigned int flags; -}; - -struct pollfd { - int fd; - short int events; - short int revents; -}; - -struct static_call_key { - void *func; -}; - -typedef struct cpumask cpumask_var_t[1]; - -struct user_pt_regs { - __u64 regs[31]; - __u64 sp; - __u64 pc; - __u64 pstate; -}; - -struct pt_regs { - union { - struct user_pt_regs user_regs; - struct { - u64 regs[31]; - u64 sp; - u64 pc; - u64 pstate; - }; - }; - u64 orig_x0; - s32 syscallno; - u32 unused2; - u64 sdei_ttbr1; - u64 pmr_save; - u64 stackframe[2]; - u64 lockdep_hardirqs; - u64 exit_rcu; -}; - -typedef void (*smp_call_func_t)(void *); - -struct __call_single_data { - struct __call_single_node node; - smp_call_func_t func; - void *info; -}; - -typedef struct __call_single_data call_single_data_t; - -typedef struct { - arch_rwlock_t raw_lock; -} rwlock_t; - -struct cacheline_padding { - char x[0]; -}; - -struct arch_hw_breakpoint_ctrl { - u32 __reserved: 19; - u32 len: 8; - u32 type: 2; - u32 privilege: 2; - u32 enabled: 1; -}; - -struct arch_hw_breakpoint { - u64 address; - u64 trigger; - struct arch_hw_breakpoint_ctrl ctrl; -}; - -typedef u64 pteval_t; - -typedef u64 pmdval_t; - -typedef u64 pudval_t; - -typedef u64 pgdval_t; - -typedef struct { - pteval_t pte; -} pte_t; - -typedef struct { - pmdval_t pmd; -} pmd_t; - -typedef struct { - pudval_t pud; -} pud_t; - -typedef struct { - pgdval_t pgd; -} pgd_t; - -typedef struct { - pteval_t pgprot; -} pgprot_t; - -enum perf_event_state { - PERF_EVENT_STATE_DEAD = -4, - PERF_EVENT_STATE_EXIT = -3, - PERF_EVENT_STATE_ERROR = -2, - PERF_EVENT_STATE_OFF = -1, - PERF_EVENT_STATE_INACTIVE = 0, - PERF_EVENT_STATE_ACTIVE = 1, -}; - -typedef struct { - atomic_long_t a; -} local_t; - -typedef struct { - local_t a; -} local64_t; - -struct perf_event_attr { - __u32 type; - __u32 size; - __u64 config; - union { - __u64 sample_period; - __u64 sample_freq; - }; - __u64 sample_type; - __u64 read_format; - __u64 disabled: 1; - __u64 inherit: 1; - __u64 pinned: 1; - __u64 exclusive: 1; - __u64 exclude_user: 1; - __u64 exclude_kernel: 1; - __u64 exclude_hv: 1; - __u64 exclude_idle: 1; - __u64 mmap: 1; - __u64 comm: 1; - __u64 freq: 1; - __u64 inherit_stat: 1; - __u64 enable_on_exec: 1; - __u64 task: 1; - __u64 watermark: 1; - __u64 precise_ip: 2; - __u64 mmap_data: 1; - __u64 sample_id_all: 1; - __u64 exclude_host: 1; - __u64 exclude_guest: 1; - __u64 exclude_callchain_kernel: 1; - __u64 exclude_callchain_user: 1; - __u64 mmap2: 1; - __u64 comm_exec: 1; - __u64 use_clockid: 1; - __u64 context_switch: 1; - __u64 write_backward: 1; - __u64 namespaces: 1; - __u64 ksymbol: 1; - __u64 bpf_event: 1; - __u64 aux_output: 1; - __u64 cgroup: 1; - __u64 text_poke: 1; - __u64 build_id: 1; - __u64 inherit_thread: 1; - __u64 remove_on_exec: 1; - __u64 sigtrap: 1; - __u64 __reserved_1: 26; - union { - __u32 wakeup_events; - __u32 wakeup_watermark; - }; - __u32 bp_type; - union { - __u64 bp_addr; - __u64 kprobe_func; - __u64 uprobe_path; - __u64 config1; - }; - union { - __u64 bp_len; - __u64 kprobe_addr; - __u64 probe_offset; - __u64 config2; - }; - __u64 branch_sample_type; - __u64 sample_regs_user; - __u32 sample_stack_user; - __s32 clockid; - __u64 sample_regs_intr; - __u32 aux_watermark; - __u16 sample_max_stack; - __u16 __reserved_2; - __u32 aux_sample_size; - union { - __u32 aux_action; - struct { - __u32 aux_start_paused: 1; - __u32 aux_pause: 1; - __u32 aux_resume: 1; - __u32 __reserved_3: 29; - }; - }; - __u64 sig_data; - __u64 config3; -}; - -struct hw_perf_event_extra { - u64 config; - unsigned int reg; - int alloc; - int idx; -}; - -struct rhash_head { - struct rhash_head *next; -}; - -struct rhlist_head { - struct rhash_head rhead; - struct rhlist_head *next; -}; - -struct hw_perf_event { - union { - struct { - u64 config; - u64 last_tag; - long unsigned int config_base; - long unsigned int event_base; - int event_base_rdpmc; - int idx; - int last_cpu; - int flags; - struct hw_perf_event_extra extra_reg; - struct hw_perf_event_extra branch_reg; - }; - struct { - u64 aux_config; - unsigned int aux_paused; - }; - struct { - struct hrtimer hrtimer; - }; - struct { - struct list_head tp_list; - }; - struct { - u64 pwr_acc; - u64 ptsc; - }; - struct { - struct arch_hw_breakpoint info; - struct rhlist_head bp_list; - }; - struct { - u8 iommu_bank; - u8 iommu_cntr; - u16 padding; - u64 conf; - u64 conf1; - }; - }; - struct task_struct *target; - void *addr_filters; - long unsigned int addr_filters_gen; - int state; - local64_t prev_count; - u64 sample_period; - union { - struct { - u64 last_period; - local64_t period_left; - }; - struct { - u64 saved_metric; - u64 saved_slots; - }; - }; - u64 interrupts_seq; - u64 interrupts; - u64 freq_time_stamp; - u64 freq_count_stamp; -}; - -struct wait_queue_head { - spinlock_t lock; - struct list_head head; -}; - -typedef struct wait_queue_head wait_queue_head_t; - -struct rcuwait { - struct task_struct *task; -}; - -struct irq_work { - struct __call_single_node node; - void (*func)(struct irq_work *); - struct rcuwait irqwait; -}; - -struct perf_addr_filters_head { - struct list_head list; - raw_spinlock_t lock; - unsigned int nr_file_filters; -}; - -struct perf_sample_data; - -typedef void (*perf_overflow_handler_t)(struct perf_event *, struct perf_sample_data *, struct pt_regs *); - -struct ftrace_ops; - -struct ftrace_regs; - -typedef void (*ftrace_func_t)(long unsigned int, long unsigned int, struct ftrace_ops *, struct ftrace_regs *); - -struct ftrace_hash; - -struct ftrace_ops_hash { - struct ftrace_hash *notrace_hash; - struct ftrace_hash *filter_hash; - struct mutex regex_lock; -}; - -enum ftrace_ops_cmd { - FTRACE_OPS_CMD_ENABLE_SHARE_IPMODIFY_SELF = 0, - FTRACE_OPS_CMD_ENABLE_SHARE_IPMODIFY_PEER = 1, - FTRACE_OPS_CMD_DISABLE_SHARE_IPMODIFY_PEER = 2, -}; - -typedef int (*ftrace_ops_func_t)(struct ftrace_ops *, enum ftrace_ops_cmd); - -struct ftrace_ops { - ftrace_func_t func; - struct ftrace_ops *next; - long unsigned int flags; - void *private; - ftrace_func_t saved_func; - struct ftrace_ops_hash local_hash; - struct ftrace_ops_hash *func_hash; - struct ftrace_ops_hash old_hash; - long unsigned int trampoline; - long unsigned int trampoline_size; - struct list_head list; - struct list_head subop_list; - ftrace_ops_func_t ops_func; - struct ftrace_ops *managed; - long unsigned int direct_call; -}; - -struct pmu; - -struct perf_event_pmu_context; - -struct perf_buffer; - -struct fasync_struct; - -struct perf_addr_filter_range; - -struct pid_namespace; - -struct bpf_prog; - -struct trace_event_call; - -struct event_filter; - -struct perf_cgroup; - -struct perf_event { - struct list_head event_entry; - struct list_head sibling_list; - struct list_head active_list; - struct rb_node group_node; - u64 group_index; - struct list_head migrate_entry; - struct hlist_node hlist_entry; - struct list_head active_entry; - int nr_siblings; - int event_caps; - int group_caps; - unsigned int group_generation; - struct perf_event *group_leader; - struct pmu *pmu; - void *pmu_private; - enum perf_event_state state; - unsigned int attach_state; - local64_t count; - atomic64_t child_count; - u64 total_time_enabled; - u64 total_time_running; - u64 tstamp; - struct perf_event_attr attr; - u16 header_size; - u16 id_header_size; - u16 read_size; - struct hw_perf_event hw; - struct perf_event_context *ctx; - struct perf_event_pmu_context *pmu_ctx; - atomic_long_t refcount; - atomic64_t child_total_time_enabled; - atomic64_t child_total_time_running; - struct mutex child_mutex; - struct list_head child_list; - struct perf_event *parent; - int oncpu; - int cpu; - struct list_head owner_entry; - struct task_struct *owner; - struct mutex mmap_mutex; - atomic_t mmap_count; - struct perf_buffer *rb; - struct list_head rb_entry; - long unsigned int rcu_batches; - int rcu_pending; - wait_queue_head_t waitq; - struct fasync_struct *fasync; - unsigned int pending_wakeup; - unsigned int pending_kill; - unsigned int pending_disable; - long unsigned int pending_addr; - struct irq_work pending_irq; - struct irq_work pending_disable_irq; - struct callback_head pending_task; - unsigned int pending_work; - atomic_t event_limit; - struct perf_addr_filters_head addr_filters; - struct perf_addr_filter_range *addr_filter_ranges; - long unsigned int addr_filters_gen; - struct perf_event *aux_event; - void (*destroy)(struct perf_event *); - struct callback_head callback_head; - struct pid_namespace *ns; - u64 id; - atomic64_t lost_samples; - u64 (*clock)(void); - perf_overflow_handler_t overflow_handler; - void *overflow_handler_context; - struct bpf_prog *prog; - u64 bpf_cookie; - struct trace_event_call *tp_event; - struct event_filter *filter; - struct ftrace_ops ftrace_ops; - struct perf_cgroup *cgrp; - void *security; - struct list_head sb_list; - __u32 orig_type; -}; - -struct hlist_bl_node; - -struct hlist_bl_head { - struct hlist_bl_node *first; -}; - -struct hlist_bl_node { - struct hlist_bl_node *next; - struct hlist_bl_node **pprev; -}; - -struct seqcount_raw_spinlock { - seqcount_t seqcount; -}; - -typedef struct seqcount_raw_spinlock seqcount_raw_spinlock_t; - -typedef struct { - seqcount_spinlock_t seqcount; - spinlock_t lock; -} seqlock_t; - -struct lockref { - union { - __u64 lock_count; - struct { - spinlock_t lock; - int count; - }; - }; -}; - -struct qstr { - union { - struct { - u32 hash; - u32 len; - }; - u64 hash_len; - }; - const unsigned char *name; -}; - -struct dentry_operations; - -struct dentry { - unsigned int d_flags; - seqcount_spinlock_t d_seq; - struct hlist_bl_node d_hash; - struct dentry *d_parent; - struct qstr d_name; - struct inode *d_inode; - unsigned char d_iname[40]; - const struct dentry_operations *d_op; - struct super_block *d_sb; - long unsigned int d_time; - void *d_fsdata; - struct lockref d_lockref; - union { - struct list_head d_lru; - wait_queue_head_t *d_wait; - }; - struct hlist_node d_sib; - struct hlist_head d_children; - union { - struct hlist_node d_alias; - struct hlist_bl_node d_in_lookup_hash; - struct callback_head d_rcu; - } d_u; -}; - -typedef __s64 time64_t; - -enum rw_hint { - WRITE_LIFE_NOT_SET = 0, - WRITE_LIFE_NONE = 1, - WRITE_LIFE_SHORT = 2, - WRITE_LIFE_MEDIUM = 3, - WRITE_LIFE_LONG = 4, - WRITE_LIFE_EXTREME = 5, -} __attribute__((mode(byte))); - -struct rw_semaphore { - atomic_long_t count; - atomic_long_t owner; - struct optimistic_spin_queue osq; - raw_spinlock_t wait_lock; - struct list_head wait_list; -}; - -struct xarray { - spinlock_t xa_lock; - gfp_t xa_flags; - void *xa_head; -}; - -typedef u32 errseq_t; - -struct address_space_operations; - -struct address_space { - struct inode *host; - struct xarray i_pages; - struct rw_semaphore invalidate_lock; - gfp_t gfp_mask; - atomic_t i_mmap_writable; - struct rb_root_cached i_mmap; - long unsigned int nrpages; - long unsigned int writeback_index; - const struct address_space_operations *a_ops; - long unsigned int flags; - errseq_t wb_err; - spinlock_t i_private_lock; - struct list_head i_private_list; - struct rw_semaphore i_mmap_rwsem; - void *i_private_data; -}; - -struct posix_acl; - -struct inode_operations; - -struct bdi_writeback; - -struct file_lock_context; - -struct cdev; - -struct fsnotify_mark_connector; - -struct fscrypt_inode_info; - -struct inode { - umode_t i_mode; - short unsigned int i_opflags; - kuid_t i_uid; - kgid_t i_gid; - unsigned int i_flags; - struct posix_acl *i_acl; - struct posix_acl *i_default_acl; - const struct inode_operations *i_op; - struct super_block *i_sb; - struct address_space *i_mapping; - void *i_security; - long unsigned int i_ino; - union { - const unsigned int i_nlink; - unsigned int __i_nlink; - }; - dev_t i_rdev; - loff_t i_size; - time64_t i_atime_sec; - time64_t i_mtime_sec; - time64_t i_ctime_sec; - u32 i_atime_nsec; - u32 i_mtime_nsec; - u32 i_ctime_nsec; - u32 i_generation; - spinlock_t i_lock; - short unsigned int i_bytes; - u8 i_blkbits; - enum rw_hint i_write_hint; - blkcnt_t i_blocks; - u32 i_state; - struct rw_semaphore i_rwsem; - long unsigned int dirtied_when; - long unsigned int dirtied_time_when; - struct hlist_node i_hash; - struct list_head i_io_list; - struct bdi_writeback *i_wb; - int i_wb_frn_winner; - u16 i_wb_frn_avg_time; - u16 i_wb_frn_history; - struct list_head i_lru; - struct list_head i_sb_list; - struct list_head i_wb_list; - union { - struct hlist_head i_dentry; - struct callback_head i_rcu; - }; - atomic64_t i_version; - atomic64_t i_sequence; - atomic_t i_count; - atomic_t i_dio_count; - atomic_t i_writecount; - atomic_t i_readcount; - union { - const struct file_operations *i_fop; - void (*free_inode)(struct inode *); - }; - struct file_lock_context *i_flctx; - struct address_space i_data; - struct list_head i_devices; - union { - struct pipe_inode_info *i_pipe; - struct cdev *i_cdev; - char *i_link; - unsigned int i_dir_seq; - }; - __u32 i_fsnotify_mask; - struct fsnotify_mark_connector *i_fsnotify_marks; - struct fscrypt_inode_info *i_crypt_info; - void *i_private; -}; - -enum d_real_type { - D_REAL_DATA = 0, - D_REAL_METADATA = 1, -}; - -struct vfsmount; - -struct path; - -struct dentry_operations { - int (*d_revalidate)(struct dentry *, unsigned int); - int (*d_weak_revalidate)(struct dentry *, unsigned int); - int (*d_hash)(const struct dentry *, struct qstr *); - int (*d_compare)(const struct dentry *, unsigned int, const char *, const struct qstr *); - int (*d_delete)(const struct dentry *); - int (*d_init)(struct dentry *); - void (*d_release)(struct dentry *); - void (*d_prune)(struct dentry *); - void (*d_iput)(struct dentry *, struct inode *); - char * (*d_dname)(struct dentry *, char *, int); - struct vfsmount * (*d_automount)(struct path *); - int (*d_manage)(const struct path *, bool); - struct dentry * (*d_real)(struct dentry *, enum d_real_type); - long: 64; - long: 64; - long: 64; -}; - -struct mtd_info; - -typedef long long int qsize_t; - -struct quota_format_type; - -struct mem_dqinfo { - struct quota_format_type *dqi_format; - int dqi_fmt_id; - struct list_head dqi_dirty_list; - long unsigned int dqi_flags; - unsigned int dqi_bgrace; - unsigned int dqi_igrace; - qsize_t dqi_max_spc_limit; - qsize_t dqi_max_ino_limit; - void *dqi_priv; -}; - -struct quota_format_ops; - -struct quota_info { - unsigned int flags; - struct rw_semaphore dqio_sem; - struct inode *files[3]; - struct mem_dqinfo info[3]; - const struct quota_format_ops *ops[3]; -}; - -struct rcu_sync { - int gp_state; - int gp_count; - wait_queue_head_t gp_wait; - struct callback_head cb_head; -}; - -struct percpu_rw_semaphore { - struct rcu_sync rss; - unsigned int *read_count; - struct rcuwait writer; - wait_queue_head_t waiters; - atomic_t block; -}; - -struct sb_writers { - short unsigned int frozen; - int freeze_kcount; - int freeze_ucount; - struct percpu_rw_semaphore rw_sem[3]; -}; - -typedef struct { - __u8 b[16]; -} uuid_t; - -struct list_lru_node; - -struct list_lru { - struct list_lru_node *node; - struct list_head list; - int shrinker_id; - bool memcg_aware; - struct xarray xa; -}; - -struct work_struct; - -typedef void (*work_func_t)(struct work_struct *); - -struct work_struct { - atomic_long_t data; - struct list_head entry; - work_func_t func; -}; - -struct super_operations; - -struct dquot_operations; - -struct quotactl_ops; - -struct export_operations; - -struct xattr_handler; - -struct fscrypt_operations; - -struct fscrypt_keyring; - -struct block_device; - -struct backing_dev_info; - -struct fsnotify_sb_info; - -struct shrinker; - -struct workqueue_struct; - -struct super_block { - struct list_head s_list; - dev_t s_dev; - unsigned char s_blocksize_bits; - long unsigned int s_blocksize; - loff_t s_maxbytes; - struct file_system_type *s_type; - const struct super_operations *s_op; - const struct dquot_operations *dq_op; - const struct quotactl_ops *s_qcop; - const struct export_operations *s_export_op; - long unsigned int s_flags; - long unsigned int s_iflags; - long unsigned int s_magic; - struct dentry *s_root; - struct rw_semaphore s_umount; - int s_count; - atomic_t s_active; - void *s_security; - const struct xattr_handler * const *s_xattr; - const struct fscrypt_operations *s_cop; - struct fscrypt_keyring *s_master_keys; - struct hlist_bl_head s_roots; - struct list_head s_mounts; - struct block_device *s_bdev; - struct file *s_bdev_file; - struct backing_dev_info *s_bdi; - struct mtd_info *s_mtd; - struct hlist_node s_instances; - unsigned int s_quota_types; - struct quota_info s_dquot; - struct sb_writers s_writers; - void *s_fs_info; - u32 s_time_gran; - time64_t s_time_min; - time64_t s_time_max; - u32 s_fsnotify_mask; - struct fsnotify_sb_info *s_fsnotify_info; - char s_id[32]; - uuid_t s_uuid; - u8 s_uuid_len; - char s_sysfs_name[37]; - unsigned int s_max_links; - struct mutex s_vfs_rename_mutex; - const char *s_subtype; - const struct dentry_operations *s_d_op; - struct shrinker *s_shrink; - atomic_long_t s_remove_count; - int s_readonly_remount; - errseq_t s_wb_err; - struct workqueue_struct *s_dio_done_wq; - struct hlist_head s_pins; - struct user_namespace *s_user_ns; - struct list_lru s_dentry_lru; - struct list_lru s_inode_lru; - struct callback_head rcu; - struct work_struct destroy_work; - struct mutex s_sync_lock; - int s_stack_depth; - long: 64; - long: 64; - long: 64; - long: 64; - spinlock_t s_inode_list_lock; - struct list_head s_inodes; - spinlock_t s_inode_wblist_lock; - struct list_head s_inodes_wb; - long: 64; - long: 64; -}; - -struct mnt_idmap; - -struct vfsmount { - struct dentry *mnt_root; - struct super_block *mnt_sb; - int mnt_flags; - struct mnt_idmap *mnt_idmap; -}; - -struct path { - struct vfsmount *mnt; - struct dentry *dentry; -}; - -struct timespec64 { - time64_t tv_sec; - long int tv_nsec; -}; - -enum pid_type { - PIDTYPE_PID = 0, - PIDTYPE_TGID = 1, - PIDTYPE_PGID = 2, - PIDTYPE_SID = 3, - PIDTYPE_MAX = 4, -}; - -struct idr { - struct xarray idr_rt; - unsigned int idr_base; - unsigned int idr_next; -}; - -struct proc_ns_operations; - -struct ns_common { - struct dentry *stashed; - const struct proc_ns_operations *ops; - unsigned int inum; - refcount_t count; -}; - -struct kmem_cache; - -struct fs_pin; - -struct pid_namespace { - struct idr idr; - struct callback_head rcu; - unsigned int pid_allocated; - struct task_struct *child_reaper; - struct kmem_cache *pid_cachep; - unsigned int level; - struct pid_namespace *parent; - struct fs_pin *bacct; - struct user_namespace *user_ns; - struct ucounts *ucounts; - int reboot; - struct ns_common ns; - int memfd_noexec_scope; -}; - -enum { - PER_LINUX = 0, - PER_LINUX_32BIT = 8388608, - PER_LINUX_FDPIC = 524288, - PER_SVR4 = 68157441, - PER_SVR3 = 83886082, - PER_SCOSVR3 = 117440515, - PER_OSR5 = 100663299, - PER_WYSEV386 = 83886084, - PER_ISCR4 = 67108869, - PER_BSD = 6, - PER_SUNOS = 67108870, - PER_XENIX = 83886087, - PER_LINUX32 = 8, - PER_LINUX32_3GB = 134217736, - PER_IRIX32 = 67108873, - PER_IRIXN32 = 67108874, - PER_IRIX64 = 67108875, - PER_RISCOS = 12, - PER_SOLARIS = 67108877, - PER_UW7 = 68157454, - PER_OSF4 = 15, - PER_HPUX = 16, - PER_MASK = 255, -}; - -typedef struct page *pgtable_t; - -struct page_pool; - -struct dev_pagemap; - -struct page { - long unsigned int flags; - union { - struct { - union { - struct list_head lru; - struct { - void *__filler; - unsigned int mlock_count; - }; - struct list_head buddy_list; - struct list_head pcp_list; - }; - struct address_space *mapping; - union { - long unsigned int index; - long unsigned int share; - }; - long unsigned int private; - }; - struct { - long unsigned int pp_magic; - struct page_pool *pp; - long unsigned int _pp_mapping_pad; - long unsigned int dma_addr; - atomic_long_t pp_ref_count; - }; - struct { - long unsigned int compound_head; - }; - struct { - struct dev_pagemap *pgmap; - void *zone_device_data; - }; - struct callback_head callback_head; - }; - union { - unsigned int page_type; - atomic_t _mapcount; - }; - atomic_t _refcount; - long unsigned int memcg_data; -}; - -struct hrtimer_cpu_base; - -struct hrtimer_clock_base { - struct hrtimer_cpu_base *cpu_base; - unsigned int index; - clockid_t clockid; - seqcount_raw_spinlock_t seq; - struct hrtimer *running; - struct timerqueue_head active; - ktime_t (*get_time)(void); - ktime_t offset; -}; - -struct rlimit { - __kernel_ulong_t rlim_cur; - __kernel_ulong_t rlim_max; -}; - -struct task_cputime { - u64 stime; - u64 utime; - long long unsigned int sum_exec_runtime; -}; - -typedef void __signalfn_t(int); - -typedef __signalfn_t *__sighandler_t; - -typedef void __restorefn_t(void); - -typedef __restorefn_t *__sigrestore_t; - -struct ucounts { - struct hlist_node node; - struct user_namespace *ns; - kuid_t uid; - atomic_t count; - atomic_long_t ucount[12]; - atomic_long_t rlimit[4]; -}; - -struct sigaction { - __sighandler_t sa_handler; - long unsigned int sa_flags; - __sigrestore_t sa_restorer; - sigset_t sa_mask; -}; - -struct k_sigaction { - struct sigaction sa; -}; - -typedef struct {} lockdep_map_p; - -struct maple_tree { - union { - spinlock_t ma_lock; - lockdep_map_p ma_external_lock; - }; - unsigned int ma_flags; - void *ma_root; -}; - -struct percpu_counter { - raw_spinlock_t lock; - s64 count; - s32 *counters; -}; - -typedef struct { - atomic64_t id; - refcount_t pinned; - void *vdso; - long unsigned int flags; - u8 pkey_allocation_map; -} mm_context_t; - -struct xol_area; - -struct uprobes_state { - struct xol_area *xol_area; -}; - -struct mm_cid; - -struct linux_binfmt; - -struct kioctx_table; - -struct mm_struct { - struct { - struct { - atomic_t mm_count; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - }; - struct maple_tree mm_mt; - long unsigned int mmap_base; - long unsigned int mmap_legacy_base; - long unsigned int task_size; - pgd_t *pgd; - atomic_t membarrier_state; - atomic_t mm_users; - struct mm_cid *pcpu_cid; - long unsigned int mm_cid_next_scan; - atomic_long_t pgtables_bytes; - int map_count; - spinlock_t page_table_lock; - struct rw_semaphore mmap_lock; - struct list_head mmlist; - int mm_lock_seq; - long unsigned int hiwater_rss; - long unsigned int hiwater_vm; - long unsigned int total_vm; - long unsigned int locked_vm; - atomic64_t pinned_vm; - long unsigned int data_vm; - long unsigned int exec_vm; - long unsigned int stack_vm; - long unsigned int def_flags; - seqcount_t write_protect_seq; - spinlock_t arg_lock; - long unsigned int start_code; - long unsigned int end_code; - long unsigned int start_data; - long unsigned int end_data; - long unsigned int start_brk; - long unsigned int brk; - long unsigned int start_stack; - long unsigned int arg_start; - long unsigned int arg_end; - long unsigned int env_start; - long unsigned int env_end; - long unsigned int saved_auxv[50]; - struct percpu_counter rss_stat[4]; - struct linux_binfmt *binfmt; - mm_context_t context; - long unsigned int flags; - spinlock_t ioctx_lock; - struct kioctx_table *ioctx_table; - struct task_struct *owner; - struct user_namespace *user_ns; - struct file *exe_file; - atomic_t tlb_flush_pending; - atomic_t tlb_flush_batched; - struct uprobes_state uprobes_state; - atomic_long_t hugetlb_usage; - struct work_struct async_put_work; - long unsigned int ksm_merging_pages; - long unsigned int ksm_rmap_items; - atomic_long_t ksm_zero_pages; - struct { - struct list_head list; - long unsigned int bitmap; - struct mem_cgroup *memcg; - } lru_gen; - }; - long unsigned int cpu_bitmap[0]; -}; - -struct upid { - int nr; - struct pid_namespace *ns; -}; - -struct pid { - refcount_t count; - unsigned int level; - spinlock_t lock; - struct dentry *stashed; - u64 ino; - struct hlist_head tasks[4]; - struct hlist_head inodes; - wait_queue_head_t wait_pidfd; - struct callback_head rcu; - struct upid numbers[0]; -}; - -struct swait_queue_head { - raw_spinlock_t lock; - struct list_head task_list; -}; - -struct completion { - unsigned int done; - struct swait_queue_head wait; -}; - -typedef int32_t key_serial_t; - -typedef uint32_t key_perm_t; - -struct key_type; - -struct key_tag; - -struct keyring_index_key { - long unsigned int hash; - union { - struct { - u16 desc_len; - char desc[6]; - }; - long unsigned int x; - }; - struct key_type *type; - struct key_tag *domain_tag; - const char *description; -}; - -union key_payload { - void *rcu_data0; - void *data[4]; -}; - -struct assoc_array_ptr; - -struct assoc_array { - struct assoc_array_ptr *root; - long unsigned int nr_leaves_on_tree; -}; - -struct key_user; - -struct key_restriction; - -struct key { - refcount_t usage; - key_serial_t serial; - union { - struct list_head graveyard_link; - struct rb_node serial_node; - }; - struct rw_semaphore sem; - struct key_user *user; - void *security; - union { - time64_t expiry; - time64_t revoked_at; - }; - time64_t last_used_at; - kuid_t uid; - kgid_t gid; - key_perm_t perm; - short unsigned int quotalen; - short unsigned int datalen; - short int state; - long unsigned int flags; - union { - struct keyring_index_key index_key; - struct { - long unsigned int hash; - long unsigned int len_desc; - struct key_type *type; - struct key_tag *domain_tag; - char *description; - }; - }; - union { - union key_payload payload; - struct { - struct list_head name_link; - struct assoc_array keys; - }; - }; - struct key_restriction *restrict_link; -}; - -struct uts_namespace; - -struct ipc_namespace; - -struct mnt_namespace; - -struct net; - -struct time_namespace; - -struct cgroup_namespace; - -struct nsproxy { - refcount_t count; - struct uts_namespace *uts_ns; - struct ipc_namespace *ipc_ns; - struct mnt_namespace *mnt_ns; - struct pid_namespace *pid_ns_for_children; - struct net *net_ns; - struct time_namespace *time_ns; - struct time_namespace *time_ns_for_children; - struct cgroup_namespace *cgroup_ns; -}; - -struct cpu_itimer { - u64 expires; - u64 incr; -}; - -struct task_cputime_atomic { - atomic64_t utime; - atomic64_t stime; - atomic64_t sum_exec_runtime; -}; - -struct thread_group_cputimer { - struct task_cputime_atomic cputime_atomic; -}; - -struct pacct_struct { - int ac_flag; - long int ac_exitcode; - long unsigned int ac_mem; - u64 ac_utime; - u64 ac_stime; - long unsigned int ac_minflt; - long unsigned int ac_majflt; -}; - -struct core_state; - -struct tty_struct; - -struct autogroup; - -struct taskstats; - -struct tty_audit_buf; - -struct signal_struct { - refcount_t sigcnt; - atomic_t live; - int nr_threads; - int quick_threads; - struct list_head thread_head; - wait_queue_head_t wait_chldexit; - struct task_struct *curr_target; - struct sigpending shared_pending; - struct hlist_head multiprocess; - int group_exit_code; - int notify_count; - struct task_struct *group_exec_task; - int group_stop_count; - unsigned int flags; - struct core_state *core_state; - unsigned int is_child_subreaper: 1; - unsigned int has_child_subreaper: 1; - unsigned int next_posix_timer_id; - struct hlist_head posix_timers; - struct hrtimer real_timer; - ktime_t it_real_incr; - struct cpu_itimer it[2]; - struct thread_group_cputimer cputimer; - struct posix_cputimers posix_cputimers; - struct pid *pids[4]; - struct pid *tty_old_pgrp; - int leader; - struct tty_struct *tty; - struct autogroup *autogroup; - seqlock_t stats_lock; - u64 utime; - u64 stime; - u64 cutime; - u64 cstime; - u64 gtime; - u64 cgtime; - struct prev_cputime prev_cputime; - long unsigned int nvcsw; - long unsigned int nivcsw; - long unsigned int cnvcsw; - long unsigned int cnivcsw; - long unsigned int min_flt; - long unsigned int maj_flt; - long unsigned int cmin_flt; - long unsigned int cmaj_flt; - long unsigned int inblock; - long unsigned int oublock; - long unsigned int cinblock; - long unsigned int coublock; - long unsigned int maxrss; - long unsigned int cmaxrss; - struct task_io_accounting ioac; - long long unsigned int sum_sched_runtime; - struct rlimit rlim[16]; - struct pacct_struct pacct; - struct taskstats *stats; - unsigned int audit_tty; - struct tty_audit_buf *tty_audit_buf; - bool oom_flag_origin; - short int oom_score_adj; - short int oom_score_adj_min; - struct mm_struct *oom_mm; - struct mutex cred_guard_mutex; - struct rw_semaphore exec_update_lock; -}; - -struct sighand_struct { - spinlock_t siglock; - refcount_t count; - wait_queue_head_t signalfd_wqh; - struct k_sigaction action[64]; -}; - -struct bio; - -struct bio_list { - struct bio *head; - struct bio *tail; -}; - -struct io_context { - atomic_long_t refcount; - atomic_t active_ref; - short unsigned int ioprio; -}; - -struct cgroup_subsys_state; - -struct cgroup; - -struct css_set { - struct cgroup_subsys_state *subsys[13]; - refcount_t refcount; - struct css_set *dom_cset; - struct cgroup *dfl_cgrp; - int nr_tasks; - struct list_head tasks; - struct list_head mg_tasks; - struct list_head dying_tasks; - struct list_head task_iters; - struct list_head e_cset_node[13]; - struct list_head threaded_csets; - struct list_head threaded_csets_node; - struct hlist_node hlist; - struct list_head cgrp_links; - struct list_head mg_src_preload_node; - struct list_head mg_dst_preload_node; - struct list_head mg_node; - struct cgroup *mg_src_cgrp; - struct cgroup *mg_dst_cgrp; - struct css_set *mg_dst_cset; - bool dead; - struct callback_head callback_head; -}; - -struct perf_event_groups { - struct rb_root tree; - u64 index; -}; - -struct perf_event_context { - raw_spinlock_t lock; - struct mutex mutex; - struct list_head pmu_ctx_list; - struct perf_event_groups pinned_groups; - struct perf_event_groups flexible_groups; - struct list_head event_list; - int nr_events; - int nr_user; - int is_active; - int nr_task_data; - int nr_stat; - int nr_freq; - int rotate_disable; - refcount_t refcount; - struct task_struct *task; - u64 time; - u64 timestamp; - u64 timeoffset; - struct perf_event_context *parent_ctx; - u64 parent_gen; - u64 generation; - int pin_count; - int nr_cgroups; - struct callback_head callback_head; - local_t nr_no_switch_fast; -}; - -struct percpu_ref_data; - -struct percpu_ref { - long unsigned int percpu_count_ptr; - struct percpu_ref_data *data; -}; - -struct rcu_work { - struct work_struct work; - struct callback_head rcu; - struct workqueue_struct *wq; -}; - -struct cgroup_subsys; - -struct cgroup_subsys_state { - struct cgroup *cgroup; - struct cgroup_subsys *ss; - struct percpu_ref refcnt; - struct list_head sibling; - struct list_head children; - struct list_head rstat_css_node; - int id; - unsigned int flags; - u64 serial_nr; - atomic_t online_cnt; - struct work_struct destroy_work; - struct rcu_work destroy_rwork; - struct cgroup_subsys_state *parent; - int nr_descendants; -}; - -struct mem_cgroup_id { - int id; - refcount_t ref; -}; - -struct page_counter { - atomic_long_t usage; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct cacheline_padding _pad1_; - long unsigned int emin; - atomic_long_t min_usage; - atomic_long_t children_min_usage; - long unsigned int elow; - atomic_long_t low_usage; - atomic_long_t children_low_usage; - long unsigned int watermark; - long unsigned int local_watermark; - long unsigned int failcnt; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct cacheline_padding _pad2_; - bool protection_support; - long unsigned int min; - long unsigned int low; - long unsigned int high; - long unsigned int max; - struct page_counter *parent; - long: 64; - long: 64; -}; - -struct vmpressure { - long unsigned int scanned; - long unsigned int reclaimed; - long unsigned int tree_scanned; - long unsigned int tree_reclaimed; - spinlock_t sr_lock; - struct list_head events; - struct mutex events_lock; - struct work_struct work; -}; - -struct kernfs_node; - -struct cgroup_file { - struct kernfs_node *kn; - long unsigned int notified_at; - struct timer_list notify_timer; -}; - -struct fprop_global { - struct percpu_counter events; - unsigned int period; - seqcount_t sequence; -}; - -struct wb_domain { - spinlock_t lock; - struct fprop_global completions; - struct timer_list period_timer; - long unsigned int period_time; - long unsigned int dirty_limit_tstamp; - long unsigned int dirty_limit; -}; - -struct wb_completion { - atomic_t cnt; - wait_queue_head_t *waitq; -}; - -struct memcg_cgwb_frn { - u64 bdi_id; - int memcg_id; - u64 at; - struct wb_completion done; -}; - -struct deferred_split { - spinlock_t split_queue_lock; - struct list_head split_queue; - long unsigned int split_queue_len; -}; - -struct lru_gen_mm_list { - struct list_head fifo; - spinlock_t lock; -}; - -struct mem_cgroup_threshold_ary; - -struct mem_cgroup_thresholds { - struct mem_cgroup_threshold_ary *primary; - struct mem_cgroup_threshold_ary *spare; -}; - -struct memcg_vmstats; - -struct memcg_vmstats_percpu; - -struct memcg1_events_percpu; - -struct mem_cgroup_per_node; - -struct mem_cgroup { - struct cgroup_subsys_state css; - struct mem_cgroup_id id; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct page_counter memory; - union { - struct page_counter swap; - struct page_counter memsw; - }; - struct list_head memory_peaks; - struct list_head swap_peaks; - spinlock_t peaks_lock; - struct work_struct high_work; - long unsigned int zswap_max; - bool zswap_writeback; - struct vmpressure vmpressure; - bool oom_group; - int swappiness; - struct cgroup_file events_file; - struct cgroup_file events_local_file; - struct cgroup_file swap_events_file; - struct memcg_vmstats *vmstats; - atomic_long_t memory_events[9]; - atomic_long_t memory_events_local[9]; - long unsigned int socket_pressure; - int kmemcg_id; - struct obj_cgroup *objcg; - struct obj_cgroup *orig_objcg; - struct list_head objcg_list; - struct memcg_vmstats_percpu *vmstats_percpu; - struct list_head cgwb_list; - struct wb_domain cgwb_domain; - struct memcg_cgwb_frn cgwb_frn[4]; - struct deferred_split deferred_split_queue; - struct lru_gen_mm_list mm_list; - long: 64; - long: 64; - long: 64; - long: 64; - struct page_counter kmem; - struct page_counter tcpmem; - struct memcg1_events_percpu *events_percpu; - long unsigned int soft_limit; - bool oom_lock; - int under_oom; - int oom_kill_disable; - struct mutex thresholds_lock; - struct mem_cgroup_thresholds thresholds; - struct mem_cgroup_thresholds memsw_thresholds; - struct list_head oom_notify; - long unsigned int move_charge_at_immigrate; - spinlock_t move_lock; - long unsigned int move_lock_flags; - bool tcpmem_active; - int tcpmem_pressure; - atomic_t moving_account; - struct task_struct *move_lock_task; - struct list_head event_list; - spinlock_t event_list_lock; - struct mem_cgroup_per_node *nodeinfo[0]; - long: 64; -}; - -struct obj_cgroup { - struct percpu_ref refcnt; - struct mem_cgroup *memcg; - atomic_t nr_charged_bytes; - union { - struct list_head list; - struct callback_head rcu; - }; -}; - -enum uprobe_task_state { - UTASK_RUNNING = 0, - UTASK_SSTEP = 1, - UTASK_SSTEP_ACK = 2, - UTASK_SSTEP_TRAPPED = 3, -}; - -struct arch_uprobe_task {}; - -struct uprobe; - -struct arch_uprobe; - -struct return_instance; - -struct uprobe_task { - enum uprobe_task_state state; - union { - struct { - struct arch_uprobe_task autask; - long unsigned int vaddr; - }; - struct { - struct callback_head dup_xol_work; - long unsigned int dup_xol_addr; - }; - }; - struct uprobe *active_uprobe; - long unsigned int xol_vaddr; - struct arch_uprobe *auprobe; - struct return_instance *return_instances; - unsigned int depth; -}; - -struct bpf_run_ctx {}; - -struct uid_gid_extent { - u32 first; - u32 lower_first; - u32 count; -}; - -struct uid_gid_map { - union { - struct { - struct uid_gid_extent extent[5]; - u32 nr_extents; - }; - struct { - struct uid_gid_extent *forward; - struct uid_gid_extent *reverse; - }; - }; -}; - -struct ctl_table; - -struct ctl_table_root; - -struct ctl_table_set; - -struct ctl_dir; - -struct ctl_node; - -struct ctl_table_header { - union { - struct { - struct ctl_table *ctl_table; - int ctl_table_size; - int used; - int count; - int nreg; - }; - struct callback_head rcu; - }; - struct completion *unregistering; - const struct ctl_table *ctl_table_arg; - struct ctl_table_root *root; - struct ctl_table_set *set; - struct ctl_dir *parent; - struct ctl_node *node; - struct hlist_head inodes; - enum { - SYSCTL_TABLE_TYPE_DEFAULT = 0, - SYSCTL_TABLE_TYPE_PERMANENTLY_EMPTY = 1, - } type; -}; - -struct ctl_dir { - struct ctl_table_header header; - struct rb_root root; -}; - -struct ctl_table_set { - int (*is_seen)(struct ctl_table_set *); - struct ctl_dir dir; -}; - -struct binfmt_misc; - -struct user_namespace { - struct uid_gid_map uid_map; - struct uid_gid_map gid_map; - struct uid_gid_map projid_map; - struct user_namespace *parent; - int level; - kuid_t owner; - kgid_t group; - struct ns_common ns; - long unsigned int flags; - bool parent_could_setfcap; - struct list_head keyring_name_list; - struct key *user_keyring_register; - struct rw_semaphore keyring_sem; - struct key *persistent_keyring_register; - struct work_struct work; - struct ctl_table_set set; - struct ctl_table_header *sysctls; - struct ucounts *ucounts; - long int ucount_max[12]; - long int rlimit_max[4]; - struct binfmt_misc *binfmt_misc; -}; - -struct kstat { - u32 result_mask; - umode_t mode; - unsigned int nlink; - uint32_t blksize; - u64 attributes; - u64 attributes_mask; - u64 ino; - dev_t dev; - dev_t rdev; - kuid_t uid; - kgid_t gid; - loff_t size; - struct timespec64 atime; - struct timespec64 mtime; - struct timespec64 ctime; - struct timespec64 btime; - u64 blocks; - u64 mnt_id; - u32 dio_mem_align; - u32 dio_offset_align; - u64 change_cookie; - u64 subvol; - u32 atomic_write_unit_min; - u32 atomic_write_unit_max; - u32 atomic_write_segments_max; -}; - -struct shrinker_info_unit { - atomic_long_t nr_deferred[64]; - long unsigned int map[1]; -}; - -struct shrinker_info { - struct callback_head rcu; - int map_nr_max; - struct shrinker_info_unit *unit[0]; -}; - -struct shrink_control { - gfp_t gfp_mask; - int nid; - long unsigned int nr_to_scan; - long unsigned int nr_scanned; - struct mem_cgroup *memcg; -}; - -struct shrinker { - long unsigned int (*count_objects)(struct shrinker *, struct shrink_control *); - long unsigned int (*scan_objects)(struct shrinker *, struct shrink_control *); - long int batch; - int seeks; - unsigned int flags; - refcount_t refcount; - struct completion done; - struct callback_head rcu; - void *private_data; - struct list_head list; - int id; - atomic_long_t *nr_deferred; -}; - -struct hlist_nulls_node; - -struct hlist_nulls_head { - struct hlist_nulls_node *first; -}; - -struct hlist_nulls_node { - struct hlist_nulls_node *next; - struct hlist_nulls_node **pprev; -}; - -struct kref { - refcount_t refcount; -}; - -typedef u32 probe_opcode_t; - -typedef void probes_handler_t(u32, long int, struct pt_regs *); - -struct arch_probe_insn { - probe_opcode_t *insn; - pstate_check_t *pstate_cc; - probes_handler_t *handler; - long unsigned int restore; -}; - -struct arch_uprobe { - union { - __le32 insn; - __le32 ixol; - }; - struct arch_probe_insn api; - bool simulate; -}; - -struct return_instance { - struct uprobe *uprobe; - long unsigned int func; - long unsigned int stack; - long unsigned int orig_ret_vaddr; - bool chained; - struct return_instance *next; -}; - -struct delayed_work { - struct work_struct work; - struct timer_list timer; - struct workqueue_struct *wq; - int cpu; -}; - -struct vmem_altmap { - long unsigned int base_pfn; - const long unsigned int end_pfn; - const long unsigned int reserve; - long unsigned int free; - long unsigned int align; - long unsigned int alloc; - bool inaccessible; -}; - -enum memory_type { - MEMORY_DEVICE_PRIVATE = 1, - MEMORY_DEVICE_COHERENT = 2, - MEMORY_DEVICE_FS_DAX = 3, - MEMORY_DEVICE_GENERIC = 4, - MEMORY_DEVICE_PCI_P2PDMA = 5, -}; - -struct range { - u64 start; - u64 end; -}; - -struct dev_pagemap_ops; - -struct dev_pagemap { - struct vmem_altmap altmap; - struct percpu_ref ref; - struct completion done; - enum memory_type type; - unsigned int flags; - long unsigned int vmemmap_shift; - const struct dev_pagemap_ops *ops; - void *owner; - int nr_range; - union { - struct range range; - struct { - struct {} __empty_ranges; - struct range ranges[0]; - }; - }; -}; - -typedef struct { - long unsigned int val; -} swp_entry_t; - -struct folio { - union { - struct { - long unsigned int flags; - union { - struct list_head lru; - struct { - void *__filler; - unsigned int mlock_count; - }; - }; - struct address_space *mapping; - long unsigned int index; - union { - void *private; - swp_entry_t swap; - }; - atomic_t _mapcount; - atomic_t _refcount; - long unsigned int memcg_data; - }; - struct page page; - }; - union { - struct { - long unsigned int _flags_1; - long unsigned int _head_1; - atomic_t _large_mapcount; - atomic_t _entire_mapcount; - atomic_t _nr_pages_mapped; - atomic_t _pincount; - unsigned int _folio_nr_pages; - }; - struct page __page_1; - }; - union { - struct { - long unsigned int _flags_2; - long unsigned int _head_2; - void *_hugetlb_subpool; - void *_hugetlb_cgroup; - void *_hugetlb_cgroup_rsvd; - void *_hugetlb_hwpoison; - }; - struct { - long unsigned int _flags_2a; - long unsigned int _head_2a; - struct list_head _deferred_list; - }; - struct page __page_2; - }; -}; - -typedef long unsigned int vm_flags_t; - -struct file_ra_state { - long unsigned int start; - unsigned int size; - unsigned int async_size; - unsigned int ra_pages; - unsigned int mmap_miss; - loff_t prev_pos; -}; - -typedef struct { - long unsigned int v; -} freeptr_t; - -struct fown_struct; - -struct file { - atomic_long_t f_count; - spinlock_t f_lock; - fmode_t f_mode; - const struct file_operations *f_op; - struct address_space *f_mapping; - void *private_data; - struct inode *f_inode; - unsigned int f_flags; - unsigned int f_iocb_flags; - const struct cred *f_cred; - struct path f_path; - union { - struct mutex f_pos_lock; - u64 f_pipe; - }; - loff_t f_pos; - void *f_security; - struct fown_struct *f_owner; - errseq_t f_wb_err; - errseq_t f_sb_err; - struct hlist_head *f_ep; - union { - struct callback_head f_task_work; - struct llist_node f_llist; - struct file_ra_state f_ra; - freeptr_t f_freeptr; - }; -}; - -struct vm_userfaultfd_ctx {}; - -struct vma_lock { - struct rw_semaphore lock; -}; - -struct anon_vma; - -struct vm_operations_struct; - -struct vm_area_struct { - union { - struct { - long unsigned int vm_start; - long unsigned int vm_end; - }; - struct callback_head vm_rcu; - }; - struct mm_struct *vm_mm; - pgprot_t vm_page_prot; - union { - const vm_flags_t vm_flags; - vm_flags_t __vm_flags; - }; - bool detached; - int vm_lock_seq; - struct vma_lock *vm_lock; - struct { - struct rb_node rb; - long unsigned int rb_subtree_last; - } shared; - struct list_head anon_vma_chain; - struct anon_vma *anon_vma; - const struct vm_operations_struct *vm_ops; - long unsigned int vm_pgoff; - struct file *vm_file; - void *vm_private_data; - atomic_long_t swap_readahead_info; - struct vm_userfaultfd_ctx vm_userfaultfd_ctx; -}; - -typedef unsigned int vm_fault_t; - -struct vm_fault; - -struct vm_operations_struct { - void (*open)(struct vm_area_struct *); - void (*close)(struct vm_area_struct *); - int (*may_split)(struct vm_area_struct *, long unsigned int); - int (*mremap)(struct vm_area_struct *); - int (*mprotect)(struct vm_area_struct *, long unsigned int, long unsigned int, long unsigned int); - vm_fault_t (*fault)(struct vm_fault *); - vm_fault_t (*huge_fault)(struct vm_fault *, unsigned int); - vm_fault_t (*map_pages)(struct vm_fault *, long unsigned int, long unsigned int); - long unsigned int (*pagesize)(struct vm_area_struct *); - vm_fault_t (*page_mkwrite)(struct vm_fault *); - vm_fault_t (*pfn_mkwrite)(struct vm_fault *); - int (*access)(struct vm_area_struct *, long unsigned int, void *, int, int); - const char * (*name)(struct vm_area_struct *); - struct page * (*find_special_page)(struct vm_area_struct *, long unsigned int); -}; - -struct mm_cid { - u64 time; - int cid; -}; - -enum fault_flag { - FAULT_FLAG_WRITE = 1, - FAULT_FLAG_MKWRITE = 2, - FAULT_FLAG_ALLOW_RETRY = 4, - FAULT_FLAG_RETRY_NOWAIT = 8, - FAULT_FLAG_KILLABLE = 16, - FAULT_FLAG_TRIED = 32, - FAULT_FLAG_USER = 64, - FAULT_FLAG_REMOTE = 128, - FAULT_FLAG_INSTRUCTION = 256, - FAULT_FLAG_INTERRUPTIBLE = 512, - FAULT_FLAG_UNSHARE = 1024, - FAULT_FLAG_ORIG_PTE_VALID = 2048, - FAULT_FLAG_VMA_LOCK = 4096, -}; - -struct vm_fault { - const struct { - struct vm_area_struct *vma; - gfp_t gfp_mask; - long unsigned int pgoff; - long unsigned int address; - long unsigned int real_address; - }; - enum fault_flag flags; - pmd_t *pmd; - pud_t *pud; - union { - pte_t orig_pte; - pmd_t orig_pmd; - }; - struct page *cow_page; - struct page *page; - pte_t *pte; - spinlock_t *ptl; - pgtable_t prealloc_pte; -}; - -struct zswap_lruvec_state { - atomic_long_t nr_disk_swapins; -}; - -struct free_area { - struct list_head free_list[4]; - long unsigned int nr_free; -}; - -struct lru_gen_folio { - long unsigned int max_seq; - long unsigned int min_seq[2]; - long unsigned int timestamps[4]; - struct list_head folios[32]; - long int nr_pages[32]; - long unsigned int avg_refaulted[8]; - long unsigned int avg_total[8]; - long unsigned int protected[6]; - atomic_long_t evicted[8]; - atomic_long_t refaulted[8]; - bool enabled; - u8 gen; - u8 seg; - struct hlist_nulls_node list; -}; - -struct lru_gen_mm_state { - long unsigned int seq; - struct list_head *head; - struct list_head *tail; - long unsigned int *filters[2]; - long unsigned int stats[4]; -}; - -struct lruvec; - -struct lru_gen_mm_walk { - struct lruvec *lruvec; - long unsigned int seq; - long unsigned int next_addr; - int nr_pages[32]; - int mm_stats[4]; - int batched; - bool can_swap; - bool force_scan; -}; - -struct pglist_data; - -struct lruvec { - struct list_head lists[5]; - spinlock_t lru_lock; - long unsigned int anon_cost; - long unsigned int file_cost; - atomic_long_t nonresident_age; - long unsigned int refaults[2]; - long unsigned int flags; - struct lru_gen_folio lrugen; - struct lru_gen_mm_state mm_state; - struct pglist_data *pgdat; - struct zswap_lruvec_state zswap_lruvec_state; -}; - -struct lru_gen_memcg { - long unsigned int seq; - long unsigned int nr_memcgs[3]; - struct hlist_nulls_head fifo[24]; - spinlock_t lock; -}; - -struct per_cpu_pages; - -struct per_cpu_zonestat; - -struct zone { - long unsigned int _watermark[4]; - long unsigned int watermark_boost; - long unsigned int nr_reserved_highatomic; - long unsigned int nr_free_highatomic; - long int lowmem_reserve[4]; - struct pglist_data *zone_pgdat; - struct per_cpu_pages *per_cpu_pageset; - struct per_cpu_zonestat *per_cpu_zonestats; - int pageset_high_min; - int pageset_high_max; - int pageset_batch; - long unsigned int zone_start_pfn; - atomic_long_t managed_pages; - long unsigned int spanned_pages; - long unsigned int present_pages; - const char *name; - int initialized; - long: 64; - long: 64; - struct cacheline_padding _pad1_; - struct free_area free_area[11]; - long unsigned int flags; - spinlock_t lock; - long: 64; - long: 64; - long: 64; - struct cacheline_padding _pad2_; - long unsigned int percpu_drift_mark; - long unsigned int compact_cached_free_pfn; - long unsigned int compact_cached_migrate_pfn[2]; - long unsigned int compact_init_migrate_pfn; - long unsigned int compact_init_free_pfn; - unsigned int compact_considered; - unsigned int compact_defer_shift; - int compact_order_failed; - bool compact_blockskip_flush; - bool contiguous; - long: 0; - struct cacheline_padding _pad3_; - atomic_long_t vm_stat[11]; - atomic_long_t vm_numa_event[0]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct zoneref { - struct zone *zone; - int zone_idx; -}; - -struct zonelist { - struct zoneref _zonerefs[5]; -}; - -enum zone_type { - ZONE_DMA = 0, - ZONE_DMA32 = 1, - ZONE_NORMAL = 2, - ZONE_MOVABLE = 3, - __MAX_NR_ZONES = 4, -}; - -struct per_cpu_nodestat; - -struct pglist_data { - struct zone node_zones[4]; - struct zonelist node_zonelists[1]; - int nr_zones; - long unsigned int node_start_pfn; - long unsigned int node_present_pages; - long unsigned int node_spanned_pages; - int node_id; - wait_queue_head_t kswapd_wait; - wait_queue_head_t pfmemalloc_wait; - wait_queue_head_t reclaim_wait[4]; - atomic_t nr_writeback_throttled; - long unsigned int nr_reclaim_start; - struct task_struct *kswapd; - int kswapd_order; - enum zone_type kswapd_highest_zoneidx; - int kswapd_failures; - int kcompactd_max_order; - enum zone_type kcompactd_highest_zoneidx; - wait_queue_head_t kcompactd_wait; - struct task_struct *kcompactd; - bool proactive_compact_trigger; - long unsigned int totalreserve_pages; - long: 64; - long: 64; - long: 64; - struct cacheline_padding _pad1_; - struct deferred_split deferred_split_queue; - struct lruvec __lruvec; - long unsigned int flags; - struct lru_gen_mm_walk mm_walk; - struct lru_gen_memcg memcg_lru; - long: 64; - long: 64; - long: 64; - long: 64; - struct cacheline_padding _pad2_; - struct per_cpu_nodestat *per_cpu_nodestats; - atomic_long_t vm_stat[44]; - long: 64; - long: 64; - long: 64; -}; - -struct per_cpu_pages { - spinlock_t lock; - int count; - int high; - int high_min; - int high_max; - int batch; - u8 flags; - u8 alloc_factor; - short int free_count; - struct list_head lists[14]; -}; - -struct per_cpu_zonestat { - s8 vm_stat_diff[11]; - s8 stat_threshold; -}; - -struct per_cpu_nodestat { - s8 stat_threshold; - s8 vm_node_stat_diff[44]; -}; - -struct rcu_segcblist { - struct callback_head *head; - struct callback_head **tails[4]; - long unsigned int gp_seq[4]; - atomic_long_t len; - long int seglen[4]; - u8 flags; -}; - -struct srcu_node; - -struct srcu_struct; - -struct srcu_data { - atomic_long_t srcu_lock_count[2]; - atomic_long_t srcu_unlock_count[2]; - int srcu_nmi_safety; - long: 64; - long: 64; - long: 64; - spinlock_t lock; - struct rcu_segcblist srcu_cblist; - long unsigned int srcu_gp_seq_needed; - long unsigned int srcu_gp_seq_needed_exp; - bool srcu_cblist_invoking; - struct timer_list delay_work; - struct work_struct work; - struct callback_head srcu_barrier_head; - struct srcu_node *mynode; - long unsigned int grpmask; - int cpu; - struct srcu_struct *ssp; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct srcu_node { - spinlock_t lock; - long unsigned int srcu_have_cbs[4]; - long unsigned int srcu_data_have_cbs[4]; - long unsigned int srcu_gp_seq_needed_exp; - struct srcu_node *srcu_parent; - int grplo; - int grphi; -}; - -struct srcu_usage; - -struct srcu_struct { - unsigned int srcu_idx; - struct srcu_data *sda; - struct lockdep_map dep_map; - struct srcu_usage *srcu_sup; -}; - -struct srcu_usage { - struct srcu_node *node; - struct srcu_node *level[3]; - int srcu_size_state; - struct mutex srcu_cb_mutex; - spinlock_t lock; - struct mutex srcu_gp_mutex; - long unsigned int srcu_gp_seq; - long unsigned int srcu_gp_seq_needed; - long unsigned int srcu_gp_seq_needed_exp; - long unsigned int srcu_gp_start; - long unsigned int srcu_last_gp_end; - long unsigned int srcu_size_jiffies; - long unsigned int srcu_n_lock_retries; - long unsigned int srcu_n_exp_nodelay; - bool sda_is_static; - long unsigned int srcu_barrier_seq; - struct mutex srcu_barrier_mutex; - struct completion srcu_barrier_completion; - atomic_t srcu_barrier_cpu_cnt; - long unsigned int reschedule_jiffies; - long unsigned int reschedule_count; - struct delayed_work work; - struct srcu_struct *srcu_ssp; -}; - -struct list_lru_one { - struct list_head list; - long int nr_items; -}; - -struct list_lru_node { - spinlock_t lock; - struct list_lru_one lru; - long int nr_items; - long: 64; - long: 64; - long: 64; -}; - -enum migrate_mode { - MIGRATE_ASYNC = 0, - MIGRATE_SYNC_LIGHT = 1, - MIGRATE_SYNC = 2, -}; - -struct exception_table_entry { - int insn; - int fixup; - short int type; - short int data; -}; - -struct cgroup_base_stat { - struct task_cputime cputime; - u64 ntime; -}; - -struct bpf_prog_array; - -struct cgroup_bpf { - struct bpf_prog_array *effective[38]; - struct hlist_head progs[38]; - u8 flags[38]; - struct list_head storages; - struct bpf_prog_array *inactive; - struct percpu_ref refcnt; - struct work_struct release_work; -}; - -struct cgroup_freezer_state { - bool freeze; - int e_freeze; - int nr_frozen_descendants; - int nr_frozen_tasks; -}; - -struct cgroup_root; - -struct cgroup_rstat_cpu; - -struct psi_group; - -struct cgroup { - struct cgroup_subsys_state self; - long unsigned int flags; - int level; - int max_depth; - int nr_descendants; - int nr_dying_descendants; - int max_descendants; - int nr_populated_csets; - int nr_populated_domain_children; - int nr_populated_threaded_children; - int nr_threaded_children; - unsigned int kill_seq; - struct kernfs_node *kn; - struct cgroup_file procs_file; - struct cgroup_file events_file; - struct cgroup_file psi_files[3]; - u16 subtree_control; - u16 subtree_ss_mask; - u16 old_subtree_control; - u16 old_subtree_ss_mask; - struct cgroup_subsys_state *subsys[13]; - int nr_dying_subsys[13]; - struct cgroup_root *root; - struct list_head cset_links; - struct list_head e_csets[13]; - struct cgroup *dom_cgrp; - struct cgroup *old_dom_cgrp; - struct cgroup_rstat_cpu *rstat_cpu; - struct list_head rstat_css_list; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct cacheline_padding _pad_; - struct cgroup *rstat_flush_next; - struct cgroup_base_stat last_bstat; - struct cgroup_base_stat bstat; - struct prev_cputime prev_cputime; - struct list_head pidlists; - struct mutex pidlist_mutex; - wait_queue_head_t offline_waitq; - struct work_struct release_agent_work; - struct psi_group *psi; - struct cgroup_bpf bpf; - struct cgroup_freezer_state freezer; - struct bpf_local_storage *bpf_cgrp_storage; - struct cgroup *ancestors[0]; - long: 64; -}; - -typedef int proc_handler(const struct ctl_table *, int, void *, size_t *, loff_t *); - -struct ctl_table_poll; - -struct ctl_table { - const char *procname; - void *data; - int maxlen; - umode_t mode; - proc_handler *proc_handler; - struct ctl_table_poll *poll; - void *extra1; - void *extra2; -}; - -struct ctl_table_poll { - atomic_t event; - wait_queue_head_t wait; -}; - -struct ctl_node { - struct rb_node node; - struct ctl_table_header *header; -}; - -struct ctl_table_root { - struct ctl_table_set default_set; - struct ctl_table_set * (*lookup)(struct ctl_table_root *); - void (*set_ownership)(struct ctl_table_header *, kuid_t *, kgid_t *); - int (*permissions)(struct ctl_table_header *, const struct ctl_table *); -}; - -struct key_tag { - struct callback_head rcu; - refcount_t usage; - bool removed; -}; - -typedef int (*request_key_actor_t)(struct key *, void *); - -struct key_preparsed_payload; - -struct key_match_data; - -struct kernel_pkey_params; - -struct kernel_pkey_query; - -struct key_type { - const char *name; - size_t def_datalen; - unsigned int flags; - int (*vet_description)(const char *); - int (*preparse)(struct key_preparsed_payload *); - void (*free_preparse)(struct key_preparsed_payload *); - int (*instantiate)(struct key *, struct key_preparsed_payload *); - int (*update)(struct key *, struct key_preparsed_payload *); - int (*match_preparse)(struct key_match_data *); - void (*match_free)(struct key_match_data *); - void (*revoke)(struct key *); - void (*destroy)(struct key *); - void (*describe)(const struct key *, struct seq_file *); - long int (*read)(const struct key *, char *, size_t); - request_key_actor_t request_key; - struct key_restriction * (*lookup_restriction)(const char *); - int (*asym_query)(const struct kernel_pkey_params *, struct kernel_pkey_query *); - int (*asym_eds_op)(struct kernel_pkey_params *, const void *, void *); - int (*asym_verify_signature)(struct kernel_pkey_params *, const void *, const void *); - struct list_head link; - struct lock_class_key lock_class; -}; - -typedef int (*key_restrict_link_func_t)(struct key *, const struct key_type *, const union key_payload *, struct key *); - -struct key_restriction { - key_restrict_link_func_t check; - struct key *key; - struct key_type *keytype; -}; - -struct user_struct { - refcount_t __count; - struct percpu_counter epoll_watches; - long unsigned int unix_inflight; - atomic_long_t pipe_bufs; - struct hlist_node uidhash_node; - kuid_t uid; - atomic_long_t locked_vm; - struct ratelimit_state ratelimit; -}; - -struct group_info { - refcount_t usage; - int ngroups; - kgid_t gid[0]; -}; - -struct hrtimer_cpu_base { - raw_spinlock_t lock; - unsigned int cpu; - unsigned int active_bases; - unsigned int clock_was_set_seq; - unsigned int hres_active: 1; - unsigned int in_hrtirq: 1; - unsigned int hang_detected: 1; - unsigned int softirq_activated: 1; - unsigned int online: 1; - ktime_t expires_next; - struct hrtimer *next_timer; - ktime_t softirq_expires_next; - struct hrtimer *softirq_next_timer; - long: 64; - struct hrtimer_clock_base clock_base[8]; - call_single_data_t csd; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct core_thread { - struct task_struct *task; - struct core_thread *next; -}; - -struct core_state { - atomic_t nr_threads; - struct core_thread dumper; - struct completion startup; -}; - -struct taskstats { - __u16 version; - __u32 ac_exitcode; - __u8 ac_flag; - __u8 ac_nice; - __u64 cpu_count; - __u64 cpu_delay_total; - __u64 blkio_count; - __u64 blkio_delay_total; - __u64 swapin_count; - __u64 swapin_delay_total; - __u64 cpu_run_real_total; - __u64 cpu_run_virtual_total; - char ac_comm[32]; - __u8 ac_sched; - __u8 ac_pad[3]; - long: 0; - __u32 ac_uid; - __u32 ac_gid; - __u32 ac_pid; - __u32 ac_ppid; - __u32 ac_btime; - __u64 ac_etime; - __u64 ac_utime; - __u64 ac_stime; - __u64 ac_minflt; - __u64 ac_majflt; - __u64 coremem; - __u64 virtmem; - __u64 hiwater_rss; - __u64 hiwater_vm; - __u64 read_char; - __u64 write_char; - __u64 read_syscalls; - __u64 write_syscalls; - __u64 read_bytes; - __u64 write_bytes; - __u64 cancelled_write_bytes; - __u64 nvcsw; - __u64 nivcsw; - __u64 ac_utimescaled; - __u64 ac_stimescaled; - __u64 cpu_scaled_run_real_total; - __u64 freepages_count; - __u64 freepages_delay_total; - __u64 thrashing_count; - __u64 thrashing_delay_total; - __u64 ac_btime64; - __u64 compact_count; - __u64 compact_delay_total; - __u32 ac_tgid; - __u64 ac_tgetime; - __u64 ac_exe_dev; - __u64 ac_exe_inode; - __u64 wpcopy_count; - __u64 wpcopy_delay_total; - __u64 irq_count; - __u64 irq_delay_total; -}; - -struct delayed_call { - void (*fn)(void *); - void *arg; -}; - -typedef struct { - uid_t val; -} vfsuid_t; - -typedef struct { - gid_t val; -} vfsgid_t; - -typedef void percpu_ref_func_t(struct percpu_ref *); - -struct percpu_ref_data { - atomic_long_t count; - percpu_ref_func_t *release; - percpu_ref_func_t *confirm_switch; - bool force_atomic: 1; - bool allow_reinit: 1; - struct callback_head rcu; - struct percpu_ref *ref; -}; - -struct wait_page_queue; - -struct kiocb { - struct file *ki_filp; - loff_t ki_pos; - void (*ki_complete)(struct kiocb *, long int); - void *private; - int ki_flags; - u16 ki_ioprio; - union { - struct wait_page_queue *ki_waitq; - ssize_t (*dio_complete)(void *); - }; -}; - -struct iattr { - unsigned int ia_valid; - umode_t ia_mode; - union { - kuid_t ia_uid; - vfsuid_t ia_vfsuid; - }; - union { - kgid_t ia_gid; - vfsgid_t ia_vfsgid; - }; - loff_t ia_size; - struct timespec64 ia_atime; - struct timespec64 ia_mtime; - struct timespec64 ia_ctime; - struct file *ia_file; -}; - -typedef __kernel_uid32_t projid_t; - -typedef struct { - projid_t val; -} kprojid_t; - -enum quota_type { - USRQUOTA = 0, - GRPQUOTA = 1, - PRJQUOTA = 2, -}; - -struct kqid { - union { - kuid_t uid; - kgid_t gid; - kprojid_t projid; - }; - enum quota_type type; -}; - -struct mem_dqblk { - qsize_t dqb_bhardlimit; - qsize_t dqb_bsoftlimit; - qsize_t dqb_curspace; - qsize_t dqb_rsvspace; - qsize_t dqb_ihardlimit; - qsize_t dqb_isoftlimit; - qsize_t dqb_curinodes; - time64_t dqb_btime; - time64_t dqb_itime; -}; - -struct dquot { - struct hlist_node dq_hash; - struct list_head dq_inuse; - struct list_head dq_free; - struct list_head dq_dirty; - struct mutex dq_lock; - spinlock_t dq_dqb_lock; - atomic_t dq_count; - struct super_block *dq_sb; - struct kqid dq_id; - loff_t dq_off; - long unsigned int dq_flags; - struct mem_dqblk dq_dqb; -}; - -struct quota_format_type { - int qf_fmt_id; - const struct quota_format_ops *qf_ops; - struct module *qf_owner; - struct quota_format_type *qf_next; -}; - -struct quota_format_ops { - int (*check_quota_file)(struct super_block *, int); - int (*read_file_info)(struct super_block *, int); - int (*write_file_info)(struct super_block *, int); - int (*free_file_info)(struct super_block *, int); - int (*read_dqblk)(struct dquot *); - int (*commit_dqblk)(struct dquot *); - int (*release_dqblk)(struct dquot *); - int (*get_next_id)(struct super_block *, struct kqid *); -}; - -struct dquot_operations { - int (*write_dquot)(struct dquot *); - struct dquot * (*alloc_dquot)(struct super_block *, int); - void (*destroy_dquot)(struct dquot *); - int (*acquire_dquot)(struct dquot *); - int (*release_dquot)(struct dquot *); - int (*mark_dirty)(struct dquot *); - int (*write_info)(struct super_block *, int); - qsize_t * (*get_reserved_space)(struct inode *); - int (*get_projid)(struct inode *, kprojid_t *); - int (*get_inode_usage)(struct inode *, qsize_t *); - int (*get_next_id)(struct super_block *, struct kqid *); -}; - -struct qc_dqblk { - int d_fieldmask; - u64 d_spc_hardlimit; - u64 d_spc_softlimit; - u64 d_ino_hardlimit; - u64 d_ino_softlimit; - u64 d_space; - u64 d_ino_count; - s64 d_ino_timer; - s64 d_spc_timer; - int d_ino_warns; - int d_spc_warns; - u64 d_rt_spc_hardlimit; - u64 d_rt_spc_softlimit; - u64 d_rt_space; - s64 d_rt_spc_timer; - int d_rt_spc_warns; -}; - -struct qc_type_state { - unsigned int flags; - unsigned int spc_timelimit; - unsigned int ino_timelimit; - unsigned int rt_spc_timelimit; - unsigned int spc_warnlimit; - unsigned int ino_warnlimit; - unsigned int rt_spc_warnlimit; - long long unsigned int ino; - blkcnt_t blocks; - blkcnt_t nextents; -}; - -struct qc_state { - unsigned int s_incoredqs; - struct qc_type_state s_state[3]; -}; - -struct qc_info { - int i_fieldmask; - unsigned int i_flags; - unsigned int i_spc_timelimit; - unsigned int i_ino_timelimit; - unsigned int i_rt_spc_timelimit; - unsigned int i_spc_warnlimit; - unsigned int i_ino_warnlimit; - unsigned int i_rt_spc_warnlimit; -}; - -struct quotactl_ops { - int (*quota_on)(struct super_block *, int, int, const struct path *); - int (*quota_off)(struct super_block *, int); - int (*quota_enable)(struct super_block *, unsigned int); - int (*quota_disable)(struct super_block *, unsigned int); - int (*quota_sync)(struct super_block *, int); - int (*set_info)(struct super_block *, int, struct qc_info *); - int (*get_dqblk)(struct super_block *, struct kqid, struct qc_dqblk *); - int (*get_nextdqblk)(struct super_block *, struct kqid *, struct qc_dqblk *); - int (*set_dqblk)(struct super_block *, struct kqid, struct qc_dqblk *); - int (*get_state)(struct super_block *, struct qc_state *); - int (*rm_xquota)(struct super_block *, unsigned int); -}; - -enum module_state { - MODULE_STATE_LIVE = 0, - MODULE_STATE_COMING = 1, - MODULE_STATE_GOING = 2, - MODULE_STATE_UNFORMED = 3, -}; - -struct kset; - -struct kobj_type; - -struct kobject { - const char *name; - struct list_head entry; - struct kobject *parent; - struct kset *kset; - const struct kobj_type *ktype; - struct kernfs_node *sd; - struct kref kref; - unsigned int state_initialized: 1; - unsigned int state_in_sysfs: 1; - unsigned int state_add_uevent_sent: 1; - unsigned int state_remove_uevent_sent: 1; - unsigned int uevent_suppress: 1; -}; - -struct module_param_attrs; - -struct module_kobject { - struct kobject kobj; - struct module *mod; - struct kobject *drivers_dir; - struct module_param_attrs *mp; - struct completion *kobj_completion; -}; - -struct latch_tree_node { - struct rb_node node[2]; -}; - -struct mod_tree_node { - struct module *mod; - struct latch_tree_node node; -}; - -struct module_memory { - void *base; - unsigned int size; - struct mod_tree_node mtn; -}; - -struct mod_plt_sec { - int plt_shndx; - int plt_num_entries; - int plt_max_entries; -}; - -struct plt_entry; - -struct mod_arch_specific { - struct mod_plt_sec core; - struct mod_plt_sec init; - struct plt_entry *ftrace_trampolines; - struct plt_entry *init_ftrace_trampolines; -}; - -struct elf64_sym; - -typedef struct elf64_sym Elf64_Sym; - -struct mod_kallsyms { - Elf64_Sym *symtab; - unsigned int num_symtab; - char *strtab; - char *typetab; -}; - -typedef const int tracepoint_ptr_t; - -struct module_attribute; - -struct kernel_symbol; - -struct kernel_param; - -struct module_sect_attrs; - -struct module_notes_attrs; - -struct bpf_raw_event_map; - -struct trace_eval_map; - -struct error_injection_entry; - -struct module { - enum module_state state; - struct list_head list; - char name[56]; - struct module_kobject mkobj; - struct module_attribute *modinfo_attrs; - const char *version; - const char *srcversion; - struct kobject *holders_dir; - const struct kernel_symbol *syms; - const s32 *crcs; - unsigned int num_syms; - struct mutex param_lock; - struct kernel_param *kp; - unsigned int num_kp; - unsigned int num_gpl_syms; - const struct kernel_symbol *gpl_syms; - const s32 *gpl_crcs; - bool using_gplonly_symbols; - bool async_probe_requested; - unsigned int num_exentries; - struct exception_table_entry *extable; - int (*init)(void); - struct module_memory mem[7]; - struct mod_arch_specific arch; - long unsigned int taints; - unsigned int num_bugs; - struct list_head bug_list; - struct bug_entry *bug_table; - struct mod_kallsyms *kallsyms; - struct mod_kallsyms core_kallsyms; - struct module_sect_attrs *sect_attrs; - struct module_notes_attrs *notes_attrs; - char *args; - void *percpu; - unsigned int percpu_size; - void *noinstr_text_start; - unsigned int noinstr_text_size; - unsigned int num_tracepoints; - tracepoint_ptr_t *tracepoints_ptrs; - unsigned int num_srcu_structs; - struct srcu_struct **srcu_struct_ptrs; - unsigned int num_bpf_raw_events; - struct bpf_raw_event_map *bpf_raw_events; - unsigned int btf_data_size; - unsigned int btf_base_data_size; - void *btf_data; - void *btf_base_data; - struct jump_entry *jump_entries; - unsigned int num_jump_entries; - unsigned int num_trace_bprintk_fmt; - const char **trace_bprintk_fmt_start; - struct trace_event_call **trace_events; - unsigned int num_trace_events; - struct trace_eval_map **trace_evals; - unsigned int num_trace_evals; - unsigned int num_ftrace_callsites; - long unsigned int *ftrace_callsites; - void *kprobes_text_start; - unsigned int kprobes_text_size; - long unsigned int *kprobe_blacklist; - unsigned int num_kprobe_blacklist; - struct error_injection_entry *ei_funcs; - unsigned int num_ei_funcs; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct writeback_control; - -struct readahead_control; - -struct swap_info_struct; - -struct address_space_operations { - int (*writepage)(struct page *, struct writeback_control *); - int (*read_folio)(struct file *, struct folio *); - int (*writepages)(struct address_space *, struct writeback_control *); - bool (*dirty_folio)(struct address_space *, struct folio *); - void (*readahead)(struct readahead_control *); - int (*write_begin)(struct file *, struct address_space *, loff_t, unsigned int, struct folio **, void **); - int (*write_end)(struct file *, struct address_space *, loff_t, unsigned int, unsigned int, struct folio *, void *); - sector_t (*bmap)(struct address_space *, sector_t); - void (*invalidate_folio)(struct folio *, size_t, size_t); - bool (*release_folio)(struct folio *, gfp_t); - void (*free_folio)(struct folio *); - ssize_t (*direct_IO)(struct kiocb *, struct iov_iter *); - int (*migrate_folio)(struct address_space *, struct folio *, struct folio *, enum migrate_mode); - int (*launder_folio)(struct folio *); - bool (*is_partially_uptodate)(struct folio *, size_t, size_t); - void (*is_dirty_writeback)(struct folio *, bool *, bool *); - int (*error_remove_folio)(struct address_space *, struct folio *); - int (*swap_activate)(struct swap_info_struct *, struct file *, sector_t *); - void (*swap_deactivate)(struct file *); - int (*swap_rw)(struct kiocb *, struct iov_iter *); -}; - -enum writeback_sync_modes { - WB_SYNC_NONE = 0, - WB_SYNC_ALL = 1, -}; - -struct folio_batch { - unsigned char nr; - unsigned char i; - bool percpu_pvec_drained; - struct folio *folios[31]; -}; - -struct swap_iocb; - -struct writeback_control { - long int nr_to_write; - long int pages_skipped; - loff_t range_start; - loff_t range_end; - enum writeback_sync_modes sync_mode; - unsigned int for_kupdate: 1; - unsigned int for_background: 1; - unsigned int tagged_writepages: 1; - unsigned int for_reclaim: 1; - unsigned int range_cyclic: 1; - unsigned int for_sync: 1; - unsigned int unpinned_netfs_wb: 1; - unsigned int no_cgroup_owner: 1; - struct swap_iocb **swap_plug; - struct list_head *list; - struct folio_batch fbatch; - long unsigned int index; - int saved_err; - struct bdi_writeback *wb; - struct inode *inode; - int wb_id; - int wb_lcand_id; - int wb_tcand_id; - size_t wb_bytes; - size_t wb_lcand_bytes; - size_t wb_tcand_bytes; -}; - -struct iovec { - void *iov_base; - __kernel_size_t iov_len; -}; - -struct kvec; - -struct bio_vec; - -struct folio_queue; - -struct iov_iter { - u8 iter_type; - bool nofault; - bool data_source; - size_t iov_offset; - union { - struct iovec __ubuf_iovec; - struct { - union { - const struct iovec *__iov; - const struct kvec *kvec; - const struct bio_vec *bvec; - const struct folio_queue *folioq; - struct xarray *xarray; - void *ubuf; - }; - size_t count; - }; - }; - union { - long unsigned int nr_segs; - u8 folioq_slot; - loff_t xarray_start; - }; -}; - -struct fiemap_extent_info; - -struct fileattr; - -struct offset_ctx; - -struct inode_operations { - struct dentry * (*lookup)(struct inode *, struct dentry *, unsigned int); - const char * (*get_link)(struct dentry *, struct inode *, struct delayed_call *); - int (*permission)(struct mnt_idmap *, struct inode *, int); - struct posix_acl * (*get_inode_acl)(struct inode *, int, bool); - int (*readlink)(struct dentry *, char *, int); - int (*create)(struct mnt_idmap *, struct inode *, struct dentry *, umode_t, bool); - int (*link)(struct dentry *, struct inode *, struct dentry *); - int (*unlink)(struct inode *, struct dentry *); - int (*symlink)(struct mnt_idmap *, struct inode *, struct dentry *, const char *); - int (*mkdir)(struct mnt_idmap *, struct inode *, struct dentry *, umode_t); - int (*rmdir)(struct inode *, struct dentry *); - int (*mknod)(struct mnt_idmap *, struct inode *, struct dentry *, umode_t, dev_t); - int (*rename)(struct mnt_idmap *, struct inode *, struct dentry *, struct inode *, struct dentry *, unsigned int); - int (*setattr)(struct mnt_idmap *, struct dentry *, struct iattr *); - int (*getattr)(struct mnt_idmap *, const struct path *, struct kstat *, u32, unsigned int); - ssize_t (*listxattr)(struct dentry *, char *, size_t); - int (*fiemap)(struct inode *, struct fiemap_extent_info *, u64, u64); - int (*update_time)(struct inode *, int); - int (*atomic_open)(struct inode *, struct dentry *, struct file *, unsigned int, umode_t); - int (*tmpfile)(struct mnt_idmap *, struct inode *, struct file *, umode_t); - struct posix_acl * (*get_acl)(struct mnt_idmap *, struct dentry *, int); - int (*set_acl)(struct mnt_idmap *, struct dentry *, struct posix_acl *, int); - int (*fileattr_set)(struct mnt_idmap *, struct dentry *, struct fileattr *); - int (*fileattr_get)(struct dentry *, struct fileattr *); - struct offset_ctx * (*get_offset_ctx)(struct inode *); - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct fprop_local_percpu { - struct percpu_counter events; - unsigned int period; - raw_spinlock_t lock; -}; - -enum wb_reason { - WB_REASON_BACKGROUND = 0, - WB_REASON_VMSCAN = 1, - WB_REASON_SYNC = 2, - WB_REASON_PERIODIC = 3, - WB_REASON_LAPTOP_TIMER = 4, - WB_REASON_FS_FREE_SPACE = 5, - WB_REASON_FORKER_THREAD = 6, - WB_REASON_FOREIGN_FLUSH = 7, - WB_REASON_MAX = 8, -}; - -struct bdi_writeback { - struct backing_dev_info *bdi; - long unsigned int state; - long unsigned int last_old_flush; - struct list_head b_dirty; - struct list_head b_io; - struct list_head b_more_io; - struct list_head b_dirty_time; - spinlock_t list_lock; - atomic_t writeback_inodes; - struct percpu_counter stat[4]; - long unsigned int bw_time_stamp; - long unsigned int dirtied_stamp; - long unsigned int written_stamp; - long unsigned int write_bandwidth; - long unsigned int avg_write_bandwidth; - long unsigned int dirty_ratelimit; - long unsigned int balanced_dirty_ratelimit; - struct fprop_local_percpu completions; - int dirty_exceeded; - enum wb_reason start_all_reason; - spinlock_t work_lock; - struct list_head work_list; - struct delayed_work dwork; - struct delayed_work bw_dwork; - struct list_head bdi_node; - struct percpu_ref refcnt; - struct fprop_local_percpu memcg_completions; - struct cgroup_subsys_state *memcg_css; - struct cgroup_subsys_state *blkcg_css; - struct list_head memcg_node; - struct list_head blkcg_node; - struct list_head b_attached; - struct list_head offline_node; - union { - struct work_struct release_work; - struct callback_head rcu; - }; -}; - -struct fown_struct { - struct file *file; - rwlock_t lock; - struct pid *pid; - enum pid_type pid_type; - kuid_t uid; - kuid_t euid; - int signum; -}; - -struct fasync_struct { - rwlock_t fa_lock; - int magic; - int fa_fd; - struct fasync_struct *fa_next; - struct file *fa_file; - struct callback_head fa_rcu; -}; - -enum freeze_holder { - FREEZE_HOLDER_KERNEL = 1, - FREEZE_HOLDER_USERSPACE = 2, - FREEZE_MAY_NEST = 4, -}; - -struct kstatfs; - -struct super_operations { - struct inode * (*alloc_inode)(struct super_block *); - void (*destroy_inode)(struct inode *); - void (*free_inode)(struct inode *); - void (*dirty_inode)(struct inode *, int); - int (*write_inode)(struct inode *, struct writeback_control *); - int (*drop_inode)(struct inode *); - void (*evict_inode)(struct inode *); - void (*put_super)(struct super_block *); - int (*sync_fs)(struct super_block *, int); - int (*freeze_super)(struct super_block *, enum freeze_holder); - int (*freeze_fs)(struct super_block *); - int (*thaw_super)(struct super_block *, enum freeze_holder); - int (*unfreeze_fs)(struct super_block *); - int (*statfs)(struct dentry *, struct kstatfs *); - int (*remount_fs)(struct super_block *, int *, char *); - void (*umount_begin)(struct super_block *); - int (*show_options)(struct seq_file *, struct dentry *); - int (*show_devname)(struct seq_file *, struct dentry *); - int (*show_path)(struct seq_file *, struct dentry *); - int (*show_stats)(struct seq_file *, struct dentry *); - ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t); - ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t); - struct dquot ** (*get_dquots)(struct inode *); - long int (*nr_cached_objects)(struct super_block *, struct shrink_control *); - long int (*free_cached_objects)(struct super_block *, struct shrink_control *); - void (*shutdown)(struct super_block *); -}; - -struct fid; - -struct iomap; - -struct export_operations { - int (*encode_fh)(struct inode *, __u32 *, int *, struct inode *); - struct dentry * (*fh_to_dentry)(struct super_block *, struct fid *, int, int); - struct dentry * (*fh_to_parent)(struct super_block *, struct fid *, int, int); - int (*get_name)(struct dentry *, char *, struct dentry *); - struct dentry * (*get_parent)(struct dentry *); - int (*commit_metadata)(struct inode *); - int (*get_uuid)(struct super_block *, u8 *, u32 *, u64 *); - int (*map_blocks)(struct inode *, loff_t, u64, struct iomap *, bool, u32 *); - int (*commit_blocks)(struct inode *, struct iomap *, int, struct iattr *); - long unsigned int flags; -}; - -struct xattr_handler { - const char *name; - const char *prefix; - int flags; - bool (*list)(struct dentry *); - int (*get)(const struct xattr_handler *, struct dentry *, struct inode *, const char *, void *, size_t); - int (*set)(const struct xattr_handler *, struct mnt_idmap *, struct dentry *, struct inode *, const char *, const void *, size_t, int); -}; - -union fscrypt_policy; - -struct fscrypt_operations { - unsigned int needs_bounce_pages: 1; - unsigned int has_32bit_inodes: 1; - unsigned int supports_subblock_data_units: 1; - const char *legacy_key_prefix; - int (*get_context)(struct inode *, void *, size_t); - int (*set_context)(struct inode *, const void *, size_t, void *); - const union fscrypt_policy * (*get_dummy_policy)(struct super_block *); - bool (*empty_dir)(struct inode *); - bool (*has_stable_inodes)(struct super_block *); - struct block_device ** (*get_devices)(struct super_block *, unsigned int *); -}; - -enum dl_dev_state { - DL_DEV_NO_DRIVER = 0, - DL_DEV_PROBING = 1, - DL_DEV_DRIVER_BOUND = 2, - DL_DEV_UNBINDING = 3, -}; - -struct dev_links_info { - struct list_head suppliers; - struct list_head consumers; - struct list_head defer_sync; - enum dl_dev_state status; -}; - -struct pm_message { - int event; -}; - -typedef struct pm_message pm_message_t; - -struct pm_subsys_data; - -struct device; - -struct dev_pm_qos; - -struct dev_pm_info { - pm_message_t power_state; - bool can_wakeup: 1; - bool async_suspend: 1; - bool in_dpm_list: 1; - bool is_prepared: 1; - bool is_suspended: 1; - bool is_noirq_suspended: 1; - bool is_late_suspended: 1; - bool no_pm: 1; - bool early_init: 1; - bool direct_complete: 1; - u32 driver_flags; - spinlock_t lock; - bool should_wakeup: 1; - struct pm_subsys_data *subsys_data; - void (*set_latency_tolerance)(struct device *, s32); - struct dev_pm_qos *qos; -}; - -struct irq_domain; - -struct msi_device_data; - -struct dev_msi_info { - struct irq_domain *domain; - struct msi_device_data *data; -}; - -struct dev_archdata {}; - -struct dev_iommu; - -enum device_removable { - DEVICE_REMOVABLE_NOT_SUPPORTED = 0, - DEVICE_REMOVABLE_UNKNOWN = 1, - DEVICE_FIXED = 2, - DEVICE_REMOVABLE = 3, -}; - -struct device_private; - -struct device_type; - -struct bus_type; - -struct device_driver; - -struct dev_pm_domain; - -struct bus_dma_region; - -struct device_dma_parameters; - -struct dma_coherent_mem; - -struct io_tlb_mem; - -struct device_node; - -struct fwnode_handle; - -struct class; - -struct attribute_group; - -struct iommu_group; - -struct device_physical_location; - -struct device { - struct kobject kobj; - struct device *parent; - struct device_private *p; - const char *init_name; - const struct device_type *type; - const struct bus_type *bus; - struct device_driver *driver; - void *platform_data; - void *driver_data; - struct mutex mutex; - struct dev_links_info links; - struct dev_pm_info power; - struct dev_pm_domain *pm_domain; - struct dev_msi_info msi; - u64 *dma_mask; - u64 coherent_dma_mask; - u64 bus_dma_limit; - const struct bus_dma_region *dma_range_map; - struct device_dma_parameters *dma_parms; - struct list_head dma_pools; - struct dma_coherent_mem *dma_mem; - struct io_tlb_mem *dma_io_tlb_mem; - struct dev_archdata archdata; - struct device_node *of_node; - struct fwnode_handle *fwnode; - dev_t devt; - u32 id; - spinlock_t devres_lock; - struct list_head devres_head; - const struct class *class; - const struct attribute_group **groups; - void (*release)(struct device *); - struct iommu_group *iommu_group; - struct dev_iommu *iommu; - struct device_physical_location *physical_location; - enum device_removable removable; - bool offline_disabled: 1; - bool offline: 1; - bool of_node_reused: 1; - bool state_synced: 1; - bool can_match: 1; - bool dma_coherent: 1; - bool dma_skip_sync: 1; -}; - -struct request_queue; - -struct disk_stats; - -struct blk_holder_ops; - -struct partition_meta_info; - -struct block_device { - sector_t bd_start_sect; - sector_t bd_nr_sectors; - struct gendisk *bd_disk; - struct request_queue *bd_queue; - struct disk_stats *bd_stats; - long unsigned int bd_stamp; - atomic_t __bd_flags; - dev_t bd_dev; - struct address_space *bd_mapping; - atomic_t bd_openers; - spinlock_t bd_size_lock; - void *bd_claiming; - void *bd_holder; - const struct blk_holder_ops *bd_holder_ops; - struct mutex bd_holder_lock; - int bd_holders; - struct kobject *bd_holder_dir; - atomic_t bd_fsfreeze_count; - struct mutex bd_fsfreeze_mutex; - struct partition_meta_info *bd_meta_info; - int bd_writers; - void *bd_security; - struct device bd_device; -}; - -struct backing_dev_info { - u64 id; - struct rb_node rb_node; - struct list_head bdi_list; - long unsigned int ra_pages; - long unsigned int io_pages; - struct kref refcnt; - unsigned int capabilities; - unsigned int min_ratio; - unsigned int max_ratio; - unsigned int max_prop_frac; - atomic_long_t tot_write_bandwidth; - long unsigned int last_bdp_sleep; - struct bdi_writeback wb; - struct list_head wb_list; - struct xarray cgwb_tree; - struct mutex cgwb_release_mutex; - struct rw_semaphore wb_switch_rwsem; - wait_queue_head_t wb_waitq; - struct device *dev; - char dev_name[64]; - struct device *owner; - struct timer_list laptop_mode_wb_timer; - struct dentry *debug_dir; -}; - -typedef bool (*filldir_t)(struct dir_context *, const char *, int, loff_t, u64, unsigned int); - -struct dir_context { - filldir_t actor; - loff_t pos; -}; - -typedef void (*poll_queue_proc)(struct file *, wait_queue_head_t *, struct poll_table_struct *); - -struct poll_table_struct { - poll_queue_proc _qproc; - __poll_t _key; -}; - -struct seq_operations; - -struct seq_file { - char *buf; - size_t size; - size_t from; - size_t count; - size_t pad_until; - loff_t index; - loff_t read_pos; - struct mutex lock; - const struct seq_operations *op; - int poll_event; - const struct file *file; - void *private; -}; - -struct offset_ctx { - struct maple_tree mt; - long unsigned int next_offset; -}; - -struct p_log; - -struct fs_parameter; - -struct fs_parse_result; - -typedef int fs_param_type(struct p_log *, const struct fs_parameter_spec *, struct fs_parameter *, struct fs_parse_result *); - -struct fs_parameter_spec { - const char *name; - fs_param_type *type; - u8 opt; - short unsigned int flags; - const void *data; -}; - -typedef __u32 blk_opf_t; - -typedef u8 blk_status_t; - -struct bvec_iter { - sector_t bi_sector; - unsigned int bi_size; - unsigned int bi_idx; - unsigned int bi_bvec_done; -} __attribute__((packed)); - -typedef unsigned int blk_qc_t; - -typedef void bio_end_io_t(struct bio *); - -struct bio_issue { - u64 value; -}; - -struct bio_vec { - struct page *bv_page; - unsigned int bv_len; - unsigned int bv_offset; -}; - -struct blkcg_gq; - -struct bio_set; - -struct bio { - struct bio *bi_next; - struct block_device *bi_bdev; - blk_opf_t bi_opf; - short unsigned int bi_flags; - short unsigned int bi_ioprio; - enum rw_hint bi_write_hint; - blk_status_t bi_status; - atomic_t __bi_remaining; - struct bvec_iter bi_iter; - union { - blk_qc_t bi_cookie; - unsigned int __bi_nr_segments; - }; - bio_end_io_t *bi_end_io; - void *bi_private; - struct blkcg_gq *bi_blkg; - struct bio_issue bi_issue; - short unsigned int bi_vcnt; - short unsigned int bi_max_vecs; - atomic_t __bi_cnt; - struct bio_vec *bi_io_vec; - struct bio_set *bi_pool; - struct bio_vec bi_inline_vecs[0]; -}; - -struct tracepoint_func { - void *func; - void *data; - int prio; -}; - -struct tracepoint { - const char *name; - struct static_key key; - struct static_call_key *static_call_key; - void *static_call_tramp; - void *iterator; - void *probestub; - int (*regfunc)(void); - void (*unregfunc)(void); - struct tracepoint_func *funcs; -}; - -struct bpf_raw_event_map { - struct tracepoint *tp; - void *bpf_func; - u32 num_args; - u32 writable_size; - long: 64; -}; - -struct dev_pagemap_ops { - void (*page_free)(struct page *); - vm_fault_t (*migrate_to_ram)(struct vm_fault *); - int (*memory_failure)(struct dev_pagemap *, long unsigned int, long unsigned int, int); -}; - -struct kernfs_root; - -struct kernfs_elem_dir { - long unsigned int subdirs; - struct rb_root children; - struct kernfs_root *root; - long unsigned int rev; -}; - -struct kernfs_elem_symlink { - struct kernfs_node *target_kn; -}; - -struct kernfs_ops; - -struct kernfs_open_node; - -struct kernfs_elem_attr { - const struct kernfs_ops *ops; - struct kernfs_open_node *open; - loff_t size; - struct kernfs_node *notify_next; -}; - -struct kernfs_iattrs; - -struct kernfs_node { - atomic_t count; - atomic_t active; - struct kernfs_node *parent; - const char *name; - struct rb_node rb; - const void *ns; - unsigned int hash; - short unsigned int flags; - umode_t mode; - union { - struct kernfs_elem_dir dir; - struct kernfs_elem_symlink symlink; - struct kernfs_elem_attr attr; - }; - u64 id; - void *priv; - struct kernfs_iattrs *iattr; - struct callback_head rcu; -}; - -struct kernfs_open_file; - -struct kernfs_ops { - int (*open)(struct kernfs_open_file *); - void (*release)(struct kernfs_open_file *); - int (*seq_show)(struct seq_file *, void *); - void * (*seq_start)(struct seq_file *, loff_t *); - void * (*seq_next)(struct seq_file *, void *, loff_t *); - void (*seq_stop)(struct seq_file *, void *); - ssize_t (*read)(struct kernfs_open_file *, char *, size_t, loff_t); - size_t atomic_write_len; - bool prealloc; - ssize_t (*write)(struct kernfs_open_file *, char *, size_t, loff_t); - __poll_t (*poll)(struct kernfs_open_file *, struct poll_table_struct *); - int (*mmap)(struct kernfs_open_file *, struct vm_area_struct *); - loff_t (*llseek)(struct kernfs_open_file *, loff_t, int); -}; - -struct kernfs_open_file { - struct kernfs_node *kn; - struct file *file; - struct seq_file *seq_file; - void *priv; - struct mutex mutex; - struct mutex prealloc_mutex; - int event; - struct list_head list; - char *prealloc_buf; - size_t atomic_write_len; - bool mmapped: 1; - bool released: 1; - const struct vm_operations_struct *vm_ops; -}; - -enum kobj_ns_type { - KOBJ_NS_TYPE_NONE = 0, - KOBJ_NS_TYPE_NET = 1, - KOBJ_NS_TYPES = 2, -}; - -struct sock; - -struct kobj_ns_type_operations { - enum kobj_ns_type type; - bool (*current_may_mount)(void); - void * (*grab_current_ns)(void); - const void * (*netlink_ns)(struct sock *); - const void * (*initial_ns)(void); - void (*drop_ns)(void *); -}; - -struct attribute { - const char *name; - umode_t mode; -}; - -struct bin_attribute; - -struct attribute_group { - const char *name; - umode_t (*is_visible)(struct kobject *, struct attribute *, int); - umode_t (*is_bin_visible)(struct kobject *, struct bin_attribute *, int); - struct attribute **attrs; - struct bin_attribute **bin_attrs; -}; - -struct bin_attribute { - struct attribute attr; - size_t size; - void *private; - struct address_space * (*f_mapping)(void); - ssize_t (*read)(struct file *, struct kobject *, struct bin_attribute *, char *, loff_t, size_t); - ssize_t (*write)(struct file *, struct kobject *, struct bin_attribute *, char *, loff_t, size_t); - loff_t (*llseek)(struct file *, struct kobject *, struct bin_attribute *, loff_t, int); - int (*mmap)(struct file *, struct kobject *, struct bin_attribute *, struct vm_area_struct *); -}; - -struct sysfs_ops { - ssize_t (*show)(struct kobject *, struct attribute *, char *); - ssize_t (*store)(struct kobject *, struct attribute *, const char *, size_t); -}; - -struct kset_uevent_ops; - -struct kset { - struct list_head list; - spinlock_t list_lock; - struct kobject kobj; - const struct kset_uevent_ops *uevent_ops; -}; - -struct kobj_type { - void (*release)(struct kobject *); - const struct sysfs_ops *sysfs_ops; - const struct attribute_group **default_groups; - const struct kobj_ns_type_operations * (*child_ns_type)(const struct kobject *); - const void * (*namespace)(const struct kobject *); - void (*get_ownership)(const struct kobject *, kuid_t *, kgid_t *); -}; - -struct kobj_uevent_env { - char *argv[3]; - char *envp[64]; - int envp_idx; - char buf[2048]; - int buflen; -}; - -struct kset_uevent_ops { - int (* const filter)(const struct kobject *); - const char * (* const name)(const struct kobject *); - int (* const uevent)(const struct kobject *, struct kobj_uevent_env *); -}; - -struct dev_pm_ops { - int (*prepare)(struct device *); - void (*complete)(struct device *); - int (*suspend)(struct device *); - int (*resume)(struct device *); - int (*freeze)(struct device *); - int (*thaw)(struct device *); - int (*poweroff)(struct device *); - int (*restore)(struct device *); - int (*suspend_late)(struct device *); - int (*resume_early)(struct device *); - int (*freeze_late)(struct device *); - int (*thaw_early)(struct device *); - int (*poweroff_late)(struct device *); - int (*restore_early)(struct device *); - int (*suspend_noirq)(struct device *); - int (*resume_noirq)(struct device *); - int (*freeze_noirq)(struct device *); - int (*thaw_noirq)(struct device *); - int (*poweroff_noirq)(struct device *); - int (*restore_noirq)(struct device *); - int (*runtime_suspend)(struct device *); - int (*runtime_resume)(struct device *); - int (*runtime_idle)(struct device *); -}; - -struct pm_subsys_data { - spinlock_t lock; - unsigned int refcount; -}; - -struct dev_pm_domain { - struct dev_pm_ops ops; - int (*start)(struct device *); - void (*detach)(struct device *, bool); - int (*activate)(struct device *); - void (*sync)(struct device *); - void (*dismiss)(struct device *); - int (*set_performance_state)(struct device *, unsigned int); -}; - -struct bus_type { - const char *name; - const char *dev_name; - const struct attribute_group **bus_groups; - const struct attribute_group **dev_groups; - const struct attribute_group **drv_groups; - int (*match)(struct device *, const struct device_driver *); - int (*uevent)(const struct device *, struct kobj_uevent_env *); - int (*probe)(struct device *); - void (*sync_state)(struct device *); - void (*remove)(struct device *); - void (*shutdown)(struct device *); - const struct cpumask * (*irq_get_affinity)(struct device *, unsigned int); - int (*online)(struct device *); - int (*offline)(struct device *); - int (*suspend)(struct device *, pm_message_t); - int (*resume)(struct device *); - int (*num_vf)(struct device *); - int (*dma_configure)(struct device *); - void (*dma_cleanup)(struct device *); - const struct dev_pm_ops *pm; - bool need_parent_lock; -}; - -enum probe_type { - PROBE_DEFAULT_STRATEGY = 0, - PROBE_PREFER_ASYNCHRONOUS = 1, - PROBE_FORCE_SYNCHRONOUS = 2, -}; - -struct of_device_id; - -struct acpi_device_id; - -struct driver_private; - -struct device_driver { - const char *name; - const struct bus_type *bus; - struct module *owner; - const char *mod_name; - bool suppress_bind_attrs; - enum probe_type probe_type; - const struct of_device_id *of_match_table; - const struct acpi_device_id *acpi_match_table; - int (*probe)(struct device *); - void (*sync_state)(struct device *); - int (*remove)(struct device *); - void (*shutdown)(struct device *); - int (*suspend)(struct device *, pm_message_t); - int (*resume)(struct device *); - const struct attribute_group **groups; - const struct attribute_group **dev_groups; - const struct dev_pm_ops *pm; - void (*coredump)(struct device *); - struct driver_private *p; -}; - -struct class { - const char *name; - const struct attribute_group **class_groups; - const struct attribute_group **dev_groups; - int (*dev_uevent)(const struct device *, struct kobj_uevent_env *); - char * (*devnode)(const struct device *, umode_t *); - void (*class_release)(const struct class *); - void (*dev_release)(struct device *); - int (*shutdown_pre)(struct device *); - const struct kobj_ns_type_operations *ns_type; - const void * (*namespace)(const struct device *); - void (*get_ownership)(const struct device *, kuid_t *, kgid_t *); - const struct dev_pm_ops *pm; -}; - -struct device_type { - const char *name; - const struct attribute_group **groups; - int (*uevent)(const struct device *, struct kobj_uevent_env *); - char * (*devnode)(const struct device *, umode_t *, kuid_t *, kgid_t *); - void (*release)(struct device *); - const struct dev_pm_ops *pm; -}; - -typedef __u64 Elf64_Addr; - -typedef __u16 Elf64_Half; - -typedef __u32 Elf64_Word; - -typedef __u64 Elf64_Xword; - -struct elf64_sym { - Elf64_Word st_name; - unsigned char st_info; - unsigned char st_other; - Elf64_Half st_shndx; - Elf64_Addr st_value; - Elf64_Xword st_size; -}; - -struct kernel_param_ops { - unsigned int flags; - int (*set)(const char *, const struct kernel_param *); - int (*get)(char *, const struct kernel_param *); - void (*free)(void *); -}; - -struct kparam_string; - -struct kparam_array; - -struct kernel_param { - const char *name; - struct module *mod; - const struct kernel_param_ops *ops; - const u16 perm; - s8 level; - u8 flags; - union { - void *arg; - const struct kparam_string *str; - const struct kparam_array *arr; - }; -}; - -struct kparam_string { - unsigned int maxlen; - char *string; -}; - -struct kparam_array { - unsigned int max; - unsigned int elemsize; - unsigned int *num; - const struct kernel_param_ops *ops; - void *elem; -}; - -enum { - EI_ETYPE_NULL = 0, - EI_ETYPE_ERRNO = 1, - EI_ETYPE_ERRNO_NULL = 2, - EI_ETYPE_TRUE = 3, -}; - -struct error_injection_entry { - long unsigned int addr; - int etype; -}; - -struct plt_entry { - __le32 adrp; - __le32 add; - __le32 br; -}; - -struct module_attribute { - struct attribute attr; - ssize_t (*show)(struct module_attribute *, struct module_kobject *, char *); - ssize_t (*store)(struct module_attribute *, struct module_kobject *, const char *, size_t); - void (*setup)(struct module *, const char *); - int (*test)(struct module *); - void (*free)(struct module *); -}; - -struct kernel_symbol { - int value_offset; - int name_offset; - int namespace_offset; -}; - -struct trace_event_functions; - -struct trace_event { - struct hlist_node node; - int type; - struct trace_event_functions *funcs; -}; - -struct trace_event_class; - -struct trace_event_call { - struct list_head list; - struct trace_event_class *class; - union { - const char *name; - struct tracepoint *tp; - }; - struct trace_event event; - char *print_fmt; - struct event_filter *filter; - union { - void *module; - atomic_t refcnt; - }; - void *data; - int flags; - int perf_refcount; - struct hlist_head *perf_events; - struct bpf_prog_array *prog_array; - int (*perf_perm)(struct trace_event_call *, struct perf_event *); -}; - -struct trace_eval_map { - const char *system; - const char *eval_string; - long unsigned int eval_value; -}; - -struct of_device_id { - char name[32]; - char type[32]; - char compatible[128]; - const void *data; -}; - -typedef long unsigned int kernel_ulong_t; - -struct acpi_device_id { - __u8 id[16]; - kernel_ulong_t driver_data; - __u32 cls; - __u32 cls_msk; -}; - -struct device_dma_parameters { - unsigned int max_segment_size; - unsigned int min_align_mask; - long unsigned int segment_boundary_mask; -}; - -enum device_physical_location_panel { - DEVICE_PANEL_TOP = 0, - DEVICE_PANEL_BOTTOM = 1, - DEVICE_PANEL_LEFT = 2, - DEVICE_PANEL_RIGHT = 3, - DEVICE_PANEL_FRONT = 4, - DEVICE_PANEL_BACK = 5, - DEVICE_PANEL_UNKNOWN = 6, -}; - -enum device_physical_location_vertical_position { - DEVICE_VERT_POS_UPPER = 0, - DEVICE_VERT_POS_CENTER = 1, - DEVICE_VERT_POS_LOWER = 2, -}; - -enum device_physical_location_horizontal_position { - DEVICE_HORI_POS_LEFT = 0, - DEVICE_HORI_POS_CENTER = 1, - DEVICE_HORI_POS_RIGHT = 2, -}; - -struct device_physical_location { - enum device_physical_location_panel panel; - enum device_physical_location_vertical_position vertical_position; - enum device_physical_location_horizontal_position horizontal_position; - bool dock; - bool lid; -}; - -typedef u64 phys_addr_t; - -typedef u64 dma_addr_t; - -struct bus_dma_region { - phys_addr_t cpu_start; - dma_addr_t dma_start; - u64 size; -}; - -struct fwnode_operations; - -struct fwnode_handle { - struct fwnode_handle *secondary; - const struct fwnode_operations *ops; - struct device *dev; - struct list_head suppliers; - struct list_head consumers; - u8 flags; -}; - -struct seq_operations { - void * (*start)(struct seq_file *, loff_t *); - void (*stop)(struct seq_file *, void *); - void * (*next)(struct seq_file *, void *, loff_t *); - int (*show)(struct seq_file *, void *); -}; - -struct seq_buf { - char *buffer; - size_t size; - size_t len; -}; - -struct trace_seq { - char buffer[8156]; - struct seq_buf seq; - size_t readpos; - int full; -}; - -enum dev_dma_attr { - DEV_DMA_NOT_SUPPORTED = 0, - DEV_DMA_NON_COHERENT = 1, - DEV_DMA_COHERENT = 2, -}; - -struct fwnode_reference_args; - -struct fwnode_endpoint; - -struct fwnode_operations { - struct fwnode_handle * (*get)(struct fwnode_handle *); - void (*put)(struct fwnode_handle *); - bool (*device_is_available)(const struct fwnode_handle *); - const void * (*device_get_match_data)(const struct fwnode_handle *, const struct device *); - bool (*device_dma_supported)(const struct fwnode_handle *); - enum dev_dma_attr (*device_get_dma_attr)(const struct fwnode_handle *); - bool (*property_present)(const struct fwnode_handle *, const char *); - int (*property_read_int_array)(const struct fwnode_handle *, const char *, unsigned int, void *, size_t); - int (*property_read_string_array)(const struct fwnode_handle *, const char *, const char **, size_t); - const char * (*get_name)(const struct fwnode_handle *); - const char * (*get_name_prefix)(const struct fwnode_handle *); - struct fwnode_handle * (*get_parent)(const struct fwnode_handle *); - struct fwnode_handle * (*get_next_child_node)(const struct fwnode_handle *, struct fwnode_handle *); - struct fwnode_handle * (*get_named_child_node)(const struct fwnode_handle *, const char *); - int (*get_reference_args)(const struct fwnode_handle *, const char *, const char *, unsigned int, unsigned int, struct fwnode_reference_args *); - struct fwnode_handle * (*graph_get_next_endpoint)(const struct fwnode_handle *, struct fwnode_handle *); - struct fwnode_handle * (*graph_get_remote_endpoint)(const struct fwnode_handle *); - struct fwnode_handle * (*graph_get_port_parent)(struct fwnode_handle *); - int (*graph_parse_endpoint)(const struct fwnode_handle *, struct fwnode_endpoint *); - void * (*iomap)(struct fwnode_handle *, int); - int (*irq_get)(const struct fwnode_handle *, unsigned int); - int (*add_links)(struct fwnode_handle *); -}; - -struct fwnode_endpoint { - unsigned int port; - unsigned int id; - const struct fwnode_handle *local_fwnode; -}; - -struct fwnode_reference_args { - struct fwnode_handle *fwnode; - unsigned int nargs; - u64 args[16]; -}; - -enum perf_sw_ids { - PERF_COUNT_SW_CPU_CLOCK = 0, - PERF_COUNT_SW_TASK_CLOCK = 1, - PERF_COUNT_SW_PAGE_FAULTS = 2, - PERF_COUNT_SW_CONTEXT_SWITCHES = 3, - PERF_COUNT_SW_CPU_MIGRATIONS = 4, - PERF_COUNT_SW_PAGE_FAULTS_MIN = 5, - PERF_COUNT_SW_PAGE_FAULTS_MAJ = 6, - PERF_COUNT_SW_ALIGNMENT_FAULTS = 7, - PERF_COUNT_SW_EMULATION_FAULTS = 8, - PERF_COUNT_SW_DUMMY = 9, - PERF_COUNT_SW_BPF_OUTPUT = 10, - PERF_COUNT_SW_CGROUP_SWITCHES = 11, - PERF_COUNT_SW_MAX = 12, -}; - -union perf_mem_data_src { - __u64 val; - struct { - __u64 mem_op: 5; - __u64 mem_lvl: 14; - __u64 mem_snoop: 5; - __u64 mem_lock: 2; - __u64 mem_dtlb: 7; - __u64 mem_lvl_num: 4; - __u64 mem_remote: 1; - __u64 mem_snoopx: 2; - __u64 mem_blk: 3; - __u64 mem_hops: 3; - __u64 mem_rsvd: 18; - }; -}; - -struct perf_branch_entry { - __u64 from; - __u64 to; - __u64 mispred: 1; - __u64 predicted: 1; - __u64 in_tx: 1; - __u64 abort: 1; - __u64 cycles: 16; - __u64 type: 4; - __u64 spec: 2; - __u64 new_type: 4; - __u64 priv: 3; - __u64 reserved: 31; -}; - -union perf_sample_weight { - __u64 full; - struct { - __u32 var1_dw; - __u16 var2_w; - __u16 var3_w; - }; -}; - -struct cgroup_namespace { - struct ns_common ns; - struct user_namespace *user_ns; - struct ucounts *ucounts; - struct css_set *root_cset; -}; - -struct nsset; - -struct proc_ns_operations { - const char *name; - const char *real_ns_name; - int type; - struct ns_common * (*get)(struct task_struct *); - void (*put)(struct ns_common *); - int (*install)(struct nsset *, struct ns_common *); - struct user_namespace * (*owner)(struct ns_common *); - struct ns_common * (*get_parent)(struct ns_common *); -}; - -struct kvec { - void *iov_base; - size_t iov_len; -}; - -struct folio_queue { - struct folio_batch vec; - u8 orders[31]; - struct folio_queue *next; - struct folio_queue *prev; - long unsigned int marks; - long unsigned int marks2; - long unsigned int marks3; -}; - -struct ftrace_regs { - long unsigned int regs[9]; - long unsigned int direct_tramp; - long unsigned int fp; - long unsigned int lr; - long unsigned int sp; - long unsigned int pc; -}; - -struct perf_regs { - __u64 abi; - struct pt_regs *regs; -}; - -struct u64_stats_sync {}; - -struct bpf_cgroup_storage; - -struct bpf_prog_array_item { - struct bpf_prog *prog; - union { - struct bpf_cgroup_storage *cgroup_storage[2]; - u64 bpf_cookie; - }; -}; - -struct bpf_prog_array { - struct callback_head rcu; - struct bpf_prog_array_item items[0]; -}; - -struct psi_group_cpu { - unsigned int tasks[4]; - u32 state_mask; - u32 times[7]; - u64 state_start; - long: 64; - u32 times_prev[14]; - long: 64; -}; - -struct psi_group { - struct psi_group *parent; - bool enabled; - struct mutex avgs_lock; - struct psi_group_cpu *pcpu; - u64 avg_total[6]; - u64 avg_last_update; - u64 avg_next_update; - struct delayed_work avgs_work; - struct list_head avg_triggers; - u32 avg_nr_triggers[6]; - u64 total[12]; - long unsigned int avg[18]; - struct task_struct *rtpoll_task; - struct timer_list rtpoll_timer; - wait_queue_head_t rtpoll_wait; - atomic_t rtpoll_wakeup; - atomic_t rtpoll_scheduled; - struct mutex rtpoll_trigger_lock; - struct list_head rtpoll_triggers; - u32 rtpoll_nr_triggers[6]; - u32 rtpoll_states; - u64 rtpoll_min_period; - u64 rtpoll_total[6]; - u64 rtpoll_next_update; - u64 rtpoll_until; -}; - -struct cgroup_taskset; - -struct cftype; - -struct cgroup_subsys { - struct cgroup_subsys_state * (*css_alloc)(struct cgroup_subsys_state *); - int (*css_online)(struct cgroup_subsys_state *); - void (*css_offline)(struct cgroup_subsys_state *); - void (*css_released)(struct cgroup_subsys_state *); - void (*css_free)(struct cgroup_subsys_state *); - void (*css_reset)(struct cgroup_subsys_state *); - void (*css_killed)(struct cgroup_subsys_state *); - void (*css_rstat_flush)(struct cgroup_subsys_state *, int); - int (*css_extra_stat_show)(struct seq_file *, struct cgroup_subsys_state *); - int (*css_local_stat_show)(struct seq_file *, struct cgroup_subsys_state *); - int (*can_attach)(struct cgroup_taskset *); - void (*cancel_attach)(struct cgroup_taskset *); - void (*attach)(struct cgroup_taskset *); - void (*post_attach)(void); - int (*can_fork)(struct task_struct *, struct css_set *); - void (*cancel_fork)(struct task_struct *, struct css_set *); - void (*fork)(struct task_struct *); - void (*exit)(struct task_struct *); - void (*release)(struct task_struct *); - void (*bind)(struct cgroup_subsys_state *); - bool early_init: 1; - bool implicit_on_dfl: 1; - bool threaded: 1; - int id; - const char *name; - const char *legacy_name; - struct cgroup_root *root; - struct idr css_idr; - struct list_head cfts; - struct cftype *dfl_cftypes; - struct cftype *legacy_cftypes; - unsigned int depends_on; -}; - -struct cgroup_rstat_cpu { - struct u64_stats_sync bsync; - struct cgroup_base_stat bstat; - struct cgroup_base_stat last_bstat; - struct cgroup_base_stat subtree_bstat; - struct cgroup_base_stat last_subtree_bstat; - struct cgroup *updated_children; - struct cgroup *updated_next; -}; - -struct cgroup_root { - struct kernfs_root *kf_root; - unsigned int subsys_mask; - int hierarchy_id; - struct list_head root_list; - struct callback_head rcu; - long: 64; - long: 64; - struct cgroup cgrp; - struct cgroup *cgrp_ancestor_storage; - atomic_t nr_cgrps; - unsigned int flags; - char release_agent_path[4096]; - char name[64]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct cftype { - char name[64]; - long unsigned int private; - size_t max_write_len; - unsigned int flags; - unsigned int file_offset; - struct cgroup_subsys *ss; - struct list_head node; - struct kernfs_ops *kf_ops; - int (*open)(struct kernfs_open_file *); - void (*release)(struct kernfs_open_file *); - u64 (*read_u64)(struct cgroup_subsys_state *, struct cftype *); - s64 (*read_s64)(struct cgroup_subsys_state *, struct cftype *); - int (*seq_show)(struct seq_file *, void *); - void * (*seq_start)(struct seq_file *, loff_t *); - void * (*seq_next)(struct seq_file *, void *, loff_t *); - void (*seq_stop)(struct seq_file *, void *); - int (*write_u64)(struct cgroup_subsys_state *, struct cftype *, u64); - int (*write_s64)(struct cgroup_subsys_state *, struct cftype *, s64); - ssize_t (*write)(struct kernfs_open_file *, char *, size_t, loff_t); - __poll_t (*poll)(struct kernfs_open_file *, struct poll_table_struct *); - struct lock_class_key lockdep_key; -}; - -struct bpf_insn { - __u8 code; - __u8 dst_reg: 4; - __u8 src_reg: 4; - __s16 off; - __s32 imm; -}; - -enum bpf_cgroup_iter_order { - BPF_CGROUP_ITER_ORDER_UNSPEC = 0, - BPF_CGROUP_ITER_SELF_ONLY = 1, - BPF_CGROUP_ITER_DESCENDANTS_PRE = 2, - BPF_CGROUP_ITER_DESCENDANTS_POST = 3, - BPF_CGROUP_ITER_ANCESTORS_UP = 4, -}; - -enum bpf_map_type { - BPF_MAP_TYPE_UNSPEC = 0, - BPF_MAP_TYPE_HASH = 1, - BPF_MAP_TYPE_ARRAY = 2, - BPF_MAP_TYPE_PROG_ARRAY = 3, - BPF_MAP_TYPE_PERF_EVENT_ARRAY = 4, - BPF_MAP_TYPE_PERCPU_HASH = 5, - BPF_MAP_TYPE_PERCPU_ARRAY = 6, - BPF_MAP_TYPE_STACK_TRACE = 7, - BPF_MAP_TYPE_CGROUP_ARRAY = 8, - BPF_MAP_TYPE_LRU_HASH = 9, - BPF_MAP_TYPE_LRU_PERCPU_HASH = 10, - BPF_MAP_TYPE_LPM_TRIE = 11, - BPF_MAP_TYPE_ARRAY_OF_MAPS = 12, - BPF_MAP_TYPE_HASH_OF_MAPS = 13, - BPF_MAP_TYPE_DEVMAP = 14, - BPF_MAP_TYPE_SOCKMAP = 15, - BPF_MAP_TYPE_CPUMAP = 16, - BPF_MAP_TYPE_XSKMAP = 17, - BPF_MAP_TYPE_SOCKHASH = 18, - BPF_MAP_TYPE_CGROUP_STORAGE_DEPRECATED = 19, - BPF_MAP_TYPE_CGROUP_STORAGE = 19, - BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 20, - BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE_DEPRECATED = 21, - BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 21, - BPF_MAP_TYPE_QUEUE = 22, - BPF_MAP_TYPE_STACK = 23, - BPF_MAP_TYPE_SK_STORAGE = 24, - BPF_MAP_TYPE_DEVMAP_HASH = 25, - BPF_MAP_TYPE_STRUCT_OPS = 26, - BPF_MAP_TYPE_RINGBUF = 27, - BPF_MAP_TYPE_INODE_STORAGE = 28, - BPF_MAP_TYPE_TASK_STORAGE = 29, - BPF_MAP_TYPE_BLOOM_FILTER = 30, - BPF_MAP_TYPE_USER_RINGBUF = 31, - BPF_MAP_TYPE_CGRP_STORAGE = 32, - BPF_MAP_TYPE_ARENA = 33, - __MAX_BPF_MAP_TYPE = 34, -}; - -enum bpf_prog_type { - BPF_PROG_TYPE_UNSPEC = 0, - BPF_PROG_TYPE_SOCKET_FILTER = 1, - BPF_PROG_TYPE_KPROBE = 2, - BPF_PROG_TYPE_SCHED_CLS = 3, - BPF_PROG_TYPE_SCHED_ACT = 4, - BPF_PROG_TYPE_TRACEPOINT = 5, - BPF_PROG_TYPE_XDP = 6, - BPF_PROG_TYPE_PERF_EVENT = 7, - BPF_PROG_TYPE_CGROUP_SKB = 8, - BPF_PROG_TYPE_CGROUP_SOCK = 9, - BPF_PROG_TYPE_LWT_IN = 10, - BPF_PROG_TYPE_LWT_OUT = 11, - BPF_PROG_TYPE_LWT_XMIT = 12, - BPF_PROG_TYPE_SOCK_OPS = 13, - BPF_PROG_TYPE_SK_SKB = 14, - BPF_PROG_TYPE_CGROUP_DEVICE = 15, - BPF_PROG_TYPE_SK_MSG = 16, - BPF_PROG_TYPE_RAW_TRACEPOINT = 17, - BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 18, - BPF_PROG_TYPE_LWT_SEG6LOCAL = 19, - BPF_PROG_TYPE_LIRC_MODE2 = 20, - BPF_PROG_TYPE_SK_REUSEPORT = 21, - BPF_PROG_TYPE_FLOW_DISSECTOR = 22, - BPF_PROG_TYPE_CGROUP_SYSCTL = 23, - BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE = 24, - BPF_PROG_TYPE_CGROUP_SOCKOPT = 25, - BPF_PROG_TYPE_TRACING = 26, - BPF_PROG_TYPE_STRUCT_OPS = 27, - BPF_PROG_TYPE_EXT = 28, - BPF_PROG_TYPE_LSM = 29, - BPF_PROG_TYPE_SK_LOOKUP = 30, - BPF_PROG_TYPE_SYSCALL = 31, - BPF_PROG_TYPE_NETFILTER = 32, - __MAX_BPF_PROG_TYPE = 33, -}; - -enum bpf_attach_type { - BPF_CGROUP_INET_INGRESS = 0, - BPF_CGROUP_INET_EGRESS = 1, - BPF_CGROUP_INET_SOCK_CREATE = 2, - BPF_CGROUP_SOCK_OPS = 3, - BPF_SK_SKB_STREAM_PARSER = 4, - BPF_SK_SKB_STREAM_VERDICT = 5, - BPF_CGROUP_DEVICE = 6, - BPF_SK_MSG_VERDICT = 7, - BPF_CGROUP_INET4_BIND = 8, - BPF_CGROUP_INET6_BIND = 9, - BPF_CGROUP_INET4_CONNECT = 10, - BPF_CGROUP_INET6_CONNECT = 11, - BPF_CGROUP_INET4_POST_BIND = 12, - BPF_CGROUP_INET6_POST_BIND = 13, - BPF_CGROUP_UDP4_SENDMSG = 14, - BPF_CGROUP_UDP6_SENDMSG = 15, - BPF_LIRC_MODE2 = 16, - BPF_FLOW_DISSECTOR = 17, - BPF_CGROUP_SYSCTL = 18, - BPF_CGROUP_UDP4_RECVMSG = 19, - BPF_CGROUP_UDP6_RECVMSG = 20, - BPF_CGROUP_GETSOCKOPT = 21, - BPF_CGROUP_SETSOCKOPT = 22, - BPF_TRACE_RAW_TP = 23, - BPF_TRACE_FENTRY = 24, - BPF_TRACE_FEXIT = 25, - BPF_MODIFY_RETURN = 26, - BPF_LSM_MAC = 27, - BPF_TRACE_ITER = 28, - BPF_CGROUP_INET4_GETPEERNAME = 29, - BPF_CGROUP_INET6_GETPEERNAME = 30, - BPF_CGROUP_INET4_GETSOCKNAME = 31, - BPF_CGROUP_INET6_GETSOCKNAME = 32, - BPF_XDP_DEVMAP = 33, - BPF_CGROUP_INET_SOCK_RELEASE = 34, - BPF_XDP_CPUMAP = 35, - BPF_SK_LOOKUP = 36, - BPF_XDP = 37, - BPF_SK_SKB_VERDICT = 38, - BPF_SK_REUSEPORT_SELECT = 39, - BPF_SK_REUSEPORT_SELECT_OR_MIGRATE = 40, - BPF_PERF_EVENT = 41, - BPF_TRACE_KPROBE_MULTI = 42, - BPF_LSM_CGROUP = 43, - BPF_STRUCT_OPS = 44, - BPF_NETFILTER = 45, - BPF_TCX_INGRESS = 46, - BPF_TCX_EGRESS = 47, - BPF_TRACE_UPROBE_MULTI = 48, - BPF_CGROUP_UNIX_CONNECT = 49, - BPF_CGROUP_UNIX_SENDMSG = 50, - BPF_CGROUP_UNIX_RECVMSG = 51, - BPF_CGROUP_UNIX_GETPEERNAME = 52, - BPF_CGROUP_UNIX_GETSOCKNAME = 53, - BPF_NETKIT_PRIMARY = 54, - BPF_NETKIT_PEER = 55, - BPF_TRACE_KPROBE_SESSION = 56, - __MAX_BPF_ATTACH_TYPE = 57, -}; - -union bpf_attr { - struct { - __u32 map_type; - __u32 key_size; - __u32 value_size; - __u32 max_entries; - __u32 map_flags; - __u32 inner_map_fd; - __u32 numa_node; - char map_name[16]; - __u32 map_ifindex; - __u32 btf_fd; - __u32 btf_key_type_id; - __u32 btf_value_type_id; - __u32 btf_vmlinux_value_type_id; - __u64 map_extra; - __s32 value_type_btf_obj_fd; - __s32 map_token_fd; - }; - struct { - __u32 map_fd; - __u64 key; - union { - __u64 value; - __u64 next_key; - }; - __u64 flags; - }; - struct { - __u64 in_batch; - __u64 out_batch; - __u64 keys; - __u64 values; - __u32 count; - __u32 map_fd; - __u64 elem_flags; - __u64 flags; - } batch; - struct { - __u32 prog_type; - __u32 insn_cnt; - __u64 insns; - __u64 license; - __u32 log_level; - __u32 log_size; - __u64 log_buf; - __u32 kern_version; - __u32 prog_flags; - char prog_name[16]; - __u32 prog_ifindex; - __u32 expected_attach_type; - __u32 prog_btf_fd; - __u32 func_info_rec_size; - __u64 func_info; - __u32 func_info_cnt; - __u32 line_info_rec_size; - __u64 line_info; - __u32 line_info_cnt; - __u32 attach_btf_id; - union { - __u32 attach_prog_fd; - __u32 attach_btf_obj_fd; - }; - __u32 core_relo_cnt; - __u64 fd_array; - __u64 core_relos; - __u32 core_relo_rec_size; - __u32 log_true_size; - __s32 prog_token_fd; - }; - struct { - __u64 pathname; - __u32 bpf_fd; - __u32 file_flags; - __s32 path_fd; - }; - struct { - union { - __u32 target_fd; - __u32 target_ifindex; - }; - __u32 attach_bpf_fd; - __u32 attach_type; - __u32 attach_flags; - __u32 replace_bpf_fd; - union { - __u32 relative_fd; - __u32 relative_id; - }; - __u64 expected_revision; - }; - struct { - __u32 prog_fd; - __u32 retval; - __u32 data_size_in; - __u32 data_size_out; - __u64 data_in; - __u64 data_out; - __u32 repeat; - __u32 duration; - __u32 ctx_size_in; - __u32 ctx_size_out; - __u64 ctx_in; - __u64 ctx_out; - __u32 flags; - __u32 cpu; - __u32 batch_size; - } test; - struct { - union { - __u32 start_id; - __u32 prog_id; - __u32 map_id; - __u32 btf_id; - __u32 link_id; - }; - __u32 next_id; - __u32 open_flags; - }; - struct { - __u32 bpf_fd; - __u32 info_len; - __u64 info; - } info; - struct { - union { - __u32 target_fd; - __u32 target_ifindex; - }; - __u32 attach_type; - __u32 query_flags; - __u32 attach_flags; - __u64 prog_ids; - union { - __u32 prog_cnt; - __u32 count; - }; - __u64 prog_attach_flags; - __u64 link_ids; - __u64 link_attach_flags; - __u64 revision; - } query; - struct { - __u64 name; - __u32 prog_fd; - __u64 cookie; - } raw_tracepoint; - struct { - __u64 btf; - __u64 btf_log_buf; - __u32 btf_size; - __u32 btf_log_size; - __u32 btf_log_level; - __u32 btf_log_true_size; - __u32 btf_flags; - __s32 btf_token_fd; - }; - struct { - __u32 pid; - __u32 fd; - __u32 flags; - __u32 buf_len; - __u64 buf; - __u32 prog_id; - __u32 fd_type; - __u64 probe_offset; - __u64 probe_addr; - } task_fd_query; - struct { - union { - __u32 prog_fd; - __u32 map_fd; - }; - union { - __u32 target_fd; - __u32 target_ifindex; - }; - __u32 attach_type; - __u32 flags; - union { - __u32 target_btf_id; - struct { - __u64 iter_info; - __u32 iter_info_len; - }; - struct { - __u64 bpf_cookie; - } perf_event; - struct { - __u32 flags; - __u32 cnt; - __u64 syms; - __u64 addrs; - __u64 cookies; - } kprobe_multi; - struct { - __u32 target_btf_id; - __u64 cookie; - } tracing; - struct { - __u32 pf; - __u32 hooknum; - __s32 priority; - __u32 flags; - } netfilter; - struct { - union { - __u32 relative_fd; - __u32 relative_id; - }; - __u64 expected_revision; - } tcx; - struct { - __u64 path; - __u64 offsets; - __u64 ref_ctr_offsets; - __u64 cookies; - __u32 cnt; - __u32 flags; - __u32 pid; - } uprobe_multi; - struct { - union { - __u32 relative_fd; - __u32 relative_id; - }; - __u64 expected_revision; - } netkit; - }; - } link_create; - struct { - __u32 link_fd; - union { - __u32 new_prog_fd; - __u32 new_map_fd; - }; - __u32 flags; - union { - __u32 old_prog_fd; - __u32 old_map_fd; - }; - } link_update; - struct { - __u32 link_fd; - } link_detach; - struct { - __u32 type; - } enable_stats; - struct { - __u32 link_fd; - __u32 flags; - } iter_create; - struct { - __u32 prog_fd; - __u32 map_fd; - __u32 flags; - } prog_bind_map; - struct { - __u32 flags; - __u32 bpffs_fd; - } token_create; -}; - -struct bpf_func_info { - __u32 insn_off; - __u32 type_id; -}; - -struct bpf_line_info { - __u32 insn_off; - __u32 file_name_off; - __u32 line_off; - __u32 line_col; -}; - -struct sock_filter { - __u16 code; - __u8 jt; - __u8 jf; - __u32 k; -}; - -struct btf_type { - __u32 name_off; - __u32 info; - union { - __u32 size; - __u32 type; - }; -}; - -struct bpf_prog_stats; - -struct bpf_prog_aux; - -struct sock_fprog_kern; - -struct bpf_prog { - u16 pages; - u16 jited: 1; - u16 jit_requested: 1; - u16 gpl_compatible: 1; - u16 cb_access: 1; - u16 dst_needed: 1; - u16 blinding_requested: 1; - u16 blinded: 1; - u16 is_func: 1; - u16 kprobe_override: 1; - u16 has_callchain_buf: 1; - u16 enforce_expected_attach_type: 1; - u16 call_get_stack: 1; - u16 call_get_func_ip: 1; - u16 tstamp_type_access: 1; - u16 sleepable: 1; - enum bpf_prog_type type; - enum bpf_attach_type expected_attach_type; - u32 len; - u32 jited_len; - u8 tag[8]; - struct bpf_prog_stats *stats; - int *active; - unsigned int (*bpf_func)(const void *, const struct bpf_insn *); - struct bpf_prog_aux *aux; - struct sock_fprog_kern *orig_prog; - union { - struct { - struct {} __empty_insns; - struct sock_filter insns[0]; - }; - struct { - struct {} __empty_insnsi; - struct bpf_insn insnsi[0]; - }; - }; -}; - -enum btf_field_type { - BPF_SPIN_LOCK = 1, - BPF_TIMER = 2, - BPF_KPTR_UNREF = 4, - BPF_KPTR_REF = 8, - BPF_KPTR_PERCPU = 16, - BPF_KPTR = 28, - BPF_LIST_HEAD = 32, - BPF_LIST_NODE = 64, - BPF_RB_ROOT = 128, - BPF_RB_NODE = 256, - BPF_GRAPH_NODE = 320, - BPF_GRAPH_ROOT = 160, - BPF_REFCOUNT = 512, - BPF_WORKQUEUE = 1024, -}; - -typedef void (*btf_dtor_kfunc_t)(void *); - -struct btf; - -struct btf_field_kptr { - struct btf *btf; - struct module *module; - btf_dtor_kfunc_t dtor; - u32 btf_id; -}; - -struct btf_record; - -struct btf_field_graph_root { - struct btf *btf; - u32 value_btf_id; - u32 node_offset; - struct btf_record *value_rec; -}; - -struct btf_field { - u32 offset; - u32 size; - enum btf_field_type type; - union { - struct btf_field_kptr kptr; - struct btf_field_graph_root graph_root; - }; -}; - -struct btf_record { - u32 cnt; - u32 field_mask; - int spin_lock_off; - int timer_off; - int wq_off; - int refcount_off; - struct btf_field fields[0]; -}; - -struct blk_holder_ops { - void (*mark_dead)(struct block_device *, bool); - void (*sync)(struct block_device *); - int (*freeze)(struct block_device *); - int (*thaw)(struct block_device *); -}; - -typedef void *mempool_alloc_t(gfp_t, void *); - -typedef void mempool_free_t(void *, void *); - -struct mempool_s { - spinlock_t lock; - int min_nr; - int curr_nr; - void **elements; - void *pool_data; - mempool_alloc_t *alloc; - mempool_free_t *free; - wait_queue_head_t wait; -}; - -typedef struct mempool_s mempool_t; - -struct bio_alloc_cache; - -struct bio_set { - struct kmem_cache *bio_slab; - unsigned int front_pad; - struct bio_alloc_cache *cache; - mempool_t bio_pool; - mempool_t bvec_pool; - unsigned int back_pad; - spinlock_t rescue_lock; - struct bio_list rescue_list; - struct work_struct rescue_work; - struct workqueue_struct *rescue_workqueue; - struct hlist_node cpuhp_dead; -}; - -struct mem_cgroup_reclaim_iter { - struct mem_cgroup *position; - atomic_t generation; -}; - -struct lruvec_stats_percpu; - -struct lruvec_stats; - -struct mem_cgroup_per_node { - struct mem_cgroup *memcg; - struct lruvec_stats_percpu *lruvec_stats_percpu; - struct lruvec_stats *lruvec_stats; - struct shrinker_info *shrinker_info; - struct rb_node tree_node; - long unsigned int usage_in_excess; - bool on_tree; - struct lruvec lruvec; - long: 64; - long: 64; - long: 64; - struct cacheline_padding _pad2_; - long unsigned int lru_zone_size[20]; - struct mem_cgroup_reclaim_iter iter; - long: 64; - long: 64; -}; - -struct eventfd_ctx; - -struct mem_cgroup_threshold { - struct eventfd_ctx *eventfd; - long unsigned int threshold; -}; - -struct mem_cgroup_threshold_ary { - int current_threshold; - unsigned int size; - struct mem_cgroup_threshold entries[0]; -}; - -typedef u64 (*bpf_callback_t)(u64, u64, u64, u64, u64); - -struct bpf_iter_aux_info; - -typedef int (*bpf_iter_init_seq_priv_t)(void *, struct bpf_iter_aux_info *); - -enum bpf_iter_task_type { - BPF_TASK_ITER_ALL = 0, - BPF_TASK_ITER_TID = 1, - BPF_TASK_ITER_TGID = 2, -}; - -struct bpf_map; - -struct bpf_iter_aux_info { - struct bpf_map *map; - struct { - struct cgroup *start; - enum bpf_cgroup_iter_order order; - } cgroup; - struct { - enum bpf_iter_task_type type; - u32 pid; - } task; -}; - -typedef void (*bpf_iter_fini_seq_priv_t)(void *); - -struct bpf_iter_seq_info { - const struct seq_operations *seq_ops; - bpf_iter_init_seq_priv_t init_seq_private; - bpf_iter_fini_seq_priv_t fini_seq_private; - u32 seq_priv_size; -}; - -struct bpf_local_storage_map; - -struct bpf_verifier_env; - -struct bpf_func_state; - -struct bpf_map_ops { - int (*map_alloc_check)(union bpf_attr *); - struct bpf_map * (*map_alloc)(union bpf_attr *); - void (*map_release)(struct bpf_map *, struct file *); - void (*map_free)(struct bpf_map *); - int (*map_get_next_key)(struct bpf_map *, void *, void *); - void (*map_release_uref)(struct bpf_map *); - void * (*map_lookup_elem_sys_only)(struct bpf_map *, void *); - int (*map_lookup_batch)(struct bpf_map *, const union bpf_attr *, union bpf_attr *); - int (*map_lookup_and_delete_elem)(struct bpf_map *, void *, void *, u64); - int (*map_lookup_and_delete_batch)(struct bpf_map *, const union bpf_attr *, union bpf_attr *); - int (*map_update_batch)(struct bpf_map *, struct file *, const union bpf_attr *, union bpf_attr *); - int (*map_delete_batch)(struct bpf_map *, const union bpf_attr *, union bpf_attr *); - void * (*map_lookup_elem)(struct bpf_map *, void *); - long int (*map_update_elem)(struct bpf_map *, void *, void *, u64); - long int (*map_delete_elem)(struct bpf_map *, void *); - long int (*map_push_elem)(struct bpf_map *, void *, u64); - long int (*map_pop_elem)(struct bpf_map *, void *); - long int (*map_peek_elem)(struct bpf_map *, void *); - void * (*map_lookup_percpu_elem)(struct bpf_map *, void *, u32); - void * (*map_fd_get_ptr)(struct bpf_map *, struct file *, int); - void (*map_fd_put_ptr)(struct bpf_map *, void *, bool); - int (*map_gen_lookup)(struct bpf_map *, struct bpf_insn *); - u32 (*map_fd_sys_lookup_elem)(void *); - void (*map_seq_show_elem)(struct bpf_map *, void *, struct seq_file *); - int (*map_check_btf)(const struct bpf_map *, const struct btf *, const struct btf_type *, const struct btf_type *); - int (*map_poke_track)(struct bpf_map *, struct bpf_prog_aux *); - void (*map_poke_untrack)(struct bpf_map *, struct bpf_prog_aux *); - void (*map_poke_run)(struct bpf_map *, u32, struct bpf_prog *, struct bpf_prog *); - int (*map_direct_value_addr)(const struct bpf_map *, u64 *, u32); - int (*map_direct_value_meta)(const struct bpf_map *, u64, u32 *); - int (*map_mmap)(struct bpf_map *, struct vm_area_struct *); - __poll_t (*map_poll)(struct bpf_map *, struct file *, struct poll_table_struct *); - long unsigned int (*map_get_unmapped_area)(struct file *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - int (*map_local_storage_charge)(struct bpf_local_storage_map *, void *, u32); - void (*map_local_storage_uncharge)(struct bpf_local_storage_map *, void *, u32); - struct bpf_local_storage ** (*map_owner_storage_ptr)(void *); - long int (*map_redirect)(struct bpf_map *, u64, u64); - bool (*map_meta_equal)(const struct bpf_map *, const struct bpf_map *); - int (*map_set_for_each_callback_args)(struct bpf_verifier_env *, struct bpf_func_state *, struct bpf_func_state *); - long int (*map_for_each_callback)(struct bpf_map *, bpf_callback_t, void *, u64); - u64 (*map_mem_usage)(const struct bpf_map *); - int *map_btf_id; - const struct bpf_iter_seq_info *iter_seq_info; -}; - -struct bpf_map_owner; - -struct bpf_map { - const struct bpf_map_ops *ops; - struct bpf_map *inner_map_meta; - void *security; - enum bpf_map_type map_type; - u32 key_size; - u32 value_size; - u32 max_entries; - u64 map_extra; - u32 map_flags; - u32 id; - struct btf_record *record; - int numa_node; - u32 btf_key_type_id; - u32 btf_value_type_id; - u32 btf_vmlinux_value_type_id; - struct btf *btf; - struct obj_cgroup *objcg; - char name[16]; - struct mutex freeze_mutex; - atomic64_t refcnt; - atomic64_t usercnt; - union { - struct work_struct work; - struct callback_head rcu; - }; - atomic64_t writecnt; - spinlock_t owner_lock; - struct bpf_map_owner *owner; - bool bypass_spec_v1; - bool frozen; - bool free_after_mult_rcu_gp; - bool free_after_rcu_gp; - atomic64_t sleepable_refcnt; - s64 *elem_count; - u64 cookie; -}; - -struct btf_header { - __u16 magic; - __u8 version; - __u8 flags; - __u32 hdr_len; - __u32 type_off; - __u32 type_len; - __u32 str_off; - __u32 str_len; -}; - -struct btf_kfunc_set_tab; - -struct btf_id_dtor_kfunc_tab; - -struct btf_struct_metas; - -struct btf_struct_ops_tab; - -struct btf { - void *data; - struct btf_type **types; - u32 *resolved_ids; - u32 *resolved_sizes; - const char *strings; - void *nohdr_data; - struct btf_header hdr; - u32 nr_types; - u32 types_size; - u32 data_size; - refcount_t refcnt; - u32 id; - struct callback_head rcu; - struct btf_kfunc_set_tab *kfunc_set_tab; - struct btf_id_dtor_kfunc_tab *dtor_kfunc_tab; - struct btf_struct_metas *struct_meta_tab; - struct btf_struct_ops_tab *struct_ops_tab; - struct btf *base_btf; - u32 start_id; - u32 start_str_off; - char name[56]; - bool kernel_btf; - __u32 *base_id_map; -}; - -struct bpf_ksym { - long unsigned int start; - long unsigned int end; - char name[512]; - struct list_head lnode; - struct latch_tree_node tnode; - bool prog; -}; - -struct bpf_ctx_arg_aux; - -struct bpf_trampoline; - -struct bpf_arena; - -struct bpf_jit_poke_descriptor; - -struct bpf_kfunc_desc_tab; - -struct bpf_kfunc_btf_tab; - -struct bpf_prog_ops; - -struct btf_mod_pair; - -struct bpf_token; - -struct bpf_prog_offload; - -struct bpf_func_info_aux; - -struct bpf_prog_aux { - atomic64_t refcnt; - u32 used_map_cnt; - u32 used_btf_cnt; - u32 max_ctx_offset; - u32 max_pkt_offset; - u32 max_tp_access; - u32 stack_depth; - u32 id; - u32 func_cnt; - u32 real_func_cnt; - u32 func_idx; - u32 attach_btf_id; - u32 ctx_arg_info_size; - u32 max_rdonly_access; - u32 max_rdwr_access; - struct btf *attach_btf; - const struct bpf_ctx_arg_aux *ctx_arg_info; - struct mutex dst_mutex; - struct bpf_prog *dst_prog; - struct bpf_trampoline *dst_trampoline; - enum bpf_prog_type saved_dst_prog_type; - enum bpf_attach_type saved_dst_attach_type; - bool verifier_zext; - bool dev_bound; - bool offload_requested; - bool attach_btf_trace; - bool attach_tracing_prog; - bool func_proto_unreliable; - bool tail_call_reachable; - bool xdp_has_frags; - bool exception_cb; - bool exception_boundary; - bool is_extended; - bool changes_pkt_data; - u64 prog_array_member_cnt; - struct mutex ext_mutex; - struct bpf_arena *arena; - const struct btf_type *attach_func_proto; - const char *attach_func_name; - struct bpf_prog **func; - void *jit_data; - struct bpf_jit_poke_descriptor *poke_tab; - struct bpf_kfunc_desc_tab *kfunc_tab; - struct bpf_kfunc_btf_tab *kfunc_btf_tab; - u32 size_poke_tab; - struct bpf_ksym ksym; - const struct bpf_prog_ops *ops; - struct bpf_map **used_maps; - struct mutex used_maps_mutex; - struct btf_mod_pair *used_btfs; - struct bpf_prog *prog; - struct user_struct *user; - u64 load_time; - u32 verified_insns; - int cgroup_atype; - struct bpf_map *cgroup_storage[2]; - char name[16]; - u64 (*bpf_exception_cb)(u64, u64, u64, u64, u64); - void *security; - struct bpf_token *token; - struct bpf_prog_offload *offload; - struct btf *btf; - struct bpf_func_info *func_info; - struct bpf_func_info_aux *func_info_aux; - struct bpf_line_info *linfo; - void **jited_linfo; - u32 func_info_cnt; - u32 nr_linfo; - u32 linfo_idx; - struct module *mod; - u32 num_exentries; - struct exception_table_entry *extable; - union { - struct work_struct work; - struct callback_head rcu; - }; -}; - -struct bpf_map_owner { - enum bpf_prog_type type; - bool jited; - bool xdp_has_frags; - u64 storage_cookie[2]; - const struct btf_type *attach_func_proto; - enum bpf_attach_type expected_attach_type; -}; - -enum bpf_reg_type { - NOT_INIT = 0, - SCALAR_VALUE = 1, - PTR_TO_CTX = 2, - CONST_PTR_TO_MAP = 3, - PTR_TO_MAP_VALUE = 4, - PTR_TO_MAP_KEY = 5, - PTR_TO_STACK = 6, - PTR_TO_PACKET_META = 7, - PTR_TO_PACKET = 8, - PTR_TO_PACKET_END = 9, - PTR_TO_FLOW_KEYS = 10, - PTR_TO_SOCKET = 11, - PTR_TO_SOCK_COMMON = 12, - PTR_TO_TCP_SOCK = 13, - PTR_TO_TP_BUFFER = 14, - PTR_TO_XDP_SOCK = 15, - PTR_TO_BTF_ID = 16, - PTR_TO_MEM = 17, - PTR_TO_ARENA = 18, - PTR_TO_BUF = 19, - PTR_TO_FUNC = 20, - CONST_PTR_TO_DYNPTR = 21, - __BPF_REG_TYPE_MAX = 22, - PTR_TO_MAP_VALUE_OR_NULL = 260, - PTR_TO_SOCKET_OR_NULL = 267, - PTR_TO_SOCK_COMMON_OR_NULL = 268, - PTR_TO_TCP_SOCK_OR_NULL = 269, - PTR_TO_BTF_ID_OR_NULL = 272, - __BPF_REG_TYPE_LIMIT = 134217727, -}; - -struct bpf_prog_ops { - int (*test_run)(struct bpf_prog *, const union bpf_attr *, union bpf_attr *); -}; - -struct net_device; - -struct bpf_offload_dev; - -struct bpf_prog_offload { - struct bpf_prog *prog; - struct net_device *netdev; - struct bpf_offload_dev *offdev; - void *dev_priv; - struct list_head offloads; - bool dev_state; - bool opt_failed; - void *jited_image; - u32 jited_len; -}; - -struct btf_func_model { - u8 ret_size; - u8 ret_flags; - u8 nr_args; - u8 arg_size[12]; - u8 arg_flags[12]; -}; - -struct bpf_tramp_image { - void *image; - int size; - struct bpf_ksym ksym; - struct percpu_ref pcref; - void *ip_after_call; - void *ip_epilogue; - union { - struct callback_head rcu; - struct work_struct work; - }; -}; - -struct bpf_trampoline { - struct hlist_node hlist; - struct ftrace_ops *fops; - struct mutex mutex; - refcount_t refcnt; - u32 flags; - u64 key; - struct { - struct btf_func_model model; - void *addr; - bool ftrace_managed; - } func; - struct bpf_prog *extension_prog; - struct hlist_head progs_hlist[3]; - int progs_cnt[3]; - struct bpf_tramp_image *cur_image; -}; - -struct bpf_func_info_aux { - u16 linkage; - bool unreliable; - bool called: 1; - bool verified: 1; -}; - -struct bpf_jit_poke_descriptor { - void *tailcall_target; - void *tailcall_bypass; - void *bypass_addr; - void *aux; - union { - struct { - struct bpf_map *map; - u32 key; - } tail_call; - }; - bool tailcall_target_stable; - u8 adj_off; - u16 reason; - u32 insn_idx; -}; - -struct bpf_ctx_arg_aux { - u32 offset; - enum bpf_reg_type reg_type; - struct btf *btf; - u32 btf_id; -}; - -struct btf_mod_pair { - struct btf *btf; - struct module *module; -}; - -struct bpf_token { - struct work_struct work; - atomic64_t refcnt; - struct user_namespace *userns; - u64 allowed_cmds; - u64 allowed_maps; - u64 allowed_progs; - u64 allowed_attachs; - void *security; -}; - -struct perf_callchain_entry { - __u64 nr; - __u64 ip[0]; -}; - -typedef long unsigned int (*perf_copy_f)(void *, const void *, long unsigned int, long unsigned int); - -struct perf_raw_frag { - union { - struct perf_raw_frag *next; - long unsigned int pad; - }; - perf_copy_f copy; - void *data; - u32 size; -} __attribute__((packed)); - -struct perf_raw_record { - struct perf_raw_frag frag; - u32 size; -}; - -struct perf_branch_stack { - __u64 nr; - __u64 hw_idx; - struct perf_branch_entry entries[0]; -}; - -struct perf_cpu_pmu_context; - -struct perf_output_handle; - -struct pmu { - struct list_head entry; - struct module *module; - struct device *dev; - struct device *parent; - const struct attribute_group **attr_groups; - const struct attribute_group **attr_update; - const char *name; - int type; - int capabilities; - unsigned int scope; - int *pmu_disable_count; - struct perf_cpu_pmu_context *cpu_pmu_context; - atomic_t exclusive_cnt; - int task_ctx_nr; - int hrtimer_interval_ms; - unsigned int nr_addr_filters; - void (*pmu_enable)(struct pmu *); - void (*pmu_disable)(struct pmu *); - int (*event_init)(struct perf_event *); - void (*event_mapped)(struct perf_event *, struct mm_struct *); - void (*event_unmapped)(struct perf_event *, struct mm_struct *); - int (*add)(struct perf_event *, int); - void (*del)(struct perf_event *, int); - void (*start)(struct perf_event *, int); - void (*stop)(struct perf_event *, int); - void (*read)(struct perf_event *); - void (*start_txn)(struct pmu *, unsigned int); - int (*commit_txn)(struct pmu *); - void (*cancel_txn)(struct pmu *); - int (*event_idx)(struct perf_event *); - void (*sched_task)(struct perf_event_pmu_context *, bool); - struct kmem_cache *task_ctx_cache; - void (*swap_task_ctx)(struct perf_event_pmu_context *, struct perf_event_pmu_context *); - void * (*setup_aux)(struct perf_event *, void **, int, bool); - void (*free_aux)(void *); - long int (*snapshot_aux)(struct perf_event *, struct perf_output_handle *, long unsigned int); - int (*addr_filters_validate)(struct list_head *); - void (*addr_filters_sync)(struct perf_event *); - int (*aux_output_match)(struct perf_event *); - bool (*filter)(struct pmu *, int); - int (*check_period)(struct perf_event *, u64); -}; - -struct perf_event_pmu_context { - struct pmu *pmu; - struct perf_event_context *ctx; - struct list_head pmu_ctx_entry; - struct list_head pinned_active; - struct list_head flexible_active; - unsigned int embedded: 1; - unsigned int nr_events; - unsigned int nr_cgroups; - unsigned int nr_freq; - atomic_t refcount; - struct callback_head callback_head; - void *task_ctx_data; - int rotate_necessary; -}; - -struct perf_cpu_pmu_context { - struct perf_event_pmu_context epc; - struct perf_event_pmu_context *task_epc; - struct list_head sched_cb_entry; - int sched_cb_usage; - int active_oncpu; - int exclusive; - raw_spinlock_t hrtimer_lock; - struct hrtimer hrtimer; - ktime_t hrtimer_interval; - unsigned int hrtimer_active; -}; - -struct perf_output_handle { - struct perf_event *event; - struct perf_buffer *rb; - long unsigned int wakeup; - long unsigned int size; - union { - u64 flags; - u64 aux_flags; - struct { - u64 skip_read: 1; - }; - }; - union { - void *addr; - long unsigned int head; - }; - int page; -}; - -struct perf_addr_filter_range { - long unsigned int start; - long unsigned int size; -}; - -struct perf_sample_data { - u64 sample_flags; - u64 period; - u64 dyn_size; - u64 type; - struct { - u32 pid; - u32 tid; - } tid_entry; - u64 time; - u64 id; - struct { - u32 cpu; - u32 reserved; - } cpu_entry; - u64 ip; - struct perf_callchain_entry *callchain; - struct perf_raw_record *raw; - struct perf_branch_stack *br_stack; - u64 *br_stack_cntr; - union perf_sample_weight weight; - union perf_mem_data_src data_src; - u64 txn; - struct perf_regs regs_user; - struct perf_regs regs_intr; - u64 stack_user_size; - u64 stream_id; - u64 cgroup; - u64 addr; - u64 phys_addr; - u64 data_page_size; - u64 code_page_size; - u64 aux_size; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct perf_cgroup_info; - -struct perf_cgroup { - struct cgroup_subsys_state css; - struct perf_cgroup_info *info; -}; - -struct perf_cgroup_info { - u64 time; - u64 timestamp; - u64 timeoffset; - int active; -}; - -struct trace_entry { - short unsigned int type; - unsigned char flags; - unsigned char preempt_count; - int pid; -}; - -struct trace_array; - -struct tracer; - -struct array_buffer; - -struct ring_buffer_iter; - -struct trace_iterator { - struct trace_array *tr; - struct tracer *trace; - struct array_buffer *array_buffer; - void *private; - int cpu_file; - struct mutex mutex; - struct ring_buffer_iter **buffer_iter; - long unsigned int iter_flags; - void *temp; - unsigned int temp_size; - char *fmt; - unsigned int fmt_size; - atomic_t wait_index; - struct trace_seq tmp_seq; - cpumask_var_t started; - bool closed; - bool snapshot; - struct trace_seq seq; - struct trace_entry *ent; - long unsigned int lost_events; - int leftover; - int ent_size; - int cpu; - u64 ts; - loff_t pos; - long int idx; -}; - -enum print_line_t { - TRACE_TYPE_PARTIAL_LINE = 0, - TRACE_TYPE_HANDLED = 1, - TRACE_TYPE_UNHANDLED = 2, - TRACE_TYPE_NO_CONSUME = 3, -}; - -typedef enum print_line_t (*trace_print_func)(struct trace_iterator *, int, struct trace_event *); - -struct trace_event_functions { - trace_print_func trace; - trace_print_func raw; - trace_print_func hex; - trace_print_func binary; -}; - -enum trace_reg { - TRACE_REG_REGISTER = 0, - TRACE_REG_UNREGISTER = 1, - TRACE_REG_PERF_REGISTER = 2, - TRACE_REG_PERF_UNREGISTER = 3, - TRACE_REG_PERF_OPEN = 4, - TRACE_REG_PERF_CLOSE = 5, - TRACE_REG_PERF_ADD = 6, - TRACE_REG_PERF_DEL = 7, -}; - -struct trace_event_fields { - const char *type; - union { - struct { - const char *name; - const int size; - const int align; - const unsigned int is_signed: 1; - unsigned int needs_test: 1; - const int filter_type; - const int len; - }; - int (*define_fields)(struct trace_event_call *); - }; -}; - -struct trace_event_class { - const char *system; - void *probe; - void *perf_probe; - int (*reg)(struct trace_event_call *, enum trace_reg, void *); - struct trace_event_fields *fields_array; - struct list_head * (*get_fields)(struct trace_event_call *); - struct list_head fields; - int (*raw_init)(struct trace_event_call *); -}; - -enum { - TRACE_EVENT_FL_FILTERED_BIT = 0, - TRACE_EVENT_FL_CAP_ANY_BIT = 1, - TRACE_EVENT_FL_NO_SET_FILTER_BIT = 2, - TRACE_EVENT_FL_IGNORE_ENABLE_BIT = 3, - TRACE_EVENT_FL_TRACEPOINT_BIT = 4, - TRACE_EVENT_FL_DYNAMIC_BIT = 5, - TRACE_EVENT_FL_KPROBE_BIT = 6, - TRACE_EVENT_FL_UPROBE_BIT = 7, - TRACE_EVENT_FL_EPROBE_BIT = 8, - TRACE_EVENT_FL_FPROBE_BIT = 9, - TRACE_EVENT_FL_CUSTOM_BIT = 10, - TRACE_EVENT_FL_TEST_STR_BIT = 11, -}; - -enum { - TRACE_EVENT_FL_FILTERED = 1, - TRACE_EVENT_FL_CAP_ANY = 2, - TRACE_EVENT_FL_NO_SET_FILTER = 4, - TRACE_EVENT_FL_IGNORE_ENABLE = 8, - TRACE_EVENT_FL_TRACEPOINT = 16, - TRACE_EVENT_FL_DYNAMIC = 32, - TRACE_EVENT_FL_KPROBE = 64, - TRACE_EVENT_FL_UPROBE = 128, - TRACE_EVENT_FL_EPROBE = 256, - TRACE_EVENT_FL_FPROBE = 512, - TRACE_EVENT_FL_CUSTOM = 1024, - TRACE_EVENT_FL_TEST_STR = 2048, -}; - -enum { - EVENT_FILE_FL_ENABLED_BIT = 0, - EVENT_FILE_FL_RECORDED_CMD_BIT = 1, - EVENT_FILE_FL_RECORDED_TGID_BIT = 2, - EVENT_FILE_FL_FILTERED_BIT = 3, - EVENT_FILE_FL_NO_SET_FILTER_BIT = 4, - EVENT_FILE_FL_SOFT_MODE_BIT = 5, - EVENT_FILE_FL_SOFT_DISABLED_BIT = 6, - EVENT_FILE_FL_TRIGGER_MODE_BIT = 7, - EVENT_FILE_FL_TRIGGER_COND_BIT = 8, - EVENT_FILE_FL_PID_FILTER_BIT = 9, - EVENT_FILE_FL_WAS_ENABLED_BIT = 10, - EVENT_FILE_FL_FREED_BIT = 11, -}; - -struct syscall_metadata { - const char *name; - int syscall_nr; - int nb_args; - const char **types; - const char **args; - struct list_head enter_fields; - struct trace_event_call *enter_event; - struct trace_event_call *exit_event; -}; - -typedef long int (*syscall_fn_t)(const struct pt_regs *); - -enum zone_stat_item { - NR_FREE_PAGES = 0, - NR_ZONE_LRU_BASE = 1, - NR_ZONE_INACTIVE_ANON = 1, - NR_ZONE_ACTIVE_ANON = 2, - NR_ZONE_INACTIVE_FILE = 3, - NR_ZONE_ACTIVE_FILE = 4, - NR_ZONE_UNEVICTABLE = 5, - NR_ZONE_WRITE_PENDING = 6, - NR_MLOCK = 7, - NR_BOUNCE = 8, - NR_ZSPAGES = 9, - NR_FREE_CMA_PAGES = 10, - NR_VM_ZONE_STAT_ITEMS = 11, -}; - -enum node_stat_item { - NR_LRU_BASE = 0, - NR_INACTIVE_ANON = 0, - NR_ACTIVE_ANON = 1, - NR_INACTIVE_FILE = 2, - NR_ACTIVE_FILE = 3, - NR_UNEVICTABLE = 4, - NR_SLAB_RECLAIMABLE_B = 5, - NR_SLAB_UNRECLAIMABLE_B = 6, - NR_ISOLATED_ANON = 7, - NR_ISOLATED_FILE = 8, - WORKINGSET_NODES = 9, - WORKINGSET_REFAULT_BASE = 10, - WORKINGSET_REFAULT_ANON = 10, - WORKINGSET_REFAULT_FILE = 11, - WORKINGSET_ACTIVATE_BASE = 12, - WORKINGSET_ACTIVATE_ANON = 12, - WORKINGSET_ACTIVATE_FILE = 13, - WORKINGSET_RESTORE_BASE = 14, - WORKINGSET_RESTORE_ANON = 14, - WORKINGSET_RESTORE_FILE = 15, - WORKINGSET_NODERECLAIM = 16, - NR_ANON_MAPPED = 17, - NR_FILE_MAPPED = 18, - NR_FILE_PAGES = 19, - NR_FILE_DIRTY = 20, - NR_WRITEBACK = 21, - NR_WRITEBACK_TEMP = 22, - NR_SHMEM = 23, - NR_SHMEM_THPS = 24, - NR_SHMEM_PMDMAPPED = 25, - NR_FILE_THPS = 26, - NR_FILE_PMDMAPPED = 27, - NR_ANON_THPS = 28, - NR_VMSCAN_WRITE = 29, - NR_VMSCAN_IMMEDIATE = 30, - NR_DIRTIED = 31, - NR_WRITTEN = 32, - NR_THROTTLED_WRITTEN = 33, - NR_KERNEL_MISC_RECLAIMABLE = 34, - NR_FOLL_PIN_ACQUIRED = 35, - NR_FOLL_PIN_RELEASED = 36, - NR_KERNEL_STACK_KB = 37, - NR_PAGETABLE = 38, - NR_SECONDARY_PAGETABLE = 39, - NR_SWAPCACHE = 40, - PGDEMOTE_KSWAPD = 41, - PGDEMOTE_DIRECT = 42, - PGDEMOTE_KHUGEPAGED = 43, - NR_VM_NODE_STAT_ITEMS = 44, -}; - -struct cdev { - struct kobject kobj; - struct module *owner; - const struct file_operations *ops; - struct list_head list; - dev_t dev; - unsigned int count; -}; - -typedef u32 phandle; - -struct property; - -struct device_node { - const char *name; - phandle phandle; - const char *full_name; - struct fwnode_handle fwnode; - struct property *properties; - struct property *deadprops; - struct device_node *parent; - struct device_node *child; - struct device_node *sibling; - struct kobject kobj; - long unsigned int _flags; - void *data; -}; - -struct property { - char *name; - int length; - void *value; - struct property *next; - long unsigned int _flags; - struct bin_attribute attr; -}; - -enum { - HI_SOFTIRQ = 0, - TIMER_SOFTIRQ = 1, - NET_TX_SOFTIRQ = 2, - NET_RX_SOFTIRQ = 3, - BLOCK_SOFTIRQ = 4, - IRQ_POLL_SOFTIRQ = 5, - TASKLET_SOFTIRQ = 6, - SCHED_SOFTIRQ = 7, - HRTIMER_SOFTIRQ = 8, - RCU_SOFTIRQ = 9, - NR_SOFTIRQS = 10, -}; - -enum mthp_stat_item { - MTHP_STAT_ANON_FAULT_ALLOC = 0, - MTHP_STAT_ANON_FAULT_FALLBACK = 1, - MTHP_STAT_ANON_FAULT_FALLBACK_CHARGE = 2, - MTHP_STAT_SWPOUT = 3, - MTHP_STAT_SWPOUT_FALLBACK = 4, - MTHP_STAT_SHMEM_ALLOC = 5, - MTHP_STAT_SHMEM_FALLBACK = 6, - MTHP_STAT_SHMEM_FALLBACK_CHARGE = 7, - MTHP_STAT_SPLIT = 8, - MTHP_STAT_SPLIT_FAILED = 9, - MTHP_STAT_SPLIT_DEFERRED = 10, - MTHP_STAT_NR_ANON = 11, - MTHP_STAT_NR_ANON_PARTIALLY_MAPPED = 12, - __MTHP_STAT_COUNT = 13, -}; - -enum vm_event_item { - PGPGIN = 0, - PGPGOUT = 1, - PSWPIN = 2, - PSWPOUT = 3, - PGALLOC_DMA = 4, - PGALLOC_DMA32 = 5, - PGALLOC_NORMAL = 6, - PGALLOC_MOVABLE = 7, - ALLOCSTALL_DMA = 8, - ALLOCSTALL_DMA32 = 9, - ALLOCSTALL_NORMAL = 10, - ALLOCSTALL_MOVABLE = 11, - PGSCAN_SKIP_DMA = 12, - PGSCAN_SKIP_DMA32 = 13, - PGSCAN_SKIP_NORMAL = 14, - PGSCAN_SKIP_MOVABLE = 15, - PGFREE = 16, - PGACTIVATE = 17, - PGDEACTIVATE = 18, - PGLAZYFREE = 19, - PGFAULT = 20, - PGMAJFAULT = 21, - PGLAZYFREED = 22, - PGREFILL = 23, - PGREUSE = 24, - PGSTEAL_KSWAPD = 25, - PGSTEAL_DIRECT = 26, - PGSTEAL_KHUGEPAGED = 27, - PGSCAN_KSWAPD = 28, - PGSCAN_DIRECT = 29, - PGSCAN_KHUGEPAGED = 30, - PGSCAN_DIRECT_THROTTLE = 31, - PGSCAN_ANON = 32, - PGSCAN_FILE = 33, - PGSTEAL_ANON = 34, - PGSTEAL_FILE = 35, - PGINODESTEAL = 36, - SLABS_SCANNED = 37, - KSWAPD_INODESTEAL = 38, - KSWAPD_LOW_WMARK_HIT_QUICKLY = 39, - KSWAPD_HIGH_WMARK_HIT_QUICKLY = 40, - PAGEOUTRUN = 41, - PGROTATED = 42, - DROP_PAGECACHE = 43, - DROP_SLAB = 44, - OOM_KILL = 45, - PGMIGRATE_SUCCESS = 46, - PGMIGRATE_FAIL = 47, - THP_MIGRATION_SUCCESS = 48, - THP_MIGRATION_FAIL = 49, - THP_MIGRATION_SPLIT = 50, - COMPACTMIGRATE_SCANNED = 51, - COMPACTFREE_SCANNED = 52, - COMPACTISOLATED = 53, - COMPACTSTALL = 54, - COMPACTFAIL = 55, - COMPACTSUCCESS = 56, - KCOMPACTD_WAKE = 57, - KCOMPACTD_MIGRATE_SCANNED = 58, - KCOMPACTD_FREE_SCANNED = 59, - HTLB_BUDDY_PGALLOC = 60, - HTLB_BUDDY_PGALLOC_FAIL = 61, - UNEVICTABLE_PGCULLED = 62, - UNEVICTABLE_PGSCANNED = 63, - UNEVICTABLE_PGRESCUED = 64, - UNEVICTABLE_PGMLOCKED = 65, - UNEVICTABLE_PGMUNLOCKED = 66, - UNEVICTABLE_PGCLEARED = 67, - UNEVICTABLE_PGSTRANDED = 68, - THP_FAULT_ALLOC = 69, - THP_FAULT_FALLBACK = 70, - THP_FAULT_FALLBACK_CHARGE = 71, - THP_COLLAPSE_ALLOC = 72, - THP_COLLAPSE_ALLOC_FAILED = 73, - THP_FILE_ALLOC = 74, - THP_FILE_FALLBACK = 75, - THP_FILE_FALLBACK_CHARGE = 76, - THP_FILE_MAPPED = 77, - THP_SPLIT_PAGE = 78, - THP_SPLIT_PAGE_FAILED = 79, - THP_DEFERRED_SPLIT_PAGE = 80, - THP_UNDERUSED_SPLIT_PAGE = 81, - THP_SPLIT_PMD = 82, - THP_SCAN_EXCEED_NONE_PTE = 83, - THP_SCAN_EXCEED_SWAP_PTE = 84, - THP_SCAN_EXCEED_SHARED_PTE = 85, - THP_ZERO_PAGE_ALLOC = 86, - THP_ZERO_PAGE_ALLOC_FAILED = 87, - THP_SWPOUT = 88, - THP_SWPOUT_FALLBACK = 89, - BALLOON_INFLATE = 90, - BALLOON_DEFLATE = 91, - BALLOON_MIGRATE = 92, - SWAP_RA = 93, - SWAP_RA_HIT = 94, - SWPIN_ZERO = 95, - SWPOUT_ZERO = 96, - KSM_SWPIN_COPY = 97, - COW_KSM = 98, - ZSWPIN = 99, - ZSWPOUT = 100, - ZSWPWB = 101, - NR_VM_EVENT_ITEMS = 102, -}; - -struct cpu_operations { - const char *name; - int (*cpu_init)(unsigned int); - int (*cpu_prepare)(unsigned int); - int (*cpu_boot)(unsigned int); - void (*cpu_postboot)(void); -}; - -typedef long unsigned int uintptr_t; - -struct alt_instr { - s32 orig_offset; - s32 alt_offset; - u16 cpucap; - u8 orig_len; - u8 alt_len; -}; - -typedef void (*alternative_cb_t)(struct alt_instr *, __le32 *, __le32 *, int); - -enum aarch64_insn_hint_cr_op { - AARCH64_INSN_HINT_NOP = 0, - AARCH64_INSN_HINT_YIELD = 32, - AARCH64_INSN_HINT_WFE = 64, - AARCH64_INSN_HINT_WFI = 96, - AARCH64_INSN_HINT_SEV = 128, - AARCH64_INSN_HINT_SEVL = 160, - AARCH64_INSN_HINT_XPACLRI = 224, - AARCH64_INSN_HINT_PACIA_1716 = 256, - AARCH64_INSN_HINT_PACIB_1716 = 320, - AARCH64_INSN_HINT_AUTIA_1716 = 384, - AARCH64_INSN_HINT_AUTIB_1716 = 448, - AARCH64_INSN_HINT_PACIAZ = 768, - AARCH64_INSN_HINT_PACIASP = 800, - AARCH64_INSN_HINT_PACIBZ = 832, - AARCH64_INSN_HINT_PACIBSP = 864, - AARCH64_INSN_HINT_AUTIAZ = 896, - AARCH64_INSN_HINT_AUTIASP = 928, - AARCH64_INSN_HINT_AUTIBZ = 960, - AARCH64_INSN_HINT_AUTIBSP = 992, - AARCH64_INSN_HINT_ESB = 512, - AARCH64_INSN_HINT_PSB = 544, - AARCH64_INSN_HINT_TSB = 576, - AARCH64_INSN_HINT_CSDB = 640, - AARCH64_INSN_HINT_CLEARBHB = 704, - AARCH64_INSN_HINT_BTI = 1024, - AARCH64_INSN_HINT_BTIC = 1088, - AARCH64_INSN_HINT_BTIJ = 1152, - AARCH64_INSN_HINT_BTIJC = 1216, -}; - -enum ftr_type { - FTR_EXACT = 0, - FTR_LOWER_SAFE = 1, - FTR_HIGHER_SAFE = 2, - FTR_HIGHER_OR_ZERO_SAFE = 3, -}; - -struct arm64_ftr_bits { - bool sign; - bool visible; - bool strict; - enum ftr_type type; - u8 shift; - u8 width; - s64 safe_val; -}; - -struct arm64_ftr_override { - u64 val; - u64 mask; -}; - -struct arm64_ftr_reg { - const char *name; - u64 strict_mask; - u64 user_mask; - u64 sys_val; - u64 user_val; - struct arm64_ftr_override *override; - const struct arm64_ftr_bits *ftr_bits; -}; - -typedef __u64 Elf64_Off; - -struct elf64_hdr { - unsigned char e_ident[16]; - Elf64_Half e_type; - Elf64_Half e_machine; - Elf64_Word e_version; - Elf64_Addr e_entry; - Elf64_Off e_phoff; - Elf64_Off e_shoff; - Elf64_Word e_flags; - Elf64_Half e_ehsize; - Elf64_Half e_phentsize; - Elf64_Half e_phnum; - Elf64_Half e_shentsize; - Elf64_Half e_shnum; - Elf64_Half e_shstrndx; -}; - -typedef struct elf64_hdr Elf64_Ehdr; - -struct elf64_shdr { - Elf64_Word sh_name; - Elf64_Word sh_type; - Elf64_Xword sh_flags; - Elf64_Addr sh_addr; - Elf64_Off sh_offset; - Elf64_Xword sh_size; - Elf64_Word sh_link; - Elf64_Word sh_info; - Elf64_Xword sh_addralign; - Elf64_Xword sh_entsize; -}; - -typedef struct elf64_shdr Elf64_Shdr; - -typedef int (*cpu_stop_fn_t)(void *); - -struct alt_region { - struct alt_instr *begin; - struct alt_instr *end; -}; - -enum { - ___GFP_DMA_BIT = 0, - ___GFP_HIGHMEM_BIT = 1, - ___GFP_DMA32_BIT = 2, - ___GFP_MOVABLE_BIT = 3, - ___GFP_RECLAIMABLE_BIT = 4, - ___GFP_HIGH_BIT = 5, - ___GFP_IO_BIT = 6, - ___GFP_FS_BIT = 7, - ___GFP_ZERO_BIT = 8, - ___GFP_UNUSED_BIT = 9, - ___GFP_DIRECT_RECLAIM_BIT = 10, - ___GFP_KSWAPD_RECLAIM_BIT = 11, - ___GFP_WRITE_BIT = 12, - ___GFP_NOWARN_BIT = 13, - ___GFP_RETRY_MAYFAIL_BIT = 14, - ___GFP_NOFAIL_BIT = 15, - ___GFP_NORETRY_BIT = 16, - ___GFP_MEMALLOC_BIT = 17, - ___GFP_COMP_BIT = 18, - ___GFP_NOMEMALLOC_BIT = 19, - ___GFP_HARDWALL_BIT = 20, - ___GFP_THISNODE_BIT = 21, - ___GFP_ACCOUNT_BIT = 22, - ___GFP_ZEROTAGS_BIT = 23, - ___GFP_NO_OBJ_EXT_BIT = 24, - ___GFP_LAST_BIT = 25, -}; - -struct plist_head { - struct list_head node_list; -}; - -struct notifier_block; - -typedef int (*notifier_fn_t)(struct notifier_block *, long unsigned int, void *); - -struct notifier_block { - notifier_fn_t notifier_call; - struct notifier_block *next; - int priority; -}; - -struct blocking_notifier_head { - struct rw_semaphore rwsem; - struct notifier_block *head; -}; - -enum scale_freq_source { - SCALE_FREQ_SOURCE_CPUFREQ = 0, - SCALE_FREQ_SOURCE_ARCH = 1, - SCALE_FREQ_SOURCE_CPPC = 2, -}; - -struct scale_freq_data { - enum scale_freq_source source; - void (*set_freq_scale)(void); -}; - -enum pm_qos_type { - PM_QOS_UNITIALIZED = 0, - PM_QOS_MAX = 1, - PM_QOS_MIN = 2, -}; - -struct pm_qos_constraints { - struct plist_head list; - s32 target_value; - s32 default_value; - s32 no_constraint_value; - enum pm_qos_type type; - struct blocking_notifier_head *notifiers; -}; - -enum freq_qos_req_type { - FREQ_QOS_MIN = 1, - FREQ_QOS_MAX = 2, -}; - -struct freq_constraints { - struct pm_qos_constraints min_freq; - struct blocking_notifier_head min_freq_notifiers; - struct pm_qos_constraints max_freq; - struct blocking_notifier_head max_freq_notifiers; -}; - -struct freq_qos_request { - enum freq_qos_req_type type; - struct plist_node pnode; - struct freq_constraints *qos; -}; - -enum cpufreq_table_sorting { - CPUFREQ_TABLE_UNSORTED = 0, - CPUFREQ_TABLE_SORTED_ASCENDING = 1, - CPUFREQ_TABLE_SORTED_DESCENDING = 2, -}; - -struct cpufreq_cpuinfo { - unsigned int max_freq; - unsigned int min_freq; - unsigned int transition_latency; -}; - -struct cpufreq_stats; - -struct thermal_cooling_device; - -struct clk; - -struct cpufreq_governor; - -struct cpufreq_frequency_table; - -struct cpufreq_policy { - cpumask_var_t cpus; - cpumask_var_t related_cpus; - cpumask_var_t real_cpus; - unsigned int shared_type; - unsigned int cpu; - struct clk *clk; - struct cpufreq_cpuinfo cpuinfo; - unsigned int min; - unsigned int max; - unsigned int cur; - unsigned int suspend_freq; - unsigned int policy; - unsigned int last_policy; - struct cpufreq_governor *governor; - void *governor_data; - char last_governor[16]; - struct work_struct update; - struct freq_constraints constraints; - struct freq_qos_request *min_freq_req; - struct freq_qos_request *max_freq_req; - struct cpufreq_frequency_table *freq_table; - enum cpufreq_table_sorting freq_table_sorted; - struct list_head policy_list; - struct kobject kobj; - struct completion kobj_unregister; - struct rw_semaphore rwsem; - bool fast_switch_possible; - bool fast_switch_enabled; - bool strict_target; - bool efficiencies_available; - unsigned int transition_delay_us; - bool dvfs_possible_from_any_cpu; - bool boost_enabled; - unsigned int cached_target_freq; - unsigned int cached_resolved_idx; - bool transition_ongoing; - spinlock_t transition_lock; - wait_queue_head_t transition_wait; - struct task_struct *transition_task; - struct cpufreq_stats *stats; - void *driver_data; - struct thermal_cooling_device *cdev; - struct notifier_block nb_min; - struct notifier_block nb_max; -}; - -struct cpufreq_governor { - char name[16]; - int (*init)(struct cpufreq_policy *); - void (*exit)(struct cpufreq_policy *); - int (*start)(struct cpufreq_policy *); - void (*stop)(struct cpufreq_policy *); - void (*limits)(struct cpufreq_policy *); - ssize_t (*show_setspeed)(struct cpufreq_policy *, char *); - int (*store_setspeed)(struct cpufreq_policy *, unsigned int); - struct list_head governor_list; - struct module *owner; - u8 flags; -}; - -struct cpufreq_frequency_table { - unsigned int flags; - unsigned int driver_data; - unsigned int frequency; -}; - -enum perf_branch_sample_type_shift { - PERF_SAMPLE_BRANCH_USER_SHIFT = 0, - PERF_SAMPLE_BRANCH_KERNEL_SHIFT = 1, - PERF_SAMPLE_BRANCH_HV_SHIFT = 2, - PERF_SAMPLE_BRANCH_ANY_SHIFT = 3, - PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT = 4, - PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT = 5, - PERF_SAMPLE_BRANCH_IND_CALL_SHIFT = 6, - PERF_SAMPLE_BRANCH_ABORT_TX_SHIFT = 7, - PERF_SAMPLE_BRANCH_IN_TX_SHIFT = 8, - PERF_SAMPLE_BRANCH_NO_TX_SHIFT = 9, - PERF_SAMPLE_BRANCH_COND_SHIFT = 10, - PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT = 11, - PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT = 12, - PERF_SAMPLE_BRANCH_CALL_SHIFT = 13, - PERF_SAMPLE_BRANCH_NO_FLAGS_SHIFT = 14, - PERF_SAMPLE_BRANCH_NO_CYCLES_SHIFT = 15, - PERF_SAMPLE_BRANCH_TYPE_SAVE_SHIFT = 16, - PERF_SAMPLE_BRANCH_HW_INDEX_SHIFT = 17, - PERF_SAMPLE_BRANCH_PRIV_SAVE_SHIFT = 18, - PERF_SAMPLE_BRANCH_COUNTERS_SHIFT = 19, - PERF_SAMPLE_BRANCH_MAX_SHIFT = 20, -}; - -typedef bool (*stack_trace_consume_fn)(void *, long unsigned int); - -struct perf_callchain_entry_ctx { - struct perf_callchain_entry *entry; - u32 max_stack; - u32 nr; - short int contexts; - bool contexts_maxed; -}; - -enum aarch64_insn_special_register { - AARCH64_INSN_SPCLREG_SPSR_EL1 = 49664, - AARCH64_INSN_SPCLREG_ELR_EL1 = 49665, - AARCH64_INSN_SPCLREG_SP_EL0 = 49672, - AARCH64_INSN_SPCLREG_SPSEL = 49680, - AARCH64_INSN_SPCLREG_CURRENTEL = 49682, - AARCH64_INSN_SPCLREG_DAIF = 55825, - AARCH64_INSN_SPCLREG_NZCV = 55824, - AARCH64_INSN_SPCLREG_FPCR = 55840, - AARCH64_INSN_SPCLREG_DSPSR_EL0 = 55848, - AARCH64_INSN_SPCLREG_DLR_EL0 = 55849, - AARCH64_INSN_SPCLREG_SPSR_EL2 = 57856, - AARCH64_INSN_SPCLREG_ELR_EL2 = 57857, - AARCH64_INSN_SPCLREG_SP_EL1 = 57864, - AARCH64_INSN_SPCLREG_SPSR_INQ = 57880, - AARCH64_INSN_SPCLREG_SPSR_ABT = 57881, - AARCH64_INSN_SPCLREG_SPSR_UND = 57882, - AARCH64_INSN_SPCLREG_SPSR_FIQ = 57883, - AARCH64_INSN_SPCLREG_SPSR_EL3 = 61952, - AARCH64_INSN_SPCLREG_ELR_EL3 = 61953, - AARCH64_INSN_SPCLREG_SP_EL2 = 61968, -}; - -typedef u32 kprobe_opcode_t; - -struct arch_specific_insn { - struct arch_probe_insn api; -}; - -enum probe_insn { - INSN_REJECTED = 0, - INSN_GOOD_NO_SLOT = 1, - INSN_GOOD = 2, -}; - -typedef unsigned int slab_flags_t; - -struct codetag { - unsigned int flags; - unsigned int lineno; - const char *modname; - const char *function; - const char *filename; -}; - -struct alloc_tag_counters { - u64 bytes; - u64 calls; -}; - -struct alloc_tag { - struct codetag ct; - struct alloc_tag_counters *counters; -}; - -enum _slab_flag_bits { - _SLAB_CONSISTENCY_CHECKS = 0, - _SLAB_RED_ZONE = 1, - _SLAB_POISON = 2, - _SLAB_KMALLOC = 3, - _SLAB_HWCACHE_ALIGN = 4, - _SLAB_CACHE_DMA = 5, - _SLAB_CACHE_DMA32 = 6, - _SLAB_STORE_USER = 7, - _SLAB_PANIC = 8, - _SLAB_TYPESAFE_BY_RCU = 9, - _SLAB_TRACE = 10, - _SLAB_NOLEAKTRACE = 11, - _SLAB_NO_MERGE = 12, - _SLAB_ACCOUNT = 13, - _SLAB_NO_USER_FLAGS = 14, - _SLAB_RECLAIM_ACCOUNT = 15, - _SLAB_OBJECT_POISON = 16, - _SLAB_CMPXCHG_DOUBLE = 17, - _SLAB_NO_OBJ_EXT = 18, - _SLAB_FLAGS_LAST_BIT = 19, -}; - -struct kmem_cache_args { - unsigned int align; - unsigned int useroffset; - unsigned int usersize; - unsigned int freeptr_offset; - bool use_freeptr_offset; - void (*ctor)(void *); -}; - -enum mod_mem_type { - MOD_TEXT = 0, - MOD_DATA = 1, - MOD_RODATA = 2, - MOD_RO_AFTER_INIT = 3, - MOD_INIT_TEXT = 4, - MOD_INIT_DATA = 5, - MOD_INIT_RODATA = 6, - MOD_MEM_NUM_TYPES = 7, - MOD_INVALID = -1, -}; - -typedef void (*exitcall_t)(void); - -struct crypto_alg; - -struct crypto_tfm { - refcount_t refcnt; - u32 crt_flags; - int node; - void (*exit)(struct crypto_tfm *); - struct crypto_alg *__crt_alg; - void *__crt_ctx[0]; -}; - -struct cipher_alg { - unsigned int cia_min_keysize; - unsigned int cia_max_keysize; - int (*cia_setkey)(struct crypto_tfm *, const u8 *, unsigned int); - void (*cia_encrypt)(struct crypto_tfm *, u8 *, const u8 *); - void (*cia_decrypt)(struct crypto_tfm *, u8 *, const u8 *); -}; - -struct compress_alg { - int (*coa_compress)(struct crypto_tfm *, const u8 *, unsigned int, u8 *, unsigned int *); - int (*coa_decompress)(struct crypto_tfm *, const u8 *, unsigned int, u8 *, unsigned int *); -}; - -struct crypto_type; - -struct crypto_alg { - struct list_head cra_list; - struct list_head cra_users; - u32 cra_flags; - unsigned int cra_blocksize; - unsigned int cra_ctxsize; - unsigned int cra_alignmask; - int cra_priority; - refcount_t cra_refcnt; - char cra_name[128]; - char cra_driver_name[128]; - const struct crypto_type *cra_type; - union { - struct cipher_alg cipher; - struct compress_alg compress; - } cra_u; - int (*cra_init)(struct crypto_tfm *); - void (*cra_exit)(struct crypto_tfm *); - void (*cra_destroy)(struct crypto_alg *); - struct module *cra_module; -}; - -struct sk_buff; - -struct crypto_instance; - -struct crypto_type { - unsigned int (*ctxsize)(struct crypto_alg *, u32, u32); - unsigned int (*extsize)(struct crypto_alg *); - int (*init_tfm)(struct crypto_tfm *); - void (*show)(struct seq_file *, struct crypto_alg *); - int (*report)(struct sk_buff *, struct crypto_alg *); - void (*free)(struct crypto_instance *); - unsigned int type; - unsigned int maskclear; - unsigned int maskset; - unsigned int tfmsize; -}; - -struct crypto_aes_ctx { - u32 key_enc[60]; - u32 key_dec[60]; - u32 key_length; -}; - -struct crypto_template; - -struct crypto_spawn; - -struct crypto_instance { - struct crypto_alg alg; - struct crypto_template *tmpl; - union { - struct hlist_node list; - struct crypto_spawn *spawns; - }; - struct work_struct free_work; - void *__ctx[0]; -}; - -struct crypto_spawn { - struct list_head list; - struct crypto_alg *alg; - union { - struct crypto_instance *inst; - struct crypto_spawn *next; - }; - const struct crypto_type *frontend; - u32 mask; - bool dead; - bool registered; -}; - -struct rtattr; - -struct crypto_template { - struct list_head list; - struct hlist_head instances; - struct module *module; - int (*create)(struct crypto_template *, struct rtattr **); - char name[128]; -}; - -struct cpu_feature { - __u16 feature; -}; - -enum hrtimer_base_type { - HRTIMER_BASE_MONOTONIC = 0, - HRTIMER_BASE_REALTIME = 1, - HRTIMER_BASE_BOOTTIME = 2, - HRTIMER_BASE_TAI = 3, - HRTIMER_BASE_MONOTONIC_SOFT = 4, - HRTIMER_BASE_REALTIME_SOFT = 5, - HRTIMER_BASE_BOOTTIME_SOFT = 6, - HRTIMER_BASE_TAI_SOFT = 7, - HRTIMER_MAX_CLOCK_BASES = 8, -}; - -enum { - DQF_ROOT_SQUASH_B = 0, - DQF_SYS_FILE_B = 16, - DQF_PRIVATE = 17, -}; - -enum { - DQST_LOOKUPS = 0, - DQST_DROPS = 1, - DQST_READS = 2, - DQST_WRITES = 3, - DQST_CACHE_HITS = 4, - DQST_ALLOC_DQUOTS = 5, - DQST_FREE_DQUOTS = 6, - DQST_SYNCS = 7, - _DQST_DQSTAT_LAST = 8, -}; - -enum { - SB_UNFROZEN = 0, - SB_FREEZE_WRITE = 1, - SB_FREEZE_PAGEFAULT = 2, - SB_FREEZE_FS = 3, - SB_FREEZE_COMPLETE = 4, -}; - -struct aes_block { - u8 b[16]; -}; - -typedef __u16 __be16; - -typedef __u32 __be32; - -typedef void (*crypto_completion_t)(void *, int); - -struct crypto_async_request { - struct list_head list; - crypto_completion_t complete; - void *data; - struct crypto_tfm *tfm; - u32 flags; -}; - -struct scatterlist; - -struct scatter_walk { - struct scatterlist *sg; - unsigned int offset; -}; - -struct scatterlist { - long unsigned int page_link; - unsigned int offset; - unsigned int length; - dma_addr_t dma_address; - unsigned int dma_length; -}; - -struct aead_request { - struct crypto_async_request base; - unsigned int assoclen; - unsigned int cryptlen; - u8 *iv; - struct scatterlist *src; - struct scatterlist *dst; - void *__ctx[0]; -}; - -struct crypto_aead; - -struct aead_alg { - int (*setkey)(struct crypto_aead *, const u8 *, unsigned int); - int (*setauthsize)(struct crypto_aead *, unsigned int); - int (*encrypt)(struct aead_request *); - int (*decrypt)(struct aead_request *); - int (*init)(struct crypto_aead *); - void (*exit)(struct crypto_aead *); - unsigned int ivsize; - unsigned int maxauthsize; - unsigned int chunksize; - struct crypto_alg base; -}; - -struct crypto_aead { - unsigned int authsize; - unsigned int reqsize; - struct crypto_tfm base; -}; - -struct skcipher_walk { - union { - struct { - struct page *page; - long unsigned int offset; - } phys; - struct { - u8 *page; - void *addr; - } virt; - } src; - union { - struct { - struct page *page; - long unsigned int offset; - } phys; - struct { - u8 *page; - void *addr; - } virt; - } dst; - struct scatter_walk in; - unsigned int nbytes; - struct scatter_walk out; - unsigned int total; - struct list_head buffers; - u8 *page; - u8 *buffer; - u8 *oiv; - void *iv; - unsigned int ivsize; - int flags; - unsigned int blocksize; - unsigned int stride; - unsigned int alignmask; -}; - -struct hash_alg_common { - unsigned int digestsize; - unsigned int statesize; - struct crypto_alg base; -}; - -struct crypto_shash; - -struct shash_desc { - struct crypto_shash *tfm; - void *__ctx[0]; -}; - -struct crypto_shash { - unsigned int descsize; - struct crypto_tfm base; -}; - -struct shash_alg { - int (*init)(struct shash_desc *); - int (*update)(struct shash_desc *, const u8 *, unsigned int); - int (*final)(struct shash_desc *, u8 *); - int (*finup)(struct shash_desc *, const u8 *, unsigned int, u8 *); - int (*digest)(struct shash_desc *, const u8 *, unsigned int, u8 *); - int (*export)(struct shash_desc *, void *); - int (*import)(struct shash_desc *, const void *); - int (*setkey)(struct crypto_shash *, const u8 *, unsigned int); - int (*init_tfm)(struct crypto_shash *); - void (*exit_tfm)(struct crypto_shash *); - int (*clone_tfm)(struct crypto_shash *, struct crypto_shash *); - unsigned int descsize; - union { - struct { - unsigned int digestsize; - unsigned int statesize; - struct crypto_alg base; - }; - struct hash_alg_common halg; - }; -}; - -struct poly1305_key { - union { - u32 r[5]; - u64 r64[3]; - }; -}; - -struct poly1305_core_key { - struct poly1305_key key; - struct poly1305_key precomputed_s; -}; - -struct poly1305_state { - union { - u32 h[5]; - u64 h64[3]; - }; -}; - -struct poly1305_desc_ctx { - u8 buf[16]; - unsigned int buflen; - short unsigned int rset; - bool sset; - u32 s[4]; - struct poly1305_state h; - union { - struct poly1305_key opaque_r[9]; - struct poly1305_core_key core_r; - }; -}; - -typedef __s16 s16; - -typedef __u64 __be64; - -typedef __u32 __wsum; - -typedef __kernel_clock_t clock_t; - -typedef struct { - atomic_t refcnt; -} rcuref_t; - -enum lockdep_ok { - LOCKDEP_STILL_OK = 0, - LOCKDEP_NOW_UNRELIABLE = 1, -}; - -struct reclaim_state { - long unsigned int reclaimed; - struct lru_gen_mm_walk *mm_walk; -}; - -struct in6_addr { - union { - __u8 u6_addr8[16]; - __be16 u6_addr16[8]; - __be32 u6_addr32[4]; - } in6_u; -}; - -struct bpf_nh_params { - u32 nh_family; - union { - u32 ipv4_nh; - struct in6_addr ipv6_nh; - }; -}; - -struct bpf_redirect_info { - u64 tgt_index; - void *tgt_value; - struct bpf_map *map; - u32 flags; - u32 map_id; - enum bpf_map_type map_type; - struct bpf_nh_params nh; - u32 kern_flags; -}; - -struct bpf_net_context { - struct bpf_redirect_info ri; - struct list_head cpu_map_flush_list; - struct list_head dev_map_flush_list; - struct list_head xskmap_map_flush_list; -}; - -struct wait_queue_entry; - -typedef int (*wait_queue_func_t)(struct wait_queue_entry *, unsigned int, int, void *); - -struct wait_queue_entry { - unsigned int flags; - void *private; - wait_queue_func_t func; - struct list_head entry; -}; - -typedef struct wait_queue_entry wait_queue_entry_t; - -struct linux_binprm; - -struct coredump_params; - -struct linux_binfmt { - struct list_head lh; - struct module *module; - int (*load_binary)(struct linux_binprm *); - int (*load_shlib)(struct file *); - int (*core_dump)(struct coredump_params *); - long unsigned int min_coredump; -}; - -struct raw_notifier_head { - struct notifier_block *head; -}; - -struct wait_page_queue { - struct folio *folio; - int bit_nr; - wait_queue_entry_t wait; -}; - -struct readahead_control { - struct file *file; - struct address_space *mapping; - struct file_ra_state *ra; - long unsigned int _index; - unsigned int _nr_pages; - unsigned int _batch_count; - bool _workingset; - long unsigned int _pflags; -}; - -struct swap_cluster_info; - -struct percpu_cluster; - -struct swap_info_struct { - struct percpu_ref users; - long unsigned int flags; - short int prio; - struct plist_node list; - signed char type; - unsigned int max; - unsigned char *swap_map; - long unsigned int *zeromap; - struct swap_cluster_info *cluster_info; - struct list_head free_clusters; - struct list_head full_clusters; - struct list_head nonfull_clusters[10]; - struct list_head frag_clusters[10]; - unsigned int frag_cluster_nr[10]; - unsigned int lowest_bit; - unsigned int highest_bit; - unsigned int pages; - unsigned int inuse_pages; - unsigned int cluster_next; - unsigned int cluster_nr; - unsigned int *cluster_next_cpu; - struct percpu_cluster *percpu_cluster; - struct rb_root swap_extent_root; - struct block_device *bdev; - struct file *swap_file; - struct completion comp; - spinlock_t lock; - spinlock_t cont_lock; - struct work_struct discard_work; - struct work_struct reclaim_work; - struct list_head discard_clusters; - struct plist_node avail_lists[0]; -}; - -struct posix_acl_entry { - short int e_tag; - short unsigned int e_perm; - union { - kuid_t e_uid; - kgid_t e_gid; - }; -}; - -struct posix_acl { - refcount_t a_refcount; - struct callback_head a_rcu; - unsigned int a_count; - struct posix_acl_entry a_entries[0]; -}; - -typedef __u64 __addrpair; - -typedef __u32 __portpair; - -typedef struct { - struct net *net; -} possible_net_t; - -struct proto; - -struct inet_timewait_death_row; - -struct sock_common { - union { - __addrpair skc_addrpair; - struct { - __be32 skc_daddr; - __be32 skc_rcv_saddr; - }; - }; - union { - unsigned int skc_hash; - __u16 skc_u16hashes[2]; - }; - union { - __portpair skc_portpair; - struct { - __be16 skc_dport; - __u16 skc_num; - }; - }; - short unsigned int skc_family; - volatile unsigned char skc_state; - unsigned char skc_reuse: 4; - unsigned char skc_reuseport: 1; - unsigned char skc_ipv6only: 1; - unsigned char skc_net_refcnt: 1; - int skc_bound_dev_if; - union { - struct hlist_node skc_bind_node; - struct hlist_node skc_portaddr_node; - }; - struct proto *skc_prot; - possible_net_t skc_net; - struct in6_addr skc_v6_daddr; - struct in6_addr skc_v6_rcv_saddr; - atomic64_t skc_cookie; - union { - long unsigned int skc_flags; - struct sock *skc_listener; - struct inet_timewait_death_row *skc_tw_dr; - }; - int skc_dontcopy_begin[0]; - union { - struct hlist_node skc_node; - struct hlist_nulls_node skc_nulls_node; - }; - short unsigned int skc_tx_queue_mapping; - short unsigned int skc_rx_queue_mapping; - union { - int skc_incoming_cpu; - u32 skc_rcv_wnd; - u32 skc_tw_rcv_nxt; - }; - refcount_t skc_refcnt; - int skc_dontcopy_end[0]; - union { - u32 skc_rxhash; - u32 skc_window_clamp; - u32 skc_tw_snd_nxt; - }; -}; - -struct sk_buff_list { - struct sk_buff *next; - struct sk_buff *prev; -}; - -struct sk_buff_head { - union { - struct { - struct sk_buff *next; - struct sk_buff *prev; - }; - struct sk_buff_list list; - }; - __u32 qlen; - spinlock_t lock; -}; - -typedef struct { - spinlock_t slock; - int owned; - wait_queue_head_t wq; -} socket_lock_t; - -typedef u64 netdev_features_t; - -struct sock_cgroup_data { - struct cgroup *cgroup; - u32 classid; - u16 prioidx; -}; - -typedef struct {} netns_tracker; - -struct dst_entry; - -struct sk_filter; - -struct socket_wq; - -struct socket; - -struct xfrm_policy; - -struct sock_reuseport; - -struct sock { - struct sock_common __sk_common; - __u8 __cacheline_group_begin__sock_write_rx[0]; - atomic_t sk_drops; - __s32 sk_peek_off; - struct sk_buff_head sk_error_queue; - struct sk_buff_head sk_receive_queue; - struct { - atomic_t rmem_alloc; - int len; - struct sk_buff *head; - struct sk_buff *tail; - } sk_backlog; - __u8 __cacheline_group_end__sock_write_rx[0]; - __u8 __cacheline_group_begin__sock_read_rx[0]; - struct dst_entry *sk_rx_dst; - int sk_rx_dst_ifindex; - u32 sk_rx_dst_cookie; - unsigned int sk_ll_usec; - unsigned int sk_napi_id; - u16 sk_busy_poll_budget; - u8 sk_prefer_busy_poll; - u8 sk_userlocks; - int sk_rcvbuf; - struct sk_filter *sk_filter; - union { - struct socket_wq *sk_wq; - struct socket_wq *sk_wq_raw; - }; - void (*sk_data_ready)(struct sock *); - long int sk_rcvtimeo; - int sk_rcvlowat; - __u8 __cacheline_group_end__sock_read_rx[0]; - __u8 __cacheline_group_begin__sock_read_rxtx[0]; - int sk_err; - struct socket *sk_socket; - struct mem_cgroup *sk_memcg; - struct xfrm_policy *sk_policy[2]; - __u8 __cacheline_group_end__sock_read_rxtx[0]; - __u8 __cacheline_group_begin__sock_write_rxtx[0]; - socket_lock_t sk_lock; - u32 sk_reserved_mem; - int sk_forward_alloc; - u32 sk_tsflags; - __u8 __cacheline_group_end__sock_write_rxtx[0]; - __u8 __cacheline_group_begin__sock_write_tx[0]; - int sk_write_pending; - atomic_t sk_omem_alloc; - int sk_sndbuf; - int sk_wmem_queued; - refcount_t sk_wmem_alloc; - long unsigned int sk_tsq_flags; - union { - struct sk_buff *sk_send_head; - struct rb_root tcp_rtx_queue; - }; - struct sk_buff_head sk_write_queue; - u32 sk_dst_pending_confirm; - u32 sk_pacing_status; - struct page_frag sk_frag; - struct timer_list sk_timer; - long unsigned int sk_pacing_rate; - atomic_t sk_zckey; - atomic_t sk_tskey; - __u8 __cacheline_group_end__sock_write_tx[0]; - __u8 __cacheline_group_begin__sock_read_tx[0]; - long unsigned int sk_max_pacing_rate; - long int sk_sndtimeo; - u32 sk_priority; - u32 sk_mark; - struct dst_entry *sk_dst_cache; - netdev_features_t sk_route_caps; - u16 sk_gso_type; - u16 sk_gso_max_segs; - unsigned int sk_gso_max_size; - gfp_t sk_allocation; - u32 sk_txhash; - u8 sk_pacing_shift; - bool sk_use_task_frag; - __u8 __cacheline_group_end__sock_read_tx[0]; - u8 sk_gso_disabled: 1; - u8 sk_kern_sock: 1; - u8 sk_no_check_tx: 1; - u8 sk_no_check_rx: 1; - u8 sk_shutdown; - u16 sk_type; - u16 sk_protocol; - long unsigned int sk_lingertime; - struct proto *sk_prot_creator; - rwlock_t sk_callback_lock; - int sk_err_soft; - u32 sk_ack_backlog; - u32 sk_max_ack_backlog; - kuid_t sk_uid; - spinlock_t sk_peer_lock; - int sk_bind_phc; - struct pid *sk_peer_pid; - const struct cred *sk_peer_cred; - ktime_t sk_stamp; - int sk_disconnects; - u8 sk_txrehash; - u8 sk_clockid; - u8 sk_txtime_deadline_mode: 1; - u8 sk_txtime_report_errors: 1; - u8 sk_txtime_unused: 6; - void *sk_user_data; - void *sk_security; - struct sock_cgroup_data sk_cgrp_data; - void (*sk_state_change)(struct sock *); - void (*sk_write_space)(struct sock *); - void (*sk_error_report)(struct sock *); - int (*sk_backlog_rcv)(struct sock *, struct sk_buff *); - void (*sk_destruct)(struct sock *); - struct sock_reuseport *sk_reuseport_cb; - struct bpf_local_storage *sk_bpf_storage; - struct callback_head sk_rcu; - netns_tracker ns_tracker; - struct xarray sk_user_frags; -}; - -struct new_utsname { - char sysname[65]; - char nodename[65]; - char release[65]; - char version[65]; - char machine[65]; - char domainname[65]; -}; - -struct uts_namespace { - struct new_utsname name; - struct user_namespace *user_ns; - struct ucounts *ucounts; - struct ns_common ns; -}; - -struct ref_tracker_dir {}; - -struct prot_inuse; - -struct netns_core { - struct ctl_table_header *sysctl_hdr; - int sysctl_somaxconn; - int sysctl_optmem_max; - u8 sysctl_txrehash; - struct prot_inuse *prot_inuse; - struct cpumask *rps_default_mask; -}; - -struct ipstats_mib; - -struct tcp_mib; - -struct linux_mib; - -struct udp_mib; - -struct linux_xfrm_mib; - -struct icmp_mib; - -struct icmpmsg_mib; - -struct icmpv6_mib; - -struct icmpv6msg_mib; - -struct proc_dir_entry; - -struct netns_mib { - struct ipstats_mib *ip_statistics; - struct ipstats_mib *ipv6_statistics; - struct tcp_mib *tcp_statistics; - struct linux_mib *net_statistics; - struct udp_mib *udp_statistics; - struct udp_mib *udp_stats_in6; - struct linux_xfrm_mib *xfrm_statistics; - struct udp_mib *udplite_statistics; - struct udp_mib *udplite_stats_in6; - struct icmp_mib *icmp_statistics; - struct icmpmsg_mib *icmpmsg_statistics; - struct icmpv6_mib *icmpv6_statistics; - struct icmpv6msg_mib *icmpv6msg_statistics; - struct proc_dir_entry *proc_net_devsnmp6; -}; - -struct netns_packet { - struct mutex sklist_lock; - struct hlist_head sklist; -}; - -struct unix_table { - spinlock_t *locks; - struct hlist_head *buckets; -}; - -struct netns_unix { - struct unix_table table; - int sysctl_max_dgram_qlen; - struct ctl_table_header *ctl; -}; - -struct netns_nexthop { - struct rb_root rb_root; - struct hlist_head *devhash; - unsigned int seq; - u32 last_id_allocated; - struct blocking_notifier_head notifier_chain; -}; - -struct inet_hashinfo; - -struct inet_timewait_death_row { - refcount_t tw_refcount; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct inet_hashinfo *hashinfo; - int sysctl_max_tw_buckets; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct local_ports { - u32 range; - bool warned; -}; - -struct ping_group_range { - seqlock_t lock; - kgid_t range[2]; -}; - -struct sysctl_fib_multipath_hash_seed { - u32 user_seed; - u32 mp_seed; -}; - -typedef struct { - u64 key[2]; -} siphash_key_t; - -struct udp_table; - -struct ipv4_devconf; - -struct ip_ra_chain; - -struct fib_rules_ops; - -struct fib_table; - -struct inet_peer_base; - -struct fqdir; - -struct tcp_congestion_ops; - -struct tcp_fastopen_context; - -struct fib_notifier_ops; - -struct netns_ipv4 { - __u8 __cacheline_group_begin__netns_ipv4_read_tx[0]; - u8 sysctl_tcp_early_retrans; - u8 sysctl_tcp_tso_win_divisor; - u8 sysctl_tcp_tso_rtt_log; - u8 sysctl_tcp_autocorking; - int sysctl_tcp_min_snd_mss; - unsigned int sysctl_tcp_notsent_lowat; - int sysctl_tcp_limit_output_bytes; - int sysctl_tcp_min_rtt_wlen; - int sysctl_tcp_wmem[3]; - u8 sysctl_ip_fwd_use_pmtu; - __u8 __cacheline_group_end__netns_ipv4_read_tx[0]; - __u8 __cacheline_group_begin__netns_ipv4_read_txrx[0]; - u8 sysctl_tcp_moderate_rcvbuf; - __u8 __cacheline_group_end__netns_ipv4_read_txrx[0]; - __u8 __cacheline_group_begin__netns_ipv4_read_rx[0]; - u8 sysctl_ip_early_demux; - u8 sysctl_tcp_early_demux; - int sysctl_tcp_reordering; - int sysctl_tcp_rmem[3]; - __u8 __cacheline_group_end__netns_ipv4_read_rx[0]; - long: 64; - struct inet_timewait_death_row tcp_death_row; - struct udp_table *udp_table; - struct ctl_table_header *forw_hdr; - struct ctl_table_header *frags_hdr; - struct ctl_table_header *ipv4_hdr; - struct ctl_table_header *route_hdr; - struct ctl_table_header *xfrm4_hdr; - struct ipv4_devconf *devconf_all; - struct ipv4_devconf *devconf_dflt; - struct ip_ra_chain *ra_chain; - struct mutex ra_mutex; - struct fib_rules_ops *rules_ops; - struct fib_table *fib_main; - struct fib_table *fib_default; - unsigned int fib_rules_require_fldissect; - bool fib_has_custom_rules; - bool fib_has_custom_local_routes; - bool fib_offload_disabled; - u8 sysctl_tcp_shrink_window; - atomic_t fib_num_tclassid_users; - struct hlist_head *fib_table_hash; - struct sock *fibnl; - struct sock *mc_autojoin_sk; - struct inet_peer_base *peers; - struct fqdir *fqdir; - u8 sysctl_icmp_echo_ignore_all; - u8 sysctl_icmp_echo_enable_probe; - u8 sysctl_icmp_echo_ignore_broadcasts; - u8 sysctl_icmp_ignore_bogus_error_responses; - u8 sysctl_icmp_errors_use_inbound_ifaddr; - int sysctl_icmp_ratelimit; - int sysctl_icmp_ratemask; - int sysctl_icmp_msgs_per_sec; - int sysctl_icmp_msgs_burst; - atomic_t icmp_global_credit; - u32 icmp_global_stamp; - u32 ip_rt_min_pmtu; - int ip_rt_mtu_expires; - int ip_rt_min_advmss; - struct local_ports ip_local_ports; - u8 sysctl_tcp_ecn; - u8 sysctl_tcp_ecn_fallback; - u8 sysctl_ip_default_ttl; - u8 sysctl_ip_no_pmtu_disc; - u8 sysctl_ip_fwd_update_priority; - u8 sysctl_ip_nonlocal_bind; - u8 sysctl_ip_autobind_reuse; - u8 sysctl_ip_dynaddr; - u8 sysctl_raw_l3mdev_accept; - u8 sysctl_udp_early_demux; - u8 sysctl_nexthop_compat_mode; - u8 sysctl_fwmark_reflect; - u8 sysctl_tcp_fwmark_accept; - u8 sysctl_tcp_l3mdev_accept; - u8 sysctl_tcp_mtu_probing; - int sysctl_tcp_mtu_probe_floor; - int sysctl_tcp_base_mss; - int sysctl_tcp_probe_threshold; - u32 sysctl_tcp_probe_interval; - int sysctl_tcp_keepalive_time; - int sysctl_tcp_keepalive_intvl; - u8 sysctl_tcp_keepalive_probes; - u8 sysctl_tcp_syn_retries; - u8 sysctl_tcp_synack_retries; - u8 sysctl_tcp_syncookies; - u8 sysctl_tcp_migrate_req; - u8 sysctl_tcp_comp_sack_nr; - u8 sysctl_tcp_backlog_ack_defer; - u8 sysctl_tcp_pingpong_thresh; - u8 sysctl_tcp_retries1; - u8 sysctl_tcp_retries2; - u8 sysctl_tcp_orphan_retries; - u8 sysctl_tcp_tw_reuse; - int sysctl_tcp_fin_timeout; - u8 sysctl_tcp_sack; - u8 sysctl_tcp_window_scaling; - u8 sysctl_tcp_timestamps; - int sysctl_tcp_rto_min_us; - u8 sysctl_tcp_recovery; - u8 sysctl_tcp_thin_linear_timeouts; - u8 sysctl_tcp_slow_start_after_idle; - u8 sysctl_tcp_retrans_collapse; - u8 sysctl_tcp_stdurg; - u8 sysctl_tcp_rfc1337; - u8 sysctl_tcp_abort_on_overflow; - u8 sysctl_tcp_fack; - int sysctl_tcp_max_reordering; - int sysctl_tcp_adv_win_scale; - u8 sysctl_tcp_dsack; - u8 sysctl_tcp_app_win; - u8 sysctl_tcp_frto; - u8 sysctl_tcp_nometrics_save; - u8 sysctl_tcp_no_ssthresh_metrics_save; - u8 sysctl_tcp_workaround_signed_windows; - int sysctl_tcp_challenge_ack_limit; - u8 sysctl_tcp_min_tso_segs; - u8 sysctl_tcp_reflect_tos; - int sysctl_tcp_invalid_ratelimit; - int sysctl_tcp_pacing_ss_ratio; - int sysctl_tcp_pacing_ca_ratio; - unsigned int sysctl_tcp_child_ehash_entries; - long unsigned int sysctl_tcp_comp_sack_delay_ns; - long unsigned int sysctl_tcp_comp_sack_slack_ns; - int sysctl_max_syn_backlog; - int sysctl_tcp_fastopen; - const struct tcp_congestion_ops *tcp_congestion_control; - struct tcp_fastopen_context *tcp_fastopen_ctx; - unsigned int sysctl_tcp_fastopen_blackhole_timeout; - atomic_t tfo_active_disable_times; - long unsigned int tfo_active_disable_stamp; - u32 tcp_challenge_timestamp; - u32 tcp_challenge_count; - u8 sysctl_tcp_plb_enabled; - u8 sysctl_tcp_plb_idle_rehash_rounds; - u8 sysctl_tcp_plb_rehash_rounds; - u8 sysctl_tcp_plb_suspend_rto_sec; - int sysctl_tcp_plb_cong_thresh; - int sysctl_udp_wmem_min; - int sysctl_udp_rmem_min; - u8 sysctl_fib_notify_on_flag_change; - u8 sysctl_tcp_syn_linear_timeouts; - u8 sysctl_udp_l3mdev_accept; - u8 sysctl_igmp_llm_reports; - int sysctl_igmp_max_memberships; - int sysctl_igmp_max_msf; - int sysctl_igmp_qrv; - struct ping_group_range ping_group_range; - atomic_t dev_addr_genid; - unsigned int sysctl_udp_child_hash_entries; - long unsigned int *sysctl_local_reserved_ports; - int sysctl_ip_prot_sock; - struct list_head mr_tables; - struct fib_rules_ops *mr_rules_ops; - struct sysctl_fib_multipath_hash_seed sysctl_fib_multipath_hash_seed; - u32 sysctl_fib_multipath_hash_fields; - u8 sysctl_fib_multipath_use_neigh; - u8 sysctl_fib_multipath_hash_policy; - struct fib_notifier_ops *notifier_ops; - unsigned int fib_seq; - struct fib_notifier_ops *ipmr_notifier_ops; - unsigned int ipmr_seq; - atomic_t rt_genid; - siphash_key_t ip_id_key; -}; - -struct neighbour; - -struct dst_ops { - short unsigned int family; - unsigned int gc_thresh; - void (*gc)(struct dst_ops *); - struct dst_entry * (*check)(struct dst_entry *, __u32); - unsigned int (*default_advmss)(const struct dst_entry *); - unsigned int (*mtu)(const struct dst_entry *); - u32 * (*cow_metrics)(struct dst_entry *, long unsigned int); - void (*destroy)(struct dst_entry *); - void (*ifdown)(struct dst_entry *, struct net_device *); - void (*negative_advice)(struct sock *, struct dst_entry *); - void (*link_failure)(struct sk_buff *); - void (*update_pmtu)(struct dst_entry *, struct sock *, struct sk_buff *, u32, bool); - void (*redirect)(struct dst_entry *, struct sock *, struct sk_buff *); - int (*local_out)(struct net *, struct sock *, struct sk_buff *); - struct neighbour * (*neigh_lookup)(const struct dst_entry *, struct sk_buff *, const void *); - void (*confirm_neigh)(const struct dst_entry *, const void *); - struct kmem_cache *kmem_cachep; - struct percpu_counter pcpuc_entries; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct netns_sysctl_ipv6 { - struct ctl_table_header *hdr; - struct ctl_table_header *route_hdr; - struct ctl_table_header *icmp_hdr; - struct ctl_table_header *frags_hdr; - struct ctl_table_header *xfrm6_hdr; - int flush_delay; - int ip6_rt_max_size; - int ip6_rt_gc_min_interval; - int ip6_rt_gc_timeout; - int ip6_rt_gc_interval; - int ip6_rt_gc_elasticity; - int ip6_rt_mtu_expires; - int ip6_rt_min_advmss; - u32 multipath_hash_fields; - u8 multipath_hash_policy; - u8 bindv6only; - u8 flowlabel_consistency; - u8 auto_flowlabels; - int icmpv6_time; - u8 icmpv6_echo_ignore_all; - u8 icmpv6_echo_ignore_multicast; - u8 icmpv6_echo_ignore_anycast; - long unsigned int icmpv6_ratemask[4]; - long unsigned int *icmpv6_ratemask_ptr; - u8 anycast_src_echo_reply; - u8 ip_nonlocal_bind; - u8 fwmark_reflect; - u8 flowlabel_state_ranges; - int idgen_retries; - int idgen_delay; - int flowlabel_reflect; - int max_dst_opts_cnt; - int max_hbh_opts_cnt; - int max_dst_opts_len; - int max_hbh_opts_len; - int seg6_flowlabel; - u32 ioam6_id; - u64 ioam6_id_wide; - u8 skip_notify_on_dev_down; - u8 fib_notify_on_flag_change; - u8 icmpv6_error_anycast_as_unicast; -}; - -struct ipv6_devconf; - -struct fib6_info; - -struct rt6_info; - -struct rt6_statistics; - -struct fib6_table; - -struct seg6_pernet_data; - -struct ioam6_pernet_data; - -struct netns_ipv6 { - struct dst_ops ip6_dst_ops; - struct netns_sysctl_ipv6 sysctl; - struct ipv6_devconf *devconf_all; - struct ipv6_devconf *devconf_dflt; - struct inet_peer_base *peers; - struct fqdir *fqdir; - struct fib6_info *fib6_null_entry; - struct rt6_info *ip6_null_entry; - struct rt6_statistics *rt6_stats; - struct timer_list ip6_fib_timer; - struct hlist_head *fib_table_hash; - struct fib6_table *fib6_main_tbl; - struct list_head fib6_walkers; - rwlock_t fib6_walker_lock; - spinlock_t fib6_gc_lock; - atomic_t ip6_rt_gc_expire; - long unsigned int ip6_rt_last_gc; - unsigned char flowlabel_has_excl; - bool fib6_has_custom_rules; - unsigned int fib6_rules_require_fldissect; - unsigned int fib6_routes_require_src; - struct rt6_info *ip6_prohibit_entry; - struct rt6_info *ip6_blk_hole_entry; - struct fib6_table *fib6_local_tbl; - struct fib_rules_ops *fib6_rules_ops; - struct sock *ndisc_sk; - struct sock *tcp_sk; - struct sock *igmp_sk; - struct sock *mc_autojoin_sk; - struct hlist_head *inet6_addr_lst; - spinlock_t addrconf_hash_lock; - struct delayed_work addr_chk_work; - atomic_t dev_addr_genid; - atomic_t fib6_sernum; - struct seg6_pernet_data *seg6_data; - struct fib_notifier_ops *notifier_ops; - struct fib_notifier_ops *ip6mr_notifier_ops; - unsigned int ipmr_seq; - struct { - struct hlist_head head; - spinlock_t lock; - u32 seq; - } ip6addrlbl_table; - struct ioam6_pernet_data *ioam6_data; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct sctp_mib; - -struct netns_sctp { - struct sctp_mib *sctp_statistics; - struct proc_dir_entry *proc_net_sctp; - struct ctl_table_header *sysctl_header; - struct sock *ctl_sock; - struct sock *udp4_sock; - struct sock *udp6_sock; - int udp_port; - int encap_port; - struct list_head local_addr_list; - struct list_head addr_waitq; - struct timer_list addr_wq_timer; - struct list_head auto_asconf_splist; - spinlock_t addr_wq_lock; - spinlock_t local_addr_lock; - unsigned int rto_initial; - unsigned int rto_min; - unsigned int rto_max; - int rto_alpha; - int rto_beta; - int max_burst; - int cookie_preserve_enable; - char *sctp_hmac_alg; - unsigned int valid_cookie_life; - unsigned int sack_timeout; - unsigned int hb_interval; - unsigned int probe_interval; - int max_retrans_association; - int max_retrans_path; - int max_retrans_init; - int pf_retrans; - int ps_retrans; - int pf_enable; - int pf_expose; - int sndbuf_policy; - int rcvbuf_policy; - int default_auto_asconf; - int addip_enable; - int addip_noauth; - int prsctp_enable; - int reconf_enable; - int auth_enable; - int intl_enable; - int ecn_enable; - int scope_policy; - int rwnd_upd_shift; - long unsigned int max_autoclose; - int l3mdev_accept; -}; - -struct nf_logger; - -struct nf_hook_entries; - -struct netns_nf { - struct proc_dir_entry *proc_netfilter; - const struct nf_logger *nf_loggers[11]; - struct ctl_table_header *nf_log_dir_header; - struct ctl_table_header *nf_lwtnl_dir_header; - struct nf_hook_entries *hooks_ipv4[5]; - struct nf_hook_entries *hooks_ipv6[5]; - struct nf_hook_entries *hooks_arp[3]; - struct nf_hook_entries *hooks_bridge[5]; - unsigned int defrag_ipv4_users; - unsigned int defrag_ipv6_users; -}; - -struct nf_generic_net { - unsigned int timeout; -}; - -struct nf_tcp_net { - unsigned int timeouts[14]; - u8 tcp_loose; - u8 tcp_be_liberal; - u8 tcp_max_retrans; - u8 tcp_ignore_invalid_rst; -}; - -struct nf_udp_net { - unsigned int timeouts[2]; -}; - -struct nf_icmp_net { - unsigned int timeout; -}; - -struct nf_dccp_net { - u8 dccp_loose; - unsigned int dccp_timeout[10]; -}; - -struct nf_sctp_net { - unsigned int timeouts[10]; -}; - -struct nf_ip_net { - struct nf_generic_net generic; - struct nf_tcp_net tcp; - struct nf_udp_net udp; - struct nf_icmp_net icmp; - struct nf_icmp_net icmpv6; - struct nf_dccp_net dccp; - struct nf_sctp_net sctp; -}; - -struct ip_conntrack_stat; - -struct nf_ct_event_notifier; - -struct netns_ct { - bool ecache_dwork_pending; - u8 sysctl_log_invalid; - u8 sysctl_events; - u8 sysctl_acct; - u8 sysctl_tstamp; - u8 sysctl_checksum; - struct ip_conntrack_stat *stat; - struct nf_ct_event_notifier *nf_conntrack_event_cb; - struct nf_ip_net nf_ct_proto; - atomic_t labels_used; -}; - -struct netns_nftables { - unsigned int base_seq; - u8 gencursor; -}; - -struct netns_bpf { - struct bpf_prog_array *run_array[2]; - struct bpf_prog *progs[2]; - struct list_head links[2]; -}; - -struct xfrm_policy_hash { - struct hlist_head *table; - unsigned int hmask; - u8 dbits4; - u8 sbits4; - u8 dbits6; - u8 sbits6; -}; - -struct xfrm_policy_hthresh { - struct work_struct work; - seqlock_t lock; - u8 lbits4; - u8 rbits4; - u8 lbits6; - u8 rbits6; -}; - -struct netns_xfrm { - struct list_head state_all; - struct hlist_head *state_bydst; - struct hlist_head *state_bysrc; - struct hlist_head *state_byspi; - struct hlist_head *state_byseq; - struct hlist_head *state_cache_input; - unsigned int state_hmask; - unsigned int state_num; - struct work_struct state_hash_work; - struct list_head policy_all; - struct hlist_head *policy_byidx; - unsigned int policy_idx_hmask; - unsigned int idx_generator; - struct xfrm_policy_hash policy_bydst[3]; - unsigned int policy_count[6]; - struct work_struct policy_hash_work; - struct xfrm_policy_hthresh policy_hthresh; - struct list_head inexact_bins; - struct sock *nlsk; - struct sock *nlsk_stash; - u32 sysctl_aevent_etime; - u32 sysctl_aevent_rseqth; - int sysctl_larval_drop; - u32 sysctl_acq_expires; - u8 policy_default[3]; - struct ctl_table_header *sysctl_hdr; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct dst_ops xfrm4_dst_ops; - struct dst_ops xfrm6_dst_ops; - spinlock_t xfrm_state_lock; - seqcount_spinlock_t xfrm_state_hash_generation; - seqcount_spinlock_t xfrm_policy_hash_generation; - spinlock_t xfrm_policy_lock; - struct mutex xfrm_cfg_mutex; - struct delayed_work nat_keepalive_work; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct mpls_route; - -struct netns_mpls { - int ip_ttl_propagate; - int default_ttl; - size_t platform_labels; - struct mpls_route **platform_label; - struct ctl_table_header *ctl; -}; - -struct netns_xdp { - struct mutex lock; - struct hlist_head list; -}; - -struct uevent_sock; - -struct net_generic; - -struct netns_ipvs; - -struct net { - refcount_t passive; - spinlock_t rules_mod_lock; - unsigned int dev_base_seq; - u32 ifindex; - spinlock_t nsid_lock; - atomic_t fnhe_genid; - struct list_head list; - struct list_head exit_list; - struct llist_node defer_free_list; - struct llist_node cleanup_list; - struct key_tag *key_domain; - struct user_namespace *user_ns; - struct ucounts *ucounts; - struct idr netns_ids; - struct ns_common ns; - struct ref_tracker_dir refcnt_tracker; - struct ref_tracker_dir notrefcnt_tracker; - struct list_head dev_base_head; - struct proc_dir_entry *proc_net; - struct proc_dir_entry *proc_net_stat; - struct ctl_table_set sysctls; - struct sock *rtnl; - struct sock *genl_sock; - struct uevent_sock *uevent_sock; - struct hlist_head *dev_name_head; - struct hlist_head *dev_index_head; - struct xarray dev_by_index; - struct raw_notifier_head netdev_chain; - u32 hash_mix; - struct net_device *loopback_dev; - struct list_head rules_ops; - struct netns_core core; - struct netns_mib mib; - struct netns_packet packet; - struct netns_unix unx; - struct netns_nexthop nexthop; - long: 64; - long: 64; - long: 64; - long: 64; - struct netns_ipv4 ipv4; - struct netns_ipv6 ipv6; - struct netns_sctp sctp; - struct netns_nf nf; - struct netns_ct ct; - struct netns_nftables nft; - struct net_generic *gen; - struct netns_bpf bpf; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct netns_xfrm xfrm; - u64 net_cookie; - struct netns_ipvs *ipvs; - struct netns_mpls mpls; - struct netns_xdp xdp; - struct sock *diag_nlsk; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct binfmt_misc { - struct list_head entries; - rwlock_t entries_lock; - bool enabled; -}; - -typedef struct { - local64_t v; -} u64_stats_t; - -struct rhashtable; - -struct rhashtable_compare_arg { - struct rhashtable *ht; - const void *key; -}; - -typedef u32 (*rht_hashfn_t)(const void *, u32, u32); - -typedef u32 (*rht_obj_hashfn_t)(const void *, u32, u32); - -typedef int (*rht_obj_cmpfn_t)(struct rhashtable_compare_arg *, const void *); - -struct rhashtable_params { - u16 nelem_hint; - u16 key_len; - u16 key_offset; - u16 head_offset; - unsigned int max_size; - u16 min_size; - bool automatic_shrinking; - rht_hashfn_t hashfn; - rht_obj_hashfn_t obj_hashfn; - rht_obj_cmpfn_t obj_cmpfn; -}; - -struct bucket_table; - -struct rhashtable { - struct bucket_table *tbl; - unsigned int key_len; - unsigned int max_elems; - struct rhashtable_params p; - bool rhlist; - struct work_struct run_work; - struct mutex mutex; - spinlock_t lock; - atomic_t nelems; -}; - -typedef short unsigned int __kernel_sa_family_t; - -typedef __kernel_sa_family_t sa_family_t; - -struct sockaddr { - sa_family_t sa_family; - union { - char sa_data_min[14]; - struct { - struct {} __empty_sa_data; - char sa_data[0]; - }; - }; -}; - -struct ubuf_info; - -struct msghdr { - void *msg_name; - int msg_namelen; - int msg_inq; - struct iov_iter msg_iter; - union { - void *msg_control; - void *msg_control_user; - }; - bool msg_control_is_user: 1; - bool msg_get_inq: 1; - unsigned int msg_flags; - __kernel_size_t msg_controllen; - struct kiocb *msg_iocb; - struct ubuf_info *msg_ubuf; - int (*sg_from_iter)(struct sk_buff *, struct iov_iter *, size_t); -}; - -struct ubuf_info_ops; - -struct ubuf_info { - const struct ubuf_info_ops *ops; - refcount_t refcnt; - u8 flags; -}; - -typedef unsigned int sk_buff_data_t; - -struct skb_ext; - -struct sk_buff { - union { - struct { - struct sk_buff *next; - struct sk_buff *prev; - union { - struct net_device *dev; - long unsigned int dev_scratch; - }; - }; - struct rb_node rbnode; - struct list_head list; - struct llist_node ll_node; - }; - struct sock *sk; - union { - ktime_t tstamp; - u64 skb_mstamp_ns; - }; - char cb[48]; - union { - struct { - long unsigned int _skb_refdst; - void (*destructor)(struct sk_buff *); - }; - struct list_head tcp_tsorted_anchor; - long unsigned int _sk_redir; - }; - long unsigned int _nfct; - unsigned int len; - unsigned int data_len; - __u16 mac_len; - __u16 hdr_len; - __u16 queue_mapping; - __u8 __cloned_offset[0]; - __u8 cloned: 1; - __u8 nohdr: 1; - __u8 fclone: 2; - __u8 peeked: 1; - __u8 head_frag: 1; - __u8 pfmemalloc: 1; - __u8 pp_recycle: 1; - __u8 active_extensions; - union { - struct { - __u8 __pkt_type_offset[0]; - __u8 pkt_type: 3; - __u8 ignore_df: 1; - __u8 dst_pending_confirm: 1; - __u8 ip_summed: 2; - __u8 ooo_okay: 1; - __u8 __mono_tc_offset[0]; - __u8 tstamp_type: 2; - __u8 tc_at_ingress: 1; - __u8 tc_skip_classify: 1; - __u8 remcsum_offload: 1; - __u8 csum_complete_sw: 1; - __u8 csum_level: 2; - __u8 inner_protocol_type: 1; - __u8 l4_hash: 1; - __u8 sw_hash: 1; - __u8 no_fcs: 1; - __u8 encapsulation: 1; - __u8 encap_hdr_csum: 1; - __u8 csum_valid: 1; - char: 1; - __u8 ndisc_nodetype: 2; - __u8 ipvs_property: 1; - __u8 nf_trace: 1; - __u8 offload_fwd_mark: 1; - __u8 offload_l3_fwd_mark: 1; - __u8 redirected: 1; - __u8 nf_skip_egress: 1; - __u8 slow_gro: 1; - __u8 csum_not_inet: 1; - __u8 unreadable: 1; - __u16 tc_index; - u16 alloc_cpu; - union { - __wsum csum; - struct { - __u16 csum_start; - __u16 csum_offset; - }; - }; - __u32 priority; - int skb_iif; - __u32 hash; - union { - u32 vlan_all; - struct { - __be16 vlan_proto; - __u16 vlan_tci; - }; - }; - union { - unsigned int napi_id; - unsigned int sender_cpu; - }; - __u32 secmark; - union { - __u32 mark; - __u32 reserved_tailroom; - }; - union { - __be16 inner_protocol; - __u8 inner_ipproto; - }; - __u16 inner_transport_header; - __u16 inner_network_header; - __u16 inner_mac_header; - __be16 protocol; - __u16 transport_header; - __u16 network_header; - __u16 mac_header; - }; - struct { - __u8 __pkt_type_offset[0]; - __u8 pkt_type: 3; - __u8 ignore_df: 1; - __u8 dst_pending_confirm: 1; - __u8 ip_summed: 2; - __u8 ooo_okay: 1; - __u8 __mono_tc_offset[0]; - __u8 tstamp_type: 2; - __u8 tc_at_ingress: 1; - __u8 tc_skip_classify: 1; - __u8 remcsum_offload: 1; - __u8 csum_complete_sw: 1; - __u8 csum_level: 2; - __u8 inner_protocol_type: 1; - __u8 l4_hash: 1; - __u8 sw_hash: 1; - __u8 no_fcs: 1; - __u8 encapsulation: 1; - __u8 encap_hdr_csum: 1; - __u8 csum_valid: 1; - char: 1; - __u8 ndisc_nodetype: 2; - __u8 ipvs_property: 1; - __u8 nf_trace: 1; - __u8 offload_fwd_mark: 1; - __u8 offload_l3_fwd_mark: 1; - __u8 redirected: 1; - __u8 nf_skip_egress: 1; - __u8 slow_gro: 1; - __u8 csum_not_inet: 1; - __u8 unreadable: 1; - __u16 tc_index; - u16 alloc_cpu; - union { - __wsum csum; - struct { - __u16 csum_start; - __u16 csum_offset; - }; - }; - __u32 priority; - int skb_iif; - __u32 hash; - union { - u32 vlan_all; - struct { - __be16 vlan_proto; - __u16 vlan_tci; - }; - }; - union { - unsigned int napi_id; - unsigned int sender_cpu; - }; - __u32 secmark; - union { - __u32 mark; - __u32 reserved_tailroom; - }; - union { - __be16 inner_protocol; - __u8 inner_ipproto; - }; - __u16 inner_transport_header; - __u16 inner_network_header; - __u16 inner_mac_header; - __be16 protocol; - __u16 transport_header; - __u16 network_header; - __u16 mac_header; - } headers; - }; - sk_buff_data_t tail; - sk_buff_data_t end; - unsigned char *head; - unsigned char *data; - unsigned int truesize; - refcount_t users; - struct skb_ext *extensions; -}; - -typedef struct { - unsigned int clock_rate; - unsigned int clock_type; - short unsigned int loopback; -} sync_serial_settings; - -typedef struct { - unsigned int clock_rate; - unsigned int clock_type; - short unsigned int loopback; - unsigned int slot_map; -} te1_settings; - -typedef struct { - short unsigned int encoding; - short unsigned int parity; -} raw_hdlc_proto; - -typedef struct { - unsigned int t391; - unsigned int t392; - unsigned int n391; - unsigned int n392; - unsigned int n393; - short unsigned int lmi; - short unsigned int dce; -} fr_proto; - -typedef struct { - unsigned int dlci; -} fr_proto_pvc; - -typedef struct { - unsigned int dlci; - char master[16]; -} fr_proto_pvc_info; - -typedef struct { - unsigned int interval; - unsigned int timeout; -} cisco_proto; - -typedef struct { - short unsigned int dce; - unsigned int modulo; - unsigned int window; - unsigned int t1; - unsigned int t2; - unsigned int n2; -} x25_hdlc_proto; - -struct ifmap { - long unsigned int mem_start; - long unsigned int mem_end; - short unsigned int base_addr; - unsigned char irq; - unsigned char dma; - unsigned char port; -}; - -struct if_settings { - unsigned int type; - unsigned int size; - union { - raw_hdlc_proto *raw_hdlc; - cisco_proto *cisco; - fr_proto *fr; - fr_proto_pvc *fr_pvc; - fr_proto_pvc_info *fr_pvc_info; - x25_hdlc_proto *x25; - sync_serial_settings *sync; - te1_settings *te1; - } ifs_ifsu; -}; - -struct ifreq { - union { - char ifrn_name[16]; - } ifr_ifrn; - union { - struct sockaddr ifru_addr; - struct sockaddr ifru_dstaddr; - struct sockaddr ifru_broadaddr; - struct sockaddr ifru_netmask; - struct sockaddr ifru_hwaddr; - short int ifru_flags; - int ifru_ivalue; - int ifru_mtu; - struct ifmap ifru_map; - char ifru_slave[16]; - char ifru_newname[16]; - void *ifru_data; - struct if_settings ifru_settings; - } ifr_ifru; -}; - -struct swap_cluster_info { - spinlock_t lock; - u16 count; - u8 flags; - u8 order; - struct list_head list; -}; - -struct percpu_cluster { - unsigned int next[10]; -}; - -typedef struct { - union { - void *kernel; - void *user; - }; - bool is_kernel: 1; -} sockptr_t; - -struct bpf_offloaded_map; - -struct bpf_map_dev_ops { - int (*map_get_next_key)(struct bpf_offloaded_map *, void *, void *); - int (*map_lookup_elem)(struct bpf_offloaded_map *, void *, void *); - int (*map_update_elem)(struct bpf_offloaded_map *, void *, void *, u64); - int (*map_delete_elem)(struct bpf_offloaded_map *, void *); -}; - -struct bpf_offloaded_map { - struct bpf_map map; - struct net_device *netdev; - const struct bpf_map_dev_ops *dev_ops; - void *dev_priv; - struct list_head offloads; -}; - -struct netdev_tc_txq { - u16 count; - u16 offset; -}; - -enum rx_handler_result { - RX_HANDLER_CONSUMED = 0, - RX_HANDLER_ANOTHER = 1, - RX_HANDLER_EXACT = 2, - RX_HANDLER_PASS = 3, -}; - -typedef enum rx_handler_result rx_handler_result_t; - -typedef rx_handler_result_t rx_handler_func_t(struct sk_buff **); - -typedef u32 xdp_features_t; - -struct net_device_stats { - union { - long unsigned int rx_packets; - atomic_long_t __rx_packets; - }; - union { - long unsigned int tx_packets; - atomic_long_t __tx_packets; - }; - union { - long unsigned int rx_bytes; - atomic_long_t __rx_bytes; - }; - union { - long unsigned int tx_bytes; - atomic_long_t __tx_bytes; - }; - union { - long unsigned int rx_errors; - atomic_long_t __rx_errors; - }; - union { - long unsigned int tx_errors; - atomic_long_t __tx_errors; - }; - union { - long unsigned int rx_dropped; - atomic_long_t __rx_dropped; - }; - union { - long unsigned int tx_dropped; - atomic_long_t __tx_dropped; - }; - union { - long unsigned int multicast; - atomic_long_t __multicast; - }; - union { - long unsigned int collisions; - atomic_long_t __collisions; - }; - union { - long unsigned int rx_length_errors; - atomic_long_t __rx_length_errors; - }; - union { - long unsigned int rx_over_errors; - atomic_long_t __rx_over_errors; - }; - union { - long unsigned int rx_crc_errors; - atomic_long_t __rx_crc_errors; - }; - union { - long unsigned int rx_frame_errors; - atomic_long_t __rx_frame_errors; - }; - union { - long unsigned int rx_fifo_errors; - atomic_long_t __rx_fifo_errors; - }; - union { - long unsigned int rx_missed_errors; - atomic_long_t __rx_missed_errors; - }; - union { - long unsigned int tx_aborted_errors; - atomic_long_t __tx_aborted_errors; - }; - union { - long unsigned int tx_carrier_errors; - atomic_long_t __tx_carrier_errors; - }; - union { - long unsigned int tx_fifo_errors; - atomic_long_t __tx_fifo_errors; - }; - union { - long unsigned int tx_heartbeat_errors; - atomic_long_t __tx_heartbeat_errors; - }; - union { - long unsigned int tx_window_errors; - atomic_long_t __tx_window_errors; - }; - union { - long unsigned int rx_compressed; - atomic_long_t __rx_compressed; - }; - union { - long unsigned int tx_compressed; - atomic_long_t __tx_compressed; - }; -}; - -struct netdev_hw_addr_list { - struct list_head list; - int count; - struct rb_root tree; -}; - -enum netdev_ml_priv_type { - ML_PRIV_NONE = 0, - ML_PRIV_CAN = 1, -}; - -enum netdev_stat_type { - NETDEV_PCPU_STAT_NONE = 0, - NETDEV_PCPU_STAT_LSTATS = 1, - NETDEV_PCPU_STAT_TSTATS = 2, - NETDEV_PCPU_STAT_DSTATS = 3, -}; - -struct sfp_bus; - -struct bpf_xdp_link; - -struct bpf_xdp_entity { - struct bpf_prog *prog; - struct bpf_xdp_link *link; -}; - -typedef struct {} netdevice_tracker; - -struct net_device_ops; - -struct header_ops; - -struct netdev_queue; - -struct xps_dev_maps; - -struct bpf_mprog_entry; - -struct pcpu_lstats; - -struct pcpu_sw_netstats; - -struct pcpu_dstats; - -struct inet6_dev; - -struct netdev_rx_queue; - -struct netdev_name_node; - -struct dev_ifalias; - -struct xdp_metadata_ops; - -struct xsk_tx_metadata_ops; - -struct net_device_core_stats; - -struct ethtool_ops; - -struct l3mdev_ops; - -struct ndisc_ops; - -struct in_device; - -struct vlan_info; - -struct mpls_dev; - -struct cpu_rmap; - -struct Qdisc; - -struct xdp_dev_bulk_queue; - -struct rtnl_link_ops; - -struct netdev_stat_ops; - -struct netdev_queue_mgmt_ops; - -struct netprio_map; - -struct phy_link_topology; - -struct phy_device; - -struct udp_tunnel_nic_info; - -struct udp_tunnel_nic; - -struct ethtool_netdev_state; - -struct rtnl_hw_stats64; - -struct devlink_port; - -struct dim_irq_moder; - -struct net_device { - __u8 __cacheline_group_begin__net_device_read_tx[0]; - union { - struct { - long unsigned int priv_flags: 32; - long unsigned int lltx: 1; - }; - struct { - long unsigned int priv_flags: 32; - long unsigned int lltx: 1; - } priv_flags_fast; - }; - const struct net_device_ops *netdev_ops; - const struct header_ops *header_ops; - struct netdev_queue *_tx; - netdev_features_t gso_partial_features; - unsigned int real_num_tx_queues; - unsigned int gso_max_size; - unsigned int gso_ipv4_max_size; - u16 gso_max_segs; - s16 num_tc; - unsigned int mtu; - short unsigned int needed_headroom; - struct netdev_tc_txq tc_to_txq[16]; - struct xps_dev_maps *xps_maps[2]; - struct nf_hook_entries *nf_hooks_egress; - struct bpf_mprog_entry *tcx_egress; - __u8 __cacheline_group_end__net_device_read_tx[0]; - __u8 __cacheline_group_begin__net_device_read_txrx[0]; - union { - struct pcpu_lstats *lstats; - struct pcpu_sw_netstats *tstats; - struct pcpu_dstats *dstats; - }; - long unsigned int state; - unsigned int flags; - short unsigned int hard_header_len; - netdev_features_t features; - struct inet6_dev *ip6_ptr; - __u8 __cacheline_group_end__net_device_read_txrx[0]; - __u8 __cacheline_group_begin__net_device_read_rx[0]; - struct bpf_prog *xdp_prog; - struct list_head ptype_specific; - int ifindex; - unsigned int real_num_rx_queues; - struct netdev_rx_queue *_rx; - long unsigned int gro_flush_timeout; - u32 napi_defer_hard_irqs; - unsigned int gro_max_size; - unsigned int gro_ipv4_max_size; - rx_handler_func_t *rx_handler; - void *rx_handler_data; - possible_net_t nd_net; - struct bpf_mprog_entry *tcx_ingress; - __u8 __cacheline_group_end__net_device_read_rx[0]; - char name[16]; - struct netdev_name_node *name_node; - struct dev_ifalias *ifalias; - long unsigned int mem_end; - long unsigned int mem_start; - long unsigned int base_addr; - struct list_head dev_list; - struct list_head napi_list; - struct list_head unreg_list; - struct list_head close_list; - struct list_head ptype_all; - struct { - struct list_head upper; - struct list_head lower; - } adj_list; - xdp_features_t xdp_features; - const struct xdp_metadata_ops *xdp_metadata_ops; - const struct xsk_tx_metadata_ops *xsk_tx_metadata_ops; - short unsigned int gflags; - short unsigned int needed_tailroom; - netdev_features_t hw_features; - netdev_features_t wanted_features; - netdev_features_t vlan_features; - netdev_features_t hw_enc_features; - netdev_features_t mpls_features; - unsigned int min_mtu; - unsigned int max_mtu; - short unsigned int type; - unsigned char min_header_len; - unsigned char name_assign_type; - int group; - struct net_device_stats stats; - struct net_device_core_stats *core_stats; - atomic_t carrier_up_count; - atomic_t carrier_down_count; - const struct ethtool_ops *ethtool_ops; - const struct l3mdev_ops *l3mdev_ops; - const struct ndisc_ops *ndisc_ops; - unsigned int operstate; - unsigned char link_mode; - unsigned char if_port; - unsigned char dma; - unsigned char perm_addr[32]; - unsigned char addr_assign_type; - unsigned char addr_len; - unsigned char upper_level; - unsigned char lower_level; - short unsigned int neigh_priv_len; - short unsigned int dev_id; - short unsigned int dev_port; - int irq; - u32 priv_len; - spinlock_t addr_list_lock; - struct netdev_hw_addr_list uc; - struct netdev_hw_addr_list mc; - struct netdev_hw_addr_list dev_addrs; - struct kset *queues_kset; - unsigned int promiscuity; - unsigned int allmulti; - bool uc_promisc; - struct in_device *ip_ptr; - struct vlan_info *vlan_info; - struct mpls_dev *mpls_ptr; - const unsigned char *dev_addr; - unsigned int num_rx_queues; - unsigned int xdp_zc_max_segs; - struct netdev_queue *ingress_queue; - struct nf_hook_entries *nf_hooks_ingress; - unsigned char broadcast[32]; - struct cpu_rmap *rx_cpu_rmap; - struct hlist_node index_hlist; - unsigned int num_tx_queues; - struct Qdisc *qdisc; - unsigned int tx_queue_len; - spinlock_t tx_global_lock; - struct xdp_dev_bulk_queue *xdp_bulkq; - struct hlist_head qdisc_hash[16]; - struct timer_list watchdog_timer; - int watchdog_timeo; - u32 proto_down_reason; - struct list_head todo_list; - int *pcpu_refcnt; - struct ref_tracker_dir refcnt_tracker; - struct list_head link_watch_list; - u8 reg_state; - bool dismantle; - enum { - RTNL_LINK_INITIALIZED = 0, - RTNL_LINK_INITIALIZING = 1, - } rtnl_link_state: 16; - bool needs_free_netdev; - void (*priv_destructor)(struct net_device *); - void *ml_priv; - enum netdev_ml_priv_type ml_priv_type; - enum netdev_stat_type pcpu_stat_type: 8; - struct device dev; - const struct attribute_group *sysfs_groups[4]; - const struct attribute_group *sysfs_rx_queue_group; - const struct rtnl_link_ops *rtnl_link_ops; - const struct netdev_stat_ops *stat_ops; - const struct netdev_queue_mgmt_ops *queue_mgmt_ops; - unsigned int tso_max_size; - u16 tso_max_segs; - u8 prio_tc_map[16]; - struct netprio_map *priomap; - struct phy_link_topology *link_topo; - struct phy_device *phydev; - struct sfp_bus *sfp_bus; - struct lock_class_key *qdisc_tx_busylock; - bool proto_down; - bool threaded; - long unsigned int see_all_hwtstamp_requests: 1; - long unsigned int change_proto_down: 1; - long unsigned int netns_local: 1; - long unsigned int fcoe_mtu: 1; - struct list_head net_notifier_list; - const struct udp_tunnel_nic_info *udp_tunnel_nic_info; - struct udp_tunnel_nic *udp_tunnel_nic; - struct ethtool_netdev_state *ethtool; - struct bpf_xdp_entity xdp_state[3]; - u8 dev_addr_shadow[32]; - netdevice_tracker linkwatch_dev_tracker; - netdevice_tracker watchdog_dev_tracker; - netdevice_tracker dev_registered_tracker; - struct rtnl_hw_stats64 *offload_xstats_l3; - struct devlink_port *devlink_port; - struct hlist_head page_pools; - struct dim_irq_moder *irq_moder; - long: 64; - u8 priv[0]; -}; - -struct bpf_prog_stats { - u64_stats_t cnt; - u64_stats_t nsecs; - u64_stats_t misses; - struct u64_stats_sync syncp; - long: 64; -}; - -struct sock_fprog_kern { - u16 len; - struct sock_filter *filter; -}; - -struct tc_stats { - __u64 bytes; - __u32 packets; - __u32 drops; - __u32 overlimits; - __u32 bps; - __u32 pps; - __u32 qlen; - __u32 backlog; -}; - -struct tc_sizespec { - unsigned char cell_log; - unsigned char size_log; - short int cell_align; - int overhead; - unsigned int linklayer; - unsigned int mpu; - unsigned int mtu; - unsigned int tsize; -}; - -struct flowi_tunnel { - __be64 tun_id; -}; - -struct flowi_common { - int flowic_oif; - int flowic_iif; - int flowic_l3mdev; - __u32 flowic_mark; - __u8 flowic_tos; - __u8 flowic_scope; - __u8 flowic_proto; - __u8 flowic_flags; - __u32 flowic_secid; - kuid_t flowic_uid; - __u32 flowic_multipath_hash; - struct flowi_tunnel flowic_tun_key; -}; - -union flowi_uli { - struct { - __be16 dport; - __be16 sport; - } ports; - struct { - __u8 type; - __u8 code; - } icmpt; - __be32 gre_key; - struct { - __u8 type; - } mht; -}; - -struct flowi4 { - struct flowi_common __fl_common; - __be32 saddr; - __be32 daddr; - union flowi_uli uli; -}; - -struct flowi6 { - struct flowi_common __fl_common; - struct in6_addr daddr; - struct in6_addr saddr; - __be32 flowlabel; - union flowi_uli uli; - __u32 mp_hash; -}; - -struct flowi { - union { - struct flowi_common __fl_common; - struct flowi4 ip4; - struct flowi6 ip6; - } u; -}; - -struct ip_conntrack_stat { - unsigned int found; - unsigned int invalid; - unsigned int insert; - unsigned int insert_failed; - unsigned int clash_resolve; - unsigned int drop; - unsigned int early_drop; - unsigned int error; - unsigned int expect_new; - unsigned int expect_create; - unsigned int expect_delete; - unsigned int search_restart; - unsigned int chaintoolong; -}; - -struct skb_shared_hwtstamps { - union { - ktime_t hwtstamp; - void *netdev_data; - }; -}; - -struct ubuf_info_ops { - void (*complete)(struct sk_buff *, struct ubuf_info *, bool); - int (*link_skb)(struct sk_buff *, struct ubuf_info *); -}; - -struct skb_ext { - refcount_t refcnt; - u8 offset[2]; - u8 chunks; - long: 0; - char data[0]; -}; - -struct dql { - unsigned int num_queued; - unsigned int adj_limit; - unsigned int last_obj_cnt; - short unsigned int stall_thrs; - long unsigned int history_head; - long unsigned int history[4]; - long: 64; - unsigned int limit; - unsigned int num_completed; - unsigned int prev_ovlimit; - unsigned int prev_num_queued; - unsigned int prev_last_obj_cnt; - unsigned int lowest_slack; - long unsigned int slack_start_time; - unsigned int max_limit; - unsigned int min_limit; - unsigned int slack_hold_time; - short unsigned int stall_max; - long unsigned int last_reap; - long unsigned int stall_cnt; -}; - -struct prot_inuse { - int all; - int val[64]; -}; - -struct ipstats_mib { - u64 mibs[38]; - struct u64_stats_sync syncp; -}; - -struct icmp_mib { - long unsigned int mibs[30]; -}; - -struct icmpmsg_mib { - atomic_long_t mibs[512]; -}; - -struct icmpv6_mib { - long unsigned int mibs[7]; -}; - -struct icmpv6_mib_device { - atomic_long_t mibs[7]; -}; - -struct icmpv6msg_mib { - atomic_long_t mibs[512]; -}; - -struct icmpv6msg_mib_device { - atomic_long_t mibs[512]; -}; - -struct tcp_mib { - long unsigned int mibs[16]; -}; - -struct udp_mib { - long unsigned int mibs[10]; -}; - -struct linux_mib { - long unsigned int mibs[132]; -}; - -struct linux_xfrm_mib { - long unsigned int mibs[31]; -}; - -struct inet_frags; - -struct fqdir { - long int high_thresh; - long int low_thresh; - int timeout; - int max_dist; - struct inet_frags *f; - struct net *net; - bool dead; - long: 64; - long: 64; - struct rhashtable rhashtable; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - atomic_long_t mem; - struct work_struct destroy_work; - struct llist_node free_list; - long: 64; - long: 64; -}; - -struct inet_frag_queue; - -struct inet_frags { - unsigned int qsize; - void (*constructor)(struct inet_frag_queue *, const void *); - void (*destructor)(struct inet_frag_queue *); - void (*frag_expire)(struct timer_list *); - struct kmem_cache *frags_cachep; - const char *frags_cache_name; - struct rhashtable_params rhash_params; - refcount_t refcnt; - struct completion completion; -}; - -struct frag_v4_compare_key { - __be32 saddr; - __be32 daddr; - u32 user; - u32 vif; - __be16 id; - u16 protocol; -}; - -struct frag_v6_compare_key { - struct in6_addr saddr; - struct in6_addr daddr; - u32 user; - __be32 id; - u32 iif; -}; - -struct inet_frag_queue { - struct rhash_head node; - union { - struct frag_v4_compare_key v4; - struct frag_v6_compare_key v6; - } key; - struct timer_list timer; - spinlock_t lock; - refcount_t refcnt; - struct rb_root rb_fragments; - struct sk_buff *fragments_tail; - struct sk_buff *last_run_head; - ktime_t stamp; - int len; - int meat; - u8 tstamp_type; - __u8 flags; - u16 max_size; - struct fqdir *fqdir; - struct callback_head rcu; -}; - -struct fib_rule; - -struct fib_lookup_arg; - -struct fib_rule_hdr; - -struct nlattr; - -struct netlink_ext_ack; - -struct fib_rules_ops { - int family; - struct list_head list; - int rule_size; - int addr_size; - int unresolved_rules; - int nr_goto_rules; - unsigned int fib_rules_seq; - int (*action)(struct fib_rule *, struct flowi *, int, struct fib_lookup_arg *); - bool (*suppress)(struct fib_rule *, int, struct fib_lookup_arg *); - int (*match)(struct fib_rule *, struct flowi *, int); - int (*configure)(struct fib_rule *, struct sk_buff *, struct fib_rule_hdr *, struct nlattr **, struct netlink_ext_ack *); - int (*delete)(struct fib_rule *); - int (*compare)(struct fib_rule *, struct fib_rule_hdr *, struct nlattr **); - int (*fill)(struct fib_rule *, struct sk_buff *, struct fib_rule_hdr *); - size_t (*nlmsg_payload)(struct fib_rule *); - void (*flush_cache)(struct fib_rules_ops *); - int nlgroup; - struct list_head rules_list; - struct module *owner; - struct net *fro_net; - struct callback_head rcu; -}; - -enum tcp_ca_event { - CA_EVENT_TX_START = 0, - CA_EVENT_CWND_RESTART = 1, - CA_EVENT_COMPLETE_CWR = 2, - CA_EVENT_LOSS = 3, - CA_EVENT_ECN_NO_CE = 4, - CA_EVENT_ECN_IS_CE = 5, -}; - -struct ack_sample; - -struct rate_sample; - -union tcp_cc_info; - -struct tcp_congestion_ops { - u32 (*ssthresh)(struct sock *); - void (*cong_avoid)(struct sock *, u32, u32); - void (*set_state)(struct sock *, u8); - void (*cwnd_event)(struct sock *, enum tcp_ca_event); - void (*in_ack_event)(struct sock *, u32); - void (*pkts_acked)(struct sock *, const struct ack_sample *); - u32 (*min_tso_segs)(struct sock *); - void (*cong_control)(struct sock *, u32, int, const struct rate_sample *); - u32 (*undo_cwnd)(struct sock *); - u32 (*sndbuf_expand)(struct sock *); - size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *); - char name[16]; - struct module *owner; - struct list_head list; - u32 key; - u32 flags; - void (*init)(struct sock *); - void (*release)(struct sock *); - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct fib_notifier_ops { - int family; - struct list_head list; - unsigned int (*fib_seq_read)(struct net *); - int (*fib_dump)(struct net *, struct notifier_block *, struct netlink_ext_ack *); - struct module *owner; - struct callback_head rcu; -}; - -struct xfrm_state; - -struct uncached_list; - -struct lwtunnel_state; - -struct dst_entry { - struct net_device *dev; - struct dst_ops *ops; - long unsigned int _metrics; - long unsigned int expires; - struct xfrm_state *xfrm; - int (*input)(struct sk_buff *); - int (*output)(struct net *, struct sock *, struct sk_buff *); - short unsigned int flags; - short int obsolete; - short unsigned int header_len; - short unsigned int trailer_len; - rcuref_t __rcuref; - int __use; - long unsigned int lastuse; - struct callback_head callback_head; - short int error; - short int __pad; - __u32 tclassid; - netdevice_tracker dev_tracker; - struct list_head rt_uncached; - struct uncached_list *rt_uncached_list; - struct lwtunnel_state *lwtstate; -}; - -struct hh_cache { - unsigned int hh_len; - seqlock_t hh_lock; - long unsigned int hh_data[4]; -}; - -struct neigh_table; - -struct neigh_parms; - -struct neigh_ops; - -struct neighbour { - struct neighbour *next; - struct neigh_table *tbl; - struct neigh_parms *parms; - long unsigned int confirmed; - long unsigned int updated; - rwlock_t lock; - refcount_t refcnt; - unsigned int arp_queue_len_bytes; - struct sk_buff_head arp_queue; - struct timer_list timer; - long unsigned int used; - atomic_t probes; - u8 nud_state; - u8 type; - u8 dead; - u8 protocol; - u32 flags; - seqlock_t ha_lock; - long: 0; - unsigned char ha[32]; - struct hh_cache hh; - int (*output)(struct neighbour *, struct sk_buff *); - const struct neigh_ops *ops; - struct list_head gc_list; - struct list_head managed_list; - struct callback_head rcu; - struct net_device *dev; - netdevice_tracker dev_tracker; - u8 primary_key[0]; -}; - -struct ipv6_stable_secret { - bool initialized; - struct in6_addr secret; -}; - -struct ipv6_devconf { - __u8 __cacheline_group_begin__ipv6_devconf_read_txrx[0]; - __s32 disable_ipv6; - __s32 hop_limit; - __s32 mtu6; - __s32 forwarding; - __s32 disable_policy; - __s32 proxy_ndp; - __u8 __cacheline_group_end__ipv6_devconf_read_txrx[0]; - __s32 accept_ra; - __s32 accept_redirects; - __s32 autoconf; - __s32 dad_transmits; - __s32 rtr_solicits; - __s32 rtr_solicit_interval; - __s32 rtr_solicit_max_interval; - __s32 rtr_solicit_delay; - __s32 force_mld_version; - __s32 mldv1_unsolicited_report_interval; - __s32 mldv2_unsolicited_report_interval; - __s32 use_tempaddr; - __s32 temp_valid_lft; - __s32 temp_prefered_lft; - __s32 regen_min_advance; - __s32 regen_max_retry; - __s32 max_desync_factor; - __s32 max_addresses; - __s32 accept_ra_defrtr; - __u32 ra_defrtr_metric; - __s32 accept_ra_min_hop_limit; - __s32 accept_ra_min_lft; - __s32 accept_ra_pinfo; - __s32 ignore_routes_with_linkdown; - __s32 accept_ra_rtr_pref; - __s32 rtr_probe_interval; - __s32 accept_source_route; - __s32 accept_ra_from_local; - __s32 drop_unicast_in_l2_multicast; - __s32 accept_dad; - __s32 force_tllao; - __s32 ndisc_notify; - __s32 suppress_frag_ndisc; - __s32 accept_ra_mtu; - __s32 drop_unsolicited_na; - __s32 accept_untracked_na; - struct ipv6_stable_secret stable_secret; - __s32 use_oif_addrs_only; - __s32 keep_addr_on_down; - __s32 seg6_enabled; - __u32 enhanced_dad; - __u32 addr_gen_mode; - __s32 ndisc_tclass; - __s32 rpl_seg_enabled; - __u32 ioam6_id; - __u32 ioam6_id_wide; - __u8 ioam6_enabled; - __u8 ndisc_evict_nocarrier; - __u8 ra_honor_pio_life; - __u8 ra_honor_pio_pflag; - struct ctl_table_header *sysctl_header; -}; - -enum { - IPPROTO_IP = 0, - IPPROTO_ICMP = 1, - IPPROTO_IGMP = 2, - IPPROTO_IPIP = 4, - IPPROTO_TCP = 6, - IPPROTO_EGP = 8, - IPPROTO_PUP = 12, - IPPROTO_UDP = 17, - IPPROTO_IDP = 22, - IPPROTO_TP = 29, - IPPROTO_DCCP = 33, - IPPROTO_IPV6 = 41, - IPPROTO_RSVP = 46, - IPPROTO_GRE = 47, - IPPROTO_ESP = 50, - IPPROTO_AH = 51, - IPPROTO_MTP = 92, - IPPROTO_BEETPH = 94, - IPPROTO_ENCAP = 98, - IPPROTO_PIM = 103, - IPPROTO_COMP = 108, - IPPROTO_L2TP = 115, - IPPROTO_SCTP = 132, - IPPROTO_UDPLITE = 136, - IPPROTO_MPLS = 137, - IPPROTO_ETHERNET = 143, - IPPROTO_RAW = 255, - IPPROTO_SMC = 256, - IPPROTO_MPTCP = 262, - IPPROTO_MAX = 263, -}; - -enum nf_log_type { - NF_LOG_TYPE_LOG = 0, - NF_LOG_TYPE_ULOG = 1, - NF_LOG_TYPE_MAX = 2, -}; - -typedef u8 u_int8_t; - -struct nf_loginfo; - -typedef void nf_logfn(struct net *, u_int8_t, unsigned int, const struct sk_buff *, const struct net_device *, const struct net_device *, const struct nf_loginfo *, const char *); - -struct nf_logger { - char *name; - enum nf_log_type type; - nf_logfn *logfn; - struct module *me; -}; - -struct netprio_map { - struct callback_head rcu; - u32 priomap_len; - u32 priomap[0]; -}; - -typedef enum { - SS_FREE = 0, - SS_UNCONNECTED = 1, - SS_CONNECTING = 2, - SS_CONNECTED = 3, - SS_DISCONNECTING = 4, -} socket_state; - -struct socket_wq { - wait_queue_head_t wait; - struct fasync_struct *fasync_list; - long unsigned int flags; - struct callback_head rcu; - long: 64; -}; - -struct proto_ops; - -struct socket { - socket_state state; - short int type; - long unsigned int flags; - struct file *file; - struct sock *sk; - const struct proto_ops *ops; - long: 64; - long: 64; - long: 64; - struct socket_wq wq; -}; - -typedef struct { - size_t written; - size_t count; - union { - char *buf; - void *data; - } arg; - int error; -} read_descriptor_t; - -typedef int (*sk_read_actor_t)(read_descriptor_t *, struct sk_buff *, unsigned int, size_t); - -typedef int (*skb_read_actor_t)(struct sock *, struct sk_buff *); - -struct proto_accept_arg; - -struct proto_ops { - int family; - struct module *owner; - int (*release)(struct socket *); - int (*bind)(struct socket *, struct sockaddr *, int); - int (*connect)(struct socket *, struct sockaddr *, int, int); - int (*socketpair)(struct socket *, struct socket *); - int (*accept)(struct socket *, struct socket *, struct proto_accept_arg *); - int (*getname)(struct socket *, struct sockaddr *, int); - __poll_t (*poll)(struct file *, struct socket *, struct poll_table_struct *); - int (*ioctl)(struct socket *, unsigned int, long unsigned int); - int (*gettstamp)(struct socket *, void *, bool, bool); - int (*listen)(struct socket *, int); - int (*shutdown)(struct socket *, int); - int (*setsockopt)(struct socket *, int, int, sockptr_t, unsigned int); - int (*getsockopt)(struct socket *, int, int, char *, int *); - void (*show_fdinfo)(struct seq_file *, struct socket *); - int (*sendmsg)(struct socket *, struct msghdr *, size_t); - int (*recvmsg)(struct socket *, struct msghdr *, size_t, int); - int (*mmap)(struct file *, struct socket *, struct vm_area_struct *); - ssize_t (*splice_read)(struct socket *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); - void (*splice_eof)(struct socket *); - int (*set_peek_off)(struct sock *, int); - int (*peek_len)(struct socket *); - int (*read_sock)(struct sock *, read_descriptor_t *, sk_read_actor_t); - int (*read_skb)(struct sock *, skb_read_actor_t); - int (*sendmsg_locked)(struct sock *, struct msghdr *, size_t); - int (*set_rcvlowat)(struct sock *, int); -}; - -struct proto_accept_arg { - int flags; - int err; - int is_empty; - bool kern; -}; - -struct nlmsghdr { - __u32 nlmsg_len; - __u16 nlmsg_type; - __u16 nlmsg_flags; - __u32 nlmsg_seq; - __u32 nlmsg_pid; -}; - -struct nlattr { - __u16 nla_len; - __u16 nla_type; -}; - -struct nla_policy; - -struct netlink_ext_ack { - const char *_msg; - const struct nlattr *bad_attr; - const struct nla_policy *policy; - const struct nlattr *miss_nest; - u16 miss_type; - u8 cookie[20]; - u8 cookie_len; - char _msg_buf[80]; -}; - -struct netlink_range_validation; - -struct netlink_range_validation_signed; - -struct nla_policy { - u8 type; - u8 validation_type; - u16 len; - union { - u16 strict_start_type; - const u32 bitfield32_valid; - const u32 mask; - const char *reject_message; - const struct nla_policy *nested_policy; - const struct netlink_range_validation *range; - const struct netlink_range_validation_signed *range_signed; - struct { - s16 min; - s16 max; - }; - int (*validate)(const struct nlattr *, struct netlink_ext_ack *); - }; -}; - -struct netlink_callback { - struct sk_buff *skb; - const struct nlmsghdr *nlh; - int (*dump)(struct sk_buff *, struct netlink_callback *); - int (*done)(struct netlink_callback *); - void *data; - struct module *module; - struct netlink_ext_ack *extack; - u16 family; - u16 answer_flags; - u32 min_dump_alloc; - unsigned int prev_seq; - unsigned int seq; - int flags; - bool strict_check; - union { - u8 ctx[48]; - long int args[6]; - }; -}; - -struct ndmsg { - __u8 ndm_family; - __u8 ndm_pad1; - __u16 ndm_pad2; - __s32 ndm_ifindex; - __u16 ndm_state; - __u8 ndm_flags; - __u8 ndm_type; -}; - -struct rtnl_link_stats64 { - __u64 rx_packets; - __u64 tx_packets; - __u64 rx_bytes; - __u64 tx_bytes; - __u64 rx_errors; - __u64 tx_errors; - __u64 rx_dropped; - __u64 tx_dropped; - __u64 multicast; - __u64 collisions; - __u64 rx_length_errors; - __u64 rx_over_errors; - __u64 rx_crc_errors; - __u64 rx_frame_errors; - __u64 rx_fifo_errors; - __u64 rx_missed_errors; - __u64 tx_aborted_errors; - __u64 tx_carrier_errors; - __u64 tx_fifo_errors; - __u64 tx_heartbeat_errors; - __u64 tx_window_errors; - __u64 rx_compressed; - __u64 tx_compressed; - __u64 rx_nohandler; - __u64 rx_otherhost_dropped; -}; - -struct rtnl_hw_stats64 { - __u64 rx_packets; - __u64 tx_packets; - __u64 rx_bytes; - __u64 tx_bytes; - __u64 rx_errors; - __u64 tx_errors; - __u64 rx_dropped; - __u64 tx_dropped; - __u64 multicast; -}; - -struct ifla_vf_guid { - __u32 vf; - __u64 guid; -}; - -struct ifla_vf_stats { - __u64 rx_packets; - __u64 tx_packets; - __u64 rx_bytes; - __u64 tx_bytes; - __u64 broadcast; - __u64 multicast; - __u64 rx_dropped; - __u64 tx_dropped; -}; - -struct ifla_vf_info { - __u32 vf; - __u8 mac[32]; - __u32 vlan; - __u32 qos; - __u32 spoofchk; - __u32 linkstate; - __u32 min_tx_rate; - __u32 max_tx_rate; - __u32 rss_query_en; - __u32 trusted; - __be16 vlan_proto; -}; - -enum netdev_tx { - __NETDEV_TX_MIN = -2147483648, - NETDEV_TX_OK = 0, - NETDEV_TX_BUSY = 16, -}; - -typedef enum netdev_tx netdev_tx_t; - -struct net_device_core_stats { - long unsigned int rx_dropped; - long unsigned int tx_dropped; - long unsigned int rx_nohandler; - long unsigned int rx_otherhost_dropped; -}; - -struct header_ops { - int (*create)(struct sk_buff *, struct net_device *, short unsigned int, const void *, const void *, unsigned int); - int (*parse)(const struct sk_buff *, unsigned char *); - int (*cache)(const struct neighbour *, struct hh_cache *, __be16); - void (*cache_update)(struct hh_cache *, const struct net_device *, const unsigned char *); - bool (*validate)(const char *, unsigned int); - __be16 (*parse_protocol)(const struct sk_buff *); -}; - -struct gro_list { - struct list_head list; - int count; -}; - -struct napi_struct { - struct list_head poll_list; - long unsigned int state; - int weight; - u32 defer_hard_irqs_count; - long unsigned int gro_bitmask; - int (*poll)(struct napi_struct *, int); - int list_owner; - struct net_device *dev; - struct gro_list gro_hash[8]; - struct sk_buff *skb; - struct list_head rx_list; - int rx_count; - unsigned int napi_id; - struct hrtimer timer; - struct task_struct *thread; - struct list_head dev_list; - struct hlist_node napi_hash_node; - int irq; -}; - -struct xsk_buff_pool; - -struct netdev_queue { - struct net_device *dev; - netdevice_tracker dev_tracker; - struct Qdisc *qdisc; - struct Qdisc *qdisc_sleeping; - struct kobject kobj; - long unsigned int tx_maxrate; - atomic_long_t trans_timeout; - struct net_device *sb_dev; - struct xsk_buff_pool *pool; - long: 64; - struct dql dql; - spinlock_t _xmit_lock; - int xmit_lock_owner; - long unsigned int trans_start; - long unsigned int state; - struct napi_struct *napi; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct qdisc_skb_head { - struct sk_buff *head; - struct sk_buff *tail; - __u32 qlen; - spinlock_t lock; -}; - -struct gnet_stats_basic_sync { - u64_stats_t bytes; - u64_stats_t packets; - struct u64_stats_sync syncp; -}; - -struct gnet_stats_queue { - __u32 qlen; - __u32 backlog; - __u32 drops; - __u32 requeues; - __u32 overlimits; -}; - -struct Qdisc_ops; - -struct qdisc_size_table; - -struct net_rate_estimator; - -struct Qdisc { - int (*enqueue)(struct sk_buff *, struct Qdisc *, struct sk_buff **); - struct sk_buff * (*dequeue)(struct Qdisc *); - unsigned int flags; - u32 limit; - const struct Qdisc_ops *ops; - struct qdisc_size_table *stab; - struct hlist_node hash; - u32 handle; - u32 parent; - struct netdev_queue *dev_queue; - struct net_rate_estimator *rate_est; - struct gnet_stats_basic_sync *cpu_bstats; - struct gnet_stats_queue *cpu_qstats; - int pad; - refcount_t refcnt; - long: 64; - long: 64; - long: 64; - struct sk_buff_head gso_skb; - struct qdisc_skb_head q; - struct gnet_stats_basic_sync bstats; - struct gnet_stats_queue qstats; - int owner; - long unsigned int state; - long unsigned int state2; - struct Qdisc *next_sched; - struct sk_buff_head skb_bad_txq; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - spinlock_t busylock; - spinlock_t seqlock; - struct callback_head rcu; - netdevice_tracker dev_tracker; - struct lock_class_key root_lock_key; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long int privdata[0]; -}; - -struct xps_map { - unsigned int len; - unsigned int alloc_len; - struct callback_head rcu; - u16 queues[0]; -}; - -struct xps_dev_maps { - struct callback_head rcu; - unsigned int nr_ids; - s16 num_tc; - struct xps_map *attr_map[0]; -}; - -struct netdev_phys_item_id { - unsigned char id[32]; - unsigned char id_len; -}; - -enum net_device_path_type { - DEV_PATH_ETHERNET = 0, - DEV_PATH_VLAN = 1, - DEV_PATH_BRIDGE = 2, - DEV_PATH_PPPOE = 3, - DEV_PATH_DSA = 4, - DEV_PATH_MTK_WDMA = 5, -}; - -struct net_device_path { - enum net_device_path_type type; - const struct net_device *dev; - union { - struct { - u16 id; - __be16 proto; - u8 h_dest[6]; - } encap; - struct { - enum { - DEV_PATH_BR_VLAN_KEEP = 0, - DEV_PATH_BR_VLAN_TAG = 1, - DEV_PATH_BR_VLAN_UNTAG = 2, - DEV_PATH_BR_VLAN_UNTAG_HW = 3, - } vlan_mode; - u16 vlan_id; - __be16 vlan_proto; - } bridge; - struct { - int port; - u16 proto; - } dsa; - struct { - u8 wdma_idx; - u8 queue; - u16 wcid; - u8 bss; - u8 amsdu; - } mtk_wdma; - }; -}; - -struct net_device_path_ctx { - const struct net_device *dev; - u8 daddr[6]; - int num_vlans; - struct { - u16 id; - __be16 proto; - } vlan[2]; -}; - -enum tc_setup_type { - TC_QUERY_CAPS = 0, - TC_SETUP_QDISC_MQPRIO = 1, - TC_SETUP_CLSU32 = 2, - TC_SETUP_CLSFLOWER = 3, - TC_SETUP_CLSMATCHALL = 4, - TC_SETUP_CLSBPF = 5, - TC_SETUP_BLOCK = 6, - TC_SETUP_QDISC_CBS = 7, - TC_SETUP_QDISC_RED = 8, - TC_SETUP_QDISC_PRIO = 9, - TC_SETUP_QDISC_MQ = 10, - TC_SETUP_QDISC_ETF = 11, - TC_SETUP_ROOT_QDISC = 12, - TC_SETUP_QDISC_GRED = 13, - TC_SETUP_QDISC_TAPRIO = 14, - TC_SETUP_FT = 15, - TC_SETUP_QDISC_ETS = 16, - TC_SETUP_QDISC_TBF = 17, - TC_SETUP_QDISC_FIFO = 18, - TC_SETUP_QDISC_HTB = 19, - TC_SETUP_ACT = 20, -}; - -enum bpf_netdev_command { - XDP_SETUP_PROG = 0, - XDP_SETUP_PROG_HW = 1, - BPF_OFFLOAD_MAP_ALLOC = 2, - BPF_OFFLOAD_MAP_FREE = 3, - XDP_SETUP_XSK_POOL = 4, -}; - -struct netdev_bpf { - enum bpf_netdev_command command; - union { - struct { - u32 flags; - struct bpf_prog *prog; - struct netlink_ext_ack *extack; - }; - struct { - struct bpf_offloaded_map *offmap; - }; - struct { - struct xsk_buff_pool *pool; - u16 queue_id; - } xsk; - }; -}; - -struct dev_ifalias { - struct callback_head rcuhead; - char ifalias[0]; -}; - -struct xdp_frame; - -struct xdp_buff; - -struct ip_tunnel_parm_kern; - -struct kernel_hwtstamp_config; - -struct net_device_ops { - int (*ndo_init)(struct net_device *); - void (*ndo_uninit)(struct net_device *); - int (*ndo_open)(struct net_device *); - int (*ndo_stop)(struct net_device *); - netdev_tx_t (*ndo_start_xmit)(struct sk_buff *, struct net_device *); - netdev_features_t (*ndo_features_check)(struct sk_buff *, struct net_device *, netdev_features_t); - u16 (*ndo_select_queue)(struct net_device *, struct sk_buff *, struct net_device *); - void (*ndo_change_rx_flags)(struct net_device *, int); - void (*ndo_set_rx_mode)(struct net_device *); - int (*ndo_set_mac_address)(struct net_device *, void *); - int (*ndo_validate_addr)(struct net_device *); - int (*ndo_do_ioctl)(struct net_device *, struct ifreq *, int); - int (*ndo_eth_ioctl)(struct net_device *, struct ifreq *, int); - int (*ndo_siocbond)(struct net_device *, struct ifreq *, int); - int (*ndo_siocwandev)(struct net_device *, struct if_settings *); - int (*ndo_siocdevprivate)(struct net_device *, struct ifreq *, void *, int); - int (*ndo_set_config)(struct net_device *, struct ifmap *); - int (*ndo_change_mtu)(struct net_device *, int); - int (*ndo_neigh_setup)(struct net_device *, struct neigh_parms *); - void (*ndo_tx_timeout)(struct net_device *, unsigned int); - void (*ndo_get_stats64)(struct net_device *, struct rtnl_link_stats64 *); - bool (*ndo_has_offload_stats)(const struct net_device *, int); - int (*ndo_get_offload_stats)(int, const struct net_device *, void *); - struct net_device_stats * (*ndo_get_stats)(struct net_device *); - int (*ndo_vlan_rx_add_vid)(struct net_device *, __be16, u16); - int (*ndo_vlan_rx_kill_vid)(struct net_device *, __be16, u16); - int (*ndo_set_vf_mac)(struct net_device *, int, u8 *); - int (*ndo_set_vf_vlan)(struct net_device *, int, u16, u8, __be16); - int (*ndo_set_vf_rate)(struct net_device *, int, int, int); - int (*ndo_set_vf_spoofchk)(struct net_device *, int, bool); - int (*ndo_set_vf_trust)(struct net_device *, int, bool); - int (*ndo_get_vf_config)(struct net_device *, int, struct ifla_vf_info *); - int (*ndo_set_vf_link_state)(struct net_device *, int, int); - int (*ndo_get_vf_stats)(struct net_device *, int, struct ifla_vf_stats *); - int (*ndo_set_vf_port)(struct net_device *, int, struct nlattr **); - int (*ndo_get_vf_port)(struct net_device *, int, struct sk_buff *); - int (*ndo_get_vf_guid)(struct net_device *, int, struct ifla_vf_guid *, struct ifla_vf_guid *); - int (*ndo_set_vf_guid)(struct net_device *, int, u64, int); - int (*ndo_set_vf_rss_query_en)(struct net_device *, int, bool); - int (*ndo_setup_tc)(struct net_device *, enum tc_setup_type, void *); - int (*ndo_rx_flow_steer)(struct net_device *, const struct sk_buff *, u16, u32); - int (*ndo_add_slave)(struct net_device *, struct net_device *, struct netlink_ext_ack *); - int (*ndo_del_slave)(struct net_device *, struct net_device *); - struct net_device * (*ndo_get_xmit_slave)(struct net_device *, struct sk_buff *, bool); - struct net_device * (*ndo_sk_get_lower_dev)(struct net_device *, struct sock *); - netdev_features_t (*ndo_fix_features)(struct net_device *, netdev_features_t); - int (*ndo_set_features)(struct net_device *, netdev_features_t); - int (*ndo_neigh_construct)(struct net_device *, struct neighbour *); - void (*ndo_neigh_destroy)(struct net_device *, struct neighbour *); - int (*ndo_fdb_add)(struct ndmsg *, struct nlattr **, struct net_device *, const unsigned char *, u16, u16, struct netlink_ext_ack *); - int (*ndo_fdb_del)(struct ndmsg *, struct nlattr **, struct net_device *, const unsigned char *, u16, struct netlink_ext_ack *); - int (*ndo_fdb_del_bulk)(struct nlmsghdr *, struct net_device *, struct netlink_ext_ack *); - int (*ndo_fdb_dump)(struct sk_buff *, struct netlink_callback *, struct net_device *, struct net_device *, int *); - int (*ndo_fdb_get)(struct sk_buff *, struct nlattr **, struct net_device *, const unsigned char *, u16, u32, u32, struct netlink_ext_ack *); - int (*ndo_mdb_add)(struct net_device *, struct nlattr **, u16, struct netlink_ext_ack *); - int (*ndo_mdb_del)(struct net_device *, struct nlattr **, struct netlink_ext_ack *); - int (*ndo_mdb_del_bulk)(struct net_device *, struct nlattr **, struct netlink_ext_ack *); - int (*ndo_mdb_dump)(struct net_device *, struct sk_buff *, struct netlink_callback *); - int (*ndo_mdb_get)(struct net_device *, struct nlattr **, u32, u32, struct netlink_ext_ack *); - int (*ndo_bridge_setlink)(struct net_device *, struct nlmsghdr *, u16, struct netlink_ext_ack *); - int (*ndo_bridge_getlink)(struct sk_buff *, u32, u32, struct net_device *, u32, int); - int (*ndo_bridge_dellink)(struct net_device *, struct nlmsghdr *, u16); - int (*ndo_change_carrier)(struct net_device *, bool); - int (*ndo_get_phys_port_id)(struct net_device *, struct netdev_phys_item_id *); - int (*ndo_get_port_parent_id)(struct net_device *, struct netdev_phys_item_id *); - int (*ndo_get_phys_port_name)(struct net_device *, char *, size_t); - void * (*ndo_dfwd_add_station)(struct net_device *, struct net_device *); - void (*ndo_dfwd_del_station)(struct net_device *, void *); - int (*ndo_set_tx_maxrate)(struct net_device *, int, u32); - int (*ndo_get_iflink)(const struct net_device *); - int (*ndo_fill_metadata_dst)(struct net_device *, struct sk_buff *); - void (*ndo_set_rx_headroom)(struct net_device *, int); - int (*ndo_bpf)(struct net_device *, struct netdev_bpf *); - int (*ndo_xdp_xmit)(struct net_device *, int, struct xdp_frame **, u32); - struct net_device * (*ndo_xdp_get_xmit_slave)(struct net_device *, struct xdp_buff *); - int (*ndo_xsk_wakeup)(struct net_device *, u32, u32); - int (*ndo_tunnel_ctl)(struct net_device *, struct ip_tunnel_parm_kern *, int); - struct net_device * (*ndo_get_peer_dev)(struct net_device *); - int (*ndo_fill_forward_path)(struct net_device_path_ctx *, struct net_device_path *); - ktime_t (*ndo_get_tstamp)(struct net_device *, const struct skb_shared_hwtstamps *, bool); - int (*ndo_hwtstamp_get)(struct net_device *, struct kernel_hwtstamp_config *); - int (*ndo_hwtstamp_set)(struct net_device *, struct kernel_hwtstamp_config *, struct netlink_ext_ack *); -}; - -struct neigh_parms { - possible_net_t net; - struct net_device *dev; - netdevice_tracker dev_tracker; - struct list_head list; - int (*neigh_setup)(struct neighbour *); - struct neigh_table *tbl; - void *sysctl_table; - int dead; - refcount_t refcnt; - struct callback_head callback_head; - int reachable_time; - u32 qlen; - int data[14]; - long unsigned int data_state[1]; -}; - -enum hwtstamp_source { - HWTSTAMP_SOURCE_UNSPEC = 0, - HWTSTAMP_SOURCE_NETDEV = 1, - HWTSTAMP_SOURCE_PHYLIB = 2, -}; - -struct kernel_hwtstamp_config { - int flags; - int tx_type; - int rx_filter; - struct ifreq *ifr; - bool copied_to_user; - enum hwtstamp_source source; -}; - -struct pcpu_lstats { - u64_stats_t packets; - u64_stats_t bytes; - struct u64_stats_sync syncp; -}; - -struct pcpu_sw_netstats { - u64_stats_t rx_packets; - u64_stats_t rx_bytes; - u64_stats_t tx_packets; - u64_stats_t tx_bytes; - struct u64_stats_sync syncp; -}; - -struct pcpu_dstats { - u64_stats_t rx_packets; - u64_stats_t rx_bytes; - u64_stats_t rx_drops; - u64_stats_t tx_packets; - u64_stats_t tx_bytes; - u64_stats_t tx_drops; - struct u64_stats_sync syncp; - long: 64; - long: 64; -}; - -struct ipv6_devstat { - struct proc_dir_entry *proc_dir_entry; - struct ipstats_mib *ipv6; - struct icmpv6_mib_device *icmpv6dev; - struct icmpv6msg_mib_device *icmpv6msgdev; -}; - -struct ifmcaddr6; - -struct ifacaddr6; - -struct inet6_dev { - struct net_device *dev; - netdevice_tracker dev_tracker; - struct list_head addr_list; - struct ifmcaddr6 *mc_list; - struct ifmcaddr6 *mc_tomb; - unsigned char mc_qrv; - unsigned char mc_gq_running; - unsigned char mc_ifc_count; - unsigned char mc_dad_count; - long unsigned int mc_v1_seen; - long unsigned int mc_qi; - long unsigned int mc_qri; - long unsigned int mc_maxdelay; - struct delayed_work mc_gq_work; - struct delayed_work mc_ifc_work; - struct delayed_work mc_dad_work; - struct delayed_work mc_query_work; - struct delayed_work mc_report_work; - struct sk_buff_head mc_query_queue; - struct sk_buff_head mc_report_queue; - spinlock_t mc_query_lock; - spinlock_t mc_report_lock; - struct mutex mc_lock; - struct ifacaddr6 *ac_list; - rwlock_t lock; - refcount_t refcnt; - __u32 if_flags; - int dead; - u32 desync_factor; - struct list_head tempaddr_list; - struct in6_addr token; - struct neigh_parms *nd_parms; - struct ipv6_devconf cnf; - struct ipv6_devstat stats; - struct timer_list rs_timer; - __s32 rs_interval; - __u8 rs_probes; - long unsigned int tstamp; - struct callback_head rcu; - unsigned int ra_mtu; -}; - -enum xdp_rss_hash_type { - XDP_RSS_L3_IPV4 = 1, - XDP_RSS_L3_IPV6 = 2, - XDP_RSS_L3_DYNHDR = 4, - XDP_RSS_L4 = 8, - XDP_RSS_L4_TCP = 16, - XDP_RSS_L4_UDP = 32, - XDP_RSS_L4_SCTP = 64, - XDP_RSS_L4_IPSEC = 128, - XDP_RSS_L4_ICMP = 256, - XDP_RSS_TYPE_NONE = 0, - XDP_RSS_TYPE_L2 = 0, - XDP_RSS_TYPE_L3_IPV4 = 1, - XDP_RSS_TYPE_L3_IPV6 = 2, - XDP_RSS_TYPE_L3_IPV4_OPT = 5, - XDP_RSS_TYPE_L3_IPV6_EX = 6, - XDP_RSS_TYPE_L4_ANY = 8, - XDP_RSS_TYPE_L4_IPV4_TCP = 25, - XDP_RSS_TYPE_L4_IPV4_UDP = 41, - XDP_RSS_TYPE_L4_IPV4_SCTP = 73, - XDP_RSS_TYPE_L4_IPV4_IPSEC = 137, - XDP_RSS_TYPE_L4_IPV4_ICMP = 265, - XDP_RSS_TYPE_L4_IPV6_TCP = 26, - XDP_RSS_TYPE_L4_IPV6_UDP = 42, - XDP_RSS_TYPE_L4_IPV6_SCTP = 74, - XDP_RSS_TYPE_L4_IPV6_IPSEC = 138, - XDP_RSS_TYPE_L4_IPV6_ICMP = 266, - XDP_RSS_TYPE_L4_IPV6_TCP_EX = 30, - XDP_RSS_TYPE_L4_IPV6_UDP_EX = 46, - XDP_RSS_TYPE_L4_IPV6_SCTP_EX = 78, -}; - -struct xdp_md; - -struct xdp_metadata_ops { - int (*xmo_rx_timestamp)(const struct xdp_md *, u64 *); - int (*xmo_rx_hash)(const struct xdp_md *, u32 *, enum xdp_rss_hash_type *); - int (*xmo_rx_vlan_tag)(const struct xdp_md *, __be16 *, u16 *); -}; - -struct xsk_tx_metadata_ops { - void (*tmo_request_timestamp)(void *); - u64 (*tmo_fill_timestamp)(void *); - void (*tmo_request_checksum)(u16, u16, void *); -}; - -enum ethtool_phys_id_state { - ETHTOOL_ID_INACTIVE = 0, - ETHTOOL_ID_ACTIVE = 1, - ETHTOOL_ID_ON = 2, - ETHTOOL_ID_OFF = 3, -}; - -struct ethtool_drvinfo; - -struct ethtool_regs; - -struct ethtool_wolinfo; - -struct ethtool_link_ext_state_info; - -struct ethtool_link_ext_stats; - -struct ethtool_eeprom; - -struct ethtool_coalesce; - -struct kernel_ethtool_coalesce; - -struct ethtool_ringparam; - -struct kernel_ethtool_ringparam; - -struct ethtool_pause_stats; - -struct ethtool_pauseparam; - -struct ethtool_test; - -struct ethtool_stats; - -struct ethtool_rxnfc; - -struct ethtool_flash; - -struct ethtool_rxfh_param; - -struct ethtool_rxfh_context; - -struct ethtool_channels; - -struct ethtool_dump; - -struct kernel_ethtool_ts_info; - -struct ethtool_ts_stats; - -struct ethtool_modinfo; - -struct ethtool_keee; - -struct ethtool_tunable; - -struct ethtool_link_ksettings; - -struct ethtool_fec_stats; - -struct ethtool_fecparam; - -struct ethtool_module_eeprom; - -struct ethtool_eth_phy_stats; - -struct ethtool_eth_mac_stats; - -struct ethtool_eth_ctrl_stats; - -struct ethtool_rmon_stats; - -struct ethtool_rmon_hist_range; - -struct ethtool_module_power_mode_params; - -struct ethtool_mm_state; - -struct ethtool_mm_cfg; - -struct ethtool_mm_stats; - -struct ethtool_ops { - u32 cap_link_lanes_supported: 1; - u32 cap_rss_ctx_supported: 1; - u32 cap_rss_sym_xor_supported: 1; - u32 rxfh_per_ctx_key: 1; - u32 cap_rss_rxnfc_adds: 1; - u32 rxfh_indir_space; - u16 rxfh_key_space; - u16 rxfh_priv_size; - u32 rxfh_max_num_contexts; - u32 supported_coalesce_params; - u32 supported_ring_params; - void (*get_drvinfo)(struct net_device *, struct ethtool_drvinfo *); - int (*get_regs_len)(struct net_device *); - void (*get_regs)(struct net_device *, struct ethtool_regs *, void *); - void (*get_wol)(struct net_device *, struct ethtool_wolinfo *); - int (*set_wol)(struct net_device *, struct ethtool_wolinfo *); - u32 (*get_msglevel)(struct net_device *); - void (*set_msglevel)(struct net_device *, u32); - int (*nway_reset)(struct net_device *); - u32 (*get_link)(struct net_device *); - int (*get_link_ext_state)(struct net_device *, struct ethtool_link_ext_state_info *); - void (*get_link_ext_stats)(struct net_device *, struct ethtool_link_ext_stats *); - int (*get_eeprom_len)(struct net_device *); - int (*get_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); - int (*set_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); - int (*get_coalesce)(struct net_device *, struct ethtool_coalesce *, struct kernel_ethtool_coalesce *, struct netlink_ext_ack *); - int (*set_coalesce)(struct net_device *, struct ethtool_coalesce *, struct kernel_ethtool_coalesce *, struct netlink_ext_ack *); - void (*get_ringparam)(struct net_device *, struct ethtool_ringparam *, struct kernel_ethtool_ringparam *, struct netlink_ext_ack *); - int (*set_ringparam)(struct net_device *, struct ethtool_ringparam *, struct kernel_ethtool_ringparam *, struct netlink_ext_ack *); - void (*get_pause_stats)(struct net_device *, struct ethtool_pause_stats *); - void (*get_pauseparam)(struct net_device *, struct ethtool_pauseparam *); - int (*set_pauseparam)(struct net_device *, struct ethtool_pauseparam *); - void (*self_test)(struct net_device *, struct ethtool_test *, u64 *); - void (*get_strings)(struct net_device *, u32, u8 *); - int (*set_phys_id)(struct net_device *, enum ethtool_phys_id_state); - void (*get_ethtool_stats)(struct net_device *, struct ethtool_stats *, u64 *); - int (*begin)(struct net_device *); - void (*complete)(struct net_device *); - u32 (*get_priv_flags)(struct net_device *); - int (*set_priv_flags)(struct net_device *, u32); - int (*get_sset_count)(struct net_device *, int); - int (*get_rxnfc)(struct net_device *, struct ethtool_rxnfc *, u32 *); - int (*set_rxnfc)(struct net_device *, struct ethtool_rxnfc *); - int (*flash_device)(struct net_device *, struct ethtool_flash *); - int (*reset)(struct net_device *, u32 *); - u32 (*get_rxfh_key_size)(struct net_device *); - u32 (*get_rxfh_indir_size)(struct net_device *); - int (*get_rxfh)(struct net_device *, struct ethtool_rxfh_param *); - int (*set_rxfh)(struct net_device *, struct ethtool_rxfh_param *, struct netlink_ext_ack *); - int (*create_rxfh_context)(struct net_device *, struct ethtool_rxfh_context *, const struct ethtool_rxfh_param *, struct netlink_ext_ack *); - int (*modify_rxfh_context)(struct net_device *, struct ethtool_rxfh_context *, const struct ethtool_rxfh_param *, struct netlink_ext_ack *); - int (*remove_rxfh_context)(struct net_device *, struct ethtool_rxfh_context *, u32, struct netlink_ext_ack *); - void (*get_channels)(struct net_device *, struct ethtool_channels *); - int (*set_channels)(struct net_device *, struct ethtool_channels *); - int (*get_dump_flag)(struct net_device *, struct ethtool_dump *); - int (*get_dump_data)(struct net_device *, struct ethtool_dump *, void *); - int (*set_dump)(struct net_device *, struct ethtool_dump *); - int (*get_ts_info)(struct net_device *, struct kernel_ethtool_ts_info *); - void (*get_ts_stats)(struct net_device *, struct ethtool_ts_stats *); - int (*get_module_info)(struct net_device *, struct ethtool_modinfo *); - int (*get_module_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); - int (*get_eee)(struct net_device *, struct ethtool_keee *); - int (*set_eee)(struct net_device *, struct ethtool_keee *); - int (*get_tunable)(struct net_device *, const struct ethtool_tunable *, void *); - int (*set_tunable)(struct net_device *, const struct ethtool_tunable *, const void *); - int (*get_per_queue_coalesce)(struct net_device *, u32, struct ethtool_coalesce *); - int (*set_per_queue_coalesce)(struct net_device *, u32, struct ethtool_coalesce *); - int (*get_link_ksettings)(struct net_device *, struct ethtool_link_ksettings *); - int (*set_link_ksettings)(struct net_device *, const struct ethtool_link_ksettings *); - void (*get_fec_stats)(struct net_device *, struct ethtool_fec_stats *); - int (*get_fecparam)(struct net_device *, struct ethtool_fecparam *); - int (*set_fecparam)(struct net_device *, struct ethtool_fecparam *); - void (*get_ethtool_phy_stats)(struct net_device *, struct ethtool_stats *, u64 *); - int (*get_phy_tunable)(struct net_device *, const struct ethtool_tunable *, void *); - int (*set_phy_tunable)(struct net_device *, const struct ethtool_tunable *, const void *); - int (*get_module_eeprom_by_page)(struct net_device *, const struct ethtool_module_eeprom *, struct netlink_ext_ack *); - int (*set_module_eeprom_by_page)(struct net_device *, const struct ethtool_module_eeprom *, struct netlink_ext_ack *); - void (*get_eth_phy_stats)(struct net_device *, struct ethtool_eth_phy_stats *); - void (*get_eth_mac_stats)(struct net_device *, struct ethtool_eth_mac_stats *); - void (*get_eth_ctrl_stats)(struct net_device *, struct ethtool_eth_ctrl_stats *); - void (*get_rmon_stats)(struct net_device *, struct ethtool_rmon_stats *, const struct ethtool_rmon_hist_range **); - int (*get_module_power_mode)(struct net_device *, struct ethtool_module_power_mode_params *, struct netlink_ext_ack *); - int (*set_module_power_mode)(struct net_device *, const struct ethtool_module_power_mode_params *, struct netlink_ext_ack *); - int (*get_mm)(struct net_device *, struct ethtool_mm_state *); - int (*set_mm)(struct net_device *, struct ethtool_mm_cfg *, struct netlink_ext_ack *); - void (*get_mm_stats)(struct net_device *, struct ethtool_mm_stats *); -}; - -struct l3mdev_ops { - u32 (*l3mdev_fib_table)(const struct net_device *); - struct sk_buff * (*l3mdev_l3_rcv)(struct net_device *, struct sk_buff *, u16); - struct sk_buff * (*l3mdev_l3_out)(struct net_device *, struct sock *, struct sk_buff *, u16); - struct dst_entry * (*l3mdev_link_scope_lookup)(const struct net_device *, struct flowi6 *); -}; - -struct nd_opt_hdr; - -struct ndisc_options; - -struct prefix_info; - -struct ndisc_ops { - int (*parse_options)(const struct net_device *, struct nd_opt_hdr *, struct ndisc_options *); - void (*update)(const struct net_device *, struct neighbour *, u32, u8, const struct ndisc_options *); - int (*opt_addr_space)(const struct net_device *, u8, struct neighbour *, u8 *, u8 **); - void (*fill_addr_option)(const struct net_device *, struct sk_buff *, u8, const u8 *); - void (*prefix_rcv_add_addr)(struct net *, struct net_device *, const struct prefix_info *, struct inet6_dev *, struct in6_addr *, int, u32, bool, bool, __u32, u32, bool); -}; - -struct rtnl_link_ops { - struct list_head list; - const char *kind; - size_t priv_size; - struct net_device * (*alloc)(struct nlattr **, const char *, unsigned char, unsigned int, unsigned int); - void (*setup)(struct net_device *); - bool netns_refund; - unsigned int maxtype; - const struct nla_policy *policy; - int (*validate)(struct nlattr **, struct nlattr **, struct netlink_ext_ack *); - int (*newlink)(struct net *, struct net_device *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); - int (*changelink)(struct net_device *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); - void (*dellink)(struct net_device *, struct list_head *); - size_t (*get_size)(const struct net_device *); - int (*fill_info)(struct sk_buff *, const struct net_device *); - size_t (*get_xstats_size)(const struct net_device *); - int (*fill_xstats)(struct sk_buff *, const struct net_device *); - unsigned int (*get_num_tx_queues)(void); - unsigned int (*get_num_rx_queues)(void); - unsigned int slave_maxtype; - const struct nla_policy *slave_policy; - int (*slave_changelink)(struct net_device *, struct net_device *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); - size_t (*get_slave_size)(const struct net_device *, const struct net_device *); - int (*fill_slave_info)(struct sk_buff *, const struct net_device *, const struct net_device *); - struct net * (*get_link_net)(const struct net_device *); - size_t (*get_linkxstats_size)(const struct net_device *, int); - int (*fill_linkxstats)(struct sk_buff *, const struct net_device *, int *, int); -}; - -struct netdev_queue_stats_rx; - -struct netdev_queue_stats_tx; - -struct netdev_stat_ops { - void (*get_queue_stats_rx)(struct net_device *, int, struct netdev_queue_stats_rx *); - void (*get_queue_stats_tx)(struct net_device *, int, struct netdev_queue_stats_tx *); - void (*get_base_stats)(struct net_device *, struct netdev_queue_stats_rx *, struct netdev_queue_stats_tx *); -}; - -struct netdev_queue_mgmt_ops { - size_t ndo_queue_mem_size; - int (*ndo_queue_mem_alloc)(struct net_device *, void *, int); - void (*ndo_queue_mem_free)(struct net_device *, void *); - int (*ndo_queue_start)(struct net_device *, void *, int); - int (*ndo_queue_stop)(struct net_device *, void *, int); -}; - -struct udp_tunnel_nic_table_info { - unsigned int n_entries; - unsigned int tunnel_types; -}; - -struct udp_tunnel_info; - -struct udp_tunnel_nic_shared; - -struct udp_tunnel_nic_info { - int (*set_port)(struct net_device *, unsigned int, unsigned int, struct udp_tunnel_info *); - int (*unset_port)(struct net_device *, unsigned int, unsigned int, struct udp_tunnel_info *); - int (*sync_table)(struct net_device *, unsigned int); - struct udp_tunnel_nic_shared *shared; - unsigned int flags; - struct udp_tunnel_nic_table_info tables[4]; -}; - -enum { - RTAX_UNSPEC = 0, - RTAX_LOCK = 1, - RTAX_MTU = 2, - RTAX_WINDOW = 3, - RTAX_RTT = 4, - RTAX_RTTVAR = 5, - RTAX_SSTHRESH = 6, - RTAX_CWND = 7, - RTAX_ADVMSS = 8, - RTAX_REORDERING = 9, - RTAX_HOPLIMIT = 10, - RTAX_INITCWND = 11, - RTAX_FEATURES = 12, - RTAX_RTO_MIN = 13, - RTAX_INITRWND = 14, - RTAX_QUICKACK = 15, - RTAX_CC_ALGO = 16, - RTAX_FASTOPEN_NO_COOKIE = 17, - __RTAX_MAX = 18, -}; - -struct tcmsg { - unsigned char tcm_family; - unsigned char tcm__pad1; - short unsigned int tcm__pad2; - int tcm_ifindex; - __u32 tcm_handle; - __u32 tcm_parent; - __u32 tcm_info; -}; - -struct gnet_dump { - spinlock_t *lock; - struct sk_buff *skb; - struct nlattr *tail; - int compat_tc_stats; - int compat_xstats; - int padattr; - void *xstats; - int xstats_len; - struct tc_stats tc_stats; -}; - -struct netlink_range_validation { - u64 min; - u64 max; -}; - -struct netlink_range_validation_signed { - s64 min; - s64 max; -}; - -enum flow_action_hw_stats_bit { - FLOW_ACTION_HW_STATS_IMMEDIATE_BIT = 0, - FLOW_ACTION_HW_STATS_DELAYED_BIT = 1, - FLOW_ACTION_HW_STATS_DISABLED_BIT = 2, - FLOW_ACTION_HW_STATS_NUM_BITS = 3, -}; - -struct flow_block { - struct list_head cb_list; -}; - -typedef int flow_setup_cb_t(enum tc_setup_type, void *, void *); - -struct qdisc_size_table { - struct callback_head rcu; - struct list_head list; - struct tc_sizespec szopts; - int refcnt; - u16 data[0]; -}; - -struct Qdisc_class_ops; - -struct Qdisc_ops { - struct Qdisc_ops *next; - const struct Qdisc_class_ops *cl_ops; - char id[16]; - int priv_size; - unsigned int static_flags; - int (*enqueue)(struct sk_buff *, struct Qdisc *, struct sk_buff **); - struct sk_buff * (*dequeue)(struct Qdisc *); - struct sk_buff * (*peek)(struct Qdisc *); - int (*init)(struct Qdisc *, struct nlattr *, struct netlink_ext_ack *); - void (*reset)(struct Qdisc *); - void (*destroy)(struct Qdisc *); - int (*change)(struct Qdisc *, struct nlattr *, struct netlink_ext_ack *); - void (*attach)(struct Qdisc *); - int (*change_tx_queue_len)(struct Qdisc *, unsigned int); - void (*change_real_num_tx)(struct Qdisc *, unsigned int); - int (*dump)(struct Qdisc *, struct sk_buff *); - int (*dump_stats)(struct Qdisc *, struct gnet_dump *); - void (*ingress_block_set)(struct Qdisc *, u32); - void (*egress_block_set)(struct Qdisc *, u32); - u32 (*ingress_block_get)(struct Qdisc *); - u32 (*egress_block_get)(struct Qdisc *); - struct module *owner; -}; - -struct qdisc_walker; - -struct tcf_block; - -struct Qdisc_class_ops { - unsigned int flags; - struct netdev_queue * (*select_queue)(struct Qdisc *, struct tcmsg *); - int (*graft)(struct Qdisc *, long unsigned int, struct Qdisc *, struct Qdisc **, struct netlink_ext_ack *); - struct Qdisc * (*leaf)(struct Qdisc *, long unsigned int); - void (*qlen_notify)(struct Qdisc *, long unsigned int); - long unsigned int (*find)(struct Qdisc *, u32); - int (*change)(struct Qdisc *, u32, u32, struct nlattr **, long unsigned int *, struct netlink_ext_ack *); - int (*delete)(struct Qdisc *, long unsigned int, struct netlink_ext_ack *); - void (*walk)(struct Qdisc *, struct qdisc_walker *); - struct tcf_block * (*tcf_block)(struct Qdisc *, long unsigned int, struct netlink_ext_ack *); - long unsigned int (*bind_tcf)(struct Qdisc *, long unsigned int, u32); - void (*unbind_tcf)(struct Qdisc *, long unsigned int); - int (*dump)(struct Qdisc *, long unsigned int, struct sk_buff *, struct tcmsg *); - int (*dump_stats)(struct Qdisc *, long unsigned int, struct gnet_dump *); -}; - -struct tcf_chain; - -struct tcf_block { - struct xarray ports; - struct mutex lock; - struct list_head chain_list; - u32 index; - u32 classid; - refcount_t refcnt; - struct net *net; - struct Qdisc *q; - struct rw_semaphore cb_lock; - struct flow_block flow_block; - struct list_head owner_list; - bool keep_dst; - atomic_t useswcnt; - atomic_t offloadcnt; - unsigned int nooffloaddevcnt; - unsigned int lockeddevcnt; - struct { - struct tcf_chain *chain; - struct list_head filter_chain_list; - } chain0; - struct callback_head rcu; - struct hlist_head proto_destroy_ht[128]; - struct mutex proto_destroy_lock; -}; - -struct tcf_result; - -struct tcf_proto_ops; - -struct tcf_proto { - struct tcf_proto *next; - void *root; - int (*classify)(struct sk_buff *, const struct tcf_proto *, struct tcf_result *); - __be16 protocol; - u32 prio; - void *data; - const struct tcf_proto_ops *ops; - struct tcf_chain *chain; - spinlock_t lock; - bool deleting; - bool counted; - bool usesw; - refcount_t refcnt; - struct callback_head rcu; - struct hlist_node destroy_ht_node; -}; - -struct tcf_result { - union { - struct { - long unsigned int class; - u32 classid; - }; - const struct tcf_proto *goto_tp; - }; -}; - -struct tcf_walker; - -struct tcf_exts; - -struct tcf_proto_ops { - struct list_head head; - char kind[16]; - int (*classify)(struct sk_buff *, const struct tcf_proto *, struct tcf_result *); - int (*init)(struct tcf_proto *); - void (*destroy)(struct tcf_proto *, bool, struct netlink_ext_ack *); - void * (*get)(struct tcf_proto *, u32); - void (*put)(struct tcf_proto *, void *); - int (*change)(struct net *, struct sk_buff *, struct tcf_proto *, long unsigned int, u32, struct nlattr **, void **, u32, struct netlink_ext_ack *); - int (*delete)(struct tcf_proto *, void *, bool *, bool, struct netlink_ext_ack *); - bool (*delete_empty)(struct tcf_proto *); - void (*walk)(struct tcf_proto *, struct tcf_walker *, bool); - int (*reoffload)(struct tcf_proto *, bool, flow_setup_cb_t *, void *, struct netlink_ext_ack *); - void (*hw_add)(struct tcf_proto *, void *); - void (*hw_del)(struct tcf_proto *, void *); - void (*bind_class)(void *, u32, long unsigned int, void *, long unsigned int); - void * (*tmplt_create)(struct net *, struct tcf_chain *, struct nlattr **, struct netlink_ext_ack *); - void (*tmplt_destroy)(void *); - void (*tmplt_reoffload)(struct tcf_chain *, bool, flow_setup_cb_t *, void *); - struct tcf_exts * (*get_exts)(const struct tcf_proto *, u32); - int (*dump)(struct net *, struct tcf_proto *, void *, struct sk_buff *, struct tcmsg *, bool); - int (*terse_dump)(struct net *, struct tcf_proto *, void *, struct sk_buff *, struct tcmsg *, bool); - int (*tmplt_dump)(struct sk_buff *, struct net *, void *); - struct module *owner; - int flags; -}; - -struct tcf_chain { - struct mutex filter_chain_lock; - struct tcf_proto *filter_chain; - struct list_head list; - struct tcf_block *block; - u32 index; - unsigned int refcnt; - unsigned int action_refcnt; - bool explicitly_created; - bool flushing; - const struct tcf_proto_ops *tmplt_ops; - void *tmplt_priv; - struct callback_head rcu; -}; - -struct sk_filter { - refcount_t refcnt; - struct callback_head rcu; - struct bpf_prog *prog; -}; - -enum rpc_display_format_t { - RPC_DISPLAY_ADDR = 0, - RPC_DISPLAY_PORT = 1, - RPC_DISPLAY_PROTO = 2, - RPC_DISPLAY_HEX_ADDR = 3, - RPC_DISPLAY_HEX_PORT = 4, - RPC_DISPLAY_NETID = 5, - RPC_DISPLAY_MAX = 6, -}; - -enum { - NEIGH_VAR_MCAST_PROBES = 0, - NEIGH_VAR_UCAST_PROBES = 1, - NEIGH_VAR_APP_PROBES = 2, - NEIGH_VAR_MCAST_REPROBES = 3, - NEIGH_VAR_RETRANS_TIME = 4, - NEIGH_VAR_BASE_REACHABLE_TIME = 5, - NEIGH_VAR_DELAY_PROBE_TIME = 6, - NEIGH_VAR_INTERVAL_PROBE_TIME_MS = 7, - NEIGH_VAR_GC_STALETIME = 8, - NEIGH_VAR_QUEUE_LEN_BYTES = 9, - NEIGH_VAR_PROXY_QLEN = 10, - NEIGH_VAR_ANYCAST_DELAY = 11, - NEIGH_VAR_PROXY_DELAY = 12, - NEIGH_VAR_LOCKTIME = 13, - NEIGH_VAR_QUEUE_LEN = 14, - NEIGH_VAR_RETRANS_TIME_MS = 15, - NEIGH_VAR_BASE_REACHABLE_TIME_MS = 16, - NEIGH_VAR_GC_INTERVAL = 17, - NEIGH_VAR_GC_THRESH1 = 18, - NEIGH_VAR_GC_THRESH2 = 19, - NEIGH_VAR_GC_THRESH3 = 20, - NEIGH_VAR_MAX = 21, -}; - -struct pneigh_entry; - -struct neigh_statistics; - -struct neigh_hash_table; - -struct neigh_table { - int family; - unsigned int entry_size; - unsigned int key_len; - __be16 protocol; - __u32 (*hash)(const void *, const struct net_device *, __u32 *); - bool (*key_eq)(const struct neighbour *, const void *); - int (*constructor)(struct neighbour *); - int (*pconstructor)(struct pneigh_entry *); - void (*pdestructor)(struct pneigh_entry *); - void (*proxy_redo)(struct sk_buff *); - int (*is_multicast)(const void *); - bool (*allow_add)(const struct net_device *, struct netlink_ext_ack *); - char *id; - struct neigh_parms parms; - struct list_head parms_list; - int gc_interval; - int gc_thresh1; - int gc_thresh2; - int gc_thresh3; - long unsigned int last_flush; - struct delayed_work gc_work; - struct delayed_work managed_work; - struct timer_list proxy_timer; - struct sk_buff_head proxy_queue; - atomic_t entries; - atomic_t gc_entries; - struct list_head gc_list; - struct list_head managed_list; - rwlock_t lock; - long unsigned int last_rand; - struct neigh_statistics *stats; - struct neigh_hash_table *nht; - struct pneigh_entry **phash_buckets; -}; - -struct neigh_statistics { - long unsigned int allocs; - long unsigned int destroys; - long unsigned int hash_grows; - long unsigned int res_failed; - long unsigned int lookups; - long unsigned int hits; - long unsigned int rcv_probes_mcast; - long unsigned int rcv_probes_ucast; - long unsigned int periodic_gc_runs; - long unsigned int forced_gc_runs; - long unsigned int unres_discards; - long unsigned int table_fulls; -}; - -struct neigh_ops { - int family; - void (*solicit)(struct neighbour *, struct sk_buff *); - void (*error_report)(struct neighbour *, struct sk_buff *); - int (*output)(struct neighbour *, struct sk_buff *); - int (*connected_output)(struct neighbour *, struct sk_buff *); -}; - -struct pneigh_entry { - struct pneigh_entry *next; - possible_net_t net; - struct net_device *dev; - netdevice_tracker dev_tracker; - u32 flags; - u8 protocol; - bool permanent; - u32 key[0]; -}; - -struct neigh_hash_table { - struct neighbour **hash_buckets; - unsigned int hash_shift; - __u32 hash_rnd[4]; - struct callback_head rcu; -}; - -enum { - TCP_ESTABLISHED = 1, - TCP_SYN_SENT = 2, - TCP_SYN_RECV = 3, - TCP_FIN_WAIT1 = 4, - TCP_FIN_WAIT2 = 5, - TCP_TIME_WAIT = 6, - TCP_CLOSE = 7, - TCP_CLOSE_WAIT = 8, - TCP_LAST_ACK = 9, - TCP_LISTEN = 10, - TCP_CLOSING = 11, - TCP_NEW_SYN_RECV = 12, - TCP_BOUND_INACTIVE = 13, - TCP_MAX_STATES = 14, -}; - -struct fib_rule_hdr { - __u8 family; - __u8 dst_len; - __u8 src_len; - __u8 tos; - __u8 table; - __u8 res1; - __u8 res2; - __u8 action; - __u32 flags; -}; - -struct fib_rule_port_range { - __u16 start; - __u16 end; -}; - -struct fib_kuid_range { - kuid_t start; - kuid_t end; -}; - -struct fib_rule { - struct list_head list; - int iifindex; - int oifindex; - u32 mark; - u32 mark_mask; - u32 flags; - u32 table; - u8 action; - u8 l3mdev; - u8 proto; - u8 ip_proto; - u32 target; - __be64 tun_id; - struct fib_rule *ctarget; - struct net *fr_net; - refcount_t refcnt; - u32 pref; - int suppress_ifgroup; - int suppress_prefixlen; - char iifname[16]; - char oifname[16]; - struct fib_kuid_range uid_range; - struct fib_rule_port_range sport_range; - struct fib_rule_port_range dport_range; - struct callback_head rcu; -}; - -struct fib_lookup_arg { - void *lookup_ptr; - const void *lookup_data; - void *result; - struct fib_rule *rule; - u32 table; - int flags; -}; - -struct smc_hashinfo; - -struct sk_psock; - -struct request_sock_ops; - -struct timewait_sock_ops; - -struct raw_hashinfo; - -struct proto { - void (*close)(struct sock *, long int); - int (*pre_connect)(struct sock *, struct sockaddr *, int); - int (*connect)(struct sock *, struct sockaddr *, int); - int (*disconnect)(struct sock *, int); - struct sock * (*accept)(struct sock *, struct proto_accept_arg *); - int (*ioctl)(struct sock *, int, int *); - int (*init)(struct sock *); - void (*destroy)(struct sock *); - void (*shutdown)(struct sock *, int); - int (*setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); - int (*getsockopt)(struct sock *, int, int, char *, int *); - void (*keepalive)(struct sock *, int); - int (*sendmsg)(struct sock *, struct msghdr *, size_t); - int (*recvmsg)(struct sock *, struct msghdr *, size_t, int, int *); - void (*splice_eof)(struct socket *); - int (*bind)(struct sock *, struct sockaddr *, int); - int (*bind_add)(struct sock *, struct sockaddr *, int); - int (*backlog_rcv)(struct sock *, struct sk_buff *); - bool (*bpf_bypass_getsockopt)(int, int); - void (*release_cb)(struct sock *); - int (*hash)(struct sock *); - void (*unhash)(struct sock *); - void (*rehash)(struct sock *); - int (*get_port)(struct sock *, short unsigned int); - void (*put_port)(struct sock *); - int (*psock_update_sk_prot)(struct sock *, struct sk_psock *, bool); - unsigned int inuse_idx; - bool (*stream_memory_free)(const struct sock *, int); - bool (*sock_is_readable)(struct sock *); - void (*enter_memory_pressure)(struct sock *); - void (*leave_memory_pressure)(struct sock *); - atomic_long_t *memory_allocated; - int *per_cpu_fw_alloc; - struct percpu_counter *sockets_allocated; - long unsigned int *memory_pressure; - long int *sysctl_mem; - int *sysctl_wmem; - int *sysctl_rmem; - u32 sysctl_wmem_offset; - u32 sysctl_rmem_offset; - int max_header; - bool no_autobind; - struct kmem_cache *slab; - unsigned int obj_size; - unsigned int ipv6_pinfo_offset; - slab_flags_t slab_flags; - unsigned int useroffset; - unsigned int usersize; - unsigned int *orphan_count; - struct request_sock_ops *rsk_prot; - struct timewait_sock_ops *twsk_prot; - union { - struct inet_hashinfo *hashinfo; - struct udp_table *udp_table; - struct raw_hashinfo *raw_hash; - struct smc_hashinfo *smc_hash; - } h; - struct module *owner; - char name[32]; - struct list_head node; - int (*diag_destroy)(struct sock *, int); -}; - -enum sk_rst_reason { - SK_RST_REASON_NOT_SPECIFIED = 0, - SK_RST_REASON_NO_SOCKET = 1, - SK_RST_REASON_TCP_INVALID_ACK_SEQUENCE = 2, - SK_RST_REASON_TCP_RFC7323_PAWS = 3, - SK_RST_REASON_TCP_TOO_OLD_ACK = 4, - SK_RST_REASON_TCP_ACK_UNSENT_DATA = 5, - SK_RST_REASON_TCP_FLAGS = 6, - SK_RST_REASON_TCP_OLD_ACK = 7, - SK_RST_REASON_TCP_ABORT_ON_DATA = 8, - SK_RST_REASON_TCP_TIMEWAIT_SOCKET = 9, - SK_RST_REASON_INVALID_SYN = 10, - SK_RST_REASON_TCP_ABORT_ON_CLOSE = 11, - SK_RST_REASON_TCP_ABORT_ON_LINGER = 12, - SK_RST_REASON_TCP_ABORT_ON_MEMORY = 13, - SK_RST_REASON_TCP_STATE = 14, - SK_RST_REASON_TCP_KEEPALIVE_TIMEOUT = 15, - SK_RST_REASON_TCP_DISCONNECT_WITH_DATA = 16, - SK_RST_REASON_MPTCP_RST_EUNSPEC = 17, - SK_RST_REASON_MPTCP_RST_EMPTCP = 18, - SK_RST_REASON_MPTCP_RST_ERESOURCE = 19, - SK_RST_REASON_MPTCP_RST_EPROHIBIT = 20, - SK_RST_REASON_MPTCP_RST_EWQ2BIG = 21, - SK_RST_REASON_MPTCP_RST_EBADPERF = 22, - SK_RST_REASON_MPTCP_RST_EMIDDLEBOX = 23, - SK_RST_REASON_ERROR = 24, - SK_RST_REASON_MAX = 25, -}; - -struct request_sock; - -struct request_sock_ops { - int family; - unsigned int obj_size; - struct kmem_cache *slab; - char *slab_name; - int (*rtx_syn_ack)(const struct sock *, struct request_sock *); - void (*send_ack)(const struct sock *, struct sk_buff *, struct request_sock *); - void (*send_reset)(const struct sock *, struct sk_buff *, enum sk_rst_reason); - void (*destructor)(struct request_sock *); - void (*syn_ack_timeout)(const struct request_sock *); -}; - -struct timewait_sock_ops { - struct kmem_cache *twsk_slab; - char *twsk_slab_name; - unsigned int twsk_obj_size; - void (*twsk_destructor)(struct sock *); -}; - -struct saved_syn; - -struct request_sock { - struct sock_common __req_common; - struct request_sock *dl_next; - u16 mss; - u8 num_retrans; - u8 syncookie: 1; - u8 num_timeout: 7; - u32 ts_recent; - struct timer_list rsk_timer; - const struct request_sock_ops *rsk_ops; - struct sock *sk; - struct saved_syn *saved_syn; - u32 secid; - u32 peer_secid; - u32 timeout; -}; - -struct saved_syn { - u32 mac_hdrlen; - u32 network_hdrlen; - u32 tcp_hdrlen; - u8 data[0]; -}; - -enum tsq_enum { - TSQ_THROTTLED = 0, - TSQ_QUEUED = 1, - TCP_TSQ_DEFERRED = 2, - TCP_WRITE_TIMER_DEFERRED = 3, - TCP_DELACK_TIMER_DEFERRED = 4, - TCP_MTU_REDUCED_DEFERRED = 5, - TCP_ACK_DEFERRED = 6, -}; - -struct ip6_sf_list { - struct ip6_sf_list *sf_next; - struct in6_addr sf_addr; - long unsigned int sf_count[2]; - unsigned char sf_gsresp; - unsigned char sf_oldin; - unsigned char sf_crcount; - struct callback_head rcu; -}; - -struct ifmcaddr6 { - struct in6_addr mca_addr; - struct inet6_dev *idev; - struct ifmcaddr6 *next; - struct ip6_sf_list *mca_sources; - struct ip6_sf_list *mca_tomb; - unsigned int mca_sfmode; - unsigned char mca_crcount; - long unsigned int mca_sfcount[2]; - struct delayed_work mca_work; - unsigned int mca_flags; - int mca_users; - refcount_t mca_refcnt; - long unsigned int mca_cstamp; - long unsigned int mca_tstamp; - struct callback_head rcu; -}; - -struct ifacaddr6 { - struct in6_addr aca_addr; - struct fib6_info *aca_rt; - struct ifacaddr6 *aca_next; - struct hlist_node aca_addr_lst; - int aca_users; - refcount_t aca_refcnt; - long unsigned int aca_cstamp; - long unsigned int aca_tstamp; - struct callback_head rcu; -}; - -enum nfs_opnum4 { - OP_ACCESS = 3, - OP_CLOSE = 4, - OP_COMMIT = 5, - OP_CREATE = 6, - OP_DELEGPURGE = 7, - OP_DELEGRETURN = 8, - OP_GETATTR = 9, - OP_GETFH = 10, - OP_LINK = 11, - OP_LOCK = 12, - OP_LOCKT = 13, - OP_LOCKU = 14, - OP_LOOKUP = 15, - OP_LOOKUPP = 16, - OP_NVERIFY = 17, - OP_OPEN = 18, - OP_OPENATTR = 19, - OP_OPEN_CONFIRM = 20, - OP_OPEN_DOWNGRADE = 21, - OP_PUTFH = 22, - OP_PUTPUBFH = 23, - OP_PUTROOTFH = 24, - OP_READ = 25, - OP_READDIR = 26, - OP_READLINK = 27, - OP_REMOVE = 28, - OP_RENAME = 29, - OP_RENEW = 30, - OP_RESTOREFH = 31, - OP_SAVEFH = 32, - OP_SECINFO = 33, - OP_SETATTR = 34, - OP_SETCLIENTID = 35, - OP_SETCLIENTID_CONFIRM = 36, - OP_VERIFY = 37, - OP_WRITE = 38, - OP_RELEASE_LOCKOWNER = 39, - OP_BACKCHANNEL_CTL = 40, - OP_BIND_CONN_TO_SESSION = 41, - OP_EXCHANGE_ID = 42, - OP_CREATE_SESSION = 43, - OP_DESTROY_SESSION = 44, - OP_FREE_STATEID = 45, - OP_GET_DIR_DELEGATION = 46, - OP_GETDEVICEINFO = 47, - OP_GETDEVICELIST = 48, - OP_LAYOUTCOMMIT = 49, - OP_LAYOUTGET = 50, - OP_LAYOUTRETURN = 51, - OP_SECINFO_NO_NAME = 52, - OP_SEQUENCE = 53, - OP_SET_SSV = 54, - OP_TEST_STATEID = 55, - OP_WANT_DELEGATION = 56, - OP_DESTROY_CLIENTID = 57, - OP_RECLAIM_COMPLETE = 58, - OP_ALLOCATE = 59, - OP_COPY = 60, - OP_COPY_NOTIFY = 61, - OP_DEALLOCATE = 62, - OP_IO_ADVISE = 63, - OP_LAYOUTERROR = 64, - OP_LAYOUTSTATS = 65, - OP_OFFLOAD_CANCEL = 66, - OP_OFFLOAD_STATUS = 67, - OP_READ_PLUS = 68, - OP_SEEK = 69, - OP_WRITE_SAME = 70, - OP_CLONE = 71, - OP_GETXATTR = 72, - OP_SETXATTR = 73, - OP_LISTXATTRS = 74, - OP_REMOVEXATTR = 75, - OP_ILLEGAL = 10044, -}; - -struct linux_binprm { - struct vm_area_struct *vma; - long unsigned int vma_pages; - long unsigned int argmin; - struct mm_struct *mm; - long unsigned int p; - unsigned int have_execfd: 1; - unsigned int execfd_creds: 1; - unsigned int secureexec: 1; - unsigned int point_of_no_return: 1; - unsigned int comm_from_dentry: 1; - struct file *executable; - struct file *interpreter; - struct file *file; - struct cred *cred; - int unsafe; - unsigned int per_clear; - int argc; - int envc; - const char *filename; - const char *interp; - const char *fdpath; - unsigned int interp_flags; - int execfd; - long unsigned int loader; - long unsigned int exec; - struct rlimit rlim_stack; - char buf[256]; -}; - -enum sysctl_writes_mode { - SYSCTL_WRITES_LEGACY = -1, - SYSCTL_WRITES_WARN = 0, - SYSCTL_WRITES_STRICT = 1, -}; - -struct do_proc_dointvec_minmax_conv_param { - int *min; - int *max; -}; - -struct do_proc_douintvec_minmax_conv_param { - unsigned int *min; - unsigned int *max; -}; - -enum work_bits { - WORK_STRUCT_PENDING_BIT = 0, - WORK_STRUCT_INACTIVE_BIT = 1, - WORK_STRUCT_PWQ_BIT = 2, - WORK_STRUCT_LINKED_BIT = 3, - WORK_STRUCT_FLAG_BITS = 4, - WORK_STRUCT_COLOR_SHIFT = 4, - WORK_STRUCT_COLOR_BITS = 4, - WORK_STRUCT_PWQ_SHIFT = 8, - WORK_OFFQ_FLAG_SHIFT = 4, - WORK_OFFQ_BH_BIT = 4, - WORK_OFFQ_FLAG_END = 5, - WORK_OFFQ_FLAG_BITS = 1, - WORK_OFFQ_DISABLE_SHIFT = 5, - WORK_OFFQ_DISABLE_BITS = 16, - WORK_OFFQ_POOL_SHIFT = 21, - WORK_OFFQ_LEFT = 43, - WORK_OFFQ_POOL_BITS = 31, -}; - -enum wq_misc_consts { - WORK_NR_COLORS = 16, - WORK_CPU_UNBOUND = 24, - WORK_BUSY_PENDING = 1, - WORK_BUSY_RUNNING = 2, - WORKER_DESC_LEN = 32, -}; - -enum wq_flags { - WQ_BH = 1, - WQ_UNBOUND = 2, - WQ_FREEZABLE = 4, - WQ_MEM_RECLAIM = 8, - WQ_HIGHPRI = 16, - WQ_CPU_INTENSIVE = 32, - WQ_SYSFS = 64, - WQ_POWER_EFFICIENT = 128, - __WQ_DESTROYING = 32768, - __WQ_DRAINING = 65536, - __WQ_ORDERED = 131072, - __WQ_LEGACY = 262144, - __WQ_BH_ALLOWS = 17, -}; - -enum wq_consts { - WQ_MAX_ACTIVE = 512, - WQ_UNBOUND_MAX_ACTIVE = 512, - WQ_DFL_ACTIVE = 256, - WQ_DFL_MIN_ACTIVE = 8, -}; - -enum kmalloc_cache_type { - KMALLOC_NORMAL = 0, - KMALLOC_RANDOM_START = 0, - KMALLOC_RANDOM_END = 0, - KMALLOC_RECLAIM = 1, - KMALLOC_DMA = 2, - KMALLOC_CGROUP = 3, - NR_KMALLOC_TYPES = 4, -}; - -typedef u64 async_cookie_t; - -typedef void (*async_func_t)(void *, async_cookie_t); - -struct async_domain { - struct list_head pending; - unsigned int registered: 1; -}; - -struct pool_workqueue; - -struct worker_pool; - -struct worker { - union { - struct list_head entry; - struct hlist_node hentry; - }; - struct work_struct *current_work; - work_func_t current_func; - struct pool_workqueue *current_pwq; - u64 current_at; - unsigned int current_color; - int sleeping; - work_func_t last_func; - struct list_head scheduled; - struct task_struct *task; - struct worker_pool *pool; - struct list_head node; - long unsigned int last_active; - unsigned int flags; - int id; - char desc[32]; - struct workqueue_struct *rescue_wq; -}; - -struct async_entry { - struct list_head domain_list; - struct list_head global_list; - struct work_struct work; - async_cookie_t cookie; - async_func_t func; - void *data; - struct async_domain *domain; -}; - -struct optimistic_spin_node { - struct optimistic_spin_node *next; - struct optimistic_spin_node *prev; - int locked; - int cpu; -}; - -struct sysrq_key_op { - void (* const handler)(u8); - const char * const help_msg; - const char * const action_msg; - const int enable_mask; -}; - -enum work_flags { - WORK_STRUCT_PENDING = 1, - WORK_STRUCT_INACTIVE = 2, - WORK_STRUCT_PWQ = 4, - WORK_STRUCT_LINKED = 8, - WORK_STRUCT_STATIC = 0, -}; - -struct __va_list { - void *__stack; - void *__gr_top; - void *__vr_top; - int __gr_offs; - int __vr_offs; -}; - -typedef struct __va_list va_list; - -typedef unsigned int uint; - -typedef u64 uint64_t; - -typedef int (*initcall_t)(void); - -typedef int initcall_entry_t; - -enum system_states { - SYSTEM_BOOTING = 0, - SYSTEM_SCHEDULING = 1, - SYSTEM_FREEING_INITMEM = 2, - SYSTEM_RUNNING = 3, - SYSTEM_HALT = 4, - SYSTEM_POWER_OFF = 5, - SYSTEM_RESTART = 6, - SYSTEM_SUSPEND = 7, -}; - -enum { - CSD_FLAG_LOCK = 1, - IRQ_WORK_PENDING = 1, - IRQ_WORK_BUSY = 2, - IRQ_WORK_LAZY = 4, - IRQ_WORK_HARD_IRQ = 8, - IRQ_WORK_CLAIMED = 3, - CSD_TYPE_ASYNC = 0, - CSD_TYPE_SYNC = 16, - CSD_TYPE_IRQ_WORK = 32, - CSD_TYPE_TTWU = 48, - CSD_FLAG_TYPE_MASK = 240, -}; - -typedef struct { - seqcount_t seqcount; -} seqcount_latch_t; - -struct semaphore { - raw_spinlock_t lock; - unsigned int count; - struct list_head wait_list; -}; - -struct ld_semaphore { - atomic_long_t count; - raw_spinlock_t wait_lock; - unsigned int wait_readers; - struct list_head read_wait; - struct list_head write_wait; -}; - -typedef unsigned int tcflag_t; - -typedef unsigned char cc_t; - -typedef unsigned int speed_t; - -struct ktermios { - tcflag_t c_iflag; - tcflag_t c_oflag; - tcflag_t c_cflag; - tcflag_t c_lflag; - cc_t c_line; - cc_t c_cc[19]; - speed_t c_ispeed; - speed_t c_ospeed; -}; - -struct winsize { - short unsigned int ws_row; - short unsigned int ws_col; - short unsigned int ws_xpixel; - short unsigned int ws_ypixel; -}; - -struct tty_driver; - -struct tty_port; - -struct tty_operations; - -struct tty_ldisc; - -struct tty_struct { - struct kref kref; - int index; - struct device *dev; - struct tty_driver *driver; - struct tty_port *port; - const struct tty_operations *ops; - struct tty_ldisc *ldisc; - struct ld_semaphore ldisc_sem; - struct mutex atomic_write_lock; - struct mutex legacy_mutex; - struct mutex throttle_mutex; - struct rw_semaphore termios_rwsem; - struct mutex winsize_mutex; - struct ktermios termios; - struct ktermios termios_locked; - char name[64]; - long unsigned int flags; - int count; - unsigned int receive_room; - struct winsize winsize; - struct { - spinlock_t lock; - bool stopped; - bool tco_stopped; - } flow; - struct { - struct pid *pgrp; - struct pid *session; - spinlock_t lock; - unsigned char pktstatus; - bool packet; - } ctrl; - bool hw_stopped; - bool closing; - int flow_change; - struct tty_struct *link; - struct fasync_struct *fasync; - wait_queue_head_t write_wait; - wait_queue_head_t read_wait; - struct work_struct hangup_work; - void *disc_data; - void *driver_data; - spinlock_t files_lock; - int write_cnt; - u8 *write_buf; - struct list_head tty_files; - struct work_struct SAK_work; -}; - -struct dev_printk_info { - char subsystem[16]; - char device[48]; -}; - -struct serial_icounter_struct; - -struct serial_struct; - -struct tty_operations { - struct tty_struct * (*lookup)(struct tty_driver *, struct file *, int); - int (*install)(struct tty_driver *, struct tty_struct *); - void (*remove)(struct tty_driver *, struct tty_struct *); - int (*open)(struct tty_struct *, struct file *); - void (*close)(struct tty_struct *, struct file *); - void (*shutdown)(struct tty_struct *); - void (*cleanup)(struct tty_struct *); - ssize_t (*write)(struct tty_struct *, const u8 *, size_t); - int (*put_char)(struct tty_struct *, u8); - void (*flush_chars)(struct tty_struct *); - unsigned int (*write_room)(struct tty_struct *); - unsigned int (*chars_in_buffer)(struct tty_struct *); - int (*ioctl)(struct tty_struct *, unsigned int, long unsigned int); - long int (*compat_ioctl)(struct tty_struct *, unsigned int, long unsigned int); - void (*set_termios)(struct tty_struct *, const struct ktermios *); - void (*throttle)(struct tty_struct *); - void (*unthrottle)(struct tty_struct *); - void (*stop)(struct tty_struct *); - void (*start)(struct tty_struct *); - void (*hangup)(struct tty_struct *); - int (*break_ctl)(struct tty_struct *, int); - void (*flush_buffer)(struct tty_struct *); - int (*ldisc_ok)(struct tty_struct *, int); - void (*set_ldisc)(struct tty_struct *); - void (*wait_until_sent)(struct tty_struct *, int); - void (*send_xchar)(struct tty_struct *, u8); - int (*tiocmget)(struct tty_struct *); - int (*tiocmset)(struct tty_struct *, unsigned int, unsigned int); - int (*resize)(struct tty_struct *, struct winsize *); - int (*get_icount)(struct tty_struct *, struct serial_icounter_struct *); - int (*get_serial)(struct tty_struct *, struct serial_struct *); - int (*set_serial)(struct tty_struct *, struct serial_struct *); - void (*show_fdinfo)(struct tty_struct *, struct seq_file *); - int (*proc_show)(struct seq_file *, void *); -}; - -struct tty_driver { - struct kref kref; - struct cdev **cdevs; - struct module *owner; - const char *driver_name; - const char *name; - int name_base; - int major; - int minor_start; - unsigned int num; - short int type; - short int subtype; - struct ktermios init_termios; - long unsigned int flags; - struct proc_dir_entry *proc_entry; - struct tty_driver *other; - struct tty_struct **ttys; - struct tty_port **ports; - struct ktermios **termios; - void *driver_state; - const struct tty_operations *ops; - struct list_head tty_drivers; -}; - -struct tty_buffer { - union { - struct tty_buffer *next; - struct llist_node free; - }; - unsigned int used; - unsigned int size; - unsigned int commit; - unsigned int lookahead; - unsigned int read; - bool flags; - long: 0; - u8 data[0]; -}; - -struct tty_bufhead { - struct tty_buffer *head; - struct work_struct work; - struct mutex lock; - atomic_t priority; - struct tty_buffer sentinel; - struct llist_head free; - atomic_t mem_used; - int mem_limit; - struct tty_buffer *tail; -}; - -struct __kfifo { - unsigned int in; - unsigned int out; - unsigned int mask; - unsigned int esize; - void *data; -}; - -struct tty_port_operations; - -struct tty_port_client_operations; - -struct tty_port { - struct tty_bufhead buf; - struct tty_struct *tty; - struct tty_struct *itty; - const struct tty_port_operations *ops; - const struct tty_port_client_operations *client_ops; - spinlock_t lock; - int blocked_open; - int count; - wait_queue_head_t open_wait; - wait_queue_head_t delta_msr_wait; - long unsigned int flags; - long unsigned int iflags; - unsigned char console: 1; - struct mutex mutex; - struct mutex buf_mutex; - u8 *xmit_buf; - struct { - union { - struct __kfifo kfifo; - u8 *type; - const u8 *const_type; - char (*rectype)[0]; - u8 *ptr; - const u8 *ptr_const; - }; - u8 buf[0]; - } xmit_fifo; - unsigned int close_delay; - unsigned int closing_wait; - int drain_delay; - struct kref kref; - void *client_data; -}; - -struct tty_ldisc_ops { - char *name; - int num; - int (*open)(struct tty_struct *); - void (*close)(struct tty_struct *); - void (*flush_buffer)(struct tty_struct *); - ssize_t (*read)(struct tty_struct *, struct file *, u8 *, size_t, void **, long unsigned int); - ssize_t (*write)(struct tty_struct *, struct file *, const u8 *, size_t); - int (*ioctl)(struct tty_struct *, unsigned int, long unsigned int); - int (*compat_ioctl)(struct tty_struct *, unsigned int, long unsigned int); - void (*set_termios)(struct tty_struct *, const struct ktermios *); - __poll_t (*poll)(struct tty_struct *, struct file *, struct poll_table_struct *); - void (*hangup)(struct tty_struct *); - void (*receive_buf)(struct tty_struct *, const u8 *, const u8 *, size_t); - void (*write_wakeup)(struct tty_struct *); - void (*dcd_change)(struct tty_struct *, bool); - size_t (*receive_buf2)(struct tty_struct *, const u8 *, const u8 *, size_t); - void (*lookahead_buf)(struct tty_struct *, const u8 *, const u8 *, size_t); - struct module *owner; -}; - -struct tty_ldisc { - struct tty_ldisc_ops *ops; - struct tty_struct *tty; -}; - -struct tty_port_operations { - bool (*carrier_raised)(struct tty_port *); - void (*dtr_rts)(struct tty_port *, bool); - void (*shutdown)(struct tty_port *); - int (*activate)(struct tty_port *, struct tty_struct *); - void (*destruct)(struct tty_port *); -}; - -struct tty_port_client_operations { - size_t (*receive_buf)(struct tty_port *, const u8 *, const u8 *, size_t); - void (*lookahead_buf)(struct tty_port *, const u8 *, const u8 *, size_t); - void (*write_wakeup)(struct tty_port *); -}; - -enum cons_flags { - CON_PRINTBUFFER = 1, - CON_CONSDEV = 2, - CON_ENABLED = 4, - CON_BOOT = 8, - CON_ANYTIME = 16, - CON_BRL = 32, - CON_EXTENDED = 64, - CON_SUSPENDED = 128, - CON_NBCON = 256, -}; - -enum nbcon_prio { - NBCON_PRIO_NONE = 0, - NBCON_PRIO_NORMAL = 1, - NBCON_PRIO_EMERGENCY = 2, - NBCON_PRIO_PANIC = 3, - NBCON_PRIO_MAX = 4, -}; - -struct console; - -struct printk_buffers; - -struct nbcon_context { - struct console *console; - unsigned int spinwait_max_us; - enum nbcon_prio prio; - unsigned int allow_unsafe_takeover: 1; - unsigned int backlog: 1; - struct printk_buffers *pbufs; - u64 seq; -}; - -struct nbcon_write_context; - -struct console { - char name[16]; - void (*write)(struct console *, const char *, unsigned int); - int (*read)(struct console *, char *, unsigned int); - struct tty_driver * (*device)(struct console *, int *); - void (*unblank)(void); - int (*setup)(struct console *, char *); - int (*exit)(struct console *); - int (*match)(struct console *, char *, int, char *); - short int flags; - short int index; - int cflag; - uint ispeed; - uint ospeed; - u64 seq; - long unsigned int dropped; - void *data; - struct hlist_node node; - void (*write_atomic)(struct console *, struct nbcon_write_context *); - void (*write_thread)(struct console *, struct nbcon_write_context *); - void (*device_lock)(struct console *, long unsigned int *); - void (*device_unlock)(struct console *, long unsigned int); - atomic_t nbcon_state; - atomic_long_t nbcon_seq; - struct nbcon_context nbcon_device_ctxt; - atomic_long_t nbcon_prev_seq; - struct printk_buffers *pbufs; - struct task_struct *kthread; - struct rcuwait rcuwait; - struct irq_work irq_work; -}; - -struct printk_buffers { - char outbuf[2048]; - char scratchbuf[1024]; -}; - -struct nbcon_write_context { - struct nbcon_context ctxt; - char *outbuf; - unsigned int len; - bool unsafe_takeover; -}; - -enum con_flush_mode { - CONSOLE_FLUSH_PENDING = 0, - CONSOLE_REPLAY_ALL = 1, -}; - -enum bpf_link_type { - BPF_LINK_TYPE_UNSPEC = 0, - BPF_LINK_TYPE_RAW_TRACEPOINT = 1, - BPF_LINK_TYPE_TRACING = 2, - BPF_LINK_TYPE_CGROUP = 3, - BPF_LINK_TYPE_ITER = 4, - BPF_LINK_TYPE_NETNS = 5, - BPF_LINK_TYPE_XDP = 6, - BPF_LINK_TYPE_PERF_EVENT = 7, - BPF_LINK_TYPE_KPROBE_MULTI = 8, - BPF_LINK_TYPE_STRUCT_OPS = 9, - BPF_LINK_TYPE_NETFILTER = 10, - BPF_LINK_TYPE_TCX = 11, - BPF_LINK_TYPE_UPROBE_MULTI = 12, - BPF_LINK_TYPE_NETKIT = 13, - BPF_LINK_TYPE_SOCKMAP = 14, - __MAX_BPF_LINK_TYPE = 15, -}; - -struct bpf_link_info { - __u32 type; - __u32 id; - __u32 prog_id; - union { - struct { - __u64 tp_name; - __u32 tp_name_len; - } raw_tracepoint; - struct { - __u32 attach_type; - __u32 target_obj_id; - __u32 target_btf_id; - } tracing; - struct { - __u64 cgroup_id; - __u32 attach_type; - } cgroup; - struct { - __u64 target_name; - __u32 target_name_len; - union { - struct { - __u32 map_id; - } map; - }; - union { - struct { - __u64 cgroup_id; - __u32 order; - } cgroup; - struct { - __u32 tid; - __u32 pid; - } task; - }; - } iter; - struct { - __u32 netns_ino; - __u32 attach_type; - } netns; - struct { - __u32 ifindex; - } xdp; - struct { - __u32 map_id; - } struct_ops; - struct { - __u32 pf; - __u32 hooknum; - __s32 priority; - __u32 flags; - } netfilter; - struct { - __u64 addrs; - __u32 count; - __u32 flags; - __u64 missed; - __u64 cookies; - } kprobe_multi; - struct { - __u64 path; - __u64 offsets; - __u64 ref_ctr_offsets; - __u64 cookies; - __u32 path_size; - __u32 count; - __u32 flags; - __u32 pid; - } uprobe_multi; - struct { - __u32 type; - union { - struct { - __u64 file_name; - __u32 name_len; - __u32 offset; - __u64 cookie; - } uprobe; - struct { - __u64 func_name; - __u32 name_len; - __u32 offset; - __u64 addr; - __u64 missed; - __u64 cookie; - } kprobe; - struct { - __u64 tp_name; - __u32 name_len; - __u64 cookie; - } tracepoint; - struct { - __u64 config; - __u32 type; - __u64 cookie; - } event; - }; - } perf_event; - struct { - __u32 ifindex; - __u32 attach_type; - } tcx; - struct { - __u32 ifindex; - __u32 attach_type; - } netkit; - struct { - __u32 map_id; - __u32 attach_type; - } sockmap; - }; -}; - -enum cpuhp_state { - CPUHP_INVALID = -1, - CPUHP_OFFLINE = 0, - CPUHP_CREATE_THREADS = 1, - CPUHP_PERF_PREPARE = 2, - CPUHP_PERF_X86_PREPARE = 3, - CPUHP_PERF_X86_AMD_UNCORE_PREP = 4, - CPUHP_PERF_POWER = 5, - CPUHP_PERF_SUPERH = 6, - CPUHP_X86_HPET_DEAD = 7, - CPUHP_X86_MCE_DEAD = 8, - CPUHP_VIRT_NET_DEAD = 9, - CPUHP_IBMVNIC_DEAD = 10, - CPUHP_SLUB_DEAD = 11, - CPUHP_DEBUG_OBJ_DEAD = 12, - CPUHP_MM_WRITEBACK_DEAD = 13, - CPUHP_MM_VMSTAT_DEAD = 14, - CPUHP_SOFTIRQ_DEAD = 15, - CPUHP_NET_MVNETA_DEAD = 16, - CPUHP_CPUIDLE_DEAD = 17, - CPUHP_ARM64_FPSIMD_DEAD = 18, - CPUHP_ARM_OMAP_WAKE_DEAD = 19, - CPUHP_IRQ_POLL_DEAD = 20, - CPUHP_BLOCK_SOFTIRQ_DEAD = 21, - CPUHP_BIO_DEAD = 22, - CPUHP_ACPI_CPUDRV_DEAD = 23, - CPUHP_S390_PFAULT_DEAD = 24, - CPUHP_BLK_MQ_DEAD = 25, - CPUHP_FS_BUFF_DEAD = 26, - CPUHP_PRINTK_DEAD = 27, - CPUHP_MM_MEMCQ_DEAD = 28, - CPUHP_PERCPU_CNT_DEAD = 29, - CPUHP_RADIX_DEAD = 30, - CPUHP_PAGE_ALLOC = 31, - CPUHP_NET_DEV_DEAD = 32, - CPUHP_PCI_XGENE_DEAD = 33, - CPUHP_IOMMU_IOVA_DEAD = 34, - CPUHP_AP_ARM_CACHE_B15_RAC_DEAD = 35, - CPUHP_PADATA_DEAD = 36, - CPUHP_AP_DTPM_CPU_DEAD = 37, - CPUHP_RANDOM_PREPARE = 38, - CPUHP_WORKQUEUE_PREP = 39, - CPUHP_POWER_NUMA_PREPARE = 40, - CPUHP_HRTIMERS_PREPARE = 41, - CPUHP_X2APIC_PREPARE = 42, - CPUHP_SMPCFD_PREPARE = 43, - CPUHP_RELAY_PREPARE = 44, - CPUHP_MD_RAID5_PREPARE = 45, - CPUHP_RCUTREE_PREP = 46, - CPUHP_CPUIDLE_COUPLED_PREPARE = 47, - CPUHP_POWERPC_PMAC_PREPARE = 48, - CPUHP_POWERPC_MMU_CTX_PREPARE = 49, - CPUHP_XEN_PREPARE = 50, - CPUHP_XEN_EVTCHN_PREPARE = 51, - CPUHP_ARM_SHMOBILE_SCU_PREPARE = 52, - CPUHP_SH_SH3X_PREPARE = 53, - CPUHP_TOPOLOGY_PREPARE = 54, - CPUHP_NET_IUCV_PREPARE = 55, - CPUHP_ARM_BL_PREPARE = 56, - CPUHP_TRACE_RB_PREPARE = 57, - CPUHP_MM_ZS_PREPARE = 58, - CPUHP_MM_ZSWP_POOL_PREPARE = 59, - CPUHP_KVM_PPC_BOOK3S_PREPARE = 60, - CPUHP_ZCOMP_PREPARE = 61, - CPUHP_TIMERS_PREPARE = 62, - CPUHP_TMIGR_PREPARE = 63, - CPUHP_MIPS_SOC_PREPARE = 64, - CPUHP_BP_PREPARE_DYN = 65, - CPUHP_BP_PREPARE_DYN_END = 85, - CPUHP_BP_KICK_AP = 86, - CPUHP_BRINGUP_CPU = 87, - CPUHP_AP_IDLE_DEAD = 88, - CPUHP_AP_OFFLINE = 89, - CPUHP_AP_CACHECTRL_STARTING = 90, - CPUHP_AP_SCHED_STARTING = 91, - CPUHP_AP_RCUTREE_DYING = 92, - CPUHP_AP_CPU_PM_STARTING = 93, - CPUHP_AP_IRQ_GIC_STARTING = 94, - CPUHP_AP_IRQ_HIP04_STARTING = 95, - CPUHP_AP_IRQ_APPLE_AIC_STARTING = 96, - CPUHP_AP_IRQ_ARMADA_XP_STARTING = 97, - CPUHP_AP_IRQ_BCM2836_STARTING = 98, - CPUHP_AP_IRQ_MIPS_GIC_STARTING = 99, - CPUHP_AP_IRQ_EIOINTC_STARTING = 100, - CPUHP_AP_IRQ_AVECINTC_STARTING = 101, - CPUHP_AP_IRQ_SIFIVE_PLIC_STARTING = 102, - CPUHP_AP_IRQ_RISCV_IMSIC_STARTING = 103, - CPUHP_AP_IRQ_RISCV_SBI_IPI_STARTING = 104, - CPUHP_AP_ARM_MVEBU_COHERENCY = 105, - CPUHP_AP_PERF_X86_AMD_UNCORE_STARTING = 106, - CPUHP_AP_PERF_X86_STARTING = 107, - CPUHP_AP_PERF_X86_AMD_IBS_STARTING = 108, - CPUHP_AP_PERF_XTENSA_STARTING = 109, - CPUHP_AP_ARM_VFP_STARTING = 110, - CPUHP_AP_ARM64_DEBUG_MONITORS_STARTING = 111, - CPUHP_AP_PERF_ARM_HW_BREAKPOINT_STARTING = 112, - CPUHP_AP_PERF_ARM_ACPI_STARTING = 113, - CPUHP_AP_PERF_ARM_STARTING = 114, - CPUHP_AP_PERF_RISCV_STARTING = 115, - CPUHP_AP_ARM_L2X0_STARTING = 116, - CPUHP_AP_EXYNOS4_MCT_TIMER_STARTING = 117, - CPUHP_AP_ARM_ARCH_TIMER_STARTING = 118, - CPUHP_AP_ARM_ARCH_TIMER_EVTSTRM_STARTING = 119, - CPUHP_AP_ARM_GLOBAL_TIMER_STARTING = 120, - CPUHP_AP_JCORE_TIMER_STARTING = 121, - CPUHP_AP_ARM_TWD_STARTING = 122, - CPUHP_AP_QCOM_TIMER_STARTING = 123, - CPUHP_AP_TEGRA_TIMER_STARTING = 124, - CPUHP_AP_ARMADA_TIMER_STARTING = 125, - CPUHP_AP_MIPS_GIC_TIMER_STARTING = 126, - CPUHP_AP_ARC_TIMER_STARTING = 127, - CPUHP_AP_REALTEK_TIMER_STARTING = 128, - CPUHP_AP_RISCV_TIMER_STARTING = 129, - CPUHP_AP_CLINT_TIMER_STARTING = 130, - CPUHP_AP_CSKY_TIMER_STARTING = 131, - CPUHP_AP_TI_GP_TIMER_STARTING = 132, - CPUHP_AP_HYPERV_TIMER_STARTING = 133, - CPUHP_AP_DUMMY_TIMER_STARTING = 134, - CPUHP_AP_ARM_XEN_STARTING = 135, - CPUHP_AP_ARM_XEN_RUNSTATE_STARTING = 136, - CPUHP_AP_ARM_CORESIGHT_STARTING = 137, - CPUHP_AP_ARM_CORESIGHT_CTI_STARTING = 138, - CPUHP_AP_ARM64_ISNDEP_STARTING = 139, - CPUHP_AP_SMPCFD_DYING = 140, - CPUHP_AP_HRTIMERS_DYING = 141, - CPUHP_AP_TICK_DYING = 142, - CPUHP_AP_X86_TBOOT_DYING = 143, - CPUHP_AP_ARM_CACHE_B15_RAC_DYING = 144, - CPUHP_AP_ONLINE = 145, - CPUHP_TEARDOWN_CPU = 146, - CPUHP_AP_ONLINE_IDLE = 147, - CPUHP_AP_HYPERV_ONLINE = 148, - CPUHP_AP_KVM_ONLINE = 149, - CPUHP_AP_SCHED_WAIT_EMPTY = 150, - CPUHP_AP_SMPBOOT_THREADS = 151, - CPUHP_AP_IRQ_AFFINITY_ONLINE = 152, - CPUHP_AP_BLK_MQ_ONLINE = 153, - CPUHP_AP_ARM_MVEBU_SYNC_CLOCKS = 154, - CPUHP_AP_X86_INTEL_EPB_ONLINE = 155, - CPUHP_AP_PERF_ONLINE = 156, - CPUHP_AP_PERF_X86_ONLINE = 157, - CPUHP_AP_PERF_X86_UNCORE_ONLINE = 158, - CPUHP_AP_PERF_X86_AMD_UNCORE_ONLINE = 159, - CPUHP_AP_PERF_X86_AMD_POWER_ONLINE = 160, - CPUHP_AP_PERF_X86_RAPL_ONLINE = 161, - CPUHP_AP_PERF_S390_CF_ONLINE = 162, - CPUHP_AP_PERF_S390_SF_ONLINE = 163, - CPUHP_AP_PERF_ARM_CCI_ONLINE = 164, - CPUHP_AP_PERF_ARM_CCN_ONLINE = 165, - CPUHP_AP_PERF_ARM_HISI_CPA_ONLINE = 166, - CPUHP_AP_PERF_ARM_HISI_DDRC_ONLINE = 167, - CPUHP_AP_PERF_ARM_HISI_HHA_ONLINE = 168, - CPUHP_AP_PERF_ARM_HISI_L3_ONLINE = 169, - CPUHP_AP_PERF_ARM_HISI_PA_ONLINE = 170, - CPUHP_AP_PERF_ARM_HISI_SLLC_ONLINE = 171, - CPUHP_AP_PERF_ARM_HISI_PCIE_PMU_ONLINE = 172, - CPUHP_AP_PERF_ARM_HNS3_PMU_ONLINE = 173, - CPUHP_AP_PERF_ARM_L2X0_ONLINE = 174, - CPUHP_AP_PERF_ARM_QCOM_L2_ONLINE = 175, - CPUHP_AP_PERF_ARM_QCOM_L3_ONLINE = 176, - CPUHP_AP_PERF_ARM_APM_XGENE_ONLINE = 177, - CPUHP_AP_PERF_ARM_CAVIUM_TX2_UNCORE_ONLINE = 178, - CPUHP_AP_PERF_ARM_MARVELL_CN10K_DDR_ONLINE = 179, - CPUHP_AP_PERF_POWERPC_NEST_IMC_ONLINE = 180, - CPUHP_AP_PERF_POWERPC_CORE_IMC_ONLINE = 181, - CPUHP_AP_PERF_POWERPC_THREAD_IMC_ONLINE = 182, - CPUHP_AP_PERF_POWERPC_TRACE_IMC_ONLINE = 183, - CPUHP_AP_PERF_POWERPC_HV_24x7_ONLINE = 184, - CPUHP_AP_PERF_POWERPC_HV_GPCI_ONLINE = 185, - CPUHP_AP_PERF_CSKY_ONLINE = 186, - CPUHP_AP_TMIGR_ONLINE = 187, - CPUHP_AP_WATCHDOG_ONLINE = 188, - CPUHP_AP_WORKQUEUE_ONLINE = 189, - CPUHP_AP_RANDOM_ONLINE = 190, - CPUHP_AP_RCUTREE_ONLINE = 191, - CPUHP_AP_BASE_CACHEINFO_ONLINE = 192, - CPUHP_AP_ONLINE_DYN = 193, - CPUHP_AP_ONLINE_DYN_END = 233, - CPUHP_AP_X86_HPET_ONLINE = 234, - CPUHP_AP_X86_KVM_CLK_ONLINE = 235, - CPUHP_AP_ACTIVE = 236, - CPUHP_ONLINE = 237, -}; - -struct bpf_link_ops; - -struct bpf_link { - atomic64_t refcnt; - u32 id; - enum bpf_link_type type; - const struct bpf_link_ops *ops; - struct bpf_prog *prog; - union { - struct callback_head rcu; - struct work_struct work; - }; -}; - -struct bpf_link_ops { - void (*release)(struct bpf_link *); - void (*dealloc)(struct bpf_link *); - void (*dealloc_deferred)(struct bpf_link *); - int (*detach)(struct bpf_link *); - int (*update_prog)(struct bpf_link *, struct bpf_prog *, struct bpf_prog *); - void (*show_fdinfo)(const struct bpf_link *, struct seq_file *); - int (*fill_link_info)(const struct bpf_link *, struct bpf_link_info *); - int (*update_map)(struct bpf_link *, struct bpf_map *, struct bpf_map *); - __poll_t (*poll)(struct file *, struct poll_table_struct *); -}; - -struct bpf_raw_tp_link { - struct bpf_link link; - struct bpf_raw_event_map *btp; - u64 cookie; -}; - -typedef struct poll_table_struct poll_table; - -struct ring_buffer_event { - u32 type_len: 5; - u32 time_delta: 27; - u32 array[0]; -}; - -struct trace_buffer; - -struct trace_event_file; - -struct trace_event_buffer { - struct trace_buffer *buffer; - struct ring_buffer_event *event; - struct trace_event_file *trace_file; - void *entry; - unsigned int trace_ctx; - struct pt_regs *regs; -}; - -struct eventfs_inode; - -struct trace_subsystem_dir; - -struct trace_event_file { - struct list_head list; - struct trace_event_call *event_call; - struct event_filter *filter; - struct eventfs_inode *ei; - struct trace_array *tr; - struct trace_subsystem_dir *system; - struct list_head triggers; - long unsigned int flags; - refcount_t ref; - atomic_t sm_ref; - atomic_t tm_ref; -}; - -enum { - EVENT_FILE_FL_ENABLED = 1, - EVENT_FILE_FL_RECORDED_CMD = 2, - EVENT_FILE_FL_RECORDED_TGID = 4, - EVENT_FILE_FL_FILTERED = 8, - EVENT_FILE_FL_NO_SET_FILTER = 16, - EVENT_FILE_FL_SOFT_MODE = 32, - EVENT_FILE_FL_SOFT_DISABLED = 64, - EVENT_FILE_FL_TRIGGER_MODE = 128, - EVENT_FILE_FL_TRIGGER_COND = 256, - EVENT_FILE_FL_PID_FILTER = 512, - EVENT_FILE_FL_WAS_ENABLED = 1024, - EVENT_FILE_FL_FREED = 2048, -}; - -enum { - FILTER_OTHER = 0, - FILTER_STATIC_STRING = 1, - FILTER_DYN_STRING = 2, - FILTER_RDYN_STRING = 3, - FILTER_PTR_STRING = 4, - FILTER_TRACE_FN = 5, - FILTER_CPUMASK = 6, - FILTER_COMM = 7, - FILTER_CPU = 8, - FILTER_STACKTRACE = 9, -}; - -struct syscore_ops { - struct list_head node; - int (*suspend)(void); - void (*resume)(void); - void (*shutdown)(void); -}; - -enum kmsg_dump_reason { - KMSG_DUMP_UNDEF = 0, - KMSG_DUMP_PANIC = 1, - KMSG_DUMP_OOPS = 2, - KMSG_DUMP_EMERG = 3, - KMSG_DUMP_SHUTDOWN = 4, - KMSG_DUMP_MAX = 5, -}; - -struct kmsg_dump_iter { - u64 cur_seq; - u64 next_seq; -}; - -struct kmsg_dump_detail { - enum kmsg_dump_reason reason; - const char *description; -}; - -struct kmsg_dumper { - struct list_head list; - void (*dump)(struct kmsg_dumper *, struct kmsg_dump_detail *); - enum kmsg_dump_reason max_reason; - bool registered; -}; - -struct trace_event_raw_console { - struct trace_entry ent; - u32 __data_loc_msg; - char __data[0]; -}; - -struct trace_event_data_offsets_console { - u32 msg; - const void *msg_ptr_; -}; - -typedef void (*btf_trace_console)(void *, const char *, size_t); - -struct printk_info { - u64 seq; - u64 ts_nsec; - u16 text_len; - u8 facility; - u8 flags: 5; - u8 level: 3; - u32 caller_id; - struct dev_printk_info dev_info; -}; - -struct printk_record { - struct printk_info *info; - char *text_buf; - unsigned int text_buf_size; -}; - -struct prb_data_blk_lpos { - long unsigned int begin; - long unsigned int next; -}; - -struct prb_desc { - atomic_long_t state_var; - struct prb_data_blk_lpos text_blk_lpos; -}; - -struct prb_data_ring { - unsigned int size_bits; - char *data; - atomic_long_t head_lpos; - atomic_long_t tail_lpos; -}; - -struct prb_desc_ring { - unsigned int count_bits; - struct prb_desc *descs; - struct printk_info *infos; - atomic_long_t head_id; - atomic_long_t tail_id; - atomic_long_t last_finalized_seq; -}; - -struct printk_ringbuffer { - struct prb_desc_ring desc_ring; - struct prb_data_ring text_data_ring; - atomic_long_t fail; -}; - -struct prb_reserved_entry { - struct printk_ringbuffer *rb; - long unsigned int irqflags; - long unsigned int id; - unsigned int text_space; -}; - -enum desc_state { - desc_miss = -1, - desc_reserved = 0, - desc_committed = 1, - desc_finalized = 2, - desc_reusable = 3, -}; - -struct console_cmdline { - char name[16]; - int index; - char devname[32]; - bool user_specified; - char *options; -}; - -enum printk_info_flags { - LOG_NEWLINE = 2, - LOG_CONT = 8, -}; - -struct console_flush_type { - bool nbcon_atomic; - bool nbcon_offload; - bool legacy_direct; - bool legacy_offload; -}; - -struct printk_message { - struct printk_buffers *pbufs; - unsigned int outbuf_len; - u64 seq; - long unsigned int dropped; -}; - -enum devkmsg_log_bits { - __DEVKMSG_LOG_BIT_ON = 0, - __DEVKMSG_LOG_BIT_OFF = 1, - __DEVKMSG_LOG_BIT_LOCK = 2, -}; - -enum devkmsg_log_masks { - DEVKMSG_LOG_MASK_ON = 1, - DEVKMSG_LOG_MASK_OFF = 2, - DEVKMSG_LOG_MASK_LOCK = 4, -}; - -enum con_msg_format_flags { - MSG_FORMAT_DEFAULT = 0, - MSG_FORMAT_SYSLOG = 1, -}; - -struct latched_seq { - seqcount_latch_t latch; - u64 val[2]; -}; - -struct devkmsg_user { - atomic64_t seq; - struct ratelimit_state rs; - struct mutex lock; - struct printk_buffers pbufs; -}; - -typedef phys_addr_t resource_size_t; - -enum { - UNAME26 = 131072, - ADDR_NO_RANDOMIZE = 262144, - FDPIC_FUNCPTRS = 524288, - MMAP_PAGE_ZERO = 1048576, - ADDR_COMPAT_LAYOUT = 2097152, - READ_IMPLIES_EXEC = 4194304, - ADDR_LIMIT_32BIT = 8388608, - SHORT_INODE = 16777216, - WHOLE_SECONDS = 33554432, - STICKY_TIMEOUTS = 67108864, - ADDR_LIMIT_3GB = 134217728, -}; - -enum { - MEMREMAP_WB = 1, - MEMREMAP_WT = 2, - MEMREMAP_WC = 4, - MEMREMAP_ENC = 8, - MEMREMAP_DEC = 16, -}; - -struct dma_coherent_mem { - void *virt_base; - dma_addr_t device_base; - long unsigned int pfn_base; - int size; - long unsigned int *bitmap; - spinlock_t spinlock; - bool use_dev_dma_pfn_offset; -}; - -struct io_tlb_area; - -struct io_tlb_slot; - -struct io_tlb_pool { - phys_addr_t start; - phys_addr_t end; - void *vaddr; - long unsigned int nslabs; - bool late_alloc; - unsigned int nareas; - unsigned int area_nslabs; - struct io_tlb_area *areas; - struct io_tlb_slot *slots; -}; - -struct io_tlb_mem { - struct io_tlb_pool defpool; - long unsigned int nslabs; - struct dentry *debugfs; - bool force_bounce; - bool for_alloc; - atomic_long_t total_used; - atomic_long_t used_hiwater; - atomic_long_t transient_nslabs; -}; - -struct reserved_mem_ops; - -struct reserved_mem { - const char *name; - long unsigned int fdt_node; - const struct reserved_mem_ops *ops; - phys_addr_t base; - phys_addr_t size; - void *priv; -}; - -struct reserved_mem_ops { - int (*device_init)(struct reserved_mem *, struct device *); - void (*device_release)(struct reserved_mem *, struct device *); -}; - -typedef int (*reservedmem_of_init_fn)(struct reserved_mem *); - -struct itimerspec64 { - struct timespec64 it_interval; - struct timespec64 it_value; -}; - -struct trace_print_flags { - long unsigned int mask; - const char *name; -}; - -enum hrtimer_mode { - HRTIMER_MODE_ABS = 0, - HRTIMER_MODE_REL = 1, - HRTIMER_MODE_PINNED = 2, - HRTIMER_MODE_SOFT = 4, - HRTIMER_MODE_HARD = 8, - HRTIMER_MODE_ABS_PINNED = 2, - HRTIMER_MODE_REL_PINNED = 3, - HRTIMER_MODE_ABS_SOFT = 4, - HRTIMER_MODE_REL_SOFT = 5, - HRTIMER_MODE_ABS_PINNED_SOFT = 6, - HRTIMER_MODE_REL_PINNED_SOFT = 7, - HRTIMER_MODE_ABS_HARD = 8, - HRTIMER_MODE_REL_HARD = 9, - HRTIMER_MODE_ABS_PINNED_HARD = 10, - HRTIMER_MODE_REL_PINNED_HARD = 11, -}; - -enum tick_dep_bits { - TICK_DEP_BIT_POSIX_TIMER = 0, - TICK_DEP_BIT_PERF_EVENTS = 1, - TICK_DEP_BIT_SCHED = 2, - TICK_DEP_BIT_CLOCK_UNSTABLE = 3, - TICK_DEP_BIT_RCU = 4, - TICK_DEP_BIT_RCU_EXP = 5, -}; - -struct timer_events { - u64 local; - u64 global; -}; - -struct trace_event_raw_timer_class { - struct trace_entry ent; - void *timer; - char __data[0]; -}; - -struct trace_event_raw_timer_start { - struct trace_entry ent; - void *timer; - void *function; - long unsigned int expires; - long unsigned int bucket_expiry; - long unsigned int now; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_timer_expire_entry { - struct trace_entry ent; - void *timer; - long unsigned int now; - void *function; - long unsigned int baseclk; - char __data[0]; -}; - -struct trace_event_raw_timer_base_idle { - struct trace_entry ent; - bool is_idle; - unsigned int cpu; - char __data[0]; -}; - -struct trace_event_raw_hrtimer_init { - struct trace_entry ent; - void *hrtimer; - clockid_t clockid; - enum hrtimer_mode mode; - char __data[0]; -}; - -struct trace_event_raw_hrtimer_start { - struct trace_entry ent; - void *hrtimer; - void *function; - s64 expires; - s64 softexpires; - enum hrtimer_mode mode; - char __data[0]; -}; - -struct trace_event_raw_hrtimer_expire_entry { - struct trace_entry ent; - void *hrtimer; - s64 now; - void *function; - char __data[0]; -}; - -struct trace_event_raw_hrtimer_class { - struct trace_entry ent; - void *hrtimer; - char __data[0]; -}; - -struct trace_event_raw_itimer_state { - struct trace_entry ent; - int which; - long long unsigned int expires; - long int value_sec; - long int value_nsec; - long int interval_sec; - long int interval_nsec; - char __data[0]; -}; - -struct trace_event_raw_itimer_expire { - struct trace_entry ent; - int which; - pid_t pid; - long long unsigned int now; - char __data[0]; -}; - -struct trace_event_raw_tick_stop { - struct trace_entry ent; - int success; - int dependency; - char __data[0]; -}; - -struct trace_event_data_offsets_timer_class {}; - -struct trace_event_data_offsets_timer_start {}; - -struct trace_event_data_offsets_timer_expire_entry {}; - -struct trace_event_data_offsets_timer_base_idle {}; - -struct trace_event_data_offsets_hrtimer_init {}; - -struct trace_event_data_offsets_hrtimer_start {}; - -struct trace_event_data_offsets_hrtimer_expire_entry {}; - -struct trace_event_data_offsets_hrtimer_class {}; - -struct trace_event_data_offsets_itimer_state {}; - -struct trace_event_data_offsets_itimer_expire {}; - -struct trace_event_data_offsets_tick_stop {}; - -typedef void (*btf_trace_timer_init)(void *, struct timer_list *); - -typedef void (*btf_trace_timer_start)(void *, struct timer_list *, long unsigned int); - -typedef void (*btf_trace_timer_expire_entry)(void *, struct timer_list *, long unsigned int); - -typedef void (*btf_trace_timer_expire_exit)(void *, struct timer_list *); - -typedef void (*btf_trace_timer_cancel)(void *, struct timer_list *); - -typedef void (*btf_trace_timer_base_idle)(void *, bool, unsigned int); - -typedef void (*btf_trace_hrtimer_init)(void *, struct hrtimer *, clockid_t, enum hrtimer_mode); - -typedef void (*btf_trace_hrtimer_start)(void *, struct hrtimer *, enum hrtimer_mode); - -typedef void (*btf_trace_hrtimer_expire_entry)(void *, struct hrtimer *, ktime_t *); - -typedef void (*btf_trace_hrtimer_expire_exit)(void *, struct hrtimer *); - -typedef void (*btf_trace_hrtimer_cancel)(void *, struct hrtimer *); - -typedef void (*btf_trace_itimer_state)(void *, int, const struct itimerspec64 * const, long long unsigned int); - -typedef void (*btf_trace_itimer_expire)(void *, int, struct pid *, long long unsigned int); - -typedef void (*btf_trace_tick_stop)(void *, int, int); - -struct timer_base { - raw_spinlock_t lock; - struct timer_list *running_timer; - long unsigned int clk; - long unsigned int next_expiry; - unsigned int cpu; - bool next_expiry_recalc; - bool is_idle; - bool timers_pending; - long unsigned int pending_map[9]; - struct hlist_head vectors[576]; - long: 64; - long: 64; -}; - -struct process_timer { - struct timer_list timer; - struct task_struct *task; -}; - -struct fc_log; - -struct p_log { - const char *prefix; - struct fc_log *log; -}; - -enum fs_context_purpose { - FS_CONTEXT_FOR_MOUNT = 0, - FS_CONTEXT_FOR_SUBMOUNT = 1, - FS_CONTEXT_FOR_RECONFIGURE = 2, -}; - -enum fs_context_phase { - FS_CONTEXT_CREATE_PARAMS = 0, - FS_CONTEXT_CREATING = 1, - FS_CONTEXT_AWAITING_MOUNT = 2, - FS_CONTEXT_AWAITING_RECONF = 3, - FS_CONTEXT_RECONF_PARAMS = 4, - FS_CONTEXT_RECONFIGURING = 5, - FS_CONTEXT_FAILED = 6, -}; - -struct fs_context_operations; - -struct fs_context { - const struct fs_context_operations *ops; - struct mutex uapi_mutex; - struct file_system_type *fs_type; - void *fs_private; - void *sget_key; - struct dentry *root; - struct user_namespace *user_ns; - struct net *net_ns; - const struct cred *cred; - struct p_log log; - const char *source; - void *security; - void *s_fs_info; - unsigned int sb_flags; - unsigned int sb_flags_mask; - unsigned int s_iflags; - enum fs_context_purpose purpose: 8; - enum fs_context_phase phase: 8; - bool need_free: 1; - bool global: 1; - bool oldapi: 1; - bool exclusive: 1; -}; - -struct audit_names; - -struct filename { - const char *name; - const char *uptr; - atomic_t refcnt; - struct audit_names *aname; - const char iname[0]; -}; - -enum cpu_usage_stat { - CPUTIME_USER = 0, - CPUTIME_NICE = 1, - CPUTIME_SYSTEM = 2, - CPUTIME_SOFTIRQ = 3, - CPUTIME_IRQ = 4, - CPUTIME_IDLE = 5, - CPUTIME_IOWAIT = 6, - CPUTIME_STEAL = 7, - CPUTIME_GUEST = 8, - CPUTIME_GUEST_NICE = 9, - NR_STATS = 10, -}; - -struct kernel_cpustat { - u64 cpustat[10]; -}; - -struct cgroup_taskset { - struct list_head src_csets; - struct list_head dst_csets; - int nr_tasks; - int ssid; - struct list_head *csets; - struct css_set *cur_cset; - struct task_struct *cur_task; -}; - -struct btf_id_set8 { - u32 cnt; - u32 flags; - struct { - u32 id; - u32 flags; - } pairs[0]; -}; - -typedef int (*btf_kfunc_filter_t)(const struct bpf_prog *, u32); - -struct btf_kfunc_id_set { - struct module *owner; - struct btf_id_set8 *set; - btf_kfunc_filter_t filter; -}; - -enum fs_value_type { - fs_value_is_undefined = 0, - fs_value_is_flag = 1, - fs_value_is_string = 2, - fs_value_is_blob = 3, - fs_value_is_filename = 4, - fs_value_is_file = 5, -}; - -struct fs_parameter { - const char *key; - enum fs_value_type type: 8; - union { - char *string; - void *blob; - struct filename *name; - struct file *file; - }; - size_t size; - int dirfd; -}; - -struct fc_log { - refcount_t usage; - u8 head; - u8 tail; - u8 need_free; - struct module *owner; - char *buffer[8]; -}; - -struct fs_context_operations { - void (*free)(struct fs_context *); - int (*dup)(struct fs_context *, struct fs_context *); - int (*parse_param)(struct fs_context *, struct fs_parameter *); - int (*parse_monolithic)(struct fs_context *, void *); - int (*get_tree)(struct fs_context *); - int (*reconfigure)(struct fs_context *); -}; - -struct fs_parse_result { - bool negated; - union { - bool boolean; - int int_32; - unsigned int uint_32; - u64 uint_64; - kuid_t uid; - kgid_t gid; - }; -}; - -typedef void (*swap_func_t)(void *, void *, int); - -typedef int (*cmp_func_t)(const void *, const void *); - -enum refcount_saturation_type { - REFCOUNT_ADD_NOT_ZERO_OVF = 0, - REFCOUNT_ADD_OVF = 1, - REFCOUNT_ADD_UAF = 2, - REFCOUNT_SUB_UAF = 3, - REFCOUNT_DEC_LEAK = 4, -}; - -struct fs_struct { - int users; - spinlock_t lock; - seqcount_spinlock_t seq; - int umask; - int in_exec; - struct path root; - struct path pwd; -}; - -struct nsset { - unsigned int flags; - struct nsproxy *nsproxy; - struct fs_struct *fs; - const struct cred *cred; -}; - -enum ucount_type { - UCOUNT_USER_NAMESPACES = 0, - UCOUNT_PID_NAMESPACES = 1, - UCOUNT_UTS_NAMESPACES = 2, - UCOUNT_IPC_NAMESPACES = 3, - UCOUNT_NET_NAMESPACES = 4, - UCOUNT_MNT_NAMESPACES = 5, - UCOUNT_CGROUP_NAMESPACES = 6, - UCOUNT_TIME_NAMESPACES = 7, - UCOUNT_INOTIFY_INSTANCES = 8, - UCOUNT_INOTIFY_WATCHES = 9, - UCOUNT_FANOTIFY_GROUPS = 10, - UCOUNT_FANOTIFY_MARKS = 11, - UCOUNT_COUNTS = 12, -}; - -enum rlimit_type { - UCOUNT_RLIMIT_NPROC = 0, - UCOUNT_RLIMIT_MSGQUEUE = 1, - UCOUNT_RLIMIT_SIGPENDING = 2, - UCOUNT_RLIMIT_MEMLOCK = 3, - UCOUNT_RLIMIT_COUNTS = 4, -}; - -struct kernel_pkey_query { - __u32 supported_ops; - __u32 key_size; - __u16 max_data_size; - __u16 max_sig_size; - __u16 max_enc_size; - __u16 max_dec_size; -}; - -enum kernel_pkey_operation { - kernel_pkey_encrypt = 0, - kernel_pkey_decrypt = 1, - kernel_pkey_sign = 2, - kernel_pkey_verify = 3, -}; - -struct kernel_pkey_params { - struct key *key; - const char *encoding; - const char *hash_algo; - char *info; - __u32 in_len; - union { - __u32 out_len; - __u32 in2_len; - }; - enum kernel_pkey_operation op: 8; -}; - -struct key_preparsed_payload { - const char *orig_description; - char *description; - union key_payload payload; - const void *data; - size_t datalen; - size_t quotalen; - time64_t expiry; -}; - -struct key_match_data { - bool (*cmp)(const struct key *, const struct key_match_data *); - const void *raw_data; - void *preparsed; - unsigned int lookup_type; -}; - -struct idmap_key { - bool map_up; - u32 id; - u32 count; -}; - -enum { - TASK_COMM_LEN = 16, -}; - -typedef unsigned int xa_mark_t; - -enum xa_lock_type { - XA_LOCK_IRQ = 1, - XA_LOCK_BH = 2, -}; - -struct ida { - struct xarray xa; -}; - -struct ftrace_hash { - long unsigned int size_bits; - struct hlist_head *buckets; - long unsigned int count; - long unsigned int flags; - struct callback_head rcu; -}; - -struct prog_entry; - -struct event_filter { - struct prog_entry *prog; - char *filter_string; -}; - -struct trace_array_cpu; - -struct array_buffer { - struct trace_array *tr; - struct trace_buffer *buffer; - struct trace_array_cpu *data; - u64 time_start; - int cpu; -}; - -struct trace_pid_list; - -struct trace_options; - -struct trace_func_repeats; - -struct trace_array { - struct list_head list; - char *name; - struct array_buffer array_buffer; - unsigned int mapped; - long unsigned int range_addr_start; - long unsigned int range_addr_size; - long int text_delta; - long int data_delta; - struct trace_pid_list *filtered_pids; - struct trace_pid_list *filtered_no_pids; - arch_spinlock_t max_lock; - int buffer_disabled; - int sys_refcount_enter; - int sys_refcount_exit; - struct trace_event_file *enter_syscall_files[463]; - struct trace_event_file *exit_syscall_files[463]; - int stop_count; - int clock_id; - int nr_topts; - bool clear_trace; - int buffer_percent; - unsigned int n_err_log_entries; - struct tracer *current_trace; - unsigned int trace_flags; - unsigned char trace_flags_index[32]; - unsigned int flags; - raw_spinlock_t start_lock; - const char *system_names; - struct list_head err_log; - struct dentry *dir; - struct dentry *options; - struct dentry *percpu_dir; - struct eventfs_inode *event_dir; - struct trace_options *topts; - struct list_head systems; - struct list_head events; - struct trace_event_file *trace_marker_file; - cpumask_var_t tracing_cpumask; - cpumask_var_t pipe_cpumask; - int ref; - int trace_ref; - struct ftrace_ops *ops; - struct trace_pid_list *function_pids; - struct trace_pid_list *function_no_pids; - struct list_head func_probes; - struct list_head mod_trace; - struct list_head mod_notrace; - int function_enabled; - int no_filter_buffering_ref; - struct list_head hist_vars; - struct trace_func_repeats *last_func_repeats; - bool ring_buffer_expanded; -}; - -struct tracer_flags; - -struct tracer { - const char *name; - int (*init)(struct trace_array *); - void (*reset)(struct trace_array *); - void (*start)(struct trace_array *); - void (*stop)(struct trace_array *); - int (*update_thresh)(struct trace_array *); - void (*open)(struct trace_iterator *); - void (*pipe_open)(struct trace_iterator *); - void (*close)(struct trace_iterator *); - void (*pipe_close)(struct trace_iterator *); - ssize_t (*read)(struct trace_iterator *, struct file *, char *, size_t, loff_t *); - ssize_t (*splice_read)(struct trace_iterator *, struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); - void (*print_header)(struct seq_file *); - enum print_line_t (*print_line)(struct trace_iterator *); - int (*set_flag)(struct trace_array *, u32, u32, int); - int (*flag_changed)(struct trace_array *, u32, int); - struct tracer *next; - struct tracer_flags *flags; - int enabled; - bool print_max; - bool allow_instances; - bool noboot; -}; - -enum trace_iter_flags { - TRACE_FILE_LAT_FMT = 1, - TRACE_FILE_ANNOTATE = 2, - TRACE_FILE_TIME_IN_NS = 4, -}; - -enum trace_flag_type { - TRACE_FLAG_IRQS_OFF = 1, - TRACE_FLAG_IRQS_NOSUPPORT = 2, - TRACE_FLAG_NEED_RESCHED = 4, - TRACE_FLAG_HARDIRQ = 8, - TRACE_FLAG_SOFTIRQ = 16, - TRACE_FLAG_PREEMPT_RESCHED = 32, - TRACE_FLAG_NMI = 64, - TRACE_FLAG_BH_OFF = 128, -}; - -struct event_subsystem; - -struct trace_subsystem_dir { - struct list_head list; - struct event_subsystem *subsystem; - struct trace_array *tr; - struct eventfs_inode *ei; - int ref_count; - int nr_events; -}; - -union lower_chunk { - union lower_chunk *next; - long unsigned int data[256]; -}; - -union upper_chunk { - union upper_chunk *next; - union lower_chunk *data[256]; -}; - -struct trace_pid_list { - raw_spinlock_t lock; - struct irq_work refill_irqwork; - union upper_chunk *upper[256]; - union upper_chunk *upper_list; - union lower_chunk *lower_list; - int free_upper_chunks; - int free_lower_chunks; -}; - -enum trace_type { - __TRACE_FIRST_TYPE = 0, - TRACE_FN = 1, - TRACE_CTX = 2, - TRACE_WAKE = 3, - TRACE_STACK = 4, - TRACE_PRINT = 5, - TRACE_BPRINT = 6, - TRACE_MMIO_RW = 7, - TRACE_MMIO_MAP = 8, - TRACE_BRANCH = 9, - TRACE_GRAPH_RET = 10, - TRACE_GRAPH_ENT = 11, - TRACE_USER_STACK = 12, - TRACE_BLK = 13, - TRACE_BPUTS = 14, - TRACE_HWLAT = 15, - TRACE_OSNOISE = 16, - TRACE_TIMERLAT = 17, - TRACE_RAW_DATA = 18, - TRACE_FUNC_REPEATS = 19, - __TRACE_LAST_TYPE = 20, -}; - -struct ftrace_entry { - struct trace_entry ent; - long unsigned int ip; - long unsigned int parent_ip; -}; - -struct ctx_switch_entry { - struct trace_entry ent; - unsigned int prev_pid; - unsigned int next_pid; - unsigned int next_cpu; - unsigned char prev_prio; - unsigned char prev_state; - unsigned char next_prio; - unsigned char next_state; -}; - -struct stack_entry { - struct trace_entry ent; - int size; - long unsigned int caller[0]; -}; - -struct userstack_entry { - struct trace_entry ent; - unsigned int tgid; - long unsigned int caller[8]; -}; - -struct bprint_entry { - struct trace_entry ent; - long unsigned int ip; - const char *fmt; - u32 buf[0]; -}; - -struct print_entry { - struct trace_entry ent; - long unsigned int ip; - char buf[0]; -}; - -struct raw_data_entry { - struct trace_entry ent; - unsigned int id; - char buf[0]; -}; - -struct bputs_entry { - struct trace_entry ent; - long unsigned int ip; - const char *str; -}; - -struct hwlat_entry { - struct trace_entry ent; - u64 duration; - u64 outer_duration; - u64 nmi_total_ts; - struct timespec64 timestamp; - unsigned int nmi_count; - unsigned int seqnum; - unsigned int count; -}; - -struct func_repeats_entry { - struct trace_entry ent; - long unsigned int ip; - long unsigned int parent_ip; - u16 count; - u16 top_delta_ts; - u32 bottom_delta_ts; -}; - -struct osnoise_entry { - struct trace_entry ent; - u64 noise; - u64 runtime; - u64 max_sample; - unsigned int hw_count; - unsigned int nmi_count; - unsigned int irq_count; - unsigned int softirq_count; - unsigned int thread_count; -}; - -struct timerlat_entry { - struct trace_entry ent; - unsigned int seqnum; - int context; - u64 timer_latency; -}; - -struct trace_array_cpu { - atomic_t disabled; - void *buffer_page; - long unsigned int entries; - long unsigned int saved_latency; - long unsigned int critical_start; - long unsigned int critical_end; - long unsigned int critical_sequence; - long unsigned int nice; - long unsigned int policy; - long unsigned int rt_priority; - long unsigned int skipped_entries; - u64 preempt_timestamp; - pid_t pid; - kuid_t uid; - char comm[16]; - int ftrace_ignore_pid; - bool ignore_pid; -}; - -struct trace_option_dentry; - -struct trace_options { - struct tracer *tracer; - struct trace_option_dentry *topts; -}; - -struct tracer_opt; - -struct trace_option_dentry { - struct tracer_opt *opt; - struct tracer_flags *flags; - struct trace_array *tr; - struct dentry *entry; -}; - -struct trace_func_repeats { - long unsigned int ip; - long unsigned int parent_ip; - long unsigned int count; - u64 ts_last_call; -}; - -struct tracer_opt { - const char *name; - u32 bit; -}; - -struct tracer_flags { - u32 val; - struct tracer_opt *opts; - struct tracer *trace; -}; - -enum trace_iterator_bits { - TRACE_ITER_PRINT_PARENT_BIT = 0, - TRACE_ITER_SYM_OFFSET_BIT = 1, - TRACE_ITER_SYM_ADDR_BIT = 2, - TRACE_ITER_VERBOSE_BIT = 3, - TRACE_ITER_RAW_BIT = 4, - TRACE_ITER_HEX_BIT = 5, - TRACE_ITER_BIN_BIT = 6, - TRACE_ITER_BLOCK_BIT = 7, - TRACE_ITER_FIELDS_BIT = 8, - TRACE_ITER_PRINTK_BIT = 9, - TRACE_ITER_ANNOTATE_BIT = 10, - TRACE_ITER_USERSTACKTRACE_BIT = 11, - TRACE_ITER_SYM_USEROBJ_BIT = 12, - TRACE_ITER_PRINTK_MSGONLY_BIT = 13, - TRACE_ITER_CONTEXT_INFO_BIT = 14, - TRACE_ITER_LATENCY_FMT_BIT = 15, - TRACE_ITER_RECORD_CMD_BIT = 16, - TRACE_ITER_RECORD_TGID_BIT = 17, - TRACE_ITER_OVERWRITE_BIT = 18, - TRACE_ITER_STOP_ON_FREE_BIT = 19, - TRACE_ITER_IRQ_INFO_BIT = 20, - TRACE_ITER_MARKERS_BIT = 21, - TRACE_ITER_EVENT_FORK_BIT = 22, - TRACE_ITER_TRACE_PRINTK_BIT = 23, - TRACE_ITER_PAUSE_ON_TRACE_BIT = 24, - TRACE_ITER_HASH_PTR_BIT = 25, - TRACE_ITER_FUNCTION_BIT = 26, - TRACE_ITER_FUNC_FORK_BIT = 27, - TRACE_ITER_STACKTRACE_BIT = 28, - TRACE_ITER_LAST_BIT = 29, -}; - -enum trace_iterator_flags { - TRACE_ITER_PRINT_PARENT = 1, - TRACE_ITER_SYM_OFFSET = 2, - TRACE_ITER_SYM_ADDR = 4, - TRACE_ITER_VERBOSE = 8, - TRACE_ITER_RAW = 16, - TRACE_ITER_HEX = 32, - TRACE_ITER_BIN = 64, - TRACE_ITER_BLOCK = 128, - TRACE_ITER_FIELDS = 256, - TRACE_ITER_PRINTK = 512, - TRACE_ITER_ANNOTATE = 1024, - TRACE_ITER_USERSTACKTRACE = 2048, - TRACE_ITER_SYM_USEROBJ = 4096, - TRACE_ITER_PRINTK_MSGONLY = 8192, - TRACE_ITER_CONTEXT_INFO = 16384, - TRACE_ITER_LATENCY_FMT = 32768, - TRACE_ITER_RECORD_CMD = 65536, - TRACE_ITER_RECORD_TGID = 131072, - TRACE_ITER_OVERWRITE = 262144, - TRACE_ITER_STOP_ON_FREE = 524288, - TRACE_ITER_IRQ_INFO = 1048576, - TRACE_ITER_MARKERS = 2097152, - TRACE_ITER_EVENT_FORK = 4194304, - TRACE_ITER_TRACE_PRINTK = 8388608, - TRACE_ITER_PAUSE_ON_TRACE = 16777216, - TRACE_ITER_HASH_PTR = 33554432, - TRACE_ITER_FUNCTION = 67108864, - TRACE_ITER_FUNC_FORK = 134217728, - TRACE_ITER_STACKTRACE = 268435456, -}; - -struct ftrace_event_field { - struct list_head link; - const char *name; - const char *type; - int filter_type; - int offset; - int size; - unsigned int is_signed: 1; - unsigned int needs_test: 1; - int len; -}; - -struct event_subsystem { - struct list_head list; - const char *name; - struct event_filter *filter; - int ref_count; -}; - -struct trace_mark { - long long unsigned int val; - char sym; -}; - -enum lockdown_reason { - LOCKDOWN_NONE = 0, - LOCKDOWN_MODULE_SIGNATURE = 1, - LOCKDOWN_DEV_MEM = 2, - LOCKDOWN_EFI_TEST = 3, - LOCKDOWN_KEXEC = 4, - LOCKDOWN_HIBERNATION = 5, - LOCKDOWN_PCI_ACCESS = 6, - LOCKDOWN_IOPORT = 7, - LOCKDOWN_MSR = 8, - LOCKDOWN_ACPI_TABLES = 9, - LOCKDOWN_DEVICE_TREE = 10, - LOCKDOWN_PCMCIA_CIS = 11, - LOCKDOWN_TIOCSSERIAL = 12, - LOCKDOWN_MODULE_PARAMETERS = 13, - LOCKDOWN_MMIOTRACE = 14, - LOCKDOWN_DEBUGFS = 15, - LOCKDOWN_XMON_WR = 16, - LOCKDOWN_BPF_WRITE_USER = 17, - LOCKDOWN_DBG_WRITE_KERNEL = 18, - LOCKDOWN_RTAS_ERROR_INJECTION = 19, - LOCKDOWN_INTEGRITY_MAX = 20, - LOCKDOWN_KCORE = 21, - LOCKDOWN_KPROBES = 22, - LOCKDOWN_BPF_READ_KERNEL = 23, - LOCKDOWN_DBG_READ_KERNEL = 24, - LOCKDOWN_PERF = 25, - LOCKDOWN_TRACEFS = 26, - LOCKDOWN_XMON_RW = 27, - LOCKDOWN_XFRM_SECRET = 28, - LOCKDOWN_CONFIDENTIALITY_MAX = 29, -}; - -enum dynevent_type { - DYNEVENT_TYPE_SYNTH = 1, - DYNEVENT_TYPE_KPROBE = 2, - DYNEVENT_TYPE_NONE = 3, -}; - -struct dynevent_cmd; - -typedef int (*dynevent_create_fn_t)(struct dynevent_cmd *); - -struct dynevent_cmd { - struct seq_buf seq; - const char *event_name; - unsigned int n_fields; - enum dynevent_type type; - dynevent_create_fn_t run_command; - void *private_data; -}; - -struct dyn_event; - -struct dyn_event_operations { - struct list_head list; - int (*create)(const char *); - int (*show)(struct seq_file *, struct dyn_event *); - bool (*is_busy)(struct dyn_event *); - int (*free)(struct dyn_event *); - bool (*match)(const char *, const char *, int, const char **, struct dyn_event *); -}; - -struct dyn_event { - struct list_head list; - struct dyn_event_operations *ops; -}; - -typedef int (*dynevent_check_arg_fn_t)(void *); - -struct dynevent_arg { - const char *str; - char separator; -}; - -struct dynevent_arg_pair { - const char *lhs; - const char *rhs; - char operator; - char separator; -}; - -union bpf_iter_link_info { - struct { - __u32 map_fd; - } map; - struct { - enum bpf_cgroup_iter_order order; - __u32 cgroup_fd; - __u64 cgroup_id; - } cgroup; - struct { - __u32 tid; - __u32 pid; - __u32 pid_fd; - } task; -}; - -enum bpf_func_id { - BPF_FUNC_unspec = 0, - BPF_FUNC_map_lookup_elem = 1, - BPF_FUNC_map_update_elem = 2, - BPF_FUNC_map_delete_elem = 3, - BPF_FUNC_probe_read = 4, - BPF_FUNC_ktime_get_ns = 5, - BPF_FUNC_trace_printk = 6, - BPF_FUNC_get_prandom_u32 = 7, - BPF_FUNC_get_smp_processor_id = 8, - BPF_FUNC_skb_store_bytes = 9, - BPF_FUNC_l3_csum_replace = 10, - BPF_FUNC_l4_csum_replace = 11, - BPF_FUNC_tail_call = 12, - BPF_FUNC_clone_redirect = 13, - BPF_FUNC_get_current_pid_tgid = 14, - BPF_FUNC_get_current_uid_gid = 15, - BPF_FUNC_get_current_comm = 16, - BPF_FUNC_get_cgroup_classid = 17, - BPF_FUNC_skb_vlan_push = 18, - BPF_FUNC_skb_vlan_pop = 19, - BPF_FUNC_skb_get_tunnel_key = 20, - BPF_FUNC_skb_set_tunnel_key = 21, - BPF_FUNC_perf_event_read = 22, - BPF_FUNC_redirect = 23, - BPF_FUNC_get_route_realm = 24, - BPF_FUNC_perf_event_output = 25, - BPF_FUNC_skb_load_bytes = 26, - BPF_FUNC_get_stackid = 27, - BPF_FUNC_csum_diff = 28, - BPF_FUNC_skb_get_tunnel_opt = 29, - BPF_FUNC_skb_set_tunnel_opt = 30, - BPF_FUNC_skb_change_proto = 31, - BPF_FUNC_skb_change_type = 32, - BPF_FUNC_skb_under_cgroup = 33, - BPF_FUNC_get_hash_recalc = 34, - BPF_FUNC_get_current_task = 35, - BPF_FUNC_probe_write_user = 36, - BPF_FUNC_current_task_under_cgroup = 37, - BPF_FUNC_skb_change_tail = 38, - BPF_FUNC_skb_pull_data = 39, - BPF_FUNC_csum_update = 40, - BPF_FUNC_set_hash_invalid = 41, - BPF_FUNC_get_numa_node_id = 42, - BPF_FUNC_skb_change_head = 43, - BPF_FUNC_xdp_adjust_head = 44, - BPF_FUNC_probe_read_str = 45, - BPF_FUNC_get_socket_cookie = 46, - BPF_FUNC_get_socket_uid = 47, - BPF_FUNC_set_hash = 48, - BPF_FUNC_setsockopt = 49, - BPF_FUNC_skb_adjust_room = 50, - BPF_FUNC_redirect_map = 51, - BPF_FUNC_sk_redirect_map = 52, - BPF_FUNC_sock_map_update = 53, - BPF_FUNC_xdp_adjust_meta = 54, - BPF_FUNC_perf_event_read_value = 55, - BPF_FUNC_perf_prog_read_value = 56, - BPF_FUNC_getsockopt = 57, - BPF_FUNC_override_return = 58, - BPF_FUNC_sock_ops_cb_flags_set = 59, - BPF_FUNC_msg_redirect_map = 60, - BPF_FUNC_msg_apply_bytes = 61, - BPF_FUNC_msg_cork_bytes = 62, - BPF_FUNC_msg_pull_data = 63, - BPF_FUNC_bind = 64, - BPF_FUNC_xdp_adjust_tail = 65, - BPF_FUNC_skb_get_xfrm_state = 66, - BPF_FUNC_get_stack = 67, - BPF_FUNC_skb_load_bytes_relative = 68, - BPF_FUNC_fib_lookup = 69, - BPF_FUNC_sock_hash_update = 70, - BPF_FUNC_msg_redirect_hash = 71, - BPF_FUNC_sk_redirect_hash = 72, - BPF_FUNC_lwt_push_encap = 73, - BPF_FUNC_lwt_seg6_store_bytes = 74, - BPF_FUNC_lwt_seg6_adjust_srh = 75, - BPF_FUNC_lwt_seg6_action = 76, - BPF_FUNC_rc_repeat = 77, - BPF_FUNC_rc_keydown = 78, - BPF_FUNC_skb_cgroup_id = 79, - BPF_FUNC_get_current_cgroup_id = 80, - BPF_FUNC_get_local_storage = 81, - BPF_FUNC_sk_select_reuseport = 82, - BPF_FUNC_skb_ancestor_cgroup_id = 83, - BPF_FUNC_sk_lookup_tcp = 84, - BPF_FUNC_sk_lookup_udp = 85, - BPF_FUNC_sk_release = 86, - BPF_FUNC_map_push_elem = 87, - BPF_FUNC_map_pop_elem = 88, - BPF_FUNC_map_peek_elem = 89, - BPF_FUNC_msg_push_data = 90, - BPF_FUNC_msg_pop_data = 91, - BPF_FUNC_rc_pointer_rel = 92, - BPF_FUNC_spin_lock = 93, - BPF_FUNC_spin_unlock = 94, - BPF_FUNC_sk_fullsock = 95, - BPF_FUNC_tcp_sock = 96, - BPF_FUNC_skb_ecn_set_ce = 97, - BPF_FUNC_get_listener_sock = 98, - BPF_FUNC_skc_lookup_tcp = 99, - BPF_FUNC_tcp_check_syncookie = 100, - BPF_FUNC_sysctl_get_name = 101, - BPF_FUNC_sysctl_get_current_value = 102, - BPF_FUNC_sysctl_get_new_value = 103, - BPF_FUNC_sysctl_set_new_value = 104, - BPF_FUNC_strtol = 105, - BPF_FUNC_strtoul = 106, - BPF_FUNC_sk_storage_get = 107, - BPF_FUNC_sk_storage_delete = 108, - BPF_FUNC_send_signal = 109, - BPF_FUNC_tcp_gen_syncookie = 110, - BPF_FUNC_skb_output = 111, - BPF_FUNC_probe_read_user = 112, - BPF_FUNC_probe_read_kernel = 113, - BPF_FUNC_probe_read_user_str = 114, - BPF_FUNC_probe_read_kernel_str = 115, - BPF_FUNC_tcp_send_ack = 116, - BPF_FUNC_send_signal_thread = 117, - BPF_FUNC_jiffies64 = 118, - BPF_FUNC_read_branch_records = 119, - BPF_FUNC_get_ns_current_pid_tgid = 120, - BPF_FUNC_xdp_output = 121, - BPF_FUNC_get_netns_cookie = 122, - BPF_FUNC_get_current_ancestor_cgroup_id = 123, - BPF_FUNC_sk_assign = 124, - BPF_FUNC_ktime_get_boot_ns = 125, - BPF_FUNC_seq_printf = 126, - BPF_FUNC_seq_write = 127, - BPF_FUNC_sk_cgroup_id = 128, - BPF_FUNC_sk_ancestor_cgroup_id = 129, - BPF_FUNC_ringbuf_output = 130, - BPF_FUNC_ringbuf_reserve = 131, - BPF_FUNC_ringbuf_submit = 132, - BPF_FUNC_ringbuf_discard = 133, - BPF_FUNC_ringbuf_query = 134, - BPF_FUNC_csum_level = 135, - BPF_FUNC_skc_to_tcp6_sock = 136, - BPF_FUNC_skc_to_tcp_sock = 137, - BPF_FUNC_skc_to_tcp_timewait_sock = 138, - BPF_FUNC_skc_to_tcp_request_sock = 139, - BPF_FUNC_skc_to_udp6_sock = 140, - BPF_FUNC_get_task_stack = 141, - BPF_FUNC_load_hdr_opt = 142, - BPF_FUNC_store_hdr_opt = 143, - BPF_FUNC_reserve_hdr_opt = 144, - BPF_FUNC_inode_storage_get = 145, - BPF_FUNC_inode_storage_delete = 146, - BPF_FUNC_d_path = 147, - BPF_FUNC_copy_from_user = 148, - BPF_FUNC_snprintf_btf = 149, - BPF_FUNC_seq_printf_btf = 150, - BPF_FUNC_skb_cgroup_classid = 151, - BPF_FUNC_redirect_neigh = 152, - BPF_FUNC_per_cpu_ptr = 153, - BPF_FUNC_this_cpu_ptr = 154, - BPF_FUNC_redirect_peer = 155, - BPF_FUNC_task_storage_get = 156, - BPF_FUNC_task_storage_delete = 157, - BPF_FUNC_get_current_task_btf = 158, - BPF_FUNC_bprm_opts_set = 159, - BPF_FUNC_ktime_get_coarse_ns = 160, - BPF_FUNC_ima_inode_hash = 161, - BPF_FUNC_sock_from_file = 162, - BPF_FUNC_check_mtu = 163, - BPF_FUNC_for_each_map_elem = 164, - BPF_FUNC_snprintf = 165, - BPF_FUNC_sys_bpf = 166, - BPF_FUNC_btf_find_by_name_kind = 167, - BPF_FUNC_sys_close = 168, - BPF_FUNC_timer_init = 169, - BPF_FUNC_timer_set_callback = 170, - BPF_FUNC_timer_start = 171, - BPF_FUNC_timer_cancel = 172, - BPF_FUNC_get_func_ip = 173, - BPF_FUNC_get_attach_cookie = 174, - BPF_FUNC_task_pt_regs = 175, - BPF_FUNC_get_branch_snapshot = 176, - BPF_FUNC_trace_vprintk = 177, - BPF_FUNC_skc_to_unix_sock = 178, - BPF_FUNC_kallsyms_lookup_name = 179, - BPF_FUNC_find_vma = 180, - BPF_FUNC_loop = 181, - BPF_FUNC_strncmp = 182, - BPF_FUNC_get_func_arg = 183, - BPF_FUNC_get_func_ret = 184, - BPF_FUNC_get_func_arg_cnt = 185, - BPF_FUNC_get_retval = 186, - BPF_FUNC_set_retval = 187, - BPF_FUNC_xdp_get_buff_len = 188, - BPF_FUNC_xdp_load_bytes = 189, - BPF_FUNC_xdp_store_bytes = 190, - BPF_FUNC_copy_from_user_task = 191, - BPF_FUNC_skb_set_tstamp = 192, - BPF_FUNC_ima_file_hash = 193, - BPF_FUNC_kptr_xchg = 194, - BPF_FUNC_map_lookup_percpu_elem = 195, - BPF_FUNC_skc_to_mptcp_sock = 196, - BPF_FUNC_dynptr_from_mem = 197, - BPF_FUNC_ringbuf_reserve_dynptr = 198, - BPF_FUNC_ringbuf_submit_dynptr = 199, - BPF_FUNC_ringbuf_discard_dynptr = 200, - BPF_FUNC_dynptr_read = 201, - BPF_FUNC_dynptr_write = 202, - BPF_FUNC_dynptr_data = 203, - BPF_FUNC_tcp_raw_gen_syncookie_ipv4 = 204, - BPF_FUNC_tcp_raw_gen_syncookie_ipv6 = 205, - BPF_FUNC_tcp_raw_check_syncookie_ipv4 = 206, - BPF_FUNC_tcp_raw_check_syncookie_ipv6 = 207, - BPF_FUNC_ktime_get_tai_ns = 208, - BPF_FUNC_user_ringbuf_drain = 209, - BPF_FUNC_cgrp_storage_get = 210, - BPF_FUNC_cgrp_storage_delete = 211, - __BPF_FUNC_MAX_ID = 212, -}; - -enum bpf_arg_type { - ARG_DONTCARE = 0, - ARG_CONST_MAP_PTR = 1, - ARG_PTR_TO_MAP_KEY = 2, - ARG_PTR_TO_MAP_VALUE = 3, - ARG_PTR_TO_MEM = 4, - ARG_PTR_TO_ARENA = 5, - ARG_CONST_SIZE = 6, - ARG_CONST_SIZE_OR_ZERO = 7, - ARG_PTR_TO_CTX = 8, - ARG_ANYTHING = 9, - ARG_PTR_TO_SPIN_LOCK = 10, - ARG_PTR_TO_SOCK_COMMON = 11, - ARG_PTR_TO_SOCKET = 12, - ARG_PTR_TO_BTF_ID = 13, - ARG_PTR_TO_RINGBUF_MEM = 14, - ARG_CONST_ALLOC_SIZE_OR_ZERO = 15, - ARG_PTR_TO_BTF_ID_SOCK_COMMON = 16, - ARG_PTR_TO_PERCPU_BTF_ID = 17, - ARG_PTR_TO_FUNC = 18, - ARG_PTR_TO_STACK = 19, - ARG_PTR_TO_CONST_STR = 20, - ARG_PTR_TO_TIMER = 21, - ARG_KPTR_XCHG_DEST = 22, - ARG_PTR_TO_DYNPTR = 23, - __BPF_ARG_TYPE_MAX = 24, - ARG_PTR_TO_MAP_VALUE_OR_NULL = 259, - ARG_PTR_TO_MEM_OR_NULL = 260, - ARG_PTR_TO_CTX_OR_NULL = 264, - ARG_PTR_TO_SOCKET_OR_NULL = 268, - ARG_PTR_TO_STACK_OR_NULL = 275, - ARG_PTR_TO_BTF_ID_OR_NULL = 269, - ARG_PTR_TO_UNINIT_MEM = 67141636, - ARG_PTR_TO_FIXED_SIZE_MEM = 262148, - __BPF_ARG_TYPE_LIMIT = 134217727, -}; - -enum bpf_return_type { - RET_INTEGER = 0, - RET_VOID = 1, - RET_PTR_TO_MAP_VALUE = 2, - RET_PTR_TO_SOCKET = 3, - RET_PTR_TO_TCP_SOCK = 4, - RET_PTR_TO_SOCK_COMMON = 5, - RET_PTR_TO_MEM = 6, - RET_PTR_TO_MEM_OR_BTF_ID = 7, - RET_PTR_TO_BTF_ID = 8, - __BPF_RET_TYPE_MAX = 9, - RET_PTR_TO_MAP_VALUE_OR_NULL = 258, - RET_PTR_TO_SOCKET_OR_NULL = 259, - RET_PTR_TO_TCP_SOCK_OR_NULL = 260, - RET_PTR_TO_SOCK_COMMON_OR_NULL = 261, - RET_PTR_TO_RINGBUF_MEM_OR_NULL = 1286, - RET_PTR_TO_DYNPTR_MEM_OR_NULL = 262, - RET_PTR_TO_BTF_ID_OR_NULL = 264, - RET_PTR_TO_BTF_ID_TRUSTED = 1048584, - __BPF_RET_TYPE_LIMIT = 134217727, -}; - -struct bpf_func_proto { - u64 (*func)(u64, u64, u64, u64, u64); - bool gpl_only; - bool pkt_access; - bool might_sleep; - bool allow_fastcall; - enum bpf_return_type ret_type; - union { - struct { - enum bpf_arg_type arg1_type; - enum bpf_arg_type arg2_type; - enum bpf_arg_type arg3_type; - enum bpf_arg_type arg4_type; - enum bpf_arg_type arg5_type; - }; - enum bpf_arg_type arg_type[5]; - }; - union { - struct { - u32 *arg1_btf_id; - u32 *arg2_btf_id; - u32 *arg3_btf_id; - u32 *arg4_btf_id; - u32 *arg5_btf_id; - }; - u32 *arg_btf_id[5]; - struct { - size_t arg1_size; - size_t arg2_size; - size_t arg3_size; - size_t arg4_size; - size_t arg5_size; - }; - size_t arg_size[5]; - }; - int *ret_btf_id; - bool (*allowed)(const struct bpf_prog *); -}; - -typedef int (*bpf_iter_attach_target_t)(struct bpf_prog *, union bpf_iter_link_info *, struct bpf_iter_aux_info *); - -typedef void (*bpf_iter_detach_target_t)(struct bpf_iter_aux_info *); - -typedef void (*bpf_iter_show_fdinfo_t)(const struct bpf_iter_aux_info *, struct seq_file *); - -typedef int (*bpf_iter_fill_link_info_t)(const struct bpf_iter_aux_info *, struct bpf_link_info *); - -typedef const struct bpf_func_proto * (*bpf_iter_get_func_proto_t)(enum bpf_func_id, const struct bpf_prog *); - -struct bpf_iter_reg { - const char *target; - bpf_iter_attach_target_t attach_target; - bpf_iter_detach_target_t detach_target; - bpf_iter_show_fdinfo_t show_fdinfo; - bpf_iter_fill_link_info_t fill_link_info; - bpf_iter_get_func_proto_t get_func_proto; - u32 ctx_arg_info_size; - u32 feature; - struct bpf_ctx_arg_aux ctx_arg_info[2]; - const struct bpf_iter_seq_info *seq_info; -}; - -struct bpf_iter_meta { - union { - struct seq_file *seq; - }; - u64 session_id; - u64 seq_num; -}; - -struct bpf_iter_seq_prog_info { - u32 prog_id; -}; - -struct bpf_iter__bpf_prog { - union { - struct bpf_iter_meta *meta; - }; - union { - struct bpf_prog *prog; - }; -}; - -struct fdtable { - unsigned int max_fds; - struct file **fd; - long unsigned int *close_on_exec; - long unsigned int *open_fds; - long unsigned int *full_fds_bits; - struct callback_head rcu; -}; - -struct files_struct { - atomic_t count; - bool resize_in_progress; - wait_queue_head_t resize_wait; - struct fdtable *fdt; - struct fdtable fdtab; - long: 64; - long: 64; - long: 64; - long: 64; - spinlock_t file_lock; - unsigned int next_fd; - long unsigned int close_on_exec_init[1]; - long unsigned int open_fds_init[1]; - long unsigned int full_fds_bits_init[1]; - struct file *fd_array[64]; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct bpf_local_storage_data; - -struct bpf_local_storage { - struct bpf_local_storage_data *cache[16]; - struct bpf_local_storage_map *smap; - struct hlist_head list; - void *owner; - struct callback_head rcu; - raw_spinlock_t lock; -}; - -enum { - BPF_ANY = 0, - BPF_NOEXIST = 1, - BPF_EXIST = 2, - BPF_F_LOCK = 4, -}; - -enum { - BPF_LOCAL_STORAGE_GET_F_CREATE = 1, - BPF_SK_STORAGE_GET_F_CREATE = 1, -}; - -enum { - BTF_TRACING_TYPE_TASK = 0, - BTF_TRACING_TYPE_FILE = 1, - BTF_TRACING_TYPE_VMA = 2, - MAX_BTF_TRACING_TYPE = 3, -}; - -struct bpf_mem_caches; - -struct bpf_mem_cache; - -struct bpf_mem_alloc { - struct bpf_mem_caches *caches; - struct bpf_mem_cache *cache; - struct obj_cgroup *objcg; - bool percpu; - struct work_struct work; -}; - -struct bpf_local_storage_map_bucket; - -struct bpf_local_storage_map { - struct bpf_map map; - struct bpf_local_storage_map_bucket *buckets; - u32 bucket_log; - u16 elem_size; - u16 cache_idx; - struct bpf_mem_alloc selem_ma; - struct bpf_mem_alloc storage_ma; - bool bpf_ma; -}; - -struct bpf_local_storage_map_bucket { - struct hlist_head list; - raw_spinlock_t lock; -}; - -struct bpf_local_storage_data { - struct bpf_local_storage_map *smap; - u8 data[0]; -}; - -struct bpf_local_storage_elem { - struct hlist_node map_node; - struct hlist_node snode; - struct bpf_local_storage *local_storage; - struct callback_head rcu; - long: 64; - struct bpf_local_storage_data sdata; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct bpf_local_storage_cache { - spinlock_t idx_lock; - u64 idx_usage_counts[16]; -}; - -typedef u64 (*btf_bpf_task_storage_get_recur)(struct bpf_map *, struct task_struct *, void *, u64, gfp_t); - -typedef u64 (*btf_bpf_task_storage_get)(struct bpf_map *, struct task_struct *, void *, u64, gfp_t); - -typedef u64 (*btf_bpf_task_storage_delete_recur)(struct bpf_map *, struct task_struct *); - -typedef u64 (*btf_bpf_task_storage_delete)(struct bpf_map *, struct task_struct *); - -enum { - BPF_F_NO_PREALLOC = 1, - BPF_F_NO_COMMON_LRU = 2, - BPF_F_NUMA_NODE = 4, - BPF_F_RDONLY = 8, - BPF_F_WRONLY = 16, - BPF_F_STACK_BUILD_ID = 32, - BPF_F_ZERO_SEED = 64, - BPF_F_RDONLY_PROG = 128, - BPF_F_WRONLY_PROG = 256, - BPF_F_CLONE = 512, - BPF_F_MMAPABLE = 1024, - BPF_F_PRESERVE_ELEMS = 2048, - BPF_F_INNER_MAP = 4096, - BPF_F_LINK = 8192, - BPF_F_PATH_FD = 16384, - BPF_F_VTYPE_BTF_OBJ_FD = 32768, - BPF_F_TOKEN_FD = 65536, - BPF_F_SEGV_ON_FAULT = 131072, - BPF_F_NO_USER_CONV = 262144, -}; - -enum bpf_stack_build_id_status { - BPF_STACK_BUILD_ID_EMPTY = 0, - BPF_STACK_BUILD_ID_VALID = 1, - BPF_STACK_BUILD_ID_IP = 2, -}; - -struct bpf_stack_build_id { - __s32 status; - unsigned char build_id[20]; - union { - __u64 offset; - __u64 ip; - }; -}; - -enum { - BPF_F_SKIP_FIELD_MASK = 255, - BPF_F_USER_STACK = 256, - BPF_F_FAST_STACK_CMP = 512, - BPF_F_REUSE_STACKID = 1024, - BPF_F_USER_BUILD_ID = 2048, -}; - -enum perf_event_sample_format { - PERF_SAMPLE_IP = 1, - PERF_SAMPLE_TID = 2, - PERF_SAMPLE_TIME = 4, - PERF_SAMPLE_ADDR = 8, - PERF_SAMPLE_READ = 16, - PERF_SAMPLE_CALLCHAIN = 32, - PERF_SAMPLE_ID = 64, - PERF_SAMPLE_CPU = 128, - PERF_SAMPLE_PERIOD = 256, - PERF_SAMPLE_STREAM_ID = 512, - PERF_SAMPLE_RAW = 1024, - PERF_SAMPLE_BRANCH_STACK = 2048, - PERF_SAMPLE_REGS_USER = 4096, - PERF_SAMPLE_STACK_USER = 8192, - PERF_SAMPLE_WEIGHT = 16384, - PERF_SAMPLE_DATA_SRC = 32768, - PERF_SAMPLE_IDENTIFIER = 65536, - PERF_SAMPLE_TRANSACTION = 131072, - PERF_SAMPLE_REGS_INTR = 262144, - PERF_SAMPLE_PHYS_ADDR = 524288, - PERF_SAMPLE_AUX = 1048576, - PERF_SAMPLE_CGROUP = 2097152, - PERF_SAMPLE_DATA_PAGE_SIZE = 4194304, - PERF_SAMPLE_CODE_PAGE_SIZE = 8388608, - PERF_SAMPLE_WEIGHT_STRUCT = 16777216, - PERF_SAMPLE_MAX = 33554432, -}; - -enum perf_callchain_context { - PERF_CONTEXT_HV = 18446744073709551584ULL, - PERF_CONTEXT_KERNEL = 18446744073709551488ULL, - PERF_CONTEXT_USER = 18446744073709551104ULL, - PERF_CONTEXT_GUEST = 18446744073709549568ULL, - PERF_CONTEXT_GUEST_KERNEL = 18446744073709549440ULL, - PERF_CONTEXT_GUEST_USER = 18446744073709549056ULL, - PERF_CONTEXT_MAX = 18446744073709547521ULL, -}; - -typedef struct user_pt_regs bpf_user_pt_regs_t; - -struct bpf_perf_event_data_kern { - bpf_user_pt_regs_t *regs; - struct perf_sample_data *data; - struct perf_event *event; -}; - -struct pcpu_freelist_node; - -struct pcpu_freelist_head { - struct pcpu_freelist_node *first; - raw_spinlock_t lock; -}; - -struct pcpu_freelist_node { - struct pcpu_freelist_node *next; -}; - -struct pcpu_freelist { - struct pcpu_freelist_head *freelist; - struct pcpu_freelist_head extralist; -}; - -struct mmap_unlock_irq_work { - struct irq_work irq_work; - struct mm_struct *mm; -}; - -struct stack_map_bucket { - struct pcpu_freelist_node fnode; - u32 hash; - u32 nr; - u64 data[0]; -}; - -struct bpf_stack_map { - struct bpf_map map; - void *elems; - struct pcpu_freelist freelist; - u32 n_buckets; - struct stack_map_bucket *buckets[0]; -}; - -typedef u64 (*btf_bpf_get_stackid)(struct pt_regs *, struct bpf_map *, u64); - -typedef u64 (*btf_bpf_get_stackid_pe)(struct bpf_perf_event_data_kern *, struct bpf_map *, u64); - -typedef u64 (*btf_bpf_get_stack)(struct pt_regs *, void *, u32, u64); - -typedef u64 (*btf_bpf_get_stack_sleepable)(struct pt_regs *, void *, u32, u64); - -typedef u64 (*btf_bpf_get_task_stack)(struct task_struct *, void *, u32, u64); - -typedef u64 (*btf_bpf_get_task_stack_sleepable)(struct task_struct *, void *, u32, u64); - -typedef u64 (*btf_bpf_get_stack_pe)(struct bpf_perf_event_data_kern *, void *, u32, u64); - -struct static_key_true { - struct static_key key; -}; - -struct seqcount_rwlock { - seqcount_t seqcount; -}; - -typedef struct seqcount_rwlock seqcount_rwlock_t; - -enum { - MM_FILEPAGES = 0, - MM_ANONPAGES = 1, - MM_SWAPENTS = 2, - MM_SHMEMPAGES = 3, - NR_MM_COUNTERS = 4, -}; - -enum node_states { - N_POSSIBLE = 0, - N_ONLINE = 1, - N_NORMAL_MEMORY = 2, - N_HIGH_MEMORY = 2, - N_MEMORY = 3, - N_CPU = 4, - N_GENERIC_INITIATOR = 5, - NR_NODE_STATES = 6, -}; - -struct maple_alloc { - long unsigned int total; - unsigned char node_count; - unsigned int request_count; - struct maple_alloc *slot[30]; -}; - -struct maple_enode; - -enum store_type { - wr_invalid = 0, - wr_new_root = 1, - wr_store_root = 2, - wr_exact_fit = 3, - wr_spanning_store = 4, - wr_split_store = 5, - wr_rebalance = 6, - wr_append = 7, - wr_node_store = 8, - wr_slot_store = 9, -}; - -enum maple_status { - ma_active = 0, - ma_start = 1, - ma_root = 2, - ma_none = 3, - ma_pause = 4, - ma_overflow = 5, - ma_underflow = 6, - ma_error = 7, -}; - -struct ma_state { - struct maple_tree *tree; - long unsigned int index; - long unsigned int last; - struct maple_enode *node; - long unsigned int min; - long unsigned int max; - struct maple_alloc *alloc; - enum maple_status status; - unsigned char depth; - unsigned char offset; - unsigned char mas_flags; - unsigned char end; - enum store_type store_type; -}; - -struct uprobe_consumer { - int (*handler)(struct uprobe_consumer *, struct pt_regs *); - int (*ret_handler)(struct uprobe_consumer *, long unsigned int, struct pt_regs *); - bool (*filter)(struct uprobe_consumer *, struct mm_struct *); - struct list_head cons_node; -}; - -typedef __le32 uprobe_opcode_t; - -struct uprobe { - struct rb_node rb_node; - refcount_t ref; - struct rw_semaphore register_rwsem; - struct rw_semaphore consumer_rwsem; - struct list_head pending_list; - struct list_head consumers; - struct inode *inode; - struct callback_head rcu; - loff_t offset; - loff_t ref_ctr_offset; - long unsigned int flags; - struct arch_uprobe arch; -}; - -enum rp_check { - RP_CHECK_CALL = 0, - RP_CHECK_CHAIN_CALL = 1, - RP_CHECK_RET = 2, -}; - -struct xol_area { - wait_queue_head_t wq; - atomic_t slot_count; - long unsigned int *bitmap; - struct page *page; - long unsigned int vaddr; -}; - -struct anon_vma { - struct anon_vma *root; - struct rw_semaphore rwsem; - atomic_t refcount; - long unsigned int num_children; - long unsigned int num_active_vmas; - struct anon_vma *parent; - struct rb_root_cached rb_root; -}; - -struct vma_iterator { - struct ma_state mas; -}; - -struct vm_special_mapping { - const char *name; - struct page **pages; - vm_fault_t (*fault)(const struct vm_special_mapping *, struct vm_area_struct *, struct vm_fault *); - int (*mremap)(const struct vm_special_mapping *, struct vm_area_struct *); - void (*close)(const struct vm_special_mapping *, struct vm_area_struct *); -}; - -enum { - FOLL_WRITE = 1, - FOLL_GET = 2, - FOLL_DUMP = 4, - FOLL_FORCE = 8, - FOLL_NOWAIT = 16, - FOLL_NOFAULT = 32, - FOLL_HWPOISON = 64, - FOLL_ANON = 128, - FOLL_LONGTERM = 256, - FOLL_SPLIT_PMD = 512, - FOLL_PCI_P2PDMA = 1024, - FOLL_INTERRUPTIBLE = 2048, - FOLL_HONOR_NUMA_FAULT = 4096, -}; - -enum pageflags { - PG_locked = 0, - PG_writeback = 1, - PG_referenced = 2, - PG_uptodate = 3, - PG_dirty = 4, - PG_lru = 5, - PG_head = 6, - PG_waiters = 7, - PG_active = 8, - PG_workingset = 9, - PG_owner_priv_1 = 10, - PG_owner_2 = 11, - PG_arch_1 = 12, - PG_reserved = 13, - PG_private = 14, - PG_private_2 = 15, - PG_reclaim = 16, - PG_swapbacked = 17, - PG_unevictable = 18, - PG_mlocked = 19, - PG_arch_2 = 20, - PG_arch_3 = 21, - __NR_PAGEFLAGS = 22, - PG_readahead = 16, - PG_swapcache = 10, - PG_checked = 10, - PG_anon_exclusive = 11, - PG_mappedtodisk = 11, - PG_fscache = 15, - PG_pinned = 10, - PG_savepinned = 4, - PG_foreign = 10, - PG_xen_remapped = 10, - PG_isolated = 16, - PG_reported = 3, - PG_has_hwpoisoned = 8, - PG_large_rmappable = 9, - PG_partially_mapped = 16, -}; - -enum pagetype { - PGTY_buddy = 240, - PGTY_offline = 241, - PGTY_table = 242, - PGTY_guard = 243, - PGTY_hugetlb = 244, - PGTY_slab = 245, - PGTY_zsmalloc = 246, - PGTY_unaccepted = 247, - PGTY_mapcount_underflow = 255, -}; - -struct mmu_notifier_range { - long unsigned int start; - long unsigned int end; -}; - -typedef int filler_t(struct file *, struct folio *); - -typedef unsigned int fgf_t; - -typedef int rmap_t; - -struct page_vma_mapped_walk { - long unsigned int pfn; - long unsigned int nr_pages; - long unsigned int pgoff; - struct vm_area_struct *vma; - long unsigned int address; - pmd_t *pmd; - pte_t *pte; - spinlock_t *ptl; - unsigned int flags; -}; - -typedef void (*task_work_func_t)(struct callback_head *); - -enum task_work_notify_mode { - TWA_NONE = 0, - TWA_RESUME = 1, - TWA_SIGNAL = 2, - TWA_SIGNAL_NO_IPI = 3, - TWA_NMI_CURRENT = 4, - TWA_FLAGS = 65280, - TWAF_NO_ALLOC = 256, -}; - -struct delayed_uprobe { - struct list_head list; - struct uprobe *uprobe; - struct mm_struct *mm; -}; - -struct __uprobe_key { - struct inode *inode; - loff_t offset; -}; - -struct map_info { - struct map_info *next; - struct mm_struct *mm; - long unsigned int vaddr; -}; - -struct compact_control; - -struct capture_control { - struct compact_control *cc; - struct page *page; -}; - -enum migratetype { - MIGRATE_UNMOVABLE = 0, - MIGRATE_MOVABLE = 1, - MIGRATE_RECLAIMABLE = 2, - MIGRATE_PCPTYPES = 3, - MIGRATE_HIGHATOMIC = 3, - MIGRATE_TYPES = 4, -}; - -enum lru_list { - LRU_INACTIVE_ANON = 0, - LRU_ACTIVE_ANON = 1, - LRU_INACTIVE_FILE = 2, - LRU_ACTIVE_FILE = 3, - LRU_UNEVICTABLE = 4, - NR_LRU_LISTS = 5, -}; - -enum zone_watermarks { - WMARK_MIN = 0, - WMARK_LOW = 1, - WMARK_HIGH = 2, - WMARK_PROMO = 3, - NR_WMARK = 4, -}; - -typedef struct pglist_data pg_data_t; - -struct mem_section_usage { - struct callback_head rcu; - long unsigned int subsection_map[1]; - long unsigned int pageblock_flags[0]; -}; - -struct mem_section { - long unsigned int section_mem_map; - struct mem_section_usage *usage; -}; - -enum { - SECTION_MARKED_PRESENT_BIT = 0, - SECTION_HAS_MEM_MAP_BIT = 1, - SECTION_IS_ONLINE_BIT = 2, - SECTION_IS_EARLY_BIT = 3, - SECTION_MAP_LAST_BIT = 4, -}; - -enum vm_stat_item { - NR_DIRTY_THRESHOLD = 0, - NR_DIRTY_BG_THRESHOLD = 1, - NR_MEMMAP_PAGES = 2, - NR_MEMMAP_BOOT_PAGES = 3, - NR_VM_STAT_ITEMS = 4, -}; - -struct vm_event_state { - long unsigned int event[102]; -}; - -enum { - TASKSTATS_CMD_UNSPEC = 0, - TASKSTATS_CMD_GET = 1, - TASKSTATS_CMD_NEW = 2, - __TASKSTATS_CMD_MAX = 3, -}; - -enum cgroup_bpf_attach_type { - CGROUP_BPF_ATTACH_TYPE_INVALID = -1, - CGROUP_INET_INGRESS = 0, - CGROUP_INET_EGRESS = 1, - CGROUP_INET_SOCK_CREATE = 2, - CGROUP_SOCK_OPS = 3, - CGROUP_DEVICE = 4, - CGROUP_INET4_BIND = 5, - CGROUP_INET6_BIND = 6, - CGROUP_INET4_CONNECT = 7, - CGROUP_INET6_CONNECT = 8, - CGROUP_UNIX_CONNECT = 9, - CGROUP_INET4_POST_BIND = 10, - CGROUP_INET6_POST_BIND = 11, - CGROUP_UDP4_SENDMSG = 12, - CGROUP_UDP6_SENDMSG = 13, - CGROUP_UNIX_SENDMSG = 14, - CGROUP_SYSCTL = 15, - CGROUP_UDP4_RECVMSG = 16, - CGROUP_UDP6_RECVMSG = 17, - CGROUP_UNIX_RECVMSG = 18, - CGROUP_GETSOCKOPT = 19, - CGROUP_SETSOCKOPT = 20, - CGROUP_INET4_GETPEERNAME = 21, - CGROUP_INET6_GETPEERNAME = 22, - CGROUP_UNIX_GETPEERNAME = 23, - CGROUP_INET4_GETSOCKNAME = 24, - CGROUP_INET6_GETSOCKNAME = 25, - CGROUP_UNIX_GETSOCKNAME = 26, - CGROUP_INET_SOCK_RELEASE = 27, - CGROUP_LSM_START = 28, - CGROUP_LSM_END = 37, - MAX_CGROUP_BPF_ATTACH_TYPE = 38, -}; - -enum psi_task_count { - NR_IOWAIT = 0, - NR_MEMSTALL = 1, - NR_RUNNING = 2, - NR_MEMSTALL_RUNNING = 3, - NR_PSI_TASK_COUNTS = 4, -}; - -enum psi_res { - PSI_IO = 0, - PSI_MEM = 1, - PSI_CPU = 2, - NR_PSI_RESOURCES = 3, -}; - -enum psi_states { - PSI_IO_SOME = 0, - PSI_IO_FULL = 1, - PSI_MEM_SOME = 2, - PSI_MEM_FULL = 3, - PSI_CPU_SOME = 4, - PSI_CPU_FULL = 5, - PSI_NONIDLE = 6, - NR_PSI_STATES = 7, -}; - -enum psi_aggregators { - PSI_AVGS = 0, - PSI_POLL = 1, - NR_PSI_AGGREGATORS = 2, -}; - -enum cgroup_subsys_id { - cpuset_cgrp_id = 0, - cpu_cgrp_id = 1, - cpuacct_cgrp_id = 2, - io_cgrp_id = 3, - memory_cgrp_id = 4, - devices_cgrp_id = 5, - freezer_cgrp_id = 6, - net_cls_cgrp_id = 7, - perf_event_cgrp_id = 8, - net_prio_cgrp_id = 9, - hugetlb_cgrp_id = 10, - pids_cgrp_id = 11, - rdma_cgrp_id = 12, - CGROUP_SUBSYS_COUNT = 13, -}; - -enum memcg_memory_event { - MEMCG_LOW = 0, - MEMCG_HIGH = 1, - MEMCG_MAX = 2, - MEMCG_OOM = 3, - MEMCG_OOM_KILL = 4, - MEMCG_OOM_GROUP_KILL = 5, - MEMCG_SWAP_HIGH = 6, - MEMCG_SWAP_MAX = 7, - MEMCG_SWAP_FAIL = 8, - MEMCG_NR_MEMORY_EVENTS = 9, -}; - -enum page_memcg_data_flags { - MEMCG_DATA_OBJEXTS = 1, - MEMCG_DATA_KMEM = 2, - __NR_MEMCG_DATA_FLAGS = 4, -}; - -enum hk_type { - HK_TYPE_TIMER = 0, - HK_TYPE_RCU = 1, - HK_TYPE_MISC = 2, - HK_TYPE_SCHED = 3, - HK_TYPE_TICK = 4, - HK_TYPE_DOMAIN = 5, - HK_TYPE_WQ = 6, - HK_TYPE_MANAGED_IRQ = 7, - HK_TYPE_KTHREAD = 8, - HK_TYPE_MAX = 9, -}; - -struct compact_control { - struct list_head freepages[11]; - struct list_head migratepages; - unsigned int nr_freepages; - unsigned int nr_migratepages; - long unsigned int free_pfn; - long unsigned int migrate_pfn; - long unsigned int fast_start_pfn; - struct zone *zone; - long unsigned int total_migrate_scanned; - long unsigned int total_free_scanned; - short unsigned int fast_search_fail; - short int search_order; - const gfp_t gfp_mask; - int order; - int migratetype; - const unsigned int alloc_flags; - const int highest_zoneidx; - enum migrate_mode mode; - bool ignore_skip_hint; - bool no_set_skip_hint; - bool ignore_block_suitable; - bool direct_compaction; - bool proactive_compaction; - bool whole_zone; - bool contended; - bool finish_pageblock; - bool alloc_contig; -}; - -struct contig_page_info { - long unsigned int free_pages; - long unsigned int free_blocks_total; - long unsigned int free_blocks_suitable; -}; - -typedef struct { - pgd_t pgd; -} p4d_t; - -struct ptdesc { - long unsigned int __page_flags; - union { - struct callback_head pt_rcu_head; - struct list_head pt_list; - struct { - long unsigned int _pt_pad_1; - pgtable_t pmd_huge_pte; - }; - }; - long unsigned int __page_mapping; - union { - long unsigned int pt_index; - struct mm_struct *pt_mm; - atomic_t pt_frag_refcount; - atomic_t pt_share_count; - }; - union { - long unsigned int _pt_pad_2; - spinlock_t ptl; - }; - unsigned int __page_type; - atomic_t __page_refcount; - long unsigned int pt_memcg_data; -}; - -enum vm_fault_reason { - VM_FAULT_OOM = 1, - VM_FAULT_SIGBUS = 2, - VM_FAULT_MAJOR = 4, - VM_FAULT_HWPOISON = 16, - VM_FAULT_HWPOISON_LARGE = 32, - VM_FAULT_SIGSEGV = 64, - VM_FAULT_NOPAGE = 256, - VM_FAULT_LOCKED = 512, - VM_FAULT_RETRY = 1024, - VM_FAULT_FALLBACK = 2048, - VM_FAULT_DONE_COW = 4096, - VM_FAULT_NEEDDSYNC = 8192, - VM_FAULT_COMPLETED = 16384, - VM_FAULT_HINDEX_MASK = 983040, -}; - -enum { - __PERCPU_REF_ATOMIC = 1, - __PERCPU_REF_DEAD = 2, - __PERCPU_REF_ATOMIC_DEAD = 3, - __PERCPU_REF_FLAG_BITS = 2, -}; - -enum migrate_reason { - MR_COMPACTION = 0, - MR_MEMORY_FAILURE = 1, - MR_MEMORY_HOTPLUG = 2, - MR_SYSCALL = 3, - MR_MEMPOLICY_MBIND = 4, - MR_NUMA_MISPLACED = 5, - MR_CONTIG_RANGE = 6, - MR_LONGTERM_PIN = 7, - MR_DEMOTION = 8, - MR_DAMON = 9, - MR_TYPES = 10, -}; - -struct hstate; - -struct hugepage_subpool { - spinlock_t lock; - long int count; - long int max_hpages; - long int used_hpages; - struct hstate *hstate; - long int min_hpages; - long int rsv_hpages; -}; - -struct hstate { - struct mutex resize_lock; - struct lock_class_key resize_key; - int next_nid_to_alloc; - int next_nid_to_free; - unsigned int order; - unsigned int demote_order; - long unsigned int mask; - long unsigned int max_huge_pages; - long unsigned int nr_huge_pages; - long unsigned int free_huge_pages; - long unsigned int resv_huge_pages; - long unsigned int surplus_huge_pages; - long unsigned int nr_overcommit_huge_pages; - struct list_head hugepage_activelist; - struct list_head hugepage_freelists[1]; - unsigned int max_huge_pages_node[1]; - unsigned int nr_huge_pages_node[1]; - unsigned int free_huge_pages_node[1]; - unsigned int surplus_huge_pages_node[1]; - char name[32]; -}; - -struct hugetlbfs_sb_info { - long int max_inodes; - long int free_inodes; - spinlock_t stat_lock; - struct hstate *hstate; - struct hugepage_subpool *spool; - kuid_t uid; - kgid_t gid; - umode_t mode; -}; - -typedef struct folio *new_folio_t(struct folio *, long unsigned int); - -typedef void free_folio_t(struct folio *, long unsigned int); - -struct migration_target_control { - int nid; - nodemask_t *nmask; - gfp_t gfp_mask; - enum migrate_reason reason; -}; - -enum { - FOLL_TOUCH = 65536, - FOLL_TRIED = 131072, - FOLL_REMOTE = 262144, - FOLL_PIN = 524288, - FOLL_FAST_ONLY = 1048576, - FOLL_UNLOCKABLE = 2097152, - FOLL_MADV_POPULATE = 4194304, -}; - -struct follow_page_context { - struct dev_pagemap *pgmap; - unsigned int page_mask; -}; - -struct pages_or_folios { - union { - struct page **pages; - struct folio **folios; - void **entries; - }; - bool has_folios; - long int nr_entries; -}; - -struct va_format { - const char *fmt; - va_list *va; -}; - -enum pageblock_bits { - PB_migrate = 0, - PB_migrate_end = 2, - PB_migrate_skip = 3, - NR_PAGEBLOCK_BITS = 4, -}; - -struct task_delay_info { - raw_spinlock_t lock; - u64 blkio_start; - u64 blkio_delay; - u64 swapin_start; - u64 swapin_delay; - u32 blkio_count; - u32 swapin_count; - u64 freepages_start; - u64 freepages_delay; - u64 thrashing_start; - u64 thrashing_delay; - u64 compact_start; - u64 compact_delay; - u64 wpcopy_start; - u64 wpcopy_delay; - u64 irq_delay; - u32 freepages_count; - u32 thrashing_count; - u32 compact_count; - u32 wpcopy_count; - u32 irq_count; -}; - -struct page_frag_cache { - void *va; - __u16 offset; - __u16 size; - unsigned int pagecnt_bias; - bool pfmemalloc; -}; - -enum zone_flags { - ZONE_BOOSTED_WATERMARK = 0, - ZONE_RECLAIM_ACTIVE = 1, - ZONE_BELOW_HIGH = 2, -}; - -enum { - ZONELIST_FALLBACK = 0, - MAX_ZONELISTS = 1, -}; - -enum meminit_context { - MEMINIT_EARLY = 0, - MEMINIT_HOTPLUG = 1, -}; - -struct mthp_stat { - long unsigned int stats[130]; -}; - -enum oom_constraint { - CONSTRAINT_NONE = 0, - CONSTRAINT_CPUSET = 1, - CONSTRAINT_MEMORY_POLICY = 2, - CONSTRAINT_MEMCG = 3, -}; - -struct oom_control { - struct zonelist *zonelist; - nodemask_t *nodemask; - struct mem_cgroup *memcg; - const gfp_t gfp_mask; - const int order; - long unsigned int totalpages; - struct task_struct *chosen; - long int chosen_points; - enum oom_constraint constraint; -}; - -enum compact_priority { - COMPACT_PRIO_SYNC_FULL = 0, - MIN_COMPACT_PRIORITY = 0, - COMPACT_PRIO_SYNC_LIGHT = 1, - MIN_COMPACT_COSTLY_PRIORITY = 1, - DEF_COMPACT_PRIORITY = 1, - COMPACT_PRIO_ASYNC = 2, - INIT_COMPACT_PRIORITY = 2, -}; - -enum compact_result { - COMPACT_NOT_SUITABLE_ZONE = 0, - COMPACT_SKIPPED = 1, - COMPACT_DEFERRED = 2, - COMPACT_NO_SUITABLE_PAGE = 3, - COMPACT_CONTINUE = 4, - COMPACT_COMPLETE = 5, - COMPACT_PARTIAL_SKIPPED = 6, - COMPACT_CONTENDED = 7, - COMPACT_SUCCESS = 8, -}; - -enum cache_type { - CACHE_TYPE_NOCACHE = 0, - CACHE_TYPE_INST = 1, - CACHE_TYPE_DATA = 2, - CACHE_TYPE_SEPARATE = 3, - CACHE_TYPE_UNIFIED = 4, -}; - -struct cacheinfo { - unsigned int id; - enum cache_type type; - unsigned int level; - unsigned int coherency_line_size; - unsigned int number_of_sets; - unsigned int ways_of_associativity; - unsigned int physical_line_partition; - unsigned int size; - cpumask_t shared_cpu_map; - unsigned int attributes; - void *fw_token; - bool disable_sysfs; - void *priv; -}; - -struct cpu_cacheinfo { - struct cacheinfo *info_list; - unsigned int per_cpu_data_slice_size; - unsigned int num_levels; - unsigned int num_leaves; - bool cpu_map_populated; - bool early_ci_levels; -}; - -struct alloc_context { - struct zonelist *zonelist; - nodemask_t *nodemask; - struct zoneref *preferred_zoneref; - int migratetype; - enum zone_type highest_zoneidx; - bool spread_dirty_pages; -}; - -typedef int fpi_t; - -enum rmqueue_mode { - RMQUEUE_NORMAL = 0, - RMQUEUE_CMA = 1, - RMQUEUE_CLAIM = 2, - RMQUEUE_STEAL = 3, -}; - -struct xa_node { - unsigned char shift; - unsigned char offset; - unsigned char count; - unsigned char nr_values; - struct xa_node *parent; - struct xarray *array; - union { - struct list_head private_list; - struct callback_head callback_head; - }; - void *slots[64]; - union { - long unsigned int tags[3]; - long unsigned int marks[3]; - }; -}; - -typedef void (*xa_update_node_t)(struct xa_node *); - -struct xa_state { - struct xarray *xa; - long unsigned int xa_index; - unsigned char xa_shift; - unsigned char xa_sibs; - unsigned char xa_offset; - unsigned char xa_pad; - struct xa_node *xa_node; - struct xa_node *xa_alloc; - xa_update_node_t xa_update; - struct list_lru *xa_lru; -}; - -struct kobj_attribute { - struct attribute attr; - ssize_t (*show)(struct kobject *, struct kobj_attribute *, char *); - ssize_t (*store)(struct kobject *, struct kobj_attribute *, const char *, size_t); -}; - -enum transparent_hugepage_flag { - TRANSPARENT_HUGEPAGE_UNSUPPORTED = 0, - TRANSPARENT_HUGEPAGE_FLAG = 1, - TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG = 2, - TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG = 3, - TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG = 4, - TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG = 5, - TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG = 6, - TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG = 7, - TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG = 8, -}; - -enum objext_flags { - OBJEXTS_ALLOC_FAIL = 4, - __NR_OBJEXTS_FLAGS = 8, -}; - -enum mapping_flags { - AS_EIO = 0, - AS_ENOSPC = 1, - AS_MM_ALL_LOCKS = 2, - AS_UNEVICTABLE = 3, - AS_EXITING = 4, - AS_NO_WRITEBACK_TAGS = 5, - AS_RELEASE_ALWAYS = 6, - AS_STABLE_WRITES = 7, - AS_INACCESSIBLE = 8, - AS_FOLIO_ORDER_BITS = 5, - AS_FOLIO_ORDER_MIN = 16, - AS_FOLIO_ORDER_MAX = 21, -}; - -enum ttu_flags { - TTU_SPLIT_HUGE_PMD = 4, - TTU_IGNORE_MLOCK = 8, - TTU_SYNC = 16, - TTU_HWPOISON = 32, - TTU_BATCH_FLUSH = 64, - TTU_RMAP_LOCKED = 128, -}; - -enum sgp_type { - SGP_READ = 0, - SGP_NOALLOC = 1, - SGP_CACHE = 2, - SGP_WRITE = 3, - SGP_FALLOC = 4, -}; - -struct mm_slot { - struct hlist_node hash; - struct list_head mm_node; - struct mm_struct *mm; -}; - -enum scan_result { - SCAN_FAIL = 0, - SCAN_SUCCEED = 1, - SCAN_PMD_NULL = 2, - SCAN_PMD_NONE = 3, - SCAN_PMD_MAPPED = 4, - SCAN_EXCEED_NONE_PTE = 5, - SCAN_EXCEED_SWAP_PTE = 6, - SCAN_EXCEED_SHARED_PTE = 7, - SCAN_PTE_NON_PRESENT = 8, - SCAN_PTE_UFFD_WP = 9, - SCAN_PTE_MAPPED_HUGEPAGE = 10, - SCAN_PAGE_RO = 11, - SCAN_LACK_REFERENCED_PAGE = 12, - SCAN_PAGE_NULL = 13, - SCAN_SCAN_ABORT = 14, - SCAN_PAGE_COUNT = 15, - SCAN_PAGE_LRU = 16, - SCAN_PAGE_LOCK = 17, - SCAN_PAGE_ANON = 18, - SCAN_PAGE_COMPOUND = 19, - SCAN_ANY_PROCESS = 20, - SCAN_VMA_NULL = 21, - SCAN_VMA_CHECK = 22, - SCAN_ADDRESS_RANGE = 23, - SCAN_DEL_PAGE_LRU = 24, - SCAN_ALLOC_HUGE_PAGE_FAIL = 25, - SCAN_CGROUP_CHARGE_FAIL = 26, - SCAN_TRUNCATED = 27, - SCAN_PAGE_HAS_PRIVATE = 28, - SCAN_STORE_FAILED = 29, - SCAN_COPY_MC = 30, - SCAN_PAGE_FILLED = 31, -}; - -struct trace_event_raw_mm_khugepaged_scan_pmd { - struct trace_entry ent; - struct mm_struct *mm; - long unsigned int pfn; - bool writable; - int referenced; - int none_or_zero; - int status; - int unmapped; - char __data[0]; -}; - -struct trace_event_raw_mm_collapse_huge_page { - struct trace_entry ent; - struct mm_struct *mm; - int isolated; - int status; - char __data[0]; -}; - -struct trace_event_raw_mm_collapse_huge_page_isolate { - struct trace_entry ent; - long unsigned int pfn; - int none_or_zero; - int referenced; - bool writable; - int status; - char __data[0]; -}; - -struct trace_event_raw_mm_collapse_huge_page_swapin { - struct trace_entry ent; - struct mm_struct *mm; - int swapped_in; - int referenced; - int ret; - char __data[0]; -}; - -struct trace_event_raw_mm_khugepaged_scan_file { - struct trace_entry ent; - struct mm_struct *mm; - long unsigned int pfn; - u32 __data_loc_filename; - int present; - int swap; - int result; - char __data[0]; -}; - -struct trace_event_raw_mm_khugepaged_collapse_file { - struct trace_entry ent; - struct mm_struct *mm; - long unsigned int hpfn; - long unsigned int index; - long unsigned int addr; - bool is_shmem; - u32 __data_loc_filename; - int nr; - int result; - char __data[0]; -}; - -struct trace_event_data_offsets_mm_khugepaged_scan_pmd {}; - -struct trace_event_data_offsets_mm_collapse_huge_page {}; - -struct trace_event_data_offsets_mm_collapse_huge_page_isolate {}; - -struct trace_event_data_offsets_mm_collapse_huge_page_swapin {}; - -struct trace_event_data_offsets_mm_khugepaged_scan_file { - u32 filename; - const void *filename_ptr_; -}; - -struct trace_event_data_offsets_mm_khugepaged_collapse_file { - u32 filename; - const void *filename_ptr_; -}; - -typedef void (*btf_trace_mm_khugepaged_scan_pmd)(void *, struct mm_struct *, struct page *, bool, int, int, int, int); - -typedef void (*btf_trace_mm_collapse_huge_page)(void *, struct mm_struct *, int, int); - -typedef void (*btf_trace_mm_collapse_huge_page_isolate)(void *, struct page *, int, int, bool, int); - -typedef void (*btf_trace_mm_collapse_huge_page_swapin)(void *, struct mm_struct *, int, int, int); - -typedef void (*btf_trace_mm_khugepaged_scan_file)(void *, struct mm_struct *, struct folio *, struct file *, int, int, int); - -typedef void (*btf_trace_mm_khugepaged_collapse_file)(void *, struct mm_struct *, struct folio *, long unsigned int, long unsigned int, bool, struct file *, int, int); - -struct collapse_control { - bool is_khugepaged; - u32 node_load[1]; - nodemask_t alloc_nmask; -}; - -struct khugepaged_mm_slot { - struct mm_slot slot; -}; - -struct khugepaged_scan { - struct list_head mm_head; - struct khugepaged_mm_slot *mm_slot; - long unsigned int address; -}; - -struct file_lock_context { - spinlock_t flc_lock; - struct list_head flc_flock; - struct list_head flc_posix; - struct list_head flc_lease; -}; - -struct fsnotify_mark_connector { - spinlock_t lock; - unsigned char type; - unsigned char prio; - short unsigned int flags; - union { - void *obj; - struct fsnotify_mark_connector *destroy_next; - }; - struct hlist_head list; -}; - -struct fsnotify_sb_info { - struct fsnotify_mark_connector *sb_marks; - atomic_long_t watched_objects[3]; -}; - -struct file_lock_core { - struct file_lock_core *flc_blocker; - struct list_head flc_list; - struct hlist_node flc_link; - struct list_head flc_blocked_requests; - struct list_head flc_blocked_member; - fl_owner_t flc_owner; - unsigned int flc_flags; - unsigned char flc_type; - pid_t flc_pid; - int flc_link_cpu; - wait_queue_head_t flc_wait; - struct file *flc_file; -}; - -struct nlm_lockowner; - -struct nfs_lock_info { - u32 state; - struct nlm_lockowner *owner; - struct list_head list; -}; - -struct nfs4_lock_state; - -struct nfs4_lock_info { - struct nfs4_lock_state *owner; -}; - -struct file_lock_operations; - -struct lock_manager_operations; - -struct file_lock { - struct file_lock_core c; - loff_t fl_start; - loff_t fl_end; - const struct file_lock_operations *fl_ops; - const struct lock_manager_operations *fl_lmops; - union { - struct nfs_lock_info nfs_fl; - struct nfs4_lock_info nfs4_fl; - struct { - struct list_head link; - int state; - unsigned int debug_id; - } afs; - struct { - struct inode *inode; - } ceph; - } fl_u; -}; - -struct lease_manager_operations; - -struct file_lease { - struct file_lock_core c; - struct fasync_struct *fl_fasync; - long unsigned int fl_break_time; - long unsigned int fl_downgrade_time; - const struct lease_manager_operations *fl_lmops; -}; - -struct file_lock_operations { - void (*fl_copy_lock)(struct file_lock *, struct file_lock *); - void (*fl_release_private)(struct file_lock *); -}; - -struct lock_manager_operations { - void *lm_mod_owner; - fl_owner_t (*lm_get_owner)(fl_owner_t); - void (*lm_put_owner)(fl_owner_t); - void (*lm_notify)(struct file_lock *); - int (*lm_grant)(struct file_lock *, int); - bool (*lm_lock_expirable)(struct file_lock *); - void (*lm_expire_lock)(void); -}; - -struct lease_manager_operations { - bool (*lm_break)(struct file_lease *); - int (*lm_change)(struct file_lease *, int, struct list_head *); - void (*lm_setup)(struct file_lease *, void **); - bool (*lm_breaker_owns_lease)(struct file_lease *); -}; - -struct fd { - long unsigned int word; -}; - -typedef struct fd class_fd_t; - -struct simple_xattrs { - struct rb_root rb_root; - rwlock_t lock; -}; - -struct simple_xattr { - struct rb_node rb_node; - char *name; - size_t size; - char value[0]; -}; - -enum fsnotify_group_prio { - FSNOTIFY_PRIO_NORMAL = 0, - FSNOTIFY_PRIO_CONTENT = 1, - FSNOTIFY_PRIO_PRE_CONTENT = 2, - __FSNOTIFY_PRIO_NUM = 3, -}; - -enum fsnotify_data_type { - FSNOTIFY_EVENT_NONE = 0, - FSNOTIFY_EVENT_PATH = 1, - FSNOTIFY_EVENT_INODE = 2, - FSNOTIFY_EVENT_DENTRY = 3, - FSNOTIFY_EVENT_ERROR = 4, -}; - -enum fsnotify_iter_type { - FSNOTIFY_ITER_TYPE_INODE = 0, - FSNOTIFY_ITER_TYPE_VFSMOUNT = 1, - FSNOTIFY_ITER_TYPE_SB = 2, - FSNOTIFY_ITER_TYPE_PARENT = 3, - FSNOTIFY_ITER_TYPE_INODE2 = 4, - FSNOTIFY_ITER_TYPE_COUNT = 5, -}; - -enum audit_ntp_type { - AUDIT_NTP_OFFSET = 0, - AUDIT_NTP_FREQ = 1, - AUDIT_NTP_STATUS = 2, - AUDIT_NTP_TAI = 3, - AUDIT_NTP_TICK = 4, - AUDIT_NTP_ADJUST = 5, - AUDIT_NTP_NVALS = 6, -}; - -struct xattr_name { - char name[256]; -}; - -struct xattr_ctx { - union { - const void *cvalue; - void *value; - }; - void *kvalue; - size_t size; - struct xattr_name *kname; - unsigned int flags; -}; - -enum kernel_read_file_id { - READING_UNKNOWN = 0, - READING_FIRMWARE = 1, - READING_MODULE = 2, - READING_KEXEC_IMAGE = 3, - READING_KEXEC_INITRAMFS = 4, - READING_POLICY = 5, - READING_X509_CERTIFICATE = 6, - READING_MAX_ID = 7, -}; - -struct dnotify_struct { - struct dnotify_struct *dn_next; - __u32 dn_mask; - int dn_fd; - struct file *dn_filp; - fl_owner_t dn_owner; -}; - -struct fsnotify_group; - -struct fsnotify_iter_info; - -struct fsnotify_mark; - -struct fsnotify_event; - -struct fsnotify_ops { - int (*handle_event)(struct fsnotify_group *, u32, const void *, int, struct inode *, const struct qstr *, u32, struct fsnotify_iter_info *); - int (*handle_inode_event)(struct fsnotify_mark *, u32, struct inode *, struct inode *, const struct qstr *, u32); - void (*free_group_priv)(struct fsnotify_group *); - void (*freeing_mark)(struct fsnotify_mark *, struct fsnotify_group *); - void (*free_event)(struct fsnotify_group *, struct fsnotify_event *); - void (*free_mark)(struct fsnotify_mark *); -}; - -struct inotify_group_private_data { - spinlock_t idr_lock; - struct idr idr; - struct ucounts *ucounts; -}; - -struct fanotify_group_private_data { - struct hlist_head *merge_hash; - struct list_head access_list; - wait_queue_head_t access_waitq; - int flags; - int f_flags; - struct ucounts *ucounts; - mempool_t error_events_pool; -}; - -struct fsnotify_group { - const struct fsnotify_ops *ops; - refcount_t refcnt; - spinlock_t notification_lock; - struct list_head notification_list; - wait_queue_head_t notification_waitq; - unsigned int q_len; - unsigned int max_events; - enum fsnotify_group_prio priority; - bool shutdown; - int flags; - unsigned int owner_flags; - struct mutex mark_mutex; - atomic_t user_waits; - struct list_head marks_list; - struct fasync_struct *fsn_fa; - struct fsnotify_event *overflow_event; - struct mem_cgroup *memcg; - union { - void *private; - struct inotify_group_private_data inotify_data; - struct fanotify_group_private_data fanotify_data; - }; -}; - -struct fsnotify_iter_info { - struct fsnotify_mark *marks[5]; - struct fsnotify_group *current_group; - unsigned int report_mask; - int srcu_idx; -}; - -struct fsnotify_mark { - __u32 mask; - refcount_t refcnt; - struct fsnotify_group *group; - struct list_head g_list; - spinlock_t lock; - struct hlist_node obj_list; - struct fsnotify_mark_connector *connector; - __u32 ignore_mask; - unsigned int flags; -}; - -struct fsnotify_event { - struct list_head list; -}; - -enum fsnotify_obj_type { - FSNOTIFY_OBJ_TYPE_ANY = -1, - FSNOTIFY_OBJ_TYPE_INODE = 0, - FSNOTIFY_OBJ_TYPE_VFSMOUNT = 1, - FSNOTIFY_OBJ_TYPE_SB = 2, - FSNOTIFY_OBJ_TYPE_COUNT = 3, - FSNOTIFY_OBJ_TYPE_DETACHED = 3, -}; - -struct dnotify_mark { - struct fsnotify_mark fsn_mark; - struct dnotify_struct *dn; -}; - -typedef __kernel_long_t __kernel_off_t; - -struct srcu_notifier_head { - struct mutex mutex; - struct srcu_usage srcuu; - struct srcu_struct srcu; - struct notifier_block *head; -}; - -struct flock { - short int l_type; - short int l_whence; - __kernel_off_t l_start; - __kernel_off_t l_len; - __kernel_pid_t l_pid; -}; - -struct flock64 { - short int l_type; - short int l_whence; - __kernel_loff_t l_start; - __kernel_loff_t l_len; - __kernel_pid_t l_pid; -}; - -struct trace_event_raw_locks_get_lock_context { - struct trace_entry ent; - long unsigned int i_ino; - dev_t s_dev; - unsigned char type; - struct file_lock_context *ctx; - char __data[0]; -}; - -struct trace_event_raw_filelock_lock { - struct trace_entry ent; - struct file_lock *fl; - long unsigned int i_ino; - dev_t s_dev; - struct file_lock_core *blocker; - fl_owner_t owner; - unsigned int pid; - unsigned int flags; - unsigned char type; - loff_t fl_start; - loff_t fl_end; - int ret; - char __data[0]; -}; - -struct trace_event_raw_filelock_lease { - struct trace_entry ent; - struct file_lease *fl; - long unsigned int i_ino; - dev_t s_dev; - struct file_lock_core *blocker; - fl_owner_t owner; - unsigned int flags; - unsigned char type; - long unsigned int break_time; - long unsigned int downgrade_time; - char __data[0]; -}; - -struct trace_event_raw_generic_add_lease { - struct trace_entry ent; - long unsigned int i_ino; - int wcount; - int rcount; - int icount; - dev_t s_dev; - fl_owner_t owner; - unsigned int flags; - unsigned char type; - char __data[0]; -}; - -struct trace_event_raw_leases_conflict { - struct trace_entry ent; - void *lease; - void *breaker; - unsigned int l_fl_flags; - unsigned int b_fl_flags; - unsigned char l_fl_type; - unsigned char b_fl_type; - bool conflict; - char __data[0]; -}; - -struct trace_event_data_offsets_locks_get_lock_context {}; - -struct trace_event_data_offsets_filelock_lock {}; - -struct trace_event_data_offsets_filelock_lease {}; - -struct trace_event_data_offsets_generic_add_lease {}; - -struct trace_event_data_offsets_leases_conflict {}; - -typedef void (*btf_trace_locks_get_lock_context)(void *, struct inode *, int, struct file_lock_context *); - -typedef void (*btf_trace_posix_lock_inode)(void *, struct inode *, struct file_lock *, int); - -typedef void (*btf_trace_fcntl_setlk)(void *, struct inode *, struct file_lock *, int); - -typedef void (*btf_trace_locks_remove_posix)(void *, struct inode *, struct file_lock *, int); - -typedef void (*btf_trace_flock_lock_inode)(void *, struct inode *, struct file_lock *, int); - -typedef void (*btf_trace_break_lease_noblock)(void *, struct inode *, struct file_lease *); - -typedef void (*btf_trace_break_lease_block)(void *, struct inode *, struct file_lease *); - -typedef void (*btf_trace_break_lease_unblock)(void *, struct inode *, struct file_lease *); - -typedef void (*btf_trace_generic_delete_lease)(void *, struct inode *, struct file_lease *); - -typedef void (*btf_trace_time_out_leases)(void *, struct inode *, struct file_lease *); - -typedef void (*btf_trace_generic_add_lease)(void *, struct inode *, struct file_lease *); - -typedef void (*btf_trace_leases_conflict)(void *, bool, struct file_lease *, struct file_lease *); - -struct file_lock_list_struct { - spinlock_t lock; - struct hlist_head hlist; -}; - -enum proc_hidepid { - HIDEPID_OFF = 0, - HIDEPID_NO_ACCESS = 1, - HIDEPID_INVISIBLE = 2, - HIDEPID_NOT_PTRACEABLE = 4, -}; - -enum proc_pidonly { - PROC_PIDONLY_OFF = 0, - PROC_PIDONLY_ON = 1, -}; - -struct proc_fs_info { - struct pid_namespace *pid_ns; - struct dentry *proc_self; - struct dentry *proc_thread_self; - kgid_t pid_gid; - enum proc_hidepid hide_pid; - enum proc_pidonly pidonly; - struct callback_head rcu; -}; - -struct locks_iterator { - int li_cpu; - loff_t li_pos; -}; - -typedef u32 nlink_t; - -enum { - PROC_ENTRY_PERMANENT = 1, - PROC_ENTRY_proc_read_iter = 2, - PROC_ENTRY_proc_compat_ioctl = 4, - PROC_ENTRY_proc_lseek = 8, -}; - -struct proc_ops { - unsigned int proc_flags; - int (*proc_open)(struct inode *, struct file *); - ssize_t (*proc_read)(struct file *, char *, size_t, loff_t *); - ssize_t (*proc_read_iter)(struct kiocb *, struct iov_iter *); - ssize_t (*proc_write)(struct file *, const char *, size_t, loff_t *); - loff_t (*proc_lseek)(struct file *, loff_t, int); - int (*proc_release)(struct inode *, struct file *); - __poll_t (*proc_poll)(struct file *, struct poll_table_struct *); - long int (*proc_ioctl)(struct file *, unsigned int, long unsigned int); - int (*proc_mmap)(struct file *, struct vm_area_struct *); - long unsigned int (*proc_get_unmapped_area)(struct file *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); -}; - -typedef int (*proc_write_t)(struct file *, char *, size_t); - -struct proc_dir_entry { - atomic_t in_use; - refcount_t refcnt; - struct list_head pde_openers; - spinlock_t pde_unload_lock; - struct completion *pde_unload_completion; - const struct inode_operations *proc_iops; - union { - const struct proc_ops *proc_ops; - const struct file_operations *proc_dir_ops; - }; - const struct dentry_operations *proc_dops; - union { - const struct seq_operations *seq_ops; - int (*single_show)(struct seq_file *, void *); - }; - proc_write_t write; - void *data; - unsigned int state_size; - unsigned int low_ino; - nlink_t nlink; - kuid_t uid; - kgid_t gid; - loff_t size; - struct proc_dir_entry *parent; - struct rb_root subdir; - struct rb_node subdir_node; - char *name; - umode_t mode; - u8 flags; - u8 namelen; - char inline_name[0]; -}; - -struct kernel_stat { - long unsigned int irqs_sum; - unsigned int softirqs[10]; -}; - -enum { - TCA_FLOWER_KEY_FLAGS_IS_FRAGMENT = 1, - TCA_FLOWER_KEY_FLAGS_FRAG_IS_FIRST = 2, - TCA_FLOWER_KEY_FLAGS_TUNNEL_CSUM = 4, - TCA_FLOWER_KEY_FLAGS_TUNNEL_DONT_FRAGMENT = 8, - TCA_FLOWER_KEY_FLAGS_TUNNEL_OAM = 16, - TCA_FLOWER_KEY_FLAGS_TUNNEL_CRIT_OPT = 32, - __TCA_FLOWER_KEY_FLAGS_MAX = 33, -}; - -enum flow_dissector_key_id { - FLOW_DISSECTOR_KEY_CONTROL = 0, - FLOW_DISSECTOR_KEY_BASIC = 1, - FLOW_DISSECTOR_KEY_IPV4_ADDRS = 2, - FLOW_DISSECTOR_KEY_IPV6_ADDRS = 3, - FLOW_DISSECTOR_KEY_PORTS = 4, - FLOW_DISSECTOR_KEY_PORTS_RANGE = 5, - FLOW_DISSECTOR_KEY_ICMP = 6, - FLOW_DISSECTOR_KEY_ETH_ADDRS = 7, - FLOW_DISSECTOR_KEY_TIPC = 8, - FLOW_DISSECTOR_KEY_ARP = 9, - FLOW_DISSECTOR_KEY_VLAN = 10, - FLOW_DISSECTOR_KEY_FLOW_LABEL = 11, - FLOW_DISSECTOR_KEY_GRE_KEYID = 12, - FLOW_DISSECTOR_KEY_MPLS_ENTROPY = 13, - FLOW_DISSECTOR_KEY_ENC_KEYID = 14, - FLOW_DISSECTOR_KEY_ENC_IPV4_ADDRS = 15, - FLOW_DISSECTOR_KEY_ENC_IPV6_ADDRS = 16, - FLOW_DISSECTOR_KEY_ENC_CONTROL = 17, - FLOW_DISSECTOR_KEY_ENC_PORTS = 18, - FLOW_DISSECTOR_KEY_MPLS = 19, - FLOW_DISSECTOR_KEY_TCP = 20, - FLOW_DISSECTOR_KEY_IP = 21, - FLOW_DISSECTOR_KEY_CVLAN = 22, - FLOW_DISSECTOR_KEY_ENC_IP = 23, - FLOW_DISSECTOR_KEY_ENC_OPTS = 24, - FLOW_DISSECTOR_KEY_META = 25, - FLOW_DISSECTOR_KEY_CT = 26, - FLOW_DISSECTOR_KEY_HASH = 27, - FLOW_DISSECTOR_KEY_NUM_OF_VLANS = 28, - FLOW_DISSECTOR_KEY_PPPOE = 29, - FLOW_DISSECTOR_KEY_L2TPV3 = 30, - FLOW_DISSECTOR_KEY_CFM = 31, - FLOW_DISSECTOR_KEY_IPSEC = 32, - FLOW_DISSECTOR_KEY_MAX = 33, -}; - -enum skb_ext_id { - SKB_EXT_BRIDGE_NF = 0, - SKB_EXT_SEC_PATH = 1, - SKB_EXT_NUM = 2, -}; - -struct seq_net_private { - struct net *net; - netns_tracker ns_tracker; -}; - -struct pernet_operations { - struct list_head list; - int (*init)(struct net *); - void (*pre_exit)(struct net *); - void (*exit)(struct net *); - void (*exit_batch)(struct list_head *); - void (*exit_batch_rtnl)(struct list_head *, struct list_head *); - unsigned int * const id; - const size_t size; -}; - -union proc_op { - int (*proc_get_link)(struct dentry *, struct path *); - int (*proc_show)(struct seq_file *, struct pid_namespace *, struct pid *, struct task_struct *); - int lsmid; -}; - -struct proc_inode { - struct pid *pid; - unsigned int fd; - union proc_op op; - struct proc_dir_entry *pde; - struct ctl_table_header *sysctl; - struct ctl_table *sysctl_entry; - struct hlist_node sibling_inodes; - const struct proc_ns_operations *ns_ops; - struct inode vfs_inode; -}; - -enum wb_stat_item { - WB_RECLAIMABLE = 0, - WB_WRITEBACK = 1, - WB_DIRTIED = 2, - WB_WRITTEN = 3, - NR_WB_STAT_ITEMS = 4, -}; - -struct config_group; - -struct config_item_type; - -struct config_item { - char *ci_name; - char ci_namebuf[20]; - struct kref ci_kref; - struct list_head ci_entry; - struct config_item *ci_parent; - struct config_group *ci_group; - const struct config_item_type *ci_type; - struct dentry *ci_dentry; -}; - -struct configfs_subsystem; - -struct config_group { - struct config_item cg_item; - struct list_head cg_children; - struct configfs_subsystem *cg_subsys; - struct list_head default_groups; - struct list_head group_entry; -}; - -struct configfs_item_operations; - -struct configfs_group_operations; - -struct configfs_attribute; - -struct configfs_bin_attribute; - -struct config_item_type { - struct module *ct_owner; - struct configfs_item_operations *ct_item_ops; - struct configfs_group_operations *ct_group_ops; - struct configfs_attribute **ct_attrs; - struct configfs_bin_attribute **ct_bin_attrs; -}; - -struct configfs_item_operations { - void (*release)(struct config_item *); - int (*allow_link)(struct config_item *, struct config_item *); - void (*drop_link)(struct config_item *, struct config_item *); -}; - -struct configfs_group_operations { - struct config_item * (*make_item)(struct config_group *, const char *); - struct config_group * (*make_group)(struct config_group *, const char *); - void (*disconnect_notify)(struct config_group *, struct config_item *); - void (*drop_item)(struct config_group *, struct config_item *); - bool (*is_visible)(struct config_item *, struct configfs_attribute *, int); - bool (*is_bin_visible)(struct config_item *, struct configfs_bin_attribute *, int); -}; - -struct configfs_attribute { - const char *ca_name; - struct module *ca_owner; - umode_t ca_mode; - ssize_t (*show)(struct config_item *, char *); - ssize_t (*store)(struct config_item *, const char *, size_t); -}; - -struct configfs_bin_attribute { - struct configfs_attribute cb_attr; - void *cb_private; - size_t cb_max_size; - ssize_t (*read)(struct config_item *, void *, size_t); - ssize_t (*write)(struct config_item *, const void *, size_t); -}; - -struct configfs_subsystem { - struct config_group su_group; - struct mutex su_mutex; -}; - -struct configfs_fragment { - atomic_t frag_count; - struct rw_semaphore frag_sem; - bool frag_dead; -}; - -struct configfs_dirent { - atomic_t s_count; - int s_dependent_count; - struct list_head s_sibling; - struct list_head s_children; - int s_links; - void *s_element; - int s_type; - umode_t s_mode; - struct dentry *s_dentry; - struct iattr *s_iattr; - struct configfs_fragment *s_frag; -}; - -typedef __kernel_ulong_t ino_t; - -enum netfs_io_source { - NETFS_SOURCE_UNKNOWN = 0, - NETFS_FILL_WITH_ZEROES = 1, - NETFS_DOWNLOAD_FROM_SERVER = 2, - NETFS_READ_FROM_CACHE = 3, - NETFS_INVALID_READ = 4, - NETFS_UPLOAD_TO_SERVER = 5, - NETFS_WRITE_TO_CACHE = 6, - NETFS_INVALID_WRITE = 7, -} __attribute__((mode(byte))); - -typedef void (*netfs_io_terminated_t)(void *, ssize_t, bool); - -struct netfs_request_ops; - -struct fscache_cookie; - -struct netfs_inode { - struct inode inode; - const struct netfs_request_ops *ops; - struct fscache_cookie *cache; - struct mutex wb_lock; - loff_t remote_i_size; - loff_t zero_point; - atomic_t io_count; - long unsigned int flags; -}; - -struct netfs_io_request; - -struct netfs_io_subrequest; - -struct netfs_io_stream; - -struct netfs_request_ops { - mempool_t *request_pool; - mempool_t *subrequest_pool; - int (*init_request)(struct netfs_io_request *, struct file *); - void (*free_request)(struct netfs_io_request *); - void (*free_subrequest)(struct netfs_io_subrequest *); - void (*expand_readahead)(struct netfs_io_request *); - int (*prepare_read)(struct netfs_io_subrequest *); - void (*issue_read)(struct netfs_io_subrequest *); - bool (*is_still_valid)(struct netfs_io_request *); - int (*check_write_begin)(struct file *, loff_t, unsigned int, struct folio **, void **); - void (*done)(struct netfs_io_request *); - void (*update_i_size)(struct inode *, loff_t); - void (*post_modify)(struct inode *); - void (*begin_writeback)(struct netfs_io_request *); - void (*prepare_write)(struct netfs_io_subrequest *); - void (*issue_write)(struct netfs_io_subrequest *); - void (*retry_request)(struct netfs_io_request *, struct netfs_io_stream *); - void (*invalidate_cache)(struct netfs_io_request *); -}; - -enum fscache_cookie_state { - FSCACHE_COOKIE_STATE_QUIESCENT = 0, - FSCACHE_COOKIE_STATE_LOOKING_UP = 1, - FSCACHE_COOKIE_STATE_CREATING = 2, - FSCACHE_COOKIE_STATE_ACTIVE = 3, - FSCACHE_COOKIE_STATE_INVALIDATING = 4, - FSCACHE_COOKIE_STATE_FAILED = 5, - FSCACHE_COOKIE_STATE_LRU_DISCARDING = 6, - FSCACHE_COOKIE_STATE_WITHDRAWING = 7, - FSCACHE_COOKIE_STATE_RELINQUISHING = 8, - FSCACHE_COOKIE_STATE_DROPPED = 9, -} __attribute__((mode(byte))); - -struct fscache_volume; - -struct fscache_cookie { - refcount_t ref; - atomic_t n_active; - atomic_t n_accesses; - unsigned int debug_id; - unsigned int inval_counter; - spinlock_t lock; - struct fscache_volume *volume; - void *cache_priv; - struct hlist_bl_node hash_link; - struct list_head proc_link; - struct list_head commit_link; - struct work_struct work; - loff_t object_size; - long unsigned int unused_at; - long unsigned int flags; - enum fscache_cookie_state state; - u8 advice; - u8 key_len; - u8 aux_len; - u32 key_hash; - union { - void *key; - u8 inline_key[16]; - }; - union { - void *aux; - u8 inline_aux[8]; - }; -}; - -struct netfs_group { - refcount_t ref; - void (*free)(struct netfs_group *); -}; - -struct netfs_io_stream { - struct netfs_io_subrequest *construct; - size_t sreq_max_len; - unsigned int sreq_max_segs; - unsigned int submit_off; - unsigned int submit_len; - unsigned int submit_extendable_to; - void (*prepare_write)(struct netfs_io_subrequest *); - void (*issue_write)(struct netfs_io_subrequest *); - struct list_head subrequests; - struct netfs_io_subrequest *front; - long long unsigned int collected_to; - size_t transferred; - enum netfs_io_source source; - short unsigned int error; - unsigned char stream_nr; - bool avail; - bool active; - bool need_retry; - bool failed; - bool transferred_valid; -}; - -struct netfs_io_subrequest { - struct netfs_io_request *rreq; - struct work_struct work; - struct list_head rreq_link; - struct iov_iter io_iter; - long long unsigned int start; - size_t len; - size_t transferred; - size_t consumed; - size_t prev_donated; - size_t next_donated; - refcount_t ref; - short int error; - short unsigned int debug_index; - unsigned int nr_segs; - enum netfs_io_source source; - unsigned char stream_nr; - unsigned char curr_folioq_slot; - unsigned char curr_folio_order; - struct folio_queue *curr_folioq; - long unsigned int flags; -}; - -struct netfs_cache_ops; - -struct netfs_cache_resources { - const struct netfs_cache_ops *ops; - void *cache_priv; - void *cache_priv2; - unsigned int debug_id; - unsigned int inval_counter; -}; - -enum netfs_read_from_hole { - NETFS_READ_HOLE_IGNORE = 0, - NETFS_READ_HOLE_CLEAR = 1, - NETFS_READ_HOLE_FAIL = 2, -}; - -struct netfs_cache_ops { - void (*end_operation)(struct netfs_cache_resources *); - int (*read)(struct netfs_cache_resources *, loff_t, struct iov_iter *, enum netfs_read_from_hole, netfs_io_terminated_t, void *); - int (*write)(struct netfs_cache_resources *, loff_t, struct iov_iter *, netfs_io_terminated_t, void *); - void (*issue_write)(struct netfs_io_subrequest *); - void (*expand_readahead)(struct netfs_cache_resources *, long long unsigned int *, long long unsigned int *, long long unsigned int); - enum netfs_io_source (*prepare_read)(struct netfs_io_subrequest *, long long unsigned int); - void (*prepare_write_subreq)(struct netfs_io_subrequest *); - int (*prepare_write)(struct netfs_cache_resources *, loff_t *, size_t *, size_t, loff_t, bool); - enum netfs_io_source (*prepare_ondemand_read)(struct netfs_cache_resources *, loff_t, size_t *, loff_t, long unsigned int *, ino_t); - int (*query_occupancy)(struct netfs_cache_resources *, loff_t, size_t, size_t, loff_t *, size_t *); -}; - -enum netfs_io_origin { - NETFS_READAHEAD = 0, - NETFS_READPAGE = 1, - NETFS_READ_GAPS = 2, - NETFS_READ_FOR_WRITE = 3, - NETFS_DIO_READ = 4, - NETFS_WRITEBACK = 5, - NETFS_WRITETHROUGH = 6, - NETFS_UNBUFFERED_WRITE = 7, - NETFS_DIO_WRITE = 8, - NETFS_PGPRIV2_COPY_TO_CACHE = 9, - nr__netfs_io_origin = 10, -} __attribute__((mode(byte))); - -struct netfs_io_request { - union { - struct work_struct work; - struct callback_head rcu; - }; - struct inode *inode; - struct address_space *mapping; - struct kiocb *iocb; - struct netfs_cache_resources cache_resources; - struct readahead_control *ractl; - struct list_head proc_link; - struct list_head subrequests; - struct netfs_io_stream io_streams[2]; - struct netfs_group *group; - struct folio_queue *buffer; - struct folio_queue *buffer_tail; - struct iov_iter iter; - struct iov_iter io_iter; - void *netfs_priv; - void *netfs_priv2; - struct bio_vec *direct_bv; - unsigned int direct_bv_count; - unsigned int debug_id; - unsigned int rsize; - unsigned int wsize; - atomic_t subreq_counter; - unsigned int nr_group_rel; - spinlock_t lock; - atomic_t nr_outstanding; - long long unsigned int submitted; - long long unsigned int len; - size_t transferred; - long int error; - enum netfs_io_origin origin; - bool direct_bv_unpin; - u8 buffer_head_slot; - u8 buffer_tail_slot; - long long unsigned int i_size; - long long unsigned int start; - atomic64_t issued_to; - long long unsigned int collected_to; - long long unsigned int cleaned_to; - long unsigned int no_unlock_folio; - size_t prev_donated; - refcount_t ref; - long unsigned int flags; - const struct netfs_request_ops *netfs_ops; - void (*cleanup)(struct netfs_io_request *); -}; - -enum fscache_want_state { - FSCACHE_WANT_PARAMS = 0, - FSCACHE_WANT_WRITE = 1, - FSCACHE_WANT_READ = 2, -}; - -struct fscache_cache; - -struct fscache_volume { - refcount_t ref; - atomic_t n_cookies; - atomic_t n_accesses; - unsigned int debug_id; - unsigned int key_hash; - u8 *key; - struct list_head proc_link; - struct hlist_bl_node hash_link; - struct work_struct work; - struct fscache_cache *cache; - void *cache_priv; - spinlock_t lock; - long unsigned int flags; - u8 coherency_len; - u8 coherency[0]; -}; - -enum fscache_cache_state { - FSCACHE_CACHE_IS_NOT_PRESENT = 0, - FSCACHE_CACHE_IS_PREPARING = 1, - FSCACHE_CACHE_IS_ACTIVE = 2, - FSCACHE_CACHE_GOT_IOERROR = 3, - FSCACHE_CACHE_IS_WITHDRAWN = 4, -}; - -struct fscache_cache_ops; - -struct fscache_cache { - const struct fscache_cache_ops *ops; - struct list_head cache_link; - void *cache_priv; - refcount_t ref; - atomic_t n_volumes; - atomic_t n_accesses; - atomic_t object_count; - unsigned int debug_id; - enum fscache_cache_state state; - char *name; -}; - -struct fscache_cache_ops { - const char *name; - void (*acquire_volume)(struct fscache_volume *); - void (*free_volume)(struct fscache_volume *); - bool (*lookup_cookie)(struct fscache_cookie *); - void (*withdraw_cookie)(struct fscache_cookie *); - void (*resize_cookie)(struct netfs_cache_resources *, loff_t); - bool (*invalidate_cookie)(struct fscache_cookie *); - bool (*begin_operation)(struct netfs_cache_resources *, enum fscache_want_state); - void (*prepare_to_write)(struct fscache_cookie *); -}; - -struct wait_bit_key { - void *flags; - int bit_nr; - long unsigned int timeout; -}; - -struct wait_bit_queue_entry { - struct wait_bit_key key; - struct wait_queue_entry wq_entry; -}; - -enum fscache_access_trace { - fscache_access_acquire_volume = 0, - fscache_access_acquire_volume_end = 1, - fscache_access_cache_pin = 2, - fscache_access_cache_unpin = 3, - fscache_access_invalidate_cookie = 4, - fscache_access_invalidate_cookie_end = 5, - fscache_access_io_end = 6, - fscache_access_io_not_live = 7, - fscache_access_io_read = 8, - fscache_access_io_resize = 9, - fscache_access_io_wait = 10, - fscache_access_io_write = 11, - fscache_access_lookup_cookie = 12, - fscache_access_lookup_cookie_end = 13, - fscache_access_lookup_cookie_end_failed = 14, - fscache_access_relinquish_volume = 15, - fscache_access_relinquish_volume_end = 16, - fscache_access_unlive = 17, -}; - -struct fscache_write_request { - struct netfs_cache_resources cache_resources; - struct address_space *mapping; - loff_t start; - size_t len; - bool set_bits; - bool using_pgpriv2; - netfs_io_terminated_t term_func; - void *term_func_priv; -}; - -typedef __u16 __le16; - -typedef __u64 __le64; - -typedef void (*rcu_callback_t)(struct callback_head *); - -struct request; - -struct rq_list { - struct request *head; - struct request *tail; -}; - -struct blk_plug { - struct rq_list mq_list; - struct rq_list cached_rqs; - u64 cur_ktime; - short unsigned int nr_ios; - short unsigned int rq_count; - bool multiple_queues; - bool has_elevator; - struct list_head cb_list; -}; - -typedef unsigned int blk_mode_t; - -struct block_device_operations; - -struct timer_rand_state; - -struct disk_events; - -struct badblocks; - -struct blk_independent_access_ranges; - -struct gendisk { - int major; - int first_minor; - int minors; - char disk_name[32]; - short unsigned int events; - short unsigned int event_flags; - struct xarray part_tbl; - struct block_device *part0; - const struct block_device_operations *fops; - struct request_queue *queue; - void *private_data; - struct bio_set bio_split; - int flags; - long unsigned int state; - struct mutex open_mutex; - unsigned int open_partitions; - struct backing_dev_info *bdi; - struct kobject queue_kobj; - struct kobject *slave_dir; - struct list_head slave_bdevs; - struct timer_rand_state *random; - atomic_t sync_io; - struct disk_events *ev; - int node_id; - struct badblocks *bb; - struct lockdep_map lockdep_map; - u64 diskseq; - blk_mode_t open_mode; - struct blk_independent_access_ranges *ia_ranges; -}; - -typedef unsigned int blk_features_t; - -typedef unsigned int blk_flags_t; - -enum blk_integrity_checksum { - BLK_INTEGRITY_CSUM_NONE = 0, - BLK_INTEGRITY_CSUM_IP = 1, - BLK_INTEGRITY_CSUM_CRC = 2, - BLK_INTEGRITY_CSUM_CRC64 = 3, -} __attribute__((mode(byte))); - -struct blk_integrity { - unsigned char flags; - enum blk_integrity_checksum csum_type; - unsigned char tuple_size; - unsigned char pi_offset; - unsigned char interval_exp; - unsigned char tag_size; -}; - -struct queue_limits { - blk_features_t features; - blk_flags_t flags; - long unsigned int seg_boundary_mask; - long unsigned int virt_boundary_mask; - unsigned int max_hw_sectors; - unsigned int max_dev_sectors; - unsigned int chunk_sectors; - unsigned int max_sectors; - unsigned int max_user_sectors; - unsigned int max_segment_size; - unsigned int physical_block_size; - unsigned int logical_block_size; - unsigned int alignment_offset; - unsigned int io_min; - unsigned int io_opt; - unsigned int max_discard_sectors; - unsigned int max_hw_discard_sectors; - unsigned int max_user_discard_sectors; - unsigned int max_secure_erase_sectors; - unsigned int max_write_zeroes_sectors; - unsigned int max_zone_append_sectors; - unsigned int discard_granularity; - unsigned int discard_alignment; - unsigned int zone_write_granularity; - unsigned int atomic_write_hw_max; - unsigned int atomic_write_max_sectors; - unsigned int atomic_write_hw_boundary; - unsigned int atomic_write_boundary_sectors; - unsigned int atomic_write_hw_unit_min; - unsigned int atomic_write_unit_min; - unsigned int atomic_write_hw_unit_max; - unsigned int atomic_write_unit_max; - short unsigned int max_segments; - short unsigned int max_integrity_segments; - short unsigned int max_discard_segments; - unsigned int max_open_zones; - unsigned int max_active_zones; - unsigned int dma_alignment; - unsigned int dma_pad_mask; - struct blk_integrity integrity; -}; - -struct elevator_queue; - -struct blk_mq_ops; - -struct blk_mq_ctx; - -struct blk_queue_stats; - -struct rq_qos; - -struct blk_mq_tags; - -struct blk_flush_queue; - -struct throtl_data; - -struct blk_mq_tag_set; - -struct request_queue { - void *queuedata; - struct elevator_queue *elevator; - const struct blk_mq_ops *mq_ops; - struct blk_mq_ctx *queue_ctx; - long unsigned int queue_flags; - unsigned int rq_timeout; - unsigned int queue_depth; - refcount_t refs; - unsigned int nr_hw_queues; - struct xarray hctx_table; - struct percpu_ref q_usage_counter; - struct lock_class_key io_lock_cls_key; - struct lockdep_map io_lockdep_map; - struct lock_class_key q_lock_cls_key; - struct lockdep_map q_lockdep_map; - struct request *last_merge; - spinlock_t queue_lock; - int quiesce_depth; - struct gendisk *disk; - struct kobject *mq_kobj; - struct queue_limits limits; - atomic_t pm_only; - struct blk_queue_stats *stats; - struct rq_qos *rq_qos; - struct mutex rq_qos_mutex; - int id; - long unsigned int nr_requests; - struct timer_list timeout; - struct work_struct timeout_work; - atomic_t nr_active_requests_shared_tags; - struct blk_mq_tags *sched_shared_tags; - struct list_head icq_list; - long unsigned int blkcg_pols[1]; - struct blkcg_gq *root_blkg; - struct list_head blkg_list; - struct mutex blkcg_mutex; - int node; - spinlock_t requeue_lock; - struct list_head requeue_list; - struct delayed_work requeue_work; - struct blk_flush_queue *fq; - struct list_head flush_list; - struct mutex sysfs_lock; - struct mutex sysfs_dir_lock; - struct mutex limits_lock; - struct list_head unused_hctx_list; - spinlock_t unused_hctx_lock; - int mq_freeze_depth; - struct throtl_data *td; - struct callback_head callback_head; - wait_queue_head_t mq_freeze_wq; - struct mutex mq_freeze_lock; - struct blk_mq_tag_set *tag_set; - struct list_head tag_set_list; - struct dentry *debugfs_dir; - struct dentry *sched_debugfs_dir; - struct dentry *rqos_debugfs_dir; - struct mutex debugfs_mutex; - bool mq_sysfs_init_done; -}; - -struct fstrim_range { - __u64 start; - __u64 len; - __u64 minlen; -}; - -struct buffer_head; - -typedef void bh_end_io_t(struct buffer_head *, int); - -struct buffer_head { - long unsigned int b_state; - struct buffer_head *b_this_page; - union { - struct page *b_page; - struct folio *b_folio; - }; - sector_t b_blocknr; - size_t b_size; - char *b_data; - struct block_device *b_bdev; - bh_end_io_t *b_end_io; - void *b_private; - struct list_head b_assoc_buffers; - struct address_space *b_assoc_map; - atomic_t b_count; - spinlock_t b_uptodate_lock; -}; - -struct io_comp_batch { - struct rq_list req_list; - bool need_ts; - void (*complete)(struct io_comp_batch *); -}; - -struct fiemap_extent; - -struct fiemap_extent_info { - unsigned int fi_flags; - unsigned int fi_extents_mapped; - unsigned int fi_extents_max; - struct fiemap_extent *fi_extents_start; -}; - -struct partition_meta_info { - char uuid[37]; - u8 volname[64]; -}; - -enum bh_state_bits { - BH_Uptodate = 0, - BH_Dirty = 1, - BH_Lock = 2, - BH_Req = 3, - BH_Mapped = 4, - BH_New = 5, - BH_Async_Read = 6, - BH_Async_Write = 7, - BH_Delay = 8, - BH_Boundary = 9, - BH_Write_EIO = 10, - BH_Unwritten = 11, - BH_Quiet = 12, - BH_Meta = 13, - BH_Prio = 14, - BH_Defer_Completion = 15, - BH_PrivateStart = 16, -}; - -typedef unsigned int tid_t; - -struct transaction_chp_stats_s { - long unsigned int cs_chp_time; - __u32 cs_forced_to_close; - __u32 cs_written; - __u32 cs_dropped; -}; - -struct journal_s; - -typedef struct journal_s journal_t; - -struct journal_head; - -struct transaction_s; - -typedef struct transaction_s transaction_t; - -struct transaction_s { - journal_t *t_journal; - tid_t t_tid; - enum { - T_RUNNING = 0, - T_LOCKED = 1, - T_SWITCH = 2, - T_FLUSH = 3, - T_COMMIT = 4, - T_COMMIT_DFLUSH = 5, - T_COMMIT_JFLUSH = 6, - T_COMMIT_CALLBACK = 7, - T_FINISHED = 8, - } t_state; - long unsigned int t_log_start; - int t_nr_buffers; - struct journal_head *t_reserved_list; - struct journal_head *t_buffers; - struct journal_head *t_forget; - struct journal_head *t_checkpoint_list; - struct journal_head *t_shadow_list; - struct list_head t_inode_list; - long unsigned int t_max_wait; - long unsigned int t_start; - long unsigned int t_requested; - struct transaction_chp_stats_s t_chp_stats; - atomic_t t_updates; - atomic_t t_outstanding_credits; - atomic_t t_outstanding_revokes; - atomic_t t_handle_count; - transaction_t *t_cpnext; - transaction_t *t_cpprev; - long unsigned int t_expires; - ktime_t t_start_time; - unsigned int t_synchronous_commit: 1; - int t_need_data_flush; - struct list_head t_private_list; -}; - -struct jbd2_buffer_trigger_type; - -struct journal_head { - struct buffer_head *b_bh; - spinlock_t b_state_lock; - int b_jcount; - unsigned int b_jlist; - unsigned int b_modified; - char *b_frozen_data; - char *b_committed_data; - transaction_t *b_transaction; - transaction_t *b_next_transaction; - struct journal_head *b_tnext; - struct journal_head *b_tprev; - transaction_t *b_cp_transaction; - struct journal_head *b_cpnext; - struct journal_head *b_cpprev; - struct jbd2_buffer_trigger_type *b_triggers; - struct jbd2_buffer_trigger_type *b_frozen_triggers; -}; - -struct jbd2_buffer_trigger_type { - void (*t_frozen)(struct jbd2_buffer_trigger_type *, struct buffer_head *, void *, size_t); - void (*t_abort)(struct jbd2_buffer_trigger_type *, struct buffer_head *); -}; - -struct blk_zone { - __u64 start; - __u64 len; - __u64 wp; - __u8 type; - __u8 cond; - __u8 non_seq; - __u8 reset; - __u8 resv[4]; - __u64 capacity; - __u8 reserved[24]; -}; - -typedef int (*report_zones_cb)(struct blk_zone *, unsigned int, void *); - -enum blk_unique_id { - BLK_UID_T10 = 1, - BLK_UID_EUI64 = 2, - BLK_UID_NAA = 3, -}; - -struct hd_geometry; - -struct pr_ops; - -struct block_device_operations { - void (*submit_bio)(struct bio *); - int (*poll_bio)(struct bio *, struct io_comp_batch *, unsigned int); - int (*open)(struct gendisk *, blk_mode_t); - void (*release)(struct gendisk *); - int (*ioctl)(struct block_device *, blk_mode_t, unsigned int, long unsigned int); - int (*compat_ioctl)(struct block_device *, blk_mode_t, unsigned int, long unsigned int); - unsigned int (*check_events)(struct gendisk *, unsigned int); - void (*unlock_native_capacity)(struct gendisk *); - int (*getgeo)(struct block_device *, struct hd_geometry *); - int (*set_read_only)(struct block_device *, bool); - void (*free_disk)(struct gendisk *); - void (*swap_slot_free_notify)(struct block_device *, long unsigned int); - int (*report_zones)(struct gendisk *, sector_t, unsigned int, report_zones_cb, void *); - char * (*devnode)(struct gendisk *, umode_t *); - int (*get_unique_id)(struct gendisk *, u8 *, enum blk_unique_id); - struct module *owner; - const struct pr_ops *pr_ops; - int (*alternative_gpt_sector)(struct gendisk *, sector_t *); -}; - -struct blk_independent_access_range { - struct kobject kobj; - sector_t sector; - sector_t nr_sectors; -}; - -struct blk_independent_access_ranges { - struct kobject kobj; - bool sysfs_registered; - unsigned int nr_ia_ranges; - struct blk_independent_access_range ia_range[0]; -}; - -enum blk_eh_timer_return { - BLK_EH_DONE = 0, - BLK_EH_RESET_TIMER = 1, -}; - -struct blk_mq_hw_ctx; - -struct blk_mq_queue_data; - -struct blk_mq_ops { - blk_status_t (*queue_rq)(struct blk_mq_hw_ctx *, const struct blk_mq_queue_data *); - void (*commit_rqs)(struct blk_mq_hw_ctx *); - void (*queue_rqs)(struct rq_list *); - int (*get_budget)(struct request_queue *); - void (*put_budget)(struct request_queue *, int); - void (*set_rq_budget_token)(struct request *, int); - int (*get_rq_budget_token)(struct request *); - enum blk_eh_timer_return (*timeout)(struct request *); - int (*poll)(struct blk_mq_hw_ctx *, struct io_comp_batch *); - void (*complete)(struct request *); - int (*init_hctx)(struct blk_mq_hw_ctx *, void *, unsigned int); - void (*exit_hctx)(struct blk_mq_hw_ctx *, unsigned int); - int (*init_request)(struct blk_mq_tag_set *, struct request *, unsigned int, unsigned int); - void (*exit_request)(struct blk_mq_tag_set *, struct request *, unsigned int); - void (*cleanup_rq)(struct request *); - bool (*busy)(struct request_queue *); - void (*map_queues)(struct blk_mq_tag_set *); - void (*show_rq)(struct seq_file *, struct request *); -}; - -enum blk_default_limits { - BLK_MAX_SEGMENTS = 128, - BLK_SAFE_MAX_SECTORS = 255, - BLK_MAX_SEGMENT_SIZE = 65536, - BLK_SEG_BOUNDARY_MASK = 4294967295, -}; - -enum pr_type { - PR_WRITE_EXCLUSIVE = 1, - PR_EXCLUSIVE_ACCESS = 2, - PR_WRITE_EXCLUSIVE_REG_ONLY = 3, - PR_EXCLUSIVE_ACCESS_REG_ONLY = 4, - PR_WRITE_EXCLUSIVE_ALL_REGS = 5, - PR_EXCLUSIVE_ACCESS_ALL_REGS = 6, -}; - -struct pr_keys; - -struct pr_held_reservation; - -struct pr_ops { - int (*pr_register)(struct block_device *, u64, u64, u32); - int (*pr_reserve)(struct block_device *, u64, enum pr_type, u32); - int (*pr_release)(struct block_device *, u64, enum pr_type); - int (*pr_preempt)(struct block_device *, u64, u64, enum pr_type, bool); - int (*pr_clear)(struct block_device *, u64); - int (*pr_read_keys)(struct block_device *, struct pr_keys *); - int (*pr_read_reservation)(struct block_device *, struct pr_held_reservation *); -}; - -struct jbd2_journal_handle; - -typedef struct jbd2_journal_handle handle_t; - -struct jbd2_journal_handle { - union { - transaction_t *h_transaction; - journal_t *h_journal; - }; - handle_t *h_rsv_handle; - int h_total_credits; - int h_revoke_credits; - int h_revoke_credits_requested; - int h_ref; - int h_err; - unsigned int h_sync: 1; - unsigned int h_jdata: 1; - unsigned int h_reserved: 1; - unsigned int h_aborted: 1; - unsigned int h_type: 8; - unsigned int h_line_no: 16; - long unsigned int h_start_jiffies; - unsigned int h_requested_credits; - unsigned int saved_alloc_context; -}; - -struct transaction_run_stats_s { - long unsigned int rs_wait; - long unsigned int rs_request_delay; - long unsigned int rs_running; - long unsigned int rs_locked; - long unsigned int rs_flushing; - long unsigned int rs_logging; - __u32 rs_handle_count; - __u32 rs_blocks; - __u32 rs_blocks_logged; -}; - -struct transaction_stats_s { - long unsigned int ts_tid; - long unsigned int ts_requested; - struct transaction_run_stats_s run; -}; - -enum passtype { - PASS_SCAN = 0, - PASS_REVOKE = 1, - PASS_REPLAY = 2, -}; - -struct journal_superblock_s; - -typedef struct journal_superblock_s journal_superblock_t; - -struct jbd2_revoke_table_s; - -struct jbd2_inode; - -struct journal_s { - long unsigned int j_flags; - int j_errno; - struct mutex j_abort_mutex; - struct buffer_head *j_sb_buffer; - journal_superblock_t *j_superblock; - rwlock_t j_state_lock; - int j_barrier_count; - struct mutex j_barrier; - transaction_t *j_running_transaction; - transaction_t *j_committing_transaction; - transaction_t *j_checkpoint_transactions; - wait_queue_head_t j_wait_transaction_locked; - wait_queue_head_t j_wait_done_commit; - wait_queue_head_t j_wait_commit; - wait_queue_head_t j_wait_updates; - wait_queue_head_t j_wait_reserved; - wait_queue_head_t j_fc_wait; - struct mutex j_checkpoint_mutex; - struct buffer_head *j_chkpt_bhs[64]; - struct shrinker *j_shrinker; - struct percpu_counter j_checkpoint_jh_count; - transaction_t *j_shrink_transaction; - long unsigned int j_head; - long unsigned int j_tail; - long unsigned int j_free; - long unsigned int j_first; - long unsigned int j_last; - long unsigned int j_fc_first; - long unsigned int j_fc_off; - long unsigned int j_fc_last; - struct block_device *j_dev; - int j_blocksize; - long long unsigned int j_blk_offset; - char j_devname[56]; - struct block_device *j_fs_dev; - errseq_t j_fs_dev_wb_err; - unsigned int j_total_len; - atomic_t j_reserved_credits; - spinlock_t j_list_lock; - struct inode *j_inode; - tid_t j_tail_sequence; - tid_t j_transaction_sequence; - tid_t j_commit_sequence; - tid_t j_commit_request; - __u8 j_uuid[16]; - struct task_struct *j_task; - int j_max_transaction_buffers; - int j_revoke_records_per_block; - int j_transaction_overhead_buffers; - long unsigned int j_commit_interval; - struct timer_list j_commit_timer; - spinlock_t j_revoke_lock; - struct jbd2_revoke_table_s *j_revoke; - struct jbd2_revoke_table_s *j_revoke_table[2]; - struct buffer_head **j_wbuf; - struct buffer_head **j_fc_wbuf; - int j_wbufsize; - int j_fc_wbufsize; - pid_t j_last_sync_writer; - u64 j_average_commit_time; - u32 j_min_batch_time; - u32 j_max_batch_time; - void (*j_commit_callback)(journal_t *, transaction_t *); - int (*j_submit_inode_data_buffers)(struct jbd2_inode *); - int (*j_finish_inode_data_buffers)(struct jbd2_inode *); - spinlock_t j_history_lock; - struct proc_dir_entry *j_proc_entry; - struct transaction_stats_s j_stats; - unsigned int j_failed_commit; - void *j_private; - struct crypto_shash *j_chksum_driver; - __u32 j_csum_seed; - void (*j_fc_cleanup_callback)(struct journal_s *, int, tid_t); - int (*j_fc_replay_callback)(struct journal_s *, struct buffer_head *, enum passtype, int, tid_t); - int (*j_bmap)(struct journal_s *, sector_t *); -}; - -struct journal_header_s { - __be32 h_magic; - __be32 h_blocktype; - __be32 h_sequence; -}; - -typedef struct journal_header_s journal_header_t; - -struct journal_superblock_s { - journal_header_t s_header; - __be32 s_blocksize; - __be32 s_maxlen; - __be32 s_first; - __be32 s_sequence; - __be32 s_start; - __be32 s_errno; - __be32 s_feature_compat; - __be32 s_feature_incompat; - __be32 s_feature_ro_compat; - __u8 s_uuid[16]; - __be32 s_nr_users; - __be32 s_dynsuper; - __be32 s_max_transaction; - __be32 s_max_trans_data; - __u8 s_checksum_type; - __u8 s_padding2[3]; - __be32 s_num_fc_blks; - __be32 s_head; - __u32 s_padding[40]; - __be32 s_checksum; - __u8 s_users[768]; -}; - -enum jbd_state_bits { - BH_JBD = 16, - BH_JWrite = 17, - BH_Freed = 18, - BH_Revoked = 19, - BH_RevokeValid = 20, - BH_JBDDirty = 21, - BH_JournalHead = 22, - BH_Shadow = 23, - BH_Verified = 24, - BH_JBDPrivateStart = 25, -}; - -struct jbd2_inode { - transaction_t *i_transaction; - transaction_t *i_next_transaction; - struct list_head i_list; - struct inode *i_vfs_inode; - long unsigned int i_flags; - loff_t i_dirty_start; - loff_t i_dirty_end; -}; - -struct bgl_lock { - spinlock_t lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct blockgroup_lock { - struct bgl_lock locks[64]; -}; - -struct fiemap_extent { - __u64 fe_logical; - __u64 fe_physical; - __u64 fe_length; - __u64 fe_reserved64[2]; - __u32 fe_flags; - __u32 fe_reserved[3]; -}; - -struct fscrypt_policy_v1 { - __u8 version; - __u8 contents_encryption_mode; - __u8 filenames_encryption_mode; - __u8 flags; - __u8 master_key_descriptor[8]; -}; - -struct fscrypt_policy_v2 { - __u8 version; - __u8 contents_encryption_mode; - __u8 filenames_encryption_mode; - __u8 flags; - __u8 log2_data_unit_size; - __u8 __reserved[3]; - __u8 master_key_identifier[16]; -}; - -union fscrypt_policy { - u8 version; - struct fscrypt_policy_v1 v1; - struct fscrypt_policy_v2 v2; -}; - -struct fscrypt_dummy_policy { - const union fscrypt_policy *policy; -}; - -typedef int ext4_grpblk_t; - -typedef long long unsigned int ext4_fsblk_t; - -typedef __u32 ext4_lblk_t; - -typedef unsigned int ext4_group_t; - -enum criteria { - CR_POWER2_ALIGNED = 0, - CR_GOAL_LEN_FAST = 1, - CR_BEST_AVAIL_LEN = 2, - CR_GOAL_LEN_SLOW = 3, - CR_ANY_FREE = 4, - EXT4_MB_NUM_CRS = 5, -}; - -struct ext4_allocation_request { - struct inode *inode; - unsigned int len; - ext4_lblk_t logical; - ext4_lblk_t lleft; - ext4_lblk_t lright; - ext4_fsblk_t goal; - ext4_fsblk_t pleft; - ext4_fsblk_t pright; - unsigned int flags; -}; - -struct ext4_system_blocks { - struct rb_root root; - struct callback_head rcu; -}; - -struct ext4_group_desc { - __le32 bg_block_bitmap_lo; - __le32 bg_inode_bitmap_lo; - __le32 bg_inode_table_lo; - __le16 bg_free_blocks_count_lo; - __le16 bg_free_inodes_count_lo; - __le16 bg_used_dirs_count_lo; - __le16 bg_flags; - __le32 bg_exclude_bitmap_lo; - __le16 bg_block_bitmap_csum_lo; - __le16 bg_inode_bitmap_csum_lo; - __le16 bg_itable_unused_lo; - __le16 bg_checksum; - __le32 bg_block_bitmap_hi; - __le32 bg_inode_bitmap_hi; - __le32 bg_inode_table_hi; - __le16 bg_free_blocks_count_hi; - __le16 bg_free_inodes_count_hi; - __le16 bg_used_dirs_count_hi; - __le16 bg_itable_unused_hi; - __le32 bg_exclude_bitmap_hi; - __le16 bg_block_bitmap_csum_hi; - __le16 bg_inode_bitmap_csum_hi; - __u32 bg_reserved; -}; - -struct flex_groups { - atomic64_t free_clusters; - atomic_t free_inodes; - atomic_t used_dirs; -}; - -enum { - EXT4_INODE_SECRM = 0, - EXT4_INODE_UNRM = 1, - EXT4_INODE_COMPR = 2, - EXT4_INODE_SYNC = 3, - EXT4_INODE_IMMUTABLE = 4, - EXT4_INODE_APPEND = 5, - EXT4_INODE_NODUMP = 6, - EXT4_INODE_NOATIME = 7, - EXT4_INODE_DIRTY = 8, - EXT4_INODE_COMPRBLK = 9, - EXT4_INODE_NOCOMPR = 10, - EXT4_INODE_ENCRYPT = 11, - EXT4_INODE_INDEX = 12, - EXT4_INODE_IMAGIC = 13, - EXT4_INODE_JOURNAL_DATA = 14, - EXT4_INODE_NOTAIL = 15, - EXT4_INODE_DIRSYNC = 16, - EXT4_INODE_TOPDIR = 17, - EXT4_INODE_HUGE_FILE = 18, - EXT4_INODE_EXTENTS = 19, - EXT4_INODE_VERITY = 20, - EXT4_INODE_EA_INODE = 21, - EXT4_INODE_DAX = 25, - EXT4_INODE_INLINE_DATA = 28, - EXT4_INODE_PROJINHERIT = 29, - EXT4_INODE_CASEFOLD = 30, - EXT4_INODE_RESERVED = 31, -}; - -struct extent_status { - struct rb_node rb_node; - ext4_lblk_t es_lblk; - ext4_lblk_t es_len; - ext4_fsblk_t es_pblk; -}; - -struct ext4_es_tree { - struct rb_root root; - struct extent_status *cache_es; -}; - -struct ext4_es_stats { - long unsigned int es_stats_shrunk; - struct percpu_counter es_stats_cache_hits; - struct percpu_counter es_stats_cache_misses; - u64 es_stats_scan_time; - u64 es_stats_max_scan_time; - struct percpu_counter es_stats_all_cnt; - struct percpu_counter es_stats_shk_cnt; -}; - -struct ext4_pending_tree { - struct rb_root root; -}; - -struct ext4_fc_stats { - unsigned int fc_ineligible_reason_count[10]; - long unsigned int fc_num_commits; - long unsigned int fc_ineligible_commits; - long unsigned int fc_failed_commits; - long unsigned int fc_skipped_commits; - long unsigned int fc_numblks; - u64 s_fc_avg_commit_time; -}; - -struct ext4_fc_alloc_region { - ext4_lblk_t lblk; - ext4_fsblk_t pblk; - int ino; - int len; -}; - -struct ext4_fc_replay_state { - int fc_replay_num_tags; - int fc_replay_expected_off; - int fc_current_pass; - int fc_cur_tag; - int fc_crc; - struct ext4_fc_alloc_region *fc_regions; - int fc_regions_size; - int fc_regions_used; - int fc_regions_valid; - int *fc_modified_inodes; - int fc_modified_inodes_used; - int fc_modified_inodes_size; -}; - -struct ext4_inode_info { - __le32 i_data[15]; - __u32 i_dtime; - ext4_fsblk_t i_file_acl; - ext4_group_t i_block_group; - ext4_lblk_t i_dir_start_lookup; - long unsigned int i_flags; - struct rw_semaphore xattr_sem; - union { - struct list_head i_orphan; - unsigned int i_orphan_idx; - }; - struct list_head i_fc_dilist; - struct list_head i_fc_list; - ext4_lblk_t i_fc_lblk_start; - ext4_lblk_t i_fc_lblk_len; - atomic_t i_fc_updates; - atomic_t i_unwritten; - wait_queue_head_t i_fc_wait; - struct mutex i_fc_lock; - loff_t i_disksize; - struct rw_semaphore i_data_sem; - struct inode vfs_inode; - struct jbd2_inode *jinode; - spinlock_t i_raw_lock; - struct timespec64 i_crtime; - atomic_t i_prealloc_active; - unsigned int i_reserved_data_blocks; - struct rb_root i_prealloc_node; - rwlock_t i_prealloc_lock; - struct ext4_es_tree i_es_tree; - rwlock_t i_es_lock; - struct list_head i_es_list; - unsigned int i_es_all_nr; - unsigned int i_es_shk_nr; - ext4_lblk_t i_es_shrink_lblk; - ext4_group_t i_last_alloc_group; - struct ext4_pending_tree i_pending_tree; - __u16 i_extra_isize; - u16 i_inline_off; - u16 i_inline_size; - qsize_t i_reserved_quota; - spinlock_t i_completed_io_lock; - struct list_head i_rsv_conversion_list; - struct work_struct i_rsv_conversion_work; - spinlock_t i_block_reservation_lock; - tid_t i_sync_tid; - tid_t i_datasync_tid; - struct dquot *i_dquot[3]; - __u32 i_csum_seed; - kprojid_t i_projid; -}; - -struct ext4_super_block { - __le32 s_inodes_count; - __le32 s_blocks_count_lo; - __le32 s_r_blocks_count_lo; - __le32 s_free_blocks_count_lo; - __le32 s_free_inodes_count; - __le32 s_first_data_block; - __le32 s_log_block_size; - __le32 s_log_cluster_size; - __le32 s_blocks_per_group; - __le32 s_clusters_per_group; - __le32 s_inodes_per_group; - __le32 s_mtime; - __le32 s_wtime; - __le16 s_mnt_count; - __le16 s_max_mnt_count; - __le16 s_magic; - __le16 s_state; - __le16 s_errors; - __le16 s_minor_rev_level; - __le32 s_lastcheck; - __le32 s_checkinterval; - __le32 s_creator_os; - __le32 s_rev_level; - __le16 s_def_resuid; - __le16 s_def_resgid; - __le32 s_first_ino; - __le16 s_inode_size; - __le16 s_block_group_nr; - __le32 s_feature_compat; - __le32 s_feature_incompat; - __le32 s_feature_ro_compat; - __u8 s_uuid[16]; - char s_volume_name[16]; - char s_last_mounted[64]; - __le32 s_algorithm_usage_bitmap; - __u8 s_prealloc_blocks; - __u8 s_prealloc_dir_blocks; - __le16 s_reserved_gdt_blocks; - __u8 s_journal_uuid[16]; - __le32 s_journal_inum; - __le32 s_journal_dev; - __le32 s_last_orphan; - __le32 s_hash_seed[4]; - __u8 s_def_hash_version; - __u8 s_jnl_backup_type; - __le16 s_desc_size; - __le32 s_default_mount_opts; - __le32 s_first_meta_bg; - __le32 s_mkfs_time; - __le32 s_jnl_blocks[17]; - __le32 s_blocks_count_hi; - __le32 s_r_blocks_count_hi; - __le32 s_free_blocks_count_hi; - __le16 s_min_extra_isize; - __le16 s_want_extra_isize; - __le32 s_flags; - __le16 s_raid_stride; - __le16 s_mmp_update_interval; - __le64 s_mmp_block; - __le32 s_raid_stripe_width; - __u8 s_log_groups_per_flex; - __u8 s_checksum_type; - __u8 s_encryption_level; - __u8 s_reserved_pad; - __le64 s_kbytes_written; - __le32 s_snapshot_inum; - __le32 s_snapshot_id; - __le64 s_snapshot_r_blocks_count; - __le32 s_snapshot_list; - __le32 s_error_count; - __le32 s_first_error_time; - __le32 s_first_error_ino; - __le64 s_first_error_block; - __u8 s_first_error_func[32]; - __le32 s_first_error_line; - __le32 s_last_error_time; - __le32 s_last_error_ino; - __le32 s_last_error_line; - __le64 s_last_error_block; - __u8 s_last_error_func[32]; - __u8 s_mount_opts[64]; - __le32 s_usr_quota_inum; - __le32 s_grp_quota_inum; - __le32 s_overhead_clusters; - __le32 s_backup_bgs[2]; - __u8 s_encrypt_algos[4]; - __u8 s_encrypt_pw_salt[16]; - __le32 s_lpf_ino; - __le32 s_prj_quota_inum; - __le32 s_checksum_seed; - __u8 s_wtime_hi; - __u8 s_mtime_hi; - __u8 s_mkfs_time_hi; - __u8 s_lastcheck_hi; - __u8 s_first_error_time_hi; - __u8 s_last_error_time_hi; - __u8 s_first_error_errcode; - __u8 s_last_error_errcode; - __le16 s_encoding; - __le16 s_encoding_flags; - __le32 s_orphan_file_inum; - __le32 s_reserved[94]; - __le32 s_checksum; -}; - -enum ext4_journal_trigger_type { - EXT4_JTR_ORPHAN_FILE = 0, - EXT4_JTR_NONE = 1, -}; - -struct ext4_journal_trigger { - struct jbd2_buffer_trigger_type tr_triggers; - struct super_block *sb; -}; - -struct ext4_orphan_block { - atomic_t ob_free_entries; - struct buffer_head *ob_bh; -}; - -struct ext4_orphan_info { - int of_blocks; - __u32 of_csum_seed; - struct ext4_orphan_block *of_binfo; -}; - -struct dax_device; - -struct ext4_group_info; - -struct ext4_locality_group; - -struct ext4_li_request; - -struct mb_cache; - -struct ext4_sb_info { - long unsigned int s_desc_size; - long unsigned int s_inodes_per_block; - long unsigned int s_blocks_per_group; - long unsigned int s_clusters_per_group; - long unsigned int s_inodes_per_group; - long unsigned int s_itb_per_group; - long unsigned int s_gdb_count; - long unsigned int s_desc_per_block; - ext4_group_t s_groups_count; - ext4_group_t s_blockfile_groups; - long unsigned int s_overhead; - unsigned int s_cluster_ratio; - unsigned int s_cluster_bits; - loff_t s_bitmap_maxbytes; - struct buffer_head *s_sbh; - struct ext4_super_block *s_es; - struct buffer_head **s_group_desc; - unsigned int s_mount_opt; - unsigned int s_mount_opt2; - long unsigned int s_mount_flags; - unsigned int s_def_mount_opt; - unsigned int s_def_mount_opt2; - ext4_fsblk_t s_sb_block; - atomic64_t s_resv_clusters; - kuid_t s_resuid; - kgid_t s_resgid; - short unsigned int s_mount_state; - short unsigned int s_pad; - int s_addr_per_block_bits; - int s_desc_per_block_bits; - int s_inode_size; - int s_first_ino; - unsigned int s_inode_readahead_blks; - unsigned int s_inode_goal; - u32 s_hash_seed[4]; - int s_def_hash_version; - int s_hash_unsigned; - struct percpu_counter s_freeclusters_counter; - struct percpu_counter s_freeinodes_counter; - struct percpu_counter s_dirs_counter; - struct percpu_counter s_dirtyclusters_counter; - struct percpu_counter s_sra_exceeded_retry_limit; - struct blockgroup_lock *s_blockgroup_lock; - struct proc_dir_entry *s_proc; - struct kobject s_kobj; - struct completion s_kobj_unregister; - struct super_block *s_sb; - struct buffer_head *s_mmp_bh; - struct journal_s *s_journal; - long unsigned int s_ext4_flags; - struct mutex s_orphan_lock; - struct list_head s_orphan; - struct ext4_orphan_info s_orphan_info; - long unsigned int s_commit_interval; - u32 s_max_batch_time; - u32 s_min_batch_time; - struct file *s_journal_bdev_file; - char *s_qf_names[3]; - int s_jquota_fmt; - unsigned int s_want_extra_isize; - struct ext4_system_blocks *s_system_blks; - struct ext4_group_info ***s_group_info; - struct inode *s_buddy_cache; - spinlock_t s_md_lock; - short unsigned int *s_mb_offsets; - unsigned int *s_mb_maxs; - unsigned int s_group_info_size; - unsigned int s_mb_free_pending; - struct list_head s_freed_data_list[2]; - struct list_head s_discard_list; - struct work_struct s_discard_work; - atomic_t s_retry_alloc_pending; - struct list_head *s_mb_avg_fragment_size; - rwlock_t *s_mb_avg_fragment_size_locks; - struct list_head *s_mb_largest_free_orders; - rwlock_t *s_mb_largest_free_orders_locks; - long unsigned int s_stripe; - unsigned int s_mb_max_linear_groups; - unsigned int s_mb_stream_request; - unsigned int s_mb_max_to_scan; - unsigned int s_mb_min_to_scan; - unsigned int s_mb_stats; - unsigned int s_mb_order2_reqs; - unsigned int s_mb_group_prealloc; - unsigned int s_max_dir_size_kb; - long unsigned int s_mb_last_group; - long unsigned int s_mb_last_start; - unsigned int s_mb_prefetch; - unsigned int s_mb_prefetch_limit; - unsigned int s_mb_best_avail_max_trim_order; - atomic_t s_bal_reqs; - atomic_t s_bal_success; - atomic_t s_bal_allocated; - atomic_t s_bal_ex_scanned; - atomic_t s_bal_cX_ex_scanned[5]; - atomic_t s_bal_groups_scanned; - atomic_t s_bal_goals; - atomic_t s_bal_len_goals; - atomic_t s_bal_breaks; - atomic_t s_bal_2orders; - atomic_t s_bal_p2_aligned_bad_suggestions; - atomic_t s_bal_goal_fast_bad_suggestions; - atomic_t s_bal_best_avail_bad_suggestions; - atomic64_t s_bal_cX_groups_considered[5]; - atomic64_t s_bal_cX_hits[5]; - atomic64_t s_bal_cX_failed[5]; - atomic_t s_mb_buddies_generated; - atomic64_t s_mb_generation_time; - atomic_t s_mb_lost_chunks; - atomic_t s_mb_preallocated; - atomic_t s_mb_discarded; - atomic_t s_lock_busy; - struct ext4_locality_group *s_locality_groups; - long unsigned int s_sectors_written_start; - u64 s_kbytes_written; - unsigned int s_extent_max_zeroout_kb; - unsigned int s_log_groups_per_flex; - struct flex_groups **s_flex_groups; - ext4_group_t s_flex_groups_allocated; - struct workqueue_struct *rsv_conversion_wq; - struct timer_list s_err_report; - struct ext4_li_request *s_li_request; - unsigned int s_li_wait_mult; - struct task_struct *s_mmp_tsk; - long unsigned int s_last_trim_minblks; - struct crypto_shash *s_chksum_driver; - __u32 s_csum_seed; - struct shrinker *s_es_shrinker; - struct list_head s_es_list; - long int s_es_nr_inode; - struct ext4_es_stats s_es_stats; - struct mb_cache *s_ea_block_cache; - struct mb_cache *s_ea_inode_cache; - long: 64; - long: 64; - long: 64; - spinlock_t s_es_lock; - struct ext4_journal_trigger s_journal_triggers[1]; - struct ratelimit_state s_err_ratelimit_state; - struct ratelimit_state s_warning_ratelimit_state; - struct ratelimit_state s_msg_ratelimit_state; - atomic_t s_warning_count; - atomic_t s_msg_count; - struct fscrypt_dummy_policy s_dummy_enc_policy; - struct percpu_rw_semaphore s_writepages_rwsem; - struct dax_device *s_daxdev; - u64 s_dax_part_off; - errseq_t s_bdev_wb_err; - spinlock_t s_bdev_wb_lock; - spinlock_t s_error_lock; - int s_add_error_count; - int s_first_error_code; - __u32 s_first_error_line; - __u32 s_first_error_ino; - __u64 s_first_error_block; - const char *s_first_error_func; - time64_t s_first_error_time; - int s_last_error_code; - __u32 s_last_error_line; - __u32 s_last_error_ino; - __u64 s_last_error_block; - const char *s_last_error_func; - time64_t s_last_error_time; - struct work_struct s_sb_upd_work; - atomic_t s_fc_subtid; - struct list_head s_fc_q[2]; - struct list_head s_fc_dentry_q[2]; - unsigned int s_fc_bytes; - spinlock_t s_fc_lock; - struct buffer_head *s_fc_bh; - struct ext4_fc_stats s_fc_stats; - tid_t s_fc_ineligible_tid; - struct ext4_fc_replay_state s_fc_replay_state; - long: 64; -}; - -struct ext4_group_info { - long unsigned int bb_state; - struct rb_root bb_free_root; - ext4_grpblk_t bb_first_free; - ext4_grpblk_t bb_free; - ext4_grpblk_t bb_fragments; - int bb_avg_fragment_size_order; - ext4_grpblk_t bb_largest_free_order; - ext4_group_t bb_group; - struct list_head bb_prealloc_list; - struct rw_semaphore alloc_sem; - struct list_head bb_avg_fragment_size_node; - struct list_head bb_largest_free_order_node; - ext4_grpblk_t bb_counters[0]; -}; - -struct ext4_locality_group { - struct mutex lg_mutex; - struct list_head lg_prealloc_list[10]; - spinlock_t lg_prealloc_lock; -}; - -enum ext4_li_mode { - EXT4_LI_MODE_PREFETCH_BBITMAP = 0, - EXT4_LI_MODE_ITABLE = 1, -}; - -struct ext4_li_request { - struct super_block *lr_super; - enum ext4_li_mode lr_mode; - ext4_group_t lr_first_not_zeroed; - ext4_group_t lr_next_group; - struct list_head lr_request; - long unsigned int lr_next_sched; - long unsigned int lr_timeout; -}; - -struct ext4_free_data { - struct list_head efd_list; - struct rb_node efd_node; - ext4_group_t efd_group; - ext4_grpblk_t efd_start_cluster; - ext4_grpblk_t efd_count; - tid_t efd_tid; -}; - -struct ext4_prealloc_space { - union { - struct rb_node inode_node; - struct list_head lg_list; - } pa_node; - struct list_head pa_group_list; - union { - struct list_head pa_tmp_list; - struct callback_head pa_rcu; - } u; - spinlock_t pa_lock; - atomic_t pa_count; - unsigned int pa_deleted; - ext4_fsblk_t pa_pstart; - ext4_lblk_t pa_lstart; - ext4_grpblk_t pa_len; - ext4_grpblk_t pa_free; - short unsigned int pa_type; - union { - rwlock_t *inode_lock; - spinlock_t *lg_lock; - } pa_node_lock; - struct inode *pa_inode; -}; - -enum { - MB_INODE_PA = 0, - MB_GROUP_PA = 1, -}; - -struct ext4_free_extent { - ext4_lblk_t fe_logical; - ext4_grpblk_t fe_start; - ext4_group_t fe_group; - ext4_grpblk_t fe_len; -}; - -struct ext4_allocation_context { - struct inode *ac_inode; - struct super_block *ac_sb; - struct ext4_free_extent ac_o_ex; - struct ext4_free_extent ac_g_ex; - struct ext4_free_extent ac_b_ex; - struct ext4_free_extent ac_f_ex; - ext4_grpblk_t ac_orig_goal_len; - __u32 ac_flags; - __u32 ac_groups_linear_remaining; - __u16 ac_groups_scanned; - __u16 ac_found; - __u16 ac_cX_found[5]; - __u16 ac_tail; - __u16 ac_buddy; - __u8 ac_status; - __u8 ac_criteria; - __u8 ac_2order; - __u8 ac_op; - struct folio *ac_bitmap_folio; - struct folio *ac_buddy_folio; - struct ext4_prealloc_space *ac_pa; - struct ext4_locality_group *ac_lg; -}; - -struct ext4_buddy { - struct folio *bd_buddy_folio; - void *bd_buddy; - struct folio *bd_bitmap_folio; - void *bd_bitmap; - struct ext4_group_info *bd_info; - struct super_block *bd_sb; - __u16 bd_blkbits; - ext4_group_t bd_group; -}; - -typedef int (*ext4_mballoc_query_range_fn)(struct super_block *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t, void *); - -struct sg { - struct ext4_group_info info; - ext4_grpblk_t counters[18]; -}; - -typedef struct { - int val[2]; -} __kernel_fsid_t; - -typedef int get_block_t(struct inode *, sector_t, struct buffer_head *, int); - -typedef int dio_iodone_t(struct kiocb *, loff_t, ssize_t, void *); - -struct kstatfs { - long int f_type; - long int f_bsize; - u64 f_blocks; - u64 f_bfree; - u64 f_bavail; - u64 f_files; - u64 f_ffree; - __kernel_fsid_t f_fsid; - long int f_namelen; - long int f_frsize; - long int f_flags; - long int f_spare[4]; -}; - -enum file_time_flags { - S_ATIME = 1, - S_MTIME = 2, - S_CTIME = 4, - S_VERSION = 8, -}; - -enum { - DIO_LOCKING = 1, - DIO_SKIP_HOLES = 2, -}; - -typedef u16 wchar_t; - -struct nls_table { - const char *charset; - const char *alias; - int (*uni2char)(wchar_t, unsigned char *, int); - int (*char2uni)(const unsigned char *, int, wchar_t *); - const unsigned char *charset2lower; - const unsigned char *charset2upper; - struct module *owner; - struct nls_table *next; -}; - -struct fat_boot_sector { - __u8 ignored[3]; - __u8 system_id[8]; - __u8 sector_size[2]; - __u8 sec_per_clus; - __le16 reserved; - __u8 fats; - __u8 dir_entries[2]; - __u8 sectors[2]; - __u8 media; - __le16 fat_length; - __le16 secs_track; - __le16 heads; - __le32 hidden; - __le32 total_sect; - union { - struct { - __u8 drive_number; - __u8 state; - __u8 signature; - __u8 vol_id[4]; - __u8 vol_label[11]; - __u8 fs_type[8]; - } fat16; - struct { - __le32 length; - __le16 flags; - __u8 version[2]; - __le32 root_cluster; - __le16 info_sector; - __le16 backup_boot; - __le16 reserved2[6]; - __u8 drive_number; - __u8 state; - __u8 signature; - __u8 vol_id[4]; - __u8 vol_label[11]; - __u8 fs_type[8]; - } fat32; - }; -}; - -struct fat_boot_fsinfo { - __le32 signature1; - __le32 reserved1[120]; - __le32 signature2; - __le32 free_clusters; - __le32 next_cluster; - __le32 reserved2[4]; -}; - -struct msdos_dir_entry { - __u8 name[11]; - __u8 attr; - __u8 lcase; - __u8 ctime_cs; - __le16 ctime; - __le16 cdate; - __le16 adate; - __le16 starthi; - __le16 time; - __le16 date; - __le16 start; - __le32 size; -}; - -struct constant_table { - const char *name; - int value; -}; - -struct fat_mount_options { - kuid_t fs_uid; - kgid_t fs_gid; - short unsigned int fs_fmask; - short unsigned int fs_dmask; - short unsigned int codepage; - int time_offset; - char *iocharset; - short unsigned int shortname; - unsigned char name_check; - unsigned char errors; - unsigned char nfs; - short unsigned int allow_utime; - unsigned int quiet: 1; - unsigned int showexec: 1; - unsigned int sys_immutable: 1; - unsigned int dotsOK: 1; - unsigned int isvfat: 1; - unsigned int utf8: 1; - unsigned int unicode_xlate: 1; - unsigned int numtail: 1; - unsigned int flush: 1; - unsigned int nocase: 1; - unsigned int usefree: 1; - unsigned int tz_set: 1; - unsigned int rodir: 1; - unsigned int discard: 1; - unsigned int dos1xfloppy: 1; - unsigned int debug: 1; -}; - -struct fatent_operations; - -struct msdos_sb_info { - short unsigned int sec_per_clus; - short unsigned int cluster_bits; - unsigned int cluster_size; - unsigned char fats; - unsigned char fat_bits; - short unsigned int fat_start; - long unsigned int fat_length; - long unsigned int dir_start; - short unsigned int dir_entries; - long unsigned int data_start; - long unsigned int max_cluster; - long unsigned int root_cluster; - long unsigned int fsinfo_sector; - struct mutex fat_lock; - struct mutex nfs_build_inode_lock; - struct mutex s_lock; - unsigned int prev_free; - unsigned int free_clusters; - unsigned int free_clus_valid; - struct fat_mount_options options; - struct nls_table *nls_disk; - struct nls_table *nls_io; - const void *dir_ops; - int dir_per_block; - int dir_per_block_bits; - unsigned int vol_id; - int fatent_shift; - const struct fatent_operations *fatent_ops; - struct inode *fat_inode; - struct inode *fsinfo_inode; - struct ratelimit_state ratelimit; - spinlock_t inode_hash_lock; - struct hlist_head inode_hashtable[256]; - spinlock_t dir_hash_lock; - struct hlist_head dir_hashtable[256]; - unsigned int dirty; - struct callback_head rcu; -}; - -struct fat_entry; - -struct fatent_operations { - void (*ent_blocknr)(struct super_block *, int, int *, sector_t *); - void (*ent_set_ptr)(struct fat_entry *, int); - int (*ent_bread)(struct super_block *, struct fat_entry *, int, sector_t); - int (*ent_get)(struct fat_entry *); - void (*ent_put)(struct fat_entry *, int); - int (*ent_next)(struct fat_entry *); -}; - -struct msdos_inode_info { - spinlock_t cache_lru_lock; - struct list_head cache_lru; - int nr_caches; - unsigned int cache_valid_id; - loff_t mmu_private; - int i_start; - int i_logstart; - int i_attrs; - loff_t i_pos; - struct hlist_node i_fat_hash; - struct hlist_node i_dir_hash; - struct rw_semaphore truncate_lock; - struct timespec64 i_crtime; - struct inode vfs_inode; -}; - -struct fat_bios_param_block { - u16 fat_sector_size; - u8 fat_sec_per_clus; - u16 fat_reserved; - u8 fat_fats; - u16 fat_dir_entries; - u16 fat_sectors; - u16 fat_fat_length; - u32 fat_total_sect; - u8 fat16_state; - u32 fat16_vol_id; - u32 fat32_length; - u32 fat32_root_cluster; - u16 fat32_info_sector; - u8 fat32_state; - u32 fat32_vol_id; -}; - -struct fat_floppy_defaults { - unsigned int nr_sectors; - unsigned int sec_per_clus; - unsigned int dir_entries; - unsigned int media; - unsigned int fat_length; -}; - -enum { - Opt_check = 0, - Opt_uid = 1, - Opt_gid = 2, - Opt_umask = 3, - Opt_dmask = 4, - Opt_fmask = 5, - Opt_allow_utime = 6, - Opt_codepage = 7, - Opt_usefree = 8, - Opt_nocase = 9, - Opt_quiet = 10, - Opt_showexec = 11, - Opt_debug = 12, - Opt_immutable = 13, - Opt_dots = 14, - Opt_dotsOK = 15, - Opt_charset = 16, - Opt_shortname = 17, - Opt_utf8 = 18, - Opt_utf8_bool = 19, - Opt_uni_xl = 20, - Opt_uni_xl_bool = 21, - Opt_nonumtail = 22, - Opt_nonumtail_bool = 23, - Opt_obsolete = 24, - Opt_flush = 25, - Opt_tz = 26, - Opt_rodir = 27, - Opt_errors = 28, - Opt_discard = 29, - Opt_nfs = 30, - Opt_nfs_enum = 31, - Opt_time_offset = 32, - Opt_dos1xfloppy = 33, -}; - -enum exfat_error_mode { - EXFAT_ERRORS_CONT = 0, - EXFAT_ERRORS_PANIC = 1, - EXFAT_ERRORS_RO = 2, -}; - -struct exfat_chain { - unsigned int dir; - unsigned int size; - unsigned char flags; -}; - -struct exfat_hint_femp { - int eidx; - int count; - struct exfat_chain cur; -}; - -struct exfat_hint { - unsigned int clu; - union { - unsigned int off; - int eidx; - }; -}; - -struct exfat_mount_options { - kuid_t fs_uid; - kgid_t fs_gid; - short unsigned int fs_fmask; - short unsigned int fs_dmask; - short unsigned int allow_utime; - char *iocharset; - enum exfat_error_mode errors; - unsigned int utf8: 1; - unsigned int sys_tz: 1; - unsigned int discard: 1; - unsigned int keep_last_dots: 1; - int time_offset; - bool zero_size_dir; -}; - -struct exfat_sb_info { - long long unsigned int num_sectors; - unsigned int num_clusters; - unsigned int cluster_size; - unsigned int cluster_size_bits; - unsigned int sect_per_clus; - unsigned int sect_per_clus_bits; - long long unsigned int FAT1_start_sector; - long long unsigned int FAT2_start_sector; - long long unsigned int data_start_sector; - unsigned int num_FAT_sectors; - unsigned int root_dir; - unsigned int dentries_per_clu; - unsigned int vol_flags; - unsigned int vol_flags_persistent; - struct buffer_head *boot_bh; - unsigned int map_clu; - unsigned int map_sectors; - struct buffer_head **vol_amap; - short unsigned int *vol_utbl; - unsigned int clu_srch_ptr; - unsigned int used_clusters; - long unsigned int s_exfat_flags; - struct mutex s_lock; - struct mutex bitmap_lock; - struct exfat_mount_options options; - struct nls_table *nls_io; - struct ratelimit_state ratelimit; - spinlock_t inode_hash_lock; - struct hlist_head inode_hashtable[256]; - struct callback_head rcu; -}; - -struct exfat_inode_info { - struct exfat_chain dir; - int entry; - unsigned int type; - short unsigned int attr; - unsigned int start_clu; - unsigned char flags; - unsigned int version; - struct exfat_hint hint_bmap; - struct exfat_hint hint_stat; - struct exfat_hint_femp hint_femp; - spinlock_t cache_lru_lock; - struct list_head cache_lru; - int nr_caches; - unsigned int cache_valid_id; - loff_t i_pos; - loff_t valid_size; - struct hlist_node i_hash_fat; - struct rw_semaphore truncate_lock; - struct inode vfs_inode; - struct timespec64 i_crtime; -}; - -struct exfat_cache { - struct list_head cache_list; - unsigned int nr_contig; - unsigned int fcluster; - unsigned int dcluster; -}; - -struct exfat_cache_id { - unsigned int id; - unsigned int nr_contig; - unsigned int fcluster; - unsigned int dcluster; -}; - -struct __kernel_sockaddr_storage { - union { - struct { - __kernel_sa_family_t ss_family; - char __data[126]; - }; - void *__align; - }; -}; - -struct in_addr { - __be32 s_addr; -}; - -struct sockaddr_in { - __kernel_sa_family_t sin_family; - __be16 sin_port; - struct in_addr sin_addr; - unsigned char __pad[8]; -}; - -struct sockaddr_in6 { - short unsigned int sin6_family; - __be16 sin6_port; - __be32 sin6_flowinfo; - struct in6_addr sin6_addr; - __u32 sin6_scope_id; -}; - -typedef u32 rpc_authflavor_t; - -enum rpc_auth_flavors { - RPC_AUTH_NULL = 0, - RPC_AUTH_UNIX = 1, - RPC_AUTH_SHORT = 2, - RPC_AUTH_DES = 3, - RPC_AUTH_KRB = 4, - RPC_AUTH_GSS = 6, - RPC_AUTH_TLS = 7, - RPC_AUTH_MAXFLAVOR = 8, - RPC_AUTH_GSS_KRB5 = 390003, - RPC_AUTH_GSS_KRB5I = 390004, - RPC_AUTH_GSS_KRB5P = 390005, - RPC_AUTH_GSS_LKEY = 390006, - RPC_AUTH_GSS_LKEYI = 390007, - RPC_AUTH_GSS_LKEYP = 390008, - RPC_AUTH_GSS_SPKM = 390009, - RPC_AUTH_GSS_SPKMI = 390010, - RPC_AUTH_GSS_SPKMP = 390011, -}; - -struct net_generic { - union { - struct { - unsigned int len; - struct callback_head rcu; - } s; - struct { - struct {} __empty_ptr; - void *ptr[0]; - }; - }; -}; - -struct xdr_netobj { - unsigned int len; - u8 *data; -}; - -struct xdr_buf { - struct kvec head[1]; - struct kvec tail[1]; - struct bio_vec *bvec; - struct page **pages; - unsigned int page_base; - unsigned int page_len; - unsigned int flags; - unsigned int buflen; - unsigned int len; -}; - -struct rpc_rqst; - -struct xdr_stream { - __be32 *p; - struct xdr_buf *buf; - __be32 *end; - struct kvec *iov; - struct kvec scratch; - struct page **page_ptr; - void *page_kaddr; - unsigned int nwords; - struct rpc_rqst *rqst; -}; - -struct lwq_node { - struct llist_node node; -}; - -struct rpc_xprt; - -struct rpc_task; - -struct rpc_cred; - -struct rpc_rqst { - struct rpc_xprt *rq_xprt; - struct xdr_buf rq_snd_buf; - struct xdr_buf rq_rcv_buf; - struct rpc_task *rq_task; - struct rpc_cred *rq_cred; - __be32 rq_xid; - int rq_cong; - u32 rq_seqno; - int rq_enc_pages_num; - struct page **rq_enc_pages; - void (*rq_release_snd_buf)(struct rpc_rqst *); - union { - struct list_head rq_list; - struct rb_node rq_recv; - }; - struct list_head rq_xmit; - struct list_head rq_xmit2; - void *rq_buffer; - size_t rq_callsize; - void *rq_rbuffer; - size_t rq_rcvsize; - size_t rq_xmit_bytes_sent; - size_t rq_reply_bytes_recvd; - struct xdr_buf rq_private_buf; - long unsigned int rq_majortimeo; - long unsigned int rq_minortimeo; - long unsigned int rq_timeout; - ktime_t rq_rtt; - unsigned int rq_retries; - unsigned int rq_connect_cookie; - atomic_t rq_pin; - u32 rq_bytes_sent; - ktime_t rq_xtime; - int rq_ntrans; - struct lwq_node rq_bc_list; - long unsigned int rq_bc_pa_state; - struct list_head rq_bc_pa_list; -}; - -typedef void (*kxdreproc_t)(struct rpc_rqst *, struct xdr_stream *, const void *); - -typedef int (*kxdrdproc_t)(struct rpc_rqst *, struct xdr_stream *, void *); - -struct rpc_procinfo; - -struct rpc_message { - const struct rpc_procinfo *rpc_proc; - void *rpc_argp; - void *rpc_resp; - const struct cred *rpc_cred; -}; - -struct rpc_procinfo { - u32 p_proc; - kxdreproc_t p_encode; - kxdrdproc_t p_decode; - unsigned int p_arglen; - unsigned int p_replen; - unsigned int p_timer; - u32 p_statidx; - const char *p_name; -}; - -struct rpc_wait { - struct list_head list; - struct list_head links; - struct list_head timer_list; -}; - -struct rpc_timeout { - long unsigned int to_initval; - long unsigned int to_maxval; - long unsigned int to_increment; - unsigned int to_retries; - unsigned char to_exponential; -}; - -struct rpc_wait_queue; - -struct rpc_call_ops; - -struct rpc_clnt; - -struct rpc_task { - atomic_t tk_count; - int tk_status; - struct list_head tk_task; - void (*tk_callback)(struct rpc_task *); - void (*tk_action)(struct rpc_task *); - long unsigned int tk_timeout; - long unsigned int tk_runstate; - struct rpc_wait_queue *tk_waitqueue; - union { - struct work_struct tk_work; - struct rpc_wait tk_wait; - } u; - struct rpc_message tk_msg; - void *tk_calldata; - const struct rpc_call_ops *tk_ops; - struct rpc_clnt *tk_client; - struct rpc_xprt *tk_xprt; - struct rpc_cred *tk_op_cred; - struct rpc_rqst *tk_rqstp; - struct workqueue_struct *tk_workqueue; - ktime_t tk_start; - pid_t tk_owner; - int tk_rpc_status; - short unsigned int tk_flags; - short unsigned int tk_timeouts; - short unsigned int tk_pid; - unsigned char tk_priority: 2; - unsigned char tk_garb_retry: 2; - unsigned char tk_cred_retry: 2; -}; - -struct rpc_timer { - struct list_head list; - long unsigned int expires; - struct delayed_work dwork; -}; - -struct rpc_wait_queue { - spinlock_t lock; - struct list_head tasks[4]; - unsigned char maxpriority; - unsigned char priority; - unsigned char nr; - unsigned int qlen; - struct rpc_timer timer_list; - const char *name; -}; - -struct rpc_call_ops { - void (*rpc_call_prepare)(struct rpc_task *, void *); - void (*rpc_call_done)(struct rpc_task *, void *); - void (*rpc_count_stats)(struct rpc_task *, void *); - void (*rpc_release)(void *); -}; - -enum xprtsec_policies { - RPC_XPRTSEC_NONE = 0, - RPC_XPRTSEC_TLS_ANON = 1, - RPC_XPRTSEC_TLS_X509 = 2, -}; - -struct xprtsec_parms { - enum xprtsec_policies policy; - key_serial_t cert_serial; - key_serial_t privkey_serial; -}; - -struct rpc_pipe_dir_head { - struct list_head pdh_entries; - struct dentry *pdh_dentry; -}; - -struct rpc_rtt { - long unsigned int timeo; - long unsigned int srtt[5]; - long unsigned int sdrtt[5]; - int ntimeouts[5]; -}; - -struct rpc_xprt_switch; - -struct rpc_xprt_iter_ops; - -struct rpc_xprt_iter { - struct rpc_xprt_switch *xpi_xpswitch; - struct rpc_xprt *xpi_cursor; - const struct rpc_xprt_iter_ops *xpi_ops; -}; - -struct rpc_auth; - -struct rpc_stat; - -struct rpc_iostats; - -struct rpc_program; - -struct rpc_sysfs_client; - -struct rpc_clnt { - refcount_t cl_count; - unsigned int cl_clid; - struct list_head cl_clients; - struct list_head cl_tasks; - atomic_t cl_pid; - spinlock_t cl_lock; - struct rpc_xprt *cl_xprt; - const struct rpc_procinfo *cl_procinfo; - u32 cl_prog; - u32 cl_vers; - u32 cl_maxproc; - struct rpc_auth *cl_auth; - struct rpc_stat *cl_stats; - struct rpc_iostats *cl_metrics; - unsigned int cl_softrtry: 1; - unsigned int cl_softerr: 1; - unsigned int cl_discrtry: 1; - unsigned int cl_noretranstimeo: 1; - unsigned int cl_autobind: 1; - unsigned int cl_chatty: 1; - unsigned int cl_shutdown: 1; - struct xprtsec_parms cl_xprtsec; - struct rpc_rtt *cl_rtt; - const struct rpc_timeout *cl_timeout; - atomic_t cl_swapper; - int cl_nodelen; - char cl_nodename[65]; - struct rpc_pipe_dir_head cl_pipedir_objects; - struct rpc_clnt *cl_parent; - struct rpc_rtt cl_rtt_default; - struct rpc_timeout cl_timeout_default; - const struct rpc_program *cl_program; - const char *cl_principal; - struct rpc_sysfs_client *cl_sysfs; - union { - struct rpc_xprt_iter cl_xpi; - struct work_struct cl_work; - }; - const struct cred *cl_cred; - unsigned int cl_max_connect; - struct super_block *pipefs_sb; -}; - -struct rpc_xprt_ops; - -struct svc_xprt; - -struct svc_serv; - -struct xprt_class; - -struct rpc_sysfs_xprt; - -struct rpc_xprt { - struct kref kref; - const struct rpc_xprt_ops *ops; - unsigned int id; - const struct rpc_timeout *timeout; - struct __kernel_sockaddr_storage addr; - size_t addrlen; - int prot; - long unsigned int cong; - long unsigned int cwnd; - size_t max_payload; - struct rpc_wait_queue binding; - struct rpc_wait_queue sending; - struct rpc_wait_queue pending; - struct rpc_wait_queue backlog; - struct list_head free; - unsigned int max_reqs; - unsigned int min_reqs; - unsigned int num_reqs; - long unsigned int state; - unsigned char resvport: 1; - unsigned char reuseport: 1; - atomic_t swapper; - unsigned int bind_index; - struct list_head xprt_switch; - long unsigned int bind_timeout; - long unsigned int reestablish_timeout; - struct xprtsec_parms xprtsec; - unsigned int connect_cookie; - struct work_struct task_cleanup; - struct timer_list timer; - long unsigned int last_used; - long unsigned int idle_timeout; - long unsigned int connect_timeout; - long unsigned int max_reconnect_timeout; - atomic_long_t queuelen; - spinlock_t transport_lock; - spinlock_t reserve_lock; - spinlock_t queue_lock; - u32 xid; - struct rpc_task *snd_task; - struct list_head xmit_queue; - atomic_long_t xmit_queuelen; - struct svc_xprt *bc_xprt; - struct svc_serv *bc_serv; - unsigned int bc_alloc_max; - unsigned int bc_alloc_count; - atomic_t bc_slot_count; - spinlock_t bc_pa_lock; - struct list_head bc_pa_list; - struct rb_root recv_queue; - struct { - long unsigned int bind_count; - long unsigned int connect_count; - long unsigned int connect_start; - long unsigned int connect_time; - long unsigned int sends; - long unsigned int recvs; - long unsigned int bad_xids; - long unsigned int max_slots; - long long unsigned int req_u; - long long unsigned int bklog_u; - long long unsigned int sending_u; - long long unsigned int pending_u; - } stat; - struct net *xprt_net; - netns_tracker ns_tracker; - const char *servername; - const char *address_strings[6]; - struct callback_head rcu; - const struct xprt_class *xprt_class; - struct rpc_sysfs_xprt *xprt_sysfs; - bool main; -}; - -struct rpc_credops; - -struct rpc_cred { - struct hlist_node cr_hash; - struct list_head cr_lru; - struct callback_head cr_rcu; - struct rpc_auth *cr_auth; - const struct rpc_credops *cr_ops; - long unsigned int cr_expire; - long unsigned int cr_flags; - refcount_t cr_count; - const struct cred *cr_cred; -}; - -struct rpc_task_setup { - struct rpc_task *task; - struct rpc_clnt *rpc_client; - struct rpc_xprt *rpc_xprt; - struct rpc_cred *rpc_op_cred; - const struct rpc_message *rpc_message; - const struct rpc_call_ops *callback_ops; - void *callback_data; - struct workqueue_struct *workqueue; - short unsigned int flags; - signed char priority; -}; - -struct lwq { - spinlock_t lock; - struct llist_node *ready; - struct llist_head new; -}; - -struct rpc_xprt_ops { - void (*set_buffer_size)(struct rpc_xprt *, size_t, size_t); - int (*reserve_xprt)(struct rpc_xprt *, struct rpc_task *); - void (*release_xprt)(struct rpc_xprt *, struct rpc_task *); - void (*alloc_slot)(struct rpc_xprt *, struct rpc_task *); - void (*free_slot)(struct rpc_xprt *, struct rpc_rqst *); - void (*rpcbind)(struct rpc_task *); - void (*set_port)(struct rpc_xprt *, short unsigned int); - void (*connect)(struct rpc_xprt *, struct rpc_task *); - int (*get_srcaddr)(struct rpc_xprt *, char *, size_t); - short unsigned int (*get_srcport)(struct rpc_xprt *); - int (*buf_alloc)(struct rpc_task *); - void (*buf_free)(struct rpc_task *); - int (*prepare_request)(struct rpc_rqst *, struct xdr_buf *); - int (*send_request)(struct rpc_rqst *); - void (*abort_send_request)(struct rpc_rqst *); - void (*wait_for_reply_request)(struct rpc_task *); - void (*timer)(struct rpc_xprt *, struct rpc_task *); - void (*release_request)(struct rpc_task *); - void (*close)(struct rpc_xprt *); - void (*destroy)(struct rpc_xprt *); - void (*set_connect_timeout)(struct rpc_xprt *, long unsigned int, long unsigned int); - void (*print_stats)(struct rpc_xprt *, struct seq_file *); - int (*enable_swap)(struct rpc_xprt *); - void (*disable_swap)(struct rpc_xprt *); - void (*inject_disconnect)(struct rpc_xprt *); - int (*bc_setup)(struct rpc_xprt *, unsigned int); - size_t (*bc_maxpayload)(struct rpc_xprt *); - unsigned int (*bc_num_slots)(struct rpc_xprt *); - void (*bc_free_rqst)(struct rpc_rqst *); - void (*bc_destroy)(struct rpc_xprt *, unsigned int); -}; - -enum xprt_transports { - XPRT_TRANSPORT_UDP = 17, - XPRT_TRANSPORT_TCP = 6, - XPRT_TRANSPORT_BC_TCP = -2147483642, - XPRT_TRANSPORT_RDMA = 256, - XPRT_TRANSPORT_BC_RDMA = -2147483392, - XPRT_TRANSPORT_LOCAL = 257, - XPRT_TRANSPORT_TCP_TLS = 258, -}; - -struct svc_program; - -struct svc_stat; - -struct svc_pool; - -struct svc_serv { - struct svc_program *sv_programs; - struct svc_stat *sv_stats; - spinlock_t sv_lock; - unsigned int sv_nprogs; - unsigned int sv_nrthreads; - unsigned int sv_maxconn; - unsigned int sv_max_payload; - unsigned int sv_max_mesg; - unsigned int sv_xdrsize; - struct list_head sv_permsocks; - struct list_head sv_tempsocks; - int sv_tmpcnt; - struct timer_list sv_temptimer; - char *sv_name; - unsigned int sv_nrpools; - bool sv_is_pooled; - struct svc_pool *sv_pools; - int (*sv_threadfn)(void *); - struct lwq sv_cb_list; - bool sv_bc_enabled; -}; - -struct xprt_create; - -struct xprt_class { - struct list_head list; - int ident; - struct rpc_xprt * (*setup)(struct xprt_create *); - struct module *owner; - char name[32]; - const char *netid[0]; -}; - -struct xprt_create { - int ident; - struct net *net; - struct sockaddr *srcaddr; - struct sockaddr *dstaddr; - size_t addrlen; - const char *servername; - struct svc_xprt *bc_xprt; - struct rpc_xprt_switch *bc_xps; - unsigned int flags; - struct xprtsec_parms xprtsec; - long unsigned int connect_timeout; - long unsigned int reconnect_timeout; -}; - -struct rpc_sysfs_xprt_switch; - -struct rpc_xprt_switch { - spinlock_t xps_lock; - struct kref xps_kref; - unsigned int xps_id; - unsigned int xps_nxprts; - unsigned int xps_nactive; - unsigned int xps_nunique_destaddr_xprts; - atomic_long_t xps_queuelen; - struct list_head xps_xprt_list; - struct net *xps_net; - const struct rpc_xprt_iter_ops *xps_iter_ops; - struct rpc_sysfs_xprt_switch *xps_sysfs; - struct callback_head xps_rcu; -}; - -struct auth_cred { - const struct cred *cred; - const char *principal; -}; - -struct rpc_authops; - -struct rpc_cred_cache; - -struct rpc_auth { - unsigned int au_cslack; - unsigned int au_rslack; - unsigned int au_verfsize; - unsigned int au_ralign; - long unsigned int au_flags; - const struct rpc_authops *au_ops; - rpc_authflavor_t au_flavor; - refcount_t au_count; - struct rpc_cred_cache *au_credcache; -}; - -struct rpc_credops { - const char *cr_name; - int (*cr_init)(struct rpc_auth *, struct rpc_cred *); - void (*crdestroy)(struct rpc_cred *); - int (*crmatch)(struct auth_cred *, struct rpc_cred *, int); - int (*crmarshal)(struct rpc_task *, struct xdr_stream *); - int (*crrefresh)(struct rpc_task *); - int (*crvalidate)(struct rpc_task *, struct xdr_stream *); - int (*crwrap_req)(struct rpc_task *, struct xdr_stream *); - int (*crunwrap_resp)(struct rpc_task *, struct xdr_stream *); - int (*crkey_timeout)(struct rpc_cred *); - char * (*crstringify_acceptor)(struct rpc_cred *); - bool (*crneed_reencode)(struct rpc_task *); -}; - -struct rpc_auth_create_args; - -struct rpcsec_gss_info; - -struct rpc_authops { - struct module *owner; - rpc_authflavor_t au_flavor; - char *au_name; - struct rpc_auth * (*create)(const struct rpc_auth_create_args *, struct rpc_clnt *); - void (*destroy)(struct rpc_auth *); - int (*hash_cred)(struct auth_cred *, unsigned int); - struct rpc_cred * (*lookup_cred)(struct rpc_auth *, struct auth_cred *, int); - struct rpc_cred * (*crcreate)(struct rpc_auth *, struct auth_cred *, int, gfp_t); - rpc_authflavor_t (*info2flavor)(struct rpcsec_gss_info *); - int (*flavor2info)(rpc_authflavor_t, struct rpcsec_gss_info *); - int (*key_timeout)(struct rpc_auth *, struct rpc_cred *); - int (*ping)(struct rpc_clnt *); -}; - -struct rpc_auth_create_args { - rpc_authflavor_t pseudoflavor; - const char *target_name; -}; - -struct rpcsec_gss_oid { - unsigned int len; - u8 data[32]; -}; - -struct rpcsec_gss_info { - struct rpcsec_gss_oid oid; - u32 qop; - u32 service; -}; - -struct rpc_stat { - const struct rpc_program *program; - unsigned int netcnt; - unsigned int netudpcnt; - unsigned int nettcpcnt; - unsigned int nettcpconn; - unsigned int netreconn; - unsigned int rpccnt; - unsigned int rpcretrans; - unsigned int rpcauthrefresh; - unsigned int rpcgarbage; -}; - -struct rpc_version; - -struct rpc_program { - const char *name; - u32 number; - unsigned int nrvers; - const struct rpc_version **version; - struct rpc_stat *stats; - const char *pipe_dir_name; -}; - -struct svc_stat { - struct svc_program *program; - unsigned int netcnt; - unsigned int netudpcnt; - unsigned int nettcpcnt; - unsigned int nettcpconn; - unsigned int rpccnt; - unsigned int rpcbadfmt; - unsigned int rpcbadauth; - unsigned int rpcbadclnt; -}; - -enum svc_auth_status { - SVC_GARBAGE = 1, - SVC_SYSERR = 2, - SVC_VALID = 3, - SVC_NEGATIVE = 4, - SVC_OK = 5, - SVC_DROP = 6, - SVC_CLOSE = 7, - SVC_DENIED = 8, - SVC_PENDING = 9, - SVC_COMPLETE = 10, -}; - -struct svc_version; - -struct svc_rqst; - -struct svc_process_info; - -struct svc_program { - u32 pg_prog; - unsigned int pg_lovers; - unsigned int pg_hivers; - unsigned int pg_nvers; - const struct svc_version **pg_vers; - char *pg_name; - char *pg_class; - enum svc_auth_status (*pg_authenticate)(struct svc_rqst *); - __be32 (*pg_init_request)(struct svc_rqst *, const struct svc_program *, struct svc_process_info *); - int (*pg_rpcbind_set)(struct net *, const struct svc_program *, u32, int, short unsigned int, short unsigned int); -}; - -struct rpc_xprt_iter_ops { - void (*xpi_rewind)(struct rpc_xprt_iter *); - struct rpc_xprt * (*xpi_xprt)(struct rpc_xprt_iter *); - struct rpc_xprt * (*xpi_next)(struct rpc_xprt_iter *); -}; - -struct rpc_sysfs_client { - struct kobject kobject; - struct net *net; - struct rpc_clnt *clnt; - struct rpc_xprt_switch *xprt_switch; -}; - -struct rpc_iostats { - spinlock_t om_lock; - long unsigned int om_ops; - long unsigned int om_ntrans; - long unsigned int om_timeouts; - long long unsigned int om_bytes_sent; - long long unsigned int om_bytes_recv; - ktime_t om_queue; - ktime_t om_rtt; - ktime_t om_execute; - long unsigned int om_error_status; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct rpc_version { - u32 number; - unsigned int nrprocs; - const struct rpc_procinfo *procs; - unsigned int *counts; -}; - -struct nfs_fh { - short unsigned int size; - unsigned char data[128]; -}; - -enum nfs3_stable_how { - NFS_UNSTABLE = 0, - NFS_DATA_SYNC = 1, - NFS_FILE_SYNC = 2, - NFS_INVALID_STABLE_HOW = -1, -}; - -struct nfs4_label { - uint32_t lfs; - uint32_t pi; - u32 len; - char *label; -}; - -typedef struct { - char data[8]; -} nfs4_verifier; - -struct nfs4_stateid_struct { - union { - char data[16]; - struct { - __be32 seqid; - char other[12]; - }; - }; - enum { - NFS4_INVALID_STATEID_TYPE = 0, - NFS4_SPECIAL_STATEID_TYPE = 1, - NFS4_OPEN_STATEID_TYPE = 2, - NFS4_LOCK_STATEID_TYPE = 3, - NFS4_DELEGATION_STATEID_TYPE = 4, - NFS4_LAYOUT_STATEID_TYPE = 5, - NFS4_PNFS_DS_STATEID_TYPE = 6, - NFS4_REVOKED_STATEID_TYPE = 7, - } type; -}; - -typedef struct nfs4_stateid_struct nfs4_stateid; - -struct nfs4_sessionid { - unsigned char data[16]; -}; - -enum pnfs_iomode { - IOMODE_READ = 1, - IOMODE_RW = 2, - IOMODE_ANY = 3, -}; - -struct nfs4_deviceid { - char data[16]; -}; - -enum nfs4_change_attr_type { - NFS4_CHANGE_TYPE_IS_MONOTONIC_INCR = 0, - NFS4_CHANGE_TYPE_IS_VERSION_COUNTER = 1, - NFS4_CHANGE_TYPE_IS_VERSION_COUNTER_NOPNFS = 2, - NFS4_CHANGE_TYPE_IS_TIME_METADATA = 3, - NFS4_CHANGE_TYPE_IS_UNDEFINED = 4, -}; - -struct gss_api_mech; - -struct gss_ctx { - struct gss_api_mech *mech_type; - void *internal_ctx_id; - unsigned int slack; - unsigned int align; -}; - -struct gss_api_ops; - -struct pf_desc; - -struct gss_api_mech { - struct list_head gm_list; - struct module *gm_owner; - struct rpcsec_gss_oid gm_oid; - char *gm_name; - const struct gss_api_ops *gm_ops; - int gm_pf_num; - struct pf_desc *gm_pfs; - const char *gm_upcall_enctypes; -}; - -struct auth_domain; - -struct pf_desc { - u32 pseudoflavor; - u32 qop; - u32 service; - char *name; - char *auth_domain_name; - struct auth_domain *domain; - bool datatouch; -}; - -struct auth_ops; - -struct auth_domain { - struct kref ref; - struct hlist_node hash; - char *name; - struct auth_ops *flavour; - struct callback_head callback_head; -}; - -struct gss_api_ops { - int (*gss_import_sec_context)(const void *, size_t, struct gss_ctx *, time64_t *, gfp_t); - u32 (*gss_get_mic)(struct gss_ctx *, struct xdr_buf *, struct xdr_netobj *); - u32 (*gss_verify_mic)(struct gss_ctx *, struct xdr_buf *, struct xdr_netobj *); - u32 (*gss_wrap)(struct gss_ctx *, int, struct xdr_buf *, struct page **); - u32 (*gss_unwrap)(struct gss_ctx *, int, int, struct xdr_buf *); - void (*gss_delete_sec_context)(void *); -}; - -struct nfs4_string { - unsigned int len; - char *data; -}; - -struct nfs_fsid { - uint64_t major; - uint64_t minor; -}; - -struct nfs4_threshold { - __u32 bm; - __u32 l_type; - __u64 rd_sz; - __u64 wr_sz; - __u64 rd_io_sz; - __u64 wr_io_sz; -}; - -struct nfs_fattr { - unsigned int valid; - umode_t mode; - __u32 nlink; - kuid_t uid; - kgid_t gid; - dev_t rdev; - __u64 size; - union { - struct { - __u32 blocksize; - __u32 blocks; - } nfs2; - struct { - __u64 used; - } nfs3; - } du; - struct nfs_fsid fsid; - __u64 fileid; - __u64 mounted_on_fileid; - struct timespec64 atime; - struct timespec64 mtime; - struct timespec64 ctime; - __u64 change_attr; - __u64 pre_change_attr; - __u64 pre_size; - struct timespec64 pre_mtime; - struct timespec64 pre_ctime; - long unsigned int time_start; - long unsigned int gencount; - struct nfs4_string *owner_name; - struct nfs4_string *group_name; - struct nfs4_threshold *mdsthreshold; - struct nfs4_label *label; -}; - -struct nfs_fsinfo { - struct nfs_fattr *fattr; - __u32 rtmax; - __u32 rtpref; - __u32 rtmult; - __u32 wtmax; - __u32 wtpref; - __u32 wtmult; - __u32 dtpref; - __u64 maxfilesize; - struct timespec64 time_delta; - __u32 lease_time; - __u32 nlayouttypes; - __u32 layouttype[8]; - __u32 blksize; - __u32 clone_blksize; - enum nfs4_change_attr_type change_attr_type; - __u32 xattr_support; -}; - -struct nfs_fsstat { - struct nfs_fattr *fattr; - __u64 tbytes; - __u64 fbytes; - __u64 abytes; - __u64 tfiles; - __u64 ffiles; - __u64 afiles; -}; - -struct nfs_pathconf { - struct nfs_fattr *fattr; - __u32 max_link; - __u32 max_namelen; -}; - -struct nfs4_change_info { - u32 atomic; - u64 before; - u64 after; -}; - -struct nfs4_channel_attrs { - u32 max_rqst_sz; - u32 max_resp_sz; - u32 max_resp_sz_cached; - u32 max_ops; - u32 max_reqs; -}; - -struct nfs4_slot; - -struct nfs4_sequence_args { - struct nfs4_slot *sa_slot; - u8 sa_cache_this: 1; - u8 sa_privileged: 1; -}; - -struct nfs4_slot_table; - -struct nfs4_slot { - struct nfs4_slot_table *table; - struct nfs4_slot *next; - long unsigned int generation; - u32 slot_nr; - u32 seq_nr; - u32 seq_nr_last_acked; - u32 seq_nr_highest_sent; - unsigned int privileged: 1; - unsigned int seq_done: 1; -}; - -struct nfs4_sequence_res { - struct nfs4_slot *sr_slot; - long unsigned int sr_timestamp; - int sr_status; - u32 sr_status_flags; - u32 sr_highest_slotid; - u32 sr_target_highest_slotid; -}; - -struct nfs4_xdr_opaque_data; - -struct nfs4_xdr_opaque_ops { - void (*encode)(struct xdr_stream *, const void *, const struct nfs4_xdr_opaque_data *); - void (*free)(struct nfs4_xdr_opaque_data *); -}; - -struct nfs4_xdr_opaque_data { - const struct nfs4_xdr_opaque_ops *ops; - void *data; -}; - -struct nfs4_layoutdriver_data { - struct page **pages; - __u32 pglen; - __u32 len; -}; - -struct pnfs_layout_range { - u32 iomode; - u64 offset; - u64 length; -}; - -struct nfs_open_context; - -struct nfs_lock_context { - refcount_t count; - struct list_head list; - struct nfs_open_context *open_context; - fl_owner_t lockowner; - atomic_t io_count; - struct callback_head callback_head; -}; - -struct nfs4_state; - -struct nfs_open_context { - struct nfs_lock_context lock_context; - fl_owner_t flock_owner; - struct dentry *dentry; - const struct cred *cred; - struct rpc_cred *ll_cred; - struct nfs4_state *state; - fmode_t mode; - long unsigned int flags; - int error; - struct list_head list; - struct nfs4_threshold *mdsthreshold; - struct callback_head callback_head; -}; - -struct nfs4_layoutget_res { - struct nfs4_sequence_res seq_res; - int status; - __u32 return_on_close; - struct pnfs_layout_range range; - __u32 type; - nfs4_stateid stateid; - struct nfs4_layoutdriver_data *layoutp; -}; - -struct pnfs_layout_hdr { - refcount_t plh_refcount; - atomic_t plh_outstanding; - struct list_head plh_layouts; - struct list_head plh_bulk_destroy; - struct list_head plh_segs; - struct list_head plh_return_segs; - long unsigned int plh_block_lgets; - long unsigned int plh_retry_timestamp; - long unsigned int plh_flags; - nfs4_stateid plh_stateid; - u32 plh_barrier; - u32 plh_return_seq; - enum pnfs_iomode plh_return_iomode; - loff_t plh_lwb; - const struct cred *plh_lc_cred; - struct inode *plh_inode; - struct callback_head plh_rcu; -}; - -struct pnfs_device { - struct nfs4_deviceid dev_id; - unsigned int layout_type; - unsigned int mincount; - unsigned int maxcount; - struct page **pages; - unsigned int pgbase; - unsigned int pglen; - unsigned char nocache: 1; -}; - -struct nfs4_layoutcommit_args { - struct nfs4_sequence_args seq_args; - nfs4_stateid stateid; - __u64 lastbytewritten; - struct inode *inode; - const u32 *bitmask; - size_t layoutupdate_len; - struct page *layoutupdate_page; - struct page **layoutupdate_pages; - __be32 *start_p; -}; - -struct nfs_server; - -struct nfs4_layoutcommit_res { - struct nfs4_sequence_res seq_res; - struct nfs_fattr *fattr; - const struct nfs_server *server; - int status; -}; - -struct nfs_auth_info { - unsigned int flavor_len; - rpc_authflavor_t flavors[12]; -}; - -struct nfs_client; - -struct nlm_host; - -struct nfs_iostats; - -struct pnfs_layoutdriver_type; - -struct nfs_server { - struct nfs_client *nfs_client; - struct list_head client_link; - struct list_head master_link; - struct rpc_clnt *client; - struct rpc_clnt *client_acl; - struct nlm_host *nlm_host; - struct nfs_iostats *io_stats; - wait_queue_head_t write_congestion_wait; - atomic_long_t writeback; - unsigned int write_congested; - unsigned int flags; - unsigned int fattr_valid; - unsigned int caps; - unsigned int rsize; - unsigned int rpages; - unsigned int wsize; - unsigned int wpages; - unsigned int wtmult; - unsigned int dtsize; - short unsigned int port; - unsigned int bsize; - unsigned int gxasize; - unsigned int sxasize; - unsigned int lxasize; - unsigned int acregmin; - unsigned int acregmax; - unsigned int acdirmin; - unsigned int acdirmax; - unsigned int namelen; - unsigned int options; - unsigned int clone_blksize; - enum nfs4_change_attr_type change_attr_type; - struct nfs_fsid fsid; - int s_sysfs_id; - __u64 maxfilesize; - struct timespec64 time_delta; - long unsigned int mount_time; - struct super_block *super; - dev_t s_dev; - struct nfs_auth_info auth_info; - struct fscache_volume *fscache; - char *fscache_uniq; - u32 fh_expire_type; - u32 pnfs_blksize; - u32 attr_bitmask[3]; - u32 attr_bitmask_nl[3]; - u32 exclcreat_bitmask[3]; - u32 cache_consistency_bitmask[3]; - u32 acl_bitmask; - struct pnfs_layoutdriver_type *pnfs_curr_ld; - struct rpc_wait_queue roc_rpcwaitq; - void *pnfs_ld_data; - struct rb_root state_owners; - atomic64_t owner_ctr; - struct list_head state_owners_lru; - struct list_head layouts; - struct list_head delegations; - struct list_head ss_copies; - struct list_head ss_src_copies; - long unsigned int delegation_flags; - long unsigned int delegation_gen; - long unsigned int mig_gen; - long unsigned int mig_status; - void (*destroy)(struct nfs_server *); - atomic_t active; - struct __kernel_sockaddr_storage mountd_address; - size_t mountd_addrlen; - u32 mountd_version; - short unsigned int mountd_port; - short unsigned int mountd_protocol; - struct rpc_wait_queue uoc_rpcwaitq; - unsigned int read_hdrsize; - const struct cred *cred; - bool has_sec_mnt_opts; - struct kobject kobj; - struct callback_head rcu; -}; - -struct nfs4_layoutcommit_data { - struct rpc_task task; - struct nfs_fattr fattr; - struct list_head lseg_list; - const struct cred *cred; - struct inode *inode; - struct nfs4_layoutcommit_args args; - struct nfs4_layoutcommit_res res; -}; - -struct nfs4_layoutreturn_args { - struct nfs4_sequence_args seq_args; - struct pnfs_layout_hdr *layout; - struct inode *inode; - struct pnfs_layout_range range; - nfs4_stateid stateid; - __u32 layout_type; - struct nfs4_xdr_opaque_data *ld_private; -}; - -struct nfs_rpc_ops; - -struct nfs_subversion; - -struct idmap; - -struct nfs4_minor_version_ops; - -struct nfs4_session; - -struct nfs41_server_owner; - -struct nfs41_server_scope; - -struct nfs41_impl_id; - -struct nfs_client { - refcount_t cl_count; - atomic_t cl_mds_count; - int cl_cons_state; - long unsigned int cl_res_state; - long unsigned int cl_flags; - struct __kernel_sockaddr_storage cl_addr; - size_t cl_addrlen; - char *cl_hostname; - char *cl_acceptor; - struct list_head cl_share_link; - struct list_head cl_superblocks; - struct rpc_clnt *cl_rpcclient; - const struct nfs_rpc_ops *rpc_ops; - int cl_proto; - struct nfs_subversion *cl_nfs_mod; - u32 cl_minorversion; - unsigned int cl_nconnect; - unsigned int cl_max_connect; - const char *cl_principal; - struct xprtsec_parms cl_xprtsec; - struct list_head cl_ds_clients; - u64 cl_clientid; - nfs4_verifier cl_confirm; - long unsigned int cl_state; - spinlock_t cl_lock; - long unsigned int cl_lease_time; - long unsigned int cl_last_renewal; - struct delayed_work cl_renewd; - struct rpc_wait_queue cl_rpcwaitq; - struct idmap *cl_idmap; - const char *cl_owner_id; - u32 cl_cb_ident; - const struct nfs4_minor_version_ops *cl_mvops; - long unsigned int cl_mig_gen; - struct nfs4_slot_table *cl_slot_tbl; - u32 cl_seqid; - u32 cl_exchange_flags; - struct nfs4_session *cl_session; - bool cl_preserve_clid; - struct nfs41_server_owner *cl_serverowner; - struct nfs41_server_scope *cl_serverscope; - struct nfs41_impl_id *cl_implid; - long unsigned int cl_sp4_flags; - wait_queue_head_t cl_lock_waitq; - char cl_ipaddr[48]; - struct net *cl_net; - struct list_head pending_cb_stateids; - struct callback_head rcu; -}; - -struct nfs42_layoutstat_devinfo; - -struct nfs42_layoutstat_args { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fh; - struct inode *inode; - nfs4_stateid stateid; - int num_dev; - struct nfs42_layoutstat_devinfo *devinfo; -}; - -struct nfs42_layoutstat_devinfo { - struct nfs4_deviceid dev_id; - __u64 offset; - __u64 length; - __u64 read_count; - __u64 read_bytes; - __u64 write_count; - __u64 write_bytes; - __u32 layout_type; - struct nfs4_xdr_opaque_data ld_private; -}; - -struct pnfs_layout_segment { - struct list_head pls_list; - struct list_head pls_lc_list; - struct list_head pls_commits; - struct pnfs_layout_range pls_range; - refcount_t pls_refcount; - u32 pls_seq; - long unsigned int pls_flags; - struct pnfs_layout_hdr *pls_layout; -}; - -struct nfs_seqid_counter; - -struct nfs_seqid { - struct nfs_seqid_counter *sequence; - struct list_head list; - struct rpc_task *task; -}; - -struct nfs_write_verifier { - char data[8]; -}; - -struct nfs_writeverf { - struct nfs_write_verifier verifier; - enum nfs3_stable_how committed; -}; - -struct nfs_pgio_args { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fh; - struct nfs_open_context *context; - struct nfs_lock_context *lock_context; - nfs4_stateid stateid; - __u64 offset; - __u32 count; - unsigned int pgbase; - struct page **pages; - union { - unsigned int replen; - struct { - const u32 *bitmask; - u32 bitmask_store[3]; - enum nfs3_stable_how stable; - }; - }; -}; - -struct nfs_pgio_res { - struct nfs4_sequence_res seq_res; - struct nfs_fattr *fattr; - __u64 count; - __u32 op_status; - union { - struct { - unsigned int replen; - int eof; - void *scratch; - }; - struct { - struct nfs_writeverf *verf; - const struct nfs_server *server; - }; - }; -}; - -struct nfs_commitargs { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fh; - __u64 offset; - __u32 count; - const u32 *bitmask; -}; - -struct nfs_commitres { - struct nfs4_sequence_res seq_res; - __u32 op_status; - struct nfs_fattr *fattr; - struct nfs_writeverf *verf; - const struct nfs_server *server; -}; - -struct nfs_removeargs { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *fh; - struct qstr name; -}; - -struct nfs_removeres { - struct nfs4_sequence_res seq_res; - struct nfs_server *server; - struct nfs_fattr *dir_attr; - struct nfs4_change_info cinfo; -}; - -struct nfs_renameargs { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *old_dir; - const struct nfs_fh *new_dir; - const struct qstr *old_name; - const struct qstr *new_name; -}; - -struct nfs_renameres { - struct nfs4_sequence_res seq_res; - struct nfs_server *server; - struct nfs4_change_info old_cinfo; - struct nfs_fattr *old_fattr; - struct nfs4_change_info new_cinfo; - struct nfs_fattr *new_fattr; -}; - -struct nfs_entry { - __u64 ino; - __u64 cookie; - const char *name; - unsigned int len; - int eof; - struct nfs_fh *fh; - struct nfs_fattr *fattr; - unsigned char d_type; - struct nfs_server *server; -}; - -struct nfs_readdir_arg { - struct dentry *dentry; - const struct cred *cred; - __be32 *verf; - u64 cookie; - struct page **pages; - unsigned int page_len; - bool plus; -}; - -struct nfs_readdir_res { - __be32 *verf; -}; - -struct nfs4_pathname { - unsigned int ncomponents; - struct nfs4_string components[512]; -}; - -struct nfs4_fs_location { - unsigned int nservers; - struct nfs4_string servers[10]; - struct nfs4_pathname rootpath; -}; - -struct nfs4_fs_locations { - struct nfs_fattr *fattr; - const struct nfs_server *server; - struct nfs4_pathname fs_path; - int nlocations; - struct nfs4_fs_location locations[10]; -}; - -struct nfstime4 { - u64 seconds; - u32 nseconds; -}; - -struct pnfs_commit_ops; - -struct pnfs_ds_commit_info { - struct list_head commits; - unsigned int nwritten; - unsigned int ncommitting; - const struct pnfs_commit_ops *ops; -}; - -struct nfs_commit_info; - -struct nfs_page; - -struct pnfs_commit_ops { - void (*setup_ds_info)(struct pnfs_ds_commit_info *, struct pnfs_layout_segment *); - void (*release_ds_info)(struct pnfs_ds_commit_info *, struct inode *); - int (*commit_pagelist)(struct inode *, struct list_head *, int, struct nfs_commit_info *); - void (*mark_request_commit)(struct nfs_page *, struct pnfs_layout_segment *, struct nfs_commit_info *, u32); - void (*clear_request_commit)(struct nfs_page *, struct nfs_commit_info *); - int (*scan_commit_lists)(struct nfs_commit_info *, int); - void (*recover_commit_reqs)(struct list_head *, struct nfs_commit_info *); -}; - -struct nfs41_server_owner { - uint64_t minor_id; - uint32_t major_id_sz; - char major_id[1024]; -}; - -struct nfs41_server_scope { - uint32_t server_scope_sz; - char server_scope[1024]; -}; - -struct nfs41_impl_id { - char domain[1025]; - char name[1025]; - struct nfstime4 date; -}; - -struct nfs_page_array { - struct page **pagevec; - unsigned int npages; - struct page *page_array[8]; -}; - -struct nfs_pgio_completion_ops; - -struct nfs_rw_ops; - -struct nfs_io_completion; - -struct nfs_direct_req; - -struct nfs_pgio_header { - struct inode *inode; - const struct cred *cred; - struct list_head pages; - struct nfs_page *req; - struct nfs_writeverf verf; - fmode_t rw_mode; - struct pnfs_layout_segment *lseg; - loff_t io_start; - const struct rpc_call_ops *mds_ops; - void (*release)(struct nfs_pgio_header *); - const struct nfs_pgio_completion_ops *completion_ops; - const struct nfs_rw_ops *rw_ops; - struct nfs_io_completion *io_completion; - struct nfs_direct_req *dreq; - void *netfs; - int pnfs_error; - int error; - unsigned int good_bytes; - long unsigned int flags; - struct rpc_task task; - struct nfs_fattr fattr; - struct nfs_pgio_args args; - struct nfs_pgio_res res; - long unsigned int timestamp; - int (*pgio_done_cb)(struct rpc_task *, struct nfs_pgio_header *); - __u64 mds_offset; - struct nfs_page_array page_array; - struct nfs_client *ds_clp; - u32 ds_commit_idx; - u32 pgio_mirror_idx; -}; - -struct nfs_page { - struct list_head wb_list; - union { - struct page *wb_page; - struct folio *wb_folio; - }; - struct nfs_lock_context *wb_lock_context; - long unsigned int wb_index; - unsigned int wb_offset; - unsigned int wb_pgbase; - unsigned int wb_bytes; - struct kref wb_kref; - long unsigned int wb_flags; - struct nfs_write_verifier wb_verf; - struct nfs_page *wb_this_page; - struct nfs_page *wb_head; - short unsigned int wb_nio; -}; - -struct nfs_pgio_completion_ops { - void (*error_cleanup)(struct list_head *, int); - void (*init_hdr)(struct nfs_pgio_header *); - void (*completion)(struct nfs_pgio_header *); - void (*reschedule_io)(struct nfs_pgio_header *); -}; - -struct nfs_rw_ops { - struct nfs_pgio_header * (*rw_alloc_header)(void); - void (*rw_free_header)(struct nfs_pgio_header *); - int (*rw_done)(struct rpc_task *, struct nfs_pgio_header *, struct inode *); - void (*rw_result)(struct rpc_task *, struct nfs_pgio_header *); - void (*rw_initiate)(struct nfs_pgio_header *, struct rpc_message *, const struct nfs_rpc_ops *, struct rpc_task_setup *, int); -}; - -struct nfs_mds_commit_info { - atomic_t rpcs_out; - atomic_long_t ncommit; - struct list_head list; -}; - -struct nfs_direct_req { - struct kref kref; - struct nfs_open_context *ctx; - struct nfs_lock_context *l_ctx; - struct kiocb *iocb; - struct inode *inode; - atomic_t io_count; - spinlock_t lock; - loff_t io_start; - ssize_t count; - ssize_t max_count; - ssize_t error; - struct completion completion; - struct nfs_mds_commit_info mds_cinfo; - struct pnfs_ds_commit_info ds_cinfo; - struct work_struct work; - int flags; -}; - -struct nfs_commit_data; - -struct nfs_commit_completion_ops { - void (*completion)(struct nfs_commit_data *); - void (*resched_write)(struct nfs_commit_info *, struct nfs_page *); -}; - -struct nfs_commit_data { - struct rpc_task task; - struct inode *inode; - const struct cred *cred; - struct nfs_fattr fattr; - struct nfs_writeverf verf; - struct list_head pages; - struct list_head list; - struct nfs_direct_req *dreq; - struct nfs_commitargs args; - struct nfs_commitres res; - struct nfs_open_context *context; - struct pnfs_layout_segment *lseg; - struct nfs_client *ds_clp; - int ds_commit_index; - loff_t lwb; - const struct rpc_call_ops *mds_ops; - const struct nfs_commit_completion_ops *completion_ops; - int (*commit_done_cb)(struct rpc_task *, struct nfs_commit_data *); - long unsigned int flags; -}; - -struct nfs_commit_info { - struct inode *inode; - struct nfs_mds_commit_info *mds; - struct pnfs_ds_commit_info *ds; - struct nfs_direct_req *dreq; - const struct nfs_commit_completion_ops *completion_ops; -}; - -struct nfs_unlinkdata { - struct nfs_removeargs args; - struct nfs_removeres res; - struct dentry *dentry; - wait_queue_head_t wq; - const struct cred *cred; - struct nfs_fattr dir_attr; - long int timeout; -}; - -struct nfs_renamedata { - struct nfs_renameargs args; - struct nfs_renameres res; - struct rpc_task task; - const struct cred *cred; - struct inode *old_dir; - struct dentry *old_dentry; - struct nfs_fattr old_fattr; - struct inode *new_dir; - struct dentry *new_dentry; - struct nfs_fattr new_fattr; - void (*complete)(struct rpc_task *, struct nfs_renamedata *); - long int timeout; - bool cancelled; -}; - -struct nlmclnt_operations; - -struct nfs_access_entry; - -struct nfs_client_initdata; - -struct nfs_rpc_ops { - u32 version; - const struct dentry_operations *dentry_ops; - const struct inode_operations *dir_inode_ops; - const struct inode_operations *file_inode_ops; - const struct file_operations *file_ops; - const struct nlmclnt_operations *nlmclnt_ops; - int (*getroot)(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); - int (*submount)(struct fs_context *, struct nfs_server *); - int (*try_get_tree)(struct fs_context *); - int (*getattr)(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *, struct inode *); - int (*setattr)(struct dentry *, struct nfs_fattr *, struct iattr *); - int (*lookup)(struct inode *, struct dentry *, struct nfs_fh *, struct nfs_fattr *); - int (*lookupp)(struct inode *, struct nfs_fh *, struct nfs_fattr *); - int (*access)(struct inode *, struct nfs_access_entry *, const struct cred *); - int (*readlink)(struct inode *, struct page *, unsigned int, unsigned int); - int (*create)(struct inode *, struct dentry *, struct iattr *, int); - int (*remove)(struct inode *, struct dentry *); - void (*unlink_setup)(struct rpc_message *, struct dentry *, struct inode *); - void (*unlink_rpc_prepare)(struct rpc_task *, struct nfs_unlinkdata *); - int (*unlink_done)(struct rpc_task *, struct inode *); - void (*rename_setup)(struct rpc_message *, struct dentry *, struct dentry *); - void (*rename_rpc_prepare)(struct rpc_task *, struct nfs_renamedata *); - int (*rename_done)(struct rpc_task *, struct inode *, struct inode *); - int (*link)(struct inode *, struct inode *, const struct qstr *); - int (*symlink)(struct inode *, struct dentry *, struct folio *, unsigned int, struct iattr *); - int (*mkdir)(struct inode *, struct dentry *, struct iattr *); - int (*rmdir)(struct inode *, const struct qstr *); - int (*readdir)(struct nfs_readdir_arg *, struct nfs_readdir_res *); - int (*mknod)(struct inode *, struct dentry *, struct iattr *, dev_t); - int (*statfs)(struct nfs_server *, struct nfs_fh *, struct nfs_fsstat *); - int (*fsinfo)(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); - int (*pathconf)(struct nfs_server *, struct nfs_fh *, struct nfs_pathconf *); - int (*set_capabilities)(struct nfs_server *, struct nfs_fh *); - int (*decode_dirent)(struct xdr_stream *, struct nfs_entry *, bool); - int (*pgio_rpc_prepare)(struct rpc_task *, struct nfs_pgio_header *); - void (*read_setup)(struct nfs_pgio_header *, struct rpc_message *); - int (*read_done)(struct rpc_task *, struct nfs_pgio_header *); - void (*write_setup)(struct nfs_pgio_header *, struct rpc_message *, struct rpc_clnt **); - int (*write_done)(struct rpc_task *, struct nfs_pgio_header *); - void (*commit_setup)(struct nfs_commit_data *, struct rpc_message *, struct rpc_clnt **); - void (*commit_rpc_prepare)(struct rpc_task *, struct nfs_commit_data *); - int (*commit_done)(struct rpc_task *, struct nfs_commit_data *); - int (*lock)(struct file *, int, struct file_lock *); - int (*lock_check_bounds)(const struct file_lock *); - void (*clear_acl_cache)(struct inode *); - void (*close_context)(struct nfs_open_context *, int); - struct inode * (*open_context)(struct inode *, struct nfs_open_context *, int, struct iattr *, int *); - int (*have_delegation)(struct inode *, fmode_t, int); - int (*return_delegation)(struct inode *); - struct nfs_client * (*alloc_client)(const struct nfs_client_initdata *); - struct nfs_client * (*init_client)(struct nfs_client *, const struct nfs_client_initdata *); - void (*free_client)(struct nfs_client *); - struct nfs_server * (*create_server)(struct fs_context *); - struct nfs_server * (*clone_server)(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *, rpc_authflavor_t); - int (*discover_trunking)(struct nfs_server *, struct nfs_fh *); - void (*enable_swap)(struct inode *); - void (*disable_swap)(struct inode *); -}; - -struct nlmclnt_operations { - void (*nlmclnt_alloc_call)(void *); - bool (*nlmclnt_unlock_prepare)(struct rpc_task *, void *); - void (*nlmclnt_release_call)(void *); -}; - -struct nfs_access_entry { - struct rb_node rb_node; - struct list_head lru; - kuid_t fsuid; - kgid_t fsgid; - struct group_info *group_info; - u64 timestamp; - __u32 mask; - struct callback_head callback_head; -}; - -struct nfs_client_initdata { - long unsigned int init_flags; - const char *hostname; - const struct __kernel_sockaddr_storage *addr; - const char *nodename; - const char *ip_addr; - size_t addrlen; - struct nfs_subversion *nfs_mod; - int proto; - u32 minorversion; - unsigned int nconnect; - unsigned int max_connect; - struct net *net; - const struct rpc_timeout *timeparms; - const struct cred *cred; - struct xprtsec_parms xprtsec; - long unsigned int connect_timeout; - long unsigned int reconnect_timeout; -}; - -struct nfs_subversion { - struct module *owner; - struct file_system_type *nfs_fs; - const struct rpc_version *rpc_vers; - const struct nfs_rpc_ops *rpc_ops; - const struct super_operations *sops; - const struct xattr_handler * const *xattr; - struct list_head list; -}; - -struct nfs4_state_recovery_ops; - -struct nfs4_state_maintenance_ops; - -struct nfs4_mig_recovery_ops; - -struct nfs4_minor_version_ops { - u32 minor_version; - unsigned int init_caps; - int (*init_client)(struct nfs_client *); - void (*shutdown_client)(struct nfs_client *); - bool (*match_stateid)(const nfs4_stateid *, const nfs4_stateid *); - int (*find_root_sec)(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); - void (*free_lock_state)(struct nfs_server *, struct nfs4_lock_state *); - int (*test_and_free_expired)(struct nfs_server *, const nfs4_stateid *, const struct cred *); - struct nfs_seqid * (*alloc_seqid)(struct nfs_seqid_counter *, gfp_t); - void (*session_trunk)(struct rpc_clnt *, struct rpc_xprt *, void *); - const struct rpc_call_ops *call_sync_ops; - const struct nfs4_state_recovery_ops *reboot_recovery_ops; - const struct nfs4_state_recovery_ops *nograce_recovery_ops; - const struct nfs4_state_maintenance_ops *state_renewal_ops; - const struct nfs4_mig_recovery_ops *mig_recovery_ops; -}; - -struct nfs4_slot_table { - struct nfs4_session *session; - struct nfs4_slot *slots; - long unsigned int used_slots[16]; - spinlock_t slot_tbl_lock; - struct rpc_wait_queue slot_tbl_waitq; - wait_queue_head_t slot_waitq; - u32 max_slots; - u32 max_slotid; - u32 highest_used_slotid; - u32 target_highest_slotid; - u32 server_highest_slotid; - s32 d_target_highest_slotid; - s32 d2_target_highest_slotid; - long unsigned int generation; - struct completion complete; - long unsigned int slot_tbl_state; -}; - -struct nfs4_session { - struct nfs4_sessionid sess_id; - u32 flags; - long unsigned int session_state; - u32 hash_alg; - u32 ssv_len; - struct nfs4_channel_attrs fc_attrs; - struct nfs4_slot_table fc_slot_table; - struct nfs4_channel_attrs bc_attrs; - struct nfs4_slot_table bc_slot_table; - struct nfs_client *clp; -}; - -struct nfs_iostats { - long long unsigned int bytes[8]; - long unsigned int events[27]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum pnfs_try_status { - PNFS_ATTEMPTED = 0, - PNFS_NOT_ATTEMPTED = 1, - PNFS_TRY_AGAIN = 2, -}; - -struct nfs_pageio_ops; - -struct nfs4_deviceid_node; - -struct pnfs_layoutdriver_type { - struct list_head pnfs_tblid; - const u32 id; - const char *name; - struct module *owner; - unsigned int flags; - unsigned int max_layoutget_response; - int (*set_layoutdriver)(struct nfs_server *, const struct nfs_fh *); - int (*clear_layoutdriver)(struct nfs_server *); - struct pnfs_layout_hdr * (*alloc_layout_hdr)(struct inode *, gfp_t); - void (*free_layout_hdr)(struct pnfs_layout_hdr *); - struct pnfs_layout_segment * (*alloc_lseg)(struct pnfs_layout_hdr *, struct nfs4_layoutget_res *, gfp_t); - void (*free_lseg)(struct pnfs_layout_segment *); - void (*add_lseg)(struct pnfs_layout_hdr *, struct pnfs_layout_segment *, struct list_head *); - void (*return_range)(struct pnfs_layout_hdr *, struct pnfs_layout_range *); - const struct nfs_pageio_ops *pg_read_ops; - const struct nfs_pageio_ops *pg_write_ops; - struct pnfs_ds_commit_info * (*get_ds_info)(struct inode *); - int (*sync)(struct inode *, bool); - enum pnfs_try_status (*read_pagelist)(struct nfs_pgio_header *); - enum pnfs_try_status (*write_pagelist)(struct nfs_pgio_header *, int); - void (*free_deviceid_node)(struct nfs4_deviceid_node *); - struct nfs4_deviceid_node * (*alloc_deviceid_node)(struct nfs_server *, struct pnfs_device *, gfp_t); - int (*prepare_layoutreturn)(struct nfs4_layoutreturn_args *); - void (*cleanup_layoutcommit)(struct nfs4_layoutcommit_data *); - int (*prepare_layoutcommit)(struct nfs4_layoutcommit_args *); - int (*prepare_layoutstats)(struct nfs42_layoutstat_args *); - void (*cancel_io)(struct pnfs_layout_segment *); -}; - -struct nfs4_state_owner; - -struct nfs4_state { - struct list_head open_states; - struct list_head inode_states; - struct list_head lock_states; - struct nfs4_state_owner *owner; - struct inode *inode; - long unsigned int flags; - spinlock_t state_lock; - seqlock_t seqlock; - nfs4_stateid stateid; - nfs4_stateid open_stateid; - unsigned int n_rdonly; - unsigned int n_wronly; - unsigned int n_rdwr; - fmode_t state; - refcount_t count; - wait_queue_head_t waitq; - struct callback_head callback_head; -}; - -struct nfs4_cached_acl; - -struct nfs_delegation; - -struct nfs4_xattr_cache; - -struct nfs_inode { - __u64 fileid; - struct nfs_fh fh; - long unsigned int flags; - long unsigned int cache_validity; - long unsigned int read_cache_jiffies; - long unsigned int attrtimeo; - long unsigned int attrtimeo_timestamp; - long unsigned int attr_gencount; - struct rb_root access_cache; - struct list_head access_cache_entry_lru; - struct list_head access_cache_inode_lru; - union { - struct { - long unsigned int cache_change_attribute; - __be32 cookieverf[2]; - struct rw_semaphore rmdir_sem; - }; - struct { - atomic_long_t nrequests; - atomic_long_t redirtied_pages; - struct nfs_mds_commit_info commit_info; - struct mutex commit_mutex; - }; - }; - struct list_head open_files; - struct { - int cnt; - struct { - u64 start; - u64 end; - } gap[16]; - } *ooo; - struct nfs4_cached_acl *nfs4_acl; - struct list_head open_states; - struct nfs_delegation *delegation; - struct rw_semaphore rwsem; - struct pnfs_layout_hdr *layout; - __u64 write_io; - __u64 read_io; - struct nfs4_xattr_cache *xattr_cache; - union { - struct inode vfs_inode; - struct netfs_inode netfs; - }; -}; - -struct nfs_delegation { - struct list_head super_list; - const struct cred *cred; - struct inode *inode; - nfs4_stateid stateid; - fmode_t type; - long unsigned int pagemod_limit; - __u64 change_attr; - long unsigned int test_gen; - long unsigned int flags; - refcount_t refcount; - spinlock_t lock; - struct callback_head rcu; -}; - -struct nfs_seqid_counter { - ktime_t create_time; - u64 owner_id; - int flags; - u32 counter; - spinlock_t lock; - struct list_head list; - struct rpc_wait_queue wait; -}; - -struct nfs4_lock_state { - struct list_head ls_locks; - struct nfs4_state *ls_state; - long unsigned int ls_flags; - struct nfs_seqid_counter ls_seqid; - nfs4_stateid ls_stateid; - refcount_t ls_count; - fl_owner_t ls_owner; -}; - -struct svc_cred { - kuid_t cr_uid; - kgid_t cr_gid; - struct group_info *cr_group_info; - u32 cr_flavor; - char *cr_raw_principal; - char *cr_principal; - char *cr_targ_princ; - struct gss_api_mech *cr_gss_mech; -}; - -struct cache_deferred_req; - -struct cache_req { - struct cache_deferred_req * (*defer)(struct cache_req *); - long unsigned int thread_wait; -}; - -struct svc_procedure; - -struct svc_deferred_req; - -struct svc_rqst { - struct list_head rq_all; - struct llist_node rq_idle; - struct callback_head rq_rcu_head; - struct svc_xprt *rq_xprt; - struct __kernel_sockaddr_storage rq_addr; - size_t rq_addrlen; - struct __kernel_sockaddr_storage rq_daddr; - size_t rq_daddrlen; - struct svc_serv *rq_server; - struct svc_pool *rq_pool; - const struct svc_procedure *rq_procinfo; - struct auth_ops *rq_authop; - struct svc_cred rq_cred; - void *rq_xprt_ctxt; - struct svc_deferred_req *rq_deferred; - struct xdr_buf rq_arg; - struct xdr_stream rq_arg_stream; - struct xdr_stream rq_res_stream; - struct page *rq_scratch_page; - struct xdr_buf rq_res; - struct page *rq_pages[260]; - struct page **rq_respages; - struct page **rq_next_page; - struct page **rq_page_end; - struct folio_batch rq_fbatch; - struct kvec rq_vec[259]; - struct bio_vec rq_bvec[259]; - __be32 rq_xid; - u32 rq_prog; - u32 rq_vers; - u32 rq_proc; - u32 rq_prot; - int rq_cachetype; - long unsigned int rq_flags; - ktime_t rq_qtime; - void *rq_argp; - void *rq_resp; - __be32 *rq_accept_statp; - void *rq_auth_data; - __be32 rq_auth_stat; - int rq_auth_slack; - int rq_reserved; - ktime_t rq_stime; - struct cache_req rq_chandle; - struct auth_domain *rq_client; - struct auth_domain *rq_gssclient; - struct task_struct *rq_task; - struct net *rq_bc_net; - int rq_err; - long unsigned int bc_to_initval; - unsigned int bc_to_retries; - void **rq_lease_breaker; - unsigned int rq_status_counter; -}; - -struct cache_head { - struct hlist_node cache_list; - time64_t expiry_time; - time64_t last_refresh; - struct kref ref; - long unsigned int flags; -}; - -struct cache_deferred_req { - struct hlist_node hash; - struct list_head recent; - struct cache_head *item; - void *owner; - void (*revisit)(struct cache_deferred_req *, int); -}; - -struct auth_ops { - char *name; - struct module *owner; - int flavour; - enum svc_auth_status (*accept)(struct svc_rqst *); - int (*release)(struct svc_rqst *); - void (*domain_release)(struct auth_domain *); - enum svc_auth_status (*set_client)(struct svc_rqst *); - rpc_authflavor_t (*pseudoflavor)(struct svc_rqst *); -}; - -struct svc_pool { - unsigned int sp_id; - struct lwq sp_xprts; - unsigned int sp_nrthreads; - struct list_head sp_all_threads; - struct llist_head sp_idle_threads; - struct percpu_counter sp_messages_arrived; - struct percpu_counter sp_sockets_queued; - struct percpu_counter sp_threads_woken; - long unsigned int sp_flags; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct svc_procedure { - __be32 (*pc_func)(struct svc_rqst *); - bool (*pc_decode)(struct svc_rqst *, struct xdr_stream *); - bool (*pc_encode)(struct svc_rqst *, struct xdr_stream *); - void (*pc_release)(struct svc_rqst *); - unsigned int pc_argsize; - unsigned int pc_argzero; - unsigned int pc_ressize; - unsigned int pc_cachetype; - unsigned int pc_xdrressize; - const char *pc_name; -}; - -struct svc_deferred_req { - u32 prot; - struct svc_xprt *xprt; - struct __kernel_sockaddr_storage addr; - size_t addrlen; - struct __kernel_sockaddr_storage daddr; - size_t daddrlen; - void *xprt_ctxt; - struct cache_deferred_req handle; - int argslen; - __be32 args[0]; -}; - -struct svc_process_info { - union { - int (*dispatch)(struct svc_rqst *); - struct { - unsigned int lovers; - unsigned int hivers; - } mismatch; - }; -}; - -struct svc_version { - u32 vs_vers; - u32 vs_nproc; - const struct svc_procedure *vs_proc; - long unsigned int *vs_count; - u32 vs_xdrsize; - bool vs_hidden; - bool vs_rpcb_optnl; - bool vs_need_cong_ctrl; - int (*vs_dispatch)(struct svc_rqst *); -}; - -struct nfs_ssc_client_ops { - void (*sco_sb_deactive)(struct super_block *); -}; - -struct nfs4_state_recovery_ops { - int owner_flag_bit; - int state_flag_bit; - int (*recover_open)(struct nfs4_state_owner *, struct nfs4_state *); - int (*recover_lock)(struct nfs4_state *, struct file_lock *); - int (*establish_clid)(struct nfs_client *, const struct cred *); - int (*reclaim_complete)(struct nfs_client *, const struct cred *); - int (*detect_trunking)(struct nfs_client *, struct nfs_client **, const struct cred *); -}; - -struct nfs4_state_maintenance_ops { - int (*sched_state_renewal)(struct nfs_client *, const struct cred *, unsigned int); - const struct cred * (*get_state_renewal_cred)(struct nfs_client *); - int (*renew_lease)(struct nfs_client *, const struct cred *); -}; - -struct nfs4_mig_recovery_ops { - int (*get_locations)(struct nfs_server *, struct nfs_fh *, struct nfs4_fs_locations *, struct page *, const struct cred *); - int (*fsid_present)(struct inode *, const struct cred *); -}; - -struct nfs4_state_owner { - struct nfs_server *so_server; - struct list_head so_lru; - long unsigned int so_expires; - struct rb_node so_server_node; - const struct cred *so_cred; - spinlock_t so_lock; - atomic_t so_count; - long unsigned int so_flags; - struct list_head so_states; - struct nfs_seqid_counter so_seqid; - struct mutex so_delegreturn_mutex; -}; - -enum nfs_stat_bytecounters { - NFSIOS_NORMALREADBYTES = 0, - NFSIOS_NORMALWRITTENBYTES = 1, - NFSIOS_DIRECTREADBYTES = 2, - NFSIOS_DIRECTWRITTENBYTES = 3, - NFSIOS_SERVERREADBYTES = 4, - NFSIOS_SERVERWRITTENBYTES = 5, - NFSIOS_READPAGES = 6, - NFSIOS_WRITEPAGES = 7, - __NFSIOS_BYTESMAX = 8, -}; - -enum nfs_stat_eventcounters { - NFSIOS_INODEREVALIDATE = 0, - NFSIOS_DENTRYREVALIDATE = 1, - NFSIOS_DATAINVALIDATE = 2, - NFSIOS_ATTRINVALIDATE = 3, - NFSIOS_VFSOPEN = 4, - NFSIOS_VFSLOOKUP = 5, - NFSIOS_VFSACCESS = 6, - NFSIOS_VFSUPDATEPAGE = 7, - NFSIOS_VFSREADPAGE = 8, - NFSIOS_VFSREADPAGES = 9, - NFSIOS_VFSWRITEPAGE = 10, - NFSIOS_VFSWRITEPAGES = 11, - NFSIOS_VFSGETDENTS = 12, - NFSIOS_VFSSETATTR = 13, - NFSIOS_VFSFLUSH = 14, - NFSIOS_VFSFSYNC = 15, - NFSIOS_VFSLOCK = 16, - NFSIOS_VFSRELEASE = 17, - NFSIOS_CONGESTIONWAIT = 18, - NFSIOS_SETATTRTRUNC = 19, - NFSIOS_EXTENDWRITE = 20, - NFSIOS_SILLYRENAME = 21, - NFSIOS_SHORTREAD = 22, - NFSIOS_SHORTWRITE = 23, - NFSIOS_DELAY = 24, - NFSIOS_PNFS_READ = 25, - NFSIOS_PNFS_WRITE = 26, - __NFSIOS_COUNTSMAX = 27, -}; - -struct nfs_pageio_descriptor; - -struct nfs_pgio_mirror; - -struct nfs_pageio_ops { - void (*pg_init)(struct nfs_pageio_descriptor *, struct nfs_page *); - size_t (*pg_test)(struct nfs_pageio_descriptor *, struct nfs_page *, struct nfs_page *); - int (*pg_doio)(struct nfs_pageio_descriptor *); - unsigned int (*pg_get_mirror_count)(struct nfs_pageio_descriptor *, struct nfs_page *); - void (*pg_cleanup)(struct nfs_pageio_descriptor *); - struct nfs_pgio_mirror * (*pg_get_mirror)(struct nfs_pageio_descriptor *, u32); - u32 (*pg_set_mirror)(struct nfs_pageio_descriptor *, u32); -}; - -struct nfs_pgio_mirror { - struct list_head pg_list; - long unsigned int pg_bytes_written; - size_t pg_count; - size_t pg_bsize; - unsigned int pg_base; - unsigned char pg_recoalesce: 1; -}; - -struct nfs_pageio_descriptor { - struct inode *pg_inode; - const struct nfs_pageio_ops *pg_ops; - const struct nfs_rw_ops *pg_rw_ops; - int pg_ioflags; - int pg_error; - const struct rpc_call_ops *pg_rpc_callops; - const struct nfs_pgio_completion_ops *pg_completion_ops; - struct pnfs_layout_segment *pg_lseg; - struct nfs_io_completion *pg_io_completion; - struct nfs_direct_req *pg_dreq; - void *pg_netfs; - unsigned int pg_bsize; - u32 pg_mirror_count; - struct nfs_pgio_mirror *pg_mirrors; - struct nfs_pgio_mirror pg_mirrors_static[1]; - struct nfs_pgio_mirror *pg_mirrors_dynamic; - u32 pg_mirror_idx; - short unsigned int pg_maxretrans; - unsigned char pg_moreio: 1; -}; - -struct nfs_clone_mount { - struct super_block *sb; - struct dentry *dentry; - struct nfs_fattr *fattr; - unsigned int inherited_bsize; -}; - -struct nfs_fs_context { - bool internal; - bool skip_reconfig_option_check; - bool need_mount; - bool sloppy; - unsigned int flags; - unsigned int rsize; - unsigned int wsize; - unsigned int timeo; - unsigned int retrans; - unsigned int acregmin; - unsigned int acregmax; - unsigned int acdirmin; - unsigned int acdirmax; - unsigned int namlen; - unsigned int options; - unsigned int bsize; - struct nfs_auth_info auth_info; - rpc_authflavor_t selected_flavor; - struct xprtsec_parms xprtsec; - char *client_address; - unsigned int version; - unsigned int minorversion; - char *fscache_uniq; - short unsigned int protofamily; - short unsigned int mountfamily; - bool has_sec_mnt_opts; - int lock_status; - struct { - union { - struct sockaddr address; - struct __kernel_sockaddr_storage _address; - }; - size_t addrlen; - char *hostname; - u32 version; - int port; - short unsigned int protocol; - } mount_server; - struct { - union { - struct sockaddr address; - struct __kernel_sockaddr_storage _address; - }; - size_t addrlen; - char *hostname; - char *export_path; - int port; - short unsigned int protocol; - short unsigned int nconnect; - short unsigned int max_connect; - short unsigned int export_path_len; - } nfs_server; - struct nfs_fh *mntfh; - struct nfs_server *server; - struct nfs_subversion *nfs_mod; - struct nfs_clone_mount clone_data; -}; - -enum nfs_lock_status { - NFS_LOCK_NOT_SET = 0, - NFS_LOCK_LOCK = 1, - NFS_LOCK_NOLOCK = 2, -}; - -struct nfs_mount_request { - struct __kernel_sockaddr_storage *sap; - size_t salen; - char *hostname; - char *dirpath; - u32 version; - short unsigned int protocol; - struct nfs_fh *fh; - int noresvport; - unsigned int *auth_flav_len; - rpc_authflavor_t *auth_flavs; - struct net *net; -}; - -struct nfs4_deviceid_node { - struct hlist_node node; - struct hlist_node tmpnode; - const struct pnfs_layoutdriver_type *ld; - const struct nfs_client *nfs_client; - long unsigned int flags; - long unsigned int timestamp_unavailable; - struct nfs4_deviceid deviceid; - struct callback_head rcu; - atomic_t ref; -}; - -struct proc_nfs_info { - int flag; - const char *str; - const char *nostr; -}; - -struct nfs4_secinfo4 { - u32 flavor; - struct rpcsec_gss_info flavor_info; -}; - -struct nfs4_secinfo_flavors { - unsigned int num_flavors; - struct nfs4_secinfo4 flavors[0]; -}; - -enum pnfs_block_volume_type { - PNFS_BLOCK_VOLUME_SIMPLE = 0, - PNFS_BLOCK_VOLUME_SLICE = 1, - PNFS_BLOCK_VOLUME_CONCAT = 2, - PNFS_BLOCK_VOLUME_STRIPE = 3, - PNFS_BLOCK_VOLUME_SCSI = 4, -}; - -enum scsi_code_set { - PS_CODE_SET_BINARY = 1, - PS_CODE_SET_ASCII = 2, - PS_CODE_SET_UTF8 = 3, -}; - -enum scsi_designator_type { - PS_DESIGNATOR_T10 = 1, - PS_DESIGNATOR_EUI64 = 2, - PS_DESIGNATOR_NAA = 3, - PS_DESIGNATOR_NAME = 8, -}; - -struct pr_keys { - u32 generation; - u32 num_keys; - u64 keys[0]; -}; - -struct pr_held_reservation { - u64 key; - u32 generation; - enum pr_type type; -}; - -struct pnfs_block_volume { - enum pnfs_block_volume_type type; - union { - struct { - int len; - int nr_sigs; - struct { - u64 offset; - u32 sig_len; - u8 sig[128]; - } sigs[4]; - } simple; - struct { - u64 start; - u64 len; - u32 volume; - } slice; - struct { - u32 volumes_count; - u32 volumes[64]; - } concat; - struct { - u64 chunk_size; - u32 volumes_count; - u32 volumes[64]; - } stripe; - struct { - enum scsi_code_set code_set; - enum scsi_designator_type designator_type; - int designator_len; - u8 designator[256]; - u64 pr_key; - } scsi; - }; -}; - -struct pnfs_block_dev_map { - u64 start; - u64 len; - u64 disk_offset; - struct block_device *bdev; -}; - -struct pnfs_block_dev { - struct nfs4_deviceid_node node; - u64 start; - u64 len; - enum pnfs_block_volume_type type; - u32 nr_children; - struct pnfs_block_dev *children; - u64 chunk_size; - struct file *bdev_file; - u64 disk_offset; - long unsigned int flags; - u64 pr_key; - bool (*map)(struct pnfs_block_dev *, u64, struct pnfs_block_dev_map *); -}; - -enum { - PNFS_BDEV_REGISTERED = 0, -}; - -struct cache_detail { - struct module *owner; - int hash_size; - struct hlist_head *hash_table; - spinlock_t hash_lock; - char *name; - void (*cache_put)(struct kref *); - int (*cache_upcall)(struct cache_detail *, struct cache_head *); - void (*cache_request)(struct cache_detail *, struct cache_head *, char **, int *); - int (*cache_parse)(struct cache_detail *, char *, int); - int (*cache_show)(struct seq_file *, struct cache_detail *, struct cache_head *); - void (*warn_no_listener)(struct cache_detail *, int); - struct cache_head * (*alloc)(void); - void (*flush)(void); - int (*match)(struct cache_head *, struct cache_head *); - void (*init)(struct cache_head *, struct cache_head *); - void (*update)(struct cache_head *, struct cache_head *); - time64_t flush_time; - struct list_head others; - time64_t nextcheck; - int entries; - struct list_head queue; - atomic_t writers; - time64_t last_close; - time64_t last_warn; - union { - struct proc_dir_entry *procfs; - struct dentry *pipefs; - }; - struct net *net; -}; - -struct svc_xprt_class; - -struct svc_xprt_ops; - -struct svc_xprt { - struct svc_xprt_class *xpt_class; - const struct svc_xprt_ops *xpt_ops; - struct kref xpt_ref; - struct list_head xpt_list; - struct lwq_node xpt_ready; - long unsigned int xpt_flags; - struct svc_serv *xpt_server; - atomic_t xpt_reserved; - atomic_t xpt_nr_rqsts; - struct mutex xpt_mutex; - spinlock_t xpt_lock; - void *xpt_auth_cache; - struct list_head xpt_deferred; - struct __kernel_sockaddr_storage xpt_local; - size_t xpt_locallen; - struct __kernel_sockaddr_storage xpt_remote; - size_t xpt_remotelen; - char xpt_remotebuf[58]; - struct list_head xpt_users; - struct net *xpt_net; - netns_tracker ns_tracker; - const struct cred *xpt_cred; - struct rpc_xprt *xpt_bc_xprt; - struct rpc_xprt_switch *xpt_bc_xps; -}; - -struct svc_info { - struct svc_serv *serv; - struct mutex *mutex; -}; - -enum { - RQ_SECURE = 0, - RQ_LOCAL = 1, - RQ_USEDEFERRAL = 2, - RQ_DROPME = 3, - RQ_VICTIM = 4, - RQ_DATA = 5, -}; - -struct svc_xprt_ops { - struct svc_xprt * (*xpo_create)(struct svc_serv *, struct net *, struct sockaddr *, int, int); - struct svc_xprt * (*xpo_accept)(struct svc_xprt *); - int (*xpo_has_wspace)(struct svc_xprt *); - int (*xpo_recvfrom)(struct svc_rqst *); - int (*xpo_sendto)(struct svc_rqst *); - int (*xpo_result_payload)(struct svc_rqst *, unsigned int, unsigned int); - void (*xpo_release_ctxt)(struct svc_xprt *, void *); - void (*xpo_detach)(struct svc_xprt *); - void (*xpo_free)(struct svc_xprt *); - void (*xpo_kill_temp_xprt)(struct svc_xprt *); - void (*xpo_handshake)(struct svc_xprt *); -}; - -struct svc_xprt_class { - const char *xcl_name; - struct module *xcl_owner; - const struct svc_xprt_ops *xcl_ops; - struct list_head xcl_list; - u32 xcl_max_payload; - int xcl_ident; -}; - -enum nfsstat4 { - NFS4_OK = 0, - NFS4ERR_PERM = 1, - NFS4ERR_NOENT = 2, - NFS4ERR_IO = 5, - NFS4ERR_NXIO = 6, - NFS4ERR_ACCESS = 13, - NFS4ERR_EXIST = 17, - NFS4ERR_XDEV = 18, - NFS4ERR_NOTDIR = 20, - NFS4ERR_ISDIR = 21, - NFS4ERR_INVAL = 22, - NFS4ERR_FBIG = 27, - NFS4ERR_NOSPC = 28, - NFS4ERR_ROFS = 30, - NFS4ERR_MLINK = 31, - NFS4ERR_NAMETOOLONG = 63, - NFS4ERR_NOTEMPTY = 66, - NFS4ERR_DQUOT = 69, - NFS4ERR_STALE = 70, - NFS4ERR_BADHANDLE = 10001, - NFS4ERR_BAD_COOKIE = 10003, - NFS4ERR_NOTSUPP = 10004, - NFS4ERR_TOOSMALL = 10005, - NFS4ERR_SERVERFAULT = 10006, - NFS4ERR_BADTYPE = 10007, - NFS4ERR_DELAY = 10008, - NFS4ERR_SAME = 10009, - NFS4ERR_DENIED = 10010, - NFS4ERR_EXPIRED = 10011, - NFS4ERR_LOCKED = 10012, - NFS4ERR_GRACE = 10013, - NFS4ERR_FHEXPIRED = 10014, - NFS4ERR_SHARE_DENIED = 10015, - NFS4ERR_WRONGSEC = 10016, - NFS4ERR_CLID_INUSE = 10017, - NFS4ERR_RESOURCE = 10018, - NFS4ERR_MOVED = 10019, - NFS4ERR_NOFILEHANDLE = 10020, - NFS4ERR_MINOR_VERS_MISMATCH = 10021, - NFS4ERR_STALE_CLIENTID = 10022, - NFS4ERR_STALE_STATEID = 10023, - NFS4ERR_OLD_STATEID = 10024, - NFS4ERR_BAD_STATEID = 10025, - NFS4ERR_BAD_SEQID = 10026, - NFS4ERR_NOT_SAME = 10027, - NFS4ERR_LOCK_RANGE = 10028, - NFS4ERR_SYMLINK = 10029, - NFS4ERR_RESTOREFH = 10030, - NFS4ERR_LEASE_MOVED = 10031, - NFS4ERR_ATTRNOTSUPP = 10032, - NFS4ERR_NO_GRACE = 10033, - NFS4ERR_RECLAIM_BAD = 10034, - NFS4ERR_RECLAIM_CONFLICT = 10035, - NFS4ERR_BADXDR = 10036, - NFS4ERR_LOCKS_HELD = 10037, - NFS4ERR_OPENMODE = 10038, - NFS4ERR_BADOWNER = 10039, - NFS4ERR_BADCHAR = 10040, - NFS4ERR_BADNAME = 10041, - NFS4ERR_BAD_RANGE = 10042, - NFS4ERR_LOCK_NOTSUPP = 10043, - NFS4ERR_OP_ILLEGAL = 10044, - NFS4ERR_DEADLOCK = 10045, - NFS4ERR_FILE_OPEN = 10046, - NFS4ERR_ADMIN_REVOKED = 10047, - NFS4ERR_CB_PATH_DOWN = 10048, - NFS4ERR_BADIOMODE = 10049, - NFS4ERR_BADLAYOUT = 10050, - NFS4ERR_BAD_SESSION_DIGEST = 10051, - NFS4ERR_BADSESSION = 10052, - NFS4ERR_BADSLOT = 10053, - NFS4ERR_COMPLETE_ALREADY = 10054, - NFS4ERR_CONN_NOT_BOUND_TO_SESSION = 10055, - NFS4ERR_DELEG_ALREADY_WANTED = 10056, - NFS4ERR_BACK_CHAN_BUSY = 10057, - NFS4ERR_LAYOUTTRYLATER = 10058, - NFS4ERR_LAYOUTUNAVAILABLE = 10059, - NFS4ERR_NOMATCHING_LAYOUT = 10060, - NFS4ERR_RECALLCONFLICT = 10061, - NFS4ERR_UNKNOWN_LAYOUTTYPE = 10062, - NFS4ERR_SEQ_MISORDERED = 10063, - NFS4ERR_SEQUENCE_POS = 10064, - NFS4ERR_REQ_TOO_BIG = 10065, - NFS4ERR_REP_TOO_BIG = 10066, - NFS4ERR_REP_TOO_BIG_TO_CACHE = 10067, - NFS4ERR_RETRY_UNCACHED_REP = 10068, - NFS4ERR_UNSAFE_COMPOUND = 10069, - NFS4ERR_TOO_MANY_OPS = 10070, - NFS4ERR_OP_NOT_IN_SESSION = 10071, - NFS4ERR_HASH_ALG_UNSUPP = 10072, - NFS4ERR_CLIENTID_BUSY = 10074, - NFS4ERR_PNFS_IO_HOLE = 10075, - NFS4ERR_SEQ_FALSE_RETRY = 10076, - NFS4ERR_BAD_HIGH_SLOT = 10077, - NFS4ERR_DEADSESSION = 10078, - NFS4ERR_ENCR_ALG_UNSUPP = 10079, - NFS4ERR_PNFS_NO_LAYOUT = 10080, - NFS4ERR_NOT_ONLY_OP = 10081, - NFS4ERR_WRONG_CRED = 10082, - NFS4ERR_WRONG_TYPE = 10083, - NFS4ERR_DIRDELEG_UNAVAIL = 10084, - NFS4ERR_REJECT_DELEG = 10085, - NFS4ERR_RETURNCONFLICT = 10086, - NFS4ERR_DELEG_REVOKED = 10087, - NFS4ERR_PARTNER_NOTSUPP = 10088, - NFS4ERR_PARTNER_NO_AUTH = 10089, - NFS4ERR_UNION_NOTSUPP = 10090, - NFS4ERR_OFFLOAD_DENIED = 10091, - NFS4ERR_WRONG_LFS = 10092, - NFS4ERR_BADLABEL = 10093, - NFS4ERR_OFFLOAD_NO_REQS = 10094, - NFS4ERR_NOXATTR = 10095, - NFS4ERR_XATTR2BIG = 10096, - NFS4ERR_FIRST_FREE = 10097, -}; - -enum { - EXP_STATS_FH_STALE = 0, - EXP_STATS_IO_READ = 1, - EXP_STATS_IO_WRITE = 2, - EXP_STATS_COUNTERS_NUM = 3, -}; - -struct lock_manager { - struct list_head list; - bool block_opens; -}; - -enum { - NFSD_STATS_PAYLOAD_MISSES = 0, - NFSD_STATS_DRC_MEM_USAGE = 1, - NFSD_STATS_RC_HITS = 2, - NFSD_STATS_RC_MISSES = 3, - NFSD_STATS_RC_NOCACHE = 4, - NFSD_STATS_FH_STALE = 5, - NFSD_STATS_IO_READ = 6, - NFSD_STATS_IO_WRITE = 7, - NFSD_STATS_FIRST_NFS4_OP = 8, - NFSD_STATS_LAST_NFS4_OP = 83, - NFSD_STATS_WDELEG_GETATTR = 84, - NFSD_STATS_COUNTERS_NUM = 85, -}; - -struct cld_net; - -struct nfsd4_client_tracking_ops; - -struct nfsd_drc_bucket; - -struct nfsd_fcache_disposal; - -struct nfsd_net { - struct cld_net *cld_net; - struct cache_detail *svc_expkey_cache; - struct cache_detail *svc_export_cache; - struct cache_detail *idtoname_cache; - struct cache_detail *nametoid_cache; - struct lock_manager nfsd4_manager; - bool grace_ended; - time64_t boot_time; - struct dentry *nfsd_client_dir; - struct list_head *reclaim_str_hashtbl; - int reclaim_str_hashtbl_size; - struct list_head *conf_id_hashtbl; - struct rb_root conf_name_tree; - struct list_head *unconf_id_hashtbl; - struct rb_root unconf_name_tree; - struct list_head *sessionid_hashtbl; - struct list_head client_lru; - struct list_head close_lru; - struct list_head del_recall_lru; - struct list_head blocked_locks_lru; - struct delayed_work laundromat_work; - spinlock_t client_lock; - spinlock_t blocked_locks_lock; - struct file *rec_file; - bool in_grace; - const struct nfsd4_client_tracking_ops *client_tracking_ops; - time64_t nfsd4_lease; - time64_t nfsd4_grace; - bool somebody_reclaimed; - bool track_reclaim_completes; - atomic_t nr_reclaim_complete; - bool nfsd_net_up; - bool lockd_up; - seqlock_t writeverf_lock; - unsigned char writeverf[8]; - unsigned int max_connections; - u32 clientid_base; - u32 clientid_counter; - u32 clverifier_counter; - struct svc_info nfsd_info; - struct percpu_ref nfsd_serv_ref; - struct completion nfsd_serv_confirm_done; - struct completion nfsd_serv_free_done; - u32 s2s_cp_cl_id; - struct idr s2s_cp_stateids; - spinlock_t s2s_cp_lock; - atomic_t pending_async_copies; - bool nfsd_versions[5]; - bool nfsd4_minorversions[3]; - struct nfsd_drc_bucket *drc_hashtbl; - unsigned int max_drc_entries; - unsigned int maskbits; - unsigned int drc_hashsize; - atomic_t num_drc_entries; - struct percpu_counter counter[85]; - struct svc_stat nfsd_svcstats; - unsigned int longest_chain; - unsigned int longest_chain_cachesize; - struct shrinker *nfsd_reply_cache_shrinker; - spinlock_t nfsd_ssc_lock; - struct list_head nfsd_ssc_mount_list; - wait_queue_head_t nfsd_ssc_waitq; - char nfsd_name[65]; - struct nfsd_fcache_disposal *fcache_disposal; - siphash_key_t siphash_key; - atomic_t nfs4_client_count; - int nfs4_max_clients; - atomic_t nfsd_courtesy_clients; - struct shrinker *nfsd_client_shrinker; - struct work_struct nfsd_shrinker_work; - time64_t nfs40_last_revoke; -}; - -typedef u8 uint8_t; - -struct nfs4_client; - -struct nfsd4_client_tracking_ops { - int (*init)(struct net *); - void (*exit)(struct net *); - void (*create)(struct nfs4_client *); - void (*remove)(struct nfs4_client *); - int (*check)(struct nfs4_client *); - void (*grace_done)(struct nfsd_net *); - uint8_t version; - size_t msglen; -}; - -struct nfsd_drc_bucket { - struct rb_root rb_head; - struct list_head lru_head; - spinlock_t cache_lock; -}; - -struct nfsd_cacherep { - struct { - __be32 k_xid; - __wsum k_csum; - u32 k_proc; - u32 k_prot; - u32 k_vers; - unsigned int k_len; - struct sockaddr_in6 k_addr; - } c_key; - struct rb_node c_node; - struct list_head c_lru; - unsigned char c_state; - unsigned char c_type; - unsigned char c_secure: 1; - long unsigned int c_timestamp; - union { - struct kvec u_vec; - __be32 u_status; - } c_u; -}; - -enum { - RC_UNUSED = 0, - RC_INPROG = 1, - RC_DONE = 2, -}; - -enum { - RC_DROPIT = 0, - RC_REPLY = 1, - RC_DOIT = 2, -}; - -enum { - RC_NOCACHE = 0, - RC_REPLSTAT = 1, - RC_REPLBUFF = 2, -}; - -struct fid { - union { - struct { - u32 ino; - u32 gen; - u32 parent_ino; - u32 parent_gen; - } i32; - struct { - u64 ino; - u32 gen; - } __attribute__((packed)) i64; - struct { - u32 block; - u16 partref; - u16 parent_partref; - u32 generation; - u32 parent_block; - u32 parent_generation; - } udf; - struct { - struct {} __empty_raw; - __u32 raw[0]; - }; - }; -}; - -enum nfs4_acl_whotype { - NFS4_ACL_WHO_NAMED = 0, - NFS4_ACL_WHO_OWNER = 1, - NFS4_ACL_WHO_GROUP = 2, - NFS4_ACL_WHO_EVERYONE = 3, -}; - -struct nfs4_ace { - uint32_t type; - uint32_t flag; - uint32_t access_mask; - int whotype; - union { - kuid_t who_uid; - kgid_t who_gid; - }; -}; - -struct nfs4_acl { - uint32_t naces; - struct nfs4_ace aces[0]; -}; - -enum nfs_ftype4 { - NF4BAD = 0, - NF4REG = 1, - NF4DIR = 2, - NF4BLK = 3, - NF4CHR = 4, - NF4LNK = 5, - NF4SOCK = 6, - NF4FIFO = 7, - NF4ATTRDIR = 8, - NF4NAMEDATTR = 9, -}; - -enum nfs_stat { - NFS_OK = 0, - NFSERR_PERM = 1, - NFSERR_NOENT = 2, - NFSERR_IO = 5, - NFSERR_NXIO = 6, - NFSERR_EAGAIN = 11, - NFSERR_ACCES = 13, - NFSERR_EXIST = 17, - NFSERR_XDEV = 18, - NFSERR_NODEV = 19, - NFSERR_NOTDIR = 20, - NFSERR_ISDIR = 21, - NFSERR_INVAL = 22, - NFSERR_FBIG = 27, - NFSERR_NOSPC = 28, - NFSERR_ROFS = 30, - NFSERR_MLINK = 31, - NFSERR_NAMETOOLONG = 63, - NFSERR_NOTEMPTY = 66, - NFSERR_DQUOT = 69, - NFSERR_STALE = 70, - NFSERR_REMOTE = 71, - NFSERR_WFLUSH = 99, - NFSERR_BADHANDLE = 10001, - NFSERR_NOT_SYNC = 10002, - NFSERR_BAD_COOKIE = 10003, - NFSERR_NOTSUPP = 10004, - NFSERR_TOOSMALL = 10005, - NFSERR_SERVERFAULT = 10006, - NFSERR_BADTYPE = 10007, - NFSERR_JUKEBOX = 10008, - NFSERR_SAME = 10009, - NFSERR_DENIED = 10010, - NFSERR_EXPIRED = 10011, - NFSERR_LOCKED = 10012, - NFSERR_GRACE = 10013, - NFSERR_FHEXPIRED = 10014, - NFSERR_SHARE_DENIED = 10015, - NFSERR_WRONGSEC = 10016, - NFSERR_CLID_INUSE = 10017, - NFSERR_RESOURCE = 10018, - NFSERR_MOVED = 10019, - NFSERR_NOFILEHANDLE = 10020, - NFSERR_MINOR_VERS_MISMATCH = 10021, - NFSERR_STALE_CLIENTID = 10022, - NFSERR_STALE_STATEID = 10023, - NFSERR_OLD_STATEID = 10024, - NFSERR_BAD_STATEID = 10025, - NFSERR_BAD_SEQID = 10026, - NFSERR_NOT_SAME = 10027, - NFSERR_LOCK_RANGE = 10028, - NFSERR_SYMLINK = 10029, - NFSERR_RESTOREFH = 10030, - NFSERR_LEASE_MOVED = 10031, - NFSERR_ATTRNOTSUPP = 10032, - NFSERR_NO_GRACE = 10033, - NFSERR_RECLAIM_BAD = 10034, - NFSERR_RECLAIM_CONFLICT = 10035, - NFSERR_BAD_XDR = 10036, - NFSERR_LOCKS_HELD = 10037, - NFSERR_OPENMODE = 10038, - NFSERR_BADOWNER = 10039, - NFSERR_BADCHAR = 10040, - NFSERR_BADNAME = 10041, - NFSERR_BAD_RANGE = 10042, - NFSERR_LOCK_NOTSUPP = 10043, - NFSERR_OP_ILLEGAL = 10044, - NFSERR_DEADLOCK = 10045, - NFSERR_FILE_OPEN = 10046, - NFSERR_ADMIN_REVOKED = 10047, - NFSERR_CB_PATH_DOWN = 10048, -}; - -struct nfsd_attrs { - struct iattr *na_iattr; - struct xdr_netobj *na_seclabel; - struct posix_acl *na_pacl; - struct posix_acl *na_dpacl; - int na_labelerr; - int na_aclerr; -}; - -struct posix_acl_summary { - short unsigned int owner; - short unsigned int users; - short unsigned int group; - short unsigned int groups; - short unsigned int other; - short unsigned int mask; -}; - -struct posix_ace_state { - u32 allow; - u32 deny; -}; - -struct posix_user_ace_state { - union { - kuid_t uid; - kgid_t gid; - }; - struct posix_ace_state perms; -}; - -struct posix_ace_state_array { - int n; - struct posix_user_ace_state aces[0]; -}; - -struct posix_acl_state { - unsigned char valid; - struct posix_ace_state owner; - struct posix_ace_state group; - struct posix_ace_state other; - struct posix_ace_state everyone; - struct posix_ace_state mask; - struct posix_ace_state_array *users; - struct posix_ace_state_array *groups; -}; - -enum { - SP_TASK_PENDING = 0, - SP_NEED_VICTIM = 1, - SP_VICTIM_REMAINS = 2, -}; - -enum { - NLM_LCK_GRANTED = 0, - NLM_LCK_DENIED = 1, - NLM_LCK_DENIED_NOLOCKS = 2, - NLM_LCK_BLOCKED = 3, - NLM_LCK_DENIED_GRACE_PERIOD = 4, - NLM_DEADLCK = 5, - NLM_ROFS = 6, - NLM_STALE_FH = 7, - NLM_FBIG = 8, - NLM_FAILED = 9, -}; - -struct nlm_lockowner { - struct list_head list; - refcount_t count; - struct nlm_host *host; - fl_owner_t owner; - uint32_t pid; -}; - -struct nsm_private { - unsigned char data[16]; -}; - -struct nlm_lock { - char *caller; - unsigned int len; - struct nfs_fh fh; - struct xdr_netobj oh; - u32 svid; - u64 lock_start; - u64 lock_len; - struct file_lock fl; -}; - -struct nlm_cookie { - unsigned char data[32]; - unsigned int len; -}; - -struct nlm_args { - struct nlm_cookie cookie; - struct nlm_lock lock; - u32 block; - u32 reclaim; - u32 state; - u32 monitor; - u32 fsm_access; - u32 fsm_mode; -}; - -struct nlm_res { - struct nlm_cookie cookie; - __be32 status; - struct nlm_lock lock; -}; - -struct nsm_handle; - -struct nlm_host { - struct hlist_node h_hash; - struct __kernel_sockaddr_storage h_addr; - size_t h_addrlen; - struct __kernel_sockaddr_storage h_srcaddr; - size_t h_srcaddrlen; - struct rpc_clnt *h_rpcclnt; - char *h_name; - u32 h_version; - short unsigned int h_proto; - short unsigned int h_reclaiming: 1; - short unsigned int h_server: 1; - short unsigned int h_noresvport: 1; - short unsigned int h_inuse: 1; - wait_queue_head_t h_gracewait; - struct rw_semaphore h_rwsem; - u32 h_state; - u32 h_nsmstate; - u32 h_pidcount; - refcount_t h_count; - struct mutex h_mutex; - long unsigned int h_nextrebind; - long unsigned int h_expires; - struct list_head h_lockowners; - spinlock_t h_lock; - struct list_head h_granted; - struct list_head h_reclaim; - struct nsm_handle *h_nsmhandle; - char *h_addrbuf; - struct net *net; - const struct cred *h_cred; - char nodename[65]; - const struct nlmclnt_operations *h_nlmclnt_ops; -}; - -struct nsm_handle { - struct list_head sm_link; - refcount_t sm_count; - char *sm_mon_name; - char *sm_name; - struct __kernel_sockaddr_storage sm_addr; - size_t sm_addrlen; - unsigned int sm_monitored: 1; - unsigned int sm_sticky: 1; - struct nsm_private sm_priv; - char sm_addrbuf[51]; -}; - -struct nlm_block; - -struct nlm_rqst { - refcount_t a_count; - unsigned int a_flags; - struct nlm_host *a_host; - struct nlm_args a_args; - struct nlm_res a_res; - struct nlm_block *a_block; - unsigned int a_retries; - u8 a_owner[74]; - void *a_callback_data; -}; - -struct nlm_file; - -struct nlm_block { - struct kref b_count; - struct list_head b_list; - struct list_head b_flist; - struct nlm_rqst *b_call; - struct svc_serv *b_daemon; - struct nlm_host *b_host; - long unsigned int b_when; - unsigned int b_id; - unsigned char b_granted; - struct nlm_file *b_file; - struct cache_req *b_cache_req; - struct cache_deferred_req *b_deferred_req; - unsigned int b_flags; -}; - -struct nlm_share; - -struct nlm_file { - struct hlist_node f_list; - struct nfs_fh f_handle; - struct file *f_file[2]; - struct nlm_share *f_shares; - struct list_head f_blocks; - unsigned int f_locks; - unsigned int f_count; - struct mutex f_mutex; -}; - -typedef int (*nlm_host_match_fn_t)(void *, struct nlm_host *); - -struct arc4_ctx { - u32 S[256]; - u32 x; - u32 y; -}; - -struct md4_ctx { - u32 hash[4]; - u32 block[16]; - u64 byte_count; -}; - -struct rtattr { - short unsigned int rta_len; - short unsigned int rta_type; -}; - -struct reparse_posix_data { - __le32 ReparseTag; - __le16 ReparseDataLength; - __u16 Reserved; - __le64 InodeType; - __u8 DataBuffer[0]; -}; - -typedef struct { - __le16 MajorVersionNumber; - __le16 MinorVersionNumber; - __le64 Capability; -} __attribute__((packed)) FILE_SYSTEM_UNIX_INFO; - -typedef struct { - __le32 DeviceType; - __le32 DeviceCharacteristics; -} FILE_SYSTEM_DEVICE_INFO; - -typedef struct { - __le32 Attributes; - __le32 MaxPathNameComponentLength; - __le32 FileSystemNameLen; - char FileSystemName[52]; -} FILE_SYSTEM_ATTRIBUTE_INFO; - -typedef struct { - __le64 CreationTime; - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le32 Attributes; - __u32 Pad; -} FILE_BASIC_INFO; - -struct tcon_link; - -struct smb3_fs_context; - -struct cifs_sb_info { - struct rb_root tlink_tree; - spinlock_t tlink_tree_lock; - struct tcon_link *master_tlink; - struct nls_table *local_nls; - struct smb3_fs_context *ctx; - atomic_t active; - unsigned int mnt_cifs_flags; - struct delayed_work prune_tlinks; - struct callback_head rcu; - char *prepath; - bool mnt_cifs_serverino_autodisabled; - struct dentry *root; -}; - -struct cifs_tcon; - -struct tcon_link { - struct rb_node tl_rbnode; - kuid_t tl_uid; - long unsigned int tl_flags; - long unsigned int tl_time; - atomic_t tl_count; - struct cifs_tcon *tl_tcon; -}; - -enum securityEnum { - Unspecified = 0, - NTLMv2 = 1, - RawNTLMSSP = 2, - Kerberos = 3, - IAKerb = 4, -}; - -enum upcall_target_enum { - UPTARGET_UNSPECIFIED = 0, - UPTARGET_MOUNT = 1, - UPTARGET_APP = 2, -}; - -enum cifs_reparse_type { - CIFS_REPARSE_TYPE_NFS = 0, - CIFS_REPARSE_TYPE_WSL = 1, - CIFS_REPARSE_TYPE_DEFAULT = 0, -}; - -struct smb_version_operations; - -struct smb_version_values; - -struct cifs_ses; - -struct smb3_fs_context { - bool forceuid_specified; - bool forcegid_specified; - bool uid_specified; - bool cruid_specified; - bool gid_specified; - bool sloppy; - bool got_ip; - bool got_version; - bool got_rsize; - bool got_wsize; - bool got_bsize; - short unsigned int port; - char *username; - char *password; - char *password2; - char *domainname; - char *source; - char *server_hostname; - char *UNC; - char *nodename; - char workstation_name[65]; - char *iocharset; - char source_rfc1001_name[16]; - char target_rfc1001_name[16]; - kuid_t cred_uid; - kuid_t linux_uid; - kgid_t linux_gid; - kuid_t backupuid; - kgid_t backupgid; - umode_t file_mode; - umode_t dir_mode; - enum securityEnum sectype; - enum upcall_target_enum upcall_target; - bool sign; - bool ignore_signature: 1; - bool retry: 1; - bool intr: 1; - bool setuids: 1; - bool setuidfromacl: 1; - bool override_uid: 1; - bool override_gid: 1; - bool dynperm: 1; - bool noperm: 1; - bool nodelete: 1; - bool mode_ace: 1; - bool no_psx_acl: 1; - bool cifs_acl: 1; - bool backupuid_specified; - bool backupgid_specified; - bool no_xattr: 1; - bool server_ino: 1; - bool direct_io: 1; - bool strict_io: 1; - bool cache_ro: 1; - bool cache_rw: 1; - bool remap: 1; - bool sfu_remap: 1; - bool posix_paths: 1; - bool no_linux_ext: 1; - bool linux_ext: 1; - bool sfu_emul: 1; - bool nullauth: 1; - bool nocase: 1; - bool nobrl: 1; - bool nohandlecache: 1; - bool mand_lock: 1; - bool seal: 1; - bool nodfs: 1; - bool local_lease: 1; - bool noblocksnd: 1; - bool noautotune: 1; - bool nostrictsync: 1; - bool no_lease: 1; - bool no_sparse: 1; - bool fsc: 1; - bool mfsymlinks: 1; - bool multiuser: 1; - bool rwpidforward: 1; - bool nosharesock: 1; - bool persistent: 1; - bool nopersistent: 1; - bool resilient: 1; - bool domainauto: 1; - bool rdma: 1; - bool multichannel: 1; - bool use_client_guid: 1; - u8 client_guid[16]; - unsigned int vol_rsize; - unsigned int vol_wsize; - unsigned int bsize; - unsigned int rasize; - unsigned int rsize; - unsigned int wsize; - unsigned int min_offload; - unsigned int retrans; - bool sockopt_tcp_nodelay: 1; - long unsigned int acregmax; - long unsigned int acdirmax; - long unsigned int closetimeo; - struct smb_version_operations *ops; - struct smb_version_values *vals; - char *prepath; - struct __kernel_sockaddr_storage dstaddr; - struct __kernel_sockaddr_storage srcaddr; - struct nls_table *local_nls; - unsigned int echo_interval; - __u64 snapshot_time; - __u32 handle_timeout; - unsigned int max_credits; - unsigned int max_channels; - unsigned int max_cached_dirs; - bool compress; - bool rootfs: 1; - bool witness: 1; - char *leaf_fullpath; - struct cifs_ses *dfs_root_ses; - bool dfs_automount: 1; - enum cifs_reparse_type reparse_type; - bool dfs_conn: 1; -}; - -struct smb_ntsd { - __le16 revision; - __le16 type; - __le32 osidoffset; - __le32 gsidoffset; - __le32 sacloffset; - __le32 dacloffset; -}; - -struct smb_sid { - __u8 revision; - __u8 num_subauth; - __u8 authority[6]; - __le32 sub_auth[15]; -}; - -struct reparse_data_buffer { - __le32 ReparseTag; - __le16 ReparseDataLength; - __u16 Reserved; - __u8 DataBuffer[0]; -}; - -struct smb2_file_all_info { - __le64 CreationTime; - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le32 Attributes; - __u32 Pad1; - __le64 AllocationSize; - __le64 EndOfFile; - __le32 NumberOfLinks; - __u8 DeletePending; - __u8 Directory; - __u16 Pad2; - __le64 IndexNumber; - __le32 EASize; - __le32 AccessFlags; - __le64 CurrentByteOffset; - __le32 Mode; - __le32 AlignmentRequirement; - __le32 FileNameLength; - union { - char __pad; - struct { - struct {} __empty_FileName; - char FileName[0]; - }; - }; -} __attribute__((packed)); - -struct smb311_posix_qinfo { - __le64 CreationTime; - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le64 EndOfFile; - __le64 AllocationSize; - __le32 DosAttributes; - __le64 Inode; - __le32 DeviceId; - __le32 Zero; - __le32 HardLinks; - __le32 ReparseTag; - __le32 Mode; - u8 Sids[0]; -} __attribute__((packed)); - -enum statusEnum { - CifsNew = 0, - CifsGood = 1, - CifsExiting = 2, - CifsNeedReconnect = 3, - CifsNeedNegotiate = 4, - CifsInNegotiate = 5, -}; - -enum ses_status_enum { - SES_NEW = 0, - SES_GOOD = 1, - SES_EXITING = 2, - SES_NEED_RECON = 3, - SES_IN_SETUP = 4, -}; - -enum tid_status_enum { - TID_NEW = 0, - TID_GOOD = 1, - TID_EXITING = 2, - TID_NEED_RECON = 3, - TID_NEED_TCON = 4, - TID_IN_TCON = 5, - TID_NEED_FILES_INVALIDATE = 6, - TID_IN_FILES_INVALIDATE = 7, -}; - -struct session_key { - unsigned int len; - char *response; -}; - -struct cifs_secmech { - struct shash_desc *md5; - struct shash_desc *hmacsha256; - struct shash_desc *sha512; - struct shash_desc *aes_cmac; - struct crypto_aead *enc; - struct crypto_aead *dec; -}; - -struct ntlmssp_auth { - bool sesskey_per_smbsess; - __u32 client_flags; - __u32 server_flags; - unsigned char ciphertext[16]; - char cryptkey[8]; -}; - -struct cifs_open_info_data { - bool adjust_tz; - bool reparse_point; - bool contains_posix_file_info; - struct { - struct { - int buftype; - struct kvec iov; - } io; - __u32 tag; - union { - struct reparse_data_buffer *buf; - struct reparse_posix_data *posix; - }; - } reparse; - struct { - __u8 eas[84]; - unsigned int eas_len; - } wsl; - char *symlink_target; - struct smb_sid posix_owner; - struct smb_sid posix_group; - union { - struct smb2_file_all_info fi; - struct smb311_posix_qinfo posix_fi; - }; -}; - -struct smb_rqst { - struct kvec *rq_iov; - unsigned int rq_nvec; - struct iov_iter rq_iter; - struct folio_queue *rq_buffer; -}; - -struct TCP_Server_Info; - -struct mid_q_entry; - -struct cifsFileInfo; - -struct cifs_credits; - -struct cifsInodeInfo; - -struct dfs_info3_param; - -struct cifs_open_parms; - -struct cifs_fid; - -struct cifs_io_subrequest; - -struct cifs_io_parms; - -struct cifs_search_info; - -struct smb_version_operations { - int (*send_cancel)(struct TCP_Server_Info *, struct smb_rqst *, struct mid_q_entry *); - bool (*compare_fids)(struct cifsFileInfo *, struct cifsFileInfo *); - struct mid_q_entry * (*setup_request)(struct cifs_ses *, struct TCP_Server_Info *, struct smb_rqst *); - struct mid_q_entry * (*setup_async_request)(struct TCP_Server_Info *, struct smb_rqst *); - int (*check_receive)(struct mid_q_entry *, struct TCP_Server_Info *, bool); - void (*add_credits)(struct TCP_Server_Info *, struct cifs_credits *, const int); - void (*set_credits)(struct TCP_Server_Info *, const int); - int * (*get_credits_field)(struct TCP_Server_Info *, const int); - unsigned int (*get_credits)(struct mid_q_entry *); - __u64 (*get_next_mid)(struct TCP_Server_Info *); - void (*revert_current_mid)(struct TCP_Server_Info *, const unsigned int); - unsigned int (*read_data_offset)(char *); - unsigned int (*read_data_length)(char *, bool); - int (*map_error)(char *, bool); - struct mid_q_entry * (*find_mid)(struct TCP_Server_Info *, char *); - void (*dump_detail)(void *, struct TCP_Server_Info *); - void (*clear_stats)(struct cifs_tcon *); - void (*print_stats)(struct seq_file *, struct cifs_tcon *); - void (*dump_share_caps)(struct seq_file *, struct cifs_tcon *); - int (*check_message)(char *, unsigned int, struct TCP_Server_Info *); - bool (*is_oplock_break)(char *, struct TCP_Server_Info *); - int (*handle_cancelled_mid)(struct mid_q_entry *, struct TCP_Server_Info *); - void (*downgrade_oplock)(struct TCP_Server_Info *, struct cifsInodeInfo *, __u32, __u16, bool *); - bool (*check_trans2)(struct mid_q_entry *, struct TCP_Server_Info *, char *, int); - bool (*need_neg)(struct TCP_Server_Info *); - int (*negotiate)(const unsigned int, struct cifs_ses *, struct TCP_Server_Info *); - unsigned int (*negotiate_wsize)(struct cifs_tcon *, struct smb3_fs_context *); - unsigned int (*negotiate_rsize)(struct cifs_tcon *, struct smb3_fs_context *); - int (*sess_setup)(const unsigned int, struct cifs_ses *, struct TCP_Server_Info *, const struct nls_table *); - int (*logoff)(const unsigned int, struct cifs_ses *); - int (*tree_connect)(const unsigned int, struct cifs_ses *, const char *, struct cifs_tcon *, const struct nls_table *); - int (*tree_disconnect)(const unsigned int, struct cifs_tcon *); - int (*get_dfs_refer)(const unsigned int, struct cifs_ses *, const char *, struct dfs_info3_param **, unsigned int *, const struct nls_table *, int); - void (*qfs_tcon)(const unsigned int, struct cifs_tcon *, struct cifs_sb_info *); - int (*query_server_interfaces)(const unsigned int, struct cifs_tcon *, bool); - int (*is_path_accessible)(const unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const char *); - int (*query_path_info)(const unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const char *, struct cifs_open_info_data *); - int (*query_file_info)(const unsigned int, struct cifs_tcon *, struct cifsFileInfo *, struct cifs_open_info_data *); - int (*query_reparse_point)(const unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const char *, u32 *, struct kvec *, int *); - int (*get_srv_inum)(const unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const char *, u64 *, struct cifs_open_info_data *); - int (*set_path_size)(const unsigned int, struct cifs_tcon *, const char *, __u64, struct cifs_sb_info *, bool, struct dentry *); - int (*set_file_size)(const unsigned int, struct cifs_tcon *, struct cifsFileInfo *, __u64, bool); - int (*set_file_info)(struct inode *, const char *, FILE_BASIC_INFO *, const unsigned int); - int (*set_compression)(const unsigned int, struct cifs_tcon *, struct cifsFileInfo *); - bool (*can_echo)(struct TCP_Server_Info *); - int (*echo)(struct TCP_Server_Info *); - int (*posix_mkdir)(const unsigned int, struct inode *, umode_t, struct cifs_tcon *, const char *, struct cifs_sb_info *); - int (*mkdir)(const unsigned int, struct inode *, umode_t, struct cifs_tcon *, const char *, struct cifs_sb_info *); - void (*mkdir_setinfo)(struct inode *, const char *, struct cifs_sb_info *, struct cifs_tcon *, const unsigned int); - int (*rmdir)(const unsigned int, struct cifs_tcon *, const char *, struct cifs_sb_info *); - int (*unlink)(const unsigned int, struct cifs_tcon *, const char *, struct cifs_sb_info *, struct dentry *); - int (*rename_pending_delete)(const char *, struct dentry *, const unsigned int); - int (*rename)(const unsigned int, struct cifs_tcon *, struct dentry *, const char *, const char *, struct cifs_sb_info *); - int (*create_hardlink)(const unsigned int, struct cifs_tcon *, struct dentry *, const char *, const char *, struct cifs_sb_info *); - int (*query_symlink)(const unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const char *, char **); - int (*open)(const unsigned int, struct cifs_open_parms *, __u32 *, void *); - void (*set_fid)(struct cifsFileInfo *, struct cifs_fid *, __u32); - int (*close)(const unsigned int, struct cifs_tcon *, struct cifs_fid *); - int (*close_getattr)(const unsigned int, struct cifs_tcon *, struct cifsFileInfo *); - int (*flush)(const unsigned int, struct cifs_tcon *, struct cifs_fid *); - int (*async_readv)(struct cifs_io_subrequest *); - void (*async_writev)(struct cifs_io_subrequest *); - int (*sync_read)(const unsigned int, struct cifs_fid *, struct cifs_io_parms *, unsigned int *, char **, int *); - int (*sync_write)(const unsigned int, struct cifs_fid *, struct cifs_io_parms *, unsigned int *, struct kvec *, long unsigned int); - int (*query_dir_first)(const unsigned int, struct cifs_tcon *, const char *, struct cifs_sb_info *, struct cifs_fid *, __u16, struct cifs_search_info *); - int (*query_dir_next)(const unsigned int, struct cifs_tcon *, struct cifs_fid *, __u16, struct cifs_search_info *); - int (*close_dir)(const unsigned int, struct cifs_tcon *, struct cifs_fid *); - unsigned int (*calc_smb_size)(void *); - bool (*is_status_pending)(char *, struct TCP_Server_Info *); - bool (*is_session_expired)(char *); - int (*oplock_response)(struct cifs_tcon *, __u64, __u64, __u16, struct cifsInodeInfo *); - int (*queryfs)(const unsigned int, struct cifs_tcon *, const char *, struct cifs_sb_info *, struct kstatfs *); - int (*mand_lock)(const unsigned int, struct cifsFileInfo *, __u64, __u64, __u32, int, int, bool); - int (*mand_unlock_range)(struct cifsFileInfo *, struct file_lock *, const unsigned int); - int (*push_mand_locks)(struct cifsFileInfo *); - void (*get_lease_key)(struct inode *, struct cifs_fid *); - void (*set_lease_key)(struct inode *, struct cifs_fid *); - void (*new_lease_key)(struct cifs_fid *); - int (*generate_signingkey)(struct cifs_ses *, struct TCP_Server_Info *); - int (*calc_signature)(struct smb_rqst *, struct TCP_Server_Info *, bool); - int (*set_integrity)(const unsigned int, struct cifs_tcon *, struct cifsFileInfo *); - int (*enum_snapshots)(const unsigned int, struct cifs_tcon *, struct cifsFileInfo *, void *); - int (*notify)(const unsigned int, struct file *, void *, bool); - int (*query_mf_symlink)(unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const unsigned char *, char *, unsigned int *); - int (*create_mf_symlink)(unsigned int, struct cifs_tcon *, struct cifs_sb_info *, const unsigned char *, char *, unsigned int *); - bool (*is_read_op)(__u32); - void (*set_oplock_level)(struct cifsInodeInfo *, __u32, __u16, bool *); - char * (*create_lease_buf)(u8 *, u8); - __u8 (*parse_lease_buf)(void *, __u16 *, char *); - ssize_t (*copychunk_range)(const unsigned int, struct cifsFileInfo *, struct cifsFileInfo *, u64, u64, u64); - int (*duplicate_extents)(const unsigned int, struct cifsFileInfo *, struct cifsFileInfo *, u64, u64, u64); - int (*validate_negotiate)(const unsigned int, struct cifs_tcon *); - ssize_t (*query_all_EAs)(const unsigned int, struct cifs_tcon *, const unsigned char *, const unsigned char *, char *, size_t, struct cifs_sb_info *); - int (*set_EA)(const unsigned int, struct cifs_tcon *, const char *, const char *, const void *, const __u16, const struct nls_table *, struct cifs_sb_info *); - struct smb_ntsd * (*get_acl)(struct cifs_sb_info *, struct inode *, const char *, u32 *, u32); - struct smb_ntsd * (*get_acl_by_fid)(struct cifs_sb_info *, const struct cifs_fid *, u32 *, u32); - int (*set_acl)(struct smb_ntsd *, __u32, struct inode *, const char *, int); - unsigned int (*wp_retry_size)(struct inode *); - int (*wait_mtu_credits)(struct TCP_Server_Info *, size_t, size_t *, struct cifs_credits *); - int (*adjust_credits)(struct TCP_Server_Info *, struct cifs_io_subrequest *, unsigned int); - bool (*dir_needs_close)(struct cifsFileInfo *); - long int (*fallocate)(struct file *, struct cifs_tcon *, int, loff_t, loff_t); - int (*init_transform_rq)(struct TCP_Server_Info *, int, struct smb_rqst *, struct smb_rqst *); - int (*is_transform_hdr)(void *); - int (*receive_transform)(struct TCP_Server_Info *, struct mid_q_entry **, char **, int *); - enum securityEnum (*select_sectype)(struct TCP_Server_Info *, enum securityEnum); - int (*next_header)(struct TCP_Server_Info *, char *, unsigned int *); - int (*ioctl_query_info)(const unsigned int, struct cifs_tcon *, struct cifs_sb_info *, __le16 *, int, long unsigned int); - int (*make_node)(unsigned int, struct inode *, struct dentry *, struct cifs_tcon *, const char *, umode_t, dev_t); - int (*fiemap)(struct cifs_tcon *, struct cifsFileInfo *, struct fiemap_extent_info *, u64, u64); - loff_t (*llseek)(struct file *, struct cifs_tcon *, loff_t, int); - bool (*is_status_io_timeout)(char *); - bool (*is_network_name_deleted)(char *, struct TCP_Server_Info *); - int (*parse_reparse_point)(struct cifs_sb_info *, const char *, struct kvec *, struct cifs_open_info_data *); - int (*create_reparse_symlink)(const unsigned int, struct inode *, struct dentry *, struct cifs_tcon *, const char *, const char *); -}; - -struct smbd_connection; - -struct TCP_Server_Info { - struct list_head tcp_ses_list; - struct list_head smb_ses_list; - struct list_head rlist; - spinlock_t srv_lock; - __u64 conn_id; - int srv_count; - char server_RFC1001_name[16]; - struct smb_version_operations *ops; - struct smb_version_values *vals; - enum statusEnum tcpStatus; - char *hostname; - struct socket *ssocket; - struct __kernel_sockaddr_storage dstaddr; - struct __kernel_sockaddr_storage srcaddr; - struct net *net; - wait_queue_head_t response_q; - wait_queue_head_t request_q; - spinlock_t mid_lock; - struct list_head pending_mid_q; - bool noblocksnd; - bool noautotune; - bool nosharesock; - bool tcp_nodelay; - bool terminate; - unsigned int credits; - unsigned int max_credits; - unsigned int in_flight; - unsigned int max_in_flight; - spinlock_t req_lock; - struct mutex _srv_mutex; - unsigned int nofs_flag; - struct task_struct *tsk; - char server_GUID[16]; - __u16 sec_mode; - bool sign; - bool ignore_signature: 1; - bool session_estab; - int echo_credits; - int oplock_credits; - bool echoes: 1; - __u8 client_guid[16]; - u16 dialect; - bool oplocks: 1; - unsigned int maxReq; - unsigned int maxBuf; - unsigned int max_rw; - unsigned int capabilities; - int timeAdj; - __u64 CurrentMid; - char cryptkey[8]; - char workstation_RFC1001_name[16]; - __u32 sequence_number; - __u32 reconnect_instance; - __le32 session_key_id; - struct session_key session_key; - long unsigned int lstrp; - long unsigned int neg_start; - struct cifs_secmech secmech; - char negflavor; - bool sec_ntlmssp; - bool sec_kerberosu2u; - bool sec_kerberos; - bool sec_mskerberos; - bool sec_iakerb; - bool large_buf; - bool rdma; - struct smbd_connection *smbd_conn; - struct delayed_work echo; - char *smallbuf; - char *bigbuf; - unsigned int pdu_size; - unsigned int total_read; - atomic_t in_send; - atomic_t num_waiters; - unsigned int max_read; - unsigned int max_write; - unsigned int min_offload; - unsigned int retrans; - struct { - bool requested; - bool enabled; - __le16 alg; - } compression; - __u16 signing_algorithm; - __le16 cipher_type; - __u8 preauth_sha_hash[64]; - bool signing_negotiated; - bool posix_ext_supported; - struct delayed_work reconnect; - struct mutex reconnect_mutex; - long unsigned int echo_interval; - int nr_targets; - bool noblockcnt; - struct TCP_Server_Info *primary_server; - __u16 channel_sequence_num; - struct mutex refpath_lock; - char *leaf_fullpath; - bool dfs_conn: 1; -}; - -typedef int mid_receive_t(struct TCP_Server_Info *, struct mid_q_entry *); - -typedef void mid_callback_t(struct mid_q_entry *); - -typedef int mid_handle_t(struct TCP_Server_Info *, struct mid_q_entry *); - -struct mid_q_entry { - struct list_head qhead; - struct kref refcount; - struct TCP_Server_Info *server; - __u64 mid; - __u16 credits; - __u16 credits_received; - __u32 pid; - __u32 sequence_number; - long unsigned int when_alloc; - mid_receive_t *receive; - mid_callback_t *callback; - mid_handle_t *handle; - void *callback_data; - struct task_struct *creator; - void *resp_buf; - unsigned int resp_buf_size; - int mid_state; - unsigned int mid_flags; - __le16 command; - unsigned int optype; - bool large_buf: 1; - bool multiRsp: 1; - bool multiEnd: 1; - bool decrypted: 1; -}; - -struct cifs_pending_open; - -struct cifs_fid { - __u16 netfid; - __u64 persistent_fid; - __u64 volatile_fid; - __u8 lease_key[16]; - __u8 create_guid[16]; - __u32 access; - struct cifs_pending_open *pending_open; - __u16 epoch; - bool purge_cache; -}; - -struct cifs_search_info { - loff_t index_of_last_entry; - __u16 entries_in_buffer; - __u16 info_level; - __u32 resume_key; - char *ntwrk_buf_start; - char *srch_entries_start; - char *last_entry; - const char *presume_name; - unsigned int resume_name_len; - bool endOfSearch: 1; - bool emptyDir: 1; - bool unicode: 1; - bool smallBuf: 1; -}; - -struct cifs_fid_locks; - -struct cifsFileInfo { - struct list_head tlist; - struct list_head flist; - struct cifs_fid_locks *llist; - kuid_t uid; - __u32 pid; - struct cifs_fid fid; - struct list_head rlist; - struct dentry *dentry; - struct tcon_link *tlink; - unsigned int f_flags; - bool invalidHandle: 1; - bool swapfile: 1; - bool oplock_break_cancelled: 1; - bool status_file_deleted: 1; - bool offload: 1; - __u16 oplock_epoch; - __u32 oplock_level; - int count; - spinlock_t file_info_lock; - struct mutex fh_mutex; - struct cifs_search_info srch_inf; - struct work_struct oplock_break; - struct work_struct put; - struct work_struct serverclose; - struct delayed_work deferred; - bool deferred_close_scheduled; - char *symlink_target; -}; - -struct cifs_server_iface; - -struct cifs_chan { - unsigned int in_reconnect: 1; - struct TCP_Server_Info *server; - struct cifs_server_iface *iface; - __u8 signkey[16]; -}; - -struct cifs_ses { - struct list_head smb_ses_list; - struct list_head rlist; - struct list_head tcon_list; - struct list_head dlist; - struct cifs_tcon *tcon_ipc; - spinlock_t ses_lock; - struct mutex session_mutex; - struct TCP_Server_Info *server; - int ses_count; - enum ses_status_enum ses_status; - unsigned int overrideSecFlg; - char *serverOS; - char *serverNOS; - char *serverDomain; - __u64 Suid; - kuid_t linux_uid; - kuid_t cred_uid; - unsigned int capabilities; - char ip_addr[49]; - char *user_name; - char *domainName; - char *password; - char *password2; - char workstation_name[65]; - struct session_key auth_key; - struct ntlmssp_auth *ntlmssp; - enum securityEnum sectype; - enum upcall_target_enum upcall_target; - bool sign; - bool domainAuto: 1; - bool expired_pwd; - unsigned int flags; - __u16 session_flags; - __u8 smb3signingkey[16]; - __u8 smb3encryptionkey[32]; - __u8 smb3decryptionkey[32]; - __u8 preauth_sha_hash[64]; - spinlock_t iface_lock; - struct list_head iface_list; - size_t iface_count; - long unsigned int iface_last_update; - spinlock_t chan_lock; - struct cifs_chan chans[16]; - size_t chan_count; - size_t chan_max; - atomic_t chan_seq; - long unsigned int chans_need_reconnect; - struct cifs_ses *dfs_root_ses; - struct nls_table *local_nls; -}; - -struct cifs_credits { - unsigned int value; - unsigned int instance; - unsigned int in_flight_check; - unsigned int rreq_debug_id; - unsigned int rreq_debug_index; -}; - -struct cached_fids; - -struct cifs_tcon { - struct list_head tcon_list; - int debug_id; - int tc_count; - struct list_head rlist; - spinlock_t tc_lock; - atomic_t num_local_opens; - atomic_t num_remote_opens; - struct list_head openFileList; - spinlock_t open_file_lock; - struct cifs_ses *ses; - char tree_name[1285]; - char *nativeFileSystem; - char *password; - __u32 tid; - __u16 Flags; - enum tid_status_enum status; - atomic_t num_smbs_sent; - union { - struct { - atomic_t num_writes; - atomic_t num_reads; - atomic_t num_flushes; - atomic_t num_oplock_brks; - atomic_t num_opens; - atomic_t num_closes; - atomic_t num_deletes; - atomic_t num_mkdirs; - atomic_t num_posixopens; - atomic_t num_posixmkdirs; - atomic_t num_rmdirs; - atomic_t num_renames; - atomic_t num_t2renames; - atomic_t num_ffirst; - atomic_t num_fnext; - atomic_t num_fclose; - atomic_t num_hardlinks; - atomic_t num_symlinks; - atomic_t num_locks; - atomic_t num_acl_get; - atomic_t num_acl_set; - } cifs_stats; - struct { - atomic_t smb2_com_sent[19]; - atomic_t smb2_com_failed[19]; - } smb2_stats; - } stats; - __u64 bytes_read; - __u64 bytes_written; - spinlock_t stat_lock; - time64_t stats_from_time; - FILE_SYSTEM_DEVICE_INFO fsDevInfo; - FILE_SYSTEM_ATTRIBUTE_INFO fsAttrInfo; - FILE_SYSTEM_UNIX_INFO fsUnixInfo; - bool ipc: 1; - bool pipe: 1; - bool print: 1; - bool retry: 1; - bool nocase: 1; - bool nohandlecache: 1; - bool nodelete: 1; - bool seal: 1; - bool unix_ext: 1; - bool posix_extensions; - bool local_lease: 1; - bool broken_posix_open; - bool broken_sparse_sup; - bool need_reconnect: 1; - bool need_reopen_files: 1; - bool use_resilient: 1; - bool use_persistent: 1; - bool no_lease: 1; - bool use_witness: 1; - bool dummy: 1; - __le32 capabilities; - __u32 share_flags; - __u32 maximal_access; - __u32 vol_serial_number; - __le64 vol_create_time; - __u64 snapshot_time; - __u32 handle_timeout; - __u32 ss_flags; - __u32 perf_sector_size; - __u32 max_chunks; - __u32 max_bytes_chunk; - __u32 max_bytes_copy; - __u32 max_cached_dirs; - u64 resource_id; - bool fscache_acquired; - struct fscache_volume *fscache; - struct mutex fscache_lock; - struct list_head pending_opens; - struct cached_fids *cfids; - struct delayed_work dfs_cache_work; - struct list_head dfs_ses_list; - struct delayed_work query_interfaces; - char *origin_fullpath; -}; - -struct cifsInodeInfo { - struct netfs_inode netfs; - bool can_cache_brlcks; - struct list_head llist; - struct rw_semaphore lock_sem; - struct list_head openFileList; - spinlock_t open_file_lock; - __u32 cifsAttrs; - unsigned int oplock; - __u16 epoch; - long unsigned int flags; - spinlock_t writers_lock; - unsigned int writers; - long unsigned int time; - u64 uniqueid; - u64 createtime; - __u8 lease_key[16]; - struct list_head deferred_closes; - spinlock_t deferred_lock; - bool lease_granted; - char *symlink_target; - __u32 reparse_tag; -}; - -struct dfs_info3_param { - int flags; - int path_consumed; - int server_type; - int ref_flag; - char *path_name; - char *node_name; - int ttl; -}; - -struct cifs_open_parms { - struct cifs_tcon *tcon; - struct cifs_sb_info *cifs_sb; - int disposition; - int desired_access; - int create_options; - const char *path; - struct cifs_fid *fid; - umode_t mode; - bool reconnect: 1; - bool replay: 1; - struct kvec *ea_cctx; -}; - -struct cifs_io_request; - -struct cifs_io_subrequest { - union { - struct netfs_io_subrequest subreq; - struct netfs_io_request *rreq; - struct cifs_io_request *req; - }; - ssize_t got_bytes; - unsigned int xid; - int result; - bool have_xid; - bool replay; - struct kvec iov[2]; - struct TCP_Server_Info *server; - struct cifs_credits credits; -}; - -struct cifs_io_parms { - __u16 netfid; - __u64 persistent_fid; - __u64 volatile_fid; - __u32 pid; - __u64 offset; - unsigned int length; - struct cifs_tcon *tcon; - struct TCP_Server_Info *server; -}; - -struct smb_version_values { - char *version_string; - __u16 protocol_id; - __u32 req_capabilities; - __u32 large_lock_type; - __u32 exclusive_lock_type; - __u32 shared_lock_type; - __u32 unlock_lock_type; - size_t header_preamble_size; - size_t header_size; - size_t max_header_size; - size_t read_rsp_size; - __le16 lock_cmd; - unsigned int cap_unix; - unsigned int cap_nt_find; - unsigned int cap_large_files; - __u16 signing_enabled; - __u16 signing_required; - size_t create_lease_size; -}; - -struct cifs_server_iface { - struct list_head iface_head; - struct kref refcount; - size_t speed; - size_t weight_fulfilled; - unsigned int num_channels; - unsigned int rdma_capable: 1; - unsigned int rss_capable: 1; - unsigned int is_active: 1; - struct __kernel_sockaddr_storage sockaddr; -}; - -struct cifs_pending_open { - struct list_head olist; - struct tcon_link *tlink; - __u8 lease_key[16]; - __u32 oplock; -}; - -struct cifs_fid_locks { - struct list_head llist; - struct cifsFileInfo *cfile; - struct list_head locks; -}; - -struct cifs_io_request { - struct netfs_io_request rreq; - struct cifsFileInfo *cfile; - pid_t pid; -}; - -enum utf8_normalization { - UTF8_NFDI = 0, - UTF8_NFDICF = 1, - UTF8_NMAX = 2, -}; - -struct cifs_fscache_inode_coherency_data { - __le64 last_write_time_sec; - __le64 last_change_time_sec; - __le32 last_write_time_nsec; - __le32 last_change_time_nsec; -}; - -struct smb2_hdr { - __le32 ProtocolId; - __le16 StructureSize; - __le16 CreditCharge; - __le32 Status; - __le16 Command; - __le16 CreditRequest; - __le32 Flags; - __le32 NextCommand; - __le64 MessageId; - union { - struct { - __le32 ProcessId; - __le32 TreeId; - } SyncId; - __le64 AsyncId; - } Id; - __le64 SessionId; - __u8 Signature[16]; -}; - -struct status_to_posix_error { - __le32 smb2_status; - int posix_error; - char *status_string; -}; - -struct cifs_mount_ctx { - struct cifs_sb_info *cifs_sb; - struct smb3_fs_context *fs_ctx; - unsigned int xid; - struct TCP_Server_Info *server; - struct cifs_ses *ses; - struct cifs_tcon *tcon; -}; - -struct dfs_cache_tgt_list { - int tl_numtgts; - struct list_head tl_list; -}; - -struct dfs_cache_tgt_iterator { - char *it_name; - int it_path_consumed; - struct list_head it_list; -}; - -struct dfs_ref { - char *path; - char *full_path; - struct cifs_ses *ses; - struct dfs_cache_tgt_list tl; - struct dfs_cache_tgt_iterator *tit; -}; - -struct dfs_ref_walk { - struct dfs_ref *ref; - struct dfs_ref refs[8]; -}; - -typedef unsigned int autofs_wqt_t; - -struct autofs_sb_info; - -struct autofs_info { - struct dentry *dentry; - int flags; - struct completion expire_complete; - struct list_head active; - struct list_head expiring; - struct autofs_sb_info *sbi; - long unsigned int exp_timeout; - long unsigned int last_used; - int count; - kuid_t uid; - kgid_t gid; - struct callback_head rcu; -}; - -struct autofs_wait_queue; - -struct autofs_sb_info { - u32 magic; - int pipefd; - struct file *pipe; - struct pid *oz_pgrp; - int version; - int sub_version; - int min_proto; - int max_proto; - unsigned int flags; - long unsigned int exp_timeout; - unsigned int type; - struct super_block *sb; - struct mutex wq_mutex; - struct mutex pipe_mutex; - spinlock_t fs_lock; - struct autofs_wait_queue *queues; - spinlock_t lookup_lock; - struct list_head active_list; - struct list_head expiring_list; - struct callback_head rcu; -}; - -struct autofs_wait_queue { - wait_queue_head_t queue; - struct autofs_wait_queue *next; - autofs_wqt_t wait_queue_token; - struct qstr name; - u32 offset; - u32 dev; - u64 ino; - kuid_t uid; - kgid_t gid; - pid_t pid; - pid_t tgid; - int status; - unsigned int wait_ctr; -}; - -typedef u16 uint16_t; - -typedef s64 int64_t; - -struct fuse_attr { - uint64_t ino; - uint64_t size; - uint64_t blocks; - uint64_t atime; - uint64_t mtime; - uint64_t ctime; - uint32_t atimensec; - uint32_t mtimensec; - uint32_t ctimensec; - uint32_t mode; - uint32_t nlink; - uint32_t uid; - uint32_t gid; - uint32_t rdev; - uint32_t blksize; - uint32_t flags; -}; - -struct fuse_sx_time { - int64_t tv_sec; - uint32_t tv_nsec; - int32_t __reserved; -}; - -struct fuse_statx { - uint32_t mask; - uint32_t blksize; - uint64_t attributes; - uint32_t nlink; - uint32_t uid; - uint32_t gid; - uint16_t mode; - uint16_t __spare0[1]; - uint64_t ino; - uint64_t size; - uint64_t blocks; - uint64_t attributes_mask; - struct fuse_sx_time atime; - struct fuse_sx_time btime; - struct fuse_sx_time ctime; - struct fuse_sx_time mtime; - uint32_t rdev_major; - uint32_t rdev_minor; - uint32_t dev_major; - uint32_t dev_minor; - uint64_t __spare2[14]; -}; - -enum fuse_ext_type { - FUSE_MAX_NR_SECCTX = 31, - FUSE_EXT_GROUPS = 32, -}; - -enum fuse_opcode { - FUSE_LOOKUP = 1, - FUSE_FORGET = 2, - FUSE_GETATTR = 3, - FUSE_SETATTR = 4, - FUSE_READLINK = 5, - FUSE_SYMLINK = 6, - FUSE_MKNOD = 8, - FUSE_MKDIR = 9, - FUSE_UNLINK = 10, - FUSE_RMDIR = 11, - FUSE_RENAME = 12, - FUSE_LINK = 13, - FUSE_OPEN = 14, - FUSE_READ = 15, - FUSE_WRITE = 16, - FUSE_STATFS = 17, - FUSE_RELEASE = 18, - FUSE_FSYNC = 20, - FUSE_SETXATTR = 21, - FUSE_GETXATTR = 22, - FUSE_LISTXATTR = 23, - FUSE_REMOVEXATTR = 24, - FUSE_FLUSH = 25, - FUSE_INIT = 26, - FUSE_OPENDIR = 27, - FUSE_READDIR = 28, - FUSE_RELEASEDIR = 29, - FUSE_FSYNCDIR = 30, - FUSE_GETLK = 31, - FUSE_SETLK = 32, - FUSE_SETLKW = 33, - FUSE_ACCESS = 34, - FUSE_CREATE = 35, - FUSE_INTERRUPT = 36, - FUSE_BMAP = 37, - FUSE_DESTROY = 38, - FUSE_IOCTL = 39, - FUSE_POLL = 40, - FUSE_NOTIFY_REPLY = 41, - FUSE_BATCH_FORGET = 42, - FUSE_FALLOCATE = 43, - FUSE_READDIRPLUS = 44, - FUSE_RENAME2 = 45, - FUSE_LSEEK = 46, - FUSE_COPY_FILE_RANGE = 47, - FUSE_SETUPMAPPING = 48, - FUSE_REMOVEMAPPING = 49, - FUSE_SYNCFS = 50, - FUSE_TMPFILE = 51, - FUSE_STATX = 52, - CUSE_INIT = 4096, - CUSE_INIT_BSWAP_RESERVED = 1048576, - FUSE_INIT_BSWAP_RESERVED = 436207616, -}; - -struct fuse_entry_out { - uint64_t nodeid; - uint64_t generation; - uint64_t entry_valid; - uint64_t attr_valid; - uint32_t entry_valid_nsec; - uint32_t attr_valid_nsec; - struct fuse_attr attr; -}; - -struct fuse_forget_one { - uint64_t nodeid; - uint64_t nlookup; -}; - -struct fuse_getattr_in { - uint32_t getattr_flags; - uint32_t dummy; - uint64_t fh; -}; - -struct fuse_attr_out { - uint64_t attr_valid; - uint32_t attr_valid_nsec; - uint32_t dummy; - struct fuse_attr attr; -}; - -struct fuse_statx_in { - uint32_t getattr_flags; - uint32_t reserved; - uint64_t fh; - uint32_t sx_flags; - uint32_t sx_mask; -}; - -struct fuse_statx_out { - uint64_t attr_valid; - uint32_t attr_valid_nsec; - uint32_t flags; - uint64_t spare[2]; - struct fuse_statx stat; -}; - -struct fuse_mknod_in { - uint32_t mode; - uint32_t rdev; - uint32_t umask; - uint32_t padding; -}; - -struct fuse_mkdir_in { - uint32_t mode; - uint32_t umask; -}; - -struct fuse_rename2_in { - uint64_t newdir; - uint32_t flags; - uint32_t padding; -}; - -struct fuse_link_in { - uint64_t oldnodeid; -}; - -struct fuse_setattr_in { - uint32_t valid; - uint32_t padding; - uint64_t fh; - uint64_t size; - uint64_t lock_owner; - uint64_t atime; - uint64_t mtime; - uint64_t ctime; - uint32_t atimensec; - uint32_t mtimensec; - uint32_t ctimensec; - uint32_t mode; - uint32_t unused4; - uint32_t uid; - uint32_t gid; - uint32_t unused5; -}; - -struct fuse_create_in { - uint32_t flags; - uint32_t mode; - uint32_t umask; - uint32_t open_flags; -}; - -struct fuse_open_out { - uint64_t fh; - uint32_t open_flags; - int32_t backing_id; -}; - -struct fuse_release_in { - uint64_t fh; - uint32_t flags; - uint32_t release_flags; - uint64_t lock_owner; -}; - -struct fuse_access_in { - uint32_t mask; - uint32_t padding; -}; - -struct fuse_in_header { - uint32_t len; - uint32_t opcode; - uint64_t unique; - uint64_t nodeid; - uint32_t uid; - uint32_t gid; - uint32_t pid; - uint16_t total_extlen; - uint16_t padding; -}; - -struct fuse_out_header { - uint32_t len; - int32_t error; - uint64_t unique; -}; - -struct fuse_secctx { - uint32_t size; - uint32_t padding; -}; - -struct fuse_secctx_header { - uint32_t size; - uint32_t nr_secctx; -}; - -struct fuse_ext_header { - uint32_t size; - uint32_t type; -}; - -struct fuse_supp_groups { - uint32_t nr_groups; - uint32_t groups[0]; -}; - -enum inode_i_mutex_lock_class { - I_MUTEX_NORMAL = 0, - I_MUTEX_PARENT = 1, - I_MUTEX_CHILD = 2, - I_MUTEX_XATTR = 3, - I_MUTEX_NONDIR2 = 4, - I_MUTEX_PARENT2 = 5, -}; - -struct fuse_forget_link { - struct fuse_forget_one forget_one; - struct fuse_forget_link *next; -}; - -struct fuse_submount_lookup { - refcount_t count; - u64 nodeid; - struct fuse_forget_link *forget; -}; - -struct fuse_backing { - struct file *file; - struct cred *cred; - refcount_t count; - struct callback_head rcu; -}; - -struct fuse_inode { - struct inode inode; - u64 nodeid; - u64 nlookup; - struct fuse_forget_link *forget; - u64 i_time; - u32 inval_mask; - umode_t orig_i_mode; - struct timespec64 i_btime; - u64 orig_ino; - u64 attr_version; - union { - struct { - struct list_head write_files; - struct list_head queued_writes; - int writectr; - int iocachectr; - wait_queue_head_t page_waitq; - wait_queue_head_t direct_io_waitq; - struct rb_root writepages; - }; - struct { - bool cached; - loff_t size; - loff_t pos; - u64 version; - struct timespec64 mtime; - u64 iversion; - spinlock_t lock; - } rdc; - }; - long unsigned int state; - struct mutex mutex; - spinlock_t lock; - struct fuse_submount_lookup *submount_lookup; - struct fuse_backing *fb; - bool ewb_invalid_cache_mask; -}; - -enum { - FUSE_I_ADVISE_RDPLUS = 0, - FUSE_I_INIT_RDPLUS = 1, - FUSE_I_SIZE_UNSTABLE = 2, - FUSE_I_BAD = 3, - FUSE_I_BTIME = 4, - FUSE_I_CACHE_IO_MODE = 5, -}; - -struct fuse_mount; - -union fuse_file_args; - -struct fuse_file { - struct fuse_mount *fm; - union fuse_file_args *args; - u64 kh; - u64 fh; - u64 nodeid; - refcount_t count; - u32 open_flags; - struct list_head write_entry; - struct { - loff_t pos; - loff_t cache_off; - u64 version; - } readdir; - struct rb_node polled_node; - wait_queue_head_t poll_wait; - enum { - IOM_NONE = 0, - IOM_CACHED = 1, - IOM_UNCACHED = 2, - } iomode; - struct file *passthrough; - const struct cred *cred; - bool flock: 1; -}; - -struct fuse_conn; - -struct fuse_mount { - struct fuse_conn *fc; - struct super_block *sb; - u32 negative_dentry_timeout; - u32 entry_timeout; - u32 attr_timeout; - bool no_flush; - bool no_xattr; - bool ignore_atime; - bool trace_rpc; - bool keep_cache; - bool writeback_cache; - struct list_head fc_entry; - struct callback_head rcu; -}; - -struct fuse_in_arg { - unsigned int size; - const void *value; -}; - -struct fuse_arg { - unsigned int size; - void *value; -}; - -struct fuse_args { - uint64_t nodeid; - uint32_t opcode; - uint8_t in_numargs; - uint8_t out_numargs; - uint8_t ext_idx; - bool force: 1; - bool noreply: 1; - bool nocreds: 1; - bool in_pages: 1; - bool out_pages: 1; - bool user_pages: 1; - bool out_argvar: 1; - bool page_zeroing: 1; - bool page_replace: 1; - bool may_block: 1; - bool is_ext: 1; - bool is_pinned: 1; - bool invalidate_vmap: 1; - struct fuse_in_arg in_args[3]; - struct fuse_arg out_args[2]; - void (*end)(struct fuse_mount *, struct fuse_args *, int); - void *vmap_base; -}; - -struct fuse_release_args { - struct fuse_args args; - struct fuse_release_in inarg; - struct inode *inode; -}; - -union fuse_file_args { - struct fuse_open_out open_outarg; - struct fuse_release_args release_args; -}; - -struct fuse_page_desc { - unsigned int length; - unsigned int offset; -}; - -struct fuse_args_pages { - struct fuse_args args; - struct page **pages; - struct fuse_page_desc *descs; - unsigned int num_pages; -}; - -struct fuse_req { - struct list_head list; - struct list_head intr_entry; - struct fuse_args *args; - refcount_t count; - long unsigned int flags; - struct { - struct fuse_in_header h; - } in; - struct { - struct fuse_out_header h; - } out; - wait_queue_head_t waitq; - void *argbuf; - struct fuse_mount *fm; -}; - -struct fuse_iqueue; - -struct fuse_iqueue_ops { - void (*send_forget)(struct fuse_iqueue *, struct fuse_forget_link *); - void (*send_interrupt)(struct fuse_iqueue *, struct fuse_req *); - void (*send_req)(struct fuse_iqueue *, struct fuse_req *); - void (*release)(struct fuse_iqueue *); -}; - -struct fuse_iqueue { - unsigned int connected; - spinlock_t lock; - wait_queue_head_t waitq; - u64 reqctr; - struct list_head pending; - struct list_head interrupts; - struct fuse_forget_link forget_list_head; - struct fuse_forget_link *forget_list_tail; - int forget_batch; - struct fasync_struct *fasync; - const struct fuse_iqueue_ops *ops; - void *priv; -}; - -struct fuse_sync_bucket; - -struct fuse_conn { - spinlock_t lock; - refcount_t count; - atomic_t dev_count; - struct callback_head rcu; - kuid_t user_id; - kgid_t group_id; - struct pid_namespace *pid_ns; - struct user_namespace *user_ns; - unsigned int max_read; - unsigned int max_write; - unsigned int max_pages; - unsigned int max_pages_limit; - struct fuse_iqueue iq; - atomic64_t khctr; - struct rb_root polled_files; - unsigned int max_background; - unsigned int congestion_threshold; - unsigned int num_background; - unsigned int active_background; - struct list_head bg_queue; - spinlock_t bg_lock; - int initialized; - int blocked; - wait_queue_head_t blocked_waitq; - unsigned int connected; - bool aborted; - unsigned int conn_error: 1; - unsigned int conn_init: 1; - unsigned int async_read: 1; - unsigned int abort_err: 1; - unsigned int atomic_o_trunc: 1; - unsigned int export_support: 1; - unsigned int writeback_cache: 1; - unsigned int parallel_dirops: 1; - unsigned int handle_killpriv: 1; - unsigned int cache_symlinks: 1; - unsigned int legacy_opts_show: 1; - unsigned int handle_killpriv_v2: 1; - unsigned int no_open: 1; - unsigned int no_opendir: 1; - unsigned int no_fsync: 1; - unsigned int no_fsyncdir: 1; - unsigned int no_flush: 1; - unsigned int no_xattr: 1; - unsigned int no_setxattr: 1; - unsigned int setxattr_ext: 1; - unsigned int no_getxattr: 1; - unsigned int no_listxattr: 1; - unsigned int no_removexattr: 1; - unsigned int no_lock: 1; - unsigned int no_access: 1; - unsigned int no_create: 1; - unsigned int no_interrupt: 1; - unsigned int no_bmap: 1; - unsigned int no_poll: 1; - unsigned int big_writes: 1; - unsigned int dont_mask: 1; - unsigned int no_flock: 1; - unsigned int no_fallocate: 1; - unsigned int no_rename2: 1; - unsigned int auto_inval_data: 1; - unsigned int explicit_inval_data: 1; - unsigned int do_readdirplus: 1; - unsigned int readdirplus_auto: 1; - unsigned int async_dio: 1; - unsigned int no_lseek: 1; - unsigned int posix_acl: 1; - unsigned int default_permissions: 1; - unsigned int allow_other: 1; - unsigned int no_copy_file_range: 1; - unsigned int destroy: 1; - unsigned int delete_stale: 1; - unsigned int no_control: 1; - unsigned int no_force_umount: 1; - unsigned int auto_submounts: 1; - unsigned int sync_fs: 1; - unsigned int init_security: 1; - unsigned int create_supp_group: 1; - unsigned int inode_dax: 1; - unsigned int no_tmpfile: 1; - unsigned int direct_io_allow_mmap: 1; - unsigned int no_statx: 1; - unsigned int passthrough: 1; - unsigned int use_pages_for_kvec_io: 1; - int max_stack_depth; - atomic_t num_waiting; - unsigned int minor; - struct list_head entry; - dev_t dev; - struct dentry *ctl_dentry[7]; - int ctl_ndents; - u32 scramble_key[4]; - atomic64_t attr_version; - void (*release)(struct fuse_conn *); - struct rw_semaphore killsb; - struct list_head devices; - struct list_head mounts; - struct fuse_sync_bucket *curr_bucket; - struct idr backing_files_map; -}; - -struct fuse_sync_bucket { - atomic_t count; - wait_queue_head_t waitq; - struct callback_head rcu; -}; - -enum hash_algo { - HASH_ALGO_MD4 = 0, - HASH_ALGO_MD5 = 1, - HASH_ALGO_SHA1 = 2, - HASH_ALGO_RIPE_MD_160 = 3, - HASH_ALGO_SHA256 = 4, - HASH_ALGO_SHA384 = 5, - HASH_ALGO_SHA512 = 6, - HASH_ALGO_SHA224 = 7, - HASH_ALGO_RIPE_MD_128 = 8, - HASH_ALGO_RIPE_MD_256 = 9, - HASH_ALGO_RIPE_MD_320 = 10, - HASH_ALGO_WP_256 = 11, - HASH_ALGO_WP_384 = 12, - HASH_ALGO_WP_512 = 13, - HASH_ALGO_TGR_128 = 14, - HASH_ALGO_TGR_160 = 15, - HASH_ALGO_TGR_192 = 16, - HASH_ALGO_SM3_256 = 17, - HASH_ALGO_STREEBOG_256 = 18, - HASH_ALGO_STREEBOG_512 = 19, - HASH_ALGO_SHA3_256 = 20, - HASH_ALGO_SHA3_384 = 21, - HASH_ALGO_SHA3_512 = 22, - HASH_ALGO__LAST = 23, -}; - -struct ovl_config { - char *upperdir; - char *workdir; - char **lowerdirs; - bool default_permissions; - int redirect_mode; - int verity_mode; - bool index; - int uuid; - bool nfs_export; - int xino; - bool metacopy; - bool userxattr; - bool ovl_volatile; -}; - -struct ovl_sb { - struct super_block *sb; - dev_t pseudo_dev; - bool bad_uuid; - bool is_lower; -}; - -struct ovl_layer { - struct vfsmount *mnt; - struct inode *trap; - struct ovl_sb *fs; - int idx; - int fsid; - bool has_xwhiteouts; -}; - -struct ovl_fs { - unsigned int numlayer; - unsigned int numfs; - unsigned int numdatalayer; - struct ovl_layer *layers; - struct ovl_sb *fs; - struct dentry *workbasedir; - struct dentry *workdir; - long int namelen; - struct ovl_config config; - const struct cred *creator_cred; - bool tmpfile; - bool noxattr; - bool nofh; - bool upperdir_locked; - bool workdir_locked; - struct inode *workbasedir_trap; - struct inode *workdir_trap; - int xino_mode; - atomic_long_t last_ino; - struct dentry *whiteout; - bool no_shared_whiteout; - errseq_t errseq; -}; - -typedef uint8_t dchars; - -struct kernel_lb_addr { - uint32_t logicalBlockNum; - uint16_t partitionReferenceNum; -}; - -struct pathComponent { - uint8_t componentType; - uint8_t lengthComponentIdent; - __le16 componentFileVersionNum; - dchars componentIdent[0]; -}; - -struct extent_position { - struct buffer_head *bh; - uint32_t offset; - struct kernel_lb_addr block; -}; - -struct udf_ext_cache { - struct extent_position epos; - loff_t lstart; -}; - -struct udf_inode_info { - struct timespec64 i_crtime; - struct kernel_lb_addr i_location; - __u64 i_unique; - __u32 i_lenEAttr; - __u32 i_lenAlloc; - __u64 i_lenExtents; - __u32 i_next_alloc_block; - __u32 i_next_alloc_goal; - __u32 i_checkpoint; - __u32 i_extraPerms; - unsigned int i_alloc_type: 3; - unsigned int i_efe: 1; - unsigned int i_use: 1; - unsigned int i_strat4096: 1; - unsigned int i_streamdir: 1; - unsigned int i_hidden: 1; - unsigned int reserved: 24; - __u8 *i_data; - struct kernel_lb_addr i_locStreamdir; - __u64 i_lenStreams; - struct rw_semaphore i_data_sem; - struct udf_ext_cache cached_extent; - spinlock_t i_extent_cache_lock; - struct inode vfs_inode; -}; - -typedef uint32_t udf_pblk_t; - -typedef s8 int8_t; - -typedef long long unsigned int xfs_ino_t; - -typedef __s64 xfs_daddr_t; - -typedef __u32 xfs_nlink_t; - -typedef uint32_t prid_t; - -typedef uint32_t xfs_agblock_t; - -typedef uint32_t xfs_agino_t; - -typedef uint32_t xfs_extlen_t; - -typedef uint32_t xfs_agnumber_t; - -typedef uint64_t xfs_extnum_t; - -typedef int64_t xfs_fsize_t; - -typedef int64_t xfs_lsn_t; - -typedef uint64_t xfs_fsblock_t; - -typedef uint64_t xfs_rfsblock_t; - -typedef uint64_t xfs_fileoff_t; - -typedef uint64_t xfs_filblks_t; - -typedef uint64_t xfs_rtbxlen_t; - -typedef void *xfs_failaddr_t; - -typedef enum { - XFS_EXT_NORM = 0, - XFS_EXT_UNWRITTEN = 1, -} xfs_exntst_t; - -struct xfs_bmbt_irec { - xfs_fileoff_t br_startoff; - xfs_fsblock_t br_startblock; - xfs_filblks_t br_blockcount; - xfs_exntst_t br_state; -}; - -enum xfs_refc_domain { - XFS_REFC_DOMAIN_SHARED = 0, - XFS_REFC_DOMAIN_COW = 1, -}; - -struct xfs_refcount_irec { - xfs_agblock_t rc_startblock; - xfs_extlen_t rc_blockcount; - xfs_nlink_t rc_refcount; - enum xfs_refc_domain rc_domain; -}; - -struct xfs_rmap_irec { - xfs_agblock_t rm_startblock; - xfs_extlen_t rm_blockcount; - uint64_t rm_owner; - uint64_t rm_offset; - unsigned int rm_flags; -}; - -enum xfs_ag_resv_type { - XFS_AG_RESV_NONE = 0, - XFS_AG_RESV_AGFL = 1, - XFS_AG_RESV_METADATA = 2, - XFS_AG_RESV_RMAPBT = 3, - XFS_AG_RESV_IGNORE = 4, -}; - -struct rhash_lock_head; - -struct bucket_table { - unsigned int size; - unsigned int nest; - u32 hash_rnd; - struct list_head walkers; - struct callback_head rcu; - struct bucket_table *future_tbl; - struct lockdep_map dep_map; - long: 64; - struct rhash_lock_head *buckets[0]; -}; - -struct rhash_lock_head {}; - -struct xfs_ag_geometry { - uint32_t ag_number; - uint32_t ag_length; - uint32_t ag_freeblks; - uint32_t ag_icount; - uint32_t ag_ifree; - uint32_t ag_sick; - uint32_t ag_checked; - uint32_t ag_flags; - uint64_t ag_reserved[12]; -}; - -struct __xfsstats { - uint32_t xs_allocx; - uint32_t xs_allocb; - uint32_t xs_freex; - uint32_t xs_freeb; - uint32_t xs_abt_lookup; - uint32_t xs_abt_compare; - uint32_t xs_abt_insrec; - uint32_t xs_abt_delrec; - uint32_t xs_blk_mapr; - uint32_t xs_blk_mapw; - uint32_t xs_blk_unmap; - uint32_t xs_add_exlist; - uint32_t xs_del_exlist; - uint32_t xs_look_exlist; - uint32_t xs_cmp_exlist; - uint32_t xs_bmbt_lookup; - uint32_t xs_bmbt_compare; - uint32_t xs_bmbt_insrec; - uint32_t xs_bmbt_delrec; - uint32_t xs_dir_lookup; - uint32_t xs_dir_create; - uint32_t xs_dir_remove; - uint32_t xs_dir_getdents; - uint32_t xs_trans_sync; - uint32_t xs_trans_async; - uint32_t xs_trans_empty; - uint32_t xs_ig_attempts; - uint32_t xs_ig_found; - uint32_t xs_ig_frecycle; - uint32_t xs_ig_missed; - uint32_t xs_ig_dup; - uint32_t xs_ig_reclaims; - uint32_t xs_ig_attrchg; - uint32_t xs_log_writes; - uint32_t xs_log_blocks; - uint32_t xs_log_noiclogs; - uint32_t xs_log_force; - uint32_t xs_log_force_sleep; - uint32_t xs_try_logspace; - uint32_t xs_sleep_logspace; - uint32_t xs_push_ail; - uint32_t xs_push_ail_success; - uint32_t xs_push_ail_pushbuf; - uint32_t xs_push_ail_pinned; - uint32_t xs_push_ail_locked; - uint32_t xs_push_ail_flushing; - uint32_t xs_push_ail_restarts; - uint32_t xs_push_ail_flush; - uint32_t xs_xstrat_quick; - uint32_t xs_xstrat_split; - uint32_t xs_write_calls; - uint32_t xs_read_calls; - uint32_t xs_attr_get; - uint32_t xs_attr_set; - uint32_t xs_attr_remove; - uint32_t xs_attr_list; - uint32_t xs_iflush_count; - uint32_t xs_icluster_flushcnt; - uint32_t xs_icluster_flushinode; - uint32_t vn_active; - uint32_t vn_alloc; - uint32_t vn_get; - uint32_t vn_hold; - uint32_t vn_rele; - uint32_t vn_reclaim; - uint32_t vn_remove; - uint32_t vn_free; - uint32_t xb_get; - uint32_t xb_create; - uint32_t xb_get_locked; - uint32_t xb_get_locked_waited; - uint32_t xb_busy_locked; - uint32_t xb_miss_locked; - uint32_t xb_page_retries; - uint32_t xb_page_found; - uint32_t xb_get_read; - uint32_t xs_abtb_2[15]; - uint32_t xs_abtc_2[15]; - uint32_t xs_bmbt_2[15]; - uint32_t xs_ibt_2[15]; - uint32_t xs_fibt_2[15]; - uint32_t xs_rmap_2[15]; - uint32_t xs_refcbt_2[15]; - uint32_t xs_rmap_mem_2[15]; - uint32_t xs_rcbag_2[15]; - uint32_t xs_qm_dqreclaims; - uint32_t xs_qm_dqreclaim_misses; - uint32_t xs_qm_dquot_dups; - uint32_t xs_qm_dqcachemisses; - uint32_t xs_qm_dqcachehits; - uint32_t xs_qm_dqwants; - uint32_t xs_qm_dquot; - uint32_t xs_qm_dquot_unused; - uint64_t xs_xstrat_bytes; - uint64_t xs_write_bytes; - uint64_t xs_read_bytes; - uint64_t defer_relog; -}; - -struct xfsstats { - union { - struct __xfsstats s; - uint32_t a[217]; - }; -}; - -struct xfs_kobj { - struct kobject kobject; - struct completion complete; -}; - -struct xstats { - struct xfsstats *xs_stats; - struct xfs_kobj xs_kobj; -}; - -typedef unsigned int xfs_buf_flags_t; - -struct xfs_buf_cache { - spinlock_t bc_lock; - struct rhashtable bc_hash; -}; - -struct xfs_mount; - -struct xfs_buftarg { - dev_t bt_dev; - struct file *bt_bdev_file; - struct block_device *bt_bdev; - struct dax_device *bt_daxdev; - struct file *bt_file; - u64 bt_dax_part_off; - struct xfs_mount *bt_mount; - unsigned int bt_meta_sectorsize; - size_t bt_meta_sectormask; - size_t bt_logical_sectorsize; - size_t bt_logical_sectormask; - struct shrinker *bt_shrinker; - struct list_lru bt_lru; - struct percpu_counter bt_io_count; - struct ratelimit_state bt_ioerror_rl; - struct xfs_buf_cache bt_cache[0]; -}; - -struct xfs_sb { - uint32_t sb_magicnum; - uint32_t sb_blocksize; - xfs_rfsblock_t sb_dblocks; - xfs_rfsblock_t sb_rblocks; - xfs_rtbxlen_t sb_rextents; - uuid_t sb_uuid; - xfs_fsblock_t sb_logstart; - xfs_ino_t sb_rootino; - xfs_ino_t sb_rbmino; - xfs_ino_t sb_rsumino; - xfs_agblock_t sb_rextsize; - xfs_agblock_t sb_agblocks; - xfs_agnumber_t sb_agcount; - xfs_extlen_t sb_rbmblocks; - xfs_extlen_t sb_logblocks; - uint16_t sb_versionnum; - uint16_t sb_sectsize; - uint16_t sb_inodesize; - uint16_t sb_inopblock; - char sb_fname[12]; - uint8_t sb_blocklog; - uint8_t sb_sectlog; - uint8_t sb_inodelog; - uint8_t sb_inopblog; - uint8_t sb_agblklog; - uint8_t sb_rextslog; - uint8_t sb_inprogress; - uint8_t sb_imax_pct; - uint64_t sb_icount; - uint64_t sb_ifree; - uint64_t sb_fdblocks; - uint64_t sb_frextents; - xfs_ino_t sb_uquotino; - xfs_ino_t sb_gquotino; - uint16_t sb_qflags; - uint8_t sb_flags; - uint8_t sb_shared_vn; - xfs_extlen_t sb_inoalignmt; - uint32_t sb_unit; - uint32_t sb_width; - uint8_t sb_dirblklog; - uint8_t sb_logsectlog; - uint16_t sb_logsectsize; - uint32_t sb_logsunit; - uint32_t sb_features2; - uint32_t sb_bad_features2; - uint32_t sb_features_compat; - uint32_t sb_features_ro_compat; - uint32_t sb_features_incompat; - uint32_t sb_features_log_incompat; - uint32_t sb_crc; - xfs_extlen_t sb_spino_align; - xfs_ino_t sb_pquotino; - xfs_lsn_t sb_lsn; - uuid_t sb_meta_uuid; -}; - -struct xfs_ino_geometry { - uint64_t maxicount; - unsigned int inode_cluster_size; - unsigned int inode_cluster_size_raw; - unsigned int inodes_per_cluster; - unsigned int blocks_per_cluster; - unsigned int cluster_align; - unsigned int cluster_align_inodes; - unsigned int inoalign_mask; - unsigned int inobt_mxr[2]; - unsigned int inobt_mnr[2]; - unsigned int inobt_maxlevels; - unsigned int ialloc_inos; - unsigned int ialloc_blks; - unsigned int ialloc_min_blks; - unsigned int ialloc_align; - unsigned int agino_log; - unsigned int attr_fork_offset; - uint64_t new_diflags2; - unsigned int min_folio_order; -}; - -struct xfs_trans_res { - uint tr_logres; - int tr_logcount; - int tr_logflags; -}; - -struct xfs_trans_resv { - struct xfs_trans_res tr_write; - struct xfs_trans_res tr_itruncate; - struct xfs_trans_res tr_rename; - struct xfs_trans_res tr_link; - struct xfs_trans_res tr_remove; - struct xfs_trans_res tr_symlink; - struct xfs_trans_res tr_create; - struct xfs_trans_res tr_create_tmpfile; - struct xfs_trans_res tr_mkdir; - struct xfs_trans_res tr_ifree; - struct xfs_trans_res tr_ichange; - struct xfs_trans_res tr_growdata; - struct xfs_trans_res tr_addafork; - struct xfs_trans_res tr_writeid; - struct xfs_trans_res tr_attrinval; - struct xfs_trans_res tr_attrsetm; - struct xfs_trans_res tr_attrsetrt; - struct xfs_trans_res tr_attrrm; - struct xfs_trans_res tr_clearagi; - struct xfs_trans_res tr_growrtalloc; - struct xfs_trans_res tr_growrtzero; - struct xfs_trans_res tr_growrtfree; - struct xfs_trans_res tr_qm_setqlim; - struct xfs_trans_res tr_qm_dqalloc; - struct xfs_trans_res tr_sb; - struct xfs_trans_res tr_fsyncts; -}; - -struct xfs_error_cfg { - struct xfs_kobj kobj; - int max_retries; - long int retry_timeout; -}; - -struct xfs_hooks {}; - -struct xfs_ail; - -struct xfs_buf; - -struct xfs_da_geometry; - -struct xlog; - -struct xfs_inode; - -struct xfs_quotainfo; - -struct xfs_mru_cache; - -struct xfs_mount { - struct xfs_sb m_sb; - struct super_block *m_super; - struct xfs_ail *m_ail; - struct xfs_buf *m_sb_bp; - char *m_rtname; - char *m_logname; - struct xfs_da_geometry *m_dir_geo; - struct xfs_da_geometry *m_attr_geo; - struct xlog *m_log; - struct xfs_inode *m_rbmip; - struct xfs_inode *m_rsumip; - struct xfs_inode *m_rootip; - struct xfs_quotainfo *m_quotainfo; - struct xfs_buftarg *m_ddev_targp; - struct xfs_buftarg *m_logdev_targp; - struct xfs_buftarg *m_rtdev_targp; - void *m_inodegc; - uint8_t *m_rsum_cache; - struct xfs_mru_cache *m_filestream; - struct workqueue_struct *m_buf_workqueue; - struct workqueue_struct *m_unwritten_workqueue; - struct workqueue_struct *m_reclaim_workqueue; - struct workqueue_struct *m_sync_workqueue; - struct workqueue_struct *m_blockgc_wq; - struct workqueue_struct *m_inodegc_wq; - int m_bsize; - uint8_t m_blkbit_log; - uint8_t m_blkbb_log; - uint8_t m_agno_log; - uint8_t m_sectbb_log; - int8_t m_rtxblklog; - uint m_blockmask; - uint m_blockwsize; - uint m_blockwmask; - uint m_alloc_mxr[2]; - uint m_alloc_mnr[2]; - uint m_bmap_dmxr[2]; - uint m_bmap_dmnr[2]; - uint m_rmap_mxr[2]; - uint m_rmap_mnr[2]; - uint m_refc_mxr[2]; - uint m_refc_mnr[2]; - uint m_alloc_maxlevels; - uint m_bm_maxlevels[2]; - uint m_rmap_maxlevels; - uint m_refc_maxlevels; - unsigned int m_agbtree_maxlevels; - xfs_extlen_t m_ag_prealloc_blocks; - uint m_alloc_set_aside; - uint m_ag_max_usable; - int m_dalign; - int m_swidth; - xfs_agnumber_t m_maxagi; - uint m_allocsize_log; - uint m_allocsize_blocks; - int m_logbufs; - int m_logbsize; - uint m_rsumlevels; - xfs_filblks_t m_rsumblocks; - int m_fixedfsid[2]; - uint m_qflags; - uint64_t m_features; - uint64_t m_low_space[5]; - uint64_t m_low_rtexts[5]; - uint64_t m_rtxblkmask; - struct xfs_ino_geometry m_ino_geo; - struct xfs_trans_resv m_resv; - long unsigned int m_opstate; - bool m_always_cow; - bool m_fail_unmount; - bool m_finobt_nores; - bool m_update_sb; - uint8_t m_fs_checked; - uint8_t m_fs_sick; - uint8_t m_rt_checked; - uint8_t m_rt_sick; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - spinlock_t m_sb_lock; - struct percpu_counter m_icount; - struct percpu_counter m_ifree; - struct percpu_counter m_fdblocks; - struct percpu_counter m_frextents; - struct percpu_counter m_delalloc_blks; - struct percpu_counter m_delalloc_rtextents; - atomic64_t m_allocbt_blks; - struct xarray m_perags; - uint64_t m_resblks; - uint64_t m_resblks_avail; - uint64_t m_resblks_save; - struct delayed_work m_reclaim_work; - struct dentry *m_debugfs; - struct xfs_kobj m_kobj; - struct xfs_kobj m_error_kobj; - struct xfs_kobj m_error_meta_kobj; - struct xfs_error_cfg m_error_cfg[4]; - struct xstats m_stats; - xfs_agnumber_t m_agfrotor; - atomic_t m_agirotor; - struct shrinker *m_inodegc_shrinker; - struct work_struct m_flush_inodes_work; - uint32_t m_generation; - struct mutex m_growlock; - struct cpumask m_inodegc_cpumask; - struct xfs_hooks m_dir_update_hooks; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct xfs_buf_map { - xfs_daddr_t bm_bn; - int bm_len; - unsigned int bm_flags; -}; - -struct xfs_buf_ops { - char *name; - union { - __be32 magic[2]; - __be16 magic16[2]; - }; - void (*verify_read)(struct xfs_buf *); - void (*verify_write)(struct xfs_buf *); - xfs_failaddr_t (*verify_struct)(struct xfs_buf *); -}; - -struct xfs_perag; - -struct xfs_buf_log_item; - -struct xfs_trans; - -struct xfs_buf { - struct rhash_head b_rhash_head; - xfs_daddr_t b_rhash_key; - int b_length; - atomic_t b_hold; - atomic_t b_lru_ref; - xfs_buf_flags_t b_flags; - struct semaphore b_sema; - struct list_head b_lru; - spinlock_t b_lock; - unsigned int b_state; - int b_io_error; - wait_queue_head_t b_waiters; - struct list_head b_list; - struct xfs_perag *b_pag; - struct xfs_mount *b_mount; - struct xfs_buftarg *b_target; - void *b_addr; - struct work_struct b_ioend_work; - struct completion b_iowait; - struct xfs_buf_log_item *b_log_item; - struct list_head b_li_list; - struct xfs_trans *b_transp; - struct page **b_pages; - struct page *b_page_array[2]; - struct xfs_buf_map *b_maps; - struct xfs_buf_map __b_map; - int b_map_count; - atomic_t b_pin_count; - atomic_t b_io_remaining; - unsigned int b_page_count; - unsigned int b_offset; - int b_error; - int b_retries; - long unsigned int b_first_retry_time; - int b_last_error; - const struct xfs_buf_ops *b_ops; - struct callback_head b_rcu; -}; - -struct xfs_ag_resv { - xfs_extlen_t ar_orig_reserved; - xfs_extlen_t ar_reserved; - xfs_extlen_t ar_asked; -}; - -struct xfs_defer_drain {}; - -struct xfs_perag { - struct xfs_mount *pag_mount; - xfs_agnumber_t pag_agno; - atomic_t pag_ref; - atomic_t pag_active_ref; - wait_queue_head_t pag_active_wq; - long unsigned int pag_opstate; - uint8_t pagf_bno_level; - uint8_t pagf_cnt_level; - uint8_t pagf_rmap_level; - uint32_t pagf_flcount; - xfs_extlen_t pagf_freeblks; - xfs_extlen_t pagf_longest; - uint32_t pagf_btreeblks; - xfs_agino_t pagi_freecount; - xfs_agino_t pagi_count; - xfs_agino_t pagl_pagino; - xfs_agino_t pagl_leftrec; - xfs_agino_t pagl_rightrec; - int pagb_count; - uint8_t pagf_refcount_level; - struct xfs_ag_resv pag_meta_resv; - struct xfs_ag_resv pag_rmapbt_resv; - xfs_agblock_t block_count; - xfs_agblock_t min_block; - xfs_agino_t agino_min; - xfs_agino_t agino_max; - uint16_t pag_checked; - uint16_t pag_sick; - spinlock_t pag_state_lock; - spinlock_t pagb_lock; - struct rb_root pagb_tree; - unsigned int pagb_gen; - wait_queue_head_t pagb_wait; - atomic_t pagf_fstrms; - spinlock_t pag_ici_lock; - struct xarray pag_ici_root; - int pag_ici_reclaimable; - long unsigned int pag_ici_reclaim_cursor; - struct xfs_buf_cache pag_bcache; - struct delayed_work pag_blockgc_work; - struct xfs_defer_drain pag_intents_drain; - struct xfs_hooks pag_rmap_update_hooks; -}; - -struct xlog_ticket; - -struct xfs_dquot_acct; - -struct xfs_trans { - unsigned int t_magic; - unsigned int t_log_res; - unsigned int t_log_count; - unsigned int t_blk_res; - unsigned int t_blk_res_used; - unsigned int t_rtx_res; - unsigned int t_rtx_res_used; - unsigned int t_flags; - xfs_agnumber_t t_highest_agno; - struct xlog_ticket *t_ticket; - struct xfs_mount *t_mountp; - struct xfs_dquot_acct *t_dqinfo; - int64_t t_icount_delta; - int64_t t_ifree_delta; - int64_t t_fdblocks_delta; - int64_t t_res_fdblocks_delta; - int64_t t_frextents_delta; - int64_t t_res_frextents_delta; - int64_t t_dblocks_delta; - int64_t t_agcount_delta; - int64_t t_imaxpct_delta; - int64_t t_rextsize_delta; - int64_t t_rbmblocks_delta; - int64_t t_rblocks_delta; - int64_t t_rextents_delta; - int64_t t_rextslog_delta; - struct list_head t_items; - struct list_head t_busy; - struct list_head t_dfops; - long unsigned int t_pflags; -}; - -enum xfs_btree_type { - XFS_BTREE_TYPE_AG = 0, - XFS_BTREE_TYPE_INODE = 1, - XFS_BTREE_TYPE_MEM = 2, -}; - -enum xbtree_key_contig { - XBTREE_KEY_GAP = 0, - XBTREE_KEY_CONTIGUOUS = 1, - XBTREE_KEY_OVERLAP = 2, -}; - -struct xfs_btree_cur; - -union xfs_btree_ptr; - -union xfs_btree_key; - -union xfs_btree_rec; - -struct xfs_btree_ops { - const char *name; - enum xfs_btree_type type; - unsigned int geom_flags; - size_t key_len; - size_t ptr_len; - size_t rec_len; - unsigned int lru_refs; - unsigned int statoff; - unsigned int sick_mask; - struct xfs_btree_cur * (*dup_cursor)(struct xfs_btree_cur *); - void (*update_cursor)(struct xfs_btree_cur *, struct xfs_btree_cur *); - void (*set_root)(struct xfs_btree_cur *, const union xfs_btree_ptr *, int); - int (*alloc_block)(struct xfs_btree_cur *, const union xfs_btree_ptr *, union xfs_btree_ptr *, int *); - int (*free_block)(struct xfs_btree_cur *, struct xfs_buf *); - int (*get_minrecs)(struct xfs_btree_cur *, int); - int (*get_maxrecs)(struct xfs_btree_cur *, int); - int (*get_dmaxrecs)(struct xfs_btree_cur *, int); - void (*init_key_from_rec)(union xfs_btree_key *, const union xfs_btree_rec *); - void (*init_rec_from_cur)(struct xfs_btree_cur *, union xfs_btree_rec *); - void (*init_ptr_from_cur)(struct xfs_btree_cur *, union xfs_btree_ptr *); - void (*init_high_key_from_rec)(union xfs_btree_key *, const union xfs_btree_rec *); - int64_t (*key_diff)(struct xfs_btree_cur *, const union xfs_btree_key *); - int64_t (*diff_two_keys)(struct xfs_btree_cur *, const union xfs_btree_key *, const union xfs_btree_key *, const union xfs_btree_key *); - const struct xfs_buf_ops *buf_ops; - int (*keys_inorder)(struct xfs_btree_cur *, const union xfs_btree_key *, const union xfs_btree_key *); - int (*recs_inorder)(struct xfs_btree_cur *, const union xfs_btree_rec *, const union xfs_btree_rec *); - enum xbtree_key_contig (*keys_contiguous)(struct xfs_btree_cur *, const union xfs_btree_key *, const union xfs_btree_key *, const union xfs_btree_key *); -}; - -struct xfs_dsb { - __be32 sb_magicnum; - __be32 sb_blocksize; - __be64 sb_dblocks; - __be64 sb_rblocks; - __be64 sb_rextents; - uuid_t sb_uuid; - __be64 sb_logstart; - __be64 sb_rootino; - __be64 sb_rbmino; - __be64 sb_rsumino; - __be32 sb_rextsize; - __be32 sb_agblocks; - __be32 sb_agcount; - __be32 sb_rbmblocks; - __be32 sb_logblocks; - __be16 sb_versionnum; - __be16 sb_sectsize; - __be16 sb_inodesize; - __be16 sb_inopblock; - char sb_fname[12]; - __u8 sb_blocklog; - __u8 sb_sectlog; - __u8 sb_inodelog; - __u8 sb_inopblog; - __u8 sb_agblklog; - __u8 sb_rextslog; - __u8 sb_inprogress; - __u8 sb_imax_pct; - __be64 sb_icount; - __be64 sb_ifree; - __be64 sb_fdblocks; - __be64 sb_frextents; - __be64 sb_uquotino; - __be64 sb_gquotino; - __be16 sb_qflags; - __u8 sb_flags; - __u8 sb_shared_vn; - __be32 sb_inoalignmt; - __be32 sb_unit; - __be32 sb_width; - __u8 sb_dirblklog; - __u8 sb_logsectlog; - __be16 sb_logsectsize; - __be32 sb_logsunit; - __be32 sb_features2; - __be32 sb_bad_features2; - __be32 sb_features_compat; - __be32 sb_features_ro_compat; - __be32 sb_features_incompat; - __be32 sb_features_log_incompat; - __le32 sb_crc; - __be32 sb_spino_align; - __be64 sb_pquotino; - __be64 sb_lsn; - uuid_t sb_meta_uuid; -}; - -struct xfs_agf { - __be32 agf_magicnum; - __be32 agf_versionnum; - __be32 agf_seqno; - __be32 agf_length; - __be32 agf_bno_root; - __be32 agf_cnt_root; - __be32 agf_rmap_root; - __be32 agf_bno_level; - __be32 agf_cnt_level; - __be32 agf_rmap_level; - __be32 agf_flfirst; - __be32 agf_fllast; - __be32 agf_flcount; - __be32 agf_freeblks; - __be32 agf_longest; - __be32 agf_btreeblks; - uuid_t agf_uuid; - __be32 agf_rmap_blocks; - __be32 agf_refcount_blocks; - __be32 agf_refcount_root; - __be32 agf_refcount_level; - __be64 agf_spare64[14]; - __be64 agf_lsn; - __be32 agf_crc; - __be32 agf_spare2; -}; - -struct xfs_agi { - __be32 agi_magicnum; - __be32 agi_versionnum; - __be32 agi_seqno; - __be32 agi_length; - __be32 agi_count; - __be32 agi_root; - __be32 agi_level; - __be32 agi_freecount; - __be32 agi_newino; - __be32 agi_dirino; - __be32 agi_unlinked[64]; - uuid_t agi_uuid; - __be32 agi_crc; - __be32 agi_pad32; - __be64 agi_lsn; - __be32 agi_free_root; - __be32 agi_free_level; - __be32 agi_iblocks; - __be32 agi_fblocks; -}; - -struct xfs_agfl { - __be32 agfl_magicnum; - __be32 agfl_seqno; - uuid_t agfl_uuid; - __be64 agfl_lsn; - __be32 agfl_crc; -} __attribute__((packed)); - -struct xfs_alloc_rec { - __be32 ar_startblock; - __be32 ar_blockcount; -}; - -typedef struct xfs_alloc_rec xfs_alloc_rec_t; - -typedef struct xfs_alloc_rec xfs_alloc_key_t; - -struct xfs_alloc_rec_incore { - xfs_agblock_t ar_startblock; - xfs_extlen_t ar_blockcount; -}; - -typedef uint64_t xfs_inofree_t; - -struct xfs_inobt_rec { - __be32 ir_startino; - union { - struct { - __be32 ir_freecount; - } f; - struct { - __be16 ir_holemask; - __u8 ir_count; - __u8 ir_freecount; - } sp; - } ir_u; - __be64 ir_free; -}; - -struct xfs_inobt_rec_incore { - xfs_agino_t ir_startino; - uint16_t ir_holemask; - uint8_t ir_count; - uint8_t ir_freecount; - xfs_inofree_t ir_free; -}; - -struct xfs_inobt_key { - __be32 ir_startino; -}; - -struct xfs_owner_info { - uint64_t oi_owner; - xfs_fileoff_t oi_offset; - unsigned int oi_flags; -}; - -struct xfs_rmap_rec { - __be32 rm_startblock; - __be32 rm_blockcount; - __be64 rm_owner; - __be64 rm_offset; -}; - -struct xfs_rmap_key { - __be32 rm_startblock; - __be64 rm_owner; - __be64 rm_offset; -} __attribute__((packed)); - -struct xfs_refcount_rec { - __be32 rc_startblock; - __be32 rc_blockcount; - __be32 rc_refcount; -}; - -struct xfs_refcount_key { - __be32 rc_startblock; -}; - -struct xfs_bmbt_rec { - __be64 l0; - __be64 l1; -}; - -typedef struct xfs_bmbt_rec xfs_bmbt_rec_t; - -typedef xfs_bmbt_rec_t xfs_bmdr_rec_t; - -struct xfs_bmbt_key { - __be64 br_startoff; -}; - -typedef struct xfs_bmbt_key xfs_bmdr_key_t; - -struct xfs_btree_block_shdr { - __be32 bb_leftsib; - __be32 bb_rightsib; - __be64 bb_blkno; - __be64 bb_lsn; - uuid_t bb_uuid; - __be32 bb_owner; - __le32 bb_crc; -}; - -struct xfs_btree_block_lhdr { - __be64 bb_leftsib; - __be64 bb_rightsib; - __be64 bb_blkno; - __be64 bb_lsn; - uuid_t bb_uuid; - __be64 bb_owner; - __le32 bb_crc; - __be32 bb_pad; -}; - -struct xfs_btree_block { - __be32 bb_magic; - __be16 bb_level; - __be16 bb_numrecs; - union { - struct xfs_btree_block_shdr s; - struct xfs_btree_block_lhdr l; - } bb_u; -}; - -struct xfs_imap { - xfs_daddr_t im_blkno; - short unsigned int im_len; - short unsigned int im_boffset; -}; - -struct xfs_ifork { - int64_t if_bytes; - struct xfs_btree_block *if_broot; - unsigned int if_seq; - int if_height; - void *if_data; - xfs_extnum_t if_nextents; - short int if_broot_bytes; - int8_t if_format; - uint8_t if_needextents; -}; - -struct xfs_dquot; - -struct xfs_inode_log_item; - -struct xfs_inode { - struct xfs_mount *i_mount; - struct xfs_dquot *i_udquot; - struct xfs_dquot *i_gdquot; - struct xfs_dquot *i_pdquot; - xfs_ino_t i_ino; - struct xfs_imap i_imap; - struct xfs_ifork *i_cowfp; - struct xfs_ifork i_df; - struct xfs_ifork i_af; - struct xfs_inode_log_item *i_itemp; - struct rw_semaphore i_lock; - atomic_t i_pincount; - struct llist_node i_gclist; - uint16_t i_checked; - uint16_t i_sick; - spinlock_t i_flags_lock; - long unsigned int i_flags; - uint64_t i_delayed_blks; - xfs_fsize_t i_disk_size; - xfs_rfsblock_t i_nblocks; - prid_t i_projid; - xfs_extlen_t i_extsize; - union { - xfs_extlen_t i_cowextsize; - uint16_t i_flushiter; - }; - uint8_t i_forkoff; - uint16_t i_diflags; - uint64_t i_diflags2; - struct timespec64 i_crtime; - xfs_agino_t i_next_unlinked; - xfs_agino_t i_prev_unlinked; - struct inode i_vnode; - spinlock_t i_ioend_lock; - struct work_struct i_ioend_work; - struct list_head i_ioend_list; -}; - -union xfs_btree_ptr { - __be32 s; - __be64 l; -}; - -union xfs_btree_key { - struct xfs_bmbt_key bmbt; - xfs_bmdr_key_t bmbr; - xfs_alloc_key_t alloc; - struct xfs_inobt_key inobt; - struct xfs_rmap_key rmap; - struct xfs_rmap_key __rmap_bigkey[2]; - struct xfs_refcount_key refc; -}; - -union xfs_btree_rec { - struct xfs_bmbt_rec bmbt; - xfs_bmdr_rec_t bmbr; - struct xfs_alloc_rec alloc; - struct xfs_inobt_rec inobt; - struct xfs_rmap_rec rmap; - struct xfs_refcount_rec refc; -}; - -union xfs_btree_irec { - struct xfs_alloc_rec_incore a; - struct xfs_bmbt_irec b; - struct xfs_inobt_rec_incore i; - struct xfs_rmap_irec r; - struct xfs_refcount_irec rc; -}; - -struct xfs_btree_level { - struct xfs_buf *bp; - uint16_t ptr; - uint16_t ra; -}; - -struct xbtree_ifakeroot; - -struct xbtree_afakeroot; - -struct xfbtree; - -struct xfs_btree_cur { - struct xfs_trans *bc_tp; - struct xfs_mount *bc_mp; - const struct xfs_btree_ops *bc_ops; - struct kmem_cache *bc_cache; - unsigned int bc_flags; - union xfs_btree_irec bc_rec; - uint8_t bc_nlevels; - uint8_t bc_maxlevels; - union { - struct { - struct xfs_inode *ip; - short int forksize; - char whichfork; - struct xbtree_ifakeroot *ifake; - } bc_ino; - struct { - struct xfs_perag *pag; - struct xfs_buf *agbp; - struct xbtree_afakeroot *afake; - } bc_ag; - struct { - struct xfbtree *xfbtree; - struct xfs_perag *pag; - } bc_mem; - }; - union { - struct { - int allocated; - } bc_bmap; - struct { - unsigned int nr_ops; - unsigned int shape_changes; - } bc_refc; - }; - struct xfs_btree_level bc_levels[0]; -}; - -struct xfs_alloc_arg { - struct xfs_trans *tp; - struct xfs_mount *mp; - struct xfs_buf *agbp; - struct xfs_perag *pag; - xfs_fsblock_t fsbno; - xfs_agnumber_t agno; - xfs_agblock_t agbno; - xfs_extlen_t minlen; - xfs_extlen_t maxlen; - xfs_extlen_t mod; - xfs_extlen_t prod; - xfs_extlen_t minleft; - xfs_extlen_t total; - xfs_extlen_t alignment; - xfs_extlen_t minalignslop; - xfs_agblock_t min_agbno; - xfs_agblock_t max_agbno; - xfs_extlen_t len; - int datatype; - char wasdel; - char wasfromfl; - bool alloc_minlen_only; - struct xfs_owner_info oinfo; - enum xfs_ag_resv_type resv; -}; - -struct aghdr_init_data { - xfs_agblock_t agno; - xfs_extlen_t agsize; - struct list_head buffer_list; - xfs_rfsblock_t nfree; - xfs_daddr_t daddr; - size_t numblks; - const struct xfs_btree_ops *bc_ops; -}; - -typedef struct xfs_trans xfs_trans_t; - -typedef void (*aghdr_init_work_f)(struct xfs_mount *, struct xfs_buf *, struct aghdr_init_data *); - -struct xfs_aghdr_grow_data { - xfs_daddr_t daddr; - size_t numblks; - const struct xfs_buf_ops *ops; - aghdr_init_work_f work; - const struct xfs_btree_ops *bc_ops; - bool need_init; -}; - -typedef __s64 xfs_off_t; - -typedef int64_t xfs_csn_t; - -typedef uint32_t xfs_dablk_t; - -typedef uint32_t xfs_dahash_t; - -enum { - __XBTS_lookup = 0, - __XBTS_compare = 1, - __XBTS_insrec = 2, - __XBTS_delrec = 3, - __XBTS_newroot = 4, - __XBTS_killroot = 5, - __XBTS_increment = 6, - __XBTS_decrement = 7, - __XBTS_lshift = 8, - __XBTS_rshift = 9, - __XBTS_split = 10, - __XBTS_join = 11, - __XBTS_alloc = 12, - __XBTS_free = 13, - __XBTS_moves = 14, - __XBTS_MAX = 15, -}; - -struct xfs_item_ops; - -struct xfs_log_vec; - -struct xfs_log_item { - struct list_head li_ail; - struct list_head li_trans; - xfs_lsn_t li_lsn; - struct xlog *li_log; - struct xfs_ail *li_ailp; - uint li_type; - long unsigned int li_flags; - struct xfs_buf *li_buf; - struct list_head li_bio_list; - const struct xfs_item_ops *li_ops; - struct list_head li_cil; - struct xfs_log_vec *li_lv; - struct xfs_log_vec *li_lv_shadow; - xfs_csn_t li_seq; - uint32_t li_order_id; -}; - -struct xfs_buf_log_format { - short unsigned int blf_type; - short unsigned int blf_size; - short unsigned int blf_flags; - short unsigned int blf_len; - int64_t blf_blkno; - unsigned int blf_map_size; - unsigned int blf_data_map[17]; -}; - -struct xfs_buf_log_item { - struct xfs_log_item bli_item; - struct xfs_buf *bli_buf; - unsigned int bli_flags; - unsigned int bli_recur; - atomic_t bli_refcount; - int bli_format_count; - struct xfs_buf_log_format *bli_formats; - struct xfs_buf_log_format __bli_format; -}; - -enum xfs_blft { - XFS_BLFT_UNKNOWN_BUF = 0, - XFS_BLFT_UDQUOT_BUF = 1, - XFS_BLFT_PDQUOT_BUF = 2, - XFS_BLFT_GDQUOT_BUF = 3, - XFS_BLFT_BTREE_BUF = 4, - XFS_BLFT_AGF_BUF = 5, - XFS_BLFT_AGFL_BUF = 6, - XFS_BLFT_AGI_BUF = 7, - XFS_BLFT_DINO_BUF = 8, - XFS_BLFT_SYMLINK_BUF = 9, - XFS_BLFT_DIR_BLOCK_BUF = 10, - XFS_BLFT_DIR_DATA_BUF = 11, - XFS_BLFT_DIR_FREE_BUF = 12, - XFS_BLFT_DIR_LEAF1_BUF = 13, - XFS_BLFT_DIR_LEAFN_BUF = 14, - XFS_BLFT_DA_NODE_BUF = 15, - XFS_BLFT_ATTR_LEAF_BUF = 16, - XFS_BLFT_ATTR_RMT_BUF = 17, - XFS_BLFT_SB_BUF = 18, - XFS_BLFT_RTBITMAP_BUF = 19, - XFS_BLFT_RTSUMMARY_BUF = 20, - XFS_BLFT_MAX_BUF = 32, -}; - -enum { - XFS_LOWSP_1_PCNT = 0, - XFS_LOWSP_2_PCNT = 1, - XFS_LOWSP_3_PCNT = 2, - XFS_LOWSP_4_PCNT = 3, - XFS_LOWSP_5_PCNT = 4, - XFS_LOWSP_MAX = 5, -}; - -enum { - XFS_ERR_METADATA = 0, - XFS_ERR_CLASS_MAX = 1, -}; - -enum { - XFS_ERR_DEFAULT = 0, - XFS_ERR_EIO = 1, - XFS_ERR_ENOSPC = 2, - XFS_ERR_ENODEV = 3, - XFS_ERR_ERRNO_MAX = 4, -}; - -typedef uint xfs_dir2_data_aoff_t; - -struct xfs_da_geometry { - unsigned int blksize; - unsigned int fsbcount; - uint8_t fsblog; - uint8_t blklog; - unsigned int node_hdr_size; - unsigned int node_ents; - unsigned int magicpct; - xfs_dablk_t datablk; - unsigned int leaf_hdr_size; - unsigned int leaf_max_ents; - xfs_dablk_t leafblk; - unsigned int free_hdr_size; - unsigned int free_max_bests; - xfs_dablk_t freeblk; - xfs_extnum_t max_extents; - xfs_dir2_data_aoff_t data_first_offset; - size_t data_entry_offset; -}; - -typedef struct xfs_mount xfs_mount_t; - -typedef struct xfs_inode xfs_inode_t; - -struct xfs_da_blkinfo { - __be32 forw; - __be32 back; - __be16 magic; - __be16 pad; -}; - -typedef struct xfs_da_blkinfo xfs_da_blkinfo_t; - -struct xfs_da3_blkinfo { - struct xfs_da_blkinfo hdr; - __be32 crc; - __be64 blkno; - __be64 lsn; - uuid_t uuid; - __be64 owner; -}; - -typedef uint16_t xfs_dir2_data_off_t; - -typedef uint32_t xfs_dir2_dataptr_t; - -typedef xfs_off_t xfs_dir2_off_t; - -typedef uint32_t xfs_dir2_db_t; - -struct xfs_dir2_data_free { - __be16 offset; - __be16 length; -}; - -typedef struct xfs_dir2_data_free xfs_dir2_data_free_t; - -struct xfs_dir2_data_hdr { - __be32 magic; - xfs_dir2_data_free_t bestfree[3]; -}; - -typedef struct xfs_dir2_data_hdr xfs_dir2_data_hdr_t; - -struct xfs_dir2_data_entry { - __be64 inumber; - __u8 namelen; - __u8 name[0]; -}; - -typedef struct xfs_dir2_data_entry xfs_dir2_data_entry_t; - -struct xfs_dir2_data_unused { - __be16 freetag; - __be16 length; - __be16 tag; -}; - -typedef struct xfs_dir2_data_unused xfs_dir2_data_unused_t; - -struct xfs_dir2_leaf_hdr { - xfs_da_blkinfo_t info; - __be16 count; - __be16 stale; -}; - -typedef struct xfs_dir2_leaf_hdr xfs_dir2_leaf_hdr_t; - -struct xfs_dir3_leaf_hdr { - struct xfs_da3_blkinfo info; - __be16 count; - __be16 stale; - __be32 pad; -}; - -struct xfs_dir2_leaf_entry { - __be32 hashval; - __be32 address; -}; - -typedef struct xfs_dir2_leaf_entry xfs_dir2_leaf_entry_t; - -struct xfs_dir2_leaf_tail { - __be32 bestcount; -}; - -typedef struct xfs_dir2_leaf_tail xfs_dir2_leaf_tail_t; - -struct xfs_dir2_leaf { - xfs_dir2_leaf_hdr_t hdr; - xfs_dir2_leaf_entry_t __ents[0]; -}; - -typedef struct xfs_dir2_leaf xfs_dir2_leaf_t; - -struct xfs_dir3_leaf { - struct xfs_dir3_leaf_hdr hdr; - struct xfs_dir2_leaf_entry __ents[0]; -}; - -struct xfs_dir2_free_hdr { - __be32 magic; - __be32 firstdb; - __be32 nvalid; - __be32 nused; -}; - -typedef struct xfs_dir2_free_hdr xfs_dir2_free_hdr_t; - -struct xfs_dir2_free { - xfs_dir2_free_hdr_t hdr; - __be16 bests[0]; -}; - -struct xfs_dir2_block_tail { - __be32 count; - __be32 stale; -}; - -typedef struct xfs_dir2_block_tail xfs_dir2_block_tail_t; - -enum xfs_dacmp { - XFS_CMP_DIFFERENT = 0, - XFS_CMP_EXACT = 1, - XFS_CMP_CASE = 2, -}; - -struct xfs_da_args { - struct xfs_da_geometry *geo; - const uint8_t *name; - const uint8_t *new_name; - void *value; - void *new_value; - struct xfs_inode *dp; - struct xfs_trans *trans; - xfs_ino_t inumber; - xfs_ino_t owner; - int valuelen; - int new_valuelen; - uint8_t filetype; - uint8_t op_flags; - uint8_t attr_filter; - short int namelen; - short int new_namelen; - xfs_dahash_t hashval; - xfs_extlen_t total; - int whichfork; - xfs_dablk_t blkno; - int index; - xfs_dablk_t rmtblkno; - int rmtblkcnt; - int rmtvaluelen; - xfs_dablk_t blkno2; - int index2; - xfs_dablk_t rmtblkno2; - int rmtblkcnt2; - int rmtvaluelen2; - enum xfs_dacmp cmpresult; -}; - -typedef struct xfs_da_args xfs_da_args_t; - -struct xfs_da_state_blk { - struct xfs_buf *bp; - xfs_dablk_t blkno; - xfs_daddr_t disk_blkno; - int index; - xfs_dahash_t hashval; - int magic; -}; - -typedef struct xfs_da_state_blk xfs_da_state_blk_t; - -struct xfs_da_state_path { - int active; - xfs_da_state_blk_t blk[5]; -}; - -typedef struct xfs_da_state_path xfs_da_state_path_t; - -struct xfs_da_state { - xfs_da_args_t *args; - struct xfs_mount *mp; - xfs_da_state_path_t path; - xfs_da_state_path_t altpath; - unsigned char inleaf; - unsigned char extravalid; - unsigned char extraafter; - xfs_da_state_blk_t extrablk; -}; - -typedef struct xfs_da_state xfs_da_state_t; - -struct xfs_dir3_icleaf_hdr { - uint32_t forw; - uint32_t back; - uint16_t magic; - uint16_t count; - uint16_t stale; - struct xfs_dir2_leaf_entry *ents; -}; - -struct xfs_dir3_icfree_hdr { - uint32_t magic; - uint32_t firstdb; - uint32_t nvalid; - uint32_t nused; - __be16 *bests; -}; - -struct xfs_item_ops { - unsigned int flags; - void (*iop_size)(struct xfs_log_item *, int *, int *); - void (*iop_format)(struct xfs_log_item *, struct xfs_log_vec *); - void (*iop_pin)(struct xfs_log_item *); - void (*iop_unpin)(struct xfs_log_item *, int); - uint64_t (*iop_sort)(struct xfs_log_item *); - int (*iop_precommit)(struct xfs_trans *, struct xfs_log_item *); - void (*iop_committing)(struct xfs_log_item *, xfs_csn_t); - xfs_lsn_t (*iop_committed)(struct xfs_log_item *, xfs_lsn_t); - uint (*iop_push)(struct xfs_log_item *, struct list_head *); - void (*iop_release)(struct xfs_log_item *); - bool (*iop_match)(struct xfs_log_item *, uint64_t); - struct xfs_log_item * (*iop_intent)(struct xfs_log_item *); -}; - -struct xfs_log_iovec { - void *i_addr; - int i_len; - uint i_type; -}; - -struct xfs_dir3_blk_hdr { - __be32 magic; - __be32 crc; - __be64 blkno; - __be64 lsn; - uuid_t uuid; - __be64 owner; -}; - -typedef struct xfs_dir2_free xfs_dir2_free_t; - -struct xfs_dir3_free_hdr { - struct xfs_dir3_blk_hdr hdr; - __be32 firstdb; - __be32 nvalid; - __be32 nused; - __be32 pad; -}; - -struct xfs_dir3_free { - struct xfs_dir3_free_hdr hdr; - __be16 bests[0]; -}; - -struct xfs_log_vec { - struct list_head lv_list; - uint32_t lv_order_id; - int lv_niovecs; - struct xfs_log_iovec *lv_iovecp; - struct xfs_log_item *lv_item; - char *lv_buf; - int lv_bytes; - int lv_buf_len; - int lv_size; -}; - -struct xfs_name { - const unsigned char *name; - int len; - int type; -}; - -struct xfs_parent_rec { - __be64 p_ino; - __be32 p_gen; -} __attribute__((packed)); - -enum xfs_attr_update { - XFS_ATTRUPDATE_REMOVE = 0, - XFS_ATTRUPDATE_UPSERT = 1, - XFS_ATTRUPDATE_CREATE = 2, - XFS_ATTRUPDATE_REPLACE = 3, -}; - -struct xfs_parent_args { - struct xfs_parent_rec rec; - struct xfs_parent_rec new_rec; - struct xfs_da_args args; -}; - -enum xfs_attr_defer_op { - XFS_ATTR_DEFER_SET = 0, - XFS_ATTR_DEFER_REMOVE = 1, - XFS_ATTR_DEFER_REPLACE = 2, -}; - -typedef uint32_t xfs_rtxlen_t; - -typedef uint32_t xfs_dqid_t; - -typedef uint64_t xfs_qcnt_t; - -struct xfs_quota_limits { - xfs_qcnt_t hard; - xfs_qcnt_t soft; - time64_t time; -}; - -struct xfs_def_quota { - struct xfs_quota_limits blk; - struct xfs_quota_limits ino; - struct xfs_quota_limits rtb; -}; - -struct xfs_quotainfo { - struct xarray qi_uquota_tree; - struct xarray qi_gquota_tree; - struct xarray qi_pquota_tree; - struct mutex qi_tree_lock; - struct xfs_inode *qi_uquotaip; - struct xfs_inode *qi_gquotaip; - struct xfs_inode *qi_pquotaip; - struct list_lru qi_lru; - int qi_dquots; - struct mutex qi_quotaofflock; - xfs_filblks_t qi_dqchunklen; - uint qi_dqperchunk; - struct xfs_def_quota qi_usr_default; - struct xfs_def_quota qi_grp_default; - struct xfs_def_quota qi_prj_default; - struct shrinker *qi_shrinker; - time64_t qi_expiry_min; - time64_t qi_expiry_max; - struct xfs_hooks qi_mod_ino_dqtrx_hooks; - struct xfs_hooks qi_apply_dqtrx_hooks; -}; - -typedef uint8_t xfs_dqtype_t; - -struct xfs_dquot_res { - xfs_qcnt_t reserved; - xfs_qcnt_t count; - xfs_qcnt_t hardlimit; - xfs_qcnt_t softlimit; - time64_t timer; -}; - -struct xfs_dq_logitem { - struct xfs_log_item qli_item; - struct xfs_dquot *qli_dquot; - xfs_lsn_t qli_flush_lsn; - spinlock_t qli_lock; - bool qli_dirty; -}; - -struct xfs_dquot { - struct list_head q_lru; - struct xfs_mount *q_mount; - xfs_dqtype_t q_type; - uint16_t q_flags; - xfs_dqid_t q_id; - uint q_nrefs; - int q_bufoffset; - xfs_daddr_t q_blkno; - xfs_fileoff_t q_fileoffset; - struct xfs_dquot_res q_blk; - struct xfs_dquot_res q_ino; - struct xfs_dquot_res q_rtb; - struct xfs_dq_logitem q_logitem; - xfs_qcnt_t q_prealloc_lo_wmark; - xfs_qcnt_t q_prealloc_hi_wmark; - int64_t q_low_space[3]; - struct mutex q_qlock; - struct completion q_flush; - atomic_t q_pincount; - struct wait_queue_head q_pinwait; -}; - -struct xfs_dqtrx { - struct xfs_dquot *qt_dquot; - uint64_t qt_blk_res; - int64_t qt_bcount_delta; - int64_t qt_delbcnt_delta; - uint64_t qt_rtblk_res; - uint64_t qt_rtblk_res_used; - int64_t qt_rtbcount_delta; - int64_t qt_delrtb_delta; - uint64_t qt_ino_res; - uint64_t qt_ino_res_used; - int64_t qt_icount_delta; -}; - -struct xfs_dquot_acct { - struct xfs_dqtrx dqs[15]; -}; - -struct xfs_iext_leaf; - -struct xfs_iext_cursor { - struct xfs_iext_leaf *leaf; - int pos; -}; - -struct iomap_folio_ops; - -struct iomap { - u64 addr; - loff_t offset; - u64 length; - u16 type; - u16 flags; - struct block_device *bdev; - struct dax_device *dax_dev; - void *inline_data; - void *private; - const struct iomap_folio_ops *folio_ops; - u64 validity_cookie; -}; - -struct iomap_iter; - -struct iomap_folio_ops { - struct folio * (*get_folio)(struct iomap_iter *, loff_t, unsigned int); - void (*put_folio)(struct inode *, loff_t, unsigned int, struct folio *); - bool (*iomap_valid)(struct inode *, const struct iomap *); -}; - -struct iomap_iter { - struct inode *inode; - loff_t pos; - u64 len; - s64 processed; - unsigned int flags; - struct iomap iomap; - struct iomap srcmap; - void *private; -}; - -struct iomap_ops { - int (*iomap_begin)(struct inode *, loff_t, loff_t, unsigned int, struct iomap *, struct iomap *); - int (*iomap_end)(struct inode *, loff_t, loff_t, ssize_t, unsigned int, struct iomap *); -}; - -struct iomap_ioend { - struct list_head io_list; - u16 io_type; - u16 io_flags; - struct inode *io_inode; - size_t io_size; - loff_t io_offset; - sector_t io_sector; - struct bio io_bio; -}; - -struct iomap_writepage_ctx; - -struct iomap_writeback_ops { - int (*map_blocks)(struct iomap_writepage_ctx *, struct inode *, loff_t, unsigned int); - int (*prepare_ioend)(struct iomap_ioend *, int); - void (*discard_folio)(struct folio *, loff_t); -}; - -struct iomap_writepage_ctx { - struct iomap iomap; - struct iomap_ioend *ioend; - const struct iomap_writeback_ops *ops; - u32 nr_folios; -}; - -struct xfs_writepage_ctx { - struct iomap_writepage_ctx ctx; - unsigned int data_seq; - unsigned int cow_seq; -}; - -struct xfs_sysctl_val { - int min; - int val; - int max; -}; - -typedef struct xfs_sysctl_val xfs_sysctl_val_t; - -struct xfs_param { - xfs_sysctl_val_t sgid_inherit; - xfs_sysctl_val_t symlink_mode; - xfs_sysctl_val_t panic_mask; - xfs_sysctl_val_t error_level; - xfs_sysctl_val_t syncd_timer; - xfs_sysctl_val_t stats_clear; - xfs_sysctl_val_t inherit_sync; - xfs_sysctl_val_t inherit_nodump; - xfs_sysctl_val_t inherit_noatim; - xfs_sysctl_val_t xfs_buf_timer; - xfs_sysctl_val_t xfs_buf_age; - xfs_sysctl_val_t inherit_nosym; - xfs_sysctl_val_t rotorstep; - xfs_sysctl_val_t inherit_nodfrg; - xfs_sysctl_val_t fstrm_timer; - xfs_sysctl_val_t blockgc_timer; -}; - -typedef struct xfs_param xfs_param_t; - -struct xfs_globals { - int bload_leaf_slack; - int bload_node_slack; - int log_recovery_delay; - int mount_delay; - bool bug_on_assert; - bool always_cow; -}; - -struct xfs_fsop_handlereq { - __u32 fd; - void *path; - __u32 oflags; - void *ihandle; - __u32 ihandlen; - void *ohandle; - __u32 *ohandlen; -}; - -typedef struct xfs_fsop_handlereq xfs_fsop_handlereq_t; - -struct xfs_attrlist_cursor { - __u32 opaque[4]; -}; - -struct xfs_attrlist { - __s32 al_count; - __s32 al_more; - __s32 al_offset[0]; -}; - -struct xfs_attrlist_ent { - __u32 a_valuelen; - char a_name[0]; -}; - -struct xfs_fsop_attrlist_handlereq { - struct xfs_fsop_handlereq hreq; - struct xfs_attrlist_cursor pos; - __u32 flags; - __u32 buflen; - void *buffer; -}; - -struct xfs_attr_multiop { - __u32 am_opcode; - __s32 am_error; - void *am_attrname; - void *am_attrvalue; - __u32 am_length; - __u32 am_flags; -}; - -typedef struct xfs_attr_multiop xfs_attr_multiop_t; - -struct xfs_fsop_attrmulti_handlereq { - struct xfs_fsop_handlereq hreq; - __u32 opcount; - struct xfs_attr_multiop *ops; -}; - -typedef struct xfs_fsop_attrmulti_handlereq xfs_fsop_attrmulti_handlereq_t; - -struct xfs_fsid { - __u32 val[2]; -}; - -typedef struct xfs_fsid xfs_fsid_t; - -struct xfs_fid { - __u16 fid_len; - __u16 fid_pad; - __u32 fid_gen; - __u64 fid_ino; -}; - -typedef struct xfs_fid xfs_fid_t; - -struct xfs_handle { - union { - __s64 align; - xfs_fsid_t _ha_fsid; - } ha_u; - xfs_fid_t ha_fid; -}; - -typedef struct xfs_handle xfs_handle_t; - -struct xfs_getparents_rec { - struct xfs_handle gpr_parent; - __u32 gpr_reclen; - __u32 gpr_reserved; - char gpr_name[0]; -}; - -struct xfs_getparents { - struct xfs_attrlist_cursor gp_cursor; - __u16 gp_iflags; - __u16 gp_oflags; - __u32 gp_bufsize; - __u64 gp_reserved; - __u64 gp_buffer; -}; - -struct xfs_getparents_by_handle { - struct xfs_handle gph_handle; - struct xfs_getparents gph_request; -}; - -enum fid_type { - FILEID_ROOT = 0, - FILEID_INO32_GEN = 1, - FILEID_INO32_GEN_PARENT = 2, - FILEID_BTRFS_WITHOUT_PARENT = 77, - FILEID_BTRFS_WITH_PARENT = 78, - FILEID_BTRFS_WITH_PARENT_ROOT = 79, - FILEID_UDF_WITHOUT_PARENT = 81, - FILEID_UDF_WITH_PARENT = 82, - FILEID_NILFS_WITHOUT_PARENT = 97, - FILEID_NILFS_WITH_PARENT = 98, - FILEID_FAT_WITHOUT_PARENT = 113, - FILEID_FAT_WITH_PARENT = 114, - FILEID_INO64_GEN = 129, - FILEID_INO64_GEN_PARENT = 130, - FILEID_LUSTRE = 151, - FILEID_BCACHEFS_WITHOUT_PARENT = 177, - FILEID_BCACHEFS_WITH_PARENT = 178, - FILEID_KERNFS = 254, - FILEID_INVALID = 255, -}; - -struct xfs_attrlist_cursor_kern { - __u32 hashval; - __u32 blkno; - __u32 offset; - __u16 pad1; - __u8 pad2; - __u8 initted; -}; - -struct xfs_attr_list_context; - -typedef void (*put_listent_func_t)(struct xfs_attr_list_context *, int, unsigned char *, int, void *, int); - -struct xfs_attr_list_context { - struct xfs_trans *tp; - struct xfs_inode *dp; - struct xfs_attrlist_cursor_kern cursor; - void *buffer; - int seen_enough; - bool allow_incomplete; - ssize_t count; - int dupcnt; - int bufsize; - int firstu; - unsigned int attr_filter; - int resynch; - put_listent_func_t put_listent; - int index; -}; - -struct xfs_fid64 { - u64 ino; - u32 gen; - u64 parent_ino; - u32 parent_gen; -} __attribute__((packed)); - -struct xfs_getparents_ctx { - struct xfs_attr_list_context context; - struct xfs_getparents_by_handle gph; - struct xfs_inode *ip; - void *krecords; - struct xfs_getparents_rec *lastrec; - unsigned int count; -}; - -enum xfs_dinode_fmt { - XFS_DINODE_FMT_DEV = 0, - XFS_DINODE_FMT_LOCAL = 1, - XFS_DINODE_FMT_EXTENTS = 2, - XFS_DINODE_FMT_BTREE = 3, - XFS_DINODE_FMT_UUID = 4, -}; - -struct xfs_dir_update { - struct xfs_inode *dp; - const struct xfs_name *name; - struct xfs_inode *ip; - struct xfs_parent_args *ppargs; -}; - -struct xfs_icreate_args { - struct mnt_idmap *idmap; - struct xfs_inode *pip; - dev_t rdev; - umode_t mode; - uint16_t flags; -}; - -typedef uint64_t xfs_rtblock_t; - -typedef int (*list_cmp_func_t)(void *, const struct list_head *, const struct list_head *); - -typedef uint32_t xlog_tid_t; - -struct xlog_op_header { - __be32 oh_tid; - __be32 oh_len; - __u8 oh_clientid; - __u8 oh_flags; - __u16 oh_res2; -}; - -struct xlog_rec_header { - __be32 h_magicno; - __be32 h_cycle; - __be32 h_version; - __be32 h_len; - __be64 h_lsn; - __be64 h_tail_lsn; - __le32 h_crc; - __be32 h_prev_block; - __be32 h_num_logops; - __be32 h_cycle_data[64]; - __be32 h_fmt; - uuid_t h_fs_uuid; - __be32 h_size; -}; - -typedef struct xlog_rec_header xlog_rec_header_t; - -struct xlog_rec_ext_header { - __be32 xh_cycle; - __be32 xh_cycle_data[64]; -}; - -typedef struct xlog_rec_ext_header xlog_rec_ext_header_t; - -union xlog_in_core2 { - xlog_rec_header_t hic_header; - xlog_rec_ext_header_t hic_xheader; - char hic_sector[512]; -}; - -typedef union xlog_in_core2 xlog_in_core_2_t; - -struct xfs_map_extent { - uint64_t me_owner; - uint64_t me_startblock; - uint64_t me_startoff; - uint32_t me_len; - uint32_t me_flags; -}; - -struct xfs_bui_log_format { - uint16_t bui_type; - uint16_t bui_size; - uint32_t bui_nextents; - uint64_t bui_id; - struct xfs_map_extent bui_extents[0]; -}; - -struct xfs_bud_log_format { - uint16_t bud_type; - uint16_t bud_size; - uint32_t __pad; - uint64_t bud_bui_id; -}; - -struct xfs_ail { - struct xlog *ail_log; - struct task_struct *ail_task; - struct list_head ail_head; - struct list_head ail_cursors; - spinlock_t ail_lock; - xfs_lsn_t ail_last_pushed_lsn; - xfs_lsn_t ail_head_lsn; - int ail_log_flush; - long unsigned int ail_opstate; - struct list_head ail_buf_list; - wait_queue_head_t ail_empty; - xfs_lsn_t ail_target; -}; - -struct xlog_grant_head { - spinlock_t lock; - struct list_head waiters; - atomic64_t grant; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct xfs_cil; - -struct xlog_in_core; - -typedef struct xlog_in_core xlog_in_core_t; - -struct xlog { - struct xfs_mount *l_mp; - struct xfs_ail *l_ailp; - struct xfs_cil *l_cilp; - struct xfs_buftarg *l_targ; - struct workqueue_struct *l_ioend_workqueue; - struct delayed_work l_work; - long int l_opstate; - uint l_quotaoffs_flag; - struct list_head *l_buf_cancel_table; - struct list_head r_dfops; - int l_iclog_hsize; - int l_iclog_heads; - uint l_sectBBsize; - int l_iclog_size; - int l_iclog_bufs; - xfs_daddr_t l_logBBstart; - int l_logsize; - int l_logBBsize; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - wait_queue_head_t l_flush_wait; - int l_covered_state; - xlog_in_core_t *l_iclog; - spinlock_t l_icloglock; - int l_curr_cycle; - int l_prev_cycle; - int l_curr_block; - int l_prev_block; - atomic64_t l_tail_lsn; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct xlog_grant_head l_reserve_head; - struct xlog_grant_head l_write_head; - uint64_t l_tail_space; - struct xfs_kobj l_kobj; - xfs_lsn_t l_recovery_lsn; - uint32_t l_iclog_roundoff; - long: 64; -}; - -struct xfs_defer_op_type; - -struct xfs_defer_pending { - struct list_head dfp_list; - struct list_head dfp_work; - struct xfs_log_item *dfp_intent; - struct xfs_log_item *dfp_done; - const struct xfs_defer_op_type *dfp_ops; - unsigned int dfp_count; - unsigned int dfp_flags; -}; - -struct xfs_defer_op_type { - const char *name; - unsigned int max_items; - struct xfs_log_item * (*create_intent)(struct xfs_trans *, struct list_head *, unsigned int, bool); - void (*abort_intent)(struct xfs_log_item *); - struct xfs_log_item * (*create_done)(struct xfs_trans *, struct xfs_log_item *, unsigned int); - int (*finish_item)(struct xfs_trans *, struct xfs_log_item *, struct list_head *, struct xfs_btree_cur **); - void (*finish_cleanup)(struct xfs_trans *, struct xfs_btree_cur *, int); - void (*cancel_item)(struct list_head *); - int (*recover_work)(struct xfs_defer_pending *, struct list_head *); - struct xfs_log_item * (*relog_intent)(struct xfs_trans *, struct xfs_log_item *, struct xfs_log_item *); -}; - -struct xlog_ticket { - struct list_head t_queue; - struct task_struct *t_task; - xlog_tid_t t_tid; - atomic_t t_ref; - int t_curr_res; - int t_unit_res; - char t_ocnt; - char t_cnt; - uint8_t t_flags; - int t_iclog_hdrs; -}; - -struct xfs_bui_log_item { - struct xfs_log_item bui_item; - atomic_t bui_refcount; - atomic_t bui_next_extent; - struct xfs_bui_log_format bui_format; -}; - -struct xfs_bud_log_item { - struct xfs_log_item bud_item; - struct xfs_bui_log_item *bud_buip; - struct xfs_bud_log_format bud_format; -}; - -enum xfs_bmap_intent_type { - XFS_BMAP_MAP = 1, - XFS_BMAP_UNMAP = 2, -}; - -struct xfs_bmap_intent { - struct list_head bi_list; - enum xfs_bmap_intent_type bi_type; - int bi_whichfork; - struct xfs_inode *bi_owner; - struct xfs_perag *bi_pag; - struct xfs_bmbt_irec bi_bmap; -}; - -struct xfs_busy_extents { - struct xfs_mount *mount; - struct list_head extent_list; - struct work_struct endio_work; - void *owner; -}; - -enum xlog_iclog_state { - XLOG_STATE_ACTIVE = 0, - XLOG_STATE_WANT_SYNC = 1, - XLOG_STATE_SYNCING = 2, - XLOG_STATE_DONE_SYNC = 3, - XLOG_STATE_CALLBACK = 4, - XLOG_STATE_DIRTY = 5, -}; - -struct xlog_in_core { - wait_queue_head_t ic_force_wait; - wait_queue_head_t ic_write_wait; - struct xlog_in_core *ic_next; - struct xlog_in_core *ic_prev; - struct xlog *ic_log; - u32 ic_size; - u32 ic_offset; - enum xlog_iclog_state ic_state; - unsigned int ic_flags; - void *ic_datap; - struct list_head ic_callbacks; - long: 64; - long: 64; - atomic_t ic_refcnt; - xlog_in_core_2_t *ic_data; - struct semaphore ic_sema; - struct work_struct ic_end_io_work; - struct bio ic_bio; - struct bio_vec ic_bvec[0]; - long: 64; -}; - -struct xfs_cil_ctx { - struct xfs_cil *cil; - xfs_csn_t sequence; - xfs_lsn_t start_lsn; - xfs_lsn_t commit_lsn; - struct xlog_in_core *commit_iclog; - struct xlog_ticket *ticket; - atomic_t space_used; - struct xfs_busy_extents busy_extents; - struct list_head log_items; - struct list_head lv_chain; - struct list_head iclog_entry; - struct list_head committing; - struct work_struct push_work; - atomic_t order_id; - struct cpumask cil_pcpmask; -}; - -struct xfs_cil { - struct xlog *xc_log; - long unsigned int xc_flags; - atomic_t xc_iclog_hdrs; - struct workqueue_struct *xc_push_wq; - long: 64; - long: 64; - long: 64; - long: 64; - struct rw_semaphore xc_ctx_lock; - struct xfs_cil_ctx *xc_ctx; - long: 64; - long: 64; - spinlock_t xc_push_lock; - xfs_csn_t xc_push_seq; - bool xc_push_commit_stable; - struct list_head xc_committing; - wait_queue_head_t xc_commit_wait; - wait_queue_head_t xc_start_wait; - xfs_csn_t xc_current_sequence; - wait_queue_head_t xc_push_wait; - void *xc_pcp; -}; - -enum xlog_recover_reorder { - XLOG_REORDER_BUFFER_LIST = 0, - XLOG_REORDER_ITEM_LIST = 1, - XLOG_REORDER_INODE_BUFFER_LIST = 2, - XLOG_REORDER_CANCEL_LIST = 3, -}; - -struct xlog_recover_item; - -struct xlog_recover_item_ops { - uint16_t item_type; - enum xlog_recover_reorder (*reorder)(struct xlog_recover_item *); - void (*ra_pass2)(struct xlog *, struct xlog_recover_item *); - int (*commit_pass1)(struct xlog *, struct xlog_recover_item *); - int (*commit_pass2)(struct xlog *, struct list_head *, struct xlog_recover_item *, xfs_lsn_t); -}; - -struct xlog_recover_item { - struct list_head ri_list; - int ri_cnt; - int ri_total; - struct xfs_log_iovec *ri_buf; - const struct xlog_recover_item_ops *ri_ops; -}; - -enum p9_open_mode_t { - P9_OREAD = 0, - P9_OWRITE = 1, - P9_ORDWR = 2, - P9_OEXEC = 3, - P9_OTRUNC = 16, - P9_OREXEC = 32, - P9_ORCLOSE = 64, - P9_OAPPEND = 128, - P9_OEXCL = 4096, - P9L_MODE_MASK = 8191, - P9L_DIRECT = 8192, - P9L_NOWRITECACHE = 16384, - P9L_LOOSE = 32768, -}; - -struct p9_qid { - u8 type; - u32 version; - u64 path; -}; - -enum p9_trans_status { - Connected = 0, - BeginDisconnect = 1, - Disconnected = 2, - Hung = 3, -}; - -struct p9_trans_module; - -struct p9_client { - spinlock_t lock; - unsigned int msize; - unsigned char proto_version; - struct p9_trans_module *trans_mod; - enum p9_trans_status status; - void *trans; - struct kmem_cache *fcall_cache; - union { - struct { - int rfd; - int wfd; - } fd; - struct { - u16 port; - bool privport; - } tcp; - } trans_opts; - struct idr fids; - struct idr reqs; - char name[65]; -}; - -struct p9_fid { - struct p9_client *clnt; - u32 fid; - refcount_t count; - int mode; - struct p9_qid qid; - u32 iounit; - kuid_t uid; - void *rdir; - struct hlist_node dlist; - struct hlist_node ilist; -}; - -struct cachefiles_msg { - __u32 msg_id; - __u32 opcode; - __u32 len; - __u32 object_id; - __u8 data[0]; -}; - -enum cachefiles_content { - CACHEFILES_CONTENT_NO_DATA = 0, - CACHEFILES_CONTENT_SINGLE = 1, - CACHEFILES_CONTENT_ALL = 2, - CACHEFILES_CONTENT_BACKFS_MAP = 3, - CACHEFILES_CONTENT_DIRTY = 4, - nr__cachefiles_content = 5, -}; - -struct cachefiles_cache; - -struct cachefiles_volume { - struct cachefiles_cache *cache; - struct list_head cache_link; - struct fscache_volume *vcookie; - struct dentry *dentry; - struct dentry *fanout[256]; -}; - -struct cachefiles_cache { - struct fscache_cache *cache; - struct vfsmount *mnt; - struct dentry *store; - struct dentry *graveyard; - struct file *cachefilesd; - struct list_head volumes; - struct list_head object_list; - spinlock_t object_list_lock; - const struct cred *cache_cred; - struct mutex daemon_mutex; - wait_queue_head_t daemon_pollwq; - atomic_t gravecounter; - atomic_t f_released; - atomic_long_t b_released; - atomic_long_t b_writing; - unsigned int frun_percent; - unsigned int fcull_percent; - unsigned int fstop_percent; - unsigned int brun_percent; - unsigned int bcull_percent; - unsigned int bstop_percent; - unsigned int bsize; - unsigned int bshift; - uint64_t frun; - uint64_t fcull; - uint64_t fstop; - sector_t brun; - sector_t bcull; - sector_t bstop; - long unsigned int flags; - char *rootdirname; - char *tag; - refcount_t unbind_pincount; - struct xarray reqs; - long unsigned int req_id_next; - struct xarray ondemand_ids; - u32 ondemand_id_next; - u32 msg_id_next; - u32 secid; - bool have_secid; -}; - -struct cachefiles_object { - struct fscache_cookie *cookie; - struct cachefiles_volume *volume; - struct list_head cache_link; - struct file *file; - char *d_name; - int debug_id; - spinlock_t lock; - refcount_t ref; - u8 d_name_len; - enum cachefiles_content content_info: 8; - long unsigned int flags; -}; - -struct cachefiles_req { - struct cachefiles_object *object; - struct completion done; - refcount_t ref; - int error; - struct cachefiles_msg msg; -}; - -enum cachefiles_has_space_for { - cachefiles_has_space_check = 0, - cachefiles_has_space_for_write = 1, - cachefiles_has_space_for_create = 2, -}; - -struct cachefiles_daemon_cmd { - char name[8]; - int (*handler)(struct cachefiles_cache *, char *); -}; - -enum req_op { - REQ_OP_READ = 0, - REQ_OP_WRITE = 1, - REQ_OP_FLUSH = 2, - REQ_OP_DISCARD = 3, - REQ_OP_SECURE_ERASE = 5, - REQ_OP_ZONE_APPEND = 7, - REQ_OP_WRITE_ZEROES = 9, - REQ_OP_ZONE_OPEN = 10, - REQ_OP_ZONE_CLOSE = 11, - REQ_OP_ZONE_FINISH = 13, - REQ_OP_ZONE_RESET = 15, - REQ_OP_ZONE_RESET_ALL = 17, - REQ_OP_DRV_IN = 34, - REQ_OP_DRV_OUT = 35, - REQ_OP_LAST = 36, -}; - -struct btrfs_qgroup_limit { - __u64 flags; - __u64 max_rfer; - __u64 max_excl; - __u64 rsv_rfer; - __u64 rsv_excl; -}; - -struct btrfs_qgroup_inherit { - __u64 flags; - __u64 num_qgroups; - __u64 num_ref_copies; - __u64 num_excl_copies; - struct btrfs_qgroup_limit lim; - __u64 qgroups[0]; -}; - -struct btrfs_scrub_progress { - __u64 data_extents_scrubbed; - __u64 tree_extents_scrubbed; - __u64 data_bytes_scrubbed; - __u64 tree_bytes_scrubbed; - __u64 read_errors; - __u64 csum_errors; - __u64 verify_errors; - __u64 no_csum; - __u64 csum_discards; - __u64 super_errors; - __u64 malloc_errors; - __u64 uncorrectable_errors; - __u64 corrected_errors; - __u64 last_physical; - __u64 unverified_errors; -}; - -struct btrfs_disk_key { - __le64 objectid; - __u8 type; - __le64 offset; -} __attribute__((packed)); - -struct btrfs_key { - __u64 objectid; - __u8 type; - __u64 offset; -} __attribute__((packed)); - -struct btrfs_header { - __u8 csum[32]; - __u8 fsid[16]; - __le64 bytenr; - __le64 flags; - __u8 chunk_tree_uuid[16]; - __le64 generation; - __le64 owner; - __le32 nritems; - __u8 level; -} __attribute__((packed)); - -struct btrfs_root_backup { - __le64 tree_root; - __le64 tree_root_gen; - __le64 chunk_root; - __le64 chunk_root_gen; - __le64 extent_root; - __le64 extent_root_gen; - __le64 fs_root; - __le64 fs_root_gen; - __le64 dev_root; - __le64 dev_root_gen; - __le64 csum_root; - __le64 csum_root_gen; - __le64 total_bytes; - __le64 bytes_used; - __le64 num_devices; - __le64 unused_64[4]; - __u8 tree_root_level; - __u8 chunk_root_level; - __u8 extent_root_level; - __u8 fs_root_level; - __u8 dev_root_level; - __u8 csum_root_level; - __u8 unused_8[10]; -}; - -struct btrfs_item { - struct btrfs_disk_key key; - __le32 offset; - __le32 size; -} __attribute__((packed)); - -struct btrfs_dev_item { - __le64 devid; - __le64 total_bytes; - __le64 bytes_used; - __le32 io_align; - __le32 io_width; - __le32 sector_size; - __le64 type; - __le64 generation; - __le64 start_offset; - __le32 dev_group; - __u8 seek_speed; - __u8 bandwidth; - __u8 uuid[16]; - __u8 fsid[16]; -} __attribute__((packed)); - -struct btrfs_super_block { - __u8 csum[32]; - __u8 fsid[16]; - __le64 bytenr; - __le64 flags; - __le64 magic; - __le64 generation; - __le64 root; - __le64 chunk_root; - __le64 log_root; - __le64 __unused_log_root_transid; - __le64 total_bytes; - __le64 bytes_used; - __le64 root_dir_objectid; - __le64 num_devices; - __le32 sectorsize; - __le32 nodesize; - __le32 __unused_leafsize; - __le32 stripesize; - __le32 sys_chunk_array_size; - __le64 chunk_root_generation; - __le64 compat_flags; - __le64 compat_ro_flags; - __le64 incompat_flags; - __le16 csum_type; - __u8 root_level; - __u8 chunk_root_level; - __u8 log_root_level; - struct btrfs_dev_item dev_item; - char label[256]; - __le64 cache_generation; - __le64 uuid_tree_generation; - __u8 metadata_uuid[16]; - __u64 nr_global_roots; - __le64 reserved[27]; - __u8 sys_chunk_array[2048]; - struct btrfs_root_backup super_roots[4]; - __u8 padding[565]; -} __attribute__((packed)); - -struct btrfs_timespec { - __le64 sec; - __le32 nsec; -} __attribute__((packed)); - -struct btrfs_inode_item { - __le64 generation; - __le64 transid; - __le64 size; - __le64 nbytes; - __le64 block_group; - __le32 nlink; - __le32 uid; - __le32 gid; - __le32 mode; - __le64 rdev; - __le64 flags; - __le64 sequence; - __le64 reserved[4]; - struct btrfs_timespec atime; - struct btrfs_timespec ctime; - struct btrfs_timespec mtime; - struct btrfs_timespec otime; -}; - -struct btrfs_root_item { - struct btrfs_inode_item inode; - __le64 generation; - __le64 root_dirid; - __le64 bytenr; - __le64 byte_limit; - __le64 bytes_used; - __le64 last_snapshot; - __le64 flags; - __le32 refs; - struct btrfs_disk_key drop_progress; - __u8 drop_level; - __u8 level; - __le64 generation_v2; - __u8 uuid[16]; - __u8 parent_uuid[16]; - __u8 received_uuid[16]; - __le64 ctransid; - __le64 otransid; - __le64 stransid; - __le64 rtransid; - struct btrfs_timespec ctime; - struct btrfs_timespec otime; - struct btrfs_timespec stime; - struct btrfs_timespec rtime; - __le64 reserved[8]; -} __attribute__((packed)); - -enum { - BTRFS_FILE_EXTENT_INLINE = 0, - BTRFS_FILE_EXTENT_REG = 1, - BTRFS_FILE_EXTENT_PREALLOC = 2, - BTRFS_NR_FILE_EXTENT_TYPES = 3, -}; - -struct btrfs_file_extent_item { - __le64 generation; - __le64 ram_bytes; - __u8 compression; - __u8 encryption; - __le16 other_encoding; - __u8 type; - __le64 disk_bytenr; - __le64 disk_num_bytes; - __le64 offset; - __le64 num_bytes; -} __attribute__((packed)); - -struct btrfs_csum_item { - __u8 csum; -}; - -struct btrfs_tree_parent_check { - u64 owner_root; - u64 transid; - struct btrfs_key first_key; - bool has_first_key; - u8 level; -}; - -struct btrfs_bio; - -typedef void (*btrfs_bio_end_io_t)(struct btrfs_bio *); - -struct btrfs_inode; - -struct btrfs_ordered_extent; - -struct btrfs_ordered_sum; - -struct btrfs_fs_info; - -struct btrfs_bio { - struct btrfs_inode *inode; - u64 file_offset; - union { - struct { - u8 *csum; - u8 csum_inline[64]; - struct bvec_iter saved_iter; - }; - struct { - struct btrfs_ordered_extent *ordered; - struct btrfs_ordered_sum *sums; - u64 orig_physical; - }; - struct btrfs_tree_parent_check parent_check; - }; - btrfs_bio_end_io_t end_io; - void *private; - unsigned int mirror_num; - atomic_t pending_ios; - struct work_struct end_io_work; - struct btrfs_fs_info *fs_info; - blk_status_t status; - struct bio bio; -}; - -struct btrfs_work; - -typedef void (*btrfs_func_t)(struct btrfs_work *); - -typedef void (*btrfs_ordered_func_t)(struct btrfs_work *, bool); - -struct btrfs_workqueue; - -struct btrfs_work { - btrfs_func_t func; - btrfs_ordered_func_t ordered_func; - struct work_struct normal_work; - struct list_head ordered_list; - struct btrfs_workqueue *wq; - long unsigned int flags; -}; - -struct btrfs_ordered_extent { - u64 file_offset; - u64 num_bytes; - u64 ram_bytes; - u64 disk_bytenr; - u64 disk_num_bytes; - u64 offset; - u64 bytes_left; - u64 truncated_len; - long unsigned int flags; - int compress_type; - int qgroup_rsv; - refcount_t refs; - struct btrfs_inode *inode; - struct list_head list; - struct list_head log_list; - wait_queue_head_t wait; - struct rb_node rb_node; - struct list_head root_extent_list; - struct btrfs_work work; - struct completion completion; - struct btrfs_work flush_work; - struct list_head work_list; - struct list_head bioc_list; -}; - -struct btrfs_ordered_sum { - u64 logical; - u32 len; - struct list_head list; - u8 sums[0]; -}; - -struct extent_map_tree { - struct rb_root root; - struct list_head modified_extents; - rwlock_t lock; -}; - -struct extent_io_tree { - struct rb_root state; - union { - struct btrfs_fs_info *fs_info; - struct btrfs_inode *inode; - }; - u8 owner; - spinlock_t lock; -}; - -enum btrfs_rsv_type { - BTRFS_BLOCK_RSV_GLOBAL = 0, - BTRFS_BLOCK_RSV_DELALLOC = 1, - BTRFS_BLOCK_RSV_TRANS = 2, - BTRFS_BLOCK_RSV_CHUNK = 3, - BTRFS_BLOCK_RSV_DELOPS = 4, - BTRFS_BLOCK_RSV_DELREFS = 5, - BTRFS_BLOCK_RSV_EMPTY = 6, - BTRFS_BLOCK_RSV_TEMP = 7, -}; - -struct btrfs_space_info; - -struct btrfs_block_rsv { - u64 size; - u64 reserved; - struct btrfs_space_info *space_info; - spinlock_t lock; - bool full; - bool failfast; - enum btrfs_rsv_type type: 8; - u64 qgroup_rsv_size; - u64 qgroup_rsv_reserved; -}; - -struct btrfs_root; - -struct btrfs_delayed_node; - -struct btrfs_inode { - struct btrfs_root *root; - u8 prop_compress; - u8 defrag_compress; - spinlock_t lock; - struct extent_map_tree extent_tree; - struct extent_io_tree io_tree; - struct extent_io_tree *file_extent_tree; - struct mutex log_mutex; - unsigned int outstanding_extents; - spinlock_t ordered_tree_lock; - struct rb_root ordered_tree; - struct rb_node *ordered_tree_last; - struct list_head delalloc_inodes; - long unsigned int runtime_flags; - u64 generation; - u64 last_trans; - u64 logged_trans; - int last_sub_trans; - int last_log_commit; - union { - u64 delalloc_bytes; - u64 first_dir_index_to_log; - }; - union { - u64 new_delalloc_bytes; - u64 last_dir_index_offset; - }; - union { - u64 defrag_bytes; - u64 reloc_block_group_start; - }; - u64 disk_i_size; - union { - u64 index_cnt; - u64 csum_bytes; - }; - u64 dir_index; - u64 last_unlink_trans; - union { - u64 last_reflink_trans; - u64 ref_root_id; - }; - u32 flags; - u32 ro_flags; - struct btrfs_block_rsv block_rsv; - struct btrfs_delayed_node *delayed_node; - u64 i_otime_sec; - u32 i_otime_nsec; - struct list_head delayed_iput; - struct rw_semaphore i_mmap_lock; - struct inode vfs_inode; -}; - -struct btrfs_block_group; - -struct btrfs_free_cluster { - spinlock_t lock; - spinlock_t refill_lock; - struct rb_root root; - u64 max_size; - u64 window_start; - bool fragmented; - struct btrfs_block_group *block_group; - struct list_head block_group_list; -}; - -struct btrfs_discard_ctl { - struct workqueue_struct *discard_workers; - struct delayed_work work; - spinlock_t lock; - struct btrfs_block_group *block_group; - struct list_head discard_list[3]; - u64 prev_discard; - u64 prev_discard_time; - atomic_t discardable_extents; - atomic64_t discardable_bytes; - u64 max_discard_size; - u64 delay_ms; - u32 iops_limit; - u32 kbps_limit; - u64 discard_extent_bytes; - u64 discard_bitmap_bytes; - atomic64_t discard_bytes_saved; -}; - -struct btrfs_device; - -struct btrfs_dev_replace { - u64 replace_state; - time64_t time_started; - time64_t time_stopped; - atomic64_t num_write_errors; - atomic64_t num_uncorrectable_read_errors; - u64 cursor_left; - u64 committed_cursor_left; - u64 cursor_left_last_write_of_item; - u64 cursor_right; - u64 cont_reading_from_srcdev_mode; - int is_valid; - int item_needs_writeback; - struct btrfs_device *srcdev; - struct btrfs_device *tgtdev; - struct mutex lock_finishing_cancel_unmount; - struct rw_semaphore rwsem; - struct btrfs_scrub_progress scrub_progress; - struct percpu_counter bio_counter; - wait_queue_head_t replace_wait; - struct task_struct *replace_task; -}; - -enum btrfs_exclusive_operation { - BTRFS_EXCLOP_NONE = 0, - BTRFS_EXCLOP_BALANCE_PAUSED = 1, - BTRFS_EXCLOP_BALANCE = 2, - BTRFS_EXCLOP_DEV_ADD = 3, - BTRFS_EXCLOP_DEV_REMOVE = 4, - BTRFS_EXCLOP_DEV_REPLACE = 5, - BTRFS_EXCLOP_RESIZE = 6, - BTRFS_EXCLOP_SWAP_ACTIVATE = 7, -}; - -struct btrfs_commit_stats { - u64 commit_count; - u64 max_commit_dur; - u64 last_commit_dur; - u64 total_commit_dur; -}; - -struct btrfs_transaction; - -struct btrfs_stripe_hash_table; - -struct btrfs_fs_devices; - -struct reloc_control; - -struct btrfs_balance_control; - -struct ulist; - -struct btrfs_delayed_root; - -struct btrfs_fs_info { - u8 chunk_tree_uuid[16]; - long unsigned int flags; - struct btrfs_root *tree_root; - struct btrfs_root *chunk_root; - struct btrfs_root *dev_root; - struct btrfs_root *fs_root; - struct btrfs_root *quota_root; - struct btrfs_root *uuid_root; - struct btrfs_root *data_reloc_root; - struct btrfs_root *block_group_root; - struct btrfs_root *stripe_root; - struct btrfs_root *log_root_tree; - rwlock_t global_root_lock; - struct rb_root global_root_tree; - spinlock_t fs_roots_radix_lock; - struct xarray fs_roots_radix; - rwlock_t block_group_cache_lock; - struct rb_root_cached block_group_cache_tree; - atomic64_t free_chunk_space; - struct extent_io_tree excluded_extents; - struct rb_root_cached mapping_tree; - rwlock_t mapping_tree_lock; - struct btrfs_block_rsv global_block_rsv; - struct btrfs_block_rsv trans_block_rsv; - struct btrfs_block_rsv chunk_block_rsv; - struct btrfs_block_rsv delayed_block_rsv; - struct btrfs_block_rsv delayed_refs_rsv; - struct btrfs_block_rsv empty_block_rsv; - u64 generation; - u64 last_trans_committed; - u64 last_reloc_trans; - u64 last_trans_log_full_commit; - long long unsigned int mount_opt; - long unsigned int compress_type: 4; - unsigned int compress_level; - u32 commit_interval; - u64 max_inline; - struct btrfs_transaction *running_transaction; - wait_queue_head_t transaction_throttle; - wait_queue_head_t transaction_wait; - wait_queue_head_t transaction_blocked_wait; - wait_queue_head_t async_submit_wait; - spinlock_t super_lock; - struct btrfs_super_block *super_copy; - struct btrfs_super_block *super_for_commit; - struct super_block *sb; - struct inode *btree_inode; - struct mutex tree_log_mutex; - struct mutex transaction_kthread_mutex; - struct mutex cleaner_mutex; - struct mutex chunk_mutex; - struct mutex ro_block_group_mutex; - struct btrfs_stripe_hash_table *stripe_hash_table; - struct mutex ordered_operations_mutex; - struct rw_semaphore commit_root_sem; - struct rw_semaphore cleanup_work_sem; - struct rw_semaphore subvol_sem; - spinlock_t trans_lock; - struct mutex reloc_mutex; - struct list_head trans_list; - struct list_head dead_roots; - struct list_head caching_block_groups; - spinlock_t delayed_iput_lock; - struct list_head delayed_iputs; - atomic_t nr_delayed_iputs; - wait_queue_head_t delayed_iputs_wait; - atomic64_t tree_mod_seq; - rwlock_t tree_mod_log_lock; - struct rb_root tree_mod_log; - struct list_head tree_mod_seq_list; - atomic_t async_delalloc_pages; - spinlock_t ordered_root_lock; - struct list_head ordered_roots; - struct mutex delalloc_root_mutex; - spinlock_t delalloc_root_lock; - struct list_head delalloc_roots; - struct btrfs_workqueue *workers; - struct btrfs_workqueue *delalloc_workers; - struct btrfs_workqueue *flush_workers; - struct workqueue_struct *endio_workers; - struct workqueue_struct *endio_meta_workers; - struct workqueue_struct *rmw_workers; - struct workqueue_struct *compressed_write_workers; - struct btrfs_workqueue *endio_write_workers; - struct btrfs_workqueue *endio_freespace_worker; - struct btrfs_workqueue *caching_workers; - struct btrfs_workqueue *fixup_workers; - struct btrfs_workqueue *delayed_workers; - struct task_struct *transaction_kthread; - struct task_struct *cleaner_kthread; - u32 thread_pool_size; - struct kobject *space_info_kobj; - struct kobject *qgroups_kobj; - struct kobject *discard_kobj; - struct percpu_counter dirty_metadata_bytes; - struct percpu_counter delalloc_bytes; - struct percpu_counter ordered_bytes; - s32 dirty_metadata_batch; - s32 delalloc_batch; - struct percpu_counter evictable_extent_maps; - spinlock_t extent_map_shrinker_lock; - u64 extent_map_shrinker_last_root; - u64 extent_map_shrinker_last_ino; - atomic64_t extent_map_shrinker_nr_to_scan; - struct work_struct extent_map_shrinker_work; - struct list_head dirty_cowonly_roots; - struct btrfs_fs_devices *fs_devices; - struct list_head space_info; - struct btrfs_space_info *data_sinfo; - struct reloc_control *reloc_ctl; - struct btrfs_free_cluster data_alloc_cluster; - struct btrfs_free_cluster meta_alloc_cluster; - spinlock_t defrag_inodes_lock; - struct rb_root defrag_inodes; - atomic_t defrag_running; - seqlock_t profiles_lock; - u64 avail_data_alloc_bits; - u64 avail_metadata_alloc_bits; - u64 avail_system_alloc_bits; - spinlock_t balance_lock; - struct mutex balance_mutex; - atomic_t balance_pause_req; - atomic_t balance_cancel_req; - struct btrfs_balance_control *balance_ctl; - wait_queue_head_t balance_wait_q; - atomic_t reloc_cancel_req; - u32 data_chunk_allocations; - u32 metadata_ratio; - void *bdev_holder; - struct mutex scrub_lock; - atomic_t scrubs_running; - atomic_t scrub_pause_req; - atomic_t scrubs_paused; - atomic_t scrub_cancel_req; - wait_queue_head_t scrub_pause_wait; - refcount_t scrub_workers_refcnt; - u32 sectors_per_page; - struct workqueue_struct *scrub_workers; - struct btrfs_discard_ctl discard_ctl; - u64 qgroup_flags; - struct rb_root qgroup_tree; - spinlock_t qgroup_lock; - struct ulist *qgroup_ulist; - struct mutex qgroup_ioctl_lock; - struct list_head dirty_qgroups; - u64 qgroup_seq; - struct mutex qgroup_rescan_lock; - struct btrfs_key qgroup_rescan_progress; - struct btrfs_workqueue *qgroup_rescan_workers; - struct completion qgroup_rescan_completion; - struct btrfs_work qgroup_rescan_work; - bool qgroup_rescan_running; - u8 qgroup_drop_subtree_thres; - u64 qgroup_enable_gen; - int fs_error; - long unsigned int fs_state; - struct btrfs_delayed_root *delayed_root; - spinlock_t buffer_lock; - struct xarray buffer_radix; - int backup_root_index; - struct btrfs_dev_replace dev_replace; - struct semaphore uuid_tree_rescan_sem; - struct work_struct async_reclaim_work; - struct work_struct async_data_reclaim_work; - struct work_struct preempt_reclaim_work; - struct work_struct reclaim_bgs_work; - struct list_head reclaim_bgs; - int bg_reclaim_threshold; - spinlock_t unused_bgs_lock; - struct list_head unused_bgs; - struct mutex unused_bg_unpin_mutex; - struct mutex reclaim_bgs_lock; - u32 nodesize; - u32 sectorsize; - u32 sectorsize_bits; - u32 csum_size; - u32 csums_per_leaf; - u32 stripesize; - u64 max_extent_size; - spinlock_t swapfile_pins_lock; - struct rb_root swapfile_pins; - struct crypto_shash *csum_shash; - enum btrfs_exclusive_operation exclusive_operation; - u64 zone_size; - struct queue_limits limits; - u64 max_zone_append_size; - struct mutex zoned_meta_io_lock; - spinlock_t treelog_bg_lock; - u64 treelog_bg; - spinlock_t relocation_bg_lock; - u64 data_reloc_bg; - struct mutex zoned_data_reloc_io_lock; - struct btrfs_block_group *active_meta_bg; - struct btrfs_block_group *active_system_bg; - u64 nr_global_roots; - spinlock_t zone_active_bgs_lock; - struct list_head zone_active_bgs; - struct btrfs_commit_stats commit_stats; - u64 last_root_drop_gen; - struct lockdep_map btrfs_trans_num_writers_map; - struct lockdep_map btrfs_trans_num_extwriters_map; - struct lockdep_map btrfs_state_change_map[4]; - struct lockdep_map btrfs_trans_pending_ordered_map; - struct lockdep_map btrfs_ordered_extent_map; -}; - -enum btrfs_compression_type { - BTRFS_COMPRESS_NONE = 0, - BTRFS_COMPRESS_ZLIB = 1, - BTRFS_COMPRESS_LZO = 2, - BTRFS_COMPRESS_ZSTD = 3, - BTRFS_NR_COMPRESS_TYPES = 4, -}; - -struct ulist_node { - u64 val; - u64 aux; - struct list_head list; - struct rb_node rb_node; -}; - -struct ulist { - long unsigned int nnodes; - struct list_head nodes; - struct rb_root root; - struct ulist_node *prealloc; -}; - -struct extent_buffer { - u64 start; - u32 len; - u32 folio_size; - long unsigned int bflags; - struct btrfs_fs_info *fs_info; - void *addr; - spinlock_t refs_lock; - atomic_t refs; - int read_mirror; - s8 log_index; - u8 folio_shift; - struct callback_head callback_head; - struct rw_semaphore lock; - struct folio *folios[16]; -}; - -struct extent_changeset { - u64 bytes_changed; - struct ulist range_changed; -}; - -struct btrfs_drew_lock { - atomic_t readers; - atomic_t writers; - wait_queue_head_t pending_writers; - wait_queue_head_t pending_readers; -}; - -enum { - __EXTENT_DIRTY_BIT = 0, - EXTENT_DIRTY = 1, - __EXTENT_DIRTY_SEQ = 0, - __EXTENT_UPTODATE_BIT = 1, - EXTENT_UPTODATE = 2, - __EXTENT_UPTODATE_SEQ = 1, - __EXTENT_LOCKED_BIT = 2, - EXTENT_LOCKED = 4, - __EXTENT_LOCKED_SEQ = 2, - __EXTENT_DIO_LOCKED_BIT = 3, - EXTENT_DIO_LOCKED = 8, - __EXTENT_DIO_LOCKED_SEQ = 3, - __EXTENT_NEW_BIT = 4, - EXTENT_NEW = 16, - __EXTENT_NEW_SEQ = 4, - __EXTENT_DELALLOC_BIT = 5, - EXTENT_DELALLOC = 32, - __EXTENT_DELALLOC_SEQ = 5, - __EXTENT_DEFRAG_BIT = 6, - EXTENT_DEFRAG = 64, - __EXTENT_DEFRAG_SEQ = 6, - __EXTENT_BOUNDARY_BIT = 7, - EXTENT_BOUNDARY = 128, - __EXTENT_BOUNDARY_SEQ = 7, - __EXTENT_NODATASUM_BIT = 8, - EXTENT_NODATASUM = 256, - __EXTENT_NODATASUM_SEQ = 8, - __EXTENT_CLEAR_META_RESV_BIT = 9, - EXTENT_CLEAR_META_RESV = 512, - __EXTENT_CLEAR_META_RESV_SEQ = 9, - __EXTENT_NEED_WAIT_BIT = 10, - EXTENT_NEED_WAIT = 1024, - __EXTENT_NEED_WAIT_SEQ = 10, - __EXTENT_NORESERVE_BIT = 11, - EXTENT_NORESERVE = 2048, - __EXTENT_NORESERVE_SEQ = 11, - __EXTENT_QGROUP_RESERVED_BIT = 12, - EXTENT_QGROUP_RESERVED = 4096, - __EXTENT_QGROUP_RESERVED_SEQ = 12, - __EXTENT_CLEAR_DATA_RESV_BIT = 13, - EXTENT_CLEAR_DATA_RESV = 8192, - __EXTENT_CLEAR_DATA_RESV_SEQ = 13, - __EXTENT_DELALLOC_NEW_BIT = 14, - EXTENT_DELALLOC_NEW = 16384, - __EXTENT_DELALLOC_NEW_SEQ = 14, - __EXTENT_ADD_INODE_BYTES_BIT = 15, - EXTENT_ADD_INODE_BYTES = 32768, - __EXTENT_ADD_INODE_BYTES_SEQ = 15, - __EXTENT_CLEAR_ALL_BITS_BIT = 16, - EXTENT_CLEAR_ALL_BITS = 65536, - __EXTENT_CLEAR_ALL_BITS_SEQ = 16, - __EXTENT_NOWAIT_BIT = 17, - EXTENT_NOWAIT = 131072, - __EXTENT_NOWAIT_SEQ = 17, -}; - -struct extent_state { - u64 start; - u64 end; - struct rb_node rb_node; - wait_queue_head_t wq; - refcount_t refs; - u32 state; -}; - -enum { - BTRFS_FS_STATE_REMOUNTING = 0, - BTRFS_FS_STATE_RO = 1, - BTRFS_FS_STATE_TRANS_ABORTED = 2, - BTRFS_FS_STATE_DEV_REPLACING = 3, - BTRFS_FS_STATE_DUMMY_FS_INFO = 4, - BTRFS_FS_STATE_NO_DATA_CSUMS = 5, - BTRFS_FS_STATE_SKIP_META_CSUMS = 6, - BTRFS_FS_STATE_LOG_CLEANUP_ERROR = 7, - BTRFS_FS_STATE_COUNT = 8, -}; - -struct btrfs_qgroup_swapped_blocks { - spinlock_t lock; - bool swapped; - struct rb_root blocks[8]; -}; - -struct btrfs_root { - struct rb_node rb_node; - struct extent_buffer *node; - struct extent_buffer *commit_root; - struct btrfs_root *log_root; - struct btrfs_root *reloc_root; - long unsigned int state; - struct btrfs_root_item root_item; - struct btrfs_key root_key; - struct btrfs_fs_info *fs_info; - struct extent_io_tree dirty_log_pages; - struct mutex objectid_mutex; - spinlock_t accounting_lock; - struct btrfs_block_rsv *block_rsv; - struct mutex log_mutex; - wait_queue_head_t log_writer_wait; - wait_queue_head_t log_commit_wait[2]; - struct list_head log_ctxs[2]; - atomic_t log_writers; - atomic_t log_commit[2]; - atomic_t log_batch; - int log_transid; - int log_transid_committed; - int last_log_commit; - pid_t log_start_pid; - u64 last_trans; - u64 free_objectid; - struct btrfs_key defrag_progress; - struct btrfs_key defrag_max; - struct list_head dirty_list; - struct list_head root_list; - struct xarray inodes; - struct xarray delayed_nodes; - dev_t anon_dev; - spinlock_t root_item_lock; - refcount_t refs; - struct mutex delalloc_mutex; - spinlock_t delalloc_lock; - struct list_head delalloc_inodes; - struct list_head delalloc_root; - u64 nr_delalloc_inodes; - struct mutex ordered_extent_mutex; - spinlock_t ordered_extent_lock; - struct list_head ordered_extents; - struct list_head ordered_root; - u64 nr_ordered_extents; - struct list_head reloc_dirty_list; - int send_in_progress; - int dedupe_in_progress; - struct btrfs_drew_lock snapshot_lock; - atomic_t snapshot_force_cow; - spinlock_t qgroup_meta_rsv_lock; - u64 qgroup_meta_rsv_pertrans; - u64 qgroup_meta_rsv_prealloc; - wait_queue_head_t qgroup_flush_wait; - atomic_t nr_swapfiles; - struct btrfs_qgroup_swapped_blocks swapped_blocks; - struct extent_io_tree log_csum_range; - u64 relocation_src_root; -}; - -enum btrfs_trans_state { - TRANS_STATE_RUNNING = 0, - TRANS_STATE_COMMIT_PREP = 1, - TRANS_STATE_COMMIT_START = 2, - TRANS_STATE_COMMIT_DOING = 3, - TRANS_STATE_UNBLOCKED = 4, - TRANS_STATE_SUPER_COMMITTED = 5, - TRANS_STATE_COMPLETED = 6, - TRANS_STATE_MAX = 7, -}; - -struct btrfs_delayed_ref_root { - struct rb_root_cached href_root; - struct xarray dirty_extents; - spinlock_t lock; - atomic_t num_entries; - long unsigned int num_heads; - long unsigned int num_heads_ready; - u64 pending_csums; - long unsigned int flags; - u64 run_delayed_start; - u64 qgroup_to_skip; -}; - -struct btrfs_transaction { - u64 transid; - atomic_t num_extwriters; - atomic_t num_writers; - refcount_t use_count; - long unsigned int flags; - enum btrfs_trans_state state; - int aborted; - struct list_head list; - struct extent_io_tree dirty_pages; - time64_t start_time; - wait_queue_head_t writer_wait; - wait_queue_head_t commit_wait; - struct list_head pending_snapshots; - struct list_head dev_update_list; - struct list_head switch_commits; - struct list_head dirty_bgs; - struct list_head io_bgs; - struct list_head dropped_roots; - struct extent_io_tree pinned_extents; - struct mutex cache_write_mutex; - spinlock_t dirty_bgs_lock; - struct list_head deleted_bgs; - spinlock_t dropped_roots_lock; - struct btrfs_delayed_ref_root delayed_refs; - struct btrfs_fs_info *fs_info; - atomic_t pending_ordered; - wait_queue_head_t pending_wait; -}; - -struct btrfs_delayed_root { - spinlock_t lock; - struct list_head node_list; - struct list_head prepare_list; - atomic_t items; - atomic_t items_seq; - int nodes; - wait_queue_head_t wait; -}; - -enum { - READA_NONE = 0, - READA_BACK = 1, - READA_FORWARD = 2, - READA_FORWARD_ALWAYS = 3, -}; - -struct btrfs_path { - struct extent_buffer *nodes[8]; - int slots[8]; - u8 locks[8]; - u8 reada; - u8 lowest_level; - unsigned int search_for_split: 1; - unsigned int keep_locks: 1; - unsigned int skip_locking: 1; - unsigned int search_commit_root: 1; - unsigned int need_commit_sem: 1; - unsigned int skip_release_on_error: 1; - unsigned int search_for_extension: 1; - unsigned int nowait: 1; -}; - -struct btrfs_item_batch { - const struct btrfs_key *keys; - const u32 *data_sizes; - u32 total_data_size; - int nr; -}; - -enum { - __EXTENT_FLAG_PINNED_BIT = 0, - EXTENT_FLAG_PINNED = 1, - __EXTENT_FLAG_PINNED_SEQ = 0, - __EXTENT_FLAG_COMPRESS_ZLIB_BIT = 1, - EXTENT_FLAG_COMPRESS_ZLIB = 2, - __EXTENT_FLAG_COMPRESS_ZLIB_SEQ = 1, - __EXTENT_FLAG_COMPRESS_LZO_BIT = 2, - EXTENT_FLAG_COMPRESS_LZO = 4, - __EXTENT_FLAG_COMPRESS_LZO_SEQ = 2, - __EXTENT_FLAG_COMPRESS_ZSTD_BIT = 3, - EXTENT_FLAG_COMPRESS_ZSTD = 8, - __EXTENT_FLAG_COMPRESS_ZSTD_SEQ = 3, - __EXTENT_FLAG_PREALLOC_BIT = 4, - EXTENT_FLAG_PREALLOC = 16, - __EXTENT_FLAG_PREALLOC_SEQ = 4, - __EXTENT_FLAG_LOGGING_BIT = 5, - EXTENT_FLAG_LOGGING = 32, - __EXTENT_FLAG_LOGGING_SEQ = 5, - __EXTENT_FLAG_MERGED_BIT = 6, - EXTENT_FLAG_MERGED = 64, - __EXTENT_FLAG_MERGED_SEQ = 6, -}; - -struct extent_map { - struct rb_node rb_node; - u64 start; - u64 len; - u64 disk_bytenr; - u64 disk_num_bytes; - u64 offset; - u64 ram_bytes; - u64 generation; - u32 flags; - refcount_t refs; - struct list_head list; -}; - -struct btrfs_delayed_node { - u64 inode_id; - u64 bytes_reserved; - struct btrfs_root *root; - struct list_head n_list; - struct list_head p_list; - struct rb_root_cached ins_root; - struct rb_root_cached del_root; - struct mutex mutex; - struct btrfs_inode_item inode_item; - refcount_t refs; - u64 index_cnt; - long unsigned int flags; - int count; - u32 curr_index_batch_size; - u32 index_item_leaves; -}; - -enum { - BTRFS_INODE_FLUSH_ON_CLOSE = 0, - BTRFS_INODE_DUMMY = 1, - BTRFS_INODE_IN_DEFRAG = 2, - BTRFS_INODE_HAS_ASYNC_EXTENT = 3, - BTRFS_INODE_NEEDS_FULL_SYNC = 4, - BTRFS_INODE_COPY_EVERYTHING = 5, - BTRFS_INODE_HAS_PROPS = 6, - BTRFS_INODE_SNAPSHOT_FLUSH = 7, - BTRFS_INODE_NO_XATTRS = 8, - BTRFS_INODE_NO_DELALLOC_FLUSH = 9, - BTRFS_INODE_VERITY_IN_PROGRESS = 10, - BTRFS_INODE_FREE_SPACE_INODE = 11, - BTRFS_INODE_NO_CAP_XATTR = 12, - BTRFS_INODE_COW_WRITE_ERROR = 13, - BTRFS_INODE_ROOT_STUB = 14, -}; - -struct btrfs_pending_snapshot; - -struct btrfs_trans_handle { - u64 transid; - u64 bytes_reserved; - u64 delayed_refs_bytes_reserved; - u64 chunk_bytes_reserved; - long unsigned int delayed_ref_updates; - long unsigned int delayed_ref_csum_deletions; - struct btrfs_transaction *transaction; - struct btrfs_block_rsv *block_rsv; - struct btrfs_block_rsv *orig_rsv; - struct btrfs_pending_snapshot *pending_snapshot; - refcount_t use_count; - unsigned int type; - short int aborted; - bool adding_csums; - bool allocating_chunk; - bool removing_chunk; - bool reloc_reserved; - bool in_fsync; - struct btrfs_fs_info *fs_info; - struct list_head new_bgs; - struct btrfs_block_rsv delayed_rsv; -}; - -struct btrfs_pending_snapshot { - struct dentry *dentry; - struct btrfs_inode *dir; - struct btrfs_root *root; - struct btrfs_root_item *root_item; - struct btrfs_root *snap; - struct btrfs_qgroup_inherit *inherit; - struct btrfs_path *path; - struct btrfs_block_rsv block_rsv; - int error; - dev_t anon_dev; - bool readonly; - struct list_head list; -}; - -enum btrfs_discard_state { - BTRFS_DISCARD_EXTENTS = 0, - BTRFS_DISCARD_BITMAPS = 1, - BTRFS_DISCARD_RESET_CURSOR = 2, -}; - -struct btrfs_io_ctl { - void *cur; - void *orig; - struct page *page; - struct page **pages; - struct btrfs_fs_info *fs_info; - struct inode *inode; - long unsigned int size; - int index; - int num_pages; - int entries; - int bitmaps; -}; - -enum btrfs_block_group_size_class { - BTRFS_BG_SZ_NONE = 0, - BTRFS_BG_SZ_SMALL = 1, - BTRFS_BG_SZ_MEDIUM = 2, - BTRFS_BG_SZ_LARGE = 3, -}; - -struct btrfs_caching_control; - -struct btrfs_free_space_ctl; - -struct btrfs_chunk_map; - -struct btrfs_block_group { - struct btrfs_fs_info *fs_info; - struct btrfs_inode *inode; - spinlock_t lock; - u64 start; - u64 length; - u64 pinned; - u64 reserved; - u64 used; - u64 delalloc_bytes; - u64 bytes_super; - u64 flags; - u64 cache_generation; - u64 global_root_id; - u64 commit_used; - u32 bitmap_high_thresh; - u32 bitmap_low_thresh; - struct rw_semaphore data_rwsem; - long unsigned int full_stripe_len; - long unsigned int runtime_flags; - unsigned int ro; - int disk_cache_state; - int cached; - struct btrfs_caching_control *caching_ctl; - struct btrfs_space_info *space_info; - struct btrfs_free_space_ctl *free_space_ctl; - struct rb_node cache_node; - struct list_head list; - refcount_t refs; - struct list_head cluster_list; - struct list_head bg_list; - struct list_head ro_list; - atomic_t frozen; - struct list_head discard_list; - int discard_index; - u64 discard_eligible_time; - u64 discard_cursor; - enum btrfs_discard_state discard_state; - struct list_head dirty_list; - struct list_head io_list; - struct btrfs_io_ctl io_ctl; - atomic_t reservations; - atomic_t nocow_writers; - struct mutex free_space_lock; - int swap_extents; - u64 alloc_offset; - u64 zone_unusable; - u64 zone_capacity; - u64 meta_write_pointer; - struct btrfs_chunk_map *physical_map; - struct list_head active_bg_list; - struct work_struct zone_finish_work; - struct extent_buffer *last_eb; - enum btrfs_block_group_size_class size_class; - u64 reclaim_mark; -}; - -enum { - BTRFS_ORDERED_REGULAR = 0, - BTRFS_ORDERED_NOCOW = 1, - BTRFS_ORDERED_PREALLOC = 2, - BTRFS_ORDERED_COMPRESSED = 3, - BTRFS_ORDERED_DIRECT = 4, - BTRFS_ORDERED_IO_DONE = 5, - BTRFS_ORDERED_COMPLETE = 6, - BTRFS_ORDERED_IOERR = 7, - BTRFS_ORDERED_TRUNCATED = 8, - BTRFS_ORDERED_LOGGED = 9, - BTRFS_ORDERED_LOGGED_CSUM = 10, - BTRFS_ORDERED_PENDING = 11, - BTRFS_ORDERED_ENCODED = 12, -}; - -struct btrfs_file_extent { - u64 disk_bytenr; - u64 disk_num_bytes; - u64 num_bytes; - u64 ram_bytes; - u64 offset; - u8 compression; -}; - -enum btrfs_qgroup_rsv_type { - BTRFS_QGROUP_RSV_DATA = 0, - BTRFS_QGROUP_RSV_META_PERTRANS = 1, - BTRFS_QGROUP_RSV_META_PREALLOC = 2, - BTRFS_QGROUP_RSV_LAST = 3, -}; - -enum btrfs_trim_state { - BTRFS_TRIM_STATE_UNTRIMMED = 0, - BTRFS_TRIM_STATE_TRIMMED = 1, - BTRFS_TRIM_STATE_TRIMMING = 2, -}; - -struct btrfs_free_space { - struct rb_node offset_index; - struct rb_node bytes_index; - u64 offset; - u64 bytes; - u64 max_extent_size; - long unsigned int *bitmap; - struct list_head list; - enum btrfs_trim_state trim_state; - s32 bitmap_extents; -}; - -enum { - BTRFS_STAT_CURR = 0, - BTRFS_STAT_PREV = 1, - BTRFS_STAT_NR_ENTRIES = 2, -}; - -struct btrfs_free_space_op; - -struct btrfs_free_space_ctl { - spinlock_t tree_lock; - struct rb_root free_space_offset; - struct rb_root_cached free_space_bytes; - u64 free_space; - int extents_thresh; - int free_extents; - int total_bitmaps; - int unit; - u64 start; - s32 discardable_extents[2]; - s64 discardable_bytes[2]; - const struct btrfs_free_space_op *op; - struct btrfs_block_group *block_group; - struct mutex cache_writeout_mutex; - struct list_head trimming_ranges; -}; - -struct btrfs_free_space_op { - bool (*use_bitmap)(struct btrfs_free_space_ctl *, struct btrfs_free_space *); -}; - -struct btrfs_caching_control { - struct list_head list; - struct mutex mutex; - wait_queue_head_t wait; - struct btrfs_work work; - struct btrfs_block_group *block_group; - atomic_t progress; - refcount_t count; -}; - -struct btrfs_balance_args { - __u64 profiles; - union { - __u64 usage; - struct { - __u32 usage_min; - __u32 usage_max; - }; - }; - __u64 devid; - __u64 pstart; - __u64 pend; - __u64 vstart; - __u64 vend; - __u64 target; - __u64 flags; - union { - __u64 limit; - struct { - __u32 limit_min; - __u32 limit_max; - }; - }; - __u32 stripes_min; - __u32 stripes_max; - __u64 unused[6]; -}; - -struct btrfs_balance_progress { - __u64 expected; - __u64 considered; - __u64 completed; -}; - -enum btrfs_dev_stat_values { - BTRFS_DEV_STAT_WRITE_ERRS = 0, - BTRFS_DEV_STAT_READ_ERRS = 1, - BTRFS_DEV_STAT_FLUSH_ERRS = 2, - BTRFS_DEV_STAT_CORRUPTION_ERRS = 3, - BTRFS_DEV_STAT_GENERATION_ERRS = 4, - BTRFS_DEV_STAT_VALUES_MAX = 5, -}; - -struct btrfs_free_space_entry { - __le64 offset; - __le64 bytes; - __u8 type; -} __attribute__((packed)); - -struct btrfs_free_space_header { - struct btrfs_disk_key location; - __le64 generation; - __le64 num_entries; - __le64 num_bitmaps; -} __attribute__((packed)); - -struct btrfs_space_info { - struct btrfs_fs_info *fs_info; - spinlock_t lock; - u64 total_bytes; - u64 bytes_used; - u64 bytes_pinned; - u64 bytes_reserved; - u64 bytes_may_use; - u64 bytes_readonly; - u64 bytes_zone_unusable; - u64 max_extent_size; - u64 chunk_size; - int bg_reclaim_threshold; - int clamp; - unsigned int full: 1; - unsigned int chunk_alloc: 1; - unsigned int flush: 1; - unsigned int force_alloc; - u64 disk_used; - u64 disk_total; - u64 flags; - struct list_head list; - struct list_head ro_bgs; - struct list_head priority_tickets; - struct list_head tickets; - u64 reclaim_size; - u64 tickets_id; - struct rw_semaphore groups_sem; - struct list_head block_groups[9]; - struct kobject kobj; - struct kobject *block_group_kobjs[9]; - u64 reclaim_count; - u64 reclaim_bytes; - u64 reclaim_errors; - bool dynamic_reclaim; - bool periodic_reclaim; - bool periodic_reclaim_ready; - s64 reclaimable_bytes; -}; - -enum { - BTRFS_FS_CLOSING_START = 0, - BTRFS_FS_CLOSING_DONE = 1, - BTRFS_FS_LOG_RECOVERING = 2, - BTRFS_FS_OPEN = 3, - BTRFS_FS_QUOTA_ENABLED = 4, - BTRFS_FS_UPDATE_UUID_TREE_GEN = 5, - BTRFS_FS_CREATING_FREE_SPACE_TREE = 6, - BTRFS_FS_BTREE_ERR = 7, - BTRFS_FS_LOG1_ERR = 8, - BTRFS_FS_LOG2_ERR = 9, - BTRFS_FS_QUOTA_OVERRIDE = 10, - BTRFS_FS_FROZEN = 11, - BTRFS_FS_BALANCE_RUNNING = 12, - BTRFS_FS_RELOC_RUNNING = 13, - BTRFS_FS_CLEANER_RUNNING = 14, - BTRFS_FS_CSUM_IMPL_FAST = 15, - BTRFS_FS_DISCARD_RUNNING = 16, - BTRFS_FS_CLEANUP_SPACE_CACHE_V1 = 17, - BTRFS_FS_FREE_SPACE_TREE_UNTRUSTED = 18, - BTRFS_FS_TREE_MOD_LOG_USERS = 19, - BTRFS_FS_COMMIT_TRANS = 20, - BTRFS_FS_UNFINISHED_DROPS = 21, - BTRFS_FS_NEED_ZONE_FINISH = 22, - BTRFS_FS_NEED_TRANS_COMMIT = 23, - BTRFS_FS_ACTIVE_ZONE_TRACKING = 24, - BTRFS_FS_FEATURE_CHANGED = 25, - BTRFS_FS_UNALIGNED_TREE_BLOCK = 26, -}; - -enum { - BTRFS_MOUNT_NODATASUM = 1ULL, - BTRFS_MOUNT_NODATACOW = 2ULL, - BTRFS_MOUNT_NOBARRIER = 4ULL, - BTRFS_MOUNT_SSD = 8ULL, - BTRFS_MOUNT_DEGRADED = 16ULL, - BTRFS_MOUNT_COMPRESS = 32ULL, - BTRFS_MOUNT_NOTREELOG = 64ULL, - BTRFS_MOUNT_FLUSHONCOMMIT = 128ULL, - BTRFS_MOUNT_SSD_SPREAD = 256ULL, - BTRFS_MOUNT_NOSSD = 512ULL, - BTRFS_MOUNT_DISCARD_SYNC = 1024ULL, - BTRFS_MOUNT_FORCE_COMPRESS = 2048ULL, - BTRFS_MOUNT_SPACE_CACHE = 4096ULL, - BTRFS_MOUNT_CLEAR_CACHE = 8192ULL, - BTRFS_MOUNT_USER_SUBVOL_RM_ALLOWED = 16384ULL, - BTRFS_MOUNT_ENOSPC_DEBUG = 32768ULL, - BTRFS_MOUNT_AUTO_DEFRAG = 65536ULL, - BTRFS_MOUNT_USEBACKUPROOT = 131072ULL, - BTRFS_MOUNT_SKIP_BALANCE = 262144ULL, - BTRFS_MOUNT_PANIC_ON_FATAL_ERROR = 524288ULL, - BTRFS_MOUNT_RESCAN_UUID_TREE = 1048576ULL, - BTRFS_MOUNT_FRAGMENT_DATA = 2097152ULL, - BTRFS_MOUNT_FRAGMENT_METADATA = 4194304ULL, - BTRFS_MOUNT_FREE_SPACE_TREE = 8388608ULL, - BTRFS_MOUNT_NOLOGREPLAY = 16777216ULL, - BTRFS_MOUNT_REF_VERIFY = 33554432ULL, - BTRFS_MOUNT_DISCARD_ASYNC = 67108864ULL, - BTRFS_MOUNT_IGNOREBADROOTS = 134217728ULL, - BTRFS_MOUNT_IGNOREDATACSUMS = 268435456ULL, - BTRFS_MOUNT_NODISCARD = 536870912ULL, - BTRFS_MOUNT_NOSPACECACHE = 1073741824ULL, - BTRFS_MOUNT_IGNOREMETACSUMS = 2147483648ULL, - BTRFS_MOUNT_IGNORESUPERFLAGS = 4294967296ULL, -}; - -struct rcu_string; - -struct btrfs_zoned_device_info; - -struct scrub_ctx; - -struct btrfs_device { - struct list_head dev_list; - struct list_head dev_alloc_list; - struct list_head post_commit_list; - struct btrfs_fs_devices *fs_devices; - struct btrfs_fs_info *fs_info; - struct rcu_string *name; - u64 generation; - struct file *bdev_file; - struct block_device *bdev; - struct btrfs_zoned_device_info *zone_info; - dev_t devt; - long unsigned int dev_state; - blk_status_t last_flush_error; - u64 devid; - u64 total_bytes; - u64 disk_total_bytes; - u64 bytes_used; - u32 io_align; - u32 io_width; - u64 type; - atomic_t sb_write_errors; - u32 sector_size; - u8 uuid[16]; - u64 commit_total_bytes; - u64 commit_bytes_used; - struct bio flush_bio; - struct completion flush_wait; - struct scrub_ctx *scrub_ctx; - int dev_stats_valid; - atomic_t dev_stats_ccnt; - atomic_t dev_stat_values[5]; - struct extent_io_tree alloc_state; - struct completion kobj_unregister; - struct kobject devid_kobj; - u64 scrub_speed_max; -}; - -enum btrfs_chunk_allocation_policy { - BTRFS_CHUNK_ALLOC_REGULAR = 0, - BTRFS_CHUNK_ALLOC_ZONED = 1, -}; - -enum btrfs_read_policy { - BTRFS_READ_POLICY_PID = 0, - BTRFS_NR_READ_POLICY = 1, -}; - -struct btrfs_fs_devices { - u8 fsid[16]; - u8 metadata_uuid[16]; - struct list_head fs_list; - u64 num_devices; - u64 open_devices; - u64 rw_devices; - u64 missing_devices; - u64 total_rw_bytes; - u64 total_devices; - u64 latest_generation; - struct btrfs_device *latest_dev; - struct mutex device_list_mutex; - struct list_head devices; - struct list_head alloc_list; - struct list_head seed_list; - int opened; - bool rotating; - bool discardable; - bool seeding; - bool temp_fsid; - struct btrfs_fs_info *fs_info; - struct kobject fsid_kobj; - struct kobject *devices_kobj; - struct kobject *devinfo_kobj; - struct completion kobj_unregister; - enum btrfs_chunk_allocation_policy chunk_alloc_policy; - enum btrfs_read_policy read_policy; -}; - -struct btrfs_balance_control { - struct btrfs_balance_args data; - struct btrfs_balance_args meta; - struct btrfs_balance_args sys; - u64 flags; - struct btrfs_balance_progress stat; -}; - -struct rcu_string { - struct callback_head rcu; - char str[0]; -}; - -enum btrfs_raid_types { - BTRFS_RAID_SINGLE = 0, - BTRFS_RAID_RAID0 = 1, - BTRFS_RAID_RAID1 = 2, - BTRFS_RAID_DUP = 3, - BTRFS_RAID_RAID10 = 4, - BTRFS_RAID_RAID5 = 5, - BTRFS_RAID_RAID6 = 6, - BTRFS_RAID_RAID1C3 = 7, - BTRFS_RAID_RAID1C4 = 8, - BTRFS_NR_RAID_TYPES = 9, -}; - -struct btrfs_io_context; - -struct btrfs_io_stripe { - struct btrfs_device *dev; - u64 physical; - u64 length; - bool rst_search_commit_root; - struct btrfs_io_context *bioc; -}; - -struct btrfs_io_context { - refcount_t refs; - struct btrfs_fs_info *fs_info; - u64 map_type; - struct bio *orig_bio; - atomic_t error; - u16 max_errors; - u64 logical; - u64 size; - struct list_head rst_ordered_entry; - u16 num_stripes; - u16 mirror_num; - u16 replace_nr_stripes; - s16 replace_stripe_src; - u64 full_stripe_logical; - struct btrfs_io_stripe stripes[0]; -}; - -struct btrfs_chunk_map { - struct rb_node rb_node; - int verified_stripes; - refcount_t refs; - u64 start; - u64 chunk_len; - u64 stripe_size; - u64 type; - int io_align; - int io_width; - int num_stripes; - int sub_stripes; - struct btrfs_io_stripe stripes[0]; -}; - -enum btrfs_disk_cache_state { - BTRFS_DC_WRITTEN = 0, - BTRFS_DC_ERROR = 1, - BTRFS_DC_CLEAR = 2, - BTRFS_DC_SETUP = 3, -}; - -enum btrfs_block_group_flags { - BLOCK_GROUP_FLAG_IREF = 0, - BLOCK_GROUP_FLAG_REMOVED = 1, - BLOCK_GROUP_FLAG_TO_COPY = 2, - BLOCK_GROUP_FLAG_RELOCATING_REPAIR = 3, - BLOCK_GROUP_FLAG_CHUNK_ITEM_INSERTED = 4, - BLOCK_GROUP_FLAG_ZONE_IS_ACTIVE = 5, - BLOCK_GROUP_FLAG_ZONED_DATA_RELOC = 6, - BLOCK_GROUP_FLAG_NEEDS_FREE_SPACE = 7, - BLOCK_GROUP_FLAG_SEQUENTIAL_ZONE = 8, - BLOCK_GROUP_FLAG_NEW = 9, -}; - -struct btrfs_truncate_control { - struct btrfs_inode *inode; - u64 new_size; - u64 extents_found; - u64 last_size; - u64 sub_bytes; - u64 ino; - u32 min_type; - bool skip_ref_updates; - bool clear_extent_range; -}; - -struct btrfs_trim_range { - u64 start; - u64 bytes; - struct list_head list; -}; - -enum { - btrfs_bitmap_nr_uptodate = 0, - btrfs_bitmap_nr_dirty = 1, - btrfs_bitmap_nr_writeback = 2, - btrfs_bitmap_nr_ordered = 3, - btrfs_bitmap_nr_checked = 4, - btrfs_bitmap_nr_locked = 5, - btrfs_bitmap_nr_max = 6, -}; - -struct btrfs_subpage { - spinlock_t lock; - union { - atomic_t eb_refs; - atomic_t nr_locked; - }; - long unsigned int bitmaps[0]; -}; - -enum btrfs_subpage_type { - BTRFS_SUBPAGE_METADATA = 0, - BTRFS_SUBPAGE_DATA = 1, -}; - -struct f2fs_device { - __u8 path[64]; - __le32 total_segments; -}; - -struct f2fs_super_block { - __le32 magic; - __le16 major_ver; - __le16 minor_ver; - __le32 log_sectorsize; - __le32 log_sectors_per_block; - __le32 log_blocksize; - __le32 log_blocks_per_seg; - __le32 segs_per_sec; - __le32 secs_per_zone; - __le32 checksum_offset; - __le64 block_count; - __le32 section_count; - __le32 segment_count; - __le32 segment_count_ckpt; - __le32 segment_count_sit; - __le32 segment_count_nat; - __le32 segment_count_ssa; - __le32 segment_count_main; - __le32 segment0_blkaddr; - __le32 cp_blkaddr; - __le32 sit_blkaddr; - __le32 nat_blkaddr; - __le32 ssa_blkaddr; - __le32 main_blkaddr; - __le32 root_ino; - __le32 node_ino; - __le32 meta_ino; - __u8 uuid[16]; - __le16 volume_name[512]; - __le32 extension_count; - __u8 extension_list[512]; - __le32 cp_payload; - __u8 version[256]; - __u8 init_version[256]; - __le32 feature; - __u8 encryption_level; - __u8 encrypt_pw_salt[16]; - struct f2fs_device devs[8]; - __le32 qf_ino[3]; - __u8 hot_ext_count; - __le16 s_encoding; - __le16 s_encoding_flags; - __u8 s_stop_reason[32]; - __u8 s_errors[16]; - __u8 reserved[258]; - __le32 crc; -} __attribute__((packed)); - -struct f2fs_checkpoint { - __le64 checkpoint_ver; - __le64 user_block_count; - __le64 valid_block_count; - __le32 rsvd_segment_count; - __le32 overprov_segment_count; - __le32 free_segment_count; - __le32 cur_node_segno[8]; - __le16 cur_node_blkoff[8]; - __le32 cur_data_segno[8]; - __le16 cur_data_blkoff[8]; - __le32 ckpt_flags; - __le32 cp_pack_total_block_count; - __le32 cp_pack_start_sum; - __le32 valid_node_count; - __le32 valid_inode_count; - __le32 next_free_nid; - __le32 sit_ver_bitmap_bytesize; - __le32 nat_ver_bitmap_bytesize; - __le32 checksum_offset; - __le64 elapsed_time; - unsigned char alloc_type[16]; - unsigned char sit_nat_version_bitmap[0]; -}; - -struct f2fs_extent { - __le32 fofs; - __le32 blk; - __le32 len; -}; - -struct node_footer { - __le32 nid; - __le32 ino; - __le32 flag; - __le64 cp_ver; - __le32 next_blkaddr; -} __attribute__((packed)); - -struct f2fs_inode { - __le16 i_mode; - __u8 i_advise; - __u8 i_inline; - __le32 i_uid; - __le32 i_gid; - __le32 i_links; - __le64 i_size; - __le64 i_blocks; - __le64 i_atime; - __le64 i_ctime; - __le64 i_mtime; - __le32 i_atime_nsec; - __le32 i_ctime_nsec; - __le32 i_mtime_nsec; - __le32 i_generation; - union { - __le32 i_current_depth; - __le16 i_gc_failures; - }; - __le32 i_xattr_nid; - __le32 i_flags; - __le32 i_pino; - __le32 i_namelen; - __u8 i_name[255]; - __u8 i_dir_level; - struct f2fs_extent i_ext; - union { - struct { - __le16 i_extra_isize; - __le16 i_inline_xattr_size; - __le32 i_projid; - __le32 i_inode_checksum; - __le64 i_crtime; - __le32 i_crtime_nsec; - __le64 i_compr_blocks; - __u8 i_compress_algorithm; - __u8 i_log_cluster_size; - __le16 i_compress_flag; - __le32 i_extra_end[0]; - } __attribute__((packed)); - __le32 i_addr[923]; - }; - __le32 i_nid[5]; -}; - -struct direct_node { - __le32 addr[1018]; -}; - -struct indirect_node { - __le32 nid[1018]; -}; - -enum { - COLD_BIT_SHIFT = 0, - FSYNC_BIT_SHIFT = 1, - DENT_BIT_SHIFT = 2, - OFFSET_BIT_SHIFT = 3, -}; - -struct f2fs_node { - union { - struct f2fs_inode i; - struct direct_node dn; - struct indirect_node in; - }; - struct node_footer footer; -}; - -typedef __le32 f2fs_hash_t; - -struct disk_stats { - u64 nsecs[4]; - long unsigned int sectors[4]; - long unsigned int ios[4]; - long unsigned int merges[4]; - long unsigned int io_ticks; - local_t in_flight[2]; -}; - -enum { - FAULT_KMALLOC = 0, - FAULT_KVMALLOC = 1, - FAULT_PAGE_ALLOC = 2, - FAULT_PAGE_GET = 3, - FAULT_ALLOC_BIO = 4, - FAULT_ALLOC_NID = 5, - FAULT_ORPHAN = 6, - FAULT_BLOCK = 7, - FAULT_DIR_DEPTH = 8, - FAULT_EVICT_INODE = 9, - FAULT_TRUNCATE = 10, - FAULT_READ_IO = 11, - FAULT_CHECKPOINT = 12, - FAULT_DISCARD = 13, - FAULT_WRITE_IO = 14, - FAULT_SLAB_ALLOC = 15, - FAULT_DQUOT_INIT = 16, - FAULT_LOCK_OP = 17, - FAULT_BLKADDR_VALIDITY = 18, - FAULT_BLKADDR_CONSISTENCE = 19, - FAULT_NO_SEGMENT = 20, - FAULT_MAX = 21, -}; - -typedef u32 block_t; - -typedef u32 nid_t; - -struct f2fs_rwsem { - struct rw_semaphore internal_rwsem; -}; - -struct f2fs_mount_info { - unsigned int opt; - block_t root_reserved_blocks; - kuid_t s_resuid; - kgid_t s_resgid; - int active_logs; - int inline_xattr_size; - char *s_qf_names[3]; - int s_jquota_fmt; - int alloc_mode; - int fsync_mode; - int fs_mode; - int bggc_mode; - int memory_mode; - int errors; - int discard_unit; - struct fscrypt_dummy_policy dummy_enc_policy; - block_t unusable_cap_perc; - block_t unusable_cap; - unsigned char compress_algorithm; - unsigned char compress_log_size; - unsigned char compress_level; - bool compress_chksum; - unsigned char compress_ext_cnt; - unsigned char nocompress_ext_cnt; - int compress_mode; - unsigned char extensions[128]; - unsigned char noextensions[128]; -}; - -enum { - META_CP = 0, - META_NAT = 1, - META_SIT = 2, - META_SSA = 3, - META_MAX = 4, - META_POR = 5, - DATA_GENERIC = 6, - DATA_GENERIC_ENHANCE = 7, - DATA_GENERIC_ENHANCE_READ = 8, - DATA_GENERIC_ENHANCE_UPDATE = 9, - META_GENERIC = 10, -}; - -struct ckpt_req_control { - struct task_struct *f2fs_issue_ckpt; - int ckpt_thread_ioprio; - wait_queue_head_t ckpt_wait_queue; - atomic_t issued_ckpt; - atomic_t total_ckpt; - atomic_t queued_ckpt; - struct llist_head issue_list; - spinlock_t stat_lock; - unsigned int cur_time; - unsigned int peak_time; -}; - -struct discard_cmd_control { - struct task_struct *f2fs_issue_discard; - struct list_head entry_list; - struct list_head pend_list[512]; - struct list_head wait_list; - struct list_head fstrim_list; - wait_queue_head_t discard_wait_queue; - struct mutex cmd_lock; - unsigned int nr_discards; - unsigned int max_discards; - unsigned int max_discard_request; - unsigned int min_discard_issue_time; - unsigned int mid_discard_issue_time; - unsigned int max_discard_issue_time; - unsigned int discard_io_aware_gran; - unsigned int discard_urgent_util; - unsigned int discard_granularity; - unsigned int max_ordered_discard; - unsigned int discard_io_aware; - unsigned int undiscard_blks; - unsigned int next_pos; - atomic_t issued_discard; - atomic_t queued_discard; - atomic_t discard_cmd_cnt; - struct rb_root_cached root; - bool rbtree_check; - bool discard_wake; -}; - -enum extent_type { - EX_READ = 0, - EX_BLOCK_AGE = 1, - NR_EXTENT_CACHES = 2, -}; - -struct extent_info { - unsigned int fofs; - unsigned int len; - union { - struct { - block_t blk; - }; - struct { - long long unsigned int age; - long long unsigned int last_blocks; - }; - }; -}; - -struct extent_tree; - -struct extent_node { - struct rb_node rb_node; - struct extent_info ei; - struct list_head list; - struct extent_tree *et; -}; - -struct extent_tree { - nid_t ino; - enum extent_type type; - struct rb_root_cached root; - struct extent_node *cached_en; - struct list_head list; - rwlock_t lock; - atomic_t node_cnt; - bool largest_updated; - struct extent_info largest; -}; - -struct extent_tree_info { - struct xarray extent_tree_root; - struct mutex extent_tree_lock; - struct list_head extent_list; - spinlock_t extent_lock; - atomic_t total_ext_tree; - struct list_head zombie_list; - atomic_t total_zombie_tree; - atomic_t total_ext_node; -}; - -enum { - FI_NEW_INODE = 0, - FI_DIRTY_INODE = 1, - FI_AUTO_RECOVER = 2, - FI_DIRTY_DIR = 3, - FI_INC_LINK = 4, - FI_ACL_MODE = 5, - FI_NO_ALLOC = 6, - FI_FREE_NID = 7, - FI_NO_EXTENT = 8, - FI_INLINE_XATTR = 9, - FI_INLINE_DATA = 10, - FI_INLINE_DENTRY = 11, - FI_APPEND_WRITE = 12, - FI_UPDATE_WRITE = 13, - FI_NEED_IPU = 14, - FI_ATOMIC_FILE = 15, - FI_DATA_EXIST = 16, - FI_SKIP_WRITES = 17, - FI_OPU_WRITE = 18, - FI_DIRTY_FILE = 19, - FI_PREALLOCATED_ALL = 20, - FI_HOT_DATA = 21, - FI_EXTRA_ATTR = 22, - FI_PROJ_INHERIT = 23, - FI_PIN_FILE = 24, - FI_VERITY_IN_PROGRESS = 25, - FI_COMPRESSED_FILE = 26, - FI_COMPRESS_CORRUPT = 27, - FI_MMAP_FILE = 28, - FI_ENABLE_COMPRESS = 29, - FI_COMPRESS_RELEASED = 30, - FI_ALIGNED_WRITE = 31, - FI_COW_FILE = 32, - FI_ATOMIC_COMMITTED = 33, - FI_ATOMIC_DIRTIED = 34, - FI_ATOMIC_REPLACE = 35, - FI_OPENED_FILE = 36, - FI_MAX = 37, -}; - -struct f2fs_inode_info { - struct inode vfs_inode; - long unsigned int i_flags; - unsigned char i_advise; - unsigned char i_dir_level; - union { - unsigned int i_current_depth; - short unsigned int i_gc_failures; - }; - unsigned int i_pino; - umode_t i_acl_mode; - long unsigned int flags[1]; - struct f2fs_rwsem i_sem; - atomic_t dirty_pages; - f2fs_hash_t chash; - unsigned int clevel; - struct task_struct *task; - struct task_struct *cp_task; - struct task_struct *wb_task; - nid_t i_xattr_nid; - loff_t last_disk_size; - spinlock_t i_size_lock; - struct dquot *i_dquot[3]; - qsize_t i_reserved_quota; - struct list_head dirty_list; - struct list_head gdirty_list; - struct task_struct *atomic_write_task; - struct extent_tree *extent_tree[2]; - union { - struct inode *cow_inode; - struct inode *atomic_inode; - }; - struct f2fs_rwsem i_gc_rwsem[2]; - struct f2fs_rwsem i_xattr_sem; - int i_extra_isize; - kprojid_t i_projid; - int i_inline_xattr_size; - struct timespec64 i_crtime; - struct timespec64 i_disk_time[3]; - atomic_t i_compr_blocks; - unsigned char i_compress_algorithm; - unsigned char i_log_cluster_size; - unsigned char i_compress_level; - unsigned char i_compress_flag; - unsigned int i_cluster_size; - unsigned int atomic_write_cnt; - loff_t original_i_size; -}; - -struct f2fs_nm_info { - block_t nat_blkaddr; - nid_t max_nid; - nid_t available_nids; - nid_t next_scan_nid; - nid_t max_rf_node_blocks; - unsigned int ram_thresh; - unsigned int ra_nid_pages; - unsigned int dirty_nats_ratio; - struct xarray nat_root; - struct xarray nat_set_root; - struct f2fs_rwsem nat_tree_lock; - struct list_head nat_entries; - spinlock_t nat_list_lock; - unsigned int nat_cnt[3]; - unsigned int nat_blocks; - struct xarray free_nid_root; - struct list_head free_nid_list; - unsigned int nid_cnt[2]; - spinlock_t nid_list_lock; - struct mutex build_lock; - unsigned char **free_nid_bitmap; - unsigned char *nat_block_bitmap; - short unsigned int *free_nid_count; - char *nat_bitmap; - unsigned int nat_bits_blocks; - unsigned char *nat_bits; - unsigned char *full_nat_bits; - unsigned char *empty_nat_bits; - int bitmap_size; -}; - -struct dnode_of_data { - struct inode *inode; - struct page *inode_page; - struct page *node_page; - nid_t nid; - unsigned int ofs_in_node; - bool inode_page_locked; - bool node_changed; - char cur_level; - char max_level; - block_t data_blkaddr; -}; - -struct flush_cmd_control { - struct task_struct *f2fs_issue_flush; - wait_queue_head_t flush_wait_queue; - atomic_t issued_flush; - atomic_t queued_flush; - struct llist_head issue_list; - struct llist_node *dispatch_list; -}; - -struct sit_info; - -struct free_segmap_info; - -struct dirty_seglist_info; - -struct curseg_info; - -struct f2fs_sm_info { - struct sit_info *sit_info; - struct free_segmap_info *free_info; - struct dirty_seglist_info *dirty_info; - struct curseg_info *curseg_array; - struct f2fs_rwsem curseg_lock; - block_t seg0_blkaddr; - block_t main_blkaddr; - block_t ssa_blkaddr; - unsigned int segment_count; - unsigned int main_segments; - unsigned int reserved_segments; - unsigned int additional_reserved_segments; - unsigned int ovp_segments; - unsigned int rec_prefree_segments; - struct list_head sit_entry_set; - unsigned int ipu_policy; - unsigned int min_ipu_util; - unsigned int min_fsync_blocks; - unsigned int min_seq_blocks; - unsigned int min_hot_blocks; - unsigned int min_ssr_sections; - struct flush_cmd_control *fcc_info; - struct discard_cmd_control *dcc_info; -}; - -enum page_type { - DATA = 0, - NODE = 1, - META = 2, - NR_PAGE_TYPE = 3, - META_FLUSH = 4, - IPU = 5, - OPU = 6, -}; - -enum temp_type { - HOT = 0, - WARM = 1, - COLD = 2, - NR_TEMP_TYPE = 3, -}; - -enum iostat_type { - APP_DIRECT_IO = 0, - APP_BUFFERED_IO = 1, - APP_WRITE_IO = 2, - APP_MAPPED_IO = 3, - APP_BUFFERED_CDATA_IO = 4, - APP_MAPPED_CDATA_IO = 5, - FS_DATA_IO = 6, - FS_CDATA_IO = 7, - FS_NODE_IO = 8, - FS_META_IO = 9, - FS_GC_DATA_IO = 10, - FS_GC_NODE_IO = 11, - FS_CP_DATA_IO = 12, - FS_CP_NODE_IO = 13, - FS_CP_META_IO = 14, - APP_DIRECT_READ_IO = 15, - APP_BUFFERED_READ_IO = 16, - APP_READ_IO = 17, - APP_MAPPED_READ_IO = 18, - APP_BUFFERED_CDATA_READ_IO = 19, - APP_MAPPED_CDATA_READ_IO = 20, - FS_DATA_READ_IO = 21, - FS_GDATA_READ_IO = 22, - FS_CDATA_READ_IO = 23, - FS_NODE_READ_IO = 24, - FS_META_READ_IO = 25, - FS_DISCARD_IO = 26, - FS_FLUSH_IO = 27, - FS_ZONE_RESET_IO = 28, - NR_IO_TYPE = 29, -}; - -struct f2fs_sb_info; - -struct f2fs_io_info { - struct f2fs_sb_info *sbi; - nid_t ino; - enum page_type type; - enum temp_type temp; - enum req_op op; - blk_opf_t op_flags; - block_t new_blkaddr; - block_t old_blkaddr; - struct page *page; - struct page *encrypted_page; - struct page *compressed_page; - struct list_head list; - unsigned int compr_blocks; - unsigned int need_lock: 8; - unsigned int version: 8; - unsigned int submitted: 1; - unsigned int in_list: 1; - unsigned int is_por: 1; - unsigned int encrypted: 1; - unsigned int meta_gc: 1; - enum iostat_type io_type; - struct writeback_control *io_wbc; - struct bio **bio; - sector_t *last_block; -}; - -struct inode_management { - struct xarray ino_root; - spinlock_t ino_lock; - struct list_head ino_list; - long unsigned int ino_num; -}; - -struct atgc_management { - bool atgc_enabled; - struct rb_root_cached root; - struct list_head victim_list; - unsigned int victim_count; - unsigned int candidate_ratio; - unsigned int max_candidate_count; - unsigned int age_weight; - long long unsigned int age_threshold; -}; - -struct f2fs_bio_info; - -struct f2fs_gc_kthread; - -struct f2fs_stat_info; - -struct f2fs_dev_info; - -struct iostat_lat_info; - -struct f2fs_sb_info { - struct super_block *sb; - struct proc_dir_entry *s_proc; - struct f2fs_super_block *raw_super; - struct f2fs_rwsem sb_lock; - int valid_super_block; - long unsigned int s_flag; - struct mutex writepages; - struct f2fs_nm_info *nm_info; - struct inode *node_inode; - struct f2fs_sm_info *sm_info; - struct f2fs_bio_info *write_io[3]; - struct f2fs_rwsem io_order_lock; - long unsigned int page_eio_ofs[3]; - int page_eio_cnt[3]; - struct f2fs_checkpoint *ckpt; - int cur_cp_pack; - spinlock_t cp_lock; - struct inode *meta_inode; - struct f2fs_rwsem cp_global_sem; - struct f2fs_rwsem cp_rwsem; - struct f2fs_rwsem node_write; - struct f2fs_rwsem node_change; - wait_queue_head_t cp_wait; - long unsigned int last_time[6]; - long int interval_time[6]; - struct ckpt_req_control cprc_info; - struct inode_management im[6]; - spinlock_t fsync_node_lock; - struct list_head fsync_node_list; - unsigned int fsync_seg_id; - unsigned int fsync_node_num; - unsigned int max_orphans; - struct list_head inode_list[3]; - spinlock_t inode_lock[3]; - struct mutex flush_lock; - struct extent_tree_info extent_tree[2]; - atomic64_t allocated_data_blocks; - unsigned int max_read_extent_count; - unsigned int hot_data_age_threshold; - unsigned int warm_data_age_threshold; - unsigned int last_age_weight; - unsigned int log_sectors_per_block; - unsigned int log_blocksize; - unsigned int blocksize; - unsigned int root_ino_num; - unsigned int node_ino_num; - unsigned int meta_ino_num; - unsigned int log_blocks_per_seg; - unsigned int blocks_per_seg; - unsigned int unusable_blocks_per_sec; - unsigned int segs_per_sec; - unsigned int secs_per_zone; - unsigned int total_sections; - unsigned int total_node_count; - unsigned int total_valid_node_count; - int dir_level; - bool readdir_ra; - u64 max_io_bytes; - block_t user_block_count; - block_t total_valid_block_count; - block_t discard_blks; - block_t last_valid_block_count; - block_t reserved_blocks; - block_t current_reserved_blocks; - block_t unusable_block_count; - unsigned int nquota_files; - struct f2fs_rwsem quota_sem; - atomic_t nr_pages[13]; - struct percpu_counter alloc_valid_block_count; - struct percpu_counter rf_node_block_count; - atomic_t wb_sync_req[2]; - struct percpu_counter total_valid_inode_count; - struct f2fs_mount_info mount_opt; - struct f2fs_rwsem gc_lock; - struct f2fs_gc_kthread *gc_thread; - struct atgc_management am; - unsigned int cur_victim_sec; - unsigned int gc_mode; - unsigned int next_victim_seg[2]; - spinlock_t gc_remaining_trials_lock; - unsigned int gc_remaining_trials; - long long unsigned int skipped_gc_rwsem; - short unsigned int gc_pin_file_threshold; - struct f2fs_rwsem pin_sem; - unsigned int max_victim_search; - unsigned int migration_granularity; - unsigned int migration_window_granularity; - struct f2fs_stat_info *stat_info; - atomic_t meta_count[4]; - unsigned int segment_count[2]; - unsigned int block_count[2]; - atomic_t inplace_count; - atomic64_t total_hit_ext[2]; - atomic64_t read_hit_rbtree[2]; - atomic64_t read_hit_cached[2]; - atomic64_t read_hit_largest; - atomic_t inline_xattr; - atomic_t inline_inode; - atomic_t inline_dir; - atomic_t compr_inode; - atomic64_t compr_blocks; - atomic_t swapfile_inode; - atomic_t atomic_files; - atomic_t max_aw_cnt; - unsigned int io_skip_bggc; - unsigned int other_skip_bggc; - unsigned int ndirty_inode[3]; - atomic_t cp_call_count[2]; - spinlock_t stat_lock; - unsigned int data_io_flag; - unsigned int node_io_flag; - struct kobject s_kobj; - struct completion s_kobj_unregister; - struct kobject s_stat_kobj; - struct completion s_stat_kobj_unregister; - struct kobject s_feature_list_kobj; - struct completion s_feature_list_kobj_unregister; - struct list_head s_list; - struct mutex umount_mutex; - unsigned int shrinker_run_no; - int s_ndevs; - struct f2fs_dev_info *devs; - unsigned int dirty_device; - spinlock_t dev_lock; - bool aligned_blksize; - unsigned int first_seq_zone_segno; - u64 sectors_written_start; - u64 kbytes_written; - struct crypto_shash *s_chksum_driver; - __u32 s_chksum_seed; - struct workqueue_struct *post_read_wq; - struct work_struct s_error_work; - unsigned char errors[16]; - unsigned char stop_reason[32]; - spinlock_t error_lock; - bool error_dirty; - struct kmem_cache *inline_xattr_slab; - unsigned int inline_xattr_slab_size; - unsigned int gc_segment_mode; - unsigned int gc_reclaimed_segs[7]; - long unsigned int seq_file_ra_mul; - int max_fragment_chunk; - int max_fragment_hole; - atomic64_t current_atomic_write; - s64 peak_atomic_write; - u64 committed_atomic_block; - u64 revoked_atomic_block; - spinlock_t iostat_lock; - long long unsigned int iostat_count[29]; - long long unsigned int iostat_bytes[29]; - long long unsigned int prev_iostat_bytes[29]; - bool iostat_enable; - long unsigned int iostat_next_period; - unsigned int iostat_period_ms; - spinlock_t iostat_lat_lock; - struct iostat_lat_info *iostat_io_lat; -}; - -struct f2fs_bio_info { - struct f2fs_sb_info *sbi; - struct bio *bio; - sector_t last_block_in_bio; - struct f2fs_io_info fio; - struct f2fs_rwsem io_rwsem; - spinlock_t io_lock; - struct list_head io_list; - struct list_head bio_list; - struct f2fs_rwsem bio_list_lock; -}; - -struct f2fs_dev_info { - struct file *bdev_file; - struct block_device *bdev; - char path[65]; - unsigned int total_segments; - block_t start_blk; - block_t end_blk; -}; - -enum { - SBI_IS_DIRTY = 0, - SBI_IS_CLOSE = 1, - SBI_NEED_FSCK = 2, - SBI_POR_DOING = 3, - SBI_NEED_SB_WRITE = 4, - SBI_NEED_CP = 5, - SBI_IS_SHUTDOWN = 6, - SBI_IS_RECOVERED = 7, - SBI_CP_DISABLED = 8, - SBI_CP_DISABLED_QUICK = 9, - SBI_QUOTA_NEED_FLUSH = 10, - SBI_QUOTA_SKIP_FLUSH = 11, - SBI_QUOTA_NEED_REPAIR = 12, - SBI_IS_RESIZEFS = 13, - SBI_IS_FREEZING = 14, - SBI_IS_WRITABLE = 15, - MAX_SBI_FLAG = 16, -}; - -struct f2fs_stat_info { - struct list_head stat_list; - struct f2fs_sb_info *sbi; - int all_area_segs; - int sit_area_segs; - int nat_area_segs; - int ssa_area_segs; - int main_area_segs; - int main_area_sections; - int main_area_zones; - long long unsigned int hit_cached[2]; - long long unsigned int hit_rbtree[2]; - long long unsigned int total_ext[2]; - long long unsigned int hit_total[2]; - int ext_tree[2]; - int zombie_tree[2]; - int ext_node[2]; - long long unsigned int ext_mem[2]; - long long unsigned int hit_largest; - long long unsigned int allocated_data_blocks; - int ndirty_node; - int ndirty_dent; - int ndirty_meta; - int ndirty_imeta; - int ndirty_data; - int ndirty_qdata; - unsigned int ndirty_dirs; - unsigned int ndirty_files; - unsigned int nquota_files; - unsigned int ndirty_all; - int nats; - int dirty_nats; - int sits; - int dirty_sits; - int free_nids; - int avail_nids; - int alloc_nids; - int total_count; - int utilization; - int nr_wb_cp_data; - int nr_wb_data; - int nr_rd_data; - int nr_rd_node; - int nr_rd_meta; - int nr_dio_read; - int nr_dio_write; - unsigned int io_skip_bggc; - unsigned int other_skip_bggc; - int nr_flushing; - int nr_flushed; - int flush_list_empty; - int nr_discarding; - int nr_discarded; - int nr_discard_cmd; - unsigned int undiscard_blks; - int nr_issued_ckpt; - int nr_total_ckpt; - int nr_queued_ckpt; - unsigned int cur_ckpt_time; - unsigned int peak_ckpt_time; - int inline_xattr; - int inline_inode; - int inline_dir; - int append; - int update; - int orphans; - int compr_inode; - int swapfile_inode; - long long unsigned int compr_blocks; - int aw_cnt; - int max_aw_cnt; - unsigned int valid_count; - unsigned int valid_node_count; - unsigned int valid_inode_count; - unsigned int discard_blks; - unsigned int bimodal; - unsigned int avg_vblocks; - int util_free; - int util_valid; - int util_invalid; - int rsvd_segs; - int overp_segs; - int dirty_count; - int node_pages; - int meta_pages; - int compress_pages; - int compress_page_hit; - int prefree_count; - int free_segs; - int free_secs; - int cp_call_count[2]; - int cp_count; - int gc_call_count[2]; - int gc_segs[4]; - int gc_secs[4]; - int tot_blks; - int data_blks; - int node_blks; - int bg_data_blks; - int bg_node_blks; - int curseg[8]; - int cursec[8]; - int curzone[8]; - unsigned int dirty_seg[8]; - unsigned int full_seg[8]; - unsigned int valid_blks[8]; - unsigned int meta_count[4]; - unsigned int segment_count[2]; - unsigned int block_count[2]; - unsigned int inplace_count; - long long unsigned int base_mem; - long long unsigned int cache_mem; - long long unsigned int page_mem; -}; - -struct iomap_dio_ops { - int (*end_io)(struct kiocb *, ssize_t, int, unsigned int); - void (*submit_io)(const struct iomap_iter *, struct bio *, loff_t); - struct bio_set *bio_set; -}; - -enum { - EROFS_INODE_FLAT_PLAIN = 0, - EROFS_INODE_COMPRESSED_FULL = 1, - EROFS_INODE_FLAT_INLINE = 2, - EROFS_INODE_COMPRESSED_COMPACT = 3, - EROFS_INODE_CHUNK_BASED = 4, - EROFS_INODE_DATALAYOUT_MAX = 5, -}; - -struct erofs_xattr_long_prefix { - __u8 base_index; - char infix[0]; -}; - -struct erofs_inode_chunk_index { - __le16 advise; - __le16 device_id; - __le32 blkaddr; -}; - -typedef u64 erofs_nid_t; - -typedef u64 erofs_off_t; - -typedef u32 erofs_blk_t; - -struct erofs_fscache; - -struct erofs_device_info { - char *path; - struct erofs_fscache *fscache; - struct file *file; - struct dax_device *dax_dev; - u64 dax_part_off; - u32 blocks; - u32 mapped_blkaddr; -}; - -struct erofs_domain; - -struct erofs_fscache { - struct fscache_cookie *cookie; - struct inode *inode; - struct erofs_domain *domain; - struct list_head node; - refcount_t ref; - char *name; -}; - -struct erofs_mount_opts { - unsigned char cache_strategy; - unsigned int sync_decompress; - unsigned int max_sync_decompress_pages; - unsigned int mount_opt; -}; - -struct erofs_dev_context { - struct idr tree; - struct rw_semaphore rwsem; - unsigned int extra_devices; - bool flatdev; -}; - -struct erofs_sb_lz4_info { - u16 max_distance_pages; - u16 max_pclusterblks; -}; - -struct erofs_domain { - refcount_t ref; - struct list_head list; - struct fscache_volume *volume; - char *domain_id; -}; - -struct erofs_xattr_prefix_item { - struct erofs_xattr_long_prefix *prefix; - u8 infix_len; -}; - -struct erofs_sb_info { - struct erofs_device_info dif0; - struct erofs_mount_opts opt; - struct list_head list; - struct mutex umount_mutex; - struct xarray managed_pslots; - unsigned int shrinker_run_no; - u16 available_compr_algs; - struct inode *managed_cache; - struct erofs_sb_lz4_info lz4; - struct inode *packed_inode; - struct erofs_dev_context *devs; - u64 total_blocks; - u32 meta_blkaddr; - u32 xattr_blkaddr; - u32 xattr_prefix_start; - u8 xattr_prefix_count; - struct erofs_xattr_prefix_item *xattr_prefixes; - unsigned int xattr_filter_reserved; - u16 device_id_mask; - unsigned char islotbits; - unsigned char blkszbits; - u32 sb_size; - u32 build_time_nsec; - u64 build_time; - erofs_nid_t root_nid; - erofs_nid_t packed_nid; - u64 inos; - u8 uuid[16]; - u8 volume_name[16]; - u32 feature_compat; - u32 feature_incompat; - struct kobject s_kobj; - struct completion s_kobj_unregister; - struct fscache_volume *volume; - struct erofs_domain *domain; - char *fsid; - char *domain_id; -}; - -enum erofs_kmap_type { - EROFS_NO_KMAP = 0, - EROFS_KMAP = 1, -}; - -struct erofs_buf { - struct address_space *mapping; - struct file *file; - struct page *page; - void *base; - enum erofs_kmap_type kmap_type; -}; - -struct erofs_inode { - erofs_nid_t nid; - long unsigned int flags; - unsigned char datalayout; - unsigned char inode_isize; - unsigned int xattr_isize; - unsigned int xattr_name_filter; - unsigned int xattr_shared_count; - unsigned int *xattr_shared_xattrs; - union { - erofs_blk_t raw_blkaddr; - struct { - short unsigned int chunkformat; - unsigned char chunkbits; - }; - struct { - short unsigned int z_advise; - unsigned char z_algorithmtype[2]; - unsigned char z_logical_clusterbits; - long unsigned int z_tailextent_headlcn; - erofs_off_t z_fragmentoff; - short unsigned int z_idata_size; - }; - }; - struct inode vfs_inode; -}; - -struct erofs_map_blocks { - struct erofs_buf buf; - erofs_off_t m_pa; - erofs_off_t m_la; - u64 m_plen; - u64 m_llen; - short unsigned int m_deviceid; - char m_algorithmformat; - unsigned int m_flags; -}; - -struct erofs_map_dev { - struct super_block *m_sb; - struct erofs_device_info *m_dif; - struct block_device *m_bdev; - erofs_off_t m_pa; - unsigned int m_deviceid; -}; - -enum xz_mode { - XZ_SINGLE = 0, - XZ_PREALLOC = 1, - XZ_DYNALLOC = 2, -}; - -enum xz_ret { - XZ_OK = 0, - XZ_STREAM_END = 1, - XZ_UNSUPPORTED_CHECK = 2, - XZ_MEM_ERROR = 3, - XZ_MEMLIMIT_ERROR = 4, - XZ_FORMAT_ERROR = 5, - XZ_OPTIONS_ERROR = 6, - XZ_DATA_ERROR = 7, - XZ_BUF_ERROR = 8, -}; - -struct xz_buf { - const uint8_t *in; - size_t in_pos; - size_t in_size; - uint8_t *out; - size_t out_pos; - size_t out_size; -}; - -struct erofs_super_block { - __le32 magic; - __le32 checksum; - __le32 feature_compat; - __u8 blkszbits; - __u8 sb_extslots; - __le16 root_nid; - __le64 inos; - __le64 build_time; - __le32 build_time_nsec; - __le32 blocks; - __le32 meta_blkaddr; - __le32 xattr_blkaddr; - __u8 uuid[16]; - __u8 volume_name[16]; - __le32 feature_incompat; - union { - __le16 available_compr_algs; - __le16 lz4_max_distance; - } u1; - __le16 extra_devices; - __le16 devt_slotoff; - __u8 dirblkbits; - __u8 xattr_prefix_count; - __le32 xattr_prefix_start; - __le64 packed_nid; - __u8 xattr_filter_reserved; - __u8 reserved2[23]; -}; - -enum { - Z_EROFS_COMPRESSION_LZ4 = 0, - Z_EROFS_COMPRESSION_LZMA = 1, - Z_EROFS_COMPRESSION_DEFLATE = 2, - Z_EROFS_COMPRESSION_ZSTD = 3, - Z_EROFS_COMPRESSION_MAX = 4, -}; - -struct z_erofs_lzma_cfgs { - __le32 dict_size; - __le16 format; - u8 reserved[8]; -} __attribute__((packed)); - -struct z_erofs_decompress_req { - struct super_block *sb; - struct page **in; - struct page **out; - short unsigned int pageofs_in; - short unsigned int pageofs_out; - unsigned int inputsize; - unsigned int outputsize; - unsigned int alg; - bool inplace_io; - bool partial_decoding; - bool fillgaps; - gfp_t gfp; -}; - -struct z_erofs_decompressor { - int (*config)(struct super_block *, struct erofs_super_block *, void *, int); - int (*decompress)(struct z_erofs_decompress_req *, struct page **); - int (*init)(void); - void (*exit)(void); - char *name; -}; - -struct z_erofs_stream_dctx { - struct z_erofs_decompress_req *rq; - unsigned int inpages; - unsigned int outpages; - int no; - int ni; - unsigned int avail_out; - unsigned int inbuf_pos; - unsigned int inbuf_sz; - u8 *kin; - u8 *kout; - void *bounce; - bool bounced; -}; - -struct xz_dec_microlzma; - -struct z_erofs_lzma { - struct z_erofs_lzma *next; - struct xz_dec_microlzma *state; - u8 bounce[4096]; -}; - -struct ipc_ids { - int in_use; - short unsigned int seq; - struct rw_semaphore rwsem; - struct idr ipcs_idr; - int max_idx; - int last_idx; - int next_id; - struct rhashtable key_ht; -}; - -struct ipc_namespace { - struct ipc_ids ids[3]; - int sem_ctls[4]; - int used_sems; - unsigned int msg_ctlmax; - unsigned int msg_ctlmnb; - unsigned int msg_ctlmni; - struct percpu_counter percpu_msg_bytes; - struct percpu_counter percpu_msg_hdrs; - size_t shm_ctlmax; - size_t shm_ctlall; - long unsigned int shm_tot; - int shm_ctlmni; - int shm_rmid_forced; - struct notifier_block ipcns_nb; - struct vfsmount *mq_mnt; - unsigned int mq_queues_count; - unsigned int mq_queues_max; - unsigned int mq_msg_max; - unsigned int mq_msgsize_max; - unsigned int mq_msg_default; - unsigned int mq_msgsize_default; - struct ctl_table_set mq_set; - struct ctl_table_header *mq_sysctls; - struct ctl_table_set ipc_set; - struct ctl_table_header *ipc_sysctls; - struct user_namespace *user_ns; - struct ucounts *ucounts; - struct llist_node mnt_llist; - struct ns_common ns; -}; - -enum key_need_perm { - KEY_NEED_UNSPECIFIED = 0, - KEY_NEED_VIEW = 1, - KEY_NEED_READ = 2, - KEY_NEED_WRITE = 3, - KEY_NEED_SEARCH = 4, - KEY_NEED_LINK = 5, - KEY_NEED_SETATTR = 6, - KEY_NEED_UNLINK = 7, - KEY_SYSADMIN_OVERRIDE = 8, - KEY_AUTHTOKEN_OVERRIDE = 9, - KEY_DEFER_PERM_CHECK = 10, -}; - -enum key_lookup_flag { - KEY_LOOKUP_CREATE = 1, - KEY_LOOKUP_PARTIAL = 2, - KEY_LOOKUP_ALL = 3, -}; - -struct __key_reference_with_attributes; - -typedef struct __key_reference_with_attributes *key_ref_t; - -enum key_state { - KEY_IS_UNINSTANTIATED = 0, - KEY_IS_POSITIVE = 1, -}; - -struct key_user { - struct rb_node node; - struct mutex cons_lock; - spinlock_t lock; - refcount_t usage; - atomic_t nkeys; - atomic_t nikeys; - kuid_t uid; - int qnkeys; - int qnbytes; -}; - -struct keyctl_dh_params { - union { - __s32 private; - __s32 priv; - }; - __s32 prime; - __s32 base; -}; - -struct keyctl_kdf_params { - char *hashname; - char *otherinfo; - __u32 otherinfolen; - __u32 __spare[8]; -}; - -struct keyctl_pkey_query { - __u32 supported_ops; - __u32 key_size; - __u16 max_data_size; - __u16 max_sig_size; - __u16 max_enc_size; - __u16 max_dec_size; - __u32 __spare[10]; -}; - -struct keyctl_pkey_params { - __s32 key_id; - __u32 in_len; - union { - __u32 out_len; - __u32 in2_len; - }; - __u32 __spare[7]; -}; - -struct request_key_auth { - struct callback_head rcu; - struct key *target_key; - struct key *dest_keyring; - const struct cred *cred; - void *callout_info; - size_t callout_len; - pid_t pid; - char op[8]; -}; - -enum key_notification_subtype { - NOTIFY_KEY_INSTANTIATED = 0, - NOTIFY_KEY_UPDATED = 1, - NOTIFY_KEY_LINKED = 2, - NOTIFY_KEY_UNLINKED = 3, - NOTIFY_KEY_CLEARED = 4, - NOTIFY_KEY_REVOKED = 5, - NOTIFY_KEY_INVALIDATED = 6, - NOTIFY_KEY_SETATTR = 7, -}; - -struct aead_instance { - void (*free)(struct aead_instance *); - union { - struct { - char head[64]; - struct crypto_instance base; - } s; - struct aead_alg alg; - }; -}; - -struct crypto_aead_spawn { - struct crypto_spawn base; -}; - -struct crypto_sync_skcipher; - -struct aead_geniv_ctx { - spinlock_t lock; - struct crypto_aead *child; - struct crypto_sync_skcipher *sknull; - u8 salt[0]; -}; - -struct crypto_rng; - -struct rng_alg { - int (*generate)(struct crypto_rng *, const u8 *, unsigned int, u8 *, unsigned int); - int (*seed)(struct crypto_rng *, const u8 *, unsigned int); - void (*set_ent)(struct crypto_rng *, const u8 *, unsigned int); - unsigned int seedsize; - struct crypto_alg base; -}; - -struct crypto_rng { - struct crypto_tfm base; -}; - -struct kpp_request { - struct crypto_async_request base; - struct scatterlist *src; - struct scatterlist *dst; - unsigned int src_len; - unsigned int dst_len; - void *__ctx[0]; -}; - -struct crypto_kpp { - unsigned int reqsize; - struct crypto_tfm base; -}; - -struct kpp_alg { - int (*set_secret)(struct crypto_kpp *, const void *, unsigned int); - int (*generate_public_key)(struct kpp_request *); - int (*compute_shared_secret)(struct kpp_request *); - unsigned int (*max_size)(struct crypto_kpp *); - int (*init)(struct crypto_kpp *); - void (*exit)(struct crypto_kpp *); - struct crypto_alg base; -}; - -struct dh { - const void *key; - const void *p; - const void *g; - unsigned int key_size; - unsigned int p_size; - unsigned int g_size; -}; - -typedef long unsigned int mpi_limb_t; - -struct gcry_mpi { - int alloced; - int nlimbs; - int nbits; - int sign; - unsigned int flags; - mpi_limb_t *d; -}; - -typedef struct gcry_mpi *MPI; - -struct dh_ctx { - MPI p; - MPI g; - MPI xa; -}; - -struct md5_state { - u32 hash[4]; - u32 block[16]; - u64 byte_count; -}; - -struct wp512_ctx { - u8 bitLength[32]; - u8 buffer[64]; - int bufferBits; - int bufferPos; - u64 hash[8]; -}; - -struct crypto_cipher { - struct crypto_tfm base; -}; - -struct crypto_cipher_spawn { - struct crypto_spawn base; -}; - -struct skcipher_request { - unsigned int cryptlen; - u8 *iv; - struct scatterlist *src; - struct scatterlist *dst; - struct crypto_async_request base; - void *__ctx[0]; -}; - -struct crypto_skcipher { - unsigned int reqsize; - struct crypto_tfm base; -}; - -struct skcipher_alg_common { - unsigned int min_keysize; - unsigned int max_keysize; - unsigned int ivsize; - unsigned int chunksize; - unsigned int statesize; - struct crypto_alg base; -}; - -struct skcipher_alg { - int (*setkey)(struct crypto_skcipher *, const u8 *, unsigned int); - int (*encrypt)(struct skcipher_request *); - int (*decrypt)(struct skcipher_request *); - int (*export)(struct skcipher_request *, void *); - int (*import)(struct skcipher_request *, const void *); - int (*init)(struct crypto_skcipher *); - void (*exit)(struct crypto_skcipher *); - unsigned int walksize; - union { - struct { - unsigned int min_keysize; - unsigned int max_keysize; - unsigned int ivsize; - unsigned int chunksize; - unsigned int statesize; - struct crypto_alg base; - }; - struct skcipher_alg_common co; - }; -}; - -struct skcipher_instance { - void (*free)(struct skcipher_instance *); - union { - struct { - char head[88]; - struct crypto_instance base; - } s; - struct skcipher_alg alg; - }; -}; - -struct crypto_skcipher_spawn { - struct crypto_spawn base; -}; - -struct skcipher_ctx_simple { - struct crypto_cipher *cipher; -}; - -struct crypto_rfc3686_ctx { - struct crypto_skcipher *child; - u8 nonce[4]; -}; - -struct crypto_rfc3686_req_ctx { - u8 iv[16]; - struct skcipher_request subreq; -}; - -struct crypto_lskcipher { - struct crypto_tfm base; -}; - -struct lskcipher_alg { - int (*setkey)(struct crypto_lskcipher *, const u8 *, unsigned int); - int (*encrypt)(struct crypto_lskcipher *, const u8 *, u8 *, unsigned int, u8 *, u32); - int (*decrypt)(struct crypto_lskcipher *, const u8 *, u8 *, unsigned int, u8 *, u32); - int (*init)(struct crypto_lskcipher *); - void (*exit)(struct crypto_lskcipher *); - struct skcipher_alg_common co; -}; - -struct anubis_ctx { - int key_len; - int R; - u32 E[76]; - u32 D[76]; -}; - -struct crypto_wait { - struct completion completion; - int err; -}; - -struct ahash_request { - struct crypto_async_request base; - unsigned int nbytes; - struct scatterlist *src; - u8 *result; - void *priv; - void *__ctx[0]; -}; - -struct crypto_ahash { - bool using_shash; - unsigned int statesize; - unsigned int reqsize; - struct crypto_tfm base; -}; - -struct sg_table { - struct scatterlist *sgl; - unsigned int nents; - unsigned int orig_nents; -}; - -typedef unsigned int iov_iter_extraction_t; - -enum iter_type { - ITER_UBUF = 0, - ITER_IOVEC = 1, - ITER_BVEC = 2, - ITER_KVEC = 3, - ITER_FOLIOQ = 4, - ITER_XARRAY = 5, - ITER_DISCARD = 6, -}; - -struct af_alg_type; - -struct alg_sock { - struct sock sk; - struct sock *parent; - atomic_t refcnt; - atomic_t nokey_refcnt; - const struct af_alg_type *type; - void *private; -}; - -struct af_alg_type { - void * (*bind)(const char *, u32, u32); - void (*release)(void *); - int (*setkey)(void *, const u8 *, unsigned int); - int (*setentropy)(void *, sockptr_t, unsigned int); - int (*accept)(void *, struct sock *); - int (*accept_nokey)(void *, struct sock *); - int (*setauthsize)(void *, unsigned int); - struct proto_ops *ops; - struct proto_ops *ops_nokey; - struct module *owner; - char name[14]; -}; - -struct af_alg_sgl { - struct sg_table sgt; - struct scatterlist sgl[17]; - bool need_unpin; -}; - -struct hash_ctx { - struct af_alg_sgl sgl; - u8 *result; - struct crypto_wait wait; - unsigned int len; - bool more; - struct ahash_request req; -}; - -struct io_ring_ctx; - -struct io_wq; - -struct io_uring_task { - int cached_refs; - const struct io_ring_ctx *last; - struct io_wq *io_wq; - struct file *registered_rings[16]; - struct xarray xa; - struct wait_queue_head wait; - atomic_t in_cancel; - atomic_t inflight_tracked; - struct percpu_counter inflight; - long: 64; - long: 64; - long: 64; - long: 64; - struct { - struct llist_head task_list; - struct callback_head task_work; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - }; -}; - -enum tk_offsets { - TK_OFFS_REAL = 0, - TK_OFFS_BOOT = 1, - TK_OFFS_TAI = 2, - TK_OFFS_MAX = 3, -}; - -struct io_cq { - struct request_queue *q; - struct io_context *ioc; - union { - struct list_head q_node; - struct kmem_cache *__rcu_icq_cache; - }; - union { - struct hlist_node ioc_node; - struct callback_head __rcu_head; - }; - unsigned int flags; -}; - -struct io_uring_sqe; - -struct io_uring_cmd { - struct file *file; - const struct io_uring_sqe *sqe; - void (*task_work_cb)(struct io_uring_cmd *, unsigned int); - u32 cmd_op; - u32 flags; - u8 pdu[32]; -}; - -enum req_flag_bits { - __REQ_FAILFAST_DEV = 8, - __REQ_FAILFAST_TRANSPORT = 9, - __REQ_FAILFAST_DRIVER = 10, - __REQ_SYNC = 11, - __REQ_META = 12, - __REQ_PRIO = 13, - __REQ_NOMERGE = 14, - __REQ_IDLE = 15, - __REQ_INTEGRITY = 16, - __REQ_FUA = 17, - __REQ_PREFLUSH = 18, - __REQ_RAHEAD = 19, - __REQ_BACKGROUND = 20, - __REQ_NOWAIT = 21, - __REQ_POLLED = 22, - __REQ_ALLOC_CACHE = 23, - __REQ_SWAP = 24, - __REQ_DRV = 25, - __REQ_FS_PRIVATE = 26, - __REQ_ATOMIC = 27, - __REQ_NOUNMAP = 28, - __REQ_NR_BITS = 29, -}; - -struct sbitmap_word { - long unsigned int word; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long unsigned int cleared; - raw_spinlock_t swap_lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct sbitmap { - unsigned int depth; - unsigned int shift; - unsigned int map_nr; - bool round_robin; - struct sbitmap_word *map; - unsigned int *alloc_hint; -}; - -struct sbq_wait_state { - wait_queue_head_t wait; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct sbitmap_queue { - struct sbitmap sb; - unsigned int wake_batch; - atomic_t wake_index; - struct sbq_wait_state *ws; - atomic_t ws_active; - unsigned int min_shallow_depth; - atomic_t completion_cnt; - atomic_t wakeup_cnt; -}; - -typedef __u32 req_flags_t; - -enum mq_rq_state { - MQ_RQ_IDLE = 0, - MQ_RQ_IN_FLIGHT = 1, - MQ_RQ_COMPLETE = 2, -}; - -enum rq_end_io_ret { - RQ_END_IO_NONE = 0, - RQ_END_IO_FREE = 1, -}; - -typedef enum rq_end_io_ret rq_end_io_fn(struct request *, blk_status_t); - -struct request { - struct request_queue *q; - struct blk_mq_ctx *mq_ctx; - struct blk_mq_hw_ctx *mq_hctx; - blk_opf_t cmd_flags; - req_flags_t rq_flags; - int tag; - int internal_tag; - unsigned int timeout; - unsigned int __data_len; - sector_t __sector; - struct bio *bio; - struct bio *biotail; - union { - struct list_head queuelist; - struct request *rq_next; - }; - struct block_device *part; - u64 start_time_ns; - u64 io_start_time_ns; - short unsigned int stats_sectors; - short unsigned int nr_phys_segments; - short unsigned int nr_integrity_segments; - enum mq_rq_state state; - atomic_t ref; - long unsigned int deadline; - union { - struct hlist_node hash; - struct llist_node ipi_list; - }; - union { - struct rb_node rb_node; - struct bio_vec special_vec; - }; - struct { - struct io_cq *icq; - void *priv[2]; - } elv; - struct { - unsigned int seq; - rq_end_io_fn *saved_end_io; - } flush; - u64 fifo_time; - rq_end_io_fn *end_io; - void *end_io_data; -}; - -struct blk_mq_tags { - unsigned int nr_tags; - unsigned int nr_reserved_tags; - unsigned int active_queues; - struct sbitmap_queue bitmap_tags; - struct sbitmap_queue breserved_tags; - struct request **rqs; - struct request **static_rqs; - struct list_head page_list; - spinlock_t lock; -}; - -struct blk_flush_queue { - spinlock_t mq_flush_lock; - unsigned int flush_pending_idx: 1; - unsigned int flush_running_idx: 1; - blk_status_t rq_status; - long unsigned int flush_pending_since; - struct list_head flush_queue[2]; - long unsigned int flush_data_in_flight; - struct request *flush_rq; -}; - -struct blk_mq_queue_map { - unsigned int *mq_map; - unsigned int nr_queues; - unsigned int queue_offset; -}; - -struct blk_mq_tag_set { - const struct blk_mq_ops *ops; - struct blk_mq_queue_map map[3]; - unsigned int nr_maps; - unsigned int nr_hw_queues; - unsigned int queue_depth; - unsigned int reserved_tags; - unsigned int cmd_size; - int numa_node; - unsigned int timeout; - unsigned int flags; - void *driver_data; - struct blk_mq_tags **tags; - struct blk_mq_tags *shared_tags; - struct mutex tag_list_lock; - struct list_head tag_list; - struct srcu_struct *srcu; -}; - -struct hd_geometry { - unsigned char heads; - unsigned char sectors; - short unsigned int cylinders; - long unsigned int start; -}; - -struct blkpg_ioctl_arg { - int op; - int flags; - int datalen; - void *data; -}; - -struct blkpg_partition { - long long int start; - long long int length; - int pno; - char devname[64]; - char volname[64]; -}; - -struct blk_mq_hw_ctx { - struct { - spinlock_t lock; - struct list_head dispatch; - long unsigned int state; - long: 64; - long: 64; - long: 64; - long: 64; - }; - struct delayed_work run_work; - cpumask_var_t cpumask; - int next_cpu; - int next_cpu_batch; - long unsigned int flags; - void *sched_data; - struct request_queue *queue; - struct blk_flush_queue *fq; - void *driver_data; - struct sbitmap ctx_map; - struct blk_mq_ctx *dispatch_from; - unsigned int dispatch_busy; - short unsigned int type; - short unsigned int nr_ctx; - struct blk_mq_ctx **ctxs; - spinlock_t dispatch_wait_lock; - wait_queue_entry_t dispatch_wait; - atomic_t wait_index; - struct blk_mq_tags *tags; - struct blk_mq_tags *sched_tags; - unsigned int numa_node; - unsigned int queue_num; - atomic_t nr_active; - struct hlist_node cpuhp_online; - struct hlist_node cpuhp_dead; - struct kobject kobj; - struct dentry *debugfs_dir; - struct dentry *sched_debugfs_dir; - struct list_head hctx_list; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct blk_mq_queue_data { - struct request *rq; - bool last; -}; - -struct pr_reservation { - __u64 key; - __u32 type; - __u32 flags; -}; - -struct pr_registration { - __u64 old_key; - __u64 new_key; - __u32 flags; - __u32 __pad; -}; - -struct pr_preempt { - __u64 old_key; - __u64 new_key; - __u32 type; - __u32 flags; -}; - -struct pr_clear { - __u64 key; - __u32 flags; - __u32 __pad; -}; - -struct io_uring_sqe { - __u8 opcode; - __u8 flags; - __u16 ioprio; - __s32 fd; - union { - __u64 off; - __u64 addr2; - struct { - __u32 cmd_op; - __u32 __pad1; - }; - }; - union { - __u64 addr; - __u64 splice_off_in; - struct { - __u32 level; - __u32 optname; - }; - }; - __u32 len; - union { - __u32 rw_flags; - __u32 fsync_flags; - __u16 poll_events; - __u32 poll32_events; - __u32 sync_range_flags; - __u32 msg_flags; - __u32 timeout_flags; - __u32 accept_flags; - __u32 cancel_flags; - __u32 open_flags; - __u32 statx_flags; - __u32 fadvise_advice; - __u32 splice_flags; - __u32 rename_flags; - __u32 unlink_flags; - __u32 hardlink_flags; - __u32 xattr_flags; - __u32 msg_ring_flags; - __u32 uring_cmd_flags; - __u32 waitid_flags; - __u32 futex_flags; - __u32 install_fd_flags; - __u32 nop_flags; - }; - __u64 user_data; - union { - __u16 buf_index; - __u16 buf_group; - }; - __u16 personality; - union { - __s32 splice_fd_in; - __u32 file_index; - __u32 optlen; - struct { - __u16 addr_len; - __u16 __pad3[1]; - }; - }; - union { - struct { - __u64 addr3; - __u64 __pad2[1]; - }; - __u64 optval; - __u8 cmd[0]; - }; -}; - -struct io_uring_cqe { - __u64 user_data; - __s32 res; - __u32 flags; - __u64 big_cqe[0]; -}; - -enum { - IOU_F_TWQ_LAZY_WAKE = 1, -}; - -enum io_uring_cmd_flags { - IO_URING_F_COMPLETE_DEFER = 1, - IO_URING_F_UNLOCKED = 2, - IO_URING_F_MULTISHOT = 4, - IO_URING_F_IOWQ = 8, - IO_URING_F_NONBLOCK = -2147483648, - IO_URING_F_SQE128 = 256, - IO_URING_F_CQE32 = 512, - IO_URING_F_IOPOLL = 1024, - IO_URING_F_CANCEL = 2048, - IO_URING_F_COMPAT = 4096, - IO_URING_F_TASK_DEAD = 8192, -}; - -struct io_wq_work_node { - struct io_wq_work_node *next; -}; - -struct io_wq_work_list { - struct io_wq_work_node *first; - struct io_wq_work_node *last; -}; - -struct io_wq_work { - struct io_wq_work_node list; - atomic_t flags; - int cancel_seq; -}; - -struct io_fixed_file { - long unsigned int file_ptr; -}; - -struct io_file_table { - struct io_fixed_file *files; - long unsigned int *bitmap; - unsigned int alloc_hint; -}; - -struct io_hash_bucket { - spinlock_t lock; - struct hlist_head list; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct io_hash_table { - struct io_hash_bucket *hbs; - unsigned int hash_bits; -}; - -struct io_kiocb; - -struct io_submit_link { - struct io_kiocb *head; - struct io_kiocb *last; -}; - -struct io_submit_state { - struct io_wq_work_node free_list; - struct io_wq_work_list compl_reqs; - struct io_submit_link link; - bool plug_started; - bool need_plug; - bool cq_flush; - short unsigned int submit_nr; - struct blk_plug plug; -}; - -struct io_alloc_cache { - void **entries; - unsigned int nr_cached; - unsigned int max_cached; - size_t elem_size; -}; - -struct io_restriction { - long unsigned int register_op[1]; - long unsigned int sqe_op[1]; - u8 sqe_flags_allowed; - u8 sqe_flags_required; - bool registered; -}; - -struct io_rings; - -struct io_rsrc_node; - -struct io_mapped_ubuf; - -struct io_ev_fd; - -struct io_sq_data; - -struct io_rsrc_data; - -struct io_wq_hash; - -struct io_ring_ctx { - struct { - unsigned int flags; - unsigned int drain_next: 1; - unsigned int restricted: 1; - unsigned int off_timeout_used: 1; - unsigned int drain_active: 1; - unsigned int has_evfd: 1; - unsigned int task_complete: 1; - unsigned int lockless_cq: 1; - unsigned int syscall_iopoll: 1; - unsigned int poll_activated: 1; - unsigned int drain_disabled: 1; - unsigned int compat: 1; - unsigned int iowq_limits_set: 1; - struct task_struct *submitter_task; - struct io_rings *rings; - struct percpu_ref refs; - clockid_t clockid; - enum tk_offsets clock_offset; - enum task_work_notify_mode notify_method; - unsigned int sq_thread_idle; - long: 64; - }; - struct { - struct mutex uring_lock; - u32 *sq_array; - struct io_uring_sqe *sq_sqes; - unsigned int cached_sq_head; - unsigned int sq_entries; - struct io_rsrc_node *rsrc_node; - atomic_t cancel_seq; - bool poll_multi_queue; - struct io_wq_work_list iopoll_list; - struct io_file_table file_table; - struct io_mapped_ubuf **user_bufs; - unsigned int nr_user_files; - unsigned int nr_user_bufs; - struct io_submit_state submit_state; - struct xarray io_bl_xa; - struct io_hash_table cancel_table_locked; - struct io_alloc_cache apoll_cache; - struct io_alloc_cache netmsg_cache; - struct io_alloc_cache rw_cache; - struct io_alloc_cache uring_cache; - struct hlist_head cancelable_uring_cmd; - long: 64; - }; - struct { - struct io_uring_cqe *cqe_cached; - struct io_uring_cqe *cqe_sentinel; - unsigned int cached_cq_tail; - unsigned int cq_entries; - struct io_ev_fd *io_ev_fd; - unsigned int cq_extra; - long: 64; - long: 64; - long: 64; - }; - struct { - struct llist_head work_llist; - long unsigned int check_cq; - atomic_t cq_wait_nr; - atomic_t cq_timeouts; - struct wait_queue_head cq_wait; - long: 64; - long: 64; - }; - struct { - spinlock_t timeout_lock; - struct list_head timeout_list; - struct list_head ltimeout_list; - unsigned int cq_last_tm_flush; - long: 64; - long: 64; - }; - spinlock_t completion_lock; - struct list_head io_buffers_comp; - struct list_head cq_overflow_list; - struct io_hash_table cancel_table; - struct hlist_head waitid_list; - struct hlist_head futex_list; - struct io_alloc_cache futex_cache; - const struct cred *sq_creds; - struct io_sq_data *sq_data; - struct wait_queue_head sqo_sq_wait; - struct list_head sqd_list; - unsigned int file_alloc_start; - unsigned int file_alloc_end; - struct list_head io_buffers_cache; - struct wait_queue_head poll_wq; - struct io_restriction restrictions; - struct io_rsrc_data *file_data; - struct io_rsrc_data *buf_data; - struct list_head rsrc_ref_list; - struct io_alloc_cache rsrc_node_cache; - struct wait_queue_head rsrc_quiesce_wq; - unsigned int rsrc_quiesce; - u32 pers_next; - struct xarray personalities; - struct io_wq_hash *hash_map; - struct user_struct *user; - struct mm_struct *mm_account; - struct llist_head fallback_llist; - struct delayed_work fallback_work; - struct work_struct exit_work; - struct list_head tctx_list; - struct completion ref_comp; - u32 iowq_limits[2]; - struct callback_head poll_wq_task_work; - struct list_head defer_list; - struct list_head napi_list; - spinlock_t napi_lock; - ktime_t napi_busy_poll_dt; - bool napi_prefer_busy_poll; - bool napi_enabled; - struct hlist_head napi_ht[16]; - unsigned int evfd_last_cq_tail; - short unsigned int n_ring_pages; - short unsigned int n_sqe_pages; - struct page **ring_pages; - struct page **sqe_pages; - long: 64; -}; - -struct io_uring { - u32 head; - u32 tail; -}; - -struct io_rings { - struct io_uring sq; - struct io_uring cq; - u32 sq_ring_mask; - u32 cq_ring_mask; - u32 sq_ring_entries; - u32 cq_ring_entries; - u32 sq_dropped; - atomic_t sq_flags; - u32 cq_flags; - u32 cq_overflow; - long: 64; - long: 64; - struct io_uring_cqe cqes[0]; -}; - -struct io_cmd_data { - struct file *file; - __u8 data[56]; -}; - -typedef u64 io_req_flags_t; - -struct io_cqe { - __u64 user_data; - __s32 res; - union { - __u32 flags; - int fd; - }; -}; - -struct io_tw_state; - -typedef void (*io_req_tw_func_t)(struct io_kiocb *, struct io_tw_state *); - -struct io_task_work { - struct llist_node node; - io_req_tw_func_t func; -}; - -struct io_buffer; - -struct io_buffer_list; - -struct async_poll; - -struct io_kiocb { - union { - struct file *file; - struct io_cmd_data cmd; - }; - u8 opcode; - u8 iopoll_completed; - u16 buf_index; - unsigned int nr_tw; - io_req_flags_t flags; - struct io_cqe cqe; - struct io_ring_ctx *ctx; - struct task_struct *task; - union { - struct io_mapped_ubuf *imu; - struct io_buffer *kbuf; - struct io_buffer_list *buf_list; - }; - union { - struct io_wq_work_node comp_list; - __poll_t apoll_events; - }; - struct io_rsrc_node *rsrc_node; - atomic_t refs; - bool cancel_seq_set; - struct io_task_work io_task_work; - union { - struct hlist_node hash_node; - struct callback_head callback_head; - }; - struct async_poll *apoll; - void *async_data; - atomic_t poll_refs; - struct io_kiocb *link; - const struct cred *creds; - struct io_wq_work work; - struct { - u64 extra1; - u64 extra2; - } big_cqe; -}; - -struct io_tw_state {}; - -struct blk_iou_cmd { - int res; - bool nowait; -}; - -struct sg_io_v4 { - __s32 guard; - __u32 protocol; - __u32 subprotocol; - __u32 request_len; - __u64 request; - __u64 request_tag; - __u32 request_attr; - __u32 request_priority; - __u32 request_extra; - __u32 max_response_len; - __u64 response; - __u32 dout_iovec_count; - __u32 dout_xfer_len; - __u32 din_iovec_count; - __u32 din_xfer_len; - __u64 dout_xferp; - __u64 din_xferp; - __u32 timeout; - __u32 flags; - __u64 usr_ptr; - __u32 spare_in; - __u32 driver_status; - __u32 transport_status; - __u32 device_status; - __u32 retry_delay; - __u32 info; - __u32 duration; - __u32 response_len; - __s32 din_resid; - __s32 dout_resid; - __u64 generated_tag; - __u32 spare_out; - __u32 padding; -}; - -typedef int bsg_sg_io_fn(struct request_queue *, struct sg_io_v4 *, bool, unsigned int); - -typedef __u32 blk_mq_req_flags_t; - -enum { - QUEUE_FLAG_DYING = 0, - QUEUE_FLAG_NOMERGES = 1, - QUEUE_FLAG_SAME_COMP = 2, - QUEUE_FLAG_FAIL_IO = 3, - QUEUE_FLAG_NOXMERGES = 4, - QUEUE_FLAG_SAME_FORCE = 5, - QUEUE_FLAG_INIT_DONE = 6, - QUEUE_FLAG_STATS = 7, - QUEUE_FLAG_REGISTERED = 8, - QUEUE_FLAG_QUIESCED = 9, - QUEUE_FLAG_RQ_ALLOC_TIME = 10, - QUEUE_FLAG_HCTX_ACTIVE = 11, - QUEUE_FLAG_SQ_SCHED = 12, - QUEUE_FLAG_MAX = 13, -}; - -enum hctx_type { - HCTX_TYPE_DEFAULT = 0, - HCTX_TYPE_READ = 1, - HCTX_TYPE_POLL = 2, - HCTX_MAX_TYPES = 3, -}; - -enum { - BLK_MQ_F_SHOULD_MERGE = 1, - BLK_MQ_F_TAG_QUEUE_SHARED = 2, - BLK_MQ_F_STACKING = 4, - BLK_MQ_F_TAG_HCTX_SHARED = 8, - BLK_MQ_F_BLOCKING = 16, - BLK_MQ_F_NO_SCHED = 32, - BLK_MQ_F_NO_SCHED_BY_DEFAULT = 64, - BLK_MQ_F_ALLOC_POLICY_START_BIT = 7, - BLK_MQ_F_ALLOC_POLICY_BITS = 1, -}; - -struct rq_map_data { - struct page **pages; - long unsigned int offset; - short unsigned int page_order; - short unsigned int nr_entries; - bool null_mapped; - bool from_user; -}; - -struct bsg_job; - -typedef int bsg_job_fn(struct bsg_job *); - -struct bsg_buffer { - unsigned int payload_len; - int sg_cnt; - struct scatterlist *sg_list; -}; - -struct bsg_job { - struct device *dev; - struct kref kref; - unsigned int timeout; - void *request; - void *reply; - unsigned int request_len; - unsigned int reply_len; - struct bsg_buffer request_payload; - struct bsg_buffer reply_payload; - int result; - unsigned int reply_payload_rcv_len; - struct request *bidi_rq; - struct bio *bidi_bio; - void *dd_data; -}; - -typedef enum blk_eh_timer_return bsg_timeout_fn(struct request *); - -enum scsi_device_event { - SDEV_EVT_MEDIA_CHANGE = 1, - SDEV_EVT_INQUIRY_CHANGE_REPORTED = 2, - SDEV_EVT_CAPACITY_CHANGE_REPORTED = 3, - SDEV_EVT_SOFT_THRESHOLD_REACHED_REPORTED = 4, - SDEV_EVT_MODE_PARAMETER_CHANGE_REPORTED = 5, - SDEV_EVT_LUN_CHANGE_REPORTED = 6, - SDEV_EVT_ALUA_STATE_CHANGE_REPORTED = 7, - SDEV_EVT_POWER_ON_RESET_OCCURRED = 8, - SDEV_EVT_FIRST = 1, - SDEV_EVT_LAST = 8, - SDEV_EVT_MAXBITS = 9, -}; - -struct bsg_device; - -struct bsg_set { - struct blk_mq_tag_set tag_set; - struct bsg_device *bd; - bsg_job_fn *job_fn; - bsg_timeout_fn *timeout_fn; -}; - -enum io_uring_op { - IORING_OP_NOP = 0, - IORING_OP_READV = 1, - IORING_OP_WRITEV = 2, - IORING_OP_FSYNC = 3, - IORING_OP_READ_FIXED = 4, - IORING_OP_WRITE_FIXED = 5, - IORING_OP_POLL_ADD = 6, - IORING_OP_POLL_REMOVE = 7, - IORING_OP_SYNC_FILE_RANGE = 8, - IORING_OP_SENDMSG = 9, - IORING_OP_RECVMSG = 10, - IORING_OP_TIMEOUT = 11, - IORING_OP_TIMEOUT_REMOVE = 12, - IORING_OP_ACCEPT = 13, - IORING_OP_ASYNC_CANCEL = 14, - IORING_OP_LINK_TIMEOUT = 15, - IORING_OP_CONNECT = 16, - IORING_OP_FALLOCATE = 17, - IORING_OP_OPENAT = 18, - IORING_OP_CLOSE = 19, - IORING_OP_FILES_UPDATE = 20, - IORING_OP_STATX = 21, - IORING_OP_READ = 22, - IORING_OP_WRITE = 23, - IORING_OP_FADVISE = 24, - IORING_OP_MADVISE = 25, - IORING_OP_SEND = 26, - IORING_OP_RECV = 27, - IORING_OP_OPENAT2 = 28, - IORING_OP_EPOLL_CTL = 29, - IORING_OP_SPLICE = 30, - IORING_OP_PROVIDE_BUFFERS = 31, - IORING_OP_REMOVE_BUFFERS = 32, - IORING_OP_TEE = 33, - IORING_OP_SHUTDOWN = 34, - IORING_OP_RENAMEAT = 35, - IORING_OP_UNLINKAT = 36, - IORING_OP_MKDIRAT = 37, - IORING_OP_SYMLINKAT = 38, - IORING_OP_LINKAT = 39, - IORING_OP_MSG_RING = 40, - IORING_OP_FSETXATTR = 41, - IORING_OP_SETXATTR = 42, - IORING_OP_FGETXATTR = 43, - IORING_OP_GETXATTR = 44, - IORING_OP_SOCKET = 45, - IORING_OP_URING_CMD = 46, - IORING_OP_SEND_ZC = 47, - IORING_OP_SENDMSG_ZC = 48, - IORING_OP_READ_MULTISHOT = 49, - IORING_OP_WAITID = 50, - IORING_OP_FUTEX_WAIT = 51, - IORING_OP_FUTEX_WAKE = 52, - IORING_OP_FUTEX_WAITV = 53, - IORING_OP_FIXED_FD_INSTALL = 54, - IORING_OP_FTRUNCATE = 55, - IORING_OP_BIND = 56, - IORING_OP_LISTEN = 57, - IORING_OP_LAST = 58, -}; - -struct io_rsrc_put { - u64 tag; - union { - void *rsrc; - struct file *file; - struct io_mapped_ubuf *buf; - }; -}; - -struct io_rsrc_node { - struct io_ring_ctx *ctx; - int refs; - bool empty; - u16 type; - struct list_head node; - struct io_rsrc_put item; -}; - -struct io_mapped_ubuf { - u64 ubuf; - unsigned int len; - unsigned int nr_bvecs; - unsigned int folio_shift; - refcount_t refs; - long unsigned int acct_pages; - struct bio_vec bvec[0]; -}; - -struct io_rsrc_data { - struct io_ring_ctx *ctx; - u64 **tags; - unsigned int nr; - u16 rsrc_type; - bool quiesce; -}; - -struct io_wq_hash { - refcount_t refs; - long unsigned int map; - struct wait_queue_head wait; -}; - -typedef long unsigned int netmem_ref; - -struct skb_frag { - netmem_ref netmem; - unsigned int len; - unsigned int offset; -}; - -typedef struct skb_frag skb_frag_t; - -enum { - SKBFL_ZEROCOPY_ENABLE = 1, - SKBFL_SHARED_FRAG = 2, - SKBFL_PURE_ZEROCOPY = 4, - SKBFL_DONT_ORPHAN = 8, - SKBFL_MANAGED_FRAG_REFS = 16, -}; - -struct xsk_tx_metadata_compl { - __u64 *tx_timestamp; -}; - -struct skb_shared_info { - __u8 flags; - __u8 meta_len; - __u8 nr_frags; - __u8 tx_flags; - short unsigned int gso_size; - short unsigned int gso_segs; - struct sk_buff *frag_list; - union { - struct skb_shared_hwtstamps hwtstamps; - struct xsk_tx_metadata_compl xsk_meta; - }; - unsigned int gso_type; - u32 tskey; - atomic_t dataref; - unsigned int xdp_frags_size; - void *destructor_arg; - skb_frag_t frags[17]; -}; - -struct io_notif_data { - struct file *file; - struct ubuf_info uarg; - struct io_notif_data *next; - struct io_notif_data *head; - unsigned int account_pages; - bool zc_report; - bool zc_used; - bool zc_copied; -}; - -struct ksignal { - struct k_sigaction ka; - kernel_siginfo_t info; - int sig; -}; - -enum rseq_cs_flags_bit { - RSEQ_CS_FLAG_NO_RESTART_ON_PREEMPT_BIT = 0, - RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL_BIT = 1, - RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE_BIT = 2, -}; - -enum io_uring_sqe_flags_bit { - IOSQE_FIXED_FILE_BIT = 0, - IOSQE_IO_DRAIN_BIT = 1, - IOSQE_IO_LINK_BIT = 2, - IOSQE_IO_HARDLINK_BIT = 3, - IOSQE_ASYNC_BIT = 4, - IOSQE_BUFFER_SELECT_BIT = 5, - IOSQE_CQE_SKIP_SUCCESS_BIT = 6, -}; - -enum io_uring_register_op { - IORING_REGISTER_BUFFERS = 0, - IORING_UNREGISTER_BUFFERS = 1, - IORING_REGISTER_FILES = 2, - IORING_UNREGISTER_FILES = 3, - IORING_REGISTER_EVENTFD = 4, - IORING_UNREGISTER_EVENTFD = 5, - IORING_REGISTER_FILES_UPDATE = 6, - IORING_REGISTER_EVENTFD_ASYNC = 7, - IORING_REGISTER_PROBE = 8, - IORING_REGISTER_PERSONALITY = 9, - IORING_UNREGISTER_PERSONALITY = 10, - IORING_REGISTER_RESTRICTIONS = 11, - IORING_REGISTER_ENABLE_RINGS = 12, - IORING_REGISTER_FILES2 = 13, - IORING_REGISTER_FILES_UPDATE2 = 14, - IORING_REGISTER_BUFFERS2 = 15, - IORING_REGISTER_BUFFERS_UPDATE = 16, - IORING_REGISTER_IOWQ_AFF = 17, - IORING_UNREGISTER_IOWQ_AFF = 18, - IORING_REGISTER_IOWQ_MAX_WORKERS = 19, - IORING_REGISTER_RING_FDS = 20, - IORING_UNREGISTER_RING_FDS = 21, - IORING_REGISTER_PBUF_RING = 22, - IORING_UNREGISTER_PBUF_RING = 23, - IORING_REGISTER_SYNC_CANCEL = 24, - IORING_REGISTER_FILE_ALLOC_RANGE = 25, - IORING_REGISTER_PBUF_STATUS = 26, - IORING_REGISTER_NAPI = 27, - IORING_UNREGISTER_NAPI = 28, - IORING_REGISTER_CLOCK = 29, - IORING_REGISTER_CLONE_BUFFERS = 30, - IORING_REGISTER_LAST = 31, - IORING_REGISTER_USE_REGISTERED_RING = 2147483648, -}; - -enum io_wq_type { - IO_WQ_BOUND = 0, - IO_WQ_UNBOUND = 1, -}; - -typedef struct io_wq_work *free_work_fn(struct io_wq_work *); - -typedef void io_wq_work_fn(struct io_wq_work *); - -struct io_wq_acct { - unsigned int nr_workers; - unsigned int max_workers; - int index; - atomic_t nr_running; - raw_spinlock_t lock; - struct io_wq_work_list work_list; - long unsigned int flags; -}; - -struct io_wq { - long unsigned int state; - free_work_fn *free_work; - io_wq_work_fn *do_work; - struct io_wq_hash *hash; - atomic_t worker_refs; - struct completion worker_done; - struct hlist_node cpuhp_node; - struct task_struct *task; - struct io_wq_acct acct[2]; - raw_spinlock_t lock; - struct hlist_nulls_head free_list; - struct list_head all_list; - struct wait_queue_entry wait; - struct io_wq_work *hash_tail[64]; - cpumask_var_t cpu_mask; -}; - -enum { - REQ_F_FIXED_FILE_BIT = 0, - REQ_F_IO_DRAIN_BIT = 1, - REQ_F_LINK_BIT = 2, - REQ_F_HARDLINK_BIT = 3, - REQ_F_FORCE_ASYNC_BIT = 4, - REQ_F_BUFFER_SELECT_BIT = 5, - REQ_F_CQE_SKIP_BIT = 6, - REQ_F_FAIL_BIT = 8, - REQ_F_INFLIGHT_BIT = 9, - REQ_F_CUR_POS_BIT = 10, - REQ_F_NOWAIT_BIT = 11, - REQ_F_LINK_TIMEOUT_BIT = 12, - REQ_F_NEED_CLEANUP_BIT = 13, - REQ_F_POLLED_BIT = 14, - REQ_F_BUFFER_SELECTED_BIT = 15, - REQ_F_BUFFER_RING_BIT = 16, - REQ_F_REISSUE_BIT = 17, - REQ_F_CREDS_BIT = 18, - REQ_F_REFCOUNT_BIT = 19, - REQ_F_ARM_LTIMEOUT_BIT = 20, - REQ_F_ASYNC_DATA_BIT = 21, - REQ_F_SKIP_LINK_CQES_BIT = 22, - REQ_F_SINGLE_POLL_BIT = 23, - REQ_F_DOUBLE_POLL_BIT = 24, - REQ_F_MULTISHOT_BIT = 25, - REQ_F_APOLL_MULTISHOT_BIT = 26, - REQ_F_CLEAR_POLLIN_BIT = 27, - REQ_F_HASH_LOCKED_BIT = 28, - REQ_F_SUPPORT_NOWAIT_BIT = 29, - REQ_F_ISREG_BIT = 30, - REQ_F_POLL_NO_LAZY_BIT = 31, - REQ_F_CAN_POLL_BIT = 32, - REQ_F_BL_EMPTY_BIT = 33, - REQ_F_BL_NO_RECYCLE_BIT = 34, - REQ_F_BUFFERS_COMMIT_BIT = 35, - __REQ_F_LAST_BIT = 36, -}; - -enum { - IO_WQ_WORK_CANCEL = 1, - IO_WQ_WORK_HASHED = 2, - IO_WQ_WORK_UNBOUND = 4, - IO_WQ_WORK_CONCURRENT = 16, - IO_WQ_HASH_SHIFT = 24, -}; - -enum io_wq_cancel { - IO_WQ_CANCEL_OK = 0, - IO_WQ_CANCEL_RUNNING = 1, - IO_WQ_CANCEL_NOTFOUND = 2, -}; - -struct io_wq_data { - struct io_wq_hash *hash; - struct task_struct *task; - io_wq_work_fn *do_work; - free_work_fn *free_work; -}; - -typedef bool work_cancel_fn(struct io_wq_work *, void *); - -enum rseq_event_mask_bits { - RSEQ_EVENT_PREEMPT_BIT = 0, - RSEQ_EVENT_SIGNAL_BIT = 1, - RSEQ_EVENT_MIGRATE_BIT = 2, -}; - -enum { - IO_WORKER_F_UP = 0, - IO_WORKER_F_RUNNING = 1, - IO_WORKER_F_FREE = 2, - IO_WORKER_F_BOUND = 3, -}; - -enum { - IO_WQ_BIT_EXIT = 0, -}; - -enum { - IO_ACCT_STALLED_BIT = 0, -}; - -struct io_worker { - refcount_t ref; - int create_index; - long unsigned int flags; - struct hlist_nulls_node nulls_node; - struct list_head all_list; - struct task_struct *task; - struct io_wq *wq; - struct io_wq_work *cur_work; - raw_spinlock_t lock; - struct completion ref_done; - long unsigned int create_state; - struct callback_head create_work; - int init_retries; - union { - struct callback_head rcu; - struct delayed_work work; - }; -}; - -enum { - IO_WQ_ACCT_BOUND = 0, - IO_WQ_ACCT_UNBOUND = 1, - IO_WQ_ACCT_NR = 2, -}; - -struct io_cb_cancel_data { - work_cancel_fn *fn; - void *data; - int nr_running; - int nr_pending; - bool cancel_all; -}; - -struct online_data { - unsigned int cpu; - bool online; -}; - -typedef void (*dr_release_t)(struct device *, void *); - -enum string_size_units { - STRING_UNITS_10 = 0, - STRING_UNITS_2 = 1, - STRING_UNITS_MASK = 1, - STRING_UNITS_NO_SPACE = 1073741824, - STRING_UNITS_NO_BYTES = 2147483648, -}; - -struct strarray { - char **array; - size_t n; -}; - -typedef mpi_limb_t *mpi_ptr_t; - -typedef int mpi_size_t; - -typedef mpi_limb_t UWtype; - -typedef unsigned int UHWtype; - -struct xxh32_state { - uint32_t total_len_32; - uint32_t large_len; - uint32_t v1; - uint32_t v2; - uint32_t v3; - uint32_t v4; - uint32_t mem32[4]; - uint32_t memsize; -}; - -struct xxh64_state { - uint64_t total_len; - uint64_t v1; - uint64_t v2; - uint64_t v3; - uint64_t v4; - uint64_t mem64[4]; - uint32_t memsize; -}; - -typedef unsigned char Byte; - -typedef unsigned int uInt; - -typedef long unsigned int uLong; - -struct internal_state; - -struct z_stream_s { - const Byte *next_in; - uLong avail_in; - uLong total_in; - Byte *next_out; - uLong avail_out; - uLong total_out; - char *msg; - struct internal_state *state; - void *workspace; - int data_type; - uLong adler; - uLong reserved; -}; - -typedef struct z_stream_s z_stream; - -typedef z_stream *z_streamp; - -typedef unsigned char uch; - -typedef short unsigned int ush; - -typedef long unsigned int ulg; - -struct ct_data_s { - union { - ush freq; - ush code; - } fc; - union { - ush dad; - ush len; - } dl; -}; - -typedef struct ct_data_s ct_data; - -struct static_tree_desc_s { - const ct_data *static_tree; - const int *extra_bits; - int extra_base; - int elems; - int max_length; -}; - -typedef struct static_tree_desc_s static_tree_desc; - -struct tree_desc_s { - ct_data *dyn_tree; - int max_code; - static_tree_desc *stat_desc; -}; - -typedef ush Pos; - -typedef unsigned int IPos; - -struct deflate_state { - z_streamp strm; - int status; - Byte *pending_buf; - ulg pending_buf_size; - Byte *pending_out; - int pending; - int noheader; - Byte data_type; - Byte method; - int last_flush; - uInt w_size; - uInt w_bits; - uInt w_mask; - Byte *window; - ulg window_size; - Pos *prev; - Pos *head; - uInt ins_h; - uInt hash_size; - uInt hash_bits; - uInt hash_mask; - uInt hash_shift; - long int block_start; - uInt match_length; - IPos prev_match; - int match_available; - uInt strstart; - uInt match_start; - uInt lookahead; - uInt prev_length; - uInt max_chain_length; - uInt max_lazy_match; - int level; - int strategy; - uInt good_match; - int nice_match; - struct ct_data_s dyn_ltree[573]; - struct ct_data_s dyn_dtree[61]; - struct ct_data_s bl_tree[39]; - struct tree_desc_s l_desc; - struct tree_desc_s d_desc; - struct tree_desc_s bl_desc; - ush bl_count[16]; - int heap[573]; - int heap_len; - int heap_max; - uch depth[573]; - uch *l_buf; - uInt lit_bufsize; - uInt last_lit; - ush *d_buf; - ulg opt_len; - ulg static_len; - ulg compressed_len; - uInt matches; - int last_eob_len; - ush bi_buf; - int bi_valid; -}; - -typedef struct deflate_state deflate_state; - -typedef enum { - need_more = 0, - block_done = 1, - finish_started = 2, - finish_done = 3, -} block_state; - -typedef block_state (*compress_func)(deflate_state *, int); - -struct deflate_workspace { - deflate_state deflate_memory; - Byte *window_memory; - Pos *prev_memory; - Pos *head_memory; - char *overlay_memory; -}; - -typedef struct deflate_workspace deflate_workspace; - -struct config_s { - ush good_length; - ush max_lazy; - ush nice_length; - ush max_chain; - compress_func func; -}; - -typedef struct config_s config; - -typedef struct { - uint32_t hashTable[4096]; - uint32_t currentOffset; - uint32_t initCheck; - const uint8_t *dictionary; - uint8_t *bufferStart; - uint32_t dictSize; -} LZ4_stream_t_internal; - -typedef union { - long long unsigned int table[2052]; - LZ4_stream_t_internal internal_donotuse; -} LZ4_stream_t; - -typedef uint8_t BYTE; - -typedef uint16_t U16; - -typedef uint32_t U32; - -typedef uint64_t U64; - -typedef uintptr_t uptrval; - -typedef enum { - noLimit = 0, - limitedOutput = 1, -} limitedOutput_directive; - -typedef enum { - byPtr = 0, - byU32 = 1, - byU16 = 2, -} tableType_t; - -typedef enum { - noDict = 0, - withPrefix64k = 1, - usingExtDict = 2, -} dict_directive; - -typedef enum { - noDictIssue = 0, - dictSmall = 1, -} dictIssue_directive; - -typedef s16 int16_t; - -typedef enum { - ZSTD_error_no_error = 0, - ZSTD_error_GENERIC = 1, - ZSTD_error_prefix_unknown = 10, - ZSTD_error_version_unsupported = 12, - ZSTD_error_frameParameter_unsupported = 14, - ZSTD_error_frameParameter_windowTooLarge = 16, - ZSTD_error_corruption_detected = 20, - ZSTD_error_checksum_wrong = 22, - ZSTD_error_dictionary_corrupted = 30, - ZSTD_error_dictionary_wrong = 32, - ZSTD_error_dictionaryCreation_failed = 34, - ZSTD_error_parameter_unsupported = 40, - ZSTD_error_parameter_outOfBound = 42, - ZSTD_error_tableLog_tooLarge = 44, - ZSTD_error_maxSymbolValue_tooLarge = 46, - ZSTD_error_maxSymbolValue_tooSmall = 48, - ZSTD_error_stage_wrong = 60, - ZSTD_error_init_missing = 62, - ZSTD_error_memory_allocation = 64, - ZSTD_error_workSpace_tooSmall = 66, - ZSTD_error_dstSize_tooSmall = 70, - ZSTD_error_srcSize_wrong = 72, - ZSTD_error_dstBuffer_null = 74, - ZSTD_error_frameIndex_tooLarge = 100, - ZSTD_error_seekableIO = 102, - ZSTD_error_dstBuffer_wrong = 104, - ZSTD_error_srcBuffer_wrong = 105, - ZSTD_error_maxCode = 120, -} ZSTD_ErrorCode; - -typedef ZSTD_ErrorCode ERR_enum; - -typedef uint8_t U8; - -typedef int16_t S16; - -typedef void * (*ZSTD_allocFunction)(void *, size_t); - -typedef void (*ZSTD_freeFunction)(void *, void *); - -typedef struct { - ZSTD_allocFunction customAlloc; - ZSTD_freeFunction customFree; - void *opaque; -} ZSTD_customMem; - -enum lzma_state { - STATE_LIT_LIT = 0, - STATE_MATCH_LIT_LIT = 1, - STATE_REP_LIT_LIT = 2, - STATE_SHORTREP_LIT_LIT = 3, - STATE_MATCH_LIT = 4, - STATE_REP_LIT = 5, - STATE_SHORTREP_LIT = 6, - STATE_LIT_MATCH = 7, - STATE_LIT_LONGREP = 8, - STATE_LIT_SHORTREP = 9, - STATE_NONLIT_MATCH = 10, - STATE_NONLIT_REP = 11, -}; - -struct dictionary { - uint8_t *buf; - size_t start; - size_t pos; - size_t full; - size_t limit; - size_t end; - uint32_t size; - uint32_t size_max; - uint32_t allocated; - enum xz_mode mode; -}; - -struct rc_dec { - uint32_t range; - uint32_t code; - uint32_t init_bytes_left; - const uint8_t *in; - size_t in_pos; - size_t in_limit; -}; - -struct lzma_len_dec { - uint16_t choice; - uint16_t choice2; - uint16_t low[128]; - uint16_t mid[128]; - uint16_t high[256]; -}; - -struct lzma_dec { - uint32_t rep0; - uint32_t rep1; - uint32_t rep2; - uint32_t rep3; - enum lzma_state state; - uint32_t len; - uint32_t lc; - uint32_t literal_pos_mask; - uint32_t pos_mask; - uint16_t is_match[192]; - uint16_t is_rep[12]; - uint16_t is_rep0[12]; - uint16_t is_rep1[12]; - uint16_t is_rep2[12]; - uint16_t is_rep0_long[192]; - uint16_t dist_slot[256]; - uint16_t dist_special[114]; - uint16_t dist_align[16]; - struct lzma_len_dec match_len_dec; - struct lzma_len_dec rep_len_dec; - uint16_t literal[12288]; -}; - -enum lzma2_seq { - SEQ_CONTROL = 0, - SEQ_UNCOMPRESSED_1 = 1, - SEQ_UNCOMPRESSED_2 = 2, - SEQ_COMPRESSED_0 = 3, - SEQ_COMPRESSED_1 = 4, - SEQ_PROPERTIES = 5, - SEQ_LZMA_PREPARE = 6, - SEQ_LZMA_RUN = 7, - SEQ_COPY = 8, -}; - -struct lzma2_dec { - enum lzma2_seq sequence; - enum lzma2_seq next_sequence; - uint32_t uncompressed; - uint32_t compressed; - bool need_dict_reset; - bool need_props; - bool pedantic_microlzma; -}; - -struct xz_dec_lzma2 { - struct rc_dec rc; - struct dictionary dict; - struct lzma2_dec lzma2; - struct lzma_dec lzma; - struct { - uint32_t size; - uint8_t buf[63]; - } temp; -}; - -struct xz_dec_microlzma { - struct xz_dec_lzma2 s; -}; - -struct raid6_calls { - void (*gen_syndrome)(int, size_t, void **); - void (*xor_syndrome)(int, int, int, size_t, void **); - int (*valid)(void); - const char *name; - int priority; -}; - -struct raid6_recov_calls { - void (*data2)(int, size_t, int, int, void **); - void (*datap)(int, size_t, int, void **); - int (*valid)(void); - const char *name; - int priority; -}; - -struct nla_bitfield32 { - __u32 value; - __u32 selector; -}; - -enum { - NLA_UNSPEC = 0, - NLA_U8 = 1, - NLA_U16 = 2, - NLA_U32 = 3, - NLA_U64 = 4, - NLA_STRING = 5, - NLA_FLAG = 6, - NLA_MSECS = 7, - NLA_NESTED = 8, - NLA_NESTED_ARRAY = 9, - NLA_NUL_STRING = 10, - NLA_BINARY = 11, - NLA_S8 = 12, - NLA_S16 = 13, - NLA_S32 = 14, - NLA_S64 = 15, - NLA_BITFIELD32 = 16, - NLA_REJECT = 17, - NLA_BE16 = 18, - NLA_BE32 = 19, - NLA_SINT = 20, - NLA_UINT = 21, - __NLA_TYPE_MAX = 22, -}; - -enum nla_policy_validation { - NLA_VALIDATE_NONE = 0, - NLA_VALIDATE_RANGE = 1, - NLA_VALIDATE_RANGE_WARN_TOO_LONG = 2, - NLA_VALIDATE_MIN = 3, - NLA_VALIDATE_MAX = 4, - NLA_VALIDATE_MASK = 5, - NLA_VALIDATE_RANGE_PTR = 6, - NLA_VALIDATE_FUNCTION = 7, -}; - -enum netlink_validation { - NL_VALIDATE_LIBERAL = 0, - NL_VALIDATE_TRAILING = 1, - NL_VALIDATE_MAXTYPE = 2, - NL_VALIDATE_UNSPEC = 4, - NL_VALIDATE_STRICT_ATTRS = 8, - NL_VALIDATE_NESTED = 16, -}; - -struct clk_bulk_data { - const char *id; - struct clk *clk; -}; - -struct platform_device_id { - char name[20]; - kernel_ulong_t driver_data; -}; - -struct of_dev_auxdata { - char *compatible; - resource_size_t phys_addr; - char *name; - void *platform_data; -}; - -struct resource { - resource_size_t start; - resource_size_t end; - const char *name; - long unsigned int flags; - long unsigned int desc; - struct resource *parent; - struct resource *sibling; - struct resource *child; -}; - -struct pdev_archdata {}; - -struct mfd_cell; - -struct platform_device { - const char *name; - int id; - bool id_auto; - struct device dev; - u64 platform_dma_mask; - struct device_dma_parameters dma_parms; - u32 num_resources; - struct resource *resource; - const struct platform_device_id *id_entry; - const char *driver_override; - struct mfd_cell *mfd_cell; - struct pdev_archdata archdata; -}; - -struct platform_driver { - int (*probe)(struct platform_device *); - union { - void (*remove)(struct platform_device *); - void (*remove_new)(struct platform_device *); - }; - void (*shutdown)(struct platform_device *); - int (*suspend)(struct platform_device *, pm_message_t); - int (*resume)(struct platform_device *); - struct device_driver driver; - const struct platform_device_id *id_table; - bool prevent_deferred_probe; - bool driver_managed_dma; -}; - -struct simple_pm_bus { - struct clk_bulk_data *clks; - int num_clks; -}; - -struct pci_device_id { - __u32 vendor; - __u32 device; - __u32 subvendor; - __u32 subdevice; - __u32 class; - __u32 class_mask; - kernel_ulong_t driver_data; - __u32 override_only; -}; - -struct pci_bus; - -struct hotplug_slot; - -struct pci_slot { - struct pci_bus *bus; - struct list_head list; - struct hotplug_slot *hotplug; - unsigned char number; - struct kobject kobj; -}; - -typedef short unsigned int pci_bus_flags_t; - -struct pci_dev; - -struct pci_ops; - -struct pci_bus { - struct list_head node; - struct pci_bus *parent; - struct list_head children; - struct list_head devices; - struct pci_dev *self; - struct list_head slots; - struct resource *resource[4]; - struct list_head resources; - struct resource busn_res; - struct pci_ops *ops; - void *sysdata; - struct proc_dir_entry *procdir; - unsigned char number; - unsigned char primary; - unsigned char max_bus_speed; - unsigned char cur_bus_speed; - int domain_nr; - char name[48]; - short unsigned int bridge_ctl; - pci_bus_flags_t bus_flags; - struct device *bridge; - struct device dev; - struct bin_attribute *legacy_io; - struct bin_attribute *legacy_mem; - unsigned int is_added: 1; - unsigned int unsafe_warn: 1; -}; - -enum { - PCI_STD_RESOURCES = 0, - PCI_STD_RESOURCE_END = 5, - PCI_ROM_RESOURCE = 6, - PCI_BRIDGE_RESOURCES = 7, - PCI_BRIDGE_RESOURCE_END = 10, - PCI_NUM_RESOURCES = 11, - DEVICE_COUNT_RESOURCE = 11, -}; - -typedef int pci_power_t; - -typedef unsigned int pci_channel_state_t; - -typedef short unsigned int pci_dev_flags_t; - -struct pci_vpd { - struct mutex lock; - unsigned int len; - u8 cap; -}; - -struct rcec_ea; - -struct pci_driver; - -struct pcie_link_state; - -struct pci_dev { - struct list_head bus_list; - struct pci_bus *bus; - struct pci_bus *subordinate; - void *sysdata; - struct proc_dir_entry *procent; - struct pci_slot *slot; - unsigned int devfn; - short unsigned int vendor; - short unsigned int device; - short unsigned int subsystem_vendor; - short unsigned int subsystem_device; - unsigned int class; - u8 revision; - u8 hdr_type; - struct rcec_ea *rcec_ea; - struct pci_dev *rcec; - u32 devcap; - u8 pcie_cap; - u8 msi_cap; - u8 msix_cap; - u8 pcie_mpss: 3; - u8 rom_base_reg; - u8 pin; - u16 pcie_flags_reg; - long unsigned int *dma_alias_mask; - struct pci_driver *driver; - u64 dma_mask; - struct device_dma_parameters dma_parms; - pci_power_t current_state; - u8 pm_cap; - unsigned int pme_support: 5; - unsigned int pme_poll: 1; - unsigned int pinned: 1; - unsigned int config_rrs_sv: 1; - unsigned int imm_ready: 1; - unsigned int d1_support: 1; - unsigned int d2_support: 1; - unsigned int no_d1d2: 1; - unsigned int no_d3cold: 1; - unsigned int bridge_d3: 1; - unsigned int d3cold_allowed: 1; - unsigned int mmio_always_on: 1; - unsigned int wakeup_prepared: 1; - unsigned int skip_bus_pm: 1; - unsigned int ignore_hotplug: 1; - unsigned int hotplug_user_indicators: 1; - unsigned int clear_retrain_link: 1; - unsigned int d3hot_delay; - unsigned int d3cold_delay; - u16 l1ss; - struct pcie_link_state *link_state; - unsigned int ltr_path: 1; - unsigned int pasid_no_tlp: 1; - unsigned int eetlp_prefix_path: 1; - pci_channel_state_t error_state; - struct device dev; - int cfg_size; - unsigned int irq; - struct resource resource[11]; - struct resource driver_exclusive_resource; - bool match_driver; - unsigned int transparent: 1; - unsigned int io_window: 1; - unsigned int pref_window: 1; - unsigned int pref_64_window: 1; - unsigned int multifunction: 1; - unsigned int is_busmaster: 1; - unsigned int no_msi: 1; - unsigned int no_64bit_msi: 1; - unsigned int block_cfg_access: 1; - unsigned int broken_parity_status: 1; - unsigned int irq_reroute_variant: 2; - unsigned int msi_enabled: 1; - unsigned int msix_enabled: 1; - unsigned int ari_enabled: 1; - unsigned int ats_enabled: 1; - unsigned int pasid_enabled: 1; - unsigned int pri_enabled: 1; - unsigned int is_managed: 1; - unsigned int is_msi_managed: 1; - unsigned int needs_freset: 1; - unsigned int state_saved: 1; - unsigned int is_physfn: 1; - unsigned int is_virtfn: 1; - unsigned int is_hotplug_bridge: 1; - unsigned int is_pciehp: 1; - unsigned int shpc_managed: 1; - unsigned int is_thunderbolt: 1; - unsigned int untrusted: 1; - unsigned int external_facing: 1; - unsigned int broken_intx_masking: 1; - unsigned int io_window_1k: 1; - unsigned int irq_managed: 1; - unsigned int non_compliant_bars: 1; - unsigned int is_probed: 1; - unsigned int link_active_reporting: 1; - unsigned int no_vf_scan: 1; - unsigned int no_command_memory: 1; - unsigned int rom_bar_overlap: 1; - unsigned int rom_attr_enabled: 1; - pci_dev_flags_t dev_flags; - atomic_t enable_cnt; - spinlock_t pcie_cap_lock; - u32 saved_config_space[16]; - struct hlist_head saved_cap_space; - struct bin_attribute *res_attr[11]; - struct bin_attribute *res_attr_wc[11]; - void *msix_base; - raw_spinlock_t msi_lock; - struct pci_vpd vpd; - u16 acs_cap; - u8 supported_speeds; - phys_addr_t rom; - size_t romlen; - const char *driver_override; - long unsigned int priv_flags; - u8 reset_methods[8]; -}; - -struct rcec_ea { - u8 nextbusn; - u8 lastbusn; - u32 bitmap; -}; - -struct pci_dynids { - spinlock_t lock; - struct list_head list; -}; - -struct pci_error_handlers; - -struct pci_driver { - const char *name; - const struct pci_device_id *id_table; - int (*probe)(struct pci_dev *, const struct pci_device_id *); - void (*remove)(struct pci_dev *); - int (*suspend)(struct pci_dev *, pm_message_t); - int (*resume)(struct pci_dev *); - void (*shutdown)(struct pci_dev *); - int (*sriov_configure)(struct pci_dev *, int); - int (*sriov_set_msix_vec_count)(struct pci_dev *, int); - u32 (*sriov_get_vf_total_msix)(struct pci_dev *); - const struct pci_error_handlers *err_handler; - const struct attribute_group **groups; - const struct attribute_group **dev_groups; - struct device_driver driver; - struct pci_dynids dynids; - bool driver_managed_dma; -}; - -struct pci_host_bridge { - struct device dev; - struct pci_bus *bus; - struct pci_ops *ops; - struct pci_ops *child_ops; - void *sysdata; - int busnr; - int domain_nr; - struct list_head windows; - struct list_head dma_ranges; - u8 (*swizzle_irq)(struct pci_dev *, u8 *); - int (*map_irq)(const struct pci_dev *, u8, u8); - void (*release_fn)(struct pci_host_bridge *); - void *release_data; - unsigned int ignore_reset_delay: 1; - unsigned int no_ext_tags: 1; - unsigned int no_inc_mrrs: 1; - unsigned int native_aer: 1; - unsigned int native_pcie_hotplug: 1; - unsigned int native_shpc_hotplug: 1; - unsigned int native_pme: 1; - unsigned int native_ltr: 1; - unsigned int native_dpc: 1; - unsigned int native_cxl_error: 1; - unsigned int preserve_config: 1; - unsigned int size_windows: 1; - unsigned int msi_domain: 1; - resource_size_t (*align_resource)(struct pci_dev *, const struct resource *, resource_size_t, resource_size_t, resource_size_t); - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long unsigned int private[0]; -}; - -struct pci_ops { - int (*add_bus)(struct pci_bus *); - void (*remove_bus)(struct pci_bus *); - void * (*map_bus)(struct pci_bus *, unsigned int, int); - int (*read)(struct pci_bus *, unsigned int, int, int, u32 *); - int (*write)(struct pci_bus *, unsigned int, int, int, u32); -}; - -typedef unsigned int pci_ers_result_t; - -struct pci_error_handlers { - pci_ers_result_t (*error_detected)(struct pci_dev *, pci_channel_state_t); - pci_ers_result_t (*mmio_enabled)(struct pci_dev *); - pci_ers_result_t (*slot_reset)(struct pci_dev *); - void (*reset_prepare)(struct pci_dev *); - void (*reset_done)(struct pci_dev *); - void (*resume)(struct pci_dev *); - void (*cor_error_detected)(struct pci_dev *); -}; - -typedef long unsigned int irq_hw_number_t; - -struct msi_desc; - -struct irq_common_data { - unsigned int state_use_accessors; - void *handler_data; - struct msi_desc *msi_desc; - cpumask_var_t affinity; - cpumask_var_t effective_affinity; - unsigned int ipi_offset; -}; - -struct arch_msi_msg_addr_lo { - u32 address_lo; -}; - -typedef struct arch_msi_msg_addr_lo arch_msi_msg_addr_lo_t; - -struct arch_msi_msg_addr_hi { - u32 address_hi; -}; - -typedef struct arch_msi_msg_addr_hi arch_msi_msg_addr_hi_t; - -struct arch_msi_msg_data { - u32 data; -}; - -typedef struct arch_msi_msg_data arch_msi_msg_data_t; - -struct msi_msg { - union { - u32 address_lo; - arch_msi_msg_addr_lo_t arch_addr_lo; - }; - union { - u32 address_hi; - arch_msi_msg_addr_hi_t arch_addr_hi; - }; - union { - u32 data; - arch_msi_msg_data_t arch_data; - }; -}; - -struct pci_msi_desc { - union { - u32 msi_mask; - u32 msix_ctrl; - }; - struct { - u8 is_msix: 1; - u8 multiple: 3; - u8 multi_cap: 3; - u8 can_mask: 1; - u8 is_64: 1; - u8 is_virtual: 1; - unsigned int default_irq; - } msi_attrib; - union { - u8 mask_pos; - void *mask_base; - }; -}; - -union msi_domain_cookie { - u64 value; - void *ptr; - void *iobase; -}; - -union msi_instance_cookie { - u64 value; - void *ptr; -}; - -struct msi_desc_data { - union msi_domain_cookie dcookie; - union msi_instance_cookie icookie; -}; - -struct irq_affinity_desc; - -struct device_attribute; - -struct msi_desc { - unsigned int irq; - unsigned int nvec_used; - struct device *dev; - struct msi_msg msg; - struct irq_affinity_desc *affinity; - struct device_attribute *sysfs_attrs; - void (*write_msi_msg)(struct msi_desc *, void *); - void *write_msi_msg_data; - u16 msi_index; - union { - struct pci_msi_desc pci; - struct msi_desc_data data; - }; -}; - -struct irq_chip; - -struct irq_data { - u32 mask; - unsigned int irq; - irq_hw_number_t hwirq; - struct irq_common_data *common; - struct irq_chip *chip; - struct irq_domain *domain; - struct irq_data *parent_data; - void *chip_data; -}; - -enum irqchip_irq_state { - IRQCHIP_STATE_PENDING = 0, - IRQCHIP_STATE_ACTIVE = 1, - IRQCHIP_STATE_MASKED = 2, - IRQCHIP_STATE_LINE_LEVEL = 3, -}; - -struct irq_chip { - const char *name; - unsigned int (*irq_startup)(struct irq_data *); - void (*irq_shutdown)(struct irq_data *); - void (*irq_enable)(struct irq_data *); - void (*irq_disable)(struct irq_data *); - void (*irq_ack)(struct irq_data *); - void (*irq_mask)(struct irq_data *); - void (*irq_mask_ack)(struct irq_data *); - void (*irq_unmask)(struct irq_data *); - void (*irq_eoi)(struct irq_data *); - int (*irq_set_affinity)(struct irq_data *, const struct cpumask *, bool); - int (*irq_retrigger)(struct irq_data *); - int (*irq_set_type)(struct irq_data *, unsigned int); - int (*irq_set_wake)(struct irq_data *, unsigned int); - void (*irq_bus_lock)(struct irq_data *); - void (*irq_bus_sync_unlock)(struct irq_data *); - void (*irq_suspend)(struct irq_data *); - void (*irq_resume)(struct irq_data *); - void (*irq_pm_shutdown)(struct irq_data *); - void (*irq_calc_mask)(struct irq_data *); - void (*irq_print_chip)(struct irq_data *, struct seq_file *); - int (*irq_request_resources)(struct irq_data *); - void (*irq_release_resources)(struct irq_data *); - void (*irq_compose_msi_msg)(struct irq_data *, struct msi_msg *); - void (*irq_write_msi_msg)(struct irq_data *, struct msi_msg *); - int (*irq_get_irqchip_state)(struct irq_data *, enum irqchip_irq_state, bool *); - int (*irq_set_irqchip_state)(struct irq_data *, enum irqchip_irq_state, bool); - int (*irq_set_vcpu_affinity)(struct irq_data *, void *); - void (*ipi_send_single)(struct irq_data *, unsigned int); - void (*ipi_send_mask)(struct irq_data *, const struct cpumask *); - int (*irq_nmi_setup)(struct irq_data *); - void (*irq_nmi_teardown)(struct irq_data *); - long unsigned int flags; -}; - -struct device_attribute { - struct attribute attr; - ssize_t (*show)(struct device *, struct device_attribute *, char *); - ssize_t (*store)(struct device *, struct device_attribute *, const char *, size_t); -}; - -struct irq_affinity { - unsigned int pre_vectors; - unsigned int post_vectors; - unsigned int nr_sets; - unsigned int set_size[4]; - void (*calc_sets)(struct irq_affinity *, unsigned int); - void *priv; -}; - -struct irq_affinity_desc { - struct cpumask mask; - unsigned int is_managed: 1; -}; - -enum msi_domain_ids { - MSI_DEFAULT_DOMAIN = 0, - MSI_MAX_DEVICE_IRQDOMAINS = 1, -}; - -struct msi_map { - int index; - int virq; -}; - -struct msix_entry { - u32 vector; - u16 entry; -}; - -enum { - MSI_FLAG_USE_DEF_DOM_OPS = 1, - MSI_FLAG_USE_DEF_CHIP_OPS = 2, - MSI_FLAG_ACTIVATE_EARLY = 4, - MSI_FLAG_MUST_REACTIVATE = 8, - MSI_FLAG_DEV_SYSFS = 16, - MSI_FLAG_ALLOC_SIMPLE_MSI_DESCS = 32, - MSI_FLAG_FREE_MSI_DESCS = 64, - MSI_FLAG_USE_DEV_FWNODE = 128, - MSI_FLAG_PARENT_PM_DEV = 256, - MSI_FLAG_PCI_MSI_MASK_PARENT = 512, - MSI_GENERIC_FLAGS_MASK = 65535, - MSI_DOMAIN_FLAGS_MASK = 4294901760, - MSI_FLAG_MULTI_PCI_MSI = 65536, - MSI_FLAG_PCI_MSIX = 131072, - MSI_FLAG_LEVEL_CAPABLE = 262144, - MSI_FLAG_MSIX_CONTIGUOUS = 524288, - MSI_FLAG_PCI_MSIX_ALLOC_DYN = 1048576, - MSI_FLAG_NO_AFFINITY = 2097152, - MSI_FLAG_NO_MASK = 4194304, -}; - -enum support_mode { - ALLOW_LEGACY = 0, - DENY_LEGACY = 1, -}; - -struct pcie_link_state { - struct pci_dev *pdev; - struct pci_dev *downstream; - struct pcie_link_state *root; - struct pcie_link_state *parent; - struct list_head sibling; - u32 aspm_support: 7; - u32 aspm_enabled: 7; - u32 aspm_capable: 7; - u32 aspm_default: 7; - int: 4; - u32 aspm_disable: 7; - u32 clkpm_capable: 1; - u32 clkpm_enabled: 1; - u32 clkpm_default: 1; - u32 clkpm_disable: 1; -}; - -struct pci_cap_saved_data { - u16 cap_nr; - bool cap_extended; - unsigned int size; - u32 data[0]; -}; - -struct pci_cap_saved_state { - struct hlist_node next; - struct pci_cap_saved_data cap; -}; - -struct clk_hw; - -struct clk_lookup { - struct list_head node; - const char *dev_id; - const char *con_id; - struct clk *clk; - struct clk_hw *clk_hw; -}; - -struct clk_core; - -struct clk_init_data; - -struct clk_hw { - struct clk_core *core; - struct clk *clk; - const struct clk_init_data *init; -}; - -struct clk_rate_request { - struct clk_core *core; - long unsigned int rate; - long unsigned int min_rate; - long unsigned int max_rate; - long unsigned int best_parent_rate; - struct clk_hw *best_parent_hw; -}; - -struct clk_duty { - unsigned int num; - unsigned int den; -}; - -struct clk_ops { - int (*prepare)(struct clk_hw *); - void (*unprepare)(struct clk_hw *); - int (*is_prepared)(struct clk_hw *); - void (*unprepare_unused)(struct clk_hw *); - int (*enable)(struct clk_hw *); - void (*disable)(struct clk_hw *); - int (*is_enabled)(struct clk_hw *); - void (*disable_unused)(struct clk_hw *); - int (*save_context)(struct clk_hw *); - void (*restore_context)(struct clk_hw *); - long unsigned int (*recalc_rate)(struct clk_hw *, long unsigned int); - long int (*round_rate)(struct clk_hw *, long unsigned int, long unsigned int *); - int (*determine_rate)(struct clk_hw *, struct clk_rate_request *); - int (*set_parent)(struct clk_hw *, u8); - u8 (*get_parent)(struct clk_hw *); - int (*set_rate)(struct clk_hw *, long unsigned int, long unsigned int); - int (*set_rate_and_parent)(struct clk_hw *, long unsigned int, long unsigned int, u8); - long unsigned int (*recalc_accuracy)(struct clk_hw *, long unsigned int); - int (*get_phase)(struct clk_hw *); - int (*set_phase)(struct clk_hw *, int); - int (*get_duty_cycle)(struct clk_hw *, struct clk_duty *); - int (*set_duty_cycle)(struct clk_hw *, struct clk_duty *); - int (*init)(struct clk_hw *); - void (*terminate)(struct clk_hw *); - void (*debug_init)(struct clk_hw *, struct dentry *); -}; - -struct clk_parent_data { - const struct clk_hw *hw; - const char *fw_name; - const char *name; - int index; -}; - -struct clk_init_data { - const char *name; - const struct clk_ops *ops; - const char * const *parent_names; - const struct clk_parent_data *parent_data; - const struct clk_hw **parent_hws; - u8 num_parents; - long unsigned int flags; -}; - -struct clk_lookup_alloc { - struct clk_lookup cl; - char dev_id[24]; - char con_id[16]; -}; - -struct virtio_device_id { - __u32 device; - __u32 vendor; -}; - -enum dma_data_direction { - DMA_BIDIRECTIONAL = 0, - DMA_TO_DEVICE = 1, - DMA_FROM_DEVICE = 2, - DMA_NONE = 3, -}; - -struct virtio_device; - -struct virtqueue { - struct list_head list; - void (*callback)(struct virtqueue *); - const char *name; - struct virtio_device *vdev; - unsigned int index; - unsigned int num_free; - unsigned int num_max; - bool reset; - void *priv; -}; - -struct vringh_config_ops; - -struct virtio_config_ops; - -struct virtio_device { - int index; - bool failed; - bool config_core_enabled; - bool config_driver_disabled; - bool config_change_pending; - spinlock_t config_lock; - spinlock_t vqs_list_lock; - struct device dev; - struct virtio_device_id id; - const struct virtio_config_ops *config; - const struct vringh_config_ops *vringh_config; - struct list_head vqs; - u64 features; - void *priv; -}; - -struct virtqueue_info; - -struct virtio_shm_region; - -struct virtio_config_ops { - void (*get)(struct virtio_device *, unsigned int, void *, unsigned int); - void (*set)(struct virtio_device *, unsigned int, const void *, unsigned int); - u32 (*generation)(struct virtio_device *); - u8 (*get_status)(struct virtio_device *); - void (*set_status)(struct virtio_device *, u8); - void (*reset)(struct virtio_device *); - int (*find_vqs)(struct virtio_device *, unsigned int, struct virtqueue **, struct virtqueue_info *, struct irq_affinity *); - void (*del_vqs)(struct virtio_device *); - void (*synchronize_cbs)(struct virtio_device *); - u64 (*get_features)(struct virtio_device *); - int (*finalize_features)(struct virtio_device *); - const char * (*bus_name)(struct virtio_device *); - int (*set_vq_affinity)(struct virtqueue *, const struct cpumask *); - const struct cpumask * (*get_vq_affinity)(struct virtio_device *, int); - bool (*get_shm_region)(struct virtio_device *, struct virtio_shm_region *, u8); - int (*disable_vq_and_reset)(struct virtqueue *); - int (*enable_vq_after_reset)(struct virtqueue *); -}; - -enum irqreturn { - IRQ_NONE = 0, - IRQ_HANDLED = 1, - IRQ_WAKE_THREAD = 2, -}; - -typedef enum irqreturn irqreturn_t; - -typedef __u16 __virtio16; - -typedef __u32 __virtio32; - -typedef __u64 __virtio64; - -struct vring_desc { - __virtio64 addr; - __virtio32 len; - __virtio16 flags; - __virtio16 next; -}; - -struct vring_avail { - __virtio16 flags; - __virtio16 idx; - __virtio16 ring[0]; -}; - -struct vring_used_elem { - __virtio32 id; - __virtio32 len; -}; - -typedef struct vring_used_elem vring_used_elem_t; - -struct vring_used { - __virtio16 flags; - __virtio16 idx; - vring_used_elem_t ring[0]; -}; - -typedef struct vring_desc vring_desc_t; - -typedef struct vring_avail vring_avail_t; - -typedef struct vring_used vring_used_t; - -struct vring { - unsigned int num; - vring_desc_t *desc; - vring_avail_t *avail; - vring_used_t *used; -}; - -struct vring_packed_desc_event { - __le16 off_wrap; - __le16 flags; -}; - -struct vring_packed_desc { - __le64 addr; - __le32 len; - __le16 id; - __le16 flags; -}; - -struct virtio_shm_region { - u64 addr; - u64 len; -}; - -typedef void vq_callback_t(struct virtqueue *); - -struct virtqueue_info { - const char *name; - vq_callback_t *callback; - bool ctx; -}; - -enum xen_domain_type { - XEN_NATIVE = 0, - XEN_PV_DOMAIN = 1, - XEN_HVM_DOMAIN = 2, -}; - -struct vring_desc_state_split { - void *data; - struct vring_desc *indir_desc; -}; - -struct vring_desc_state_packed { - void *data; - struct vring_packed_desc *indir_desc; - u16 num; - u16 last; -}; - -struct vring_desc_extra { - dma_addr_t addr; - u32 len; - u16 flags; - u16 next; -}; - -struct vring_virtqueue_split { - struct vring vring; - u16 avail_flags_shadow; - u16 avail_idx_shadow; - struct vring_desc_state_split *desc_state; - struct vring_desc_extra *desc_extra; - dma_addr_t queue_dma_addr; - size_t queue_size_in_bytes; - u32 vring_align; - bool may_reduce_num; -}; - -struct vring_virtqueue_packed { - struct { - unsigned int num; - struct vring_packed_desc *desc; - struct vring_packed_desc_event *driver; - struct vring_packed_desc_event *device; - } vring; - bool avail_wrap_counter; - u16 avail_used_flags; - u16 next_avail_idx; - u16 event_flags_shadow; - struct vring_desc_state_packed *desc_state; - struct vring_desc_extra *desc_extra; - dma_addr_t ring_dma_addr; - dma_addr_t driver_event_dma_addr; - dma_addr_t device_event_dma_addr; - size_t ring_size_in_bytes; - size_t event_size_in_bytes; -}; - -struct vring_virtqueue { - struct virtqueue vq; - bool packed_ring; - bool use_dma_api; - bool weak_barriers; - bool broken; - bool indirect; - bool event; - bool premapped; - bool do_unmap; - unsigned int free_head; - unsigned int num_added; - u16 last_used_idx; - bool event_triggered; - union { - struct vring_virtqueue_split split; - struct vring_virtqueue_packed packed; - }; - bool (*notify)(struct virtqueue *); - bool we_own_ring; - struct device *dma_dev; -}; - -struct serial_icounter_struct { - int cts; - int dsr; - int rng; - int dcd; - int rx; - int tx; - int frame; - int overrun; - int parity; - int brk; - int buf_overrun; - int reserved[9]; -}; - -struct serial_struct { - int type; - int line; - unsigned int port; - int irq; - int flags; - int xmit_fifo_size; - int custom_divisor; - int baud_base; - short unsigned int close_delay; - char io_type; - char reserved_char[1]; - int hub6; - short unsigned int closing_wait; - short unsigned int closing_wait2; - unsigned char *iomem_base; - short unsigned int iomem_reg_shift; - unsigned int port_high; - long unsigned int iomap_base; -}; - -struct serial_rs485 { - __u32 flags; - __u32 delay_rts_before_send; - __u32 delay_rts_after_send; - union { - __u32 padding[5]; - struct { - __u8 addr_recv; - __u8 addr_dest; - __u8 padding0[2]; - __u32 padding1[4]; - }; - }; -}; - -struct serial_iso7816 { - __u32 flags; - __u32 tg; - __u32 sc_fi; - __u32 sc_di; - __u32 clk; - __u32 reserved[5]; -}; - -struct uart_port; - -struct uart_ops { - unsigned int (*tx_empty)(struct uart_port *); - void (*set_mctrl)(struct uart_port *, unsigned int); - unsigned int (*get_mctrl)(struct uart_port *); - void (*stop_tx)(struct uart_port *); - void (*start_tx)(struct uart_port *); - void (*throttle)(struct uart_port *); - void (*unthrottle)(struct uart_port *); - void (*send_xchar)(struct uart_port *, char); - void (*stop_rx)(struct uart_port *); - void (*start_rx)(struct uart_port *); - void (*enable_ms)(struct uart_port *); - void (*break_ctl)(struct uart_port *, int); - int (*startup)(struct uart_port *); - void (*shutdown)(struct uart_port *); - void (*flush_buffer)(struct uart_port *); - void (*set_termios)(struct uart_port *, struct ktermios *, const struct ktermios *); - void (*set_ldisc)(struct uart_port *, struct ktermios *); - void (*pm)(struct uart_port *, unsigned int, unsigned int); - const char * (*type)(struct uart_port *); - void (*release_port)(struct uart_port *); - int (*request_port)(struct uart_port *); - void (*config_port)(struct uart_port *, int); - int (*verify_port)(struct uart_port *, struct serial_struct *); - int (*ioctl)(struct uart_port *, unsigned int, long unsigned int); -}; - -struct uart_icount { - __u32 cts; - __u32 dsr; - __u32 rng; - __u32 dcd; - __u32 rx; - __u32 tx; - __u32 frame; - __u32 overrun; - __u32 parity; - __u32 brk; - __u32 buf_overrun; -}; - -typedef u64 upf_t; - -typedef unsigned int upstat_t; - -struct uart_state; - -struct serial_port_device; - -struct gpio_desc; - -struct uart_port { - spinlock_t lock; - long unsigned int iobase; - unsigned char *membase; - unsigned int (*serial_in)(struct uart_port *, int); - void (*serial_out)(struct uart_port *, int, int); - void (*set_termios)(struct uart_port *, struct ktermios *, const struct ktermios *); - void (*set_ldisc)(struct uart_port *, struct ktermios *); - unsigned int (*get_mctrl)(struct uart_port *); - void (*set_mctrl)(struct uart_port *, unsigned int); - unsigned int (*get_divisor)(struct uart_port *, unsigned int, unsigned int *); - void (*set_divisor)(struct uart_port *, unsigned int, unsigned int, unsigned int); - int (*startup)(struct uart_port *); - void (*shutdown)(struct uart_port *); - void (*throttle)(struct uart_port *); - void (*unthrottle)(struct uart_port *); - int (*handle_irq)(struct uart_port *); - void (*pm)(struct uart_port *, unsigned int, unsigned int); - void (*handle_break)(struct uart_port *); - int (*rs485_config)(struct uart_port *, struct ktermios *, struct serial_rs485 *); - int (*iso7816_config)(struct uart_port *, struct serial_iso7816 *); - unsigned int ctrl_id; - unsigned int port_id; - unsigned int irq; - long unsigned int irqflags; - unsigned int uartclk; - unsigned int fifosize; - unsigned char x_char; - unsigned char regshift; - unsigned char iotype; - unsigned char quirks; - unsigned int read_status_mask; - unsigned int ignore_status_mask; - struct uart_state *state; - struct uart_icount icount; - struct console *cons; - upf_t flags; - upstat_t status; - bool hw_stopped; - unsigned int mctrl; - unsigned int frame_time; - unsigned int type; - const struct uart_ops *ops; - unsigned int custom_divisor; - unsigned int line; - unsigned int minor; - resource_size_t mapbase; - resource_size_t mapsize; - struct device *dev; - struct serial_port_device *port_dev; - long unsigned int sysrq; - u8 sysrq_ch; - unsigned char has_sysrq; - unsigned char sysrq_seq; - unsigned char hub6; - unsigned char suspended; - unsigned char console_reinit; - const char *name; - struct attribute_group *attr_group; - const struct attribute_group **tty_groups; - struct serial_rs485 rs485; - struct serial_rs485 rs485_supported; - struct gpio_desc *rs485_term_gpio; - struct gpio_desc *rs485_rx_during_tx_gpio; - struct serial_iso7816 iso7816; - void *private_data; -}; - -enum uart_pm_state { - UART_PM_STATE_ON = 0, - UART_PM_STATE_OFF = 3, - UART_PM_STATE_UNDEFINED = 4, -}; - -struct uart_state { - struct tty_port port; - enum uart_pm_state pm_state; - atomic_t refcount; - wait_queue_head_t remove_wait; - struct uart_port *uart_port; -}; - -struct serial_port_device { - struct device dev; - struct uart_port *port; - unsigned int tx_enabled: 1; -}; - -struct uart_driver { - struct module *owner; - const char *driver_name; - const char *dev_name; - int major; - int minor; - int nr; - struct console *cons; - struct uart_state *state; - struct tty_driver *tty_driver; -}; - -struct serial_ctrl_device { - struct device dev; - struct ida port_ida; -}; - -struct earlycon_device { - struct console *con; - struct uart_port port; - char options[32]; - unsigned int baud; -}; - -struct earlycon_id { - char name[15]; - char name_term; - char compatible[128]; - int (*setup)(struct earlycon_device *, const char *); -}; - -struct serdev_device; - -struct serdev_device_ops { - size_t (*receive_buf)(struct serdev_device *, const u8 *, size_t); - void (*write_wakeup)(struct serdev_device *); -}; - -struct serdev_controller; - -struct serdev_device { - struct device dev; - int nr; - struct serdev_controller *ctrl; - const struct serdev_device_ops *ops; - struct completion write_comp; - struct mutex write_lock; -}; - -struct serdev_controller_ops; - -struct serdev_controller { - struct device dev; - struct device *host; - unsigned int nr; - struct serdev_device *serdev; - const struct serdev_controller_ops *ops; -}; - -struct serdev_device_driver { - struct device_driver driver; - int (*probe)(struct serdev_device *); - void (*remove)(struct serdev_device *); -}; - -enum serdev_parity { - SERDEV_PARITY_NONE = 0, - SERDEV_PARITY_EVEN = 1, - SERDEV_PARITY_ODD = 2, -}; - -struct serdev_controller_ops { - ssize_t (*write_buf)(struct serdev_controller *, const u8 *, size_t); - void (*write_flush)(struct serdev_controller *); - int (*write_room)(struct serdev_controller *); - int (*open)(struct serdev_controller *); - void (*close)(struct serdev_controller *); - void (*set_flow_control)(struct serdev_controller *, bool); - int (*set_parity)(struct serdev_controller *, enum serdev_parity); - unsigned int (*set_baudrate)(struct serdev_controller *, unsigned int); - void (*wait_until_sent)(struct serdev_controller *, long int); - int (*get_tiocm)(struct serdev_controller *); - int (*set_tiocm)(struct serdev_controller *, unsigned int, unsigned int); - int (*break_ctl)(struct serdev_controller *, unsigned int); -}; - -struct hwrng { - const char *name; - int (*init)(struct hwrng *); - void (*cleanup)(struct hwrng *); - int (*data_present)(struct hwrng *, int); - int (*data_read)(struct hwrng *, u32 *); - int (*read)(struct hwrng *, void *, size_t, bool); - long unsigned int priv; - short unsigned int quality; - struct list_head list; - struct kref ref; - struct completion cleanup_done; - struct completion dying; -}; - -struct arm_smccc_res { - long unsigned int a0; - long unsigned int a1; - long unsigned int a2; - long unsigned int a3; -}; - -struct arm_smccc_quirk { - int id; - union { - long unsigned int a6; - } state; -}; - -struct cn10k_rng { - void *reg_base; - struct hwrng ops; - struct pci_dev *pdev; - bool extended_trng_regs; -}; - -typedef u32 depot_stack_handle_t; - -struct ww_acquire_ctx; - -struct ww_mutex { - struct mutex base; - struct ww_acquire_ctx *ctx; -}; - -struct ww_acquire_ctx { - struct task_struct *task; - long unsigned int stamp; - unsigned int acquired; - short unsigned int wounded; - short unsigned int is_wait_die; -}; - -struct drm_modeset_lock; - -struct drm_modeset_acquire_ctx { - struct ww_acquire_ctx ww_ctx; - struct drm_modeset_lock *contended; - depot_stack_handle_t stack_depot; - struct list_head locked; - bool trylock_only; - bool interruptible; -}; - -struct drm_modeset_lock { - struct ww_mutex mutex; - struct list_head head; -}; - -struct _ddebug { - const char *modname; - const char *function; - const char *filename; - const char *format; - unsigned int lineno: 18; - unsigned int class_id: 6; - unsigned int flags: 8; - union { - struct static_key_true dd_key_true; - struct static_key_false dd_key_false; - } key; -}; - -struct drm_object_properties; - -struct drm_mode_object { - uint32_t id; - uint32_t type; - struct drm_object_properties *properties; - struct kref refcount; - void (*free_cb)(struct kref *); -}; - -struct drm_property; - -struct drm_object_properties { - int count; - struct drm_property *properties[64]; - uint64_t values[64]; -}; - -struct drm_device; - -struct drm_property { - struct list_head head; - struct drm_mode_object base; - uint32_t flags; - char name[32]; - uint32_t num_values; - uint64_t *values; - struct drm_device *dev; - struct list_head enum_list; -}; - -enum hdmi_infoframe_type { - HDMI_INFOFRAME_TYPE_VENDOR = 129, - HDMI_INFOFRAME_TYPE_AVI = 130, - HDMI_INFOFRAME_TYPE_SPD = 131, - HDMI_INFOFRAME_TYPE_AUDIO = 132, - HDMI_INFOFRAME_TYPE_DRM = 135, -}; - -struct hdmi_any_infoframe { - enum hdmi_infoframe_type type; - unsigned char version; - unsigned char length; -}; - -enum hdmi_colorspace { - HDMI_COLORSPACE_RGB = 0, - HDMI_COLORSPACE_YUV422 = 1, - HDMI_COLORSPACE_YUV444 = 2, - HDMI_COLORSPACE_YUV420 = 3, - HDMI_COLORSPACE_RESERVED4 = 4, - HDMI_COLORSPACE_RESERVED5 = 5, - HDMI_COLORSPACE_RESERVED6 = 6, - HDMI_COLORSPACE_IDO_DEFINED = 7, -}; - -enum hdmi_scan_mode { - HDMI_SCAN_MODE_NONE = 0, - HDMI_SCAN_MODE_OVERSCAN = 1, - HDMI_SCAN_MODE_UNDERSCAN = 2, - HDMI_SCAN_MODE_RESERVED = 3, -}; - -enum hdmi_colorimetry { - HDMI_COLORIMETRY_NONE = 0, - HDMI_COLORIMETRY_ITU_601 = 1, - HDMI_COLORIMETRY_ITU_709 = 2, - HDMI_COLORIMETRY_EXTENDED = 3, -}; - -enum hdmi_picture_aspect { - HDMI_PICTURE_ASPECT_NONE = 0, - HDMI_PICTURE_ASPECT_4_3 = 1, - HDMI_PICTURE_ASPECT_16_9 = 2, - HDMI_PICTURE_ASPECT_64_27 = 3, - HDMI_PICTURE_ASPECT_256_135 = 4, - HDMI_PICTURE_ASPECT_RESERVED = 5, -}; - -enum hdmi_active_aspect { - HDMI_ACTIVE_ASPECT_16_9_TOP = 2, - HDMI_ACTIVE_ASPECT_14_9_TOP = 3, - HDMI_ACTIVE_ASPECT_16_9_CENTER = 4, - HDMI_ACTIVE_ASPECT_PICTURE = 8, - HDMI_ACTIVE_ASPECT_4_3 = 9, - HDMI_ACTIVE_ASPECT_16_9 = 10, - HDMI_ACTIVE_ASPECT_14_9 = 11, - HDMI_ACTIVE_ASPECT_4_3_SP_14_9 = 13, - HDMI_ACTIVE_ASPECT_16_9_SP_14_9 = 14, - HDMI_ACTIVE_ASPECT_16_9_SP_4_3 = 15, -}; - -enum hdmi_extended_colorimetry { - HDMI_EXTENDED_COLORIMETRY_XV_YCC_601 = 0, - HDMI_EXTENDED_COLORIMETRY_XV_YCC_709 = 1, - HDMI_EXTENDED_COLORIMETRY_S_YCC_601 = 2, - HDMI_EXTENDED_COLORIMETRY_OPYCC_601 = 3, - HDMI_EXTENDED_COLORIMETRY_OPRGB = 4, - HDMI_EXTENDED_COLORIMETRY_BT2020_CONST_LUM = 5, - HDMI_EXTENDED_COLORIMETRY_BT2020 = 6, - HDMI_EXTENDED_COLORIMETRY_RESERVED = 7, -}; - -enum hdmi_quantization_range { - HDMI_QUANTIZATION_RANGE_DEFAULT = 0, - HDMI_QUANTIZATION_RANGE_LIMITED = 1, - HDMI_QUANTIZATION_RANGE_FULL = 2, - HDMI_QUANTIZATION_RANGE_RESERVED = 3, -}; - -enum hdmi_nups { - HDMI_NUPS_UNKNOWN = 0, - HDMI_NUPS_HORIZONTAL = 1, - HDMI_NUPS_VERTICAL = 2, - HDMI_NUPS_BOTH = 3, -}; - -enum hdmi_ycc_quantization_range { - HDMI_YCC_QUANTIZATION_RANGE_LIMITED = 0, - HDMI_YCC_QUANTIZATION_RANGE_FULL = 1, -}; - -enum hdmi_content_type { - HDMI_CONTENT_TYPE_GRAPHICS = 0, - HDMI_CONTENT_TYPE_PHOTO = 1, - HDMI_CONTENT_TYPE_CINEMA = 2, - HDMI_CONTENT_TYPE_GAME = 3, -}; - -enum hdmi_metadata_type { - HDMI_STATIC_METADATA_TYPE1 = 0, -}; - -enum hdmi_eotf { - HDMI_EOTF_TRADITIONAL_GAMMA_SDR = 0, - HDMI_EOTF_TRADITIONAL_GAMMA_HDR = 1, - HDMI_EOTF_SMPTE_ST2084 = 2, - HDMI_EOTF_BT_2100_HLG = 3, -}; - -struct hdmi_avi_infoframe { - enum hdmi_infoframe_type type; - unsigned char version; - unsigned char length; - bool itc; - unsigned char pixel_repeat; - enum hdmi_colorspace colorspace; - enum hdmi_scan_mode scan_mode; - enum hdmi_colorimetry colorimetry; - enum hdmi_picture_aspect picture_aspect; - enum hdmi_active_aspect active_aspect; - enum hdmi_extended_colorimetry extended_colorimetry; - enum hdmi_quantization_range quantization_range; - enum hdmi_nups nups; - unsigned char video_code; - enum hdmi_ycc_quantization_range ycc_quantization_range; - enum hdmi_content_type content_type; - short unsigned int top_bar; - short unsigned int bottom_bar; - short unsigned int left_bar; - short unsigned int right_bar; -}; - -struct hdmi_drm_infoframe { - enum hdmi_infoframe_type type; - unsigned char version; - unsigned char length; - enum hdmi_eotf eotf; - enum hdmi_metadata_type metadata_type; - struct { - u16 x; - u16 y; - } display_primaries[3]; - struct { - u16 x; - u16 y; - } white_point; - u16 max_display_mastering_luminance; - u16 min_display_mastering_luminance; - u16 max_cll; - u16 max_fall; -}; - -enum hdmi_spd_sdi { - HDMI_SPD_SDI_UNKNOWN = 0, - HDMI_SPD_SDI_DSTB = 1, - HDMI_SPD_SDI_DVDP = 2, - HDMI_SPD_SDI_DVHS = 3, - HDMI_SPD_SDI_HDDVR = 4, - HDMI_SPD_SDI_DVC = 5, - HDMI_SPD_SDI_DSC = 6, - HDMI_SPD_SDI_VCD = 7, - HDMI_SPD_SDI_GAME = 8, - HDMI_SPD_SDI_PC = 9, - HDMI_SPD_SDI_BD = 10, - HDMI_SPD_SDI_SACD = 11, - HDMI_SPD_SDI_HDDVD = 12, - HDMI_SPD_SDI_PMP = 13, -}; - -struct hdmi_spd_infoframe { - enum hdmi_infoframe_type type; - unsigned char version; - unsigned char length; - char vendor[8]; - char product[16]; - enum hdmi_spd_sdi sdi; -}; - -enum hdmi_audio_coding_type { - HDMI_AUDIO_CODING_TYPE_STREAM = 0, - HDMI_AUDIO_CODING_TYPE_PCM = 1, - HDMI_AUDIO_CODING_TYPE_AC3 = 2, - HDMI_AUDIO_CODING_TYPE_MPEG1 = 3, - HDMI_AUDIO_CODING_TYPE_MP3 = 4, - HDMI_AUDIO_CODING_TYPE_MPEG2 = 5, - HDMI_AUDIO_CODING_TYPE_AAC_LC = 6, - HDMI_AUDIO_CODING_TYPE_DTS = 7, - HDMI_AUDIO_CODING_TYPE_ATRAC = 8, - HDMI_AUDIO_CODING_TYPE_DSD = 9, - HDMI_AUDIO_CODING_TYPE_EAC3 = 10, - HDMI_AUDIO_CODING_TYPE_DTS_HD = 11, - HDMI_AUDIO_CODING_TYPE_MLP = 12, - HDMI_AUDIO_CODING_TYPE_DST = 13, - HDMI_AUDIO_CODING_TYPE_WMA_PRO = 14, - HDMI_AUDIO_CODING_TYPE_CXT = 15, -}; - -enum hdmi_audio_sample_size { - HDMI_AUDIO_SAMPLE_SIZE_STREAM = 0, - HDMI_AUDIO_SAMPLE_SIZE_16 = 1, - HDMI_AUDIO_SAMPLE_SIZE_20 = 2, - HDMI_AUDIO_SAMPLE_SIZE_24 = 3, -}; - -enum hdmi_audio_sample_frequency { - HDMI_AUDIO_SAMPLE_FREQUENCY_STREAM = 0, - HDMI_AUDIO_SAMPLE_FREQUENCY_32000 = 1, - HDMI_AUDIO_SAMPLE_FREQUENCY_44100 = 2, - HDMI_AUDIO_SAMPLE_FREQUENCY_48000 = 3, - HDMI_AUDIO_SAMPLE_FREQUENCY_88200 = 4, - HDMI_AUDIO_SAMPLE_FREQUENCY_96000 = 5, - HDMI_AUDIO_SAMPLE_FREQUENCY_176400 = 6, - HDMI_AUDIO_SAMPLE_FREQUENCY_192000 = 7, -}; - -enum hdmi_audio_coding_type_ext { - HDMI_AUDIO_CODING_TYPE_EXT_CT = 0, - HDMI_AUDIO_CODING_TYPE_EXT_HE_AAC = 1, - HDMI_AUDIO_CODING_TYPE_EXT_HE_AAC_V2 = 2, - HDMI_AUDIO_CODING_TYPE_EXT_MPEG_SURROUND = 3, - HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_HE_AAC = 4, - HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_HE_AAC_V2 = 5, - HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_AAC_LC = 6, - HDMI_AUDIO_CODING_TYPE_EXT_DRA = 7, - HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_HE_AAC_SURROUND = 8, - HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_AAC_LC_SURROUND = 10, -}; - -struct hdmi_audio_infoframe { - enum hdmi_infoframe_type type; - unsigned char version; - unsigned char length; - unsigned char channels; - enum hdmi_audio_coding_type coding_type; - enum hdmi_audio_sample_size sample_size; - enum hdmi_audio_sample_frequency sample_frequency; - enum hdmi_audio_coding_type_ext coding_type_ext; - unsigned char channel_allocation; - unsigned char level_shift_value; - bool downmix_inhibit; -}; - -enum hdmi_3d_structure { - HDMI_3D_STRUCTURE_INVALID = -1, - HDMI_3D_STRUCTURE_FRAME_PACKING = 0, - HDMI_3D_STRUCTURE_FIELD_ALTERNATIVE = 1, - HDMI_3D_STRUCTURE_LINE_ALTERNATIVE = 2, - HDMI_3D_STRUCTURE_SIDE_BY_SIDE_FULL = 3, - HDMI_3D_STRUCTURE_L_DEPTH = 4, - HDMI_3D_STRUCTURE_L_DEPTH_GFX_GFX_DEPTH = 5, - HDMI_3D_STRUCTURE_TOP_AND_BOTTOM = 6, - HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF = 8, -}; - -struct hdmi_vendor_infoframe { - enum hdmi_infoframe_type type; - unsigned char version; - unsigned char length; - unsigned int oui; - u8 vic; - enum hdmi_3d_structure s3d_struct; - unsigned int s3d_ext_data; -}; - -struct hdr_static_metadata { - __u8 eotf; - __u8 metadata_type; - __u16 max_cll; - __u16 max_fall; - __u16 min_cll; -}; - -struct hdr_sink_metadata { - __u32 metadata_type; - union { - struct hdr_static_metadata hdmi_type1; - }; -}; - -union hdmi_vendor_any_infoframe { - struct { - enum hdmi_infoframe_type type; - unsigned char version; - unsigned char length; - unsigned int oui; - } any; - struct hdmi_vendor_infoframe hdmi; -}; - -union hdmi_infoframe { - struct hdmi_any_infoframe any; - struct hdmi_avi_infoframe avi; - struct hdmi_spd_infoframe spd; - union hdmi_vendor_any_infoframe vendor; - struct hdmi_audio_infoframe audio; - struct hdmi_drm_infoframe drm; -}; - -typedef unsigned int drm_magic_t; - -struct drm_event { - __u32 type; - __u32 length; -}; - -struct drm_event_vblank { - struct drm_event base; - __u64 user_data; - __u32 tv_sec; - __u32 tv_usec; - __u32 sequence; - __u32 crtc_id; -}; - -struct drm_event_crtc_sequence { - struct drm_event base; - __u64 user_data; - __s64 time_ns; - __u64 sequence; -}; - -enum drm_mode_subconnector { - DRM_MODE_SUBCONNECTOR_Automatic = 0, - DRM_MODE_SUBCONNECTOR_Unknown = 0, - DRM_MODE_SUBCONNECTOR_VGA = 1, - DRM_MODE_SUBCONNECTOR_DVID = 3, - DRM_MODE_SUBCONNECTOR_DVIA = 4, - DRM_MODE_SUBCONNECTOR_Composite = 5, - DRM_MODE_SUBCONNECTOR_SVIDEO = 6, - DRM_MODE_SUBCONNECTOR_Component = 8, - DRM_MODE_SUBCONNECTOR_SCART = 9, - DRM_MODE_SUBCONNECTOR_DisplayPort = 10, - DRM_MODE_SUBCONNECTOR_HDMIA = 11, - DRM_MODE_SUBCONNECTOR_Native = 15, - DRM_MODE_SUBCONNECTOR_Wireless = 18, -}; - -struct drm_mode_fb_cmd2 { - __u32 fb_id; - __u32 width; - __u32 height; - __u32 pixel_format; - __u32 flags; - __u32 handles[4]; - __u32 pitches[4]; - __u32 offsets[4]; - __u64 modifier[4]; -}; - -struct drm_mode_create_dumb { - __u32 height; - __u32 width; - __u32 bpp; - __u32 flags; - __u32 handle; - __u32 pitch; - __u64 size; -}; - -struct drm_mode_config_funcs; - -struct drm_atomic_state; - -struct drm_mode_config_helper_funcs; - -struct drm_mode_config { - struct mutex mutex; - struct drm_modeset_lock connection_mutex; - struct drm_modeset_acquire_ctx *acquire_ctx; - struct mutex idr_mutex; - struct idr object_idr; - struct idr tile_idr; - struct mutex fb_lock; - int num_fb; - struct list_head fb_list; - spinlock_t connector_list_lock; - int num_connector; - struct ida connector_ida; - struct list_head connector_list; - struct llist_head connector_free_list; - struct work_struct connector_free_work; - int num_encoder; - struct list_head encoder_list; - int num_total_plane; - struct list_head plane_list; - struct raw_spinlock panic_lock; - int num_crtc; - struct list_head crtc_list; - struct list_head property_list; - struct list_head privobj_list; - int min_width; - int min_height; - int max_width; - int max_height; - const struct drm_mode_config_funcs *funcs; - bool poll_enabled; - bool poll_running; - bool delayed_event; - struct delayed_work output_poll_work; - struct mutex blob_lock; - struct list_head property_blob_list; - struct drm_property *edid_property; - struct drm_property *dpms_property; - struct drm_property *path_property; - struct drm_property *tile_property; - struct drm_property *link_status_property; - struct drm_property *plane_type_property; - struct drm_property *prop_src_x; - struct drm_property *prop_src_y; - struct drm_property *prop_src_w; - struct drm_property *prop_src_h; - struct drm_property *prop_crtc_x; - struct drm_property *prop_crtc_y; - struct drm_property *prop_crtc_w; - struct drm_property *prop_crtc_h; - struct drm_property *prop_fb_id; - struct drm_property *prop_in_fence_fd; - struct drm_property *prop_out_fence_ptr; - struct drm_property *prop_crtc_id; - struct drm_property *prop_fb_damage_clips; - struct drm_property *prop_active; - struct drm_property *prop_mode_id; - struct drm_property *prop_vrr_enabled; - struct drm_property *dvi_i_subconnector_property; - struct drm_property *dvi_i_select_subconnector_property; - struct drm_property *dp_subconnector_property; - struct drm_property *tv_subconnector_property; - struct drm_property *tv_select_subconnector_property; - struct drm_property *legacy_tv_mode_property; - struct drm_property *tv_mode_property; - struct drm_property *tv_left_margin_property; - struct drm_property *tv_right_margin_property; - struct drm_property *tv_top_margin_property; - struct drm_property *tv_bottom_margin_property; - struct drm_property *tv_brightness_property; - struct drm_property *tv_contrast_property; - struct drm_property *tv_flicker_reduction_property; - struct drm_property *tv_overscan_property; - struct drm_property *tv_saturation_property; - struct drm_property *tv_hue_property; - struct drm_property *scaling_mode_property; - struct drm_property *aspect_ratio_property; - struct drm_property *content_type_property; - struct drm_property *degamma_lut_property; - struct drm_property *degamma_lut_size_property; - struct drm_property *ctm_property; - struct drm_property *gamma_lut_property; - struct drm_property *gamma_lut_size_property; - struct drm_property *suggested_x_property; - struct drm_property *suggested_y_property; - struct drm_property *non_desktop_property; - struct drm_property *panel_orientation_property; - struct drm_property *writeback_fb_id_property; - struct drm_property *writeback_pixel_formats_property; - struct drm_property *writeback_out_fence_ptr_property; - struct drm_property *hdr_output_metadata_property; - struct drm_property *content_protection_property; - struct drm_property *hdcp_content_type_property; - uint32_t preferred_depth; - uint32_t prefer_shadow; - bool quirk_addfb_prefer_xbgr_30bpp; - bool quirk_addfb_prefer_host_byte_order; - bool async_page_flip; - bool fb_modifiers_not_supported; - bool normalize_zpos; - struct drm_property *modifiers_property; - struct drm_property *size_hints_property; - uint32_t cursor_width; - uint32_t cursor_height; - struct drm_atomic_state *suspend_state; - const struct drm_mode_config_helper_funcs *helper_private; -}; - -struct drm_vram_mm; - -enum switch_power_state { - DRM_SWITCH_POWER_ON = 0, - DRM_SWITCH_POWER_OFF = 1, - DRM_SWITCH_POWER_CHANGING = 2, - DRM_SWITCH_POWER_DYNAMIC_OFF = 3, -}; - -struct drm_driver; - -struct drm_minor; - -struct drm_master; - -struct drm_vblank_crtc; - -struct drm_vma_offset_manager; - -struct drm_fb_helper; - -struct drm_device { - int if_version; - struct kref ref; - struct device *dev; - struct { - struct list_head resources; - void *final_kfree; - spinlock_t lock; - } managed; - const struct drm_driver *driver; - void *dev_private; - struct drm_minor *primary; - struct drm_minor *render; - struct drm_minor *accel; - bool registered; - struct drm_master *master; - u32 driver_features; - bool unplugged; - struct inode *anon_inode; - char *unique; - struct mutex struct_mutex; - struct mutex master_mutex; - atomic_t open_count; - struct mutex filelist_mutex; - struct list_head filelist; - struct list_head filelist_internal; - struct mutex clientlist_mutex; - struct list_head clientlist; - bool vblank_disable_immediate; - struct drm_vblank_crtc *vblank; - spinlock_t vblank_time_lock; - spinlock_t vbl_lock; - u32 max_vblank_count; - struct list_head vblank_event_list; - spinlock_t event_lock; - unsigned int num_crtcs; - struct drm_mode_config mode_config; - struct mutex object_name_lock; - struct idr object_name_idr; - struct drm_vma_offset_manager *vma_offset_manager; - struct drm_vram_mm *vram_mm; - enum switch_power_state switch_power_state; - struct drm_fb_helper *fb_helper; - struct dentry *debugfs_root; -}; - -struct drm_property_blob { - struct drm_mode_object base; - struct drm_device *dev; - struct list_head head_global; - struct list_head head_file; - size_t length; - void *data; -}; - -enum drm_connector_force { - DRM_FORCE_UNSPECIFIED = 0, - DRM_FORCE_OFF = 1, - DRM_FORCE_ON = 2, - DRM_FORCE_ON_DIGITAL = 3, -}; - -enum drm_connector_status { - connector_status_connected = 1, - connector_status_disconnected = 2, - connector_status_unknown = 3, -}; - -enum drm_connector_registration_state { - DRM_CONNECTOR_INITIALIZING = 0, - DRM_CONNECTOR_REGISTERED = 1, - DRM_CONNECTOR_UNREGISTERED = 2, -}; - -enum subpixel_order { - SubPixelUnknown = 0, - SubPixelHorizontalRGB = 1, - SubPixelHorizontalBGR = 2, - SubPixelVerticalRGB = 3, - SubPixelVerticalBGR = 4, - SubPixelNone = 5, -}; - -enum drm_connector_tv_mode { - DRM_MODE_TV_MODE_NTSC = 0, - DRM_MODE_TV_MODE_NTSC_443 = 1, - DRM_MODE_TV_MODE_NTSC_J = 2, - DRM_MODE_TV_MODE_PAL = 3, - DRM_MODE_TV_MODE_PAL_M = 4, - DRM_MODE_TV_MODE_PAL_N = 5, - DRM_MODE_TV_MODE_SECAM = 6, - DRM_MODE_TV_MODE_MONOCHROME = 7, - DRM_MODE_TV_MODE_MAX = 8, -}; - -struct drm_scrambling { - bool supported; - bool low_rates; -}; - -struct drm_scdc { - bool supported; - bool read_request; - struct drm_scrambling scrambling; -}; - -struct drm_hdmi_dsc_cap { - bool v_1p2; - bool native_420; - bool all_bpp; - u8 bpc_supported; - u8 max_slices; - int clk_per_slice; - u8 max_lanes; - u8 max_frl_rate_per_lane; - u8 total_chunk_kbytes; -}; - -struct drm_hdmi_info { - struct drm_scdc scdc; - long unsigned int y420_vdb_modes[4]; - long unsigned int y420_cmdb_modes[4]; - u8 y420_dc_modes; - u8 max_frl_rate_per_lane; - u8 max_lanes; - struct drm_hdmi_dsc_cap dsc_cap; -}; - -enum drm_link_status { - DRM_LINK_STATUS_GOOD = 0, - DRM_LINK_STATUS_BAD = 1, -}; - -enum drm_panel_orientation { - DRM_MODE_PANEL_ORIENTATION_UNKNOWN = -1, - DRM_MODE_PANEL_ORIENTATION_NORMAL = 0, - DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP = 1, - DRM_MODE_PANEL_ORIENTATION_LEFT_UP = 2, - DRM_MODE_PANEL_ORIENTATION_RIGHT_UP = 3, -}; - -enum drm_hdmi_broadcast_rgb { - DRM_HDMI_BROADCAST_RGB_AUTO = 0, - DRM_HDMI_BROADCAST_RGB_FULL = 1, - DRM_HDMI_BROADCAST_RGB_LIMITED = 2, -}; - -struct drm_monitor_range_info { - u16 min_vfreq; - u16 max_vfreq; -}; - -struct drm_luminance_range_info { - u32 min_luminance; - u32 max_luminance; -}; - -enum drm_privacy_screen_status { - PRIVACY_SCREEN_DISABLED = 0, - PRIVACY_SCREEN_ENABLED = 1, - PRIVACY_SCREEN_DISABLED_LOCKED = 2, - PRIVACY_SCREEN_ENABLED_LOCKED = 3, -}; - -enum drm_colorspace { - DRM_MODE_COLORIMETRY_DEFAULT = 0, - DRM_MODE_COLORIMETRY_NO_DATA = 0, - DRM_MODE_COLORIMETRY_SMPTE_170M_YCC = 1, - DRM_MODE_COLORIMETRY_BT709_YCC = 2, - DRM_MODE_COLORIMETRY_XVYCC_601 = 3, - DRM_MODE_COLORIMETRY_XVYCC_709 = 4, - DRM_MODE_COLORIMETRY_SYCC_601 = 5, - DRM_MODE_COLORIMETRY_OPYCC_601 = 6, - DRM_MODE_COLORIMETRY_OPRGB = 7, - DRM_MODE_COLORIMETRY_BT2020_CYCC = 8, - DRM_MODE_COLORIMETRY_BT2020_RGB = 9, - DRM_MODE_COLORIMETRY_BT2020_YCC = 10, - DRM_MODE_COLORIMETRY_DCI_P3_RGB_D65 = 11, - DRM_MODE_COLORIMETRY_DCI_P3_RGB_THEATER = 12, - DRM_MODE_COLORIMETRY_RGB_WIDE_FIXED = 13, - DRM_MODE_COLORIMETRY_RGB_WIDE_FLOAT = 14, - DRM_MODE_COLORIMETRY_BT601_YCC = 15, - DRM_MODE_COLORIMETRY_COUNT = 16, -}; - -struct drm_display_info { - unsigned int width_mm; - unsigned int height_mm; - unsigned int bpc; - enum subpixel_order subpixel_order; - int panel_orientation; - u32 color_formats; - const u32 *bus_formats; - unsigned int num_bus_formats; - u32 bus_flags; - int max_tmds_clock; - bool dvi_dual; - bool is_hdmi; - bool has_audio; - bool has_hdmi_infoframe; - bool rgb_quant_range_selectable; - u8 edid_hdmi_rgb444_dc_modes; - u8 edid_hdmi_ycbcr444_dc_modes; - u8 cea_rev; - struct drm_hdmi_info hdmi; - bool non_desktop; - struct drm_monitor_range_info monitor_range; - struct drm_luminance_range_info luminance_range; - u8 mso_stream_count; - u8 mso_pixel_overlap; - u32 max_dsc_bpp; - u8 *vics; - int vics_len; - u32 quirks; - u16 source_physical_address; -}; - -struct drm_connector_tv_margins { - unsigned int bottom; - unsigned int left; - unsigned int right; - unsigned int top; -}; - -struct drm_tv_connector_state { - enum drm_mode_subconnector select_subconnector; - enum drm_mode_subconnector subconnector; - struct drm_connector_tv_margins margins; - unsigned int legacy_mode; - unsigned int mode; - unsigned int brightness; - unsigned int contrast; - unsigned int flicker_reduction; - unsigned int overscan; - unsigned int saturation; - unsigned int hue; -}; - -struct drm_connector_hdmi_infoframe { - union hdmi_infoframe data; - bool set; -}; - -struct drm_connector_hdmi_state { - enum drm_hdmi_broadcast_rgb broadcast_rgb; - struct { - struct drm_connector_hdmi_infoframe avi; - struct drm_connector_hdmi_infoframe hdr_drm; - struct drm_connector_hdmi_infoframe spd; - struct drm_connector_hdmi_infoframe hdmi; - } infoframes; - bool is_limited_range; - unsigned int output_bpc; - enum hdmi_colorspace output_format; - long long unsigned int tmds_char_rate; -}; - -struct drm_connector; - -struct drm_crtc; - -struct drm_encoder; - -struct drm_crtc_commit; - -struct drm_writeback_job; - -struct drm_connector_state { - struct drm_connector *connector; - struct drm_crtc *crtc; - struct drm_encoder *best_encoder; - enum drm_link_status link_status; - struct drm_atomic_state *state; - struct drm_crtc_commit *commit; - struct drm_tv_connector_state tv; - bool self_refresh_aware; - enum hdmi_picture_aspect picture_aspect_ratio; - unsigned int content_type; - unsigned int hdcp_content_type; - unsigned int scaling_mode; - unsigned int content_protection; - enum drm_colorspace colorspace; - struct drm_writeback_job *writeback_job; - u8 max_requested_bpc; - u8 max_bpc; - enum drm_privacy_screen_status privacy_screen_sw_state; - struct drm_property_blob *hdr_output_metadata; - struct drm_connector_hdmi_state hdmi; -}; - -struct drm_privacy_screen; - -struct drm_cmdline_mode { - char name[32]; - bool specified; - bool refresh_specified; - bool bpp_specified; - unsigned int pixel_clock; - int xres; - int yres; - int bpp; - int refresh; - bool rb; - bool interlace; - bool cvt; - bool margins; - enum drm_connector_force force; - unsigned int rotation_reflection; - enum drm_panel_orientation panel_orientation; - struct drm_connector_tv_margins tv_margins; - enum drm_connector_tv_mode tv_mode; - bool tv_mode_specified; -}; - -struct drm_connector_hdmi_funcs; - -struct drm_connector_hdmi { - unsigned char vendor[8]; - unsigned char product[16]; - long unsigned int supported_formats; - const struct drm_connector_hdmi_funcs *funcs; - struct { - struct mutex lock; - struct drm_connector_hdmi_infoframe audio; - } infoframes; -}; - -struct drm_connector_funcs; - -struct drm_connector_helper_funcs; - -struct drm_edid; - -struct i2c_adapter; - -struct drm_tile_group; - -struct drm_connector { - struct drm_device *dev; - struct device *kdev; - struct device_attribute *attr; - struct fwnode_handle *fwnode; - struct list_head head; - struct list_head global_connector_list_entry; - struct drm_mode_object base; - char *name; - struct mutex mutex; - unsigned int index; - int connector_type; - int connector_type_id; - bool interlace_allowed; - bool doublescan_allowed; - bool stereo_allowed; - bool ycbcr_420_allowed; - enum drm_connector_registration_state registration_state; - struct list_head modes; - enum drm_connector_status status; - struct list_head probed_modes; - struct drm_display_info display_info; - const struct drm_connector_funcs *funcs; - struct drm_property_blob *edid_blob_ptr; - struct drm_object_properties properties; - struct drm_property *scaling_mode_property; - struct drm_property *vrr_capable_property; - struct drm_property *colorspace_property; - struct drm_property_blob *path_blob_ptr; - unsigned int max_bpc; - struct drm_property *max_bpc_property; - struct drm_privacy_screen *privacy_screen; - struct notifier_block privacy_screen_notifier; - struct drm_property *privacy_screen_sw_state_property; - struct drm_property *privacy_screen_hw_state_property; - struct drm_property *broadcast_rgb_property; - uint8_t polled; - int dpms; - const struct drm_connector_helper_funcs *helper_private; - struct drm_cmdline_mode cmdline_mode; - enum drm_connector_force force; - const struct drm_edid *edid_override; - struct mutex edid_override_mutex; - u64 epoch_counter; - u32 possible_encoders; - struct drm_encoder *encoder; - uint8_t eld[128]; - struct mutex eld_mutex; - bool latency_present[2]; - int video_latency[2]; - int audio_latency[2]; - struct i2c_adapter *ddc; - int null_edid_counter; - unsigned int bad_edid_counter; - bool edid_corrupt; - u8 real_edid_checksum; - struct dentry *debugfs_entry; - struct drm_connector_state *state; - struct drm_property_blob *tile_blob_ptr; - bool has_tile; - struct drm_tile_group *tile_group; - bool tile_is_single_monitor; - uint8_t num_h_tile; - uint8_t num_v_tile; - uint8_t tile_h_loc; - uint8_t tile_v_loc; - uint16_t tile_h_size; - uint16_t tile_v_size; - struct llist_node free_node; - struct hdr_sink_metadata hdr_sink_metadata; - struct drm_connector_hdmi hdmi; -}; - -enum drm_mode_status { - MODE_OK = 0, - MODE_HSYNC = 1, - MODE_VSYNC = 2, - MODE_H_ILLEGAL = 3, - MODE_V_ILLEGAL = 4, - MODE_BAD_WIDTH = 5, - MODE_NOMODE = 6, - MODE_NO_INTERLACE = 7, - MODE_NO_DBLESCAN = 8, - MODE_NO_VSCAN = 9, - MODE_MEM = 10, - MODE_VIRTUAL_X = 11, - MODE_VIRTUAL_Y = 12, - MODE_MEM_VIRT = 13, - MODE_NOCLOCK = 14, - MODE_CLOCK_HIGH = 15, - MODE_CLOCK_LOW = 16, - MODE_CLOCK_RANGE = 17, - MODE_BAD_HVALUE = 18, - MODE_BAD_VVALUE = 19, - MODE_BAD_VSCAN = 20, - MODE_HSYNC_NARROW = 21, - MODE_HSYNC_WIDE = 22, - MODE_HBLANK_NARROW = 23, - MODE_HBLANK_WIDE = 24, - MODE_VSYNC_NARROW = 25, - MODE_VSYNC_WIDE = 26, - MODE_VBLANK_NARROW = 27, - MODE_VBLANK_WIDE = 28, - MODE_PANEL = 29, - MODE_INTERLACE_WIDTH = 30, - MODE_ONE_WIDTH = 31, - MODE_ONE_HEIGHT = 32, - MODE_ONE_SIZE = 33, - MODE_NO_REDUCED = 34, - MODE_NO_STEREO = 35, - MODE_NO_420 = 36, - MODE_STALE = -3, - MODE_BAD = -2, - MODE_ERROR = -1, -}; - -struct drm_display_mode { - int clock; - u16 hdisplay; - u16 hsync_start; - u16 hsync_end; - u16 htotal; - u16 hskew; - u16 vdisplay; - u16 vsync_start; - u16 vsync_end; - u16 vtotal; - u16 vscan; - u32 flags; - int crtc_clock; - u16 crtc_hdisplay; - u16 crtc_hblank_start; - u16 crtc_hblank_end; - u16 crtc_hsync_start; - u16 crtc_hsync_end; - u16 crtc_htotal; - u16 crtc_hskew; - u16 crtc_vdisplay; - u16 crtc_vblank_start; - u16 crtc_vblank_end; - u16 crtc_vsync_start; - u16 crtc_vsync_end; - u16 crtc_vtotal; - u16 width_mm; - u16 height_mm; - u8 type; - bool expose_to_userspace; - struct list_head head; - char name[32]; - enum drm_mode_status status; - enum hdmi_picture_aspect picture_aspect_ratio; -}; - -struct drm_crtc_crc_entry; - -struct drm_crtc_crc { - spinlock_t lock; - const char *source; - bool opened; - bool overflow; - struct drm_crtc_crc_entry *entries; - int head; - int tail; - size_t values_cnt; - wait_queue_head_t wq; -}; - -struct drm_plane; - -struct drm_crtc_funcs; - -struct drm_crtc_helper_funcs; - -struct drm_crtc_state; - -struct drm_self_refresh_data; - -struct drm_crtc { - struct drm_device *dev; - struct device_node *port; - struct list_head head; - char *name; - struct drm_modeset_lock mutex; - struct drm_mode_object base; - struct drm_plane *primary; - struct drm_plane *cursor; - unsigned int index; - int cursor_x; - int cursor_y; - bool enabled; - struct drm_display_mode mode; - struct drm_display_mode hwmode; - int x; - int y; - const struct drm_crtc_funcs *funcs; - uint32_t gamma_size; - uint16_t *gamma_store; - const struct drm_crtc_helper_funcs *helper_private; - struct drm_object_properties properties; - struct drm_property *scaling_filter_property; - struct drm_crtc_state *state; - struct list_head commit_list; - spinlock_t commit_lock; - struct dentry *debugfs_entry; - struct drm_crtc_crc crc; - unsigned int fence_context; - spinlock_t fence_lock; - long unsigned int fence_seqno; - char timeline_name[32]; - struct drm_self_refresh_data *self_refresh_data; -}; - -struct drm_encoder_funcs; - -struct drm_encoder_helper_funcs; - -struct drm_encoder { - struct drm_device *dev; - struct list_head head; - struct drm_mode_object base; - char *name; - int encoder_type; - unsigned int index; - uint32_t possible_crtcs; - uint32_t possible_clones; - struct drm_crtc *crtc; - struct list_head bridge_chain; - const struct drm_encoder_funcs *funcs; - const struct drm_encoder_helper_funcs *helper_private; - struct dentry *debugfs_entry; -}; - -struct __drm_planes_state; - -struct __drm_crtcs_state; - -struct __drm_connnectors_state; - -struct __drm_private_objs_state; - -struct drm_atomic_state { - struct kref ref; - struct drm_device *dev; - bool allow_modeset: 1; - bool legacy_cursor_update: 1; - bool async_update: 1; - bool duplicated: 1; - struct __drm_planes_state *planes; - struct __drm_crtcs_state *crtcs; - int num_connector; - struct __drm_connnectors_state *connectors; - int num_private_objs; - struct __drm_private_objs_state *private_objs; - struct drm_modeset_acquire_ctx *acquire_ctx; - struct drm_crtc_commit *fake_commit; - struct work_struct commit_work; -}; - -struct drm_pending_vblank_event; - -struct drm_crtc_commit { - struct drm_crtc *crtc; - struct kref ref; - struct completion flip_done; - struct completion hw_done; - struct completion cleanup_done; - struct list_head commit_entry; - struct drm_pending_vblank_event *event; - bool abort_completion; -}; - -struct drm_connector_hdmi_funcs { - enum drm_mode_status (*tmds_char_rate_valid)(const struct drm_connector *, const struct drm_display_mode *, long long unsigned int); - int (*clear_infoframe)(struct drm_connector *, enum hdmi_infoframe_type); - int (*write_infoframe)(struct drm_connector *, enum hdmi_infoframe_type, const u8 *, size_t); -}; - -struct drm_printer; - -struct drm_connector_funcs { - int (*dpms)(struct drm_connector *, int); - void (*reset)(struct drm_connector *); - enum drm_connector_status (*detect)(struct drm_connector *, bool); - void (*force)(struct drm_connector *); - int (*fill_modes)(struct drm_connector *, uint32_t, uint32_t); - int (*set_property)(struct drm_connector *, struct drm_property *, uint64_t); - int (*late_register)(struct drm_connector *); - void (*early_unregister)(struct drm_connector *); - void (*destroy)(struct drm_connector *); - struct drm_connector_state * (*atomic_duplicate_state)(struct drm_connector *); - void (*atomic_destroy_state)(struct drm_connector *, struct drm_connector_state *); - int (*atomic_set_property)(struct drm_connector *, struct drm_connector_state *, struct drm_property *, uint64_t); - int (*atomic_get_property)(struct drm_connector *, const struct drm_connector_state *, struct drm_property *, uint64_t *); - void (*atomic_print_state)(struct drm_printer *, const struct drm_connector_state *); - void (*oob_hotplug_event)(struct drm_connector *, enum drm_connector_status); - void (*debugfs_init)(struct drm_connector *, struct dentry *); -}; - -enum drm_debug_category { - DRM_UT_CORE = 0, - DRM_UT_DRIVER = 1, - DRM_UT_KMS = 2, - DRM_UT_PRIME = 3, - DRM_UT_ATOMIC = 4, - DRM_UT_VBL = 5, - DRM_UT_STATE = 6, - DRM_UT_LEASE = 7, - DRM_UT_DP = 8, - DRM_UT_DRMRES = 9, -}; - -struct drm_printer { - void (*printfn)(struct drm_printer *, struct va_format *); - void (*puts)(struct drm_printer *, const char *); - void *arg; - const void *origin; - const char *prefix; - enum drm_debug_category category; -}; - -struct drm_writeback_connector; - -struct drm_connector_helper_funcs { - int (*get_modes)(struct drm_connector *); - int (*detect_ctx)(struct drm_connector *, struct drm_modeset_acquire_ctx *, bool); - enum drm_mode_status (*mode_valid)(struct drm_connector *, struct drm_display_mode *); - int (*mode_valid_ctx)(struct drm_connector *, struct drm_display_mode *, struct drm_modeset_acquire_ctx *, enum drm_mode_status *); - struct drm_encoder * (*best_encoder)(struct drm_connector *); - struct drm_encoder * (*atomic_best_encoder)(struct drm_connector *, struct drm_atomic_state *); - int (*atomic_check)(struct drm_connector *, struct drm_atomic_state *); - void (*atomic_commit)(struct drm_connector *, struct drm_atomic_state *); - int (*prepare_writeback_job)(struct drm_writeback_connector *, struct drm_writeback_job *); - void (*cleanup_writeback_job)(struct drm_writeback_connector *, struct drm_writeback_job *); - void (*enable_hpd)(struct drm_connector *); - void (*disable_hpd)(struct drm_connector *); -}; - -struct edid; - -struct drm_edid { - size_t size; - const struct edid *edid; -}; - -struct drm_tile_group { - struct kref refcount; - struct drm_device *dev; - int id; - u8 group_data[8]; -}; - -struct drm_connector_list_iter { - struct drm_device *dev; - struct drm_connector *conn; -}; - -struct drm_framebuffer; - -struct drm_file; - -struct drm_format_info; - -struct drm_mode_config_funcs { - struct drm_framebuffer * (*fb_create)(struct drm_device *, struct drm_file *, const struct drm_mode_fb_cmd2 *); - const struct drm_format_info * (*get_format_info)(const struct drm_mode_fb_cmd2 *); - enum drm_mode_status (*mode_valid)(struct drm_device *, const struct drm_display_mode *); - int (*atomic_check)(struct drm_device *, struct drm_atomic_state *); - int (*atomic_commit)(struct drm_device *, struct drm_atomic_state *, bool); - struct drm_atomic_state * (*atomic_state_alloc)(struct drm_device *); - void (*atomic_state_clear)(struct drm_atomic_state *); - void (*atomic_state_free)(struct drm_atomic_state *); -}; - -struct drm_prime_file_private { - struct mutex lock; - struct rb_root dmabufs; - struct rb_root handles; -}; - -struct drm_file { - bool authenticated; - bool stereo_allowed; - bool universal_planes; - bool atomic; - bool aspect_ratio_allowed; - bool writeback_connectors; - bool was_master; - bool is_master; - bool supports_virtualized_cursor_plane; - struct drm_master *master; - spinlock_t master_lookup_lock; - struct pid *pid; - u64 client_id; - drm_magic_t magic; - struct list_head lhead; - struct drm_minor *minor; - struct idr object_idr; - spinlock_t table_lock; - struct idr syncobj_idr; - spinlock_t syncobj_table_lock; - struct file *filp; - void *driver_priv; - struct list_head fbs; - struct mutex fbs_lock; - struct list_head blobs; - wait_queue_head_t event_wait; - struct list_head pending_event_list; - struct list_head event_list; - int event_space; - struct mutex event_read_lock; - struct drm_prime_file_private prime; -}; - -struct drm_format_info { - u32 format; - u8 depth; - u8 num_planes; - union { - u8 cpp[4]; - u8 char_per_block[4]; - }; - u8 block_w[4]; - u8 block_h[4]; - u8 hsub; - u8 vsub; - bool has_alpha; - bool is_yuv; - bool is_color_indexed; -}; - -struct drm_mode_config_helper_funcs { - void (*atomic_commit_tail)(struct drm_atomic_state *); - int (*atomic_commit_setup)(struct drm_atomic_state *); -}; - -struct drm_gem_object; - -struct dma_buf; - -struct dma_buf_attachment; - -struct drm_fb_helper_surface_size; - -struct drm_ioctl_desc; - -struct drm_driver { - int (*load)(struct drm_device *, long unsigned int); - int (*open)(struct drm_device *, struct drm_file *); - void (*postclose)(struct drm_device *, struct drm_file *); - void (*unload)(struct drm_device *); - void (*release)(struct drm_device *); - void (*master_set)(struct drm_device *, struct drm_file *, bool); - void (*master_drop)(struct drm_device *, struct drm_file *); - void (*debugfs_init)(struct drm_minor *); - struct drm_gem_object * (*gem_create_object)(struct drm_device *, size_t); - int (*prime_handle_to_fd)(struct drm_device *, struct drm_file *, uint32_t, uint32_t, int *); - int (*prime_fd_to_handle)(struct drm_device *, struct drm_file *, int, uint32_t *); - struct drm_gem_object * (*gem_prime_import)(struct drm_device *, struct dma_buf *); - struct drm_gem_object * (*gem_prime_import_sg_table)(struct drm_device *, struct dma_buf_attachment *, struct sg_table *); - int (*dumb_create)(struct drm_file *, struct drm_device *, struct drm_mode_create_dumb *); - int (*dumb_map_offset)(struct drm_file *, struct drm_device *, uint32_t, uint64_t *); - int (*fbdev_probe)(struct drm_fb_helper *, struct drm_fb_helper_surface_size *); - void (*show_fdinfo)(struct drm_printer *, struct drm_file *); - int major; - int minor; - int patchlevel; - char *name; - char *desc; - char *date; - u32 driver_features; - const struct drm_ioctl_desc *ioctls; - int num_ioctls; - const struct file_operations *fops; -}; - -struct drm_minor { - int index; - int type; - struct device *kdev; - struct drm_device *dev; - struct dentry *debugfs_symlink; - struct dentry *debugfs_root; -}; - -struct drm_vblank_crtc_config { - int offdelay_ms; - bool disable_immediate; -}; - -struct kthread_worker; - -struct drm_vblank_crtc { - struct drm_device *dev; - wait_queue_head_t queue; - struct timer_list disable_timer; - seqlock_t seqlock; - atomic64_t count; - ktime_t time; - atomic_t refcount; - u32 last; - u32 max_vblank_count; - unsigned int inmodeset; - unsigned int pipe; - int framedur_ns; - int linedur_ns; - struct drm_display_mode hwmode; - struct drm_vblank_crtc_config config; - bool enabled; - struct kthread_worker *worker; - struct list_head pending_work; - wait_queue_head_t work_wait_queue; -}; - -enum drm_color_encoding { - DRM_COLOR_YCBCR_BT601 = 0, - DRM_COLOR_YCBCR_BT709 = 1, - DRM_COLOR_YCBCR_BT2020 = 2, - DRM_COLOR_ENCODING_MAX = 3, -}; - -enum drm_color_range { - DRM_COLOR_YCBCR_LIMITED_RANGE = 0, - DRM_COLOR_YCBCR_FULL_RANGE = 1, - DRM_COLOR_RANGE_MAX = 2, -}; - -struct drm_rect { - int x1; - int y1; - int x2; - int y2; -}; - -enum drm_scaling_filter { - DRM_SCALING_FILTER_DEFAULT = 0, - DRM_SCALING_FILTER_NEAREST_NEIGHBOR = 1, -}; - -struct dma_fence; - -struct drm_plane_state { - struct drm_plane *plane; - struct drm_crtc *crtc; - struct drm_framebuffer *fb; - struct dma_fence *fence; - int32_t crtc_x; - int32_t crtc_y; - uint32_t crtc_w; - uint32_t crtc_h; - uint32_t src_x; - uint32_t src_y; - uint32_t src_h; - uint32_t src_w; - int32_t hotspot_x; - int32_t hotspot_y; - u16 alpha; - uint16_t pixel_blend_mode; - unsigned int rotation; - unsigned int zpos; - unsigned int normalized_zpos; - enum drm_color_encoding color_encoding; - enum drm_color_range color_range; - struct drm_property_blob *fb_damage_clips; - bool ignore_damage_clips; - struct drm_rect src; - struct drm_rect dst; - bool visible; - enum drm_scaling_filter scaling_filter; - struct drm_crtc_commit *commit; - struct drm_atomic_state *state; - bool color_mgmt_changed: 1; -}; - -enum drm_plane_type { - DRM_PLANE_TYPE_OVERLAY = 0, - DRM_PLANE_TYPE_PRIMARY = 1, - DRM_PLANE_TYPE_CURSOR = 2, -}; - -struct drm_plane_funcs; - -struct drm_plane_helper_funcs; - -struct drm_plane { - struct drm_device *dev; - struct list_head head; - char *name; - struct drm_modeset_lock mutex; - struct drm_mode_object base; - uint32_t possible_crtcs; - uint32_t *format_types; - unsigned int format_count; - bool format_default; - uint64_t *modifiers; - unsigned int modifier_count; - struct drm_crtc *crtc; - struct drm_framebuffer *fb; - struct drm_framebuffer *old_fb; - const struct drm_plane_funcs *funcs; - struct drm_object_properties properties; - enum drm_plane_type type; - unsigned int index; - const struct drm_plane_helper_funcs *helper_private; - struct drm_plane_state *state; - struct drm_property *alpha_property; - struct drm_property *zpos_property; - struct drm_property *rotation_property; - struct drm_property *blend_mode_property; - struct drm_property *color_encoding_property; - struct drm_property *color_range_property; - struct drm_property *scaling_filter_property; - struct drm_property *hotspot_x_property; - struct drm_property *hotspot_y_property; - struct kmsg_dumper kmsg_panic; -}; - -struct drm_plane_funcs { - int (*update_plane)(struct drm_plane *, struct drm_crtc *, struct drm_framebuffer *, int, int, unsigned int, unsigned int, uint32_t, uint32_t, uint32_t, uint32_t, struct drm_modeset_acquire_ctx *); - int (*disable_plane)(struct drm_plane *, struct drm_modeset_acquire_ctx *); - void (*destroy)(struct drm_plane *); - void (*reset)(struct drm_plane *); - int (*set_property)(struct drm_plane *, struct drm_property *, uint64_t); - struct drm_plane_state * (*atomic_duplicate_state)(struct drm_plane *); - void (*atomic_destroy_state)(struct drm_plane *, struct drm_plane_state *); - int (*atomic_set_property)(struct drm_plane *, struct drm_plane_state *, struct drm_property *, uint64_t); - int (*atomic_get_property)(struct drm_plane *, const struct drm_plane_state *, struct drm_property *, uint64_t *); - int (*late_register)(struct drm_plane *); - void (*early_unregister)(struct drm_plane *); - void (*atomic_print_state)(struct drm_printer *, const struct drm_plane_state *); - bool (*format_mod_supported)(struct drm_plane *, uint32_t, uint64_t); -}; - -struct drm_scanout_buffer; - -struct drm_plane_helper_funcs { - int (*prepare_fb)(struct drm_plane *, struct drm_plane_state *); - void (*cleanup_fb)(struct drm_plane *, struct drm_plane_state *); - int (*begin_fb_access)(struct drm_plane *, struct drm_plane_state *); - void (*end_fb_access)(struct drm_plane *, struct drm_plane_state *); - int (*atomic_check)(struct drm_plane *, struct drm_atomic_state *); - void (*atomic_update)(struct drm_plane *, struct drm_atomic_state *); - void (*atomic_enable)(struct drm_plane *, struct drm_atomic_state *); - void (*atomic_disable)(struct drm_plane *, struct drm_atomic_state *); - int (*atomic_async_check)(struct drm_plane *, struct drm_atomic_state *); - void (*atomic_async_update)(struct drm_plane *, struct drm_atomic_state *); - int (*get_scanout_buffer)(struct drm_plane *, struct drm_scanout_buffer *); - void (*panic_flush)(struct drm_plane *); -}; - -struct drm_crtc_crc_entry { - bool has_frame_counter; - uint32_t frame; - uint32_t crcs[10]; -}; - -struct drm_crtc_state { - struct drm_crtc *crtc; - bool enable; - bool active; - bool planes_changed: 1; - bool mode_changed: 1; - bool active_changed: 1; - bool connectors_changed: 1; - bool zpos_changed: 1; - bool color_mgmt_changed: 1; - bool no_vblank: 1; - u32 plane_mask; - u32 connector_mask; - u32 encoder_mask; - struct drm_display_mode adjusted_mode; - struct drm_display_mode mode; - struct drm_property_blob *mode_blob; - struct drm_property_blob *degamma_lut; - struct drm_property_blob *ctm; - struct drm_property_blob *gamma_lut; - u32 target_vblank; - bool async_flip; - bool vrr_enabled; - bool self_refresh_active; - enum drm_scaling_filter scaling_filter; - struct drm_pending_vblank_event *event; - struct drm_crtc_commit *commit; - struct drm_atomic_state *state; -}; - -struct drm_pending_event { - struct completion *completion; - void (*completion_release)(struct completion *); - struct drm_event *event; - struct dma_fence *fence; - struct drm_file *file_priv; - struct list_head link; - struct list_head pending_link; -}; - -struct drm_pending_vblank_event { - struct drm_pending_event base; - unsigned int pipe; - u64 sequence; - union { - struct drm_event base; - struct drm_event_vblank vbl; - struct drm_event_crtc_sequence seq; - } event; -}; - -struct drm_mode_set; - -struct drm_crtc_funcs { - void (*reset)(struct drm_crtc *); - int (*cursor_set)(struct drm_crtc *, struct drm_file *, uint32_t, uint32_t, uint32_t); - int (*cursor_set2)(struct drm_crtc *, struct drm_file *, uint32_t, uint32_t, uint32_t, int32_t, int32_t); - int (*cursor_move)(struct drm_crtc *, int, int); - int (*gamma_set)(struct drm_crtc *, u16 *, u16 *, u16 *, uint32_t, struct drm_modeset_acquire_ctx *); - void (*destroy)(struct drm_crtc *); - int (*set_config)(struct drm_mode_set *, struct drm_modeset_acquire_ctx *); - int (*page_flip)(struct drm_crtc *, struct drm_framebuffer *, struct drm_pending_vblank_event *, uint32_t, struct drm_modeset_acquire_ctx *); - int (*page_flip_target)(struct drm_crtc *, struct drm_framebuffer *, struct drm_pending_vblank_event *, uint32_t, uint32_t, struct drm_modeset_acquire_ctx *); - int (*set_property)(struct drm_crtc *, struct drm_property *, uint64_t); - struct drm_crtc_state * (*atomic_duplicate_state)(struct drm_crtc *); - void (*atomic_destroy_state)(struct drm_crtc *, struct drm_crtc_state *); - int (*atomic_set_property)(struct drm_crtc *, struct drm_crtc_state *, struct drm_property *, uint64_t); - int (*atomic_get_property)(struct drm_crtc *, const struct drm_crtc_state *, struct drm_property *, uint64_t *); - int (*late_register)(struct drm_crtc *); - void (*early_unregister)(struct drm_crtc *); - int (*set_crc_source)(struct drm_crtc *, const char *); - int (*verify_crc_source)(struct drm_crtc *, const char *, size_t *); - const char * const * (*get_crc_sources)(struct drm_crtc *, size_t *); - void (*atomic_print_state)(struct drm_printer *, const struct drm_crtc_state *); - u32 (*get_vblank_counter)(struct drm_crtc *); - int (*enable_vblank)(struct drm_crtc *); - void (*disable_vblank)(struct drm_crtc *); - bool (*get_vblank_timestamp)(struct drm_crtc *, int *, ktime_t *, bool); -}; - -struct drm_mode_set { - struct drm_framebuffer *fb; - struct drm_crtc *crtc; - struct drm_display_mode *mode; - uint32_t x; - uint32_t y; - struct drm_connector **connectors; - size_t num_connectors; -}; - -enum mode_set_atomic { - LEAVE_ATOMIC_MODE_SET = 0, - ENTER_ATOMIC_MODE_SET = 1, -}; - -struct drm_crtc_helper_funcs { - void (*dpms)(struct drm_crtc *, int); - void (*prepare)(struct drm_crtc *); - void (*commit)(struct drm_crtc *); - enum drm_mode_status (*mode_valid)(struct drm_crtc *, const struct drm_display_mode *); - bool (*mode_fixup)(struct drm_crtc *, const struct drm_display_mode *, struct drm_display_mode *); - int (*mode_set)(struct drm_crtc *, struct drm_display_mode *, struct drm_display_mode *, int, int, struct drm_framebuffer *); - void (*mode_set_nofb)(struct drm_crtc *); - int (*mode_set_base)(struct drm_crtc *, int, int, struct drm_framebuffer *); - int (*mode_set_base_atomic)(struct drm_crtc *, struct drm_framebuffer *, int, int, enum mode_set_atomic); - void (*disable)(struct drm_crtc *); - int (*atomic_check)(struct drm_crtc *, struct drm_atomic_state *); - void (*atomic_begin)(struct drm_crtc *, struct drm_atomic_state *); - void (*atomic_flush)(struct drm_crtc *, struct drm_atomic_state *); - void (*atomic_enable)(struct drm_crtc *, struct drm_atomic_state *); - void (*atomic_disable)(struct drm_crtc *, struct drm_atomic_state *); - bool (*get_scanout_position)(struct drm_crtc *, bool, int *, int *, ktime_t *, ktime_t *, const struct drm_display_mode *); -}; - -struct __drm_planes_state { - struct drm_plane *ptr; - struct drm_plane_state *state; - struct drm_plane_state *old_state; - struct drm_plane_state *new_state; -}; - -struct __drm_crtcs_state { - struct drm_crtc *ptr; - struct drm_crtc_state *state; - struct drm_crtc_state *old_state; - struct drm_crtc_state *new_state; - struct drm_crtc_commit *commit; - s32 *out_fence_ptr; - u64 last_vblank_count; -}; - -struct __drm_connnectors_state { - struct drm_connector *ptr; - struct drm_connector_state *state; - struct drm_connector_state *old_state; - struct drm_connector_state *new_state; - s32 *out_fence_ptr; -}; - -struct drm_private_state; - -struct drm_private_obj; - -struct drm_private_state_funcs { - struct drm_private_state * (*atomic_duplicate_state)(struct drm_private_obj *); - void (*atomic_destroy_state)(struct drm_private_obj *, struct drm_private_state *); - void (*atomic_print_state)(struct drm_printer *, const struct drm_private_state *); -}; - -struct drm_private_state { - struct drm_atomic_state *state; - struct drm_private_obj *obj; -}; - -struct drm_private_obj { - struct list_head head; - struct drm_modeset_lock lock; - struct drm_private_state *state; - const struct drm_private_state_funcs *funcs; -}; - -struct __drm_private_objs_state { - struct drm_private_obj *ptr; - struct drm_private_state *state; - struct drm_private_state *old_state; - struct drm_private_state *new_state; -}; - -struct drm_client_dev; - -struct drm_client_funcs { - struct module *owner; - void (*unregister)(struct drm_client_dev *); - int (*restore)(struct drm_client_dev *); - int (*hotplug)(struct drm_client_dev *); -}; - -struct drm_client_dev { - struct drm_device *dev; - const char *name; - struct list_head list; - const struct drm_client_funcs *funcs; - struct drm_file *file; - struct mutex modeset_mutex; - struct drm_mode_set *modesets; - bool hotplug_failed; -}; - -enum drm_driver_feature { - DRIVER_GEM = 1, - DRIVER_MODESET = 2, - DRIVER_RENDER = 8, - DRIVER_ATOMIC = 16, - DRIVER_SYNCOBJ = 32, - DRIVER_SYNCOBJ_TIMELINE = 64, - DRIVER_COMPUTE_ACCEL = 128, - DRIVER_GEM_GPUVA = 256, - DRIVER_CURSOR_HOTSPOT = 512, - DRIVER_USE_AGP = 33554432, - DRIVER_LEGACY = 67108864, - DRIVER_PCI_DMA = 134217728, - DRIVER_SG = 268435456, - DRIVER_HAVE_DMA = 536870912, - DRIVER_HAVE_IRQ = 1073741824, -}; - -enum drm_ioctl_flags { - DRM_AUTH = 1, - DRM_MASTER = 2, - DRM_ROOT_ONLY = 4, - DRM_RENDER_ALLOW = 32, -}; - -typedef int drm_ioctl_t(struct drm_device *, void *, struct drm_file *); - -struct drm_ioctl_desc { - unsigned int cmd; - enum drm_ioctl_flags flags; - drm_ioctl_t *func; - const char *name; -}; - -struct drm_encoder_funcs { - void (*reset)(struct drm_encoder *); - void (*destroy)(struct drm_encoder *); - int (*late_register)(struct drm_encoder *); - void (*early_unregister)(struct drm_encoder *); - void (*debugfs_init)(struct drm_encoder *, struct dentry *); -}; - -struct drm_encoder_helper_funcs { - void (*dpms)(struct drm_encoder *, int); - enum drm_mode_status (*mode_valid)(struct drm_encoder *, const struct drm_display_mode *); - bool (*mode_fixup)(struct drm_encoder *, const struct drm_display_mode *, struct drm_display_mode *); - void (*prepare)(struct drm_encoder *); - void (*commit)(struct drm_encoder *); - void (*mode_set)(struct drm_encoder *, struct drm_display_mode *, struct drm_display_mode *); - void (*atomic_mode_set)(struct drm_encoder *, struct drm_crtc_state *, struct drm_connector_state *); - enum drm_connector_status (*detect)(struct drm_encoder *, struct drm_connector *); - void (*atomic_disable)(struct drm_encoder *, struct drm_atomic_state *); - void (*atomic_enable)(struct drm_encoder *, struct drm_atomic_state *); - void (*disable)(struct drm_encoder *); - void (*enable)(struct drm_encoder *); - int (*atomic_check)(struct drm_encoder *, struct drm_crtc_state *, struct drm_connector_state *); -}; - -struct kthread_work; - -typedef void (*kthread_work_func_t)(struct kthread_work *); - -struct kthread_work { - struct list_head node; - kthread_work_func_t func; - struct kthread_worker *worker; - int canceling; -}; - -struct kthread_worker { - unsigned int flags; - raw_spinlock_t lock; - struct list_head work_list; - struct list_head delayed_work_list; - struct task_struct *task; - struct kthread_work *current_work; -}; - -struct drm_client_offset { - int x; - int y; -}; - -struct rb_augment_callbacks { - void (*propagate)(struct rb_node *, struct rb_node *); - void (*copy)(struct rb_node *, struct rb_node *); - void (*rotate)(struct rb_node *, struct rb_node *); -}; - -enum drm_mm_insert_mode { - DRM_MM_INSERT_BEST = 0, - DRM_MM_INSERT_LOW = 1, - DRM_MM_INSERT_HIGH = 2, - DRM_MM_INSERT_EVICT = 3, - DRM_MM_INSERT_ONCE = 2147483648, - DRM_MM_INSERT_HIGHEST = 2147483650, - DRM_MM_INSERT_LOWEST = 2147483649, -}; - -struct drm_mm; - -struct drm_mm_node { - long unsigned int color; - u64 start; - u64 size; - struct drm_mm *mm; - struct list_head node_list; - struct list_head hole_stack; - struct rb_node rb; - struct rb_node rb_hole_size; - struct rb_node rb_hole_addr; - u64 __subtree_last; - u64 hole_size; - u64 subtree_max_hole; - long unsigned int flags; -}; - -struct drm_mm { - void (*color_adjust)(const struct drm_mm_node *, long unsigned int, u64 *, u64 *); - struct list_head hole_stack; - struct drm_mm_node head_node; - struct rb_root_cached interval_tree; - struct rb_root_cached holes_size; - struct rb_root holes_addr; - long unsigned int scan_active; -}; - -struct drm_mm_scan { - struct drm_mm *mm; - u64 size; - u64 alignment; - u64 remainder_mask; - u64 range_start; - u64 range_end; - u64 hit_start; - u64 hit_end; - long unsigned int color; - enum drm_mm_insert_mode mode; -}; - -struct drm_clip_rect { - short unsigned int x1; - short unsigned int y1; - short unsigned int x2; - short unsigned int y2; -}; - -struct drm_mode_set_plane { - __u32 plane_id; - __u32 crtc_id; - __u32 fb_id; - __u32 flags; - __s32 crtc_x; - __s32 crtc_y; - __u32 crtc_w; - __u32 crtc_h; - __u32 src_x; - __u32 src_y; - __u32 src_h; - __u32 src_w; -}; - -struct drm_mode_get_plane { - __u32 plane_id; - __u32 crtc_id; - __u32 fb_id; - __u32 possible_crtcs; - __u32 gamma_size; - __u32 count_format_types; - __u64 format_type_ptr; -}; - -struct drm_mode_get_plane_res { - __u64 plane_id_ptr; - __u32 count_planes; -}; - -struct drm_mode_cursor { - __u32 flags; - __u32 crtc_id; - __s32 x; - __s32 y; - __u32 width; - __u32 height; - __u32 handle; -}; - -struct drm_mode_cursor2 { - __u32 flags; - __u32 crtc_id; - __s32 x; - __s32 y; - __u32 width; - __u32 height; - __u32 handle; - __s32 hot_x; - __s32 hot_y; -}; - -struct drm_plane_size_hint { - __u16 width; - __u16 height; -}; - -struct drm_mode_crtc_page_flip_target { - __u32 crtc_id; - __u32 fb_id; - __u32 flags; - __u32 sequence; - __u64 user_data; -}; - -struct drm_format_modifier_blob { - __u32 version; - __u32 flags; - __u32 count_formats; - __u32 formats_offset; - __u32 count_modifiers; - __u32 modifiers_offset; -}; - -struct drm_format_modifier { - __u64 formats; - __u32 offset; - __u32 pad; - __u64 modifier; -}; - -struct drm_mode_rect { - __s32 x1; - __s32 y1; - __s32 x2; - __s32 y2; -}; - -struct drm_prop_enum_list { - int type; - const char *name; -}; - -struct drm_framebuffer_funcs; - -struct drm_framebuffer { - struct drm_device *dev; - struct list_head head; - struct drm_mode_object base; - char comm[16]; - const struct drm_format_info *format; - const struct drm_framebuffer_funcs *funcs; - unsigned int pitches[4]; - unsigned int offsets[4]; - uint64_t modifier; - unsigned int width; - unsigned int height; - int flags; - unsigned int internal_flags; - struct list_head filp_head; - struct drm_gem_object *obj[4]; -}; - -struct drm_framebuffer_funcs { - void (*destroy)(struct drm_framebuffer *); - int (*create_handle)(struct drm_framebuffer *, struct drm_file *, unsigned int *); - int (*dirty)(struct drm_framebuffer *, struct drm_file *, unsigned int, unsigned int, struct drm_clip_rect *, unsigned int); -}; - -typedef void (*drmres_release_t)(struct drm_device *, void *); - -enum class_map_type { - DD_CLASS_TYPE_DISJOINT_BITS = 0, - DD_CLASS_TYPE_LEVEL_NUM = 1, - DD_CLASS_TYPE_DISJOINT_NAMES = 2, - DD_CLASS_TYPE_LEVEL_NAMES = 3, -}; - -struct ddebug_class_map { - struct list_head link; - struct module *mod; - const char *mod_name; - const char **class_names; - const int length; - const int base; - enum class_map_type map_type; -}; - -struct drm_bus_cfg { - u32 format; - u32 flags; -}; - -struct drm_bridge; - -struct drm_bridge_state { - struct drm_private_state base; - struct drm_bridge *bridge; - struct drm_bus_cfg input_bus_cfg; - struct drm_bus_cfg output_bus_cfg; -}; - -enum drm_bridge_ops { - DRM_BRIDGE_OP_DETECT = 1, - DRM_BRIDGE_OP_EDID = 2, - DRM_BRIDGE_OP_HPD = 4, - DRM_BRIDGE_OP_MODES = 8, - DRM_BRIDGE_OP_HDMI = 16, -}; - -struct drm_bridge_timings; - -struct drm_bridge_funcs; - -struct drm_bridge { - struct drm_private_obj base; - struct drm_device *dev; - struct drm_encoder *encoder; - struct list_head chain_node; - struct device_node *of_node; - struct list_head list; - const struct drm_bridge_timings *timings; - const struct drm_bridge_funcs *funcs; - void *driver_private; - enum drm_bridge_ops ops; - int type; - bool interlace_allowed; - bool pre_enable_prev_first; - struct i2c_adapter *ddc; - struct mutex hpd_mutex; - void (*hpd_cb)(void *, enum drm_connector_status); - void *hpd_data; - const char *vendor; - const char *product; - unsigned int supported_formats; - unsigned int max_bpc; -}; - -enum drm_bridge_attach_flags { - DRM_BRIDGE_ATTACH_NO_CONNECTOR = 1, -}; - -struct drm_bridge_funcs { - int (*attach)(struct drm_bridge *, enum drm_bridge_attach_flags); - void (*detach)(struct drm_bridge *); - enum drm_mode_status (*mode_valid)(struct drm_bridge *, const struct drm_display_info *, const struct drm_display_mode *); - bool (*mode_fixup)(struct drm_bridge *, const struct drm_display_mode *, struct drm_display_mode *); - void (*disable)(struct drm_bridge *); - void (*post_disable)(struct drm_bridge *); - void (*mode_set)(struct drm_bridge *, const struct drm_display_mode *, const struct drm_display_mode *); - void (*pre_enable)(struct drm_bridge *); - void (*enable)(struct drm_bridge *); - void (*atomic_pre_enable)(struct drm_bridge *, struct drm_bridge_state *); - void (*atomic_enable)(struct drm_bridge *, struct drm_bridge_state *); - void (*atomic_disable)(struct drm_bridge *, struct drm_bridge_state *); - void (*atomic_post_disable)(struct drm_bridge *, struct drm_bridge_state *); - struct drm_bridge_state * (*atomic_duplicate_state)(struct drm_bridge *); - void (*atomic_destroy_state)(struct drm_bridge *, struct drm_bridge_state *); - u32 * (*atomic_get_output_bus_fmts)(struct drm_bridge *, struct drm_bridge_state *, struct drm_crtc_state *, struct drm_connector_state *, unsigned int *); - u32 * (*atomic_get_input_bus_fmts)(struct drm_bridge *, struct drm_bridge_state *, struct drm_crtc_state *, struct drm_connector_state *, u32, unsigned int *); - int (*atomic_check)(struct drm_bridge *, struct drm_bridge_state *, struct drm_crtc_state *, struct drm_connector_state *); - struct drm_bridge_state * (*atomic_reset)(struct drm_bridge *); - enum drm_connector_status (*detect)(struct drm_bridge *); - int (*get_modes)(struct drm_bridge *, struct drm_connector *); - const struct drm_edid * (*edid_read)(struct drm_bridge *, struct drm_connector *); - void (*hpd_notify)(struct drm_bridge *, enum drm_connector_status); - void (*hpd_enable)(struct drm_bridge *); - void (*hpd_disable)(struct drm_bridge *); - enum drm_mode_status (*hdmi_tmds_char_rate_valid)(const struct drm_bridge *, const struct drm_display_mode *, long long unsigned int); - int (*hdmi_clear_infoframe)(struct drm_bridge *, enum hdmi_infoframe_type); - int (*hdmi_write_infoframe)(struct drm_bridge *, enum hdmi_infoframe_type, const u8 *, size_t); - void (*debugfs_init)(struct drm_bridge *, struct dentry *); -}; - -struct drm_bridge_timings { - u32 input_bus_flags; - u32 setup_time_ps; - u32 hold_time_ps; - bool dual_link; -}; - -struct est_timings { - u8 t1; - u8 t2; - u8 mfg_rsvd; -}; - -struct std_timing { - u8 hsize; - u8 vfreq_aspect; -}; - -struct detailed_pixel_timing { - u8 hactive_lo; - u8 hblank_lo; - u8 hactive_hblank_hi; - u8 vactive_lo; - u8 vblank_lo; - u8 vactive_vblank_hi; - u8 hsync_offset_lo; - u8 hsync_pulse_width_lo; - u8 vsync_offset_pulse_width_lo; - u8 hsync_vsync_offset_pulse_width_hi; - u8 width_mm_lo; - u8 height_mm_lo; - u8 width_height_mm_hi; - u8 hborder; - u8 vborder; - u8 misc; -}; - -struct detailed_data_string { - u8 str[13]; -}; - -struct detailed_data_monitor_range { - u8 min_vfreq; - u8 max_vfreq; - u8 min_hfreq_khz; - u8 max_hfreq_khz; - u8 pixel_clock_mhz; - u8 flags; - union { - struct { - u8 reserved; - u8 hfreq_start_khz; - u8 c; - __le16 m; - u8 k; - u8 j; - } __attribute__((packed)) gtf2; - struct { - u8 version; - u8 data1; - u8 data2; - u8 supported_aspects; - u8 flags; - u8 supported_scalings; - u8 preferred_refresh; - } cvt; - } formula; -}; - -struct detailed_data_wpindex { - u8 white_yx_lo; - u8 white_x_hi; - u8 white_y_hi; - u8 gamma; -}; - -struct cvt_timing { - u8 code[3]; -}; - -struct detailed_non_pixel { - u8 pad1; - u8 type; - u8 pad2; - union { - struct detailed_data_string str; - struct detailed_data_monitor_range range; - struct detailed_data_wpindex color; - struct std_timing timings[6]; - struct cvt_timing cvt[4]; - } data; -}; - -struct detailed_timing { - __le16 pixel_clock; - union { - struct detailed_pixel_timing pixel_data; - struct detailed_non_pixel other_data; - } data; -}; - -struct drm_edid_product_id { - __be16 manufacturer_name; - __le16 product_code; - __le32 serial_number; - u8 week_of_manufacture; - u8 year_of_manufacture; -} __attribute__((packed)); - -struct edid { - u8 header[8]; - union { - struct drm_edid_product_id product_id; - struct { - u8 mfg_id[2]; - u8 prod_code[2]; - u32 serial; - u8 mfg_week; - u8 mfg_year; - } __attribute__((packed)); - }; - u8 version; - u8 revision; - u8 input; - u8 width_cm; - u8 height_cm; - u8 gamma; - u8 features; - u8 red_green_lo; - u8 blue_white_lo; - u8 red_x; - u8 red_y; - u8 green_x; - u8 green_y; - u8 blue_x; - u8 blue_y; - u8 white_x; - u8 white_y; - struct est_timings established_timings; - struct std_timing standard_timings[8]; - struct detailed_timing detailed_timings[4]; - u8 extensions; - u8 checksum; -}; - -struct component_ops { - int (*bind)(struct device *, struct device *, void *); - void (*unbind)(struct device *, struct device *, void *); -}; - -struct component_master_ops { - int (*bind)(struct device *); - void (*unbind)(struct device *); -}; - -struct component; - -struct component_match_array { - void *data; - int (*compare)(struct device *, void *); - int (*compare_typed)(struct device *, int, void *); - void (*release)(struct device *, void *); - struct component *component; - bool duplicate; -}; - -struct aggregate_device; - -struct component { - struct list_head node; - struct aggregate_device *adev; - bool bound; - const struct component_ops *ops; - int subcomponent; - struct device *dev; -}; - -struct component_match { - size_t alloc; - size_t num; - struct component_match_array *compare; -}; - -struct aggregate_device { - struct list_head node; - bool bound; - const struct component_master_ops *ops; - struct device *parent; - struct component_match *match; -}; - -struct klist_node; - -struct klist { - spinlock_t k_lock; - struct list_head k_list; - void (*get)(struct klist_node *); - void (*put)(struct klist_node *); -}; - -struct klist_node { - void *n_klist; - struct list_head n_node; - struct kref n_ref; -}; - -struct pm_qos_flags { - struct list_head list; - s32 effective_flags; -}; - -struct dev_pm_qos_request; - -struct dev_pm_qos { - struct pm_qos_constraints resume_latency; - struct pm_qos_constraints latency_tolerance; - struct freq_constraints freq; - struct pm_qos_flags flags; - struct dev_pm_qos_request *resume_latency_req; - struct dev_pm_qos_request *latency_tolerance_req; - struct dev_pm_qos_request *flags_req; -}; - -typedef int (*device_match_t)(struct device *, const void *); - -struct driver_private { - struct kobject kobj; - struct klist klist_devices; - struct klist_node knode_bus; - struct module_kobject *mkobj; - struct device_driver *driver; -}; - -enum irq_domain_bus_token { - DOMAIN_BUS_ANY = 0, - DOMAIN_BUS_WIRED = 1, - DOMAIN_BUS_GENERIC_MSI = 2, - DOMAIN_BUS_PCI_MSI = 3, - DOMAIN_BUS_PLATFORM_MSI = 4, - DOMAIN_BUS_NEXUS = 5, - DOMAIN_BUS_IPI = 6, - DOMAIN_BUS_FSL_MC_MSI = 7, - DOMAIN_BUS_TI_SCI_INTA_MSI = 8, - DOMAIN_BUS_WAKEUP = 9, - DOMAIN_BUS_VMD_MSI = 10, - DOMAIN_BUS_PCI_DEVICE_MSI = 11, - DOMAIN_BUS_PCI_DEVICE_MSIX = 12, - DOMAIN_BUS_DMAR = 13, - DOMAIN_BUS_AMDVI = 14, - DOMAIN_BUS_DEVICE_MSI = 15, - DOMAIN_BUS_WIRED_TO_MSI = 16, -}; - -struct irq_domain_ops; - -struct irq_domain_chip_generic; - -struct msi_parent_ops; - -struct irq_domain { - struct list_head link; - const char *name; - const struct irq_domain_ops *ops; - void *host_data; - unsigned int flags; - unsigned int mapcount; - struct mutex mutex; - struct irq_domain *root; - struct fwnode_handle *fwnode; - enum irq_domain_bus_token bus_token; - struct irq_domain_chip_generic *gc; - struct device *dev; - struct device *pm_dev; - struct irq_domain *parent; - const struct msi_parent_ops *msi_parent_ops; - void (*exit)(struct irq_domain *); - irq_hw_number_t hwirq_max; - unsigned int revmap_size; - struct xarray revmap_tree; - struct irq_data *revmap[0]; -}; - -struct device_private { - struct klist klist_children; - struct klist_node knode_parent; - struct klist_node knode_driver; - struct klist_node knode_bus; - struct klist_node knode_class; - struct list_head deferred_probe; - const struct device_driver *async_driver; - char *deferred_probe_reason; - struct device *device; - u8 dead: 1; -}; - -struct iommu_group {}; - -struct property_entry; - -struct platform_device_info { - struct device *parent; - struct fwnode_handle *fwnode; - bool of_node_reused; - const char *name; - int id; - const struct resource *res; - unsigned int num_res; - const void *data; - size_t size_data; - u64 dma_mask; - const struct property_entry *properties; -}; - -enum dev_prop_type { - DEV_PROP_U8 = 0, - DEV_PROP_U16 = 1, - DEV_PROP_U32 = 2, - DEV_PROP_U64 = 3, - DEV_PROP_STRING = 4, - DEV_PROP_REF = 5, -}; - -struct property_entry { - const char *name; - size_t length; - bool is_inline; - enum dev_prop_type type; - union { - const void *pointer; - union { - u8 u8_data[8]; - u16 u16_data[4]; - u32 u32_data[2]; - u64 u64_data[1]; - const char *str[1]; - } value; - }; -}; - -struct irq_desc; - -typedef void (*irq_flow_handler_t)(struct irq_desc *); - -struct irqstat; - -struct irqaction; - -struct irq_affinity_notify; - -struct irq_desc { - struct irq_common_data irq_common_data; - struct irq_data irq_data; - struct irqstat *kstat_irqs; - irq_flow_handler_t handle_irq; - struct irqaction *action; - unsigned int status_use_accessors; - unsigned int core_internal_state__do_not_mess_with_it; - unsigned int depth; - unsigned int wake_depth; - unsigned int tot_count; - unsigned int irq_count; - long unsigned int last_unhandled; - unsigned int irqs_unhandled; - atomic_t threads_handled; - int threads_handled_last; - raw_spinlock_t lock; - struct cpumask *percpu_enabled; - const struct cpumask *percpu_affinity; - const struct cpumask *affinity_hint; - struct irq_affinity_notify *affinity_notify; - long unsigned int threads_oneshot; - atomic_t threads_active; - wait_queue_head_t wait_for_threads; - struct proc_dir_entry *dir; - struct callback_head rcu; - struct kobject kobj; - struct mutex request_mutex; - int parent_irq; - struct module *owner; - const char *name; - struct hlist_node resend_node; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum { - IRQD_TRIGGER_MASK = 15, - IRQD_SETAFFINITY_PENDING = 256, - IRQD_ACTIVATED = 512, - IRQD_NO_BALANCING = 1024, - IRQD_PER_CPU = 2048, - IRQD_AFFINITY_SET = 4096, - IRQD_LEVEL = 8192, - IRQD_WAKEUP_STATE = 16384, - IRQD_MOVE_PCNTXT = 32768, - IRQD_IRQ_DISABLED = 65536, - IRQD_IRQ_MASKED = 131072, - IRQD_IRQ_INPROGRESS = 262144, - IRQD_WAKEUP_ARMED = 524288, - IRQD_FORWARDED_TO_VCPU = 1048576, - IRQD_AFFINITY_MANAGED = 2097152, - IRQD_IRQ_STARTED = 4194304, - IRQD_MANAGED_SHUTDOWN = 8388608, - IRQD_SINGLE_TARGET = 16777216, - IRQD_DEFAULT_TRIGGER_SET = 33554432, - IRQD_CAN_RESERVE = 67108864, - IRQD_HANDLE_ENFORCE_IRQCTX = 134217728, - IRQD_AFFINITY_ON_ACTIVATE = 268435456, - IRQD_IRQ_ENABLED_ON_SUSPEND = 536870912, - IRQD_RESEND_WHEN_IN_PROGRESS = 1073741824, -}; - -struct irqstat { - unsigned int cnt; -}; - -typedef irqreturn_t (*irq_handler_t)(int, void *); - -struct irqaction { - irq_handler_t handler; - void *dev_id; - void *percpu_dev_id; - struct irqaction *next; - irq_handler_t thread_fn; - struct task_struct *thread; - struct irqaction *secondary; - unsigned int irq; - unsigned int flags; - long unsigned int thread_flags; - long unsigned int thread_mask; - const char *name; - struct proc_dir_entry *dir; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct irq_affinity_notify { - unsigned int irq; - struct kref kref; - struct work_struct work; - void (*notify)(struct irq_affinity_notify *, const cpumask_t *); - void (*release)(struct kref *); -}; - -struct irq_chip_regs { - long unsigned int enable; - long unsigned int disable; - long unsigned int mask; - long unsigned int ack; - long unsigned int eoi; - long unsigned int type; -}; - -struct irq_chip_type { - struct irq_chip chip; - struct irq_chip_regs regs; - irq_flow_handler_t handler; - u32 type; - u32 mask_cache_priv; - u32 *mask_cache; -}; - -struct irq_chip_generic { - raw_spinlock_t lock; - void *reg_base; - u32 (*reg_readl)(void *); - void (*reg_writel)(u32, void *); - void (*suspend)(struct irq_chip_generic *); - void (*resume)(struct irq_chip_generic *); - unsigned int irq_base; - unsigned int irq_cnt; - u32 mask_cache; - u32 wake_enabled; - u32 wake_active; - unsigned int num_ct; - void *private; - long unsigned int installed; - long unsigned int unused; - struct irq_domain *domain; - struct list_head list; - struct irq_chip_type chip_types[0]; -}; - -enum irq_gc_flags { - IRQ_GC_INIT_MASK_CACHE = 1, - IRQ_GC_INIT_NESTED_LOCK = 2, - IRQ_GC_MASK_CACHE_PER_TYPE = 4, - IRQ_GC_NO_MASK = 8, - IRQ_GC_BE_IO = 16, -}; - -struct irq_domain_chip_generic { - unsigned int irqs_per_chip; - unsigned int num_chips; - unsigned int irq_flags_to_clear; - unsigned int irq_flags_to_set; - enum irq_gc_flags gc_flags; - void (*exit)(struct irq_chip_generic *); - struct irq_chip_generic *gc[0]; -}; - -struct software_node { - const char *name; - const struct software_node *parent; - const struct property_entry *properties; -}; - -struct irq_fwspec { - struct fwnode_handle *fwnode; - int param_count; - u32 param[16]; -}; - -struct irq_domain_ops { - int (*match)(struct irq_domain *, struct device_node *, enum irq_domain_bus_token); - int (*select)(struct irq_domain *, struct irq_fwspec *, enum irq_domain_bus_token); - int (*map)(struct irq_domain *, unsigned int, irq_hw_number_t); - void (*unmap)(struct irq_domain *, unsigned int); - int (*xlate)(struct irq_domain *, struct device_node *, const u32 *, unsigned int, long unsigned int *, unsigned int *); - int (*alloc)(struct irq_domain *, unsigned int, unsigned int, void *); - void (*free)(struct irq_domain *, unsigned int, unsigned int); - int (*activate)(struct irq_domain *, struct irq_data *, bool); - void (*deactivate)(struct irq_domain *, struct irq_data *); - int (*translate)(struct irq_domain *, struct irq_fwspec *, long unsigned int *, unsigned int *); -}; - -struct msi_domain_info; - -struct msi_parent_ops { - u32 supported_flags; - u32 required_flags; - u32 bus_select_token; - u32 bus_select_mask; - const char *prefix; - bool (*init_dev_msi_info)(struct device *, struct irq_domain *, struct irq_domain *, struct msi_domain_info *); -}; - -typedef void *acpi_handle; - -struct pm_qos_flags_request { - struct list_head node; - s32 flags; -}; - -enum dev_pm_qos_req_type { - DEV_PM_QOS_RESUME_LATENCY = 1, - DEV_PM_QOS_LATENCY_TOLERANCE = 2, - DEV_PM_QOS_MIN_FREQUENCY = 3, - DEV_PM_QOS_MAX_FREQUENCY = 4, - DEV_PM_QOS_FLAGS = 5, -}; - -struct dev_pm_qos_request { - enum dev_pm_qos_req_type type; - union { - struct plist_node pnode; - struct pm_qos_flags_request flr; - struct freq_qos_request freq; - } data; - struct device *dev; -}; - -struct irq_affinity_devres { - unsigned int count; - unsigned int irq[0]; -}; - -struct platform_object { - struct platform_device pdev; - char name[0]; -}; - -struct acpi_device; - -struct cpu_topology { - int thread_id; - int core_id; - int cluster_id; - int package_id; - cpumask_t thread_sibling; - cpumask_t core_sibling; - cpumask_t cluster_sibling; - cpumask_t llc_sibling; -}; - -struct cpu { - int node_id; - int hotpluggable; - struct device dev; -}; - -struct of_phandle_args { - struct device_node *np; - int args_count; - uint32_t args[16]; -}; - -struct trace_event_raw_hw_pressure_update { - struct trace_entry ent; - long unsigned int hw_pressure; - int cpu; - char __data[0]; -}; - -struct trace_event_data_offsets_hw_pressure_update {}; - -typedef void (*btf_trace_hw_pressure_update)(void *, int, long unsigned int); - -typedef __u64 blist_flags_t; - -enum scsi_device_state { - SDEV_CREATED = 1, - SDEV_RUNNING = 2, - SDEV_CANCEL = 3, - SDEV_DEL = 4, - SDEV_QUIESCE = 5, - SDEV_OFFLINE = 6, - SDEV_TRANSPORT_OFFLINE = 7, - SDEV_BLOCK = 8, - SDEV_CREATED_BLOCK = 9, -}; - -struct scsi_vpd { - struct callback_head rcu; - int len; - unsigned char data[0]; -}; - -struct Scsi_Host; - -struct scsi_target; - -struct scsi_device_handler; - -struct scsi_device { - struct Scsi_Host *host; - struct request_queue *request_queue; - struct list_head siblings; - struct list_head same_target_siblings; - struct sbitmap budget_map; - atomic_t device_blocked; - atomic_t restarts; - spinlock_t list_lock; - struct list_head starved_entry; - short unsigned int queue_depth; - short unsigned int max_queue_depth; - short unsigned int last_queue_full_depth; - short unsigned int last_queue_full_count; - long unsigned int last_queue_full_time; - long unsigned int queue_ramp_up_period; - long unsigned int last_queue_ramp_up; - unsigned int id; - unsigned int channel; - u64 lun; - unsigned int manufacturer; - unsigned int sector_size; - void *hostdata; - unsigned char type; - char scsi_level; - char inq_periph_qual; - struct mutex inquiry_mutex; - unsigned char inquiry_len; - unsigned char *inquiry; - const char *vendor; - const char *model; - const char *rev; - struct scsi_vpd *vpd_pg0; - struct scsi_vpd *vpd_pg83; - struct scsi_vpd *vpd_pg80; - struct scsi_vpd *vpd_pg89; - struct scsi_vpd *vpd_pgb0; - struct scsi_vpd *vpd_pgb1; - struct scsi_vpd *vpd_pgb2; - struct scsi_vpd *vpd_pgb7; - struct scsi_target *sdev_target; - blist_flags_t sdev_bflags; - unsigned int eh_timeout; - unsigned int manage_system_start_stop: 1; - unsigned int manage_runtime_start_stop: 1; - unsigned int manage_shutdown: 1; - unsigned int force_runtime_start_on_system_start: 1; - unsigned int removable: 1; - unsigned int changed: 1; - unsigned int busy: 1; - unsigned int lockable: 1; - unsigned int locked: 1; - unsigned int borken: 1; - unsigned int disconnect: 1; - unsigned int soft_reset: 1; - unsigned int sdtr: 1; - unsigned int wdtr: 1; - unsigned int ppr: 1; - unsigned int tagged_supported: 1; - unsigned int simple_tags: 1; - unsigned int was_reset: 1; - unsigned int expecting_cc_ua: 1; - unsigned int use_10_for_rw: 1; - unsigned int use_10_for_ms: 1; - unsigned int set_dbd_for_ms: 1; - unsigned int read_before_ms: 1; - unsigned int no_report_opcodes: 1; - unsigned int no_write_same: 1; - unsigned int use_16_for_rw: 1; - unsigned int use_16_for_sync: 1; - unsigned int skip_ms_page_8: 1; - unsigned int skip_ms_page_3f: 1; - unsigned int skip_vpd_pages: 1; - unsigned int try_vpd_pages: 1; - unsigned int use_192_bytes_for_3f: 1; - unsigned int no_start_on_add: 1; - unsigned int allow_restart: 1; - unsigned int start_stop_pwr_cond: 1; - unsigned int no_uld_attach: 1; - unsigned int select_no_atn: 1; - unsigned int fix_capacity: 1; - unsigned int guess_capacity: 1; - unsigned int retry_hwerror: 1; - unsigned int last_sector_bug: 1; - unsigned int no_read_disc_info: 1; - unsigned int no_read_capacity_16: 1; - unsigned int try_rc_10_first: 1; - unsigned int security_supported: 1; - unsigned int is_visible: 1; - unsigned int wce_default_on: 1; - unsigned int no_dif: 1; - unsigned int broken_fua: 1; - unsigned int lun_in_cdb: 1; - unsigned int unmap_limit_for_ws: 1; - unsigned int rpm_autosuspend: 1; - unsigned int ignore_media_change: 1; - unsigned int silence_suspend: 1; - unsigned int no_vpd_size: 1; - unsigned int cdl_supported: 1; - unsigned int cdl_enable: 1; - unsigned int queue_stopped; - bool offline_already; - atomic_t disk_events_disable_depth; - long unsigned int supported_events[1]; - long unsigned int pending_events[1]; - struct list_head event_list; - struct work_struct event_work; - unsigned int max_device_blocked; - atomic_t iorequest_cnt; - atomic_t iodone_cnt; - atomic_t ioerr_cnt; - atomic_t iotmo_cnt; - struct device sdev_gendev; - struct device sdev_dev; - struct work_struct requeue_work; - struct scsi_device_handler *handler; - void *handler_data; - size_t dma_drain_len; - void *dma_drain_buf; - unsigned int sg_timeout; - unsigned int sg_reserved_size; - struct bsg_device *bsg_dev; - unsigned char access_state; - struct mutex state_mutex; - enum scsi_device_state sdev_state; - struct task_struct *quiesced_by; - long unsigned int sdev_data[0]; -}; - -enum scsi_target_state { - STARGET_CREATED = 1, - STARGET_RUNNING = 2, - STARGET_REMOVE = 3, - STARGET_CREATED_REMOVE = 4, - STARGET_DEL = 5, -}; - -struct scsi_target { - struct scsi_device *starget_sdev_user; - struct list_head siblings; - struct list_head devices; - struct device dev; - struct kref reap_ref; - unsigned int channel; - unsigned int id; - unsigned int create: 1; - unsigned int single_lun: 1; - unsigned int pdt_1f_for_no_lun: 1; - unsigned int no_report_luns: 1; - unsigned int expecting_lun_change: 1; - atomic_t target_busy; - atomic_t target_blocked; - unsigned int can_queue; - unsigned int max_target_blocked; - char scsi_level; - enum scsi_target_state state; - void *hostdata; - long unsigned int starget_data[0]; -}; - -enum scsi_devinfo_key { - SCSI_DEVINFO_GLOBAL = 0, - SCSI_DEVINFO_SPI = 1, -}; - -struct scsi_dev_info_list { - struct list_head dev_info_list; - char vendor[8]; - char model[16]; - blist_flags_t flags; - unsigned int compatible; -}; - -struct scsi_dev_info_list_table { - struct list_head node; - struct list_head scsi_dev_info_list; - const char *name; - int key; -}; - -struct double_list { - struct list_head *top; - struct list_head *bottom; -}; - -struct ipv4_devconf { - void *sysctl; - int data[33]; - long unsigned int state[1]; -}; - -enum { - IFLA_UNSPEC = 0, - IFLA_ADDRESS = 1, - IFLA_BROADCAST = 2, - IFLA_IFNAME = 3, - IFLA_MTU = 4, - IFLA_LINK = 5, - IFLA_QDISC = 6, - IFLA_STATS = 7, - IFLA_COST = 8, - IFLA_PRIORITY = 9, - IFLA_MASTER = 10, - IFLA_WIRELESS = 11, - IFLA_PROTINFO = 12, - IFLA_TXQLEN = 13, - IFLA_MAP = 14, - IFLA_WEIGHT = 15, - IFLA_OPERSTATE = 16, - IFLA_LINKMODE = 17, - IFLA_LINKINFO = 18, - IFLA_NET_NS_PID = 19, - IFLA_IFALIAS = 20, - IFLA_NUM_VF = 21, - IFLA_VFINFO_LIST = 22, - IFLA_STATS64 = 23, - IFLA_VF_PORTS = 24, - IFLA_PORT_SELF = 25, - IFLA_AF_SPEC = 26, - IFLA_GROUP = 27, - IFLA_NET_NS_FD = 28, - IFLA_EXT_MASK = 29, - IFLA_PROMISCUITY = 30, - IFLA_NUM_TX_QUEUES = 31, - IFLA_NUM_RX_QUEUES = 32, - IFLA_CARRIER = 33, - IFLA_PHYS_PORT_ID = 34, - IFLA_CARRIER_CHANGES = 35, - IFLA_PHYS_SWITCH_ID = 36, - IFLA_LINK_NETNSID = 37, - IFLA_PHYS_PORT_NAME = 38, - IFLA_PROTO_DOWN = 39, - IFLA_GSO_MAX_SEGS = 40, - IFLA_GSO_MAX_SIZE = 41, - IFLA_PAD = 42, - IFLA_XDP = 43, - IFLA_EVENT = 44, - IFLA_NEW_NETNSID = 45, - IFLA_IF_NETNSID = 46, - IFLA_TARGET_NETNSID = 46, - IFLA_CARRIER_UP_COUNT = 47, - IFLA_CARRIER_DOWN_COUNT = 48, - IFLA_NEW_IFINDEX = 49, - IFLA_MIN_MTU = 50, - IFLA_MAX_MTU = 51, - IFLA_PROP_LIST = 52, - IFLA_ALT_IFNAME = 53, - IFLA_PERM_ADDRESS = 54, - IFLA_PROTO_DOWN_REASON = 55, - IFLA_PARENT_DEV_NAME = 56, - IFLA_PARENT_DEV_BUS_NAME = 57, - IFLA_GRO_MAX_SIZE = 58, - IFLA_TSO_MAX_SIZE = 59, - IFLA_TSO_MAX_SEGS = 60, - IFLA_ALLMULTI = 61, - IFLA_DEVLINK_PORT = 62, - IFLA_GSO_IPV4_MAX_SIZE = 63, - IFLA_GRO_IPV4_MAX_SIZE = 64, - IFLA_DPLL_PIN = 65, - __IFLA_MAX = 66, -}; - -enum { - IFLA_BOND_UNSPEC = 0, - IFLA_BOND_MODE = 1, - IFLA_BOND_ACTIVE_SLAVE = 2, - IFLA_BOND_MIIMON = 3, - IFLA_BOND_UPDELAY = 4, - IFLA_BOND_DOWNDELAY = 5, - IFLA_BOND_USE_CARRIER = 6, - IFLA_BOND_ARP_INTERVAL = 7, - IFLA_BOND_ARP_IP_TARGET = 8, - IFLA_BOND_ARP_VALIDATE = 9, - IFLA_BOND_ARP_ALL_TARGETS = 10, - IFLA_BOND_PRIMARY = 11, - IFLA_BOND_PRIMARY_RESELECT = 12, - IFLA_BOND_FAIL_OVER_MAC = 13, - IFLA_BOND_XMIT_HASH_POLICY = 14, - IFLA_BOND_RESEND_IGMP = 15, - IFLA_BOND_NUM_PEER_NOTIF = 16, - IFLA_BOND_ALL_SLAVES_ACTIVE = 17, - IFLA_BOND_MIN_LINKS = 18, - IFLA_BOND_LP_INTERVAL = 19, - IFLA_BOND_PACKETS_PER_SLAVE = 20, - IFLA_BOND_AD_LACP_RATE = 21, - IFLA_BOND_AD_SELECT = 22, - IFLA_BOND_AD_INFO = 23, - IFLA_BOND_AD_ACTOR_SYS_PRIO = 24, - IFLA_BOND_AD_USER_PORT_KEY = 25, - IFLA_BOND_AD_ACTOR_SYSTEM = 26, - IFLA_BOND_TLB_DYNAMIC_LB = 27, - IFLA_BOND_PEER_NOTIF_DELAY = 28, - IFLA_BOND_AD_LACP_ACTIVE = 29, - IFLA_BOND_MISSED_MAX = 30, - IFLA_BOND_NS_IP6_TARGET = 31, - IFLA_BOND_COUPLED_CONTROL = 32, - __IFLA_BOND_MAX = 33, -}; - -enum { - IFLA_BOND_AD_INFO_UNSPEC = 0, - IFLA_BOND_AD_INFO_AGGREGATOR = 1, - IFLA_BOND_AD_INFO_NUM_PORTS = 2, - IFLA_BOND_AD_INFO_ACTOR_KEY = 3, - IFLA_BOND_AD_INFO_PARTNER_KEY = 4, - IFLA_BOND_AD_INFO_PARTNER_MAC = 5, - __IFLA_BOND_AD_INFO_MAX = 6, -}; - -enum { - IFLA_BOND_SLAVE_UNSPEC = 0, - IFLA_BOND_SLAVE_STATE = 1, - IFLA_BOND_SLAVE_MII_STATUS = 2, - IFLA_BOND_SLAVE_LINK_FAILURE_COUNT = 3, - IFLA_BOND_SLAVE_PERM_HWADDR = 4, - IFLA_BOND_SLAVE_QUEUE_ID = 5, - IFLA_BOND_SLAVE_AD_AGGREGATOR_ID = 6, - IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE = 7, - IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE = 8, - IFLA_BOND_SLAVE_PRIO = 9, - __IFLA_BOND_SLAVE_MAX = 10, -}; - -enum { - IFLA_STATS_UNSPEC = 0, - IFLA_STATS_LINK_64 = 1, - IFLA_STATS_LINK_XSTATS = 2, - IFLA_STATS_LINK_XSTATS_SLAVE = 3, - IFLA_STATS_LINK_OFFLOAD_XSTATS = 4, - IFLA_STATS_AF_SPEC = 5, - __IFLA_STATS_MAX = 6, -}; - -enum { - LINK_XSTATS_TYPE_UNSPEC = 0, - LINK_XSTATS_TYPE_BRIDGE = 1, - LINK_XSTATS_TYPE_BOND = 2, - __LINK_XSTATS_TYPE_MAX = 3, -}; - -struct ad_info { - __u16 aggregator_id; - __u16 ports; - __u16 actor_key; - __u16 partner_key; - __u8 partner_system[6]; -}; - -enum { - BOND_XSTATS_UNSPEC = 0, - BOND_XSTATS_3AD = 1, - __BOND_XSTATS_MAX = 2, -}; - -struct in_ifaddr; - -struct ip_mc_list; - -struct in_device { - struct net_device *dev; - netdevice_tracker dev_tracker; - refcount_t refcnt; - int dead; - struct in_ifaddr *ifa_list; - struct ip_mc_list *mc_list; - struct ip_mc_list **mc_hash; - int mc_count; - spinlock_t mc_tomb_lock; - struct ip_mc_list *mc_tomb; - long unsigned int mr_v1_seen; - long unsigned int mr_v2_seen; - long unsigned int mr_maxdelay; - long unsigned int mr_qi; - long unsigned int mr_qri; - unsigned char mr_qrv; - unsigned char mr_gq_running; - u32 mr_ifc_count; - struct timer_list mr_gq_timer; - struct timer_list mr_ifc_timer; - struct neigh_parms *arp_parms; - struct ipv4_devconf cnf; - struct callback_head callback_head; -}; - -enum { - IPV4_DEVCONF_FORWARDING = 1, - IPV4_DEVCONF_MC_FORWARDING = 2, - IPV4_DEVCONF_PROXY_ARP = 3, - IPV4_DEVCONF_ACCEPT_REDIRECTS = 4, - IPV4_DEVCONF_SECURE_REDIRECTS = 5, - IPV4_DEVCONF_SEND_REDIRECTS = 6, - IPV4_DEVCONF_SHARED_MEDIA = 7, - IPV4_DEVCONF_RP_FILTER = 8, - IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE = 9, - IPV4_DEVCONF_BOOTP_RELAY = 10, - IPV4_DEVCONF_LOG_MARTIANS = 11, - IPV4_DEVCONF_TAG = 12, - IPV4_DEVCONF_ARPFILTER = 13, - IPV4_DEVCONF_MEDIUM_ID = 14, - IPV4_DEVCONF_NOXFRM = 15, - IPV4_DEVCONF_NOPOLICY = 16, - IPV4_DEVCONF_FORCE_IGMP_VERSION = 17, - IPV4_DEVCONF_ARP_ANNOUNCE = 18, - IPV4_DEVCONF_ARP_IGNORE = 19, - IPV4_DEVCONF_PROMOTE_SECONDARIES = 20, - IPV4_DEVCONF_ARP_ACCEPT = 21, - IPV4_DEVCONF_ARP_NOTIFY = 22, - IPV4_DEVCONF_ACCEPT_LOCAL = 23, - IPV4_DEVCONF_SRC_VMARK = 24, - IPV4_DEVCONF_PROXY_ARP_PVLAN = 25, - IPV4_DEVCONF_ROUTE_LOCALNET = 26, - IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL = 27, - IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL = 28, - IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN = 29, - IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST = 30, - IPV4_DEVCONF_DROP_GRATUITOUS_ARP = 31, - IPV4_DEVCONF_BC_FORWARDING = 32, - IPV4_DEVCONF_ARP_EVICT_NOCARRIER = 33, - __IPV4_DEVCONF_MAX = 34, -}; - -struct in_ifaddr { - struct hlist_node hash; - struct in_ifaddr *ifa_next; - struct in_device *ifa_dev; - struct callback_head callback_head; - __be32 ifa_local; - __be32 ifa_address; - __be32 ifa_mask; - __u32 ifa_rt_priority; - __be32 ifa_broadcast; - unsigned char ifa_scope; - unsigned char ifa_prefixlen; - unsigned char ifa_proto; - __u32 ifa_flags; - char ifa_label[16]; - __u32 ifa_valid_lft; - __u32 ifa_preferred_lft; - long unsigned int ifa_cstamp; - long unsigned int ifa_tstamp; -}; - -struct reciprocal_value { - u32 m; - u8 sh1; - u8 sh2; -}; - -struct mac_addr { - u8 mac_addr_value[6]; -}; - -typedef enum { - AD_RX_DUMMY = 0, - AD_RX_INITIALIZE = 1, - AD_RX_PORT_DISABLED = 2, - AD_RX_LACP_DISABLED = 3, - AD_RX_EXPIRED = 4, - AD_RX_DEFAULTED = 5, - AD_RX_CURRENT = 6, -} rx_states_t; - -typedef enum { - AD_PERIODIC_DUMMY = 0, - AD_NO_PERIODIC = 1, - AD_FAST_PERIODIC = 2, - AD_SLOW_PERIODIC = 3, - AD_PERIODIC_TX = 4, -} periodic_states_t; - -typedef enum { - AD_MUX_DUMMY = 0, - AD_MUX_DETACHED = 1, - AD_MUX_WAITING = 2, - AD_MUX_ATTACHED = 3, - AD_MUX_COLLECTING = 4, - AD_MUX_DISTRIBUTING = 5, - AD_MUX_COLLECTING_DISTRIBUTING = 6, -} mux_states_t; - -typedef enum { - AD_TX_DUMMY = 0, - AD_TRANSMIT = 1, -} tx_states_t; - -typedef enum { - AD_CHURN_MONITOR = 0, - AD_CHURN = 1, - AD_NO_CHURN = 2, -} churn_state_t; - -struct lacpdu { - u8 subtype; - u8 version_number; - u8 tlv_type_actor_info; - u8 actor_information_length; - __be16 actor_system_priority; - struct mac_addr actor_system; - __be16 actor_key; - __be16 actor_port_priority; - __be16 actor_port; - u8 actor_state; - u8 reserved_3_1[3]; - u8 tlv_type_partner_info; - u8 partner_information_length; - __be16 partner_system_priority; - struct mac_addr partner_system; - __be16 partner_key; - __be16 partner_port_priority; - __be16 partner_port; - u8 partner_state; - u8 reserved_3_2[3]; - u8 tlv_type_collector_info; - u8 collector_information_length; - __be16 collector_max_delay; - u8 reserved_12[12]; - u8 tlv_type_terminator; - u8 terminator_length; - u8 reserved_50[50]; -}; - -struct bond_3ad_stats { - atomic64_t lacpdu_rx; - atomic64_t lacpdu_tx; - atomic64_t lacpdu_unknown_rx; - atomic64_t lacpdu_illegal_rx; - atomic64_t marker_rx; - atomic64_t marker_tx; - atomic64_t marker_resp_rx; - atomic64_t marker_resp_tx; - atomic64_t marker_unknown_rx; -}; - -struct port; - -struct slave; - -struct aggregator { - struct mac_addr aggregator_mac_address; - u16 aggregator_identifier; - bool is_individual; - u16 actor_admin_aggregator_key; - u16 actor_oper_aggregator_key; - struct mac_addr partner_system; - u16 partner_system_priority; - u16 partner_oper_aggregator_key; - u16 receive_state; - u16 transmit_state; - struct port *lag_ports; - struct slave *slave; - u16 is_active; - u16 num_of_ports; -}; - -struct port_params { - struct mac_addr system; - u16 system_priority; - u16 key; - u16 port_number; - u16 port_priority; - u16 port_state; -}; - -struct port { - u16 actor_port_number; - u16 actor_port_priority; - struct mac_addr actor_system; - u16 actor_system_priority; - u16 actor_port_aggregator_identifier; - bool ntt; - u16 actor_admin_port_key; - u16 actor_oper_port_key; - u8 actor_admin_port_state; - u8 actor_oper_port_state; - struct port_params partner_admin; - struct port_params partner_oper; - bool is_enabled; - u16 sm_vars; - rx_states_t sm_rx_state; - u16 sm_rx_timer_counter; - periodic_states_t sm_periodic_state; - u16 sm_periodic_timer_counter; - mux_states_t sm_mux_state; - u16 sm_mux_timer_counter; - tx_states_t sm_tx_state; - u16 sm_tx_timer_counter; - u16 sm_churn_actor_timer_counter; - u16 sm_churn_partner_timer_counter; - u32 churn_actor_count; - u32 churn_partner_count; - churn_state_t sm_churn_actor_state; - churn_state_t sm_churn_partner_state; - struct slave *slave; - struct aggregator *aggregator; - struct port *next_port_in_aggregator; - u32 transaction_id; - struct lacpdu lacpdu; -}; - -struct tlb_slave_info { - u32 head; - u32 load; -}; - -struct bonding; - -struct ad_slave_info; - -struct slave { - struct net_device *dev; - struct bonding *bond; - int delay; - long unsigned int last_link_up; - long unsigned int last_tx; - long unsigned int last_rx; - long unsigned int target_last_arp_rx[16]; - s8 link; - s8 link_new_state; - u8 backup: 1; - u8 inactive: 1; - u8 rx_disabled: 1; - u8 should_notify: 1; - u8 should_notify_link: 1; - u8 duplex; - u32 original_mtu; - u32 link_failure_count; - u32 speed; - u16 queue_id; - u8 perm_hwaddr[32]; - int prio; - struct ad_slave_info *ad_info; - struct tlb_slave_info tlb_info; - struct delayed_work notify_work; - struct kobject kobj; - struct rtnl_link_stats64 slave_stats; -}; - -struct ad_system { - u16 sys_priority; - struct mac_addr sys_mac_addr; -}; - -struct ad_bond_info { - struct ad_system system; - struct bond_3ad_stats stats; - atomic_t agg_select_timer; - u16 aggregator_identifier; -}; - -struct ad_slave_info { - struct aggregator aggregator; - struct port port; - struct bond_3ad_stats stats; - u16 id; -}; - -struct tlb_client_info { - struct slave *tx_slave; - u32 tx_bytes; - u32 load_history; - u32 next; - u32 prev; -}; - -struct rlb_client_info { - __be32 ip_src; - __be32 ip_dst; - u8 mac_src[6]; - u8 mac_dst[6]; - u32 used_next; - u32 used_prev; - u32 src_next; - u32 src_prev; - u32 src_first; - u8 assigned; - u8 ntt; - struct slave *slave; - short unsigned int vlan_id; -}; - -struct alb_bond_info { - struct tlb_client_info *tx_hashtbl; - u32 unbalanced_load; - atomic_t tx_rebalance_counter; - int lp_counter; - int rlb_enabled; - struct rlb_client_info *rx_hashtbl; - u32 rx_hashtbl_used_head; - u8 rx_ntt; - struct slave *rx_slave; - u8 primary_is_promisc; - u32 rlb_promisc_timeout_counter; - u32 rlb_update_delay_counter; - u32 rlb_update_retry_counter; - u8 rlb_rebalance; -}; - -enum { - BOND_OPT_MODE = 0, - BOND_OPT_PACKETS_PER_SLAVE = 1, - BOND_OPT_XMIT_HASH = 2, - BOND_OPT_ARP_VALIDATE = 3, - BOND_OPT_ARP_ALL_TARGETS = 4, - BOND_OPT_FAIL_OVER_MAC = 5, - BOND_OPT_ARP_INTERVAL = 6, - BOND_OPT_ARP_TARGETS = 7, - BOND_OPT_DOWNDELAY = 8, - BOND_OPT_UPDELAY = 9, - BOND_OPT_LACP_RATE = 10, - BOND_OPT_MINLINKS = 11, - BOND_OPT_AD_SELECT = 12, - BOND_OPT_NUM_PEER_NOTIF = 13, - BOND_OPT_MIIMON = 14, - BOND_OPT_PRIMARY = 15, - BOND_OPT_PRIMARY_RESELECT = 16, - BOND_OPT_USE_CARRIER = 17, - BOND_OPT_ACTIVE_SLAVE = 18, - BOND_OPT_QUEUE_ID = 19, - BOND_OPT_ALL_SLAVES_ACTIVE = 20, - BOND_OPT_RESEND_IGMP = 21, - BOND_OPT_LP_INTERVAL = 22, - BOND_OPT_SLAVES = 23, - BOND_OPT_TLB_DYNAMIC_LB = 24, - BOND_OPT_AD_ACTOR_SYS_PRIO = 25, - BOND_OPT_AD_ACTOR_SYSTEM = 26, - BOND_OPT_AD_USER_PORT_KEY = 27, - BOND_OPT_NUM_PEER_NOTIF_ALIAS = 28, - BOND_OPT_PEER_NOTIF_DELAY = 29, - BOND_OPT_LACP_ACTIVE = 30, - BOND_OPT_MISSED_MAX = 31, - BOND_OPT_NS_TARGETS = 32, - BOND_OPT_PRIO = 33, - BOND_OPT_COUPLED_CONTROL = 34, - BOND_OPT_LAST = 35, -}; - -struct bond_opt_value { - char *string; - u64 value; - u32 flags; - union { - char extra[16]; - struct net_device *slave_dev; - }; -}; - -struct bond_params { - int mode; - int xmit_policy; - int miimon; - u8 num_peer_notif; - u8 missed_max; - int arp_interval; - int arp_validate; - int arp_all_targets; - int use_carrier; - int fail_over_mac; - int updelay; - int downdelay; - int peer_notif_delay; - int lacp_active; - int lacp_fast; - unsigned int min_links; - int ad_select; - char primary[16]; - int primary_reselect; - __be32 arp_targets[16]; - int tx_queues; - int all_slaves_active; - int resend_igmp; - int lp_interval; - int packets_per_slave; - int tlb_dynamic_lb; - struct reciprocal_value reciprocal_packets_per_slave; - u16 ad_actor_sys_prio; - u16 ad_user_port_key; - struct in6_addr ns_targets[16]; - int coupled_control; - u8 ad_actor_system[8]; -}; - -struct bond_up_slave; - -struct bonding { - struct net_device *dev; - struct slave *curr_active_slave; - struct slave *current_arp_slave; - struct slave *primary_slave; - struct bond_up_slave *usable_slaves; - struct bond_up_slave *all_slaves; - bool force_primary; - bool notifier_ctx; - s32 slave_cnt; - int (*recv_probe)(const struct sk_buff *, struct bonding *, struct slave *); - spinlock_t mode_lock; - spinlock_t stats_lock; - u32 send_peer_notif; - u8 igmp_retrans; - struct proc_dir_entry *proc_entry; - char proc_file_name[16]; - struct list_head bond_list; - u32 *rr_tx_counter; - struct ad_bond_info ad_info; - struct alb_bond_info alb_info; - struct bond_params params; - struct workqueue_struct *wq; - struct delayed_work mii_work; - struct delayed_work arp_work; - struct delayed_work alb_work; - struct delayed_work ad_work; - struct delayed_work mcast_work; - struct delayed_work slave_arr_work; - struct dentry *debug_dir; - struct rtnl_link_stats64 bond_stats; - struct bpf_prog *xdp_prog; -}; - -struct bond_up_slave { - unsigned int count; - struct callback_head rcu; - struct slave *arr[0]; -}; - -typedef __u16 __sum16; - -enum curve25519_lengths { - CURVE25519_KEY_SIZE = 32, -}; - -enum noise_lengths { - NOISE_PUBLIC_KEY_LEN = 32, - NOISE_SYMMETRIC_KEY_LEN = 32, - NOISE_TIMESTAMP_LEN = 12, - NOISE_AUTHTAG_LEN = 16, - NOISE_HASH_LEN = 32, -}; - -struct pubkey_hashtable { - struct hlist_head hashtable[2048]; - siphash_key_t key; - struct mutex lock; -}; - -struct index_hashtable { - struct hlist_head hashtable[8192]; - spinlock_t lock; -}; - -enum index_hashtable_type { - INDEX_HASHTABLE_HANDSHAKE = 1, - INDEX_HASHTABLE_KEYPAIR = 2, -}; - -struct wg_peer; - -struct index_hashtable_entry { - struct wg_peer *peer; - struct hlist_node index_hash; - enum index_hashtable_type type; - __le32 index; -}; - -struct prev_queue { - struct sk_buff *head; - struct sk_buff *tail; - struct sk_buff *peeked; - struct { - struct sk_buff *next; - struct sk_buff *prev; - } empty; - atomic_t count; -}; - -struct noise_keypair; - -struct noise_keypairs { - struct noise_keypair *current_keypair; - struct noise_keypair *previous_keypair; - struct noise_keypair *next_keypair; - spinlock_t keypair_update_lock; -}; - -struct endpoint { - union { - struct sockaddr addr; - struct sockaddr_in addr4; - struct sockaddr_in6 addr6; - }; - union { - struct { - struct in_addr src4; - int src_if4; - }; - struct in6_addr src6; - }; -}; - -struct dst_cache_pcpu; - -struct dst_cache { - struct dst_cache_pcpu *cache; - long unsigned int reset_ts; -}; - -enum noise_handshake_state { - HANDSHAKE_ZEROED = 0, - HANDSHAKE_CREATED_INITIATION = 1, - HANDSHAKE_CONSUMED_INITIATION = 2, - HANDSHAKE_CREATED_RESPONSE = 3, - HANDSHAKE_CONSUMED_RESPONSE = 4, -}; - -struct noise_static_identity; - -struct noise_handshake { - struct index_hashtable_entry entry; - enum noise_handshake_state state; - u64 last_initiation_consumption; - struct noise_static_identity *static_identity; - u8 ephemeral_private[32]; - u8 remote_static[32]; - u8 remote_ephemeral[32]; - u8 precomputed_static_static[32]; - u8 preshared_key[32]; - u8 hash[32]; - u8 chaining_key[32]; - u8 latest_timestamp[12]; - __le32 remote_index; - struct rw_semaphore lock; -}; - -struct cookie { - u64 birthdate; - bool is_valid; - u8 cookie[16]; - bool have_sent_mac1; - u8 last_mac1_sent[16]; - u8 cookie_decryption_key[32]; - u8 message_mac1_key[32]; - struct rw_semaphore lock; -}; - -struct wg_device; - -struct wg_peer { - struct wg_device *device; - struct prev_queue tx_queue; - struct prev_queue rx_queue; - struct sk_buff_head staged_packet_queue; - int serial_work_cpu; - bool is_dead; - struct noise_keypairs keypairs; - struct endpoint endpoint; - struct dst_cache endpoint_cache; - rwlock_t endpoint_lock; - struct noise_handshake handshake; - atomic64_t last_sent_handshake; - struct work_struct transmit_handshake_work; - struct work_struct clear_peer_work; - struct work_struct transmit_packet_work; - struct cookie latest_cookie; - struct hlist_node pubkey_hash; - u64 rx_bytes; - u64 tx_bytes; - struct timer_list timer_retransmit_handshake; - struct timer_list timer_send_keepalive; - struct timer_list timer_new_handshake; - struct timer_list timer_zero_key_material; - struct timer_list timer_persistent_keepalive; - unsigned int timer_handshake_attempts; - u16 persistent_keepalive_interval; - bool timer_need_another_keepalive; - bool sent_lastminute_handshake; - struct timespec64 walltime_last_handshake; - struct kref refcount; - struct callback_head rcu; - struct list_head peer_list; - struct list_head allowedips_list; - struct napi_struct napi; - u64 internal_id; -}; - -struct noise_replay_counter { - u64 counter; - spinlock_t lock; - long unsigned int backtrack[128]; -}; - -struct noise_symmetric_key { - u8 key[32]; - u64 birthdate; - bool is_valid; -}; - -struct noise_keypair { - struct index_hashtable_entry entry; - struct noise_symmetric_key sending; - atomic64_t sending_counter; - struct noise_symmetric_key receiving; - struct noise_replay_counter receiving_counter; - __le32 remote_index; - bool i_am_the_initiator; - struct kref refcount; - struct callback_head rcu; - u64 internal_id; -}; - -struct noise_static_identity { - u8 static_public[32]; - u8 static_private[32]; - struct rw_semaphore lock; - bool has_identity; -}; - -struct iphdr { - __u8 ihl: 4; - __u8 version: 4; - __u8 tos; - __be16 tot_len; - __be16 id; - __be16 frag_off; - __u8 ttl; - __u8 protocol; - __sum16 check; - union { - struct { - __be32 saddr; - __be32 daddr; - }; - struct { - __be32 saddr; - __be32 daddr; - } addrs; - }; -}; - -struct fib_table { - struct hlist_node tb_hlist; - u32 tb_id; - int tb_num_default; - struct callback_head rcu; - long unsigned int *tb_data; - long unsigned int __data[0]; -}; - -struct inet_peer_base { - struct rb_root rb_root; - seqlock_t lock; - int total; -}; - -struct rt6key { - struct in6_addr addr; - int plen; -}; - -struct rtable; - -struct fnhe_hash_bucket; - -struct fib_nh_common { - struct net_device *nhc_dev; - netdevice_tracker nhc_dev_tracker; - int nhc_oif; - unsigned char nhc_scope; - u8 nhc_family; - u8 nhc_gw_family; - unsigned char nhc_flags; - struct lwtunnel_state *nhc_lwtstate; - union { - __be32 ipv4; - struct in6_addr ipv6; - } nhc_gw; - int nhc_weight; - atomic_t nhc_upper_bound; - struct rtable **nhc_pcpu_rth_output; - struct rtable *nhc_rth_input; - struct fnhe_hash_bucket *nhc_exceptions; -}; - -struct rt6_exception_bucket; - -struct fib6_nh { - struct fib_nh_common nh_common; - long unsigned int last_probe; - struct rt6_info **rt6i_pcpu; - struct rt6_exception_bucket *rt6i_exception_bucket; -}; - -struct fib6_node; - -struct dst_metrics; - -struct nexthop; - -struct fib6_info { - struct fib6_table *fib6_table; - struct fib6_info *fib6_next; - struct fib6_node *fib6_node; - union { - struct list_head fib6_siblings; - struct list_head nh_list; - }; - unsigned int fib6_nsiblings; - refcount_t fib6_ref; - long unsigned int expires; - struct hlist_node gc_link; - struct dst_metrics *fib6_metrics; - struct rt6key fib6_dst; - u32 fib6_flags; - struct rt6key fib6_src; - struct rt6key fib6_prefsrc; - u32 fib6_metric; - u8 fib6_protocol; - u8 fib6_type; - u8 offload; - u8 trap; - u8 offload_failed; - u8 should_flush: 1; - u8 dst_nocount: 1; - u8 dst_nopolicy: 1; - u8 fib6_destroying: 1; - u8 unused: 4; - struct callback_head rcu; - struct nexthop *nh; - struct fib6_nh fib6_nh[0]; -}; - -struct rt6_info { - struct dst_entry dst; - struct fib6_info *from; - int sernum; - struct rt6key rt6i_dst; - struct rt6key rt6i_src; - struct in6_addr rt6i_gateway; - struct inet6_dev *rt6i_idev; - u32 rt6i_flags; - short unsigned int rt6i_nfheader_len; -}; - -struct rt6_statistics { - __u32 fib_nodes; - __u32 fib_route_nodes; - __u32 fib_rt_entries; - __u32 fib_rt_cache; - __u32 fib_discarded_routes; - atomic_t fib_rt_alloc; -}; - -struct fib6_node { - struct fib6_node *parent; - struct fib6_node *left; - struct fib6_node *right; - struct fib6_node *subtree; - struct fib6_info *leaf; - __u16 fn_bit; - __u16 fn_flags; - int fn_sernum; - struct fib6_info *rr_ptr; - struct callback_head rcu; -}; - -struct fib6_table { - struct hlist_node tb6_hlist; - u32 tb6_id; - spinlock_t tb6_lock; - struct fib6_node tb6_root; - struct inet_peer_base tb6_peers; - unsigned int flags; - unsigned int fib_seq; - struct hlist_head tb6_gc_hlist; -}; - -struct nf_hook_state; - -typedef unsigned int nf_hookfn(void *, struct sk_buff *, const struct nf_hook_state *); - -struct nf_hook_entry { - nf_hookfn *hook; - void *priv; -}; - -struct nf_hook_entries { - u16 num_hook_entries; - struct nf_hook_entry hooks[0]; -}; - -struct scm_creds { - u32 pid; - kuid_t uid; - kgid_t gid; -}; - -struct netlink_skb_parms { - struct scm_creds creds; - __u32 portid; - __u32 dst_group; - __u32 flags; - struct sock *sk; - bool nsid_is_set; - int nsid; -}; - -enum netdev_state_t { - __LINK_STATE_START = 0, - __LINK_STATE_PRESENT = 1, - __LINK_STATE_NOCARRIER = 2, - __LINK_STATE_LINKWATCH_PENDING = 3, - __LINK_STATE_DORMANT = 4, - __LINK_STATE_TESTING = 5, -}; - -struct ip_tunnel_parm_kern { - char name[16]; - long unsigned int i_flags[1]; - long unsigned int o_flags[1]; - __be32 i_key; - __be32 o_key; - int link; - struct iphdr iph; -}; - -struct lwtunnel_state { - __u16 type; - __u16 flags; - __u16 headroom; - atomic_t refcnt; - int (*orig_output)(struct net *, struct sock *, struct sk_buff *); - int (*orig_input)(struct sk_buff *); - struct callback_head rcu; - __u8 data[0]; -}; - -struct dst_metrics { - u32 metrics[17]; - refcount_t refcnt; -}; - -struct allowedips_node { - struct wg_peer *peer; - struct allowedips_node *bit[2]; - u8 cidr; - u8 bit_at_a; - u8 bit_at_b; - u8 bitlen; - long: 0; - u8 bits[16]; - long unsigned int parent_bit_packed; - union { - struct list_head peer_list; - struct callback_head rcu; - }; -}; - -struct allowedips { - struct allowedips_node *root4; - struct allowedips_node *root6; - u64 seq; -}; - -struct cookie_checker { - u8 secret[32]; - u8 cookie_encryption_key[32]; - u8 message_mac1_key[32]; - u64 secret_birthdate; - struct rw_semaphore secret_lock; - struct wg_device *device; -}; - -struct ptr_ring { - int producer; - spinlock_t producer_lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - int consumer_head; - int consumer_tail; - spinlock_t consumer_lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - int size; - int batch; - void **queue; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct multicore_worker; - -struct crypt_queue { - struct ptr_ring ring; - struct multicore_worker *worker; - int last_cpu; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct wg_device { - struct net_device *dev; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct crypt_queue encrypt_queue; - struct crypt_queue decrypt_queue; - struct crypt_queue handshake_queue; - struct sock *sock4; - struct sock *sock6; - struct net *creating_net; - struct noise_static_identity static_identity; - struct workqueue_struct *packet_crypt_wq; - struct workqueue_struct *handshake_receive_wq; - struct workqueue_struct *handshake_send_wq; - struct cookie_checker cookie_checker; - struct pubkey_hashtable *peer_hashtable; - struct index_hashtable *index_hashtable; - struct allowedips peer_allowedips; - struct mutex device_update_lock; - struct mutex socket_update_lock; - struct list_head device_list; - struct list_head peer_list; - atomic_t handshake_queue_len; - unsigned int num_peers; - unsigned int device_update_gen; - u32 fwmark; - u16 incoming_port; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct multicore_worker { - void *ptr; - struct work_struct work; -}; - -struct nf_hook_state { - u8 hook; - u8 pf; - struct net_device *in; - struct net_device *out; - struct sock *sk; - struct net *net; - int (*okfn)(struct net *, struct sock *, struct sk_buff *); -}; - -struct fib_nh_exception { - struct fib_nh_exception *fnhe_next; - int fnhe_genid; - __be32 fnhe_daddr; - u32 fnhe_pmtu; - bool fnhe_mtu_locked; - __be32 fnhe_gw; - long unsigned int fnhe_expires; - struct rtable *fnhe_rth_input; - struct rtable *fnhe_rth_output; - long unsigned int fnhe_stamp; - struct callback_head rcu; -}; - -struct rtable { - struct dst_entry dst; - int rt_genid; - unsigned int rt_flags; - __u16 rt_type; - __u8 rt_is_input; - __u8 rt_uses_gateway; - int rt_iif; - u8 rt_gw_family; - union { - __be32 rt_gw4; - struct in6_addr rt_gw6; - }; - u32 rt_mtu_locked: 1; - u32 rt_pmtu: 31; -}; - -struct fnhe_hash_bucket { - struct fib_nh_exception *chain; -}; - -struct fib_info; - -struct fib_nh { - struct fib_nh_common nh_common; - struct hlist_node nh_hash; - struct fib_info *nh_parent; - __u32 nh_tclassid; - __be32 nh_saddr; - int nh_saddr_genid; -}; - -struct fib_info { - struct hlist_node fib_hash; - struct hlist_node fib_lhash; - struct list_head nh_list; - struct net *fib_net; - refcount_t fib_treeref; - refcount_t fib_clntref; - unsigned int fib_flags; - unsigned char fib_dead; - unsigned char fib_protocol; - unsigned char fib_scope; - unsigned char fib_type; - __be32 fib_prefsrc; - u32 fib_tb_id; - u32 fib_priority; - struct dst_metrics *fib_metrics; - int fib_nhs; - bool fib_nh_is_v6; - bool nh_updated; - bool pfsrc_removed; - struct nexthop *nh; - struct callback_head rcu; - struct fib_nh fib_nh[0]; -}; - -struct nh_info; - -struct nh_group; - -struct nexthop { - struct rb_node rb_node; - struct list_head fi_list; - struct list_head f6i_list; - struct list_head fdb_list; - struct list_head grp_list; - struct net *net; - u32 id; - u8 protocol; - u8 nh_flags; - bool is_group; - refcount_t refcnt; - struct callback_head rcu; - union { - struct nh_info *nh_info; - struct nh_group *nh_grp; - }; -}; - -struct rt6_exception_bucket { - struct hlist_head chain; - int depth; -}; - -enum { - IP_TUNNEL_CSUM_BIT = 0, - IP_TUNNEL_ROUTING_BIT = 1, - IP_TUNNEL_KEY_BIT = 2, - IP_TUNNEL_SEQ_BIT = 3, - IP_TUNNEL_STRICT_BIT = 4, - IP_TUNNEL_REC_BIT = 5, - IP_TUNNEL_VERSION_BIT = 6, - IP_TUNNEL_NO_KEY_BIT = 7, - IP_TUNNEL_DONT_FRAGMENT_BIT = 8, - IP_TUNNEL_OAM_BIT = 9, - IP_TUNNEL_CRIT_OPT_BIT = 10, - IP_TUNNEL_GENEVE_OPT_BIT = 11, - IP_TUNNEL_VXLAN_OPT_BIT = 12, - IP_TUNNEL_NOCACHE_BIT = 13, - IP_TUNNEL_ERSPAN_OPT_BIT = 14, - IP_TUNNEL_GTP_OPT_BIT = 15, - IP_TUNNEL_VTI_BIT = 16, - IP_TUNNEL_SIT_ISATAP_BIT = 16, - IP_TUNNEL_PFCP_OPT_BIT = 17, - __IP_TUNNEL_FLAG_NUM = 18, -}; - -enum { - __ND_OPT_PREFIX_INFO_END = 0, - ND_OPT_SOURCE_LL_ADDR = 1, - ND_OPT_TARGET_LL_ADDR = 2, - ND_OPT_PREFIX_INFO = 3, - ND_OPT_REDIRECT_HDR = 4, - ND_OPT_MTU = 5, - ND_OPT_NONCE = 14, - __ND_OPT_ARRAY_MAX = 15, - ND_OPT_ROUTE_INFO = 24, - ND_OPT_RDNSS = 25, - ND_OPT_DNSSL = 31, - ND_OPT_6CO = 34, - ND_OPT_CAPTIVE_PORTAL = 37, - ND_OPT_PREF64 = 38, - __ND_OPT_MAX = 39, -}; - -struct nd_opt_hdr { - __u8 nd_opt_type; - __u8 nd_opt_len; -}; - -struct ndisc_options { - struct nd_opt_hdr *nd_opt_array[15]; - struct nd_opt_hdr *nd_useropts; - struct nd_opt_hdr *nd_useropts_end; -}; - -struct prefix_info { - __u8 type; - __u8 length; - __u8 prefix_len; - union { - __u8 flags; - struct { - __u8 reserved: 4; - __u8 preferpd: 1; - __u8 routeraddr: 1; - __u8 autoconf: 1; - __u8 onlink: 1; - }; - }; - __be32 valid; - __be32 prefered; - __be32 reserved2; - struct in6_addr prefix; -}; - -struct nh_info { - struct hlist_node dev_hash; - struct nexthop *nh_parent; - u8 family; - bool reject_nh; - bool fdb_nh; - union { - struct fib_nh_common fib_nhc; - struct fib_nh fib_nh; - struct fib6_nh fib6_nh; - }; -}; - -struct nh_grp_entry; - -struct nh_res_bucket { - struct nh_grp_entry *nh_entry; - atomic_long_t used_time; - long unsigned int migrated_time; - bool occupied; - u8 nh_flags; -}; - -struct nh_grp_entry_stats; - -struct nh_grp_entry { - struct nexthop *nh; - struct nh_grp_entry_stats *stats; - u16 weight; - union { - struct { - atomic_t upper_bound; - } hthr; - struct { - struct list_head uw_nh_entry; - u16 count_buckets; - u16 wants_buckets; - } res; - }; - struct list_head nh_list; - struct nexthop *nh_parent; - u64 packets_hw; -}; - -struct nh_res_table { - struct net *net; - u32 nhg_id; - struct delayed_work upkeep_dw; - struct list_head uw_nh_entries; - long unsigned int unbalanced_since; - u32 idle_timer; - u32 unbalanced_timer; - u16 num_nh_buckets; - struct nh_res_bucket nh_buckets[0]; -}; - -struct nh_grp_entry_stats { - u64_stats_t packets; - struct u64_stats_sync syncp; -}; - -struct nh_group { - struct nh_group *spare; - u16 num_nh; - bool is_multipath; - bool hash_threshold; - bool resilient; - bool fdb_nh; - bool has_v4; - bool hw_stats; - struct nh_res_table *res_table; - struct nh_grp_entry nh_entries[0]; -}; - -enum wg_cmd { - WG_CMD_GET_DEVICE = 0, - WG_CMD_SET_DEVICE = 1, - __WG_CMD_MAX = 2, -}; - -enum wgdevice_flag { - WGDEVICE_F_REPLACE_PEERS = 1, - __WGDEVICE_F_ALL = 1, -}; - -enum wgdevice_attribute { - WGDEVICE_A_UNSPEC = 0, - WGDEVICE_A_IFINDEX = 1, - WGDEVICE_A_IFNAME = 2, - WGDEVICE_A_PRIVATE_KEY = 3, - WGDEVICE_A_PUBLIC_KEY = 4, - WGDEVICE_A_FLAGS = 5, - WGDEVICE_A_LISTEN_PORT = 6, - WGDEVICE_A_FWMARK = 7, - WGDEVICE_A_PEERS = 8, - __WGDEVICE_A_LAST = 9, -}; - -enum wgpeer_flag { - WGPEER_F_REMOVE_ME = 1, - WGPEER_F_REPLACE_ALLOWEDIPS = 2, - WGPEER_F_UPDATE_ONLY = 4, - __WGPEER_F_ALL = 7, -}; - -enum wgpeer_attribute { - WGPEER_A_UNSPEC = 0, - WGPEER_A_PUBLIC_KEY = 1, - WGPEER_A_PRESHARED_KEY = 2, - WGPEER_A_FLAGS = 3, - WGPEER_A_ENDPOINT = 4, - WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL = 5, - WGPEER_A_LAST_HANDSHAKE_TIME = 6, - WGPEER_A_RX_BYTES = 7, - WGPEER_A_TX_BYTES = 8, - WGPEER_A_ALLOWEDIPS = 9, - WGPEER_A_PROTOCOL_VERSION = 10, - __WGPEER_A_LAST = 11, -}; - -enum wgallowedip_attribute { - WGALLOWEDIP_A_UNSPEC = 0, - WGALLOWEDIP_A_FAMILY = 1, - WGALLOWEDIP_A_IPADDR = 2, - WGALLOWEDIP_A_CIDR_MASK = 3, - __WGALLOWEDIP_A_LAST = 4, -}; - -struct genlmsghdr { - __u8 cmd; - __u8 version; - __u16 reserved; -}; - -struct genl_multicast_group { - char name[16]; - u8 flags; -}; - -struct genl_split_ops; - -struct genl_info; - -struct genl_ops; - -struct genl_small_ops; - -struct genl_family { - unsigned int hdrsize; - char name[16]; - unsigned int version; - unsigned int maxattr; - u8 netnsok: 1; - u8 parallel_ops: 1; - u8 n_ops; - u8 n_small_ops; - u8 n_split_ops; - u8 n_mcgrps; - u8 resv_start_op; - const struct nla_policy *policy; - int (*pre_doit)(const struct genl_split_ops *, struct sk_buff *, struct genl_info *); - void (*post_doit)(const struct genl_split_ops *, struct sk_buff *, struct genl_info *); - int (*bind)(int); - void (*unbind)(int); - const struct genl_ops *ops; - const struct genl_small_ops *small_ops; - const struct genl_split_ops *split_ops; - const struct genl_multicast_group *mcgrps; - struct module *module; - size_t sock_priv_size; - void (*sock_priv_init)(void *); - void (*sock_priv_destroy)(void *); - int id; - unsigned int mcgrp_offset; - struct xarray *sock_privs; -}; - -struct genl_split_ops { - union { - struct { - int (*pre_doit)(const struct genl_split_ops *, struct sk_buff *, struct genl_info *); - int (*doit)(struct sk_buff *, struct genl_info *); - void (*post_doit)(const struct genl_split_ops *, struct sk_buff *, struct genl_info *); - }; - struct { - int (*start)(struct netlink_callback *); - int (*dumpit)(struct sk_buff *, struct netlink_callback *); - int (*done)(struct netlink_callback *); - }; - }; - const struct nla_policy *policy; - unsigned int maxattr; - u8 cmd; - u8 internal_flags; - u8 flags; - u8 validate; -}; - -struct genl_info { - u32 snd_seq; - u32 snd_portid; - const struct genl_family *family; - const struct nlmsghdr *nlhdr; - struct genlmsghdr *genlhdr; - struct nlattr **attrs; - possible_net_t _net; - void *user_ptr[2]; - struct netlink_ext_ack *extack; -}; - -struct genl_ops { - int (*doit)(struct sk_buff *, struct genl_info *); - int (*start)(struct netlink_callback *); - int (*dumpit)(struct sk_buff *, struct netlink_callback *); - int (*done)(struct netlink_callback *); - const struct nla_policy *policy; - unsigned int maxattr; - u8 cmd; - u8 internal_flags; - u8 flags; - u8 validate; -}; - -struct genl_small_ops { - int (*doit)(struct sk_buff *, struct genl_info *); - int (*dumpit)(struct sk_buff *, struct netlink_callback *); - u8 cmd; - u8 internal_flags; - u8 flags; - u8 validate; -}; - -struct genl_dumpit_info { - struct genl_split_ops op; - struct genl_info info; -}; - -struct dump_ctx { - struct wg_device *wg; - struct wg_peer *next_peer; - u64 allowedips_seq; - struct allowedips_node *next_allowedip; -}; - -enum device_link_state { - DL_STATE_NONE = -1, - DL_STATE_DORMANT = 0, - DL_STATE_AVAILABLE = 1, - DL_STATE_CONSUMER_PROBE = 2, - DL_STATE_ACTIVE = 3, - DL_STATE_SUPPLIER_UNBIND = 4, -}; - -struct device_link { - struct device *supplier; - struct list_head s_node; - struct device *consumer; - struct list_head c_node; - struct device link_dev; - enum device_link_state status; - u32 flags; - refcount_t rpm_active; - struct kref kref; - struct work_struct rm_work; - bool supplier_preactivated; -}; - -struct ethtool_wolinfo { - __u32 cmd; - __u32 supported; - __u32 wolopts; - __u8 sopass[6]; -}; - -struct ethtool_tunable { - __u32 cmd; - __u32 id; - __u32 type_id; - __u32 len; - void *data[0]; -}; - -struct ethtool_eeprom { - __u32 cmd; - __u32 magic; - __u32 offset; - __u32 len; - __u8 data[0]; -}; - -struct ethtool_modinfo { - __u32 cmd; - __u32 type; - __u32 eeprom_len; - __u32 reserved[8]; -}; - -enum ethtool_mac_stats_src { - ETHTOOL_MAC_STATS_SRC_AGGREGATE = 0, - ETHTOOL_MAC_STATS_SRC_EMAC = 1, - ETHTOOL_MAC_STATS_SRC_PMAC = 2, -}; - -struct ethtool_stats { - __u32 cmd; - __u32 n_stats; - __u64 data[0]; -}; - -enum ethtool_link_mode_bit_indices { - ETHTOOL_LINK_MODE_10baseT_Half_BIT = 0, - ETHTOOL_LINK_MODE_10baseT_Full_BIT = 1, - ETHTOOL_LINK_MODE_100baseT_Half_BIT = 2, - ETHTOOL_LINK_MODE_100baseT_Full_BIT = 3, - ETHTOOL_LINK_MODE_1000baseT_Half_BIT = 4, - ETHTOOL_LINK_MODE_1000baseT_Full_BIT = 5, - ETHTOOL_LINK_MODE_Autoneg_BIT = 6, - ETHTOOL_LINK_MODE_TP_BIT = 7, - ETHTOOL_LINK_MODE_AUI_BIT = 8, - ETHTOOL_LINK_MODE_MII_BIT = 9, - ETHTOOL_LINK_MODE_FIBRE_BIT = 10, - ETHTOOL_LINK_MODE_BNC_BIT = 11, - ETHTOOL_LINK_MODE_10000baseT_Full_BIT = 12, - ETHTOOL_LINK_MODE_Pause_BIT = 13, - ETHTOOL_LINK_MODE_Asym_Pause_BIT = 14, - ETHTOOL_LINK_MODE_2500baseX_Full_BIT = 15, - ETHTOOL_LINK_MODE_Backplane_BIT = 16, - ETHTOOL_LINK_MODE_1000baseKX_Full_BIT = 17, - ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT = 18, - ETHTOOL_LINK_MODE_10000baseKR_Full_BIT = 19, - ETHTOOL_LINK_MODE_10000baseR_FEC_BIT = 20, - ETHTOOL_LINK_MODE_20000baseMLD2_Full_BIT = 21, - ETHTOOL_LINK_MODE_20000baseKR2_Full_BIT = 22, - ETHTOOL_LINK_MODE_40000baseKR4_Full_BIT = 23, - ETHTOOL_LINK_MODE_40000baseCR4_Full_BIT = 24, - ETHTOOL_LINK_MODE_40000baseSR4_Full_BIT = 25, - ETHTOOL_LINK_MODE_40000baseLR4_Full_BIT = 26, - ETHTOOL_LINK_MODE_56000baseKR4_Full_BIT = 27, - ETHTOOL_LINK_MODE_56000baseCR4_Full_BIT = 28, - ETHTOOL_LINK_MODE_56000baseSR4_Full_BIT = 29, - ETHTOOL_LINK_MODE_56000baseLR4_Full_BIT = 30, - ETHTOOL_LINK_MODE_25000baseCR_Full_BIT = 31, - ETHTOOL_LINK_MODE_25000baseKR_Full_BIT = 32, - ETHTOOL_LINK_MODE_25000baseSR_Full_BIT = 33, - ETHTOOL_LINK_MODE_50000baseCR2_Full_BIT = 34, - ETHTOOL_LINK_MODE_50000baseKR2_Full_BIT = 35, - ETHTOOL_LINK_MODE_100000baseKR4_Full_BIT = 36, - ETHTOOL_LINK_MODE_100000baseSR4_Full_BIT = 37, - ETHTOOL_LINK_MODE_100000baseCR4_Full_BIT = 38, - ETHTOOL_LINK_MODE_100000baseLR4_ER4_Full_BIT = 39, - ETHTOOL_LINK_MODE_50000baseSR2_Full_BIT = 40, - ETHTOOL_LINK_MODE_1000baseX_Full_BIT = 41, - ETHTOOL_LINK_MODE_10000baseCR_Full_BIT = 42, - ETHTOOL_LINK_MODE_10000baseSR_Full_BIT = 43, - ETHTOOL_LINK_MODE_10000baseLR_Full_BIT = 44, - ETHTOOL_LINK_MODE_10000baseLRM_Full_BIT = 45, - ETHTOOL_LINK_MODE_10000baseER_Full_BIT = 46, - ETHTOOL_LINK_MODE_2500baseT_Full_BIT = 47, - ETHTOOL_LINK_MODE_5000baseT_Full_BIT = 48, - ETHTOOL_LINK_MODE_FEC_NONE_BIT = 49, - ETHTOOL_LINK_MODE_FEC_RS_BIT = 50, - ETHTOOL_LINK_MODE_FEC_BASER_BIT = 51, - ETHTOOL_LINK_MODE_50000baseKR_Full_BIT = 52, - ETHTOOL_LINK_MODE_50000baseSR_Full_BIT = 53, - ETHTOOL_LINK_MODE_50000baseCR_Full_BIT = 54, - ETHTOOL_LINK_MODE_50000baseLR_ER_FR_Full_BIT = 55, - ETHTOOL_LINK_MODE_50000baseDR_Full_BIT = 56, - ETHTOOL_LINK_MODE_100000baseKR2_Full_BIT = 57, - ETHTOOL_LINK_MODE_100000baseSR2_Full_BIT = 58, - ETHTOOL_LINK_MODE_100000baseCR2_Full_BIT = 59, - ETHTOOL_LINK_MODE_100000baseLR2_ER2_FR2_Full_BIT = 60, - ETHTOOL_LINK_MODE_100000baseDR2_Full_BIT = 61, - ETHTOOL_LINK_MODE_200000baseKR4_Full_BIT = 62, - ETHTOOL_LINK_MODE_200000baseSR4_Full_BIT = 63, - ETHTOOL_LINK_MODE_200000baseLR4_ER4_FR4_Full_BIT = 64, - ETHTOOL_LINK_MODE_200000baseDR4_Full_BIT = 65, - ETHTOOL_LINK_MODE_200000baseCR4_Full_BIT = 66, - ETHTOOL_LINK_MODE_100baseT1_Full_BIT = 67, - ETHTOOL_LINK_MODE_1000baseT1_Full_BIT = 68, - ETHTOOL_LINK_MODE_400000baseKR8_Full_BIT = 69, - ETHTOOL_LINK_MODE_400000baseSR8_Full_BIT = 70, - ETHTOOL_LINK_MODE_400000baseLR8_ER8_FR8_Full_BIT = 71, - ETHTOOL_LINK_MODE_400000baseDR8_Full_BIT = 72, - ETHTOOL_LINK_MODE_400000baseCR8_Full_BIT = 73, - ETHTOOL_LINK_MODE_FEC_LLRS_BIT = 74, - ETHTOOL_LINK_MODE_100000baseKR_Full_BIT = 75, - ETHTOOL_LINK_MODE_100000baseSR_Full_BIT = 76, - ETHTOOL_LINK_MODE_100000baseLR_ER_FR_Full_BIT = 77, - ETHTOOL_LINK_MODE_100000baseCR_Full_BIT = 78, - ETHTOOL_LINK_MODE_100000baseDR_Full_BIT = 79, - ETHTOOL_LINK_MODE_200000baseKR2_Full_BIT = 80, - ETHTOOL_LINK_MODE_200000baseSR2_Full_BIT = 81, - ETHTOOL_LINK_MODE_200000baseLR2_ER2_FR2_Full_BIT = 82, - ETHTOOL_LINK_MODE_200000baseDR2_Full_BIT = 83, - ETHTOOL_LINK_MODE_200000baseCR2_Full_BIT = 84, - ETHTOOL_LINK_MODE_400000baseKR4_Full_BIT = 85, - ETHTOOL_LINK_MODE_400000baseSR4_Full_BIT = 86, - ETHTOOL_LINK_MODE_400000baseLR4_ER4_FR4_Full_BIT = 87, - ETHTOOL_LINK_MODE_400000baseDR4_Full_BIT = 88, - ETHTOOL_LINK_MODE_400000baseCR4_Full_BIT = 89, - ETHTOOL_LINK_MODE_100baseFX_Half_BIT = 90, - ETHTOOL_LINK_MODE_100baseFX_Full_BIT = 91, - ETHTOOL_LINK_MODE_10baseT1L_Full_BIT = 92, - ETHTOOL_LINK_MODE_800000baseCR8_Full_BIT = 93, - ETHTOOL_LINK_MODE_800000baseKR8_Full_BIT = 94, - ETHTOOL_LINK_MODE_800000baseDR8_Full_BIT = 95, - ETHTOOL_LINK_MODE_800000baseDR8_2_Full_BIT = 96, - ETHTOOL_LINK_MODE_800000baseSR8_Full_BIT = 97, - ETHTOOL_LINK_MODE_800000baseVR8_Full_BIT = 98, - ETHTOOL_LINK_MODE_10baseT1S_Full_BIT = 99, - ETHTOOL_LINK_MODE_10baseT1S_Half_BIT = 100, - ETHTOOL_LINK_MODE_10baseT1S_P2MP_Half_BIT = 101, - ETHTOOL_LINK_MODE_10baseT1BRR_Full_BIT = 102, - __ETHTOOL_LINK_MODE_MASK_NBITS = 103, -}; - -enum hwtstamp_tx_types { - HWTSTAMP_TX_OFF = 0, - HWTSTAMP_TX_ON = 1, - HWTSTAMP_TX_ONESTEP_SYNC = 2, - HWTSTAMP_TX_ONESTEP_P2P = 3, - __HWTSTAMP_TX_CNT = 4, -}; - -enum hwtstamp_rx_filters { - HWTSTAMP_FILTER_NONE = 0, - HWTSTAMP_FILTER_ALL = 1, - HWTSTAMP_FILTER_SOME = 2, - HWTSTAMP_FILTER_PTP_V1_L4_EVENT = 3, - HWTSTAMP_FILTER_PTP_V1_L4_SYNC = 4, - HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ = 5, - HWTSTAMP_FILTER_PTP_V2_L4_EVENT = 6, - HWTSTAMP_FILTER_PTP_V2_L4_SYNC = 7, - HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ = 8, - HWTSTAMP_FILTER_PTP_V2_L2_EVENT = 9, - HWTSTAMP_FILTER_PTP_V2_L2_SYNC = 10, - HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ = 11, - HWTSTAMP_FILTER_PTP_V2_EVENT = 12, - HWTSTAMP_FILTER_PTP_V2_SYNC = 13, - HWTSTAMP_FILTER_PTP_V2_DELAY_REQ = 14, - HWTSTAMP_FILTER_NTP_ALL = 15, - __HWTSTAMP_FILTER_CNT = 16, -}; - -struct ethtool_link_ext_stats { - u64 link_down_events; -}; - -struct ethtool_eth_phy_stats { - enum ethtool_mac_stats_src src; - union { - struct { - u64 SymbolErrorDuringCarrier; - }; - struct { - u64 SymbolErrorDuringCarrier; - } stats; - }; -}; - -struct ethtool_phy_stats { - u64 rx_packets; - u64 rx_bytes; - u64 rx_errors; - u64 tx_packets; - u64 tx_bytes; - u64 tx_errors; -}; - -struct kernel_ethtool_ts_info { - u32 cmd; - u32 so_timestamping; - int phc_index; - enum hwtstamp_tx_types tx_types; - enum hwtstamp_rx_filters rx_filters; -}; - -struct mii_bus; - -struct reset_control; - -struct mdio_device { - struct device dev; - struct mii_bus *bus; - char modalias[32]; - int (*bus_match)(struct device *, const struct device_driver *); - void (*device_free)(struct mdio_device *); - void (*device_remove)(struct mdio_device *); - int addr; - int flags; - int reset_state; - struct gpio_desc *reset_gpio; - struct reset_control *reset_ctrl; - unsigned int reset_assert_delay; - unsigned int reset_deassert_delay; -}; - -struct phy_c45_device_ids { - u32 devices_in_package; - u32 mmds_present; - u32 device_ids[32]; -}; - -enum phy_state { - PHY_DOWN = 0, - PHY_READY = 1, - PHY_HALTED = 2, - PHY_ERROR = 3, - PHY_UP = 4, - PHY_RUNNING = 5, - PHY_NOLINK = 6, - PHY_CABLETEST = 7, -}; - -typedef enum { - PHY_INTERFACE_MODE_NA = 0, - PHY_INTERFACE_MODE_INTERNAL = 1, - PHY_INTERFACE_MODE_MII = 2, - PHY_INTERFACE_MODE_GMII = 3, - PHY_INTERFACE_MODE_SGMII = 4, - PHY_INTERFACE_MODE_TBI = 5, - PHY_INTERFACE_MODE_REVMII = 6, - PHY_INTERFACE_MODE_RMII = 7, - PHY_INTERFACE_MODE_REVRMII = 8, - PHY_INTERFACE_MODE_RGMII = 9, - PHY_INTERFACE_MODE_RGMII_ID = 10, - PHY_INTERFACE_MODE_RGMII_RXID = 11, - PHY_INTERFACE_MODE_RGMII_TXID = 12, - PHY_INTERFACE_MODE_RTBI = 13, - PHY_INTERFACE_MODE_SMII = 14, - PHY_INTERFACE_MODE_XGMII = 15, - PHY_INTERFACE_MODE_XLGMII = 16, - PHY_INTERFACE_MODE_MOCA = 17, - PHY_INTERFACE_MODE_PSGMII = 18, - PHY_INTERFACE_MODE_QSGMII = 19, - PHY_INTERFACE_MODE_TRGMII = 20, - PHY_INTERFACE_MODE_100BASEX = 21, - PHY_INTERFACE_MODE_1000BASEX = 22, - PHY_INTERFACE_MODE_2500BASEX = 23, - PHY_INTERFACE_MODE_5GBASER = 24, - PHY_INTERFACE_MODE_RXAUI = 25, - PHY_INTERFACE_MODE_XAUI = 26, - PHY_INTERFACE_MODE_10GBASER = 27, - PHY_INTERFACE_MODE_25GBASER = 28, - PHY_INTERFACE_MODE_USXGMII = 29, - PHY_INTERFACE_MODE_10GKR = 30, - PHY_INTERFACE_MODE_QUSGMII = 31, - PHY_INTERFACE_MODE_1000BASEKX = 32, - PHY_INTERFACE_MODE_10G_QXGMII = 33, - PHY_INTERFACE_MODE_MAX = 34, -} phy_interface_t; - -struct eee_config { - u32 tx_lpi_timer; - bool tx_lpi_enabled; - bool eee_enabled; -}; - -struct phylink; - -struct pse_control; - -struct phy_driver; - -struct phy_package_shared; - -struct mii_timestamper; - -struct phy_device { - struct mdio_device mdio; - const struct phy_driver *drv; - struct device_link *devlink; - u32 phyindex; - u32 phy_id; - struct phy_c45_device_ids c45_ids; - unsigned int is_c45: 1; - unsigned int is_internal: 1; - unsigned int is_pseudo_fixed_link: 1; - unsigned int is_gigabit_capable: 1; - unsigned int has_fixups: 1; - unsigned int suspended: 1; - unsigned int suspended_by_mdio_bus: 1; - unsigned int sysfs_links: 1; - unsigned int loopback_enabled: 1; - unsigned int downshifted_rate: 1; - unsigned int is_on_sfp_module: 1; - unsigned int mac_managed_pm: 1; - unsigned int wol_enabled: 1; - unsigned int autoneg: 1; - unsigned int link: 1; - unsigned int autoneg_complete: 1; - unsigned int interrupts: 1; - unsigned int irq_suspended: 1; - unsigned int irq_rerun: 1; - unsigned int default_timestamp: 1; - int rate_matching; - enum phy_state state; - u32 dev_flags; - phy_interface_t interface; - long unsigned int possible_interfaces[1]; - int speed; - int duplex; - int port; - int pause; - int asym_pause; - u8 master_slave_get; - u8 master_slave_set; - u8 master_slave_state; - long unsigned int supported[2]; - long unsigned int advertising[2]; - long unsigned int lp_advertising[2]; - long unsigned int adv_old[2]; - long unsigned int supported_eee[2]; - long unsigned int advertising_eee[2]; - bool eee_enabled; - long unsigned int host_interfaces[1]; - u32 eee_broken_modes; - bool enable_tx_lpi; - struct eee_config eee_cfg; - struct list_head leds; - int irq; - void *priv; - struct phy_package_shared *shared; - struct sk_buff *skb; - void *ehdr; - struct nlattr *nest; - struct delayed_work state_queue; - struct mutex lock; - bool sfp_bus_attached; - struct sfp_bus *sfp_bus; - struct phylink *phylink; - struct net_device *attached_dev; - struct mii_timestamper *mii_ts; - struct pse_control *psec; - u8 mdix; - u8 mdix_ctrl; - int pma_extable; - unsigned int link_down_events; - void (*phy_link_change)(struct phy_device *, bool); - void (*adjust_link)(struct net_device *); -}; - -struct phy_plca_cfg { - int version; - int enabled; - int node_id; - int node_cnt; - int to_tmr; - int burst_cnt; - int burst_tmr; -}; - -struct phy_plca_status { - bool pst; -}; - -struct phy_tdr_config { - u32 first; - u32 last; - u32 step; - s8 pair; -}; - -enum led_brightness { - LED_OFF = 0, - LED_ON = 1, - LED_HALF = 127, - LED_FULL = 255, -}; - -struct mdio_bus_stats { - u64_stats_t transfers; - u64_stats_t errors; - u64_stats_t writes; - u64_stats_t reads; - struct u64_stats_sync syncp; -}; - -struct mii_bus { - struct module *owner; - const char *name; - char id[61]; - void *priv; - int (*read)(struct mii_bus *, int, int); - int (*write)(struct mii_bus *, int, int, u16); - int (*read_c45)(struct mii_bus *, int, int, int); - int (*write_c45)(struct mii_bus *, int, int, int, u16); - int (*reset)(struct mii_bus *); - struct mdio_bus_stats stats[32]; - struct mutex mdio_lock; - struct device *parent; - enum { - MDIOBUS_ALLOCATED = 1, - MDIOBUS_REGISTERED = 2, - MDIOBUS_UNREGISTERED = 3, - MDIOBUS_RELEASED = 4, - } state; - struct device dev; - struct mdio_device *mdio_map[32]; - u32 phy_mask; - u32 phy_ignore_ta_mask; - int irq[32]; - int reset_delay_us; - int reset_post_delay_us; - struct gpio_desc *reset_gpiod; - struct mutex shared_lock; - struct phy_package_shared *shared[32]; -}; - -struct mdio_driver_common { - struct device_driver driver; - int flags; -}; - -struct mii_timestamper { - bool (*rxtstamp)(struct mii_timestamper *, struct sk_buff *, int); - void (*txtstamp)(struct mii_timestamper *, struct sk_buff *, int); - int (*hwtstamp)(struct mii_timestamper *, struct kernel_hwtstamp_config *, struct netlink_ext_ack *); - void (*link_state)(struct mii_timestamper *, struct phy_device *); - int (*ts_info)(struct mii_timestamper *, struct kernel_ethtool_ts_info *); - struct device *device; -}; - -struct phy_package_shared { - u8 base_addr; - struct device_node *np; - refcount_t refcnt; - long unsigned int flags; - size_t priv_size; - void *priv; -}; - -struct phy_driver { - struct mdio_driver_common mdiodrv; - u32 phy_id; - char *name; - u32 phy_id_mask; - const long unsigned int * const features; - u32 flags; - const void *driver_data; - int (*soft_reset)(struct phy_device *); - int (*config_init)(struct phy_device *); - int (*probe)(struct phy_device *); - int (*get_features)(struct phy_device *); - int (*get_rate_matching)(struct phy_device *, phy_interface_t); - int (*suspend)(struct phy_device *); - int (*resume)(struct phy_device *); - int (*config_aneg)(struct phy_device *); - int (*aneg_done)(struct phy_device *); - int (*read_status)(struct phy_device *); - int (*config_intr)(struct phy_device *); - irqreturn_t (*handle_interrupt)(struct phy_device *); - void (*remove)(struct phy_device *); - int (*match_phy_device)(struct phy_device *); - int (*set_wol)(struct phy_device *, struct ethtool_wolinfo *); - void (*get_wol)(struct phy_device *, struct ethtool_wolinfo *); - void (*link_change_notify)(struct phy_device *); - int (*read_mmd)(struct phy_device *, int, u16); - int (*write_mmd)(struct phy_device *, int, u16, u16); - int (*read_page)(struct phy_device *); - int (*write_page)(struct phy_device *, int); - int (*module_info)(struct phy_device *, struct ethtool_modinfo *); - int (*module_eeprom)(struct phy_device *, struct ethtool_eeprom *, u8 *); - int (*cable_test_start)(struct phy_device *); - int (*cable_test_tdr_start)(struct phy_device *, const struct phy_tdr_config *); - int (*cable_test_get_status)(struct phy_device *, bool *); - void (*get_phy_stats)(struct phy_device *, struct ethtool_eth_phy_stats *, struct ethtool_phy_stats *); - void (*get_link_stats)(struct phy_device *, struct ethtool_link_ext_stats *); - int (*get_sset_count)(struct phy_device *); - void (*get_strings)(struct phy_device *, u8 *); - void (*get_stats)(struct phy_device *, struct ethtool_stats *, u64 *); - int (*get_tunable)(struct phy_device *, struct ethtool_tunable *, void *); - int (*set_tunable)(struct phy_device *, struct ethtool_tunable *, const void *); - int (*set_loopback)(struct phy_device *, bool); - int (*get_sqi)(struct phy_device *); - int (*get_sqi_max)(struct phy_device *); - int (*get_plca_cfg)(struct phy_device *, struct phy_plca_cfg *); - int (*set_plca_cfg)(struct phy_device *, const struct phy_plca_cfg *); - int (*get_plca_status)(struct phy_device *, struct phy_plca_status *); - int (*led_brightness_set)(struct phy_device *, u8, enum led_brightness); - int (*led_blink_set)(struct phy_device *, u8, long unsigned int *, long unsigned int *); - int (*led_hw_is_supported)(struct phy_device *, u8, long unsigned int); - int (*led_hw_control_set)(struct phy_device *, u8, long unsigned int); - int (*led_hw_control_get)(struct phy_device *, u8, long unsigned int *); - int (*led_polarity_set)(struct phy_device *, int, long unsigned int); -}; - -enum { - DUMP_PREFIX_NONE = 0, - DUMP_PREFIX_ADDRESS = 1, - DUMP_PREFIX_OFFSET = 2, -}; - -struct tasklet_struct { - struct tasklet_struct *next; - long unsigned int state; - atomic_t count; - bool use_callback; - union { - void (*func)(long unsigned int); - void (*callback)(struct tasklet_struct *); - }; - long unsigned int data; -}; - -enum { - TASKLET_STATE_SCHED = 0, - TASKLET_STATE_RUN = 1, -}; - -enum skb_drop_reason { - SKB_NOT_DROPPED_YET = 0, - SKB_CONSUMED = 1, - SKB_DROP_REASON_NOT_SPECIFIED = 2, - SKB_DROP_REASON_NO_SOCKET = 3, - SKB_DROP_REASON_PKT_TOO_SMALL = 4, - SKB_DROP_REASON_TCP_CSUM = 5, - SKB_DROP_REASON_SOCKET_FILTER = 6, - SKB_DROP_REASON_UDP_CSUM = 7, - SKB_DROP_REASON_NETFILTER_DROP = 8, - SKB_DROP_REASON_OTHERHOST = 9, - SKB_DROP_REASON_IP_CSUM = 10, - SKB_DROP_REASON_IP_INHDR = 11, - SKB_DROP_REASON_IP_RPFILTER = 12, - SKB_DROP_REASON_UNICAST_IN_L2_MULTICAST = 13, - SKB_DROP_REASON_XFRM_POLICY = 14, - SKB_DROP_REASON_IP_NOPROTO = 15, - SKB_DROP_REASON_SOCKET_RCVBUFF = 16, - SKB_DROP_REASON_PROTO_MEM = 17, - SKB_DROP_REASON_TCP_AUTH_HDR = 18, - SKB_DROP_REASON_TCP_MD5NOTFOUND = 19, - SKB_DROP_REASON_TCP_MD5UNEXPECTED = 20, - SKB_DROP_REASON_TCP_MD5FAILURE = 21, - SKB_DROP_REASON_TCP_AONOTFOUND = 22, - SKB_DROP_REASON_TCP_AOUNEXPECTED = 23, - SKB_DROP_REASON_TCP_AOKEYNOTFOUND = 24, - SKB_DROP_REASON_TCP_AOFAILURE = 25, - SKB_DROP_REASON_SOCKET_BACKLOG = 26, - SKB_DROP_REASON_TCP_FLAGS = 27, - SKB_DROP_REASON_TCP_ABORT_ON_DATA = 28, - SKB_DROP_REASON_TCP_ZEROWINDOW = 29, - SKB_DROP_REASON_TCP_OLD_DATA = 30, - SKB_DROP_REASON_TCP_OVERWINDOW = 31, - SKB_DROP_REASON_TCP_OFOMERGE = 32, - SKB_DROP_REASON_TCP_RFC7323_PAWS = 33, - SKB_DROP_REASON_TCP_OLD_SEQUENCE = 34, - SKB_DROP_REASON_TCP_INVALID_SEQUENCE = 35, - SKB_DROP_REASON_TCP_INVALID_ACK_SEQUENCE = 36, - SKB_DROP_REASON_TCP_RESET = 37, - SKB_DROP_REASON_TCP_INVALID_SYN = 38, - SKB_DROP_REASON_TCP_CLOSE = 39, - SKB_DROP_REASON_TCP_FASTOPEN = 40, - SKB_DROP_REASON_TCP_OLD_ACK = 41, - SKB_DROP_REASON_TCP_TOO_OLD_ACK = 42, - SKB_DROP_REASON_TCP_ACK_UNSENT_DATA = 43, - SKB_DROP_REASON_TCP_OFO_QUEUE_PRUNE = 44, - SKB_DROP_REASON_TCP_OFO_DROP = 45, - SKB_DROP_REASON_IP_OUTNOROUTES = 46, - SKB_DROP_REASON_BPF_CGROUP_EGRESS = 47, - SKB_DROP_REASON_IPV6DISABLED = 48, - SKB_DROP_REASON_NEIGH_CREATEFAIL = 49, - SKB_DROP_REASON_NEIGH_FAILED = 50, - SKB_DROP_REASON_NEIGH_QUEUEFULL = 51, - SKB_DROP_REASON_NEIGH_DEAD = 52, - SKB_DROP_REASON_TC_EGRESS = 53, - SKB_DROP_REASON_SECURITY_HOOK = 54, - SKB_DROP_REASON_QDISC_DROP = 55, - SKB_DROP_REASON_CPU_BACKLOG = 56, - SKB_DROP_REASON_XDP = 57, - SKB_DROP_REASON_TC_INGRESS = 58, - SKB_DROP_REASON_UNHANDLED_PROTO = 59, - SKB_DROP_REASON_SKB_CSUM = 60, - SKB_DROP_REASON_SKB_GSO_SEG = 61, - SKB_DROP_REASON_SKB_UCOPY_FAULT = 62, - SKB_DROP_REASON_DEV_HDR = 63, - SKB_DROP_REASON_DEV_READY = 64, - SKB_DROP_REASON_FULL_RING = 65, - SKB_DROP_REASON_NOMEM = 66, - SKB_DROP_REASON_HDR_TRUNC = 67, - SKB_DROP_REASON_TAP_FILTER = 68, - SKB_DROP_REASON_TAP_TXFILTER = 69, - SKB_DROP_REASON_ICMP_CSUM = 70, - SKB_DROP_REASON_INVALID_PROTO = 71, - SKB_DROP_REASON_IP_INADDRERRORS = 72, - SKB_DROP_REASON_IP_INNOROUTES = 73, - SKB_DROP_REASON_PKT_TOO_BIG = 74, - SKB_DROP_REASON_DUP_FRAG = 75, - SKB_DROP_REASON_FRAG_REASM_TIMEOUT = 76, - SKB_DROP_REASON_FRAG_TOO_FAR = 77, - SKB_DROP_REASON_TCP_MINTTL = 78, - SKB_DROP_REASON_IPV6_BAD_EXTHDR = 79, - SKB_DROP_REASON_IPV6_NDISC_FRAG = 80, - SKB_DROP_REASON_IPV6_NDISC_HOP_LIMIT = 81, - SKB_DROP_REASON_IPV6_NDISC_BAD_CODE = 82, - SKB_DROP_REASON_IPV6_NDISC_BAD_OPTIONS = 83, - SKB_DROP_REASON_IPV6_NDISC_NS_OTHERHOST = 84, - SKB_DROP_REASON_QUEUE_PURGE = 85, - SKB_DROP_REASON_TC_COOKIE_ERROR = 86, - SKB_DROP_REASON_PACKET_SOCK_ERROR = 87, - SKB_DROP_REASON_TC_CHAIN_NOTFOUND = 88, - SKB_DROP_REASON_TC_RECLASSIFY_LOOP = 89, - SKB_DROP_REASON_VXLAN_INVALID_HDR = 90, - SKB_DROP_REASON_VXLAN_VNI_NOT_FOUND = 91, - SKB_DROP_REASON_MAC_INVALID_SOURCE = 92, - SKB_DROP_REASON_VXLAN_ENTRY_EXISTS = 93, - SKB_DROP_REASON_NO_TX_TARGET = 94, - SKB_DROP_REASON_IP_TUNNEL_ECN = 95, - SKB_DROP_REASON_TUNNEL_TXINFO = 96, - SKB_DROP_REASON_LOCAL_MAC = 97, - SKB_DROP_REASON_MAX = 98, - SKB_DROP_REASON_SUBSYS_MASK = 4294901760, -}; - -enum { - NAPI_STATE_SCHED = 0, - NAPI_STATE_MISSED = 1, - NAPI_STATE_DISABLE = 2, - NAPI_STATE_NPSVC = 3, - NAPI_STATE_LISTED = 4, - NAPI_STATE_NO_BUSY_POLL = 5, - NAPI_STATE_IN_BUSY_POLL = 6, - NAPI_STATE_PREFER_BUSY_POLL = 7, - NAPI_STATE_THREADED = 8, - NAPI_STATE_SCHED_THREADED = 9, -}; - -enum xps_map_type { - XPS_CPUS = 0, - XPS_RXQS = 1, - XPS_MAPS_MAX = 2, -}; - -enum bpf_xdp_mode { - XDP_MODE_SKB = 0, - XDP_MODE_DRV = 1, - XDP_MODE_HW = 2, - __MAX_XDP_MODE = 3, -}; - -enum { - NETIF_MSG_DRV_BIT = 0, - NETIF_MSG_PROBE_BIT = 1, - NETIF_MSG_LINK_BIT = 2, - NETIF_MSG_TIMER_BIT = 3, - NETIF_MSG_IFDOWN_BIT = 4, - NETIF_MSG_IFUP_BIT = 5, - NETIF_MSG_RX_ERR_BIT = 6, - NETIF_MSG_TX_ERR_BIT = 7, - NETIF_MSG_TX_QUEUED_BIT = 8, - NETIF_MSG_INTR_BIT = 9, - NETIF_MSG_TX_DONE_BIT = 10, - NETIF_MSG_RX_STATUS_BIT = 11, - NETIF_MSG_PKTDATA_BIT = 12, - NETIF_MSG_HW_BIT = 13, - NETIF_MSG_WOL_BIT = 14, - NETIF_MSG_CLASS_COUNT = 15, -}; - -struct ppp_channel; - -struct ppp_channel_ops { - int (*start_xmit)(struct ppp_channel *, struct sk_buff *); - int (*ioctl)(struct ppp_channel *, unsigned int, long unsigned int); - int (*fill_forward_path)(struct net_device_path_ctx *, struct net_device_path *, const struct ppp_channel *); -}; - -struct ppp_channel { - void *private; - const struct ppp_channel_ops *ops; - int mtu; - int hdrlen; - void *ppp; - int speed; - int latency; -}; - -struct syncppp { - struct tty_struct *tty; - unsigned int flags; - unsigned int rbits; - int mru; - spinlock_t xmit_lock; - spinlock_t recv_lock; - long unsigned int xmit_flags; - u32 xaccm[8]; - u32 raccm; - unsigned int bytes_sent; - unsigned int bytes_rcvd; - struct sk_buff *tpkt; - long unsigned int last_xmit; - struct sk_buff_head rqueue; - struct tasklet_struct tsk; - refcount_t refcnt; - struct completion dead_cmp; - struct ppp_channel chan; -}; - -enum rpm_status { - RPM_INVALID = -1, - RPM_ACTIVE = 0, - RPM_RESUMING = 1, - RPM_SUSPENDED = 2, - RPM_SUSPENDING = 3, -}; - -struct driver_attribute { - struct attribute attr; - ssize_t (*show)(struct device_driver *, char *); - ssize_t (*store)(struct device_driver *, const char *, size_t); -}; - -struct usb_device_id { - __u16 match_flags; - __u16 idVendor; - __u16 idProduct; - __u16 bcdDevice_lo; - __u16 bcdDevice_hi; - __u8 bDeviceClass; - __u8 bDeviceSubClass; - __u8 bDeviceProtocol; - __u8 bInterfaceClass; - __u8 bInterfaceSubClass; - __u8 bInterfaceProtocol; - __u8 bInterfaceNumber; - kernel_ulong_t driver_info; -}; - -struct usb_device_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __le16 bcdUSB; - __u8 bDeviceClass; - __u8 bDeviceSubClass; - __u8 bDeviceProtocol; - __u8 bMaxPacketSize0; - __le16 idVendor; - __le16 idProduct; - __le16 bcdDevice; - __u8 iManufacturer; - __u8 iProduct; - __u8 iSerialNumber; - __u8 bNumConfigurations; -}; - -struct usb_config_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __le16 wTotalLength; - __u8 bNumInterfaces; - __u8 bConfigurationValue; - __u8 iConfiguration; - __u8 bmAttributes; - __u8 bMaxPower; -} __attribute__((packed)); - -struct usb_interface_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bInterfaceNumber; - __u8 bAlternateSetting; - __u8 bNumEndpoints; - __u8 bInterfaceClass; - __u8 bInterfaceSubClass; - __u8 bInterfaceProtocol; - __u8 iInterface; -}; - -struct usb_endpoint_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bEndpointAddress; - __u8 bmAttributes; - __le16 wMaxPacketSize; - __u8 bInterval; - __u8 bRefresh; - __u8 bSynchAddress; -} __attribute__((packed)); - -struct usb_ssp_isoc_ep_comp_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __le16 wReseved; - __le32 dwBytesPerInterval; -}; - -struct usb_ss_ep_comp_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bMaxBurst; - __u8 bmAttributes; - __le16 wBytesPerInterval; -}; - -struct usb_interface_assoc_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bFirstInterface; - __u8 bInterfaceCount; - __u8 bFunctionClass; - __u8 bFunctionSubClass; - __u8 bFunctionProtocol; - __u8 iFunction; -}; - -struct usb_bos_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __le16 wTotalLength; - __u8 bNumDeviceCaps; -} __attribute__((packed)); - -struct usb_ext_cap_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDevCapabilityType; - __le32 bmAttributes; -} __attribute__((packed)); - -struct usb_ss_cap_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDevCapabilityType; - __u8 bmAttributes; - __le16 wSpeedSupported; - __u8 bFunctionalitySupport; - __u8 bU1devExitLat; - __le16 bU2DevExitLat; -}; - -struct usb_ss_container_id_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDevCapabilityType; - __u8 bReserved; - __u8 ContainerID[16]; -}; - -struct usb_ssp_cap_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDevCapabilityType; - __u8 bReserved; - __le32 bmAttributes; - __le16 wFunctionalitySupport; - __le16 wReserved; - union { - __le32 legacy_padding; - struct { - struct {} __empty_bmSublinkSpeedAttr; - __le32 bmSublinkSpeedAttr[0]; - }; - }; -}; - -struct usb_ptm_cap_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDevCapabilityType; -}; - -enum usb_device_speed { - USB_SPEED_UNKNOWN = 0, - USB_SPEED_LOW = 1, - USB_SPEED_FULL = 2, - USB_SPEED_HIGH = 3, - USB_SPEED_WIRELESS = 4, - USB_SPEED_SUPER = 5, - USB_SPEED_SUPER_PLUS = 6, -}; - -enum usb_device_state { - USB_STATE_NOTATTACHED = 0, - USB_STATE_ATTACHED = 1, - USB_STATE_POWERED = 2, - USB_STATE_RECONNECTING = 3, - USB_STATE_UNAUTHENTICATED = 4, - USB_STATE_DEFAULT = 5, - USB_STATE_ADDRESS = 6, - USB_STATE_CONFIGURED = 7, - USB_STATE_SUSPENDED = 8, -}; - -enum usb_ssp_rate { - USB_SSP_GEN_UNKNOWN = 0, - USB_SSP_GEN_2x1 = 1, - USB_SSP_GEN_1x2 = 2, - USB_SSP_GEN_2x2 = 3, -}; - -struct ep_device; - -struct usb_host_endpoint { - struct usb_endpoint_descriptor desc; - struct usb_ss_ep_comp_descriptor ss_ep_comp; - struct usb_ssp_isoc_ep_comp_descriptor ssp_isoc_ep_comp; - long: 0; - struct list_head urb_list; - void *hcpriv; - struct ep_device *ep_dev; - unsigned char *extra; - int extralen; - int enabled; - int streams; - long: 0; -} __attribute__((packed)); - -struct usb_host_interface { - struct usb_interface_descriptor desc; - int extralen; - unsigned char *extra; - struct usb_host_endpoint *endpoint; - char *string; -}; - -enum usb_interface_condition { - USB_INTERFACE_UNBOUND = 0, - USB_INTERFACE_BINDING = 1, - USB_INTERFACE_BOUND = 2, - USB_INTERFACE_UNBINDING = 3, -}; - -enum usb_wireless_status { - USB_WIRELESS_STATUS_NA = 0, - USB_WIRELESS_STATUS_DISCONNECTED = 1, - USB_WIRELESS_STATUS_CONNECTED = 2, -}; - -struct usb_interface { - struct usb_host_interface *altsetting; - struct usb_host_interface *cur_altsetting; - unsigned int num_altsetting; - struct usb_interface_assoc_descriptor *intf_assoc; - int minor; - enum usb_interface_condition condition; - unsigned int sysfs_files_created: 1; - unsigned int ep_devs_created: 1; - unsigned int unregistering: 1; - unsigned int needs_remote_wakeup: 1; - unsigned int needs_altsetting0: 1; - unsigned int needs_binding: 1; - unsigned int resetting_device: 1; - unsigned int authorized: 1; - enum usb_wireless_status wireless_status; - struct work_struct wireless_status_work; - struct device dev; - struct device *usb_dev; - struct work_struct reset_ws; -}; - -struct usb_interface_cache { - unsigned int num_altsetting; - struct kref ref; - struct usb_host_interface altsetting[0]; -}; - -struct usb_host_config { - struct usb_config_descriptor desc; - char *string; - struct usb_interface_assoc_descriptor *intf_assoc[16]; - struct usb_interface *interface[32]; - struct usb_interface_cache *intf_cache[32]; - unsigned char *extra; - int extralen; -}; - -struct usb_host_bos { - struct usb_bos_descriptor *desc; - struct usb_ext_cap_descriptor *ext_cap; - struct usb_ss_cap_descriptor *ss_cap; - struct usb_ssp_cap_descriptor *ssp_cap; - struct usb_ss_container_id_descriptor *ss_id; - struct usb_ptm_cap_descriptor *ptm_cap; -}; - -struct usb_device; - -struct mon_bus; - -struct usb_bus { - struct device *controller; - struct device *sysdev; - int busnum; - const char *bus_name; - u8 uses_pio_for_control; - u8 otg_port; - unsigned int is_b_host: 1; - unsigned int b_hnp_enable: 1; - unsigned int no_stop_on_short: 1; - unsigned int no_sg_constraint: 1; - unsigned int sg_tablesize; - int devnum_next; - struct mutex devnum_next_mutex; - long unsigned int devmap[2]; - struct usb_device *root_hub; - struct usb_bus *hs_companion; - int bandwidth_allocated; - int bandwidth_int_reqs; - int bandwidth_isoc_reqs; - unsigned int resuming_ports; - struct mon_bus *mon_bus; - int monitored; -}; - -enum usb_link_tunnel_mode { - USB_LINK_UNKNOWN = 0, - USB_LINK_NATIVE = 1, - USB_LINK_TUNNELED = 2, -}; - -struct usb2_lpm_parameters { - unsigned int besl; - int timeout; -}; - -struct usb3_lpm_parameters { - unsigned int mel; - unsigned int pel; - unsigned int sel; - int timeout; -}; - -struct usb_tt; - -struct usb_device { - int devnum; - char devpath[16]; - u32 route; - enum usb_device_state state; - enum usb_device_speed speed; - unsigned int rx_lanes; - unsigned int tx_lanes; - enum usb_ssp_rate ssp_rate; - struct usb_tt *tt; - int ttport; - unsigned int toggle[2]; - struct usb_device *parent; - struct usb_bus *bus; - struct usb_host_endpoint ep0; - struct device dev; - struct usb_device_descriptor descriptor; - struct usb_host_bos *bos; - struct usb_host_config *config; - struct usb_host_config *actconfig; - struct usb_host_endpoint *ep_in[16]; - struct usb_host_endpoint *ep_out[16]; - char **rawdescriptors; - short unsigned int bus_mA; - u8 portnum; - u8 level; - u8 devaddr; - unsigned int can_submit: 1; - unsigned int persist_enabled: 1; - unsigned int reset_in_progress: 1; - unsigned int have_langid: 1; - unsigned int authorized: 1; - unsigned int authenticated: 1; - unsigned int lpm_capable: 1; - unsigned int lpm_devinit_allow: 1; - unsigned int usb2_hw_lpm_capable: 1; - unsigned int usb2_hw_lpm_besl_capable: 1; - unsigned int usb2_hw_lpm_enabled: 1; - unsigned int usb2_hw_lpm_allowed: 1; - unsigned int usb3_lpm_u1_enabled: 1; - unsigned int usb3_lpm_u2_enabled: 1; - int string_langid; - char *product; - char *manufacturer; - char *serial; - struct list_head filelist; - int maxchild; - u32 quirks; - atomic_t urbnum; - long unsigned int active_duration; - long unsigned int connect_time; - unsigned int do_remote_wakeup: 1; - unsigned int reset_resume: 1; - unsigned int port_is_suspended: 1; - enum usb_link_tunnel_mode tunnel_mode; - struct device_link *usb4_link; - int slot_id; - struct usb2_lpm_parameters l1_params; - struct usb3_lpm_parameters u1_params; - struct usb3_lpm_parameters u2_params; - unsigned int lpm_disable_count; - u16 hub_delay; - unsigned int use_generic_driver: 1; -}; - -struct usb_tt { - struct usb_device *hub; - int multi; - unsigned int think_time; - void *hcpriv; - spinlock_t lock; - struct list_head clear_list; - struct work_struct clear_work; -}; - -struct usb_dynids { - spinlock_t lock; - struct list_head list; -}; - -struct usb_dynid { - struct list_head node; - struct usb_device_id id; -}; - -struct usb_driver { - const char *name; - int (*probe)(struct usb_interface *, const struct usb_device_id *); - void (*disconnect)(struct usb_interface *); - int (*unlocked_ioctl)(struct usb_interface *, unsigned int, void *); - int (*suspend)(struct usb_interface *, pm_message_t); - int (*resume)(struct usb_interface *); - int (*reset_resume)(struct usb_interface *); - int (*pre_reset)(struct usb_interface *); - int (*post_reset)(struct usb_interface *); - void (*shutdown)(struct usb_interface *); - const struct usb_device_id *id_table; - const struct attribute_group **dev_groups; - struct usb_dynids dynids; - struct device_driver driver; - unsigned int no_dynamic_id: 1; - unsigned int supports_autosuspend: 1; - unsigned int disable_hub_initiated_lpm: 1; - unsigned int soft_unbind: 1; -}; - -struct usb_device_driver { - const char *name; - bool (*match)(struct usb_device *); - int (*probe)(struct usb_device *); - void (*disconnect)(struct usb_device *); - int (*suspend)(struct usb_device *, pm_message_t); - int (*resume)(struct usb_device *, pm_message_t); - int (*choose_configuration)(struct usb_device *); - const struct attribute_group **dev_groups; - struct device_driver driver; - const struct usb_device_id *id_table; - unsigned int supports_autosuspend: 1; - unsigned int generic_subclass: 1; -}; - -struct mon_bus { - struct list_head bus_link; - spinlock_t lock; - struct usb_bus *u_bus; - int text_inited; - int bin_inited; - struct dentry *dent_s; - struct dentry *dent_t; - struct dentry *dent_u; - struct device *classdev; - int nreaders; - struct list_head r_list; - struct kref ref; - unsigned int cnt_events; - unsigned int cnt_text_lost; -}; - -struct usb_iso_packet_descriptor { - unsigned int offset; - unsigned int length; - unsigned int actual_length; - int status; -}; - -struct usb_anchor { - struct list_head urb_list; - wait_queue_head_t wait; - spinlock_t lock; - atomic_t suspend_wakeups; - unsigned int poisoned: 1; -}; - -struct urb; - -typedef void (*usb_complete_t)(struct urb *); - -struct urb { - struct kref kref; - int unlinked; - void *hcpriv; - atomic_t use_count; - atomic_t reject; - struct list_head urb_list; - struct list_head anchor_list; - struct usb_anchor *anchor; - struct usb_device *dev; - struct usb_host_endpoint *ep; - unsigned int pipe; - unsigned int stream_id; - int status; - unsigned int transfer_flags; - void *transfer_buffer; - dma_addr_t transfer_dma; - struct scatterlist *sg; - int num_mapped_sgs; - int num_sgs; - u32 transfer_buffer_length; - u32 actual_length; - unsigned char *setup_packet; - dma_addr_t setup_dma; - int start_frame; - int number_of_packets; - int interval; - int error_count; - void *context; - usb_complete_t complete; - struct usb_iso_packet_descriptor iso_frame_desc[0]; -}; - -struct mon_reader { - struct list_head r_link; - struct mon_bus *m_bus; - void *r_data; - void (*rnf_submit)(void *, struct urb *); - void (*rnf_error)(void *, struct urb *, int); - void (*rnf_complete)(void *, struct urb *, int); -}; - -struct mon_iso_desc { - int status; - unsigned int offset; - unsigned int length; -}; - -struct mon_event_text { - struct list_head e_link; - int type; - long unsigned int id; - unsigned int tstamp; - int busnum; - char devnum; - char epnum; - char is_in; - char xfertype; - int length; - int status; - int interval; - int start_frame; - int error_count; - char setup_flag; - char data_flag; - int numdesc; - struct mon_iso_desc isodesc[5]; - unsigned char setup[8]; - unsigned char data[32]; -}; - -struct mon_reader_text { - struct kmem_cache *e_slab; - int nevents; - struct list_head e_list; - struct mon_reader r; - wait_queue_head_t wait; - int printf_size; - size_t printf_offset; - size_t printf_togo; - char *printf_buf; - struct mutex printf_lock; - char slab_name[30]; -}; - -struct mon_text_ptr { - int cnt; - int limit; - char *pbuf; -}; - -enum { - NAMESZ = 12, -}; - -enum usb3_link_state { - USB3_LPM_U0 = 0, - USB3_LPM_U1 = 1, - USB3_LPM_U2 = 2, - USB3_LPM_U3 = 3, -}; - -struct giveback_urb_bh { - bool running; - bool high_prio; - spinlock_t lock; - struct list_head head; - struct work_struct bh; - struct usb_host_endpoint *completing_ep; -}; - -enum usb_dev_authorize_policy { - USB_DEVICE_AUTHORIZE_NONE = 0, - USB_DEVICE_AUTHORIZE_ALL = 1, - USB_DEVICE_AUTHORIZE_INTERNAL = 2, -}; - -struct hc_driver; - -struct usb_phy; - -struct usb_phy_roothub; - -struct dma_pool; - -struct gen_pool; - -struct usb_hcd { - struct usb_bus self; - struct kref kref; - const char *product_desc; - int speed; - char irq_descr[24]; - struct timer_list rh_timer; - struct urb *status_urb; - struct work_struct died_work; - const struct hc_driver *driver; - struct usb_phy *usb_phy; - struct usb_phy_roothub *phy_roothub; - long unsigned int flags; - enum usb_dev_authorize_policy dev_policy; - unsigned int rh_registered: 1; - unsigned int rh_pollable: 1; - unsigned int msix_enabled: 1; - unsigned int msi_enabled: 1; - unsigned int skip_phy_initialization: 1; - unsigned int uses_new_polling: 1; - unsigned int has_tt: 1; - unsigned int amd_resume_bug: 1; - unsigned int can_do_streams: 1; - unsigned int tpl_support: 1; - unsigned int cant_recv_wakeups: 1; - unsigned int irq; - void *regs; - resource_size_t rsrc_start; - resource_size_t rsrc_len; - unsigned int power_budget; - struct giveback_urb_bh high_prio_bh; - struct giveback_urb_bh low_prio_bh; - struct mutex *address0_mutex; - struct mutex *bandwidth_mutex; - struct usb_hcd *shared_hcd; - struct usb_hcd *primary_hcd; - struct dma_pool *pool[4]; - int state; - struct gen_pool *localmem_pool; - long unsigned int hcd_priv[0]; -}; - -struct hc_driver { - const char *description; - const char *product_desc; - size_t hcd_priv_size; - irqreturn_t (*irq)(struct usb_hcd *); - int flags; - int (*reset)(struct usb_hcd *); - int (*start)(struct usb_hcd *); - int (*pci_suspend)(struct usb_hcd *, bool); - int (*pci_resume)(struct usb_hcd *, pm_message_t); - int (*pci_poweroff_late)(struct usb_hcd *, bool); - void (*stop)(struct usb_hcd *); - void (*shutdown)(struct usb_hcd *); - int (*get_frame_number)(struct usb_hcd *); - int (*urb_enqueue)(struct usb_hcd *, struct urb *, gfp_t); - int (*urb_dequeue)(struct usb_hcd *, struct urb *, int); - int (*map_urb_for_dma)(struct usb_hcd *, struct urb *, gfp_t); - void (*unmap_urb_for_dma)(struct usb_hcd *, struct urb *); - void (*endpoint_disable)(struct usb_hcd *, struct usb_host_endpoint *); - void (*endpoint_reset)(struct usb_hcd *, struct usb_host_endpoint *); - int (*hub_status_data)(struct usb_hcd *, char *); - int (*hub_control)(struct usb_hcd *, u16, u16, u16, char *, u16); - int (*bus_suspend)(struct usb_hcd *); - int (*bus_resume)(struct usb_hcd *); - int (*start_port_reset)(struct usb_hcd *, unsigned int); - long unsigned int (*get_resuming_ports)(struct usb_hcd *); - void (*relinquish_port)(struct usb_hcd *, int); - int (*port_handed_over)(struct usb_hcd *, int); - void (*clear_tt_buffer_complete)(struct usb_hcd *, struct usb_host_endpoint *); - int (*alloc_dev)(struct usb_hcd *, struct usb_device *); - void (*free_dev)(struct usb_hcd *, struct usb_device *); - int (*alloc_streams)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint **, unsigned int, unsigned int, gfp_t); - int (*free_streams)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint **, unsigned int, gfp_t); - int (*add_endpoint)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint *); - int (*drop_endpoint)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint *); - int (*check_bandwidth)(struct usb_hcd *, struct usb_device *); - void (*reset_bandwidth)(struct usb_hcd *, struct usb_device *); - int (*address_device)(struct usb_hcd *, struct usb_device *, unsigned int); - int (*enable_device)(struct usb_hcd *, struct usb_device *); - int (*update_hub_device)(struct usb_hcd *, struct usb_device *, struct usb_tt *, gfp_t); - int (*reset_device)(struct usb_hcd *, struct usb_device *); - int (*update_device)(struct usb_hcd *, struct usb_device *); - int (*set_usb2_hw_lpm)(struct usb_hcd *, struct usb_device *, int); - int (*enable_usb3_lpm_timeout)(struct usb_hcd *, struct usb_device *, enum usb3_link_state); - int (*disable_usb3_lpm_timeout)(struct usb_hcd *, struct usb_device *, enum usb3_link_state); - int (*find_raw_port_number)(struct usb_hcd *, int); - int (*port_power)(struct usb_hcd *, int, bool); - int (*submit_single_step_set_feature)(struct usb_hcd *, struct urb *, int); -}; - -struct xhci_cap_regs { - __le32 hc_capbase; - __le32 hcs_params1; - __le32 hcs_params2; - __le32 hcs_params3; - __le32 hcc_params; - __le32 db_off; - __le32 run_regs_off; - __le32 hcc_params2; -}; - -struct xhci_op_regs { - __le32 command; - __le32 status; - __le32 page_size; - __le32 reserved1; - __le32 reserved2; - __le32 dev_notification; - __le64 cmd_ring; - __le32 reserved3[4]; - __le64 dcbaa_ptr; - __le32 config_reg; - __le32 reserved4[241]; - __le32 port_status_base; - __le32 port_power_base; - __le32 port_link_base; - __le32 reserved5; - __le32 reserved6[1016]; -}; - -struct xhci_intr_reg { - __le32 irq_pending; - __le32 irq_control; - __le32 erst_size; - __le32 rsvd; - __le64 erst_base; - __le64 erst_dequeue; -}; - -struct xhci_run_regs { - __le32 microframe_index; - __le32 rsvd[7]; - struct xhci_intr_reg ir_set[128]; -}; - -struct xhci_doorbell_array { - __le32 doorbell[256]; -}; - -struct xhci_container_ctx { - unsigned int type; - int size; - u8 *bytes; - dma_addr_t dma; -}; - -struct xhci_slot_ctx { - __le32 dev_info; - __le32 dev_info2; - __le32 tt_info; - __le32 dev_state; - __le32 reserved[4]; -}; - -union xhci_trb; - -struct xhci_command { - struct xhci_container_ctx *in_ctx; - u32 status; - int slot_id; - struct completion *completion; - union xhci_trb *command_trb; - struct list_head cmd_list; - unsigned int timeout_ms; -}; - -struct xhci_link_trb { - __le64 segment_ptr; - __le32 intr_target; - __le32 control; -}; - -struct xhci_transfer_event { - __le64 buffer; - __le32 transfer_len; - __le32 flags; -}; - -struct xhci_event_cmd { - __le64 cmd_trb; - __le32 status; - __le32 flags; -}; - -struct xhci_generic_trb { - __le32 field[4]; -}; - -union xhci_trb { - struct xhci_link_trb link; - struct xhci_transfer_event trans_event; - struct xhci_event_cmd event_cmd; - struct xhci_generic_trb generic; -}; - -struct xhci_stream_ctx { - __le64 stream_ring; - __le32 reserved[2]; -}; - -struct xhci_ring; - -struct xhci_stream_info { - struct xhci_ring **stream_rings; - unsigned int num_streams; - struct xhci_stream_ctx *stream_ctx_array; - unsigned int num_stream_ctxs; - dma_addr_t ctx_array_dma; - struct xarray trb_address_map; - struct xhci_command *free_streams_command; -}; - -enum xhci_ring_type { - TYPE_CTRL = 0, - TYPE_ISOC = 1, - TYPE_BULK = 2, - TYPE_INTR = 3, - TYPE_STREAM = 4, - TYPE_COMMAND = 5, - TYPE_EVENT = 6, -}; - -struct xhci_segment; - -struct xhci_ring { - struct xhci_segment *first_seg; - struct xhci_segment *last_seg; - union xhci_trb *enqueue; - struct xhci_segment *enq_seg; - union xhci_trb *dequeue; - struct xhci_segment *deq_seg; - struct list_head td_list; - u32 cycle_state; - unsigned int stream_id; - unsigned int num_segs; - unsigned int num_trbs_free; - unsigned int bounce_buf_len; - enum xhci_ring_type type; - u32 old_trb_comp_code; - struct xarray *trb_address_map; -}; - -struct xhci_bw_info { - unsigned int ep_interval; - unsigned int mult; - unsigned int num_packets; - unsigned int max_packet_size; - unsigned int max_esit_payload; - unsigned int type; -}; - -struct xhci_virt_device; - -struct xhci_hcd; - -struct xhci_virt_ep { - struct xhci_virt_device *vdev; - unsigned int ep_index; - struct xhci_ring *ring; - struct xhci_stream_info *stream_info; - struct xhci_ring *new_ring; - unsigned int err_count; - unsigned int ep_state; - struct list_head cancelled_td_list; - struct xhci_hcd *xhci; - struct xhci_segment *queued_deq_seg; - union xhci_trb *queued_deq_ptr; - bool skip; - struct xhci_bw_info bw_info; - struct list_head bw_endpoint_list; - long unsigned int stop_time; - int next_frame_id; - bool use_extended_tbc; -}; - -struct xhci_port; - -struct xhci_interval_bw_table; - -struct xhci_tt_bw_info; - -struct xhci_virt_device { - int slot_id; - struct usb_device *udev; - struct xhci_container_ctx *out_ctx; - struct xhci_container_ctx *in_ctx; - struct xhci_virt_ep eps[31]; - struct xhci_port *rhub_port; - struct xhci_interval_bw_table *bw_table; - struct xhci_tt_bw_info *tt_info; - long unsigned int flags; - u16 current_mel; - void *debugfs_private; -}; - -struct s3_save { - u32 command; - u32 dev_nt; - u64 dcbaa_ptr; - u32 config_reg; -}; - -struct xhci_bus_state { - long unsigned int bus_suspended; - long unsigned int next_statechange; - u32 port_c_suspend; - u32 suspended_ports; - u32 port_remote_wakeup; - long unsigned int resuming_ports; -}; - -struct xhci_hub { - struct xhci_port **ports; - unsigned int num_ports; - struct usb_hcd *hcd; - struct xhci_bus_state bus_state; - u8 maj_rev; - u8 min_rev; -}; - -struct xhci_device_context_array; - -struct xhci_interrupter; - -struct xhci_scratchpad; - -struct xhci_root_port_bw_info; - -struct xhci_port_cap; - -struct xhci_hcd { - struct usb_hcd *main_hcd; - struct usb_hcd *shared_hcd; - struct xhci_cap_regs *cap_regs; - struct xhci_op_regs *op_regs; - struct xhci_run_regs *run_regs; - struct xhci_doorbell_array *dba; - __u32 hcs_params1; - __u32 hcs_params2; - __u32 hcs_params3; - __u32 hcc_params; - __u32 hcc_params2; - spinlock_t lock; - u16 hci_version; - u16 max_interrupters; - u32 imod_interval; - u32 page_size; - int nvecs; - struct clk *clk; - struct clk *reg_clk; - struct reset_control *reset; - struct xhci_device_context_array *dcbaa; - struct xhci_interrupter **interrupters; - struct xhci_ring *cmd_ring; - unsigned int cmd_ring_state; - struct list_head cmd_list; - unsigned int cmd_ring_reserved_trbs; - struct delayed_work cmd_timer; - struct completion cmd_ring_stop_completion; - struct xhci_command *current_cmd; - struct xhci_scratchpad *scratchpad; - struct mutex mutex; - struct xhci_virt_device *devs[256]; - struct xhci_root_port_bw_info *rh_bw; - struct dma_pool *device_pool; - struct dma_pool *segment_pool; - struct dma_pool *small_streams_pool; - struct dma_pool *medium_streams_pool; - unsigned int xhc_state; - long unsigned int run_graceperiod; - struct s3_save s3; - long long unsigned int quirks; - unsigned int num_active_eps; - unsigned int limit_active_eps; - struct xhci_port *hw_ports; - struct xhci_hub usb2_rhub; - struct xhci_hub usb3_rhub; - unsigned int hw_lpm_support: 1; - unsigned int broken_suspend: 1; - unsigned int allow_single_roothub: 1; - struct xhci_port_cap *port_caps; - unsigned int num_port_caps; - struct timer_list comp_mode_recovery_timer; - u32 port_status_u0; - u16 test_mode; - struct dentry *debugfs_root; - struct dentry *debugfs_slots; - struct list_head regset_list; - void *dbc; - long unsigned int priv[0]; -}; - -struct xhci_segment { - union xhci_trb *trbs; - struct xhci_segment *next; - unsigned int num; - dma_addr_t dma; - dma_addr_t bounce_dma; - void *bounce_buf; - unsigned int bounce_offs; - unsigned int bounce_len; -}; - -struct xhci_interval_bw { - unsigned int num_packets; - struct list_head endpoints; - unsigned int overhead[3]; -}; - -struct xhci_interval_bw_table { - unsigned int interval0_esit_payload; - struct xhci_interval_bw interval_bw[16]; - unsigned int bw_used; - unsigned int ss_bw_in; - unsigned int ss_bw_out; -}; - -struct xhci_port { - __le32 *addr; - int hw_portnum; - int hcd_portnum; - struct xhci_hub *rhub; - struct xhci_port_cap *port_cap; - unsigned int lpm_incapable: 1; - long unsigned int resume_timestamp; - bool rexit_active; - int slot_id; - struct completion rexit_done; - struct completion u3exit_done; -}; - -struct xhci_tt_bw_info { - struct list_head tt_list; - int slot_id; - int ttport; - struct xhci_interval_bw_table bw_table; - int active_eps; -}; - -struct xhci_root_port_bw_info { - struct list_head tts; - unsigned int num_active_tts; - struct xhci_interval_bw_table bw_table; -}; - -struct xhci_device_context_array { - __le64 dev_context_ptrs[256]; - dma_addr_t dma; -}; - -struct xhci_erst_entry { - __le64 seg_addr; - __le32 seg_size; - __le32 rsvd; -}; - -struct xhci_erst { - struct xhci_erst_entry *entries; - unsigned int num_entries; - dma_addr_t erst_dma_addr; -}; - -struct xhci_scratchpad { - u64 *sp_array; - dma_addr_t sp_dma; - void **sp_buffers; -}; - -struct xhci_interrupter { - struct xhci_ring *event_ring; - struct xhci_erst erst; - struct xhci_intr_reg *ir_set; - unsigned int intr_num; - bool ip_autoclear; - u32 isoc_bei_interval; - u32 s3_irq_pending; - u32 s3_irq_control; - u32 s3_erst_size; - u64 s3_erst_base; - u64 s3_erst_dequeue; -}; - -struct xhci_port_cap { - u32 *psi; - u8 psi_count; - u8 psi_uid_count; - u8 maj_rev; - u8 min_rev; - u32 protocol_caps; -}; - -enum sam_status { - SAM_STAT_GOOD = 0, - SAM_STAT_CHECK_CONDITION = 2, - SAM_STAT_CONDITION_MET = 4, - SAM_STAT_BUSY = 8, - SAM_STAT_INTERMEDIATE = 16, - SAM_STAT_INTERMEDIATE_CONDITION_MET = 20, - SAM_STAT_RESERVATION_CONFLICT = 24, - SAM_STAT_COMMAND_TERMINATED = 34, - SAM_STAT_TASK_SET_FULL = 40, - SAM_STAT_ACA_ACTIVE = 48, - SAM_STAT_TASK_ABORTED = 64, -}; - -enum scsi_disposition { - NEEDS_RETRY = 8193, - SUCCESS = 8194, - FAILED = 8195, - QUEUED = 8196, - SOFT_ERROR = 8197, - ADD_TO_MLQUEUE = 8198, - TIMEOUT_ERROR = 8199, - SCSI_RETURN_NOT_HANDLED = 8200, - FAST_IO_FAIL = 8201, -}; - -enum scsi_host_state { - SHOST_CREATED = 1, - SHOST_RUNNING = 2, - SHOST_CANCEL = 3, - SHOST_DEL = 4, - SHOST_RECOVERY = 5, - SHOST_CANCEL_RECOVERY = 6, - SHOST_DEL_RECOVERY = 7, -}; - -struct scsi_host_template; - -struct scsi_transport_template; - -struct Scsi_Host { - struct list_head __devices; - struct list_head __targets; - struct list_head starved_list; - spinlock_t default_lock; - spinlock_t *host_lock; - struct mutex scan_mutex; - struct list_head eh_abort_list; - struct list_head eh_cmd_q; - struct task_struct *ehandler; - struct completion *eh_action; - wait_queue_head_t host_wait; - const struct scsi_host_template *hostt; - struct scsi_transport_template *transportt; - struct kref tagset_refcnt; - struct completion tagset_freed; - struct blk_mq_tag_set tag_set; - atomic_t host_blocked; - unsigned int host_failed; - unsigned int host_eh_scheduled; - unsigned int host_no; - int eh_deadline; - long unsigned int last_reset; - unsigned int max_channel; - unsigned int max_id; - u64 max_lun; - unsigned int unique_id; - short unsigned int max_cmd_len; - int this_id; - int can_queue; - short int cmd_per_lun; - short unsigned int sg_tablesize; - short unsigned int sg_prot_tablesize; - unsigned int max_sectors; - unsigned int opt_sectors; - unsigned int max_segment_size; - unsigned int dma_alignment; - long unsigned int dma_boundary; - long unsigned int virt_boundary_mask; - unsigned int nr_hw_queues; - unsigned int nr_maps; - unsigned int active_mode: 2; - unsigned int host_self_blocked: 1; - unsigned int reverse_ordering: 1; - unsigned int tmf_in_progress: 1; - unsigned int async_scan: 1; - unsigned int eh_noresume: 1; - unsigned int no_write_same: 1; - unsigned int host_tagset: 1; - unsigned int queuecommand_may_block: 1; - unsigned int short_inquiry: 1; - unsigned int no_scsi2_lun_in_cdb: 1; - unsigned int no_highmem: 1; - struct workqueue_struct *work_q; - struct workqueue_struct *tmf_work_q; - unsigned int max_host_blocked; - unsigned int prot_capabilities; - unsigned char prot_guard_type; - long unsigned int base; - long unsigned int io_port; - unsigned char n_io_port; - unsigned char dma_channel; - unsigned int irq; - enum scsi_host_state shost_state; - struct device shost_gendev; - struct device shost_dev; - void *shost_data; - struct device *dma_dev; - int rpm_autosuspend_delay; - long unsigned int hostdata[0]; -}; - -struct scsi_data_buffer { - struct sg_table table; - unsigned int length; -}; - -enum scsi_cmnd_submitter { - SUBMITTED_BY_BLOCK_LAYER = 0, - SUBMITTED_BY_SCSI_ERROR_HANDLER = 1, - SUBMITTED_BY_SCSI_RESET_IOCTL = 2, -} __attribute__((mode(byte))); - -struct scsi_cmnd { - struct scsi_device *device; - struct list_head eh_entry; - struct delayed_work abort_work; - struct callback_head rcu; - int eh_eflags; - int budget_token; - long unsigned int jiffies_at_alloc; - int retries; - int allowed; - unsigned char prot_op; - unsigned char prot_type; - unsigned char prot_flags; - enum scsi_cmnd_submitter submitter; - short unsigned int cmd_len; - enum dma_data_direction sc_data_direction; - unsigned char cmnd[32]; - struct scsi_data_buffer sdb; - struct scsi_data_buffer *prot_sdb; - unsigned int underflow; - unsigned int transfersize; - unsigned int resid_len; - unsigned int sense_len; - unsigned char *sense_buffer; - int flags; - long unsigned int state; - unsigned int extra_len; - unsigned char *host_scribble; - int result; -}; - -struct usb_ctrlrequest { - __u8 bRequestType; - __u8 bRequest; - __le16 wValue; - __le16 wIndex; - __le16 wLength; -}; - -struct usb_sg_request { - int status; - size_t bytes; - spinlock_t lock; - struct usb_device *dev; - int pipe; - int entries; - struct urb **urbs; - int count; - struct completion complete; -}; - -enum { - US_FL_SINGLE_LUN = 1, - US_FL_NEED_OVERRIDE = 2, - US_FL_SCM_MULT_TARG = 4, - US_FL_FIX_INQUIRY = 8, - US_FL_FIX_CAPACITY = 16, - US_FL_IGNORE_RESIDUE = 32, - US_FL_BULK32 = 64, - US_FL_NOT_LOCKABLE = 128, - US_FL_GO_SLOW = 256, - US_FL_NO_WP_DETECT = 512, - US_FL_MAX_SECTORS_64 = 1024, - US_FL_IGNORE_DEVICE = 2048, - US_FL_CAPACITY_HEURISTICS = 4096, - US_FL_MAX_SECTORS_MIN = 8192, - US_FL_BULK_IGNORE_TAG = 16384, - US_FL_SANE_SENSE = 32768, - US_FL_CAPACITY_OK = 65536, - US_FL_BAD_SENSE = 131072, - US_FL_NO_READ_DISC_INFO = 262144, - US_FL_NO_READ_CAPACITY_16 = 524288, - US_FL_INITIAL_READ10 = 1048576, - US_FL_WRITE_CACHE = 2097152, - US_FL_NEEDS_CAP16 = 4194304, - US_FL_IGNORE_UAS = 8388608, - US_FL_BROKEN_FUA = 16777216, - US_FL_NO_ATA_1X = 33554432, - US_FL_NO_REPORT_OPCODES = 67108864, - US_FL_MAX_SECTORS_240 = 134217728, - US_FL_NO_REPORT_LUNS = 268435456, - US_FL_ALWAYS_SYNC = 536870912, - US_FL_NO_SAME = 1073741824, - US_FL_SENSE_AFTER_SYNC = 2147483648, -}; - -enum scsi_timeout_action { - SCSI_EH_DONE = 0, - SCSI_EH_RESET_TIMER = 1, - SCSI_EH_NOT_HANDLED = 2, -}; - -struct scsi_host_template { - unsigned int cmd_size; - int (*queuecommand)(struct Scsi_Host *, struct scsi_cmnd *); - void (*commit_rqs)(struct Scsi_Host *, u16); - struct module *module; - const char *name; - const char * (*info)(struct Scsi_Host *); - int (*ioctl)(struct scsi_device *, unsigned int, void *); - int (*init_cmd_priv)(struct Scsi_Host *, struct scsi_cmnd *); - int (*exit_cmd_priv)(struct Scsi_Host *, struct scsi_cmnd *); - int (*eh_abort_handler)(struct scsi_cmnd *); - int (*eh_device_reset_handler)(struct scsi_cmnd *); - int (*eh_target_reset_handler)(struct scsi_cmnd *); - int (*eh_bus_reset_handler)(struct scsi_cmnd *); - int (*eh_host_reset_handler)(struct scsi_cmnd *); - int (*slave_alloc)(struct scsi_device *); - int (*device_configure)(struct scsi_device *, struct queue_limits *); - int (*slave_configure)(struct scsi_device *); - void (*slave_destroy)(struct scsi_device *); - int (*target_alloc)(struct scsi_target *); - void (*target_destroy)(struct scsi_target *); - int (*scan_finished)(struct Scsi_Host *, long unsigned int); - void (*scan_start)(struct Scsi_Host *); - int (*change_queue_depth)(struct scsi_device *, int); - void (*map_queues)(struct Scsi_Host *); - int (*mq_poll)(struct Scsi_Host *, unsigned int); - bool (*dma_need_drain)(struct request *); - int (*bios_param)(struct scsi_device *, struct block_device *, sector_t, int *); - void (*unlock_native_capacity)(struct scsi_device *); - int (*show_info)(struct seq_file *, struct Scsi_Host *); - int (*write_info)(struct Scsi_Host *, char *, int); - enum scsi_timeout_action (*eh_timed_out)(struct scsi_cmnd *); - bool (*eh_should_retry_cmd)(struct scsi_cmnd *); - int (*host_reset)(struct Scsi_Host *, int); - const char *proc_name; - int can_queue; - int this_id; - short unsigned int sg_tablesize; - short unsigned int sg_prot_tablesize; - unsigned int max_sectors; - unsigned int max_segment_size; - unsigned int dma_alignment; - long unsigned int dma_boundary; - long unsigned int virt_boundary_mask; - short int cmd_per_lun; - int tag_alloc_policy; - unsigned int track_queue_depth: 1; - unsigned int supported_mode: 2; - unsigned int emulated: 1; - unsigned int skip_settle_delay: 1; - unsigned int no_write_same: 1; - unsigned int host_tagset: 1; - unsigned int queuecommand_may_block: 1; - unsigned int max_host_blocked; - const struct attribute_group **shost_groups; - const struct attribute_group **sdev_groups; - u64 vendor_id; -}; - -struct us_data; - -struct us_unusual_dev { - const char *vendorName; - const char *productName; - __u8 useProtocol; - __u8 useTransport; - int (*initFunction)(struct us_data *); -}; - -typedef int (*trans_cmnd)(struct scsi_cmnd *, struct us_data *); - -typedef int (*trans_reset)(struct us_data *); - -typedef void (*proto_cmnd)(struct scsi_cmnd *, struct us_data *); - -typedef void (*extra_data_destructor)(void *); - -struct us_data { - struct mutex dev_mutex; - struct usb_device *pusb_dev; - struct usb_interface *pusb_intf; - const struct us_unusual_dev *unusual_dev; - u64 fflags; - long unsigned int dflags; - unsigned int send_bulk_pipe; - unsigned int recv_bulk_pipe; - unsigned int send_ctrl_pipe; - unsigned int recv_ctrl_pipe; - unsigned int recv_intr_pipe; - char *transport_name; - char *protocol_name; - __le32 bcs_signature; - u8 subclass; - u8 protocol; - u8 max_lun; - u8 ifnum; - u8 ep_bInterval; - trans_cmnd transport; - trans_reset transport_reset; - proto_cmnd proto_handler; - struct scsi_cmnd *srb; - unsigned int tag; - char scsi_name[32]; - struct urb *current_urb; - struct usb_ctrlrequest *cr; - struct usb_sg_request current_sg; - unsigned char *iobuf; - dma_addr_t iobuf_dma; - struct task_struct *ctl_thread; - struct completion cmnd_ready; - struct completion notify; - wait_queue_head_t delay_wait; - struct delayed_work scan_dwork; - void *extra; - extra_data_destructor extra_destructor; - int use_last_sector_hacks; - int last_sector_retries; -}; - -enum xfer_buf_dir { - TO_XFER_BUF = 0, - FROM_XFER_BUF = 1, -}; - -struct datafab_info { - long unsigned int sectors; - long unsigned int ssize; - signed char lun; - unsigned char sense_key; - long unsigned int sense_asc; - long unsigned int sense_ascq; -}; - -struct kfifo { - union { - struct __kfifo kfifo; - unsigned char *type; - const unsigned char *const_type; - char (*rectype)[0]; - void *ptr; - const void *ptr_const; - }; - unsigned char buf[0]; -}; - -struct async_icount { - __u32 cts; - __u32 dsr; - __u32 rng; - __u32 dcd; - __u32 tx; - __u32 rx; - __u32 frame; - __u32 parity; - __u32 overrun; - __u32 brk; - __u32 buf_overrun; -}; - -struct usb_serial; - -struct usb_serial_port { - struct usb_serial *serial; - struct tty_port port; - spinlock_t lock; - u32 minor; - u8 port_number; - unsigned char *interrupt_in_buffer; - struct urb *interrupt_in_urb; - __u8 interrupt_in_endpointAddress; - unsigned char *interrupt_out_buffer; - int interrupt_out_size; - struct urb *interrupt_out_urb; - __u8 interrupt_out_endpointAddress; - unsigned char *bulk_in_buffer; - int bulk_in_size; - struct urb *read_urb; - __u8 bulk_in_endpointAddress; - unsigned char *bulk_in_buffers[2]; - struct urb *read_urbs[2]; - long unsigned int read_urbs_free; - unsigned char *bulk_out_buffer; - int bulk_out_size; - struct urb *write_urb; - struct kfifo write_fifo; - unsigned char *bulk_out_buffers[2]; - struct urb *write_urbs[2]; - long unsigned int write_urbs_free; - __u8 bulk_out_endpointAddress; - struct async_icount icount; - int tx_bytes; - long unsigned int flags; - struct work_struct work; - long unsigned int sysrq; - struct device dev; -}; - -struct usb_serial_driver; - -struct usb_serial { - struct usb_device *dev; - struct usb_serial_driver *type; - struct usb_interface *interface; - struct usb_interface *sibling; - unsigned int suspend_count; - unsigned char disconnected: 1; - unsigned char attached: 1; - unsigned char minors_reserved: 1; - unsigned char num_ports; - unsigned char num_port_pointers; - unsigned char num_interrupt_in; - unsigned char num_interrupt_out; - unsigned char num_bulk_in; - unsigned char num_bulk_out; - struct usb_serial_port *port[16]; - struct kref kref; - struct mutex disc_mutex; - void *private; -}; - -struct usb_serial_endpoints; - -struct usb_serial_driver { - const char *description; - const struct usb_device_id *id_table; - struct list_head driver_list; - struct device_driver driver; - struct usb_driver *usb_driver; - struct usb_dynids dynids; - unsigned char num_ports; - unsigned char num_bulk_in; - unsigned char num_bulk_out; - unsigned char num_interrupt_in; - unsigned char num_interrupt_out; - size_t bulk_in_size; - size_t bulk_out_size; - int (*probe)(struct usb_serial *, const struct usb_device_id *); - int (*attach)(struct usb_serial *); - int (*calc_num_ports)(struct usb_serial *, struct usb_serial_endpoints *); - void (*disconnect)(struct usb_serial *); - void (*release)(struct usb_serial *); - int (*port_probe)(struct usb_serial_port *); - void (*port_remove)(struct usb_serial_port *); - int (*suspend)(struct usb_serial *, pm_message_t); - int (*resume)(struct usb_serial *); - int (*reset_resume)(struct usb_serial *); - int (*open)(struct tty_struct *, struct usb_serial_port *); - void (*close)(struct usb_serial_port *); - int (*write)(struct tty_struct *, struct usb_serial_port *, const unsigned char *, int); - unsigned int (*write_room)(struct tty_struct *); - int (*ioctl)(struct tty_struct *, unsigned int, long unsigned int); - void (*get_serial)(struct tty_struct *, struct serial_struct *); - int (*set_serial)(struct tty_struct *, struct serial_struct *); - void (*set_termios)(struct tty_struct *, struct usb_serial_port *, const struct ktermios *); - int (*break_ctl)(struct tty_struct *, int); - unsigned int (*chars_in_buffer)(struct tty_struct *); - void (*wait_until_sent)(struct tty_struct *, long int); - bool (*tx_empty)(struct usb_serial_port *); - void (*throttle)(struct tty_struct *); - void (*unthrottle)(struct tty_struct *); - int (*tiocmget)(struct tty_struct *); - int (*tiocmset)(struct tty_struct *, unsigned int, unsigned int); - int (*tiocmiwait)(struct tty_struct *, long unsigned int); - int (*get_icount)(struct tty_struct *, struct serial_icounter_struct *); - void (*dtr_rts)(struct usb_serial_port *, int); - int (*carrier_raised)(struct usb_serial_port *); - void (*init_termios)(struct tty_struct *); - void (*read_int_callback)(struct urb *); - void (*write_int_callback)(struct urb *); - void (*read_bulk_callback)(struct urb *); - void (*write_bulk_callback)(struct urb *); - void (*process_read_urb)(struct urb *); - int (*prepare_write_buffer)(struct usb_serial_port *, void *, size_t); -}; - -struct usb_serial_endpoints { - unsigned char num_bulk_in; - unsigned char num_bulk_out; - unsigned char num_interrupt_in; - unsigned char num_interrupt_out; - struct usb_endpoint_descriptor *bulk_in[16]; - struct usb_endpoint_descriptor *bulk_out[16]; - struct usb_endpoint_descriptor *interrupt_in[16]; - struct usb_endpoint_descriptor *interrupt_out[16]; -}; - -enum packet_format { - packet_format_1 = 0, - packet_format_2 = 1, -}; - -struct cypress_private { - spinlock_t lock; - int chiptype; - int bytes_in; - int bytes_out; - int cmd_count; - int cmd_ctrl; - struct kfifo write_fifo; - int write_urb_in_use; - int write_urb_interval; - int read_urb_interval; - int comm_is_ok; - __u8 line_control; - __u8 current_status; - __u8 current_config; - __u8 rx_flags; - enum packet_format pkt_fmt; - int get_cfg_unsafe; - int baud_rate; - char prev_status; -}; - -struct usb_wwan_intf_private { - spinlock_t susp_lock; - unsigned int suspended: 1; - unsigned int use_send_setup: 1; - unsigned int use_zlp: 1; - int in_flight; - unsigned int open_ports; - void *private; -}; - -struct omninet_header { - __u8 oh_seq; - __u8 oh_len; - __u8 oh_xxx; - __u8 oh_pad; -}; - -struct omninet_data { - __u8 od_outseq; -}; - -struct symbol_private { - spinlock_t lock; - bool throttled; - bool actually_throttled; -}; - -struct whiteheat_simple { - __u8 port; -}; - -struct whiteheat_port_settings { - __u8 port; - __le32 baud; - __u8 bits; - __u8 stop; - __u8 parity; - __u8 sflow; - __u8 xoff; - __u8 xon; - __u8 hflow; - __u8 lloop; -} __attribute__((packed)); - -struct whiteheat_set_rdb { - __u8 port; - __u8 state; -}; - -struct whiteheat_purge { - __u8 port; - __u8 what; -}; - -struct whiteheat_hw_eeprom_info { - __u8 b0; - __u8 vendor_id_low; - __u8 vendor_id_high; - __u8 product_id_low; - __u8 product_id_high; - __u8 device_id_low; - __u8 device_id_high; - __u8 not_used_1; - __u8 serial_number_0; - __u8 serial_number_1; - __u8 serial_number_2; - __u8 serial_number_3; - __u8 not_used_2; - __u8 not_used_3; - __u8 checksum_low; - __u8 checksum_high; -}; - -struct whiteheat_hw_info { - __u8 hw_id; - __u8 sw_major_rev; - __u8 sw_minor_rev; - struct whiteheat_hw_eeprom_info hw_eeprom_info; -}; - -struct whiteheat_command_private { - struct mutex mutex; - __u8 port_running; - __u8 command_finished; - wait_queue_head_t wait_command; - __u8 result_buffer[64]; -}; - -struct whiteheat_private { - __u8 mcr; -}; - -struct input_event { - __kernel_ulong_t __sec; - __kernel_ulong_t __usec; - __u16 type; - __u16 code; - __s32 value; -}; - -struct input_id { - __u16 bustype; - __u16 vendor; - __u16 product; - __u16 version; -}; - -struct input_absinfo { - __s32 value; - __s32 minimum; - __s32 maximum; - __s32 fuzz; - __s32 flat; - __s32 resolution; -}; - -struct input_keymap_entry { - __u8 flags; - __u8 len; - __u16 index; - __u32 keycode; - __u8 scancode[32]; -}; - -struct ff_replay { - __u16 length; - __u16 delay; -}; - -struct ff_trigger { - __u16 button; - __u16 interval; -}; - -struct ff_envelope { - __u16 attack_length; - __u16 attack_level; - __u16 fade_length; - __u16 fade_level; -}; - -struct ff_constant_effect { - __s16 level; - struct ff_envelope envelope; -}; - -struct ff_ramp_effect { - __s16 start_level; - __s16 end_level; - struct ff_envelope envelope; -}; - -struct ff_condition_effect { - __u16 right_saturation; - __u16 left_saturation; - __s16 right_coeff; - __s16 left_coeff; - __u16 deadband; - __s16 center; -}; - -struct ff_periodic_effect { - __u16 waveform; - __u16 period; - __s16 magnitude; - __s16 offset; - __u16 phase; - struct ff_envelope envelope; - __u32 custom_len; - __s16 *custom_data; -}; - -struct ff_rumble_effect { - __u16 strong_magnitude; - __u16 weak_magnitude; -}; - -struct ff_effect { - __u16 type; - __s16 id; - __u16 direction; - struct ff_trigger trigger; - struct ff_replay replay; - union { - struct ff_constant_effect constant; - struct ff_ramp_effect ramp; - struct ff_periodic_effect periodic; - struct ff_condition_effect condition[2]; - struct ff_rumble_effect rumble; - } u; -}; - -struct input_device_id { - kernel_ulong_t flags; - __u16 bustype; - __u16 vendor; - __u16 product; - __u16 version; - kernel_ulong_t evbit[1]; - kernel_ulong_t keybit[12]; - kernel_ulong_t relbit[1]; - kernel_ulong_t absbit[1]; - kernel_ulong_t mscbit[1]; - kernel_ulong_t ledbit[1]; - kernel_ulong_t sndbit[1]; - kernel_ulong_t ffbit[2]; - kernel_ulong_t swbit[1]; - kernel_ulong_t propbit[1]; - kernel_ulong_t driver_info; -}; - -struct input_value { - __u16 type; - __u16 code; - __s32 value; -}; - -enum input_clock_type { - INPUT_CLK_REAL = 0, - INPUT_CLK_MONO = 1, - INPUT_CLK_BOOT = 2, - INPUT_CLK_MAX = 3, -}; - -struct ff_device; - -struct input_dev_poller; - -struct input_mt; - -struct input_handle; - -struct input_dev { - const char *name; - const char *phys; - const char *uniq; - struct input_id id; - long unsigned int propbit[1]; - long unsigned int evbit[1]; - long unsigned int keybit[12]; - long unsigned int relbit[1]; - long unsigned int absbit[1]; - long unsigned int mscbit[1]; - long unsigned int ledbit[1]; - long unsigned int sndbit[1]; - long unsigned int ffbit[2]; - long unsigned int swbit[1]; - unsigned int hint_events_per_packet; - unsigned int keycodemax; - unsigned int keycodesize; - void *keycode; - int (*setkeycode)(struct input_dev *, const struct input_keymap_entry *, unsigned int *); - int (*getkeycode)(struct input_dev *, struct input_keymap_entry *); - struct ff_device *ff; - struct input_dev_poller *poller; - unsigned int repeat_key; - struct timer_list timer; - int rep[2]; - struct input_mt *mt; - struct input_absinfo *absinfo; - long unsigned int key[12]; - long unsigned int led[1]; - long unsigned int snd[1]; - long unsigned int sw[1]; - int (*open)(struct input_dev *); - void (*close)(struct input_dev *); - int (*flush)(struct input_dev *, struct file *); - int (*event)(struct input_dev *, unsigned int, unsigned int, int); - struct input_handle *grab; - spinlock_t event_lock; - struct mutex mutex; - unsigned int users; - bool going_away; - struct device dev; - struct list_head h_list; - struct list_head node; - unsigned int num_vals; - unsigned int max_vals; - struct input_value *vals; - bool devres_managed; - ktime_t timestamp[3]; - bool inhibited; -}; - -struct ff_device { - int (*upload)(struct input_dev *, struct ff_effect *, struct ff_effect *); - int (*erase)(struct input_dev *, int); - int (*playback)(struct input_dev *, int, int); - void (*set_gain)(struct input_dev *, u16); - void (*set_autocenter)(struct input_dev *, u16); - void (*destroy)(struct ff_device *); - void *private; - long unsigned int ffbit[2]; - struct mutex mutex; - int max_effects; - struct ff_effect *effects; - struct file *effect_owners[0]; -}; - -struct input_mt_slot { - int abs[14]; - unsigned int frame; - unsigned int key; -}; - -struct input_mt { - int trkid; - int num_slots; - int slot; - unsigned int flags; - unsigned int frame; - int *red; - struct input_mt_slot slots[0]; -}; - -struct input_handler; - -struct input_handle { - void *private; - int open; - const char *name; - struct input_dev *dev; - struct input_handler *handler; - unsigned int (*handle_events)(struct input_handle *, struct input_value *, unsigned int); - struct list_head d_node; - struct list_head h_node; -}; - -struct input_handler { - void *private; - void (*event)(struct input_handle *, unsigned int, unsigned int, int); - unsigned int (*events)(struct input_handle *, struct input_value *, unsigned int); - bool (*filter)(struct input_handle *, unsigned int, unsigned int, int); - bool (*match)(struct input_handler *, struct input_dev *); - int (*connect)(struct input_handler *, struct input_dev *, const struct input_device_id *); - void (*disconnect)(struct input_handle *); - void (*start)(struct input_handle *); - bool legacy_minors; - int minor; - const char *name; - const struct input_device_id *id_table; - struct list_head h_list; - struct list_head node; -}; - -struct uinput_ff_upload { - __u32 request_id; - __s32 retval; - struct ff_effect effect; - struct ff_effect old; -}; - -struct uinput_ff_erase { - __u32 request_id; - __s32 retval; - __u32 effect_id; -}; - -struct uinput_setup { - struct input_id id; - char name[80]; - __u32 ff_effects_max; -}; - -struct uinput_abs_setup { - __u16 code; - struct input_absinfo absinfo; -}; - -struct uinput_user_dev { - char name[80]; - struct input_id id; - __u32 ff_effects_max; - __s32 absmax[64]; - __s32 absmin[64]; - __s32 absfuzz[64]; - __s32 absflat[64]; -}; - -struct miscdevice { - int minor; - const char *name; - const struct file_operations *fops; - struct list_head list; - struct device *parent; - struct device *this_device; - const struct attribute_group **groups; - const char *nodename; - umode_t mode; -}; - -enum uinput_state { - UIST_NEW_DEVICE = 0, - UIST_SETUP_COMPLETE = 1, - UIST_CREATED = 2, -}; - -struct uinput_request { - unsigned int id; - unsigned int code; - int retval; - struct completion done; - union { - unsigned int effect_id; - struct { - struct ff_effect *effect; - struct ff_effect *old; - } upload; - } u; -}; - -struct uinput_device { - struct input_dev *dev; - struct mutex mutex; - enum uinput_state state; - wait_queue_head_t waitq; - unsigned char ready; - unsigned char head; - unsigned char tail; - struct input_event buff[16]; - unsigned int ff_effects_max; - struct uinput_request *requests[16]; - wait_queue_head_t requests_waitq; - spinlock_t requests_lock; -}; - -struct pps_ktime { - __s64 sec; - __s32 nsec; - __u32 flags; -}; - -struct pps_kparams { - int api_version; - int mode; - struct pps_ktime assert_off_tu; - struct pps_ktime clear_off_tu; -}; - -struct pps_device; - -struct pps_source_info { - char name[32]; - char path[32]; - int mode; - void (*echo)(struct pps_device *, int, void *); - struct module *owner; - struct device *dev; -}; - -struct pps_device { - struct pps_source_info info; - struct pps_kparams params; - __u32 assert_sequence; - __u32 clear_sequence; - struct pps_ktime assert_tu; - struct pps_ktime clear_tu; - int current_mode; - unsigned int last_ev; - unsigned int last_fetched_ev; - wait_queue_head_t queue; - unsigned int id; - const void *lookup_cookie; - struct device dev; - struct fasync_struct *async_queue; - spinlock_t lock; -}; - -struct pps_event_time { - struct timespec64 ts_real; -}; - -typedef long unsigned int ulong; - -typedef struct { - u64 val; -} pfn_t; - -enum kobject_action { - KOBJ_ADD = 0, - KOBJ_REMOVE = 1, - KOBJ_CHANGE = 2, - KOBJ_MOVE = 3, - KOBJ_ONLINE = 4, - KOBJ_OFFLINE = 5, - KOBJ_BIND = 6, - KOBJ_UNBIND = 7, -}; - -typedef u16 blk_short_t; - -struct dm_ioctl { - __u32 version[3]; - __u32 data_size; - __u32 data_start; - __u32 target_count; - __s32 open_count; - __u32 flags; - __u32 event_nr; - __u32 padding; - __u64 dev; - char name[128]; - char uuid[129]; - char data[7]; -}; - -struct dm_target_spec { - __u64 sector_start; - __u64 length; - __s32 status; - __u32 next; - char target_type[16]; -}; - -struct dm_target_deps { - __u32 count; - __u32 padding; - __u64 dev[0]; -}; - -struct dm_name_list { - __u64 dev; - __u32 next; - char name[0]; -}; - -struct dm_target_versions { - __u32 next; - __u32 version[3]; - char name[0]; -}; - -struct dm_target_msg { - __u64 sector; - char message[0]; -}; - -enum { - DM_VERSION_CMD = 0, - DM_REMOVE_ALL_CMD = 1, - DM_LIST_DEVICES_CMD = 2, - DM_DEV_CREATE_CMD = 3, - DM_DEV_REMOVE_CMD = 4, - DM_DEV_RENAME_CMD = 5, - DM_DEV_SUSPEND_CMD = 6, - DM_DEV_STATUS_CMD = 7, - DM_DEV_WAIT_CMD = 8, - DM_TABLE_LOAD_CMD = 9, - DM_TABLE_CLEAR_CMD = 10, - DM_TABLE_DEPS_CMD = 11, - DM_TABLE_STATUS_CMD = 12, - DM_LIST_VERSIONS_CMD = 13, - DM_TARGET_MSG_CMD = 14, - DM_DEV_SET_GEOMETRY_CMD = 15, - DM_DEV_ARM_POLL_CMD = 16, - DM_GET_TARGET_VERSION_CMD = 17, -}; - -enum dm_queue_mode { - DM_TYPE_NONE = 0, - DM_TYPE_BIO_BASED = 1, - DM_TYPE_REQUEST_BASED = 2, - DM_TYPE_DAX_BIO_BASED = 3, -}; - -typedef enum { - STATUSTYPE_INFO = 0, - STATUSTYPE_TABLE = 1, - STATUSTYPE_IMA = 2, -} status_type_t; - -union map_info___2 { - void *ptr; -}; - -struct dm_target; - -typedef int (*dm_ctr_fn)(struct dm_target *, unsigned int, char **); - -struct dm_table; - -struct target_type; - -struct dm_target { - struct dm_table *table; - struct target_type *type; - sector_t begin; - sector_t len; - uint32_t max_io_len; - unsigned int num_flush_bios; - unsigned int num_discard_bios; - unsigned int num_secure_erase_bios; - unsigned int num_write_zeroes_bios; - unsigned int per_io_data_size; - void *private; - char *error; - bool flush_supported: 1; - bool discards_supported: 1; - bool zone_reset_all_supported: 1; - bool max_discard_granularity: 1; - bool limit_swap_bios: 1; - bool emulate_zone_append: 1; - bool accounts_remapped_io: 1; - bool needs_bio_set_dev: 1; - bool flush_bypasses_map: 1; - bool mempool_needs_integrity: 1; -}; - -typedef void (*dm_dtr_fn)(struct dm_target *); - -typedef int (*dm_map_fn)(struct dm_target *, struct bio *); - -typedef int (*dm_clone_and_map_request_fn)(struct dm_target *, struct request *, union map_info___2 *, struct request **); - -typedef void (*dm_release_clone_request_fn)(struct request *, union map_info___2 *); - -typedef int (*dm_endio_fn)(struct dm_target *, struct bio *, blk_status_t *); - -typedef int (*dm_request_endio_fn)(struct dm_target *, struct request *, blk_status_t, union map_info___2 *); - -typedef void (*dm_presuspend_fn)(struct dm_target *); - -typedef void (*dm_presuspend_undo_fn)(struct dm_target *); - -typedef void (*dm_postsuspend_fn)(struct dm_target *); - -typedef int (*dm_preresume_fn)(struct dm_target *); - -typedef void (*dm_resume_fn)(struct dm_target *); - -typedef void (*dm_status_fn)(struct dm_target *, status_type_t, unsigned int, char *, unsigned int); - -typedef int (*dm_message_fn)(struct dm_target *, unsigned int, char **, char *, unsigned int); - -typedef int (*dm_prepare_ioctl_fn)(struct dm_target *, struct block_device **); - -typedef int (*dm_report_zones_fn)(struct dm_target *); - -struct dm_dev; - -typedef int (*iterate_devices_callout_fn)(struct dm_target *, struct dm_dev *, sector_t, sector_t, void *); - -struct dm_dev { - struct block_device *bdev; - struct file *bdev_file; - struct dax_device *dax_dev; - blk_mode_t mode; - char name[16]; -}; - -typedef int (*dm_iterate_devices_fn)(struct dm_target *, iterate_devices_callout_fn, void *); - -typedef void (*dm_io_hints_fn)(struct dm_target *, struct queue_limits *); - -typedef int (*dm_busy_fn)(struct dm_target *); - -enum dax_access_mode { - DAX_ACCESS = 0, - DAX_RECOVERY_WRITE = 1, -}; - -typedef long int (*dm_dax_direct_access_fn)(struct dm_target *, long unsigned int, long int, enum dax_access_mode, void **, pfn_t *); - -typedef int (*dm_dax_zero_page_range_fn)(struct dm_target *, long unsigned int, size_t); - -typedef size_t (*dm_dax_recovery_write_fn)(struct dm_target *, long unsigned int, void *, size_t, struct iov_iter *); - -struct target_type { - uint64_t features; - const char *name; - struct module *module; - unsigned int version[3]; - dm_ctr_fn ctr; - dm_dtr_fn dtr; - dm_map_fn map; - dm_clone_and_map_request_fn clone_and_map_rq; - dm_release_clone_request_fn release_clone_rq; - dm_endio_fn end_io; - dm_request_endio_fn rq_end_io; - dm_presuspend_fn presuspend; - dm_presuspend_undo_fn presuspend_undo; - dm_postsuspend_fn postsuspend; - dm_preresume_fn preresume; - dm_resume_fn resume; - dm_status_fn status; - dm_message_fn message; - dm_prepare_ioctl_fn prepare_ioctl; - dm_report_zones_fn report_zones; - dm_busy_fn busy; - dm_iterate_devices_fn iterate_devices; - dm_io_hints_fn io_hints; - dm_dax_direct_access_fn direct_access; - dm_dax_zero_page_range_fn dax_zero_page_range; - dm_dax_recovery_write_fn dax_recovery_write; - struct list_head list; -}; - -struct mapped_device; - -struct dm_md_mempools; - -struct dm_table { - struct mapped_device *md; - enum dm_queue_mode type; - unsigned int depth; - unsigned int counts[16]; - sector_t *index[16]; - unsigned int num_targets; - unsigned int num_allocated; - sector_t *highs; - struct dm_target *targets; - struct target_type *immutable_target_type; - bool integrity_supported: 1; - bool singleton: 1; - bool flush_bypasses_map: 1; - blk_mode_t mode; - struct list_head devices; - struct rw_semaphore devices_lock; - void (*event_fn)(void *); - void *event_context; - struct dm_md_mempools *mempools; -}; - -struct dm_stats_last_position; - -struct dm_stats { - struct mutex mutex; - struct list_head list; - struct dm_stats_last_position *last; - bool precise_timestamps; -}; - -struct dm_stats_aux { - bool merged; - long long unsigned int duration_ns; -}; - -struct dm_dev_internal { - struct list_head list; - refcount_t count; - struct dm_dev *dm_dev; -}; - -struct dm_kobject_holder { - struct kobject kobj; - struct completion completion; -}; - -struct dm_md_mempools { - struct bio_set bs; - struct bio_set io_bs; -}; - -struct dm_io; - -struct mapped_device { - struct mutex suspend_lock; - struct mutex table_devices_lock; - struct list_head table_devices; - void *map; - long unsigned int flags; - struct mutex type_lock; - enum dm_queue_mode type; - int numa_node_id; - struct request_queue *queue; - atomic_t holders; - atomic_t open_count; - struct dm_target *immutable_target; - struct target_type *immutable_target_type; - char name[16]; - struct gendisk *disk; - struct dax_device *dax_dev; - wait_queue_head_t wait; - long unsigned int *pending_io; - struct hd_geometry geometry; - struct workqueue_struct *wq; - struct work_struct work; - spinlock_t deferred_lock; - struct bio_list deferred; - struct work_struct requeue_work; - struct dm_io *requeue_list; - void *interface_ptr; - wait_queue_head_t eventq; - atomic_t event_nr; - atomic_t uevent_seq; - struct list_head uevent_list; - spinlock_t uevent_lock; - bool init_tio_pdu: 1; - struct blk_mq_tag_set *tag_set; - struct dm_stats stats; - unsigned int internal_suspend_count; - int swap_bios; - struct semaphore swap_bios_semaphore; - struct mutex swap_bios_lock; - struct dm_md_mempools *mempools; - struct dm_kobject_holder kobj_holder; - struct srcu_struct io_barrier; -}; - -struct dm_target_io { - short unsigned int magic; - blk_short_t flags; - unsigned int target_bio_nr; - struct dm_io *io; - struct dm_target *ti; - unsigned int *len_ptr; - sector_t old_sector; - struct bio clone; -}; - -struct dm_io { - short unsigned int magic; - blk_short_t flags; - spinlock_t lock; - long unsigned int start_time; - void *data; - struct dm_io *next; - struct dm_stats_aux stats_aux; - blk_status_t status; - atomic_t io_count; - struct mapped_device *md; - struct bio *orig_bio; - unsigned int sector_offset; - unsigned int sectors; - struct dm_target_io tio; -}; - -enum key_being_used_for { - VERIFYING_MODULE_SIGNATURE = 0, - VERIFYING_FIRMWARE_SIGNATURE = 1, - VERIFYING_KEXEC_PE_SIGNATURE = 2, - VERIFYING_KEY_SIGNATURE = 3, - VERIFYING_KEY_SELF_SIGNATURE = 4, - VERIFYING_UNSPECIFIED_SIGNATURE = 5, - NR__KEY_BEING_USED_FOR = 6, -}; - -struct dm_file { - volatile unsigned int global_event_nr; -}; - -struct hash_cell { - struct rb_node name_node; - struct rb_node uuid_node; - bool name_set; - bool uuid_set; - char *name; - char *uuid; - struct mapped_device *md; - struct dm_table *new_map; -}; - -struct vers_iter { - size_t param_size; - struct dm_target_versions *vers; - struct dm_target_versions *old_vers; - char *end; - uint32_t flags; -}; - -typedef int (*ioctl_fn)(struct file *, struct dm_ioctl *, size_t); - -struct cpuidle_state_usage { - long long unsigned int disable; - long long unsigned int usage; - u64 time_ns; - long long unsigned int above; - long long unsigned int below; - long long unsigned int rejected; -}; - -struct cpuidle_device; - -struct cpuidle_driver; - -struct cpuidle_state { - char name[16]; - char desc[32]; - s64 exit_latency_ns; - s64 target_residency_ns; - unsigned int flags; - unsigned int exit_latency; - int power_usage; - unsigned int target_residency; - int (*enter)(struct cpuidle_device *, struct cpuidle_driver *, int); - int (*enter_dead)(struct cpuidle_device *, int); - int (*enter_s2idle)(struct cpuidle_device *, struct cpuidle_driver *, int); -}; - -struct cpuidle_state_kobj; - -struct cpuidle_driver_kobj; - -struct cpuidle_device_kobj; - -struct cpuidle_device { - unsigned int registered: 1; - unsigned int enabled: 1; - unsigned int poll_time_limit: 1; - unsigned int cpu; - ktime_t next_hrtimer; - int last_state_idx; - u64 last_residency_ns; - u64 poll_limit_ns; - u64 forced_idle_latency_limit_ns; - struct cpuidle_state_usage states_usage[10]; - struct cpuidle_state_kobj *kobjs[10]; - struct cpuidle_driver_kobj *kobj_driver; - struct cpuidle_device_kobj *kobj_dev; - struct list_head device_list; -}; - -struct cpuidle_driver { - const char *name; - struct module *owner; - unsigned int bctimer: 1; - struct cpuidle_state states[10]; - int state_count; - int safe_state_index; - struct cpumask *cpumask; - const char *governor; -}; - -struct cpuidle_governor { - char name[16]; - struct list_head governor_list; - unsigned int rating; - int (*enable)(struct cpuidle_driver *, struct cpuidle_device *); - void (*disable)(struct cpuidle_driver *, struct cpuidle_device *); - int (*select)(struct cpuidle_driver *, struct cpuidle_device *, bool *); - void (*reflect)(struct cpuidle_device *, int); -}; - -struct menu_device { - int needs_update; - int tick_wakeup; - u64 next_timer_ns; - unsigned int bucket; - unsigned int correction_factor[6]; - unsigned int intervals[8]; - int interval_ptr; -}; - -struct psci_operations { - u32 (*get_version)(void); - int (*cpu_suspend)(u32, long unsigned int); - int (*cpu_off)(u32); - int (*cpu_on)(long unsigned int, long unsigned int); - int (*migrate)(long unsigned int); - int (*affinity_info)(long unsigned int, long unsigned int); - int (*migrate_info_type)(void); -}; - -struct psci_cpuidle_data { - u32 *psci_states; - struct device *dev; -}; - -struct wake_irq; - -struct wakeup_source { - const char *name; - int id; - struct list_head entry; - spinlock_t lock; - struct wake_irq *wakeirq; - struct timer_list timer; - long unsigned int timer_expires; - ktime_t total_time; - ktime_t max_time; - ktime_t last_time; - ktime_t start_prevent_time; - ktime_t prevent_sleep_time; - long unsigned int event_count; - long unsigned int active_count; - long unsigned int relax_count; - long unsigned int expire_count; - long unsigned int wakeup_count; - struct device *dev; - bool active: 1; - bool autosleep_enabled: 1; -}; - -struct mmc_data; - -struct mmc_request; - -struct mmc_command { - u32 opcode; - u32 arg; - u32 resp[4]; - unsigned int flags; - unsigned int retries; - int error; - unsigned int busy_timeout; - struct mmc_data *data; - struct mmc_request *mrq; -}; - -struct mmc_data { - unsigned int timeout_ns; - unsigned int timeout_clks; - unsigned int blksz; - unsigned int blocks; - unsigned int blk_addr; - int error; - unsigned int flags; - unsigned int bytes_xfered; - struct mmc_command *stop; - struct mmc_request *mrq; - unsigned int sg_len; - int sg_count; - struct scatterlist *sg; - s32 host_cookie; -}; - -struct mmc_host; - -struct mmc_request { - struct mmc_command *sbc; - struct mmc_command *cmd; - struct mmc_data *data; - struct mmc_command *stop; - struct completion completion; - struct completion cmd_completion; - void (*done)(struct mmc_request *); - void (*recovery_notifier)(struct mmc_request *); - struct mmc_host *host; - bool cap_cmd_during_tfr; - int tag; -}; - -typedef unsigned int mmc_pm_flag_t; - -struct mmc_ios { - unsigned int clock; - short unsigned int vdd; - unsigned int power_delay_ms; - unsigned char bus_mode; - unsigned char chip_select; - unsigned char power_mode; - unsigned char bus_width; - unsigned char timing; - unsigned char signal_voltage; - unsigned char drv_type; - bool enhanced_strobe; -}; - -struct mmc_ctx { - struct task_struct *task; -}; - -struct mmc_slot { - int cd_irq; - bool cd_wake_enabled; - void *handler_priv; -}; - -struct regulator; - -struct mmc_supply { - struct regulator *vmmc; - struct regulator *vqmmc; -}; - -struct mmc_host_ops; - -struct mmc_pwrseq; - -struct mmc_card; - -struct mmc_bus_ops; - -struct led_trigger; - -struct mmc_cqe_ops; - -struct mmc_host { - struct device *parent; - struct device class_dev; - int index; - const struct mmc_host_ops *ops; - struct mmc_pwrseq *pwrseq; - unsigned int f_min; - unsigned int f_max; - unsigned int f_init; - u32 ocr_avail; - u32 ocr_avail_sdio; - u32 ocr_avail_sd; - u32 ocr_avail_mmc; - struct wakeup_source *ws; - u32 max_current_330; - u32 max_current_300; - u32 max_current_180; - u32 caps; - u32 caps2; - int fixed_drv_type; - mmc_pm_flag_t pm_caps; - unsigned int max_seg_size; - short unsigned int max_segs; - short unsigned int unused; - unsigned int max_req_size; - unsigned int max_blk_size; - unsigned int max_blk_count; - unsigned int max_busy_timeout; - spinlock_t lock; - struct mmc_ios ios; - unsigned int use_spi_crc: 1; - unsigned int claimed: 1; - unsigned int doing_init_tune: 1; - unsigned int can_retune: 1; - unsigned int doing_retune: 1; - unsigned int retune_now: 1; - unsigned int retune_paused: 1; - unsigned int retune_crc_disable: 1; - unsigned int can_dma_map_merge: 1; - unsigned int vqmmc_enabled: 1; - int rescan_disable; - int rescan_entered; - int need_retune; - int hold_retune; - unsigned int retune_period; - struct timer_list retune_timer; - bool trigger_card_event; - struct mmc_card *card; - wait_queue_head_t wq; - struct mmc_ctx *claimer; - int claim_cnt; - struct mmc_ctx default_ctx; - struct delayed_work detect; - int detect_change; - struct mmc_slot slot; - const struct mmc_bus_ops *bus_ops; - unsigned int sdio_irqs; - struct task_struct *sdio_irq_thread; - struct work_struct sdio_irq_work; - bool sdio_irq_pending; - atomic_t sdio_irq_thread_abort; - mmc_pm_flag_t pm_flags; - struct led_trigger *led; - struct mmc_supply supply; - struct dentry *debugfs_root; - struct mmc_request *ongoing_mrq; - unsigned int actual_clock; - unsigned int slotno; - int dsr_req; - u32 dsr; - const struct mmc_cqe_ops *cqe_ops; - void *cqe_private; - int cqe_qdepth; - bool cqe_enabled; - bool cqe_on; - bool hsq_enabled; - int hsq_depth; - u32 err_stats[15]; - long: 64; - long: 64; - long unsigned int private[0]; -}; - -struct mmc_cid { - unsigned int manfid; - char prod_name[8]; - unsigned char prv; - unsigned int serial; - short unsigned int oemid; - short unsigned int year; - unsigned char hwrev; - unsigned char fwrev; - unsigned char month; -}; - -struct mmc_csd { - unsigned char structure; - unsigned char mmca_vsn; - short unsigned int cmdclass; - short unsigned int taac_clks; - unsigned int taac_ns; - unsigned int c_size; - unsigned int r2w_factor; - unsigned int max_dtr; - unsigned int erase_size; - unsigned int wp_grp_size; - unsigned int read_blkbits; - unsigned int write_blkbits; - sector_t capacity; - unsigned int read_partial: 1; - unsigned int read_misalign: 1; - unsigned int write_partial: 1; - unsigned int write_misalign: 1; - unsigned int dsr_imp: 1; -}; - -struct mmc_ext_csd { - u8 rev; - u8 erase_group_def; - u8 sec_feature_support; - u8 rel_sectors; - u8 rel_param; - bool enhanced_rpmb_supported; - u8 part_config; - u8 cache_ctrl; - u8 rst_n_function; - unsigned int part_time; - unsigned int sa_timeout; - unsigned int generic_cmd6_time; - unsigned int power_off_longtime; - u8 power_off_notification; - unsigned int hs_max_dtr; - unsigned int hs200_max_dtr; - unsigned int sectors; - unsigned int hc_erase_size; - unsigned int hc_erase_timeout; - unsigned int sec_trim_mult; - unsigned int sec_erase_mult; - unsigned int trim_timeout; - bool partition_setting_completed; - long long unsigned int enhanced_area_offset; - unsigned int enhanced_area_size; - unsigned int cache_size; - bool hpi_en; - bool hpi; - unsigned int hpi_cmd; - bool bkops; - bool man_bkops_en; - bool auto_bkops_en; - unsigned int data_sector_size; - unsigned int data_tag_unit_size; - unsigned int boot_ro_lock; - bool boot_ro_lockable; - bool ffu_capable; - bool cmdq_en; - bool cmdq_support; - unsigned int cmdq_depth; - u8 fwrev[8]; - u8 raw_exception_status; - u8 raw_partition_support; - u8 raw_rpmb_size_mult; - u8 raw_erased_mem_count; - u8 strobe_support; - u8 raw_ext_csd_structure; - u8 raw_card_type; - u8 raw_driver_strength; - u8 out_of_int_time; - u8 raw_pwr_cl_52_195; - u8 raw_pwr_cl_26_195; - u8 raw_pwr_cl_52_360; - u8 raw_pwr_cl_26_360; - u8 raw_s_a_timeout; - u8 raw_hc_erase_gap_size; - u8 raw_erase_timeout_mult; - u8 raw_hc_erase_grp_size; - u8 raw_boot_mult; - u8 raw_sec_trim_mult; - u8 raw_sec_erase_mult; - u8 raw_sec_feature_support; - u8 raw_trim_mult; - u8 raw_pwr_cl_200_195; - u8 raw_pwr_cl_200_360; - u8 raw_pwr_cl_ddr_52_195; - u8 raw_pwr_cl_ddr_52_360; - u8 raw_pwr_cl_ddr_200_360; - u8 raw_bkops_status; - u8 raw_sectors[4]; - u8 pre_eol_info; - u8 device_life_time_est_typ_a; - u8 device_life_time_est_typ_b; - unsigned int feature_support; -}; - -struct sd_scr { - unsigned char sda_vsn; - unsigned char sda_spec3; - unsigned char sda_spec4; - unsigned char sda_specx; - unsigned char bus_widths; - unsigned char cmds; -}; - -struct sd_ssr { - unsigned int au; - unsigned int erase_timeout; - unsigned int erase_offset; -}; - -struct sd_switch_caps { - unsigned int hs_max_dtr; - unsigned int uhs_max_dtr; - unsigned int sd3_bus_mode; - unsigned int sd3_drv_type; - unsigned int sd3_curr_limit; -}; - -struct sd_ext_reg { - u8 fno; - u8 page; - u16 offset; - u8 rev; - u8 feature_enabled; - u8 feature_support; -}; - -struct sdio_cccr { - unsigned int sdio_vsn; - unsigned int sd_vsn; - unsigned int multi_block: 1; - unsigned int low_speed: 1; - unsigned int wide_bus: 1; - unsigned int high_power: 1; - unsigned int high_speed: 1; - unsigned int disable_cd: 1; - unsigned int enable_async_irq: 1; -}; - -struct sdio_cis { - short unsigned int vendor; - short unsigned int device; - short unsigned int blksize; - unsigned int max_dtr; -}; - -struct mmc_part { - u64 size; - unsigned int part_cfg; - char name[20]; - bool force_ro; - unsigned int area_type; -}; - -struct sdio_func; - -struct sdio_func_tuple; - -struct mmc_card { - struct mmc_host *host; - struct device dev; - u32 ocr; - unsigned int rca; - unsigned int type; - unsigned int state; - unsigned int quirks; - unsigned int quirk_max_rate; - bool written_flag; - bool reenable_cmdq; - unsigned int erase_size; - unsigned int erase_shift; - unsigned int pref_erase; - unsigned int eg_boundary; - unsigned int erase_arg; - u8 erased_byte; - unsigned int wp_grp_size; - u32 raw_cid[4]; - u32 raw_csd[4]; - u32 raw_scr[2]; - u32 raw_ssr[16]; - struct mmc_cid cid; - struct mmc_csd csd; - struct mmc_ext_csd ext_csd; - struct sd_scr scr; - struct sd_ssr ssr; - struct sd_switch_caps sw_caps; - struct sd_ext_reg ext_power; - struct sd_ext_reg ext_perf; - unsigned int sdio_funcs; - atomic_t sdio_funcs_probed; - struct sdio_cccr cccr; - struct sdio_cis cis; - struct sdio_func *sdio_func[7]; - struct sdio_func *sdio_single_irq; - u8 major_rev; - u8 minor_rev; - unsigned int num_info; - const char **info; - struct sdio_func_tuple *tuples; - unsigned int sd_bus_speed; - unsigned int mmc_avail_type; - unsigned int drive_strength; - struct dentry *debugfs_root; - struct mmc_part part[7]; - unsigned int nr_parts; - struct workqueue_struct *complete_wq; -}; - -typedef void sdio_irq_handler_t(struct sdio_func *); - -struct sdio_func { - struct mmc_card *card; - struct device dev; - sdio_irq_handler_t *irq_handler; - unsigned int num; - unsigned char class; - short unsigned int vendor; - short unsigned int device; - unsigned int max_blksize; - unsigned int cur_blksize; - unsigned int enable_timeout; - unsigned int state; - u8 *tmpbuf; - u8 major_rev; - u8 minor_rev; - unsigned int num_info; - const char **info; - struct sdio_func_tuple *tuples; -}; - -struct sdio_func_tuple { - struct sdio_func_tuple *next; - unsigned char code; - unsigned char size; - unsigned char data[0]; -}; - -enum blk_crypto_mode_num { - BLK_ENCRYPTION_MODE_INVALID = 0, - BLK_ENCRYPTION_MODE_AES_256_XTS = 1, - BLK_ENCRYPTION_MODE_AES_128_CBC_ESSIV = 2, - BLK_ENCRYPTION_MODE_ADIANTUM = 3, - BLK_ENCRYPTION_MODE_SM4_XTS = 4, - BLK_ENCRYPTION_MODE_MAX = 5, -}; - -enum mmc_err_stat { - MMC_ERR_CMD_TIMEOUT = 0, - MMC_ERR_CMD_CRC = 1, - MMC_ERR_DAT_TIMEOUT = 2, - MMC_ERR_DAT_CRC = 3, - MMC_ERR_AUTO_CMD = 4, - MMC_ERR_ADMA = 5, - MMC_ERR_TUNING = 6, - MMC_ERR_CMDQ_RED = 7, - MMC_ERR_CMDQ_GCE = 8, - MMC_ERR_CMDQ_ICCE = 9, - MMC_ERR_REQ_TIMEOUT = 10, - MMC_ERR_CMDQ_REQ_TIMEOUT = 11, - MMC_ERR_ICE_CFG = 12, - MMC_ERR_CTRL_TIMEOUT = 13, - MMC_ERR_UNEXPECTED_IRQ = 14, - MMC_ERR_MAX = 15, -}; - -struct mmc_host_ops { - void (*post_req)(struct mmc_host *, struct mmc_request *, int); - void (*pre_req)(struct mmc_host *, struct mmc_request *); - void (*request)(struct mmc_host *, struct mmc_request *); - int (*request_atomic)(struct mmc_host *, struct mmc_request *); - void (*set_ios)(struct mmc_host *, struct mmc_ios *); - int (*get_ro)(struct mmc_host *); - int (*get_cd)(struct mmc_host *); - void (*enable_sdio_irq)(struct mmc_host *, int); - void (*ack_sdio_irq)(struct mmc_host *); - void (*init_card)(struct mmc_host *, struct mmc_card *); - int (*start_signal_voltage_switch)(struct mmc_host *, struct mmc_ios *); - int (*card_busy)(struct mmc_host *); - int (*execute_tuning)(struct mmc_host *, u32); - int (*prepare_hs400_tuning)(struct mmc_host *, struct mmc_ios *); - int (*execute_hs400_tuning)(struct mmc_host *, struct mmc_card *); - int (*prepare_sd_hs_tuning)(struct mmc_host *, struct mmc_card *); - int (*execute_sd_hs_tuning)(struct mmc_host *, struct mmc_card *); - int (*hs400_prepare_ddr)(struct mmc_host *); - void (*hs400_downgrade)(struct mmc_host *); - void (*hs400_complete)(struct mmc_host *); - void (*hs400_enhanced_strobe)(struct mmc_host *, struct mmc_ios *); - int (*select_drive_strength)(struct mmc_card *, unsigned int, int, int, int *); - void (*card_hw_reset)(struct mmc_host *); - void (*card_event)(struct mmc_host *); - int (*multi_io_quirk)(struct mmc_card *, unsigned int, int); - int (*init_sd_express)(struct mmc_host *, struct mmc_ios *); -}; - -struct mmc_cqe_ops { - int (*cqe_enable)(struct mmc_host *, struct mmc_card *); - void (*cqe_disable)(struct mmc_host *); - int (*cqe_request)(struct mmc_host *, struct mmc_request *); - void (*cqe_post_req)(struct mmc_host *, struct mmc_request *); - void (*cqe_off)(struct mmc_host *); - int (*cqe_wait_for_idle)(struct mmc_host *); - bool (*cqe_timeout)(struct mmc_host *, struct mmc_request *, bool *); - void (*cqe_recovery_start)(struct mmc_host *); - void (*cqe_recovery_finish)(struct mmc_host *); -}; - -struct mmc_bus_ops { - void (*remove)(struct mmc_host *); - void (*detect)(struct mmc_host *); - int (*pre_suspend)(struct mmc_host *); - int (*suspend)(struct mmc_host *); - int (*resume)(struct mmc_host *); - int (*runtime_suspend)(struct mmc_host *); - int (*runtime_resume)(struct mmc_host *); - int (*alive)(struct mmc_host *); - int (*shutdown)(struct mmc_host *); - int (*hw_reset)(struct mmc_host *); - int (*sw_reset)(struct mmc_host *); - bool (*cache_enabled)(struct mmc_host *); - int (*flush_cache)(struct mmc_host *); -}; - -struct hid_device_id { - __u16 bus; - __u16 group; - __u32 vendor; - __u32 product; - kernel_ulong_t driver_data; -}; - -enum hid_report_type { - HID_INPUT_REPORT = 0, - HID_OUTPUT_REPORT = 1, - HID_FEATURE_REPORT = 2, - HID_REPORT_TYPES = 3, -}; - -enum bpf_cgroup_storage_type { - BPF_CGROUP_STORAGE_SHARED = 0, - BPF_CGROUP_STORAGE_PERCPU = 1, - __BPF_CGROUP_STORAGE_MAX = 2, -}; - -enum bpf_type_flag { - PTR_MAYBE_NULL = 256, - MEM_RDONLY = 512, - MEM_RINGBUF = 1024, - MEM_USER = 2048, - MEM_PERCPU = 4096, - OBJ_RELEASE = 8192, - PTR_UNTRUSTED = 16384, - MEM_UNINIT = 32768, - DYNPTR_TYPE_LOCAL = 65536, - DYNPTR_TYPE_RINGBUF = 131072, - MEM_FIXED_SIZE = 262144, - MEM_ALLOC = 524288, - PTR_TRUSTED = 1048576, - MEM_RCU = 2097152, - NON_OWN_REF = 4194304, - DYNPTR_TYPE_SKB = 8388608, - DYNPTR_TYPE_XDP = 16777216, - MEM_ALIGNED = 33554432, - MEM_WRITE = 67108864, - __BPF_TYPE_FLAG_MAX = 67108865, - __BPF_TYPE_LAST_FLAG = 67108864, -}; - -enum { - BPF_MAX_TRAMP_LINKS = 38, -}; - -enum bpf_tramp_prog_type { - BPF_TRAMP_FENTRY = 0, - BPF_TRAMP_FEXIT = 1, - BPF_TRAMP_MODIFY_RETURN = 2, - BPF_TRAMP_MAX = 3, - BPF_TRAMP_REPLACE = 4, -}; - -enum hid_type { - HID_TYPE_OTHER = 0, - HID_TYPE_USBMOUSE = 1, - HID_TYPE_USBNONE = 2, -}; - -struct hid_report; - -struct hid_report_enum { - unsigned int numbered; - struct list_head report_list; - struct hid_report *report_id_hash[256]; -}; - -struct hid_collection; - -struct hid_driver; - -struct hid_ll_driver; - -struct hid_field; - -struct hid_usage; - -struct hid_device { - const __u8 *dev_rdesc; - unsigned int dev_rsize; - const __u8 *rdesc; - unsigned int rsize; - struct hid_collection *collection; - unsigned int collection_size; - unsigned int maxcollection; - unsigned int maxapplication; - __u16 bus; - __u16 group; - __u32 vendor; - __u32 product; - __u32 version; - enum hid_type type; - unsigned int country; - struct hid_report_enum report_enum[3]; - struct work_struct led_work; - struct semaphore driver_input_lock; - struct device dev; - struct hid_driver *driver; - void *devres_group_id; - const struct hid_ll_driver *ll_driver; - struct mutex ll_open_lock; - unsigned int ll_open_count; - long unsigned int status; - unsigned int claimed; - unsigned int quirks; - unsigned int initial_quirks; - bool io_started; - struct list_head inputs; - void *hiddev; - void *hidraw; - char name[128]; - char phys[64]; - char uniq[64]; - void *driver_data; - int (*ff_init)(struct hid_device *); - int (*hiddev_connect)(struct hid_device *, unsigned int); - void (*hiddev_disconnect)(struct hid_device *); - void (*hiddev_hid_event)(struct hid_device *, struct hid_field *, struct hid_usage *, __s32); - void (*hiddev_report_event)(struct hid_device *, struct hid_report *); - short unsigned int debug; - struct dentry *debug_dir; - struct dentry *debug_rdesc; - struct dentry *debug_events; - struct list_head debug_list; - spinlock_t debug_list_lock; - wait_queue_head_t debug_wait; - struct kref ref; - unsigned int id; -}; - -struct hid_field_entry; - -struct hid_report { - struct list_head list; - struct list_head hidinput_list; - struct list_head field_entry_list; - unsigned int id; - enum hid_report_type type; - unsigned int application; - struct hid_field *field[256]; - struct hid_field_entry *field_entries; - unsigned int maxfield; - unsigned int size; - struct hid_device *device; - bool tool_active; - unsigned int tool; -}; - -struct hid_collection { - int parent_idx; - unsigned int type; - unsigned int usage; - unsigned int level; -}; - -struct hid_usage { - unsigned int hid; - unsigned int collection_index; - unsigned int usage_index; - __s8 resolution_multiplier; - __s8 wheel_factor; - __u16 code; - __u8 type; - __s16 hat_min; - __s16 hat_max; - __s16 hat_dir; - __s16 wheel_accumulated; -}; - -struct hid_input; - -struct hid_field { - unsigned int physical; - unsigned int logical; - unsigned int application; - struct hid_usage *usage; - unsigned int maxusage; - unsigned int flags; - unsigned int report_offset; - unsigned int report_size; - unsigned int report_count; - unsigned int report_type; - __s32 *value; - __s32 *new_value; - __s32 *usages_priorities; - __s32 logical_minimum; - __s32 logical_maximum; - __s32 physical_minimum; - __s32 physical_maximum; - __s32 unit_exponent; - unsigned int unit; - bool ignored; - struct hid_report *report; - unsigned int index; - struct hid_input *hidinput; - __u16 dpad; - unsigned int slot_idx; -}; - -struct hid_input { - struct list_head list; - struct hid_report *report; - struct input_dev *input; - const char *name; - struct list_head reports; - unsigned int application; - bool registered; -}; - -struct hid_field_entry { - struct list_head list; - struct hid_field *field; - unsigned int index; - __s32 priority; -}; - -struct hid_report_id; - -struct hid_usage_id; - -struct hid_driver { - char *name; - const struct hid_device_id *id_table; - struct list_head dyn_list; - spinlock_t dyn_lock; - bool (*match)(struct hid_device *, bool); - int (*probe)(struct hid_device *, const struct hid_device_id *); - void (*remove)(struct hid_device *); - const struct hid_report_id *report_table; - int (*raw_event)(struct hid_device *, struct hid_report *, u8 *, int); - const struct hid_usage_id *usage_table; - int (*event)(struct hid_device *, struct hid_field *, struct hid_usage *, __s32); - void (*report)(struct hid_device *, struct hid_report *); - const __u8 * (*report_fixup)(struct hid_device *, __u8 *, unsigned int *); - int (*input_mapping)(struct hid_device *, struct hid_input *, struct hid_field *, struct hid_usage *, long unsigned int **, int *); - int (*input_mapped)(struct hid_device *, struct hid_input *, struct hid_field *, struct hid_usage *, long unsigned int **, int *); - int (*input_configured)(struct hid_device *, struct hid_input *); - void (*feature_mapping)(struct hid_device *, struct hid_field *, struct hid_usage *); - int (*suspend)(struct hid_device *, pm_message_t); - int (*resume)(struct hid_device *); - int (*reset_resume)(struct hid_device *); - struct device_driver driver; -}; - -struct hid_ll_driver { - int (*start)(struct hid_device *); - void (*stop)(struct hid_device *); - int (*open)(struct hid_device *); - void (*close)(struct hid_device *); - int (*power)(struct hid_device *, int); - int (*parse)(struct hid_device *); - void (*request)(struct hid_device *, struct hid_report *, int); - int (*wait)(struct hid_device *); - int (*raw_request)(struct hid_device *, unsigned char, __u8 *, size_t, unsigned char, int); - int (*output_report)(struct hid_device *, __u8 *, size_t); - int (*idle)(struct hid_device *, int, int, int); - bool (*may_wakeup)(struct hid_device *); - unsigned int max_buffer_size; -}; - -struct hid_report_id { - __u32 report_type; -}; - -struct hid_usage_id { - __u32 usage_hid; - __u32 usage_type; - __u32 usage_code; -}; - -struct quirks_list_struct { - struct hid_device_id hid_bl_item; - struct list_head node; -}; - -struct of_endpoint { - unsigned int port; - unsigned int id; - const struct device_node *local_node; -}; - -struct supplier_bindings { - struct device_node * (*parse_prop)(struct device_node *, const char *, int); - struct device_node * (*get_con_dev)(struct device_node *); - bool optional; - u8 fwlink_flags; -}; - -enum { - LOGIC_PIO_INDIRECT = 0, - LOGIC_PIO_CPU_MMIO = 1, -}; - -struct logic_pio_host_ops; - -struct logic_pio_hwaddr { - struct list_head list; - struct fwnode_handle *fwnode; - resource_size_t hw_start; - resource_size_t io_start; - resource_size_t size; - long unsigned int flags; - void *hostdata; - const struct logic_pio_host_ops *ops; -}; - -struct logic_pio_host_ops { - u32 (*in)(void *, long unsigned int, size_t); - void (*out)(void *, long unsigned int, u32, size_t); - u32 (*ins)(void *, long unsigned int, void *, size_t, unsigned int); - void (*outs)(void *, long unsigned int, const void *, size_t, unsigned int); -}; - -struct of_bus; - -struct of_pci_range_parser { - struct device_node *node; - struct of_bus *bus; - const __be32 *range; - const __be32 *end; - int na; - int ns; - int pna; - bool dma; -}; - -struct of_bus { - const char *name; - const char *addresses; - int (*match)(struct device_node *); - void (*count_cells)(struct device_node *, int *, int *); - u64 (*map)(__be32 *, const __be32 *, int, int, int, int); - int (*translate)(__be32 *, u64, int); - int flag_cells; - unsigned int (*get_flags)(const __be32 *); -}; - -struct of_pci_range { - union { - u64 pci_addr; - u64 bus_addr; - }; - u64 cpu_addr; - u64 size; - u32 flags; -}; - -typedef int (*dr_match_t)(struct device *, void *, void *); - -struct mbox_client { - struct device *dev; - bool tx_block; - long unsigned int tx_tout; - bool knows_txdone; - void (*rx_callback)(struct mbox_client *, void *); - void (*tx_prepare)(struct mbox_client *, void *); - void (*tx_done)(struct mbox_client *, void *, int); -}; - -struct mbox_chan; - -struct mbox_chan_ops { - int (*send_data)(struct mbox_chan *, void *); - int (*flush)(struct mbox_chan *, long unsigned int); - int (*startup)(struct mbox_chan *); - void (*shutdown)(struct mbox_chan *); - bool (*last_tx_done)(struct mbox_chan *); - bool (*peek_data)(struct mbox_chan *); -}; - -struct mbox_controller; - -struct mbox_chan { - struct mbox_controller *mbox; - unsigned int txdone_method; - struct mbox_client *cl; - struct completion tx_complete; - void *active_req; - unsigned int msg_count; - unsigned int msg_free; - void *msg_data[20]; - spinlock_t lock; - void *con_priv; -}; - -struct mbox_controller { - struct device *dev; - const struct mbox_chan_ops *ops; - struct mbox_chan *chans; - int num_chans; - bool txdone_irq; - bool txdone_poll; - unsigned int txpoll_period; - struct mbox_chan * (*of_xlate)(struct mbox_controller *, const struct of_phandle_args *); - struct hrtimer poll_hrt; - spinlock_t poll_hrt_lock; - struct list_head node; -}; - -typedef __kernel_long_t __kernel_old_time_t; - -struct __kernel_old_timespec { - __kernel_old_time_t tv_sec; - long int tv_nsec; -}; - -struct cmsghdr { - __kernel_size_t cmsg_len; - int cmsg_level; - int cmsg_type; -}; - -struct ucred { - __u32 pid; - __u32 uid; - __u32 gid; -}; - -struct scm_timestamping_internal { - struct timespec64 ts[3]; -}; - -struct ip_ra_chain { - struct ip_ra_chain *next; - struct sock *sk; - union { - void (*destructor)(struct sock *); - struct sock *saved_sk; - }; - struct callback_head rcu; -}; - -struct unix_edge; - -struct scm_fp_list { - short int count; - short int count_unix; - short int max; - bool inflight; - bool dead; - struct list_head vertices; - struct unix_edge *edges; - struct user_struct *user; - struct file *fp[253]; -}; - -struct unix_sock; - -struct unix_edge { - struct unix_sock *predecessor; - struct unix_sock *successor; - struct list_head vertex_entry; - struct list_head stack_entry; -}; - -struct scm_cookie { - struct pid *pid; - struct scm_fp_list *fp; - struct scm_creds creds; - u32 secid; -}; - -struct scm_timestamping { - struct __kernel_old_timespec ts[3]; -}; - -struct scm_timestamping64 { - struct __kernel_timespec ts[3]; -}; - -struct sockaddr_un { - __kernel_sa_family_t sun_family; - char sun_path[108]; -}; - -struct unix_vertex { - struct list_head edges; - struct list_head entry; - struct list_head scc_entry; - long unsigned int out_degree; - long unsigned int index; - long unsigned int scc_index; -}; - -struct scm_stat { - atomic_t nr_fds; - long unsigned int nr_unix_fds; -}; - -struct unix_address; - -struct unix_sock { - struct sock sk; - struct unix_address *addr; - struct path path; - struct mutex iolock; - struct mutex bindlock; - struct sock *peer; - struct sock *listener; - struct unix_vertex *vertex; - spinlock_t lock; - long: 64; - struct socket_wq peer_wq; - wait_queue_entry_t peer_wake; - struct scm_stat scm_stat; - struct sk_buff *oob_skb; -}; - -struct unix_address { - refcount_t refcnt; - int len; - struct sockaddr_un name[0]; -}; - -enum net_device_flags { - IFF_UP = 1, - IFF_BROADCAST = 2, - IFF_DEBUG = 4, - IFF_LOOPBACK = 8, - IFF_POINTOPOINT = 16, - IFF_NOTRAILERS = 32, - IFF_RUNNING = 64, - IFF_NOARP = 128, - IFF_PROMISC = 256, - IFF_ALLMULTI = 512, - IFF_MASTER = 1024, - IFF_SLAVE = 2048, - IFF_MULTICAST = 4096, - IFF_PORTSEL = 8192, - IFF_AUTOMEDIA = 16384, - IFF_DYNAMIC = 32768, - IFF_LOWER_UP = 65536, - IFF_DORMANT = 131072, - IFF_ECHO = 262144, -}; - -enum { - IF_OPER_UNKNOWN = 0, - IF_OPER_NOTPRESENT = 1, - IF_OPER_DOWN = 2, - IF_OPER_LOWERLAYERDOWN = 3, - IF_OPER_TESTING = 4, - IF_OPER_DORMANT = 5, - IF_OPER_UP = 6, -}; - -enum { - IF_LINK_MODE_DEFAULT = 0, - IF_LINK_MODE_DORMANT = 1, - IF_LINK_MODE_TESTING = 2, -}; - -enum netdev_priv_flags { - IFF_802_1Q_VLAN = 1, - IFF_EBRIDGE = 2, - IFF_BONDING = 4, - IFF_ISATAP = 8, - IFF_WAN_HDLC = 16, - IFF_XMIT_DST_RELEASE = 32, - IFF_DONT_BRIDGE = 64, - IFF_DISABLE_NETPOLL = 128, - IFF_MACVLAN_PORT = 256, - IFF_BRIDGE_PORT = 512, - IFF_OVS_DATAPATH = 1024, - IFF_TX_SKB_SHARING = 2048, - IFF_UNICAST_FLT = 4096, - IFF_TEAM_PORT = 8192, - IFF_SUPP_NOFCS = 16384, - IFF_LIVE_ADDR_CHANGE = 32768, - IFF_MACVLAN = 65536, - IFF_XMIT_DST_RELEASE_PERM = 131072, - IFF_L3MDEV_MASTER = 262144, - IFF_NO_QUEUE = 524288, - IFF_OPENVSWITCH = 1048576, - IFF_L3MDEV_SLAVE = 2097152, - IFF_TEAM = 4194304, - IFF_RXFH_CONFIGURED = 8388608, - IFF_PHONY_HEADROOM = 16777216, - IFF_MACSEC = 33554432, - IFF_NO_RX_HANDLER = 67108864, - IFF_FAILOVER = 134217728, - IFF_FAILOVER_SLAVE = 268435456, - IFF_L3MDEV_RX_HANDLER = 536870912, - IFF_NO_ADDRCONF = 1073741824, - IFF_TX_SKB_NO_LINEAR = 2147483648, -}; - -enum netdev_reg_state { - NETREG_UNINITIALIZED = 0, - NETREG_REGISTERED = 1, - NETREG_UNREGISTERING = 2, - NETREG_UNREGISTERED = 3, - NETREG_RELEASED = 4, - NETREG_DUMMY = 5, -}; - -struct netdev_name_node { - struct hlist_node hlist; - struct list_head list; - struct net_device *dev; - const char *name; - struct callback_head rcu; -}; - -enum { - TCA_UNSPEC = 0, - TCA_KIND = 1, - TCA_OPTIONS = 2, - TCA_STATS = 3, - TCA_XSTATS = 4, - TCA_RATE = 5, - TCA_FCNT = 6, - TCA_STATS2 = 7, - TCA_STAB = 8, - TCA_PAD = 9, - TCA_DUMP_INVISIBLE = 10, - TCA_CHAIN = 11, - TCA_HW_OFFLOAD = 12, - TCA_INGRESS_BLOCK = 13, - TCA_EGRESS_BLOCK = 14, - TCA_DUMP_FLAGS = 15, - TCA_EXT_WARN_MSG = 16, - __TCA_MAX = 17, -}; - -struct qdisc_walker { - int stop; - int skip; - int count; - int (*fn)(struct Qdisc *, long unsigned int, struct qdisc_walker *); -}; - -enum lw_bits { - LW_URGENT = 0, -}; - -enum { - SKB_GSO_TCPV4 = 1, - SKB_GSO_DODGY = 2, - SKB_GSO_TCP_ECN = 4, - SKB_GSO_TCP_FIXEDID = 8, - SKB_GSO_TCPV6 = 16, - SKB_GSO_FCOE = 32, - SKB_GSO_GRE = 64, - SKB_GSO_GRE_CSUM = 128, - SKB_GSO_IPXIP4 = 256, - SKB_GSO_IPXIP6 = 512, - SKB_GSO_UDP_TUNNEL = 1024, - SKB_GSO_UDP_TUNNEL_CSUM = 2048, - SKB_GSO_PARTIAL = 4096, - SKB_GSO_TUNNEL_REMCSUM = 8192, - SKB_GSO_SCTP = 16384, - SKB_GSO_ESP = 32768, - SKB_GSO_UDP = 65536, - SKB_GSO_UDP_L4 = 131072, - SKB_GSO_FRAGLIST = 262144, -}; - -struct vlan_hdr { - __be16 h_vlan_TCI; - __be16 h_vlan_encapsulated_proto; -}; - -struct ipv6hdr { - __u8 priority: 4; - __u8 version: 4; - __u8 flow_lbl[3]; - __be16 payload_len; - __u8 nexthdr; - __u8 hop_limit; - union { - struct { - struct in6_addr saddr; - struct in6_addr daddr; - }; - struct { - struct in6_addr saddr; - struct in6_addr daddr; - } addrs; - }; -}; - -struct tcphdr { - __be16 source; - __be16 dest; - __be32 seq; - __be32 ack_seq; - __u16 res1: 4; - __u16 doff: 4; - __u16 fin: 1; - __u16 syn: 1; - __u16 rst: 1; - __u16 psh: 1; - __u16 ack: 1; - __u16 urg: 1; - __u16 ece: 1; - __u16 cwr: 1; - __be16 window; - __sum16 check; - __be16 urg_ptr; -}; - -struct udphdr { - __be16 source; - __be16 dest; - __be16 len; - __sum16 check; -}; - -struct tso_t { - int next_frag_idx; - int size; - void *data; - u16 ip_id; - u8 tlen; - bool ipv6; - u32 tcp_seq; -}; - -struct page_pool_params_fast { - unsigned int order; - unsigned int pool_size; - int nid; - struct device *dev; - struct napi_struct *napi; - enum dma_data_direction dma_dir; - unsigned int max_len; - unsigned int offset; -}; - -struct page_pool_alloc_stats { - u64 fast; - u64 slow; - u64 slow_high_order; - u64 empty; - u64 refill; - u64 waive; -}; - -struct pp_alloc_cache { - u32 count; - netmem_ref cache[128]; -}; - -struct page_pool_params_slow { - struct net_device *netdev; - unsigned int queue_idx; - unsigned int flags; - void (*init_callback)(netmem_ref, void *); - void *init_arg; -}; - -struct page_pool_recycle_stats; - -struct page_pool { - struct page_pool_params_fast p; - int cpuid; - u32 pages_state_hold_cnt; - bool has_init_callback: 1; - bool dma_map: 1; - bool dma_sync: 1; - bool system: 1; - long: 0; - __u8 __cacheline_group_begin__frag[0]; - long int frag_users; - netmem_ref frag_page; - unsigned int frag_offset; - long: 0; - __u8 __cacheline_group_end__frag[0]; - long: 64; - struct {} __cacheline_group_pad__frag; - struct delayed_work release_dw; - void (*disconnect)(void *); - long unsigned int defer_start; - long unsigned int defer_warn; - struct page_pool_alloc_stats alloc_stats; - u32 xdp_mem_id; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct pp_alloc_cache alloc; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct ptr_ring ring; - void *mp_priv; - struct xarray dma_mapped; - struct page_pool_recycle_stats *recycle_stats; - atomic_t pages_state_release_cnt; - refcount_t user_cnt; - u64 destroy_cnt; - struct page_pool_params_slow slow; - struct { - struct hlist_node list; - u64 detach_time; - u32 napi_id; - u32 id; - } user; - long: 64; - long: 64; -}; - -struct xdp_md { - __u32 data; - __u32 data_end; - __u32 data_meta; - __u32 ingress_ifindex; - __u32 rx_queue_index; - __u32 egress_ifindex; -}; - -struct xdp_mem_info { - u32 type; - u32 id; -}; - -struct xdp_frame { - void *data; - u16 len; - u16 headroom; - u32 metasize; - struct xdp_mem_info mem; - struct net_device *dev_rx; - u32 frame_sz; - u32 flags; -}; - -struct xdp_rxq_info; - -struct xdp_txq_info; - -struct xdp_buff { - void *data; - void *data_end; - void *data_meta; - void *data_hard_start; - struct xdp_rxq_info *rxq; - struct xdp_txq_info *txq; - u32 frame_sz; - u32 flags; -}; - -struct xdp_rxq_info { - struct net_device *dev; - u32 queue_index; - u32 reg_state; - struct xdp_mem_info mem; - unsigned int napi_id; - u32 frag_size; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct pp_memory_provider_params { - void *mp_priv; -}; - -struct rps_map; - -struct rps_dev_flow_table; - -struct netdev_rx_queue { - struct xdp_rxq_info xdp_rxq; - struct rps_map *rps_map; - struct rps_dev_flow_table *rps_flow_table; - struct kobject kobj; - struct net_device *dev; - netdevice_tracker dev_tracker; - struct xsk_buff_pool *pool; - struct napi_struct *napi; - struct pp_memory_provider_params mp_params; - long: 64; - long: 64; -}; - -struct netdev_queue_stats_rx { - u64 bytes; - u64 packets; - u64 alloc_fail; - u64 hw_drops; - u64 hw_drop_overruns; - u64 csum_unnecessary; - u64 csum_none; - u64 csum_bad; - u64 hw_gro_packets; - u64 hw_gro_bytes; - u64 hw_gro_wire_packets; - u64 hw_gro_wire_bytes; - u64 hw_drop_ratelimits; -}; - -struct netdev_queue_stats_tx { - u64 bytes; - u64 packets; - u64 hw_drops; - u64 hw_drop_errors; - u64 csum_none; - u64 needs_csum; - u64 hw_gso_packets; - u64 hw_gso_bytes; - u64 hw_gso_wire_packets; - u64 hw_gso_wire_bytes; - u64 hw_drop_ratelimits; - u64 stop; - u64 wake; -}; - -struct xdp_txq_info { - struct net_device *dev; -}; - -struct page_pool_recycle_stats { - u64 cached; - u64 cache_full; - u64 ring; - u64 ring_full; - u64 released_refcnt; -}; - -struct packet_type { - __be16 type; - bool ignore_outgoing; - struct net_device *dev; - netdevice_tracker dev_tracker; - int (*func)(struct sk_buff *, struct net_device *, struct packet_type *, struct net_device *); - void (*list_func)(struct list_head *, struct packet_type *, struct net_device *); - bool (*id_match)(struct packet_type *, struct sock *); - struct net *af_packet_net; - void *af_packet_priv; - struct list_head list; -}; - -struct llc_sap; - -struct datalink_proto { - unsigned char type[8]; - struct llc_sap *sap; - short unsigned int header_length; - int (*rcvfunc)(struct sk_buff *, struct net_device *, struct packet_type *, struct net_device *); - int (*request)(struct datalink_proto *, struct sk_buff *, const unsigned char *); - struct list_head node; -}; - -struct llc_addr { - unsigned char lsap; - unsigned char mac[6]; -}; - -struct llc_sap { - unsigned char state; - unsigned char p_bit; - unsigned char f_bit; - refcount_t refcnt; - int (*rcv_func)(struct sk_buff *, struct net_device *, struct packet_type *, struct net_device *); - struct llc_addr laddr; - struct list_head node; - spinlock_t sk_lock; - int sk_count; - struct hlist_nulls_head sk_laddr_hash[64]; - struct hlist_head sk_dev_hash[64]; - struct callback_head rcu; -}; - -enum tca_id { - TCA_ID_UNSPEC = 0, - TCA_ID_POLICE = 1, - TCA_ID_GACT = 5, - TCA_ID_IPT = 6, - TCA_ID_PEDIT = 7, - TCA_ID_MIRRED = 8, - TCA_ID_NAT = 9, - TCA_ID_XT = 10, - TCA_ID_SKBEDIT = 11, - TCA_ID_VLAN = 12, - TCA_ID_BPF = 13, - TCA_ID_CONNMARK = 14, - TCA_ID_SKBMOD = 15, - TCA_ID_CSUM = 16, - TCA_ID_TUNNEL_KEY = 17, - TCA_ID_SIMP = 22, - TCA_ID_IFE = 25, - TCA_ID_SAMPLE = 26, - TCA_ID_CTINFO = 27, - TCA_ID_MPLS = 28, - TCA_ID_CT = 29, - TCA_ID_GATE = 30, - __TCA_ID_MAX = 255, -}; - -struct tcf_t { - __u64 install; - __u64 lastuse; - __u64 expires; - __u64 firstuse; -}; - -enum flow_action_id { - FLOW_ACTION_ACCEPT = 0, - FLOW_ACTION_DROP = 1, - FLOW_ACTION_TRAP = 2, - FLOW_ACTION_GOTO = 3, - FLOW_ACTION_REDIRECT = 4, - FLOW_ACTION_MIRRED = 5, - FLOW_ACTION_REDIRECT_INGRESS = 6, - FLOW_ACTION_MIRRED_INGRESS = 7, - FLOW_ACTION_VLAN_PUSH = 8, - FLOW_ACTION_VLAN_POP = 9, - FLOW_ACTION_VLAN_MANGLE = 10, - FLOW_ACTION_TUNNEL_ENCAP = 11, - FLOW_ACTION_TUNNEL_DECAP = 12, - FLOW_ACTION_MANGLE = 13, - FLOW_ACTION_ADD = 14, - FLOW_ACTION_CSUM = 15, - FLOW_ACTION_MARK = 16, - FLOW_ACTION_PTYPE = 17, - FLOW_ACTION_PRIORITY = 18, - FLOW_ACTION_RX_QUEUE_MAPPING = 19, - FLOW_ACTION_WAKE = 20, - FLOW_ACTION_QUEUE = 21, - FLOW_ACTION_SAMPLE = 22, - FLOW_ACTION_POLICE = 23, - FLOW_ACTION_CT = 24, - FLOW_ACTION_CT_METADATA = 25, - FLOW_ACTION_MPLS_PUSH = 26, - FLOW_ACTION_MPLS_POP = 27, - FLOW_ACTION_MPLS_MANGLE = 28, - FLOW_ACTION_GATE = 29, - FLOW_ACTION_PPPOE_PUSH = 30, - FLOW_ACTION_JUMP = 31, - FLOW_ACTION_PIPE = 32, - FLOW_ACTION_VLAN_PUSH_ETH = 33, - FLOW_ACTION_VLAN_POP_ETH = 34, - FLOW_ACTION_CONTINUE = 35, - NUM_FLOW_ACTIONS = 36, -}; - -enum flow_action_mangle_base { - FLOW_ACT_MANGLE_UNSPEC = 0, - FLOW_ACT_MANGLE_HDR_TYPE_ETH = 1, - FLOW_ACT_MANGLE_HDR_TYPE_IP4 = 2, - FLOW_ACT_MANGLE_HDR_TYPE_IP6 = 3, - FLOW_ACT_MANGLE_HDR_TYPE_TCP = 4, - FLOW_ACT_MANGLE_HDR_TYPE_UDP = 5, -}; - -enum flow_action_hw_stats { - FLOW_ACTION_HW_STATS_IMMEDIATE = 1, - FLOW_ACTION_HW_STATS_DELAYED = 2, - FLOW_ACTION_HW_STATS_ANY = 3, - FLOW_ACTION_HW_STATS_DISABLED = 4, - FLOW_ACTION_HW_STATS_DONT_CARE = 7, -}; - -typedef void (*action_destr)(void *); - -struct flow_action_cookie { - u32 cookie_len; - u8 cookie[0]; -}; - -struct ip_tunnel_info; - -struct psample_group; - -struct nf_flowtable; - -struct action_gate_entry; - -struct flow_action_entry { - enum flow_action_id id; - u32 hw_index; - long unsigned int cookie; - u64 miss_cookie; - enum flow_action_hw_stats hw_stats; - action_destr destructor; - void *destructor_priv; - union { - u32 chain_index; - struct net_device *dev; - struct { - u16 vid; - __be16 proto; - u8 prio; - } vlan; - struct { - unsigned char dst[6]; - unsigned char src[6]; - } vlan_push_eth; - struct { - enum flow_action_mangle_base htype; - u32 offset; - u32 mask; - u32 val; - } mangle; - struct ip_tunnel_info *tunnel; - u32 csum_flags; - u32 mark; - u16 ptype; - u16 rx_queue; - u32 priority; - struct { - u32 ctx; - u32 index; - u8 vf; - } queue; - struct { - struct psample_group *psample_group; - u32 rate; - u32 trunc_size; - bool truncate; - } sample; - struct { - u32 burst; - u64 rate_bytes_ps; - u64 peakrate_bytes_ps; - u32 avrate; - u16 overhead; - u64 burst_pkt; - u64 rate_pkt_ps; - u32 mtu; - struct { - enum flow_action_id act_id; - u32 extval; - } exceed; - struct { - enum flow_action_id act_id; - u32 extval; - } notexceed; - } police; - struct { - int action; - u16 zone; - struct nf_flowtable *flow_table; - } ct; - struct { - long unsigned int cookie; - u32 mark; - u32 labels[4]; - bool orig_dir; - } ct_metadata; - struct { - u32 label; - __be16 proto; - u8 tc; - u8 bos; - u8 ttl; - } mpls_push; - struct { - __be16 proto; - } mpls_pop; - struct { - u32 label; - u8 tc; - u8 bos; - u8 ttl; - } mpls_mangle; - struct { - s32 prio; - u64 basetime; - u64 cycletime; - u64 cycletimeext; - u32 num_entries; - struct action_gate_entry *entries; - } gate; - struct { - u16 sid; - } pppoe; - }; - struct flow_action_cookie *user_cookie; -}; - -struct flow_action { - unsigned int num_entries; - struct flow_action_entry entries[0]; -}; - -struct flow_stats { - u64 pkts; - u64 bytes; - u64 drops; - u64 lastused; - enum flow_action_hw_stats used_hw_stats; - bool used_hw_stats_valid; -}; - -enum offload_act_command { - FLOW_ACT_REPLACE = 0, - FLOW_ACT_DESTROY = 1, - FLOW_ACT_STATS = 2, -}; - -struct flow_offload_action { - struct netlink_ext_ack *extack; - enum offload_act_command command; - enum flow_action_id id; - u32 index; - long unsigned int cookie; - struct flow_stats stats; - struct flow_action action; -}; - -struct tcf_walker { - int stop; - int skip; - int count; - bool nonempty; - long unsigned int cookie; - int (*fn)(struct tcf_proto *, void *, struct tcf_walker *); -}; - -struct tc_action; - -struct tcf_exts_miss_cookie_node; - -struct tcf_exts { - __u32 type; - int nr_actions; - struct tc_action **actions; - struct net *net; - netns_tracker ns_tracker; - struct tcf_exts_miss_cookie_node *miss_cookie_node; - int action; - int police; -}; - -struct qdisc_skb_cb { - struct { - unsigned int pkt_len; - u16 slave_dev_queue_mapping; - u16 tc_classid; - }; - unsigned char data[20]; -}; - -enum { - TCA_PEDIT_UNSPEC = 0, - TCA_PEDIT_TM = 1, - TCA_PEDIT_PARMS = 2, - TCA_PEDIT_PAD = 3, - TCA_PEDIT_PARMS_EX = 4, - TCA_PEDIT_KEYS_EX = 5, - TCA_PEDIT_KEY_EX = 6, - __TCA_PEDIT_MAX = 7, -}; - -enum { - TCA_PEDIT_KEY_EX_HTYPE = 1, - TCA_PEDIT_KEY_EX_CMD = 2, - __TCA_PEDIT_KEY_EX_MAX = 3, -}; - -enum pedit_header_type { - TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK = 0, - TCA_PEDIT_KEY_EX_HDR_TYPE_ETH = 1, - TCA_PEDIT_KEY_EX_HDR_TYPE_IP4 = 2, - TCA_PEDIT_KEY_EX_HDR_TYPE_IP6 = 3, - TCA_PEDIT_KEY_EX_HDR_TYPE_TCP = 4, - TCA_PEDIT_KEY_EX_HDR_TYPE_UDP = 5, - __PEDIT_HDR_TYPE_MAX = 6, -}; - -enum pedit_cmd { - TCA_PEDIT_KEY_EX_CMD_SET = 0, - TCA_PEDIT_KEY_EX_CMD_ADD = 1, - __PEDIT_CMD_MAX = 2, -}; - -struct tc_pedit_key { - __u32 mask; - __u32 val; - __u32 off; - __u32 at; - __u32 offmask; - __u32 shift; -}; - -struct tc_pedit_sel { - __u32 index; - __u32 capab; - int action; - int refcnt; - int bindcnt; - unsigned char nkeys; - unsigned char flags; - struct tc_pedit_key keys[0]; -}; - -struct tcf_idrinfo { - struct mutex lock; - struct idr action_idr; - struct net *net; -}; - -struct tc_action_ops; - -struct tc_cookie; - -struct tc_action { - const struct tc_action_ops *ops; - __u32 type; - struct tcf_idrinfo *idrinfo; - u32 tcfa_index; - refcount_t tcfa_refcnt; - atomic_t tcfa_bindcnt; - int tcfa_action; - struct tcf_t tcfa_tm; - long: 64; - struct gnet_stats_basic_sync tcfa_bstats; - struct gnet_stats_basic_sync tcfa_bstats_hw; - struct gnet_stats_queue tcfa_qstats; - struct net_rate_estimator *tcfa_rate_est; - spinlock_t tcfa_lock; - struct gnet_stats_basic_sync *cpu_bstats; - struct gnet_stats_basic_sync *cpu_bstats_hw; - struct gnet_stats_queue *cpu_qstats; - struct tc_cookie *user_cookie; - struct tcf_chain *goto_chain; - u32 tcfa_flags; - u8 hw_stats; - u8 used_hw_stats; - bool used_hw_stats_valid; - u32 in_hw_count; -}; - -typedef void (*tc_action_priv_destructor)(void *); - -struct tc_action_ops { - struct list_head head; - char kind[16]; - enum tca_id id; - unsigned int net_id; - size_t size; - struct module *owner; - int (*act)(struct sk_buff *, const struct tc_action *, struct tcf_result *); - int (*dump)(struct sk_buff *, struct tc_action *, int, int); - void (*cleanup)(struct tc_action *); - int (*lookup)(struct net *, struct tc_action **, u32); - int (*init)(struct net *, struct nlattr *, struct nlattr *, struct tc_action **, struct tcf_proto *, u32, struct netlink_ext_ack *); - int (*walk)(struct net *, struct sk_buff *, struct netlink_callback *, int, const struct tc_action_ops *, struct netlink_ext_ack *); - void (*stats_update)(struct tc_action *, u64, u64, u64, u64, bool); - size_t (*get_fill_size)(const struct tc_action *); - struct net_device * (*get_dev)(const struct tc_action *, tc_action_priv_destructor *); - struct psample_group * (*get_psample_group)(const struct tc_action *, tc_action_priv_destructor *); - int (*offload_act_setup)(struct tc_action *, void *, u32 *, bool, struct netlink_ext_ack *); -}; - -struct tc_cookie { - u8 *data; - u32 len; - struct callback_head rcu; -}; - -struct tc_action_net { - struct tcf_idrinfo *idrinfo; - const struct tc_action_ops *ops; -}; - -struct tcf_pedit_key_ex { - enum pedit_header_type htype; - enum pedit_cmd cmd; -}; - -struct tcf_pedit_parms { - struct tc_pedit_key *tcfp_keys; - struct tcf_pedit_key_ex *tcfp_keys_ex; - u32 tcfp_off_max_hint; - unsigned char tcfp_nkeys; - unsigned char tcfp_flags; - struct callback_head rcu; -}; - -struct tcf_pedit { - struct tc_action common; - struct tcf_pedit_parms *parms; - long: 64; -}; - -struct bpf_mprog_fp { - struct bpf_prog *prog; -}; - -struct bpf_mprog_bundle; - -struct bpf_mprog_entry { - struct bpf_mprog_fp fp_items[64]; - struct bpf_mprog_bundle *parent; -}; - -enum flow_block_binder_type { - FLOW_BLOCK_BINDER_TYPE_UNSPEC = 0, - FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS = 1, - FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS = 2, - FLOW_BLOCK_BINDER_TYPE_RED_EARLY_DROP = 3, - FLOW_BLOCK_BINDER_TYPE_RED_MARK = 4, -}; - -enum qdisc_class_ops_flags { - QDISC_CLASS_OPS_DOIT_UNLOCKED = 1, -}; - -typedef void tcf_chain_head_change_t(struct tcf_proto *, void *); - -struct mini_Qdisc { - struct tcf_proto *filter_list; - struct tcf_block *block; - struct gnet_stats_basic_sync *cpu_bstats; - struct gnet_stats_queue *cpu_qstats; - long unsigned int rcu_state; -}; - -struct mini_Qdisc_pair { - struct mini_Qdisc miniq1; - struct mini_Qdisc miniq2; - struct mini_Qdisc **p_miniq; -}; - -struct tcf_block_ext_info { - enum flow_block_binder_type binder_type; - tcf_chain_head_change_t *chain_head_change; - void *chain_head_change_priv; - u32 block_index; -}; - -struct bpf_mprog_cp { - struct bpf_link *link; -}; - -struct bpf_mprog_bundle { - struct bpf_mprog_entry a; - struct bpf_mprog_entry b; - struct bpf_mprog_cp cp_items[64]; - struct bpf_prog *ref; - atomic64_t revision; - u32 count; -}; - -struct tcx_entry { - struct mini_Qdisc *miniq; - struct bpf_mprog_bundle bundle; - u32 miniq_active; - struct callback_head rcu; -}; - -struct ingress_sched_data { - struct tcf_block *block; - struct tcf_block_ext_info block_info; - struct mini_Qdisc_pair miniqp; -}; - -struct clsact_sched_data { - struct tcf_block *ingress_block; - struct tcf_block *egress_block; - struct tcf_block_ext_info ingress_block_info; - struct tcf_block_ext_info egress_block_info; - struct mini_Qdisc_pair miniqp_ingress; - struct mini_Qdisc_pair miniqp_egress; -}; - -enum { - TCA_FW_UNSPEC = 0, - TCA_FW_CLASSID = 1, - TCA_FW_POLICE = 2, - TCA_FW_INDEV = 3, - TCA_FW_ACT = 4, - TCA_FW_MASK = 5, - __TCA_FW_MAX = 6, -}; - -struct fw_filter; - -struct fw_head { - u32 mask; - struct fw_filter *ht[256]; - struct callback_head rcu; -}; - -struct fw_filter { - struct fw_filter *next; - u32 id; - struct tcf_result res; - int ifindex; - struct tcf_exts exts; - struct tcf_proto *tp; - struct rcu_work rwork; -}; - -struct bpf_cgroup_storage_key { - __u64 cgroup_inode_id; - __u32 attach_type; -}; - -struct bpf_flow_keys { - __u16 nhoff; - __u16 thoff; - __u16 addr_proto; - __u8 is_frag; - __u8 is_first_frag; - __u8 is_encap; - __u8 ip_proto; - __be16 n_proto; - __be16 sport; - __be16 dport; - union { - struct { - __be32 ipv4_src; - __be32 ipv4_dst; - }; - struct { - __u32 ipv6_src[4]; - __u32 ipv6_dst[4]; - }; - }; - __u32 flags; - __be32 flow_label; -}; - -struct bpf_sock { - __u32 bound_dev_if; - __u32 family; - __u32 type; - __u32 protocol; - __u32 mark; - __u32 priority; - __u32 src_ip4; - __u32 src_ip6[4]; - __u32 src_port; - __be16 dst_port; - __u32 dst_ip4; - __u32 dst_ip6[4]; - __u32 state; - __s32 rx_queue_mapping; -}; - -struct __sk_buff { - __u32 len; - __u32 pkt_type; - __u32 mark; - __u32 queue_mapping; - __u32 protocol; - __u32 vlan_present; - __u32 vlan_tci; - __u32 vlan_proto; - __u32 priority; - __u32 ingress_ifindex; - __u32 ifindex; - __u32 tc_index; - __u32 cb[5]; - __u32 hash; - __u32 tc_classid; - __u32 data; - __u32 data_end; - __u32 napi_id; - __u32 family; - __u32 remote_ip4; - __u32 local_ip4; - __u32 remote_ip6[4]; - __u32 local_ip6[4]; - __u32 remote_port; - __u32 local_port; - __u32 data_meta; - union { - struct bpf_flow_keys *flow_keys; - }; - __u64 tstamp; - __u32 wire_len; - __u32 gso_segs; - union { - struct bpf_sock *sk; - }; - __u32 gso_size; - __u8 tstamp_type; - __u64 hwtstamp; -}; - -enum xdp_action { - XDP_ABORTED = 0, - XDP_DROP = 1, - XDP_PASS = 2, - XDP_TX = 3, - XDP_REDIRECT = 4, -}; - -enum sk_action { - SK_DROP = 0, - SK_PASS = 1, -}; - -struct bpf_sk_lookup { - union { - union { - struct bpf_sock *sk; - }; - __u64 cookie; - }; - __u32 family; - __u32 protocol; - __u32 remote_ip4; - __u32 remote_ip6[4]; - __be16 remote_port; - __u32 local_ip4; - __u32 local_ip6[4]; - __u32 local_port; - __u32 ingress_ifindex; -}; - -typedef sockptr_t bpfptr_t; - -struct btf_id_dtor_kfunc { - u32 btf_id; - u32 kfunc_btf_id; -}; - -typedef unsigned int (*bpf_func_t)(const void *, const struct bpf_insn *); - -struct bpf_storage_buffer; - -struct bpf_cgroup_storage_map; - -struct bpf_cgroup_storage { - union { - struct bpf_storage_buffer *buf; - void *percpu_buf; - }; - struct bpf_cgroup_storage_map *map; - struct bpf_cgroup_storage_key key; - struct list_head list_map; - struct list_head list_cg; - struct rb_node node; - struct callback_head rcu; -}; - -struct bpf_cg_run_ctx { - struct bpf_run_ctx run_ctx; - const struct bpf_prog_array_item *prog_item; - int retval; -}; - -struct bpf_trace_run_ctx { - struct bpf_run_ctx run_ctx; - u64 bpf_cookie; - bool is_uprobe; -}; - -struct ethhdr { - unsigned char h_dest[6]; - unsigned char h_source[6]; - __be16 h_proto; -}; - -struct bpf_flow_dissector { - struct bpf_flow_keys *flow_keys; - const struct sk_buff *skb; - const void *data; - const void *data_end; -}; - -struct inet_ehash_bucket; - -struct inet_bind_hashbucket; - -struct inet_listen_hashbucket; - -struct inet_hashinfo { - struct inet_ehash_bucket *ehash; - spinlock_t *ehash_locks; - unsigned int ehash_mask; - unsigned int ehash_locks_mask; - struct kmem_cache *bind_bucket_cachep; - struct inet_bind_hashbucket *bhash; - struct kmem_cache *bind2_bucket_cachep; - struct inet_bind_hashbucket *bhash2; - unsigned int bhash_size; - unsigned int lhash2_mask; - struct inet_listen_hashbucket *lhash2; - bool pernet; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct tcp_fastopen_context { - siphash_key_t key[2]; - int num; - struct callback_head rcu; -}; - -enum nf_inet_hooks { - NF_INET_PRE_ROUTING = 0, - NF_INET_LOCAL_IN = 1, - NF_INET_FORWARD = 2, - NF_INET_LOCAL_OUT = 3, - NF_INET_POST_ROUTING = 4, - NF_INET_NUMHOOKS = 5, - NF_INET_INGRESS = 5, -}; - -enum { - NFPROTO_UNSPEC = 0, - NFPROTO_INET = 1, - NFPROTO_IPV4 = 2, - NFPROTO_ARP = 3, - NFPROTO_NETDEV = 5, - NFPROTO_BRIDGE = 7, - NFPROTO_IPV6 = 10, - NFPROTO_NUMPROTO = 11, -}; - -typedef union { - __be32 a4; - __be32 a6[4]; - struct in6_addr in6; -} xfrm_address_t; - -struct xfrm_id { - xfrm_address_t daddr; - __be32 spi; - __u8 proto; -}; - -struct xfrm_sec_ctx { - __u8 ctx_doi; - __u8 ctx_alg; - __u16 ctx_len; - __u32 ctx_sid; - char ctx_str[0]; -}; - -struct xfrm_selector { - xfrm_address_t daddr; - xfrm_address_t saddr; - __be16 dport; - __be16 dport_mask; - __be16 sport; - __be16 sport_mask; - __u16 family; - __u8 prefixlen_d; - __u8 prefixlen_s; - __u8 proto; - int ifindex; - __kernel_uid32_t user; -}; - -struct xfrm_lifetime_cfg { - __u64 soft_byte_limit; - __u64 hard_byte_limit; - __u64 soft_packet_limit; - __u64 hard_packet_limit; - __u64 soft_add_expires_seconds; - __u64 hard_add_expires_seconds; - __u64 soft_use_expires_seconds; - __u64 hard_use_expires_seconds; -}; - -struct xfrm_lifetime_cur { - __u64 bytes; - __u64 packets; - __u64 add_time; - __u64 use_time; -}; - -struct xfrm_replay_state { - __u32 oseq; - __u32 seq; - __u32 bitmap; -}; - -struct xfrm_replay_state_esn { - unsigned int bmp_len; - __u32 oseq; - __u32 seq; - __u32 oseq_hi; - __u32 seq_hi; - __u32 replay_window; - __u32 bmp[0]; -}; - -struct xfrm_algo { - char alg_name[64]; - unsigned int alg_key_len; - char alg_key[0]; -}; - -struct xfrm_algo_auth { - char alg_name[64]; - unsigned int alg_key_len; - unsigned int alg_trunc_len; - char alg_key[0]; -}; - -struct xfrm_algo_aead { - char alg_name[64]; - unsigned int alg_key_len; - unsigned int alg_icv_len; - char alg_key[0]; -}; - -struct xfrm_stats { - __u32 replay_window; - __u32 replay; - __u32 integrity_failed; -}; - -enum { - XFRM_POLICY_TYPE_MAIN = 0, - XFRM_POLICY_TYPE_SUB = 1, - XFRM_POLICY_TYPE_MAX = 2, - XFRM_POLICY_TYPE_ANY = 255, -}; - -enum { - XFRM_MSG_BASE = 16, - XFRM_MSG_NEWSA = 16, - XFRM_MSG_DELSA = 17, - XFRM_MSG_GETSA = 18, - XFRM_MSG_NEWPOLICY = 19, - XFRM_MSG_DELPOLICY = 20, - XFRM_MSG_GETPOLICY = 21, - XFRM_MSG_ALLOCSPI = 22, - XFRM_MSG_ACQUIRE = 23, - XFRM_MSG_EXPIRE = 24, - XFRM_MSG_UPDPOLICY = 25, - XFRM_MSG_UPDSA = 26, - XFRM_MSG_POLEXPIRE = 27, - XFRM_MSG_FLUSHSA = 28, - XFRM_MSG_FLUSHPOLICY = 29, - XFRM_MSG_NEWAE = 30, - XFRM_MSG_GETAE = 31, - XFRM_MSG_REPORT = 32, - XFRM_MSG_MIGRATE = 33, - XFRM_MSG_NEWSADINFO = 34, - XFRM_MSG_GETSADINFO = 35, - XFRM_MSG_NEWSPDINFO = 36, - XFRM_MSG_GETSPDINFO = 37, - XFRM_MSG_MAPPING = 38, - XFRM_MSG_SETDEFAULT = 39, - XFRM_MSG_GETDEFAULT = 40, - __XFRM_MSG_MAX = 41, -}; - -struct xfrm_encap_tmpl { - __u16 encap_type; - __be16 encap_sport; - __be16 encap_dport; - xfrm_address_t encap_oa; -}; - -enum xfrm_attr_type_t { - XFRMA_UNSPEC = 0, - XFRMA_ALG_AUTH = 1, - XFRMA_ALG_CRYPT = 2, - XFRMA_ALG_COMP = 3, - XFRMA_ENCAP = 4, - XFRMA_TMPL = 5, - XFRMA_SA = 6, - XFRMA_POLICY = 7, - XFRMA_SEC_CTX = 8, - XFRMA_LTIME_VAL = 9, - XFRMA_REPLAY_VAL = 10, - XFRMA_REPLAY_THRESH = 11, - XFRMA_ETIMER_THRESH = 12, - XFRMA_SRCADDR = 13, - XFRMA_COADDR = 14, - XFRMA_LASTUSED = 15, - XFRMA_POLICY_TYPE = 16, - XFRMA_MIGRATE = 17, - XFRMA_ALG_AEAD = 18, - XFRMA_KMADDRESS = 19, - XFRMA_ALG_AUTH_TRUNC = 20, - XFRMA_MARK = 21, - XFRMA_TFCPAD = 22, - XFRMA_REPLAY_ESN_VAL = 23, - XFRMA_SA_EXTRA_FLAGS = 24, - XFRMA_PROTO = 25, - XFRMA_ADDRESS_FILTER = 26, - XFRMA_PAD = 27, - XFRMA_OFFLOAD_DEV = 28, - XFRMA_SET_MARK = 29, - XFRMA_SET_MARK_MASK = 30, - XFRMA_IF_ID = 31, - XFRMA_MTIMER_THRESH = 32, - XFRMA_SA_DIR = 33, - XFRMA_NAT_KEEPALIVE_INTERVAL = 34, - XFRMA_SA_PCPU = 35, - __XFRMA_MAX = 36, -}; - -struct xfrm_mark { - __u32 v; - __u32 m; -}; - -struct xfrm_address_filter { - xfrm_address_t saddr; - xfrm_address_t daddr; - __u16 family; - __u8 splen; - __u8 dplen; -}; - -struct offload_callbacks { - struct sk_buff * (*gso_segment)(struct sk_buff *, netdev_features_t); - struct sk_buff * (*gro_receive)(struct list_head *, struct sk_buff *); - int (*gro_complete)(struct sk_buff *, int); -}; - -struct packet_offload { - __be16 type; - u16 priority; - struct offload_callbacks callbacks; - struct list_head list; -}; - -typedef unsigned int (*bpf_dispatcher_fn)(const void *, const struct bpf_insn *, unsigned int (*)(const void *, const struct bpf_insn *)); - -struct bpf_skb_data_end { - struct qdisc_skb_cb qdisc_cb; - void *data_meta; - void *data_end; -}; - -struct bpf_sk_lookup_kern { - u16 family; - u16 protocol; - __be16 sport; - u16 dport; - struct { - __be32 saddr; - __be32 daddr; - } v4; - struct { - const struct in6_addr *saddr; - const struct in6_addr *daddr; - } v6; - struct sock *selected_sk; - u32 ingress_ifindex; - bool no_reuseport; -}; - -struct xfrm_state_walk { - struct list_head all; - u8 state; - u8 dying; - u8 proto; - u32 seq; - struct xfrm_address_filter *filter; -}; - -enum xfrm_replay_mode { - XFRM_REPLAY_MODE_LEGACY = 0, - XFRM_REPLAY_MODE_BMP = 1, - XFRM_REPLAY_MODE_ESN = 2, -}; - -struct xfrm_dev_offload { - struct net_device *dev; - netdevice_tracker dev_tracker; - struct net_device *real_dev; - long unsigned int offload_handle; - u8 dir: 2; - u8 type: 2; - u8 flags: 2; -}; - -struct xfrm_mode { - u8 encap; - u8 family; - u8 flags; -}; - -struct xfrm_type; - -struct xfrm_type_offload; - -struct xfrm_state { - possible_net_t xs_net; - union { - struct hlist_node gclist; - struct hlist_node bydst; - }; - union { - struct hlist_node dev_gclist; - struct hlist_node bysrc; - }; - struct hlist_node byspi; - struct hlist_node byseq; - struct hlist_node state_cache; - struct hlist_node state_cache_input; - refcount_t refcnt; - spinlock_t lock; - u32 pcpu_num; - struct xfrm_id id; - struct xfrm_selector sel; - struct xfrm_mark mark; - u32 if_id; - u32 tfcpad; - u32 genid; - struct xfrm_state_walk km; - struct { - u32 reqid; - u8 mode; - u8 replay_window; - u8 aalgo; - u8 ealgo; - u8 calgo; - u8 flags; - u16 family; - xfrm_address_t saddr; - int header_len; - int trailer_len; - u32 extra_flags; - struct xfrm_mark smark; - } props; - struct xfrm_lifetime_cfg lft; - struct xfrm_algo_auth *aalg; - struct xfrm_algo *ealg; - struct xfrm_algo *calg; - struct xfrm_algo_aead *aead; - const char *geniv; - __be16 new_mapping_sport; - u32 new_mapping; - u32 mapping_maxage; - struct xfrm_encap_tmpl *encap; - u32 nat_keepalive_interval; - time64_t nat_keepalive_expiration; - xfrm_address_t *coaddr; - struct xfrm_state *tunnel; - atomic_t tunnel_users; - struct xfrm_replay_state replay; - struct xfrm_replay_state_esn *replay_esn; - struct xfrm_replay_state preplay; - struct xfrm_replay_state_esn *preplay_esn; - enum xfrm_replay_mode repl_mode; - u32 xflags; - u32 replay_maxage; - u32 replay_maxdiff; - struct timer_list rtimer; - struct xfrm_stats stats; - struct xfrm_lifetime_cur curlft; - struct hrtimer mtimer; - struct xfrm_dev_offload xso; - long int saved_tmo; - time64_t lastused; - struct page_frag xfrag; - const struct xfrm_type *type; - struct xfrm_mode inner_mode; - struct xfrm_mode inner_mode_iaf; - struct xfrm_mode outer_mode; - const struct xfrm_type_offload *type_offload; - struct xfrm_sec_ctx *security; - void *data; - u8 dir; -}; - -struct xfrm_policy_walk_entry { - struct list_head all; - u8 dead; -}; - -struct xfrm_policy_queue { - struct sk_buff_head hold_queue; - struct timer_list hold_timer; - long unsigned int timeout; -}; - -struct xfrm_tmpl { - struct xfrm_id id; - xfrm_address_t saddr; - short unsigned int encap_family; - u32 reqid; - u8 mode; - u8 share; - u8 optional; - u8 allalgs; - u32 aalgos; - u32 ealgos; - u32 calgos; -}; - -struct xfrm_policy { - possible_net_t xp_net; - struct hlist_node bydst; - struct hlist_node byidx; - struct hlist_head state_cache_list; - rwlock_t lock; - refcount_t refcnt; - u32 pos; - struct timer_list timer; - atomic_t genid; - u32 priority; - u32 index; - u32 if_id; - struct xfrm_mark mark; - struct xfrm_selector selector; - struct xfrm_lifetime_cfg lft; - struct xfrm_lifetime_cur curlft; - struct xfrm_policy_walk_entry walk; - struct xfrm_policy_queue polq; - bool bydst_reinsert; - u8 type; - u8 action; - u8 flags; - u8 xfrm_nr; - u16 family; - struct xfrm_sec_ctx *security; - struct xfrm_tmpl xfrm_vec[6]; - struct callback_head rcu; - struct xfrm_dev_offload xdo; -}; - -struct sock_reuseport { - struct callback_head rcu; - u16 max_socks; - u16 num_socks; - u16 num_closed_socks; - u16 incoming_cpu; - unsigned int synq_overflow_ts; - unsigned int reuseport_id; - unsigned int bind_inany: 1; - unsigned int has_conns: 1; - struct bpf_prog *prog; - struct sock *socks[0]; -}; - -struct inet6_skb_parm { - int iif; - __be16 ra; - __u16 dst0; - __u16 srcrt; - __u16 dst1; - __u16 lastopt; - __u16 nhoff; - __u16 flags; - __u16 dsthao; - __u16 frag_max_size; - __u16 srhoff; -}; - -struct net_protocol { - int (*handler)(struct sk_buff *); - int (*err_handler)(struct sk_buff *, u32); - unsigned int no_policy: 1; - unsigned int icmp_strict_tag_validation: 1; - u32 secret; -}; - -struct inet6_protocol { - int (*handler)(struct sk_buff *); - int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); - unsigned int flags; - u32 secret; -}; - -struct net_offload { - struct offload_callbacks callbacks; - unsigned int flags; - u32 secret; -}; - -struct rps_sock_flow_table; - -struct net_hotdata { - struct packet_offload ip_packet_offload; - struct net_offload tcpv4_offload; - struct net_protocol tcp_protocol; - struct net_offload udpv4_offload; - struct net_protocol udp_protocol; - struct packet_offload ipv6_packet_offload; - struct net_offload tcpv6_offload; - struct inet6_protocol tcpv6_protocol; - struct inet6_protocol udpv6_protocol; - struct net_offload udpv6_offload; - struct list_head offload_base; - struct list_head ptype_all; - struct kmem_cache *skbuff_cache; - struct kmem_cache *skbuff_fclone_cache; - struct kmem_cache *skb_small_head_cache; - struct rps_sock_flow_table *rps_sock_flow_table; - u32 rps_cpu_mask; - int gro_normal_batch; - int netdev_budget; - int netdev_budget_usecs; - int tstamp_prequeue; - int max_backlog; - int dev_tx_weight; - int dev_rx_weight; - int sysctl_max_skb_frags; - int sysctl_skb_defer_max; - int sysctl_mem_pcpu_rsv; -}; - -struct inet_ehash_bucket { - struct hlist_nulls_head chain; -}; - -struct inet_bind_hashbucket { - spinlock_t lock; - struct hlist_head chain; -}; - -struct inet_listen_hashbucket { - spinlock_t lock; - struct hlist_nulls_head nulls_head; -}; - -struct xfrm_type { - struct module *owner; - u8 proto; - u8 flags; - int (*init_state)(struct xfrm_state *, struct netlink_ext_ack *); - void (*destructor)(struct xfrm_state *); - int (*input)(struct xfrm_state *, struct sk_buff *); - int (*output)(struct xfrm_state *, struct sk_buff *); - int (*reject)(struct xfrm_state *, struct sk_buff *, const struct flowi *); -}; - -struct xfrm_type_offload { - struct module *owner; - u8 proto; - void (*encap)(struct xfrm_state *, struct sk_buff *); - int (*input_tail)(struct xfrm_state *, struct sk_buff *); - int (*xmit)(struct xfrm_state *, struct sk_buff *, netdev_features_t); -}; - -struct bpf_storage_buffer { - struct callback_head rcu; - char data[0]; -}; - -struct ack_sample { - u32 pkts_acked; - s32 rtt_us; - u32 in_flight; -}; - -struct rate_sample { - u64 prior_mstamp; - u32 prior_delivered; - u32 prior_delivered_ce; - s32 delivered; - s32 delivered_ce; - long int interval_us; - u32 snd_interval_us; - u32 rcv_interval_us; - long int rtt_us; - int losses; - u32 acked_sacked; - u32 prior_in_flight; - u32 last_end_seq; - bool is_app_limited; - bool is_retrans; - bool is_ack_delayed; -}; - -struct page_pool_params { - union { - struct { - unsigned int order; - unsigned int pool_size; - int nid; - struct device *dev; - struct napi_struct *napi; - enum dma_data_direction dma_dir; - unsigned int max_len; - unsigned int offset; - }; - struct page_pool_params_fast fast; - }; - union { - struct { - struct net_device *netdev; - unsigned int queue_idx; - unsigned int flags; - void (*init_callback)(netmem_ref, void *); - void *init_arg; - }; - struct page_pool_params_slow slow; - }; -}; - -enum xdp_mem_type { - MEM_TYPE_PAGE_SHARED = 0, - MEM_TYPE_PAGE_ORDER0 = 1, - MEM_TYPE_PAGE_POOL = 2, - MEM_TYPE_XSK_BUFF_POOL = 3, - MEM_TYPE_MAX = 4, -}; - -enum xdp_buff_flags { - XDP_FLAGS_HAS_FRAGS = 1, - XDP_FLAGS_FRAGS_PF_MEMALLOC = 2, -}; - -struct bpf_nf_ctx { - const struct nf_hook_state *state; - struct sk_buff *skb; -}; - -struct trace_event_raw_bpf_trigger_tp { - struct trace_entry ent; - int nonce; - char __data[0]; -}; - -struct trace_event_raw_bpf_test_finish { - struct trace_entry ent; - int err; - char __data[0]; -}; - -struct trace_event_data_offsets_bpf_trigger_tp {}; - -struct trace_event_data_offsets_bpf_test_finish {}; - -typedef void (*btf_trace_bpf_trigger_tp)(void *, int); - -typedef void (*btf_trace_bpf_test_finish)(void *, int *); - -struct bpf_test_timer { - enum { - NO_PREEMPT = 0, - NO_MIGRATE = 1, - } mode; - u32 i; - u64 time_start; - u64 time_spent; -}; - -struct xdp_page_head { - struct xdp_buff orig_ctx; - struct xdp_buff ctx; - union { - struct { - struct {} __empty_frame; - struct xdp_frame frame[0]; - }; - struct { - struct {} __empty_data; - u8 data[0]; - }; - }; -}; - -struct xdp_test_data { - struct xdp_buff *orig_ctx; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct xdp_rxq_info rxq; - struct net_device *dev; - struct page_pool *pp; - struct xdp_frame **frames; - struct sk_buff **skbs; - struct xdp_mem_info mem; - u32 batch_size; - u32 frame_cnt; - long: 64; - long: 64; -}; - -struct bpf_fentry_test_t { - struct bpf_fentry_test_t *a; -}; - -struct prog_test_member1 { - int a; -}; - -struct prog_test_member { - struct prog_test_member1 m; - int c; -}; - -struct prog_test_ref_kfunc { - int a; - int b; - struct prog_test_member memb; - struct prog_test_ref_kfunc *next; - refcount_t cnt; -}; - -struct bpf_raw_tp_test_run_info { - struct bpf_prog *prog; - void *ctx; - u32 retval; -}; - -typedef u32 u_int32_t; - -struct nf_bridge_info { - enum { - BRNF_PROTO_UNCHANGED = 0, - BRNF_PROTO_8021Q = 1, - BRNF_PROTO_PPPOE = 2, - } orig_proto: 8; - u8 pkt_otherhost: 1; - u8 in_prerouting: 1; - u8 bridged_dnat: 1; - u8 sabotage_in_done: 1; - __u16 frag_max_size; - int physinif; - struct net_device *physoutdev; - union { - __be32 ipv4_daddr; - struct in6_addr ipv6_daddr; - char neigh_header[8]; - }; -}; - -struct ip_rt_info { - __be32 daddr; - __be32 saddr; - u_int8_t tos; - u_int32_t mark; -}; - -enum { - TCPF_ESTABLISHED = 2, - TCPF_SYN_SENT = 4, - TCPF_SYN_RECV = 8, - TCPF_FIN_WAIT1 = 16, - TCPF_FIN_WAIT2 = 32, - TCPF_TIME_WAIT = 64, - TCPF_CLOSE = 128, - TCPF_CLOSE_WAIT = 256, - TCPF_LAST_ACK = 512, - TCPF_LISTEN = 1024, - TCPF_CLOSING = 2048, - TCPF_NEW_SYN_RECV = 4096, - TCPF_BOUND_INACTIVE = 8192, -}; - -enum sock_flags { - SOCK_DEAD = 0, - SOCK_DONE = 1, - SOCK_URGINLINE = 2, - SOCK_KEEPOPEN = 3, - SOCK_LINGER = 4, - SOCK_DESTROY = 5, - SOCK_BROADCAST = 6, - SOCK_TIMESTAMP = 7, - SOCK_ZAPPED = 8, - SOCK_USE_WRITE_QUEUE = 9, - SOCK_DBG = 10, - SOCK_RCVTSTAMP = 11, - SOCK_RCVTSTAMPNS = 12, - SOCK_LOCALROUTE = 13, - SOCK_MEMALLOC = 14, - SOCK_TIMESTAMPING_RX_SOFTWARE = 15, - SOCK_FASYNC = 16, - SOCK_RXQ_OVFL = 17, - SOCK_ZEROCOPY = 18, - SOCK_WIFI_STATUS = 19, - SOCK_NOFCS = 20, - SOCK_FILTER_LOCKED = 21, - SOCK_SELECT_ERR_QUEUE = 22, - SOCK_RCU_FREE = 23, - SOCK_TXTIME = 24, - SOCK_XDP = 25, - SOCK_TSTAMP_NEW = 26, - SOCK_RCVMARK = 27, -}; - -struct ip6_rt_info { - struct in6_addr daddr; - struct in6_addr saddr; - u_int32_t mark; -}; - -struct nf_queue_entry { - struct list_head list; - struct sk_buff *skb; - unsigned int id; - unsigned int hook_index; - struct net_device *physin; - struct net_device *physout; - struct nf_hook_state state; - u16 size; -}; - -enum l2tp_debug_flags { - L2TP_MSG_DEBUG = 1, - L2TP_MSG_CONTROL = 2, - L2TP_MSG_SEQ = 4, - L2TP_MSG_DATA = 8, -}; - -struct nf_queue_handler { - int (*outfn)(struct nf_queue_entry *, unsigned int); - void (*nf_hook_drop)(struct net *); -}; - -typedef u16 u_int16_t; - -typedef u64 u_int64_t; - -enum ip_conntrack_info { - IP_CT_ESTABLISHED = 0, - IP_CT_RELATED = 1, - IP_CT_NEW = 2, - IP_CT_IS_REPLY = 3, - IP_CT_ESTABLISHED_REPLY = 3, - IP_CT_RELATED_REPLY = 4, - IP_CT_NUMBER = 5, - IP_CT_UNTRACKED = 7, -}; - -enum ip_conntrack_status { - IPS_EXPECTED_BIT = 0, - IPS_EXPECTED = 1, - IPS_SEEN_REPLY_BIT = 1, - IPS_SEEN_REPLY = 2, - IPS_ASSURED_BIT = 2, - IPS_ASSURED = 4, - IPS_CONFIRMED_BIT = 3, - IPS_CONFIRMED = 8, - IPS_SRC_NAT_BIT = 4, - IPS_SRC_NAT = 16, - IPS_DST_NAT_BIT = 5, - IPS_DST_NAT = 32, - IPS_NAT_MASK = 48, - IPS_SEQ_ADJUST_BIT = 6, - IPS_SEQ_ADJUST = 64, - IPS_SRC_NAT_DONE_BIT = 7, - IPS_SRC_NAT_DONE = 128, - IPS_DST_NAT_DONE_BIT = 8, - IPS_DST_NAT_DONE = 256, - IPS_NAT_DONE_MASK = 384, - IPS_DYING_BIT = 9, - IPS_DYING = 512, - IPS_FIXED_TIMEOUT_BIT = 10, - IPS_FIXED_TIMEOUT = 1024, - IPS_TEMPLATE_BIT = 11, - IPS_TEMPLATE = 2048, - IPS_UNTRACKED_BIT = 12, - IPS_UNTRACKED = 4096, - IPS_NAT_CLASH_BIT = 12, - IPS_NAT_CLASH = 4096, - IPS_HELPER_BIT = 13, - IPS_HELPER = 8192, - IPS_OFFLOAD_BIT = 14, - IPS_OFFLOAD = 16384, - IPS_HW_OFFLOAD_BIT = 15, - IPS_HW_OFFLOAD = 32768, - IPS_UNCHANGEABLE_MASK = 56313, - __IPS_MAX_BIT = 16, -}; - -struct nf_conntrack { - refcount_t use; -}; - -union nf_inet_addr { - __u32 all[4]; - __be32 ip; - __be32 ip6[4]; - struct in_addr in; - struct in6_addr in6; -}; - -struct ip_ct_tcp_state { - u_int32_t td_end; - u_int32_t td_maxend; - u_int32_t td_maxwin; - u_int32_t td_maxack; - u_int8_t td_scale; - u_int8_t flags; -}; - -struct ip_ct_tcp { - struct ip_ct_tcp_state seen[2]; - u_int8_t state; - u_int8_t last_dir; - u_int8_t retrans; - u_int8_t last_index; - u_int32_t last_seq; - u_int32_t last_ack; - u_int32_t last_end; - u_int16_t last_win; - u_int8_t last_wscale; - u_int8_t last_flags; -}; - -enum ip_conntrack_dir { - IP_CT_DIR_ORIGINAL = 0, - IP_CT_DIR_REPLY = 1, - IP_CT_DIR_MAX = 2, -}; - -union nf_conntrack_man_proto { - __be16 all; - struct { - __be16 port; - } tcp; - struct { - __be16 port; - } udp; - struct { - __be16 id; - } icmp; - struct { - __be16 port; - } dccp; - struct { - __be16 port; - } sctp; - struct { - __be16 key; - } gre; -}; - -struct nf_ct_dccp { - u_int8_t role[2]; - u_int8_t state; - u_int8_t last_pkt; - u_int8_t last_dir; - u_int64_t handshake_seq; -}; - -enum sctp_conntrack { - SCTP_CONNTRACK_NONE = 0, - SCTP_CONNTRACK_CLOSED = 1, - SCTP_CONNTRACK_COOKIE_WAIT = 2, - SCTP_CONNTRACK_COOKIE_ECHOED = 3, - SCTP_CONNTRACK_ESTABLISHED = 4, - SCTP_CONNTRACK_SHUTDOWN_SENT = 5, - SCTP_CONNTRACK_SHUTDOWN_RECD = 6, - SCTP_CONNTRACK_SHUTDOWN_ACK_SENT = 7, - SCTP_CONNTRACK_HEARTBEAT_SENT = 8, - SCTP_CONNTRACK_HEARTBEAT_ACKED = 9, - SCTP_CONNTRACK_MAX = 10, -}; - -struct ip_ct_sctp { - enum sctp_conntrack state; - __be32 vtag[2]; - u8 init[2]; - u8 last_dir; - u8 flags; -}; - -struct nf_conntrack_zone { - u16 id; - u8 flags; - u8 dir; -}; - -struct nf_conntrack_man { - union nf_inet_addr u3; - union nf_conntrack_man_proto u; - u_int16_t l3num; -}; - -struct nf_conntrack_tuple { - struct nf_conntrack_man src; - struct { - union nf_inet_addr u3; - union { - __be16 all; - struct { - __be16 port; - } tcp; - struct { - __be16 port; - } udp; - struct { - u_int8_t type; - u_int8_t code; - } icmp; - struct { - __be16 port; - } dccp; - struct { - __be16 port; - } sctp; - struct { - __be16 key; - } gre; - } u; - u_int8_t protonum; - struct {} __nfct_hash_offsetend; - u_int8_t dir; - } dst; -}; - -struct nf_conntrack_tuple_hash { - struct hlist_nulls_node hnnode; - struct nf_conntrack_tuple tuple; -}; - -struct nf_ct_udp { - long unsigned int stream_ts; -}; - -struct nf_ct_gre { - unsigned int stream_timeout; - unsigned int timeout; -}; - -union nf_conntrack_proto { - struct nf_ct_dccp dccp; - struct ip_ct_sctp sctp; - struct ip_ct_tcp tcp; - struct nf_ct_udp udp; - struct nf_ct_gre gre; - unsigned int tmpl_padto; -}; - -struct nf_ct_ext; - -struct nf_conn { - struct nf_conntrack ct_general; - spinlock_t lock; - u32 timeout; - struct nf_conntrack_zone zone; - struct nf_conntrack_tuple_hash tuplehash[2]; - long unsigned int status; - possible_net_t ct_net; - struct hlist_node nat_bysource; - struct {} __nfct_init_offset; - struct nf_conn *master; - u_int32_t mark; - struct nf_ct_ext *ext; - union nf_conntrack_proto proto; -}; - -struct tcp_sack_block_wire { - __be32 start_seq; - __be32 end_seq; -}; - -struct nf_ct_ext { - u8 offset[9]; - u8 len; - unsigned int gen_id; - char data[0]; -}; - -enum nf_ct_ext_id { - NF_CT_EXT_HELPER = 0, - NF_CT_EXT_NAT = 1, - NF_CT_EXT_SEQADJ = 2, - NF_CT_EXT_ACCT = 3, - NF_CT_EXT_ECACHE = 4, - NF_CT_EXT_TSTAMP = 5, - NF_CT_EXT_TIMEOUT = 6, - NF_CT_EXT_LABELS = 7, - NF_CT_EXT_SYNPROXY = 8, - NF_CT_EXT_NUM = 9, -}; - -struct nf_ct_seqadj { - u32 correction_pos; - s32 offset_before; - s32 offset_after; -}; - -struct nf_conn_seqadj { - struct nf_ct_seqadj seq[2]; -}; - -enum netdev_cmd { - NETDEV_UP = 1, - NETDEV_DOWN = 2, - NETDEV_REBOOT = 3, - NETDEV_CHANGE = 4, - NETDEV_REGISTER = 5, - NETDEV_UNREGISTER = 6, - NETDEV_CHANGEMTU = 7, - NETDEV_CHANGEADDR = 8, - NETDEV_PRE_CHANGEADDR = 9, - NETDEV_GOING_DOWN = 10, - NETDEV_CHANGENAME = 11, - NETDEV_FEAT_CHANGE = 12, - NETDEV_BONDING_FAILOVER = 13, - NETDEV_PRE_UP = 14, - NETDEV_PRE_TYPE_CHANGE = 15, - NETDEV_POST_TYPE_CHANGE = 16, - NETDEV_POST_INIT = 17, - NETDEV_PRE_UNINIT = 18, - NETDEV_RELEASE = 19, - NETDEV_NOTIFY_PEERS = 20, - NETDEV_JOIN = 21, - NETDEV_CHANGEUPPER = 22, - NETDEV_RESEND_IGMP = 23, - NETDEV_PRECHANGEMTU = 24, - NETDEV_CHANGEINFODATA = 25, - NETDEV_BONDING_INFO = 26, - NETDEV_PRECHANGEUPPER = 27, - NETDEV_CHANGELOWERSTATE = 28, - NETDEV_UDP_TUNNEL_PUSH_INFO = 29, - NETDEV_UDP_TUNNEL_DROP_INFO = 30, - NETDEV_CHANGE_TX_QUEUE_LEN = 31, - NETDEV_CVLAN_FILTER_PUSH_INFO = 32, - NETDEV_CVLAN_FILTER_DROP_INFO = 33, - NETDEV_SVLAN_FILTER_PUSH_INFO = 34, - NETDEV_SVLAN_FILTER_DROP_INFO = 35, - NETDEV_OFFLOAD_XSTATS_ENABLE = 36, - NETDEV_OFFLOAD_XSTATS_DISABLE = 37, - NETDEV_OFFLOAD_XSTATS_REPORT_USED = 38, - NETDEV_OFFLOAD_XSTATS_REPORT_DELTA = 39, - NETDEV_XDP_FEAT_CHANGE = 40, -}; - -struct netdev_notifier_info { - struct net_device *dev; - struct netlink_ext_ack *extack; -}; - -enum rt_scope_t { - RT_SCOPE_UNIVERSE = 0, - RT_SCOPE_SITE = 200, - RT_SCOPE_LINK = 253, - RT_SCOPE_HOST = 254, - RT_SCOPE_NOWHERE = 255, -}; - -enum nf_nat_manip_type { - NF_NAT_MANIP_SRC = 0, - NF_NAT_MANIP_DST = 1, -}; - -struct inet6_ifaddr { - struct in6_addr addr; - __u32 prefix_len; - __u32 rt_priority; - __u32 valid_lft; - __u32 prefered_lft; - refcount_t refcnt; - spinlock_t lock; - int state; - __u32 flags; - __u8 dad_probes; - __u8 stable_privacy_retry; - __u16 scope; - __u64 dad_nonce; - long unsigned int cstamp; - long unsigned int tstamp; - struct delayed_work dad_work; - struct inet6_dev *idev; - struct fib6_info *rt; - struct hlist_node addr_lst; - struct list_head if_list; - struct list_head if_list_aux; - struct list_head tmp_list; - struct inet6_ifaddr *ifpub; - int regen_count; - bool tokenized; - u8 ifa_proto; - struct callback_head rcu; - struct in6_addr peer_addr; -}; - -struct nf_ct_iter_data { - struct net *net; - void *data; - u32 portid; - int report; -}; - -struct nf_nat_range2 { - unsigned int flags; - union nf_inet_addr min_addr; - union nf_inet_addr max_addr; - union nf_conntrack_man_proto min_proto; - union nf_conntrack_man_proto max_proto; - union nf_conntrack_man_proto base_proto; -}; - -union nf_conntrack_nat_help {}; - -struct nf_conn_nat { - union nf_conntrack_nat_help help; - int masq_index; -}; - -struct masq_dev_work { - struct work_struct work; - struct net *net; - netns_tracker ns_tracker; - union nf_inet_addr addr; - int ifindex; - int (*iter)(struct nf_conn *, void *); -}; - -struct rhltable { - struct rhashtable ht; -}; - -enum nft_registers { - NFT_REG_VERDICT = 0, - NFT_REG_1 = 1, - NFT_REG_2 = 2, - NFT_REG_3 = 3, - NFT_REG_4 = 4, - __NFT_REG_MAX = 5, - NFT_REG32_00 = 8, - NFT_REG32_01 = 9, - NFT_REG32_02 = 10, - NFT_REG32_03 = 11, - NFT_REG32_04 = 12, - NFT_REG32_05 = 13, - NFT_REG32_06 = 14, - NFT_REG32_07 = 15, - NFT_REG32_08 = 16, - NFT_REG32_09 = 17, - NFT_REG32_10 = 18, - NFT_REG32_11 = 19, - NFT_REG32_12 = 20, - NFT_REG32_13 = 21, - NFT_REG32_14 = 22, - NFT_REG32_15 = 23, -}; - -enum nft_last_attributes { - NFTA_LAST_UNSPEC = 0, - NFTA_LAST_SET = 1, - NFTA_LAST_MSECS = 2, - NFTA_LAST_PAD = 3, - __NFTA_LAST_MAX = 4, -}; - -struct nft_pktinfo { - struct sk_buff *skb; - const struct nf_hook_state *state; - u8 flags; - u8 tprot; - u16 fragoff; - u16 thoff; - u16 inneroff; -}; - -struct nft_chain; - -struct nft_verdict { - u32 code; - struct nft_chain *chain; -}; - -struct nft_rule_blob; - -struct nft_table; - -struct nft_chain { - struct nft_rule_blob *blob_gen_0; - struct nft_rule_blob *blob_gen_1; - struct list_head rules; - struct list_head list; - struct rhlist_head rhlhead; - struct nft_table *table; - u64 handle; - u32 use; - u8 flags: 5; - u8 bound: 1; - u8 genmask: 2; - char *name; - u16 udlen; - u8 *udata; - struct nft_rule_blob *blob_next; -}; - -struct nft_regs { - union { - u32 data[20]; - struct nft_verdict verdict; - }; -}; - -struct nft_expr_ops; - -struct nft_expr { - const struct nft_expr_ops *ops; - unsigned char data[0]; -}; - -struct nft_regs_track { - struct { - const struct nft_expr *selector; - const struct nft_expr *bitwise; - u8 num_reg; - } regs[20]; - const struct nft_expr *cur; - const struct nft_expr *last; -}; - -struct nft_ctx { - struct net *net; - struct nft_table *table; - struct nft_chain *chain; - const struct nlattr * const *nla; - u32 portid; - u32 seq; - u16 flags; - u8 family; - u8 level; - bool report; - long unsigned int reg_inited[1]; -}; - -struct nft_table { - struct list_head list; - struct rhltable chains_ht; - struct list_head chains; - struct list_head sets; - struct list_head objects; - struct list_head flowtables; - u64 hgenerator; - u64 handle; - u32 use; - u16 family: 6; - u16 flags: 8; - u16 genmask: 2; - u32 nlpid; - char *name; - u16 udlen; - u8 *udata; - u8 validate_state; -}; - -enum nft_trans_phase { - NFT_TRANS_PREPARE = 0, - NFT_TRANS_PREPARE_ERROR = 1, - NFT_TRANS_ABORT = 2, - NFT_TRANS_COMMIT = 3, - NFT_TRANS_RELEASE = 4, -}; - -struct nft_offload_ctx; - -struct nft_flow_rule; - -struct nft_expr_type; - -struct nft_expr_ops { - void (*eval)(const struct nft_expr *, struct nft_regs *, const struct nft_pktinfo *); - int (*clone)(struct nft_expr *, const struct nft_expr *, gfp_t); - unsigned int size; - int (*init)(const struct nft_ctx *, const struct nft_expr *, const struct nlattr * const *); - void (*activate)(const struct nft_ctx *, const struct nft_expr *); - void (*deactivate)(const struct nft_ctx *, const struct nft_expr *, enum nft_trans_phase); - void (*destroy)(const struct nft_ctx *, const struct nft_expr *); - void (*destroy_clone)(const struct nft_ctx *, const struct nft_expr *); - int (*dump)(struct sk_buff *, const struct nft_expr *, bool); - int (*validate)(const struct nft_ctx *, const struct nft_expr *); - bool (*reduce)(struct nft_regs_track *, const struct nft_expr *); - bool (*gc)(struct net *, const struct nft_expr *); - int (*offload)(struct nft_offload_ctx *, struct nft_flow_rule *, const struct nft_expr *); - bool (*offload_action)(const struct nft_expr *); - void (*offload_stats)(struct nft_expr *, const struct flow_stats *); - const struct nft_expr_type *type; - void *data; -}; - -enum nft_set_extensions { - NFT_SET_EXT_KEY = 0, - NFT_SET_EXT_KEY_END = 1, - NFT_SET_EXT_DATA = 2, - NFT_SET_EXT_FLAGS = 3, - NFT_SET_EXT_TIMEOUT = 4, - NFT_SET_EXT_USERDATA = 5, - NFT_SET_EXT_EXPRESSIONS = 6, - NFT_SET_EXT_OBJREF = 7, - NFT_SET_EXT_NUM = 8, -}; - -struct nft_expr_type { - const struct nft_expr_ops * (*select_ops)(const struct nft_ctx *, const struct nlattr * const *); - void (*release_ops)(const struct nft_expr_ops *); - const struct nft_expr_ops *ops; - const struct nft_expr_ops *inner_ops; - struct list_head list; - const char *name; - struct module *owner; - const struct nla_policy *policy; - unsigned int maxattr; - u8 family; - u8 flags; -}; - -struct nft_rule_blob { - long unsigned int size; - unsigned char data[0]; -}; - -struct nft_last { - long unsigned int jiffies; - unsigned int set; -}; - -struct nft_last_priv { - struct nft_last *last; -}; - -enum nft_set_flags { - NFT_SET_ANONYMOUS = 1, - NFT_SET_CONSTANT = 2, - NFT_SET_INTERVAL = 4, - NFT_SET_MAP = 8, - NFT_SET_TIMEOUT = 16, - NFT_SET_EVAL = 32, - NFT_SET_OBJECT = 64, - NFT_SET_CONCAT = 128, - NFT_SET_EXPR = 256, -}; - -struct nft_data { - union { - u32 data[4]; - struct nft_verdict verdict; - }; -}; - -struct nft_elem_priv {}; - -struct nft_set_elem { - union { - u32 buf[16]; - struct nft_data val; - } key; - union { - u32 buf[16]; - struct nft_data val; - } key_end; - union { - u32 buf[16]; - struct nft_data val; - } data; - struct nft_elem_priv *priv; -}; - -enum nft_iter_type { - NFT_ITER_UNSPEC = 0, - NFT_ITER_READ = 1, - NFT_ITER_UPDATE = 2, -}; - -struct nft_set; - -struct nft_set_iter { - u8 genmask; - enum nft_iter_type type: 8; - unsigned int count; - unsigned int skip; - int err; - int (*fn)(const struct nft_ctx *, struct nft_set *, const struct nft_set_iter *, struct nft_elem_priv *); -}; - -struct nft_set_ops; - -struct nft_set { - struct list_head list; - struct list_head bindings; - refcount_t refs; - struct nft_table *table; - possible_net_t net; - char *name; - u64 handle; - u32 ktype; - u32 dtype; - u32 objtype; - u32 size; - u8 field_len[16]; - u8 field_count; - u32 use; - atomic_t nelems; - u32 ndeact; - u64 timeout; - u32 gc_int; - u16 policy; - u16 udlen; - unsigned char *udata; - struct list_head pending_update; - long: 64; - long: 64; - long: 64; - long: 64; - const struct nft_set_ops *ops; - u16 flags: 13; - u16 dead: 1; - u16 genmask: 2; - u8 klen; - u8 dlen; - u8 num_exprs; - struct nft_expr *exprs[2]; - struct list_head catchall_list; - unsigned char data[0]; - long: 64; - long: 64; -}; - -struct nft_set_desc { - u32 ktype; - unsigned int klen; - u32 dtype; - unsigned int dlen; - u32 objtype; - unsigned int size; - u32 policy; - u32 gc_int; - u64 timeout; - u8 field_len[16]; - u8 field_count; - bool expr; -}; - -enum nft_set_class { - NFT_SET_CLASS_O_1 = 0, - NFT_SET_CLASS_O_LOG_N = 1, - NFT_SET_CLASS_O_N = 2, -}; - -struct nft_set_estimate { - u64 size; - enum nft_set_class lookup; - enum nft_set_class space; -}; - -struct nft_set_ext; - -struct nft_set_ops { - const struct nft_set_ext * (*lookup)(const struct net *, const struct nft_set *, const u32 *); - const struct nft_set_ext * (*update)(struct nft_set *, const u32 *, struct nft_elem_priv * (*)(struct nft_set *, const struct nft_expr *, struct nft_regs *), const struct nft_expr *, struct nft_regs *); - bool (*delete)(const struct nft_set *, const u32 *); - int (*insert)(const struct net *, const struct nft_set *, const struct nft_set_elem *, struct nft_elem_priv **); - void (*activate)(const struct net *, const struct nft_set *, struct nft_elem_priv *); - struct nft_elem_priv * (*deactivate)(const struct net *, const struct nft_set *, const struct nft_set_elem *); - void (*flush)(const struct net *, const struct nft_set *, struct nft_elem_priv *); - void (*remove)(const struct net *, const struct nft_set *, struct nft_elem_priv *); - void (*walk)(const struct nft_ctx *, struct nft_set *, struct nft_set_iter *); - struct nft_elem_priv * (*get)(const struct net *, const struct nft_set *, const struct nft_set_elem *, unsigned int); - u32 (*ksize)(u32); - u32 (*usize)(u32); - u32 (*adjust_maxsize)(const struct nft_set *); - void (*commit)(struct nft_set *); - void (*abort)(const struct nft_set *); - u64 (*privsize)(const struct nlattr * const *, const struct nft_set_desc *); - bool (*estimate)(const struct nft_set_desc *, u32, struct nft_set_estimate *); - int (*init)(const struct nft_set *, const struct nft_set_desc *, const struct nlattr * const *); - void (*destroy)(const struct nft_ctx *, const struct nft_set *); - void (*gc_init)(const struct nft_set *); - unsigned int elemsize; -}; - -struct nft_set_ext { - u8 genmask; - u8 offset[8]; - char data[0]; - long: 0; -}; - -struct nft_set_type { - const struct nft_set_ops ops; - u32 features; -}; - -struct nft_timeout { - u64 timeout; - u64 expiration; -}; - -struct nft_trans_gc { - struct list_head list; - struct net *net; - struct nft_set *set; - u32 seq; - u16 count; - struct nft_elem_priv *priv[256]; - struct callback_head rcu; -}; - -struct nftables_pernet { - struct list_head tables; - struct list_head commit_list; - struct list_head destroy_list; - struct list_head commit_set_list; - struct list_head binding_list; - struct list_head module_list; - struct list_head notify_list; - struct mutex commit_mutex; - u64 table_handle; - u64 tstamp; - unsigned int gc_seq; - u8 validate_state; - struct work_struct destroy_work; -}; - -struct nft_pipapo_elem; - -union nft_pipapo_map_bucket { - struct { - u32 to; - u32 n; - }; - struct nft_pipapo_elem *e; -}; - -struct nft_pipapo_elem { - struct nft_elem_priv priv; - struct nft_set_ext ext; -}; - -struct nft_pipapo_field { - unsigned int rules; - unsigned int bsize; - unsigned int rules_alloc; - u8 groups; - u8 bb; - long unsigned int *lt; - union nft_pipapo_map_bucket *mt; -}; - -struct nft_pipapo_scratch { - u8 map_index; - u32 align_off; - long unsigned int map[0]; -}; - -struct nft_pipapo_match { - u8 field_count; - unsigned int bsize_max; - struct nft_pipapo_scratch **scratch; - struct callback_head rcu; - struct nft_pipapo_field f[0]; -}; - -struct nft_pipapo { - struct nft_pipapo_match *match; - struct nft_pipapo_match *clone; - int width; - long unsigned int last_gc; -}; - -enum nft_verdicts { - NFT_CONTINUE = -1, - NFT_BREAK = -2, - NFT_JUMP = -3, - NFT_GOTO = -4, - NFT_RETURN = -5, -}; - -enum nft_tproxy_attributes { - NFTA_TPROXY_UNSPEC = 0, - NFTA_TPROXY_FAMILY = 1, - NFTA_TPROXY_REG_ADDR = 2, - NFTA_TPROXY_REG_PORT = 3, - __NFTA_TPROXY_MAX = 4, -}; - -struct ip_options { - __be32 faddr; - __be32 nexthop; - unsigned char optlen; - unsigned char srr; - unsigned char rr; - unsigned char ts; - unsigned char is_strictroute: 1; - unsigned char srr_is_hit: 1; - unsigned char is_changed: 1; - unsigned char rr_needaddr: 1; - unsigned char ts_needtime: 1; - unsigned char ts_needaddr: 1; - unsigned char router_alert; - unsigned char cipso; - unsigned char __pad2; - unsigned char __data[0]; -}; - -struct ip_options_rcu { - struct callback_head rcu; - struct ip_options opt; -}; - -struct ipv6_opt_hdr; - -struct ipv6_rt_hdr; - -struct ipv6_txoptions { - refcount_t refcnt; - int tot_len; - __u16 opt_flen; - __u16 opt_nflen; - struct ipv6_opt_hdr *hopopt; - struct ipv6_opt_hdr *dst0opt; - struct ipv6_rt_hdr *srcrt; - struct ipv6_opt_hdr *dst1opt; - struct callback_head rcu; -}; - -struct inet_request_sock { - struct request_sock req; - u16 snd_wscale: 4; - u16 rcv_wscale: 4; - u16 tstamp_ok: 1; - u16 sack_ok: 1; - u16 wscale_ok: 1; - u16 ecn_ok: 1; - u16 acked: 1; - u16 no_srccheck: 1; - u16 smc_ok: 1; - u32 ir_mark; - union { - struct ip_options_rcu *ireq_opt; - struct { - struct ipv6_txoptions *ipv6_opt; - struct sk_buff *pktopts; - }; - }; -}; - -struct inet_cork { - unsigned int flags; - __be32 addr; - struct ip_options *opt; - unsigned int fragsize; - int length; - struct dst_entry *dst; - u8 tx_flags; - __u8 ttl; - __s16 tos; - char priority; - __u16 gso_size; - u64 transmit_time; - u32 mark; -}; - -struct inet_cork_full { - struct inet_cork base; - struct flowi fl; -}; - -struct ipv6_pinfo; - -struct ip_mc_socklist; - -struct inet_sock { - struct sock sk; - struct ipv6_pinfo *pinet6; - long unsigned int inet_flags; - __be32 inet_saddr; - __s16 uc_ttl; - __be16 inet_sport; - struct ip_options_rcu *inet_opt; - atomic_t inet_id; - __u8 tos; - __u8 min_ttl; - __u8 mc_ttl; - __u8 pmtudisc; - __u8 rcv_tos; - __u8 convert_csum; - int uc_index; - int mc_index; - __be32 mc_addr; - u32 local_port_range; - struct ip_mc_socklist *mc_list; - struct inet_cork_full cork; -}; - -struct in6_pktinfo { - struct in6_addr ipi6_addr; - int ipi6_ifindex; -}; - -struct inet6_cork { - struct ipv6_txoptions *opt; - u8 hop_limit; - u8 tclass; - u8 dontfrag: 1; -}; - -struct ipv6_mc_socklist; - -struct ipv6_ac_socklist; - -struct ipv6_fl_socklist; - -struct ipv6_pinfo { - struct in6_addr saddr; - struct in6_pktinfo sticky_pktinfo; - const struct in6_addr *daddr_cache; - const struct in6_addr *saddr_cache; - __be32 flow_label; - __u32 frag_size; - s16 hop_limit; - u8 mcast_hops; - int ucast_oif; - int mcast_oif; - union { - struct { - __u16 srcrt: 1; - __u16 osrcrt: 1; - __u16 rxinfo: 1; - __u16 rxoinfo: 1; - __u16 rxhlim: 1; - __u16 rxohlim: 1; - __u16 hopopts: 1; - __u16 ohopopts: 1; - __u16 dstopts: 1; - __u16 odstopts: 1; - __u16 rxflow: 1; - __u16 rxtclass: 1; - __u16 rxpmtu: 1; - __u16 rxorigdstaddr: 1; - __u16 recvfragsize: 1; - } bits; - __u16 all; - } rxopt; - __u8 srcprefs; - __u8 pmtudisc; - __u8 min_hopcount; - __u8 tclass; - __be32 rcv_flowinfo; - __u32 dst_cookie; - struct ipv6_mc_socklist *ipv6_mc_list; - struct ipv6_ac_socklist *ipv6_ac_list; - struct ipv6_fl_socklist *ipv6_fl_list; - struct ipv6_txoptions *opt; - struct sk_buff *pktoptions; - struct sk_buff *rxpmtu; - struct inet6_cork cork; -}; - -enum { - INET_FLAGS_PKTINFO = 0, - INET_FLAGS_TTL = 1, - INET_FLAGS_TOS = 2, - INET_FLAGS_RECVOPTS = 3, - INET_FLAGS_RETOPTS = 4, - INET_FLAGS_PASSSEC = 5, - INET_FLAGS_ORIGDSTADDR = 6, - INET_FLAGS_CHECKSUM = 7, - INET_FLAGS_RECVFRAGSIZE = 8, - INET_FLAGS_RECVERR = 9, - INET_FLAGS_RECVERR_RFC4884 = 10, - INET_FLAGS_FREEBIND = 11, - INET_FLAGS_HDRINCL = 12, - INET_FLAGS_MC_LOOP = 13, - INET_FLAGS_MC_ALL = 14, - INET_FLAGS_TRANSPARENT = 15, - INET_FLAGS_IS_ICSK = 16, - INET_FLAGS_NODEFRAG = 17, - INET_FLAGS_BIND_ADDRESS_NO_PORT = 18, - INET_FLAGS_DEFER_CONNECT = 19, - INET_FLAGS_MC6_LOOP = 20, - INET_FLAGS_RECVERR6_RFC4884 = 21, - INET_FLAGS_MC6_ALL = 22, - INET_FLAGS_AUTOFLOWLABEL_SET = 23, - INET_FLAGS_AUTOFLOWLABEL = 24, - INET_FLAGS_DONTFRAG = 25, - INET_FLAGS_RECVERR6 = 26, - INET_FLAGS_REPFLOW = 27, - INET_FLAGS_RTALERT_ISOLATE = 28, - INET_FLAGS_SNDFLOW = 29, - INET_FLAGS_RTALERT = 30, -}; - -struct inet_bind_bucket { - possible_net_t ib_net; - int l3mdev; - short unsigned int port; - signed char fastreuse; - signed char fastreuseport; - kuid_t fastuid; - struct in6_addr fast_v6_rcv_saddr; - __be32 fast_rcv_saddr; - short unsigned int fast_sk_family; - bool fast_ipv6_only; - struct hlist_node node; - struct hlist_head bhash2; -}; - -struct inet_bind2_bucket { - possible_net_t ib_net; - int l3mdev; - short unsigned int port; - short unsigned int addr_type; - struct in6_addr v6_rcv_saddr; - struct hlist_node node; - struct hlist_node bhash_node; - struct hlist_head owners; -}; - -struct inet_timewait_sock { - struct sock_common __tw_common; - __u32 tw_mark; - unsigned char tw_substate; - unsigned char tw_rcv_wscale; - __be16 tw_sport; - unsigned int tw_transparent: 1; - unsigned int tw_flowlabel: 20; - unsigned int tw_usec_ts: 1; - unsigned int tw_pad: 2; - unsigned int tw_tos: 8; - u32 tw_txhash; - u32 tw_priority; - struct timer_list tw_timer; - struct inet_bind_bucket *tw_tb; - struct inet_bind2_bucket *tw_tb2; -}; - -struct ipv6_rt_hdr { - __u8 nexthdr; - __u8 hdrlen; - __u8 type; - __u8 segments_left; -}; - -struct ipv6_opt_hdr { - __u8 nexthdr; - __u8 hdrlen; -}; - -struct ip6_sf_socklist; - -struct ipv6_mc_socklist { - struct in6_addr addr; - int ifindex; - unsigned int sfmode; - struct ipv6_mc_socklist *next; - struct ip6_sf_socklist *sflist; - struct callback_head rcu; -}; - -struct ipv6_ac_socklist { - struct in6_addr acl_addr; - int acl_ifindex; - struct ipv6_ac_socklist *acl_next; -}; - -struct ip6_flowlabel; - -struct ipv6_fl_socklist { - struct ipv6_fl_socklist *next; - struct ip6_flowlabel *fl; - struct callback_head rcu; -}; - -struct ip6_sf_socklist { - unsigned int sl_max; - unsigned int sl_count; - struct callback_head rcu; - struct in6_addr sl_addr[0]; -}; - -struct ip6_flowlabel { - struct ip6_flowlabel *next; - __be32 label; - atomic_t users; - struct in6_addr dst; - struct ipv6_txoptions *opt; - long unsigned int linger; - struct callback_head rcu; - u8 share; - union { - struct pid *pid; - kuid_t uid; - } owner; - long unsigned int lastuse; - long unsigned int expires; - struct net *fl_net; -}; - -enum nf_tproxy_lookup_t { - NF_TPROXY_LOOKUP_LISTENER = 0, - NF_TPROXY_LOOKUP_ESTABLISHED = 1, -}; - -struct nft_tproxy { - u8 sreg_addr; - u8 sreg_port; - u8 family; -}; - -enum { - XT_ADDRTYPE_INVERT_SOURCE = 1, - XT_ADDRTYPE_INVERT_DEST = 2, - XT_ADDRTYPE_LIMIT_IFACE_IN = 4, - XT_ADDRTYPE_LIMIT_IFACE_OUT = 8, -}; - -enum { - XT_ADDRTYPE_UNSPEC = 1, - XT_ADDRTYPE_UNICAST = 2, - XT_ADDRTYPE_LOCAL = 4, - XT_ADDRTYPE_BROADCAST = 8, - XT_ADDRTYPE_ANYCAST = 16, - XT_ADDRTYPE_MULTICAST = 32, - XT_ADDRTYPE_BLACKHOLE = 64, - XT_ADDRTYPE_UNREACHABLE = 128, - XT_ADDRTYPE_PROHIBIT = 256, - XT_ADDRTYPE_THROW = 512, - XT_ADDRTYPE_NAT = 1024, - XT_ADDRTYPE_XRESOLVE = 2048, -}; - -struct xt_addrtype_info_v1 { - __u16 source; - __u16 dest; - __u32 flags; -}; - -struct xt_addrtype_info { - __u16 source; - __u16 dest; - __u32 invert_source; - __u32 invert_dest; -}; - -struct xt_action_param; - -struct xt_mtchk_param; - -struct xt_mtdtor_param; - -struct xt_match { - struct list_head list; - const char name[29]; - u_int8_t revision; - bool (*match)(const struct sk_buff *, struct xt_action_param *); - int (*checkentry)(const struct xt_mtchk_param *); - void (*destroy)(const struct xt_mtdtor_param *); - struct module *me; - const char *table; - unsigned int matchsize; - unsigned int usersize; - unsigned int hooks; - short unsigned int proto; - short unsigned int family; -}; - -struct xt_tgchk_param; - -struct xt_tgdtor_param; - -struct xt_target { - struct list_head list; - const char name[29]; - u_int8_t revision; - unsigned int (*target)(struct sk_buff *, const struct xt_action_param *); - int (*checkentry)(const struct xt_tgchk_param *); - void (*destroy)(const struct xt_tgdtor_param *); - struct module *me; - const char *table; - unsigned int targetsize; - unsigned int usersize; - unsigned int hooks; - short unsigned int proto; - short unsigned int family; -}; - -struct xt_action_param { - union { - const struct xt_match *match; - const struct xt_target *target; - }; - union { - const void *matchinfo; - const void *targinfo; - }; - const struct nf_hook_state *state; - unsigned int thoff; - u16 fragoff; - bool hotdrop; -}; - -struct xt_mtchk_param { - struct net *net; - const char *table; - const void *entryinfo; - const struct xt_match *match; - void *matchinfo; - unsigned int hook_mask; - u_int8_t family; - bool nft_compat; -}; - -struct xt_mtdtor_param { - struct net *net; - const struct xt_match *match; - void *matchinfo; - u_int8_t family; -}; - -struct xt_tgchk_param { - struct net *net; - const char *table; - const void *entryinfo; - const struct xt_target *target; - void *targinfo; - unsigned int hook_mask; - u_int8_t family; - bool nft_compat; -}; - -struct xt_tgdtor_param { - struct net *net; - const struct xt_target *target; - void *targinfo; - u_int8_t family; -}; - -struct ip_esp_hdr { - __be32 spi; - __be32 seq_no; - __u8 enc_data[0]; -}; - -struct xt_esp { - __u32 spis[2]; - __u8 invflags; -}; - -enum { - IPSET_ATTR_UNSPEC = 0, - IPSET_ATTR_PROTOCOL = 1, - IPSET_ATTR_SETNAME = 2, - IPSET_ATTR_TYPENAME = 3, - IPSET_ATTR_SETNAME2 = 3, - IPSET_ATTR_REVISION = 4, - IPSET_ATTR_FAMILY = 5, - IPSET_ATTR_FLAGS = 6, - IPSET_ATTR_DATA = 7, - IPSET_ATTR_ADT = 8, - IPSET_ATTR_LINENO = 9, - IPSET_ATTR_PROTOCOL_MIN = 10, - IPSET_ATTR_REVISION_MIN = 10, - IPSET_ATTR_INDEX = 11, - __IPSET_ATTR_CMD_MAX = 12, -}; - -enum { - IPSET_ATTR_IP = 1, - IPSET_ATTR_IP_FROM = 1, - IPSET_ATTR_IP_TO = 2, - IPSET_ATTR_CIDR = 3, - IPSET_ATTR_PORT = 4, - IPSET_ATTR_PORT_FROM = 4, - IPSET_ATTR_PORT_TO = 5, - IPSET_ATTR_TIMEOUT = 6, - IPSET_ATTR_PROTO = 7, - IPSET_ATTR_CADT_FLAGS = 8, - IPSET_ATTR_CADT_LINENO = 9, - IPSET_ATTR_MARK = 10, - IPSET_ATTR_MARKMASK = 11, - IPSET_ATTR_BITMASK = 12, - IPSET_ATTR_CADT_MAX = 16, - IPSET_ATTR_INITVAL = 17, - IPSET_ATTR_HASHSIZE = 18, - IPSET_ATTR_MAXELEM = 19, - IPSET_ATTR_NETMASK = 20, - IPSET_ATTR_BUCKETSIZE = 21, - IPSET_ATTR_RESIZE = 22, - IPSET_ATTR_SIZE = 23, - IPSET_ATTR_ELEMENTS = 24, - IPSET_ATTR_REFERENCES = 25, - IPSET_ATTR_MEMSIZE = 26, - __IPSET_ATTR_CREATE_MAX = 27, -}; - -enum { - IPSET_ATTR_ETHER = 17, - IPSET_ATTR_NAME = 18, - IPSET_ATTR_NAMEREF = 19, - IPSET_ATTR_IP2 = 20, - IPSET_ATTR_CIDR2 = 21, - IPSET_ATTR_IP2_TO = 22, - IPSET_ATTR_IFACE = 23, - IPSET_ATTR_BYTES = 24, - IPSET_ATTR_PACKETS = 25, - IPSET_ATTR_COMMENT = 26, - IPSET_ATTR_SKBMARK = 27, - IPSET_ATTR_SKBPRIO = 28, - IPSET_ATTR_SKBQUEUE = 29, - IPSET_ATTR_PAD = 30, - __IPSET_ATTR_ADT_MAX = 31, -}; - -enum ipset_errno { - IPSET_ERR_PRIVATE = 4096, - IPSET_ERR_PROTOCOL = 4097, - IPSET_ERR_FIND_TYPE = 4098, - IPSET_ERR_MAX_SETS = 4099, - IPSET_ERR_BUSY = 4100, - IPSET_ERR_EXIST_SETNAME2 = 4101, - IPSET_ERR_TYPE_MISMATCH = 4102, - IPSET_ERR_EXIST = 4103, - IPSET_ERR_INVALID_CIDR = 4104, - IPSET_ERR_INVALID_NETMASK = 4105, - IPSET_ERR_INVALID_FAMILY = 4106, - IPSET_ERR_TIMEOUT = 4107, - IPSET_ERR_REFERENCED = 4108, - IPSET_ERR_IPADDR_IPV4 = 4109, - IPSET_ERR_IPADDR_IPV6 = 4110, - IPSET_ERR_COUNTER = 4111, - IPSET_ERR_COMMENT = 4112, - IPSET_ERR_INVALID_MARKMASK = 4113, - IPSET_ERR_SKBINFO = 4114, - IPSET_ERR_BITMASK_NETMASK_EXCL = 4115, - IPSET_ERR_TYPE_SPECIFIC = 4352, -}; - -enum ipset_cmd_flags { - IPSET_FLAG_BIT_EXIST = 0, - IPSET_FLAG_EXIST = 1, - IPSET_FLAG_BIT_LIST_SETNAME = 1, - IPSET_FLAG_LIST_SETNAME = 2, - IPSET_FLAG_BIT_LIST_HEADER = 2, - IPSET_FLAG_LIST_HEADER = 4, - IPSET_FLAG_BIT_SKIP_COUNTER_UPDATE = 3, - IPSET_FLAG_SKIP_COUNTER_UPDATE = 8, - IPSET_FLAG_BIT_SKIP_SUBCOUNTER_UPDATE = 4, - IPSET_FLAG_SKIP_SUBCOUNTER_UPDATE = 16, - IPSET_FLAG_BIT_MATCH_COUNTERS = 5, - IPSET_FLAG_MATCH_COUNTERS = 32, - IPSET_FLAG_BIT_RETURN_NOMATCH = 7, - IPSET_FLAG_RETURN_NOMATCH = 128, - IPSET_FLAG_BIT_MAP_SKBMARK = 8, - IPSET_FLAG_MAP_SKBMARK = 256, - IPSET_FLAG_BIT_MAP_SKBPRIO = 9, - IPSET_FLAG_MAP_SKBPRIO = 512, - IPSET_FLAG_BIT_MAP_SKBQUEUE = 10, - IPSET_FLAG_MAP_SKBQUEUE = 1024, - IPSET_FLAG_CMD_MAX = 15, -}; - -enum ipset_cadt_flags { - IPSET_FLAG_BIT_BEFORE = 0, - IPSET_FLAG_BEFORE = 1, - IPSET_FLAG_BIT_PHYSDEV = 1, - IPSET_FLAG_PHYSDEV = 2, - IPSET_FLAG_BIT_NOMATCH = 2, - IPSET_FLAG_NOMATCH = 4, - IPSET_FLAG_BIT_WITH_COUNTERS = 3, - IPSET_FLAG_WITH_COUNTERS = 8, - IPSET_FLAG_BIT_WITH_COMMENT = 4, - IPSET_FLAG_WITH_COMMENT = 16, - IPSET_FLAG_BIT_WITH_FORCEADD = 5, - IPSET_FLAG_WITH_FORCEADD = 32, - IPSET_FLAG_BIT_WITH_SKBINFO = 6, - IPSET_FLAG_WITH_SKBINFO = 64, - IPSET_FLAG_BIT_IFACE_WILDCARD = 7, - IPSET_FLAG_IFACE_WILDCARD = 128, - IPSET_FLAG_CADT_MAX = 15, -}; - -enum ipset_adt { - IPSET_ADD = 0, - IPSET_DEL = 1, - IPSET_TEST = 2, - IPSET_ADT_MAX = 3, - IPSET_CREATE = 3, - IPSET_CADT_MAX = 4, -}; - -enum ip_set_dim { - IPSET_DIM_ZERO = 0, - IPSET_DIM_ONE = 1, - IPSET_DIM_TWO = 2, - IPSET_DIM_THREE = 3, - IPSET_DIM_MAX = 6, - IPSET_BIT_RETURN_NOMATCH = 7, -}; - -enum ip_set_kopt { - IPSET_INV_MATCH = 1, - IPSET_DIM_ONE_SRC = 2, - IPSET_DIM_TWO_SRC = 4, - IPSET_DIM_THREE_SRC = 8, - IPSET_RETURN_NOMATCH = 128, -}; - -enum ip_set_feature { - IPSET_TYPE_IP_FLAG = 0, - IPSET_TYPE_IP = 1, - IPSET_TYPE_PORT_FLAG = 1, - IPSET_TYPE_PORT = 2, - IPSET_TYPE_MAC_FLAG = 2, - IPSET_TYPE_MAC = 4, - IPSET_TYPE_IP2_FLAG = 3, - IPSET_TYPE_IP2 = 8, - IPSET_TYPE_NAME_FLAG = 4, - IPSET_TYPE_NAME = 16, - IPSET_TYPE_IFACE_FLAG = 5, - IPSET_TYPE_IFACE = 32, - IPSET_TYPE_MARK_FLAG = 6, - IPSET_TYPE_MARK = 64, - IPSET_TYPE_NOMATCH_FLAG = 7, - IPSET_TYPE_NOMATCH = 128, - IPSET_DUMP_LAST_FLAG = 8, - IPSET_DUMP_LAST = 256, -}; - -enum ip_set_extension { - IPSET_EXT_BIT_TIMEOUT = 0, - IPSET_EXT_TIMEOUT = 1, - IPSET_EXT_BIT_COUNTER = 1, - IPSET_EXT_COUNTER = 2, - IPSET_EXT_BIT_COMMENT = 2, - IPSET_EXT_COMMENT = 4, - IPSET_EXT_BIT_SKBINFO = 3, - IPSET_EXT_SKBINFO = 8, - IPSET_EXT_BIT_DESTROY = 7, - IPSET_EXT_DESTROY = 128, -}; - -enum ip_set_ext_id { - IPSET_EXT_ID_COUNTER = 0, - IPSET_EXT_ID_TIMEOUT = 1, - IPSET_EXT_ID_SKBINFO = 2, - IPSET_EXT_ID_COMMENT = 3, - IPSET_EXT_ID_MAX = 4, -}; - -struct ip_set; - -struct ip_set_ext_type { - void (*destroy)(struct ip_set *, void *); - enum ip_set_extension type; - enum ipset_cadt_flags flag; - u8 len; - u8 align; -}; - -struct ip_set_type; - -struct ip_set_type_variant; - -struct ip_set { - struct callback_head rcu; - char name[32]; - spinlock_t lock; - u32 ref; - u32 ref_netlink; - struct ip_set_type *type; - const struct ip_set_type_variant *variant; - u8 family; - u8 revision; - u8 extensions; - u8 flags; - u32 timeout; - u32 elements; - size_t ext_size; - size_t dsize; - size_t offset[4]; - void *data; -}; - -struct ip_set_counter { - atomic64_t bytes; - atomic64_t packets; -}; - -struct ip_set_comment_rcu { - struct callback_head rcu; - char str[0]; -}; - -struct ip_set_comment { - struct ip_set_comment_rcu *c; -}; - -struct ip_set_skbinfo { - u32 skbmark; - u32 skbmarkmask; - u32 skbprio; - u16 skbqueue; - u16 __pad; -}; - -struct ip_set_ext { - struct ip_set_skbinfo skbinfo; - u64 packets; - u64 bytes; - char *comment; - u32 timeout; - u8 packets_op; - u8 bytes_op; - bool target; -}; - -typedef int (*ipset_adtfn)(struct ip_set *, void *, const struct ip_set_ext *, struct ip_set_ext *, u32); - -struct ip_set_adt_opt { - u8 family; - u8 dim; - u8 flags; - u32 cmdflags; - struct ip_set_ext ext; -}; - -struct ip_set_type_variant { - int (*kadt)(struct ip_set *, const struct sk_buff *, const struct xt_action_param *, enum ipset_adt, struct ip_set_adt_opt *); - int (*uadt)(struct ip_set *, struct nlattr **, enum ipset_adt, u32 *, u32, bool); - ipset_adtfn adt[3]; - int (*resize)(struct ip_set *, bool); - void (*destroy)(struct ip_set *); - void (*flush)(struct ip_set *); - void (*expire)(struct ip_set *); - int (*head)(struct ip_set *, struct sk_buff *); - int (*list)(const struct ip_set *, struct sk_buff *, struct netlink_callback *); - void (*uref)(struct ip_set *, struct netlink_callback *, bool); - bool (*same_set)(const struct ip_set *, const struct ip_set *); - void (*cancel_gc)(struct ip_set *); - bool region_lock; -}; - -struct ip_set_type { - struct list_head list; - char name[32]; - u8 protocol; - u8 dimension; - u8 family; - u8 revision_min; - u8 revision_max; - u8 create_flags[10]; - u16 features; - int (*create)(struct net *, struct ip_set *, struct nlattr **, u32); - const struct nla_policy create_policy[27]; - const struct nla_policy adt_policy[31]; - struct module *me; -}; - -enum { - IPSET_CB_NET = 0, - IPSET_CB_PROTO = 1, - IPSET_CB_DUMP = 2, - IPSET_CB_INDEX = 3, - IPSET_CB_PRIVATE = 4, - IPSET_CB_ARG0 = 5, -}; - -enum { - IPSET_ERR_BITMAP_RANGE = 4352, - IPSET_ERR_BITMAP_RANGE_SIZE = 4353, -}; - -enum { - IPSET_ADD_STORE_PLAIN_TIMEOUT = -1, - IPSET_ADD_FAILED = 1, - IPSET_ADD_START_STORED_TIMEOUT = 2, -}; - -struct bitmap_port { - long unsigned int *members; - u16 first_port; - u16 last_port; - u32 elements; - size_t memsize; - struct timer_list gc; - struct ip_set *set; - unsigned char extensions[0]; -}; - -struct bitmap_port_adt_elem { - u16 id; -}; - -struct bitmap_port_elem {}; - -struct ipvs_sync_daemon_cfg { - union nf_inet_addr mcast_group; - int syncid; - u16 sync_maxlen; - u16 mcast_port; - u8 mcast_af; - u8 mcast_ttl; - char mcast_ifn[16]; -}; - -struct ip_vs_proto_data; - -struct ip_vs_stats_rcu; - -struct ip_vs_est_kt_data; - -struct ipvs_master_sync_state; - -struct ip_vs_sync_thread_data; - -struct netns_ipvs { - int gen; - int enable; - struct hlist_head rs_table[16]; - struct list_head app_list; - struct ip_vs_proto_data *proto_data_table[32]; - struct list_head tcp_apps[16]; - struct list_head udp_apps[16]; - atomic_t conn_count; - struct ip_vs_stats_rcu *tot_stats; - int num_services; - int num_services6; - struct list_head dest_trash; - spinlock_t dest_trash_lock; - struct timer_list dest_trash_timer; - atomic_t ftpsvc_counter; - atomic_t nullsvc_counter; - atomic_t conn_out_counter; - struct delayed_work expire_nodest_conn_work; - struct delayed_work defense_work; - int drop_rate; - int drop_counter; - int old_secure_tcp; - atomic_t dropentry; - spinlock_t dropentry_lock; - spinlock_t droppacket_lock; - spinlock_t securetcp_lock; - struct ctl_table_header *sysctl_hdr; - struct ctl_table *sysctl_tbl; - int sysctl_amemthresh; - int sysctl_am_droprate; - int sysctl_drop_entry; - int sysctl_drop_packet; - int sysctl_secure_tcp; - int sysctl_conntrack; - int sysctl_snat_reroute; - int sysctl_sync_ver; - int sysctl_sync_ports; - int sysctl_sync_persist_mode; - long unsigned int sysctl_sync_qlen_max; - int sysctl_sync_sock_size; - int sysctl_cache_bypass; - int sysctl_expire_nodest_conn; - int sysctl_sloppy_tcp; - int sysctl_sloppy_sctp; - int sysctl_expire_quiescent_template; - int sysctl_sync_threshold[2]; - unsigned int sysctl_sync_refresh_period; - int sysctl_sync_retries; - int sysctl_nat_icmp_send; - int sysctl_pmtu_disc; - int sysctl_backup_only; - int sysctl_conn_reuse_mode; - int sysctl_schedule_icmp; - int sysctl_ignore_tunneled; - int sysctl_run_estimation; - cpumask_var_t sysctl_est_cpulist; - int est_cpulist_valid; - int sysctl_est_nice; - int est_stopped; - int sysctl_lblc_expiration; - struct ctl_table_header *lblc_ctl_header; - struct ctl_table *lblc_ctl_table; - int sysctl_lblcr_expiration; - struct ctl_table_header *lblcr_ctl_header; - struct ctl_table *lblcr_ctl_table; - struct delayed_work est_reload_work; - struct mutex est_mutex; - struct hlist_head est_temp_list; - struct ip_vs_est_kt_data **est_kt_arr; - long unsigned int est_max_threads; - int est_calc_phase; - int est_chain_max; - int est_kt_count; - int est_add_ktid; - atomic_t est_genid; - atomic_t est_genid_done; - spinlock_t sync_lock; - struct ipvs_master_sync_state *ms; - spinlock_t sync_buff_lock; - struct ip_vs_sync_thread_data *master_tinfo; - struct ip_vs_sync_thread_data *backup_tinfo; - int threads_mask; - volatile int sync_state; - struct mutex sync_mutex; - struct ipvs_sync_daemon_cfg mcfg; - struct ipvs_sync_daemon_cfg bcfg; - struct net *net; - unsigned int mixed_address_family_dests; - unsigned int hooks_afmask; -}; - -struct ip_vs_iphdr { - int hdr_flags; - __u32 off; - __u32 len; - __u16 fragoffs; - __s16 protocol; - __s32 flags; - union nf_inet_addr saddr; - union nf_inet_addr daddr; -}; - -struct ip_vs_seq { - __u32 init_seq; - __u32 delta; - __u32 previous_delta; -}; - -struct ip_vs_counters { - u64_stats_t conns; - u64_stats_t inpkts; - u64_stats_t outpkts; - u64_stats_t inbytes; - u64_stats_t outbytes; -}; - -struct ip_vs_cpu_stats { - struct ip_vs_counters cnt; - struct u64_stats_sync syncp; -}; - -struct ip_vs_estimator { - struct hlist_node list; - u64 last_inbytes; - u64 last_outbytes; - u64 last_conns; - u64 last_inpkts; - u64 last_outpkts; - u64 cps; - u64 inpps; - u64 outpps; - u64 inbps; - u64 outbps; - s32 ktid: 16; - s32 ktrow: 8; - s32 ktcid: 8; -}; - -struct ip_vs_kstats { - u64 conns; - u64 inpkts; - u64 outpkts; - u64 inbytes; - u64 outbytes; - u64 cps; - u64 inpps; - u64 outpps; - u64 inbps; - u64 outbps; -}; - -struct ip_vs_stats { - struct ip_vs_kstats kstats; - struct ip_vs_estimator est; - struct ip_vs_cpu_stats *cpustats; - spinlock_t lock; - struct ip_vs_kstats kstats0; -}; - -struct ip_vs_stats_rcu { - struct ip_vs_stats s; - struct callback_head callback_head; -}; - -struct ip_vs_est_tick_data { - struct callback_head callback_head; - struct hlist_head chains[48]; - long unsigned int present[1]; - long unsigned int full[1]; - int chain_len[48]; -}; - -struct ip_vs_est_kt_data { - struct netns_ipvs *ipvs; - struct task_struct *task; - struct ip_vs_est_tick_data *ticks[50]; - long unsigned int avail[1]; - long unsigned int est_timer; - struct ip_vs_stats *calc_stats; - int tick_len[50]; - int id; - int chain_max; - int tick_max; - int est_count; - int est_max_count; - int add_row; - int est_row; -}; - -struct ip_vs_conn; - -struct ip_vs_app; - -struct ip_vs_protocol { - struct ip_vs_protocol *next; - char *name; - u16 protocol; - u16 num_states; - int dont_defrag; - void (*init)(struct ip_vs_protocol *); - void (*exit)(struct ip_vs_protocol *); - int (*init_netns)(struct netns_ipvs *, struct ip_vs_proto_data *); - void (*exit_netns)(struct netns_ipvs *, struct ip_vs_proto_data *); - int (*conn_schedule)(struct netns_ipvs *, int, struct sk_buff *, struct ip_vs_proto_data *, int *, struct ip_vs_conn **, struct ip_vs_iphdr *); - struct ip_vs_conn * (*conn_in_get)(struct netns_ipvs *, int, const struct sk_buff *, const struct ip_vs_iphdr *); - struct ip_vs_conn * (*conn_out_get)(struct netns_ipvs *, int, const struct sk_buff *, const struct ip_vs_iphdr *); - int (*snat_handler)(struct sk_buff *, struct ip_vs_protocol *, struct ip_vs_conn *, struct ip_vs_iphdr *); - int (*dnat_handler)(struct sk_buff *, struct ip_vs_protocol *, struct ip_vs_conn *, struct ip_vs_iphdr *); - const char * (*state_name)(int); - void (*state_transition)(struct ip_vs_conn *, int, const struct sk_buff *, struct ip_vs_proto_data *); - int (*register_app)(struct netns_ipvs *, struct ip_vs_app *); - void (*unregister_app)(struct netns_ipvs *, struct ip_vs_app *); - int (*app_conn_bind)(struct ip_vs_conn *); - void (*debug_packet)(int, struct ip_vs_protocol *, const struct sk_buff *, int, const char *); - void (*timeout_change)(struct ip_vs_proto_data *, int); -}; - -struct tcp_states_t; - -struct ip_vs_proto_data { - struct ip_vs_proto_data *next; - struct ip_vs_protocol *pp; - int *timeout_table; - atomic_t appcnt; - struct tcp_states_t *tcp_state_table; -}; - -struct ip_vs_dest; - -struct ip_vs_pe; - -struct ip_vs_conn { - struct hlist_node c_list; - __be16 cport; - __be16 dport; - __be16 vport; - u16 af; - union nf_inet_addr caddr; - union nf_inet_addr vaddr; - union nf_inet_addr daddr; - volatile __u32 flags; - __u16 protocol; - __u16 daf; - struct netns_ipvs *ipvs; - refcount_t refcnt; - struct timer_list timer; - volatile long unsigned int timeout; - spinlock_t lock; - volatile __u16 state; - volatile __u16 old_state; - __u32 fwmark; - long unsigned int sync_endtime; - struct ip_vs_conn *control; - atomic_t n_control; - struct ip_vs_dest *dest; - atomic_t in_pkts; - int (*packet_xmit)(struct sk_buff *, struct ip_vs_conn *, struct ip_vs_protocol *, struct ip_vs_iphdr *); - struct ip_vs_app *app; - void *app_data; - union { - struct { - struct ip_vs_seq in_seq; - struct ip_vs_seq out_seq; - }; - struct { - struct ip_vs_seq in_seq; - struct ip_vs_seq out_seq; - } sync_conn_opt; - }; - const struct ip_vs_pe *pe; - char *pe_data; - __u8 pe_data_len; - struct callback_head callback_head; -}; - -struct ip_vs_app { - struct list_head a_list; - int type; - char *name; - __u16 protocol; - struct module *module; - struct list_head incs_list; - struct list_head p_list; - struct ip_vs_app *app; - __be16 port; - atomic_t usecnt; - struct callback_head callback_head; - int (*pkt_out)(struct ip_vs_app *, struct ip_vs_conn *, struct sk_buff *, int *, struct ip_vs_iphdr *); - int (*pkt_in)(struct ip_vs_app *, struct ip_vs_conn *, struct sk_buff *, int *, struct ip_vs_iphdr *); - int (*init_conn)(struct ip_vs_app *, struct ip_vs_conn *); - int (*done_conn)(struct ip_vs_app *, struct ip_vs_conn *); - int (*bind_conn)(struct ip_vs_app *, struct ip_vs_conn *, struct ip_vs_protocol *); - void (*unbind_conn)(struct ip_vs_app *, struct ip_vs_conn *); - int *timeout_table; - int *timeouts; - int timeouts_size; - int (*conn_schedule)(struct sk_buff *, struct ip_vs_app *, int *, struct ip_vs_conn **); - struct ip_vs_conn * (*conn_in_get)(const struct sk_buff *, struct ip_vs_app *, const struct iphdr *, int); - struct ip_vs_conn * (*conn_out_get)(const struct sk_buff *, struct ip_vs_app *, const struct iphdr *, int); - int (*state_transition)(struct ip_vs_conn *, int, const struct sk_buff *, struct ip_vs_app *); - void (*timeout_change)(struct ip_vs_app *, int); -}; - -struct ip_vs_conn_param { - struct netns_ipvs *ipvs; - const union nf_inet_addr *caddr; - const union nf_inet_addr *vaddr; - __be16 cport; - __be16 vport; - __u16 protocol; - u16 af; - const struct ip_vs_pe *pe; - char *pe_data; - __u8 pe_data_len; -}; - -struct ip_vs_service; - -struct ip_vs_pe { - struct list_head n_list; - char *name; - atomic_t refcnt; - struct module *module; - int (*fill_param)(struct ip_vs_conn_param *, struct sk_buff *); - bool (*ct_match)(const struct ip_vs_conn_param *, struct ip_vs_conn *); - u32 (*hashkey_raw)(const struct ip_vs_conn_param *, u32, bool); - int (*show_pe_data)(const struct ip_vs_conn *, char *); - struct ip_vs_conn * (*conn_out)(struct ip_vs_service *, struct ip_vs_dest *, struct sk_buff *, const struct ip_vs_iphdr *, __be16, __be16); -}; - -struct ip_vs_dest_dst; - -struct ip_vs_dest { - struct list_head n_list; - struct hlist_node d_list; - u16 af; - __be16 port; - union nf_inet_addr addr; - volatile unsigned int flags; - atomic_t conn_flags; - atomic_t weight; - atomic_t last_weight; - __u16 tun_type; - __be16 tun_port; - __u16 tun_flags; - refcount_t refcnt; - struct ip_vs_stats stats; - long unsigned int idle_start; - atomic_t activeconns; - atomic_t inactconns; - atomic_t persistconns; - __u32 u_threshold; - __u32 l_threshold; - spinlock_t dst_lock; - struct ip_vs_dest_dst *dest_dst; - struct ip_vs_service *svc; - __u16 protocol; - __be16 vport; - union nf_inet_addr vaddr; - __u32 vfwmark; - struct callback_head callback_head; - struct list_head t_list; - unsigned int in_rs_table: 1; -}; - -struct ip_vs_scheduler; - -struct ip_vs_service { - struct hlist_node s_list; - struct hlist_node f_list; - atomic_t refcnt; - u16 af; - __u16 protocol; - union nf_inet_addr addr; - __be16 port; - __u32 fwmark; - unsigned int flags; - unsigned int timeout; - __be32 netmask; - struct netns_ipvs *ipvs; - struct list_head destinations; - __u32 num_dests; - struct ip_vs_stats stats; - struct ip_vs_scheduler *scheduler; - spinlock_t sched_lock; - void *sched_data; - struct ip_vs_pe *pe; - int conntrack_afmask; - struct callback_head callback_head; -}; - -struct ip_vs_scheduler { - struct list_head n_list; - char *name; - atomic_t refcnt; - struct module *module; - int (*init_service)(struct ip_vs_service *); - void (*done_service)(struct ip_vs_service *); - int (*add_dest)(struct ip_vs_service *, struct ip_vs_dest *); - int (*del_dest)(struct ip_vs_service *, struct ip_vs_dest *); - int (*upd_dest)(struct ip_vs_service *, struct ip_vs_dest *); - struct ip_vs_dest * (*schedule)(struct ip_vs_service *, const struct sk_buff *, struct ip_vs_iphdr *); -}; - -struct ip_vs_dest_dst { - struct dst_entry *dst_cache; - u32 dst_cookie; - union nf_inet_addr dst_saddr; - struct callback_head callback_head; -}; - -struct ip_vs_sync_buff; - -struct ipvs_master_sync_state { - struct list_head sync_queue; - struct ip_vs_sync_buff *sync_buff; - long unsigned int sync_queue_len; - unsigned int sync_queue_delay; - struct delayed_work master_wakeup_work; - struct netns_ipvs *ipvs; -}; - -enum { - IPSTATS_MIB_NUM = 0, - IPSTATS_MIB_INPKTS = 1, - IPSTATS_MIB_INOCTETS = 2, - IPSTATS_MIB_INDELIVERS = 3, - IPSTATS_MIB_OUTFORWDATAGRAMS = 4, - IPSTATS_MIB_OUTREQUESTS = 5, - IPSTATS_MIB_OUTOCTETS = 6, - IPSTATS_MIB_INHDRERRORS = 7, - IPSTATS_MIB_INTOOBIGERRORS = 8, - IPSTATS_MIB_INNOROUTES = 9, - IPSTATS_MIB_INADDRERRORS = 10, - IPSTATS_MIB_INUNKNOWNPROTOS = 11, - IPSTATS_MIB_INTRUNCATEDPKTS = 12, - IPSTATS_MIB_INDISCARDS = 13, - IPSTATS_MIB_OUTDISCARDS = 14, - IPSTATS_MIB_OUTNOROUTES = 15, - IPSTATS_MIB_REASMTIMEOUT = 16, - IPSTATS_MIB_REASMREQDS = 17, - IPSTATS_MIB_REASMOKS = 18, - IPSTATS_MIB_REASMFAILS = 19, - IPSTATS_MIB_FRAGOKS = 20, - IPSTATS_MIB_FRAGFAILS = 21, - IPSTATS_MIB_FRAGCREATES = 22, - IPSTATS_MIB_INMCASTPKTS = 23, - IPSTATS_MIB_OUTMCASTPKTS = 24, - IPSTATS_MIB_INBCASTPKTS = 25, - IPSTATS_MIB_OUTBCASTPKTS = 26, - IPSTATS_MIB_INMCASTOCTETS = 27, - IPSTATS_MIB_OUTMCASTOCTETS = 28, - IPSTATS_MIB_INBCASTOCTETS = 29, - IPSTATS_MIB_OUTBCASTOCTETS = 30, - IPSTATS_MIB_CSUMERRORS = 31, - IPSTATS_MIB_NOECTPKTS = 32, - IPSTATS_MIB_ECT1PKTS = 33, - IPSTATS_MIB_ECT0PKTS = 34, - IPSTATS_MIB_CEPKTS = 35, - IPSTATS_MIB_REASM_OVERLAPS = 36, - IPSTATS_MIB_OUTPKTS = 37, - __IPSTATS_MIB_MAX = 38, -}; - -enum { - INET_FRAG_FIRST_IN = 1, - INET_FRAG_LAST_IN = 2, - INET_FRAG_COMPLETE = 4, - INET_FRAG_HASH_DEAD = 8, - INET_FRAG_DROP = 16, -}; - -enum { - RTN_UNSPEC = 0, - RTN_UNICAST = 1, - RTN_LOCAL = 2, - RTN_BROADCAST = 3, - RTN_ANYCAST = 4, - RTN_MULTICAST = 5, - RTN_BLACKHOLE = 6, - RTN_UNREACHABLE = 7, - RTN_PROHIBIT = 8, - RTN_THROW = 9, - RTN_NAT = 10, - RTN_XRESOLVE = 11, - __RTN_MAX = 12, -}; - -struct ipv4_addr_key { - __be32 addr; - int vif; -}; - -struct inetpeer_addr { - union { - struct ipv4_addr_key a4; - struct in6_addr a6; - u32 key[4]; - }; - __u16 family; -}; - -struct inet_peer { - struct rb_node rb_node; - struct inetpeer_addr daddr; - u32 metrics[17]; - u32 rate_tokens; - u32 n_redirects; - long unsigned int rate_last; - union { - struct { - atomic_t rid; - }; - struct callback_head rcu; - }; - __u32 dtime; - refcount_t refcnt; -}; - -struct inet_skb_parm { - int iif; - struct ip_options opt; - u16 flags; - u16 frag_max_size; -}; - -enum ip_defrag_users { - IP_DEFRAG_LOCAL_DELIVER = 0, - IP_DEFRAG_CALL_RA_CHAIN = 1, - IP_DEFRAG_CONNTRACK_IN = 2, - __IP_DEFRAG_CONNTRACK_IN_END = 65537, - IP_DEFRAG_CONNTRACK_OUT = 65538, - __IP_DEFRAG_CONNTRACK_OUT_END = 131073, - IP_DEFRAG_CONNTRACK_BRIDGE_IN = 131074, - __IP_DEFRAG_CONNTRACK_BRIDGE_IN = 196609, - IP_DEFRAG_VS_IN = 196610, - IP_DEFRAG_VS_OUT = 196611, - IP_DEFRAG_VS_FWD = 196612, - IP_DEFRAG_AF_PACKET = 196613, - IP_DEFRAG_MACVLAN = 196614, -}; - -enum { - INET_ECN_NOT_ECT = 0, - INET_ECN_ECT_1 = 1, - INET_ECN_ECT_0 = 2, - INET_ECN_CE = 3, - INET_ECN_MASK = 3, -}; - -struct ipq { - struct inet_frag_queue q; - u8 ecn; - u16 max_df_size; - int iif; - unsigned int rid; - struct inet_peer *peer; -}; - -struct minmax_sample { - u32 t; - u32 v; -}; - -struct minmax { - struct minmax_sample s[3]; -}; - -struct fastopen_queue { - struct request_sock *rskq_rst_head; - struct request_sock *rskq_rst_tail; - spinlock_t lock; - int qlen; - int max_qlen; - struct tcp_fastopen_context *ctx; -}; - -struct request_sock_queue { - spinlock_t rskq_lock; - u8 rskq_defer_accept; - u32 synflood_warned; - atomic_t qlen; - atomic_t young; - struct request_sock *rskq_accept_head; - struct request_sock *rskq_accept_tail; - struct fastopen_queue fastopenq; -}; - -struct inet_connection_sock_af_ops { - int (*queue_xmit)(struct sock *, struct sk_buff *, struct flowi *); - void (*send_check)(struct sock *, struct sk_buff *); - int (*rebuild_header)(struct sock *); - void (*sk_rx_dst_set)(struct sock *, const struct sk_buff *); - int (*conn_request)(struct sock *, struct sk_buff *); - struct sock * (*syn_recv_sock)(const struct sock *, struct sk_buff *, struct request_sock *, struct dst_entry *, struct request_sock *, bool *); - u16 net_header_len; - u16 sockaddr_len; - int (*setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); - int (*getsockopt)(struct sock *, int, int, char *, int *); - void (*addr2sockaddr)(struct sock *, struct sockaddr *); - void (*mtu_reduced)(struct sock *); -}; - -struct tcp_ulp_ops; - -struct inet_connection_sock { - struct inet_sock icsk_inet; - struct request_sock_queue icsk_accept_queue; - struct inet_bind_bucket *icsk_bind_hash; - struct inet_bind2_bucket *icsk_bind2_hash; - long unsigned int icsk_timeout; - struct timer_list icsk_retransmit_timer; - struct timer_list icsk_delack_timer; - __u32 icsk_rto; - __u32 icsk_rto_min; - __u32 icsk_delack_max; - __u32 icsk_pmtu_cookie; - const struct tcp_congestion_ops *icsk_ca_ops; - const struct inet_connection_sock_af_ops *icsk_af_ops; - const struct tcp_ulp_ops *icsk_ulp_ops; - void *icsk_ulp_data; - void (*icsk_clean_acked)(struct sock *, u32); - unsigned int (*icsk_sync_mss)(struct sock *, u32); - __u8 icsk_ca_state: 5; - __u8 icsk_ca_initialized: 1; - __u8 icsk_ca_setsockopt: 1; - __u8 icsk_ca_dst_locked: 1; - __u8 icsk_retransmits; - __u8 icsk_pending; - __u8 icsk_backoff; - __u8 icsk_syn_retries; - __u8 icsk_probes_out; - __u16 icsk_ext_hdr_len; - struct { - __u8 pending; - __u8 quick; - __u8 pingpong; - __u8 retry; - __u32 ato: 8; - __u32 lrcv_flowlabel: 20; - __u32 unused: 4; - long unsigned int timeout; - __u32 lrcvtime; - __u16 last_seg_size; - __u16 rcv_mss; - } icsk_ack; - struct { - int search_high; - int search_low; - u32 probe_size: 31; - u32 enabled: 1; - u32 probe_timestamp; - } icsk_mtup; - u32 icsk_probes_tstamp; - u32 icsk_user_timeout; - u64 icsk_ca_priv[13]; -}; - -struct tcp_ulp_ops { - struct list_head list; - int (*init)(struct sock *); - void (*update)(struct sock *, struct proto *, void (*)(struct sock *)); - void (*release)(struct sock *); - int (*get_info)(struct sock *, struct sk_buff *); - size_t (*get_info_size)(const struct sock *); - void (*clone)(const struct request_sock *, struct sock *, const gfp_t); - char name[16]; - struct module *owner; -}; - -struct tcp_fastopen_cookie { - __le64 val[2]; - s8 len; - bool exp; -}; - -struct tcp_sack_block { - u32 start_seq; - u32 end_seq; -}; - -struct tcp_options_received { - int ts_recent_stamp; - u32 ts_recent; - u32 rcv_tsval; - u32 rcv_tsecr; - u16 saw_tstamp: 1; - u16 tstamp_ok: 1; - u16 dsack: 1; - u16 wscale_ok: 1; - u16 sack_ok: 3; - u16 smc_ok: 1; - u16 snd_wscale: 4; - u16 rcv_wscale: 4; - u8 saw_unknown: 1; - u8 unused: 7; - u8 num_sacks; - u16 user_mss; - u16 mss_clamp; -}; - -struct tcp_rack { - u64 mstamp; - u32 rtt_us; - u32 end_seq; - u32 last_delivered; - u8 reo_wnd_steps; - u8 reo_wnd_persist: 5; - u8 dsack_seen: 1; - u8 advanced: 1; -}; - -struct tcp_fastopen_request; - -struct tcp_sock { - struct inet_connection_sock inet_conn; - __u8 __cacheline_group_begin__tcp_sock_read_tx[0]; - u32 max_window; - u32 rcv_ssthresh; - u32 reordering; - u32 notsent_lowat; - u16 gso_segs; - struct sk_buff *lost_skb_hint; - struct sk_buff *retransmit_skb_hint; - __u8 __cacheline_group_end__tcp_sock_read_tx[0]; - __u8 __cacheline_group_begin__tcp_sock_read_txrx[0]; - u32 tsoffset; - u32 snd_wnd; - u32 mss_cache; - u32 snd_cwnd; - u32 prr_out; - u32 lost_out; - u32 sacked_out; - u16 tcp_header_len; - u8 scaling_ratio; - u8 chrono_type: 2; - u8 repair: 1; - u8 tcp_usec_ts: 1; - u8 is_sack_reneg: 1; - u8 is_cwnd_limited: 1; - __u8 __cacheline_group_end__tcp_sock_read_txrx[0]; - __u8 __cacheline_group_begin__tcp_sock_read_rx[0]; - u32 copied_seq; - u32 rcv_tstamp; - u32 snd_wl1; - u32 tlp_high_seq; - u32 rttvar_us; - u32 retrans_out; - u16 advmss; - u16 urg_data; - u32 lost; - struct minmax rtt_min; - struct rb_root out_of_order_queue; - u32 snd_ssthresh; - u8 recvmsg_inq: 1; - __u8 __cacheline_group_end__tcp_sock_read_rx[0]; - long: 0; - __u8 __cacheline_group_begin__tcp_sock_write_tx[0]; - u32 segs_out; - u32 data_segs_out; - u64 bytes_sent; - u32 snd_sml; - u32 chrono_start; - u32 chrono_stat[3]; - u32 write_seq; - u32 pushed_seq; - u32 lsndtime; - u32 mdev_us; - u32 rtt_seq; - u64 tcp_wstamp_ns; - struct list_head tsorted_sent_queue; - struct sk_buff *highest_sack; - u8 ecn_flags; - __u8 __cacheline_group_end__tcp_sock_write_tx[0]; - __u8 __cacheline_group_begin__tcp_sock_write_txrx[0]; - __be32 pred_flags; - u64 tcp_clock_cache; - u64 tcp_mstamp; - u32 rcv_nxt; - u32 snd_nxt; - u32 snd_una; - u32 window_clamp; - u32 srtt_us; - u32 packets_out; - u32 snd_up; - u32 delivered; - u32 delivered_ce; - u32 app_limited; - u32 rcv_wnd; - struct tcp_options_received rx_opt; - u8 nonagle: 4; - u8 rate_app_limited: 1; - __u8 __cacheline_group_end__tcp_sock_write_txrx[0]; - long: 0; - __u8 __cacheline_group_begin__tcp_sock_write_rx[0]; - u64 bytes_received; - u32 segs_in; - u32 data_segs_in; - u32 rcv_wup; - u32 max_packets_out; - u32 cwnd_usage_seq; - u32 rate_delivered; - u32 rate_interval_us; - u32 rcv_rtt_last_tsecr; - u64 first_tx_mstamp; - u64 delivered_mstamp; - u64 bytes_acked; - struct { - u32 rtt_us; - u32 seq; - u64 time; - } rcv_rtt_est; - struct { - int space; - u32 seq; - u64 time; - } rcvq_space; - __u8 __cacheline_group_end__tcp_sock_write_rx[0]; - u32 dsack_dups; - u32 compressed_ack_rcv_nxt; - struct list_head tsq_node; - struct tcp_rack rack; - u8 compressed_ack; - u8 dup_ack_counter: 2; - u8 tlp_retrans: 1; - u8 unused: 5; - u8 thin_lto: 1; - u8 fastopen_connect: 1; - u8 fastopen_no_cookie: 1; - u8 fastopen_client_fail: 2; - u8 frto: 1; - u8 repair_queue; - u8 save_syn: 2; - u8 syn_data: 1; - u8 syn_fastopen: 1; - u8 syn_fastopen_exp: 1; - u8 syn_fastopen_ch: 1; - u8 syn_data_acked: 1; - u8 keepalive_probes; - u32 tcp_tx_delay; - u32 mdev_max_us; - u32 reord_seen; - u32 snd_cwnd_cnt; - u32 snd_cwnd_clamp; - u32 snd_cwnd_used; - u32 snd_cwnd_stamp; - u32 prior_cwnd; - u32 prr_delivered; - u32 last_oow_ack_time; - struct hrtimer pacing_timer; - struct hrtimer compressed_ack_timer; - struct sk_buff *ooo_last_skb; - struct tcp_sack_block duplicate_sack[1]; - struct tcp_sack_block selective_acks[4]; - struct tcp_sack_block recv_sack_cache[4]; - int lost_cnt_hint; - u32 prior_ssthresh; - u32 high_seq; - u32 retrans_stamp; - u32 undo_marker; - int undo_retrans; - u64 bytes_retrans; - u32 total_retrans; - u32 rto_stamp; - u16 total_rto; - u16 total_rto_recoveries; - u32 total_rto_time; - u32 urg_seq; - unsigned int keepalive_time; - unsigned int keepalive_intvl; - int linger2; - u8 bpf_sock_ops_cb_flags; - u8 bpf_chg_cc_inprogress: 1; - u16 timeout_rehash; - u32 rcv_ooopack; - struct { - u32 probe_seq_start; - u32 probe_seq_end; - } mtu_probe; - u32 plb_rehash; - u32 mtu_info; - struct tcp_fastopen_request *fastopen_req; - struct request_sock *fastopen_rsk; - struct saved_syn *saved_syn; - long: 64; -}; - -struct tcp_fastopen_request { - struct tcp_fastopen_cookie cookie; - struct msghdr *data; - size_t size; - int copied; - struct ubuf_info *uarg; -}; - -enum tcp_skb_cb_sacked_flags { - TCPCB_SACKED_ACKED = 1, - TCPCB_SACKED_RETRANS = 2, - TCPCB_LOST = 4, - TCPCB_TAGBITS = 7, - TCPCB_REPAIRED = 16, - TCPCB_EVER_RETRANS = 128, - TCPCB_RETRANS = 146, -}; - -struct tcp_skb_cb { - __u32 seq; - __u32 end_seq; - union { - struct { - u16 tcp_gso_segs; - u16 tcp_gso_size; - }; - }; - __u8 tcp_flags; - __u8 sacked; - __u8 ip_dsfield; - __u8 txstamp_ack: 1; - __u8 eor: 1; - __u8 has_rxtstamp: 1; - __u8 unused: 5; - __u32 ack_seq; - union { - struct { - __u32 is_app_limited: 1; - __u32 delivered_ce: 20; - __u32 unused: 11; - __u32 delivered; - u64 first_tx_mstamp; - u64 delivered_mstamp; - } tx; - union { - struct inet_skb_parm h4; - struct inet6_skb_parm h6; - } header; - }; -}; - -struct flow_dissector_key_control { - u16 thoff; - u16 addr_type; - u32 flags; -}; - -struct flow_dissector_key_basic { - __be16 n_proto; - u8 ip_proto; - u8 padding; -}; - -struct flow_dissector_key_tags { - u32 flow_label; -}; - -struct flow_dissector_key_vlan { - union { - struct { - u16 vlan_id: 12; - u16 vlan_dei: 1; - u16 vlan_priority: 3; - }; - __be16 vlan_tci; - }; - __be16 vlan_tpid; - __be16 vlan_eth_type; - u16 padding; -}; - -struct flow_dissector_key_keyid { - __be32 keyid; -}; - -struct flow_dissector_key_ipv4_addrs { - __be32 src; - __be32 dst; -}; - -struct flow_dissector_key_ipv6_addrs { - struct in6_addr src; - struct in6_addr dst; -}; - -struct flow_dissector_key_tipc { - __be32 key; -}; - -struct flow_dissector_key_addrs { - union { - struct flow_dissector_key_ipv4_addrs v4addrs; - struct flow_dissector_key_ipv6_addrs v6addrs; - struct flow_dissector_key_tipc tipckey; - }; -}; - -struct flow_dissector_key_ports { - union { - __be32 ports; - struct { - __be16 src; - __be16 dst; - }; - }; -}; - -struct flow_dissector_key_icmp { - struct { - u8 type; - u8 code; - }; - u16 id; -}; - -struct flow_keys { - struct flow_dissector_key_control control; - struct flow_dissector_key_basic basic; - struct flow_dissector_key_tags tags; - struct flow_dissector_key_vlan vlan; - struct flow_dissector_key_vlan cvlan; - struct flow_dissector_key_keyid keyid; - struct flow_dissector_key_ports ports; - struct flow_dissector_key_icmp icmp; - struct flow_dissector_key_addrs addrs; - long: 0; -}; - -struct rtmsg { - unsigned char rtm_family; - unsigned char rtm_dst_len; - unsigned char rtm_src_len; - unsigned char rtm_tos; - unsigned char rtm_table; - unsigned char rtm_protocol; - unsigned char rtm_scope; - unsigned char rtm_type; - unsigned int rtm_flags; -}; - -enum rt_class_t { - RT_TABLE_UNSPEC = 0, - RT_TABLE_COMPAT = 252, - RT_TABLE_DEFAULT = 253, - RT_TABLE_MAIN = 254, - RT_TABLE_LOCAL = 255, - RT_TABLE_MAX = 4294967295, -}; - -enum rtattr_type_t { - RTA_UNSPEC = 0, - RTA_DST = 1, - RTA_SRC = 2, - RTA_IIF = 3, - RTA_OIF = 4, - RTA_GATEWAY = 5, - RTA_PRIORITY = 6, - RTA_PREFSRC = 7, - RTA_METRICS = 8, - RTA_MULTIPATH = 9, - RTA_PROTOINFO = 10, - RTA_FLOW = 11, - RTA_CACHEINFO = 12, - RTA_SESSION = 13, - RTA_MP_ALGO = 14, - RTA_TABLE = 15, - RTA_MARK = 16, - RTA_MFC_STATS = 17, - RTA_VIA = 18, - RTA_NEWDST = 19, - RTA_PREF = 20, - RTA_ENCAP_TYPE = 21, - RTA_ENCAP = 22, - RTA_EXPIRES = 23, - RTA_PAD = 24, - RTA_UID = 25, - RTA_TTL_PROPAGATE = 26, - RTA_IP_PROTO = 27, - RTA_SPORT = 28, - RTA_DPORT = 29, - RTA_NH_ID = 30, - __RTA_MAX = 31, -}; - -struct rtnexthop { - short unsigned int rtnh_len; - unsigned char rtnh_flags; - unsigned char rtnh_hops; - int rtnh_ifindex; -}; - -struct rtvia { - __kernel_sa_family_t rtvia_family; - __u8 rtvia_addr[0]; -}; - -enum rtnetlink_groups { - RTNLGRP_NONE = 0, - RTNLGRP_LINK = 1, - RTNLGRP_NOTIFY = 2, - RTNLGRP_NEIGH = 3, - RTNLGRP_TC = 4, - RTNLGRP_IPV4_IFADDR = 5, - RTNLGRP_IPV4_MROUTE = 6, - RTNLGRP_IPV4_ROUTE = 7, - RTNLGRP_IPV4_RULE = 8, - RTNLGRP_IPV6_IFADDR = 9, - RTNLGRP_IPV6_MROUTE = 10, - RTNLGRP_IPV6_ROUTE = 11, - RTNLGRP_IPV6_IFINFO = 12, - RTNLGRP_DECnet_IFADDR = 13, - RTNLGRP_NOP2 = 14, - RTNLGRP_DECnet_ROUTE = 15, - RTNLGRP_DECnet_RULE = 16, - RTNLGRP_NOP4 = 17, - RTNLGRP_IPV6_PREFIX = 18, - RTNLGRP_IPV6_RULE = 19, - RTNLGRP_ND_USEROPT = 20, - RTNLGRP_PHONET_IFADDR = 21, - RTNLGRP_PHONET_ROUTE = 22, - RTNLGRP_DCB = 23, - RTNLGRP_IPV4_NETCONF = 24, - RTNLGRP_IPV6_NETCONF = 25, - RTNLGRP_MDB = 26, - RTNLGRP_MPLS_ROUTE = 27, - RTNLGRP_NSID = 28, - RTNLGRP_MPLS_NETCONF = 29, - RTNLGRP_IPV4_MROUTE_R = 30, - RTNLGRP_IPV6_MROUTE_R = 31, - RTNLGRP_NEXTHOP = 32, - RTNLGRP_BRVLAN = 33, - RTNLGRP_MCTP_IFADDR = 34, - RTNLGRP_TUNNEL = 35, - RTNLGRP_STATS = 36, - __RTNLGRP_MAX = 37, -}; - -struct nl_info { - struct nlmsghdr *nlh; - struct net *nl_net; - u32 portid; - u8 skip_notify: 1; - u8 skip_notify_kernel: 1; -}; - -typedef u8 dscp_t; - -struct fib_notifier_info { - int family; - struct netlink_ext_ack *extack; -}; - -enum fib_event_type { - FIB_EVENT_ENTRY_REPLACE = 0, - FIB_EVENT_ENTRY_APPEND = 1, - FIB_EVENT_ENTRY_ADD = 2, - FIB_EVENT_ENTRY_DEL = 3, - FIB_EVENT_RULE_ADD = 4, - FIB_EVENT_RULE_DEL = 5, - FIB_EVENT_NH_ADD = 6, - FIB_EVENT_NH_DEL = 7, - FIB_EVENT_VIF_ADD = 8, - FIB_EVENT_VIF_DEL = 9, -}; - -struct fib_config { - u8 fc_dst_len; - dscp_t fc_dscp; - u8 fc_protocol; - u8 fc_scope; - u8 fc_type; - u8 fc_gw_family; - u32 fc_table; - __be32 fc_dst; - union { - __be32 fc_gw4; - struct in6_addr fc_gw6; - }; - int fc_oif; - u32 fc_flags; - u32 fc_priority; - __be32 fc_prefsrc; - u32 fc_nh_id; - struct nlattr *fc_mx; - struct rtnexthop *fc_mp; - int fc_mx_len; - int fc_mp_len; - u32 fc_flow; - u32 fc_nlflags; - struct nl_info fc_nlinfo; - struct nlattr *fc_encap; - u16 fc_encap_type; -}; - -struct fib_result { - __be32 prefix; - unsigned char prefixlen; - unsigned char nh_sel; - unsigned char type; - unsigned char scope; - u32 tclassid; - dscp_t dscp; - struct fib_nh_common *nhc; - struct fib_info *fi; - struct fib_table *table; - struct hlist_head *fa_head; -}; - -struct fib_rt_info { - struct fib_info *fi; - u32 tb_id; - __be32 dst; - int dst_len; - dscp_t dscp; - u8 type; - u8 offload: 1; - u8 trap: 1; - u8 offload_failed: 1; - u8 unused: 5; -}; - -struct fib_nh_notifier_info { - struct fib_notifier_info info; - struct fib_nh *fib_nh; -}; - -struct fib6_result; - -struct fib6_config; - -struct ipv6_stub { - int (*ipv6_sock_mc_join)(struct sock *, int, const struct in6_addr *); - int (*ipv6_sock_mc_drop)(struct sock *, int, const struct in6_addr *); - struct dst_entry * (*ipv6_dst_lookup_flow)(struct net *, const struct sock *, struct flowi6 *, const struct in6_addr *); - int (*ipv6_route_input)(struct sk_buff *); - struct fib6_table * (*fib6_get_table)(struct net *, u32); - int (*fib6_lookup)(struct net *, int, struct flowi6 *, struct fib6_result *, int); - int (*fib6_table_lookup)(struct net *, struct fib6_table *, int, struct flowi6 *, struct fib6_result *, int); - void (*fib6_select_path)(const struct net *, struct fib6_result *, struct flowi6 *, int, bool, const struct sk_buff *, int); - u32 (*ip6_mtu_from_fib6)(const struct fib6_result *, const struct in6_addr *, const struct in6_addr *); - int (*fib6_nh_init)(struct net *, struct fib6_nh *, struct fib6_config *, gfp_t, struct netlink_ext_ack *); - void (*fib6_nh_release)(struct fib6_nh *); - void (*fib6_nh_release_dsts)(struct fib6_nh *); - void (*fib6_update_sernum)(struct net *, struct fib6_info *); - int (*ip6_del_rt)(struct net *, struct fib6_info *, bool); - void (*fib6_rt_update)(struct net *, struct fib6_info *, struct nl_info *); - void (*udpv6_encap_enable)(void); - void (*ndisc_send_na)(struct net_device *, const struct in6_addr *, const struct in6_addr *, bool, bool, bool, bool); - void (*xfrm6_local_rxpmtu)(struct sk_buff *, u32); - int (*xfrm6_udp_encap_rcv)(struct sock *, struct sk_buff *); - struct sk_buff * (*xfrm6_gro_udp_encap_rcv)(struct sock *, struct list_head *, struct sk_buff *); - int (*xfrm6_rcv_encap)(struct sk_buff *, int, __be32, int); - struct neigh_table *nd_tbl; - int (*ipv6_fragment)(struct net *, struct sock *, struct sk_buff *, int (*)(struct net *, struct sock *, struct sk_buff *)); - struct net_device * (*ipv6_dev_find)(struct net *, const struct in6_addr *, struct net_device *); - int (*ip6_xmit)(const struct sock *, struct sk_buff *, struct flowi6 *, __u32, struct ipv6_txoptions *, int, u32); -}; - -struct fib6_result { - struct fib6_nh *nh; - struct fib6_info *f6i; - u32 fib6_flags; - u8 fib6_type; - struct rt6_info *rt6; -}; - -struct fib6_config { - u32 fc_table; - u32 fc_metric; - int fc_dst_len; - int fc_src_len; - int fc_ifindex; - u32 fc_flags; - u32 fc_protocol; - u16 fc_type; - u16 fc_delete_all_nh: 1; - u16 fc_ignore_dev_down: 1; - u16 __unused: 14; - u32 fc_nh_id; - struct in6_addr fc_dst; - struct in6_addr fc_src; - struct in6_addr fc_prefsrc; - struct in6_addr fc_gateway; - long unsigned int fc_expires; - struct nlattr *fc_mx; - int fc_mx_len; - int fc_mp_len; - struct nlattr *fc_mp; - struct nl_info fc_nlinfo; - struct nlattr *fc_encap; - u16 fc_encap_type; - bool fc_is_fdb; -}; - -enum lwtunnel_encap_types { - LWTUNNEL_ENCAP_NONE = 0, - LWTUNNEL_ENCAP_MPLS = 1, - LWTUNNEL_ENCAP_IP = 2, - LWTUNNEL_ENCAP_ILA = 3, - LWTUNNEL_ENCAP_IP6 = 4, - LWTUNNEL_ENCAP_SEG6 = 5, - LWTUNNEL_ENCAP_BPF = 6, - LWTUNNEL_ENCAP_SEG6_LOCAL = 7, - LWTUNNEL_ENCAP_RPL = 8, - LWTUNNEL_ENCAP_IOAM6 = 9, - LWTUNNEL_ENCAP_XFRM = 10, - __LWTUNNEL_ENCAP_MAX = 11, -}; - -struct fib_alias { - struct hlist_node fa_list; - struct fib_info *fa_info; - dscp_t fa_dscp; - u8 fa_type; - u8 fa_state; - u8 fa_slen; - u32 tb_id; - s16 fa_default; - u8 offload; - u8 trap; - u8 offload_failed; - struct callback_head rcu; -}; - -struct fib_prop { - int error; - u8 scope; -}; - -struct udp_hslot; - -struct udp_table { - struct udp_hslot *hash; - struct udp_hslot *hash2; - unsigned int mask; - unsigned int log; -}; - -struct udp_hslot { - struct hlist_head head; - int count; - spinlock_t lock; -}; - -enum netevent_notif_type { - NETEVENT_NEIGH_UPDATE = 1, - NETEVENT_REDIRECT = 2, - NETEVENT_DELAY_PROBE_TIME_UPDATE = 3, - NETEVENT_IPV4_MPATH_HASH_UPDATE = 4, - NETEVENT_IPV6_MPATH_HASH_UPDATE = 5, - NETEVENT_IPV4_FWD_UPDATE_PRIORITY_UPDATE = 6, -}; - -struct rtentry { - long unsigned int rt_pad1; - struct sockaddr rt_dst; - struct sockaddr rt_gateway; - struct sockaddr rt_genmask; - short unsigned int rt_flags; - short int rt_pad2; - long unsigned int rt_pad3; - void *rt_pad4; - short int rt_metric; - char *rt_dev; - long unsigned int rt_mtu; - long unsigned int rt_window; - short unsigned int rt_irtt; -}; - -enum { - Root_NFS = 255, - Root_CIFS = 254, - Root_Generic = 253, - Root_RAM0 = 1048576, -}; - -struct ic_device { - struct ic_device *next; - struct net_device *dev; - short unsigned int flags; - short int able; - __be32 xid; -}; - -struct bootp_pkt { - struct iphdr iph; - struct udphdr udph; - u8 op; - u8 htype; - u8 hlen; - u8 hops; - __be32 xid; - __be16 secs; - __be16 flags; - __be32 client_ip; - __be32 your_ip; - __be32 server_ip; - __be32 relay_ip; - u8 hw_addr[16]; - u8 serv_name[64]; - u8 boot_file[128]; - u8 exten[312]; -}; - -enum nf_hook_ops_type { - NF_HOOK_OP_UNDEFINED = 0, - NF_HOOK_OP_NF_TABLES = 1, - NF_HOOK_OP_BPF = 2, -}; - -struct nf_hook_ops { - nf_hookfn *hook; - struct net_device *dev; - void *priv; - u8 pf; - enum nf_hook_ops_type hook_ops_type: 8; - unsigned int hooknum; - int priority; -}; - -enum nf_ip_hook_priorities { - NF_IP_PRI_FIRST = -2147483648, - NF_IP_PRI_RAW_BEFORE_DEFRAG = -450, - NF_IP_PRI_CONNTRACK_DEFRAG = -400, - NF_IP_PRI_RAW = -300, - NF_IP_PRI_SELINUX_FIRST = -225, - NF_IP_PRI_CONNTRACK = -200, - NF_IP_PRI_MANGLE = -150, - NF_IP_PRI_NAT_DST = -100, - NF_IP_PRI_FILTER = 0, - NF_IP_PRI_SECURITY = 50, - NF_IP_PRI_NAT_SRC = 100, - NF_IP_PRI_SELINUX_LAST = 225, - NF_IP_PRI_CONNTRACK_HELPER = 300, - NF_IP_PRI_CONNTRACK_CONFIRM = 2147483647, - NF_IP_PRI_LAST = 2147483647, -}; - -struct xt_counters { - __u64 pcnt; - __u64 bcnt; -}; - -struct xt_table_info; - -struct xt_table { - struct list_head list; - unsigned int valid_hooks; - struct xt_table_info *private; - struct nf_hook_ops *ops; - struct module *me; - u_int8_t af; - int priority; - const char name[32]; -}; - -struct xt_table_info { - unsigned int size; - unsigned int number; - unsigned int initial_entries; - unsigned int hook_entry[5]; - unsigned int underflow[5]; - unsigned int stacksize; - void ***jumpstack; - unsigned char entries[0]; -}; - -struct ipt_ip { - struct in_addr src; - struct in_addr dst; - struct in_addr smsk; - struct in_addr dmsk; - char iniface[16]; - char outiface[16]; - unsigned char iniface_mask[16]; - unsigned char outiface_mask[16]; - __u16 proto; - __u8 flags; - __u8 invflags; -}; - -struct ipt_entry { - struct ipt_ip ip; - unsigned int nfcache; - __u16 target_offset; - __u16 next_offset; - unsigned int comefrom; - struct xt_counters counters; - unsigned char elems[0]; -}; - -struct ipt_replace { - char name[32]; - unsigned int valid_hooks; - unsigned int num_entries; - unsigned int size; - unsigned int hook_entry[5]; - unsigned int underflow[5]; - unsigned int num_counters; - struct xt_counters *counters; - struct ipt_entry entries[0]; -}; - -struct iptable_nat_pernet { - struct nf_hook_ops *nf_nat_ops; -}; - -enum sock_type { - SOCK_STREAM = 1, - SOCK_DGRAM = 2, - SOCK_RAW = 3, - SOCK_RDM = 4, - SOCK_SEQPACKET = 5, - SOCK_DCCP = 6, - SOCK_PACKET = 10, -}; - -struct nat_keepalive { - struct net *net; - u16 family; - xfrm_address_t saddr; - xfrm_address_t daddr; - __be16 encap_sport; - __be16 encap_dport; - __u32 smark; -}; - -struct nat_keepalive_work_ctx { - time64_t next_run; - time64_t now; -}; - -enum { - ICMP6_MIB_NUM = 0, - ICMP6_MIB_INMSGS = 1, - ICMP6_MIB_INERRORS = 2, - ICMP6_MIB_OUTMSGS = 3, - ICMP6_MIB_OUTERRORS = 4, - ICMP6_MIB_CSUMERRORS = 5, - ICMP6_MIB_RATELIMITHOST = 6, - __ICMP6_MIB_MAX = 7, -}; - -struct icmpv6_echo { - __be16 identifier; - __be16 sequence; -}; - -struct icmpv6_nd_advt { - __u32 reserved: 5; - __u32 override: 1; - __u32 solicited: 1; - __u32 router: 1; - __u32 reserved2: 24; -}; - -struct icmpv6_nd_ra { - __u8 hop_limit; - __u8 reserved: 3; - __u8 router_pref: 2; - __u8 home_agent: 1; - __u8 other: 1; - __u8 managed: 1; - __be16 rt_lifetime; -}; - -struct icmp6hdr { - __u8 icmp6_type; - __u8 icmp6_code; - __sum16 icmp6_cksum; - union { - __be32 un_data32[1]; - __be16 un_data16[2]; - __u8 un_data8[4]; - struct icmpv6_echo u_echo; - struct icmpv6_nd_advt u_nd_advt; - struct icmpv6_nd_ra u_nd_ra; - } icmp6_dataun; -}; - -struct netdev_notifier_change_info { - struct netdev_notifier_info info; - unsigned int flags_changed; -}; - -enum { - RTM_BASE = 16, - RTM_NEWLINK = 16, - RTM_DELLINK = 17, - RTM_GETLINK = 18, - RTM_SETLINK = 19, - RTM_NEWADDR = 20, - RTM_DELADDR = 21, - RTM_GETADDR = 22, - RTM_NEWROUTE = 24, - RTM_DELROUTE = 25, - RTM_GETROUTE = 26, - RTM_NEWNEIGH = 28, - RTM_DELNEIGH = 29, - RTM_GETNEIGH = 30, - RTM_NEWRULE = 32, - RTM_DELRULE = 33, - RTM_GETRULE = 34, - RTM_NEWQDISC = 36, - RTM_DELQDISC = 37, - RTM_GETQDISC = 38, - RTM_NEWTCLASS = 40, - RTM_DELTCLASS = 41, - RTM_GETTCLASS = 42, - RTM_NEWTFILTER = 44, - RTM_DELTFILTER = 45, - RTM_GETTFILTER = 46, - RTM_NEWACTION = 48, - RTM_DELACTION = 49, - RTM_GETACTION = 50, - RTM_NEWPREFIX = 52, - RTM_GETMULTICAST = 58, - RTM_GETANYCAST = 62, - RTM_NEWNEIGHTBL = 64, - RTM_GETNEIGHTBL = 66, - RTM_SETNEIGHTBL = 67, - RTM_NEWNDUSEROPT = 68, - RTM_NEWADDRLABEL = 72, - RTM_DELADDRLABEL = 73, - RTM_GETADDRLABEL = 74, - RTM_GETDCB = 78, - RTM_SETDCB = 79, - RTM_NEWNETCONF = 80, - RTM_DELNETCONF = 81, - RTM_GETNETCONF = 82, - RTM_NEWMDB = 84, - RTM_DELMDB = 85, - RTM_GETMDB = 86, - RTM_NEWNSID = 88, - RTM_DELNSID = 89, - RTM_GETNSID = 90, - RTM_NEWSTATS = 92, - RTM_GETSTATS = 94, - RTM_SETSTATS = 95, - RTM_NEWCACHEREPORT = 96, - RTM_NEWCHAIN = 100, - RTM_DELCHAIN = 101, - RTM_GETCHAIN = 102, - RTM_NEWNEXTHOP = 104, - RTM_DELNEXTHOP = 105, - RTM_GETNEXTHOP = 106, - RTM_NEWLINKPROP = 108, - RTM_DELLINKPROP = 109, - RTM_GETLINKPROP = 110, - RTM_NEWVLAN = 112, - RTM_DELVLAN = 113, - RTM_GETVLAN = 114, - RTM_NEWNEXTHOPBUCKET = 116, - RTM_DELNEXTHOPBUCKET = 117, - RTM_GETNEXTHOPBUCKET = 118, - RTM_NEWTUNNEL = 120, - RTM_DELTUNNEL = 121, - RTM_GETTUNNEL = 122, - __RTM_MAX = 123, -}; - -struct nduseroptmsg { - unsigned char nduseropt_family; - unsigned char nduseropt_pad1; - short unsigned int nduseropt_opts_len; - int nduseropt_ifindex; - __u8 nduseropt_icmp_type; - __u8 nduseropt_icmp_code; - short unsigned int nduseropt_pad2; - unsigned int nduseropt_pad3; -}; - -enum { - NDUSEROPT_UNSPEC = 0, - NDUSEROPT_SRCADDR = 1, - __NDUSEROPT_MAX = 2, -}; - -enum { - NEIGH_ARP_TABLE = 0, - NEIGH_ND_TABLE = 1, - NEIGH_DN_TABLE = 2, - NEIGH_NR_TABLES = 3, - NEIGH_LINK_TABLE = 3, -}; - -struct neighbour_cb { - long unsigned int sched_next; - unsigned int flags; -}; - -struct nd_msg { - struct icmp6hdr icmph; - struct in6_addr target; - __u8 opt[0]; -}; - -struct rs_msg { - struct icmp6hdr icmph; - __u8 opt[0]; -}; - -struct ra_msg { - struct icmp6hdr icmph; - __be32 reachable_time; - __be32 retrans_timer; -}; - -struct rd_msg { - struct icmp6hdr icmph; - struct in6_addr target; - struct in6_addr dest; - __u8 opt[0]; -}; - -struct ioam6_trace_hdr { - __be16 namespace_id; - char: 2; - __u8 overflow: 1; - __u8 nodelen: 5; - __u8 remlen: 7; - union { - __be32 type_be32; - struct { - __u32 bit7: 1; - __u32 bit6: 1; - __u32 bit5: 1; - __u32 bit4: 1; - __u32 bit3: 1; - __u32 bit2: 1; - __u32 bit1: 1; - __u32 bit0: 1; - __u32 bit15: 1; - __u32 bit14: 1; - __u32 bit13: 1; - __u32 bit12: 1; - __u32 bit11: 1; - __u32 bit10: 1; - __u32 bit9: 1; - __u32 bit8: 1; - __u32 bit23: 1; - __u32 bit22: 1; - __u32 bit21: 1; - __u32 bit20: 1; - __u32 bit19: 1; - __u32 bit18: 1; - __u32 bit17: 1; - __u32 bit16: 1; - } type; - }; - __u8 data[0]; -}; - -enum { - IOAM6_ATTR_UNSPEC = 0, - IOAM6_ATTR_NS_ID = 1, - IOAM6_ATTR_NS_DATA = 2, - IOAM6_ATTR_NS_DATA_WIDE = 3, - IOAM6_ATTR_SC_ID = 4, - IOAM6_ATTR_SC_DATA = 5, - IOAM6_ATTR_SC_NONE = 6, - IOAM6_ATTR_PAD = 7, - __IOAM6_ATTR_MAX = 8, -}; - -enum { - IOAM6_CMD_UNSPEC = 0, - IOAM6_CMD_ADD_NAMESPACE = 1, - IOAM6_CMD_DEL_NAMESPACE = 2, - IOAM6_CMD_DUMP_NAMESPACES = 3, - IOAM6_CMD_ADD_SCHEMA = 4, - IOAM6_CMD_DEL_SCHEMA = 5, - IOAM6_CMD_DUMP_SCHEMAS = 6, - IOAM6_CMD_NS_SET_SCHEMA = 7, - __IOAM6_CMD_MAX = 8, -}; - -enum ioam6_event_type { - IOAM6_EVENT_UNSPEC = 0, - IOAM6_EVENT_TRACE = 1, -}; - -enum ioam6_event_attr { - IOAM6_EVENT_ATTR_UNSPEC = 0, - IOAM6_EVENT_ATTR_TRACE_NAMESPACE = 1, - IOAM6_EVENT_ATTR_TRACE_NODELEN = 2, - IOAM6_EVENT_ATTR_TRACE_TYPE = 3, - IOAM6_EVENT_ATTR_TRACE_DATA = 4, - __IOAM6_EVENT_ATTR_MAX = 5, -}; - -struct __una_u32 { - u32 x; -}; - -struct rhashtable_walker { - struct list_head list; - struct bucket_table *tbl; -}; - -struct rhashtable_iter { - struct rhashtable *ht; - struct rhash_head *p; - struct rhlist_head *list; - struct rhashtable_walker walker; - unsigned int slot; - unsigned int skip; - bool end_of_table; -}; - -struct ioam6_pernet_data { - struct mutex lock; - struct rhashtable namespaces; - struct rhashtable schemas; -}; - -enum skb_tstamp_type { - SKB_CLOCK_REALTIME = 0, - SKB_CLOCK_MONOTONIC = 1, - SKB_CLOCK_TAI = 2, - __SKB_CLOCK_MAX = 2, -}; - -typedef int (*netlink_filter_fn)(struct sock *, struct sk_buff *, void *); - -enum genl_validate_flags { - GENL_DONT_VALIDATE_STRICT = 1, - GENL_DONT_VALIDATE_DUMP = 2, - GENL_DONT_VALIDATE_DUMP_STRICT = 4, -}; - -struct ioam6_schema; - -struct ioam6_namespace { - struct rhash_head head; - struct callback_head rcu; - struct ioam6_schema *schema; - __be16 id; - __be32 data; - __be64 data_wide; -}; - -struct ioam6_schema { - struct rhash_head head; - struct callback_head rcu; - struct ioam6_namespace *ns; - u32 id; - int len; - __be32 hdr; - u8 data[0]; -}; - -enum { - CRYPTO_AUTHENC_KEYA_UNSPEC = 0, - CRYPTO_AUTHENC_KEYA_PARAM = 1, -}; - -struct crypto_authenc_key_param { - __be32 enckeylen; -}; - -enum { - LINUX_MIB_XFRMNUM = 0, - LINUX_MIB_XFRMINERROR = 1, - LINUX_MIB_XFRMINBUFFERERROR = 2, - LINUX_MIB_XFRMINHDRERROR = 3, - LINUX_MIB_XFRMINNOSTATES = 4, - LINUX_MIB_XFRMINSTATEPROTOERROR = 5, - LINUX_MIB_XFRMINSTATEMODEERROR = 6, - LINUX_MIB_XFRMINSTATESEQERROR = 7, - LINUX_MIB_XFRMINSTATEEXPIRED = 8, - LINUX_MIB_XFRMINSTATEMISMATCH = 9, - LINUX_MIB_XFRMINSTATEINVALID = 10, - LINUX_MIB_XFRMINTMPLMISMATCH = 11, - LINUX_MIB_XFRMINNOPOLS = 12, - LINUX_MIB_XFRMINPOLBLOCK = 13, - LINUX_MIB_XFRMINPOLERROR = 14, - LINUX_MIB_XFRMOUTERROR = 15, - LINUX_MIB_XFRMOUTBUNDLEGENERROR = 16, - LINUX_MIB_XFRMOUTBUNDLECHECKERROR = 17, - LINUX_MIB_XFRMOUTNOSTATES = 18, - LINUX_MIB_XFRMOUTSTATEPROTOERROR = 19, - LINUX_MIB_XFRMOUTSTATEMODEERROR = 20, - LINUX_MIB_XFRMOUTSTATESEQERROR = 21, - LINUX_MIB_XFRMOUTSTATEEXPIRED = 22, - LINUX_MIB_XFRMOUTPOLBLOCK = 23, - LINUX_MIB_XFRMOUTPOLDEAD = 24, - LINUX_MIB_XFRMOUTPOLERROR = 25, - LINUX_MIB_XFRMFWDHDRERROR = 26, - LINUX_MIB_XFRMOUTSTATEINVALID = 27, - LINUX_MIB_XFRMACQUIREERROR = 28, - LINUX_MIB_XFRMOUTSTATEDIRERROR = 29, - LINUX_MIB_XFRMINSTATEDIRERROR = 30, - __LINUX_MIB_XFRMMAX = 31, -}; - -struct sk_psock_progs { - struct bpf_prog *msg_parser; - struct bpf_prog *stream_parser; - struct bpf_prog *stream_verdict; - struct bpf_prog *skb_verdict; - struct bpf_link *msg_parser_link; - struct bpf_link *stream_parser_link; - struct bpf_link *stream_verdict_link; - struct bpf_link *skb_verdict_link; -}; - -struct sk_psock_work_state { - u32 len; - u32 off; -}; - -struct sk_msg; - -struct sk_psock { - struct sock *sk; - struct sock *sk_redir; - u32 apply_bytes; - u32 cork_bytes; - u32 eval; - bool redir_ingress; - struct sk_msg *cork; - struct sk_psock_progs progs; - struct sk_buff_head ingress_skb; - struct list_head ingress_msg; - spinlock_t ingress_lock; - long unsigned int state; - struct list_head link; - spinlock_t link_lock; - refcount_t refcnt; - void (*saved_unhash)(struct sock *); - void (*saved_destroy)(struct sock *); - void (*saved_close)(struct sock *, long int); - void (*saved_write_space)(struct sock *); - void (*saved_data_ready)(struct sock *); - int (*psock_update_sk_prot)(struct sock *, struct sk_psock *, bool); - struct proto *sk_proto; - struct mutex work_mutex; - struct sk_psock_work_state work_state; - struct delayed_work work; - struct sock *sk_pair; - struct rcu_work rwork; -}; - -struct sadb_alg { - __u8 sadb_alg_id; - __u8 sadb_alg_ivlen; - __u16 sadb_alg_minbits; - __u16 sadb_alg_maxbits; - __u16 sadb_alg_reserved; -}; - -struct xfrm_dst { - union { - struct dst_entry dst; - struct rtable rt; - struct rt6_info rt6; - } u; - struct dst_entry *route; - struct dst_entry *child; - struct dst_entry *path; - struct xfrm_policy *pols[2]; - int num_pols; - int num_xfrms; - u32 xfrm_genid; - u32 policy_genid; - u32 route_mtu_cached; - u32 child_mtu_cached; - u32 route_cookie; - u32 path_cookie; -}; - -struct ip_tunnel; - -struct ip6_tnl; - -struct xfrm_tunnel_skb_cb { - union { - struct inet_skb_parm h4; - struct inet6_skb_parm h6; - } header; - union { - struct ip_tunnel *ip4; - struct ip6_tnl *ip6; - } tunnel; -}; - -struct xfrm_skb_cb { - struct xfrm_tunnel_skb_cb header; - union { - struct { - __u32 low; - __u32 hi; - } output; - struct { - __be32 low; - __be32 hi; - } input; - } seq; -}; - -struct xfrm_offload { - struct { - __u32 low; - __u32 hi; - } seq; - __u32 flags; - __u32 status; - __u32 orig_mac_len; - __u8 proto; - __u8 inner_ipproto; -}; - -struct sec_path { - int len; - int olen; - int verified_cnt; - struct xfrm_state *xvec[6]; - struct xfrm_offload ovec[1]; -}; - -struct xfrm_algo_aead_info { - char *geniv; - u16 icv_truncbits; -}; - -struct xfrm_algo_auth_info { - u16 icv_truncbits; - u16 icv_fullbits; -}; - -struct xfrm_algo_encr_info { - char *geniv; - u16 blockbits; - u16 defkeybits; -}; - -struct xfrm_algo_comp_info { - u16 threshold; -}; - -struct xfrm_algo_desc { - char *name; - char *compat; - u8 available: 1; - u8 pfkey_supported: 1; - union { - struct xfrm_algo_aead_info aead; - struct xfrm_algo_auth_info auth; - struct xfrm_algo_encr_info encr; - struct xfrm_algo_comp_info comp; - } uinfo; - struct sadb_alg desc; -}; - -struct xfrm6_protocol { - int (*handler)(struct sk_buff *); - int (*input_handler)(struct sk_buff *, int, __be32, int); - int (*cb_handler)(struct sk_buff *, int); - int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); - struct xfrm6_protocol *next; - int priority; -}; - -struct esp_info { - struct ip_esp_hdr *esph; - __be64 seqno; - int tfclen; - int tailen; - int plen; - int clen; - int len; - int nfrags; - __u8 proto; - bool inplace; -}; - -struct sk_msg_sg { - u32 start; - u32 curr; - u32 end; - u32 size; - u32 copybreak; - long unsigned int copy[1]; - struct scatterlist data[19]; -}; - -struct sk_msg { - struct sk_msg_sg sg; - void *data; - void *data_end; - u32 apply_bytes; - u32 cork_bytes; - u32 flags; - struct sk_buff *skb; - struct sock *sk_redir; - struct sock *sk; - struct list_head list; -}; - -struct esp_skb_cb { - struct xfrm_skb_cb xfrm; - void *tmp; -}; - -struct esp_output_extra { - __be32 seqhi; - u32 esphoff; -}; - -enum nft_fib_attributes { - NFTA_FIB_UNSPEC = 0, - NFTA_FIB_DREG = 1, - NFTA_FIB_RESULT = 2, - NFTA_FIB_FLAGS = 3, - __NFTA_FIB_MAX = 4, -}; - -enum nft_fib_result { - NFT_FIB_RESULT_UNSPEC = 0, - NFT_FIB_RESULT_OIF = 1, - NFT_FIB_RESULT_OIFNAME = 2, - NFT_FIB_RESULT_ADDRTYPE = 3, - __NFT_FIB_RESULT_MAX = 4, -}; - -enum nft_fib_flags { - NFTA_FIB_F_SADDR = 1, - NFTA_FIB_F_DADDR = 2, - NFTA_FIB_F_MARK = 4, - NFTA_FIB_F_IIF = 8, - NFTA_FIB_F_OIF = 16, - NFTA_FIB_F_PRESENT = 32, -}; - -struct nft_fib { - u8 dreg; - u8 result; - u32 flags; -}; - -enum switchdev_attr_id { - SWITCHDEV_ATTR_ID_UNDEFINED = 0, - SWITCHDEV_ATTR_ID_PORT_STP_STATE = 1, - SWITCHDEV_ATTR_ID_PORT_MST_STATE = 2, - SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS = 3, - SWITCHDEV_ATTR_ID_PORT_PRE_BRIDGE_FLAGS = 4, - SWITCHDEV_ATTR_ID_PORT_MROUTER = 5, - SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME = 6, - SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING = 7, - SWITCHDEV_ATTR_ID_BRIDGE_VLAN_PROTOCOL = 8, - SWITCHDEV_ATTR_ID_BRIDGE_MC_DISABLED = 9, - SWITCHDEV_ATTR_ID_BRIDGE_MROUTER = 10, - SWITCHDEV_ATTR_ID_BRIDGE_MST = 11, - SWITCHDEV_ATTR_ID_MRP_PORT_ROLE = 12, - SWITCHDEV_ATTR_ID_VLAN_MSTI = 13, -}; - -struct switchdev_mst_state { - u16 msti; - u8 state; -}; - -struct switchdev_brport_flags { - long unsigned int val; - long unsigned int mask; -}; - -struct switchdev_vlan_msti { - u16 vid; - u16 msti; -}; - -struct switchdev_attr { - struct net_device *orig_dev; - enum switchdev_attr_id id; - u32 flags; - void *complete_priv; - void (*complete)(struct net_device *, int, void *); - union { - u8 stp_state; - struct switchdev_mst_state mst_state; - struct switchdev_brport_flags brport_flags; - bool mrouter; - clock_t ageing_time; - bool vlan_filtering; - u16 vlan_protocol; - bool mst; - bool mc_disabled; - u8 mrp_port_role; - struct switchdev_vlan_msti vlan_msti; - } u; -}; - -struct bridge_stp_xstats { - __u64 transition_blk; - __u64 transition_fwd; - __u64 rx_bpdu; - __u64 tx_bpdu; - __u64 rx_tcn; - __u64 tx_tcn; -}; - -struct br_mcast_stats { - __u64 igmp_v1queries[2]; - __u64 igmp_v2queries[2]; - __u64 igmp_v3queries[2]; - __u64 igmp_leaves[2]; - __u64 igmp_v1reports[2]; - __u64 igmp_v2reports[2]; - __u64 igmp_v3reports[2]; - __u64 igmp_parse_errors; - __u64 mld_v1queries[2]; - __u64 mld_v2queries[2]; - __u64 mld_leaves[2]; - __u64 mld_v1reports[2]; - __u64 mld_v2reports[2]; - __u64 mld_parse_errors; - __u64 mcast_bytes[2]; - __u64 mcast_packets[2]; -}; - -struct br_ip { - union { - __be32 ip4; - struct in6_addr ip6; - } src; - union { - __be32 ip4; - struct in6_addr ip6; - unsigned char mac_addr[6]; - } dst; - __be16 proto; - __u16 vid; -}; - -struct bridge_id { - unsigned char prio[2]; - unsigned char addr[6]; -}; - -typedef struct bridge_id bridge_id; - -typedef __u16 port_id; - -struct bridge_mcast_own_query { - struct timer_list timer; - u32 startup_sent; -}; - -struct bridge_mcast_other_query { - struct timer_list timer; - struct timer_list delay_timer; -}; - -struct bridge_mcast_querier { - struct br_ip addr; - int port_ifidx; - seqcount_spinlock_t seq; -}; - -struct bridge_mcast_stats { - struct br_mcast_stats mstats; - struct u64_stats_sync syncp; -}; - -struct net_bridge; - -struct net_bridge_vlan; - -struct net_bridge_mcast { - struct net_bridge *br; - struct net_bridge_vlan *vlan; - u32 multicast_last_member_count; - u32 multicast_startup_query_count; - u8 multicast_querier; - u8 multicast_igmp_version; - u8 multicast_router; - u8 multicast_mld_version; - long unsigned int multicast_last_member_interval; - long unsigned int multicast_membership_interval; - long unsigned int multicast_querier_interval; - long unsigned int multicast_query_interval; - long unsigned int multicast_query_response_interval; - long unsigned int multicast_startup_query_interval; - struct hlist_head ip4_mc_router_list; - struct timer_list ip4_mc_router_timer; - struct bridge_mcast_other_query ip4_other_query; - struct bridge_mcast_own_query ip4_own_query; - struct bridge_mcast_querier ip4_querier; - struct hlist_head ip6_mc_router_list; - struct timer_list ip6_mc_router_timer; - struct bridge_mcast_other_query ip6_other_query; - struct bridge_mcast_own_query ip6_own_query; - struct bridge_mcast_querier ip6_querier; -}; - -struct net_bridge_vlan_group; - -struct net_bridge { - spinlock_t lock; - spinlock_t hash_lock; - struct hlist_head frame_type_list; - struct net_device *dev; - long unsigned int options; - __be16 vlan_proto; - u16 default_pvid; - struct net_bridge_vlan_group *vlgrp; - struct rhashtable fdb_hash_tbl; - struct list_head port_list; - union { - struct rtable fake_rtable; - struct rt6_info fake_rt6_info; - }; - u32 metrics[17]; - u16 group_fwd_mask; - u16 group_fwd_mask_required; - bridge_id designated_root; - bridge_id bridge_id; - unsigned char topology_change; - unsigned char topology_change_detected; - u16 root_port; - long unsigned int max_age; - long unsigned int hello_time; - long unsigned int forward_delay; - long unsigned int ageing_time; - long unsigned int bridge_max_age; - long unsigned int bridge_hello_time; - long unsigned int bridge_forward_delay; - long unsigned int bridge_ageing_time; - u32 root_path_cost; - u8 group_addr[6]; - enum { - BR_NO_STP = 0, - BR_KERNEL_STP = 1, - BR_USER_STP = 2, - } stp_enabled; - struct net_bridge_mcast multicast_ctx; - struct bridge_mcast_stats *mcast_stats; - u32 hash_max; - spinlock_t multicast_lock; - struct rhashtable mdb_hash_tbl; - struct rhashtable sg_port_tbl; - struct hlist_head mcast_gc_list; - struct hlist_head mdb_list; - struct work_struct mcast_gc_work; - struct timer_list hello_timer; - struct timer_list tcn_timer; - struct timer_list topology_change_timer; - struct delayed_work gc_work; - struct kobject *ifobj; - u32 auto_cnt; - atomic_t fdb_n_learned; - u32 fdb_max_learned; - int last_hwdom; - long unsigned int busy_hwdoms; - struct hlist_head fdb_list; -}; - -struct net_bridge_port; - -struct net_bridge_mcast_port { - struct net_bridge_port *port; - struct net_bridge_vlan *vlan; - struct bridge_mcast_own_query ip4_own_query; - struct timer_list ip4_mc_router_timer; - struct hlist_node ip4_rlist; - struct bridge_mcast_own_query ip6_own_query; - struct timer_list ip6_mc_router_timer; - struct hlist_node ip6_rlist; - unsigned char multicast_router; - u32 mdb_n_entries; - u32 mdb_max_entries; -}; - -struct net_bridge_port { - struct net_bridge *br; - struct net_device *dev; - netdevice_tracker dev_tracker; - struct list_head list; - long unsigned int flags; - struct net_bridge_vlan_group *vlgrp; - struct net_bridge_port *backup_port; - u32 backup_nhid; - u8 priority; - u8 state; - u16 port_no; - unsigned char topology_change_ack; - unsigned char config_pending; - port_id port_id; - port_id designated_port; - bridge_id designated_root; - bridge_id designated_bridge; - u32 path_cost; - u32 designated_cost; - long unsigned int designated_age; - struct timer_list forward_delay_timer; - struct timer_list hold_timer; - struct timer_list message_age_timer; - struct kobject kobj; - struct callback_head rcu; - struct net_bridge_mcast_port multicast_ctx; - struct bridge_mcast_stats *mcast_stats; - u32 multicast_eht_hosts_limit; - u32 multicast_eht_hosts_cnt; - struct hlist_head mglist; - char sysfs_name[16]; - int hwdom; - int offload_count; - struct netdev_phys_item_id ppid; - u16 group_fwd_mask; - u16 backup_redirected_cnt; - struct bridge_stp_xstats stp_xstats; -}; - -struct metadata_dst; - -struct br_tunnel_info { - __be64 tunnel_id; - struct metadata_dst *tunnel_dst; -}; - -struct net_bridge_vlan { - struct rhash_head vnode; - struct rhash_head tnode; - u16 vid; - u16 flags; - u16 priv_flags; - u8 state; - struct pcpu_sw_netstats *stats; - union { - struct net_bridge *br; - struct net_bridge_port *port; - }; - union { - refcount_t refcnt; - struct net_bridge_vlan *brvlan; - }; - struct br_tunnel_info tinfo; - union { - struct net_bridge_mcast br_mcast_ctx; - struct net_bridge_mcast_port port_mcast_ctx; - }; - u16 msti; - struct list_head vlist; - struct callback_head rcu; -}; - -struct net_bridge_vlan_group { - struct rhashtable vlan_hash; - struct rhashtable tunnel_hash; - struct list_head vlan_list; - u16 num_vlans; - u16 pvid; - u8 pvid_state; -}; - -enum net_bridge_opts { - BROPT_VLAN_ENABLED = 0, - BROPT_VLAN_STATS_ENABLED = 1, - BROPT_NF_CALL_IPTABLES = 2, - BROPT_NF_CALL_IP6TABLES = 3, - BROPT_NF_CALL_ARPTABLES = 4, - BROPT_GROUP_ADDR_SET = 5, - BROPT_MULTICAST_ENABLED = 6, - BROPT_MULTICAST_QUERY_USE_IFADDR = 7, - BROPT_MULTICAST_STATS_ENABLED = 8, - BROPT_HAS_IPV6_ADDR = 9, - BROPT_NEIGH_SUPPRESS_ENABLED = 10, - BROPT_MTU_SET_BY_USER = 11, - BROPT_VLAN_STATS_PER_PORT = 12, - BROPT_NO_LL_LEARN = 13, - BROPT_VLAN_BRIDGE_BINDING = 14, - BROPT_MCAST_VLAN_SNOOPING_ENABLED = 15, - BROPT_MST_ENABLED = 16, -}; - -struct br_config_bpdu { - unsigned int topology_change: 1; - unsigned int topology_change_ack: 1; - bridge_id root; - int root_path_cost; - bridge_id bridge_id; - port_id port_id; - int message_age; - int max_age; - int hello_time; - int forward_delay; -}; - -enum nf_br_hook_priorities { - NF_BR_PRI_FIRST = -2147483648, - NF_BR_PRI_NAT_DST_BRIDGED = -300, - NF_BR_PRI_FILTER_BRIDGED = -200, - NF_BR_PRI_BRNF = 0, - NF_BR_PRI_NAT_DST_OTHER = 100, - NF_BR_PRI_FILTER_OTHER = 200, - NF_BR_PRI_NAT_SRC = 300, - NF_BR_PRI_LAST = 2147483647, -}; - -struct ebt_counter { - __u64 pcnt; - __u64 bcnt; -}; - -struct ebt_entries { - unsigned int distinguisher; - char name[32]; - unsigned int counter_offset; - int policy; - unsigned int nentries; - char data[0]; -}; - -struct ebt_replace_kernel { - char name[32]; - unsigned int valid_hooks; - unsigned int nentries; - unsigned int entries_size; - struct ebt_entries *hook_entry[6]; - unsigned int num_counters; - struct ebt_counter *counters; - char *entries; -}; - -struct ebt_entry { - unsigned int bitmask; - unsigned int invflags; - __be16 ethproto; - char in[16]; - char logical_in[16]; - char out[16]; - char logical_out[16]; - unsigned char sourcemac[6]; - unsigned char sourcemsk[6]; - unsigned char destmac[6]; - unsigned char destmsk[6]; - union { - struct { - unsigned int watchers_offset; - unsigned int target_offset; - unsigned int next_offset; - }; - struct { - unsigned int watchers_offset; - unsigned int target_offset; - unsigned int next_offset; - } offsets; - }; - unsigned char elems[0]; -}; - -struct ebt_chainstack { - struct ebt_entries *chaininfo; - struct ebt_entry *e; - unsigned int n; -}; - -struct ebt_table_info { - unsigned int entries_size; - unsigned int nentries; - struct ebt_entries *hook_entry[6]; - struct ebt_chainstack **chainstack; - char *entries; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct ebt_counter counters[0]; -}; - -struct ebt_table { - struct list_head list; - char name[32]; - struct ebt_replace_kernel *table; - unsigned int valid_hooks; - rwlock_t lock; - struct ebt_table_info *private; - struct nf_hook_ops *ops; - struct module *me; -}; - -struct rpc_cred_cache { - struct hlist_head *hashtable; - unsigned int hashbits; - spinlock_t lock; -}; - -struct rpc_sysfs_xprt { - struct kobject kobject; - struct rpc_xprt *xprt; - struct rpc_xprt_switch *xprt_switch; -}; - -struct rpc_sysfs_xprt_switch { - struct kobject kobject; - struct net *net; - struct rpc_xprt_switch *xprt_switch; - struct rpc_xprt *xprt; -}; - -typedef struct rpc_xprt * (*xprt_switch_find_xprt_t)(struct rpc_xprt_switch *, const struct rpc_xprt *); - -enum { - NETIF_F_SG_BIT = 0, - NETIF_F_IP_CSUM_BIT = 1, - __UNUSED_NETIF_F_1 = 2, - NETIF_F_HW_CSUM_BIT = 3, - NETIF_F_IPV6_CSUM_BIT = 4, - NETIF_F_HIGHDMA_BIT = 5, - NETIF_F_FRAGLIST_BIT = 6, - NETIF_F_HW_VLAN_CTAG_TX_BIT = 7, - NETIF_F_HW_VLAN_CTAG_RX_BIT = 8, - NETIF_F_HW_VLAN_CTAG_FILTER_BIT = 9, - NETIF_F_VLAN_CHALLENGED_BIT = 10, - NETIF_F_GSO_BIT = 11, - __UNUSED_NETIF_F_12 = 12, - __UNUSED_NETIF_F_13 = 13, - NETIF_F_GRO_BIT = 14, - NETIF_F_LRO_BIT = 15, - NETIF_F_GSO_SHIFT = 16, - NETIF_F_TSO_BIT = 16, - NETIF_F_GSO_ROBUST_BIT = 17, - NETIF_F_TSO_ECN_BIT = 18, - NETIF_F_TSO_MANGLEID_BIT = 19, - NETIF_F_TSO6_BIT = 20, - NETIF_F_FSO_BIT = 21, - NETIF_F_GSO_GRE_BIT = 22, - NETIF_F_GSO_GRE_CSUM_BIT = 23, - NETIF_F_GSO_IPXIP4_BIT = 24, - NETIF_F_GSO_IPXIP6_BIT = 25, - NETIF_F_GSO_UDP_TUNNEL_BIT = 26, - NETIF_F_GSO_UDP_TUNNEL_CSUM_BIT = 27, - NETIF_F_GSO_PARTIAL_BIT = 28, - NETIF_F_GSO_TUNNEL_REMCSUM_BIT = 29, - NETIF_F_GSO_SCTP_BIT = 30, - NETIF_F_GSO_ESP_BIT = 31, - NETIF_F_GSO_UDP_BIT = 32, - NETIF_F_GSO_UDP_L4_BIT = 33, - NETIF_F_GSO_FRAGLIST_BIT = 34, - NETIF_F_GSO_LAST = 34, - NETIF_F_FCOE_CRC_BIT = 35, - NETIF_F_SCTP_CRC_BIT = 36, - __UNUSED_NETIF_F_37 = 37, - NETIF_F_NTUPLE_BIT = 38, - NETIF_F_RXHASH_BIT = 39, - NETIF_F_RXCSUM_BIT = 40, - NETIF_F_NOCACHE_COPY_BIT = 41, - NETIF_F_LOOPBACK_BIT = 42, - NETIF_F_RXFCS_BIT = 43, - NETIF_F_RXALL_BIT = 44, - NETIF_F_HW_VLAN_STAG_TX_BIT = 45, - NETIF_F_HW_VLAN_STAG_RX_BIT = 46, - NETIF_F_HW_VLAN_STAG_FILTER_BIT = 47, - NETIF_F_HW_L2FW_DOFFLOAD_BIT = 48, - NETIF_F_HW_TC_BIT = 49, - NETIF_F_HW_ESP_BIT = 50, - NETIF_F_HW_ESP_TX_CSUM_BIT = 51, - NETIF_F_RX_UDP_TUNNEL_PORT_BIT = 52, - NETIF_F_HW_TLS_TX_BIT = 53, - NETIF_F_HW_TLS_RX_BIT = 54, - NETIF_F_GRO_HW_BIT = 55, - NETIF_F_HW_TLS_RECORD_BIT = 56, - NETIF_F_GRO_FRAGLIST_BIT = 57, - NETIF_F_HW_MACSEC_BIT = 58, - NETIF_F_GRO_UDP_FWD_BIT = 59, - NETIF_F_HW_HSR_TAG_INS_BIT = 60, - NETIF_F_HW_HSR_TAG_RM_BIT = 61, - NETIF_F_HW_HSR_FWD_BIT = 62, - NETIF_F_HW_HSR_DUP_BIT = 63, - NETDEV_FEATURE_COUNT = 64, -}; - -struct vlan_group { - unsigned int nr_vlan_devs; - struct hlist_node hlist; - struct net_device **vlan_devices_arrays[16]; -}; - -struct vlan_info { - struct net_device *real_dev; - struct vlan_group grp; - struct list_head vid_list; - unsigned int nr_vids; - bool auto_vid0; - struct callback_head rcu; -}; - -enum vlan_flags { - VLAN_FLAG_REORDER_HDR = 1, - VLAN_FLAG_GVRP = 2, - VLAN_FLAG_LOOSE_BINDING = 4, - VLAN_FLAG_MVRP = 8, - VLAN_FLAG_BRIDGE_BINDING = 16, -}; - -struct vlan_ethhdr { - union { - struct { - unsigned char h_dest[6]; - unsigned char h_source[6]; - }; - struct { - unsigned char h_dest[6]; - unsigned char h_source[6]; - } addrs; - }; - __be16 h_vlan_proto; - __be16 h_vlan_TCI; - __be16 h_vlan_encapsulated_proto; -}; - -struct vlan_pcpu_stats { - u64_stats_t rx_packets; - u64_stats_t rx_bytes; - u64_stats_t rx_multicast; - u64_stats_t tx_packets; - u64_stats_t tx_bytes; - struct u64_stats_sync syncp; - u32 rx_errors; - u32 tx_dropped; -}; - -struct vlan_priority_tci_mapping { - u32 priority; - u16 vlan_qos; - struct vlan_priority_tci_mapping *next; -}; - -struct vlan_dev_priv { - unsigned int nr_ingress_mappings; - u32 ingress_priority_map[8]; - unsigned int nr_egress_mappings; - struct vlan_priority_tci_mapping *egress_priority_map[16]; - __be16 vlan_proto; - u16 vlan_id; - u16 flags; - struct net_device *real_dev; - netdevice_tracker dev_tracker; - unsigned char real_dev_addr[6]; - struct proc_dir_entry *dent; - struct vlan_pcpu_stats *vlan_pcpu_stats; -}; - -struct napi_gro_cb { - union { - struct { - void *frag0; - unsigned int frag0_len; - }; - struct { - struct sk_buff *last; - long unsigned int age; - }; - }; - int data_offset; - u16 flush; - u16 count; - u16 proto; - u16 pad; - union { - struct { - u16 gro_remcsum_start; - u8 same_flow: 1; - u8 encap_mark: 1; - u8 csum_valid: 1; - u8 csum_cnt: 3; - u8 free: 2; - u8 is_ipv6: 1; - u8 is_fou: 1; - u8 ip_fixedid: 1; - u8 recursion_counter: 4; - u8 is_flist: 1; - }; - struct { - u16 gro_remcsum_start; - u8 same_flow: 1; - u8 encap_mark: 1; - u8 csum_valid: 1; - u8 csum_cnt: 3; - u8 free: 2; - u8 is_ipv6: 1; - u8 is_fou: 1; - u8 ip_fixedid: 1; - u8 recursion_counter: 4; - u8 is_flist: 1; - } zeroed; - }; - __wsum csum; - union { - struct { - u16 network_offset; - u16 inner_network_offset; - }; - u16 network_offsets[2]; - }; -}; - -enum vlan_protos { - VLAN_PROTO_8021Q = 0, - VLAN_PROTO_8021AD = 1, - VLAN_PROTO_NUM = 2, -}; - -struct vlan_vid_info { - struct list_head list; - __be16 proto; - u16 vid; - int refcount; -}; - -struct sctp_mib { - long unsigned int mibs[34]; -}; - -struct genradix_root; - -struct __genradix { - struct genradix_root *root; -}; - -typedef __s32 sctp_assoc_t; - -struct sctp_initmsg { - __u16 sinit_num_ostreams; - __u16 sinit_max_instreams; - __u16 sinit_max_attempts; - __u16 sinit_max_init_timeo; -}; - -struct sctp_sndrcvinfo { - __u16 sinfo_stream; - __u16 sinfo_ssn; - __u16 sinfo_flags; - __u32 sinfo_ppid; - __u32 sinfo_context; - __u32 sinfo_timetolive; - __u32 sinfo_tsn; - __u32 sinfo_cumtsn; - sctp_assoc_t sinfo_assoc_id; -}; - -struct sctp_rtoinfo { - sctp_assoc_t srto_assoc_id; - __u32 srto_initial; - __u32 srto_max; - __u32 srto_min; -}; - -struct sctp_assocparams { - sctp_assoc_t sasoc_assoc_id; - __u16 sasoc_asocmaxrxt; - __u16 sasoc_number_peer_destinations; - __u32 sasoc_peer_rwnd; - __u32 sasoc_local_rwnd; - __u32 sasoc_cookie_life; -}; - -struct sctp_paddrparams { - sctp_assoc_t spp_assoc_id; - struct __kernel_sockaddr_storage spp_address; - __u32 spp_hbinterval; - __u16 spp_pathmaxrxt; - __u32 spp_pathmtu; - __u32 spp_sackdelay; - __u32 spp_flags; - __u32 spp_ipv6_flowlabel; - __u8 spp_dscp; - int: 0; -} __attribute__((packed)); - -struct sctphdr { - __be16 source; - __be16 dest; - __be32 vtag; - __le32 checksum; -}; - -struct sctp_chunkhdr { - __u8 type; - __u8 flags; - __be16 length; -}; - -struct sctp_paramhdr { - __be16 type; - __be16 length; -}; - -enum sctp_param { - SCTP_PARAM_HEARTBEAT_INFO = 256, - SCTP_PARAM_IPV4_ADDRESS = 1280, - SCTP_PARAM_IPV6_ADDRESS = 1536, - SCTP_PARAM_STATE_COOKIE = 1792, - SCTP_PARAM_UNRECOGNIZED_PARAMETERS = 2048, - SCTP_PARAM_COOKIE_PRESERVATIVE = 2304, - SCTP_PARAM_HOST_NAME_ADDRESS = 2816, - SCTP_PARAM_SUPPORTED_ADDRESS_TYPES = 3072, - SCTP_PARAM_ECN_CAPABLE = 128, - SCTP_PARAM_RANDOM = 640, - SCTP_PARAM_CHUNKS = 896, - SCTP_PARAM_HMAC_ALGO = 1152, - SCTP_PARAM_SUPPORTED_EXT = 2176, - SCTP_PARAM_FWD_TSN_SUPPORT = 192, - SCTP_PARAM_ADD_IP = 448, - SCTP_PARAM_DEL_IP = 704, - SCTP_PARAM_ERR_CAUSE = 960, - SCTP_PARAM_SET_PRIMARY = 1216, - SCTP_PARAM_SUCCESS_REPORT = 1472, - SCTP_PARAM_ADAPTATION_LAYER_IND = 1728, - SCTP_PARAM_RESET_OUT_REQUEST = 3328, - SCTP_PARAM_RESET_IN_REQUEST = 3584, - SCTP_PARAM_RESET_TSN_REQUEST = 3840, - SCTP_PARAM_RESET_RESPONSE = 4096, - SCTP_PARAM_RESET_ADD_OUT_STREAMS = 4352, - SCTP_PARAM_RESET_ADD_IN_STREAMS = 4608, -}; - -struct sctp_datahdr { - __be32 tsn; - __be16 stream; - __be16 ssn; - __u32 ppid; -}; - -struct sctp_idatahdr { - __be32 tsn; - __be16 stream; - __be16 reserved; - __be32 mid; - union { - __u32 ppid; - __be32 fsn; - }; - __u8 payload[0]; -}; - -struct sctp_inithdr { - __be32 init_tag; - __be32 a_rwnd; - __be16 num_outbound_streams; - __be16 num_inbound_streams; - __be32 initial_tsn; -}; - -struct sctp_ipv4addr_param { - struct sctp_paramhdr param_hdr; - struct in_addr addr; -}; - -struct sctp_ipv6addr_param { - struct sctp_paramhdr param_hdr; - struct in6_addr addr; -}; - -struct sctp_cookie_preserve_param { - struct sctp_paramhdr param_hdr; - __be32 lifespan_increment; -}; - -struct sctp_hostname_param { - struct sctp_paramhdr param_hdr; - uint8_t hostname[0]; -}; - -struct sctp_supported_addrs_param { - struct sctp_paramhdr param_hdr; - __be16 types[0]; -}; - -struct sctp_adaptation_ind_param { - struct sctp_paramhdr param_hdr; - __be32 adaptation_ind; -}; - -struct sctp_supported_ext_param { - struct sctp_paramhdr param_hdr; - __u8 chunks[0]; -}; - -struct sctp_random_param { - struct sctp_paramhdr param_hdr; - __u8 random_val[0]; -}; - -struct sctp_chunks_param { - struct sctp_paramhdr param_hdr; - __u8 chunks[0]; -}; - -struct sctp_hmac_algo_param { - struct sctp_paramhdr param_hdr; - __be16 hmac_ids[0]; -}; - -struct sctp_cookie_param { - struct sctp_paramhdr p; - __u8 body[0]; -}; - -struct sctp_sackhdr { - __be32 cum_tsn_ack; - __be32 a_rwnd; - __be16 num_gap_ack_blocks; - __be16 num_dup_tsns; -}; - -struct sctp_heartbeathdr { - struct sctp_paramhdr info; -}; - -struct sctp_shutdownhdr { - __be32 cum_tsn_ack; -}; - -struct sctp_errhdr { - __be16 cause; - __be16 length; -}; - -struct sctp_ecnehdr { - __be32 lowest_tsn; -}; - -struct sctp_cwrhdr { - __be32 lowest_tsn; -}; - -struct sctp_fwdtsn_hdr { - __be32 new_cum_tsn; -}; - -struct sctp_ifwdtsn_hdr { - __be32 new_cum_tsn; -}; - -struct sctp_addip_param { - struct sctp_paramhdr param_hdr; - __be32 crr_id; -}; - -struct sctp_addiphdr { - __be32 serial; -}; - -struct sctp_authhdr { - __be16 shkey_id; - __be16 hmac_id; -}; - -enum sctp_endpoint_type { - SCTP_EP_TYPE_SOCKET = 0, - SCTP_EP_TYPE_ASSOCIATION = 1, -}; - -struct sctp_chunk; - -struct sctp_inq { - struct list_head in_chunk_list; - struct sctp_chunk *in_progress; - struct work_struct immediate; -}; - -struct sctp_bind_addr { - __u16 port; - struct list_head address_list; -}; - -struct sctp_ep_common { - enum sctp_endpoint_type type; - refcount_t refcnt; - bool dead; - struct sock *sk; - struct net *net; - struct sctp_inq inqueue; - struct sctp_bind_addr bind_addr; -}; - -union sctp_addr { - struct sockaddr_in v4; - struct sockaddr_in6 v6; - struct sockaddr sa; -}; - -struct sctp_cookie { - __u32 my_vtag; - __u32 peer_vtag; - __u32 my_ttag; - __u32 peer_ttag; - ktime_t expiration; - __u16 sinit_num_ostreams; - __u16 sinit_max_instreams; - __u32 initial_tsn; - union sctp_addr peer_addr; - __u16 my_port; - __u8 prsctp_capable; - __u8 padding; - __u32 adaptation_ind; - __u8 auth_random[36]; - __u8 auth_hmacs[10]; - __u8 auth_chunks[20]; - __u32 raw_addr_list_len; -}; - -struct sctp_tsnmap { - long unsigned int *tsn_map; - __u32 base_tsn; - __u32 cumulative_tsn_ack_point; - __u32 max_tsn_seen; - __u16 len; - __u16 pending_data; - __u16 num_dup_tsns; - __be32 dup_tsns[16]; -}; - -struct sctp_inithdr_host { - __u32 init_tag; - __u32 a_rwnd; - __u16 num_outbound_streams; - __u16 num_inbound_streams; - __u32 initial_tsn; -}; - -enum sctp_state { - SCTP_STATE_CLOSED = 0, - SCTP_STATE_COOKIE_WAIT = 1, - SCTP_STATE_COOKIE_ECHOED = 2, - SCTP_STATE_ESTABLISHED = 3, - SCTP_STATE_SHUTDOWN_PENDING = 4, - SCTP_STATE_SHUTDOWN_SENT = 5, - SCTP_STATE_SHUTDOWN_RECEIVED = 6, - SCTP_STATE_SHUTDOWN_ACK_SENT = 7, -}; - -struct sctp_stream_out_ext; - -struct sctp_stream_out { - union { - __u32 mid; - __u16 ssn; - }; - __u32 mid_uo; - struct sctp_stream_out_ext *ext; - __u8 state; -}; - -struct sctp_stream_in { - union { - __u32 mid; - __u16 ssn; - }; - __u32 mid_uo; - __u32 fsn; - __u32 fsn_uo; - char pd_mode; - char pd_mode_uo; -}; - -struct sctp_stream_interleave; - -struct sctp_stream { - struct { - struct __genradix tree; - struct sctp_stream_out type[0]; - } out; - struct { - struct __genradix tree; - struct sctp_stream_in type[0]; - } in; - __u16 outcnt; - __u16 incnt; - struct sctp_stream_out *out_curr; - union { - struct { - struct list_head prio_list; - }; - struct { - struct list_head rr_list; - struct sctp_stream_out_ext *rr_next; - }; - struct { - struct list_head fc_list; - }; - }; - struct sctp_stream_interleave *si; -}; - -struct sctp_association; - -struct sctp_sched_ops; - -struct sctp_outq { - struct sctp_association *asoc; - struct list_head out_chunk_list; - struct sctp_sched_ops *sched; - unsigned int out_qlen; - unsigned int error; - struct list_head control_chunk_list; - struct list_head sacked; - struct list_head retransmit; - struct list_head abandoned; - __u32 outstanding_bytes; - char fast_rtx; - char cork; -}; - -struct sctp_ulpq { - char pd_mode; - struct sctp_association *asoc; - struct sk_buff_head reasm; - struct sk_buff_head reasm_uo; - struct sk_buff_head lobby; -}; - -struct sctp_priv_assoc_stats { - struct __kernel_sockaddr_storage obs_rto_ipaddr; - __u64 max_obs_rto; - __u64 isacks; - __u64 osacks; - __u64 opackets; - __u64 ipackets; - __u64 rtxchunks; - __u64 outofseqtsns; - __u64 idupchunks; - __u64 gapcnt; - __u64 ouodchunks; - __u64 iuodchunks; - __u64 oodchunks; - __u64 iodchunks; - __u64 octrlchunks; - __u64 ictrlchunks; -}; - -struct sctp_endpoint; - -struct sctp_transport; - -struct sctp_auth_bytes; - -struct sctp_shared_key; - -struct sctp_association { - struct sctp_ep_common base; - struct list_head asocs; - sctp_assoc_t assoc_id; - struct sctp_endpoint *ep; - struct sctp_cookie c; - struct { - struct list_head transport_addr_list; - __u32 rwnd; - __u16 transport_count; - __u16 port; - struct sctp_transport *primary_path; - union sctp_addr primary_addr; - struct sctp_transport *active_path; - struct sctp_transport *retran_path; - struct sctp_transport *last_sent_to; - struct sctp_transport *last_data_from; - struct sctp_tsnmap tsn_map; - __be16 addip_disabled_mask; - __u16 ecn_capable: 1; - __u16 ipv4_address: 1; - __u16 ipv6_address: 1; - __u16 asconf_capable: 1; - __u16 prsctp_capable: 1; - __u16 reconf_capable: 1; - __u16 intl_capable: 1; - __u16 auth_capable: 1; - __u16 sack_needed: 1; - __u16 sack_generation: 1; - __u16 zero_window_announced: 1; - __u32 sack_cnt; - __u32 adaptation_ind; - struct sctp_inithdr_host i; - void *cookie; - int cookie_len; - __u32 addip_serial; - struct sctp_random_param *peer_random; - struct sctp_chunks_param *peer_chunks; - struct sctp_hmac_algo_param *peer_hmacs; - } peer; - enum sctp_state state; - int overall_error_count; - ktime_t cookie_life; - long unsigned int rto_initial; - long unsigned int rto_max; - long unsigned int rto_min; - int max_burst; - int max_retrans; - __u16 pf_retrans; - __u16 ps_retrans; - __u16 max_init_attempts; - __u16 init_retries; - long unsigned int max_init_timeo; - long unsigned int hbinterval; - long unsigned int probe_interval; - __be16 encap_port; - __u16 pathmaxrxt; - __u32 flowlabel; - __u8 dscp; - __u8 pmtu_pending; - __u32 pathmtu; - __u32 param_flags; - __u32 sackfreq; - long unsigned int sackdelay; - long unsigned int timeouts[12]; - struct timer_list timers[12]; - struct sctp_transport *shutdown_last_sent_to; - struct sctp_transport *init_last_sent_to; - int shutdown_retries; - __u32 next_tsn; - __u32 ctsn_ack_point; - __u32 adv_peer_ack_point; - __u32 highest_sacked; - __u32 fast_recovery_exit; - __u8 fast_recovery; - __u16 unack_data; - __u32 rtx_data_chunks; - __u32 rwnd; - __u32 a_rwnd; - __u32 rwnd_over; - __u32 rwnd_press; - int sndbuf_used; - atomic_t rmem_alloc; - wait_queue_head_t wait; - __u32 frag_point; - __u32 user_frag; - int init_err_counter; - int init_cycle; - __u16 default_stream; - __u16 default_flags; - __u32 default_ppid; - __u32 default_context; - __u32 default_timetolive; - __u32 default_rcv_context; - struct sctp_stream stream; - struct sctp_outq outqueue; - struct sctp_ulpq ulpq; - __u32 last_ecne_tsn; - __u32 last_cwr_tsn; - int numduptsns; - struct sctp_chunk *addip_last_asconf; - struct list_head asconf_ack_list; - struct list_head addip_chunk_list; - __u32 addip_serial; - int src_out_of_asoc_ok; - union sctp_addr *asconf_addr_del_pending; - struct sctp_transport *new_transport; - struct list_head endpoint_shared_keys; - struct sctp_auth_bytes *asoc_shared_key; - struct sctp_shared_key *shkey; - __u16 default_hmac_id; - __u16 active_key_id; - __u8 need_ecne: 1; - __u8 temp: 1; - __u8 pf_expose: 2; - __u8 force_delay: 1; - __u8 strreset_enable; - __u8 strreset_outstanding; - __u32 strreset_outseq; - __u32 strreset_inseq; - __u32 strreset_result[2]; - struct sctp_chunk *strreset_chunk; - struct sctp_priv_assoc_stats stats; - int sent_cnt_removable; - __u16 subscribe; - __u64 abandoned_unsent[3]; - __u64 abandoned_sent[3]; - u32 secid; - u32 peer_secid; - struct callback_head rcu; -}; - -struct sctp_auth_bytes { - refcount_t refcnt; - __u32 len; - __u8 data[0]; -}; - -struct sctp_shared_key { - struct list_head key_list; - struct sctp_auth_bytes *key; - refcount_t refcnt; - __u16 key_id; - __u8 deactivated; -}; - -enum sctp_scope { - SCTP_SCOPE_GLOBAL = 0, - SCTP_SCOPE_PRIVATE = 1, - SCTP_SCOPE_LINK = 2, - SCTP_SCOPE_LOOPBACK = 3, - SCTP_SCOPE_UNUSABLE = 4, -}; - -enum { - SCTP_SCOPE_POLICY_DISABLE = 0, - SCTP_SCOPE_POLICY_ENABLE = 1, - SCTP_SCOPE_POLICY_PRIVATE = 2, - SCTP_SCOPE_POLICY_LINK = 3, -}; - -struct sctp_ulpevent { - struct sctp_association *asoc; - struct sctp_chunk *chunk; - unsigned int rmem_len; - union { - __u32 mid; - __u16 ssn; - }; - union { - __u32 ppid; - __u32 fsn; - }; - __u32 tsn; - __u32 cumtsn; - __u16 stream; - __u16 flags; - __u16 msg_flags; -} __attribute__((packed)); - -union sctp_addr_param; - -union sctp_params { - void *v; - struct sctp_paramhdr *p; - struct sctp_cookie_preserve_param *life; - struct sctp_hostname_param *dns; - struct sctp_cookie_param *cookie; - struct sctp_supported_addrs_param *sat; - struct sctp_ipv4addr_param *v4; - struct sctp_ipv6addr_param *v6; - union sctp_addr_param *addr; - struct sctp_adaptation_ind_param *aind; - struct sctp_supported_ext_param *ext; - struct sctp_random_param *random; - struct sctp_chunks_param *chunks; - struct sctp_hmac_algo_param *hmac_algo; - struct sctp_addip_param *addip; -}; - -struct sctp_sender_hb_info; - -struct sctp_signed_cookie; - -struct sctp_datamsg; - -struct sctp_chunk { - struct list_head list; - refcount_t refcnt; - int sent_count; - union { - struct list_head transmitted_list; - struct list_head stream_list; - }; - struct list_head frag_list; - struct sk_buff *skb; - union { - struct sk_buff *head_skb; - struct sctp_shared_key *shkey; - }; - union sctp_params param_hdr; - union { - __u8 *v; - struct sctp_datahdr *data_hdr; - struct sctp_inithdr *init_hdr; - struct sctp_sackhdr *sack_hdr; - struct sctp_heartbeathdr *hb_hdr; - struct sctp_sender_hb_info *hbs_hdr; - struct sctp_shutdownhdr *shutdown_hdr; - struct sctp_signed_cookie *cookie_hdr; - struct sctp_ecnehdr *ecne_hdr; - struct sctp_cwrhdr *ecn_cwr_hdr; - struct sctp_errhdr *err_hdr; - struct sctp_addiphdr *addip_hdr; - struct sctp_fwdtsn_hdr *fwdtsn_hdr; - struct sctp_authhdr *auth_hdr; - struct sctp_idatahdr *idata_hdr; - struct sctp_ifwdtsn_hdr *ifwdtsn_hdr; - } subh; - __u8 *chunk_end; - struct sctp_chunkhdr *chunk_hdr; - struct sctphdr *sctp_hdr; - struct sctp_sndrcvinfo sinfo; - struct sctp_association *asoc; - struct sctp_ep_common *rcvr; - long unsigned int sent_at; - union sctp_addr source; - union sctp_addr dest; - struct sctp_datamsg *msg; - struct sctp_transport *transport; - struct sk_buff *auth_chunk; - __u16 rtt_in_progress: 1; - __u16 has_tsn: 1; - __u16 has_ssn: 1; - __u16 singleton: 1; - __u16 end_of_packet: 1; - __u16 ecn_ce_done: 1; - __u16 pdiscard: 1; - __u16 tsn_gap_acked: 1; - __u16 data_accepted: 1; - __u16 auth: 1; - __u16 has_asconf: 1; - __u16 pmtu_probe: 1; - __u16 tsn_missing_report: 2; - __u16 fast_retransmit: 2; -}; - -struct sctp_stream_interleave { - __u16 data_chunk_len; - __u16 ftsn_chunk_len; - struct sctp_chunk * (*make_datafrag)(const struct sctp_association *, const struct sctp_sndrcvinfo *, int, __u8, gfp_t); - void (*assign_number)(struct sctp_chunk *); - bool (*validate_data)(struct sctp_chunk *); - int (*ulpevent_data)(struct sctp_ulpq *, struct sctp_chunk *, gfp_t); - int (*enqueue_event)(struct sctp_ulpq *, struct sctp_ulpevent *); - void (*renege_events)(struct sctp_ulpq *, struct sctp_chunk *, gfp_t); - void (*start_pd)(struct sctp_ulpq *, gfp_t); - void (*abort_pd)(struct sctp_ulpq *, gfp_t); - void (*generate_ftsn)(struct sctp_outq *, __u32); - bool (*validate_ftsn)(struct sctp_chunk *); - void (*report_ftsn)(struct sctp_ulpq *, __u32); - void (*handle_ftsn)(struct sctp_ulpq *, struct sctp_chunk *); -}; - -struct sctp_bind_bucket { - short unsigned int port; - signed char fastreuse; - signed char fastreuseport; - kuid_t fastuid; - struct hlist_node node; - struct hlist_head owner; - struct net *net; -}; - -enum sctp_socket_type { - SCTP_SOCKET_UDP = 0, - SCTP_SOCKET_UDP_HIGH_BANDWIDTH = 1, - SCTP_SOCKET_TCP = 2, -}; - -struct sctp_pf; - -struct sctp_sock { - struct inet_sock inet; - enum sctp_socket_type type; - struct sctp_pf *pf; - struct crypto_shash *hmac; - char *sctp_hmac_alg; - struct sctp_endpoint *ep; - struct sctp_bind_bucket *bind_hash; - __u16 default_stream; - __u32 default_ppid; - __u16 default_flags; - __u32 default_context; - __u32 default_timetolive; - __u32 default_rcv_context; - int max_burst; - __u32 hbinterval; - __u32 probe_interval; - __be16 udp_port; - __be16 encap_port; - __u16 pathmaxrxt; - __u32 flowlabel; - __u8 dscp; - __u16 pf_retrans; - __u16 ps_retrans; - __u32 pathmtu; - __u32 sackdelay; - __u32 sackfreq; - __u32 param_flags; - __u32 default_ss; - struct sctp_rtoinfo rtoinfo; - struct sctp_paddrparams paddrparam; - struct sctp_assocparams assocparams; - __u16 subscribe; - struct sctp_initmsg initmsg; - int user_frag; - __u32 autoclose; - __u32 adaptation_ind; - __u32 pd_point; - __u16 nodelay: 1; - __u16 pf_expose: 2; - __u16 reuse: 1; - __u16 disable_fragments: 1; - __u16 v4mapped: 1; - __u16 frag_interleave: 1; - __u16 recvrcvinfo: 1; - __u16 recvnxtinfo: 1; - __u16 data_ready_signalled: 1; - atomic_t pd_mode; - struct sk_buff_head pd_lobby; - struct list_head auto_asconf_list; - int do_auto_asconf; -}; - -struct sctp_af; - -struct sctp_pf { - void (*event_msgname)(struct sctp_ulpevent *, char *, int *); - void (*skb_msgname)(struct sk_buff *, char *, int *); - int (*af_supported)(sa_family_t, struct sctp_sock *); - int (*cmp_addr)(const union sctp_addr *, const union sctp_addr *, struct sctp_sock *); - int (*bind_verify)(struct sctp_sock *, union sctp_addr *); - int (*send_verify)(struct sctp_sock *, union sctp_addr *); - int (*supported_addrs)(const struct sctp_sock *, __be16 *); - struct sock * (*create_accept_sk)(struct sock *, struct sctp_association *, bool); - int (*addr_to_user)(struct sctp_sock *, union sctp_addr *); - void (*to_sk_saddr)(union sctp_addr *, struct sock *); - void (*to_sk_daddr)(union sctp_addr *, struct sock *); - void (*copy_ip_options)(struct sock *, struct sock *); - struct sctp_af *af; -}; - -struct sctp_endpoint { - struct sctp_ep_common base; - struct hlist_node node; - int hashent; - struct list_head asocs; - __u8 secret_key[32]; - __u8 *digest; - __u32 sndbuf_policy; - __u32 rcvbuf_policy; - struct crypto_shash **auth_hmacs; - struct sctp_hmac_algo_param *auth_hmacs_list; - struct sctp_chunks_param *auth_chunk_list; - struct list_head endpoint_shared_keys; - __u16 active_key_id; - __u8 ecn_enable: 1; - __u8 auth_enable: 1; - __u8 intl_enable: 1; - __u8 prsctp_enable: 1; - __u8 asconf_enable: 1; - __u8 reconf_enable: 1; - __u8 strreset_enable; - struct callback_head rcu; -}; - -struct sctp_signed_cookie { - __u8 signature[32]; - __u32 __pad; - struct sctp_cookie c; -} __attribute__((packed)); - -union sctp_addr_param { - struct sctp_paramhdr p; - struct sctp_ipv4addr_param v4; - struct sctp_ipv6addr_param v6; -}; - -struct sctp_sender_hb_info { - struct sctp_paramhdr param_hdr; - union sctp_addr daddr; - long unsigned int sent_at; - __u64 hb_nonce; - __u32 probe_size; -}; - -struct sctp_af { - int (*sctp_xmit)(struct sk_buff *, struct sctp_transport *); - int (*setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); - int (*getsockopt)(struct sock *, int, int, char *, int *); - void (*get_dst)(struct sctp_transport *, union sctp_addr *, struct flowi *, struct sock *); - void (*get_saddr)(struct sctp_sock *, struct sctp_transport *, struct flowi *); - void (*copy_addrlist)(struct list_head *, struct net_device *); - int (*cmp_addr)(const union sctp_addr *, const union sctp_addr *); - void (*addr_copy)(union sctp_addr *, union sctp_addr *); - void (*from_skb)(union sctp_addr *, struct sk_buff *, int); - void (*from_sk)(union sctp_addr *, struct sock *); - bool (*from_addr_param)(union sctp_addr *, union sctp_addr_param *, __be16, int); - int (*to_addr_param)(const union sctp_addr *, union sctp_addr_param *); - int (*addr_valid)(union sctp_addr *, struct sctp_sock *, const struct sk_buff *); - enum sctp_scope (*scope)(union sctp_addr *); - void (*inaddr_any)(union sctp_addr *, __be16); - int (*is_any)(const union sctp_addr *); - int (*available)(union sctp_addr *, struct sctp_sock *); - int (*skb_iif)(const struct sk_buff *); - int (*skb_sdif)(const struct sk_buff *); - int (*is_ce)(const struct sk_buff *); - void (*seq_dump_addr)(struct seq_file *, union sctp_addr *); - void (*ecn_capable)(struct sock *); - __u16 net_header_len; - int sockaddr_len; - int (*ip_options_len)(struct sock *); - sa_family_t sa_family; - struct list_head list; -}; - -struct sctp_packet { - __u16 source_port; - __u16 destination_port; - __u32 vtag; - struct list_head chunk_list; - size_t overhead; - size_t size; - size_t max_size; - struct sctp_transport *transport; - struct sctp_chunk *auth; - u8 has_cookie_echo: 1; - u8 has_sack: 1; - u8 has_auth: 1; - u8 has_data: 1; - u8 ipfragok: 1; -}; - -struct sctp_transport { - struct list_head transports; - struct rhlist_head node; - refcount_t refcnt; - __u32 dead: 1; - __u32 rto_pending: 1; - __u32 hb_sent: 1; - __u32 pmtu_pending: 1; - __u32 dst_pending_confirm: 1; - __u32 sack_generation: 1; - u32 dst_cookie; - struct flowi fl; - union sctp_addr ipaddr; - struct sctp_af *af_specific; - struct sctp_association *asoc; - long unsigned int rto; - __u32 rtt; - __u32 rttvar; - __u32 srtt; - __u32 cwnd; - __u32 ssthresh; - __u32 partial_bytes_acked; - __u32 flight_size; - __u32 burst_limited; - struct dst_entry *dst; - union sctp_addr saddr; - long unsigned int hbinterval; - long unsigned int probe_interval; - long unsigned int sackdelay; - __u32 sackfreq; - atomic_t mtu_info; - ktime_t last_time_heard; - long unsigned int last_time_sent; - long unsigned int last_time_ecne_reduced; - __be16 encap_port; - __u16 pathmaxrxt; - __u32 flowlabel; - __u8 dscp; - __u16 pf_retrans; - __u16 ps_retrans; - __u32 pathmtu; - __u32 param_flags; - int init_sent_count; - int state; - short unsigned int error_count; - struct timer_list T3_rtx_timer; - struct timer_list hb_timer; - struct timer_list proto_unreach_timer; - struct timer_list reconf_timer; - struct timer_list probe_timer; - struct list_head transmitted; - struct sctp_packet packet; - struct list_head send_ready; - struct { - __u32 next_tsn_at_change; - char changeover_active; - char cycling_changeover; - char cacc_saw_newack; - } cacc; - struct { - __u16 pmtu; - __u16 probe_size; - __u16 probe_high; - __u8 probe_count; - __u8 state; - } pl; - __u64 hb_nonce; - struct callback_head rcu; -}; - -struct sctp_datamsg { - struct list_head chunks; - refcount_t refcnt; - long unsigned int expires_at; - int send_error; - u8 send_failed: 1; - u8 can_delay: 1; - u8 abandoned: 1; -}; - -enum { - SCTP_ADDR_NEW = 0, - SCTP_ADDR_SRC = 1, - SCTP_ADDR_DEL = 2, -}; - -struct sctp_sockaddr_entry { - struct list_head list; - struct callback_head rcu; - union sctp_addr a; - __u8 state; - __u8 valid; -}; - -struct sctp_stream_priorities { - struct list_head prio_sched; - struct list_head active; - struct sctp_stream_out_ext *next; - __u16 prio; - __u16 users; -}; - -struct sctp_stream_out_ext { - __u64 abandoned_unsent[3]; - __u64 abandoned_sent[3]; - struct list_head outq; - union { - struct { - struct list_head prio_list; - struct sctp_stream_priorities *prio_head; - }; - struct { - struct list_head rr_list; - }; - struct { - struct list_head fc_list; - __u32 fc_length; - __u16 fc_weight; - }; - }; -}; - -typedef short unsigned int ushort; - -struct match_token { - int token; - const char *pattern; -}; - -enum { - MAX_OPT_ARGS = 3, -}; - -typedef struct { - char *from; - char *to; -} substring_t; - -struct p9_fcall { - u32 size; - u8 id; - u16 tag; - size_t offset; - size_t capacity; - struct kmem_cache *cache; - u8 *sdata; - bool zc; -}; - -enum p9_req_status_t { - REQ_STATUS_ALLOC = 0, - REQ_STATUS_UNSENT = 1, - REQ_STATUS_SENT = 2, - REQ_STATUS_RCVD = 3, - REQ_STATUS_FLSHD = 4, - REQ_STATUS_ERROR = 5, -}; - -struct p9_req_t { - int status; - int t_err; - refcount_t refcount; - wait_queue_head_t wq; - struct p9_fcall tc; - struct p9_fcall rc; - struct list_head req_list; -}; - -struct p9_trans_module { - struct list_head list; - char *name; - int maxsize; - bool pooled_rbuffers; - int def; - struct module *owner; - int (*create)(struct p9_client *, const char *, char *); - void (*close)(struct p9_client *); - int (*request)(struct p9_client *, struct p9_req_t *); - int (*cancel)(struct p9_client *, struct p9_req_t *); - int (*cancelled)(struct p9_client *, struct p9_req_t *); - int (*zc_request)(struct p9_client *, struct p9_req_t *, struct iov_iter *, struct iov_iter *, int, int, int); - int (*show_options)(struct seq_file *, struct p9_client *); -}; - -struct p9_fd_opts { - int rfd; - int wfd; - u16 port; - bool privport; -}; - -enum { - Opt_port = 0, - Opt_rfdno = 1, - Opt_wfdno = 2, - Opt_err = 3, - Opt_privport = 4, -}; - -enum { - Rworksched = 1, - Rpending = 2, - Wworksched = 4, - Wpending = 8, -}; - -struct p9_conn; - -struct p9_poll_wait { - struct p9_conn *conn; - wait_queue_entry_t wait; - wait_queue_head_t *wait_addr; -}; - -struct p9_conn { - struct list_head mux_list; - struct p9_client *client; - int err; - spinlock_t req_lock; - struct list_head req_list; - struct list_head unsent_req_list; - struct p9_req_t *rreq; - struct p9_req_t *wreq; - char tmp_buf[7]; - struct p9_fcall rc; - int wpos; - int wsize; - char *wbuf; - struct list_head poll_pending_link; - struct p9_poll_wait poll_wait[2]; - poll_table pt; - struct work_struct rq; - struct work_struct wq; - long unsigned int wsched; -}; - -struct p9_trans_fd { - struct file *rd; - struct file *wr; - struct p9_conn conn; -}; - -enum ovs_vport_type { - OVS_VPORT_TYPE_UNSPEC = 0, - OVS_VPORT_TYPE_NETDEV = 1, - OVS_VPORT_TYPE_INTERNAL = 2, - OVS_VPORT_TYPE_GRE = 3, - OVS_VPORT_TYPE_VXLAN = 4, - OVS_VPORT_TYPE_GENEVE = 5, - __OVS_VPORT_TYPE_MAX = 6, -}; - -struct ovs_flow_stats { - __u64 n_packets; - __u64 n_bytes; -}; - -struct ovs_key_ct_labels { - union { - __u8 ct_labels[16]; - __u32 ct_labels_32[4]; - }; -}; - -struct ovs_nsh_key_base { - __u8 flags; - __u8 ttl; - __u8 mdtype; - __u8 np; - __be32 path_hdr; -}; - -struct ip_tunnel_key { - __be64 tun_id; - union { - struct { - __be32 src; - __be32 dst; - } ipv4; - struct { - struct in6_addr src; - struct in6_addr dst; - } ipv6; - } u; - long unsigned int tun_flags[1]; - __be32 label; - u32 nhid; - u8 tos; - u8 ttl; - __be16 tp_src; - __be16 tp_dst; - __u8 flow_flags; -}; - -struct ip_tunnel_encap { - u16 type; - u16 flags; - __be16 sport; - __be16 dport; -}; - -struct ip_tunnel_info { - struct ip_tunnel_key key; - struct ip_tunnel_encap encap; - struct dst_cache dst_cache; - u8 options_len; - u8 mode; -}; - -typedef u64 sci_t; - -enum metadata_type { - METADATA_IP_TUNNEL = 0, - METADATA_HW_PORT_MUX = 1, - METADATA_MACSEC = 2, - METADATA_XFRM = 3, -}; - -struct hw_port_info { - struct net_device *lower_dev; - u32 port_id; -}; - -struct macsec_info { - sci_t sci; -}; - -struct xfrm_md_info { - u32 if_id; - int link; - struct dst_entry *dst_orig; -}; - -struct metadata_dst { - struct dst_entry dst; - enum metadata_type type; - union { - struct ip_tunnel_info tun_info; - struct hw_port_info port_info; - struct macsec_info macsec_info; - struct xfrm_md_info xfrm_info; - } u; -}; - -struct vlan_head { - __be16 tpid; - __be16 tci; -}; - -struct ovs_key_nsh { - struct ovs_nsh_key_base base; - __be32 context[4]; -}; - -struct sw_flow_key { - u8 tun_opts[255]; - u8 tun_opts_len; - struct ip_tunnel_key tun_key; - struct { - u32 priority; - u32 skb_mark; - u16 in_port; - } __attribute__((packed)) phy; - u8 mac_proto; - u8 tun_proto; - u32 ovs_flow_hash; - u32 recirc_id; - struct { - u8 src[6]; - u8 dst[6]; - struct vlan_head vlan; - struct vlan_head cvlan; - __be16 type; - } eth; - u8 ct_state; - u8 ct_orig_proto; - union { - struct { - u8 proto; - u8 tos; - u8 ttl; - u8 frag; - } ip; - }; - u16 ct_zone; - struct { - __be16 src; - __be16 dst; - __be16 flags; - } tp; - union { - struct { - struct { - __be32 src; - __be32 dst; - } addr; - union { - struct { - __be32 src; - __be32 dst; - } ct_orig; - struct { - u8 sha[6]; - u8 tha[6]; - } arp; - }; - } ipv4; - struct { - struct { - struct in6_addr src; - struct in6_addr dst; - } addr; - __be32 label; - u16 exthdrs; - union { - struct { - struct in6_addr src; - struct in6_addr dst; - } ct_orig; - struct { - struct in6_addr target; - u8 sll[6]; - u8 tll[6]; - } nd; - }; - } ipv6; - struct { - u32 num_labels_mask; - __be32 lse[3]; - } mpls; - struct ovs_key_nsh nsh; - }; - struct { - struct { - __be16 src; - __be16 dst; - } orig_tp; - u32 mark; - struct ovs_key_ct_labels labels; - } ct; -}; - -struct sw_flow_key_range { - short unsigned int start; - short unsigned int end; -}; - -struct sw_flow_mask { - int ref_count; - struct callback_head rcu; - struct sw_flow_key_range range; - struct sw_flow_key key; -}; - -struct mask_cache_entry { - u32 skb_hash; - u32 mask_index; -}; - -struct mask_cache { - struct callback_head rcu; - u32 cache_size; - struct mask_cache_entry *mask_cache; -}; - -struct mask_array_stats { - struct u64_stats_sync syncp; - u64 usage_cntrs[0]; -}; - -struct mask_array { - struct callback_head rcu; - int count; - int max; - struct mask_array_stats *masks_usage_stats; - u64 *masks_usage_zero_cntr; - struct sw_flow_mask *masks[0]; -}; - -struct table_instance { - struct hlist_head *buckets; - unsigned int n_buckets; - struct callback_head rcu; - int node_ver; - u32 hash_seed; -}; - -struct flow_table { - struct table_instance *ti; - struct table_instance *ufid_ti; - struct mask_cache *mask_cache; - struct mask_array *mask_array; - long unsigned int last_rehash; - unsigned int count; - unsigned int ufid_count; -}; - -struct dp_meter_band { - u32 type; - u32 rate; - u32 burst_size; - u64 bucket; - struct ovs_flow_stats stats; -}; - -struct dp_meter { - spinlock_t lock; - struct callback_head rcu; - u32 id; - u16 kbps: 1; - u16 keep_stats: 1; - u16 n_bands; - u32 max_delta_t; - u64 used; - struct ovs_flow_stats stats; - struct dp_meter_band bands[0]; -}; - -struct dp_meter_instance { - struct callback_head rcu; - u32 n_meters; - struct dp_meter *dp_meters[0]; -}; - -struct dp_meter_table { - struct dp_meter_instance *ti; - u32 count; - u32 max_meters_allowed; -}; - -struct vport_portids { - struct reciprocal_value rn_ids; - struct callback_head rcu; - u32 n_ids; - u32 ids[0]; -}; - -struct datapath; - -struct vport_ops; - -struct vport_upcall_stats_percpu; - -struct vport { - struct net_device *dev; - netdevice_tracker dev_tracker; - struct datapath *dp; - struct vport_portids *upcall_portids; - u16 port_no; - struct hlist_node hash_node; - struct hlist_node dp_hash_node; - const struct vport_ops *ops; - struct vport_upcall_stats_percpu *upcall_stats; - struct list_head detach_list; - struct callback_head rcu; -}; - -struct dp_stats_percpu; - -struct dp_nlsk_pids; - -struct datapath { - struct callback_head rcu; - struct list_head list_node; - struct flow_table table; - struct hlist_head *ports; - struct dp_stats_percpu *stats_percpu; - possible_net_t net; - u32 user_features; - u32 max_headroom; - struct dp_meter_table meter_tbl; - struct dp_nlsk_pids *upcall_portids; -}; - -struct vport_parms; - -struct vport_ops { - enum ovs_vport_type type; - struct vport * (*create)(const struct vport_parms *); - void (*destroy)(struct vport *); - int (*set_options)(struct vport *, struct nlattr *); - int (*get_options)(const struct vport *, struct sk_buff *); - int (*send)(struct sk_buff *); - struct module *owner; - struct list_head list; -}; - -struct vport_upcall_stats_percpu { - struct u64_stats_sync syncp; - u64_stats_t n_success; - u64_stats_t n_fail; -}; - -struct vport_parms { - const char *name; - enum ovs_vport_type type; - int desired_ifindex; - struct nlattr *options; - struct datapath *dp; - u16 port_no; - struct nlattr *upcall_portids; -}; - -struct dp_stats_percpu { - u64 n_hit; - u64 n_missed; - u64 n_lost; - u64 n_mask_hit; - u64 n_cache_hit; - struct u64_stats_sync syncp; -}; - -struct dp_nlsk_pids { - struct callback_head rcu; - u32 n_pids; - u32 pids[0]; -}; - -struct sockaddr_vm { - __kernel_sa_family_t svm_family; - short unsigned int svm_reserved1; - unsigned int svm_port; - unsigned int svm_cid; - __u8 svm_flags; - unsigned char svm_zero[3]; -}; - -struct vsock_transport; - -struct vsock_sock { - struct sock sk; - const struct vsock_transport *transport; - struct sockaddr_vm local_addr; - struct sockaddr_vm remote_addr; - struct list_head bound_table; - struct list_head connected_table; - bool trusted; - bool cached_peer_allow_dgram; - u32 cached_peer; - const struct cred *owner; - long int connect_timeout; - struct sock *listener; - struct list_head pending_links; - struct list_head accept_queue; - bool rejected; - struct delayed_work connect_work; - struct delayed_work pending_work; - struct delayed_work close_work; - bool close_work_scheduled; - u32 peer_shutdown; - bool sent_request; - bool ignore_connecting_rst; - u64 buffer_size; - u64 buffer_min_size; - u64 buffer_max_size; - void *trans; -}; - -struct vsock_transport_recv_notify_data; - -struct vsock_transport_send_notify_data; - -struct vsock_transport { - struct module *module; - int (*init)(struct vsock_sock *, struct vsock_sock *); - void (*destruct)(struct vsock_sock *); - void (*release)(struct vsock_sock *); - int (*cancel_pkt)(struct vsock_sock *); - int (*connect)(struct vsock_sock *); - int (*dgram_bind)(struct vsock_sock *, struct sockaddr_vm *); - int (*dgram_dequeue)(struct vsock_sock *, struct msghdr *, size_t, int); - int (*dgram_enqueue)(struct vsock_sock *, struct sockaddr_vm *, struct msghdr *, size_t); - bool (*dgram_allow)(u32, u32); - ssize_t (*stream_dequeue)(struct vsock_sock *, struct msghdr *, size_t, int); - ssize_t (*stream_enqueue)(struct vsock_sock *, struct msghdr *, size_t); - s64 (*stream_has_data)(struct vsock_sock *); - s64 (*stream_has_space)(struct vsock_sock *); - u64 (*stream_rcvhiwat)(struct vsock_sock *); - bool (*stream_is_active)(struct vsock_sock *); - bool (*stream_allow)(u32, u32); - ssize_t (*seqpacket_dequeue)(struct vsock_sock *, struct msghdr *, int); - int (*seqpacket_enqueue)(struct vsock_sock *, struct msghdr *, size_t); - bool (*seqpacket_allow)(u32); - u32 (*seqpacket_has_data)(struct vsock_sock *); - int (*notify_poll_in)(struct vsock_sock *, size_t, bool *); - int (*notify_poll_out)(struct vsock_sock *, size_t, bool *); - int (*notify_recv_init)(struct vsock_sock *, size_t, struct vsock_transport_recv_notify_data *); - int (*notify_recv_pre_block)(struct vsock_sock *, size_t, struct vsock_transport_recv_notify_data *); - int (*notify_recv_pre_dequeue)(struct vsock_sock *, size_t, struct vsock_transport_recv_notify_data *); - int (*notify_recv_post_dequeue)(struct vsock_sock *, size_t, ssize_t, bool, struct vsock_transport_recv_notify_data *); - int (*notify_send_init)(struct vsock_sock *, struct vsock_transport_send_notify_data *); - int (*notify_send_pre_block)(struct vsock_sock *, struct vsock_transport_send_notify_data *); - int (*notify_send_pre_enqueue)(struct vsock_sock *, struct vsock_transport_send_notify_data *); - int (*notify_send_post_enqueue)(struct vsock_sock *, ssize_t, struct vsock_transport_send_notify_data *); - void (*notify_buffer_size)(struct vsock_sock *, u64 *); - int (*notify_set_rcvlowat)(struct vsock_sock *, int); - ssize_t (*unsent_bytes)(struct vsock_sock *); - int (*shutdown)(struct vsock_sock *, int); - u32 (*get_local_cid)(void); - int (*read_skb)(struct vsock_sock *, skb_read_actor_t); - bool (*msgzerocopy_allow)(void); -}; - -struct vsock_transport_recv_notify_data { - u64 data1; - u64 data2; - bool notify_on_block; -}; - -struct vsock_transport_send_notify_data { - u64 data1; - u64 data2; -}; - -struct virtio_transport { - struct vsock_transport transport; - int (*send_pkt)(struct sk_buff *); - bool (*can_msgzerocopy)(int); -}; - -struct vsock_loopback { - struct workqueue_struct *workqueue; - struct sk_buff_head pkt_queue; - struct work_struct pkt_work; -}; - -typedef int (*decompress_fn)(unsigned char *, long int, long int (*)(void *, long unsigned int), long int (*)(void *, long unsigned int), unsigned char *, long int *, void (*)(char *)); - -struct compress_format { - unsigned char magic[2]; - const char *name; - decompress_fn decompressor; -}; - -typedef __be32 fdt32_t; - -struct fdt_header { - fdt32_t magic; - fdt32_t totalsize; - fdt32_t off_dt_struct; - fdt32_t off_dt_strings; - fdt32_t off_mem_rsvmap; - fdt32_t version; - fdt32_t last_comp_version; - fdt32_t boot_cpuid_phys; - fdt32_t size_dt_strings; - fdt32_t size_dt_struct; -}; - -enum { - ASSUME_PERFECT = 255, - ASSUME_VALID_DTB = 1, - ASSUME_VALID_INPUT = 2, - ASSUME_LATEST = 4, - ASSUME_NO_ROLLBACK = 8, - ASSUME_LIBFDT_ORDER = 16, - ASSUME_LIBFDT_FLAWLESS = 32, -}; - -typedef __be64 fdt64_t; - -struct fdt_reserve_entry { - fdt64_t address; - fdt64_t size; -}; - -struct fdt_node_header { - fdt32_t tag; - char name[0]; -}; - -struct fdt_property { - fdt32_t tag; - fdt32_t len; - fdt32_t nameoff; - char data[0]; -}; - -struct fdt_errtabent { - const char *str; -}; - -typedef int (*parse_unknown_fn)(char *, char *, const char *, void *); - -enum { - ICMP_MIB_NUM = 0, - ICMP_MIB_INMSGS = 1, - ICMP_MIB_INERRORS = 2, - ICMP_MIB_INDESTUNREACHS = 3, - ICMP_MIB_INTIMEEXCDS = 4, - ICMP_MIB_INPARMPROBS = 5, - ICMP_MIB_INSRCQUENCHS = 6, - ICMP_MIB_INREDIRECTS = 7, - ICMP_MIB_INECHOS = 8, - ICMP_MIB_INECHOREPS = 9, - ICMP_MIB_INTIMESTAMPS = 10, - ICMP_MIB_INTIMESTAMPREPS = 11, - ICMP_MIB_INADDRMASKS = 12, - ICMP_MIB_INADDRMASKREPS = 13, - ICMP_MIB_OUTMSGS = 14, - ICMP_MIB_OUTERRORS = 15, - ICMP_MIB_OUTDESTUNREACHS = 16, - ICMP_MIB_OUTTIMEEXCDS = 17, - ICMP_MIB_OUTPARMPROBS = 18, - ICMP_MIB_OUTSRCQUENCHS = 19, - ICMP_MIB_OUTREDIRECTS = 20, - ICMP_MIB_OUTECHOS = 21, - ICMP_MIB_OUTECHOREPS = 22, - ICMP_MIB_OUTTIMESTAMPS = 23, - ICMP_MIB_OUTTIMESTAMPREPS = 24, - ICMP_MIB_OUTADDRMASKS = 25, - ICMP_MIB_OUTADDRMASKREPS = 26, - ICMP_MIB_CSUMERRORS = 27, - ICMP_MIB_RATELIMITGLOBAL = 28, - ICMP_MIB_RATELIMITHOST = 29, - __ICMP_MIB_MAX = 30, -}; - -enum { - TCP_MIB_NUM = 0, - TCP_MIB_RTOALGORITHM = 1, - TCP_MIB_RTOMIN = 2, - TCP_MIB_RTOMAX = 3, - TCP_MIB_MAXCONN = 4, - TCP_MIB_ACTIVEOPENS = 5, - TCP_MIB_PASSIVEOPENS = 6, - TCP_MIB_ATTEMPTFAILS = 7, - TCP_MIB_ESTABRESETS = 8, - TCP_MIB_CURRESTAB = 9, - TCP_MIB_INSEGS = 10, - TCP_MIB_OUTSEGS = 11, - TCP_MIB_RETRANSSEGS = 12, - TCP_MIB_INERRS = 13, - TCP_MIB_OUTRSTS = 14, - TCP_MIB_CSUMERRORS = 15, - __TCP_MIB_MAX = 16, -}; - -enum { - UDP_MIB_NUM = 0, - UDP_MIB_INDATAGRAMS = 1, - UDP_MIB_NOPORTS = 2, - UDP_MIB_INERRORS = 3, - UDP_MIB_OUTDATAGRAMS = 4, - UDP_MIB_RCVBUFERRORS = 5, - UDP_MIB_SNDBUFERRORS = 6, - UDP_MIB_CSUMERRORS = 7, - UDP_MIB_IGNOREDMULTI = 8, - UDP_MIB_MEMERRORS = 9, - __UDP_MIB_MAX = 10, -}; - -enum { - LINUX_MIB_NUM = 0, - LINUX_MIB_SYNCOOKIESSENT = 1, - LINUX_MIB_SYNCOOKIESRECV = 2, - LINUX_MIB_SYNCOOKIESFAILED = 3, - LINUX_MIB_EMBRYONICRSTS = 4, - LINUX_MIB_PRUNECALLED = 5, - LINUX_MIB_RCVPRUNED = 6, - LINUX_MIB_OFOPRUNED = 7, - LINUX_MIB_OUTOFWINDOWICMPS = 8, - LINUX_MIB_LOCKDROPPEDICMPS = 9, - LINUX_MIB_ARPFILTER = 10, - LINUX_MIB_TIMEWAITED = 11, - LINUX_MIB_TIMEWAITRECYCLED = 12, - LINUX_MIB_TIMEWAITKILLED = 13, - LINUX_MIB_PAWSACTIVEREJECTED = 14, - LINUX_MIB_PAWSESTABREJECTED = 15, - LINUX_MIB_DELAYEDACKS = 16, - LINUX_MIB_DELAYEDACKLOCKED = 17, - LINUX_MIB_DELAYEDACKLOST = 18, - LINUX_MIB_LISTENOVERFLOWS = 19, - LINUX_MIB_LISTENDROPS = 20, - LINUX_MIB_TCPHPHITS = 21, - LINUX_MIB_TCPPUREACKS = 22, - LINUX_MIB_TCPHPACKS = 23, - LINUX_MIB_TCPRENORECOVERY = 24, - LINUX_MIB_TCPSACKRECOVERY = 25, - LINUX_MIB_TCPSACKRENEGING = 26, - LINUX_MIB_TCPSACKREORDER = 27, - LINUX_MIB_TCPRENOREORDER = 28, - LINUX_MIB_TCPTSREORDER = 29, - LINUX_MIB_TCPFULLUNDO = 30, - LINUX_MIB_TCPPARTIALUNDO = 31, - LINUX_MIB_TCPDSACKUNDO = 32, - LINUX_MIB_TCPLOSSUNDO = 33, - LINUX_MIB_TCPLOSTRETRANSMIT = 34, - LINUX_MIB_TCPRENOFAILURES = 35, - LINUX_MIB_TCPSACKFAILURES = 36, - LINUX_MIB_TCPLOSSFAILURES = 37, - LINUX_MIB_TCPFASTRETRANS = 38, - LINUX_MIB_TCPSLOWSTARTRETRANS = 39, - LINUX_MIB_TCPTIMEOUTS = 40, - LINUX_MIB_TCPLOSSPROBES = 41, - LINUX_MIB_TCPLOSSPROBERECOVERY = 42, - LINUX_MIB_TCPRENORECOVERYFAIL = 43, - LINUX_MIB_TCPSACKRECOVERYFAIL = 44, - LINUX_MIB_TCPRCVCOLLAPSED = 45, - LINUX_MIB_TCPDSACKOLDSENT = 46, - LINUX_MIB_TCPDSACKOFOSENT = 47, - LINUX_MIB_TCPDSACKRECV = 48, - LINUX_MIB_TCPDSACKOFORECV = 49, - LINUX_MIB_TCPABORTONDATA = 50, - LINUX_MIB_TCPABORTONCLOSE = 51, - LINUX_MIB_TCPABORTONMEMORY = 52, - LINUX_MIB_TCPABORTONTIMEOUT = 53, - LINUX_MIB_TCPABORTONLINGER = 54, - LINUX_MIB_TCPABORTFAILED = 55, - LINUX_MIB_TCPMEMORYPRESSURES = 56, - LINUX_MIB_TCPMEMORYPRESSURESCHRONO = 57, - LINUX_MIB_TCPSACKDISCARD = 58, - LINUX_MIB_TCPDSACKIGNOREDOLD = 59, - LINUX_MIB_TCPDSACKIGNOREDNOUNDO = 60, - LINUX_MIB_TCPSPURIOUSRTOS = 61, - LINUX_MIB_TCPMD5NOTFOUND = 62, - LINUX_MIB_TCPMD5UNEXPECTED = 63, - LINUX_MIB_TCPMD5FAILURE = 64, - LINUX_MIB_SACKSHIFTED = 65, - LINUX_MIB_SACKMERGED = 66, - LINUX_MIB_SACKSHIFTFALLBACK = 67, - LINUX_MIB_TCPBACKLOGDROP = 68, - LINUX_MIB_PFMEMALLOCDROP = 69, - LINUX_MIB_TCPMINTTLDROP = 70, - LINUX_MIB_TCPDEFERACCEPTDROP = 71, - LINUX_MIB_IPRPFILTER = 72, - LINUX_MIB_TCPTIMEWAITOVERFLOW = 73, - LINUX_MIB_TCPREQQFULLDOCOOKIES = 74, - LINUX_MIB_TCPREQQFULLDROP = 75, - LINUX_MIB_TCPRETRANSFAIL = 76, - LINUX_MIB_TCPRCVCOALESCE = 77, - LINUX_MIB_TCPBACKLOGCOALESCE = 78, - LINUX_MIB_TCPOFOQUEUE = 79, - LINUX_MIB_TCPOFODROP = 80, - LINUX_MIB_TCPOFOMERGE = 81, - LINUX_MIB_TCPCHALLENGEACK = 82, - LINUX_MIB_TCPSYNCHALLENGE = 83, - LINUX_MIB_TCPFASTOPENACTIVE = 84, - LINUX_MIB_TCPFASTOPENACTIVEFAIL = 85, - LINUX_MIB_TCPFASTOPENPASSIVE = 86, - LINUX_MIB_TCPFASTOPENPASSIVEFAIL = 87, - LINUX_MIB_TCPFASTOPENLISTENOVERFLOW = 88, - LINUX_MIB_TCPFASTOPENCOOKIEREQD = 89, - LINUX_MIB_TCPFASTOPENBLACKHOLE = 90, - LINUX_MIB_TCPSPURIOUS_RTX_HOSTQUEUES = 91, - LINUX_MIB_BUSYPOLLRXPACKETS = 92, - LINUX_MIB_TCPAUTOCORKING = 93, - LINUX_MIB_TCPFROMZEROWINDOWADV = 94, - LINUX_MIB_TCPTOZEROWINDOWADV = 95, - LINUX_MIB_TCPWANTZEROWINDOWADV = 96, - LINUX_MIB_TCPSYNRETRANS = 97, - LINUX_MIB_TCPORIGDATASENT = 98, - LINUX_MIB_TCPHYSTARTTRAINDETECT = 99, - LINUX_MIB_TCPHYSTARTTRAINCWND = 100, - LINUX_MIB_TCPHYSTARTDELAYDETECT = 101, - LINUX_MIB_TCPHYSTARTDELAYCWND = 102, - LINUX_MIB_TCPACKSKIPPEDSYNRECV = 103, - LINUX_MIB_TCPACKSKIPPEDPAWS = 104, - LINUX_MIB_TCPACKSKIPPEDSEQ = 105, - LINUX_MIB_TCPACKSKIPPEDFINWAIT2 = 106, - LINUX_MIB_TCPACKSKIPPEDTIMEWAIT = 107, - LINUX_MIB_TCPACKSKIPPEDCHALLENGE = 108, - LINUX_MIB_TCPWINPROBE = 109, - LINUX_MIB_TCPKEEPALIVE = 110, - LINUX_MIB_TCPMTUPFAIL = 111, - LINUX_MIB_TCPMTUPSUCCESS = 112, - LINUX_MIB_TCPDELIVERED = 113, - LINUX_MIB_TCPDELIVEREDCE = 114, - LINUX_MIB_TCPACKCOMPRESSED = 115, - LINUX_MIB_TCPZEROWINDOWDROP = 116, - LINUX_MIB_TCPRCVQDROP = 117, - LINUX_MIB_TCPWQUEUETOOBIG = 118, - LINUX_MIB_TCPFASTOPENPASSIVEALTKEY = 119, - LINUX_MIB_TCPTIMEOUTREHASH = 120, - LINUX_MIB_TCPDUPLICATEDATAREHASH = 121, - LINUX_MIB_TCPDSACKRECVSEGS = 122, - LINUX_MIB_TCPDSACKIGNOREDDUBIOUS = 123, - LINUX_MIB_TCPMIGRATEREQSUCCESS = 124, - LINUX_MIB_TCPMIGRATEREQFAILURE = 125, - LINUX_MIB_TCPPLBREHASH = 126, - LINUX_MIB_TCPAOREQUIRED = 127, - LINUX_MIB_TCPAOBAD = 128, - LINUX_MIB_TCPAOKEYNOTFOUND = 129, - LINUX_MIB_TCPAOGOOD = 130, - LINUX_MIB_TCPAODROPPEDICMPS = 131, - __LINUX_MIB_MAX = 132, -}; - -enum { - LINUX_MIB_TLSNUM = 0, - LINUX_MIB_TLSCURRTXSW = 1, - LINUX_MIB_TLSCURRRXSW = 2, - LINUX_MIB_TLSCURRTXDEVICE = 3, - LINUX_MIB_TLSCURRRXDEVICE = 4, - LINUX_MIB_TLSTXSW = 5, - LINUX_MIB_TLSRXSW = 6, - LINUX_MIB_TLSTXDEVICE = 7, - LINUX_MIB_TLSRXDEVICE = 8, - LINUX_MIB_TLSDECRYPTERROR = 9, - LINUX_MIB_TLSRXDEVICERESYNC = 10, - LINUX_MIB_TLSDECRYPTRETRY = 11, - LINUX_MIB_TLSRXNOPADVIOL = 12, - __LINUX_MIB_TLSMAX = 13, -}; - -enum tcp_conntrack { - TCP_CONNTRACK_NONE = 0, - TCP_CONNTRACK_SYN_SENT = 1, - TCP_CONNTRACK_SYN_RECV = 2, - TCP_CONNTRACK_ESTABLISHED = 3, - TCP_CONNTRACK_FIN_WAIT = 4, - TCP_CONNTRACK_CLOSE_WAIT = 5, - TCP_CONNTRACK_LAST_ACK = 6, - TCP_CONNTRACK_TIME_WAIT = 7, - TCP_CONNTRACK_CLOSE = 8, - TCP_CONNTRACK_LISTEN = 9, - TCP_CONNTRACK_MAX = 10, - TCP_CONNTRACK_IGNORE = 11, - TCP_CONNTRACK_RETRANS = 12, - TCP_CONNTRACK_UNACK = 13, - TCP_CONNTRACK_TIMEOUT_MAX = 14, -}; - -enum ct_dccp_states { - CT_DCCP_NONE = 0, - CT_DCCP_REQUEST = 1, - CT_DCCP_RESPOND = 2, - CT_DCCP_PARTOPEN = 3, - CT_DCCP_OPEN = 4, - CT_DCCP_CLOSEREQ = 5, - CT_DCCP_CLOSING = 6, - CT_DCCP_TIMEWAIT = 7, - CT_DCCP_IGNORE = 8, - CT_DCCP_INVALID = 9, - __CT_DCCP_MAX = 10, -}; - -enum udp_conntrack { - UDP_CT_UNREPLIED = 0, - UDP_CT_REPLIED = 1, - UDP_CT_MAX = 2, -}; - -enum { - XFRM_POLICY_IN = 0, - XFRM_POLICY_OUT = 1, - XFRM_POLICY_FWD = 2, - XFRM_POLICY_MASK = 3, - XFRM_POLICY_MAX = 3, -}; - -enum netns_bpf_attach_type { - NETNS_BPF_INVALID = -1, - NETNS_BPF_FLOW_DISSECTOR = 0, - NETNS_BPF_SK_LOOKUP = 1, - MAX_NETNS_BPF_ATTACH_TYPE = 2, -}; - -struct trace_event_raw_initcall_level { - struct trace_entry ent; - u32 __data_loc_level; - char __data[0]; -}; - -struct trace_event_raw_initcall_start { - struct trace_entry ent; - initcall_t func; - char __data[0]; -}; - -struct trace_event_raw_initcall_finish { - struct trace_entry ent; - initcall_t func; - int ret; - char __data[0]; -}; - -struct trace_event_data_offsets_initcall_level { - u32 level; - const void *level_ptr_; -}; - -struct trace_event_data_offsets_initcall_start {}; - -struct trace_event_data_offsets_initcall_finish {}; - -typedef void (*btf_trace_initcall_level)(void *, const char *); - -typedef void (*btf_trace_initcall_start)(void *, initcall_t); - -typedef void (*btf_trace_initcall_finish)(void *, initcall_t, int); - -struct blacklist_entry { - struct list_head next; - char *buf; -}; - -struct wq_flusher; - -struct workqueue_attrs; - -struct wq_device; - -struct wq_node_nr_active; - -struct workqueue_struct { - struct list_head pwqs; - struct list_head list; - struct mutex mutex; - int work_color; - int flush_color; - atomic_t nr_pwqs_to_flush; - struct wq_flusher *first_flusher; - struct list_head flusher_queue; - struct list_head flusher_overflow; - struct list_head maydays; - struct worker *rescuer; - int nr_drainers; - int max_active; - int min_active; - int saved_max_active; - int saved_min_active; - struct workqueue_attrs *unbound_attrs; - struct pool_workqueue *dfl_pwq; - struct wq_device *wq_dev; - char name[32]; - struct callback_head rcu; - long: 64; - long: 64; - unsigned int flags; - struct pool_workqueue **cpu_pwq; - struct wq_node_nr_active *node_nr_active[0]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum wq_affn_scope { - WQ_AFFN_DFL = 0, - WQ_AFFN_CPU = 1, - WQ_AFFN_SMT = 2, - WQ_AFFN_CACHE = 3, - WQ_AFFN_NUMA = 4, - WQ_AFFN_SYSTEM = 5, - WQ_AFFN_NR_TYPES = 6, -}; - -struct workqueue_attrs { - int nice; - cpumask_var_t cpumask; - cpumask_var_t __pod_cpumask; - bool affn_strict; - enum wq_affn_scope affn_scope; - bool ordered; -}; - -struct execute_work { - struct work_struct work; -}; - -struct pool_workqueue { - struct worker_pool *pool; - struct workqueue_struct *wq; - int work_color; - int flush_color; - int refcnt; - int nr_in_flight[16]; - bool plugged; - int nr_active; - struct list_head inactive_works; - struct list_head pending_node; - struct list_head pwqs_node; - struct list_head mayday_node; - u64 stats[8]; - struct kthread_work release_work; - struct callback_head rcu; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct worker_pool { - raw_spinlock_t lock; - int cpu; - int node; - int id; - unsigned int flags; - long unsigned int watchdog_ts; - bool cpu_stall; - int nr_running; - struct list_head worklist; - int nr_workers; - int nr_idle; - struct list_head idle_list; - struct timer_list idle_timer; - struct work_struct idle_cull_work; - struct timer_list mayday_timer; - struct hlist_head busy_hash[64]; - struct worker *manager; - struct list_head workers; - struct ida worker_ida; - struct workqueue_attrs *attrs; - struct hlist_node hash_node; - int refcnt; - struct callback_head rcu; -}; - -enum worker_pool_flags { - POOL_BH = 1, - POOL_MANAGER_ACTIVE = 2, - POOL_DISASSOCIATED = 4, - POOL_BH_DRAINING = 8, -}; - -enum worker_flags { - WORKER_DIE = 2, - WORKER_IDLE = 4, - WORKER_PREP = 8, - WORKER_CPU_INTENSIVE = 64, - WORKER_UNBOUND = 128, - WORKER_REBOUND = 256, - WORKER_NOT_RUNNING = 456, -}; - -enum work_cancel_flags { - WORK_CANCEL_DELAYED = 1, - WORK_CANCEL_DISABLE = 2, -}; - -enum wq_internal_consts { - NR_STD_WORKER_POOLS = 2, - UNBOUND_POOL_HASH_ORDER = 6, - BUSY_WORKER_HASH_ORDER = 6, - MAX_IDLE_WORKERS_RATIO = 4, - IDLE_WORKER_TIMEOUT = 300000, - MAYDAY_INITIAL_TIMEOUT = 10, - MAYDAY_INTERVAL = 100, - CREATE_COOLDOWN = 1000, - RESCUER_NICE_LEVEL = -20, - HIGHPRI_NICE_LEVEL = -20, - WQ_NAME_LEN = 32, - WORKER_ID_LEN = 42, -}; - -enum pool_workqueue_stats { - PWQ_STAT_STARTED = 0, - PWQ_STAT_COMPLETED = 1, - PWQ_STAT_CPU_TIME = 2, - PWQ_STAT_CPU_INTENSIVE = 3, - PWQ_STAT_CM_WAKEUP = 4, - PWQ_STAT_REPATRIATED = 5, - PWQ_STAT_MAYDAY = 6, - PWQ_STAT_RESCUED = 7, - PWQ_NR_STATS = 8, -}; - -struct wq_flusher { - struct list_head list; - int flush_color; - struct completion done; -}; - -struct wq_node_nr_active { - int max; - atomic_t nr; - raw_spinlock_t lock; - struct list_head pending_pwqs; -}; - -struct wq_device { - struct workqueue_struct *wq; - struct device dev; -}; - -struct wq_pod_type { - int nr_pods; - cpumask_var_t *pod_cpus; - int *pod_node; - int *cpu_pod; -}; - -struct work_offq_data { - u32 pool_id; - u32 disable; - u32 flags; -}; - -struct trace_event_raw_workqueue_queue_work { - struct trace_entry ent; - void *work; - void *function; - u32 __data_loc_workqueue; - int req_cpu; - int cpu; - char __data[0]; -}; - -struct trace_event_raw_workqueue_activate_work { - struct trace_entry ent; - void *work; - void *function; - char __data[0]; -}; - -struct trace_event_raw_workqueue_execute_start { - struct trace_entry ent; - void *work; - void *function; - char __data[0]; -}; - -struct trace_event_raw_workqueue_execute_end { - struct trace_entry ent; - void *work; - void *function; - char __data[0]; -}; - -struct trace_event_data_offsets_workqueue_queue_work { - u32 workqueue; - const void *workqueue_ptr_; -}; - -struct trace_event_data_offsets_workqueue_activate_work {}; - -struct trace_event_data_offsets_workqueue_execute_start {}; - -struct trace_event_data_offsets_workqueue_execute_end {}; - -typedef void (*btf_trace_workqueue_queue_work)(void *, int, struct pool_workqueue *, struct work_struct *); - -typedef void (*btf_trace_workqueue_activate_work)(void *, struct work_struct *); - -typedef void (*btf_trace_workqueue_execute_start)(void *, struct work_struct *); - -typedef void (*btf_trace_workqueue_execute_end)(void *, struct work_struct *, work_func_t); - -struct wq_drain_dead_softirq_work { - struct work_struct work; - struct worker_pool *pool; - struct completion done; -}; - -struct wq_barrier { - struct work_struct work; - struct completion done; - struct task_struct *task; -}; - -struct apply_wqattrs_ctx { - struct workqueue_struct *wq; - struct workqueue_attrs *attrs; - struct list_head list; - struct pool_workqueue *dfl_pwq; - struct pool_workqueue *pwq_tbl[0]; -}; - -struct pr_cont_work_struct { - bool comma; - work_func_t func; - long int ctr; -}; - -struct work_for_cpu { - struct work_struct work; - long int (*fn)(void *); - void *arg; - long int ret; -}; - -enum { - GP_IDLE = 0, - GP_ENTER = 1, - GP_PASSED = 2, - GP_EXIT = 3, - GP_REPLAY = 4, -}; - -struct rcu_synchronize { - struct callback_head head; - struct completion completion; -}; - -struct rcu_cblist { - struct callback_head *head; - struct callback_head **tail; - long int len; -}; - -struct subprocess_info { - struct work_struct work; - struct completion *complete; - const char *path; - char **argv; - char **envp; - int wait; - int retval; - int (*init)(struct subprocess_info *, struct cred *); - void (*cleanup)(struct subprocess_info *); - void *data; -}; - -typedef __kernel_timer_t timer_t; - -struct sigqueue { - struct list_head list; - int flags; - kernel_siginfo_t info; - struct ucounts *ucounts; -}; - -struct __kernel_timex_timeval { - __kernel_time64_t tv_sec; - long long int tv_usec; -}; - -struct __kernel_timex { - unsigned int modes; - long long int offset; - long long int freq; - long long int maxerror; - long long int esterror; - int status; - long long int constant; - long long int precision; - long long int tolerance; - struct __kernel_timex_timeval time; - long long int tick; - long long int ppsfreq; - long long int jitter; - int shift; - long long int stabil; - long long int jitcnt; - long long int calcnt; - long long int errcnt; - long long int stbcnt; - int tai; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum alarmtimer_type { - ALARM_REALTIME = 0, - ALARM_BOOTTIME = 1, - ALARM_NUMTYPE = 2, - ALARM_REALTIME_FREEZER = 3, - ALARM_BOOTTIME_FREEZER = 4, -}; - -enum alarmtimer_restart { - ALARMTIMER_NORESTART = 0, - ALARMTIMER_RESTART = 1, -}; - -struct alarm { - struct timerqueue_node node; - struct hrtimer timer; - enum alarmtimer_restart (*function)(struct alarm *, ktime_t); - enum alarmtimer_type type; - int state; - void *data; -}; - -struct cpu_timer { - struct timerqueue_node node; - struct timerqueue_head *head; - struct pid *pid; - struct list_head elist; - int firing; - struct task_struct *handling; -}; - -struct k_clock; - -struct k_itimer { - struct hlist_node list; - struct hlist_node t_hash; - spinlock_t it_lock; - const struct k_clock *kclock; - clockid_t it_clock; - timer_t it_id; - int it_active; - s64 it_overrun; - s64 it_overrun_last; - int it_requeue_pending; - int it_sigev_notify; - ktime_t it_interval; - struct signal_struct *it_signal; - union { - struct pid *it_pid; - struct task_struct *it_process; - }; - struct sigqueue *sigq; - union { - struct { - struct hrtimer timer; - } real; - struct cpu_timer cpu; - struct { - struct alarm alarmtimer; - } alarm; - } it; - struct callback_head rcu; -}; - -struct k_clock { - int (*clock_getres)(const clockid_t, struct timespec64 *); - int (*clock_set)(const clockid_t, const struct timespec64 *); - int (*clock_get_timespec)(const clockid_t, struct timespec64 *); - ktime_t (*clock_get_ktime)(const clockid_t); - int (*clock_adj)(const clockid_t, struct __kernel_timex *); - int (*timer_create)(struct k_itimer *); - int (*nsleep)(const clockid_t, int, const struct timespec64 *); - int (*timer_set)(struct k_itimer *, int, struct itimerspec64 *, struct itimerspec64 *); - int (*timer_del)(struct k_itimer *); - void (*timer_get)(struct k_itimer *, struct itimerspec64 *); - void (*timer_rearm)(struct k_itimer *); - s64 (*timer_forward)(struct k_itimer *, ktime_t); - ktime_t (*timer_remaining)(struct k_itimer *, ktime_t); - int (*timer_try_to_cancel)(struct k_itimer *); - void (*timer_arm)(struct k_itimer *, ktime_t, bool, bool); - void (*timer_wait_running)(struct k_itimer *); -}; - -enum clock_event_state { - CLOCK_EVT_STATE_DETACHED = 0, - CLOCK_EVT_STATE_SHUTDOWN = 1, - CLOCK_EVT_STATE_PERIODIC = 2, - CLOCK_EVT_STATE_ONESHOT = 3, - CLOCK_EVT_STATE_ONESHOT_STOPPED = 4, -}; - -struct clock_event_device { - void (*event_handler)(struct clock_event_device *); - int (*set_next_event)(long unsigned int, struct clock_event_device *); - int (*set_next_ktime)(ktime_t, struct clock_event_device *); - ktime_t next_event; - u64 max_delta_ns; - u64 min_delta_ns; - u32 mult; - u32 shift; - enum clock_event_state state_use_accessors; - unsigned int features; - long unsigned int retries; - int (*set_state_periodic)(struct clock_event_device *); - int (*set_state_oneshot)(struct clock_event_device *); - int (*set_state_oneshot_stopped)(struct clock_event_device *); - int (*set_state_shutdown)(struct clock_event_device *); - int (*tick_resume)(struct clock_event_device *); - void (*broadcast)(const struct cpumask *); - void (*suspend)(struct clock_event_device *); - void (*resume)(struct clock_event_device *); - long unsigned int min_delta_ticks; - long unsigned int max_delta_ticks; - const char *name; - int rating; - int irq; - int bound_on; - const struct cpumask *cpumask; - struct list_head list; - struct module *owner; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum tick_device_mode { - TICKDEV_MODE_PERIODIC = 0, - TICKDEV_MODE_ONESHOT = 1, -}; - -struct tick_device { - struct clock_event_device *evtdev; - enum tick_device_mode mode; -}; - -typedef int __kernel_key_t; - -typedef int __kernel_mqd_t; - -typedef __kernel_key_t key_t; - -typedef __kernel_mqd_t mqd_t; - -struct sigevent { - sigval_t sigev_value; - int sigev_signo; - int sigev_notify; - union { - int _pad[12]; - int _tid; - struct { - void (*_function)(sigval_t); - void *_attribute; - } _sigev_thread; - } _sigev_un; -}; - -enum audit_state { - AUDIT_STATE_DISABLED = 0, - AUDIT_STATE_BUILD = 1, - AUDIT_STATE_RECORD = 2, -}; - -struct audit_cap_data { - kernel_cap_t permitted; - kernel_cap_t inheritable; - union { - unsigned int fE; - kernel_cap_t effective; - }; - kernel_cap_t ambient; - kuid_t rootid; -}; - -struct audit_names { - struct list_head list; - struct filename *name; - int name_len; - bool hidden; - long unsigned int ino; - dev_t dev; - umode_t mode; - kuid_t uid; - kgid_t gid; - dev_t rdev; - u32 osid; - struct audit_cap_data fcap; - unsigned int fcap_ver; - unsigned char type; - bool should_free; -}; - -struct mq_attr { - __kernel_long_t mq_flags; - __kernel_long_t mq_maxmsg; - __kernel_long_t mq_msgsize; - __kernel_long_t mq_curmsgs; - __kernel_long_t __reserved[4]; -}; - -struct open_how { - __u64 flags; - __u64 mode; - __u64 resolve; -}; - -struct audit_ntp_val { - long long int oldval; - long long int newval; -}; - -struct audit_ntp_data { - struct audit_ntp_val vals[6]; -}; - -struct audit_proctitle { - int len; - char *value; -}; - -struct audit_aux_data; - -struct audit_tree_refs; - -struct audit_context { - int dummy; - enum { - AUDIT_CTX_UNUSED = 0, - AUDIT_CTX_SYSCALL = 1, - AUDIT_CTX_URING = 2, - } context; - enum audit_state state; - enum audit_state current_state; - unsigned int serial; - int major; - int uring_op; - struct timespec64 ctime; - long unsigned int argv[4]; - long int return_code; - u64 prio; - int return_valid; - struct audit_names preallocated_names[5]; - int name_count; - struct list_head names_list; - char *filterkey; - struct path pwd; - struct audit_aux_data *aux; - struct audit_aux_data *aux_pids; - struct __kernel_sockaddr_storage *sockaddr; - size_t sockaddr_len; - pid_t ppid; - kuid_t uid; - kuid_t euid; - kuid_t suid; - kuid_t fsuid; - kgid_t gid; - kgid_t egid; - kgid_t sgid; - kgid_t fsgid; - long unsigned int personality; - int arch; - pid_t target_pid; - kuid_t target_auid; - kuid_t target_uid; - unsigned int target_sessionid; - u32 target_sid; - char target_comm[16]; - struct audit_tree_refs *trees; - struct audit_tree_refs *first_trees; - struct list_head killed_trees; - int tree_count; - int type; - union { - struct { - int nargs; - long int args[6]; - } socketcall; - struct { - kuid_t uid; - kgid_t gid; - umode_t mode; - u32 osid; - int has_perm; - uid_t perm_uid; - gid_t perm_gid; - umode_t perm_mode; - long unsigned int qbytes; - } ipc; - struct { - mqd_t mqdes; - struct mq_attr mqstat; - } mq_getsetattr; - struct { - mqd_t mqdes; - int sigev_signo; - } mq_notify; - struct { - mqd_t mqdes; - size_t msg_len; - unsigned int msg_prio; - struct timespec64 abs_timeout; - } mq_sendrecv; - struct { - int oflag; - umode_t mode; - struct mq_attr attr; - } mq_open; - struct { - pid_t pid; - struct audit_cap_data cap; - } capset; - struct { - int fd; - int flags; - } mmap; - struct open_how openat2; - struct { - int argc; - } execve; - struct { - const char *name; - } module; - struct { - struct audit_ntp_data ntp_data; - struct timespec64 tk_injoffset; - } time; - }; - int fds[2]; - struct audit_proctitle proctitle; -}; - -struct cpu_vfs_cap_data { - __u32 magic_etc; - kuid_t rootid; - kernel_cap_t permitted; - kernel_cap_t inheritable; -}; - -enum auditsc_class_t { - AUDITSC_NATIVE = 0, - AUDITSC_COMPAT = 1, - AUDITSC_OPEN = 2, - AUDITSC_OPENAT = 3, - AUDITSC_SOCKETCALL = 4, - AUDITSC_EXECVE = 5, - AUDITSC_OPENAT2 = 6, - AUDITSC_NVALS = 7, -}; - -enum { - Audit_equal = 0, - Audit_not_equal = 1, - Audit_bitmask = 2, - Audit_bittest = 3, - Audit_lt = 4, - Audit_gt = 5, - Audit_le = 6, - Audit_ge = 7, - Audit_bad = 8, -}; - -struct fanotify_response_info_header { - __u8 type; - __u8 pad; - __u16 len; -}; - -struct fanotify_response_info_audit_rule { - struct fanotify_response_info_header hdr; - __u32 rule_number; - __u32 subj_trust; - __u32 obj_trust; -}; - -struct audit_field; - -struct audit_watch; - -struct audit_tree; - -struct audit_fsnotify_mark; - -struct audit_krule { - u32 pflags; - u32 flags; - u32 listnr; - u32 action; - u32 mask[64]; - u32 buflen; - u32 field_count; - char *filterkey; - struct audit_field *fields; - struct audit_field *arch_f; - struct audit_field *inode_f; - struct audit_watch *watch; - struct audit_tree *tree; - struct audit_fsnotify_mark *exe; - struct list_head rlist; - struct list_head list; - u64 prio; -}; - -struct audit_field { - u32 type; - union { - u32 val; - kuid_t uid; - kgid_t gid; - struct { - char *lsm_str; - void *lsm_rule; - }; - }; - u32 op; -}; - -enum audit_nfcfgop { - AUDIT_XT_OP_REGISTER = 0, - AUDIT_XT_OP_REPLACE = 1, - AUDIT_XT_OP_UNREGISTER = 2, - AUDIT_NFT_OP_TABLE_REGISTER = 3, - AUDIT_NFT_OP_TABLE_UNREGISTER = 4, - AUDIT_NFT_OP_CHAIN_REGISTER = 5, - AUDIT_NFT_OP_CHAIN_UNREGISTER = 6, - AUDIT_NFT_OP_RULE_REGISTER = 7, - AUDIT_NFT_OP_RULE_UNREGISTER = 8, - AUDIT_NFT_OP_SET_REGISTER = 9, - AUDIT_NFT_OP_SET_UNREGISTER = 10, - AUDIT_NFT_OP_SETELEM_REGISTER = 11, - AUDIT_NFT_OP_SETELEM_UNREGISTER = 12, - AUDIT_NFT_OP_GEN_REGISTER = 13, - AUDIT_NFT_OP_OBJ_REGISTER = 14, - AUDIT_NFT_OP_OBJ_UNREGISTER = 15, - AUDIT_NFT_OP_OBJ_RESET = 16, - AUDIT_NFT_OP_FLOWTABLE_REGISTER = 17, - AUDIT_NFT_OP_FLOWTABLE_UNREGISTER = 18, - AUDIT_NFT_OP_SETELEM_RESET = 19, - AUDIT_NFT_OP_RULE_RESET = 20, - AUDIT_NFT_OP_INVALID = 21, -}; - -struct kern_ipc_perm { - spinlock_t lock; - bool deleted; - int id; - key_t key; - kuid_t uid; - kgid_t gid; - kuid_t cuid; - kgid_t cgid; - umode_t mode; - long unsigned int seq; - void *security; - struct rhash_head khtnode; - struct callback_head rcu; - refcount_t refcount; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct audit_entry { - struct list_head list; - struct callback_head rcu; - struct audit_krule rule; -}; - -struct audit_aux_data { - struct audit_aux_data *next; - int type; -}; - -struct audit_chunk; - -struct audit_tree_refs { - struct audit_tree_refs *next; - struct audit_chunk *c[31]; -}; - -struct audit_aux_data_pids { - struct audit_aux_data d; - pid_t target_pid[16]; - kuid_t target_auid[16]; - kuid_t target_uid[16]; - unsigned int target_sessionid[16]; - u32 target_sid[16]; - char target_comm[256]; - int pid_count; -}; - -struct audit_aux_data_bprm_fcaps { - struct audit_aux_data d; - struct audit_cap_data fcap; - unsigned int fcap_ver; - struct audit_cap_data old_pcap; - struct audit_cap_data new_pcap; -}; - -struct audit_nfcfgop_tab { - enum audit_nfcfgop op; - const char *s; -}; - -enum event_trigger_type { - ETT_NONE = 0, - ETT_TRACE_ONOFF = 1, - ETT_SNAPSHOT = 2, - ETT_STACKTRACE = 4, - ETT_EVENT_ENABLE = 8, - ETT_EVENT_HIST = 16, - ETT_HIST_ENABLE = 32, - ETT_EVENT_EPROBE = 64, -}; - -enum { - EVENT_TRIGGER_FL_PROBE = 1, -}; - -struct event_trigger_ops; - -struct event_command; - -struct event_trigger_data { - long unsigned int count; - int ref; - int flags; - struct event_trigger_ops *ops; - struct event_command *cmd_ops; - struct event_filter *filter; - char *filter_str; - void *private_data; - bool paused; - bool paused_tmp; - struct list_head list; - char *name; - struct list_head named_list; - struct event_trigger_data *named_data; -}; - -struct event_trigger_ops { - void (*trigger)(struct event_trigger_data *, struct trace_buffer *, void *, struct ring_buffer_event *); - int (*init)(struct event_trigger_data *); - void (*free)(struct event_trigger_data *); - int (*print)(struct seq_file *, struct event_trigger_data *); -}; - -struct event_command { - struct list_head list; - char *name; - enum event_trigger_type trigger_type; - int flags; - int (*parse)(struct event_command *, struct trace_event_file *, char *, char *, char *); - int (*reg)(char *, struct event_trigger_data *, struct trace_event_file *); - void (*unreg)(char *, struct event_trigger_data *, struct trace_event_file *); - void (*unreg_all)(struct trace_event_file *); - int (*set_filter)(char *, struct event_trigger_data *, struct trace_event_file *); - struct event_trigger_ops * (*get_trigger_ops)(char *, char *); -}; - -struct enable_trigger_data { - struct trace_event_file *file; - bool enable; - bool hist; -}; - -enum event_command_flags { - EVENT_CMD_FL_POST_TRIGGER = 1, - EVENT_CMD_FL_NEEDS_REC = 2, -}; - -struct bpf_iter_seq_map_info { - u32 map_id; -}; - -struct bpf_iter__bpf_map { - union { - struct bpf_iter_meta *meta; - }; - union { - struct bpf_map *map; - }; -}; - -enum { - BPF_RB_NO_WAKEUP = 1, - BPF_RB_FORCE_WAKEUP = 2, -}; - -enum { - BPF_RB_AVAIL_DATA = 0, - BPF_RB_RING_SIZE = 1, - BPF_RB_CONS_POS = 2, - BPF_RB_PROD_POS = 3, -}; - -enum { - BPF_RINGBUF_BUSY_BIT = 2147483648, - BPF_RINGBUF_DISCARD_BIT = 1073741824, - BPF_RINGBUF_HDR_SZ = 8, -}; - -struct bpf_dynptr_kern { - void *data; - u32 size; - u32 offset; -}; - -enum bpf_dynptr_type { - BPF_DYNPTR_TYPE_INVALID = 0, - BPF_DYNPTR_TYPE_LOCAL = 1, - BPF_DYNPTR_TYPE_RINGBUF = 2, - BPF_DYNPTR_TYPE_SKB = 3, - BPF_DYNPTR_TYPE_XDP = 4, -}; - -struct bpf_ringbuf { - wait_queue_head_t waitq; - struct irq_work work; - u64 mask; - struct page **pages; - int nr_pages; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - raw_spinlock_t spinlock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - atomic_t busy; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long unsigned int consumer_pos; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long unsigned int producer_pos; - long unsigned int pending_pos; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - char data[0]; -}; - -struct bpf_ringbuf_map { - struct bpf_map map; - struct bpf_ringbuf *rb; -}; - -struct bpf_ringbuf_hdr { - u32 len; - u32 pg_off; -}; - -typedef u64 (*btf_bpf_ringbuf_reserve)(struct bpf_map *, u64, u64); - -typedef u64 (*btf_bpf_ringbuf_submit)(void *, u64); - -typedef u64 (*btf_bpf_ringbuf_discard)(void *, u64); - -typedef u64 (*btf_bpf_ringbuf_output)(struct bpf_map *, void *, u64, u64); - -typedef u64 (*btf_bpf_ringbuf_query)(struct bpf_map *, u64); - -typedef u64 (*btf_bpf_ringbuf_reserve_dynptr)(struct bpf_map *, u32, u64, struct bpf_dynptr_kern *); - -typedef u64 (*btf_bpf_ringbuf_submit_dynptr)(struct bpf_dynptr_kern *, u64); - -typedef u64 (*btf_bpf_ringbuf_discard_dynptr)(struct bpf_dynptr_kern *, u64); - -typedef u64 (*btf_bpf_user_ringbuf_drain)(struct bpf_map *, void *, void *, u64); - -enum { - IORES_DESC_NONE = 0, - IORES_DESC_CRASH_KERNEL = 1, - IORES_DESC_ACPI_TABLES = 2, - IORES_DESC_ACPI_NV_STORAGE = 3, - IORES_DESC_PERSISTENT_MEMORY = 4, - IORES_DESC_PERSISTENT_MEMORY_LEGACY = 5, - IORES_DESC_DEVICE_PRIVATE_MEMORY = 6, - IORES_DESC_RESERVED = 7, - IORES_DESC_SOFT_RESERVED = 8, - IORES_DESC_CXL = 9, -}; - -enum { - REGION_INTERSECTS = 0, - REGION_DISJOINT = 1, - REGION_MIXED = 2, -}; - -struct radix_tree_iter { - long unsigned int index; - long unsigned int next_index; - long unsigned int tags; - struct xa_node *node; -}; - -enum { - RADIX_TREE_ITER_TAG_MASK = 15, - RADIX_TREE_ITER_TAGGED = 16, - RADIX_TREE_ITER_CONTIG = 32, -}; - -enum wb_state { - WB_registered = 0, - WB_writeback_running = 1, - WB_has_dirty_io = 2, - WB_start_all = 3, -}; - -enum { - CSS_NO_REF = 1, - CSS_ONLINE = 2, - CSS_RELEASED = 4, - CSS_VISIBLE = 8, - CSS_DYING = 16, -}; - -struct wb_stats { - long unsigned int nr_dirty; - long unsigned int nr_io; - long unsigned int nr_more_io; - long unsigned int nr_dirty_time; - long unsigned int nr_writeback; - long unsigned int nr_reclaimable; - long unsigned int nr_dirtied; - long unsigned int nr_written; - long unsigned int dirty_thresh; - long unsigned int wb_thresh; -}; - -enum page_walk_lock { - PGWALK_RDLOCK = 0, - PGWALK_WRLOCK = 1, - PGWALK_WRLOCK_VERIFY = 2, -}; - -struct mm_walk; - -struct mm_walk_ops { - int (*pgd_entry)(pgd_t *, long unsigned int, long unsigned int, struct mm_walk *); - int (*p4d_entry)(p4d_t *, long unsigned int, long unsigned int, struct mm_walk *); - int (*pud_entry)(pud_t *, long unsigned int, long unsigned int, struct mm_walk *); - int (*pmd_entry)(pmd_t *, long unsigned int, long unsigned int, struct mm_walk *); - int (*pte_entry)(pte_t *, long unsigned int, long unsigned int, struct mm_walk *); - int (*pte_hole)(long unsigned int, long unsigned int, int, struct mm_walk *); - int (*hugetlb_entry)(pte_t *, long unsigned int, long unsigned int, long unsigned int, struct mm_walk *); - int (*test_walk)(long unsigned int, long unsigned int, struct mm_walk *); - int (*pre_vma)(long unsigned int, long unsigned int, struct mm_walk *); - void (*post_vma)(struct mm_walk *); - enum page_walk_lock walk_lock; -}; - -enum page_walk_action { - ACTION_SUBTREE = 0, - ACTION_CONTINUE = 1, - ACTION_AGAIN = 2, -}; - -struct mm_walk { - const struct mm_walk_ops *ops; - struct mm_struct *mm; - pgd_t *pgd; - struct vm_area_struct *vma; - enum page_walk_action action; - bool no_vma; - void *private; -}; - -typedef int folio_walk_flags_t; - -enum folio_walk_level { - FW_LEVEL_PTE = 0, - FW_LEVEL_PMD = 1, - FW_LEVEL_PUD = 2, -}; - -struct folio_walk { - struct page *page; - enum folio_walk_level level; - union { - pte_t *ptep; - pud_t *pudp; - pmd_t *pmdp; - }; - union { - pte_t pte; - pud_t pud; - pmd_t pmd; - }; - struct vm_area_struct *vma; - spinlock_t *ptl; -}; - -typedef unsigned int zap_flags_t; - -struct encoded_page; - -struct zap_details { - struct folio *single_folio; - bool even_cows; - zap_flags_t zap_flags; -}; - -struct mempolicy {}; - -typedef long unsigned int pte_marker; - -struct resv_map { - struct kref refs; - spinlock_t lock; - struct list_head regions; - long int adds_in_progress; - struct list_head region_cache; - long int region_cache_count; - struct rw_semaphore rw_sema; - struct page_counter *reservation_counter; - long unsigned int pages_per_hpage; - struct cgroup_subsys_state *css; -}; - -struct file_region { - struct list_head link; - long int from; - long int to; - struct page_counter *reservation_counter; - struct cgroup_subsys_state *css; -}; - -struct hugetlb_vma_lock { - struct kref refs; - struct rw_semaphore rw_sema; - struct vm_area_struct *vma; -}; - -enum hugetlb_page_flags { - HPG_restore_reserve = 0, - HPG_migratable = 1, - HPG_temporary = 2, - HPG_freed = 3, - HPG_vmemmap_optimized = 4, - HPG_raw_hwp_unreliable = 5, - __NR_HPAGEFLAGS = 6, -}; - -struct huge_bootmem_page { - struct list_head list; - struct hstate *hstate; -}; - -struct padata_mt_job { - void (*thread_fn)(long unsigned int, long unsigned int, void *); - void *fn_arg; - long unsigned int start; - long unsigned int size; - long unsigned int align; - long unsigned int min_chunk; - int max_threads; - bool numa_aware; -}; - -struct mmu_table_batch { - struct callback_head rcu; - unsigned int nr; - void *tables[0]; -}; - -struct mmu_gather_batch { - struct mmu_gather_batch *next; - unsigned int nr; - unsigned int max; - struct encoded_page *encoded_pages[0]; -}; - -struct mmu_gather { - struct mm_struct *mm; - struct mmu_table_batch *batch; - long unsigned int start; - long unsigned int end; - unsigned int fullmm: 1; - unsigned int need_flush_all: 1; - unsigned int freed_tables: 1; - unsigned int delayed_rmap: 1; - unsigned int cleared_ptes: 1; - unsigned int cleared_pmds: 1; - unsigned int cleared_puds: 1; - unsigned int cleared_p4ds: 1; - unsigned int vma_exec: 1; - unsigned int vma_huge: 1; - unsigned int vma_pfn: 1; - unsigned int batch_count; - struct mmu_gather_batch *active; - struct mmu_gather_batch local; - struct page *__pages[8]; -}; - -enum hugetlb_memory_event { - HUGETLB_MAX = 0, - HUGETLB_NR_MEMORY_EVENTS = 1, -}; - -struct hugetlb_cgroup_per_node { - long unsigned int usage[4]; -}; - -struct hugetlb_cgroup { - struct cgroup_subsys_state css; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct page_counter hugepage[4]; - struct page_counter rsvd_hugepage[4]; - atomic_long_t events[4]; - atomic_long_t events_local[4]; - struct cgroup_file events_file[4]; - struct cgroup_file events_local_file[4]; - struct hugetlb_cgroup_per_node *nodeinfo[0]; -}; - -enum vma_resv_mode { - VMA_NEEDS_RESV = 0, - VMA_COMMIT_RESV = 1, - VMA_END_RESV = 2, - VMA_ADD_RESV = 3, - VMA_DEL_RESV = 4, -}; - -typedef __kernel_off_t off_t; - -typedef struct kobject *kobj_probe_t(dev_t, int *, void *); - -struct char_device_struct { - struct char_device_struct *next; - unsigned int major; - unsigned int baseminor; - int minorct; - char name[64]; - struct cdev *cdev; -}; - -struct mount; - -struct mnt_namespace { - struct ns_common ns; - struct mount *root; - struct rb_root mounts; - struct user_namespace *user_ns; - struct ucounts *ucounts; - u64 seq; - wait_queue_head_t poll; - u64 event; - unsigned int nr_mounts; - unsigned int pending_mounts; - struct rb_node mnt_ns_tree_node; - refcount_t passive; -}; - -struct fs_pin { - wait_queue_head_t wait; - int done; - struct hlist_node s_list; - struct hlist_node m_list; - void (*kill)(struct fs_pin *); -}; - -struct mnt_pcp; - -struct mountpoint; - -struct mount { - struct hlist_node mnt_hash; - struct mount *mnt_parent; - struct dentry *mnt_mountpoint; - struct vfsmount mnt; - union { - struct rb_node mnt_node; - struct callback_head mnt_rcu; - struct llist_node mnt_llist; - }; - struct mnt_pcp *mnt_pcp; - struct list_head mnt_mounts; - struct list_head mnt_child; - struct list_head mnt_instance; - const char *mnt_devname; - struct list_head mnt_list; - struct list_head mnt_expire; - struct list_head mnt_share; - struct list_head mnt_slave_list; - struct list_head mnt_slave; - struct mount *mnt_master; - struct mnt_namespace *mnt_ns; - struct mountpoint *mnt_mp; - union { - struct hlist_node mnt_mp_list; - struct hlist_node mnt_umount; - }; - struct list_head mnt_umounting; - struct fsnotify_mark_connector *mnt_fsnotify_marks; - __u32 mnt_fsnotify_mask; - int mnt_id; - u64 mnt_id_unique; - int mnt_group_id; - int mnt_expiry_mark; - struct hlist_head mnt_pins; - struct hlist_head mnt_stuck_children; -}; - -struct mnt_pcp { - int mnt_count; - int mnt_writers; -}; - -struct mountpoint { - struct hlist_node m_hash; - struct dentry *m_dentry; - struct hlist_head m_list; - int m_count; -}; - -struct fscrypt_prepared_key { - struct crypto_skcipher *tfm; -}; - -struct fscrypt_mode; - -struct fscrypt_master_key; - -struct fscrypt_direct_key; - -struct fscrypt_inode_info { - struct fscrypt_prepared_key ci_enc_key; - u8 ci_owns_key: 1; - u8 ci_dirhash_key_initialized: 1; - u8 ci_data_unit_bits; - u8 ci_data_units_per_block_bits; - u32 ci_hashed_ino; - struct fscrypt_mode *ci_mode; - struct inode *ci_inode; - struct fscrypt_master_key *ci_master_key; - struct list_head ci_master_key_link; - struct fscrypt_direct_key *ci_direct_key; - siphash_key_t ci_dirhash_key; - union fscrypt_policy ci_policy; - u8 ci_nonce[16]; -}; - -struct fscrypt_key_specifier { - __u32 type; - __u32 __reserved; - union { - __u8 __reserved[32]; - __u8 descriptor[8]; - __u8 identifier[16]; - } u; -}; - -struct fscrypt_mode { - const char *friendly_name; - const char *cipher_str; - int keysize; - int security_strength; - int ivsize; - int logged_cryptoapi_impl; - int logged_blk_crypto_native; - int logged_blk_crypto_fallback; - enum blk_crypto_mode_num blk_crypto_mode; -}; - -struct fscrypt_hkdf { - struct crypto_shash *hmac_tfm; -}; - -struct fscrypt_master_key_secret { - struct fscrypt_hkdf hkdf; - u32 size; - u8 raw[64]; -}; - -struct fscrypt_master_key { - struct hlist_node mk_node; - struct rw_semaphore mk_sem; - refcount_t mk_active_refs; - refcount_t mk_struct_refs; - struct callback_head mk_rcu_head; - struct fscrypt_master_key_secret mk_secret; - struct fscrypt_key_specifier mk_spec; - struct key *mk_users; - struct list_head mk_decrypted_inodes; - spinlock_t mk_decrypted_inodes_lock; - struct fscrypt_prepared_key mk_direct_keys[11]; - struct fscrypt_prepared_key mk_iv_ino_lblk_64_keys[11]; - struct fscrypt_prepared_key mk_iv_ino_lblk_32_keys[11]; - siphash_key_t mk_ino_hash_key; - bool mk_ino_hash_key_initialized; - bool mk_present; -}; - -typedef enum { - FS_DECRYPT = 0, - FS_ENCRYPT = 1, -} fscrypt_direction_t; - -union fscrypt_iv { - struct { - __le64 index; - u8 nonce[16]; - }; - u8 raw[32]; - __le64 dun[4]; -}; - -enum { - BIO_PAGE_PINNED = 0, - BIO_CLONED = 1, - BIO_BOUNCED = 2, - BIO_QUIET = 3, - BIO_CHAIN = 4, - BIO_REFFED = 5, - BIO_BPS_THROTTLED = 6, - BIO_TRACE_COMPLETION = 7, - BIO_CGROUP_ACCT = 8, - BIO_QOS_THROTTLED = 9, - BIO_QOS_MERGED = 10, - BIO_REMAPPED = 11, - BIO_ZONE_WRITE_PLUGGING = 12, - BIO_EMULATES_ZONE_APPEND = 13, - BIO_FLAG_LAST = 14, -}; - -struct folio_iter { - struct folio *folio; - size_t offset; - size_t length; - struct folio *_next; - size_t _seg_count; - int _i; -}; - -struct tree_descr { - const char *name; - const struct file_operations *ops; - int mode; -}; - -enum { - VERBOSE_STATUS = 1, -}; - -enum { - Enabled = 0, - Magic = 1, -}; - -typedef struct { - struct list_head list; - long unsigned int flags; - int offset; - int size; - char *magic; - char *mask; - const char *interpreter; - char *name; - struct dentry *dentry; - struct file *interp_file; - refcount_t users; -} Node; - -typedef struct {} local_lock_t; - -struct radix_tree_preload { - local_lock_t lock; - unsigned int nr; - struct xa_node *nodes; -}; - -enum kernfs_node_type { - KERNFS_DIR = 1, - KERNFS_FILE = 2, - KERNFS_LINK = 4, -}; - -enum kernfs_node_flag { - KERNFS_ACTIVATED = 16, - KERNFS_NS = 32, - KERNFS_HAS_SEQ_SHOW = 64, - KERNFS_HAS_MMAP = 128, - KERNFS_LOCKDEP = 256, - KERNFS_HIDDEN = 512, - KERNFS_SUICIDAL = 1024, - KERNFS_SUICIDED = 2048, - KERNFS_EMPTY_DIR = 4096, - KERNFS_HAS_RELEASE = 8192, - KERNFS_REMOVING = 16384, -}; - -enum kernfs_root_flag { - KERNFS_ROOT_CREATE_DEACTIVATED = 1, - KERNFS_ROOT_EXTRA_OPEN_PERM_CHECK = 2, - KERNFS_ROOT_SUPPORT_EXPORTOP = 4, - KERNFS_ROOT_SUPPORT_USER_XATTR = 8, -}; - -struct kernfs_syscall_ops; - -struct kernfs_root { - struct kernfs_node *kn; - unsigned int flags; - struct idr ino_idr; - u32 last_id_lowbits; - u32 id_highbits; - struct kernfs_syscall_ops *syscall_ops; - struct list_head supers; - wait_queue_head_t deactivate_waitq; - struct rw_semaphore kernfs_rwsem; - struct rw_semaphore kernfs_iattr_rwsem; - struct rw_semaphore kernfs_supers_rwsem; - struct callback_head rcu; -}; - -struct kernfs_iattrs { - kuid_t ia_uid; - kgid_t ia_gid; - struct timespec64 ia_atime; - struct timespec64 ia_mtime; - struct timespec64 ia_ctime; - struct simple_xattrs xattrs; - atomic_t nr_user_xattrs; - atomic_t user_xattr_size; -}; - -struct kernfs_syscall_ops { - int (*show_options)(struct seq_file *, struct kernfs_root *); - int (*mkdir)(struct kernfs_node *, const char *, umode_t); - int (*rmdir)(struct kernfs_node *); - int (*rename)(struct kernfs_node *, struct kernfs_node *, const char *); - int (*show_path)(struct seq_file *, struct kernfs_node *, struct kernfs_root *); -}; - -struct kernfs_super_info { - struct super_block *sb; - struct kernfs_root *root; - const void *ns; - struct list_head node; -}; - -enum fscache_volume_trace { - fscache_volume_collision = 0, - fscache_volume_get_cookie = 1, - fscache_volume_get_create_work = 2, - fscache_volume_get_hash_collision = 3, - fscache_volume_get_withdraw = 4, - fscache_volume_free = 5, - fscache_volume_new_acquire = 6, - fscache_volume_put_cookie = 7, - fscache_volume_put_create_work = 8, - fscache_volume_put_hash_collision = 9, - fscache_volume_put_relinquish = 10, - fscache_volume_put_withdraw = 11, - fscache_volume_see_create_work = 12, - fscache_volume_see_hash_wake = 13, - fscache_volume_wait_create_work = 14, -}; - -enum fscache_cookie_trace { - fscache_cookie_collision = 0, - fscache_cookie_discard = 1, - fscache_cookie_failed = 2, - fscache_cookie_get_attach_object = 3, - fscache_cookie_get_end_access = 4, - fscache_cookie_get_hash_collision = 5, - fscache_cookie_get_inval_work = 6, - fscache_cookie_get_lru = 7, - fscache_cookie_get_use_work = 8, - fscache_cookie_new_acquire = 9, - fscache_cookie_put_hash_collision = 10, - fscache_cookie_put_lru = 11, - fscache_cookie_put_object = 12, - fscache_cookie_put_over_queued = 13, - fscache_cookie_put_relinquish = 14, - fscache_cookie_put_withdrawn = 15, - fscache_cookie_put_work = 16, - fscache_cookie_see_active = 17, - fscache_cookie_see_lru_discard = 18, - fscache_cookie_see_lru_discard_clear = 19, - fscache_cookie_see_lru_do_one = 20, - fscache_cookie_see_relinquish = 21, - fscache_cookie_see_withdraw = 22, - fscache_cookie_see_work = 23, -}; - -enum fscache_active_trace { - fscache_active_use = 0, - fscache_active_use_modify = 1, - fscache_active_unuse = 2, -}; - -struct commit_header { - __be32 h_magic; - __be32 h_blocktype; - __be32 h_sequence; - unsigned char h_chksum_type; - unsigned char h_chksum_size; - unsigned char h_padding[2]; - __be32 h_chksum[8]; - __be64 h_commit_sec; - __be32 h_commit_nsec; -}; - -struct journal_block_tag3_s { - __be32 t_blocknr; - __be32 t_flags; - __be32 t_blocknr_high; - __be32 t_checksum; -}; - -typedef struct journal_block_tag3_s journal_block_tag3_t; - -struct journal_block_tag_s { - __be32 t_blocknr; - __be16 t_checksum; - __be16 t_flags; - __be32 t_blocknr_high; -}; - -typedef struct journal_block_tag_s journal_block_tag_t; - -enum jbd2_shrink_type { - JBD2_SHRINK_DESTROY = 0, - JBD2_SHRINK_BUSY_STOP = 1, - JBD2_SHRINK_BUSY_SKIP = 2, -}; - -enum utf16_endian { - UTF16_HOST_ENDIAN = 0, - UTF16_LITTLE_ENDIAN = 1, - UTF16_BIG_ENDIAN = 2, -}; - -struct msdos_dir_slot { - __u8 id; - __u8 name0_4[10]; - __u8 attr; - __u8 reserved; - __u8 alias_checksum; - __u8 name5_10[12]; - __le16 start; - __u8 name11_12[4]; -}; - -struct fat_slot_info { - loff_t i_pos; - loff_t slot_off; - int nr_slots; - struct msdos_dir_entry *de; - struct buffer_head *bh; -}; - -struct shortname_info { - unsigned char lower: 1; - unsigned char upper: 1; - unsigned char valid: 1; -}; - -typedef unsigned int __kernel_mode_t; - -typedef __kernel_mode_t mode_t; - -typedef int __kernel_rwf_t; - -enum nfs_cb_opnum4 { - OP_CB_GETATTR = 3, - OP_CB_RECALL = 4, - OP_CB_LAYOUTRECALL = 5, - OP_CB_NOTIFY = 6, - OP_CB_PUSH_DELEG = 7, - OP_CB_RECALL_ANY = 8, - OP_CB_RECALLABLE_OBJ_AVAIL = 9, - OP_CB_RECALL_SLOT = 10, - OP_CB_SEQUENCE = 11, - OP_CB_WANTS_CANCELLED = 12, - OP_CB_NOTIFY_LOCK = 13, - OP_CB_NOTIFY_DEVICEID = 14, - OP_CB_OFFLOAD = 15, - OP_CB_ILLEGAL = 10044, -}; - -struct trace_event_raw_nfs_inode_event { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - u64 version; - char __data[0]; -}; - -struct trace_event_raw_nfs_inode_event_done { - struct trace_entry ent; - long unsigned int error; - dev_t dev; - u32 fhandle; - unsigned char type; - u64 fileid; - u64 version; - loff_t size; - long unsigned int nfsi_flags; - long unsigned int cache_validity; - char __data[0]; -}; - -struct trace_event_raw_nfs_access_exit { - struct trace_entry ent; - long unsigned int error; - dev_t dev; - u32 fhandle; - unsigned char type; - u64 fileid; - u64 version; - loff_t size; - long unsigned int nfsi_flags; - long unsigned int cache_validity; - unsigned int mask; - unsigned int permitted; - char __data[0]; -}; - -struct trace_event_raw_nfs_update_size_class { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - u64 version; - loff_t cur_size; - loff_t new_size; - char __data[0]; -}; - -struct trace_event_raw_nfs_inode_range_event { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - u64 version; - loff_t range_start; - loff_t range_end; - char __data[0]; -}; - -struct trace_event_raw_nfs_readdir_event { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - u64 version; - char verifier[8]; - u64 cookie; - long unsigned int index; - unsigned int dtsize; - char __data[0]; -}; - -struct trace_event_raw_nfs_lookup_event { - struct trace_entry ent; - long unsigned int flags; - dev_t dev; - u64 dir; - u64 fileid; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfs_lookup_event_done { - struct trace_entry ent; - long unsigned int error; - long unsigned int flags; - dev_t dev; - u64 dir; - u64 fileid; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfs_atomic_open_enter { - struct trace_entry ent; - long unsigned int flags; - long unsigned int fmode; - dev_t dev; - u64 dir; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfs_atomic_open_exit { - struct trace_entry ent; - long unsigned int error; - long unsigned int flags; - long unsigned int fmode; - dev_t dev; - u64 dir; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfs_create_enter { - struct trace_entry ent; - long unsigned int flags; - dev_t dev; - u64 dir; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfs_create_exit { - struct trace_entry ent; - long unsigned int error; - long unsigned int flags; - dev_t dev; - u64 dir; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfs_directory_event { - struct trace_entry ent; - dev_t dev; - u64 dir; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfs_directory_event_done { - struct trace_entry ent; - long unsigned int error; - dev_t dev; - u64 dir; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfs_link_enter { - struct trace_entry ent; - dev_t dev; - u64 fileid; - u64 dir; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfs_link_exit { - struct trace_entry ent; - long unsigned int error; - dev_t dev; - u64 fileid; - u64 dir; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfs_rename_event { - struct trace_entry ent; - dev_t dev; - u64 old_dir; - u64 new_dir; - u32 __data_loc_old_name; - u32 __data_loc_new_name; - char __data[0]; -}; - -struct trace_event_raw_nfs_rename_event_done { - struct trace_entry ent; - dev_t dev; - long unsigned int error; - u64 old_dir; - u32 __data_loc_old_name; - u64 new_dir; - u32 __data_loc_new_name; - char __data[0]; -}; - -struct trace_event_raw_nfs_sillyrename_unlink { - struct trace_entry ent; - dev_t dev; - long unsigned int error; - u64 dir; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfs_folio_event { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - u64 version; - loff_t offset; - size_t count; - char __data[0]; -}; - -struct trace_event_raw_nfs_folio_event_done { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - int ret; - u64 fileid; - u64 version; - loff_t offset; - size_t count; - char __data[0]; -}; - -struct trace_event_raw_nfs_aop_readahead { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - u64 version; - loff_t offset; - unsigned int nr_pages; - char __data[0]; -}; - -struct trace_event_raw_nfs_aop_readahead_done { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - int ret; - u64 fileid; - u64 version; - loff_t offset; - unsigned int nr_pages; - char __data[0]; -}; - -struct trace_event_raw_nfs_initiate_read { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - loff_t offset; - u32 count; - char __data[0]; -}; - -struct trace_event_raw_nfs_readpage_done { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - loff_t offset; - u32 arg_count; - u32 res_count; - bool eof; - int error; - char __data[0]; -}; - -struct trace_event_raw_nfs_readpage_short { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - loff_t offset; - u32 arg_count; - u32 res_count; - bool eof; - int error; - char __data[0]; -}; - -struct trace_event_raw_nfs_pgio_error { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - loff_t offset; - u32 arg_count; - u32 res_count; - loff_t pos; - int error; - char __data[0]; -}; - -struct trace_event_raw_nfs_initiate_write { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - loff_t offset; - u32 count; - long unsigned int stable; - char __data[0]; -}; - -struct trace_event_raw_nfs_writeback_done { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - loff_t offset; - u32 arg_count; - u32 res_count; - int error; - long unsigned int stable; - char verifier[8]; - char __data[0]; -}; - -struct trace_event_raw_nfs_page_error_class { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - loff_t offset; - unsigned int count; - int error; - char __data[0]; -}; - -struct trace_event_raw_nfs_initiate_commit { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - loff_t offset; - u32 count; - char __data[0]; -}; - -struct trace_event_raw_nfs_commit_done { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - loff_t offset; - int error; - long unsigned int stable; - char verifier[8]; - char __data[0]; -}; - -struct trace_event_raw_nfs_direct_req_class { - struct trace_entry ent; - dev_t dev; - u64 fileid; - u32 fhandle; - loff_t offset; - ssize_t count; - ssize_t error; - int flags; - char __data[0]; -}; - -struct trace_event_raw_nfs_fh_to_dentry { - struct trace_entry ent; - int error; - dev_t dev; - u32 fhandle; - u64 fileid; - char __data[0]; -}; - -struct trace_event_raw_nfs_mount_assign { - struct trace_entry ent; - u32 __data_loc_option; - u32 __data_loc_value; - char __data[0]; -}; - -struct trace_event_raw_nfs_mount_option { - struct trace_entry ent; - u32 __data_loc_option; - char __data[0]; -}; - -struct trace_event_raw_nfs_mount_path { - struct trace_entry ent; - u32 __data_loc_path; - char __data[0]; -}; - -struct trace_event_raw_nfs_local_open_fh { - struct trace_entry ent; - int error; - u32 fhandle; - unsigned int fmode; - char __data[0]; -}; - -struct trace_event_raw_nfs_local_client_event { - struct trace_entry ent; - unsigned int protocol; - u32 __data_loc_server; - char __data[0]; -}; - -struct trace_event_raw_nfs_xdr_event { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - u32 xid; - int version; - long unsigned int error; - u32 __data_loc_program; - u32 __data_loc_procedure; - char __data[0]; -}; - -struct trace_event_data_offsets_nfs_inode_event {}; - -struct trace_event_data_offsets_nfs_inode_event_done {}; - -struct trace_event_data_offsets_nfs_access_exit {}; - -struct trace_event_data_offsets_nfs_update_size_class {}; - -struct trace_event_data_offsets_nfs_inode_range_event {}; - -struct trace_event_data_offsets_nfs_readdir_event {}; - -struct trace_event_data_offsets_nfs_lookup_event { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfs_lookup_event_done { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfs_atomic_open_enter { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfs_atomic_open_exit { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfs_create_enter { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfs_create_exit { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfs_directory_event { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfs_directory_event_done { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfs_link_enter { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfs_link_exit { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfs_rename_event { - u32 old_name; - const void *old_name_ptr_; - u32 new_name; - const void *new_name_ptr_; -}; - -struct trace_event_data_offsets_nfs_rename_event_done { - u32 old_name; - const void *old_name_ptr_; - u32 new_name; - const void *new_name_ptr_; -}; - -struct trace_event_data_offsets_nfs_sillyrename_unlink { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfs_folio_event {}; - -struct trace_event_data_offsets_nfs_folio_event_done {}; - -struct trace_event_data_offsets_nfs_aop_readahead {}; - -struct trace_event_data_offsets_nfs_aop_readahead_done {}; - -struct trace_event_data_offsets_nfs_initiate_read {}; - -struct trace_event_data_offsets_nfs_readpage_done {}; - -struct trace_event_data_offsets_nfs_readpage_short {}; - -struct trace_event_data_offsets_nfs_pgio_error {}; - -struct trace_event_data_offsets_nfs_initiate_write {}; - -struct trace_event_data_offsets_nfs_writeback_done {}; - -struct trace_event_data_offsets_nfs_page_error_class {}; - -struct trace_event_data_offsets_nfs_initiate_commit {}; - -struct trace_event_data_offsets_nfs_commit_done {}; - -struct trace_event_data_offsets_nfs_direct_req_class {}; - -struct trace_event_data_offsets_nfs_fh_to_dentry {}; - -struct trace_event_data_offsets_nfs_mount_assign { - u32 option; - const void *option_ptr_; - u32 value; - const void *value_ptr_; -}; - -struct trace_event_data_offsets_nfs_mount_option { - u32 option; - const void *option_ptr_; -}; - -struct trace_event_data_offsets_nfs_mount_path { - u32 path; - const void *path_ptr_; -}; - -struct trace_event_data_offsets_nfs_local_open_fh {}; - -struct trace_event_data_offsets_nfs_local_client_event { - u32 server; - const void *server_ptr_; -}; - -struct trace_event_data_offsets_nfs_xdr_event { - u32 program; - const void *program_ptr_; - u32 procedure; - const void *procedure_ptr_; -}; - -typedef void (*btf_trace_nfs_set_inode_stale)(void *, const struct inode *); - -typedef void (*btf_trace_nfs_refresh_inode_enter)(void *, const struct inode *); - -typedef void (*btf_trace_nfs_refresh_inode_exit)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs_revalidate_inode_enter)(void *, const struct inode *); - -typedef void (*btf_trace_nfs_revalidate_inode_exit)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs_invalidate_mapping_enter)(void *, const struct inode *); - -typedef void (*btf_trace_nfs_invalidate_mapping_exit)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs_getattr_enter)(void *, const struct inode *); - -typedef void (*btf_trace_nfs_getattr_exit)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs_setattr_enter)(void *, const struct inode *); - -typedef void (*btf_trace_nfs_setattr_exit)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs_writeback_inode_enter)(void *, const struct inode *); - -typedef void (*btf_trace_nfs_writeback_inode_exit)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs_fsync_enter)(void *, const struct inode *); - -typedef void (*btf_trace_nfs_fsync_exit)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs_access_enter)(void *, const struct inode *); - -typedef void (*btf_trace_nfs_set_cache_invalid)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs_readdir_force_readdirplus)(void *, const struct inode *); - -typedef void (*btf_trace_nfs_readdir_cache_fill_done)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs_readdir_uncached_done)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs_access_exit)(void *, const struct inode *, unsigned int, unsigned int, int); - -typedef void (*btf_trace_nfs_size_truncate)(void *, const struct inode *, loff_t); - -typedef void (*btf_trace_nfs_size_wcc)(void *, const struct inode *, loff_t); - -typedef void (*btf_trace_nfs_size_update)(void *, const struct inode *, loff_t); - -typedef void (*btf_trace_nfs_size_grow)(void *, const struct inode *, loff_t); - -typedef void (*btf_trace_nfs_readdir_invalidate_cache_range)(void *, const struct inode *, loff_t, loff_t); - -typedef void (*btf_trace_nfs_readdir_cache_fill)(void *, const struct file *, const __be32 *, u64, long unsigned int, unsigned int); - -typedef void (*btf_trace_nfs_readdir_uncached)(void *, const struct file *, const __be32 *, u64, long unsigned int, unsigned int); - -typedef void (*btf_trace_nfs_lookup_enter)(void *, const struct inode *, const struct dentry *, unsigned int); - -typedef void (*btf_trace_nfs_lookup_exit)(void *, const struct inode *, const struct dentry *, unsigned int, int); - -typedef void (*btf_trace_nfs_lookup_revalidate_enter)(void *, const struct inode *, const struct dentry *, unsigned int); - -typedef void (*btf_trace_nfs_lookup_revalidate_exit)(void *, const struct inode *, const struct dentry *, unsigned int, int); - -typedef void (*btf_trace_nfs_readdir_lookup)(void *, const struct inode *, const struct dentry *, unsigned int); - -typedef void (*btf_trace_nfs_readdir_lookup_revalidate_failed)(void *, const struct inode *, const struct dentry *, unsigned int); - -typedef void (*btf_trace_nfs_readdir_lookup_revalidate)(void *, const struct inode *, const struct dentry *, unsigned int, int); - -typedef void (*btf_trace_nfs_atomic_open_enter)(void *, const struct inode *, const struct nfs_open_context *, unsigned int); - -typedef void (*btf_trace_nfs_atomic_open_exit)(void *, const struct inode *, const struct nfs_open_context *, unsigned int, int); - -typedef void (*btf_trace_nfs_create_enter)(void *, const struct inode *, const struct dentry *, unsigned int); - -typedef void (*btf_trace_nfs_create_exit)(void *, const struct inode *, const struct dentry *, unsigned int, int); - -typedef void (*btf_trace_nfs_mknod_enter)(void *, const struct inode *, const struct dentry *); - -typedef void (*btf_trace_nfs_mknod_exit)(void *, const struct inode *, const struct dentry *, int); - -typedef void (*btf_trace_nfs_mkdir_enter)(void *, const struct inode *, const struct dentry *); - -typedef void (*btf_trace_nfs_mkdir_exit)(void *, const struct inode *, const struct dentry *, int); - -typedef void (*btf_trace_nfs_rmdir_enter)(void *, const struct inode *, const struct dentry *); - -typedef void (*btf_trace_nfs_rmdir_exit)(void *, const struct inode *, const struct dentry *, int); - -typedef void (*btf_trace_nfs_remove_enter)(void *, const struct inode *, const struct dentry *); - -typedef void (*btf_trace_nfs_remove_exit)(void *, const struct inode *, const struct dentry *, int); - -typedef void (*btf_trace_nfs_unlink_enter)(void *, const struct inode *, const struct dentry *); - -typedef void (*btf_trace_nfs_unlink_exit)(void *, const struct inode *, const struct dentry *, int); - -typedef void (*btf_trace_nfs_symlink_enter)(void *, const struct inode *, const struct dentry *); - -typedef void (*btf_trace_nfs_symlink_exit)(void *, const struct inode *, const struct dentry *, int); - -typedef void (*btf_trace_nfs_link_enter)(void *, const struct inode *, const struct inode *, const struct dentry *); - -typedef void (*btf_trace_nfs_link_exit)(void *, const struct inode *, const struct inode *, const struct dentry *, int); - -typedef void (*btf_trace_nfs_rename_enter)(void *, const struct inode *, const struct dentry *, const struct inode *, const struct dentry *); - -typedef void (*btf_trace_nfs_rename_exit)(void *, const struct inode *, const struct dentry *, const struct inode *, const struct dentry *, int); - -typedef void (*btf_trace_nfs_async_rename_done)(void *, const struct inode *, const struct dentry *, const struct inode *, const struct dentry *, int); - -typedef void (*btf_trace_nfs_sillyrename_unlink)(void *, const struct nfs_unlinkdata *, int); - -typedef void (*btf_trace_nfs_aop_readpage)(void *, const struct inode *, loff_t, size_t); - -typedef void (*btf_trace_nfs_aop_readpage_done)(void *, const struct inode *, loff_t, size_t, int); - -typedef void (*btf_trace_nfs_writeback_folio)(void *, const struct inode *, loff_t, size_t); - -typedef void (*btf_trace_nfs_writeback_folio_done)(void *, const struct inode *, loff_t, size_t, int); - -typedef void (*btf_trace_nfs_invalidate_folio)(void *, const struct inode *, loff_t, size_t); - -typedef void (*btf_trace_nfs_launder_folio_done)(void *, const struct inode *, loff_t, size_t, int); - -typedef void (*btf_trace_nfs_aop_readahead)(void *, const struct inode *, loff_t, unsigned int); - -typedef void (*btf_trace_nfs_aop_readahead_done)(void *, const struct inode *, unsigned int, int); - -typedef void (*btf_trace_nfs_initiate_read)(void *, const struct nfs_pgio_header *); - -typedef void (*btf_trace_nfs_readpage_done)(void *, const struct rpc_task *, const struct nfs_pgio_header *); - -typedef void (*btf_trace_nfs_readpage_short)(void *, const struct rpc_task *, const struct nfs_pgio_header *); - -typedef void (*btf_trace_nfs_pgio_error)(void *, const struct nfs_pgio_header *, int, loff_t); - -typedef void (*btf_trace_nfs_initiate_write)(void *, const struct nfs_pgio_header *); - -typedef void (*btf_trace_nfs_writeback_done)(void *, const struct rpc_task *, const struct nfs_pgio_header *); - -typedef void (*btf_trace_nfs_write_error)(void *, const struct inode *, const struct nfs_page *, int); - -typedef void (*btf_trace_nfs_comp_error)(void *, const struct inode *, const struct nfs_page *, int); - -typedef void (*btf_trace_nfs_commit_error)(void *, const struct inode *, const struct nfs_page *, int); - -typedef void (*btf_trace_nfs_initiate_commit)(void *, const struct nfs_commit_data *); - -typedef void (*btf_trace_nfs_commit_done)(void *, const struct rpc_task *, const struct nfs_commit_data *); - -typedef void (*btf_trace_nfs_direct_commit_complete)(void *, const struct nfs_direct_req *); - -typedef void (*btf_trace_nfs_direct_resched_write)(void *, const struct nfs_direct_req *); - -typedef void (*btf_trace_nfs_direct_write_complete)(void *, const struct nfs_direct_req *); - -typedef void (*btf_trace_nfs_direct_write_completion)(void *, const struct nfs_direct_req *); - -typedef void (*btf_trace_nfs_direct_write_schedule_iovec)(void *, const struct nfs_direct_req *); - -typedef void (*btf_trace_nfs_direct_write_reschedule_io)(void *, const struct nfs_direct_req *); - -typedef void (*btf_trace_nfs_fh_to_dentry)(void *, const struct super_block *, const struct nfs_fh *, u64, int); - -typedef void (*btf_trace_nfs_mount_assign)(void *, const char *, const char *); - -typedef void (*btf_trace_nfs_mount_option)(void *, const struct fs_parameter *); - -typedef void (*btf_trace_nfs_mount_path)(void *, const char *); - -typedef void (*btf_trace_nfs_local_open_fh)(void *, const struct nfs_fh *, fmode_t, int); - -typedef void (*btf_trace_nfs_local_enable)(void *, const struct nfs_client *); - -typedef void (*btf_trace_nfs_local_disable)(void *, const struct nfs_client *); - -typedef void (*btf_trace_nfs_xdr_status)(void *, const struct xdr_stream *, int); - -typedef void (*btf_trace_nfs_xdr_bad_filehandle)(void *, const struct xdr_stream *, int); - -enum pnfs_layouttype { - LAYOUT_NFSV4_1_FILES = 1, - LAYOUT_OSD2_OBJECTS = 2, - LAYOUT_BLOCK_VOLUME = 3, - LAYOUT_FLEX_FILES = 4, - LAYOUT_SCSI = 5, - LAYOUT_TYPE_MAX = 6, -}; - -enum pnfs_block_extent_state { - PNFS_BLOCK_READWRITE_DATA = 0, - PNFS_BLOCK_READ_DATA = 1, - PNFS_BLOCK_INVALID_DATA = 2, - PNFS_BLOCK_NONE_DATA = 3, -}; - -enum { - NFS_LSEG_VALID = 0, - NFS_LSEG_ROC = 1, - NFS_LSEG_LAYOUTCOMMIT = 2, - NFS_LSEG_LAYOUTRETURN = 3, - NFS_LSEG_UNAVAILABLE = 4, -}; - -enum layoutdriver_policy_flags { - PNFS_LAYOUTRET_ON_SETATTR = 1, - PNFS_LAYOUTRET_ON_ERROR = 2, - PNFS_READ_WHOLE_PAGE = 4, - PNFS_LAYOUTGET_ON_OPEN = 8, -}; - -enum { - NFS_DEVICEID_INVALID = 0, - NFS_DEVICEID_UNAVAILABLE = 1, - NFS_DEVICEID_NOCACHE = 2, -}; - -struct pnfs_block_extent { - union { - struct rb_node be_node; - struct list_head be_list; - }; - struct nfs4_deviceid_node *be_device; - sector_t be_f_offset; - sector_t be_length; - sector_t be_v_offset; - enum pnfs_block_extent_state be_state; - unsigned int be_tag; -}; - -struct pnfs_block_layout { - struct pnfs_layout_hdr bl_layout; - struct rb_root bl_ext_rw; - struct rb_root bl_ext_ro; - spinlock_t bl_ext_lock; - bool bl_scsi_layout; - u64 bl_lwb; -}; - -struct parallel_io { - struct kref refcnt; - void (*pnfs_callback)(void *); - void *data; -}; - -struct layout_verification { - u32 mode; - u64 start; - u64 inval; - u64 cowread; -}; - -struct nlmsvc_binding { - __be32 (*fopen)(struct svc_rqst *, struct nfs_fh *, struct file **, int); - void (*fclose)(struct file *); -}; - -struct nfsd4_fs_location { - char *hosts; - char *path; -}; - -struct nfsd4_fs_locations { - uint32_t locations_count; - struct nfsd4_fs_location *locations; - int migrated; -}; - -struct exp_flavor_info { - u32 pseudoflavor; - u32 flags; -}; - -struct export_stats { - time64_t start_time; - struct percpu_counter counter[3]; -}; - -struct nfsd4_deviceid_map; - -struct svc_export { - struct cache_head h; - struct auth_domain *ex_client; - int ex_flags; - int ex_fsid; - struct path ex_path; - kuid_t ex_anon_uid; - kgid_t ex_anon_gid; - unsigned char *ex_uuid; - struct nfsd4_fs_locations ex_fslocs; - uint32_t ex_nflavors; - struct exp_flavor_info ex_flavors[8]; - u32 ex_layout_types; - struct nfsd4_deviceid_map *ex_devid_map; - struct cache_detail *cd; - struct callback_head ex_rcu; - long unsigned int ex_xprtsec_modes; - struct export_stats *ex_stats; -}; - -enum { - NFSERR_DROPIT = 10097, - NFSERR_EOF = 10098, - NFSERR_REPLAY_ME = 10099, - NFSERR_REPLAY_CACHE = 10100, - NFSERR_SYMLINK_NOT_DIR = 10101, -}; - -struct knfsd_fh { - unsigned int fh_size; - union { - char fh_raw[128]; - struct { - u8 fh_version; - u8 fh_auth_type; - u8 fh_fsid_type; - u8 fh_fileid_type; - u32 fh_fsid[0]; - }; - }; -}; - -struct svc_fh { - struct knfsd_fh fh_handle; - int fh_maxsize; - struct dentry *fh_dentry; - struct svc_export *fh_export; - bool fh_want_write; - bool fh_no_wcc; - bool fh_no_atomic_attr; - bool fh_use_wgather; - bool fh_64bit_cookies; - int fh_flags; - bool fh_post_saved; - bool fh_pre_saved; - __u64 fh_pre_size; - struct timespec64 fh_pre_mtime; - struct timespec64 fh_pre_ctime; - u64 fh_pre_change; - struct kstat fh_post_attr; - u64 fh_post_change; -}; - -enum { - FATTR4_SUPPORTED_ATTRS = 0, - FATTR4_TYPE = 1, - FATTR4_FH_EXPIRE_TYPE = 2, - FATTR4_CHANGE = 3, - FATTR4_SIZE = 4, - FATTR4_LINK_SUPPORT = 5, - FATTR4_SYMLINK_SUPPORT = 6, - FATTR4_NAMED_ATTR = 7, - FATTR4_FSID = 8, - FATTR4_UNIQUE_HANDLES = 9, - FATTR4_LEASE_TIME = 10, - FATTR4_RDATTR_ERROR = 11, - FATTR4_ACL = 12, - FATTR4_ACLSUPPORT = 13, - FATTR4_ARCHIVE = 14, - FATTR4_CANSETTIME = 15, - FATTR4_CASE_INSENSITIVE = 16, - FATTR4_CASE_PRESERVING = 17, - FATTR4_CHOWN_RESTRICTED = 18, - FATTR4_FILEHANDLE = 19, - FATTR4_FILEID = 20, - FATTR4_FILES_AVAIL = 21, - FATTR4_FILES_FREE = 22, - FATTR4_FILES_TOTAL = 23, - FATTR4_FS_LOCATIONS = 24, - FATTR4_HIDDEN = 25, - FATTR4_HOMOGENEOUS = 26, - FATTR4_MAXFILESIZE = 27, - FATTR4_MAXLINK = 28, - FATTR4_MAXNAME = 29, - FATTR4_MAXREAD = 30, - FATTR4_MAXWRITE = 31, - FATTR4_MIMETYPE = 32, - FATTR4_MODE = 33, - FATTR4_NO_TRUNC = 34, - FATTR4_NUMLINKS = 35, - FATTR4_OWNER = 36, - FATTR4_OWNER_GROUP = 37, - FATTR4_QUOTA_AVAIL_HARD = 38, - FATTR4_QUOTA_AVAIL_SOFT = 39, - FATTR4_QUOTA_USED = 40, - FATTR4_RAWDEV = 41, - FATTR4_SPACE_AVAIL = 42, - FATTR4_SPACE_FREE = 43, - FATTR4_SPACE_TOTAL = 44, - FATTR4_SPACE_USED = 45, - FATTR4_SYSTEM = 46, - FATTR4_TIME_ACCESS = 47, - FATTR4_TIME_ACCESS_SET = 48, - FATTR4_TIME_BACKUP = 49, - FATTR4_TIME_CREATE = 50, - FATTR4_TIME_DELTA = 51, - FATTR4_TIME_METADATA = 52, - FATTR4_TIME_MODIFY = 53, - FATTR4_TIME_MODIFY_SET = 54, - FATTR4_MOUNTED_ON_FILEID = 55, -}; - -struct nfs4_op_map { - union { - long unsigned int longs[2]; - u32 words[4]; - } u; -}; - -typedef void (*rpc_action)(struct rpc_task *); - -struct rpc_create_args { - struct net *net; - int protocol; - struct sockaddr *address; - size_t addrsize; - struct sockaddr *saddress; - const struct rpc_timeout *timeout; - const char *servername; - const char *nodename; - const struct rpc_program *program; - struct rpc_stat *stats; - u32 prognumber; - u32 version; - rpc_authflavor_t authflavor; - u32 nconnect; - long unsigned int flags; - char *client_name; - struct svc_xprt *bc_xprt; - const struct cred *cred; - unsigned int max_connect; - struct xprtsec_parms xprtsec; - long unsigned int connect_timeout; - long unsigned int reconnect_timeout; -}; - -struct svc_xpt_user { - struct list_head list; - void (*callback)(struct svc_xpt_user *); -}; - -struct nfsdfs_client { - struct kref cl_ref; - void (*cl_release)(struct kref *); -}; - -typedef struct { - u32 cl_boot; - u32 cl_id; -} clientid_t; - -typedef struct { - clientid_t so_clid; - u32 so_id; -} stateid_opaque_t; - -typedef struct { - u32 si_generation; - stateid_opaque_t si_opaque; -} stateid_t; - -struct nfsd4_callback_ops; - -struct nfsd4_callback { - struct nfs4_client *cb_clp; - struct rpc_message cb_msg; - const struct nfsd4_callback_ops *cb_ops; - struct work_struct cb_work; - int cb_seq_status; - int cb_status; - bool cb_need_restart; - bool cb_holds_slot; -}; - -struct nfs4_cb_conn { - struct __kernel_sockaddr_storage cb_addr; - struct __kernel_sockaddr_storage cb_saddr; - size_t cb_addrlen; - u32 cb_prog; - u32 cb_ident; - struct svc_xprt *cb_xprt; -}; - -struct nfsd4_channel_attrs { - u32 headerpadsz; - u32 maxreq_sz; - u32 maxresp_sz; - u32 maxresp_cached; - u32 maxops; - u32 maxreqs; - u32 nr_rdma_attrs; - u32 rdma_attrs; -}; - -struct nfsd4_cb_sec { - u32 flavor; - kuid_t uid; - kgid_t gid; -}; - -struct nfsd4_create_session { - clientid_t clientid; - struct nfs4_sessionid sessionid; - u32 seqid; - u32 flags; - struct nfsd4_channel_attrs fore_channel; - struct nfsd4_channel_attrs back_channel; - u32 callback_prog; - struct nfsd4_cb_sec cb_sec; -}; - -struct nfsd4_clid_slot { - u32 sl_seqid; - __be32 sl_status; - struct nfsd4_create_session sl_cr_ses; -}; - -struct nfsd4_session; - -struct nfsd4_cb_recall_any; - -struct nfs4_client { - struct list_head cl_idhash; - struct rb_node cl_namenode; - struct list_head *cl_ownerstr_hashtbl; - struct list_head cl_openowners; - struct idr cl_stateids; - struct list_head cl_delegations; - struct list_head cl_revoked; - struct list_head cl_lru; - struct xdr_netobj cl_name; - nfs4_verifier cl_verifier; - time64_t cl_time; - struct __kernel_sockaddr_storage cl_addr; - bool cl_mach_cred; - struct svc_cred cl_cred; - clientid_t cl_clientid; - nfs4_verifier cl_confirm; - u32 cl_minorversion; - atomic_t cl_admin_revoked; - struct xdr_netobj cl_nii_domain; - struct xdr_netobj cl_nii_name; - struct timespec64 cl_nii_time; - struct nfs4_cb_conn cl_cb_conn; - long unsigned int cl_flags; - struct workqueue_struct *cl_callback_wq; - const struct cred *cl_cb_cred; - struct rpc_clnt *cl_cb_client; - u32 cl_cb_ident; - int cl_cb_state; - struct nfsd4_callback cl_cb_null; - struct nfsd4_session *cl_cb_session; - spinlock_t cl_lock; - struct list_head cl_sessions; - struct nfsd4_clid_slot cl_cs_slot; - u32 cl_exchange_flags; - atomic_t cl_rpc_users; - struct nfsdfs_client cl_nfsdfs; - struct nfs4_op_map cl_spo_must_allow; - struct dentry *cl_nfsd_dentry; - struct dentry *cl_nfsd_info_dentry; - long unsigned int cl_cb_slot_busy; - struct rpc_wait_queue cl_cb_waitq; - struct net *net; - struct list_head async_copies; - spinlock_t async_lock; - atomic_t cl_cb_inflight; - unsigned int cl_state; - atomic_t cl_delegs_in_recall; - struct nfsd4_cb_recall_any *cl_ra; - time64_t cl_ra_time; - struct list_head cl_ra_cblist; -}; - -struct nfsd4_callback_ops { - void (*prepare)(struct nfsd4_callback *); - int (*done)(struct nfsd4_callback *, struct rpc_task *); - void (*release)(struct nfsd4_callback *); - uint32_t opcode; -}; - -struct nfs4_file; - -struct nfs4_stid { - refcount_t sc_count; - short unsigned int sc_type; - short unsigned int sc_status; - struct list_head sc_cp_list; - stateid_t sc_stateid; - spinlock_t sc_lock; - struct nfs4_client *sc_client; - struct nfs4_file *sc_file; - void (*sc_free)(struct nfs4_stid *); -}; - -struct nfsd_file; - -struct nfs4_file { - refcount_t fi_ref; - struct inode *fi_inode; - bool fi_aliased; - spinlock_t fi_lock; - struct rhlist_head fi_rlist; - struct list_head fi_stateids; - union { - struct list_head fi_delegations; - struct callback_head fi_rcu; - }; - struct list_head fi_clnt_odstate; - struct nfsd_file *fi_fds[3]; - atomic_t fi_access[2]; - u32 fi_share_deny; - struct nfsd_file *fi_deleg_file; - int fi_delegees; - struct knfsd_fh fi_fhandle; - bool fi_had_conflict; -}; - -struct nfs4_cb_fattr { - struct nfsd4_callback ncf_getattr; - u32 ncf_cb_status; - u32 ncf_cb_bmap[1]; - u64 ncf_cb_change; - u64 ncf_cb_fsize; - long unsigned int ncf_cb_flags; - bool ncf_file_modified; - u64 ncf_initial_cinfo; - u64 ncf_cur_fsize; -}; - -struct nfs4_clnt_odstate; - -struct nfs4_delegation { - struct nfs4_stid dl_stid; - struct list_head dl_perfile; - struct list_head dl_perclnt; - struct list_head dl_recall_lru; - struct nfs4_clnt_odstate *dl_clnt_odstate; - u32 dl_type; - time64_t dl_time; - int dl_retries; - struct nfsd4_callback dl_recall; - bool dl_recalled; - struct nfs4_cb_fattr dl_cb_fattr; -}; - -struct nfs4_clnt_odstate { - struct nfs4_client *co_client; - struct nfs4_file *co_file; - struct list_head co_perfile; - refcount_t co_odcount; -}; - -struct nfsd4_slot { - u32 sl_seqid; - __be32 sl_status; - struct svc_cred sl_cred; - u32 sl_datalen; - u16 sl_opcnt; - u8 sl_flags; - char sl_data[0]; -}; - -struct nfsd4_conn { - struct list_head cn_persession; - struct svc_xprt *cn_xprt; - struct svc_xpt_user cn_xpt_user; - struct nfsd4_session *cn_session; - unsigned char cn_flags; -}; - -struct nfsd4_session { - atomic_t se_ref; - struct list_head se_hash; - struct list_head se_perclnt; - u32 se_flags; - struct nfs4_client *se_client; - struct nfs4_sessionid se_sessionid; - struct nfsd4_channel_attrs se_fchannel; - struct nfsd4_channel_attrs se_bchannel; - struct nfsd4_cb_sec se_cb_sec; - struct list_head se_conns; - u32 se_cb_prog; - u32 se_cb_seq_nr; - struct nfsd4_slot *se_slots[0]; -}; - -enum { - NFSD4_ACTIVE = 0, - NFSD4_COURTESY = 1, - NFSD4_EXPIRABLE = 2, -}; - -struct nfsd4_cb_recall_any { - struct nfsd4_callback ra_cb; - u32 ra_keep; - u32 ra_bmval[1]; -}; - -struct nfs4_replay { - __be32 rp_status; - unsigned int rp_buflen; - char *rp_buf; - struct knfsd_fh rp_openfh; - atomic_t rp_locked; - char rp_ibuf[112]; -}; - -struct nfs4_stateowner; - -struct nfs4_stateowner_operations { - void (*so_unhash)(struct nfs4_stateowner *); - void (*so_free)(struct nfs4_stateowner *); -}; - -struct nfs4_stateowner { - struct list_head so_strhash; - struct list_head so_stateids; - struct nfs4_client *so_client; - const struct nfs4_stateowner_operations *so_ops; - atomic_t so_count; - u32 so_seqid; - struct xdr_netobj so_owner; - struct nfs4_replay so_replay; - bool so_is_open_owner; -}; - -struct nfs4_lockowner { - struct nfs4_stateowner lo_owner; - struct list_head lo_blocked; -}; - -struct nfsd_file_mark; - -struct nfsd_file { - struct rhlist_head nf_rlist; - void *nf_inode; - struct file *nf_file; - const struct cred *nf_cred; - struct net *nf_net; - long unsigned int nf_flags; - refcount_t nf_ref; - unsigned char nf_may; - struct nfsd_file_mark *nf_mark; - struct list_head nf_lru; - struct list_head nf_gc; - struct callback_head nf_rcu; - ktime_t nf_birthtime; -}; - -enum nfsd4_cb_op { - NFSPROC4_CLNT_CB_NULL = 0, - NFSPROC4_CLNT_CB_RECALL = 1, - NFSPROC4_CLNT_CB_LAYOUT = 2, - NFSPROC4_CLNT_CB_OFFLOAD = 3, - NFSPROC4_CLNT_CB_SEQUENCE = 4, - NFSPROC4_CLNT_CB_NOTIFY_LOCK = 5, - NFSPROC4_CLNT_CB_RECALL_ANY = 6, - NFSPROC4_CLNT_CB_GETATTR = 7, -}; - -struct nfsd4_blocked_lock { - struct list_head nbl_list; - struct list_head nbl_lru; - time64_t nbl_time; - struct file_lock nbl_lock; - struct knfsd_fh nbl_fh; - struct nfsd4_callback nbl_cb; - struct kref nbl_kref; -}; - -struct nfsd42_write_res { - u64 wr_bytes_written; - u32 wr_stable_how; - nfs4_verifier wr_verifier; - stateid_t cb_stateid; -}; - -struct nfsd4_cb_offload { - struct nfsd4_callback co_cb; - struct nfsd42_write_res co_res; - __be32 co_nfserr; - struct knfsd_fh co_fh; -}; - -struct nfsd_file_mark { - struct fsnotify_mark nfm_mark; - refcount_t nfm_ref; -}; - -struct nfs4_cb_compound_hdr { - u32 ident; - u32 nops; - __be32 *nops_p; - u32 minorversion; - int status; -}; - -typedef int wait_bit_action_f(struct wait_bit_key *, int); - -typedef struct { - __le64 EndOfFile; - __le64 NumOfBytes; - __le64 LastStatusChange; - __le64 LastAccessTime; - __le64 LastModificationTime; - __le64 Uid; - __le64 Gid; - __le32 Type; - __le64 DevMajor; - __le64 DevMinor; - __le64 UniqueId; - __le64 Permissions; - __le64 Nlinks; -} __attribute__((packed)) FILE_UNIX_BASIC_INFO; - -enum { - SIDOWNER = 1, - SIDGROUP = 2, - SIDCREATOR_OWNER = 3, - SIDCREATOR_GROUP = 4, - SIDUNIX_USER = 5, - SIDUNIX_GROUP = 6, - SIDNFS_USER = 7, - SIDNFS_GROUP = 8, - SIDNFS_MODE = 9, -}; - -struct cifs_fattr { - u32 cf_flags; - u32 cf_cifsattrs; - u64 cf_uniqueid; - u64 cf_eof; - u64 cf_bytes; - u64 cf_createtime; - kuid_t cf_uid; - kgid_t cf_gid; - umode_t cf_mode; - dev_t cf_rdev; - unsigned int cf_nlink; - unsigned int cf_dtype; - struct timespec64 cf_atime; - struct timespec64 cf_mtime; - struct timespec64 cf_ctime; - u32 cf_cifstag; - char *cf_symlink_target; -}; - -struct cached_fids { - spinlock_t cfid_list_lock; - int num_entries; - struct list_head entries; - struct list_head dying; - struct work_struct invalidation_work; - struct delayed_work laundromat_work; -}; - -struct cached_dirents { - bool is_valid: 1; - bool is_failed: 1; - struct file *file; - struct mutex de_mutex; - int pos; - struct list_head entries; -}; - -struct cached_fid { - struct list_head entry; - struct cached_fids *cfids; - const char *path; - bool has_lease: 1; - bool is_open: 1; - bool on_list: 1; - bool file_all_info_is_valid: 1; - long unsigned int time; - struct kref refcount; - struct cifs_fid fid; - spinlock_t fid_lock; - struct cifs_tcon *tcon; - struct dentry *dentry; - struct work_struct put_work; - struct work_struct close_work; - struct smb2_file_all_info file_all_info; - struct cached_dirents dirents; -}; - -typedef u32 CLST; - -enum RECORD_NUM { - MFT_REC_MFT = 0, - MFT_REC_MIRR = 1, - MFT_REC_LOG = 2, - MFT_REC_VOL = 3, - MFT_REC_ATTR = 4, - MFT_REC_ROOT = 5, - MFT_REC_BITMAP = 6, - MFT_REC_BOOT = 7, - MFT_REC_BADCLUST = 8, - MFT_REC_SECURE = 9, - MFT_REC_UPCASE = 10, - MFT_REC_EXTEND = 11, - MFT_REC_RESERVED = 12, - MFT_REC_FREE = 16, - MFT_REC_USER = 24, -}; - -enum ATTR_TYPE { - ATTR_ZERO = 0, - ATTR_STD = 16, - ATTR_LIST = 32, - ATTR_NAME = 48, - ATTR_ID = 64, - ATTR_SECURE = 80, - ATTR_LABEL = 96, - ATTR_VOL_INFO = 112, - ATTR_DATA = 128, - ATTR_ROOT = 144, - ATTR_ALLOC = 160, - ATTR_BITMAP = 176, - ATTR_REPARSE = 192, - ATTR_EA_INFO = 208, - ATTR_EA = 224, - ATTR_PROPERTYSET = 240, - ATTR_LOGGED_UTILITY_STREAM = 256, - ATTR_END = 4294967295, -}; - -enum FILE_ATTRIBUTE { - FILE_ATTRIBUTE_READONLY = 1, - FILE_ATTRIBUTE_HIDDEN = 2, - FILE_ATTRIBUTE_SYSTEM = 4, - FILE_ATTRIBUTE_ARCHIVE = 32, - FILE_ATTRIBUTE_DEVICE = 64, - FILE_ATTRIBUTE_TEMPORARY = 256, - FILE_ATTRIBUTE_SPARSE_FILE = 512, - FILE_ATTRIBUTE_REPARSE_POINT = 1024, - FILE_ATTRIBUTE_COMPRESSED = 2048, - FILE_ATTRIBUTE_OFFLINE = 4096, - FILE_ATTRIBUTE_NOT_CONTENT_INDEXED = 8192, - FILE_ATTRIBUTE_ENCRYPTED = 16384, - FILE_ATTRIBUTE_VALID_FLAGS = 32695, - FILE_ATTRIBUTE_DIRECTORY = 268435456, - FILE_ATTRIBUTE_INDEX = 536870912, -}; - -struct MFT_REF { - __le32 low; - __le16 high; - __le16 seq; -}; - -enum NTFS_SIGNATURE { - NTFS_FILE_SIGNATURE = 1162627398, - NTFS_INDX_SIGNATURE = 1480871497, - NTFS_CHKD_SIGNATURE = 1145784387, - NTFS_RSTR_SIGNATURE = 1381258066, - NTFS_RCRD_SIGNATURE = 1146241874, - NTFS_BAAD_SIGNATURE = 1145127234, - NTFS_HOLE_SIGNATURE = 1162628936, - NTFS_FFFF_SIGNATURE = 4294967295, -}; - -struct NTFS_RECORD_HEADER { - enum NTFS_SIGNATURE sign; - __le16 fix_off; - __le16 fix_num; - __le64 lsn; -}; - -struct MFT_REC { - struct NTFS_RECORD_HEADER rhdr; - __le16 seq; - __le16 hard_links; - __le16 attr_off; - __le16 flags; - __le32 used; - __le32 total; - struct MFT_REF parent_ref; - __le16 next_attr_id; - __le16 res; - __le32 mft_record; - __le16 fixups[0]; -}; - -struct ATTR_RESIDENT { - __le32 data_size; - __le16 data_off; - u8 flags; - u8 res; -}; - -struct ATTR_NONRESIDENT { - __le64 svcn; - __le64 evcn; - __le16 run_off; - u8 c_unit; - u8 res1[5]; - __le64 alloc_size; - __le64 data_size; - __le64 valid_size; - __le64 total_size; -}; - -struct ATTRIB { - enum ATTR_TYPE type; - __le32 size; - u8 non_res; - u8 name_len; - __le16 name_off; - __le16 flags; - __le16 id; - union { - struct ATTR_RESIDENT res; - struct ATTR_NONRESIDENT nres; - }; -}; - -struct ATTR_LIST_ENTRY { - enum ATTR_TYPE type; - __le16 size; - u8 name_len; - u8 name_off; - __le64 vcn; - struct MFT_REF ref; - __le16 id; - __le16 name[0]; -}; - -enum COLLATION_RULE { - NTFS_COLLATION_TYPE_BINARY = 0, - NTFS_COLLATION_TYPE_FILENAME = 1, - NTFS_COLLATION_TYPE_UINT = 16, - NTFS_COLLATION_TYPE_SID = 17, - NTFS_COLLATION_TYPE_SECURITY_HASH = 18, - NTFS_COLLATION_TYPE_UINTS = 19, -}; - -struct ATTR_DEF_ENTRY { - __le16 name[64]; - enum ATTR_TYPE type; - __le32 res; - enum COLLATION_RULE rule; - __le32 flags; - __le64 min_sz; - __le64 max_sz; -}; - -struct ntfs_mount_options { - char *nls_name; - struct nls_table *nls; - kuid_t fs_uid; - kgid_t fs_gid; - u16 fs_fmask_inv; - u16 fs_dmask_inv; - unsigned int fmask: 1; - unsigned int dmask: 1; - unsigned int sys_immutable: 1; - unsigned int discard: 1; - unsigned int sparse: 1; - unsigned int showmeta: 1; - unsigned int nohidden: 1; - unsigned int hide_dot_files: 1; - unsigned int windows_names: 1; - unsigned int force: 1; - unsigned int prealloc: 1; - unsigned int nocase: 1; -}; - -struct ntfs_run; - -struct runs_tree { - struct ntfs_run *runs; - size_t count; - size_t allocated; -}; - -struct ntfs_buffers { - struct buffer_head *bh[8]; - u32 bytes; - u32 nbufs; - u32 off; -}; - -enum ALLOCATE_OPT { - ALLOCATE_DEF = 0, - ALLOCATE_MFT = 1, - ALLOCATE_ZERO = 2, -}; - -struct wnd_bitmap { - struct super_block *sb; - struct rw_semaphore rw_lock; - struct runs_tree run; - size_t nbits; - size_t total_zeroes; - u16 *free_bits; - size_t nwnd; - u32 bits_last; - struct rb_root start_tree; - struct rb_root count_tree; - size_t count; - int uptodated; - size_t extent_min; - size_t extent_max; - size_t zone_bit; - size_t zone_end; - bool inited; -}; - -typedef int (*NTFS_CMP_FUNC)(const void *, size_t, const void *, size_t, const void *); - -struct ntfs_index { - struct runs_tree bitmap_run; - struct runs_tree alloc_run; - struct rw_semaphore run_lock; - NTFS_CMP_FUNC cmp; - u8 index_bits; - u8 idx2vbn_bits; - u8 vbn2vbo_bits; - u8 type; -}; - -struct ntfs_sb_info; - -struct mft_inode { - struct rb_node node; - struct ntfs_sb_info *sbi; - struct MFT_REC *mrec; - struct ntfs_buffers nb; - CLST rno; - bool dirty; -}; - -struct ntfs_inode { - struct mft_inode mi; - u64 i_valid; - struct timespec64 i_crtime; - struct mutex ni_lock; - enum FILE_ATTRIBUTE std_fa; - __le32 std_security_id; - struct rb_root mi_tree; - u8 mi_loaded; - union { - struct ntfs_index dir; - struct { - struct rw_semaphore run_lock; - struct runs_tree run; - } file; - }; - struct { - struct runs_tree run; - struct ATTR_LIST_ENTRY *le; - size_t size; - bool dirty; - } attr_list; - size_t ni_flags; - struct inode vfs_inode; -}; - -struct lznt; - -struct ntfs_sb_info { - struct super_block *sb; - u32 discard_granularity; - u64 discard_granularity_mask_inv; - u32 cluster_size; - u32 cluster_mask; - u64 cluster_mask_inv; - u32 block_mask; - u32 blocks_per_cluster; - u32 record_size; - u32 index_size; - u8 cluster_bits; - u8 record_bits; - u64 maxbytes; - u64 maxbytes_sparse; - long unsigned int flags; - CLST zone_max; - CLST bad_clusters; - u16 max_bytes_per_attr; - u16 attr_size_tr; - CLST objid_no; - CLST quota_no; - CLST reparse_no; - CLST usn_jrnl_no; - struct ATTR_DEF_ENTRY *def_table; - u32 def_entries; - u32 ea_max_size; - struct MFT_REC *new_rec; - u16 *upcase; - struct { - u64 lbo; - u64 lbo2; - struct ntfs_inode *ni; - struct wnd_bitmap bitmap; - ulong reserved_bitmap; - size_t next_free; - size_t used; - u32 recs_mirr; - u8 next_reserved; - u8 reserved_bitmap_inited; - } mft; - struct { - struct wnd_bitmap bitmap; - CLST next_free_lcn; - } used; - struct { - u64 size; - u64 blocks; - u64 ser_num; - struct ntfs_inode *ni; - __le16 flags; - u8 major_ver; - u8 minor_ver; - char label[256]; - bool real_dirty; - } volume; - struct { - struct ntfs_index index_sii; - struct ntfs_index index_sdh; - struct ntfs_inode *ni; - u32 next_id; - u64 next_off; - __le32 def_security_id; - } security; - struct { - struct ntfs_index index_r; - struct ntfs_inode *ni; - u64 max_size; - } reparse; - struct { - struct ntfs_index index_o; - struct ntfs_inode *ni; - } objid; - struct { - struct mutex mtx_lznt; - struct lznt *lznt; - } compress; - struct ntfs_mount_options *options; - struct ratelimit_state msg_ratelimit; - struct proc_dir_entry *procdir; -}; - -struct cpu_str { - u8 len; - u8 unused; - u16 name[0]; -}; - -enum RECORD_FLAG { - RECORD_FLAG_IN_USE = 1, - RECORD_FLAG_DIR = 2, - RECORD_FLAG_SYSTEM = 4, - RECORD_FLAG_INDEX = 8, -}; - -struct NTFS_DUP_INFO { - __le64 cr_time; - __le64 m_time; - __le64 c_time; - __le64 a_time; - __le64 alloc_size; - __le64 data_size; - enum FILE_ATTRIBUTE fa; - __le16 ea_size; - __le16 reparse; -}; - -struct ATTR_FILE_NAME { - struct MFT_REF home; - struct NTFS_DUP_INFO dup; - u8 name_len; - u8 type; - __le16 name[0]; -}; - -struct NTFS_DE { - union { - struct MFT_REF ref; - struct { - __le16 data_off; - __le16 data_size; - __le32 res; - } view; - }; - __le16 size; - __le16 key_size; - __le16 flags; - __le16 res; -}; - -struct INDEX_HDR { - __le32 de_off; - __le32 used; - __le32 total; - __le32 flags; -}; - -struct INDEX_BUFFER { - struct NTFS_RECORD_HEADER rhdr; - __le64 vbn; - struct INDEX_HDR ihdr; -}; - -struct INDEX_ROOT { - enum ATTR_TYPE type; - enum COLLATION_RULE rule; - __le32 index_block_size; - u8 index_block_clst; - u8 res[3]; - struct INDEX_HDR ihdr; -}; - -enum NTFS_DIRTY_FLAGS { - NTFS_DIRTY_CLEAR = 0, - NTFS_DIRTY_DIRTY = 1, - NTFS_DIRTY_ERROR = 2, -}; - -struct RESTART_HDR { - struct NTFS_RECORD_HEADER rhdr; - __le32 sys_page_size; - __le32 page_size; - __le16 ra_off; - __le16 minor_ver; - __le16 major_ver; - __le16 fixups[0]; -}; - -struct CLIENT_REC { - __le64 oldest_lsn; - __le64 restart_lsn; - __le16 prev_client; - __le16 next_client; - __le16 seq_num; - u8 align[6]; - __le32 name_bytes; - __le16 name[32]; -}; - -struct RESTART_AREA { - __le64 current_lsn; - __le16 log_clients; - __le16 client_idx[2]; - __le16 flags; - __le32 seq_num_bits; - __le16 ra_len; - __le16 client_off; - __le64 l_size; - __le32 last_lsn_data_len; - __le16 rec_hdr_len; - __le16 data_off; - __le32 open_log_count; - __le32 align[5]; - struct CLIENT_REC clients[0]; -}; - -struct LOG_REC_HDR { - __le16 redo_op; - __le16 undo_op; - __le16 redo_off; - __le16 redo_len; - __le16 undo_off; - __le16 undo_len; - __le16 target_attr; - __le16 lcns_follow; - __le16 record_off; - __le16 attr_off; - __le16 cluster_off; - __le16 reserved; - __le64 target_vcn; - __le64 page_lcns[0]; -}; - -struct RESTART_TABLE { - __le16 size; - __le16 used; - __le16 total; - __le16 res[3]; - __le32 free_goal; - __le32 first_free; - __le32 last_free; -}; - -struct ATTR_NAME_ENTRY { - __le16 off; - __le16 name_bytes; - __le16 name[0]; -}; - -struct OPEN_ATTR_ENRTY { - __le32 next; - __le32 bytes_per_index; - enum ATTR_TYPE type; - u8 is_dirty_pages; - u8 is_attr_name; - u8 name_len; - u8 res; - struct MFT_REF ref; - __le64 open_record_lsn; - void *ptr; -}; - -struct OPEN_ATTR_ENRTY_32 { - __le32 next; - __le32 ptr; - struct MFT_REF ref; - __le64 open_record_lsn; - u8 is_dirty_pages; - u8 is_attr_name; - u8 res1[2]; - enum ATTR_TYPE type; - u8 name_len; - u8 res2[3]; - __le32 AttributeName; - __le32 bytes_per_index; -}; - -struct DIR_PAGE_ENTRY { - __le32 next; - __le32 target_attr; - __le32 transfer_len; - __le32 lcns_follow; - __le64 vcn; - __le64 oldest_lsn; - __le64 page_lcns[0]; -}; - -struct DIR_PAGE_ENTRY_32 { - __le32 next; - __le32 target_attr; - __le32 transfer_len; - __le32 lcns_follow; - __le32 reserved; - __le32 vcn_low; - __le32 vcn_hi; - __le32 oldest_lsn_low; - __le32 oldest_lsn_hi; - __le32 page_lcns_low; - __le32 page_lcns_hi; -}; - -enum transact_state { - TransactionUninitialized = 0, - TransactionActive = 1, - TransactionPrepared = 2, - TransactionCommitted = 3, -}; - -struct TRANSACTION_ENTRY { - __le32 next; - u8 transact_state; - u8 reserved[3]; - __le64 first_lsn; - __le64 prev_lsn; - __le64 undo_next_lsn; - __le32 undo_records; - __le32 undo_len; -}; - -struct NTFS_RESTART { - __le32 major_ver; - __le32 minor_ver; - __le64 check_point_start; - __le64 open_attr_table_lsn; - __le64 attr_names_lsn; - __le64 dirty_pages_table_lsn; - __le64 transact_table_lsn; - __le32 open_attr_len; - __le32 attr_names_len; - __le32 dirty_pages_len; - __le32 transact_table_len; -}; - -struct NEW_ATTRIBUTE_SIZES { - __le64 alloc_size; - __le64 valid_size; - __le64 data_size; - __le64 total_size; -}; - -struct BITMAP_RANGE { - __le32 bitmap_off; - __le32 bits; -}; - -struct LCN_RANGE { - __le64 lcn; - __le64 len; -}; - -struct CLIENT_ID { - __le16 seq_num; - __le16 client_idx; -}; - -struct LFS_RECORD_HDR { - __le64 this_lsn; - __le64 client_prev_lsn; - __le64 client_undo_next_lsn; - __le32 client_data_len; - struct CLIENT_ID client; - __le32 record_type; - __le32 transact_id; - __le16 flags; - u8 align[6]; -}; - -struct LFS_RECORD { - __le16 next_record_off; - u8 align[6]; - __le64 last_end_lsn; -}; - -struct RECORD_PAGE_HDR { - struct NTFS_RECORD_HEADER rhdr; - __le32 rflags; - __le16 page_count; - __le16 page_pos; - struct LFS_RECORD record_hdr; - __le16 fixups[10]; - __le32 file_off; -}; - -enum NTFS_LOG_OPERATION { - Noop = 0, - CompensationLogRecord = 1, - InitializeFileRecordSegment = 2, - DeallocateFileRecordSegment = 3, - WriteEndOfFileRecordSegment = 4, - CreateAttribute = 5, - DeleteAttribute = 6, - UpdateResidentValue = 7, - UpdateNonresidentValue = 8, - UpdateMappingPairs = 9, - DeleteDirtyClusters = 10, - SetNewAttributeSizes = 11, - AddIndexEntryRoot = 12, - DeleteIndexEntryRoot = 13, - AddIndexEntryAllocation = 14, - DeleteIndexEntryAllocation = 15, - WriteEndOfIndexBuffer = 16, - SetIndexEntryVcnRoot = 17, - SetIndexEntryVcnAllocation = 18, - UpdateFileNameRoot = 19, - UpdateFileNameAllocation = 20, - SetBitsInNonresidentBitMap = 21, - ClearBitsInNonresidentBitMap = 22, - HotFix = 23, - EndTopLevelAction = 24, - PrepareTransaction = 25, - CommitTransaction = 26, - ForgetTransaction = 27, - OpenNonresidentAttribute = 28, - OpenAttributeTableDump = 29, - AttributeNamesDump = 30, - DirtyPageTableDump = 31, - TransactionTableDump = 32, - UpdateRecordDataRoot = 33, - UpdateRecordDataAllocation = 34, - UpdateRelativeDataInIndex = 35, - UpdateRelativeDataInIndex2 = 36, - ZeroEndOfFileRecord = 37, -}; - -enum { - lcb_ctx_undo_next = 0, - lcb_ctx_prev = 1, - lcb_ctx_next = 2, -}; - -struct lcb { - struct LFS_RECORD_HDR *lrh; - struct LOG_REC_HDR *log_rec; - u32 ctx_mode; - struct CLIENT_ID client; - bool alloc; -}; - -struct restart_info { - u64 last_lsn; - struct RESTART_HDR *r_page; - u32 vbo; - bool chkdsk_was_run; - bool valid_page; - bool initialized; - bool restart; -}; - -struct ntfs_log { - struct ntfs_inode *ni; - u32 l_size; - u32 orig_file_size; - u32 sys_page_size; - u32 sys_page_mask; - u32 page_size; - u32 page_mask; - u8 page_bits; - struct RECORD_PAGE_HDR *one_page_buf; - struct RESTART_TABLE *open_attr_tbl; - u32 transaction_id; - u32 clst_per_page; - u32 first_page; - u32 next_page; - u32 ra_off; - u32 data_off; - u32 restart_size; - u32 data_size; - u16 record_header_len; - u64 seq_num; - u32 seq_num_bits; - u32 file_data_bits; - u32 seq_num_mask; - struct RESTART_AREA *ra; - u32 ra_size; - bool init_ra; - bool set_dirty; - u64 oldest_lsn; - u32 oldest_lsn_off; - u64 last_lsn; - u32 total_avail; - u32 total_avail_pages; - u32 total_undo_commit; - u32 max_current_avail; - u32 current_avail; - u32 reserved; - short int major_ver; - short int minor_ver; - u32 l_flags; - u32 current_openlog_count; - struct CLIENT_ID client_id; - u32 client_undo_commit; - struct restart_info rst_info; - struct restart_info rst_info2; -}; - -struct OpenAttr { - struct ATTRIB *attr; - struct runs_tree *run1; - struct runs_tree run0; - struct ntfs_inode *ni; -}; - -struct dax_operations { - long int (*direct_access)(struct dax_device *, long unsigned int, long int, enum dax_access_mode, void **, pfn_t *); - bool (*dax_supported)(struct dax_device *, struct block_device *, int, sector_t, sector_t); - int (*zero_page_range)(struct dax_device *, long unsigned int, size_t); - size_t (*recovery_write)(struct dax_device *, long unsigned int, void *, size_t, struct iov_iter *); -}; - -struct virtio_driver { - struct device_driver driver; - const struct virtio_device_id *id_table; - const unsigned int *feature_table; - unsigned int feature_table_size; - const unsigned int *feature_table_legacy; - unsigned int feature_table_size_legacy; - int (*validate)(struct virtio_device *); - int (*probe)(struct virtio_device *); - void (*scan)(struct virtio_device *); - void (*remove)(struct virtio_device *); - void (*config_changed)(struct virtio_device *); - int (*freeze)(struct virtio_device *); - int (*restore)(struct virtio_device *); -}; - -struct virtio_fs_config { - __u8 tag[36]; - __le32 num_request_queues; -}; - -struct fuse_forget_in { - uint64_t nlookup; -}; - -enum fuse_req_flag { - FR_ISREPLY = 0, - FR_FORCE = 1, - FR_BACKGROUND = 2, - FR_WAITING = 3, - FR_ABORTED = 4, - FR_INTERRUPTED = 5, - FR_LOCKED = 6, - FR_PENDING = 7, - FR_SENT = 8, - FR_FINISHED = 9, - FR_PRIVATE = 10, - FR_ASYNC = 11, -}; - -struct fuse_pqueue { - unsigned int connected; - spinlock_t lock; - struct list_head *processing; - struct list_head io; -}; - -struct fuse_dev { - struct fuse_conn *fc; - struct fuse_pqueue pq; - struct list_head entry; -}; - -enum fuse_dax_mode { - FUSE_DAX_INODE_DEFAULT = 0, - FUSE_DAX_ALWAYS = 1, - FUSE_DAX_NEVER = 2, - FUSE_DAX_INODE_USER = 3, -}; - -struct fuse_fs_context { - int fd; - struct file *file; - unsigned int rootmode; - kuid_t user_id; - kgid_t group_id; - bool is_bdev: 1; - bool fd_present: 1; - bool rootmode_present: 1; - bool user_id_present: 1; - bool group_id_present: 1; - bool default_permissions: 1; - bool allow_other: 1; - bool destroy: 1; - bool no_control: 1; - bool no_force_umount: 1; - bool legacy_opts_show: 1; - enum fuse_dax_mode dax_mode; - unsigned int max_read; - unsigned int blksize; - const char *subtype; - unsigned int negative_dentry_timeout; - unsigned int entry_timeout; - unsigned int attr_timeout; - bool no_flush; - bool no_xattr; - bool ignore_atime; - bool trace_rpc; - bool keep_cache; - bool writeback_cache; - struct dax_device *dax_dev; - void **fudptr; -}; - -enum { - VQ_HIPRIO = 0, - VQ_REQUEST = 1, -}; - -struct virtio_fs_vq { - spinlock_t lock; - struct virtqueue *vq; - struct work_struct done_work; - struct list_head queued_reqs; - struct list_head end_reqs; - struct work_struct dispatch_work; - struct fuse_dev *fud; - bool connected; - long int in_flight; - struct completion in_flight_zero; - struct kobject *kobj; - char name[24]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct virtio_fs { - struct kobject kobj; - struct kobject *mqs_kobj; - struct list_head list; - char *tag; - struct virtio_fs_vq *vqs; - unsigned int nvqs; - unsigned int num_request_queues; - struct dax_device *dax_dev; - unsigned int *mq_map; - void *window_kaddr; - phys_addr_t window_phys_addr; - size_t window_len; -}; - -struct virtio_fs_forget_req { - struct fuse_in_header ih; - struct fuse_forget_in arg; -}; - -struct virtio_fs_forget { - struct list_head list; - struct virtio_fs_forget_req req; -}; - -struct virtio_fs_req_work { - struct fuse_req *req; - struct virtio_fs_vq *fsvq; - struct work_struct done_work; -}; - -enum { - OPT_DAX = 0, - OPT_DAX_ENUM = 1, - OPT_SUBTYPE = 2, - OPT_NEGATIVE_DENTRY_TIMEOUT = 3, - OPT_ENTRY_TIMEOUT = 4, - OPT_ATTR_TIMEOUT = 5, - OPT_NO_FLUSH = 6, - OPT_NO_XATTR = 7, - OPT_IGNORE_ATIME = 8, - OPT_TRACE_RPC = 9, - OPT_KEEP_CACHE = 10, - OPT_WRITEBACK_CACHE = 11, -}; - -struct dax_dev; - -struct regid { - uint8_t flags; - uint8_t ident[23]; - uint8_t identSuffix[8]; -}; - -struct tag { - __le16 tagIdent; - __le16 descVersion; - uint8_t tagChecksum; - uint8_t reserved; - __le16 tagSerialNum; - __le16 descCRC; - __le16 descCRCLength; - __le32 tagLocation; -}; - -struct sparingEntry { - __le32 origLocation; - __le32 mappedLocation; -}; - -struct sparingTable { - struct tag descTag; - struct regid sparingIdent; - __le16 reallocationTableLen; - __le16 reserved; - __le32 sequenceNum; - struct sparingEntry mapEntry[0]; -}; - -struct udf_meta_data { - __u32 s_meta_file_loc; - __u32 s_mirror_file_loc; - __u32 s_bitmap_file_loc; - __u32 s_alloc_unit_size; - __u16 s_align_unit_size; - __u16 s_phys_partition_ref; - int s_flags; - struct inode *s_metadata_fe; - struct inode *s_mirror_fe; - struct inode *s_bitmap_fe; -}; - -struct udf_sparing_data { - __u16 s_packet_len; - struct buffer_head *s_spar_map[4]; -}; - -struct udf_virtual_data { - __u32 s_num_entries; - __u16 s_start_offset; -}; - -struct udf_bitmap { - __u32 s_extPosition; - int s_nr_groups; - struct buffer_head *s_block_bitmap[0]; -}; - -struct udf_part_map { - union { - struct udf_bitmap *s_bitmap; - struct inode *s_table; - } s_uspace; - __u32 s_partition_root; - __u32 s_partition_len; - __u16 s_partition_type; - __u16 s_partition_num; - union { - struct udf_sparing_data s_sparing; - struct udf_virtual_data s_virtual; - struct udf_meta_data s_metadata; - } s_type_specific; - __u32 (*s_partition_func)(struct super_block *, __u32, __u16, __u32); - __u16 s_volumeseqnum; - __u16 s_partition_flags; -}; - -struct udf_sb_info { - struct udf_part_map *s_partmaps; - __u8 s_volume_ident[32]; - __u16 s_partitions; - __u16 s_partition; - __s32 s_session; - __u32 s_anchor; - __u32 s_last_block; - struct buffer_head *s_lvid_bh; - umode_t s_umask; - kgid_t s_gid; - kuid_t s_uid; - umode_t s_fmode; - umode_t s_dmode; - rwlock_t s_cred_lock; - struct timespec64 s_record_time; - __u16 s_serial_number; - __u16 s_udfrev; - long unsigned int s_flags; - struct nls_table *s_nls_map; - struct inode *s_vat_inode; - struct mutex s_alloc_mutex; - unsigned int s_lvid_dirty; -}; - -typedef enum { - XFS_LOOKUP_EQi = 0, - XFS_LOOKUP_LEi = 1, - XFS_LOOKUP_GEi = 2, -} xfs_lookup_t; - -enum xbtree_recpacking { - XBTREE_RECPACKING_EMPTY = 0, - XBTREE_RECPACKING_SPARSE = 1, - XBTREE_RECPACKING_FULL = 2, -}; - -typedef int (*xfs_btree_query_range_fn)(struct xfs_btree_cur *, const union xfs_btree_rec *, void *); - -typedef struct xfs_alloc_arg xfs_alloc_arg_t; - -typedef int (*xfs_alloc_query_range_fn)(struct xfs_btree_cur *, const struct xfs_alloc_rec_incore *, void *); - -typedef int (*xfs_agfl_walk_fn)(struct xfs_mount *, xfs_agblock_t, void *); - -struct xfs_extent_free_item { - struct list_head xefi_list; - uint64_t xefi_owner; - xfs_fsblock_t xefi_startblock; - xfs_extlen_t xefi_blockcount; - struct xfs_perag *xefi_pag; - unsigned int xefi_flags; - enum xfs_ag_resv_type xefi_agresv; -}; - -struct xfs_alloc_autoreap { - struct xfs_defer_pending *dfp; -}; - -struct xfs_alloc_cur { - struct xfs_btree_cur *cnt; - struct xfs_btree_cur *bnolt; - struct xfs_btree_cur *bnogt; - xfs_extlen_t cur_len; - xfs_agblock_t rec_bno; - xfs_extlen_t rec_len; - xfs_agblock_t bno; - xfs_extlen_t len; - xfs_extlen_t diff; - unsigned int busy_gen; - bool busy; -}; - -struct xfs_alloc_query_range_info { - xfs_alloc_query_range_fn fn; - void *priv; -}; - -struct xfs_disk_dquot { - __be16 d_magic; - __u8 d_version; - __u8 d_type; - __be32 d_id; - __be64 d_blk_hardlimit; - __be64 d_blk_softlimit; - __be64 d_ino_hardlimit; - __be64 d_ino_softlimit; - __be64 d_bcount; - __be64 d_icount; - __be32 d_itimer; - __be32 d_btimer; - __be16 d_iwarns; - __be16 d_bwarns; - __be32 d_pad0; - __be64 d_rtb_hardlimit; - __be64 d_rtb_softlimit; - __be64 d_rtbcount; - __be32 d_rtbtimer; - __be16 d_rtbwarns; - __be16 d_pad; -}; - -struct xfs_dqblk { - struct xfs_disk_dquot dd_diskdq; - char dd_fill[4]; - __be32 dd_crc; - __be64 dd_lsn; - uuid_t dd_uuid; -}; - -enum { - XFS_QLOWSP_1_PCNT = 0, - XFS_QLOWSP_3_PCNT = 1, - XFS_QLOWSP_5_PCNT = 2, - XFS_QLOWSP_MAX = 3, -}; - -enum { - XFS_QM_TRANS_USR = 0, - XFS_QM_TRANS_GRP = 1, - XFS_QM_TRANS_PRJ = 2, - XFS_QM_TRANS_DQTYPES = 3, -}; - -struct dahash_test { - uint16_t start; - uint16_t length; - xfs_dahash_t dahash; - xfs_dahash_t ascii_ci_dahash; -}; - -struct xfs_exchange_range { - __s32 file1_fd; - __u32 pad; - __u64 file1_offset; - __u64 file2_offset; - __u64 length; - __u64 flags; -}; - -struct xfs_commit_range { - __s32 file1_fd; - __u32 pad; - __u64 file1_offset; - __u64 file2_offset; - __u64 length; - __u64 flags; - __u64 file2_freshness[6]; -}; - -struct xfs_exchrange { - struct file *file1; - struct file *file2; - loff_t file1_offset; - loff_t file2_offset; - u64 length; - u64 flags; - u64 file2_ino; - struct timespec64 file2_mtime; - struct timespec64 file2_ctime; - u32 file2_gen; -}; - -struct xfs_exchmaps_req { - struct xfs_inode *ip1; - struct xfs_inode *ip2; - xfs_fileoff_t startoff1; - xfs_fileoff_t startoff2; - xfs_filblks_t blockcount; - uint64_t flags; - xfs_filblks_t ip1_bcount; - xfs_filblks_t ip2_bcount; - xfs_filblks_t ip1_rtbcount; - xfs_filblks_t ip2_rtbcount; - long long unsigned int resblks; - long long unsigned int nr_exchanges; -}; - -struct xfs_commit_range_fresh { - xfs_fsid_t fsid; - __u64 file2_ino; - __s64 file2_mtime; - __s64 file2_ctime; - __s32 file2_mtime_nsec; - __s32 file2_ctime_nsec; - __u32 file2_gen; - __u32 magic; -}; - -struct xfs_mru_cache_elem { - struct list_head list_node; - long unsigned int key; -}; - -typedef void (*xfs_mru_cache_free_func_t)(void *, struct xfs_mru_cache_elem *); - -struct xfs_mru_cache { - struct xarray store; - struct list_head *lists; - struct list_head reap_list; - spinlock_t lock; - unsigned int grp_count; - unsigned int grp_time; - unsigned int lru_grp; - long unsigned int time_zero; - xfs_mru_cache_free_func_t free_func; - struct delayed_work work; - unsigned int queued; - void *data; -}; - -typedef struct xfs_sb xfs_sb_t; - -struct xfs_inodegc { - struct xfs_mount *mp; - struct llist_head list; - struct delayed_work work; - int error; - unsigned int items; - unsigned int shrinker_hits; - unsigned int cpu; -}; - -struct xfs_inode_log_item { - struct xfs_log_item ili_item; - struct xfs_inode *ili_inode; - short unsigned int ili_lock_flags; - unsigned int ili_dirty_flags; - spinlock_t ili_lock; - unsigned int ili_last_fields; - unsigned int ili_fields; - unsigned int ili_fsync_fields; - xfs_lsn_t ili_flush_lsn; - xfs_csn_t ili_commit_seq; -}; - -struct xfs_icwalk { - __u32 icw_flags; - kuid_t icw_uid; - kgid_t icw_gid; - prid_t icw_prid; - __u64 icw_min_file_size; - long int icw_scan_limit; -}; - -enum xfs_dax_mode { - XFS_DAX_INODE = 0, - XFS_DAX_ALWAYS = 1, - XFS_DAX_NEVER = 2, -}; - -enum { - Opt_logbufs = 0, - Opt_logbsize = 1, - Opt_logdev = 2, - Opt_rtdev = 3, - Opt_wsync = 4, - Opt_noalign = 5, - Opt_swalloc = 6, - Opt_sunit = 7, - Opt_swidth = 8, - Opt_nouuid = 9, - Opt_grpid = 10, - Opt_nogrpid = 11, - Opt_bsdgroups = 12, - Opt_sysvgroups = 13, - Opt_allocsize = 14, - Opt_norecovery = 15, - Opt_inode64 = 16, - Opt_inode32 = 17, - Opt_ikeep = 18, - Opt_noikeep = 19, - Opt_largeio = 20, - Opt_nolargeio = 21, - Opt_attr2 = 22, - Opt_noattr2 = 23, - Opt_filestreams = 24, - Opt_quota = 25, - Opt_noquota = 26, - Opt_usrquota = 27, - Opt_grpquota = 28, - Opt_prjquota = 29, - Opt_uquota = 30, - Opt_gquota = 31, - Opt_pquota = 32, - Opt_uqnoenforce = 33, - Opt_gqnoenforce = 34, - Opt_pqnoenforce = 35, - Opt_qnoenforce = 36, - Opt_discard___2 = 37, - Opt_nodiscard = 38, - Opt_dax = 39, - Opt_dax_enum = 40, -}; - -struct proc_xfs_info { - uint64_t flag; - char *str; -}; - -struct xfs_attri_log_format { - uint16_t alfi_type; - uint16_t alfi_size; - uint32_t alfi_igen; - uint64_t alfi_id; - uint64_t alfi_ino; - uint32_t alfi_op_flags; - union { - uint32_t alfi_name_len; - struct { - uint16_t alfi_old_name_len; - uint16_t alfi_new_name_len; - }; - }; - uint32_t alfi_value_len; - uint32_t alfi_attr_filter; -}; - -struct xfs_attrd_log_format { - uint16_t alfd_type; - uint16_t alfd_size; - uint32_t __pad; - uint64_t alfd_alf_id; -}; - -enum xfs_delattr_state { - XFS_DAS_UNINIT = 0, - XFS_DAS_SF_ADD = 1, - XFS_DAS_SF_REMOVE = 2, - XFS_DAS_LEAF_ADD = 3, - XFS_DAS_LEAF_REMOVE = 4, - XFS_DAS_NODE_ADD = 5, - XFS_DAS_NODE_REMOVE = 6, - XFS_DAS_LEAF_SET_RMT = 7, - XFS_DAS_LEAF_ALLOC_RMT = 8, - XFS_DAS_LEAF_REPLACE = 9, - XFS_DAS_LEAF_REMOVE_OLD = 10, - XFS_DAS_LEAF_REMOVE_RMT = 11, - XFS_DAS_LEAF_REMOVE_ATTR = 12, - XFS_DAS_NODE_SET_RMT = 13, - XFS_DAS_NODE_ALLOC_RMT = 14, - XFS_DAS_NODE_REPLACE = 15, - XFS_DAS_NODE_REMOVE_OLD = 16, - XFS_DAS_NODE_REMOVE_RMT = 17, - XFS_DAS_NODE_REMOVE_ATTR = 18, - XFS_DAS_DONE = 19, -}; - -struct xfs_attri_log_nameval; - -struct xfs_attr_intent { - struct list_head xattri_list; - struct xfs_da_state *xattri_da_state; - struct xfs_da_args *xattri_da_args; - struct xfs_attri_log_nameval *xattri_nameval; - enum xfs_delattr_state xattri_dela_state; - unsigned int xattri_op_flags; - xfs_dablk_t xattri_lblkno; - int xattri_blkcnt; - struct xfs_bmbt_irec xattri_map; -}; - -struct xfs_attri_log_nameval { - struct xfs_log_iovec name; - struct xfs_log_iovec new_name; - struct xfs_log_iovec value; - struct xfs_log_iovec new_value; - refcount_t refcount; -}; - -struct xfs_attri_log_item { - struct xfs_log_item attri_item; - atomic_t attri_refcount; - struct xfs_attri_log_nameval *attri_nameval; - struct xfs_attri_log_format attri_format; -}; - -struct xfs_attrd_log_item { - struct xfs_log_item attrd_item; - struct xfs_attri_log_item *attrd_attrip; - struct xfs_attrd_log_format attrd_format; -}; - -struct p9_wstat { - u16 size; - u16 type; - u32 dev; - struct p9_qid qid; - u32 mode; - u32 atime; - u32 mtime; - u64 length; - const char *name; - const char *uid; - const char *gid; - const char *muid; - char *extension; - kuid_t n_uid; - kgid_t n_gid; - kuid_t n_muid; -}; - -struct p9_flock { - u8 type; - u32 flags; - u64 start; - u64 length; - u32 proc_id; - char *client_id; -}; - -struct p9_getlock { - u8 type; - u64 start; - u64 length; - u32 proc_id; - char *client_id; -}; - -enum p9_session_flags { - V9FS_PROTO_2000U = 1, - V9FS_PROTO_2000L = 2, - V9FS_ACCESS_SINGLE = 4, - V9FS_ACCESS_USER = 8, - V9FS_ACCESS_CLIENT = 16, - V9FS_POSIX_ACL = 32, - V9FS_NO_XATTR = 64, - V9FS_IGNORE_QV = 128, - V9FS_DIRECT_IO = 256, - V9FS_SYNC = 512, -}; - -enum p9_cache_bits { - CACHE_NONE = 0, - CACHE_FILE = 1, - CACHE_META = 2, - CACHE_WRITEBACK = 4, - CACHE_LOOSE = 8, - CACHE_FSCACHE = 128, -}; - -struct v9fs_session_info { - unsigned int flags; - unsigned char nodev; - short unsigned int debug; - unsigned int afid; - unsigned int cache; - char *uname; - char *aname; - unsigned int maxdata; - kuid_t dfltuid; - kgid_t dfltgid; - kuid_t uid; - struct p9_client *clnt; - struct list_head slist; - struct rw_semaphore rename_sem; - long int session_lock_timeout; -}; - -struct debugfs_blob_wrapper { - void *data; - long unsigned int size; -}; - -struct debugfs_reg32 { - char *name; - long unsigned int offset; -}; - -struct debugfs_regset32 { - const struct debugfs_reg32 *regs; - int nregs; - void *base; - struct device *dev; -}; - -struct debugfs_u32_array { - u32 *array; - u32 n_elements; -}; - -typedef struct vfsmount * (*debugfs_automount_t)(struct dentry *, void *); - -struct debugfs_cancellation { - struct list_head list; - void (*cancel)(struct dentry *, void *); - void *cancel_data; -}; - -struct debugfs_fsdata { - const struct file_operations *real_fops; - union { - debugfs_automount_t automount; - struct { - refcount_t active_users; - struct completion active_users_drained; - struct mutex cancellations_mtx; - struct list_head cancellations; - }; - }; -}; - -struct debugfs_devm_entry { - int (*read)(struct seq_file *, void *); - struct device *dev; -}; - -struct btrfs_dir_item { - struct btrfs_disk_key location; - __le64 transid; - __le16 data_len; - __le16 name_len; - __u8 type; -} __attribute__((packed)); - -struct fscrypt_str { - unsigned char *name; - u32 len; -}; - -enum { - IOPRIO_CLASS_NONE = 0, - IOPRIO_CLASS_RT = 1, - IOPRIO_CLASS_BE = 2, - IOPRIO_CLASS_IDLE = 3, - IOPRIO_CLASS_INVALID = 7, -}; - -enum { - IOPRIO_HINT_NONE = 0, - IOPRIO_HINT_DEV_DURATION_LIMIT_1 = 1, - IOPRIO_HINT_DEV_DURATION_LIMIT_2 = 2, - IOPRIO_HINT_DEV_DURATION_LIMIT_3 = 3, - IOPRIO_HINT_DEV_DURATION_LIMIT_4 = 4, - IOPRIO_HINT_DEV_DURATION_LIMIT_5 = 5, - IOPRIO_HINT_DEV_DURATION_LIMIT_6 = 6, - IOPRIO_HINT_DEV_DURATION_LIMIT_7 = 7, -}; - -typedef __kernel_rwf_t rwf_t; - -struct fileattr { - u32 flags; - u32 fsx_xflags; - u32 fsx_extsize; - u32 fsx_nextents; - u32 fsx_projid; - u32 fsx_cowextsize; - bool flags_valid: 1; - bool fsx_valid: 1; -}; - -struct btrfs_ioctl_vol_args { - __s64 fd; - char name[4088]; -}; - -struct btrfs_ioctl_qgroup_limit_args { - __u64 qgroupid; - struct btrfs_qgroup_limit lim; -}; - -struct btrfs_ioctl_vol_args_v2 { - __s64 fd; - __u64 transid; - __u64 flags; - union { - struct { - __u64 size; - struct btrfs_qgroup_inherit *qgroup_inherit; - }; - __u64 unused[4]; - }; - union { - char name[4040]; - __u64 devid; - __u64 subvolid; - }; -}; - -struct btrfs_ioctl_scrub_args { - __u64 devid; - __u64 start; - __u64 end; - __u64 flags; - struct btrfs_scrub_progress progress; - __u64 unused[109]; -}; - -struct btrfs_ioctl_dev_replace_start_params { - __u64 srcdevid; - __u64 cont_reading_from_srcdev_mode; - __u8 srcdev_name[1025]; - __u8 tgtdev_name[1025]; -}; - -struct btrfs_ioctl_dev_replace_status_params { - __u64 replace_state; - __u64 progress_1000; - __u64 time_started; - __u64 time_stopped; - __u64 num_write_errors; - __u64 num_uncorrectable_read_errors; -}; - -struct btrfs_ioctl_dev_replace_args { - __u64 cmd; - __u64 result; - union { - struct btrfs_ioctl_dev_replace_start_params start; - struct btrfs_ioctl_dev_replace_status_params status; - }; - __u64 spare[64]; -}; - -struct btrfs_ioctl_dev_info_args { - __u64 devid; - __u8 uuid[16]; - __u64 bytes_used; - __u64 total_bytes; - __u8 fsid[16]; - __u64 unused[377]; - __u8 path[1024]; -}; - -struct btrfs_ioctl_fs_info_args { - __u64 max_id; - __u64 num_devices; - __u8 fsid[16]; - __u32 nodesize; - __u32 sectorsize; - __u32 clone_alignment; - __u16 csum_type; - __u16 csum_size; - __u64 flags; - __u64 generation; - __u8 metadata_uuid[16]; - __u8 reserved[944]; -}; - -struct btrfs_ioctl_feature_flags { - __u64 compat_flags; - __u64 compat_ro_flags; - __u64 incompat_flags; -}; - -struct btrfs_ioctl_balance_args { - __u64 flags; - __u64 state; - struct btrfs_balance_args data; - struct btrfs_balance_args meta; - struct btrfs_balance_args sys; - struct btrfs_balance_progress stat; - __u64 unused[72]; -}; - -struct btrfs_ioctl_ino_lookup_args { - __u64 treeid; - __u64 objectid; - char name[4080]; -}; - -struct btrfs_ioctl_ino_lookup_user_args { - __u64 dirid; - __u64 treeid; - char name[256]; - char path[3824]; -}; - -struct btrfs_ioctl_search_key { - __u64 tree_id; - __u64 min_objectid; - __u64 max_objectid; - __u64 min_offset; - __u64 max_offset; - __u64 min_transid; - __u64 max_transid; - __u32 min_type; - __u32 max_type; - __u32 nr_items; - __u32 unused; - __u64 unused1; - __u64 unused2; - __u64 unused3; - __u64 unused4; -}; - -struct btrfs_ioctl_search_header { - __u64 transid; - __u64 objectid; - __u64 offset; - __u32 type; - __u32 len; -}; - -struct btrfs_ioctl_search_args { - struct btrfs_ioctl_search_key key; - char buf[3992]; -}; - -struct btrfs_ioctl_search_args_v2 { - struct btrfs_ioctl_search_key key; - __u64 buf_size; - __u64 buf[0]; -}; - -struct btrfs_ioctl_defrag_range_args { - __u64 start; - __u64 len; - __u64 flags; - __u32 extent_thresh; - __u32 compress_type; - __u32 unused[4]; -}; - -struct btrfs_ioctl_space_info { - __u64 flags; - __u64 total_bytes; - __u64 used_bytes; -}; - -struct btrfs_ioctl_space_args { - __u64 space_slots; - __u64 total_spaces; - struct btrfs_ioctl_space_info spaces[0]; -}; - -struct btrfs_data_container { - __u32 bytes_left; - __u32 bytes_missing; - __u32 elem_cnt; - __u32 elem_missed; - __u64 val[0]; -}; - -struct btrfs_ioctl_ino_path_args { - __u64 inum; - __u64 size; - __u64 reserved[4]; - __u64 fspath; -}; - -struct btrfs_ioctl_logical_ino_args { - __u64 logical; - __u64 size; - __u64 reserved[3]; - __u64 flags; - __u64 inodes; -}; - -struct btrfs_ioctl_get_dev_stats { - __u64 devid; - __u64 nr_items; - __u64 flags; - __u64 values[5]; - __u64 unused[121]; -}; - -struct btrfs_ioctl_quota_ctl_args { - __u64 cmd; - __u64 status; -}; - -struct btrfs_ioctl_quota_rescan_args { - __u64 flags; - __u64 progress; - __u64 reserved[6]; -}; - -struct btrfs_ioctl_qgroup_assign_args { - __u64 assign; - __u64 src; - __u64 dst; -}; - -struct btrfs_ioctl_qgroup_create_args { - __u64 create; - __u64 qgroupid; -}; - -struct btrfs_ioctl_timespec { - __u64 sec; - __u32 nsec; -}; - -struct btrfs_ioctl_received_subvol_args { - char uuid[16]; - __u64 stransid; - __u64 rtransid; - struct btrfs_ioctl_timespec stime; - struct btrfs_ioctl_timespec rtime; - __u64 flags; - __u64 reserved[16]; -}; - -struct btrfs_ioctl_send_args { - __s64 send_fd; - __u64 clone_sources_count; - __u64 *clone_sources; - __u64 parent_root; - __u64 flags; - __u32 version; - __u8 reserved[28]; -}; - -struct btrfs_ioctl_get_subvol_info_args { - __u64 treeid; - char name[256]; - __u64 parent_id; - __u64 dirid; - __u64 generation; - __u64 flags; - __u8 uuid[16]; - __u8 parent_uuid[16]; - __u8 received_uuid[16]; - __u64 ctransid; - __u64 otransid; - __u64 stransid; - __u64 rtransid; - struct btrfs_ioctl_timespec ctime; - struct btrfs_ioctl_timespec otime; - struct btrfs_ioctl_timespec stime; - struct btrfs_ioctl_timespec rtime; - __u64 reserved[8]; -}; - -struct btrfs_ioctl_get_subvol_rootref_args { - __u64 min_treeid; - struct { - __u64 treeid; - __u64 dirid; - } rootref[255]; - __u8 num_items; - __u8 align[7]; -}; - -struct btrfs_ioctl_encoded_io_args { - const struct iovec *iov; - long unsigned int iovcnt; - __s64 offset; - __u64 flags; - __u64 len; - __u64 unencoded_len; - __u64 unencoded_offset; - __u32 compression; - __u32 encryption; - __u8 reserved[64]; -}; - -enum btrfs_err_code { - BTRFS_ERROR_DEV_RAID1_MIN_NOT_MET = 1, - BTRFS_ERROR_DEV_RAID10_MIN_NOT_MET = 2, - BTRFS_ERROR_DEV_RAID5_MIN_NOT_MET = 3, - BTRFS_ERROR_DEV_RAID6_MIN_NOT_MET = 4, - BTRFS_ERROR_DEV_TGT_REPLACE = 5, - BTRFS_ERROR_DEV_MISSING_NOT_FOUND = 6, - BTRFS_ERROR_DEV_ONLY_WRITABLE = 7, - BTRFS_ERROR_DEV_EXCL_RUN_IN_PROGRESS = 8, - BTRFS_ERROR_DEV_RAID1C3_MIN_NOT_MET = 9, - BTRFS_ERROR_DEV_RAID1C4_MIN_NOT_MET = 10, -}; - -struct btrfs_inode_ref { - __le64 index; - __le16 name_len; -} __attribute__((packed)); - -struct btrfs_root_ref { - __le64 dirid; - __le64 sequence; - __le16 name_len; -} __attribute__((packed)); - -enum btrfs_lock_nesting { - BTRFS_NESTING_NORMAL = 0, - BTRFS_NESTING_COW = 1, - BTRFS_NESTING_LEFT = 2, - BTRFS_NESTING_RIGHT = 3, - BTRFS_NESTING_LEFT_COW = 4, - BTRFS_NESTING_RIGHT_COW = 5, - BTRFS_NESTING_SPLIT = 6, - BTRFS_NESTING_NEW_ROOT = 7, - BTRFS_NESTING_MAX = 8, -}; - -enum { - BTRFS_ROOT_IN_TRANS_SETUP = 0, - BTRFS_ROOT_SHAREABLE = 1, - BTRFS_ROOT_TRACK_DIRTY = 2, - BTRFS_ROOT_IN_RADIX = 3, - BTRFS_ROOT_ORPHAN_ITEM_INSERTED = 4, - BTRFS_ROOT_DEFRAG_RUNNING = 5, - BTRFS_ROOT_FORCE_COW = 6, - BTRFS_ROOT_MULTI_LOG_TASKS = 7, - BTRFS_ROOT_DIRTY = 8, - BTRFS_ROOT_DELETING = 9, - BTRFS_ROOT_DEAD_RELOC_TREE = 10, - BTRFS_ROOT_DEAD_TREE = 11, - BTRFS_ROOT_HAS_LOG_TREE = 12, - BTRFS_ROOT_QGROUP_FLUSHING = 13, - BTRFS_ROOT_ORPHAN_CLEANUP = 14, - BTRFS_ROOT_UNFINISHED_DROP = 15, - BTRFS_ROOT_RESET_LOCKDEP_CLASS = 16, -}; - -struct fscrypt_name { - const struct qstr *usr_fname; - struct fscrypt_str disk_name; - u32 hash; - u32 minor_hash; - struct fscrypt_str crypto_buf; - bool is_nokey_name; -}; - -struct btrfs_new_inode_args { - struct inode *dir; - struct dentry *dentry; - struct inode *inode; - bool orphan; - bool subvol; - struct posix_acl *default_acl; - struct posix_acl *acl; - struct fscrypt_name fname; -}; - -enum btrfs_ilock_type { - __BTRFS_ILOCK_SHARED_BIT = 0, - BTRFS_ILOCK_SHARED = 1, - __BTRFS_ILOCK_SHARED_SEQ = 0, - __BTRFS_ILOCK_TRY_BIT = 1, - BTRFS_ILOCK_TRY = 2, - __BTRFS_ILOCK_TRY_SEQ = 1, - __BTRFS_ILOCK_MMAP_BIT = 2, - BTRFS_ILOCK_MMAP = 4, - __BTRFS_ILOCK_MMAP_SEQ = 2, -}; - -struct btrfs_dev_lookup_args { - u64 devid; - u8 *uuid; - u8 *fsid; - bool missing; -}; - -struct inode_fs_paths { - struct btrfs_path *btrfs_path; - struct btrfs_root *fs_root; - struct btrfs_data_container *fspath; -}; - -enum btrfs_feature_set { - FEAT_COMPAT = 0, - FEAT_COMPAT_RO = 1, - FEAT_INCOMPAT = 2, - FEAT_MAX = 3, -}; - -struct btrfs_qgroup_rsv { - u64 values[3]; -}; - -struct btrfs_qgroup { - u64 qgroupid; - u64 rfer; - u64 rfer_cmpr; - u64 excl; - u64 excl_cmpr; - u64 lim_flags; - u64 max_rfer; - u64 max_excl; - u64 rsv_rfer; - u64 rsv_excl; - struct btrfs_qgroup_rsv rsv; - struct list_head groups; - struct list_head members; - struct list_head dirty; - struct list_head iterator; - struct list_head nested_iterator; - struct rb_node node; - u64 old_refcnt; - u64 new_refcnt; - struct kobject kobj; -}; - -struct btrfs_qgroup_list { - struct list_head next_group; - struct list_head next_member; - struct btrfs_qgroup *group; - struct btrfs_qgroup *member; -}; - -struct btrfs_ioctl_timespec_32 { - __u64 sec; - __u32 nsec; -} __attribute__((packed)); - -struct btrfs_ioctl_received_subvol_args_32 { - char uuid[16]; - __u64 stransid; - __u64 rtransid; - struct btrfs_ioctl_timespec_32 stime; - struct btrfs_ioctl_timespec_32 rtime; - __u64 flags; - __u64 reserved[16]; -}; - -enum btrfs_reserve_flush_enum { - BTRFS_RESERVE_NO_FLUSH = 0, - BTRFS_RESERVE_FLUSH_LIMIT = 1, - BTRFS_RESERVE_FLUSH_EVICT = 2, - BTRFS_RESERVE_FLUSH_DATA = 3, - BTRFS_RESERVE_FLUSH_FREE_SPACE_INODE = 4, - BTRFS_RESERVE_FLUSH_ALL = 5, - BTRFS_RESERVE_FLUSH_ALL_STEAL = 6, - BTRFS_RESERVE_FLUSH_EMERGENCY = 7, -}; - -enum btrfs_flush_state { - FLUSH_DELAYED_ITEMS_NR = 1, - FLUSH_DELAYED_ITEMS = 2, - FLUSH_DELAYED_REFS_NR = 3, - FLUSH_DELAYED_REFS = 4, - FLUSH_DELALLOC = 5, - FLUSH_DELALLOC_WAIT = 6, - FLUSH_DELALLOC_FULL = 7, - ALLOC_CHUNK = 8, - ALLOC_CHUNK_FORCE = 9, - RUN_DELAYED_IPUTS = 10, - COMMIT_TRANS = 11, -}; - -struct reserve_ticket { - u64 bytes; - int error; - bool steal; - struct list_head list; - wait_queue_head_t wait; -}; - -enum btrfs_chunk_alloc_enum { - CHUNK_ALLOC_NO_FORCE = 0, - CHUNK_ALLOC_LIMITED = 1, - CHUNK_ALLOC_FORCE = 2, - CHUNK_ALLOC_FORCE_FOR_EXTENT = 3, -}; - -struct sysinfo { - __kernel_long_t uptime; - __kernel_ulong_t loads[3]; - __kernel_ulong_t totalram; - __kernel_ulong_t freeram; - __kernel_ulong_t sharedram; - __kernel_ulong_t bufferram; - __kernel_ulong_t totalswap; - __kernel_ulong_t freeswap; - __u16 procs; - __u16 pad; - __kernel_ulong_t totalhigh; - __kernel_ulong_t freehigh; - __u32 mem_unit; - char _f[0]; -}; - -enum positive_aop_returns { - AOP_WRITEPAGE_ACTIVATE = 524288, - AOP_TRUNCATED_PAGE = 524289, -}; - -enum f2fs_error { - ERROR_CORRUPTED_CLUSTER = 0, - ERROR_FAIL_DECOMPRESSION = 1, - ERROR_INVALID_BLKADDR = 2, - ERROR_CORRUPTED_DIRENT = 3, - ERROR_CORRUPTED_INODE = 4, - ERROR_INCONSISTENT_SUMMARY = 5, - ERROR_INCONSISTENT_FOOTER = 6, - ERROR_INCONSISTENT_SUM_TYPE = 7, - ERROR_CORRUPTED_JOURNAL = 8, - ERROR_INCONSISTENT_NODE_COUNT = 9, - ERROR_INCONSISTENT_BLOCK_COUNT = 10, - ERROR_INVALID_CURSEG = 11, - ERROR_INCONSISTENT_SIT = 12, - ERROR_CORRUPTED_VERITY_XATTR = 13, - ERROR_CORRUPTED_XATTR = 14, - ERROR_INVALID_NODE_REFERENCE = 15, - ERROR_INCONSISTENT_NAT = 16, - ERROR_MAX = 17, -}; - -struct f2fs_nat_entry { - __u8 version; - __le32 ino; - __le32 block_addr; -} __attribute__((packed)); - -struct f2fs_nat_block { - struct f2fs_nat_entry entries[455]; -}; - -struct f2fs_sit_entry { - __le16 vblocks; - __u8 valid_map[64]; - __le64 mtime; -} __attribute__((packed)); - -struct f2fs_summary { - __le32 nid; - union { - __u8 reserved[3]; - struct { - __u8 version; - __le16 ofs_in_node; - } __attribute__((packed)); - }; -} __attribute__((packed)); - -struct summary_footer { - unsigned char entry_type; - __le32 check_sum; -} __attribute__((packed)); - -enum { - NAT_JOURNAL = 0, - SIT_JOURNAL = 1, -}; - -struct nat_journal_entry { - __le32 nid; - struct f2fs_nat_entry ne; -} __attribute__((packed)); - -struct nat_journal { - struct nat_journal_entry entries[38]; - __u8 reserved[11]; -}; - -struct sit_journal_entry { - __le32 segno; - struct f2fs_sit_entry se; -} __attribute__((packed)); - -struct sit_journal { - struct sit_journal_entry entries[6]; - __u8 reserved[37]; -}; - -struct f2fs_extra_info { - __le64 kbytes_written; - __u8 reserved[497]; -} __attribute__((packed)); - -struct f2fs_journal { - union { - __le16 n_nats; - __le16 n_sits; - }; - union { - struct nat_journal nat_j; - struct sit_journal sit_j; - struct f2fs_extra_info info; - }; -} __attribute__((packed)); - -struct f2fs_summary_block { - struct f2fs_summary entries[512]; - struct f2fs_journal journal; - struct summary_footer footer; -}; - -enum { - NAT_BITMAP = 0, - SIT_BITMAP = 1, -}; - -struct cp_control { - int reason; - __u64 trim_start; - __u64 trim_end; - __u64 trim_minlen; -}; - -enum { - ORPHAN_INO = 0, - APPEND_INO = 1, - UPDATE_INO = 2, - TRANS_DIR_INO = 3, - XATTR_DIR_INO = 4, - FLUSH_INO = 5, - MAX_INO_ENTRY = 6, -}; - -struct fsync_node_entry { - struct list_head list; - struct page *page; - unsigned int seq_id; -}; - -enum { - ALLOC_NODE = 0, - LOOKUP_NODE = 1, - LOOKUP_NODE_RA = 2, -}; - -enum nid_state { - FREE_NID = 0, - PREALLOC_NID = 1, - MAX_NID_STATE = 2, -}; - -enum nat_state { - TOTAL_NAT = 0, - DIRTY_NAT = 1, - RECLAIMABLE_NAT = 2, - MAX_NAT_STATE = 3, -}; - -enum { - CURSEG_HOT_DATA = 0, - CURSEG_WARM_DATA = 1, - CURSEG_COLD_DATA = 2, - CURSEG_HOT_NODE = 3, - CURSEG_WARM_NODE = 4, - CURSEG_COLD_NODE = 5, - NR_PERSISTENT_LOG = 6, - CURSEG_COLD_DATA_PINNED = 6, - CURSEG_ALL_DATA_ATGC = 7, - NO_CHECK_TYPE = 8, -}; - -struct seg_entry; - -struct sec_entry; - -struct sit_info { - block_t sit_base_addr; - block_t sit_blocks; - block_t written_valid_blocks; - char *bitmap; - char *sit_bitmap; - unsigned int bitmap_size; - long unsigned int *tmp_map; - long unsigned int *dirty_sentries_bitmap; - unsigned int dirty_sentries; - unsigned int sents_per_block; - struct rw_semaphore sentry_lock; - struct seg_entry *sentries; - struct sec_entry *sec_entries; - long long unsigned int elapsed_time; - long long unsigned int mounted_time; - long long unsigned int min_mtime; - long long unsigned int max_mtime; - long long unsigned int dirty_min_mtime; - long long unsigned int dirty_max_mtime; - unsigned int last_victim[5]; -}; - -struct free_segmap_info { - unsigned int start_segno; - unsigned int free_segments; - unsigned int free_sections; - spinlock_t segmap_lock; - long unsigned int *free_segmap; - long unsigned int *free_secmap; -}; - -struct dirty_seglist_info { - long unsigned int *dirty_segmap[8]; - long unsigned int *dirty_secmap; - struct mutex seglist_lock; - int nr_dirty[8]; - long unsigned int *victim_secmap; - long unsigned int *pinned_secmap; - unsigned int pinned_secmap_cnt; - bool enable_pin_section; -}; - -struct curseg_info { - struct mutex curseg_mutex; - struct f2fs_summary_block *sum_blk; - struct rw_semaphore journal_rwsem; - struct f2fs_journal *journal; - unsigned char alloc_type; - short unsigned int seg_type; - unsigned int segno; - short unsigned int next_blkoff; - unsigned int zone; - unsigned int next_segno; - int fragment_remained_chunk; - bool inited; -}; - -enum count_type { - F2FS_DIRTY_DENTS = 0, - F2FS_DIRTY_DATA = 1, - F2FS_DIRTY_QDATA = 2, - F2FS_DIRTY_NODES = 3, - F2FS_DIRTY_META = 4, - F2FS_DIRTY_IMETA = 5, - F2FS_WB_CP_DATA = 6, - F2FS_WB_DATA = 7, - F2FS_RD_DATA = 8, - F2FS_RD_NODE = 9, - F2FS_RD_META = 10, - F2FS_DIO_WRITE = 11, - F2FS_DIO_READ = 12, - NR_COUNT_TYPE = 13, -}; - -enum inode_type { - DIR_INODE = 0, - FILE_INODE = 1, - DIRTY_META = 2, - NR_INODE_TYPE = 3, -}; - -enum errors_option { - MOUNT_ERRORS_READONLY = 0, - MOUNT_ERRORS_CONTINUE = 1, - MOUNT_ERRORS_PANIC = 2, -}; - -enum { - PAGE_PRIVATE_NOT_POINTER = 0, - PAGE_PRIVATE_ONGOING_MIGRATION = 1, - PAGE_PRIVATE_INLINE_INODE = 2, - PAGE_PRIVATE_REF_RESOURCE = 3, - PAGE_PRIVATE_ATOMIC_WRITE = 4, - PAGE_PRIVATE_MAX = 5, -}; - -struct iostat_lat_info { - long unsigned int sum_lat[9]; - long unsigned int peak_lat[9]; - unsigned int bio_cnt[9]; -}; - -enum { - IS_CHECKPOINTED = 0, - HAS_FSYNCED_INODE = 1, - HAS_LAST_FSYNC = 2, - IS_DIRTY = 3, - IS_PREALLOC = 4, -}; - -struct node_info { - nid_t nid; - nid_t ino; - block_t blk_addr; - unsigned char version; - unsigned char flag; -}; - -struct nat_entry { - struct list_head list; - struct node_info ni; -}; - -enum mem_type { - FREE_NIDS = 0, - NAT_ENTRIES = 1, - DIRTY_DENTS = 2, - INO_ENTRIES = 3, - READ_EXTENT_CACHE = 4, - AGE_EXTENT_CACHE = 5, - DISCARD_CACHE = 6, - COMPRESS_PAGE = 7, - BASE_CHECK = 8, -}; - -struct nat_entry_set { - struct list_head set_list; - struct list_head entry_list; - nid_t set; - unsigned int entry_cnt; -}; - -struct free_nid { - struct list_head list; - nid_t nid; - int state; -}; - -enum { - BG_GC = 0, - FG_GC = 1, -}; - -struct seg_entry { - unsigned int type: 6; - unsigned int valid_blocks: 10; - unsigned int ckpt_valid_blocks: 10; - unsigned int padding: 6; - unsigned char *cur_valid_map; - unsigned char *ckpt_valid_map; - unsigned char *discard_map; - long long unsigned int mtime; -}; - -struct sec_entry { - unsigned int valid_blocks; -}; - -struct keyring_search_context { - struct keyring_index_key index_key; - const struct cred *cred; - struct key_match_data match_data; - unsigned int flags; - int (*iterator)(const void *, void *); - int skipped_ret; - bool possessed; - key_ref_t result; - time64_t now; -}; - -enum devcg_behavior { - DEVCG_DEFAULT_NONE = 0, - DEVCG_DEFAULT_ALLOW = 1, - DEVCG_DEFAULT_DENY = 2, -}; - -struct dev_exception_item { - u32 major; - u32 minor; - short int type; - short int access; - struct list_head list; - struct callback_head rcu; -}; - -struct dev_cgroup { - struct cgroup_subsys_state css; - struct list_head exceptions; - enum devcg_behavior behavior; -}; - -struct sockaddr_alg_new { - __u16 salg_family; - __u8 salg_type[14]; - __u32 salg_feat; - __u32 salg_mask; - __u8 salg_name[0]; -}; - -struct af_alg_iv { - __u32 ivlen; - __u8 iv[0]; -}; - -struct net_proto_family { - int family; - int (*create)(struct net *, struct socket *, int, int); - struct module *owner; -}; - -enum { - SOCK_WAKE_IO = 0, - SOCK_WAKE_WAITD = 1, - SOCK_WAKE_SPACE = 2, - SOCK_WAKE_URG = 3, -}; - -struct af_alg_control { - struct af_alg_iv *iv; - int op; - unsigned int aead_assoclen; -}; - -struct af_alg_tsgl { - struct list_head list; - unsigned int cur; - struct scatterlist sg[0]; -}; - -struct af_alg_rsgl { - struct af_alg_sgl sgl; - struct list_head list; - size_t sg_num_bytes; -}; - -struct af_alg_async_req { - struct kiocb *iocb; - struct sock *sk; - struct af_alg_rsgl first_rsgl; - struct af_alg_rsgl *last_rsgl; - struct list_head rsgl_list; - struct scatterlist *tsgl; - unsigned int tsgl_entries; - unsigned int outlen; - unsigned int areqlen; - union { - struct aead_request aead_req; - struct skcipher_request skcipher_req; - } cra_u; -}; - -struct af_alg_ctx { - struct list_head tsgl_list; - void *iv; - void *state; - size_t aead_assoclen; - struct crypto_wait wait; - size_t used; - atomic_t rcvused; - bool more: 1; - bool merge: 1; - bool enc: 1; - bool write: 1; - bool init: 1; - unsigned int len; - unsigned int inflight; -}; - -struct user_key_payload { - struct callback_head rcu; - short unsigned int datalen; - long: 0; - char data[0]; -}; - -enum tpm_duration { - TPM_SHORT = 0, - TPM_MEDIUM = 1, - TPM_LONG = 2, - TPM_LONG_LONG = 3, - TPM_UNDEFINED = 4, - TPM_NUM_DURATIONS = 4, -}; - -struct trusted_key_payload { - struct callback_head rcu; - unsigned int key_len; - unsigned int blob_len; - unsigned char migratable; - unsigned char old_format; - unsigned char key[129]; - unsigned char blob[512]; -}; - -struct encrypted_key_payload { - struct callback_head rcu; - char *format; - char *master_desc; - char *datalen; - u8 *iv; - u8 *encrypted_data; - short unsigned int datablob_len; - short unsigned int decrypted_datalen; - short unsigned int payload_datalen; - short unsigned int encrypted_key_format; - u8 *decrypted_data; - u8 payload_data[0]; -}; - -struct alg_type_list { - const struct af_alg_type *type; - struct list_head list; -}; - -struct blk_mq_ctxs; - -struct blk_mq_ctx { - struct { - spinlock_t lock; - struct list_head rq_lists[3]; - long: 64; - }; - unsigned int cpu; - short unsigned int index_hw[3]; - struct blk_mq_hw_ctx *hctxs[3]; - struct request_queue *queue; - struct blk_mq_ctxs *ctxs; - struct kobject kobj; - long: 64; -}; - -struct blk_mq_ctxs { - struct kobject kobj; - struct blk_mq_ctx *queue_ctx; -}; - -struct blk_mq_hw_ctx_sysfs_entry { - struct attribute attr; - ssize_t (*show)(struct blk_mq_hw_ctx *, char *); -}; - -struct klist_iter { - struct klist *i_klist; - struct klist_node *i_cur; -}; - -struct subsys_private; - -struct class_dev_iter { - struct klist_iter ki; - const struct device_type *type; - struct subsys_private *sp; -}; - -struct blkg_iostat { - u64 bytes[3]; - u64 ios[3]; -}; - -struct blkg_iostat_set { - struct u64_stats_sync sync; - struct blkcg_gq *blkg; - struct llist_node lnode; - int lqueued; - struct blkg_iostat cur; - struct blkg_iostat last; -}; - -struct blkcg; - -struct blkg_policy_data; - -struct blkcg_gq { - struct request_queue *q; - struct list_head q_node; - struct hlist_node blkcg_node; - struct blkcg *blkcg; - struct blkcg_gq *parent; - struct percpu_ref refcnt; - bool online; - struct blkg_iostat_set *iostat_cpu; - struct blkg_iostat_set iostat; - struct blkg_policy_data *pd[6]; - spinlock_t async_bio_lock; - struct bio_list async_bios; - union { - struct work_struct async_bio_work; - struct work_struct free_work; - }; - atomic_t use_delay; - atomic64_t delay_nsec; - atomic64_t delay_start; - u64 last_delay; - int last_use; - struct callback_head callback_head; -}; - -enum stat_group { - STAT_READ = 0, - STAT_WRITE = 1, - STAT_DISCARD = 2, - STAT_FLUSH = 3, - NR_STAT_GROUPS = 4, -}; - -enum blkg_iostat_type { - BLKG_IOSTAT_READ = 0, - BLKG_IOSTAT_WRITE = 1, - BLKG_IOSTAT_DISCARD = 2, - BLKG_IOSTAT_NR = 3, -}; - -struct blkcg_policy_data; - -struct blkcg { - struct cgroup_subsys_state css; - spinlock_t lock; - refcount_t online_pin; - atomic_t congestion_count; - struct xarray blkg_tree; - struct blkcg_gq *blkg_hint; - struct hlist_head blkg_list; - struct blkcg_policy_data *cpd[6]; - struct list_head all_blkcgs_node; - struct llist_head *lhead; - struct list_head cgwb_list; -}; - -struct blkg_policy_data { - struct blkcg_gq *blkg; - int plid; - bool online; -}; - -struct blkcg_policy_data { - struct blkcg *blkcg; - int plid; -}; - -typedef struct blkcg_policy_data *blkcg_pol_alloc_cpd_fn(gfp_t); - -typedef void blkcg_pol_free_cpd_fn(struct blkcg_policy_data *); - -typedef struct blkg_policy_data *blkcg_pol_alloc_pd_fn(struct gendisk *, struct blkcg *, gfp_t); - -typedef void blkcg_pol_init_pd_fn(struct blkg_policy_data *); - -typedef void blkcg_pol_online_pd_fn(struct blkg_policy_data *); - -typedef void blkcg_pol_offline_pd_fn(struct blkg_policy_data *); - -typedef void blkcg_pol_free_pd_fn(struct blkg_policy_data *); - -typedef void blkcg_pol_reset_pd_stats_fn(struct blkg_policy_data *); - -typedef void blkcg_pol_stat_pd_fn(struct blkg_policy_data *, struct seq_file *); - -struct blkcg_policy { - int plid; - struct cftype *dfl_cftypes; - struct cftype *legacy_cftypes; - blkcg_pol_alloc_cpd_fn *cpd_alloc_fn; - blkcg_pol_free_cpd_fn *cpd_free_fn; - blkcg_pol_alloc_pd_fn *pd_alloc_fn; - blkcg_pol_init_pd_fn *pd_init_fn; - blkcg_pol_online_pd_fn *pd_online_fn; - blkcg_pol_offline_pd_fn *pd_offline_fn; - blkcg_pol_free_pd_fn *pd_free_fn; - blkcg_pol_reset_pd_stats_fn *pd_reset_stats_fn; - blkcg_pol_stat_pd_fn *pd_stat_fn; -}; - -struct blkg_conf_ctx { - char *input; - char *body; - struct block_device *bdev; - struct blkcg_gq *blkg; -}; - -enum blkg_rwstat_type { - BLKG_RWSTAT_READ = 0, - BLKG_RWSTAT_WRITE = 1, - BLKG_RWSTAT_SYNC = 2, - BLKG_RWSTAT_ASYNC = 3, - BLKG_RWSTAT_DISCARD = 4, - BLKG_RWSTAT_NR = 5, - BLKG_RWSTAT_TOTAL = 5, -}; - -enum { - REQ_F_FIXED_FILE = 1ULL, - REQ_F_IO_DRAIN = 2ULL, - REQ_F_LINK = 4ULL, - REQ_F_HARDLINK = 8ULL, - REQ_F_FORCE_ASYNC = 16ULL, - REQ_F_BUFFER_SELECT = 32ULL, - REQ_F_CQE_SKIP = 64ULL, - REQ_F_FAIL = 256ULL, - REQ_F_INFLIGHT = 512ULL, - REQ_F_CUR_POS = 1024ULL, - REQ_F_NOWAIT = 2048ULL, - REQ_F_LINK_TIMEOUT = 4096ULL, - REQ_F_NEED_CLEANUP = 8192ULL, - REQ_F_POLLED = 16384ULL, - REQ_F_BUFFER_SELECTED = 32768ULL, - REQ_F_BUFFER_RING = 65536ULL, - REQ_F_REISSUE = 131072ULL, - REQ_F_SUPPORT_NOWAIT = 536870912ULL, - REQ_F_ISREG = 1073741824ULL, - REQ_F_CREDS = 262144ULL, - REQ_F_REFCOUNT = 524288ULL, - REQ_F_ARM_LTIMEOUT = 1048576ULL, - REQ_F_ASYNC_DATA = 2097152ULL, - REQ_F_SKIP_LINK_CQES = 4194304ULL, - REQ_F_SINGLE_POLL = 8388608ULL, - REQ_F_DOUBLE_POLL = 16777216ULL, - REQ_F_MULTISHOT = 33554432ULL, - REQ_F_APOLL_MULTISHOT = 67108864ULL, - REQ_F_CLEAR_POLLIN = 134217728ULL, - REQ_F_HASH_LOCKED = 268435456ULL, - REQ_F_POLL_NO_LAZY = 2147483648ULL, - REQ_F_CAN_POLL = 4294967296ULL, - REQ_F_BL_EMPTY = 8589934592ULL, - REQ_F_BL_NO_RECYCLE = 17179869184ULL, - REQ_F_BUFFERS_COMMIT = 34359738368ULL, -}; - -enum { - IOU_OK = 0, - IOU_ISSUE_SKIP_COMPLETE = -529, - IOU_REQUEUE = -3072, - IOU_STOP_MULTISHOT = -125, -}; - -struct io_ftrunc { - struct file *file; - loff_t len; -}; - -struct sg_append_table { - struct sg_table sgt; - struct scatterlist *prv; - unsigned int total_nents; -}; - -typedef struct scatterlist *sg_alloc_fn(unsigned int, gfp_t); - -typedef void sg_free_fn(struct scatterlist *, unsigned int); - -struct sg_page_iter { - struct scatterlist *sg; - unsigned int sg_pgoffset; - unsigned int __nents; - int __pg_advance; -}; - -struct sg_dma_page_iter { - struct sg_page_iter base; -}; - -struct sg_mapping_iter { - struct page *page; - void *addr; - size_t length; - size_t consumed; - struct sg_page_iter piter; - unsigned int __offset; - unsigned int __remaining; - unsigned int __flags; -}; - -struct internal_state { - int dummy; -}; - -typedef struct { - size_t bitContainer; - unsigned int bitsConsumed; - const char *ptr; - const char *start; - const char *limitPtr; -} BIT_DStream_t; - -typedef enum { - BIT_DStream_unfinished = 0, - BIT_DStream_endOfBuffer = 1, - BIT_DStream_completed = 2, - BIT_DStream_overflow = 3, -} BIT_DStream_status; - -typedef unsigned int FSE_DTable; - -typedef struct { - size_t state; - const void *table; -} FSE_DState_t; - -typedef struct { - U16 tableLog; - U16 fastMode; -} FSE_DTableHeader; - -typedef struct { - short unsigned int newState; - unsigned char symbol; - unsigned char nbBits; -} FSE_decode_t; - -typedef struct { - short int ncount[256]; - FSE_DTable dtable[0]; -} FSE_DecompressWksp; - -typedef unsigned char uint8_t___2; - -typedef signed char int8x16_t[16]; - -typedef unsigned char __Poly8_t; - -typedef __Poly8_t poly8x16_t[16]; - -typedef unsigned char uint8x16_t[16]; - -typedef uint8x16_t unative_t; - -struct ts_state { - unsigned int offset; - char cb[48]; -}; - -struct ts_config; - -struct ts_ops { - const char *name; - struct ts_config * (*init)(const void *, unsigned int, gfp_t, int); - unsigned int (*find)(struct ts_config *, struct ts_state *); - void (*destroy)(struct ts_config *); - void * (*get_pattern)(struct ts_config *); - unsigned int (*get_pattern_len)(struct ts_config *); - struct module *owner; - struct list_head list; -}; - -struct ts_config { - struct ts_ops *ops; - int flags; - unsigned int (*get_next_block)(unsigned int, const u8 **, struct ts_config *, struct ts_state *); - void (*finish)(struct ts_config *, struct ts_state *); -}; - -enum { - TS_FSM_SPECIFIC = 0, - TS_FSM_WILDCARD = 1, - TS_FSM_DIGIT = 2, - TS_FSM_XDIGIT = 3, - TS_FSM_PRINT = 4, - TS_FSM_ALPHA = 5, - TS_FSM_ALNUM = 6, - TS_FSM_ASCII = 7, - TS_FSM_CNTRL = 8, - TS_FSM_GRAPH = 9, - TS_FSM_LOWER = 10, - TS_FSM_UPPER = 11, - TS_FSM_PUNCT = 12, - TS_FSM_SPACE = 13, - __TS_FSM_TYPE_MAX = 14, -}; - -enum { - TS_FSM_SINGLE = 0, - TS_FSM_PERHAPS = 1, - TS_FSM_ANY = 2, - TS_FSM_MULTI = 3, - TS_FSM_HEAD_IGNORE = 4, - __TS_FSM_RECUR_MAX = 5, -}; - -struct ts_fsm_token { - __u16 type; - __u8 recur; - __u8 value; -}; - -struct ts_fsm { - unsigned int ntokens; - struct ts_fsm_token tokens[0]; -}; - -enum { - IRQ_TYPE_NONE = 0, - IRQ_TYPE_EDGE_RISING = 1, - IRQ_TYPE_EDGE_FALLING = 2, - IRQ_TYPE_EDGE_BOTH = 3, - IRQ_TYPE_LEVEL_HIGH = 4, - IRQ_TYPE_LEVEL_LOW = 8, - IRQ_TYPE_LEVEL_MASK = 12, - IRQ_TYPE_SENSE_MASK = 15, - IRQ_TYPE_DEFAULT = 15, - IRQ_TYPE_PROBE = 16, - IRQ_LEVEL = 256, - IRQ_PER_CPU = 512, - IRQ_NOPROBE = 1024, - IRQ_NOREQUEST = 2048, - IRQ_NOAUTOEN = 4096, - IRQ_NO_BALANCING = 8192, - IRQ_MOVE_PCNTXT = 16384, - IRQ_NESTED_THREAD = 32768, - IRQ_NOTHREAD = 65536, - IRQ_PER_CPU_DEVID = 131072, - IRQ_IS_POLLED = 262144, - IRQ_DISABLE_UNLAZY = 524288, - IRQ_HIDDEN = 1048576, - IRQ_NO_DEBUG = 2097152, -}; - -struct gic_quirk { - const char *desc; - const char *compatible; - const char *property; - bool (*init)(void *); - u32 iidr; - u32 mask; -}; - -struct irq_domain_chip_generic_info { - const char *name; - irq_flow_handler_t handler; - unsigned int irqs_per_chip; - unsigned int num_ct; - unsigned int irq_flags_to_clear; - unsigned int irq_flags_to_set; - enum irq_gc_flags gc_flags; - int (*init)(struct irq_chip_generic *); - void (*exit)(struct irq_chip_generic *); -}; - -struct irq_domain_info { - struct fwnode_handle *fwnode; - unsigned int domain_flags; - unsigned int size; - irq_hw_number_t hwirq_max; - int direct_max; - unsigned int hwirq_base; - unsigned int virq_base; - enum irq_domain_bus_token bus_token; - const char *name_suffix; - const struct irq_domain_ops *ops; - void *host_data; - struct irq_domain *parent; - struct irq_domain_chip_generic_info *dgc_info; - int (*init)(struct irq_domain *); - void (*exit)(struct irq_domain *); -}; - -struct partition_affinity { - cpumask_t mask; - void *partition_id; -}; - -struct partition_desc { - int nr_parts; - struct partition_affinity *parts; - struct irq_domain *domain; - struct irq_desc *chained_desc; - long unsigned int *bitmap; - struct irq_domain_ops ops; -}; - -struct pcie_device { - int irq; - struct pci_dev *port; - u32 service; - void *priv_data; - struct device device; -}; - -struct pcie_port_service_driver { - const char *name; - int (*probe)(struct pcie_device *); - void (*remove)(struct pcie_device *); - int (*suspend)(struct pcie_device *); - int (*resume_noirq)(struct pcie_device *); - int (*resume)(struct pcie_device *); - int (*runtime_suspend)(struct pcie_device *); - int (*runtime_resume)(struct pcie_device *); - int (*slot_reset)(struct pcie_device *); - int port_type; - u32 service; - struct device_driver driver; -}; - -struct pci_dynid { - struct list_head node; - struct pci_device_id id; -}; - -struct drv_dev_and_id { - struct pci_driver *drv; - struct pci_dev *dev; - const struct pci_device_id *id; -}; - -struct gpio_device; - -struct gpio_desc_label; - -struct gpio_desc { - struct gpio_device *gdev; - long unsigned int flags; - struct gpio_desc_label *label; - const char *name; - struct device_node *hog; -}; - -enum gpiod_flags { - GPIOD_ASIS = 0, - GPIOD_IN = 1, - GPIOD_OUT_LOW = 3, - GPIOD_OUT_HIGH = 7, - GPIOD_OUT_LOW_OPEN_DRAIN = 11, - GPIOD_OUT_HIGH_OPEN_DRAIN = 15, -}; - -struct clk_gpio { - struct clk_hw hw; - struct gpio_desc *gpiod; -}; - -struct virtio_admin_cmd { - __le16 opcode; - __le16 group_type; - __le64 group_member_id; - struct scatterlist *data_sg; - struct scatterlist *result_sg; - struct completion completion; - int ret; -}; - -struct virtio_pci_common_cfg { - __le32 device_feature_select; - __le32 device_feature; - __le32 guest_feature_select; - __le32 guest_feature; - __le16 msix_config; - __le16 num_queues; - __u8 device_status; - __u8 config_generation; - __le16 queue_select; - __le16 queue_size; - __le16 queue_msix_vector; - __le16 queue_enable; - __le16 queue_notify_off; - __le32 queue_desc_lo; - __le32 queue_desc_hi; - __le32 queue_avail_lo; - __le32 queue_avail_hi; - __le32 queue_used_lo; - __le32 queue_used_hi; -}; - -struct virtio_pci_modern_common_cfg { - struct virtio_pci_common_cfg cfg; - __le16 queue_notify_data; - __le16 queue_reset; - __le16 admin_queue_index; - __le16 admin_queue_num; -}; - -struct virtio_admin_cmd_hdr { - __le16 opcode; - __le16 group_type; - __u8 reserved1[12]; - __le64 group_member_id; -}; - -struct virtio_admin_cmd_status { - __le16 status; - __le16 status_qualifier; - __u8 reserved2[4]; -}; - -struct virtio_pci_legacy_device { - struct pci_dev *pci_dev; - u8 *isr; - void *ioaddr; - struct virtio_device_id id; -}; - -struct virtio_pci_modern_device { - struct pci_dev *pci_dev; - struct virtio_pci_common_cfg *common; - void *device; - void *notify_base; - resource_size_t notify_pa; - u8 *isr; - size_t notify_len; - size_t device_len; - size_t common_len; - int notify_map_cap; - u32 notify_offset_multiplier; - int modern_bars; - struct virtio_device_id id; - int (*device_id_check)(struct pci_dev *); - u64 dma_mask; -}; - -struct virtio_pci_vq_info { - struct virtqueue *vq; - struct list_head node; - unsigned int msix_vector; -}; - -struct virtio_pci_admin_vq { - struct virtio_pci_vq_info *info; - spinlock_t lock; - u64 supported_cmds; - char name[10]; - u16 vq_index; -}; - -struct virtio_pci_device { - struct virtio_device vdev; - struct pci_dev *pci_dev; - union { - struct virtio_pci_legacy_device ldev; - struct virtio_pci_modern_device mdev; - }; - bool is_legacy; - u8 *isr; - spinlock_t lock; - struct list_head virtqueues; - struct list_head slow_virtqueues; - struct virtio_pci_vq_info **vqs; - struct virtio_pci_admin_vq admin_vq; - int msix_enabled; - int intx_enabled; - cpumask_var_t *msix_affinity_masks; - char (*msix_names)[256]; - unsigned int msix_vectors; - unsigned int msix_used_vectors; - bool per_vq_vectors; - struct virtqueue * (*setup_vq)(struct virtio_pci_device *, struct virtio_pci_vq_info *, unsigned int, void (*)(struct virtqueue *), const char *, bool, u16); - void (*del_vq)(struct virtio_pci_vq_info *); - u16 (*config_vector)(struct virtio_pci_device *, u16); - int (*avq_index)(struct virtio_device *, u16 *, u16 *); -}; - -struct tty_audit_buf { - struct mutex mutex; - dev_t dev; - bool icanon; - size_t valid; - u8 *data; -}; - -struct mctrl_gpios; - -struct uart_8250_dma; - -struct uart_8250_ops; - -struct uart_8250_em485; - -struct uart_8250_port { - struct uart_port port; - struct timer_list timer; - struct list_head list; - u32 capabilities; - u16 bugs; - unsigned int tx_loadsz; - unsigned char acr; - unsigned char fcr; - unsigned char ier; - unsigned char lcr; - unsigned char mcr; - unsigned char cur_iotype; - unsigned int rpm_tx_active; - unsigned char canary; - unsigned char probe; - struct mctrl_gpios *gpios; - u16 lsr_saved_flags; - u16 lsr_save_mask; - unsigned char msr_saved_flags; - struct uart_8250_dma *dma; - const struct uart_8250_ops *ops; - u32 (*dl_read)(struct uart_8250_port *); - void (*dl_write)(struct uart_8250_port *, u32); - struct uart_8250_em485 *em485; - void (*rs485_start_tx)(struct uart_8250_port *); - void (*rs485_stop_tx)(struct uart_8250_port *); - struct delayed_work overrun_backoff; - u32 overrun_backoff_time_ms; -}; - -struct uart_8250_ops { - int (*setup_irq)(struct uart_8250_port *); - void (*release_irq)(struct uart_8250_port *); - void (*setup_timer)(struct uart_8250_port *); -}; - -struct uart_8250_em485 { - struct hrtimer start_tx_timer; - struct hrtimer stop_tx_timer; - struct hrtimer *active_timer; - struct uart_8250_port *port; - unsigned int tx_stopped: 1; -}; - -struct dma_chan; - -typedef bool (*dma_filter_fn)(struct dma_chan *, void *); - -enum dma_transfer_direction { - DMA_MEM_TO_MEM = 0, - DMA_MEM_TO_DEV = 1, - DMA_DEV_TO_MEM = 2, - DMA_DEV_TO_DEV = 3, - DMA_TRANS_NONE = 4, -}; - -enum dma_slave_buswidth { - DMA_SLAVE_BUSWIDTH_UNDEFINED = 0, - DMA_SLAVE_BUSWIDTH_1_BYTE = 1, - DMA_SLAVE_BUSWIDTH_2_BYTES = 2, - DMA_SLAVE_BUSWIDTH_3_BYTES = 3, - DMA_SLAVE_BUSWIDTH_4_BYTES = 4, - DMA_SLAVE_BUSWIDTH_8_BYTES = 8, - DMA_SLAVE_BUSWIDTH_16_BYTES = 16, - DMA_SLAVE_BUSWIDTH_32_BYTES = 32, - DMA_SLAVE_BUSWIDTH_64_BYTES = 64, - DMA_SLAVE_BUSWIDTH_128_BYTES = 128, -}; - -struct dma_slave_config { - enum dma_transfer_direction direction; - phys_addr_t src_addr; - phys_addr_t dst_addr; - enum dma_slave_buswidth src_addr_width; - enum dma_slave_buswidth dst_addr_width; - u32 src_maxburst; - u32 dst_maxburst; - u32 src_port_window_size; - u32 dst_port_window_size; - bool device_fc; - void *peripheral_config; - size_t peripheral_size; -}; - -typedef s32 dma_cookie_t; - -struct uart_8250_dma { - int (*tx_dma)(struct uart_8250_port *); - int (*rx_dma)(struct uart_8250_port *); - void (*prepare_tx_dma)(struct uart_8250_port *); - void (*prepare_rx_dma)(struct uart_8250_port *); - dma_filter_fn fn; - void *rx_param; - void *tx_param; - struct dma_slave_config rxconf; - struct dma_slave_config txconf; - struct dma_chan *rxchan; - struct dma_chan *txchan; - phys_addr_t rx_dma_addr; - phys_addr_t tx_dma_addr; - dma_addr_t rx_addr; - dma_addr_t tx_addr; - dma_cookie_t rx_cookie; - dma_cookie_t tx_cookie; - void *rx_buf; - size_t rx_size; - size_t tx_size; - unsigned char tx_running; - unsigned char tx_err; - unsigned char rx_running; -}; - -enum dma_status { - DMA_COMPLETE = 0, - DMA_IN_PROGRESS = 1, - DMA_PAUSED = 2, - DMA_ERROR = 3, - DMA_OUT_OF_ORDER = 4, -}; - -enum dma_transaction_type { - DMA_MEMCPY = 0, - DMA_XOR = 1, - DMA_PQ = 2, - DMA_XOR_VAL = 3, - DMA_PQ_VAL = 4, - DMA_MEMSET = 5, - DMA_MEMSET_SG = 6, - DMA_INTERRUPT = 7, - DMA_PRIVATE = 8, - DMA_ASYNC_TX = 9, - DMA_SLAVE = 10, - DMA_CYCLIC = 11, - DMA_INTERLEAVE = 12, - DMA_COMPLETION_NO_ORDER = 13, - DMA_REPEAT = 14, - DMA_LOAD_EOT = 15, - DMA_TX_TYPE_END = 16, -}; - -struct data_chunk { - size_t size; - size_t icg; - size_t dst_icg; - size_t src_icg; -}; - -struct dma_interleaved_template { - dma_addr_t src_start; - dma_addr_t dst_start; - enum dma_transfer_direction dir; - bool src_inc; - bool dst_inc; - bool src_sgl; - bool dst_sgl; - size_t numf; - size_t frame_size; - struct data_chunk sgl[0]; -}; - -struct dma_vec { - dma_addr_t addr; - size_t len; -}; - -enum dma_ctrl_flags { - DMA_PREP_INTERRUPT = 1, - DMA_CTRL_ACK = 2, - DMA_PREP_PQ_DISABLE_P = 4, - DMA_PREP_PQ_DISABLE_Q = 8, - DMA_PREP_CONTINUE = 16, - DMA_PREP_FENCE = 32, - DMA_CTRL_REUSE = 64, - DMA_PREP_CMD = 128, - DMA_PREP_REPEAT = 256, - DMA_PREP_LOAD_EOT = 512, -}; - -enum sum_check_bits { - SUM_CHECK_P = 0, - SUM_CHECK_Q = 1, -}; - -enum sum_check_flags { - SUM_CHECK_P_RESULT = 1, - SUM_CHECK_Q_RESULT = 2, -}; - -typedef struct { - long unsigned int bits[1]; -} dma_cap_mask_t; - -enum dma_desc_metadata_mode { - DESC_METADATA_NONE = 0, - DESC_METADATA_CLIENT = 1, - DESC_METADATA_ENGINE = 2, -}; - -struct dma_chan_percpu { - long unsigned int memcpy_count; - long unsigned int bytes_transferred; -}; - -struct dma_router { - struct device *dev; - void (*route_free)(struct device *, void *); -}; - -struct dma_device; - -struct dma_chan_dev; - -struct dma_chan { - struct dma_device *device; - struct device *slave; - dma_cookie_t cookie; - dma_cookie_t completed_cookie; - int chan_id; - struct dma_chan_dev *dev; - const char *name; - char *dbg_client_name; - struct list_head device_node; - struct dma_chan_percpu *local; - int client_count; - int table_count; - struct dma_router *router; - void *route_data; - void *private; -}; - -struct dma_slave_map; - -struct dma_filter { - dma_filter_fn fn; - int mapcnt; - const struct dma_slave_map *map; -}; - -enum dmaengine_alignment { - DMAENGINE_ALIGN_1_BYTE = 0, - DMAENGINE_ALIGN_2_BYTES = 1, - DMAENGINE_ALIGN_4_BYTES = 2, - DMAENGINE_ALIGN_8_BYTES = 3, - DMAENGINE_ALIGN_16_BYTES = 4, - DMAENGINE_ALIGN_32_BYTES = 5, - DMAENGINE_ALIGN_64_BYTES = 6, - DMAENGINE_ALIGN_128_BYTES = 7, - DMAENGINE_ALIGN_256_BYTES = 8, -}; - -enum dma_residue_granularity { - DMA_RESIDUE_GRANULARITY_DESCRIPTOR = 0, - DMA_RESIDUE_GRANULARITY_SEGMENT = 1, - DMA_RESIDUE_GRANULARITY_BURST = 2, -}; - -struct dma_async_tx_descriptor; - -struct dma_slave_caps; - -struct dma_tx_state; - -struct dma_device { - struct kref ref; - unsigned int chancnt; - unsigned int privatecnt; - struct list_head channels; - struct list_head global_node; - struct dma_filter filter; - dma_cap_mask_t cap_mask; - enum dma_desc_metadata_mode desc_metadata_modes; - short unsigned int max_xor; - short unsigned int max_pq; - enum dmaengine_alignment copy_align; - enum dmaengine_alignment xor_align; - enum dmaengine_alignment pq_align; - enum dmaengine_alignment fill_align; - int dev_id; - struct device *dev; - struct module *owner; - struct ida chan_ida; - u32 src_addr_widths; - u32 dst_addr_widths; - u32 directions; - u32 min_burst; - u32 max_burst; - u32 max_sg_burst; - bool descriptor_reuse; - enum dma_residue_granularity residue_granularity; - int (*device_alloc_chan_resources)(struct dma_chan *); - int (*device_router_config)(struct dma_chan *); - void (*device_free_chan_resources)(struct dma_chan *); - struct dma_async_tx_descriptor * (*device_prep_dma_memcpy)(struct dma_chan *, dma_addr_t, dma_addr_t, size_t, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_dma_xor)(struct dma_chan *, dma_addr_t, dma_addr_t *, unsigned int, size_t, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_dma_xor_val)(struct dma_chan *, dma_addr_t *, unsigned int, size_t, enum sum_check_flags *, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_dma_pq)(struct dma_chan *, dma_addr_t *, dma_addr_t *, unsigned int, const unsigned char *, size_t, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_dma_pq_val)(struct dma_chan *, dma_addr_t *, dma_addr_t *, unsigned int, const unsigned char *, size_t, enum sum_check_flags *, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_dma_memset)(struct dma_chan *, dma_addr_t, int, size_t, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_dma_memset_sg)(struct dma_chan *, struct scatterlist *, unsigned int, int, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_dma_interrupt)(struct dma_chan *, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_peripheral_dma_vec)(struct dma_chan *, const struct dma_vec *, size_t, enum dma_transfer_direction, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_slave_sg)(struct dma_chan *, struct scatterlist *, unsigned int, enum dma_transfer_direction, long unsigned int, void *); - struct dma_async_tx_descriptor * (*device_prep_dma_cyclic)(struct dma_chan *, dma_addr_t, size_t, size_t, enum dma_transfer_direction, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_interleaved_dma)(struct dma_chan *, struct dma_interleaved_template *, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_dma_imm_data)(struct dma_chan *, dma_addr_t, u64, long unsigned int); - void (*device_caps)(struct dma_chan *, struct dma_slave_caps *); - int (*device_config)(struct dma_chan *, struct dma_slave_config *); - int (*device_pause)(struct dma_chan *); - int (*device_resume)(struct dma_chan *); - int (*device_terminate_all)(struct dma_chan *); - void (*device_synchronize)(struct dma_chan *); - enum dma_status (*device_tx_status)(struct dma_chan *, dma_cookie_t, struct dma_tx_state *); - void (*device_issue_pending)(struct dma_chan *); - void (*device_release)(struct dma_device *); - void (*dbg_summary_show)(struct seq_file *, struct dma_device *); - struct dentry *dbg_dev_root; -}; - -struct dma_chan_dev { - struct dma_chan *chan; - struct device device; - int dev_id; - bool chan_dma_dev; -}; - -struct dma_slave_caps { - u32 src_addr_widths; - u32 dst_addr_widths; - u32 directions; - u32 min_burst; - u32 max_burst; - u32 max_sg_burst; - bool cmd_pause; - bool cmd_resume; - bool cmd_terminate; - enum dma_residue_granularity residue_granularity; - bool descriptor_reuse; -}; - -typedef void (*dma_async_tx_callback)(void *); - -enum dmaengine_tx_result { - DMA_TRANS_NOERROR = 0, - DMA_TRANS_READ_FAILED = 1, - DMA_TRANS_WRITE_FAILED = 2, - DMA_TRANS_ABORTED = 3, -}; - -struct dmaengine_result { - enum dmaengine_tx_result result; - u32 residue; -}; - -typedef void (*dma_async_tx_callback_result)(void *, const struct dmaengine_result *); - -struct dmaengine_unmap_data { - u8 map_cnt; - u8 to_cnt; - u8 from_cnt; - u8 bidi_cnt; - struct device *dev; - struct kref kref; - size_t len; - dma_addr_t addr[0]; -}; - -struct dma_descriptor_metadata_ops { - int (*attach)(struct dma_async_tx_descriptor *, void *, size_t); - void * (*get_ptr)(struct dma_async_tx_descriptor *, size_t *, size_t *); - int (*set_len)(struct dma_async_tx_descriptor *, size_t); -}; - -struct dma_async_tx_descriptor { - dma_cookie_t cookie; - enum dma_ctrl_flags flags; - dma_addr_t phys; - struct dma_chan *chan; - dma_cookie_t (*tx_submit)(struct dma_async_tx_descriptor *); - int (*desc_free)(struct dma_async_tx_descriptor *); - dma_async_tx_callback callback; - dma_async_tx_callback_result callback_result; - void *callback_param; - struct dmaengine_unmap_data *unmap; - enum dma_desc_metadata_mode desc_metadata_mode; - struct dma_descriptor_metadata_ops *metadata_ops; -}; - -struct dma_tx_state { - dma_cookie_t last; - dma_cookie_t used; - u32 residue; - u32 in_flight_bytes; -}; - -struct dma_slave_map { - const char *devname; - const char *slave; - void *param; -}; - -struct iosys_map { - union { - void *vaddr_iomem; - void *vaddr; - }; - bool is_iomem; -}; - -struct drm_vma_offset_manager { - rwlock_t vm_lock; - struct drm_mm vm_addr_space_mm; -}; - -struct dma_fence_ops; - -struct dma_fence { - spinlock_t *lock; - const struct dma_fence_ops *ops; - union { - struct list_head cb_list; - ktime_t timestamp; - struct callback_head rcu; - }; - u64 context; - u64 seqno; - long unsigned int flags; - struct kref refcount; - int error; -}; - -struct drm_client_buffer { - struct drm_client_dev *client; - u32 pitch; - struct drm_gem_object *gem; - struct iosys_map map; - struct drm_framebuffer *fb; -}; - -struct drm_vma_offset_node { - rwlock_t vm_lock; - struct drm_mm_node vm_node; - struct rb_root vm_files; - void *driver_private; -}; - -struct dma_resv_list; - -struct dma_resv { - struct ww_mutex lock; - struct dma_resv_list *fences; -}; - -struct drm_gem_object_funcs; - -struct drm_gem_lru; - -struct drm_gem_object { - struct kref refcount; - unsigned int handle_count; - struct drm_device *dev; - struct file *filp; - struct drm_vma_offset_node vma_node; - size_t size; - int name; - struct dma_buf *dma_buf; - struct dma_buf_attachment *import_attach; - struct dma_resv *resv; - struct dma_resv _resv; - struct { - struct list_head list; - } gpuva; - const struct drm_gem_object_funcs *funcs; - struct list_head lru_node; - struct drm_gem_lru *lru; -}; - -struct dma_fence_ops { - bool use_64bit_seqno; - const char * (*get_driver_name)(struct dma_fence *); - const char * (*get_timeline_name)(struct dma_fence *); - bool (*enable_signaling)(struct dma_fence *); - bool (*signaled)(struct dma_fence *); - long int (*wait)(struct dma_fence *, bool, long int); - void (*release)(struct dma_fence *); - void (*fence_value_str)(struct dma_fence *, char *, int); - void (*timeline_value_str)(struct dma_fence *, char *, int); - void (*set_deadline)(struct dma_fence *, ktime_t); -}; - -struct dma_fence_cb; - -typedef void (*dma_fence_func_t)(struct dma_fence *, struct dma_fence_cb *); - -struct dma_fence_cb { - struct list_head node; - dma_fence_func_t func; -}; - -struct dma_buf_ops { - bool cache_sgt_mapping; - int (*attach)(struct dma_buf *, struct dma_buf_attachment *); - void (*detach)(struct dma_buf *, struct dma_buf_attachment *); - int (*pin)(struct dma_buf_attachment *); - void (*unpin)(struct dma_buf_attachment *); - struct sg_table * (*map_dma_buf)(struct dma_buf_attachment *, enum dma_data_direction); - void (*unmap_dma_buf)(struct dma_buf_attachment *, struct sg_table *, enum dma_data_direction); - void (*release)(struct dma_buf *); - int (*begin_cpu_access)(struct dma_buf *, enum dma_data_direction); - int (*end_cpu_access)(struct dma_buf *, enum dma_data_direction); - int (*mmap)(struct dma_buf *, struct vm_area_struct *); - int (*vmap)(struct dma_buf *, struct iosys_map *); - void (*vunmap)(struct dma_buf *, struct iosys_map *); -}; - -struct dma_buf_poll_cb_t { - struct dma_fence_cb cb; - wait_queue_head_t *poll; - __poll_t active; -}; - -struct dma_buf { - size_t size; - struct file *file; - struct list_head attachments; - const struct dma_buf_ops *ops; - unsigned int vmapping_counter; - struct iosys_map vmap_ptr; - const char *exp_name; - const char *name; - spinlock_t name_lock; - struct module *owner; - struct list_head list_node; - void *priv; - struct dma_resv *resv; - wait_queue_head_t poll; - struct dma_buf_poll_cb_t cb_in; - struct dma_buf_poll_cb_t cb_out; -}; - -struct dma_buf_attach_ops; - -struct dma_buf_attachment { - struct dma_buf *dmabuf; - struct device *dev; - struct list_head node; - struct sg_table *sgt; - enum dma_data_direction dir; - bool peer2peer; - const struct dma_buf_attach_ops *importer_ops; - void *importer_priv; - void *priv; -}; - -struct dma_buf_attach_ops { - bool allow_peer2peer; - void (*move_notify)(struct dma_buf_attachment *); -}; - -enum drm_gem_object_status { - DRM_GEM_OBJECT_RESIDENT = 1, - DRM_GEM_OBJECT_PURGEABLE = 2, -}; - -struct drm_gem_object_funcs { - void (*free)(struct drm_gem_object *); - int (*open)(struct drm_gem_object *, struct drm_file *); - void (*close)(struct drm_gem_object *, struct drm_file *); - void (*print_info)(struct drm_printer *, unsigned int, const struct drm_gem_object *); - struct dma_buf * (*export)(struct drm_gem_object *, int); - int (*pin)(struct drm_gem_object *); - void (*unpin)(struct drm_gem_object *); - struct sg_table * (*get_sg_table)(struct drm_gem_object *); - int (*vmap)(struct drm_gem_object *, struct iosys_map *); - void (*vunmap)(struct drm_gem_object *, struct iosys_map *); - int (*mmap)(struct drm_gem_object *, struct vm_area_struct *); - int (*evict)(struct drm_gem_object *); - enum drm_gem_object_status (*status)(struct drm_gem_object *); - size_t (*rss)(struct drm_gem_object *); - const struct vm_operations_struct *vm_ops; -}; - -struct drm_gem_lru { - struct mutex *lock; - long int count; - struct list_head list; -}; - -struct drm_debugfs_info { - const char *name; - int (*show)(struct seq_file *, void *); - u32 driver_features; - void *data; -}; - -struct drm_debugfs_entry { - struct drm_device *dev; - struct drm_debugfs_info file; - struct list_head list; -}; - -struct rt_mutex_base { - raw_spinlock_t wait_lock; - struct rb_root_cached waiters; - struct task_struct *owner; -}; - -struct rt_mutex { - struct rt_mutex_base rtmutex; -}; - -struct i2c_msg { - __u16 addr; - __u16 flags; - __u16 len; - __u8 *buf; -}; - -union i2c_smbus_data { - __u8 byte; - __u16 word; - __u8 block[34]; -}; - -struct i2c_algorithm; - -struct i2c_lock_operations; - -struct i2c_bus_recovery_info; - -struct i2c_adapter_quirks; - -struct i2c_adapter { - struct module *owner; - unsigned int class; - const struct i2c_algorithm *algo; - void *algo_data; - const struct i2c_lock_operations *lock_ops; - struct rt_mutex bus_lock; - struct rt_mutex mux_lock; - int timeout; - int retries; - struct device dev; - long unsigned int locked_flags; - int nr; - char name[48]; - struct completion dev_released; - struct mutex userspace_clients_lock; - struct list_head userspace_clients; - struct i2c_bus_recovery_info *bus_recovery_info; - const struct i2c_adapter_quirks *quirks; - struct irq_domain *host_notify_domain; - struct regulator *bus_regulator; - struct dentry *debugfs; - long unsigned int addrs_in_instantiation[2]; -}; - -struct i2c_algorithm { - union { - int (*xfer)(struct i2c_adapter *, struct i2c_msg *, int); - int (*master_xfer)(struct i2c_adapter *, struct i2c_msg *, int); - }; - union { - int (*xfer_atomic)(struct i2c_adapter *, struct i2c_msg *, int); - int (*master_xfer_atomic)(struct i2c_adapter *, struct i2c_msg *, int); - }; - int (*smbus_xfer)(struct i2c_adapter *, u16, short unsigned int, char, u8, int, union i2c_smbus_data *); - int (*smbus_xfer_atomic)(struct i2c_adapter *, u16, short unsigned int, char, u8, int, union i2c_smbus_data *); - u32 (*functionality)(struct i2c_adapter *); -}; - -struct i2c_lock_operations { - void (*lock_bus)(struct i2c_adapter *, unsigned int); - int (*trylock_bus)(struct i2c_adapter *, unsigned int); - void (*unlock_bus)(struct i2c_adapter *, unsigned int); -}; - -struct pinctrl; - -struct pinctrl_state; - -struct i2c_bus_recovery_info { - int (*recover_bus)(struct i2c_adapter *); - int (*get_scl)(struct i2c_adapter *); - void (*set_scl)(struct i2c_adapter *, int); - int (*get_sda)(struct i2c_adapter *); - void (*set_sda)(struct i2c_adapter *, int); - int (*get_bus_free)(struct i2c_adapter *); - void (*prepare_recovery)(struct i2c_adapter *); - void (*unprepare_recovery)(struct i2c_adapter *); - struct gpio_desc *scl_gpiod; - struct gpio_desc *sda_gpiod; - struct pinctrl *pinctrl; - struct pinctrl_state *pins_default; - struct pinctrl_state *pins_gpio; -}; - -struct i2c_adapter_quirks { - u64 flags; - int max_num_msgs; - u16 max_write_len; - u16 max_read_len; - u16 max_comb_1st_msg_len; - u16 max_comb_2nd_msg_len; -}; - -enum vesa_blank_mode { - VESA_NO_BLANKING = 0, - VESA_VSYNC_SUSPEND = 1, - VESA_HSYNC_SUSPEND = 2, - VESA_POWERDOWN = 3, - VESA_BLANK_MAX = 3, -}; - -struct drm_mode_modeinfo { - __u32 clock; - __u16 hdisplay; - __u16 hsync_start; - __u16 hsync_end; - __u16 htotal; - __u16 hskew; - __u16 vdisplay; - __u16 vsync_start; - __u16 vsync_end; - __u16 vtotal; - __u16 vscan; - __u32 vrefresh; - __u32 flags; - __u32 type; - char name[32]; -}; - -enum drm_mode_analog { - DRM_MODE_ANALOG_NTSC = 0, - DRM_MODE_ANALOG_PAL = 1, -}; - -struct analog_param_field { - unsigned int even; - unsigned int odd; -}; - -struct analog_param_range { - unsigned int min; - unsigned int typ; - unsigned int max; -}; - -struct analog_parameters { - unsigned int num_lines; - unsigned int line_duration_ns; - struct analog_param_range hact_ns; - struct analog_param_range hfp_ns; - struct analog_param_range hslen_ns; - struct analog_param_range hbp_ns; - struct analog_param_range hblk_ns; - unsigned int bt601_hfp; - struct analog_param_field vfp_lines; - struct analog_param_field vslen_lines; - struct analog_param_field vbp_lines; -}; - -struct drm_named_mode { - const char *name; - unsigned int pixel_clock_khz; - unsigned int xres; - unsigned int yres; - unsigned int flags; - unsigned int tv_mode; -}; - -struct drm_writeback_job { - struct drm_writeback_connector *connector; - bool prepared; - struct work_struct cleanup_work; - struct list_head list_entry; - struct drm_framebuffer *fb; - struct dma_fence *out_fence; - void *priv; -}; - -struct drm_writeback_connector { - struct drm_connector base; - struct drm_encoder encoder; - struct drm_property_blob *pixel_formats_blob_ptr; - spinlock_t job_lock; - struct list_head job_queue; - unsigned int fence_context; - spinlock_t fence_lock; - long unsigned int fence_seqno; - char timeline_name[32]; -}; - -struct drm_info_list { - const char *name; - int (*show)(struct seq_file *, void *); - u32 driver_features; - void *data; -}; - -struct drm_info_node { - struct drm_minor *minor; - const struct drm_info_list *info_ent; - struct list_head list; - struct dentry *dent; -}; - -struct virtio_gpu_ctrl_hdr { - __le32 type; - __le32 flags; - __le64 fence_id; - __le32 ctx_id; - __u8 ring_idx; - __u8 padding[3]; -}; - -struct virtio_gpu_cursor_pos { - __le32 scanout_id; - __le32 x; - __le32 y; - __le32 padding; -}; - -struct virtio_gpu_update_cursor { - struct virtio_gpu_ctrl_hdr hdr; - struct virtio_gpu_cursor_pos pos; - __le32 resource_id; - __le32 hot_x; - __le32 hot_y; - __le32 padding; -}; - -struct virtio_gpu_rect { - __le32 x; - __le32 y; - __le32 width; - __le32 height; -}; - -struct virtio_gpu_display_one { - struct virtio_gpu_rect r; - __le32 enabled; - __le32 flags; -}; - -struct virtio_gpu_output { - int index; - struct drm_crtc crtc; - struct drm_connector conn; - struct drm_encoder enc; - struct virtio_gpu_display_one info; - struct virtio_gpu_update_cursor cursor; - const struct drm_edid *drm_edid; - int cur_x; - int cur_y; - bool needs_modeset; -}; - -struct virtio_gpu_queue { - struct virtqueue *vq; - spinlock_t qlock; - wait_queue_head_t ack_queue; - struct work_struct dequeue_work; - uint32_t seqno; -}; - -struct virtio_gpu_fence_driver { - atomic64_t last_fence_id; - uint64_t current_fence_id; - uint64_t context; - struct list_head fences; - spinlock_t lock; -}; - -struct virtio_gpu_drv_capset; - -struct virtio_gpu_device { - struct drm_device *ddev; - struct virtio_device *vdev; - struct virtio_gpu_output outputs[16]; - uint32_t num_scanouts; - struct virtio_gpu_queue ctrlq; - struct virtio_gpu_queue cursorq; - struct kmem_cache *vbufs; - atomic_t pending_commands; - struct ida resource_ida; - wait_queue_head_t resp_wq; - spinlock_t display_info_lock; - bool display_info_pending; - struct virtio_gpu_fence_driver fence_drv; - struct ida ctx_id_ida; - bool has_virgl_3d; - bool has_edid; - bool has_indirect; - bool has_resource_assign_uuid; - bool has_resource_blob; - bool has_host_visible; - bool has_context_init; - struct virtio_shm_region host_visible_region; - struct drm_mm host_visible_mm; - struct work_struct config_changed_work; - struct work_struct obj_free_work; - spinlock_t obj_free_lock; - struct list_head obj_free_list; - struct virtio_gpu_drv_capset *capsets; - uint32_t num_capsets; - uint64_t capset_id_mask; - struct list_head cap_cache; - spinlock_t resource_export_lock; - spinlock_t host_visible_lock; -}; - -struct virtio_gpu_drv_capset { - uint32_t id; - uint32_t max_version; - uint32_t max_size; -}; - -enum regcache_type { - REGCACHE_NONE = 0, - REGCACHE_RBTREE = 1, - REGCACHE_FLAT = 2, - REGCACHE_MAPLE = 3, -}; - -struct reg_default { - unsigned int reg; - unsigned int def; -}; - -struct reg_sequence { - unsigned int reg; - unsigned int def; - unsigned int delay_us; -}; - -enum regmap_endian { - REGMAP_ENDIAN_DEFAULT = 0, - REGMAP_ENDIAN_BIG = 1, - REGMAP_ENDIAN_LITTLE = 2, - REGMAP_ENDIAN_NATIVE = 3, -}; - -struct regmap_range { - unsigned int range_min; - unsigned int range_max; -}; - -struct regmap_access_table { - const struct regmap_range *yes_ranges; - unsigned int n_yes_ranges; - const struct regmap_range *no_ranges; - unsigned int n_no_ranges; -}; - -typedef void (*regmap_lock)(void *); - -typedef void (*regmap_unlock)(void *); - -typedef int (*regmap_hw_write)(void *, const void *, size_t); - -typedef int (*regmap_hw_gather_write)(void *, const void *, size_t, const void *, size_t); - -struct regmap_async; - -typedef int (*regmap_hw_async_write)(void *, const void *, size_t, const void *, size_t, struct regmap_async *); - -struct regmap; - -struct regmap_async { - struct list_head list; - struct regmap *map; - void *work_buf; -}; - -typedef int (*regmap_hw_read)(void *, const void *, size_t, void *, size_t); - -typedef int (*regmap_hw_reg_read)(void *, unsigned int, unsigned int *); - -typedef int (*regmap_hw_reg_noinc_read)(void *, unsigned int, void *, size_t); - -typedef int (*regmap_hw_reg_write)(void *, unsigned int, unsigned int); - -typedef int (*regmap_hw_reg_noinc_write)(void *, unsigned int, const void *, size_t); - -typedef int (*regmap_hw_reg_update_bits)(void *, unsigned int, unsigned int, unsigned int); - -typedef struct regmap_async * (*regmap_hw_async_alloc)(void); - -typedef void (*regmap_hw_free_context)(void *); - -struct regmap_bus { - bool fast_io; - bool free_on_exit; - regmap_hw_write write; - regmap_hw_gather_write gather_write; - regmap_hw_async_write async_write; - regmap_hw_reg_write reg_write; - regmap_hw_reg_noinc_write reg_noinc_write; - regmap_hw_reg_update_bits reg_update_bits; - regmap_hw_read read; - regmap_hw_reg_read reg_read; - regmap_hw_reg_noinc_read reg_noinc_read; - regmap_hw_free_context free_context; - regmap_hw_async_alloc async_alloc; - u8 read_flag_mask; - enum regmap_endian reg_format_endian_default; - enum regmap_endian val_format_endian_default; - size_t max_raw_read; - size_t max_raw_write; -}; - -struct regmap_format { - size_t buf_size; - size_t reg_bytes; - size_t pad_bytes; - size_t val_bytes; - s8 reg_shift; - void (*format_write)(struct regmap *, unsigned int, unsigned int); - void (*format_reg)(void *, unsigned int, unsigned int); - void (*format_val)(void *, unsigned int, unsigned int); - unsigned int (*parse_val)(const void *); - void (*parse_inplace)(void *); -}; - -struct hwspinlock; - -struct regcache_ops; - -struct regmap { - union { - struct mutex mutex; - struct { - spinlock_t spinlock; - long unsigned int spinlock_flags; - }; - struct { - raw_spinlock_t raw_spinlock; - long unsigned int raw_spinlock_flags; - }; - }; - struct lock_class_key *lock_key; - regmap_lock lock; - regmap_unlock unlock; - void *lock_arg; - gfp_t alloc_flags; - unsigned int reg_base; - struct device *dev; - void *work_buf; - struct regmap_format format; - const struct regmap_bus *bus; - void *bus_context; - const char *name; - bool async; - spinlock_t async_lock; - wait_queue_head_t async_waitq; - struct list_head async_list; - struct list_head async_free; - int async_ret; - bool debugfs_disable; - struct dentry *debugfs; - const char *debugfs_name; - unsigned int debugfs_reg_len; - unsigned int debugfs_val_len; - unsigned int debugfs_tot_len; - struct list_head debugfs_off_cache; - struct mutex cache_lock; - unsigned int max_register; - bool max_register_is_set; - bool (*writeable_reg)(struct device *, unsigned int); - bool (*readable_reg)(struct device *, unsigned int); - bool (*volatile_reg)(struct device *, unsigned int); - bool (*precious_reg)(struct device *, unsigned int); - bool (*writeable_noinc_reg)(struct device *, unsigned int); - bool (*readable_noinc_reg)(struct device *, unsigned int); - const struct regmap_access_table *wr_table; - const struct regmap_access_table *rd_table; - const struct regmap_access_table *volatile_table; - const struct regmap_access_table *precious_table; - const struct regmap_access_table *wr_noinc_table; - const struct regmap_access_table *rd_noinc_table; - int (*reg_read)(void *, unsigned int, unsigned int *); - int (*reg_write)(void *, unsigned int, unsigned int); - int (*reg_update_bits)(void *, unsigned int, unsigned int, unsigned int); - int (*read)(void *, const void *, size_t, void *, size_t); - int (*write)(void *, const void *, size_t); - bool defer_caching; - long unsigned int read_flag_mask; - long unsigned int write_flag_mask; - int reg_shift; - int reg_stride; - int reg_stride_order; - bool force_write_field; - const struct regcache_ops *cache_ops; - enum regcache_type cache_type; - unsigned int cache_size_raw; - unsigned int cache_word_size; - unsigned int num_reg_defaults; - unsigned int num_reg_defaults_raw; - bool cache_only; - bool cache_bypass; - bool cache_free; - struct reg_default *reg_defaults; - const void *reg_defaults_raw; - void *cache; - bool cache_dirty; - bool no_sync_defaults; - struct reg_sequence *patch; - int patch_regs; - bool use_single_read; - bool use_single_write; - bool can_multi_write; - size_t max_raw_read; - size_t max_raw_write; - struct rb_root range_tree; - void *selector_work_buf; - struct hwspinlock *hwlock; - bool can_sleep; -}; - -struct regcache_ops { - const char *name; - enum regcache_type type; - int (*init)(struct regmap *); - int (*exit)(struct regmap *); - void (*debugfs_init)(struct regmap *); - int (*read)(struct regmap *, unsigned int, unsigned int *); - int (*write)(struct regmap *, unsigned int, unsigned int); - int (*sync)(struct regmap *, unsigned int, unsigned int); - int (*drop)(struct regmap *, unsigned int, unsigned int); -}; - -struct brd_device { - int brd_number; - struct gendisk *brd_disk; - struct list_head brd_list; - struct xarray brd_pages; - u64 brd_nr_pages; -}; - -enum ipvlan_mode { - IPVLAN_MODE_L2 = 0, - IPVLAN_MODE_L3 = 1, - IPVLAN_MODE_L3S = 2, - IPVLAN_MODE_MAX = 3, -}; - -struct arphdr { - __be16 ar_hrd; - __be16 ar_pro; - unsigned char ar_hln; - unsigned char ar_pln; - __be16 ar_op; -}; - -typedef enum { - IPVL_IPV6 = 0, - IPVL_ICMPV6 = 1, - IPVL_IPV4 = 2, - IPVL_ARP = 3, -} ipvl_hdr_type; - -struct ipvl_pcpu_stats { - u64_stats_t rx_pkts; - u64_stats_t rx_bytes; - u64_stats_t rx_mcast; - u64_stats_t tx_pkts; - u64_stats_t tx_bytes; - struct u64_stats_sync syncp; - u32 rx_errs; - u32 tx_drps; -}; - -struct ipvl_port; - -struct ipvl_dev { - struct net_device *dev; - struct list_head pnode; - struct ipvl_port *port; - struct net_device *phy_dev; - struct list_head addrs; - struct ipvl_pcpu_stats *pcpu_stats; - long unsigned int mac_filters[4]; - netdev_features_t sfeatures; - u32 msg_enable; - spinlock_t addrs_lock; -}; - -struct ipvl_port { - struct net_device *dev; - possible_net_t pnet; - struct hlist_head hlhead[256]; - struct list_head ipvlans; - u16 mode; - u16 flags; - u16 dev_id_start; - struct work_struct wq; - struct sk_buff_head backlog; - int count; - struct ida ida; - netdevice_tracker dev_tracker; -}; - -struct ipvl_addr { - struct ipvl_dev *master; - union { - struct in6_addr ip6; - struct in_addr ip4; - } ipu; - struct hlist_node hlnode; - struct list_head anode; - ipvl_hdr_type atype; - struct callback_head rcu; -}; - -struct ipvl_skb_cb { - bool tx_pkt; -}; - -enum macvlan_mode { - MACVLAN_MODE_PRIVATE = 1, - MACVLAN_MODE_VEPA = 2, - MACVLAN_MODE_BRIDGE = 4, - MACVLAN_MODE_PASSTHRU = 8, - MACVLAN_MODE_SOURCE = 16, -}; - -struct macvlan_port; - -struct macvlan_dev { - struct net_device *dev; - struct list_head list; - struct hlist_node hlist; - struct macvlan_port *port; - struct net_device *lowerdev; - netdevice_tracker dev_tracker; - void *accel_priv; - struct vlan_pcpu_stats *pcpu_stats; - long unsigned int mc_filter[4]; - netdev_features_t set_features; - enum macvlan_mode mode; - u16 flags; - unsigned int macaddr_count; - u32 bc_queue_len_req; -}; - -struct tap_queue; - -struct tap_dev { - struct net_device *dev; - u16 flags; - struct tap_queue *taps[256]; - struct list_head queue_list; - int numvtaps; - int numqueues; - netdev_features_t tap_features; - int minor; - void (*update_features)(struct tap_dev *, netdev_features_t); - void (*count_tx_dropped)(struct tap_dev *); - void (*count_rx_dropped)(struct tap_dev *); -}; - -struct tap_queue { - struct sock sk; - struct socket sock; - int vnet_hdr_sz; - struct tap_dev *tap; - struct file *file; - unsigned int flags; - u16 queue_index; - bool enabled; - struct list_head next; - long: 64; - long: 64; - struct ptr_ring ring; -}; - -struct macvtap_dev { - struct macvlan_dev vlan; - struct tap_dev tap; -}; - -enum cavium_mdiobus_mode { - UNINIT = 0, - C22 = 1, - C45 = 2, -}; - -struct cvmx_smix_clk_s { - u64 phase: 8; - u64 sample: 4; - u64 preamble: 1; - u64 clk_idle: 1; - u64 reserved_14_14: 1; - u64 sample_mode: 1; - u64 sample_hi: 5; - u64 reserved_21_23: 3; - u64 mode: 1; - u64 reserved_25_63: 39; -}; - -union cvmx_smix_clk { - u64 u64; - struct cvmx_smix_clk_s s; -}; - -struct cvmx_smix_cmd_s { - u64 reg_adr: 5; - u64 reserved_5_7: 3; - u64 phy_adr: 5; - u64 reserved_13_15: 3; - u64 phy_op: 2; - u64 reserved_18_63: 46; -}; - -union cvmx_smix_cmd { - u64 u64; - struct cvmx_smix_cmd_s s; -}; - -struct cvmx_smix_rd_dat_s { - u64 dat: 16; - u64 val: 1; - u64 pending: 1; - u64 reserved_18_63: 46; -}; - -union cvmx_smix_rd_dat { - u64 u64; - struct cvmx_smix_rd_dat_s s; -}; - -struct cvmx_smix_wr_dat_s { - u64 dat: 16; - u64 val: 1; - u64 pending: 1; - u64 reserved_18_63: 46; -}; - -union cvmx_smix_wr_dat { - u64 u64; - struct cvmx_smix_wr_dat_s s; -}; - -struct cavium_mdiobus { - struct mii_bus *mii_bus; - void *register_base; - enum cavium_mdiobus_mode mode; -}; - -struct flow_dissector { - long long unsigned int used_keys; - short unsigned int offset[33]; -}; - -struct flow_keys_basic { - struct flow_dissector_key_control control; - struct flow_dissector_key_basic basic; -}; - -struct virtio_net_hdr { - __u8 flags; - __u8 gso_type; - __virtio16 hdr_len; - __virtio16 gso_size; - __virtio16 csum_start; - __virtio16 csum_offset; -}; - -struct tun_msg_ctl { - short unsigned int type; - short unsigned int num; - void *ptr; -}; - -struct tun_xdp_hdr { - int buflen; - struct virtio_net_hdr gso; -}; - -struct major_info { - struct callback_head rcu; - dev_t major; - struct idr minor_idr; - spinlock_t minor_lock; - const char *device_name; - struct list_head next; -}; - -typedef __u8 byte_t; - -typedef __u32 int32; - -struct cstate { - byte_t cs_this; - bool initialized; - struct cstate *next; - struct iphdr cs_ip; - struct tcphdr cs_tcp; - unsigned char cs_ipopt[64]; - unsigned char cs_tcpopt[64]; - int cs_hsize; -}; - -struct slcompress { - struct cstate *tstate; - struct cstate *rstate; - byte_t tslot_limit; - byte_t rslot_limit; - byte_t xmit_oldest; - byte_t xmit_current; - byte_t recv_current; - byte_t flags; - int32 sls_o_nontcp; - int32 sls_o_tcp; - int32 sls_o_uncompressed; - int32 sls_o_compressed; - int32 sls_o_searches; - int32 sls_o_misses; - int32 sls_i_uncompressed; - int32 sls_i_compressed; - int32 sls_i_error; - int32 sls_i_tossed; - int32 sls_i_runt; - int32 sls_i_badcheck; -}; - -enum netdev_queue_state_t { - __QUEUE_STATE_DRV_XOFF = 0, - __QUEUE_STATE_STACK_XOFF = 1, - __QUEUE_STATE_FROZEN = 2, -}; - -struct ethtool_netdev_state { - struct xarray rss_ctx; - struct mutex rss_lock; - unsigned int wol_enabled: 1; - unsigned int module_fw_flash_in_progress: 1; -}; - -struct netdev_lag_lower_state_info { - u8 link_up: 1; - u8 tx_enabled: 1; -}; - -struct ethtool_drvinfo { - __u32 cmd; - char driver[32]; - char version[32]; - char fw_version[32]; - char bus_info[32]; - char erom_version[32]; - char reserved2[12]; - __u32 n_priv_flags; - __u32 n_stats; - __u32 testinfo_len; - __u32 eedump_len; - __u32 regdump_len; -}; - -struct ethtool_regs { - __u32 cmd; - __u32 version; - __u32 len; - __u8 data[0]; -}; - -struct ethtool_coalesce { - __u32 cmd; - __u32 rx_coalesce_usecs; - __u32 rx_max_coalesced_frames; - __u32 rx_coalesce_usecs_irq; - __u32 rx_max_coalesced_frames_irq; - __u32 tx_coalesce_usecs; - __u32 tx_max_coalesced_frames; - __u32 tx_coalesce_usecs_irq; - __u32 tx_max_coalesced_frames_irq; - __u32 stats_block_coalesce_usecs; - __u32 use_adaptive_rx_coalesce; - __u32 use_adaptive_tx_coalesce; - __u32 pkt_rate_low; - __u32 rx_coalesce_usecs_low; - __u32 rx_max_coalesced_frames_low; - __u32 tx_coalesce_usecs_low; - __u32 tx_max_coalesced_frames_low; - __u32 pkt_rate_high; - __u32 rx_coalesce_usecs_high; - __u32 rx_max_coalesced_frames_high; - __u32 tx_coalesce_usecs_high; - __u32 tx_max_coalesced_frames_high; - __u32 rate_sample_interval; -}; - -struct ethtool_ringparam { - __u32 cmd; - __u32 rx_max_pending; - __u32 rx_mini_max_pending; - __u32 rx_jumbo_max_pending; - __u32 tx_max_pending; - __u32 rx_pending; - __u32 rx_mini_pending; - __u32 rx_jumbo_pending; - __u32 tx_pending; -}; - -struct ethtool_channels { - __u32 cmd; - __u32 max_rx; - __u32 max_tx; - __u32 max_other; - __u32 max_combined; - __u32 rx_count; - __u32 tx_count; - __u32 other_count; - __u32 combined_count; -}; - -struct ethtool_pauseparam { - __u32 cmd; - __u32 autoneg; - __u32 rx_pause; - __u32 tx_pause; -}; - -enum ethtool_link_ext_state { - ETHTOOL_LINK_EXT_STATE_AUTONEG = 0, - ETHTOOL_LINK_EXT_STATE_LINK_TRAINING_FAILURE = 1, - ETHTOOL_LINK_EXT_STATE_LINK_LOGICAL_MISMATCH = 2, - ETHTOOL_LINK_EXT_STATE_BAD_SIGNAL_INTEGRITY = 3, - ETHTOOL_LINK_EXT_STATE_NO_CABLE = 4, - ETHTOOL_LINK_EXT_STATE_CABLE_ISSUE = 5, - ETHTOOL_LINK_EXT_STATE_EEPROM_ISSUE = 6, - ETHTOOL_LINK_EXT_STATE_CALIBRATION_FAILURE = 7, - ETHTOOL_LINK_EXT_STATE_POWER_BUDGET_EXCEEDED = 8, - ETHTOOL_LINK_EXT_STATE_OVERHEAT = 9, - ETHTOOL_LINK_EXT_STATE_MODULE = 10, -}; - -enum ethtool_link_ext_substate_autoneg { - ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_PARTNER_DETECTED = 1, - ETHTOOL_LINK_EXT_SUBSTATE_AN_ACK_NOT_RECEIVED = 2, - ETHTOOL_LINK_EXT_SUBSTATE_AN_NEXT_PAGE_EXCHANGE_FAILED = 3, - ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_PARTNER_DETECTED_FORCE_MODE = 4, - ETHTOOL_LINK_EXT_SUBSTATE_AN_FEC_MISMATCH_DURING_OVERRIDE = 5, - ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_HCD = 6, -}; - -enum ethtool_link_ext_substate_link_training { - ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_FRAME_LOCK_NOT_ACQUIRED = 1, - ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_LINK_INHIBIT_TIMEOUT = 2, - ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_LINK_PARTNER_DID_NOT_SET_RECEIVER_READY = 3, - ETHTOOL_LINK_EXT_SUBSTATE_LT_REMOTE_FAULT = 4, -}; - -enum ethtool_link_ext_substate_link_logical_mismatch { - ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_ACQUIRE_BLOCK_LOCK = 1, - ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_ACQUIRE_AM_LOCK = 2, - ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_GET_ALIGN_STATUS = 3, - ETHTOOL_LINK_EXT_SUBSTATE_LLM_FC_FEC_IS_NOT_LOCKED = 4, - ETHTOOL_LINK_EXT_SUBSTATE_LLM_RS_FEC_IS_NOT_LOCKED = 5, -}; - -enum ethtool_link_ext_substate_bad_signal_integrity { - ETHTOOL_LINK_EXT_SUBSTATE_BSI_LARGE_NUMBER_OF_PHYSICAL_ERRORS = 1, - ETHTOOL_LINK_EXT_SUBSTATE_BSI_UNSUPPORTED_RATE = 2, - ETHTOOL_LINK_EXT_SUBSTATE_BSI_SERDES_REFERENCE_CLOCK_LOST = 3, - ETHTOOL_LINK_EXT_SUBSTATE_BSI_SERDES_ALOS = 4, -}; - -enum ethtool_link_ext_substate_cable_issue { - ETHTOOL_LINK_EXT_SUBSTATE_CI_UNSUPPORTED_CABLE = 1, - ETHTOOL_LINK_EXT_SUBSTATE_CI_CABLE_TEST_FAILURE = 2, -}; - -enum ethtool_link_ext_substate_module { - ETHTOOL_LINK_EXT_SUBSTATE_MODULE_CMIS_NOT_READY = 1, -}; - -enum ethtool_module_power_mode_policy { - ETHTOOL_MODULE_POWER_MODE_POLICY_HIGH = 1, - ETHTOOL_MODULE_POWER_MODE_POLICY_AUTO = 2, -}; - -enum ethtool_module_power_mode { - ETHTOOL_MODULE_POWER_MODE_LOW = 1, - ETHTOOL_MODULE_POWER_MODE_HIGH = 2, -}; - -enum ethtool_mm_verify_status { - ETHTOOL_MM_VERIFY_STATUS_UNKNOWN = 0, - ETHTOOL_MM_VERIFY_STATUS_INITIAL = 1, - ETHTOOL_MM_VERIFY_STATUS_VERIFYING = 2, - ETHTOOL_MM_VERIFY_STATUS_SUCCEEDED = 3, - ETHTOOL_MM_VERIFY_STATUS_FAILED = 4, - ETHTOOL_MM_VERIFY_STATUS_DISABLED = 5, -}; - -struct ethtool_test { - __u32 cmd; - __u32 flags; - __u32 reserved; - __u32 len; - __u64 data[0]; -}; - -struct ethtool_tcpip4_spec { - __be32 ip4src; - __be32 ip4dst; - __be16 psrc; - __be16 pdst; - __u8 tos; -}; - -struct ethtool_ah_espip4_spec { - __be32 ip4src; - __be32 ip4dst; - __be32 spi; - __u8 tos; -}; - -struct ethtool_usrip4_spec { - __be32 ip4src; - __be32 ip4dst; - __be32 l4_4_bytes; - __u8 tos; - __u8 ip_ver; - __u8 proto; -}; - -struct ethtool_tcpip6_spec { - __be32 ip6src[4]; - __be32 ip6dst[4]; - __be16 psrc; - __be16 pdst; - __u8 tclass; -}; - -struct ethtool_ah_espip6_spec { - __be32 ip6src[4]; - __be32 ip6dst[4]; - __be32 spi; - __u8 tclass; -}; - -struct ethtool_usrip6_spec { - __be32 ip6src[4]; - __be32 ip6dst[4]; - __be32 l4_4_bytes; - __u8 tclass; - __u8 l4_proto; -}; - -union ethtool_flow_union { - struct ethtool_tcpip4_spec tcp_ip4_spec; - struct ethtool_tcpip4_spec udp_ip4_spec; - struct ethtool_tcpip4_spec sctp_ip4_spec; - struct ethtool_ah_espip4_spec ah_ip4_spec; - struct ethtool_ah_espip4_spec esp_ip4_spec; - struct ethtool_usrip4_spec usr_ip4_spec; - struct ethtool_tcpip6_spec tcp_ip6_spec; - struct ethtool_tcpip6_spec udp_ip6_spec; - struct ethtool_tcpip6_spec sctp_ip6_spec; - struct ethtool_ah_espip6_spec ah_ip6_spec; - struct ethtool_ah_espip6_spec esp_ip6_spec; - struct ethtool_usrip6_spec usr_ip6_spec; - struct ethhdr ether_spec; - __u8 hdata[52]; -}; - -struct ethtool_flow_ext { - __u8 padding[2]; - unsigned char h_dest[6]; - __be16 vlan_etype; - __be16 vlan_tci; - __be32 data[2]; -}; - -struct ethtool_rx_flow_spec { - __u32 flow_type; - union ethtool_flow_union h_u; - struct ethtool_flow_ext h_ext; - union ethtool_flow_union m_u; - struct ethtool_flow_ext m_ext; - __u64 ring_cookie; - __u32 location; -}; - -struct ethtool_rxnfc { - __u32 cmd; - __u32 flow_type; - __u64 data; - struct ethtool_rx_flow_spec fs; - union { - __u32 rule_cnt; - __u32 rss_context; - }; - __u32 rule_locs[0]; -}; - -struct ethtool_flash { - __u32 cmd; - __u32 region; - char data[128]; -}; - -struct ethtool_dump { - __u32 cmd; - __u32 version; - __u32 flag; - __u32 len; - __u8 data[0]; -}; - -struct ethtool_fecparam { - __u32 cmd; - __u32 active_fec; - __u32 fec; - __u32 reserved; -}; - -struct ethtool_link_settings { - __u32 cmd; - __u32 speed; - __u8 duplex; - __u8 port; - __u8 phy_address; - __u8 autoneg; - __u8 mdio_support; - __u8 eth_tp_mdix; - __u8 eth_tp_mdix_ctrl; - __s8 link_mode_masks_nwords; - __u8 transceiver; - __u8 master_slave_cfg; - __u8 master_slave_state; - __u8 rate_matching; - __u32 reserved[7]; - __u32 link_mode_masks[0]; -}; - -struct kernel_ethtool_ringparam { - u32 rx_buf_len; - u8 tcp_data_split; - u8 tx_push; - u8 rx_push; - u32 cqe_size; - u32 tx_push_buf_len; - u32 tx_push_buf_max_len; -}; - -struct ethtool_link_ext_state_info { - enum ethtool_link_ext_state link_ext_state; - union { - enum ethtool_link_ext_substate_autoneg autoneg; - enum ethtool_link_ext_substate_link_training link_training; - enum ethtool_link_ext_substate_link_logical_mismatch link_logical_mismatch; - enum ethtool_link_ext_substate_bad_signal_integrity bad_signal_integrity; - enum ethtool_link_ext_substate_cable_issue cable_issue; - enum ethtool_link_ext_substate_module module; - u32 __link_ext_substate; - }; -}; - -struct ethtool_rxfh_context { - u32 indir_size; - u32 key_size; - u16 priv_size; - u8 hfunc; - u8 input_xfrm; - u8 indir_configured: 1; - u8 key_configured: 1; - u32 key_off; - long: 0; - u8 data[0]; -}; - -struct ethtool_link_ksettings { - struct ethtool_link_settings base; - struct { - long unsigned int supported[2]; - long unsigned int advertising[2]; - long unsigned int lp_advertising[2]; - } link_modes; - u32 lanes; -}; - -struct ethtool_keee { - long unsigned int supported[2]; - long unsigned int advertised[2]; - long unsigned int lp_advertised[2]; - u32 tx_lpi_timer; - bool tx_lpi_enabled; - bool eee_active; - bool eee_enabled; -}; - -struct kernel_ethtool_coalesce { - u8 use_cqe_mode_tx; - u8 use_cqe_mode_rx; - u32 tx_aggr_max_bytes; - u32 tx_aggr_max_frames; - u32 tx_aggr_time_usecs; -}; - -struct ethtool_eth_mac_stats { - enum ethtool_mac_stats_src src; - union { - struct { - u64 FramesTransmittedOK; - u64 SingleCollisionFrames; - u64 MultipleCollisionFrames; - u64 FramesReceivedOK; - u64 FrameCheckSequenceErrors; - u64 AlignmentErrors; - u64 OctetsTransmittedOK; - u64 FramesWithDeferredXmissions; - u64 LateCollisions; - u64 FramesAbortedDueToXSColls; - u64 FramesLostDueToIntMACXmitError; - u64 CarrierSenseErrors; - u64 OctetsReceivedOK; - u64 FramesLostDueToIntMACRcvError; - u64 MulticastFramesXmittedOK; - u64 BroadcastFramesXmittedOK; - u64 FramesWithExcessiveDeferral; - u64 MulticastFramesReceivedOK; - u64 BroadcastFramesReceivedOK; - u64 InRangeLengthErrors; - u64 OutOfRangeLengthField; - u64 FrameTooLongErrors; - }; - struct { - u64 FramesTransmittedOK; - u64 SingleCollisionFrames; - u64 MultipleCollisionFrames; - u64 FramesReceivedOK; - u64 FrameCheckSequenceErrors; - u64 AlignmentErrors; - u64 OctetsTransmittedOK; - u64 FramesWithDeferredXmissions; - u64 LateCollisions; - u64 FramesAbortedDueToXSColls; - u64 FramesLostDueToIntMACXmitError; - u64 CarrierSenseErrors; - u64 OctetsReceivedOK; - u64 FramesLostDueToIntMACRcvError; - u64 MulticastFramesXmittedOK; - u64 BroadcastFramesXmittedOK; - u64 FramesWithExcessiveDeferral; - u64 MulticastFramesReceivedOK; - u64 BroadcastFramesReceivedOK; - u64 InRangeLengthErrors; - u64 OutOfRangeLengthField; - u64 FrameTooLongErrors; - } stats; - }; -}; - -struct ethtool_eth_ctrl_stats { - enum ethtool_mac_stats_src src; - union { - struct { - u64 MACControlFramesTransmitted; - u64 MACControlFramesReceived; - u64 UnsupportedOpcodesReceived; - }; - struct { - u64 MACControlFramesTransmitted; - u64 MACControlFramesReceived; - u64 UnsupportedOpcodesReceived; - } stats; - }; -}; - -struct ethtool_pause_stats { - enum ethtool_mac_stats_src src; - union { - struct { - u64 tx_pause_frames; - u64 rx_pause_frames; - }; - struct { - u64 tx_pause_frames; - u64 rx_pause_frames; - } stats; - }; -}; - -struct ethtool_fec_stat { - u64 total; - u64 lanes[8]; -}; - -struct ethtool_fec_stats { - struct ethtool_fec_stat corrected_blocks; - struct ethtool_fec_stat uncorrectable_blocks; - struct ethtool_fec_stat corrected_bits; -}; - -struct ethtool_rmon_hist_range { - u16 low; - u16 high; -}; - -struct ethtool_rmon_stats { - enum ethtool_mac_stats_src src; - union { - struct { - u64 undersize_pkts; - u64 oversize_pkts; - u64 fragments; - u64 jabbers; - u64 hist[10]; - u64 hist_tx[10]; - }; - struct { - u64 undersize_pkts; - u64 oversize_pkts; - u64 fragments; - u64 jabbers; - u64 hist[10]; - u64 hist_tx[10]; - } stats; - }; -}; - -struct ethtool_ts_stats { - union { - struct { - u64 pkts; - u64 lost; - u64 err; - }; - struct { - u64 pkts; - u64 lost; - u64 err; - } tx_stats; - }; -}; - -struct ethtool_module_eeprom { - u32 offset; - u32 length; - u8 page; - u8 bank; - u8 i2c_address; - u8 *data; -}; - -struct ethtool_module_power_mode_params { - enum ethtool_module_power_mode_policy policy; - enum ethtool_module_power_mode mode; -}; - -struct ethtool_mm_state { - u32 verify_time; - u32 max_verify_time; - enum ethtool_mm_verify_status verify_status; - bool tx_enabled; - bool tx_active; - bool pmac_enabled; - bool verify_enabled; - u32 tx_min_frag_size; - u32 rx_min_frag_size; -}; - -struct ethtool_mm_cfg { - u32 verify_time; - bool verify_enabled; - bool tx_enabled; - bool pmac_enabled; - u32 tx_min_frag_size; -}; - -struct ethtool_mm_stats { - u64 MACMergeFrameAssErrorCount; - u64 MACMergeFrameSmdErrorCount; - u64 MACMergeFrameAssOkCount; - u64 MACMergeFragCountRx; - u64 MACMergeFragCountTx; - u64 MACMergeHoldCount; -}; - -struct ethtool_rxfh_param { - u8 hfunc; - u32 indir_size; - u32 *indir; - u32 key_size; - u8 *key; - u32 rss_context; - u8 rss_delete; - u8 input_xfrm; -}; - -struct failover_ops { - int (*slave_pre_register)(struct net_device *, struct net_device *); - int (*slave_register)(struct net_device *, struct net_device *); - int (*slave_pre_unregister)(struct net_device *, struct net_device *); - int (*slave_unregister)(struct net_device *, struct net_device *); - int (*slave_link_change)(struct net_device *, struct net_device *); - int (*slave_name_change)(struct net_device *, struct net_device *); - rx_handler_result_t (*slave_handle_frame)(struct sk_buff **); -}; - -struct failover { - struct list_head list; - struct net_device *failover_dev; - netdevice_tracker dev_tracker; - struct failover_ops *ops; -}; - -struct net_failover_info { - struct net_device *primary_dev; - struct net_device *standby_dev; - struct rtnl_link_stats64 primary_stats; - struct rtnl_link_stats64 standby_stats; - struct rtnl_link_stats64 failover_stats; - spinlock_t stats_lock; -}; - -struct ehci_per_sched { - struct usb_device *udev; - struct usb_host_endpoint *ep; - struct list_head ps_list; - u16 tt_usecs; - u16 cs_mask; - u16 period; - u16 phase; - u8 bw_phase; - u8 phase_uf; - u8 usecs; - u8 c_usecs; - u8 bw_uperiod; - u8 bw_period; -}; - -enum ehci_rh_state { - EHCI_RH_HALTED = 0, - EHCI_RH_SUSPENDED = 1, - EHCI_RH_RUNNING = 2, - EHCI_RH_STOPPING = 3, -}; - -enum ehci_hrtimer_event { - EHCI_HRTIMER_POLL_ASS = 0, - EHCI_HRTIMER_POLL_PSS = 1, - EHCI_HRTIMER_POLL_DEAD = 2, - EHCI_HRTIMER_UNLINK_INTR = 3, - EHCI_HRTIMER_FREE_ITDS = 4, - EHCI_HRTIMER_ACTIVE_UNLINK = 5, - EHCI_HRTIMER_START_UNLINK_INTR = 6, - EHCI_HRTIMER_ASYNC_UNLINKS = 7, - EHCI_HRTIMER_IAA_WATCHDOG = 8, - EHCI_HRTIMER_DISABLE_PERIODIC = 9, - EHCI_HRTIMER_DISABLE_ASYNC = 10, - EHCI_HRTIMER_IO_WATCHDOG = 11, - EHCI_HRTIMER_NUM_EVENTS = 12, -}; - -struct ehci_caps; - -struct ehci_regs; - -struct ehci_dbg_port; - -struct ehci_qh; - -union ehci_shadow; - -struct ehci_itd; - -struct ehci_sitd; - -struct ehci_hcd { - enum ehci_hrtimer_event next_hrtimer_event; - unsigned int enabled_hrtimer_events; - ktime_t hr_timeouts[12]; - struct hrtimer hrtimer; - int PSS_poll_count; - int ASS_poll_count; - int died_poll_count; - struct ehci_caps *caps; - struct ehci_regs *regs; - struct ehci_dbg_port *debug; - __u32 hcs_params; - spinlock_t lock; - enum ehci_rh_state rh_state; - bool scanning: 1; - bool need_rescan: 1; - bool intr_unlinking: 1; - bool iaa_in_progress: 1; - bool async_unlinking: 1; - bool shutdown: 1; - struct ehci_qh *qh_scan_next; - struct ehci_qh *async; - struct ehci_qh *dummy; - struct list_head async_unlink; - struct list_head async_idle; - unsigned int async_unlink_cycle; - unsigned int async_count; - __le32 old_current; - __le32 old_token; - unsigned int periodic_size; - __le32 *periodic; - dma_addr_t periodic_dma; - struct list_head intr_qh_list; - unsigned int i_thresh; - union ehci_shadow *pshadow; - struct list_head intr_unlink_wait; - struct list_head intr_unlink; - unsigned int intr_unlink_wait_cycle; - unsigned int intr_unlink_cycle; - unsigned int now_frame; - unsigned int last_iso_frame; - unsigned int intr_count; - unsigned int isoc_count; - unsigned int periodic_count; - unsigned int uframe_periodic_max; - struct list_head cached_itd_list; - struct ehci_itd *last_itd_to_free; - struct list_head cached_sitd_list; - struct ehci_sitd *last_sitd_to_free; - long unsigned int reset_done[15]; - long unsigned int bus_suspended; - long unsigned int companion_ports; - long unsigned int owned_ports; - long unsigned int port_c_suspend; - long unsigned int suspended_ports; - long unsigned int resuming_ports; - struct dma_pool *qh_pool; - struct dma_pool *qtd_pool; - struct dma_pool *itd_pool; - struct dma_pool *sitd_pool; - unsigned int random_frame; - long unsigned int next_statechange; - ktime_t last_periodic_enable; - u32 command; - unsigned int no_selective_suspend: 1; - unsigned int has_fsl_port_bug: 1; - unsigned int has_fsl_hs_errata: 1; - unsigned int has_fsl_susp_errata: 1; - unsigned int has_ci_pec_bug: 1; - unsigned int big_endian_mmio: 1; - unsigned int big_endian_desc: 1; - unsigned int big_endian_capbase: 1; - unsigned int has_amcc_usb23: 1; - unsigned int need_io_watchdog: 1; - unsigned int amd_pll_fix: 1; - unsigned int use_dummy_qh: 1; - unsigned int has_synopsys_hc_bug: 1; - unsigned int frame_index_bug: 1; - unsigned int need_oc_pp_cycle: 1; - unsigned int imx28_write_fix: 1; - unsigned int spurious_oc: 1; - unsigned int is_aspeed: 1; - unsigned int zx_wakeup_clear_needed: 1; - __le32 *ohci_hcctrl_reg; - unsigned int has_hostpc: 1; - unsigned int has_tdi_phy_lpm: 1; - unsigned int has_ppcd: 1; - u8 sbrn; - u8 bandwidth[64]; - u8 tt_budget[64]; - struct list_head tt_list; - long unsigned int priv[0]; -}; - -struct ehci_caps { - u32 hc_capbase; - u32 hcs_params; - u32 hcc_params; - u8 portroute[8]; -}; - -struct ehci_regs { - u32 command; - u32 status; - u32 intr_enable; - u32 frame_index; - u32 segment; - u32 frame_list; - u32 async_next; - u32 reserved1[2]; - u32 txfill_tuning; - u32 reserved2[6]; - u32 configured_flag; - union { - u32 port_status[15]; - struct { - u32 reserved3[9]; - u32 usbmode; - }; - }; - union { - struct { - u32 reserved4; - u32 hostpc[15]; - }; - u32 brcm_insnreg[4]; - }; - u32 reserved5[2]; - u32 usbmode_ex; -}; - -struct ehci_dbg_port { - u32 control; - u32 pids; - u32 data03; - u32 data47; - u32 address; -}; - -struct ehci_fstn; - -union ehci_shadow { - struct ehci_qh *qh; - struct ehci_itd *itd; - struct ehci_sitd *sitd; - struct ehci_fstn *fstn; - __le32 *hw_next; - void *ptr; -}; - -struct ehci_qh_hw; - -struct ehci_qtd; - -struct ehci_qh { - struct ehci_qh_hw *hw; - dma_addr_t qh_dma; - union ehci_shadow qh_next; - struct list_head qtd_list; - struct list_head intr_node; - struct ehci_qtd *dummy; - struct list_head unlink_node; - struct ehci_per_sched ps; - unsigned int unlink_cycle; - u8 qh_state; - u8 xacterrs; - u8 unlink_reason; - u8 gap_uf; - unsigned int is_out: 1; - unsigned int clearing_tt: 1; - unsigned int dequeue_during_giveback: 1; - unsigned int should_be_inactive: 1; -}; - -struct ehci_iso_stream; - -struct ehci_itd { - __le32 hw_next; - __le32 hw_transaction[8]; - __le32 hw_bufp[7]; - __le32 hw_bufp_hi[7]; - dma_addr_t itd_dma; - union ehci_shadow itd_next; - struct urb *urb; - struct ehci_iso_stream *stream; - struct list_head itd_list; - unsigned int frame; - unsigned int pg; - unsigned int index[8]; - long: 64; -}; - -struct ehci_sitd { - __le32 hw_next; - __le32 hw_fullspeed_ep; - __le32 hw_uframe; - __le32 hw_results; - __le32 hw_buf[2]; - __le32 hw_backpointer; - __le32 hw_buf_hi[2]; - dma_addr_t sitd_dma; - union ehci_shadow sitd_next; - struct urb *urb; - struct ehci_iso_stream *stream; - struct list_head sitd_list; - unsigned int frame; - unsigned int index; -}; - -struct ehci_qtd { - __le32 hw_next; - __le32 hw_alt_next; - __le32 hw_token; - __le32 hw_buf[5]; - __le32 hw_buf_hi[5]; - dma_addr_t qtd_dma; - struct list_head qtd_list; - struct urb *urb; - size_t length; -}; - -struct ehci_fstn { - __le32 hw_next; - __le32 hw_prev; - dma_addr_t fstn_dma; - union ehci_shadow fstn_next; - long: 64; -}; - -struct ehci_qh_hw { - __le32 hw_next; - __le32 hw_info1; - __le32 hw_info2; - __le32 hw_current; - __le32 hw_qtd_next; - __le32 hw_alt_next; - __le32 hw_token; - __le32 hw_buf[5]; - __le32 hw_buf_hi[5]; - long: 64; - long: 64; - long: 64; -}; - -struct ehci_iso_stream { - struct ehci_qh_hw *hw; - u8 bEndpointAddress; - u8 highspeed; - struct list_head td_list; - struct list_head free_list; - struct ehci_per_sched ps; - unsigned int next_uframe; - __le32 splits; - u16 uperiod; - u16 maxp; - unsigned int bandwidth; - __le32 buf0; - __le32 buf1; - __le32 buf2; - __le32 address; -}; - -struct ehci_driver_overrides { - size_t extra_priv_size; - int (*reset)(struct usb_hcd *); - int (*port_power)(struct usb_hcd *, int, bool); -}; - -struct usb_cdc_header_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __le16 bcdCDC; -} __attribute__((packed)); - -struct usb_cdc_call_mgmt_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __u8 bmCapabilities; - __u8 bDataInterface; -}; - -struct usb_cdc_acm_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __u8 bmCapabilities; -}; - -struct usb_cdc_union_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __u8 bMasterInterface0; - __u8 bSlaveInterface0; -}; - -struct usb_cdc_country_functional_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __u8 iCountryCodeRelDate; - __le16 wCountyCode0; -}; - -struct usb_cdc_network_terminal_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __u8 bEntityId; - __u8 iName; - __u8 bChannelIndex; - __u8 bPhysicalInterface; -}; - -struct usb_cdc_ether_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __u8 iMACAddress; - __le32 bmEthernetStatistics; - __le16 wMaxSegmentSize; - __le16 wNumberMCFilters; - __u8 bNumberPowerFilters; -} __attribute__((packed)); - -struct usb_cdc_dmm_desc { - __u8 bFunctionLength; - __u8 bDescriptorType; - __u8 bDescriptorSubtype; - __u16 bcdVersion; - __le16 wMaxCommand; -} __attribute__((packed)); - -struct usb_cdc_mdlm_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __le16 bcdVersion; - __u8 bGUID[16]; -} __attribute__((packed)); - -struct usb_cdc_mdlm_detail_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __u8 bGuidDescriptorType; - __u8 bDetailData[0]; -}; - -struct usb_cdc_obex_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __le16 bcdVersion; -} __attribute__((packed)); - -struct usb_cdc_ncm_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __le16 bcdNcmVersion; - __u8 bmNetworkCapabilities; -} __attribute__((packed)); - -struct usb_cdc_mbim_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __le16 bcdMBIMVersion; - __le16 wMaxControlMessage; - __u8 bNumberFilters; - __u8 bMaxFilterSize; - __le16 wMaxSegmentSize; - __u8 bmNetworkCapabilities; -} __attribute__((packed)); - -struct usb_cdc_mbim_extended_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __le16 bcdMBIMExtendedVersion; - __u8 bMaxOutstandingCommandMessages; - __le16 wMTU; -} __attribute__((packed)); - -struct usb_cdc_line_coding { - __le32 dwDTERate; - __u8 bCharFormat; - __u8 bParityType; - __u8 bDataBits; -} __attribute__((packed)); - -struct usb_cdc_notification { - __u8 bmRequestType; - __u8 bNotificationType; - __le16 wValue; - __le16 wIndex; - __le16 wLength; -}; - -struct usb_cdc_parsed_header { - struct usb_cdc_union_desc *usb_cdc_union_desc; - struct usb_cdc_header_desc *usb_cdc_header_desc; - struct usb_cdc_call_mgmt_descriptor *usb_cdc_call_mgmt_descriptor; - struct usb_cdc_acm_descriptor *usb_cdc_acm_descriptor; - struct usb_cdc_country_functional_desc *usb_cdc_country_functional_desc; - struct usb_cdc_network_terminal_desc *usb_cdc_network_terminal_desc; - struct usb_cdc_ether_desc *usb_cdc_ether_desc; - struct usb_cdc_dmm_desc *usb_cdc_dmm_desc; - struct usb_cdc_mdlm_desc *usb_cdc_mdlm_desc; - struct usb_cdc_mdlm_detail_desc *usb_cdc_mdlm_detail_desc; - struct usb_cdc_obex_desc *usb_cdc_obex_desc; - struct usb_cdc_ncm_desc *usb_cdc_ncm_desc; - struct usb_cdc_mbim_desc *usb_cdc_mbim_desc; - struct usb_cdc_mbim_extended_desc *usb_cdc_mbim_extended_desc; - bool phonet_magic_present; -}; - -struct acm; - -struct acm_wb { - u8 *buf; - dma_addr_t dmah; - unsigned int len; - struct urb *urb; - struct acm *instance; - bool use; -}; - -struct acm_rb { - int size; - unsigned char *base; - dma_addr_t dma; - int index; - struct acm *instance; -}; - -struct acm { - struct usb_device *dev; - struct usb_interface *control; - struct usb_interface *data; - unsigned int in; - unsigned int out; - struct tty_port port; - struct urb *ctrlurb; - u8 *ctrl_buffer; - dma_addr_t ctrl_dma; - u8 *country_codes; - unsigned int country_code_size; - unsigned int country_rel_date; - struct acm_wb wb[16]; - long unsigned int read_urbs_free; - struct urb *read_urbs[16]; - struct acm_rb read_buffers[16]; - int rx_buflimit; - spinlock_t read_lock; - u8 *notification_buffer; - unsigned int nb_index; - unsigned int nb_size; - int transmitting; - spinlock_t write_lock; - struct mutex mutex; - bool disconnected; - long unsigned int flags; - long unsigned int urbs_in_error_delay; - struct usb_cdc_line_coding line; - struct delayed_work dwork; - unsigned int ctrlin; - unsigned int ctrlout; - struct async_icount iocount; - struct async_icount oldcount; - wait_queue_head_t wioctl; - unsigned int writesize; - unsigned int readsize; - unsigned int ctrlsize; - unsigned int minor; - unsigned char clocal; - unsigned int ctrl_caps; - unsigned int susp_count; - unsigned int combined_interfaces: 1; - u8 bInterval; - struct usb_anchor delayed; - long unsigned int quirks; -}; - -struct swoc_info { - __u8 rev; - __u8 reserved[8]; - __u16 LinuxSKU; - __u16 LinuxVer; - __u8 reserved2[47]; -} __attribute__((packed)); - -struct karma_data { - int in_storage; - char *recv; -}; - -struct ark3116_private { - int irda; - struct mutex hw_lock; - int quot; - __u32 lcr; - __u32 hcr; - __u32 mcr; - spinlock_t status_lock; - __u32 msr; - __u32 lsr; -}; - -struct usb_wwan_port_private { - struct urb *in_urbs[4]; - u8 *in_buffer[4]; - struct urb *out_urbs[4]; - u8 *out_buffer[4]; - long unsigned int out_busy; - struct usb_anchor delayed; - int rts_state; - int dtr_state; - int cts_state; - int dsr_state; - int dcd_state; - int ri_state; - long unsigned int tx_start_time[4]; -}; - -struct firmware { - size_t size; - const u8 *data; - void *priv; -}; - -struct ihex_binrec { - __be32 addr; - __be16 len; - uint8_t data[0]; -} __attribute__((packed)); - -struct ezusb_fx_type { - short unsigned int cpucs_reg; - short unsigned int max_internal_adress; -}; - -struct input_mt_pos { - s16 x; - s16 y; -}; - -struct touchscreen_properties { - unsigned int max_x; - unsigned int max_y; - bool invert_x; - bool invert_y; - bool swap_x_y; -}; - -struct of_reconfig_data { - struct device_node *dn; - struct property *prop; - struct property *old_prop; -}; - -enum of_reconfig_change { - OF_RECONFIG_NO_CHANGE = 0, - OF_RECONFIG_CHANGE_ADD = 1, - OF_RECONFIG_CHANGE_REMOVE = 2, -}; - -struct i2c_client { - short unsigned int flags; - short unsigned int addr; - char name[20]; - struct i2c_adapter *adapter; - struct device dev; - int init_irq; - int irq; - struct list_head detected; - void *devres_group_id; -}; - -struct i2c_board_info { - char type[20]; - short unsigned int flags; - short unsigned int addr; - const char *dev_name; - void *platform_data; - struct device_node *of_node; - struct fwnode_handle *fwnode; - const struct software_node *swnode; - const struct resource *resources; - unsigned int num_resources; - int irq; -}; - -typedef bool (*smp_cond_func_t)(int, void *); - -enum tick_broadcast_mode { - TICK_BROADCAST_OFF = 0, - TICK_BROADCAST_ON = 1, - TICK_BROADCAST_FORCE = 2, -}; - -struct mmc_fixup { - const char *name; - u64 rev_start; - u64 rev_end; - unsigned int manfid; - short unsigned int oemid; - short unsigned int year; - unsigned char month; - u16 cis_vendor; - u16 cis_device; - unsigned int ext_csd_rev; - const char *of_compatible; - void (*vendor_fixup)(struct mmc_card *, int); - int data; -}; - -enum mmc_busy_cmd { - MMC_BUSY_CMD6 = 0, - MMC_BUSY_ERASE = 1, - MMC_BUSY_HPI = 2, - MMC_BUSY_EXTR_SINGLE = 3, - MMC_BUSY_IO = 4, -}; - -struct sd_busy_data { - struct mmc_card *card; - u8 *reg_buf; -}; - -struct usb_class_driver { - char *name; - char * (*devnode)(const struct device *, umode_t *); - const struct file_operations *fops; - int minor_base; -}; - -enum hid_class_request { - HID_REQ_GET_REPORT = 1, - HID_REQ_GET_IDLE = 2, - HID_REQ_GET_PROTOCOL = 3, - HID_REQ_SET_REPORT = 9, - HID_REQ_SET_IDLE = 10, - HID_REQ_SET_PROTOCOL = 11, -}; - -struct hid_control_fifo { - unsigned char dir; - struct hid_report *report; - char *raw_report; -}; - -struct hid_output_fifo { - struct hid_report *report; - char *raw_report; -}; - -struct hiddev_event { - unsigned int hid; - int value; -}; - -struct hiddev_devinfo { - __u32 bustype; - __u32 busnum; - __u32 devnum; - __u32 ifnum; - __s16 vendor; - __s16 product; - __s16 version; - __u32 num_applications; -}; - -struct hiddev_collection_info { - __u32 index; - __u32 type; - __u32 usage; - __u32 level; -}; - -struct hiddev_report_info { - __u32 report_type; - __u32 report_id; - __u32 num_fields; -}; - -struct hiddev_field_info { - __u32 report_type; - __u32 report_id; - __u32 field_index; - __u32 maxusage; - __u32 flags; - __u32 physical; - __u32 logical; - __u32 application; - __s32 logical_minimum; - __s32 logical_maximum; - __s32 physical_minimum; - __s32 physical_maximum; - __u32 unit_exponent; - __u32 unit; -}; - -struct hiddev_usage_ref { - __u32 report_type; - __u32 report_id; - __u32 field_index; - __u32 usage_index; - __u32 usage_code; - __s32 value; -}; - -struct hiddev_usage_ref_multi { - struct hiddev_usage_ref uref; - __u32 num_values; - __s32 values[1024]; -}; - -struct hiddev { - int minor; - int exist; - int open; - struct mutex existancelock; - wait_queue_head_t wait; - struct hid_device *hid; - struct list_head list; - spinlock_t list_lock; - bool initialized; -}; - -struct usbhid_device { - struct hid_device *hid; - struct usb_interface *intf; - int ifnum; - unsigned int bufsize; - struct urb *urbin; - char *inbuf; - dma_addr_t inbuf_dma; - struct urb *urbctrl; - struct usb_ctrlrequest *cr; - struct hid_control_fifo ctrl[256]; - unsigned char ctrlhead; - unsigned char ctrltail; - char *ctrlbuf; - dma_addr_t ctrlbuf_dma; - long unsigned int last_ctrl; - struct urb *urbout; - struct hid_output_fifo out[256]; - unsigned char outhead; - unsigned char outtail; - char *outbuf; - dma_addr_t outbuf_dma; - long unsigned int last_out; - struct mutex mutex; - spinlock_t lock; - long unsigned int iofl; - struct timer_list io_retry; - long unsigned int stop_retry; - unsigned int retry_delay; - struct work_struct reset_work; - wait_queue_head_t wait; -}; - -struct hiddev_list { - struct hiddev_usage_ref buffer[2048]; - int head; - int tail; - unsigned int flags; - struct fasync_struct *fasync; - struct hiddev *hiddev; - struct list_head node; - struct mutex thread_lock; -}; - -struct __kernel_old_timeval { - __kernel_long_t tv_sec; - __kernel_long_t tv_usec; -}; - -struct __kernel_sock_timeval { - __s64 tv_sec; - __s64 tv_usec; -}; - -struct pipe_buffer; - -struct pipe_inode_info { - struct mutex mutex; - wait_queue_head_t rd_wait; - wait_queue_head_t wr_wait; - unsigned int head; - unsigned int tail; - unsigned int max_usage; - unsigned int ring_size; - unsigned int nr_accounted; - unsigned int readers; - unsigned int writers; - unsigned int files; - unsigned int r_counter; - unsigned int w_counter; - bool poll_usage; - struct page *tmp_page; - struct fasync_struct *fasync_readers; - struct fasync_struct *fasync_writers; - struct pipe_buffer *bufs; - struct user_struct *user; -}; - -struct user_msghdr { - void *msg_name; - int msg_namelen; - struct iovec *msg_iov; - __kernel_size_t msg_iovlen; - void *msg_control; - __kernel_size_t msg_controllen; - unsigned int msg_flags; -}; - -struct mmsghdr { - struct user_msghdr msg_hdr; - unsigned int msg_len; -}; - -struct ifconf { - int ifc_len; - union { - char *ifcu_buf; - struct ifreq *ifcu_req; - } ifc_ifcu; -}; - -typedef u32 compat_size_t; - -typedef s32 compat_int_t; - -typedef u32 compat_uint_t; - -typedef u32 compat_ulong_t; - -typedef u32 compat_uptr_t; - -typedef u32 compat_caddr_t; - -struct compat_ifmap { - compat_ulong_t mem_start; - compat_ulong_t mem_end; - short unsigned int base_addr; - unsigned char irq; - unsigned char dma; - unsigned char port; -}; - -struct compat_if_settings { - unsigned int type; - unsigned int size; - compat_uptr_t ifs_ifsu; -}; - -struct compat_ifreq { - union { - char ifrn_name[16]; - } ifr_ifrn; - union { - struct sockaddr ifru_addr; - struct sockaddr ifru_dstaddr; - struct sockaddr ifru_broadaddr; - struct sockaddr ifru_netmask; - struct sockaddr ifru_hwaddr; - short int ifru_flags; - compat_int_t ifru_ivalue; - compat_int_t ifru_mtu; - struct compat_ifmap ifru_map; - char ifru_slave[16]; - char ifru_newname[16]; - compat_caddr_t ifru_data; - struct compat_if_settings ifru_settings; - } ifr_ifru; -}; - -struct bpf_empty_prog_array { - struct bpf_prog_array hdr; - struct bpf_prog *null_prog; -}; - -enum { - SKBTX_HW_TSTAMP = 1, - SKBTX_SW_TSTAMP = 2, - SKBTX_IN_PROGRESS = 4, - SKBTX_HW_TSTAMP_USE_CYCLES = 8, - SKBTX_WIFI_STATUS = 16, - SKBTX_HW_TSTAMP_NETDEV = 32, - SKBTX_SCHED_TSTAMP = 64, -}; - -enum sock_shutdown_cmd { - SHUT_RD = 0, - SHUT_WR = 1, - SHUT_RDWR = 2, -}; - -struct compat_msghdr { - compat_uptr_t msg_name; - compat_int_t msg_namelen; - compat_uptr_t msg_iov; - compat_size_t msg_iovlen; - compat_uptr_t msg_control; - compat_size_t msg_controllen; - compat_uint_t msg_flags; -}; - -struct compat_mmsghdr { - struct compat_msghdr msg_hdr; - compat_uint_t msg_len; -}; - -enum { - SOF_TIMESTAMPING_TX_HARDWARE = 1, - SOF_TIMESTAMPING_TX_SOFTWARE = 2, - SOF_TIMESTAMPING_RX_HARDWARE = 4, - SOF_TIMESTAMPING_RX_SOFTWARE = 8, - SOF_TIMESTAMPING_SOFTWARE = 16, - SOF_TIMESTAMPING_SYS_HARDWARE = 32, - SOF_TIMESTAMPING_RAW_HARDWARE = 64, - SOF_TIMESTAMPING_OPT_ID = 128, - SOF_TIMESTAMPING_TX_SCHED = 256, - SOF_TIMESTAMPING_TX_ACK = 512, - SOF_TIMESTAMPING_OPT_CMSG = 1024, - SOF_TIMESTAMPING_OPT_TSONLY = 2048, - SOF_TIMESTAMPING_OPT_STATS = 4096, - SOF_TIMESTAMPING_OPT_PKTINFO = 8192, - SOF_TIMESTAMPING_OPT_TX_SWHW = 16384, - SOF_TIMESTAMPING_BIND_PHC = 32768, - SOF_TIMESTAMPING_OPT_ID_TCP = 65536, - SOF_TIMESTAMPING_OPT_RX_FILTER = 131072, - SOF_TIMESTAMPING_LAST = 131072, - SOF_TIMESTAMPING_MASK = 262143, -}; - -struct scm_ts_pktinfo { - __u32 if_index; - __u32 pkt_length; - __u32 reserved[2]; -}; - -struct socket_alloc { - struct socket socket; - struct inode vfs_inode; - long: 64; - long: 64; - long: 64; -}; - -struct sock_skb_cb { - u32 dropcount; -}; - -struct pipe_buf_operations; - -struct pipe_buffer { - struct page *page; - unsigned int offset; - unsigned int len; - const struct pipe_buf_operations *ops; - unsigned int flags; - long unsigned int private; -}; - -struct pipe_buf_operations { - int (*confirm)(struct pipe_inode_info *, struct pipe_buffer *); - void (*release)(struct pipe_inode_info *, struct pipe_buffer *); - bool (*try_steal)(struct pipe_inode_info *, struct pipe_buffer *); - bool (*get)(struct pipe_inode_info *, struct pipe_buffer *); -}; - -struct pseudo_fs_context { - const struct super_operations *ops; - const struct xattr_handler * const *xattr; - const struct dentry_operations *dops; - long unsigned int magic; -}; - -struct sock_ee_data_rfc4884 { - __u16 len; - __u8 flags; - __u8 reserved; -}; - -struct sock_extended_err { - __u32 ee_errno; - __u8 ee_origin; - __u8 ee_type; - __u8 ee_code; - __u8 ee_pad; - __u32 ee_info; - union { - __u32 ee_data; - struct sock_ee_data_rfc4884 ee_rfc4884; - }; -}; - -struct sock_exterr_skb { - union { - struct inet_skb_parm h4; - struct inet6_skb_parm h6; - } header; - struct sock_extended_err ee; - u16 addr_offset; - __be16 port; - u8 opt_stats: 1; - u8 unused: 7; -}; - -struct used_address { - struct __kernel_sockaddr_storage name; - unsigned int name_len; -}; - -struct skb_gso_cb { - union { - int mac_offset; - int data_offset; - }; - int encap_level; - __wsum csum; - __u16 csum_start; -}; - -struct netdev_xmit { - u16 recursion; - u8 more; - u8 skip_txqueue; -}; - -struct sd_flow_limit; - -struct softnet_data { - struct list_head poll_list; - struct sk_buff_head process_queue; - local_lock_t process_queue_bh_lock; - unsigned int processed; - unsigned int time_squeeze; - struct softnet_data *rps_ipi_list; - unsigned int received_rps; - bool in_net_rx_action; - bool in_napi_threaded_poll; - struct sd_flow_limit *flow_limit; - struct Qdisc *output_queue; - struct Qdisc **output_queue_tailp; - struct sk_buff *completion_queue; - struct netdev_xmit xmit; - long: 64; - long: 64; - long: 64; - unsigned int input_queue_head; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - call_single_data_t csd; - struct softnet_data *rps_ipi_next; - unsigned int cpu; - unsigned int input_queue_tail; - struct sk_buff_head input_pkt_queue; - struct napi_struct backlog; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - atomic_t dropped; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - spinlock_t defer_lock; - int defer_count; - int defer_ipi_scheduled; - struct sk_buff *defer_list; - long: 64; - call_single_data_t defer_csd; -}; - -struct sd_flow_limit { - u64 count; - unsigned int num_buckets; - unsigned int history_head; - u16 history[128]; - u8 buckets[0]; -}; - -struct lwtunnel_encap_ops { - int (*build_state)(struct net *, struct nlattr *, unsigned int, const void *, struct lwtunnel_state **, struct netlink_ext_ack *); - void (*destroy_state)(struct lwtunnel_state *); - int (*output)(struct net *, struct sock *, struct sk_buff *); - int (*input)(struct sk_buff *); - int (*fill_encap)(struct sk_buff *, struct lwtunnel_state *); - int (*get_encap_size)(struct lwtunnel_state *); - int (*cmp_encap)(struct lwtunnel_state *, struct lwtunnel_state *); - int (*xmit)(struct sk_buff *); - struct module *owner; -}; - -enum { - BTF_SOCK_TYPE_INET = 0, - BTF_SOCK_TYPE_INET_CONN = 1, - BTF_SOCK_TYPE_INET_REQ = 2, - BTF_SOCK_TYPE_INET_TW = 3, - BTF_SOCK_TYPE_REQ = 4, - BTF_SOCK_TYPE_SOCK = 5, - BTF_SOCK_TYPE_SOCK_COMMON = 6, - BTF_SOCK_TYPE_TCP = 7, - BTF_SOCK_TYPE_TCP_REQ = 8, - BTF_SOCK_TYPE_TCP_TW = 9, - BTF_SOCK_TYPE_TCP6 = 10, - BTF_SOCK_TYPE_UDP = 11, - BTF_SOCK_TYPE_UDP6 = 12, - BTF_SOCK_TYPE_UNIX = 13, - BTF_SOCK_TYPE_MPTCP = 14, - BTF_SOCK_TYPE_SOCKET = 15, - MAX_BTF_SOCK_TYPE = 16, -}; - -enum { - SK_DIAG_BPF_STORAGE_REQ_NONE = 0, - SK_DIAG_BPF_STORAGE_REQ_MAP_FD = 1, - __SK_DIAG_BPF_STORAGE_REQ_MAX = 2, -}; - -enum { - SK_DIAG_BPF_STORAGE_REP_NONE = 0, - SK_DIAG_BPF_STORAGE = 1, - __SK_DIAG_BPF_STORAGE_REP_MAX = 2, -}; - -enum { - SK_DIAG_BPF_STORAGE_NONE = 0, - SK_DIAG_BPF_STORAGE_PAD = 1, - SK_DIAG_BPF_STORAGE_MAP_ID = 2, - SK_DIAG_BPF_STORAGE_MAP_VALUE = 3, - __SK_DIAG_BPF_STORAGE_MAX = 4, -}; - -typedef u64 (*btf_bpf_sk_storage_get)(struct bpf_map *, struct sock *, void *, u64, gfp_t); - -typedef u64 (*btf_bpf_sk_storage_delete)(struct bpf_map *, struct sock *); - -typedef u64 (*btf_bpf_sk_storage_get_tracing)(struct bpf_map *, struct sock *, void *, u64, gfp_t); - -typedef u64 (*btf_bpf_sk_storage_delete_tracing)(struct bpf_map *, struct sock *); - -struct bpf_sk_storage_diag { - u32 nr_maps; - struct bpf_map *maps[0]; -}; - -struct bpf_iter_seq_sk_storage_map_info { - struct bpf_map *map; - unsigned int bucket_id; - unsigned int skip_elems; -}; - -struct bpf_iter__bpf_sk_storage_map { - union { - struct bpf_iter_meta *meta; - }; - union { - struct bpf_map *map; - }; - union { - struct sock *sk; - }; - union { - void *value; - }; -}; - -enum { - TCA_ACT_UNSPEC = 0, - TCA_ACT_KIND = 1, - TCA_ACT_OPTIONS = 2, - TCA_ACT_INDEX = 3, - TCA_ACT_STATS = 4, - TCA_ACT_PAD = 5, - TCA_ACT_COOKIE = 6, - TCA_ACT_FLAGS = 7, - TCA_ACT_HW_STATS = 8, - TCA_ACT_USED_HW_STATS = 9, - TCA_ACT_IN_HW_COUNT = 10, - __TCA_ACT_MAX = 11, -}; - -struct tcamsg { - unsigned char tca_family; - unsigned char tca__pad1; - short unsigned int tca__pad2; -}; - -enum { - TCA_ROOT_UNSPEC = 0, - TCA_ROOT_TAB = 1, - TCA_ROOT_FLAGS = 2, - TCA_ROOT_COUNT = 3, - TCA_ROOT_TIME_DELTA = 4, - TCA_ROOT_EXT_WARN_MSG = 5, - __TCA_ROOT_MAX = 6, -}; - -typedef int (*rtnl_doit_func)(struct sk_buff *, struct nlmsghdr *, struct netlink_ext_ack *); - -typedef int (*rtnl_dumpit_func)(struct sk_buff *, struct netlink_callback *); - -enum flow_block_command { - FLOW_BLOCK_BIND = 0, - FLOW_BLOCK_UNBIND = 1, -}; - -struct flow_block_offload { - enum flow_block_command command; - enum flow_block_binder_type binder_type; - bool block_shared; - bool unlocked_driver_cb; - struct net *net; - struct flow_block *block; - struct list_head cb_list; - struct list_head *driver_block_list; - struct netlink_ext_ack *extack; - struct Qdisc *sch; - struct list_head *cb_list_head; -}; - -struct flow_block_cb; - -struct flow_block_indr { - struct list_head list; - struct net_device *dev; - struct Qdisc *sch; - enum flow_block_binder_type binder_type; - void *data; - void *cb_priv; - void (*cleanup)(struct flow_block_cb *); -}; - -struct flow_block_cb { - struct list_head driver_list; - struct list_head list; - flow_setup_cb_t *cb; - void *cb_ident; - void *cb_priv; - void (*release)(void *); - struct flow_block_indr indr; - unsigned int refcnt; -}; - -typedef int flow_indr_block_bind_cb_t(struct net_device *, struct Qdisc *, void *, enum tc_setup_type, void *, void *, void (*)(struct flow_block_cb *)); - -struct tc_skb_cb { - struct qdisc_skb_cb qdisc_cb; - u32 drop_reason; - u16 zone; - u16 mru; - u8 post_ct: 1; - u8 post_ct_snat: 1; - u8 post_ct_dnat: 1; -}; - -struct tc_act_pernet_id { - struct list_head list; - unsigned int id; -}; - -struct teql_master { - struct Qdisc_ops qops; - struct net_device *dev; - struct Qdisc *slaves; - struct list_head master_list; - long unsigned int tx_bytes; - long unsigned int tx_packets; - long unsigned int tx_errors; - long unsigned int tx_dropped; -}; - -struct teql_sched_data { - struct Qdisc *next; - struct teql_master *m; - struct sk_buff_head q; -}; - -struct netlink_kernel_cfg { - unsigned int groups; - unsigned int flags; - void (*input)(struct sk_buff *); - int (*bind)(struct net *, int); - void (*unbind)(struct net *, int); - void (*release)(struct sock *, long unsigned int *); -}; - -struct netlink_dump_control { - int (*start)(struct netlink_callback *); - int (*dump)(struct sk_buff *, struct netlink_callback *); - int (*done)(struct netlink_callback *); - struct netlink_ext_ack *extack; - void *data; - struct module *module; - u32 min_dump_alloc; - int flags; -}; - -enum { - CTRL_CMD_UNSPEC = 0, - CTRL_CMD_NEWFAMILY = 1, - CTRL_CMD_DELFAMILY = 2, - CTRL_CMD_GETFAMILY = 3, - CTRL_CMD_NEWOPS = 4, - CTRL_CMD_DELOPS = 5, - CTRL_CMD_GETOPS = 6, - CTRL_CMD_NEWMCAST_GRP = 7, - CTRL_CMD_DELMCAST_GRP = 8, - CTRL_CMD_GETMCAST_GRP = 9, - CTRL_CMD_GETPOLICY = 10, - __CTRL_CMD_MAX = 11, -}; - -enum { - CTRL_ATTR_UNSPEC = 0, - CTRL_ATTR_FAMILY_ID = 1, - CTRL_ATTR_FAMILY_NAME = 2, - CTRL_ATTR_VERSION = 3, - CTRL_ATTR_HDRSIZE = 4, - CTRL_ATTR_MAXATTR = 5, - CTRL_ATTR_OPS = 6, - CTRL_ATTR_MCAST_GROUPS = 7, - CTRL_ATTR_POLICY = 8, - CTRL_ATTR_OP_POLICY = 9, - CTRL_ATTR_OP = 10, - __CTRL_ATTR_MAX = 11, -}; - -enum { - CTRL_ATTR_OP_UNSPEC = 0, - CTRL_ATTR_OP_ID = 1, - CTRL_ATTR_OP_FLAGS = 2, - __CTRL_ATTR_OP_MAX = 3, -}; - -enum { - CTRL_ATTR_MCAST_GRP_UNSPEC = 0, - CTRL_ATTR_MCAST_GRP_NAME = 1, - CTRL_ATTR_MCAST_GRP_ID = 2, - __CTRL_ATTR_MCAST_GRP_MAX = 3, -}; - -enum { - CTRL_ATTR_POLICY_UNSPEC = 0, - CTRL_ATTR_POLICY_DO = 1, - CTRL_ATTR_POLICY_DUMP = 2, - __CTRL_ATTR_POLICY_DUMP_MAX = 3, - CTRL_ATTR_POLICY_DUMP_MAX = 2, -}; - -struct genl_op_iter { - const struct genl_family *family; - struct genl_split_ops doit; - struct genl_split_ops dumpit; - int cmd_idx; - int entry_idx; - u32 cmd; - u8 flags; -}; - -struct genl_start_context { - const struct genl_family *family; - struct nlmsghdr *nlh; - struct netlink_ext_ack *extack; - const struct genl_split_ops *ops; - int hdrlen; -}; - -struct netlink_policy_dump_state; - -struct ctrl_dump_policy_ctx { - struct netlink_policy_dump_state *state; - const struct genl_family *rt; - struct genl_op_iter *op_iter; - u32 op; - u16 fam_id; - u8 dump_map: 1; - u8 single_op: 1; -}; - -enum tunable_id { - ETHTOOL_ID_UNSPEC = 0, - ETHTOOL_RX_COPYBREAK = 1, - ETHTOOL_TX_COPYBREAK = 2, - ETHTOOL_PFC_PREVENTION_TOUT = 3, - ETHTOOL_TX_COPYBREAK_BUF_SIZE = 4, - __ETHTOOL_TUNABLE_COUNT = 5, -}; - -enum phy_tunable_id { - ETHTOOL_PHY_ID_UNSPEC = 0, - ETHTOOL_PHY_DOWNSHIFT = 1, - ETHTOOL_PHY_FAST_LINK_DOWN = 2, - ETHTOOL_PHY_EDPD = 3, - __ETHTOOL_PHY_TUNABLE_COUNT = 4, -}; - -enum { - ETH_RSS_HASH_TOP_BIT = 0, - ETH_RSS_HASH_XOR_BIT = 1, - ETH_RSS_HASH_CRC32_BIT = 2, - ETH_RSS_HASH_FUNCS_COUNT = 3, -}; - -enum { - ETHTOOL_MSG_USER_NONE = 0, - ETHTOOL_MSG_STRSET_GET = 1, - ETHTOOL_MSG_LINKINFO_GET = 2, - ETHTOOL_MSG_LINKINFO_SET = 3, - ETHTOOL_MSG_LINKMODES_GET = 4, - ETHTOOL_MSG_LINKMODES_SET = 5, - ETHTOOL_MSG_LINKSTATE_GET = 6, - ETHTOOL_MSG_DEBUG_GET = 7, - ETHTOOL_MSG_DEBUG_SET = 8, - ETHTOOL_MSG_WOL_GET = 9, - ETHTOOL_MSG_WOL_SET = 10, - ETHTOOL_MSG_FEATURES_GET = 11, - ETHTOOL_MSG_FEATURES_SET = 12, - ETHTOOL_MSG_PRIVFLAGS_GET = 13, - ETHTOOL_MSG_PRIVFLAGS_SET = 14, - ETHTOOL_MSG_RINGS_GET = 15, - ETHTOOL_MSG_RINGS_SET = 16, - ETHTOOL_MSG_CHANNELS_GET = 17, - ETHTOOL_MSG_CHANNELS_SET = 18, - ETHTOOL_MSG_COALESCE_GET = 19, - ETHTOOL_MSG_COALESCE_SET = 20, - ETHTOOL_MSG_PAUSE_GET = 21, - ETHTOOL_MSG_PAUSE_SET = 22, - ETHTOOL_MSG_EEE_GET = 23, - ETHTOOL_MSG_EEE_SET = 24, - ETHTOOL_MSG_TSINFO_GET = 25, - ETHTOOL_MSG_CABLE_TEST_ACT = 26, - ETHTOOL_MSG_CABLE_TEST_TDR_ACT = 27, - ETHTOOL_MSG_TUNNEL_INFO_GET = 28, - ETHTOOL_MSG_FEC_GET = 29, - ETHTOOL_MSG_FEC_SET = 30, - ETHTOOL_MSG_MODULE_EEPROM_GET = 31, - ETHTOOL_MSG_STATS_GET = 32, - ETHTOOL_MSG_PHC_VCLOCKS_GET = 33, - ETHTOOL_MSG_MODULE_GET = 34, - ETHTOOL_MSG_MODULE_SET = 35, - ETHTOOL_MSG_PSE_GET = 36, - ETHTOOL_MSG_PSE_SET = 37, - ETHTOOL_MSG_RSS_GET = 38, - ETHTOOL_MSG_PLCA_GET_CFG = 39, - ETHTOOL_MSG_PLCA_SET_CFG = 40, - ETHTOOL_MSG_PLCA_GET_STATUS = 41, - ETHTOOL_MSG_MM_GET = 42, - ETHTOOL_MSG_MM_SET = 43, - ETHTOOL_MSG_MODULE_FW_FLASH_ACT = 44, - ETHTOOL_MSG_PHY_GET = 45, - __ETHTOOL_MSG_USER_CNT = 46, - ETHTOOL_MSG_USER_MAX = 45, -}; - -enum { - ETHTOOL_MSG_KERNEL_NONE = 0, - ETHTOOL_MSG_STRSET_GET_REPLY = 1, - ETHTOOL_MSG_LINKINFO_GET_REPLY = 2, - ETHTOOL_MSG_LINKINFO_NTF = 3, - ETHTOOL_MSG_LINKMODES_GET_REPLY = 4, - ETHTOOL_MSG_LINKMODES_NTF = 5, - ETHTOOL_MSG_LINKSTATE_GET_REPLY = 6, - ETHTOOL_MSG_DEBUG_GET_REPLY = 7, - ETHTOOL_MSG_DEBUG_NTF = 8, - ETHTOOL_MSG_WOL_GET_REPLY = 9, - ETHTOOL_MSG_WOL_NTF = 10, - ETHTOOL_MSG_FEATURES_GET_REPLY = 11, - ETHTOOL_MSG_FEATURES_SET_REPLY = 12, - ETHTOOL_MSG_FEATURES_NTF = 13, - ETHTOOL_MSG_PRIVFLAGS_GET_REPLY = 14, - ETHTOOL_MSG_PRIVFLAGS_NTF = 15, - ETHTOOL_MSG_RINGS_GET_REPLY = 16, - ETHTOOL_MSG_RINGS_NTF = 17, - ETHTOOL_MSG_CHANNELS_GET_REPLY = 18, - ETHTOOL_MSG_CHANNELS_NTF = 19, - ETHTOOL_MSG_COALESCE_GET_REPLY = 20, - ETHTOOL_MSG_COALESCE_NTF = 21, - ETHTOOL_MSG_PAUSE_GET_REPLY = 22, - ETHTOOL_MSG_PAUSE_NTF = 23, - ETHTOOL_MSG_EEE_GET_REPLY = 24, - ETHTOOL_MSG_EEE_NTF = 25, - ETHTOOL_MSG_TSINFO_GET_REPLY = 26, - ETHTOOL_MSG_CABLE_TEST_NTF = 27, - ETHTOOL_MSG_CABLE_TEST_TDR_NTF = 28, - ETHTOOL_MSG_TUNNEL_INFO_GET_REPLY = 29, - ETHTOOL_MSG_FEC_GET_REPLY = 30, - ETHTOOL_MSG_FEC_NTF = 31, - ETHTOOL_MSG_MODULE_EEPROM_GET_REPLY = 32, - ETHTOOL_MSG_STATS_GET_REPLY = 33, - ETHTOOL_MSG_PHC_VCLOCKS_GET_REPLY = 34, - ETHTOOL_MSG_MODULE_GET_REPLY = 35, - ETHTOOL_MSG_MODULE_NTF = 36, - ETHTOOL_MSG_PSE_GET_REPLY = 37, - ETHTOOL_MSG_RSS_GET_REPLY = 38, - ETHTOOL_MSG_PLCA_GET_CFG_REPLY = 39, - ETHTOOL_MSG_PLCA_GET_STATUS_REPLY = 40, - ETHTOOL_MSG_PLCA_NTF = 41, - ETHTOOL_MSG_MM_GET_REPLY = 42, - ETHTOOL_MSG_MM_NTF = 43, - ETHTOOL_MSG_MODULE_FW_FLASH_NTF = 44, - ETHTOOL_MSG_PHY_GET_REPLY = 45, - ETHTOOL_MSG_PHY_NTF = 46, - __ETHTOOL_MSG_KERNEL_CNT = 47, - ETHTOOL_MSG_KERNEL_MAX = 46, -}; - -enum ethtool_header_flags { - ETHTOOL_FLAG_COMPACT_BITSETS = 1, - ETHTOOL_FLAG_OMIT_REPLY = 2, - ETHTOOL_FLAG_STATS = 4, -}; - -enum { - ETHTOOL_A_HEADER_UNSPEC = 0, - ETHTOOL_A_HEADER_DEV_INDEX = 1, - ETHTOOL_A_HEADER_DEV_NAME = 2, - ETHTOOL_A_HEADER_FLAGS = 3, - ETHTOOL_A_HEADER_PHY_INDEX = 4, - __ETHTOOL_A_HEADER_CNT = 5, - ETHTOOL_A_HEADER_MAX = 4, -}; - -enum { - ETHTOOL_A_STRSET_UNSPEC = 0, - ETHTOOL_A_STRSET_HEADER = 1, - ETHTOOL_A_STRSET_STRINGSETS = 2, - ETHTOOL_A_STRSET_COUNTS_ONLY = 3, - __ETHTOOL_A_STRSET_CNT = 4, - ETHTOOL_A_STRSET_MAX = 3, -}; - -enum { - ETHTOOL_A_LINKINFO_UNSPEC = 0, - ETHTOOL_A_LINKINFO_HEADER = 1, - ETHTOOL_A_LINKINFO_PORT = 2, - ETHTOOL_A_LINKINFO_PHYADDR = 3, - ETHTOOL_A_LINKINFO_TP_MDIX = 4, - ETHTOOL_A_LINKINFO_TP_MDIX_CTRL = 5, - ETHTOOL_A_LINKINFO_TRANSCEIVER = 6, - __ETHTOOL_A_LINKINFO_CNT = 7, - ETHTOOL_A_LINKINFO_MAX = 6, -}; - -enum { - ETHTOOL_A_LINKMODES_UNSPEC = 0, - ETHTOOL_A_LINKMODES_HEADER = 1, - ETHTOOL_A_LINKMODES_AUTONEG = 2, - ETHTOOL_A_LINKMODES_OURS = 3, - ETHTOOL_A_LINKMODES_PEER = 4, - ETHTOOL_A_LINKMODES_SPEED = 5, - ETHTOOL_A_LINKMODES_DUPLEX = 6, - ETHTOOL_A_LINKMODES_MASTER_SLAVE_CFG = 7, - ETHTOOL_A_LINKMODES_MASTER_SLAVE_STATE = 8, - ETHTOOL_A_LINKMODES_LANES = 9, - ETHTOOL_A_LINKMODES_RATE_MATCHING = 10, - __ETHTOOL_A_LINKMODES_CNT = 11, - ETHTOOL_A_LINKMODES_MAX = 10, -}; - -enum { - ETHTOOL_A_LINKSTATE_UNSPEC = 0, - ETHTOOL_A_LINKSTATE_HEADER = 1, - ETHTOOL_A_LINKSTATE_LINK = 2, - ETHTOOL_A_LINKSTATE_SQI = 3, - ETHTOOL_A_LINKSTATE_SQI_MAX = 4, - ETHTOOL_A_LINKSTATE_EXT_STATE = 5, - ETHTOOL_A_LINKSTATE_EXT_SUBSTATE = 6, - ETHTOOL_A_LINKSTATE_EXT_DOWN_CNT = 7, - __ETHTOOL_A_LINKSTATE_CNT = 8, - ETHTOOL_A_LINKSTATE_MAX = 7, -}; - -enum { - ETHTOOL_A_DEBUG_UNSPEC = 0, - ETHTOOL_A_DEBUG_HEADER = 1, - ETHTOOL_A_DEBUG_MSGMASK = 2, - __ETHTOOL_A_DEBUG_CNT = 3, - ETHTOOL_A_DEBUG_MAX = 2, -}; - -enum { - ETHTOOL_A_WOL_UNSPEC = 0, - ETHTOOL_A_WOL_HEADER = 1, - ETHTOOL_A_WOL_MODES = 2, - ETHTOOL_A_WOL_SOPASS = 3, - __ETHTOOL_A_WOL_CNT = 4, - ETHTOOL_A_WOL_MAX = 3, -}; - -enum { - ETHTOOL_A_FEATURES_UNSPEC = 0, - ETHTOOL_A_FEATURES_HEADER = 1, - ETHTOOL_A_FEATURES_HW = 2, - ETHTOOL_A_FEATURES_WANTED = 3, - ETHTOOL_A_FEATURES_ACTIVE = 4, - ETHTOOL_A_FEATURES_NOCHANGE = 5, - __ETHTOOL_A_FEATURES_CNT = 6, - ETHTOOL_A_FEATURES_MAX = 5, -}; - -enum { - ETHTOOL_A_PRIVFLAGS_UNSPEC = 0, - ETHTOOL_A_PRIVFLAGS_HEADER = 1, - ETHTOOL_A_PRIVFLAGS_FLAGS = 2, - __ETHTOOL_A_PRIVFLAGS_CNT = 3, - ETHTOOL_A_PRIVFLAGS_MAX = 2, -}; - -enum { - ETHTOOL_A_RINGS_UNSPEC = 0, - ETHTOOL_A_RINGS_HEADER = 1, - ETHTOOL_A_RINGS_RX_MAX = 2, - ETHTOOL_A_RINGS_RX_MINI_MAX = 3, - ETHTOOL_A_RINGS_RX_JUMBO_MAX = 4, - ETHTOOL_A_RINGS_TX_MAX = 5, - ETHTOOL_A_RINGS_RX = 6, - ETHTOOL_A_RINGS_RX_MINI = 7, - ETHTOOL_A_RINGS_RX_JUMBO = 8, - ETHTOOL_A_RINGS_TX = 9, - ETHTOOL_A_RINGS_RX_BUF_LEN = 10, - ETHTOOL_A_RINGS_TCP_DATA_SPLIT = 11, - ETHTOOL_A_RINGS_CQE_SIZE = 12, - ETHTOOL_A_RINGS_TX_PUSH = 13, - ETHTOOL_A_RINGS_RX_PUSH = 14, - ETHTOOL_A_RINGS_TX_PUSH_BUF_LEN = 15, - ETHTOOL_A_RINGS_TX_PUSH_BUF_LEN_MAX = 16, - __ETHTOOL_A_RINGS_CNT = 17, - ETHTOOL_A_RINGS_MAX = 16, -}; - -enum { - ETHTOOL_A_CHANNELS_UNSPEC = 0, - ETHTOOL_A_CHANNELS_HEADER = 1, - ETHTOOL_A_CHANNELS_RX_MAX = 2, - ETHTOOL_A_CHANNELS_TX_MAX = 3, - ETHTOOL_A_CHANNELS_OTHER_MAX = 4, - ETHTOOL_A_CHANNELS_COMBINED_MAX = 5, - ETHTOOL_A_CHANNELS_RX_COUNT = 6, - ETHTOOL_A_CHANNELS_TX_COUNT = 7, - ETHTOOL_A_CHANNELS_OTHER_COUNT = 8, - ETHTOOL_A_CHANNELS_COMBINED_COUNT = 9, - __ETHTOOL_A_CHANNELS_CNT = 10, - ETHTOOL_A_CHANNELS_MAX = 9, -}; - -enum { - ETHTOOL_A_COALESCE_UNSPEC = 0, - ETHTOOL_A_COALESCE_HEADER = 1, - ETHTOOL_A_COALESCE_RX_USECS = 2, - ETHTOOL_A_COALESCE_RX_MAX_FRAMES = 3, - ETHTOOL_A_COALESCE_RX_USECS_IRQ = 4, - ETHTOOL_A_COALESCE_RX_MAX_FRAMES_IRQ = 5, - ETHTOOL_A_COALESCE_TX_USECS = 6, - ETHTOOL_A_COALESCE_TX_MAX_FRAMES = 7, - ETHTOOL_A_COALESCE_TX_USECS_IRQ = 8, - ETHTOOL_A_COALESCE_TX_MAX_FRAMES_IRQ = 9, - ETHTOOL_A_COALESCE_STATS_BLOCK_USECS = 10, - ETHTOOL_A_COALESCE_USE_ADAPTIVE_RX = 11, - ETHTOOL_A_COALESCE_USE_ADAPTIVE_TX = 12, - ETHTOOL_A_COALESCE_PKT_RATE_LOW = 13, - ETHTOOL_A_COALESCE_RX_USECS_LOW = 14, - ETHTOOL_A_COALESCE_RX_MAX_FRAMES_LOW = 15, - ETHTOOL_A_COALESCE_TX_USECS_LOW = 16, - ETHTOOL_A_COALESCE_TX_MAX_FRAMES_LOW = 17, - ETHTOOL_A_COALESCE_PKT_RATE_HIGH = 18, - ETHTOOL_A_COALESCE_RX_USECS_HIGH = 19, - ETHTOOL_A_COALESCE_RX_MAX_FRAMES_HIGH = 20, - ETHTOOL_A_COALESCE_TX_USECS_HIGH = 21, - ETHTOOL_A_COALESCE_TX_MAX_FRAMES_HIGH = 22, - ETHTOOL_A_COALESCE_RATE_SAMPLE_INTERVAL = 23, - ETHTOOL_A_COALESCE_USE_CQE_MODE_TX = 24, - ETHTOOL_A_COALESCE_USE_CQE_MODE_RX = 25, - ETHTOOL_A_COALESCE_TX_AGGR_MAX_BYTES = 26, - ETHTOOL_A_COALESCE_TX_AGGR_MAX_FRAMES = 27, - ETHTOOL_A_COALESCE_TX_AGGR_TIME_USECS = 28, - ETHTOOL_A_COALESCE_RX_PROFILE = 29, - ETHTOOL_A_COALESCE_TX_PROFILE = 30, - __ETHTOOL_A_COALESCE_CNT = 31, - ETHTOOL_A_COALESCE_MAX = 30, -}; - -enum { - ETHTOOL_A_PAUSE_UNSPEC = 0, - ETHTOOL_A_PAUSE_HEADER = 1, - ETHTOOL_A_PAUSE_AUTONEG = 2, - ETHTOOL_A_PAUSE_RX = 3, - ETHTOOL_A_PAUSE_TX = 4, - ETHTOOL_A_PAUSE_STATS = 5, - ETHTOOL_A_PAUSE_STATS_SRC = 6, - __ETHTOOL_A_PAUSE_CNT = 7, - ETHTOOL_A_PAUSE_MAX = 6, -}; - -enum { - ETHTOOL_A_EEE_UNSPEC = 0, - ETHTOOL_A_EEE_HEADER = 1, - ETHTOOL_A_EEE_MODES_OURS = 2, - ETHTOOL_A_EEE_MODES_PEER = 3, - ETHTOOL_A_EEE_ACTIVE = 4, - ETHTOOL_A_EEE_ENABLED = 5, - ETHTOOL_A_EEE_TX_LPI_ENABLED = 6, - ETHTOOL_A_EEE_TX_LPI_TIMER = 7, - __ETHTOOL_A_EEE_CNT = 8, - ETHTOOL_A_EEE_MAX = 7, -}; - -enum { - ETHTOOL_A_TSINFO_UNSPEC = 0, - ETHTOOL_A_TSINFO_HEADER = 1, - ETHTOOL_A_TSINFO_TIMESTAMPING = 2, - ETHTOOL_A_TSINFO_TX_TYPES = 3, - ETHTOOL_A_TSINFO_RX_FILTERS = 4, - ETHTOOL_A_TSINFO_PHC_INDEX = 5, - ETHTOOL_A_TSINFO_STATS = 6, - __ETHTOOL_A_TSINFO_CNT = 7, - ETHTOOL_A_TSINFO_MAX = 6, -}; - -enum { - ETHTOOL_A_PHC_VCLOCKS_UNSPEC = 0, - ETHTOOL_A_PHC_VCLOCKS_HEADER = 1, - ETHTOOL_A_PHC_VCLOCKS_NUM = 2, - ETHTOOL_A_PHC_VCLOCKS_INDEX = 3, - __ETHTOOL_A_PHC_VCLOCKS_CNT = 4, - ETHTOOL_A_PHC_VCLOCKS_MAX = 3, -}; - -enum { - ETHTOOL_A_CABLE_TEST_UNSPEC = 0, - ETHTOOL_A_CABLE_TEST_HEADER = 1, - __ETHTOOL_A_CABLE_TEST_CNT = 2, - ETHTOOL_A_CABLE_TEST_MAX = 1, -}; - -enum { - ETHTOOL_A_CABLE_TEST_TDR_UNSPEC = 0, - ETHTOOL_A_CABLE_TEST_TDR_HEADER = 1, - ETHTOOL_A_CABLE_TEST_TDR_CFG = 2, - __ETHTOOL_A_CABLE_TEST_TDR_CNT = 3, - ETHTOOL_A_CABLE_TEST_TDR_MAX = 2, -}; - -enum { - ETHTOOL_A_TUNNEL_INFO_UNSPEC = 0, - ETHTOOL_A_TUNNEL_INFO_HEADER = 1, - ETHTOOL_A_TUNNEL_INFO_UDP_PORTS = 2, - __ETHTOOL_A_TUNNEL_INFO_CNT = 3, - ETHTOOL_A_TUNNEL_INFO_MAX = 2, -}; - -enum { - ETHTOOL_A_FEC_UNSPEC = 0, - ETHTOOL_A_FEC_HEADER = 1, - ETHTOOL_A_FEC_MODES = 2, - ETHTOOL_A_FEC_AUTO = 3, - ETHTOOL_A_FEC_ACTIVE = 4, - ETHTOOL_A_FEC_STATS = 5, - __ETHTOOL_A_FEC_CNT = 6, - ETHTOOL_A_FEC_MAX = 5, -}; - -enum { - ETHTOOL_A_MODULE_EEPROM_UNSPEC = 0, - ETHTOOL_A_MODULE_EEPROM_HEADER = 1, - ETHTOOL_A_MODULE_EEPROM_OFFSET = 2, - ETHTOOL_A_MODULE_EEPROM_LENGTH = 3, - ETHTOOL_A_MODULE_EEPROM_PAGE = 4, - ETHTOOL_A_MODULE_EEPROM_BANK = 5, - ETHTOOL_A_MODULE_EEPROM_I2C_ADDRESS = 6, - ETHTOOL_A_MODULE_EEPROM_DATA = 7, - __ETHTOOL_A_MODULE_EEPROM_CNT = 8, - ETHTOOL_A_MODULE_EEPROM_MAX = 7, -}; - -enum { - ETHTOOL_A_STATS_UNSPEC = 0, - ETHTOOL_A_STATS_PAD = 1, - ETHTOOL_A_STATS_HEADER = 2, - ETHTOOL_A_STATS_GROUPS = 3, - ETHTOOL_A_STATS_GRP = 4, - ETHTOOL_A_STATS_SRC = 5, - __ETHTOOL_A_STATS_CNT = 6, - ETHTOOL_A_STATS_MAX = 5, -}; - -enum { - ETHTOOL_STATS_ETH_PHY = 0, - ETHTOOL_STATS_ETH_MAC = 1, - ETHTOOL_STATS_ETH_CTRL = 2, - ETHTOOL_STATS_RMON = 3, - __ETHTOOL_STATS_CNT = 4, -}; - -enum { - ETHTOOL_A_STATS_ETH_PHY_5_SYM_ERR = 0, - __ETHTOOL_A_STATS_ETH_PHY_CNT = 1, - ETHTOOL_A_STATS_ETH_PHY_MAX = 0, -}; - -enum { - ETHTOOL_A_STATS_ETH_MAC_2_TX_PKT = 0, - ETHTOOL_A_STATS_ETH_MAC_3_SINGLE_COL = 1, - ETHTOOL_A_STATS_ETH_MAC_4_MULTI_COL = 2, - ETHTOOL_A_STATS_ETH_MAC_5_RX_PKT = 3, - ETHTOOL_A_STATS_ETH_MAC_6_FCS_ERR = 4, - ETHTOOL_A_STATS_ETH_MAC_7_ALIGN_ERR = 5, - ETHTOOL_A_STATS_ETH_MAC_8_TX_BYTES = 6, - ETHTOOL_A_STATS_ETH_MAC_9_TX_DEFER = 7, - ETHTOOL_A_STATS_ETH_MAC_10_LATE_COL = 8, - ETHTOOL_A_STATS_ETH_MAC_11_XS_COL = 9, - ETHTOOL_A_STATS_ETH_MAC_12_TX_INT_ERR = 10, - ETHTOOL_A_STATS_ETH_MAC_13_CS_ERR = 11, - ETHTOOL_A_STATS_ETH_MAC_14_RX_BYTES = 12, - ETHTOOL_A_STATS_ETH_MAC_15_RX_INT_ERR = 13, - ETHTOOL_A_STATS_ETH_MAC_18_TX_MCAST = 14, - ETHTOOL_A_STATS_ETH_MAC_19_TX_BCAST = 15, - ETHTOOL_A_STATS_ETH_MAC_20_XS_DEFER = 16, - ETHTOOL_A_STATS_ETH_MAC_21_RX_MCAST = 17, - ETHTOOL_A_STATS_ETH_MAC_22_RX_BCAST = 18, - ETHTOOL_A_STATS_ETH_MAC_23_IR_LEN_ERR = 19, - ETHTOOL_A_STATS_ETH_MAC_24_OOR_LEN = 20, - ETHTOOL_A_STATS_ETH_MAC_25_TOO_LONG_ERR = 21, - __ETHTOOL_A_STATS_ETH_MAC_CNT = 22, - ETHTOOL_A_STATS_ETH_MAC_MAX = 21, -}; - -enum { - ETHTOOL_A_STATS_ETH_CTRL_3_TX = 0, - ETHTOOL_A_STATS_ETH_CTRL_4_RX = 1, - ETHTOOL_A_STATS_ETH_CTRL_5_RX_UNSUP = 2, - __ETHTOOL_A_STATS_ETH_CTRL_CNT = 3, - ETHTOOL_A_STATS_ETH_CTRL_MAX = 2, -}; - -enum { - ETHTOOL_A_STATS_RMON_UNDERSIZE = 0, - ETHTOOL_A_STATS_RMON_OVERSIZE = 1, - ETHTOOL_A_STATS_RMON_FRAG = 2, - ETHTOOL_A_STATS_RMON_JABBER = 3, - __ETHTOOL_A_STATS_RMON_CNT = 4, - ETHTOOL_A_STATS_RMON_MAX = 3, -}; - -enum { - ETHTOOL_A_MODULE_UNSPEC = 0, - ETHTOOL_A_MODULE_HEADER = 1, - ETHTOOL_A_MODULE_POWER_MODE_POLICY = 2, - ETHTOOL_A_MODULE_POWER_MODE = 3, - __ETHTOOL_A_MODULE_CNT = 4, - ETHTOOL_A_MODULE_MAX = 3, -}; - -enum { - ETHTOOL_A_PSE_UNSPEC = 0, - ETHTOOL_A_PSE_HEADER = 1, - ETHTOOL_A_PODL_PSE_ADMIN_STATE = 2, - ETHTOOL_A_PODL_PSE_ADMIN_CONTROL = 3, - ETHTOOL_A_PODL_PSE_PW_D_STATUS = 4, - ETHTOOL_A_C33_PSE_ADMIN_STATE = 5, - ETHTOOL_A_C33_PSE_ADMIN_CONTROL = 6, - ETHTOOL_A_C33_PSE_PW_D_STATUS = 7, - ETHTOOL_A_C33_PSE_PW_CLASS = 8, - ETHTOOL_A_C33_PSE_ACTUAL_PW = 9, - ETHTOOL_A_C33_PSE_EXT_STATE = 10, - ETHTOOL_A_C33_PSE_EXT_SUBSTATE = 11, - ETHTOOL_A_C33_PSE_AVAIL_PW_LIMIT = 12, - ETHTOOL_A_C33_PSE_PW_LIMIT_RANGES = 13, - __ETHTOOL_A_PSE_CNT = 14, - ETHTOOL_A_PSE_MAX = 13, -}; - -enum { - ETHTOOL_A_RSS_UNSPEC = 0, - ETHTOOL_A_RSS_HEADER = 1, - ETHTOOL_A_RSS_CONTEXT = 2, - ETHTOOL_A_RSS_HFUNC = 3, - ETHTOOL_A_RSS_INDIR = 4, - ETHTOOL_A_RSS_HKEY = 5, - ETHTOOL_A_RSS_INPUT_XFRM = 6, - ETHTOOL_A_RSS_START_CONTEXT = 7, - __ETHTOOL_A_RSS_CNT = 8, - ETHTOOL_A_RSS_MAX = 7, -}; - -enum { - ETHTOOL_A_PLCA_UNSPEC = 0, - ETHTOOL_A_PLCA_HEADER = 1, - ETHTOOL_A_PLCA_VERSION = 2, - ETHTOOL_A_PLCA_ENABLED = 3, - ETHTOOL_A_PLCA_STATUS = 4, - ETHTOOL_A_PLCA_NODE_CNT = 5, - ETHTOOL_A_PLCA_NODE_ID = 6, - ETHTOOL_A_PLCA_TO_TMR = 7, - ETHTOOL_A_PLCA_BURST_CNT = 8, - ETHTOOL_A_PLCA_BURST_TMR = 9, - __ETHTOOL_A_PLCA_CNT = 10, - ETHTOOL_A_PLCA_MAX = 9, -}; - -enum { - ETHTOOL_A_MM_UNSPEC = 0, - ETHTOOL_A_MM_HEADER = 1, - ETHTOOL_A_MM_PMAC_ENABLED = 2, - ETHTOOL_A_MM_TX_ENABLED = 3, - ETHTOOL_A_MM_TX_ACTIVE = 4, - ETHTOOL_A_MM_TX_MIN_FRAG_SIZE = 5, - ETHTOOL_A_MM_RX_MIN_FRAG_SIZE = 6, - ETHTOOL_A_MM_VERIFY_ENABLED = 7, - ETHTOOL_A_MM_VERIFY_STATUS = 8, - ETHTOOL_A_MM_VERIFY_TIME = 9, - ETHTOOL_A_MM_MAX_VERIFY_TIME = 10, - ETHTOOL_A_MM_STATS = 11, - __ETHTOOL_A_MM_CNT = 12, - ETHTOOL_A_MM_MAX = 11, -}; - -enum { - ETHTOOL_A_MODULE_FW_FLASH_UNSPEC = 0, - ETHTOOL_A_MODULE_FW_FLASH_HEADER = 1, - ETHTOOL_A_MODULE_FW_FLASH_FILE_NAME = 2, - ETHTOOL_A_MODULE_FW_FLASH_PASSWORD = 3, - ETHTOOL_A_MODULE_FW_FLASH_STATUS = 4, - ETHTOOL_A_MODULE_FW_FLASH_STATUS_MSG = 5, - ETHTOOL_A_MODULE_FW_FLASH_DONE = 6, - ETHTOOL_A_MODULE_FW_FLASH_TOTAL = 7, - __ETHTOOL_A_MODULE_FW_FLASH_CNT = 8, - ETHTOOL_A_MODULE_FW_FLASH_MAX = 7, -}; - -enum { - ETHTOOL_A_PHY_UNSPEC = 0, - ETHTOOL_A_PHY_HEADER = 1, - ETHTOOL_A_PHY_INDEX = 2, - ETHTOOL_A_PHY_DRVNAME = 3, - ETHTOOL_A_PHY_NAME = 4, - ETHTOOL_A_PHY_UPSTREAM_TYPE = 5, - ETHTOOL_A_PHY_UPSTREAM_INDEX = 6, - ETHTOOL_A_PHY_UPSTREAM_SFP_NAME = 7, - ETHTOOL_A_PHY_DOWNSTREAM_SFP_NAME = 8, - __ETHTOOL_A_PHY_CNT = 9, - ETHTOOL_A_PHY_MAX = 8, -}; - -struct ethnl_req_info { - struct net_device *dev; - netdevice_tracker dev_tracker; - u32 flags; - u32 phy_index; -}; - -struct ethnl_reply_data { - struct net_device *dev; -}; - -struct ethnl_request_ops { - u8 request_cmd; - u8 reply_cmd; - u16 hdr_attr; - unsigned int req_info_size; - unsigned int reply_data_size; - bool allow_nodev_do; - u8 set_ntf_cmd; - int (*parse_request)(struct ethnl_req_info *, struct nlattr **, struct netlink_ext_ack *); - int (*prepare_data)(const struct ethnl_req_info *, struct ethnl_reply_data *, const struct genl_info *); - int (*reply_size)(const struct ethnl_req_info *, const struct ethnl_reply_data *); - int (*fill_reply)(struct sk_buff *, const struct ethnl_req_info *, const struct ethnl_reply_data *); - void (*cleanup_data)(struct ethnl_reply_data *); - int (*set_validate)(struct ethnl_req_info *, struct genl_info *); - int (*set)(struct ethnl_req_info *, struct genl_info *); -}; - -typedef const char (* const ethnl_string_array_t)[32]; - -struct features_reply_data { - struct ethnl_reply_data base; - u32 hw[2]; - u32 wanted[2]; - u32 active[2]; - u32 nochange[2]; - u32 all[2]; -}; - -enum ethtool_reset_flags { - ETH_RESET_MGMT = 1, - ETH_RESET_IRQ = 2, - ETH_RESET_DMA = 4, - ETH_RESET_FILTER = 8, - ETH_RESET_OFFLOAD = 16, - ETH_RESET_MAC = 32, - ETH_RESET_PHY = 64, - ETH_RESET_RAM = 128, - ETH_RESET_AP = 256, - ETH_RESET_DEDICATED = 65535, - ETH_RESET_ALL = 4294967295, -}; - -struct ethnl_module_fw_flash_ntf_params { - u32 portid; - u32 seq; - bool closed_sock; -}; - -struct ethtool_module_fw_flash_params { - __be32 password; - u8 password_valid: 1; -}; - -struct ethtool_cmis_fw_update_params { - struct net_device *dev; - struct ethtool_module_fw_flash_params params; - struct ethnl_module_fw_flash_ntf_params ntf_params; - const struct firmware *fw; -}; - -struct ethtool_cmis_cdb { - u8 cmis_rev; - u8 read_write_len_ext; - u16 max_completion_time; -}; - -enum ethtool_cmis_cdb_cmd_id { - ETHTOOL_CMIS_CDB_CMD_QUERY_STATUS = 0, - ETHTOOL_CMIS_CDB_CMD_MODULE_FEATURES = 64, - ETHTOOL_CMIS_CDB_CMD_FW_MANAGMENT_FEATURES = 65, - ETHTOOL_CMIS_CDB_CMD_START_FW_DOWNLOAD = 257, - ETHTOOL_CMIS_CDB_CMD_WRITE_FW_BLOCK_LPL = 259, - ETHTOOL_CMIS_CDB_CMD_COMPLETE_FW_DOWNLOAD = 263, - ETHTOOL_CMIS_CDB_CMD_RUN_FW_IMAGE = 265, - ETHTOOL_CMIS_CDB_CMD_COMMIT_FW_IMAGE = 266, -}; - -struct ethtool_cmis_cdb_request { - __be16 id; - union { - struct { - __be16 epl_len; - u8 lpl_len; - u8 chk_code; - u8 resv1; - u8 resv2; - u8 payload[120]; - }; - struct { - __be16 epl_len; - u8 lpl_len; - u8 chk_code; - u8 resv1; - u8 resv2; - u8 payload[120]; - } body; - }; -}; - -struct ethtool_cmis_cdb_cmd_args { - struct ethtool_cmis_cdb_request req; - u16 max_duration; - u8 read_write_len_ext; - u8 msleep_pre_rpl; - u8 rpl_exp_len; - u8 flags; - char *err_msg; -}; - -struct cmis_fw_update_fw_mng_features { - u8 start_cmd_payload_size; - u16 max_duration_start; - u16 max_duration_write; - u16 max_duration_complete; -}; - -struct cmis_cdb_fw_mng_features_rpl { - u8 resv1; - u8 resv2; - u8 start_cmd_payload_size; - u8 resv3; - u8 read_write_len_ext; - u8 write_mechanism; - u8 resv4; - u8 resv5; - __be16 max_duration_start; - __be16 resv6; - __be16 max_duration_write; - __be16 max_duration_complete; - __be16 resv7; -}; - -enum cmis_cdb_fw_write_mechanism { - CMIS_CDB_FW_WRITE_MECHANISM_LPL = 1, - CMIS_CDB_FW_WRITE_MECHANISM_BOTH = 17, -}; - -struct cmis_cdb_start_fw_download_pl_h { - __be32 image_size; - __be32 resv1; -}; - -struct cmis_cdb_start_fw_download_pl { - union { - struct { - __be32 image_size; - __be32 resv1; - }; - struct cmis_cdb_start_fw_download_pl_h head; - }; - u8 vendor_data[112]; -}; - -struct cmis_cdb_write_fw_block_lpl_pl { - __be32 block_address; - u8 fw_block[116]; -}; - -enum { - CMIS_MODULE_LOW_PWR = 1, - CMIS_MODULE_READY = 3, -}; - -struct cmis_cdb_run_fw_image_pl { - u8 resv1; - u8 image_to_run; - u16 delay_to_reset; -}; - -struct nf_ipv6_ops { - void (*route_input)(struct sk_buff *); - int (*fragment)(struct net *, struct sock *, struct sk_buff *, int (*)(struct net *, struct sock *, struct sk_buff *)); - int (*reroute)(struct sk_buff *, const struct nf_queue_entry *); -}; - -struct nf_ct_event; - -struct nf_exp_event; - -struct nf_ct_event_notifier { - int (*ct_event)(unsigned int, const struct nf_ct_event *); - int (*exp_event)(unsigned int, const struct nf_exp_event *); -}; - -struct nf_sockopt_ops { - struct list_head list; - u_int8_t pf; - int set_optmin; - int set_optmax; - int (*set)(struct sock *, int, sockptr_t, unsigned int); - int get_optmin; - int get_optmax; - int (*get)(struct sock *, int, void *, int *); - struct module *owner; -}; - -struct nf_conntrack_tuple_mask { - struct { - union nf_inet_addr u3; - union nf_conntrack_man_proto u; - } src; -}; - -struct nf_conntrack_net_ecache { - struct delayed_work dwork; - spinlock_t dying_lock; - struct hlist_nulls_head dying_list; -}; - -struct nf_conntrack_net { - atomic_t count; - unsigned int expect_count; - unsigned int users4; - unsigned int users6; - unsigned int users_bridge; - struct ctl_table_header *sysctl_header; - struct nf_conntrack_net_ecache ecache; -}; - -struct nf_conntrack_l4proto { - u_int8_t l4proto; - bool allow_clash; - u16 nlattr_size; - bool (*can_early_drop)(const struct nf_conn *); - int (*to_nlattr)(struct sk_buff *, struct nlattr *, struct nf_conn *, bool); - int (*from_nlattr)(struct nlattr **, struct nf_conn *); - int (*tuple_to_nlattr)(struct sk_buff *, const struct nf_conntrack_tuple *); - unsigned int (*nlattr_tuple_size)(void); - int (*nlattr_to_tuple)(struct nlattr **, struct nf_conntrack_tuple *, u_int32_t); - const struct nla_policy *nla_policy; - struct { - int (*nlattr_to_obj)(struct nlattr **, struct net *, void *); - int (*obj_to_nlattr)(struct sk_buff *, const void *); - u16 obj_size; - u16 nlattr_max; - const struct nla_policy *nla_policy; - } ctnl_timeout; - void (*print_conntrack)(struct seq_file *, struct nf_conn *); -}; - -struct nf_conntrack_helper; - -struct nf_conntrack_expect { - struct hlist_node lnode; - struct hlist_node hnode; - struct nf_conntrack_tuple tuple; - struct nf_conntrack_tuple_mask mask; - refcount_t use; - unsigned int flags; - unsigned int class; - void (*expectfn)(struct nf_conn *, struct nf_conntrack_expect *); - struct nf_conntrack_helper *helper; - struct nf_conn *master; - struct timer_list timeout; - union nf_inet_addr saved_addr; - union nf_conntrack_man_proto saved_proto; - enum ip_conntrack_dir dir; - struct callback_head rcu; -}; - -struct nf_conntrack_expect_policy; - -struct nf_conntrack_helper { - struct hlist_node hnode; - char name[16]; - refcount_t refcnt; - struct module *me; - const struct nf_conntrack_expect_policy *expect_policy; - struct nf_conntrack_tuple tuple; - int (*help)(struct sk_buff *, unsigned int, struct nf_conn *, enum ip_conntrack_info); - void (*destroy)(struct nf_conn *); - int (*from_nlattr)(struct nlattr *, struct nf_conn *); - int (*to_nlattr)(struct sk_buff *, const struct nf_conn *); - unsigned int expect_class_max; - unsigned int flags; - unsigned int queue_num; - u16 data_len; - char nat_mod_name[16]; -}; - -struct nf_conntrack_expect_policy { - unsigned int max_expected; - unsigned int timeout; - char name[16]; -}; - -struct nf_ct_event { - struct nf_conn *ct; - u32 portid; - int report; -}; - -struct nf_exp_event { - struct nf_conntrack_expect *exp; - u32 portid; - int report; -}; - -struct nf_ct_bridge_info { - struct nf_hook_ops *ops; - unsigned int ops_size; - struct module *me; -}; - -struct nf_loginfo { - u_int8_t type; - union { - struct { - u_int32_t copy_len; - u_int16_t group; - u_int16_t qthreshold; - u_int16_t flags; - } ulog; - struct { - u_int8_t level; - u_int8_t logflags; - } log; - } u; -}; - -enum nf_ip6_hook_priorities { - NF_IP6_PRI_FIRST = -2147483648, - NF_IP6_PRI_RAW_BEFORE_DEFRAG = -450, - NF_IP6_PRI_CONNTRACK_DEFRAG = -400, - NF_IP6_PRI_RAW = -300, - NF_IP6_PRI_SELINUX_FIRST = -225, - NF_IP6_PRI_CONNTRACK = -200, - NF_IP6_PRI_MANGLE = -150, - NF_IP6_PRI_NAT_DST = -100, - NF_IP6_PRI_FILTER = 0, - NF_IP6_PRI_SECURITY = 50, - NF_IP6_PRI_NAT_SRC = 100, - NF_IP6_PRI_SELINUX_LAST = 225, - NF_IP6_PRI_CONNTRACK_HELPER = 300, - NF_IP6_PRI_LAST = 2147483647, -}; - -struct nf_conn_help { - struct nf_conntrack_helper *helper; - struct hlist_head expectations; - u8 expecting[4]; - long: 0; - char data[32]; -}; - -struct skb_checksum_ops { - __wsum (*update)(const void *, int, __wsum); - __wsum (*combine)(__wsum, __wsum, int, int); -}; - -struct icmphdr { - __u8 type; - __u8 code; - __sum16 checksum; - union { - struct { - __be16 id; - __be16 sequence; - } echo; - __be32 gateway; - struct { - __be16 __unused; - __be16 mtu; - } frag; - __u8 reserved[4]; - } un; -}; - -struct dccp_hdr { - __be16 dccph_sport; - __be16 dccph_dport; - __u8 dccph_doff; - __u8 dccph_cscov: 4; - __u8 dccph_ccval: 4; - __sum16 dccph_checksum; - __u8 dccph_x: 1; - __u8 dccph_type: 4; - __u8 dccph_reserved: 3; - __u8 dccph_seq2; - __be16 dccph_seq; -}; - -enum dccp_state { - DCCP_OPEN = 1, - DCCP_REQUESTING = 2, - DCCP_LISTEN = 10, - DCCP_RESPOND = 3, - DCCP_ACTIVE_CLOSEREQ = 4, - DCCP_PASSIVE_CLOSE = 8, - DCCP_CLOSING = 11, - DCCP_TIME_WAIT = 6, - DCCP_CLOSED = 7, - DCCP_NEW_SYN_RECV = 12, - DCCP_PARTOPEN = 14, - DCCP_PASSIVE_CLOSEREQ = 15, - DCCP_MAX_STATES = 16, -}; - -enum sctp_msg_flags { - MSG_NOTIFICATION = 32768, -}; - -enum nft_list_attributes { - NFTA_LIST_UNSPEC = 0, - NFTA_LIST_ELEM = 1, - __NFTA_LIST_MAX = 2, -}; - -enum nft_data_types { - NFT_DATA_VALUE = 0, - NFT_DATA_VERDICT = 4294967040, -}; - -enum nft_dynset_ops { - NFT_DYNSET_OP_ADD = 0, - NFT_DYNSET_OP_UPDATE = 1, - NFT_DYNSET_OP_DELETE = 2, -}; - -enum nft_dynset_flags { - NFT_DYNSET_F_INV = 1, - NFT_DYNSET_F_EXPR = 2, -}; - -enum nft_dynset_attributes { - NFTA_DYNSET_UNSPEC = 0, - NFTA_DYNSET_SET_NAME = 1, - NFTA_DYNSET_SET_ID = 2, - NFTA_DYNSET_OP = 3, - NFTA_DYNSET_SREG_KEY = 4, - NFTA_DYNSET_SREG_DATA = 5, - NFTA_DYNSET_TIMEOUT = 6, - NFTA_DYNSET_EXPR = 7, - NFTA_DYNSET_PAD = 8, - NFTA_DYNSET_FLAGS = 9, - NFTA_DYNSET_EXPRESSIONS = 10, - __NFTA_DYNSET_MAX = 11, -}; - -struct nft_set_elem_expr { - u8 size; - long: 0; - unsigned char data[0]; -}; - -struct nft_set_binding { - struct list_head list; - const struct nft_chain *chain; - u32 flags; -}; - -struct nft_set_ext_type { - u8 len; - u8 align; -}; - -struct nft_set_ext_tmpl { - u16 len; - u8 offset[8]; - u8 ext_len[8]; -}; - -struct nft_dynset { - struct nft_set *set; - struct nft_set_ext_tmpl tmpl; - enum nft_dynset_ops op: 8; - u8 sreg_key; - u8 sreg_data; - bool invert; - bool expr; - u8 num_exprs; - u64 timeout; - struct nft_expr *expr_array[2]; - struct nft_set_binding binding; -}; - -struct nfgenmsg { - __u8 nfgen_family; - __u8 version; - __be16 res_id; -}; - -struct nfnl_info { - struct net *net; - struct sock *sk; - const struct nlmsghdr *nlh; - const struct nfgenmsg *nfmsg; - struct netlink_ext_ack *extack; -}; - -enum nfnl_callback_type { - NFNL_CB_UNSPEC = 0, - NFNL_CB_MUTEX = 1, - NFNL_CB_RCU = 2, - NFNL_CB_BATCH = 3, -}; - -struct nfnl_callback { - int (*call)(struct sk_buff *, const struct nfnl_info *, const struct nlattr * const *); - const struct nla_policy *policy; - enum nfnl_callback_type type; - __u16 attr_count; -}; - -enum nfnl_abort_action { - NFNL_ABORT_NONE = 0, - NFNL_ABORT_AUTOLOAD = 1, - NFNL_ABORT_VALIDATE = 2, -}; - -struct nfnetlink_subsystem { - const char *name; - __u8 subsys_id; - __u8 cb_count; - const struct nfnl_callback *cb; - struct module *owner; - int (*commit)(struct net *, struct sk_buff *); - int (*abort)(struct net *, struct sk_buff *, enum nfnl_abort_action); - bool (*valid_genid)(struct net *, u32); -}; - -enum nft_chain_flags { - NFT_CHAIN_BASE = 1, - NFT_CHAIN_HW_OFFLOAD = 2, - NFT_CHAIN_BINDING = 4, -}; - -enum nft_rule_attributes { - NFTA_RULE_UNSPEC = 0, - NFTA_RULE_TABLE = 1, - NFTA_RULE_CHAIN = 2, - NFTA_RULE_HANDLE = 3, - NFTA_RULE_EXPRESSIONS = 4, - NFTA_RULE_COMPAT = 5, - NFTA_RULE_POSITION = 6, - NFTA_RULE_USERDATA = 7, - NFTA_RULE_PAD = 8, - NFTA_RULE_ID = 9, - NFTA_RULE_POSITION_ID = 10, - NFTA_RULE_CHAIN_ID = 11, - __NFTA_RULE_MAX = 12, -}; - -enum nft_rule_compat_flags { - NFT_RULE_COMPAT_F_UNUSED = 1, - NFT_RULE_COMPAT_F_INV = 2, - NFT_RULE_COMPAT_F_MASK = 2, -}; - -enum nft_rule_compat_attributes { - NFTA_RULE_COMPAT_UNSPEC = 0, - NFTA_RULE_COMPAT_PROTO = 1, - NFTA_RULE_COMPAT_FLAGS = 2, - __NFTA_RULE_COMPAT_MAX = 3, -}; - -enum nft_target_attributes { - NFTA_TARGET_UNSPEC = 0, - NFTA_TARGET_NAME = 1, - NFTA_TARGET_REV = 2, - NFTA_TARGET_INFO = 3, - __NFTA_TARGET_MAX = 4, -}; - -enum nft_match_attributes { - NFTA_MATCH_UNSPEC = 0, - NFTA_MATCH_NAME = 1, - NFTA_MATCH_REV = 2, - NFTA_MATCH_INFO = 3, - __NFTA_MATCH_MAX = 4, -}; - -enum { - NFNL_MSG_COMPAT_GET = 0, - NFNL_MSG_COMPAT_MAX = 1, -}; - -enum { - NFTA_COMPAT_UNSPEC = 0, - NFTA_COMPAT_NAME = 1, - NFTA_COMPAT_REV = 2, - NFTA_COMPAT_TYPE = 3, - __NFTA_COMPAT_MAX = 4, -}; - -struct ip6t_ip6 { - struct in6_addr src; - struct in6_addr dst; - struct in6_addr smsk; - struct in6_addr dmsk; - char iniface[16]; - char outiface[16]; - unsigned char iniface_mask[16]; - unsigned char outiface_mask[16]; - __u16 proto; - __u8 tos; - __u8 flags; - __u8 invflags; -}; - -struct ip6t_entry { - struct ip6t_ip6 ipv6; - unsigned int nfcache; - __u16 target_offset; - __u16 next_offset; - unsigned int comefrom; - struct xt_counters counters; - unsigned char elems[0]; -}; - -struct arpt_devaddr_info { - char addr[16]; - char mask[16]; -}; - -struct arpt_arp { - struct in_addr src; - struct in_addr tgt; - struct in_addr smsk; - struct in_addr tmsk; - __u8 arhln; - __u8 arhln_mask; - struct arpt_devaddr_info src_devaddr; - struct arpt_devaddr_info tgt_devaddr; - __be16 arpop; - __be16 arpop_mask; - __be16 arhrd; - __be16 arhrd_mask; - __be16 arpro; - __be16 arpro_mask; - char iniface[16]; - char outiface[16]; - unsigned char iniface_mask[16]; - unsigned char outiface_mask[16]; - __u8 flags; - __u16 invflags; -}; - -struct arpt_entry { - struct arpt_arp arp; - __u16 target_offset; - __u16 next_offset; - unsigned int comefrom; - struct xt_counters counters; - unsigned char elems[0]; -}; - -enum nft_chain_types { - NFT_CHAIN_T_DEFAULT = 0, - NFT_CHAIN_T_ROUTE = 1, - NFT_CHAIN_T_NAT = 2, - NFT_CHAIN_T_MAX = 3, -}; - -struct nft_chain_type { - const char *name; - enum nft_chain_types type; - int family; - struct module *owner; - unsigned int hook_mask; - nf_hookfn *hooks[6]; - int (*ops_register)(struct net *, const struct nf_hook_ops *); - void (*ops_unregister)(struct net *, const struct nf_hook_ops *); -}; - -struct nft_stats { - u64 bytes; - u64 pkts; - struct u64_stats_sync syncp; -}; - -struct nft_base_chain { - struct nf_hook_ops ops; - struct list_head hook_list; - const struct nft_chain_type *type; - u8 policy; - u8 flags; - struct nft_stats *stats; - struct nft_chain chain; - struct flow_block flow_block; -}; - -struct nft_xt_match_priv { - void *info; -}; - -union nft_entry { - struct ipt_entry e4; - struct ip6t_entry e6; - struct ebt_entry ebt; - struct arpt_entry arp; -}; - -struct flow_dissector_key_eth_addrs { - unsigned char dst[6]; - unsigned char src[6]; -}; - -struct flow_dissector_key_tcp { - __be16 flags; -}; - -struct flow_dissector_key_ip { - __u8 tos; - __u8 ttl; -}; - -struct flow_dissector_key_meta { - int ingress_ifindex; - u16 ingress_iftype; - u8 l2_miss; -}; - -enum nf_dev_hooks { - NF_NETDEV_INGRESS = 0, - NF_NETDEV_EGRESS = 1, - NF_NETDEV_NUMHOOKS = 2, -}; - -enum nft_fwd_attributes { - NFTA_FWD_UNSPEC = 0, - NFTA_FWD_SREG_DEV = 1, - NFTA_FWD_SREG_ADDR = 2, - NFTA_FWD_NFPROTO = 3, - __NFTA_FWD_MAX = 4, -}; - -struct flow_match { - struct flow_dissector *dissector; - void *mask; - void *key; -}; - -struct nf_flowtable_type; - -struct nf_flowtable { - unsigned int flags; - int priority; - struct rhashtable rhashtable; - struct list_head list; - const struct nf_flowtable_type *type; - struct delayed_work gc_work; - struct flow_block flow_block; - struct rw_semaphore flow_block_lock; - possible_net_t net; -}; - -struct flow_rule { - struct flow_match match; - struct flow_action action; -}; - -struct nf_flow_key { - struct flow_dissector_key_meta meta; - struct flow_dissector_key_control control; - struct flow_dissector_key_control enc_control; - struct flow_dissector_key_basic basic; - struct flow_dissector_key_vlan vlan; - struct flow_dissector_key_vlan cvlan; - union { - struct flow_dissector_key_ipv4_addrs ipv4; - struct flow_dissector_key_ipv6_addrs ipv6; - }; - struct flow_dissector_key_keyid enc_key_id; - union { - struct flow_dissector_key_ipv4_addrs enc_ipv4; - struct flow_dissector_key_ipv6_addrs enc_ipv6; - }; - struct flow_dissector_key_tcp tcp; - struct flow_dissector_key_ports tp; -}; - -struct nf_flow_match { - struct flow_dissector dissector; - struct nf_flow_key key; - struct nf_flow_key mask; -}; - -struct nf_flow_rule { - struct nf_flow_match match; - struct flow_rule *rule; -}; - -enum flow_offload_tuple_dir { - FLOW_OFFLOAD_DIR_ORIGINAL = 0, - FLOW_OFFLOAD_DIR_REPLY = 1, -}; - -struct flow_offload; - -struct nf_flowtable_type { - struct list_head list; - int family; - int (*init)(struct nf_flowtable *); - bool (*gc)(const struct flow_offload *); - int (*setup)(struct nf_flowtable *, struct net_device *, enum flow_block_command); - int (*action)(struct net *, struct flow_offload *, enum flow_offload_tuple_dir, struct nf_flow_rule *); - void (*free)(struct nf_flowtable *); - void (*get)(struct nf_flowtable *); - void (*put)(struct nf_flowtable *); - nf_hookfn *hook; - struct module *owner; -}; - -struct flow_offload_tuple { - union { - struct in_addr src_v4; - struct in6_addr src_v6; - }; - union { - struct in_addr dst_v4; - struct in6_addr dst_v6; - }; - struct { - __be16 src_port; - __be16 dst_port; - }; - int iifidx; - u8 l3proto; - u8 l4proto; - struct { - u16 id; - __be16 proto; - } encap[2]; - struct {} __hash; - u8 dir: 2; - u8 xmit_type: 3; - u8 encap_num: 2; - char: 1; - u8 in_vlan_ingress: 2; - u16 mtu; - union { - struct { - struct dst_entry *dst_cache; - u32 dst_cookie; - }; - struct { - u32 ifidx; - u32 hw_ifidx; - u8 h_source[6]; - u8 h_dest[6]; - } out; - struct { - u32 iifidx; - } tc; - }; -}; - -struct flow_offload_tuple_rhash { - struct rhash_head node; - struct flow_offload_tuple tuple; -}; - -struct flow_offload { - struct flow_offload_tuple_rhash tuplehash[2]; - struct nf_conn *ct; - long unsigned int flags; - u16 type; - u32 timeout; - struct callback_head callback_head; -}; - -enum nft_offload_dep_type { - NFT_OFFLOAD_DEP_UNSPEC = 0, - NFT_OFFLOAD_DEP_NETWORK = 1, - NFT_OFFLOAD_DEP_TRANSPORT = 2, -}; - -struct nft_offload_reg { - u32 key; - u32 len; - u32 base_offset; - u32 offset; - u32 flags; - struct nft_data data; - struct nft_data mask; -}; - -struct nft_offload_ctx { - struct { - enum nft_offload_dep_type type; - __be16 l3num; - u8 protonum; - } dep; - unsigned int num_actions; - struct net *net; - struct nft_offload_reg regs[24]; -}; - -struct nft_flow_key { - struct flow_dissector_key_basic basic; - struct flow_dissector_key_control control; - union { - struct flow_dissector_key_ipv4_addrs ipv4; - struct flow_dissector_key_ipv6_addrs ipv6; - }; - struct flow_dissector_key_ports tp; - struct flow_dissector_key_ip ip; - struct flow_dissector_key_vlan vlan; - struct flow_dissector_key_vlan cvlan; - struct flow_dissector_key_eth_addrs eth_addrs; - struct flow_dissector_key_meta meta; -}; - -struct nft_flow_match { - struct flow_dissector dissector; - struct nft_flow_key key; - struct nft_flow_key mask; -}; - -struct nft_flow_rule { - __be16 proto; - struct nft_flow_match match; - struct flow_rule *rule; -}; - -struct nft_fwd_netdev { - u8 sreg_dev; -}; - -struct nft_fwd_neigh { - u8 sreg_dev; - u8 sreg_addr; - u8 nfproto; -}; - -struct xt_DSCP_info { - __u8 dscp; -}; - -struct xt_tos_target_info { - __u8 tos_value; - __u8 tos_mask; -}; - -struct xt_tproxy_target_info { - __u32 mark_mask; - __u32 mark_value; - __be32 laddr; - __be16 lport; -}; - -struct xt_tproxy_target_info_v1 { - __u32 mark_mask; - __u32 mark_value; - union nf_inet_addr laddr; - __be16 lport; -}; - -enum xt_devgroup_flags { - XT_DEVGROUP_MATCH_SRC = 1, - XT_DEVGROUP_INVERT_SRC = 2, - XT_DEVGROUP_MATCH_DST = 4, - XT_DEVGROUP_INVERT_DST = 8, -}; - -struct xt_devgroup_info { - __u32 flags; - __u32 src_group; - __u32 src_mask; - __u32 dst_group; - __u32 dst_mask; -}; - -struct xt_length_info { - __u16 min; - __u16 max; - __u8 invert; -}; - -struct nlmsgerr { - int error; - struct nlmsghdr msg; -}; - -enum ipset_cmd { - IPSET_CMD_NONE = 0, - IPSET_CMD_PROTOCOL = 1, - IPSET_CMD_CREATE = 2, - IPSET_CMD_DESTROY = 3, - IPSET_CMD_FLUSH = 4, - IPSET_CMD_RENAME = 5, - IPSET_CMD_SWAP = 6, - IPSET_CMD_LIST = 7, - IPSET_CMD_SAVE = 8, - IPSET_CMD_ADD = 9, - IPSET_CMD_DEL = 10, - IPSET_CMD_TEST = 11, - IPSET_CMD_HEADER = 12, - IPSET_CMD_TYPE = 13, - IPSET_CMD_GET_BYNAME = 14, - IPSET_CMD_GET_BYINDEX = 15, - IPSET_MSG_MAX = 16, - IPSET_CMD_RESTORE = 16, - IPSET_CMD_HELP = 17, - IPSET_CMD_VERSION = 18, - IPSET_CMD_QUIT = 19, - IPSET_CMD_MAX = 20, - IPSET_CMD_COMMIT = 20, -}; - -enum { - IPSET_ATTR_IPADDR_IPV4 = 1, - IPSET_ATTR_IPADDR_IPV6 = 2, - __IPSET_ATTR_IPADDR_MAX = 3, -}; - -enum ipset_create_flags { - IPSET_CREATE_FLAG_BIT_FORCEADD = 0, - IPSET_CREATE_FLAG_FORCEADD = 1, - IPSET_CREATE_FLAG_BIT_BUCKETSIZE = 1, - IPSET_CREATE_FLAG_BUCKETSIZE = 2, - IPSET_CREATE_FLAG_BIT_MAX = 7, -}; - -typedef __u16 ip_set_id_t; - -enum { - IPSET_COUNTER_NONE = 0, - IPSET_COUNTER_EQ = 1, - IPSET_COUNTER_NE = 2, - IPSET_COUNTER_LT = 3, - IPSET_COUNTER_GT = 4, -}; - -union ip_set_name_index { - char name[32]; - ip_set_id_t index; -}; - -struct ip_set_req_get_set { - unsigned int op; - unsigned int version; - union ip_set_name_index set; -}; - -struct ip_set_req_get_set_family { - unsigned int op; - unsigned int version; - unsigned int family; - union ip_set_name_index set; -}; - -struct ip_set_req_version { - unsigned int op; - unsigned int version; -}; - -struct ip_set_net { - struct ip_set **ip_set_list; - ip_set_id_t ip_set_max; - bool is_deleted; - bool is_destroyed; -}; - -struct ip_mreqn { - struct in_addr imr_multiaddr; - struct in_addr imr_address; - int imr_ifindex; -}; - -enum flow_dissector_ctrl_flags { - FLOW_DIS_IS_FRAGMENT = 1, - FLOW_DIS_FIRST_FRAG = 2, - FLOW_DIS_F_TUNNEL_CSUM = 4, - FLOW_DIS_F_TUNNEL_DONT_FRAGMENT = 8, - FLOW_DIS_F_TUNNEL_OAM = 16, - FLOW_DIS_F_TUNNEL_CRIT_OPT = 32, - FLOW_DIS_ENCAPSULATION = 64, -}; - -struct ip_sf_list; - -struct ip_mc_list { - struct in_device *interface; - __be32 multiaddr; - unsigned int sfmode; - struct ip_sf_list *sources; - struct ip_sf_list *tomb; - long unsigned int sfcount[2]; - union { - struct ip_mc_list *next; - struct ip_mc_list *next_rcu; - }; - struct ip_mc_list *next_hash; - struct timer_list timer; - int users; - refcount_t refcnt; - spinlock_t lock; - char tm_running; - char reporter; - char unsolicit_count; - char loaded; - unsigned char gsquery; - unsigned char crcount; - struct callback_head rcu; -}; - -struct ip_sf_socklist { - unsigned int sl_max; - unsigned int sl_count; - struct callback_head rcu; - __be32 sl_addr[0]; -}; - -struct ip_mc_socklist { - struct ip_mc_socklist *next_rcu; - struct ip_mreqn multi; - unsigned int sfmode; - struct ip_sf_socklist *sflist; - struct callback_head rcu; -}; - -struct ip_sf_list { - struct ip_sf_list *sf_next; - long unsigned int sf_count[2]; - __be32 sf_inaddr; - unsigned char sf_gsresp; - unsigned char sf_oldin; - unsigned char sf_crcount; -}; - -enum rtnl_link_flags { - RTNL_FLAG_DOIT_UNLOCKED = 1, - RTNL_FLAG_BULK_DEL_SUPPORTED = 2, - RTNL_FLAG_DUMP_UNLOCKED = 4, - RTNL_FLAG_DUMP_SPLIT_NLM_DONE = 8, -}; - -struct uncached_list { - spinlock_t lock; - struct list_head head; -}; - -struct ip_rt_acct { - __u32 o_bytes; - __u32 o_packets; - __u32 i_bytes; - __u32 i_packets; -}; - -struct rt_cache_stat { - unsigned int in_slow_tot; - unsigned int in_slow_mc; - unsigned int in_no_route; - unsigned int in_brd; - unsigned int in_martian_dst; - unsigned int in_martian_src; - unsigned int out_slow_tot; - unsigned int out_slow_mc; -}; - -struct arpreq { - struct sockaddr arp_pa; - struct sockaddr arp_ha; - int arp_flags; - struct sockaddr arp_netmask; - char arp_dev[16]; -}; - -struct neigh_seq_state { - struct seq_net_private p; - struct neigh_table *tbl; - struct neigh_hash_table *nht; - void * (*neigh_sub_iter)(struct neigh_seq_state *, struct neighbour *, loff_t *); - unsigned int bucket; - unsigned int flags; -}; - -enum { - AX25_VALUES_IPDEFMODE = 0, - AX25_VALUES_AXDEFMODE = 1, - AX25_VALUES_BACKOFF = 2, - AX25_VALUES_CONMODE = 3, - AX25_VALUES_WINDOW = 4, - AX25_VALUES_EWINDOW = 5, - AX25_VALUES_T1 = 6, - AX25_VALUES_T2 = 7, - AX25_VALUES_T3 = 8, - AX25_VALUES_IDLE = 9, - AX25_VALUES_N2 = 10, - AX25_VALUES_PACLEN = 11, - AX25_VALUES_PROTOCOL = 12, - AX25_MAX_VALUES = 13, -}; - -struct snmp_mib { - const char *name; - int entry; -}; - -struct raw_hashinfo { - spinlock_t lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct hlist_head ht[256]; -}; - -struct rta_mfc_stats { - __u64 mfcs_packets; - __u64 mfcs_bytes; - __u64 mfcs_wrong_if; -}; - -struct fib_dump_filter { - u32 table_id; - bool filter_set; - bool dump_routes; - bool dump_exceptions; - bool rtnl_held; - unsigned char protocol; - unsigned char rt_type; - unsigned int flags; - struct net_device *dev; -}; - -struct vif_device { - struct net_device *dev; - netdevice_tracker dev_tracker; - long unsigned int bytes_in; - long unsigned int bytes_out; - long unsigned int pkt_in; - long unsigned int pkt_out; - long unsigned int rate_limit; - unsigned char threshold; - short unsigned int flags; - int link; - struct netdev_phys_item_id dev_parent_id; - __be32 local; - __be32 remote; -}; - -struct vif_entry_notifier_info { - struct fib_notifier_info info; - struct net_device *dev; - short unsigned int vif_index; - short unsigned int vif_flags; - u32 tb_id; -}; - -enum { - MFC_STATIC = 1, - MFC_OFFLOAD = 2, -}; - -struct mr_mfc { - struct rhlist_head mnode; - short unsigned int mfc_parent; - int mfc_flags; - union { - struct { - long unsigned int expires; - struct sk_buff_head unresolved; - } unres; - struct { - long unsigned int last_assert; - int minvif; - int maxvif; - atomic_long_t bytes; - atomic_long_t pkt; - atomic_long_t wrong_if; - long unsigned int lastuse; - unsigned char ttls[32]; - refcount_t refcount; - } res; - } mfc_un; - struct list_head list; - struct callback_head rcu; - void (*free)(struct callback_head *); -}; - -struct mfc_entry_notifier_info { - struct fib_notifier_info info; - struct mr_mfc *mfc; - u32 tb_id; -}; - -struct mr_table_ops { - const struct rhashtable_params *rht_params; - void *cmparg_any; -}; - -struct mr_table { - struct list_head list; - possible_net_t net; - struct mr_table_ops ops; - u32 id; - struct sock *mroute_sk; - struct timer_list ipmr_expire_timer; - struct list_head mfc_unres_queue; - struct vif_device vif_table[32]; - struct rhltable mfc_hash; - struct list_head mfc_cache_list; - int maxvif; - atomic_t cache_resolve_queue_len; - bool mroute_do_assert; - bool mroute_do_pim; - bool mroute_do_wrvifwhole; - int mroute_reg_vif_num; -}; - -struct mr_vif_iter { - struct seq_net_private p; - struct mr_table *mrt; - int ct; -}; - -struct mr_mfc_iter { - struct seq_net_private p; - struct mr_table *mrt; - struct list_head *cache; - spinlock_t *lock; -}; - -struct xfrm_spi_skb_cb { - struct xfrm_tunnel_skb_cb header; - unsigned int daddroff; - unsigned int family; - __be32 seq; -}; - -struct xfrm_tunnel { - int (*handler)(struct sk_buff *); - int (*cb_handler)(struct sk_buff *, int); - int (*err_handler)(struct sk_buff *, u32); - struct xfrm_tunnel *next; - int priority; -}; - -enum nft_reject_types { - NFT_REJECT_ICMP_UNREACH = 0, - NFT_REJECT_TCP_RST = 1, - NFT_REJECT_ICMPX_UNREACH = 2, -}; - -enum nft_reject_attributes { - NFTA_REJECT_UNSPEC = 0, - NFTA_REJECT_TYPE = 1, - NFTA_REJECT_ICMP_CODE = 2, - __NFTA_REJECT_MAX = 3, -}; - -struct nft_reject { - enum nft_reject_types type: 8; - u8 icmp_code; -}; - -enum nft_dup_attributes { - NFTA_DUP_UNSPEC = 0, - NFTA_DUP_SREG_ADDR = 1, - NFTA_DUP_SREG_DEV = 2, - __NFTA_DUP_MAX = 3, -}; - -struct nft_dup_ipv4 { - u8 sreg_addr; - u8 sreg_dev; -}; - -struct xt_entry_target { - union { - struct { - __u16 target_size; - char name[29]; - __u8 revision; - } user; - struct { - __u16 target_size; - struct xt_target *target; - } kernel; - __u16 target_size; - } u; - unsigned char data[0]; -}; - -struct xt_standard_target { - struct xt_entry_target target; - int verdict; -}; - -struct ipt_standard { - struct ipt_entry entry; - struct xt_standard_target target; -}; - -struct nf_synproxy_info { - __u8 options; - __u8 wscale; - __u16 mss; -}; - -struct synproxy_stats { - unsigned int syn_received; - unsigned int cookie_invalid; - unsigned int cookie_valid; - unsigned int cookie_retrans; - unsigned int conn_reopened; -}; - -struct synproxy_net { - struct nf_conn *tmpl; - struct synproxy_stats *stats; - unsigned int hook_ref4; - unsigned int hook_ref6; -}; - -struct synproxy_options { - u8 options; - u8 wscale; - u16 mss_option; - u16 mss_encode; - u32 tsval; - u32 tsecr; -}; - -enum { - BPF_REG_0 = 0, - BPF_REG_1 = 1, - BPF_REG_2 = 2, - BPF_REG_3 = 3, - BPF_REG_4 = 4, - BPF_REG_5 = 5, - BPF_REG_6 = 6, - BPF_REG_7 = 7, - BPF_REG_8 = 8, - BPF_REG_9 = 9, - BPF_REG_10 = 10, - __MAX_BPF_REG = 11, -}; - -enum { - BTF_KIND_UNKN = 0, - BTF_KIND_INT = 1, - BTF_KIND_PTR = 2, - BTF_KIND_ARRAY = 3, - BTF_KIND_STRUCT = 4, - BTF_KIND_UNION = 5, - BTF_KIND_ENUM = 6, - BTF_KIND_FWD = 7, - BTF_KIND_TYPEDEF = 8, - BTF_KIND_VOLATILE = 9, - BTF_KIND_CONST = 10, - BTF_KIND_RESTRICT = 11, - BTF_KIND_FUNC = 12, - BTF_KIND_FUNC_PROTO = 13, - BTF_KIND_VAR = 14, - BTF_KIND_DATASEC = 15, - BTF_KIND_FLOAT = 16, - BTF_KIND_DECL_TAG = 17, - BTF_KIND_TYPE_TAG = 18, - BTF_KIND_ENUM64 = 19, - NR_BTF_KINDS = 20, - BTF_KIND_MAX = 19, -}; - -struct btf_member { - __u32 name_off; - __u32 type; - __u32 offset; -}; - -struct btf_struct_meta { - u32 btf_id; - struct btf_record *record; -}; - -struct bpf_verifier_log { - u64 start_pos; - u64 end_pos; - char *ubuf; - u32 level; - u32 len_total; - u32 len_max; - char kbuf[1024]; -}; - -struct bpf_subprog_arg_info { - enum bpf_arg_type arg_type; - union { - u32 mem_size; - u32 btf_id; - }; -}; - -struct bpf_subprog_info { - u32 start; - u32 linfo_idx; - u16 stack_depth; - u16 stack_extra; - s16 fastcall_stack_off; - bool has_tail_call: 1; - bool tail_call_reachable: 1; - bool has_ld_abs: 1; - bool is_cb: 1; - bool is_async_cb: 1; - bool is_exception_cb: 1; - bool args_cached: 1; - bool keep_fastcall_stack: 1; - bool changes_pkt_data: 1; - u8 arg_cnt; - struct bpf_subprog_arg_info args[5]; -}; - -struct bpf_id_pair { - u32 old; - u32 cur; -}; - -struct bpf_idmap { - u32 tmp_id_gen; - struct bpf_id_pair map[600]; -}; - -struct bpf_idset { - u32 count; - u32 ids[600]; -}; - -struct backtrack_state { - struct bpf_verifier_env *env; - u32 frame; - u32 reg_masks[8]; - u64 stack_masks[8]; -}; - -enum bpf_iter_state { - BPF_ITER_STATE_INVALID = 0, - BPF_ITER_STATE_ACTIVE = 1, - BPF_ITER_STATE_DRAINED = 2, -}; - -struct tnum { - u64 value; - u64 mask; -}; - -enum bpf_reg_liveness { - REG_LIVE_NONE = 0, - REG_LIVE_READ32 = 1, - REG_LIVE_READ64 = 2, - REG_LIVE_READ = 3, - REG_LIVE_WRITTEN = 4, - REG_LIVE_DONE = 8, -}; - -struct bpf_reg_state { - enum bpf_reg_type type; - s32 off; - union { - int range; - struct { - struct bpf_map *map_ptr; - u32 map_uid; - }; - struct { - struct btf *btf; - u32 btf_id; - }; - struct { - u32 mem_size; - u32 dynptr_id; - }; - struct { - enum bpf_dynptr_type type; - bool first_slot; - } dynptr; - struct { - struct btf *btf; - u32 btf_id; - enum bpf_iter_state state: 2; - int depth: 30; - } iter; - struct { - long unsigned int raw1; - long unsigned int raw2; - } raw; - u32 subprogno; - }; - struct tnum var_off; - s64 smin_value; - s64 smax_value; - u64 umin_value; - u64 umax_value; - s32 s32_min_value; - s32 s32_max_value; - u32 u32_min_value; - u32 u32_max_value; - u32 id; - u32 ref_obj_id; - struct bpf_reg_state *parent; - u32 frameno; - s32 subreg_def; - enum bpf_reg_liveness live; - bool precise; -}; - -struct bpf_verifier_ops; - -struct bpf_verifier_stack_elem; - -struct bpf_verifier_state; - -struct bpf_verifier_state_list; - -struct bpf_insn_aux_data; - -struct bpf_insn_hist_entry; - -struct bpf_verifier_env { - u32 insn_idx; - u32 prev_insn_idx; - struct bpf_prog *prog; - const struct bpf_verifier_ops *ops; - struct module *attach_btf_mod; - struct bpf_verifier_stack_elem *head; - int stack_size; - bool strict_alignment; - bool test_state_freq; - bool test_reg_invariants; - struct bpf_verifier_state *cur_state; - struct bpf_verifier_state_list **explored_states; - struct bpf_verifier_state_list *free_list; - struct bpf_map *used_maps[64]; - struct btf_mod_pair used_btfs[64]; - u32 used_map_cnt; - u32 used_btf_cnt; - u32 id_gen; - u32 hidden_subprog_cnt; - int exception_callback_subprog; - bool explore_alu_limits; - bool allow_ptr_leaks; - bool allow_uninit_stack; - bool bpf_capable; - bool bypass_spec_v1; - bool bypass_spec_v4; - bool seen_direct_write; - bool seen_exception; - struct bpf_insn_aux_data *insn_aux_data; - const struct bpf_line_info *prev_linfo; - struct bpf_verifier_log log; - struct bpf_subprog_info subprog_info[258]; - union { - struct bpf_idmap idmap_scratch; - struct bpf_idset idset_scratch; - }; - struct { - int *insn_state; - int *insn_stack; - int cur_stack; - } cfg; - struct backtrack_state bt; - struct bpf_insn_hist_entry *insn_hist; - struct bpf_insn_hist_entry *cur_hist_ent; - u32 insn_hist_cap; - u32 pass_cnt; - u32 subprog_cnt; - u32 prev_insn_processed; - u32 insn_processed; - u32 prev_jmps_processed; - u32 jmps_processed; - u64 verification_time; - u32 max_states_per_insn; - u32 total_states; - u32 peak_states; - u32 longest_mark_read_walk; - bpfptr_t fd_array; - u32 scratched_regs; - u64 scratched_stack_slots; - u64 prev_log_pos; - u64 prev_insn_print_pos; - struct bpf_reg_state fake_reg[2]; - char tmp_str_buf[320]; - struct bpf_insn insn_buf[32]; - struct bpf_insn epilogue_buf[32]; -}; - -struct bpf_retval_range { - s32 minval; - s32 maxval; -}; - -struct bpf_reference_state; - -struct bpf_stack_state; - -struct bpf_func_state { - struct bpf_reg_state regs[11]; - int callsite; - u32 frameno; - u32 subprogno; - u32 async_entry_cnt; - struct bpf_retval_range callback_ret_range; - bool in_callback_fn; - bool in_async_callback_fn; - bool in_exception_callback_fn; - u32 callback_depth; - int acquired_refs; - struct bpf_reference_state *refs; - struct bpf_stack_state *stack; - int allocated_stack; -}; - -enum bpf_access_type { - BPF_READ = 1, - BPF_WRITE = 2, -}; - -struct bpf_insn_access_aux { - enum bpf_reg_type reg_type; - bool is_ldsx; - union { - int ctx_field_size; - struct { - struct btf *btf; - u32 btf_id; - }; - }; - struct bpf_verifier_log *log; - bool is_retval; -}; - -struct bpf_verifier_ops { - const struct bpf_func_proto * (*get_func_proto)(enum bpf_func_id, const struct bpf_prog *); - bool (*is_valid_access)(int, int, enum bpf_access_type, const struct bpf_prog *, struct bpf_insn_access_aux *); - int (*gen_prologue)(struct bpf_insn *, bool, const struct bpf_prog *); - int (*gen_epilogue)(struct bpf_insn *, const struct bpf_prog *, s16); - int (*gen_ld_abs)(const struct bpf_insn *, struct bpf_insn *); - u32 (*convert_ctx_access)(enum bpf_access_type, const struct bpf_insn *, struct bpf_insn *, struct bpf_prog *, u32 *); - int (*btf_struct_access)(struct bpf_verifier_log *, const struct bpf_reg_state *, int, int); -}; - -struct bpf_struct_ops { - const struct bpf_verifier_ops *verifier_ops; - int (*init)(struct btf *); - int (*check_member)(const struct btf_type *, const struct btf_member *, const struct bpf_prog *); - int (*init_member)(const struct btf_type *, const struct btf_member *, void *, const void *); - int (*reg)(void *, struct bpf_link *); - void (*unreg)(void *, struct bpf_link *); - int (*update)(void *, void *, struct bpf_link *); - int (*validate)(void *); - void *cfi_stubs; - struct module *owner; - const char *name; - struct btf_func_model func_models[64]; -}; - -enum bpf_struct_ops_state { - BPF_STRUCT_OPS_STATE_INIT = 0, - BPF_STRUCT_OPS_STATE_INUSE = 1, - BPF_STRUCT_OPS_STATE_TOBEFREE = 2, - BPF_STRUCT_OPS_STATE_READY = 3, -}; - -struct bpf_struct_ops_common_value { - refcount_t refcnt; - enum bpf_struct_ops_state state; -}; - -struct bpf_active_lock { - void *ptr; - u32 id; -}; - -struct bpf_stack_state { - struct bpf_reg_state spilled_ptr; - u8 slot_type[8]; -}; - -struct bpf_reference_state { - int id; - int insn_idx; - int callback_ref; -}; - -enum { - INSN_F_FRAMENO_MASK = 7, - INSN_F_SPI_MASK = 63, - INSN_F_SPI_SHIFT = 3, - INSN_F_STACK_ACCESS = 512, - INSN_F_DST_REG_STACK = 1024, - INSN_F_SRC_REG_STACK = 2048, -}; - -struct bpf_insn_hist_entry { - u32 idx; - u32 prev_idx: 20; - u32 flags: 12; - u64 linked_regs; -}; - -struct bpf_verifier_state { - struct bpf_func_state *frame[8]; - struct bpf_verifier_state *parent; - u32 branches; - u32 insn_idx; - u32 curframe; - struct bpf_active_lock active_lock; - bool speculative; - bool active_rcu_lock; - u32 active_preempt_lock; - bool used_as_loop_entry; - bool in_sleepable; - u32 first_insn_idx; - u32 last_insn_idx; - struct bpf_verifier_state *loop_entry; - u32 insn_hist_start; - u32 insn_hist_end; - u32 dfs_depth; - u32 callback_unroll_depth; - u32 may_goto_depth; -}; - -struct bpf_verifier_state_list { - struct bpf_verifier_state state; - struct bpf_verifier_state_list *next; - int miss_cnt; - int hit_cnt; -}; - -struct bpf_loop_inline_state { - unsigned int initialized: 1; - unsigned int fit_for_inline: 1; - u32 callback_subprogno; -}; - -struct bpf_map_ptr_state { - struct bpf_map *map_ptr; - bool poison; - bool unpriv; -}; - -struct bpf_insn_aux_data { - union { - enum bpf_reg_type ptr_type; - struct bpf_map_ptr_state map_ptr_state; - s32 call_imm; - u32 alu_limit; - struct { - u32 map_index; - u32 map_off; - }; - struct { - enum bpf_reg_type reg_type; - union { - struct { - struct btf *btf; - u32 btf_id; - }; - u32 mem_size; - }; - } btf_var; - struct bpf_loop_inline_state loop_inline_state; - }; - union { - u64 obj_new_size; - u64 insert_off; - }; - struct btf_struct_meta *kptr_struct_meta; - u64 map_key_state; - int ctx_field_size; - u32 seen; - bool sanitize_stack_spill; - bool zext_dst; - bool needs_zext; - bool storage_get_func_atomic; - bool is_iter_next; - bool call_with_percpu_alloc_ptr; - u8 alu_state; - u8 fastcall_pattern: 1; - u8 fastcall_spills_num: 3; - unsigned int orig_idx; - bool jmp_point; - bool prune_point; - bool force_checkpoint; - bool calls_callback; -}; - -typedef u64 (*btf_bpf_tcp_send_ack)(struct tcp_sock *, u32); - -struct bpf_struct_ops_tcp_congestion_ops { - struct bpf_struct_ops_common_value common; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct tcp_congestion_ops data; -}; - -struct ifaddrlblmsg { - __u8 ifal_family; - __u8 __ifal_reserved; - __u8 ifal_prefixlen; - __u8 ifal_flags; - __u32 ifal_index; - __u32 ifal_seq; -}; - -enum { - IFAL_ADDRESS = 1, - IFAL_LABEL = 2, - __IFAL_MAX = 3, -}; - -struct ip6addrlbl_entry { - struct in6_addr prefix; - int prefixlen; - int ifindex; - int addrtype; - u32 label; - struct hlist_node list; - struct callback_head rcu; -}; - -struct ip6addrlbl_init_table { - const struct in6_addr *prefix; - int prefixlen; - u32 label; -}; - -struct sockcm_cookie { - u64 transmit_time; - u32 mark; - u32 tsflags; -}; - -struct ipcm6_cookie { - struct sockcm_cookie sockc; - __s16 hlimit; - __s16 tclass; - __u16 gso_size; - __s8 dontfrag; - struct ipv6_txoptions *opt; -}; - -struct inet_protosw { - struct list_head list; - short unsigned int type; - short unsigned int protocol; - struct proto *prot; - const struct proto_ops *ops; - unsigned char flags; -}; - -struct pingv6_ops { - int (*ipv6_recv_error)(struct sock *, struct msghdr *, int, int *); - void (*ip6_datagram_recv_common_ctl)(struct sock *, struct msghdr *, struct sk_buff *); - void (*ip6_datagram_recv_specific_ctl)(struct sock *, struct msghdr *, struct sk_buff *); - int (*icmpv6_err_convert)(u8, u8, int *); - void (*ipv6_icmp_error)(struct sock *, struct sk_buff *, int, __be16, u32, u8 *); - int (*ipv6_chk_addr)(struct net *, const struct in6_addr *, const struct net_device *, int); -}; - -struct ping_iter_state { - struct seq_net_private p; - int bucket; - sa_family_t family; -}; - -struct pingfakehdr { - struct icmphdr icmph; - struct msghdr *msg; - sa_family_t family; - __wsum wcheck; -}; - -enum { - FRA_UNSPEC = 0, - FRA_DST = 1, - FRA_SRC = 2, - FRA_IIFNAME = 3, - FRA_GOTO = 4, - FRA_UNUSED2 = 5, - FRA_PRIORITY = 6, - FRA_UNUSED3 = 7, - FRA_UNUSED4 = 8, - FRA_UNUSED5 = 9, - FRA_FWMARK = 10, - FRA_FLOW = 11, - FRA_TUN_ID = 12, - FRA_SUPPRESS_IFGROUP = 13, - FRA_SUPPRESS_PREFIXLEN = 14, - FRA_TABLE = 15, - FRA_FWMASK = 16, - FRA_OIFNAME = 17, - FRA_PAD = 18, - FRA_L3MDEV = 19, - FRA_UID_RANGE = 20, - FRA_PROTOCOL = 21, - FRA_IP_PROTO = 22, - FRA_SPORT_RANGE = 23, - FRA_DPORT_RANGE = 24, - FRA_DSCP = 25, - __FRA_MAX = 26, -}; - -enum { - FR_ACT_UNSPEC = 0, - FR_ACT_TO_TBL = 1, - FR_ACT_GOTO = 2, - FR_ACT_NOP = 3, - FR_ACT_RES3 = 4, - FR_ACT_RES4 = 5, - FR_ACT_BLACKHOLE = 6, - FR_ACT_UNREACHABLE = 7, - FR_ACT_PROHIBIT = 8, - __FR_ACT_MAX = 9, -}; - -typedef struct rt6_info * (*pol_lookup_t)(struct net *, struct fib6_table *, struct flowi6 *, const struct sk_buff *, int); - -struct fib6_rule { - struct fib_rule common; - struct rt6key src; - struct rt6key dst; - dscp_t dscp; - u8 dscp_full: 1; -}; - -struct ip6t_replace { - char name[32]; - unsigned int valid_hooks; - unsigned int num_entries; - unsigned int size; - unsigned int hook_entry[5]; - unsigned int underflow[5]; - unsigned int num_counters; - struct xt_counters *counters; - struct ip6t_entry entries[0]; -}; - -struct ip6table_nat_pernet { - struct nf_hook_ops *nf_nat_ops; -}; - -enum tunnel_encap_types { - TUNNEL_ENCAP_NONE = 0, - TUNNEL_ENCAP_FOU = 1, - TUNNEL_ENCAP_GUE = 2, - TUNNEL_ENCAP_MPLS = 3, -}; - -enum { - IFLA_GRE_UNSPEC = 0, - IFLA_GRE_LINK = 1, - IFLA_GRE_IFLAGS = 2, - IFLA_GRE_OFLAGS = 3, - IFLA_GRE_IKEY = 4, - IFLA_GRE_OKEY = 5, - IFLA_GRE_LOCAL = 6, - IFLA_GRE_REMOTE = 7, - IFLA_GRE_TTL = 8, - IFLA_GRE_TOS = 9, - IFLA_GRE_PMTUDISC = 10, - IFLA_GRE_ENCAP_LIMIT = 11, - IFLA_GRE_FLOWINFO = 12, - IFLA_GRE_FLAGS = 13, - IFLA_GRE_ENCAP_TYPE = 14, - IFLA_GRE_ENCAP_FLAGS = 15, - IFLA_GRE_ENCAP_SPORT = 16, - IFLA_GRE_ENCAP_DPORT = 17, - IFLA_GRE_COLLECT_METADATA = 18, - IFLA_GRE_IGNORE_DF = 19, - IFLA_GRE_FWMARK = 20, - IFLA_GRE_ERSPAN_INDEX = 21, - IFLA_GRE_ERSPAN_VER = 22, - IFLA_GRE_ERSPAN_DIR = 23, - IFLA_GRE_ERSPAN_HWID = 24, - __IFLA_GRE_MAX = 25, -}; - -struct ip6_tnl_parm2 { - char name[16]; - int link; - __u8 proto; - __u8 encap_limit; - __u8 hop_limit; - __be32 flowinfo; - __u32 flags; - struct in6_addr laddr; - struct in6_addr raddr; - __be16 i_flags; - __be16 o_flags; - __be32 i_key; - __be32 o_key; -}; - -struct gro_cell; - -struct gro_cells { - struct gro_cell *cells; -}; - -struct tnl_ptk_info { - long unsigned int flags[1]; - __be16 proto; - __be32 key; - __be32 seq; - int hdr_len; -}; - -struct __ip6_tnl_parm { - char name[16]; - int link; - __u8 proto; - __u8 encap_limit; - __u8 hop_limit; - bool collect_md; - __be32 flowinfo; - __u32 flags; - struct in6_addr laddr; - struct in6_addr raddr; - long unsigned int i_flags[1]; - long unsigned int o_flags[1]; - __be32 i_key; - __be32 o_key; - __u32 fwmark; - __u32 index; - __u8 erspan_ver; - __u8 dir; - __u16 hwid; -}; - -struct ip6_tnl { - struct ip6_tnl *next; - struct net_device *dev; - netdevice_tracker dev_tracker; - struct net *net; - struct __ip6_tnl_parm parms; - struct flowi fl; - struct dst_cache dst_cache; - struct gro_cells gro_cells; - int err_count; - long unsigned int err_time; - __u32 i_seqno; - atomic_t o_seqno; - int hlen; - int tun_hlen; - int encap_hlen; - struct ip_tunnel_encap encap; - int mlink; -}; - -struct ipv6_tlv_tnl_enc_lim { - __u8 type; - __u8 length; - __u8 encap_limit; -}; - -struct gre_base_hdr { - __be16 flags; - __be16 protocol; -}; - -struct erspan_md2 { - __be32 timestamp; - __be16 sgt; - __u8 hwid_upper: 2; - __u8 ft: 5; - __u8 p: 1; - __u8 o: 1; - __u8 gra: 2; - __u8 dir: 1; - __u8 hwid: 4; -}; - -struct erspan_metadata { - int version; - union { - __be32 index; - struct erspan_md2 md2; - } u; -}; - -enum erspan_encap_type { - ERSPAN_ENCAP_NOVLAN = 0, - ERSPAN_ENCAP_ISL = 1, - ERSPAN_ENCAP_8021Q = 2, - ERSPAN_ENCAP_INFRAME = 3, -}; - -struct erspan_base_hdr { - __u8 vlan_upper: 4; - __u8 ver: 4; - __u8 vlan: 8; - __u8 session_id_upper: 2; - __u8 t: 1; - __u8 en: 2; - __u8 cos: 3; - __u8 session_id: 8; -}; - -enum erspan_bso { - BSO_NOERROR = 0, - BSO_SHORT = 1, - BSO_OVERSIZED = 2, - BSO_BAD = 3, -}; - -struct ip6gre_net { - struct ip6_tnl *tunnels[128]; - struct ip6_tnl *collect_md_tun; - struct ip6_tnl *collect_md_tun_erspan; - struct net_device *fb_tunnel_dev; -}; - -struct qtag_prefix { - __be16 eth_type; - __be16 tci; -}; - -enum br_boolopt_id { - BR_BOOLOPT_NO_LL_LEARN = 0, - BR_BOOLOPT_MCAST_VLAN_SNOOPING = 1, - BR_BOOLOPT_MST_ENABLE = 2, - BR_BOOLOPT_MAX = 3, -}; - -enum { - BR_GROUPFWD_STP = 1, - BR_GROUPFWD_MACPAUSE = 2, - BR_GROUPFWD_LACP = 4, -}; - -enum { - BR_FDB_LOCAL = 0, - BR_FDB_STATIC = 1, - BR_FDB_STICKY = 2, - BR_FDB_ADDED_BY_USER = 3, - BR_FDB_ADDED_BY_EXT_LEARN = 4, - BR_FDB_OFFLOADED = 5, - BR_FDB_NOTIFY = 6, - BR_FDB_NOTIFY_INACTIVE = 7, - BR_FDB_LOCKED = 8, - BR_FDB_DYNAMIC_LEARNED = 9, -}; - -struct net_bridge_fdb_flush_desc { - long unsigned int flags; - long unsigned int flags_mask; - int port_ifindex; - u16 vlan_id; -}; - -enum nft_meta_keys { - NFT_META_LEN = 0, - NFT_META_PROTOCOL = 1, - NFT_META_PRIORITY = 2, - NFT_META_MARK = 3, - NFT_META_IIF = 4, - NFT_META_OIF = 5, - NFT_META_IIFNAME = 6, - NFT_META_OIFNAME = 7, - NFT_META_IFTYPE = 8, - NFT_META_OIFTYPE = 9, - NFT_META_SKUID = 10, - NFT_META_SKGID = 11, - NFT_META_NFTRACE = 12, - NFT_META_RTCLASSID = 13, - NFT_META_SECMARK = 14, - NFT_META_NFPROTO = 15, - NFT_META_L4PROTO = 16, - NFT_META_BRI_IIFNAME = 17, - NFT_META_BRI_OIFNAME = 18, - NFT_META_PKTTYPE = 19, - NFT_META_CPU = 20, - NFT_META_IIFGROUP = 21, - NFT_META_OIFGROUP = 22, - NFT_META_CGROUP = 23, - NFT_META_PRANDOM = 24, - NFT_META_SECPATH = 25, - NFT_META_IIFKIND = 26, - NFT_META_OIFKIND = 27, - NFT_META_BRI_IIFPVID = 28, - NFT_META_BRI_IIFVPROTO = 29, - NFT_META_TIME_NS = 30, - NFT_META_TIME_DAY = 31, - NFT_META_TIME_HOUR = 32, - NFT_META_SDIF = 33, - NFT_META_SDIFNAME = 34, - NFT_META_BRI_BROUTE = 35, - __NFT_META_IIFTYPE = 36, -}; - -enum nft_meta_attributes { - NFTA_META_UNSPEC = 0, - NFTA_META_DREG = 1, - NFTA_META_KEY = 2, - NFTA_META_SREG = 3, - __NFTA_META_MAX = 4, -}; - -struct nft_meta { - enum nft_meta_keys key: 8; - u8 len; - union { - u8 dreg; - u8 sreg; - }; -}; - -struct br_input_skb_cb { - struct net_device *brdev; - u16 frag_max_size; - u8 igmp; - u8 mrouters_only: 1; - u8 proxyarp_replied: 1; - u8 src_port_isolated: 1; - u8 promisc: 1; - u8 vlan_filtered: 1; - u8 br_netfilter_broute: 1; - u8 tx_fwd_offload: 1; - int src_hwdom; - long unsigned int fwd_hwdoms; - u32 backup_nhid; -}; - -struct ebt_arpreply_info { - unsigned char mac[6]; - int target; -}; - -enum rpc_auth_stat { - RPC_AUTH_OK = 0, - RPC_AUTH_BADCRED = 1, - RPC_AUTH_REJECTEDCRED = 2, - RPC_AUTH_BADVERF = 3, - RPC_AUTH_REJECTEDVERF = 4, - RPC_AUTH_TOOWEAK = 5, - RPCSEC_GSS_CREDPROBLEM = 13, - RPCSEC_GSS_CTXPROBLEM = 14, -}; - -enum { - RPC_TASK_RUNNING = 0, - RPC_TASK_QUEUED = 1, - RPC_TASK_ACTIVE = 2, - RPC_TASK_NEED_XMIT = 3, - RPC_TASK_NEED_RECV = 4, - RPC_TASK_MSG_PIN_WAIT = 5, -}; - -struct rpc_buffer { - size_t len; - char data[0]; -}; - -struct sock_xprt { - struct rpc_xprt xprt; - struct socket *sock; - struct sock *inet; - struct file *file; - struct { - struct { - __be32 fraghdr; - __be32 xid; - __be32 calldir; - }; - u32 offset; - u32 len; - long unsigned int copied; - } recv; - struct { - u32 offset; - } xmit; - long unsigned int sock_state; - struct delayed_work connect_worker; - struct work_struct error_worker; - struct work_struct recv_worker; - struct mutex recv_mutex; - struct completion handshake_done; - struct __kernel_sockaddr_storage srcaddr; - short unsigned int srcport; - int xprt_err; - struct rpc_clnt *clnt; - size_t rcvsize; - size_t sndsize; - struct rpc_timeout tcp_timeout; - void (*old_data_ready)(struct sock *); - void (*old_state_change)(struct sock *); - void (*old_write_space)(struct sock *); - void (*old_error_report)(struct sock *); -}; - -enum { - XPT_BUSY = 0, - XPT_CONN = 1, - XPT_CLOSE = 2, - XPT_DATA = 3, - XPT_TEMP = 4, - XPT_DEAD = 5, - XPT_CHNGBUF = 6, - XPT_DEFERRED = 7, - XPT_OLD = 8, - XPT_LISTENER = 9, - XPT_CACHE_AUTH = 10, - XPT_LOCAL = 11, - XPT_KILL_TEMP = 12, - XPT_CONG_CTRL = 13, - XPT_HANDSHAKE = 14, - XPT_TLS_SESSION = 15, - XPT_PEER_AUTH = 16, - XPT_PEER_VALID = 17, - XPT_RPCB_UNREG = 18, -}; - -struct trace_event_raw_rpc_xdr_buf_class { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - const void *head_base; - size_t head_len; - const void *tail_base; - size_t tail_len; - unsigned int page_base; - unsigned int page_len; - unsigned int msg_len; - char __data[0]; -}; - -struct trace_event_raw_rpc_clnt_class { - struct trace_entry ent; - unsigned int client_id; - char __data[0]; -}; - -struct trace_event_raw_rpc_clnt_new { - struct trace_entry ent; - unsigned int client_id; - long unsigned int xprtsec; - long unsigned int flags; - u32 __data_loc_program; - u32 __data_loc_server; - u32 __data_loc_addr; - u32 __data_loc_port; - char __data[0]; -}; - -struct trace_event_raw_rpc_clnt_new_err { - struct trace_entry ent; - int error; - u32 __data_loc_program; - u32 __data_loc_server; - char __data[0]; -}; - -struct trace_event_raw_rpc_clnt_clone_err { - struct trace_entry ent; - unsigned int client_id; - int error; - char __data[0]; -}; - -struct trace_event_raw_rpc_task_status { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - int status; - char __data[0]; -}; - -struct trace_event_raw_rpc_request { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - int version; - bool async; - u32 __data_loc_progname; - u32 __data_loc_procname; - char __data[0]; -}; - -struct trace_event_raw_rpc_task_running { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - const void *action; - long unsigned int runstate; - int status; - short unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_rpc_task_queued { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - long unsigned int timeout; - long unsigned int runstate; - int status; - short unsigned int flags; - u32 __data_loc_q_name; - char __data[0]; -}; - -struct trace_event_raw_rpc_failure { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - char __data[0]; -}; - -struct trace_event_raw_rpc_reply_event { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - u32 xid; - u32 __data_loc_progname; - u32 version; - u32 __data_loc_procname; - u32 __data_loc_servername; - char __data[0]; -}; - -struct trace_event_raw_rpc_buf_alloc { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - size_t callsize; - size_t recvsize; - int status; - char __data[0]; -}; - -struct trace_event_raw_rpc_call_rpcerror { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - int tk_status; - int rpc_status; - char __data[0]; -}; - -struct trace_event_raw_rpc_stats_latency { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - u32 xid; - int version; - u32 __data_loc_progname; - u32 __data_loc_procname; - long unsigned int backlog; - long unsigned int rtt; - long unsigned int execute; - u32 xprt_id; - char __data[0]; -}; - -struct trace_event_raw_rpc_xdr_overflow { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - int version; - size_t requested; - const void *end; - const void *p; - const void *head_base; - size_t head_len; - const void *tail_base; - size_t tail_len; - unsigned int page_len; - unsigned int len; - u32 __data_loc_progname; - u32 __data_loc_procedure; - char __data[0]; -}; - -struct trace_event_raw_rpc_xdr_alignment { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - int version; - size_t offset; - unsigned int copied; - const void *head_base; - size_t head_len; - const void *tail_base; - size_t tail_len; - unsigned int page_len; - unsigned int len; - u32 __data_loc_progname; - u32 __data_loc_procedure; - char __data[0]; -}; - -struct trace_event_raw_xs_socket_event { - struct trace_entry ent; - unsigned int socket_state; - unsigned int sock_state; - long long unsigned int ino; - __u8 saddr[28]; - __u8 daddr[28]; - char __data[0]; -}; - -struct trace_event_raw_xs_socket_event_done { - struct trace_entry ent; - int error; - unsigned int socket_state; - unsigned int sock_state; - long long unsigned int ino; - __u8 saddr[28]; - __u8 daddr[28]; - char __data[0]; -}; - -struct trace_event_raw_rpc_socket_nospace { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - unsigned int total; - unsigned int remaining; - char __data[0]; -}; - -struct trace_event_raw_rpc_xprt_lifetime_class { - struct trace_entry ent; - long unsigned int state; - u32 __data_loc_addr; - u32 __data_loc_port; - char __data[0]; -}; - -struct trace_event_raw_rpc_xprt_event { - struct trace_entry ent; - u32 xid; - int status; - u32 __data_loc_addr; - u32 __data_loc_port; - char __data[0]; -}; - -struct trace_event_raw_xprt_transmit { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - u32 xid; - u32 seqno; - int status; - char __data[0]; -}; - -struct trace_event_raw_xprt_retransmit { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - u32 xid; - int ntrans; - int version; - long unsigned int timeout; - u32 __data_loc_progname; - u32 __data_loc_procname; - char __data[0]; -}; - -struct trace_event_raw_xprt_ping { - struct trace_entry ent; - int status; - u32 __data_loc_addr; - u32 __data_loc_port; - char __data[0]; -}; - -struct trace_event_raw_xprt_writelock_event { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - unsigned int snd_task_id; - char __data[0]; -}; - -struct trace_event_raw_xprt_cong_event { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - unsigned int snd_task_id; - long unsigned int cong; - long unsigned int cwnd; - bool wait; - char __data[0]; -}; - -struct trace_event_raw_xprt_reserve { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - u32 xid; - char __data[0]; -}; - -struct trace_event_raw_xs_data_ready { - struct trace_entry ent; - u32 __data_loc_addr; - u32 __data_loc_port; - char __data[0]; -}; - -struct trace_event_raw_xs_stream_read_data { - struct trace_entry ent; - ssize_t err; - size_t total; - u32 __data_loc_addr; - u32 __data_loc_port; - char __data[0]; -}; - -struct trace_event_raw_xs_stream_read_request { - struct trace_entry ent; - u32 __data_loc_addr; - u32 __data_loc_port; - u32 xid; - long unsigned int copied; - unsigned int reclen; - unsigned int offset; - char __data[0]; -}; - -struct trace_event_raw_rpcb_getport { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - unsigned int program; - unsigned int version; - int protocol; - unsigned int bind_version; - u32 __data_loc_servername; - char __data[0]; -}; - -struct trace_event_raw_rpcb_setport { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - int status; - short unsigned int port; - char __data[0]; -}; - -struct trace_event_raw_pmap_register { - struct trace_entry ent; - unsigned int program; - unsigned int version; - int protocol; - unsigned int port; - char __data[0]; -}; - -struct trace_event_raw_rpcb_register { - struct trace_entry ent; - unsigned int program; - unsigned int version; - u32 __data_loc_addr; - u32 __data_loc_netid; - char __data[0]; -}; - -struct trace_event_raw_rpcb_unregister { - struct trace_entry ent; - unsigned int program; - unsigned int version; - u32 __data_loc_netid; - char __data[0]; -}; - -struct trace_event_raw_rpc_tls_class { - struct trace_entry ent; - long unsigned int requested_policy; - u32 version; - u32 __data_loc_servername; - u32 __data_loc_progname; - char __data[0]; -}; - -struct trace_event_raw_svc_xdr_msg_class { - struct trace_entry ent; - u32 xid; - const void *head_base; - size_t head_len; - const void *tail_base; - size_t tail_len; - unsigned int page_len; - unsigned int msg_len; - char __data[0]; -}; - -struct trace_event_raw_svc_xdr_buf_class { - struct trace_entry ent; - u32 xid; - const void *head_base; - size_t head_len; - const void *tail_base; - size_t tail_len; - unsigned int page_base; - unsigned int page_len; - unsigned int msg_len; - char __data[0]; -}; - -struct trace_event_raw_svc_authenticate { - struct trace_entry ent; - u32 __data_loc_server; - u32 __data_loc_client; - unsigned int netns_ino; - u32 xid; - long unsigned int svc_status; - long unsigned int auth_stat; - char __data[0]; -}; - -struct trace_event_raw_svc_process { - struct trace_entry ent; - u32 xid; - u32 vers; - u32 proc; - u32 __data_loc_service; - u32 __data_loc_procedure; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_svc_rqst_event { - struct trace_entry ent; - u32 __data_loc_server; - u32 __data_loc_client; - unsigned int netns_ino; - u32 xid; - long unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_svc_rqst_status { - struct trace_entry ent; - u32 __data_loc_server; - u32 __data_loc_client; - unsigned int netns_ino; - u32 xid; - int status; - long unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_svc_replace_page_err { - struct trace_entry ent; - u32 __data_loc_server; - u32 __data_loc_client; - unsigned int netns_ino; - u32 xid; - const void *begin; - const void *respages; - const void *nextpage; - char __data[0]; -}; - -struct trace_event_raw_svc_stats_latency { - struct trace_entry ent; - u32 __data_loc_server; - u32 __data_loc_client; - unsigned int netns_ino; - u32 xid; - long unsigned int execute; - u32 __data_loc_procedure; - char __data[0]; -}; - -struct trace_event_raw_svc_xprt_create_err { - struct trace_entry ent; - long int error; - u32 __data_loc_program; - u32 __data_loc_protocol; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_svc_xprt_enqueue { - struct trace_entry ent; - u32 __data_loc_server; - u32 __data_loc_client; - long unsigned int flags; - unsigned int netns_ino; - char __data[0]; -}; - -struct trace_event_raw_svc_xprt_dequeue { - struct trace_entry ent; - u32 __data_loc_server; - u32 __data_loc_client; - long unsigned int flags; - unsigned int netns_ino; - long unsigned int wakeup; - char __data[0]; -}; - -struct trace_event_raw_svc_xprt_event { - struct trace_entry ent; - u32 __data_loc_server; - u32 __data_loc_client; - long unsigned int flags; - unsigned int netns_ino; - char __data[0]; -}; - -struct trace_event_raw_svc_xprt_accept { - struct trace_entry ent; - u32 __data_loc_server; - u32 __data_loc_client; - long unsigned int flags; - unsigned int netns_ino; - u32 __data_loc_protocol; - u32 __data_loc_service; - char __data[0]; -}; - -struct trace_event_raw_svc_wake_up { - struct trace_entry ent; - int pid; - char __data[0]; -}; - -struct trace_event_raw_svc_alloc_arg_err { - struct trace_entry ent; - unsigned int requested; - unsigned int allocated; - char __data[0]; -}; - -struct trace_event_raw_svc_deferred_event { - struct trace_entry ent; - const void *dr; - u32 xid; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_svcsock_lifetime_class { - struct trace_entry ent; - unsigned int netns_ino; - const void *svsk; - const void *sk; - long unsigned int type; - long unsigned int family; - long unsigned int state; - char __data[0]; -}; - -struct trace_event_raw_svcsock_marker { - struct trace_entry ent; - unsigned int length; - bool last; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_svcsock_class { - struct trace_entry ent; - ssize_t result; - long unsigned int flags; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_svcsock_tcp_recv_short { - struct trace_entry ent; - u32 expected; - u32 received; - long unsigned int flags; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_svcsock_tcp_state { - struct trace_entry ent; - long unsigned int socket_state; - long unsigned int sock_state; - long unsigned int flags; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_svcsock_accept_class { - struct trace_entry ent; - long int status; - u32 __data_loc_service; - unsigned int netns_ino; - char __data[0]; -}; - -struct trace_event_raw_cache_event { - struct trace_entry ent; - const struct cache_head *h; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_register_class { - struct trace_entry ent; - u32 version; - long unsigned int family; - short unsigned int protocol; - short unsigned int port; - int error; - u32 __data_loc_program; - char __data[0]; -}; - -struct trace_event_raw_svc_unregister { - struct trace_entry ent; - u32 version; - int error; - u32 __data_loc_program; - char __data[0]; -}; - -struct trace_event_data_offsets_rpc_xdr_buf_class {}; - -struct trace_event_data_offsets_rpc_clnt_class {}; - -struct trace_event_data_offsets_rpc_clnt_new { - u32 program; - const void *program_ptr_; - u32 server; - const void *server_ptr_; - u32 addr; - const void *addr_ptr_; - u32 port; - const void *port_ptr_; -}; - -struct trace_event_data_offsets_rpc_clnt_new_err { - u32 program; - const void *program_ptr_; - u32 server; - const void *server_ptr_; -}; - -struct trace_event_data_offsets_rpc_clnt_clone_err {}; - -struct trace_event_data_offsets_rpc_task_status {}; - -struct trace_event_data_offsets_rpc_request { - u32 progname; - const void *progname_ptr_; - u32 procname; - const void *procname_ptr_; -}; - -struct trace_event_data_offsets_rpc_task_running {}; - -struct trace_event_data_offsets_rpc_task_queued { - u32 q_name; - const void *q_name_ptr_; -}; - -struct trace_event_data_offsets_rpc_failure {}; - -struct trace_event_data_offsets_rpc_reply_event { - u32 progname; - const void *progname_ptr_; - u32 procname; - const void *procname_ptr_; - u32 servername; - const void *servername_ptr_; -}; - -struct trace_event_data_offsets_rpc_buf_alloc {}; - -struct trace_event_data_offsets_rpc_call_rpcerror {}; - -struct trace_event_data_offsets_rpc_stats_latency { - u32 progname; - const void *progname_ptr_; - u32 procname; - const void *procname_ptr_; -}; - -struct trace_event_data_offsets_rpc_xdr_overflow { - u32 progname; - const void *progname_ptr_; - u32 procedure; - const void *procedure_ptr_; -}; - -struct trace_event_data_offsets_rpc_xdr_alignment { - u32 progname; - const void *progname_ptr_; - u32 procedure; - const void *procedure_ptr_; -}; - -struct trace_event_data_offsets_xs_socket_event {}; - -struct trace_event_data_offsets_xs_socket_event_done {}; - -struct trace_event_data_offsets_rpc_socket_nospace {}; - -struct trace_event_data_offsets_rpc_xprt_lifetime_class { - u32 addr; - const void *addr_ptr_; - u32 port; - const void *port_ptr_; -}; - -struct trace_event_data_offsets_rpc_xprt_event { - u32 addr; - const void *addr_ptr_; - u32 port; - const void *port_ptr_; -}; - -struct trace_event_data_offsets_xprt_transmit {}; - -struct trace_event_data_offsets_xprt_retransmit { - u32 progname; - const void *progname_ptr_; - u32 procname; - const void *procname_ptr_; -}; - -struct trace_event_data_offsets_xprt_ping { - u32 addr; - const void *addr_ptr_; - u32 port; - const void *port_ptr_; -}; - -struct trace_event_data_offsets_xprt_writelock_event {}; - -struct trace_event_data_offsets_xprt_cong_event {}; - -struct trace_event_data_offsets_xprt_reserve {}; - -struct trace_event_data_offsets_xs_data_ready { - u32 addr; - const void *addr_ptr_; - u32 port; - const void *port_ptr_; -}; - -struct trace_event_data_offsets_xs_stream_read_data { - u32 addr; - const void *addr_ptr_; - u32 port; - const void *port_ptr_; -}; - -struct trace_event_data_offsets_xs_stream_read_request { - u32 addr; - const void *addr_ptr_; - u32 port; - const void *port_ptr_; -}; - -struct trace_event_data_offsets_rpcb_getport { - u32 servername; - const void *servername_ptr_; -}; - -struct trace_event_data_offsets_rpcb_setport {}; - -struct trace_event_data_offsets_pmap_register {}; - -struct trace_event_data_offsets_rpcb_register { - u32 addr; - const void *addr_ptr_; - u32 netid; - const void *netid_ptr_; -}; - -struct trace_event_data_offsets_rpcb_unregister { - u32 netid; - const void *netid_ptr_; -}; - -struct trace_event_data_offsets_rpc_tls_class { - u32 servername; - const void *servername_ptr_; - u32 progname; - const void *progname_ptr_; -}; - -struct trace_event_data_offsets_svc_xdr_msg_class {}; - -struct trace_event_data_offsets_svc_xdr_buf_class {}; - -struct trace_event_data_offsets_svc_authenticate { - u32 server; - const void *server_ptr_; - u32 client; - const void *client_ptr_; -}; - -struct trace_event_data_offsets_svc_process { - u32 service; - const void *service_ptr_; - u32 procedure; - const void *procedure_ptr_; - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_svc_rqst_event { - u32 server; - const void *server_ptr_; - u32 client; - const void *client_ptr_; -}; - -struct trace_event_data_offsets_svc_rqst_status { - u32 server; - const void *server_ptr_; - u32 client; - const void *client_ptr_; -}; - -struct trace_event_data_offsets_svc_replace_page_err { - u32 server; - const void *server_ptr_; - u32 client; - const void *client_ptr_; -}; - -struct trace_event_data_offsets_svc_stats_latency { - u32 server; - const void *server_ptr_; - u32 client; - const void *client_ptr_; - u32 procedure; - const void *procedure_ptr_; -}; - -struct trace_event_data_offsets_svc_xprt_create_err { - u32 program; - const void *program_ptr_; - u32 protocol; - const void *protocol_ptr_; - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_svc_xprt_enqueue { - u32 server; - const void *server_ptr_; - u32 client; - const void *client_ptr_; -}; - -struct trace_event_data_offsets_svc_xprt_dequeue { - u32 server; - const void *server_ptr_; - u32 client; - const void *client_ptr_; -}; - -struct trace_event_data_offsets_svc_xprt_event { - u32 server; - const void *server_ptr_; - u32 client; - const void *client_ptr_; -}; - -struct trace_event_data_offsets_svc_xprt_accept { - u32 server; - const void *server_ptr_; - u32 client; - const void *client_ptr_; - u32 protocol; - const void *protocol_ptr_; - u32 service; - const void *service_ptr_; -}; - -struct trace_event_data_offsets_svc_wake_up {}; - -struct trace_event_data_offsets_svc_alloc_arg_err {}; - -struct trace_event_data_offsets_svc_deferred_event { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_svcsock_lifetime_class {}; - -struct trace_event_data_offsets_svcsock_marker { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_svcsock_class { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_svcsock_tcp_recv_short { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_svcsock_tcp_state { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_svcsock_accept_class { - u32 service; - const void *service_ptr_; -}; - -struct trace_event_data_offsets_cache_event { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_register_class { - u32 program; - const void *program_ptr_; -}; - -struct trace_event_data_offsets_svc_unregister { - u32 program; - const void *program_ptr_; -}; - -typedef void (*btf_trace_rpc_xdr_sendto)(void *, const struct rpc_task *, const struct xdr_buf *); - -typedef void (*btf_trace_rpc_xdr_recvfrom)(void *, const struct rpc_task *, const struct xdr_buf *); - -typedef void (*btf_trace_rpc_xdr_reply_pages)(void *, const struct rpc_task *, const struct xdr_buf *); - -typedef void (*btf_trace_rpc_clnt_free)(void *, const struct rpc_clnt *); - -typedef void (*btf_trace_rpc_clnt_killall)(void *, const struct rpc_clnt *); - -typedef void (*btf_trace_rpc_clnt_shutdown)(void *, const struct rpc_clnt *); - -typedef void (*btf_trace_rpc_clnt_release)(void *, const struct rpc_clnt *); - -typedef void (*btf_trace_rpc_clnt_replace_xprt)(void *, const struct rpc_clnt *); - -typedef void (*btf_trace_rpc_clnt_replace_xprt_err)(void *, const struct rpc_clnt *); - -typedef void (*btf_trace_rpc_clnt_new)(void *, const struct rpc_clnt *, const struct rpc_xprt *, const struct rpc_create_args *); - -typedef void (*btf_trace_rpc_clnt_new_err)(void *, const char *, const char *, int); - -typedef void (*btf_trace_rpc_clnt_clone_err)(void *, const struct rpc_clnt *, int); - -typedef void (*btf_trace_rpc_call_status)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc_connect_status)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc_timeout_status)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc_retry_refresh_status)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc_refresh_status)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc_request)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc_task_begin)(void *, const struct rpc_task *, const void *); - -typedef void (*btf_trace_rpc_task_run_action)(void *, const struct rpc_task *, const void *); - -typedef void (*btf_trace_rpc_task_sync_sleep)(void *, const struct rpc_task *, const void *); - -typedef void (*btf_trace_rpc_task_sync_wake)(void *, const struct rpc_task *, const void *); - -typedef void (*btf_trace_rpc_task_complete)(void *, const struct rpc_task *, const void *); - -typedef void (*btf_trace_rpc_task_timeout)(void *, const struct rpc_task *, const void *); - -typedef void (*btf_trace_rpc_task_signalled)(void *, const struct rpc_task *, const void *); - -typedef void (*btf_trace_rpc_task_end)(void *, const struct rpc_task *, const void *); - -typedef void (*btf_trace_rpc_task_call_done)(void *, const struct rpc_task *, const void *); - -typedef void (*btf_trace_rpc_task_sleep)(void *, const struct rpc_task *, const struct rpc_wait_queue *); - -typedef void (*btf_trace_rpc_task_wakeup)(void *, const struct rpc_task *, const struct rpc_wait_queue *); - -typedef void (*btf_trace_rpc_bad_callhdr)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc_bad_verifier)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc__prog_unavail)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc__prog_mismatch)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc__proc_unavail)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc__garbage_args)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc__unparsable)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc__mismatch)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc__stale_creds)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc__bad_creds)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc__auth_tooweak)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpcb_prog_unavail_err)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpcb_timeout_err)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpcb_bind_version_err)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpcb_unreachable_err)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpcb_unrecognized_err)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpc_buf_alloc)(void *, const struct rpc_task *, int); - -typedef void (*btf_trace_rpc_call_rpcerror)(void *, const struct rpc_task *, int, int); - -typedef void (*btf_trace_rpc_stats_latency)(void *, const struct rpc_task *, ktime_t, ktime_t, ktime_t); - -typedef void (*btf_trace_rpc_xdr_overflow)(void *, const struct xdr_stream *, size_t); - -typedef void (*btf_trace_rpc_xdr_alignment)(void *, const struct xdr_stream *, size_t, unsigned int); - -typedef void (*btf_trace_rpc_socket_state_change)(void *, struct rpc_xprt *, struct socket *); - -typedef void (*btf_trace_rpc_socket_connect)(void *, struct rpc_xprt *, struct socket *, int); - -typedef void (*btf_trace_rpc_socket_error)(void *, struct rpc_xprt *, struct socket *, int); - -typedef void (*btf_trace_rpc_socket_reset_connection)(void *, struct rpc_xprt *, struct socket *, int); - -typedef void (*btf_trace_rpc_socket_close)(void *, struct rpc_xprt *, struct socket *); - -typedef void (*btf_trace_rpc_socket_shutdown)(void *, struct rpc_xprt *, struct socket *); - -typedef void (*btf_trace_rpc_socket_nospace)(void *, const struct rpc_rqst *, const struct sock_xprt *); - -typedef void (*btf_trace_xprt_create)(void *, const struct rpc_xprt *); - -typedef void (*btf_trace_xprt_connect)(void *, const struct rpc_xprt *); - -typedef void (*btf_trace_xprt_disconnect_auto)(void *, const struct rpc_xprt *); - -typedef void (*btf_trace_xprt_disconnect_done)(void *, const struct rpc_xprt *); - -typedef void (*btf_trace_xprt_disconnect_force)(void *, const struct rpc_xprt *); - -typedef void (*btf_trace_xprt_destroy)(void *, const struct rpc_xprt *); - -typedef void (*btf_trace_xprt_timer)(void *, const struct rpc_xprt *, __be32, int); - -typedef void (*btf_trace_xprt_lookup_rqst)(void *, const struct rpc_xprt *, __be32, int); - -typedef void (*btf_trace_xprt_transmit)(void *, const struct rpc_rqst *, int); - -typedef void (*btf_trace_xprt_retransmit)(void *, const struct rpc_rqst *); - -typedef void (*btf_trace_xprt_ping)(void *, const struct rpc_xprt *, int); - -typedef void (*btf_trace_xprt_reserve_xprt)(void *, const struct rpc_xprt *, const struct rpc_task *); - -typedef void (*btf_trace_xprt_release_xprt)(void *, const struct rpc_xprt *, const struct rpc_task *); - -typedef void (*btf_trace_xprt_reserve_cong)(void *, const struct rpc_xprt *, const struct rpc_task *); - -typedef void (*btf_trace_xprt_release_cong)(void *, const struct rpc_xprt *, const struct rpc_task *); - -typedef void (*btf_trace_xprt_get_cong)(void *, const struct rpc_xprt *, const struct rpc_task *); - -typedef void (*btf_trace_xprt_put_cong)(void *, const struct rpc_xprt *, const struct rpc_task *); - -typedef void (*btf_trace_xprt_reserve)(void *, const struct rpc_rqst *); - -typedef void (*btf_trace_xs_data_ready)(void *, const struct rpc_xprt *); - -typedef void (*btf_trace_xs_stream_read_data)(void *, struct rpc_xprt *, ssize_t, size_t); - -typedef void (*btf_trace_xs_stream_read_request)(void *, struct sock_xprt *); - -typedef void (*btf_trace_rpcb_getport)(void *, const struct rpc_clnt *, const struct rpc_task *, unsigned int); - -typedef void (*btf_trace_rpcb_setport)(void *, const struct rpc_task *, int, short unsigned int); - -typedef void (*btf_trace_pmap_register)(void *, u32, u32, int, short unsigned int); - -typedef void (*btf_trace_rpcb_register)(void *, u32, u32, const char *, const char *); - -typedef void (*btf_trace_rpcb_unregister)(void *, u32, u32, const char *); - -typedef void (*btf_trace_rpc_tls_unavailable)(void *, const struct rpc_clnt *, const struct rpc_xprt *); - -typedef void (*btf_trace_rpc_tls_not_started)(void *, const struct rpc_clnt *, const struct rpc_xprt *); - -typedef void (*btf_trace_svc_xdr_recvfrom)(void *, const struct xdr_buf *); - -typedef void (*btf_trace_svc_xdr_sendto)(void *, __be32, const struct xdr_buf *); - -typedef void (*btf_trace_svc_authenticate)(void *, const struct svc_rqst *, enum svc_auth_status); - -typedef void (*btf_trace_svc_process)(void *, const struct svc_rqst *, const char *); - -typedef void (*btf_trace_svc_defer)(void *, const struct svc_rqst *); - -typedef void (*btf_trace_svc_drop)(void *, const struct svc_rqst *); - -typedef void (*btf_trace_svc_send)(void *, const struct svc_rqst *, int); - -typedef void (*btf_trace_svc_replace_page_err)(void *, const struct svc_rqst *); - -typedef void (*btf_trace_svc_stats_latency)(void *, const struct svc_rqst *); - -typedef void (*btf_trace_svc_xprt_create_err)(void *, const char *, const char *, struct sockaddr *, size_t, const struct svc_xprt *); - -typedef void (*btf_trace_svc_xprt_enqueue)(void *, const struct svc_xprt *, long unsigned int); - -typedef void (*btf_trace_svc_xprt_dequeue)(void *, const struct svc_rqst *); - -typedef void (*btf_trace_svc_xprt_no_write_space)(void *, const struct svc_xprt *); - -typedef void (*btf_trace_svc_xprt_close)(void *, const struct svc_xprt *); - -typedef void (*btf_trace_svc_xprt_detach)(void *, const struct svc_xprt *); - -typedef void (*btf_trace_svc_xprt_free)(void *, const struct svc_xprt *); - -typedef void (*btf_trace_svc_tls_start)(void *, const struct svc_xprt *); - -typedef void (*btf_trace_svc_tls_upcall)(void *, const struct svc_xprt *); - -typedef void (*btf_trace_svc_tls_unavailable)(void *, const struct svc_xprt *); - -typedef void (*btf_trace_svc_tls_not_started)(void *, const struct svc_xprt *); - -typedef void (*btf_trace_svc_tls_timed_out)(void *, const struct svc_xprt *); - -typedef void (*btf_trace_svc_xprt_accept)(void *, const struct svc_xprt *, const char *); - -typedef void (*btf_trace_svc_wake_up)(void *, int); - -typedef void (*btf_trace_svc_alloc_arg_err)(void *, unsigned int, unsigned int); - -typedef void (*btf_trace_svc_defer_drop)(void *, const struct svc_deferred_req *); - -typedef void (*btf_trace_svc_defer_queue)(void *, const struct svc_deferred_req *); - -typedef void (*btf_trace_svc_defer_recv)(void *, const struct svc_deferred_req *); - -typedef void (*btf_trace_svcsock_new)(void *, const void *, const struct socket *); - -typedef void (*btf_trace_svcsock_free)(void *, const void *, const struct socket *); - -typedef void (*btf_trace_svcsock_marker)(void *, const struct svc_xprt *, __be32); - -typedef void (*btf_trace_svcsock_udp_send)(void *, const struct svc_xprt *, ssize_t); - -typedef void (*btf_trace_svcsock_udp_recv)(void *, const struct svc_xprt *, ssize_t); - -typedef void (*btf_trace_svcsock_udp_recv_err)(void *, const struct svc_xprt *, ssize_t); - -typedef void (*btf_trace_svcsock_tcp_send)(void *, const struct svc_xprt *, ssize_t); - -typedef void (*btf_trace_svcsock_tcp_recv)(void *, const struct svc_xprt *, ssize_t); - -typedef void (*btf_trace_svcsock_tcp_recv_eagain)(void *, const struct svc_xprt *, ssize_t); - -typedef void (*btf_trace_svcsock_tcp_recv_err)(void *, const struct svc_xprt *, ssize_t); - -typedef void (*btf_trace_svcsock_data_ready)(void *, const struct svc_xprt *, ssize_t); - -typedef void (*btf_trace_svcsock_write_space)(void *, const struct svc_xprt *, ssize_t); - -typedef void (*btf_trace_svcsock_tcp_recv_short)(void *, const struct svc_xprt *, u32, u32); - -typedef void (*btf_trace_svcsock_tcp_state)(void *, const struct svc_xprt *, const struct socket *); - -typedef void (*btf_trace_svcsock_accept_err)(void *, const struct svc_xprt *, const char *, long int); - -typedef void (*btf_trace_svcsock_getpeername_err)(void *, const struct svc_xprt *, const char *, long int); - -typedef void (*btf_trace_cache_entry_expired)(void *, const struct cache_detail *, const struct cache_head *); - -typedef void (*btf_trace_cache_entry_upcall)(void *, const struct cache_detail *, const struct cache_head *); - -typedef void (*btf_trace_cache_entry_update)(void *, const struct cache_detail *, const struct cache_head *); - -typedef void (*btf_trace_cache_entry_make_negative)(void *, const struct cache_detail *, const struct cache_head *); - -typedef void (*btf_trace_cache_entry_no_listener)(void *, const struct cache_detail *, const struct cache_head *); - -typedef void (*btf_trace_svc_register)(void *, const char *, const u32, const int, const short unsigned int, const short unsigned int, int); - -typedef void (*btf_trace_svc_noregister)(void *, const char *, const u32, const int, const short unsigned int, const short unsigned int, int); - -typedef void (*btf_trace_svc_unregister)(void *, const char *, const u32, int); - -struct sctp_sndinfo { - __u16 snd_sid; - __u16 snd_flags; - __u32 snd_ppid; - __u32 snd_context; - sctp_assoc_t snd_assoc_id; -}; - -struct sctp_rcvinfo { - __u16 rcv_sid; - __u16 rcv_ssn; - __u16 rcv_flags; - __u32 rcv_ppid; - __u32 rcv_tsn; - __u32 rcv_cumtsn; - __u32 rcv_context; - sctp_assoc_t rcv_assoc_id; -}; - -struct sctp_nxtinfo { - __u16 nxt_sid; - __u16 nxt_flags; - __u32 nxt_ppid; - __u32 nxt_length; - sctp_assoc_t nxt_assoc_id; -}; - -enum sctp_sinfo_flags { - SCTP_UNORDERED = 1, - SCTP_ADDR_OVER = 2, - SCTP_ABORT = 4, - SCTP_SACK_IMMEDIATELY = 8, - SCTP_SENDALL = 64, - SCTP_PR_SCTP_ALL = 128, - SCTP_NOTIFICATION = 32768, - SCTP_EOF = 512, -}; - -enum sctp_cmsg_type { - SCTP_INIT = 0, - SCTP_SNDRCV = 1, - SCTP_SNDINFO = 2, - SCTP_RCVINFO = 3, - SCTP_NXTINFO = 4, - SCTP_PRINFO = 5, - SCTP_AUTHINFO = 6, - SCTP_DSTADDRV4 = 7, - SCTP_DSTADDRV6 = 8, -}; - -struct sctp_assoc_change { - __u16 sac_type; - __u16 sac_flags; - __u32 sac_length; - __u16 sac_state; - __u16 sac_error; - __u16 sac_outbound_streams; - __u16 sac_inbound_streams; - sctp_assoc_t sac_assoc_id; - __u8 sac_info[0]; -}; - -struct sctp_paddr_change { - __u16 spc_type; - __u16 spc_flags; - __u32 spc_length; - struct __kernel_sockaddr_storage spc_aaddr; - int spc_state; - int spc_error; - sctp_assoc_t spc_assoc_id; -} __attribute__((packed)); - -struct sctp_remote_error { - __u16 sre_type; - __u16 sre_flags; - __u32 sre_length; - __be16 sre_error; - sctp_assoc_t sre_assoc_id; - __u8 sre_data[0]; -}; - -struct sctp_send_failed { - __u16 ssf_type; - __u16 ssf_flags; - __u32 ssf_length; - __u32 ssf_error; - struct sctp_sndrcvinfo ssf_info; - sctp_assoc_t ssf_assoc_id; - __u8 ssf_data[0]; -}; - -struct sctp_send_failed_event { - __u16 ssf_type; - __u16 ssf_flags; - __u32 ssf_length; - __u32 ssf_error; - struct sctp_sndinfo ssfe_info; - sctp_assoc_t ssf_assoc_id; - __u8 ssf_data[0]; -}; - -struct sctp_shutdown_event { - __u16 sse_type; - __u16 sse_flags; - __u32 sse_length; - sctp_assoc_t sse_assoc_id; -}; - -struct sctp_adaptation_event { - __u16 sai_type; - __u16 sai_flags; - __u32 sai_length; - __u32 sai_adaptation_ind; - sctp_assoc_t sai_assoc_id; -}; - -struct sctp_pdapi_event { - __u16 pdapi_type; - __u16 pdapi_flags; - __u32 pdapi_length; - __u32 pdapi_indication; - sctp_assoc_t pdapi_assoc_id; - __u32 pdapi_stream; - __u32 pdapi_seq; -}; - -struct sctp_authkey_event { - __u16 auth_type; - __u16 auth_flags; - __u32 auth_length; - __u16 auth_keynumber; - __u16 auth_altkeynumber; - __u32 auth_indication; - sctp_assoc_t auth_assoc_id; -}; - -struct sctp_sender_dry_event { - __u16 sender_dry_type; - __u16 sender_dry_flags; - __u32 sender_dry_length; - sctp_assoc_t sender_dry_assoc_id; -}; - -struct sctp_stream_reset_event { - __u16 strreset_type; - __u16 strreset_flags; - __u32 strreset_length; - sctp_assoc_t strreset_assoc_id; - __u16 strreset_stream_list[0]; -}; - -struct sctp_assoc_reset_event { - __u16 assocreset_type; - __u16 assocreset_flags; - __u32 assocreset_length; - sctp_assoc_t assocreset_assoc_id; - __u32 assocreset_local_tsn; - __u32 assocreset_remote_tsn; -}; - -struct sctp_stream_change_event { - __u16 strchange_type; - __u16 strchange_flags; - __u32 strchange_length; - sctp_assoc_t strchange_assoc_id; - __u16 strchange_instrms; - __u16 strchange_outstrms; -}; - -union sctp_notification { - struct { - __u16 sn_type; - __u16 sn_flags; - __u32 sn_length; - } sn_header; - struct sctp_assoc_change sn_assoc_change; - struct sctp_paddr_change sn_paddr_change; - struct sctp_remote_error sn_remote_error; - struct sctp_send_failed sn_send_failed; - struct sctp_shutdown_event sn_shutdown_event; - struct sctp_adaptation_event sn_adaptation_event; - struct sctp_pdapi_event sn_pdapi_event; - struct sctp_authkey_event sn_authkey_event; - struct sctp_sender_dry_event sn_sender_dry_event; - struct sctp_stream_reset_event sn_strreset_event; - struct sctp_assoc_reset_event sn_assocreset_event; - struct sctp_stream_change_event sn_strchange_event; - struct sctp_send_failed_event sn_send_failed_event; -}; - -enum sctp_sn_type { - SCTP_SN_TYPE_BASE = 32768, - SCTP_DATA_IO_EVENT = 32768, - SCTP_ASSOC_CHANGE = 32769, - SCTP_PEER_ADDR_CHANGE = 32770, - SCTP_SEND_FAILED = 32771, - SCTP_REMOTE_ERROR = 32772, - SCTP_SHUTDOWN_EVENT = 32773, - SCTP_PARTIAL_DELIVERY_EVENT = 32774, - SCTP_ADAPTATION_INDICATION = 32775, - SCTP_AUTHENTICATION_EVENT = 32776, - SCTP_SENDER_DRY_EVENT = 32777, - SCTP_STREAM_RESET_EVENT = 32778, - SCTP_ASSOC_RESET_EVENT = 32779, - SCTP_STREAM_CHANGE_EVENT = 32780, - SCTP_SEND_FAILED_EVENT = 32781, - SCTP_SN_TYPE_MAX = 32781, -}; - -enum { - SCTP_DATA_MIDDLE_FRAG = 0, - SCTP_DATA_LAST_FRAG = 1, - SCTP_DATA_FIRST_FRAG = 2, - SCTP_DATA_NOT_FRAG = 3, - SCTP_DATA_UNORDERED = 4, - SCTP_DATA_SACK_IMM = 8, -}; - -enum { - SCTP_AUTH_NEW_KEY = 0, - SCTP_AUTH_FREE_KEY = 1, - SCTP_AUTH_NO_AUTH = 2, -}; - -struct sctp_hmacalgo { - __u32 shmac_num_idents; - __u16 shmac_idents[0]; -}; - -struct sctp_authkey { - sctp_assoc_t sca_assoc_id; - __u16 sca_keynumber; - __u16 sca_keylength; - __u8 sca_key[0]; -}; - -enum sctp_cid { - SCTP_CID_DATA = 0, - SCTP_CID_INIT = 1, - SCTP_CID_INIT_ACK = 2, - SCTP_CID_SACK = 3, - SCTP_CID_HEARTBEAT = 4, - SCTP_CID_HEARTBEAT_ACK = 5, - SCTP_CID_ABORT = 6, - SCTP_CID_SHUTDOWN = 7, - SCTP_CID_SHUTDOWN_ACK = 8, - SCTP_CID_ERROR = 9, - SCTP_CID_COOKIE_ECHO = 10, - SCTP_CID_COOKIE_ACK = 11, - SCTP_CID_ECN_ECNE = 12, - SCTP_CID_ECN_CWR = 13, - SCTP_CID_SHUTDOWN_COMPLETE = 14, - SCTP_CID_AUTH = 15, - SCTP_CID_I_DATA = 64, - SCTP_CID_FWD_TSN = 192, - SCTP_CID_ASCONF = 193, - SCTP_CID_I_FWD_TSN = 194, - SCTP_CID_ASCONF_ACK = 128, - SCTP_CID_RECONF = 130, - SCTP_CID_PAD = 132, -}; - -struct sctp_auth_chunk { - struct sctp_chunkhdr chunk_hdr; - struct sctp_authhdr auth_hdr; -}; - -struct sctp_hmac { - __u16 hmac_id; - char *hmac_name; - __u16 hmac_len; -}; - -enum { - SCTP_MAX_STREAM = 65535, -}; - -enum sctp_event_timeout { - SCTP_EVENT_TIMEOUT_NONE = 0, - SCTP_EVENT_TIMEOUT_T1_COOKIE = 1, - SCTP_EVENT_TIMEOUT_T1_INIT = 2, - SCTP_EVENT_TIMEOUT_T2_SHUTDOWN = 3, - SCTP_EVENT_TIMEOUT_T3_RTX = 4, - SCTP_EVENT_TIMEOUT_T4_RTO = 5, - SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD = 6, - SCTP_EVENT_TIMEOUT_HEARTBEAT = 7, - SCTP_EVENT_TIMEOUT_RECONF = 8, - SCTP_EVENT_TIMEOUT_PROBE = 9, - SCTP_EVENT_TIMEOUT_SACK = 10, - SCTP_EVENT_TIMEOUT_AUTOCLOSE = 11, -}; - -enum { - SCTP_MAX_DUP_TSNS = 16, -}; - -enum { - SCTP_AUTH_HMAC_ID_RESERVED_0 = 0, - SCTP_AUTH_HMAC_ID_SHA1 = 1, - SCTP_AUTH_HMAC_ID_RESERVED_2 = 2, - SCTP_AUTH_HMAC_ID_SHA256 = 3, - __SCTP_AUTH_HMAC_MAX = 4, -}; - -enum { - SCTP_MIB_NUM = 0, - SCTP_MIB_CURRESTAB = 1, - SCTP_MIB_ACTIVEESTABS = 2, - SCTP_MIB_PASSIVEESTABS = 3, - SCTP_MIB_ABORTEDS = 4, - SCTP_MIB_SHUTDOWNS = 5, - SCTP_MIB_OUTOFBLUES = 6, - SCTP_MIB_CHECKSUMERRORS = 7, - SCTP_MIB_OUTCTRLCHUNKS = 8, - SCTP_MIB_OUTORDERCHUNKS = 9, - SCTP_MIB_OUTUNORDERCHUNKS = 10, - SCTP_MIB_INCTRLCHUNKS = 11, - SCTP_MIB_INORDERCHUNKS = 12, - SCTP_MIB_INUNORDERCHUNKS = 13, - SCTP_MIB_FRAGUSRMSGS = 14, - SCTP_MIB_REASMUSRMSGS = 15, - SCTP_MIB_OUTSCTPPACKS = 16, - SCTP_MIB_INSCTPPACKS = 17, - SCTP_MIB_T1_INIT_EXPIREDS = 18, - SCTP_MIB_T1_COOKIE_EXPIREDS = 19, - SCTP_MIB_T2_SHUTDOWN_EXPIREDS = 20, - SCTP_MIB_T3_RTX_EXPIREDS = 21, - SCTP_MIB_T4_RTO_EXPIREDS = 22, - SCTP_MIB_T5_SHUTDOWN_GUARD_EXPIREDS = 23, - SCTP_MIB_DELAY_SACK_EXPIREDS = 24, - SCTP_MIB_AUTOCLOSE_EXPIREDS = 25, - SCTP_MIB_T1_RETRANSMITS = 26, - SCTP_MIB_T3_RETRANSMITS = 27, - SCTP_MIB_PMTUD_RETRANSMITS = 28, - SCTP_MIB_FAST_RETRANSMITS = 29, - SCTP_MIB_IN_PKT_SOFTIRQ = 30, - SCTP_MIB_IN_PKT_BACKLOG = 31, - SCTP_MIB_IN_PKT_DISCARDS = 32, - SCTP_MIB_IN_DATA_CHUNK_DISCARDS = 33, - __SCTP_MIB_MAX = 34, -}; - -enum p9_msg_t { - P9_TLERROR = 6, - P9_RLERROR = 7, - P9_TSTATFS = 8, - P9_RSTATFS = 9, - P9_TLOPEN = 12, - P9_RLOPEN = 13, - P9_TLCREATE = 14, - P9_RLCREATE = 15, - P9_TSYMLINK = 16, - P9_RSYMLINK = 17, - P9_TMKNOD = 18, - P9_RMKNOD = 19, - P9_TRENAME = 20, - P9_RRENAME = 21, - P9_TREADLINK = 22, - P9_RREADLINK = 23, - P9_TGETATTR = 24, - P9_RGETATTR = 25, - P9_TSETATTR = 26, - P9_RSETATTR = 27, - P9_TXATTRWALK = 30, - P9_RXATTRWALK = 31, - P9_TXATTRCREATE = 32, - P9_RXATTRCREATE = 33, - P9_TREADDIR = 40, - P9_RREADDIR = 41, - P9_TFSYNC = 50, - P9_RFSYNC = 51, - P9_TLOCK = 52, - P9_RLOCK = 53, - P9_TGETLOCK = 54, - P9_RGETLOCK = 55, - P9_TLINK = 70, - P9_RLINK = 71, - P9_TMKDIR = 72, - P9_RMKDIR = 73, - P9_TRENAMEAT = 74, - P9_RRENAMEAT = 75, - P9_TUNLINKAT = 76, - P9_RUNLINKAT = 77, - P9_TVERSION = 100, - P9_RVERSION = 101, - P9_TAUTH = 102, - P9_RAUTH = 103, - P9_TATTACH = 104, - P9_RATTACH = 105, - P9_TERROR = 106, - P9_RERROR = 107, - P9_TFLUSH = 108, - P9_RFLUSH = 109, - P9_TWALK = 110, - P9_RWALK = 111, - P9_TOPEN = 112, - P9_ROPEN = 113, - P9_TCREATE = 114, - P9_RCREATE = 115, - P9_TREAD = 116, - P9_RREAD = 117, - P9_TWRITE = 118, - P9_RWRITE = 119, - P9_TCLUNK = 120, - P9_RCLUNK = 121, - P9_TREMOVE = 122, - P9_RREMOVE = 123, - P9_TSTAT = 124, - P9_RSTAT = 125, - P9_TWSTAT = 126, - P9_RWSTAT = 127, -}; - -struct p9_stat_dotl { - u64 st_result_mask; - struct p9_qid qid; - u32 st_mode; - kuid_t st_uid; - kgid_t st_gid; - u64 st_nlink; - u64 st_rdev; - u64 st_size; - u64 st_blksize; - u64 st_blocks; - u64 st_atime_sec; - u64 st_atime_nsec; - u64 st_mtime_sec; - u64 st_mtime_nsec; - u64 st_ctime_sec; - u64 st_ctime_nsec; - u64 st_btime_sec; - u64 st_btime_nsec; - u64 st_gen; - u64 st_data_version; -}; - -struct p9_iattr_dotl { - u32 valid; - u32 mode; - kuid_t uid; - kgid_t gid; - u64 size; - u64 atime_sec; - u64 atime_nsec; - u64 mtime_sec; - u64 mtime_nsec; -}; - -enum p9_proto_versions { - p9_proto_legacy = 0, - p9_proto_2000u = 1, - p9_proto_2000L = 2, -}; - -struct p9_dirent { - struct p9_qid qid; - u64 d_off; - unsigned char d_type; - char d_name[256]; -}; - -enum { - OVS_VXLAN_EXT_UNSPEC = 0, - OVS_VXLAN_EXT_GBP = 1, - __OVS_VXLAN_EXT_MAX = 2, -}; - -enum { - OVS_TUNNEL_ATTR_UNSPEC = 0, - OVS_TUNNEL_ATTR_DST_PORT = 1, - OVS_TUNNEL_ATTR_EXTENSION = 2, - __OVS_TUNNEL_ATTR_MAX = 3, -}; - -enum ifla_vxlan_df { - VXLAN_DF_UNSET = 0, - VXLAN_DF_SET = 1, - VXLAN_DF_INHERIT = 2, - __VXLAN_DF_END = 3, - VXLAN_DF_MAX = 2, -}; - -enum ifla_vxlan_label_policy { - VXLAN_LABEL_FIXED = 0, - VXLAN_LABEL_INHERIT = 1, - __VXLAN_LABEL_END = 2, - VXLAN_LABEL_MAX = 1, -}; - -struct udp_tunnel_info { - short unsigned int type; - sa_family_t sa_family; - __be16 port; - u8 hw_priv; -}; - -struct udp_tunnel_nic_shared { - struct udp_tunnel_nic *udp_tunnel_nic_info; - struct list_head devices; -}; - -struct vxlan_sock { - struct hlist_node hlist; - struct socket *sock; - struct hlist_head vni_list[1024]; - refcount_t refcnt; - u32 flags; -}; - -union vxlan_addr { - struct sockaddr_in sin; - struct sockaddr_in6 sin6; - struct sockaddr sa; -}; - -struct vxlan_rdst { - union vxlan_addr remote_ip; - __be16 remote_port; - u8 offloaded: 1; - __be32 remote_vni; - u32 remote_ifindex; - struct net_device *remote_dev; - struct list_head list; - struct callback_head rcu; - struct dst_cache dst_cache; -}; - -struct vxlan_config { - union vxlan_addr remote_ip; - union vxlan_addr saddr; - __be32 vni; - int remote_ifindex; - int mtu; - __be16 dst_port; - u16 port_min; - u16 port_max; - u8 tos; - u8 ttl; - __be32 label; - enum ifla_vxlan_label_policy label_policy; - u32 flags; - long unsigned int age_interval; - unsigned int addrmax; - bool no_share; - enum ifla_vxlan_df df; -}; - -struct vxlan_dev; - -struct vxlan_dev_node { - struct hlist_node hlist; - struct vxlan_dev *vxlan; -}; - -struct vxlan_vni_group; - -struct vxlan_dev { - struct vxlan_dev_node hlist4; - struct vxlan_dev_node hlist6; - struct list_head next; - struct vxlan_sock *vn4_sock; - struct vxlan_sock *vn6_sock; - struct net_device *dev; - struct net *net; - struct vxlan_rdst default_dst; - struct timer_list age_timer; - spinlock_t hash_lock[256]; - unsigned int addrcnt; - struct gro_cells gro_cells; - struct vxlan_config cfg; - struct vxlan_vni_group *vnigrp; - struct hlist_head fdb_head[256]; - struct rhashtable mdb_tbl; - struct hlist_head mdb_list; - unsigned int mdb_seq; -}; - -struct vxlan_vni_group { - struct rhashtable vni_hash; - struct list_head vni_list; - u32 num_vnis; -}; - -struct virtio_vsock_hdr { - __le64 src_cid; - __le64 dst_cid; - __le32 src_port; - __le32 dst_port; - __le32 len; - __le16 type; - __le16 op; - __le32 flags; - __le32 buf_alloc; - __le32 fwd_cnt; -} __attribute__((packed)); - -enum virtio_vsock_type { - VIRTIO_VSOCK_TYPE_STREAM = 1, - VIRTIO_VSOCK_TYPE_SEQPACKET = 2, -}; - -enum virtio_vsock_op { - VIRTIO_VSOCK_OP_INVALID = 0, - VIRTIO_VSOCK_OP_REQUEST = 1, - VIRTIO_VSOCK_OP_RESPONSE = 2, - VIRTIO_VSOCK_OP_RST = 3, - VIRTIO_VSOCK_OP_SHUTDOWN = 4, - VIRTIO_VSOCK_OP_RW = 5, - VIRTIO_VSOCK_OP_CREDIT_UPDATE = 6, - VIRTIO_VSOCK_OP_CREDIT_REQUEST = 7, -}; - -enum virtio_vsock_shutdown { - VIRTIO_VSOCK_SHUTDOWN_RCV = 1, - VIRTIO_VSOCK_SHUTDOWN_SEND = 2, -}; - -enum virtio_vsock_rw { - VIRTIO_VSOCK_SEQ_EOM = 1, - VIRTIO_VSOCK_SEQ_EOR = 2, -}; - -struct mmpin { - struct user_struct *user; - unsigned int num_pg; -}; - -struct ubuf_info_msgzc { - struct ubuf_info ubuf; - union { - struct { - long unsigned int desc; - void *ctx; - }; - struct { - u32 id; - u16 len; - u16 zerocopy: 1; - u32 bytelen; - }; - }; - struct mmpin mmp; -}; - -struct virtio_vsock_skb_cb { - bool reply; - bool tap_delivered; - u32 offset; -}; - -struct virtio_vsock_sock { - struct vsock_sock *vsk; - spinlock_t tx_lock; - spinlock_t rx_lock; - u32 tx_cnt; - u32 peer_fwd_cnt; - u32 peer_buf_alloc; - size_t bytes_unsent; - u32 fwd_cnt; - u32 last_fwd_cnt; - u32 rx_bytes; - u32 buf_alloc; - u32 buf_used; - struct sk_buff_head rx_queue; - u32 msg_count; -}; - -struct virtio_vsock_pkt_info { - u32 remote_cid; - u32 remote_port; - struct vsock_sock *vsk; - struct msghdr *msg; - u32 pkt_len; - u16 type; - u16 op; - u32 flags; - bool reply; -}; - -struct af_vsockmon_hdr { - __le64 src_cid; - __le64 dst_cid; - __le32 src_port; - __le32 dst_port; - __le16 op; - __le16 transport; - __le16 len; - __u8 reserved[2]; -}; - -enum af_vsockmon_op { - AF_VSOCK_OP_UNKNOWN = 0, - AF_VSOCK_OP_CONNECT = 1, - AF_VSOCK_OP_DISCONNECT = 2, - AF_VSOCK_OP_CONTROL = 3, - AF_VSOCK_OP_PAYLOAD = 4, -}; - -enum af_vsockmon_transport { - AF_VSOCK_TRANSPORT_UNKNOWN = 0, - AF_VSOCK_TRANSPORT_NO_INFO = 1, - AF_VSOCK_TRANSPORT_VIRTIO = 2, -}; - -struct trace_event_raw_virtio_transport_alloc_pkt { - struct trace_entry ent; - __u32 src_cid; - __u32 src_port; - __u32 dst_cid; - __u32 dst_port; - __u32 len; - __u16 type; - __u16 op; - __u32 flags; - bool zcopy; - char __data[0]; -}; - -struct trace_event_raw_virtio_transport_recv_pkt { - struct trace_entry ent; - __u32 src_cid; - __u32 src_port; - __u32 dst_cid; - __u32 dst_port; - __u32 len; - __u16 type; - __u16 op; - __u32 flags; - __u32 buf_alloc; - __u32 fwd_cnt; - char __data[0]; -}; - -struct trace_event_data_offsets_virtio_transport_alloc_pkt {}; - -struct trace_event_data_offsets_virtio_transport_recv_pkt {}; - -typedef void (*btf_trace_virtio_transport_alloc_pkt)(void *, __u32, __u32, __u32, __u32, __u32, __u16, __u16, __u32, bool); - -typedef void (*btf_trace_virtio_transport_recv_pkt)(void *, __u32, __u32, __u32, __u32, __u32, __u16, __u16, __u32, __u32, __u32); - -struct uf_node { - struct uf_node *parent; - unsigned int rank; -}; - -typedef __kernel_long_t __kernel_ptrdiff_t; - -typedef __kernel_ptrdiff_t ptrdiff_t; - -struct tm { - int tm_sec; - int tm_min; - int tm_hour; - int tm_mday; - int tm_mon; - long int tm_year; - int tm_wday; - int tm_yday; -}; - -struct clk { - struct clk_core *core; - struct device *dev; - const char *dev_id; - const char *con_id; - long unsigned int min_rate; - long unsigned int max_rate; - unsigned int exclusive_count; - struct hlist_node clks_node; -}; - -struct rtc_time { - int tm_sec; - int tm_min; - int tm_hour; - int tm_mday; - int tm_mon; - int tm_year; - int tm_wday; - int tm_yday; - int tm_isdst; -}; - -enum format_type { - FORMAT_TYPE_NONE = 0, - FORMAT_TYPE_WIDTH = 1, - FORMAT_TYPE_PRECISION = 2, - FORMAT_TYPE_CHAR = 3, - FORMAT_TYPE_STR = 4, - FORMAT_TYPE_PTR = 5, - FORMAT_TYPE_PERCENT_CHAR = 6, - FORMAT_TYPE_INVALID = 7, - FORMAT_TYPE_LONG_LONG = 8, - FORMAT_TYPE_ULONG = 9, - FORMAT_TYPE_LONG = 10, - FORMAT_TYPE_UBYTE = 11, - FORMAT_TYPE_BYTE = 12, - FORMAT_TYPE_USHORT = 13, - FORMAT_TYPE_SHORT = 14, - FORMAT_TYPE_UINT = 15, - FORMAT_TYPE_INT = 16, - FORMAT_TYPE_SIZE_T = 17, - FORMAT_TYPE_PTRDIFF = 18, -}; - -struct printf_spec { - unsigned int type: 8; - int field_width: 24; - unsigned int flags: 8; - unsigned int base: 8; - int precision: 16; -}; - -struct page_flags_fields { - int width; - int shift; - int mask; - const struct printf_spec *spec; - const char *name; -}; - -struct minix_super_block { - __u16 s_ninodes; - __u16 s_nzones; - __u16 s_imap_blocks; - __u16 s_zmap_blocks; - __u16 s_firstdatazone; - __u16 s_log_zone_size; - __u32 s_max_size; - __u16 s_magic; - __u16 s_state; - __u32 s_zones; -}; - -struct romfs_super_block { - __be32 word0; - __be32 word1; - __be32 size; - __be32 checksum; - char name[0]; -}; - -struct cramfs_inode { - __u32 mode: 16; - __u32 uid: 16; - __u32 size: 24; - __u32 gid: 8; - __u32 namelen: 6; - __u32 offset: 26; -}; - -struct cramfs_info { - __u32 crc; - __u32 edition; - __u32 blocks; - __u32 files; -}; - -struct cramfs_super { - __u32 magic; - __u32 size; - __u32 flags; - __u32 future; - __u8 signature[16]; - struct cramfs_info fsid; - __u8 name[16]; - struct cramfs_inode root; -}; - -struct squashfs_super_block { - __le32 s_magic; - __le32 inodes; - __le32 mkfs_time; - __le32 block_size; - __le32 fragments; - __le16 compression; - __le16 block_log; - __le16 flags; - __le16 no_ids; - __le16 s_major; - __le16 s_minor; - __le64 root_inode; - __le64 bytes_used; - __le64 id_table_start; - __le64 xattr_id_table_start; - __le64 inode_table_start; - __le64 directory_table_start; - __le64 fragment_table_start; - __le64 lookup_table_start; -}; - -struct return_address_data { - unsigned int level; - void *addr; -}; - -enum arm_smccc_conduit { - SMCCC_CONDUIT_NONE = 0, - SMCCC_CONDUIT_SMC = 1, - SMCCC_CONDUIT_HVC = 2, -}; - -enum aarch64_insn_register_type { - AARCH64_INSN_REGTYPE_RT = 0, - AARCH64_INSN_REGTYPE_RN = 1, - AARCH64_INSN_REGTYPE_RT2 = 2, - AARCH64_INSN_REGTYPE_RM = 3, - AARCH64_INSN_REGTYPE_RD = 4, - AARCH64_INSN_REGTYPE_RA = 5, - AARCH64_INSN_REGTYPE_RS = 6, -}; - -enum aarch64_insn_register { - AARCH64_INSN_REG_0 = 0, - AARCH64_INSN_REG_1 = 1, - AARCH64_INSN_REG_2 = 2, - AARCH64_INSN_REG_3 = 3, - AARCH64_INSN_REG_4 = 4, - AARCH64_INSN_REG_5 = 5, - AARCH64_INSN_REG_6 = 6, - AARCH64_INSN_REG_7 = 7, - AARCH64_INSN_REG_8 = 8, - AARCH64_INSN_REG_9 = 9, - AARCH64_INSN_REG_10 = 10, - AARCH64_INSN_REG_11 = 11, - AARCH64_INSN_REG_12 = 12, - AARCH64_INSN_REG_13 = 13, - AARCH64_INSN_REG_14 = 14, - AARCH64_INSN_REG_15 = 15, - AARCH64_INSN_REG_16 = 16, - AARCH64_INSN_REG_17 = 17, - AARCH64_INSN_REG_18 = 18, - AARCH64_INSN_REG_19 = 19, - AARCH64_INSN_REG_20 = 20, - AARCH64_INSN_REG_21 = 21, - AARCH64_INSN_REG_22 = 22, - AARCH64_INSN_REG_23 = 23, - AARCH64_INSN_REG_24 = 24, - AARCH64_INSN_REG_25 = 25, - AARCH64_INSN_REG_26 = 26, - AARCH64_INSN_REG_27 = 27, - AARCH64_INSN_REG_28 = 28, - AARCH64_INSN_REG_29 = 29, - AARCH64_INSN_REG_FP = 29, - AARCH64_INSN_REG_30 = 30, - AARCH64_INSN_REG_LR = 30, - AARCH64_INSN_REG_ZR = 31, - AARCH64_INSN_REG_SP = 31, -}; - -enum aarch64_insn_variant { - AARCH64_INSN_VARIANT_32BIT = 0, - AARCH64_INSN_VARIANT_64BIT = 1, -}; - -enum aarch64_insn_movewide_type { - AARCH64_INSN_MOVEWIDE_ZERO = 0, - AARCH64_INSN_MOVEWIDE_KEEP = 1, - AARCH64_INSN_MOVEWIDE_INVERSE = 2, -}; - -enum aarch64_insn_logic_type { - AARCH64_INSN_LOGIC_AND = 0, - AARCH64_INSN_LOGIC_BIC = 1, - AARCH64_INSN_LOGIC_ORR = 2, - AARCH64_INSN_LOGIC_ORN = 3, - AARCH64_INSN_LOGIC_EOR = 4, - AARCH64_INSN_LOGIC_EON = 5, - AARCH64_INSN_LOGIC_AND_SETFLAGS = 6, - AARCH64_INSN_LOGIC_BIC_SETFLAGS = 7, -}; - -struct midr_range { - u32 model; - u32 rv_min; - u32 rv_max; -}; - -struct arm64_midr_revidr { - u32 midr_rv; - u32 revidr_mask; -}; - -struct arm64_cpu_capabilities { - const char *desc; - u16 capability; - u16 type; - bool (*matches)(const struct arm64_cpu_capabilities *, int); - void (*cpu_enable)(const struct arm64_cpu_capabilities *); - union { - struct { - struct midr_range midr_range; - const struct arm64_midr_revidr * const fixed_revs; - }; - const struct midr_range *midr_range_list; - struct { - u32 sys_reg; - u8 field_pos; - u8 field_width; - u8 min_field_value; - u8 max_field_value; - u8 hwcap_type; - bool sign; - long unsigned int hwcap; - }; - }; - const struct arm64_cpu_capabilities *match_list; - const struct cpumask *cpus; -}; - -enum mitigation_state { - SPECTRE_UNAFFECTED = 0, - SPECTRE_MITIGATED = 1, - SPECTRE_VULNERABLE = 2, -}; - -enum arm64_hyp_spectre_vector { - HYP_VECTOR_DIRECT = 0, - HYP_VECTOR_SPECTRE_DIRECT = 1, - HYP_VECTOR_INDIRECT = 2, - HYP_VECTOR_SPECTRE_INDIRECT = 3, -}; - -typedef void (*bp_hardening_cb_t)(void); - -struct bp_hardening_data { - enum arm64_hyp_spectre_vector slot; - bp_hardening_cb_t fn; -}; - -enum fixed_addresses { - FIX_HOLE = 0, - FIX_FDT_END = 1, - FIX_FDT = 514, - FIX_EARLYCON_MEM_BASE = 515, - FIX_TEXT_POKE0 = 516, - FIX_ENTRY_TRAMP_TEXT4 = 517, - FIX_ENTRY_TRAMP_TEXT3 = 518, - FIX_ENTRY_TRAMP_TEXT2 = 519, - FIX_ENTRY_TRAMP_TEXT1 = 520, - __end_of_permanent_fixed_addresses = 521, - FIX_BTMAP_END = 521, - FIX_BTMAP_BEGIN = 968, - FIX_PTE = 969, - FIX_PMD = 970, - FIX_PUD = 971, - FIX_P4D = 972, - FIX_PGD = 973, - __end_of_fixed_addresses = 974, -}; - -enum arm64_bp_harden_el1_vectors { - EL1_VECTOR_BHB_LOOP = 0, - EL1_VECTOR_BHB_FW = 1, - EL1_VECTOR_BHB_CLEAR_INSN = 2, - EL1_VECTOR_KPTI = 3, -}; - -enum spectre_v4_policy { - SPECTRE_V4_POLICY_MITIGATION_DYNAMIC = 0, - SPECTRE_V4_POLICY_MITIGATION_ENABLED = 1, - SPECTRE_V4_POLICY_MITIGATION_DISABLED = 2, -}; - -struct spectre_v4_param { - const char *str; - enum spectre_v4_policy policy; -}; - -enum bhb_mitigation_bits { - BHB_LOOP = 0, - BHB_FW = 1, - BHB_HW = 2, - BHB_INSN = 3, -}; - -struct arm_cpuidle_irq_context {}; - -struct mpidr_hash { - u64 mask; - u32 shift_aff[4]; - u32 bits; -}; - -struct cpu_suspend_ctx { - u64 ctx_regs[13]; - u64 sp; -}; - -struct sleep_stack_data { - struct cpu_suspend_ctx system_regs; - long unsigned int callee_saved_regs[12]; -}; - -struct arm64_mem_crypt_ops { - int (*encrypt)(long unsigned int, int); - int (*decrypt)(long unsigned int, int); -}; - -typedef u64 p4dval_t; - -enum memblock_flags { - MEMBLOCK_NONE = 0, - MEMBLOCK_HOTPLUG = 1, - MEMBLOCK_MIRROR = 2, - MEMBLOCK_NOMAP = 4, - MEMBLOCK_DRIVER_MANAGED = 8, - MEMBLOCK_RSRV_NOINIT = 16, -}; - -struct memblock_region { - phys_addr_t base; - phys_addr_t size; - enum memblock_flags flags; -}; - -struct memblock_type { - long unsigned int cnt; - long unsigned int max; - phys_addr_t total_size; - struct memblock_region *regions; - char *name; -}; - -struct memblock { - bool bottom_up; - phys_addr_t current_limit; - struct memblock_type memory; - struct memblock_type reserved; -}; - -struct vm_struct { - struct vm_struct *next; - void *addr; - long unsigned int size; - long unsigned int flags; - struct page **pages; - unsigned int page_order; - unsigned int nr_pages; - phys_addr_t phys_addr; - const void *caller; - long unsigned int requested_size; -}; - -typedef void ttbr_replace_func(phys_addr_t); - -enum chacha_constants { - CHACHA_CONSTANT_EXPA = 1634760805, - CHACHA_CONSTANT_ND_3 = 857760878, - CHACHA_CONSTANT_2_BY = 2036477234, - CHACHA_CONSTANT_TE_K = 1797285236, -}; - -struct chacha_ctx { - u32 key[8]; - int nrounds; -}; - -struct atomic_notifier_head { - spinlock_t lock; - struct notifier_block *head; -}; - -enum umh_disable_depth { - UMH_ENABLED = 0, - UMH_FREEZING = 1, - UMH_DISABLED = 2, -}; - -enum reboot_mode { - REBOOT_UNDEFINED = -1, - REBOOT_COLD = 0, - REBOOT_WARM = 1, - REBOOT_HARD = 2, - REBOOT_SOFT = 3, - REBOOT_GPIO = 4, -}; - -enum reboot_type { - BOOT_TRIPLE = 116, - BOOT_KBD = 107, - BOOT_BIOS = 98, - BOOT_ACPI = 97, - BOOT_EFI = 101, - BOOT_CF9_FORCE = 112, - BOOT_CF9_SAFE = 113, -}; - -enum sys_off_mode { - SYS_OFF_MODE_POWER_OFF_PREPARE = 0, - SYS_OFF_MODE_POWER_OFF = 1, - SYS_OFF_MODE_RESTART_PREPARE = 2, - SYS_OFF_MODE_RESTART = 3, -}; - -struct sys_off_data { - int mode; - void *cb_data; - const char *cmd; - struct device *dev; -}; - -struct sys_off_handler { - struct notifier_block nb; - int (*sys_off_cb)(struct sys_off_data *); - void *cb_data; - enum sys_off_mode mode; - bool blocking; - void *list; - struct device *dev; -}; - -enum { - IRQTF_RUNTHREAD = 0, - IRQTF_WARNED = 1, - IRQTF_AFFINITY = 2, - IRQTF_FORCED_THREAD = 3, - IRQTF_READY = 4, -}; - -enum { - IRQS_AUTODETECT = 1, - IRQS_SPURIOUS_DISABLED = 2, - IRQS_POLL_INPROGRESS = 8, - IRQS_ONESHOT = 32, - IRQS_REPLAY = 64, - IRQS_WAITING = 128, - IRQS_PENDING = 512, - IRQS_SUSPENDED = 2048, - IRQS_TIMINGS = 4096, - IRQS_NMI = 8192, - IRQS_SYSFS = 16384, -}; - -enum { - _IRQ_DEFAULT_INIT_FLAGS = 0, - _IRQ_PER_CPU = 512, - _IRQ_LEVEL = 256, - _IRQ_NOPROBE = 1024, - _IRQ_NOREQUEST = 2048, - _IRQ_NOTHREAD = 65536, - _IRQ_NOAUTOEN = 4096, - _IRQ_MOVE_PCNTXT = 16384, - _IRQ_NO_BALANCING = 8192, - _IRQ_NESTED_THREAD = 32768, - _IRQ_PER_CPU_DEVID = 131072, - _IRQ_IS_POLLED = 262144, - _IRQ_DISABLE_UNLAZY = 524288, - _IRQ_HIDDEN = 1048576, - _IRQ_NO_DEBUG = 2097152, - _IRQF_MODIFY_MASK = 2096911, -}; - -enum { - IRQ_DOMAIN_FLAG_HIERARCHY = 1, - IRQ_DOMAIN_NAME_ALLOCATED = 2, - IRQ_DOMAIN_FLAG_IPI_PER_CPU = 4, - IRQ_DOMAIN_FLAG_IPI_SINGLE = 8, - IRQ_DOMAIN_FLAG_MSI = 16, - IRQ_DOMAIN_FLAG_ISOLATED_MSI = 32, - IRQ_DOMAIN_FLAG_NO_MAP = 64, - IRQ_DOMAIN_FLAG_MSI_PARENT = 256, - IRQ_DOMAIN_FLAG_MSI_DEVICE = 512, - IRQ_DOMAIN_FLAG_DESTROY_GC = 1024, - IRQ_DOMAIN_FLAG_NONCORE = 65536, -}; - -struct dma_map_ops { - void * (*alloc)(struct device *, size_t, dma_addr_t *, gfp_t, long unsigned int); - void (*free)(struct device *, size_t, void *, dma_addr_t, long unsigned int); - struct page * (*alloc_pages_op)(struct device *, size_t, dma_addr_t *, enum dma_data_direction, gfp_t); - void (*free_pages)(struct device *, size_t, struct page *, dma_addr_t, enum dma_data_direction); - int (*mmap)(struct device *, struct vm_area_struct *, void *, dma_addr_t, size_t, long unsigned int); - int (*get_sgtable)(struct device *, struct sg_table *, void *, dma_addr_t, size_t, long unsigned int); - dma_addr_t (*map_page)(struct device *, struct page *, long unsigned int, size_t, enum dma_data_direction, long unsigned int); - void (*unmap_page)(struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); - int (*map_sg)(struct device *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); - void (*unmap_sg)(struct device *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); - dma_addr_t (*map_resource)(struct device *, phys_addr_t, size_t, enum dma_data_direction, long unsigned int); - void (*unmap_resource)(struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); - void (*sync_single_for_cpu)(struct device *, dma_addr_t, size_t, enum dma_data_direction); - void (*sync_single_for_device)(struct device *, dma_addr_t, size_t, enum dma_data_direction); - void (*sync_sg_for_cpu)(struct device *, struct scatterlist *, int, enum dma_data_direction); - void (*sync_sg_for_device)(struct device *, struct scatterlist *, int, enum dma_data_direction); - void (*cache_sync)(struct device *, void *, size_t, enum dma_data_direction); - int (*dma_supported)(struct device *, u64); - u64 (*get_required_mask)(struct device *); - size_t (*max_mapping_size)(struct device *); - size_t (*opt_mapping_size)(void); - long unsigned int (*get_merge_boundary)(struct device *); -}; - -struct trace_event_raw_dma_map { - struct trace_entry ent; - u32 __data_loc_device; - u64 phys_addr; - u64 dma_addr; - size_t size; - enum dma_data_direction dir; - long unsigned int attrs; - char __data[0]; -}; - -struct trace_event_raw_dma_unmap { - struct trace_entry ent; - u32 __data_loc_device; - u64 addr; - size_t size; - enum dma_data_direction dir; - long unsigned int attrs; - char __data[0]; -}; - -struct trace_event_raw_dma_alloc_class { - struct trace_entry ent; - u32 __data_loc_device; - void *virt_addr; - u64 dma_addr; - size_t size; - gfp_t flags; - enum dma_data_direction dir; - long unsigned int attrs; - char __data[0]; -}; - -struct trace_event_raw_dma_alloc_sgt { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_phys_addrs; - u64 dma_addr; - size_t size; - enum dma_data_direction dir; - gfp_t flags; - long unsigned int attrs; - char __data[0]; -}; - -struct trace_event_raw_dma_free_class { - struct trace_entry ent; - u32 __data_loc_device; - void *virt_addr; - u64 dma_addr; - size_t size; - enum dma_data_direction dir; - long unsigned int attrs; - char __data[0]; -}; - -struct trace_event_raw_dma_free_sgt { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_phys_addrs; - u64 dma_addr; - size_t size; - enum dma_data_direction dir; - char __data[0]; -}; - -struct trace_event_raw_dma_map_sg { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_phys_addrs; - u32 __data_loc_dma_addrs; - u32 __data_loc_lengths; - enum dma_data_direction dir; - long unsigned int attrs; - char __data[0]; -}; - -struct trace_event_raw_dma_map_sg_err { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_phys_addrs; - int err; - enum dma_data_direction dir; - long unsigned int attrs; - char __data[0]; -}; - -struct trace_event_raw_dma_unmap_sg { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_addrs; - enum dma_data_direction dir; - long unsigned int attrs; - char __data[0]; -}; - -struct trace_event_raw_dma_sync_single { - struct trace_entry ent; - u32 __data_loc_device; - u64 dma_addr; - size_t size; - enum dma_data_direction dir; - char __data[0]; -}; - -struct trace_event_raw_dma_sync_sg { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_dma_addrs; - u32 __data_loc_lengths; - enum dma_data_direction dir; - char __data[0]; -}; - -struct trace_event_data_offsets_dma_map { - u32 device; - const void *device_ptr_; -}; - -struct trace_event_data_offsets_dma_unmap { - u32 device; - const void *device_ptr_; -}; - -struct trace_event_data_offsets_dma_alloc_class { - u32 device; - const void *device_ptr_; -}; - -struct trace_event_data_offsets_dma_alloc_sgt { - u32 device; - const void *device_ptr_; - u32 phys_addrs; - const void *phys_addrs_ptr_; -}; - -struct trace_event_data_offsets_dma_free_class { - u32 device; - const void *device_ptr_; -}; - -struct trace_event_data_offsets_dma_free_sgt { - u32 device; - const void *device_ptr_; - u32 phys_addrs; - const void *phys_addrs_ptr_; -}; - -struct trace_event_data_offsets_dma_map_sg { - u32 device; - const void *device_ptr_; - u32 phys_addrs; - const void *phys_addrs_ptr_; - u32 dma_addrs; - const void *dma_addrs_ptr_; - u32 lengths; - const void *lengths_ptr_; -}; - -struct trace_event_data_offsets_dma_map_sg_err { - u32 device; - const void *device_ptr_; - u32 phys_addrs; - const void *phys_addrs_ptr_; -}; - -struct trace_event_data_offsets_dma_unmap_sg { - u32 device; - const void *device_ptr_; - u32 addrs; - const void *addrs_ptr_; -}; - -struct trace_event_data_offsets_dma_sync_single { - u32 device; - const void *device_ptr_; -}; - -struct trace_event_data_offsets_dma_sync_sg { - u32 device; - const void *device_ptr_; - u32 dma_addrs; - const void *dma_addrs_ptr_; - u32 lengths; - const void *lengths_ptr_; -}; - -typedef void (*btf_trace_dma_map_page)(void *, struct device *, phys_addr_t, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_map_resource)(void *, struct device *, phys_addr_t, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_unmap_page)(void *, struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_unmap_resource)(void *, struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_alloc)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, gfp_t, long unsigned int); - -typedef void (*btf_trace_dma_alloc_pages)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, gfp_t, long unsigned int); - -typedef void (*btf_trace_dma_alloc_sgt_err)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, gfp_t, long unsigned int); - -typedef void (*btf_trace_dma_alloc_sgt)(void *, struct device *, struct sg_table *, size_t, enum dma_data_direction, gfp_t, long unsigned int); - -typedef void (*btf_trace_dma_free)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_free_pages)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_free_sgt)(void *, struct device *, struct sg_table *, size_t, enum dma_data_direction); - -typedef void (*btf_trace_dma_map_sg)(void *, struct device *, struct scatterlist *, int, int, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_map_sg_err)(void *, struct device *, struct scatterlist *, int, int, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_unmap_sg)(void *, struct device *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_sync_single_for_cpu)(void *, struct device *, dma_addr_t, size_t, enum dma_data_direction); - -typedef void (*btf_trace_dma_sync_single_for_device)(void *, struct device *, dma_addr_t, size_t, enum dma_data_direction); - -typedef void (*btf_trace_dma_sync_sg_for_cpu)(void *, struct device *, struct scatterlist *, int, enum dma_data_direction); - -typedef void (*btf_trace_dma_sync_sg_for_device)(void *, struct device *, struct scatterlist *, int, enum dma_data_direction); - -struct dma_devres { - size_t size; - void *vaddr; - dma_addr_t dma_handle; - long unsigned int attrs; -}; - -struct tick_sched { - long unsigned int flags; - unsigned int stalled_jiffies; - long unsigned int last_tick_jiffies; - struct hrtimer sched_timer; - ktime_t last_tick; - ktime_t next_tick; - long unsigned int idle_jiffies; - ktime_t idle_waketime; - unsigned int got_idle_tick; - seqcount_t idle_sleeptime_seq; - ktime_t idle_entrytime; - long unsigned int last_jiffies; - u64 timer_expires_base; - u64 timer_expires; - u64 next_timer; - ktime_t idle_expires; - long unsigned int idle_calls; - long unsigned int idle_sleeps; - ktime_t idle_exittime; - ktime_t idle_sleeptime; - ktime_t iowait_sleeptime; - atomic_t tick_dep_mask; - long unsigned int check_clocks; -}; - -struct timer_list_iter { - int cpu; - bool second_pass; - u64 now; -}; - -enum tick_broadcast_state { - TICK_BROADCAST_EXIT = 0, - TICK_BROADCAST_ENTER = 1, -}; - -typedef __u16 comp_t; - -struct acct_v3 { - char ac_flag; - char ac_version; - __u16 ac_tty; - __u32 ac_exitcode; - __u32 ac_uid; - __u32 ac_gid; - __u32 ac_pid; - __u32 ac_ppid; - __u32 ac_btime; - __u32 ac_etime; - comp_t ac_utime; - comp_t ac_stime; - comp_t ac_mem; - comp_t ac_io; - comp_t ac_rw; - comp_t ac_minflt; - comp_t ac_majflt; - comp_t ac_swaps; - char ac_comm[16]; -}; - -typedef struct acct_v3 acct_t; - -struct bsd_acct_struct { - struct fs_pin pin; - atomic_long_t count; - struct callback_head rcu; - struct mutex lock; - bool active; - bool check_space; - long unsigned int needcheck; - struct file *file; - struct pid_namespace *ns; - struct work_struct work; - struct completion done; - acct_t ac; -}; - -struct rchan; - -struct rchan_buf { - void *start; - void *data; - size_t offset; - size_t subbufs_produced; - size_t subbufs_consumed; - struct rchan *chan; - wait_queue_head_t read_wait; - struct irq_work wakeup_work; - struct dentry *dentry; - struct kref kref; - struct page **page_array; - unsigned int page_count; - unsigned int finalized; - size_t *padding; - size_t prev_padding; - size_t bytes_consumed; - size_t early_bytes; - unsigned int cpu; - long: 64; - long: 64; -}; - -struct rchan_callbacks; - -struct rchan { - u32 version; - size_t subbuf_size; - size_t n_subbufs; - size_t alloc_size; - const struct rchan_callbacks *cb; - struct kref kref; - void *private_data; - size_t last_toobig; - struct rchan_buf **buf; - int is_global; - struct list_head list; - struct dentry *parent; - int has_base_filename; - char base_filename[255]; -}; - -struct rchan_callbacks { - int (*subbuf_start)(struct rchan_buf *, void *, void *, size_t); - struct dentry * (*create_buf_file)(const char *, struct dentry *, umode_t, struct rchan_buf *, int *); - int (*remove_buf_file)(struct dentry *); -}; - -struct rchan_percpu_buf_dispatcher { - struct rchan_buf *buf; - struct dentry *dentry; -}; - -struct tp_module { - struct list_head list; - struct module *mod; -}; - -enum tp_func_state { - TP_FUNC_0 = 0, - TP_FUNC_1 = 1, - TP_FUNC_2 = 2, - TP_FUNC_N = 3, -}; - -enum tp_transition_sync { - TP_TRANSITION_SYNC_1_0_1 = 0, - TP_TRANSITION_SYNC_N_2_1 = 1, - _NR_TP_TRANSITION_SYNC = 2, -}; - -struct tp_transition_snapshot { - long unsigned int rcu; - long unsigned int srcu; - bool ongoing; -}; - -struct tp_probes { - struct callback_head rcu; - struct tracepoint_func probes[0]; -}; - -enum ftrace_dump_mode { - DUMP_NONE = 0, - DUMP_ALL = 1, - DUMP_ORIG = 2, - DUMP_PARAM = 3, -}; - -enum { - TRACE_FTRACE_BIT = 0, - TRACE_FTRACE_NMI_BIT = 1, - TRACE_FTRACE_IRQ_BIT = 2, - TRACE_FTRACE_SIRQ_BIT = 3, - TRACE_FTRACE_TRANSITION_BIT = 4, - TRACE_INTERNAL_BIT = 5, - TRACE_INTERNAL_NMI_BIT = 6, - TRACE_INTERNAL_IRQ_BIT = 7, - TRACE_INTERNAL_SIRQ_BIT = 8, - TRACE_INTERNAL_TRANSITION_BIT = 9, - TRACE_BRANCH_BIT = 10, - TRACE_IRQ_BIT = 11, - TRACE_RECORD_RECURSION_BIT = 12, -}; - -enum { - TRACE_CTX_NMI = 0, - TRACE_CTX_IRQ = 1, - TRACE_CTX_SOFTIRQ = 2, - TRACE_CTX_NORMAL = 3, - TRACE_CTX_TRANSITION = 4, -}; - -enum { - FTRACE_OPS_FL_ENABLED = 1, - FTRACE_OPS_FL_DYNAMIC = 2, - FTRACE_OPS_FL_SAVE_REGS = 4, - FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED = 8, - FTRACE_OPS_FL_RECURSION = 16, - FTRACE_OPS_FL_STUB = 32, - FTRACE_OPS_FL_INITIALIZED = 64, - FTRACE_OPS_FL_DELETED = 128, - FTRACE_OPS_FL_ADDING = 256, - FTRACE_OPS_FL_REMOVING = 512, - FTRACE_OPS_FL_MODIFYING = 1024, - FTRACE_OPS_FL_ALLOC_TRAMP = 2048, - FTRACE_OPS_FL_IPMODIFY = 4096, - FTRACE_OPS_FL_PID = 8192, - FTRACE_OPS_FL_RCU = 16384, - FTRACE_OPS_FL_TRACE_ARRAY = 32768, - FTRACE_OPS_FL_PERMANENT = 65536, - FTRACE_OPS_FL_DIRECT = 131072, - FTRACE_OPS_FL_SUBOP = 262144, -}; - -enum { - TRACE_ARRAY_FL_GLOBAL = 1, - TRACE_ARRAY_FL_BOOT = 2, -}; - -struct ftrace_func_command { - struct list_head list; - char *name; - int (*func)(struct trace_array *, struct ftrace_hash *, char *, char *, char *, int); -}; - -struct ftrace_probe_ops { - void (*func)(long unsigned int, long unsigned int, struct trace_array *, struct ftrace_probe_ops *, void *); - int (*init)(struct ftrace_probe_ops *, struct trace_array *, long unsigned int, void *, void **); - void (*free)(struct ftrace_probe_ops *, struct trace_array *, long unsigned int, void *); - int (*print)(struct seq_file *, long unsigned int, struct ftrace_probe_ops *, void *); -}; - -typedef int (*ftrace_mapper_func)(void *); - -enum { - TRACE_FUNC_NO_OPTS = 0, - TRACE_FUNC_OPT_STACK = 1, - TRACE_FUNC_OPT_NO_REPEATS = 2, - TRACE_FUNC_OPT_HIGHEST_BIT = 4, -}; - -enum bpf_task_fd_type { - BPF_FD_TYPE_RAW_TRACEPOINT = 0, - BPF_FD_TYPE_TRACEPOINT = 1, - BPF_FD_TYPE_KPROBE = 2, - BPF_FD_TYPE_KRETPROBE = 3, - BPF_FD_TYPE_UPROBE = 4, - BPF_FD_TYPE_URETPROBE = 5, -}; - -struct btf_param { - __u32 name_off; - __u32 type; -}; - -struct objpool_slot { - uint32_t head; - uint32_t tail; - uint32_t last; - uint32_t mask; - void *entries[0]; -}; - -struct objpool_head; - -typedef int (*objpool_fini_cb)(struct objpool_head *, void *); - -struct objpool_head { - int obj_size; - int nr_objs; - int nr_possible_cpus; - int capacity; - gfp_t gfp; - refcount_t ref; - long unsigned int flags; - struct objpool_slot **cpu_slots; - objpool_fini_cb release; - void *context; -}; - -struct kprobe; - -typedef int (*kprobe_pre_handler_t)(struct kprobe *, struct pt_regs *); - -typedef void (*kprobe_post_handler_t)(struct kprobe *, struct pt_regs *, long unsigned int); - -struct kprobe { - struct hlist_node hlist; - struct list_head list; - long unsigned int nmissed; - kprobe_opcode_t *addr; - const char *symbol_name; - unsigned int offset; - kprobe_pre_handler_t pre_handler; - kprobe_post_handler_t post_handler; - kprobe_opcode_t opcode; - struct arch_specific_insn ainsn; - u32 flags; -}; - -struct kretprobe_instance; - -typedef int (*kretprobe_handler_t)(struct kretprobe_instance *, struct pt_regs *); - -struct kretprobe_holder; - -struct kretprobe_instance { - struct callback_head rcu; - struct llist_node llist; - struct kretprobe_holder *rph; - kprobe_opcode_t *ret_addr; - void *fp; - char data[0]; -}; - -struct kretprobe; - -struct kretprobe_holder { - struct kretprobe *rp; - struct objpool_head pool; -}; - -struct kretprobe { - struct kprobe kp; - kretprobe_handler_t handler; - kretprobe_handler_t entry_handler; - int maxactive; - int nmissed; - size_t data_size; - struct kretprobe_holder *rph; -}; - -struct kprobe_trace_entry_head { - struct trace_entry ent; - long unsigned int ip; -}; - -struct kretprobe_trace_entry_head { - struct trace_entry ent; - long unsigned int func; - long unsigned int ret_ip; -}; - -typedef int (*print_type_func_t)(struct trace_seq *, void *, void *); - -enum fetch_op { - FETCH_OP_NOP = 0, - FETCH_OP_REG = 1, - FETCH_OP_STACK = 2, - FETCH_OP_STACKP = 3, - FETCH_OP_RETVAL = 4, - FETCH_OP_IMM = 5, - FETCH_OP_COMM = 6, - FETCH_OP_ARG = 7, - FETCH_OP_FOFFS = 8, - FETCH_OP_DATA = 9, - FETCH_OP_EDATA = 10, - FETCH_OP_DEREF = 11, - FETCH_OP_UDEREF = 12, - FETCH_OP_ST_RAW = 13, - FETCH_OP_ST_MEM = 14, - FETCH_OP_ST_UMEM = 15, - FETCH_OP_ST_STRING = 16, - FETCH_OP_ST_USTRING = 17, - FETCH_OP_ST_SYMSTR = 18, - FETCH_OP_ST_EDATA = 19, - FETCH_OP_MOD_BF = 20, - FETCH_OP_LP_ARRAY = 21, - FETCH_OP_TP_ARG = 22, - FETCH_OP_END = 23, - FETCH_NOP_SYMBOL = 24, -}; - -struct fetch_insn { - enum fetch_op op; - union { - unsigned int param; - struct { - unsigned int size; - int offset; - }; - struct { - unsigned char basesize; - unsigned char lshift; - unsigned char rshift; - }; - long unsigned int immediate; - void *data; - }; -}; - -struct fetch_type { - const char *name; - size_t size; - bool is_signed; - bool is_string; - print_type_func_t print; - const char *fmt; - const char *fmttype; -}; - -struct probe_arg { - struct fetch_insn *code; - bool dynamic; - unsigned int offset; - unsigned int count; - const char *name; - const char *comm; - char *fmt; - const struct fetch_type *type; -}; - -struct probe_entry_arg { - struct fetch_insn *code; - unsigned int size; -}; - -struct trace_uprobe_filter { - rwlock_t rwlock; - int nr_systemwide; - struct list_head perf_events; -}; - -struct trace_probe_event { - unsigned int flags; - struct trace_event_class class; - struct trace_event_call call; - struct list_head files; - struct list_head probes; - struct trace_uprobe_filter filter[0]; -}; - -struct trace_probe { - struct list_head list; - struct trace_probe_event *event; - ssize_t size; - unsigned int nr_args; - struct probe_entry_arg *entry_arg; - struct probe_arg args[0]; -}; - -struct event_file_link { - struct trace_event_file *file; - struct list_head list; -}; - -struct traceprobe_parse_context { - struct trace_event_call *event; - const char *funcname; - const struct btf_type *proto; - const struct btf_param *params; - s32 nr_params; - struct btf *btf; - const struct btf_type *last_type; - u32 last_bitoffs; - u32 last_bitsize; - struct trace_probe *tp; - unsigned int flags; - int offset; -}; - -enum probe_print_type { - PROBE_PRINT_NORMAL = 0, - PROBE_PRINT_RETURN = 1, - PROBE_PRINT_EVENT = 2, -}; - -enum { - TP_ERR_FILE_NOT_FOUND = 0, - TP_ERR_NO_REGULAR_FILE = 1, - TP_ERR_BAD_REFCNT = 2, - TP_ERR_REFCNT_OPEN_BRACE = 3, - TP_ERR_BAD_REFCNT_SUFFIX = 4, - TP_ERR_BAD_UPROBE_OFFS = 5, - TP_ERR_BAD_MAXACT_TYPE = 6, - TP_ERR_BAD_MAXACT = 7, - TP_ERR_MAXACT_TOO_BIG = 8, - TP_ERR_BAD_PROBE_ADDR = 9, - TP_ERR_NON_UNIQ_SYMBOL = 10, - TP_ERR_BAD_RETPROBE = 11, - TP_ERR_NO_TRACEPOINT = 12, - TP_ERR_BAD_TP_NAME = 13, - TP_ERR_BAD_ADDR_SUFFIX = 14, - TP_ERR_NO_GROUP_NAME = 15, - TP_ERR_GROUP_TOO_LONG = 16, - TP_ERR_BAD_GROUP_NAME = 17, - TP_ERR_NO_EVENT_NAME = 18, - TP_ERR_EVENT_TOO_LONG = 19, - TP_ERR_BAD_EVENT_NAME = 20, - TP_ERR_EVENT_EXIST = 21, - TP_ERR_RETVAL_ON_PROBE = 22, - TP_ERR_NO_RETVAL = 23, - TP_ERR_BAD_STACK_NUM = 24, - TP_ERR_BAD_ARG_NUM = 25, - TP_ERR_BAD_VAR = 26, - TP_ERR_BAD_REG_NAME = 27, - TP_ERR_BAD_MEM_ADDR = 28, - TP_ERR_BAD_IMM = 29, - TP_ERR_IMMSTR_NO_CLOSE = 30, - TP_ERR_FILE_ON_KPROBE = 31, - TP_ERR_BAD_FILE_OFFS = 32, - TP_ERR_SYM_ON_UPROBE = 33, - TP_ERR_TOO_MANY_OPS = 34, - TP_ERR_DEREF_NEED_BRACE = 35, - TP_ERR_BAD_DEREF_OFFS = 36, - TP_ERR_DEREF_OPEN_BRACE = 37, - TP_ERR_COMM_CANT_DEREF = 38, - TP_ERR_BAD_FETCH_ARG = 39, - TP_ERR_ARRAY_NO_CLOSE = 40, - TP_ERR_BAD_ARRAY_SUFFIX = 41, - TP_ERR_BAD_ARRAY_NUM = 42, - TP_ERR_ARRAY_TOO_BIG = 43, - TP_ERR_BAD_TYPE = 44, - TP_ERR_BAD_STRING = 45, - TP_ERR_BAD_SYMSTRING = 46, - TP_ERR_BAD_BITFIELD = 47, - TP_ERR_ARG_NAME_TOO_LONG = 48, - TP_ERR_NO_ARG_NAME = 49, - TP_ERR_BAD_ARG_NAME = 50, - TP_ERR_USED_ARG_NAME = 51, - TP_ERR_ARG_TOO_LONG = 52, - TP_ERR_NO_ARG_BODY = 53, - TP_ERR_BAD_INSN_BNDRY = 54, - TP_ERR_FAIL_REG_PROBE = 55, - TP_ERR_DIFF_PROBE_TYPE = 56, - TP_ERR_DIFF_ARG_TYPE = 57, - TP_ERR_SAME_PROBE = 58, - TP_ERR_NO_EVENT_INFO = 59, - TP_ERR_BAD_ATTACH_EVENT = 60, - TP_ERR_BAD_ATTACH_ARG = 61, - TP_ERR_NO_EP_FILTER = 62, - TP_ERR_NOSUP_BTFARG = 63, - TP_ERR_NO_BTFARG = 64, - TP_ERR_NO_BTF_ENTRY = 65, - TP_ERR_BAD_VAR_ARGS = 66, - TP_ERR_NOFENTRY_ARGS = 67, - TP_ERR_DOUBLE_ARGS = 68, - TP_ERR_ARGS_2LONG = 69, - TP_ERR_ARGIDX_2BIG = 70, - TP_ERR_NO_PTR_STRCT = 71, - TP_ERR_NOSUP_DAT_ARG = 72, - TP_ERR_BAD_HYPHEN = 73, - TP_ERR_NO_BTF_FIELD = 74, - TP_ERR_BAD_BTF_TID = 75, - TP_ERR_BAD_TYPE4STR = 76, - TP_ERR_NEED_STRING_TYPE = 77, -}; - -struct trace_kprobe { - struct dyn_event devent; - struct kretprobe rp; - long unsigned int *nhit; - const char *symbol; - struct trace_probe tp; -}; - -struct sym_count_ctx { - unsigned int count; - const char *name; -}; - -struct bpf_lpm_trie_key_hdr { - __u32 prefixlen; -}; - -struct bpf_lpm_trie_key_u8 { - union { - struct bpf_lpm_trie_key_hdr hdr; - __u32 prefixlen; - }; - __u8 data[0]; -}; - -struct lpm_trie_node { - struct callback_head rcu; - struct lpm_trie_node *child[2]; - u32 prefixlen; - u32 flags; - u8 data[0]; -}; - -struct lpm_trie { - struct bpf_map map; - struct lpm_trie_node *root; - size_t n_entries; - size_t max_prefixlen; - size_t data_size; - spinlock_t lock; -}; - -struct bpf_dynptr { - __u64 __opaque[2]; -}; - -struct bpf_crypto_type { - void * (*alloc_tfm)(const char *); - void (*free_tfm)(void *); - int (*has_algo)(const char *); - int (*setkey)(void *, const u8 *, unsigned int); - int (*setauthsize)(void *, unsigned int); - int (*encrypt)(void *, const u8 *, u8 *, unsigned int, u8 *); - int (*decrypt)(void *, const u8 *, u8 *, unsigned int, u8 *); - unsigned int (*ivsize)(void *); - unsigned int (*statesize)(void *); - u32 (*get_flags)(void *); - struct module *owner; - char name[14]; -}; - -struct bpf_crypto_type_list { - const struct bpf_crypto_type *type; - struct list_head list; -}; - -struct bpf_crypto_params { - char type[14]; - u8 reserved[2]; - char algo[128]; - u8 key[256]; - u32 key_len; - u32 authsize; -}; - -struct bpf_crypto_ctx { - const struct bpf_crypto_type *type; - void *tfm; - u32 siv_len; - struct callback_head rcu; - refcount_t usage; -}; - -typedef __int128 unsigned __u128; - -typedef __u128 u128; - -typedef struct kmem_cache *kmem_buckets[14]; - -struct kmem_cache_order_objects { - unsigned int x; -}; - -struct kmem_cache_cpu; - -struct kmem_cache_node; - -struct kmem_cache { - struct kmem_cache_cpu *cpu_slab; - slab_flags_t flags; - long unsigned int min_partial; - unsigned int size; - unsigned int object_size; - struct reciprocal_value reciprocal_size; - unsigned int offset; - unsigned int cpu_partial; - unsigned int cpu_partial_slabs; - struct kmem_cache_order_objects oo; - struct kmem_cache_order_objects min; - gfp_t allocflags; - int refcount; - void (*ctor)(void *); - unsigned int inuse; - unsigned int align; - unsigned int red_left_pad; - const char *name; - struct list_head list; - struct kobject kobj; - struct kmem_cache_node *node[1]; -}; - -typedef u128 freelist_full_t; - -typedef union { - struct { - void *freelist; - long unsigned int counter; - }; - freelist_full_t full; -} freelist_aba_t; - -struct slab { - long unsigned int __page_flags; - struct kmem_cache *slab_cache; - union { - struct { - union { - struct list_head slab_list; - struct { - struct slab *next; - int slabs; - }; - }; - union { - struct { - void *freelist; - union { - long unsigned int counters; - struct { - unsigned int inuse: 16; - unsigned int objects: 15; - unsigned int frozen: 1; - }; - }; - }; - freelist_aba_t freelist_counter; - }; - }; - struct callback_head callback_head; - }; - unsigned int __page_type; - atomic_t __page_refcount; - long unsigned int obj_exts; -}; - -enum slab_state { - DOWN = 0, - PARTIAL = 1, - UP = 2, - FULL = 3, -}; - -struct kmalloc_info_struct { - const char *name[4]; - unsigned int size; -}; - -struct slabinfo { - long unsigned int active_objs; - long unsigned int num_objs; - long unsigned int active_slabs; - long unsigned int num_slabs; - long unsigned int shared_avail; - unsigned int limit; - unsigned int batchcount; - unsigned int shared; - unsigned int objects_per_slab; - unsigned int cache_order; -}; - -struct kmem_obj_info { - void *kp_ptr; - struct slab *kp_slab; - void *kp_objp; - long unsigned int kp_data_offset; - struct kmem_cache *kp_slab_cache; - void *kp_ret; - void *kp_stack[16]; - void *kp_free_stack[16]; -}; - -struct trace_event_raw_kmem_cache_alloc { - struct trace_entry ent; - long unsigned int call_site; - const void *ptr; - size_t bytes_req; - size_t bytes_alloc; - long unsigned int gfp_flags; - int node; - bool accounted; - char __data[0]; -}; - -struct trace_event_raw_kmalloc { - struct trace_entry ent; - long unsigned int call_site; - const void *ptr; - size_t bytes_req; - size_t bytes_alloc; - long unsigned int gfp_flags; - int node; - char __data[0]; -}; - -struct trace_event_raw_kfree { - struct trace_entry ent; - long unsigned int call_site; - const void *ptr; - char __data[0]; -}; - -struct trace_event_raw_kmem_cache_free { - struct trace_entry ent; - long unsigned int call_site; - const void *ptr; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_mm_page_free { - struct trace_entry ent; - long unsigned int pfn; - unsigned int order; - char __data[0]; -}; - -struct trace_event_raw_mm_page_free_batched { - struct trace_entry ent; - long unsigned int pfn; - char __data[0]; -}; - -struct trace_event_raw_mm_page_alloc { - struct trace_entry ent; - long unsigned int pfn; - unsigned int order; - long unsigned int gfp_flags; - int migratetype; - char __data[0]; -}; - -struct trace_event_raw_mm_page { - struct trace_entry ent; - long unsigned int pfn; - unsigned int order; - int migratetype; - int percpu_refill; - char __data[0]; -}; - -struct trace_event_raw_mm_page_pcpu_drain { - struct trace_entry ent; - long unsigned int pfn; - unsigned int order; - int migratetype; - char __data[0]; -}; - -struct trace_event_raw_mm_page_alloc_extfrag { - struct trace_entry ent; - long unsigned int pfn; - int alloc_order; - int fallback_order; - int alloc_migratetype; - int fallback_migratetype; - int change_ownership; - char __data[0]; -}; - -struct trace_event_raw_mm_alloc_contig_migrate_range_info { - struct trace_entry ent; - long unsigned int start; - long unsigned int end; - long unsigned int nr_migrated; - long unsigned int nr_reclaimed; - long unsigned int nr_mapped; - int migratetype; - char __data[0]; -}; - -struct trace_event_raw_rss_stat { - struct trace_entry ent; - unsigned int mm_id; - unsigned int curr; - int member; - long int size; - char __data[0]; -}; - -struct trace_event_data_offsets_kmem_cache_alloc {}; - -struct trace_event_data_offsets_kmalloc {}; - -struct trace_event_data_offsets_kfree {}; - -struct trace_event_data_offsets_kmem_cache_free { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_mm_page_free {}; - -struct trace_event_data_offsets_mm_page_free_batched {}; - -struct trace_event_data_offsets_mm_page_alloc {}; - -struct trace_event_data_offsets_mm_page {}; - -struct trace_event_data_offsets_mm_page_pcpu_drain {}; - -struct trace_event_data_offsets_mm_page_alloc_extfrag {}; - -struct trace_event_data_offsets_mm_alloc_contig_migrate_range_info {}; - -struct trace_event_data_offsets_rss_stat {}; - -typedef void (*btf_trace_kmem_cache_alloc)(void *, long unsigned int, const void *, struct kmem_cache *, gfp_t, int); - -typedef void (*btf_trace_kmalloc)(void *, long unsigned int, const void *, size_t, size_t, gfp_t, int); - -typedef void (*btf_trace_kfree)(void *, long unsigned int, const void *); - -typedef void (*btf_trace_kmem_cache_free)(void *, long unsigned int, const void *, const struct kmem_cache *); - -typedef void (*btf_trace_mm_page_free)(void *, struct page *, unsigned int); - -typedef void (*btf_trace_mm_page_free_batched)(void *, struct page *); - -typedef void (*btf_trace_mm_page_alloc)(void *, struct page *, unsigned int, gfp_t, int); - -typedef void (*btf_trace_mm_page_alloc_zone_locked)(void *, struct page *, unsigned int, int, int); - -typedef void (*btf_trace_mm_page_pcpu_drain)(void *, struct page *, unsigned int, int); - -typedef void (*btf_trace_mm_page_alloc_extfrag)(void *, struct page *, int, int, int, int); - -typedef void (*btf_trace_mm_alloc_contig_migrate_range_info)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int); - -typedef void (*btf_trace_rss_stat)(void *, struct mm_struct *, int); - -struct swap_iocb { - struct kiocb iocb; - struct bio_vec bvec[32]; - int pages; - int len; -}; - -enum { - SWP_USED = 1, - SWP_WRITEOK = 2, - SWP_DISCARDABLE = 4, - SWP_DISCARDING = 8, - SWP_SOLIDSTATE = 16, - SWP_CONTINUED = 32, - SWP_BLKDEV = 64, - SWP_ACTIVATED = 128, - SWP_FS_OPS = 256, - SWP_AREA_DISCARD = 512, - SWP_PAGE_DISCARD = 1024, - SWP_STABLE_WRITES = 2048, - SWP_SYNCHRONOUS_IO = 4096, - SWP_SCANNING = 16384, -}; - -typedef unsigned int isolate_mode_t; - -struct movable_operations { - bool (*isolate_page)(struct page *, isolate_mode_t); - int (*migrate_page)(struct page *, struct page *, enum migrate_mode); - void (*putback_page)(struct page *); -}; - -struct balloon_dev_info { - long unsigned int isolated_pages; - spinlock_t pages_lock; - struct list_head pages; - int (*migratepage)(struct balloon_dev_info *, struct page *, struct page *, enum migrate_mode); -}; - -typedef struct { - rwlock_t *lock; -} class_read_lock_t; - -typedef struct { - rwlock_t *lock; -} class_write_lock_t; - -typedef struct rw_semaphore *class_rwsem_read_t; - -struct mount_attr { - __u64 attr_set; - __u64 attr_clr; - __u64 propagation; - __u64 userns_fd; -}; - -struct statmount { - __u32 size; - __u32 mnt_opts; - __u64 mask; - __u32 sb_dev_major; - __u32 sb_dev_minor; - __u64 sb_magic; - __u32 sb_flags; - __u32 fs_type; - __u64 mnt_id; - __u64 mnt_parent_id; - __u32 mnt_id_old; - __u32 mnt_parent_id_old; - __u64 mnt_attr; - __u64 mnt_propagation; - __u64 mnt_peer_group; - __u64 mnt_master; - __u64 propagate_from; - __u32 mnt_root; - __u32 mnt_point; - __u64 mnt_ns_id; - __u64 __spare2[49]; - char str[0]; -}; - -struct mnt_id_req { - __u32 size; - __u32 spare; - __u64 mnt_id; - __u64 param; - __u64 mnt_ns_id; -}; - -struct proc_mounts { - struct mnt_namespace *ns; - struct path root; - int (*show)(struct seq_file *, struct vfsmount *); -}; - -struct mount_kattr { - unsigned int attr_set; - unsigned int attr_clr; - unsigned int propagation; - unsigned int lookup_flags; - bool recurse; - struct user_namespace *mnt_userns; - struct mnt_idmap *mnt_idmap; -}; - -enum umount_tree_flags { - UMOUNT_SYNC = 1, - UMOUNT_PROPAGATE = 2, - UMOUNT_CONNECTED = 4, -}; - -enum mnt_tree_flags_t { - MNT_TREE_MOVE = 1, - MNT_TREE_BENEATH = 2, -}; - -struct kstatmount { - struct statmount *buf; - size_t bufsize; - struct vfsmount *mnt; - u64 mask; - struct path root; - struct statmount sm; - struct seq_file seq; -}; - -struct klistmount { - u64 last_mnt_id; - u64 mnt_parent_id; - u64 *kmnt_ids; - u32 nr_mnt_ids; - struct mnt_namespace *ns; - struct path root; -}; - -enum dentry_d_lock_class { - DENTRY_D_LOCK_NORMAL = 0, - DENTRY_D_LOCK_NESTED = 1, -}; - -struct name_snapshot { - struct qstr name; - unsigned char inline_name[40]; -}; - -struct fs_error_report { - int error; - struct inode *inode; - struct super_block *sb; -}; - -typedef struct fsnotify_mark_connector *fsnotify_connp_t; - -struct fscrypt_context_v1 { - u8 version; - u8 contents_encryption_mode; - u8 filenames_encryption_mode; - u8 flags; - u8 master_key_descriptor[8]; - u8 nonce[16]; -}; - -struct fscrypt_context_v2 { - u8 version; - u8 contents_encryption_mode; - u8 filenames_encryption_mode; - u8 flags; - u8 log2_data_unit_size; - u8 __reserved[3]; - u8 master_key_identifier[16]; - u8 nonce[16]; -}; - -union fscrypt_context { - u8 version; - struct fscrypt_context_v1 v1; - struct fscrypt_context_v2 v2; -}; - -struct posix_acl_xattr_entry { - __le16 e_tag; - __le16 e_perm; - __le32 e_id; -}; - -struct posix_acl_xattr_header { - __le32 a_version; -}; - -typedef struct dentry *instantiate_t(struct dentry *, struct task_struct *, const void *); - -struct fd_data { - fmode_t mode; - unsigned int fd; -}; - -struct sysctl_alias { - const char *kernel_param; - const char *sysctl_param; -}; - -struct netfs_folio { - struct netfs_group *netfs_group; - unsigned int dirty_offset; - unsigned int dirty_len; -}; - -enum netfs_rreq_trace { - netfs_rreq_trace_assess = 0, - netfs_rreq_trace_copy = 1, - netfs_rreq_trace_collect = 2, - netfs_rreq_trace_done = 3, - netfs_rreq_trace_free = 4, - netfs_rreq_trace_redirty = 5, - netfs_rreq_trace_resubmit = 6, - netfs_rreq_trace_set_pause = 7, - netfs_rreq_trace_unlock = 8, - netfs_rreq_trace_unlock_pgpriv2 = 9, - netfs_rreq_trace_unmark = 10, - netfs_rreq_trace_wait_ip = 11, - netfs_rreq_trace_wait_pause = 12, - netfs_rreq_trace_wake_ip = 13, - netfs_rreq_trace_unpause = 14, - netfs_rreq_trace_write_done = 15, -} __attribute__((mode(byte))); - -enum netfs_sreq_trace { - netfs_sreq_trace_add_donations = 0, - netfs_sreq_trace_added = 1, - netfs_sreq_trace_clear = 2, - netfs_sreq_trace_discard = 3, - netfs_sreq_trace_donate_to_prev = 4, - netfs_sreq_trace_donate_to_next = 5, - netfs_sreq_trace_download_instead = 6, - netfs_sreq_trace_fail = 7, - netfs_sreq_trace_free = 8, - netfs_sreq_trace_hit_eof = 9, - netfs_sreq_trace_io_progress = 10, - netfs_sreq_trace_limited = 11, - netfs_sreq_trace_prepare = 12, - netfs_sreq_trace_prep_failed = 13, - netfs_sreq_trace_progress = 14, - netfs_sreq_trace_reprep_failed = 15, - netfs_sreq_trace_retry = 16, - netfs_sreq_trace_short = 17, - netfs_sreq_trace_split = 18, - netfs_sreq_trace_submit = 19, - netfs_sreq_trace_terminated = 20, - netfs_sreq_trace_write = 21, - netfs_sreq_trace_write_skip = 22, - netfs_sreq_trace_write_term = 23, -} __attribute__((mode(byte))); - -enum netfs_failure { - netfs_fail_check_write_begin = 0, - netfs_fail_copy_to_cache = 1, - netfs_fail_dio_read_short = 2, - netfs_fail_dio_read_zero = 3, - netfs_fail_read = 4, - netfs_fail_short_read = 5, - netfs_fail_prepare_write = 6, - netfs_fail_write = 7, -} __attribute__((mode(byte))); - -enum netfs_rreq_ref_trace { - netfs_rreq_trace_get_for_outstanding = 0, - netfs_rreq_trace_get_subreq = 1, - netfs_rreq_trace_get_work = 2, - netfs_rreq_trace_put_complete = 3, - netfs_rreq_trace_put_discard = 4, - netfs_rreq_trace_put_failed = 5, - netfs_rreq_trace_put_no_submit = 6, - netfs_rreq_trace_put_return = 7, - netfs_rreq_trace_put_subreq = 8, - netfs_rreq_trace_put_work = 9, - netfs_rreq_trace_put_work_complete = 10, - netfs_rreq_trace_put_work_nq = 11, - netfs_rreq_trace_see_work = 12, - netfs_rreq_trace_new = 13, -} __attribute__((mode(byte))); - -enum netfs_sreq_ref_trace { - netfs_sreq_trace_get_copy_to_cache = 0, - netfs_sreq_trace_get_resubmit = 1, - netfs_sreq_trace_get_submit = 2, - netfs_sreq_trace_get_short_read = 3, - netfs_sreq_trace_new = 4, - netfs_sreq_trace_put_cancel = 5, - netfs_sreq_trace_put_clear = 6, - netfs_sreq_trace_put_consumed = 7, - netfs_sreq_trace_put_done = 8, - netfs_sreq_trace_put_failed = 9, - netfs_sreq_trace_put_merged = 10, - netfs_sreq_trace_put_no_copy = 11, - netfs_sreq_trace_put_oom = 12, - netfs_sreq_trace_put_wip = 13, - netfs_sreq_trace_put_work = 14, - netfs_sreq_trace_put_terminated = 15, -} __attribute__((mode(byte))); - -enum netfs_folio_trace { - netfs_folio_is_uptodate = 0, - netfs_just_prefetch = 1, - netfs_whole_folio_modify = 2, - netfs_modify_and_clear = 3, - netfs_streaming_write = 4, - netfs_streaming_write_cont = 5, - netfs_flush_content = 6, - netfs_streaming_filled_page = 7, - netfs_streaming_cont_filled_page = 8, - netfs_folio_trace_abandon = 9, - netfs_folio_trace_cancel_copy = 10, - netfs_folio_trace_cancel_store = 11, - netfs_folio_trace_clear = 12, - netfs_folio_trace_clear_cc = 13, - netfs_folio_trace_clear_g = 14, - netfs_folio_trace_clear_s = 15, - netfs_folio_trace_copy_to_cache = 16, - netfs_folio_trace_end_copy = 17, - netfs_folio_trace_filled_gaps = 18, - netfs_folio_trace_kill = 19, - netfs_folio_trace_kill_cc = 20, - netfs_folio_trace_kill_g = 21, - netfs_folio_trace_kill_s = 22, - netfs_folio_trace_mkwrite = 23, - netfs_folio_trace_mkwrite_plus = 24, - netfs_folio_trace_not_under_wback = 25, - netfs_folio_trace_put = 26, - netfs_folio_trace_read = 27, - netfs_folio_trace_read_done = 28, - netfs_folio_trace_read_gaps = 29, - netfs_folio_trace_read_unlock = 30, - netfs_folio_trace_redirtied = 31, - netfs_folio_trace_store = 32, - netfs_folio_trace_store_copy = 33, - netfs_folio_trace_store_plus = 34, - netfs_folio_trace_wthru = 35, - netfs_folio_trace_wthru_plus = 36, -} __attribute__((mode(byte))); - -struct mmp_struct { - __le32 mmp_magic; - __le32 mmp_seq; - __le64 mmp_time; - char mmp_nodename[64]; - char mmp_bdevname[32]; - __le16 mmp_check_interval; - __le16 mmp_pad1; - __le32 mmp_pad2[226]; - __le32 mmp_checksum; -}; - -struct ext4_orphan_block_tail { - __le32 ob_magic; - __le32 ob_checksum; -}; - -enum { - EXT4_STATE_NEW = 0, - EXT4_STATE_XATTR = 1, - EXT4_STATE_NO_EXPAND = 2, - EXT4_STATE_DA_ALLOC_CLOSE = 3, - EXT4_STATE_EXT_MIGRATE = 4, - EXT4_STATE_NEWENTRY = 5, - EXT4_STATE_MAY_INLINE_DATA = 6, - EXT4_STATE_EXT_PRECACHED = 7, - EXT4_STATE_LUSTRE_EA_INODE = 8, - EXT4_STATE_VERITY_IN_PROGRESS = 9, - EXT4_STATE_FC_COMMITTING = 10, - EXT4_STATE_ORPHAN_FILE = 11, -}; - -struct ext4_iloc { - struct buffer_head *bh; - long unsigned int offset; - ext4_group_t block_group; -}; - -typedef enum { - EXT4_IGET_NORMAL = 0, - EXT4_IGET_SPECIAL = 1, - EXT4_IGET_HANDLE = 2, - EXT4_IGET_BAD = 4, - EXT4_IGET_EA_INODE = 8, -} ext4_iget_flags; - -struct meta_entry { - u64 data_block; - unsigned int index_block; - short unsigned int offset; - short unsigned int pad; -}; - -struct meta_index { - unsigned int inode_number; - unsigned int offset; - short unsigned int entries; - short unsigned int skip; - short unsigned int locked; - short unsigned int pad; - struct meta_entry meta_entry[127]; -}; - -struct squashfs_cache_entry; - -struct squashfs_cache { - char *name; - int entries; - int curr_blk; - int next_blk; - int num_waiters; - int unused; - int block_size; - int pages; - spinlock_t lock; - wait_queue_head_t wait_queue; - struct squashfs_cache_entry *entry; -}; - -struct squashfs_page_actor; - -struct squashfs_cache_entry { - u64 block; - int length; - int refcount; - u64 next_index; - int pending; - int error; - int num_waiters; - wait_queue_head_t wait_queue; - struct squashfs_cache *cache; - void **data; - struct squashfs_page_actor *actor; -}; - -struct squashfs_decompressor; - -struct squashfs_decompressor_thread_ops; - -struct squashfs_sb_info { - const struct squashfs_decompressor *decompressor; - int devblksize; - int devblksize_log2; - struct squashfs_cache *block_cache; - struct squashfs_cache *fragment_cache; - struct squashfs_cache *read_page; - struct address_space *cache_mapping; - int next_meta_index; - __le64 *id_table; - __le64 *fragment_index; - __le64 *xattr_id_table; - struct mutex meta_index_mutex; - struct meta_index *meta_index; - void *stream; - __le64 *inode_lookup_table; - u64 inode_table; - u64 directory_table; - u64 xattr_table; - unsigned int block_size; - short unsigned int block_log; - long long int bytes_used; - unsigned int inodes; - unsigned int fragments; - unsigned int xattr_ids; - unsigned int ids; - bool panic_on_errors; - const struct squashfs_decompressor_thread_ops *thread_ops; - int max_thread_num; -}; - -struct squashfs_decompressor { - void * (*init)(struct squashfs_sb_info *, void *); - void * (*comp_opts)(struct squashfs_sb_info *, void *, int); - void (*free)(void *); - int (*decompress)(struct squashfs_sb_info *, void *, struct bio *, int, int, struct squashfs_page_actor *); - int id; - char *name; - int alloc_buffer; - int supported; -}; - -struct squashfs_decompressor_thread_ops { - void * (*create)(struct squashfs_sb_info *, void *); - void (*destroy)(struct squashfs_sb_info *); - int (*decompress)(struct squashfs_sb_info *, struct bio *, int, int, struct squashfs_page_actor *); - int (*max_decompressors)(void); -}; - -struct squashfs_inode_info { - u64 start; - int offset; - u64 xattr; - unsigned int xattr_size; - int xattr_count; - int parent; - union { - struct { - u64 fragment_block; - int fragment_size; - int fragment_offset; - u64 block_list_start; - }; - struct { - u64 dir_idx_start; - int dir_idx_offset; - int dir_idx_cnt; - }; - }; - struct inode vfs_inode; -}; - -struct vm_unmapped_area_info { - long unsigned int flags; - long unsigned int length; - long unsigned int low_limit; - long unsigned int high_limit; - long unsigned int align_mask; - long unsigned int align_offset; - long unsigned int start_gap; -}; - -enum { - HUGETLB_SHMFS_INODE = 1, - HUGETLB_ANONHUGE_INODE = 2, -}; - -struct hugetlbfs_inode_info { - struct inode vfs_inode; - unsigned int seals; -}; - -enum hugetlbfs_size_type { - NO_SIZE = 0, - SIZE_STD = 1, - SIZE_PERCENT = 2, -}; - -struct hugetlbfs_fs_context { - struct hstate *hstate; - long long unsigned int max_size_opt; - long long unsigned int min_size_opt; - long int max_hpages; - long int nr_inodes; - long int min_hpages; - enum hugetlbfs_size_type max_val_type; - enum hugetlbfs_size_type min_val_type; - kuid_t uid; - kgid_t gid; - umode_t mode; -}; - -enum hugetlb_param { - Opt_gid___2 = 0, - Opt_min_size = 1, - Opt_mode = 2, - Opt_nr_inodes = 3, - Opt_pagesize = 4, - Opt_size = 5, - Opt_uid___2 = 6, -}; - -struct exfat_dentry { - __u8 type; - union { - struct { - __u8 num_ext; - __le16 checksum; - __le16 attr; - __le16 reserved1; - __le16 create_time; - __le16 create_date; - __le16 modify_time; - __le16 modify_date; - __le16 access_time; - __le16 access_date; - __u8 create_time_cs; - __u8 modify_time_cs; - __u8 create_tz; - __u8 modify_tz; - __u8 access_tz; - __u8 reserved2[7]; - } __attribute__((packed)) file; - struct { - __u8 flags; - __u8 reserved1; - __u8 name_len; - __le16 name_hash; - __le16 reserved2; - __le64 valid_size; - __le32 reserved3; - __le32 start_clu; - __le64 size; - } __attribute__((packed)) stream; - struct { - __u8 flags; - __le16 unicode_0_14[15]; - } __attribute__((packed)) name; - struct { - __u8 flags; - __u8 reserved[18]; - __le32 start_clu; - __le64 size; - } __attribute__((packed)) bitmap; - struct { - __u8 reserved1[3]; - __le32 checksum; - __u8 reserved2[12]; - __le32 start_clu; - __le64 size; - } __attribute__((packed)) upcase; - struct { - __u8 flags; - __u8 vendor_guid[16]; - __u8 vendor_defined[14]; - } vendor_ext; - struct { - __u8 flags; - __u8 vendor_guid[16]; - __u8 vendor_defined[2]; - __le32 start_clu; - __le64 size; - } __attribute__((packed)) vendor_alloc; - struct { - __u8 flags; - __u8 custom_defined[18]; - __le32 start_clu; - __le64 size; - } __attribute__((packed)) generic_secondary; - } dentry; -}; - -enum { - NFS_IOHDR_ERROR = 0, - NFS_IOHDR_EOF = 1, - NFS_IOHDR_REDO = 2, - NFS_IOHDR_STAT = 3, - NFS_IOHDR_RESEND_PNFS = 4, - NFS_IOHDR_RESEND_MDS = 5, - NFS_IOHDR_UNSTABLE_WRITES = 6, - NFS_IOHDR_ODIRECT = 7, -}; - -enum { - PG_BUSY = 0, - PG_MAPPED = 1, - PG_FOLIO = 2, - PG_CLEAN = 3, - PG_COMMIT_TO_DS = 4, - PG_INODE_REF = 5, - PG_HEADLOCK = 6, - PG_TEARDOWN = 7, - PG_UNLOCKPAGE = 8, - PG_UPTODATE = 9, - PG_WB_END = 10, - PG_REMOVE = 11, - PG_CONTENDED1 = 12, - PG_CONTENDED2 = 13, -}; - -struct rpc_pipe_msg { - struct list_head list; - void *data; - size_t len; - size_t copied; - int errno; -}; - -struct rpc_pipe_ops { - ssize_t (*upcall)(struct file *, struct rpc_pipe_msg *, char *, size_t); - ssize_t (*downcall)(struct file *, const char *, size_t); - void (*release_pipe)(struct inode *); - int (*open_pipe)(struct inode *); - void (*destroy_msg)(struct rpc_pipe_msg *); -}; - -struct rpc_pipe { - struct list_head pipe; - struct list_head in_upcall; - struct list_head in_downcall; - int pipelen; - int nreaders; - int nwriters; - int flags; - struct delayed_work queue_timeout; - const struct rpc_pipe_ops *ops; - spinlock_t lock; - struct dentry *dentry; -}; - -enum nfs4_callback_procnum { - CB_NULL = 0, - CB_COMPOUND = 1, -}; - -struct bl_dev_msg { - int32_t status; - uint32_t major; - uint32_t minor; -}; - -struct nfs_netns_client; - -struct nfs_net { - struct cache_detail *nfs_dns_resolve; - struct rpc_pipe *bl_device_pipe; - struct bl_dev_msg bl_mount_reply; - wait_queue_head_t bl_wq; - struct mutex bl_mutex; - struct list_head nfs_client_list; - struct list_head nfs_volume_list; - struct idr cb_ident_idr; - short unsigned int nfs_callback_tcpport; - short unsigned int nfs_callback_tcpport6; - int cb_users[3]; - struct nfs_netns_client *nfs_client; - spinlock_t nfs_client_lock; - ktime_t boot_time; - struct rpc_stat rpcstats; - struct proc_dir_entry *proc_nfsfs; -}; - -struct nfs_callback_data { - unsigned int users; - struct svc_serv *serv; -}; - -struct pnfs_commit_bucket { - struct list_head written; - struct list_head committing; - struct pnfs_layout_segment *lseg; - struct nfs_writeverf direct_verf; -}; - -struct pnfs_commit_array { - struct list_head cinfo_list; - struct list_head lseg_list; - struct pnfs_layout_segment *lseg; - struct callback_head rcu; - refcount_t refcount; - unsigned int nbuckets; - struct pnfs_commit_bucket buckets[0]; -}; - -struct nfs4_pnfs_ds { - struct list_head ds_node; - char *ds_remotestr; - struct list_head ds_addrs; - const struct net *ds_net; - struct nfs_client *ds_clp; - refcount_t ds_count; - long unsigned int ds_state; -}; - -enum stripetype4 { - STRIPE_SPARSE = 1, - STRIPE_DENSE = 2, -}; - -struct nfs4_file_layout_dsaddr { - struct nfs4_deviceid_node id_node; - u32 stripe_count; - u8 *stripe_indices; - u32 ds_num; - struct nfs4_pnfs_ds *ds_list[0]; -}; - -struct nfs4_filelayout_segment { - struct pnfs_layout_segment generic_hdr; - u32 stripe_type; - u32 commit_through_mds; - u32 stripe_unit; - u32 first_stripe_index; - u64 pattern_offset; - struct nfs4_deviceid deviceid; - struct nfs4_file_layout_dsaddr *dsaddr; - unsigned int num_fh; - struct nfs_fh **fh_array; -}; - -struct nfs4_filelayout { - struct pnfs_layout_hdr generic_hdr; - struct pnfs_ds_commit_info commit_info; -}; - -struct renamedata { - struct mnt_idmap *old_mnt_idmap; - struct inode *old_dir; - struct dentry *old_dentry; - struct mnt_idmap *new_mnt_idmap; - struct inode *new_dir; - struct dentry *new_dentry; - struct inode **delegated_inode; - unsigned int flags; -}; - -struct splice_desc { - size_t total_len; - unsigned int len; - unsigned int flags; - union { - void *userptr; - struct file *file; - void *data; - } u; - void (*splice_eof)(struct splice_desc *); - loff_t pos; - loff_t *opos; - size_t num_spliced; - bool need_wakeup; -}; - -typedef int splice_actor(struct pipe_inode_info *, struct pipe_buffer *, struct splice_desc *); - -typedef int splice_direct_actor(struct pipe_inode_info *, struct splice_desc *); - -struct readdir_cd { - __be32 err; -}; - -struct nfsd4_compound_state { - struct svc_fh current_fh; - struct svc_fh save_fh; - struct nfs4_stateowner *replay_owner; - struct nfs4_client *clp; - struct nfsd4_session *session; - struct nfsd4_slot *slot; - int data_offset; - bool spo_must_allowed; - size_t iovlen; - u32 minorversion; - __be32 status; - stateid_t current_stateid; - stateid_t save_stateid; - u32 sid_flags; -}; - -struct nfsd4_compoundres { - struct xdr_stream *xdr; - struct svc_rqst *rqstp; - __be32 *statusp; - char *tag; - u32 taglen; - u32 opcnt; - struct nfsd4_compound_state cstate; -}; - -typedef int (*nfsd_filldir_t)(void *, const char *, int, loff_t, u64, unsigned int); - -struct accessmap { - u32 access; - int how; -}; - -struct buffered_dirent { - u64 ino; - loff_t offset; - int namlen; - unsigned int d_type; - char name[0]; -}; - -struct readdir_data { - struct dir_context ctx; - char *dirent; - size_t used; - int full; -}; - -struct nlm_reboot { - char *mon; - unsigned int len; - u32 state; - struct nsm_private priv; -}; - -struct lockd_net { - unsigned int nlmsvc_users; - long unsigned int next_gc; - long unsigned int nrhosts; - struct delayed_work grace_period_end; - struct lock_manager lockd_manager; - struct list_head nsm_handles; -}; - -struct nlm_lookup_host_info { - const int server; - const struct sockaddr *sap; - const size_t salen; - const short unsigned int protocol; - const u32 version; - const char *hostname; - const size_t hostname_len; - const int noresvport; - struct net *net; - const struct cred *cred; -}; - -typedef u32 unicode_t; - -struct utf8_table { - int cmask; - int cval; - int shift; - long int lmask; - long int lval; -}; - -struct smb_hdr { - __be32 smb_buf_length; - __u8 Protocol[4]; - __u8 Command; - union { - struct { - __u8 ErrorClass; - __u8 Reserved; - __le16 Error; - } DosError; - __le32 CifsError; - } Status; - __u8 Flags; - __le16 Flags2; - __le16 PidHigh; - union { - struct { - __le32 SequenceNumber; - __u32 Reserved; - } Sequence; - __u8 SecuritySignature[8]; - } Signature; - __u8 pad[2]; - __u16 Tid; - __le16 Pid; - __u16 Uid; - __le16 Mid; - __u8 WordCount; -} __attribute__((packed)); - -struct locking_andx_range { - __le16 Pid; - __le16 Pad; - __le32 OffsetHigh; - __le32 OffsetLow; - __le32 LengthHigh; - __le32 LengthLow; -}; - -typedef struct locking_andx_range LOCKING_ANDX_RANGE; - -struct smb_com_lock_req { - struct smb_hdr hdr; - __u8 AndXCommand; - __u8 AndXReserved; - __le16 AndXOffset; - __u16 Fid; - __u8 LockType; - __u8 OplockLevel; - __le32 Timeout; - __le16 NumberOfUnlocks; - __le16 NumberOfLocks; - __le16 ByteCount; - LOCKING_ANDX_RANGE Locks[0]; -} __attribute__((packed)); - -struct smb_com_transaction_change_notify_rsp { - struct smb_hdr hdr; - __u8 Reserved[3]; - __le32 TotalParameterCount; - __le32 TotalDataCount; - __le32 ParameterCount; - __le32 ParameterOffset; - __le32 ParameterDisplacement; - __le32 DataCount; - __le32 DataOffset; - __le32 DataDisplacement; - __u8 SetupCount; - __u16 ByteCount; -} __attribute__((packed)); - -struct file_notify_information { - __le32 NextEntryOffset; - __le32 Action; - __le32 FileNameLength; - __u8 FileName[0]; -}; - -struct dfs_referral_level_3 { - __le16 VersionNumber; - __le16 Size; - __le16 ServerType; - __le16 ReferralEntryFlags; - __le32 TimeToLive; - __le16 DfsPathOffset; - __le16 DfsAlternatePathOffset; - __le16 NetworkAddressOffset; - __u8 ServiceSiteGuid[16]; -} __attribute__((packed)); - -typedef struct dfs_referral_level_3 REFERRAL3; - -struct get_dfs_referral_rsp { - __le16 PathConsumed; - __le16 NumberOfReferrals; - __le32 DFSFlags; - REFERRAL3 referrals[0]; -}; - -struct cifs_deferred_close { - struct list_head dlist; - struct tcon_link *tlink; - __u16 netfid; - __u64 persistent_fid; - __u64 volatile_fid; -}; - -struct file_list { - struct list_head list; - struct cifsFileInfo *cfile; -}; - -enum smb3_tcon_ref_trace { - netfs_trace_tcon_ref_dec_dfs_refer = 0, - netfs_trace_tcon_ref_free = 1, - netfs_trace_tcon_ref_free_fail = 2, - netfs_trace_tcon_ref_free_ipc = 3, - netfs_trace_tcon_ref_free_ipc_fail = 4, - netfs_trace_tcon_ref_free_reconnect_server = 5, - netfs_trace_tcon_ref_get_cached_laundromat = 6, - netfs_trace_tcon_ref_get_cached_lease_break = 7, - netfs_trace_tcon_ref_get_cancelled_close = 8, - netfs_trace_tcon_ref_get_dfs_refer = 9, - netfs_trace_tcon_ref_get_find = 10, - netfs_trace_tcon_ref_get_find_sess_tcon = 11, - netfs_trace_tcon_ref_get_reconnect_server = 12, - netfs_trace_tcon_ref_new = 13, - netfs_trace_tcon_ref_new_ipc = 14, - netfs_trace_tcon_ref_new_reconnect_server = 15, - netfs_trace_tcon_ref_put_cached_close = 16, - netfs_trace_tcon_ref_put_cancelled_close = 17, - netfs_trace_tcon_ref_put_cancelled_close_fid = 18, - netfs_trace_tcon_ref_put_cancelled_mid = 19, - netfs_trace_tcon_ref_put_mnt_ctx = 20, - netfs_trace_tcon_ref_put_reconnect_server = 21, - netfs_trace_tcon_ref_put_tlink = 22, - netfs_trace_tcon_ref_see_cancelled_close = 23, - netfs_trace_tcon_ref_see_fscache_collision = 24, - netfs_trace_tcon_ref_see_fscache_okay = 25, - netfs_trace_tcon_ref_see_fscache_relinq = 26, - netfs_trace_tcon_ref_see_umount = 27, -} __attribute__((mode(byte))); - -struct super_cb_data { - void *data; - struct super_block *sb; -}; - -enum smb_version { - Smb_1 = 1, - Smb_20 = 2, - Smb_21 = 3, - Smb_30 = 4, - Smb_302 = 5, - Smb_311 = 6, - Smb_3any = 7, - Smb_default = 8, - Smb_version_err = 9, -}; - -enum { - Opt_cache_loose = 0, - Opt_cache_strict = 1, - Opt_cache_none = 2, - Opt_cache_ro = 3, - Opt_cache_rw = 4, - Opt_cache_err = 5, -}; - -enum cifs_reparse_parm { - Opt_reparse_default = 0, - Opt_reparse_nfs = 1, - Opt_reparse_wsl = 2, - Opt_reparse_err = 3, -}; - -enum cifs_sec_param { - Opt_sec_krb5 = 0, - Opt_sec_krb5i = 1, - Opt_sec_krb5p = 2, - Opt_sec_ntlmsspi = 3, - Opt_sec_ntlmssp = 4, - Opt_sec_ntlmv2 = 5, - Opt_sec_ntlmv2i = 6, - Opt_sec_none = 7, - Opt_sec_err = 8, -}; - -enum cifs_upcall_target_param { - Opt_upcall_target_mount = 0, - Opt_upcall_target_application = 1, - Opt_upcall_target_err = 2, -}; - -enum cifs_param { - Opt_user_xattr = 0, - Opt_forceuid = 1, - Opt_forcegid = 2, - Opt_noblocksend = 3, - Opt_noautotune = 4, - Opt_nolease = 5, - Opt_nosparse = 6, - Opt_hard = 7, - Opt_soft = 8, - Opt_perm = 9, - Opt_nodelete = 10, - Opt_mapposix = 11, - Opt_mapchars = 12, - Opt_nomapchars = 13, - Opt_sfu = 14, - Opt_nodfs = 15, - Opt_posixpaths = 16, - Opt_unix = 17, - Opt_nocase___2 = 18, - Opt_brl = 19, - Opt_handlecache = 20, - Opt_forcemandatorylock = 21, - Opt_setuidfromacl = 22, - Opt_setuids = 23, - Opt_dynperm = 24, - Opt_intr = 25, - Opt_strictsync = 26, - Opt_serverino = 27, - Opt_rwpidforward = 28, - Opt_cifsacl = 29, - Opt_acl = 30, - Opt_locallease = 31, - Opt_sign = 32, - Opt_ignore_signature = 33, - Opt_seal = 34, - Opt_noac = 35, - Opt_fsc = 36, - Opt_mfsymlinks = 37, - Opt_multiuser = 38, - Opt_sloppy = 39, - Opt_nosharesock = 40, - Opt_persistent = 41, - Opt_resilient = 42, - Opt_tcp_nodelay = 43, - Opt_domainauto = 44, - Opt_rdma = 45, - Opt_modesid = 46, - Opt_rootfs = 47, - Opt_multichannel = 48, - Opt_compress = 49, - Opt_witness = 50, - Opt_is_upcall_target_mount = 51, - Opt_is_upcall_target_application = 52, - Opt_backupuid = 53, - Opt_backupgid = 54, - Opt_uid___3 = 55, - Opt_cruid = 56, - Opt_gid___3 = 57, - Opt_port___2 = 58, - Opt_file_mode = 59, - Opt_dirmode = 60, - Opt_min_enc_offload = 61, - Opt_retrans = 62, - Opt_blocksize = 63, - Opt_rasize = 64, - Opt_rsize = 65, - Opt_wsize = 66, - Opt_actimeo = 67, - Opt_acdirmax = 68, - Opt_acregmax = 69, - Opt_closetimeo = 70, - Opt_echo_interval = 71, - Opt_max_credits = 72, - Opt_max_cached_dirs = 73, - Opt_snapshot = 74, - Opt_max_channels = 75, - Opt_handletimeout = 76, - Opt_source = 77, - Opt_user = 78, - Opt_pass = 79, - Opt_pass2 = 80, - Opt_ip = 81, - Opt_domain = 82, - Opt_srcaddr = 83, - Opt_iocharset = 84, - Opt_netbiosname = 85, - Opt_servern = 86, - Opt_ver = 87, - Opt_vers = 88, - Opt_sec = 89, - Opt_cache = 90, - Opt_reparse = 91, - Opt_upcalltarget = 92, - Opt_ignore = 93, - Opt_err___2 = 94, -}; - -struct args_protover { - __u32 version; -}; - -struct args_protosubver { - __u32 sub_version; -}; - -struct args_openmount { - __u32 devid; -}; - -struct args_ready { - __u32 token; -}; - -struct args_fail { - __u32 token; - __s32 status; -}; - -struct args_setpipefd { - __s32 pipefd; -}; - -struct args_timeout { - __u64 timeout; -}; - -struct args_requester { - __u32 uid; - __u32 gid; -}; - -struct args_expire { - __u32 how; -}; - -struct args_askumount { - __u32 may_umount; -}; - -struct args_in { - __u32 type; -}; - -struct args_out { - __u32 devid; - __u32 magic; -}; - -struct args_ismountpoint { - union { - struct args_in in; - struct args_out out; - }; -}; - -struct autofs_dev_ioctl { - __u32 ver_major; - __u32 ver_minor; - __u32 size; - __s32 ioctlfd; - union { - struct args_protover protover; - struct args_protosubver protosubver; - struct args_openmount openmount; - struct args_ready ready; - struct args_fail fail; - struct args_setpipefd setpipefd; - struct args_timeout timeout; - struct args_requester requester; - struct args_expire expire; - struct args_askumount askumount; - struct args_ismountpoint ismountpoint; - }; - char path[0]; -}; - -enum { - AUTOFS_DEV_IOCTL_VERSION_CMD = 113, - AUTOFS_DEV_IOCTL_PROTOVER_CMD = 114, - AUTOFS_DEV_IOCTL_PROTOSUBVER_CMD = 115, - AUTOFS_DEV_IOCTL_OPENMOUNT_CMD = 116, - AUTOFS_DEV_IOCTL_CLOSEMOUNT_CMD = 117, - AUTOFS_DEV_IOCTL_READY_CMD = 118, - AUTOFS_DEV_IOCTL_FAIL_CMD = 119, - AUTOFS_DEV_IOCTL_SETPIPEFD_CMD = 120, - AUTOFS_DEV_IOCTL_CATATONIC_CMD = 121, - AUTOFS_DEV_IOCTL_TIMEOUT_CMD = 122, - AUTOFS_DEV_IOCTL_REQUESTER_CMD = 123, - AUTOFS_DEV_IOCTL_EXPIRE_CMD = 124, - AUTOFS_DEV_IOCTL_ASKUMOUNT_CMD = 125, - AUTOFS_DEV_IOCTL_ISMOUNTPOINT_CMD = 126, -}; - -typedef int (*ioctl_fn___2)(struct file *, struct autofs_sb_info *, struct autofs_dev_ioctl *); - -enum { - OVL_REDIRECT_OFF = 0, - OVL_REDIRECT_FOLLOW = 1, - OVL_REDIRECT_NOFOLLOW = 2, - OVL_REDIRECT_ON = 3, -}; - -enum { - OVL_UUID_OFF = 0, - OVL_UUID_NULL = 1, - OVL_UUID_AUTO = 2, - OVL_UUID_ON = 3, -}; - -enum { - OVL_XINO_OFF = 0, - OVL_XINO_AUTO = 1, - OVL_XINO_ON = 2, -}; - -enum { - OVL_VERITY_OFF = 0, - OVL_VERITY_ON = 1, - OVL_VERITY_REQUIRE = 2, -}; - -struct ovl_opt_set { - bool metacopy; - bool redirect; - bool nfs_export; - bool index; -}; - -struct ovl_fs_context_layer { - char *name; - struct path path; -}; - -struct ovl_fs_context { - struct path upper; - struct path work; - size_t capacity; - size_t nr; - size_t nr_data; - struct ovl_opt_set set; - struct ovl_fs_context_layer *lower; - char *lowerdir_all; -}; - -enum ovl_opt { - Opt_lowerdir = 0, - Opt_lowerdir_add = 1, - Opt_datadir_add = 2, - Opt_upperdir = 3, - Opt_workdir = 4, - Opt_default_permissions = 5, - Opt_redirect_dir = 6, - Opt_index = 7, - Opt_uuid = 8, - Opt_nfs_export = 9, - Opt_userxattr = 10, - Opt_xino = 11, - Opt_metacopy = 12, - Opt_verity = 13, - Opt_volatile = 14, -}; - -struct timestamp { - __le16 typeAndTimezone; - __le16 year; - uint8_t month; - uint8_t day; - uint8_t hour; - uint8_t minute; - uint8_t second; - uint8_t centiseconds; - uint8_t hundredsOfMicroseconds; - uint8_t microseconds; -}; - -struct timezone { - int tz_minuteswest; - int tz_dsttime; -}; - -struct xbtree_ifakeroot { - struct xfs_ifork *if_fork; - int64_t if_blocks; - unsigned int if_levels; - unsigned int if_fork_size; -}; - -struct xbtree_afakeroot { - xfs_agblock_t af_root; - unsigned int af_levels; - unsigned int af_blocks; -}; - -typedef int (*xfs_btree_bload_get_records_fn)(struct xfs_btree_cur *, unsigned int, struct xfs_btree_block *, unsigned int, void *); - -typedef int (*xfs_btree_bload_claim_block_fn)(struct xfs_btree_cur *, union xfs_btree_ptr *, void *); - -typedef size_t (*xfs_btree_bload_iroot_size_fn)(struct xfs_btree_cur *, unsigned int, unsigned int, void *); - -struct xfs_btree_bload { - xfs_btree_bload_get_records_fn get_records; - xfs_btree_bload_claim_block_fn claim_block; - xfs_btree_bload_iroot_size_fn iroot_size; - uint64_t nr_records; - int leaf_slack; - int node_slack; - uint64_t nr_blocks; - unsigned int btree_height; - uint16_t max_dirty; - uint16_t nr_dirty; -}; - -struct xfs_exchmaps_intent { - struct list_head xmi_list; - struct xfs_inode *xmi_ip1; - struct xfs_inode *xmi_ip2; - xfs_fileoff_t xmi_startoff1; - xfs_fileoff_t xmi_startoff2; - xfs_filblks_t xmi_blockcount; - xfs_fsize_t xmi_isize1; - xfs_fsize_t xmi_isize2; - uint64_t xmi_flags; -}; - -struct xfs_dir2_sf_hdr { - uint8_t count; - uint8_t i8count; - uint8_t parent[8]; -}; - -typedef struct xfs_dir2_sf_hdr xfs_dir2_sf_hdr_t; - -enum xfs_dir2_fmt { - XFS_DIR2_FMT_SF = 0, - XFS_DIR2_FMT_BLOCK = 1, - XFS_DIR2_FMT_LEAF = 2, - XFS_DIR2_FMT_NODE = 3, - XFS_DIR2_FMT_ERROR = 4, -}; - -struct xfs_exchmaps_adjacent { - struct xfs_bmbt_irec left1; - struct xfs_bmbt_irec right1; - struct xfs_bmbt_irec left2; - struct xfs_bmbt_irec right2; -}; - -typedef int (*xfs_rmap_query_range_fn)(struct xfs_btree_cur *, const struct xfs_rmap_irec *, void *); - -enum xfs_rmap_intent_type { - XFS_RMAP_MAP = 0, - XFS_RMAP_MAP_SHARED = 1, - XFS_RMAP_UNMAP = 2, - XFS_RMAP_UNMAP_SHARED = 3, - XFS_RMAP_CONVERT = 4, - XFS_RMAP_CONVERT_SHARED = 5, - XFS_RMAP_ALLOC = 6, - XFS_RMAP_FREE = 7, -}; - -struct xfs_rmap_intent { - struct list_head ri_list; - enum xfs_rmap_intent_type ri_type; - int ri_whichfork; - uint64_t ri_owner; - struct xfs_bmbt_irec ri_bmap; - struct xfs_perag *ri_pag; -}; - -struct xfs_rmap_matches { - long long unsigned int matches; - long long unsigned int non_owner_matches; - long long unsigned int bad_non_owner_matches; -}; - -struct xfs_find_left_neighbor_info { - struct xfs_rmap_irec high; - struct xfs_rmap_irec *irec; -}; - -struct xfs_rmap_query_range_info { - xfs_rmap_query_range_fn fn; - void *priv; -}; - -struct xfs_rmap_ownercount { - struct xfs_rmap_irec good; - struct xfs_rmap_irec low; - struct xfs_rmap_irec high; - struct xfs_rmap_matches *results; - bool stop_on_nonmatch; -}; - -struct xfs_dir2_sf_entry { - __u8 namelen; - __u8 offset[2]; - __u8 name[0]; -}; - -typedef struct xfs_dir2_sf_entry xfs_dir2_sf_entry_t; - -typedef struct xfs_inobt_rec_incore xfs_inobt_rec_incore_t; - -typedef int (*xfs_iwalk_fn)(struct xfs_mount *, struct xfs_trans *, xfs_ino_t, void *); - -typedef int (*xfs_inobt_walk_fn)(struct xfs_mount *, struct xfs_trans *, xfs_agnumber_t, const struct xfs_inobt_rec_incore *, void *); - -struct xfs_pwork; - -typedef int (*xfs_pwork_work_fn)(struct xfs_mount *, struct xfs_pwork *); - -struct xfs_pwork_ctl; - -struct xfs_pwork { - struct work_struct work; - struct xfs_pwork_ctl *pctl; -}; - -struct xfs_pwork_ctl { - struct workqueue_struct *wq; - struct xfs_mount *mp; - xfs_pwork_work_fn work_fn; - struct wait_queue_head poll_wait; - atomic_t nr_work; - int error; -}; - -struct xfs_iwalk_ag { - struct xfs_pwork pwork; - struct xfs_mount *mp; - struct xfs_trans *tp; - struct xfs_perag *pag; - xfs_ino_t startino; - xfs_ino_t lastino; - struct xfs_inobt_rec_incore *recs; - unsigned int sz_recs; - unsigned int nr_recs; - xfs_iwalk_fn iwalk_fn; - xfs_inobt_walk_fn inobt_walk_fn; - void *data; - unsigned int trim_start: 1; - unsigned int skip_empty: 1; - unsigned int drop_trans: 1; -}; - -struct xfs_xmi_log_format { - uint16_t xmi_type; - uint16_t xmi_size; - uint32_t __pad; - uint64_t xmi_id; - uint64_t xmi_inode1; - uint64_t xmi_inode2; - uint32_t xmi_igen1; - uint32_t xmi_igen2; - uint64_t xmi_startoff1; - uint64_t xmi_startoff2; - uint64_t xmi_blockcount; - uint64_t xmi_flags; - uint64_t xmi_isize1; - uint64_t xmi_isize2; -}; - -struct xfs_xmd_log_format { - uint16_t xmd_type; - uint16_t xmd_size; - uint32_t __pad; - uint64_t xmd_xmi_id; -}; - -struct xfs_xmi_log_item { - struct xfs_log_item xmi_item; - atomic_t xmi_refcount; - struct xfs_xmi_log_format xmi_format; -}; - -struct xfs_xmd_log_item { - struct xfs_log_item xmd_item; - struct xfs_xmi_log_item *xmd_intent_log_item; - struct xfs_xmd_log_format xmd_format; -}; - -enum cachefiles_obj_ref_trace { - cachefiles_obj_get_ioreq = 0, - cachefiles_obj_new = 1, - cachefiles_obj_put_alloc_fail = 2, - cachefiles_obj_put_detach = 3, - cachefiles_obj_put_ioreq = 4, - cachefiles_obj_see_clean_commit = 5, - cachefiles_obj_see_clean_delete = 6, - cachefiles_obj_see_clean_drop_tmp = 7, - cachefiles_obj_see_lookup_cookie = 8, - cachefiles_obj_see_lookup_failed = 9, - cachefiles_obj_see_withdraw_cookie = 10, - cachefiles_obj_see_withdrawal = 11, - cachefiles_obj_get_ondemand_fd = 12, - cachefiles_obj_put_ondemand_fd = 13, - cachefiles_obj_get_read_req = 14, - cachefiles_obj_put_read_req = 15, -}; - -enum cachefiles_prepare_read_trace { - cachefiles_trace_read_after_eof = 0, - cachefiles_trace_read_found_hole = 1, - cachefiles_trace_read_found_part = 2, - cachefiles_trace_read_have_data = 3, - cachefiles_trace_read_no_data = 4, - cachefiles_trace_read_no_file = 5, - cachefiles_trace_read_seek_error = 6, - cachefiles_trace_read_seek_nxio = 7, -}; - -enum cachefiles_error_trace { - cachefiles_trace_fallocate_error = 0, - cachefiles_trace_getxattr_error = 1, - cachefiles_trace_link_error = 2, - cachefiles_trace_lookup_error = 3, - cachefiles_trace_mkdir_error = 4, - cachefiles_trace_notify_change_error = 5, - cachefiles_trace_open_error = 6, - cachefiles_trace_read_error = 7, - cachefiles_trace_remxattr_error = 8, - cachefiles_trace_rename_error = 9, - cachefiles_trace_seek_error = 10, - cachefiles_trace_setxattr_error = 11, - cachefiles_trace_statfs_error = 12, - cachefiles_trace_tmpfile_error = 13, - cachefiles_trace_trunc_error = 14, - cachefiles_trace_unlink_error = 15, - cachefiles_trace_write_error = 16, -}; - -struct cachefiles_kiocb { - struct kiocb iocb; - refcount_t ki_refcnt; - loff_t start; - union { - size_t skipped; - size_t len; - }; - struct cachefiles_object *object; - netfs_io_terminated_t term_func; - void *term_func_priv; - bool was_async; - unsigned int inval_counter; - u64 b_writing; -}; - -enum { - IO_TREE_FS_PINNED_EXTENTS = 0, - IO_TREE_FS_EXCLUDED_EXTENTS = 1, - IO_TREE_BTREE_INODE_IO = 2, - IO_TREE_INODE_IO = 3, - IO_TREE_RELOC_BLOCKS = 4, - IO_TREE_TRANS_DIRTY_PAGES = 5, - IO_TREE_ROOT_DIRTY_LOG_PAGES = 6, - IO_TREE_INODE_FILE_EXTENT = 7, - IO_TREE_LOG_CSUM_RANGE = 8, - IO_TREE_SELFTEST = 9, - IO_TREE_DEVICE_ALLOC_STATE = 10, -}; - -enum btrfs_delayed_ref_flags { - BTRFS_DELAYED_REFS_FLUSHING = 0, -}; - -enum { - ____TRANS_FREEZABLE_BIT = 0, - __TRANS_FREEZABLE = 1, - ____TRANS_FREEZABLE_SEQ = 0, - ____TRANS_START_BIT = 1, - __TRANS_START = 2, - ____TRANS_START_SEQ = 1, - ____TRANS_ATTACH_BIT = 2, - __TRANS_ATTACH = 4, - ____TRANS_ATTACH_SEQ = 2, - ____TRANS_JOIN_BIT = 3, - __TRANS_JOIN = 8, - ____TRANS_JOIN_SEQ = 3, - ____TRANS_JOIN_NOLOCK_BIT = 4, - __TRANS_JOIN_NOLOCK = 16, - ____TRANS_JOIN_NOLOCK_SEQ = 4, - ____TRANS_DUMMY_BIT = 5, - __TRANS_DUMMY = 32, - ____TRANS_DUMMY_SEQ = 5, - ____TRANS_JOIN_NOSTART_BIT = 6, - __TRANS_JOIN_NOSTART = 64, - ____TRANS_JOIN_NOSTART_SEQ = 6, -}; - -enum btrfs_qgroup_mode { - BTRFS_QGROUP_MODE_DISABLED = 0, - BTRFS_QGROUP_MODE_FULL = 1, - BTRFS_QGROUP_MODE_SIMPLE = 2, -}; - -typedef enum { - ZSTDcs_created = 0, - ZSTDcs_init = 1, - ZSTDcs_ongoing = 2, - ZSTDcs_ending = 3, -} ZSTD_compressionStage_e; - -typedef enum { - ZSTD_f_zstd1 = 0, - ZSTD_f_zstd1_magicless = 1, -} ZSTD_format_e; - -typedef enum { - ZSTD_fast = 1, - ZSTD_dfast = 2, - ZSTD_greedy = 3, - ZSTD_lazy = 4, - ZSTD_lazy2 = 5, - ZSTD_btlazy2 = 6, - ZSTD_btopt = 7, - ZSTD_btultra = 8, - ZSTD_btultra2 = 9, -} ZSTD_strategy; - -typedef struct { - unsigned int windowLog; - unsigned int chainLog; - unsigned int hashLog; - unsigned int searchLog; - unsigned int minMatch; - unsigned int targetLength; - ZSTD_strategy strategy; -} ZSTD_compressionParameters; - -typedef struct { - int contentSizeFlag; - int checksumFlag; - int noDictIDFlag; -} ZSTD_frameParameters; - -typedef enum { - ZSTD_dictDefaultAttach = 0, - ZSTD_dictForceAttach = 1, - ZSTD_dictForceCopy = 2, - ZSTD_dictForceLoad = 3, -} ZSTD_dictAttachPref_e; - -typedef enum { - ZSTD_ps_auto = 0, - ZSTD_ps_enable = 1, - ZSTD_ps_disable = 2, -} ZSTD_paramSwitch_e; - -typedef struct { - ZSTD_paramSwitch_e enableLdm; - U32 hashLog; - U32 bucketSizeLog; - U32 minMatchLength; - U32 hashRateLog; - U32 windowLog; -} ldmParams_t; - -typedef enum { - ZSTD_bm_buffered = 0, - ZSTD_bm_stable = 1, -} ZSTD_bufferMode_e; - -typedef enum { - ZSTD_sf_noBlockDelimiters = 0, - ZSTD_sf_explicitBlockDelimiters = 1, -} ZSTD_sequenceFormat_e; - -struct ZSTD_CCtx_params_s { - ZSTD_format_e format; - ZSTD_compressionParameters cParams; - ZSTD_frameParameters fParams; - int compressionLevel; - int forceWindow; - size_t targetCBlockSize; - int srcSizeHint; - ZSTD_dictAttachPref_e attachDictPref; - ZSTD_paramSwitch_e literalCompressionMode; - int nbWorkers; - size_t jobSize; - int overlapLog; - int rsyncable; - ldmParams_t ldmParams; - int enableDedicatedDictSearch; - ZSTD_bufferMode_e inBufferMode; - ZSTD_bufferMode_e outBufferMode; - ZSTD_sequenceFormat_e blockDelimiters; - int validateSequences; - ZSTD_paramSwitch_e useBlockSplitter; - ZSTD_paramSwitch_e useRowMatchFinder; - int deterministicRefPrefix; - ZSTD_customMem customMem; -}; - -typedef struct ZSTD_CCtx_params_s ZSTD_CCtx_params; - -typedef enum { - ZSTD_cwksp_alloc_objects = 0, - ZSTD_cwksp_alloc_buffers = 1, - ZSTD_cwksp_alloc_aligned = 2, -} ZSTD_cwksp_alloc_phase_e; - -typedef enum { - ZSTD_cwksp_dynamic_alloc = 0, - ZSTD_cwksp_static_alloc = 1, -} ZSTD_cwksp_static_alloc_e; - -typedef struct { - void *workspace; - void *workspaceEnd; - void *objectEnd; - void *tableEnd; - void *tableValidEnd; - void *allocStart; - BYTE allocFailed; - int workspaceOversizedDuration; - ZSTD_cwksp_alloc_phase_e phase; - ZSTD_cwksp_static_alloc_e isStatic; -} ZSTD_cwksp; - -struct POOL_ctx_s; - -typedef struct POOL_ctx_s ZSTD_threadPool; - -typedef struct { - unsigned int offset; - unsigned int litLength; - unsigned int matchLength; - unsigned int rep; -} ZSTD_Sequence; - -typedef struct { - int collectSequences; - ZSTD_Sequence *seqStart; - size_t seqIndex; - size_t maxSequences; -} SeqCollector; - -typedef enum { - ZSTD_llt_none = 0, - ZSTD_llt_literalLength = 1, - ZSTD_llt_matchLength = 2, -} ZSTD_longLengthType_e; - -struct seqDef_s; - -typedef struct seqDef_s seqDef; - -typedef struct { - seqDef *sequencesStart; - seqDef *sequences; - BYTE *litStart; - BYTE *lit; - BYTE *llCode; - BYTE *mlCode; - BYTE *ofCode; - size_t maxNbSeq; - size_t maxNbLit; - ZSTD_longLengthType_e longLengthType; - U32 longLengthPos; -} seqStore_t; - -typedef struct { - const BYTE *nextSrc; - const BYTE *base; - const BYTE *dictBase; - U32 dictLimit; - U32 lowLimit; - U32 nbOverflowCorrections; -} ZSTD_window_t; - -typedef struct { - U32 offset; - U32 checksum; -} ldmEntry_t; - -typedef struct { - const BYTE *split; - U32 hash; - U32 checksum; - ldmEntry_t *bucket; -} ldmMatchCandidate_t; - -typedef struct { - ZSTD_window_t window; - ldmEntry_t *hashTable; - U32 loadedDictEnd; - BYTE *bucketOffsets; - size_t splitIndices[64]; - ldmMatchCandidate_t matchCandidates[64]; -} ldmState_t; - -typedef struct { - U32 offset; - U32 litLength; - U32 matchLength; -} rawSeq; - -typedef struct { - rawSeq *seq; - size_t pos; - size_t posInSequence; - size_t size; - size_t capacity; -} rawSeqStore_t; - -typedef size_t HUF_CElt; - -typedef enum { - HUF_repeat_none = 0, - HUF_repeat_check = 1, - HUF_repeat_valid = 2, -} HUF_repeat; - -typedef struct { - HUF_CElt CTable[257]; - HUF_repeat repeatMode; -} ZSTD_hufCTables_t; - -typedef unsigned int FSE_CTable; - -typedef enum { - FSE_repeat_none = 0, - FSE_repeat_check = 1, - FSE_repeat_valid = 2, -} FSE_repeat; - -typedef struct { - FSE_CTable offcodeCTable[193]; - FSE_CTable matchlengthCTable[363]; - FSE_CTable litlengthCTable[329]; - FSE_repeat offcode_repeatMode; - FSE_repeat matchlength_repeatMode; - FSE_repeat litlength_repeatMode; -} ZSTD_fseCTables_t; - -typedef struct { - ZSTD_hufCTables_t huf; - ZSTD_fseCTables_t fse; -} ZSTD_entropyCTables_t; - -typedef struct { - ZSTD_entropyCTables_t entropy; - U32 rep[3]; -} ZSTD_compressedBlockState_t; - -typedef struct { - U32 off; - U32 len; -} ZSTD_match_t; - -typedef struct { - int price; - U32 off; - U32 mlen; - U32 litlen; - U32 rep[3]; -} ZSTD_optimal_t; - -typedef enum { - zop_dynamic = 0, - zop_predef = 1, -} ZSTD_OptPrice_e; - -typedef struct { - unsigned int *litFreq; - unsigned int *litLengthFreq; - unsigned int *matchLengthFreq; - unsigned int *offCodeFreq; - ZSTD_match_t *matchTable; - ZSTD_optimal_t *priceTable; - U32 litSum; - U32 litLengthSum; - U32 matchLengthSum; - U32 offCodeSum; - U32 litSumBasePrice; - U32 litLengthSumBasePrice; - U32 matchLengthSumBasePrice; - U32 offCodeSumBasePrice; - ZSTD_OptPrice_e priceType; - const ZSTD_entropyCTables_t *symbolCosts; - ZSTD_paramSwitch_e literalCompressionMode; -} optState_t; - -struct ZSTD_matchState_t; - -typedef struct ZSTD_matchState_t ZSTD_matchState_t; - -struct ZSTD_matchState_t { - ZSTD_window_t window; - U32 loadedDictEnd; - U32 nextToUpdate; - U32 hashLog3; - U32 rowHashLog; - U16 *tagTable; - U32 hashCache[8]; - U32 *hashTable; - U32 *hashTable3; - U32 *chainTable; - U32 forceNonContiguous; - int dedicatedDictSearch; - optState_t opt; - const ZSTD_matchState_t *dictMatchState; - ZSTD_compressionParameters cParams; - const rawSeqStore_t *ldmSeqStore; -}; - -typedef struct { - ZSTD_compressedBlockState_t *prevCBlock; - ZSTD_compressedBlockState_t *nextCBlock; - ZSTD_matchState_t matchState; -} ZSTD_blockState_t; - -typedef enum { - ZSTDb_not_buffered = 0, - ZSTDb_buffered = 1, -} ZSTD_buffered_policy_e; - -typedef enum { - zcss_init = 0, - zcss_load = 1, - zcss_flush = 2, -} ZSTD_cStreamStage; - -struct ZSTD_inBuffer_s { - const void *src; - size_t size; - size_t pos; -}; - -typedef struct ZSTD_inBuffer_s ZSTD_inBuffer; - -typedef enum { - ZSTD_dct_auto = 0, - ZSTD_dct_rawContent = 1, - ZSTD_dct_fullDict = 2, -} ZSTD_dictContentType_e; - -struct ZSTD_CDict_s; - -typedef struct ZSTD_CDict_s ZSTD_CDict; - -typedef struct { - void *dictBuffer; - const void *dict; - size_t dictSize; - ZSTD_dictContentType_e dictContentType; - ZSTD_CDict *cdict; -} ZSTD_localDict; - -struct ZSTD_prefixDict_s { - const void *dict; - size_t dictSize; - ZSTD_dictContentType_e dictContentType; -}; - -typedef struct ZSTD_prefixDict_s ZSTD_prefixDict; - -typedef enum { - set_basic = 0, - set_rle = 1, - set_compressed = 2, - set_repeat = 3, -} symbolEncodingType_e; - -typedef struct { - symbolEncodingType_e hType; - BYTE hufDesBuffer[128]; - size_t hufDesSize; -} ZSTD_hufCTablesMetadata_t; - -typedef struct { - symbolEncodingType_e llType; - symbolEncodingType_e ofType; - symbolEncodingType_e mlType; - BYTE fseTablesBuffer[133]; - size_t fseTablesSize; - size_t lastCountSize; -} ZSTD_fseCTablesMetadata_t; - -typedef struct { - ZSTD_hufCTablesMetadata_t hufMetadata; - ZSTD_fseCTablesMetadata_t fseMetadata; -} ZSTD_entropyCTablesMetadata_t; - -typedef struct { - seqStore_t fullSeqStoreChunk; - seqStore_t firstHalfSeqStore; - seqStore_t secondHalfSeqStore; - seqStore_t currSeqStore; - seqStore_t nextSeqStore; - U32 partitions[196]; - ZSTD_entropyCTablesMetadata_t entropyMetadata; -} ZSTD_blockSplitCtx; - -struct ZSTD_CCtx_s { - ZSTD_compressionStage_e stage; - int cParamsChanged; - int bmi2; - ZSTD_CCtx_params requestedParams; - ZSTD_CCtx_params appliedParams; - ZSTD_CCtx_params simpleApiParams; - U32 dictID; - size_t dictContentSize; - ZSTD_cwksp workspace; - size_t blockSize; - long long unsigned int pledgedSrcSizePlusOne; - long long unsigned int consumedSrcSize; - long long unsigned int producedCSize; - struct xxh64_state xxhState; - ZSTD_customMem customMem; - ZSTD_threadPool *pool; - size_t staticSize; - SeqCollector seqCollector; - int isFirstBlock; - int initialized; - seqStore_t seqStore; - ldmState_t ldmState; - rawSeq *ldmSequences; - size_t maxNbLdmSequences; - rawSeqStore_t externSeqStore; - ZSTD_blockState_t blockState; - U32 *entropyWorkspace; - ZSTD_buffered_policy_e bufferedPolicy; - char *inBuff; - size_t inBuffSize; - size_t inToCompress; - size_t inBuffPos; - size_t inBuffTarget; - char *outBuff; - size_t outBuffSize; - size_t outBuffContentSize; - size_t outBuffFlushedSize; - ZSTD_cStreamStage streamStage; - U32 frameEnded; - ZSTD_inBuffer expectedInBuffer; - size_t expectedOutBufferSize; - ZSTD_localDict localDict; - const ZSTD_CDict *cdict; - ZSTD_prefixDict prefixDict; - ZSTD_blockSplitCtx blockSplitCtx; -}; - -typedef struct ZSTD_CCtx_s ZSTD_CCtx; - -typedef struct { - U16 nextState; - BYTE nbAdditionalBits; - BYTE nbBits; - U32 baseValue; -} ZSTD_seqSymbol; - -typedef U32 HUF_DTable; - -typedef struct { - ZSTD_seqSymbol LLTable[513]; - ZSTD_seqSymbol OFTable[257]; - ZSTD_seqSymbol MLTable[513]; - HUF_DTable hufTable[4097]; - U32 rep[3]; - U32 workspace[157]; -} ZSTD_entropyDTables_t; - -typedef enum { - ZSTD_frame = 0, - ZSTD_skippableFrame = 1, -} ZSTD_frameType_e; - -typedef struct { - long long unsigned int frameContentSize; - long long unsigned int windowSize; - unsigned int blockSizeMax; - ZSTD_frameType_e frameType; - unsigned int headerSize; - unsigned int dictID; - unsigned int checksumFlag; -} ZSTD_frameHeader; - -typedef enum { - bt_raw = 0, - bt_rle = 1, - bt_compressed = 2, - bt_reserved = 3, -} blockType_e; - -typedef enum { - ZSTDds_getFrameHeaderSize = 0, - ZSTDds_decodeFrameHeader = 1, - ZSTDds_decodeBlockHeader = 2, - ZSTDds_decompressBlock = 3, - ZSTDds_decompressLastBlock = 4, - ZSTDds_checkChecksum = 5, - ZSTDds_decodeSkippableHeader = 6, - ZSTDds_skipFrame = 7, -} ZSTD_dStage; - -typedef enum { - ZSTD_d_validateChecksum = 0, - ZSTD_d_ignoreChecksum = 1, -} ZSTD_forceIgnoreChecksum_e; - -typedef enum { - ZSTD_use_indefinitely = -1, - ZSTD_dont_use = 0, - ZSTD_use_once = 1, -} ZSTD_dictUses_e; - -struct ZSTD_DDict_s; - -typedef struct ZSTD_DDict_s ZSTD_DDict; - -typedef struct { - const ZSTD_DDict **ddictPtrTable; - size_t ddictPtrTableSize; - size_t ddictPtrCount; -} ZSTD_DDictHashSet; - -typedef enum { - ZSTD_rmd_refSingleDDict = 0, - ZSTD_rmd_refMultipleDDicts = 1, -} ZSTD_refMultipleDDicts_e; - -typedef enum { - zdss_init = 0, - zdss_loadHeader = 1, - zdss_read = 2, - zdss_load = 3, - zdss_flush = 4, -} ZSTD_dStreamStage; - -struct ZSTD_outBuffer_s { - void *dst; - size_t size; - size_t pos; -}; - -typedef struct ZSTD_outBuffer_s ZSTD_outBuffer; - -typedef enum { - ZSTD_not_in_dst = 0, - ZSTD_in_dst = 1, - ZSTD_split = 2, -} ZSTD_litLocation_e; - -struct ZSTD_DCtx_s { - const ZSTD_seqSymbol *LLTptr; - const ZSTD_seqSymbol *MLTptr; - const ZSTD_seqSymbol *OFTptr; - const HUF_DTable *HUFptr; - ZSTD_entropyDTables_t entropy; - U32 workspace[640]; - const void *previousDstEnd; - const void *prefixStart; - const void *virtualStart; - const void *dictEnd; - size_t expected; - ZSTD_frameHeader fParams; - U64 processedCSize; - U64 decodedSize; - blockType_e bType; - ZSTD_dStage stage; - U32 litEntropy; - U32 fseEntropy; - struct xxh64_state xxhState; - size_t headerSize; - ZSTD_format_e format; - ZSTD_forceIgnoreChecksum_e forceIgnoreChecksum; - U32 validateChecksum; - const BYTE *litPtr; - ZSTD_customMem customMem; - size_t litSize; - size_t rleSize; - size_t staticSize; - ZSTD_DDict *ddictLocal; - const ZSTD_DDict *ddict; - U32 dictID; - int ddictIsCold; - ZSTD_dictUses_e dictUses; - ZSTD_DDictHashSet *ddictSet; - ZSTD_refMultipleDDicts_e refMultipleDDicts; - ZSTD_dStreamStage streamStage; - char *inBuff; - size_t inBuffSize; - size_t inPos; - size_t maxWindowSize; - char *outBuff; - size_t outBuffSize; - size_t outStart; - size_t outEnd; - size_t lhSize; - U32 hostageByte; - int noForwardProgress; - ZSTD_bufferMode_e outBufferMode; - ZSTD_outBuffer expectedOutBuffer; - BYTE *litBuffer; - const BYTE *litBufferEnd; - ZSTD_litLocation_e litBufferLocation; - BYTE litExtraBuffer[65568]; - BYTE headerBuffer[18]; - size_t oversizedDuration; -}; - -typedef struct ZSTD_DCtx_s ZSTD_DCtx; - -typedef ZSTD_CCtx ZSTD_CStream; - -typedef ZSTD_DCtx ZSTD_DStream; - -typedef struct { - ZSTD_compressionParameters cParams; - ZSTD_frameParameters fParams; -} ZSTD_parameters; - -typedef ZSTD_ErrorCode zstd_error_code; - -typedef ZSTD_compressionParameters zstd_compression_parameters; - -typedef ZSTD_parameters zstd_parameters; - -typedef ZSTD_inBuffer zstd_in_buffer; - -typedef ZSTD_outBuffer zstd_out_buffer; - -typedef ZSTD_CStream zstd_cstream; - -typedef ZSTD_DStream zstd_dstream; - -struct compressed_bio { - unsigned int nr_folios; - struct folio **compressed_folios; - u64 start; - unsigned int len; - unsigned int compressed_len; - u8 compress_type; - bool writeback; - union { - struct btrfs_bio *orig_bbio; - struct work_struct write_end_work; - }; - struct btrfs_bio bbio; -}; - -struct workspace_manager { - struct list_head idle_ws; - spinlock_t ws_lock; - int free_ws; - atomic_t total_ws; - wait_queue_head_t ws_wait; -}; - -struct btrfs_compress_op { - struct workspace_manager *workspace_manager; - unsigned int max_level; - unsigned int default_level; -}; - -struct workspace { - void *mem; - size_t size; - char *buf; - unsigned int level; - unsigned int req_level; - long unsigned int last_used; - struct list_head list; - struct list_head lru_list; - zstd_in_buffer in_buf; - zstd_out_buffer out_buf; -}; - -struct zstd_workspace_manager { - const struct btrfs_compress_op *ops; - spinlock_t lock; - struct list_head lru_list; - struct list_head idle_ws[15]; - long unsigned int active_map; - wait_queue_head_t wait; - struct timer_list timer; -}; - -struct ulist_iterator { - struct list_head *cur_list; -}; - -struct fsverity_descriptor { - __u8 version; - __u8 hash_algorithm; - __u8 log_blocksize; - __u8 salt_size; - __le32 sig_size; - __le64 data_size; - __u8 root_hash[64]; - __u8 salt[32]; - __u8 __reserved[144]; - __u8 signature[0]; -}; - -struct btrfs_stream_header { - char magic[13]; - __le32 version; -} __attribute__((packed)); - -struct btrfs_cmd_header { - __le32 len; - __le16 cmd; - __le32 crc; -} __attribute__((packed)); - -struct btrfs_tlv_header { - __le16 tlv_type; - __le16 tlv_len; -}; - -enum btrfs_send_cmd { - BTRFS_SEND_C_UNSPEC = 0, - BTRFS_SEND_C_SUBVOL = 1, - BTRFS_SEND_C_SNAPSHOT = 2, - BTRFS_SEND_C_MKFILE = 3, - BTRFS_SEND_C_MKDIR = 4, - BTRFS_SEND_C_MKNOD = 5, - BTRFS_SEND_C_MKFIFO = 6, - BTRFS_SEND_C_MKSOCK = 7, - BTRFS_SEND_C_SYMLINK = 8, - BTRFS_SEND_C_RENAME = 9, - BTRFS_SEND_C_LINK = 10, - BTRFS_SEND_C_UNLINK = 11, - BTRFS_SEND_C_RMDIR = 12, - BTRFS_SEND_C_SET_XATTR = 13, - BTRFS_SEND_C_REMOVE_XATTR = 14, - BTRFS_SEND_C_WRITE = 15, - BTRFS_SEND_C_CLONE = 16, - BTRFS_SEND_C_TRUNCATE = 17, - BTRFS_SEND_C_CHMOD = 18, - BTRFS_SEND_C_CHOWN = 19, - BTRFS_SEND_C_UTIMES = 20, - BTRFS_SEND_C_END = 21, - BTRFS_SEND_C_UPDATE_EXTENT = 22, - BTRFS_SEND_C_MAX_V1 = 22, - BTRFS_SEND_C_FALLOCATE = 23, - BTRFS_SEND_C_FILEATTR = 24, - BTRFS_SEND_C_ENCODED_WRITE = 25, - BTRFS_SEND_C_MAX_V2 = 25, - BTRFS_SEND_C_ENABLE_VERITY = 26, - BTRFS_SEND_C_MAX_V3 = 26, - BTRFS_SEND_C_MAX = 26, -}; - -enum { - BTRFS_SEND_A_UNSPEC = 0, - BTRFS_SEND_A_UUID = 1, - BTRFS_SEND_A_CTRANSID = 2, - BTRFS_SEND_A_INO = 3, - BTRFS_SEND_A_SIZE = 4, - BTRFS_SEND_A_MODE = 5, - BTRFS_SEND_A_UID = 6, - BTRFS_SEND_A_GID = 7, - BTRFS_SEND_A_RDEV = 8, - BTRFS_SEND_A_CTIME = 9, - BTRFS_SEND_A_MTIME = 10, - BTRFS_SEND_A_ATIME = 11, - BTRFS_SEND_A_OTIME = 12, - BTRFS_SEND_A_XATTR_NAME = 13, - BTRFS_SEND_A_XATTR_DATA = 14, - BTRFS_SEND_A_PATH = 15, - BTRFS_SEND_A_PATH_TO = 16, - BTRFS_SEND_A_PATH_LINK = 17, - BTRFS_SEND_A_FILE_OFFSET = 18, - BTRFS_SEND_A_DATA = 19, - BTRFS_SEND_A_CLONE_UUID = 20, - BTRFS_SEND_A_CLONE_CTRANSID = 21, - BTRFS_SEND_A_CLONE_PATH = 22, - BTRFS_SEND_A_CLONE_OFFSET = 23, - BTRFS_SEND_A_CLONE_LEN = 24, - BTRFS_SEND_A_MAX_V1 = 24, - BTRFS_SEND_A_FALLOCATE_MODE = 25, - BTRFS_SEND_A_FILEATTR = 26, - BTRFS_SEND_A_UNENCODED_FILE_LEN = 27, - BTRFS_SEND_A_UNENCODED_LEN = 28, - BTRFS_SEND_A_UNENCODED_OFFSET = 29, - BTRFS_SEND_A_COMPRESSION = 30, - BTRFS_SEND_A_ENCRYPTION = 31, - BTRFS_SEND_A_MAX_V2 = 31, - BTRFS_SEND_A_VERITY_ALGORITHM = 32, - BTRFS_SEND_A_VERITY_BLOCK_SIZE = 33, - BTRFS_SEND_A_VERITY_SALT_DATA = 34, - BTRFS_SEND_A_VERITY_SIG_DATA = 35, - BTRFS_SEND_A_MAX_V3 = 35, - __BTRFS_SEND_A_MAX = 35, -}; - -struct btrfs_key_ptr { - struct btrfs_disk_key key; - __le64 blockptr; - __le64 generation; -} __attribute__((packed)); - -struct btrfs_extent_item { - __le64 refs; - __le64 generation; - __le64 flags; -}; - -struct btrfs_inode_extref { - __le64 parent_objectid; - __le64 index; - __le16 name_len; - __u8 name[0]; -} __attribute__((packed)); - -enum { - EXTENT_BUFFER_UPTODATE = 0, - EXTENT_BUFFER_DIRTY = 1, - EXTENT_BUFFER_CORRUPT = 2, - EXTENT_BUFFER_READAHEAD = 3, - EXTENT_BUFFER_TREE_REF = 4, - EXTENT_BUFFER_STALE = 5, - EXTENT_BUFFER_WRITEBACK = 6, - EXTENT_BUFFER_READ_ERR = 7, - EXTENT_BUFFER_UNMAPPED = 8, - EXTENT_BUFFER_IN_TREE = 9, - EXTENT_BUFFER_WRITE_ERR = 10, - EXTENT_BUFFER_ZONED_ZEROOUT = 11, - EXTENT_BUFFER_READING = 12, -}; - -typedef int iterate_extent_inodes_t(u64, u64, u64, u64, void *); - -struct btrfs_backref_walk_ctx { - u64 bytenr; - u64 extent_item_pos; - bool ignore_extent_item_pos; - bool skip_inode_ref_list; - struct btrfs_trans_handle *trans; - struct btrfs_fs_info *fs_info; - u64 time_seq; - struct ulist *refs; - struct ulist *roots; - bool (*cache_lookup)(u64, void *, const u64 **, int *); - void (*cache_store)(u64, const struct ulist *, void *); - iterate_extent_inodes_t *indirect_ref_iterator; - int (*check_extent_item)(u64, const struct btrfs_extent_item *, const struct extent_buffer *, void *); - bool (*skip_data_ref)(u64, u64, u64, void *); - void *user_ctx; -}; - -struct btrfs_lru_cache_entry { - struct list_head lru_list; - u64 key; - u64 gen; - struct list_head list; -}; - -struct btrfs_lru_cache { - struct list_head lru_list; - struct maple_tree entries; - unsigned int size; - unsigned int max_size; -}; - -struct fs_path { - union { - struct { - char *start; - char *end; - char *buf; - short unsigned int buf_len: 15; - short unsigned int reversed: 1; - char inline_buf[0]; - }; - char pad[256]; - }; -}; - -struct clone_root { - struct btrfs_root *root; - u64 ino; - u64 offset; - u64 num_bytes; - bool found_ref; -}; - -struct backref_cache_entry { - struct btrfs_lru_cache_entry entry; - u64 root_ids[17]; - int num_roots; -}; - -struct send_ctx { - struct file *send_filp; - loff_t send_off; - char *send_buf; - u32 send_size; - u32 send_max_size; - bool put_data; - struct page **send_buf_pages; - u64 flags; - u32 proto; - struct btrfs_root *send_root; - struct btrfs_root *parent_root; - struct clone_root *clone_roots; - int clone_roots_cnt; - struct btrfs_path *left_path; - struct btrfs_path *right_path; - struct btrfs_key *cmp_key; - u64 last_reloc_trans; - u64 cur_ino; - u64 cur_inode_gen; - u64 cur_inode_size; - u64 cur_inode_mode; - u64 cur_inode_rdev; - u64 cur_inode_last_extent; - u64 cur_inode_next_write_offset; - struct fs_path cur_inode_path; - bool cur_inode_new; - bool cur_inode_new_gen; - bool cur_inode_deleted; - bool ignore_cur_inode; - bool cur_inode_needs_verity; - void *verity_descriptor; - u64 send_progress; - struct list_head new_refs; - struct list_head deleted_refs; - struct btrfs_lru_cache name_cache; - struct inode *cur_inode; - struct file_ra_state ra; - u64 page_cache_clear_start; - bool clean_page_cache; - struct rb_root pending_dir_moves; - struct rb_root waiting_dir_moves; - struct rb_root orphan_dirs; - struct rb_root rbtree_new_refs; - struct rb_root rbtree_deleted_refs; - struct btrfs_lru_cache backref_cache; - u64 backref_cache_last_reloc_trans; - struct btrfs_lru_cache dir_created_cache; - struct btrfs_lru_cache dir_utimes_cache; -}; - -struct pending_dir_move { - struct rb_node node; - struct list_head list; - u64 parent_ino; - u64 ino; - u64 gen; - struct list_head update_refs; -}; - -struct waiting_dir_move { - struct rb_node node; - u64 ino; - u64 rmdir_ino; - u64 rmdir_gen; - bool orphanized; -}; - -struct orphan_dir_info { - struct rb_node node; - u64 ino; - u64 gen; - u64 last_dir_index_offset; - u64 dir_high_seq_ino; -}; - -struct name_cache_entry { - struct btrfs_lru_cache_entry entry; - u64 parent_ino; - u64 parent_gen; - int ret; - int need_later_update; - int name_len; - char name[0]; -}; - -enum btrfs_compare_tree_result { - BTRFS_COMPARE_TREE_NEW = 0, - BTRFS_COMPARE_TREE_DELETED = 1, - BTRFS_COMPARE_TREE_CHANGED = 2, - BTRFS_COMPARE_TREE_SAME = 3, -}; - -struct btrfs_inode_info { - u64 size; - u64 gen; - u64 mode; - u64 uid; - u64 gid; - u64 rdev; - u64 fileattr; - u64 nlink; -}; - -typedef int (*iterate_inode_ref_t)(int, u64, int, struct fs_path *, void *); - -typedef int (*iterate_dir_item_t)(int, struct btrfs_key *, const char *, int, const char *, int, void *); - -struct backref_ctx { - struct send_ctx *sctx; - u64 found; - u64 cur_objectid; - u64 cur_offset; - u64 extent_len; - u64 bytenr; - u64 backref_owner; - u64 backref_offset; -}; - -enum inode_state { - inode_state_no_change = 0, - inode_state_will_create = 1, - inode_state_did_create = 2, - inode_state_will_delete = 3, - inode_state_did_delete = 4, -}; - -struct recorded_ref { - struct list_head list; - char *name; - struct fs_path *full_path; - u64 dir; - u64 dir_gen; - int name_len; - struct rb_node node; - struct rb_root *root; -}; - -struct find_xattr_ctx { - const char *name; - int name_len; - int found_idx; - char *found_data; - int found_data_len; -}; - -enum { - _DQUOT_USAGE_ENABLED = 0, - _DQUOT_LIMITS_ENABLED = 1, - _DQUOT_SUSPENDED = 2, - _DQUOT_STATE_FLAGS = 3, -}; - -enum stop_cp_reason { - STOP_CP_REASON_SHUTDOWN = 0, - STOP_CP_REASON_FAULT_INJECT = 1, - STOP_CP_REASON_META_PAGE = 2, - STOP_CP_REASON_WRITE_FAIL = 3, - STOP_CP_REASON_CORRUPTED_SUMMARY = 4, - STOP_CP_REASON_UPDATE_INODE = 5, - STOP_CP_REASON_FLUSH_FAIL = 6, - STOP_CP_REASON_NO_SEGMENT = 7, - STOP_CP_REASON_CORRUPTED_FREE_BITMAP = 8, - STOP_CP_REASON_MAX = 9, -}; - -struct f2fs_map_blocks { - struct block_device *m_bdev; - block_t m_pblk; - block_t m_lblk; - unsigned int m_len; - unsigned int m_flags; - long unsigned int *m_next_pgofs; - long unsigned int *m_next_extent; - int m_seg_type; - bool m_may_create; - bool m_multidev_dio; -}; - -enum cp_reason_type { - CP_NO_NEEDED = 0, - CP_NON_REGULAR = 1, - CP_COMPRESSED = 2, - CP_HARDLINK = 3, - CP_SB_NEED_CP = 4, - CP_WRONG_PINO = 5, - CP_NO_SPC_ROLL = 6, - CP_NODE_NEED_CP = 7, - CP_FASTBOOT_MODE = 8, - CP_SPEC_LOG_NUM = 9, - CP_RECOVER_DIR = 10, - CP_XATTR_DIR = 11, -}; - -struct f2fs_gc_control { - unsigned int victim_segno; - int init_gc_type; - bool no_bg_gc; - bool should_migrate_blocks; - bool err_gc_skipped; - bool one_time; - unsigned int nr_free_secs; -}; - -enum { - CP_TIME = 0, - REQ_TIME = 1, - DISCARD_TIME = 2, - GC_TIME = 3, - DISABLE_TIME = 4, - UMOUNT_DISCARD_TIMEOUT = 5, - MAX_TIME = 6, -}; - -enum { - GC_NORMAL = 0, - GC_IDLE_CB = 1, - GC_IDLE_GREEDY = 2, - GC_IDLE_AT = 3, - GC_URGENT_HIGH = 4, - GC_URGENT_LOW = 5, - GC_URGENT_MID = 6, - MAX_GC_MODE = 7, -}; - -enum { - BGGC_MODE_ON = 0, - BGGC_MODE_OFF = 1, - BGGC_MODE_SYNC = 2, -}; - -enum { - FS_MODE_ADAPTIVE = 0, - FS_MODE_LFS = 1, - FS_MODE_FRAGMENT_SEG = 2, - FS_MODE_FRAGMENT_BLK = 3, -}; - -enum { - ALLOC_MODE_DEFAULT = 0, - ALLOC_MODE_REUSE = 1, -}; - -enum fsync_mode { - FSYNC_MODE_POSIX = 0, - FSYNC_MODE_STRICT = 1, - FSYNC_MODE_NOBARRIER = 2, -}; - -enum { - COMPR_MODE_FS = 0, - COMPR_MODE_USER = 1, -}; - -enum { - DISCARD_UNIT_BLOCK = 0, - DISCARD_UNIT_SEGMENT = 1, - DISCARD_UNIT_SECTION = 2, -}; - -enum { - MEMORY_MODE_NORMAL = 0, - MEMORY_MODE_LOW = 1, -}; - -enum { - BACKGROUND = 0, - FOREGROUND = 1, - MAX_CALL_TYPE = 2, - TOTAL_CALL = 1, -}; - -enum compress_algorithm_type { - COMPRESS_LZO = 0, - COMPRESS_LZ4 = 1, - COMPRESS_ZSTD = 2, - COMPRESS_LZORLE = 3, - COMPRESS_MAX = 4, -}; - -struct f2fs_gc_kthread { - struct task_struct *f2fs_gc_task; - wait_queue_head_t gc_wait_queue_head; - unsigned int urgent_sleep_time; - unsigned int min_sleep_time; - unsigned int max_sleep_time; - unsigned int no_gc_sleep_time; - bool gc_wake; - wait_queue_head_t fggc_wq; - unsigned int no_zoned_gc_percent; - unsigned int boost_zoned_gc_percent; - unsigned int valid_thresh_ratio; -}; - -enum { - LFS = 0, - SSR = 1, - AT_SSR = 2, -}; - -enum { - GC_CB = 0, - GC_GREEDY = 1, - GC_AT = 2, - ALLOC_NEXT = 3, - FLUSH_DEVICE = 4, - MAX_GC_POLICY = 5, -}; - -struct victim_sel_policy { - int alloc_mode; - int gc_mode; - long unsigned int *dirty_bitmap; - unsigned int max_search; - unsigned int offset; - unsigned int ofs_unit; - unsigned int min_cost; - long long unsigned int oldest_age; - unsigned int min_segno; - long long unsigned int age; - long long unsigned int age_threshold; - bool one_time_gc; -}; - -enum dirty_type { - DIRTY_HOT_DATA = 0, - DIRTY_WARM_DATA = 1, - DIRTY_COLD_DATA = 2, - DIRTY_HOT_NODE = 3, - DIRTY_WARM_NODE = 4, - DIRTY_COLD_NODE = 5, - DIRTY = 6, - PRE = 7, - NR_DIRTY_TYPE = 8, -}; - -enum { - F2FS_IPU_FORCE = 0, - F2FS_IPU_SSR = 1, - F2FS_IPU_UTIL = 2, - F2FS_IPU_SSR_UTIL = 3, - F2FS_IPU_FSYNC = 4, - F2FS_IPU_ASYNC = 5, - F2FS_IPU_NOCACHE = 6, - F2FS_IPU_HONOR_OPU_WRITE = 7, - F2FS_IPU_MAX = 8, -}; - -enum iostat_lat_type { - READ_IO = 0, - WRITE_SYNC_IO = 1, - WRITE_ASYNC_IO = 2, - MAX_IO_TYPE = 3, -}; - -struct f2fs_iostat_latency { - unsigned int peak_lat; - unsigned int avg_lat; - unsigned int cnt; -}; - -struct trace_event_raw_f2fs__inode { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ino_t pino; - umode_t mode; - loff_t size; - unsigned int nlink; - blkcnt_t blocks; - __u8 advise; - char __data[0]; -}; - -struct trace_event_raw_f2fs__inode_exit { - struct trace_entry ent; - dev_t dev; - ino_t ino; - umode_t mode; - int ret; - char __data[0]; -}; - -struct trace_event_raw_f2fs_sync_file_exit { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int cp_reason; - int datasync; - int ret; - char __data[0]; -}; - -struct trace_event_raw_f2fs_sync_fs { - struct trace_entry ent; - dev_t dev; - int dirty; - int wait; - char __data[0]; -}; - -struct trace_event_raw_f2fs_unlink_enter { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t size; - blkcnt_t blocks; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_f2fs_truncate_data_blocks_range { - struct trace_entry ent; - dev_t dev; - ino_t ino; - nid_t nid; - unsigned int ofs; - int free; - char __data[0]; -}; - -struct trace_event_raw_f2fs__truncate_op { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t size; - blkcnt_t blocks; - u64 from; - char __data[0]; -}; - -struct trace_event_raw_f2fs__truncate_node { - struct trace_entry ent; - dev_t dev; - ino_t ino; - nid_t nid; - block_t blk_addr; - char __data[0]; -}; - -struct trace_event_raw_f2fs_truncate_partial_nodes { - struct trace_entry ent; - dev_t dev; - ino_t ino; - nid_t nid[3]; - int depth; - int err; - char __data[0]; -}; - -struct trace_event_raw_f2fs_file_write_iter { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t offset; - size_t length; - ssize_t ret; - char __data[0]; -}; - -struct trace_event_raw_f2fs_map_blocks { - struct trace_entry ent; - dev_t dev; - ino_t ino; - block_t m_lblk; - block_t m_pblk; - unsigned int m_len; - unsigned int m_flags; - int m_seg_type; - bool m_may_create; - bool m_multidev_dio; - int flag; - int ret; - char __data[0]; -}; - -struct trace_event_raw_f2fs_background_gc { - struct trace_entry ent; - dev_t dev; - unsigned int wait_ms; - unsigned int prefree; - unsigned int free; - char __data[0]; -}; - -struct trace_event_raw_f2fs_gc_begin { - struct trace_entry ent; - dev_t dev; - int gc_type; - bool no_bg_gc; - unsigned int nr_free_secs; - long long int dirty_nodes; - long long int dirty_dents; - long long int dirty_imeta; - unsigned int free_sec; - unsigned int free_seg; - int reserved_seg; - unsigned int prefree_seg; - char __data[0]; -}; - -struct trace_event_raw_f2fs_gc_end { - struct trace_entry ent; - dev_t dev; - int ret; - int seg_freed; - int sec_freed; - long long int dirty_nodes; - long long int dirty_dents; - long long int dirty_imeta; - unsigned int free_sec; - unsigned int free_seg; - int reserved_seg; - unsigned int prefree_seg; - char __data[0]; -}; - -struct trace_event_raw_f2fs_get_victim { - struct trace_entry ent; - dev_t dev; - int type; - int gc_type; - int alloc_mode; - int gc_mode; - unsigned int victim; - unsigned int cost; - unsigned int ofs_unit; - unsigned int pre_victim; - unsigned int prefree; - unsigned int free; - char __data[0]; -}; - -struct trace_event_raw_f2fs_lookup_start { - struct trace_entry ent; - dev_t dev; - ino_t ino; - u32 __data_loc_name; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_f2fs_lookup_end { - struct trace_entry ent; - dev_t dev; - ino_t ino; - u32 __data_loc_name; - nid_t cino; - int err; - char __data[0]; -}; - -struct trace_event_raw_f2fs_rename_start { - struct trace_entry ent; - dev_t dev; - ino_t ino; - u32 __data_loc_old_name; - ino_t new_pino; - u32 __data_loc_new_name; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_f2fs_rename_end { - struct trace_entry ent; - dev_t dev; - ino_t ino; - u32 __data_loc_old_name; - u32 __data_loc_new_name; - unsigned int flags; - int ret; - char __data[0]; -}; - -struct trace_event_raw_f2fs_readdir { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t start; - loff_t end; - int err; - char __data[0]; -}; - -struct trace_event_raw_f2fs_fallocate { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int mode; - loff_t offset; - loff_t len; - loff_t size; - blkcnt_t blocks; - int ret; - char __data[0]; -}; - -struct trace_event_raw_f2fs_direct_IO_enter { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t ki_pos; - int ki_flags; - u16 ki_ioprio; - long unsigned int len; - int rw; - char __data[0]; -}; - -struct trace_event_raw_f2fs_direct_IO_exit { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t pos; - long unsigned int len; - int rw; - int ret; - char __data[0]; -}; - -struct trace_event_raw_f2fs_reserve_new_blocks { - struct trace_entry ent; - dev_t dev; - nid_t nid; - unsigned int ofs_in_node; - blkcnt_t count; - char __data[0]; -}; - -struct trace_event_raw_f2fs__submit_page_bio { - struct trace_entry ent; - dev_t dev; - ino_t ino; - long unsigned int index; - block_t old_blkaddr; - block_t new_blkaddr; - enum req_op op; - blk_opf_t op_flags; - int temp; - int type; - char __data[0]; -}; - -struct trace_event_raw_f2fs__bio { - struct trace_entry ent; - dev_t dev; - dev_t target; - enum req_op op; - blk_opf_t op_flags; - int type; - sector_t sector; - unsigned int size; - char __data[0]; -}; - -struct trace_event_raw_f2fs_write_begin { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t pos; - unsigned int len; - char __data[0]; -}; - -struct trace_event_raw_f2fs_write_end { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t pos; - unsigned int len; - unsigned int copied; - char __data[0]; -}; - -struct trace_event_raw_f2fs__folio { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int type; - int dir; - long unsigned int index; - int dirty; - int uptodate; - char __data[0]; -}; - -struct trace_event_raw_f2fs_replace_atomic_write_block { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ino_t cow_ino; - long unsigned int index; - block_t old_addr; - block_t new_addr; - bool recovery; - char __data[0]; -}; - -struct trace_event_raw_f2fs_mmap { - struct trace_entry ent; - dev_t dev; - ino_t ino; - long unsigned int index; - vm_flags_t flags; - vm_fault_t ret; - char __data[0]; -}; - -struct trace_event_raw_f2fs_writepages { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int type; - int dir; - long int nr_to_write; - long int pages_skipped; - loff_t range_start; - loff_t range_end; - long unsigned int writeback_index; - int sync_mode; - char for_kupdate; - char for_background; - char tagged_writepages; - char for_reclaim; - char range_cyclic; - char for_sync; - char __data[0]; -}; - -struct trace_event_raw_f2fs_readpages { - struct trace_entry ent; - dev_t dev; - ino_t ino; - long unsigned int start; - unsigned int nrpage; - char __data[0]; -}; - -struct trace_event_raw_f2fs_write_checkpoint { - struct trace_entry ent; - dev_t dev; - int reason; - u32 __data_loc_dest_msg; - char __data[0]; -}; - -struct trace_event_raw_f2fs_discard { - struct trace_entry ent; - dev_t dev; - block_t blkstart; - block_t blklen; - char __data[0]; -}; - -struct trace_event_raw_f2fs_reset_zone { - struct trace_entry ent; - dev_t dev; - block_t blkstart; - char __data[0]; -}; - -struct trace_event_raw_f2fs_issue_flush { - struct trace_entry ent; - dev_t dev; - unsigned int nobarrier; - unsigned int flush_merge; - int ret; - char __data[0]; -}; - -struct trace_event_raw_f2fs_lookup_extent_tree_start { - struct trace_entry ent; - dev_t dev; - ino_t ino; - unsigned int pgofs; - enum extent_type type; - char __data[0]; -}; - -struct trace_event_raw_f2fs_lookup_read_extent_tree_end { - struct trace_entry ent; - dev_t dev; - ino_t ino; - unsigned int pgofs; - unsigned int fofs; - unsigned int len; - u32 blk; - char __data[0]; -}; - -struct trace_event_raw_f2fs_lookup_age_extent_tree_end { - struct trace_entry ent; - dev_t dev; - ino_t ino; - unsigned int pgofs; - unsigned int fofs; - unsigned int len; - long long unsigned int age; - long long unsigned int blocks; - char __data[0]; -}; - -struct trace_event_raw_f2fs_update_read_extent_tree_range { - struct trace_entry ent; - dev_t dev; - ino_t ino; - unsigned int pgofs; - u32 blk; - unsigned int len; - unsigned int c_len; - char __data[0]; -}; - -struct trace_event_raw_f2fs_update_age_extent_tree_range { - struct trace_entry ent; - dev_t dev; - ino_t ino; - unsigned int pgofs; - unsigned int len; - long long unsigned int age; - long long unsigned int blocks; - char __data[0]; -}; - -struct trace_event_raw_f2fs_shrink_extent_tree { - struct trace_entry ent; - dev_t dev; - unsigned int node_cnt; - unsigned int tree_cnt; - enum extent_type type; - char __data[0]; -}; - -struct trace_event_raw_f2fs_destroy_extent_tree { - struct trace_entry ent; - dev_t dev; - ino_t ino; - unsigned int node_cnt; - enum extent_type type; - char __data[0]; -}; - -struct trace_event_raw_f2fs_sync_dirty_inodes { - struct trace_entry ent; - dev_t dev; - int type; - s64 count; - char __data[0]; -}; - -struct trace_event_raw_f2fs_shutdown { - struct trace_entry ent; - dev_t dev; - unsigned int mode; - int ret; - char __data[0]; -}; - -struct trace_event_raw_f2fs_zip_start { - struct trace_entry ent; - dev_t dev; - ino_t ino; - long unsigned int idx; - unsigned int size; - unsigned int algtype; - char __data[0]; -}; - -struct trace_event_raw_f2fs_zip_end { - struct trace_entry ent; - dev_t dev; - ino_t ino; - long unsigned int idx; - unsigned int size; - unsigned int ret; - char __data[0]; -}; - -struct trace_event_raw_f2fs_iostat { - struct trace_entry ent; - dev_t dev; - long long unsigned int app_dio; - long long unsigned int app_bio; - long long unsigned int app_wio; - long long unsigned int app_mio; - long long unsigned int app_bcdio; - long long unsigned int app_mcdio; - long long unsigned int fs_dio; - long long unsigned int fs_cdio; - long long unsigned int fs_nio; - long long unsigned int fs_mio; - long long unsigned int fs_gc_dio; - long long unsigned int fs_gc_nio; - long long unsigned int fs_cp_dio; - long long unsigned int fs_cp_nio; - long long unsigned int fs_cp_mio; - long long unsigned int app_drio; - long long unsigned int app_brio; - long long unsigned int app_rio; - long long unsigned int app_mrio; - long long unsigned int app_bcrio; - long long unsigned int app_mcrio; - long long unsigned int fs_drio; - long long unsigned int fs_gdrio; - long long unsigned int fs_cdrio; - long long unsigned int fs_nrio; - long long unsigned int fs_mrio; - long long unsigned int fs_discard; - long long unsigned int fs_reset_zone; - char __data[0]; -}; - -struct trace_event_raw_f2fs_iostat_latency { - struct trace_entry ent; - dev_t dev; - unsigned int d_rd_peak; - unsigned int d_rd_avg; - unsigned int d_rd_cnt; - unsigned int n_rd_peak; - unsigned int n_rd_avg; - unsigned int n_rd_cnt; - unsigned int m_rd_peak; - unsigned int m_rd_avg; - unsigned int m_rd_cnt; - unsigned int d_wr_s_peak; - unsigned int d_wr_s_avg; - unsigned int d_wr_s_cnt; - unsigned int n_wr_s_peak; - unsigned int n_wr_s_avg; - unsigned int n_wr_s_cnt; - unsigned int m_wr_s_peak; - unsigned int m_wr_s_avg; - unsigned int m_wr_s_cnt; - unsigned int d_wr_as_peak; - unsigned int d_wr_as_avg; - unsigned int d_wr_as_cnt; - unsigned int n_wr_as_peak; - unsigned int n_wr_as_avg; - unsigned int n_wr_as_cnt; - unsigned int m_wr_as_peak; - unsigned int m_wr_as_avg; - unsigned int m_wr_as_cnt; - char __data[0]; -}; - -struct trace_event_raw_f2fs_bmap { - struct trace_entry ent; - dev_t dev; - ino_t ino; - sector_t lblock; - sector_t pblock; - char __data[0]; -}; - -struct trace_event_raw_f2fs_fiemap { - struct trace_entry ent; - dev_t dev; - ino_t ino; - sector_t lblock; - sector_t pblock; - long long unsigned int len; - unsigned int flags; - int ret; - char __data[0]; -}; - -struct trace_event_raw_f2fs__rw_start { - struct trace_entry ent; - u32 __data_loc_pathbuf; - loff_t offset; - int bytes; - loff_t i_size; - u32 __data_loc_cmdline; - pid_t pid; - ino_t ino; - char __data[0]; -}; - -struct trace_event_raw_f2fs__rw_end { - struct trace_entry ent; - ino_t ino; - loff_t offset; - int bytes; - char __data[0]; -}; - -struct trace_event_data_offsets_f2fs__inode {}; - -struct trace_event_data_offsets_f2fs__inode_exit {}; - -struct trace_event_data_offsets_f2fs_sync_file_exit {}; - -struct trace_event_data_offsets_f2fs_sync_fs {}; - -struct trace_event_data_offsets_f2fs_unlink_enter { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_f2fs_truncate_data_blocks_range {}; - -struct trace_event_data_offsets_f2fs__truncate_op {}; - -struct trace_event_data_offsets_f2fs__truncate_node {}; - -struct trace_event_data_offsets_f2fs_truncate_partial_nodes {}; - -struct trace_event_data_offsets_f2fs_file_write_iter {}; - -struct trace_event_data_offsets_f2fs_map_blocks {}; - -struct trace_event_data_offsets_f2fs_background_gc {}; - -struct trace_event_data_offsets_f2fs_gc_begin {}; - -struct trace_event_data_offsets_f2fs_gc_end {}; - -struct trace_event_data_offsets_f2fs_get_victim {}; - -struct trace_event_data_offsets_f2fs_lookup_start { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_f2fs_lookup_end { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_f2fs_rename_start { - u32 old_name; - const void *old_name_ptr_; - u32 new_name; - const void *new_name_ptr_; -}; - -struct trace_event_data_offsets_f2fs_rename_end { - u32 old_name; - const void *old_name_ptr_; - u32 new_name; - const void *new_name_ptr_; -}; - -struct trace_event_data_offsets_f2fs_readdir {}; - -struct trace_event_data_offsets_f2fs_fallocate {}; - -struct trace_event_data_offsets_f2fs_direct_IO_enter {}; - -struct trace_event_data_offsets_f2fs_direct_IO_exit {}; - -struct trace_event_data_offsets_f2fs_reserve_new_blocks {}; - -struct trace_event_data_offsets_f2fs__submit_page_bio {}; - -struct trace_event_data_offsets_f2fs__bio {}; - -struct trace_event_data_offsets_f2fs_write_begin {}; - -struct trace_event_data_offsets_f2fs_write_end {}; - -struct trace_event_data_offsets_f2fs__folio {}; - -struct trace_event_data_offsets_f2fs_replace_atomic_write_block {}; - -struct trace_event_data_offsets_f2fs_mmap {}; - -struct trace_event_data_offsets_f2fs_writepages {}; - -struct trace_event_data_offsets_f2fs_readpages {}; - -struct trace_event_data_offsets_f2fs_write_checkpoint { - u32 dest_msg; - const void *dest_msg_ptr_; -}; - -struct trace_event_data_offsets_f2fs_discard {}; - -struct trace_event_data_offsets_f2fs_reset_zone {}; - -struct trace_event_data_offsets_f2fs_issue_flush {}; - -struct trace_event_data_offsets_f2fs_lookup_extent_tree_start {}; - -struct trace_event_data_offsets_f2fs_lookup_read_extent_tree_end {}; - -struct trace_event_data_offsets_f2fs_lookup_age_extent_tree_end {}; - -struct trace_event_data_offsets_f2fs_update_read_extent_tree_range {}; - -struct trace_event_data_offsets_f2fs_update_age_extent_tree_range {}; - -struct trace_event_data_offsets_f2fs_shrink_extent_tree {}; - -struct trace_event_data_offsets_f2fs_destroy_extent_tree {}; - -struct trace_event_data_offsets_f2fs_sync_dirty_inodes {}; - -struct trace_event_data_offsets_f2fs_shutdown {}; - -struct trace_event_data_offsets_f2fs_zip_start {}; - -struct trace_event_data_offsets_f2fs_zip_end {}; - -struct trace_event_data_offsets_f2fs_iostat {}; - -struct trace_event_data_offsets_f2fs_iostat_latency {}; - -struct trace_event_data_offsets_f2fs_bmap {}; - -struct trace_event_data_offsets_f2fs_fiemap {}; - -struct trace_event_data_offsets_f2fs__rw_start { - u32 pathbuf; - const void *pathbuf_ptr_; - u32 cmdline; - const void *cmdline_ptr_; -}; - -struct trace_event_data_offsets_f2fs__rw_end {}; - -typedef void (*btf_trace_f2fs_sync_file_enter)(void *, struct inode *); - -typedef void (*btf_trace_f2fs_sync_file_exit)(void *, struct inode *, int, int, int); - -typedef void (*btf_trace_f2fs_sync_fs)(void *, struct super_block *, int); - -typedef void (*btf_trace_f2fs_iget)(void *, struct inode *); - -typedef void (*btf_trace_f2fs_iget_exit)(void *, struct inode *, int); - -typedef void (*btf_trace_f2fs_evict_inode)(void *, struct inode *); - -typedef void (*btf_trace_f2fs_new_inode)(void *, struct inode *, int); - -typedef void (*btf_trace_f2fs_unlink_enter)(void *, struct inode *, struct dentry *); - -typedef void (*btf_trace_f2fs_unlink_exit)(void *, struct inode *, int); - -typedef void (*btf_trace_f2fs_drop_inode)(void *, struct inode *, int); - -typedef void (*btf_trace_f2fs_truncate)(void *, struct inode *); - -typedef void (*btf_trace_f2fs_truncate_data_blocks_range)(void *, struct inode *, nid_t, unsigned int, int); - -typedef void (*btf_trace_f2fs_truncate_blocks_enter)(void *, struct inode *, u64); - -typedef void (*btf_trace_f2fs_truncate_blocks_exit)(void *, struct inode *, int); - -typedef void (*btf_trace_f2fs_truncate_inode_blocks_enter)(void *, struct inode *, u64); - -typedef void (*btf_trace_f2fs_truncate_inode_blocks_exit)(void *, struct inode *, int); - -typedef void (*btf_trace_f2fs_truncate_nodes_enter)(void *, struct inode *, nid_t, block_t); - -typedef void (*btf_trace_f2fs_truncate_nodes_exit)(void *, struct inode *, int); - -typedef void (*btf_trace_f2fs_truncate_node)(void *, struct inode *, nid_t, block_t); - -typedef void (*btf_trace_f2fs_truncate_partial_nodes)(void *, struct inode *, nid_t *, int, int); - -typedef void (*btf_trace_f2fs_file_write_iter)(void *, struct inode *, loff_t, size_t, ssize_t); - -typedef void (*btf_trace_f2fs_map_blocks)(void *, struct inode *, struct f2fs_map_blocks *, int, int); - -typedef void (*btf_trace_f2fs_background_gc)(void *, struct super_block *, unsigned int, unsigned int, unsigned int); - -typedef void (*btf_trace_f2fs_gc_begin)(void *, struct super_block *, int, bool, unsigned int, long long int, long long int, long long int, unsigned int, unsigned int, int, unsigned int); - -typedef void (*btf_trace_f2fs_gc_end)(void *, struct super_block *, int, int, int, long long int, long long int, long long int, unsigned int, unsigned int, int, unsigned int); - -typedef void (*btf_trace_f2fs_get_victim)(void *, struct super_block *, int, int, struct victim_sel_policy *, unsigned int, unsigned int, unsigned int); - -typedef void (*btf_trace_f2fs_lookup_start)(void *, struct inode *, struct dentry *, unsigned int); - -typedef void (*btf_trace_f2fs_lookup_end)(void *, struct inode *, struct dentry *, nid_t, int); - -typedef void (*btf_trace_f2fs_rename_start)(void *, struct inode *, struct dentry *, struct inode *, struct dentry *, unsigned int); - -typedef void (*btf_trace_f2fs_rename_end)(void *, struct dentry *, struct dentry *, unsigned int, int); - -typedef void (*btf_trace_f2fs_readdir)(void *, struct inode *, loff_t, loff_t, int); - -typedef void (*btf_trace_f2fs_fallocate)(void *, struct inode *, int, loff_t, loff_t, int); - -typedef void (*btf_trace_f2fs_direct_IO_enter)(void *, struct inode *, struct kiocb *, long int, int); - -typedef void (*btf_trace_f2fs_direct_IO_exit)(void *, struct inode *, loff_t, long unsigned int, int, int); - -typedef void (*btf_trace_f2fs_reserve_new_blocks)(void *, struct inode *, nid_t, unsigned int, blkcnt_t); - -typedef void (*btf_trace_f2fs_submit_page_bio)(void *, struct page *, struct f2fs_io_info *); - -typedef void (*btf_trace_f2fs_submit_page_write)(void *, struct page *, struct f2fs_io_info *); - -typedef void (*btf_trace_f2fs_prepare_write_bio)(void *, struct super_block *, int, struct bio *); - -typedef void (*btf_trace_f2fs_prepare_read_bio)(void *, struct super_block *, int, struct bio *); - -typedef void (*btf_trace_f2fs_submit_read_bio)(void *, struct super_block *, int, struct bio *); - -typedef void (*btf_trace_f2fs_submit_write_bio)(void *, struct super_block *, int, struct bio *); - -typedef void (*btf_trace_f2fs_write_begin)(void *, struct inode *, loff_t, unsigned int); - -typedef void (*btf_trace_f2fs_write_end)(void *, struct inode *, loff_t, unsigned int, unsigned int); - -typedef void (*btf_trace_f2fs_writepage)(void *, struct folio *, int); - -typedef void (*btf_trace_f2fs_do_write_data_page)(void *, struct folio *, int); - -typedef void (*btf_trace_f2fs_readpage)(void *, struct folio *, int); - -typedef void (*btf_trace_f2fs_set_page_dirty)(void *, struct folio *, int); - -typedef void (*btf_trace_f2fs_replace_atomic_write_block)(void *, struct inode *, struct inode *, long unsigned int, block_t, block_t, bool); - -typedef void (*btf_trace_f2fs_filemap_fault)(void *, struct inode *, long unsigned int, vm_flags_t, vm_fault_t); - -typedef void (*btf_trace_f2fs_vm_page_mkwrite)(void *, struct inode *, long unsigned int, vm_flags_t, vm_fault_t); - -typedef void (*btf_trace_f2fs_writepages)(void *, struct inode *, struct writeback_control *, int); - -typedef void (*btf_trace_f2fs_readpages)(void *, struct inode *, long unsigned int, unsigned int); - -typedef void (*btf_trace_f2fs_write_checkpoint)(void *, struct super_block *, int, const char *); - -typedef void (*btf_trace_f2fs_queue_discard)(void *, struct block_device *, block_t, block_t); - -typedef void (*btf_trace_f2fs_issue_discard)(void *, struct block_device *, block_t, block_t); - -typedef void (*btf_trace_f2fs_remove_discard)(void *, struct block_device *, block_t, block_t); - -typedef void (*btf_trace_f2fs_queue_reset_zone)(void *, struct block_device *, block_t); - -typedef void (*btf_trace_f2fs_issue_reset_zone)(void *, struct block_device *, block_t); - -typedef void (*btf_trace_f2fs_issue_flush)(void *, struct block_device *, unsigned int, unsigned int, int); - -typedef void (*btf_trace_f2fs_lookup_extent_tree_start)(void *, struct inode *, unsigned int, enum extent_type); - -typedef void (*btf_trace_f2fs_lookup_read_extent_tree_end)(void *, struct inode *, unsigned int, struct extent_info *); - -typedef void (*btf_trace_f2fs_lookup_age_extent_tree_end)(void *, struct inode *, unsigned int, struct extent_info *); - -typedef void (*btf_trace_f2fs_update_read_extent_tree_range)(void *, struct inode *, unsigned int, unsigned int, block_t, unsigned int); - -typedef void (*btf_trace_f2fs_update_age_extent_tree_range)(void *, struct inode *, unsigned int, unsigned int, long long unsigned int, long long unsigned int); - -typedef void (*btf_trace_f2fs_shrink_extent_tree)(void *, struct f2fs_sb_info *, unsigned int, unsigned int, enum extent_type); - -typedef void (*btf_trace_f2fs_destroy_extent_tree)(void *, struct inode *, unsigned int, enum extent_type); - -typedef void (*btf_trace_f2fs_sync_dirty_inodes_enter)(void *, struct super_block *, int, s64); - -typedef void (*btf_trace_f2fs_sync_dirty_inodes_exit)(void *, struct super_block *, int, s64); - -typedef void (*btf_trace_f2fs_shutdown)(void *, struct f2fs_sb_info *, unsigned int, int); - -typedef void (*btf_trace_f2fs_compress_pages_start)(void *, struct inode *, long unsigned int, unsigned int, unsigned char); - -typedef void (*btf_trace_f2fs_decompress_pages_start)(void *, struct inode *, long unsigned int, unsigned int, unsigned char); - -typedef void (*btf_trace_f2fs_compress_pages_end)(void *, struct inode *, long unsigned int, unsigned int, int); - -typedef void (*btf_trace_f2fs_decompress_pages_end)(void *, struct inode *, long unsigned int, unsigned int, int); - -typedef void (*btf_trace_f2fs_iostat)(void *, struct f2fs_sb_info *, long long unsigned int *); - -typedef void (*btf_trace_f2fs_iostat_latency)(void *, struct f2fs_sb_info *, struct f2fs_iostat_latency(*)[3]); - -typedef void (*btf_trace_f2fs_bmap)(void *, struct inode *, sector_t, sector_t); - -typedef void (*btf_trace_f2fs_fiemap)(void *, struct inode *, sector_t, sector_t, long long unsigned int, unsigned int, int); - -typedef void (*btf_trace_f2fs_dataread_start)(void *, struct inode *, loff_t, int, pid_t, char *, char *); - -typedef void (*btf_trace_f2fs_dataread_end)(void *, struct inode *, loff_t, int); - -typedef void (*btf_trace_f2fs_datawrite_start)(void *, struct inode *, loff_t, int, pid_t, char *, char *); - -typedef void (*btf_trace_f2fs_datawrite_end)(void *, struct inode *, loff_t, int); - -enum { - Opt_gc_background = 0, - Opt_disable_roll_forward = 1, - Opt_norecovery___2 = 2, - Opt_discard___3 = 3, - Opt_nodiscard___2 = 4, - Opt_noheap = 5, - Opt_heap = 6, - Opt_user_xattr___2 = 7, - Opt_nouser_xattr = 8, - Opt_acl___2 = 9, - Opt_noacl = 10, - Opt_active_logs = 11, - Opt_disable_ext_identify = 12, - Opt_inline_xattr = 13, - Opt_noinline_xattr = 14, - Opt_inline_xattr_size = 15, - Opt_inline_data = 16, - Opt_inline_dentry = 17, - Opt_noinline_dentry = 18, - Opt_flush_merge = 19, - Opt_noflush_merge = 20, - Opt_barrier = 21, - Opt_nobarrier = 22, - Opt_fastboot = 23, - Opt_extent_cache = 24, - Opt_noextent_cache = 25, - Opt_noinline_data = 26, - Opt_data_flush = 27, - Opt_reserve_root = 28, - Opt_resgid = 29, - Opt_resuid = 30, - Opt_mode___2 = 31, - Opt_fault_injection = 32, - Opt_fault_type = 33, - Opt_lazytime = 34, - Opt_nolazytime = 35, - Opt_quota___2 = 36, - Opt_noquota___2 = 37, - Opt_usrquota___2 = 38, - Opt_grpquota___2 = 39, - Opt_prjquota___2 = 40, - Opt_usrjquota = 41, - Opt_grpjquota = 42, - Opt_prjjquota = 43, - Opt_offusrjquota = 44, - Opt_offgrpjquota = 45, - Opt_offprjjquota = 46, - Opt_jqfmt_vfsold = 47, - Opt_jqfmt_vfsv0 = 48, - Opt_jqfmt_vfsv1 = 49, - Opt_alloc = 50, - Opt_fsync = 51, - Opt_test_dummy_encryption = 52, - Opt_inlinecrypt = 53, - Opt_checkpoint_disable = 54, - Opt_checkpoint_disable_cap = 55, - Opt_checkpoint_disable_cap_perc = 56, - Opt_checkpoint_enable = 57, - Opt_checkpoint_merge = 58, - Opt_nocheckpoint_merge = 59, - Opt_compress_algorithm = 60, - Opt_compress_log_size = 61, - Opt_compress_extension = 62, - Opt_nocompress_extension = 63, - Opt_compress_chksum = 64, - Opt_compress_mode = 65, - Opt_compress_cache = 66, - Opt_atgc = 67, - Opt_gc_merge = 68, - Opt_nogc_merge = 69, - Opt_discard_unit = 70, - Opt_memory_mode = 71, - Opt_age_extent_cache = 72, - Opt_errors___2 = 73, - Opt_err___3 = 74, -}; - -struct ecryptfs_session_key { - u32 flags; - u32 encrypted_key_size; - u32 decrypted_key_size; - u8 encrypted_key[512]; - u8 decrypted_key[64]; -}; - -struct ecryptfs_password { - u32 password_bytes; - s32 hash_algo; - u32 hash_iterations; - u32 session_key_encryption_key_bytes; - u32 flags; - u8 session_key_encryption_key[64]; - u8 signature[17]; - u8 salt[8]; -}; - -struct ecryptfs_private_key { - u32 key_size; - u32 data_len; - u8 signature[17]; - char pki_type[17]; - u8 data[0]; -}; - -struct ecryptfs_auth_tok { - u16 version; - u16 token_type; - u32 flags; - struct ecryptfs_session_key session_key; - u8 reserved[32]; - union { - struct ecryptfs_password password; - struct ecryptfs_private_key private_key; - } token; -}; - -enum { - Opt_new = 0, - Opt_load = 1, - Opt_update = 2, - Opt_err___4 = 3, -}; - -enum { - Opt_default = 0, - Opt_ecryptfs = 1, - Opt_enc32 = 2, - Opt_error = 3, -}; - -enum derived_key_type { - ENC_KEY = 0, - AUTH_KEY = 1, -}; - -enum { - CRYPTO_KPP_SECRET_TYPE_UNKNOWN = 0, - CRYPTO_KPP_SECRET_TYPE_DH = 1, - CRYPTO_KPP_SECRET_TYPE_ECDH = 2, -}; - -struct kpp_secret { - short unsigned int type; - short unsigned int len; -}; - -enum asn1_class { - ASN1_UNIV = 0, - ASN1_APPL = 1, - ASN1_CONT = 2, - ASN1_PRIV = 3, -}; - -enum asn1_method { - ASN1_PRIM = 0, - ASN1_CONS = 1, -}; - -enum asn1_tag { - ASN1_EOC = 0, - ASN1_BOOL = 1, - ASN1_INT = 2, - ASN1_BTS = 3, - ASN1_OTS = 4, - ASN1_NULL = 5, - ASN1_OID = 6, - ASN1_ODE = 7, - ASN1_EXT = 8, - ASN1_REAL = 9, - ASN1_ENUM = 10, - ASN1_EPDV = 11, - ASN1_UTF8STR = 12, - ASN1_RELOID = 13, - ASN1_SEQ = 16, - ASN1_SET = 17, - ASN1_NUMSTR = 18, - ASN1_PRNSTR = 19, - ASN1_TEXSTR = 20, - ASN1_VIDSTR = 21, - ASN1_IA5STR = 22, - ASN1_UNITIM = 23, - ASN1_GENTIM = 24, - ASN1_GRASTR = 25, - ASN1_VISSTR = 26, - ASN1_GENSTR = 27, - ASN1_UNISTR = 28, - ASN1_CHRSTR = 29, - ASN1_BMPSTR = 30, - ASN1_LONG_TAG = 31, -}; - -typedef int (*asn1_action_t)(void *, size_t, unsigned char, const void *, size_t); - -struct asn1_decoder { - const unsigned char *machine; - size_t machlen; - const asn1_action_t *actions; -}; - -enum asn1_opcode { - ASN1_OP_MATCH = 0, - ASN1_OP_MATCH_OR_SKIP = 1, - ASN1_OP_MATCH_ACT = 2, - ASN1_OP_MATCH_ACT_OR_SKIP = 3, - ASN1_OP_MATCH_JUMP = 4, - ASN1_OP_MATCH_JUMP_OR_SKIP = 5, - ASN1_OP_MATCH_ANY = 8, - ASN1_OP_MATCH_ANY_OR_SKIP = 9, - ASN1_OP_MATCH_ANY_ACT = 10, - ASN1_OP_MATCH_ANY_ACT_OR_SKIP = 11, - ASN1_OP_COND_MATCH_OR_SKIP = 17, - ASN1_OP_COND_MATCH_ACT_OR_SKIP = 19, - ASN1_OP_COND_MATCH_JUMP_OR_SKIP = 21, - ASN1_OP_COND_MATCH_ANY = 24, - ASN1_OP_COND_MATCH_ANY_OR_SKIP = 25, - ASN1_OP_COND_MATCH_ANY_ACT = 26, - ASN1_OP_COND_MATCH_ANY_ACT_OR_SKIP = 27, - ASN1_OP_COND_FAIL = 28, - ASN1_OP_COMPLETE = 29, - ASN1_OP_ACT = 30, - ASN1_OP_MAYBE_ACT = 31, - ASN1_OP_END_SEQ = 32, - ASN1_OP_END_SET = 33, - ASN1_OP_END_SEQ_OF = 34, - ASN1_OP_END_SET_OF = 35, - ASN1_OP_END_SEQ_ACT = 36, - ASN1_OP_END_SET_ACT = 37, - ASN1_OP_END_SEQ_OF_ACT = 38, - ASN1_OP_END_SET_OF_ACT = 39, - ASN1_OP_RETURN = 40, - ASN1_OP__NR = 41, -}; - -enum rsapubkey_actions { - ACT_rsa_get_e = 0, - ACT_rsa_get_n = 1, - NR__rsapubkey_actions = 2, -}; - -enum rsaprivkey_actions { - ACT_rsa_get_d = 0, - ACT_rsa_get_dp = 1, - ACT_rsa_get_dq = 2, - ACT_rsa_get_e___2 = 3, - ACT_rsa_get_n___2 = 4, - ACT_rsa_get_p = 5, - ACT_rsa_get_q = 6, - ACT_rsa_get_qinv = 7, - NR__rsaprivkey_actions = 8, -}; - -struct rsa_key { - const u8 *n; - const u8 *e; - const u8 *d; - const u8 *p; - const u8 *q; - const u8 *dp; - const u8 *dq; - const u8 *qinv; - size_t n_sz; - size_t e_sz; - size_t d_sz; - size_t p_sz; - size_t q_sz; - size_t dp_sz; - size_t dq_sz; - size_t qinv_sz; -}; - -struct akcipher_request { - struct crypto_async_request base; - struct scatterlist *src; - struct scatterlist *dst; - unsigned int src_len; - unsigned int dst_len; - void *__ctx[0]; -}; - -struct crypto_akcipher { - unsigned int reqsize; - struct crypto_tfm base; -}; - -struct akcipher_alg { - int (*sign)(struct akcipher_request *); - int (*verify)(struct akcipher_request *); - int (*encrypt)(struct akcipher_request *); - int (*decrypt)(struct akcipher_request *); - int (*set_pub_key)(struct crypto_akcipher *, const void *, unsigned int); - int (*set_priv_key)(struct crypto_akcipher *, const void *, unsigned int); - unsigned int (*max_size)(struct crypto_akcipher *); - int (*init)(struct crypto_akcipher *); - void (*exit)(struct crypto_akcipher *); - struct crypto_alg base; -}; - -struct rsa_mpi_key { - MPI n; - MPI e; - MPI d; - MPI p; - MPI q; - MPI dp; - MPI dq; - MPI qinv; -}; - -struct sha3_state { - u64 st[25]; - unsigned int rsiz; - unsigned int rsizw; - unsigned int partial; - u8 buf[144]; -}; - -struct chksum_ctx { - u32 key; -}; - -struct chksum_desc_ctx { - u32 crc; -}; - -struct chksum_desc_ctx___2 { - __u16 crc; -}; - -enum asymmetric_payload_bits { - asym_crypto = 0, - asym_subtype = 1, - asym_key_ids = 2, - asym_auth = 3, -}; - -struct asymmetric_key_id { - short unsigned int len; - unsigned char data[0]; -}; - -struct asymmetric_key_ids { - void *id[3]; -}; - -struct public_key_signature; - -struct asymmetric_key_subtype { - struct module *owner; - const char *name; - short unsigned int name_len; - void (*describe)(const struct key *, struct seq_file *); - void (*destroy)(void *, void *); - int (*query)(const struct kernel_pkey_params *, struct kernel_pkey_query *); - int (*eds_op)(struct kernel_pkey_params *, const void *, void *); - int (*verify_signature)(const struct key *, const struct public_key_signature *); -}; - -struct public_key_signature { - struct asymmetric_key_id *auth_ids[3]; - u8 *s; - u8 *digest; - u32 s_size; - u32 digest_size; - const char *pkey_algo; - const char *hash_algo; - const char *encoding; -}; - -struct asymmetric_key_parser { - struct list_head link; - struct module *owner; - const char *name; - int (*parse)(struct key_preparsed_payload *); -}; - -enum pkcs7_actions { - ACT_pkcs7_check_content_type = 0, - ACT_pkcs7_extract_cert = 1, - ACT_pkcs7_note_OID = 2, - ACT_pkcs7_note_certificate_list = 3, - ACT_pkcs7_note_content = 4, - ACT_pkcs7_note_data = 5, - ACT_pkcs7_note_signed_info = 6, - ACT_pkcs7_note_signeddata_version = 7, - ACT_pkcs7_note_signerinfo_version = 8, - ACT_pkcs7_sig_note_authenticated_attr = 9, - ACT_pkcs7_sig_note_digest_algo = 10, - ACT_pkcs7_sig_note_issuer = 11, - ACT_pkcs7_sig_note_pkey_algo = 12, - ACT_pkcs7_sig_note_serial = 13, - ACT_pkcs7_sig_note_set_of_authattrs = 14, - ACT_pkcs7_sig_note_signature = 15, - ACT_pkcs7_sig_note_skid = 16, - NR__pkcs7_actions = 17, -}; - -enum OID { - OID_id_dsa_with_sha1 = 0, - OID_id_dsa = 1, - OID_id_ecPublicKey = 2, - OID_id_prime192v1 = 3, - OID_id_prime256v1 = 4, - OID_id_ecdsa_with_sha1 = 5, - OID_id_ecdsa_with_sha224 = 6, - OID_id_ecdsa_with_sha256 = 7, - OID_id_ecdsa_with_sha384 = 8, - OID_id_ecdsa_with_sha512 = 9, - OID_rsaEncryption = 10, - OID_sha1WithRSAEncryption = 11, - OID_sha256WithRSAEncryption = 12, - OID_sha384WithRSAEncryption = 13, - OID_sha512WithRSAEncryption = 14, - OID_sha224WithRSAEncryption = 15, - OID_data = 16, - OID_signed_data = 17, - OID_email_address = 18, - OID_contentType = 19, - OID_messageDigest = 20, - OID_signingTime = 21, - OID_smimeCapabilites = 22, - OID_smimeAuthenticatedAttrs = 23, - OID_mskrb5 = 24, - OID_krb5 = 25, - OID_krb5u2u = 26, - OID_msIndirectData = 27, - OID_msStatementType = 28, - OID_msSpOpusInfo = 29, - OID_msPeImageDataObjId = 30, - OID_msIndividualSPKeyPurpose = 31, - OID_msOutlookExpress = 32, - OID_ntlmssp = 33, - OID_negoex = 34, - OID_spnego = 35, - OID_IAKerb = 36, - OID_PKU2U = 37, - OID_Scram = 38, - OID_certAuthInfoAccess = 39, - OID_sha1 = 40, - OID_id_ansip384r1 = 41, - OID_id_ansip521r1 = 42, - OID_sha256 = 43, - OID_sha384 = 44, - OID_sha512 = 45, - OID_sha224 = 46, - OID_commonName = 47, - OID_surname = 48, - OID_countryName = 49, - OID_locality = 50, - OID_stateOrProvinceName = 51, - OID_organizationName = 52, - OID_organizationUnitName = 53, - OID_title = 54, - OID_description = 55, - OID_name = 56, - OID_givenName = 57, - OID_initials = 58, - OID_generationalQualifier = 59, - OID_subjectKeyIdentifier = 60, - OID_keyUsage = 61, - OID_subjectAltName = 62, - OID_issuerAltName = 63, - OID_basicConstraints = 64, - OID_crlDistributionPoints = 65, - OID_certPolicies = 66, - OID_authorityKeyIdentifier = 67, - OID_extKeyUsage = 68, - OID_NetlogonMechanism = 69, - OID_appleLocalKdcSupported = 70, - OID_gostCPSignA = 71, - OID_gostCPSignB = 72, - OID_gostCPSignC = 73, - OID_gost2012PKey256 = 74, - OID_gost2012PKey512 = 75, - OID_gost2012Digest256 = 76, - OID_gost2012Digest512 = 77, - OID_gost2012Signature256 = 78, - OID_gost2012Signature512 = 79, - OID_gostTC26Sign256A = 80, - OID_gostTC26Sign256B = 81, - OID_gostTC26Sign256C = 82, - OID_gostTC26Sign256D = 83, - OID_gostTC26Sign512A = 84, - OID_gostTC26Sign512B = 85, - OID_gostTC26Sign512C = 86, - OID_sm2 = 87, - OID_sm3 = 88, - OID_SM2_with_SM3 = 89, - OID_sm3WithRSAEncryption = 90, - OID_TPMLoadableKey = 91, - OID_TPMImportableKey = 92, - OID_TPMSealedData = 93, - OID_sha3_256 = 94, - OID_sha3_384 = 95, - OID_sha3_512 = 96, - OID_id_ecdsa_with_sha3_256 = 97, - OID_id_ecdsa_with_sha3_384 = 98, - OID_id_ecdsa_with_sha3_512 = 99, - OID_id_rsassa_pkcs1_v1_5_with_sha3_256 = 100, - OID_id_rsassa_pkcs1_v1_5_with_sha3_384 = 101, - OID_id_rsassa_pkcs1_v1_5_with_sha3_512 = 102, - OID__NR = 103, -}; - -struct public_key { - void *key; - u32 keylen; - enum OID algo; - void *params; - u32 paramlen; - bool key_is_private; - const char *id_type; - const char *pkey_algo; - long unsigned int key_eflags; -}; - -struct x509_certificate { - struct x509_certificate *next; - struct x509_certificate *signer; - struct public_key *pub; - struct public_key_signature *sig; - char *issuer; - char *subject; - struct asymmetric_key_id *id; - struct asymmetric_key_id *skid; - time64_t valid_from; - time64_t valid_to; - const void *tbs; - unsigned int tbs_size; - unsigned int raw_sig_size; - const void *raw_sig; - const void *raw_serial; - unsigned int raw_serial_size; - unsigned int raw_issuer_size; - const void *raw_issuer; - const void *raw_subject; - unsigned int raw_subject_size; - unsigned int raw_skid_size; - const void *raw_skid; - unsigned int index; - bool seen; - bool verified; - bool self_signed; - bool unsupported_sig; - bool blacklisted; -}; - -struct pkcs7_signed_info { - struct pkcs7_signed_info *next; - struct x509_certificate *signer; - unsigned int index; - bool unsupported_crypto; - bool blacklisted; - const void *msgdigest; - unsigned int msgdigest_len; - unsigned int authattrs_len; - const void *authattrs; - long unsigned int aa_set; - time64_t signing_time; - struct public_key_signature *sig; -}; - -struct pkcs7_message { - struct x509_certificate *certs; - struct x509_certificate *crl; - struct pkcs7_signed_info *signed_infos; - u8 version; - bool have_authattrs; - enum OID data_type; - size_t data_len; - size_t data_hdrlen; - const void *data; -}; - -struct pkcs7_parse_context { - struct pkcs7_message *msg; - struct pkcs7_signed_info *sinfo; - struct pkcs7_signed_info **ppsinfo; - struct x509_certificate *certs; - struct x509_certificate **ppcerts; - long unsigned int data; - enum OID last_oid; - unsigned int x509_index; - unsigned int sinfo_index; - const void *raw_serial; - unsigned int raw_serial_size; - unsigned int raw_issuer_size; - const void *raw_issuer; - const void *raw_skid; - unsigned int raw_skid_size; - bool expect_skid; -}; - -enum { - DISK_EVENT_MEDIA_CHANGE = 1, - DISK_EVENT_EJECT_REQUEST = 2, -}; - -enum { - DISK_EVENT_FLAG_POLL = 1, - DISK_EVENT_FLAG_UEVENT = 2, - DISK_EVENT_FLAG_BLOCK_ON_EXCL_WRITE = 4, -}; - -struct bdev_inode { - struct block_device bdev; - struct inode vfs_inode; -}; - -struct blk_rq_stat { - u64 mean; - u64 min; - u64 max; - u32 nr_samples; - u64 batch; -}; - -struct blk_queue_stats { - struct list_head callbacks; - spinlock_t lock; - int accounting; -}; - -struct blk_stat_callback { - struct list_head list; - struct timer_list timer; - struct blk_rq_stat *cpu_stat; - int (*bucket_fn)(const struct request *); - unsigned int buckets; - struct blk_rq_stat *stat; - void (*timer_fn)(struct blk_stat_callback *); - void *data; - struct callback_head rcu; -}; - -struct blkg_rwstat { - struct percpu_counter cpu_cnt[5]; - atomic64_t aux_cnt[5]; -}; - -struct blkg_rwstat_sample { - u64 cnt[5]; -}; - -struct io_uring_buf { - __u64 addr; - __u32 len; - __u16 bid; - __u16 resv; -}; - -struct io_uring_buf_ring { - union { - struct { - __u64 resv1; - __u32 resv2; - __u16 resv3; - __u16 tail; - }; - struct { - struct {} __empty_bufs; - struct io_uring_buf bufs[0]; - }; - }; -}; - -struct io_buffer { - struct list_head list; - __u64 addr; - __u32 len; - __u16 bid; - __u16 bgid; -}; - -struct io_buffer_list { - union { - struct list_head buf_list; - struct { - struct page **buf_pages; - struct io_uring_buf_ring *buf_ring; - }; - struct callback_head rcu; - }; - __u16 bgid; - __u16 buf_nr_pages; - __u16 nr_entries; - __u16 head; - __u16 mask; - __u16 flags; - atomic_t refs; -}; - -struct io_poll { - struct file *file; - struct wait_queue_head *head; - __poll_t events; - int retries; - struct wait_queue_entry wait; -}; - -struct async_poll { - struct io_poll poll; - struct io_poll *double_poll; -}; - -struct io_issue_def { - unsigned int needs_file: 1; - unsigned int plug: 1; - unsigned int hash_reg_file: 1; - unsigned int unbound_nonreg_file: 1; - unsigned int pollin: 1; - unsigned int pollout: 1; - unsigned int poll_exclusive: 1; - unsigned int buffer_select: 1; - unsigned int audit_skip: 1; - unsigned int ioprio: 1; - unsigned int iopoll: 1; - unsigned int iopoll_queue: 1; - unsigned int vectored: 1; - short unsigned int async_size; - int (*issue)(struct io_kiocb *, unsigned int); - int (*prep)(struct io_kiocb *, const struct io_uring_sqe *); -}; - -enum { - IO_APOLL_OK = 0, - IO_APOLL_ABORTED = 1, - IO_APOLL_READY = 2, -}; - -struct io_cancel_data { - struct io_ring_ctx *ctx; - union { - u64 data; - struct file *file; - }; - u8 opcode; - u32 flags; - int seq; -}; - -struct io_poll_update { - struct file *file; - u64 old_user_data; - u64 new_user_data; - __poll_t events; - bool update_events; - bool update_user_data; -}; - -struct io_poll_table { - struct poll_table_struct pt; - struct io_kiocb *req; - int nr_entries; - int error; - bool owning; - __poll_t result_mask; -}; - -enum { - IOU_POLL_DONE = 0, - IOU_POLL_NO_ACTION = 1, - IOU_POLL_REMOVE_POLL_USE_RES = 2, - IOU_POLL_REISSUE = 3, - IOU_POLL_REQUEUE = 4, -}; - -typedef struct { - __u8 b[16]; -} guid_t; - -struct iov_iter_state { - size_t iov_offset; - size_t count; - long unsigned int nr_segs; -}; - -typedef s32 compat_ssize_t; - -struct compat_iovec { - compat_uptr_t iov_base; - compat_size_t iov_len; -}; - -typedef size_t (*iov_step_f)(void *, size_t, size_t, void *, void *); - -typedef size_t (*iov_ustep_f)(void *, size_t, size_t, void *, void *); - -struct ZSTD_CDict_s { - const void *dictContent; - size_t dictContentSize; - ZSTD_dictContentType_e dictContentType; - U32 *entropyWorkspace; - ZSTD_cwksp workspace; - ZSTD_matchState_t matchState; - ZSTD_compressedBlockState_t cBlockState; - ZSTD_customMem customMem; - U32 dictID; - int compressionLevel; - ZSTD_paramSwitch_e useRowMatchFinder; -}; - -struct seqDef_s { - U32 offBase; - U16 litLength; - U16 mlBase; -}; - -typedef struct { - U32 litLength; - U32 matchLength; -} ZSTD_sequenceLength; - -struct repcodes_s { - U32 rep[3]; -}; - -typedef struct repcodes_s repcodes_t; - -enum cpu_pm_event { - CPU_PM_ENTER = 0, - CPU_PM_ENTER_FAILED = 1, - CPU_PM_EXIT = 2, - CPU_CLUSTER_PM_ENTER = 3, - CPU_CLUSTER_PM_ENTER_FAILED = 4, - CPU_CLUSTER_PM_EXIT = 5, -}; - -typedef int (*of_init_fn_2)(struct device_node *, struct device_node *); - -enum { - IRQ_SET_MASK_OK = 0, - IRQ_SET_MASK_OK_NOCOPY = 1, - IRQ_SET_MASK_OK_DONE = 2, -}; - -enum { - IRQCHIP_SET_TYPE_MASKED = 1, - IRQCHIP_EOI_IF_HANDLED = 2, - IRQCHIP_MASK_ON_SUSPEND = 4, - IRQCHIP_ONOFFLINE_ENABLED = 8, - IRQCHIP_SKIP_SET_WAKE = 16, - IRQCHIP_ONESHOT_SAFE = 32, - IRQCHIP_EOI_THREADED = 64, - IRQCHIP_SUPPORTS_LEVEL_MSI = 128, - IRQCHIP_SUPPORTS_NMI = 256, - IRQCHIP_ENABLE_WAKEUP_ON_SUSPEND = 512, - IRQCHIP_AFFINITY_PRE_STARTUP = 1024, - IRQCHIP_IMMUTABLE = 2048, -}; - -typedef int (*of_irq_init_cb_t)(struct device_node *, struct device_node *); - -struct msi_alloc_info { - struct msi_desc *desc; - irq_hw_number_t hwirq; - long unsigned int flags; - union { - long unsigned int ul; - void *ptr; - } scratchpad[2]; -}; - -typedef struct msi_alloc_info msi_alloc_info_t; - -struct msi_domain_ops { - irq_hw_number_t (*get_hwirq)(struct msi_domain_info *, msi_alloc_info_t *); - int (*msi_init)(struct irq_domain *, struct msi_domain_info *, unsigned int, irq_hw_number_t, msi_alloc_info_t *); - void (*msi_free)(struct irq_domain *, struct msi_domain_info *, unsigned int); - int (*msi_prepare)(struct irq_domain *, struct device *, int, msi_alloc_info_t *); - void (*prepare_desc)(struct irq_domain *, msi_alloc_info_t *, struct msi_desc *); - void (*set_desc)(msi_alloc_info_t *, struct msi_desc *); - int (*domain_alloc_irqs)(struct irq_domain *, struct device *, int); - void (*domain_free_irqs)(struct irq_domain *, struct device *); - void (*msi_post_free)(struct irq_domain *, struct device *); - int (*msi_translate)(struct irq_domain *, struct irq_fwspec *, irq_hw_number_t *, unsigned int *); -}; - -struct msi_domain_info { - u32 flags; - enum irq_domain_bus_token bus_token; - unsigned int hwsize; - struct msi_domain_ops *ops; - struct irq_chip *chip; - void *chip_data; - irq_flow_handler_t handler; - void *handler_data; - const char *handler_name; - void *data; -}; - -enum gic_type { - GIC_V2 = 0, - GIC_V3 = 1, -}; - -struct gic_kvm_info { - enum gic_type type; - struct resource vcpu; - unsigned int maint_irq; - bool no_maint_irq_mask; - struct resource vctrl; - bool has_v4; - bool has_v4_1; - bool no_hw_deactivation; -}; - -union gic_base { - void *common_base; - void **percpu_base; -}; - -struct gic_chip_data { - union gic_base dist_base; - union gic_base cpu_base; - void *raw_dist_base; - void *raw_cpu_base; - u32 percpu_offset; - u32 saved_spi_enable[32]; - u32 saved_spi_active[32]; - u32 saved_spi_conf[64]; - u32 saved_spi_target[255]; - u32 *saved_ppi_enable; - u32 *saved_ppi_active; - u32 *saved_ppi_conf; - struct irq_domain *domain; - unsigned int gic_irqs; -}; - -typedef resource_size_t (*resource_alignf)(void *, const struct resource *, resource_size_t, resource_size_t); - -typedef u64 pci_bus_addr_t; - -struct pci_bus_region { - pci_bus_addr_t start; - pci_bus_addr_t end; -}; - -struct msi_domain_template { - char name[48]; - struct irq_chip chip; - struct msi_domain_ops ops; - struct msi_domain_info info; -}; - -struct pci_config_window; - -struct pci_ecam_ops { - unsigned int bus_shift; - struct pci_ops pci_ops; - int (*init)(struct pci_config_window *); -}; - -struct pci_config_window { - struct resource res; - struct resource busr; - unsigned int bus_shift; - void *priv; - const struct pci_ecam_ops *ops; - union { - void *win; - void **winp; - }; - struct device *parent; -}; - -struct clk_div_table { - unsigned int val; - unsigned int div; -}; - -struct clk_divider { - struct clk_hw hw; - void *reg; - u8 shift; - u8 width; - u8 flags; - const struct clk_div_table *table; - spinlock_t *lock; -}; - -struct virtio_mmio_device { - struct virtio_device vdev; - struct platform_device *pdev; - void *base; - long unsigned int version; - spinlock_t lock; - struct list_head virtqueues; -}; - -struct virtio_mmio_vq_info { - struct virtqueue *vq; - struct list_head node; -}; - -struct ldsem_waiter { - struct list_head list; - struct task_struct *task; -}; - -enum dmi_field { - DMI_NONE = 0, - DMI_BIOS_VENDOR = 1, - DMI_BIOS_VERSION = 2, - DMI_BIOS_DATE = 3, - DMI_BIOS_RELEASE = 4, - DMI_EC_FIRMWARE_RELEASE = 5, - DMI_SYS_VENDOR = 6, - DMI_PRODUCT_NAME = 7, - DMI_PRODUCT_VERSION = 8, - DMI_PRODUCT_SERIAL = 9, - DMI_PRODUCT_UUID = 10, - DMI_PRODUCT_SKU = 11, - DMI_PRODUCT_FAMILY = 12, - DMI_BOARD_VENDOR = 13, - DMI_BOARD_NAME = 14, - DMI_BOARD_VERSION = 15, - DMI_BOARD_SERIAL = 16, - DMI_BOARD_ASSET_TAG = 17, - DMI_CHASSIS_VENDOR = 18, - DMI_CHASSIS_TYPE = 19, - DMI_CHASSIS_VERSION = 20, - DMI_CHASSIS_SERIAL = 21, - DMI_CHASSIS_ASSET_TAG = 22, - DMI_STRING_MAX = 23, - DMI_OEM_STRING = 24, -}; - -struct dmi_strmatch { - unsigned char slot: 7; - unsigned char exact_match: 1; - char substr[79]; -}; - -struct dmi_system_id { - int (*callback)(const struct dmi_system_id *); - const char *ident; - struct dmi_strmatch matches[4]; - void *driver_data; -}; - -enum cti_port_type { - CTI_PORT_TYPE_NONE = 0, - CTI_PORT_TYPE_RS232 = 1, - CTI_PORT_TYPE_RS422_485 = 2, - CTI_PORT_TYPE_RS232_422_485_HW = 3, - CTI_PORT_TYPE_RS232_422_485_SW = 4, - CTI_PORT_TYPE_RS232_422_485_4B = 5, - CTI_PORT_TYPE_RS232_422_485_2B = 6, - CTI_PORT_TYPE_MAX = 7, -}; - -struct exar8250_platform { - int (*rs485_config)(struct uart_port *, struct ktermios *, struct serial_rs485 *); - const struct serial_rs485 *rs485_supported; - int (*register_gpio)(struct pci_dev *, struct uart_8250_port *); - void (*unregister_gpio)(struct uart_8250_port *); -}; - -struct exar8250; - -struct exar8250_board { - unsigned int num_ports; - unsigned int reg_shift; - int (*setup)(struct exar8250 *, struct pci_dev *, struct uart_8250_port *, int); - void (*exit)(struct pci_dev *); -}; - -struct exar8250 { - unsigned int nr; - unsigned int osc_freq; - struct exar8250_board *board; - void *virt; - int line[0]; -}; - -struct dma_buf_export_info { - const char *exp_name; - struct module *owner; - const struct dma_buf_ops *ops; - size_t size; - int flags; - struct dma_resv *resv; - void *priv; -}; - -struct drm_prime_handle { - __u32 handle; - __u32 flags; - __s32 fd; -}; - -struct drm_prime_member { - struct dma_buf *dma_buf; - uint32_t handle; - struct rb_node dmabuf_rb; - struct rb_node handle_rb; -}; - -enum backlight_type { - BACKLIGHT_RAW = 1, - BACKLIGHT_PLATFORM = 2, - BACKLIGHT_FIRMWARE = 3, - BACKLIGHT_TYPE_MAX = 4, -}; - -enum backlight_scale { - BACKLIGHT_SCALE_UNKNOWN = 0, - BACKLIGHT_SCALE_LINEAR = 1, - BACKLIGHT_SCALE_NON_LINEAR = 2, -}; - -struct backlight_device; - -struct backlight_ops { - unsigned int options; - int (*update_status)(struct backlight_device *); - int (*get_brightness)(struct backlight_device *); - bool (*controls_device)(struct backlight_device *, struct device *); -}; - -struct backlight_properties { - int brightness; - int max_brightness; - int power; - enum backlight_type type; - unsigned int state; - enum backlight_scale scale; -}; - -struct backlight_device { - struct backlight_properties props; - struct mutex update_lock; - struct mutex ops_lock; - const struct backlight_ops *ops; - struct notifier_block fb_notif; - struct list_head entry; - struct device dev; - bool fb_bl_on[32]; - int use_count; -}; - -struct display_timing; - -struct drm_panel; - -struct drm_panel_funcs { - int (*prepare)(struct drm_panel *); - int (*enable)(struct drm_panel *); - int (*disable)(struct drm_panel *); - int (*unprepare)(struct drm_panel *); - int (*get_modes)(struct drm_panel *, struct drm_connector *); - enum drm_panel_orientation (*get_orientation)(struct drm_panel *); - int (*get_timings)(struct drm_panel *, unsigned int, struct display_timing *); - void (*debugfs_init)(struct drm_panel *, struct dentry *); -}; - -struct drm_panel { - struct device *dev; - struct backlight_device *backlight; - const struct drm_panel_funcs *funcs; - int connector_type; - struct list_head list; - struct list_head followers; - struct mutex follower_lock; - bool prepare_prev_first; - bool prepared; - bool enabled; -}; - -struct drm_panel_follower; - -struct drm_panel_follower_funcs { - int (*panel_prepared)(struct drm_panel_follower *); - int (*panel_unpreparing)(struct drm_panel_follower *); -}; - -struct drm_panel_follower { - const struct drm_panel_follower_funcs *funcs; - struct list_head list; - struct drm_panel *panel; -}; - -struct virtio_gpu_mem_entry { - __le64 addr; - __le32 length; - __le32 padding; -}; - -struct drm_gem_shmem_object { - struct drm_gem_object base; - struct page **pages; - unsigned int pages_use_count; - int madv; - struct list_head madv_list; - struct sg_table *sgt; - void *vaddr; - unsigned int vmap_use_count; - bool pages_mark_dirty_on_put: 1; - bool pages_mark_accessed_on_put: 1; - bool map_wc: 1; -}; - -struct virtio_gpu_object_params { - long unsigned int size; - bool dumb; - bool virgl; - bool blob; - uint32_t format; - uint32_t width; - uint32_t height; - uint32_t target; - uint32_t bind; - uint32_t depth; - uint32_t array_size; - uint32_t last_level; - uint32_t nr_samples; - uint32_t flags; - uint32_t ctx_id; - uint32_t blob_mem; - uint32_t blob_flags; - uint64_t blob_id; -}; - -struct virtio_gpu_object { - struct drm_gem_shmem_object base; - uint32_t hw_res_handle; - bool dumb; - bool created; - bool host3d_blob; - bool guest_blob; - uint32_t blob_mem; - uint32_t blob_flags; - int uuid_state; - uuid_t uuid; -}; - -struct virtio_gpu_object_shmem { - struct virtio_gpu_object base; -}; - -struct virtio_gpu_object_vram { - struct virtio_gpu_object base; - uint32_t map_state; - uint32_t map_info; - struct drm_mm_node vram_node; -}; - -struct virtio_gpu_object_array { - struct ww_acquire_ctx ticket; - struct list_head next; - u32 nents; - u32 total; - struct drm_gem_object *objs[0]; -}; - -struct virtio_gpu_fence_event { - struct drm_pending_event base; - struct drm_event event; -}; - -struct virtio_gpu_fence { - struct dma_fence f; - uint32_t ring_idx; - uint64_t fence_id; - bool emit_fence_info; - struct virtio_gpu_fence_event *e; - struct virtio_gpu_fence_driver *drv; - struct list_head node; -}; - -struct cpu_attr { - struct device_attribute attr; - const struct cpumask * const map; -}; - -struct regmap_range_cfg; - -struct regmap_config { - const char *name; - int reg_bits; - int reg_stride; - int reg_shift; - unsigned int reg_base; - int pad_bits; - int val_bits; - bool (*writeable_reg)(struct device *, unsigned int); - bool (*readable_reg)(struct device *, unsigned int); - bool (*volatile_reg)(struct device *, unsigned int); - bool (*precious_reg)(struct device *, unsigned int); - bool (*writeable_noinc_reg)(struct device *, unsigned int); - bool (*readable_noinc_reg)(struct device *, unsigned int); - int (*reg_read)(void *, unsigned int, unsigned int *); - int (*reg_write)(void *, unsigned int, unsigned int); - int (*reg_update_bits)(void *, unsigned int, unsigned int, unsigned int); - int (*read)(void *, const void *, size_t, void *, size_t); - int (*write)(void *, const void *, size_t); - size_t max_raw_read; - size_t max_raw_write; - bool can_sleep; - bool fast_io; - bool io_port; - bool disable_locking; - regmap_lock lock; - regmap_unlock unlock; - void *lock_arg; - unsigned int max_register; - bool max_register_is_0; - const struct regmap_access_table *wr_table; - const struct regmap_access_table *rd_table; - const struct regmap_access_table *volatile_table; - const struct regmap_access_table *precious_table; - const struct regmap_access_table *wr_noinc_table; - const struct regmap_access_table *rd_noinc_table; - const struct reg_default *reg_defaults; - unsigned int num_reg_defaults; - enum regcache_type cache_type; - const void *reg_defaults_raw; - unsigned int num_reg_defaults_raw; - long unsigned int read_flag_mask; - long unsigned int write_flag_mask; - bool zero_flag_mask; - bool use_single_read; - bool use_single_write; - bool use_relaxed_mmio; - bool can_multi_write; - bool use_hwlock; - bool use_raw_spinlock; - unsigned int hwlock_id; - unsigned int hwlock_mode; - enum regmap_endian reg_format_endian; - enum regmap_endian val_format_endian; - const struct regmap_range_cfg *ranges; - unsigned int num_ranges; -}; - -struct regmap_range_cfg { - const char *name; - unsigned int range_min; - unsigned int range_max; - unsigned int selector_reg; - unsigned int selector_mask; - int selector_shift; - unsigned int window_start; - unsigned int window_len; -}; - -struct regmap_range_node { - struct rb_node node; - const char *name; - struct regmap *map; - unsigned int range_min; - unsigned int range_max; - unsigned int selector_reg; - unsigned int selector_mask; - int selector_shift; - unsigned int window_start; - unsigned int window_len; -}; - -enum dma_fence_flag_bits { - DMA_FENCE_FLAG_SIGNALED_BIT = 0, - DMA_FENCE_FLAG_TIMESTAMP_BIT = 1, - DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT = 2, - DMA_FENCE_FLAG_USER_BITS = 3, -}; - -struct dma_fence_chain { - struct dma_fence base; - struct dma_fence *prev; - u64 prev_seqno; - struct dma_fence *fence; - union { - struct dma_fence_cb cb; - struct irq_work work; - }; - spinlock_t lock; -}; - -struct dma_fence_unwrap { - struct dma_fence *chain; - struct dma_fence *array; - unsigned int index; -}; - -struct sync_file { - struct file *file; - char user_name[32]; - struct list_head sync_file_list; - wait_queue_head_t wq; - long unsigned int flags; - struct dma_fence *fence; - struct dma_fence_cb cb; -}; - -struct sync_merge_data { - char name[32]; - __s32 fd2; - __s32 fence; - __u32 flags; - __u32 pad; -}; - -struct sync_fence_info { - char obj_name[32]; - char driver_name[32]; - __s32 status; - __u32 flags; - __u64 timestamp_ns; -}; - -struct sync_file_info { - char name[32]; - __s32 status; - __u32 flags; - __u32 num_fences; - __u32 pad; - __u64 sync_fence_info; -}; - -struct sync_set_deadline { - __u64 deadline_ns; - __u64 pad; -}; - -struct scsi_lun { - __u8 scsi_lun[8]; -}; - -struct scsi_sense_hdr { - u8 response_code; - u8 sense_key; - u8 asc; - u8 ascq; - u8 byte4; - u8 byte5; - u8 byte6; - u8 additional_length; -}; - -enum scsi_host_status { - DID_OK = 0, - DID_NO_CONNECT = 1, - DID_BUS_BUSY = 2, - DID_TIME_OUT = 3, - DID_BAD_TARGET = 4, - DID_ABORT = 5, - DID_PARITY = 6, - DID_ERROR = 7, - DID_RESET = 8, - DID_BAD_INTR = 9, - DID_PASSTHROUGH = 10, - DID_SOFT_ERROR = 11, - DID_IMM_RETRY = 12, - DID_REQUEUE = 13, - DID_TRANSPORT_DISRUPTED = 14, - DID_TRANSPORT_FAILFAST = 15, - DID_TRANSPORT_MARGINAL = 20, -}; - -enum scsi_timeouts { - SCSI_DEFAULT_EH_TIMEOUT = 10000, -}; - -enum scsi_scan_mode { - SCSI_SCAN_INITIAL = 0, - SCSI_SCAN_RESCAN = 1, - SCSI_SCAN_MANUAL = 2, -}; - -typedef void (*activate_complete)(void *, int); - -struct scsi_device_handler { - struct list_head list; - struct module *module; - const char *name; - enum scsi_disposition (*check_sense)(struct scsi_device *, struct scsi_sense_hdr *); - int (*attach)(struct scsi_device *); - void (*detach)(struct scsi_device *); - int (*activate)(struct scsi_device *, activate_complete, void *); - blk_status_t (*prep_fn)(struct scsi_device *, struct request *); - int (*set_params)(struct scsi_device *, const char *); - void (*rescan)(struct scsi_device *); -}; - -struct scsi_failure { - int result; - u8 sense; - u8 asc; - u8 ascq; - s8 allowed; - s8 retries; -}; - -struct scsi_failures { - int total_allowed; - int total_retries; - struct scsi_failure *failure_definitions; -}; - -struct scsi_exec_args { - unsigned char *sense; - unsigned int sense_len; - struct scsi_sense_hdr *sshdr; - blk_mq_req_flags_t req_flags; - int scmd_flags; - int *resid; - struct scsi_failures *failures; -}; - -struct scsi_driver { - struct device_driver gendrv; - int (*resume)(struct device *); - void (*rescan)(struct device *); - blk_status_t (*init_command)(struct scsi_cmnd *); - void (*uninit_command)(struct scsi_cmnd *); - int (*done)(struct scsi_cmnd *); - int (*eh_action)(struct scsi_cmnd *, int); - void (*eh_reset)(struct scsi_cmnd *); -}; - -struct attribute_container { - struct list_head node; - struct klist containers; - struct class *class; - const struct attribute_group *grp; - struct device_attribute **attrs; - int (*match)(struct attribute_container *, struct device *); - long unsigned int flags; -}; - -struct transport_container { - struct attribute_container ac; - const struct attribute_group *statistics; -}; - -struct scsi_transport_template { - struct transport_container host_attrs; - struct transport_container target_attrs; - struct transport_container device_attrs; - int (*user_scan)(struct Scsi_Host *, uint, uint, u64); - int device_size; - int device_private_offset; - int target_size; - int target_private_offset; - int host_size; - unsigned int create_work_queue: 1; - void (*eh_strategy_handler)(struct Scsi_Host *); -}; - -struct async_scan_data { - struct list_head list; - struct Scsi_Host *shost; - struct completion prev_finished; -}; - -enum limits { - REKEY_AFTER_MESSAGES = 1152921504606846976ULL, - REJECT_AFTER_MESSAGES = 18446744073709543486ULL, - REKEY_TIMEOUT = 5ULL, - REKEY_TIMEOUT_JITTER_MAX_JIFFIES = 333ULL, - REKEY_AFTER_TIME = 120ULL, - REJECT_AFTER_TIME = 180ULL, - INITIATIONS_PER_SECOND = 50ULL, - MAX_PEERS_PER_DEVICE = 1048576ULL, - KEEPALIVE_TIMEOUT = 10ULL, - MAX_TIMER_HANDSHAKES = 18ULL, - MAX_QUEUED_INCOMING_HANDSHAKES = 4096ULL, - MAX_STAGED_PACKETS = 128ULL, - MAX_QUEUED_PACKETS = 1024ULL, -}; - -enum message_type { - MESSAGE_INVALID = 0, - MESSAGE_HANDSHAKE_INITIATION = 1, - MESSAGE_HANDSHAKE_RESPONSE = 2, - MESSAGE_HANDSHAKE_COOKIE = 3, - MESSAGE_DATA = 4, -}; - -struct message_header { - __le32 type; -}; - -struct message_macs { - u8 mac1[16]; - u8 mac2[16]; -}; - -struct message_handshake_initiation { - struct message_header header; - __le32 sender_index; - u8 unencrypted_ephemeral[32]; - u8 encrypted_static[48]; - u8 encrypted_timestamp[28]; - struct message_macs macs; -}; - -struct message_handshake_response { - struct message_header header; - __le32 sender_index; - __le32 receiver_index; - u8 unencrypted_ephemeral[32]; - u8 encrypted_nothing[16]; - struct message_macs macs; -}; - -struct message_handshake_cookie { - struct message_header header; - __le32 receiver_index; - u8 nonce[24]; - u8 encrypted_cookie[32]; -}; - -struct message_data { - struct message_header header; - __le32 key_idx; - __le64 counter; - u8 encrypted_data[0]; -}; - -enum message_alignments { - MESSAGE_PADDING_MULTIPLE = 16, - MESSAGE_MINIMUM_LENGTH = 32, -}; - -enum { - HANDSHAKE_DSCP = 136, -}; - -enum packet_state { - PACKET_STATE_UNCRYPTED = 0, - PACKET_STATE_CRYPTED = 1, - PACKET_STATE_DEAD = 2, -}; - -struct packet_cb { - u64 nonce; - struct noise_keypair *keypair; - atomic_t state; - u32 mtu; - u8 ds; -}; - -struct mdio_driver { - struct mdio_driver_common mdiodrv; - int (*probe)(struct mdio_device *); - void (*remove)(struct mdio_device *); - void (*shutdown)(struct mdio_device *); -}; - -enum pkt_hash_types { - PKT_HASH_TYPE_NONE = 0, - PKT_HASH_TYPE_L2 = 1, - PKT_HASH_TYPE_L3 = 2, - PKT_HASH_TYPE_L4 = 3, -}; - -enum netdev_xdp_act { - NETDEV_XDP_ACT_BASIC = 1, - NETDEV_XDP_ACT_REDIRECT = 2, - NETDEV_XDP_ACT_NDO_XMIT = 4, - NETDEV_XDP_ACT_XSK_ZEROCOPY = 8, - NETDEV_XDP_ACT_HW_OFFLOAD = 16, - NETDEV_XDP_ACT_RX_SG = 32, - NETDEV_XDP_ACT_NDO_XMIT_SG = 64, - NETDEV_XDP_ACT_MASK = 127, -}; - -struct netdev_hw_addr { - struct list_head list; - struct rb_node node; - unsigned char addr[32]; - unsigned char type; - bool global_use; - int sync_cnt; - int refcount; - int synced; - struct callback_head callback_head; -}; - -enum { - NAPIF_STATE_SCHED = 1, - NAPIF_STATE_MISSED = 2, - NAPIF_STATE_DISABLE = 4, - NAPIF_STATE_NPSVC = 8, - NAPIF_STATE_LISTED = 16, - NAPIF_STATE_NO_BUSY_POLL = 32, - NAPIF_STATE_IN_BUSY_POLL = 64, - NAPIF_STATE_PREFER_BUSY_POLL = 128, - NAPIF_STATE_THREADED = 256, - NAPIF_STATE_SCHED_THREADED = 512, -}; - -enum gro_result { - GRO_MERGED = 0, - GRO_MERGED_FREE = 1, - GRO_HELD = 2, - GRO_NORMAL = 3, - GRO_CONSUMED = 4, -}; - -typedef enum gro_result gro_result_t; - -struct xdp_umem; - -struct xsk_queue; - -struct xdp_buff_xsk; - -struct xdp_desc; - -struct xsk_buff_pool { - struct device *dev; - struct net_device *netdev; - struct list_head xsk_tx_list; - spinlock_t xsk_tx_list_lock; - refcount_t users; - struct xdp_umem *umem; - struct work_struct work; - spinlock_t rx_lock; - struct list_head free_list; - struct list_head xskb_list; - u32 heads_cnt; - u16 queue_id; - struct xsk_queue *fq; - struct xsk_queue *cq; - dma_addr_t *dma_pages; - struct xdp_buff_xsk *heads; - struct xdp_desc *tx_descs; - u64 chunk_mask; - u64 addrs_cnt; - u32 free_list_cnt; - u32 dma_pages_cnt; - u32 free_heads_cnt; - u32 headroom; - u32 chunk_size; - u32 chunk_shift; - u32 frame_len; - u8 tx_metadata_len; - u8 cached_need_wakeup; - bool uses_need_wakeup; - bool unaligned; - bool tx_sw_csum; - void *addrs; - spinlock_t cq_lock; - struct xdp_buff_xsk *free_heads[0]; - long: 64; - long: 64; -}; - -struct dim_cq_moder; - -struct dim_irq_moder { - u8 profile_flags; - u8 coal_flags; - u8 dim_rx_mode; - u8 dim_tx_mode; - struct dim_cq_moder *rx_profile; - struct dim_cq_moder *tx_profile; - void (*rx_dim_work)(struct work_struct *); - void (*tx_dim_work)(struct work_struct *); -}; - -enum ethtool_stringset { - ETH_SS_TEST = 0, - ETH_SS_STATS = 1, - ETH_SS_PRIV_FLAGS = 2, - ETH_SS_NTUPLE_FILTERS = 3, - ETH_SS_FEATURES = 4, - ETH_SS_RSS_HASH_FUNCS = 5, - ETH_SS_TUNABLES = 6, - ETH_SS_PHY_STATS = 7, - ETH_SS_PHY_TUNABLES = 8, - ETH_SS_LINK_MODES = 9, - ETH_SS_MSG_CLASSES = 10, - ETH_SS_WOL_MODES = 11, - ETH_SS_SOF_TIMESTAMPING = 12, - ETH_SS_TS_TX_TYPES = 13, - ETH_SS_TS_RX_FILTERS = 14, - ETH_SS_UDP_TUNNEL_TYPES = 15, - ETH_SS_STATS_STD = 16, - ETH_SS_STATS_ETH_PHY = 17, - ETH_SS_STATS_ETH_MAC = 18, - ETH_SS_STATS_ETH_CTRL = 19, - ETH_SS_STATS_RMON = 20, - ETH_SS_COUNT = 21, -}; - -struct virtio_net_config { - __u8 mac[6]; - __virtio16 status; - __virtio16 max_virtqueue_pairs; - __virtio16 mtu; - __le32 speed; - __u8 duplex; - __u8 rss_max_key_size; - __le16 rss_max_indirection_table_length; - __le32 supported_hash_types; -}; - -struct virtio_net_hdr_v1 { - __u8 flags; - __u8 gso_type; - __virtio16 hdr_len; - __virtio16 gso_size; - union { - struct { - __virtio16 csum_start; - __virtio16 csum_offset; - }; - struct { - __virtio16 start; - __virtio16 offset; - } csum; - struct { - __le16 segments; - __le16 dup_acks; - } rsc; - }; - __virtio16 num_buffers; -}; - -struct virtio_net_hdr_v1_hash { - struct virtio_net_hdr_v1 hdr; - __le32 hash_value; - __le16 hash_report; - __le16 padding; -}; - -struct virtio_net_hdr_mrg_rxbuf { - struct virtio_net_hdr hdr; - __virtio16 num_buffers; -}; - -struct virtio_net_ctrl_hdr { - __u8 class; - __u8 cmd; -}; - -typedef __u8 virtio_net_ctrl_ack; - -struct virtio_net_ctrl_mac { - __virtio32 entries; - __u8 macs[0]; -}; - -struct virtio_net_ctrl_mq { - __virtio16 virtqueue_pairs; -}; - -struct virtio_net_ctrl_coal_tx { - __le32 tx_max_packets; - __le32 tx_usecs; -}; - -struct virtio_net_ctrl_coal_rx { - __le32 rx_max_packets; - __le32 rx_usecs; -}; - -struct virtio_net_ctrl_coal { - __le32 max_packets; - __le32 max_usecs; -}; - -struct virtio_net_ctrl_coal_vq { - __le16 vqn; - __le16 reserved; - struct virtio_net_ctrl_coal coal; -}; - -struct virtio_net_stats_capabilities { - __le64 supported_stats_types[1]; -}; - -struct virtio_net_ctrl_queue_stats { - struct { - __le16 vq_index; - __le16 reserved[3]; - __le64 types_bitmap[1]; - } stats[1]; -}; - -struct virtio_net_stats_reply_hdr { - __u8 type; - __u8 reserved; - __le16 vq_index; - __le16 reserved1; - __le16 size; -}; - -struct dim_cq_moder { - u16 usec; - u16 pkts; - u16 comps; - u8 cq_period_mode; - struct callback_head rcu; -}; - -struct dim_sample { - ktime_t time; - u32 pkt_ctr; - u32 byte_ctr; - u16 event_ctr; - u32 comp_ctr; -}; - -struct dim_stats { - int ppms; - int bpms; - int epms; - int cpms; - int cpe_ratio; -}; - -struct dim { - u8 state; - struct dim_stats prev_stats; - struct dim_sample start_sample; - struct dim_sample measuring_sample; - struct work_struct work; - void *priv; - u8 profile_ix; - u8 mode; - u8 tune_state; - u8 steps_right; - u8 steps_left; - u8 tired; -}; - -enum dim_cq_period_mode { - DIM_CQ_PERIOD_MODE_START_FROM_EQE = 0, - DIM_CQ_PERIOD_MODE_START_FROM_CQE = 1, - DIM_CQ_PERIOD_NUM_MODES = 2, -}; - -enum dim_state { - DIM_START_MEASURE = 0, - DIM_MEASURE_IN_PROGRESS = 1, - DIM_APPLY_NEW_PROFILE = 2, -}; - -struct rx_queue_attribute { - struct attribute attr; - ssize_t (*show)(struct netdev_rx_queue *, char *); - ssize_t (*store)(struct netdev_rx_queue *, const char *, size_t); -}; - -struct xdp_desc { - __u64 addr; - __u32 len; - __u32 options; -}; - -struct xdp_umem { - void *addrs; - u64 size; - u32 headroom; - u32 chunk_size; - u32 chunks; - u32 npgs; - struct user_struct *user; - refcount_t users; - u8 flags; - u8 tx_metadata_len; - bool zc; - struct page **pgs; - int id; - struct list_head xsk_dma_list; - struct work_struct work; -}; - -struct xdp_buff_xsk { - struct xdp_buff xdp; - u8 cb[24]; - dma_addr_t dma; - dma_addr_t frame_dma; - struct xsk_buff_pool *pool; - u64 orig_addr; - struct list_head free_list_node; - struct list_head xskb_list_node; -}; - -struct ewma_pkt_len { - long unsigned int internal; -}; - -struct virtnet_stat_desc { - char desc[32]; - size_t offset; - size_t qstat_offset; -}; - -struct virtnet_sq_free_stats { - u64 packets; - u64 bytes; - u64 napi_packets; - u64 napi_bytes; -}; - -struct virtnet_sq_stats { - struct u64_stats_sync syncp; - u64_stats_t packets; - u64_stats_t bytes; - u64_stats_t xdp_tx; - u64_stats_t xdp_tx_drops; - u64_stats_t kicks; - u64_stats_t tx_timeouts; - u64_stats_t stop; - u64_stats_t wake; -}; - -struct virtnet_rq_stats { - struct u64_stats_sync syncp; - u64_stats_t packets; - u64_stats_t bytes; - u64_stats_t drops; - u64_stats_t xdp_packets; - u64_stats_t xdp_tx; - u64_stats_t xdp_redirects; - u64_stats_t xdp_drops; - u64_stats_t kicks; -}; - -struct virtnet_interrupt_coalesce { - u32 max_packets; - u32 max_usecs; -}; - -struct virtnet_rq_dma { - dma_addr_t addr; - u32 ref; - u16 len; - u16 need_sync; -}; - -struct send_queue { - struct virtqueue *vq; - struct scatterlist sg[19]; - char name[16]; - struct virtnet_sq_stats stats; - struct virtnet_interrupt_coalesce intr_coal; - struct napi_struct napi; - bool reset; - struct xsk_buff_pool *xsk_pool; - dma_addr_t xsk_hdr_dma_addr; -}; - -struct receive_queue { - struct virtqueue *vq; - struct napi_struct napi; - struct bpf_prog *xdp_prog; - struct virtnet_rq_stats stats; - u16 calls; - bool dim_enabled; - struct mutex dim_lock; - struct dim dim; - u32 packets_in_napi; - struct virtnet_interrupt_coalesce intr_coal; - struct page *pages; - struct ewma_pkt_len mrg_avg_pkt_len; - struct page_frag alloc_frag; - struct scatterlist sg[19]; - unsigned int min_buf_len; - char name[16]; - long: 64; - long: 64; - long: 64; - struct xdp_rxq_info xdp_rxq; - struct virtnet_rq_dma *last_dma; - struct xsk_buff_pool *xsk_pool; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct xdp_rxq_info xsk_rxq_info; - struct xdp_buff **xsk_buffs; - bool do_dma; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct virtio_net_ctrl_rss { - u32 hash_types; - u16 indirection_table_mask; - u16 unclassified_queue; - u16 hash_cfg_reserved; - u16 max_tx_vq; - u8 hash_key_length; - u8 key[40]; - u16 *indirection_table; -}; - -struct control_buf { - struct virtio_net_ctrl_hdr hdr; - virtio_net_ctrl_ack status; -}; - -struct virtnet_info { - struct virtio_device *vdev; - struct virtqueue *cvq; - struct net_device *dev; - struct send_queue *sq; - struct receive_queue *rq; - unsigned int status; - u16 max_queue_pairs; - u16 curr_queue_pairs; - u16 xdp_queue_pairs; - bool xdp_enabled; - bool big_packets; - unsigned int big_packets_num_skbfrags; - bool mergeable_rx_bufs; - bool has_rss; - bool has_rss_hash_report; - u8 rss_key_size; - u16 rss_indir_table_size; - u32 rss_hash_types_supported; - u32 rss_hash_types_saved; - struct virtio_net_ctrl_rss rss; - bool has_cvq; - struct mutex cvq_lock; - bool any_header_sg; - u8 hdr_len; - struct delayed_work refill; - bool refill_enabled; - spinlock_t refill_lock; - struct work_struct config_work; - struct work_struct rx_mode_work; - bool rx_mode_work_enabled; - bool affinity_hint_set; - struct hlist_node node; - struct hlist_node node_dead; - struct control_buf *ctrl; - u8 duplex; - u32 speed; - bool rx_dim_enabled; - struct virtnet_interrupt_coalesce intr_coal_tx; - struct virtnet_interrupt_coalesce intr_coal_rx; - long unsigned int guest_offloads; - long unsigned int guest_offloads_capable; - struct failover *failover; - u64 device_stats_cap; -}; - -struct virtio_net_common_hdr { - union { - struct virtio_net_hdr hdr; - struct virtio_net_hdr_mrg_rxbuf mrg_hdr; - struct virtio_net_hdr_v1_hash hash_v1_hdr; - }; -}; - -struct virtnet_stats_ctx { - bool to_qstat; - u32 desc_num[3]; - u64 bitmap[3]; - u32 size[3]; - u64 *data; -}; - -struct phy_configure_opts_dp { - unsigned int link_rate; - unsigned int lanes; - unsigned int voltage[4]; - unsigned int pre[4]; - u8 ssc: 1; - u8 set_rate: 1; - u8 set_lanes: 1; - u8 set_voltages: 1; -}; - -struct phy_configure_opts_lvds { - unsigned int bits_per_lane_and_dclk_cycle; - long unsigned int differential_clk_rate; - unsigned int lanes; - bool is_slave; -}; - -struct phy_configure_opts_mipi_dphy { - unsigned int clk_miss; - unsigned int clk_post; - unsigned int clk_pre; - unsigned int clk_prepare; - unsigned int clk_settle; - unsigned int clk_term_en; - unsigned int clk_trail; - unsigned int clk_zero; - unsigned int d_term_en; - unsigned int eot; - unsigned int hs_exit; - unsigned int hs_prepare; - unsigned int hs_settle; - unsigned int hs_skip; - unsigned int hs_trail; - unsigned int hs_zero; - unsigned int init; - unsigned int lpx; - unsigned int ta_get; - unsigned int ta_go; - unsigned int ta_sure; - unsigned int wakeup; - long unsigned int hs_clk_rate; - long unsigned int lp_clk_rate; - unsigned char lanes; -}; - -enum phy_mode { - PHY_MODE_INVALID = 0, - PHY_MODE_USB_HOST = 1, - PHY_MODE_USB_HOST_LS = 2, - PHY_MODE_USB_HOST_FS = 3, - PHY_MODE_USB_HOST_HS = 4, - PHY_MODE_USB_HOST_SS = 5, - PHY_MODE_USB_DEVICE = 6, - PHY_MODE_USB_DEVICE_LS = 7, - PHY_MODE_USB_DEVICE_FS = 8, - PHY_MODE_USB_DEVICE_HS = 9, - PHY_MODE_USB_DEVICE_SS = 10, - PHY_MODE_USB_OTG = 11, - PHY_MODE_UFS_HS_A = 12, - PHY_MODE_UFS_HS_B = 13, - PHY_MODE_PCIE = 14, - PHY_MODE_ETHERNET = 15, - PHY_MODE_MIPI_DPHY = 16, - PHY_MODE_SATA = 17, - PHY_MODE_LVDS = 18, - PHY_MODE_DP = 19, -}; - -enum phy_media { - PHY_MEDIA_DEFAULT = 0, - PHY_MEDIA_SR = 1, - PHY_MEDIA_DAC = 2, -}; - -union phy_configure_opts { - struct phy_configure_opts_mipi_dphy mipi_dphy; - struct phy_configure_opts_dp dp; - struct phy_configure_opts_lvds lvds; -}; - -struct phy; - -struct phy_ops { - int (*init)(struct phy *); - int (*exit)(struct phy *); - int (*power_on)(struct phy *); - int (*power_off)(struct phy *); - int (*set_mode)(struct phy *, enum phy_mode, int); - int (*set_media)(struct phy *, enum phy_media); - int (*set_speed)(struct phy *, int); - int (*configure)(struct phy *, union phy_configure_opts *); - int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *); - int (*reset)(struct phy *); - int (*calibrate)(struct phy *); - int (*connect)(struct phy *, int); - int (*disconnect)(struct phy *, int); - void (*release)(struct phy *); - struct module *owner; -}; - -struct phy_attrs { - u32 bus_width; - u32 max_link_rate; - enum phy_mode mode; -}; - -struct phy { - struct device dev; - int id; - const struct phy_ops *ops; - struct mutex mutex; - int init_count; - int power_count; - struct phy_attrs attrs; - struct regulator *pwr; - struct dentry *debugfs; -}; - -struct usb_phy_roothub { - struct phy *phy; - struct list_head list; -}; - -enum wwan_port_type { - WWAN_PORT_AT = 0, - WWAN_PORT_MBIM = 1, - WWAN_PORT_QMI = 2, - WWAN_PORT_QCDM = 3, - WWAN_PORT_FIREHOSE = 4, - WWAN_PORT_XMMRPC = 5, - WWAN_PORT_FASTBOOT = 6, - __WWAN_PORT_MAX = 7, - WWAN_PORT_MAX = 6, - WWAN_PORT_UNKNOWN = 7, -}; - -struct wwan_port; - -struct wdm_device { - u8 *inbuf; - u8 *outbuf; - u8 *sbuf; - u8 *ubuf; - struct urb *command; - struct urb *response; - struct urb *validity; - struct usb_interface *intf; - struct usb_ctrlrequest *orq; - struct usb_ctrlrequest *irq; - spinlock_t iuspin; - long unsigned int flags; - u16 bufsize; - u16 wMaxCommand; - u16 wMaxPacketSize; - __le16 inum; - int length; - int read; - int count; - dma_addr_t shandle; - dma_addr_t ihandle; - struct mutex wlock; - struct mutex rlock; - wait_queue_head_t wait; - struct work_struct rxwork; - struct work_struct service_outs_intr; - int werr; - int rerr; - int resp_count; - struct list_head device_list; - int (*manage_power)(struct usb_interface *, int); - enum wwan_port_type wwanp_type; - struct wwan_port *wwanp; -}; - -struct freecom_cb_wrap { - u8 Type; - u8 Timeout; - u8 Atapi[12]; - u8 Filler[50]; -}; - -struct freecom_xfer_wrap { - u8 Type; - u8 Timeout; - __le32 Count; - u8 Pad[58]; -} __attribute__((packed)); - -struct freecom_status { - u8 Status; - u8 Reason; - __le16 Count; - u8 Pad[60]; -}; - -struct spcp8x5_private { - unsigned int quirks; - spinlock_t lock; - u8 line_control; -}; - -struct serio_device_id { - __u8 type; - __u8 extra; - __u8 id; - __u8 proto; -}; - -struct serio_driver; - -struct serio { - void *port_data; - char name[32]; - char phys[32]; - char firmware_id[128]; - bool manual_bind; - struct serio_device_id id; - spinlock_t lock; - int (*write)(struct serio *, unsigned char); - int (*open)(struct serio *); - void (*close)(struct serio *); - int (*start)(struct serio *); - void (*stop)(struct serio *); - struct serio *parent; - struct list_head child_node; - struct list_head children; - unsigned int depth; - struct serio_driver *drv; - struct mutex drv_mutex; - struct device dev; - struct list_head node; - struct mutex *ps2_cmd_mutex; -}; - -struct serio_driver { - const char *description; - const struct serio_device_id *id_table; - bool manual_bind; - void (*write_wakeup)(struct serio *); - irqreturn_t (*interrupt)(struct serio *, unsigned char, unsigned int); - int (*connect)(struct serio *, struct serio_driver *); - int (*reconnect)(struct serio *); - int (*fast_reconnect)(struct serio *); - void (*disconnect)(struct serio *); - void (*cleanup)(struct serio *); - struct device_driver driver; -}; - -enum ps2_disposition { - PS2_PROCESS = 0, - PS2_IGNORE = 1, - PS2_ERROR = 2, -}; - -struct ps2dev; - -typedef enum ps2_disposition (*ps2_pre_receive_handler_t)(struct ps2dev *, u8, unsigned int); - -typedef void (*ps2_receive_handler_t)(struct ps2dev *, u8); - -struct ps2dev { - struct serio *serio; - struct mutex cmd_mutex; - wait_queue_head_t wait; - long unsigned int flags; - u8 cmdbuf[8]; - u8 cmdcnt; - u8 nak; - ps2_pre_receive_handler_t pre_receive_handler; - ps2_receive_handler_t receive_handler; -}; - -struct i2c_devinfo { - struct list_head list; - int busnum; - struct i2c_board_info board_info; -}; - -enum { - POWER_SUPPLY_STATUS_UNKNOWN = 0, - POWER_SUPPLY_STATUS_CHARGING = 1, - POWER_SUPPLY_STATUS_DISCHARGING = 2, - POWER_SUPPLY_STATUS_NOT_CHARGING = 3, - POWER_SUPPLY_STATUS_FULL = 4, -}; - -enum { - POWER_SUPPLY_CHARGE_TYPE_UNKNOWN = 0, - POWER_SUPPLY_CHARGE_TYPE_NONE = 1, - POWER_SUPPLY_CHARGE_TYPE_TRICKLE = 2, - POWER_SUPPLY_CHARGE_TYPE_FAST = 3, - POWER_SUPPLY_CHARGE_TYPE_STANDARD = 4, - POWER_SUPPLY_CHARGE_TYPE_ADAPTIVE = 5, - POWER_SUPPLY_CHARGE_TYPE_CUSTOM = 6, - POWER_SUPPLY_CHARGE_TYPE_LONGLIFE = 7, - POWER_SUPPLY_CHARGE_TYPE_BYPASS = 8, -}; - -enum { - POWER_SUPPLY_HEALTH_UNKNOWN = 0, - POWER_SUPPLY_HEALTH_GOOD = 1, - POWER_SUPPLY_HEALTH_OVERHEAT = 2, - POWER_SUPPLY_HEALTH_DEAD = 3, - POWER_SUPPLY_HEALTH_OVERVOLTAGE = 4, - POWER_SUPPLY_HEALTH_UNSPEC_FAILURE = 5, - POWER_SUPPLY_HEALTH_COLD = 6, - POWER_SUPPLY_HEALTH_WATCHDOG_TIMER_EXPIRE = 7, - POWER_SUPPLY_HEALTH_SAFETY_TIMER_EXPIRE = 8, - POWER_SUPPLY_HEALTH_OVERCURRENT = 9, - POWER_SUPPLY_HEALTH_CALIBRATION_REQUIRED = 10, - POWER_SUPPLY_HEALTH_WARM = 11, - POWER_SUPPLY_HEALTH_COOL = 12, - POWER_SUPPLY_HEALTH_HOT = 13, - POWER_SUPPLY_HEALTH_NO_BATTERY = 14, -}; - -enum { - POWER_SUPPLY_TECHNOLOGY_UNKNOWN = 0, - POWER_SUPPLY_TECHNOLOGY_NiMH = 1, - POWER_SUPPLY_TECHNOLOGY_LION = 2, - POWER_SUPPLY_TECHNOLOGY_LIPO = 3, - POWER_SUPPLY_TECHNOLOGY_LiFe = 4, - POWER_SUPPLY_TECHNOLOGY_NiCd = 5, - POWER_SUPPLY_TECHNOLOGY_LiMn = 6, -}; - -enum { - POWER_SUPPLY_CAPACITY_LEVEL_UNKNOWN = 0, - POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL = 1, - POWER_SUPPLY_CAPACITY_LEVEL_LOW = 2, - POWER_SUPPLY_CAPACITY_LEVEL_NORMAL = 3, - POWER_SUPPLY_CAPACITY_LEVEL_HIGH = 4, - POWER_SUPPLY_CAPACITY_LEVEL_FULL = 5, -}; - -enum { - POWER_SUPPLY_SCOPE_UNKNOWN = 0, - POWER_SUPPLY_SCOPE_SYSTEM = 1, - POWER_SUPPLY_SCOPE_DEVICE = 2, -}; - -enum power_supply_property { - POWER_SUPPLY_PROP_STATUS = 0, - POWER_SUPPLY_PROP_CHARGE_TYPE = 1, - POWER_SUPPLY_PROP_HEALTH = 2, - POWER_SUPPLY_PROP_PRESENT = 3, - POWER_SUPPLY_PROP_ONLINE = 4, - POWER_SUPPLY_PROP_AUTHENTIC = 5, - POWER_SUPPLY_PROP_TECHNOLOGY = 6, - POWER_SUPPLY_PROP_CYCLE_COUNT = 7, - POWER_SUPPLY_PROP_VOLTAGE_MAX = 8, - POWER_SUPPLY_PROP_VOLTAGE_MIN = 9, - POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN = 10, - POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN = 11, - POWER_SUPPLY_PROP_VOLTAGE_NOW = 12, - POWER_SUPPLY_PROP_VOLTAGE_AVG = 13, - POWER_SUPPLY_PROP_VOLTAGE_OCV = 14, - POWER_SUPPLY_PROP_VOLTAGE_BOOT = 15, - POWER_SUPPLY_PROP_CURRENT_MAX = 16, - POWER_SUPPLY_PROP_CURRENT_NOW = 17, - POWER_SUPPLY_PROP_CURRENT_AVG = 18, - POWER_SUPPLY_PROP_CURRENT_BOOT = 19, - POWER_SUPPLY_PROP_POWER_NOW = 20, - POWER_SUPPLY_PROP_POWER_AVG = 21, - POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN = 22, - POWER_SUPPLY_PROP_CHARGE_EMPTY_DESIGN = 23, - POWER_SUPPLY_PROP_CHARGE_FULL = 24, - POWER_SUPPLY_PROP_CHARGE_EMPTY = 25, - POWER_SUPPLY_PROP_CHARGE_NOW = 26, - POWER_SUPPLY_PROP_CHARGE_AVG = 27, - POWER_SUPPLY_PROP_CHARGE_COUNTER = 28, - POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT = 29, - POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX = 30, - POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE = 31, - POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE_MAX = 32, - POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT = 33, - POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT_MAX = 34, - POWER_SUPPLY_PROP_CHARGE_CONTROL_START_THRESHOLD = 35, - POWER_SUPPLY_PROP_CHARGE_CONTROL_END_THRESHOLD = 36, - POWER_SUPPLY_PROP_CHARGE_BEHAVIOUR = 37, - POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT = 38, - POWER_SUPPLY_PROP_INPUT_VOLTAGE_LIMIT = 39, - POWER_SUPPLY_PROP_INPUT_POWER_LIMIT = 40, - POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN = 41, - POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN = 42, - POWER_SUPPLY_PROP_ENERGY_FULL = 43, - POWER_SUPPLY_PROP_ENERGY_EMPTY = 44, - POWER_SUPPLY_PROP_ENERGY_NOW = 45, - POWER_SUPPLY_PROP_ENERGY_AVG = 46, - POWER_SUPPLY_PROP_CAPACITY = 47, - POWER_SUPPLY_PROP_CAPACITY_ALERT_MIN = 48, - POWER_SUPPLY_PROP_CAPACITY_ALERT_MAX = 49, - POWER_SUPPLY_PROP_CAPACITY_ERROR_MARGIN = 50, - POWER_SUPPLY_PROP_CAPACITY_LEVEL = 51, - POWER_SUPPLY_PROP_TEMP = 52, - POWER_SUPPLY_PROP_TEMP_MAX = 53, - POWER_SUPPLY_PROP_TEMP_MIN = 54, - POWER_SUPPLY_PROP_TEMP_ALERT_MIN = 55, - POWER_SUPPLY_PROP_TEMP_ALERT_MAX = 56, - POWER_SUPPLY_PROP_TEMP_AMBIENT = 57, - POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MIN = 58, - POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MAX = 59, - POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW = 60, - POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG = 61, - POWER_SUPPLY_PROP_TIME_TO_FULL_NOW = 62, - POWER_SUPPLY_PROP_TIME_TO_FULL_AVG = 63, - POWER_SUPPLY_PROP_TYPE = 64, - POWER_SUPPLY_PROP_USB_TYPE = 65, - POWER_SUPPLY_PROP_SCOPE = 66, - POWER_SUPPLY_PROP_PRECHARGE_CURRENT = 67, - POWER_SUPPLY_PROP_CHARGE_TERM_CURRENT = 68, - POWER_SUPPLY_PROP_CALIBRATE = 69, - POWER_SUPPLY_PROP_MANUFACTURE_YEAR = 70, - POWER_SUPPLY_PROP_MANUFACTURE_MONTH = 71, - POWER_SUPPLY_PROP_MANUFACTURE_DAY = 72, - POWER_SUPPLY_PROP_MODEL_NAME = 73, - POWER_SUPPLY_PROP_MANUFACTURER = 74, - POWER_SUPPLY_PROP_SERIAL_NUMBER = 75, -}; - -enum power_supply_type { - POWER_SUPPLY_TYPE_UNKNOWN = 0, - POWER_SUPPLY_TYPE_BATTERY = 1, - POWER_SUPPLY_TYPE_UPS = 2, - POWER_SUPPLY_TYPE_MAINS = 3, - POWER_SUPPLY_TYPE_USB = 4, - POWER_SUPPLY_TYPE_USB_DCP = 5, - POWER_SUPPLY_TYPE_USB_CDP = 6, - POWER_SUPPLY_TYPE_USB_ACA = 7, - POWER_SUPPLY_TYPE_USB_TYPE_C = 8, - POWER_SUPPLY_TYPE_USB_PD = 9, - POWER_SUPPLY_TYPE_USB_PD_DRP = 10, - POWER_SUPPLY_TYPE_APPLE_BRICK_ID = 11, - POWER_SUPPLY_TYPE_WIRELESS = 12, -}; - -enum power_supply_usb_type { - POWER_SUPPLY_USB_TYPE_UNKNOWN = 0, - POWER_SUPPLY_USB_TYPE_SDP = 1, - POWER_SUPPLY_USB_TYPE_DCP = 2, - POWER_SUPPLY_USB_TYPE_CDP = 3, - POWER_SUPPLY_USB_TYPE_ACA = 4, - POWER_SUPPLY_USB_TYPE_C = 5, - POWER_SUPPLY_USB_TYPE_PD = 6, - POWER_SUPPLY_USB_TYPE_PD_DRP = 7, - POWER_SUPPLY_USB_TYPE_PD_PPS = 8, - POWER_SUPPLY_USB_TYPE_APPLE_BRICK_ID = 9, -}; - -enum power_supply_charge_behaviour { - POWER_SUPPLY_CHARGE_BEHAVIOUR_AUTO = 0, - POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE = 1, - POWER_SUPPLY_CHARGE_BEHAVIOUR_FORCE_DISCHARGE = 2, -}; - -union power_supply_propval { - int intval; - const char *strval; -}; - -struct power_supply; - -struct power_supply_desc { - const char *name; - enum power_supply_type type; - u8 charge_behaviours; - u32 usb_types; - const enum power_supply_property *properties; - size_t num_properties; - int (*get_property)(struct power_supply *, enum power_supply_property, union power_supply_propval *); - int (*set_property)(struct power_supply *, enum power_supply_property, const union power_supply_propval *); - int (*property_is_writeable)(struct power_supply *, enum power_supply_property); - void (*external_power_changed)(struct power_supply *); - void (*set_charged)(struct power_supply *); - bool no_thermal; - int use_for_apm; -}; - -struct power_supply_battery_info; - -struct power_supply { - const struct power_supply_desc *desc; - char **supplied_to; - size_t num_supplicants; - char **supplied_from; - size_t num_supplies; - struct device_node *of_node; - void *drv_data; - struct device dev; - struct work_struct changed_work; - struct delayed_work deferred_register_work; - spinlock_t changed_lock; - bool changed; - bool initialized; - bool removing; - atomic_t use_cnt; - struct power_supply_battery_info *battery_info; -}; - -struct power_supply_maintenance_charge_table; - -struct power_supply_battery_ocv_table; - -struct power_supply_resistance_temp_table; - -struct power_supply_vbat_ri_table; - -struct power_supply_battery_info { - unsigned int technology; - int energy_full_design_uwh; - int charge_full_design_uah; - int voltage_min_design_uv; - int voltage_max_design_uv; - int tricklecharge_current_ua; - int precharge_current_ua; - int precharge_voltage_max_uv; - int charge_term_current_ua; - int charge_restart_voltage_uv; - int overvoltage_limit_uv; - int constant_charge_current_max_ua; - int constant_charge_voltage_max_uv; - const struct power_supply_maintenance_charge_table *maintenance_charge; - int maintenance_charge_size; - int alert_low_temp_charge_current_ua; - int alert_low_temp_charge_voltage_uv; - int alert_high_temp_charge_current_ua; - int alert_high_temp_charge_voltage_uv; - int factory_internal_resistance_uohm; - int factory_internal_resistance_charging_uohm; - int ocv_temp[20]; - int temp_ambient_alert_min; - int temp_ambient_alert_max; - int temp_alert_min; - int temp_alert_max; - int temp_min; - int temp_max; - struct power_supply_battery_ocv_table *ocv_table[20]; - int ocv_table_size[20]; - struct power_supply_resistance_temp_table *resist_table; - int resist_table_size; - const struct power_supply_vbat_ri_table *vbat2ri_discharging; - int vbat2ri_discharging_size; - const struct power_supply_vbat_ri_table *vbat2ri_charging; - int vbat2ri_charging_size; - int bti_resistance_ohm; - int bti_resistance_tolerance; -}; - -struct power_supply_battery_ocv_table { - int ocv; - int capacity; -}; - -struct power_supply_resistance_temp_table { - int temp; - int resistance; -}; - -struct power_supply_vbat_ri_table { - int vbat_uv; - int ri_uohm; -}; - -struct power_supply_maintenance_charge_table { - int charge_current_max_ua; - int charge_voltage_max_uv; - int charge_safety_timer_minutes; -}; - -struct power_supply_attr { - const char *prop_name; - char attr_name[31]; - struct device_attribute dev_attr; - const char * const *text_values; - int text_values_len; -}; - -enum { - BIOSET_NEED_BVECS = 1, - BIOSET_NEED_RESCUER = 2, - BIOSET_PERCPU_CACHE = 4, -}; - -struct bio_integrity_payload { - struct bio *bip_bio; - struct bvec_iter bip_iter; - short unsigned int bip_vcnt; - short unsigned int bip_max_vcnt; - short unsigned int bip_flags; - int: 0; - struct bvec_iter bio_iter; - struct work_struct bip_work; - struct bio_vec *bip_vec; - struct bio_vec bip_inline_vecs[0]; -}; - -struct dm_arg_set { - unsigned int argc; - char **argv; -}; - -struct dm_arg { - unsigned int min; - unsigned int max; - char *error; -}; - -struct convert_context { - struct completion restart; - struct bio *bio_in; - struct bvec_iter iter_in; - struct bio *bio_out; - struct bvec_iter iter_out; - atomic_t cc_pending; - unsigned int tag_offset; - u64 cc_sector; - union { - struct skcipher_request *req; - struct aead_request *req_aead; - } r; - bool aead_recheck; - bool aead_failed; -}; - -struct crypt_config; - -struct dm_crypt_io { - struct crypt_config *cc; - struct bio *base_bio; - u8 *integrity_metadata; - bool integrity_metadata_from_pool: 1; - struct work_struct work; - struct convert_context ctx; - atomic_t io_pending; - blk_status_t error; - sector_t sector; - struct bvec_iter saved_bi_iter; - struct rb_node rb_node; -}; - -struct iv_benbi_private { - int shift; -}; - -struct iv_lmk_private { - struct crypto_shash *hash_tfm; - u8 *seed; -}; - -struct iv_tcw_private { - struct crypto_shash *crc32_tfm; - u8 *iv_seed; - u8 *whitening; -}; - -struct iv_elephant_private { - struct crypto_skcipher *tfm; -}; - -struct crypt_iv_operations; - -struct crypt_config { - struct dm_dev *dev; - sector_t start; - struct percpu_counter n_allocated_pages; - struct workqueue_struct *io_queue; - struct workqueue_struct *crypt_queue; - spinlock_t write_thread_lock; - struct task_struct *write_thread; - struct rb_root write_tree; - char *cipher_string; - char *cipher_auth; - char *key_string; - const struct crypt_iv_operations *iv_gen_ops; - union { - struct iv_benbi_private benbi; - struct iv_lmk_private lmk; - struct iv_tcw_private tcw; - struct iv_elephant_private elephant; - } iv_gen_private; - u64 iv_offset; - unsigned int iv_size; - short unsigned int sector_size; - unsigned char sector_shift; - union { - struct crypto_skcipher **tfms; - struct crypto_aead **tfms_aead; - } cipher_tfm; - unsigned int tfms_count; - int workqueue_id; - long unsigned int cipher_flags; - unsigned int dmreq_start; - unsigned int per_bio_data_size; - long unsigned int flags; - unsigned int key_size; - unsigned int key_parts; - unsigned int key_extra_size; - unsigned int key_mac_size; - unsigned int integrity_tag_size; - unsigned int integrity_iv_size; - unsigned int used_tag_size; - unsigned int tuple_size; - unsigned int tag_pool_max_sectors; - mempool_t tag_pool; - mempool_t req_pool; - mempool_t page_pool; - struct bio_set bs; - struct mutex bio_alloc_lock; - u8 *authenc_key; - u8 key[0]; -}; - -struct dm_crypt_request { - struct convert_context *ctx; - struct scatterlist sg_in[4]; - struct scatterlist sg_out[4]; - u64 iv_sector; -}; - -struct crypt_iv_operations { - int (*ctr)(struct crypt_config *, struct dm_target *, const char *); - void (*dtr)(struct crypt_config *); - int (*init)(struct crypt_config *); - int (*wipe)(struct crypt_config *); - int (*generator)(struct crypt_config *, u8 *, struct dm_crypt_request *); - int (*post)(struct crypt_config *, u8 *, struct dm_crypt_request *); -}; - -enum flags { - DM_CRYPT_SUSPENDED = 0, - DM_CRYPT_KEY_VALID = 1, - DM_CRYPT_SAME_CPU = 2, - DM_CRYPT_HIGH_PRIORITY = 3, - DM_CRYPT_NO_OFFLOAD = 4, - DM_CRYPT_NO_READ_WORKQUEUE = 5, - DM_CRYPT_NO_WRITE_WORKQUEUE = 6, - DM_CRYPT_WRITE_INLINE = 7, -}; - -enum cipher_flags { - CRYPT_MODE_INTEGRITY_AEAD = 0, - CRYPT_IV_LARGE_SECTORS = 1, - CRYPT_ENCRYPT_PREPROCESS = 2, - CRYPT_KEY_MAC_SIZE_SET = 3, -}; - -struct gpio_array; - -struct gpio_descs { - struct gpio_array *info; - unsigned int ndescs; - struct gpio_desc *desc[0]; -}; - -struct mmc_pwrseq_ops; - -struct mmc_pwrseq { - const struct mmc_pwrseq_ops *ops; - struct device *dev; - struct list_head pwrseq_node; - struct module *owner; -}; - -struct mmc_pwrseq_ops { - void (*pre_power_on)(struct mmc_host *); - void (*post_power_on)(struct mmc_host *); - void (*power_off)(struct mmc_host *); - void (*reset)(struct mmc_host *); -}; - -struct mmc_pwrseq_simple { - struct mmc_pwrseq pwrseq; - bool clk_enabled; - u32 post_power_on_delay_ms; - u32 power_off_delay_us; - struct clk *ext_clk; - struct gpio_descs *reset_gpios; -}; - -struct of_changeset_entry { - struct list_head node; - long unsigned int action; - struct device_node *np; - struct property *prop; - struct property *old_prop; -}; - -struct of_changeset { - struct list_head entries; -}; - -enum of_overlay_notify_action { - OF_OVERLAY_INIT = 0, - OF_OVERLAY_PRE_APPLY = 1, - OF_OVERLAY_POST_APPLY = 2, - OF_OVERLAY_PRE_REMOVE = 3, - OF_OVERLAY_POST_REMOVE = 4, -}; - -struct of_overlay_notify_data { - struct device_node *overlay; - struct device_node *target; -}; - -struct target { - struct device_node *np; - bool in_livetree; -}; - -struct fragment { - struct device_node *overlay; - struct device_node *target; -}; - -struct overlay_changeset { - int id; - struct list_head ovcs_list; - const void *new_fdt; - const void *overlay_mem; - struct device_node *overlay_root; - enum of_overlay_notify_action notify_state; - int count; - struct fragment *fragments; - bool symbols_fragment; - struct of_changeset cset; -}; - -struct rtgenmsg { - unsigned char rtgen_family; -}; - -enum { - NETNSA_NONE = 0, - NETNSA_NSID = 1, - NETNSA_PID = 2, - NETNSA_FD = 3, - NETNSA_TARGET_NSID = 4, - NETNSA_CURRENT_NSID = 5, - __NETNSA_MAX = 6, -}; - -struct pcpu_gen_cookie { - local_t nesting; - u64 last; -}; - -struct gen_cookie { - struct pcpu_gen_cookie *local; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - atomic64_t forward_last; - atomic64_t reverse_last; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct net_fill_args { - u32 portid; - u32 seq; - int flags; - int cmd; - int nsid; - bool add_ref; - int ref_nsid; -}; - -struct rtnl_net_dump_cb { - struct net *tgt_net; - struct net *ref_net; - struct sk_buff *skb; - struct net_fill_args fillargs; - int idx; - int s_idx; -}; - -struct flow_dissector_mpls_lse { - u32 mpls_ttl: 8; - u32 mpls_bos: 1; - u32 mpls_tc: 3; - u32 mpls_label: 20; -}; - -struct flow_dissector_key_mpls { - struct flow_dissector_mpls_lse ls[7]; - u8 used_lses; -}; - -struct flow_dissector_key_enc_opts { - u8 data[255]; - u8 len; - u32 dst_opt_type; -}; - -struct flow_dissector_key_arp { - __u32 sip; - __u32 tip; - __u8 op; - unsigned char sha[6]; - unsigned char tha[6]; -}; - -struct flow_dissector_key_ports_range { - union { - struct flow_dissector_key_ports tp; - struct { - struct flow_dissector_key_ports tp_min; - struct flow_dissector_key_ports tp_max; - }; - }; -}; - -struct flow_dissector_key_ct { - u16 ct_state; - u16 ct_zone; - u32 ct_mark; - u32 ct_labels[4]; -}; - -struct flow_dissector_key_pppoe { - __be16 session_id; - __be16 ppp_proto; - __be16 type; -}; - -struct flow_dissector_key_l2tpv3 { - __be32 session_id; -}; - -struct flow_dissector_key_ipsec { - __be32 spi; -}; - -struct flow_match_meta { - struct flow_dissector_key_meta *key; - struct flow_dissector_key_meta *mask; -}; - -struct flow_match_basic { - struct flow_dissector_key_basic *key; - struct flow_dissector_key_basic *mask; -}; - -struct flow_match_control { - struct flow_dissector_key_control *key; - struct flow_dissector_key_control *mask; -}; - -struct flow_match_eth_addrs { - struct flow_dissector_key_eth_addrs *key; - struct flow_dissector_key_eth_addrs *mask; -}; - -struct flow_match_vlan { - struct flow_dissector_key_vlan *key; - struct flow_dissector_key_vlan *mask; -}; - -struct flow_match_arp { - struct flow_dissector_key_arp *key; - struct flow_dissector_key_arp *mask; -}; - -struct flow_match_ipv4_addrs { - struct flow_dissector_key_ipv4_addrs *key; - struct flow_dissector_key_ipv4_addrs *mask; -}; - -struct flow_match_ipv6_addrs { - struct flow_dissector_key_ipv6_addrs *key; - struct flow_dissector_key_ipv6_addrs *mask; -}; - -struct flow_match_ip { - struct flow_dissector_key_ip *key; - struct flow_dissector_key_ip *mask; -}; - -struct flow_match_ports { - struct flow_dissector_key_ports *key; - struct flow_dissector_key_ports *mask; -}; - -struct flow_match_ports_range { - struct flow_dissector_key_ports_range *key; - struct flow_dissector_key_ports_range *mask; -}; - -struct flow_match_icmp { - struct flow_dissector_key_icmp *key; - struct flow_dissector_key_icmp *mask; -}; - -struct flow_match_tcp { - struct flow_dissector_key_tcp *key; - struct flow_dissector_key_tcp *mask; -}; - -struct flow_match_ipsec { - struct flow_dissector_key_ipsec *key; - struct flow_dissector_key_ipsec *mask; -}; - -struct flow_match_mpls { - struct flow_dissector_key_mpls *key; - struct flow_dissector_key_mpls *mask; -}; - -struct flow_match_enc_keyid { - struct flow_dissector_key_keyid *key; - struct flow_dissector_key_keyid *mask; -}; - -struct flow_match_enc_opts { - struct flow_dissector_key_enc_opts *key; - struct flow_dissector_key_enc_opts *mask; -}; - -struct flow_match_ct { - struct flow_dissector_key_ct *key; - struct flow_dissector_key_ct *mask; -}; - -struct flow_match_pppoe { - struct flow_dissector_key_pppoe *key; - struct flow_dissector_key_pppoe *mask; -}; - -struct flow_match_l2tpv3 { - struct flow_dissector_key_l2tpv3 *key; - struct flow_dissector_key_l2tpv3 *mask; -}; - -struct flow_indr_dev { - struct list_head list; - flow_indr_block_bind_cb_t *cb; - void *cb_priv; - refcount_t refcnt; -}; - -struct flow_indir_dev_info { - void *data; - struct net_device *dev; - struct Qdisc *sch; - enum tc_setup_type type; - void (*cleanup)(struct flow_block_cb *); - struct list_head list; - enum flow_block_command command; - enum flow_block_binder_type binder_type; - struct list_head *cb_list; -}; - -enum { - BPF_F_INGRESS = 1, - BPF_F_BROADCAST = 8, - BPF_F_EXCLUDE_INGRESS = 16, -}; - -enum { - BPF_SOCK_OPS_VOID = 0, - BPF_SOCK_OPS_TIMEOUT_INIT = 1, - BPF_SOCK_OPS_RWND_INIT = 2, - BPF_SOCK_OPS_TCP_CONNECT_CB = 3, - BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 4, - BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 5, - BPF_SOCK_OPS_NEEDS_ECN = 6, - BPF_SOCK_OPS_BASE_RTT = 7, - BPF_SOCK_OPS_RTO_CB = 8, - BPF_SOCK_OPS_RETRANS_CB = 9, - BPF_SOCK_OPS_STATE_CB = 10, - BPF_SOCK_OPS_TCP_LISTEN_CB = 11, - BPF_SOCK_OPS_RTT_CB = 12, - BPF_SOCK_OPS_PARSE_HDR_OPT_CB = 13, - BPF_SOCK_OPS_HDR_OPT_LEN_CB = 14, - BPF_SOCK_OPS_WRITE_HDR_OPT_CB = 15, -}; - -struct bpf_link_primer { - struct bpf_link *link; - struct file *file; - int fd; - u32 id; -}; - -struct bpf_sock_ops_kern { - struct sock *sk; - union { - u32 args[4]; - u32 reply; - u32 replylong[4]; - }; - struct sk_buff *syn_skb; - struct sk_buff *skb; - void *skb_data_end; - u8 op; - u8 is_fullsock; - u8 remaining_opt_len; - u64 temp; -}; - -struct sk_psock_link { - struct list_head list; - struct bpf_map *map; - void *link_raw; -}; - -struct bpf_stab { - struct bpf_map map; - struct sock **sks; - struct sk_psock_progs progs; - spinlock_t lock; -}; - -typedef u64 (*btf_bpf_sock_map_update)(struct bpf_sock_ops_kern *, struct bpf_map *, void *, u64); - -typedef u64 (*btf_bpf_sk_redirect_map)(struct sk_buff *, struct bpf_map *, u32, u64); - -typedef u64 (*btf_bpf_msg_redirect_map)(struct sk_msg *, struct bpf_map *, u32, u64); - -struct sock_map_seq_info { - struct bpf_map *map; - struct sock *sk; - u32 index; -}; - -struct bpf_iter__sockmap { - union { - struct bpf_iter_meta *meta; - }; - union { - struct bpf_map *map; - }; - union { - void *key; - }; - union { - struct sock *sk; - }; -}; - -struct bpf_shtab_elem { - struct callback_head rcu; - u32 hash; - struct sock *sk; - struct hlist_node node; - u8 key[0]; -}; - -struct bpf_shtab_bucket { - struct hlist_head head; - spinlock_t lock; -}; - -struct bpf_shtab { - struct bpf_map map; - struct bpf_shtab_bucket *buckets; - u32 buckets_num; - u32 elem_size; - struct sk_psock_progs progs; - atomic_t count; -}; - -typedef u64 (*btf_bpf_sock_hash_update)(struct bpf_sock_ops_kern *, struct bpf_map *, void *, u64); - -typedef u64 (*btf_bpf_sk_redirect_hash)(struct sk_buff *, struct bpf_map *, void *, u64); - -typedef u64 (*btf_bpf_msg_redirect_hash)(struct sk_msg *, struct bpf_map *, void *, u64); - -struct sock_hash_seq_info { - struct bpf_map *map; - struct bpf_shtab *htab; - u32 bucket_id; -}; - -struct sockmap_link { - struct bpf_link link; - struct bpf_map *map; - enum bpf_attach_type attach_type; -}; - -struct tc_act_bpf { - __u32 index; - __u32 capab; - int action; - int refcnt; - int bindcnt; -}; - -enum { - TCA_ACT_BPF_UNSPEC = 0, - TCA_ACT_BPF_TM = 1, - TCA_ACT_BPF_PARMS = 2, - TCA_ACT_BPF_OPS_LEN = 3, - TCA_ACT_BPF_OPS = 4, - TCA_ACT_BPF_FD = 5, - TCA_ACT_BPF_NAME = 6, - TCA_ACT_BPF_PAD = 7, - TCA_ACT_BPF_TAG = 8, - TCA_ACT_BPF_ID = 9, - __TCA_ACT_BPF_MAX = 10, -}; - -struct tcf_bpf { - struct tc_action common; - struct bpf_prog *filter; - union { - u32 bpf_fd; - u16 bpf_num_ops; - }; - struct sock_filter *bpf_ops; - const char *bpf_name; -}; - -struct tcf_bpf_cfg { - struct bpf_prog *filter; - struct sock_filter *bpf_ops; - const char *bpf_name; - u16 bpf_num_ops; - bool is_ebpf; -}; - -enum { - TCA_ROUTE4_UNSPEC = 0, - TCA_ROUTE4_CLASSID = 1, - TCA_ROUTE4_TO = 2, - TCA_ROUTE4_FROM = 3, - TCA_ROUTE4_IIF = 4, - TCA_ROUTE4_POLICE = 5, - TCA_ROUTE4_ACT = 6, - __TCA_ROUTE4_MAX = 7, -}; - -struct route4_filter; - -struct route4_fastmap { - struct route4_filter *filter; - u32 id; - int iif; -}; - -struct route4_bucket; - -struct route4_filter { - struct route4_filter *next; - u32 id; - int iif; - struct tcf_result res; - struct tcf_exts exts; - u32 handle; - struct route4_bucket *bkt; - struct tcf_proto *tp; - struct rcu_work rwork; -}; - -struct route4_head { - struct route4_fastmap fastmap[16]; - struct route4_bucket *table[257]; - struct callback_head rcu; -}; - -struct route4_bucket { - struct route4_filter *ht[33]; - struct callback_head rcu; -}; - -struct phylib_stubs { - int (*hwtstamp_get)(struct phy_device *, struct kernel_hwtstamp_config *); - int (*hwtstamp_set)(struct phy_device *, struct kernel_hwtstamp_config *, struct netlink_ext_ack *); - void (*get_phy_stats)(struct phy_device *, struct ethtool_eth_phy_stats *, struct ethtool_phy_stats *); - void (*get_link_ext_stats)(struct phy_device *, struct ethtool_link_ext_stats *); -}; - -struct linkstate_reply_data { - struct ethnl_reply_data base; - int link; - int sqi; - int sqi_max; - struct ethtool_link_ext_stats link_stats; - bool link_ext_state_provided; - struct ethtool_link_ext_state_info ethtool_link_ext_state_info; -}; - -enum ethtool_c33_pse_ext_state { - ETHTOOL_C33_PSE_EXT_STATE_ERROR_CONDITION = 1, - ETHTOOL_C33_PSE_EXT_STATE_MR_MPS_VALID = 2, - ETHTOOL_C33_PSE_EXT_STATE_MR_PSE_ENABLE = 3, - ETHTOOL_C33_PSE_EXT_STATE_OPTION_DETECT_TED = 4, - ETHTOOL_C33_PSE_EXT_STATE_OPTION_VPORT_LIM = 5, - ETHTOOL_C33_PSE_EXT_STATE_OVLD_DETECTED = 6, - ETHTOOL_C33_PSE_EXT_STATE_PD_DLL_POWER_TYPE = 7, - ETHTOOL_C33_PSE_EXT_STATE_POWER_NOT_AVAILABLE = 8, - ETHTOOL_C33_PSE_EXT_STATE_SHORT_DETECTED = 9, -}; - -enum ethtool_c33_pse_ext_substate_error_condition { - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_NON_EXISTING_PORT = 1, - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_UNDEFINED_PORT = 2, - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_INTERNAL_HW_FAULT = 3, - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_COMM_ERROR_AFTER_FORCE_ON = 4, - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_UNKNOWN_PORT_STATUS = 5, - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_HOST_CRASH_TURN_OFF = 6, - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_HOST_CRASH_FORCE_SHUTDOWN = 7, - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_CONFIG_CHANGE = 8, - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_DETECTED_OVER_TEMP = 9, -}; - -enum ethtool_c33_pse_ext_substate_mr_pse_enable { - ETHTOOL_C33_PSE_EXT_SUBSTATE_MR_PSE_ENABLE_DISABLE_PIN_ACTIVE = 1, -}; - -enum ethtool_c33_pse_ext_substate_option_detect_ted { - ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_DETECT_TED_DET_IN_PROCESS = 1, - ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_DETECT_TED_CONNECTION_CHECK_ERROR = 2, -}; - -enum ethtool_c33_pse_ext_substate_option_vport_lim { - ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_VPORT_LIM_HIGH_VOLTAGE = 1, - ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_VPORT_LIM_LOW_VOLTAGE = 2, - ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_VPORT_LIM_VOLTAGE_INJECTION = 3, -}; - -enum ethtool_c33_pse_ext_substate_ovld_detected { - ETHTOOL_C33_PSE_EXT_SUBSTATE_OVLD_DETECTED_OVERLOAD = 1, -}; - -enum ethtool_c33_pse_ext_substate_power_not_available { - ETHTOOL_C33_PSE_EXT_SUBSTATE_POWER_NOT_AVAILABLE_BUDGET_EXCEEDED = 1, - ETHTOOL_C33_PSE_EXT_SUBSTATE_POWER_NOT_AVAILABLE_PORT_PW_LIMIT_EXCEEDS_CONTROLLER_BUDGET = 2, - ETHTOOL_C33_PSE_EXT_SUBSTATE_POWER_NOT_AVAILABLE_PD_REQUEST_EXCEEDS_PORT_LIMIT = 3, - ETHTOOL_C33_PSE_EXT_SUBSTATE_POWER_NOT_AVAILABLE_HW_PW_LIMIT = 4, -}; - -enum ethtool_c33_pse_ext_substate_short_detected { - ETHTOOL_C33_PSE_EXT_SUBSTATE_SHORT_DETECTED_SHORT_CONDITION = 1, -}; - -enum ethtool_c33_pse_admin_state { - ETHTOOL_C33_PSE_ADMIN_STATE_UNKNOWN = 1, - ETHTOOL_C33_PSE_ADMIN_STATE_DISABLED = 2, - ETHTOOL_C33_PSE_ADMIN_STATE_ENABLED = 3, -}; - -enum ethtool_c33_pse_pw_d_status { - ETHTOOL_C33_PSE_PW_D_STATUS_UNKNOWN = 1, - ETHTOOL_C33_PSE_PW_D_STATUS_DISABLED = 2, - ETHTOOL_C33_PSE_PW_D_STATUS_SEARCHING = 3, - ETHTOOL_C33_PSE_PW_D_STATUS_DELIVERING = 4, - ETHTOOL_C33_PSE_PW_D_STATUS_TEST = 5, - ETHTOOL_C33_PSE_PW_D_STATUS_FAULT = 6, - ETHTOOL_C33_PSE_PW_D_STATUS_OTHERFAULT = 7, -}; - -enum ethtool_podl_pse_admin_state { - ETHTOOL_PODL_PSE_ADMIN_STATE_UNKNOWN = 1, - ETHTOOL_PODL_PSE_ADMIN_STATE_DISABLED = 2, - ETHTOOL_PODL_PSE_ADMIN_STATE_ENABLED = 3, -}; - -enum ethtool_podl_pse_pw_d_status { - ETHTOOL_PODL_PSE_PW_D_STATUS_UNKNOWN = 1, - ETHTOOL_PODL_PSE_PW_D_STATUS_DISABLED = 2, - ETHTOOL_PODL_PSE_PW_D_STATUS_SEARCHING = 3, - ETHTOOL_PODL_PSE_PW_D_STATUS_DELIVERING = 4, - ETHTOOL_PODL_PSE_PW_D_STATUS_SLEEP = 5, - ETHTOOL_PODL_PSE_PW_D_STATUS_IDLE = 6, - ETHTOOL_PODL_PSE_PW_D_STATUS_ERROR = 7, -}; - -struct ethtool_c33_pse_ext_state_info { - enum ethtool_c33_pse_ext_state c33_pse_ext_state; - union { - enum ethtool_c33_pse_ext_substate_error_condition error_condition; - enum ethtool_c33_pse_ext_substate_mr_pse_enable mr_pse_enable; - enum ethtool_c33_pse_ext_substate_option_detect_ted option_detect_ted; - enum ethtool_c33_pse_ext_substate_option_vport_lim option_vport_lim; - enum ethtool_c33_pse_ext_substate_ovld_detected ovld_detected; - enum ethtool_c33_pse_ext_substate_power_not_available power_not_available; - enum ethtool_c33_pse_ext_substate_short_detected short_detected; - u32 __c33_pse_ext_substate; - }; -}; - -struct ethtool_c33_pse_pw_limit_range { - u32 min; - u32 max; -}; - -struct pse_control_config { - enum ethtool_podl_pse_admin_state podl_admin_control; - enum ethtool_c33_pse_admin_state c33_admin_control; -}; - -struct pse_control_status { - enum ethtool_podl_pse_admin_state podl_admin_state; - enum ethtool_podl_pse_pw_d_status podl_pw_status; - enum ethtool_c33_pse_admin_state c33_admin_state; - enum ethtool_c33_pse_pw_d_status c33_pw_status; - u32 c33_pw_class; - u32 c33_actual_pw; - struct ethtool_c33_pse_ext_state_info c33_ext_state_info; - u32 c33_avail_pw_limit; - struct ethtool_c33_pse_pw_limit_range *c33_pw_limit_ranges; - u32 c33_pw_limit_nb_ranges; -}; - -enum { - ETHTOOL_A_C33_PSE_PW_LIMIT_UNSPEC = 0, - ETHTOOL_A_C33_PSE_PW_LIMIT_MIN = 1, - ETHTOOL_A_C33_PSE_PW_LIMIT_MAX = 2, -}; - -struct pse_reply_data { - struct ethnl_reply_data base; - struct pse_control_status status; -}; - -struct nf_conn_counter { - atomic64_t packets; - atomic64_t bytes; -}; - -struct nf_conn_acct { - struct nf_conn_counter counter[2]; -}; - -struct nf_conn_tstamp { - u_int64_t start; - u_int64_t stop; -}; - -struct ct_iter_state { - struct seq_net_private p; - struct hlist_nulls_head *hash; - unsigned int htable_size; - unsigned int bucket; - u_int64_t time_now; -}; - -enum nf_ct_sysctl_index { - NF_SYSCTL_CT_MAX = 0, - NF_SYSCTL_CT_COUNT = 1, - NF_SYSCTL_CT_BUCKETS = 2, - NF_SYSCTL_CT_CHECKSUM = 3, - NF_SYSCTL_CT_LOG_INVALID = 4, - NF_SYSCTL_CT_EXPECT_MAX = 5, - NF_SYSCTL_CT_ACCT = 6, - NF_SYSCTL_CT_EVENTS = 7, - NF_SYSCTL_CT_TIMESTAMP = 8, - NF_SYSCTL_CT_PROTO_TIMEOUT_GENERIC = 9, - NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_SYN_SENT = 10, - NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_SYN_RECV = 11, - NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_ESTABLISHED = 12, - NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_FIN_WAIT = 13, - NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_CLOSE_WAIT = 14, - NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_LAST_ACK = 15, - NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_TIME_WAIT = 16, - NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_CLOSE = 17, - NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_RETRANS = 18, - NF_SYSCTL_CT_PROTO_TIMEOUT_TCP_UNACK = 19, - NF_SYSCTL_CT_PROTO_TCP_LOOSE = 20, - NF_SYSCTL_CT_PROTO_TCP_LIBERAL = 21, - NF_SYSCTL_CT_PROTO_TCP_IGNORE_INVALID_RST = 22, - NF_SYSCTL_CT_PROTO_TCP_MAX_RETRANS = 23, - NF_SYSCTL_CT_PROTO_TIMEOUT_UDP = 24, - NF_SYSCTL_CT_PROTO_TIMEOUT_UDP_STREAM = 25, - NF_SYSCTL_CT_PROTO_TIMEOUT_ICMP = 26, - NF_SYSCTL_CT_PROTO_TIMEOUT_ICMPV6 = 27, - NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_CLOSED = 28, - NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_COOKIE_WAIT = 29, - NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_COOKIE_ECHOED = 30, - NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_ESTABLISHED = 31, - NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_SHUTDOWN_SENT = 32, - NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_SHUTDOWN_RECD = 33, - NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_SHUTDOWN_ACK_SENT = 34, - NF_SYSCTL_CT_PROTO_TIMEOUT_SCTP_HEARTBEAT_SENT = 35, - NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_REQUEST = 36, - NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_RESPOND = 37, - NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_PARTOPEN = 38, - NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_OPEN = 39, - NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_CLOSEREQ = 40, - NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_CLOSING = 41, - NF_SYSCTL_CT_PROTO_TIMEOUT_DCCP_TIMEWAIT = 42, - NF_SYSCTL_CT_PROTO_DCCP_LOOSE = 43, - NF_SYSCTL_CT_LAST_SYSCTL = 44, -}; - -enum nf_ct_helper_flags { - NF_CT_HELPER_F_USERSPACE = 1, - NF_CT_HELPER_F_CONFIGURED = 2, -}; - -enum ctattr_help { - CTA_HELP_UNSPEC = 0, - CTA_HELP_NAME = 1, - CTA_HELP_INFO = 2, - __CTA_HELP_MAX = 3, -}; - -enum nfnl_cthelper_msg_types { - NFNL_MSG_CTHELPER_NEW = 0, - NFNL_MSG_CTHELPER_GET = 1, - NFNL_MSG_CTHELPER_DEL = 2, - NFNL_MSG_CTHELPER_MAX = 3, -}; - -enum nfnl_cthelper_type { - NFCTH_UNSPEC = 0, - NFCTH_NAME = 1, - NFCTH_TUPLE = 2, - NFCTH_QUEUE_NUM = 3, - NFCTH_POLICY = 4, - NFCTH_PRIV_DATA_LEN = 5, - NFCTH_STATUS = 6, - __NFCTH_MAX = 7, -}; - -enum nfnl_cthelper_policy_type { - NFCTH_POLICY_SET_UNSPEC = 0, - NFCTH_POLICY_SET_NUM = 1, - NFCTH_POLICY_SET = 2, - NFCTH_POLICY_SET1 = 2, - NFCTH_POLICY_SET2 = 3, - NFCTH_POLICY_SET3 = 4, - NFCTH_POLICY_SET4 = 5, - __NFCTH_POLICY_SET_MAX = 6, -}; - -enum nfnl_cthelper_pol_type { - NFCTH_POLICY_UNSPEC = 0, - NFCTH_POLICY_NAME = 1, - NFCTH_POLICY_EXPECT_MAX = 2, - NFCTH_POLICY_EXPECT_TIMEOUT = 3, - __NFCTH_POLICY_MAX = 4, -}; - -enum nfnl_cthelper_tuple_type { - NFCTH_TUPLE_UNSPEC = 0, - NFCTH_TUPLE_L3PROTONUM = 1, - NFCTH_TUPLE_L4PROTONUM = 2, - __NFCTH_TUPLE_MAX = 3, -}; - -struct nfnl_cthelper { - struct list_head list; - struct nf_conntrack_helper helper; -}; - -enum nft_table_flags { - NFT_TABLE_F_DORMANT = 1, - NFT_TABLE_F_OWNER = 2, - NFT_TABLE_F_PERSIST = 4, -}; - -enum { - NFT_PKTINFO_L4PROTO = 1, - NFT_PKTINFO_INNER = 2, - NFT_PKTINFO_INNER_FULL = 4, -}; - -struct nft_hook { - struct list_head list; - struct nf_hook_ops ops; - struct callback_head rcu; -}; - -enum { - IP6_FH_F_FRAG = 1, - IP6_FH_F_AUTH = 2, - IP6_FH_F_SKIP_RH = 4, -}; - -enum nft_exthdr_flags { - NFT_EXTHDR_F_PRESENT = 1, -}; - -enum nft_exthdr_op { - NFT_EXTHDR_OP_IPV6 = 0, - NFT_EXTHDR_OP_TCPOPT = 1, - NFT_EXTHDR_OP_IPV4 = 2, - NFT_EXTHDR_OP_SCTP = 3, - NFT_EXTHDR_OP_DCCP = 4, - __NFT_EXTHDR_OP_MAX = 5, -}; - -enum nft_exthdr_attributes { - NFTA_EXTHDR_UNSPEC = 0, - NFTA_EXTHDR_DREG = 1, - NFTA_EXTHDR_TYPE = 2, - NFTA_EXTHDR_OFFSET = 3, - NFTA_EXTHDR_LEN = 4, - NFTA_EXTHDR_FLAGS = 5, - NFTA_EXTHDR_OP = 6, - NFTA_EXTHDR_SREG = 7, - __NFTA_EXTHDR_MAX = 8, -}; - -enum dccp_pkt_type { - DCCP_PKT_REQUEST = 0, - DCCP_PKT_RESPONSE = 1, - DCCP_PKT_DATA = 2, - DCCP_PKT_ACK = 3, - DCCP_PKT_DATAACK = 4, - DCCP_PKT_CLOSEREQ = 5, - DCCP_PKT_CLOSE = 6, - DCCP_PKT_RESET = 7, - DCCP_PKT_SYNC = 8, - DCCP_PKT_SYNCACK = 9, - DCCP_PKT_INVALID = 10, -}; - -enum { - DCCPO_PADDING = 0, - DCCPO_MANDATORY = 1, - DCCPO_MIN_RESERVED = 3, - DCCPO_MAX_RESERVED = 31, - DCCPO_CHANGE_L = 32, - DCCPO_CONFIRM_L = 33, - DCCPO_CHANGE_R = 34, - DCCPO_CONFIRM_R = 35, - DCCPO_NDP_COUNT = 37, - DCCPO_ACK_VECTOR_0 = 38, - DCCPO_ACK_VECTOR_1 = 39, - DCCPO_TIMESTAMP = 41, - DCCPO_TIMESTAMP_ECHO = 42, - DCCPO_ELAPSED_TIME = 43, - DCCPO_MAX = 45, - DCCPO_MIN_RX_CCID_SPECIFIC = 128, - DCCPO_MAX_RX_CCID_SPECIFIC = 191, - DCCPO_MIN_TX_CCID_SPECIFIC = 192, - DCCPO_MAX_TX_CCID_SPECIFIC = 255, -}; - -struct nft_exthdr { - u8 type; - u8 offset; - u8 len; - u8 op; - u8 dreg; - u8 sreg; - u8 flags; -}; - -enum nft_connlimit_flags { - NFT_CONNLIMIT_F_INV = 1, -}; - -enum nft_connlimit_attributes { - NFTA_CONNLIMIT_UNSPEC = 0, - NFTA_CONNLIMIT_COUNT = 1, - NFTA_CONNLIMIT_FLAGS = 2, - __NFTA_CONNLIMIT_MAX = 3, -}; - -struct nft_object_hash_key { - const char *name; - const struct nft_table *table; -}; - -struct nft_object_ops; - -struct nft_object { - struct list_head list; - struct rhlist_head rhlhead; - struct nft_object_hash_key key; - u32 genmask: 2; - u32 use; - u64 handle; - u16 udlen; - u8 *udata; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - const struct nft_object_ops *ops; - unsigned char data[0]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct nft_object_type; - -struct nft_object_ops { - void (*eval)(struct nft_object *, struct nft_regs *, const struct nft_pktinfo *); - unsigned int size; - int (*init)(const struct nft_ctx *, const struct nlattr * const *, struct nft_object *); - void (*destroy)(const struct nft_ctx *, struct nft_object *); - int (*dump)(struct sk_buff *, struct nft_object *, bool); - void (*update)(struct nft_object *, struct nft_object *); - const struct nft_object_type *type; -}; - -struct nft_object_type { - const struct nft_object_ops * (*select_ops)(const struct nft_ctx *, const struct nlattr * const *); - const struct nft_object_ops *ops; - struct list_head list; - u32 type; - unsigned int maxattr; - u8 family; - struct module *owner; - const struct nla_policy *policy; -}; - -struct nf_conncount_list { - spinlock_t list_lock; - u32 last_gc; - struct list_head head; - unsigned int count; -}; - -struct nft_connlimit { - struct nf_conncount_list *list; - u32 limit; - bool invert; -}; - -enum { - XT_HMARK_SADDR_MASK = 0, - XT_HMARK_DADDR_MASK = 1, - XT_HMARK_SPI = 2, - XT_HMARK_SPI_MASK = 3, - XT_HMARK_SPORT = 4, - XT_HMARK_DPORT = 5, - XT_HMARK_SPORT_MASK = 6, - XT_HMARK_DPORT_MASK = 7, - XT_HMARK_PROTO_MASK = 8, - XT_HMARK_RND = 9, - XT_HMARK_MODULUS = 10, - XT_HMARK_OFFSET = 11, - XT_HMARK_CT = 12, - XT_HMARK_METHOD_L3 = 13, - XT_HMARK_METHOD_L3_4 = 14, -}; - -union hmark_ports { - struct { - __u16 src; - __u16 dst; - } p16; - struct { - __be16 src; - __be16 dst; - } b16; - __u32 v32; - __be32 b32; -}; - -struct xt_hmark_info { - union nf_inet_addr src_mask; - union nf_inet_addr dst_mask; - union hmark_ports port_mask; - union hmark_ports port_set; - __u32 flags; - __u16 proto_mask; - __u32 hashrnd; - __u32 hmodulus; - __u32 hoffset; -}; - -struct hmark_tuple { - __be32 src; - __be32 dst; - union hmark_ports uports; - u8 proto; -}; - -struct xt_tcpoptstrip_target_info { - __u32 strip_bmap[8]; -}; - -enum { - XT_IPVS_IPVS_PROPERTY = 1, - XT_IPVS_PROTO = 2, - XT_IPVS_VADDR = 4, - XT_IPVS_VPORT = 8, - XT_IPVS_DIR = 16, - XT_IPVS_METHOD = 32, - XT_IPVS_VPORTCTL = 64, - XT_IPVS_MASK = 127, - XT_IPVS_ONCE_MASK = 126, -}; - -struct xt_ipvs_mtinfo { - union nf_inet_addr vaddr; - union nf_inet_addr vmask; - __be16 vport; - __u8 l4proto; - __u8 fwd_method; - __be16 vportctl; - __u8 invert; - __u8 bitmask; -}; - -enum { - XT_RECENT_CHECK = 1, - XT_RECENT_SET = 2, - XT_RECENT_UPDATE = 4, - XT_RECENT_REMOVE = 8, - XT_RECENT_TTL = 16, - XT_RECENT_REAP = 32, - XT_RECENT_SOURCE = 0, - XT_RECENT_DEST = 1, - XT_RECENT_NAME_LEN = 200, -}; - -struct xt_recent_mtinfo_v1 { - __u32 seconds; - __u32 hit_count; - __u8 check_set; - __u8 invert; - char name[200]; - __u8 side; - union nf_inet_addr mask; -}; - -struct recent_entry { - struct list_head list; - struct list_head lru_list; - union nf_inet_addr addr; - u_int16_t family; - u_int8_t ttl; - u_int16_t index; - u_int16_t nstamps; - long unsigned int stamps[0]; -}; - -struct recent_table { - struct list_head list; - char name[200]; - union nf_inet_addr mask; - unsigned int refcnt; - unsigned int entries; - u_int16_t nstamps_max_mask; - struct list_head lru_list; - struct list_head iphash[0]; -}; - -struct recent_net { - struct list_head tables; - struct proc_dir_entry *xt_recent; -}; - -struct recent_iter_state { - const struct recent_table *table; - unsigned int bucket; -}; - -struct xt_recent_mtinfo_v0; - -struct ip_set_region { - spinlock_t lock; - size_t ext_size; - u32 elements; -}; - -enum { - IPSET_ERR_HASH_FULL = 4352, - IPSET_ERR_HASH_ELEM = 4353, - IPSET_ERR_INVALID_PROTO = 4354, - IPSET_ERR_MISSING_PROTO = 4355, - IPSET_ERR_HASH_RANGE_UNSUPPORTED = 4356, - IPSET_ERR_HASH_RANGE = 4357, -}; - -struct hash_netiface4_elem { - __be32 ip; - u8 physdev; - u8 cidr; - u8 nomatch; - u8 elem; - u8 wildcard; - char iface[16]; -}; - -struct hbucket { - struct callback_head rcu; - long unsigned int used[1]; - u8 size; - u8 pos; - long: 0; - unsigned char value[0]; -}; - -struct htable_gc { - struct delayed_work dwork; - struct ip_set *set; - u32 region; -}; - -struct htable { - atomic_t ref; - atomic_t uref; - u8 htable_bits; - u32 maxelem; - struct ip_set_region *hregion; - struct hbucket *bucket[0]; -}; - -struct net_prefixes { - u32 nets[1]; - u8 cidr[1]; -}; - -struct hash_netiface4 { - struct htable *table; - struct htable_gc gc; - u32 maxelem; - u32 initval; - u8 bucketsize; - struct list_head ad; - struct hash_netiface4_elem next; - struct net_prefixes nets[33]; -}; - -struct hash_netiface4_resize_ad { - struct list_head list; - enum ipset_adt ad; - struct hash_netiface4_elem d; - struct ip_set_ext ext; - struct ip_set_ext mext; - u32 flags; -}; - -struct hash_netiface6_elem { - union nf_inet_addr ip; - u8 physdev; - u8 cidr; - u8 nomatch; - u8 elem; - u8 wildcard; - char iface[16]; -}; - -struct hash_netiface6 { - struct htable *table; - struct htable_gc gc; - u32 maxelem; - u32 initval; - u8 bucketsize; - struct list_head ad; - struct hash_netiface6_elem next; - struct net_prefixes nets[129]; -}; - -struct hash_netiface6_resize_ad { - struct list_head list; - enum ipset_adt ad; - struct hash_netiface6_elem d; - struct ip_set_ext ext; - struct ip_set_ext mext; - u32 flags; -}; - -struct ip_vs_sh_bucket { - struct ip_vs_dest *dest; -}; - -struct ip_vs_sh_state { - struct callback_head callback_head; - struct ip_vs_sh_bucket buckets[256]; -}; - -struct udp_seq_afinfo { - sa_family_t family; - struct udp_table *udp_table; -}; - -struct fib_entry_notifier_info { - struct fib_notifier_info info; - u32 dst; - int dst_len; - struct fib_info *fi; - dscp_t dscp; - u8 type; - u32 tb_id; -}; - -typedef unsigned int t_key; - -struct key_vector { - t_key key; - unsigned char pos; - unsigned char bits; - unsigned char slen; - union { - struct hlist_head leaf; - struct { - struct {} __empty_tnode; - struct key_vector *tnode[0]; - }; - }; -}; - -struct tnode { - struct callback_head rcu; - t_key empty_children; - t_key full_children; - struct key_vector *parent; - struct key_vector kv[1]; -}; - -struct trie_use_stats { - unsigned int gets; - unsigned int backtrack; - unsigned int semantic_match_passed; - unsigned int semantic_match_miss; - unsigned int null_node_hit; - unsigned int resize_node_skipped; -}; - -struct trie_stat { - unsigned int totdepth; - unsigned int maxdepth; - unsigned int tnodes; - unsigned int leaves; - unsigned int nullpointers; - unsigned int prefixes; - unsigned int nodesizes[32]; -}; - -struct trie { - struct key_vector kv[1]; - struct trie_use_stats *stats; -}; - -struct fib_trie_iter { - struct seq_net_private p; - struct fib_table *tb; - struct key_vector *tnode; - unsigned int index; - unsigned int depth; -}; - -struct fib_route_iter { - struct seq_net_private p; - struct fib_table *main_tb; - struct key_vector *tnode; - loff_t pos; - t_key key; -}; - -struct tcp_request_sock_ops; - -struct tcp_request_sock { - struct inet_request_sock req; - const struct tcp_request_sock_ops *af_specific; - u64 snt_synack; - bool tfo_listener; - bool is_mptcp; - bool req_usec_ts; - u32 txhash; - u32 rcv_isn; - u32 snt_isn; - u32 ts_off; - u32 last_oow_ack_time; - u32 rcv_nxt; - u8 syn_tos; -}; - -enum tcp_synack_type { - TCP_SYNACK_NORMAL = 0, - TCP_SYNACK_FASTOPEN = 1, - TCP_SYNACK_COOKIE = 2, -}; - -struct tcp_request_sock_ops { - u16 mss_clamp; - __u32 (*cookie_init_seq)(const struct sk_buff *, __u16 *); - struct dst_entry * (*route_req)(const struct sock *, struct sk_buff *, struct flowi *, struct request_sock *, u32); - u32 (*init_seq)(const struct sk_buff *); - u32 (*init_ts_off)(const struct net *, const struct sk_buff *); - int (*send_synack)(const struct sock *, struct dst_entry *, struct flowi *, struct request_sock *, struct tcp_fastopen_cookie *, enum tcp_synack_type, struct sk_buff *); -}; - -struct module_version_attribute { - struct module_attribute mattr; - const char *module_name; - const char *version; -}; - -enum sk_pacing { - SK_PACING_NONE = 0, - SK_PACING_NEEDED = 1, - SK_PACING_FQ = 2, -}; - -enum tcp_ca_state { - TCP_CA_Open = 0, - TCP_CA_Disorder = 1, - TCP_CA_CWR = 2, - TCP_CA_Recovery = 3, - TCP_CA_Loss = 4, -}; - -struct bictcp { - u32 cnt; - u32 last_max_cwnd; - u32 last_cwnd; - u32 last_time; - u32 bic_origin_point; - u32 bic_K; - u32 delay_min; - u32 epoch_start; - u32 ack_cnt; - u32 tcp_cwnd; - u16 unused; - u8 sample_cnt; - u8 found; - u32 round_start; - u32 end_seq; - u32 last_ack; - u32 curr_rtt; -}; - -struct unix_skb_parms { - struct pid *pid; - kuid_t uid; - kgid_t gid; - struct scm_fp_list *fp; - u32 secid; - u32 consumed; -}; - -struct unix_stream_read_state { - int (*recv_actor)(struct sk_buff *, int, int, struct unix_stream_read_state *); - struct socket *socket; - struct msghdr *msg; - struct pipe_inode_info *pipe; - size_t size; - int flags; - unsigned int splice_flags; -}; - -struct bpf_unix_iter_state { - struct seq_net_private p; - unsigned int cur_sk; - unsigned int end_sk; - unsigned int max_sk; - struct sock **batch; - bool st_bucket_done; -}; - -struct bpf_iter__unix { - union { - struct bpf_iter_meta *meta; - }; - union { - struct unix_sock *unix_sk; - }; - uid_t uid; -}; - -struct rt2_hdr { - struct ipv6_rt_hdr rt_hdr; - __u32 reserved; - struct in6_addr addr; -}; - -struct ipv6_destopt_hao { - __u8 type; - __u8 length; - struct in6_addr addr; -} __attribute__((packed)); - -struct ip6_mh { - __u8 ip6mh_proto; - __u8 ip6mh_hdrlen; - __u8 ip6mh_type; - __u8 ip6mh_reserved; - __u16 ip6mh_cksum; - __u8 data[0]; -}; - -struct mip6_report_rate_limiter { - spinlock_t lock; - ktime_t stamp; - int iif; - struct in6_addr src; - struct in6_addr dst; -}; - -enum { - BR_MCAST_DIR_RX = 0, - BR_MCAST_DIR_TX = 1, - BR_MCAST_DIR_SIZE = 2, -}; - -struct net_bridge_mcast_gc { - struct hlist_node gc_node; - void (*destroy)(struct net_bridge_mcast_gc *); -}; - -struct net_bridge_port_group_sg_key { - struct net_bridge_port *port; - struct br_ip addr; -}; - -struct net_bridge_port_group { - struct net_bridge_port_group *next; - struct net_bridge_port_group_sg_key key; - unsigned char eth_addr[6]; - unsigned char flags; - unsigned char filter_mode; - unsigned char grp_query_rexmit_cnt; - unsigned char rt_protocol; - struct hlist_head src_list; - unsigned int src_ents; - struct timer_list timer; - struct timer_list rexmit_timer; - struct hlist_node mglist; - struct rb_root eht_set_tree; - struct rb_root eht_host_tree; - struct rhash_head rhnode; - struct net_bridge_mcast_gc mcast_gc; - struct callback_head rcu; -}; - -struct net_bridge_mdb_entry { - struct rhash_head rhnode; - struct net_bridge *br; - struct net_bridge_port_group *ports; - struct br_ip addr; - bool host_joined; - struct timer_list timer; - struct hlist_node mdb_node; - struct net_bridge_mcast_gc mcast_gc; - struct callback_head rcu; -}; - -enum br_pkt_type { - BR_PKT_UNICAST = 0, - BR_PKT_MULTICAST = 1, - BR_PKT_BROADCAST = 2, -}; - -enum { - IFLA_BR_UNSPEC = 0, - IFLA_BR_FORWARD_DELAY = 1, - IFLA_BR_HELLO_TIME = 2, - IFLA_BR_MAX_AGE = 3, - IFLA_BR_AGEING_TIME = 4, - IFLA_BR_STP_STATE = 5, - IFLA_BR_PRIORITY = 6, - IFLA_BR_VLAN_FILTERING = 7, - IFLA_BR_VLAN_PROTOCOL = 8, - IFLA_BR_GROUP_FWD_MASK = 9, - IFLA_BR_ROOT_ID = 10, - IFLA_BR_BRIDGE_ID = 11, - IFLA_BR_ROOT_PORT = 12, - IFLA_BR_ROOT_PATH_COST = 13, - IFLA_BR_TOPOLOGY_CHANGE = 14, - IFLA_BR_TOPOLOGY_CHANGE_DETECTED = 15, - IFLA_BR_HELLO_TIMER = 16, - IFLA_BR_TCN_TIMER = 17, - IFLA_BR_TOPOLOGY_CHANGE_TIMER = 18, - IFLA_BR_GC_TIMER = 19, - IFLA_BR_GROUP_ADDR = 20, - IFLA_BR_FDB_FLUSH = 21, - IFLA_BR_MCAST_ROUTER = 22, - IFLA_BR_MCAST_SNOOPING = 23, - IFLA_BR_MCAST_QUERY_USE_IFADDR = 24, - IFLA_BR_MCAST_QUERIER = 25, - IFLA_BR_MCAST_HASH_ELASTICITY = 26, - IFLA_BR_MCAST_HASH_MAX = 27, - IFLA_BR_MCAST_LAST_MEMBER_CNT = 28, - IFLA_BR_MCAST_STARTUP_QUERY_CNT = 29, - IFLA_BR_MCAST_LAST_MEMBER_INTVL = 30, - IFLA_BR_MCAST_MEMBERSHIP_INTVL = 31, - IFLA_BR_MCAST_QUERIER_INTVL = 32, - IFLA_BR_MCAST_QUERY_INTVL = 33, - IFLA_BR_MCAST_QUERY_RESPONSE_INTVL = 34, - IFLA_BR_MCAST_STARTUP_QUERY_INTVL = 35, - IFLA_BR_NF_CALL_IPTABLES = 36, - IFLA_BR_NF_CALL_IP6TABLES = 37, - IFLA_BR_NF_CALL_ARPTABLES = 38, - IFLA_BR_VLAN_DEFAULT_PVID = 39, - IFLA_BR_PAD = 40, - IFLA_BR_VLAN_STATS_ENABLED = 41, - IFLA_BR_MCAST_STATS_ENABLED = 42, - IFLA_BR_MCAST_IGMP_VERSION = 43, - IFLA_BR_MCAST_MLD_VERSION = 44, - IFLA_BR_VLAN_STATS_PER_PORT = 45, - IFLA_BR_MULTI_BOOLOPT = 46, - IFLA_BR_MCAST_QUERIER_STATE = 47, - IFLA_BR_FDB_N_LEARNED = 48, - IFLA_BR_FDB_MAX_LEARNED = 49, - __IFLA_BR_MAX = 50, -}; - -enum { - IFLA_BRPORT_UNSPEC = 0, - IFLA_BRPORT_STATE = 1, - IFLA_BRPORT_PRIORITY = 2, - IFLA_BRPORT_COST = 3, - IFLA_BRPORT_MODE = 4, - IFLA_BRPORT_GUARD = 5, - IFLA_BRPORT_PROTECT = 6, - IFLA_BRPORT_FAST_LEAVE = 7, - IFLA_BRPORT_LEARNING = 8, - IFLA_BRPORT_UNICAST_FLOOD = 9, - IFLA_BRPORT_PROXYARP = 10, - IFLA_BRPORT_LEARNING_SYNC = 11, - IFLA_BRPORT_PROXYARP_WIFI = 12, - IFLA_BRPORT_ROOT_ID = 13, - IFLA_BRPORT_BRIDGE_ID = 14, - IFLA_BRPORT_DESIGNATED_PORT = 15, - IFLA_BRPORT_DESIGNATED_COST = 16, - IFLA_BRPORT_ID = 17, - IFLA_BRPORT_NO = 18, - IFLA_BRPORT_TOPOLOGY_CHANGE_ACK = 19, - IFLA_BRPORT_CONFIG_PENDING = 20, - IFLA_BRPORT_MESSAGE_AGE_TIMER = 21, - IFLA_BRPORT_FORWARD_DELAY_TIMER = 22, - IFLA_BRPORT_HOLD_TIMER = 23, - IFLA_BRPORT_FLUSH = 24, - IFLA_BRPORT_MULTICAST_ROUTER = 25, - IFLA_BRPORT_PAD = 26, - IFLA_BRPORT_MCAST_FLOOD = 27, - IFLA_BRPORT_MCAST_TO_UCAST = 28, - IFLA_BRPORT_VLAN_TUNNEL = 29, - IFLA_BRPORT_BCAST_FLOOD = 30, - IFLA_BRPORT_GROUP_FWD_MASK = 31, - IFLA_BRPORT_NEIGH_SUPPRESS = 32, - IFLA_BRPORT_ISOLATED = 33, - IFLA_BRPORT_BACKUP_PORT = 34, - IFLA_BRPORT_MRP_RING_OPEN = 35, - IFLA_BRPORT_MRP_IN_OPEN = 36, - IFLA_BRPORT_MCAST_EHT_HOSTS_LIMIT = 37, - IFLA_BRPORT_MCAST_EHT_HOSTS_CNT = 38, - IFLA_BRPORT_LOCKED = 39, - IFLA_BRPORT_MAB = 40, - IFLA_BRPORT_MCAST_N_GROUPS = 41, - IFLA_BRPORT_MCAST_MAX_GROUPS = 42, - IFLA_BRPORT_NEIGH_VLAN_SUPPRESS = 43, - IFLA_BRPORT_BACKUP_NHID = 44, - __IFLA_BRPORT_MAX = 45, -}; - -struct ifinfomsg { - unsigned char ifi_family; - unsigned char __ifi_pad; - short unsigned int ifi_type; - int ifi_index; - unsigned int ifi_flags; - unsigned int ifi_change; -}; - -struct rtnl_af_ops { - struct list_head list; - int family; - int (*fill_link_af)(struct sk_buff *, const struct net_device *, u32); - size_t (*get_link_af_size)(const struct net_device *, u32); - int (*validate_link_af)(const struct net_device *, const struct nlattr *, struct netlink_ext_ack *); - int (*set_link_af)(struct net_device *, const struct nlattr *, struct netlink_ext_ack *); - int (*fill_stats_af)(struct sk_buff *, const struct net_device *); - size_t (*get_stats_af_size)(const struct net_device *); -}; - -enum { - IFLA_BRIDGE_FLAGS = 0, - IFLA_BRIDGE_MODE = 1, - IFLA_BRIDGE_VLAN_INFO = 2, - IFLA_BRIDGE_VLAN_TUNNEL_INFO = 3, - IFLA_BRIDGE_MRP = 4, - IFLA_BRIDGE_CFM = 5, - IFLA_BRIDGE_MST = 6, - __IFLA_BRIDGE_MAX = 7, -}; - -struct bridge_vlan_info { - __u16 flags; - __u16 vid; -}; - -struct bridge_vlan_xstats { - __u64 rx_bytes; - __u64 rx_packets; - __u64 tx_bytes; - __u64 tx_packets; - __u16 vid; - __u16 flags; - __u32 pad2; -}; - -enum { - BRIDGE_XSTATS_UNSPEC = 0, - BRIDGE_XSTATS_VLAN = 1, - BRIDGE_XSTATS_MCAST = 2, - BRIDGE_XSTATS_PAD = 3, - BRIDGE_XSTATS_STP = 4, - __BRIDGE_XSTATS_MAX = 5, -}; - -struct br_boolopt_multi { - __u32 optval; - __u32 optmask; -}; - -struct vtunnel_info { - u32 tunid; - u16 vid; - u16 flags; -}; - -struct sunrpc_net { - struct proc_dir_entry *proc_net_rpc; - struct cache_detail *ip_map_cache; - struct cache_detail *unix_gid_cache; - struct cache_detail *rsc_cache; - struct cache_detail *rsi_cache; - struct super_block *pipefs_sb; - struct rpc_pipe *gssd_dummy; - struct mutex pipefs_sb_lock; - struct list_head all_clients; - spinlock_t rpc_client_lock; - struct rpc_clnt *rpcb_local_clnt; - struct rpc_clnt *rpcb_local_clnt4; - spinlock_t rpcb_clnt_lock; - unsigned int rpcb_users; - unsigned int rpcb_is_af_local: 1; - struct mutex gssp_lock; - struct rpc_clnt *gssp_clnt; - int use_gss_proxy; - int pipe_version; - atomic_t pipe_users; - struct proc_dir_entry *use_gssp_proc; - struct proc_dir_entry *gss_krb5_enctypes; -}; - -enum { - RPCBPROC_NULL = 0, - RPCBPROC_SET = 1, - RPCBPROC_UNSET = 2, - RPCBPROC_GETPORT = 3, - RPCBPROC_GETADDR = 3, - RPCBPROC_DUMP = 4, - RPCBPROC_CALLIT = 5, - RPCBPROC_BCAST = 5, - RPCBPROC_GETTIME = 6, - RPCBPROC_UADDR2TADDR = 7, - RPCBPROC_TADDR2UADDR = 8, - RPCBPROC_GETVERSADDR = 9, - RPCBPROC_INDIRECT = 10, - RPCBPROC_GETADDRLIST = 11, - RPCBPROC_GETSTAT = 12, -}; - -struct rpcbind_args { - struct rpc_xprt *r_xprt; - u32 r_prog; - u32 r_vers; - u32 r_prot; - short unsigned int r_port; - const char *r_netid; - const char *r_addr; - const char *r_owner; - int r_status; -}; - -struct rpcb_info { - u32 rpc_vers; - const struct rpc_procinfo *rpc_proc; -}; - -typedef unsigned int OM_uint32; - -struct sctp_input_cb { - union { - struct inet_skb_parm h4; - struct inet6_skb_parm h6; - } header; - struct sctp_chunk *chunk; - struct sctp_af *af; - __be16 encap_port; -}; - -struct sctp_bind_hashbucket { - spinlock_t lock; - struct hlist_head chain; -}; - -struct sctp_hashbucket { - rwlock_t lock; - struct hlist_head chain; -}; - -struct sctp_globals { - struct list_head address_families; - struct sctp_hashbucket *ep_hashtable; - struct sctp_bind_hashbucket *port_hashtable; - struct rhltable transport_hashtable; - int ep_hashsize; - int port_hashsize; - __u16 max_instreams; - __u16 max_outstreams; - bool checksum_disable; -}; - -struct sctp_ht_iter { - struct seq_net_private p; - struct rhashtable_iter hti; -}; - -struct dp_upcall_info { - struct ip_tunnel_info *egress_tun_info; - const struct nlattr *userdata; - const struct nlattr *actions; - int actions_len; - u32 portid; - u8 cmd; - u16 mru; -}; - -struct trace_event_raw_ovs_do_execute_action { - struct trace_entry ent; - void *dpaddr; - u32 __data_loc_dp_name; - u32 __data_loc_dev_name; - void *skbaddr; - unsigned int len; - unsigned int data_len; - unsigned int truesize; - u8 nr_frags; - u16 gso_size; - u16 gso_type; - u32 ovs_flow_hash; - u32 recirc_id; - void *keyaddr; - u16 key_eth_type; - u8 key_ct_state; - u8 key_ct_orig_proto; - u16 key_ct_zone; - unsigned int flow_key_valid; - u8 action_type; - unsigned int action_len; - void *action_data; - u8 is_last; - char __data[0]; -}; - -struct trace_event_raw_ovs_dp_upcall { - struct trace_entry ent; - void *dpaddr; - u32 __data_loc_dp_name; - u32 __data_loc_dev_name; - void *skbaddr; - unsigned int len; - unsigned int data_len; - unsigned int truesize; - u8 nr_frags; - u16 gso_size; - u16 gso_type; - u32 ovs_flow_hash; - u32 recirc_id; - const void *keyaddr; - u16 key_eth_type; - u8 key_ct_state; - u8 key_ct_orig_proto; - u16 key_ct_zone; - unsigned int flow_key_valid; - u8 upcall_cmd; - u32 upcall_port; - u16 upcall_mru; - char __data[0]; -}; - -struct trace_event_data_offsets_ovs_do_execute_action { - u32 dp_name; - const void *dp_name_ptr_; - u32 dev_name; - const void *dev_name_ptr_; -}; - -struct trace_event_data_offsets_ovs_dp_upcall { - u32 dp_name; - const void *dp_name_ptr_; - u32 dev_name; - const void *dev_name_ptr_; -}; - -typedef void (*btf_trace_ovs_do_execute_action)(void *, struct datapath *, struct sk_buff *, struct sw_flow_key *, const struct nlattr *, int); - -typedef void (*btf_trace_ovs_dp_upcall)(void *, struct datapath *, struct sk_buff *, const struct sw_flow_key *, const struct dp_upcall_info *); - -struct sockaddr_xdp { - __u16 sxdp_family; - __u16 sxdp_flags; - __u32 sxdp_ifindex; - __u32 sxdp_queue_id; - __u32 sxdp_shared_umem_fd; -}; - -struct xdp_ring_offset { - __u64 producer; - __u64 consumer; - __u64 desc; - __u64 flags; -}; - -struct xdp_mmap_offsets { - struct xdp_ring_offset rx; - struct xdp_ring_offset tx; - struct xdp_ring_offset fr; - struct xdp_ring_offset cr; -}; - -struct xdp_umem_reg { - __u64 addr; - __u64 len; - __u32 chunk_size; - __u32 headroom; - __u32 flags; - __u32 tx_metadata_len; -}; - -struct xdp_statistics { - __u64 rx_dropped; - __u64 rx_invalid_descs; - __u64 tx_invalid_descs; - __u64 rx_ring_full; - __u64 rx_fill_ring_empty_descs; - __u64 tx_ring_empty_descs; -}; - -struct xdp_options { - __u32 flags; -}; - -struct xsk_tx_metadata { - __u64 flags; - union { - struct { - __u16 csum_start; - __u16 csum_offset; - } request; - struct { - __u64 tx_timestamp; - } completion; - }; -}; - -struct xdp_sock; - -struct xsk_map { - struct bpf_map map; - spinlock_t lock; - atomic_t count; - struct xdp_sock *xsk_map[0]; -}; - -struct xdp_sock { - struct sock sk; - struct xsk_queue *rx; - struct net_device *dev; - struct xdp_umem *umem; - struct list_head flush_node; - struct xsk_buff_pool *pool; - u16 queue_id; - bool zc; - bool sg; - enum { - XSK_READY = 0, - XSK_BOUND = 1, - XSK_UNBOUND = 2, - } state; - long: 64; - struct xsk_queue *tx; - struct list_head tx_list; - u32 tx_budget_spent; - u64 rx_dropped; - u64 rx_queue_full; - struct sk_buff *skb; - struct list_head map_list; - spinlock_t map_list_lock; - struct mutex mutex; - struct xsk_queue *fq_tmp; - struct xsk_queue *cq_tmp; -}; - -struct xdp_ring; - -struct xsk_queue { - u32 ring_mask; - u32 nentries; - u32 cached_prod; - u32 cached_cons; - struct xdp_ring *ring; - u64 invalid_descs; - u64 queue_empty_descs; - size_t ring_vmalloc_size; -}; - -struct xdp_ring_offset_v1 { - __u64 producer; - __u64 consumer; - __u64 desc; -}; - -struct xdp_mmap_offsets_v1 { - struct xdp_ring_offset_v1 rx; - struct xdp_ring_offset_v1 tx; - struct xdp_ring_offset_v1 fr; - struct xdp_ring_offset_v1 cr; -}; - -struct xsk_map_node { - struct list_head node; - struct xsk_map *map; - struct xdp_sock **map_entry; -}; - -struct xdp_ring { - u32 producer; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - u32 pad1; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - u32 consumer; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - u32 pad2; - u32 flags; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - u32 pad3; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct xdp_rxtx_ring { - struct xdp_ring ptrs; - struct xdp_desc desc[0]; -}; - -struct xdp_umem_ring { - struct xdp_ring ptrs; - u64 desc[0]; -}; - -struct parsed_desc { - u32 mb; - u32 valid; -}; - -struct uevent_sock { - struct list_head list; - struct sock *sk; -}; - -typedef __u32 Elf32_Word; - -struct elf32_note { - Elf32_Word n_namesz; - Elf32_Word n_descsz; - Elf32_Word n_type; -}; - -enum { - PROC_ROOT_INO = 1, - PROC_IPC_INIT_INO = 4026531839, - PROC_UTS_INIT_INO = 4026531838, - PROC_USER_INIT_INO = 4026531837, - PROC_PID_INIT_INO = 4026531836, - PROC_CGROUP_INIT_INO = 4026531835, - PROC_TIME_INIT_INO = 4026531834, -}; - -struct sha256_state { - u32 state[8]; - u64 count; - u8 buf[64]; -}; - -typedef void sha256_block_fn(struct sha256_state *, const u8 *, int); - -struct sha256_ce_state { - struct sha256_state sst; - u32 finalize; -}; - -struct __user_cap_header_struct { - __u32 version; - int pid; -}; - -typedef struct __user_cap_header_struct *cap_user_header_t; - -struct __user_cap_data_struct { - __u32 effective; - __u32 permitted; - __u32 inheritable; -}; - -typedef struct __user_cap_data_struct *cap_user_data_t; - -struct smp_hotplug_thread { - struct task_struct **store; - struct list_head list; - int (*thread_should_run)(unsigned int); - void (*thread_fn)(unsigned int); - void (*create)(unsigned int); - void (*setup)(unsigned int); - void (*cleanup)(unsigned int, bool); - void (*park)(unsigned int); - void (*unpark)(unsigned int); - bool selfparking; - const char *thread_comm; -}; - -struct smpboot_thread_data { - unsigned int cpu; - unsigned int status; - struct smp_hotplug_thread *ht; -}; - -enum { - HP_THREAD_NONE = 0, - HP_THREAD_ACTIVE = 1, - HP_THREAD_PARKED = 2, -}; - -struct pin_cookie {}; - -enum uclamp_id { - UCLAMP_MIN = 0, - UCLAMP_MAX = 1, - UCLAMP_CNT = 2, -}; - -struct dl_bw { - raw_spinlock_t lock; - u64 bw; - u64 total_bw; -}; - -struct cpudl_item; - -struct cpudl { - raw_spinlock_t lock; - int size; - cpumask_var_t free_cpus; - struct cpudl_item *elements; -}; - -struct cpupri_vec { - atomic_t count; - cpumask_var_t mask; -}; - -struct cpupri { - struct cpupri_vec pri_to_cpu[101]; - int *cpu_to_pri; -}; - -struct perf_domain; - -struct root_domain { - atomic_t refcount; - atomic_t rto_count; - struct callback_head rcu; - cpumask_var_t span; - cpumask_var_t online; - bool overloaded; - bool overutilized; - cpumask_var_t dlo_mask; - atomic_t dlo_count; - struct dl_bw dl_bw; - struct cpudl cpudl; - u64 visit_gen; - struct irq_work rto_push_work; - raw_spinlock_t rto_lock; - int rto_loop; - int rto_cpu; - atomic_t rto_loop_next; - atomic_t rto_loop_start; - cpumask_var_t rto_mask; - struct cpupri cpupri; - struct perf_domain *pd; -}; - -struct cfs_rq { - struct load_weight load; - unsigned int nr_running; - unsigned int h_nr_queued; - unsigned int h_nr_runnable; - unsigned int idle_nr_running; - unsigned int idle_h_nr_running; - unsigned int h_nr_delayed; - s64 avg_vruntime; - u64 avg_load; - u64 min_vruntime; - struct rb_root_cached tasks_timeline; - struct sched_entity *curr; - struct sched_entity *next; - long: 64; - long: 64; - long: 64; - long: 64; - struct sched_avg avg; - struct { - raw_spinlock_t lock; - int nr; - long unsigned int load_avg; - long unsigned int util_avg; - long unsigned int runnable_avg; - long: 64; - long: 64; - long: 64; - long: 64; - } removed; - u64 last_update_tg_load_avg; - long unsigned int tg_load_avg_contrib; - long int propagate; - long int prop_runnable_sum; - long unsigned int h_load; - u64 last_h_load_update; - struct sched_entity *h_load_next; - struct rq *rq; - int on_list; - struct list_head leaf_cfs_rq_list; - struct task_group *tg; - int idle; - int runtime_enabled; - s64 runtime_remaining; - u64 throttled_pelt_idle; - u64 throttled_clock; - u64 throttled_clock_pelt; - u64 throttled_clock_pelt_time; - u64 throttled_clock_self; - u64 throttled_clock_self_time; - int throttled; - int throttle_count; - struct list_head throttled_list; - struct list_head throttled_csd_list; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct rt_prio_array { - long unsigned int bitmap[2]; - struct list_head queue[100]; -}; - -struct rt_rq { - struct rt_prio_array active; - unsigned int rt_nr_running; - unsigned int rr_nr_running; - struct { - int curr; - int next; - } highest_prio; - bool overloaded; - struct plist_head pushable_tasks; - int rt_queued; -}; - -struct dl_rq { - struct rb_root_cached root; - unsigned int dl_nr_running; - struct { - u64 curr; - u64 next; - } earliest_dl; - bool overloaded; - struct rb_root_cached pushable_dl_tasks_root; - u64 running_bw; - u64 this_bw; - u64 extra_bw; - u64 max_bw; - u64 bw_ratio; -}; - -struct cpu_stop_done; - -struct cpu_stop_work { - struct list_head list; - cpu_stop_fn_t fn; - long unsigned int caller; - void *arg; - struct cpu_stop_done *done; -}; - -struct sched_domain; - -struct balance_callback; - -struct rq { - raw_spinlock_t __lock; - unsigned int nr_running; - long unsigned int last_blocked_load_update_tick; - unsigned int has_blocked_load; - long: 64; - call_single_data_t nohz_csd; - unsigned int nohz_tick_stopped; - atomic_t nohz_flags; - unsigned int ttwu_pending; - u64 nr_switches; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct cfs_rq cfs; - struct rt_rq rt; - struct dl_rq dl; - struct sched_dl_entity fair_server; - struct list_head leaf_cfs_rq_list; - struct list_head *tmp_alone_branch; - long unsigned int nr_uninterruptible; - struct task_struct *curr; - struct sched_dl_entity *dl_server; - struct task_struct *idle; - struct task_struct *stop; - long unsigned int next_balance; - struct mm_struct *prev_mm; - unsigned int clock_update_flags; - u64 clock; - u64 clock_task; - u64 clock_pelt; - long unsigned int lost_idle_time; - u64 clock_pelt_idle; - u64 clock_idle; - atomic_t nr_iowait; - int membarrier_state; - struct root_domain *rd; - struct sched_domain *sd; - long unsigned int cpu_capacity; - struct balance_callback *balance_callback; - unsigned char nohz_idle_balance; - unsigned char idle_balance; - long unsigned int misfit_task_load; - int active_balance; - int push_cpu; - struct cpu_stop_work active_balance_work; - int cpu; - int online; - struct list_head cfs_tasks; - long: 64; - long: 64; - struct sched_avg avg_rt; - struct sched_avg avg_dl; - u64 idle_stamp; - u64 avg_idle; - u64 max_idle_balance_cost; - u64 prev_steal_time; - long unsigned int calc_load_update; - long int calc_load_active; - struct cpuidle_state *idle_state; - unsigned int nr_pinned; - unsigned int push_busy; - struct cpu_stop_work push_work; - cpumask_var_t scratch_mask; - long: 64; - call_single_data_t cfsb_csd; - struct list_head cfsb_csd_list; - long: 64; - long: 64; -}; - -struct cfs_bandwidth { - raw_spinlock_t lock; - ktime_t period; - u64 quota; - u64 runtime; - u64 burst; - u64 runtime_snap; - s64 hierarchical_quota; - u8 idle; - u8 period_active; - u8 slack_started; - struct hrtimer period_timer; - struct hrtimer slack_timer; - struct list_head throttled_cfs_rq; - int nr_periods; - int nr_throttled; - int nr_burst; - u64 throttled_time; - u64 burst_time; -}; - -struct task_group { - struct cgroup_subsys_state css; - int idle; - struct sched_entity **se; - struct cfs_rq **cfs_rq; - long unsigned int shares; - long: 64; - long: 64; - atomic_long_t load_avg; - struct callback_head rcu; - struct list_head list; - struct task_group *parent; - struct list_head siblings; - struct list_head children; - struct autogroup *autogroup; - struct cfs_bandwidth cfs_bandwidth; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct autogroup { - struct kref kref; - struct task_group *tg; - struct rw_semaphore lock; - long unsigned int id; - int nice; -}; - -enum cpu_idle_type { - __CPU_NOT_IDLE = 0, - CPU_IDLE = 1, - CPU_NEWLY_IDLE = 2, - CPU_MAX_IDLE_TYPES = 3, -}; - -enum { - SD_BALANCE_NEWIDLE = 1, - SD_BALANCE_EXEC = 2, - SD_BALANCE_FORK = 4, - SD_BALANCE_WAKE = 8, - SD_WAKE_AFFINE = 16, - SD_ASYM_CPUCAPACITY = 32, - SD_ASYM_CPUCAPACITY_FULL = 64, - SD_SHARE_CPUCAPACITY = 128, - SD_CLUSTER = 256, - SD_SHARE_LLC = 512, - SD_SERIALIZE = 1024, - SD_ASYM_PACKING = 2048, - SD_PREFER_SIBLING = 4096, - SD_OVERLAP = 8192, - SD_NUMA = 16384, -}; - -struct sched_domain_shared { - atomic_t ref; - atomic_t nr_busy_cpus; - int has_idle_cores; - int nr_idle_scan; -}; - -struct sched_group; - -struct sched_domain { - struct sched_domain *parent; - struct sched_domain *child; - struct sched_group *groups; - long unsigned int min_interval; - long unsigned int max_interval; - unsigned int busy_factor; - unsigned int imbalance_pct; - unsigned int cache_nice_tries; - unsigned int imb_numa_nr; - int nohz_idle; - int flags; - int level; - long unsigned int last_balance; - unsigned int balance_interval; - unsigned int nr_balance_failed; - u64 max_newidle_lb_cost; - long unsigned int last_decay_max_lb_cost; - union { - void *private; - struct callback_head rcu; - }; - struct sched_domain_shared *shared; - unsigned int span_weight; - long unsigned int span[0]; -}; - -struct sched_group_capacity; - -struct sched_group { - struct sched_group *next; - atomic_t ref; - unsigned int group_weight; - unsigned int cores; - struct sched_group_capacity *sgc; - int asym_prefer_cpu; - int flags; - long unsigned int cpumask[0]; -}; - -struct sched_group_capacity { - atomic_t ref; - long unsigned int capacity; - long unsigned int min_capacity; - long unsigned int max_capacity; - long unsigned int next_update; - int imbalance; - long unsigned int cpumask[0]; -}; - -struct em_perf_state { - long unsigned int performance; - long unsigned int frequency; - long unsigned int power; - long unsigned int cost; - long unsigned int flags; -}; - -struct em_perf_table { - struct callback_head rcu; - struct kref kref; - struct em_perf_state state[0]; -}; - -struct em_perf_domain { - struct em_perf_table *em_table; - int nr_perf_states; - long unsigned int flags; - long unsigned int cpus[0]; -}; - -enum sched_tunable_scaling { - SCHED_TUNABLESCALING_NONE = 0, - SCHED_TUNABLESCALING_LOG = 1, - SCHED_TUNABLESCALING_LINEAR = 2, - SCHED_TUNABLESCALING_END = 3, -}; - -struct cpudl_item { - u64 dl; - int cpu; - int idx; -}; - -struct asym_cap_data { - struct list_head link; - struct callback_head rcu; - long unsigned int capacity; - long unsigned int cpus[0]; -}; - -typedef int (*tg_visitor)(struct task_group *, void *); - -struct balance_callback { - struct balance_callback *next; - void (*func)(struct rq *); -}; - -struct perf_domain { - struct em_perf_domain *em_pd; - struct perf_domain *next; - struct callback_head rcu; -}; - -struct rq_flags { - long unsigned int flags; - struct pin_cookie cookie; -}; - -typedef struct { - struct rq *lock; - struct rq_flags rf; -} class_rq_lock_irqsave_t; - -enum { - __SCHED_FEAT_PLACE_LAG = 0, - __SCHED_FEAT_PLACE_DEADLINE_INITIAL = 1, - __SCHED_FEAT_PLACE_REL_DEADLINE = 2, - __SCHED_FEAT_RUN_TO_PARITY = 3, - __SCHED_FEAT_PREEMPT_SHORT = 4, - __SCHED_FEAT_NEXT_BUDDY = 5, - __SCHED_FEAT_PICK_BUDDY = 6, - __SCHED_FEAT_CACHE_HOT_BUDDY = 7, - __SCHED_FEAT_DELAY_DEQUEUE = 8, - __SCHED_FEAT_DELAY_ZERO = 9, - __SCHED_FEAT_WAKEUP_PREEMPTION = 10, - __SCHED_FEAT_HRTICK = 11, - __SCHED_FEAT_HRTICK_DL = 12, - __SCHED_FEAT_DOUBLE_TICK = 13, - __SCHED_FEAT_NONTASK_CAPACITY = 14, - __SCHED_FEAT_TTWU_QUEUE = 15, - __SCHED_FEAT_SIS_UTIL = 16, - __SCHED_FEAT_WARN_DOUBLE_CLOCK = 17, - __SCHED_FEAT_RT_PUSH_IPI = 18, - __SCHED_FEAT_RT_RUNTIME_SHARE = 19, - __SCHED_FEAT_LB_MIN = 20, - __SCHED_FEAT_ATTACH_AGE_LOAD = 21, - __SCHED_FEAT_WA_IDLE = 22, - __SCHED_FEAT_WA_WEIGHT = 23, - __SCHED_FEAT_WA_BIAS = 24, - __SCHED_FEAT_UTIL_EST = 25, - __SCHED_FEAT_LATENCY_WARN = 26, - __SCHED_FEAT_NR = 27, -}; - -struct affinity_context { - const struct cpumask *new_mask; - struct cpumask *user_mask; - unsigned int flags; -}; - -struct energy_env { - long unsigned int task_busy_time; - long unsigned int pd_busy_time; - long unsigned int cpu_cap; - long unsigned int pd_cap; -}; - -enum fbq_type { - regular = 0, - remote = 1, - all = 2, -}; - -enum group_type { - group_has_spare = 0, - group_fully_busy = 1, - group_misfit_task = 2, - group_smt_balance = 3, - group_asym_packing = 4, - group_imbalanced = 5, - group_overloaded = 6, -}; - -enum migration_type { - migrate_load = 0, - migrate_util = 1, - migrate_task = 2, - migrate_misfit = 3, -}; - -struct lb_env { - struct sched_domain *sd; - struct rq *src_rq; - int src_cpu; - int dst_cpu; - struct rq *dst_rq; - struct cpumask *dst_grpmask; - int new_dst_cpu; - enum cpu_idle_type idle; - long int imbalance; - struct cpumask *cpus; - unsigned int flags; - unsigned int loop; - unsigned int loop_break; - unsigned int loop_max; - enum fbq_type fbq_type; - enum migration_type migration_type; - struct list_head tasks; -}; - -struct sg_lb_stats { - long unsigned int avg_load; - long unsigned int group_load; - long unsigned int group_capacity; - long unsigned int group_util; - long unsigned int group_runnable; - unsigned int sum_nr_running; - unsigned int sum_h_nr_running; - unsigned int idle_cpus; - unsigned int group_weight; - enum group_type group_type; - unsigned int group_asym_packing; - unsigned int group_smt_balance; - long unsigned int group_misfit_task_load; -}; - -struct sd_lb_stats { - struct sched_group *busiest; - struct sched_group *local; - long unsigned int total_load; - long unsigned int total_capacity; - long unsigned int avg_load; - unsigned int prefer_sibling; - struct sg_lb_stats busiest_stat; - struct sg_lb_stats local_stat; -}; - -struct xa_limit { - u32 max; - u32 min; -}; - -struct msi_dev_domain { - struct xarray store; - struct irq_domain *domain; -}; - -struct msi_device_data { - long unsigned int properties; - struct mutex mutex; - struct msi_dev_domain __domains[1]; - long unsigned int __iter_idx; -}; - -enum { - IRQCHIP_FWNODE_REAL = 0, - IRQCHIP_FWNODE_NAMED = 1, - IRQCHIP_FWNODE_NAMED_ID = 2, -}; - -enum msi_desc_filter { - MSI_DESC_ALL = 0, - MSI_DESC_NOTASSOCIATED = 1, - MSI_DESC_ASSOCIATED = 2, -}; - -struct msi_ctrl { - unsigned int domid; - unsigned int first; - unsigned int last; - unsigned int nirqs; -}; - -struct load_info { - const char *name; - struct module *mod; - Elf64_Ehdr *hdr; - long unsigned int len; - Elf64_Shdr *sechdrs; - char *secstrings; - char *strtab; - long unsigned int symoffs; - long unsigned int stroffs; - long unsigned int init_typeoffs; - long unsigned int core_typeoffs; - bool sig_ok; - long unsigned int mod_kallsyms_init_off; - struct { - unsigned int sym; - unsigned int str; - unsigned int mod; - unsigned int vers; - unsigned int info; - unsigned int pcpu; - } index; -}; - -typedef __u64 timeu64_t; - -struct rtc_wkalrm { - unsigned char enabled; - unsigned char pending; - struct rtc_time time; -}; - -struct rtc_param { - __u64 param; - union { - __u64 uvalue; - __s64 svalue; - __u64 ptr; - }; - __u32 index; - __u32 __pad; -}; - -struct rtc_class_ops { - int (*ioctl)(struct device *, unsigned int, long unsigned int); - int (*read_time)(struct device *, struct rtc_time *); - int (*set_time)(struct device *, struct rtc_time *); - int (*read_alarm)(struct device *, struct rtc_wkalrm *); - int (*set_alarm)(struct device *, struct rtc_wkalrm *); - int (*proc)(struct device *, struct seq_file *); - int (*alarm_irq_enable)(struct device *, unsigned int); - int (*read_offset)(struct device *, long int *); - int (*set_offset)(struct device *, long int); - int (*param_get)(struct device *, struct rtc_param *); - int (*param_set)(struct device *, struct rtc_param *); -}; - -struct rtc_device; - -struct rtc_timer { - struct timerqueue_node node; - ktime_t period; - void (*func)(struct rtc_device *); - struct rtc_device *rtc; - int enabled; -}; - -struct rtc_device { - struct device dev; - struct module *owner; - int id; - const struct rtc_class_ops *ops; - struct mutex ops_lock; - struct cdev char_dev; - long unsigned int flags; - long unsigned int irq_data; - spinlock_t irq_lock; - wait_queue_head_t irq_queue; - struct fasync_struct *async_queue; - int irq_freq; - int max_user_freq; - struct timerqueue_head timerqueue; - struct rtc_timer aie_timer; - struct rtc_timer uie_rtctimer; - struct hrtimer pie_timer; - int pie_enabled; - struct work_struct irqwork; - long unsigned int set_offset_nsec; - long unsigned int features[1]; - time64_t range_min; - timeu64_t range_max; - timeu64_t alarm_offset_max; - time64_t start_secs; - time64_t offset_secs; - bool set_start_time; -}; - -struct timens_offsets { - struct timespec64 monotonic; - struct timespec64 boottime; -}; - -struct time_namespace { - struct user_namespace *user_ns; - struct ucounts *ucounts; - struct ns_common ns; - struct timens_offsets offsets; - struct page *vvar_page; - bool frozen_offsets; -}; - -struct proc_timens_offset { - int clockid; - struct timespec64 val; -}; - -struct timens_offset { - s64 sec; - u64 nsec; -}; - -enum vdso_clock_mode { - VDSO_CLOCKMODE_NONE = 0, - VDSO_CLOCKMODE_ARCHTIMER = 1, - VDSO_CLOCKMODE_ARCHTIMER_NOCOMPAT = 2, - VDSO_CLOCKMODE_MAX = 3, - VDSO_CLOCKMODE_TIMENS = 2147483647, -}; - -struct arch_vdso_data {}; - -struct vdso_timestamp { - u64 sec; - u64 nsec; -}; - -struct vdso_data { - u32 seq; - s32 clock_mode; - u64 cycle_last; - u64 mask; - u32 mult; - u32 shift; - union { - struct vdso_timestamp basetime[12]; - struct timens_offset offset[12]; - }; - s32 tz_minuteswest; - s32 tz_dsttime; - u32 hrtimer_res; - u32 __unused; - struct arch_vdso_data arch_data; -}; - -enum { - CGRP_NOTIFY_ON_RELEASE = 0, - CGRP_CPUSET_CLONE_CHILDREN = 1, - CGRP_FREEZE = 2, - CGRP_FROZEN = 3, -}; - -struct css_task_iter { - struct cgroup_subsys *ss; - unsigned int flags; - struct list_head *cset_pos; - struct list_head *cset_head; - struct list_head *tcset_pos; - struct list_head *tcset_head; - struct list_head *task_pos; - struct list_head *cur_tasks_head; - struct css_set *cur_cset; - struct css_set *cur_dcset; - struct task_struct *cur_task; - struct list_head iters_node; -}; - -typedef int (*objpool_init_obj_cb)(void *, void *); - -struct prev_kprobe { - struct kprobe *kp; - unsigned int status; -}; - -struct kprobe_ctlblk { - unsigned int kprobe_status; - long unsigned int saved_irqflag; - struct prev_kprobe prev_kprobe; -}; - -struct kprobe_blacklist_entry { - struct list_head list; - long unsigned int start_addr; - long unsigned int end_addr; -}; - -struct kprobe_insn_cache { - struct mutex mutex; - void * (*alloc)(void); - void (*free)(void *); - const char *sym; - struct list_head pages; - size_t insn_size; - int nr_garbage; -}; - -enum perf_record_ksymbol_type { - PERF_RECORD_KSYMBOL_TYPE_UNKNOWN = 0, - PERF_RECORD_KSYMBOL_TYPE_BPF = 1, - PERF_RECORD_KSYMBOL_TYPE_OOL = 2, - PERF_RECORD_KSYMBOL_TYPE_MAX = 3, -}; - -enum execmem_type { - EXECMEM_DEFAULT = 0, - EXECMEM_MODULE_TEXT = 0, - EXECMEM_KPROBES = 1, - EXECMEM_FTRACE = 2, - EXECMEM_BPF = 3, - EXECMEM_MODULE_DATA = 4, - EXECMEM_TYPE_MAX = 5, -}; - -struct kprobe_insn_page { - struct list_head list; - kprobe_opcode_t *insns; - struct kprobe_insn_cache *cache; - int nused; - int ngarbage; - char slot_used[0]; -}; - -enum kprobe_slot_state { - SLOT_CLEAN = 0, - SLOT_DIRTY = 1, - SLOT_USED = 2, -}; - -enum { - CSS_TASK_ITER_PROCS = 1, - CSS_TASK_ITER_THREADED = 2, - CSS_TASK_ITER_SKIPPED = 65536, -}; - -enum bpf_iter_feature { - BPF_ITER_RESCHED = 1, -}; - -struct bpf_iter_seq_task_common { - struct pid_namespace *ns; - enum bpf_iter_task_type type; - u32 pid; - u32 pid_visiting; -}; - -struct bpf_iter_seq_task_info { - struct bpf_iter_seq_task_common common; - u32 tid; -}; - -struct bpf_iter__task { - union { - struct bpf_iter_meta *meta; - }; - union { - struct task_struct *task; - }; -}; - -struct bpf_iter_seq_task_file_info { - struct bpf_iter_seq_task_common common; - struct task_struct *task; - u32 tid; - u32 fd; -}; - -struct bpf_iter__task_file { - union { - struct bpf_iter_meta *meta; - }; - union { - struct task_struct *task; - }; - u32 fd; - union { - struct file *file; - }; -}; - -struct bpf_iter_seq_task_vma_info { - struct bpf_iter_seq_task_common common; - struct task_struct *task; - struct mm_struct *mm; - struct vm_area_struct *vma; - u32 tid; - long unsigned int prev_vm_start; - long unsigned int prev_vm_end; -}; - -enum bpf_task_vma_iter_find_op { - task_vma_iter_first_vma = 0, - task_vma_iter_next_vma = 1, - task_vma_iter_find_vma = 2, -}; - -struct bpf_iter__task_vma { - union { - struct bpf_iter_meta *meta; - }; - union { - struct task_struct *task; - }; - union { - struct vm_area_struct *vma; - }; -}; - -typedef u64 (*btf_bpf_find_vma)(struct task_struct *, u64, bpf_callback_t, void *, u64); - -struct bpf_iter_task_vma_kern_data { - struct task_struct *task; - struct mm_struct *mm; - struct mmap_unlock_irq_work *work; - struct vma_iterator vmi; -}; - -struct bpf_iter_task_vma { - __u64 __opaque[1]; -}; - -struct bpf_iter_task_vma_kern { - struct bpf_iter_task_vma_kern_data *data; -}; - -struct bpf_iter_css_task { - __u64 __opaque[1]; -}; - -struct bpf_iter_css_task_kern { - struct css_task_iter *css_it; -}; - -struct bpf_iter_task { - __u64 __opaque[3]; -}; - -struct bpf_iter_task_kern { - struct task_struct *task; - struct task_struct *pos; - unsigned int flags; -}; - -enum { - BPF_TASK_ITER_ALL_PROCS = 0, - BPF_TASK_ITER_ALL_THREADS = 1, - BPF_TASK_ITER_PROC_THREADS = 2, -}; - -struct bpf_netns_link { - struct bpf_link link; - enum bpf_attach_type type; - enum netns_bpf_attach_type netns_type; - struct net *net; - struct list_head node; -}; - -typedef void (*call_rcu_func_t)(struct callback_head *, rcu_callback_t); - -struct bpf_map_info { - __u32 type; - __u32 id; - __u32 key_size; - __u32 value_size; - __u32 max_entries; - __u32 map_flags; - char name[16]; - __u32 ifindex; - __u32 btf_vmlinux_value_type_id; - __u64 netns_dev; - __u64 netns_ino; - __u32 btf_id; - __u32 btf_key_type_id; - __u32 btf_value_type_id; - __u32 btf_vmlinux_id; - __u64 map_extra; -}; - -struct bpf_tramp_link; - -struct bpf_tramp_links { - struct bpf_tramp_link *links[38]; - int nr_links; -}; - -struct bpf_tramp_link { - struct bpf_link link; - struct hlist_node tramp_hlist; - u64 cookie; -}; - -struct bpf_struct_ops_arg_info { - struct bpf_ctx_arg_aux *info; - u32 cnt; -}; - -struct bpf_struct_ops_desc { - struct bpf_struct_ops *st_ops; - const struct btf_type *type; - const struct btf_type *value_type; - u32 type_id; - u32 value_id; - struct bpf_struct_ops_arg_info *arg_info; -}; - -struct bpf_struct_ops_value { - struct bpf_struct_ops_common_value common; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - char data[0]; -}; - -struct bpf_struct_ops_map { - struct bpf_map map; - struct callback_head rcu; - const struct bpf_struct_ops_desc *st_ops_desc; - struct mutex lock; - struct bpf_link **links; - struct bpf_ksym **ksyms; - u32 funcs_cnt; - u32 image_pages_cnt; - void *image_pages[8]; - struct btf *btf; - struct bpf_struct_ops_value *uvalue; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct bpf_struct_ops_value kvalue; -}; - -struct bpf_struct_ops_link { - struct bpf_link link; - struct bpf_map *map; - wait_queue_head_t wait_hup; -}; - -enum { - IDX_MODULE_ID = 0, - IDX_ST_OPS_COMMON_VALUE_ID = 1, -}; - -enum vmscan_throttle_state { - VMSCAN_THROTTLE_WRITEBACK = 0, - VMSCAN_THROTTLE_ISOLATED = 1, - VMSCAN_THROTTLE_NOPROGRESS = 2, - VMSCAN_THROTTLE_CONGESTED = 3, - NR_VMSCAN_THROTTLE = 4, -}; - -enum mminit_level { - MMINIT_WARNING = 0, - MMINIT_VERIFY = 1, - MMINIT_TRACE = 2, -}; - -typedef unsigned int pgtbl_mod_mask; - -struct follow_pfnmap_args { - struct vm_area_struct *vma; - long unsigned int address; - spinlock_t *lock; - pte_t *ptep; - long unsigned int pfn; - pgprot_t pgprot; - bool writable; - bool special; -}; - -typedef int (*pte_fn_t)(pte_t *, long unsigned int, void *); - -enum rmap_level { - RMAP_LEVEL_PTE = 0, - RMAP_LEVEL_PMD = 1, -}; - -struct unlink_vma_file_batch { - int count; - struct vm_area_struct *vmas[8]; -}; - -typedef int fpb_t; - -struct copy_subpage_arg { - struct folio *dst; - struct folio *src; - struct vm_area_struct *vma; -}; - -enum zpool_mapmode { - ZPOOL_MM_RW = 0, - ZPOOL_MM_RO = 1, - ZPOOL_MM_WO = 2, - ZPOOL_MM_DEFAULT = 0, -}; - -struct zpool_driver { - char *type; - struct module *owner; - atomic_t refcount; - struct list_head list; - void * (*create)(const char *, gfp_t); - void (*destroy)(void *); - bool malloc_support_movable; - int (*malloc)(void *, size_t, gfp_t, long unsigned int *); - void (*free)(void *, long unsigned int); - bool sleep_mapped; - void * (*map)(void *, long unsigned int, enum zpool_mapmode); - void (*unmap)(void *, long unsigned int); - u64 (*total_pages)(void *); -}; - -struct zpool { - struct zpool_driver *driver; - void *pool; -}; - -struct wb_writeback_work { - long int nr_pages; - struct super_block *sb; - enum writeback_sync_modes sync_mode; - unsigned int tagged_writepages: 1; - unsigned int for_kupdate: 1; - unsigned int range_cyclic: 1; - unsigned int for_background: 1; - unsigned int for_sync: 1; - unsigned int auto_free: 1; - enum wb_reason reason; - struct list_head list; - struct wb_completion *done; -}; - -struct trace_event_raw_writeback_folio_template { - struct trace_entry ent; - char name[32]; - ino_t ino; - long unsigned int index; - char __data[0]; -}; - -struct trace_event_raw_writeback_dirty_inode_template { - struct trace_entry ent; - char name[32]; - ino_t ino; - long unsigned int state; - long unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_inode_foreign_history { - struct trace_entry ent; - char name[32]; - ino_t ino; - ino_t cgroup_ino; - unsigned int history; - char __data[0]; -}; - -struct trace_event_raw_inode_switch_wbs { - struct trace_entry ent; - char name[32]; - ino_t ino; - ino_t old_cgroup_ino; - ino_t new_cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_track_foreign_dirty { - struct trace_entry ent; - char name[32]; - u64 bdi_id; - ino_t ino; - unsigned int memcg_id; - ino_t cgroup_ino; - ino_t page_cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_flush_foreign { - struct trace_entry ent; - char name[32]; - ino_t cgroup_ino; - unsigned int frn_bdi_id; - unsigned int frn_memcg_id; - char __data[0]; -}; - -struct trace_event_raw_writeback_write_inode_template { - struct trace_entry ent; - char name[32]; - ino_t ino; - int sync_mode; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_writeback_work_class { - struct trace_entry ent; - char name[32]; - long int nr_pages; - dev_t sb_dev; - int sync_mode; - int for_kupdate; - int range_cyclic; - int for_background; - int reason; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_writeback_pages_written { - struct trace_entry ent; - long int pages; - char __data[0]; -}; - -struct trace_event_raw_writeback_class { - struct trace_entry ent; - char name[32]; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_writeback_bdi_register { - struct trace_entry ent; - char name[32]; - char __data[0]; -}; - -struct trace_event_raw_wbc_class { - struct trace_entry ent; - char name[32]; - long int nr_to_write; - long int pages_skipped; - int sync_mode; - int for_kupdate; - int for_background; - int for_reclaim; - int range_cyclic; - long int range_start; - long int range_end; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_writeback_queue_io { - struct trace_entry ent; - char name[32]; - long unsigned int older; - long int age; - int moved; - int reason; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_global_dirty_state { - struct trace_entry ent; - long unsigned int nr_dirty; - long unsigned int nr_writeback; - long unsigned int background_thresh; - long unsigned int dirty_thresh; - long unsigned int dirty_limit; - long unsigned int nr_dirtied; - long unsigned int nr_written; - char __data[0]; -}; - -struct trace_event_raw_bdi_dirty_ratelimit { - struct trace_entry ent; - char bdi[32]; - long unsigned int write_bw; - long unsigned int avg_write_bw; - long unsigned int dirty_rate; - long unsigned int dirty_ratelimit; - long unsigned int task_ratelimit; - long unsigned int balanced_dirty_ratelimit; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_balance_dirty_pages { - struct trace_entry ent; - char bdi[32]; - long unsigned int limit; - long unsigned int setpoint; - long unsigned int dirty; - long unsigned int bdi_setpoint; - long unsigned int bdi_dirty; - long unsigned int dirty_ratelimit; - long unsigned int task_ratelimit; - unsigned int dirtied; - unsigned int dirtied_pause; - long unsigned int paused; - long int pause; - long unsigned int period; - long int think; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_writeback_sb_inodes_requeue { - struct trace_entry ent; - char name[32]; - ino_t ino; - long unsigned int state; - long unsigned int dirtied_when; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_writeback_single_inode_template { - struct trace_entry ent; - char name[32]; - ino_t ino; - long unsigned int state; - long unsigned int dirtied_when; - long unsigned int writeback_index; - long int nr_to_write; - long unsigned int wrote; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_writeback_inode_template { - struct trace_entry ent; - dev_t dev; - ino_t ino; - long unsigned int state; - __u16 mode; - long unsigned int dirtied_when; - char __data[0]; -}; - -struct trace_event_data_offsets_writeback_folio_template {}; - -struct trace_event_data_offsets_writeback_dirty_inode_template {}; - -struct trace_event_data_offsets_inode_foreign_history {}; - -struct trace_event_data_offsets_inode_switch_wbs {}; - -struct trace_event_data_offsets_track_foreign_dirty {}; - -struct trace_event_data_offsets_flush_foreign {}; - -struct trace_event_data_offsets_writeback_write_inode_template {}; - -struct trace_event_data_offsets_writeback_work_class {}; - -struct trace_event_data_offsets_writeback_pages_written {}; - -struct trace_event_data_offsets_writeback_class {}; - -struct trace_event_data_offsets_writeback_bdi_register {}; - -struct trace_event_data_offsets_wbc_class {}; - -struct trace_event_data_offsets_writeback_queue_io {}; - -struct trace_event_data_offsets_global_dirty_state {}; - -struct trace_event_data_offsets_bdi_dirty_ratelimit {}; - -struct trace_event_data_offsets_balance_dirty_pages {}; - -struct trace_event_data_offsets_writeback_sb_inodes_requeue {}; - -struct trace_event_data_offsets_writeback_single_inode_template {}; - -struct trace_event_data_offsets_writeback_inode_template {}; - -typedef void (*btf_trace_writeback_dirty_folio)(void *, struct folio *, struct address_space *); - -typedef void (*btf_trace_folio_wait_writeback)(void *, struct folio *, struct address_space *); - -typedef void (*btf_trace_writeback_mark_inode_dirty)(void *, struct inode *, int); - -typedef void (*btf_trace_writeback_dirty_inode_start)(void *, struct inode *, int); - -typedef void (*btf_trace_writeback_dirty_inode)(void *, struct inode *, int); - -typedef void (*btf_trace_inode_foreign_history)(void *, struct inode *, struct writeback_control *, unsigned int); - -typedef void (*btf_trace_inode_switch_wbs)(void *, struct inode *, struct bdi_writeback *, struct bdi_writeback *); - -typedef void (*btf_trace_track_foreign_dirty)(void *, struct folio *, struct bdi_writeback *); - -typedef void (*btf_trace_flush_foreign)(void *, struct bdi_writeback *, unsigned int, unsigned int); - -typedef void (*btf_trace_writeback_write_inode_start)(void *, struct inode *, struct writeback_control *); - -typedef void (*btf_trace_writeback_write_inode)(void *, struct inode *, struct writeback_control *); - -typedef void (*btf_trace_writeback_queue)(void *, struct bdi_writeback *, struct wb_writeback_work *); - -typedef void (*btf_trace_writeback_exec)(void *, struct bdi_writeback *, struct wb_writeback_work *); - -typedef void (*btf_trace_writeback_start)(void *, struct bdi_writeback *, struct wb_writeback_work *); - -typedef void (*btf_trace_writeback_written)(void *, struct bdi_writeback *, struct wb_writeback_work *); - -typedef void (*btf_trace_writeback_wait)(void *, struct bdi_writeback *, struct wb_writeback_work *); - -typedef void (*btf_trace_writeback_pages_written)(void *, long int); - -typedef void (*btf_trace_writeback_wake_background)(void *, struct bdi_writeback *); - -typedef void (*btf_trace_writeback_bdi_register)(void *, struct backing_dev_info *); - -typedef void (*btf_trace_wbc_writepage)(void *, struct writeback_control *, struct backing_dev_info *); - -typedef void (*btf_trace_writeback_queue_io)(void *, struct bdi_writeback *, struct wb_writeback_work *, long unsigned int, int); - -typedef void (*btf_trace_global_dirty_state)(void *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_bdi_dirty_ratelimit)(void *, struct bdi_writeback *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_balance_dirty_pages)(void *, struct bdi_writeback *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long int, long unsigned int); - -typedef void (*btf_trace_writeback_sb_inodes_requeue)(void *, struct inode *); - -typedef void (*btf_trace_writeback_single_inode_start)(void *, struct inode *, struct writeback_control *, long unsigned int); - -typedef void (*btf_trace_writeback_single_inode)(void *, struct inode *, struct writeback_control *, long unsigned int); - -typedef void (*btf_trace_writeback_lazytime)(void *, struct inode *); - -typedef void (*btf_trace_writeback_lazytime_iput)(void *, struct inode *); - -typedef void (*btf_trace_writeback_dirty_inode_enqueue)(void *, struct inode *); - -typedef void (*btf_trace_sb_mark_inode_writeback)(void *, struct inode *); - -typedef void (*btf_trace_sb_clear_inode_writeback)(void *, struct inode *); - -struct inode_switch_wbs_context { - struct rcu_work work; - struct bdi_writeback *new_wb; - struct inode *inodes[0]; -}; - -struct fscrypt_keyring { - spinlock_t lock; - struct hlist_head key_hashtable[128]; -}; - -struct fscrypt_provisioning_key_payload { - __u32 type; - __u32 __reserved; - __u8 raw[0]; -}; - -struct fscrypt_add_key_arg { - struct fscrypt_key_specifier key_spec; - __u32 raw_size; - __u32 key_id; - __u32 __reserved[8]; - __u8 raw[0]; -}; - -struct fscrypt_remove_key_arg { - struct fscrypt_key_specifier key_spec; - __u32 removal_status_flags; - __u32 __reserved[5]; -}; - -struct fscrypt_get_key_status_arg { - struct fscrypt_key_specifier key_spec; - __u32 __reserved[6]; - __u32 status; - __u32 status_flags; - __u32 user_count; - __u32 __out_reserved[13]; -}; - -typedef long int intptr_t; - -struct genradix_node { - union { - struct genradix_node *children[64]; - u8 data[512]; - }; -}; - -struct seccomp_data { - int nr; - __u32 arch; - __u64 instruction_pointer; - __u64 args[6]; -}; - -struct syscall_info { - __u64 sp; - struct seccomp_data data; -}; - -enum resctrl_conf_type { - CDP_NONE = 0, - CDP_CODE = 1, - CDP_DATA = 2, -}; - -enum proc_mem_force { - PROC_MEM_FORCE_ALWAYS = 0, - PROC_MEM_FORCE_PTRACE = 1, - PROC_MEM_FORCE_NEVER = 2, -}; - -struct pid_entry { - const char *name; - unsigned int len; - umode_t mode; - const struct inode_operations *iop; - const struct file_operations *fop; - union proc_op op; -}; - -struct limit_names { - const char *name; - const char *unit; -}; - -struct map_files_info { - long unsigned int start; - long unsigned int end; - fmode_t mode; -}; - -struct timers_private { - struct pid *pid; - struct task_struct *task; - struct sighand_struct *sighand; - struct pid_namespace *ns; - long unsigned int flags; -}; - -struct tgid_iter { - unsigned int tgid; - struct task_struct *task; -}; - -enum netfs_read_trace { - netfs_read_trace_dio_read = 0, - netfs_read_trace_expanded = 1, - netfs_read_trace_readahead = 2, - netfs_read_trace_readpage = 3, - netfs_read_trace_read_gaps = 4, - netfs_read_trace_prefetch_for_write = 5, - netfs_read_trace_write_begin = 6, -} __attribute__((mode(byte))); - -struct ext4_map_blocks { - ext4_fsblk_t m_pblk; - ext4_lblk_t m_lblk; - unsigned int m_len; - unsigned int m_flags; -}; - -enum { - EXT4_FC_REASON_XATTR = 0, - EXT4_FC_REASON_CROSS_RENAME = 1, - EXT4_FC_REASON_JOURNAL_FLAG_CHANGE = 2, - EXT4_FC_REASON_NOMEM = 3, - EXT4_FC_REASON_SWAP_BOOT = 4, - EXT4_FC_REASON_RESIZE = 5, - EXT4_FC_REASON_RENAME_DIR = 6, - EXT4_FC_REASON_FALLOC_RANGE = 7, - EXT4_FC_REASON_INODE_JOURNAL_DATA = 8, - EXT4_FC_REASON_ENCRYPTED_FILENAME = 9, - EXT4_FC_REASON_MAX = 10, -}; - -struct ext4_dir_entry_hash { - __le32 hash; - __le32 minor_hash; -}; - -struct ext4_dir_entry_2 { - __le32 inode; - __le16 rec_len; - __u8 name_len; - __u8 file_type; - char name[255]; -}; - -struct fname; - -struct dir_private_info { - struct rb_root root; - struct rb_node *curr_node; - struct fname *extra_fname; - loff_t last_pos; - __u32 curr_hash; - __u32 curr_minor_hash; - __u32 next_hash; - u64 cookie; - bool initialized; -}; - -struct fname { - __u32 hash; - __u32 minor_hash; - struct rb_node rb_hash; - struct fname *next; - __u32 inode; - __u8 name_len; - __u8 file_type; - char name[0]; -}; - -struct ext4_new_group_data { - __u32 group; - __u64 block_bitmap; - __u64 inode_bitmap; - __u64 inode_table; - __u32 blocks_count; - __u16 reserved_blocks; - __u16 mdata_blocks; - __u32 free_clusters_count; -}; - -enum { - BLOCK_BITMAP = 0, - INODE_BITMAP = 1, - INODE_TABLE = 2, - GROUP_TABLE_COUNT = 3, -}; - -struct ext4_rcu_ptr { - struct callback_head rcu; - void *ptr; -}; - -struct ext4_new_flex_group_data { - struct ext4_new_group_data *groups; - __u16 *bg_flags; - ext4_group_t resize_bg; - ext4_group_t count; -}; - -struct xattr; - -typedef int (*initxattrs)(struct inode *, const struct xattr *, void *); - -struct xattr { - const char *name; - void *value; - size_t value_len; -}; - -enum Opt_errors { - Opt_errors_continue = 0, - Opt_errors_panic = 1, -}; - -enum squashfs_param { - Opt_errors___3 = 0, - Opt_threads = 1, -}; - -struct squashfs_mount_opts { - enum Opt_errors errors; - const struct squashfs_decompressor_thread_ops *thread_ops; - int thread_num; -}; - -typedef long long unsigned int llu; - -struct fat_fid { - u32 i_gen; - u32 i_pos_low; - u16 i_pos_hi; - u16 parent_i_pos_hi; - u32 parent_i_pos_low; - u32 parent_i_gen; -}; - -struct iso_directory_record { - __u8 length[1]; - __u8 ext_attr_length[1]; - __u8 extent[8]; - __u8 size[8]; - __u8 date[7]; - __u8 flags[1]; - __u8 file_unit_size[1]; - __u8 interleave[1]; - __u8 volume_sequence_number[4]; - __u8 name_len[1]; - char name[0]; -}; - -struct isofs_sb_info { - long unsigned int s_ninodes; - long unsigned int s_nzones; - long unsigned int s_firstdatazone; - long unsigned int s_log_zone_size; - long unsigned int s_max_size; - int s_rock_offset; - s32 s_sbsector; - unsigned char s_joliet_level; - unsigned char s_mapping; - unsigned char s_check; - unsigned char s_session; - unsigned int s_high_sierra: 1; - unsigned int s_rock: 2; - unsigned int s_cruft: 1; - unsigned int s_nocompress: 1; - unsigned int s_hide: 1; - unsigned int s_showassoc: 1; - unsigned int s_overriderockperm: 1; - unsigned int s_uid_set: 1; - unsigned int s_gid_set: 1; - umode_t s_fmode; - umode_t s_dmode; - kgid_t s_gid; - kuid_t s_uid; - struct nls_table *s_nls_iocharset; -}; - -enum { - FATTR4_MODE_UMASK = 81, -}; - -struct nfs_open_dir_context { - struct list_head list; - atomic_t cache_hits; - atomic_t cache_misses; - long unsigned int attr_gencount; - __be32 verf[2]; - __u64 dir_cookie; - __u64 last_cookie; - long unsigned int page_index; - unsigned int dtsize; - bool force_clear; - bool eof; - struct callback_head callback_head; -}; - -struct nfs_cache_array_entry { - u64 cookie; - u64 ino; - const char *name; - unsigned int name_len; - unsigned char d_type; -}; - -struct nfs_cache_array { - u64 change_attr; - u64 last_cookie; - unsigned int size; - unsigned char folio_full: 1; - unsigned char folio_is_eof: 1; - unsigned char cookies_are_ordered: 1; - struct nfs_cache_array_entry array[0]; -}; - -struct nfs_readdir_descriptor { - struct file *file; - struct folio *folio; - struct dir_context *ctx; - long unsigned int folio_index; - long unsigned int folio_index_max; - u64 dir_cookie; - u64 last_cookie; - loff_t current_index; - __be32 verf[2]; - long unsigned int dir_verifier; - long unsigned int timestamp; - long unsigned int gencount; - long unsigned int attr_gencount; - unsigned int cache_entry_index; - unsigned int buffer_fills; - unsigned int dtsize; - bool clear_cache; - bool plus; - bool eob; - bool eof; -}; - -struct rpc_pipe_dir_object_ops; - -struct rpc_pipe_dir_object { - struct list_head pdo_head; - const struct rpc_pipe_dir_object_ops *pdo_ops; - void *pdo_data; -}; - -struct rpc_pipe_dir_object_ops { - int (*create)(struct dentry *, struct rpc_pipe_dir_object *); - void (*destroy)(struct dentry *, struct rpc_pipe_dir_object *); -}; - -struct rpc_inode { - struct inode vfs_inode; - void *private; - struct rpc_pipe *pipe; - wait_queue_head_t waitq; -}; - -struct idmap_legacy_upcalldata; - -struct idmap { - struct rpc_pipe_dir_object idmap_pdo; - struct rpc_pipe *idmap_pipe; - struct idmap_legacy_upcalldata *idmap_upcall_data; - struct mutex idmap_mutex; - struct user_namespace *user_ns; -}; - -struct idmap_msg { - __u8 im_type; - __u8 im_conv; - char im_name[128]; - __u32 im_id; - __u8 im_status; -}; - -struct idmap_legacy_upcalldata { - struct rpc_pipe_msg pipe_msg; - struct idmap_msg idmap_msg; - struct key *authkey; - struct idmap *idmap; -}; - -enum { - Opt_find_uid = 0, - Opt_find_gid = 1, - Opt_find_user = 2, - Opt_find_group = 3, - Opt_find_err = 4, -}; - -enum { - NFSPROC4_CLNT_NULL = 0, - NFSPROC4_CLNT_READ = 1, - NFSPROC4_CLNT_WRITE = 2, - NFSPROC4_CLNT_COMMIT = 3, - NFSPROC4_CLNT_OPEN = 4, - NFSPROC4_CLNT_OPEN_CONFIRM = 5, - NFSPROC4_CLNT_OPEN_NOATTR = 6, - NFSPROC4_CLNT_OPEN_DOWNGRADE = 7, - NFSPROC4_CLNT_CLOSE = 8, - NFSPROC4_CLNT_SETATTR = 9, - NFSPROC4_CLNT_FSINFO = 10, - NFSPROC4_CLNT_RENEW = 11, - NFSPROC4_CLNT_SETCLIENTID = 12, - NFSPROC4_CLNT_SETCLIENTID_CONFIRM = 13, - NFSPROC4_CLNT_LOCK = 14, - NFSPROC4_CLNT_LOCKT = 15, - NFSPROC4_CLNT_LOCKU = 16, - NFSPROC4_CLNT_ACCESS = 17, - NFSPROC4_CLNT_GETATTR = 18, - NFSPROC4_CLNT_LOOKUP = 19, - NFSPROC4_CLNT_LOOKUP_ROOT = 20, - NFSPROC4_CLNT_REMOVE = 21, - NFSPROC4_CLNT_RENAME = 22, - NFSPROC4_CLNT_LINK = 23, - NFSPROC4_CLNT_SYMLINK = 24, - NFSPROC4_CLNT_CREATE = 25, - NFSPROC4_CLNT_PATHCONF = 26, - NFSPROC4_CLNT_STATFS = 27, - NFSPROC4_CLNT_READLINK = 28, - NFSPROC4_CLNT_READDIR = 29, - NFSPROC4_CLNT_SERVER_CAPS = 30, - NFSPROC4_CLNT_DELEGRETURN = 31, - NFSPROC4_CLNT_GETACL = 32, - NFSPROC4_CLNT_SETACL = 33, - NFSPROC4_CLNT_FS_LOCATIONS = 34, - NFSPROC4_CLNT_RELEASE_LOCKOWNER = 35, - NFSPROC4_CLNT_SECINFO = 36, - NFSPROC4_CLNT_FSID_PRESENT = 37, - NFSPROC4_CLNT_EXCHANGE_ID = 38, - NFSPROC4_CLNT_CREATE_SESSION = 39, - NFSPROC4_CLNT_DESTROY_SESSION = 40, - NFSPROC4_CLNT_SEQUENCE = 41, - NFSPROC4_CLNT_GET_LEASE_TIME = 42, - NFSPROC4_CLNT_RECLAIM_COMPLETE = 43, - NFSPROC4_CLNT_LAYOUTGET = 44, - NFSPROC4_CLNT_GETDEVICEINFO = 45, - NFSPROC4_CLNT_LAYOUTCOMMIT = 46, - NFSPROC4_CLNT_LAYOUTRETURN = 47, - NFSPROC4_CLNT_SECINFO_NO_NAME = 48, - NFSPROC4_CLNT_TEST_STATEID = 49, - NFSPROC4_CLNT_FREE_STATEID = 50, - NFSPROC4_CLNT_GETDEVICELIST = 51, - NFSPROC4_CLNT_BIND_CONN_TO_SESSION = 52, - NFSPROC4_CLNT_DESTROY_CLIENTID = 53, - NFSPROC4_CLNT_SEEK = 54, - NFSPROC4_CLNT_ALLOCATE = 55, - NFSPROC4_CLNT_DEALLOCATE = 56, - NFSPROC4_CLNT_LAYOUTSTATS = 57, - NFSPROC4_CLNT_CLONE = 58, - NFSPROC4_CLNT_COPY = 59, - NFSPROC4_CLNT_OFFLOAD_CANCEL = 60, - NFSPROC4_CLNT_LOOKUPP = 61, - NFSPROC4_CLNT_LAYOUTERROR = 62, - NFSPROC4_CLNT_COPY_NOTIFY = 63, - NFSPROC4_CLNT_GETXATTR = 64, - NFSPROC4_CLNT_SETXATTR = 65, - NFSPROC4_CLNT_LISTXATTRS = 66, - NFSPROC4_CLNT_REMOVEXATTR = 67, - NFSPROC4_CLNT_READ_PLUS = 68, -}; - -enum data_content4 { - NFS4_CONTENT_DATA = 0, - NFS4_CONTENT_HOLE = 1, -}; - -struct nfs42_netaddr { - char netid[5]; - char addr[58]; - u32 netid_len; - u32 addr_len; -}; - -enum netloc_type4 { - NL4_NAME = 1, - NL4_URL = 2, - NL4_NETADDR = 3, -}; - -struct nl4_server { - enum netloc_type4 nl4_type; - union { - struct { - int nl4_str_sz; - char nl4_str[1025]; - }; - struct nfs42_netaddr nl4_addr; - } u; -}; - -struct nfs42_layoutstat_res { - struct nfs4_sequence_res seq_res; - int num_dev; - int rpc_status; -}; - -struct nfs42_layoutstat_data { - struct inode *inode; - struct nfs42_layoutstat_args args; - struct nfs42_layoutstat_res res; -}; - -struct nfs42_device_error { - struct nfs4_deviceid dev_id; - int status; - enum nfs_opnum4 opnum; -}; - -struct nfs42_layout_error { - __u64 offset; - __u64 length; - nfs4_stateid stateid; - struct nfs42_device_error errors[1]; -}; - -struct nfs42_layouterror_args { - struct nfs4_sequence_args seq_args; - struct inode *inode; - unsigned int num_errors; - struct nfs42_layout_error errors[5]; -}; - -struct nfs42_layouterror_res { - struct nfs4_sequence_res seq_res; - unsigned int num_errors; - int rpc_status; -}; - -struct nfs42_layouterror_data { - struct nfs42_layouterror_args args; - struct nfs42_layouterror_res res; - struct inode *inode; - struct pnfs_layout_segment *lseg; -}; - -struct nfs42_clone_args { - struct nfs4_sequence_args seq_args; - struct nfs_fh *src_fh; - struct nfs_fh *dst_fh; - nfs4_stateid src_stateid; - nfs4_stateid dst_stateid; - __u64 src_offset; - __u64 dst_offset; - __u64 count; - const u32 *dst_bitmask; -}; - -struct nfs42_clone_res { - struct nfs4_sequence_res seq_res; - unsigned int rpc_status; - struct nfs_fattr *dst_fattr; - const struct nfs_server *server; -}; - -struct nfs42_falloc_args { - struct nfs4_sequence_args seq_args; - struct nfs_fh *falloc_fh; - nfs4_stateid falloc_stateid; - u64 falloc_offset; - u64 falloc_length; - const u32 *falloc_bitmask; -}; - -struct nfs42_falloc_res { - struct nfs4_sequence_res seq_res; - unsigned int status; - struct nfs_fattr *falloc_fattr; - const struct nfs_server *falloc_server; -}; - -struct nfs42_copy_args { - struct nfs4_sequence_args seq_args; - struct nfs_fh *src_fh; - nfs4_stateid src_stateid; - u64 src_pos; - struct nfs_fh *dst_fh; - nfs4_stateid dst_stateid; - u64 dst_pos; - u64 count; - bool sync; - struct nl4_server *cp_src; -}; - -struct nfs42_write_res { - nfs4_stateid stateid; - u64 count; - struct nfs_writeverf verifier; -}; - -struct nfs42_copy_res { - struct nfs4_sequence_res seq_res; - struct nfs42_write_res write_res; - bool consecutive; - bool synchronous; - struct nfs_commitres commit_res; -}; - -struct nfs42_offload_status_args { - struct nfs4_sequence_args osa_seq_args; - struct nfs_fh *osa_src_fh; - nfs4_stateid osa_stateid; -}; - -struct nfs42_offload_status_res { - struct nfs4_sequence_res osr_seq_res; - uint64_t osr_count; - int osr_status; -}; - -struct nfs42_copy_notify_args { - struct nfs4_sequence_args cna_seq_args; - struct nfs_fh *cna_src_fh; - nfs4_stateid cna_src_stateid; - struct nl4_server cna_dst; -}; - -struct nfs42_copy_notify_res { - struct nfs4_sequence_res cnr_seq_res; - struct nfstime4 cnr_lease_time; - nfs4_stateid cnr_stateid; - struct nl4_server cnr_src; -}; - -struct nfs42_seek_args { - struct nfs4_sequence_args seq_args; - struct nfs_fh *sa_fh; - nfs4_stateid sa_stateid; - u64 sa_offset; - u32 sa_what; -}; - -struct nfs42_seek_res { - struct nfs4_sequence_res seq_res; - unsigned int status; - u32 sr_eof; - u64 sr_offset; -}; - -struct nfs42_setxattrargs { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fh; - const u32 *bitmask; - const char *xattr_name; - u32 xattr_flags; - size_t xattr_len; - struct page **xattr_pages; -}; - -struct nfs42_setxattrres { - struct nfs4_sequence_res seq_res; - struct nfs4_change_info cinfo; - struct nfs_fattr *fattr; - const struct nfs_server *server; -}; - -struct nfs42_getxattrargs { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fh; - const char *xattr_name; - size_t xattr_len; - struct page **xattr_pages; -}; - -struct nfs42_getxattrres { - struct nfs4_sequence_res seq_res; - size_t xattr_len; -}; - -struct nfs42_listxattrsargs { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fh; - u32 count; - u64 cookie; - struct page **xattr_pages; -}; - -struct nfs42_listxattrsres { - struct nfs4_sequence_res seq_res; - struct page *scratch; - void *xattr_buf; - size_t xattr_len; - u64 cookie; - bool eof; - size_t copied; -}; - -struct nfs42_removexattrargs { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fh; - const char *xattr_name; -}; - -struct nfs42_removexattrres { - struct nfs4_sequence_res seq_res; - struct nfs4_change_info cinfo; -}; - -struct nfs4_copy_state { - struct list_head copies; - struct list_head src_copies; - nfs4_stateid stateid; - struct completion completion; - uint64_t count; - struct nfs_writeverf verf; - int error; - int flags; - struct nfs4_state *parent_src_state; - struct nfs4_state *parent_dst_state; -}; - -enum { - LK_STATE_IN_USE = 0, - NFS_DELEGATED_STATE = 1, - NFS_OPEN_STATE = 2, - NFS_O_RDONLY_STATE = 3, - NFS_O_WRONLY_STATE = 4, - NFS_O_RDWR_STATE = 5, - NFS_STATE_RECLAIM_REBOOT = 6, - NFS_STATE_RECLAIM_NOGRACE = 7, - NFS_STATE_POSIX_LOCKS = 8, - NFS_STATE_RECOVERY_FAILED = 9, - NFS_STATE_MAY_NOTIFY_LOCK = 10, - NFS_STATE_CHANGE_WAIT = 11, - NFS_CLNT_DST_SSC_COPY_STATE = 12, - NFS_CLNT_SRC_SSC_COPY_STATE = 13, - NFS_SRV_SSC_COPY_STATE = 14, -}; - -struct nfs4_exception { - struct nfs4_state *state; - struct inode *inode; - nfs4_stateid *stateid; - long int timeout; - short unsigned int retrans; - unsigned char task_is_privileged: 1; - unsigned char delay: 1; - unsigned char recovering: 1; - unsigned char retry: 1; - bool interruptible; -}; - -enum { - NFS_LAYOUT_RO_FAILED = 0, - NFS_LAYOUT_RW_FAILED = 1, - NFS_LAYOUT_BULK_RECALL = 2, - NFS_LAYOUT_RETURN = 3, - NFS_LAYOUT_RETURN_LOCK = 4, - NFS_LAYOUT_RETURN_REQUESTED = 5, - NFS_LAYOUT_INVALID_STID = 6, - NFS_LAYOUT_FIRST_LAYOUTGET = 7, - NFS_LAYOUT_INODE_FREEING = 8, - NFS_LAYOUT_HASHED = 9, - NFS_LAYOUT_DRAIN = 10, -}; - -struct nfs42_offloadcancel_data { - struct nfs_server *seq_server; - struct nfs42_offload_status_args args; - struct nfs42_offload_status_res res; -}; - -enum { - NFSD_A_SERVER_THREADS = 1, - NFSD_A_SERVER_GRACETIME = 2, - NFSD_A_SERVER_LEASETIME = 3, - NFSD_A_SERVER_SCOPE = 4, - __NFSD_A_SERVER_MAX = 5, - NFSD_A_SERVER_MAX = 4, -}; - -enum { - NFSD_A_VERSION_MAJOR = 1, - NFSD_A_VERSION_MINOR = 2, - NFSD_A_VERSION_ENABLED = 3, - __NFSD_A_VERSION_MAX = 4, - NFSD_A_VERSION_MAX = 3, -}; - -enum { - NFSD_A_SERVER_PROTO_VERSION = 1, - __NFSD_A_SERVER_PROTO_MAX = 2, - NFSD_A_SERVER_PROTO_MAX = 1, -}; - -enum { - NFSD_A_SOCK_ADDR = 1, - NFSD_A_SOCK_TRANSPORT_NAME = 2, - __NFSD_A_SOCK_MAX = 3, - NFSD_A_SOCK_MAX = 2, -}; - -enum { - NFSD_A_SERVER_SOCK_ADDR = 1, - __NFSD_A_SERVER_SOCK_MAX = 2, - NFSD_A_SERVER_SOCK_MAX = 1, -}; - -enum { - NFSD_A_POOL_MODE_MODE = 1, - NFSD_A_POOL_MODE_NPOOLS = 2, - __NFSD_A_POOL_MODE_MAX = 3, - NFSD_A_POOL_MODE_MAX = 2, -}; - -enum { - NFSD_CMD_RPC_STATUS_GET = 1, - NFSD_CMD_THREADS_SET = 2, - NFSD_CMD_THREADS_GET = 3, - NFSD_CMD_VERSION_SET = 4, - NFSD_CMD_VERSION_GET = 5, - NFSD_CMD_LISTENER_SET = 6, - NFSD_CMD_LISTENER_GET = 7, - NFSD_CMD_POOL_MODE_SET = 8, - NFSD_CMD_POOL_MODE_GET = 9, - __NFSD_CMD_MAX = 10, - NFSD_CMD_MAX = 9, -}; - -enum { - RPC_PIPEFS_MOUNT = 0, - RPC_PIPEFS_UMOUNT = 1, -}; - -enum cld_command { - Cld_Create = 0, - Cld_Remove = 1, - Cld_Check = 2, - Cld_GraceDone = 3, - Cld_GraceStart = 4, - Cld_GetVersion = 5, -}; - -struct cld_name { - __u16 cn_len; - unsigned char cn_id[1024]; -}; - -struct cld_princhash { - __u8 cp_len; - unsigned char cp_data[32]; -}; - -struct cld_clntinfo { - struct cld_name cc_name; - struct cld_princhash cc_princhash; -} __attribute__((packed)); - -struct cld_msg { - __u8 cm_vers; - __u8 cm_cmd; - __s16 cm_status; - __u32 cm_xid; - union { - __s64 cm_gracetime; - struct cld_name cm_name; - __u8 cm_version; - } cm_u; -} __attribute__((packed)); - -struct cld_msg_v2 { - __u8 cm_vers; - __u8 cm_cmd; - __s16 cm_status; - __u32 cm_xid; - union { - struct cld_name cm_name; - __u8 cm_version; - struct cld_clntinfo cm_clntinfo; - } cm_u; -} __attribute__((packed)); - -struct cld_msg_hdr { - __u8 cm_vers; - __u8 cm_cmd; - __s16 cm_status; - __u32 cm_xid; -}; - -struct cld_net { - struct rpc_pipe *cn_pipe; - spinlock_t cn_lock; - struct list_head cn_list; - unsigned int cn_xid; - struct crypto_shash *cn_tfm; -}; - -struct nfs4_client_reclaim { - struct list_head cr_strhash; - struct nfs4_client *cr_clp; - struct xdr_netobj cr_name; - struct xdr_netobj cr_princhash; -}; - -struct cld_upcall { - struct list_head cu_list; - struct cld_net *cu_net; - struct completion cu_done; - union { - struct cld_msg_hdr cu_hdr; - struct cld_msg cu_msg; - struct cld_msg_v2 cu_msg_v2; - } cu_u; -}; - -enum { - NSMPROC_NULL = 0, - NSMPROC_STAT = 1, - NSMPROC_MON = 2, - NSMPROC_UNMON = 3, - NSMPROC_UNMON_ALL = 4, - NSMPROC_SIMU_CRASH = 5, - NSMPROC_NOTIFY = 6, -}; - -struct nsm_args { - struct nsm_private *priv; - u32 prog; - u32 vers; - u32 proc; - char *mon_name; - const char *nodename; -}; - -struct nsm_res { - u32 status; - u32 state; -}; - -typedef struct smb_com_lock_req LOCK_REQ; - -struct smb2_transform_hdr { - __le32 ProtocolId; - __u8 Signature[16]; - __u8 Nonce[16]; - __le32 OriginalMessageSize; - __u16 Reserved1; - __le16 Flags; - __le64 SessionId; -} __attribute__((packed)); - -struct smbd_connection {}; - -struct send_req_vars { - struct smb2_transform_hdr tr_hdr; - struct smb_rqst rqst[7]; - struct kvec iov; -}; - -enum { - MAX_NESTED_LINKS = 8, -}; - -struct cache_dfs_tgt { - char *name; - int path_consumed; - struct list_head list; -}; - -struct cache_entry { - struct hlist_node hlist; - const char *path; - int hdr_flags; - int ttl; - int srvtype; - int ref_flags; - struct timespec64 etime; - int path_consumed; - int numtgts; - struct list_head tlist; - struct cache_dfs_tgt *tgthint; -}; - -struct ovl_path { - const struct ovl_layer *layer; - struct dentry *dentry; -}; - -struct ovl_entry { - unsigned int __numlower; - struct ovl_path __lowerstack[0]; -}; - -struct ovl_dir_cache; - -struct ovl_inode { - union { - struct ovl_dir_cache *cache; - const char *lowerdata_redirect; - }; - const char *redirect; - u64 version; - long unsigned int flags; - struct inode vfs_inode; - struct dentry *__upperdentry; - struct ovl_entry *oe; - struct mutex lock; -}; - -enum ovl_xattr { - OVL_XATTR_OPAQUE = 0, - OVL_XATTR_REDIRECT = 1, - OVL_XATTR_ORIGIN = 2, - OVL_XATTR_IMPURE = 3, - OVL_XATTR_NLINK = 4, - OVL_XATTR_UPPER = 5, - OVL_XATTR_UUID = 6, - OVL_XATTR_METACOPY = 7, - OVL_XATTR_PROTATTR = 8, - OVL_XATTR_XWHITEOUT = 9, -}; - -enum ovl_inode_flag { - OVL_IMPURE = 0, - OVL_WHITEOUTS = 1, - OVL_INDEX = 2, - OVL_UPPERDATA = 3, - OVL_CONST_INO = 4, - OVL_HAS_DIGEST = 5, - OVL_VERIFIED_DIGEST = 6, -}; - -enum ovl_entry_flag { - OVL_E_UPPER_ALIAS = 0, - OVL_E_OPAQUE = 1, - OVL_E_CONNECTED = 2, - OVL_E_XWHITEOUTS = 3, -}; - -struct ovl_fb { - u8 version; - u8 magic; - u8 len; - u8 flags; - u8 type; - uuid_t uuid; - u32 fid[0]; -} __attribute__((packed)); - -struct ovl_fh { - u8 padding[3]; - union { - struct ovl_fb fb; - struct { - struct {} __empty_buf; - u8 buf[0]; - }; - }; -}; - -struct ovl_inode_params { - struct inode *newinode; - struct dentry *upperdentry; - struct ovl_entry *oe; - bool index; - char *redirect; - char *lowerdata_redirect; -}; - -struct cdrom_msf0 { - __u8 minute; - __u8 second; - __u8 frame; -}; - -union cdrom_addr { - struct cdrom_msf0 msf; - int lba; -}; - -struct cdrom_multisession { - union cdrom_addr addr; - __u8 xa_flag; - __u8 addr_format; -}; - -struct cdrom_mcn { - __u8 medium_catalog_number[14]; -}; - -struct packet_command { - unsigned char cmd[12]; - unsigned char *buffer; - unsigned int buflen; - int stat; - struct scsi_sense_hdr *sshdr; - unsigned char data_direction; - int quiet; - int timeout; - void *reserved[1]; -}; - -struct cdrom_device_ops; - -struct cdrom_device_info { - const struct cdrom_device_ops *ops; - struct list_head list; - struct gendisk *disk; - void *handle; - int mask; - int speed; - int capacity; - unsigned int options: 30; - unsigned int mc_flags: 2; - unsigned int vfs_events; - unsigned int ioctl_events; - int use_count; - char name[20]; - __u8 sanyo_slot: 2; - __u8 keeplocked: 1; - __u8 reserved: 5; - int cdda_method; - __u8 last_sense; - __u8 media_written; - short unsigned int mmc3_profile; - int (*exit)(struct cdrom_device_info *); - int mrw_mode_page; - bool opened_for_data; - __s64 last_media_change_ms; -}; - -struct cdrom_device_ops { - int (*open)(struct cdrom_device_info *, int); - void (*release)(struct cdrom_device_info *); - int (*drive_status)(struct cdrom_device_info *, int); - unsigned int (*check_events)(struct cdrom_device_info *, unsigned int, int); - int (*tray_move)(struct cdrom_device_info *, int); - int (*lock_door)(struct cdrom_device_info *, int); - int (*select_speed)(struct cdrom_device_info *, long unsigned int); - int (*get_last_session)(struct cdrom_device_info *, struct cdrom_multisession *); - int (*get_mcn)(struct cdrom_device_info *, struct cdrom_mcn *); - int (*reset)(struct cdrom_device_info *); - int (*audio_ioctl)(struct cdrom_device_info *, unsigned int, void *); - int (*generic_packet)(struct cdrom_device_info *, struct packet_command *); - int (*read_cdda_bpc)(struct cdrom_device_info *, void *, u32, u32, u8 *); - const int capability; -}; - -enum xfs_refcount_intent_type { - XFS_REFCOUNT_INCREASE = 1, - XFS_REFCOUNT_DECREASE = 2, - XFS_REFCOUNT_ALLOC_COW = 3, - XFS_REFCOUNT_FREE_COW = 4, -}; - -struct xfs_refcount_intent { - struct list_head ri_list; - struct xfs_perag *ri_pag; - enum xfs_refcount_intent_type ri_type; - xfs_extlen_t ri_blockcount; - xfs_fsblock_t ri_startblock; -}; - -typedef int (*xfs_refcount_query_range_fn)(struct xfs_btree_cur *, const struct xfs_refcount_irec *, void *); - -enum xfs_refc_adjust_op { - XFS_REFCOUNT_ADJUST_INCREASE = 1, - XFS_REFCOUNT_ADJUST_DECREASE = -1, - XFS_REFCOUNT_ADJUST_COW_ALLOC = 0, - XFS_REFCOUNT_ADJUST_COW_FREE = -1, -}; - -struct xfs_refcount_recovery { - struct list_head rr_list; - struct xfs_refcount_irec rr_rrec; -}; - -struct xfs_refcount_query_range_info { - xfs_refcount_query_range_fn fn; - void *priv; -}; - -typedef __be64 xfs_timestamp_t; - -struct xfs_dinode { - __be16 di_magic; - __be16 di_mode; - __u8 di_version; - __u8 di_format; - __be16 di_onlink; - __be32 di_uid; - __be32 di_gid; - __be32 di_nlink; - __be16 di_projid_lo; - __be16 di_projid_hi; - union { - __be64 di_big_nextents; - __be64 di_v3_pad; - struct { - __u8 di_v2_pad[6]; - __be16 di_flushiter; - }; - }; - xfs_timestamp_t di_atime; - xfs_timestamp_t di_mtime; - xfs_timestamp_t di_ctime; - __be64 di_size; - __be64 di_nblocks; - __be32 di_extsize; - union { - struct { - __be32 di_nextents; - __be16 di_anextents; - } __attribute__((packed)); - struct { - __be32 di_big_anextents; - __be16 di_nrext64_pad; - } __attribute__((packed)); - }; - __u8 di_forkoff; - __s8 di_aformat; - __be32 di_dmevmask; - __be16 di_dmstate; - __be16 di_flags; - __be32 di_gen; - __be32 di_next_unlinked; - __le32 di_crc; - __be64 di_changecount; - __be64 di_lsn; - __be64 di_flags2; - __be32 di_cowextsize; - __u8 di_pad2[12]; - xfs_timestamp_t di_crtime; - __be64 di_ino; - uuid_t di_uuid; -}; - -struct xfs_iunlink_item { - struct xfs_log_item item; - struct xfs_inode *ip; - struct xfs_perag *pag; - xfs_agino_t next_agino; - xfs_agino_t old_agino; -}; - -typedef int (*eventfs_callback)(const char *, umode_t *, void **, const struct file_operations **); - -typedef void (*eventfs_release)(const char *, void *); - -struct eventfs_entry { - const char *name; - eventfs_callback callback; - eventfs_release release; -}; - -enum { - TRACEFS_EVENT_INODE = 2, - TRACEFS_GID_PERM_SET = 4, - TRACEFS_UID_PERM_SET = 8, - TRACEFS_INSTANCE_INODE = 16, -}; - -struct tracefs_inode { - struct inode vfs_inode; - struct list_head list; - long unsigned int flags; - void *private; -}; - -struct eventfs_attr { - int mode; - kuid_t uid; - kgid_t gid; -}; - -struct eventfs_inode { - union { - struct list_head list; - struct callback_head rcu; - }; - struct list_head children; - const struct eventfs_entry *entries; - const char *name; - struct eventfs_attr *entry_attrs; - void *data; - struct eventfs_attr attr; - struct kref kref; - unsigned int is_freed: 1; - unsigned int is_events: 1; - unsigned int nr_entries: 30; - unsigned int ino; -}; - -struct tracefs_dir_ops { - int (*mkdir)(const char *); - int (*rmdir)(const char *); -}; - -struct tracefs_fs_info { - kuid_t uid; - kgid_t gid; - umode_t mode; - unsigned int opts; -}; - -enum { - Opt_uid___4 = 0, - Opt_gid___4 = 1, - Opt_mode___3 = 2, -}; - -enum btrfs_delayed_ref_action { - BTRFS_ADD_DELAYED_REF = 1, - BTRFS_DROP_DELAYED_REF = 2, - BTRFS_ADD_DELAYED_EXTENT = 3, - BTRFS_UPDATE_DELAYED_HEAD = 4, -} __attribute__((mode(byte))); - -struct btrfs_data_ref { - u64 objectid; - u64 offset; -}; - -struct btrfs_tree_ref { - int level; -}; - -struct btrfs_delayed_ref_node { - struct rb_node ref_node; - struct list_head add_list; - u64 bytenr; - u64 num_bytes; - u64 seq; - u64 ref_root; - u64 parent; - refcount_t refs; - int ref_mod; - unsigned int action: 8; - unsigned int type: 8; - union { - struct btrfs_tree_ref tree_ref; - struct btrfs_data_ref data_ref; - }; -}; - -struct btrfs_delayed_extent_op { - struct btrfs_disk_key key; - bool update_key; - bool update_flags; - u64 flags_to_set; -}; - -struct btrfs_delayed_ref_head { - u64 bytenr; - u64 num_bytes; - struct rb_node href_node; - struct mutex mutex; - refcount_t refs; - spinlock_t lock; - struct rb_root_cached ref_tree; - struct list_head ref_add_list; - struct btrfs_delayed_extent_op *extent_op; - int total_ref_mod; - int ref_mod; - u64 owning_root; - u64 reserved_bytes; - u8 level; - bool must_insert_reserved; - bool is_data; - bool is_system; - bool processing; -}; - -enum btrfs_ref_type { - BTRFS_REF_NOT_SET = 0, - BTRFS_REF_DATA = 1, - BTRFS_REF_METADATA = 2, - BTRFS_REF_LAST = 3, -} __attribute__((mode(byte))); - -struct btrfs_ref { - enum btrfs_ref_type type; - enum btrfs_delayed_ref_action action; - bool skip_qgroup; - u64 bytenr; - u64 num_bytes; - u64 owning_root; - u64 ref_root; - u64 parent; - union { - struct btrfs_data_ref data_ref; - struct btrfs_tree_ref tree_ref; - }; -}; - -struct btrfs_qgroup_extent_record { - u64 bytenr; - u64 num_bytes; - u32 data_rsv; - u64 data_rsv_refroot; - struct ulist *old_roots; -}; - -struct btrfs_stripe { - __le64 devid; - __le64 offset; - __u8 dev_uuid[16]; -}; - -struct btrfs_chunk { - __le64 length; - __le64 owner; - __le64 stripe_len; - __le64 type; - __le32 io_align; - __le32 io_width; - __le32 sector_size; - __le16 num_stripes; - __le16 sub_stripes; - struct btrfs_stripe stripe; -}; - -struct btrfs_tree_block_info { - struct btrfs_disk_key key; - __u8 level; -}; - -struct btrfs_extent_data_ref { - __le64 root; - __le64 objectid; - __le64 offset; - __le32 count; -} __attribute__((packed)); - -struct btrfs_shared_data_ref { - __le32 count; -}; - -struct btrfs_extent_inline_ref { - __u8 type; - __le64 offset; -} __attribute__((packed)); - -struct btrfs_dev_extent { - __le64 chunk_tree; - __le64 chunk_objectid; - __le64 chunk_offset; - __le64 length; - __u8 chunk_tree_uuid[16]; -}; - -struct btrfs_block_group_item { - __le64 used; - __le64 chunk_objectid; - __le64 flags; -}; - -enum btrfs_tree_block_status { - BTRFS_TREE_BLOCK_CLEAN = 0, - BTRFS_TREE_BLOCK_INVALID_NRITEMS = 1, - BTRFS_TREE_BLOCK_INVALID_PARENT_KEY = 2, - BTRFS_TREE_BLOCK_BAD_KEY_ORDER = 3, - BTRFS_TREE_BLOCK_INVALID_LEVEL = 4, - BTRFS_TREE_BLOCK_INVALID_FREE_SPACE = 5, - BTRFS_TREE_BLOCK_INVALID_OFFSETS = 6, - BTRFS_TREE_BLOCK_INVALID_BLOCKPTR = 7, - BTRFS_TREE_BLOCK_INVALID_ITEM = 8, - BTRFS_TREE_BLOCK_INVALID_OWNER = 9, - BTRFS_TREE_BLOCK_WRITTEN_NOT_SET = 10, -}; - -struct btrfs_raid_attr { - u8 sub_stripes; - u8 dev_stripes; - u8 devs_max; - u8 devs_min; - u8 tolerated_failures; - u8 devs_increment; - u8 ncopies; - u8 nparity; - u8 mindev_error; - const char raid_name[8]; - u64 bg_flag; -}; - -typedef struct mutex *class_mutex_t; - -enum pstore_type_id { - PSTORE_TYPE_DMESG = 0, - PSTORE_TYPE_MCE = 1, - PSTORE_TYPE_CONSOLE = 2, - PSTORE_TYPE_FTRACE = 3, - PSTORE_TYPE_PPC_RTAS = 4, - PSTORE_TYPE_PPC_OF = 5, - PSTORE_TYPE_PPC_COMMON = 6, - PSTORE_TYPE_PMSG = 7, - PSTORE_TYPE_PPC_OPAL = 8, - PSTORE_TYPE_MAX = 9, -}; - -struct pstore_info; - -struct pstore_record { - struct pstore_info *psi; - enum pstore_type_id type; - u64 id; - struct timespec64 time; - char *buf; - ssize_t size; - ssize_t ecc_notice_size; - void *priv; - int count; - enum kmsg_dump_reason reason; - unsigned int part; - bool compressed; -}; - -struct pstore_info { - struct module *owner; - const char *name; - raw_spinlock_t buf_lock; - char *buf; - size_t bufsize; - struct mutex read_mutex; - int flags; - int max_reason; - void *data; - int (*open)(struct pstore_info *); - int (*close)(struct pstore_info *); - ssize_t (*read)(struct pstore_record *); - int (*write)(struct pstore_record *); - int (*write_user)(struct pstore_record *, const char *); - int (*erase)(struct pstore_record *); -}; - -struct pstore_ftrace_record { - long unsigned int ip; - long unsigned int parent_ip; - u64 ts; -}; - -struct pstore_private { - struct list_head list; - struct dentry *dentry; - struct pstore_record *record; - size_t total_size; -}; - -struct pstore_ftrace_seq_data { - const void *ptr; - size_t off; - size_t size; -}; - -enum { - Opt_kmsg_bytes = 0, - Opt_err___5 = 1, -}; - -typedef unsigned int __kernel_uid_t; - -typedef unsigned int __kernel_gid_t; - -struct ipc_perm { - __kernel_key_t key; - __kernel_uid_t uid; - __kernel_gid_t gid; - __kernel_uid_t cuid; - __kernel_gid_t cgid; - __kernel_mode_t mode; - short unsigned int seq; -}; - -struct ipc64_perm { - __kernel_key_t key; - __kernel_uid32_t uid; - __kernel_gid32_t gid; - __kernel_uid32_t cuid; - __kernel_gid32_t cgid; - __kernel_mode_t mode; - unsigned char __pad1[0]; - short unsigned int seq; - short unsigned int __pad2; - __kernel_ulong_t __unused1; - __kernel_ulong_t __unused2; -}; - -struct ipc_params { - key_t key; - int flg; - union { - size_t size; - int nsems; - } u; -}; - -struct ipc_ops { - int (*getnew)(struct ipc_namespace *, struct ipc_params *); - int (*associate)(struct kern_ipc_perm *, int); - int (*more_checks)(struct kern_ipc_perm *, struct ipc_params *); -}; - -struct ipc_proc_iface { - const char *path; - const char *header; - int ids; - int (*show)(struct seq_file *, void *); -}; - -struct ipc_proc_iter { - struct ipc_namespace *ns; - struct pid_namespace *pid_ns; - struct ipc_proc_iface *iface; -}; - -struct lskcipher_instance { - void (*free)(struct lskcipher_instance *); - union { - struct { - char head[64]; - struct crypto_instance base; - } s; - struct lskcipher_alg alg; - }; -}; - -struct crypto_lskcipher_spawn { - struct crypto_spawn base; -}; - -struct shash_instance { - void (*free)(struct shash_instance *); - union { - struct { - char head[104]; - struct crypto_instance base; - } s; - struct shash_alg alg; - }; -}; - -struct cmac_tfm_ctx { - struct crypto_cipher *child; - __be64 consts[0]; -}; - -struct cmac_desc_ctx { - unsigned int len; - u8 odds[0]; -}; - -struct crypto_cts_ctx { - struct crypto_skcipher *child; -}; - -struct crypto_cts_reqctx { - struct scatterlist sg[2]; - unsigned int offset; - struct skcipher_request subreq; -}; - -struct crypto_authenc_keys { - const u8 *authkey; - const u8 *enckey; - unsigned int authkeylen; - unsigned int enckeylen; -}; - -struct crypto_attr_type { - u32 type; - u32 mask; -}; - -struct essiv_instance_ctx { - union { - struct crypto_skcipher_spawn skcipher_spawn; - struct crypto_aead_spawn aead_spawn; - } u; - char essiv_cipher_name[128]; - char shash_driver_name[128]; -}; - -struct essiv_tfm_ctx { - union { - struct crypto_skcipher *skcipher; - struct crypto_aead *aead; - } u; - struct crypto_cipher *essiv_cipher; - struct crypto_shash *hash; - int ivoffset; -}; - -struct essiv_aead_request_ctx { - struct scatterlist sg[4]; - u8 *assoc; - struct aead_request aead_req; -}; - -struct badblocks { - struct device *dev; - int count; - int unacked_exist; - int shift; - u64 *page; - int changed; - seqlock_t lock; - sector_t sector; - sector_t size; -}; - -struct badblocks_context { - sector_t start; - sector_t len; - int ack; -}; - -struct elevator_type; - -struct elevator_queue { - struct elevator_type *type; - void *elevator_data; - struct kobject kobj; - struct mutex sysfs_lock; - long unsigned int flags; - struct hlist_head hash[64]; -}; - -enum rq_qos_id { - RQ_QOS_WBT = 0, - RQ_QOS_LATENCY = 1, - RQ_QOS_COST = 2, -}; - -struct rq_qos_ops; - -struct rq_qos { - const struct rq_qos_ops *ops; - struct gendisk *disk; - enum rq_qos_id id; - struct rq_qos *next; - struct dentry *debugfs_dir; -}; - -enum { - __RQF_STARTED = 0, - __RQF_FLUSH_SEQ = 1, - __RQF_MIXED_MERGE = 2, - __RQF_DONTPREP = 3, - __RQF_SCHED_TAGS = 4, - __RQF_USE_SCHED = 5, - __RQF_FAILED = 6, - __RQF_QUIET = 7, - __RQF_IO_STAT = 8, - __RQF_PM = 9, - __RQF_HASHED = 10, - __RQF_STATS = 11, - __RQF_SPECIAL_PAYLOAD = 12, - __RQF_ZONE_WRITE_PLUGGING = 13, - __RQF_TIMED_OUT = 14, - __RQF_RESV = 15, - __RQF_BITS = 16, -}; - -enum { - BLK_TAG_ALLOC_FIFO = 0, - BLK_TAG_ALLOC_RR = 1, - BLK_TAG_ALLOC_MAX = 2, -}; - -typedef bool busy_tag_iter_fn(struct request *, void *); - -enum { - BLK_MQ_S_STOPPED = 0, - BLK_MQ_S_TAG_ACTIVE = 1, - BLK_MQ_S_SCHED_RESTART = 2, - BLK_MQ_S_INACTIVE = 3, - BLK_MQ_S_MAX = 4, -}; - -typedef unsigned int blk_insert_t; - -struct blk_mq_alloc_data { - struct request_queue *q; - blk_mq_req_flags_t flags; - unsigned int shallow_depth; - blk_opf_t cmd_flags; - req_flags_t rq_flags; - unsigned int nr_tags; - struct rq_list *cached_rqs; - struct blk_mq_ctx *ctx; - struct blk_mq_hw_ctx *hctx; -}; - -struct blk_mq_debugfs_attr { - const char *name; - umode_t mode; - int (*show)(void *, struct seq_file *); - ssize_t (*write)(void *, const char *, size_t, loff_t *); - const struct seq_operations *seq_ops; -}; - -enum elv_merge { - ELEVATOR_NO_MERGE = 0, - ELEVATOR_FRONT_MERGE = 1, - ELEVATOR_BACK_MERGE = 2, - ELEVATOR_DISCARD_MERGE = 3, -}; - -struct elevator_mq_ops { - int (*init_sched)(struct request_queue *, struct elevator_type *); - void (*exit_sched)(struct elevator_queue *); - int (*init_hctx)(struct blk_mq_hw_ctx *, unsigned int); - void (*exit_hctx)(struct blk_mq_hw_ctx *, unsigned int); - void (*depth_updated)(struct blk_mq_hw_ctx *); - bool (*allow_merge)(struct request_queue *, struct request *, struct bio *); - bool (*bio_merge)(struct request_queue *, struct bio *, unsigned int); - int (*request_merge)(struct request_queue *, struct request **, struct bio *); - void (*request_merged)(struct request_queue *, struct request *, enum elv_merge); - void (*requests_merged)(struct request_queue *, struct request *, struct request *); - void (*limit_depth)(blk_opf_t, struct blk_mq_alloc_data *); - void (*prepare_request)(struct request *); - void (*finish_request)(struct request *); - void (*insert_requests)(struct blk_mq_hw_ctx *, struct list_head *, blk_insert_t); - struct request * (*dispatch_request)(struct blk_mq_hw_ctx *); - bool (*has_work)(struct blk_mq_hw_ctx *); - void (*completed_request)(struct request *, u64); - void (*requeue_request)(struct request *); - struct request * (*former_request)(struct request_queue *, struct request *); - struct request * (*next_request)(struct request_queue *, struct request *); - void (*init_icq)(struct io_cq *); - void (*exit_icq)(struct io_cq *); -}; - -struct elv_fs_entry; - -struct elevator_type { - struct kmem_cache *icq_cache; - struct elevator_mq_ops ops; - size_t icq_size; - size_t icq_align; - struct elv_fs_entry *elevator_attrs; - const char *elevator_name; - const char *elevator_alias; - struct module *elevator_owner; - const struct blk_mq_debugfs_attr *queue_debugfs_attrs; - const struct blk_mq_debugfs_attr *hctx_debugfs_attrs; - char icq_cache_name[22]; - struct list_head list; -}; - -struct elv_fs_entry { - struct attribute attr; - ssize_t (*show)(struct elevator_queue *, char *); - ssize_t (*store)(struct elevator_queue *, const char *, size_t); -}; - -struct rq_qos_ops { - void (*throttle)(struct rq_qos *, struct bio *); - void (*track)(struct rq_qos *, struct request *, struct bio *); - void (*merge)(struct rq_qos *, struct request *, struct bio *); - void (*issue)(struct rq_qos *, struct request *); - void (*requeue)(struct rq_qos *, struct request *); - void (*done)(struct rq_qos *, struct request *); - void (*done_bio)(struct rq_qos *, struct bio *); - void (*cleanup)(struct rq_qos *, struct bio *); - void (*queue_depth_changed)(struct rq_qos *); - void (*exit)(struct rq_qos *); - const struct blk_mq_debugfs_attr *debugfs_attrs; -}; - -struct show_busy_params { - struct seq_file *m; - struct blk_mq_hw_ctx *hctx; -}; - -struct open_flags { - int open_flag; - umode_t mode; - int acc_mode; - int intent; - int lookup_flags; -}; - -struct io_open { - struct file *file; - int dfd; - u32 file_slot; - struct filename *filename; - struct open_how how; - long unsigned int nofile; -}; - -struct io_close { - struct file *file; - int fd; - u32 file_slot; -}; - -struct io_fixed_install { - struct file *file; - unsigned int o_flags; -}; - -typedef struct { - __be64 a; - __be64 b; -} be128; - -typedef struct { - __le64 b; - __le64 a; -} le128; - -struct gf128mul_4k { - be128 t[256]; -}; - -struct gf128mul_64k { - struct gf128mul_4k *t[16]; -}; - -struct assoc_array_ops { - long unsigned int (*get_key_chunk)(const void *, int); - long unsigned int (*get_object_key_chunk)(const void *, int); - bool (*compare_object)(const void *, const void *); - int (*diff_objects)(const void *, const void *); - void (*free_object)(void *); -}; - -struct assoc_array_node { - struct assoc_array_ptr *back_pointer; - u8 parent_slot; - struct assoc_array_ptr *slots[16]; - long unsigned int nr_leaves_on_branch; -}; - -struct assoc_array_shortcut { - struct assoc_array_ptr *back_pointer; - int parent_slot; - int skip_to_level; - struct assoc_array_ptr *next_node; - long unsigned int index_key[0]; -}; - -struct assoc_array_edit { - struct callback_head rcu; - struct assoc_array *array; - const struct assoc_array_ops *ops; - const struct assoc_array_ops *ops_for_excised_subtree; - struct assoc_array_ptr *leaf; - struct assoc_array_ptr **leaf_p; - struct assoc_array_ptr *dead_leaf; - struct assoc_array_ptr *new_meta[3]; - struct assoc_array_ptr *excised_meta[1]; - struct assoc_array_ptr *excised_subtree; - struct assoc_array_ptr **set_backpointers[16]; - struct assoc_array_ptr *set_backpointers_to; - struct assoc_array_node *adjust_count_on; - long int adjust_count_by; - struct { - struct assoc_array_ptr **ptr; - struct assoc_array_ptr *to; - } set[2]; - struct { - u8 *p; - u8 to; - } set_parent_slot[1]; - u8 segment_cache[17]; -}; - -enum assoc_array_walk_status { - assoc_array_walk_tree_empty = 0, - assoc_array_walk_found_terminal_node = 1, - assoc_array_walk_found_wrong_shortcut = 2, -}; - -struct assoc_array_walk_result { - struct { - struct assoc_array_node *node; - int level; - int slot; - } terminal_node; - struct { - struct assoc_array_shortcut *shortcut; - int level; - int sc_level; - long unsigned int sc_segments; - long unsigned int dissimilarity; - } wrong_shortcut; -}; - -struct assoc_array_delete_collapse_context { - struct assoc_array_node *node; - const void *skip_leaf; - int slot; -}; - -typedef struct { - unsigned int hashTable[32768]; - short unsigned int chainTable[65536]; - const unsigned char *end; - const unsigned char *base; - const unsigned char *dictBase; - unsigned int dictLimit; - unsigned int lowLimit; - unsigned int nextToUpdate; - unsigned int compressionLevel; -} LZ4HC_CCtx_internal; - -typedef union { - size_t table[32774]; - LZ4HC_CCtx_internal internal_donotuse; -} LZ4_streamHC_t; - -typedef u64 unative_t___2; - -struct ei_entry { - struct list_head list; - long unsigned int start_addr; - long unsigned int end_addr; - int etype; - void *priv; -}; - -struct irq_poll; - -typedef int irq_poll_fn(struct irq_poll *, int); - -struct irq_poll { - struct list_head list; - long unsigned int state; - int weight; - irq_poll_fn *poll; -}; - -enum { - IRQ_POLL_F_SCHED = 0, - IRQ_POLL_F_DISABLE = 1, -}; - -struct gpio_chip; - -union gpio_irq_fwspec; - -struct gpio_irq_chip { - struct irq_chip *chip; - struct irq_domain *domain; - struct fwnode_handle *fwnode; - struct irq_domain *parent_domain; - int (*child_to_parent_hwirq)(struct gpio_chip *, unsigned int, unsigned int, unsigned int *, unsigned int *); - int (*populate_parent_alloc_arg)(struct gpio_chip *, union gpio_irq_fwspec *, unsigned int, unsigned int); - unsigned int (*child_offset_to_irq)(struct gpio_chip *, unsigned int); - struct irq_domain_ops child_irq_domain_ops; - irq_flow_handler_t handler; - unsigned int default_type; - struct lock_class_key *lock_key; - struct lock_class_key *request_key; - irq_flow_handler_t parent_handler; - union { - void *parent_handler_data; - void **parent_handler_data_array; - }; - unsigned int num_parents; - unsigned int *parents; - unsigned int *map; - bool threaded; - bool per_parent_data; - bool initialized; - bool domain_is_allocated_externally; - int (*init_hw)(struct gpio_chip *); - void (*init_valid_mask)(struct gpio_chip *, long unsigned int *, unsigned int); - long unsigned int *valid_mask; - unsigned int first; - void (*irq_enable)(struct irq_data *); - void (*irq_disable)(struct irq_data *); - void (*irq_unmask)(struct irq_data *); - void (*irq_mask)(struct irq_data *); -}; - -struct gpio_chip { - const char *label; - struct gpio_device *gpiodev; - struct device *parent; - struct fwnode_handle *fwnode; - struct module *owner; - int (*request)(struct gpio_chip *, unsigned int); - void (*free)(struct gpio_chip *, unsigned int); - int (*get_direction)(struct gpio_chip *, unsigned int); - int (*direction_input)(struct gpio_chip *, unsigned int); - int (*direction_output)(struct gpio_chip *, unsigned int, int); - int (*get)(struct gpio_chip *, unsigned int); - int (*get_multiple)(struct gpio_chip *, long unsigned int *, long unsigned int *); - void (*set)(struct gpio_chip *, unsigned int, int); - void (*set_multiple)(struct gpio_chip *, long unsigned int *, long unsigned int *); - int (*set_config)(struct gpio_chip *, unsigned int, long unsigned int); - int (*to_irq)(struct gpio_chip *, unsigned int); - void (*dbg_show)(struct seq_file *, struct gpio_chip *); - int (*init_valid_mask)(struct gpio_chip *, long unsigned int *, unsigned int); - int (*add_pin_ranges)(struct gpio_chip *); - int (*en_hw_timestamp)(struct gpio_chip *, u32, long unsigned int); - int (*dis_hw_timestamp)(struct gpio_chip *, u32, long unsigned int); - int base; - u16 ngpio; - u16 offset; - const char * const *names; - bool can_sleep; - long unsigned int (*read_reg)(void *); - void (*write_reg)(void *, long unsigned int); - bool be_bits; - void *reg_dat; - void *reg_set; - void *reg_clr; - void *reg_dir_out; - void *reg_dir_in; - bool bgpio_dir_unreadable; - int bgpio_bits; - raw_spinlock_t bgpio_lock; - long unsigned int bgpio_data; - long unsigned int bgpio_dir; - struct gpio_irq_chip irq; - long unsigned int *valid_mask; - unsigned int of_gpio_n_cells; - int (*of_xlate)(struct gpio_chip *, const struct of_phandle_args *, u32 *); -}; - -union gpio_irq_fwspec { - struct irq_fwspec fwspec; - msi_alloc_info_t msiinfo; -}; - -struct gpio_device { - struct device dev; - struct cdev chrdev; - int id; - struct device *mockdev; - struct module *owner; - struct gpio_chip *chip; - struct gpio_desc *descs; - struct srcu_struct desc_srcu; - unsigned int base; - u16 ngpio; - bool can_sleep; - const char *label; - void *data; - struct list_head list; - struct blocking_notifier_head line_state_notifier; - struct blocking_notifier_head device_notifier; - struct srcu_struct srcu; -}; - -struct bgpio_pdata { - const char *label; - int base; - int ngpio; -}; - -struct gpio_desc_label { - struct callback_head rh; - char str[0]; -}; - -enum { - pci_channel_io_normal = 1, - pci_channel_io_frozen = 2, - pci_channel_io_perm_failure = 3, -}; - -enum pci_dev_flags { - PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG = 1, - PCI_DEV_FLAGS_NO_D3 = 2, - PCI_DEV_FLAGS_ASSIGNED = 4, - PCI_DEV_FLAGS_ACS_ENABLED_QUIRK = 8, - PCI_DEV_FLAG_PCIE_BRIDGE_ALIAS = 32, - PCI_DEV_FLAGS_NO_BUS_RESET = 64, - PCI_DEV_FLAGS_NO_PM_RESET = 128, - PCI_DEV_FLAGS_VPD_REF_F0 = 256, - PCI_DEV_FLAGS_BRIDGE_XLATE_ROOT = 512, - PCI_DEV_FLAGS_NO_FLR_RESET = 1024, - PCI_DEV_FLAGS_NO_RELAXED_ORDERING = 2048, - PCI_DEV_FLAGS_HAS_MSI_MASKING = 4096, - PCI_DEV_FLAGS_MSIX_TOUCH_ENTRY_DATA_FIRST = 8192, -}; - -enum pci_bus_flags { - PCI_BUS_FLAGS_NO_MSI = 1, - PCI_BUS_FLAGS_NO_MMRBC = 2, - PCI_BUS_FLAGS_NO_AERSID = 4, - PCI_BUS_FLAGS_NO_EXTCFG = 8, -}; - -struct devm_clk_state { - struct clk *clk; - void (*exit)(struct clk *); -}; - -struct clk_bulk_devres { - struct clk_bulk_data *clks; - int num_clks; -}; - -enum vc_intensity { - VCI_HALF_BRIGHT = 0, - VCI_NORMAL = 1, - VCI_BOLD = 2, - VCI_MASK = 3, -}; - -struct vc_state { - unsigned int x; - unsigned int y; - unsigned char color; - unsigned char Gx_charset[2]; - unsigned int charset: 1; - enum vc_intensity intensity; - bool italic; - bool underline; - bool blink; - bool reverse; -}; - -struct console_font { - unsigned int width; - unsigned int height; - unsigned int charcount; - unsigned char *data; -}; - -struct vt_mode { - char mode; - char waitv; - short int relsig; - short int acqsig; - short int frsig; -}; - -struct consw; - -struct uni_pagedict; - -struct vc_data { - struct tty_port port; - struct vc_state state; - struct vc_state saved_state; - short unsigned int vc_num; - unsigned int vc_cols; - unsigned int vc_rows; - unsigned int vc_size_row; - unsigned int vc_scan_lines; - unsigned int vc_cell_height; - long unsigned int vc_origin; - long unsigned int vc_scr_end; - long unsigned int vc_visible_origin; - unsigned int vc_top; - unsigned int vc_bottom; - const struct consw *vc_sw; - short unsigned int *vc_screenbuf; - unsigned int vc_screenbuf_size; - unsigned char vc_mode; - unsigned char vc_attr; - unsigned char vc_def_color; - unsigned char vc_ulcolor; - unsigned char vc_itcolor; - unsigned char vc_halfcolor; - unsigned int vc_cursor_type; - short unsigned int vc_complement_mask; - short unsigned int vc_s_complement_mask; - long unsigned int vc_pos; - short unsigned int vc_hi_font_mask; - struct console_font vc_font; - short unsigned int vc_video_erase_char; - unsigned int vc_state; - unsigned int vc_npar; - unsigned int vc_par[16]; - struct vt_mode vt_mode; - struct pid *vt_pid; - int vt_newvt; - wait_queue_head_t paste_wait; - unsigned int vc_disp_ctrl: 1; - unsigned int vc_toggle_meta: 1; - unsigned int vc_decscnm: 1; - unsigned int vc_decom: 1; - unsigned int vc_decawm: 1; - unsigned int vc_deccm: 1; - unsigned int vc_decim: 1; - unsigned int vc_priv: 3; - unsigned int vc_need_wrap: 1; - unsigned int vc_can_do_color: 1; - unsigned int vc_report_mouse: 2; - unsigned char vc_utf: 1; - unsigned char vc_utf_count; - int vc_utf_char; - long unsigned int vc_tab_stop[4]; - unsigned char vc_palette[48]; - short unsigned int *vc_translate; - unsigned int vc_bell_pitch; - unsigned int vc_bell_duration; - short unsigned int vc_cur_blink_ms; - struct vc_data **vc_display_fg; - struct uni_pagedict *uni_pagedict; - struct uni_pagedict **uni_pagedict_loc; - u32 **vc_uni_lines; -}; - -enum con_scroll { - SM_UP = 0, - SM_DOWN = 1, -}; - -struct consw { - struct module *owner; - const char * (*con_startup)(void); - void (*con_init)(struct vc_data *, bool); - void (*con_deinit)(struct vc_data *); - void (*con_clear)(struct vc_data *, unsigned int, unsigned int, unsigned int); - void (*con_putc)(struct vc_data *, u16, unsigned int, unsigned int); - void (*con_putcs)(struct vc_data *, const u16 *, unsigned int, unsigned int, unsigned int); - void (*con_cursor)(struct vc_data *, bool); - bool (*con_scroll)(struct vc_data *, unsigned int, unsigned int, enum con_scroll, unsigned int); - bool (*con_switch)(struct vc_data *); - bool (*con_blank)(struct vc_data *, enum vesa_blank_mode, bool); - int (*con_font_set)(struct vc_data *, const struct console_font *, unsigned int, unsigned int); - int (*con_font_get)(struct vc_data *, struct console_font *, unsigned int); - int (*con_font_default)(struct vc_data *, struct console_font *, const char *); - int (*con_resize)(struct vc_data *, unsigned int, unsigned int, bool); - void (*con_set_palette)(struct vc_data *, const unsigned char *); - void (*con_scrolldelta)(struct vc_data *, int); - bool (*con_set_origin)(struct vc_data *); - void (*con_save_screen)(struct vc_data *); - u8 (*con_build_attr)(struct vc_data *, u8, enum vc_intensity, bool, bool, bool, bool); - void (*con_invert_region)(struct vc_data *, u16 *, int); - void (*con_debug_enter)(struct vc_data *); - void (*con_debug_leave)(struct vc_data *); -}; - -struct vc { - struct vc_data *d; - struct work_struct SAK_work; -}; - -struct sysrq_state { - struct input_handle handle; - struct work_struct reinject_work; - long unsigned int key_down[12]; - unsigned int alt; - unsigned int alt_use; - unsigned int shift; - unsigned int shift_use; - bool active; - bool need_reinject; - bool reinjecting; - bool reset_canceled; - bool reset_requested; - long unsigned int reset_keybit[12]; - int reset_seq_len; - int reset_seq_cnt; - int reset_seq_version; - struct timer_list keyreset_timer; -}; - -struct drm_master { - struct kref refcount; - struct drm_device *dev; - char *unique; - int unique_len; - struct idr magic_map; - void *driver_priv; - struct drm_master *lessor; - int lessee_id; - struct list_head lessee_list; - struct list_head lessees; - struct idr leases; - struct idr lessee_idr; -}; - -struct drm_mode_create_lease { - __u64 object_ids; - __u32 object_count; - __u32 flags; - __u32 lessee_id; - __u32 fd; -}; - -struct drm_mode_list_lessees { - __u32 count_lessees; - __u32 pad; - __u64 lessees_ptr; -}; - -struct drm_mode_get_lease { - __u32 count_objects; - __u32 pad; - __u64 objects_ptr; -}; - -struct drm_mode_revoke_lease { - __u32 lessee_id; -}; - -struct drm_vma_offset_file { - struct rb_node vm_rb; - struct drm_file *vm_tag; - long unsigned int vm_count; -}; - -enum virtio_gpu_ctrl_type { - VIRTIO_GPU_UNDEFINED = 0, - VIRTIO_GPU_CMD_GET_DISPLAY_INFO = 256, - VIRTIO_GPU_CMD_RESOURCE_CREATE_2D = 257, - VIRTIO_GPU_CMD_RESOURCE_UNREF = 258, - VIRTIO_GPU_CMD_SET_SCANOUT = 259, - VIRTIO_GPU_CMD_RESOURCE_FLUSH = 260, - VIRTIO_GPU_CMD_TRANSFER_TO_HOST_2D = 261, - VIRTIO_GPU_CMD_RESOURCE_ATTACH_BACKING = 262, - VIRTIO_GPU_CMD_RESOURCE_DETACH_BACKING = 263, - VIRTIO_GPU_CMD_GET_CAPSET_INFO = 264, - VIRTIO_GPU_CMD_GET_CAPSET = 265, - VIRTIO_GPU_CMD_GET_EDID = 266, - VIRTIO_GPU_CMD_RESOURCE_ASSIGN_UUID = 267, - VIRTIO_GPU_CMD_RESOURCE_CREATE_BLOB = 268, - VIRTIO_GPU_CMD_SET_SCANOUT_BLOB = 269, - VIRTIO_GPU_CMD_CTX_CREATE = 512, - VIRTIO_GPU_CMD_CTX_DESTROY = 513, - VIRTIO_GPU_CMD_CTX_ATTACH_RESOURCE = 514, - VIRTIO_GPU_CMD_CTX_DETACH_RESOURCE = 515, - VIRTIO_GPU_CMD_RESOURCE_CREATE_3D = 516, - VIRTIO_GPU_CMD_TRANSFER_TO_HOST_3D = 517, - VIRTIO_GPU_CMD_TRANSFER_FROM_HOST_3D = 518, - VIRTIO_GPU_CMD_SUBMIT_3D = 519, - VIRTIO_GPU_CMD_RESOURCE_MAP_BLOB = 520, - VIRTIO_GPU_CMD_RESOURCE_UNMAP_BLOB = 521, - VIRTIO_GPU_CMD_UPDATE_CURSOR = 768, - VIRTIO_GPU_CMD_MOVE_CURSOR = 769, - VIRTIO_GPU_RESP_OK_NODATA = 4352, - VIRTIO_GPU_RESP_OK_DISPLAY_INFO = 4353, - VIRTIO_GPU_RESP_OK_CAPSET_INFO = 4354, - VIRTIO_GPU_RESP_OK_CAPSET = 4355, - VIRTIO_GPU_RESP_OK_EDID = 4356, - VIRTIO_GPU_RESP_OK_RESOURCE_UUID = 4357, - VIRTIO_GPU_RESP_OK_MAP_INFO = 4358, - VIRTIO_GPU_RESP_ERR_UNSPEC = 4608, - VIRTIO_GPU_RESP_ERR_OUT_OF_MEMORY = 4609, - VIRTIO_GPU_RESP_ERR_INVALID_SCANOUT_ID = 4610, - VIRTIO_GPU_RESP_ERR_INVALID_RESOURCE_ID = 4611, - VIRTIO_GPU_RESP_ERR_INVALID_CONTEXT_ID = 4612, - VIRTIO_GPU_RESP_ERR_INVALID_PARAMETER = 4613, -}; - -struct virtio_gpu_resource_unref { - struct virtio_gpu_ctrl_hdr hdr; - __le32 resource_id; - __le32 padding; -}; - -struct virtio_gpu_resource_create_2d { - struct virtio_gpu_ctrl_hdr hdr; - __le32 resource_id; - __le32 format; - __le32 width; - __le32 height; -}; - -struct virtio_gpu_set_scanout { - struct virtio_gpu_ctrl_hdr hdr; - struct virtio_gpu_rect r; - __le32 scanout_id; - __le32 resource_id; -}; - -struct virtio_gpu_resource_flush { - struct virtio_gpu_ctrl_hdr hdr; - struct virtio_gpu_rect r; - __le32 resource_id; - __le32 padding; -}; - -struct virtio_gpu_transfer_to_host_2d { - struct virtio_gpu_ctrl_hdr hdr; - struct virtio_gpu_rect r; - __le64 offset; - __le32 resource_id; - __le32 padding; -}; - -struct virtio_gpu_resource_attach_backing { - struct virtio_gpu_ctrl_hdr hdr; - __le32 resource_id; - __le32 nr_entries; -}; - -struct virtio_gpu_resp_display_info { - struct virtio_gpu_ctrl_hdr hdr; - struct virtio_gpu_display_one pmodes[16]; -}; - -struct virtio_gpu_box { - __le32 x; - __le32 y; - __le32 z; - __le32 w; - __le32 h; - __le32 d; -}; - -struct virtio_gpu_transfer_host_3d { - struct virtio_gpu_ctrl_hdr hdr; - struct virtio_gpu_box box; - __le64 offset; - __le32 resource_id; - __le32 level; - __le32 stride; - __le32 layer_stride; -}; - -struct virtio_gpu_resource_create_3d { - struct virtio_gpu_ctrl_hdr hdr; - __le32 resource_id; - __le32 target; - __le32 format; - __le32 bind; - __le32 width; - __le32 height; - __le32 depth; - __le32 array_size; - __le32 last_level; - __le32 nr_samples; - __le32 flags; - __le32 padding; -}; - -struct virtio_gpu_ctx_create { - struct virtio_gpu_ctrl_hdr hdr; - __le32 nlen; - __le32 context_init; - char debug_name[64]; -}; - -struct virtio_gpu_ctx_destroy { - struct virtio_gpu_ctrl_hdr hdr; -}; - -struct virtio_gpu_ctx_resource { - struct virtio_gpu_ctrl_hdr hdr; - __le32 resource_id; - __le32 padding; -}; - -struct virtio_gpu_cmd_submit { - struct virtio_gpu_ctrl_hdr hdr; - __le32 size; - __le32 padding; -}; - -struct virtio_gpu_get_capset_info { - struct virtio_gpu_ctrl_hdr hdr; - __le32 capset_index; - __le32 padding; -}; - -struct virtio_gpu_resp_capset_info { - struct virtio_gpu_ctrl_hdr hdr; - __le32 capset_id; - __le32 capset_max_version; - __le32 capset_max_size; - __le32 padding; -}; - -struct virtio_gpu_get_capset { - struct virtio_gpu_ctrl_hdr hdr; - __le32 capset_id; - __le32 capset_version; -}; - -struct virtio_gpu_resp_capset { - struct virtio_gpu_ctrl_hdr hdr; - __u8 capset_data[0]; -}; - -struct virtio_gpu_cmd_get_edid { - struct virtio_gpu_ctrl_hdr hdr; - __le32 scanout; - __le32 padding; -}; - -struct virtio_gpu_resp_edid { - struct virtio_gpu_ctrl_hdr hdr; - __le32 size; - __le32 padding; - __u8 edid[1024]; -}; - -struct virtio_gpu_resource_assign_uuid { - struct virtio_gpu_ctrl_hdr hdr; - __le32 resource_id; - __le32 padding; -}; - -struct virtio_gpu_resp_resource_uuid { - struct virtio_gpu_ctrl_hdr hdr; - __u8 uuid[16]; -}; - -struct virtio_gpu_resource_create_blob { - struct virtio_gpu_ctrl_hdr hdr; - __le32 resource_id; - __le32 blob_mem; - __le32 blob_flags; - __le32 nr_entries; - __le64 blob_id; - __le64 size; -}; - -struct virtio_gpu_set_scanout_blob { - struct virtio_gpu_ctrl_hdr hdr; - struct virtio_gpu_rect r; - __le32 scanout_id; - __le32 resource_id; - __le32 width; - __le32 height; - __le32 format; - __le32 padding; - __le32 strides[4]; - __le32 offsets[4]; -}; - -struct virtio_gpu_resource_map_blob { - struct virtio_gpu_ctrl_hdr hdr; - __le32 resource_id; - __le32 padding; - __le64 offset; -}; - -struct virtio_gpu_resp_map_info { - struct virtio_gpu_ctrl_hdr hdr; - __u32 map_info; - __u32 padding; -}; - -struct virtio_gpu_resource_unmap_blob { - struct virtio_gpu_ctrl_hdr hdr; - __le32 resource_id; - __le32 padding; -}; - -struct drm_virtgpu_3d_box { - __u32 x; - __u32 y; - __u32 z; - __u32 w; - __u32 h; - __u32 d; -}; - -struct virtio_gpu_vbuffer; - -typedef void (*virtio_gpu_resp_cb)(struct virtio_gpu_device *, struct virtio_gpu_vbuffer *); - -struct virtio_gpu_vbuffer { - char *buf; - int size; - void *data_buf; - uint32_t data_size; - char *resp_buf; - int resp_size; - virtio_gpu_resp_cb resp_cb; - void *resp_cb_data; - struct virtio_gpu_object_array *objs; - struct list_head list; - uint32_t seqno; -}; - -struct virtio_gpu_drv_cap_cache { - struct list_head head; - void *caps_cache; - uint32_t id; - uint32_t version; - uint32_t size; - atomic_t is_valid; -}; - -struct virtio_gpu_command; - -struct internal_container { - struct klist_node node; - struct attribute_container *cont; - struct device classdev; -}; - -struct regcache_rbtree_node { - void *block; - long unsigned int *cache_present; - unsigned int base_reg; - unsigned int blklen; - struct rb_node node; -}; - -struct regcache_rbtree_ctx { - struct rb_root root; - struct regcache_rbtree_node *cached_rbnode; -}; - -struct dma_fence_array; - -struct dma_fence_array_cb { - struct dma_fence_cb cb; - struct dma_fence_array *array; -}; - -struct dma_fence_array { - struct dma_fence base; - spinlock_t lock; - unsigned int num_fences; - atomic_t num_pending; - struct dma_fence **fences; - struct irq_work work; - struct dma_fence_array_cb callbacks[0]; -}; - -enum scsi_prot_operations { - SCSI_PROT_NORMAL = 0, - SCSI_PROT_READ_INSERT = 1, - SCSI_PROT_WRITE_STRIP = 2, - SCSI_PROT_READ_STRIP = 3, - SCSI_PROT_WRITE_INSERT = 4, - SCSI_PROT_READ_PASS = 5, - SCSI_PROT_WRITE_PASS = 6, -}; - -struct scsi_eh_save { - int result; - unsigned int resid_len; - int eh_eflags; - enum dma_data_direction data_direction; - unsigned int underflow; - unsigned char cmd_len; - unsigned char prot_op; - unsigned char cmnd[32]; - struct scsi_data_buffer sdb; - struct scatterlist sense_sgl; -}; - -enum scsi_ml_status { - SCSIML_STAT_OK = 0, - SCSIML_STAT_RESV_CONFLICT = 1, - SCSIML_STAT_NOSPC = 2, - SCSIML_STAT_MED_ERROR = 3, - SCSIML_STAT_TGT_FAILURE = 4, - SCSIML_STAT_DL_TIMEOUT = 5, -}; - -enum { - BOND_3AD_STAT_LACPDU_RX = 0, - BOND_3AD_STAT_LACPDU_TX = 1, - BOND_3AD_STAT_LACPDU_UNKNOWN_RX = 2, - BOND_3AD_STAT_LACPDU_ILLEGAL_RX = 3, - BOND_3AD_STAT_MARKER_RX = 4, - BOND_3AD_STAT_MARKER_TX = 5, - BOND_3AD_STAT_MARKER_RESP_RX = 6, - BOND_3AD_STAT_MARKER_RESP_TX = 7, - BOND_3AD_STAT_MARKER_UNKNOWN_RX = 8, - BOND_3AD_STAT_PAD = 9, - __BOND_3AD_STAT_MAX = 10, -}; - -enum { - BOND_AD_STABLE = 0, - BOND_AD_BANDWIDTH = 1, - BOND_AD_COUNT = 2, -}; - -enum { - AD_TYPE_LACPDU = 1, - AD_TYPE_MARKER = 2, -}; - -enum { - AD_MARKER_INFORMATION_SUBTYPE = 1, - AD_MARKER_RESPONSE_SUBTYPE = 2, -}; - -enum { - AD_CURRENT_WHILE_TIMER = 0, - AD_ACTOR_CHURN_TIMER = 1, - AD_PERIODIC_TIMER = 2, - AD_PARTNER_CHURN_TIMER = 3, - AD_WAIT_WHILE_TIMER = 4, -}; - -struct lacpdu_header { - struct ethhdr hdr; - struct lacpdu lacpdu; -}; - -struct bond_marker { - u8 subtype; - u8 version_number; - u8 tlv_type; - u8 marker_length; - u16 requester_port; - struct mac_addr requester_system; - u32 requester_transaction_id; - u16 pad; - u8 tlv_type_terminator; - u8 terminator_length; - u8 reserved_90[90]; -} __attribute__((packed)); - -struct bond_marker_header { - struct ethhdr hdr; - struct bond_marker marker; -}; - -enum ad_link_speed_type { - AD_LINK_SPEED_1MBPS = 1, - AD_LINK_SPEED_10MBPS = 2, - AD_LINK_SPEED_100MBPS = 3, - AD_LINK_SPEED_1000MBPS = 4, - AD_LINK_SPEED_2500MBPS = 5, - AD_LINK_SPEED_5000MBPS = 6, - AD_LINK_SPEED_10000MBPS = 7, - AD_LINK_SPEED_14000MBPS = 8, - AD_LINK_SPEED_20000MBPS = 9, - AD_LINK_SPEED_25000MBPS = 10, - AD_LINK_SPEED_40000MBPS = 11, - AD_LINK_SPEED_50000MBPS = 12, - AD_LINK_SPEED_56000MBPS = 13, - AD_LINK_SPEED_100000MBPS = 14, - AD_LINK_SPEED_200000MBPS = 15, - AD_LINK_SPEED_400000MBPS = 16, - AD_LINK_SPEED_800000MBPS = 17, -}; - -enum counter_values { - COUNTER_BITS_TOTAL = 8192, - COUNTER_REDUNDANT_BITS = 64, - COUNTER_WINDOW_SIZE = 8128, -}; - -enum cookie_mac_state { - INVALID_MAC = 0, - VALID_MAC_BUT_NO_COOKIE = 1, - VALID_MAC_WITH_COOKIE_BUT_RATELIMITED = 2, - VALID_MAC_WITH_COOKIE = 3, -}; - -struct fixed_phy_status { - int link; - int speed; - int duplex; - int pause; - int asym_pause; -}; - -struct sock_fprog { - short unsigned int len; - struct sock_filter *filter; -}; - -enum { - IFLA_PPP_UNSPEC = 0, - IFLA_PPP_DEV_FD = 1, - __IFLA_PPP_MAX = 2, -}; - -enum NPmode { - NPMODE_PASS = 0, - NPMODE_DROP = 1, - NPMODE_ERROR = 2, - NPMODE_QUEUE = 3, -}; - -struct pppstat { - __u32 ppp_discards; - __u32 ppp_ibytes; - __u32 ppp_ioctects; - __u32 ppp_ipackets; - __u32 ppp_ierrors; - __u32 ppp_ilqrs; - __u32 ppp_obytes; - __u32 ppp_ooctects; - __u32 ppp_opackets; - __u32 ppp_oerrors; - __u32 ppp_olqrs; -}; - -struct vjstat { - __u32 vjs_packets; - __u32 vjs_compressed; - __u32 vjs_searches; - __u32 vjs_misses; - __u32 vjs_uncompressedin; - __u32 vjs_compressedin; - __u32 vjs_errorin; - __u32 vjs_tossed; -}; - -struct compstat { - __u32 unc_bytes; - __u32 unc_packets; - __u32 comp_bytes; - __u32 comp_packets; - __u32 inc_bytes; - __u32 inc_packets; - __u32 in_count; - __u32 bytes_out; - double ratio; -}; - -struct ppp_stats { - struct pppstat p; - struct vjstat vj; -}; - -struct ppp_comp_stats { - struct compstat c; - struct compstat d; -}; - -struct ppp_idle32 { - __s32 xmit_idle; - __s32 recv_idle; -}; - -struct ppp_idle64 { - __s64 xmit_idle; - __s64 recv_idle; -}; - -struct npioctl { - int protocol; - enum NPmode mode; -}; - -struct ppp_option_data { - __u8 *ptr; - __u32 length; - int transmit; -}; - -struct compressor { - int compress_proto; - void * (*comp_alloc)(unsigned char *, int); - void (*comp_free)(void *); - int (*comp_init)(void *, unsigned char *, int, int, int, int); - void (*comp_reset)(void *); - int (*compress)(void *, unsigned char *, unsigned char *, int, int); - void (*comp_stat)(void *, struct compstat *); - void * (*decomp_alloc)(unsigned char *, int); - void (*decomp_free)(void *); - int (*decomp_init)(void *, unsigned char *, int, int, int, int, int); - void (*decomp_reset)(void *); - int (*decompress)(void *, unsigned char *, int, unsigned char *, int); - void (*incomp)(void *, unsigned char *, int); - void (*decomp_stat)(void *, struct compstat *); - struct module *owner; - unsigned int comp_extra; -}; - -struct ppp_file { - enum { - INTERFACE = 1, - CHANNEL = 2, - } kind; - struct sk_buff_head xq; - struct sk_buff_head rq; - wait_queue_head_t rwait; - refcount_t refcnt; - int hdrlen; - int index; - int dead; -}; - -struct ppp_link_stats { - u64 rx_packets; - u64 tx_packets; - u64 rx_bytes; - u64 tx_bytes; -}; - -struct ppp { - struct ppp_file file; - struct file *owner; - struct list_head channels; - int n_channels; - spinlock_t rlock; - spinlock_t wlock; - int *xmit_recursion; - int mru; - unsigned int flags; - unsigned int xstate; - unsigned int rstate; - int debug; - struct slcompress *vj; - enum NPmode npmode[6]; - struct sk_buff *xmit_pending; - struct compressor *xcomp; - void *xc_state; - struct compressor *rcomp; - void *rc_state; - long unsigned int last_xmit; - long unsigned int last_recv; - struct net_device *dev; - int closing; - int nxchan; - u32 nxseq; - int mrru; - u32 nextseq; - u32 minseq; - struct sk_buff_head mrq; - struct bpf_prog *pass_filter; - struct bpf_prog *active_filter; - struct net *ppp_net; - struct ppp_link_stats stats64; -}; - -struct channel { - struct ppp_file file; - struct list_head list; - struct ppp_channel *chan; - struct rw_semaphore chan_sem; - spinlock_t downl; - struct ppp *ppp; - struct net *chan_net; - netns_tracker ns_tracker; - struct list_head clist; - rwlock_t upl; - struct channel *bridge; - u8 avail; - u8 had_frag; - u32 lastseq; - int speed; -}; - -struct ppp_config { - struct file *file; - s32 unit; - bool ifname_is_set; -}; - -struct ppp_net { - struct idr units_idr; - struct mutex all_ppp_mutex; - struct list_head all_channels; - struct list_head new_channels; - int last_channel_index; - spinlock_t all_channels_lock; -}; - -struct ppp_mp_skb_parm { - u32 sequence; - u8 BEbits; -}; - -struct compressor_entry { - struct list_head list; - struct compressor *comp; -}; - -struct ep_device { - struct usb_endpoint_descriptor *desc; - struct usb_device *udev; - struct device dev; -}; - -struct iso_rec { - int error_count; - int numdesc; -}; - -struct mon_bin_hdr { - u64 id; - unsigned char type; - unsigned char xfer_type; - unsigned char epnum; - unsigned char devnum; - short unsigned int busnum; - char flag_setup; - char flag_data; - s64 ts_sec; - s32 ts_usec; - int status; - unsigned int len_urb; - unsigned int len_cap; - union { - unsigned char setup[8]; - struct iso_rec iso; - } s; - int interval; - int start_frame; - unsigned int xfer_flags; - unsigned int ndesc; -}; - -struct mon_bin_isodesc { - int iso_status; - unsigned int iso_off; - unsigned int iso_len; - u32 _pad; -}; - -struct mon_bin_stats { - u32 queued; - u32 dropped; -}; - -struct mon_bin_get { - struct mon_bin_hdr *hdr; - void *data; - size_t alloc; -}; - -struct mon_bin_mfetch { - u32 *offvec; - u32 nfetch; - u32 nflush; -}; - -struct mon_pgmap { - struct page *pg; - unsigned char *ptr; -}; - -struct mon_reader_bin { - spinlock_t b_lock; - unsigned int b_size; - unsigned int b_cnt; - unsigned int b_in; - unsigned int b_out; - unsigned int b_read; - struct mon_pgmap *b_vec; - wait_queue_head_t b_wait; - struct mutex fetch_lock; - int mmap_active; - struct mon_reader r; - unsigned int cnt_lost; -}; - -struct usblp { - struct usb_device *dev; - struct mutex wmut; - struct mutex mut; - spinlock_t lock; - char *readbuf; - char *statusbuf; - struct usb_anchor urbs; - wait_queue_head_t rwait; - wait_queue_head_t wwait; - int readcount; - int ifnum; - struct usb_interface *intf; - struct { - int alt_setting; - struct usb_endpoint_descriptor *epwrite; - struct usb_endpoint_descriptor *epread; - } protocol[4]; - int current_protocol; - int minor; - int wcomplete; - int rcomplete; - int wstatus; - int rstatus; - unsigned int quirks; - unsigned int flags; - unsigned char used; - unsigned char present; - unsigned char bidir; - unsigned char no_paper; - unsigned char *device_id_string; -}; - -struct quirk_printer_struct { - __u16 vendorId; - __u16 productId; - unsigned int quirks; -}; - -struct alauda_media_info { - long unsigned int capacity; - unsigned int pagesize; - unsigned int blocksize; - unsigned int uzonesize; - unsigned int zonesize; - unsigned int blockmask; - unsigned char pageshift; - unsigned char blockshift; - unsigned char zoneshift; - u16 **lba_to_pba; - u16 **pba_to_lba; -}; - -struct alauda_info { - struct alauda_media_info port[2]; - int wr_ep; - unsigned char sense_key; - long unsigned int sense_asc; - long unsigned int sense_ascq; - bool media_initialized; -}; - -struct alauda_card_info { - unsigned char id; - unsigned char chipshift; - unsigned char pageshift; - unsigned char blockshift; - unsigned char zoneshift; -}; - -struct ch341_private { - spinlock_t lock; - unsigned int baud_rate; - u8 mcr; - u8 msr; - u8 lcr; - long unsigned int quirks; - u8 version; - long unsigned int break_end; -}; - -struct moschip_port { - __u8 shadowLCR; - __u8 shadowMCR; - __u8 shadowMSR; - char open; - struct usb_serial_port *port; - struct urb *write_urb_pool[16]; -}; - -enum mos_regs { - MOS7720_THR = 0, - MOS7720_RHR = 1, - MOS7720_IER = 2, - MOS7720_FCR = 3, - MOS7720_ISR = 4, - MOS7720_LCR = 5, - MOS7720_MCR = 6, - MOS7720_LSR = 7, - MOS7720_MSR = 8, - MOS7720_SPR = 9, - MOS7720_DLL = 10, - MOS7720_DLM = 11, - MOS7720_DPR = 12, - MOS7720_DSR = 13, - MOS7720_DCR = 14, - MOS7720_ECR = 15, - MOS7720_SP1_REG = 16, - MOS7720_SP2_REG = 17, - MOS7720_PP_REG = 18, - MOS7720_SP_CONTROL_REG = 19, -}; - -struct divisor_table_entry { - __u32 baudrate; - __u16 divisor; -}; - -enum usbip_device_status { - SDEV_ST_AVAILABLE = 1, - SDEV_ST_USED = 2, - SDEV_ST_ERROR = 3, - VDEV_ST_NULL = 4, - VDEV_ST_NOTASSIGNED = 5, - VDEV_ST_USED = 6, - VDEV_ST_ERROR = 7, -}; - -enum { - usbip_debug_xmit = 1, - usbip_debug_sysfs = 2, - usbip_debug_urb = 4, - usbip_debug_eh = 8, - usbip_debug_stub_cmp = 256, - usbip_debug_stub_dev = 512, - usbip_debug_stub_rx = 1024, - usbip_debug_stub_tx = 2048, - usbip_debug_vhci_rh = 256, - usbip_debug_vhci_hc = 512, - usbip_debug_vhci_rx = 1024, - usbip_debug_vhci_tx = 2048, - usbip_debug_vhci_sysfs = 4096, -}; - -enum usbip_side { - USBIP_VHCI = 0, - USBIP_STUB = 1, - USBIP_VUDC = 2, -}; - -struct usbip_device; - -struct eh_ops { - void (*shutdown)(struct usbip_device *); - void (*reset)(struct usbip_device *); - void (*unusable)(struct usbip_device *); -}; - -struct usbip_device { - enum usbip_side side; - enum usbip_device_status status; - spinlock_t lock; - struct mutex sysfs_lock; - int sockfd; - struct socket *tcp_socket; - struct task_struct *tcp_rx; - struct task_struct *tcp_tx; - long unsigned int event; - wait_queue_head_t eh_waitq; - struct eh_ops eh_ops; -}; - -struct usbip_event { - struct list_head node; - struct usbip_device *ud; -}; - -enum typec_port_data { - TYPEC_PORT_DFP = 0, - TYPEC_PORT_UFP = 1, - TYPEC_PORT_DRD = 2, -}; - -enum typec_plug_index { - TYPEC_PLUG_SOP_P = 0, - TYPEC_PLUG_SOP_PP = 1, -}; - -struct typec_device_id { - __u16 svid; - __u8 mode; - kernel_ulong_t driver_data; -}; - -struct typec_altmode_ops; - -struct typec_cable_ops; - -struct typec_altmode { - struct device dev; - u16 svid; - int mode; - u32 vdo; - unsigned int active: 1; - char *desc; - const struct typec_altmode_ops *ops; - const struct typec_cable_ops *cable_ops; -}; - -struct typec_altmode_ops { - int (*enter)(struct typec_altmode *, u32 *); - int (*exit)(struct typec_altmode *); - void (*attention)(struct typec_altmode *, u32); - int (*vdm)(struct typec_altmode *, const u32, const u32 *, int); - int (*notify)(struct typec_altmode *, long unsigned int, void *); - int (*activate)(struct typec_altmode *, int); -}; - -struct typec_cable_ops { - int (*enter)(struct typec_altmode *, enum typec_plug_index, u32 *); - int (*exit)(struct typec_altmode *, enum typec_plug_index); - int (*vdm)(struct typec_altmode *, enum typec_plug_index, const u32, const u32 *, int); -}; - -enum { - TYPEC_STATE_SAFE = 0, - TYPEC_STATE_USB = 1, - TYPEC_STATE_MODAL = 2, -}; - -struct typec_altmode_driver { - const struct typec_device_id *id_table; - int (*probe)(struct typec_altmode *); - void (*remove)(struct typec_altmode *); - struct device_driver driver; -}; - -struct typec_mux; - -struct typec_retimer; - -struct altmode { - unsigned int id; - struct typec_altmode adev; - struct typec_mux *mux; - struct typec_retimer *retimer; - enum typec_port_data roles; - struct attribute *attrs[5]; - char group_name[8]; - struct attribute_group group; - const struct attribute_group *groups[2]; - struct altmode *partner; - struct altmode *plug[2]; -}; - -struct typec_retimer_state; - -typedef int (*typec_retimer_set_fn_t)(struct typec_retimer *, struct typec_retimer_state *); - -struct typec_retimer { - struct device dev; - typec_retimer_set_fn_t set; -}; - -struct typec_mux_state { - struct typec_altmode *alt; - long unsigned int mode; - void *data; -}; - -struct typec_retimer_state { - struct typec_altmode *alt; - long unsigned int mode; - void *data; -}; - -struct serport { - struct tty_struct *tty; - wait_queue_head_t wait; - struct serio *serio; - struct serio_device_id id; - spinlock_t lock; - long unsigned int flags; -}; - -typedef class_mutex_t class_mutex_intr_t; - -struct vivaldi_data { - u32 function_row_physmap[24]; - unsigned int num_function_row_keys; -}; - -struct atkbd { - struct ps2dev ps2dev; - struct input_dev *dev; - char name[64]; - char phys[32]; - short unsigned int id; - short unsigned int keycode[512]; - long unsigned int force_release_mask[8]; - unsigned char set; - bool translated; - bool extra; - bool write; - bool softrepeat; - bool softraw; - bool scroll; - bool enabled; - unsigned char emul; - bool resend; - bool release; - long unsigned int xl_bit; - unsigned int last; - long unsigned int time; - long unsigned int err_count; - struct delayed_work event_work; - long unsigned int event_jiffies; - long unsigned int event_mask; - struct mutex mutex; - struct vivaldi_data vdata; -}; - -struct i2c_mux_core { - struct i2c_adapter *parent; - struct device *dev; - unsigned int mux_locked: 1; - unsigned int arbitrator: 1; - unsigned int gate: 1; - void *priv; - int (*select)(struct i2c_mux_core *, u32); - int (*deselect)(struct i2c_mux_core *, u32); - int num_adapters; - int max_adapters; - struct i2c_adapter *adapter[0]; -}; - -struct i2c_mux_priv { - struct i2c_adapter adap; - struct i2c_algorithm algo; - struct i2c_mux_core *muxc; - u32 chan_id; -}; - -struct dm_sysfs_attr { - struct attribute attr; - ssize_t (*show)(struct mapped_device *, char *); - ssize_t (*store)(struct mapped_device *, const char *, size_t); -}; - -struct sd_app_op_cond_busy_data { - struct mmc_host *host; - u32 ocr; - struct mmc_command *cmd; -}; - -struct of_timer_irq { - int irq; - int index; - const char *name; - long unsigned int flags; - irq_handler_t handler; -}; - -struct of_timer_base { - void *base; - const char *name; - int index; -}; - -struct of_timer_clk { - struct clk *clk; - const char *name; - int index; - long unsigned int rate; - long unsigned int period; -}; - -struct timer_of { - unsigned int flags; - struct device_node *np; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct clock_event_device clkevt; - struct of_timer_base of_base; - struct of_timer_irq of_irq; - struct of_timer_clk of_clk; - void *private_data; - long: 64; - long: 64; - long: 64; -}; - -enum { - VSOCK_VQ_RX = 0, - VSOCK_VQ_TX = 1, - VSOCK_VQ_EVENT = 2, - VSOCK_VQ_MAX = 3, -}; - -struct vhost_iotlb_msg { - __u64 iova; - __u64 size; - __u64 uaddr; - __u8 perm; - __u8 type; -}; - -struct vhost_iotlb_map { - struct rb_node rb; - struct list_head link; - u64 start; - u64 last; - u64 size; - u64 addr; - u32 perm; - u32 flags_padding; - u64 __subtree_last; - void *opaque; -}; - -struct vhost_iotlb { - struct rb_root_cached root; - struct list_head list; - unsigned int limit; - unsigned int nmaps; - unsigned int flags; -}; - -struct irq_bypass_consumer; - -struct irq_bypass_producer { - struct list_head node; - void *token; - int irq; - int (*add_consumer)(struct irq_bypass_producer *, struct irq_bypass_consumer *); - void (*del_consumer)(struct irq_bypass_producer *, struct irq_bypass_consumer *); - void (*stop)(struct irq_bypass_producer *); - void (*start)(struct irq_bypass_producer *); -}; - -struct irq_bypass_consumer { - struct list_head node; - void *token; - int (*add_producer)(struct irq_bypass_consumer *, struct irq_bypass_producer *); - void (*del_producer)(struct irq_bypass_consumer *, struct irq_bypass_producer *); - void (*stop)(struct irq_bypass_consumer *); - void (*start)(struct irq_bypass_consumer *); -}; - -struct vhost_work; - -typedef void (*vhost_work_fn_t)(struct vhost_work *); - -struct vhost_work { - struct llist_node node; - vhost_work_fn_t fn; - long unsigned int flags; -}; - -struct vhost_worker; - -struct vhost_dev; - -struct vhost_worker_ops { - int (*create)(struct vhost_worker *, struct vhost_dev *, const char *); - void (*stop)(struct vhost_worker *); - void (*wakeup)(struct vhost_worker *); -}; - -struct vhost_task; - -struct vhost_worker { - struct task_struct *kthread_task; - struct vhost_task *vtsk; - struct vhost_dev *dev; - struct mutex mutex; - struct llist_head work_list; - u64 kcov_handle; - u32 id; - int attachment_cnt; - bool killed; - const struct vhost_worker_ops *ops; -}; - -struct vhost_virtqueue; - -struct vhost_dev { - struct mm_struct *mm; - struct mutex mutex; - struct vhost_virtqueue **vqs; - int nvqs; - struct eventfd_ctx *log_ctx; - struct vhost_iotlb *umem; - struct vhost_iotlb *iotlb; - spinlock_t iotlb_lock; - struct list_head read_list; - struct list_head pending_list; - wait_queue_head_t wait; - int iov_limit; - int weight; - int byte_weight; - struct xarray worker_xa; - bool use_worker; - bool fork_owner; - int (*msg_handler)(struct vhost_dev *, u32, struct vhost_iotlb_msg *); -}; - -struct vhost_poll { - poll_table table; - wait_queue_head_t *wqh; - wait_queue_entry_t wait; - struct vhost_work work; - __poll_t mask; - struct vhost_dev *dev; - struct vhost_virtqueue *vq; -}; - -struct vhost_vring_call { - struct eventfd_ctx *ctx; - struct irq_bypass_producer producer; -}; - -struct vhost_log; - -struct vhost_virtqueue { - struct vhost_dev *dev; - struct vhost_worker *worker; - struct mutex mutex; - unsigned int num; - vring_desc_t *desc; - vring_avail_t *avail; - vring_used_t *used; - const struct vhost_iotlb_map *meta_iotlb[3]; - struct file *kick; - struct vhost_vring_call call_ctx; - struct eventfd_ctx *error_ctx; - struct eventfd_ctx *log_ctx; - struct vhost_poll poll; - vhost_work_fn_t handle_kick; - u16 last_avail_idx; - u16 avail_idx; - u16 last_used_idx; - u16 used_flags; - u16 signalled_used; - bool signalled_used_valid; - bool log_used; - u64 log_addr; - struct iovec iov[1024]; - struct iovec iotlb_iov[64]; - struct iovec *indirect; - struct vring_used_elem *heads; - struct vhost_iotlb *umem; - struct vhost_iotlb *iotlb; - void *private_data; - u64 acked_features; - u64 acked_backend_features; - void *log_base; - struct vhost_log *log; - struct iovec log_iov[64]; - bool is_le; - u32 busyloop_timeout; -}; - -struct vhost_log { - u64 addr; - u64 len; -}; - -enum vhost_uaddr_type { - VHOST_ADDR_DESC = 0, - VHOST_ADDR_AVAIL = 1, - VHOST_ADDR_USED = 2, - VHOST_NUM_ADDRS = 3, -}; - -enum { - VHOST_FEATURES = 5318377472ULL, -}; - -enum { - VHOST_VSOCK_FEATURES = 13908312066ULL, -}; - -enum { - VHOST_VSOCK_BACKEND_FEATURES = 2, -}; - -struct vhost_vsock { - struct vhost_dev dev; - struct vhost_virtqueue vqs[2]; - struct hlist_node hash; - struct vhost_work send_pkt_work; - struct sk_buff_head send_pkt_queue; - atomic_t queued_replies; - u32 guest_cid; - bool seqpacket_allow; -}; - -enum { - SKB_FCLONE_UNAVAILABLE = 0, - SKB_FCLONE_ORIG = 1, - SKB_FCLONE_CLONE = 2, -}; - -struct gro_cell { - struct sk_buff_head napi_skbs; - struct napi_struct napi; -}; - -struct percpu_free_defer { - struct callback_head rcu; - void *ptr; -}; - -struct nvmem_cell; - -struct psample_group { - struct list_head list; - struct net *net; - u32 group_num; - u32 refcount; - u32 seq; - struct callback_head rcu; -}; - -struct action_gate_entry { - u8 gate_state; - u32 interval; - s32 ipv; - s32 maxoctets; -}; - -enum tcf_proto_ops_flags { - TCF_PROTO_OPS_DOIT_UNLOCKED = 1, -}; - -enum net_xmit_qdisc_t { - __NET_XMIT_STOLEN = 65536, - __NET_XMIT_BYPASS = 131072, -}; - -struct tcf_qevent { - struct tcf_block *block; - struct tcf_block_ext_info info; - struct tcf_proto *filter_chain; -}; - -struct tcf_exts_miss_cookie_node { - const struct tcf_chain *chain; - const struct tcf_proto *tp; - const struct tcf_exts *exts; - u32 chain_index; - u32 tp_prio; - u32 handle; - u32 miss_cookie_base; - struct callback_head rcu; -}; - -union tcf_exts_miss_cookie { - struct { - u32 miss_cookie_base; - u32 act_index; - }; - u64 miss_cookie; -}; - -struct tcf_filter_chain_list_item { - struct list_head list; - tcf_chain_head_change_t *chain_head_change; - void *chain_head_change_priv; -}; - -struct tcf_net { - spinlock_t idr_lock; - struct idr idr; -}; - -struct tcf_block_owner_item { - struct list_head list; - struct Qdisc *q; - enum flow_block_binder_type binder_type; -}; - -struct tcf_chain_info { - struct tcf_proto **pprev; - struct tcf_proto *next; -}; - -struct tcf_dump_args { - struct tcf_walker w; - struct sk_buff *skb; - struct netlink_callback *cb; - struct tcf_block *block; - struct Qdisc *q; - u32 parent; - bool terse_dump; -}; - -struct tc_basic_pcnt { - __u64 rcnt; - __u64 rhit; -}; - -enum { - TCA_BASIC_UNSPEC = 0, - TCA_BASIC_CLASSID = 1, - TCA_BASIC_EMATCHES = 2, - TCA_BASIC_ACT = 3, - TCA_BASIC_POLICE = 4, - TCA_BASIC_PCNT = 5, - TCA_BASIC_PAD = 6, - __TCA_BASIC_MAX = 7, -}; - -struct tcf_ematch_tree {}; - -struct basic_head { - struct list_head flist; - struct idr handle_idr; - struct callback_head rcu; -}; - -struct basic_filter { - u32 handle; - struct tcf_exts exts; - struct tcf_ematch_tree ematches; - struct tcf_result res; - struct tcf_proto *tp; - struct list_head link; - struct tc_basic_pcnt *pf; - struct rcu_work rwork; -}; - -enum { - ETHTOOL_A_BITSET_BIT_UNSPEC = 0, - ETHTOOL_A_BITSET_BIT_INDEX = 1, - ETHTOOL_A_BITSET_BIT_NAME = 2, - ETHTOOL_A_BITSET_BIT_VALUE = 3, - __ETHTOOL_A_BITSET_BIT_CNT = 4, - ETHTOOL_A_BITSET_BIT_MAX = 3, -}; - -enum { - ETHTOOL_A_BITSET_BITS_UNSPEC = 0, - ETHTOOL_A_BITSET_BITS_BIT = 1, - __ETHTOOL_A_BITSET_BITS_CNT = 2, - ETHTOOL_A_BITSET_BITS_MAX = 1, -}; - -enum { - ETHTOOL_A_BITSET_UNSPEC = 0, - ETHTOOL_A_BITSET_NOMASK = 1, - ETHTOOL_A_BITSET_SIZE = 2, - ETHTOOL_A_BITSET_BITS = 3, - ETHTOOL_A_BITSET_VALUE = 4, - ETHTOOL_A_BITSET_MASK = 5, - __ETHTOOL_A_BITSET_CNT = 6, - ETHTOOL_A_BITSET_MAX = 5, -}; - -struct privflags_reply_data { - struct ethnl_reply_data base; - const char (*priv_flag_names)[32]; - unsigned int n_priv_flags; - u32 priv_flags; -}; - -enum { - ETHTOOL_A_STATS_GRP_UNSPEC = 0, - ETHTOOL_A_STATS_GRP_PAD = 1, - ETHTOOL_A_STATS_GRP_ID = 2, - ETHTOOL_A_STATS_GRP_SS_ID = 3, - ETHTOOL_A_STATS_GRP_STAT = 4, - ETHTOOL_A_STATS_GRP_HIST_RX = 5, - ETHTOOL_A_STATS_GRP_HIST_TX = 6, - ETHTOOL_A_STATS_GRP_HIST_BKT_LOW = 7, - ETHTOOL_A_STATS_GRP_HIST_BKT_HI = 8, - ETHTOOL_A_STATS_GRP_HIST_VAL = 9, - __ETHTOOL_A_STATS_GRP_CNT = 10, - ETHTOOL_A_STATS_GRP_MAX = 9, -}; - -struct stats_req_info { - struct ethnl_req_info base; - long unsigned int stat_mask[1]; - enum ethtool_mac_stats_src src; -}; - -struct stats_reply_data { - struct ethnl_reply_data base; - union { - struct { - struct ethtool_eth_phy_stats phy_stats; - struct ethtool_eth_mac_stats mac_stats; - struct ethtool_eth_ctrl_stats ctrl_stats; - struct ethtool_rmon_stats rmon_stats; - struct ethtool_phy_stats phydev_stats; - }; - struct { - struct ethtool_eth_phy_stats phy_stats; - struct ethtool_eth_mac_stats mac_stats; - struct ethtool_eth_ctrl_stats ctrl_stats; - struct ethtool_rmon_stats rmon_stats; - struct ethtool_phy_stats phydev_stats; - } stats; - }; - const struct ethtool_rmon_hist_range *rmon_ranges; -}; - -enum ip_conntrack_events { - IPCT_NEW = 0, - IPCT_RELATED = 1, - IPCT_DESTROY = 2, - IPCT_REPLY = 3, - IPCT_ASSURED = 4, - IPCT_PROTOINFO = 5, - IPCT_HELPER = 6, - IPCT_MARK = 7, - IPCT_SEQADJ = 8, - IPCT_NATSEQADJ = 8, - IPCT_SECMARK = 9, - IPCT_LABEL = 10, - IPCT_SYNPROXY = 11, - __IPCT_MAX = 12, -}; - -enum ct_dccp_roles { - CT_DCCP_ROLE_CLIENT = 0, - CT_DCCP_ROLE_SERVER = 1, - __CT_DCCP_ROLE_MAX = 2, -}; - -struct dccp_hdr_ext { - __be32 dccph_seq_low; -}; - -struct dccp_hdr_request { - __be32 dccph_req_service; -}; - -struct dccp_hdr_ack_bits { - __be16 dccph_reserved1; - __be16 dccph_ack_nr_high; - __be32 dccph_ack_nr_low; -}; - -struct dccp_hdr_response { - struct dccp_hdr_ack_bits dccph_resp_ack; - __be32 dccph_resp_service; -}; - -struct dccp_hdr_reset { - struct dccp_hdr_ack_bits dccph_reset_ack; - __u8 dccph_reset_code; - __u8 dccph_reset_data[3]; -}; - -enum ctattr_protoinfo { - CTA_PROTOINFO_UNSPEC = 0, - CTA_PROTOINFO_TCP = 1, - CTA_PROTOINFO_DCCP = 2, - CTA_PROTOINFO_SCTP = 3, - __CTA_PROTOINFO_MAX = 4, -}; - -enum ctattr_protoinfo_dccp { - CTA_PROTOINFO_DCCP_UNSPEC = 0, - CTA_PROTOINFO_DCCP_STATE = 1, - CTA_PROTOINFO_DCCP_ROLE = 2, - CTA_PROTOINFO_DCCP_HANDSHAKE_SEQ = 3, - CTA_PROTOINFO_DCCP_PAD = 4, - __CTA_PROTOINFO_DCCP_MAX = 5, -}; - -struct nf_conntrack_ecache { - long unsigned int cache; - u16 ctmask; - u16 expmask; - u32 missed; - u32 portid; -}; - -struct nf_ct_timeout { - __u16 l3num; - const struct nf_conntrack_l4proto *l4proto; - char data[0]; -}; - -struct nf_conn_timeout { - struct nf_ct_timeout *timeout; -}; - -struct nf_conntrack_dccp_buf { - struct dccp_hdr dh; - struct dccp_hdr_ext ext; - union { - struct dccp_hdr_ack_bits ack; - struct dccp_hdr_request req; - struct dccp_hdr_response response; - struct dccp_hdr_reset rst; - } u; -}; - -enum ctattr_timeout_dccp { - CTA_TIMEOUT_DCCP_UNSPEC = 0, - CTA_TIMEOUT_DCCP_REQUEST = 1, - CTA_TIMEOUT_DCCP_RESPOND = 2, - CTA_TIMEOUT_DCCP_PARTOPEN = 3, - CTA_TIMEOUT_DCCP_OPEN = 4, - CTA_TIMEOUT_DCCP_CLOSEREQ = 5, - CTA_TIMEOUT_DCCP_CLOSING = 6, - CTA_TIMEOUT_DCCP_TIMEWAIT = 7, - __CTA_TIMEOUT_DCCP_MAX = 8, -}; - -enum nft_payload_bases { - NFT_PAYLOAD_LL_HEADER = 0, - NFT_PAYLOAD_NETWORK_HEADER = 1, - NFT_PAYLOAD_TRANSPORT_HEADER = 2, - NFT_PAYLOAD_INNER_HEADER = 3, - NFT_PAYLOAD_TUN_HEADER = 4, -}; - -enum nft_trace_types { - NFT_TRACETYPE_UNSPEC = 0, - NFT_TRACETYPE_POLICY = 1, - NFT_TRACETYPE_RETURN = 2, - NFT_TRACETYPE_RULE = 3, - __NFT_TRACETYPE_MAX = 4, -}; - -struct nft_rule_dp { - u64 is_last: 1; - u64 dlen: 12; - u64 handle: 42; - long: 0; - unsigned char data[0]; -}; - -struct nft_traceinfo { - bool trace; - bool nf_trace; - bool packet_dumped; - enum nft_trace_types type: 8; - u32 skbid; - const struct nft_base_chain *basechain; -}; - -struct nft_bitwise_fast_expr { - u32 mask; - u32 xor; - u8 sreg; - u8 dreg; -}; - -struct nft_cmp_fast_expr { - u32 data; - u32 mask; - u8 sreg; - u8 len; - bool inv; -}; - -struct nft_cmp16_fast_expr { - struct nft_data data; - struct nft_data mask; - u8 sreg; - u8 len; - bool inv; -}; - -struct nft_payload { - enum nft_payload_bases base: 8; - u8 offset; - u8 len; - u8 dreg; -}; - -struct nft_jumpstack { - const struct nft_rule_dp *rule; -}; - -enum nft_byteorder_ops { - NFT_BYTEORDER_NTOH = 0, - NFT_BYTEORDER_HTON = 1, -}; - -enum nft_byteorder_attributes { - NFTA_BYTEORDER_UNSPEC = 0, - NFTA_BYTEORDER_SREG = 1, - NFTA_BYTEORDER_DREG = 2, - NFTA_BYTEORDER_OP = 3, - NFTA_BYTEORDER_LEN = 4, - NFTA_BYTEORDER_SIZE = 5, - __NFTA_BYTEORDER_MAX = 6, -}; - -struct nft_byteorder { - u8 sreg; - u8 dreg; - enum nft_byteorder_ops op: 8; - u8 len; - u8 size; -}; - -enum nft_set_elem_flags { - NFT_SET_ELEM_INTERVAL_END = 1, - NFT_SET_ELEM_CATCHALL = 2, -}; - -struct nft_rbtree { - struct rb_root root; - rwlock_t lock; - seqcount_rwlock_t count; - long unsigned int last_gc; -}; - -struct nft_rbtree_elem { - struct nft_elem_priv priv; - struct rb_node node; - struct nft_set_ext ext; -}; - -struct xt_entry_match { - union { - struct { - __u16 match_size; - char name[29]; - __u8 revision; - } user; - struct { - __u16 match_size; - struct xt_match *match; - } kernel; - __u16 match_size; - } u; - unsigned char data[0]; -}; - -struct xt_error_target { - struct xt_entry_target target; - char errorname[30]; -}; - -struct xt_counters_info { - char name[32]; - unsigned int num_counters; - struct xt_counters counters[0]; -}; - -struct xt_percpu_counter_alloc_state { - unsigned int off; - const char *mem; -}; - -struct xt_template { - struct list_head list; - int (*table_init)(struct net *); - struct module *me; - char name[32]; -}; - -struct xt_pernet { - struct list_head tables[11]; -}; - -struct xt_af { - struct mutex mutex; - struct list_head match; - struct list_head target; -}; - -struct nf_mttg_trav { - struct list_head *head; - struct list_head *curr; - uint8_t class; -}; - -enum { - MTTG_TRAV_INIT = 0, - MTTG_TRAV_NFP_UNSPEC = 1, - MTTG_TRAV_NFP_SPEC = 2, - MTTG_TRAV_DONE = 3, -}; - -enum xt_connlabel_mtopts { - XT_CONNLABEL_OP_INVERT = 1, - XT_CONNLABEL_OP_SET = 2, -}; - -struct xt_connlabel_mtinfo { - __u16 bit; - __u16 options; -}; - -struct nf_conn_labels { - long unsigned int bits[2]; -}; - -struct gnet_stats_rate_est64 { - __u64 bps; - __u64 pps; -}; - -struct gnet_estimator { - signed char interval; - unsigned char ewma_log; -}; - -enum xt_rateest_match_flags { - XT_RATEEST_MATCH_INVERT = 1, - XT_RATEEST_MATCH_ABS = 2, - XT_RATEEST_MATCH_REL = 4, - XT_RATEEST_MATCH_DELTA = 8, - XT_RATEEST_MATCH_BPS = 16, - XT_RATEEST_MATCH_PPS = 32, -}; - -enum xt_rateest_match_mode { - XT_RATEEST_MATCH_NONE = 0, - XT_RATEEST_MATCH_EQ = 1, - XT_RATEEST_MATCH_LT = 2, - XT_RATEEST_MATCH_GT = 3, -}; - -struct xt_rateest; - -struct xt_rateest_match_info { - char name1[16]; - char name2[16]; - __u16 flags; - __u16 mode; - __u32 bps1; - __u32 pps1; - __u32 bps2; - __u32 pps2; - struct xt_rateest *est1; - struct xt_rateest *est2; -}; - -struct xt_rateest { - struct gnet_stats_basic_sync bstats; - spinlock_t lock; - unsigned int refcnt; - struct hlist_node list; - char name[16]; - struct gnet_estimator params; - struct callback_head rcu; - struct net_rate_estimator *rate_est; - long: 64; -}; - -struct xt_tcpmss_match_info { - __u16 mss_min; - __u16 mss_max; - __u8 invert; -}; - -enum { - IPSET_ERR_NAME = 4352, - IPSET_ERR_LOOP = 4353, - IPSET_ERR_BEFORE = 4354, - IPSET_ERR_NAMEREF = 4355, - IPSET_ERR_LIST_FULL = 4356, - IPSET_ERR_REF_EXIST = 4357, -}; - -struct set_elem { - struct callback_head rcu; - struct list_head list; - struct ip_set *set; - ip_set_id_t id; -}; - -struct set_adt_elem { - ip_set_id_t id; - ip_set_id_t refid; - int before; -}; - -struct list_set { - u32 size; - struct timer_list gc; - struct ip_set *set; - struct net *net; - struct list_head members; -}; - -struct dmabuf_cmsg { - __u64 frag_offset; - __u32 frag_size; - __u32 frag_token; - __u32 dmabuf_id; - __u32 flags; -}; - -struct dmabuf_genpool_chunk_owner; - -struct net_iov { - long unsigned int __unused_padding; - long unsigned int pp_magic; - struct page_pool *pp; - struct dmabuf_genpool_chunk_owner *owner; - long unsigned int dma_addr; - atomic_long_t pp_ref_count; -}; - -struct net_devmem_dmabuf_binding; - -struct dmabuf_genpool_chunk_owner { - long unsigned int base_virtual; - dma_addr_t base_dma_addr; - struct net_iov *niovs; - size_t num_niovs; - struct net_devmem_dmabuf_binding *binding; -}; - -enum { - BPF_SOCK_OPS_RTO_CB_FLAG = 1, - BPF_SOCK_OPS_RETRANS_CB_FLAG = 2, - BPF_SOCK_OPS_STATE_CB_FLAG = 4, - BPF_SOCK_OPS_RTT_CB_FLAG = 8, - BPF_SOCK_OPS_PARSE_ALL_HDR_OPT_CB_FLAG = 16, - BPF_SOCK_OPS_PARSE_UNKNOWN_HDR_OPT_CB_FLAG = 32, - BPF_SOCK_OPS_WRITE_HDR_OPT_CB_FLAG = 64, - BPF_SOCK_OPS_ALL_CB_FLAGS = 127, -}; - -enum { - BPF_TCP_ESTABLISHED = 1, - BPF_TCP_SYN_SENT = 2, - BPF_TCP_SYN_RECV = 3, - BPF_TCP_FIN_WAIT1 = 4, - BPF_TCP_FIN_WAIT2 = 5, - BPF_TCP_TIME_WAIT = 6, - BPF_TCP_CLOSE = 7, - BPF_TCP_CLOSE_WAIT = 8, - BPF_TCP_LAST_ACK = 9, - BPF_TCP_LISTEN = 10, - BPF_TCP_CLOSING = 11, - BPF_TCP_NEW_SYN_RECV = 12, - BPF_TCP_BOUND_INACTIVE = 13, - BPF_TCP_MAX_STATES = 14, -}; - -struct tcpvegas_info { - __u32 tcpv_enabled; - __u32 tcpv_rttcnt; - __u32 tcpv_rtt; - __u32 tcpv_minrtt; -}; - -struct tcp_dctcp_info { - __u16 dctcp_enabled; - __u16 dctcp_ce_state; - __u32 dctcp_alpha; - __u32 dctcp_ab_ecn; - __u32 dctcp_ab_tot; -}; - -struct tcp_bbr_info { - __u32 bbr_bw_lo; - __u32 bbr_bw_hi; - __u32 bbr_min_rtt; - __u32 bbr_pacing_gain; - __u32 bbr_cwnd_gain; -}; - -union tcp_cc_info { - struct tcpvegas_info vegas; - struct tcp_dctcp_info dctcp; - struct tcp_bbr_info bbr; -}; - -enum inet_csk_ack_state_t { - ICSK_ACK_SCHED = 1, - ICSK_ACK_TIMER = 2, - ICSK_ACK_PUSHED = 4, - ICSK_ACK_PUSHED2 = 8, - ICSK_ACK_NOW = 16, - ICSK_ACK_NOMEM = 32, -}; - -enum { - TCP_FLAG_CWR = 32768, - TCP_FLAG_ECE = 16384, - TCP_FLAG_URG = 8192, - TCP_FLAG_ACK = 4096, - TCP_FLAG_PSH = 2048, - TCP_FLAG_RST = 1024, - TCP_FLAG_SYN = 512, - TCP_FLAG_FIN = 256, - TCP_RESERVED_BITS = 15, - TCP_DATA_OFFSET = 240, -}; - -struct tcp_repair_opt { - __u32 opt_code; - __u32 opt_val; -}; - -struct tcp_repair_window { - __u32 snd_wl1; - __u32 snd_wnd; - __u32 max_window; - __u32 rcv_wnd; - __u32 rcv_wup; -}; - -enum { - TCP_NO_QUEUE = 0, - TCP_RECV_QUEUE = 1, - TCP_SEND_QUEUE = 2, - TCP_QUEUES_NR = 3, -}; - -struct tcp_info { - __u8 tcpi_state; - __u8 tcpi_ca_state; - __u8 tcpi_retransmits; - __u8 tcpi_probes; - __u8 tcpi_backoff; - __u8 tcpi_options; - __u8 tcpi_snd_wscale: 4; - __u8 tcpi_rcv_wscale: 4; - __u8 tcpi_delivery_rate_app_limited: 1; - __u8 tcpi_fastopen_client_fail: 2; - __u32 tcpi_rto; - __u32 tcpi_ato; - __u32 tcpi_snd_mss; - __u32 tcpi_rcv_mss; - __u32 tcpi_unacked; - __u32 tcpi_sacked; - __u32 tcpi_lost; - __u32 tcpi_retrans; - __u32 tcpi_fackets; - __u32 tcpi_last_data_sent; - __u32 tcpi_last_ack_sent; - __u32 tcpi_last_data_recv; - __u32 tcpi_last_ack_recv; - __u32 tcpi_pmtu; - __u32 tcpi_rcv_ssthresh; - __u32 tcpi_rtt; - __u32 tcpi_rttvar; - __u32 tcpi_snd_ssthresh; - __u32 tcpi_snd_cwnd; - __u32 tcpi_advmss; - __u32 tcpi_reordering; - __u32 tcpi_rcv_rtt; - __u32 tcpi_rcv_space; - __u32 tcpi_total_retrans; - __u64 tcpi_pacing_rate; - __u64 tcpi_max_pacing_rate; - __u64 tcpi_bytes_acked; - __u64 tcpi_bytes_received; - __u32 tcpi_segs_out; - __u32 tcpi_segs_in; - __u32 tcpi_notsent_bytes; - __u32 tcpi_min_rtt; - __u32 tcpi_data_segs_in; - __u32 tcpi_data_segs_out; - __u64 tcpi_delivery_rate; - __u64 tcpi_busy_time; - __u64 tcpi_rwnd_limited; - __u64 tcpi_sndbuf_limited; - __u32 tcpi_delivered; - __u32 tcpi_delivered_ce; - __u64 tcpi_bytes_sent; - __u64 tcpi_bytes_retrans; - __u32 tcpi_dsack_dups; - __u32 tcpi_reord_seen; - __u32 tcpi_rcv_ooopack; - __u32 tcpi_snd_wnd; - __u32 tcpi_rcv_wnd; - __u32 tcpi_rehash; - __u16 tcpi_total_rto; - __u16 tcpi_total_rto_recoveries; - __u32 tcpi_total_rto_time; -}; - -enum { - TCP_NLA_PAD = 0, - TCP_NLA_BUSY = 1, - TCP_NLA_RWND_LIMITED = 2, - TCP_NLA_SNDBUF_LIMITED = 3, - TCP_NLA_DATA_SEGS_OUT = 4, - TCP_NLA_TOTAL_RETRANS = 5, - TCP_NLA_PACING_RATE = 6, - TCP_NLA_DELIVERY_RATE = 7, - TCP_NLA_SND_CWND = 8, - TCP_NLA_REORDERING = 9, - TCP_NLA_MIN_RTT = 10, - TCP_NLA_RECUR_RETRANS = 11, - TCP_NLA_DELIVERY_RATE_APP_LMT = 12, - TCP_NLA_SNDQ_SIZE = 13, - TCP_NLA_CA_STATE = 14, - TCP_NLA_SND_SSTHRESH = 15, - TCP_NLA_DELIVERED = 16, - TCP_NLA_DELIVERED_CE = 17, - TCP_NLA_BYTES_SENT = 18, - TCP_NLA_BYTES_RETRANS = 19, - TCP_NLA_DSACK_DUPS = 20, - TCP_NLA_REORD_SEEN = 21, - TCP_NLA_SRTT = 22, - TCP_NLA_TIMEOUT_REHASH = 23, - TCP_NLA_BYTES_NOTSENT = 24, - TCP_NLA_EDT = 25, - TCP_NLA_TTL = 26, - TCP_NLA_REHASH = 27, -}; - -struct tcp_zerocopy_receive { - __u64 address; - __u32 length; - __u32 recv_skip_hint; - __u32 inq; - __s32 err; - __u64 copybuf_address; - __s32 copybuf_len; - __u32 flags; - __u64 msg_control; - __u64 msg_controllen; - __u32 msg_flags; - __u32 reserved; -}; - -union tcp_ao_addr { - struct in_addr a4; - struct in6_addr a6; -}; - -struct tcp_ao_hdr { - u8 kind; - u8 length; - u8 keyid; - u8 rnext_keyid; -}; - -struct tcp_md5sig_key { - struct hlist_node node; - u8 keylen; - u8 family; - u8 prefixlen; - u8 flags; - union tcp_ao_addr addr; - int l3index; - u8 key[80]; - struct callback_head rcu; -}; - -enum tcp_chrono { - TCP_CHRONO_UNSPEC = 0, - TCP_CHRONO_BUSY = 1, - TCP_CHRONO_RWND_LIMITED = 2, - TCP_CHRONO_SNDBUF_LIMITED = 3, - __TCP_CHRONO_MAX = 4, -}; - -struct rps_sock_flow_table { - u32 mask; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - u32 ents[0]; -}; - -struct net_devmem_dmabuf_binding { - struct dma_buf *dmabuf; - struct dma_buf_attachment *attachment; - struct sg_table *sgt; - struct net_device *dev; - struct gen_pool *chunk_pool; - refcount_t ref; - struct list_head list; - struct xarray bound_rxqs; - u32 id; -}; - -enum { - TCP_CMSG_INQ = 1, - TCP_CMSG_TS = 2, -}; - -struct tcp_splice_state { - struct pipe_inode_info *pipe; - size_t len; - unsigned int flags; -}; - -struct tcp_xa_pool { - u8 max; - u8 idx; - __u32 tokens[17]; - netmem_ref netmems[17]; -}; - -struct ip_mreq_source { - __be32 imr_multiaddr; - __be32 imr_interface; - __be32 imr_sourceaddr; -}; - -struct ip_msfilter { - __be32 imsf_multiaddr; - __be32 imsf_interface; - __u32 imsf_fmode; - __u32 imsf_numsrc; - union { - __be32 imsf_slist[1]; - struct { - struct {} __empty_imsf_slist_flex; - __be32 imsf_slist_flex[0]; - }; - }; -}; - -struct group_filter { - union { - struct { - __u32 gf_interface_aux; - struct __kernel_sockaddr_storage gf_group_aux; - __u32 gf_fmode_aux; - __u32 gf_numsrc_aux; - struct __kernel_sockaddr_storage gf_slist[1]; - }; - struct { - __u32 gf_interface; - struct __kernel_sockaddr_storage gf_group; - __u32 gf_fmode; - __u32 gf_numsrc; - struct __kernel_sockaddr_storage gf_slist_flex[0]; - }; - }; -}; - -struct igmphdr { - __u8 type; - __u8 code; - __sum16 csum; - __be32 group; -}; - -struct igmpv3_grec { - __u8 grec_type; - __u8 grec_auxwords; - __be16 grec_nsrcs; - __be32 grec_mca; - __be32 grec_src[0]; -}; - -struct igmpv3_report { - __u8 type; - __u8 resv1; - __sum16 csum; - __be16 resv2; - __be16 ngrec; - struct igmpv3_grec grec[0]; -}; - -struct igmpv3_query { - __u8 type; - __u8 code; - __sum16 csum; - __be32 group; - __u8 qrv: 3; - __u8 suppress: 1; - __u8 resv: 4; - __u8 qqic; - __be16 nsrcs; - __be32 srcs[0]; -}; - -struct igmp_mc_iter_state { - struct seq_net_private p; - struct net_device *dev; - struct in_device *in_dev; -}; - -struct igmp_mcf_iter_state { - struct seq_net_private p; - struct net_device *dev; - struct in_device *idev; - struct ip_mc_list *im; -}; - -enum { - ETHTOOL_A_TUNNEL_UDP_ENTRY_UNSPEC = 0, - ETHTOOL_A_TUNNEL_UDP_ENTRY_PORT = 1, - ETHTOOL_A_TUNNEL_UDP_ENTRY_TYPE = 2, - __ETHTOOL_A_TUNNEL_UDP_ENTRY_CNT = 3, - ETHTOOL_A_TUNNEL_UDP_ENTRY_MAX = 2, -}; - -enum { - ETHTOOL_A_TUNNEL_UDP_TABLE_UNSPEC = 0, - ETHTOOL_A_TUNNEL_UDP_TABLE_SIZE = 1, - ETHTOOL_A_TUNNEL_UDP_TABLE_TYPES = 2, - ETHTOOL_A_TUNNEL_UDP_TABLE_ENTRY = 3, - __ETHTOOL_A_TUNNEL_UDP_TABLE_CNT = 4, - ETHTOOL_A_TUNNEL_UDP_TABLE_MAX = 3, -}; - -struct udp_tunnel_nic_table_entry; - -struct udp_tunnel_nic { - struct work_struct work; - struct net_device *dev; - u8 need_sync: 1; - u8 need_replay: 1; - u8 work_pending: 1; - unsigned int n_tables; - long unsigned int missed; - struct udp_tunnel_nic_table_entry *entries[0]; -}; - -enum udp_parsable_tunnel_type { - UDP_TUNNEL_TYPE_VXLAN = 1, - UDP_TUNNEL_TYPE_GENEVE = 2, - UDP_TUNNEL_TYPE_VXLAN_GPE = 4, -}; - -enum udp_tunnel_nic_info_flags { - UDP_TUNNEL_NIC_INFO_MAY_SLEEP = 1, - UDP_TUNNEL_NIC_INFO_OPEN_ONLY = 2, - UDP_TUNNEL_NIC_INFO_IPV4_ONLY = 4, - UDP_TUNNEL_NIC_INFO_STATIC_IANA_VXLAN = 8, -}; - -struct udp_tunnel_nic_shared_node { - struct net_device *dev; - struct list_head list; -}; - -struct udp_tunnel_nic_ops { - void (*get_port)(struct net_device *, unsigned int, unsigned int, struct udp_tunnel_info *); - void (*set_port_priv)(struct net_device *, unsigned int, unsigned int, u8); - void (*add_port)(struct net_device *, struct udp_tunnel_info *); - void (*del_port)(struct net_device *, struct udp_tunnel_info *); - void (*reset_ntf)(struct net_device *); - size_t (*dump_size)(struct net_device *, unsigned int); - int (*dump_write)(struct net_device *, unsigned int, struct sk_buff *); -}; - -enum udp_tunnel_nic_table_entry_flags { - UDP_TUNNEL_NIC_ENTRY_ADD = 1, - UDP_TUNNEL_NIC_ENTRY_DEL = 2, - UDP_TUNNEL_NIC_ENTRY_OP_FAIL = 4, - UDP_TUNNEL_NIC_ENTRY_FROZEN = 8, -}; - -struct udp_tunnel_nic_table_entry { - __be16 port; - u8 type; - u8 flags; - u16 use_cnt; - u8 hw_priv; -}; - -enum unix_vertex_index { - UNIX_VERTEX_INDEX_MARK1 = 0, - UNIX_VERTEX_INDEX_MARK2 = 1, - UNIX_VERTEX_INDEX_START = 2, -}; - -struct ip6_mtuinfo { - struct sockaddr_in6 ip6m_addr; - __u32 ip6m_mtu; -}; - -struct in_pktinfo { - int ipi_ifindex; - struct in_addr ipi_spec_dst; - struct in_addr ipi_addr; -}; - -struct static_key_false_deferred { - struct static_key_false key; - long unsigned int timeout; - struct delayed_work work; -}; - -struct frag_hdr { - __u8 nexthdr; - __u8 reserved; - __be16 frag_off; - __be32 identification; -}; - -struct xt_get_revision { - char name[29]; - __u8 revision; -}; - -struct ip6t_standard { - struct ip6t_entry entry; - struct xt_standard_target target; -}; - -struct ip6t_error { - struct ip6t_entry entry; - struct xt_error_target target; -}; - -struct ip6t_getinfo { - char name[32]; - unsigned int valid_hooks; - unsigned int hook_entry[5]; - unsigned int underflow[5]; - unsigned int num_entries; - unsigned int size; -}; - -struct ip6t_get_entries { - char name[32]; - unsigned int size; - struct ip6t_entry entrytable[0]; -}; - -enum nf_ip_trace_comments { - NF_IP6_TRACE_COMMENT_RULE = 0, - NF_IP6_TRACE_COMMENT_RETURN = 1, - NF_IP6_TRACE_COMMENT_POLICY = 2, -}; - -struct ip6t_npt_tginfo { - union nf_inet_addr src_pfx; - union nf_inet_addr dst_pfx; - __u8 src_pfx_len; - __u8 dst_pfx_len; - __sum16 adjustment; -}; - -struct hop_jumbo_hdr { - u8 nexthdr; - u8 hdrlen; - u8 tlv_type; - u8 tlv_len; - __be32 jumbo_payload_len; -}; - -struct netdev_nested_priv { - unsigned char flags; - void *data; -}; - -struct mac_addr___2 { - unsigned char addr[6]; -}; - -typedef struct mac_addr___2 mac_addr; - -enum { - BR_VLFLAG_PER_PORT_STATS = 1, - BR_VLFLAG_ADDED_BY_SWITCHDEV = 2, - BR_VLFLAG_MCAST_ENABLED = 4, - BR_VLFLAG_GLOBAL_MCAST_ENABLED = 8, - BR_VLFLAG_NEIGH_SUPPRESS_ENABLED = 16, -}; - -struct net_bridge_fdb_key { - mac_addr addr; - u16 vlan_id; -}; - -struct net_bridge_fdb_entry { - struct rhash_head rhnode; - struct net_bridge_port *dst; - struct net_bridge_fdb_key key; - struct hlist_node fdb_node; - long unsigned int flags; - long: 64; - long: 64; - long unsigned int updated; - long unsigned int used; - struct callback_head rcu; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct br_vlan_msg { - __u8 family; - __u8 reserved1; - __u16 reserved2; - __u32 ifindex; -}; - -enum { - BRIDGE_VLANDB_UNSPEC = 0, - BRIDGE_VLANDB_ENTRY = 1, - BRIDGE_VLANDB_GLOBAL_OPTIONS = 2, - __BRIDGE_VLANDB_MAX = 3, -}; - -enum { - BRIDGE_VLANDB_ENTRY_UNSPEC = 0, - BRIDGE_VLANDB_ENTRY_INFO = 1, - BRIDGE_VLANDB_ENTRY_RANGE = 2, - BRIDGE_VLANDB_ENTRY_STATE = 3, - BRIDGE_VLANDB_ENTRY_TUNNEL_INFO = 4, - BRIDGE_VLANDB_ENTRY_STATS = 5, - BRIDGE_VLANDB_ENTRY_MCAST_ROUTER = 6, - BRIDGE_VLANDB_ENTRY_MCAST_N_GROUPS = 7, - BRIDGE_VLANDB_ENTRY_MCAST_MAX_GROUPS = 8, - BRIDGE_VLANDB_ENTRY_NEIGH_SUPPRESS = 9, - __BRIDGE_VLANDB_ENTRY_MAX = 10, -}; - -enum { - BRIDGE_VLANDB_TINFO_UNSPEC = 0, - BRIDGE_VLANDB_TINFO_ID = 1, - BRIDGE_VLANDB_TINFO_CMD = 2, - __BRIDGE_VLANDB_TINFO_MAX = 3, -}; - -enum { - BRIDGE_VLANDB_GOPTS_UNSPEC = 0, - BRIDGE_VLANDB_GOPTS_ID = 1, - BRIDGE_VLANDB_GOPTS_RANGE = 2, - BRIDGE_VLANDB_GOPTS_MCAST_SNOOPING = 3, - BRIDGE_VLANDB_GOPTS_MCAST_IGMP_VERSION = 4, - BRIDGE_VLANDB_GOPTS_MCAST_MLD_VERSION = 5, - BRIDGE_VLANDB_GOPTS_MCAST_LAST_MEMBER_CNT = 6, - BRIDGE_VLANDB_GOPTS_MCAST_STARTUP_QUERY_CNT = 7, - BRIDGE_VLANDB_GOPTS_MCAST_LAST_MEMBER_INTVL = 8, - BRIDGE_VLANDB_GOPTS_PAD = 9, - BRIDGE_VLANDB_GOPTS_MCAST_MEMBERSHIP_INTVL = 10, - BRIDGE_VLANDB_GOPTS_MCAST_QUERIER_INTVL = 11, - BRIDGE_VLANDB_GOPTS_MCAST_QUERY_INTVL = 12, - BRIDGE_VLANDB_GOPTS_MCAST_QUERY_RESPONSE_INTVL = 13, - BRIDGE_VLANDB_GOPTS_MCAST_STARTUP_QUERY_INTVL = 14, - BRIDGE_VLANDB_GOPTS_MCAST_QUERIER = 15, - BRIDGE_VLANDB_GOPTS_MCAST_ROUTER_PORTS = 16, - BRIDGE_VLANDB_GOPTS_MCAST_QUERIER_STATE = 17, - BRIDGE_VLANDB_GOPTS_MSTI = 18, - __BRIDGE_VLANDB_GOPTS_MAX = 19, -}; - -enum { - MDB_RTR_TYPE_DISABLED = 0, - MDB_RTR_TYPE_TEMP_QUERY = 1, - MDB_RTR_TYPE_PERM = 2, - MDB_RTR_TYPE_TEMP = 3, -}; - -typedef __be32 rpc_fraghdr; - -struct xdr_skb_reader { - struct sk_buff *skb; - unsigned int offset; - size_t count; - __wsum csum; -}; - -typedef size_t (*xdr_skb_read_actor)(struct xdr_skb_reader *, void *, size_t); - -struct xdr_array2_desc; - -typedef int (*xdr_xcode_elem_t)(struct xdr_array2_desc *, void *); - -struct xdr_array2_desc { - unsigned int elem_size; - unsigned int array_len; - unsigned int array_maxlen; - xdr_xcode_elem_t xcode; -}; - -enum rpc_gss_proc { - RPC_GSS_PROC_DATA = 0, - RPC_GSS_PROC_INIT = 1, - RPC_GSS_PROC_CONTINUE_INIT = 2, - RPC_GSS_PROC_DESTROY = 3, -}; - -enum rpc_gss_svc { - RPC_GSS_SVC_NONE = 1, - RPC_GSS_SVC_INTEGRITY = 2, - RPC_GSS_SVC_PRIVACY = 3, -}; - -struct rpc_gss_wire_cred { - u32 gc_v; - u32 gc_proc; - u32 gc_seq; - u32 gc_svc; - struct xdr_netobj gc_ctx; -}; - -struct gss_cl_ctx { - refcount_t count; - enum rpc_gss_proc gc_proc; - u32 gc_seq; - u32 gc_seq_xmit; - spinlock_t gc_seq_lock; - struct gss_ctx *gc_gss_ctx; - struct xdr_netobj gc_wire_ctx; - struct xdr_netobj gc_acceptor; - u32 gc_win; - long unsigned int gc_expiry; - struct callback_head gc_rcu; -}; - -struct gss_upcall_msg; - -struct gss_cred { - struct rpc_cred gc_base; - enum rpc_gss_svc gc_service; - struct gss_cl_ctx *gc_ctx; - struct gss_upcall_msg *gc_upcall; - const char *gc_principal; - long unsigned int gc_upcall_timestamp; -}; - -struct trace_event_raw_rpcgss_gssapi_event { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - u32 maj_stat; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_import_ctx { - struct trace_entry ent; - int status; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_ctx_class { - struct trace_entry ent; - const void *cred; - long unsigned int service; - u32 __data_loc_principal; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_svc_gssapi_class { - struct trace_entry ent; - u32 xid; - u32 maj_stat; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_svc_wrap_failed { - struct trace_entry ent; - u32 xid; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_svc_unwrap_failed { - struct trace_entry ent; - u32 xid; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_svc_seqno_bad { - struct trace_entry ent; - u32 expected; - u32 received; - u32 xid; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_svc_accept_upcall { - struct trace_entry ent; - u32 minor_status; - long unsigned int major_status; - u32 xid; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_svc_authenticate { - struct trace_entry ent; - u32 seqno; - u32 xid; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_unwrap_failed { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_bad_seqno { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - u32 expected; - u32 received; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_seqno { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - u32 xid; - u32 seqno; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_need_reencode { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - u32 xid; - u32 seq_xmit; - u32 seqno; - bool ret; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_update_slack { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - u32 xid; - const void *auth; - unsigned int rslack; - unsigned int ralign; - unsigned int verfsize; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_svc_seqno_class { - struct trace_entry ent; - u32 xid; - u32 seqno; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_svc_seqno_low { - struct trace_entry ent; - u32 xid; - u32 seqno; - u32 min; - u32 max; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_upcall_msg { - struct trace_entry ent; - u32 __data_loc_msg; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_upcall_result { - struct trace_entry ent; - u32 uid; - int result; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_context { - struct trace_entry ent; - long unsigned int expiry; - long unsigned int now; - unsigned int timeout; - u32 window_size; - int len; - u32 __data_loc_acceptor; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_createauth { - struct trace_entry ent; - unsigned int flavor; - int error; - char __data[0]; -}; - -struct trace_event_raw_rpcgss_oid_to_mech { - struct trace_entry ent; - u32 __data_loc_oid; - char __data[0]; -}; - -struct trace_event_data_offsets_rpcgss_gssapi_event {}; - -struct trace_event_data_offsets_rpcgss_import_ctx {}; - -struct trace_event_data_offsets_rpcgss_ctx_class { - u32 principal; - const void *principal_ptr_; -}; - -struct trace_event_data_offsets_rpcgss_svc_gssapi_class { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_rpcgss_svc_wrap_failed { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_rpcgss_svc_unwrap_failed { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_rpcgss_svc_seqno_bad { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_rpcgss_svc_accept_upcall { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_rpcgss_svc_authenticate { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_rpcgss_unwrap_failed {}; - -struct trace_event_data_offsets_rpcgss_bad_seqno {}; - -struct trace_event_data_offsets_rpcgss_seqno {}; - -struct trace_event_data_offsets_rpcgss_need_reencode {}; - -struct trace_event_data_offsets_rpcgss_update_slack {}; - -struct trace_event_data_offsets_rpcgss_svc_seqno_class {}; - -struct trace_event_data_offsets_rpcgss_svc_seqno_low {}; - -struct trace_event_data_offsets_rpcgss_upcall_msg { - u32 msg; - const void *msg_ptr_; -}; - -struct trace_event_data_offsets_rpcgss_upcall_result {}; - -struct trace_event_data_offsets_rpcgss_context { - u32 acceptor; - const void *acceptor_ptr_; -}; - -struct trace_event_data_offsets_rpcgss_createauth {}; - -struct trace_event_data_offsets_rpcgss_oid_to_mech { - u32 oid; - const void *oid_ptr_; -}; - -typedef void (*btf_trace_rpcgss_import_ctx)(void *, int); - -typedef void (*btf_trace_rpcgss_get_mic)(void *, const struct rpc_task *, u32); - -typedef void (*btf_trace_rpcgss_verify_mic)(void *, const struct rpc_task *, u32); - -typedef void (*btf_trace_rpcgss_wrap)(void *, const struct rpc_task *, u32); - -typedef void (*btf_trace_rpcgss_unwrap)(void *, const struct rpc_task *, u32); - -typedef void (*btf_trace_rpcgss_ctx_init)(void *, const struct gss_cred *); - -typedef void (*btf_trace_rpcgss_ctx_destroy)(void *, const struct gss_cred *); - -typedef void (*btf_trace_rpcgss_svc_wrap)(void *, const struct svc_rqst *, u32); - -typedef void (*btf_trace_rpcgss_svc_unwrap)(void *, const struct svc_rqst *, u32); - -typedef void (*btf_trace_rpcgss_svc_mic)(void *, const struct svc_rqst *, u32); - -typedef void (*btf_trace_rpcgss_svc_get_mic)(void *, const struct svc_rqst *, u32); - -typedef void (*btf_trace_rpcgss_svc_wrap_failed)(void *, const struct svc_rqst *); - -typedef void (*btf_trace_rpcgss_svc_unwrap_failed)(void *, const struct svc_rqst *); - -typedef void (*btf_trace_rpcgss_svc_seqno_bad)(void *, const struct svc_rqst *, u32, u32); - -typedef void (*btf_trace_rpcgss_svc_accept_upcall)(void *, const struct svc_rqst *, u32, u32); - -typedef void (*btf_trace_rpcgss_svc_authenticate)(void *, const struct svc_rqst *, const struct rpc_gss_wire_cred *); - -typedef void (*btf_trace_rpcgss_unwrap_failed)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpcgss_bad_seqno)(void *, const struct rpc_task *, u32, u32); - -typedef void (*btf_trace_rpcgss_seqno)(void *, const struct rpc_task *); - -typedef void (*btf_trace_rpcgss_need_reencode)(void *, const struct rpc_task *, u32, bool); - -typedef void (*btf_trace_rpcgss_update_slack)(void *, const struct rpc_task *, const struct rpc_auth *); - -typedef void (*btf_trace_rpcgss_svc_seqno_large)(void *, const struct svc_rqst *, u32); - -typedef void (*btf_trace_rpcgss_svc_seqno_seen)(void *, const struct svc_rqst *, u32); - -typedef void (*btf_trace_rpcgss_svc_seqno_low)(void *, const struct svc_rqst *, u32, u32, u32); - -typedef void (*btf_trace_rpcgss_upcall_msg)(void *, const char *); - -typedef void (*btf_trace_rpcgss_upcall_result)(void *, u32, int); - -typedef void (*btf_trace_rpcgss_context)(void *, u32, long unsigned int, long unsigned int, unsigned int, unsigned int, const u8 *); - -typedef void (*btf_trace_rpcgss_createauth)(void *, unsigned int, int); - -typedef void (*btf_trace_rpcgss_oid_to_mech)(void *, const char *); - -enum sctp_spp_flags { - SPP_HB_ENABLE = 1, - SPP_HB_DISABLE = 2, - SPP_HB = 3, - SPP_HB_DEMAND = 4, - SPP_PMTUD_ENABLE = 8, - SPP_PMTUD_DISABLE = 16, - SPP_PMTUD = 24, - SPP_SACKDELAY_ENABLE = 32, - SPP_SACKDELAY_DISABLE = 64, - SPP_SACKDELAY = 96, - SPP_HB_TIME_IS_ZERO = 128, - SPP_IPV6_FLOWLABEL = 256, - SPP_DSCP = 512, -}; - -enum sctp_plpmtud_state { - SCTP_PL_DISABLED = 0, - SCTP_PL_BASE = 1, - SCTP_PL_SEARCH = 2, - SCTP_PL_COMPLETE = 3, - SCTP_PL_ERROR = 4, -}; - -enum sctp_xmit { - SCTP_XMIT_OK = 0, - SCTP_XMIT_PMTU_FULL = 1, - SCTP_XMIT_RWND_FULL = 2, - SCTP_XMIT_DELAY = 3, -}; - -struct sctp_output_cb { - struct sk_buff *last; -}; - -struct old_timeval32 { - old_time32_t tv_sec; - s32 tv_usec; -}; - -enum { - TLS_NO_KEYRING = 0, - TLS_NO_PEERID = 0, - TLS_NO_CERT = 0, - TLS_NO_PRIVKEY = 0, -}; - -typedef void (*tls_done_func_t)(void *, int, key_serial_t); - -struct tls_handshake_args { - struct socket *ta_sock; - tls_done_func_t ta_done; - void *ta_data; - const char *ta_peername; - unsigned int ta_timeout_ms; - key_serial_t ta_keyring; - key_serial_t ta_my_cert; - key_serial_t ta_my_privkey; - unsigned int ta_num_peerids; - key_serial_t ta_my_peerids[5]; -}; - -enum { - TLS_ALERT_LEVEL_WARNING = 1, - TLS_ALERT_LEVEL_FATAL = 2, -}; - -enum { - TLS_ALERT_DESC_CLOSE_NOTIFY = 0, - TLS_ALERT_DESC_UNEXPECTED_MESSAGE = 10, - TLS_ALERT_DESC_BAD_RECORD_MAC = 20, - TLS_ALERT_DESC_RECORD_OVERFLOW = 22, - TLS_ALERT_DESC_HANDSHAKE_FAILURE = 40, - TLS_ALERT_DESC_BAD_CERTIFICATE = 42, - TLS_ALERT_DESC_UNSUPPORTED_CERTIFICATE = 43, - TLS_ALERT_DESC_CERTIFICATE_REVOKED = 44, - TLS_ALERT_DESC_CERTIFICATE_EXPIRED = 45, - TLS_ALERT_DESC_CERTIFICATE_UNKNOWN = 46, - TLS_ALERT_DESC_ILLEGAL_PARAMETER = 47, - TLS_ALERT_DESC_UNKNOWN_CA = 48, - TLS_ALERT_DESC_ACCESS_DENIED = 49, - TLS_ALERT_DESC_DECODE_ERROR = 50, - TLS_ALERT_DESC_DECRYPT_ERROR = 51, - TLS_ALERT_DESC_TOO_MANY_CIDS_REQUESTED = 52, - TLS_ALERT_DESC_PROTOCOL_VERSION = 70, - TLS_ALERT_DESC_INSUFFICIENT_SECURITY = 71, - TLS_ALERT_DESC_INTERNAL_ERROR = 80, - TLS_ALERT_DESC_INAPPROPRIATE_FALLBACK = 86, - TLS_ALERT_DESC_USER_CANCELED = 90, - TLS_ALERT_DESC_MISSING_EXTENSION = 109, - TLS_ALERT_DESC_UNSUPPORTED_EXTENSION = 110, - TLS_ALERT_DESC_UNRECOGNIZED_NAME = 112, - TLS_ALERT_DESC_BAD_CERTIFICATE_STATUS_RESPONSE = 113, - TLS_ALERT_DESC_UNKNOWN_PSK_IDENTITY = 115, - TLS_ALERT_DESC_CERTIFICATE_REQUIRED = 116, - TLS_ALERT_DESC_NO_APPLICATION_PROTOCOL = 120, -}; - -enum handshake_handler_class { - HANDSHAKE_HANDLER_CLASS_NONE = 0, - HANDSHAKE_HANDLER_CLASS_TLSHD = 1, - HANDSHAKE_HANDLER_CLASS_MAX = 2, -}; - -enum handshake_msg_type { - HANDSHAKE_MSG_TYPE_UNSPEC = 0, - HANDSHAKE_MSG_TYPE_CLIENTHELLO = 1, - HANDSHAKE_MSG_TYPE_SERVERHELLO = 2, -}; - -enum handshake_auth { - HANDSHAKE_AUTH_UNSPEC = 0, - HANDSHAKE_AUTH_UNAUTH = 1, - HANDSHAKE_AUTH_PSK = 2, - HANDSHAKE_AUTH_X509 = 3, -}; - -enum { - HANDSHAKE_A_X509_CERT = 1, - HANDSHAKE_A_X509_PRIVKEY = 2, - __HANDSHAKE_A_X509_MAX = 3, - HANDSHAKE_A_X509_MAX = 2, -}; - -enum { - HANDSHAKE_A_ACCEPT_SOCKFD = 1, - HANDSHAKE_A_ACCEPT_HANDLER_CLASS = 2, - HANDSHAKE_A_ACCEPT_MESSAGE_TYPE = 3, - HANDSHAKE_A_ACCEPT_TIMEOUT = 4, - HANDSHAKE_A_ACCEPT_AUTH_MODE = 5, - HANDSHAKE_A_ACCEPT_PEER_IDENTITY = 6, - HANDSHAKE_A_ACCEPT_CERTIFICATE = 7, - HANDSHAKE_A_ACCEPT_PEERNAME = 8, - __HANDSHAKE_A_ACCEPT_MAX = 9, - HANDSHAKE_A_ACCEPT_MAX = 8, -}; - -enum { - HANDSHAKE_A_DONE_STATUS = 1, - HANDSHAKE_A_DONE_SOCKFD = 2, - HANDSHAKE_A_DONE_REMOTE_AUTH = 3, - __HANDSHAKE_A_DONE_MAX = 4, - HANDSHAKE_A_DONE_MAX = 3, -}; - -struct handshake_proto; - -struct handshake_req { - struct list_head hr_list; - struct rhash_head hr_rhash; - long unsigned int hr_flags; - const struct handshake_proto *hr_proto; - struct sock *hr_sk; - void (*hr_odestruct)(struct sock *); - char hr_priv[0]; -}; - -struct handshake_proto { - int hp_handler_class; - size_t hp_privsize; - long unsigned int hp_flags; - int (*hp_accept)(struct handshake_req *, struct genl_info *, int); - void (*hp_done)(struct handshake_req *, unsigned int, struct genl_info *); - void (*hp_destroy)(struct handshake_req *); -}; - -enum hr_flags_bits { - HANDSHAKE_F_REQ_COMPLETED = 0, - HANDSHAKE_F_REQ_SESSION = 1, -}; - -enum hp_flags_bits { - HANDSHAKE_F_PROTO_NOTIFY = 0, -}; - -struct tls_handshake_req { - void (*th_consumer_done)(void *, int, key_serial_t); - void *th_consumer_data; - int th_type; - unsigned int th_timeout_ms; - int th_auth_mode; - const char *th_peername; - key_serial_t th_keyring; - key_serial_t th_certificate; - key_serial_t th_privkey; - unsigned int th_num_peerids; - key_serial_t th_peerid[5]; -}; - -struct ghash_key { - be128 k; - u64 h[0]; -}; - -struct ghash_desc_ctx { - u64 digest[2]; - u8 buf[16]; - u32 count; -}; - -struct gcm_aes_ctx { - struct crypto_aes_ctx aes_key; - u8 nonce[4]; - struct ghash_key ghash_key; -}; - -typedef struct { - unsigned int __softirq_pending; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -} irq_cpustat_t; - -struct softirq_action { - void (*action)(void); -}; - -struct trace_event_raw_irq_handler_entry { - struct trace_entry ent; - int irq; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_irq_handler_exit { - struct trace_entry ent; - int irq; - int ret; - char __data[0]; -}; - -struct trace_event_raw_softirq { - struct trace_entry ent; - unsigned int vec; - char __data[0]; -}; - -struct trace_event_raw_tasklet { - struct trace_entry ent; - void *tasklet; - void *func; - char __data[0]; -}; - -struct trace_event_data_offsets_irq_handler_entry { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_irq_handler_exit {}; - -struct trace_event_data_offsets_softirq {}; - -struct trace_event_data_offsets_tasklet {}; - -typedef void (*btf_trace_irq_handler_entry)(void *, int, struct irqaction *); - -typedef void (*btf_trace_irq_handler_exit)(void *, int, struct irqaction *, int); - -typedef void (*btf_trace_softirq_entry)(void *, unsigned int); - -typedef void (*btf_trace_softirq_exit)(void *, unsigned int); - -typedef void (*btf_trace_softirq_raise)(void *, unsigned int); - -typedef void (*btf_trace_tasklet_entry)(void *, struct tasklet_struct *, void *); - -typedef void (*btf_trace_tasklet_exit)(void *, struct tasklet_struct *, void *); - -struct tasklet_head { - struct tasklet_struct *head; - struct tasklet_struct **tail; -}; - -struct pm_qos_request { - struct plist_node node; - struct pm_qos_constraints *qos; -}; - -enum pm_qos_req_action { - PM_QOS_ADD_REQ = 0, - PM_QOS_UPDATE_REQ = 1, - PM_QOS_REMOVE_REQ = 2, -}; - -struct irq_devres { - unsigned int irq; - void *dev_id; -}; - -struct irq_desc_devres { - unsigned int from; - unsigned int cnt; -}; - -enum cc_attr { - CC_ATTR_MEM_ENCRYPT = 0, - CC_ATTR_HOST_MEM_ENCRYPT = 1, - CC_ATTR_GUEST_MEM_ENCRYPT = 2, - CC_ATTR_GUEST_STATE_ENCRYPT = 3, - CC_ATTR_GUEST_UNROLL_STRING_IO = 4, - CC_ATTR_GUEST_SEV_SNP = 5, - CC_ATTR_HOST_SEV_SNP = 6, -}; - -struct io_tlb_area { - long unsigned int used; - unsigned int index; - spinlock_t lock; -}; - -struct io_tlb_slot { - phys_addr_t orig_addr; - size_t alloc_size; - short unsigned int list; - short unsigned int pad_slots; -}; - -struct trace_event_raw_swiotlb_bounced { - struct trace_entry ent; - u32 __data_loc_dev_name; - u64 dma_mask; - dma_addr_t dev_addr; - size_t size; - bool force; - char __data[0]; -}; - -struct trace_event_data_offsets_swiotlb_bounced { - u32 dev_name; - const void *dev_name_ptr_; -}; - -typedef void (*btf_trace_swiotlb_bounced)(void *, struct device *, dma_addr_t, size_t); - -enum clocksource_ids { - CSID_GENERIC = 0, - CSID_ARM_ARCH_COUNTER = 1, - CSID_X86_TSC_EARLY = 2, - CSID_X86_TSC = 3, - CSID_X86_KVM_CLK = 4, - CSID_X86_ART = 5, - CSID_MAX = 6, -}; - -struct clocksource_base; - -struct clocksource { - u64 (*read)(struct clocksource *); - u64 mask; - u32 mult; - u32 shift; - u64 max_idle_ns; - u32 maxadj; - u32 uncertainty_margin; - u64 max_cycles; - u64 max_raw_delta; - const char *name; - struct list_head list; - u32 freq_khz; - int rating; - enum clocksource_ids id; - enum vdso_clock_mode vdso_clock_mode; - long unsigned int flags; - struct clocksource_base *base; - int (*enable)(struct clocksource *); - void (*disable)(struct clocksource *); - void (*suspend)(struct clocksource *); - void (*resume)(struct clocksource *); - void (*mark_unstable)(struct clocksource *); - void (*tick_stable)(struct clocksource *); - struct module *owner; -}; - -struct clocksource_base { - enum clocksource_ids id; - u32 freq_khz; - u64 offset; - u32 numerator; - u32 denominator; -}; - -struct clock_read_data { - u64 epoch_ns; - u64 epoch_cyc; - u64 sched_clock_mask; - u64 (*read_sched_clock)(void); - u32 mult; - u32 shift; -}; - -struct clock_data { - seqcount_latch_t seq; - struct clock_read_data read_data[2]; - ktime_t wrap_kt; - long unsigned int rate; - u64 (*actual_read_sched_clock)(void); -}; - -struct tk_read_base { - struct clocksource *clock; - u64 mask; - u64 cycle_last; - u32 mult; - u32 shift; - u64 xtime_nsec; - ktime_t base; - u64 base_real; -}; - -struct timekeeper { - struct tk_read_base tkr_mono; - struct tk_read_base tkr_raw; - u64 xtime_sec; - long unsigned int ktime_sec; - struct timespec64 wall_to_monotonic; - ktime_t offs_real; - ktime_t offs_boot; - ktime_t offs_tai; - s32 tai_offset; - unsigned int clock_was_set_seq; - u8 cs_was_changed_seq; - ktime_t next_leap_ktime; - u64 raw_sec; - struct timespec64 monotonic_to_boot; - u64 cycle_interval; - u64 xtime_interval; - s64 xtime_remainder; - u64 raw_interval; - u64 ntp_tick; - s64 ntp_error; - u32 ntp_error_shift; - u32 ntp_err_mult; - u32 skip_second_overflow; -}; - -struct robust_list { - struct robust_list *next; -}; - -struct robust_list_head { - struct robust_list list; - long int futex_offset; - struct robust_list *list_op_pending; -}; - -union futex_key { - struct { - u64 i_seq; - long unsigned int pgoff; - unsigned int offset; - } shared; - struct { - union { - struct mm_struct *mm; - u64 __tmp; - }; - long unsigned int address; - unsigned int offset; - } private; - struct { - u64 ptr; - long unsigned int word; - unsigned int offset; - } both; -}; - -struct futex_pi_state { - struct list_head list; - struct rt_mutex_base pi_mutex; - struct task_struct *owner; - refcount_t refcount; - union futex_key key; -}; - -struct hrtimer_sleeper { - struct hrtimer timer; - struct task_struct *task; -}; - -struct futex_waitv { - __u64 val; - __u64 uaddr; - __u32 flags; - __u32 __reserved; -}; - -struct wake_q_head { - struct wake_q_node *first; - struct wake_q_node **lastp; -}; - -struct futex_q; - -typedef void futex_wake_fn(struct wake_q_head *, struct futex_q *); - -struct futex_q { - struct plist_node list; - struct task_struct *task; - spinlock_t *lock_ptr; - futex_wake_fn *wake; - void *wake_data; - union futex_key key; - struct futex_pi_state *pi_state; - struct rt_mutex_waiter *rt_waiter; - union futex_key *requeue_pi_key; - u32 bitset; - atomic_t requeue_state; -}; - -struct futex_vector { - struct futex_waitv w; - struct futex_q q; -}; - -enum { - CGRP_ROOT_NOPREFIX = 2, - CGRP_ROOT_XATTR = 4, - CGRP_ROOT_NS_DELEGATE = 8, - CGRP_ROOT_FAVOR_DYNMODS = 16, - CGRP_ROOT_CPUSET_V2_MODE = 65536, - CGRP_ROOT_MEMORY_LOCAL_EVENTS = 131072, - CGRP_ROOT_MEMORY_RECURSIVE_PROT = 262144, - CGRP_ROOT_MEMORY_HUGETLB_ACCOUNTING = 524288, - CGRP_ROOT_PIDS_LOCAL_EVENTS = 1048576, -}; - -enum { - CFTYPE_ONLY_ON_ROOT = 1, - CFTYPE_NOT_ON_ROOT = 2, - CFTYPE_NS_DELEGATABLE = 4, - CFTYPE_NO_PREFIX = 8, - CFTYPE_WORLD_WRITABLE = 16, - CFTYPE_DEBUG = 32, - __CFTYPE_ONLY_ON_DFL = 65536, - __CFTYPE_NOT_ON_DFL = 131072, - __CFTYPE_ADDED = 262144, -}; - -struct sched_domain_attr { - int relax_domain_level; -}; - -struct fmeter { - int cnt; - int val; - time64_t time; - spinlock_t lock; -}; - -enum prs_errcode { - PERR_NONE = 0, - PERR_INVCPUS = 1, - PERR_INVPARENT = 2, - PERR_NOTPART = 3, - PERR_NOTEXCL = 4, - PERR_NOCPUS = 5, - PERR_HOTPLUG = 6, - PERR_CPUSEMPTY = 7, - PERR_HKEEPING = 8, - PERR_ACCESS = 9, - PERR_REMOTE = 10, -}; - -typedef enum { - CS_ONLINE = 0, - CS_CPU_EXCLUSIVE = 1, - CS_MEM_EXCLUSIVE = 2, - CS_MEM_HARDWALL = 3, - CS_MEMORY_MIGRATE = 4, - CS_SCHED_LOAD_BALANCE = 5, - CS_SPREAD_PAGE = 6, - CS_SPREAD_SLAB = 7, -} cpuset_flagbits_t; - -typedef enum { - FILE_MEMORY_MIGRATE = 0, - FILE_CPULIST = 1, - FILE_MEMLIST = 2, - FILE_EFFECTIVE_CPULIST = 3, - FILE_EFFECTIVE_MEMLIST = 4, - FILE_SUBPARTS_CPULIST = 5, - FILE_EXCLUSIVE_CPULIST = 6, - FILE_EFFECTIVE_XCPULIST = 7, - FILE_ISOLATED_CPULIST = 8, - FILE_CPU_EXCLUSIVE = 9, - FILE_MEM_EXCLUSIVE = 10, - FILE_MEM_HARDWALL = 11, - FILE_SCHED_LOAD_BALANCE = 12, - FILE_PARTITION_ROOT = 13, - FILE_SCHED_RELAX_DOMAIN_LEVEL = 14, - FILE_MEMORY_PRESSURE_ENABLED = 15, - FILE_MEMORY_PRESSURE = 16, - FILE_SPREAD_PAGE = 17, - FILE_SPREAD_SLAB = 18, -} cpuset_filetype_t; - -struct cpuset { - struct cgroup_subsys_state css; - long unsigned int flags; - cpumask_var_t cpus_allowed; - nodemask_t mems_allowed; - cpumask_var_t effective_cpus; - nodemask_t effective_mems; - cpumask_var_t effective_xcpus; - cpumask_var_t exclusive_cpus; - nodemask_t old_mems_allowed; - struct fmeter fmeter; - int attach_in_progress; - int relax_domain_level; - int nr_subparts; - int partition_root_state; - int nr_deadline_tasks; - int nr_migrate_dl_tasks; - u64 sum_migrate_dl_bw; - enum prs_errcode prs_err; - struct cgroup_file partition_file; - struct list_head remote_sibling; - struct uf_node node; -}; - -struct tmpmasks { - cpumask_var_t addmask; - cpumask_var_t delmask; - cpumask_var_t new_cpus; -}; - -enum partition_cmd { - partcmd_enable = 0, - partcmd_enablei = 1, - partcmd_disable = 2, - partcmd_update = 3, - partcmd_invalidate = 4, -}; - -struct cpuset_migrate_mm_work { - struct work_struct work; - struct mm_struct *mm; - nodemask_t from; - nodemask_t to; -}; - -struct trace_bprintk_fmt { - struct list_head list; - const char *fmt; -}; - -enum { - BPF_F_UPROBE_MULTI_RETURN = 1, -}; - -enum { - BPF_F_INDEX_MASK = 4294967295ULL, - BPF_F_CURRENT_CPU = 4294967295ULL, - BPF_F_CTXLEN_MASK = 4503595332403200ULL, -}; - -enum { - BPF_F_GET_BRANCH_RECORDS_SIZE = 1, -}; - -struct bpf_perf_event_value { - __u64 counter; - __u64 enabled; - __u64 running; -}; - -struct bpf_raw_tracepoint_args { - __u64 args[0]; -}; - -struct btf_ptr { - void *ptr; - __u32 type_id; - __u32 flags; -}; - -enum { - BTF_F_COMPACT = 1, - BTF_F_NONAME = 2, - BTF_F_PTR_RAW = 4, - BTF_F_ZERO = 8, -}; - -struct btf_id_set { - u32 cnt; - u32 ids[0]; -}; - -struct bpf_array_aux { - struct list_head poke_progs; - struct bpf_map *map; - struct mutex poke_mutex; - struct work_struct work; -}; - -struct bpf_array { - struct bpf_map map; - u32 elem_size; - u32 index_mask; - struct bpf_array_aux *aux; - union { - struct { - struct {} __empty_value; - char value[0]; - }; - struct { - struct {} __empty_ptrs; - void *ptrs[0]; - }; - struct { - struct {} __empty_pptrs; - void *pptrs[0]; - }; - }; -}; - -struct bpf_event_entry { - struct perf_event *event; - struct file *perf_file; - struct file *map_file; - struct callback_head rcu; -}; - -typedef long unsigned int (*bpf_ctx_copy_t)(void *, const void *, long unsigned int, long unsigned int); - -typedef u32 (*bpf_prog_run_fn)(const struct bpf_prog *, const void *); - -struct bpf_bprintf_data { - u32 *bin_args; - char *buf; - bool get_bin_args; - bool get_buf; -}; - -struct bpf_key { - struct key *key; - bool has_ref; -}; - -struct bpf_perf_event_data { - bpf_user_pt_regs_t regs; - __u64 sample_period; - __u64 addr; -}; - -enum perf_type_id { - PERF_TYPE_HARDWARE = 0, - PERF_TYPE_SOFTWARE = 1, - PERF_TYPE_TRACEPOINT = 2, - PERF_TYPE_HW_CACHE = 3, - PERF_TYPE_RAW = 4, - PERF_TYPE_BREAKPOINT = 5, - PERF_TYPE_MAX = 6, -}; - -struct perf_event_query_bpf { - __u32 ids_len; - __u32 prog_cnt; - __u32 ids[0]; -}; - -typedef int perf_snapshot_branch_stack_t(struct perf_branch_entry *, unsigned int); - -struct trace_uprobe; - -struct uprobe_dispatch_data { - struct trace_uprobe *tu; - long unsigned int bp_addr; -}; - -struct trace_event_raw_bpf_trace_printk { - struct trace_entry ent; - u32 __data_loc_bpf_string; - char __data[0]; -}; - -struct trace_event_data_offsets_bpf_trace_printk { - u32 bpf_string; - const void *bpf_string_ptr_; -}; - -typedef void (*btf_trace_bpf_trace_printk)(void *, const char *); - -struct bpf_trace_module { - struct module *module; - struct list_head list; -}; - -typedef u64 (*btf_bpf_override_return)(struct pt_regs *, long unsigned int); - -typedef u64 (*btf_bpf_probe_read_user)(void *, u32, const void *); - -typedef u64 (*btf_bpf_probe_read_user_str)(void *, u32, const void *); - -typedef u64 (*btf_bpf_probe_read_kernel)(void *, u32, const void *); - -typedef u64 (*btf_bpf_probe_read_kernel_str)(void *, u32, const void *); - -typedef u64 (*btf_bpf_probe_read_compat)(void *, u32, const void *); - -typedef u64 (*btf_bpf_probe_read_compat_str)(void *, u32, const void *); - -typedef u64 (*btf_bpf_probe_write_user)(void *, const void *, u32); - -typedef u64 (*btf_bpf_trace_printk)(char *, u32, u64, u64, u64); - -typedef u64 (*btf_bpf_trace_vprintk)(char *, u32, const void *, u32); - -typedef u64 (*btf_bpf_seq_printf)(struct seq_file *, char *, u32, const void *, u32); - -typedef u64 (*btf_bpf_seq_write)(struct seq_file *, const void *, u32); - -typedef u64 (*btf_bpf_seq_printf_btf)(struct seq_file *, struct btf_ptr *, u32, u64); - -typedef u64 (*btf_bpf_perf_event_read)(struct bpf_map *, u64); - -typedef u64 (*btf_bpf_perf_event_read_value)(struct bpf_map *, u64, struct bpf_perf_event_value *, u32); - -struct bpf_trace_sample_data { - struct perf_sample_data sds[3]; -}; - -typedef u64 (*btf_bpf_perf_event_output)(struct pt_regs *, struct bpf_map *, u64, void *, u64); - -struct bpf_nested_pt_regs { - struct pt_regs regs[3]; -}; - -typedef u64 (*btf_bpf_get_current_task)(void); - -typedef u64 (*btf_bpf_get_current_task_btf)(void); - -typedef u64 (*btf_bpf_task_pt_regs)(struct task_struct *); - -struct send_signal_irq_work { - struct irq_work irq_work; - struct task_struct *task; - u32 sig; - enum pid_type type; -}; - -typedef u64 (*btf_bpf_send_signal)(u32); - -typedef u64 (*btf_bpf_send_signal_thread)(u32); - -typedef u64 (*btf_bpf_d_path)(struct path *, char *, u32); - -typedef u64 (*btf_bpf_snprintf_btf)(char *, u32, struct btf_ptr *, u32, u64); - -typedef u64 (*btf_bpf_get_func_ip_tracing)(void *); - -typedef u64 (*btf_bpf_get_func_ip_kprobe)(struct pt_regs *); - -typedef u64 (*btf_bpf_get_func_ip_kprobe_multi)(struct pt_regs *); - -typedef u64 (*btf_bpf_get_attach_cookie_kprobe_multi)(struct pt_regs *); - -typedef u64 (*btf_bpf_get_func_ip_uprobe_multi)(struct pt_regs *); - -typedef u64 (*btf_bpf_get_attach_cookie_uprobe_multi)(struct pt_regs *); - -typedef u64 (*btf_bpf_get_attach_cookie_trace)(void *); - -typedef u64 (*btf_bpf_get_attach_cookie_pe)(struct bpf_perf_event_data_kern *); - -typedef u64 (*btf_bpf_get_attach_cookie_tracing)(void *); - -typedef u64 (*btf_bpf_get_branch_snapshot)(void *, u32, u64); - -typedef u64 (*btf_get_func_arg)(void *, u32, u64 *); - -typedef u64 (*btf_get_func_ret)(void *, u64 *); - -typedef u64 (*btf_get_func_arg_cnt)(void *); - -typedef u64 (*btf_bpf_perf_event_output_tp)(void *, struct bpf_map *, u64, void *, u64); - -typedef u64 (*btf_bpf_get_stackid_tp)(void *, struct bpf_map *, u64); - -typedef u64 (*btf_bpf_get_stack_tp)(void *, void *, u32, u64); - -typedef u64 (*btf_bpf_perf_prog_read_value)(struct bpf_perf_event_data_kern *, struct bpf_perf_event_value *, u32); - -typedef u64 (*btf_bpf_read_branch_records)(struct bpf_perf_event_data_kern *, void *, u32, u64); - -struct bpf_raw_tp_regs { - struct pt_regs regs[3]; -}; - -typedef u64 (*btf_bpf_perf_event_output_raw_tp)(struct bpf_raw_tracepoint_args *, struct bpf_map *, u64, void *, u64); - -typedef u64 (*btf_bpf_get_stackid_raw_tp)(struct bpf_raw_tracepoint_args *, struct bpf_map *, u64); - -typedef u64 (*btf_bpf_get_stack_raw_tp)(struct bpf_raw_tracepoint_args *, void *, u32, u64); - -struct bpf_session_run_ctx { - struct bpf_run_ctx run_ctx; - bool is_return; - void *data; -}; - -struct bpf_uprobe_multi_link; - -struct bpf_uprobe { - struct bpf_uprobe_multi_link *link; - loff_t offset; - long unsigned int ref_ctr_offset; - u64 cookie; - struct uprobe *uprobe; - struct uprobe_consumer consumer; -}; - -struct bpf_uprobe_multi_link { - struct path path; - struct bpf_link link; - u32 cnt; - u32 flags; - struct bpf_uprobe *uprobes; - struct task_struct *task; -}; - -struct bpf_uprobe_multi_run_ctx { - struct bpf_run_ctx run_ctx; - long unsigned int entry_ip; - struct bpf_uprobe *uprobe; -}; - -typedef void (*swap_r_func_t)(void *, void *, int, const void *); - -typedef int (*cmp_r_func_t)(const void *, const void *, const void *); - -struct btf_enum { - __u32 name_off; - __s32 val; -}; - -struct btf_array { - __u32 type; - __u32 index_type; - __u32 nelems; -}; - -enum { - BTF_VAR_STATIC = 0, - BTF_VAR_GLOBAL_ALLOCATED = 1, - BTF_VAR_GLOBAL_EXTERN = 2, -}; - -enum btf_func_linkage { - BTF_FUNC_STATIC = 0, - BTF_FUNC_GLOBAL = 1, - BTF_FUNC_EXTERN = 2, -}; - -struct btf_var { - __u32 linkage; -}; - -struct btf_var_secinfo { - __u32 type; - __u32 offset; - __u32 size; -}; - -struct btf_decl_tag { - __s32 component_idx; -}; - -struct btf_enum64 { - __u32 name_off; - __u32 val_lo32; - __u32 val_hi32; -}; - -struct sk_msg_md { - union { - void *data; - }; - union { - void *data_end; - }; - __u32 family; - __u32 remote_ip4; - __u32 local_ip4; - __u32 remote_ip6[4]; - __u32 local_ip6[4]; - __u32 remote_port; - __u32 local_port; - __u32 size; - union { - struct bpf_sock *sk; - }; -}; - -struct sk_reuseport_md { - union { - void *data; - }; - union { - void *data_end; - }; - __u32 len; - __u32 eth_protocol; - __u32 ip_protocol; - __u32 bind_inany; - __u32 hash; - union { - struct bpf_sock *sk; - }; - union { - struct bpf_sock *migrating_sk; - }; -}; - -struct bpf_btf_info { - __u64 btf; - __u32 btf_size; - __u32 id; - __u64 name; - __u32 name_len; - __u32 kernel_btf; -}; - -struct bpf_sock_addr { - __u32 user_family; - __u32 user_ip4; - __u32 user_ip6[4]; - __u32 user_port; - __u32 family; - __u32 type; - __u32 protocol; - __u32 msg_src_ip4; - __u32 msg_src_ip6[4]; - union { - struct bpf_sock *sk; - }; -}; - -struct bpf_sock_ops { - __u32 op; - union { - __u32 args[4]; - __u32 reply; - __u32 replylong[4]; - }; - __u32 family; - __u32 remote_ip4; - __u32 local_ip4; - __u32 remote_ip6[4]; - __u32 local_ip6[4]; - __u32 remote_port; - __u32 local_port; - __u32 is_fullsock; - __u32 snd_cwnd; - __u32 srtt_us; - __u32 bpf_sock_ops_cb_flags; - __u32 state; - __u32 rtt_min; - __u32 snd_ssthresh; - __u32 rcv_nxt; - __u32 snd_nxt; - __u32 snd_una; - __u32 mss_cache; - __u32 ecn_flags; - __u32 rate_delivered; - __u32 rate_interval_us; - __u32 packets_out; - __u32 retrans_out; - __u32 total_retrans; - __u32 segs_in; - __u32 data_segs_in; - __u32 segs_out; - __u32 data_segs_out; - __u32 lost_out; - __u32 sacked_out; - __u32 sk_txhash; - __u64 bytes_received; - __u64 bytes_acked; - union { - struct bpf_sock *sk; - }; - union { - void *skb_data; - }; - union { - void *skb_data_end; - }; - __u32 skb_len; - __u32 skb_tcp_flags; - __u64 skb_hwtstamp; -}; - -struct bpf_cgroup_dev_ctx { - __u32 access_type; - __u32 major; - __u32 minor; -}; - -struct bpf_sysctl { - __u32 write; - __u32 file_pos; -}; - -struct bpf_sockopt { - union { - struct bpf_sock *sk; - }; - union { - void *optval; - }; - union { - void *optval_end; - }; - __s32 level; - __s32 optname; - __s32 optlen; - __s32 retval; -}; - -enum bpf_core_relo_kind { - BPF_CORE_FIELD_BYTE_OFFSET = 0, - BPF_CORE_FIELD_BYTE_SIZE = 1, - BPF_CORE_FIELD_EXISTS = 2, - BPF_CORE_FIELD_SIGNED = 3, - BPF_CORE_FIELD_LSHIFT_U64 = 4, - BPF_CORE_FIELD_RSHIFT_U64 = 5, - BPF_CORE_TYPE_ID_LOCAL = 6, - BPF_CORE_TYPE_ID_TARGET = 7, - BPF_CORE_TYPE_EXISTS = 8, - BPF_CORE_TYPE_SIZE = 9, - BPF_CORE_ENUMVAL_EXISTS = 10, - BPF_CORE_ENUMVAL_VALUE = 11, - BPF_CORE_TYPE_MATCHES = 12, -}; - -struct bpf_core_relo { - __u32 insn_off; - __u32 type_id; - __u32 access_str_off; - enum bpf_core_relo_kind kind; -}; - -struct btf_struct_metas { - u32 cnt; - struct btf_struct_meta types[0]; -}; - -enum { - BTF_FIELDS_MAX = 11, -}; - -struct bpf_core_ctx { - struct bpf_verifier_log *log; - const struct btf *btf; -}; - -struct sk_reuseport_kern { - struct sk_buff *skb; - struct sock *sk; - struct sock *selected_sk; - struct sock *migrating_sk; - void *data_end; - u32 hash; - u32 reuseport_id; - bool bind_inany; -}; - -struct bpf_sock_addr_kern { - struct sock *sk; - struct sockaddr *uaddr; - u64 tmp_reg; - void *t_ctx; - u32 uaddrlen; -}; - -struct bpf_sysctl_kern { - struct ctl_table_header *head; - const struct ctl_table *table; - void *cur_val; - size_t cur_len; - void *new_val; - size_t new_len; - int new_updated; - int write; - loff_t *ppos; - u64 tmp_reg; -}; - -struct bpf_sockopt_kern { - struct sock *sk; - u8 *optval; - u8 *optval_end; - s32 level; - s32 optname; - s32 optlen; - struct task_struct *current_task; - u64 tmp_reg; -}; - -struct bpf_core_cand { - const struct btf *btf; - __u32 id; -}; - -struct bpf_core_cand_list { - struct bpf_core_cand *cands; - int len; -}; - -struct bpf_core_accessor { - __u32 type_id; - __u32 idx; - const char *name; -}; - -struct bpf_core_spec { - const struct btf *btf; - struct bpf_core_accessor spec[64]; - __u32 root_type_id; - enum bpf_core_relo_kind relo_kind; - int len; - int raw_spec[64]; - int raw_len; - __u32 bit_offset; -}; - -struct bpf_core_relo_res { - __u64 orig_val; - __u64 new_val; - bool poison; - bool validate; - bool fail_memsz_adjust; - __u32 orig_sz; - __u32 orig_type_id; - __u32 new_sz; - __u32 new_type_id; -}; - -enum btf_kfunc_hook { - BTF_KFUNC_HOOK_COMMON = 0, - BTF_KFUNC_HOOK_XDP = 1, - BTF_KFUNC_HOOK_TC = 2, - BTF_KFUNC_HOOK_STRUCT_OPS = 3, - BTF_KFUNC_HOOK_TRACING = 4, - BTF_KFUNC_HOOK_SYSCALL = 5, - BTF_KFUNC_HOOK_FMODRET = 6, - BTF_KFUNC_HOOK_CGROUP = 7, - BTF_KFUNC_HOOK_SCHED_ACT = 8, - BTF_KFUNC_HOOK_SK_SKB = 9, - BTF_KFUNC_HOOK_SOCKET_FILTER = 10, - BTF_KFUNC_HOOK_LWT = 11, - BTF_KFUNC_HOOK_NETFILTER = 12, - BTF_KFUNC_HOOK_KPROBE = 13, - BTF_KFUNC_HOOK_MAX = 14, -}; - -enum { - BTF_KFUNC_SET_MAX_CNT = 256, - BTF_DTOR_KFUNC_MAX_CNT = 256, - BTF_KFUNC_FILTER_MAX_CNT = 16, -}; - -struct btf_kfunc_hook_filter { - btf_kfunc_filter_t filters[16]; - u32 nr_filters; -}; - -struct btf_kfunc_set_tab { - struct btf_id_set8 *sets[14]; - struct btf_kfunc_hook_filter hook_filters[14]; -}; - -struct btf_id_dtor_kfunc_tab { - u32 cnt; - struct btf_id_dtor_kfunc dtors[0]; -}; - -struct btf_struct_ops_tab { - u32 cnt; - u32 capacity; - struct bpf_struct_ops_desc ops[0]; -}; - -enum verifier_phase { - CHECK_META = 0, - CHECK_TYPE = 1, -}; - -struct resolve_vertex { - const struct btf_type *t; - u32 type_id; - u16 next_member; -}; - -enum visit_state { - NOT_VISITED = 0, - VISITED = 1, - RESOLVED = 2, -}; - -enum resolve_mode { - RESOLVE_TBD = 0, - RESOLVE_PTR = 1, - RESOLVE_STRUCT_OR_ARRAY = 2, -}; - -struct btf_sec_info { - u32 off; - u32 len; -}; - -struct btf_verifier_env { - struct btf *btf; - u8 *visit_states; - struct resolve_vertex stack[32]; - struct bpf_verifier_log log; - u32 log_type_id; - u32 top_stack; - enum verifier_phase phase; - enum resolve_mode resolve_mode; -}; - -struct btf_show { - u64 flags; - void *target; - void (*showfn)(struct btf_show *, const char *, va_list); - const struct btf *btf; - struct { - u8 depth; - u8 depth_to_show; - u8 depth_check; - u8 array_member: 1; - u8 array_terminated: 1; - u16 array_encoding; - u32 type_id; - int status; - const struct btf_type *type; - const struct btf_member *member; - char name[80]; - } state; - struct { - u32 size; - void *head; - void *data; - u8 safe[32]; - } obj; -}; - -struct btf_kind_operations { - s32 (*check_meta)(struct btf_verifier_env *, const struct btf_type *, u32); - int (*resolve)(struct btf_verifier_env *, const struct resolve_vertex *); - int (*check_member)(struct btf_verifier_env *, const struct btf_type *, const struct btf_member *, const struct btf_type *); - int (*check_kflag_member)(struct btf_verifier_env *, const struct btf_type *, const struct btf_member *, const struct btf_type *); - void (*log_details)(struct btf_verifier_env *, const struct btf_type *); - void (*show)(const struct btf *, const struct btf_type *, u32, void *, u8, struct btf_show *); -}; - -enum { - BTF_FIELD_IGNORE = 0, - BTF_FIELD_FOUND = 1, -}; - -struct btf_field_info { - enum btf_field_type type; - u32 off; - union { - struct { - u32 type_id; - } kptr; - struct { - const char *node_name; - u32 value_btf_id; - } graph_root; - }; -}; - -struct bpf_ctx_convert { - struct __sk_buff BPF_PROG_TYPE_SOCKET_FILTER_prog; - struct sk_buff BPF_PROG_TYPE_SOCKET_FILTER_kern; - struct __sk_buff BPF_PROG_TYPE_SCHED_CLS_prog; - struct sk_buff BPF_PROG_TYPE_SCHED_CLS_kern; - struct __sk_buff BPF_PROG_TYPE_SCHED_ACT_prog; - struct sk_buff BPF_PROG_TYPE_SCHED_ACT_kern; - struct xdp_md BPF_PROG_TYPE_XDP_prog; - struct xdp_buff BPF_PROG_TYPE_XDP_kern; - struct __sk_buff BPF_PROG_TYPE_CGROUP_SKB_prog; - struct sk_buff BPF_PROG_TYPE_CGROUP_SKB_kern; - struct bpf_sock BPF_PROG_TYPE_CGROUP_SOCK_prog; - struct sock BPF_PROG_TYPE_CGROUP_SOCK_kern; - struct bpf_sock_addr BPF_PROG_TYPE_CGROUP_SOCK_ADDR_prog; - struct bpf_sock_addr_kern BPF_PROG_TYPE_CGROUP_SOCK_ADDR_kern; - struct __sk_buff BPF_PROG_TYPE_LWT_IN_prog; - struct sk_buff BPF_PROG_TYPE_LWT_IN_kern; - struct __sk_buff BPF_PROG_TYPE_LWT_OUT_prog; - struct sk_buff BPF_PROG_TYPE_LWT_OUT_kern; - struct __sk_buff BPF_PROG_TYPE_LWT_XMIT_prog; - struct sk_buff BPF_PROG_TYPE_LWT_XMIT_kern; - struct __sk_buff BPF_PROG_TYPE_LWT_SEG6LOCAL_prog; - struct sk_buff BPF_PROG_TYPE_LWT_SEG6LOCAL_kern; - struct bpf_sock_ops BPF_PROG_TYPE_SOCK_OPS_prog; - struct bpf_sock_ops_kern BPF_PROG_TYPE_SOCK_OPS_kern; - struct __sk_buff BPF_PROG_TYPE_SK_SKB_prog; - struct sk_buff BPF_PROG_TYPE_SK_SKB_kern; - struct sk_msg_md BPF_PROG_TYPE_SK_MSG_prog; - struct sk_msg BPF_PROG_TYPE_SK_MSG_kern; - struct __sk_buff BPF_PROG_TYPE_FLOW_DISSECTOR_prog; - struct bpf_flow_dissector BPF_PROG_TYPE_FLOW_DISSECTOR_kern; - bpf_user_pt_regs_t BPF_PROG_TYPE_KPROBE_prog; - struct pt_regs BPF_PROG_TYPE_KPROBE_kern; - __u64 BPF_PROG_TYPE_TRACEPOINT_prog; - u64 BPF_PROG_TYPE_TRACEPOINT_kern; - struct bpf_perf_event_data BPF_PROG_TYPE_PERF_EVENT_prog; - struct bpf_perf_event_data_kern BPF_PROG_TYPE_PERF_EVENT_kern; - struct bpf_raw_tracepoint_args BPF_PROG_TYPE_RAW_TRACEPOINT_prog; - u64 BPF_PROG_TYPE_RAW_TRACEPOINT_kern; - struct bpf_raw_tracepoint_args BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE_prog; - u64 BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE_kern; - void *BPF_PROG_TYPE_TRACING_prog; - void *BPF_PROG_TYPE_TRACING_kern; - struct bpf_cgroup_dev_ctx BPF_PROG_TYPE_CGROUP_DEVICE_prog; - struct bpf_cgroup_dev_ctx BPF_PROG_TYPE_CGROUP_DEVICE_kern; - struct bpf_sysctl BPF_PROG_TYPE_CGROUP_SYSCTL_prog; - struct bpf_sysctl_kern BPF_PROG_TYPE_CGROUP_SYSCTL_kern; - struct bpf_sockopt BPF_PROG_TYPE_CGROUP_SOCKOPT_prog; - struct bpf_sockopt_kern BPF_PROG_TYPE_CGROUP_SOCKOPT_kern; - struct sk_reuseport_md BPF_PROG_TYPE_SK_REUSEPORT_prog; - struct sk_reuseport_kern BPF_PROG_TYPE_SK_REUSEPORT_kern; - struct bpf_sk_lookup BPF_PROG_TYPE_SK_LOOKUP_prog; - struct bpf_sk_lookup_kern BPF_PROG_TYPE_SK_LOOKUP_kern; - void *BPF_PROG_TYPE_STRUCT_OPS_prog; - void *BPF_PROG_TYPE_STRUCT_OPS_kern; - void *BPF_PROG_TYPE_EXT_prog; - void *BPF_PROG_TYPE_EXT_kern; - void *BPF_PROG_TYPE_LSM_prog; - void *BPF_PROG_TYPE_LSM_kern; - void *BPF_PROG_TYPE_SYSCALL_prog; - void *BPF_PROG_TYPE_SYSCALL_kern; - struct bpf_nf_ctx BPF_PROG_TYPE_NETFILTER_prog; - struct bpf_nf_ctx BPF_PROG_TYPE_NETFILTER_kern; -}; - -enum { - __ctx_convertBPF_PROG_TYPE_SOCKET_FILTER = 0, - __ctx_convertBPF_PROG_TYPE_SCHED_CLS = 1, - __ctx_convertBPF_PROG_TYPE_SCHED_ACT = 2, - __ctx_convertBPF_PROG_TYPE_XDP = 3, - __ctx_convertBPF_PROG_TYPE_CGROUP_SKB = 4, - __ctx_convertBPF_PROG_TYPE_CGROUP_SOCK = 5, - __ctx_convertBPF_PROG_TYPE_CGROUP_SOCK_ADDR = 6, - __ctx_convertBPF_PROG_TYPE_LWT_IN = 7, - __ctx_convertBPF_PROG_TYPE_LWT_OUT = 8, - __ctx_convertBPF_PROG_TYPE_LWT_XMIT = 9, - __ctx_convertBPF_PROG_TYPE_LWT_SEG6LOCAL = 10, - __ctx_convertBPF_PROG_TYPE_SOCK_OPS = 11, - __ctx_convertBPF_PROG_TYPE_SK_SKB = 12, - __ctx_convertBPF_PROG_TYPE_SK_MSG = 13, - __ctx_convertBPF_PROG_TYPE_FLOW_DISSECTOR = 14, - __ctx_convertBPF_PROG_TYPE_KPROBE = 15, - __ctx_convertBPF_PROG_TYPE_TRACEPOINT = 16, - __ctx_convertBPF_PROG_TYPE_PERF_EVENT = 17, - __ctx_convertBPF_PROG_TYPE_RAW_TRACEPOINT = 18, - __ctx_convertBPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE = 19, - __ctx_convertBPF_PROG_TYPE_TRACING = 20, - __ctx_convertBPF_PROG_TYPE_CGROUP_DEVICE = 21, - __ctx_convertBPF_PROG_TYPE_CGROUP_SYSCTL = 22, - __ctx_convertBPF_PROG_TYPE_CGROUP_SOCKOPT = 23, - __ctx_convertBPF_PROG_TYPE_SK_REUSEPORT = 24, - __ctx_convertBPF_PROG_TYPE_SK_LOOKUP = 25, - __ctx_convertBPF_PROG_TYPE_STRUCT_OPS = 26, - __ctx_convertBPF_PROG_TYPE_EXT = 27, - __ctx_convertBPF_PROG_TYPE_LSM = 28, - __ctx_convertBPF_PROG_TYPE_SYSCALL = 29, - __ctx_convertBPF_PROG_TYPE_NETFILTER = 30, - __ctx_convert_unused = 31, -}; - -struct bpf_raw_tp_null_args { - const char *func; - u64 mask; -}; - -enum bpf_struct_walk_result { - WALK_SCALAR = 0, - WALK_PTR = 1, - WALK_STRUCT = 2, -}; - -struct bpf_cand_cache { - const char *name; - u32 name_len; - u16 kind; - u16 cnt; - struct { - const struct btf *btf; - u32 id; - } cands[0]; -}; - -enum btf_arg_tag { - ARG_TAG_CTX = 1, - ARG_TAG_NONNULL = 2, - ARG_TAG_TRUSTED = 4, - ARG_TAG_NULLABLE = 8, - ARG_TAG_ARENA = 16, -}; - -struct btf_show_snprintf { - struct btf_show show; - int len_left; - int len; -}; - -enum { - BTF_MODULE_F_LIVE = 1, -}; - -struct btf_module { - struct list_head list; - struct module *module; - struct btf *btf; - struct bin_attribute *sysfs_attr; - int flags; -}; - -typedef u64 (*btf_bpf_btf_find_by_name_kind)(char *, int, u32, int); - -enum { - XA_CHECK_SCHED = 4096, -}; - -struct wb_lock_cookie { - bool locked; - long unsigned int flags; -}; - -typedef int (*writepage_t)(struct folio *, struct writeback_control *, void *); - -struct dirty_throttle_control { - struct wb_domain *dom; - struct dirty_throttle_control *gdtc; - struct bdi_writeback *wb; - struct fprop_local_percpu *wb_completions; - long unsigned int avail; - long unsigned int dirty; - long unsigned int thresh; - long unsigned int bg_thresh; - long unsigned int wb_dirty; - long unsigned int wb_thresh; - long unsigned int wb_bg_thresh; - long unsigned int pos_ratio; - bool freerun; - bool dirty_exceeded; -}; - -struct vmap_area { - long unsigned int va_start; - long unsigned int va_end; - struct rb_node rb_node; - struct list_head list; - union { - long unsigned int subtree_max_size; - struct vm_struct *vm; - }; - long unsigned int flags; -}; - -typedef unsigned int kasan_vmalloc_flags_t; - -enum memcg_stat_item { - MEMCG_SWAP = 44, - MEMCG_SOCK = 45, - MEMCG_PERCPU_B = 46, - MEMCG_VMALLOC = 47, - MEMCG_KMEM = 48, - MEMCG_ZSWAP_B = 49, - MEMCG_ZSWAPPED = 50, - MEMCG_NR_STAT = 51, -}; - -struct trace_event_raw_alloc_vmap_area { - struct trace_entry ent; - long unsigned int addr; - long unsigned int size; - long unsigned int align; - long unsigned int vstart; - long unsigned int vend; - int failed; - char __data[0]; -}; - -struct trace_event_raw_purge_vmap_area_lazy { - struct trace_entry ent; - long unsigned int start; - long unsigned int end; - unsigned int npurged; - char __data[0]; -}; - -struct trace_event_raw_free_vmap_area_noflush { - struct trace_entry ent; - long unsigned int va_start; - long unsigned int nr_lazy; - long unsigned int nr_lazy_max; - char __data[0]; -}; - -struct trace_event_data_offsets_alloc_vmap_area {}; - -struct trace_event_data_offsets_purge_vmap_area_lazy {}; - -struct trace_event_data_offsets_free_vmap_area_noflush {}; - -typedef void (*btf_trace_alloc_vmap_area)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int); - -typedef void (*btf_trace_purge_vmap_area_lazy)(void *, long unsigned int, long unsigned int, unsigned int); - -typedef void (*btf_trace_free_vmap_area_noflush)(void *, long unsigned int, long unsigned int, long unsigned int); - -struct vfree_deferred { - struct llist_head list; - struct work_struct wq; -}; - -struct rb_list { - struct rb_root root; - struct list_head head; - spinlock_t lock; -}; - -struct vmap_pool { - struct list_head head; - long unsigned int len; -}; - -struct vmap_node { - struct vmap_pool pool[256]; - spinlock_t pool_lock; - bool skip_populate; - struct rb_list busy; - struct rb_list lazy; - struct list_head purge_list; - struct work_struct purge_work; - long unsigned int nr_purged; -}; - -enum fit_type { - NOTHING_FIT = 0, - FL_FIT_TYPE = 1, - LE_FIT_TYPE = 2, - RE_FIT_TYPE = 3, - NE_FIT_TYPE = 4, -}; - -struct vmap_block_queue { - spinlock_t lock; - struct list_head free; - struct xarray vmap_blocks; -}; - -struct vmap_block { - spinlock_t lock; - struct vmap_area *va; - long unsigned int free; - long unsigned int dirty; - long unsigned int used_map[16]; - long unsigned int dirty_min; - long unsigned int dirty_max; - struct list_head free_list; - struct callback_head callback_head; - struct list_head purge; - unsigned int cpu; -}; - -struct anon_vma_chain { - struct vm_area_struct *vma; - struct anon_vma *anon_vma; - struct list_head same_vma; - struct rb_node rb; - long unsigned int rb_subtree_last; -}; - -struct rmap_walk_control { - void *arg; - bool try_lock; - bool contended; - bool (*rmap_one)(struct folio *, struct vm_area_struct *, long unsigned int, void *); - int (*done)(struct folio *); - struct anon_vma * (*anon_lock)(struct folio *, struct rmap_walk_control *); - bool (*invalid_vma)(struct vm_area_struct *, void *); -}; - -struct trace_event_raw_ksm_scan_template { - struct trace_entry ent; - int seq; - u32 rmap_entries; - char __data[0]; -}; - -struct trace_event_raw_ksm_enter_exit_template { - struct trace_entry ent; - void *mm; - char __data[0]; -}; - -struct trace_event_raw_ksm_merge_one_page { - struct trace_entry ent; - long unsigned int pfn; - void *rmap_item; - void *mm; - int err; - char __data[0]; -}; - -struct trace_event_raw_ksm_merge_with_ksm_page { - struct trace_entry ent; - void *ksm_page; - long unsigned int pfn; - void *rmap_item; - void *mm; - int err; - char __data[0]; -}; - -struct trace_event_raw_ksm_remove_ksm_page { - struct trace_entry ent; - long unsigned int pfn; - char __data[0]; -}; - -struct trace_event_raw_ksm_remove_rmap_item { - struct trace_entry ent; - long unsigned int pfn; - void *rmap_item; - void *mm; - char __data[0]; -}; - -struct trace_event_raw_ksm_advisor { - struct trace_entry ent; - s64 scan_time; - long unsigned int pages_to_scan; - unsigned int cpu_percent; - char __data[0]; -}; - -struct trace_event_data_offsets_ksm_scan_template {}; - -struct trace_event_data_offsets_ksm_enter_exit_template {}; - -struct trace_event_data_offsets_ksm_merge_one_page {}; - -struct trace_event_data_offsets_ksm_merge_with_ksm_page {}; - -struct trace_event_data_offsets_ksm_remove_ksm_page {}; - -struct trace_event_data_offsets_ksm_remove_rmap_item {}; - -struct trace_event_data_offsets_ksm_advisor {}; - -typedef void (*btf_trace_ksm_start_scan)(void *, int, u32); - -typedef void (*btf_trace_ksm_stop_scan)(void *, int, u32); - -typedef void (*btf_trace_ksm_enter)(void *, void *); - -typedef void (*btf_trace_ksm_exit)(void *, void *); - -typedef void (*btf_trace_ksm_merge_one_page)(void *, long unsigned int, void *, void *, int); - -typedef void (*btf_trace_ksm_merge_with_ksm_page)(void *, void *, long unsigned int, void *, void *, int); - -typedef void (*btf_trace_ksm_remove_ksm_page)(void *, long unsigned int); - -typedef void (*btf_trace_ksm_remove_rmap_item)(void *, long unsigned int, void *, void *); - -typedef void (*btf_trace_ksm_advisor)(void *, s64, long unsigned int, unsigned int); - -typedef u8 rmap_age_t; - -struct ksm_rmap_item; - -struct ksm_mm_slot { - struct mm_slot slot; - struct ksm_rmap_item *rmap_list; -}; - -struct ksm_stable_node; - -struct ksm_rmap_item { - struct ksm_rmap_item *rmap_list; - union { - struct anon_vma *anon_vma; - }; - struct mm_struct *mm; - long unsigned int address; - unsigned int oldchecksum; - rmap_age_t age; - rmap_age_t remaining_skips; - union { - struct rb_node node; - struct { - struct ksm_stable_node *head; - struct hlist_node hlist; - }; - }; -}; - -struct ksm_scan { - struct ksm_mm_slot *mm_slot; - long unsigned int address; - struct ksm_rmap_item **rmap_list; - long unsigned int seqnr; -}; - -struct ksm_stable_node { - union { - struct rb_node node; - struct { - struct list_head *head; - struct { - struct hlist_node hlist_dup; - struct list_head list; - }; - }; - }; - struct hlist_head hlist; - union { - long unsigned int kpfn; - long unsigned int chain_prune_time; - }; - int rmap_hlist_len; -}; - -struct advisor_ctx { - ktime_t start_scan; - long unsigned int scan_time; - long unsigned int change; - long long unsigned int cpu_time; -}; - -enum ksm_advisor_type { - KSM_ADVISOR_NONE = 0, - KSM_ADVISOR_SCAN_TIME = 1, -}; - -enum ksm_get_folio_flags { - KSM_GET_FOLIO_NOLOCK = 0, - KSM_GET_FOLIO_LOCK = 1, - KSM_GET_FOLIO_TRYLOCK = 2, -}; - -enum lru_status { - LRU_REMOVED = 0, - LRU_REMOVED_RETRY = 1, - LRU_ROTATE = 2, - LRU_SKIP = 3, - LRU_RETRY = 4, - LRU_STOP = 5, -}; - -typedef enum lru_status (*list_lru_walk_cb)(struct list_head *, struct list_lru_one *, spinlock_t *, void *); - -struct inodes_stat_t { - long int nr_inodes; - long int nr_unused; - long int dummy[5]; -}; - -struct inotify_event { - __s32 wd; - __u32 mask; - __u32 cookie; - __u32 len; - char name[0]; -}; - -struct inotify_event_info { - struct fsnotify_event fse; - u32 mask; - int wd; - u32 sync_cookie; - int name_len; - char name[0]; -}; - -struct inotify_inode_mark { - struct fsnotify_mark fsn_mark; - int wd; -}; - -struct iomap_dio { - struct kiocb *iocb; - const struct iomap_dio_ops *dops; - loff_t i_size; - loff_t size; - atomic_t ref; - unsigned int flags; - int error; - size_t done_before; - bool wait_for_completion; - union { - struct { - struct iov_iter *iter; - struct task_struct *waiter; - } submit; - struct { - struct work_struct work; - } aio; - }; -}; - -struct kernfs_global_locks { - struct mutex open_file_mutex[256]; -}; - -struct kernfs_open_node { - struct callback_head callback_head; - atomic_t event; - wait_queue_head_t poll; - struct list_head files; - unsigned int nr_mmapped; - unsigned int nr_to_release; -}; - -enum netfs_write_trace { - netfs_write_trace_copy_to_cache = 0, - netfs_write_trace_dio_write = 1, - netfs_write_trace_unbuffered_write = 2, - netfs_write_trace_writeback = 3, - netfs_write_trace_writethrough = 4, -} __attribute__((mode(byte))); - -enum netfs_collect_contig_trace { - netfs_contig_trace_collect = 0, - netfs_contig_trace_jump = 1, - netfs_contig_trace_unlock = 2, -} __attribute__((mode(byte))); - -enum netfs_donate_trace { - netfs_trace_donate_tail_to_prev = 0, - netfs_trace_donate_to_prev = 1, - netfs_trace_donate_to_next = 2, - netfs_trace_donate_to_deferred_next = 3, -} __attribute__((mode(byte))); - -struct trace_event_raw_netfs_read { - struct trace_entry ent; - unsigned int rreq; - unsigned int cookie; - loff_t i_size; - loff_t start; - size_t len; - enum netfs_read_trace what; - unsigned int netfs_inode; - char __data[0]; -}; - -struct trace_event_raw_netfs_rreq { - struct trace_entry ent; - unsigned int rreq; - unsigned int flags; - enum netfs_io_origin origin; - enum netfs_rreq_trace what; - char __data[0]; -}; - -struct trace_event_raw_netfs_sreq { - struct trace_entry ent; - unsigned int rreq; - short unsigned int index; - short int error; - short unsigned int flags; - enum netfs_io_source source; - enum netfs_sreq_trace what; - size_t len; - size_t transferred; - loff_t start; - char __data[0]; -}; - -struct trace_event_raw_netfs_failure { - struct trace_entry ent; - unsigned int rreq; - short int index; - short int error; - short unsigned int flags; - enum netfs_io_source source; - enum netfs_failure what; - size_t len; - size_t transferred; - loff_t start; - char __data[0]; -}; - -struct trace_event_raw_netfs_rreq_ref { - struct trace_entry ent; - unsigned int rreq; - int ref; - enum netfs_rreq_ref_trace what; - char __data[0]; -}; - -struct trace_event_raw_netfs_sreq_ref { - struct trace_entry ent; - unsigned int rreq; - unsigned int subreq; - int ref; - enum netfs_sreq_ref_trace what; - char __data[0]; -}; - -struct trace_event_raw_netfs_folio { - struct trace_entry ent; - ino_t ino; - long unsigned int index; - unsigned int nr; - enum netfs_folio_trace why; - char __data[0]; -}; - -struct trace_event_raw_netfs_write_iter { - struct trace_entry ent; - long long unsigned int start; - size_t len; - unsigned int flags; - unsigned int ino; - char __data[0]; -}; - -struct trace_event_raw_netfs_write { - struct trace_entry ent; - unsigned int wreq; - unsigned int cookie; - unsigned int ino; - enum netfs_write_trace what; - long long unsigned int start; - long long unsigned int len; - char __data[0]; -}; - -struct trace_event_raw_netfs_collect { - struct trace_entry ent; - unsigned int wreq; - unsigned int len; - long long unsigned int transferred; - long long unsigned int start; - char __data[0]; -}; - -struct trace_event_raw_netfs_collect_sreq { - struct trace_entry ent; - unsigned int wreq; - unsigned int subreq; - unsigned int stream; - unsigned int len; - unsigned int transferred; - long long unsigned int start; - char __data[0]; -}; - -struct trace_event_raw_netfs_collect_folio { - struct trace_entry ent; - unsigned int wreq; - long unsigned int index; - long long unsigned int fend; - long long unsigned int cleaned_to; - long long unsigned int collected_to; - char __data[0]; -}; - -struct trace_event_raw_netfs_collect_state { - struct trace_entry ent; - unsigned int wreq; - unsigned int notes; - long long unsigned int collected_to; - long long unsigned int cleaned_to; - char __data[0]; -}; - -struct trace_event_raw_netfs_collect_gap { - struct trace_entry ent; - unsigned int wreq; - unsigned char stream; - unsigned char type; - long long unsigned int from; - long long unsigned int to; - char __data[0]; -}; - -struct trace_event_raw_netfs_collect_stream { - struct trace_entry ent; - unsigned int wreq; - unsigned char stream; - long long unsigned int collected_to; - long long unsigned int front; - char __data[0]; -}; - -struct trace_event_raw_netfs_progress { - struct trace_entry ent; - unsigned int rreq; - unsigned int subreq; - unsigned int consumed; - unsigned int transferred; - long long unsigned int f_start; - unsigned int f_avail; - unsigned int f_part; - unsigned char slot; - char __data[0]; -}; - -struct trace_event_raw_netfs_donate { - struct trace_entry ent; - unsigned int rreq; - unsigned int from; - unsigned int to; - unsigned int amount; - enum netfs_donate_trace trace; - char __data[0]; -}; - -struct trace_event_data_offsets_netfs_read {}; - -struct trace_event_data_offsets_netfs_rreq {}; - -struct trace_event_data_offsets_netfs_sreq {}; - -struct trace_event_data_offsets_netfs_failure {}; - -struct trace_event_data_offsets_netfs_rreq_ref {}; - -struct trace_event_data_offsets_netfs_sreq_ref {}; - -struct trace_event_data_offsets_netfs_folio {}; - -struct trace_event_data_offsets_netfs_write_iter {}; - -struct trace_event_data_offsets_netfs_write {}; - -struct trace_event_data_offsets_netfs_collect {}; - -struct trace_event_data_offsets_netfs_collect_sreq {}; - -struct trace_event_data_offsets_netfs_collect_folio {}; - -struct trace_event_data_offsets_netfs_collect_state {}; - -struct trace_event_data_offsets_netfs_collect_gap {}; - -struct trace_event_data_offsets_netfs_collect_stream {}; - -struct trace_event_data_offsets_netfs_progress {}; - -struct trace_event_data_offsets_netfs_donate {}; - -typedef void (*btf_trace_netfs_read)(void *, struct netfs_io_request *, loff_t, size_t, enum netfs_read_trace); - -typedef void (*btf_trace_netfs_rreq)(void *, struct netfs_io_request *, enum netfs_rreq_trace); - -typedef void (*btf_trace_netfs_sreq)(void *, struct netfs_io_subrequest *, enum netfs_sreq_trace); - -typedef void (*btf_trace_netfs_failure)(void *, struct netfs_io_request *, struct netfs_io_subrequest *, int, enum netfs_failure); - -typedef void (*btf_trace_netfs_rreq_ref)(void *, unsigned int, int, enum netfs_rreq_ref_trace); - -typedef void (*btf_trace_netfs_sreq_ref)(void *, unsigned int, unsigned int, int, enum netfs_sreq_ref_trace); - -typedef void (*btf_trace_netfs_folio)(void *, struct folio *, enum netfs_folio_trace); - -typedef void (*btf_trace_netfs_write_iter)(void *, const struct kiocb *, const struct iov_iter *); - -typedef void (*btf_trace_netfs_write)(void *, const struct netfs_io_request *, enum netfs_write_trace); - -typedef void (*btf_trace_netfs_collect)(void *, const struct netfs_io_request *); - -typedef void (*btf_trace_netfs_collect_sreq)(void *, const struct netfs_io_request *, const struct netfs_io_subrequest *); - -typedef void (*btf_trace_netfs_collect_folio)(void *, const struct netfs_io_request *, const struct folio *, long long unsigned int, long long unsigned int); - -typedef void (*btf_trace_netfs_collect_state)(void *, const struct netfs_io_request *, long long unsigned int, unsigned int); - -typedef void (*btf_trace_netfs_collect_gap)(void *, const struct netfs_io_request *, const struct netfs_io_stream *, long long unsigned int, char); - -typedef void (*btf_trace_netfs_collect_stream)(void *, const struct netfs_io_request *, const struct netfs_io_stream *); - -typedef void (*btf_trace_netfs_progress)(void *, const struct netfs_io_subrequest *, long long unsigned int, size_t, size_t); - -typedef void (*btf_trace_netfs_donate)(void *, const struct netfs_io_request *, const struct netfs_io_subrequest *, const struct netfs_io_subrequest *, size_t, enum netfs_donate_trace); - -struct dx_hash_info { - u32 hash; - u32 minor_hash; - int hash_version; - u32 *seed; -}; - -struct dax_holder_operations { - int (*notify_failure)(struct dax_device *, u64, u64, int); -}; - -struct ext4_inode { - __le16 i_mode; - __le16 i_uid; - __le32 i_size_lo; - __le32 i_atime; - __le32 i_ctime; - __le32 i_mtime; - __le32 i_dtime; - __le16 i_gid; - __le16 i_links_count; - __le32 i_blocks_lo; - __le32 i_flags; - union { - struct { - __le32 l_i_version; - } linux1; - struct { - __u32 h_i_translator; - } hurd1; - struct { - __u32 m_i_reserved1; - } masix1; - } osd1; - __le32 i_block[15]; - __le32 i_generation; - __le32 i_file_acl_lo; - __le32 i_size_high; - __le32 i_obso_faddr; - union { - struct { - __le16 l_i_blocks_high; - __le16 l_i_file_acl_high; - __le16 l_i_uid_high; - __le16 l_i_gid_high; - __le16 l_i_checksum_lo; - __le16 l_i_reserved; - } linux2; - struct { - __le16 h_i_reserved1; - __u16 h_i_mode_high; - __u16 h_i_uid_high; - __u16 h_i_gid_high; - __u32 h_i_author; - } hurd2; - struct { - __le16 h_i_reserved1; - __le16 m_i_file_acl_high; - __u32 m_i_reserved2[2]; - } masix2; - } osd2; - __le16 i_extra_isize; - __le16 i_checksum_hi; - __le32 i_ctime_extra; - __le32 i_mtime_extra; - __le32 i_atime_extra; - __le32 i_crtime; - __le32 i_crtime_extra; - __le32 i_version_hi; - __le32 i_projid; -}; - -enum { - ES_WRITTEN_B = 0, - ES_UNWRITTEN_B = 1, - ES_DELAYED_B = 2, - ES_HOLE_B = 3, - ES_REFERENCED_B = 4, - ES_FLAGS = 5, -}; - -enum { - I_DATA_SEM_NORMAL = 0, - I_DATA_SEM_OTHER = 1, - I_DATA_SEM_QUOTA = 2, - I_DATA_SEM_EA = 3, -}; - -enum { - EXT4_MF_MNTDIR_SAMPLED = 0, - EXT4_MF_FC_INELIGIBLE = 1, - EXT4_MF_JOURNAL_DESTROY = 2, -}; - -struct ext4_lazy_init { - long unsigned int li_state; - struct list_head li_request_list; - struct mutex li_list_mtx; -}; - -struct ext4_extent { - __le32 ee_block; - __le16 ee_len; - __le16 ee_start_hi; - __le32 ee_start_lo; -}; - -struct partial_cluster { - ext4_fsblk_t pclu; - ext4_lblk_t lblk; - enum { - initial = 0, - tofree = 1, - nofree = 2, - } state; -}; - -struct ext4_journal_cb_entry { - struct list_head jce_list; - void (*jce_func)(struct super_block *, struct ext4_journal_cb_entry *, int); -}; - -struct ext4_fsmap { - struct list_head fmr_list; - dev_t fmr_device; - uint32_t fmr_flags; - uint64_t fmr_physical; - uint64_t fmr_owner; - uint64_t fmr_length; -}; - -struct trace_event_raw_ext4_other_inode_update_time { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ino_t orig_ino; - uid_t uid; - gid_t gid; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_free_inode { - struct trace_entry ent; - dev_t dev; - ino_t ino; - uid_t uid; - gid_t gid; - __u64 blocks; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_request_inode { - struct trace_entry ent; - dev_t dev; - ino_t dir; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_allocate_inode { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ino_t dir; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_evict_inode { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int nlink; - char __data[0]; -}; - -struct trace_event_raw_ext4_drop_inode { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int drop; - char __data[0]; -}; - -struct trace_event_raw_ext4_nfs_commit_metadata { - struct trace_entry ent; - dev_t dev; - ino_t ino; - char __data[0]; -}; - -struct trace_event_raw_ext4_mark_inode_dirty { - struct trace_entry ent; - dev_t dev; - ino_t ino; - long unsigned int ip; - char __data[0]; -}; - -struct trace_event_raw_ext4_begin_ordered_truncate { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t new_size; - char __data[0]; -}; - -struct trace_event_raw_ext4__write_begin { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t pos; - unsigned int len; - char __data[0]; -}; - -struct trace_event_raw_ext4__write_end { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t pos; - unsigned int len; - unsigned int copied; - char __data[0]; -}; - -struct trace_event_raw_ext4_writepages { - struct trace_entry ent; - dev_t dev; - ino_t ino; - long int nr_to_write; - long int pages_skipped; - loff_t range_start; - loff_t range_end; - long unsigned int writeback_index; - int sync_mode; - char for_kupdate; - char range_cyclic; - char __data[0]; -}; - -struct trace_event_raw_ext4_da_write_pages { - struct trace_entry ent; - dev_t dev; - ino_t ino; - long unsigned int first_page; - long int nr_to_write; - int sync_mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_da_write_pages_extent { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 lblk; - __u32 len; - __u32 flags; - char __data[0]; -}; - -struct trace_event_raw_ext4_writepages_result { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int ret; - int pages_written; - long int pages_skipped; - long unsigned int writeback_index; - int sync_mode; - char __data[0]; -}; - -struct trace_event_raw_ext4__folio_op { - struct trace_entry ent; - dev_t dev; - ino_t ino; - long unsigned int index; - char __data[0]; -}; - -struct trace_event_raw_ext4_invalidate_folio_op { - struct trace_entry ent; - dev_t dev; - ino_t ino; - long unsigned int index; - size_t offset; - size_t length; - char __data[0]; -}; - -struct trace_event_raw_ext4_discard_blocks { - struct trace_entry ent; - dev_t dev; - __u64 blk; - __u64 count; - char __data[0]; -}; - -struct trace_event_raw_ext4__mb_new_pa { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 pa_pstart; - __u64 pa_lstart; - __u32 pa_len; - char __data[0]; -}; - -struct trace_event_raw_ext4_mb_release_inode_pa { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 block; - __u32 count; - char __data[0]; -}; - -struct trace_event_raw_ext4_mb_release_group_pa { - struct trace_entry ent; - dev_t dev; - __u64 pa_pstart; - __u32 pa_len; - char __data[0]; -}; - -struct trace_event_raw_ext4_discard_preallocations { - struct trace_entry ent; - dev_t dev; - ino_t ino; - unsigned int len; - char __data[0]; -}; - -struct trace_event_raw_ext4_mb_discard_preallocations { - struct trace_entry ent; - dev_t dev; - int needed; - char __data[0]; -}; - -struct trace_event_raw_ext4_request_blocks { - struct trace_entry ent; - dev_t dev; - ino_t ino; - unsigned int len; - __u32 logical; - __u32 lleft; - __u32 lright; - __u64 goal; - __u64 pleft; - __u64 pright; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_ext4_allocate_blocks { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 block; - unsigned int len; - __u32 logical; - __u32 lleft; - __u32 lright; - __u64 goal; - __u64 pleft; - __u64 pright; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_ext4_free_blocks { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 block; - long unsigned int count; - int flags; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_sync_file_enter { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ino_t parent; - int datasync; - char __data[0]; -}; - -struct trace_event_raw_ext4_sync_file_exit { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int ret; - char __data[0]; -}; - -struct trace_event_raw_ext4_sync_fs { - struct trace_entry ent; - dev_t dev; - int wait; - char __data[0]; -}; - -struct trace_event_raw_ext4_alloc_da_blocks { - struct trace_entry ent; - dev_t dev; - ino_t ino; - unsigned int data_blocks; - char __data[0]; -}; - -struct trace_event_raw_ext4_mballoc_alloc { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u32 orig_logical; - int orig_start; - __u32 orig_group; - int orig_len; - __u32 goal_logical; - int goal_start; - __u32 goal_group; - int goal_len; - __u32 result_logical; - int result_start; - __u32 result_group; - int result_len; - __u16 found; - __u16 groups; - __u16 buddy; - __u16 flags; - __u16 tail; - __u8 cr; - char __data[0]; -}; - -struct trace_event_raw_ext4_mballoc_prealloc { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u32 orig_logical; - int orig_start; - __u32 orig_group; - int orig_len; - __u32 result_logical; - int result_start; - __u32 result_group; - int result_len; - char __data[0]; -}; - -struct trace_event_raw_ext4__mballoc { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int result_start; - __u32 result_group; - int result_len; - char __data[0]; -}; - -struct trace_event_raw_ext4_forget { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 block; - int is_metadata; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_da_update_reserve_space { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 i_blocks; - int used_blocks; - int reserved_data_blocks; - int quota_claim; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_da_reserve_space { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 i_blocks; - int reserve_blocks; - int reserved_data_blocks; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_da_release_space { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 i_blocks; - int freed_blocks; - int reserved_data_blocks; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4__bitmap_load { - struct trace_entry ent; - dev_t dev; - __u32 group; - char __data[0]; -}; - -struct trace_event_raw_ext4_read_block_bitmap_load { - struct trace_entry ent; - dev_t dev; - __u32 group; - bool prefetch; - char __data[0]; -}; - -struct trace_event_raw_ext4__fallocate_mode { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t offset; - loff_t len; - int mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_fallocate_exit { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t pos; - unsigned int blocks; - int ret; - char __data[0]; -}; - -struct trace_event_raw_ext4_unlink_enter { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ino_t parent; - loff_t size; - char __data[0]; -}; - -struct trace_event_raw_ext4_unlink_exit { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int ret; - char __data[0]; -}; - -struct trace_event_raw_ext4__truncate { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 blocks; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_convert_to_initialized_enter { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t m_lblk; - unsigned int m_len; - ext4_lblk_t u_lblk; - unsigned int u_len; - ext4_fsblk_t u_pblk; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_convert_to_initialized_fastpath { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t m_lblk; - unsigned int m_len; - ext4_lblk_t u_lblk; - unsigned int u_len; - ext4_fsblk_t u_pblk; - ext4_lblk_t i_lblk; - unsigned int i_len; - ext4_fsblk_t i_pblk; - char __data[0]; -}; - -struct trace_event_raw_ext4__map_blocks_enter { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t lblk; - unsigned int len; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_ext4__map_blocks_exit { - struct trace_entry ent; - dev_t dev; - ino_t ino; - unsigned int flags; - ext4_fsblk_t pblk; - ext4_lblk_t lblk; - unsigned int len; - unsigned int mflags; - int ret; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_load_extent { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_fsblk_t pblk; - ext4_lblk_t lblk; - char __data[0]; -}; - -struct trace_event_raw_ext4_load_inode { - struct trace_entry ent; - dev_t dev; - ino_t ino; - char __data[0]; -}; - -struct trace_event_raw_ext4_journal_start_sb { - struct trace_entry ent; - dev_t dev; - long unsigned int ip; - int blocks; - int rsv_blocks; - int revoke_creds; - int type; - char __data[0]; -}; - -struct trace_event_raw_ext4_journal_start_inode { - struct trace_entry ent; - long unsigned int ino; - dev_t dev; - long unsigned int ip; - int blocks; - int rsv_blocks; - int revoke_creds; - int type; - char __data[0]; -}; - -struct trace_event_raw_ext4_journal_start_reserved { - struct trace_entry ent; - dev_t dev; - long unsigned int ip; - int blocks; - char __data[0]; -}; - -struct trace_event_raw_ext4__trim { - struct trace_entry ent; - int dev_major; - int dev_minor; - __u32 group; - int start; - int len; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_handle_unwritten_extents { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int flags; - ext4_lblk_t lblk; - ext4_fsblk_t pblk; - unsigned int len; - unsigned int allocated; - ext4_fsblk_t newblk; - char __data[0]; -}; - -struct trace_event_raw_ext4_get_implied_cluster_alloc_exit { - struct trace_entry ent; - dev_t dev; - unsigned int flags; - ext4_lblk_t lblk; - ext4_fsblk_t pblk; - unsigned int len; - int ret; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_show_extent { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_fsblk_t pblk; - ext4_lblk_t lblk; - short unsigned int len; - char __data[0]; -}; - -struct trace_event_raw_ext4_remove_blocks { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t from; - ext4_lblk_t to; - ext4_fsblk_t ee_pblk; - ext4_lblk_t ee_lblk; - short unsigned int ee_len; - ext4_fsblk_t pc_pclu; - ext4_lblk_t pc_lblk; - int pc_state; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_rm_leaf { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t start; - ext4_lblk_t ee_lblk; - ext4_fsblk_t ee_pblk; - short int ee_len; - ext4_fsblk_t pc_pclu; - ext4_lblk_t pc_lblk; - int pc_state; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_rm_idx { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_fsblk_t pblk; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_remove_space { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t start; - ext4_lblk_t end; - int depth; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_remove_space_done { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t start; - ext4_lblk_t end; - int depth; - ext4_fsblk_t pc_pclu; - ext4_lblk_t pc_lblk; - int pc_state; - short unsigned int eh_entries; - char __data[0]; -}; - -struct trace_event_raw_ext4__es_extent { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t lblk; - ext4_lblk_t len; - ext4_fsblk_t pblk; - char status; - char __data[0]; -}; - -struct trace_event_raw_ext4_es_remove_extent { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t lblk; - loff_t len; - char __data[0]; -}; - -struct trace_event_raw_ext4_es_find_extent_range_enter { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t lblk; - char __data[0]; -}; - -struct trace_event_raw_ext4_es_find_extent_range_exit { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t lblk; - ext4_lblk_t len; - ext4_fsblk_t pblk; - char status; - char __data[0]; -}; - -struct trace_event_raw_ext4_es_lookup_extent_enter { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t lblk; - char __data[0]; -}; - -struct trace_event_raw_ext4_es_lookup_extent_exit { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t lblk; - ext4_lblk_t len; - ext4_fsblk_t pblk; - char status; - int found; - char __data[0]; -}; - -struct trace_event_raw_ext4__es_shrink_enter { - struct trace_entry ent; - dev_t dev; - int nr_to_scan; - int cache_cnt; - char __data[0]; -}; - -struct trace_event_raw_ext4_es_shrink_scan_exit { - struct trace_entry ent; - dev_t dev; - int nr_shrunk; - int cache_cnt; - char __data[0]; -}; - -struct trace_event_raw_ext4_collapse_range { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t offset; - loff_t len; - char __data[0]; -}; - -struct trace_event_raw_ext4_insert_range { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t offset; - loff_t len; - char __data[0]; -}; - -struct trace_event_raw_ext4_es_shrink { - struct trace_entry ent; - dev_t dev; - int nr_shrunk; - long long unsigned int scan_time; - int nr_skipped; - int retried; - char __data[0]; -}; - -struct trace_event_raw_ext4_es_insert_delayed_extent { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t lblk; - ext4_lblk_t len; - ext4_fsblk_t pblk; - char status; - bool lclu_allocated; - bool end_allocated; - char __data[0]; -}; - -struct trace_event_raw_ext4_fsmap_class { - struct trace_entry ent; - dev_t dev; - dev_t keydev; - u32 agno; - u64 bno; - u64 len; - u64 owner; - char __data[0]; -}; - -struct trace_event_raw_ext4_getfsmap_class { - struct trace_entry ent; - dev_t dev; - dev_t keydev; - u64 block; - u64 len; - u64 owner; - u64 flags; - char __data[0]; -}; - -struct trace_event_raw_ext4_shutdown { - struct trace_entry ent; - dev_t dev; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_ext4_error { - struct trace_entry ent; - dev_t dev; - const char *function; - unsigned int line; - char __data[0]; -}; - -struct trace_event_raw_ext4_prefetch_bitmaps { - struct trace_entry ent; - dev_t dev; - __u32 group; - __u32 next; - __u32 ios; - char __data[0]; -}; - -struct trace_event_raw_ext4_lazy_itable_init { - struct trace_entry ent; - dev_t dev; - __u32 group; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_replay_scan { - struct trace_entry ent; - dev_t dev; - int error; - int off; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_replay { - struct trace_entry ent; - dev_t dev; - int tag; - int ino; - int priv1; - int priv2; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_commit_start { - struct trace_entry ent; - dev_t dev; - tid_t tid; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_commit_stop { - struct trace_entry ent; - dev_t dev; - int nblks; - int reason; - int num_fc; - int num_fc_ineligible; - int nblks_agg; - tid_t tid; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_stats { - struct trace_entry ent; - dev_t dev; - unsigned int fc_ineligible_rc[10]; - long unsigned int fc_commits; - long unsigned int fc_ineligible_commits; - long unsigned int fc_numblks; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_track_dentry { - struct trace_entry ent; - dev_t dev; - tid_t t_tid; - ino_t i_ino; - tid_t i_sync_tid; - int error; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_track_inode { - struct trace_entry ent; - dev_t dev; - tid_t t_tid; - ino_t i_ino; - tid_t i_sync_tid; - int error; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_track_range { - struct trace_entry ent; - dev_t dev; - tid_t t_tid; - ino_t i_ino; - tid_t i_sync_tid; - long int start; - long int end; - int error; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_cleanup { - struct trace_entry ent; - dev_t dev; - int j_fc_off; - int full; - tid_t tid; - char __data[0]; -}; - -struct trace_event_raw_ext4_update_sb { - struct trace_entry ent; - dev_t dev; - ext4_fsblk_t fsblk; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_data_offsets_ext4_other_inode_update_time {}; - -struct trace_event_data_offsets_ext4_free_inode {}; - -struct trace_event_data_offsets_ext4_request_inode {}; - -struct trace_event_data_offsets_ext4_allocate_inode {}; - -struct trace_event_data_offsets_ext4_evict_inode {}; - -struct trace_event_data_offsets_ext4_drop_inode {}; - -struct trace_event_data_offsets_ext4_nfs_commit_metadata {}; - -struct trace_event_data_offsets_ext4_mark_inode_dirty {}; - -struct trace_event_data_offsets_ext4_begin_ordered_truncate {}; - -struct trace_event_data_offsets_ext4__write_begin {}; - -struct trace_event_data_offsets_ext4__write_end {}; - -struct trace_event_data_offsets_ext4_writepages {}; - -struct trace_event_data_offsets_ext4_da_write_pages {}; - -struct trace_event_data_offsets_ext4_da_write_pages_extent {}; - -struct trace_event_data_offsets_ext4_writepages_result {}; - -struct trace_event_data_offsets_ext4__folio_op {}; - -struct trace_event_data_offsets_ext4_invalidate_folio_op {}; - -struct trace_event_data_offsets_ext4_discard_blocks {}; - -struct trace_event_data_offsets_ext4__mb_new_pa {}; - -struct trace_event_data_offsets_ext4_mb_release_inode_pa {}; - -struct trace_event_data_offsets_ext4_mb_release_group_pa {}; - -struct trace_event_data_offsets_ext4_discard_preallocations {}; - -struct trace_event_data_offsets_ext4_mb_discard_preallocations {}; - -struct trace_event_data_offsets_ext4_request_blocks {}; - -struct trace_event_data_offsets_ext4_allocate_blocks {}; - -struct trace_event_data_offsets_ext4_free_blocks {}; - -struct trace_event_data_offsets_ext4_sync_file_enter {}; - -struct trace_event_data_offsets_ext4_sync_file_exit {}; - -struct trace_event_data_offsets_ext4_sync_fs {}; - -struct trace_event_data_offsets_ext4_alloc_da_blocks {}; - -struct trace_event_data_offsets_ext4_mballoc_alloc {}; - -struct trace_event_data_offsets_ext4_mballoc_prealloc {}; - -struct trace_event_data_offsets_ext4__mballoc {}; - -struct trace_event_data_offsets_ext4_forget {}; - -struct trace_event_data_offsets_ext4_da_update_reserve_space {}; - -struct trace_event_data_offsets_ext4_da_reserve_space {}; - -struct trace_event_data_offsets_ext4_da_release_space {}; - -struct trace_event_data_offsets_ext4__bitmap_load {}; - -struct trace_event_data_offsets_ext4_read_block_bitmap_load {}; - -struct trace_event_data_offsets_ext4__fallocate_mode {}; - -struct trace_event_data_offsets_ext4_fallocate_exit {}; - -struct trace_event_data_offsets_ext4_unlink_enter {}; - -struct trace_event_data_offsets_ext4_unlink_exit {}; - -struct trace_event_data_offsets_ext4__truncate {}; - -struct trace_event_data_offsets_ext4_ext_convert_to_initialized_enter {}; - -struct trace_event_data_offsets_ext4_ext_convert_to_initialized_fastpath {}; - -struct trace_event_data_offsets_ext4__map_blocks_enter {}; - -struct trace_event_data_offsets_ext4__map_blocks_exit {}; - -struct trace_event_data_offsets_ext4_ext_load_extent {}; - -struct trace_event_data_offsets_ext4_load_inode {}; - -struct trace_event_data_offsets_ext4_journal_start_sb {}; - -struct trace_event_data_offsets_ext4_journal_start_inode {}; - -struct trace_event_data_offsets_ext4_journal_start_reserved {}; - -struct trace_event_data_offsets_ext4__trim {}; - -struct trace_event_data_offsets_ext4_ext_handle_unwritten_extents {}; - -struct trace_event_data_offsets_ext4_get_implied_cluster_alloc_exit {}; - -struct trace_event_data_offsets_ext4_ext_show_extent {}; - -struct trace_event_data_offsets_ext4_remove_blocks {}; - -struct trace_event_data_offsets_ext4_ext_rm_leaf {}; - -struct trace_event_data_offsets_ext4_ext_rm_idx {}; - -struct trace_event_data_offsets_ext4_ext_remove_space {}; - -struct trace_event_data_offsets_ext4_ext_remove_space_done {}; - -struct trace_event_data_offsets_ext4__es_extent {}; - -struct trace_event_data_offsets_ext4_es_remove_extent {}; - -struct trace_event_data_offsets_ext4_es_find_extent_range_enter {}; - -struct trace_event_data_offsets_ext4_es_find_extent_range_exit {}; - -struct trace_event_data_offsets_ext4_es_lookup_extent_enter {}; - -struct trace_event_data_offsets_ext4_es_lookup_extent_exit {}; - -struct trace_event_data_offsets_ext4__es_shrink_enter {}; - -struct trace_event_data_offsets_ext4_es_shrink_scan_exit {}; - -struct trace_event_data_offsets_ext4_collapse_range {}; - -struct trace_event_data_offsets_ext4_insert_range {}; - -struct trace_event_data_offsets_ext4_es_shrink {}; - -struct trace_event_data_offsets_ext4_es_insert_delayed_extent {}; - -struct trace_event_data_offsets_ext4_fsmap_class {}; - -struct trace_event_data_offsets_ext4_getfsmap_class {}; - -struct trace_event_data_offsets_ext4_shutdown {}; - -struct trace_event_data_offsets_ext4_error {}; - -struct trace_event_data_offsets_ext4_prefetch_bitmaps {}; - -struct trace_event_data_offsets_ext4_lazy_itable_init {}; - -struct trace_event_data_offsets_ext4_fc_replay_scan {}; - -struct trace_event_data_offsets_ext4_fc_replay {}; - -struct trace_event_data_offsets_ext4_fc_commit_start {}; - -struct trace_event_data_offsets_ext4_fc_commit_stop {}; - -struct trace_event_data_offsets_ext4_fc_stats {}; - -struct trace_event_data_offsets_ext4_fc_track_dentry {}; - -struct trace_event_data_offsets_ext4_fc_track_inode {}; - -struct trace_event_data_offsets_ext4_fc_track_range {}; - -struct trace_event_data_offsets_ext4_fc_cleanup {}; - -struct trace_event_data_offsets_ext4_update_sb {}; - -typedef void (*btf_trace_ext4_other_inode_update_time)(void *, struct inode *, ino_t); - -typedef void (*btf_trace_ext4_free_inode)(void *, struct inode *); - -typedef void (*btf_trace_ext4_request_inode)(void *, struct inode *, int); - -typedef void (*btf_trace_ext4_allocate_inode)(void *, struct inode *, struct inode *, int); - -typedef void (*btf_trace_ext4_evict_inode)(void *, struct inode *); - -typedef void (*btf_trace_ext4_drop_inode)(void *, struct inode *, int); - -typedef void (*btf_trace_ext4_nfs_commit_metadata)(void *, struct inode *); - -typedef void (*btf_trace_ext4_mark_inode_dirty)(void *, struct inode *, long unsigned int); - -typedef void (*btf_trace_ext4_begin_ordered_truncate)(void *, struct inode *, loff_t); - -typedef void (*btf_trace_ext4_write_begin)(void *, struct inode *, loff_t, unsigned int); - -typedef void (*btf_trace_ext4_da_write_begin)(void *, struct inode *, loff_t, unsigned int); - -typedef void (*btf_trace_ext4_write_end)(void *, struct inode *, loff_t, unsigned int, unsigned int); - -typedef void (*btf_trace_ext4_journalled_write_end)(void *, struct inode *, loff_t, unsigned int, unsigned int); - -typedef void (*btf_trace_ext4_da_write_end)(void *, struct inode *, loff_t, unsigned int, unsigned int); - -typedef void (*btf_trace_ext4_writepages)(void *, struct inode *, struct writeback_control *); - -typedef void (*btf_trace_ext4_da_write_pages)(void *, struct inode *, long unsigned int, struct writeback_control *); - -typedef void (*btf_trace_ext4_da_write_pages_extent)(void *, struct inode *, struct ext4_map_blocks *); - -typedef void (*btf_trace_ext4_writepages_result)(void *, struct inode *, struct writeback_control *, int, int); - -typedef void (*btf_trace_ext4_read_folio)(void *, struct inode *, struct folio *); - -typedef void (*btf_trace_ext4_release_folio)(void *, struct inode *, struct folio *); - -typedef void (*btf_trace_ext4_invalidate_folio)(void *, struct folio *, size_t, size_t); - -typedef void (*btf_trace_ext4_journalled_invalidate_folio)(void *, struct folio *, size_t, size_t); - -typedef void (*btf_trace_ext4_discard_blocks)(void *, struct super_block *, long long unsigned int, long long unsigned int); - -typedef void (*btf_trace_ext4_mb_new_inode_pa)(void *, struct ext4_allocation_context *, struct ext4_prealloc_space *); - -typedef void (*btf_trace_ext4_mb_new_group_pa)(void *, struct ext4_allocation_context *, struct ext4_prealloc_space *); - -typedef void (*btf_trace_ext4_mb_release_inode_pa)(void *, struct ext4_prealloc_space *, long long unsigned int, unsigned int); - -typedef void (*btf_trace_ext4_mb_release_group_pa)(void *, struct super_block *, struct ext4_prealloc_space *); - -typedef void (*btf_trace_ext4_discard_preallocations)(void *, struct inode *, unsigned int); - -typedef void (*btf_trace_ext4_mb_discard_preallocations)(void *, struct super_block *, int); - -typedef void (*btf_trace_ext4_request_blocks)(void *, struct ext4_allocation_request *); - -typedef void (*btf_trace_ext4_allocate_blocks)(void *, struct ext4_allocation_request *, long long unsigned int); - -typedef void (*btf_trace_ext4_free_blocks)(void *, struct inode *, __u64, long unsigned int, int); - -typedef void (*btf_trace_ext4_sync_file_enter)(void *, struct file *, int); - -typedef void (*btf_trace_ext4_sync_file_exit)(void *, struct inode *, int); - -typedef void (*btf_trace_ext4_sync_fs)(void *, struct super_block *, int); - -typedef void (*btf_trace_ext4_alloc_da_blocks)(void *, struct inode *); - -typedef void (*btf_trace_ext4_mballoc_alloc)(void *, struct ext4_allocation_context *); - -typedef void (*btf_trace_ext4_mballoc_prealloc)(void *, struct ext4_allocation_context *); - -typedef void (*btf_trace_ext4_mballoc_discard)(void *, struct super_block *, struct inode *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t); - -typedef void (*btf_trace_ext4_mballoc_free)(void *, struct super_block *, struct inode *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t); - -typedef void (*btf_trace_ext4_forget)(void *, struct inode *, int, __u64); - -typedef void (*btf_trace_ext4_da_update_reserve_space)(void *, struct inode *, int, int); - -typedef void (*btf_trace_ext4_da_reserve_space)(void *, struct inode *, int); - -typedef void (*btf_trace_ext4_da_release_space)(void *, struct inode *, int); - -typedef void (*btf_trace_ext4_mb_bitmap_load)(void *, struct super_block *, long unsigned int); - -typedef void (*btf_trace_ext4_mb_buddy_bitmap_load)(void *, struct super_block *, long unsigned int); - -typedef void (*btf_trace_ext4_load_inode_bitmap)(void *, struct super_block *, long unsigned int); - -typedef void (*btf_trace_ext4_read_block_bitmap_load)(void *, struct super_block *, long unsigned int, bool); - -typedef void (*btf_trace_ext4_fallocate_enter)(void *, struct inode *, loff_t, loff_t, int); - -typedef void (*btf_trace_ext4_punch_hole)(void *, struct inode *, loff_t, loff_t, int); - -typedef void (*btf_trace_ext4_zero_range)(void *, struct inode *, loff_t, loff_t, int); - -typedef void (*btf_trace_ext4_fallocate_exit)(void *, struct inode *, loff_t, unsigned int, int); - -typedef void (*btf_trace_ext4_unlink_enter)(void *, struct inode *, struct dentry *); - -typedef void (*btf_trace_ext4_unlink_exit)(void *, struct dentry *, int); - -typedef void (*btf_trace_ext4_truncate_enter)(void *, struct inode *); - -typedef void (*btf_trace_ext4_truncate_exit)(void *, struct inode *); - -typedef void (*btf_trace_ext4_ext_convert_to_initialized_enter)(void *, struct inode *, struct ext4_map_blocks *, struct ext4_extent *); - -typedef void (*btf_trace_ext4_ext_convert_to_initialized_fastpath)(void *, struct inode *, struct ext4_map_blocks *, struct ext4_extent *, struct ext4_extent *); - -typedef void (*btf_trace_ext4_ext_map_blocks_enter)(void *, struct inode *, ext4_lblk_t, unsigned int, unsigned int); - -typedef void (*btf_trace_ext4_ind_map_blocks_enter)(void *, struct inode *, ext4_lblk_t, unsigned int, unsigned int); - -typedef void (*btf_trace_ext4_ext_map_blocks_exit)(void *, struct inode *, unsigned int, struct ext4_map_blocks *, int); - -typedef void (*btf_trace_ext4_ind_map_blocks_exit)(void *, struct inode *, unsigned int, struct ext4_map_blocks *, int); - -typedef void (*btf_trace_ext4_ext_load_extent)(void *, struct inode *, ext4_lblk_t, ext4_fsblk_t); - -typedef void (*btf_trace_ext4_load_inode)(void *, struct super_block *, long unsigned int); - -typedef void (*btf_trace_ext4_journal_start_sb)(void *, struct super_block *, int, int, int, int, long unsigned int); - -typedef void (*btf_trace_ext4_journal_start_inode)(void *, struct inode *, int, int, int, int, long unsigned int); - -typedef void (*btf_trace_ext4_journal_start_reserved)(void *, struct super_block *, int, long unsigned int); - -typedef void (*btf_trace_ext4_trim_extent)(void *, struct super_block *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t); - -typedef void (*btf_trace_ext4_trim_all_free)(void *, struct super_block *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t); - -typedef void (*btf_trace_ext4_ext_handle_unwritten_extents)(void *, struct inode *, struct ext4_map_blocks *, int, unsigned int, ext4_fsblk_t); - -typedef void (*btf_trace_ext4_get_implied_cluster_alloc_exit)(void *, struct super_block *, struct ext4_map_blocks *, int); - -typedef void (*btf_trace_ext4_ext_show_extent)(void *, struct inode *, ext4_lblk_t, ext4_fsblk_t, short unsigned int); - -typedef void (*btf_trace_ext4_remove_blocks)(void *, struct inode *, struct ext4_extent *, ext4_lblk_t, ext4_fsblk_t, struct partial_cluster *); - -typedef void (*btf_trace_ext4_ext_rm_leaf)(void *, struct inode *, ext4_lblk_t, struct ext4_extent *, struct partial_cluster *); - -typedef void (*btf_trace_ext4_ext_rm_idx)(void *, struct inode *, ext4_fsblk_t); - -typedef void (*btf_trace_ext4_ext_remove_space)(void *, struct inode *, ext4_lblk_t, ext4_lblk_t, int); - -typedef void (*btf_trace_ext4_ext_remove_space_done)(void *, struct inode *, ext4_lblk_t, ext4_lblk_t, int, struct partial_cluster *, __le16); - -typedef void (*btf_trace_ext4_es_insert_extent)(void *, struct inode *, struct extent_status *); - -typedef void (*btf_trace_ext4_es_cache_extent)(void *, struct inode *, struct extent_status *); - -typedef void (*btf_trace_ext4_es_remove_extent)(void *, struct inode *, ext4_lblk_t, ext4_lblk_t); - -typedef void (*btf_trace_ext4_es_find_extent_range_enter)(void *, struct inode *, ext4_lblk_t); - -typedef void (*btf_trace_ext4_es_find_extent_range_exit)(void *, struct inode *, struct extent_status *); - -typedef void (*btf_trace_ext4_es_lookup_extent_enter)(void *, struct inode *, ext4_lblk_t); - -typedef void (*btf_trace_ext4_es_lookup_extent_exit)(void *, struct inode *, struct extent_status *, int); - -typedef void (*btf_trace_ext4_es_shrink_count)(void *, struct super_block *, int, int); - -typedef void (*btf_trace_ext4_es_shrink_scan_enter)(void *, struct super_block *, int, int); - -typedef void (*btf_trace_ext4_es_shrink_scan_exit)(void *, struct super_block *, int, int); - -typedef void (*btf_trace_ext4_collapse_range)(void *, struct inode *, loff_t, loff_t); - -typedef void (*btf_trace_ext4_insert_range)(void *, struct inode *, loff_t, loff_t); - -typedef void (*btf_trace_ext4_es_shrink)(void *, struct super_block *, int, u64, int, int); - -typedef void (*btf_trace_ext4_es_insert_delayed_extent)(void *, struct inode *, struct extent_status *, bool, bool); - -typedef void (*btf_trace_ext4_fsmap_low_key)(void *, struct super_block *, u32, u32, u64, u64, u64); - -typedef void (*btf_trace_ext4_fsmap_high_key)(void *, struct super_block *, u32, u32, u64, u64, u64); - -typedef void (*btf_trace_ext4_fsmap_mapping)(void *, struct super_block *, u32, u32, u64, u64, u64); - -typedef void (*btf_trace_ext4_getfsmap_low_key)(void *, struct super_block *, struct ext4_fsmap *); - -typedef void (*btf_trace_ext4_getfsmap_high_key)(void *, struct super_block *, struct ext4_fsmap *); - -typedef void (*btf_trace_ext4_getfsmap_mapping)(void *, struct super_block *, struct ext4_fsmap *); - -typedef void (*btf_trace_ext4_shutdown)(void *, struct super_block *, long unsigned int); - -typedef void (*btf_trace_ext4_error)(void *, struct super_block *, const char *, unsigned int); - -typedef void (*btf_trace_ext4_prefetch_bitmaps)(void *, struct super_block *, ext4_group_t, ext4_group_t, unsigned int); - -typedef void (*btf_trace_ext4_lazy_itable_init)(void *, struct super_block *, ext4_group_t); - -typedef void (*btf_trace_ext4_fc_replay_scan)(void *, struct super_block *, int, int); - -typedef void (*btf_trace_ext4_fc_replay)(void *, struct super_block *, int, int, int, int); - -typedef void (*btf_trace_ext4_fc_commit_start)(void *, struct super_block *, tid_t); - -typedef void (*btf_trace_ext4_fc_commit_stop)(void *, struct super_block *, int, int, tid_t); - -typedef void (*btf_trace_ext4_fc_stats)(void *, struct super_block *); - -typedef void (*btf_trace_ext4_fc_track_create)(void *, handle_t *, struct inode *, struct dentry *, int); - -typedef void (*btf_trace_ext4_fc_track_link)(void *, handle_t *, struct inode *, struct dentry *, int); - -typedef void (*btf_trace_ext4_fc_track_unlink)(void *, handle_t *, struct inode *, struct dentry *, int); - -typedef void (*btf_trace_ext4_fc_track_inode)(void *, handle_t *, struct inode *, int); - -typedef void (*btf_trace_ext4_fc_track_range)(void *, handle_t *, struct inode *, long int, long int, int); - -typedef void (*btf_trace_ext4_fc_cleanup)(void *, journal_t *, int, tid_t); - -typedef void (*btf_trace_ext4_update_sb)(void *, struct super_block *, ext4_fsblk_t, unsigned int); - -struct ext4_err_translation { - int code; - int errno; -}; - -enum { - Opt_bsd_df = 0, - Opt_minix_df = 1, - Opt_grpid___2 = 2, - Opt_nogrpid___2 = 3, - Opt_resgid___2 = 4, - Opt_resuid___2 = 5, - Opt_sb = 6, - Opt_nouid32 = 7, - Opt_debug___2 = 8, - Opt_removed = 9, - Opt_user_xattr___3 = 10, - Opt_acl___3 = 11, - Opt_auto_da_alloc = 12, - Opt_noauto_da_alloc = 13, - Opt_noload = 14, - Opt_commit = 15, - Opt_min_batch_time = 16, - Opt_max_batch_time = 17, - Opt_journal_dev = 18, - Opt_journal_path = 19, - Opt_journal_checksum = 20, - Opt_journal_async_commit = 21, - Opt_abort = 22, - Opt_data_journal = 23, - Opt_data_ordered = 24, - Opt_data_writeback = 25, - Opt_data_err_abort = 26, - Opt_data_err_ignore = 27, - Opt_test_dummy_encryption___2 = 28, - Opt_inlinecrypt___2 = 29, - Opt_usrjquota___2 = 30, - Opt_grpjquota___2 = 31, - Opt_quota___3 = 32, - Opt_noquota___3 = 33, - Opt_barrier___2 = 34, - Opt_nobarrier___2 = 35, - Opt_err___6 = 36, - Opt_usrquota___3 = 37, - Opt_grpquota___3 = 38, - Opt_prjquota___3 = 39, - Opt_dax___2 = 40, - Opt_dax_always = 41, - Opt_dax_inode = 42, - Opt_dax_never = 43, - Opt_stripe = 44, - Opt_delalloc = 45, - Opt_nodelalloc = 46, - Opt_warn_on_error = 47, - Opt_nowarn_on_error = 48, - Opt_mblk_io_submit = 49, - Opt_debug_want_extra_isize = 50, - Opt_nomblk_io_submit = 51, - Opt_block_validity = 52, - Opt_noblock_validity = 53, - Opt_inode_readahead_blks = 54, - Opt_journal_ioprio = 55, - Opt_dioread_nolock = 56, - Opt_dioread_lock = 57, - Opt_discard___4 = 58, - Opt_nodiscard___3 = 59, - Opt_init_itable = 60, - Opt_noinit_itable = 61, - Opt_max_dir_size_kb = 62, - Opt_nojournal_checksum = 63, - Opt_nombcache = 64, - Opt_no_prefetch_block_bitmaps = 65, - Opt_mb_optimize_scan = 66, - Opt_errors___4 = 67, - Opt_data = 68, - Opt_data_err = 69, - Opt_jqfmt = 70, - Opt_dax_type = 71, -}; - -struct mount_opts { - int token; - int mount_opt; - int flags; -}; - -struct ext4_fs_context { - char *s_qf_names[3]; - struct fscrypt_dummy_policy dummy_enc_policy; - int s_jquota_fmt; - short unsigned int qname_spec; - long unsigned int vals_s_flags; - long unsigned int mask_s_flags; - long unsigned int journal_devnum; - long unsigned int s_commit_interval; - long unsigned int s_stripe; - unsigned int s_inode_readahead_blks; - unsigned int s_want_extra_isize; - unsigned int s_li_wait_mult; - unsigned int s_max_dir_size_kb; - unsigned int journal_ioprio; - unsigned int vals_s_mount_opt; - unsigned int mask_s_mount_opt; - unsigned int vals_s_mount_opt2; - unsigned int mask_s_mount_opt2; - unsigned int opt_flags; - unsigned int spec; - u32 s_max_batch_time; - u32 s_min_batch_time; - kuid_t s_resuid; - kgid_t s_resgid; - ext4_fsblk_t s_sb_block; -}; - -struct ext4_mount_options { - long unsigned int s_mount_opt; - long unsigned int s_mount_opt2; - kuid_t s_resuid; - kgid_t s_resgid; - long unsigned int s_commit_interval; - u32 s_min_batch_time; - u32 s_max_batch_time; - int s_jquota_fmt; - char *s_qf_names[3]; -}; - -enum { - MOUNTPROC_NULL = 0, - MOUNTPROC_MNT = 1, - MOUNTPROC_DUMP = 2, - MOUNTPROC_UMNT = 3, - MOUNTPROC_UMNTALL = 4, - MOUNTPROC_EXPORT = 5, -}; - -enum { - MOUNTPROC3_NULL = 0, - MOUNTPROC3_MNT = 1, - MOUNTPROC3_DUMP = 2, - MOUNTPROC3_UMNT = 3, - MOUNTPROC3_UMNTALL = 4, - MOUNTPROC3_EXPORT = 5, -}; - -enum mountstat { - MNT_OK = 0, - MNT_EPERM = 1, - MNT_ENOENT = 2, - MNT_EACCES = 13, - MNT_EINVAL = 22, -}; - -enum mountstat3 { - MNT3_OK = 0, - MNT3ERR_PERM = 1, - MNT3ERR_NOENT = 2, - MNT3ERR_IO = 5, - MNT3ERR_ACCES = 13, - MNT3ERR_NOTDIR = 20, - MNT3ERR_INVAL = 22, - MNT3ERR_NAMETOOLONG = 63, - MNT3ERR_NOTSUPP = 10004, - MNT3ERR_SERVERFAULT = 10006, -}; - -struct mountres { - int errno; - struct nfs_fh *fh; - unsigned int *auth_count; - rpc_authflavor_t *auth_flavors; -}; - -enum open_claim_type4 { - NFS4_OPEN_CLAIM_NULL = 0, - NFS4_OPEN_CLAIM_PREVIOUS = 1, - NFS4_OPEN_CLAIM_DELEGATE_CUR = 2, - NFS4_OPEN_CLAIM_DELEGATE_PREV = 3, - NFS4_OPEN_CLAIM_FH = 4, - NFS4_OPEN_CLAIM_DELEG_CUR_FH = 5, - NFS4_OPEN_CLAIM_DELEG_PREV_FH = 6, -}; - -enum createmode4 { - NFS4_CREATE_UNCHECKED = 0, - NFS4_CREATE_GUARDED = 1, - NFS4_CREATE_EXCLUSIVE = 2, - NFS4_CREATE_EXCLUSIVE4_1 = 3, -}; - -enum pnfs_update_layout_reason { - PNFS_UPDATE_LAYOUT_UNKNOWN = 0, - PNFS_UPDATE_LAYOUT_NO_PNFS = 1, - PNFS_UPDATE_LAYOUT_RD_ZEROLEN = 2, - PNFS_UPDATE_LAYOUT_MDSTHRESH = 3, - PNFS_UPDATE_LAYOUT_NOMEM = 4, - PNFS_UPDATE_LAYOUT_BULK_RECALL = 5, - PNFS_UPDATE_LAYOUT_IO_TEST_FAIL = 6, - PNFS_UPDATE_LAYOUT_FOUND_CACHED = 7, - PNFS_UPDATE_LAYOUT_RETURN = 8, - PNFS_UPDATE_LAYOUT_RETRY = 9, - PNFS_UPDATE_LAYOUT_BLOCKED = 10, - PNFS_UPDATE_LAYOUT_INVALID_OPEN = 11, - PNFS_UPDATE_LAYOUT_SEND_LAYOUTGET = 12, - PNFS_UPDATE_LAYOUT_EXIT = 13, -}; - -struct nfs4_layoutget_args { - struct nfs4_sequence_args seq_args; - __u32 type; - struct pnfs_layout_range range; - __u64 minlength; - __u32 maxcount; - struct inode *inode; - struct nfs_open_context *ctx; - nfs4_stateid stateid; - struct nfs4_layoutdriver_data layout; -}; - -struct nfs4_layoutget { - struct nfs4_layoutget_args args; - struct nfs4_layoutget_res res; - const struct cred *cred; - struct pnfs_layout_hdr *lo; - gfp_t gfp_flags; -}; - -struct nfs4_layoutreturn_res { - struct nfs4_sequence_res seq_res; - u32 lrs_present; - nfs4_stateid stateid; -}; - -struct nfs4_layoutreturn { - struct nfs4_layoutreturn_args args; - struct nfs4_layoutreturn_res res; - const struct cred *cred; - struct nfs_client *clp; - struct inode *inode; - int rpc_status; - struct nfs4_xdr_opaque_data ld_private; -}; - -struct stateowner_id { - __u64 create_time; - __u64 uniquifier; -}; - -struct nfs4_open_delegation { - __u32 open_delegation_type; - union { - struct { - fmode_t type; - __u32 do_recall; - nfs4_stateid stateid; - long unsigned int pagemod_limit; - }; - struct { - __u32 why_no_delegation; - __u32 will_notify; - }; - }; -}; - -struct nfs_openargs { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *fh; - struct nfs_seqid *seqid; - int open_flags; - fmode_t fmode; - u32 share_access; - u32 access; - __u64 clientid; - struct stateowner_id id; - union { - struct { - struct iattr *attrs; - nfs4_verifier verifier; - }; - nfs4_stateid delegation; - __u32 delegation_type; - } u; - const struct qstr *name; - const struct nfs_server *server; - const u32 *bitmask; - const u32 *open_bitmap; - enum open_claim_type4 claim; - enum createmode4 createmode; - const struct nfs4_label *label; - umode_t umask; - struct nfs4_layoutget_args *lg_args; -}; - -struct nfs_openres { - struct nfs4_sequence_res seq_res; - nfs4_stateid stateid; - struct nfs_fh fh; - struct nfs4_change_info cinfo; - __u32 rflags; - struct nfs_fattr *f_attr; - struct nfs_seqid *seqid; - const struct nfs_server *server; - __u32 attrset[3]; - struct nfs4_string *owner; - struct nfs4_string *group_owner; - struct nfs4_open_delegation delegation; - __u32 access_request; - __u32 access_supported; - __u32 access_result; - struct nfs4_layoutget_res *lg_res; -}; - -struct nfs_open_confirmargs { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *fh; - nfs4_stateid *stateid; - struct nfs_seqid *seqid; -}; - -struct nfs_open_confirmres { - struct nfs4_sequence_res seq_res; - nfs4_stateid stateid; - struct nfs_seqid *seqid; -}; - -struct nfs4_opendata { - struct kref kref; - struct nfs_openargs o_arg; - struct nfs_openres o_res; - struct nfs_open_confirmargs c_arg; - struct nfs_open_confirmres c_res; - struct nfs4_string owner_name; - struct nfs4_string group_name; - struct nfs4_label *a_label; - struct nfs_fattr f_attr; - struct dentry *dir; - struct dentry *dentry; - struct nfs4_state_owner *owner; - struct nfs4_state *state; - struct iattr attrs; - struct nfs4_layoutget *lgp; - long unsigned int timestamp; - bool rpc_done; - bool file_created; - bool is_recover; - bool cancelled; - int rpc_status; -}; - -enum pnfs_layout_destroy_mode { - PNFS_LAYOUT_INVALIDATE = 0, - PNFS_LAYOUT_BULK_RETURN = 1, - PNFS_LAYOUT_FILE_BULK_RETURN = 2, -}; - -struct getdents_callback { - struct dir_context ctx; - char *name; - u64 ino; - int found; - int sequence; -}; - -enum { - CACHE_VALID = 0, - CACHE_NEGATIVE = 1, - CACHE_PENDING = 2, - CACHE_CLEANED = 3, -}; - -struct nfsd4_deviceid_map { - struct list_head hash; - u64 idx; - int fsid_type; - u32 fsid[0]; -}; - -struct svc_expkey { - struct cache_head h; - struct auth_domain *ek_client; - int ek_fsidtype; - u32 ek_fsid[6]; - struct path ek_path; - struct callback_head ek_rcu; -}; - -enum nfsd_fsid { - FSID_DEV = 0, - FSID_NUM = 1, - FSID_MAJOR_MINOR = 2, - FSID_ENCODE_DEV = 3, - FSID_UUID4_INUM = 4, - FSID_UUID8 = 5, - FSID_UUID16 = 6, - FSID_UUID16_INUM = 7, -}; - -struct flags___2 { - int flag; - char *name[2]; -}; - -enum rpc_accept_stat { - RPC_SUCCESS = 0, - RPC_PROG_UNAVAIL = 1, - RPC_PROG_MISMATCH = 2, - RPC_PROC_UNAVAIL = 3, - RPC_GARBAGE_ARGS = 4, - RPC_SYSTEM_ERR = 5, - RPC_DROP_REPLY = 60000, -}; - -enum opentype4 { - NFS4_OPEN_NOCREATE = 0, - NFS4_OPEN_CREATE = 1, -}; - -enum { - FATTR4_CLONE_BLKSIZE = 77, - FATTR4_SPACE_FREED = 78, - FATTR4_CHANGE_ATTR_TYPE = 79, - FATTR4_SEC_LABEL = 80, -}; - -enum gddrnf4_status { - GDD4_OK = 0, - GDD4_UNAVAIL = 1, -}; - -struct nfsd4_ssc_umount_item { - struct list_head nsui_list; - bool nsui_busy; - refcount_t nsui_refcnt; - long unsigned int nsui_expire; - struct vfsmount *nsui_vfsmount; - char nsui_ipaddr[64]; -}; - -enum vers_op { - NFSD_SET = 0, - NFSD_CLEAR = 1, - NFSD_TEST = 2, - NFSD_AVAIL = 3, -}; - -typedef struct { - stateid_t cs_stid; - unsigned char cs_type; - refcount_t cs_count; -} copy_stateid_t; - -struct nfs4_cpntf_state { - copy_stateid_t cp_stateid; - struct list_head cp_list; - stateid_t cp_p_stateid; - clientid_t cp_p_clid; - time64_t cpntf_time; -}; - -struct nfsd4_backchannel_ctl { - u32 bc_cb_program; - struct nfsd4_cb_sec bc_cb_sec; -}; - -struct nfsd4_bind_conn_to_session { - struct nfs4_sessionid sessionid; - u32 dir; -}; - -struct nfsd4_sessionid { - clientid_t clientid; - u32 sequence; - u32 reserved; -}; - -struct nfs4_ol_stateid; - -struct nfs4_openowner { - struct nfs4_stateowner oo_owner; - struct list_head oo_perclient; - struct list_head oo_close_lru; - struct nfs4_ol_stateid *oo_last_closed_stid; - time64_t oo_time; - unsigned char oo_flags; -}; - -struct nfs4_ol_stateid { - struct nfs4_stid st_stid; - struct list_head st_perfile; - struct list_head st_perstateowner; - struct list_head st_locks; - struct nfs4_stateowner *st_stateowner; - struct nfs4_clnt_odstate *st_clnt_odstate; - unsigned char st_access_bmap; - unsigned char st_deny_bmap; - struct nfs4_ol_stateid *st_openstp; - struct mutex st_mutex; -}; - -struct nfsd4_change_info { - u32 atomic; - u64 before_change; - u64 after_change; -}; - -struct nfsd4_access { - u32 ac_req_access; - u32 ac_supported; - u32 ac_resp_access; -}; - -struct nfsd4_close { - u32 cl_seqid; - stateid_t cl_stateid; -}; - -struct nfsd4_commit { - u64 co_offset; - u32 co_count; - nfs4_verifier co_verf; -}; - -struct nfsd4_create { - u32 cr_namelen; - char *cr_name; - u32 cr_type; - union { - struct { - u32 datalen; - char *data; - struct kvec first; - } link; - struct { - u32 specdata1; - u32 specdata2; - } dev; - } u; - u32 cr_bmval[3]; - struct iattr cr_iattr; - int cr_umask; - struct nfsd4_change_info cr_cinfo; - struct nfs4_acl *cr_acl; - struct xdr_netobj cr_label; -}; - -struct nfsd4_delegreturn { - stateid_t dr_stateid; -}; - -struct nfsd4_getattr { - u32 ga_bmval[3]; - struct svc_fh *ga_fhp; -}; - -struct nfsd4_link { - u32 li_namelen; - char *li_name; - struct nfsd4_change_info li_cinfo; -}; - -struct nfsd4_lock_denied { - clientid_t ld_clientid; - struct xdr_netobj ld_owner; - u64 ld_start; - u64 ld_length; - u32 ld_type; -}; - -struct nfsd4_lock { - u32 lk_type; - u32 lk_reclaim; - u64 lk_offset; - u64 lk_length; - u32 lk_is_new; - union { - struct { - u32 open_seqid; - stateid_t open_stateid; - u32 lock_seqid; - clientid_t clientid; - struct xdr_netobj owner; - } new; - struct { - stateid_t lock_stateid; - u32 lock_seqid; - } old; - } v; - stateid_t lk_resp_stateid; - struct nfsd4_lock_denied lk_denied; -}; - -struct nfsd4_lockt { - u32 lt_type; - clientid_t lt_clientid; - struct xdr_netobj lt_owner; - u64 lt_offset; - u64 lt_length; - struct nfsd4_lock_denied lt_denied; -}; - -struct nfsd4_locku { - u32 lu_type; - u32 lu_seqid; - stateid_t lu_stateid; - u64 lu_offset; - u64 lu_length; -}; - -struct nfsd4_lookup { - u32 lo_len; - char *lo_name; -}; - -struct nfsd4_putfh { - u32 pf_fhlen; - char *pf_fhval; - bool no_verify; -}; - -struct nfsd4_getxattr { - char *getxa_name; - u32 getxa_len; - void *getxa_buf; -}; - -struct nfsd4_setxattr { - u32 setxa_flags; - char *setxa_name; - char *setxa_buf; - u32 setxa_len; - struct nfsd4_change_info setxa_cinfo; -}; - -struct nfsd4_removexattr { - char *rmxa_name; - struct nfsd4_change_info rmxa_cinfo; -}; - -struct nfsd4_listxattrs { - u64 lsxa_cookie; - u32 lsxa_maxcount; - char *lsxa_buf; - u32 lsxa_len; -}; - -struct nfsd4_open { - u32 op_claim_type; - u32 op_fnamelen; - char *op_fname; - u32 op_delegate_type; - stateid_t op_delegate_stateid; - u32 op_why_no_deleg; - u32 op_create; - u32 op_createmode; - int op_umask; - u32 op_bmval[3]; - struct iattr op_iattr; - long: 64; - long: 64; - nfs4_verifier op_verf; - clientid_t op_clientid; - struct xdr_netobj op_owner; - u32 op_seqid; - u32 op_share_access; - u32 op_share_deny; - u32 op_deleg_want; - stateid_t op_stateid; - __be32 op_xdr_error; - struct nfsd4_change_info op_cinfo; - u32 op_rflags; - bool op_recall; - bool op_truncate; - bool op_created; - struct nfs4_openowner *op_openowner; - struct file *op_filp; - struct nfs4_file *op_file; - struct nfs4_ol_stateid *op_stp; - struct nfs4_clnt_odstate *op_odstate; - struct nfs4_acl *op_acl; - struct xdr_netobj op_label; - struct svc_rqst *op_rqstp; - long: 64; - long: 64; -}; - -struct nfsd4_open_confirm { - stateid_t oc_req_stateid; - u32 oc_seqid; - stateid_t oc_resp_stateid; -}; - -struct nfsd4_open_downgrade { - stateid_t od_stateid; - u32 od_seqid; - u32 od_share_access; - u32 od_deleg_want; - u32 od_share_deny; -}; - -struct nfsd4_read { - stateid_t rd_stateid; - u64 rd_offset; - u32 rd_length; - int rd_vlen; - struct nfsd_file *rd_nf; - struct svc_rqst *rd_rqstp; - struct svc_fh *rd_fhp; - u32 rd_eof; -}; - -struct nfsd4_readdir { - u64 rd_cookie; - nfs4_verifier rd_verf; - u32 rd_dircount; - u32 rd_maxcount; - u32 rd_bmval[3]; - struct svc_rqst *rd_rqstp; - struct svc_fh *rd_fhp; - struct readdir_cd common; - struct xdr_stream *xdr; - int cookie_offset; -}; - -struct nfsd4_release_lockowner { - clientid_t rl_clientid; - struct xdr_netobj rl_owner; -}; - -struct nfsd4_readlink { - struct svc_rqst *rl_rqstp; - struct svc_fh *rl_fhp; -}; - -struct nfsd4_remove { - u32 rm_namelen; - char *rm_name; - struct nfsd4_change_info rm_cinfo; -}; - -struct nfsd4_rename { - u32 rn_snamelen; - char *rn_sname; - u32 rn_tnamelen; - char *rn_tname; - struct nfsd4_change_info rn_sinfo; - struct nfsd4_change_info rn_tinfo; -}; - -struct nfsd4_secinfo { - u32 si_namelen; - char *si_name; - struct svc_export *si_exp; -}; - -struct nfsd4_secinfo_no_name { - u32 sin_style; - struct svc_export *sin_exp; -}; - -struct nfsd4_setattr { - stateid_t sa_stateid; - u32 sa_bmval[3]; - struct iattr sa_iattr; - struct nfs4_acl *sa_acl; - struct xdr_netobj sa_label; -}; - -struct nfsd4_setclientid { - nfs4_verifier se_verf; - struct xdr_netobj se_name; - u32 se_callback_prog; - u32 se_callback_netid_len; - char *se_callback_netid_val; - u32 se_callback_addr_len; - char *se_callback_addr_val; - u32 se_callback_ident; - clientid_t se_clientid; - nfs4_verifier se_confirm; -}; - -struct nfsd4_setclientid_confirm { - clientid_t sc_clientid; - nfs4_verifier sc_confirm; -}; - -struct nfsd4_test_stateid { - u32 ts_num_ids; - struct list_head ts_stateid_list; -}; - -struct nfsd4_free_stateid { - stateid_t fr_stateid; -}; - -struct nfsd4_get_dir_delegation { - u32 gdda_signal_deleg_avail; - u32 gdda_notification_types[1]; - struct timespec64 gdda_child_attr_delay; - struct timespec64 gdda_dir_attr_delay; - u32 gdda_child_attributes[3]; - u32 gdda_dir_attributes[3]; - u32 gddrnf_status; - nfs4_verifier gddr_cookieverf; - stateid_t gddr_stateid; - u32 gddr_notification[1]; - u32 gddr_child_attributes[3]; - u32 gddr_dir_attributes[3]; - bool gddrnf_will_signal_deleg_avail; -}; - -struct nfsd4_verify { - u32 ve_bmval[3]; - u32 ve_attrlen; - char *ve_attrval; -}; - -struct nfsd4_write { - stateid_t wr_stateid; - u64 wr_offset; - u32 wr_stable_how; - u32 wr_buflen; - struct xdr_buf wr_payload; - u32 wr_bytes_written; - u32 wr_how_written; - nfs4_verifier wr_verifier; -}; - -struct nfsd4_exchange_id { - nfs4_verifier verifier; - struct xdr_netobj clname; - u32 flags; - clientid_t clientid; - u32 seqid; - u32 spa_how; - u32 spo_must_enforce[3]; - u32 spo_must_allow[3]; - struct xdr_netobj nii_domain; - struct xdr_netobj nii_name; - struct timespec64 nii_time; -}; - -struct nfsd4_sequence { - struct nfs4_sessionid sessionid; - u32 seqid; - u32 slotid; - u32 maxslots; - u32 cachethis; - u32 status_flags; -}; - -struct nfsd4_destroy_session { - struct nfs4_sessionid sessionid; -}; - -struct nfsd4_destroy_clientid { - clientid_t clientid; -}; - -struct nfsd4_reclaim_complete { - u32 rca_one_fs; -}; - -struct nfsd4_deviceid { - u64 fsid_idx; - u32 generation; - u32 pad; -}; - -struct nfsd4_layout_seg { - u32 iomode; - u64 offset; - u64 length; -}; - -struct nfsd4_getdeviceinfo { - struct nfsd4_deviceid gd_devid; - u32 gd_layout_type; - u32 gd_maxcount; - u32 gd_notify_types; - void *gd_device; -}; - -struct nfsd4_layoutget { - u64 lg_minlength; - u32 lg_signal; - u32 lg_layout_type; - u32 lg_maxcount; - stateid_t lg_sid; - struct nfsd4_layout_seg lg_seg; - void *lg_content; -}; - -struct nfsd4_layoutcommit { - stateid_t lc_sid; - struct nfsd4_layout_seg lc_seg; - u32 lc_reclaim; - u32 lc_newoffset; - u64 lc_last_wr; - struct timespec64 lc_mtime; - u32 lc_layout_type; - u32 lc_up_len; - void *lc_up_layout; - bool lc_size_chg; - u64 lc_newsize; -}; - -struct nfsd4_layoutreturn { - u32 lr_return_type; - u32 lr_layout_type; - struct nfsd4_layout_seg lr_seg; - u32 lr_reclaim; - u32 lrf_body_len; - void *lrf_body; - stateid_t lr_sid; - bool lrs_present; -}; - -struct nfsd4_fallocate { - stateid_t falloc_stateid; - loff_t falloc_offset; - u64 falloc_length; -}; - -struct nfsd4_clone { - stateid_t cl_src_stateid; - stateid_t cl_dst_stateid; - u64 cl_src_pos; - u64 cl_dst_pos; - u64 cl_count; -}; - -struct nfsd4_copy { - stateid_t cp_src_stateid; - stateid_t cp_dst_stateid; - u64 cp_src_pos; - u64 cp_dst_pos; - u64 cp_count; - struct nl4_server *cp_src; - long unsigned int cp_flags; - __be32 nfserr; - struct nfsd42_write_res cp_res; - struct knfsd_fh fh; - struct nfs4_client *cp_clp; - struct nfsd_file *nf_src; - struct nfsd_file *nf_dst; - copy_stateid_t cp_stateid; - struct list_head copies; - struct task_struct *copy_task; - refcount_t refcount; - struct nfsd4_ssc_umount_item *ss_nsui; - struct nfs_fh c_fh; - nfs4_stateid stateid; - struct nfsd_net *cp_nn; -}; - -struct nfsd4_seek { - stateid_t seek_stateid; - loff_t seek_offset; - u32 seek_whence; - u32 seek_eof; - loff_t seek_pos; -}; - -struct nfsd4_offload_status { - stateid_t stateid; - u64 count; - __be32 status; - bool completed; -}; - -struct nfsd4_copy_notify { - stateid_t cpn_src_stateid; - struct nl4_server *cpn_dst; - stateid_t cpn_cnr_stateid; - struct timespec64 cpn_lease_time; - struct nl4_server *cpn_src; -}; - -union nfsd4_op_u { - struct nfsd4_access access; - struct nfsd4_close close; - struct nfsd4_commit commit; - struct nfsd4_create create; - struct nfsd4_delegreturn delegreturn; - struct nfsd4_getattr getattr; - struct svc_fh *getfh; - struct nfsd4_link link; - struct nfsd4_lock lock; - struct nfsd4_lockt lockt; - struct nfsd4_locku locku; - struct nfsd4_lookup lookup; - struct nfsd4_verify nverify; - struct nfsd4_open open; - struct nfsd4_open_confirm open_confirm; - struct nfsd4_open_downgrade open_downgrade; - struct nfsd4_putfh putfh; - struct nfsd4_read read; - struct nfsd4_readdir readdir; - struct nfsd4_readlink readlink; - struct nfsd4_remove remove; - struct nfsd4_rename rename; - clientid_t renew; - struct nfsd4_secinfo secinfo; - struct nfsd4_setattr setattr; - struct nfsd4_setclientid setclientid; - struct nfsd4_setclientid_confirm setclientid_confirm; - struct nfsd4_verify verify; - struct nfsd4_write write; - struct nfsd4_release_lockowner release_lockowner; - struct nfsd4_exchange_id exchange_id; - struct nfsd4_backchannel_ctl backchannel_ctl; - struct nfsd4_bind_conn_to_session bind_conn_to_session; - struct nfsd4_create_session create_session; - struct nfsd4_destroy_session destroy_session; - struct nfsd4_destroy_clientid destroy_clientid; - struct nfsd4_sequence sequence; - struct nfsd4_reclaim_complete reclaim_complete; - struct nfsd4_test_stateid test_stateid; - struct nfsd4_free_stateid free_stateid; - struct nfsd4_get_dir_delegation get_dir_delegation; - struct nfsd4_getdeviceinfo getdeviceinfo; - struct nfsd4_layoutget layoutget; - struct nfsd4_layoutcommit layoutcommit; - struct nfsd4_layoutreturn layoutreturn; - struct nfsd4_secinfo_no_name secinfo_no_name; - struct nfsd4_fallocate allocate; - struct nfsd4_fallocate deallocate; - struct nfsd4_clone clone; - struct nfsd4_copy copy; - struct nfsd4_offload_status offload_status; - struct nfsd4_copy_notify copy_notify; - struct nfsd4_seek seek; - struct nfsd4_getxattr getxattr; - struct nfsd4_setxattr setxattr; - struct nfsd4_listxattrs listxattrs; - struct nfsd4_removexattr removexattr; -}; - -struct nfsd4_operation; - -struct nfsd4_op { - u32 opnum; - __be32 status; - const struct nfsd4_operation *opdesc; - struct nfs4_replay *replay; - long: 64; - union nfsd4_op_u u; -}; - -struct nfsd4_operation { - __be32 (*op_func)(struct svc_rqst *, struct nfsd4_compound_state *, union nfsd4_op_u *); - void (*op_release)(union nfsd4_op_u *); - u32 op_flags; - char *op_name; - u32 (*op_rsize_bop)(const struct svc_rqst *, const struct nfsd4_op *); - void (*op_get_currentstateid)(struct nfsd4_compound_state *, union nfsd4_op_u *); - void (*op_set_currentstateid)(struct nfsd4_compound_state *, union nfsd4_op_u *); -}; - -struct svcxdr_tmpbuf { - struct svcxdr_tmpbuf *next; - char buf[0]; -}; - -struct nfsd4_compoundargs { - struct xdr_stream *xdr; - struct svcxdr_tmpbuf *to_free; - struct svc_rqst *rqstp; - char *tag; - u32 taglen; - u32 minorversion; - u32 client_opcnt; - u32 opcnt; - bool splice_ok; - struct nfsd4_op *ops; - struct nfsd4_op iops[8]; -}; - -enum nfsd4_op_flags { - ALLOWED_WITHOUT_FH = 1, - ALLOWED_ON_ABSENT_FS = 2, - ALLOWED_AS_FIRST_OP = 4, - OP_HANDLES_WRONGSEC = 8, - OP_IS_PUTFH_LIKE = 16, - OP_MODIFIES_SOMETHING = 32, - OP_CACHEME = 64, - OP_CLEAR_STATEID = 128, - OP_NONTRIVIAL_ERROR_ENCODE = 256, -}; - -struct nlm_share { - struct nlm_share *s_next; - struct nlm_host *s_host; - struct nlm_file *s_file; - struct xdr_netobj s_owner; - u32 s_access; - u32 s_mode; -}; - -struct cifsLockInfo { - struct list_head llist; - struct list_head blist; - wait_queue_head_t block_q; - __u64 offset; - __u64 length; - __u32 pid; - __u16 type; - __u16 flags; -}; - -enum smb3_rw_credits_trace { - cifs_trace_rw_credits_call_readv_adjust = 0, - cifs_trace_rw_credits_call_writev_adjust = 1, - cifs_trace_rw_credits_free_subreq = 2, - cifs_trace_rw_credits_issue_read_adjust = 3, - cifs_trace_rw_credits_issue_write_adjust = 4, - cifs_trace_rw_credits_no_adjust_up = 5, - cifs_trace_rw_credits_old_session = 6, - cifs_trace_rw_credits_read_response_add = 7, - cifs_trace_rw_credits_read_response_clear = 8, - cifs_trace_rw_credits_read_resubmit = 9, - cifs_trace_rw_credits_read_submit = 10, - cifs_trace_rw_credits_write_prepare = 11, - cifs_trace_rw_credits_write_response_add = 12, - cifs_trace_rw_credits_write_response_clear = 13, - cifs_trace_rw_credits_zero_in_flight = 14, -} __attribute__((mode(byte))); - -enum cifs_spnego_negtokeninit_actions { - ACT_cifs_gssapi_this_mech = 0, - ACT_cifs_neg_token_init_mech_type = 1, - NR__cifs_spnego_negtokeninit_actions = 2, -}; - -struct NTFS_BOOT { - u8 jump_code[3]; - u8 system_id[8]; - u8 bytes_per_sector[2]; - u8 sectors_per_clusters; - u8 unused1[7]; - u8 media_type; - u8 unused2[2]; - __le16 sct_per_track; - __le16 heads; - __le32 hidden_sectors; - u8 unused3[4]; - u8 bios_drive_num; - u8 unused4; - u8 signature_ex; - u8 unused5; - __le64 sectors_per_volume; - __le64 mft_clst; - __le64 mft2_clst; - s8 record_size; - u8 unused6[3]; - s8 index_size; - u8 unused7[3]; - __le64 serial_num; - __le32 check_sum; - u8 boot_code[426]; - u8 boot_magic[2]; -}; - -struct VOLUME_INFO { - __le64 res1; - u8 major_ver; - u8 minor_ver; - __le16 flags; -}; - -enum Opt { - Opt_uid___5 = 0, - Opt_gid___5 = 1, - Opt_umask___2 = 2, - Opt_dmask___2 = 3, - Opt_fmask___2 = 4, - Opt_immutable___2 = 5, - Opt_discard___5 = 6, - Opt_force = 7, - Opt_sparse = 8, - Opt_nohidden = 9, - Opt_hide_dot_files = 10, - Opt_windows_names = 11, - Opt_showmeta = 12, - Opt_acl___4 = 13, - Opt_iocharset___2 = 14, - Opt_prealloc = 15, - Opt_nocase___3 = 16, - Opt_err___7 = 17, -}; - -enum ovl_path_type { - __OVL_PATH_UPPER = 1, - __OVL_PATH_MERGE = 2, - __OVL_PATH_ORIGIN = 4, -}; - -struct xfs_attr3_rmt_hdr { - __be32 rm_magic; - __be32 rm_offset; - __be32 rm_bytes; - __be32 rm_crc; - uuid_t rm_uuid; - __be64 rm_owner; - __be64 rm_blkno; - __be64 rm_lsn; -}; - -struct xfs_legacy_timestamp { - __be32 t_sec; - __be32 t_nsec; -}; - -struct xfs_da_node_hdr { - struct xfs_da_blkinfo info; - __be16 __count; - __be16 __level; -}; - -struct xfs_da_node_entry { - __be32 hashval; - __be32 before; -}; - -struct xfs_da_intnode { - struct xfs_da_node_hdr hdr; - struct xfs_da_node_entry __btree[0]; -}; - -struct xfs_attr_leaf_map { - __be16 base; - __be16 size; -}; - -typedef struct xfs_attr_leaf_map xfs_attr_leaf_map_t; - -struct xfs_attr_leaf_hdr { - xfs_da_blkinfo_t info; - __be16 count; - __be16 usedbytes; - __be16 firstused; - __u8 holes; - __u8 pad1; - xfs_attr_leaf_map_t freemap[3]; -}; - -typedef struct xfs_attr_leaf_hdr xfs_attr_leaf_hdr_t; - -struct xfs_attr_leaf_entry { - __be32 hashval; - __be16 nameidx; - __u8 flags; - __u8 pad2; -}; - -typedef struct xfs_attr_leaf_entry xfs_attr_leaf_entry_t; - -struct xfs_attr_leaf_name_remote { - __be32 valueblk; - __be32 valuelen; - __u8 namelen; - __u8 name[0]; -}; - -typedef struct xfs_attr_leaf_name_remote xfs_attr_leaf_name_remote_t; - -struct xfs_attr_leafblock { - xfs_attr_leaf_hdr_t hdr; - xfs_attr_leaf_entry_t entries[0]; -}; - -typedef struct xfs_attr_leafblock xfs_attr_leafblock_t; - -struct xfs_attr3_leaf_hdr { - struct xfs_da3_blkinfo info; - __be16 count; - __be16 usedbytes; - __be16 firstused; - __u8 holes; - __u8 pad1; - struct xfs_attr_leaf_map freemap[3]; - __be32 pad2; -}; - -struct xfs_attr3_leafblock { - struct xfs_attr3_leaf_hdr hdr; - struct xfs_attr_leaf_entry entries[0]; -}; - -struct xfs_da3_icnode_hdr { - uint32_t forw; - uint32_t back; - uint16_t magic; - uint16_t count; - uint16_t level; - struct xfs_da_node_entry *btree; -}; - -struct xfs_attr3_icleaf_hdr { - uint32_t forw; - uint32_t back; - uint16_t magic; - uint16_t count; - uint16_t usedbytes; - uint32_t firstused; - __u8 holes; - struct { - uint16_t base; - uint16_t size; - } freemap[3]; -}; - -struct xfs_bstime { - __kernel_long_t tv_sec; - __s32 tv_nsec; -}; - -typedef struct xfs_bstime xfs_bstime_t; - -struct xfs_bstat { - __u64 bs_ino; - __u16 bs_mode; - __u16 bs_nlink; - __u32 bs_uid; - __u32 bs_gid; - __u32 bs_rdev; - __s32 bs_blksize; - __s64 bs_size; - xfs_bstime_t bs_atime; - xfs_bstime_t bs_mtime; - xfs_bstime_t bs_ctime; - int64_t bs_blocks; - __u32 bs_xflags; - __s32 bs_extsize; - __s32 bs_extents; - __u32 bs_gen; - __u16 bs_projid_lo; - __u16 bs_forkoff; - __u16 bs_projid_hi; - uint16_t bs_sick; - uint16_t bs_checked; - unsigned char bs_pad[2]; - __u32 bs_cowextsize; - __u32 bs_dmevmask; - __u16 bs_dmstate; - __u16 bs_aextents; -}; - -struct xfs_bulkstat { - uint64_t bs_ino; - uint64_t bs_size; - uint64_t bs_blocks; - uint64_t bs_xflags; - int64_t bs_atime; - int64_t bs_mtime; - int64_t bs_ctime; - int64_t bs_btime; - uint32_t bs_gen; - uint32_t bs_uid; - uint32_t bs_gid; - uint32_t bs_projectid; - uint32_t bs_atime_nsec; - uint32_t bs_mtime_nsec; - uint32_t bs_ctime_nsec; - uint32_t bs_btime_nsec; - uint32_t bs_blksize; - uint32_t bs_rdev; - uint32_t bs_cowextsize_blks; - uint32_t bs_extsize_blks; - uint32_t bs_nlink; - uint32_t bs_extents; - uint32_t bs_aextents; - uint16_t bs_version; - uint16_t bs_forkoff; - uint16_t bs_sick; - uint16_t bs_checked; - uint16_t bs_mode; - uint16_t bs_pad2; - uint64_t bs_extents64; - uint64_t bs_pad[6]; -}; - -struct xfs_inogrp { - __u64 xi_startino; - __s32 xi_alloccount; - __u64 xi_allocmask; -}; - -struct xfs_inumbers { - uint64_t xi_startino; - uint64_t xi_allocmask; - uint8_t xi_alloccount; - uint8_t xi_version; - uint8_t xi_padding[6]; -}; - -struct xfs_ibulk { - struct xfs_mount *mp; - struct mnt_idmap *idmap; - void *ubuffer; - xfs_ino_t startino; - unsigned int icount; - unsigned int ocount; - unsigned int flags; -}; - -typedef int (*bulkstat_one_fmt_pf)(struct xfs_ibulk *, const struct xfs_bulkstat *); - -typedef int (*inumbers_fmt_pf)(struct xfs_ibulk *, const struct xfs_inumbers *); - -struct xfs_bstat_chunk { - bulkstat_one_fmt_pf formatter; - struct xfs_ibulk *breq; - struct xfs_bulkstat *buf; -}; - -struct xfs_inumbers_chunk { - inumbers_fmt_pf formatter; - struct xfs_ibulk *breq; -}; - -struct xfs_dq_logformat { - uint16_t qlf_type; - uint16_t qlf_size; - xfs_dqid_t qlf_id; - int64_t qlf_blkno; - int32_t qlf_len; - uint32_t qlf_boffset; -}; - -struct xfs_qoff_logformat { - short unsigned int qf_type; - short unsigned int qf_size; - unsigned int qf_flags; - char qf_pad[12]; -}; - -struct xfs_phys_extent { - uint64_t pe_startblock; - uint32_t pe_len; - uint32_t pe_flags; -}; - -struct xfs_cui_log_format { - uint16_t cui_type; - uint16_t cui_size; - uint32_t cui_nextents; - uint64_t cui_id; - struct xfs_phys_extent cui_extents[0]; -}; - -struct xfs_cud_log_format { - uint16_t cud_type; - uint16_t cud_size; - uint32_t __pad; - uint64_t cud_cui_id; -}; - -struct xfs_cui_log_item { - struct xfs_log_item cui_item; - atomic_t cui_refcount; - atomic_t cui_next_extent; - struct xfs_cui_log_format cui_format; -}; - -struct xfs_cud_log_item { - struct xfs_log_item cud_item; - struct xfs_cui_log_item *cud_cuip; - struct xfs_cud_log_format cud_format; -}; - -struct debugfs_fs_info { - kuid_t uid; - kgid_t gid; - umode_t mode; - unsigned int opts; -}; - -enum { - Opt_uid___6 = 0, - Opt_gid___6 = 1, - Opt_mode___4 = 2, - Opt_source___2 = 3, -}; - -enum { - __PAGE_UNLOCK_BIT = 0, - PAGE_UNLOCK = 1, - __PAGE_UNLOCK_SEQ = 0, - __PAGE_START_WRITEBACK_BIT = 1, - PAGE_START_WRITEBACK = 2, - __PAGE_START_WRITEBACK_SEQ = 1, - __PAGE_END_WRITEBACK_BIT = 2, - PAGE_END_WRITEBACK = 4, - __PAGE_END_WRITEBACK_SEQ = 2, - __PAGE_SET_ORDERED_BIT = 3, - PAGE_SET_ORDERED = 8, - __PAGE_SET_ORDERED_SEQ = 3, -}; - -struct btrfs_map_token { - struct extent_buffer *eb; - char *kaddr; - long unsigned int offset; -}; - -struct btrfs_replace_extent_info { - u64 disk_offset; - u64 disk_len; - u64 data_offset; - u64 data_len; - u64 file_offset; - char *extent_buf; - bool is_new_extent; - bool update_times; - int qgroup_reserved; - int insertions; -}; - -struct btrfs_drop_extents_args { - struct btrfs_path *path; - u64 start; - u64 end; - bool drop_cache; - bool replace_extent; - u32 extent_item_size; - u64 drop_end; - u64 bytes_found; - bool extent_inserted; -}; - -struct btrfs_file_private { - void *filldir_buf; - u64 last_index; - struct extent_state *llseek_cached_state; - struct task_struct *owner_task; -}; - -struct btrfs_zoned_device_info { - u64 zone_size; - u8 zone_size_shift; - u32 nr_zones; - unsigned int max_active_zones; - int reserved_active_zones; - atomic_t active_zones_left; - long unsigned int *seq_zones; - long unsigned int *empty_zones; - long unsigned int *active_zones; - struct blk_zone *zone_cache; - struct blk_zone sb_zones[6]; -}; - -struct btrfs_swapfile_pin { - struct rb_node node; - void *ptr; - struct inode *inode; - bool is_block_group; - int bg_extent_count; -}; - -struct btrfs_backref_shared_cache_entry { - u64 bytenr; - u64 gen; - bool is_shared; -}; - -struct btrfs_backref_share_check_ctx { - struct ulist refs; - u64 curr_leaf_bytenr; - u64 prev_leaf_bytenr; - struct btrfs_backref_shared_cache_entry path_cache_entries[8]; - bool use_path_cache; - struct { - u64 bytenr; - bool is_shared; - } prev_extents_cache[8]; - int prev_extents_cache_slot; -}; - -struct btrfs_iget_args { - u64 ino; - struct btrfs_root *root; -}; - -struct btrfs_rename_ctx { - u64 index; -}; - -struct data_reloc_warn { - struct btrfs_path path; - struct btrfs_fs_info *fs_info; - u64 extent_item_size; - u64 logical; - int mirror_num; -}; - -struct async_extent { - u64 start; - u64 ram_size; - u64 compressed_size; - struct folio **folios; - long unsigned int nr_folios; - int compress_type; - struct list_head list; -}; - -struct async_cow; - -struct async_chunk { - struct btrfs_inode *inode; - struct folio *locked_folio; - u64 start; - u64 end; - blk_opf_t write_flags; - struct list_head extents; - struct cgroup_subsys_state *blkcg_css; - struct btrfs_work work; - struct async_cow *async_cow; -}; - -struct async_cow { - atomic_t num_chunks; - struct async_chunk chunks[0]; -}; - -struct can_nocow_file_extent_args { - u64 start; - u64 end; - bool writeback_path; - bool strict; - bool free_path; - struct btrfs_file_extent file_extent; -}; - -struct btrfs_writepage_fixup { - struct folio *folio; - struct btrfs_inode *inode; - struct btrfs_work work; -}; - -struct dir_entry { - u64 ino; - u64 offset; - unsigned int type; - int name_len; -}; - -struct btrfs_delalloc_work { - struct inode *inode; - struct completion completion; - struct list_head list; - struct btrfs_work work; -}; - -struct btrfs_encoded_read_private { - wait_queue_head_t wait; - atomic_t pending; - blk_status_t status; -}; - -struct btrfs_swap_info { - u64 start; - u64 block_start; - u64 block_len; - u64 lowest_ppage; - u64 highest_ppage; - long unsigned int nr_pages; - int nr_extents; -}; - -typedef union { -} release_pages_arg; - -struct bvec_iter_all { - struct bio_vec bv; - int idx; - unsigned int done; -}; - -enum { - F2FS_GET_BLOCK_DEFAULT = 0, - F2FS_GET_BLOCK_FIEMAP = 1, - F2FS_GET_BLOCK_BMAP = 2, - F2FS_GET_BLOCK_DIO = 3, - F2FS_GET_BLOCK_PRE_DIO = 4, - F2FS_GET_BLOCK_PRE_AIO = 5, - F2FS_GET_BLOCK_PRECACHE = 6, -}; - -enum need_lock_type { - LOCK_REQ___2 = 0, - LOCK_DONE = 1, - LOCK_RETRY = 2, -}; - -struct bio_entry { - struct bio *bio; - struct list_head list; -}; - -struct bio_post_read_ctx; - -struct bio_iostat_ctx { - struct f2fs_sb_info *sbi; - long unsigned int submit_ts; - enum page_type type; - struct bio_post_read_ctx *post_read_ctx; -}; - -struct bio_post_read_ctx { - struct bio *bio; - struct f2fs_sb_info *sbi; - struct work_struct work; - unsigned int enabled_steps; - bool decompression_attempted; - block_t fs_blkaddr; -}; - -enum bio_post_read_step { - STEP_DECRYPT = 1, - STEP_DECOMPRESS = 0, - STEP_VERITY = 0, -}; - -struct fsverity_info; - -struct crypto_queue { - struct list_head list; - struct list_head *backlog; - unsigned int qlen; - unsigned int max_qlen; -}; - -struct crypto_attr_alg { - char name[128]; -}; - -enum { - CRYPTO_MSG_ALG_REQUEST = 0, - CRYPTO_MSG_ALG_REGISTER = 1, - CRYPTO_MSG_ALG_LOADED = 2, -}; - -struct crypto_larval { - struct crypto_alg alg; - struct crypto_alg *adult; - struct completion completion; - u32 mask; - bool test_started; -}; - -enum { - CRYPTOA_UNSPEC = 0, - CRYPTOA_ALG = 1, - CRYPTOA_TYPE = 2, - __CRYPTOA_MAX = 3, -}; - -struct cryptomgr_param { - struct rtattr *tb[34]; - struct { - struct rtattr attr; - struct crypto_attr_type data; - } type; - struct { - struct rtattr attr; - struct crypto_attr_alg data; - } attrs[32]; - char template[128]; - struct crypto_larval *larval; - u32 otype; - u32 omask; -}; - -struct crypto_test_param { - char driver[128]; - char alg[128]; - u32 type; -}; - -struct serpent_ctx { - u32 expkey[132]; -}; - -struct drbg_string { - const unsigned char *buf; - size_t len; - struct list_head list; -}; - -typedef uint32_t drbg_flag_t; - -struct drbg_core { - drbg_flag_t flags; - __u8 statelen; - __u8 blocklen_bytes; - char cra_name[128]; - char backend_cra_name[128]; -}; - -struct drbg_state; - -struct drbg_state_ops { - int (*update)(struct drbg_state *, struct list_head *, int); - int (*generate)(struct drbg_state *, unsigned char *, unsigned int, struct list_head *); - int (*crypto_init)(struct drbg_state *); - int (*crypto_fini)(struct drbg_state *); -}; - -enum drbg_seed_state { - DRBG_SEED_STATE_UNSEEDED = 0, - DRBG_SEED_STATE_PARTIAL = 1, - DRBG_SEED_STATE_FULL = 2, -}; - -struct drbg_state { - struct mutex drbg_mutex; - unsigned char *V; - unsigned char *Vbuf; - unsigned char *C; - unsigned char *Cbuf; - size_t reseed_ctr; - size_t reseed_threshold; - unsigned char *scratchpad; - unsigned char *scratchpadbuf; - void *priv_data; - struct crypto_skcipher *ctr_handle; - struct skcipher_request *ctr_req; - __u8 *outscratchpadbuf; - __u8 *outscratchpad; - struct crypto_wait ctr_wait; - struct scatterlist sg_in; - struct scatterlist sg_out; - enum drbg_seed_state seeded; - long unsigned int last_seed_time; - bool pr; - bool fips_primed; - unsigned char *prev; - struct crypto_rng *jent; - const struct drbg_state_ops *d_ops; - const struct drbg_core *core; - struct drbg_string test_data; -}; - -enum drbg_prefixes { - DRBG_PREFIX0 = 0, - DRBG_PREFIX1 = 1, - DRBG_PREFIX2 = 2, - DRBG_PREFIX3 = 3, -}; - -struct sdesc { - struct shash_desc shash; - char ctx[0]; -}; - -enum blk_integrity_flags { - BLK_INTEGRITY_NOVERIFY = 1, - BLK_INTEGRITY_NOGENERATE = 2, - BLK_INTEGRITY_DEVICE_CAPABLE = 4, - BLK_INTEGRITY_REF_TAG = 8, - BLK_INTEGRITY_STACKED = 16, -}; - -struct blk_ia_range_sysfs_entry { - struct attribute attr; - ssize_t (*show)(struct blk_independent_access_range *, char *); -}; - -struct io_uring_file_index_range { - __u32 off; - __u32 len; - __u64 resv; -}; - -struct io_fadvise { - struct file *file; - u64 offset; - u64 len; - u32 advice; -}; - -struct io_madvise { - struct file *file; - u64 addr; - u64 len; - u32 advice; -}; - -struct rusage { - struct __kernel_old_timeval ru_utime; - struct __kernel_old_timeval ru_stime; - __kernel_long_t ru_maxrss; - __kernel_long_t ru_ixrss; - __kernel_long_t ru_idrss; - __kernel_long_t ru_isrss; - __kernel_long_t ru_minflt; - __kernel_long_t ru_majflt; - __kernel_long_t ru_nswap; - __kernel_long_t ru_inblock; - __kernel_long_t ru_oublock; - __kernel_long_t ru_msgsnd; - __kernel_long_t ru_msgrcv; - __kernel_long_t ru_nsignals; - __kernel_long_t ru_nvcsw; - __kernel_long_t ru_nivcsw; -}; - -struct siginfo { - union { - struct { - int si_signo; - int si_errno; - int si_code; - union __sifields _sifields; - }; - int _si_pad[32]; - }; -}; - -struct waitid_info { - pid_t pid; - uid_t uid; - int status; - int cause; -}; - -struct wait_opts { - enum pid_type wo_type; - int wo_flags; - struct pid *wo_pid; - struct waitid_info *wo_info; - int wo_stat; - struct rusage *wo_rusage; - wait_queue_entry_t child_wait; - int notask_error; -}; - -struct io_waitid_async { - struct io_kiocb *req; - struct wait_opts wo; -}; - -struct io_waitid { - struct file *file; - int which; - pid_t upid; - int options; - atomic_t refs; - struct wait_queue_head *head; - struct siginfo *infop; - struct waitid_info info; -}; - -struct karatsuba_ctx { - struct karatsuba_ctx *next; - mpi_ptr_t tspace; - mpi_size_t tspace_size; - mpi_ptr_t tp; - mpi_size_t tp_size; -}; - -typedef struct { - const uint8_t *externalDict; - size_t extDictSize; - const uint8_t *prefixEnd; - size_t prefixSize; -} LZ4_streamDecode_t_internal; - -typedef union { - long long unsigned int table[4]; - LZ4_streamDecode_t_internal internal_donotuse; -} LZ4_streamDecode_t; - -typedef enum { - endOnOutputSize = 0, - endOnInputSize = 1, -} endCondition_directive; - -typedef enum { - decode_full_block = 0, - partial_decode = 1, -} earlyEnd_directive; - -struct cpu_rmap { - struct kref refcount; - u16 size; - void **obj; - struct { - u16 index; - u16 dist; - } near[0]; -}; - -struct irq_glue { - struct irq_affinity_notify notify; - struct cpu_rmap *rmap; - u16 index; -}; - -struct sg_splitter { - struct scatterlist *in_sg0; - int nents; - off_t skip_sg0; - unsigned int length_last_sg; - struct scatterlist *out_sg; -}; - -struct bus_attribute { - struct attribute attr; - ssize_t (*show)(const struct bus_type *, char *); - ssize_t (*store)(const struct bus_type *, const char *, size_t); -}; - -enum pci_mmap_state { - pci_mmap_io = 0, - pci_mmap_mem = 1, -}; - -enum pcie_link_width { - PCIE_LNK_WIDTH_RESRV = 0, - PCIE_LNK_X1 = 1, - PCIE_LNK_X2 = 2, - PCIE_LNK_X4 = 4, - PCIE_LNK_X8 = 8, - PCIE_LNK_X12 = 12, - PCIE_LNK_X16 = 16, - PCIE_LNK_X32 = 32, - PCIE_LNK_WIDTH_UNKNOWN = 255, -}; - -enum pci_bus_speed { - PCI_SPEED_33MHz = 0, - PCI_SPEED_66MHz = 1, - PCI_SPEED_66MHz_PCIX = 2, - PCI_SPEED_100MHz_PCIX = 3, - PCI_SPEED_133MHz_PCIX = 4, - PCI_SPEED_66MHz_PCIX_ECC = 5, - PCI_SPEED_100MHz_PCIX_ECC = 6, - PCI_SPEED_133MHz_PCIX_ECC = 7, - PCI_SPEED_66MHz_PCIX_266 = 9, - PCI_SPEED_100MHz_PCIX_266 = 10, - PCI_SPEED_133MHz_PCIX_266 = 11, - AGP_UNKNOWN = 12, - AGP_1X = 13, - AGP_2X = 14, - AGP_4X = 15, - AGP_8X = 16, - PCI_SPEED_66MHz_PCIX_533 = 17, - PCI_SPEED_100MHz_PCIX_533 = 18, - PCI_SPEED_133MHz_PCIX_533 = 19, - PCIE_SPEED_2_5GT = 20, - PCIE_SPEED_5_0GT = 21, - PCIE_SPEED_8_0GT = 22, - PCIE_SPEED_16_0GT = 23, - PCIE_SPEED_32_0GT = 24, - PCIE_SPEED_64_0GT = 25, - PCI_SPEED_UNKNOWN = 255, -}; - -enum pci_mmap_api { - PCI_MMAP_SYSFS = 0, - PCI_MMAP_PROCFS = 1, -}; - -struct clk_multiplier { - struct clk_hw hw; - void *reg; - u8 shift; - u8 width; - u8 flags; - spinlock_t *lock; -}; - -struct clk_composite { - struct clk_hw hw; - struct clk_ops ops; - struct clk_hw *mux_hw; - struct clk_hw *rate_hw; - struct clk_hw *gate_hw; - const struct clk_ops *mux_ops; - const struct clk_ops *rate_ops; - const struct clk_ops *gate_ops; -}; - -struct hv_ops; - -struct hvc_struct { - struct tty_port port; - spinlock_t lock; - int index; - int do_wakeup; - int outbuf_size; - int n_outbuf; - uint32_t vtermno; - const struct hv_ops *ops; - int irq_requested; - int data; - struct winsize ws; - struct work_struct tty_resize; - struct list_head next; - long unsigned int flags; - u8 outbuf[0]; -}; - -struct hv_ops { - ssize_t (*get_chars)(uint32_t, u8 *, size_t); - ssize_t (*put_chars)(uint32_t, const u8 *, size_t); - int (*flush)(uint32_t, bool); - int (*notifier_add)(struct hvc_struct *, int); - void (*notifier_del)(struct hvc_struct *, int); - void (*notifier_hangup)(struct hvc_struct *, int); - int (*tiocmget)(struct hvc_struct *); - int (*tiocmset)(struct hvc_struct *, unsigned int, unsigned int); - void (*dtr_rts)(struct hvc_struct *, bool); -}; - -struct drm_mode_atomic { - __u32 flags; - __u32 count_objs; - __u64 objs_ptr; - __u64 count_props_ptr; - __u64 props_ptr; - __u64 prop_values_ptr; - __u64 reserved; - __u64 user_data; -}; - -struct drm_out_fence_state { - s32 *out_fence_ptr; - struct sync_file *sync_file; - int fd; -}; - -struct drm_mode_card_res { - __u64 fb_id_ptr; - __u64 crtc_id_ptr; - __u64 connector_id_ptr; - __u64 encoder_id_ptr; - __u32 count_fbs; - __u32 count_crtcs; - __u32 count_connectors; - __u32 count_encoders; - __u32 min_width; - __u32 max_width; - __u32 min_height; - __u32 max_height; -}; - -struct drm_vblank_work { - struct kthread_work base; - struct drm_vblank_crtc *vblank; - u64 count; - int cancelling; - struct list_head node; -}; - -struct drm_format_conv_state { - struct { - void *mem; - size_t size; - bool preallocated; - } tmp; -}; - -struct drm_syncobj { - struct kref refcount; - struct dma_fence *fence; - struct list_head cb_list; - struct list_head ev_fd_list; - spinlock_t lock; - struct file *file; -}; - -struct drm_virtgpu_execbuffer_syncobj { - __u32 handle; - __u32 flags; - __u64 point; -}; - -struct drm_virtgpu_execbuffer { - __u32 flags; - __u32 size; - __u64 command; - __u64 bo_handles; - __u32 num_bo_handles; - __s32 fence_fd; - __u32 ring_idx; - __u32 syncobj_stride; - __u32 num_in_syncobjs; - __u32 num_out_syncobjs; - __u64 in_syncobjs; - __u64 out_syncobjs; -}; - -struct virtio_gpu_fpriv { - uint32_t ctx_id; - uint32_t context_init; - bool context_created; - uint32_t num_rings; - uint64_t base_fence_ctx; - uint64_t ring_idx_mask; - struct mutex context_lock; - char debug_name[65]; - bool explicit_debug_name; -}; - -struct virtio_gpu_submit_post_dep { - struct drm_syncobj *syncobj; - struct dma_fence_chain *chain; - u64 point; -}; - -struct virtio_gpu_submit { - struct virtio_gpu_submit_post_dep *post_deps; - unsigned int num_out_syncobjs; - struct drm_syncobj **in_syncobjs; - unsigned int num_in_syncobjs; - struct virtio_gpu_object_array *buflist; - struct drm_virtgpu_execbuffer *exbuf; - struct virtio_gpu_fence *out_fence; - struct virtio_gpu_fpriv *vfpriv; - struct virtio_gpu_device *vgdev; - struct sync_file *sync_file; - struct drm_file *file; - int out_fence_fd; - u64 fence_ctx; - u32 ring_idx; - void *buf; -}; - -struct req { - struct req *next; - struct completion done; - int err; - const char *name; - umode_t mode; - kuid_t uid; - kgid_t gid; - struct device *dev; -}; - -struct msdos_partition { - u8 boot_ind; - u8 head; - u8 sector; - u8 cyl; - u8 sys_ind; - u8 end_head; - u8 end_sector; - u8 end_cyl; - __le32 start_sect; - __le32 nr_sects; -}; - -struct scsi_proc_entry { - struct list_head entry; - const struct scsi_host_template *sht; - struct proc_dir_entry *proc_dir; - unsigned int present; -}; - -enum in6_addr_gen_mode { - IN6_ADDR_GEN_MODE_EUI64 = 0, - IN6_ADDR_GEN_MODE_NONE = 1, - IN6_ADDR_GEN_MODE_STABLE_PRIVACY = 2, - IN6_ADDR_GEN_MODE_RANDOM = 3, -}; - -enum { - WG_NETDEV_FEATURES = 1126357076009ULL, -}; - -struct hwtstamp_config { - int flags; - int tx_type; - int rx_filter; -}; - -struct mii_ioctl_data { - __u16 phy_id; - __u16 reg_num; - __u16 val_in; - __u16 val_out; -}; - -struct phy_setting { - u32 speed; - u8 duplex; - u8 bit; -}; - -enum phy_state_work { - PHY_STATE_WORK_NONE = 0, - PHY_STATE_WORK_ANEG = 1, - PHY_STATE_WORK_SUSPEND = 2, -}; - -struct ppp_deflate_state { - int seqno; - int w_size; - int unit; - int mru; - int debug; - z_stream strm; - struct compstat stats; -}; - -typedef __be16 sid_t; - -struct pppoe_addr { - sid_t sid; - unsigned char remote[6]; - char dev[16]; -}; - -struct pptp_addr { - __u16 call_id; - struct in_addr sin_addr; -}; - -struct sockaddr_pppox { - __kernel_sa_family_t sa_family; - unsigned int sa_protocol; - union { - struct pppoe_addr pppoe; - struct pptp_addr pptp; - } sa_addr; -} __attribute__((packed)); - -struct pppoe_opt { - struct net_device *dev; - int ifindex; - struct pppoe_addr pa; - struct sockaddr_pppox relay; - struct work_struct padt_work; -}; - -struct pptp_opt { - struct pptp_addr src_addr; - struct pptp_addr dst_addr; - u32 ack_sent; - u32 ack_recv; - u32 seq_sent; - u32 seq_recv; - int ppp_flags; -}; - -struct pppox_sock { - struct sock sk; - struct ppp_channel chan; - struct pppox_sock *next; - union { - struct pppoe_opt pppoe; - struct pptp_opt pptp; - } proto; - __be16 num; -}; - -struct pppox_proto { - int (*create)(struct net *, struct socket *, int); - int (*ioctl)(struct socket *, unsigned int, long unsigned int); - struct module *owner; -}; - -enum { - PPPOX_NONE = 0, - PPPOX_CONNECTED = 1, - PPPOX_BOUND = 2, - PPPOX_RELAY = 4, - PPPOX_DEAD = 16, -}; - -struct quirk_entry { - u16 vid; - u16 pid; - u32 flags; -}; - -struct usb_hub_descriptor { - __u8 bDescLength; - __u8 bDescriptorType; - __u8 bNbrPorts; - __le16 wHubCharacteristics; - __u8 bPwrOn2PwrGood; - __u8 bHubContrCurrent; - union { - struct { - __u8 DeviceRemovable[4]; - __u8 PortPwrCtrlMask[4]; - } hs; - struct { - __u8 bHubHdrDecLat; - __le16 wHubDelay; - __le16 DeviceRemovable; - } __attribute__((packed)) ss; - } u; -} __attribute__((packed)); - -struct xhci_ep_ctx { - __le32 ep_info; - __le32 ep_info2; - __le64 deq; - __le32 tx_info; - __le32 reserved[3]; -}; - -struct usbat_info { - int devicetype; - long unsigned int sectors; - long unsigned int ssize; - unsigned char sense_key; - long unsigned int sense_asc; - long unsigned int sense_ascq; -}; - -struct garmin_packet { - struct list_head list; - int seq; - int size; - __u8 data[0]; -}; - -struct garmin_data { - __u8 state; - __u16 flags; - __u8 mode; - __u8 count; - __u8 pkt_id; - __u32 serial_num; - struct timer_list timer; - struct usb_serial_port *port; - int seq_counter; - int insize; - int outsize; - __u8 inbuffer[273]; - __u8 outbuffer[529]; - __u8 privpkt[24]; - spinlock_t lock; - struct list_head pktlist; - struct usb_anchor write_urbs; -}; - -struct opticon_private { - spinlock_t lock; - bool rts; - bool cts; - int outstanding_urbs; - int outstanding_bytes; - struct usb_anchor anchor; -}; - -struct ssu100_port_private { - spinlock_t status_lock; - u8 shadowLSR; - u8 shadowMSR; -}; - -struct vhci_device { - struct usb_device *udev; - __u32 devid; - enum usb_device_speed speed; - __u32 rhport; - struct usbip_device ud; - spinlock_t priv_lock; - struct list_head priv_tx; - struct list_head priv_rx; - struct list_head unlink_tx; - struct list_head unlink_rx; - wait_queue_head_t waitq_tx; -}; - -enum hub_speed { - HUB_SPEED_HIGH = 0, - HUB_SPEED_SUPER = 1, -}; - -struct vhci_hcd; - -struct vhci { - spinlock_t lock; - struct platform_device *pdev; - struct vhci_hcd *vhci_hcd_hs; - struct vhci_hcd *vhci_hcd_ss; -}; - -struct vhci_hcd { - struct vhci *vhci; - u32 port_status[8]; - unsigned int resuming: 1; - long unsigned int re_timeout; - atomic_t seqnum; - struct vhci_device vdev[8]; -}; - -struct status_attr { - struct device_attribute attr; - char name[17]; -}; - -struct input_dev_poller { - void (*poll)(struct input_dev *); - unsigned int poll_interval; - unsigned int poll_interval_max; - unsigned int poll_interval_min; - struct input_dev *input; - struct delayed_work work; -}; - -struct i2c_smbus_alert_setup { - int irq; -}; - -struct trace_event_raw_smbus_write { - struct trace_entry ent; - int adapter_nr; - __u16 addr; - __u16 flags; - __u8 command; - __u8 len; - __u32 protocol; - __u8 buf[34]; - char __data[0]; -}; - -struct trace_event_raw_smbus_read { - struct trace_entry ent; - int adapter_nr; - __u16 flags; - __u16 addr; - __u8 command; - __u32 protocol; - __u8 buf[34]; - char __data[0]; -}; - -struct trace_event_raw_smbus_reply { - struct trace_entry ent; - int adapter_nr; - __u16 addr; - __u16 flags; - __u8 command; - __u8 len; - __u32 protocol; - __u8 buf[34]; - char __data[0]; -}; - -struct trace_event_raw_smbus_result { - struct trace_entry ent; - int adapter_nr; - __u16 addr; - __u16 flags; - __u8 read_write; - __u8 command; - __s16 res; - __u32 protocol; - char __data[0]; -}; - -struct trace_event_data_offsets_smbus_write {}; - -struct trace_event_data_offsets_smbus_read {}; - -struct trace_event_data_offsets_smbus_reply {}; - -struct trace_event_data_offsets_smbus_result {}; - -typedef void (*btf_trace_smbus_write)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int, const union i2c_smbus_data *); - -typedef void (*btf_trace_smbus_read)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int); - -typedef void (*btf_trace_smbus_reply)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int, const union i2c_smbus_data *, int); - -typedef void (*btf_trace_smbus_result)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int, int); - -struct dm_io_region { - struct block_device *bdev; - sector_t sector; - sector_t count; -}; - -struct page_list { - struct page_list *next; - struct page *page; -}; - -typedef void (*io_notify_fn)(long unsigned int, void *); - -enum dm_io_mem_type { - DM_IO_PAGE_LIST = 0, - DM_IO_BIO = 1, - DM_IO_VMA = 2, - DM_IO_KMEM = 3, -}; - -struct dm_io_memory { - enum dm_io_mem_type type; - unsigned int offset; - union { - struct page_list *pl; - struct bio *bio; - void *vma; - void *addr; - } ptr; -}; - -struct dm_io_notify { - io_notify_fn fn; - void *context; -}; - -struct dm_io_client; - -struct dm_io_request { - blk_opf_t bi_opf; - struct dm_io_memory mem; - struct dm_io_notify notify; - struct dm_io_client *client; -}; - -struct dm_kcopyd_throttle { - unsigned int throttle; - unsigned int num_io_jobs; - unsigned int io_period; - unsigned int total_period; - unsigned int last_jiffies; -}; - -typedef void (*dm_kcopyd_notify_fn)(int, long unsigned int, void *); - -struct dm_kcopyd_client { - struct page_list *pages; - unsigned int nr_reserved_pages; - unsigned int nr_free_pages; - unsigned int sub_job_size; - struct dm_io_client *io_client; - wait_queue_head_t destroyq; - mempool_t job_pool; - struct workqueue_struct *kcopyd_wq; - struct work_struct kcopyd_work; - struct dm_kcopyd_throttle *throttle; - atomic_t nr_jobs; - spinlock_t job_lock; - struct list_head callback_jobs; - struct list_head complete_jobs; - struct list_head io_jobs; - struct list_head pages_jobs; -}; - -struct kcopyd_job { - struct dm_kcopyd_client *kc; - struct list_head list; - unsigned int flags; - int read_err; - long unsigned int write_err; - enum req_op op; - struct dm_io_region source; - unsigned int num_dests; - struct dm_io_region dests[8]; - struct page_list *pages; - dm_kcopyd_notify_fn fn; - void *context; - struct mutex lock; - atomic_t sub_jobs; - sector_t progress; - sector_t write_offset; - struct kcopyd_job *master_job; -}; - -struct mmc_busy_data { - struct mmc_card *card; - bool retry_crc_err; - enum mmc_busy_cmd busy_cmd; -}; - -struct mmc_op_cond_busy_data { - struct mmc_host *host; - u32 ocr; - struct mmc_command *cmd; -}; - -enum { - GENHD_FL_REMOVABLE = 1, - GENHD_FL_HIDDEN = 2, - GENHD_FL_NO_PART = 4, -}; - -enum rpmb_type { - RPMB_TYPE_EMMC = 0, - RPMB_TYPE_UFS = 1, - RPMB_TYPE_NVME = 2, -}; - -struct rpmb_descr { - enum rpmb_type type; - int (*route_frames)(struct device *, u8 *, unsigned int, u8 *, unsigned int); - u8 *dev_id; - size_t dev_id_len; - u16 reliable_wr_count; - u16 capacity; -}; - -struct rpmb_dev { - struct device dev; - int id; - struct list_head list_node; - struct rpmb_descr descr; -}; - -struct mmc_ioc_cmd { - int write_flag; - int is_acmd; - __u32 opcode; - __u32 arg; - __u32 response[4]; - unsigned int flags; - unsigned int blksz; - unsigned int blocks; - unsigned int postsleep_min_us; - unsigned int postsleep_max_us; - unsigned int data_timeout_ns; - unsigned int cmd_timeout_ms; - __u32 __pad; - __u64 data_ptr; -}; - -struct mmc_ioc_multi_cmd { - __u64 num_of_cmds; - struct mmc_ioc_cmd cmds[0]; -}; - -enum mmc_issued { - MMC_REQ_STARTED = 0, - MMC_REQ_BUSY = 1, - MMC_REQ_FAILED_TO_START = 2, - MMC_REQ_FINISHED = 3, -}; - -enum mmc_issue_type { - MMC_ISSUE_SYNC = 0, - MMC_ISSUE_DCMD = 1, - MMC_ISSUE_ASYNC = 2, - MMC_ISSUE_MAX = 3, -}; - -struct mmc_blk_request { - struct mmc_request mrq; - struct mmc_command sbc; - struct mmc_command cmd; - struct mmc_command stop; - struct mmc_data data; -}; - -enum mmc_drv_op { - MMC_DRV_OP_IOCTL = 0, - MMC_DRV_OP_IOCTL_RPMB = 1, - MMC_DRV_OP_BOOT_WP = 2, - MMC_DRV_OP_GET_CARD_STATUS = 3, - MMC_DRV_OP_GET_EXT_CSD = 4, -}; - -struct mmc_queue_req { - struct mmc_blk_request brq; - struct scatterlist *sg; - enum mmc_drv_op drv_op; - int drv_op_result; - void *drv_op_data; - unsigned int ioc_count; - int retries; -}; - -struct mmc_blk_data; - -struct mmc_queue { - struct mmc_card *card; - struct mmc_ctx ctx; - struct blk_mq_tag_set tag_set; - struct mmc_blk_data *blkdata; - struct request_queue *queue; - spinlock_t lock; - int in_flight[3]; - unsigned int cqe_busy; - bool busy; - bool recovery_needed; - bool in_recovery; - bool rw_wait; - bool waiting; - struct work_struct recovery_work; - wait_queue_head_t wait; - struct request *recovery_req; - struct request *complete_req; - struct mutex complete_lock; - struct work_struct complete_work; -}; - -struct mmc_blk_data { - struct device *parent; - struct gendisk *disk; - struct mmc_queue queue; - struct list_head part; - struct list_head rpmbs; - unsigned int flags; - struct kref kref; - unsigned int read_only; - unsigned int part_type; - unsigned int reset_done; - unsigned int part_curr; - int area_type; - struct dentry *status_dentry; - struct dentry *ext_csd_dentry; -}; - -struct mmc_driver { - struct device_driver drv; - int (*probe)(struct mmc_card *); - void (*remove)(struct mmc_card *); - void (*shutdown)(struct mmc_card *); -}; - -struct rpmb_frame { - u8 stuff[196]; - u8 key_mac[32]; - u8 data[256]; - u8 nonce[16]; - __be32 write_counter; - __be16 addr; - __be16 block_count; - __be16 result; - __be16 req_resp; -}; - -struct mmc_blk_busy_data { - struct mmc_card *card; - u32 status; -}; - -struct mmc_rpmb_data { - struct device dev; - struct cdev chrdev; - int id; - unsigned int part_index; - struct mmc_blk_data *md; - struct rpmb_dev *rdev; - struct list_head node; -}; - -struct mmc_blk_ioc_data { - struct mmc_ioc_cmd ic; - unsigned char *buf; - u64 buf_bytes; - unsigned int flags; - struct mmc_rpmb_data *rpmb; -}; - -enum { - TCA_STATS_UNSPEC = 0, - TCA_STATS_BASIC = 1, - TCA_STATS_RATE_EST = 2, - TCA_STATS_QUEUE = 3, - TCA_STATS_APP = 4, - TCA_STATS_RATE_EST64 = 5, - TCA_STATS_PAD = 6, - TCA_STATS_BASIC_HW = 7, - TCA_STATS_PKT64 = 8, - __TCA_STATS_MAX = 9, -}; - -struct gnet_stats_basic { - __u64 bytes; - __u32 packets; -}; - -struct gnet_stats_rate_est { - __u32 bps; - __u32 pps; -}; - -enum { - BPF_F_RECOMPUTE_CSUM = 1, - BPF_F_INVALIDATE_HASH = 2, -}; - -enum { - BPF_F_HDR_FIELD_MASK = 15, -}; - -enum { - BPF_F_PSEUDO_HDR = 16, - BPF_F_MARK_MANGLED_0 = 32, - BPF_F_MARK_ENFORCE = 64, - BPF_F_IPV6 = 128, -}; - -enum { - BPF_F_TUNINFO_IPV6 = 1, -}; - -enum { - BPF_F_ZERO_CSUM_TX = 2, - BPF_F_DONT_FRAGMENT = 4, - BPF_F_SEQ_NUMBER = 8, - BPF_F_NO_TUNNEL_KEY = 16, -}; - -enum { - BPF_F_TUNINFO_FLAGS = 16, -}; - -enum { - BPF_CSUM_LEVEL_QUERY = 0, - BPF_CSUM_LEVEL_INC = 1, - BPF_CSUM_LEVEL_DEC = 2, - BPF_CSUM_LEVEL_RESET = 3, -}; - -enum { - BPF_F_ADJ_ROOM_FIXED_GSO = 1, - BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 2, - BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 4, - BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 8, - BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 16, - BPF_F_ADJ_ROOM_NO_CSUM_RESET = 32, - BPF_F_ADJ_ROOM_ENCAP_L2_ETH = 64, - BPF_F_ADJ_ROOM_DECAP_L3_IPV4 = 128, - BPF_F_ADJ_ROOM_DECAP_L3_IPV6 = 256, -}; - -enum { - BPF_ADJ_ROOM_ENCAP_L2_MASK = 255, - BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 56, -}; - -enum { - BPF_SK_LOOKUP_F_REPLACE = 1, - BPF_SK_LOOKUP_F_NO_REUSEPORT = 2, -}; - -enum bpf_adj_room_mode { - BPF_ADJ_ROOM_NET = 0, - BPF_ADJ_ROOM_MAC = 1, -}; - -enum bpf_hdr_start_off { - BPF_HDR_START_MAC = 0, - BPF_HDR_START_NET = 1, -}; - -enum bpf_lwt_encap_mode { - BPF_LWT_ENCAP_SEG6 = 0, - BPF_LWT_ENCAP_SEG6_INLINE = 1, - BPF_LWT_ENCAP_IP = 2, -}; - -enum { - BPF_SKB_TSTAMP_UNSPEC = 0, - BPF_SKB_TSTAMP_DELIVERY_MONO = 1, - BPF_SKB_CLOCK_REALTIME = 0, - BPF_SKB_CLOCK_MONOTONIC = 1, - BPF_SKB_CLOCK_TAI = 2, -}; - -struct bpf_tunnel_key { - __u32 tunnel_id; - union { - __u32 remote_ipv4; - __u32 remote_ipv6[4]; - }; - __u8 tunnel_tos; - __u8 tunnel_ttl; - union { - __u16 tunnel_ext; - __be16 tunnel_flags; - }; - __u32 tunnel_label; - union { - __u32 local_ipv4; - __u32 local_ipv6[4]; - }; -}; - -struct bpf_xfrm_state { - __u32 reqid; - __u32 spi; - __u16 family; - __u16 ext; - union { - __u32 remote_ipv4; - __u32 remote_ipv6[4]; - }; -}; - -struct bpf_tcp_sock { - __u32 snd_cwnd; - __u32 srtt_us; - __u32 rtt_min; - __u32 snd_ssthresh; - __u32 rcv_nxt; - __u32 snd_nxt; - __u32 snd_una; - __u32 mss_cache; - __u32 ecn_flags; - __u32 rate_delivered; - __u32 rate_interval_us; - __u32 packets_out; - __u32 retrans_out; - __u32 total_retrans; - __u32 segs_in; - __u32 data_segs_in; - __u32 segs_out; - __u32 data_segs_out; - __u32 lost_out; - __u32 sacked_out; - __u64 bytes_received; - __u64 bytes_acked; - __u32 dsack_dups; - __u32 delivered; - __u32 delivered_ce; - __u32 icsk_retransmits; -}; - -struct bpf_sock_tuple { - union { - struct { - __be32 saddr; - __be32 daddr; - __be16 sport; - __be16 dport; - } ipv4; - struct { - __be32 saddr[4]; - __be32 daddr[4]; - __be16 sport; - __be16 dport; - } ipv6; - }; -}; - -struct bpf_xdp_sock { - __u32 queue_id; -}; - -enum { - TCP_BPF_IW = 1001, - TCP_BPF_SNDCWND_CLAMP = 1002, - TCP_BPF_DELACK_MAX = 1003, - TCP_BPF_RTO_MIN = 1004, - TCP_BPF_SYN = 1005, - TCP_BPF_SYN_IP = 1006, - TCP_BPF_SYN_MAC = 1007, - TCP_BPF_SOCK_OPS_CB_FLAGS = 1008, -}; - -enum { - BPF_LOAD_HDR_OPT_TCP_SYN = 1, -}; - -enum { - BPF_FIB_LOOKUP_DIRECT = 1, - BPF_FIB_LOOKUP_OUTPUT = 2, - BPF_FIB_LOOKUP_SKIP_NEIGH = 4, - BPF_FIB_LOOKUP_TBID = 8, - BPF_FIB_LOOKUP_SRC = 16, - BPF_FIB_LOOKUP_MARK = 32, -}; - -enum { - BPF_FIB_LKUP_RET_SUCCESS = 0, - BPF_FIB_LKUP_RET_BLACKHOLE = 1, - BPF_FIB_LKUP_RET_UNREACHABLE = 2, - BPF_FIB_LKUP_RET_PROHIBIT = 3, - BPF_FIB_LKUP_RET_NOT_FWDED = 4, - BPF_FIB_LKUP_RET_FWD_DISABLED = 5, - BPF_FIB_LKUP_RET_UNSUPP_LWT = 6, - BPF_FIB_LKUP_RET_NO_NEIGH = 7, - BPF_FIB_LKUP_RET_FRAG_NEEDED = 8, - BPF_FIB_LKUP_RET_NO_SRC_ADDR = 9, -}; - -struct bpf_fib_lookup { - __u8 family; - __u8 l4_protocol; - __be16 sport; - __be16 dport; - union { - __u16 tot_len; - __u16 mtu_result; - }; - __u32 ifindex; - union { - __u8 tos; - __be32 flowinfo; - __u32 rt_metric; - }; - union { - __be32 ipv4_src; - __u32 ipv6_src[4]; - }; - union { - __be32 ipv4_dst; - __u32 ipv6_dst[4]; - }; - union { - struct { - __be16 h_vlan_proto; - __be16 h_vlan_TCI; - }; - __u32 tbid; - }; - union { - struct { - __u32 mark; - }; - struct { - __u8 smac[6]; - __u8 dmac[6]; - }; - }; -}; - -struct bpf_redir_neigh { - __u32 nh_family; - union { - __be32 ipv4_nh; - __u32 ipv6_nh[4]; - }; -}; - -enum bpf_check_mtu_flags { - BPF_MTU_CHK_SEGS = 1, -}; - -enum bpf_check_mtu_ret { - BPF_MTU_CHK_RET_SUCCESS = 0, - BPF_MTU_CHK_RET_FRAG_NEEDED = 1, - BPF_MTU_CHK_RET_SEGS_TOOBIG = 2, -}; - -struct bpf_dispatcher_prog { - struct bpf_prog *prog; - refcount_t users; -}; - -struct bpf_dispatcher { - struct mutex mutex; - void *func; - struct bpf_dispatcher_prog progs[48]; - int num_progs; - void *image; - void *rw_image; - u32 image_off; - struct bpf_ksym ksym; -}; - -struct seg6_pernet_data { - struct mutex lock; - struct in6_addr *tun_src; -}; - -struct compat_sock_fprog { - u16 len; - compat_uptr_t filter; -}; - -typedef int (*bpf_aux_classic_check_t)(struct sock_filter *, unsigned int); - -struct tcp_timewait_sock { - struct inet_timewait_sock tw_sk; - u32 tw_rcv_wnd; - u32 tw_ts_offset; - u32 tw_ts_recent; - u32 tw_last_oow_ack_time; - int tw_ts_recent_stamp; - u32 tw_tx_delay; -}; - -struct udp_sock { - struct inet_sock inet; - long unsigned int udp_flags; - int pending; - __u8 encap_type; - __u16 len; - __u16 gso_size; - __u16 pcslen; - __u16 pcrlen; - int (*encap_rcv)(struct sock *, struct sk_buff *); - void (*encap_err_rcv)(struct sock *, struct sk_buff *, int, __be16, u32, u8 *); - int (*encap_err_lookup)(struct sock *, struct sk_buff *); - void (*encap_destroy)(struct sock *); - struct sk_buff * (*gro_receive)(struct sock *, struct list_head *, struct sk_buff *); - int (*gro_complete)(struct sock *, struct sk_buff *, int); - long: 64; - long: 64; - long: 64; - long: 64; - struct sk_buff_head reader_queue; - int forward_deficit; - int forward_threshold; - bool peeking_with_offset; - long: 64; - long: 64; - long: 64; -}; - -struct udp6_sock { - struct udp_sock udp; - struct ipv6_pinfo inet6; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct tcp6_sock { - struct tcp_sock tcp; - struct ipv6_pinfo inet6; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct ipv6_bpf_stub { - int (*inet6_bind)(struct sock *, struct sockaddr *, int, u32); - struct sock * (*udp6_lib_lookup)(const struct net *, const struct in6_addr *, __be16, const struct in6_addr *, __be16, int, int, struct udp_table *, struct sk_buff *); - int (*ipv6_setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); - int (*ipv6_getsockopt)(struct sock *, int, int, sockptr_t, sockptr_t); - int (*ipv6_dev_get_saddr)(struct net *, const struct net_device *, const struct in6_addr *, unsigned int, struct in6_addr *); -}; - -struct mptcp_sock {}; - -struct bpf_tcp_req_attrs { - u32 rcv_tsval; - u32 rcv_tsecr; - u16 mss; - u8 rcv_wscale; - u8 snd_wscale; - u8 ecn_ok; - u8 wscale_ok; - u8 sack_ok; - u8 tstamp_ok; - u8 usec_ts_ok; - u8 reserved[3]; -}; - -struct strp_msg { - int full_len; - int offset; -}; - -struct _strp_msg { - struct strp_msg strp; - int accum_len; -}; - -struct tls_msg { - u8 control; -}; - -struct sk_skb_cb { - unsigned char data[20]; - unsigned char pad[4]; - struct _strp_msg strp; - struct tls_msg tls; - u64 temp_reg; -}; - -struct cgroup_cls_state { - struct cgroup_subsys_state css; - u32 classid; -}; - -struct tls_crypto_info { - __u16 version; - __u16 cipher_type; -}; - -struct tls12_crypto_info_aes_gcm_128 { - struct tls_crypto_info info; - unsigned char iv[8]; - unsigned char key[16]; - unsigned char salt[4]; - unsigned char rec_seq[8]; -}; - -struct tls12_crypto_info_aes_gcm_256 { - struct tls_crypto_info info; - unsigned char iv[8]; - unsigned char key[32]; - unsigned char salt[4]; - unsigned char rec_seq[8]; -}; - -struct tls12_crypto_info_chacha20_poly1305 { - struct tls_crypto_info info; - unsigned char iv[12]; - unsigned char key[32]; - unsigned char salt[0]; - unsigned char rec_seq[8]; -}; - -struct tls12_crypto_info_sm4_gcm { - struct tls_crypto_info info; - unsigned char iv[8]; - unsigned char key[16]; - unsigned char salt[4]; - unsigned char rec_seq[8]; -}; - -struct tls12_crypto_info_sm4_ccm { - struct tls_crypto_info info; - unsigned char iv[8]; - unsigned char key[16]; - unsigned char salt[4]; - unsigned char rec_seq[8]; -}; - -struct tls_strparser { - struct sock *sk; - u32 mark: 8; - u32 stopped: 1; - u32 copy_mode: 1; - u32 mixed_decrypted: 1; - bool msg_ready; - struct strp_msg stm; - struct sk_buff *anchor; - struct work_struct work; -}; - -struct tls_sw_context_rx { - struct crypto_aead *aead_recv; - struct crypto_wait async_wait; - struct sk_buff_head rx_list; - void (*saved_data_ready)(struct sock *); - u8 reader_present; - u8 async_capable: 1; - u8 zc_capable: 1; - u8 reader_contended: 1; - struct tls_strparser strp; - atomic_t decrypt_pending; - struct sk_buff_head async_hold; - struct wait_queue_head wq; -}; - -struct tls_prot_info { - u16 version; - u16 cipher_type; - u16 prepend_size; - u16 tag_size; - u16 overhead_size; - u16 iv_size; - u16 salt_size; - u16 rec_seq_size; - u16 aad_size; - u16 tail_size; -}; - -struct cipher_context { - char iv[20]; - char rec_seq[8]; -}; - -union tls_crypto_context { - struct tls_crypto_info info; - union { - struct tls12_crypto_info_aes_gcm_128 aes_gcm_128; - struct tls12_crypto_info_aes_gcm_256 aes_gcm_256; - struct tls12_crypto_info_chacha20_poly1305 chacha20_poly1305; - struct tls12_crypto_info_sm4_gcm sm4_gcm; - struct tls12_crypto_info_sm4_ccm sm4_ccm; - }; -}; - -struct tls_context { - struct tls_prot_info prot_info; - u8 tx_conf: 3; - u8 rx_conf: 3; - u8 zerocopy_sendfile: 1; - u8 rx_no_pad: 1; - int (*push_pending_record)(struct sock *, int); - void (*sk_write_space)(struct sock *); - void *priv_ctx_tx; - void *priv_ctx_rx; - struct net_device *netdev; - struct cipher_context tx; - struct cipher_context rx; - struct scatterlist *partially_sent_record; - u16 partially_sent_offset; - bool splicing_pages; - bool pending_open_record_frags; - struct mutex tx_lock; - long unsigned int flags; - struct proto *sk_proto; - struct sock *sk; - void (*sk_destruct)(struct sock *); - union tls_crypto_context crypto_send; - union tls_crypto_context crypto_recv; - struct list_head list; - refcount_t refcount; - struct callback_head rcu; -}; - -typedef u64 (*btf_bpf_skb_get_pay_offset)(struct sk_buff *); - -typedef u64 (*btf_bpf_skb_get_nlattr)(struct sk_buff *, u32, u32); - -typedef u64 (*btf_bpf_skb_get_nlattr_nest)(struct sk_buff *, u32, u32); - -typedef u64 (*btf_bpf_skb_load_helper_8)(const struct sk_buff *, const void *, int, int); - -typedef u64 (*btf_bpf_skb_load_helper_8_no_cache)(const struct sk_buff *, int); - -typedef u64 (*btf_bpf_skb_load_helper_16)(const struct sk_buff *, const void *, int, int); - -typedef u64 (*btf_bpf_skb_load_helper_16_no_cache)(const struct sk_buff *, int); - -typedef u64 (*btf_bpf_skb_load_helper_32)(const struct sk_buff *, const void *, int, int); - -typedef u64 (*btf_bpf_skb_load_helper_32_no_cache)(const struct sk_buff *, int); - -struct bpf_scratchpad { - union { - __be32 diff[128]; - u8 buff[512]; - }; - local_lock_t bh_lock; -}; - -typedef u64 (*btf_bpf_skb_store_bytes)(struct sk_buff *, u32, const void *, u32, u64); - -typedef u64 (*btf_bpf_skb_load_bytes)(const struct sk_buff *, u32, void *, u32); - -typedef u64 (*btf_bpf_flow_dissector_load_bytes)(const struct bpf_flow_dissector *, u32, void *, u32); - -typedef u64 (*btf_bpf_skb_load_bytes_relative)(const struct sk_buff *, u32, void *, u32, u32); - -typedef u64 (*btf_bpf_skb_pull_data)(struct sk_buff *, u32); - -typedef u64 (*btf_bpf_sk_fullsock)(struct sock *); - -typedef u64 (*btf_sk_skb_pull_data)(struct sk_buff *, u32); - -typedef u64 (*btf_bpf_l3_csum_replace)(struct sk_buff *, u32, u64, u64, u64); - -typedef u64 (*btf_bpf_l4_csum_replace)(struct sk_buff *, u32, u64, u64, u64); - -typedef u64 (*btf_bpf_csum_diff)(__be32 *, u32, __be32 *, u32, __wsum); - -typedef u64 (*btf_bpf_csum_update)(struct sk_buff *, __wsum); - -typedef u64 (*btf_bpf_csum_level)(struct sk_buff *, u64); - -enum { - BPF_F_NEIGH = 65536, - BPF_F_PEER = 131072, - BPF_F_NEXTHOP = 262144, -}; - -typedef u64 (*btf_bpf_clone_redirect)(struct sk_buff *, u32, u64); - -typedef u64 (*btf_bpf_redirect)(u32, u64); - -typedef u64 (*btf_bpf_redirect_peer)(u32, u64); - -typedef u64 (*btf_bpf_redirect_neigh)(u32, struct bpf_redir_neigh *, int, u64); - -typedef u64 (*btf_bpf_msg_apply_bytes)(struct sk_msg *, u32); - -typedef u64 (*btf_bpf_msg_cork_bytes)(struct sk_msg *, u32); - -typedef u64 (*btf_bpf_msg_pull_data)(struct sk_msg *, u32, u32, u64); - -typedef u64 (*btf_bpf_msg_push_data)(struct sk_msg *, u32, u32, u64); - -typedef u64 (*btf_bpf_msg_pop_data)(struct sk_msg *, u32, u32, u64); - -typedef u64 (*btf_bpf_get_cgroup_classid_curr)(void); - -typedef u64 (*btf_bpf_skb_cgroup_classid)(const struct sk_buff *); - -typedef u64 (*btf_bpf_get_cgroup_classid)(const struct sk_buff *); - -typedef u64 (*btf_bpf_get_route_realm)(const struct sk_buff *); - -typedef u64 (*btf_bpf_get_hash_recalc)(struct sk_buff *); - -typedef u64 (*btf_bpf_set_hash_invalid)(struct sk_buff *); - -typedef u64 (*btf_bpf_set_hash)(struct sk_buff *, u32); - -typedef u64 (*btf_bpf_skb_vlan_push)(struct sk_buff *, __be16, u16); - -typedef u64 (*btf_bpf_skb_vlan_pop)(struct sk_buff *); - -typedef u64 (*btf_bpf_skb_change_proto)(struct sk_buff *, __be16, u64); - -typedef u64 (*btf_bpf_skb_change_type)(struct sk_buff *, u32); - -typedef u64 (*btf_sk_skb_adjust_room)(struct sk_buff *, s32, u32, u64); - -typedef u64 (*btf_bpf_skb_adjust_room)(struct sk_buff *, s32, u32, u64); - -typedef u64 (*btf_bpf_skb_change_tail)(struct sk_buff *, u32, u64); - -typedef u64 (*btf_sk_skb_change_tail)(struct sk_buff *, u32, u64); - -typedef u64 (*btf_bpf_skb_change_head)(struct sk_buff *, u32, u64); - -typedef u64 (*btf_sk_skb_change_head)(struct sk_buff *, u32, u64); - -typedef u64 (*btf_bpf_xdp_get_buff_len)(struct xdp_buff *); - -typedef u64 (*btf_bpf_xdp_adjust_head)(struct xdp_buff *, int); - -typedef u64 (*btf_bpf_xdp_load_bytes)(struct xdp_buff *, u32, void *, u32); - -typedef u64 (*btf_bpf_xdp_store_bytes)(struct xdp_buff *, u32, void *, u32); - -typedef u64 (*btf_bpf_xdp_adjust_tail)(struct xdp_buff *, int); - -typedef u64 (*btf_bpf_xdp_adjust_meta)(struct xdp_buff *, int); - -typedef u64 (*btf_bpf_xdp_redirect)(u32, u64); - -typedef u64 (*btf_bpf_xdp_redirect_map)(struct bpf_map *, u64, u64); - -typedef u64 (*btf_bpf_skb_event_output)(struct sk_buff *, struct bpf_map *, u64, void *, u64); - -typedef u64 (*btf_bpf_skb_get_tunnel_key)(struct sk_buff *, struct bpf_tunnel_key *, u32, u64); - -typedef u64 (*btf_bpf_skb_get_tunnel_opt)(struct sk_buff *, u8 *, u32); - -typedef u64 (*btf_bpf_skb_set_tunnel_key)(struct sk_buff *, const struct bpf_tunnel_key *, u32, u64); - -typedef u64 (*btf_bpf_skb_set_tunnel_opt)(struct sk_buff *, const u8 *, u32); - -typedef u64 (*btf_bpf_skb_under_cgroup)(struct sk_buff *, struct bpf_map *, u32); - -typedef u64 (*btf_bpf_skb_cgroup_id)(const struct sk_buff *); - -typedef u64 (*btf_bpf_skb_ancestor_cgroup_id)(const struct sk_buff *, int); - -typedef u64 (*btf_bpf_sk_cgroup_id)(struct sock *); - -typedef u64 (*btf_bpf_sk_ancestor_cgroup_id)(struct sock *, int); - -typedef u64 (*btf_bpf_xdp_event_output)(struct xdp_buff *, struct bpf_map *, u64, void *, u64); - -typedef u64 (*btf_bpf_get_socket_cookie)(struct sk_buff *); - -typedef u64 (*btf_bpf_get_socket_cookie_sock_addr)(struct bpf_sock_addr_kern *); - -typedef u64 (*btf_bpf_get_socket_cookie_sock)(struct sock *); - -typedef u64 (*btf_bpf_get_socket_ptr_cookie)(struct sock *); - -typedef u64 (*btf_bpf_get_socket_cookie_sock_ops)(struct bpf_sock_ops_kern *); - -typedef u64 (*btf_bpf_get_netns_cookie_sock)(struct sock *); - -typedef u64 (*btf_bpf_get_netns_cookie_sock_addr)(struct bpf_sock_addr_kern *); - -typedef u64 (*btf_bpf_get_netns_cookie_sock_ops)(struct bpf_sock_ops_kern *); - -typedef u64 (*btf_bpf_get_netns_cookie_sk_msg)(struct sk_msg *); - -typedef u64 (*btf_bpf_get_socket_uid)(struct sk_buff *); - -typedef u64 (*btf_bpf_sk_setsockopt)(struct sock *, int, int, char *, int); - -typedef u64 (*btf_bpf_sk_getsockopt)(struct sock *, int, int, char *, int); - -typedef u64 (*btf_bpf_unlocked_sk_setsockopt)(struct sock *, int, int, char *, int); - -typedef u64 (*btf_bpf_unlocked_sk_getsockopt)(struct sock *, int, int, char *, int); - -typedef u64 (*btf_bpf_sock_addr_setsockopt)(struct bpf_sock_addr_kern *, int, int, char *, int); - -typedef u64 (*btf_bpf_sock_addr_getsockopt)(struct bpf_sock_addr_kern *, int, int, char *, int); - -typedef u64 (*btf_bpf_sock_ops_setsockopt)(struct bpf_sock_ops_kern *, int, int, char *, int); - -typedef u64 (*btf_bpf_sock_ops_getsockopt)(struct bpf_sock_ops_kern *, int, int, char *, int); - -typedef u64 (*btf_bpf_sock_ops_cb_flags_set)(struct bpf_sock_ops_kern *, int); - -typedef u64 (*btf_bpf_bind)(struct bpf_sock_addr_kern *, struct sockaddr *, int); - -typedef u64 (*btf_bpf_skb_get_xfrm_state)(struct sk_buff *, u32, struct bpf_xfrm_state *, u32, u64); - -typedef u64 (*btf_bpf_xdp_fib_lookup)(struct xdp_buff *, struct bpf_fib_lookup *, int, u32); - -typedef u64 (*btf_bpf_skb_fib_lookup)(struct sk_buff *, struct bpf_fib_lookup *, int, u32); - -typedef u64 (*btf_bpf_skb_check_mtu)(struct sk_buff *, u32, u32 *, s32, u64); - -typedef u64 (*btf_bpf_xdp_check_mtu)(struct xdp_buff *, u32, u32 *, s32, u64); - -typedef u64 (*btf_bpf_lwt_in_push_encap)(struct sk_buff *, u32, void *, u32); - -typedef u64 (*btf_bpf_lwt_xmit_push_encap)(struct sk_buff *, u32, void *, u32); - -typedef u64 (*btf_bpf_skc_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_sk_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_sk_lookup_udp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_tc_skc_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_tc_sk_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_tc_sk_lookup_udp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_sk_release)(struct sock *); - -typedef u64 (*btf_bpf_xdp_sk_lookup_udp)(struct xdp_buff *, struct bpf_sock_tuple *, u32, u32, u64); - -typedef u64 (*btf_bpf_xdp_skc_lookup_tcp)(struct xdp_buff *, struct bpf_sock_tuple *, u32, u32, u64); - -typedef u64 (*btf_bpf_xdp_sk_lookup_tcp)(struct xdp_buff *, struct bpf_sock_tuple *, u32, u32, u64); - -typedef u64 (*btf_bpf_sock_addr_skc_lookup_tcp)(struct bpf_sock_addr_kern *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_sock_addr_sk_lookup_tcp)(struct bpf_sock_addr_kern *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_sock_addr_sk_lookup_udp)(struct bpf_sock_addr_kern *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_tcp_sock)(struct sock *); - -typedef u64 (*btf_bpf_get_listener_sock)(struct sock *); - -typedef u64 (*btf_bpf_skb_ecn_set_ce)(struct sk_buff *); - -typedef u64 (*btf_bpf_tcp_check_syncookie)(struct sock *, void *, u32, struct tcphdr *, u32); - -typedef u64 (*btf_bpf_tcp_gen_syncookie)(struct sock *, void *, u32, struct tcphdr *, u32); - -typedef u64 (*btf_bpf_sk_assign)(struct sk_buff *, struct sock *, u64); - -typedef u64 (*btf_bpf_sock_ops_load_hdr_opt)(struct bpf_sock_ops_kern *, void *, u32, u64); - -typedef u64 (*btf_bpf_sock_ops_store_hdr_opt)(struct bpf_sock_ops_kern *, const void *, u32, u64); - -typedef u64 (*btf_bpf_sock_ops_reserve_hdr_opt)(struct bpf_sock_ops_kern *, u32, u64); - -typedef u64 (*btf_bpf_skb_set_tstamp)(struct sk_buff *, u64, u32); - -typedef u64 (*btf_bpf_tcp_raw_gen_syncookie_ipv4)(struct iphdr *, struct tcphdr *, u32); - -typedef u64 (*btf_bpf_tcp_raw_gen_syncookie_ipv6)(struct ipv6hdr *, struct tcphdr *, u32); - -typedef u64 (*btf_bpf_tcp_raw_check_syncookie_ipv4)(struct iphdr *, struct tcphdr *); - -typedef u64 (*btf_bpf_tcp_raw_check_syncookie_ipv6)(struct ipv6hdr *, struct tcphdr *); - -typedef u64 (*btf_sk_select_reuseport)(struct sk_reuseport_kern *, struct bpf_map *, void *, u32); - -typedef u64 (*btf_sk_reuseport_load_bytes)(const struct sk_reuseport_kern *, u32, void *, u32); - -typedef u64 (*btf_sk_reuseport_load_bytes_relative)(const struct sk_reuseport_kern *, u32, void *, u32, u32); - -typedef u64 (*btf_bpf_sk_lookup_assign)(struct bpf_sk_lookup_kern *, struct sock *, u64); - -typedef u64 (*btf_bpf_skc_to_tcp6_sock)(struct sock *); - -typedef u64 (*btf_bpf_skc_to_tcp_sock)(struct sock *); - -typedef u64 (*btf_bpf_skc_to_tcp_timewait_sock)(struct sock *); - -typedef u64 (*btf_bpf_skc_to_tcp_request_sock)(struct sock *); - -typedef u64 (*btf_bpf_skc_to_udp6_sock)(struct sock *); - -typedef u64 (*btf_bpf_skc_to_unix_sock)(struct sock *); - -typedef u64 (*btf_bpf_skc_to_mptcp_sock)(struct sock *); - -typedef u64 (*btf_bpf_sock_from_file)(struct file *); - -struct llc_pdu_un { - u8 dsap; - u8 ssap; - u8 ctrl_1; -}; - -struct tc_skbedit { - __u32 index; - __u32 capab; - int action; - int refcnt; - int bindcnt; -}; - -enum { - TCA_SKBEDIT_UNSPEC = 0, - TCA_SKBEDIT_TM = 1, - TCA_SKBEDIT_PARMS = 2, - TCA_SKBEDIT_PRIORITY = 3, - TCA_SKBEDIT_QUEUE_MAPPING = 4, - TCA_SKBEDIT_MARK = 5, - TCA_SKBEDIT_PAD = 6, - TCA_SKBEDIT_PTYPE = 7, - TCA_SKBEDIT_MASK = 8, - TCA_SKBEDIT_FLAGS = 9, - TCA_SKBEDIT_QUEUE_MAPPING_MAX = 10, - __TCA_SKBEDIT_MAX = 11, -}; - -struct tcf_skbedit_params { - u32 flags; - u32 priority; - u32 mark; - u32 mask; - u16 queue_mapping; - u16 mapping_mod; - u16 ptype; - struct callback_head rcu; -}; - -struct tcf_skbedit { - struct tc_action common; - struct tcf_skbedit_params *params; - long: 64; -}; - -enum { - TCA_QFQ_UNSPEC = 0, - TCA_QFQ_WEIGHT = 1, - TCA_QFQ_LMAX = 2, - __TCA_QFQ_MAX = 3, -}; - -struct tc_qfq_stats { - __u32 weight; - __u32 lmax; -}; - -struct Qdisc_class_common { - u32 classid; - unsigned int filter_cnt; - struct hlist_node hnode; -}; - -struct Qdisc_class_hash { - struct hlist_head *hash; - unsigned int hashsize; - unsigned int hashmask; - unsigned int hashelems; -}; - -enum qfq_state { - ER = 0, - IR = 1, - EB = 2, - IB = 3, - QFQ_MAX_STATE = 4, -}; - -struct qfq_aggregate; - -struct qfq_class { - struct Qdisc_class_common common; - long: 64; - struct gnet_stats_basic_sync bstats; - struct gnet_stats_queue qstats; - struct net_rate_estimator *rate_est; - struct Qdisc *qdisc; - struct list_head alist; - struct qfq_aggregate *agg; - int deficit; - long: 64; -}; - -struct qfq_group; - -struct qfq_aggregate { - struct hlist_node next; - u64 S; - u64 F; - struct qfq_group *grp; - u32 class_weight; - int lmax; - u32 inv_w; - u32 budgetmax; - u32 initial_budget; - u32 budget; - int num_classes; - struct list_head active; - struct hlist_node nonfull_next; -}; - -struct qfq_group { - u64 S; - u64 F; - unsigned int slot_shift; - unsigned int index; - unsigned int front; - long unsigned int full_slots; - struct hlist_head slots[32]; -}; - -struct qfq_sched { - struct tcf_proto *filter_list; - struct tcf_block *block; - struct Qdisc_class_hash clhash; - u64 oldV; - u64 V; - struct qfq_aggregate *in_serv_agg; - u32 wsum; - u32 iwsum; - long unsigned int bitmaps[4]; - struct qfq_group groups[25]; - u32 min_slot_shift; - u32 max_agg_classes; - struct hlist_head nonfull_aggs; -}; - -enum update_reason { - enqueue = 0, - requeue = 1, -}; - -struct linkinfo_reply_data { - struct ethnl_reply_data base; - struct ethtool_link_ksettings ksettings; - struct ethtool_link_settings *lsettings; -}; - -struct eeprom_req_info { - struct ethnl_req_info base; - u32 offset; - u32 length; - u8 page; - u8 bank; - u8 i2c_address; -}; - -struct eeprom_reply_data { - struct ethnl_reply_data base; - u32 length; - u8 *data; -}; - -enum nfnetlink_groups { - NFNLGRP_NONE = 0, - NFNLGRP_CONNTRACK_NEW = 1, - NFNLGRP_CONNTRACK_UPDATE = 2, - NFNLGRP_CONNTRACK_DESTROY = 3, - NFNLGRP_CONNTRACK_EXP_NEW = 4, - NFNLGRP_CONNTRACK_EXP_UPDATE = 5, - NFNLGRP_CONNTRACK_EXP_DESTROY = 6, - NFNLGRP_NFTABLES = 7, - NFNLGRP_ACCT_QUOTA = 8, - NFNLGRP_NFTRACE = 9, - __NFNLGRP_MAX = 10, -}; - -enum nfnl_batch_attributes { - NFNL_BATCH_UNSPEC = 0, - NFNL_BATCH_GENID = 1, - __NFNL_BATCH_MAX = 2, -}; - -struct nfnl_net { - struct sock *nfnl; -}; - -struct nfnl_err { - struct list_head head; - struct nlmsghdr *nlh; - int err; - struct netlink_ext_ack extack; -}; - -enum { - NFNL_BATCH_FAILURE = 1, - NFNL_BATCH_DONE = 2, - NFNL_BATCH_REPLAY = 4, -}; - -enum ip_conntrack_expect_events { - IPEXP_NEW = 0, - IPEXP_DESTROY = 1, -}; - -enum nf_ct_ecache_state { - NFCT_ECACHE_DESTROY_FAIL = 0, - NFCT_ECACHE_DESTROY_SENT = 1, -}; - -enum retry_state { - STATE_CONGESTED = 0, - STATE_RESTART = 1, - STATE_DONE = 2, -}; - -enum ip6_defrag_users { - IP6_DEFRAG_LOCAL_DELIVER = 0, - IP6_DEFRAG_CONNTRACK_IN = 1, - __IP6_DEFRAG_CONNTRACK_IN = 65536, - IP6_DEFRAG_CONNTRACK_OUT = 65537, - __IP6_DEFRAG_CONNTRACK_OUT = 131072, - IP6_DEFRAG_CONNTRACK_BRIDGE_IN = 131073, - __IP6_DEFRAG_CONNTRACK_BRIDGE_IN = 196608, -}; - -enum nft_bitwise_ops { - NFT_BITWISE_BOOL = 0, - NFT_BITWISE_LSHIFT = 1, - NFT_BITWISE_RSHIFT = 2, -}; - -enum nft_bitwise_attributes { - NFTA_BITWISE_UNSPEC = 0, - NFTA_BITWISE_SREG = 1, - NFTA_BITWISE_DREG = 2, - NFTA_BITWISE_LEN = 3, - NFTA_BITWISE_MASK = 4, - NFTA_BITWISE_XOR = 5, - NFTA_BITWISE_OP = 6, - NFTA_BITWISE_DATA = 7, - __NFTA_BITWISE_MAX = 8, -}; - -struct nft_data_desc { - enum nft_data_types type; - unsigned int size; - unsigned int len; - unsigned int flags; -}; - -struct nft_bitwise { - u8 sreg; - u8 dreg; - enum nft_bitwise_ops op: 8; - u8 len; - struct nft_data mask; - struct nft_data xor; - struct nft_data data; -}; - -enum nft_set_attributes { - NFTA_SET_UNSPEC = 0, - NFTA_SET_TABLE = 1, - NFTA_SET_NAME = 2, - NFTA_SET_FLAGS = 3, - NFTA_SET_KEY_TYPE = 4, - NFTA_SET_KEY_LEN = 5, - NFTA_SET_DATA_TYPE = 6, - NFTA_SET_DATA_LEN = 7, - NFTA_SET_POLICY = 8, - NFTA_SET_DESC = 9, - NFTA_SET_ID = 10, - NFTA_SET_TIMEOUT = 11, - NFTA_SET_GC_INTERVAL = 12, - NFTA_SET_USERDATA = 13, - NFTA_SET_PAD = 14, - NFTA_SET_OBJ_TYPE = 15, - NFTA_SET_HANDLE = 16, - NFTA_SET_EXPR = 17, - NFTA_SET_EXPRESSIONS = 18, - __NFTA_SET_MAX = 19, -}; - -struct nft_bitmap_elem { - struct nft_elem_priv priv; - struct list_head head; - struct nft_set_ext ext; -}; - -struct nft_bitmap { - struct list_head list; - u16 bitmap_size; - u8 bitmap[0]; -}; - -enum nft_hash_types { - NFT_HASH_JENKINS = 0, - NFT_HASH_SYM = 1, -}; - -enum nft_hash_attributes { - NFTA_HASH_UNSPEC = 0, - NFTA_HASH_SREG = 1, - NFTA_HASH_DREG = 2, - NFTA_HASH_LEN = 3, - NFTA_HASH_MODULUS = 4, - NFTA_HASH_SEED = 5, - NFTA_HASH_OFFSET = 6, - NFTA_HASH_TYPE = 7, - NFTA_HASH_SET_NAME = 8, - NFTA_HASH_SET_ID = 9, - __NFTA_HASH_MAX = 10, -}; - -struct nft_jhash { - u8 sreg; - u8 dreg; - u8 len; - bool autogen_seed: 1; - u32 modulus; - u32 seed; - u32 offset; -}; - -struct nft_symhash { - u8 dreg; - u32 modulus; - u32 offset; -}; - -struct ip_set_counter_match0 { - __u8 op; - __u64 value; -}; - -struct ip_set_counter_match { - __u64 value; - __u8 op; -}; - -struct xt_set_info_v0 { - ip_set_id_t index; - union { - __u32 flags[7]; - struct { - __u32 __flags[6]; - __u8 dim; - __u8 flags; - } compat; - } u; -}; - -struct xt_set_info_match_v0 { - struct xt_set_info_v0 match_set; -}; - -struct xt_set_info_target_v0 { - struct xt_set_info_v0 add_set; - struct xt_set_info_v0 del_set; -}; - -struct xt_set_info { - ip_set_id_t index; - __u8 dim; - __u8 flags; -}; - -struct xt_set_info_match_v1 { - struct xt_set_info match_set; -}; - -struct xt_set_info_target_v1 { - struct xt_set_info add_set; - struct xt_set_info del_set; -}; - -struct xt_set_info_target_v2 { - struct xt_set_info add_set; - struct xt_set_info del_set; - __u32 flags; - __u32 timeout; -}; - -struct xt_set_info_match_v3 { - struct xt_set_info match_set; - struct ip_set_counter_match0 packets; - struct ip_set_counter_match0 bytes; - __u32 flags; -}; - -struct xt_set_info_target_v3 { - struct xt_set_info add_set; - struct xt_set_info del_set; - struct xt_set_info map_set; - __u32 flags; - __u32 timeout; -}; - -struct xt_set_info_match_v4 { - struct xt_set_info match_set; - struct ip_set_counter_match packets; - struct ip_set_counter_match bytes; - __u32 flags; -}; - -struct nf_nat_ipv4_range { - unsigned int flags; - __be32 min_ip; - __be32 max_ip; - union nf_conntrack_man_proto min; - union nf_conntrack_man_proto max; -}; - -struct nf_nat_ipv4_multi_range_compat { - unsigned int rangesize; - struct nf_nat_ipv4_range range[1]; -}; - -struct xt_helper_info { - int invert; - char name[30]; -}; - -enum xt_policy_flags { - XT_POLICY_MATCH_IN = 1, - XT_POLICY_MATCH_OUT = 2, - XT_POLICY_MATCH_NONE = 4, - XT_POLICY_MATCH_STRICT = 8, -}; - -struct xt_policy_spec { - __u8 saddr: 1; - __u8 daddr: 1; - __u8 proto: 1; - __u8 mode: 1; - __u8 spi: 1; - __u8 reqid: 1; -}; - -struct xt_policy_elem { - union { - struct { - union nf_inet_addr saddr; - union nf_inet_addr smask; - union nf_inet_addr daddr; - union nf_inet_addr dmask; - }; - }; - __be32 spi; - __u32 reqid; - __u8 proto; - __u8 mode; - struct xt_policy_spec match; - struct xt_policy_spec invert; -}; - -struct xt_policy_info { - struct xt_policy_elem pol[4]; - __u16 flags; - __u16 len; -}; - -struct hash_ipport4_elem { - __be32 ip; - __be16 port; - u8 proto; - u8 padding; -}; - -struct hash_ipport4 { - struct htable *table; - struct htable_gc gc; - u32 maxelem; - u32 initval; - u8 bucketsize; - u8 netmask; - union nf_inet_addr bitmask; - struct list_head ad; - struct hash_ipport4_elem next; -}; - -struct hash_ipport4_resize_ad { - struct list_head list; - enum ipset_adt ad; - struct hash_ipport4_elem d; - struct ip_set_ext ext; - struct ip_set_ext mext; - u32 flags; -}; - -struct hash_ipport6_elem { - union nf_inet_addr ip; - __be16 port; - u8 proto; - u8 padding; -}; - -struct hash_ipport6 { - struct htable *table; - struct htable_gc gc; - u32 maxelem; - u32 initval; - u8 bucketsize; - u8 netmask; - union nf_inet_addr bitmask; - struct list_head ad; - struct hash_ipport6_elem next; -}; - -struct hash_ipport6_resize_ad { - struct list_head list; - enum ipset_adt ad; - struct hash_ipport6_elem d; - struct ip_set_ext ext; - struct ip_set_ext mext; - u32 flags; -}; - -struct ip_options_data { - struct ip_options_rcu opt; - char data[40]; -}; - -enum { - LWTUNNEL_XMIT_DONE = 0, - LWTUNNEL_XMIT_CONTINUE = 256, -}; - -struct ipcm_cookie { - struct sockcm_cookie sockc; - __be32 addr; - int oif; - struct ip_options_rcu *opt; - __u8 protocol; - __u8 ttl; - __s16 tos; - char priority; - __u16 gso_size; -}; - -struct ip_fraglist_iter { - struct sk_buff *frag; - struct iphdr *iph; - int offset; - unsigned int hlen; -}; - -struct ip_frag_state { - bool DF; - unsigned int hlen; - unsigned int ll_rs; - unsigned int mtu; - unsigned int left; - int offset; - int ptr; - __be16 not_last_frag; -}; - -struct ip_reply_arg { - struct kvec iov[1]; - int flags; - __wsum csum; - int csumoffset; - int bound_dev_if; - u8 tos; - kuid_t uid; -}; - -enum { - UDP_FLAGS_CORK = 0, - UDP_FLAGS_NO_CHECK6_TX = 1, - UDP_FLAGS_NO_CHECK6_RX = 2, - UDP_FLAGS_GRO_ENABLED = 3, - UDP_FLAGS_ACCEPT_FRAGLIST = 4, - UDP_FLAGS_ACCEPT_L4 = 5, - UDP_FLAGS_ENCAP_ENABLED = 6, - UDP_FLAGS_UDPLITE_SEND_CC = 7, - UDP_FLAGS_UDPLITE_RECV_CC = 8, -}; - -struct icmp_err { - int errno; - unsigned int fatal: 1; -}; - -typedef u32 inet_ehashfn_t(const struct net *, const __be32, const __u16, const __be32, const __be16); - -struct ip_tunnel_encap_ops { - size_t (*encap_hlen)(struct ip_tunnel_encap *); - int (*build_header)(struct sk_buff *, struct ip_tunnel_encap *, u8 *, struct flowi4 *); - int (*err_handler)(struct sk_buff *, u32); -}; - -enum { - XFRM_DEV_OFFLOAD_UNSPECIFIED = 0, - XFRM_DEV_OFFLOAD_CRYPTO = 1, - XFRM_DEV_OFFLOAD_PACKET = 2, -}; - -struct udp_skb_cb { - union { - struct inet_skb_parm h4; - struct inet6_skb_parm h6; - } header; - __u16 cscov; - __u8 partial_cov; -}; - -struct udp_dev_scratch { - u32 _tsize_state; - u16 len; - bool is_linear; - bool csum_unnecessary; -}; - -struct udp_iter_state { - struct seq_net_private p; - int bucket; -}; - -struct bpf_iter__udp { - union { - struct bpf_iter_meta *meta; - }; - union { - struct udp_sock *udp_sk; - }; - uid_t uid; - long: 0; - int bucket; -}; - -struct bpf_udp_iter_state { - struct udp_iter_state state; - unsigned int cur_sk; - unsigned int end_sk; - unsigned int max_sk; - int offset; - struct sock **batch; - bool st_bucket_done; -}; - -struct ip_comp_hdr { - __u8 nexthdr; - __u8 flags; - __be16 cpi; -}; - -enum { - XFRM_STATE_VOID = 0, - XFRM_STATE_ACQ = 1, - XFRM_STATE_VALID = 2, - XFRM_STATE_ERROR = 3, - XFRM_STATE_EXPIRED = 4, - XFRM_STATE_DEAD = 5, -}; - -struct xfrm4_protocol { - int (*handler)(struct sk_buff *); - int (*input_handler)(struct sk_buff *, int, __be32, int); - int (*cb_handler)(struct sk_buff *, int); - int (*err_handler)(struct sk_buff *, u32); - struct xfrm4_protocol *next; - int priority; -}; - -struct arpt_replace { - char name[32]; - unsigned int valid_hooks; - unsigned int num_entries; - unsigned int size; - unsigned int hook_entry[3]; - unsigned int underflow[3]; - unsigned int num_counters; - struct xt_counters *counters; - struct arpt_entry entries[0]; -}; - -struct xfrm_state_afinfo { - u8 family; - u8 proto; - const struct xfrm_type_offload *type_offload_esp; - const struct xfrm_type *type_esp; - const struct xfrm_type *type_ipip; - const struct xfrm_type *type_ipip6; - const struct xfrm_type *type_comp; - const struct xfrm_type *type_ah; - const struct xfrm_type *type_routing; - const struct xfrm_type *type_dstopts; - int (*output)(struct net *, struct sock *, struct sk_buff *); - int (*transport_finish)(struct sk_buff *, int); - void (*local_error)(struct sk_buff *, u32); -}; - -struct xfrm_algo_list { - int (*find)(const char *, u32, u32); - struct xfrm_algo_desc *algs; - int entries; -}; - -struct xfrm_aead_name { - const char *name; - int icvbits; -}; - -struct in6_rtmsg { - struct in6_addr rtmsg_dst; - struct in6_addr rtmsg_src; - struct in6_addr rtmsg_gateway; - __u32 rtmsg_type; - __u16 rtmsg_dst_len; - __u16 rtmsg_src_len; - __u32 rtmsg_metric; - long unsigned int rtmsg_info; - __u32 rtmsg_flags; - int rtmsg_ifindex; -}; - -struct fib6_gc_args { - int timeout; - int more; -}; - -struct rt6_exception { - struct hlist_node hlist; - struct rt6_info *rt6i; - long unsigned int stamp; - struct callback_head rcu; -}; - -struct rt6_rtnl_dump_arg { - struct sk_buff *skb; - struct netlink_callback *cb; - struct net *net; - struct fib_dump_filter filter; -}; - -struct netevent_redirect { - struct dst_entry *old; - struct dst_entry *new; - struct neighbour *neigh; - const void *daddr; -}; - -struct trace_event_raw_fib6_table_lookup { - struct trace_entry ent; - u32 tb_id; - int err; - int oif; - int iif; - __u8 tos; - __u8 scope; - __u8 flags; - __u8 src[16]; - __u8 dst[16]; - u16 sport; - u16 dport; - u8 proto; - u8 rt_type; - char name[16]; - __u8 gw[16]; - char __data[0]; -}; - -struct trace_event_data_offsets_fib6_table_lookup {}; - -typedef void (*btf_trace_fib6_table_lookup)(void *, const struct net *, const struct fib6_result *, struct fib6_table *, const struct flowi6 *); - -enum rt6_nud_state { - RT6_NUD_FAIL_HARD = -3, - RT6_NUD_FAIL_PROBE = -2, - RT6_NUD_FAIL_DO_RR = -1, - RT6_NUD_SUCCEED = 1, -}; - -struct fib6_nh_dm_arg { - struct net *net; - const struct in6_addr *saddr; - int oif; - int flags; - struct fib6_nh *nh; -}; - -struct __rt6_probe_work { - struct work_struct work; - struct in6_addr target; - struct net_device *dev; - netdevice_tracker dev_tracker; -}; - -struct fib6_nh_frl_arg { - u32 flags; - int oif; - int strict; - int *mpri; - bool *do_rr; - struct fib6_nh *nh; -}; - -struct fib6_nh_excptn_arg { - struct rt6_info *rt; - int plen; -}; - -struct fib6_nh_match_arg { - const struct net_device *dev; - const struct in6_addr *gw; - struct fib6_nh *match; -}; - -struct fib6_nh_age_excptn_arg { - struct fib6_gc_args *gc_args; - long unsigned int now; -}; - -struct fib6_nh_rd_arg { - struct fib6_result *res; - struct flowi6 *fl6; - const struct in6_addr *gw; - struct rt6_info **ret; -}; - -struct ip6rd_flowi { - struct flowi6 fl6; - struct in6_addr gateway; -}; - -struct fib6_nh_del_cached_rt_arg { - struct fib6_config *cfg; - struct fib6_info *f6i; -}; - -struct arg_dev_net_ip { - struct net *net; - struct in6_addr *addr; -}; - -struct arg_netdev_event { - const struct net_device *dev; - union { - unsigned char nh_flags; - long unsigned int event; - }; -}; - -struct rt6_mtu_change_arg { - struct net_device *dev; - unsigned int mtu; - struct fib6_info *f6i; -}; - -struct rt6_nh { - struct fib6_info *fib6_info; - struct fib6_config r_cfg; - struct list_head next; -}; - -struct fib6_nh_exception_dump_walker { - struct rt6_rtnl_dump_arg *dump; - struct fib6_info *rt; - unsigned int flags; - unsigned int skip; - unsigned int count; -}; - -struct ip6t_ipv6header_info { - __u8 matchflags; - __u8 invflags; - __u8 modeflag; -}; - -enum { - IFLA_BRIDGE_VLAN_TUNNEL_UNSPEC = 0, - IFLA_BRIDGE_VLAN_TUNNEL_ID = 1, - IFLA_BRIDGE_VLAN_TUNNEL_VID = 2, - IFLA_BRIDGE_VLAN_TUNNEL_FLAGS = 3, - __IFLA_BRIDGE_VLAN_TUNNEL_MAX = 4, -}; - -struct ebt_limit_info { - __u32 avg; - __u32 burst; - long unsigned int prev; - __u32 credit; - __u32 credit_cap; - __u32 cost; -}; - -struct rpc_filelist { - const char *name; - const struct file_operations *i_fop; - umode_t mode; -}; - -enum { - RPCAUTH_info = 0, - RPCAUTH_EOF = 1, -}; - -enum { - RPCAUTH_lockd = 0, - RPCAUTH_mount = 1, - RPCAUTH_nfs = 2, - RPCAUTH_portmap = 3, - RPCAUTH_statd = 4, - RPCAUTH_nfsd4_cb = 5, - RPCAUTH_cache = 6, - RPCAUTH_nfsd = 7, - RPCAUTH_gssd = 8, - RPCAUTH_RootEOF = 9, -}; - -struct sockaddr_l2tpip { - __kernel_sa_family_t l2tp_family; - __be16 l2tp_unused; - struct in_addr l2tp_addr; - __u32 l2tp_conn_id; - unsigned char __pad[4]; -}; - -struct sockaddr_l2tpip6 { - __kernel_sa_family_t l2tp_family; - __be16 l2tp_unused; - __be32 l2tp_flowinfo; - struct in6_addr l2tp_addr; - __u32 l2tp_scope_id; - __u32 l2tp_conn_id; -}; - -enum l2tp_pwtype { - L2TP_PWTYPE_NONE = 0, - L2TP_PWTYPE_ETH_VLAN = 4, - L2TP_PWTYPE_ETH = 5, - L2TP_PWTYPE_PPP = 7, - L2TP_PWTYPE_PPP_AC = 8, - L2TP_PWTYPE_IP = 11, - __L2TP_PWTYPE_MAX = 12, -}; - -enum l2tp_l2spec_type { - L2TP_L2SPECTYPE_NONE = 0, - L2TP_L2SPECTYPE_DEFAULT = 1, -}; - -enum l2tp_encap_type { - L2TP_ENCAPTYPE_UDP = 0, - L2TP_ENCAPTYPE_IP = 1, -}; - -struct udp_port_cfg { - u8 family; - union { - struct in_addr local_ip; - struct in6_addr local_ip6; - }; - union { - struct in_addr peer_ip; - struct in6_addr peer_ip6; - }; - __be16 local_udp_port; - __be16 peer_udp_port; - int bind_ifindex; - unsigned int use_udp_checksums: 1; - unsigned int use_udp6_tx_checksums: 1; - unsigned int use_udp6_rx_checksums: 1; - unsigned int ipv6_v6only: 1; -}; - -typedef int (*udp_tunnel_encap_rcv_t)(struct sock *, struct sk_buff *); - -typedef int (*udp_tunnel_encap_err_lookup_t)(struct sock *, struct sk_buff *); - -typedef void (*udp_tunnel_encap_err_rcv_t)(struct sock *, struct sk_buff *, int, __be16, u32, u8 *); - -typedef void (*udp_tunnel_encap_destroy_t)(struct sock *); - -typedef struct sk_buff * (*udp_tunnel_gro_receive_t)(struct sock *, struct list_head *, struct sk_buff *); - -typedef int (*udp_tunnel_gro_complete_t)(struct sock *, struct sk_buff *, int); - -struct udp_tunnel_sock_cfg { - void *sk_user_data; - __u8 encap_type; - udp_tunnel_encap_rcv_t encap_rcv; - udp_tunnel_encap_err_lookup_t encap_err_lookup; - udp_tunnel_encap_err_rcv_t encap_err_rcv; - udp_tunnel_encap_destroy_t encap_destroy; - udp_tunnel_gro_receive_t gro_receive; - udp_tunnel_gro_complete_t gro_complete; -}; - -struct l2tp_stats { - atomic_long_t tx_packets; - atomic_long_t tx_bytes; - atomic_long_t tx_errors; - atomic_long_t rx_packets; - atomic_long_t rx_bytes; - atomic_long_t rx_seq_discards; - atomic_long_t rx_oos_packets; - atomic_long_t rx_errors; - atomic_long_t rx_cookie_discards; - atomic_long_t rx_invalid; -}; - -struct l2tp_session_cfg { - enum l2tp_pwtype pw_type; - unsigned int recv_seq: 1; - unsigned int send_seq: 1; - unsigned int lns_mode: 1; - u16 l2specific_type; - u8 cookie[8]; - int cookie_len; - u8 peer_cookie[8]; - int peer_cookie_len; - int reorder_timeout; - char *ifname; -}; - -struct l2tp_session_coll_list { - spinlock_t lock; - struct list_head list; - refcount_t ref_count; -}; - -struct l2tp_tunnel; - -struct l2tp_session { - int magic; - long int dead; - struct callback_head rcu; - struct l2tp_tunnel *tunnel; - u32 session_id; - u32 peer_session_id; - u8 cookie[8]; - int cookie_len; - u8 peer_cookie[8]; - int peer_cookie_len; - u16 l2specific_type; - u16 hdr_len; - u32 nr; - u32 ns; - struct sk_buff_head reorder_q; - u32 nr_max; - u32 nr_window_size; - u32 nr_oos; - int nr_oos_count; - int nr_oos_count_max; - struct list_head list; - refcount_t ref_count; - struct hlist_node hlist; - long unsigned int hlist_key; - struct l2tp_session_coll_list *coll_list; - struct list_head clist; - char name[32]; - char ifname[16]; - unsigned int recv_seq: 1; - unsigned int send_seq: 1; - unsigned int lns_mode: 1; - int reorder_timeout; - int reorder_skip; - enum l2tp_pwtype pwtype; - struct l2tp_stats stats; - struct work_struct del_work; - void (*recv_skb)(struct l2tp_session *, struct sk_buff *, int); - void (*session_close)(struct l2tp_session *); - void (*show)(struct seq_file *, void *); - u8 priv[0]; -}; - -struct l2tp_tunnel { - long unsigned int dead; - struct callback_head rcu; - spinlock_t list_lock; - bool acpt_newsess; - struct list_head session_list; - u32 tunnel_id; - u32 peer_tunnel_id; - int version; - char name[20]; - enum l2tp_encap_type encap; - struct l2tp_stats stats; - struct net *l2tp_net; - refcount_t ref_count; - struct sock *sock; - int fd; - struct work_struct del_work; -}; - -struct l2tp_tunnel_cfg { - enum l2tp_encap_type encap; - struct in_addr local_ip; - struct in_addr peer_ip; - struct in6_addr *local_ip6; - struct in6_addr *peer_ip6; - u16 local_udp_port; - u16 peer_udp_port; - unsigned int use_udp_checksums: 1; - unsigned int udp6_zero_tx_checksums: 1; - unsigned int udp6_zero_rx_checksums: 1; -}; - -struct trace_event_raw_tunnel_only_evt { - struct trace_entry ent; - char name[20]; - char __data[0]; -}; - -struct trace_event_raw_session_only_evt { - struct trace_entry ent; - char name[32]; - char __data[0]; -}; - -struct trace_event_raw_register_tunnel { - struct trace_entry ent; - char name[20]; - int fd; - u32 tid; - u32 ptid; - int version; - enum l2tp_encap_type encap; - char __data[0]; -}; - -struct trace_event_raw_register_session { - struct trace_entry ent; - char name[32]; - u32 tid; - u32 ptid; - u32 sid; - u32 psid; - enum l2tp_pwtype pwtype; - char __data[0]; -}; - -struct trace_event_raw_session_seqnum_evt { - struct trace_entry ent; - char name[32]; - u32 ns; - u32 nr; - char __data[0]; -}; - -struct trace_event_raw_session_pkt_discard_evt { - struct trace_entry ent; - char name[32]; - u32 pkt_ns; - u32 my_nr; - u32 reorder_q_len; - char __data[0]; -}; - -struct trace_event_data_offsets_tunnel_only_evt {}; - -struct trace_event_data_offsets_session_only_evt {}; - -struct trace_event_data_offsets_register_tunnel {}; - -struct trace_event_data_offsets_register_session {}; - -struct trace_event_data_offsets_session_seqnum_evt {}; - -struct trace_event_data_offsets_session_pkt_discard_evt {}; - -typedef void (*btf_trace_register_tunnel)(void *, struct l2tp_tunnel *); - -typedef void (*btf_trace_delete_tunnel)(void *, struct l2tp_tunnel *); - -typedef void (*btf_trace_free_tunnel)(void *, struct l2tp_tunnel *); - -typedef void (*btf_trace_register_session)(void *, struct l2tp_session *); - -typedef void (*btf_trace_delete_session)(void *, struct l2tp_session *); - -typedef void (*btf_trace_free_session)(void *, struct l2tp_session *); - -typedef void (*btf_trace_session_seqnum_lns_enable)(void *, struct l2tp_session *); - -typedef void (*btf_trace_session_seqnum_lns_disable)(void *, struct l2tp_session *); - -typedef void (*btf_trace_session_seqnum_update)(void *, struct l2tp_session *); - -typedef void (*btf_trace_session_seqnum_reset)(void *, struct l2tp_session *); - -typedef void (*btf_trace_session_pkt_expired)(void *, struct l2tp_session *, u32); - -typedef void (*btf_trace_session_pkt_outside_rx_window)(void *, struct l2tp_session *, u32); - -typedef void (*btf_trace_session_pkt_oos)(void *, struct l2tp_session *, u32); - -struct l2tp_skb_cb { - u32 ns; - u16 has_seq; - u16 length; - long unsigned int expires; -}; - -struct l2tp_net { - spinlock_t l2tp_tunnel_idr_lock; - struct idr l2tp_tunnel_idr; - spinlock_t l2tp_session_idr_lock; - struct idr l2tp_v2_session_idr; - struct idr l2tp_v3_session_idr; - struct hlist_head l2tp_v3_session_htable[16]; -}; - -struct sctp_gap_ack_block { - __be16 start; - __be16 end; -}; - -enum { - SCTP_MAX_GABS = 16, -}; - -struct sctp_tsnmap_iter { - __u32 start; -}; - -enum { - SCTP_DSCP_SET_MASK = 1, - SCTP_DSCP_VAL_MASK = 252, - SCTP_FLOWLABEL_SET_MASK = 1048576, - SCTP_FLOWLABEL_VAL_MASK = 1048575, -}; - -struct sctp6_sock { - struct sctp_sock sctp; - struct ipv6_pinfo inet6; -}; - -enum ovs_vport_cmd { - OVS_VPORT_CMD_UNSPEC = 0, - OVS_VPORT_CMD_NEW = 1, - OVS_VPORT_CMD_DEL = 2, - OVS_VPORT_CMD_GET = 3, - OVS_VPORT_CMD_SET = 4, -}; - -struct ovs_ct_limit_info; - -struct ovs_net { - struct list_head dps; - struct work_struct dp_notify_work; - struct delayed_work masks_rebalance; - struct ovs_ct_limit_info *ct_limit_info; - bool xt_label; -}; - -struct mpls_nh { - struct net_device *nh_dev; - unsigned int nh_flags; - u8 nh_labels; - u8 nh_via_alen; - u8 nh_via_table; - u8 nh_reserved1; - u32 nh_label[0]; -}; - -struct mpls_route { - struct callback_head rt_rcu; - u8 rt_protocol; - u8 rt_payload_type; - u8 rt_max_alen; - u8 rt_ttl_propagate; - u8 rt_nhn; - u8 rt_nhn_alive; - u8 rt_nh_size; - u8 rt_via_offset; - u8 rt_reserved1; - struct mpls_nh rt_nh[0]; -}; - -struct mpls_pcpu_stats; - -struct mpls_dev { - int input_enabled; - struct net_device *dev; - struct mpls_pcpu_stats *stats; - struct ctl_table_header *sysctl; - struct callback_head rcu; -}; - -struct rtnl_msg_handler { - struct module *owner; - int protocol; - int msgtype; - rtnl_doit_func doit; - rtnl_dumpit_func dumpit; - int flags; -}; - -enum { - MPLS_STATS_UNSPEC = 0, - MPLS_STATS_LINK = 1, - __MPLS_STATS_MAX = 2, -}; - -struct mpls_link_stats { - __u64 rx_packets; - __u64 tx_packets; - __u64 rx_bytes; - __u64 tx_bytes; - __u64 rx_errors; - __u64 tx_errors; - __u64 rx_dropped; - __u64 tx_dropped; - __u64 rx_noroute; -}; - -struct netconfmsg { - __u8 ncm_family; -}; - -enum { - NETCONFA_UNSPEC = 0, - NETCONFA_IFINDEX = 1, - NETCONFA_FORWARDING = 2, - NETCONFA_RP_FILTER = 3, - NETCONFA_MC_FORWARDING = 4, - NETCONFA_PROXY_NEIGH = 5, - NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN = 6, - NETCONFA_INPUT = 7, - NETCONFA_BC_FORWARDING = 8, - __NETCONFA_MAX = 9, -}; - -struct mpls_shim_hdr { - __be32 label_stack_entry; -}; - -struct mpls_entry_decoded { - u32 label; - u8 ttl; - u8 tc; - u8 bos; -}; - -struct mpls_pcpu_stats { - struct mpls_link_stats stats; - struct u64_stats_sync syncp; -}; - -enum mpls_payload_type { - MPT_UNSPEC = 0, - MPT_IPV4 = 4, - MPT_IPV6 = 6, -}; - -enum mpls_ttl_propagation { - MPLS_TTL_PROP_DEFAULT = 0, - MPLS_TTL_PROP_ENABLED = 1, - MPLS_TTL_PROP_DISABLED = 2, -}; - -struct mpls_route_config { - u32 rc_protocol; - u32 rc_ifindex; - u8 rc_via_table; - u8 rc_via_alen; - u8 rc_via[32]; - u32 rc_label; - u8 rc_ttl_propagate; - u8 rc_output_labels; - u32 rc_output_label[30]; - u32 rc_nlflags; - enum mpls_payload_type rc_payload_type; - struct nl_info rc_nlinfo; - struct rtnexthop *rc_mp; - int rc_mp_len; -}; - -struct trace_event_raw_cpuhp_enter { - struct trace_entry ent; - unsigned int cpu; - int target; - int idx; - void *fun; - char __data[0]; -}; - -struct trace_event_raw_cpuhp_multi_enter { - struct trace_entry ent; - unsigned int cpu; - int target; - int idx; - void *fun; - char __data[0]; -}; - -struct trace_event_raw_cpuhp_exit { - struct trace_entry ent; - unsigned int cpu; - int state; - int idx; - int ret; - char __data[0]; -}; - -struct trace_event_data_offsets_cpuhp_enter {}; - -struct trace_event_data_offsets_cpuhp_multi_enter {}; - -struct trace_event_data_offsets_cpuhp_exit {}; - -typedef void (*btf_trace_cpuhp_enter)(void *, unsigned int, int, int, int (*)(unsigned int)); - -typedef void (*btf_trace_cpuhp_multi_enter)(void *, unsigned int, int, int, int (*)(unsigned int, struct hlist_node *), struct hlist_node *); - -typedef void (*btf_trace_cpuhp_exit)(void *, unsigned int, int, int, int); - -struct cpuhp_cpu_state { - enum cpuhp_state state; - enum cpuhp_state target; - enum cpuhp_state fail; - struct task_struct *thread; - bool should_run; - bool rollback; - bool single; - bool bringup; - struct hlist_node *node; - struct hlist_node *last; - enum cpuhp_state cb_state; - int result; - atomic_t ap_sync_state; - struct completion done_up; - struct completion done_down; -}; - -struct cpuhp_step { - const char *name; - union { - int (*single)(unsigned int); - int (*multi)(unsigned int, struct hlist_node *); - } startup; - union { - int (*single)(unsigned int); - int (*multi)(unsigned int, struct hlist_node *); - } teardown; - struct hlist_head list; - bool cant_stop; - bool multi_instance; -}; - -enum cpuhp_sync_state { - SYNC_STATE_DEAD = 0, - SYNC_STATE_KICKED = 1, - SYNC_STATE_SHOULD_DIE = 2, - SYNC_STATE_ALIVE = 3, - SYNC_STATE_SHOULD_ONLINE = 4, - SYNC_STATE_ONLINE = 5, -}; - -enum cpu_mitigations { - CPU_MITIGATIONS_OFF = 0, - CPU_MITIGATIONS_AUTO = 1, - CPU_MITIGATIONS_AUTO_NOSMT = 2, -}; - -struct sched_param { - int sched_priority; -}; - -enum { - KTW_FREEZABLE = 1, -}; - -struct kthread_delayed_work { - struct kthread_work work; - struct timer_list timer; -}; - -struct kthread_create_info { - char *full_name; - int (*threadfn)(void *); - void *data; - int node; - struct task_struct *result; - struct completion *done; - struct list_head list; -}; - -struct kthread { - long unsigned int flags; - unsigned int cpu; - int result; - int (*threadfn)(void *); - void *data; - struct completion parked; - struct completion exited; - struct cgroup_subsys_state *blkcg_css; - char *full_name; -}; - -enum KTHREAD_BITS { - KTHREAD_IS_PER_CPU = 0, - KTHREAD_SHOULD_STOP = 1, - KTHREAD_SHOULD_PARK = 2, -}; - -struct kthread_flush_work { - struct kthread_work work; - struct completion done; -}; - -struct mcs_spinlock { - struct mcs_spinlock *next; - int locked; - int count; -}; - -struct qnode { - struct mcs_spinlock mcs; -}; - -enum { - IRQC_IS_HARDIRQ = 0, - IRQC_IS_NESTED = 1, -}; - -struct ktime_timestamps { - u64 mono; - u64 boot; - u64 real; -}; - -struct system_time_snapshot { - u64 cycles; - ktime_t real; - ktime_t raw; - enum clocksource_ids cs_id; - unsigned int clock_was_set_seq; - u8 cs_was_changed_seq; -}; - -struct system_device_crosststamp { - ktime_t device; - ktime_t sys_realtime; - ktime_t sys_monoraw; -}; - -struct system_counterval_t { - u64 cycles; - enum clocksource_ids cs_id; - bool use_nsecs; -}; - -enum timekeeping_adv_mode { - TK_ADV_TICK = 0, - TK_ADV_FREQ = 1, -}; - -struct tk_fast { - seqcount_latch_t seq; - struct tk_read_base base[2]; -}; - -struct tmigr_event { - struct timerqueue_node nextevt; - unsigned int cpu; - bool ignore; -}; - -struct tmigr_group { - raw_spinlock_t lock; - struct tmigr_group *parent; - struct tmigr_event groupevt; - u64 next_expiry; - struct timerqueue_head events; - atomic_t migr_state; - unsigned int level; - int numa_node; - unsigned int num_children; - u8 groupmask; - struct list_head list; -}; - -struct tmigr_cpu { - raw_spinlock_t lock; - bool online; - bool idle; - bool remote; - struct tmigr_group *tmgroup; - u8 groupmask; - u64 wakeup; - struct tmigr_event cpuevt; -}; - -union tmigr_state { - u32 state; - struct { - u8 active; - u8 migrator; - u16 seq; - }; -}; - -struct trace_event_raw_tmigr_group_set { - struct trace_entry ent; - void *group; - unsigned int lvl; - unsigned int numa_node; - char __data[0]; -}; - -struct trace_event_raw_tmigr_connect_child_parent { - struct trace_entry ent; - void *child; - void *parent; - unsigned int lvl; - unsigned int numa_node; - unsigned int num_children; - u32 groupmask; - char __data[0]; -}; - -struct trace_event_raw_tmigr_connect_cpu_parent { - struct trace_entry ent; - void *parent; - unsigned int cpu; - unsigned int lvl; - unsigned int numa_node; - unsigned int num_children; - u32 groupmask; - char __data[0]; -}; - -struct trace_event_raw_tmigr_group_and_cpu { - struct trace_entry ent; - void *group; - void *parent; - unsigned int lvl; - unsigned int numa_node; - u32 childmask; - u8 active; - u8 migrator; - char __data[0]; -}; - -struct trace_event_raw_tmigr_cpugroup { - struct trace_entry ent; - u64 wakeup; - void *parent; - unsigned int cpu; - char __data[0]; -}; - -struct trace_event_raw_tmigr_idle { - struct trace_entry ent; - u64 nextevt; - u64 wakeup; - void *parent; - unsigned int cpu; - char __data[0]; -}; - -struct trace_event_raw_tmigr_update_events { - struct trace_entry ent; - void *child; - void *group; - u64 nextevt; - u64 group_next_expiry; - u64 child_evt_expiry; - unsigned int group_lvl; - unsigned int child_evtcpu; - u8 child_active; - u8 group_active; - char __data[0]; -}; - -struct trace_event_raw_tmigr_handle_remote { - struct trace_entry ent; - void *group; - unsigned int lvl; - char __data[0]; -}; - -struct trace_event_data_offsets_tmigr_group_set {}; - -struct trace_event_data_offsets_tmigr_connect_child_parent {}; - -struct trace_event_data_offsets_tmigr_connect_cpu_parent {}; - -struct trace_event_data_offsets_tmigr_group_and_cpu {}; - -struct trace_event_data_offsets_tmigr_cpugroup {}; - -struct trace_event_data_offsets_tmigr_idle {}; - -struct trace_event_data_offsets_tmigr_update_events {}; - -struct trace_event_data_offsets_tmigr_handle_remote {}; - -typedef void (*btf_trace_tmigr_group_set)(void *, struct tmigr_group *); - -typedef void (*btf_trace_tmigr_connect_child_parent)(void *, struct tmigr_group *); - -typedef void (*btf_trace_tmigr_connect_cpu_parent)(void *, struct tmigr_cpu *); - -typedef void (*btf_trace_tmigr_group_set_cpu_inactive)(void *, struct tmigr_group *, union tmigr_state, u32); - -typedef void (*btf_trace_tmigr_group_set_cpu_active)(void *, struct tmigr_group *, union tmigr_state, u32); - -typedef void (*btf_trace_tmigr_cpu_new_timer)(void *, struct tmigr_cpu *); - -typedef void (*btf_trace_tmigr_cpu_active)(void *, struct tmigr_cpu *); - -typedef void (*btf_trace_tmigr_cpu_online)(void *, struct tmigr_cpu *); - -typedef void (*btf_trace_tmigr_cpu_offline)(void *, struct tmigr_cpu *); - -typedef void (*btf_trace_tmigr_handle_remote_cpu)(void *, struct tmigr_cpu *); - -typedef void (*btf_trace_tmigr_cpu_idle)(void *, struct tmigr_cpu *, u64); - -typedef void (*btf_trace_tmigr_cpu_new_timer_idle)(void *, struct tmigr_cpu *, u64); - -typedef void (*btf_trace_tmigr_update_events)(void *, struct tmigr_group *, struct tmigr_group *, union tmigr_state, union tmigr_state, u64); - -typedef void (*btf_trace_tmigr_handle_remote)(void *, struct tmigr_group *); - -struct tmigr_walk { - u64 nextexp; - u64 firstexp; - struct tmigr_event *evt; - u8 childmask; - bool remote; - long unsigned int basej; - u64 now; - bool check; - bool tmc_active; -}; - -typedef bool (*up_f)(struct tmigr_group *, struct tmigr_group *, struct tmigr_walk *); - -struct cpu_stop_done { - atomic_t nr_todo; - int ret; - struct completion completion; -}; - -struct cpu_stopper { - struct task_struct *thread; - raw_spinlock_t lock; - bool enabled; - struct list_head works; - struct cpu_stop_work stop_work; - long unsigned int caller; - cpu_stop_fn_t fn; -}; - -enum multi_stop_state { - MULTI_STOP_NONE = 0, - MULTI_STOP_PREPARE = 1, - MULTI_STOP_DISABLE_IRQ = 2, - MULTI_STOP_RUN = 3, - MULTI_STOP_EXIT = 4, -}; - -struct multi_stop_data { - cpu_stop_fn_t fn; - void *data; - unsigned int num_threads; - const struct cpumask *active_cpus; - enum multi_stop_state state; - atomic_t thread_ack; -}; - -enum { - TRACE_NOP_OPT_ACCEPT = 1, - TRACE_NOP_OPT_REFUSE = 2, -}; - -struct trace_probe_log { - const char *subsystem; - const char **argv; - int argc; - int index; -}; - -enum bpf_jit_poke_reason { - BPF_POKE_REASON_TAIL_CALL = 0, -}; - -struct bpf_iter__bpf_map_elem { - union { - struct bpf_iter_meta *meta; - }; - union { - struct bpf_map *map; - }; - union { - void *key; - }; - union { - void *value; - }; -}; - -struct bpf_iter_seq_array_map_info { - struct bpf_map *map; - void *percpu_value_buf; - u32 index; -}; - -struct prog_poke_elem { - struct list_head list; - struct bpf_prog_aux *aux; -}; - -typedef u64 (*btf_bpf_cgrp_storage_get)(struct bpf_map *, struct cgroup *, void *, u64, gfp_t); - -typedef u64 (*btf_bpf_cgrp_storage_delete)(struct bpf_map *, struct cgroup *); - -struct perf_event_mmap_page { - __u32 version; - __u32 compat_version; - __u32 lock; - __u32 index; - __s64 offset; - __u64 time_enabled; - __u64 time_running; - union { - __u64 capabilities; - struct { - __u64 cap_bit0: 1; - __u64 cap_bit0_is_deprecated: 1; - __u64 cap_user_rdpmc: 1; - __u64 cap_user_time: 1; - __u64 cap_user_time_zero: 1; - __u64 cap_user_time_short: 1; - __u64 cap_____res: 58; - }; - }; - __u16 pmc_width; - __u16 time_shift; - __u32 time_mult; - __u64 time_offset; - __u64 time_zero; - __u32 size; - __u32 __reserved_1; - __u64 time_cycles; - __u64 time_mask; - __u8 __reserved[928]; - __u64 data_head; - __u64 data_tail; - __u64 data_offset; - __u64 data_size; - __u64 aux_head; - __u64 aux_tail; - __u64 aux_offset; - __u64 aux_size; -}; - -struct perf_buffer { - refcount_t refcount; - struct callback_head callback_head; - int nr_pages; - int overwrite; - int paused; - atomic_t poll; - local_t head; - unsigned int nest; - local_t events; - local_t wakeup; - local_t lost; - long int watermark; - long int aux_watermark; - spinlock_t event_lock; - struct list_head event_list; - atomic_t mmap_count; - long unsigned int mmap_locked; - struct user_struct *mmap_user; - struct mutex aux_mutex; - long int aux_head; - unsigned int aux_nest; - long int aux_wakeup; - long unsigned int aux_pgoff; - int aux_nr_pages; - int aux_overwrite; - atomic_t aux_mmap_count; - long unsigned int aux_mmap_locked; - void (*free_aux)(void *); - refcount_t aux_refcount; - int aux_in_sampling; - int aux_in_pause_resume; - void **aux_pages; - void *aux_priv; - struct perf_event_mmap_page *user_page; - void *data_pages[0]; -}; - -struct callchain_cpus_entries { - struct callback_head callback_head; - struct perf_callchain_entry *cpu_entries[0]; -}; - -struct wait_page_key { - struct folio *folio; - int bit_nr; - int page_match; -}; - -struct cachestat_range { - __u64 off; - __u64 len; -}; - -struct cachestat { - __u64 nr_cache; - __u64 nr_dirty; - __u64 nr_writeback; - __u64 nr_evicted; - __u64 nr_recently_evicted; -}; - -struct trace_event_raw_mm_filemap_op_page_cache { - struct trace_entry ent; - long unsigned int pfn; - long unsigned int i_ino; - long unsigned int index; - dev_t s_dev; - unsigned char order; - char __data[0]; -}; - -struct trace_event_raw_mm_filemap_op_page_cache_range { - struct trace_entry ent; - long unsigned int i_ino; - dev_t s_dev; - long unsigned int index; - long unsigned int last_index; - char __data[0]; -}; - -struct trace_event_raw_mm_filemap_fault { - struct trace_entry ent; - long unsigned int i_ino; - dev_t s_dev; - long unsigned int index; - char __data[0]; -}; - -struct trace_event_raw_filemap_set_wb_err { - struct trace_entry ent; - long unsigned int i_ino; - dev_t s_dev; - errseq_t errseq; - char __data[0]; -}; - -struct trace_event_raw_file_check_and_advance_wb_err { - struct trace_entry ent; - struct file *file; - long unsigned int i_ino; - dev_t s_dev; - errseq_t old; - errseq_t new; - char __data[0]; -}; - -struct trace_event_data_offsets_mm_filemap_op_page_cache {}; - -struct trace_event_data_offsets_mm_filemap_op_page_cache_range {}; - -struct trace_event_data_offsets_mm_filemap_fault {}; - -struct trace_event_data_offsets_filemap_set_wb_err {}; - -struct trace_event_data_offsets_file_check_and_advance_wb_err {}; - -typedef void (*btf_trace_mm_filemap_delete_from_page_cache)(void *, struct folio *); - -typedef void (*btf_trace_mm_filemap_add_to_page_cache)(void *, struct folio *); - -typedef void (*btf_trace_mm_filemap_get_pages)(void *, struct address_space *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_mm_filemap_map_pages)(void *, struct address_space *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_mm_filemap_fault)(void *, struct address_space *, long unsigned int); - -typedef void (*btf_trace_filemap_set_wb_err)(void *, struct address_space *, errseq_t); - -typedef void (*btf_trace_file_check_and_advance_wb_err)(void *, struct file *, errseq_t); - -enum behavior { - EXCLUSIVE = 0, - SHARED = 1, - DROP = 2, -}; - -struct trace_event_raw_mmap_lock { - struct trace_entry ent; - struct mm_struct *mm; - u32 __data_loc_memcg_path; - bool write; - char __data[0]; -}; - -struct trace_event_raw_mmap_lock_acquire_returned { - struct trace_entry ent; - struct mm_struct *mm; - u32 __data_loc_memcg_path; - bool write; - bool success; - char __data[0]; -}; - -struct trace_event_data_offsets_mmap_lock { - u32 memcg_path; - const void *memcg_path_ptr_; -}; - -struct trace_event_data_offsets_mmap_lock_acquire_returned { - u32 memcg_path; - const void *memcg_path_ptr_; -}; - -typedef void (*btf_trace_mmap_lock_start_locking)(void *, struct mm_struct *, const char *, bool); - -typedef void (*btf_trace_mmap_lock_released)(void *, struct mm_struct *, const char *, bool); - -typedef void (*btf_trace_mmap_lock_acquire_returned)(void *, struct mm_struct *, const char *, bool, bool); - -struct anon_vma_name { - struct kref kref; - char name[0]; -}; - -struct vma_prepare { - struct vm_area_struct *vma; - struct vm_area_struct *adj_next; - struct file *file; - struct address_space *mapping; - struct anon_vma *anon_vma; - struct vm_area_struct *insert; - struct vm_area_struct *remove; - struct vm_area_struct *remove2; -}; - -struct vma_munmap_struct { - struct vma_iterator *vmi; - struct vm_area_struct *vma; - struct vm_area_struct *prev; - struct vm_area_struct *next; - struct list_head *uf; - long unsigned int start; - long unsigned int end; - long unsigned int unmap_start; - long unsigned int unmap_end; - int vma_count; - bool unlock; - bool clear_ptes; - long unsigned int nr_pages; - long unsigned int locked_vm; - long unsigned int nr_accounted; - long unsigned int exec_vm; - long unsigned int stack_vm; - long unsigned int data_vm; -}; - -enum vma_merge_state { - VMA_MERGE_START = 0, - VMA_MERGE_ERROR_NOMEM = 1, - VMA_MERGE_NOMERGE = 2, - VMA_MERGE_SUCCESS = 3, -}; - -enum vma_merge_flags { - VMG_FLAG_DEFAULT = 0, - VMG_FLAG_JUST_EXPAND = 1, -}; - -struct vma_merge_struct { - struct mm_struct *mm; - struct vma_iterator *vmi; - long unsigned int pgoff; - struct vm_area_struct *prev; - struct vm_area_struct *next; - struct vm_area_struct *vma; - long unsigned int start; - long unsigned int end; - long unsigned int flags; - struct file *file; - struct anon_vma *anon_vma; - struct mempolicy *policy; - struct vm_userfaultfd_ctx uffd_ctx; - struct anon_vma_name *anon_name; - enum vma_merge_flags merge_flags; - enum vma_merge_state state; - bool give_up_on_oom: 1; -}; - -typedef int cydp_t; - -struct madvise_walk_private { - struct mmu_gather *tlb; - bool pageout; -}; - -struct zbud_pool { - spinlock_t lock; - union { - struct list_head buddied; - struct list_head unbuddied[63]; - }; - u64 pages_nr; -}; - -struct zbud_header { - struct list_head buddy; - unsigned int first_chunks; - unsigned int last_chunks; -}; - -enum buddy { - FIRST = 0, - LAST = 1, -}; - -typedef struct { - long unsigned int fds_bits[16]; -} __kernel_fd_set; - -typedef __kernel_fd_set fd_set; - -struct poll_table_entry { - struct file *filp; - __poll_t key; - wait_queue_entry_t wait; - wait_queue_head_t *wait_address; -}; - -struct poll_table_page; - -struct poll_wqueues { - poll_table pt; - struct poll_table_page *table; - struct task_struct *polling_task; - int triggered; - int error; - int inline_index; - struct poll_table_entry inline_entries[9]; -}; - -struct poll_table_page { - struct poll_table_page *next; - struct poll_table_entry *entry; - struct poll_table_entry entries[0]; -}; - -enum poll_time_type { - PT_TIMEVAL = 0, - PT_OLD_TIMEVAL = 1, - PT_TIMESPEC = 2, - PT_OLD_TIMESPEC = 3, -}; - -typedef struct { - long unsigned int *in; - long unsigned int *out; - long unsigned int *ex; - long unsigned int *res_in; - long unsigned int *res_out; - long unsigned int *res_ex; -} fd_set_bits; - -struct sigset_argpack { - sigset_t *p; - size_t size; -}; - -struct poll_list { - struct poll_list *next; - unsigned int len; - struct pollfd entries[0]; -}; - -enum legacy_fs_param { - LEGACY_FS_UNSET_PARAMS = 0, - LEGACY_FS_MONOLITHIC_PARAMS = 1, - LEGACY_FS_INDIVIDUAL_PARAMS = 2, -}; - -struct legacy_fs_context { - char *legacy_data; - size_t data_size; - enum legacy_fs_param param_type; -}; - -struct fscrypt_symlink_data { - __le16 len; - char encrypted_path[0]; -}; - -struct backing_file_ctx { - const struct cred *cred; - struct file *user_file; - void (*accessed)(struct file *); - void (*end_write)(struct file *, loff_t, ssize_t); -}; - -struct backing_aio { - struct kiocb iocb; - refcount_t ref; - struct kiocb *orig_iocb; - void (*end_write)(struct file *, loff_t, ssize_t); - struct work_struct work; - long int res; -}; - -struct core_vma_metadata; - -struct coredump_params { - const kernel_siginfo_t *siginfo; - struct file *file; - long unsigned int limit; - long unsigned int mm_flags; - int cpu; - loff_t written; - loff_t pos; - loff_t to_skip; - int vma_count; - size_t vma_data_size; - struct core_vma_metadata *vma_meta; - struct pid *pid; -}; - -struct core_vma_metadata { - long unsigned int start; - long unsigned int end; - long unsigned int flags; - long unsigned int dump_size; - long unsigned int pgoff; - struct file *file; -}; - -struct core_name { - char *corename; - int used; - int size; -}; - -enum { - QIF_BLIMITS_B = 0, - QIF_SPACE_B = 1, - QIF_ILIMITS_B = 2, - QIF_INODES_B = 3, - QIF_BTIME_B = 4, - QIF_ITIME_B = 5, -}; - -typedef __kernel_uid32_t qid_t; - -enum { - DQF_INFO_DIRTY_B = 17, -}; - -struct dqstats { - long unsigned int stat[8]; - struct percpu_counter counter[8]; -}; - -struct quota_module_name { - int qm_fmt_id; - char *qm_mod_name; -}; - -struct dquot_warn { - struct super_block *w_sb; - struct kqid w_dq_id; - short int w_type; -}; - -struct squashfs_page_actor { - union { - void **buffer; - struct page **page; - }; - void *pageaddr; - void *tmp_buffer; - void * (*squashfs_first_page)(struct squashfs_page_actor *); - void * (*squashfs_next_page)(struct squashfs_page_actor *); - void (*squashfs_finish_page)(struct squashfs_page_actor *); - struct page *last_page; - int pages; - int length; - int next_page; - int alloc_buffer; - int returned_pages; - long unsigned int next_index; -}; - -struct lz4_comp_opts { - __le32 version; - __le32 flags; -}; - -struct squashfs_lz4 { - void *input; - void *output; -}; - -enum { - NLS_NAME_NO_LOSSY = 0, - NLS_NAME_LOSSY = 1, - NLS_NAME_OVERLEN = 2, -}; - -struct exfat_dentry_namebuf { - char *lfn; - int lfnbuf_len; -}; - -struct exfat_uni_name { - short unsigned int name[258]; - u16 name_hash; - unsigned char name_len; -}; - -struct exfat_entry_set_cache { - struct super_block *sb; - unsigned int start_off; - int num_bh; - struct buffer_head *__bh[3]; - struct buffer_head **bh; - unsigned int num_entries; - bool modified; -}; - -struct exfat_dir_entry { - struct exfat_chain dir; - int entry; - unsigned int type; - unsigned int start_clu; - unsigned char flags; - short unsigned int attr; - loff_t size; - loff_t valid_size; - unsigned int num_subdirs; - struct timespec64 atime; - struct timespec64 mtime; - struct timespec64 crtime; - struct exfat_dentry_namebuf namebuf; -}; - -struct nfs_netns_client { - struct kobject kobject; - struct kobject nfs_net_kobj; - struct net *net; - const char *identifier; -}; - -enum { - FATTR4_TIME_DELEG_ACCESS = 84, - FATTR4_TIME_DELEG_MODIFY = 85, - FATTR4_OPEN_ARGUMENTS = 86, -}; - -enum pnfs_layoutreturn_type { - RETURN_FILE = 1, - RETURN_FSID = 2, - RETURN_ALL = 3, -}; - -struct nfs_lowner { - __u64 clientid; - __u64 id; - dev_t s_dev; -}; - -enum nfs4_client_state { - NFS4CLNT_MANAGER_RUNNING = 0, - NFS4CLNT_CHECK_LEASE = 1, - NFS4CLNT_LEASE_EXPIRED = 2, - NFS4CLNT_RECLAIM_REBOOT = 3, - NFS4CLNT_RECLAIM_NOGRACE = 4, - NFS4CLNT_DELEGRETURN = 5, - NFS4CLNT_SESSION_RESET = 6, - NFS4CLNT_LEASE_CONFIRM = 7, - NFS4CLNT_SERVER_SCOPE_MISMATCH = 8, - NFS4CLNT_PURGE_STATE = 9, - NFS4CLNT_BIND_CONN_TO_SESSION = 10, - NFS4CLNT_MOVED = 11, - NFS4CLNT_LEASE_MOVED = 12, - NFS4CLNT_DELEGATION_EXPIRED = 13, - NFS4CLNT_RUN_MANAGER = 14, - NFS4CLNT_MANAGER_AVAILABLE = 15, - NFS4CLNT_RECALL_RUNNING = 16, - NFS4CLNT_RECALL_ANY_LAYOUT_READ = 17, - NFS4CLNT_RECALL_ANY_LAYOUT_RW = 18, - NFS4CLNT_DELEGRETURN_DELAYED = 19, -}; - -struct cb_process_state { - struct nfs_client *clp; - struct nfs4_slot *slot; - struct net *net; - u32 minorversion; - __be32 drc_status; - unsigned int referring_calls; -}; - -struct cb_getattrargs { - struct nfs_fh fh; - uint32_t bitmap[3]; -}; - -struct cb_getattrres { - __be32 status; - uint32_t bitmap[3]; - uint64_t size; - uint64_t change_attr; - struct timespec64 atime; - struct timespec64 ctime; - struct timespec64 mtime; -}; - -struct cb_recallargs { - struct nfs_fh fh; - nfs4_stateid stateid; - uint32_t truncate; -}; - -struct referring_call { - uint32_t rc_sequenceid; - uint32_t rc_slotid; -}; - -struct referring_call_list { - struct nfs4_sessionid rcl_sessionid; - uint32_t rcl_nrefcalls; - struct referring_call *rcl_refcalls; -}; - -struct cb_sequenceargs { - struct sockaddr *csa_addr; - struct nfs4_sessionid csa_sessionid; - uint32_t csa_sequenceid; - uint32_t csa_slotid; - uint32_t csa_highestslotid; - uint32_t csa_cachethis; - uint32_t csa_nrclists; - struct referring_call_list *csa_rclists; -}; - -struct cb_sequenceres { - __be32 csr_status; - struct nfs4_sessionid csr_sessionid; - uint32_t csr_sequenceid; - uint32_t csr_slotid; - uint32_t csr_highestslotid; - uint32_t csr_target_highestslotid; -}; - -struct cb_recallanyargs { - uint32_t craa_objs_to_keep; - uint32_t craa_type_mask; -}; - -struct cb_recallslotargs { - uint32_t crsa_target_highest_slotid; -}; - -struct cb_layoutrecallargs { - uint32_t cbl_recall_type; - uint32_t cbl_layout_type; - uint32_t cbl_layoutchanged; - union { - struct { - struct nfs_fh cbl_fh; - struct pnfs_layout_range cbl_range; - nfs4_stateid cbl_stateid; - }; - struct nfs_fsid cbl_fsid; - }; -}; - -struct cb_devicenotifyitem { - uint32_t cbd_notify_type; - uint32_t cbd_layout_type; - struct nfs4_deviceid cbd_dev_id; - uint32_t cbd_immediate; -}; - -struct cb_devicenotifyargs { - uint32_t ndevs; - struct cb_devicenotifyitem *devs; -}; - -struct cb_notify_lock_args { - struct nfs_fh cbnl_fh; - struct nfs_lowner cbnl_owner; - bool cbnl_valid; -}; - -struct cb_offloadargs { - struct nfs_fh coa_fh; - nfs4_stateid coa_stateid; - uint32_t error; - uint64_t wr_count; - struct nfs_writeverf wr_writeverf; -}; - -enum nfs4_slot_tbl_state { - NFS4_SLOT_TBL_DRAINING = 0, -}; - -struct nfs4_pnfs_ds_addr { - struct __kernel_sockaddr_storage da_addr; - size_t da_addrlen; - struct list_head da_node; - char *da_remotestr; - const char *da_netid; - int da_transport; -}; - -struct nfs4_ff_ds_version { - u32 version; - u32 minor_version; - u32 rsize; - u32 wsize; - bool tightly_coupled; -}; - -struct nfs4_ff_layout_ds { - struct nfs4_deviceid_node id_node; - u32 ds_versions_cnt; - struct nfs4_ff_ds_version *ds_versions; - struct nfs4_pnfs_ds *ds; -}; - -struct nfs4_ff_layout_ds_err { - struct list_head list; - u64 offset; - u64 length; - int status; - enum nfs_opnum4 opnum; - nfs4_stateid stateid; - struct nfs4_deviceid deviceid; -}; - -struct nfs4_ff_io_stat { - __u64 ops_requested; - __u64 bytes_requested; - __u64 ops_completed; - __u64 bytes_completed; - __u64 bytes_not_delivered; - ktime_t total_busy_time; - ktime_t aggregate_completion_time; -}; - -struct nfs4_ff_busy_timer { - ktime_t start_time; - atomic_t n_ops; -}; - -struct nfs4_ff_layoutstat { - struct nfs4_ff_io_stat io_stat; - struct nfs4_ff_busy_timer busy_timer; -}; - -struct nfs4_ff_layout_mirror { - struct pnfs_layout_hdr *layout; - struct list_head mirrors; - u32 ds_count; - u32 efficiency; - struct nfs4_deviceid devid; - struct nfs4_ff_layout_ds *mirror_ds; - u32 fh_versions_cnt; - struct nfs_fh *fh_versions; - nfs4_stateid stateid; - const struct cred *ro_cred; - const struct cred *rw_cred; - refcount_t ref; - spinlock_t lock; - long unsigned int flags; - struct nfs4_ff_layoutstat read_stat; - struct nfs4_ff_layoutstat write_stat; - ktime_t start_time; - u32 report_interval; -}; - -struct nfs4_ff_layout_segment { - struct pnfs_layout_segment generic_hdr; - u64 stripe_unit; - u32 flags; - u32 mirror_array_cnt; - struct nfs4_ff_layout_mirror *mirror_array[0]; -}; - -struct nfs4_flexfile_layout { - struct pnfs_layout_hdr generic_hdr; - struct pnfs_ds_commit_info commit_info; - struct list_head mirrors; - struct list_head error_list; - ktime_t last_report_time; -}; - -struct nfs4_flexfile_layoutreturn_args { - struct list_head errors; - struct nfs42_layoutstat_devinfo devinfo[4]; - unsigned int num_errors; - unsigned int num_dev; - struct page *pages[1]; -}; - -enum nfs4_ff_op_type { - NFS4_FF_OP_LAYOUTSTATS = 0, - NFS4_FF_OP_LAYOUTRETURN = 1, -}; - -enum limit_by4 { - NFS4_LIMIT_SIZE = 1, - NFS4_LIMIT_BLOCKS = 2, -}; - -enum open_delegation_type4 { - NFS4_OPEN_DELEGATE_NONE = 0, - NFS4_OPEN_DELEGATE_READ = 1, - NFS4_OPEN_DELEGATE_WRITE = 2, - NFS4_OPEN_DELEGATE_NONE_EXT = 3, - NFS4_OPEN_DELEGATE_READ_ATTRS_DELEG = 4, - NFS4_OPEN_DELEGATE_WRITE_ATTRS_DELEG = 5, -}; - -enum why_no_delegation4 { - WND4_NOT_WANTED = 0, - WND4_CONTENTION = 1, - WND4_RESOURCE = 2, - WND4_NOT_SUPP_FTYPE = 3, - WND4_WRITE_DELEG_NOT_SUPP_FTYPE = 4, - WND4_NOT_SUPP_UPGRADE = 5, - WND4_NOT_SUPP_DOWNGRADE = 6, - WND4_CANCELLED = 7, - WND4_IS_DIR = 8, -}; - -enum lock_type4 { - NFS4_UNLOCK_LT = 0, - NFS4_READ_LT = 1, - NFS4_WRITE_LT = 2, - NFS4_READW_LT = 3, - NFS4_WRITEW_LT = 4, -}; - -enum { - FATTR4_DIR_NOTIF_DELAY = 56, - FATTR4_DIRENT_NOTIF_DELAY = 57, - FATTR4_DACL = 58, - FATTR4_SACL = 59, - FATTR4_CHANGE_POLICY = 60, - FATTR4_FS_STATUS = 61, - FATTR4_FS_LAYOUT_TYPES = 62, - FATTR4_LAYOUT_HINT = 63, - FATTR4_LAYOUT_TYPES = 64, - FATTR4_LAYOUT_BLKSIZE = 65, - FATTR4_LAYOUT_ALIGNMENT = 66, - FATTR4_FS_LOCATIONS_INFO = 67, - FATTR4_MDSTHRESHOLD = 68, - FATTR4_RETENTION_GET = 69, - FATTR4_RETENTION_SET = 70, - FATTR4_RETENTEVT_GET = 71, - FATTR4_RETENTEVT_SET = 72, - FATTR4_RETENTION_HOLD = 73, - FATTR4_MODE_SET_MASKED = 74, - FATTR4_SUPPATTR_EXCLCREAT = 75, - FATTR4_FS_CHARSET_CAP = 76, -}; - -enum { - FATTR4_XATTR_SUPPORT = 82, -}; - -enum state_protect_how4 { - SP4_NONE = 0, - SP4_MACH_CRED = 1, - SP4_SSV = 2, -}; - -enum nfs4_setxattr_options { - SETXATTR4_EITHER = 0, - SETXATTR4_CREATE = 1, - SETXATTR4_REPLACE = 2, -}; - -enum fsid_source { - FSIDSOURCE_DEV = 0, - FSIDSOURCE_FSID = 1, - FSIDSOURCE_UUID = 2, -}; - -struct nfsd4_test_stateid_id { - __be32 ts_id_status; - stateid_t ts_id_stateid; - struct list_head ts_id_list; -}; - -typedef __be32 (*nfsd4_dec)(struct nfsd4_compoundargs *, union nfsd4_op_u *); - -struct nfsd4_fattr_args { - struct svc_rqst *rqstp; - struct svc_fh *fhp; - struct svc_export *exp; - struct dentry *dentry; - struct kstat stat; - struct kstatfs statfs; - struct nfs4_acl *acl; - u64 size; - u32 rdattr_err; - bool contextsupport; - bool ignore_crossmnt; -}; - -typedef __be32 (*nfsd4_enc_attr)(struct xdr_stream *, const struct nfsd4_fattr_args *); - -typedef __be32 (*nfsd4_enc)(struct nfsd4_compoundres *, __be32, union nfsd4_op_u *); - -struct nt_err_code_struct { - char *nt_errstr; - __u32 nt_errcode; -}; - -struct ntlmssp2_name { - __le16 type; - __le16 length; -}; - -struct ntlmv2_resp { - union { - char ntlmv2_hash[16]; - struct { - __u8 reserved[8]; - __u8 key[8]; - } challenge; - }; - __le32 blob_signature; - __u32 reserved; - __le64 time; - __u64 client_chal; - __u32 reserved2; -} __attribute__((packed)); - -struct UniCaseRange { - wchar_t start; - wchar_t end; - signed char *table; -}; - -enum av_field_type { - NTLMSSP_AV_EOL = 0, - NTLMSSP_AV_NB_COMPUTER_NAME = 1, - NTLMSSP_AV_NB_DOMAIN_NAME = 2, - NTLMSSP_AV_DNS_COMPUTER_NAME = 3, - NTLMSSP_AV_DNS_DOMAIN_NAME = 4, - NTLMSSP_AV_DNS_TREE_NAME = 5, - NTLMSSP_AV_FLAGS = 6, - NTLMSSP_AV_TIMESTAMP = 7, - NTLMSSP_AV_RESTRICTION = 8, - NTLMSSP_AV_TARGET_NAME = 9, - NTLMSSP_AV_CHANNEL_BINDINGS = 10, -}; - -enum { - ACCESS_ALLOWED = 0, - ACCESS_DENIED = 1, -}; - -struct smb_acl { - __le16 revision; - __le16 size; - __le16 num_aces; - __le16 reserved; -}; - -struct smb_ace { - __u8 type; - __u8 flags; - __le16 size; - __le32 access_req; - struct smb_sid sid; -}; - -struct owner_sid { - u8 Revision; - u8 NumAuth; - u8 Authority[6]; - __le32 SubAuthorities[3]; -}; - -struct ATTR_STD_INFO5 { - __le64 cr_time; - __le64 m_time; - __le64 c_time; - __le64 a_time; - enum FILE_ATTRIBUTE fa; - __le32 max_ver_num; - __le32 ver_num; - __le32 class_id; - __le32 owner_id; - __le32 security_id; - __le64 quota_charge; - __le64 usn; -}; - -struct EA_INFO { - __le16 size_pack; - __le16 count; - __le32 size; -}; - -struct EA_FULL { - __le32 size; - u8 flags; - u8 name_len; - __le16 elength; - u8 name[0]; -}; - -struct SECURITY_DESCRIPTOR_RELATIVE { - u8 Revision; - u8 Sbz1; - __le16 Control; - __le32 Owner; - __le32 Group; - __le32 Sacl; - __le32 Dacl; -}; - -enum fuse_notify_code { - FUSE_NOTIFY_POLL = 1, - FUSE_NOTIFY_INVAL_INODE = 2, - FUSE_NOTIFY_INVAL_ENTRY = 3, - FUSE_NOTIFY_STORE = 4, - FUSE_NOTIFY_RETRIEVE = 5, - FUSE_NOTIFY_DELETE = 6, - FUSE_NOTIFY_RESEND = 7, - FUSE_NOTIFY_CODE_MAX = 8, -}; - -struct fuse_batch_forget_in { - uint32_t count; - uint32_t dummy; -}; - -struct fuse_interrupt_in { - uint64_t unique; -}; - -struct fuse_notify_poll_wakeup_out { - uint64_t kh; -}; - -struct fuse_notify_inval_inode_out { - uint64_t ino; - int64_t off; - int64_t len; -}; - -struct fuse_notify_inval_entry_out { - uint64_t parent; - uint32_t namelen; - uint32_t flags; -}; - -struct fuse_notify_delete_out { - uint64_t parent; - uint64_t child; - uint32_t namelen; - uint32_t padding; -}; - -struct fuse_notify_store_out { - uint64_t nodeid; - uint64_t offset; - uint32_t size; - uint32_t padding; -}; - -struct fuse_notify_retrieve_out { - uint64_t notify_unique; - uint64_t nodeid; - uint64_t offset; - uint32_t size; - uint32_t padding; -}; - -struct fuse_notify_retrieve_in { - uint64_t dummy1; - uint64_t offset; - uint32_t size; - uint32_t dummy2; - uint64_t dummy3; - uint64_t dummy4; -}; - -struct fuse_backing_map { - int32_t fd; - uint32_t flags; - uint64_t padding; -}; - -struct trace_event_raw_fuse_request_send { - struct trace_entry ent; - dev_t connection; - uint64_t unique; - enum fuse_opcode opcode; - uint32_t len; - char __data[0]; -}; - -struct trace_event_raw_fuse_request_end { - struct trace_entry ent; - dev_t connection; - uint64_t unique; - uint32_t len; - int32_t error; - char __data[0]; -}; - -struct trace_event_data_offsets_fuse_request_send {}; - -struct trace_event_data_offsets_fuse_request_end {}; - -typedef void (*btf_trace_fuse_request_send)(void *, const struct fuse_req *); - -typedef void (*btf_trace_fuse_request_end)(void *, const struct fuse_req *); - -struct fuse_copy_state { - int write; - struct fuse_req *req; - struct iov_iter *iter; - struct pipe_buffer *pipebufs; - struct pipe_buffer *currbuf; - struct pipe_inode_info *pipe; - long unsigned int nr_segs; - struct page *pg; - unsigned int len; - unsigned int offset; - unsigned int move_pages: 1; -}; - -struct fuse_retrieve_args { - struct fuse_args_pages ap; - struct fuse_notify_retrieve_in inarg; -}; - -struct lb_addr { - __le32 logicalBlockNum; - __le16 partitionReferenceNum; -} __attribute__((packed)); - -struct short_ad { - __le32 extLength; - __le32 extPosition; -}; - -struct long_ad { - __le32 extLength; - struct lb_addr extLocation; - uint8_t impUse[6]; -}; - -struct fileIdentDesc { - struct tag descTag; - __le16 fileVersionNum; - uint8_t fileCharacteristics; - uint8_t lengthFileIdent; - struct long_ad icb; - __le16 lengthOfImpUse; -} __attribute__((packed)); - -struct udf_fileident_iter { - struct inode *dir; - loff_t pos; - struct buffer_head *bh[2]; - struct kernel_lb_addr eloc; - uint32_t elen; - sector_t loffset; - struct extent_position epos; - struct fileIdentDesc fi; - uint8_t *name; - uint8_t *namebuf; -}; - -struct xfs_bmdr_block { - __be16 bb_level; - __be16 bb_numrecs; -}; - -typedef struct xfs_bmdr_block xfs_bmdr_block_t; - -typedef uint64_t xfs_bmbt_rec_base_t; - -typedef struct xfs_bmbt_key xfs_bmbt_key_t; - -typedef __be64 xfs_bmbt_ptr_t; - -struct xfs_icluster { - bool deleted; - xfs_ino_t first_ino; - uint64_t alloc; -}; - -struct xfs_ialloc_count_inodes { - xfs_agino_t count; - xfs_agino_t freecount; -}; - -struct xfs_bmalloca { - struct xfs_trans *tp; - struct xfs_inode *ip; - struct xfs_bmbt_irec prev; - struct xfs_bmbt_irec got; - xfs_fileoff_t offset; - xfs_extlen_t length; - xfs_fsblock_t blkno; - struct xfs_btree_cur *cur; - struct xfs_iext_cursor icur; - int nallocs; - int logflags; - xfs_extlen_t total; - xfs_extlen_t minlen; - xfs_extlen_t minleft; - bool eof; - bool wasdel; - bool aeof; - bool conv; - int datatype; - uint32_t flags; -}; - -struct xfs_fstrm_item { - struct xfs_mru_cache_elem mru; - struct xfs_perag *pag; -}; - -enum xfs_fstrm_alloc { - XFS_PICK_USERDATA = 1, - XFS_PICK_LOWSPACE = 2, -}; - -struct xfs_inode_log_format { - uint16_t ilf_type; - uint16_t ilf_size; - uint32_t ilf_fields; - uint16_t ilf_asize; - uint16_t ilf_dsize; - uint32_t ilf_pad; - uint64_t ilf_ino; - union { - uint32_t ilfu_rdev; - uint8_t __pad[16]; - } ilf_u; - int64_t ilf_blkno; - int32_t ilf_len; - int32_t ilf_boffset; -}; - -struct xfs_inode_log_format_32 { - uint16_t ilf_type; - uint16_t ilf_size; - uint32_t ilf_fields; - uint16_t ilf_asize; - uint16_t ilf_dsize; - uint64_t ilf_ino; - union { - uint32_t ilfu_rdev; - uint8_t __pad[16]; - } ilf_u; - int64_t ilf_blkno; - int32_t ilf_len; - int32_t ilf_boffset; -} __attribute__((packed)); - -typedef uint64_t xfs_log_timestamp_t; - -struct xfs_log_legacy_timestamp { - int32_t t_sec; - int32_t t_nsec; -}; - -struct xfs_log_dinode { - uint16_t di_magic; - uint16_t di_mode; - int8_t di_version; - int8_t di_format; - uint8_t di_pad3[2]; - uint32_t di_uid; - uint32_t di_gid; - uint32_t di_nlink; - uint16_t di_projid_lo; - uint16_t di_projid_hi; - union { - uint64_t di_big_nextents; - uint64_t di_v3_pad; - struct { - uint8_t di_v2_pad[6]; - uint16_t di_flushiter; - }; - }; - xfs_log_timestamp_t di_atime; - xfs_log_timestamp_t di_mtime; - xfs_log_timestamp_t di_ctime; - xfs_fsize_t di_size; - xfs_rfsblock_t di_nblocks; - xfs_extlen_t di_extsize; - union { - struct { - uint32_t di_nextents; - uint16_t di_anextents; - } __attribute__((packed)); - struct { - uint32_t di_big_anextents; - uint16_t di_nrext64_pad; - } __attribute__((packed)); - }; - uint8_t di_forkoff; - int8_t di_aformat; - uint32_t di_dmevmask; - uint16_t di_dmstate; - uint16_t di_flags; - uint32_t di_gen; - xfs_agino_t di_next_unlinked; - uint32_t di_crc; - uint64_t di_changecount; - xfs_lsn_t di_lsn; - uint64_t di_flags2; - uint32_t di_cowextsize; - uint8_t di_pad2[12]; - xfs_log_timestamp_t di_crtime; - xfs_ino_t di_ino; - uuid_t di_uuid; -}; - -struct btrfs_eb_write_context { - struct writeback_control *wbc; - struct extent_buffer *eb; - struct btrfs_block_group *zoned_bg; -}; - -enum btrfs_map_op { - BTRFS_MAP_READ = 0, - BTRFS_MAP_WRITE = 1, - BTRFS_MAP_GET_READ_MIRRORS = 2, -}; - -struct btrfs_bio_ctrl { - struct btrfs_bio *bbio; - enum btrfs_compression_type compress_type; - u32 len_to_oe_boundary; - blk_opf_t opf; - btrfs_bio_end_io_t end_io_func; - struct writeback_control *wbc; - long unsigned int submit_bitmap; - struct readahead_control *ractl; - u64 last_em_start; -}; - -struct btrfs_workqueue { - struct workqueue_struct *normal_wq; - struct btrfs_fs_info *fs_info; - struct list_head ordered_list; - spinlock_t list_lock; - atomic_t pending; - int limit_active; - int current_active; - int thresh; - unsigned int count; - spinlock_t thres_lock; -}; - -enum btrfs_delayed_item_type { - BTRFS_DELAYED_INSERTION_ITEM = 0, - BTRFS_DELAYED_DELETION_ITEM = 1, -}; - -struct btrfs_delayed_item { - struct rb_node rb_node; - u64 index; - struct list_head tree_list; - struct list_head readdir_list; - struct list_head log_list; - u64 bytes_reserved; - struct btrfs_delayed_node *delayed_node; - refcount_t refs; - enum btrfs_delayed_item_type type: 8; - bool logged; - u16 data_len; - char data[0]; -}; - -struct btrfs_async_delayed_work { - struct btrfs_delayed_root *delayed_root; - int nr; - struct btrfs_work work; -}; - -struct btrfs_dio_data { - ssize_t submitted; - struct extent_changeset *data_reserved; - struct btrfs_ordered_extent *ordered; - bool data_space_reserved; - bool nocow_done; -}; - -struct btrfs_dio_private { - u64 file_offset; - u32 bytes; - struct btrfs_bio bbio; -}; - -struct f2fs_xattr_header { - __le32 h_magic; - __le32 h_refcount; - __u32 h_reserved[4]; -}; - -struct f2fs_xattr_entry { - __u8 e_name_index; - __u8 e_name_len; - __le16 e_value_size; - char e_name[0]; -}; - -struct erofs_fileio_rq { - struct bio_vec bvecs[256]; - struct bio bio; - struct kiocb iocb; - struct super_block *sb; -}; - -struct erofs_fileio { - struct erofs_map_blocks map; - struct erofs_map_dev dev; - struct erofs_fileio_rq *rq; -}; - -struct crypto_comp { - struct crypto_tfm base; -}; - -struct ahash_alg { - int (*init)(struct ahash_request *); - int (*update)(struct ahash_request *); - int (*final)(struct ahash_request *); - int (*finup)(struct ahash_request *); - int (*digest)(struct ahash_request *); - int (*export)(struct ahash_request *, void *); - int (*import)(struct ahash_request *, const void *); - int (*setkey)(struct crypto_ahash *, const u8 *, unsigned int); - int (*init_tfm)(struct crypto_ahash *); - void (*exit_tfm)(struct crypto_ahash *); - int (*clone_tfm)(struct crypto_ahash *, struct crypto_ahash *); - unsigned int reqsize; - struct hash_alg_common halg; -}; - -struct crypto_hash_walk { - char *data; - unsigned int offset; - unsigned int flags; - struct page *pg; - unsigned int entrylen; - unsigned int total; - struct scatterlist *sg; -}; - -struct ahash_instance { - void (*free)(struct ahash_instance *); - union { - struct { - char head[104]; - struct crypto_instance base; - } s; - struct ahash_alg alg; - }; -}; - -struct crypto_ahash_spawn { - struct crypto_spawn base; -}; - -struct sha1_state { - u32 state[5]; - u64 count; - u8 buffer[64]; -}; - -typedef void sha1_block_fn(struct sha1_state *, const u8 *, int); - -struct twofish_ctx { - u32 s[1024]; - u32 w[8]; - u32 k[32]; -}; - -struct comp_alg_common { - struct crypto_alg base; -}; - -struct crypto_scomp { - struct crypto_tfm base; -}; - -struct scomp_alg { - void * (*alloc_ctx)(struct crypto_scomp *); - void (*free_ctx)(struct crypto_scomp *, void *); - int (*compress)(struct crypto_scomp *, const u8 *, unsigned int, u8 *, unsigned int *, void *); - int (*decompress)(struct crypto_scomp *, const u8 *, unsigned int, u8 *, unsigned int *, void *); - union { - struct { - struct crypto_alg base; - }; - struct comp_alg_common calg; - }; -}; - -struct deflate_ctx { - struct z_stream_s comp_stream; - struct z_stream_s decomp_stream; -}; - -struct xxhash64_tfm_ctx { - u64 seed; -}; - -struct xxhash64_desc_ctx { - struct xxh64_state xxhstate; -}; - -enum blacklist_hash_type { - BLACKLIST_HASH_X509_TBS = 1, - BLACKLIST_HASH_BINARY = 2, -}; - -struct bio_alloc_cache { - struct bio *free_list; - struct bio *free_list_irq; - unsigned int nr; - unsigned int nr_irq; -}; - -enum { - sysctl_hung_task_timeout_secs = 0, -}; - -struct biovec_slab { - int nr_vecs; - char *name; - struct kmem_cache *slab; -}; - -struct bio_slab { - struct kmem_cache *slab; - unsigned int slab_ref; - unsigned int slab_size; - char name[12]; -}; - -struct disk_events { - struct list_head node; - struct gendisk *disk; - spinlock_t lock; - struct mutex block_mutex; - int block; - unsigned int pending; - unsigned int clearing; - long int poll_msecs; - struct delayed_work dwork; -}; - -struct io_sq_data { - refcount_t refs; - atomic_t park_pending; - struct mutex lock; - struct list_head ctx_list; - struct task_struct *thread; - struct wait_queue_head wait; - unsigned int sq_thread_idle; - int sq_cpu; - pid_t task_pid; - pid_t task_tgid; - u64 work_time; - long unsigned int state; - struct completion exited; -}; - -struct io_cold_def { - const char *name; - void (*cleanup)(struct io_kiocb *); - void (*fail)(struct io_kiocb *); -}; - -typedef struct { - void *lock; -} class_rcu_t; - -struct io_ev_fd { - struct eventfd_ctx *cq_ev_fd; - unsigned int eventfd_async: 1; - struct callback_head rcu; - refcount_t refs; - atomic_t ops; -}; - -enum { - IO_EVENTFD_OP_SIGNAL_BIT = 0, -}; - -struct io_sync { - struct file *file; - loff_t len; - loff_t off; - int flags; - int mode; -}; - -struct io_uring_napi { - __u32 busy_poll_to; - __u8 prefer_busy_poll; - __u8 pad[3]; - __u64 resv; -}; - -struct io_wait_queue { - struct wait_queue_entry wq; - struct io_ring_ctx *ctx; - unsigned int cq_tail; - unsigned int cq_min_tail; - unsigned int nr_timeouts; - int hit_timeout; - ktime_t min_timeout; - ktime_t timeout; - struct hrtimer t; - ktime_t napi_busy_poll_dt; - bool napi_prefer_busy_poll; -}; - -enum { - IO_CHECK_CQ_OVERFLOW_BIT = 0, - IO_CHECK_CQ_DROPPED_BIT = 1, -}; - -struct io_napi_entry { - unsigned int napi_id; - struct list_head list; - long unsigned int timeout; - struct hlist_node node; - struct callback_head rcu; -}; - -typedef enum { - ZSTD_c_compressionLevel = 100, - ZSTD_c_windowLog = 101, - ZSTD_c_hashLog = 102, - ZSTD_c_chainLog = 103, - ZSTD_c_searchLog = 104, - ZSTD_c_minMatch = 105, - ZSTD_c_targetLength = 106, - ZSTD_c_strategy = 107, - ZSTD_c_enableLongDistanceMatching = 160, - ZSTD_c_ldmHashLog = 161, - ZSTD_c_ldmMinMatch = 162, - ZSTD_c_ldmBucketSizeLog = 163, - ZSTD_c_ldmHashRateLog = 164, - ZSTD_c_contentSizeFlag = 200, - ZSTD_c_checksumFlag = 201, - ZSTD_c_dictIDFlag = 202, - ZSTD_c_nbWorkers = 400, - ZSTD_c_jobSize = 401, - ZSTD_c_overlapLog = 402, - ZSTD_c_experimentalParam1 = 500, - ZSTD_c_experimentalParam2 = 10, - ZSTD_c_experimentalParam3 = 1000, - ZSTD_c_experimentalParam4 = 1001, - ZSTD_c_experimentalParam5 = 1002, - ZSTD_c_experimentalParam6 = 1003, - ZSTD_c_experimentalParam7 = 1004, - ZSTD_c_experimentalParam8 = 1005, - ZSTD_c_experimentalParam9 = 1006, - ZSTD_c_experimentalParam10 = 1007, - ZSTD_c_experimentalParam11 = 1008, - ZSTD_c_experimentalParam12 = 1009, - ZSTD_c_experimentalParam13 = 1010, - ZSTD_c_experimentalParam14 = 1011, - ZSTD_c_experimentalParam15 = 1012, -} ZSTD_cParameter; - -typedef enum { - ZSTD_reset_session_only = 1, - ZSTD_reset_parameters = 2, - ZSTD_reset_session_and_parameters = 3, -} ZSTD_ResetDirective; - -typedef enum { - ZSTD_dlm_byCopy = 0, - ZSTD_dlm_byRef = 1, -} ZSTD_dictLoadMethod_e; - -typedef ZSTD_customMem zstd_custom_mem; - -typedef ZSTD_CCtx zstd_cctx; - -typedef ZSTD_CDict zstd_cdict; - -typedef struct { - size_t bitContainer; - unsigned int bitPos; - char *startPtr; - char *ptr; - char *endPtr; -} BIT_CStream_t; - -typedef struct { - ptrdiff_t value; - const void *stateTable; - const void *symbolTT; - unsigned int stateLog; -} FSE_CState_t; - -typedef struct { - int deltaFindState; - U32 deltaNbBits; -} FSE_symbolCompressionTransform; - -typedef struct { - FSE_CTable CTable[59]; - U32 scratchBuffer[41]; - unsigned int count[13]; - S16 norm[13]; -} HUF_CompressWeightsWksp; - -typedef struct { - HUF_CompressWeightsWksp wksp; - BYTE bitsToWeight[13]; - BYTE huffWeight[255]; -} HUF_WriteCTableWksp; - -struct nodeElt_s { - U32 count; - U16 parent; - BYTE byte; - BYTE nbBits; -}; - -typedef struct nodeElt_s nodeElt; - -typedef struct { - U16 base; - U16 curr; -} rankPos; - -typedef nodeElt huffNodeTable[512]; - -typedef struct { - huffNodeTable huffNodeTbl; - rankPos rankPosition[192]; -} HUF_buildCTable_wksp_tables; - -typedef struct { - size_t bitContainer[2]; - size_t bitPos[2]; - BYTE *startPtr; - BYTE *ptr; - BYTE *endPtr; -} HUF_CStream_t; - -typedef enum { - HUF_singleStream = 0, - HUF_fourStreams = 1, -} HUF_nbStreams_e; - -typedef struct { - unsigned int count[256]; - HUF_CElt CTable[257]; - union { - HUF_buildCTable_wksp_tables buildCTable_wksp; - HUF_WriteCTableWksp writeCTable_wksp; - U32 hist_wksp[1024]; - } wksps; -} HUF_compress_tables_t; - -struct nmi_ctx { - u64 hcr; - unsigned int cnt; -}; - -struct rdists { - struct { - raw_spinlock_t rd_lock; - void *rd_base; - struct page *pend_page; - phys_addr_t phys_base; - u64 flags; - cpumask_t *vpe_table_mask; - void *vpe_l1_base; - } *rdist; - phys_addr_t prop_table_pa; - void *prop_table_va; - u64 flags; - u32 gicd_typer; - u32 gicd_typer2; - int cpuhp_memreserve_state; - bool has_vlpis; - bool has_rvpeid; - bool has_direct_lpi; - bool has_vpend_valid_dirty; -}; - -struct redist_region { - void *redist_base; - phys_addr_t phys_base; - bool single_redist; -}; - -struct gic_chip_data___2 { - struct fwnode_handle *fwnode; - phys_addr_t dist_phys_base; - void *dist_base; - struct redist_region *redist_regions; - struct rdists rdists; - struct irq_domain *domain; - u64 redist_stride; - u32 nr_redist_regions; - u64 flags; - bool has_rss; - unsigned int ppi_nr; - struct partition_desc **ppi_descs; -}; - -enum gic_intid_range { - SGI_RANGE = 0, - PPI_RANGE = 1, - SPI_RANGE = 2, - EPPI_RANGE = 3, - ESPI_RANGE = 4, - LPI_RANGE = 5, - __INVALID_RANGE__ = 6, -}; - -struct resource_constraint { - resource_size_t min; - resource_size_t max; - resource_size_t align; - resource_alignf alignf; - void *alignf_data; -}; - -struct pci_dev_resource { - struct list_head list; - struct resource *res; - struct pci_dev *dev; - resource_size_t start; - resource_size_t end; - resource_size_t add_size; - resource_size_t min_align; - long unsigned int flags; -}; - -enum release_type { - leaf_only = 0, - whole_subtree = 1, -}; - -enum enable_type { - undefined = -1, - user_disabled = 0, - auto_disabled = 1, - user_enabled = 2, - auto_enabled = 3, -}; - -struct pci_slot_attribute { - struct attribute attr; - ssize_t (*show)(struct pci_slot *, char *); - ssize_t (*store)(struct pci_slot *, const char *, size_t); -}; - -enum virtio_input_config_select { - VIRTIO_INPUT_CFG_UNSET = 0, - VIRTIO_INPUT_CFG_ID_NAME = 1, - VIRTIO_INPUT_CFG_ID_SERIAL = 2, - VIRTIO_INPUT_CFG_ID_DEVIDS = 3, - VIRTIO_INPUT_CFG_PROP_BITS = 16, - VIRTIO_INPUT_CFG_EV_BITS = 17, - VIRTIO_INPUT_CFG_ABS_INFO = 18, -}; - -struct virtio_input_absinfo { - __le32 min; - __le32 max; - __le32 fuzz; - __le32 flat; - __le32 res; -}; - -struct virtio_input_devids { - __le16 bustype; - __le16 vendor; - __le16 product; - __le16 version; -}; - -struct virtio_input_config { - __u8 select; - __u8 subsel; - __u8 size; - __u8 reserved[5]; - union { - char string[128]; - __u8 bitmap[128]; - struct virtio_input_absinfo abs; - struct virtio_input_devids ids; - } u; -}; - -struct virtio_input_event { - __le16 type; - __le16 code; - __le32 value; -}; - -struct virtio_input { - struct virtio_device *vdev; - struct input_dev *idev; - char name[64]; - char serial[64]; - char phys[64]; - struct virtqueue *evt; - struct virtqueue *sts; - struct virtio_input_event evts[64]; - spinlock_t lock; - bool ready; -}; - -struct memdev { - const char *name; - const struct file_operations *fops; - fmode_t fmode; - umode_t mode; -}; - -struct drm_mode_get_encoder { - __u32 encoder_id; - __u32 encoder_type; - __u32 crtc_id; - __u32 possible_crtcs; - __u32 possible_clones; -}; - -struct trace_event_raw_drm_vblank_event { - struct trace_entry ent; - int crtc; - unsigned int seq; - ktime_t time; - bool high_prec; - char __data[0]; -}; - -struct trace_event_raw_drm_vblank_event_queued { - struct trace_entry ent; - struct drm_file *file; - int crtc; - unsigned int seq; - char __data[0]; -}; - -struct trace_event_raw_drm_vblank_event_delivered { - struct trace_entry ent; - struct drm_file *file; - int crtc; - unsigned int seq; - char __data[0]; -}; - -struct trace_event_data_offsets_drm_vblank_event {}; - -struct trace_event_data_offsets_drm_vblank_event_queued {}; - -struct trace_event_data_offsets_drm_vblank_event_delivered {}; - -typedef void (*btf_trace_drm_vblank_event)(void *, int, unsigned int, ktime_t, bool); - -typedef void (*btf_trace_drm_vblank_event_queued)(void *, struct drm_file *, int, unsigned int); - -typedef void (*btf_trace_drm_vblank_event_delivered)(void *, struct drm_file *, int, unsigned int); - -struct drm_afbc_framebuffer { - struct drm_framebuffer base; - u32 block_width; - u32 block_height; - u32 aligned_width; - u32 aligned_height; - u32 offset; - u32 afbc_size; -}; - -struct virtio_dma_buf_ops { - struct dma_buf_ops ops; - int (*device_attach)(struct dma_buf *, struct dma_buf_attachment *); - int (*get_uuid)(struct dma_buf *, uuid_t *); -}; - -struct probe { - struct probe *next; - dev_t dev; - long unsigned int range; - struct module *owner; - kobj_probe_t *get; - int (*lock)(dev_t, void *); - void *data; -}; - -struct kobj_map { - struct probe *probes[255]; - struct mutex *lock; -}; - -struct regmap_debugfs_off_cache { - struct list_head list; - off_t min; - off_t max; - unsigned int base_reg; - unsigned int max_reg; -}; - -struct regmap_debugfs_node { - struct regmap *map; - struct list_head link; -}; - -struct syscon_platform_data { - const char *label; -}; - -struct syscon { - struct device_node *np; - struct regmap *regmap; - struct reset_control *reset; - struct list_head list; -}; - -struct class_interface { - struct list_head node; - const struct class *class; - int (*add_dev)(struct device *); - void (*remove_dev)(struct device *); -}; - -struct scsi_event { - enum scsi_device_event evt_type; - struct list_head node; -}; - -struct class_attribute { - struct attribute attr; - ssize_t (*show)(const struct class *, const struct class_attribute *, char *); - ssize_t (*store)(const struct class *, const struct class_attribute *, const char *, size_t); -}; - -struct bond_net { - struct net *net; - struct list_head dev_list; - struct proc_dir_entry *proc_dir; - struct class_attribute class_attr_bonding_masters; -}; - -enum { - VETH_INFO_UNSPEC = 0, - VETH_INFO_PEER = 1, - __VETH_INFO_MAX = 2, -}; - -struct page_pool_stats { - struct page_pool_alloc_stats alloc_stats; - struct page_pool_recycle_stats recycle_stats; -}; - -struct veth_stats { - u64 rx_drops; - u64 xdp_packets; - u64 xdp_bytes; - u64 xdp_redirect; - u64 xdp_drops; - u64 xdp_tx; - u64 xdp_tx_err; - u64 peer_tq_xdp_xmit; - u64 peer_tq_xdp_xmit_err; -}; - -struct veth_rq_stats { - struct veth_stats vs; - struct u64_stats_sync syncp; -}; - -struct veth_rq { - struct napi_struct xdp_napi; - struct napi_struct *napi; - struct net_device *dev; - struct bpf_prog *xdp_prog; - struct xdp_mem_info xdp_mem; - struct veth_rq_stats stats; - bool rx_notify_masked; - struct ptr_ring xdp_ring; - struct xdp_rxq_info xdp_rxq; - struct page_pool *page_pool; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct veth_priv { - struct net_device *peer; - atomic64_t dropped; - struct bpf_prog *_xdp_prog; - struct veth_rq *rq; - unsigned int requested_headroom; -}; - -struct veth_xdp_tx_bq { - struct xdp_frame *q[16]; - unsigned int count; -}; - -struct veth_q_stat_desc { - char desc[32]; - size_t offset; -}; - -struct veth_xdp_buff { - struct xdp_buff xdp; - struct sk_buff *skb; -}; - -struct pppoe_tag { - __be16 tag_type; - __be16 tag_len; - char tag_data[0]; -}; - -struct pppoe_hdr { - __u8 type: 4; - __u8 ver: 4; - __u8 code; - __be16 sid; - __be16 length; - struct pppoe_tag tag[0]; -}; - -struct pppoe_net { - struct pppox_sock *hash_table[16]; - rwlock_t hash_lock; -}; - -struct usbdevfs_ctrltransfer { - __u8 bRequestType; - __u8 bRequest; - __u16 wValue; - __u16 wIndex; - __u16 wLength; - __u32 timeout; - void *data; -}; - -struct usbdevfs_bulktransfer { - unsigned int ep; - unsigned int len; - unsigned int timeout; - void *data; -}; - -struct usbdevfs_setinterface { - unsigned int interface; - unsigned int altsetting; -}; - -struct usbdevfs_disconnectsignal { - unsigned int signr; - void *context; -}; - -struct usbdevfs_getdriver { - unsigned int interface; - char driver[256]; -}; - -struct usbdevfs_connectinfo { - unsigned int devnum; - unsigned char slow; -}; - -struct usbdevfs_conninfo_ex { - __u32 size; - __u32 busnum; - __u32 devnum; - __u32 speed; - __u8 num_ports; - __u8 ports[7]; -}; - -struct usbdevfs_iso_packet_desc { - unsigned int length; - unsigned int actual_length; - unsigned int status; -}; - -struct usbdevfs_urb { - unsigned char type; - unsigned char endpoint; - int status; - unsigned int flags; - void *buffer; - int buffer_length; - int actual_length; - int start_frame; - union { - int number_of_packets; - unsigned int stream_id; - }; - int error_count; - unsigned int signr; - void *usercontext; - struct usbdevfs_iso_packet_desc iso_frame_desc[0]; -}; - -struct usbdevfs_ioctl { - int ifno; - int ioctl_code; - void *data; -}; - -struct usbdevfs_disconnect_claim { - unsigned int interface; - unsigned int flags; - char driver[256]; -}; - -struct usbdevfs_streams { - unsigned int num_streams; - unsigned int num_eps; - unsigned char eps[0]; -}; - -struct usb_dev_state { - struct list_head list; - struct usb_device *dev; - struct file *file; - spinlock_t lock; - struct list_head async_pending; - struct list_head async_completed; - struct list_head memory_list; - wait_queue_head_t wait; - wait_queue_head_t wait_for_resume; - unsigned int discsignr; - struct pid *disc_pid; - const struct cred *cred; - sigval_t disccontext; - long unsigned int ifclaimed; - u32 disabled_bulk_eps; - long unsigned int interface_allowed_mask; - int not_yet_resumed; - bool suspend_allowed; - bool privileges_dropped; -}; - -struct usb_memory { - struct list_head memlist; - int vma_use_count; - int urb_use_count; - u32 size; - void *mem; - dma_addr_t dma_handle; - long unsigned int vm_start; - struct usb_dev_state *ps; -}; - -struct async { - struct list_head asynclist; - struct usb_dev_state *ps; - struct pid *pid; - const struct cred *cred; - unsigned int signr; - unsigned int ifnum; - void *userbuffer; - void *userurb; - sigval_t userurb_sigval; - struct urb *urb; - struct usb_memory *usbm; - unsigned int mem_usage; - int status; - u8 bulk_addr; - u8 bulk_status; -}; - -enum snoop_when { - SUBMIT = 0, - COMPLETE = 1, -}; - -struct xhci_input_control_ctx { - __le32 drop_flags; - __le32 add_flags; - __le32 rsvd2[6]; -}; - -enum xhci_ep_reset_type { - EP_HARD_RESET = 0, - EP_SOFT_RESET = 1, -}; - -enum xhci_setup_dev { - SETUP_CONTEXT_ONLY = 0, - SETUP_CONTEXT_ADDRESS = 1, -}; - -enum xhci_cancelled_td_status { - TD_DIRTY = 0, - TD_HALTED = 1, - TD_CLEARING_CACHE = 2, - TD_CLEARING_CACHE_DEFERRED = 3, - TD_CLEARED = 4, -}; - -struct xhci_td { - struct list_head td_list; - struct list_head cancelled_td_list; - int status; - enum xhci_cancelled_td_status cancel_status; - struct urb *urb; - struct xhci_segment *start_seg; - union xhci_trb *first_trb; - union xhci_trb *last_trb; - struct xhci_segment *last_trb_seg; - struct xhci_segment *bounce_seg; - bool urb_length_set; - bool error_mid_td; -}; - -struct urb_priv { - int num_tds; - int num_tds_done; - struct xhci_td td[0]; -}; - -struct ignore_entry { - u16 vid; - u16 pid; - u16 bcdmin; - u16 bcdmax; -}; - -struct nand_flash_dev { - int model_id; - int chipshift; - char pageshift; - char blockshift; - char zoneshift; - char pageadrlen; -}; - -struct sddr09_card_info { - long unsigned int capacity; - int pagesize; - int pageshift; - int blocksize; - int blockshift; - int blockmask; - int *lba_to_pba; - int *pba_to_lba; - int lbact; - int flags; -}; - -enum pin_config_param { - PIN_CONFIG_BIAS_BUS_HOLD = 0, - PIN_CONFIG_BIAS_DISABLE = 1, - PIN_CONFIG_BIAS_HIGH_IMPEDANCE = 2, - PIN_CONFIG_BIAS_PULL_DOWN = 3, - PIN_CONFIG_BIAS_PULL_PIN_DEFAULT = 4, - PIN_CONFIG_BIAS_PULL_UP = 5, - PIN_CONFIG_DRIVE_OPEN_DRAIN = 6, - PIN_CONFIG_DRIVE_OPEN_SOURCE = 7, - PIN_CONFIG_DRIVE_PUSH_PULL = 8, - PIN_CONFIG_DRIVE_STRENGTH = 9, - PIN_CONFIG_DRIVE_STRENGTH_UA = 10, - PIN_CONFIG_INPUT_DEBOUNCE = 11, - PIN_CONFIG_INPUT_ENABLE = 12, - PIN_CONFIG_INPUT_SCHMITT = 13, - PIN_CONFIG_INPUT_SCHMITT_ENABLE = 14, - PIN_CONFIG_INPUT_SCHMITT_UV = 15, - PIN_CONFIG_MODE_LOW_POWER = 16, - PIN_CONFIG_MODE_PWM = 17, - PIN_CONFIG_OUTPUT = 18, - PIN_CONFIG_OUTPUT_ENABLE = 19, - PIN_CONFIG_OUTPUT_IMPEDANCE_OHMS = 20, - PIN_CONFIG_PERSIST_STATE = 21, - PIN_CONFIG_POWER_SOURCE = 22, - PIN_CONFIG_SKEW_DELAY = 23, - PIN_CONFIG_SLEEP_HARDWARE_STATE = 24, - PIN_CONFIG_SLEW_RATE = 25, - PIN_CONFIG_END = 127, - PIN_CONFIG_MAX = 255, -}; - -struct cp210x_serial_private { - struct gpio_chip gc; - bool gpio_registered; - u16 gpio_pushpull; - u16 gpio_altfunc; - u16 gpio_input; - u8 partnum; - u32 fw_version; - speed_t min_speed; - speed_t max_speed; - bool use_actual_rate; - bool no_flow_control; - bool no_event_mode; -}; - -enum cp210x_event_state { - ES_DATA = 0, - ES_ESCAPE = 1, - ES_LSR = 2, - ES_LSR_DATA_0 = 3, - ES_LSR_DATA_1 = 4, - ES_MSR = 5, -}; - -struct cp210x_port_private { - u8 bInterfaceNumber; - bool event_mode; - enum cp210x_event_state event_state; - u8 lsr; - struct mutex mutex; - bool crtscts; - bool dtr; - bool rts; -}; - -struct cp210x_special_chars { - u8 bEofChar; - u8 bErrorChar; - u8 bBreakChar; - u8 bEventChar; - u8 bXonChar; - u8 bXoffChar; -}; - -struct cp210x_comm_status { - __le32 ulErrors; - __le32 ulHoldReasons; - __le32 ulAmountInInQueue; - __le32 ulAmountInOutQueue; - u8 bEofReceived; - u8 bWaitForImmediate; - u8 bReserved; -} __attribute__((packed)); - -struct cp210x_flow_ctl { - __le32 ulControlHandshake; - __le32 ulFlowReplace; - __le32 ulXonLimit; - __le32 ulXoffLimit; -}; - -struct cp210x_pin_mode { - u8 eci; - u8 sci; -}; - -struct cp210x_dual_port_config { - __le16 gpio_mode; - u8 __pad0[2]; - __le16 reset_state; - u8 __pad1[4]; - __le16 suspend_state; - u8 sci_cfg; - u8 eci_cfg; - u8 device_cfg; -} __attribute__((packed)); - -struct cp210x_single_port_config { - __le16 gpio_mode; - u8 __pad0[2]; - __le16 reset_state; - u8 __pad1[4]; - __le16 suspend_state; - u8 device_cfg; -} __attribute__((packed)); - -struct cp210x_quad_port_state { - __le16 gpio_mode_pb0; - __le16 gpio_mode_pb1; - __le16 gpio_mode_pb2; - __le16 gpio_mode_pb3; - __le16 gpio_mode_pb4; - __le16 gpio_lowpower_pb0; - __le16 gpio_lowpower_pb1; - __le16 gpio_lowpower_pb2; - __le16 gpio_lowpower_pb3; - __le16 gpio_lowpower_pb4; - __le16 gpio_latch_pb0; - __le16 gpio_latch_pb1; - __le16 gpio_latch_pb2; - __le16 gpio_latch_pb3; - __le16 gpio_latch_pb4; -}; - -struct cp210x_quad_port_config { - struct cp210x_quad_port_state reset_state; - struct cp210x_quad_port_state suspend_state; - u8 ipdelay_ifc[4]; - u8 enhancedfxn_ifc[4]; - u8 enhancedfxn_device; - u8 extclkfreq[4]; -} __attribute__((packed)); - -struct cp210x_gpio_write { - u8 mask; - u8 state; -}; - -struct cp210x_gpio_write16 { - __le16 mask; - __le16 state; -}; - -struct cp210x_rate { - speed_t rate; - speed_t high; -}; - -struct oti6858_control_pkt { - __le16 divisor; - u8 frame_fmt; - u8 something; - u8 control; - u8 tx_status; - u8 pin_state; - u8 rx_bytes_avail; -}; - -struct oti6858_private { - spinlock_t lock; - struct oti6858_control_pkt status; - struct { - u8 read_urb_in_use; - u8 write_urb_in_use; - } flags; - struct delayed_work delayed_write_work; - struct { - __le16 divisor; - u8 frame_fmt; - u8 control; - } pending_setup; - u8 transient; - u8 setup_done; - struct delayed_work delayed_setup_work; - struct usb_serial_port *port; -}; - -struct upd78f0730_port_private { - struct mutex lock; - u8 line_signals; -}; - -struct upd78f0730_line_control { - u8 opcode; - __le32 baud_rate; - u8 params; -} __attribute__((packed)); - -struct upd78f0730_set_dtr_rts { - u8 opcode; - u8 params; -}; - -struct upd78f0730_open_close { - u8 opcode; - u8 state; -}; - -struct usbip_header_basic { - __u32 command; - __u32 seqnum; - __u32 devid; - __u32 direction; - __u32 ep; -}; - -struct usbip_header_cmd_submit { - __u32 transfer_flags; - __s32 transfer_buffer_length; - __s32 start_frame; - __s32 number_of_packets; - __s32 interval; - unsigned char setup[8]; -}; - -struct usbip_header_ret_submit { - __s32 status; - __s32 actual_length; - __s32 start_frame; - __s32 number_of_packets; - __s32 error_count; -}; - -struct usbip_header_cmd_unlink { - __u32 seqnum; -}; - -struct usbip_header_ret_unlink { - __s32 status; -}; - -struct usbip_header { - struct usbip_header_basic base; - union { - struct usbip_header_cmd_submit cmd_submit; - struct usbip_header_ret_submit ret_submit; - struct usbip_header_cmd_unlink cmd_unlink; - struct usbip_header_ret_unlink ret_unlink; - } u; -}; - -struct usbip_iso_packet_descriptor { - __u32 offset; - __u32 length; - __u32 actual_length; - __u32 status; -}; - -struct vhci_priv { - long unsigned int seqnum; - struct list_head list; - struct vhci_device *vdev; - struct urb *urb; -}; - -struct vhci_unlink { - long unsigned int seqnum; - struct list_head list; - long unsigned int unlink_seqnum; -}; - -struct matrix_keymap_data { - const uint32_t *keymap; - unsigned int keymap_size; -}; - -struct pps_kinfo { - __u32 assert_sequence; - __u32 clear_sequence; - struct pps_ktime assert_tu; - struct pps_ktime clear_tu; - int current_mode; -}; - -struct pps_fdata { - struct pps_kinfo info; - struct pps_ktime timeout; -}; - -struct pps_bind_args { - int tsformat; - int edge; - int consumer; -}; - -struct blk_crypto_config { - enum blk_crypto_mode_num crypto_mode; - unsigned int data_unit_size; - unsigned int dun_bytes; -}; - -struct blk_crypto_key { - struct blk_crypto_config crypto_cfg; - unsigned int data_unit_size_bits; - unsigned int size; - u8 raw[64]; -}; - -struct blk_crypto_profile; - -struct blk_crypto_ll_ops { - int (*keyslot_program)(struct blk_crypto_profile *, const struct blk_crypto_key *, unsigned int); - int (*keyslot_evict)(struct blk_crypto_profile *, const struct blk_crypto_key *, unsigned int); -}; - -struct blk_crypto_keyslot; - -struct blk_crypto_profile { - struct blk_crypto_ll_ops ll_ops; - unsigned int max_dun_bytes_supported; - unsigned int modes_supported[5]; - struct device *dev; - unsigned int num_slots; - struct rw_semaphore lock; - struct lock_class_key lockdep_key; - wait_queue_head_t idle_slots_wait_queue; - struct list_head idle_slots; - spinlock_t idle_slots_lock; - struct hlist_head *slot_hashtable; - unsigned int log_slot_ht_size; - struct blk_crypto_keyslot *slots; -}; - -enum suspend_mode { - PRESUSPEND = 0, - PRESUSPEND_UNDO = 1, - POSTSUSPEND = 2, -}; - -struct cyclecounter { - u64 (*read)(const struct cyclecounter *); - u64 mask; - u32 mult; - u32 shift; -}; - -struct timecounter { - const struct cyclecounter *cc; - u64 cycle_last; - u64 nsec; - u64 mask; - u64 frac; -}; - -enum arch_timer_reg { - ARCH_TIMER_REG_CTRL = 0, - ARCH_TIMER_REG_CVAL = 1, -}; - -enum arch_timer_ppi_nr { - ARCH_TIMER_PHYS_SECURE_PPI = 0, - ARCH_TIMER_PHYS_NONSECURE_PPI = 1, - ARCH_TIMER_VIRT_PPI = 2, - ARCH_TIMER_HYP_PPI = 3, - ARCH_TIMER_HYP_VIRT_PPI = 4, - ARCH_TIMER_MAX_TIMER_PPI = 5, -}; - -enum arch_timer_spi_nr { - ARCH_TIMER_PHYS_SPI = 0, - ARCH_TIMER_VIRT_SPI = 1, - ARCH_TIMER_MAX_TIMER_SPI = 2, -}; - -struct arch_timer_kvm_info { - struct timecounter timecounter; - int virtual_irq; - int physical_irq; -}; - -struct arch_timer_mem_frame { - bool valid; - phys_addr_t cntbase; - size_t size; - int phys_irq; - int virt_irq; -}; - -struct arch_timer_mem { - phys_addr_t cntctlbase; - size_t size; - struct arch_timer_mem_frame frame[8]; -}; - -typedef int (*of_init_fn_1_ret)(struct device_node *); - -struct arch_timer { - void *base; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct clock_event_device evt; -}; - -struct hid_debug_list { - struct { - union { - struct __kfifo kfifo; - char *type; - const char *const_type; - char (*rectype)[0]; - char *ptr; - const char *ptr_const; - }; - char buf[0]; - } hid_debug_fifo; - struct fasync_struct *fasync; - struct hid_device *hdev; - struct list_head node; - struct mutex read_mutex; -}; - -struct hid_usage_entry { - unsigned int page; - unsigned int usage; - const char *description; -}; - -struct amba_id { - unsigned int id; - unsigned int mask; - void *data; -}; - -struct amba_cs_uci_id { - unsigned int devarch; - unsigned int devarch_mask; - unsigned int devtype; - void *data; -}; - -struct amba_device { - struct device dev; - struct resource res; - struct clk *pclk; - struct device_dma_parameters dma_parms; - unsigned int periphid; - struct mutex periphid_lock; - unsigned int cid; - struct amba_cs_uci_id uci; - unsigned int irq[9]; - const char *driver_override; -}; - -struct amba_driver { - struct device_driver drv; - int (*probe)(struct amba_device *, const struct amba_id *); - void (*remove)(struct amba_device *); - void (*shutdown)(struct amba_device *); - const struct amba_id *id_table; - bool driver_managed_dma; -}; - -struct mhu_link { - unsigned int irq; - void *tx_reg; - void *rx_reg; -}; - -struct arm_mhu { - void *base; - struct mhu_link mlink[3]; - struct mbox_chan chan[3]; - struct mbox_controller mbox; -}; - -enum { - NDA_UNSPEC = 0, - NDA_DST = 1, - NDA_LLADDR = 2, - NDA_CACHEINFO = 3, - NDA_PROBES = 4, - NDA_VLAN = 5, - NDA_PORT = 6, - NDA_VNI = 7, - NDA_IFINDEX = 8, - NDA_MASTER = 9, - NDA_LINK_NETNSID = 10, - NDA_SRC_VNI = 11, - NDA_PROTOCOL = 12, - NDA_NH_ID = 13, - NDA_FDB_EXT_ATTRS = 14, - NDA_FLAGS_EXT = 15, - NDA_NDM_STATE_MASK = 16, - NDA_NDM_FLAGS_MASK = 17, - __NDA_MAX = 18, -}; - -struct nda_cacheinfo { - __u32 ndm_confirmed; - __u32 ndm_used; - __u32 ndm_updated; - __u32 ndm_refcnt; -}; - -struct ndt_stats { - __u64 ndts_allocs; - __u64 ndts_destroys; - __u64 ndts_hash_grows; - __u64 ndts_res_failed; - __u64 ndts_lookups; - __u64 ndts_hits; - __u64 ndts_rcv_probes_mcast; - __u64 ndts_rcv_probes_ucast; - __u64 ndts_periodic_gc_runs; - __u64 ndts_forced_gc_runs; - __u64 ndts_table_fulls; -}; - -enum { - NDTPA_UNSPEC = 0, - NDTPA_IFINDEX = 1, - NDTPA_REFCNT = 2, - NDTPA_REACHABLE_TIME = 3, - NDTPA_BASE_REACHABLE_TIME = 4, - NDTPA_RETRANS_TIME = 5, - NDTPA_GC_STALETIME = 6, - NDTPA_DELAY_PROBE_TIME = 7, - NDTPA_QUEUE_LEN = 8, - NDTPA_APP_PROBES = 9, - NDTPA_UCAST_PROBES = 10, - NDTPA_MCAST_PROBES = 11, - NDTPA_ANYCAST_DELAY = 12, - NDTPA_PROXY_DELAY = 13, - NDTPA_PROXY_QLEN = 14, - NDTPA_LOCKTIME = 15, - NDTPA_QUEUE_LENBYTES = 16, - NDTPA_MCAST_REPROBES = 17, - NDTPA_PAD = 18, - NDTPA_INTERVAL_PROBE_TIME_MS = 19, - __NDTPA_MAX = 20, -}; - -struct ndtmsg { - __u8 ndtm_family; - __u8 ndtm_pad1; - __u16 ndtm_pad2; -}; - -struct ndt_config { - __u16 ndtc_key_len; - __u16 ndtc_entry_size; - __u32 ndtc_entries; - __u32 ndtc_last_flush; - __u32 ndtc_last_rand; - __u32 ndtc_hash_rnd; - __u32 ndtc_hash_mask; - __u32 ndtc_hash_chain_gc; - __u32 ndtc_proxy_qlen; -}; - -enum { - NDTA_UNSPEC = 0, - NDTA_NAME = 1, - NDTA_THRESH1 = 2, - NDTA_THRESH2 = 3, - NDTA_THRESH3 = 4, - NDTA_CONFIG = 5, - NDTA_PARMS = 6, - NDTA_STATS = 7, - NDTA_GC_INTERVAL = 8, - NDTA_PAD = 9, - __NDTA_MAX = 10, -}; - -struct neigh_dump_filter { - int master_idx; - int dev_idx; -}; - -struct neigh_sysctl_table { - struct ctl_table_header *sysctl_header; - struct ctl_table neigh_vars[21]; -}; - -enum tc_link_layer { - TC_LINKLAYER_UNAWARE = 0, - TC_LINKLAYER_ETHERNET = 1, - TC_LINKLAYER_ATM = 2, -}; - -struct tc_ratespec { - unsigned char cell_log; - __u8 linklayer; - short unsigned int overhead; - short int cell_align; - short unsigned int mpu; - __u32 rate; -}; - -enum { - TCA_STAB_UNSPEC = 0, - TCA_STAB_BASE = 1, - TCA_STAB_DATA = 2, - __TCA_STAB_MAX = 3, -}; - -struct qdisc_rate_table { - struct tc_ratespec rate; - u32 data[256]; - struct qdisc_rate_table *next; - int refcnt; -}; - -enum qdisc_state_t { - __QDISC_STATE_SCHED = 0, - __QDISC_STATE_DEACTIVATED = 1, - __QDISC_STATE_MISSED = 2, - __QDISC_STATE_DRAINING = 3, -}; - -struct qdisc_watchdog { - struct hrtimer timer; - struct Qdisc *qdisc; -}; - -struct tc_query_caps_base { - enum tc_setup_type type; - void *caps; -}; - -enum tc_root_command { - TC_ROOT_GRAFT = 0, -}; - -struct tc_root_qopt_offload { - enum tc_root_command command; - u32 handle; - bool ingress; -}; - -struct check_loop_arg { - struct qdisc_walker w; - struct Qdisc *p; - int depth; -}; - -struct tcf_bind_args { - struct tcf_walker w; - long unsigned int base; - long unsigned int cl; - u32 classid; -}; - -struct tc_bind_class_args { - struct qdisc_walker w; - long unsigned int new_cl; - u32 portid; - u32 clid; -}; - -struct qdisc_dump_args { - struct qdisc_walker w; - struct sk_buff *skb; - struct netlink_callback *cb; -}; - -enum { - TCA_GRED_UNSPEC = 0, - TCA_GRED_PARMS = 1, - TCA_GRED_STAB = 2, - TCA_GRED_DPS = 3, - TCA_GRED_MAX_P = 4, - TCA_GRED_LIMIT = 5, - TCA_GRED_VQ_LIST = 6, - __TCA_GRED_MAX = 7, -}; - -enum { - TCA_GRED_VQ_ENTRY_UNSPEC = 0, - TCA_GRED_VQ_ENTRY = 1, - __TCA_GRED_VQ_ENTRY_MAX = 2, -}; - -enum { - TCA_GRED_VQ_UNSPEC = 0, - TCA_GRED_VQ_PAD = 1, - TCA_GRED_VQ_DP = 2, - TCA_GRED_VQ_STAT_BYTES = 3, - TCA_GRED_VQ_STAT_PACKETS = 4, - TCA_GRED_VQ_STAT_BACKLOG = 5, - TCA_GRED_VQ_STAT_PROB_DROP = 6, - TCA_GRED_VQ_STAT_PROB_MARK = 7, - TCA_GRED_VQ_STAT_FORCED_DROP = 8, - TCA_GRED_VQ_STAT_FORCED_MARK = 9, - TCA_GRED_VQ_STAT_PDROP = 10, - TCA_GRED_VQ_STAT_OTHER = 11, - TCA_GRED_VQ_FLAGS = 12, - __TCA_GRED_VQ_MAX = 13, -}; - -struct tc_gred_qopt { - __u32 limit; - __u32 qth_min; - __u32 qth_max; - __u32 DP; - __u32 backlog; - __u32 qave; - __u32 forced; - __u32 early; - __u32 other; - __u32 pdrop; - __u8 Wlog; - __u8 Plog; - __u8 Scell_log; - __u8 prio; - __u32 packets; - __u32 bytesin; -}; - -struct tc_gred_sopt { - __u32 DPs; - __u32 def_DP; - __u8 grio; - __u8 flags; - __u16 pad1; -}; - -struct red_stats { - u32 prob_drop; - u32 prob_mark; - u32 forced_drop; - u32 forced_mark; - u32 pdrop; -}; - -enum tc_gred_command { - TC_GRED_REPLACE = 0, - TC_GRED_DESTROY = 1, - TC_GRED_STATS = 2, -}; - -struct tc_gred_vq_qopt_offload_params { - bool present; - u32 limit; - u32 prio; - u32 min; - u32 max; - bool is_ecn; - bool is_harddrop; - u32 probability; - u32 *backlog; -}; - -struct tc_gred_qopt_offload_params { - bool grio_on; - bool wred_on; - unsigned int dp_cnt; - unsigned int dp_def; - struct gnet_stats_queue *qstats; - struct tc_gred_vq_qopt_offload_params tab[16]; -}; - -struct tc_gred_qopt_offload_stats { - struct gnet_stats_basic_sync bstats[16]; - struct gnet_stats_queue qstats[16]; - struct red_stats *xstats[16]; -}; - -struct tc_gred_qopt_offload { - enum tc_gred_command command; - u32 handle; - u32 parent; - union { - struct tc_gred_qopt_offload_params set; - struct tc_gred_qopt_offload_stats stats; - }; -}; - -struct red_parms { - u32 qth_min; - u32 qth_max; - u32 Scell_max; - u32 max_P; - struct reciprocal_value max_P_reciprocal; - u32 qth_delta; - u32 target_min; - u32 target_max; - u8 Scell_log; - u8 Wlog; - u8 Plog; - u8 Stab[256]; -}; - -struct red_vars { - int qcount; - u32 qR; - long unsigned int qavg; - ktime_t qidlestart; -}; - -enum { - RED_BELOW_MIN_THRESH = 0, - RED_BETWEEN_TRESH = 1, - RED_ABOVE_MAX_TRESH = 2, -}; - -enum { - RED_DONT_MARK = 0, - RED_PROB_MARK = 1, - RED_HARD_MARK = 2, -}; - -struct gred_sched_data { - u32 limit; - u32 DP; - u32 red_flags; - u64 bytesin; - u32 packetsin; - u32 backlog; - u8 prio; - struct red_parms parms; - struct red_vars vars; - struct red_stats stats; -}; - -enum { - GRED_WRED_MODE = 1, - GRED_RIO_MODE = 2, -}; - -struct gred_sched { - struct gred_sched_data *tab[16]; - long unsigned int flags; - u32 red_flags; - u32 DPs; - u32 def; - struct red_vars wred_set; - struct tc_gred_qopt_offload *opt; -}; - -enum { - TCA_BPF_UNSPEC = 0, - TCA_BPF_ACT = 1, - TCA_BPF_POLICE = 2, - TCA_BPF_CLASSID = 3, - TCA_BPF_OPS_LEN = 4, - TCA_BPF_OPS = 5, - TCA_BPF_FD = 6, - TCA_BPF_NAME = 7, - TCA_BPF_FLAGS = 8, - TCA_BPF_FLAGS_GEN = 9, - TCA_BPF_TAG = 10, - TCA_BPF_ID = 11, - __TCA_BPF_MAX = 12, -}; - -struct flow_cls_common_offload { - u32 chain_index; - __be16 protocol; - u32 prio; - struct netlink_ext_ack *extack; -}; - -enum tc_clsbpf_command { - TC_CLSBPF_OFFLOAD = 0, - TC_CLSBPF_STATS = 1, -}; - -struct tc_cls_bpf_offload { - struct flow_cls_common_offload common; - enum tc_clsbpf_command command; - struct tcf_exts *exts; - struct bpf_prog *prog; - struct bpf_prog *oldprog; - const char *name; - bool exts_integrated; -}; - -struct cls_bpf_head { - struct list_head plist; - struct idr handle_idr; - struct callback_head rcu; -}; - -struct cls_bpf_prog { - struct bpf_prog *filter; - struct list_head link; - struct tcf_result res; - bool exts_integrated; - u32 gen_flags; - unsigned int in_hw_count; - struct tcf_exts exts; - u32 handle; - u16 bpf_num_ops; - struct sock_filter *bpf_ops; - const char *bpf_name; - struct tcf_proto *tp; - struct rcu_work rwork; -}; - -struct rss_req_info { - struct ethnl_req_info base; - u32 rss_context; -}; - -struct rss_reply_data { - struct ethnl_reply_data base; - bool no_key_fields; - u32 indir_size; - u32 hkey_size; - u32 hfunc; - u32 input_xfrm; - u32 *indir_table; - u8 *hkey; -}; - -struct rss_nl_dump_ctx { - long unsigned int ifindex; - long unsigned int ctx_idx; - unsigned int match_ifindex; - unsigned int start_ctx; -}; - -struct ethtool_phy_ops { - int (*get_sset_count)(struct phy_device *); - int (*get_strings)(struct phy_device *, u8 *); - int (*get_stats)(struct phy_device *, struct ethtool_stats *, u64 *); - int (*get_plca_cfg)(struct phy_device *, struct phy_plca_cfg *); - int (*set_plca_cfg)(struct phy_device *, const struct phy_plca_cfg *, struct netlink_ext_ack *); - int (*get_plca_status)(struct phy_device *, struct phy_plca_status *); - int (*start_cable_test)(struct phy_device *, struct netlink_ext_ack *); - int (*start_cable_test_tdr)(struct phy_device *, struct netlink_ext_ack *, const struct phy_tdr_config *); -}; - -enum { - ETHTOOL_A_CABLE_PAIR_A = 0, - ETHTOOL_A_CABLE_PAIR_B = 1, - ETHTOOL_A_CABLE_PAIR_C = 2, - ETHTOOL_A_CABLE_PAIR_D = 3, -}; - -enum { - ETHTOOL_A_CABLE_INF_SRC_UNSPEC = 0, - ETHTOOL_A_CABLE_INF_SRC_TDR = 1, - ETHTOOL_A_CABLE_INF_SRC_ALCD = 2, -}; - -enum { - ETHTOOL_A_CABLE_RESULT_UNSPEC = 0, - ETHTOOL_A_CABLE_RESULT_PAIR = 1, - ETHTOOL_A_CABLE_RESULT_CODE = 2, - ETHTOOL_A_CABLE_RESULT_SRC = 3, - __ETHTOOL_A_CABLE_RESULT_CNT = 4, - ETHTOOL_A_CABLE_RESULT_MAX = 3, -}; - -enum { - ETHTOOL_A_CABLE_FAULT_LENGTH_UNSPEC = 0, - ETHTOOL_A_CABLE_FAULT_LENGTH_PAIR = 1, - ETHTOOL_A_CABLE_FAULT_LENGTH_CM = 2, - ETHTOOL_A_CABLE_FAULT_LENGTH_SRC = 3, - __ETHTOOL_A_CABLE_FAULT_LENGTH_CNT = 4, - ETHTOOL_A_CABLE_FAULT_LENGTH_MAX = 3, -}; - -enum { - ETHTOOL_A_CABLE_TEST_NTF_STATUS_UNSPEC = 0, - ETHTOOL_A_CABLE_TEST_NTF_STATUS_STARTED = 1, - ETHTOOL_A_CABLE_TEST_NTF_STATUS_COMPLETED = 2, -}; - -enum { - ETHTOOL_A_CABLE_NEST_UNSPEC = 0, - ETHTOOL_A_CABLE_NEST_RESULT = 1, - ETHTOOL_A_CABLE_NEST_FAULT_LENGTH = 2, - __ETHTOOL_A_CABLE_NEST_CNT = 3, - ETHTOOL_A_CABLE_NEST_MAX = 2, -}; - -enum { - ETHTOOL_A_CABLE_TEST_NTF_UNSPEC = 0, - ETHTOOL_A_CABLE_TEST_NTF_HEADER = 1, - ETHTOOL_A_CABLE_TEST_NTF_STATUS = 2, - ETHTOOL_A_CABLE_TEST_NTF_NEST = 3, - __ETHTOOL_A_CABLE_TEST_NTF_CNT = 4, - ETHTOOL_A_CABLE_TEST_NTF_MAX = 3, -}; - -enum { - ETHTOOL_A_CABLE_TEST_TDR_CFG_UNSPEC = 0, - ETHTOOL_A_CABLE_TEST_TDR_CFG_FIRST = 1, - ETHTOOL_A_CABLE_TEST_TDR_CFG_LAST = 2, - ETHTOOL_A_CABLE_TEST_TDR_CFG_STEP = 3, - ETHTOOL_A_CABLE_TEST_TDR_CFG_PAIR = 4, - __ETHTOOL_A_CABLE_TEST_TDR_CFG_CNT = 5, - ETHTOOL_A_CABLE_TEST_TDR_CFG_MAX = 4, -}; - -enum { - ETHTOOL_A_CABLE_AMPLITUDE_UNSPEC = 0, - ETHTOOL_A_CABLE_AMPLITUDE_PAIR = 1, - ETHTOOL_A_CABLE_AMPLITUDE_mV = 2, - __ETHTOOL_A_CABLE_AMPLITUDE_CNT = 3, - ETHTOOL_A_CABLE_AMPLITUDE_MAX = 2, -}; - -enum { - ETHTOOL_A_CABLE_PULSE_UNSPEC = 0, - ETHTOOL_A_CABLE_PULSE_mV = 1, - __ETHTOOL_A_CABLE_PULSE_CNT = 2, - ETHTOOL_A_CABLE_PULSE_MAX = 1, -}; - -enum { - ETHTOOL_A_CABLE_STEP_UNSPEC = 0, - ETHTOOL_A_CABLE_STEP_FIRST_DISTANCE = 1, - ETHTOOL_A_CABLE_STEP_LAST_DISTANCE = 2, - ETHTOOL_A_CABLE_STEP_STEP_DISTANCE = 3, - __ETHTOOL_A_CABLE_STEP_CNT = 4, - ETHTOOL_A_CABLE_STEP_MAX = 3, -}; - -enum { - ETHTOOL_A_CABLE_TDR_NEST_UNSPEC = 0, - ETHTOOL_A_CABLE_TDR_NEST_STEP = 1, - ETHTOOL_A_CABLE_TDR_NEST_AMPLITUDE = 2, - ETHTOOL_A_CABLE_TDR_NEST_PULSE = 3, - __ETHTOOL_A_CABLE_TDR_NEST_CNT = 4, - ETHTOOL_A_CABLE_TDR_NEST_MAX = 3, -}; - -enum nfnl_acct_msg_types { - NFNL_MSG_ACCT_NEW = 0, - NFNL_MSG_ACCT_GET = 1, - NFNL_MSG_ACCT_GET_CTRZERO = 2, - NFNL_MSG_ACCT_DEL = 3, - NFNL_MSG_ACCT_OVERQUOTA = 4, - NFNL_MSG_ACCT_MAX = 5, -}; - -enum nfnl_acct_flags { - NFACCT_F_QUOTA_PKTS = 1, - NFACCT_F_QUOTA_BYTES = 2, - NFACCT_F_OVERQUOTA = 4, -}; - -enum nfnl_acct_type { - NFACCT_UNSPEC = 0, - NFACCT_NAME = 1, - NFACCT_PKTS = 2, - NFACCT_BYTES = 3, - NFACCT_USE = 4, - NFACCT_FLAGS = 5, - NFACCT_QUOTA = 6, - NFACCT_FILTER = 7, - NFACCT_PAD = 8, - __NFACCT_MAX = 9, -}; - -enum nfnl_attr_filter_type { - NFACCT_FILTER_UNSPEC = 0, - NFACCT_FILTER_MASK = 1, - NFACCT_FILTER_VALUE = 2, - __NFACCT_FILTER_MAX = 3, -}; - -enum { - NFACCT_NO_QUOTA = -1, - NFACCT_UNDERQUOTA = 0, - NFACCT_OVERQUOTA = 1, -}; - -struct nf_acct { - atomic64_t pkts; - atomic64_t bytes; - long unsigned int flags; - struct list_head head; - refcount_t refcnt; - char name[32]; - struct callback_head callback_head; - char data[0]; -}; - -struct nfacct_filter { - u32 value; - u32 mask; -}; - -struct nfnl_acct_net { - struct list_head nfnl_acct_list; -}; - -struct nf_ct_timeout_hooks { - struct nf_ct_timeout * (*timeout_find_get)(struct net *, const char *); - void (*timeout_put)(struct nf_ct_timeout *); -}; - -struct nf_conncount_tuple { - struct list_head node; - struct nf_conntrack_tuple tuple; - struct nf_conntrack_zone zone; - int cpu; - u32 jiffies32; -}; - -struct nf_conncount_rb { - struct rb_node node; - struct nf_conncount_list list; - u32 key[5]; - struct callback_head callback_head; -}; - -struct nf_conncount_data { - unsigned int keylen; - struct rb_root root[256]; - struct net *net; - struct work_struct gc_work; - long unsigned int pending_trees[4]; - unsigned int gc_tree; -}; - -enum nft_inner_type { - NFT_INNER_UNSPEC = 0, - NFT_INNER_VXLAN = 1, - NFT_INNER_GENEVE = 2, -}; - -enum nft_inner_flags { - NFT_INNER_HDRSIZE = 1, - NFT_INNER_LL = 2, - NFT_INNER_NH = 4, - NFT_INNER_TH = 8, -}; - -enum nft_inner_attributes { - NFTA_INNER_UNSPEC = 0, - NFTA_INNER_NUM = 1, - NFTA_INNER_TYPE = 2, - NFTA_INNER_FLAGS = 3, - NFTA_INNER_HDRSIZE = 4, - NFTA_INNER_EXPR = 5, - __NFTA_INNER_MAX = 6, -}; - -enum { - NFT_PAYLOAD_CTX_INNER_TUN = 1, - NFT_PAYLOAD_CTX_INNER_LL = 2, - NFT_PAYLOAD_CTX_INNER_NH = 4, - NFT_PAYLOAD_CTX_INNER_TH = 8, -}; - -struct nft_inner_tun_ctx { - long unsigned int cookie; - u16 type; - u16 inner_tunoff; - u16 inner_lloff; - u16 inner_nhoff; - u16 inner_thoff; - __be16 llproto; - u8 l4proto; - u8 flags; -}; - -struct genevehdr { - u8 opt_len: 6; - u8 ver: 2; - u8 rsvd1: 6; - u8 critical: 1; - u8 oam: 1; - __be16 proto_type; - u8 vni[3]; - u8 rsvd2; - u8 options[0]; -}; - -struct __nft_expr { - const struct nft_expr_ops *ops; - union { - struct nft_payload payload; - struct nft_meta meta; - }; -}; - -enum { - NFT_INNER_EXPR_PAYLOAD = 0, - NFT_INNER_EXPR_META = 1, -}; - -struct nft_inner { - u8 flags; - u8 hdrsize; - u8 type; - u8 expr_type; - struct __nft_expr expr; -}; - -struct nft_expr_info { - const struct nft_expr_ops *ops; - const struct nlattr *attr; - struct nlattr *tb[17]; -}; - -enum nft_reject_inet_code { - NFT_REJECT_ICMPX_NO_ROUTE = 0, - NFT_REJECT_ICMPX_PORT_UNREACH = 1, - NFT_REJECT_ICMPX_HOST_UNREACH = 2, - NFT_REJECT_ICMPX_ADMIN_PROHIBITED = 3, - __NFT_REJECT_ICMPX_MAX = 4, -}; - -struct nft_dup_netdev { - u8 sreg_dev; -}; - -struct xt_log_info { - unsigned char level; - unsigned char logflags; - char prefix[30]; -}; - -enum xt_cluster_flags { - XT_CLUSTER_F_INV = 1, -}; - -struct xt_cluster_match_info { - __u32 total_nodes; - __u32 node_mask; - __u32 hash_seed; - __u32 flags; -}; - -struct xt_cgroup_info_v0 { - __u32 id; - __u32 invert; -}; - -struct xt_cgroup_info_v1 { - __u8 has_path; - __u8 has_classid; - __u8 invert_path; - __u8 invert_classid; - char path[4096]; - __u32 classid; - void *priv; -}; - -struct xt_cgroup_info_v2 { - __u8 has_path; - __u8 has_classid; - __u8 invert_path; - __u8 invert_classid; - union { - char path[512]; - __u32 classid; - }; - void *priv; -}; - -struct bitmap_ip { - long unsigned int *members; - u32 first_ip; - u32 last_ip; - u32 elements; - u32 hosts; - size_t memsize; - u8 netmask; - struct timer_list gc; - struct ip_set *set; - unsigned char extensions[0]; -}; - -struct bitmap_ip_adt_elem { - u16 id; -}; - -struct bitmap_ip_elem {}; - -enum tcp_fastopen_client_fail { - TFO_STATUS_UNSPEC = 0, - TFO_COOKIE_UNAVAILABLE = 1, - TFO_DATA_NOT_ACKED = 2, - TFO_SYN_RETRANSMITTED = 3, -}; - -typedef struct sk_buff * (*gro_receive_t)(struct list_head *, struct sk_buff *); - -struct gro_remcsum { - int offset; - __wsum delta; -}; - -struct guehdr { - union { - struct { - __u8 hlen: 5; - __u8 control: 1; - __u8 version: 2; - __u8 proto_ctype; - __be16 flags; - }; - __be32 word; - }; -}; - -enum { - FOU_ENCAP_UNSPEC = 0, - FOU_ENCAP_DIRECT = 1, - FOU_ENCAP_GUE = 2, -}; - -enum { - FOU_ATTR_UNSPEC = 0, - FOU_ATTR_PORT = 1, - FOU_ATTR_AF = 2, - FOU_ATTR_IPPROTO = 3, - FOU_ATTR_TYPE = 4, - FOU_ATTR_REMCSUM_NOPARTIAL = 5, - FOU_ATTR_LOCAL_V4 = 6, - FOU_ATTR_LOCAL_V6 = 7, - FOU_ATTR_PEER_V4 = 8, - FOU_ATTR_PEER_V6 = 9, - FOU_ATTR_PEER_PORT = 10, - FOU_ATTR_IFINDEX = 11, - __FOU_ATTR_MAX = 12, -}; - -enum { - FOU_CMD_UNSPEC = 0, - FOU_CMD_ADD = 1, - FOU_CMD_DEL = 2, - FOU_CMD_GET = 3, - __FOU_CMD_MAX = 4, -}; - -struct fou { - struct socket *sock; - u8 protocol; - u8 flags; - __be16 port; - u8 family; - u16 type; - struct list_head list; - struct callback_head rcu; -}; - -struct fou_cfg { - u16 type; - u8 protocol; - u8 flags; - struct udp_port_cfg udp_config; -}; - -struct fou_net { - struct list_head fou_list; - struct mutex fou_lock; -}; - -struct xfrm_dst_lookup_params { - struct net *net; - int tos; - int oif; - xfrm_address_t *saddr; - xfrm_address_t *daddr; - u32 mark; - __u8 ipproto; - union flowi_uli uli; -}; - -struct xfrm_policy_afinfo { - struct dst_ops *dst_ops; - struct dst_entry * (*dst_lookup)(const struct xfrm_dst_lookup_params *); - int (*get_saddr)(xfrm_address_t *, const struct xfrm_dst_lookup_params *); - int (*fill_dst)(struct xfrm_dst *, struct net_device *, const struct flowi *); - struct dst_entry * (*blackhole_route)(struct net *, struct dst_entry *); -}; - -enum xfrm_sa_dir { - XFRM_SA_DIR_IN = 1, - XFRM_SA_DIR_OUT = 2, -}; - -enum { - XFRM_SHARE_ANY = 0, - XFRM_SHARE_SESSION = 1, - XFRM_SHARE_USER = 2, - XFRM_SHARE_UNIQUE = 3, -}; - -struct xfrm_user_sec_ctx { - __u16 len; - __u16 exttype; - __u8 ctx_alg; - __u8 ctx_doi; - __u16 ctx_len; -}; - -struct xfrm_user_tmpl { - struct xfrm_id id; - __u16 family; - xfrm_address_t saddr; - __u32 reqid; - __u8 mode; - __u8 share; - __u8 optional; - __u32 aalgos; - __u32 ealgos; - __u32 calgos; -}; - -enum xfrm_ae_ftype_t { - XFRM_AE_UNSPEC = 0, - XFRM_AE_RTHR = 1, - XFRM_AE_RVAL = 2, - XFRM_AE_LVAL = 4, - XFRM_AE_ETHR = 8, - XFRM_AE_CR = 16, - XFRM_AE_CE = 32, - XFRM_AE_CU = 64, - __XFRM_AE_MAX = 65, -}; - -struct xfrm_userpolicy_type { - __u8 type; - __u16 reserved1; - __u8 reserved2; -}; - -enum xfrm_sadattr_type_t { - XFRMA_SAD_UNSPEC = 0, - XFRMA_SAD_CNT = 1, - XFRMA_SAD_HINFO = 2, - __XFRMA_SAD_MAX = 3, -}; - -struct xfrmu_sadhinfo { - __u32 sadhcnt; - __u32 sadhmcnt; -}; - -enum xfrm_spdattr_type_t { - XFRMA_SPD_UNSPEC = 0, - XFRMA_SPD_INFO = 1, - XFRMA_SPD_HINFO = 2, - XFRMA_SPD_IPV4_HTHRESH = 3, - XFRMA_SPD_IPV6_HTHRESH = 4, - __XFRMA_SPD_MAX = 5, -}; - -struct xfrmu_spdinfo { - __u32 incnt; - __u32 outcnt; - __u32 fwdcnt; - __u32 inscnt; - __u32 outscnt; - __u32 fwdscnt; -}; - -struct xfrmu_spdhinfo { - __u32 spdhcnt; - __u32 spdhmcnt; -}; - -struct xfrmu_spdhthresh { - __u8 lbits; - __u8 rbits; -}; - -struct xfrm_usersa_info { - struct xfrm_selector sel; - struct xfrm_id id; - xfrm_address_t saddr; - struct xfrm_lifetime_cfg lft; - struct xfrm_lifetime_cur curlft; - struct xfrm_stats stats; - __u32 seq; - __u32 reqid; - __u16 family; - __u8 mode; - __u8 replay_window; - __u8 flags; -}; - -struct xfrm_usersa_id { - xfrm_address_t daddr; - __be32 spi; - __u16 family; - __u8 proto; -}; - -struct xfrm_aevent_id { - struct xfrm_usersa_id sa_id; - xfrm_address_t saddr; - __u32 flags; - __u32 reqid; -}; - -struct xfrm_userspi_info { - struct xfrm_usersa_info info; - __u32 min; - __u32 max; -}; - -struct xfrm_userpolicy_info { - struct xfrm_selector sel; - struct xfrm_lifetime_cfg lft; - struct xfrm_lifetime_cur curlft; - __u32 priority; - __u32 index; - __u8 dir; - __u8 action; - __u8 flags; - __u8 share; -}; - -struct xfrm_userpolicy_id { - struct xfrm_selector sel; - __u32 index; - __u8 dir; -}; - -struct xfrm_user_acquire { - struct xfrm_id id; - xfrm_address_t saddr; - struct xfrm_selector sel; - struct xfrm_userpolicy_info policy; - __u32 aalgos; - __u32 ealgos; - __u32 calgos; - __u32 seq; -}; - -struct xfrm_user_expire { - struct xfrm_usersa_info state; - __u8 hard; -}; - -struct xfrm_user_polexpire { - struct xfrm_userpolicy_info pol; - __u8 hard; -}; - -struct xfrm_usersa_flush { - __u8 proto; -}; - -struct xfrm_user_report { - __u8 proto; - struct xfrm_selector sel; -}; - -struct xfrm_user_kmaddress { - xfrm_address_t local; - xfrm_address_t remote; - __u32 reserved; - __u16 family; -}; - -struct xfrm_user_migrate { - xfrm_address_t old_daddr; - xfrm_address_t old_saddr; - xfrm_address_t new_daddr; - xfrm_address_t new_saddr; - __u8 proto; - __u8 mode; - __u16 reserved; - __u32 reqid; - __u16 old_family; - __u16 new_family; -}; - -struct xfrm_user_mapping { - struct xfrm_usersa_id id; - __u32 reqid; - xfrm_address_t old_saddr; - xfrm_address_t new_saddr; - __be16 old_sport; - __be16 new_sport; -}; - -struct xfrm_user_offload { - int ifindex; - __u8 flags; -}; - -struct xfrm_userpolicy_default { - __u8 in; - __u8 fwd; - __u8 out; -}; - -enum xfrm_nlgroups { - XFRMNLGRP_NONE = 0, - XFRMNLGRP_ACQUIRE = 1, - XFRMNLGRP_EXPIRE = 2, - XFRMNLGRP_SA = 3, - XFRMNLGRP_POLICY = 4, - XFRMNLGRP_AEVENTS = 5, - XFRMNLGRP_REPORT = 6, - XFRMNLGRP_MIGRATE = 7, - XFRMNLGRP_MAPPING = 8, - __XFRMNLGRP_MAX = 9, -}; - -enum { - XFRM_DEV_OFFLOAD_IN = 1, - XFRM_DEV_OFFLOAD_OUT = 2, - XFRM_DEV_OFFLOAD_FWD = 3, -}; - -struct km_event { - union { - u32 hard; - u32 proto; - u32 byid; - u32 aevent; - u32 type; - } data; - u32 seq; - u32 portid; - u32 event; - struct net *net; -}; - -struct xfrm_policy_walk { - struct xfrm_policy_walk_entry walk; - u8 type; - u32 seq; -}; - -struct xfrm_kmaddress { - xfrm_address_t local; - xfrm_address_t remote; - u32 reserved; - u16 family; -}; - -struct xfrm_migrate { - xfrm_address_t old_daddr; - xfrm_address_t old_saddr; - xfrm_address_t new_daddr; - xfrm_address_t new_saddr; - u8 proto; - u8 mode; - u16 reserved; - u32 reqid; - u16 old_family; - u16 new_family; -}; - -struct xfrm_mgr { - struct list_head list; - int (*notify)(struct xfrm_state *, const struct km_event *); - int (*acquire)(struct xfrm_state *, struct xfrm_tmpl *, struct xfrm_policy *); - struct xfrm_policy * (*compile_policy)(struct sock *, int, u8 *, int, int *); - int (*new_mapping)(struct xfrm_state *, xfrm_address_t *, __be16); - int (*notify_policy)(struct xfrm_policy *, int, const struct km_event *); - int (*report)(struct net *, u8, struct xfrm_selector *, xfrm_address_t *); - int (*migrate)(const struct xfrm_selector *, u8, u8, const struct xfrm_migrate *, int, const struct xfrm_kmaddress *, const struct xfrm_encap_tmpl *); - bool (*is_alive)(const struct km_event *); -}; - -struct xfrmk_sadinfo { - u32 sadhcnt; - u32 sadhmcnt; - u32 sadcnt; -}; - -struct xfrmk_spdinfo { - u32 incnt; - u32 outcnt; - u32 fwdcnt; - u32 inscnt; - u32 outscnt; - u32 fwdscnt; - u32 spdhcnt; - u32 spdhmcnt; -}; - -struct xfrm_translator { - int (*alloc_compat)(struct sk_buff *, const struct nlmsghdr *); - struct nlmsghdr * (*rcv_msg_compat)(const struct nlmsghdr *, int, const struct nla_policy *, struct netlink_ext_ack *); - int (*xlate_user_policy_sockptr)(u8 **, int); - struct module *owner; -}; - -struct xfrm_dump_info { - struct sk_buff *in_skb; - struct sk_buff *out_skb; - u32 nlmsg_seq; - u16 nlmsg_flags; -}; - -struct xfrm_link { - int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **, struct netlink_ext_ack *); - int (*start)(struct netlink_callback *); - int (*dump)(struct sk_buff *, struct netlink_callback *); - int (*done)(struct netlink_callback *); - const struct nla_policy *nla_pol; - int nla_max; -}; - -enum flowlabel_reflect { - FLOWLABEL_REFLECT_ESTABLISHED = 1, - FLOWLABEL_REFLECT_TCP_RESET = 2, - FLOWLABEL_REFLECT_ICMPV6_ECHO_REPLIES = 4, -}; - -struct tcp_ao_key { - struct hlist_node node; - union tcp_ao_addr addr; - u8 key[80]; - unsigned int tcp_sigpool_id; - unsigned int digest_size; - int l3index; - u8 prefixlen; - u8 family; - u8 keylen; - u8 keyflags; - u8 sndid; - u8 rcvid; - u8 maclen; - struct callback_head rcu; - atomic64_t pkt_good; - atomic64_t pkt_bad; - u8 traffic_keys[0]; -}; - -enum tcp_tw_status { - TCP_TW_SUCCESS = 0, - TCP_TW_RST = 1, - TCP_TW_ACK = 2, - TCP_TW_SYN = 3, -}; - -enum tcp_seq_states { - TCP_SEQ_STATE_LISTENING = 0, - TCP_SEQ_STATE_ESTABLISHED = 1, -}; - -struct tcp_seq_afinfo { - sa_family_t family; -}; - -struct tcp_iter_state { - struct seq_net_private p; - enum tcp_seq_states state; - struct sock *syn_wait_sk; - int bucket; - int offset; - int sbucket; - int num; - loff_t last_pos; -}; - -struct tcp_key { - union { - struct { - struct tcp_ao_key *ao_key; - char *traffic_key; - u32 sne; - u8 rcv_next; - }; - struct tcp_md5sig_key *md5_key; - }; - enum { - TCP_KEY_NONE = 0, - TCP_KEY_MD5 = 1, - TCP_KEY_AO = 2, - } type; -}; - -typedef u32 inet6_ehashfn_t(const struct net *, const struct in6_addr *, const u16, const struct in6_addr *, const __be16); - -struct sadb_msg { - __u8 sadb_msg_version; - __u8 sadb_msg_type; - __u8 sadb_msg_errno; - __u8 sadb_msg_satype; - __u16 sadb_msg_len; - __u16 sadb_msg_reserved; - __u32 sadb_msg_seq; - __u32 sadb_msg_pid; -}; - -struct sadb_ext { - __u16 sadb_ext_len; - __u16 sadb_ext_type; -}; - -struct sadb_sa { - __u16 sadb_sa_len; - __u16 sadb_sa_exttype; - __be32 sadb_sa_spi; - __u8 sadb_sa_replay; - __u8 sadb_sa_state; - __u8 sadb_sa_auth; - __u8 sadb_sa_encrypt; - __u32 sadb_sa_flags; -}; - -struct sadb_lifetime { - __u16 sadb_lifetime_len; - __u16 sadb_lifetime_exttype; - __u32 sadb_lifetime_allocations; - __u64 sadb_lifetime_bytes; - __u64 sadb_lifetime_addtime; - __u64 sadb_lifetime_usetime; -}; - -struct sadb_address { - __u16 sadb_address_len; - __u16 sadb_address_exttype; - __u8 sadb_address_proto; - __u8 sadb_address_prefixlen; - __u16 sadb_address_reserved; -}; - -struct sadb_key { - __u16 sadb_key_len; - __u16 sadb_key_exttype; - __u16 sadb_key_bits; - __u16 sadb_key_reserved; -}; - -struct sadb_prop { - __u16 sadb_prop_len; - __u16 sadb_prop_exttype; - __u8 sadb_prop_replay; - __u8 sadb_prop_reserved[3]; -}; - -struct sadb_comb { - __u8 sadb_comb_auth; - __u8 sadb_comb_encrypt; - __u16 sadb_comb_flags; - __u16 sadb_comb_auth_minbits; - __u16 sadb_comb_auth_maxbits; - __u16 sadb_comb_encrypt_minbits; - __u16 sadb_comb_encrypt_maxbits; - __u32 sadb_comb_reserved; - __u32 sadb_comb_soft_allocations; - __u32 sadb_comb_hard_allocations; - __u64 sadb_comb_soft_bytes; - __u64 sadb_comb_hard_bytes; - __u64 sadb_comb_soft_addtime; - __u64 sadb_comb_hard_addtime; - __u64 sadb_comb_soft_usetime; - __u64 sadb_comb_hard_usetime; -}; - -struct sadb_supported { - __u16 sadb_supported_len; - __u16 sadb_supported_exttype; - __u32 sadb_supported_reserved; -}; - -struct sadb_spirange { - __u16 sadb_spirange_len; - __u16 sadb_spirange_exttype; - __u32 sadb_spirange_min; - __u32 sadb_spirange_max; - __u32 sadb_spirange_reserved; -}; - -struct sadb_x_sa2 { - __u16 sadb_x_sa2_len; - __u16 sadb_x_sa2_exttype; - __u8 sadb_x_sa2_mode; - __u8 sadb_x_sa2_reserved1; - __u16 sadb_x_sa2_reserved2; - __u32 sadb_x_sa2_sequence; - __u32 sadb_x_sa2_reqid; -}; - -struct sadb_x_policy { - __u16 sadb_x_policy_len; - __u16 sadb_x_policy_exttype; - __u16 sadb_x_policy_type; - __u8 sadb_x_policy_dir; - __u8 sadb_x_policy_reserved; - __u32 sadb_x_policy_id; - __u32 sadb_x_policy_priority; -}; - -struct sadb_x_ipsecrequest { - __u16 sadb_x_ipsecrequest_len; - __u16 sadb_x_ipsecrequest_proto; - __u8 sadb_x_ipsecrequest_mode; - __u8 sadb_x_ipsecrequest_level; - __u16 sadb_x_ipsecrequest_reserved1; - __u32 sadb_x_ipsecrequest_reqid; - __u32 sadb_x_ipsecrequest_reserved2; -}; - -struct sadb_x_nat_t_type { - __u16 sadb_x_nat_t_type_len; - __u16 sadb_x_nat_t_type_exttype; - __u8 sadb_x_nat_t_type_type; - __u8 sadb_x_nat_t_type_reserved[3]; -}; - -struct sadb_x_nat_t_port { - __u16 sadb_x_nat_t_port_len; - __u16 sadb_x_nat_t_port_exttype; - __be16 sadb_x_nat_t_port_port; - __u16 sadb_x_nat_t_port_reserved; -}; - -struct sadb_x_sec_ctx { - __u16 sadb_x_sec_len; - __u16 sadb_x_sec_exttype; - __u8 sadb_x_ctx_alg; - __u8 sadb_x_ctx_doi; - __u16 sadb_x_ctx_len; -}; - -struct sadb_x_kmaddress { - __u16 sadb_x_kmaddress_len; - __u16 sadb_x_kmaddress_exttype; - __u32 sadb_x_kmaddress_reserved; -}; - -struct sadb_x_filter { - __u16 sadb_x_filter_len; - __u16 sadb_x_filter_exttype; - __u32 sadb_x_filter_saddr[4]; - __u32 sadb_x_filter_daddr[4]; - __u16 sadb_x_filter_family; - __u8 sadb_x_filter_splen; - __u8 sadb_x_filter_dplen; -}; - -enum { - IPSEC_MODE_ANY = 0, - IPSEC_MODE_TRANSPORT = 1, - IPSEC_MODE_TUNNEL = 2, - IPSEC_MODE_BEET = 3, -}; - -enum { - IPSEC_DIR_ANY = 0, - IPSEC_DIR_INBOUND = 1, - IPSEC_DIR_OUTBOUND = 2, - IPSEC_DIR_FWD = 3, - IPSEC_DIR_MAX = 4, - IPSEC_DIR_INVALID = 5, -}; - -enum { - IPSEC_POLICY_DISCARD = 0, - IPSEC_POLICY_NONE = 1, - IPSEC_POLICY_IPSEC = 2, - IPSEC_POLICY_ENTRUST = 3, - IPSEC_POLICY_BYPASS = 4, -}; - -enum { - IPSEC_LEVEL_DEFAULT = 0, - IPSEC_LEVEL_USE = 1, - IPSEC_LEVEL_REQUIRE = 2, - IPSEC_LEVEL_UNIQUE = 3, -}; - -struct netns_pfkey { - struct hlist_head table; - atomic_t socks_nr; -}; - -struct pfkey_sock { - struct sock sk; - int registered; - int promisc; - struct { - uint8_t msg_version; - uint32_t msg_portid; - int (*dump)(struct pfkey_sock *); - void (*done)(struct pfkey_sock *); - union { - struct xfrm_policy_walk policy; - struct xfrm_state_walk state; - } u; - struct sk_buff *skb; - } dump; - struct mutex dump_lock; -}; - -typedef int (*pfkey_handler)(struct sock *, struct sk_buff *, const struct sadb_msg *, void * const *); - -struct netdev_notifier_changeupper_info { - struct netdev_notifier_info info; - struct net_device *upper_dev; - bool master; - bool linking; - void *upper_info; -}; - -enum { - BRIDGE_VLANDB_DUMP_UNSPEC = 0, - BRIDGE_VLANDB_DUMP_FLAGS = 1, - __BRIDGE_VLANDB_DUMP_MAX = 2, -}; - -enum { - BRIDGE_VLANDB_STATS_UNSPEC = 0, - BRIDGE_VLANDB_STATS_RX_BYTES = 1, - BRIDGE_VLANDB_STATS_RX_PACKETS = 2, - BRIDGE_VLANDB_STATS_TX_BYTES = 3, - BRIDGE_VLANDB_STATS_TX_PACKETS = 4, - BRIDGE_VLANDB_STATS_PAD = 5, - __BRIDGE_VLANDB_STATS_MAX = 6, -}; - -struct br_vlan_bind_walk_data { - u16 vid; - struct net_device *result; -}; - -struct br_vlan_link_state_walk_data { - struct net_bridge *br; -}; - -struct ebt_ip6_info { - struct in6_addr saddr; - struct in6_addr daddr; - struct in6_addr smsk; - struct in6_addr dmsk; - __u8 tclass; - __u8 protocol; - __u8 bitmask; - __u8 invflags; - union { - __u16 sport[2]; - __u8 icmpv6_type[2]; - }; - union { - __u16 dport[2]; - __u8 icmpv6_code[2]; - }; -}; - -union pkthdr { - struct { - __be16 src; - __be16 dst; - } tcpudphdr; - struct { - u8 type; - u8 code; - } icmphdr; -}; - -struct gss_auth; - -struct gss_upcall_msg { - refcount_t count; - kuid_t uid; - const char *service_name; - struct rpc_pipe_msg msg; - struct list_head list; - struct gss_auth *auth; - struct rpc_pipe *pipe; - struct rpc_wait_queue rpc_waitqueue; - wait_queue_head_t waitqueue; - struct gss_cl_ctx *ctx; - char databuf[256]; -}; - -struct gss_pipe { - struct rpc_pipe_dir_object pdo; - struct rpc_pipe *pipe; - struct rpc_clnt *clnt; - const char *name; - struct kref kref; -}; - -struct gss_auth { - struct kref kref; - struct hlist_node hash; - struct rpc_auth rpc_auth; - struct gss_api_mech *mech; - enum rpc_gss_svc service; - struct rpc_clnt *client; - struct net *net; - netns_tracker ns_tracker; - struct gss_pipe *gss_pipe[2]; - const char *target_name; -}; - -struct gss_alloc_pdo { - struct rpc_clnt *clnt; - const char *name; - const struct rpc_pipe_ops *upcall_ops; -}; - -enum { - IFLA_VLAN_UNSPEC = 0, - IFLA_VLAN_ID = 1, - IFLA_VLAN_FLAGS = 2, - IFLA_VLAN_EGRESS_QOS = 3, - IFLA_VLAN_INGRESS_QOS = 4, - IFLA_VLAN_PROTOCOL = 5, - __IFLA_VLAN_MAX = 6, -}; - -struct ifla_vlan_flags { - __u32 flags; - __u32 mask; -}; - -enum { - IFLA_VLAN_QOS_UNSPEC = 0, - IFLA_VLAN_QOS_MAPPING = 1, - __IFLA_VLAN_QOS_MAX = 2, -}; - -struct ifla_vlan_qos_mapping { - __u32 from; - __u32 to; -}; - -enum sctp_sac_state { - SCTP_COMM_UP = 0, - SCTP_COMM_LOST = 1, - SCTP_RESTART = 2, - SCTP_SHUTDOWN_COMP = 3, - SCTP_CANT_STR_ASSOC = 4, -}; - -enum { - SCTP_CID_ACTION_DISCARD = 0, - SCTP_CID_ACTION_DISCARD_ERR = 64, - SCTP_CID_ACTION_SKIP = 128, - SCTP_CID_ACTION_SKIP_ERR = 192, -}; - -enum { - SCTP_CID_ACTION_MASK = 192, -}; - -enum { - SCTP_CHUNK_FLAG_T = 1, -}; - -struct sctp_init_chunk { - struct sctp_chunkhdr chunk_hdr; - struct sctp_inithdr init_hdr; -}; - -struct sctp_initack_chunk { - struct sctp_chunkhdr chunk_hdr; - struct sctp_inithdr init_hdr; -}; - -struct sctp_unrecognized_param { - struct sctp_paramhdr param_hdr; - struct sctp_paramhdr unrecognized; -}; - -enum sctp_error { - SCTP_ERROR_NO_ERROR = 0, - SCTP_ERROR_INV_STRM = 256, - SCTP_ERROR_MISS_PARAM = 512, - SCTP_ERROR_STALE_COOKIE = 768, - SCTP_ERROR_NO_RESOURCE = 1024, - SCTP_ERROR_DNS_FAILED = 1280, - SCTP_ERROR_UNKNOWN_CHUNK = 1536, - SCTP_ERROR_INV_PARAM = 1792, - SCTP_ERROR_UNKNOWN_PARAM = 2048, - SCTP_ERROR_NO_DATA = 2304, - SCTP_ERROR_COOKIE_IN_SHUTDOWN = 2560, - SCTP_ERROR_RESTART = 2816, - SCTP_ERROR_USER_ABORT = 3072, - SCTP_ERROR_PROTO_VIOLATION = 3328, - SCTP_ERROR_NEW_ENCAP_PORT = 3584, - SCTP_ERROR_DEL_LAST_IP = 40960, - SCTP_ERROR_RSRC_LOW = 41216, - SCTP_ERROR_DEL_SRC_IP = 41472, - SCTP_ERROR_ASCONF_ACK = 41728, - SCTP_ERROR_REQ_REFUSED = 41984, - SCTP_ERROR_UNSUP_HMAC = 1281, -}; - -struct sctp_reconf_chunk { - struct sctp_chunkhdr chunk_hdr; -}; - -enum sctp_event_other { - SCTP_EVENT_NO_PENDING_TSN = 0, - SCTP_EVENT_ICMP_PROTO_UNREACH = 1, -}; - -enum sctp_event_primitive { - SCTP_PRIMITIVE_ASSOCIATE = 0, - SCTP_PRIMITIVE_SHUTDOWN = 1, - SCTP_PRIMITIVE_ABORT = 2, - SCTP_PRIMITIVE_SEND = 3, - SCTP_PRIMITIVE_REQUESTHEARTBEAT = 4, - SCTP_PRIMITIVE_ASCONF = 5, - SCTP_PRIMITIVE_RECONF = 6, -}; - -union sctp_subtype { - enum sctp_cid chunk; - enum sctp_event_timeout timeout; - enum sctp_event_other other; - enum sctp_event_primitive primitive; -}; - -enum sctp_ierror { - SCTP_IERROR_NO_ERROR = 0, - SCTP_IERROR_BASE = 1000, - SCTP_IERROR_NO_COOKIE = 1001, - SCTP_IERROR_BAD_SIG = 1002, - SCTP_IERROR_STALE_COOKIE = 1003, - SCTP_IERROR_NOMEM = 1004, - SCTP_IERROR_MALFORMED = 1005, - SCTP_IERROR_BAD_TAG = 1006, - SCTP_IERROR_BIG_GAP = 1007, - SCTP_IERROR_DUP_TSN = 1008, - SCTP_IERROR_HIGH_TSN = 1009, - SCTP_IERROR_IGNORE_TSN = 1010, - SCTP_IERROR_NO_DATA = 1011, - SCTP_IERROR_BAD_STREAM = 1012, - SCTP_IERROR_BAD_PORTS = 1013, - SCTP_IERROR_AUTH_BAD_HMAC = 1014, - SCTP_IERROR_AUTH_BAD_KEYID = 1015, - SCTP_IERROR_PROTO_VIOLATION = 1016, - SCTP_IERROR_ERROR = 1017, - SCTP_IERROR_ABORT = 1018, -}; - -enum sctp_sock_state { - SCTP_SS_CLOSED = 7, - SCTP_SS_LISTENING = 10, - SCTP_SS_ESTABLISHING = 2, - SCTP_SS_ESTABLISHED = 1, - SCTP_SS_CLOSING = 8, -}; - -enum sctp_verb { - SCTP_CMD_NOP = 0, - SCTP_CMD_NEW_ASOC = 1, - SCTP_CMD_DELETE_TCB = 2, - SCTP_CMD_NEW_STATE = 3, - SCTP_CMD_REPORT_TSN = 4, - SCTP_CMD_GEN_SACK = 5, - SCTP_CMD_PROCESS_SACK = 6, - SCTP_CMD_GEN_INIT_ACK = 7, - SCTP_CMD_PEER_INIT = 8, - SCTP_CMD_GEN_COOKIE_ECHO = 9, - SCTP_CMD_CHUNK_ULP = 10, - SCTP_CMD_EVENT_ULP = 11, - SCTP_CMD_REPLY = 12, - SCTP_CMD_SEND_PKT = 13, - SCTP_CMD_RETRAN = 14, - SCTP_CMD_ECN_CE = 15, - SCTP_CMD_ECN_ECNE = 16, - SCTP_CMD_ECN_CWR = 17, - SCTP_CMD_TIMER_START = 18, - SCTP_CMD_TIMER_START_ONCE = 19, - SCTP_CMD_TIMER_RESTART = 20, - SCTP_CMD_TIMER_STOP = 21, - SCTP_CMD_INIT_CHOOSE_TRANSPORT = 22, - SCTP_CMD_INIT_COUNTER_RESET = 23, - SCTP_CMD_INIT_COUNTER_INC = 24, - SCTP_CMD_INIT_RESTART = 25, - SCTP_CMD_COOKIEECHO_RESTART = 26, - SCTP_CMD_INIT_FAILED = 27, - SCTP_CMD_REPORT_DUP = 28, - SCTP_CMD_STRIKE = 29, - SCTP_CMD_HB_TIMERS_START = 30, - SCTP_CMD_HB_TIMER_UPDATE = 31, - SCTP_CMD_HB_TIMERS_STOP = 32, - SCTP_CMD_PROBE_TIMER_UPDATE = 33, - SCTP_CMD_TRANSPORT_HB_SENT = 34, - SCTP_CMD_TRANSPORT_IDLE = 35, - SCTP_CMD_TRANSPORT_ON = 36, - SCTP_CMD_REPORT_ERROR = 37, - SCTP_CMD_REPORT_BAD_TAG = 38, - SCTP_CMD_PROCESS_CTSN = 39, - SCTP_CMD_ASSOC_FAILED = 40, - SCTP_CMD_DISCARD_PACKET = 41, - SCTP_CMD_GEN_SHUTDOWN = 42, - SCTP_CMD_PURGE_OUTQUEUE = 43, - SCTP_CMD_SETUP_T2 = 44, - SCTP_CMD_RTO_PENDING = 45, - SCTP_CMD_PART_DELIVER = 46, - SCTP_CMD_RENEGE = 47, - SCTP_CMD_SETUP_T4 = 48, - SCTP_CMD_PROCESS_OPERR = 49, - SCTP_CMD_REPORT_FWDTSN = 50, - SCTP_CMD_PROCESS_FWDTSN = 51, - SCTP_CMD_CLEAR_INIT_TAG = 52, - SCTP_CMD_DEL_NON_PRIMARY = 53, - SCTP_CMD_T3_RTX_TIMERS_STOP = 54, - SCTP_CMD_FORCE_PRIM_RETRAN = 55, - SCTP_CMD_SET_SK_ERR = 56, - SCTP_CMD_ASSOC_CHANGE = 57, - SCTP_CMD_ADAPTATION_IND = 58, - SCTP_CMD_PEER_NO_AUTH = 59, - SCTP_CMD_ASSOC_SHKEY = 60, - SCTP_CMD_T1_RETRAN = 61, - SCTP_CMD_UPDATE_INITTAG = 62, - SCTP_CMD_SEND_MSG = 63, - SCTP_CMD_PURGE_ASCONF_QUEUE = 64, - SCTP_CMD_SET_ASOC = 65, - SCTP_CMD_LAST = 66, -}; - -union sctp_arg { - void *zero_all; - __s32 i32; - __u32 u32; - __be32 be32; - __u16 u16; - __u8 u8; - int error; - __be16 err; - enum sctp_state state; - enum sctp_event_timeout to; - struct sctp_chunk *chunk; - struct sctp_association *asoc; - struct sctp_transport *transport; - struct sctp_bind_addr *bp; - struct sctp_init_chunk *init; - struct sctp_ulpevent *ulpevent; - struct sctp_packet *packet; - struct sctp_sackhdr *sackh; - struct sctp_datamsg *msg; -}; - -struct sctp_cmd { - union sctp_arg obj; - enum sctp_verb verb; -}; - -struct sctp_cmd_seq { - struct sctp_cmd cmds[20]; - struct sctp_cmd *last_used_slot; - struct sctp_cmd *next_cmd; -}; - -enum sctp_disposition { - SCTP_DISPOSITION_DISCARD = 0, - SCTP_DISPOSITION_CONSUME = 1, - SCTP_DISPOSITION_NOMEM = 2, - SCTP_DISPOSITION_DELETE_TCB = 3, - SCTP_DISPOSITION_ABORT = 4, - SCTP_DISPOSITION_VIOLATION = 5, - SCTP_DISPOSITION_NOT_IMPL = 6, - SCTP_DISPOSITION_ERROR = 7, - SCTP_DISPOSITION_BUG = 8, -}; - -struct trace_event_raw_sctp_probe_path { - struct trace_entry ent; - __u64 asoc; - __u32 primary; - __u8 ipaddr[28]; - __u32 state; - __u32 cwnd; - __u32 ssthresh; - __u32 flight_size; - __u32 partial_bytes_acked; - __u32 pathmtu; - char __data[0]; -}; - -struct trace_event_raw_sctp_probe { - struct trace_entry ent; - __u64 asoc; - __u32 mark; - __u16 bind_port; - __u16 peer_port; - __u32 pathmtu; - __u32 rwnd; - __u16 unack_data; - char __data[0]; -}; - -struct trace_event_data_offsets_sctp_probe_path {}; - -struct trace_event_data_offsets_sctp_probe {}; - -typedef void (*btf_trace_sctp_probe_path)(void *, struct sctp_transport *, const struct sctp_association *); - -typedef void (*btf_trace_sctp_probe)(void *, const struct sctp_endpoint *, const struct sctp_association *, struct sctp_chunk *); - -enum { - SCTP_PARTIAL_DELIVERY_ABORTED = 0, -}; - -enum { - SCTP_DATA_FRAG_MASK = 3, -}; - -struct sctp_fwdtsn_skip { - __be16 stream; - __be16 ssn; -}; - -struct sctp_ifwdtsn_skip { - __be16 stream; - __u8 reserved; - __u8 flags; - __be32 mid; -}; - -union tcp_word_hdr { - struct tcphdr hdr; - __be32 words[5]; -}; - -struct nsh_md1_ctx { - __be32 context[4]; -}; - -struct nsh_md2_tlv { - __be16 md_class; - u8 type; - u8 length; - u8 md_value[0]; -}; - -struct nshhdr { - __be16 ver_flags_ttl_len; - u8 mdtype; - u8 np; - __be32 path_hdr; - union { - struct nsh_md1_ctx md1; - struct nsh_md2_tlv md2; - }; -}; - -enum ovs_key_attr { - OVS_KEY_ATTR_UNSPEC = 0, - OVS_KEY_ATTR_ENCAP = 1, - OVS_KEY_ATTR_PRIORITY = 2, - OVS_KEY_ATTR_IN_PORT = 3, - OVS_KEY_ATTR_ETHERNET = 4, - OVS_KEY_ATTR_VLAN = 5, - OVS_KEY_ATTR_ETHERTYPE = 6, - OVS_KEY_ATTR_IPV4 = 7, - OVS_KEY_ATTR_IPV6 = 8, - OVS_KEY_ATTR_TCP = 9, - OVS_KEY_ATTR_UDP = 10, - OVS_KEY_ATTR_ICMP = 11, - OVS_KEY_ATTR_ICMPV6 = 12, - OVS_KEY_ATTR_ARP = 13, - OVS_KEY_ATTR_ND = 14, - OVS_KEY_ATTR_SKB_MARK = 15, - OVS_KEY_ATTR_TUNNEL = 16, - OVS_KEY_ATTR_SCTP = 17, - OVS_KEY_ATTR_TCP_FLAGS = 18, - OVS_KEY_ATTR_DP_HASH = 19, - OVS_KEY_ATTR_RECIRC_ID = 20, - OVS_KEY_ATTR_MPLS = 21, - OVS_KEY_ATTR_CT_STATE = 22, - OVS_KEY_ATTR_CT_ZONE = 23, - OVS_KEY_ATTR_CT_MARK = 24, - OVS_KEY_ATTR_CT_LABELS = 25, - OVS_KEY_ATTR_CT_ORIG_TUPLE_IPV4 = 26, - OVS_KEY_ATTR_CT_ORIG_TUPLE_IPV6 = 27, - OVS_KEY_ATTR_NSH = 28, - OVS_KEY_ATTR_PACKET_TYPE = 29, - OVS_KEY_ATTR_ND_EXTENSIONS = 30, - OVS_KEY_ATTR_TUNNEL_INFO = 31, - OVS_KEY_ATTR_IPV6_EXTHDRS = 32, - __OVS_KEY_ATTR_MAX = 33, -}; - -enum ovs_frag_type { - OVS_FRAG_TYPE_NONE = 0, - OVS_FRAG_TYPE_FIRST = 1, - OVS_FRAG_TYPE_LATER = 2, - __OVS_FRAG_TYPE_MAX = 3, -}; - -enum sw_flow_mac_proto { - MAC_PROTO_NONE = 0, - MAC_PROTO_ETHERNET = 1, -}; - -enum ofp12_ipv6exthdr_flags { - OFPIEH12_NONEXT = 1, - OFPIEH12_ESP = 2, - OFPIEH12_AUTH = 4, - OFPIEH12_DEST = 8, - OFPIEH12_FRAG = 16, - OFPIEH12_ROUTER = 32, - OFPIEH12_HOP = 64, - OFPIEH12_UNREP = 128, - OFPIEH12_UNSEQ = 256, -}; - -struct sw_flow_id { - u32 ufid_len; - union { - u32 ufid[4]; - struct sw_flow_key *unmasked_key; - }; -}; - -struct sw_flow_actions { - struct callback_head rcu; - size_t orig_len; - u32 actions_len; - struct nlattr actions[0]; -}; - -struct sw_flow_stats { - u64 packet_count; - u64 byte_count; - long unsigned int used; - spinlock_t lock; - __be16 tcp_flags; -}; - -struct sw_flow { - struct callback_head rcu; - struct { - struct hlist_node node[2]; - u32 hash; - } flow_table; - struct { - struct hlist_node node[2]; - u32 hash; - } ufid_table; - int stats_last_writer; - struct sw_flow_key key; - struct sw_flow_id id; - struct cpumask *cpu_used_mask; - struct sw_flow_mask *mask; - struct sw_flow_actions *sf_acts; - struct sw_flow_stats *stats[0]; -}; - -struct arp_eth_header { - __be16 ar_hrd; - __be16 ar_pro; - unsigned char ar_hln; - unsigned char ar_pln; - __be16 ar_op; - unsigned char ar_sha[6]; - unsigned char ar_sip[4]; - unsigned char ar_tha[6]; - unsigned char ar_tip[4]; -}; - -struct ovs_skb_cb { - struct vport *input_vport; - u16 mru; - u16 acts_origlen; - u32 cutlen; - u32 probability; -}; - -struct llc_snap_hdr { - u8 dsap; - u8 ssap; - u8 ctrl; - u8 oui[3]; - __be16 ethertype; -}; - -struct vsock_tap { - struct net_device *dev; - struct module *module; - struct list_head list; -}; - -enum { - HANDSHAKE_CMD_READY = 1, - HANDSHAKE_CMD_ACCEPT = 2, - HANDSHAKE_CMD_DONE = 3, - __HANDSHAKE_CMD_MAX = 4, - HANDSHAKE_CMD_MAX = 3, -}; - -enum { - HANDSHAKE_NLGRP_NONE = 0, - HANDSHAKE_NLGRP_TLSHD = 1, -}; - -enum vec_type { - ARM64_VEC_SVE = 0, - ARM64_VEC_SME = 1, - ARM64_VEC_MAX = 2, -}; - -struct cpu_fp_state { - struct user_fpsimd_state *st; - void *sve_state; - void *sme_state; - u64 *svcr; - u64 *fpmr; - unsigned int sve_vl; - unsigned int sme_vl; - enum fp_type *fp_type; - enum fp_type to_save; -}; - -struct vl_info { - enum vec_type type; - const char *name; - int min_vl; - int max_vl; - int max_virtualisable_vl; - long unsigned int vq_map[8]; - long unsigned int vq_partial_map[8]; -}; - -struct vl_config { - int __default_vl; -}; - -enum aarch64_insn_branch_type { - AARCH64_INSN_BRANCH_NOLINK = 0, - AARCH64_INSN_BRANCH_LINK = 1, - AARCH64_INSN_BRANCH_RETURN = 2, - AARCH64_INSN_BRANCH_COMP_ZERO = 3, - AARCH64_INSN_BRANCH_COMP_NONZERO = 4, -}; - -enum jump_label_type { - JUMP_LABEL_NOP = 0, - JUMP_LABEL_JMP = 1, -}; - -struct crypto_aes_xts_ctx { - struct crypto_aes_ctx key1; - long: 0; - struct crypto_aes_ctx key2; - long: 0; -}; - -struct crypto_aes_essiv_cbc_ctx { - struct crypto_aes_ctx key1; - long: 0; - struct crypto_aes_ctx key2; - struct crypto_shash *hash; -}; - -struct mac_tfm_ctx { - struct crypto_aes_ctx key; - long: 0; - u8 consts[0]; -}; - -struct mac_desc_ctx { - unsigned int len; - u8 dg[16]; -}; - -struct membuf { - void *p; - size_t left; -}; - -struct user_regset; - -typedef int user_regset_active_fn(struct task_struct *, const struct user_regset *); - -typedef int user_regset_get2_fn(struct task_struct *, const struct user_regset *, struct membuf); - -typedef int user_regset_set_fn(struct task_struct *, const struct user_regset *, unsigned int, unsigned int, const void *, const void *); - -typedef int user_regset_writeback_fn(struct task_struct *, const struct user_regset *, int); - -struct user_regset { - user_regset_get2_fn *regset_get; - user_regset_set_fn *set; - user_regset_active_fn *active; - user_regset_writeback_fn *writeback; - unsigned int n; - unsigned int size; - unsigned int align; - unsigned int bias; - unsigned int core_note_type; -}; - -struct user_regset_view { - const char *name; - const struct user_regset *regsets; - unsigned int n; - u32 e_flags; - u16 e_machine; - u8 ei_osabi; -}; - -struct swait_queue { - struct task_struct *task; - struct list_head task_list; -}; - -typedef const struct cpumask * (*sched_domain_mask_f)(int); - -typedef int (*sched_domain_flags_f)(void); - -struct sd_data { - struct sched_domain **sd; - struct sched_domain_shared **sds; - struct sched_group **sg; - struct sched_group_capacity **sgc; -}; - -struct sched_domain_topology_level { - sched_domain_mask_f mask; - sched_domain_flags_f sd_flags; - int flags; - int numa_level; - struct sd_data data; -}; - -enum { - MEMBARRIER_STATE_PRIVATE_EXPEDITED_READY = 1, - MEMBARRIER_STATE_PRIVATE_EXPEDITED = 2, - MEMBARRIER_STATE_GLOBAL_EXPEDITED_READY = 4, - MEMBARRIER_STATE_GLOBAL_EXPEDITED = 8, - MEMBARRIER_STATE_PRIVATE_EXPEDITED_SYNC_CORE_READY = 16, - MEMBARRIER_STATE_PRIVATE_EXPEDITED_SYNC_CORE = 32, - MEMBARRIER_STATE_PRIVATE_EXPEDITED_RSEQ_READY = 64, - MEMBARRIER_STATE_PRIVATE_EXPEDITED_RSEQ = 128, -}; - -enum { - MEMBARRIER_FLAG_SYNC_CORE = 1, - MEMBARRIER_FLAG_RSEQ = 2, -}; - -enum membarrier_cmd { - MEMBARRIER_CMD_QUERY = 0, - MEMBARRIER_CMD_GLOBAL = 1, - MEMBARRIER_CMD_GLOBAL_EXPEDITED = 2, - MEMBARRIER_CMD_REGISTER_GLOBAL_EXPEDITED = 4, - MEMBARRIER_CMD_PRIVATE_EXPEDITED = 8, - MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED = 16, - MEMBARRIER_CMD_PRIVATE_EXPEDITED_SYNC_CORE = 32, - MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_SYNC_CORE = 64, - MEMBARRIER_CMD_PRIVATE_EXPEDITED_RSEQ = 128, - MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_RSEQ = 256, - MEMBARRIER_CMD_GET_REGISTRATIONS = 512, - MEMBARRIER_CMD_SHARED = 1, -}; - -enum membarrier_cmd_flag { - MEMBARRIER_CMD_FLAG_CPU = 1, -}; - -struct psi_window { - u64 size; - u64 start_time; - u64 start_value; - u64 prev_growth; -}; - -struct psi_trigger { - enum psi_states state; - u64 threshold; - struct list_head node; - struct psi_group *group; - wait_queue_head_t event_wait; - struct kernfs_open_file *of; - int event; - struct psi_window win; - u64 last_event_time; - bool pending_event; - enum psi_aggregators aggregator; -}; - -typedef struct { - struct rq *lock; - struct rq_flags rf; -} class_rq_lock_irq_t; - -enum cpuacct_stat_index { - CPUACCT_STAT_USER = 0, - CPUACCT_STAT_SYSTEM = 1, - CPUACCT_STAT_NSTATS = 2, -}; - -struct cpuacct { - struct cgroup_subsys_state css; - u64 *cpuusage; - struct kernel_cpustat *cpustat; -}; - -struct s_data { - struct sched_domain **sd; - struct root_domain *rd; -}; - -enum s_alloc { - sa_rootdomain = 0, - sa_sd = 1, - sa_sd_storage = 2, - sa_none = 3, -}; - -enum hk_flags { - HK_FLAG_TIMER = 1, - HK_FLAG_RCU = 2, - HK_FLAG_MISC = 4, - HK_FLAG_SCHED = 8, - HK_FLAG_TICK = 16, - HK_FLAG_DOMAIN = 32, - HK_FLAG_WQ = 64, - HK_FLAG_MANAGED_IRQ = 128, - HK_FLAG_KTHREAD = 256, -}; - -struct housekeeping { - struct cpumask cpumasks[9]; - long unsigned int flags; -}; - -typedef __kernel_long_t __kernel_suseconds_t; - -typedef __kernel_suseconds_t suseconds_t; - -struct __kernel_itimerspec { - struct __kernel_timespec it_interval; - struct __kernel_timespec it_value; -}; - -struct old_itimerspec32 { - struct old_timespec32 it_interval; - struct old_timespec32 it_value; -}; - -struct old_timex32 { - u32 modes; - s32 offset; - s32 freq; - s32 maxerror; - s32 esterror; - s32 status; - s32 constant; - s32 precision; - s32 tolerance; - struct old_timeval32 time; - s32 tick; - s32 ppsfreq; - s32 jitter; - s32 shift; - s32 stabil; - s32 jitcnt; - s32 calcnt; - s32 errcnt; - s32 stbcnt; - s32 tai; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct rt_waiter_node { - struct rb_node entry; - int prio; - u64 deadline; -}; - -struct rt_mutex_waiter { - struct rt_waiter_node tree; - struct rt_waiter_node pi_tree; - struct task_struct *task; - struct rt_mutex_base *lock; - unsigned int wake_state; - struct ww_acquire_ctx *ww_ctx; -}; - -enum { - FUTEX_STATE_OK = 0, - FUTEX_STATE_EXITING = 1, - FUTEX_STATE_DEAD = 2, -}; - -struct futex_hash_bucket { - atomic_t waiters; - spinlock_t lock; - struct plist_head chain; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum futex_access { - FUTEX_READ = 0, - FUTEX_WRITE = 1, -}; - -enum rdmacg_resource_type { - RDMACG_RESOURCE_HCA_HANDLE = 0, - RDMACG_RESOURCE_HCA_OBJECT = 1, - RDMACG_RESOURCE_MAX = 2, -}; - -struct rdma_cgroup { - struct cgroup_subsys_state css; - struct list_head rpools; -}; - -struct rdmacg_device { - struct list_head dev_node; - struct list_head rpools; - char *name; -}; - -enum rdmacg_file_type { - RDMACG_RESOURCE_TYPE_MAX = 0, - RDMACG_RESOURCE_TYPE_STAT = 1, -}; - -struct rdmacg_resource { - int max; - int usage; -}; - -struct rdmacg_resource_pool { - struct rdmacg_device *device; - struct rdmacg_resource resources[2]; - struct list_head cg_node; - struct list_head dev_node; - u64 usage_sum; - int num_max_cnt; -}; - -struct audit_tree { - refcount_t count; - int goner; - struct audit_chunk *root; - struct list_head chunks; - struct list_head rules; - struct list_head list; - struct list_head same_root; - struct callback_head head; - char pathname[0]; -}; - -struct audit_node { - struct list_head list; - struct audit_tree *owner; - unsigned int index; -}; - -struct audit_chunk { - struct list_head hash; - long unsigned int key; - struct fsnotify_mark *mark; - struct list_head trees; - int count; - atomic_long_t refs; - struct callback_head head; - struct audit_node owners[0]; -}; - -struct audit_tree_mark { - struct fsnotify_mark mark; - struct audit_chunk *chunk; -}; - -enum { - HASH_SIZE = 128, -}; - -struct saved_cmdlines_buffer { - unsigned int map_pid_to_cmdline[32769]; - unsigned int *map_cmdline_to_pid; - unsigned int cmdline_num; - int cmdline_idx; - char saved_cmdlines[0]; -}; - -enum error_detector { - ERROR_DETECTOR_KFENCE = 0, - ERROR_DETECTOR_KASAN = 1, - ERROR_DETECTOR_WARN = 2, -}; - -struct trace_event_raw_error_report_template { - struct trace_entry ent; - enum error_detector error_detector; - long unsigned int id; - char __data[0]; -}; - -struct trace_event_data_offsets_error_report_template {}; - -typedef void (*btf_trace_error_report_end)(void *, enum error_detector, long unsigned int); - -struct bpf_lru_node { - struct list_head list; - u16 cpu; - u8 type; - u8 ref; -}; - -struct bpf_lru_list { - struct list_head lists[3]; - unsigned int counts[2]; - struct list_head *next_inactive_rotation; - raw_spinlock_t lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct bpf_lru_locallist { - struct list_head lists[2]; - u16 next_steal; - raw_spinlock_t lock; -}; - -struct bpf_common_lru { - struct bpf_lru_list lru_list; - struct bpf_lru_locallist *local_list; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -typedef bool (*del_from_htab_func)(void *, struct bpf_lru_node *); - -struct bpf_lru { - union { - struct bpf_common_lru common_lru; - struct bpf_lru_list *percpu_lru; - }; - del_from_htab_func del_from_htab; - void *del_arg; - unsigned int hash_offset; - unsigned int target_free; - unsigned int nr_scans; - bool percpu; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct bucket { - struct hlist_nulls_head head; - raw_spinlock_t raw_lock; -}; - -struct htab_elem; - -struct bpf_htab { - struct bpf_map map; - struct bpf_mem_alloc ma; - struct bpf_mem_alloc pcpu_ma; - struct bucket *buckets; - void *elems; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - union { - struct pcpu_freelist freelist; - struct bpf_lru lru; - }; - struct htab_elem **extra_elems; - struct percpu_counter pcount; - atomic_t count; - bool use_percpu_counter; - u32 n_buckets; - u32 elem_size; - u32 hashrnd; - struct lock_class_key lockdep_key; - int *map_locked[8]; - long: 64; -}; - -struct htab_elem { - union { - struct hlist_nulls_node hash_node; - struct { - void *padding; - union { - struct pcpu_freelist_node fnode; - struct htab_elem *batch_flink; - }; - }; - }; - union { - void *ptr_to_pptr; - struct bpf_lru_node lru_node; - }; - u32 hash; - long: 0; - char key[0]; -}; - -struct bpf_iter_seq_hash_map_info { - struct bpf_map *map; - struct bpf_htab *htab; - void *percpu_value_buf; - u32 bucket_id; - u32 skip_elems; -}; - -enum bpf_cmd { - BPF_MAP_CREATE = 0, - BPF_MAP_LOOKUP_ELEM = 1, - BPF_MAP_UPDATE_ELEM = 2, - BPF_MAP_DELETE_ELEM = 3, - BPF_MAP_GET_NEXT_KEY = 4, - BPF_PROG_LOAD = 5, - BPF_OBJ_PIN = 6, - BPF_OBJ_GET = 7, - BPF_PROG_ATTACH = 8, - BPF_PROG_DETACH = 9, - BPF_PROG_TEST_RUN = 10, - BPF_PROG_RUN = 10, - BPF_PROG_GET_NEXT_ID = 11, - BPF_MAP_GET_NEXT_ID = 12, - BPF_PROG_GET_FD_BY_ID = 13, - BPF_MAP_GET_FD_BY_ID = 14, - BPF_OBJ_GET_INFO_BY_FD = 15, - BPF_PROG_QUERY = 16, - BPF_RAW_TRACEPOINT_OPEN = 17, - BPF_BTF_LOAD = 18, - BPF_BTF_GET_FD_BY_ID = 19, - BPF_TASK_FD_QUERY = 20, - BPF_MAP_LOOKUP_AND_DELETE_ELEM = 21, - BPF_MAP_FREEZE = 22, - BPF_BTF_GET_NEXT_ID = 23, - BPF_MAP_LOOKUP_BATCH = 24, - BPF_MAP_LOOKUP_AND_DELETE_BATCH = 25, - BPF_MAP_UPDATE_BATCH = 26, - BPF_MAP_DELETE_BATCH = 27, - BPF_LINK_CREATE = 28, - BPF_LINK_UPDATE = 29, - BPF_LINK_GET_FD_BY_ID = 30, - BPF_LINK_GET_NEXT_ID = 31, - BPF_ENABLE_STATS = 32, - BPF_ITER_CREATE = 33, - BPF_LINK_DETACH = 34, - BPF_PROG_BIND_MAP = 35, - BPF_TOKEN_CREATE = 36, - __MAX_BPF_CMD = 37, -}; - -enum { - BPF_F_BPRM_SECUREEXEC = 1, -}; - -struct sembuf { - short unsigned int sem_num; - short int sem_op; - short int sem_flg; -}; - -struct lsm_ctx { - __u64 id; - __u64 flags; - __u64 len; - __u64 ctx_len; - __u8 ctx[0]; -}; - -enum lsm_integrity_type { - LSM_INT_DMVERITY_SIG_VALID = 0, - LSM_INT_DMVERITY_ROOTHASH = 1, - LSM_INT_FSVERITY_BUILTINSIG_VALID = 2, -}; - -enum kernel_load_data_id { - LOADING_UNKNOWN = 0, - LOADING_FIRMWARE = 1, - LOADING_MODULE = 2, - LOADING_KEXEC_IMAGE = 3, - LOADING_KEXEC_INITRAMFS = 4, - LOADING_POLICY = 5, - LOADING_X509_CERTIFICATE = 6, - LOADING_MAX_ID = 7, -}; - -typedef u64 (*btf_bpf_bprm_opts_set)(struct linux_binprm *, u64); - -typedef u64 (*btf_bpf_ima_inode_hash)(struct inode *, void *, u32); - -typedef u64 (*btf_bpf_ima_file_hash)(struct file *, void *, u32); - -typedef u64 (*btf_bpf_get_attach_cookie)(void *); - -enum pgt_entry { - NORMAL_PMD = 0, - HPAGE_PMD = 1, - NORMAL_PUD = 2, - HPAGE_PUD = 3, -}; - -struct swap_cgroup_ctrl { - struct page **map; - long unsigned int length; - spinlock_t lock; -}; - -struct swap_cgroup { - short unsigned int id; -}; - -struct page_reporting_dev_info { - int (*report)(struct page_reporting_dev_info *, struct scatterlist *, unsigned int); - struct delayed_work work; - atomic_t state; - unsigned int order; -}; - -enum { - PAGE_REPORTING_IDLE = 0, - PAGE_REPORTING_REQUESTED = 1, - PAGE_REPORTING_ACTIVE = 2, -}; - -struct f_owner_ex { - int type; - __kernel_pid_t pid; -}; - -typedef struct fd class_fd_raw_t; - -struct fd_range { - unsigned int from; - unsigned int to; -}; - -struct fanotify_event_metadata { - __u32 event_len; - __u8 vers; - __u8 reserved; - __u16 metadata_len; - __u64 mask; - __s32 fd; - __s32 pid; -}; - -struct fanotify_event_info_header { - __u8 info_type; - __u8 pad; - __u16 len; -}; - -struct fanotify_event_info_fid { - struct fanotify_event_info_header hdr; - __kernel_fsid_t fsid; - unsigned char handle[0]; -}; - -struct fanotify_event_info_pidfd { - struct fanotify_event_info_header hdr; - __s32 pidfd; -}; - -struct fanotify_event_info_error { - struct fanotify_event_info_header hdr; - __s32 error; - __u32 error_count; -}; - -struct fanotify_response { - __s32 fd; - __u32 response; -}; - -struct file_handle { - __u32 handle_bytes; - int handle_type; - unsigned char f_handle[0]; -}; - -enum { - FAN_EVENT_INIT = 0, - FAN_EVENT_REPORTED = 1, - FAN_EVENT_ANSWERED = 2, - FAN_EVENT_CANCELED = 3, -}; - -struct fanotify_fh { - u8 type; - u8 len; - u8 flags; - u8 pad; - unsigned char buf[0]; -}; - -struct fanotify_info { - u8 dir_fh_totlen; - u8 dir2_fh_totlen; - u8 file_fh_totlen; - u8 name_len; - u8 name2_len; - u8 pad[3]; - unsigned char buf[0]; -}; - -enum fanotify_event_type { - FANOTIFY_EVENT_TYPE_FID = 0, - FANOTIFY_EVENT_TYPE_FID_NAME = 1, - FANOTIFY_EVENT_TYPE_PATH = 2, - FANOTIFY_EVENT_TYPE_PATH_PERM = 3, - FANOTIFY_EVENT_TYPE_OVERFLOW = 4, - FANOTIFY_EVENT_TYPE_FS_ERROR = 5, - __FANOTIFY_EVENT_TYPE_NUM = 6, -}; - -struct fanotify_event { - struct fsnotify_event fse; - struct hlist_node merge_list; - u32 mask; - struct { - unsigned int type: 3; - unsigned int hash: 29; - }; - struct pid *pid; -}; - -struct fanotify_fid_event { - struct fanotify_event fae; - __kernel_fsid_t fsid; - struct { - struct fanotify_fh object_fh; - unsigned char _inline_fh_buf[12]; - }; -}; - -struct fanotify_name_event { - struct fanotify_event fae; - __kernel_fsid_t fsid; - struct fanotify_info info; -}; - -struct fanotify_error_event { - struct fanotify_event fae; - s32 error; - u32 err_count; - __kernel_fsid_t fsid; - struct { - struct fanotify_fh object_fh; - unsigned char _inline_fh_buf[128]; - }; -}; - -struct fanotify_path_event { - struct fanotify_event fae; - struct path path; -}; - -struct fanotify_perm_event { - struct fanotify_event fae; - struct path path; - u32 response; - short unsigned int state; - int fd; - union { - struct fanotify_response_info_header hdr; - struct fanotify_response_info_audit_rule audit_rule; - }; -}; - -struct fanotify_mark { - struct fsnotify_mark fsn_mark; - __kernel_fsid_t fsid; -}; - -struct fan_fsid { - struct super_block *sb; - __kernel_fsid_t id; - bool weak; -}; - -struct nfs4_ssc_client_ops; - -struct nfs_ssc_client_ops_tbl { - const struct nfs4_ssc_client_ops *ssc_nfs4_ops; - const struct nfs_ssc_client_ops *ssc_nfs_ops; -}; - -struct nfs4_ssc_client_ops { - struct file * (*sco_open)(struct vfsmount *, struct nfs_fh *, nfs4_stateid *); - void (*sco_close)(struct file *); -}; - -struct elf64_phdr { - Elf64_Word p_type; - Elf64_Word p_flags; - Elf64_Off p_offset; - Elf64_Addr p_vaddr; - Elf64_Addr p_paddr; - Elf64_Xword p_filesz; - Elf64_Xword p_memsz; - Elf64_Xword p_align; -}; - -struct elf64_note { - Elf64_Word n_namesz; - Elf64_Word n_descsz; - Elf64_Word n_type; -}; - -typedef long unsigned int elf_greg_t; - -typedef elf_greg_t elf_gregset_t[34]; - -struct elf_siginfo { - int si_signo; - int si_code; - int si_errno; -}; - -struct elf_prstatus_common { - struct elf_siginfo pr_info; - short int pr_cursig; - long unsigned int pr_sigpend; - long unsigned int pr_sighold; - pid_t pr_pid; - pid_t pr_ppid; - pid_t pr_pgrp; - pid_t pr_sid; - struct __kernel_old_timeval pr_utime; - struct __kernel_old_timeval pr_stime; - struct __kernel_old_timeval pr_cutime; - struct __kernel_old_timeval pr_cstime; -}; - -struct elf_prstatus { - struct elf_prstatus_common common; - elf_gregset_t pr_reg; - int pr_fpvalid; -}; - -struct elf_prpsinfo { - char pr_state; - char pr_sname; - char pr_zomb; - char pr_nice; - long unsigned int pr_flag; - __kernel_uid_t pr_uid; - __kernel_gid_t pr_gid; - pid_t pr_pid; - pid_t pr_ppid; - pid_t pr_pgrp; - pid_t pr_sid; - char pr_fname[16]; - char pr_psargs[80]; -}; - -enum kcore_type { - KCORE_TEXT = 0, - KCORE_VMALLOC = 1, - KCORE_RAM = 2, - KCORE_VMEMMAP = 3, - KCORE_USER = 4, -}; - -struct kcore_list { - struct list_head list; - long unsigned int addr; - size_t size; - int type; -}; - -struct configfs_buffer { - size_t count; - loff_t pos; - char *page; - struct configfs_item_operations *ops; - struct mutex mutex; - int needs_read_fill; - bool read_in_progress; - bool write_in_progress; - char *bin_buffer; - int bin_buffer_size; - int cb_max_size; - struct config_item *item; - struct module *owner; - union { - struct configfs_attribute *attr; - struct configfs_bin_attribute *bin_attr; - }; -}; - -typedef short unsigned int __kernel_uid16_t; - -typedef short unsigned int __kernel_gid16_t; - -typedef __kernel_uid16_t uid16_t; - -typedef __kernel_gid16_t gid16_t; - -struct ext4_io_end_vec { - struct list_head list; - loff_t offset; - ssize_t size; -}; - -struct ext4_io_end { - struct list_head list; - handle_t *handle; - struct inode *inode; - struct bio *bio; - unsigned int flag; - refcount_t count; - struct list_head list_vec; -}; - -typedef struct ext4_io_end ext4_io_end_t; - -struct ext4_io_submit { - struct writeback_control *io_wbc; - struct bio *io_bio; - ext4_io_end_t *io_end; - sector_t io_next_block; -}; - -struct ext4_xattr_ibody_header { - __le32 h_magic; -}; - -struct ext4_xattr_inode_array { - unsigned int count; - struct inode *inodes[0]; -}; - -struct mpage_da_data { - struct inode *inode; - struct writeback_control *wbc; - unsigned int can_map: 1; - long unsigned int first_page; - long unsigned int next_page; - long unsigned int last_page; - struct ext4_map_blocks map; - struct ext4_io_submit io_submit; - unsigned int do_map: 1; - unsigned int scanned_until_end: 1; - unsigned int journalled_more_data: 1; -}; - -typedef struct { - __le16 e_tag; - __le16 e_perm; - __le32 e_id; -} ext4_acl_entry; - -typedef struct { - __le32 a_version; -} ext4_acl_header; - -struct ramfs_mount_opts { - umode_t mode; -}; - -struct ramfs_fs_info { - struct ramfs_mount_opts mount_opts; -}; - -enum ramfs_param { - Opt_mode___5 = 0, -}; - -struct iso_inode_info { - long unsigned int i_iget5_block; - long unsigned int i_iget5_offset; - unsigned int i_first_extent; - unsigned char i_file_format; - unsigned char i_format_parm[3]; - long unsigned int i_next_section_block; - long unsigned int i_next_section_offset; - off_t i_section_size; - struct inode vfs_inode; -}; - -struct nfs_page_iter_page { - const struct nfs_page *req; - size_t count; -}; - -struct nfs4_setclientid_res { - u64 clientid; - nfs4_verifier confirm; -}; - -enum { - NFS_OWNER_RECLAIM_REBOOT = 0, - NFS_OWNER_RECLAIM_NOGRACE = 1, -}; - -struct trace_event_raw_smb3_rw_err_class { - struct trace_entry ent; - unsigned int rreq_debug_id; - unsigned int rreq_debug_index; - unsigned int xid; - __u64 fid; - __u32 tid; - __u64 sesid; - __u64 offset; - __u32 len; - int rc; - char __data[0]; -}; - -struct trace_event_raw_smb3_other_err_class { - struct trace_entry ent; - unsigned int xid; - __u64 fid; - __u32 tid; - __u64 sesid; - __u64 offset; - __u32 len; - int rc; - char __data[0]; -}; - -struct trace_event_raw_smb3_copy_range_err_class { - struct trace_entry ent; - unsigned int xid; - __u64 src_fid; - __u64 target_fid; - __u32 tid; - __u64 sesid; - __u64 src_offset; - __u64 target_offset; - __u32 len; - int rc; - char __data[0]; -}; - -struct trace_event_raw_smb3_copy_range_done_class { - struct trace_entry ent; - unsigned int xid; - __u64 src_fid; - __u64 target_fid; - __u32 tid; - __u64 sesid; - __u64 src_offset; - __u64 target_offset; - __u32 len; - char __data[0]; -}; - -struct trace_event_raw_smb3_rw_done_class { - struct trace_entry ent; - unsigned int rreq_debug_id; - unsigned int rreq_debug_index; - unsigned int xid; - __u64 fid; - __u32 tid; - __u64 sesid; - __u64 offset; - __u32 len; - char __data[0]; -}; - -struct trace_event_raw_smb3_other_done_class { - struct trace_entry ent; - unsigned int xid; - __u64 fid; - __u32 tid; - __u64 sesid; - __u64 offset; - __u32 len; - char __data[0]; -}; - -struct trace_event_raw_smb3_eof_class { - struct trace_entry ent; - unsigned int xid; - __u64 fid; - __u32 tid; - __u64 sesid; - __u64 offset; - char __data[0]; -}; - -struct trace_event_raw_smb3_fd_class { - struct trace_entry ent; - unsigned int xid; - __u64 fid; - __u32 tid; - __u64 sesid; - char __data[0]; -}; - -struct trace_event_raw_smb3_fd_err_class { - struct trace_entry ent; - unsigned int xid; - __u64 fid; - __u32 tid; - __u64 sesid; - int rc; - char __data[0]; -}; - -struct trace_event_raw_smb3_inf_enter_class { - struct trace_entry ent; - unsigned int xid; - __u64 fid; - __u32 tid; - __u64 sesid; - __u8 infclass; - __u32 type; - char __data[0]; -}; - -struct trace_event_raw_smb3_inf_err_class { - struct trace_entry ent; - unsigned int xid; - __u64 fid; - __u32 tid; - __u64 sesid; - __u8 infclass; - __u32 type; - int rc; - char __data[0]; -}; - -struct trace_event_raw_smb3_inf_compound_enter_class { - struct trace_entry ent; - unsigned int xid; - __u32 tid; - __u64 sesid; - u32 __data_loc_path; - char __data[0]; -}; - -struct trace_event_raw_smb3_inf_compound_done_class { - struct trace_entry ent; - unsigned int xid; - __u32 tid; - __u64 sesid; - char __data[0]; -}; - -struct trace_event_raw_smb3_inf_compound_err_class { - struct trace_entry ent; - unsigned int xid; - __u32 tid; - __u64 sesid; - int rc; - char __data[0]; -}; - -struct trace_event_raw_smb3_cmd_err_class { - struct trace_entry ent; - __u32 tid; - __u64 sesid; - __u16 cmd; - __u64 mid; - __u32 status; - int rc; - char __data[0]; -}; - -struct trace_event_raw_smb3_cmd_done_class { - struct trace_entry ent; - __u32 tid; - __u64 sesid; - __u16 cmd; - __u64 mid; - char __data[0]; -}; - -struct trace_event_raw_smb3_mid_class { - struct trace_entry ent; - __u16 cmd; - __u64 mid; - __u32 pid; - long unsigned int when_sent; - long unsigned int when_received; - char __data[0]; -}; - -struct trace_event_raw_smb3_exit_err_class { - struct trace_entry ent; - unsigned int xid; - u32 __data_loc_func_name; - int rc; - char __data[0]; -}; - -struct trace_event_raw_smb3_sync_err_class { - struct trace_entry ent; - long unsigned int ino; - int rc; - char __data[0]; -}; - -struct trace_event_raw_smb3_enter_exit_class { - struct trace_entry ent; - unsigned int xid; - u32 __data_loc_func_name; - char __data[0]; -}; - -struct trace_event_raw_smb3_tcon_class { - struct trace_entry ent; - unsigned int xid; - __u32 tid; - __u64 sesid; - u32 __data_loc_name; - int rc; - char __data[0]; -}; - -struct trace_event_raw_smb3_open_enter_class { - struct trace_entry ent; - unsigned int xid; - __u32 tid; - __u64 sesid; - u32 __data_loc_path; - int create_options; - int desired_access; - char __data[0]; -}; - -struct trace_event_raw_smb3_open_err_class { - struct trace_entry ent; - unsigned int xid; - __u32 tid; - __u64 sesid; - int create_options; - int desired_access; - int rc; - char __data[0]; -}; - -struct trace_event_raw_smb3_open_done_class { - struct trace_entry ent; - unsigned int xid; - __u64 fid; - __u32 tid; - __u64 sesid; - int create_options; - int desired_access; - char __data[0]; -}; - -struct trace_event_raw_smb3_lease_done_class { - struct trace_entry ent; - __u32 lease_state; - __u32 tid; - __u64 sesid; - __u64 lease_key_low; - __u64 lease_key_high; - char __data[0]; -}; - -struct trace_event_raw_smb3_lease_err_class { - struct trace_entry ent; - __u32 lease_state; - __u32 tid; - __u64 sesid; - __u64 lease_key_low; - __u64 lease_key_high; - int rc; - char __data[0]; -}; - -struct trace_event_raw_smb3_connect_class { - struct trace_entry ent; - u32 __data_loc_hostname; - __u64 conn_id; - __u8 dst_addr[128]; - char __data[0]; -}; - -struct trace_event_raw_smb3_connect_err_class { - struct trace_entry ent; - u32 __data_loc_hostname; - __u64 conn_id; - __u8 dst_addr[128]; - int rc; - char __data[0]; -}; - -struct trace_event_raw_smb3_sess_setup_err_class { - struct trace_entry ent; - u32 __data_loc_hostname; - u32 __data_loc_username; - __u64 conn_id; - __u8 dst_addr[128]; - int rc; - char __data[0]; -}; - -struct trace_event_raw_smb3_reconnect_class { - struct trace_entry ent; - __u64 currmid; - __u64 conn_id; - u32 __data_loc_hostname; - char __data[0]; -}; - -struct trace_event_raw_smb3_ses_class { - struct trace_entry ent; - __u64 sesid; - char __data[0]; -}; - -struct trace_event_raw_smb3_ioctl_class { - struct trace_entry ent; - unsigned int xid; - __u64 fid; - unsigned int command; - char __data[0]; -}; - -struct trace_event_raw_smb3_shutdown_class { - struct trace_entry ent; - __u32 flags; - __u32 tid; - char __data[0]; -}; - -struct trace_event_raw_smb3_shutdown_err_class { - struct trace_entry ent; - int rc; - __u32 flags; - __u32 tid; - char __data[0]; -}; - -struct trace_event_raw_smb3_credit_class { - struct trace_entry ent; - __u64 currmid; - __u64 conn_id; - u32 __data_loc_hostname; - int credits; - int credits_to_add; - int in_flight; - char __data[0]; -}; - -struct trace_event_raw_smb3_tcon_ref { - struct trace_entry ent; - unsigned int tcon; - int ref; - enum smb3_tcon_ref_trace trace; - char __data[0]; -}; - -struct trace_event_raw_smb3_rw_credits { - struct trace_entry ent; - unsigned int rreq_debug_id; - unsigned int subreq_debug_index; - unsigned int subreq_credits; - unsigned int server_credits; - int in_flight; - int credit_change; - enum smb3_rw_credits_trace trace; - char __data[0]; -}; - -struct trace_event_data_offsets_smb3_rw_err_class {}; - -struct trace_event_data_offsets_smb3_other_err_class {}; - -struct trace_event_data_offsets_smb3_copy_range_err_class {}; - -struct trace_event_data_offsets_smb3_copy_range_done_class {}; - -struct trace_event_data_offsets_smb3_rw_done_class {}; - -struct trace_event_data_offsets_smb3_other_done_class {}; - -struct trace_event_data_offsets_smb3_eof_class {}; - -struct trace_event_data_offsets_smb3_fd_class {}; - -struct trace_event_data_offsets_smb3_fd_err_class {}; - -struct trace_event_data_offsets_smb3_inf_enter_class {}; - -struct trace_event_data_offsets_smb3_inf_err_class {}; - -struct trace_event_data_offsets_smb3_inf_compound_enter_class { - u32 path; - const void *path_ptr_; -}; - -struct trace_event_data_offsets_smb3_inf_compound_done_class {}; - -struct trace_event_data_offsets_smb3_inf_compound_err_class {}; - -struct trace_event_data_offsets_smb3_cmd_err_class {}; - -struct trace_event_data_offsets_smb3_cmd_done_class {}; - -struct trace_event_data_offsets_smb3_mid_class {}; - -struct trace_event_data_offsets_smb3_exit_err_class { - u32 func_name; - const void *func_name_ptr_; -}; - -struct trace_event_data_offsets_smb3_sync_err_class {}; - -struct trace_event_data_offsets_smb3_enter_exit_class { - u32 func_name; - const void *func_name_ptr_; -}; - -struct trace_event_data_offsets_smb3_tcon_class { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_smb3_open_enter_class { - u32 path; - const void *path_ptr_; -}; - -struct trace_event_data_offsets_smb3_open_err_class {}; - -struct trace_event_data_offsets_smb3_open_done_class {}; - -struct trace_event_data_offsets_smb3_lease_done_class {}; - -struct trace_event_data_offsets_smb3_lease_err_class {}; - -struct trace_event_data_offsets_smb3_connect_class { - u32 hostname; - const void *hostname_ptr_; -}; - -struct trace_event_data_offsets_smb3_connect_err_class { - u32 hostname; - const void *hostname_ptr_; -}; - -struct trace_event_data_offsets_smb3_sess_setup_err_class { - u32 hostname; - const void *hostname_ptr_; - u32 username; - const void *username_ptr_; -}; - -struct trace_event_data_offsets_smb3_reconnect_class { - u32 hostname; - const void *hostname_ptr_; -}; - -struct trace_event_data_offsets_smb3_ses_class {}; - -struct trace_event_data_offsets_smb3_ioctl_class {}; - -struct trace_event_data_offsets_smb3_shutdown_class {}; - -struct trace_event_data_offsets_smb3_shutdown_err_class {}; - -struct trace_event_data_offsets_smb3_credit_class { - u32 hostname; - const void *hostname_ptr_; -}; - -struct trace_event_data_offsets_smb3_tcon_ref {}; - -struct trace_event_data_offsets_smb3_rw_credits {}; - -typedef void (*btf_trace_smb3_read_err)(void *, unsigned int, unsigned int, unsigned int, __u64, __u32, __u64, __u64, __u32, int); - -typedef void (*btf_trace_smb3_write_err)(void *, unsigned int, unsigned int, unsigned int, __u64, __u32, __u64, __u64, __u32, int); - -typedef void (*btf_trace_smb3_query_dir_err)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32, int); - -typedef void (*btf_trace_smb3_zero_err)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32, int); - -typedef void (*btf_trace_smb3_falloc_err)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32, int); - -typedef void (*btf_trace_smb3_clone_err)(void *, unsigned int, __u64, __u64, __u32, __u64, __u64, __u64, __u32, int); - -typedef void (*btf_trace_smb3_copychunk_enter)(void *, unsigned int, __u64, __u64, __u32, __u64, __u64, __u64, __u32); - -typedef void (*btf_trace_smb3_clone_enter)(void *, unsigned int, __u64, __u64, __u32, __u64, __u64, __u64, __u32); - -typedef void (*btf_trace_smb3_copychunk_done)(void *, unsigned int, __u64, __u64, __u32, __u64, __u64, __u64, __u32); - -typedef void (*btf_trace_smb3_clone_done)(void *, unsigned int, __u64, __u64, __u32, __u64, __u64, __u64, __u32); - -typedef void (*btf_trace_smb3_read_enter)(void *, unsigned int, unsigned int, unsigned int, __u64, __u32, __u64, __u64, __u32); - -typedef void (*btf_trace_smb3_read_done)(void *, unsigned int, unsigned int, unsigned int, __u64, __u32, __u64, __u64, __u32); - -typedef void (*btf_trace_smb3_write_enter)(void *, unsigned int, unsigned int, unsigned int, __u64, __u32, __u64, __u64, __u32); - -typedef void (*btf_trace_smb3_write_done)(void *, unsigned int, unsigned int, unsigned int, __u64, __u32, __u64, __u64, __u32); - -typedef void (*btf_trace_smb3_query_dir_enter)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32); - -typedef void (*btf_trace_smb3_zero_enter)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32); - -typedef void (*btf_trace_smb3_falloc_enter)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32); - -typedef void (*btf_trace_smb3_query_dir_done)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32); - -typedef void (*btf_trace_smb3_zero_done)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32); - -typedef void (*btf_trace_smb3_falloc_done)(void *, unsigned int, __u64, __u32, __u64, __u64, __u32); - -typedef void (*btf_trace_smb3_set_eof)(void *, unsigned int, __u64, __u32, __u64, __u64); - -typedef void (*btf_trace_smb3_flush_enter)(void *, unsigned int, __u64, __u32, __u64); - -typedef void (*btf_trace_smb3_flush_done)(void *, unsigned int, __u64, __u32, __u64); - -typedef void (*btf_trace_smb3_close_enter)(void *, unsigned int, __u64, __u32, __u64); - -typedef void (*btf_trace_smb3_close_done)(void *, unsigned int, __u64, __u32, __u64); - -typedef void (*btf_trace_smb3_oplock_not_found)(void *, unsigned int, __u64, __u32, __u64); - -typedef void (*btf_trace_smb3_flush_err)(void *, unsigned int, __u64, __u32, __u64, int); - -typedef void (*btf_trace_smb3_lock_err)(void *, unsigned int, __u64, __u32, __u64, int); - -typedef void (*btf_trace_smb3_close_err)(void *, unsigned int, __u64, __u32, __u64, int); - -typedef void (*btf_trace_smb3_query_info_enter)(void *, unsigned int, __u64, __u32, __u64, __u8, __u32); - -typedef void (*btf_trace_smb3_query_info_done)(void *, unsigned int, __u64, __u32, __u64, __u8, __u32); - -typedef void (*btf_trace_smb3_notify_enter)(void *, unsigned int, __u64, __u32, __u64, __u8, __u32); - -typedef void (*btf_trace_smb3_notify_done)(void *, unsigned int, __u64, __u32, __u64, __u8, __u32); - -typedef void (*btf_trace_smb3_query_info_err)(void *, unsigned int, __u64, __u32, __u64, __u8, __u32, int); - -typedef void (*btf_trace_smb3_set_info_err)(void *, unsigned int, __u64, __u32, __u64, __u8, __u32, int); - -typedef void (*btf_trace_smb3_notify_err)(void *, unsigned int, __u64, __u32, __u64, __u8, __u32, int); - -typedef void (*btf_trace_smb3_fsctl_err)(void *, unsigned int, __u64, __u32, __u64, __u8, __u32, int); - -typedef void (*btf_trace_smb3_query_info_compound_enter)(void *, unsigned int, __u32, __u64, const char *); - -typedef void (*btf_trace_smb3_posix_query_info_compound_enter)(void *, unsigned int, __u32, __u64, const char *); - -typedef void (*btf_trace_smb3_hardlink_enter)(void *, unsigned int, __u32, __u64, const char *); - -typedef void (*btf_trace_smb3_rename_enter)(void *, unsigned int, __u32, __u64, const char *); - -typedef void (*btf_trace_smb3_rmdir_enter)(void *, unsigned int, __u32, __u64, const char *); - -typedef void (*btf_trace_smb3_set_eof_enter)(void *, unsigned int, __u32, __u64, const char *); - -typedef void (*btf_trace_smb3_set_info_compound_enter)(void *, unsigned int, __u32, __u64, const char *); - -typedef void (*btf_trace_smb3_set_reparse_compound_enter)(void *, unsigned int, __u32, __u64, const char *); - -typedef void (*btf_trace_smb3_get_reparse_compound_enter)(void *, unsigned int, __u32, __u64, const char *); - -typedef void (*btf_trace_smb3_delete_enter)(void *, unsigned int, __u32, __u64, const char *); - -typedef void (*btf_trace_smb3_mkdir_enter)(void *, unsigned int, __u32, __u64, const char *); - -typedef void (*btf_trace_smb3_tdis_enter)(void *, unsigned int, __u32, __u64, const char *); - -typedef void (*btf_trace_smb3_mknod_enter)(void *, unsigned int, __u32, __u64, const char *); - -typedef void (*btf_trace_smb3_query_info_compound_done)(void *, unsigned int, __u32, __u64); - -typedef void (*btf_trace_smb3_posix_query_info_compound_done)(void *, unsigned int, __u32, __u64); - -typedef void (*btf_trace_smb3_hardlink_done)(void *, unsigned int, __u32, __u64); - -typedef void (*btf_trace_smb3_rename_done)(void *, unsigned int, __u32, __u64); - -typedef void (*btf_trace_smb3_rmdir_done)(void *, unsigned int, __u32, __u64); - -typedef void (*btf_trace_smb3_set_eof_done)(void *, unsigned int, __u32, __u64); - -typedef void (*btf_trace_smb3_set_info_compound_done)(void *, unsigned int, __u32, __u64); - -typedef void (*btf_trace_smb3_set_reparse_compound_done)(void *, unsigned int, __u32, __u64); - -typedef void (*btf_trace_smb3_get_reparse_compound_done)(void *, unsigned int, __u32, __u64); - -typedef void (*btf_trace_smb3_query_wsl_ea_compound_done)(void *, unsigned int, __u32, __u64); - -typedef void (*btf_trace_smb3_delete_done)(void *, unsigned int, __u32, __u64); - -typedef void (*btf_trace_smb3_mkdir_done)(void *, unsigned int, __u32, __u64); - -typedef void (*btf_trace_smb3_tdis_done)(void *, unsigned int, __u32, __u64); - -typedef void (*btf_trace_smb3_mknod_done)(void *, unsigned int, __u32, __u64); - -typedef void (*btf_trace_smb3_query_info_compound_err)(void *, unsigned int, __u32, __u64, int); - -typedef void (*btf_trace_smb3_posix_query_info_compound_err)(void *, unsigned int, __u32, __u64, int); - -typedef void (*btf_trace_smb3_hardlink_err)(void *, unsigned int, __u32, __u64, int); - -typedef void (*btf_trace_smb3_rename_err)(void *, unsigned int, __u32, __u64, int); - -typedef void (*btf_trace_smb3_rmdir_err)(void *, unsigned int, __u32, __u64, int); - -typedef void (*btf_trace_smb3_set_eof_err)(void *, unsigned int, __u32, __u64, int); - -typedef void (*btf_trace_smb3_set_info_compound_err)(void *, unsigned int, __u32, __u64, int); - -typedef void (*btf_trace_smb3_set_reparse_compound_err)(void *, unsigned int, __u32, __u64, int); - -typedef void (*btf_trace_smb3_get_reparse_compound_err)(void *, unsigned int, __u32, __u64, int); - -typedef void (*btf_trace_smb3_query_wsl_ea_compound_err)(void *, unsigned int, __u32, __u64, int); - -typedef void (*btf_trace_smb3_mkdir_err)(void *, unsigned int, __u32, __u64, int); - -typedef void (*btf_trace_smb3_delete_err)(void *, unsigned int, __u32, __u64, int); - -typedef void (*btf_trace_smb3_tdis_err)(void *, unsigned int, __u32, __u64, int); - -typedef void (*btf_trace_smb3_mknod_err)(void *, unsigned int, __u32, __u64, int); - -typedef void (*btf_trace_smb3_cmd_err)(void *, __u32, __u64, __u16, __u64, __u32, int); - -typedef void (*btf_trace_smb3_cmd_enter)(void *, __u32, __u64, __u16, __u64); - -typedef void (*btf_trace_smb3_cmd_done)(void *, __u32, __u64, __u16, __u64); - -typedef void (*btf_trace_smb3_ses_expired)(void *, __u32, __u64, __u16, __u64); - -typedef void (*btf_trace_smb3_slow_rsp)(void *, __u16, __u64, __u32, long unsigned int, long unsigned int); - -typedef void (*btf_trace_smb3_exit_err)(void *, unsigned int, const char *, int); - -typedef void (*btf_trace_cifs_fsync_err)(void *, long unsigned int, int); - -typedef void (*btf_trace_cifs_flush_err)(void *, long unsigned int, int); - -typedef void (*btf_trace_smb3_enter)(void *, unsigned int, const char *); - -typedef void (*btf_trace_smb3_exit_done)(void *, unsigned int, const char *); - -typedef void (*btf_trace_smb3_tcon)(void *, unsigned int, __u32, __u64, const char *, int); - -typedef void (*btf_trace_smb3_qfs_done)(void *, unsigned int, __u32, __u64, const char *, int); - -typedef void (*btf_trace_smb3_open_enter)(void *, unsigned int, __u32, __u64, const char *, int, int); - -typedef void (*btf_trace_smb3_posix_mkdir_enter)(void *, unsigned int, __u32, __u64, const char *, int, int); - -typedef void (*btf_trace_smb3_open_err)(void *, unsigned int, __u32, __u64, int, int, int); - -typedef void (*btf_trace_smb3_posix_mkdir_err)(void *, unsigned int, __u32, __u64, int, int, int); - -typedef void (*btf_trace_smb3_open_done)(void *, unsigned int, __u64, __u32, __u64, int, int); - -typedef void (*btf_trace_smb3_posix_mkdir_done)(void *, unsigned int, __u64, __u32, __u64, int, int); - -typedef void (*btf_trace_smb3_lease_done)(void *, __u32, __u32, __u64, __u64, __u64); - -typedef void (*btf_trace_smb3_lease_not_found)(void *, __u32, __u32, __u64, __u64, __u64); - -typedef void (*btf_trace_smb3_lease_err)(void *, __u32, __u32, __u64, __u64, __u64, int); - -typedef void (*btf_trace_smb3_connect_done)(void *, char *, __u64, const struct __kernel_sockaddr_storage *); - -typedef void (*btf_trace_smb3_smbd_connect_done)(void *, char *, __u64, const struct __kernel_sockaddr_storage *); - -typedef void (*btf_trace_smb3_smbd_connect_err)(void *, char *, __u64, const struct __kernel_sockaddr_storage *); - -typedef void (*btf_trace_smb3_connect_err)(void *, char *, __u64, const struct __kernel_sockaddr_storage *, int); - -typedef void (*btf_trace_smb3_key_expired)(void *, char *, char *, __u64, const struct __kernel_sockaddr_storage *, int); - -typedef void (*btf_trace_smb3_reconnect)(void *, __u64, __u64, char *); - -typedef void (*btf_trace_smb3_partial_send_reconnect)(void *, __u64, __u64, char *); - -typedef void (*btf_trace_smb3_ses_not_found)(void *, __u64); - -typedef void (*btf_trace_smb3_ioctl)(void *, unsigned int, __u64, unsigned int); - -typedef void (*btf_trace_smb3_shutdown_enter)(void *, __u32, __u32); - -typedef void (*btf_trace_smb3_shutdown_done)(void *, __u32, __u32); - -typedef void (*btf_trace_smb3_shutdown_err)(void *, int, __u32, __u32); - -typedef void (*btf_trace_smb3_reconnect_with_invalid_credits)(void *, __u64, __u64, char *, int, int, int); - -typedef void (*btf_trace_smb3_reconnect_detected)(void *, __u64, __u64, char *, int, int, int); - -typedef void (*btf_trace_smb3_credit_timeout)(void *, __u64, __u64, char *, int, int, int); - -typedef void (*btf_trace_smb3_insufficient_credits)(void *, __u64, __u64, char *, int, int, int); - -typedef void (*btf_trace_smb3_too_many_credits)(void *, __u64, __u64, char *, int, int, int); - -typedef void (*btf_trace_smb3_add_credits)(void *, __u64, __u64, char *, int, int, int); - -typedef void (*btf_trace_smb3_adj_credits)(void *, __u64, __u64, char *, int, int, int); - -typedef void (*btf_trace_smb3_hdr_credits)(void *, __u64, __u64, char *, int, int, int); - -typedef void (*btf_trace_smb3_nblk_credits)(void *, __u64, __u64, char *, int, int, int); - -typedef void (*btf_trace_smb3_pend_credits)(void *, __u64, __u64, char *, int, int, int); - -typedef void (*btf_trace_smb3_wait_credits)(void *, __u64, __u64, char *, int, int, int); - -typedef void (*btf_trace_smb3_waitff_credits)(void *, __u64, __u64, char *, int, int, int); - -typedef void (*btf_trace_smb3_overflow_credits)(void *, __u64, __u64, char *, int, int, int); - -typedef void (*btf_trace_smb3_set_credits)(void *, __u64, __u64, char *, int, int, int); - -typedef void (*btf_trace_smb3_tcon_ref)(void *, unsigned int, int, enum smb3_tcon_ref_trace); - -typedef void (*btf_trace_smb3_rw_credits)(void *, unsigned int, unsigned int, unsigned int, unsigned int, int, int, enum smb3_rw_credits_trace); - -struct lznt_hash { - const u8 *p1; - const u8 *p2; -}; - -struct lznt { - const u8 *unc; - const u8 *unc_end; - const u8 *best_match; - size_t max_len; - bool std; - struct lznt_hash hash[4096]; -}; - -struct le_str { - u8 len; - u8 unused; - __le16 name[0]; -}; - -struct indx_node { - struct ntfs_buffers nb; - struct INDEX_BUFFER *index; -}; - -struct ntfs_fnd { - int level; - struct indx_node *nodes[20]; - struct NTFS_DE *de[20]; - struct NTFS_DE *root_de; -}; - -struct ovl_cattr { - dev_t rdev; - umode_t mode; - const char *link; - struct dentry *hardlink; -}; - -typedef uint64_t xfs_rtxnum_t; - -typedef struct xfs_bmbt_irec xfs_bmbt_irec_t; - -typedef int (*xfs_btree_visit_blocks_fn)(struct xfs_btree_cur *, int, void *); - -typedef int (*xfs_bmap_query_range_fn)(struct xfs_btree_cur *, struct xfs_bmbt_irec *, void *); - -struct xfs_iread_state { - struct xfs_iext_cursor icur; - xfs_extnum_t loaded; -}; - -struct xfs_bmap_query_range { - xfs_bmap_query_range_fn fn; - void *priv; -}; - -typedef uint64_t xfs_ufsize_t; - -typedef void (*iomap_punch_t)(struct inode *, loff_t, loff_t, struct iomap *); - -struct xfs_trans_header { - uint th_magic; - uint th_type; - int32_t th_tid; - uint th_num_items; -}; - -struct xfs_ail_cursor { - struct list_head list; - struct xfs_log_item *item; -}; - -struct xlog_cil_pcp { - int32_t space_used; - uint32_t space_reserved; - struct list_head busy_extents; - struct list_head log_items; -}; - -enum _record_type { - _START_RECORD = 0, - _COMMIT_RECORD = 1, -}; - -struct xlog_cil_trans_hdr { - struct xlog_op_header oph[2]; - struct xfs_trans_header thdr; - struct xfs_log_iovec lhdr[2]; -}; - -typedef __u32 xfs_dev_t; - -typedef uint32_t xfs_aextnum_t; - -typedef struct xfs_log_iovec xfs_log_iovec_t; - -enum fscache_why_object_killed { - FSCACHE_OBJECT_IS_STALE = 0, - FSCACHE_OBJECT_IS_WEIRD = 1, - FSCACHE_OBJECT_INVALIDATED = 2, - FSCACHE_OBJECT_NO_SPACE = 3, - FSCACHE_OBJECT_WAS_RETIRED = 4, - FSCACHE_OBJECT_WAS_CULLED = 5, - FSCACHE_VOLUME_IS_WEIRD = 6, -}; - -enum { - WORK_DONE_BIT = 0, - WORK_ORDER_DONE_BIT = 1, -}; - -struct btrfs_qgroup_status_item { - __le64 version; - __le64 generation; - __le64 flags; - __le64 rescan; - __le64 enable_gen; -}; - -struct btrfs_qgroup_info_item { - __le64 generation; - __le64 rfer; - __le64 rfer_cmpr; - __le64 excl; - __le64 excl_cmpr; -}; - -struct btrfs_qgroup_limit_item { - __le64 flags; - __le64 max_rfer; - __le64 max_excl; - __le64 rsv_rfer; - __le64 rsv_excl; -}; - -struct btrfs_qgroup_swapped_block { - struct rb_node node; - int level; - bool trace_leaf; - u64 subvol_bytenr; - u64 subvol_generation; - u64 reloc_bytenr; - u64 reloc_generation; - u64 last_snapshot; - struct btrfs_key first_key; -}; - -struct btrfs_squota_delta { - u64 root; - u64 num_bytes; - u64 generation; - bool is_inc; - bool is_data; -}; - -enum { - __QGROUP_RESERVE_BIT = 0, - QGROUP_RESERVE = 1, - __QGROUP_RESERVE_SEQ = 0, - __QGROUP_RELEASE_BIT = 1, - QGROUP_RELEASE = 2, - __QGROUP_RELEASE_SEQ = 1, - __QGROUP_FREE_BIT = 2, - QGROUP_FREE = 4, - __QGROUP_FREE_SEQ = 2, -}; - -struct f2fs_gc_range { - __u32 sync; - __u64 start; - __u64 len; -}; - -struct f2fs_defragment { - __u64 start; - __u64 len; -}; - -struct f2fs_move_range { - __u32 dst_fd; - __u64 pos_in; - __u64 pos_out; - __u64 len; -}; - -struct f2fs_flush_device { - __u32 dev_num; - __u32 segments; -}; - -struct f2fs_sectrim_range { - __u64 start; - __u64 len; - __u64 flags; -}; - -struct f2fs_comp_option { - __u8 algorithm; - __u8 log_cluster_size; -}; - -struct vfs_cap_data { - __le32 magic_etc; - struct { - __le32 permitted; - __le32 inheritable; - } data[2]; -}; - -struct vfs_ns_cap_data { - __le32 magic_etc; - struct { - __le32 permitted; - __le32 inheritable; - } data[2]; - __le32 rootid; -}; - -struct lsm_id { - const char *name; - u64 id; -}; - -struct msg_msg; - -union security_list_options { - int (*binder_set_context_mgr)(const struct cred *); - int (*binder_transaction)(const struct cred *, const struct cred *); - int (*binder_transfer_binder)(const struct cred *, const struct cred *); - int (*binder_transfer_file)(const struct cred *, const struct cred *, const struct file *); - int (*ptrace_access_check)(struct task_struct *, unsigned int); - int (*ptrace_traceme)(struct task_struct *); - int (*capget)(const struct task_struct *, kernel_cap_t *, kernel_cap_t *, kernel_cap_t *); - int (*capset)(struct cred *, const struct cred *, const kernel_cap_t *, const kernel_cap_t *, const kernel_cap_t *); - int (*capable)(const struct cred *, struct user_namespace *, int, unsigned int); - int (*quotactl)(int, int, int, const struct super_block *); - int (*quota_on)(struct dentry *); - int (*syslog)(int); - int (*settime)(const struct timespec64 *, const struct timezone *); - int (*vm_enough_memory)(struct mm_struct *, long int); - int (*bprm_creds_for_exec)(struct linux_binprm *); - int (*bprm_creds_from_file)(struct linux_binprm *, const struct file *); - int (*bprm_check_security)(struct linux_binprm *); - void (*bprm_committing_creds)(const struct linux_binprm *); - void (*bprm_committed_creds)(const struct linux_binprm *); - int (*fs_context_submount)(struct fs_context *, struct super_block *); - int (*fs_context_dup)(struct fs_context *, struct fs_context *); - int (*fs_context_parse_param)(struct fs_context *, struct fs_parameter *); - int (*sb_alloc_security)(struct super_block *); - void (*sb_delete)(struct super_block *); - void (*sb_free_security)(struct super_block *); - void (*sb_free_mnt_opts)(void *); - int (*sb_eat_lsm_opts)(char *, void **); - int (*sb_mnt_opts_compat)(struct super_block *, void *); - int (*sb_remount)(struct super_block *, void *); - int (*sb_kern_mount)(const struct super_block *); - int (*sb_show_options)(struct seq_file *, struct super_block *); - int (*sb_statfs)(struct dentry *); - int (*sb_mount)(const char *, const struct path *, const char *, long unsigned int, void *); - int (*sb_umount)(struct vfsmount *, int); - int (*sb_pivotroot)(const struct path *, const struct path *); - int (*sb_set_mnt_opts)(struct super_block *, void *, long unsigned int, long unsigned int *); - int (*sb_clone_mnt_opts)(const struct super_block *, struct super_block *, long unsigned int, long unsigned int *); - int (*move_mount)(const struct path *, const struct path *); - int (*dentry_init_security)(struct dentry *, int, const struct qstr *, const char **, void **, u32 *); - int (*dentry_create_files_as)(struct dentry *, int, struct qstr *, const struct cred *, struct cred *); - int (*path_notify)(const struct path *, u64, unsigned int); - int (*inode_alloc_security)(struct inode *); - void (*inode_free_security)(struct inode *); - void (*inode_free_security_rcu)(void *); - int (*inode_init_security)(struct inode *, struct inode *, const struct qstr *, struct xattr *, int *); - int (*inode_init_security_anon)(struct inode *, const struct qstr *, const struct inode *); - int (*inode_create)(struct inode *, struct dentry *, umode_t); - void (*inode_post_create_tmpfile)(struct mnt_idmap *, struct inode *); - int (*inode_link)(struct dentry *, struct inode *, struct dentry *); - int (*inode_unlink)(struct inode *, struct dentry *); - int (*inode_symlink)(struct inode *, struct dentry *, const char *); - int (*inode_mkdir)(struct inode *, struct dentry *, umode_t); - int (*inode_rmdir)(struct inode *, struct dentry *); - int (*inode_mknod)(struct inode *, struct dentry *, umode_t, dev_t); - int (*inode_rename)(struct inode *, struct dentry *, struct inode *, struct dentry *); - int (*inode_readlink)(struct dentry *); - int (*inode_follow_link)(struct dentry *, struct inode *, bool); - int (*inode_permission)(struct inode *, int); - int (*inode_setattr)(struct mnt_idmap *, struct dentry *, struct iattr *); - void (*inode_post_setattr)(struct mnt_idmap *, struct dentry *, int); - int (*inode_getattr)(const struct path *); - int (*inode_xattr_skipcap)(const char *); - int (*inode_setxattr)(struct mnt_idmap *, struct dentry *, const char *, const void *, size_t, int); - void (*inode_post_setxattr)(struct dentry *, const char *, const void *, size_t, int); - int (*inode_getxattr)(struct dentry *, const char *); - int (*inode_listxattr)(struct dentry *); - int (*inode_removexattr)(struct mnt_idmap *, struct dentry *, const char *); - void (*inode_post_removexattr)(struct dentry *, const char *); - int (*inode_set_acl)(struct mnt_idmap *, struct dentry *, const char *, struct posix_acl *); - void (*inode_post_set_acl)(struct dentry *, const char *, struct posix_acl *); - int (*inode_get_acl)(struct mnt_idmap *, struct dentry *, const char *); - int (*inode_remove_acl)(struct mnt_idmap *, struct dentry *, const char *); - void (*inode_post_remove_acl)(struct mnt_idmap *, struct dentry *, const char *); - int (*inode_need_killpriv)(struct dentry *); - int (*inode_killpriv)(struct mnt_idmap *, struct dentry *); - int (*inode_getsecurity)(struct mnt_idmap *, struct inode *, const char *, void **, bool); - int (*inode_setsecurity)(struct inode *, const char *, const void *, size_t, int); - int (*inode_listsecurity)(struct inode *, char *, size_t); - void (*inode_getsecid)(struct inode *, u32 *); - int (*inode_copy_up)(struct dentry *, struct cred **); - int (*inode_copy_up_xattr)(struct dentry *, const char *); - int (*inode_setintegrity)(const struct inode *, enum lsm_integrity_type, const void *, size_t); - int (*kernfs_init_security)(struct kernfs_node *, struct kernfs_node *); - int (*file_permission)(struct file *, int); - int (*file_alloc_security)(struct file *); - void (*file_release)(struct file *); - void (*file_free_security)(struct file *); - int (*file_ioctl)(struct file *, unsigned int, long unsigned int); - int (*file_ioctl_compat)(struct file *, unsigned int, long unsigned int); - int (*mmap_addr)(long unsigned int); - int (*mmap_file)(struct file *, long unsigned int, long unsigned int, long unsigned int); - int (*file_mprotect)(struct vm_area_struct *, long unsigned int, long unsigned int); - int (*file_lock)(struct file *, unsigned int); - int (*file_fcntl)(struct file *, unsigned int, long unsigned int); - void (*file_set_fowner)(struct file *); - int (*file_send_sigiotask)(struct task_struct *, struct fown_struct *, int); - int (*file_receive)(struct file *); - int (*file_open)(struct file *); - int (*file_post_open)(struct file *, int); - int (*file_truncate)(struct file *); - int (*task_alloc)(struct task_struct *, long unsigned int); - void (*task_free)(struct task_struct *); - int (*cred_alloc_blank)(struct cred *, gfp_t); - void (*cred_free)(struct cred *); - int (*cred_prepare)(struct cred *, const struct cred *, gfp_t); - void (*cred_transfer)(struct cred *, const struct cred *); - void (*cred_getsecid)(const struct cred *, u32 *); - int (*kernel_act_as)(struct cred *, u32); - int (*kernel_create_files_as)(struct cred *, struct inode *); - int (*kernel_module_request)(char *); - int (*kernel_load_data)(enum kernel_load_data_id, bool); - int (*kernel_post_load_data)(char *, loff_t, enum kernel_load_data_id, char *); - int (*kernel_read_file)(struct file *, enum kernel_read_file_id, bool); - int (*kernel_post_read_file)(struct file *, char *, loff_t, enum kernel_read_file_id); - int (*task_fix_setuid)(struct cred *, const struct cred *, int); - int (*task_fix_setgid)(struct cred *, const struct cred *, int); - int (*task_fix_setgroups)(struct cred *, const struct cred *); - int (*task_setpgid)(struct task_struct *, pid_t); - int (*task_getpgid)(struct task_struct *); - int (*task_getsid)(struct task_struct *); - void (*current_getsecid_subj)(u32 *); - void (*task_getsecid_obj)(struct task_struct *, u32 *); - int (*task_setnice)(struct task_struct *, int); - int (*task_setioprio)(struct task_struct *, int); - int (*task_getioprio)(struct task_struct *); - int (*task_prlimit)(const struct cred *, const struct cred *, unsigned int); - int (*task_setrlimit)(struct task_struct *, unsigned int, struct rlimit *); - int (*task_setscheduler)(struct task_struct *); - int (*task_getscheduler)(struct task_struct *); - int (*task_movememory)(struct task_struct *); - int (*task_kill)(struct task_struct *, struct kernel_siginfo *, int, const struct cred *); - int (*task_prctl)(int, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - void (*task_to_inode)(struct task_struct *, struct inode *); - int (*userns_create)(const struct cred *); - int (*ipc_permission)(struct kern_ipc_perm *, short int); - void (*ipc_getsecid)(struct kern_ipc_perm *, u32 *); - int (*msg_msg_alloc_security)(struct msg_msg *); - void (*msg_msg_free_security)(struct msg_msg *); - int (*msg_queue_alloc_security)(struct kern_ipc_perm *); - void (*msg_queue_free_security)(struct kern_ipc_perm *); - int (*msg_queue_associate)(struct kern_ipc_perm *, int); - int (*msg_queue_msgctl)(struct kern_ipc_perm *, int); - int (*msg_queue_msgsnd)(struct kern_ipc_perm *, struct msg_msg *, int); - int (*msg_queue_msgrcv)(struct kern_ipc_perm *, struct msg_msg *, struct task_struct *, long int, int); - int (*shm_alloc_security)(struct kern_ipc_perm *); - void (*shm_free_security)(struct kern_ipc_perm *); - int (*shm_associate)(struct kern_ipc_perm *, int); - int (*shm_shmctl)(struct kern_ipc_perm *, int); - int (*shm_shmat)(struct kern_ipc_perm *, char *, int); - int (*sem_alloc_security)(struct kern_ipc_perm *); - void (*sem_free_security)(struct kern_ipc_perm *); - int (*sem_associate)(struct kern_ipc_perm *, int); - int (*sem_semctl)(struct kern_ipc_perm *, int); - int (*sem_semop)(struct kern_ipc_perm *, struct sembuf *, unsigned int, int); - int (*netlink_send)(struct sock *, struct sk_buff *); - void (*d_instantiate)(struct dentry *, struct inode *); - int (*getselfattr)(unsigned int, struct lsm_ctx *, u32 *, u32); - int (*setselfattr)(unsigned int, struct lsm_ctx *, u32, u32); - int (*getprocattr)(struct task_struct *, const char *, char **); - int (*setprocattr)(const char *, void *, size_t); - int (*ismaclabel)(const char *); - int (*secid_to_secctx)(u32, char **, u32 *); - int (*secctx_to_secid)(const char *, u32, u32 *); - void (*release_secctx)(char *, u32); - void (*inode_invalidate_secctx)(struct inode *); - int (*inode_notifysecctx)(struct inode *, void *, u32); - int (*inode_setsecctx)(struct dentry *, void *, u32); - int (*inode_getsecctx)(struct inode *, void **, u32 *); - int (*unix_stream_connect)(struct sock *, struct sock *, struct sock *); - int (*unix_may_send)(struct socket *, struct socket *); - int (*socket_create)(int, int, int, int); - int (*socket_post_create)(struct socket *, int, int, int, int); - int (*socket_socketpair)(struct socket *, struct socket *); - int (*socket_bind)(struct socket *, struct sockaddr *, int); - int (*socket_connect)(struct socket *, struct sockaddr *, int); - int (*socket_listen)(struct socket *, int); - int (*socket_accept)(struct socket *, struct socket *); - int (*socket_sendmsg)(struct socket *, struct msghdr *, int); - int (*socket_recvmsg)(struct socket *, struct msghdr *, int, int); - int (*socket_getsockname)(struct socket *); - int (*socket_getpeername)(struct socket *); - int (*socket_getsockopt)(struct socket *, int, int); - int (*socket_setsockopt)(struct socket *, int, int); - int (*socket_shutdown)(struct socket *, int); - int (*socket_sock_rcv_skb)(struct sock *, struct sk_buff *); - int (*socket_getpeersec_stream)(struct socket *, sockptr_t, sockptr_t, unsigned int); - int (*socket_getpeersec_dgram)(struct socket *, struct sk_buff *, u32 *); - int (*sk_alloc_security)(struct sock *, int, gfp_t); - void (*sk_free_security)(struct sock *); - void (*sk_clone_security)(const struct sock *, struct sock *); - void (*sk_getsecid)(const struct sock *, u32 *); - void (*sock_graft)(struct sock *, struct socket *); - int (*inet_conn_request)(const struct sock *, struct sk_buff *, struct request_sock *); - void (*inet_csk_clone)(struct sock *, const struct request_sock *); - void (*inet_conn_established)(struct sock *, struct sk_buff *); - int (*secmark_relabel_packet)(u32); - void (*secmark_refcount_inc)(void); - void (*secmark_refcount_dec)(void); - void (*req_classify_flow)(const struct request_sock *, struct flowi_common *); - int (*tun_dev_alloc_security)(void *); - int (*tun_dev_create)(void); - int (*tun_dev_attach_queue)(void *); - int (*tun_dev_attach)(struct sock *, void *); - int (*tun_dev_open)(void *); - int (*sctp_assoc_request)(struct sctp_association *, struct sk_buff *); - int (*sctp_bind_connect)(struct sock *, int, struct sockaddr *, int); - void (*sctp_sk_clone)(struct sctp_association *, struct sock *, struct sock *); - int (*sctp_assoc_established)(struct sctp_association *, struct sk_buff *); - int (*mptcp_add_subflow)(struct sock *, struct sock *); - int (*key_alloc)(struct key *, const struct cred *, long unsigned int); - int (*key_permission)(key_ref_t, const struct cred *, enum key_need_perm); - int (*key_getsecurity)(struct key *, char **); - void (*key_post_create_or_update)(struct key *, struct key *, const void *, size_t, long unsigned int, bool); - int (*audit_rule_init)(u32, u32, char *, void **, gfp_t); - int (*audit_rule_known)(struct audit_krule *); - int (*audit_rule_match)(u32, u32, u32, void *); - void (*audit_rule_free)(void *); - int (*bpf)(int, union bpf_attr *, unsigned int); - int (*bpf_map)(struct bpf_map *, fmode_t); - int (*bpf_prog)(struct bpf_prog *); - int (*bpf_map_create)(struct bpf_map *, union bpf_attr *, struct bpf_token *); - void (*bpf_map_free)(struct bpf_map *); - int (*bpf_prog_load)(struct bpf_prog *, union bpf_attr *, struct bpf_token *); - void (*bpf_prog_free)(struct bpf_prog *); - int (*bpf_token_create)(struct bpf_token *, union bpf_attr *, const struct path *); - void (*bpf_token_free)(struct bpf_token *); - int (*bpf_token_cmd)(const struct bpf_token *, enum bpf_cmd); - int (*bpf_token_capable)(const struct bpf_token *, int); - int (*locked_down)(enum lockdown_reason); - int (*perf_event_open)(struct perf_event_attr *, int); - int (*perf_event_alloc)(struct perf_event *); - int (*perf_event_read)(struct perf_event *); - int (*perf_event_write)(struct perf_event *); - int (*uring_override_creds)(const struct cred *); - int (*uring_sqpoll)(void); - int (*uring_cmd)(struct io_uring_cmd *); - int (*uring_allowed)(void); - void (*initramfs_populated)(void); - int (*bdev_alloc_security)(struct block_device *); - void (*bdev_free_security)(struct block_device *); - int (*bdev_setintegrity)(struct block_device *, enum lsm_integrity_type, const void *, size_t); - void *lsm_func_addr; -}; - -struct security_hook_list; - -struct lsm_static_call { - struct static_call_key *key; - void *trampoline; - struct security_hook_list *hl; - struct static_key_false *active; -}; - -struct security_hook_list { - struct lsm_static_call *scalls; - union security_list_options hook; - const struct lsm_id *lsmid; -}; - -struct lsm_static_calls_table { - struct lsm_static_call binder_set_context_mgr[2]; - struct lsm_static_call binder_transaction[2]; - struct lsm_static_call binder_transfer_binder[2]; - struct lsm_static_call binder_transfer_file[2]; - struct lsm_static_call ptrace_access_check[2]; - struct lsm_static_call ptrace_traceme[2]; - struct lsm_static_call capget[2]; - struct lsm_static_call capset[2]; - struct lsm_static_call capable[2]; - struct lsm_static_call quotactl[2]; - struct lsm_static_call quota_on[2]; - struct lsm_static_call syslog[2]; - struct lsm_static_call settime[2]; - struct lsm_static_call vm_enough_memory[2]; - struct lsm_static_call bprm_creds_for_exec[2]; - struct lsm_static_call bprm_creds_from_file[2]; - struct lsm_static_call bprm_check_security[2]; - struct lsm_static_call bprm_committing_creds[2]; - struct lsm_static_call bprm_committed_creds[2]; - struct lsm_static_call fs_context_submount[2]; - struct lsm_static_call fs_context_dup[2]; - struct lsm_static_call fs_context_parse_param[2]; - struct lsm_static_call sb_alloc_security[2]; - struct lsm_static_call sb_delete[2]; - struct lsm_static_call sb_free_security[2]; - struct lsm_static_call sb_free_mnt_opts[2]; - struct lsm_static_call sb_eat_lsm_opts[2]; - struct lsm_static_call sb_mnt_opts_compat[2]; - struct lsm_static_call sb_remount[2]; - struct lsm_static_call sb_kern_mount[2]; - struct lsm_static_call sb_show_options[2]; - struct lsm_static_call sb_statfs[2]; - struct lsm_static_call sb_mount[2]; - struct lsm_static_call sb_umount[2]; - struct lsm_static_call sb_pivotroot[2]; - struct lsm_static_call sb_set_mnt_opts[2]; - struct lsm_static_call sb_clone_mnt_opts[2]; - struct lsm_static_call move_mount[2]; - struct lsm_static_call dentry_init_security[2]; - struct lsm_static_call dentry_create_files_as[2]; - struct lsm_static_call path_notify[2]; - struct lsm_static_call inode_alloc_security[2]; - struct lsm_static_call inode_free_security[2]; - struct lsm_static_call inode_free_security_rcu[2]; - struct lsm_static_call inode_init_security[2]; - struct lsm_static_call inode_init_security_anon[2]; - struct lsm_static_call inode_create[2]; - struct lsm_static_call inode_post_create_tmpfile[2]; - struct lsm_static_call inode_link[2]; - struct lsm_static_call inode_unlink[2]; - struct lsm_static_call inode_symlink[2]; - struct lsm_static_call inode_mkdir[2]; - struct lsm_static_call inode_rmdir[2]; - struct lsm_static_call inode_mknod[2]; - struct lsm_static_call inode_rename[2]; - struct lsm_static_call inode_readlink[2]; - struct lsm_static_call inode_follow_link[2]; - struct lsm_static_call inode_permission[2]; - struct lsm_static_call inode_setattr[2]; - struct lsm_static_call inode_post_setattr[2]; - struct lsm_static_call inode_getattr[2]; - struct lsm_static_call inode_xattr_skipcap[2]; - struct lsm_static_call inode_setxattr[2]; - struct lsm_static_call inode_post_setxattr[2]; - struct lsm_static_call inode_getxattr[2]; - struct lsm_static_call inode_listxattr[2]; - struct lsm_static_call inode_removexattr[2]; - struct lsm_static_call inode_post_removexattr[2]; - struct lsm_static_call inode_set_acl[2]; - struct lsm_static_call inode_post_set_acl[2]; - struct lsm_static_call inode_get_acl[2]; - struct lsm_static_call inode_remove_acl[2]; - struct lsm_static_call inode_post_remove_acl[2]; - struct lsm_static_call inode_need_killpriv[2]; - struct lsm_static_call inode_killpriv[2]; - struct lsm_static_call inode_getsecurity[2]; - struct lsm_static_call inode_setsecurity[2]; - struct lsm_static_call inode_listsecurity[2]; - struct lsm_static_call inode_getsecid[2]; - struct lsm_static_call inode_copy_up[2]; - struct lsm_static_call inode_copy_up_xattr[2]; - struct lsm_static_call inode_setintegrity[2]; - struct lsm_static_call kernfs_init_security[2]; - struct lsm_static_call file_permission[2]; - struct lsm_static_call file_alloc_security[2]; - struct lsm_static_call file_release[2]; - struct lsm_static_call file_free_security[2]; - struct lsm_static_call file_ioctl[2]; - struct lsm_static_call file_ioctl_compat[2]; - struct lsm_static_call mmap_addr[2]; - struct lsm_static_call mmap_file[2]; - struct lsm_static_call file_mprotect[2]; - struct lsm_static_call file_lock[2]; - struct lsm_static_call file_fcntl[2]; - struct lsm_static_call file_set_fowner[2]; - struct lsm_static_call file_send_sigiotask[2]; - struct lsm_static_call file_receive[2]; - struct lsm_static_call file_open[2]; - struct lsm_static_call file_post_open[2]; - struct lsm_static_call file_truncate[2]; - struct lsm_static_call task_alloc[2]; - struct lsm_static_call task_free[2]; - struct lsm_static_call cred_alloc_blank[2]; - struct lsm_static_call cred_free[2]; - struct lsm_static_call cred_prepare[2]; - struct lsm_static_call cred_transfer[2]; - struct lsm_static_call cred_getsecid[2]; - struct lsm_static_call kernel_act_as[2]; - struct lsm_static_call kernel_create_files_as[2]; - struct lsm_static_call kernel_module_request[2]; - struct lsm_static_call kernel_load_data[2]; - struct lsm_static_call kernel_post_load_data[2]; - struct lsm_static_call kernel_read_file[2]; - struct lsm_static_call kernel_post_read_file[2]; - struct lsm_static_call task_fix_setuid[2]; - struct lsm_static_call task_fix_setgid[2]; - struct lsm_static_call task_fix_setgroups[2]; - struct lsm_static_call task_setpgid[2]; - struct lsm_static_call task_getpgid[2]; - struct lsm_static_call task_getsid[2]; - struct lsm_static_call current_getsecid_subj[2]; - struct lsm_static_call task_getsecid_obj[2]; - struct lsm_static_call task_setnice[2]; - struct lsm_static_call task_setioprio[2]; - struct lsm_static_call task_getioprio[2]; - struct lsm_static_call task_prlimit[2]; - struct lsm_static_call task_setrlimit[2]; - struct lsm_static_call task_setscheduler[2]; - struct lsm_static_call task_getscheduler[2]; - struct lsm_static_call task_movememory[2]; - struct lsm_static_call task_kill[2]; - struct lsm_static_call task_prctl[2]; - struct lsm_static_call task_to_inode[2]; - struct lsm_static_call userns_create[2]; - struct lsm_static_call ipc_permission[2]; - struct lsm_static_call ipc_getsecid[2]; - struct lsm_static_call msg_msg_alloc_security[2]; - struct lsm_static_call msg_msg_free_security[2]; - struct lsm_static_call msg_queue_alloc_security[2]; - struct lsm_static_call msg_queue_free_security[2]; - struct lsm_static_call msg_queue_associate[2]; - struct lsm_static_call msg_queue_msgctl[2]; - struct lsm_static_call msg_queue_msgsnd[2]; - struct lsm_static_call msg_queue_msgrcv[2]; - struct lsm_static_call shm_alloc_security[2]; - struct lsm_static_call shm_free_security[2]; - struct lsm_static_call shm_associate[2]; - struct lsm_static_call shm_shmctl[2]; - struct lsm_static_call shm_shmat[2]; - struct lsm_static_call sem_alloc_security[2]; - struct lsm_static_call sem_free_security[2]; - struct lsm_static_call sem_associate[2]; - struct lsm_static_call sem_semctl[2]; - struct lsm_static_call sem_semop[2]; - struct lsm_static_call netlink_send[2]; - struct lsm_static_call d_instantiate[2]; - struct lsm_static_call getselfattr[2]; - struct lsm_static_call setselfattr[2]; - struct lsm_static_call getprocattr[2]; - struct lsm_static_call setprocattr[2]; - struct lsm_static_call ismaclabel[2]; - struct lsm_static_call secid_to_secctx[2]; - struct lsm_static_call secctx_to_secid[2]; - struct lsm_static_call release_secctx[2]; - struct lsm_static_call inode_invalidate_secctx[2]; - struct lsm_static_call inode_notifysecctx[2]; - struct lsm_static_call inode_setsecctx[2]; - struct lsm_static_call inode_getsecctx[2]; - struct lsm_static_call unix_stream_connect[2]; - struct lsm_static_call unix_may_send[2]; - struct lsm_static_call socket_create[2]; - struct lsm_static_call socket_post_create[2]; - struct lsm_static_call socket_socketpair[2]; - struct lsm_static_call socket_bind[2]; - struct lsm_static_call socket_connect[2]; - struct lsm_static_call socket_listen[2]; - struct lsm_static_call socket_accept[2]; - struct lsm_static_call socket_sendmsg[2]; - struct lsm_static_call socket_recvmsg[2]; - struct lsm_static_call socket_getsockname[2]; - struct lsm_static_call socket_getpeername[2]; - struct lsm_static_call socket_getsockopt[2]; - struct lsm_static_call socket_setsockopt[2]; - struct lsm_static_call socket_shutdown[2]; - struct lsm_static_call socket_sock_rcv_skb[2]; - struct lsm_static_call socket_getpeersec_stream[2]; - struct lsm_static_call socket_getpeersec_dgram[2]; - struct lsm_static_call sk_alloc_security[2]; - struct lsm_static_call sk_free_security[2]; - struct lsm_static_call sk_clone_security[2]; - struct lsm_static_call sk_getsecid[2]; - struct lsm_static_call sock_graft[2]; - struct lsm_static_call inet_conn_request[2]; - struct lsm_static_call inet_csk_clone[2]; - struct lsm_static_call inet_conn_established[2]; - struct lsm_static_call secmark_relabel_packet[2]; - struct lsm_static_call secmark_refcount_inc[2]; - struct lsm_static_call secmark_refcount_dec[2]; - struct lsm_static_call req_classify_flow[2]; - struct lsm_static_call tun_dev_alloc_security[2]; - struct lsm_static_call tun_dev_create[2]; - struct lsm_static_call tun_dev_attach_queue[2]; - struct lsm_static_call tun_dev_attach[2]; - struct lsm_static_call tun_dev_open[2]; - struct lsm_static_call sctp_assoc_request[2]; - struct lsm_static_call sctp_bind_connect[2]; - struct lsm_static_call sctp_sk_clone[2]; - struct lsm_static_call sctp_assoc_established[2]; - struct lsm_static_call mptcp_add_subflow[2]; - struct lsm_static_call key_alloc[2]; - struct lsm_static_call key_permission[2]; - struct lsm_static_call key_getsecurity[2]; - struct lsm_static_call key_post_create_or_update[2]; - struct lsm_static_call audit_rule_init[2]; - struct lsm_static_call audit_rule_known[2]; - struct lsm_static_call audit_rule_match[2]; - struct lsm_static_call audit_rule_free[2]; - struct lsm_static_call bpf[2]; - struct lsm_static_call bpf_map[2]; - struct lsm_static_call bpf_prog[2]; - struct lsm_static_call bpf_map_create[2]; - struct lsm_static_call bpf_map_free[2]; - struct lsm_static_call bpf_prog_load[2]; - struct lsm_static_call bpf_prog_free[2]; - struct lsm_static_call bpf_token_create[2]; - struct lsm_static_call bpf_token_free[2]; - struct lsm_static_call bpf_token_cmd[2]; - struct lsm_static_call bpf_token_capable[2]; - struct lsm_static_call locked_down[2]; - struct lsm_static_call perf_event_open[2]; - struct lsm_static_call perf_event_alloc[2]; - struct lsm_static_call perf_event_read[2]; - struct lsm_static_call perf_event_write[2]; - struct lsm_static_call uring_override_creds[2]; - struct lsm_static_call uring_sqpoll[2]; - struct lsm_static_call uring_cmd[2]; - struct lsm_static_call uring_allowed[2]; - struct lsm_static_call initramfs_populated[2]; - struct lsm_static_call bdev_alloc_security[2]; - struct lsm_static_call bdev_free_security[2]; - struct lsm_static_call bdev_setintegrity[2]; -}; - -struct lsm_blob_sizes { - int lbs_cred; - int lbs_file; - int lbs_ib; - int lbs_inode; - int lbs_sock; - int lbs_superblock; - int lbs_ipc; - int lbs_key; - int lbs_msg_msg; - int lbs_perf_event; - int lbs_task; - int lbs_xattr_count; - int lbs_tun_dev; - int lbs_bdev; -}; - -enum lsm_order { - LSM_ORDER_FIRST = -1, - LSM_ORDER_MUTABLE = 0, - LSM_ORDER_LAST = 1, -}; - -struct lsm_info { - const char *name; - enum lsm_order order; - long unsigned int flags; - int *enabled; - int (*init)(void); - struct lsm_blob_sizes *blobs; -}; - -struct acomp_req { - struct crypto_async_request base; - struct scatterlist *src; - struct scatterlist *dst; - unsigned int slen; - unsigned int dlen; - u32 flags; - void *__ctx[0]; -}; - -struct crypto_acomp { - int (*compress)(struct acomp_req *); - int (*decompress)(struct acomp_req *); - void (*dst_free)(struct scatterlist *); - unsigned int reqsize; - struct crypto_tfm base; -}; - -struct acomp_alg { - int (*compress)(struct acomp_req *); - int (*decompress)(struct acomp_req *); - void (*dst_free)(struct scatterlist *); - int (*init)(struct crypto_acomp *); - void (*exit)(struct crypto_acomp *); - unsigned int reqsize; - union { - struct { - struct crypto_alg base; - }; - struct comp_alg_common calg; - }; -}; - -struct rmd160_ctx { - u64 byte_count; - u32 state[5]; - __le32 buffer[16]; -}; - -struct camellia_ctx { - int key_length; - u32 key_table[68]; -}; - -struct cast6_ctx { - u32 Km[48]; - u8 Kr[48]; -}; - -struct xor_block_template { - struct xor_block_template *next; - const char *name; - int speed; - void (*do_2)(long unsigned int, long unsigned int * restrict, const long unsigned int * restrict); - void (*do_3)(long unsigned int, long unsigned int * restrict, const long unsigned int * restrict, const long unsigned int * restrict); - void (*do_4)(long unsigned int, long unsigned int * restrict, const long unsigned int * restrict, const long unsigned int * restrict, const long unsigned int * restrict); - void (*do_5)(long unsigned int, long unsigned int * restrict, const long unsigned int * restrict, const long unsigned int * restrict, const long unsigned int * restrict, const long unsigned int * restrict); -}; - -struct crypto_sig { - struct crypto_tfm base; -}; - -struct bio_map_data { - bool is_our_pages: 1; - bool is_null_mapped: 1; - struct iov_iter iter; - struct iovec iov[0]; -}; - -struct rq_wait { - wait_queue_head_t wait; - atomic_t inflight; -}; - -struct rq_depth { - unsigned int max_depth; - int scale_step; - bool scaled_max; - unsigned int queue_depth; - unsigned int default_depth; -}; - -typedef bool acquire_inflight_cb_t(struct rq_wait *, void *); - -typedef void cleanup_cb_t(struct rq_wait *, void *); - -struct rq_qos_wait_data { - struct wait_queue_entry wq; - struct task_struct *task; - struct rq_wait *rqw; - acquire_inflight_cb_t *cb; - void *private_data; - bool got_token; -}; - -struct io_uring_rsrc_register { - __u32 nr; - __u32 flags; - __u64 resv2; - __u64 data; - __u64 tags; -}; - -struct io_uring_rsrc_update2 { - __u32 offset; - __u32 resv; - __u64 data; - __u64 tags; - __u32 nr; - __u32 resv2; -}; - -enum { - IORING_REGISTER_SRC_REGISTERED = 1, -}; - -struct io_uring_clone_buffers { - __u32 src_fd; - __u32 flags; - __u32 pad[6]; -}; - -enum { - IORING_RSRC_FILE = 0, - IORING_RSRC_BUFFER = 1, -}; - -struct io_imu_folio_data { - unsigned int nr_pages_head; - unsigned int nr_pages_mid; - unsigned int folio_shift; - long unsigned int first_folio_page_idx; -}; - -struct io_rsrc_update { - struct file *file; - u64 arg; - u32 nr_args; - u32 offset; -}; - -struct io_uring_probe_op { - __u8 op; - __u8 resv; - __u16 flags; - __u32 resv2; -}; - -struct io_uring_probe { - __u8 last_op; - __u8 ops_len; - __u16 resv; - __u32 resv2[3]; - struct io_uring_probe_op ops[0]; -}; - -struct io_uring_restriction { - __u16 opcode; - union { - __u8 register_op; - __u8 sqe_op; - __u8 sqe_flags; - }; - __u8 resv; - __u32 resv2[3]; -}; - -struct io_uring_clock_register { - __u32 clockid; - __u32 __resv[3]; -}; - -enum io_uring_register_restriction_op { - IORING_RESTRICTION_REGISTER_OP = 0, - IORING_RESTRICTION_SQE_OP = 1, - IORING_RESTRICTION_SQE_FLAGS_ALLOWED = 2, - IORING_RESTRICTION_SQE_FLAGS_REQUIRED = 3, - IORING_RESTRICTION_LAST = 4, -}; - -struct io_tctx_node { - struct list_head ctx_node; - struct task_struct *task; - struct io_ring_ctx *ctx; -}; - -enum blake2s_lengths { - BLAKE2S_BLOCK_SIZE = 64, - BLAKE2S_HASH_SIZE = 32, - BLAKE2S_KEY_SIZE = 32, - BLAKE2S_128_HASH_SIZE = 16, - BLAKE2S_160_HASH_SIZE = 20, - BLAKE2S_224_HASH_SIZE = 28, - BLAKE2S_256_HASH_SIZE = 32, -}; - -struct blake2s_state { - u32 h[8]; - u32 t[2]; - u32 f[2]; - u8 buf[64]; - unsigned int buflen; - unsigned int outlen; -}; - -struct ZSTD_DDict_s { - void *dictBuffer; - const void *dictContent; - size_t dictSize; - ZSTD_entropyDTables_t entropy; - U32 dictID; - U32 entropyPresent; - ZSTD_customMem cMem; -}; - -struct ts_linear_state { - unsigned int len; - const void *data; -}; - -struct word_at_a_time { - const long unsigned int one_bits; - const long unsigned int high_bits; -}; - -typedef struct { - struct srcu_struct *lock; - int idx; -} class_srcu_t; - -struct gpio_array { - struct gpio_desc **desc; - unsigned int size; - struct gpio_device *gdev; - long unsigned int *get_mask; - long unsigned int *set_mask; - long unsigned int invert_mask[0]; -}; - -enum gpio_lookup_flags { - GPIO_ACTIVE_HIGH = 0, - GPIO_ACTIVE_LOW = 1, - GPIO_OPEN_DRAIN = 2, - GPIO_OPEN_SOURCE = 4, - GPIO_PERSISTENT = 0, - GPIO_TRANSITORY = 8, - GPIO_PULL_UP = 16, - GPIO_PULL_DOWN = 32, - GPIO_PULL_DISABLE = 64, - GPIO_LOOKUP_FLAGS_DEFAULT = 0, -}; - -struct gpiod_lookup { - const char *key; - u16 chip_hwnum; - const char *con_id; - unsigned int idx; - long unsigned int flags; -}; - -struct gpiod_lookup_table { - struct list_head list; - const char *dev_id; - struct gpiod_lookup table[0]; -}; - -struct gpiod_hog { - struct list_head list; - const char *chip_label; - u16 chip_hwnum; - const char *line_name; - long unsigned int lflags; - int dflags; -}; - -enum { - GPIOLINE_CHANGED_REQUESTED = 1, - GPIOLINE_CHANGED_RELEASED = 2, - GPIOLINE_CHANGED_CONFIG = 3, -}; - -struct gpio_chip_guard { - struct gpio_device *gdev; - struct gpio_chip *gc; - int idx; -}; - -typedef struct gpio_chip_guard class_gpio_chip_guard_t; - -struct trace_event_raw_gpio_direction { - struct trace_entry ent; - unsigned int gpio; - int in; - int err; - char __data[0]; -}; - -struct trace_event_raw_gpio_value { - struct trace_entry ent; - unsigned int gpio; - int get; - int value; - char __data[0]; -}; - -struct trace_event_data_offsets_gpio_direction {}; - -struct trace_event_data_offsets_gpio_value {}; - -typedef void (*btf_trace_gpio_direction)(void *, unsigned int, int, int); - -typedef void (*btf_trace_gpio_value)(void *, unsigned int, int, int); - -struct gpiolib_seq_priv { - bool newline; - int idx; -}; - -struct clk_notifier { - struct clk *clk; - struct srcu_notifier_head notifier_head; - struct list_head node; -}; - -struct clk_notifier_data { - struct clk *clk; - long unsigned int old_rate; - long unsigned int new_rate; -}; - -struct clk_parent_map; - -struct clk_core { - const char *name; - const struct clk_ops *ops; - struct clk_hw *hw; - struct module *owner; - struct device *dev; - struct hlist_node rpm_node; - struct device_node *of_node; - struct clk_core *parent; - struct clk_parent_map *parents; - u8 num_parents; - u8 new_parent_index; - long unsigned int rate; - long unsigned int req_rate; - long unsigned int new_rate; - struct clk_core *new_parent; - struct clk_core *new_child; - long unsigned int flags; - bool orphan; - bool rpm_enabled; - unsigned int enable_count; - unsigned int prepare_count; - unsigned int protect_count; - long unsigned int min_rate; - long unsigned int max_rate; - long unsigned int accuracy; - int phase; - struct clk_duty duty; - struct hlist_head children; - struct hlist_node child_node; - struct hlist_head clks; - unsigned int notifier_count; - struct dentry *dentry; - struct hlist_node debug_node; - struct kref ref; -}; - -struct clk_onecell_data { - struct clk **clks; - unsigned int clk_num; -}; - -struct clk_hw_onecell_data { - unsigned int num; - struct clk_hw *hws[0]; -}; - -struct clk_parent_map { - const struct clk_hw *hw; - struct clk_core *core; - const char *fw_name; - const char *name; - int index; -}; - -struct trace_event_raw_clk { - struct trace_entry ent; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_clk_rate { - struct trace_entry ent; - u32 __data_loc_name; - long unsigned int rate; - char __data[0]; -}; - -struct trace_event_raw_clk_rate_range { - struct trace_entry ent; - u32 __data_loc_name; - long unsigned int min; - long unsigned int max; - char __data[0]; -}; - -struct trace_event_raw_clk_parent { - struct trace_entry ent; - u32 __data_loc_name; - u32 __data_loc_pname; - char __data[0]; -}; - -struct trace_event_raw_clk_phase { - struct trace_entry ent; - u32 __data_loc_name; - int phase; - char __data[0]; -}; - -struct trace_event_raw_clk_duty_cycle { - struct trace_entry ent; - u32 __data_loc_name; - unsigned int num; - unsigned int den; - char __data[0]; -}; - -struct trace_event_raw_clk_rate_request { - struct trace_entry ent; - u32 __data_loc_name; - u32 __data_loc_pname; - long unsigned int min; - long unsigned int max; - long unsigned int prate; - char __data[0]; -}; - -struct trace_event_data_offsets_clk { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_clk_rate { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_clk_rate_range { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_clk_parent { - u32 name; - const void *name_ptr_; - u32 pname; - const void *pname_ptr_; -}; - -struct trace_event_data_offsets_clk_phase { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_clk_duty_cycle { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_clk_rate_request { - u32 name; - const void *name_ptr_; - u32 pname; - const void *pname_ptr_; -}; - -typedef void (*btf_trace_clk_enable)(void *, struct clk_core *); - -typedef void (*btf_trace_clk_enable_complete)(void *, struct clk_core *); - -typedef void (*btf_trace_clk_disable)(void *, struct clk_core *); - -typedef void (*btf_trace_clk_disable_complete)(void *, struct clk_core *); - -typedef void (*btf_trace_clk_prepare)(void *, struct clk_core *); - -typedef void (*btf_trace_clk_prepare_complete)(void *, struct clk_core *); - -typedef void (*btf_trace_clk_unprepare)(void *, struct clk_core *); - -typedef void (*btf_trace_clk_unprepare_complete)(void *, struct clk_core *); - -typedef void (*btf_trace_clk_set_rate)(void *, struct clk_core *, long unsigned int); - -typedef void (*btf_trace_clk_set_rate_complete)(void *, struct clk_core *, long unsigned int); - -typedef void (*btf_trace_clk_set_min_rate)(void *, struct clk_core *, long unsigned int); - -typedef void (*btf_trace_clk_set_max_rate)(void *, struct clk_core *, long unsigned int); - -typedef void (*btf_trace_clk_set_rate_range)(void *, struct clk_core *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_clk_set_parent)(void *, struct clk_core *, struct clk_core *); - -typedef void (*btf_trace_clk_set_parent_complete)(void *, struct clk_core *, struct clk_core *); - -typedef void (*btf_trace_clk_set_phase)(void *, struct clk_core *, int); - -typedef void (*btf_trace_clk_set_phase_complete)(void *, struct clk_core *, int); - -typedef void (*btf_trace_clk_set_duty_cycle)(void *, struct clk_core *, struct clk_duty *); - -typedef void (*btf_trace_clk_set_duty_cycle_complete)(void *, struct clk_core *, struct clk_duty *); - -typedef void (*btf_trace_clk_rate_request_start)(void *, struct clk_rate_request *); - -typedef void (*btf_trace_clk_rate_request_done)(void *, struct clk_rate_request *); - -struct clk_notifier_devres { - struct clk *clk; - struct notifier_block *nb; -}; - -struct of_clk_provider { - struct list_head link; - struct device_node *node; - struct clk * (*get)(struct of_phandle_args *, void *); - struct clk_hw * (*get_hw)(struct of_phandle_args *, void *); - void *data; -}; - -struct clock_provider { - void (*clk_init_cb)(struct device_node *); - struct device_node *np; - struct list_head node; -}; - -struct uart_match { - struct uart_port *port; - struct uart_driver *driver; -}; - -struct virtio_console_config { - __virtio16 cols; - __virtio16 rows; - __virtio32 max_nr_ports; - __virtio32 emerg_wr; -}; - -struct virtio_console_control { - __virtio32 id; - __virtio16 event; - __virtio16 value; -}; - -struct ports_driver_data { - struct dentry *debugfs_dir; - struct list_head portdevs; - struct list_head consoles; -}; - -struct console___2 { - struct list_head list; - struct hvc_struct *hvc; - struct winsize ws; - u32 vtermno; -}; - -struct port_buffer { - char *buf; - size_t size; - size_t len; - size_t offset; - dma_addr_t dma; - struct device *dev; - struct list_head list; - unsigned int sgpages; - struct scatterlist sg[0]; -}; - -struct ports_device { - struct list_head list; - struct work_struct control_work; - struct work_struct config_work; - struct list_head ports; - spinlock_t ports_lock; - spinlock_t c_ivq_lock; - spinlock_t c_ovq_lock; - u32 max_nr_ports; - struct virtio_device *vdev; - struct virtqueue *c_ivq; - struct virtqueue *c_ovq; - struct virtio_console_control cpkt; - struct virtqueue **in_vqs; - struct virtqueue **out_vqs; - int chr_major; -}; - -struct port_stats { - long unsigned int bytes_sent; - long unsigned int bytes_received; - long unsigned int bytes_discarded; -}; - -struct port___2 { - struct list_head list; - struct ports_device *portdev; - struct port_buffer *inbuf; - spinlock_t inbuf_lock; - spinlock_t outvq_lock; - struct virtqueue *in_vq; - struct virtqueue *out_vq; - struct dentry *debugfs_file; - struct port_stats stats; - struct console___2 cons; - struct cdev *cdev; - struct device *dev; - struct kref kref; - wait_queue_head_t waitqueue; - char *name; - struct fasync_struct *async_queue; - u32 id; - bool outvq_full; - bool host_connected; - bool guest_connected; -}; - -struct sg_list { - unsigned int n; - unsigned int size; - size_t len; - struct scatterlist *sg; -}; - -struct cea_sad { - u8 format; - u8 channels; - u8 freq; - u8 byte2; -}; - -enum drm_minor_type { - DRM_MINOR_PRIMARY = 0, - DRM_MINOR_CONTROL = 1, - DRM_MINOR_RENDER = 2, - DRM_MINOR_ACCEL = 32, -}; - -struct drm_memory_stats { - u64 shared; - u64 private; - u64 resident; - u64 purgeable; - u64 active; -}; - -enum dma_resv_usage { - DMA_RESV_USAGE_KERNEL = 0, - DMA_RESV_USAGE_WRITE = 1, - DMA_RESV_USAGE_READ = 2, - DMA_RESV_USAGE_BOOKKEEP = 3, -}; - -struct class_attribute_string { - struct class_attribute attr; - char *str; -}; - -struct drm_scanout_buffer { - const struct drm_format_info *format; - struct iosys_map map[4]; - unsigned int width; - unsigned int height; - unsigned int pitch[4]; - void (*set_pixel)(struct drm_scanout_buffer *, unsigned int, unsigned int, u32); -}; - -enum bus_notifier_event { - BUS_NOTIFY_ADD_DEVICE = 0, - BUS_NOTIFY_DEL_DEVICE = 1, - BUS_NOTIFY_REMOVED_DEVICE = 2, - BUS_NOTIFY_BIND_DRIVER = 3, - BUS_NOTIFY_BOUND_DRIVER = 4, - BUS_NOTIFY_UNBIND_DRIVER = 5, - BUS_NOTIFY_UNBOUND_DRIVER = 6, - BUS_NOTIFY_DRIVER_NOT_BOUND = 7, -}; - -struct device_attach_data { - struct device *dev; - bool check_async; - bool want_async; - bool have_async; -}; - -struct devres_node { - struct list_head entry; - dr_release_t release; - const char *name; - size_t size; -}; - -struct devres { - struct devres_node node; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - u8 data[0]; -}; - -struct devres_group { - struct devres_node node[2]; - void *id; - int color; -}; - -struct action_devres { - void *data; - void (*action)(void *); -}; - -struct pages_devres { - long unsigned int addr; - unsigned int order; -}; - -struct soc_device_attribute { - const char *machine; - const char *family; - const char *revision; - const char *serial_number; - const char *soc_id; - const void *data; - const struct attribute_group *custom_attr_group; -}; - -struct soc_device { - struct device dev; - struct soc_device_attribute *attr; - int soc_dev_num; -}; - -struct trace_event_raw_dma_fence { - struct trace_entry ent; - u32 __data_loc_driver; - u32 __data_loc_timeline; - unsigned int context; - unsigned int seqno; - char __data[0]; -}; - -struct trace_event_data_offsets_dma_fence { - u32 driver; - const void *driver_ptr_; - u32 timeline; - const void *timeline_ptr_; -}; - -typedef void (*btf_trace_dma_fence_emit)(void *, struct dma_fence *); - -typedef void (*btf_trace_dma_fence_init)(void *, struct dma_fence *); - -typedef void (*btf_trace_dma_fence_destroy)(void *, struct dma_fence *); - -typedef void (*btf_trace_dma_fence_enable_signal)(void *, struct dma_fence *); - -typedef void (*btf_trace_dma_fence_signaled)(void *, struct dma_fence *); - -typedef void (*btf_trace_dma_fence_wait_start)(void *, struct dma_fence *); - -typedef void (*btf_trace_dma_fence_wait_end)(void *, struct dma_fence *); - -struct default_wait_cb { - struct dma_fence_cb base; - struct task_struct *task; -}; - -struct flow_dissector_key { - enum flow_dissector_key_id key_id; - size_t offset; -}; - -struct ifbond { - __s32 bond_mode; - __s32 num_slaves; - __s32 miimon; -}; - -typedef struct ifbond ifbond; - -struct ifslave { - __s32 slave_id; - char slave_name[16]; - __s8 link; - __s8 state; - __u32 link_failure_count; -}; - -typedef struct ifslave ifslave; - -enum netdev_lag_tx_type { - NETDEV_LAG_TX_TYPE_UNKNOWN = 0, - NETDEV_LAG_TX_TYPE_RANDOM = 1, - NETDEV_LAG_TX_TYPE_BROADCAST = 2, - NETDEV_LAG_TX_TYPE_ROUNDROBIN = 3, - NETDEV_LAG_TX_TYPE_ACTIVEBACKUP = 4, - NETDEV_LAG_TX_TYPE_HASH = 5, -}; - -enum netdev_lag_hash { - NETDEV_LAG_HASH_NONE = 0, - NETDEV_LAG_HASH_L2 = 1, - NETDEV_LAG_HASH_L34 = 2, - NETDEV_LAG_HASH_L23 = 3, - NETDEV_LAG_HASH_E23 = 4, - NETDEV_LAG_HASH_E34 = 5, - NETDEV_LAG_HASH_VLAN_SRCMAC = 6, - NETDEV_LAG_HASH_UNKNOWN = 7, -}; - -struct netdev_lag_upper_info { - enum netdev_lag_tx_type tx_type; - enum netdev_lag_hash hash_type; -}; - -struct netdev_bonding_info { - ifslave slave; - ifbond master; -}; - -enum hwtstamp_flags { - HWTSTAMP_FLAG_BONDED_PHC_INDEX = 1, - HWTSTAMP_FLAG_LAST = 1, - HWTSTAMP_FLAG_MASK = 1, -}; - -struct bond_option { - int id; - const char *name; - const char *desc; - u32 flags; - long unsigned int unsuppmodes; - const struct bond_opt_value *values; - int (*set)(struct bonding *, const struct bond_opt_value *); -}; - -struct bond_vlan_tag { - __be16 vlan_proto; - short unsigned int vlan_id; -}; - -struct dev_ext_attribute { - struct device_attribute attr; - void *var; -}; - -struct mdio_board_info { - const char *bus_id; - char modalias[32]; - int mdio_addr; - const void *platform_data; -}; - -struct trace_event_raw_mdio_access { - struct trace_entry ent; - char busid[61]; - char read; - u8 addr; - u16 val; - unsigned int regnum; - char __data[0]; -}; - -struct trace_event_data_offsets_mdio_access {}; - -typedef void (*btf_trace_mdio_access)(void *, struct mii_bus *, char, u8, unsigned int, u16, int); - -struct mdio_bus_stat_attr { - int addr; - unsigned int field_offset; -}; - -struct vxlan_vni_stats { - u64 rx_packets; - u64 rx_bytes; - u64 rx_drops; - u64 rx_errors; - u64 tx_packets; - u64 tx_bytes; - u64 tx_drops; - u64 tx_errors; -}; - -struct vxlan_vni_stats_pcpu { - struct vxlan_vni_stats stats; - struct u64_stats_sync syncp; -}; - -struct vxlan_vni_node { - struct rhash_head vnode; - struct vxlan_dev_node hlist4; - struct vxlan_dev_node hlist6; - struct list_head vlist; - __be32 vni; - union vxlan_addr remote_ip; - struct vxlan_vni_stats_pcpu *stats; - struct callback_head rcu; -}; - -struct vxlan_net { - struct list_head vxlan_list; - struct hlist_head sock_list[256]; - spinlock_t sock_lock; - struct notifier_block nexthop_notifier_block; -}; - -struct usb_mon_operations { - void (*urb_submit)(struct usb_bus *, struct urb *); - void (*urb_submit_error)(struct usb_bus *, struct urb *, int); - void (*urb_complete)(struct usb_bus *, struct urb *, int); -}; - -enum usb_phy_type { - USB_PHY_TYPE_UNDEFINED = 0, - USB_PHY_TYPE_USB2 = 1, - USB_PHY_TYPE_USB3 = 2, -}; - -enum usb_phy_events { - USB_EVENT_NONE = 0, - USB_EVENT_VBUS = 1, - USB_EVENT_ID = 2, - USB_EVENT_CHARGER = 3, - USB_EVENT_ENUMERATED = 4, -}; - -struct extcon_dev; - -enum usb_charger_type { - UNKNOWN_TYPE = 0, - SDP_TYPE = 1, - DCP_TYPE = 2, - CDP_TYPE = 3, - ACA_TYPE = 4, -}; - -enum usb_charger_state { - USB_CHARGER_DEFAULT = 0, - USB_CHARGER_PRESENT = 1, - USB_CHARGER_ABSENT = 2, -}; - -struct usb_charger_current { - unsigned int sdp_min; - unsigned int sdp_max; - unsigned int dcp_min; - unsigned int dcp_max; - unsigned int cdp_min; - unsigned int cdp_max; - unsigned int aca_min; - unsigned int aca_max; -}; - -struct usb_otg; - -struct usb_phy_io_ops; - -struct usb_phy { - struct device *dev; - const char *label; - unsigned int flags; - enum usb_phy_type type; - enum usb_phy_events last_event; - struct usb_otg *otg; - struct device *io_dev; - struct usb_phy_io_ops *io_ops; - void *io_priv; - struct extcon_dev *edev; - struct extcon_dev *id_edev; - struct notifier_block vbus_nb; - struct notifier_block id_nb; - struct notifier_block type_nb; - enum usb_charger_type chg_type; - enum usb_charger_state chg_state; - struct usb_charger_current chg_cur; - struct work_struct chg_work; - struct atomic_notifier_head notifier; - u16 port_status; - u16 port_change; - struct list_head head; - int (*init)(struct usb_phy *); - void (*shutdown)(struct usb_phy *); - int (*set_vbus)(struct usb_phy *, int); - int (*set_power)(struct usb_phy *, unsigned int); - int (*set_suspend)(struct usb_phy *, int); - int (*set_wakeup)(struct usb_phy *, bool); - int (*notify_connect)(struct usb_phy *, enum usb_device_speed); - int (*notify_disconnect)(struct usb_phy *, enum usb_device_speed); - enum usb_charger_type (*charger_detect)(struct usb_phy *); -}; - -struct usb_ehci_pdata { - int caps_offset; - unsigned int has_tt: 1; - unsigned int has_synopsys_hc_bug: 1; - unsigned int big_endian_desc: 1; - unsigned int big_endian_mmio: 1; - unsigned int no_io_watchdog: 1; - unsigned int reset_on_resume: 1; - unsigned int dma_mask_64: 1; - unsigned int spurious_oc: 1; - int (*power_on)(struct platform_device *); - void (*power_off)(struct platform_device *); - void (*power_suspend)(struct platform_device *); - int (*pre_setup)(struct usb_hcd *); -}; - -enum usb_otg_state { - OTG_STATE_UNDEFINED = 0, - OTG_STATE_B_IDLE = 1, - OTG_STATE_B_SRP_INIT = 2, - OTG_STATE_B_PERIPHERAL = 3, - OTG_STATE_B_WAIT_ACON = 4, - OTG_STATE_B_HOST = 5, - OTG_STATE_A_IDLE = 6, - OTG_STATE_A_WAIT_VRISE = 7, - OTG_STATE_A_WAIT_BCON = 8, - OTG_STATE_A_HOST = 9, - OTG_STATE_A_SUSPEND = 10, - OTG_STATE_A_PERIPHERAL = 11, - OTG_STATE_A_WAIT_VFALL = 12, - OTG_STATE_A_VBUS_ERR = 13, -}; - -struct usb_phy_io_ops { - int (*read)(struct usb_phy *, u32); - int (*write)(struct usb_phy *, u32, u32); -}; - -struct usb_gadget; - -struct usb_otg { - u8 default_a; - struct phy *phy; - struct usb_phy *usb_phy; - struct usb_bus *host; - struct usb_gadget *gadget; - enum usb_otg_state state; - int (*set_host)(struct usb_otg *, struct usb_bus *); - int (*set_peripheral)(struct usb_otg *, struct usb_gadget *); - int (*set_vbus)(struct usb_otg *, bool); - int (*start_srp)(struct usb_otg *); - int (*start_hnp)(struct usb_otg *); -}; - -struct ehci_platform_priv { - struct clk *clks[4]; - struct reset_control *rsts; - bool reset_on_resume; - bool quirk_poll; - struct timer_list poll_timer; - struct delayed_work poll_work; -}; - -struct usb_onetouch { - char name[128]; - char phys[64]; - struct input_dev *dev; - struct usb_device *udev; - struct urb *irq; - unsigned char *data; - dma_addr_t data_dma; - unsigned int is_open: 1; -}; - -struct usb_irda_cs_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __le16 bcdSpecRevision; - __u8 bmDataSize; - __u8 bmWindowSize; - __u8 bmMinTurnaroundTime; - __le16 wBaudRate; - __u8 bmAdditionalBOFs; - __u8 bIrdaRateSniff; - __u8 bMaxUnicastList; -} __attribute__((packed)); - -struct xr_txrx_clk_mask { - u16 tx; - u16 rx0; - u16 rx1; -}; - -struct xr_type { - int reg_width; - u8 reg_recipient; - u8 set_reg; - u8 get_reg; - u16 uart_enable; - u16 flow_control; - u16 xon_char; - u16 xoff_char; - u16 tx_break; - u16 gpio_mode; - u16 gpio_direction; - u16 gpio_set; - u16 gpio_clear; - u16 gpio_status; - u16 tx_fifo_reset; - u16 rx_fifo_reset; - u16 custom_driver; - bool have_5_6_bit_mode; - bool have_xmit_toggle; - int (*enable)(struct usb_serial_port *); - int (*disable)(struct usb_serial_port *); - int (*fifo_reset)(struct usb_serial_port *); - void (*set_line_settings)(struct tty_struct *, struct usb_serial_port *, const struct ktermios *); -}; - -enum xr_type_id { - XR21V141X = 0, - XR21B142X = 1, - XR21B1411 = 2, - XR2280X = 3, - XR_TYPE_COUNT = 4, -}; - -struct xr_data { - const struct xr_type *type; - u8 channel; - struct serial_rs485 rs485; -}; - -struct io_err_c { - struct dm_dev *dev; - sector_t start; -}; - -struct of_bus___2 { - void (*count_cells)(const void *, int, int *, int *); - u64 (*map)(__be32 *, const __be32 *, int, int, int); - int (*translate)(__be32 *, u64, int); -}; - -struct of_phandle_iterator { - const char *cells_name; - int cell_count; - const struct device_node *parent; - const __be32 *list_end; - const __be32 *phandle_end; - const __be32 *cur; - uint32_t cur_count; - phandle phandle; - struct device_node *node; -}; - -struct of_intc_desc { - struct list_head list; - of_irq_init_cb_t irq_init_cb; - struct device_node *dev; - struct device_node *interrupt_parent; -}; - -struct platform_mhu_link { - int irq; - void *tx_reg; - void *rx_reg; -}; - -struct platform_mhu { - void *base; - struct platform_mhu_link mlink[3]; - struct mbox_chan chan[3]; - struct mbox_controller mbox; -}; - -enum { - INET_DIAG_REQ_NONE = 0, - INET_DIAG_REQ_BYTECODE = 1, - INET_DIAG_REQ_SK_BPF_STORAGES = 2, - INET_DIAG_REQ_PROTOCOL = 3, - __INET_DIAG_REQ_MAX = 4, -}; - -struct sock_diag_req { - __u8 sdiag_family; - __u8 sdiag_protocol; -}; - -enum { - SK_MEMINFO_RMEM_ALLOC = 0, - SK_MEMINFO_RCVBUF = 1, - SK_MEMINFO_WMEM_ALLOC = 2, - SK_MEMINFO_SNDBUF = 3, - SK_MEMINFO_FWD_ALLOC = 4, - SK_MEMINFO_WMEM_QUEUED = 5, - SK_MEMINFO_OPTMEM = 6, - SK_MEMINFO_BACKLOG = 7, - SK_MEMINFO_DROPS = 8, - SK_MEMINFO_VARS = 9, -}; - -enum sknetlink_groups { - SKNLGRP_NONE = 0, - SKNLGRP_INET_TCP_DESTROY = 1, - SKNLGRP_INET_UDP_DESTROY = 2, - SKNLGRP_INET6_TCP_DESTROY = 3, - SKNLGRP_INET6_UDP_DESTROY = 4, - __SKNLGRP_MAX = 5, -}; - -struct sock_diag_handler { - struct module *owner; - __u8 family; - int (*dump)(struct sk_buff *, struct nlmsghdr *); - int (*get_info)(struct sk_buff *, struct sock *); - int (*destroy)(struct sk_buff *, struct nlmsghdr *); -}; - -struct sock_diag_inet_compat { - struct module *owner; - int (*fn)(struct sk_buff *, struct nlmsghdr *); -}; - -struct broadcast_sk { - struct sock *sk; - struct work_struct work; -}; - -struct xdp_frame_bulk { - int count; - void *xa; - void *q[16]; -}; - -struct xdp_attachment_info { - struct bpf_prog *prog; - u32 flags; -}; - -struct xdp_mem_allocator { - struct xdp_mem_info mem; - union { - void *allocator; - struct page_pool *page_pool; - }; - struct rhash_head node; - struct callback_head rcu; -}; - -struct llc_pdu_sn { - u8 dsap; - u8 ssap; - u8 ctrl_1; - u8 ctrl_2; -}; - -enum { - TCA_NAT_UNSPEC = 0, - TCA_NAT_PARMS = 1, - TCA_NAT_TM = 2, - TCA_NAT_PAD = 3, - __TCA_NAT_MAX = 4, -}; - -struct tc_nat { - __u32 index; - __u32 capab; - int action; - int refcnt; - int bindcnt; - __be32 old_addr; - __be32 new_addr; - __be32 mask; - __u32 flags; -}; - -struct tcf_nat_parms { - __be32 old_addr; - __be32 new_addr; - __be32 mask; - u32 flags; - struct callback_head rcu; -}; - -struct tcf_nat { - struct tc_action common; - struct tcf_nat_parms *parms; - long: 64; -}; - -enum { - TCA_RED_UNSPEC = 0, - TCA_RED_PARMS = 1, - TCA_RED_STAB = 2, - TCA_RED_MAX_P = 3, - TCA_RED_FLAGS = 4, - TCA_RED_EARLY_DROP_BLOCK = 5, - TCA_RED_MARK_BLOCK = 6, - __TCA_RED_MAX = 7, -}; - -struct tc_red_qopt { - __u32 limit; - __u32 qth_min; - __u32 qth_max; - unsigned char Wlog; - unsigned char Plog; - unsigned char Scell_log; - unsigned char flags; -}; - -struct tc_red_xstats { - __u32 early; - __u32 pdrop; - __u32 other; - __u32 marked; -}; - -struct tc_qopt_offload_stats { - struct gnet_stats_basic_sync *bstats; - struct gnet_stats_queue *qstats; -}; - -enum tc_red_command { - TC_RED_REPLACE = 0, - TC_RED_DESTROY = 1, - TC_RED_STATS = 2, - TC_RED_XSTATS = 3, - TC_RED_GRAFT = 4, -}; - -struct tc_red_qopt_offload_params { - u32 min; - u32 max; - u32 probability; - u32 limit; - bool is_ecn; - bool is_harddrop; - bool is_nodrop; - struct gnet_stats_queue *qstats; -}; - -struct tc_red_qopt_offload { - enum tc_red_command command; - u32 handle; - u32 parent; - union { - struct tc_red_qopt_offload_params set; - struct tc_qopt_offload_stats stats; - struct red_stats *xstats; - u32 child_handle; - }; -}; - -struct red_sched_data { - u32 limit; - unsigned char flags; - unsigned char userbits; - struct timer_list adapt_timer; - struct Qdisc *sch; - struct red_parms parms; - struct red_vars vars; - struct red_stats stats; - struct Qdisc *qdisc; - struct tcf_qevent qe_early_drop; - struct tcf_qevent qe_mark; -}; - -struct rnd_state { - __u32 s1; - __u32 s2; - __u32 s3; - __u32 s4; -}; - -enum { - TCA_NETEM_UNSPEC = 0, - TCA_NETEM_CORR = 1, - TCA_NETEM_DELAY_DIST = 2, - TCA_NETEM_REORDER = 3, - TCA_NETEM_CORRUPT = 4, - TCA_NETEM_LOSS = 5, - TCA_NETEM_RATE = 6, - TCA_NETEM_ECN = 7, - TCA_NETEM_RATE64 = 8, - TCA_NETEM_PAD = 9, - TCA_NETEM_LATENCY64 = 10, - TCA_NETEM_JITTER64 = 11, - TCA_NETEM_SLOT = 12, - TCA_NETEM_SLOT_DIST = 13, - TCA_NETEM_PRNG_SEED = 14, - __TCA_NETEM_MAX = 15, -}; - -struct tc_netem_qopt { - __u32 latency; - __u32 limit; - __u32 loss; - __u32 gap; - __u32 duplicate; - __u32 jitter; -}; - -struct tc_netem_corr { - __u32 delay_corr; - __u32 loss_corr; - __u32 dup_corr; -}; - -struct tc_netem_reorder { - __u32 probability; - __u32 correlation; -}; - -struct tc_netem_corrupt { - __u32 probability; - __u32 correlation; -}; - -struct tc_netem_rate { - __u32 rate; - __s32 packet_overhead; - __u32 cell_size; - __s32 cell_overhead; -}; - -struct tc_netem_slot { - __s64 min_delay; - __s64 max_delay; - __s32 max_packets; - __s32 max_bytes; - __s64 dist_delay; - __s64 dist_jitter; -}; - -enum { - NETEM_LOSS_UNSPEC = 0, - NETEM_LOSS_GI = 1, - NETEM_LOSS_GE = 2, - __NETEM_LOSS_MAX = 3, -}; - -struct tc_netem_gimodel { - __u32 p13; - __u32 p31; - __u32 p32; - __u32 p14; - __u32 p23; -}; - -struct tc_netem_gemodel { - __u32 p; - __u32 r; - __u32 h; - __u32 k1; -}; - -typedef u64 psched_time_t; - -struct disttable { - u32 size; - s16 table[0]; -}; - -struct crndstate { - u32 last; - u32 rho; -}; - -struct prng { - u64 seed; - struct rnd_state prng_state; -}; - -struct clgstate { - u8 state; - u32 a1; - u32 a2; - u32 a3; - u32 a4; - u32 a5; -}; - -struct slotstate { - u64 slot_next; - s32 packets_left; - s32 bytes_left; -}; - -struct netem_sched_data { - struct rb_root t_root; - struct sk_buff *t_head; - struct sk_buff *t_tail; - u32 t_len; - struct Qdisc *qdisc; - struct qdisc_watchdog watchdog; - s64 latency; - s64 jitter; - u32 loss; - u32 ecn; - u32 limit; - u32 counter; - u32 gap; - u32 duplicate; - u32 reorder; - u32 corrupt; - u64 rate; - s32 packet_overhead; - u32 cell_size; - struct reciprocal_value cell_size_reciprocal; - s32 cell_overhead; - struct crndstate delay_cor; - struct crndstate loss_cor; - struct crndstate dup_cor; - struct crndstate reorder_cor; - struct crndstate corrupt_cor; - struct prng prng; - struct disttable *delay_dist; - enum { - CLG_RANDOM = 0, - CLG_4_STATES = 1, - CLG_GILB_ELL = 2, - } loss_model; - enum { - TX_IN_GAP_PERIOD = 1, - TX_IN_BURST_PERIOD = 2, - LOST_IN_GAP_PERIOD = 3, - LOST_IN_BURST_PERIOD = 4, - } _4_state_model; - enum { - GOOD_STATE = 1, - BAD_STATE = 2, - } GE_state_model; - struct clgstate clg; - struct tc_netem_slot slot_config; - struct slotstate slot; - struct disttable *slot_dist; -}; - -struct netem_skb_cb { - u64 time_to_send; -}; - -struct netlink_diag_req { - __u8 sdiag_family; - __u8 sdiag_protocol; - __u16 pad; - __u32 ndiag_ino; - __u32 ndiag_show; - __u32 ndiag_cookie[2]; -}; - -struct netlink_diag_msg { - __u8 ndiag_family; - __u8 ndiag_type; - __u8 ndiag_protocol; - __u8 ndiag_state; - __u32 ndiag_portid; - __u32 ndiag_dst_portid; - __u32 ndiag_dst_group; - __u32 ndiag_ino; - __u32 ndiag_cookie[2]; -}; - -enum { - NETLINK_DIAG_MEMINFO = 0, - NETLINK_DIAG_GROUPS = 1, - NETLINK_DIAG_RX_RING = 2, - NETLINK_DIAG_TX_RING = 3, - NETLINK_DIAG_FLAGS = 4, - __NETLINK_DIAG_MAX = 5, -}; - -enum { - NETLINK_F_KERNEL_SOCKET = 0, - NETLINK_F_RECV_PKTINFO = 1, - NETLINK_F_BROADCAST_SEND_ERROR = 2, - NETLINK_F_RECV_NO_ENOBUFS = 3, - NETLINK_F_LISTEN_ALL_NSID = 4, - NETLINK_F_CAP_ACK = 5, - NETLINK_F_EXT_ACK = 6, - NETLINK_F_STRICT_CHK = 7, -}; - -struct netlink_sock { - struct sock sk; - long unsigned int flags; - u32 portid; - u32 dst_portid; - u32 dst_group; - u32 subscriptions; - u32 ngroups; - long unsigned int *groups; - long unsigned int state; - size_t max_recvmsg_len; - wait_queue_head_t wait; - bool bound; - bool cb_running; - int dump_done_errno; - struct netlink_callback cb; - struct mutex nl_cb_mutex; - void (*netlink_rcv)(struct sk_buff *); - int (*netlink_bind)(struct net *, int); - void (*netlink_unbind)(struct net *, int); - void (*netlink_release)(struct sock *, long unsigned int *); - struct module *module; - struct rhash_head node; - struct callback_head rcu; -}; - -struct listeners; - -struct netlink_table { - struct rhashtable hash; - struct hlist_head mc_list; - struct listeners *listeners; - unsigned int flags; - unsigned int groups; - struct mutex *cb_mutex; - struct module *module; - int (*bind)(struct net *, int); - void (*unbind)(struct net *, int); - void (*release)(struct sock *, long unsigned int *); - int registered; -}; - -struct wol_reply_data { - struct ethnl_reply_data base; - struct ethtool_wolinfo wol; - bool show_sopass; -}; - -struct netlink_notify { - struct net *net; - u32 portid; - int protocol; -}; - -struct nfnl_ct_hook { - size_t (*build_size)(const struct nf_conn *); - int (*build)(struct sk_buff *, struct nf_conn *, enum ip_conntrack_info, u_int16_t, u_int16_t); - int (*parse)(const struct nlattr *, struct nf_conn *); - int (*attach_expect)(const struct nlattr *, struct nf_conn *, u32, u32); - void (*seq_adjust)(struct sk_buff *, struct nf_conn *, enum ip_conntrack_info, s32); -}; - -enum nfulnl_msg_types { - NFULNL_MSG_PACKET = 0, - NFULNL_MSG_CONFIG = 1, - NFULNL_MSG_MAX = 2, -}; - -struct nfulnl_msg_packet_hdr { - __be16 hw_protocol; - __u8 hook; - __u8 _pad; -}; - -struct nfulnl_msg_packet_hw { - __be16 hw_addrlen; - __u16 _pad; - __u8 hw_addr[8]; -}; - -struct nfulnl_msg_packet_timestamp { - __be64 sec; - __be64 usec; -}; - -enum nfulnl_vlan_attr { - NFULA_VLAN_UNSPEC = 0, - NFULA_VLAN_PROTO = 1, - NFULA_VLAN_TCI = 2, - __NFULA_VLAN_MAX = 3, -}; - -enum nfulnl_attr_type { - NFULA_UNSPEC = 0, - NFULA_PACKET_HDR = 1, - NFULA_MARK = 2, - NFULA_TIMESTAMP = 3, - NFULA_IFINDEX_INDEV = 4, - NFULA_IFINDEX_OUTDEV = 5, - NFULA_IFINDEX_PHYSINDEV = 6, - NFULA_IFINDEX_PHYSOUTDEV = 7, - NFULA_HWADDR = 8, - NFULA_PAYLOAD = 9, - NFULA_PREFIX = 10, - NFULA_UID = 11, - NFULA_SEQ = 12, - NFULA_SEQ_GLOBAL = 13, - NFULA_GID = 14, - NFULA_HWTYPE = 15, - NFULA_HWHEADER = 16, - NFULA_HWLEN = 17, - NFULA_CT = 18, - NFULA_CT_INFO = 19, - NFULA_VLAN = 20, - NFULA_L2HDR = 21, - __NFULA_MAX = 22, -}; - -enum nfulnl_msg_config_cmds { - NFULNL_CFG_CMD_NONE = 0, - NFULNL_CFG_CMD_BIND = 1, - NFULNL_CFG_CMD_UNBIND = 2, - NFULNL_CFG_CMD_PF_BIND = 3, - NFULNL_CFG_CMD_PF_UNBIND = 4, -}; - -struct nfulnl_msg_config_cmd { - __u8 command; -}; - -struct nfulnl_msg_config_mode { - __be32 copy_range; - __u8 copy_mode; - __u8 _pad; -} __attribute__((packed)); - -enum nfulnl_attr_config { - NFULA_CFG_UNSPEC = 0, - NFULA_CFG_CMD = 1, - NFULA_CFG_MODE = 2, - NFULA_CFG_NLBUFSIZ = 3, - NFULA_CFG_TIMEOUT = 4, - NFULA_CFG_QTHRESH = 5, - NFULA_CFG_FLAGS = 6, - __NFULA_CFG_MAX = 7, -}; - -struct nfulnl_instance { - struct hlist_node hlist; - spinlock_t lock; - refcount_t use; - unsigned int qlen; - struct sk_buff *skb; - struct timer_list timer; - struct net *net; - netns_tracker ns_tracker; - struct user_namespace *peer_user_ns; - u32 peer_portid; - unsigned int flushtimeout; - unsigned int nlbufsiz; - unsigned int qthreshold; - u_int32_t copy_range; - u_int32_t seq; - u_int16_t group_num; - u_int16_t flags; - u_int8_t copy_mode; - struct callback_head rcu; -}; - -struct nfnl_log_net { - spinlock_t instances_lock; - struct hlist_head instance_table[16]; - atomic_t global_seq; -}; - -struct iter_state { - struct seq_net_private p; - unsigned int bucket; -}; - -struct ip_auth_hdr { - __u8 nexthdr; - __u8 hdrlen; - __be16 reserved; - __be32 spi; - __be32 seq_no; - __u8 auth_data[0]; -}; - -struct arppayload { - unsigned char mac_src[6]; - unsigned char ip_src[4]; - unsigned char mac_dst[6]; - unsigned char ip_dst[4]; -}; - -enum nft_range_ops { - NFT_RANGE_EQ = 0, - NFT_RANGE_NEQ = 1, -}; - -enum nft_range_attributes { - NFTA_RANGE_UNSPEC = 0, - NFTA_RANGE_SREG = 1, - NFTA_RANGE_OP = 2, - NFTA_RANGE_FROM_DATA = 3, - NFTA_RANGE_TO_DATA = 4, - __NFTA_RANGE_MAX = 5, -}; - -struct nft_range_expr { - struct nft_data data_from; - struct nft_data data_to; - u8 sreg; - u8 len; - enum nft_range_ops op: 8; -}; - -enum flow_cls_command { - FLOW_CLS_REPLACE = 0, - FLOW_CLS_DESTROY = 1, - FLOW_CLS_STATS = 2, - FLOW_CLS_TMPLT_CREATE = 3, - FLOW_CLS_TMPLT_DESTROY = 4, -}; - -struct flow_cls_offload { - struct flow_cls_common_offload common; - enum flow_cls_command command; - bool use_act_stats; - long unsigned int cookie; - struct flow_rule *rule; - struct flow_stats stats; - u32 classid; -}; - -enum nf_tables_msg_types { - NFT_MSG_NEWTABLE = 0, - NFT_MSG_GETTABLE = 1, - NFT_MSG_DELTABLE = 2, - NFT_MSG_NEWCHAIN = 3, - NFT_MSG_GETCHAIN = 4, - NFT_MSG_DELCHAIN = 5, - NFT_MSG_NEWRULE = 6, - NFT_MSG_GETRULE = 7, - NFT_MSG_DELRULE = 8, - NFT_MSG_NEWSET = 9, - NFT_MSG_GETSET = 10, - NFT_MSG_DELSET = 11, - NFT_MSG_NEWSETELEM = 12, - NFT_MSG_GETSETELEM = 13, - NFT_MSG_DELSETELEM = 14, - NFT_MSG_NEWGEN = 15, - NFT_MSG_GETGEN = 16, - NFT_MSG_TRACE = 17, - NFT_MSG_NEWOBJ = 18, - NFT_MSG_GETOBJ = 19, - NFT_MSG_DELOBJ = 20, - NFT_MSG_GETOBJ_RESET = 21, - NFT_MSG_NEWFLOWTABLE = 22, - NFT_MSG_GETFLOWTABLE = 23, - NFT_MSG_DELFLOWTABLE = 24, - NFT_MSG_GETRULE_RESET = 25, - NFT_MSG_DESTROYTABLE = 26, - NFT_MSG_DESTROYCHAIN = 27, - NFT_MSG_DESTROYRULE = 28, - NFT_MSG_DESTROYSET = 29, - NFT_MSG_DESTROYSETELEM = 30, - NFT_MSG_DESTROYOBJ = 31, - NFT_MSG_DESTROYFLOWTABLE = 32, - NFT_MSG_GETSETELEM_RESET = 33, - NFT_MSG_MAX = 34, -}; - -struct nft_rule { - struct list_head list; - u64 handle: 42; - u64 genmask: 2; - u64 dlen: 12; - u64 udata: 1; - unsigned char data[0]; -}; - -struct nft_trans { - struct list_head list; - struct net *net; - struct nft_table *table; - int msg_type; - u32 seq; - u16 flags; - u8 report: 1; - u8 put_net: 1; -}; - -struct nft_trans_binding { - struct nft_trans nft_trans; - struct list_head binding_list; -}; - -struct nft_trans_rule { - struct nft_trans nft_trans; - struct nft_rule *rule; - struct nft_chain *chain; - struct nft_flow_rule *flow; - u32 rule_id; - bool bound; -}; - -struct nft_trans_chain { - struct nft_trans_binding nft_trans_binding; - struct nft_chain *chain; - char *name; - struct nft_stats *stats; - u8 policy; - bool update; - bool bound; - u32 chain_id; - struct nft_base_chain *basechain; - struct list_head hook_list; -}; - -struct nft_offload_ethertype { - __be16 value; - __be16 mask; -}; - -enum nft_redir_attributes { - NFTA_REDIR_UNSPEC = 0, - NFTA_REDIR_REG_PROTO_MIN = 1, - NFTA_REDIR_REG_PROTO_MAX = 2, - NFTA_REDIR_FLAGS = 3, - __NFTA_REDIR_MAX = 4, -}; - -struct nf_nat_range { - unsigned int flags; - union nf_inet_addr min_addr; - union nf_inet_addr max_addr; - union nf_conntrack_man_proto min_proto; - union nf_conntrack_man_proto max_proto; -}; - -struct nft_redir { - u8 sreg_proto_min; - u8 sreg_proto_max; - u16 flags; -}; - -struct xt_classify_target_info { - __u32 priority; -}; - -enum { - XT_CONNTRACK_STATE = 1, - XT_CONNTRACK_PROTO = 2, - XT_CONNTRACK_ORIGSRC = 4, - XT_CONNTRACK_ORIGDST = 8, - XT_CONNTRACK_REPLSRC = 16, - XT_CONNTRACK_REPLDST = 32, - XT_CONNTRACK_STATUS = 64, - XT_CONNTRACK_EXPIRES = 128, - XT_CONNTRACK_ORIGSRC_PORT = 256, - XT_CONNTRACK_ORIGDST_PORT = 512, - XT_CONNTRACK_REPLSRC_PORT = 1024, - XT_CONNTRACK_REPLDST_PORT = 2048, - XT_CONNTRACK_DIRECTION = 4096, - XT_CONNTRACK_STATE_ALIAS = 8192, -}; - -struct xt_conntrack_mtinfo1 { - union nf_inet_addr origsrc_addr; - union nf_inet_addr origsrc_mask; - union nf_inet_addr origdst_addr; - union nf_inet_addr origdst_mask; - union nf_inet_addr replsrc_addr; - union nf_inet_addr replsrc_mask; - union nf_inet_addr repldst_addr; - union nf_inet_addr repldst_mask; - __u32 expires_min; - __u32 expires_max; - __u16 l4proto; - __be16 origsrc_port; - __be16 origdst_port; - __be16 replsrc_port; - __be16 repldst_port; - __u16 match_flags; - __u16 invert_flags; - __u8 state_mask; - __u8 status_mask; -}; - -struct xt_conntrack_mtinfo2 { - union nf_inet_addr origsrc_addr; - union nf_inet_addr origsrc_mask; - union nf_inet_addr origdst_addr; - union nf_inet_addr origdst_mask; - union nf_inet_addr replsrc_addr; - union nf_inet_addr replsrc_mask; - union nf_inet_addr repldst_addr; - union nf_inet_addr repldst_mask; - __u32 expires_min; - __u32 expires_max; - __u16 l4proto; - __be16 origsrc_port; - __be16 origdst_port; - __be16 replsrc_port; - __be16 repldst_port; - __u16 match_flags; - __u16 invert_flags; - __u16 state_mask; - __u16 status_mask; -}; - -struct xt_conntrack_mtinfo3 { - union nf_inet_addr origsrc_addr; - union nf_inet_addr origsrc_mask; - union nf_inet_addr origdst_addr; - union nf_inet_addr origdst_mask; - union nf_inet_addr replsrc_addr; - union nf_inet_addr replsrc_mask; - union nf_inet_addr repldst_addr; - union nf_inet_addr repldst_mask; - __u32 expires_min; - __u32 expires_max; - __u16 l4proto; - __u16 origsrc_port; - __u16 origdst_port; - __u16 replsrc_port; - __u16 repldst_port; - __u16 match_flags; - __u16 invert_flags; - __u16 state_mask; - __u16 status_mask; - __u16 origsrc_port_high; - __u16 origdst_port_high; - __u16 replsrc_port_high; - __u16 repldst_port_high; -}; - -struct xt_dccp_info { - __u16 dpts[2]; - __u16 spts[2]; - __u16 flags; - __u16 invflags; - __u16 typemask; - __u8 option; -}; - -enum { - XT_HASHLIMIT_HASH_DIP = 1, - XT_HASHLIMIT_HASH_DPT = 2, - XT_HASHLIMIT_HASH_SIP = 4, - XT_HASHLIMIT_HASH_SPT = 8, - XT_HASHLIMIT_INVERT = 16, - XT_HASHLIMIT_BYTES = 32, - XT_HASHLIMIT_RATE_MATCH = 64, -}; - -struct hashlimit_cfg3 { - __u64 avg; - __u64 burst; - __u32 mode; - __u32 size; - __u32 max; - __u32 gc_interval; - __u32 expire; - __u32 interval; - __u8 srcmask; - __u8 dstmask; -}; - -struct xt_hashlimit_htable { - struct hlist_node node; - refcount_t use; - u_int8_t family; - bool rnd_initialized; - struct hashlimit_cfg3 cfg; - spinlock_t lock; - u_int32_t rnd; - unsigned int count; - struct delayed_work gc_work; - struct proc_dir_entry *pde; - const char *name; - struct net *net; - struct hlist_head hash[0]; -}; - -struct hashlimit_cfg1 { - __u32 mode; - __u32 avg; - __u32 burst; - __u32 size; - __u32 max; - __u32 gc_interval; - __u32 expire; - __u8 srcmask; - __u8 dstmask; -}; - -struct hashlimit_cfg2 { - __u64 avg; - __u64 burst; - __u32 mode; - __u32 size; - __u32 max; - __u32 gc_interval; - __u32 expire; - __u8 srcmask; - __u8 dstmask; -}; - -struct xt_hashlimit_mtinfo1 { - char name[16]; - struct hashlimit_cfg1 cfg; - struct xt_hashlimit_htable *hinfo; -}; - -struct xt_hashlimit_mtinfo2 { - char name[255]; - struct hashlimit_cfg2 cfg; - struct xt_hashlimit_htable *hinfo; -}; - -struct xt_hashlimit_mtinfo3 { - char name[255]; - struct hashlimit_cfg3 cfg; - struct xt_hashlimit_htable *hinfo; -}; - -struct hashlimit_net { - struct hlist_head htables; - struct proc_dir_entry *ipt_hashlimit; - struct proc_dir_entry *ip6t_hashlimit; -}; - -struct dsthash_dst { - union { - struct { - __be32 src; - __be32 dst; - } ip; - struct { - __be32 src[4]; - __be32 dst[4]; - } ip6; - }; - __be16 src_port; - __be16 dst_port; -}; - -struct dsthash_ent { - struct hlist_node node; - struct dsthash_dst dst; - spinlock_t lock; - long unsigned int expires; - struct { - long unsigned int prev; - union { - struct { - u_int64_t credit; - u_int64_t credit_cap; - u_int64_t cost; - }; - struct { - u_int32_t interval; - u_int32_t prev_window; - u_int64_t current_rate; - u_int64_t rate; - int64_t burst; - }; - }; - } rateinfo; - struct callback_head rcu; -}; - -enum { - IPRANGE_SRC = 1, - IPRANGE_DST = 2, - IPRANGE_SRC_INV = 16, - IPRANGE_DST_INV = 32, -}; - -struct xt_iprange_mtinfo { - union nf_inet_addr src_min; - union nf_inet_addr src_max; - union nf_inet_addr dst_min; - union nf_inet_addr dst_max; - __u8 flags; -}; - -enum xt_statistic_mode { - XT_STATISTIC_MODE_RANDOM = 0, - XT_STATISTIC_MODE_NTH = 1, - __XT_STATISTIC_MODE_MAX = 2, -}; - -enum xt_statistic_flags { - XT_STATISTIC_INVERT = 1, -}; - -struct xt_statistic_priv; - -struct xt_statistic_info { - __u16 mode; - __u16 flags; - union { - struct { - __u32 probability; - } random; - struct { - __u32 every; - __u32 packet; - __u32 count; - } nth; - } u; - struct xt_statistic_priv *master; -}; - -struct xt_statistic_priv { - atomic_t count; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum { - MAC_UNSET = 0, - MAC_FILLED = 1, -}; - -struct bitmap_ipmac { - long unsigned int *members; - u32 first_ip; - u32 last_ip; - u32 elements; - size_t memsize; - struct timer_list gc; - struct ip_set *set; - unsigned char extensions[0]; -}; - -struct bitmap_ipmac_adt_elem { - unsigned char ether[6]; - u16 id; - u16 add_mac; -}; - -struct bitmap_ipmac_elem { - unsigned char ether[6]; - unsigned char filled; - long: 0; -}; - -struct ip_vs_wrr_mark { - struct ip_vs_dest *cl; - int cw; - int mw; - int di; - struct callback_head callback_head; -}; - -enum tcp_queue { - TCP_FRAG_IN_WRITE_QUEUE = 0, - TCP_FRAG_IN_RTX_QUEUE = 1, -}; - -enum tcp_ca_ack_event_flags { - CA_ACK_SLOWPATH = 1, - CA_ACK_WIN_UPDATE = 2, - CA_ACK_ECE = 4, -}; - -enum { - SCM_TSTAMP_SND = 0, - SCM_TSTAMP_SCHED = 1, - SCM_TSTAMP_ACK = 2, -}; - -struct tcp_sacktag_state { - u64 first_sackt; - u64 last_sackt; - u32 reord; - u32 sack_delivered; - int flag; - unsigned int mss_now; - struct rate_sample *rate; -}; - -struct ping_table { - struct hlist_head hash[64]; - spinlock_t lock; -}; - -enum { - IFLA_VTI_UNSPEC = 0, - IFLA_VTI_LINK = 1, - IFLA_VTI_IKEY = 2, - IFLA_VTI_OKEY = 3, - IFLA_VTI_LOCAL = 4, - IFLA_VTI_REMOTE = 5, - IFLA_VTI_FWMARK = 6, - __IFLA_VTI_MAX = 7, -}; - -struct ip_tunnel_6rd_parm { - struct in6_addr prefix; - __be32 relay_prefix; - u16 prefixlen; - u16 relay_prefixlen; -}; - -struct ip_tunnel_prl_entry { - struct ip_tunnel_prl_entry *next; - __be32 addr; - u16 flags; - struct callback_head callback_head; -}; - -struct ip_tunnel { - struct ip_tunnel *next; - struct hlist_node hash_node; - struct net_device *dev; - netdevice_tracker dev_tracker; - struct net *net; - long unsigned int err_time; - int err_count; - u32 i_seqno; - atomic_t o_seqno; - int tun_hlen; - u32 index; - u8 erspan_ver; - u8 dir; - u16 hwid; - struct dst_cache dst_cache; - struct ip_tunnel_parm_kern parms; - int mlink; - int encap_hlen; - int hlen; - struct ip_tunnel_encap encap; - struct ip_tunnel_6rd_parm ip6rd; - struct ip_tunnel_prl_entry *prl; - unsigned int prl_count; - unsigned int ip_tnl_net_id; - struct gro_cells gro_cells; - __u32 fwmark; - bool collect_md; - bool ignore_df; -}; - -struct ip_tunnel_net { - struct net_device *fb_tunnel_dev; - struct rtnl_link_ops *rtnl_link_ops; - struct hlist_head tunnels[128]; - struct ip_tunnel *collect_md_tun; - int type; -}; - -struct xfrm_mode_skb_cb { - struct xfrm_tunnel_skb_cb header; - __be16 id; - __be16 frag_off; - u8 ihl; - u8 tos; - u8 ttl; - u8 protocol; - u8 optlen; - u8 flow_lbl[3]; -}; - -struct nf_defrag_hook { - struct module *owner; - int (*enable)(struct net *); - void (*disable)(struct net *); -}; - -struct inet_diag_sockid { - __be16 idiag_sport; - __be16 idiag_dport; - __be32 idiag_src[4]; - __be32 idiag_dst[4]; - __u32 idiag_if; - __u32 idiag_cookie[2]; -}; - -struct inet_diag_req_v2 { - __u8 sdiag_family; - __u8 sdiag_protocol; - __u8 idiag_ext; - __u8 pad; - __u32 idiag_states; - struct inet_diag_sockid id; -}; - -struct inet_diag_msg { - __u8 idiag_family; - __u8 idiag_state; - __u8 idiag_timer; - __u8 idiag_retrans; - struct inet_diag_sockid id; - __u32 idiag_expires; - __u32 idiag_rqueue; - __u32 idiag_wqueue; - __u32 idiag_uid; - __u32 idiag_inode; -}; - -struct inet_diag_handler { - struct module *owner; - void (*dump)(struct sk_buff *, struct netlink_callback *, const struct inet_diag_req_v2 *); - int (*dump_one)(struct netlink_callback *, const struct inet_diag_req_v2 *); - void (*idiag_get_info)(struct sock *, struct inet_diag_msg *, void *); - int (*idiag_get_aux)(struct sock *, bool, struct sk_buff *); - size_t (*idiag_get_aux_size)(struct sock *, bool); - int (*destroy)(struct sk_buff *, const struct inet_diag_req_v2 *); - __u16 idiag_type; - __u16 idiag_info_size; -}; - -struct inet_diag_dump_data { - struct nlattr *req_nlas[4]; - struct bpf_sk_storage_diag *bpf_stg_diag; -}; - -struct unix_diag_req { - __u8 sdiag_family; - __u8 sdiag_protocol; - __u16 pad; - __u32 udiag_states; - __u32 udiag_ino; - __u32 udiag_show; - __u32 udiag_cookie[2]; -}; - -struct unix_diag_msg { - __u8 udiag_family; - __u8 udiag_type; - __u8 udiag_state; - __u8 pad; - __u32 udiag_ino; - __u32 udiag_cookie[2]; -}; - -enum { - UNIX_DIAG_NAME = 0, - UNIX_DIAG_VFS = 1, - UNIX_DIAG_PEER = 2, - UNIX_DIAG_ICONS = 3, - UNIX_DIAG_RQLEN = 4, - UNIX_DIAG_MEMINFO = 5, - UNIX_DIAG_SHUTDOWN = 6, - UNIX_DIAG_UID = 7, - __UNIX_DIAG_MAX = 8, -}; - -struct unix_diag_vfs { - __u32 udiag_vfs_ino; - __u32 udiag_vfs_dev; -}; - -struct unix_diag_rqlen { - __u32 udiag_rqueue; - __u32 udiag_wqueue; -}; - -struct group_source_req { - __u32 gsr_interface; - struct __kernel_sockaddr_storage gsr_group; - struct __kernel_sockaddr_storage gsr_source; -}; - -struct mld_msg { - struct icmp6hdr mld_hdr; - struct in6_addr mld_mca; -}; - -struct mld2_grec { - __u8 grec_type; - __u8 grec_auxwords; - __be16 grec_nsrcs; - struct in6_addr grec_mca; - struct in6_addr grec_src[0]; -}; - -struct mld2_report { - struct icmp6hdr mld2r_hdr; - struct mld2_grec mld2r_grec[0]; -}; - -struct mld2_query { - struct icmp6hdr mld2q_hdr; - struct in6_addr mld2q_mca; - __u8 mld2q_qrv: 3; - __u8 mld2q_suppress: 1; - __u8 mld2q_resv2: 4; - __u8 mld2q_qqic; - __be16 mld2q_nsrcs; - struct in6_addr mld2q_srcs[0]; -}; - -struct igmp6_mc_iter_state { - struct seq_net_private p; - struct net_device *dev; - struct inet6_dev *idev; -}; - -struct igmp6_mcf_iter_state { - struct seq_net_private p; - struct net_device *dev; - struct inet6_dev *idev; - struct ifmcaddr6 *im; -}; - -enum { - ILA_CSUM_ADJUST_TRANSPORT = 0, - ILA_CSUM_NEUTRAL_MAP = 1, - ILA_CSUM_NO_ACTION = 2, - ILA_CSUM_NEUTRAL_MAP_AUTO = 3, -}; - -struct ila_locator { - union { - __u8 v8[8]; - __be16 v16[4]; - __be32 v32[2]; - __be64 v64; - }; -}; - -struct ila_identifier { - union { - struct { - u8 __space: 4; - u8 csum_neutral: 1; - u8 type: 3; - u8 __space2[7]; - }; - __u8 v8[8]; - __be16 v16[4]; - __be32 v32[2]; - __be64 v64; - }; -}; - -struct ila_addr { - union { - struct in6_addr addr; - struct { - struct ila_locator loc; - struct ila_identifier ident; - }; - }; -}; - -struct ila_params { - struct ila_locator locator; - struct ila_locator locator_match; - __wsum csum_diff; - u8 csum_mode; - u8 ident_type; -}; - -struct ip6t_frag { - __u32 ids[2]; - __u32 hdrlen; - __u8 flags; - __u8 invflags; -}; - -struct ip_tunnel_parm { - char name[16]; - int link; - __be16 i_flags; - __be16 o_flags; - __be32 i_key; - __be32 o_key; - struct iphdr iph; -}; - -enum { - IFLA_IPTUN_UNSPEC = 0, - IFLA_IPTUN_LINK = 1, - IFLA_IPTUN_LOCAL = 2, - IFLA_IPTUN_REMOTE = 3, - IFLA_IPTUN_TTL = 4, - IFLA_IPTUN_TOS = 5, - IFLA_IPTUN_ENCAP_LIMIT = 6, - IFLA_IPTUN_FLOWINFO = 7, - IFLA_IPTUN_FLAGS = 8, - IFLA_IPTUN_PROTO = 9, - IFLA_IPTUN_PMTUDISC = 10, - IFLA_IPTUN_6RD_PREFIX = 11, - IFLA_IPTUN_6RD_RELAY_PREFIX = 12, - IFLA_IPTUN_6RD_PREFIXLEN = 13, - IFLA_IPTUN_6RD_RELAY_PREFIXLEN = 14, - IFLA_IPTUN_ENCAP_TYPE = 15, - IFLA_IPTUN_ENCAP_FLAGS = 16, - IFLA_IPTUN_ENCAP_SPORT = 17, - IFLA_IPTUN_ENCAP_DPORT = 18, - IFLA_IPTUN_COLLECT_METADATA = 19, - IFLA_IPTUN_FWMARK = 20, - __IFLA_IPTUN_MAX = 21, -}; - -struct ip_tunnel_prl { - __be32 addr; - __u16 flags; - __u16 __reserved; - __u32 datalen; - __u32 __reserved2; -}; - -struct ip_tunnel_6rd { - struct in6_addr prefix; - __be32 relay_prefix; - __u16 prefixlen; - __u16 relay_prefixlen; -}; - -struct sit_net { - struct ip_tunnel *tunnels_r_l[16]; - struct ip_tunnel *tunnels_r[16]; - struct ip_tunnel *tunnels_l[16]; - struct ip_tunnel *tunnels_wc[1]; - struct ip_tunnel **tunnels[4]; - struct net_device *fb_tunnel_dev; -}; - -struct sockaddr_pkt { - short unsigned int spkt_family; - unsigned char spkt_device[14]; - __be16 spkt_protocol; -}; - -struct sockaddr_ll { - short unsigned int sll_family; - __be16 sll_protocol; - int sll_ifindex; - short unsigned int sll_hatype; - unsigned char sll_pkttype; - unsigned char sll_halen; - unsigned char sll_addr[8]; -}; - -struct tpacket_stats { - unsigned int tp_packets; - unsigned int tp_drops; -}; - -struct tpacket_stats_v3 { - unsigned int tp_packets; - unsigned int tp_drops; - unsigned int tp_freeze_q_cnt; -}; - -struct tpacket_rollover_stats { - __u64 tp_all; - __u64 tp_huge; - __u64 tp_failed; -}; - -union tpacket_stats_u { - struct tpacket_stats stats1; - struct tpacket_stats_v3 stats3; -}; - -struct tpacket_auxdata { - __u32 tp_status; - __u32 tp_len; - __u32 tp_snaplen; - __u16 tp_mac; - __u16 tp_net; - __u16 tp_vlan_tci; - __u16 tp_vlan_tpid; -}; - -struct tpacket_hdr { - long unsigned int tp_status; - unsigned int tp_len; - unsigned int tp_snaplen; - short unsigned int tp_mac; - short unsigned int tp_net; - unsigned int tp_sec; - unsigned int tp_usec; -}; - -struct tpacket2_hdr { - __u32 tp_status; - __u32 tp_len; - __u32 tp_snaplen; - __u16 tp_mac; - __u16 tp_net; - __u32 tp_sec; - __u32 tp_nsec; - __u16 tp_vlan_tci; - __u16 tp_vlan_tpid; - __u8 tp_padding[4]; -}; - -struct tpacket_hdr_variant1 { - __u32 tp_rxhash; - __u32 tp_vlan_tci; - __u16 tp_vlan_tpid; - __u16 tp_padding; -}; - -struct tpacket3_hdr { - __u32 tp_next_offset; - __u32 tp_sec; - __u32 tp_nsec; - __u32 tp_snaplen; - __u32 tp_len; - __u32 tp_status; - __u16 tp_mac; - __u16 tp_net; - union { - struct tpacket_hdr_variant1 hv1; - }; - __u8 tp_padding[8]; -}; - -struct tpacket_bd_ts { - unsigned int ts_sec; - union { - unsigned int ts_usec; - unsigned int ts_nsec; - }; -}; - -struct tpacket_hdr_v1 { - __u32 block_status; - __u32 num_pkts; - __u32 offset_to_first_pkt; - __u32 blk_len; - __u64 seq_num; - struct tpacket_bd_ts ts_first_pkt; - struct tpacket_bd_ts ts_last_pkt; -}; - -union tpacket_bd_header_u { - struct tpacket_hdr_v1 bh1; -}; - -struct tpacket_block_desc { - __u32 version; - __u32 offset_to_priv; - union tpacket_bd_header_u hdr; -}; - -enum tpacket_versions { - TPACKET_V1 = 0, - TPACKET_V2 = 1, - TPACKET_V3 = 2, -}; - -struct tpacket_req { - unsigned int tp_block_size; - unsigned int tp_block_nr; - unsigned int tp_frame_size; - unsigned int tp_frame_nr; -}; - -struct tpacket_req3 { - unsigned int tp_block_size; - unsigned int tp_block_nr; - unsigned int tp_frame_size; - unsigned int tp_frame_nr; - unsigned int tp_retire_blk_tov; - unsigned int tp_sizeof_priv; - unsigned int tp_feature_req_word; -}; - -union tpacket_req_u { - struct tpacket_req req; - struct tpacket_req3 req3; -}; - -struct fanout_args { - __u16 id; - __u16 type_flags; - __u32 max_num_members; -}; - -struct packet_mclist { - struct packet_mclist *next; - int ifindex; - int count; - short unsigned int type; - short unsigned int alen; - unsigned char addr[32]; -}; - -struct pgv; - -struct tpacket_kbdq_core { - struct pgv *pkbdq; - unsigned int feature_req_word; - unsigned int hdrlen; - unsigned char reset_pending_on_curr_blk; - unsigned char delete_blk_timer; - short unsigned int kactive_blk_num; - short unsigned int blk_sizeof_priv; - short unsigned int last_kactive_blk_num; - char *pkblk_start; - char *pkblk_end; - int kblk_size; - unsigned int max_frame_len; - unsigned int knum_blocks; - uint64_t knxt_seq_num; - char *prev; - char *nxt_offset; - struct sk_buff *skb; - rwlock_t blk_fill_in_prog_lock; - short unsigned int retire_blk_tov; - short unsigned int version; - long unsigned int tov_in_jiffies; - struct timer_list retire_blk_timer; -}; - -struct pgv { - char *buffer; -}; - -struct packet_ring_buffer { - struct pgv *pg_vec; - unsigned int head; - unsigned int frames_per_block; - unsigned int frame_size; - unsigned int frame_max; - unsigned int pg_vec_order; - unsigned int pg_vec_pages; - unsigned int pg_vec_len; - unsigned int *pending_refcnt; - union { - long unsigned int *rx_owner_map; - struct tpacket_kbdq_core prb_bdqc; - }; -}; - -struct packet_fanout { - possible_net_t net; - unsigned int num_members; - u32 max_num_members; - u16 id; - u8 type; - u8 flags; - union { - atomic_t rr_cur; - struct bpf_prog *bpf_prog; - }; - struct list_head list; - spinlock_t lock; - refcount_t sk_ref; - long: 64; - struct packet_type prot_hook; - struct sock *arr[0]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct packet_rollover { - int sock; - atomic_long_t num; - atomic_long_t num_huge; - atomic_long_t num_failed; - long: 64; - long: 64; - long: 64; - long: 64; - u32 history[16]; -}; - -struct packet_sock { - struct sock sk; - struct packet_fanout *fanout; - union tpacket_stats_u stats; - struct packet_ring_buffer rx_ring; - struct packet_ring_buffer tx_ring; - int copy_thresh; - spinlock_t bind_lock; - struct mutex pg_vec_lock; - long unsigned int flags; - int ifindex; - u8 vnet_hdr_sz; - __be16 num; - struct packet_rollover *rollover; - struct packet_mclist *mclist; - atomic_long_t mapped; - enum tpacket_versions tp_version; - unsigned int tp_hdrlen; - unsigned int tp_reserve; - unsigned int tp_tstamp; - struct completion skb_completion; - struct net_device *cached_dev; - long: 64; - long: 64; - struct packet_type prot_hook; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - atomic_t tp_drops; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum packet_sock_flags { - PACKET_SOCK_ORIGDEV = 0, - PACKET_SOCK_AUXDATA = 1, - PACKET_SOCK_TX_HAS_OFF = 2, - PACKET_SOCK_TP_LOSS = 3, - PACKET_SOCK_RUNNING = 4, - PACKET_SOCK_PRESSURE = 5, - PACKET_SOCK_QDISC_BYPASS = 6, -}; - -struct packet_mreq_max { - int mr_ifindex; - short unsigned int mr_type; - short unsigned int mr_alen; - unsigned char mr_address[32]; -}; - -union tpacket_uhdr { - struct tpacket_hdr *h1; - struct tpacket2_hdr *h2; - struct tpacket3_hdr *h3; - void *raw; -}; - -struct packet_skb_cb { - union { - struct sockaddr_pkt pkt; - union { - unsigned int origlen; - struct sockaddr_ll ll; - }; - } sa; -}; - -struct ebt_pkttype_info { - __u8 pkt_type; - __u8 invert; -}; - -enum rpc_msg_type { - RPC_CALL = 0, - RPC_REPLY = 1, -}; - -struct svc_sock { - struct svc_xprt sk_xprt; - struct socket *sk_sock; - struct sock *sk_sk; - void (*sk_ostate)(struct sock *); - void (*sk_odata)(struct sock *); - void (*sk_owspace)(struct sock *); - __be32 sk_marker; - u32 sk_tcplen; - u32 sk_datalen; - struct page_frag_cache sk_frag_cache; - struct completion sk_handshake_done; - struct page *sk_pages[259]; -}; - -enum { - TLS_RECORD_TYPE_CHANGE_CIPHER_SPEC = 20, - TLS_RECORD_TYPE_ALERT = 21, - TLS_RECORD_TYPE_HANDSHAKE = 22, - TLS_RECORD_TYPE_DATA = 23, - TLS_RECORD_TYPE_HEARTBEAT = 24, - TLS_RECORD_TYPE_TLS12_CID = 25, - TLS_RECORD_TYPE_ACK = 26, -}; - -struct pppol2tp_addr { - __kernel_pid_t pid; - int fd; - struct sockaddr_in addr; - __u16 s_tunnel; - __u16 s_session; - __u16 d_tunnel; - __u16 d_session; -}; - -struct pppol2tpin6_addr { - __kernel_pid_t pid; - int fd; - __u16 s_tunnel; - __u16 s_session; - __u16 d_tunnel; - __u16 d_session; - struct sockaddr_in6 addr; -}; - -struct pppol2tpv3_addr { - __kernel_pid_t pid; - int fd; - struct sockaddr_in addr; - __u32 s_tunnel; - __u32 s_session; - __u32 d_tunnel; - __u32 d_session; -}; - -struct pppol2tpv3in6_addr { - __kernel_pid_t pid; - int fd; - __u32 s_tunnel; - __u32 s_session; - __u32 d_tunnel; - __u32 d_session; - struct sockaddr_in6 addr; -}; - -enum { - PPPOL2TP_SO_DEBUG = 1, - PPPOL2TP_SO_RECVSEQ = 2, - PPPOL2TP_SO_SENDSEQ = 3, - PPPOL2TP_SO_LNSMODE = 4, - PPPOL2TP_SO_REORDERTO = 5, -}; - -struct sockaddr_pppol2tp { - __kernel_sa_family_t sa_family; - unsigned int sa_protocol; - struct pppol2tp_addr pppol2tp; -} __attribute__((packed)); - -struct sockaddr_pppol2tpin6 { - __kernel_sa_family_t sa_family; - unsigned int sa_protocol; - struct pppol2tpin6_addr pppol2tp; -} __attribute__((packed)); - -struct sockaddr_pppol2tpv3 { - __kernel_sa_family_t sa_family; - unsigned int sa_protocol; - struct pppol2tpv3_addr pppol2tp; -} __attribute__((packed)); - -struct sockaddr_pppol2tpv3in6 { - __kernel_sa_family_t sa_family; - unsigned int sa_protocol; - struct pppol2tpv3in6_addr pppol2tp; -} __attribute__((packed)); - -struct pppol2tp_ioc_stats { - __u16 tunnel_id; - __u16 session_id; - __u32 using_ipsec: 1; - __u64 tx_packets; - __u64 tx_bytes; - __u64 tx_errors; - __u64 rx_packets; - __u64 rx_bytes; - __u64 rx_seq_discards; - __u64 rx_oos_packets; - __u64 rx_errors; -}; - -struct pppol2tp_session { - int owner; - struct mutex sk_lock; - struct sock *sk; - struct sock *__sk; -}; - -struct l2tp_connect_info { - u8 version; - int fd; - u32 tunnel_id; - u32 peer_tunnel_id; - u32 session_id; - u32 peer_session_id; -}; - -struct pppol2tp_seq_data { - struct seq_net_private p; - long unsigned int tkey; - long unsigned int skey; - struct l2tp_tunnel *tunnel; - struct l2tp_session *session; -}; - -enum sctp_event_type { - SCTP_EVENT_T_CHUNK = 1, - SCTP_EVENT_T_TIMEOUT = 2, - SCTP_EVENT_T_OTHER = 3, - SCTP_EVENT_T_PRIMITIVE = 4, -}; - -enum { - SCTP_PF_EXPOSE_UNSET = 0, - SCTP_PF_EXPOSE_DISABLE = 1, - SCTP_PF_EXPOSE_ENABLE = 2, -}; - -struct geneve_port { - u16 dst_port; -}; - -struct stack_info { - long unsigned int low; - long unsigned int high; -}; - -struct unwind_state { - long unsigned int fp; - long unsigned int pc; - struct stack_info stack; - struct stack_info *stacks; - int nr_stacks; -}; - -struct kunwind_state { - struct unwind_state common; - struct task_struct *task; - int graph_idx; - struct llist_node *kr_cur; -}; - -typedef bool (*kunwind_consume_fn)(const struct kunwind_state *, void *); - -struct kunwind_consume_entry_data { - stack_trace_consume_fn consume_entry; - void *cookie; -}; - -struct bpf_unwind_consume_entry_data { - bool (*consume_entry)(void *, u64, u64, u64); - void *cookie; -}; - -struct frame_tail { - struct frame_tail *fp; - long unsigned int lr; -}; - -enum bug_trap_type { - BUG_TRAP_TYPE_NONE = 0, - BUG_TRAP_TYPE_WARN = 1, - BUG_TRAP_TYPE_BUG = 2, -}; - -enum siginfo_layout { - SIL_KILL = 0, - SIL_TIMER = 1, - SIL_POLL = 2, - SIL_FAULT = 3, - SIL_FAULT_TRAPNO = 4, - SIL_FAULT_MCEERR = 5, - SIL_FAULT_BNDERR = 6, - SIL_FAULT_PKUERR = 7, - SIL_FAULT_PERF_EVENT = 8, - SIL_CHLD = 9, - SIL_RT = 10, - SIL_SYS = 11, -}; - -struct break_hook { - struct list_head node; - int (*fn)(struct pt_regs *, long unsigned int); - u16 imm; - u16 mask; -}; - -enum die_val { - DIE_UNUSED = 0, - DIE_OOPS = 1, -}; - -struct sys64_hook { - long unsigned int esr_mask; - long unsigned int esr_val; - void (*handler)(long unsigned int, struct pt_regs *); -}; - -typedef __s64 Elf64_Sxword; - -struct elf64_rela { - Elf64_Addr r_offset; - Elf64_Xword r_info; - Elf64_Sxword r_addend; -}; - -typedef struct elf64_rela Elf64_Rela; - -struct dyn_arch_ftrace {}; - -enum { - FTRACE_UPDATE_CALLS = 1, - FTRACE_DISABLE_CALLS = 2, - FTRACE_UPDATE_TRACE_FUNC = 4, - FTRACE_START_FUNC_RET = 8, - FTRACE_STOP_FUNC_RET = 16, - FTRACE_MAY_SLEEP = 32, -}; - -enum { - FTRACE_FL_ENABLED = 2147483648, - FTRACE_FL_REGS = 1073741824, - FTRACE_FL_REGS_EN = 536870912, - FTRACE_FL_TRAMP = 268435456, - FTRACE_FL_TRAMP_EN = 134217728, - FTRACE_FL_IPMODIFY = 67108864, - FTRACE_FL_DISABLED = 33554432, - FTRACE_FL_DIRECT = 16777216, - FTRACE_FL_DIRECT_EN = 8388608, - FTRACE_FL_CALL_OPS = 4194304, - FTRACE_FL_CALL_OPS_EN = 2097152, - FTRACE_FL_TOUCHED = 1048576, - FTRACE_FL_MODIFIED = 524288, -}; - -struct dyn_ftrace { - long unsigned int ip; - long unsigned int flags; - struct dyn_arch_ftrace arch; -}; - -struct fregs_offset { - const char *name; - int offset; -}; - -enum execmem_range_flags { - EXECMEM_KASAN_SHADOW = 1, -}; - -struct execmem_range { - long unsigned int start; - long unsigned int end; - long unsigned int fallback_start; - long unsigned int fallback_end; - pgprot_t pgprot; - unsigned int alignment; - enum execmem_range_flags flags; -}; - -struct execmem_info { - struct execmem_range ranges[5]; -}; - -enum kvm_arch_timers { - TIMER_PTIMER = 0, - TIMER_VTIMER = 1, - NR_KVM_EL0_TIMERS = 2, - TIMER_HVTIMER = 2, - TIMER_HPTIMER = 3, - NR_KVM_TIMERS = 4, -}; - -enum fgt_group_id { - __NO_FGT_GROUP__ = 0, - HFGxTR_GROUP = 1, - HDFGRTR_GROUP = 2, - HDFGWTR_GROUP = 2, - HFGITR_GROUP = 3, - HAFGRTR_GROUP = 4, - __NR_FGT_GROUP_IDS__ = 5, -}; - -enum vcpu_sysreg { - __INVALID_SYSREG__ = 0, - MPIDR_EL1 = 1, - CLIDR_EL1 = 2, - CSSELR_EL1 = 3, - TPIDR_EL0 = 4, - TPIDRRO_EL0 = 5, - TPIDR_EL1 = 6, - CNTKCTL_EL1 = 7, - PAR_EL1 = 8, - MDCCINT_EL1 = 9, - OSLSR_EL1 = 10, - DISR_EL1 = 11, - PMCR_EL0 = 12, - PMSELR_EL0 = 13, - PMEVCNTR0_EL0 = 14, - PMEVCNTR30_EL0 = 44, - PMCCNTR_EL0 = 45, - PMEVTYPER0_EL0 = 46, - PMEVTYPER30_EL0 = 76, - PMCCFILTR_EL0 = 77, - PMCNTENSET_EL0 = 78, - PMINTENSET_EL1 = 79, - PMOVSSET_EL0 = 80, - PMUSERENR_EL0 = 81, - APIAKEYLO_EL1 = 82, - APIAKEYHI_EL1 = 83, - APIBKEYLO_EL1 = 84, - APIBKEYHI_EL1 = 85, - APDAKEYLO_EL1 = 86, - APDAKEYHI_EL1 = 87, - APDBKEYLO_EL1 = 88, - APDBKEYHI_EL1 = 89, - APGAKEYLO_EL1 = 90, - APGAKEYHI_EL1 = 91, - RGSR_EL1 = 92, - GCR_EL1 = 93, - TFSRE0_EL1 = 94, - POR_EL0 = 95, - SVCR = 96, - FPMR = 97, - DACR32_EL2 = 98, - IFSR32_EL2 = 99, - FPEXC32_EL2 = 100, - DBGVCR32_EL2 = 101, - SCTLR_EL2 = 102, - ACTLR_EL2 = 103, - MDCR_EL2 = 104, - CPTR_EL2 = 105, - HACR_EL2 = 106, - ZCR_EL2 = 107, - TTBR0_EL2 = 108, - TTBR1_EL2 = 109, - TCR_EL2 = 110, - SPSR_EL2 = 111, - ELR_EL2 = 112, - AFSR0_EL2 = 113, - AFSR1_EL2 = 114, - ESR_EL2 = 115, - FAR_EL2 = 116, - HPFAR_EL2 = 117, - MAIR_EL2 = 118, - AMAIR_EL2 = 119, - VBAR_EL2 = 120, - RVBAR_EL2 = 121, - CONTEXTIDR_EL2 = 122, - CNTHCTL_EL2 = 123, - SP_EL2 = 124, - CNTHP_CTL_EL2 = 125, - CNTHP_CVAL_EL2 = 126, - CNTHV_CTL_EL2 = 127, - CNTHV_CVAL_EL2 = 128, - __VNCR_START__ = 129, - __before_SCTLR_EL1 = 130, - SCTLR_EL1 = 163, - __after_SCTLR_EL1 = 163, - __before_ACTLR_EL1 = 164, - ACTLR_EL1 = 164, - __after_ACTLR_EL1 = 164, - __before_CPACR_EL1 = 165, - CPACR_EL1 = 161, - __after_CPACR_EL1 = 164, - __before_ZCR_EL1 = 165, - ZCR_EL1 = 189, - __after_ZCR_EL1 = 189, - __before_TTBR0_EL1 = 190, - TTBR0_EL1 = 193, - __after_TTBR0_EL1 = 193, - __before_TTBR1_EL1 = 194, - TTBR1_EL1 = 195, - __after_TTBR1_EL1 = 195, - __before_TCR_EL1 = 196, - TCR_EL1 = 165, - __after_TCR_EL1 = 195, - __before_TCR2_EL1 = 196, - TCR2_EL1 = 207, - __after_TCR2_EL1 = 207, - __before_ESR_EL1 = 208, - ESR_EL1 = 168, - __after_ESR_EL1 = 207, - __before_AFSR0_EL1 = 208, - AFSR0_EL1 = 166, - __after_AFSR0_EL1 = 207, - __before_AFSR1_EL1 = 208, - AFSR1_EL1 = 167, - __after_AFSR1_EL1 = 207, - __before_FAR_EL1 = 208, - FAR_EL1 = 197, - __after_FAR_EL1 = 207, - __before_MAIR_EL1 = 208, - MAIR_EL1 = 169, - __after_MAIR_EL1 = 207, - __before_VBAR_EL1 = 208, - VBAR_EL1 = 203, - __after_VBAR_EL1 = 207, - __before_CONTEXTIDR_EL1 = 208, - CONTEXTIDR_EL1 = 162, - __after_CONTEXTIDR_EL1 = 207, - __before_AMAIR_EL1 = 208, - AMAIR_EL1 = 170, - __after_AMAIR_EL1 = 207, - __before_MDSCR_EL1 = 208, - MDSCR_EL1 = 172, - __after_MDSCR_EL1 = 207, - __before_ELR_EL1 = 208, - ELR_EL1 = 199, - __after_ELR_EL1 = 207, - __before_SP_EL1 = 208, - SP_EL1 = 201, - __after_SP_EL1 = 207, - __before_SPSR_EL1 = 208, - SPSR_EL1 = 173, - __after_SPSR_EL1 = 207, - __before_TFSR_EL1 = 208, - TFSR_EL1 = 179, - __after_TFSR_EL1 = 207, - __before_VPIDR_EL2 = 208, - VPIDR_EL2 = 146, - __after_VPIDR_EL2 = 207, - __before_VMPIDR_EL2 = 208, - VMPIDR_EL2 = 139, - __after_VMPIDR_EL2 = 207, - __before_HCR_EL2 = 208, - HCR_EL2 = 144, - __after_HCR_EL2 = 207, - __before_HSTR_EL2 = 208, - HSTR_EL2 = 145, - __after_HSTR_EL2 = 207, - __before_VTTBR_EL2 = 208, - VTTBR_EL2 = 133, - __after_VTTBR_EL2 = 207, - __before_VTCR_EL2 = 208, - VTCR_EL2 = 137, - __after_VTCR_EL2 = 207, - __before_TPIDR_EL2 = 208, - TPIDR_EL2 = 147, - __after_TPIDR_EL2 = 207, - __before_HCRX_EL2 = 208, - HCRX_EL2 = 149, - __after_HCRX_EL2 = 207, - __before_PIR_EL1 = 208, - PIR_EL1 = 213, - __after_PIR_EL1 = 213, - __before_PIRE0_EL1 = 214, - PIRE0_EL1 = 211, - __after_PIRE0_EL1 = 213, - __before_POR_EL1 = 214, - POR_EL1 = 214, - __after_POR_EL1 = 214, - __before_HFGRTR_EL2 = 215, - HFGRTR_EL2 = 184, - __after_HFGRTR_EL2 = 214, - __before_HFGWTR_EL2 = 215, - HFGWTR_EL2 = 185, - __after_HFGWTR_EL2 = 214, - __before_HFGITR_EL2 = 215, - HFGITR_EL2 = 186, - __after_HFGITR_EL2 = 214, - __before_HDFGRTR_EL2 = 215, - HDFGRTR_EL2 = 187, - __after_HDFGRTR_EL2 = 214, - __before_HDFGWTR_EL2 = 215, - HDFGWTR_EL2 = 188, - __after_HDFGWTR_EL2 = 214, - __before_HAFGRTR_EL2 = 215, - HAFGRTR_EL2 = 190, - __after_HAFGRTR_EL2 = 214, - __before_CNTVOFF_EL2 = 215, - CNTVOFF_EL2 = 141, - __after_CNTVOFF_EL2 = 214, - __before_CNTV_CVAL_EL0 = 215, - CNTV_CVAL_EL0 = 174, - __after_CNTV_CVAL_EL0 = 214, - __before_CNTV_CTL_EL0 = 215, - CNTV_CTL_EL0 = 175, - __after_CNTV_CTL_EL0 = 214, - __before_CNTP_CVAL_EL0 = 215, - CNTP_CVAL_EL0 = 176, - __after_CNTP_CVAL_EL0 = 214, - __before_CNTP_CTL_EL0 = 215, - CNTP_CTL_EL0 = 177, - __after_CNTP_CTL_EL0 = 214, - __before_ICH_HCR_EL2 = 215, - ICH_HCR_EL2 = 281, - __after_ICH_HCR_EL2 = 281, - NR_SYS_REGS = 282, -}; - -enum { - KERNEL_PARAM_OPS_FL_NOARG = 1, -}; - -enum { - KERNEL_PARAM_FL_UNSAFE = 1, - KERNEL_PARAM_FL_HWPARAM = 2, -}; - -struct param_attribute { - struct module_attribute mattr; - const struct kernel_param *param; -}; - -struct module_param_attrs { - unsigned int num; - struct attribute_group grp; - struct param_attribute attrs[0]; -}; - -struct kmalloced_param { - struct list_head list; - char val[0]; -}; - -typedef struct { - raw_spinlock_t *lock; -} class_raw_spinlock_t; - -typedef struct { - raw_spinlock_t *lock; - long unsigned int flags; -} class_raw_spinlock_irqsave_t; - -struct sched_attr { - __u32 size; - __u32 sched_policy; - __u64 sched_flags; - __s32 sched_nice; - __u32 sched_priority; - __u64 sched_runtime; - __u64 sched_deadline; - __u64 sched_period; - __u32 sched_util_min; - __u32 sched_util_max; -}; - -typedef struct { - struct task_struct *lock; - struct rq *rq; - struct rq_flags rf; -} class_task_rq_lock_t; - -typedef struct { - struct rq *lock; - struct rq_flags rf; -} class_rq_lock_t; - -typedef struct { - struct rq *lock; - struct rq *lock2; -} class_double_rq_lock_t; - -struct idle_timer { - struct hrtimer timer; - int done; -}; - -enum dl_bw_request { - dl_bw_req_check_overflow = 0, - dl_bw_req_alloc = 1, - dl_bw_req_free = 2, -}; - -typedef struct task_struct *class_find_get_task_t; - -enum pidcg_event { - PIDCG_MAX = 0, - PIDCG_FORKFAIL = 1, - NR_PIDCG_EVENTS = 2, -}; - -struct pids_cgroup { - struct cgroup_subsys_state css; - atomic64_t counter; - atomic64_t limit; - int64_t watermark; - struct cgroup_file events_file; - struct cgroup_file events_local_file; - atomic64_t events[2]; - atomic64_t events_local[2]; -}; - -struct cpuset_remove_tasks_struct { - struct work_struct work; - struct cpuset *cs; -}; - -enum { - TASKSTATS_TYPE_UNSPEC = 0, - TASKSTATS_TYPE_PID = 1, - TASKSTATS_TYPE_TGID = 2, - TASKSTATS_TYPE_STATS = 3, - TASKSTATS_TYPE_AGGR_PID = 4, - TASKSTATS_TYPE_AGGR_TGID = 5, - TASKSTATS_TYPE_NULL = 6, - __TASKSTATS_TYPE_MAX = 7, -}; - -enum { - TASKSTATS_CMD_ATTR_UNSPEC = 0, - TASKSTATS_CMD_ATTR_PID = 1, - TASKSTATS_CMD_ATTR_TGID = 2, - TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 3, - TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 4, - __TASKSTATS_CMD_ATTR_MAX = 5, -}; - -struct cgroupstats { - __u64 nr_sleeping; - __u64 nr_running; - __u64 nr_stopped; - __u64 nr_uninterruptible; - __u64 nr_io_wait; -}; - -enum { - CGROUPSTATS_CMD_UNSPEC = 3, - CGROUPSTATS_CMD_GET = 4, - CGROUPSTATS_CMD_NEW = 5, - __CGROUPSTATS_CMD_MAX = 6, -}; - -enum { - CGROUPSTATS_TYPE_UNSPEC = 0, - CGROUPSTATS_TYPE_CGROUP_STATS = 1, - __CGROUPSTATS_TYPE_MAX = 2, -}; - -enum { - CGROUPSTATS_CMD_ATTR_UNSPEC = 0, - CGROUPSTATS_CMD_ATTR_FD = 1, - __CGROUPSTATS_CMD_ATTR_MAX = 2, -}; - -struct listener { - struct list_head list; - pid_t pid; - char valid; -}; - -struct listener_list { - struct rw_semaphore sem; - struct list_head list; -}; - -enum actions { - REGISTER = 0, - DEREGISTER = 1, - CPU_DONT_CARE = 2, -}; - -typedef struct { - void *lock; -} class_preempt_notrace_t; - -struct syscall_trace_enter { - struct trace_entry ent; - int nr; - long unsigned int args[0]; -}; - -struct syscall_trace_exit { - struct trace_entry ent; - int nr; - long int ret; -}; - -struct syscall_tp_t { - struct trace_entry ent; - int syscall_nr; - long unsigned int ret; -}; - -struct syscall_tp_t___2 { - struct trace_entry ent; - int syscall_nr; - long unsigned int args[6]; -}; - -enum bpf_stack_slot_type { - STACK_INVALID = 0, - STACK_SPILL = 1, - STACK_MISC = 2, - STACK_ZERO = 3, - STACK_DYNPTR = 4, - STACK_ITER = 5, -}; - -struct bpf_cgroup_storage_map { - struct bpf_map map; - spinlock_t lock; - struct rb_root root; - struct list_head list; -}; - -enum bpf_cond_pseudo_jmp { - BPF_MAY_GOTO = 0, -}; - -enum bpf_addr_space_cast { - BPF_ADDR_SPACE_CAST = 1, -}; - -typedef void (*bpf_insn_print_t)(void *, const char *, ...); - -typedef const char * (*bpf_insn_revmap_call_t)(void *, const struct bpf_insn *); - -typedef const char * (*bpf_insn_print_imm_t)(void *, const struct bpf_insn *, __u64); - -struct bpf_insn_cbs { - bpf_insn_print_t cb_print; - bpf_insn_revmap_call_t cb_call; - bpf_insn_print_imm_t cb_imm; - void *private_data; -}; - -struct bpf_tuple { - struct bpf_prog *prog; - struct bpf_link *link; -}; - -struct bpf_prog_info { - __u32 type; - __u32 id; - __u8 tag[8]; - __u32 jited_prog_len; - __u32 xlated_prog_len; - __u64 jited_prog_insns; - __u64 xlated_prog_insns; - __u64 load_time; - __u32 created_by_uid; - __u32 nr_map_ids; - __u64 map_ids; - char name[16]; - __u32 ifindex; - __u32 gpl_compatible: 1; - __u64 netns_dev; - __u64 netns_ino; - __u32 nr_jited_ksyms; - __u32 nr_jited_func_lens; - __u64 jited_ksyms; - __u64 jited_func_lens; - __u32 btf_id; - __u32 func_info_rec_size; - __u64 func_info; - __u32 nr_func_info; - __u32 nr_line_info; - __u64 line_info; - __u64 jited_line_info; - __u32 nr_jited_line_info; - __u32 line_info_rec_size; - __u32 jited_line_info_rec_size; - __u32 nr_prog_tags; - __u64 prog_tags; - __u64 run_time_ns; - __u64 run_cnt; - __u64 recursion_misses; - __u32 verified_insns; - __u32 attach_btf_obj_id; - __u32 attach_btf_id; -}; - -struct bpf_prog_offload_ops { - int (*insn_hook)(struct bpf_verifier_env *, int, int); - int (*finalize)(struct bpf_verifier_env *); - int (*replace_insn)(struct bpf_verifier_env *, u32, struct bpf_insn *); - int (*remove_insns)(struct bpf_verifier_env *, u32, u32); - int (*prepare)(struct bpf_prog *); - int (*translate)(struct bpf_prog *); - void (*destroy)(struct bpf_prog *); -}; - -struct bpf_offload_dev { - const struct bpf_prog_offload_ops *ops; - struct list_head netdevs; - void *priv; -}; - -typedef struct ns_common *ns_get_path_helper_t(void *); - -enum xdp_rx_metadata { - XDP_METADATA_KFUNC_RX_TIMESTAMP = 0, - XDP_METADATA_KFUNC_RX_HASH = 1, - XDP_METADATA_KFUNC_RX_VLAN_TAG = 2, - MAX_XDP_METADATA_KFUNC = 3, -}; - -struct bpf_offload_netdev { - struct rhash_head l; - struct net_device *netdev; - struct bpf_offload_dev *offdev; - struct list_head progs; - struct list_head maps; - struct list_head offdev_netdevs; -}; - -struct ns_get_path_bpf_prog_args { - struct bpf_prog *prog; - struct bpf_prog_info *info; -}; - -struct ns_get_path_bpf_map_args { - struct bpf_offloaded_map *offmap; - struct bpf_map_info *info; -}; - -struct trace_event_raw_oom_score_adj_update { - struct trace_entry ent; - pid_t pid; - char comm[16]; - short int oom_score_adj; - char __data[0]; -}; - -struct trace_event_raw_reclaim_retry_zone { - struct trace_entry ent; - int node; - int zone_idx; - int order; - long unsigned int reclaimable; - long unsigned int available; - long unsigned int min_wmark; - int no_progress_loops; - bool wmark_check; - char __data[0]; -}; - -struct trace_event_raw_mark_victim { - struct trace_entry ent; - int pid; - u32 __data_loc_comm; - long unsigned int total_vm; - long unsigned int anon_rss; - long unsigned int file_rss; - long unsigned int shmem_rss; - uid_t uid; - long unsigned int pgtables; - short int oom_score_adj; - char __data[0]; -}; - -struct trace_event_raw_wake_reaper { - struct trace_entry ent; - int pid; - char __data[0]; -}; - -struct trace_event_raw_start_task_reaping { - struct trace_entry ent; - int pid; - char __data[0]; -}; - -struct trace_event_raw_finish_task_reaping { - struct trace_entry ent; - int pid; - char __data[0]; -}; - -struct trace_event_raw_skip_task_reaping { - struct trace_entry ent; - int pid; - char __data[0]; -}; - -struct trace_event_raw_compact_retry { - struct trace_entry ent; - int order; - int priority; - int result; - int retries; - int max_retries; - bool ret; - char __data[0]; -}; - -struct trace_event_data_offsets_oom_score_adj_update {}; - -struct trace_event_data_offsets_reclaim_retry_zone {}; - -struct trace_event_data_offsets_mark_victim { - u32 comm; - const void *comm_ptr_; -}; - -struct trace_event_data_offsets_wake_reaper {}; - -struct trace_event_data_offsets_start_task_reaping {}; - -struct trace_event_data_offsets_finish_task_reaping {}; - -struct trace_event_data_offsets_skip_task_reaping {}; - -struct trace_event_data_offsets_compact_retry {}; - -typedef void (*btf_trace_oom_score_adj_update)(void *, struct task_struct *); - -typedef void (*btf_trace_reclaim_retry_zone)(void *, struct zoneref *, int, long unsigned int, long unsigned int, long unsigned int, int, bool); - -typedef void (*btf_trace_mark_victim)(void *, struct task_struct *, uid_t); - -typedef void (*btf_trace_wake_reaper)(void *, int); - -typedef void (*btf_trace_start_task_reaping)(void *, int); - -typedef void (*btf_trace_finish_task_reaping)(void *, int); - -typedef void (*btf_trace_skip_task_reaping)(void *, int); - -typedef void (*btf_trace_compact_retry)(void *, int, enum compact_priority, enum compact_result, int, int, bool); - -struct list_lru_memcg { - struct callback_head rcu; - struct list_lru_one node[0]; -}; - -struct list_lru_memcg_table { - struct list_lru_memcg *mlru; - struct mem_cgroup *memcg; -}; - -enum rmp_flags { - RMP_LOCKED = 1, - RMP_USE_SHARED_ZEROPAGE = 2, -}; - -struct rmap_walk_arg { - struct folio *folio; - bool map_unused_to_zeropage; -}; - -enum { - PAGE_WAS_MAPPED = 1, - PAGE_WAS_MLOCKED = 2, - PAGE_OLD_STATES = 3, -}; - -struct migrate_pages_stats { - int nr_succeeded; - int nr_failed_pages; - int nr_thp_succeeded; - int nr_thp_failed; - int nr_thp_split; - int nr_split; -}; - -enum mm_cid_state { - MM_CID_UNSET = 4294967295, - MM_CID_LAZY_PUT = 2147483648, -}; - -struct user_arg_ptr { - union { - const char * const *native; - } ptr; -}; - -typedef int __kernel_daddr_t; - -struct ustat { - __kernel_daddr_t f_tfree; - long unsigned int f_tinode; - char f_fname[6]; - char f_fpack[6]; -}; - -struct statfs { - __kernel_long_t f_type; - __kernel_long_t f_bsize; - __kernel_long_t f_blocks; - __kernel_long_t f_bfree; - __kernel_long_t f_bavail; - __kernel_long_t f_files; - __kernel_long_t f_ffree; - __kernel_fsid_t f_fsid; - __kernel_long_t f_namelen; - __kernel_long_t f_frsize; - __kernel_long_t f_flags; - __kernel_long_t f_spare[4]; -}; - -struct statfs64 { - __kernel_long_t f_type; - __kernel_long_t f_bsize; - __u64 f_blocks; - __u64 f_bfree; - __u64 f_bavail; - __u64 f_files; - __u64 f_ffree; - __kernel_fsid_t f_fsid; - __kernel_long_t f_namelen; - __kernel_long_t f_frsize; - __kernel_long_t f_flags; - __kernel_long_t f_spare[4]; -}; - -typedef struct task_struct *class_task_lock_t; - -struct stashed_operations { - void (*put_data)(void *); - int (*init_inode)(struct inode *, void *); -}; - -struct signalfd_siginfo { - __u32 ssi_signo; - __s32 ssi_errno; - __s32 ssi_code; - __u32 ssi_pid; - __u32 ssi_uid; - __s32 ssi_fd; - __u32 ssi_tid; - __u32 ssi_band; - __u32 ssi_overrun; - __u32 ssi_trapno; - __s32 ssi_status; - __s32 ssi_int; - __u64 ssi_ptr; - __u64 ssi_utime; - __u64 ssi_stime; - __u64 ssi_addr; - __u16 ssi_addr_lsb; - __u16 __pad2; - __s32 ssi_syscall; - __u64 ssi_call_addr; - __u32 ssi_arch; - __u8 __pad[28]; -}; - -struct signalfd_ctx { - sigset_t sigmask; -}; - -struct trace_event_raw_iomap_readpage_class { - struct trace_entry ent; - dev_t dev; - u64 ino; - int nr_pages; - char __data[0]; -}; - -struct trace_event_raw_iomap_range_class { - struct trace_entry ent; - dev_t dev; - u64 ino; - loff_t size; - loff_t offset; - u64 length; - char __data[0]; -}; - -struct trace_event_raw_iomap_class { - struct trace_entry ent; - dev_t dev; - u64 ino; - u64 addr; - loff_t offset; - u64 length; - u16 type; - u16 flags; - dev_t bdev; - char __data[0]; -}; - -struct trace_event_raw_iomap_writepage_map { - struct trace_entry ent; - dev_t dev; - u64 ino; - u64 pos; - u64 dirty_len; - u64 addr; - loff_t offset; - u64 length; - u16 type; - u16 flags; - dev_t bdev; - char __data[0]; -}; - -struct trace_event_raw_iomap_iter { - struct trace_entry ent; - dev_t dev; - u64 ino; - loff_t pos; - u64 length; - s64 processed; - unsigned int flags; - const void *ops; - long unsigned int caller; - char __data[0]; -}; - -struct trace_event_raw_iomap_dio_rw_begin { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t isize; - loff_t pos; - size_t count; - size_t done_before; - int ki_flags; - unsigned int dio_flags; - bool aio; - char __data[0]; -}; - -struct trace_event_raw_iomap_dio_complete { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t isize; - loff_t pos; - int ki_flags; - bool aio; - int error; - ssize_t ret; - char __data[0]; -}; - -struct trace_event_data_offsets_iomap_readpage_class {}; - -struct trace_event_data_offsets_iomap_range_class {}; - -struct trace_event_data_offsets_iomap_class {}; - -struct trace_event_data_offsets_iomap_writepage_map {}; - -struct trace_event_data_offsets_iomap_iter {}; - -struct trace_event_data_offsets_iomap_dio_rw_begin {}; - -struct trace_event_data_offsets_iomap_dio_complete {}; - -typedef void (*btf_trace_iomap_readpage)(void *, struct inode *, int); - -typedef void (*btf_trace_iomap_readahead)(void *, struct inode *, int); - -typedef void (*btf_trace_iomap_writepage)(void *, struct inode *, loff_t, u64); - -typedef void (*btf_trace_iomap_release_folio)(void *, struct inode *, loff_t, u64); - -typedef void (*btf_trace_iomap_invalidate_folio)(void *, struct inode *, loff_t, u64); - -typedef void (*btf_trace_iomap_dio_invalidate_fail)(void *, struct inode *, loff_t, u64); - -typedef void (*btf_trace_iomap_dio_rw_queued)(void *, struct inode *, loff_t, u64); - -typedef void (*btf_trace_iomap_iter_dstmap)(void *, struct inode *, struct iomap *); - -typedef void (*btf_trace_iomap_iter_srcmap)(void *, struct inode *, struct iomap *); - -typedef void (*btf_trace_iomap_writepage_map)(void *, struct inode *, u64, unsigned int, struct iomap *); - -typedef void (*btf_trace_iomap_iter)(void *, struct iomap_iter *, const void *, long unsigned int); - -typedef void (*btf_trace_iomap_dio_rw_begin)(void *, struct kiocb *, struct iov_iter *, unsigned int, size_t); - -typedef void (*btf_trace_iomap_dio_complete)(void *, struct kiocb *, int, ssize_t); - -enum fscache_cache_trace { - fscache_cache_collision = 0, - fscache_cache_get_acquire = 1, - fscache_cache_new_acquire = 2, - fscache_cache_put_alloc_volume = 3, - fscache_cache_put_cache = 4, - fscache_cache_put_prep_failed = 5, - fscache_cache_put_relinquish = 6, - fscache_cache_put_volume = 7, -}; - -struct orlov_stats { - __u64 free_clusters; - __u32 free_inodes; - __u32 used_dirs; -}; - -struct jbd2_journal_revoke_header_s { - journal_header_t r_header; - __be32 r_count; -}; - -typedef struct jbd2_journal_revoke_header_s jbd2_journal_revoke_header_t; - -struct jbd2_revoke_table_s { - int hash_size; - int hash_shift; - struct list_head *hash_table; -}; - -struct jbd2_revoke_record_s { - struct list_head hash; - tid_t sequence; - long long unsigned int blocknr; -}; - -struct squashfs_dir_index { - __le32 index; - __le32 start_block; - __le32 size; - unsigned char name[0]; -}; - -struct squashfs_base_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; -}; - -struct squashfs_ipc_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le32 nlink; -}; - -struct squashfs_lipc_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le32 nlink; - __le32 xattr; -}; - -struct squashfs_dev_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le32 nlink; - __le32 rdev; -}; - -struct squashfs_ldev_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le32 nlink; - __le32 rdev; - __le32 xattr; -}; - -struct squashfs_symlink_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le32 nlink; - __le32 symlink_size; - char symlink[0]; -}; - -struct squashfs_reg_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le32 start_block; - __le32 fragment; - __le32 offset; - __le32 file_size; - __le16 block_list[0]; -}; - -struct squashfs_lreg_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le64 start_block; - __le64 file_size; - __le64 sparse; - __le32 nlink; - __le32 fragment; - __le32 offset; - __le32 xattr; - __le16 block_list[0]; -}; - -struct squashfs_dir_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le32 start_block; - __le32 nlink; - __le16 file_size; - __le16 offset; - __le32 parent_inode; -}; - -struct squashfs_ldir_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le32 nlink; - __le32 file_size; - __le32 start_block; - __le32 parent_inode; - __le16 i_count; - __le16 offset; - __le32 xattr; - struct squashfs_dir_index index[0]; -}; - -union squashfs_inode { - struct squashfs_base_inode base; - struct squashfs_dev_inode dev; - struct squashfs_ldev_inode ldev; - struct squashfs_symlink_inode symlink; - struct squashfs_reg_inode reg; - struct squashfs_lreg_inode lreg; - struct squashfs_dir_inode dir; - struct squashfs_ldir_inode ldir; - struct squashfs_ipc_inode ipc; - struct squashfs_lipc_inode lipc; -}; - -struct xz_dec; - -struct squashfs_xz { - struct xz_dec *state; - struct xz_buf buf; -}; - -struct disk_comp_opts { - __le32 dictionary_size; - __le32 flags; -}; - -struct comp_opts { - int dict_size; -}; - -struct fat_entry { - int entry; - union { - u8 *ent12_p[2]; - __le16 *ent16_p; - __le32 *ent32_p; - } u; - int nr_bhs; - struct buffer_head *bhs[2]; - struct inode *fat_inode; -}; - -struct isofs_fid { - u32 block; - u16 offset; - u16 parent_offset; - u32 generation; - u32 parent_block; - u32 parent_generation; -}; - -enum { - FILEID_HIGH_OFF = 0, - FILEID_LOW_OFF = 1, - FILE_I_TYPE_OFF = 2, - EMBED_FH_OFF = 3, -}; - -enum { - NFS_DELEGATION_NEED_RECLAIM = 0, - NFS_DELEGATION_RETURN = 1, - NFS_DELEGATION_RETURN_IF_CLOSED = 2, - NFS_DELEGATION_REFERENCED = 3, - NFS_DELEGATION_RETURNING = 4, - NFS_DELEGATION_REVOKED = 5, - NFS_DELEGATION_TEST_EXPIRED = 6, - NFS_DELEGATION_INODE_FREEING = 7, - NFS_DELEGATION_RETURN_DELAYED = 8, - NFS_DELEGATION_DELEGTIME = 9, -}; - -struct ent { - struct cache_head h; - int type; - u32 id; - char name[128]; - char authname[128]; - struct callback_head callback_head; -}; - -typedef struct { - spinlock_t *lock; -} class_spinlock_t; - -struct cifs_mnt_data { - struct cifs_sb_info *cifs_sb; - struct smb3_fs_context *ctx; - int flags; -}; - -struct rfc1002_session_packet { - __u8 type; - __u8 flags; - __u16 length; - union { - struct { - __u8 called_len; - __u8 called_name[32]; - __u8 scope1; - __u8 calling_len; - __u8 calling_name[32]; - __u8 scope2; - } session_req; - struct { - __u32 retarget_ip_addr; - __u16 port; - } __attribute__((packed)) retarget_resp; - __u8 neg_ses_resp_error_code; - } trailer; -}; - -enum { - XATTR_USER = 0, - XATTR_CIFS_ACL = 1, - XATTR_ACL_ACCESS = 2, - XATTR_ACL_DEFAULT = 3, - XATTR_CIFS_NTSD = 4, - XATTR_CIFS_NTSD_FULL = 5, -}; - -struct GUID { - __le32 Data1; - __le16 Data2; - __le16 Data3; - u8 Data4[8]; -}; - -struct ATTR_STD_INFO { - __le64 cr_time; - __le64 m_time; - __le64 c_time; - __le64 a_time; - enum FILE_ATTRIBUTE fa; - __le32 max_ver_num; - __le32 ver_num; - __le32 class_id; -}; - -struct SECURITY_KEY { - __le32 hash; - __le32 sec_id; -}; - -struct SECURITY_HDR { - struct SECURITY_KEY key; - __le64 off; - __le32 size; -} __attribute__((packed)); - -struct NTFS_DE_SII { - struct NTFS_DE de; - __le32 sec_id; - struct SECURITY_HDR sec_hdr; -}; - -struct NTFS_DE_SDH { - struct NTFS_DE de; - struct SECURITY_KEY key; - struct SECURITY_HDR sec_hdr; - __le16 magic[2]; -}; - -struct REPARSE_KEY { - __le32 ReparseTag; - struct MFT_REF ref; -}; - -struct NTFS_DE_R { - struct NTFS_DE de; - struct REPARSE_KEY key; - u32 zero; -}; - -struct ACE_HEADER { - u8 AceType; - u8 AceFlags; - __le16 AceSize; -}; - -struct ACL { - u8 AclRevision; - u8 Sbz1; - __le16 AclSize; - __le16 AceCount; - __le16 Sbz2; -}; - -struct SID { - u8 Revision; - u8 SubAuthorityCount; - u8 IdentifierAuthority[6]; - __le32 SubAuthority[0]; -}; - -enum index_mutex_classed { - INDEX_MUTEX_I30 = 0, - INDEX_MUTEX_SII = 1, - INDEX_MUTEX_SDH = 2, - INDEX_MUTEX_SO = 3, - INDEX_MUTEX_SQ = 4, - INDEX_MUTEX_SR = 5, - INDEX_MUTEX_TOTAL = 6, -}; - -struct ovl_metacopy { - u8 version; - u8 len; - u8 flags; - u8 digest_algo; - u8 digest[64]; -}; - -struct ovl_lookup_data { - struct super_block *sb; - const struct ovl_layer *layer; - struct qstr name; - bool is_dir; - bool opaque; - bool xwhiteouts; - bool stop; - bool last; - char *redirect; - int metacopy; - bool absolute_redirect; -}; - -struct extendedAttrHeaderDesc { - struct tag descTag; - __le32 impAttrLocation; - __le32 appAttrLocation; -}; - -struct genericFormat { - __le32 attrType; - uint8_t attrSubtype; - uint8_t reserved[3]; - __le32 attrLength; - uint8_t attrData[0]; -}; - -typedef struct xfs_trans_header xfs_trans_header_t; - -struct xfs_icreate_log { - uint16_t icl_type; - uint16_t icl_size; - __be32 icl_ag; - __be32 icl_agbno; - __be32 icl_count; - __be32 icl_isize; - __be32 icl_length; - __be32 icl_gen; -}; - -typedef uint64_t xfbno_t; - -struct xfbtree { - struct xfs_buftarg *target; - xfbno_t highest_bno; - long long unsigned int owner; - union xfs_btree_ptr root; - unsigned int nlevels; - unsigned int maxrecs[2]; - unsigned int minrecs[2]; -}; - -struct xlog_recover { - struct hlist_node r_list; - xlog_tid_t r_log_tid; - xfs_trans_header_t r_theader; - int r_state; - xfs_lsn_t r_lsn; - struct list_head r_itemq; -}; - -struct xfs_fsmap { - dev_t fmr_device; - uint32_t fmr_flags; - uint64_t fmr_physical; - uint64_t fmr_owner; - xfs_fileoff_t fmr_offset; - xfs_filblks_t fmr_length; -}; - -struct trace_event_raw_xfs_attr_list_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - u32 hashval; - u32 blkno; - u32 offset; - void *buffer; - int bufsize; - int count; - int firstu; - int dupcnt; - unsigned int attr_filter; - char __data[0]; -}; - -struct trace_event_raw_xlog_intent_recovery_failed { - struct trace_entry ent; - dev_t dev; - u32 __data_loc_name; - int error; - char __data[0]; -}; - -struct trace_event_raw_xfs_perag_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - int refcount; - int active_refcount; - long unsigned int caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_inodegc_worker { - struct trace_entry ent; - dev_t dev; - unsigned int shrinker_hits; - char __data[0]; -}; - -struct trace_event_raw_xfs_fs_class { - struct trace_entry ent; - dev_t dev; - long long unsigned int mflags; - long unsigned int opstate; - long unsigned int sbflags; - void *caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_inodegc_shrinker_scan { - struct trace_entry ent; - dev_t dev; - long unsigned int nr_to_scan; - void *caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_ag_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - char __data[0]; -}; - -struct trace_event_raw_xfs_attr_list_node_descend { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - u32 hashval; - u32 blkno; - u32 offset; - void *buffer; - int bufsize; - int count; - int firstu; - int dupcnt; - unsigned int attr_filter; - u32 bt_hashval; - u32 bt_before; - char __data[0]; -}; - -struct trace_event_raw_xfs_bmap_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - void *leaf; - int pos; - xfs_fileoff_t startoff; - xfs_fsblock_t startblock; - xfs_filblks_t blockcount; - xfs_exntst_t state; - int bmap_state; - long unsigned int caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_buf_class { - struct trace_entry ent; - dev_t dev; - xfs_daddr_t bno; - int nblks; - int hold; - int pincount; - unsigned int lockval; - unsigned int flags; - long unsigned int caller_ip; - const void *buf_ops; - char __data[0]; -}; - -struct trace_event_raw_xfs_buf_flags_class { - struct trace_entry ent; - dev_t dev; - xfs_daddr_t bno; - unsigned int length; - int hold; - int pincount; - unsigned int lockval; - unsigned int flags; - long unsigned int caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_buf_ioerror { - struct trace_entry ent; - dev_t dev; - xfs_daddr_t bno; - unsigned int length; - unsigned int flags; - int hold; - int pincount; - unsigned int lockval; - int error; - xfs_failaddr_t caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_buf_item_class { - struct trace_entry ent; - dev_t dev; - xfs_daddr_t buf_bno; - unsigned int buf_len; - int buf_hold; - int buf_pincount; - int buf_lockval; - unsigned int buf_flags; - unsigned int bli_recur; - int bli_refcount; - unsigned int bli_flags; - long unsigned int li_flags; - char __data[0]; -}; - -struct trace_event_raw_xfs_filestream_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - xfs_agnumber_t agno; - int streams; - char __data[0]; -}; - -struct trace_event_raw_xfs_filestream_pick { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - xfs_agnumber_t agno; - int streams; - xfs_extlen_t free; - char __data[0]; -}; - -struct trace_event_raw_xfs_lock_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - int lock_flags; - long unsigned int caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_inode_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - long unsigned int iflags; - char __data[0]; -}; - -struct trace_event_raw_xfs_filemap_fault { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - unsigned int order; - bool write_fault; - char __data[0]; -}; - -struct trace_event_raw_xfs_iref_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - int count; - int pincount; - long unsigned int caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_iomap_prealloc_size { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - xfs_fsblock_t blocks; - int shift; - unsigned int writeio_blocks; - char __data[0]; -}; - -struct trace_event_raw_xfs_irec_merge_pre { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agino_t agino; - uint16_t holemask; - xfs_agino_t nagino; - uint16_t nholemask; - char __data[0]; -}; - -struct trace_event_raw_xfs_irec_merge_post { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agino_t agino; - uint16_t holemask; - char __data[0]; -}; - -struct trace_event_raw_xfs_namespace_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t dp_ino; - int namelen; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_xfs_rename { - struct trace_entry ent; - dev_t dev; - xfs_ino_t src_dp_ino; - xfs_ino_t target_dp_ino; - int src_namelen; - int target_namelen; - u32 __data_loc_src_name; - u32 __data_loc_target_name; - char __data[0]; -}; - -struct trace_event_raw_xfs_dquot_class { - struct trace_entry ent; - dev_t dev; - u32 id; - xfs_dqtype_t type; - unsigned int flags; - unsigned int nrefs; - long long unsigned int res_bcount; - long long unsigned int res_rtbcount; - long long unsigned int res_icount; - long long unsigned int bcount; - long long unsigned int rtbcount; - long long unsigned int icount; - long long unsigned int blk_hardlimit; - long long unsigned int blk_softlimit; - long long unsigned int rtb_hardlimit; - long long unsigned int rtb_softlimit; - long long unsigned int ino_hardlimit; - long long unsigned int ino_softlimit; - char __data[0]; -}; - -struct trace_event_raw_xfs_trans_mod_dquot { - struct trace_entry ent; - dev_t dev; - xfs_dqtype_t type; - unsigned int flags; - unsigned int dqid; - unsigned int field; - int64_t delta; - char __data[0]; -}; - -struct trace_event_raw_xfs_dqtrx_class { - struct trace_entry ent; - dev_t dev; - xfs_dqtype_t type; - unsigned int flags; - u32 dqid; - uint64_t blk_res; - int64_t bcount_delta; - int64_t delbcnt_delta; - uint64_t rtblk_res; - uint64_t rtblk_res_used; - int64_t rtbcount_delta; - int64_t delrtb_delta; - uint64_t ino_res; - uint64_t ino_res_used; - int64_t icount_delta; - char __data[0]; -}; - -struct trace_event_raw_xfs_loggrant_class { - struct trace_entry ent; - dev_t dev; - long unsigned int tic; - char ocnt; - char cnt; - int curr_res; - int unit_res; - unsigned int flags; - int reserveq; - int writeq; - uint64_t grant_reserve_bytes; - uint64_t grant_write_bytes; - uint64_t tail_space; - int curr_cycle; - int curr_block; - xfs_lsn_t tail_lsn; - char __data[0]; -}; - -struct trace_event_raw_xfs_log_item_class { - struct trace_entry ent; - dev_t dev; - void *lip; - uint type; - long unsigned int flags; - xfs_lsn_t lsn; - char __data[0]; -}; - -struct trace_event_raw_xfs_log_force { - struct trace_entry ent; - dev_t dev; - xfs_lsn_t lsn; - long unsigned int caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_ail_class { - struct trace_entry ent; - dev_t dev; - void *lip; - uint type; - long unsigned int flags; - xfs_lsn_t old_lsn; - xfs_lsn_t new_lsn; - char __data[0]; -}; - -struct trace_event_raw_xfs_log_assign_tail_lsn { - struct trace_entry ent; - dev_t dev; - xfs_lsn_t new_lsn; - xfs_lsn_t old_lsn; - xfs_lsn_t head_lsn; - char __data[0]; -}; - -struct trace_event_raw_xfs_file_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - xfs_fsize_t size; - loff_t offset; - size_t count; - char __data[0]; -}; - -struct trace_event_raw_xfs_imap_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - loff_t size; - loff_t offset; - size_t count; - int whichfork; - xfs_fileoff_t startoff; - xfs_fsblock_t startblock; - xfs_filblks_t blockcount; - char __data[0]; -}; - -struct trace_event_raw_xfs_simple_io_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - loff_t isize; - loff_t disize; - loff_t offset; - size_t count; - char __data[0]; -}; - -struct trace_event_raw_xfs_itrunc_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - xfs_fsize_t size; - xfs_fsize_t new_size; - char __data[0]; -}; - -struct trace_event_raw_xfs_pagecache_inval { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - xfs_fsize_t size; - xfs_off_t start; - xfs_off_t finish; - char __data[0]; -}; - -struct trace_event_raw_xfs_bunmap { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - xfs_fsize_t size; - xfs_fileoff_t fileoff; - xfs_filblks_t len; - long unsigned int caller_ip; - int flags; - char __data[0]; -}; - -struct trace_event_raw_xfs_extent_busy_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agblock_t agbno; - xfs_extlen_t len; - char __data[0]; -}; - -struct trace_event_raw_xfs_extent_busy_trim { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agblock_t agbno; - xfs_extlen_t len; - xfs_agblock_t tbno; - xfs_extlen_t tlen; - char __data[0]; -}; - -struct trace_event_raw_xfs_agf_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - int flags; - __u32 length; - __u32 bno_root; - __u32 cnt_root; - __u32 bno_level; - __u32 cnt_level; - __u32 flfirst; - __u32 fllast; - __u32 flcount; - __u32 freeblks; - __u32 longest; - long unsigned int caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_free_extent { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agblock_t agbno; - xfs_extlen_t len; - int resv; - int haveleft; - int haveright; - char __data[0]; -}; - -struct trace_event_raw_xfs_alloc_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agblock_t agbno; - xfs_extlen_t minlen; - xfs_extlen_t maxlen; - xfs_extlen_t mod; - xfs_extlen_t prod; - xfs_extlen_t minleft; - xfs_extlen_t total; - xfs_extlen_t alignment; - xfs_extlen_t minalignslop; - xfs_extlen_t len; - char wasdel; - char wasfromfl; - int resv; - int datatype; - xfs_agnumber_t highest_agno; - char __data[0]; -}; - -struct trace_event_raw_xfs_alloc_cur_check { - struct trace_entry ent; - dev_t dev; - u32 __data_loc_name; - xfs_agblock_t bno; - xfs_extlen_t len; - xfs_extlen_t diff; - bool new; - char __data[0]; -}; - -struct trace_event_raw_xfs_da_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - u32 __data_loc_name; - int namelen; - xfs_dahash_t hashval; - xfs_ino_t inumber; - uint32_t op_flags; - xfs_ino_t owner; - char __data[0]; -}; - -struct trace_event_raw_xfs_attr_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - u32 __data_loc_name; - int namelen; - int valuelen; - xfs_dahash_t hashval; - unsigned int attr_filter; - uint32_t op_flags; - char __data[0]; -}; - -struct trace_event_raw_xfs_dir2_space_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - uint32_t op_flags; - int idx; - char __data[0]; -}; - -struct trace_event_raw_xfs_dir2_leafn_moveents { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - uint32_t op_flags; - int src_idx; - int dst_idx; - int count; - char __data[0]; -}; - -struct trace_event_raw_xfs_swap_extent_class { - struct trace_entry ent; - dev_t dev; - int which; - xfs_ino_t ino; - int format; - xfs_extnum_t nex; - int broot_size; - int fork_off; - char __data[0]; -}; - -struct trace_event_raw_xfs_log_recover { - struct trace_entry ent; - dev_t dev; - xfs_daddr_t headblk; - xfs_daddr_t tailblk; - char __data[0]; -}; - -struct trace_event_raw_xfs_log_recover_record { - struct trace_entry ent; - dev_t dev; - xfs_lsn_t lsn; - int len; - int num_logops; - int pass; - char __data[0]; -}; - -struct trace_event_raw_xfs_log_recover_item_class { - struct trace_entry ent; - dev_t dev; - long unsigned int item; - xlog_tid_t tid; - xfs_lsn_t lsn; - int type; - int pass; - int count; - int total; - char __data[0]; -}; - -struct trace_event_raw_xfs_log_recover_buf_item_class { - struct trace_entry ent; - dev_t dev; - int64_t blkno; - short unsigned int len; - short unsigned int flags; - short unsigned int size; - unsigned int map_size; - char __data[0]; -}; - -struct trace_event_raw_xfs_log_recover_ino_item_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - short unsigned int size; - int fields; - short unsigned int asize; - short unsigned int dsize; - int64_t blkno; - int len; - int boffset; - char __data[0]; -}; - -struct trace_event_raw_xfs_log_recover_icreate_item_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agblock_t agbno; - unsigned int count; - unsigned int isize; - xfs_agblock_t length; - unsigned int gen; - char __data[0]; -}; - -struct trace_event_raw_xfs_discard_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agblock_t agbno; - xfs_extlen_t len; - char __data[0]; -}; - -struct trace_event_raw_xfs_rtdiscard_class { - struct trace_entry ent; - dev_t dev; - xfs_rtblock_t rtbno; - xfs_rtblock_t len; - char __data[0]; -}; - -struct trace_event_raw_xfs_btree_cur_class { - struct trace_entry ent; - dev_t dev; - u32 __data_loc_name; - int level; - int nlevels; - int ptr; - xfs_daddr_t daddr; - char __data[0]; -}; - -struct trace_event_raw_xfs_btree_alloc_block { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_ino_t ino; - u32 __data_loc_name; - int error; - xfs_agblock_t agbno; - char __data[0]; -}; - -struct trace_event_raw_xfs_btree_free_block { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_ino_t ino; - u32 __data_loc_name; - xfs_agblock_t agbno; - char __data[0]; -}; - -struct trace_event_raw_xfs_defer_class { - struct trace_entry ent; - dev_t dev; - struct xfs_trans *tp; - char committed; - long unsigned int caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_defer_error_class { - struct trace_entry ent; - dev_t dev; - struct xfs_trans *tp; - char committed; - int error; - char __data[0]; -}; - -struct trace_event_raw_xfs_defer_pending_class { - struct trace_entry ent; - dev_t dev; - u32 __data_loc_name; - void *intent; - unsigned int flags; - char committed; - int nr; - char __data[0]; -}; - -struct trace_event_raw_xfs_free_extent_deferred_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agblock_t agbno; - xfs_extlen_t len; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_xfs_defer_pending_item_class { - struct trace_entry ent; - dev_t dev; - u32 __data_loc_name; - void *intent; - void *item; - char committed; - unsigned int flags; - int nr; - char __data[0]; -}; - -struct trace_event_raw_xfs_rmap_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agblock_t agbno; - xfs_extlen_t len; - uint64_t owner; - uint64_t offset; - long unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_xfs_btree_error_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_ino_t ino; - int error; - long unsigned int caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_rmap_convert_state { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_ino_t ino; - int state; - long unsigned int caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_rmapbt_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agblock_t agbno; - xfs_extlen_t len; - uint64_t owner; - uint64_t offset; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_xfs_rmap_deferred_class { - struct trace_entry ent; - dev_t dev; - long long unsigned int owner; - xfs_agnumber_t agno; - xfs_agblock_t agbno; - int whichfork; - xfs_fileoff_t l_loff; - xfs_filblks_t l_len; - xfs_exntst_t l_state; - int op; - char __data[0]; -}; - -struct trace_event_raw_xfs_bmap_deferred_class { - struct trace_entry ent; - dev_t dev; - dev_t opdev; - xfs_agnumber_t agno; - xfs_ino_t ino; - xfs_agblock_t agbno; - xfs_fsblock_t rtbno; - int whichfork; - xfs_fileoff_t l_loff; - xfs_filblks_t l_len; - xfs_exntst_t l_state; - int op; - char __data[0]; -}; - -struct trace_event_raw_xfs_ag_resv_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - int resv; - xfs_extlen_t freeblks; - xfs_extlen_t flcount; - xfs_extlen_t reserved; - xfs_extlen_t asked; - xfs_extlen_t len; - char __data[0]; -}; - -struct trace_event_raw_xfs_ag_error_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - int error; - long unsigned int caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_refcount_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agblock_t agbno; - xfs_extlen_t len; - char __data[0]; -}; - -struct trace_event_raw_xfs_refcount_lookup { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agblock_t agbno; - xfs_lookup_t dir; - char __data[0]; -}; - -struct trace_event_raw_xfs_refcount_extent_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - enum xfs_refc_domain domain; - xfs_agblock_t startblock; - xfs_extlen_t blockcount; - xfs_nlink_t refcount; - char __data[0]; -}; - -struct trace_event_raw_xfs_refcount_extent_at_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - enum xfs_refc_domain domain; - xfs_agblock_t startblock; - xfs_extlen_t blockcount; - xfs_nlink_t refcount; - xfs_agblock_t agbno; - char __data[0]; -}; - -struct trace_event_raw_xfs_refcount_double_extent_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - enum xfs_refc_domain i1_domain; - xfs_agblock_t i1_startblock; - xfs_extlen_t i1_blockcount; - xfs_nlink_t i1_refcount; - enum xfs_refc_domain i2_domain; - xfs_agblock_t i2_startblock; - xfs_extlen_t i2_blockcount; - xfs_nlink_t i2_refcount; - char __data[0]; -}; - -struct trace_event_raw_xfs_refcount_double_extent_at_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - enum xfs_refc_domain i1_domain; - xfs_agblock_t i1_startblock; - xfs_extlen_t i1_blockcount; - xfs_nlink_t i1_refcount; - enum xfs_refc_domain i2_domain; - xfs_agblock_t i2_startblock; - xfs_extlen_t i2_blockcount; - xfs_nlink_t i2_refcount; - xfs_agblock_t agbno; - char __data[0]; -}; - -struct trace_event_raw_xfs_refcount_triple_extent_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - enum xfs_refc_domain i1_domain; - xfs_agblock_t i1_startblock; - xfs_extlen_t i1_blockcount; - xfs_nlink_t i1_refcount; - enum xfs_refc_domain i2_domain; - xfs_agblock_t i2_startblock; - xfs_extlen_t i2_blockcount; - xfs_nlink_t i2_refcount; - enum xfs_refc_domain i3_domain; - xfs_agblock_t i3_startblock; - xfs_extlen_t i3_blockcount; - xfs_nlink_t i3_refcount; - char __data[0]; -}; - -struct trace_event_raw_xfs_refcount_deferred_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - int op; - xfs_agblock_t agbno; - xfs_extlen_t len; - char __data[0]; -}; - -struct trace_event_raw_xfs_inode_error_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - int error; - long unsigned int caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_double_io_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t src_ino; - loff_t src_isize; - loff_t src_disize; - loff_t src_offset; - long long int len; - xfs_ino_t dest_ino; - loff_t dest_isize; - loff_t dest_disize; - loff_t dest_offset; - char __data[0]; -}; - -struct trace_event_raw_xfs_inode_irec_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - xfs_fileoff_t lblk; - xfs_extlen_t len; - xfs_fsblock_t pblk; - int state; - char __data[0]; -}; - -struct trace_event_raw_xfs_wb_invalid_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - u64 addr; - loff_t pos; - u64 len; - u16 type; - u16 flags; - u32 wpcseq; - u32 forkseq; - char __data[0]; -}; - -struct trace_event_raw_xfs_iomap_invalid_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - u64 addr; - loff_t pos; - u64 len; - u64 validity_cookie; - u64 inodeseq; - u16 type; - u16 flags; - char __data[0]; -}; - -struct trace_event_raw_xfs_reflink_remap_blocks { - struct trace_entry ent; - dev_t dev; - xfs_ino_t src_ino; - xfs_fileoff_t src_lblk; - xfs_filblks_t len; - xfs_ino_t dest_ino; - xfs_fileoff_t dest_lblk; - char __data[0]; -}; - -struct trace_event_raw_xfs_ioctl_clone { - struct trace_entry ent; - dev_t dev; - long unsigned int src_ino; - loff_t src_isize; - long unsigned int dest_ino; - loff_t dest_isize; - char __data[0]; -}; - -struct trace_event_raw_xfs_fsmap_class { - struct trace_entry ent; - dev_t dev; - dev_t keydev; - xfs_agnumber_t agno; - xfs_fsblock_t bno; - xfs_filblks_t len; - uint64_t owner; - uint64_t offset; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_xfs_fsmap_linear_class { - struct trace_entry ent; - dev_t dev; - dev_t keydev; - xfs_fsblock_t bno; - char __data[0]; -}; - -struct trace_event_raw_xfs_getfsmap_class { - struct trace_entry ent; - dev_t dev; - dev_t keydev; - xfs_daddr_t block; - xfs_daddr_t len; - uint64_t owner; - uint64_t offset; - uint64_t flags; - char __data[0]; -}; - -struct trace_event_raw_xfs_trans_resv_class { - struct trace_entry ent; - dev_t dev; - int type; - uint logres; - int logcount; - int logflags; - char __data[0]; -}; - -struct trace_event_raw_xfs_log_get_max_trans_res { - struct trace_entry ent; - dev_t dev; - uint logres; - int logcount; - char __data[0]; -}; - -struct trace_event_raw_xfs_trans_class { - struct trace_entry ent; - dev_t dev; - uint32_t tid; - uint32_t flags; - long unsigned int caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_iunlink_update_bucket { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - unsigned int bucket; - xfs_agino_t old_ptr; - xfs_agino_t new_ptr; - char __data[0]; -}; - -struct trace_event_raw_xfs_iunlink_update_dinode { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agino_t agino; - xfs_agino_t old_ptr; - xfs_agino_t new_ptr; - char __data[0]; -}; - -struct trace_event_raw_xfs_iunlink_reload_next { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agino_t agino; - xfs_agino_t prev_agino; - xfs_agino_t next_agino; - char __data[0]; -}; - -struct trace_event_raw_xfs_inode_reload_unlinked_bucket { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agino_t agino; - char __data[0]; -}; - -struct trace_event_raw_xfs_ag_inode_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agino_t agino; - char __data[0]; -}; - -struct trace_event_raw_xfs_fs_corrupt_class { - struct trace_entry ent; - dev_t dev; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_xfs_ag_corrupt_class { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_xfs_inode_corrupt_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_xfs_iwalk_ag { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agino_t startino; - char __data[0]; -}; - -struct trace_event_raw_xfs_iwalk_ag_rec { - struct trace_entry ent; - dev_t dev; - xfs_agnumber_t agno; - xfs_agino_t startino; - uint64_t freemask; - char __data[0]; -}; - -struct trace_event_raw_xfs_pwork_init { - struct trace_entry ent; - dev_t dev; - unsigned int nr_threads; - pid_t pid; - char __data[0]; -}; - -struct trace_event_raw_xfs_check_new_dalign { - struct trace_entry ent; - dev_t dev; - int new_dalign; - xfs_ino_t sb_rootino; - xfs_ino_t calc_rootino; - char __data[0]; -}; - -struct trace_event_raw_xfs_btree_commit_afakeroot { - struct trace_entry ent; - dev_t dev; - u32 __data_loc_name; - xfs_agnumber_t agno; - xfs_agblock_t agbno; - unsigned int levels; - unsigned int blocks; - char __data[0]; -}; - -struct trace_event_raw_xfs_btree_commit_ifakeroot { - struct trace_entry ent; - dev_t dev; - u32 __data_loc_name; - xfs_agnumber_t agno; - xfs_agino_t agino; - unsigned int levels; - unsigned int blocks; - int whichfork; - char __data[0]; -}; - -struct trace_event_raw_xfs_btree_bload_level_geometry { - struct trace_entry ent; - dev_t dev; - u32 __data_loc_name; - unsigned int level; - unsigned int nlevels; - uint64_t nr_this_level; - unsigned int nr_per_block; - unsigned int desired_npb; - long long unsigned int blocks; - long long unsigned int blocks_with_extra; - char __data[0]; -}; - -struct trace_event_raw_xfs_btree_bload_block { - struct trace_entry ent; - dev_t dev; - u32 __data_loc_name; - unsigned int level; - long long unsigned int block_idx; - long long unsigned int nr_blocks; - xfs_agnumber_t agno; - xfs_agblock_t agbno; - unsigned int nr_records; - char __data[0]; -}; - -struct trace_event_raw_xfs_timestamp_range_class { - struct trace_entry ent; - dev_t dev; - long long int min; - long long int max; - char __data[0]; -}; - -struct trace_event_raw_xfs_icwalk_class { - struct trace_entry ent; - dev_t dev; - __u32 flags; - uint32_t uid; - uint32_t gid; - prid_t prid; - __u64 min_file_size; - long int scan_limit; - long unsigned int caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xlog_iclog_class { - struct trace_entry ent; - dev_t dev; - uint32_t state; - int32_t refcount; - uint32_t offset; - uint32_t flags; - long long unsigned int lsn; - long unsigned int caller_ip; - char __data[0]; -}; - -struct trace_event_raw_xfs_das_state_class { - struct trace_entry ent; - int das; - xfs_ino_t ino; - char __data[0]; -}; - -struct trace_event_raw_xfs_force_shutdown { - struct trace_entry ent; - dev_t dev; - int ptag; - int flags; - u32 __data_loc_fname; - int line_num; - char __data[0]; -}; - -struct trace_event_raw_xfs_exchrange_inode_class { - struct trace_entry ent; - dev_t dev; - int whichfile; - xfs_ino_t ino; - int format; - xfs_extnum_t nex; - int broot_size; - int fork_off; - char __data[0]; -}; - -struct trace_event_raw_xfs_exchrange_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ip1_ino; - loff_t ip1_isize; - loff_t ip1_disize; - xfs_ino_t ip2_ino; - loff_t ip2_isize; - loff_t ip2_disize; - loff_t file1_offset; - loff_t file2_offset; - long long unsigned int length; - long long unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_xfs_exchrange_freshness { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ip2_ino; - long long int ip2_mtime; - long long int ip2_ctime; - int ip2_mtime_nsec; - int ip2_ctime_nsec; - xfs_ino_t file2_ino; - long long int file2_mtime; - long long int file2_ctime; - int file2_mtime_nsec; - int file2_ctime_nsec; - char __data[0]; -}; - -struct trace_event_raw_xfs_exchmaps_overhead { - struct trace_entry ent; - dev_t dev; - long long unsigned int bmbt_blocks; - long long unsigned int rmapbt_blocks; - char __data[0]; -}; - -struct trace_event_raw_xfs_exchmaps_estimate_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino1; - xfs_ino_t ino2; - xfs_fileoff_t startoff1; - xfs_fileoff_t startoff2; - xfs_filblks_t blockcount; - uint64_t flags; - xfs_filblks_t ip1_bcount; - xfs_filblks_t ip2_bcount; - xfs_filblks_t ip1_rtbcount; - xfs_filblks_t ip2_rtbcount; - long long unsigned int resblks; - long long unsigned int nr_exchanges; - char __data[0]; -}; - -struct trace_event_raw_xfs_exchmaps_intent_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino1; - xfs_ino_t ino2; - uint64_t flags; - xfs_fileoff_t startoff1; - xfs_fileoff_t startoff2; - xfs_filblks_t blockcount; - xfs_fsize_t isize1; - xfs_fsize_t isize2; - xfs_fsize_t new_isize1; - xfs_fsize_t new_isize2; - char __data[0]; -}; - -struct trace_event_raw_xfs_exchmaps_delta_nextents_step { - struct trace_entry ent; - dev_t dev; - xfs_fileoff_t loff; - xfs_fsblock_t lstart; - xfs_filblks_t lcount; - xfs_fileoff_t coff; - xfs_fsblock_t cstart; - xfs_filblks_t ccount; - xfs_fileoff_t noff; - xfs_fsblock_t nstart; - xfs_filblks_t ncount; - xfs_fileoff_t roff; - xfs_fsblock_t rstart; - xfs_filblks_t rcount; - int delta; - unsigned int state; - char __data[0]; -}; - -struct trace_event_raw_xfs_exchmaps_delta_nextents { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino1; - xfs_ino_t ino2; - xfs_extnum_t nexts1; - xfs_extnum_t nexts2; - int64_t d_nexts1; - int64_t d_nexts2; - char __data[0]; -}; - -struct trace_event_raw_xfs_getparents_rec_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - unsigned int firstu; - short unsigned int reclen; - unsigned int bufsize; - xfs_ino_t parent_ino; - unsigned int parent_gen; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_xfs_getparents_class { - struct trace_entry ent; - dev_t dev; - xfs_ino_t ino; - short unsigned int iflags; - short unsigned int oflags; - unsigned int bufsize; - unsigned int hashval; - unsigned int blkno; - unsigned int offset; - int initted; - char __data[0]; -}; - -struct trace_event_data_offsets_xfs_attr_list_class {}; - -struct trace_event_data_offsets_xlog_intent_recovery_failed { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_xfs_perag_class {}; - -struct trace_event_data_offsets_xfs_inodegc_worker {}; - -struct trace_event_data_offsets_xfs_fs_class {}; - -struct trace_event_data_offsets_xfs_inodegc_shrinker_scan {}; - -struct trace_event_data_offsets_xfs_ag_class {}; - -struct trace_event_data_offsets_xfs_attr_list_node_descend {}; - -struct trace_event_data_offsets_xfs_bmap_class {}; - -struct trace_event_data_offsets_xfs_buf_class {}; - -struct trace_event_data_offsets_xfs_buf_flags_class {}; - -struct trace_event_data_offsets_xfs_buf_ioerror {}; - -struct trace_event_data_offsets_xfs_buf_item_class {}; - -struct trace_event_data_offsets_xfs_filestream_class {}; - -struct trace_event_data_offsets_xfs_filestream_pick {}; - -struct trace_event_data_offsets_xfs_lock_class {}; - -struct trace_event_data_offsets_xfs_inode_class {}; - -struct trace_event_data_offsets_xfs_filemap_fault {}; - -struct trace_event_data_offsets_xfs_iref_class {}; - -struct trace_event_data_offsets_xfs_iomap_prealloc_size {}; - -struct trace_event_data_offsets_xfs_irec_merge_pre {}; - -struct trace_event_data_offsets_xfs_irec_merge_post {}; - -struct trace_event_data_offsets_xfs_namespace_class { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_xfs_rename { - u32 src_name; - const void *src_name_ptr_; - u32 target_name; - const void *target_name_ptr_; -}; - -struct trace_event_data_offsets_xfs_dquot_class {}; - -struct trace_event_data_offsets_xfs_trans_mod_dquot {}; - -struct trace_event_data_offsets_xfs_dqtrx_class {}; - -struct trace_event_data_offsets_xfs_loggrant_class {}; - -struct trace_event_data_offsets_xfs_log_item_class {}; - -struct trace_event_data_offsets_xfs_log_force {}; - -struct trace_event_data_offsets_xfs_ail_class {}; - -struct trace_event_data_offsets_xfs_log_assign_tail_lsn {}; - -struct trace_event_data_offsets_xfs_file_class {}; - -struct trace_event_data_offsets_xfs_imap_class {}; - -struct trace_event_data_offsets_xfs_simple_io_class {}; - -struct trace_event_data_offsets_xfs_itrunc_class {}; - -struct trace_event_data_offsets_xfs_pagecache_inval {}; - -struct trace_event_data_offsets_xfs_bunmap {}; - -struct trace_event_data_offsets_xfs_extent_busy_class {}; - -struct trace_event_data_offsets_xfs_extent_busy_trim {}; - -struct trace_event_data_offsets_xfs_agf_class {}; - -struct trace_event_data_offsets_xfs_free_extent {}; - -struct trace_event_data_offsets_xfs_alloc_class {}; - -struct trace_event_data_offsets_xfs_alloc_cur_check { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_xfs_da_class { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_xfs_attr_class { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_xfs_dir2_space_class {}; - -struct trace_event_data_offsets_xfs_dir2_leafn_moveents {}; - -struct trace_event_data_offsets_xfs_swap_extent_class {}; - -struct trace_event_data_offsets_xfs_log_recover {}; - -struct trace_event_data_offsets_xfs_log_recover_record {}; - -struct trace_event_data_offsets_xfs_log_recover_item_class {}; - -struct trace_event_data_offsets_xfs_log_recover_buf_item_class {}; - -struct trace_event_data_offsets_xfs_log_recover_ino_item_class {}; - -struct trace_event_data_offsets_xfs_log_recover_icreate_item_class {}; - -struct trace_event_data_offsets_xfs_discard_class {}; - -struct trace_event_data_offsets_xfs_rtdiscard_class {}; - -struct trace_event_data_offsets_xfs_btree_cur_class { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_xfs_btree_alloc_block { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_xfs_btree_free_block { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_xfs_defer_class {}; - -struct trace_event_data_offsets_xfs_defer_error_class {}; - -struct trace_event_data_offsets_xfs_defer_pending_class { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_xfs_free_extent_deferred_class {}; - -struct trace_event_data_offsets_xfs_defer_pending_item_class { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_xfs_rmap_class {}; - -struct trace_event_data_offsets_xfs_btree_error_class {}; - -struct trace_event_data_offsets_xfs_rmap_convert_state {}; - -struct trace_event_data_offsets_xfs_rmapbt_class {}; - -struct trace_event_data_offsets_xfs_rmap_deferred_class {}; - -struct trace_event_data_offsets_xfs_bmap_deferred_class {}; - -struct trace_event_data_offsets_xfs_ag_resv_class {}; - -struct trace_event_data_offsets_xfs_ag_error_class {}; - -struct trace_event_data_offsets_xfs_refcount_class {}; - -struct trace_event_data_offsets_xfs_refcount_lookup {}; - -struct trace_event_data_offsets_xfs_refcount_extent_class {}; - -struct trace_event_data_offsets_xfs_refcount_extent_at_class {}; - -struct trace_event_data_offsets_xfs_refcount_double_extent_class {}; - -struct trace_event_data_offsets_xfs_refcount_double_extent_at_class {}; - -struct trace_event_data_offsets_xfs_refcount_triple_extent_class {}; - -struct trace_event_data_offsets_xfs_refcount_deferred_class {}; - -struct trace_event_data_offsets_xfs_inode_error_class {}; - -struct trace_event_data_offsets_xfs_double_io_class {}; - -struct trace_event_data_offsets_xfs_inode_irec_class {}; - -struct trace_event_data_offsets_xfs_wb_invalid_class {}; - -struct trace_event_data_offsets_xfs_iomap_invalid_class {}; - -struct trace_event_data_offsets_xfs_reflink_remap_blocks {}; - -struct trace_event_data_offsets_xfs_ioctl_clone {}; - -struct trace_event_data_offsets_xfs_fsmap_class {}; - -struct trace_event_data_offsets_xfs_fsmap_linear_class {}; - -struct trace_event_data_offsets_xfs_getfsmap_class {}; - -struct trace_event_data_offsets_xfs_trans_resv_class {}; - -struct trace_event_data_offsets_xfs_log_get_max_trans_res {}; - -struct trace_event_data_offsets_xfs_trans_class {}; - -struct trace_event_data_offsets_xfs_iunlink_update_bucket {}; - -struct trace_event_data_offsets_xfs_iunlink_update_dinode {}; - -struct trace_event_data_offsets_xfs_iunlink_reload_next {}; - -struct trace_event_data_offsets_xfs_inode_reload_unlinked_bucket {}; - -struct trace_event_data_offsets_xfs_ag_inode_class {}; - -struct trace_event_data_offsets_xfs_fs_corrupt_class {}; - -struct trace_event_data_offsets_xfs_ag_corrupt_class {}; - -struct trace_event_data_offsets_xfs_inode_corrupt_class {}; - -struct trace_event_data_offsets_xfs_iwalk_ag {}; - -struct trace_event_data_offsets_xfs_iwalk_ag_rec {}; - -struct trace_event_data_offsets_xfs_pwork_init {}; - -struct trace_event_data_offsets_xfs_check_new_dalign {}; - -struct trace_event_data_offsets_xfs_btree_commit_afakeroot { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_xfs_btree_commit_ifakeroot { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_xfs_btree_bload_level_geometry { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_xfs_btree_bload_block { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_xfs_timestamp_range_class {}; - -struct trace_event_data_offsets_xfs_icwalk_class {}; - -struct trace_event_data_offsets_xlog_iclog_class {}; - -struct trace_event_data_offsets_xfs_das_state_class {}; - -struct trace_event_data_offsets_xfs_force_shutdown { - u32 fname; - const void *fname_ptr_; -}; - -struct trace_event_data_offsets_xfs_exchrange_inode_class {}; - -struct trace_event_data_offsets_xfs_exchrange_class {}; - -struct trace_event_data_offsets_xfs_exchrange_freshness {}; - -struct trace_event_data_offsets_xfs_exchmaps_overhead {}; - -struct trace_event_data_offsets_xfs_exchmaps_estimate_class {}; - -struct trace_event_data_offsets_xfs_exchmaps_intent_class {}; - -struct trace_event_data_offsets_xfs_exchmaps_delta_nextents_step {}; - -struct trace_event_data_offsets_xfs_exchmaps_delta_nextents {}; - -struct trace_event_data_offsets_xfs_getparents_rec_class { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_xfs_getparents_class {}; - -typedef void (*btf_trace_xfs_attr_list_sf)(void *, struct xfs_attr_list_context *); - -typedef void (*btf_trace_xfs_attr_list_sf_all)(void *, struct xfs_attr_list_context *); - -typedef void (*btf_trace_xfs_attr_list_leaf)(void *, struct xfs_attr_list_context *); - -typedef void (*btf_trace_xfs_attr_list_leaf_end)(void *, struct xfs_attr_list_context *); - -typedef void (*btf_trace_xfs_attr_list_full)(void *, struct xfs_attr_list_context *); - -typedef void (*btf_trace_xfs_attr_list_add)(void *, struct xfs_attr_list_context *); - -typedef void (*btf_trace_xfs_attr_list_wrong_blk)(void *, struct xfs_attr_list_context *); - -typedef void (*btf_trace_xfs_attr_list_notfound)(void *, struct xfs_attr_list_context *); - -typedef void (*btf_trace_xfs_attr_leaf_list)(void *, struct xfs_attr_list_context *); - -typedef void (*btf_trace_xfs_attr_node_list)(void *, struct xfs_attr_list_context *); - -typedef void (*btf_trace_xlog_intent_recovery_failed)(void *, struct xfs_mount *, const struct xfs_defer_op_type *, int); - -typedef void (*btf_trace_xfs_perag_get)(void *, struct xfs_perag *, long unsigned int); - -typedef void (*btf_trace_xfs_perag_hold)(void *, struct xfs_perag *, long unsigned int); - -typedef void (*btf_trace_xfs_perag_put)(void *, struct xfs_perag *, long unsigned int); - -typedef void (*btf_trace_xfs_perag_grab)(void *, struct xfs_perag *, long unsigned int); - -typedef void (*btf_trace_xfs_perag_grab_next_tag)(void *, struct xfs_perag *, long unsigned int); - -typedef void (*btf_trace_xfs_perag_rele)(void *, struct xfs_perag *, long unsigned int); - -typedef void (*btf_trace_xfs_perag_set_inode_tag)(void *, struct xfs_perag *, long unsigned int); - -typedef void (*btf_trace_xfs_perag_clear_inode_tag)(void *, struct xfs_perag *, long unsigned int); - -typedef void (*btf_trace_xfs_reclaim_inodes_count)(void *, struct xfs_perag *, long unsigned int); - -typedef void (*btf_trace_xfs_inodegc_worker)(void *, struct xfs_mount *, unsigned int); - -typedef void (*btf_trace_xfs_inodegc_flush)(void *, struct xfs_mount *, void *); - -typedef void (*btf_trace_xfs_inodegc_push)(void *, struct xfs_mount *, void *); - -typedef void (*btf_trace_xfs_inodegc_start)(void *, struct xfs_mount *, void *); - -typedef void (*btf_trace_xfs_inodegc_stop)(void *, struct xfs_mount *, void *); - -typedef void (*btf_trace_xfs_inodegc_queue)(void *, struct xfs_mount *, void *); - -typedef void (*btf_trace_xfs_inodegc_throttle)(void *, struct xfs_mount *, void *); - -typedef void (*btf_trace_xfs_fs_sync_fs)(void *, struct xfs_mount *, void *); - -typedef void (*btf_trace_xfs_blockgc_start)(void *, struct xfs_mount *, void *); - -typedef void (*btf_trace_xfs_blockgc_stop)(void *, struct xfs_mount *, void *); - -typedef void (*btf_trace_xfs_blockgc_worker)(void *, struct xfs_mount *, void *); - -typedef void (*btf_trace_xfs_blockgc_flush_all)(void *, struct xfs_mount *, void *); - -typedef void (*btf_trace_xfs_inodegc_shrinker_scan)(void *, struct xfs_mount *, struct shrink_control *, void *); - -typedef void (*btf_trace_xfs_read_agf)(void *, struct xfs_mount *, xfs_agnumber_t); - -typedef void (*btf_trace_xfs_alloc_read_agf)(void *, struct xfs_mount *, xfs_agnumber_t); - -typedef void (*btf_trace_xfs_read_agi)(void *, struct xfs_mount *, xfs_agnumber_t); - -typedef void (*btf_trace_xfs_ialloc_read_agi)(void *, struct xfs_mount *, xfs_agnumber_t); - -typedef void (*btf_trace_xfs_attr_list_node_descend)(void *, struct xfs_attr_list_context *, struct xfs_da_node_entry *); - -typedef void (*btf_trace_xfs_iext_insert)(void *, struct xfs_inode *, struct xfs_iext_cursor *, int, long unsigned int); - -typedef void (*btf_trace_xfs_iext_remove)(void *, struct xfs_inode *, struct xfs_iext_cursor *, int, long unsigned int); - -typedef void (*btf_trace_xfs_bmap_pre_update)(void *, struct xfs_inode *, struct xfs_iext_cursor *, int, long unsigned int); - -typedef void (*btf_trace_xfs_bmap_post_update)(void *, struct xfs_inode *, struct xfs_iext_cursor *, int, long unsigned int); - -typedef void (*btf_trace_xfs_read_extent)(void *, struct xfs_inode *, struct xfs_iext_cursor *, int, long unsigned int); - -typedef void (*btf_trace_xfs_write_extent)(void *, struct xfs_inode *, struct xfs_iext_cursor *, int, long unsigned int); - -typedef void (*btf_trace_xfs_buf_init)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_free)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_hold)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_rele)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_iodone)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_submit)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_lock)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_lock_done)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_trylock_fail)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_trylock)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_unlock)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_iowait)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_iowait_done)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_delwri_queue)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_delwri_queued)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_delwri_split)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_delwri_pushbuf)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_get_uncached)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_item_relse)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_iodone_async)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_error_relse)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_drain_buftarg)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_trans_read_buf_shut)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_btree_corrupt)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_reset_dqcounts)(void *, struct xfs_buf *, long unsigned int); - -typedef void (*btf_trace_xfs_buf_find)(void *, struct xfs_buf *, unsigned int, long unsigned int); - -typedef void (*btf_trace_xfs_buf_get)(void *, struct xfs_buf *, unsigned int, long unsigned int); - -typedef void (*btf_trace_xfs_buf_read)(void *, struct xfs_buf *, unsigned int, long unsigned int); - -typedef void (*btf_trace_xfs_buf_ioerror)(void *, struct xfs_buf *, int, xfs_failaddr_t); - -typedef void (*btf_trace_xfs_buf_item_size)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_buf_item_size_ordered)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_buf_item_size_stale)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_buf_item_format)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_buf_item_format_stale)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_buf_item_ordered)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_buf_item_pin)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_buf_item_unpin)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_buf_item_unpin_stale)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_buf_item_release)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_buf_item_committed)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_buf_item_push)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_trans_get_buf)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_trans_get_buf_recur)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_trans_getsb)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_trans_getsb_recur)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_trans_read_buf)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_trans_read_buf_recur)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_trans_log_buf)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_trans_brelse)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_trans_bdetach)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_trans_bjoin)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_trans_bhold)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_trans_bhold_release)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_trans_binval)(void *, struct xfs_buf_log_item *); - -typedef void (*btf_trace_xfs_filestream_free)(void *, struct xfs_perag *, xfs_ino_t); - -typedef void (*btf_trace_xfs_filestream_lookup)(void *, struct xfs_perag *, xfs_ino_t); - -typedef void (*btf_trace_xfs_filestream_scan)(void *, struct xfs_perag *, xfs_ino_t); - -typedef void (*btf_trace_xfs_filestream_pick)(void *, struct xfs_perag *, xfs_ino_t); - -typedef void (*btf_trace_xfs_ilock)(void *, struct xfs_inode *, unsigned int, long unsigned int); - -typedef void (*btf_trace_xfs_ilock_nowait)(void *, struct xfs_inode *, unsigned int, long unsigned int); - -typedef void (*btf_trace_xfs_ilock_demote)(void *, struct xfs_inode *, unsigned int, long unsigned int); - -typedef void (*btf_trace_xfs_iunlock)(void *, struct xfs_inode *, unsigned int, long unsigned int); - -typedef void (*btf_trace_xfs_iget_skip)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_iget_recycle)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_iget_recycle_fail)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_iget_hit)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_iget_miss)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_getattr)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_setattr)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_readlink)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_inactive_symlink)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_alloc_file_space)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_free_file_space)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_zero_file_space)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_collapse_file_space)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_insert_file_space)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_readdir)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_vm_bmap)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_file_ioctl)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_file_compat_ioctl)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_ioctl_setattr)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_dir_fsync)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_file_fsync)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_destroy_inode)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_update_time)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_dquot_dqalloc)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_dquot_dqdetach)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_inode_set_eofblocks_tag)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_inode_clear_eofblocks_tag)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_inode_free_eofblocks_invalid)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_inode_set_cowblocks_tag)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_inode_clear_cowblocks_tag)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_inode_free_cowblocks_invalid)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_inode_set_reclaimable)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_inode_reclaiming)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_inode_set_need_inactive)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_inode_inactivating)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_filemap_fault)(void *, struct xfs_inode *, unsigned int, bool); - -typedef void (*btf_trace_xfs_iomap_prealloc_size)(void *, struct xfs_inode *, xfs_fsblock_t, int, unsigned int); - -typedef void (*btf_trace_xfs_irec_merge_pre)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agino_t, uint16_t, xfs_agino_t, uint16_t); - -typedef void (*btf_trace_xfs_irec_merge_post)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agino_t, uint16_t); - -typedef void (*btf_trace_xfs_irele)(void *, struct xfs_inode *, long unsigned int); - -typedef void (*btf_trace_xfs_inode_pin)(void *, struct xfs_inode *, long unsigned int); - -typedef void (*btf_trace_xfs_inode_unpin)(void *, struct xfs_inode *, long unsigned int); - -typedef void (*btf_trace_xfs_inode_unpin_nowait)(void *, struct xfs_inode *, long unsigned int); - -typedef void (*btf_trace_xfs_remove)(void *, struct xfs_inode *, const struct xfs_name *); - -typedef void (*btf_trace_xfs_link)(void *, struct xfs_inode *, const struct xfs_name *); - -typedef void (*btf_trace_xfs_lookup)(void *, struct xfs_inode *, const struct xfs_name *); - -typedef void (*btf_trace_xfs_create)(void *, struct xfs_inode *, const struct xfs_name *); - -typedef void (*btf_trace_xfs_symlink)(void *, struct xfs_inode *, const struct xfs_name *); - -typedef void (*btf_trace_xfs_rename)(void *, struct xfs_inode *, struct xfs_inode *, struct xfs_name *, struct xfs_name *); - -typedef void (*btf_trace_xfs_dqadjust)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqreclaim_want)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqreclaim_dirty)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqreclaim_busy)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqreclaim_done)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqattach_found)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqattach_get)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqalloc)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqtobp_read)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqread)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqread_fail)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqget_hit)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqget_miss)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqget_freeing)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqget_dup)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqput)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqput_free)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqrele)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqflush)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqflush_force)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_dqflush_done)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_trans_apply_dquot_deltas_before)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_trans_apply_dquot_deltas_after)(void *, struct xfs_dquot *); - -typedef void (*btf_trace_xfs_trans_mod_dquot)(void *, struct xfs_trans *, struct xfs_dquot *, unsigned int, int64_t); - -typedef void (*btf_trace_xfs_trans_apply_dquot_deltas)(void *, struct xfs_dqtrx *); - -typedef void (*btf_trace_xfs_trans_mod_dquot_before)(void *, struct xfs_dqtrx *); - -typedef void (*btf_trace_xfs_trans_mod_dquot_after)(void *, struct xfs_dqtrx *); - -typedef void (*btf_trace_xfs_log_umount_write)(void *, struct xlog *, struct xlog_ticket *); - -typedef void (*btf_trace_xfs_log_grant_sleep)(void *, struct xlog *, struct xlog_ticket *); - -typedef void (*btf_trace_xfs_log_grant_wake)(void *, struct xlog *, struct xlog_ticket *); - -typedef void (*btf_trace_xfs_log_grant_wake_up)(void *, struct xlog *, struct xlog_ticket *); - -typedef void (*btf_trace_xfs_log_reserve)(void *, struct xlog *, struct xlog_ticket *); - -typedef void (*btf_trace_xfs_log_reserve_exit)(void *, struct xlog *, struct xlog_ticket *); - -typedef void (*btf_trace_xfs_log_regrant)(void *, struct xlog *, struct xlog_ticket *); - -typedef void (*btf_trace_xfs_log_regrant_exit)(void *, struct xlog *, struct xlog_ticket *); - -typedef void (*btf_trace_xfs_log_ticket_regrant)(void *, struct xlog *, struct xlog_ticket *); - -typedef void (*btf_trace_xfs_log_ticket_regrant_exit)(void *, struct xlog *, struct xlog_ticket *); - -typedef void (*btf_trace_xfs_log_ticket_regrant_sub)(void *, struct xlog *, struct xlog_ticket *); - -typedef void (*btf_trace_xfs_log_ticket_ungrant)(void *, struct xlog *, struct xlog_ticket *); - -typedef void (*btf_trace_xfs_log_ticket_ungrant_sub)(void *, struct xlog *, struct xlog_ticket *); - -typedef void (*btf_trace_xfs_log_ticket_ungrant_exit)(void *, struct xlog *, struct xlog_ticket *); - -typedef void (*btf_trace_xfs_log_cil_wait)(void *, struct xlog *, struct xlog_ticket *); - -typedef void (*btf_trace_xfs_log_cil_return)(void *, struct xlog *, struct xlog_ticket *); - -typedef void (*btf_trace_xfs_log_force)(void *, struct xfs_mount *, xfs_lsn_t, long unsigned int); - -typedef void (*btf_trace_xfs_ail_push)(void *, struct xfs_log_item *); - -typedef void (*btf_trace_xfs_ail_pinned)(void *, struct xfs_log_item *); - -typedef void (*btf_trace_xfs_ail_locked)(void *, struct xfs_log_item *); - -typedef void (*btf_trace_xfs_ail_flushing)(void *, struct xfs_log_item *); - -typedef void (*btf_trace_xfs_cil_whiteout_mark)(void *, struct xfs_log_item *); - -typedef void (*btf_trace_xfs_cil_whiteout_skip)(void *, struct xfs_log_item *); - -typedef void (*btf_trace_xfs_cil_whiteout_unpin)(void *, struct xfs_log_item *); - -typedef void (*btf_trace_xfs_ail_insert)(void *, struct xfs_log_item *, xfs_lsn_t, xfs_lsn_t); - -typedef void (*btf_trace_xfs_ail_move)(void *, struct xfs_log_item *, xfs_lsn_t, xfs_lsn_t); - -typedef void (*btf_trace_xfs_ail_delete)(void *, struct xfs_log_item *, xfs_lsn_t, xfs_lsn_t); - -typedef void (*btf_trace_xfs_log_assign_tail_lsn)(void *, struct xlog *, xfs_lsn_t); - -typedef void (*btf_trace_xfs_file_buffered_read)(void *, struct kiocb *, struct iov_iter *); - -typedef void (*btf_trace_xfs_file_direct_read)(void *, struct kiocb *, struct iov_iter *); - -typedef void (*btf_trace_xfs_file_dax_read)(void *, struct kiocb *, struct iov_iter *); - -typedef void (*btf_trace_xfs_file_buffered_write)(void *, struct kiocb *, struct iov_iter *); - -typedef void (*btf_trace_xfs_file_direct_write)(void *, struct kiocb *, struct iov_iter *); - -typedef void (*btf_trace_xfs_file_dax_write)(void *, struct kiocb *, struct iov_iter *); - -typedef void (*btf_trace_xfs_reflink_bounce_dio_write)(void *, struct kiocb *, struct iov_iter *); - -typedef void (*btf_trace_xfs_map_blocks_found)(void *, struct xfs_inode *, xfs_off_t, ssize_t, int, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_map_blocks_alloc)(void *, struct xfs_inode *, xfs_off_t, ssize_t, int, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_iomap_alloc)(void *, struct xfs_inode *, xfs_off_t, ssize_t, int, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_iomap_found)(void *, struct xfs_inode *, xfs_off_t, ssize_t, int, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_delalloc_enospc)(void *, struct xfs_inode *, xfs_off_t, ssize_t); - -typedef void (*btf_trace_xfs_unwritten_convert)(void *, struct xfs_inode *, xfs_off_t, ssize_t); - -typedef void (*btf_trace_xfs_setfilesize)(void *, struct xfs_inode *, xfs_off_t, ssize_t); - -typedef void (*btf_trace_xfs_zero_eof)(void *, struct xfs_inode *, xfs_off_t, ssize_t); - -typedef void (*btf_trace_xfs_end_io_direct_write)(void *, struct xfs_inode *, xfs_off_t, ssize_t); - -typedef void (*btf_trace_xfs_end_io_direct_write_unwritten)(void *, struct xfs_inode *, xfs_off_t, ssize_t); - -typedef void (*btf_trace_xfs_end_io_direct_write_append)(void *, struct xfs_inode *, xfs_off_t, ssize_t); - -typedef void (*btf_trace_xfs_file_splice_read)(void *, struct xfs_inode *, xfs_off_t, ssize_t); - -typedef void (*btf_trace_xfs_itruncate_extents_start)(void *, struct xfs_inode *, xfs_fsize_t); - -typedef void (*btf_trace_xfs_itruncate_extents_end)(void *, struct xfs_inode *, xfs_fsize_t); - -typedef void (*btf_trace_xfs_pagecache_inval)(void *, struct xfs_inode *, xfs_off_t, xfs_off_t); - -typedef void (*btf_trace_xfs_bunmap)(void *, struct xfs_inode *, xfs_fileoff_t, xfs_filblks_t, int, long unsigned int); - -typedef void (*btf_trace_xfs_extent_busy)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t); - -typedef void (*btf_trace_xfs_extent_busy_force)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t); - -typedef void (*btf_trace_xfs_extent_busy_reuse)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t); - -typedef void (*btf_trace_xfs_extent_busy_clear)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t); - -typedef void (*btf_trace_xfs_extent_busy_trim)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t, xfs_agblock_t, xfs_extlen_t); - -typedef void (*btf_trace_xfs_agf)(void *, struct xfs_mount *, struct xfs_agf *, int, long unsigned int); - -typedef void (*btf_trace_xfs_agfl_reset)(void *, struct xfs_mount *, struct xfs_agf *, int, long unsigned int); - -typedef void (*btf_trace_xfs_free_extent)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t, enum xfs_ag_resv_type, int, int); - -typedef void (*btf_trace_xfs_alloc_exact_done)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_exact_notfound)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_exact_error)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_near_nominleft)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_near_first)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_cur)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_cur_right)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_cur_left)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_cur_lookup)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_cur_lookup_done)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_near_error)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_near_noentry)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_near_busy)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_size_neither)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_size_noentry)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_size_nominleft)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_size_done)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_size_error)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_size_busy)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_small_freelist)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_small_notenough)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_small_done)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_small_error)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_vextent_badargs)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_vextent_skip_deadlock)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_vextent_nofix)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_vextent_noagbp)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_vextent_loopfailed)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_vextent_allfailed)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_vextent_this_ag)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_vextent_start_ag)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_vextent_first_ag)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_vextent_exact_bno)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_vextent_near_bno)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_vextent_finish)(void *, struct xfs_alloc_arg *); - -typedef void (*btf_trace_xfs_alloc_cur_check)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, xfs_extlen_t, bool); - -typedef void (*btf_trace_xfs_dir2_sf_addname)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_sf_create)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_sf_lookup)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_sf_replace)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_sf_removename)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_sf_toino4)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_sf_toino8)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_sf_to_block)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_block_addname)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_block_lookup)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_block_replace)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_block_removename)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_block_to_sf)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_block_to_leaf)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_leaf_addname)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_leaf_lookup)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_leaf_replace)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_leaf_removename)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_leaf_to_block)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_leaf_to_node)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_node_addname)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_node_lookup)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_node_replace)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_node_removename)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_node_to_leaf)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_sf_add)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_sf_addname)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_sf_create)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_sf_lookup)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_sf_remove)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_sf_to_leaf)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_add)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_add_old)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_add_new)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_add_work)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_create)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_compact)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_get)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_lookup)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_replace)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_remove)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_removename)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_split)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_split_before)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_split_after)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_clearflag)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_setflag)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_flipflags)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_to_sf)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_to_node)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_rebalance)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_unbalance)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_leaf_toosmall)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_node_addname)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_node_get)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_node_replace)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_node_removename)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_fillstate)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_refillstate)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_rmtval_get)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_attr_rmtval_set)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_split)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_join)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_link_before)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_link_after)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_unlink_back)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_unlink_forward)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_root_split)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_root_join)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_node_add)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_node_create)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_node_split)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_node_remove)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_node_rebalance)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_node_unbalance)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_node_toosmall)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_swap_lastblock)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_grow_inode)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_shrink_inode)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_fixhashpath)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_da_path_shift)(void *, struct xfs_da_args *); - -typedef void (*btf_trace_xfs_dir2_leafn_add)(void *, struct xfs_da_args *, int); - -typedef void (*btf_trace_xfs_dir2_leafn_remove)(void *, struct xfs_da_args *, int); - -typedef void (*btf_trace_xfs_dir2_grow_inode)(void *, struct xfs_da_args *, int); - -typedef void (*btf_trace_xfs_dir2_shrink_inode)(void *, struct xfs_da_args *, int); - -typedef void (*btf_trace_xfs_dir2_leafn_moveents)(void *, struct xfs_da_args *, int, int, int); - -typedef void (*btf_trace_xfs_swap_extent_before)(void *, struct xfs_inode *, int); - -typedef void (*btf_trace_xfs_swap_extent_after)(void *, struct xfs_inode *, int); - -typedef void (*btf_trace_xfs_log_recover)(void *, struct xlog *, xfs_daddr_t, xfs_daddr_t); - -typedef void (*btf_trace_xfs_log_recover_record)(void *, struct xlog *, struct xlog_rec_header *, int); - -typedef void (*btf_trace_xfs_log_recover_item_add)(void *, struct xlog *, struct xlog_recover *, struct xlog_recover_item *, int); - -typedef void (*btf_trace_xfs_log_recover_item_add_cont)(void *, struct xlog *, struct xlog_recover *, struct xlog_recover_item *, int); - -typedef void (*btf_trace_xfs_log_recover_item_reorder_head)(void *, struct xlog *, struct xlog_recover *, struct xlog_recover_item *, int); - -typedef void (*btf_trace_xfs_log_recover_item_reorder_tail)(void *, struct xlog *, struct xlog_recover *, struct xlog_recover_item *, int); - -typedef void (*btf_trace_xfs_log_recover_item_recover)(void *, struct xlog *, struct xlog_recover *, struct xlog_recover_item *, int); - -typedef void (*btf_trace_xfs_log_recover_buf_not_cancel)(void *, struct xlog *, struct xfs_buf_log_format *); - -typedef void (*btf_trace_xfs_log_recover_buf_cancel)(void *, struct xlog *, struct xfs_buf_log_format *); - -typedef void (*btf_trace_xfs_log_recover_buf_cancel_add)(void *, struct xlog *, struct xfs_buf_log_format *); - -typedef void (*btf_trace_xfs_log_recover_buf_cancel_ref_inc)(void *, struct xlog *, struct xfs_buf_log_format *); - -typedef void (*btf_trace_xfs_log_recover_buf_recover)(void *, struct xlog *, struct xfs_buf_log_format *); - -typedef void (*btf_trace_xfs_log_recover_buf_skip)(void *, struct xlog *, struct xfs_buf_log_format *); - -typedef void (*btf_trace_xfs_log_recover_buf_inode_buf)(void *, struct xlog *, struct xfs_buf_log_format *); - -typedef void (*btf_trace_xfs_log_recover_buf_reg_buf)(void *, struct xlog *, struct xfs_buf_log_format *); - -typedef void (*btf_trace_xfs_log_recover_buf_dquot_buf)(void *, struct xlog *, struct xfs_buf_log_format *); - -typedef void (*btf_trace_xfs_log_recover_inode_recover)(void *, struct xlog *, struct xfs_inode_log_format *); - -typedef void (*btf_trace_xfs_log_recover_inode_cancel)(void *, struct xlog *, struct xfs_inode_log_format *); - -typedef void (*btf_trace_xfs_log_recover_inode_skip)(void *, struct xlog *, struct xfs_inode_log_format *); - -typedef void (*btf_trace_xfs_log_recover_icreate_cancel)(void *, struct xlog *, struct xfs_icreate_log *); - -typedef void (*btf_trace_xfs_log_recover_icreate_recover)(void *, struct xlog *, struct xfs_icreate_log *); - -typedef void (*btf_trace_xfs_discard_extent)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t); - -typedef void (*btf_trace_xfs_discard_toosmall)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t); - -typedef void (*btf_trace_xfs_discard_exclude)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t); - -typedef void (*btf_trace_xfs_discard_busy)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agblock_t, xfs_extlen_t); - -typedef void (*btf_trace_xfs_discard_rtextent)(void *, struct xfs_mount *, xfs_rtblock_t, xfs_rtblock_t); - -typedef void (*btf_trace_xfs_discard_rttoosmall)(void *, struct xfs_mount *, xfs_rtblock_t, xfs_rtblock_t); - -typedef void (*btf_trace_xfs_discard_rtrelax)(void *, struct xfs_mount *, xfs_rtblock_t, xfs_rtblock_t); - -typedef void (*btf_trace_xfs_btree_updkeys)(void *, struct xfs_btree_cur *, int, struct xfs_buf *); - -typedef void (*btf_trace_xfs_btree_overlapped_query_range)(void *, struct xfs_btree_cur *, int, struct xfs_buf *); - -typedef void (*btf_trace_xfs_btree_alloc_block)(void *, struct xfs_btree_cur *, union xfs_btree_ptr *, int, int); - -typedef void (*btf_trace_xfs_btree_free_block)(void *, struct xfs_btree_cur *, struct xfs_buf *); - -typedef void (*btf_trace_xfs_defer_cancel)(void *, struct xfs_trans *, long unsigned int); - -typedef void (*btf_trace_xfs_defer_trans_roll)(void *, struct xfs_trans *, long unsigned int); - -typedef void (*btf_trace_xfs_defer_trans_abort)(void *, struct xfs_trans *, long unsigned int); - -typedef void (*btf_trace_xfs_defer_finish)(void *, struct xfs_trans *, long unsigned int); - -typedef void (*btf_trace_xfs_defer_finish_done)(void *, struct xfs_trans *, long unsigned int); - -typedef void (*btf_trace_xfs_defer_trans_roll_error)(void *, struct xfs_trans *, int); - -typedef void (*btf_trace_xfs_defer_finish_error)(void *, struct xfs_trans *, int); - -typedef void (*btf_trace_xfs_defer_create_intent)(void *, struct xfs_mount *, struct xfs_defer_pending *); - -typedef void (*btf_trace_xfs_defer_cancel_list)(void *, struct xfs_mount *, struct xfs_defer_pending *); - -typedef void (*btf_trace_xfs_defer_pending_finish)(void *, struct xfs_mount *, struct xfs_defer_pending *); - -typedef void (*btf_trace_xfs_defer_pending_abort)(void *, struct xfs_mount *, struct xfs_defer_pending *); - -typedef void (*btf_trace_xfs_defer_relog_intent)(void *, struct xfs_mount *, struct xfs_defer_pending *); - -typedef void (*btf_trace_xfs_defer_isolate_paused)(void *, struct xfs_mount *, struct xfs_defer_pending *); - -typedef void (*btf_trace_xfs_defer_item_pause)(void *, struct xfs_mount *, struct xfs_defer_pending *); - -typedef void (*btf_trace_xfs_defer_item_unpause)(void *, struct xfs_mount *, struct xfs_defer_pending *); - -typedef void (*btf_trace_xfs_agfl_free_defer)(void *, struct xfs_mount *, struct xfs_extent_free_item *); - -typedef void (*btf_trace_xfs_agfl_free_deferred)(void *, struct xfs_mount *, struct xfs_extent_free_item *); - -typedef void (*btf_trace_xfs_extent_free_defer)(void *, struct xfs_mount *, struct xfs_extent_free_item *); - -typedef void (*btf_trace_xfs_extent_free_deferred)(void *, struct xfs_mount *, struct xfs_extent_free_item *); - -typedef void (*btf_trace_xfs_defer_add_item)(void *, struct xfs_mount *, struct xfs_defer_pending *, void *); - -typedef void (*btf_trace_xfs_defer_cancel_item)(void *, struct xfs_mount *, struct xfs_defer_pending *, void *); - -typedef void (*btf_trace_xfs_defer_finish_item)(void *, struct xfs_mount *, struct xfs_defer_pending *, void *); - -typedef void (*btf_trace_xfs_rmap_unmap)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, bool, const struct xfs_owner_info *); - -typedef void (*btf_trace_xfs_rmap_unmap_done)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, bool, const struct xfs_owner_info *); - -typedef void (*btf_trace_xfs_rmap_unmap_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_rmap_map)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, bool, const struct xfs_owner_info *); - -typedef void (*btf_trace_xfs_rmap_map_done)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, bool, const struct xfs_owner_info *); - -typedef void (*btf_trace_xfs_rmap_map_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_rmap_convert)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, bool, const struct xfs_owner_info *); - -typedef void (*btf_trace_xfs_rmap_convert_done)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, bool, const struct xfs_owner_info *); - -typedef void (*btf_trace_xfs_rmap_convert_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_rmap_convert_state)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_rmap_defer)(void *, struct xfs_mount *, struct xfs_rmap_intent *); - -typedef void (*btf_trace_xfs_rmap_deferred)(void *, struct xfs_mount *, struct xfs_rmap_intent *); - -typedef void (*btf_trace_xfs_rmap_update)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); - -typedef void (*btf_trace_xfs_rmap_insert)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); - -typedef void (*btf_trace_xfs_rmap_delete)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); - -typedef void (*btf_trace_xfs_rmap_insert_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_rmap_delete_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_rmap_update_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_rmap_find_left_neighbor_candidate)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); - -typedef void (*btf_trace_xfs_rmap_find_left_neighbor_query)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); - -typedef void (*btf_trace_xfs_rmap_lookup_le_range_candidate)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); - -typedef void (*btf_trace_xfs_rmap_lookup_le_range)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); - -typedef void (*btf_trace_xfs_rmap_lookup_le_range_result)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); - -typedef void (*btf_trace_xfs_rmap_find_right_neighbor_result)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); - -typedef void (*btf_trace_xfs_rmap_find_left_neighbor_result)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t, uint64_t, uint64_t, unsigned int); - -typedef void (*btf_trace_xfs_bmap_defer)(void *, struct xfs_bmap_intent *); - -typedef void (*btf_trace_xfs_bmap_deferred)(void *, struct xfs_bmap_intent *); - -typedef void (*btf_trace_xfs_ag_resv_init)(void *, struct xfs_perag *, enum xfs_ag_resv_type, xfs_extlen_t); - -typedef void (*btf_trace_xfs_ag_resv_free)(void *, struct xfs_perag *, enum xfs_ag_resv_type, xfs_extlen_t); - -typedef void (*btf_trace_xfs_ag_resv_alloc_extent)(void *, struct xfs_perag *, enum xfs_ag_resv_type, xfs_extlen_t); - -typedef void (*btf_trace_xfs_ag_resv_free_extent)(void *, struct xfs_perag *, enum xfs_ag_resv_type, xfs_extlen_t); - -typedef void (*btf_trace_xfs_ag_resv_critical)(void *, struct xfs_perag *, enum xfs_ag_resv_type, xfs_extlen_t); - -typedef void (*btf_trace_xfs_ag_resv_needed)(void *, struct xfs_perag *, enum xfs_ag_resv_type, xfs_extlen_t); - -typedef void (*btf_trace_xfs_ag_resv_init_error)(void *, struct xfs_mount *, xfs_agnumber_t, int, long unsigned int); - -typedef void (*btf_trace_xfs_refcount_lookup)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_lookup_t); - -typedef void (*btf_trace_xfs_refcount_get)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *); - -typedef void (*btf_trace_xfs_refcount_update)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *); - -typedef void (*btf_trace_xfs_refcount_insert)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *); - -typedef void (*btf_trace_xfs_refcount_delete)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *); - -typedef void (*btf_trace_xfs_refcount_insert_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_refcount_delete_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_refcount_update_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_refcount_increase)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t); - -typedef void (*btf_trace_xfs_refcount_decrease)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t); - -typedef void (*btf_trace_xfs_refcount_cow_increase)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t); - -typedef void (*btf_trace_xfs_refcount_cow_decrease)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t); - -typedef void (*btf_trace_xfs_refcount_merge_center_extents)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *, struct xfs_refcount_irec *, struct xfs_refcount_irec *); - -typedef void (*btf_trace_xfs_refcount_modify_extent)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *); - -typedef void (*btf_trace_xfs_refcount_split_extent)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *, xfs_agblock_t); - -typedef void (*btf_trace_xfs_refcount_merge_left_extent)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *, struct xfs_refcount_irec *); - -typedef void (*btf_trace_xfs_refcount_merge_right_extent)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *, struct xfs_refcount_irec *); - -typedef void (*btf_trace_xfs_refcount_find_left_extent)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *, struct xfs_refcount_irec *, xfs_agblock_t); - -typedef void (*btf_trace_xfs_refcount_find_right_extent)(void *, struct xfs_btree_cur *, struct xfs_refcount_irec *, struct xfs_refcount_irec *, xfs_agblock_t); - -typedef void (*btf_trace_xfs_refcount_adjust_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_refcount_adjust_cow_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_refcount_merge_center_extents_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_refcount_modify_extent_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_refcount_split_extent_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_refcount_merge_left_extent_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_refcount_merge_right_extent_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_refcount_find_left_extent_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_refcount_find_right_extent_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_refcount_find_shared)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t); - -typedef void (*btf_trace_xfs_refcount_find_shared_result)(void *, struct xfs_btree_cur *, xfs_agblock_t, xfs_extlen_t); - -typedef void (*btf_trace_xfs_refcount_find_shared_error)(void *, struct xfs_btree_cur *, int, long unsigned int); - -typedef void (*btf_trace_xfs_refcount_defer)(void *, struct xfs_mount *, struct xfs_refcount_intent *); - -typedef void (*btf_trace_xfs_refcount_deferred)(void *, struct xfs_mount *, struct xfs_refcount_intent *); - -typedef void (*btf_trace_xfs_refcount_finish_one_leftover)(void *, struct xfs_mount *, struct xfs_refcount_intent *); - -typedef void (*btf_trace_xfs_wb_cow_iomap_invalid)(void *, struct xfs_inode *, const struct iomap *, unsigned int, int); - -typedef void (*btf_trace_xfs_wb_data_iomap_invalid)(void *, struct xfs_inode *, const struct iomap *, unsigned int, int); - -typedef void (*btf_trace_xfs_iomap_invalid)(void *, struct xfs_inode *, const struct iomap *); - -typedef void (*btf_trace_xfs_reflink_set_inode_flag)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_reflink_unset_inode_flag)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_reflink_update_inode_size)(void *, struct xfs_inode *, xfs_fsize_t); - -typedef void (*btf_trace_xfs_reflink_remap_blocks)(void *, struct xfs_inode *, xfs_fileoff_t, xfs_filblks_t, struct xfs_inode *, xfs_fileoff_t); - -typedef void (*btf_trace_xfs_reflink_remap_range)(void *, struct xfs_inode *, xfs_off_t, xfs_off_t, struct xfs_inode *, xfs_off_t); - -typedef void (*btf_trace_xfs_reflink_remap_range_error)(void *, struct xfs_inode *, int, long unsigned int); - -typedef void (*btf_trace_xfs_reflink_set_inode_flag_error)(void *, struct xfs_inode *, int, long unsigned int); - -typedef void (*btf_trace_xfs_reflink_update_inode_size_error)(void *, struct xfs_inode *, int, long unsigned int); - -typedef void (*btf_trace_xfs_reflink_remap_blocks_error)(void *, struct xfs_inode *, int, long unsigned int); - -typedef void (*btf_trace_xfs_reflink_remap_extent_error)(void *, struct xfs_inode *, int, long unsigned int); - -typedef void (*btf_trace_xfs_reflink_remap_extent_src)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_reflink_remap_extent_dest)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_reflink_compare_extents)(void *, struct xfs_inode *, xfs_off_t, xfs_off_t, struct xfs_inode *, xfs_off_t); - -typedef void (*btf_trace_xfs_reflink_compare_extents_error)(void *, struct xfs_inode *, int, long unsigned int); - -typedef void (*btf_trace_xfs_ioctl_clone)(void *, struct inode *, struct inode *); - -typedef void (*btf_trace_xfs_reflink_unshare)(void *, struct xfs_inode *, xfs_off_t, ssize_t); - -typedef void (*btf_trace_xfs_reflink_unshare_error)(void *, struct xfs_inode *, int, long unsigned int); - -typedef void (*btf_trace_xfs_reflink_trim_around_shared)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_reflink_cow_found)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_reflink_cow_enospc)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_reflink_convert_cow)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_reflink_cancel_cow_range)(void *, struct xfs_inode *, xfs_off_t, ssize_t); - -typedef void (*btf_trace_xfs_reflink_end_cow)(void *, struct xfs_inode *, xfs_off_t, ssize_t); - -typedef void (*btf_trace_xfs_reflink_cow_remap_from)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_reflink_cow_remap_to)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_reflink_cancel_cow_range_error)(void *, struct xfs_inode *, int, long unsigned int); - -typedef void (*btf_trace_xfs_reflink_end_cow_error)(void *, struct xfs_inode *, int, long unsigned int); - -typedef void (*btf_trace_xfs_reflink_cancel_cow)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_swap_extent_rmap_remap)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_swap_extent_rmap_remap_piece)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_swap_extent_rmap_error)(void *, struct xfs_inode *, int, long unsigned int); - -typedef void (*btf_trace_xfs_fsmap_low_key)(void *, struct xfs_mount *, u32, xfs_agnumber_t, const struct xfs_rmap_irec *); - -typedef void (*btf_trace_xfs_fsmap_high_key)(void *, struct xfs_mount *, u32, xfs_agnumber_t, const struct xfs_rmap_irec *); - -typedef void (*btf_trace_xfs_fsmap_mapping)(void *, struct xfs_mount *, u32, xfs_agnumber_t, const struct xfs_rmap_irec *); - -typedef void (*btf_trace_xfs_fsmap_low_key_linear)(void *, struct xfs_mount *, u32, uint64_t); - -typedef void (*btf_trace_xfs_fsmap_high_key_linear)(void *, struct xfs_mount *, u32, uint64_t); - -typedef void (*btf_trace_xfs_getfsmap_low_key)(void *, struct xfs_mount *, struct xfs_fsmap *); - -typedef void (*btf_trace_xfs_getfsmap_high_key)(void *, struct xfs_mount *, struct xfs_fsmap *); - -typedef void (*btf_trace_xfs_getfsmap_mapping)(void *, struct xfs_mount *, struct xfs_fsmap *); - -typedef void (*btf_trace_xfs_trans_resv_calc)(void *, struct xfs_mount *, unsigned int, struct xfs_trans_res *); - -typedef void (*btf_trace_xfs_trans_resv_calc_minlogsize)(void *, struct xfs_mount *, unsigned int, struct xfs_trans_res *); - -typedef void (*btf_trace_xfs_log_get_max_trans_res)(void *, struct xfs_mount *, const struct xfs_trans_res *); - -typedef void (*btf_trace_xfs_trans_alloc)(void *, struct xfs_trans *, long unsigned int); - -typedef void (*btf_trace_xfs_trans_cancel)(void *, struct xfs_trans *, long unsigned int); - -typedef void (*btf_trace_xfs_trans_commit)(void *, struct xfs_trans *, long unsigned int); - -typedef void (*btf_trace_xfs_trans_dup)(void *, struct xfs_trans *, long unsigned int); - -typedef void (*btf_trace_xfs_trans_free)(void *, struct xfs_trans *, long unsigned int); - -typedef void (*btf_trace_xfs_trans_roll)(void *, struct xfs_trans *, long unsigned int); - -typedef void (*btf_trace_xfs_trans_add_item)(void *, struct xfs_trans *, long unsigned int); - -typedef void (*btf_trace_xfs_trans_commit_items)(void *, struct xfs_trans *, long unsigned int); - -typedef void (*btf_trace_xfs_trans_free_items)(void *, struct xfs_trans *, long unsigned int); - -typedef void (*btf_trace_xfs_iunlink_update_bucket)(void *, struct xfs_mount *, xfs_agnumber_t, unsigned int, xfs_agino_t, xfs_agino_t); - -typedef void (*btf_trace_xfs_iunlink_update_dinode)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agino_t, xfs_agino_t, xfs_agino_t); - -typedef void (*btf_trace_xfs_iunlink_reload_next)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_inode_reload_unlinked_bucket)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_iunlink)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_iunlink_remove)(void *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_fs_mark_sick)(void *, struct xfs_mount *, unsigned int); - -typedef void (*btf_trace_xfs_fs_mark_corrupt)(void *, struct xfs_mount *, unsigned int); - -typedef void (*btf_trace_xfs_fs_mark_healthy)(void *, struct xfs_mount *, unsigned int); - -typedef void (*btf_trace_xfs_fs_unfixed_corruption)(void *, struct xfs_mount *, unsigned int); - -typedef void (*btf_trace_xfs_rt_mark_sick)(void *, struct xfs_mount *, unsigned int); - -typedef void (*btf_trace_xfs_rt_mark_corrupt)(void *, struct xfs_mount *, unsigned int); - -typedef void (*btf_trace_xfs_rt_mark_healthy)(void *, struct xfs_mount *, unsigned int); - -typedef void (*btf_trace_xfs_rt_unfixed_corruption)(void *, struct xfs_mount *, unsigned int); - -typedef void (*btf_trace_xfs_ag_mark_sick)(void *, struct xfs_mount *, xfs_agnumber_t, unsigned int); - -typedef void (*btf_trace_xfs_ag_mark_corrupt)(void *, struct xfs_mount *, xfs_agnumber_t, unsigned int); - -typedef void (*btf_trace_xfs_ag_mark_healthy)(void *, struct xfs_mount *, xfs_agnumber_t, unsigned int); - -typedef void (*btf_trace_xfs_ag_unfixed_corruption)(void *, struct xfs_mount *, xfs_agnumber_t, unsigned int); - -typedef void (*btf_trace_xfs_inode_mark_sick)(void *, struct xfs_inode *, unsigned int); - -typedef void (*btf_trace_xfs_inode_mark_corrupt)(void *, struct xfs_inode *, unsigned int); - -typedef void (*btf_trace_xfs_inode_mark_healthy)(void *, struct xfs_inode *, unsigned int); - -typedef void (*btf_trace_xfs_inode_unfixed_corruption)(void *, struct xfs_inode *, unsigned int); - -typedef void (*btf_trace_xfs_iwalk_ag)(void *, struct xfs_mount *, xfs_agnumber_t, xfs_agino_t); - -typedef void (*btf_trace_xfs_iwalk_ag_rec)(void *, struct xfs_mount *, xfs_agnumber_t, struct xfs_inobt_rec_incore *); - -typedef void (*btf_trace_xfs_pwork_init)(void *, struct xfs_mount *, unsigned int, pid_t); - -typedef void (*btf_trace_xfs_check_new_dalign)(void *, struct xfs_mount *, int, xfs_ino_t); - -typedef void (*btf_trace_xfs_btree_commit_afakeroot)(void *, struct xfs_btree_cur *); - -typedef void (*btf_trace_xfs_btree_commit_ifakeroot)(void *, struct xfs_btree_cur *); - -typedef void (*btf_trace_xfs_btree_bload_level_geometry)(void *, struct xfs_btree_cur *, unsigned int, uint64_t, unsigned int, unsigned int, uint64_t, uint64_t); - -typedef void (*btf_trace_xfs_btree_bload_block)(void *, struct xfs_btree_cur *, unsigned int, uint64_t, uint64_t, union xfs_btree_ptr *, unsigned int); - -typedef void (*btf_trace_xfs_inode_timestamp_range)(void *, struct xfs_mount *, long long int, long long int); - -typedef void (*btf_trace_xfs_quota_expiry_range)(void *, struct xfs_mount *, long long int, long long int); - -typedef void (*btf_trace_xfs_ioc_free_eofblocks)(void *, struct xfs_mount *, struct xfs_icwalk *, long unsigned int); - -typedef void (*btf_trace_xfs_blockgc_free_space)(void *, struct xfs_mount *, struct xfs_icwalk *, long unsigned int); - -typedef void (*btf_trace_xlog_iclog_activate)(void *, struct xlog_in_core *, long unsigned int); - -typedef void (*btf_trace_xlog_iclog_clean)(void *, struct xlog_in_core *, long unsigned int); - -typedef void (*btf_trace_xlog_iclog_callback)(void *, struct xlog_in_core *, long unsigned int); - -typedef void (*btf_trace_xlog_iclog_callbacks_start)(void *, struct xlog_in_core *, long unsigned int); - -typedef void (*btf_trace_xlog_iclog_callbacks_done)(void *, struct xlog_in_core *, long unsigned int); - -typedef void (*btf_trace_xlog_iclog_force)(void *, struct xlog_in_core *, long unsigned int); - -typedef void (*btf_trace_xlog_iclog_force_lsn)(void *, struct xlog_in_core *, long unsigned int); - -typedef void (*btf_trace_xlog_iclog_get_space)(void *, struct xlog_in_core *, long unsigned int); - -typedef void (*btf_trace_xlog_iclog_release)(void *, struct xlog_in_core *, long unsigned int); - -typedef void (*btf_trace_xlog_iclog_switch)(void *, struct xlog_in_core *, long unsigned int); - -typedef void (*btf_trace_xlog_iclog_sync)(void *, struct xlog_in_core *, long unsigned int); - -typedef void (*btf_trace_xlog_iclog_syncing)(void *, struct xlog_in_core *, long unsigned int); - -typedef void (*btf_trace_xlog_iclog_sync_done)(void *, struct xlog_in_core *, long unsigned int); - -typedef void (*btf_trace_xlog_iclog_want_sync)(void *, struct xlog_in_core *, long unsigned int); - -typedef void (*btf_trace_xlog_iclog_wait_on)(void *, struct xlog_in_core *, long unsigned int); - -typedef void (*btf_trace_xlog_iclog_write)(void *, struct xlog_in_core *, long unsigned int); - -typedef void (*btf_trace_xfs_attr_sf_addname_return)(void *, int, struct xfs_inode *); - -typedef void (*btf_trace_xfs_attr_set_iter_return)(void *, int, struct xfs_inode *); - -typedef void (*btf_trace_xfs_attr_leaf_addname_return)(void *, int, struct xfs_inode *); - -typedef void (*btf_trace_xfs_attr_node_addname_return)(void *, int, struct xfs_inode *); - -typedef void (*btf_trace_xfs_attr_remove_iter_return)(void *, int, struct xfs_inode *); - -typedef void (*btf_trace_xfs_attr_rmtval_alloc)(void *, int, struct xfs_inode *); - -typedef void (*btf_trace_xfs_attr_rmtval_remove_return)(void *, int, struct xfs_inode *); - -typedef void (*btf_trace_xfs_attr_defer_add)(void *, int, struct xfs_inode *); - -typedef void (*btf_trace_xfs_force_shutdown)(void *, struct xfs_mount *, int, int, const char *, int); - -typedef void (*btf_trace_xfs_exchmaps_mapping1_skip)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_exchmaps_mapping1)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_exchmaps_mapping2)(void *, struct xfs_inode *, struct xfs_bmbt_irec *); - -typedef void (*btf_trace_xfs_exchmaps_update_inode_size)(void *, struct xfs_inode *, xfs_fsize_t); - -typedef void (*btf_trace_xfs_exchrange_before)(void *, struct xfs_inode *, int); - -typedef void (*btf_trace_xfs_exchrange_after)(void *, struct xfs_inode *, int); - -typedef void (*btf_trace_xfs_exchrange_error)(void *, struct xfs_inode *, int, long unsigned int); - -typedef void (*btf_trace_xfs_exchrange_prep)(void *, const struct xfs_exchrange *, struct xfs_inode *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_exchrange_flush)(void *, const struct xfs_exchrange *, struct xfs_inode *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_exchrange_mappings)(void *, const struct xfs_exchrange *, struct xfs_inode *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_exchrange_freshness)(void *, const struct xfs_exchrange *, struct xfs_inode *); - -typedef void (*btf_trace_xfs_exchmaps_overhead)(void *, struct xfs_mount *, long long unsigned int, long long unsigned int); - -typedef void (*btf_trace_xfs_exchmaps_initial_estimate)(void *, const struct xfs_exchmaps_req *); - -typedef void (*btf_trace_xfs_exchmaps_final_estimate)(void *, const struct xfs_exchmaps_req *); - -typedef void (*btf_trace_xfs_exchmaps_defer)(void *, struct xfs_mount *, const struct xfs_exchmaps_intent *); - -typedef void (*btf_trace_xfs_exchmaps_recover)(void *, struct xfs_mount *, const struct xfs_exchmaps_intent *); - -typedef void (*btf_trace_xfs_exchmaps_delta_nextents_step)(void *, struct xfs_mount *, const struct xfs_bmbt_irec *, const struct xfs_bmbt_irec *, const struct xfs_bmbt_irec *, const struct xfs_bmbt_irec *, int, unsigned int); - -typedef void (*btf_trace_xfs_exchmaps_delta_nextents)(void *, const struct xfs_exchmaps_req *, int64_t, int64_t); - -typedef void (*btf_trace_xfs_getparents_put_listent)(void *, struct xfs_inode *, const struct xfs_getparents *, const struct xfs_attr_list_context *, const struct xfs_getparents_rec *); - -typedef void (*btf_trace_xfs_getparents_expand_lastrec)(void *, struct xfs_inode *, const struct xfs_getparents *, const struct xfs_attr_list_context *, const struct xfs_getparents_rec *); - -typedef void (*btf_trace_xfs_getparents_begin)(void *, struct xfs_inode *, const struct xfs_getparents *, const struct xfs_attrlist_cursor_kern *); - -typedef void (*btf_trace_xfs_getparents_end)(void *, struct xfs_inode *, const struct xfs_getparents *, const struct xfs_attrlist_cursor_kern *); - -struct scrub_sector_verification; - -struct scrub_stripe { - struct scrub_ctx *sctx; - struct btrfs_block_group *bg; - struct page *pages[16]; - struct scrub_sector_verification *sectors; - struct btrfs_device *dev; - u64 logical; - u64 physical; - u16 mirror_num; - u16 nr_sectors; - u16 nr_data_extents; - u16 nr_meta_extents; - atomic_t pending_io; - wait_queue_head_t io_wait; - wait_queue_head_t repair_wait; - long unsigned int state; - long unsigned int extent_sector_bitmap; - long unsigned int init_error_bitmap; - unsigned int init_nr_io_errors; - unsigned int init_nr_csum_errors; - unsigned int init_nr_meta_errors; - unsigned int init_nr_meta_gen_errors; - long unsigned int error_bitmap; - long unsigned int io_error_bitmap; - long unsigned int csum_error_bitmap; - long unsigned int meta_error_bitmap; - long unsigned int meta_gen_error_bitmap; - long unsigned int write_error_bitmap; - spinlock_t write_error_lock; - u8 *csums; - struct work_struct work; -}; - -struct scrub_ctx { - struct scrub_stripe stripes[128]; - struct scrub_stripe *raid56_data_stripes; - struct btrfs_fs_info *fs_info; - struct btrfs_path extent_path; - struct btrfs_path csum_path; - int first_free; - int cur_stripe; - atomic_t cancel_req; - int readonly; - ktime_t throttle_deadline; - u64 throttle_sent; - int is_dev_replace; - u64 write_pointer; - struct mutex wr_lock; - struct btrfs_device *wr_tgtdev; - struct btrfs_scrub_progress stat; - spinlock_t stat_lock; - refcount_t refs; -}; - -enum btrfs_rbio_ops { - BTRFS_RBIO_WRITE = 0, - BTRFS_RBIO_READ_REBUILD = 1, - BTRFS_RBIO_PARITY_SCRUB = 2, -}; - -struct sector_ptr; - -struct btrfs_raid_bio { - struct btrfs_io_context *bioc; - struct list_head hash_list; - struct list_head stripe_cache; - struct work_struct work; - struct bio_list bio_list; - spinlock_t bio_list_lock; - struct list_head plug_list; - long unsigned int flags; - enum btrfs_rbio_ops operation; - u16 nr_pages; - u16 nr_sectors; - u8 nr_data; - u8 real_stripes; - u8 stripe_npages; - u8 stripe_nsectors; - u8 scrubp; - int bio_list_bytes; - refcount_t refs; - atomic_t stripes_pending; - wait_queue_head_t io_wait; - long unsigned int dbitmap; - long unsigned int finish_pbitmap; - struct page **stripe_pages; - struct sector_ptr *bio_sectors; - struct sector_ptr *stripe_sectors; - void **finish_pointers; - long unsigned int *error_bitmap; - u8 *csum_buf; - long unsigned int *csum_bitmap; -}; - -struct scrub_sector_verification { - bool is_metadata; - union { - u8 *csum; - u64 generation; - }; -}; - -enum scrub_stripe_flags { - SCRUB_STRIPE_FLAG_INITIALIZED = 0, - SCRUB_STRIPE_FLAG_REPAIR_DONE = 1, - SCRUB_STRIPE_FLAG_NO_REPORT = 2, -}; - -struct scrub_warning { - struct btrfs_path *path; - u64 extent_item_size; - const char *errstr; - u64 physical; - u64 logical; - struct btrfs_device *dev; -}; - -struct btrfs_fiemap_entry { - u64 offset; - u64 phys; - u64 len; - u32 flags; -}; - -struct fiemap_cache { - struct btrfs_fiemap_entry *entries; - int entries_size; - int entries_pos; - u64 next_search_offset; - unsigned int extents_mapped; - u64 offset; - u64 phys; - u64 len; - u32 flags; - bool cached; -}; - -struct erofs_inode_chunk_info { - __le16 format; - __le16 reserved; -}; - -union erofs_inode_i_u { - __le32 compressed_blocks; - __le32 raw_blkaddr; - __le32 rdev; - struct erofs_inode_chunk_info c; -}; - -struct erofs_inode_compact { - __le16 i_format; - __le16 i_xattr_icount; - __le16 i_mode; - __le16 i_nlink; - __le32 i_size; - __le32 i_reserved; - union erofs_inode_i_u i_u; - __le32 i_ino; - __le16 i_uid; - __le16 i_gid; - __le32 i_reserved2; -}; - -struct erofs_inode_extended { - __le16 i_format; - __le16 i_xattr_icount; - __le16 i_mode; - __le16 i_reserved; - __le64 i_size; - union erofs_inode_i_u i_u; - __le32 i_ino; - __le32 i_uid; - __le32 i_gid; - __le64 i_mtime; - __le32 i_mtime_nsec; - __le32 i_nlink; - __u8 i_reserved2[16]; -}; - -enum { - EROFS_SYNC_DECOMPRESS_AUTO = 0, - EROFS_SYNC_DECOMPRESS_FORCE_ON = 1, - EROFS_SYNC_DECOMPRESS_FORCE_OFF = 2, -}; - -enum { - attr_feature = 0, - attr_pointer_ui = 1, - attr_pointer_bool = 2, -}; - -enum { - struct_erofs_sb_info = 0, - struct_erofs_mount_opts = 1, -}; - -struct erofs_attr { - struct attribute attr; - short int attr_id; - int struct_type; - int offset; -}; - -typedef int __kernel_ipc_pid_t; - -struct msgbuf { - __kernel_long_t mtype; - char mtext[1]; -}; - -struct msg; - -struct msqid_ds { - struct ipc_perm msg_perm; - struct msg *msg_first; - struct msg *msg_last; - __kernel_old_time_t msg_stime; - __kernel_old_time_t msg_rtime; - __kernel_old_time_t msg_ctime; - long unsigned int msg_lcbytes; - long unsigned int msg_lqbytes; - short unsigned int msg_cbytes; - short unsigned int msg_qnum; - short unsigned int msg_qbytes; - __kernel_ipc_pid_t msg_lspid; - __kernel_ipc_pid_t msg_lrpid; -}; - -struct msqid64_ds { - struct ipc64_perm msg_perm; - long int msg_stime; - long int msg_rtime; - long int msg_ctime; - long unsigned int msg_cbytes; - long unsigned int msg_qnum; - long unsigned int msg_qbytes; - __kernel_pid_t msg_lspid; - __kernel_pid_t msg_lrpid; - long unsigned int __unused4; - long unsigned int __unused5; -}; - -struct msginfo { - int msgpool; - int msgmap; - int msgmax; - int msgmnb; - int msgmni; - int msgssz; - int msgtql; - short unsigned int msgseg; -}; - -struct msg_msgseg; - -struct msg_msg { - struct list_head m_list; - long int m_type; - size_t m_ts; - struct msg_msgseg *next; - void *security; -}; - -struct msg_queue { - struct kern_ipc_perm q_perm; - time64_t q_stime; - time64_t q_rtime; - time64_t q_ctime; - long unsigned int q_cbytes; - long unsigned int q_qnum; - long unsigned int q_qbytes; - struct pid *q_lspid; - struct pid *q_lrpid; - struct list_head q_messages; - struct list_head q_receivers; - struct list_head q_senders; - long: 64; - long: 64; -}; - -struct msg_receiver { - struct list_head r_list; - struct task_struct *r_tsk; - int r_mode; - long int r_msgtype; - long int r_maxsize; - struct msg_msg *r_msg; -}; - -struct msg_sender { - struct list_head list; - struct task_struct *tsk; - size_t msgsz; -}; - -struct trusted_key_ops { - unsigned char migratable; - int (*init)(void); - int (*seal)(struct trusted_key_payload *, char *); - int (*unseal)(struct trusted_key_payload *, char *); - int (*get_random)(unsigned char *, size_t); - void (*exit)(void); -}; - -struct trusted_key_source { - char *name; - struct trusted_key_ops *ops; -}; - -enum { - Opt_err___8 = 0, - Opt_new___2 = 1, - Opt_load___2 = 2, - Opt_update___2 = 3, -}; - -struct crypto_akcipher_sync_data { - struct crypto_akcipher *tfm; - const void *src; - void *dst; - unsigned int slen; - unsigned int dlen; - struct akcipher_request *req; - struct crypto_wait cwait; - struct scatterlist sg; - u8 *buf; -}; - -struct lrw_tfm_ctx { - struct crypto_skcipher *child; - struct gf128mul_64k *table; - be128 mulinc[128]; -}; - -struct lrw_request_ctx { - be128 t; - struct skcipher_request subreq; -}; - -struct cast5_ctx { - u32 Km[16]; - u8 Kr[16]; - int rr; -}; - -struct lz4_ctx { - void *lz4_comp_mem; -}; - -typedef unsigned char u8___2; - -struct rand_data { - void *hash_state; - __u64 prev_time; - __u64 last_delta; - __s64 last_delta2; - unsigned int flags; - unsigned int osr; - unsigned char *mem; - unsigned int memlocation; - unsigned int memblocks; - unsigned int memblocksize; - unsigned int memaccessloops; - unsigned int rct_count; - unsigned int apt_cutoff; - unsigned int apt_cutoff_permanent; - unsigned int apt_observations; - unsigned int apt_count; - unsigned int apt_base; - unsigned int health_failure; - unsigned int apt_base_set: 1; -}; - -enum { - PERCPU_REF_INIT_ATOMIC = 1, - PERCPU_REF_INIT_DEAD = 2, - PERCPU_REF_ALLOW_REINIT = 4, -}; - -struct blk_plug_cb; - -typedef void (*blk_plug_cb_fn)(struct blk_plug_cb *, bool); - -struct blk_plug_cb { - struct list_head list; - blk_plug_cb_fn callback; - void *data; -}; - -enum { - BLK_MQ_REQ_NOWAIT = 1, - BLK_MQ_REQ_RESERVED = 2, - BLK_MQ_REQ_PM = 4, -}; - -enum blktrace_act { - __BLK_TA_QUEUE = 1, - __BLK_TA_BACKMERGE = 2, - __BLK_TA_FRONTMERGE = 3, - __BLK_TA_GETRQ = 4, - __BLK_TA_SLEEPRQ = 5, - __BLK_TA_REQUEUE = 6, - __BLK_TA_ISSUE = 7, - __BLK_TA_COMPLETE = 8, - __BLK_TA_PLUG = 9, - __BLK_TA_UNPLUG_IO = 10, - __BLK_TA_UNPLUG_TIMER = 11, - __BLK_TA_INSERT = 12, - __BLK_TA_SPLIT = 13, - __BLK_TA_BOUNCE = 14, - __BLK_TA_REMAP = 15, - __BLK_TA_ABORT = 16, - __BLK_TA_DRV_DATA = 17, - __BLK_TA_CGROUP = 256, -}; - -struct trace_event_raw_block_buffer { - struct trace_entry ent; - dev_t dev; - sector_t sector; - size_t size; - char __data[0]; -}; - -struct trace_event_raw_block_rq_requeue { - struct trace_entry ent; - dev_t dev; - sector_t sector; - unsigned int nr_sector; - short unsigned int ioprio; - char rwbs[8]; - u32 __data_loc_cmd; - char __data[0]; -}; - -struct trace_event_raw_block_rq_completion { - struct trace_entry ent; - dev_t dev; - sector_t sector; - unsigned int nr_sector; - int error; - short unsigned int ioprio; - char rwbs[8]; - u32 __data_loc_cmd; - char __data[0]; -}; - -struct trace_event_raw_block_rq { - struct trace_entry ent; - dev_t dev; - sector_t sector; - unsigned int nr_sector; - unsigned int bytes; - short unsigned int ioprio; - char rwbs[8]; - char comm[16]; - u32 __data_loc_cmd; - char __data[0]; -}; - -struct trace_event_raw_block_bio_complete { - struct trace_entry ent; - dev_t dev; - sector_t sector; - unsigned int nr_sector; - int error; - char rwbs[8]; - char __data[0]; -}; - -struct trace_event_raw_block_bio { - struct trace_entry ent; - dev_t dev; - sector_t sector; - unsigned int nr_sector; - char rwbs[8]; - char comm[16]; - char __data[0]; -}; - -struct trace_event_raw_block_plug { - struct trace_entry ent; - char comm[16]; - char __data[0]; -}; - -struct trace_event_raw_block_unplug { - struct trace_entry ent; - int nr_rq; - char comm[16]; - char __data[0]; -}; - -struct trace_event_raw_block_split { - struct trace_entry ent; - dev_t dev; - sector_t sector; - sector_t new_sector; - char rwbs[8]; - char comm[16]; - char __data[0]; -}; - -struct trace_event_raw_block_bio_remap { - struct trace_entry ent; - dev_t dev; - sector_t sector; - unsigned int nr_sector; - dev_t old_dev; - sector_t old_sector; - char rwbs[8]; - char __data[0]; -}; - -struct trace_event_raw_block_rq_remap { - struct trace_entry ent; - dev_t dev; - sector_t sector; - unsigned int nr_sector; - dev_t old_dev; - sector_t old_sector; - unsigned int nr_bios; - char rwbs[8]; - char __data[0]; -}; - -struct trace_event_data_offsets_block_buffer {}; - -struct trace_event_data_offsets_block_rq_requeue { - u32 cmd; - const void *cmd_ptr_; -}; - -struct trace_event_data_offsets_block_rq_completion { - u32 cmd; - const void *cmd_ptr_; -}; - -struct trace_event_data_offsets_block_rq { - u32 cmd; - const void *cmd_ptr_; -}; - -struct trace_event_data_offsets_block_bio_complete {}; - -struct trace_event_data_offsets_block_bio {}; - -struct trace_event_data_offsets_block_plug {}; - -struct trace_event_data_offsets_block_unplug {}; - -struct trace_event_data_offsets_block_split {}; - -struct trace_event_data_offsets_block_bio_remap {}; - -struct trace_event_data_offsets_block_rq_remap {}; - -typedef void (*btf_trace_block_touch_buffer)(void *, struct buffer_head *); - -typedef void (*btf_trace_block_dirty_buffer)(void *, struct buffer_head *); - -typedef void (*btf_trace_block_rq_requeue)(void *, struct request *); - -typedef void (*btf_trace_block_rq_complete)(void *, struct request *, blk_status_t, unsigned int); - -typedef void (*btf_trace_block_rq_error)(void *, struct request *, blk_status_t, unsigned int); - -typedef void (*btf_trace_block_rq_insert)(void *, struct request *); - -typedef void (*btf_trace_block_rq_issue)(void *, struct request *); - -typedef void (*btf_trace_block_rq_merge)(void *, struct request *); - -typedef void (*btf_trace_block_io_start)(void *, struct request *); - -typedef void (*btf_trace_block_io_done)(void *, struct request *); - -typedef void (*btf_trace_block_bio_complete)(void *, struct request_queue *, struct bio *); - -typedef void (*btf_trace_block_bio_bounce)(void *, struct bio *); - -typedef void (*btf_trace_block_bio_backmerge)(void *, struct bio *); - -typedef void (*btf_trace_block_bio_frontmerge)(void *, struct bio *); - -typedef void (*btf_trace_block_bio_queue)(void *, struct bio *); - -typedef void (*btf_trace_block_getrq)(void *, struct bio *); - -typedef void (*btf_trace_block_plug)(void *, struct request_queue *); - -typedef void (*btf_trace_block_unplug)(void *, struct request_queue *, unsigned int, bool); - -typedef void (*btf_trace_block_split)(void *, struct bio *, unsigned int); - -typedef void (*btf_trace_block_bio_remap)(void *, struct bio *, dev_t, sector_t); - -typedef void (*btf_trace_block_rq_remap)(void *, struct request *, dev_t, sector_t); - -struct throtl_grp; - -struct throtl_qnode { - struct list_head node; - struct bio_list bios; - struct throtl_grp *tg; -}; - -struct throtl_service_queue { - struct throtl_service_queue *parent_sq; - struct list_head queued[2]; - unsigned int nr_queued[2]; - struct rb_root_cached pending_tree; - unsigned int nr_pending; - long unsigned int first_pending_disptime; - struct timer_list pending_timer; -}; - -struct throtl_grp { - struct blkg_policy_data pd; - struct rb_node rb_node; - struct throtl_data *td; - struct throtl_service_queue service_queue; - struct throtl_qnode qnode_on_self[2]; - struct throtl_qnode qnode_on_parent[2]; - long unsigned int disptime; - unsigned int flags; - bool has_rules_bps[2]; - bool has_rules_iops[2]; - uint64_t bps[2]; - unsigned int iops[2]; - uint64_t bytes_disp[2]; - unsigned int io_disp[2]; - uint64_t last_bytes_disp[2]; - unsigned int last_io_disp[2]; - long long int carryover_bytes[2]; - int carryover_ios[2]; - long unsigned int last_check_time; - long unsigned int slice_start[2]; - long unsigned int slice_end[2]; - struct blkg_rwstat stat_bytes; - struct blkg_rwstat stat_ios; -}; - -typedef bool (*sb_for_each_fn)(struct sbitmap *, unsigned int, void *); - -struct sbq_wait { - struct sbitmap_queue *sbq; - struct wait_queue_entry wait; -}; - -struct trace_event_raw_kyber_latency { - struct trace_entry ent; - dev_t dev; - char domain[16]; - char type[8]; - u8 percentile; - u8 numerator; - u8 denominator; - unsigned int samples; - char __data[0]; -}; - -struct trace_event_raw_kyber_adjust { - struct trace_entry ent; - dev_t dev; - char domain[16]; - unsigned int depth; - char __data[0]; -}; - -struct trace_event_raw_kyber_throttled { - struct trace_entry ent; - dev_t dev; - char domain[16]; - char __data[0]; -}; - -struct trace_event_data_offsets_kyber_latency {}; - -struct trace_event_data_offsets_kyber_adjust {}; - -struct trace_event_data_offsets_kyber_throttled {}; - -typedef void (*btf_trace_kyber_latency)(void *, dev_t, const char *, const char *, unsigned int, unsigned int, unsigned int, unsigned int); - -typedef void (*btf_trace_kyber_adjust)(void *, dev_t, const char *, unsigned int); - -typedef void (*btf_trace_kyber_throttled)(void *, dev_t, const char *); - -enum { - KYBER_READ = 0, - KYBER_WRITE = 1, - KYBER_DISCARD = 2, - KYBER_OTHER = 3, - KYBER_NUM_DOMAINS = 4, -}; - -enum { - KYBER_ASYNC_PERCENT = 75, -}; - -enum { - KYBER_LATENCY_SHIFT = 2, - KYBER_GOOD_BUCKETS = 4, - KYBER_LATENCY_BUCKETS = 8, -}; - -enum { - KYBER_TOTAL_LATENCY = 0, - KYBER_IO_LATENCY = 1, -}; - -struct kyber_cpu_latency { - atomic_t buckets[48]; -}; - -struct kyber_ctx_queue { - spinlock_t lock; - struct list_head rq_list[4]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct kyber_queue_data { - struct request_queue *q; - dev_t dev; - struct sbitmap_queue domain_tokens[4]; - unsigned int async_depth; - struct kyber_cpu_latency *cpu_latency; - struct timer_list timer; - unsigned int latency_buckets[48]; - long unsigned int latency_timeout[3]; - int domain_p99[3]; - u64 latency_targets[3]; -}; - -struct kyber_hctx_data { - spinlock_t lock; - struct list_head rqs[4]; - unsigned int cur_domain; - unsigned int batching; - struct kyber_ctx_queue *kcqs; - struct sbitmap kcq_map[4]; - struct sbq_wait domain_wait[4]; - struct sbq_wait_state *domain_ws[4]; - atomic_t wait_index[4]; -}; - -struct flush_kcq_data { - struct kyber_hctx_data *khd; - unsigned int sched_domain; - struct list_head *list; -}; - -struct io_splice { - struct file *file_out; - loff_t off_out; - loff_t off_in; - u64 len; - int splice_fd_in; - unsigned int flags; -}; - -struct io_uring_sync_cancel_reg { - __u64 addr; - __s32 fd; - __u32 flags; - struct __kernel_timespec timeout; - __u8 opcode; - __u8 pad[7]; - __u64 pad2[3]; -}; - -struct io_cancel { - struct file *file; - u64 addr; - u32 flags; - s32 fd; - u8 opcode; -}; - -struct once_work { - struct work_struct work; - struct static_key_true *key; - struct module *module; -}; - -typedef enum { - ZSTD_no_overlap = 0, - ZSTD_overlap_src_before_dst = 1, -} ZSTD_overlap_e; - -typedef enum { - ZSTD_dtlm_fast = 0, - ZSTD_dtlm_full = 1, -} ZSTD_dictTableLoadMethod_e; - -enum dim_tune_state { - DIM_PARKING_ON_TOP = 0, - DIM_PARKING_TIRED = 1, - DIM_GOING_RIGHT = 2, - DIM_GOING_LEFT = 3, -}; - -enum dim_stats_state { - DIM_STATS_WORSE = 0, - DIM_STATS_SAME = 1, - DIM_STATS_BETTER = 2, -}; - -enum dim_step_result { - DIM_STEPPED = 0, - DIM_TOO_TIRED = 1, - DIM_ON_EDGE = 2, -}; - -union handle_parts { - depot_stack_handle_t handle; - struct { - u32 pool_index_plus_1: 17; - u32 offset: 10; - u32 extra: 5; - }; -}; - -struct stack_record { - struct list_head hash_list; - u32 hash; - u32 size; - union handle_parts handle; - refcount_t count; - union { - long unsigned int entries[64]; - struct { - struct list_head free_list; - long unsigned int rcu_state; - }; - }; -}; - -typedef u32 depot_flags_t; - -enum depot_counter_id { - DEPOT_COUNTER_REFD_ALLOCS = 0, - DEPOT_COUNTER_REFD_FREES = 1, - DEPOT_COUNTER_REFD_INUSE = 2, - DEPOT_COUNTER_FREELIST_SIZE = 3, - DEPOT_COUNTER_PERSIST_COUNT = 4, - DEPOT_COUNTER_PERSIST_BYTES = 5, - DEPOT_COUNTER_COUNT = 6, -}; - -struct its_vpe; - -struct its_vm { - struct fwnode_handle *fwnode; - struct irq_domain *domain; - struct page *vprop_page; - struct its_vpe **vpes; - int nr_vpes; - irq_hw_number_t db_lpi_base; - long unsigned int *db_bitmap; - int nr_db_lpis; - raw_spinlock_t vmapp_lock; - u32 vlpi_count[16]; -}; - -struct its_vpe { - struct page *vpt_page; - struct its_vm *its_vm; - atomic_t vlpi_count; - int irq; - irq_hw_number_t vpe_db_lpi; - bool resident; - bool ready; - union { - struct { - int vpe_proxy_event; - bool idai; - }; - struct { - struct fwnode_handle *fwnode; - struct irq_domain *sgi_domain; - struct { - u8 priority; - bool enabled; - bool group; - } sgi_config[16]; - }; - }; - atomic_t vmapp_count; - raw_spinlock_t vpe_lock; - u16 col_idx; - u16 vpe_id; - bool pending_last; -}; - -struct its_vlpi_map { - struct its_vm *vm; - struct its_vpe *vpe; - u32 vintid; - u8 properties; - bool db_enabled; -}; - -enum its_vcpu_info_cmd_type { - MAP_VLPI = 0, - GET_VLPI = 1, - PROP_UPDATE_VLPI = 2, - PROP_UPDATE_AND_INV_VLPI = 3, - SCHEDULE_VPE = 4, - DESCHEDULE_VPE = 5, - COMMIT_VPE = 6, - INVALL_VPE = 7, - PROP_UPDATE_VSGI = 8, -}; - -struct its_cmd_info { - enum its_vcpu_info_cmd_type cmd_type; - union { - struct its_vlpi_map *map; - u8 config; - bool req_db; - struct { - bool g0en; - bool g1en; - }; - struct { - u8 priority; - bool group; - }; - }; -}; - -struct hotplug_slot_ops; - -struct hotplug_slot { - const struct hotplug_slot_ops *ops; - struct list_head slot_list; - struct pci_slot *pci_slot; - struct module *owner; - const char *mod_name; -}; - -enum pcie_reset_state { - pcie_deassert_reset = 1, - pcie_warm_reset = 2, - pcie_hot_reset = 3, -}; - -enum { - PCI_REASSIGN_ALL_RSRC = 1, - PCI_REASSIGN_ALL_BUS = 2, - PCI_PROBE_ONLY = 4, - PCI_CAN_SKIP_ISA_ALIGN = 8, - PCI_ENABLE_PROC_DOMAINS = 16, - PCI_COMPAT_DOMAIN_0 = 32, - PCI_SCAN_ALL_PCIE_DEVS = 64, -}; - -enum pcie_bus_config_types { - PCIE_BUS_TUNE_OFF = 0, - PCIE_BUS_DEFAULT = 1, - PCIE_BUS_SAFE = 2, - PCIE_BUS_PERFORMANCE = 3, - PCIE_BUS_PEER2PEER = 4, -}; - -typedef int (*arch_set_vga_state_t)(struct pci_dev *, bool, unsigned int, u32); - -enum pci_fixup_pass { - pci_fixup_early = 0, - pci_fixup_header = 1, - pci_fixup_final = 2, - pci_fixup_enable = 3, - pci_fixup_resume = 4, - pci_fixup_suspend = 5, - pci_fixup_resume_early = 6, - pci_fixup_suspend_late = 7, -}; - -struct hotplug_slot_ops { - int (*enable_slot)(struct hotplug_slot *); - int (*disable_slot)(struct hotplug_slot *); - int (*set_attention_status)(struct hotplug_slot *, u8); - int (*hardware_test)(struct hotplug_slot *, u32); - int (*get_power_status)(struct hotplug_slot *, u8 *); - int (*get_attention_status)(struct hotplug_slot *, u8 *); - int (*get_latch_status)(struct hotplug_slot *, u8 *); - int (*get_adapter_status)(struct hotplug_slot *, u8 *); - int (*reset_slot)(struct hotplug_slot *, bool); -}; - -struct pcie_tlp_log { - u32 dw[4]; -}; - -struct pci_reset_fn_method { - int (*reset_fn)(struct pci_dev *, bool); - char *name; -}; - -struct pci_pme_device { - struct list_head list; - struct pci_dev *dev; -}; - -struct pci_acs { - u16 cap; - u16 ctrl; - u16 fw_ctrl; -}; - -struct pci_saved_state { - u32 config_space[16]; - struct pci_cap_saved_data cap[0]; -}; - -struct vga_device { - struct list_head list; - struct pci_dev *pdev; - unsigned int decodes; - unsigned int owns; - unsigned int locks; - unsigned int io_lock_cnt; - unsigned int mem_lock_cnt; - unsigned int io_norm_cnt; - unsigned int mem_norm_cnt; - bool bridge_has_one_vga; - bool is_firmware_default; - unsigned int (*set_decode)(struct pci_dev *, bool); -}; - -struct vga_arb_user_card { - struct pci_dev *pdev; - unsigned int mem_cnt; - unsigned int io_cnt; -}; - -struct vga_arb_private { - struct list_head list; - struct pci_dev *target; - struct vga_arb_user_card cards[16]; - spinlock_t lock; -}; - -typedef void (*of_init_fn_1)(struct device_node *); - -struct clk_fixed_factor { - struct clk_hw hw; - unsigned int mult; - unsigned int div; - long unsigned int acc; - unsigned int flags; -}; - -enum { - VP_MSIX_CONFIG_VECTOR = 0, - VP_MSIX_VQ_VECTOR = 1, -}; - -enum vp_vq_vector_policy { - VP_VQ_VECTOR_POLICY_EACH = 0, - VP_VQ_VECTOR_POLICY_SHARED_SLOW = 1, - VP_VQ_VECTOR_POLICY_SHARED = 2, -}; - -struct vt_notifier_param { - struct vc_data *vc; - unsigned int c; -}; - -struct vcs_poll_data { - struct notifier_block notifier; - unsigned int cons_num; - int event; - wait_queue_head_t waitq; - struct fasync_struct *fasync; -}; - -struct serial8250_config { - const char *name; - short unsigned int fifo_size; - short unsigned int tx_loadsz; - unsigned char fcr; - unsigned char rxtrig_bytes[4]; - unsigned int flags; -}; - -struct virtrng_info { - struct hwrng hwrng; - struct virtqueue *vq; - char name[25]; - int index; - bool hwrng_register_done; - bool hwrng_removed; - struct completion have_data; - unsigned int data_avail; - unsigned int data_idx; - u8 data[64]; -}; - -struct drm_mode_get_connector { - __u64 encoders_ptr; - __u64 modes_ptr; - __u64 props_ptr; - __u64 prop_values_ptr; - __u32 count_modes; - __u32 count_props; - __u32 count_encoders; - __u32 encoder_id; - __u32 connector_id; - __u32 connector_type; - __u32 connector_type_id; - __u32 connection; - __u32 mm_width; - __u32 mm_height; - __u32 subpixel; - __u32 pad; -}; - -struct drm_mode_connector_set_property { - __u64 value; - __u32 prop_id; - __u32 connector_id; -}; - -struct drm_mode_obj_set_property { - __u64 value; - __u32 prop_id; - __u32 obj_id; - __u32 obj_type; -}; - -struct drm_conn_prop_enum_list { - int type; - const char *name; - struct ida ida; -}; - -enum drm_vblank_seq_type { - _DRM_VBLANK_ABSOLUTE = 0, - _DRM_VBLANK_RELATIVE = 1, - _DRM_VBLANK_HIGH_CRTC_MASK = 62, - _DRM_VBLANK_EVENT = 67108864, - _DRM_VBLANK_FLIP = 134217728, - _DRM_VBLANK_NEXTONMISS = 268435456, - _DRM_VBLANK_SECONDARY = 536870912, - _DRM_VBLANK_SIGNAL = 1073741824, -}; - -struct drm_wait_vblank_request { - enum drm_vblank_seq_type type; - unsigned int sequence; - long unsigned int signal; -}; - -struct drm_wait_vblank_reply { - enum drm_vblank_seq_type type; - unsigned int sequence; - long int tval_sec; - long int tval_usec; -}; - -union drm_wait_vblank { - struct drm_wait_vblank_request request; - struct drm_wait_vblank_reply reply; -}; - -struct drm_crtc_get_sequence { - __u32 crtc_id; - __u32 active; - __u64 sequence; - __s64 sequence_ns; -}; - -struct drm_crtc_queue_sequence { - __u32 crtc_id; - __u32 flags; - __u64 sequence; - __u64 user_data; -}; - -typedef bool (*drm_vblank_get_scanout_position_func)(struct drm_crtc *, bool, int *, int *, ktime_t *, ktime_t *, const struct drm_display_mode *); - -struct drm_shadow_plane_state { - struct drm_plane_state base; - struct drm_format_conv_state fmtcnv_state; - struct iosys_map map[4]; - struct iosys_map data[4]; -}; - -struct drm_simple_display_pipe; - -struct drm_simple_display_pipe_funcs { - enum drm_mode_status (*mode_valid)(struct drm_simple_display_pipe *, const struct drm_display_mode *); - void (*enable)(struct drm_simple_display_pipe *, struct drm_crtc_state *, struct drm_plane_state *); - void (*disable)(struct drm_simple_display_pipe *); - int (*check)(struct drm_simple_display_pipe *, struct drm_plane_state *, struct drm_crtc_state *); - void (*update)(struct drm_simple_display_pipe *, struct drm_plane_state *); - int (*prepare_fb)(struct drm_simple_display_pipe *, struct drm_plane_state *); - void (*cleanup_fb)(struct drm_simple_display_pipe *, struct drm_plane_state *); - int (*begin_fb_access)(struct drm_simple_display_pipe *, struct drm_plane_state *); - void (*end_fb_access)(struct drm_simple_display_pipe *, struct drm_plane_state *); - int (*enable_vblank)(struct drm_simple_display_pipe *); - void (*disable_vblank)(struct drm_simple_display_pipe *); - void (*reset_crtc)(struct drm_simple_display_pipe *); - struct drm_crtc_state * (*duplicate_crtc_state)(struct drm_simple_display_pipe *); - void (*destroy_crtc_state)(struct drm_simple_display_pipe *, struct drm_crtc_state *); - void (*reset_plane)(struct drm_simple_display_pipe *); - struct drm_plane_state * (*duplicate_plane_state)(struct drm_simple_display_pipe *); - void (*destroy_plane_state)(struct drm_simple_display_pipe *, struct drm_plane_state *); -}; - -struct drm_simple_display_pipe { - struct drm_crtc crtc; - struct drm_plane plane; - struct drm_encoder encoder; - struct drm_connector *connector; - const struct drm_simple_display_pipe_funcs *funcs; -}; - -struct trace_event_raw_virtio_gpu_cmd { - struct trace_entry ent; - int dev; - unsigned int vq; - u32 __data_loc_name; - u32 type; - u32 flags; - u64 fence_id; - u32 ctx_id; - u32 num_free; - u32 seqno; - char __data[0]; -}; - -struct trace_event_data_offsets_virtio_gpu_cmd { - u32 name; - const void *name_ptr_; -}; - -typedef void (*btf_trace_virtio_gpu_cmd_queue)(void *, struct virtqueue *, struct virtio_gpu_ctrl_hdr *, u32); - -typedef void (*btf_trace_virtio_gpu_cmd_response)(void *, struct virtqueue *, struct virtio_gpu_ctrl_hdr *, u32); - -struct software_node_ref_args { - const struct software_node *node; - unsigned int nargs; - u64 args[16]; -}; - -struct swnode { - struct kobject kobj; - struct fwnode_handle fwnode; - const struct software_node *node; - int id; - struct ida child_ids; - struct list_head entry; - struct list_head children; - struct swnode *parent; - unsigned int allocated: 1; - unsigned int managed: 1; -}; - -struct scsi_mode_data { - __u32 length; - __u16 block_descriptor_length; - __u8 medium_type; - __u8 device_specific; - __u8 header_length; - __u8 longlba: 1; -}; - -enum scsi_host_prot_capabilities { - SHOST_DIF_TYPE1_PROTECTION = 1, - SHOST_DIF_TYPE2_PROTECTION = 2, - SHOST_DIF_TYPE3_PROTECTION = 4, - SHOST_DIX_TYPE0_PROTECTION = 8, - SHOST_DIX_TYPE1_PROTECTION = 16, - SHOST_DIX_TYPE2_PROTECTION = 32, - SHOST_DIX_TYPE3_PROTECTION = 64, -}; - -enum { - ACTION_FAIL = 0, - ACTION_REPREP = 1, - ACTION_DELAYED_REPREP = 2, - ACTION_RETRY = 3, - ACTION_DELAYED_RETRY = 4, -}; - -enum blake2s_iv { - BLAKE2S_IV0 = 1779033703, - BLAKE2S_IV1 = 3144134277, - BLAKE2S_IV2 = 1013904242, - BLAKE2S_IV3 = 2773480762, - BLAKE2S_IV4 = 1359893119, - BLAKE2S_IV5 = 2600822924, - BLAKE2S_IV6 = 528734635, - BLAKE2S_IV7 = 1541459225, -}; - -struct mdiobus_devres { - struct mii_bus *mii; -}; - -enum { - IFLA_TUN_UNSPEC = 0, - IFLA_TUN_OWNER = 1, - IFLA_TUN_GROUP = 2, - IFLA_TUN_TYPE = 3, - IFLA_TUN_PI = 4, - IFLA_TUN_VNET_HDR = 5, - IFLA_TUN_PERSIST = 6, - IFLA_TUN_MULTI_QUEUE = 7, - IFLA_TUN_NUM_QUEUES = 8, - IFLA_TUN_NUM_DISABLED_QUEUES = 9, - __IFLA_TUN_MAX = 10, -}; - -struct tun_pi { - __u16 flags; - __be16 proto; -}; - -struct tun_filter { - __u16 flags; - __u16 count; - __u8 addr[0]; -}; - -struct tap_filter { - unsigned int count; - u32 mask[2]; - unsigned char addr[48]; -}; - -struct tun_struct; - -struct tun_file { - struct sock sk; - struct socket socket; - struct tun_struct *tun; - struct fasync_struct *fasync; - unsigned int flags; - union { - u16 queue_index; - unsigned int ifindex; - }; - struct napi_struct napi; - bool napi_enabled; - bool napi_frags_enabled; - struct mutex napi_mutex; - struct list_head next; - struct tun_struct *detached; - long: 64; - long: 64; - long: 64; - struct ptr_ring tx_ring; - struct xdp_rxq_info xdp_rxq; -}; - -struct tun_prog; - -struct tun_struct { - struct tun_file *tfiles[256]; - unsigned int numqueues; - unsigned int flags; - kuid_t owner; - kgid_t group; - struct net_device *dev; - netdev_features_t set_features; - int align; - int vnet_hdr_sz; - int sndbuf; - struct tap_filter txflt; - struct sock_fprog fprog; - bool filter_attached; - u32 msg_enable; - spinlock_t lock; - struct hlist_head flows[1024]; - struct timer_list flow_gc_timer; - long unsigned int ageing_time; - unsigned int numdisabled; - struct list_head disabled; - void *security; - u32 flow_count; - u32 rx_batched; - atomic_long_t rx_frame_errors; - struct bpf_prog *xdp_prog; - struct tun_prog *steering_prog; - struct tun_prog *filter_prog; - struct ethtool_link_ksettings link_ksettings; - struct file *file; - struct ifreq *ifr; -}; - -struct tun_page { - struct page *page; - int count; -}; - -struct tun_flow_entry { - struct hlist_node hash_link; - struct callback_head rcu; - struct tun_struct *tun; - u32 rxhash; - u32 rps_rxhash; - int queue_index; - long: 64; - long unsigned int updated; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct tun_prog { - struct callback_head rcu; - struct bpf_prog *prog; -}; - -struct veth { - __be16 h_vlan_proto; - __be16 h_vlan_TCI; -}; - -enum usb_port_connect_type { - USB_PORT_CONNECT_TYPE_UNKNOWN = 0, - USB_PORT_CONNECT_TYPE_HOT_PLUG = 1, - USB_PORT_CONNECT_TYPE_HARD_WIRED = 2, - USB_PORT_NOT_USED = 3, -}; - -struct usb_port_status { - __le16 wPortStatus; - __le16 wPortChange; - __le32 dwExtPortStatus; -}; - -struct usb_hub_status { - __le16 wHubStatus; - __le16 wHubChange; -}; - -struct typec_connector { - void (*attach)(struct typec_connector *, struct device *); - void (*deattach)(struct typec_connector *, struct device *); -}; - -typedef u32 usb_port_location_t; - -struct usb_port; - -struct usb_hub { - struct device *intfdev; - struct usb_device *hdev; - struct kref kref; - struct urb *urb; - u8 (*buffer)[8]; - union { - struct usb_hub_status hub; - struct usb_port_status port; - } *status; - struct mutex status_mutex; - int error; - int nerrors; - long unsigned int event_bits[1]; - long unsigned int change_bits[1]; - long unsigned int removed_bits[1]; - long unsigned int wakeup_bits[1]; - long unsigned int power_bits[1]; - long unsigned int child_usage_bits[1]; - long unsigned int warm_reset_bits[1]; - struct usb_hub_descriptor *descriptor; - struct usb_tt tt; - unsigned int mA_per_port; - unsigned int limited_power: 1; - unsigned int quiescing: 1; - unsigned int disconnected: 1; - unsigned int in_reset: 1; - unsigned int quirk_disable_autosuspend: 1; - unsigned int quirk_check_port_auto_suspend: 1; - unsigned int has_indicators: 1; - u8 indicator[31]; - struct delayed_work leds; - struct delayed_work init_work; - struct delayed_work post_resume_work; - struct work_struct events; - spinlock_t irq_urb_lock; - struct timer_list irq_urb_retry; - struct usb_port **ports; - struct list_head onboard_devs; -}; - -struct usb_port { - struct usb_device *child; - struct device dev; - struct usb_dev_state *port_owner; - struct usb_port *peer; - struct typec_connector *connector; - struct dev_pm_qos_request *req; - enum usb_port_connect_type connect_type; - enum usb_device_state state; - struct kernfs_node *state_kn; - usb_port_location_t location; - struct mutex status_lock; - u32 over_current_count; - u8 portnum; - u32 quirks; - unsigned int early_stop: 1; - unsigned int ignore_event: 1; - unsigned int is_superspeed: 1; - unsigned int usb3_lpm_u1_permit: 1; - unsigned int usb3_lpm_u2_permit: 1; -}; - -struct snap { - int slen; - char str[80]; -}; - -struct xhci_driver_overrides { - size_t extra_priv_size; - int (*reset)(struct usb_hcd *); - int (*start)(struct usb_hcd *); - int (*add_endpoint)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint *); - int (*drop_endpoint)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint *); - int (*check_bandwidth)(struct usb_hcd *, struct usb_device *); - void (*reset_bandwidth)(struct usb_hcd *, struct usb_device *); - int (*update_hub_device)(struct usb_hcd *, struct usb_device *, struct usb_tt *, gfp_t); - int (*hub_control)(struct usb_hcd *, u16, u16, u16, char *, u16); -}; - -typedef void (*xhci_get_quirks_t)(struct device *, struct xhci_hcd *); - -struct xhci_plat_priv { - const char *firmware_name; - long long unsigned int quirks; - void (*plat_start)(struct usb_hcd *); - int (*init_quirk)(struct usb_hcd *); - int (*suspend_quirk)(struct usb_hcd *); - int (*resume_quirk)(struct usb_hcd *); -}; - -struct cyberjack_private { - spinlock_t lock; - short int rdtodo; - unsigned char wrbuf[320]; - short int wrfilled; - short int wrsent; -}; - -struct iuu_private { - spinlock_t lock; - u8 line_status; - int tiostatus; - u8 reset; - int poll; - u8 *writebuf; - int writelen; - u8 *buf; - u8 len; - int vcc; - u32 boost; - u32 clk; -}; - -struct input_seq_state { - short unsigned int pos; - bool mutex_acquired; - int input_devices_state; -}; - -struct input_devres { - struct input_dev *input; -}; - -struct i2c_device_id { - char name[20]; - kernel_ulong_t driver_data; -}; - -struct i2c_device_identity { - u16 manufacturer_id; - u16 part_id; - u8 die_revision; -}; - -enum i2c_alert_protocol { - I2C_PROTOCOL_SMBUS_ALERT = 0, - I2C_PROTOCOL_SMBUS_HOST_NOTIFY = 1, -}; - -struct i2c_driver { - unsigned int class; - int (*probe)(struct i2c_client *); - void (*remove)(struct i2c_client *); - void (*shutdown)(struct i2c_client *); - void (*alert)(struct i2c_client *, enum i2c_alert_protocol, unsigned int); - int (*command)(struct i2c_client *, unsigned int, void *); - struct device_driver driver; - const struct i2c_device_id *id_table; - int (*detect)(struct i2c_client *, struct i2c_board_info *); - const short unsigned int *address_list; - struct list_head clients; - u32 flags; -}; - -struct i2c_timings { - u32 bus_freq_hz; - u32 scl_rise_ns; - u32 scl_fall_ns; - u32 scl_int_delay_ns; - u32 sda_fall_ns; - u32 sda_hold_ns; - u32 digital_filter_width_ns; - u32 analog_filter_cutoff_freq_hz; -}; - -struct trace_event_raw_i2c_write { - struct trace_entry ent; - int adapter_nr; - __u16 msg_nr; - __u16 addr; - __u16 flags; - __u16 len; - u32 __data_loc_buf; - char __data[0]; -}; - -struct trace_event_raw_i2c_read { - struct trace_entry ent; - int adapter_nr; - __u16 msg_nr; - __u16 addr; - __u16 flags; - __u16 len; - char __data[0]; -}; - -struct trace_event_raw_i2c_reply { - struct trace_entry ent; - int adapter_nr; - __u16 msg_nr; - __u16 addr; - __u16 flags; - __u16 len; - u32 __data_loc_buf; - char __data[0]; -}; - -struct trace_event_raw_i2c_result { - struct trace_entry ent; - int adapter_nr; - __u16 nr_msgs; - __s16 ret; - char __data[0]; -}; - -struct trace_event_data_offsets_i2c_write { - u32 buf; - const void *buf_ptr_; -}; - -struct trace_event_data_offsets_i2c_read {}; - -struct trace_event_data_offsets_i2c_reply { - u32 buf; - const void *buf_ptr_; -}; - -struct trace_event_data_offsets_i2c_result {}; - -typedef void (*btf_trace_i2c_write)(void *, const struct i2c_adapter *, const struct i2c_msg *, int); - -typedef void (*btf_trace_i2c_read)(void *, const struct i2c_adapter *, const struct i2c_msg *, int); - -typedef void (*btf_trace_i2c_reply)(void *, const struct i2c_adapter *, const struct i2c_msg *, int); - -typedef void (*btf_trace_i2c_result)(void *, const struct i2c_adapter *, int, int); - -struct i2c_cmd_arg { - unsigned int cmd; - void *arg; -}; - -struct led_trigger {}; - -struct mmc_clk_phase { - bool valid; - u16 in_deg; - u16 out_deg; -}; - -struct mmc_clk_phase_map { - struct mmc_clk_phase phase[11]; -}; - -struct hid_item { - unsigned int format; - __u8 size; - __u8 type; - __u8 tag; - union { - __u8 u8; - __s8 s8; - __u16 u16; - __s16 s16; - __u32 u32; - __s32 s32; - const __u8 *longdata; - } data; -}; - -struct hid_global { - unsigned int usage_page; - __s32 logical_minimum; - __s32 logical_maximum; - __s32 physical_minimum; - __s32 physical_maximum; - __s32 unit_exponent; - unsigned int unit; - unsigned int report_id; - unsigned int report_size; - unsigned int report_count; -}; - -struct hid_local { - unsigned int usage[12288]; - u8 usage_size[12288]; - unsigned int collection_index[12288]; - unsigned int usage_index; - unsigned int usage_minimum; - unsigned int delimiter_depth; - unsigned int delimiter_branch; -}; - -struct hid_parser { - struct hid_global global; - struct hid_global global_stack[4]; - unsigned int global_stack_ptr; - struct hid_local local; - unsigned int *collection_stack; - unsigned int collection_stack_ptr; - unsigned int collection_stack_size; - struct hid_device *device; - unsigned int scan_flags; -}; - -struct hidraw { - unsigned int minor; - int exist; - int open; - wait_queue_head_t wait; - struct hid_device *hid; - struct device *dev; - spinlock_t list_lock; - struct list_head list; -}; - -struct hid_dynid { - struct list_head list; - struct hid_device_id id; -}; - -struct alias_prop { - struct list_head link; - const char *alias; - struct device_node *np; - int id; - char stem[0]; -}; - -struct sk_buff_fclones { - struct sk_buff skb1; - struct sk_buff skb2; - refcount_t fclone_ref; -}; - -struct skb_seq_state { - __u32 lower_offset; - __u32 upper_offset; - __u32 frag_idx; - __u32 stepped_offset; - struct sk_buff *root_skb; - struct sk_buff *cur_skb; - __u8 *frag_data; - __u32 frag_off; -}; - -struct partial_page { - unsigned int offset; - unsigned int len; - long unsigned int private; -}; - -struct splice_pipe_desc { - struct page **pages; - struct partial_page *partial; - int nr_pages; - unsigned int nr_pages_max; - const struct pipe_buf_operations *ops; - void (*spd_release)(struct splice_pipe_desc *, unsigned int); -}; - -enum skb_drop_reason_subsys { - SKB_DROP_REASON_SUBSYS_CORE = 0, - SKB_DROP_REASON_SUBSYS_MAC80211_UNUSABLE = 1, - SKB_DROP_REASON_SUBSYS_MAC80211_MONITOR = 2, - SKB_DROP_REASON_SUBSYS_OPENVSWITCH = 3, - SKB_DROP_REASON_SUBSYS_NUM = 4, -}; - -struct drop_reason_list { - const char * const *reasons; - size_t n_reasons; -}; - -struct page_frag_1k { - void *va; - u16 offset; - bool pfmemalloc; -}; - -struct napi_alloc_cache { - local_lock_t bh_lock; - struct page_frag_cache page; - struct page_frag_1k page_small; - unsigned int skb_count; - void *skb_cache[64]; -}; - -struct skb_free_array { - unsigned int skb_count; - void *skb_array[16]; -}; - -typedef int (*sendmsg_func)(struct sock *, struct msghdr *); - -enum bpf_ret_code { - BPF_OK = 0, - BPF_DROP = 2, - BPF_REDIRECT = 7, - BPF_LWT_REROUTE = 128, - BPF_FLOW_DISSECTOR_CONTINUE = 129, -}; - -enum { - LWT_BPF_PROG_UNSPEC = 0, - LWT_BPF_PROG_FD = 1, - LWT_BPF_PROG_NAME = 2, - __LWT_BPF_PROG_MAX = 3, -}; - -enum { - LWT_BPF_UNSPEC = 0, - LWT_BPF_IN = 1, - LWT_BPF_OUT = 2, - LWT_BPF_XMIT = 3, - LWT_BPF_XMIT_HEADROOM = 4, - __LWT_BPF_MAX = 5, -}; - -struct bpf_lwt_prog { - struct bpf_prog *prog; - char *name; -}; - -struct bpf_lwt { - struct bpf_lwt_prog in; - struct bpf_lwt_prog out; - struct bpf_lwt_prog xmit; - int family; -}; - -struct tc_fifo_qopt { - __u32 limit; -}; - -enum tc_fifo_command { - TC_FIFO_REPLACE = 0, - TC_FIFO_DESTROY = 1, - TC_FIFO_STATS = 2, -}; - -struct tc_fifo_qopt_offload { - enum tc_fifo_command command; - u32 handle; - u32 parent; - union { - struct tc_qopt_offload_stats stats; - }; -}; - -enum { - TCA_U32_UNSPEC = 0, - TCA_U32_CLASSID = 1, - TCA_U32_HASH = 2, - TCA_U32_LINK = 3, - TCA_U32_DIVISOR = 4, - TCA_U32_SEL = 5, - TCA_U32_POLICE = 6, - TCA_U32_ACT = 7, - TCA_U32_INDEV = 8, - TCA_U32_PCNT = 9, - TCA_U32_MARK = 10, - TCA_U32_FLAGS = 11, - TCA_U32_PAD = 12, - __TCA_U32_MAX = 13, -}; - -struct tc_u32_key { - __be32 mask; - __be32 val; - int off; - int offmask; -}; - -struct tc_u32_sel_hdr { - unsigned char flags; - unsigned char offshift; - unsigned char nkeys; - __be16 offmask; - __u16 off; - short int offoff; - short int hoff; - __be32 hmask; -}; - -struct tc_u32_sel { - union { - struct { - unsigned char flags; - unsigned char offshift; - unsigned char nkeys; - __be16 offmask; - __u16 off; - short int offoff; - short int hoff; - __be32 hmask; - }; - struct tc_u32_sel_hdr hdr; - }; - struct tc_u32_key keys[0]; -}; - -struct tc_u32_mark { - __u32 val; - __u32 mask; - __u32 success; -}; - -struct tc_u32_pcnt { - __u64 rcnt; - __u64 rhit; - __u64 kcnts[0]; -}; - -struct tc_cls_u32_knode { - struct tcf_exts *exts; - struct tcf_result *res; - struct tc_u32_sel *sel; - u32 handle; - u32 val; - u32 mask; - u32 link_handle; - u8 fshift; -}; - -struct tc_cls_u32_hnode { - u32 handle; - u32 prio; - unsigned int divisor; -}; - -enum tc_clsu32_command { - TC_CLSU32_NEW_KNODE = 0, - TC_CLSU32_REPLACE_KNODE = 1, - TC_CLSU32_DELETE_KNODE = 2, - TC_CLSU32_NEW_HNODE = 3, - TC_CLSU32_REPLACE_HNODE = 4, - TC_CLSU32_DELETE_HNODE = 5, -}; - -struct tc_cls_u32_offload { - struct flow_cls_common_offload common; - enum tc_clsu32_command command; - union { - struct tc_cls_u32_knode knode; - struct tc_cls_u32_hnode hnode; - }; -}; - -struct tc_u_hnode; - -struct tc_u_knode { - struct tc_u_knode *next; - u32 handle; - struct tc_u_hnode *ht_up; - struct tcf_exts exts; - int ifindex; - u8 fshift; - struct tcf_result res; - struct tc_u_hnode *ht_down; - struct tc_u32_pcnt *pf; - u32 flags; - unsigned int in_hw_count; - u32 val; - u32 mask; - u32 *pcpu_success; - struct rcu_work rwork; - struct tc_u32_sel sel; -}; - -struct tc_u_hnode { - struct tc_u_hnode *next; - u32 handle; - u32 prio; - refcount_t refcnt; - unsigned int divisor; - struct idr handle_idr; - bool is_root; - struct callback_head rcu; - u32 flags; - struct tc_u_knode *ht[0]; -}; - -struct tc_u_common { - struct tc_u_hnode *hlist; - void *ptr; - refcount_t refcnt; - struct idr handle_idr; - struct hlist_node hnode; - long int knodes; -}; - -enum netlink_attribute_type { - NL_ATTR_TYPE_INVALID = 0, - NL_ATTR_TYPE_FLAG = 1, - NL_ATTR_TYPE_U8 = 2, - NL_ATTR_TYPE_U16 = 3, - NL_ATTR_TYPE_U32 = 4, - NL_ATTR_TYPE_U64 = 5, - NL_ATTR_TYPE_S8 = 6, - NL_ATTR_TYPE_S16 = 7, - NL_ATTR_TYPE_S32 = 8, - NL_ATTR_TYPE_S64 = 9, - NL_ATTR_TYPE_BINARY = 10, - NL_ATTR_TYPE_STRING = 11, - NL_ATTR_TYPE_NUL_STRING = 12, - NL_ATTR_TYPE_NESTED = 13, - NL_ATTR_TYPE_NESTED_ARRAY = 14, - NL_ATTR_TYPE_BITFIELD32 = 15, - NL_ATTR_TYPE_SINT = 16, - NL_ATTR_TYPE_UINT = 17, -}; - -enum netlink_policy_type_attr { - NL_POLICY_TYPE_ATTR_UNSPEC = 0, - NL_POLICY_TYPE_ATTR_TYPE = 1, - NL_POLICY_TYPE_ATTR_MIN_VALUE_S = 2, - NL_POLICY_TYPE_ATTR_MAX_VALUE_S = 3, - NL_POLICY_TYPE_ATTR_MIN_VALUE_U = 4, - NL_POLICY_TYPE_ATTR_MAX_VALUE_U = 5, - NL_POLICY_TYPE_ATTR_MIN_LENGTH = 6, - NL_POLICY_TYPE_ATTR_MAX_LENGTH = 7, - NL_POLICY_TYPE_ATTR_POLICY_IDX = 8, - NL_POLICY_TYPE_ATTR_POLICY_MAXTYPE = 9, - NL_POLICY_TYPE_ATTR_BITFIELD32_MASK = 10, - NL_POLICY_TYPE_ATTR_PAD = 11, - NL_POLICY_TYPE_ATTR_MASK = 12, - __NL_POLICY_TYPE_ATTR_MAX = 13, - NL_POLICY_TYPE_ATTR_MAX = 12, -}; - -struct netlink_policy_dump_state { - unsigned int policy_idx; - unsigned int attr_idx; - unsigned int n_alloc; - struct { - const struct nla_policy *policy; - unsigned int maxtype; - } policies[0]; -}; - -struct debug_reply_data { - struct ethnl_reply_data base; - u32 msg_mask; -}; - -enum ethtool_fec_config_bits { - ETHTOOL_FEC_NONE_BIT = 0, - ETHTOOL_FEC_AUTO_BIT = 1, - ETHTOOL_FEC_OFF_BIT = 2, - ETHTOOL_FEC_RS_BIT = 3, - ETHTOOL_FEC_BASER_BIT = 4, - ETHTOOL_FEC_LLRS_BIT = 5, -}; - -enum { - ETHTOOL_A_FEC_STAT_UNSPEC = 0, - ETHTOOL_A_FEC_STAT_PAD = 1, - ETHTOOL_A_FEC_STAT_CORRECTED = 2, - ETHTOOL_A_FEC_STAT_UNCORR = 3, - ETHTOOL_A_FEC_STAT_CORR_BITS = 4, - __ETHTOOL_A_FEC_STAT_CNT = 5, - ETHTOOL_A_FEC_STAT_MAX = 4, -}; - -struct fec_stat_grp { - u64 stats[9]; - u8 cnt; -}; - -struct fec_reply_data { - struct ethnl_reply_data base; - long unsigned int fec_link_modes[2]; - u32 active_fec; - u8 fec_auto; - struct fec_stat_grp corr; - struct fec_stat_grp uncorr; - struct fec_stat_grp corr_bits; -}; - -enum ctattr_l4proto { - CTA_PROTO_UNSPEC = 0, - CTA_PROTO_NUM = 1, - CTA_PROTO_SRC_PORT = 2, - CTA_PROTO_DST_PORT = 3, - CTA_PROTO_ICMP_ID = 4, - CTA_PROTO_ICMP_TYPE = 5, - CTA_PROTO_ICMP_CODE = 6, - CTA_PROTO_ICMPV6_ID = 7, - CTA_PROTO_ICMPV6_TYPE = 8, - CTA_PROTO_ICMPV6_CODE = 9, - __CTA_PROTO_MAX = 10, -}; - -enum ctattr_timeout_icmp { - CTA_TIMEOUT_ICMP_UNSPEC = 0, - CTA_TIMEOUT_ICMP_TIMEOUT = 1, - __CTA_TIMEOUT_ICMP_MAX = 2, -}; - -enum ctattr_timeout_icmpv6 { - CTA_TIMEOUT_ICMPV6_UNSPEC = 0, - CTA_TIMEOUT_ICMPV6_TIMEOUT = 1, - __CTA_TIMEOUT_ICMPV6_MAX = 2, -}; - -struct nf_conn_synproxy { - u32 isn; - u32 its; - u32 tsoff; -}; - -enum nft_secmark_attributes { - NFTA_SECMARK_UNSPEC = 0, - NFTA_SECMARK_CTX = 1, - __NFTA_SECMARK_MAX = 2, -}; - -struct nft_secmark { - u32 secid; - char *ctx; -}; - -enum nft_limit_type { - NFT_LIMIT_PKTS = 0, - NFT_LIMIT_PKT_BYTES = 1, -}; - -enum nft_limit_flags { - NFT_LIMIT_F_INV = 1, -}; - -enum nft_limit_attributes { - NFTA_LIMIT_UNSPEC = 0, - NFTA_LIMIT_RATE = 1, - NFTA_LIMIT_UNIT = 2, - NFTA_LIMIT_BURST = 3, - NFTA_LIMIT_TYPE = 4, - NFTA_LIMIT_FLAGS = 5, - NFTA_LIMIT_PAD = 6, - __NFTA_LIMIT_MAX = 7, -}; - -struct nft_limit { - spinlock_t lock; - u64 last; - u64 tokens; -}; - -struct nft_limit_priv { - struct nft_limit *limit; - u64 tokens_max; - u64 rate; - u64 nsecs; - u32 burst; - bool invert; -}; - -struct nft_limit_priv_pkts { - struct nft_limit_priv limit; - u64 cost; -}; - -struct xt_tee_priv; - -struct xt_tee_tginfo { - union nf_inet_addr gw; - char oif[16]; - struct xt_tee_priv *priv; -}; - -struct xt_tee_priv { - struct list_head list; - struct xt_tee_tginfo *tginfo; - int oif; -}; - -struct tee_net { - struct list_head priv_list; - struct mutex lock; -}; - -enum xt_l2tp_type { - XT_L2TP_TYPE_CONTROL = 0, - XT_L2TP_TYPE_DATA = 1, -}; - -struct xt_l2tp_info { - __u32 tid; - __u32 sid; - __u8 version; - __u8 type; - __u8 flags; -}; - -enum { - XT_L2TP_TID = 1, - XT_L2TP_SID = 2, - XT_L2TP_VERSION = 4, - XT_L2TP_TYPE = 8, -}; - -struct l2tp_data { - u32 tid; - u32 sid; - u8 type; - u8 version; -}; - -union l2tp_val { - __be16 val16[2]; - __be32 val32; -}; - -struct xt_physdev_info { - char physindev[16]; - char in_mask[16]; - char physoutdev[16]; - char out_mask[16]; - __u8 invert; - __u8 bitmask; -}; - -struct xt_time_info { - __u32 date_start; - __u32 date_stop; - __u32 daytime_start; - __u32 daytime_stop; - __u32 monthdays_match; - __u8 weekdays_match; - __u8 flags; -}; - -enum { - XT_TIME_LOCAL_TZ = 1, - XT_TIME_CONTIGUOUS = 2, - XT_TIME_ALL_MONTHDAYS = 4294967294, - XT_TIME_ALL_WEEKDAYS = 254, - XT_TIME_MIN_DAYTIME = 0, - XT_TIME_MAX_DAYTIME = 86399, -}; - -struct xtm { - u_int8_t month; - u_int8_t monthday; - u_int8_t weekday; - u_int8_t hour; - u_int8_t minute; - u_int8_t second; - unsigned int dse; -}; - -enum { - DSE_FIRST = 2039, - SECONDS_PER_DAY = 86400, -}; - -enum { - IP_VS_TCP_S_NONE = 0, - IP_VS_TCP_S_ESTABLISHED = 1, - IP_VS_TCP_S_SYN_SENT = 2, - IP_VS_TCP_S_SYN_RECV = 3, - IP_VS_TCP_S_FIN_WAIT = 4, - IP_VS_TCP_S_TIME_WAIT = 5, - IP_VS_TCP_S_CLOSE = 6, - IP_VS_TCP_S_CLOSE_WAIT = 7, - IP_VS_TCP_S_LAST_ACK = 8, - IP_VS_TCP_S_LISTEN = 9, - IP_VS_TCP_S_SYNACK = 10, - IP_VS_TCP_S_LAST = 11, -}; - -enum ip_vs_sctp_states { - IP_VS_SCTP_S_NONE = 0, - IP_VS_SCTP_S_INIT1 = 1, - IP_VS_SCTP_S_INIT = 2, - IP_VS_SCTP_S_COOKIE_SENT = 3, - IP_VS_SCTP_S_COOKIE_REPLIED = 4, - IP_VS_SCTP_S_COOKIE_WAIT = 5, - IP_VS_SCTP_S_COOKIE = 6, - IP_VS_SCTP_S_COOKIE_ECHOED = 7, - IP_VS_SCTP_S_ESTABLISHED = 8, - IP_VS_SCTP_S_SHUTDOWN_SENT = 9, - IP_VS_SCTP_S_SHUTDOWN_RECEIVED = 10, - IP_VS_SCTP_S_SHUTDOWN_ACK_SENT = 11, - IP_VS_SCTP_S_REJECTED = 12, - IP_VS_SCTP_S_CLOSED = 13, - IP_VS_SCTP_S_LAST = 14, -}; - -struct ip_vs_aligned_lock { - spinlock_t l; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct ip_vs_iter_state { - struct seq_net_private p; - struct hlist_head *l; -}; - -struct nhmsg { - unsigned char nh_family; - unsigned char nh_scope; - unsigned char nh_protocol; - unsigned char resvd; - unsigned int nh_flags; -}; - -struct nexthop_grp { - __u32 id; - __u8 weight; - __u8 weight_high; - __u16 resvd2; -}; - -enum { - NEXTHOP_GRP_TYPE_MPATH = 0, - NEXTHOP_GRP_TYPE_RES = 1, - __NEXTHOP_GRP_TYPE_MAX = 2, -}; - -enum { - NHA_UNSPEC = 0, - NHA_ID = 1, - NHA_GROUP = 2, - NHA_GROUP_TYPE = 3, - NHA_BLACKHOLE = 4, - NHA_OIF = 5, - NHA_GATEWAY = 6, - NHA_ENCAP_TYPE = 7, - NHA_ENCAP = 8, - NHA_GROUPS = 9, - NHA_MASTER = 10, - NHA_FDB = 11, - NHA_RES_GROUP = 12, - NHA_RES_BUCKET = 13, - NHA_OP_FLAGS = 14, - NHA_GROUP_STATS = 15, - NHA_HW_STATS_ENABLE = 16, - NHA_HW_STATS_USED = 17, - __NHA_MAX = 18, -}; - -enum { - NHA_RES_GROUP_UNSPEC = 0, - NHA_RES_GROUP_PAD = 0, - NHA_RES_GROUP_BUCKETS = 1, - NHA_RES_GROUP_IDLE_TIMER = 2, - NHA_RES_GROUP_UNBALANCED_TIMER = 3, - NHA_RES_GROUP_UNBALANCED_TIME = 4, - __NHA_RES_GROUP_MAX = 5, -}; - -enum { - NHA_RES_BUCKET_UNSPEC = 0, - NHA_RES_BUCKET_PAD = 0, - NHA_RES_BUCKET_INDEX = 1, - NHA_RES_BUCKET_IDLE_TIME = 2, - NHA_RES_BUCKET_NH_ID = 3, - __NHA_RES_BUCKET_MAX = 4, -}; - -enum { - NHA_GROUP_STATS_UNSPEC = 0, - NHA_GROUP_STATS_ENTRY = 1, - __NHA_GROUP_STATS_MAX = 2, -}; - -enum { - NHA_GROUP_STATS_ENTRY_UNSPEC = 0, - NHA_GROUP_STATS_ENTRY_ID = 1, - NHA_GROUP_STATS_ENTRY_PACKETS = 2, - NHA_GROUP_STATS_ENTRY_PACKETS_HW = 3, - __NHA_GROUP_STATS_ENTRY_MAX = 4, -}; - -struct netdev_notifier_info_ext { - struct netdev_notifier_info info; - union { - u32 mtu; - } ext; -}; - -struct nh_config { - u32 nh_id; - u8 nh_family; - u8 nh_protocol; - u8 nh_blackhole; - u8 nh_fdb; - u32 nh_flags; - int nh_ifindex; - struct net_device *dev; - union { - __be32 ipv4; - struct in6_addr ipv6; - } gw; - struct nlattr *nh_grp; - u16 nh_grp_type; - u16 nh_grp_res_num_buckets; - long unsigned int nh_grp_res_idle_timer; - long unsigned int nh_grp_res_unbalanced_timer; - bool nh_grp_res_has_num_buckets; - bool nh_grp_res_has_idle_timer; - bool nh_grp_res_has_unbalanced_timer; - bool nh_hw_stats; - struct nlattr *nh_encap; - u16 nh_encap_type; - u32 nlflags; - struct nl_info nlinfo; -}; - -enum nexthop_event_type { - NEXTHOP_EVENT_DEL = 0, - NEXTHOP_EVENT_REPLACE = 1, - NEXTHOP_EVENT_RES_TABLE_PRE_REPLACE = 2, - NEXTHOP_EVENT_BUCKET_REPLACE = 3, - NEXTHOP_EVENT_HW_STATS_REPORT_DELTA = 4, -}; - -enum nh_notifier_info_type { - NH_NOTIFIER_INFO_TYPE_SINGLE = 0, - NH_NOTIFIER_INFO_TYPE_GRP = 1, - NH_NOTIFIER_INFO_TYPE_RES_TABLE = 2, - NH_NOTIFIER_INFO_TYPE_RES_BUCKET = 3, - NH_NOTIFIER_INFO_TYPE_GRP_HW_STATS = 4, -}; - -struct nh_notifier_single_info { - struct net_device *dev; - u8 gw_family; - union { - __be32 ipv4; - struct in6_addr ipv6; - }; - u32 id; - u8 is_reject: 1; - u8 is_fdb: 1; - u8 has_encap: 1; -}; - -struct nh_notifier_grp_entry_info { - u16 weight; - struct nh_notifier_single_info nh; -}; - -struct nh_notifier_grp_info { - u16 num_nh; - bool is_fdb; - bool hw_stats; - struct nh_notifier_grp_entry_info nh_entries[0]; -}; - -struct nh_notifier_res_bucket_info { - u16 bucket_index; - unsigned int idle_timer_ms; - bool force; - struct nh_notifier_single_info old_nh; - struct nh_notifier_single_info new_nh; -}; - -struct nh_notifier_res_table_info { - u16 num_nh_buckets; - bool hw_stats; - struct nh_notifier_single_info nhs[0]; -}; - -struct nh_notifier_grp_hw_stats_entry_info { - u32 id; - u64 packets; -}; - -struct nh_notifier_grp_hw_stats_info { - u16 num_nh; - bool hw_stats_used; - struct nh_notifier_grp_hw_stats_entry_info stats[0]; -}; - -struct nh_notifier_info { - struct net *net; - struct netlink_ext_ack *extack; - u32 id; - enum nh_notifier_info_type type; - union { - struct nh_notifier_single_info *nh; - struct nh_notifier_grp_info *nh_grp; - struct nh_notifier_res_table_info *nh_res_table; - struct nh_notifier_res_bucket_info *nh_res_bucket; - struct nh_notifier_grp_hw_stats_info *nh_grp_hw_stats; - }; -}; - -struct nh_dump_filter { - u32 nh_id; - int dev_idx; - int master_idx; - bool group_filter; - bool fdb_filter; - u32 res_bucket_nh_id; - u32 op_flags; -}; - -struct rtm_dump_nh_ctx { - u32 idx; -}; - -struct rtm_dump_res_bucket_ctx { - struct rtm_dump_nh_ctx nh; - u16 bucket_index; -}; - -struct rtm_dump_nexthop_bucket_data { - struct rtm_dump_res_bucket_ctx *ctx; - struct nh_dump_filter filter; -}; - -enum { - UDP_BPF_IPV4 = 0, - UDP_BPF_IPV6 = 1, - UDP_BPF_NUM_PROTS = 2, -}; - -struct ipcomp_data { - u16 threshold; - struct crypto_comp **tfms; -}; - -struct ipcomp_tfms { - struct list_head list; - struct crypto_comp **tfms; - int users; -}; - -struct ipv6_sr_hdr { - __u8 nexthdr; - __u8 hdrlen; - __u8 type; - __u8 segments_left; - __u8 first_segment; - __u8 flags; - __u16 tag; - struct in6_addr segments[0]; -}; - -struct ip6_tnl_encap_ops { - size_t (*encap_hlen)(struct ip_tunnel_encap *); - int (*build_header)(struct sk_buff *, struct ip_tunnel_encap *, u8 *, struct flowi6 *); - int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); -}; - -struct ip6t_opts { - __u32 hdrlen; - __u8 flags; - __u8 invflags; - __u16 opts[16]; - __u8 optsnr; -}; - -struct nf_br_ops { - int (*br_dev_xmit_hook)(struct sk_buff *); -}; - -struct ebt_mark_m_info { - long unsigned int mark; - long unsigned int mask; - __u8 invert; - __u8 bitmask; -}; - -enum { - SVC_HANDSHAKE_TO = 5000, -}; - -struct crypto_sync_skcipher { - struct crypto_skcipher base; -}; - -struct krb5_ctx; - -struct gss_krb5_enctype { - const u32 etype; - const u32 ctype; - const char *name; - const char *encrypt_name; - const char *aux_cipher; - const char *cksum_name; - const u16 signalg; - const u16 sealalg; - const u32 cksumlength; - const u32 keyed_cksum; - const u32 keybytes; - const u32 keylength; - const u32 Kc_length; - const u32 Ke_length; - const u32 Ki_length; - int (*derive_key)(const struct gss_krb5_enctype *, const struct xdr_netobj *, struct xdr_netobj *, const struct xdr_netobj *, gfp_t); - u32 (*encrypt)(struct krb5_ctx *, u32, struct xdr_buf *, struct page **); - u32 (*decrypt)(struct krb5_ctx *, u32, u32, struct xdr_buf *, u32 *, u32 *); - u32 (*get_mic)(struct krb5_ctx *, struct xdr_buf *, struct xdr_netobj *); - u32 (*verify_mic)(struct krb5_ctx *, struct xdr_buf *, struct xdr_netobj *); - u32 (*wrap)(struct krb5_ctx *, int, struct xdr_buf *, struct page **); - u32 (*unwrap)(struct krb5_ctx *, int, int, struct xdr_buf *, unsigned int *, unsigned int *); -}; - -struct krb5_ctx { - int initiate; - u32 enctype; - u32 flags; - const struct gss_krb5_enctype *gk5e; - struct crypto_sync_skcipher *enc; - struct crypto_sync_skcipher *seq; - struct crypto_sync_skcipher *acceptor_enc; - struct crypto_sync_skcipher *initiator_enc; - struct crypto_sync_skcipher *acceptor_enc_aux; - struct crypto_sync_skcipher *initiator_enc_aux; - struct crypto_ahash *acceptor_sign; - struct crypto_ahash *initiator_sign; - struct crypto_ahash *initiator_integ; - struct crypto_ahash *acceptor_integ; - u8 Ksess[32]; - u8 cksum[32]; - atomic_t seq_send; - atomic64_t seq_send64; - time64_t endtime; - struct xdr_netobj mech_used; -}; - -struct encryptor_desc { - u8 iv[16]; - struct skcipher_request *req; - int pos; - struct xdr_buf *outbuf; - struct page **pages; - struct scatterlist infrags[4]; - struct scatterlist outfrags[4]; - int fragno; - int fraglen; -}; - -struct decryptor_desc { - u8 iv[16]; - struct skcipher_request *req; - struct scatterlist frags[4]; - int fragno; - int fraglen; -}; - -enum sctp_spinfo_state { - SCTP_INACTIVE = 0, - SCTP_PF = 1, - SCTP_ACTIVE = 2, - SCTP_UNCONFIRMED = 3, - SCTP_UNKNOWN = 65535, -}; - -enum { - SCTP_PARAM_ACTION_DISCARD = 0, - SCTP_PARAM_ACTION_DISCARD_ERR = 64, - SCTP_PARAM_ACTION_SKIP = 128, - SCTP_PARAM_ACTION_SKIP_ERR = 192, -}; - -enum { - SCTP_PARAM_ACTION_MASK = 192, -}; - -struct sctp_addip_chunk { - struct sctp_chunkhdr chunk_hdr; - struct sctp_addiphdr addip_hdr; -}; - -struct sctp_strreset_outreq { - struct sctp_paramhdr param_hdr; - __be32 request_seq; - __be32 response_seq; - __be32 send_reset_at_tsn; - __be16 list_of_streams[0]; -}; - -struct sctp_strreset_inreq { - struct sctp_paramhdr param_hdr; - __be32 request_seq; - __be16 list_of_streams[0]; -}; - -struct sctp_strreset_tsnreq { - struct sctp_paramhdr param_hdr; - __be32 request_seq; -}; - -struct sctp_strreset_addstrm { - struct sctp_paramhdr param_hdr; - __be32 request_seq; - __be16 number_of_streams; - __be16 reserved; -}; - -struct sctp_strreset_resp { - struct sctp_paramhdr param_hdr; - __be32 response_seq; - __be32 result; -}; - -struct sctp_strreset_resptsn { - struct sctp_paramhdr param_hdr; - __be32 response_seq; - __be32 result; - __be32 senders_next_tsn; - __be32 receivers_next_tsn; -}; - -struct sctp_new_encap_port_hdr { - __be16 cur_port; - __be16 new_port; -}; - -enum { - SCTP_MAX_CHUNK_LEN = 65532, -}; - -struct __sctp_missing { - __be32 num_missing; - __be16 type; -} __attribute__((packed)); - -enum sctp_sched_type { - SCTP_SS_FCFS = 0, - SCTP_SS_DEFAULT = 0, - SCTP_SS_PRIO = 1, - SCTP_SS_RR = 2, - SCTP_SS_FC = 3, - SCTP_SS_WFQ = 4, - SCTP_SS_MAX = 4, -}; - -struct sctp_sched_ops { - int (*set)(struct sctp_stream *, __u16, __u16, gfp_t); - int (*get)(struct sctp_stream *, __u16, __u16 *); - int (*init)(struct sctp_stream *); - int (*init_sid)(struct sctp_stream *, __u16, gfp_t); - void (*free_sid)(struct sctp_stream *, __u16); - void (*enqueue)(struct sctp_outq *, struct sctp_datamsg *); - struct sctp_chunk * (*dequeue)(struct sctp_outq *); - void (*dequeue_done)(struct sctp_outq *, struct sctp_chunk *); - void (*sched_all)(struct sctp_stream *); - void (*unsched_all)(struct sctp_stream *); -}; - -struct internal_dev { - struct vport *vport; -}; - -struct xsk_dma_map { - dma_addr_t *dma_pages; - struct device *dev; - struct net_device *netdev; - refcount_t users; - struct list_head list; - u32 dma_pages_cnt; -}; - -struct xsk_cb_desc { - void *src; - u8 off; - u8 bytes; -}; - -struct ida_bitmap { - long unsigned int bitmap[16]; -}; - -struct klist_waiter { - struct list_head list; - struct klist_node *node; - struct task_struct *process; - int woken; -}; - -struct step_hook { - struct list_head node; - int (*fn)(struct pt_regs *, long unsigned int); -}; - -enum dbg_active_el { - DBG_ACTIVE_EL0 = 0, - DBG_ACTIVE_EL1 = 1, -}; - -enum aarch64_insn_imm_type { - AARCH64_INSN_IMM_ADR = 0, - AARCH64_INSN_IMM_26 = 1, - AARCH64_INSN_IMM_19 = 2, - AARCH64_INSN_IMM_16 = 3, - AARCH64_INSN_IMM_14 = 4, - AARCH64_INSN_IMM_12 = 5, - AARCH64_INSN_IMM_9 = 6, - AARCH64_INSN_IMM_7 = 7, - AARCH64_INSN_IMM_6 = 8, - AARCH64_INSN_IMM_S = 9, - AARCH64_INSN_IMM_R = 10, - AARCH64_INSN_IMM_N = 11, - AARCH64_INSN_IMM_MAX = 12, -}; - -enum aarch64_reloc_op { - RELOC_OP_NONE = 0, - RELOC_OP_ABS = 1, - RELOC_OP_PREL = 2, - RELOC_OP_PAGE = 3, -}; - -enum aarch64_insn_movw_imm_type { - AARCH64_INSN_IMM_MOVNZ = 0, - AARCH64_INSN_IMM_MOVKZ = 1, -}; - -enum { - HW_BREAKPOINT_LEN_1 = 1, - HW_BREAKPOINT_LEN_2 = 2, - HW_BREAKPOINT_LEN_3 = 3, - HW_BREAKPOINT_LEN_4 = 4, - HW_BREAKPOINT_LEN_5 = 5, - HW_BREAKPOINT_LEN_6 = 6, - HW_BREAKPOINT_LEN_7 = 7, - HW_BREAKPOINT_LEN_8 = 8, -}; - -enum { - HW_BREAKPOINT_EMPTY = 0, - HW_BREAKPOINT_R = 1, - HW_BREAKPOINT_W = 2, - HW_BREAKPOINT_RW = 3, - HW_BREAKPOINT_X = 4, - HW_BREAKPOINT_INVALID = 7, -}; - -enum bp_type_idx { - TYPE_INST = 0, - TYPE_DATA = 1, - TYPE_MAX = 2, -}; - -enum hw_breakpoint_ops { - HW_BREAKPOINT_INSTALL = 0, - HW_BREAKPOINT_UNINSTALL = 1, - HW_BREAKPOINT_RESTORE = 2, -}; - -typedef int (*ioremap_prot_hook_t)(phys_addr_t, size_t, pgprot_t *); - -struct clone_args { - __u64 flags; - __u64 pidfd; - __u64 child_tid; - __u64 parent_tid; - __u64 exit_signal; - __u64 stack; - __u64 stack_size; - __u64 tls; - __u64 set_tid; - __u64 set_tid_size; - __u64 cgroup; -}; - -struct kernel_clone_args { - u64 flags; - int *pidfd; - int *child_tid; - int *parent_tid; - const char *name; - int exit_signal; - u32 kthread: 1; - u32 io_thread: 1; - u32 user_worker: 1; - u32 no_files: 1; - long unsigned int stack; - long unsigned int stack_size; - long unsigned int tls; - pid_t *set_tid; - size_t set_tid_size; - int cgroup; - int idle; - int (*fn)(void *); - void *fn_arg; - struct cgroup *cgrp; - struct css_set *cset; - unsigned int kill_seq; -}; - -struct multiprocess_signals { - sigset_t signal; - struct hlist_node node; -}; - -typedef int (*proc_visitor)(struct task_struct *, void *); - -struct trace_event_raw_task_newtask { - struct trace_entry ent; - pid_t pid; - char comm[16]; - long unsigned int clone_flags; - short int oom_score_adj; - char __data[0]; -}; - -struct trace_event_raw_task_rename { - struct trace_entry ent; - pid_t pid; - char oldcomm[16]; - char newcomm[16]; - short int oom_score_adj; - char __data[0]; -}; - -struct trace_event_data_offsets_task_newtask {}; - -struct trace_event_data_offsets_task_rename {}; - -typedef void (*btf_trace_task_newtask)(void *, struct task_struct *, long unsigned int); - -typedef void (*btf_trace_task_rename)(void *, struct task_struct *, const char *); - -struct rt_wake_q_head { - struct wake_q_head head; - struct task_struct *rtlock_task; -}; - -enum rtmutex_chainwalk { - RT_MUTEX_MIN_CHAINWALK = 0, - RT_MUTEX_FULL_CHAINWALK = 1, -}; - -enum pci_p2pdma_map_type { - PCI_P2PDMA_MAP_UNKNOWN = 0, - PCI_P2PDMA_MAP_NOT_SUPPORTED = 1, - PCI_P2PDMA_MAP_BUS_ADDR = 2, - PCI_P2PDMA_MAP_THRU_HOST_BRIDGE = 3, -}; - -struct pci_p2pdma_map_state { - struct dev_pagemap *pgmap; - int map; - u64 bus_off; -}; - -struct latch_tree_root { - seqcount_latch_t seq; - struct rb_root tree[2]; -}; - -struct latch_tree_ops { - bool (*less)(struct latch_tree_node *, struct latch_tree_node *); - int (*comp)(void *, struct latch_tree_node *); -}; - -struct mod_tree_root { - struct latch_tree_root root; - long unsigned int addr_min; - long unsigned int addr_max; -}; - -enum kcmp_type { - KCMP_FILE = 0, - KCMP_VM = 1, - KCMP_FILES = 2, - KCMP_FS = 3, - KCMP_SIGHAND = 4, - KCMP_IO = 5, - KCMP_SYSVSEM = 6, - KCMP_EPOLL_TFD = 7, - KCMP_TYPES = 8, -}; - -struct kcmp_epoll_slot { - __u32 efd; - __u32 tfd; - __u32 toff; -}; - -struct posix_clock; - -struct posix_clock_context; - -struct posix_clock_operations { - struct module *owner; - int (*clock_adjtime)(struct posix_clock *, struct __kernel_timex *); - int (*clock_gettime)(struct posix_clock *, struct timespec64 *); - int (*clock_getres)(struct posix_clock *, struct timespec64 *); - int (*clock_settime)(struct posix_clock *, const struct timespec64 *); - long int (*ioctl)(struct posix_clock_context *, unsigned int, long unsigned int); - int (*open)(struct posix_clock_context *, fmode_t); - __poll_t (*poll)(struct posix_clock_context *, struct file *, poll_table *); - int (*release)(struct posix_clock_context *); - ssize_t (*read)(struct posix_clock_context *, uint, char *, size_t); -}; - -struct posix_clock { - struct posix_clock_operations ops; - struct cdev cdev; - struct device *dev; - struct rw_semaphore rwsem; - bool zombie; -}; - -struct posix_clock_context { - struct posix_clock *clk; - void *private_clkdata; -}; - -struct posix_clock_desc { - struct file *fp; - struct posix_clock *clk; -}; - -struct kallsym_iter { - loff_t pos; - loff_t pos_mod_end; - loff_t pos_ftrace_mod_end; - loff_t pos_bpf_end; - long unsigned int value; - unsigned int nameoff; - char type; - char name[512]; - char module_name[56]; - int exported; - int show_value; -}; - -struct bpf_iter__ksym { - union { - struct bpf_iter_meta *meta; - }; - union { - struct kallsym_iter *ksym; - }; -}; - -enum uts_proc { - UTS_PROC_ARCH = 0, - UTS_PROC_OSTYPE = 1, - UTS_PROC_OSRELEASE = 2, - UTS_PROC_VERSION = 3, - UTS_PROC_HOSTNAME = 4, - UTS_PROC_DOMAINNAME = 5, -}; - -struct ftrace_func_entry { - struct hlist_node hlist; - long unsigned int ip; - long unsigned int direct; -}; - -enum ftrace_bug_type { - FTRACE_BUG_UNKNOWN = 0, - FTRACE_BUG_INIT = 1, - FTRACE_BUG_NOP = 2, - FTRACE_BUG_CALL = 3, - FTRACE_BUG_UPDATE = 4, -}; - -enum { - FTRACE_UPDATE_IGNORE = 0, - FTRACE_UPDATE_MAKE_CALL = 1, - FTRACE_UPDATE_MODIFY_CALL = 2, - FTRACE_UPDATE_MAKE_NOP = 3, -}; - -enum { - FTRACE_ITER_FILTER = 1, - FTRACE_ITER_NOTRACE = 2, - FTRACE_ITER_PRINTALL = 4, - FTRACE_ITER_DO_PROBES = 8, - FTRACE_ITER_PROBE = 16, - FTRACE_ITER_MOD = 32, - FTRACE_ITER_ENABLED = 64, - FTRACE_ITER_TOUCHED = 128, - FTRACE_ITER_ADDRS = 256, -}; - -enum { - TRACE_PIDS = 1, - TRACE_NO_PIDS = 2, -}; - -struct ftrace_mod_load { - struct list_head list; - char *func; - char *module; - int enable; -}; - -enum { - FTRACE_HASH_FL_MOD = 1, -}; - -struct trace_parser { - bool cont; - bool fail; - char *buffer; - unsigned int idx; - unsigned int size; -}; - -enum regex_type { - MATCH_FULL = 0, - MATCH_FRONT_ONLY = 1, - MATCH_MIDDLE_ONLY = 2, - MATCH_END_ONLY = 3, - MATCH_GLOB = 4, - MATCH_INDEX = 5, -}; - -struct tracer_stat { - const char *name; - void * (*stat_start)(struct tracer_stat *); - void * (*stat_next)(void *, int); - cmp_func_t stat_cmp; - int (*stat_show)(struct seq_file *, void *); - void (*stat_release)(void *); - int (*stat_headers)(struct seq_file *); -}; - -enum { - FTRACE_MODIFY_ENABLE_FL = 1, - FTRACE_MODIFY_MAY_SLEEP_FL = 2, -}; - -struct ftrace_profile { - struct hlist_node node; - long unsigned int ip; - long unsigned int counter; -}; - -struct ftrace_profile_page { - struct ftrace_profile_page *next; - long unsigned int index; - struct ftrace_profile records[0]; -}; - -struct ftrace_profile_stat { - atomic_t disabled; - struct hlist_head *hash; - struct ftrace_profile_page *pages; - struct ftrace_profile_page *start; - struct tracer_stat stat; -}; - -struct ftrace_func_probe { - struct ftrace_probe_ops *probe_ops; - struct ftrace_ops ops; - struct trace_array *tr; - struct list_head list; - void *data; - int ref; -}; - -struct ftrace_page { - struct ftrace_page *next; - struct dyn_ftrace *records; - int index; - int order; -}; - -struct ftrace_rec_iter { - struct ftrace_page *pg; - int index; -}; - -struct ftrace_iterator { - loff_t pos; - loff_t func_pos; - loff_t mod_pos; - struct ftrace_page *pg; - struct dyn_ftrace *func; - struct ftrace_func_probe *probe; - struct ftrace_func_entry *probe_entry; - struct trace_parser parser; - struct ftrace_hash *hash; - struct ftrace_ops *ops; - struct trace_array *tr; - struct list_head *mod_list; - int pidx; - int idx; - unsigned int flags; -}; - -struct ftrace_glob { - char *search; - unsigned int len; - int type; -}; - -struct ftrace_func_map { - struct ftrace_func_entry entry; - void *data; -}; - -struct ftrace_func_mapper { - struct ftrace_hash hash; -}; - -struct ftrace_mod_func { - struct list_head list; - char *name; - long unsigned int ip; - unsigned int size; -}; - -struct ftrace_mod_map { - struct callback_head rcu; - struct list_head list; - struct module *mod; - long unsigned int start_addr; - long unsigned int end_addr; - struct list_head funcs; - unsigned int num_funcs; -}; - -struct ftrace_init_func { - struct list_head list; - long unsigned int ip; -}; - -struct kallsyms_data { - long unsigned int *addrs; - const char **syms; - size_t cnt; - size_t found; -}; - -enum bpf_perf_event_type { - BPF_PERF_EVENT_UNSPEC = 0, - BPF_PERF_EVENT_UPROBE = 1, - BPF_PERF_EVENT_URETPROBE = 2, - BPF_PERF_EVENT_KPROBE = 3, - BPF_PERF_EVENT_KRETPROBE = 4, - BPF_PERF_EVENT_TRACEPOINT = 5, - BPF_PERF_EVENT_EVENT = 6, -}; - -enum bpf_stats_type { - BPF_STATS_RUN_TIME = 0, -}; - -struct bpf_spin_lock { - __u32 val; -}; - -struct bpf_tramp_run_ctx { - struct bpf_run_ctx run_ctx; - u64 bpf_cookie; - struct bpf_run_ctx *saved_run_ctx; -}; - -struct bpf_attach_target_info { - struct btf_func_model fmodel; - long int tgt_addr; - struct module *tgt_mod; - const char *tgt_name; - const struct btf_type *tgt_type; -}; - -struct bpf_tracing_link { - struct bpf_tramp_link link; - enum bpf_attach_type attach_type; - struct bpf_trampoline *trampoline; - struct bpf_prog *tgt_prog; -}; - -enum perf_bpf_event_type { - PERF_BPF_EVENT_UNKNOWN = 0, - PERF_BPF_EVENT_PROG_LOAD = 1, - PERF_BPF_EVENT_PROG_UNLOAD = 2, - PERF_BPF_EVENT_MAX = 3, -}; - -enum bpf_audit { - BPF_AUDIT_LOAD = 0, - BPF_AUDIT_UNLOAD = 1, - BPF_AUDIT_MAX = 2, -}; - -struct bpf_prog_kstats { - u64 nsecs; - u64 cnt; - u64 misses; -}; - -struct bpf_perf_link { - struct bpf_link link; - struct file *perf_file; -}; - -typedef u64 (*btf_bpf_sys_bpf)(int, union bpf_attr *, u32); - -typedef u64 (*btf_bpf_sys_close)(u32); - -typedef u64 (*btf_bpf_kallsyms_lookup_name)(const char *, int, int, u64 *); - -struct bpf_devmap_val { - __u32 ifindex; - union { - int fd; - __u32 id; - } bpf_prog; -}; - -struct xdp_dev_bulk_queue { - struct xdp_frame *q[16]; - struct list_head flush_node; - struct net_device *dev; - struct net_device *dev_rx; - struct bpf_prog *xdp_prog; - unsigned int count; -}; - -struct bpf_dtab_netdev { - struct net_device *dev; - struct hlist_node index_hlist; - struct bpf_prog *xdp_prog; - struct callback_head rcu; - unsigned int idx; - struct bpf_devmap_val val; -}; - -struct bpf_dtab { - struct bpf_map map; - struct bpf_dtab_netdev **netdev_map; - struct list_head list; - struct hlist_head *dev_index_head; - spinlock_t index_lock; - unsigned int items; - u32 n_buckets; -}; - -struct parallel_data; - -struct padata_priv { - struct list_head list; - struct parallel_data *pd; - int cb_cpu; - unsigned int seq_nr; - int info; - void (*parallel)(struct padata_priv *); - void (*serial)(struct padata_priv *); -}; - -struct padata_cpumask { - cpumask_var_t pcpu; - cpumask_var_t cbcpu; -}; - -struct padata_shell; - -struct padata_list; - -struct padata_serial_queue; - -struct parallel_data { - struct padata_shell *ps; - struct padata_list *reorder_list; - struct padata_serial_queue *squeue; - refcount_t refcnt; - unsigned int seq_nr; - unsigned int processed; - int cpu; - struct padata_cpumask cpumask; - struct work_struct reorder_work; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - spinlock_t lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct padata_list { - struct list_head list; - spinlock_t lock; -}; - -struct padata_serial_queue { - struct padata_list serial; - struct work_struct work; - struct parallel_data *pd; -}; - -struct padata_instance; - -struct padata_shell { - struct padata_instance *pinst; - struct parallel_data *pd; - struct parallel_data *opd; - struct list_head list; -}; - -struct padata_instance { - struct hlist_node cpu_online_node; - struct hlist_node cpu_dead_node; - struct workqueue_struct *parallel_wq; - struct workqueue_struct *serial_wq; - struct list_head pslist; - struct padata_cpumask cpumask; - struct kobject kobj; - struct mutex lock; - u8 flags; -}; - -struct padata_work { - struct work_struct pw_work; - struct list_head pw_list; - void *pw_data; -}; - -struct padata_mt_job_state { - spinlock_t lock; - struct completion completion; - struct padata_mt_job *job; - int nworks; - int nworks_fini; - long unsigned int chunk_size; -}; - -struct padata_sysfs_entry { - struct attribute attr; - ssize_t (*show)(struct padata_instance *, struct attribute *, char *); - ssize_t (*store)(struct padata_instance *, struct attribute *, const char *, size_t); -}; - -enum { - LRU_GEN_ANON = 0, - LRU_GEN_FILE = 1, -}; - -struct mlock_fbatch { - local_lock_t lock; - struct folio_batch fbatch; -}; - -struct dma_block { - struct dma_block *next_block; - dma_addr_t dma; -}; - -struct dma_pool { - struct list_head page_list; - spinlock_t lock; - struct dma_block *next_block; - size_t nr_blocks; - size_t nr_active; - size_t nr_pages; - struct device *dev; - unsigned int size; - unsigned int allocation; - unsigned int boundary; - char name[32]; - struct list_head pools; -}; - -struct dma_page { - struct list_head page_list; - void *vaddr; - dma_addr_t dma; -}; - -struct cgroup_of_peak { - long unsigned int value; - struct list_head list; -}; - -struct mem_cgroup_reclaim_cookie { - pg_data_t *pgdat; - int generation; -}; - -struct lruvec_stats_percpu { - long int state[30]; - long int state_prev[30]; -}; - -struct lruvec_stats { - long int state[30]; - long int state_local[30]; - long int state_pending[30]; -}; - -struct memcg_vmstats { - long int state[37]; - long unsigned int events[24]; - long int state_local[37]; - long unsigned int events_local[24]; - long int state_pending[37]; - long unsigned int events_pending[24]; - atomic64_t stats_updates; -}; - -struct memcg_vmstats_percpu { - unsigned int stats_updates; - struct memcg_vmstats_percpu *parent; - struct memcg_vmstats *vmstats; - long int state[37]; - long unsigned int events[24]; - long int state_prev[37]; - long unsigned int events_prev[24]; - long: 64; - long: 64; - long: 64; -}; - -struct slabobj_ext { - struct obj_cgroup *objcg; -}; - -struct memory_stat { - const char *name; - unsigned int idx; -}; - -struct memcg_stock_pcp { - local_lock_t stock_lock; - struct mem_cgroup *cached; - unsigned int nr_pages; - struct obj_cgroup *cached_objcg; - struct pglist_data *cached_pgdat; - unsigned int nr_bytes; - int nr_slab_reclaimable_b; - int nr_slab_unreclaimable_b; - struct work_struct work; - long unsigned int flags; -}; - -enum { - MEMORY_RECLAIM_SWAPPINESS = 0, - MEMORY_RECLAIM_NULL = 1, -}; - -struct uncharge_gather { - struct mem_cgroup *memcg; - long unsigned int nr_memory; - long unsigned int pgpgout; - long unsigned int nr_kmem; - int nid; -}; - -struct prepend_buffer { - char *buf; - int len; -}; - -typedef struct siginfo siginfo_t; - -struct arch_elf_state { - int flags; -}; - -struct gnu_property { - u32 pr_type; - u32 pr_datasz; -}; - -struct memelfnote { - const char *name; - int type; - unsigned int datasz; - void *data; -}; - -struct elf_thread_core_info { - struct elf_thread_core_info *next; - struct task_struct *task; - struct elf_prstatus prstatus; - struct memelfnote notes[0]; -}; - -struct elf_note_info { - struct elf_thread_core_info *thread; - struct memelfnote psinfo; - struct memelfnote signote; - struct memelfnote auxv; - struct memelfnote files; - siginfo_t csigdata; - size_t size; - int thread_notes; -}; - -struct iomap_swapfile_info { - struct iomap iomap; - struct swap_info_struct *sis; - uint64_t lowest_ppage; - uint64_t highest_ppage; - long unsigned int nr_pages; - int nr_extents; - struct file *file; -}; - -struct kernfs_fs_context { - struct kernfs_root *root; - void *ns_tag; - long unsigned int magic; - bool new_sb_created; -}; - -struct ext4_extent_idx { - __le32 ei_block; - __le32 ei_leaf_lo; - __le16 ei_leaf_hi; - __u16 ei_unused; -}; - -struct ext4_extent_header { - __le16 eh_magic; - __le16 eh_entries; - __le16 eh_max; - __le16 eh_depth; - __le32 eh_generation; -}; - -struct ext4_ext_path { - ext4_fsblk_t p_block; - __u16 p_depth; - __u16 p_maxdepth; - struct ext4_extent *p_ext; - struct ext4_extent_idx *p_idx; - struct ext4_extent_header *p_hdr; - struct buffer_head *p_bh; -}; - -enum { - attr_noop = 0, - attr_delayed_allocation_blocks = 1, - attr_session_write_kbytes = 2, - attr_lifetime_write_kbytes = 3, - attr_reserved_clusters = 4, - attr_sra_exceeded_retry_limit = 5, - attr_inode_readahead = 6, - attr_trigger_test_error = 7, - attr_first_error_time = 8, - attr_last_error_time = 9, - attr_clusters_in_group = 10, - attr_mb_order = 11, - attr_feature___2 = 12, - attr_pointer_pi = 13, - attr_pointer_ui___2 = 14, - attr_pointer_ul = 15, - attr_pointer_u64 = 16, - attr_pointer_u8 = 17, - attr_pointer_string = 18, - attr_pointer_atomic = 19, - attr_journal_task = 20, -}; - -enum { - ptr_explicit = 0, - ptr_ext4_sb_info_offset = 1, - ptr_ext4_super_block_offset = 2, -}; - -struct ext4_attr { - struct attribute attr; - short int attr_id; - short int attr_ptr; - short unsigned int attr_size; - union { - int offset; - void *explicit_ptr; - } u; -}; - -struct jbd2_journal_block_tail { - __be32 t_checksum; -}; - -struct trace_event_raw_jbd2_checkpoint { - struct trace_entry ent; - dev_t dev; - int result; - char __data[0]; -}; - -struct trace_event_raw_jbd2_commit { - struct trace_entry ent; - dev_t dev; - char sync_commit; - tid_t transaction; - char __data[0]; -}; - -struct trace_event_raw_jbd2_end_commit { - struct trace_entry ent; - dev_t dev; - char sync_commit; - tid_t transaction; - tid_t head; - char __data[0]; -}; - -struct trace_event_raw_jbd2_submit_inode_data { - struct trace_entry ent; - dev_t dev; - ino_t ino; - char __data[0]; -}; - -struct trace_event_raw_jbd2_handle_start_class { - struct trace_entry ent; - dev_t dev; - tid_t tid; - unsigned int type; - unsigned int line_no; - int requested_blocks; - char __data[0]; -}; - -struct trace_event_raw_jbd2_handle_extend { - struct trace_entry ent; - dev_t dev; - tid_t tid; - unsigned int type; - unsigned int line_no; - int buffer_credits; - int requested_blocks; - char __data[0]; -}; - -struct trace_event_raw_jbd2_handle_stats { - struct trace_entry ent; - dev_t dev; - tid_t tid; - unsigned int type; - unsigned int line_no; - int interval; - int sync; - int requested_blocks; - int dirtied_blocks; - char __data[0]; -}; - -struct trace_event_raw_jbd2_run_stats { - struct trace_entry ent; - dev_t dev; - tid_t tid; - long unsigned int wait; - long unsigned int request_delay; - long unsigned int running; - long unsigned int locked; - long unsigned int flushing; - long unsigned int logging; - __u32 handle_count; - __u32 blocks; - __u32 blocks_logged; - char __data[0]; -}; - -struct trace_event_raw_jbd2_checkpoint_stats { - struct trace_entry ent; - dev_t dev; - tid_t tid; - long unsigned int chp_time; - __u32 forced_to_close; - __u32 written; - __u32 dropped; - char __data[0]; -}; - -struct trace_event_raw_jbd2_update_log_tail { - struct trace_entry ent; - dev_t dev; - tid_t tail_sequence; - tid_t first_tid; - long unsigned int block_nr; - long unsigned int freed; - char __data[0]; -}; - -struct trace_event_raw_jbd2_write_superblock { - struct trace_entry ent; - dev_t dev; - blk_opf_t write_flags; - char __data[0]; -}; - -struct trace_event_raw_jbd2_lock_buffer_stall { - struct trace_entry ent; - dev_t dev; - long unsigned int stall_ms; - char __data[0]; -}; - -struct trace_event_raw_jbd2_journal_shrink { - struct trace_entry ent; - dev_t dev; - long unsigned int nr_to_scan; - long unsigned int count; - char __data[0]; -}; - -struct trace_event_raw_jbd2_shrink_scan_exit { - struct trace_entry ent; - dev_t dev; - long unsigned int nr_to_scan; - long unsigned int nr_shrunk; - long unsigned int count; - char __data[0]; -}; - -struct trace_event_raw_jbd2_shrink_checkpoint_list { - struct trace_entry ent; - dev_t dev; - tid_t first_tid; - tid_t tid; - tid_t last_tid; - long unsigned int nr_freed; - tid_t next_tid; - char __data[0]; -}; - -struct trace_event_data_offsets_jbd2_checkpoint {}; - -struct trace_event_data_offsets_jbd2_commit {}; - -struct trace_event_data_offsets_jbd2_end_commit {}; - -struct trace_event_data_offsets_jbd2_submit_inode_data {}; - -struct trace_event_data_offsets_jbd2_handle_start_class {}; - -struct trace_event_data_offsets_jbd2_handle_extend {}; - -struct trace_event_data_offsets_jbd2_handle_stats {}; - -struct trace_event_data_offsets_jbd2_run_stats {}; - -struct trace_event_data_offsets_jbd2_checkpoint_stats {}; - -struct trace_event_data_offsets_jbd2_update_log_tail {}; - -struct trace_event_data_offsets_jbd2_write_superblock {}; - -struct trace_event_data_offsets_jbd2_lock_buffer_stall {}; - -struct trace_event_data_offsets_jbd2_journal_shrink {}; - -struct trace_event_data_offsets_jbd2_shrink_scan_exit {}; - -struct trace_event_data_offsets_jbd2_shrink_checkpoint_list {}; - -typedef void (*btf_trace_jbd2_checkpoint)(void *, journal_t *, int); - -typedef void (*btf_trace_jbd2_start_commit)(void *, journal_t *, transaction_t *); - -typedef void (*btf_trace_jbd2_commit_locking)(void *, journal_t *, transaction_t *); - -typedef void (*btf_trace_jbd2_commit_flushing)(void *, journal_t *, transaction_t *); - -typedef void (*btf_trace_jbd2_commit_logging)(void *, journal_t *, transaction_t *); - -typedef void (*btf_trace_jbd2_drop_transaction)(void *, journal_t *, transaction_t *); - -typedef void (*btf_trace_jbd2_end_commit)(void *, journal_t *, transaction_t *); - -typedef void (*btf_trace_jbd2_submit_inode_data)(void *, struct inode *); - -typedef void (*btf_trace_jbd2_handle_start)(void *, dev_t, tid_t, unsigned int, unsigned int, int); - -typedef void (*btf_trace_jbd2_handle_restart)(void *, dev_t, tid_t, unsigned int, unsigned int, int); - -typedef void (*btf_trace_jbd2_handle_extend)(void *, dev_t, tid_t, unsigned int, unsigned int, int, int); - -typedef void (*btf_trace_jbd2_handle_stats)(void *, dev_t, tid_t, unsigned int, unsigned int, int, int, int, int); - -typedef void (*btf_trace_jbd2_run_stats)(void *, dev_t, tid_t, struct transaction_run_stats_s *); - -typedef void (*btf_trace_jbd2_checkpoint_stats)(void *, dev_t, tid_t, struct transaction_chp_stats_s *); - -typedef void (*btf_trace_jbd2_update_log_tail)(void *, journal_t *, tid_t, long unsigned int, long unsigned int); - -typedef void (*btf_trace_jbd2_write_superblock)(void *, journal_t *, blk_opf_t); - -typedef void (*btf_trace_jbd2_lock_buffer_stall)(void *, dev_t, long unsigned int); - -typedef void (*btf_trace_jbd2_shrink_count)(void *, journal_t *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_jbd2_shrink_scan_enter)(void *, journal_t *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_jbd2_shrink_scan_exit)(void *, journal_t *, long unsigned int, long unsigned int, long unsigned int); - -typedef void (*btf_trace_jbd2_shrink_checkpoint_list)(void *, journal_t *, tid_t, tid_t, tid_t, long unsigned int, tid_t); - -struct jbd2_stats_proc_session { - journal_t *journal; - struct transaction_stats_s *stats; - int start; - int max; -}; - -struct nfs_fscache_inode_auxdata { - s64 mtime_sec; - s64 mtime_nsec; - s64 ctime_sec; - s64 ctime_nsec; - u64 change_attr; -}; - -struct nfs_netfs_io_data { - refcount_t refcount; - struct netfs_io_subrequest *sreq; - atomic64_t transferred; - int error; -}; - -enum nfs3_createmode { - NFS3_CREATE_UNCHECKED = 0, - NFS3_CREATE_GUARDED = 1, - NFS3_CREATE_EXCLUSIVE = 2, -}; - -enum nfs3_ftype { - NF3NON = 0, - NF3REG = 1, - NF3DIR = 2, - NF3BLK = 3, - NF3CHR = 4, - NF3LNK = 5, - NF3SOCK = 6, - NF3FIFO = 7, - NF3BAD = 8, -}; - -typedef struct svc_fh svc_fh; - -struct nfsd_fhandle { - struct svc_fh fh; -}; - -struct nfsd3_sattrargs { - struct svc_fh fh; - struct iattr attrs; - int check_guard; - struct timespec64 guardtime; -}; - -struct nfsd3_diropargs { - struct svc_fh fh; - char *name; - unsigned int len; -}; - -struct nfsd3_accessargs { - struct svc_fh fh; - __u32 access; -}; - -struct nfsd3_readargs { - struct svc_fh fh; - __u64 offset; - __u32 count; -}; - -struct nfsd3_writeargs { - svc_fh fh; - __u64 offset; - __u32 count; - int stable; - __u32 len; - struct xdr_buf payload; -}; - -struct nfsd3_createargs { - struct svc_fh fh; - char *name; - unsigned int len; - int createmode; - struct iattr attrs; - __be32 *verf; -}; - -struct nfsd3_mknodargs { - struct svc_fh fh; - char *name; - unsigned int len; - __u32 ftype; - __u32 major; - __u32 minor; - struct iattr attrs; -}; - -struct nfsd3_renameargs { - struct svc_fh ffh; - char *fname; - unsigned int flen; - struct svc_fh tfh; - char *tname; - unsigned int tlen; -}; - -struct nfsd3_linkargs { - struct svc_fh ffh; - struct svc_fh tfh; - char *tname; - unsigned int tlen; -}; - -struct nfsd3_symlinkargs { - struct svc_fh ffh; - char *fname; - unsigned int flen; - char *tname; - unsigned int tlen; - struct iattr attrs; - struct kvec first; -}; - -struct nfsd3_readdirargs { - struct svc_fh fh; - __u64 cookie; - __u32 count; - __be32 *verf; -}; - -struct nfsd3_commitargs { - struct svc_fh fh; - __u64 offset; - __u32 count; -}; - -struct nfsd3_attrstat { - __be32 status; - struct svc_fh fh; - struct kstat stat; -}; - -struct nfsd3_diropres { - __be32 status; - struct svc_fh dirfh; - struct svc_fh fh; -}; - -struct nfsd3_accessres { - __be32 status; - struct svc_fh fh; - __u32 access; - struct kstat stat; -}; - -struct nfsd3_readlinkres { - __be32 status; - struct svc_fh fh; - __u32 len; - struct page **pages; -}; - -struct nfsd3_readres { - __be32 status; - struct svc_fh fh; - long unsigned int count; - __u32 eof; - struct page **pages; -}; - -struct nfsd3_writeres { - __be32 status; - struct svc_fh fh; - long unsigned int count; - int committed; - __be32 verf[2]; -}; - -struct nfsd3_renameres { - __be32 status; - struct svc_fh ffh; - struct svc_fh tfh; -}; - -struct nfsd3_linkres { - __be32 status; - struct svc_fh tfh; - struct svc_fh fh; -}; - -struct nfsd3_readdirres { - __be32 status; - struct svc_fh fh; - __be32 verf[2]; - struct xdr_stream xdr; - struct xdr_buf dirlist; - struct svc_fh scratch; - struct readdir_cd common; - unsigned int cookie_offset; - struct svc_rqst *rqstp; -}; - -struct nfsd3_fsstatres { - __be32 status; - struct kstatfs stats; - __u32 invarsec; -}; - -struct nfsd3_fsinfores { - __be32 status; - __u32 f_rtmax; - __u32 f_rtpref; - __u32 f_rtmult; - __u32 f_wtmax; - __u32 f_wtpref; - __u32 f_wtmult; - __u32 f_dtpref; - __u64 f_maxfilesize; - __u32 f_properties; -}; - -struct nfsd3_pathconfres { - __be32 status; - __u32 p_link_max; - __u32 p_name_max; - __u32 p_no_trunc; - __u32 p_chown_restricted; - __u32 p_case_insensitive; - __u32 p_case_preserving; -}; - -struct nfsd3_commitres { - __be32 status; - struct svc_fh fh; - __be32 verf[2]; -}; - -struct smb2_create_rsp { - struct smb2_hdr hdr; - __le16 StructureSize; - __u8 OplockLevel; - __u8 Flags; - __le32 CreateAction; - __le64 CreationTime; - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le64 AllocationSize; - __le64 EndofFile; - __le32 FileAttributes; - __le32 Reserved2; - __u64 PersistentFileId; - __u64 VolatileFileId; - __le32 CreateContextsOffset; - __le32 CreateContextsLength; - __u8 Buffer[0]; -}; - -struct smb2_query_info_rsp { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 OutputBufferOffset; - __le32 OutputBufferLength; - __u8 Buffer[0]; -}; - -struct create_posix_rsp { - u32 nlink; - u32 reparse_tag; - u32 mode; - struct smb_sid owner; - struct smb_sid group; -}; - -struct cached_dirent { - struct list_head entry; - char *name; - int namelen; - loff_t pos; - struct cifs_fattr fattr; -}; - -struct cached_dir_dentry { - struct list_head entry; - struct dentry *dentry; -}; - -struct smb2_ioctl_rsp { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 Reserved; - __le32 CtlCode; - __u64 PersistentFileId; - __u64 VolatileFileId; - __le32 InputOffset; - __le32 InputCount; - __le32 OutputOffset; - __le32 OutputCount; - __le32 Flags; - __le32 Reserved2; - __u8 Buffer[0]; -}; - -struct smb2_file_rename_info { - __u8 ReplaceIfExists; - __u8 Reserved[7]; - __u64 RootDirectory; - __le32 FileNameLength; - char FileName[0]; -} __attribute__((packed)); - -struct smb2_file_link_info { - __u8 ReplaceIfExists; - __u8 Reserved[7]; - __u64 RootDirectory; - __le32 FileNameLength; - char FileName[0]; -} __attribute__((packed)); - -struct smb2_file_full_ea_info { - __le32 next_entry_offset; - __u8 flags; - __u8 ea_name_length; - __le16 ea_value_length; - char ea_data[0]; -}; - -struct smb2_compound_vars { - struct cifs_open_parms oparms; - struct kvec rsp_iov[7]; - struct smb_rqst rqst[7]; - struct kvec open_iov[9]; - struct kvec qi_iov; - struct kvec io_iov[2]; - struct kvec si_iov[3]; - struct kvec close_iov; - struct smb2_file_rename_info rename_info; - struct smb2_file_link_info link_info; - struct kvec ea_iov; -}; - -enum smb2_compound_ops { - SMB2_OP_SET_DELETE = 1, - SMB2_OP_SET_INFO = 2, - SMB2_OP_QUERY_INFO = 3, - SMB2_OP_QUERY_DIR = 4, - SMB2_OP_MKDIR = 5, - SMB2_OP_RENAME = 6, - SMB2_OP_DELETE = 7, - SMB2_OP_HARDLINK = 8, - SMB2_OP_SET_EOF = 9, - SMB2_OP_RMDIR = 10, - SMB2_OP_POSIX_QUERY_INFO = 11, - SMB2_OP_SET_REPARSE = 12, - SMB2_OP_GET_REPARSE = 13, - SMB2_OP_QUERY_WSL_EA = 14, -}; - -struct wsl_query_ea { - __le32 next; - __u8 name_len; - __u8 name[7]; -}; - -enum IO_REPARSE_TAG { - IO_REPARSE_TAG_SYMBOLIC_LINK = 0, - IO_REPARSE_TAG_NAME_SURROGATE = 536870912, - IO_REPARSE_TAG_MICROSOFT = 2147483648, - IO_REPARSE_TAG_MOUNT_POINT = 2684354563, - IO_REPARSE_TAG_SYMLINK = 2684354572, - IO_REPARSE_TAG_HSM = 3221225476, - IO_REPARSE_TAG_SIS = 2147483655, - IO_REPARSE_TAG_DEDUP = 2147483667, - IO_REPARSE_TAG_COMPRESS = 2147483671, - IO_REPARSE_TAG_DFS = 2147483658, - IO_REPARSE_TAG_FILTER_MANAGER = 2147483659, - IO_REPARSE_TAG_IFSTEST_CONGRUENT = 9, - IO_REPARSE_TAG_ARKIVIO = 12, - IO_REPARSE_TAG_SOLUTIONSOFT = 536870925, - IO_REPARSE_TAG_COMMVAULT = 14, - IO_REPARSE_TAG_CLOUD = 2415919130, - IO_REPARSE_TAG_CLOUD_1 = 2415923226, - IO_REPARSE_TAG_CLOUD_2 = 2415927322, - IO_REPARSE_TAG_CLOUD_3 = 2415931418, - IO_REPARSE_TAG_CLOUD_4 = 2415935514, - IO_REPARSE_TAG_CLOUD_5 = 2415939610, - IO_REPARSE_TAG_CLOUD_6 = 2415943706, - IO_REPARSE_TAG_CLOUD_7 = 2415947802, - IO_REPARSE_TAG_CLOUD_8 = 2415951898, - IO_REPARSE_TAG_CLOUD_9 = 2415955994, - IO_REPARSE_TAG_CLOUD_A = 2415960090, - IO_REPARSE_TAG_CLOUD_B = 2415964186, - IO_REPARSE_TAG_CLOUD_C = 2415968282, - IO_REPARSE_TAG_CLOUD_D = 2415972378, - IO_REPARSE_TAG_CLOUD_E = 2415976474, - IO_REPARSE_TAG_CLOUD_F = 2415980570, -}; - -struct REPARSE_DATA_BUFFER { - __le32 ReparseTag; - __le16 ReparseDataLength; - __le16 Reserved; - union { - struct { - __le16 SubstituteNameOffset; - __le16 SubstituteNameLength; - __le16 PrintNameOffset; - __le16 PrintNameLength; - __le16 PathBuffer[0]; - } MountPointReparseBuffer; - struct { - __le16 SubstituteNameOffset; - __le16 SubstituteNameLength; - __le16 PrintNameOffset; - __le16 PrintNameLength; - __le32 Flags; - __le16 PathBuffer[0]; - } SymbolicLinkReparseBuffer; - struct { - __le32 WofVersion; - __le32 WofProvider; - __le32 ProviderVer; - __le32 CompressionFormat; - } CompressReparseBuffer; - struct { - u8 DataBuffer[1]; - } GenericReparseBuffer; - }; -}; - -enum REPARSE_SIGN { - REPARSE_NONE = 0, - REPARSE_COMPRESSED = 1, - REPARSE_DEDUPLICATED = 2, - REPARSE_LINK = 3, -}; - -struct autofs_packet_hdr { - int proto_version; - int type; -}; - -struct autofs_packet_missing { - struct autofs_packet_hdr hdr; - autofs_wqt_t wait_queue_token; - int len; - char name[256]; -}; - -struct autofs_packet_expire { - struct autofs_packet_hdr hdr; - int len; - char name[256]; -}; - -enum autofs_notify { - NFY_NONE = 0, - NFY_MOUNT = 1, - NFY_EXPIRE = 2, -}; - -struct autofs_packet_expire_multi { - struct autofs_packet_hdr hdr; - autofs_wqt_t wait_queue_token; - int len; - char name[256]; -}; - -union autofs_packet_union { - struct autofs_packet_hdr hdr; - struct autofs_packet_missing missing; - struct autofs_packet_expire expire; - struct autofs_packet_expire_multi expire_multi; -}; - -struct autofs_v5_packet { - struct autofs_packet_hdr hdr; - autofs_wqt_t wait_queue_token; - __u32 dev; - __u64 ino; - __u32 uid; - __u32 gid; - __u32 pid; - __u32 tgid; - __u32 len; - char name[256]; -}; - -typedef struct autofs_v5_packet autofs_packet_missing_indirect_t; - -typedef struct autofs_v5_packet autofs_packet_expire_indirect_t; - -typedef struct autofs_v5_packet autofs_packet_missing_direct_t; - -typedef struct autofs_v5_packet autofs_packet_expire_direct_t; - -union autofs_v5_packet_union { - struct autofs_packet_hdr hdr; - struct autofs_v5_packet v5_packet; - autofs_packet_missing_indirect_t missing_indirect; - autofs_packet_expire_indirect_t expire_indirect; - autofs_packet_missing_direct_t missing_direct; - autofs_packet_expire_direct_t expire_direct; -}; - -struct cuse_init_in { - uint32_t major; - uint32_t minor; - uint32_t unused; - uint32_t flags; -}; - -struct cuse_init_out { - uint32_t major; - uint32_t minor; - uint32_t unused; - uint32_t flags; - uint32_t max_read; - uint32_t max_write; - uint32_t dev_major; - uint32_t dev_minor; - uint32_t spare[10]; -}; - -struct fuse_io_priv { - struct kref refcnt; - int async; - spinlock_t lock; - unsigned int reqs; - ssize_t bytes; - size_t size; - __u64 offset; - bool write; - bool should_dirty; - int err; - struct kiocb *iocb; - struct completion *done; - bool blocking; -}; - -struct cuse_conn { - struct list_head list; - struct fuse_mount fm; - struct fuse_conn fc; - struct cdev *cdev; - struct device *dev; - bool unrestricted_ioctl; -}; - -struct cuse_devinfo { - const char *name; -}; - -struct cuse_init_args { - struct fuse_args_pages ap; - struct cuse_init_in in; - struct cuse_init_out out; - struct page *page; - struct fuse_page_desc desc; -}; - -struct xfs_da3_node_hdr { - struct xfs_da3_blkinfo info; - __be16 __count; - __be16 __level; - __be32 __pad32; -}; - -typedef struct xfs_da_intnode xfs_da_intnode_t; - -struct xfs_da3_intnode { - struct xfs_da3_node_hdr hdr; - struct xfs_da_node_entry __btree[0]; -}; - -struct xfs_dsymlink_hdr { - __be32 sl_magic; - __be32 sl_offset; - __be32 sl_bytes; - __be32 sl_crc; - uuid_t sl_uuid; - __be64 sl_owner; - __be64 sl_blkno; - __be64 sl_lsn; -}; - -enum layout_break_reason { - BREAK_WRITE = 0, - BREAK_UNMAP = 1, -}; - -struct extent_inode_elem; - -struct prelim_ref { - struct rb_node rbnode; - u64 root_id; - struct btrfs_key key_for_search; - u8 level; - int count; - struct extent_inode_elem *inode_list; - u64 parent; - u64 wanted_disk_byte; -}; - -struct btrfs_device_info { - struct btrfs_device *dev; - u64 dev_offset; - u64 max_avail; - u64 total_avail; -}; - -struct raid56_bio_trace_info { - u64 devid; - u32 offset; - u8 stripe_nr; -}; - -enum btrfs_extent_allocation_policy { - BTRFS_EXTENT_ALLOC_CLUSTERED = 0, - BTRFS_EXTENT_ALLOC_ZONED = 1, -}; - -struct find_free_extent_ctl { - u64 ram_bytes; - u64 num_bytes; - u64 min_alloc_size; - u64 empty_size; - u64 flags; - int delalloc; - u64 search_start; - u64 empty_cluster; - struct btrfs_free_cluster *last_ptr; - bool use_cluster; - bool have_caching_bg; - bool orig_have_caching_bg; - bool for_treelog; - bool for_data_reloc; - int index; - int loop; - bool retry_uncached; - int cached; - u64 max_extent_size; - u64 total_free_space; - u64 found_offset; - u64 hint_byte; - enum btrfs_extent_allocation_policy policy; - bool hinted; - enum btrfs_block_group_size_class size_class; -}; - -struct trace_event_raw_btrfs_transaction_commit { - struct trace_entry ent; - u8 fsid[16]; - u64 generation; - u64 root_objectid; - char __data[0]; -}; - -struct trace_event_raw_btrfs__inode { - struct trace_entry ent; - u8 fsid[16]; - u64 ino; - u64 blocks; - u64 disk_i_size; - u64 generation; - u64 last_trans; - u64 logged_trans; - u64 root_objectid; - char __data[0]; -}; - -struct trace_event_raw_btrfs_get_extent { - struct trace_entry ent; - u8 fsid[16]; - u64 root_objectid; - u64 ino; - u64 start; - u64 len; - u32 flags; - int refs; - char __data[0]; -}; - -struct trace_event_raw_btrfs_handle_em_exist { - struct trace_entry ent; - u8 fsid[16]; - u64 e_start; - u64 e_len; - u64 map_start; - u64 map_len; - u64 start; - u64 len; - char __data[0]; -}; - -struct trace_event_raw_btrfs__file_extent_item_regular { - struct trace_entry ent; - u8 fsid[16]; - u64 root_obj; - u64 ino; - loff_t isize; - u64 disk_isize; - u64 num_bytes; - u64 ram_bytes; - u64 disk_bytenr; - u64 disk_num_bytes; - u64 extent_offset; - u8 extent_type; - u8 compression; - u64 extent_start; - u64 extent_end; - char __data[0]; -}; - -struct trace_event_raw_btrfs__file_extent_item_inline { - struct trace_entry ent; - u8 fsid[16]; - u64 root_obj; - u64 ino; - loff_t isize; - u64 disk_isize; - u8 extent_type; - u8 compression; - u64 extent_start; - u64 extent_end; - char __data[0]; -}; - -struct trace_event_raw_btrfs__ordered_extent { - struct trace_entry ent; - u8 fsid[16]; - u64 ino; - u64 file_offset; - u64 start; - u64 len; - u64 disk_len; - u64 bytes_left; - long unsigned int flags; - int compress_type; - int refs; - u64 root_objectid; - u64 truncated_len; - char __data[0]; -}; - -struct trace_event_raw_btrfs_finish_ordered_extent { - struct trace_entry ent; - u8 fsid[16]; - u64 ino; - u64 start; - u64 len; - bool uptodate; - u64 root_objectid; - char __data[0]; -}; - -struct trace_event_raw_btrfs__writepage { - struct trace_entry ent; - u8 fsid[16]; - u64 ino; - long unsigned int index; - long int nr_to_write; - long int pages_skipped; - loff_t range_start; - loff_t range_end; - char for_kupdate; - char for_reclaim; - char range_cyclic; - long unsigned int writeback_index; - u64 root_objectid; - char __data[0]; -}; - -struct trace_event_raw_btrfs_writepage_end_io_hook { - struct trace_entry ent; - u8 fsid[16]; - u64 ino; - u64 start; - u64 end; - int uptodate; - u64 root_objectid; - char __data[0]; -}; - -struct trace_event_raw_btrfs_sync_file { - struct trace_entry ent; - u8 fsid[16]; - u64 ino; - u64 parent; - int datasync; - u64 root_objectid; - char __data[0]; -}; - -struct trace_event_raw_btrfs_sync_fs { - struct trace_entry ent; - u8 fsid[16]; - int wait; - char __data[0]; -}; - -struct trace_event_raw_btrfs_add_block_group { - struct trace_entry ent; - u8 fsid[16]; - u64 offset; - u64 size; - u64 flags; - u64 bytes_used; - u64 bytes_super; - int create; - char __data[0]; -}; - -struct trace_event_raw_btrfs_delayed_tree_ref { - struct trace_entry ent; - u8 fsid[16]; - u64 bytenr; - u64 num_bytes; - int action; - u64 parent; - u64 ref_root; - int level; - int type; - u64 seq; - char __data[0]; -}; - -struct trace_event_raw_btrfs_delayed_data_ref { - struct trace_entry ent; - u8 fsid[16]; - u64 bytenr; - u64 num_bytes; - int action; - u64 parent; - u64 ref_root; - u64 owner; - u64 offset; - int type; - u64 seq; - char __data[0]; -}; - -struct trace_event_raw_btrfs_delayed_ref_head { - struct trace_entry ent; - u8 fsid[16]; - u64 bytenr; - u64 num_bytes; - int action; - int is_data; - char __data[0]; -}; - -struct trace_event_raw_btrfs__chunk { - struct trace_entry ent; - u8 fsid[16]; - int num_stripes; - u64 type; - int sub_stripes; - u64 offset; - u64 size; - u64 root_objectid; - char __data[0]; -}; - -struct trace_event_raw_btrfs_cow_block { - struct trace_entry ent; - u8 fsid[16]; - u64 root_objectid; - u64 buf_start; - int refs; - u64 cow_start; - int buf_level; - int cow_level; - char __data[0]; -}; - -struct trace_event_raw_btrfs_space_reservation { - struct trace_entry ent; - u8 fsid[16]; - u32 __data_loc_type; - u64 val; - u64 bytes; - int reserve; - char __data[0]; -}; - -struct trace_event_raw_btrfs_trigger_flush { - struct trace_entry ent; - u8 fsid[16]; - u64 flags; - u64 bytes; - int flush; - u32 __data_loc_reason; - char __data[0]; -}; - -struct trace_event_raw_btrfs_flush_space { - struct trace_entry ent; - u8 fsid[16]; - u64 flags; - u64 num_bytes; - int state; - int ret; - bool for_preempt; - char __data[0]; -}; - -struct trace_event_raw_btrfs__reserved_extent { - struct trace_entry ent; - u8 fsid[16]; - u64 start; - u64 len; - char __data[0]; -}; - -struct trace_event_raw_find_free_extent { - struct trace_entry ent; - u8 fsid[16]; - u64 root_objectid; - u64 num_bytes; - u64 empty_size; - u64 flags; - char __data[0]; -}; - -struct trace_event_raw_find_free_extent_search_loop { - struct trace_entry ent; - u8 fsid[16]; - u64 root_objectid; - u64 num_bytes; - u64 empty_size; - u64 flags; - u64 loop; - char __data[0]; -}; - -struct trace_event_raw_find_free_extent_have_block_group { - struct trace_entry ent; - u8 fsid[16]; - u64 root_objectid; - u64 num_bytes; - u64 empty_size; - u64 flags; - u64 loop; - bool hinted; - u64 bg_start; - u64 bg_flags; - char __data[0]; -}; - -struct trace_event_raw_btrfs__reserve_extent { - struct trace_entry ent; - u8 fsid[16]; - u64 bg_objectid; - u64 flags; - int bg_size_class; - u64 start; - u64 len; - u64 loop; - bool hinted; - int size_class; - char __data[0]; -}; - -struct trace_event_raw_btrfs_find_cluster { - struct trace_entry ent; - u8 fsid[16]; - u64 bg_objectid; - u64 flags; - u64 start; - u64 bytes; - u64 empty_size; - u64 min_bytes; - char __data[0]; -}; - -struct trace_event_raw_btrfs_failed_cluster_setup { - struct trace_entry ent; - u8 fsid[16]; - u64 bg_objectid; - char __data[0]; -}; - -struct trace_event_raw_btrfs_setup_cluster { - struct trace_entry ent; - u8 fsid[16]; - u64 bg_objectid; - u64 flags; - u64 start; - u64 max_size; - u64 size; - int bitmap; - char __data[0]; -}; - -struct trace_event_raw_alloc_extent_state { - struct trace_entry ent; - const struct extent_state *state; - long unsigned int mask; - const void *ip; - char __data[0]; -}; - -struct trace_event_raw_free_extent_state { - struct trace_entry ent; - const struct extent_state *state; - const void *ip; - char __data[0]; -}; - -struct trace_event_raw_btrfs__work { - struct trace_entry ent; - u8 fsid[16]; - const void *work; - const void *wq; - const void *func; - const void *ordered_func; - const void *normal_work; - char __data[0]; -}; - -struct trace_event_raw_btrfs__work__done { - struct trace_entry ent; - u8 fsid[16]; - const void *wtag; - char __data[0]; -}; - -struct trace_event_raw_btrfs_workqueue { - struct trace_entry ent; - u8 fsid[16]; - const void *wq; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_btrfs_workqueue_done { - struct trace_entry ent; - u8 fsid[16]; - const void *wq; - char __data[0]; -}; - -struct trace_event_raw_btrfs__qgroup_rsv_data { - struct trace_entry ent; - u8 fsid[16]; - u64 rootid; - u64 ino; - u64 start; - u64 len; - u64 reserved; - int op; - char __data[0]; -}; - -struct trace_event_raw_btrfs_qgroup_extent { - struct trace_entry ent; - u8 fsid[16]; - u64 bytenr; - u64 num_bytes; - char __data[0]; -}; - -struct trace_event_raw_qgroup_num_dirty_extents { - struct trace_entry ent; - u8 fsid[16]; - u64 transid; - u64 num_dirty_extents; - char __data[0]; -}; - -struct trace_event_raw_btrfs_qgroup_account_extent { - struct trace_entry ent; - u8 fsid[16]; - u64 transid; - u64 bytenr; - u64 num_bytes; - u64 nr_old_roots; - u64 nr_new_roots; - char __data[0]; -}; - -struct trace_event_raw_qgroup_update_counters { - struct trace_entry ent; - u8 fsid[16]; - u64 qgid; - u64 old_rfer; - u64 old_excl; - u64 cur_old_count; - u64 cur_new_count; - char __data[0]; -}; - -struct trace_event_raw_qgroup_update_reserve { - struct trace_entry ent; - u8 fsid[16]; - u64 qgid; - u64 cur_reserved; - s64 diff; - int type; - char __data[0]; -}; - -struct trace_event_raw_qgroup_meta_reserve { - struct trace_entry ent; - u8 fsid[16]; - u64 refroot; - s64 diff; - int type; - char __data[0]; -}; - -struct trace_event_raw_qgroup_meta_convert { - struct trace_entry ent; - u8 fsid[16]; - u64 refroot; - s64 diff; - char __data[0]; -}; - -struct trace_event_raw_qgroup_meta_free_all_pertrans { - struct trace_entry ent; - u8 fsid[16]; - u64 refroot; - s64 diff; - int type; - char __data[0]; -}; - -struct trace_event_raw_btrfs__prelim_ref { - struct trace_entry ent; - u8 fsid[16]; - u64 root_id; - u64 objectid; - u8 type; - u64 offset; - int level; - int old_count; - u64 parent; - u64 bytenr; - int mod_count; - u64 tree_size; - char __data[0]; -}; - -struct trace_event_raw_btrfs_inode_mod_outstanding_extents { - struct trace_entry ent; - u8 fsid[16]; - u64 root_objectid; - u64 ino; - int mod; - unsigned int outstanding; - char __data[0]; -}; - -struct trace_event_raw_btrfs__block_group { - struct trace_entry ent; - u8 fsid[16]; - u64 bytenr; - u64 len; - u64 used; - u64 flags; - char __data[0]; -}; - -struct trace_event_raw_btrfs_set_extent_bit { - struct trace_entry ent; - u8 fsid[16]; - unsigned int owner; - u64 ino; - u64 rootid; - u64 start; - u64 len; - unsigned int set_bits; - char __data[0]; -}; - -struct trace_event_raw_btrfs_clear_extent_bit { - struct trace_entry ent; - u8 fsid[16]; - unsigned int owner; - u64 ino; - u64 rootid; - u64 start; - u64 len; - unsigned int clear_bits; - char __data[0]; -}; - -struct trace_event_raw_btrfs_convert_extent_bit { - struct trace_entry ent; - u8 fsid[16]; - unsigned int owner; - u64 ino; - u64 rootid; - u64 start; - u64 len; - unsigned int set_bits; - unsigned int clear_bits; - char __data[0]; -}; - -struct trace_event_raw_btrfs_dump_space_info { - struct trace_entry ent; - u8 fsid[16]; - u64 flags; - u64 total_bytes; - u64 bytes_used; - u64 bytes_pinned; - u64 bytes_reserved; - u64 bytes_may_use; - u64 bytes_readonly; - u64 reclaim_size; - int clamp; - u64 global_reserved; - u64 trans_reserved; - u64 delayed_refs_reserved; - u64 delayed_reserved; - u64 free_chunk_space; - u64 delalloc_bytes; - u64 ordered_bytes; - char __data[0]; -}; - -struct trace_event_raw_btrfs_reserve_ticket { - struct trace_entry ent; - u8 fsid[16]; - u64 flags; - u64 bytes; - u64 start_ns; - int flush; - int error; - char __data[0]; -}; - -struct trace_event_raw_btrfs_sleep_tree_lock { - struct trace_entry ent; - u8 fsid[16]; - u64 block; - u64 generation; - u64 start_ns; - u64 end_ns; - u64 diff_ns; - u64 owner; - int is_log_tree; - char __data[0]; -}; - -struct trace_event_raw_btrfs_locking_events { - struct trace_entry ent; - u8 fsid[16]; - u64 block; - u64 generation; - u64 owner; - int is_log_tree; - char __data[0]; -}; - -struct trace_event_raw_btrfs__space_info_update { - struct trace_entry ent; - u8 fsid[16]; - u64 type; - u64 old; - s64 diff; - char __data[0]; -}; - -struct trace_event_raw_btrfs_raid56_bio { - struct trace_entry ent; - u8 fsid[16]; - u64 full_stripe; - u64 physical; - u64 devid; - u32 offset; - u32 len; - u8 opf; - u8 total_stripes; - u8 real_stripes; - u8 nr_data; - u8 stripe_nr; - char __data[0]; -}; - -struct trace_event_raw_btrfs_insert_one_raid_extent { - struct trace_entry ent; - u8 fsid[16]; - u64 logical; - u64 length; - int num_stripes; - char __data[0]; -}; - -struct trace_event_raw_btrfs_raid_extent_delete { - struct trace_entry ent; - u8 fsid[16]; - u64 start; - u64 end; - u64 found_start; - u64 found_end; - char __data[0]; -}; - -struct trace_event_raw_btrfs_get_raid_extent_offset { - struct trace_entry ent; - u8 fsid[16]; - u64 logical; - u64 length; - u64 physical; - u64 devid; - char __data[0]; -}; - -struct trace_event_raw_btrfs_extent_map_shrinker_count { - struct trace_entry ent; - u8 fsid[16]; - long int nr; - char __data[0]; -}; - -struct trace_event_raw_btrfs_extent_map_shrinker_scan_enter { - struct trace_entry ent; - u8 fsid[16]; - long int nr_to_scan; - long int nr; - u64 last_root_id; - u64 last_ino; - char __data[0]; -}; - -struct trace_event_raw_btrfs_extent_map_shrinker_scan_exit { - struct trace_entry ent; - u8 fsid[16]; - long int nr_dropped; - long int nr; - u64 last_root_id; - u64 last_ino; - char __data[0]; -}; - -struct trace_event_raw_btrfs_extent_map_shrinker_remove_em { - struct trace_entry ent; - u8 fsid[16]; - u64 ino; - u64 root_id; - u64 start; - u64 len; - u32 flags; - char __data[0]; -}; - -struct trace_event_data_offsets_btrfs_transaction_commit {}; - -struct trace_event_data_offsets_btrfs__inode {}; - -struct trace_event_data_offsets_btrfs_get_extent {}; - -struct trace_event_data_offsets_btrfs_handle_em_exist {}; - -struct trace_event_data_offsets_btrfs__file_extent_item_regular {}; - -struct trace_event_data_offsets_btrfs__file_extent_item_inline {}; - -struct trace_event_data_offsets_btrfs__ordered_extent {}; - -struct trace_event_data_offsets_btrfs_finish_ordered_extent {}; - -struct trace_event_data_offsets_btrfs__writepage {}; - -struct trace_event_data_offsets_btrfs_writepage_end_io_hook {}; - -struct trace_event_data_offsets_btrfs_sync_file {}; - -struct trace_event_data_offsets_btrfs_sync_fs {}; - -struct trace_event_data_offsets_btrfs_add_block_group {}; - -struct trace_event_data_offsets_btrfs_delayed_tree_ref {}; - -struct trace_event_data_offsets_btrfs_delayed_data_ref {}; - -struct trace_event_data_offsets_btrfs_delayed_ref_head {}; - -struct trace_event_data_offsets_btrfs__chunk {}; - -struct trace_event_data_offsets_btrfs_cow_block {}; - -struct trace_event_data_offsets_btrfs_space_reservation { - u32 type; - const void *type_ptr_; -}; - -struct trace_event_data_offsets_btrfs_trigger_flush { - u32 reason; - const void *reason_ptr_; -}; - -struct trace_event_data_offsets_btrfs_flush_space {}; - -struct trace_event_data_offsets_btrfs__reserved_extent {}; - -struct trace_event_data_offsets_find_free_extent {}; - -struct trace_event_data_offsets_find_free_extent_search_loop {}; - -struct trace_event_data_offsets_find_free_extent_have_block_group {}; - -struct trace_event_data_offsets_btrfs__reserve_extent {}; - -struct trace_event_data_offsets_btrfs_find_cluster {}; - -struct trace_event_data_offsets_btrfs_failed_cluster_setup {}; - -struct trace_event_data_offsets_btrfs_setup_cluster {}; - -struct trace_event_data_offsets_alloc_extent_state {}; - -struct trace_event_data_offsets_free_extent_state {}; - -struct trace_event_data_offsets_btrfs__work {}; - -struct trace_event_data_offsets_btrfs__work__done {}; - -struct trace_event_data_offsets_btrfs_workqueue { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_btrfs_workqueue_done {}; - -struct trace_event_data_offsets_btrfs__qgroup_rsv_data {}; - -struct trace_event_data_offsets_btrfs_qgroup_extent {}; - -struct trace_event_data_offsets_qgroup_num_dirty_extents {}; - -struct trace_event_data_offsets_btrfs_qgroup_account_extent {}; - -struct trace_event_data_offsets_qgroup_update_counters {}; - -struct trace_event_data_offsets_qgroup_update_reserve {}; - -struct trace_event_data_offsets_qgroup_meta_reserve {}; - -struct trace_event_data_offsets_qgroup_meta_convert {}; - -struct trace_event_data_offsets_qgroup_meta_free_all_pertrans {}; - -struct trace_event_data_offsets_btrfs__prelim_ref {}; - -struct trace_event_data_offsets_btrfs_inode_mod_outstanding_extents {}; - -struct trace_event_data_offsets_btrfs__block_group {}; - -struct trace_event_data_offsets_btrfs_set_extent_bit {}; - -struct trace_event_data_offsets_btrfs_clear_extent_bit {}; - -struct trace_event_data_offsets_btrfs_convert_extent_bit {}; - -struct trace_event_data_offsets_btrfs_dump_space_info {}; - -struct trace_event_data_offsets_btrfs_reserve_ticket {}; - -struct trace_event_data_offsets_btrfs_sleep_tree_lock {}; - -struct trace_event_data_offsets_btrfs_locking_events {}; - -struct trace_event_data_offsets_btrfs__space_info_update {}; - -struct trace_event_data_offsets_btrfs_raid56_bio {}; - -struct trace_event_data_offsets_btrfs_insert_one_raid_extent {}; - -struct trace_event_data_offsets_btrfs_raid_extent_delete {}; - -struct trace_event_data_offsets_btrfs_get_raid_extent_offset {}; - -struct trace_event_data_offsets_btrfs_extent_map_shrinker_count {}; - -struct trace_event_data_offsets_btrfs_extent_map_shrinker_scan_enter {}; - -struct trace_event_data_offsets_btrfs_extent_map_shrinker_scan_exit {}; - -struct trace_event_data_offsets_btrfs_extent_map_shrinker_remove_em {}; - -typedef void (*btf_trace_btrfs_transaction_commit)(void *, const struct btrfs_fs_info *); - -typedef void (*btf_trace_btrfs_inode_new)(void *, const struct inode *); - -typedef void (*btf_trace_btrfs_inode_request)(void *, const struct inode *); - -typedef void (*btf_trace_btrfs_inode_evict)(void *, const struct inode *); - -typedef void (*btf_trace_btrfs_get_extent)(void *, const struct btrfs_root *, const struct btrfs_inode *, const struct extent_map *); - -typedef void (*btf_trace_btrfs_handle_em_exist)(void *, const struct btrfs_fs_info *, const struct extent_map *, const struct extent_map *, u64, u64); - -typedef void (*btf_trace_btrfs_get_extent_show_fi_regular)(void *, const struct btrfs_inode *, const struct extent_buffer *, const struct btrfs_file_extent_item *, u64); - -typedef void (*btf_trace_btrfs_truncate_show_fi_regular)(void *, const struct btrfs_inode *, const struct extent_buffer *, const struct btrfs_file_extent_item *, u64); - -typedef void (*btf_trace_btrfs_get_extent_show_fi_inline)(void *, const struct btrfs_inode *, const struct extent_buffer *, const struct btrfs_file_extent_item *, int, u64); - -typedef void (*btf_trace_btrfs_truncate_show_fi_inline)(void *, const struct btrfs_inode *, const struct extent_buffer *, const struct btrfs_file_extent_item *, int, u64); - -typedef void (*btf_trace_btrfs_ordered_extent_add)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); - -typedef void (*btf_trace_btrfs_ordered_extent_remove)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); - -typedef void (*btf_trace_btrfs_ordered_extent_start)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); - -typedef void (*btf_trace_btrfs_ordered_extent_put)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); - -typedef void (*btf_trace_btrfs_ordered_extent_lookup)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); - -typedef void (*btf_trace_btrfs_ordered_extent_lookup_range)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); - -typedef void (*btf_trace_btrfs_ordered_extent_lookup_first_range)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); - -typedef void (*btf_trace_btrfs_ordered_extent_lookup_for_logging)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); - -typedef void (*btf_trace_btrfs_ordered_extent_lookup_first)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); - -typedef void (*btf_trace_btrfs_ordered_extent_split)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); - -typedef void (*btf_trace_btrfs_ordered_extent_dec_test_pending)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); - -typedef void (*btf_trace_btrfs_ordered_extent_mark_finished)(void *, const struct btrfs_inode *, const struct btrfs_ordered_extent *); - -typedef void (*btf_trace_btrfs_finish_ordered_extent)(void *, const struct btrfs_inode *, u64, u64, bool); - -typedef void (*btf_trace_extent_writepage)(void *, const struct folio *, const struct inode *, const struct writeback_control *); - -typedef void (*btf_trace_btrfs_writepage_end_io_hook)(void *, const struct btrfs_inode *, u64, u64, int); - -typedef void (*btf_trace_btrfs_sync_file)(void *, const struct file *, int); - -typedef void (*btf_trace_btrfs_sync_fs)(void *, const struct btrfs_fs_info *, int); - -typedef void (*btf_trace_btrfs_add_block_group)(void *, const struct btrfs_fs_info *, const struct btrfs_block_group *, int); - -typedef void (*btf_trace_add_delayed_tree_ref)(void *, const struct btrfs_fs_info *, const struct btrfs_delayed_ref_node *); - -typedef void (*btf_trace_run_delayed_tree_ref)(void *, const struct btrfs_fs_info *, const struct btrfs_delayed_ref_node *); - -typedef void (*btf_trace_add_delayed_data_ref)(void *, const struct btrfs_fs_info *, const struct btrfs_delayed_ref_node *); - -typedef void (*btf_trace_run_delayed_data_ref)(void *, const struct btrfs_fs_info *, const struct btrfs_delayed_ref_node *); - -typedef void (*btf_trace_add_delayed_ref_head)(void *, const struct btrfs_fs_info *, const struct btrfs_delayed_ref_head *, int); - -typedef void (*btf_trace_run_delayed_ref_head)(void *, const struct btrfs_fs_info *, const struct btrfs_delayed_ref_head *, int); - -typedef void (*btf_trace_btrfs_chunk_alloc)(void *, const struct btrfs_fs_info *, const struct btrfs_chunk_map *, u64, u64); - -typedef void (*btf_trace_btrfs_chunk_free)(void *, const struct btrfs_fs_info *, const struct btrfs_chunk_map *, u64, u64); - -typedef void (*btf_trace_btrfs_cow_block)(void *, const struct btrfs_root *, const struct extent_buffer *, const struct extent_buffer *); - -typedef void (*btf_trace_btrfs_space_reservation)(void *, const struct btrfs_fs_info *, const char *, u64, u64, int); - -typedef void (*btf_trace_btrfs_trigger_flush)(void *, const struct btrfs_fs_info *, u64, u64, int, const char *); - -typedef void (*btf_trace_btrfs_flush_space)(void *, const struct btrfs_fs_info *, u64, u64, int, int, bool); - -typedef void (*btf_trace_btrfs_reserved_extent_alloc)(void *, const struct btrfs_fs_info *, u64, u64); - -typedef void (*btf_trace_btrfs_reserved_extent_free)(void *, const struct btrfs_fs_info *, u64, u64); - -typedef void (*btf_trace_find_free_extent)(void *, const struct btrfs_root *, const struct find_free_extent_ctl *); - -typedef void (*btf_trace_find_free_extent_search_loop)(void *, const struct btrfs_root *, const struct find_free_extent_ctl *); - -typedef void (*btf_trace_find_free_extent_have_block_group)(void *, const struct btrfs_root *, const struct find_free_extent_ctl *, const struct btrfs_block_group *); - -typedef void (*btf_trace_btrfs_reserve_extent)(void *, const struct btrfs_block_group *, const struct find_free_extent_ctl *); - -typedef void (*btf_trace_btrfs_reserve_extent_cluster)(void *, const struct btrfs_block_group *, const struct find_free_extent_ctl *); - -typedef void (*btf_trace_btrfs_find_cluster)(void *, const struct btrfs_block_group *, u64, u64, u64, u64); - -typedef void (*btf_trace_btrfs_failed_cluster_setup)(void *, const struct btrfs_block_group *); - -typedef void (*btf_trace_btrfs_setup_cluster)(void *, const struct btrfs_block_group *, const struct btrfs_free_cluster *, u64, int); - -typedef void (*btf_trace_alloc_extent_state)(void *, const struct extent_state *, gfp_t, long unsigned int); - -typedef void (*btf_trace_free_extent_state)(void *, const struct extent_state *, long unsigned int); - -typedef void (*btf_trace_btrfs_work_queued)(void *, const struct btrfs_work *); - -typedef void (*btf_trace_btrfs_work_sched)(void *, const struct btrfs_work *); - -typedef void (*btf_trace_btrfs_all_work_done)(void *, const struct btrfs_fs_info *, const void *); - -typedef void (*btf_trace_btrfs_ordered_sched)(void *, const struct btrfs_work *); - -typedef void (*btf_trace_btrfs_workqueue_alloc)(void *, const struct btrfs_workqueue *, const char *); - -typedef void (*btf_trace_btrfs_workqueue_destroy)(void *, const struct btrfs_workqueue *); - -typedef void (*btf_trace_btrfs_qgroup_reserve_data)(void *, const struct inode *, u64, u64, u64, int); - -typedef void (*btf_trace_btrfs_qgroup_release_data)(void *, const struct inode *, u64, u64, u64, int); - -typedef void (*btf_trace_btrfs_qgroup_account_extents)(void *, const struct btrfs_fs_info *, const struct btrfs_qgroup_extent_record *); - -typedef void (*btf_trace_btrfs_qgroup_trace_extent)(void *, const struct btrfs_fs_info *, const struct btrfs_qgroup_extent_record *); - -typedef void (*btf_trace_qgroup_num_dirty_extents)(void *, const struct btrfs_fs_info *, u64, u64); - -typedef void (*btf_trace_btrfs_qgroup_account_extent)(void *, const struct btrfs_fs_info *, u64, u64, u64, u64, u64); - -typedef void (*btf_trace_qgroup_update_counters)(void *, const struct btrfs_fs_info *, const struct btrfs_qgroup *, u64, u64); - -typedef void (*btf_trace_qgroup_update_reserve)(void *, const struct btrfs_fs_info *, const struct btrfs_qgroup *, s64, int); - -typedef void (*btf_trace_qgroup_meta_reserve)(void *, const struct btrfs_root *, s64, int); - -typedef void (*btf_trace_qgroup_meta_convert)(void *, const struct btrfs_root *, s64); - -typedef void (*btf_trace_qgroup_meta_free_all_pertrans)(void *, struct btrfs_root *); - -typedef void (*btf_trace_btrfs_prelim_ref_merge)(void *, const struct btrfs_fs_info *, const struct prelim_ref *, const struct prelim_ref *, u64); - -typedef void (*btf_trace_btrfs_prelim_ref_insert)(void *, const struct btrfs_fs_info *, const struct prelim_ref *, const struct prelim_ref *, u64); - -typedef void (*btf_trace_btrfs_inode_mod_outstanding_extents)(void *, const struct btrfs_root *, u64, int, unsigned int); - -typedef void (*btf_trace_btrfs_remove_block_group)(void *, const struct btrfs_block_group *); - -typedef void (*btf_trace_btrfs_add_unused_block_group)(void *, const struct btrfs_block_group *); - -typedef void (*btf_trace_btrfs_add_reclaim_block_group)(void *, const struct btrfs_block_group *); - -typedef void (*btf_trace_btrfs_reclaim_block_group)(void *, const struct btrfs_block_group *); - -typedef void (*btf_trace_btrfs_skip_unused_block_group)(void *, const struct btrfs_block_group *); - -typedef void (*btf_trace_btrfs_set_extent_bit)(void *, const struct extent_io_tree *, u64, u64, unsigned int); - -typedef void (*btf_trace_btrfs_clear_extent_bit)(void *, const struct extent_io_tree *, u64, u64, unsigned int); - -typedef void (*btf_trace_btrfs_convert_extent_bit)(void *, const struct extent_io_tree *, u64, u64, unsigned int, unsigned int); - -typedef void (*btf_trace_btrfs_done_preemptive_reclaim)(void *, struct btrfs_fs_info *, const struct btrfs_space_info *); - -typedef void (*btf_trace_btrfs_fail_all_tickets)(void *, struct btrfs_fs_info *, const struct btrfs_space_info *); - -typedef void (*btf_trace_btrfs_reserve_ticket)(void *, const struct btrfs_fs_info *, u64, u64, u64, int, int); - -typedef void (*btf_trace_btrfs_tree_read_lock)(void *, const struct extent_buffer *, u64); - -typedef void (*btf_trace_btrfs_tree_lock)(void *, const struct extent_buffer *, u64); - -typedef void (*btf_trace_btrfs_tree_unlock)(void *, const struct extent_buffer *); - -typedef void (*btf_trace_btrfs_tree_read_unlock)(void *, const struct extent_buffer *); - -typedef void (*btf_trace_btrfs_tree_read_unlock_blocking)(void *, const struct extent_buffer *); - -typedef void (*btf_trace_btrfs_set_lock_blocking_read)(void *, const struct extent_buffer *); - -typedef void (*btf_trace_btrfs_set_lock_blocking_write)(void *, const struct extent_buffer *); - -typedef void (*btf_trace_btrfs_try_tree_read_lock)(void *, const struct extent_buffer *); - -typedef void (*btf_trace_btrfs_try_tree_write_lock)(void *, const struct extent_buffer *); - -typedef void (*btf_trace_btrfs_tree_read_lock_atomic)(void *, const struct extent_buffer *); - -typedef void (*btf_trace_update_bytes_may_use)(void *, const struct btrfs_fs_info *, const struct btrfs_space_info *, u64, s64); - -typedef void (*btf_trace_update_bytes_pinned)(void *, const struct btrfs_fs_info *, const struct btrfs_space_info *, u64, s64); - -typedef void (*btf_trace_update_bytes_zone_unusable)(void *, const struct btrfs_fs_info *, const struct btrfs_space_info *, u64, s64); - -typedef void (*btf_trace_raid56_read)(void *, const struct btrfs_raid_bio *, const struct bio *, const struct raid56_bio_trace_info *); - -typedef void (*btf_trace_raid56_write)(void *, const struct btrfs_raid_bio *, const struct bio *, const struct raid56_bio_trace_info *); - -typedef void (*btf_trace_btrfs_insert_one_raid_extent)(void *, const struct btrfs_fs_info *, u64, u64, int); - -typedef void (*btf_trace_btrfs_raid_extent_delete)(void *, const struct btrfs_fs_info *, u64, u64, u64, u64); - -typedef void (*btf_trace_btrfs_get_raid_extent_offset)(void *, const struct btrfs_fs_info *, u64, u64, u64, u64); - -typedef void (*btf_trace_btrfs_extent_map_shrinker_count)(void *, const struct btrfs_fs_info *, long int); - -typedef void (*btf_trace_btrfs_extent_map_shrinker_scan_enter)(void *, const struct btrfs_fs_info *, long int, long int, u64, u64); - -typedef void (*btf_trace_btrfs_extent_map_shrinker_scan_exit)(void *, const struct btrfs_fs_info *, long int, long int, u64, u64); - -typedef void (*btf_trace_btrfs_extent_map_shrinker_remove_em)(void *, const struct btrfs_inode *, const struct extent_map *); - -struct btrfs_fs_context { - char *subvol_name; - u64 subvol_objectid; - u64 max_inline; - u32 commit_interval; - u32 metadata_ratio; - u32 thread_pool_size; - long long unsigned int mount_opt; - long unsigned int compress_type: 4; - unsigned int compress_level; - refcount_t refs; -}; - -enum { - Opt_acl___5 = 0, - Opt_clear_cache = 1, - Opt_commit_interval = 2, - Opt_compress___2 = 3, - Opt_compress_force = 4, - Opt_compress_force_type = 5, - Opt_compress_type = 6, - Opt_degraded = 7, - Opt_device = 8, - Opt_fatal_errors = 9, - Opt_flushoncommit = 10, - Opt_max_inline = 11, - Opt_barrier___3 = 12, - Opt_datacow = 13, - Opt_datasum = 14, - Opt_defrag = 15, - Opt_discard___6 = 16, - Opt_discard_mode = 17, - Opt_ratio = 18, - Opt_rescan_uuid_tree = 19, - Opt_skip_balance = 20, - Opt_space_cache = 21, - Opt_space_cache_version = 22, - Opt_ssd = 23, - Opt_ssd_spread = 24, - Opt_subvol = 25, - Opt_subvol_empty = 26, - Opt_subvolid = 27, - Opt_thread_pool = 28, - Opt_treelog = 29, - Opt_user_subvol_rm_allowed = 30, - Opt_norecovery___3 = 31, - Opt_rescue = 32, - Opt_usebackuproot = 33, - Opt_nologreplay = 34, - Opt_enospc_debug = 35, - Opt_err___9 = 36, -}; - -enum { - Opt_fatal_errors_panic = 0, - Opt_fatal_errors_bug = 1, -}; - -enum { - Opt_discard_sync = 0, - Opt_discard_async = 1, -}; - -enum { - Opt_space_cache_v1 = 0, - Opt_space_cache_v2 = 1, -}; - -enum { - Opt_rescue_usebackuproot = 0, - Opt_rescue_nologreplay = 1, - Opt_rescue_ignorebadroots = 2, - Opt_rescue_ignoredatacsums = 3, - Opt_rescue_ignoremetacsums = 4, - Opt_rescue_ignoresuperflags = 5, - Opt_rescue_parameter_all = 6, -}; - -struct init_sequence { - int (*init_func)(void); - void (*exit_func)(void); -}; - -struct rb_simple_node { - struct rb_node rb_node; - u64 bytenr; -}; - -struct extent_inode_elem { - u64 inum; - u64 offset; - u64 num_bytes; - struct extent_inode_elem *next; -}; - -struct btrfs_backref_iter { - u64 bytenr; - struct btrfs_path *path; - struct btrfs_fs_info *fs_info; - struct btrfs_key cur_key; - u32 item_ptr; - u32 cur_ptr; - u32 end_ptr; -}; - -struct btrfs_backref_node { - struct { - struct rb_node rb_node; - u64 bytenr; - }; - u64 new_bytenr; - u64 owner; - struct list_head list; - struct list_head upper; - struct list_head lower; - struct btrfs_root *root; - struct extent_buffer *eb; - unsigned int level: 8; - unsigned int cowonly: 1; - unsigned int lowest: 1; - unsigned int locked: 1; - unsigned int processed: 1; - unsigned int checked: 1; - unsigned int pending: 1; - unsigned int detached: 1; - unsigned int is_reloc_root: 1; -}; - -struct btrfs_backref_edge { - struct list_head list[2]; - struct btrfs_backref_node *node[2]; -}; - -struct btrfs_backref_cache { - struct rb_root rb_root; - struct btrfs_backref_node *path[8]; - struct list_head pending[8]; - struct list_head leaves; - struct list_head changed; - struct list_head detached; - u64 last_trans; - int nr_nodes; - int nr_edges; - struct list_head pending_edge; - struct list_head useless_node; - struct btrfs_fs_info *fs_info; - bool is_reloc; -}; - -struct btrfs_seq_list { - struct list_head list; - u64 seq; -}; - -enum btrfs_inline_ref_type { - BTRFS_REF_TYPE_INVALID = 0, - BTRFS_REF_TYPE_BLOCK = 1, - BTRFS_REF_TYPE_DATA = 2, - BTRFS_REF_TYPE_ANY = 3, -}; - -struct preftree { - struct rb_root_cached root; - unsigned int count; -}; - -struct preftrees { - struct preftree direct; - struct preftree indirect; - struct preftree indirect_missing_keys; -}; - -struct share_check { - struct btrfs_backref_share_check_ctx *ctx; - struct btrfs_root *root; - u64 inum; - u64 data_bytenr; - u64 data_extent_gen; - int share_count; - int self_ref_count; - bool have_delayed_delete_refs; -}; - -struct f2fs_dir_entry { - __le32 hash_code; - __le32 ino; - __le16 name_len; - __u8 file_type; -} __attribute__((packed)); - -struct f2fs_filename { - const struct qstr *usr_fname; - struct fscrypt_str disk_name; - f2fs_hash_t hash; - struct fscrypt_str crypto_buf; -}; - -struct shmid_ds { - struct ipc_perm shm_perm; - int shm_segsz; - __kernel_old_time_t shm_atime; - __kernel_old_time_t shm_dtime; - __kernel_old_time_t shm_ctime; - __kernel_ipc_pid_t shm_cpid; - __kernel_ipc_pid_t shm_lpid; - short unsigned int shm_nattch; - short unsigned int shm_unused; - void *shm_unused2; - void *shm_unused3; -}; - -struct shmid64_ds { - struct ipc64_perm shm_perm; - __kernel_size_t shm_segsz; - long int shm_atime; - long int shm_dtime; - long int shm_ctime; - __kernel_pid_t shm_cpid; - __kernel_pid_t shm_lpid; - long unsigned int shm_nattch; - long unsigned int __unused4; - long unsigned int __unused5; -}; - -struct shminfo64 { - long unsigned int shmmax; - long unsigned int shmmin; - long unsigned int shmmni; - long unsigned int shmseg; - long unsigned int shmall; - long unsigned int __unused1; - long unsigned int __unused2; - long unsigned int __unused3; - long unsigned int __unused4; -}; - -struct shminfo { - int shmmax; - int shmmin; - int shmmni; - int shmseg; - int shmall; -}; - -struct shm_info { - int used_ids; - __kernel_ulong_t shm_tot; - __kernel_ulong_t shm_rss; - __kernel_ulong_t shm_swp; - __kernel_ulong_t swap_attempts; - __kernel_ulong_t swap_successes; -}; - -struct shared_policy {}; - -struct shmem_inode_info { - spinlock_t lock; - unsigned int seals; - long unsigned int flags; - long unsigned int alloced; - long unsigned int swapped; - union { - struct offset_ctx dir_offsets; - struct { - struct list_head shrinklist; - struct list_head swaplist; - }; - }; - struct timespec64 i_crtime; - struct shared_policy policy; - struct simple_xattrs xattrs; - long unsigned int fallocend; - unsigned int fsflags; - atomic_t stop_eviction; - struct inode vfs_inode; -}; - -struct shmid_kernel { - struct kern_ipc_perm shm_perm; - struct file *shm_file; - long unsigned int shm_nattch; - long unsigned int shm_segsz; - time64_t shm_atim; - time64_t shm_dtim; - time64_t shm_ctim; - struct pid *shm_cprid; - struct pid *shm_lprid; - struct ucounts *mlock_ucounts; - struct task_struct *shm_creator; - struct list_head shm_clist; - struct ipc_namespace *ns; - long: 64; - long: 64; - long: 64; -}; - -struct shm_file_data { - int id; - struct ipc_namespace *ns; - struct file *file; - const struct vm_operations_struct *vm_ops; -}; - -enum { - Opt_err___10 = 0, - Opt_enc = 1, - Opt_hash = 2, -}; - -struct crypto_shash_spawn { - struct crypto_spawn base; -}; - -struct chachapoly_instance_ctx { - struct crypto_skcipher_spawn chacha; - struct crypto_ahash_spawn poly; - unsigned int saltlen; -}; - -struct chachapoly_ctx { - struct crypto_skcipher *chacha; - struct crypto_ahash *poly; - unsigned int saltlen; - u8 salt[0]; -}; - -struct poly_req { - u8 pad[16]; - struct { - __le64 assoclen; - __le64 cryptlen; - } tail; - struct scatterlist src[1]; - struct ahash_request req; -}; - -struct chacha_req { - u8 iv[16]; - struct scatterlist src[1]; - struct skcipher_request req; -}; - -struct chachapoly_req_ctx { - struct scatterlist src[2]; - struct scatterlist dst[2]; - u8 key[32]; - u8 tag[16]; - unsigned int cryptlen; - unsigned int assoclen; - u32 flags; - union { - struct poly_req poly; - struct chacha_req chacha; - } u; -}; - -struct tea_ctx { - u32 KEY[4]; -}; - -struct xtea_ctx { - u32 KEY[4]; -}; - -struct authenc_esn_instance_ctx { - struct crypto_ahash_spawn auth; - struct crypto_skcipher_spawn enc; -}; - -struct crypto_authenc_esn_ctx { - unsigned int reqoff; - struct crypto_ahash *auth; - struct crypto_skcipher *enc; - struct crypto_sync_skcipher *null; -}; - -struct authenc_esn_request_ctx { - struct scatterlist src[2]; - struct scatterlist dst[2]; - char tail[0]; -}; - -enum x509_actions { - ACT_x509_extract_key_data = 0, - ACT_x509_extract_name_segment = 1, - ACT_x509_note_OID = 2, - ACT_x509_note_issuer = 3, - ACT_x509_note_not_after = 4, - ACT_x509_note_not_before = 5, - ACT_x509_note_params = 6, - ACT_x509_note_serial = 7, - ACT_x509_note_sig_algo = 8, - ACT_x509_note_signature = 9, - ACT_x509_note_subject = 10, - ACT_x509_note_tbs_certificate = 11, - ACT_x509_process_extension = 12, - NR__x509_actions = 13, -}; - -enum x509_akid_actions { - ACT_x509_akid_note_kid = 0, - ACT_x509_akid_note_name = 1, - ACT_x509_akid_note_serial = 2, - ACT_x509_extract_name_segment___2 = 3, - ACT_x509_note_OID___2 = 4, - NR__x509_akid_actions = 5, -}; - -struct x509_parse_context { - struct x509_certificate *cert; - long unsigned int data; - const void *key; - size_t key_size; - const void *params; - size_t params_size; - enum OID key_algo; - enum OID last_oid; - enum OID sig_algo; - u8 o_size; - u8 cn_size; - u8 email_size; - u16 o_offset; - u16 cn_offset; - u16 email_offset; - unsigned int raw_akid_size; - const void *raw_akid; - const void *akid_raw_issuer; - unsigned int akid_raw_issuer_size; -}; - -struct queue_sysfs_entry { - struct attribute attr; - ssize_t (*show)(struct gendisk *, char *); - int (*load_module)(struct gendisk *, const char *, size_t); - ssize_t (*store)(struct gendisk *, const char *, size_t); -}; - -enum { - BLK_MQ_UNIQUE_TAG_BITS = 16, - BLK_MQ_UNIQUE_TAG_MASK = 65535, -}; - -enum { - BLK_MQ_NO_TAG = 4294967295, - BLK_MQ_TAG_MIN = 1, - BLK_MQ_TAG_MAX = 4294967294, -}; - -struct mq_inflight { - struct block_device *part; - unsigned int inflight[2]; -}; - -struct blk_rq_wait { - struct completion done; - blk_status_t ret; -}; - -struct blk_expired_data { - bool has_timedout_rq; - long unsigned int next; - long unsigned int timeout_start; -}; - -struct flush_busy_ctx_data { - struct blk_mq_hw_ctx *hctx; - struct list_head *list; -}; - -struct dispatch_rq_data { - struct blk_mq_hw_ctx *hctx; - struct request *rq; -}; - -enum prep_dispatch { - PREP_DISPATCH_OK = 0, - PREP_DISPATCH_NO_TAG = 1, - PREP_DISPATCH_NO_BUDGET = 2, -}; - -struct rq_iter_data { - struct blk_mq_hw_ctx *hctx; - bool has_rq; -}; - -struct blk_mq_qe_pair { - struct list_head node; - struct request_queue *q; - struct elevator_type *type; -}; - -struct io_sqring_offsets { - __u32 head; - __u32 tail; - __u32 ring_mask; - __u32 ring_entries; - __u32 flags; - __u32 dropped; - __u32 array; - __u32 resv1; - __u64 user_addr; -}; - -struct io_cqring_offsets { - __u32 head; - __u32 tail; - __u32 ring_mask; - __u32 ring_entries; - __u32 overflow; - __u32 cqes; - __u32 flags; - __u32 resv1; - __u64 user_addr; -}; - -struct io_uring_params { - __u32 sq_entries; - __u32 cq_entries; - __u32 flags; - __u32 sq_thread_cpu; - __u32 sq_thread_idle; - __u32 features; - __u32 wq_fd; - __u32 resv[3]; - struct io_sqring_offsets sq_off; - struct io_cqring_offsets cq_off; -}; - -enum { - IO_SQ_THREAD_SHOULD_STOP = 0, - IO_SQ_THREAD_SHOULD_PARK = 1, -}; - -union nested_table { - union nested_table *table; - struct rhash_lock_head *bucket; -}; - -typedef ZSTD_DCtx zstd_dctx; - -typedef ZSTD_DDict zstd_ddict; - -typedef ZSTD_frameHeader zstd_frame_header; - -typedef struct { - size_t error; - int lowerBound; - int upperBound; -} ZSTD_bounds; - -typedef enum { - ZSTD_d_windowLogMax = 100, - ZSTD_d_experimentalParam1 = 1000, - ZSTD_d_experimentalParam2 = 1001, - ZSTD_d_experimentalParam3 = 1002, - ZSTD_d_experimentalParam4 = 1003, -} ZSTD_dParameter; - -typedef enum { - ZSTDnit_frameHeader = 0, - ZSTDnit_blockHeader = 1, - ZSTDnit_block = 2, - ZSTDnit_lastBlock = 3, - ZSTDnit_checksum = 4, - ZSTDnit_skippableFrame = 5, -} ZSTD_nextInputType_e; - -typedef struct { - size_t compressedSize; - long long unsigned int decompressedBound; -} ZSTD_frameSizeInfo; - -typedef struct { - blockType_e blockType; - U32 lastBlock; - U32 origSize; -} blockProperties_t; - -typedef enum { - not_streaming = 0, - is_streaming = 1, -} streaming_operation; - -struct resource_entry { - struct list_head node; - struct resource *res; - resource_size_t offset; - struct resource __res; -}; - -struct pci_bus_resource { - struct list_head list; - struct resource *res; - unsigned int flags; -}; - -struct walk_rcec_data { - struct pci_dev *rcec; - int (*user_callback)(struct pci_dev *, void *); - void *user_data; -}; - -enum hwparam_type { - hwparam_ioport = 0, - hwparam_iomem = 1, - hwparam_ioport_or_iomem = 2, - hwparam_irq = 3, - hwparam_dma = 4, - hwparam_dma_addr = 5, - hwparam_other = 6, -}; - -struct plat_serial8250_port { - long unsigned int iobase; - void *membase; - resource_size_t mapbase; - resource_size_t mapsize; - unsigned int uartclk; - unsigned int irq; - long unsigned int irqflags; - void *private_data; - unsigned char regshift; - unsigned char iotype; - unsigned char hub6; - unsigned char has_sysrq; - unsigned int type; - upf_t flags; - u16 bugs; - unsigned int (*serial_in)(struct uart_port *, int); - void (*serial_out)(struct uart_port *, int, int); - u32 (*dl_read)(struct uart_8250_port *); - void (*dl_write)(struct uart_8250_port *, u32); - void (*set_termios)(struct uart_port *, struct ktermios *, const struct ktermios *); - void (*set_ldisc)(struct uart_port *, struct ktermios *); - unsigned int (*get_mctrl)(struct uart_port *); - int (*handle_irq)(struct uart_port *); - void (*pm)(struct uart_port *, unsigned int, unsigned int); - void (*handle_break)(struct uart_port *); -}; - -enum { - PLAT8250_DEV_LEGACY = -1, - PLAT8250_DEV_PLATFORM = 0, - PLAT8250_DEV_PLATFORM1 = 1, - PLAT8250_DEV_PLATFORM2 = 2, - PLAT8250_DEV_FOURPORT = 3, - PLAT8250_DEV_ACCENT = 4, - PLAT8250_DEV_BOCA = 5, - PLAT8250_DEV_EXAR_ST16C554 = 6, - PLAT8250_DEV_HUB6 = 7, - PLAT8250_DEV_AU1X00 = 8, - PLAT8250_DEV_SM501 = 9, -}; - -struct old_serial_port { - unsigned int uart; - unsigned int baud_base; - unsigned int port; - unsigned int irq; - upf_t flags; - unsigned char io_type; - unsigned char *iomem_base; - short unsigned int iomem_reg_shift; -}; - -typedef void (*serial8250_isa_config_fn)(int, struct uart_port *, u32 *); - -struct drm_gem_close { - __u32 handle; - __u32 pad; -}; - -struct drm_gem_flink { - __u32 handle; - __u32 name; -}; - -struct drm_gem_open { - __u32 name; - __u32 handle; - __u64 size; -}; - -struct ww_class { - atomic_long_t stamp; - struct lock_class_key acquire_key; - struct lock_class_key mutex_key; - const char *acquire_name; - const char *mutex_name; - unsigned int is_wait_die; -}; - -struct drm_flip_work; - -typedef void (*drm_flip_func_t)(struct drm_flip_work *, void *); - -struct drm_flip_work { - const char *name; - drm_flip_func_t func; - struct work_struct worker; - struct list_head queued; - struct list_head commited; - spinlock_t lock; -}; - -struct drm_flip_task { - struct list_head node; - void *data; -}; - -enum virtio_gpu_shm_id { - VIRTIO_GPU_SHM_ID_UNDEFINED = 0, - VIRTIO_GPU_SHM_ID_HOST_VISIBLE = 1, -}; - -struct virtio_gpu_config { - __le32 events_read; - __le32 events_clear; - __le32 num_scanouts; - __le32 num_capsets; -}; - -struct cache_type_info { - const char *size_prop; - const char *line_size_props[2]; - const char *nr_sets_prop; -}; - -struct trace_event_raw_devres { - struct trace_entry ent; - u32 __data_loc_devname; - struct device *dev; - const char *op; - void *node; - u32 __data_loc_name; - size_t size; - char __data[0]; -}; - -struct trace_event_data_offsets_devres { - u32 devname; - const void *devname_ptr_; - u32 name; - const void *name_ptr_; -}; - -typedef void (*btf_trace_devres_log)(void *, struct device *, const char *, void *, const char *, size_t); - -struct request_sense; - -struct cdrom_generic_command { - unsigned char cmd[12]; - unsigned char *buffer; - unsigned int buflen; - int stat; - struct request_sense *sense; - unsigned char data_direction; - int quiet; - int timeout; - union { - void *reserved[1]; - void *unused; - }; -}; - -struct request_sense { - __u8 error_code: 7; - __u8 valid: 1; - __u8 segment_number; - __u8 sense_key: 4; - __u8 reserved2: 1; - __u8 ili: 1; - __u8 reserved1: 2; - __u8 information[4]; - __u8 add_sense_len; - __u8 command_info[4]; - __u8 asc; - __u8 ascq; - __u8 fruc; - __u8 sks[3]; - __u8 asb[46]; -}; - -enum scsi_msg_byte { - COMMAND_COMPLETE = 0, - EXTENDED_MESSAGE = 1, - SAVE_POINTERS = 2, - RESTORE_POINTERS = 3, - DISCONNECT = 4, - INITIATOR_ERROR = 5, - ABORT_TASK_SET = 6, - MESSAGE_REJECT = 7, - NOP = 8, - MSG_PARITY_ERROR = 9, - LINKED_CMD_COMPLETE = 10, - LINKED_FLG_CMD_COMPLETE = 11, - TARGET_RESET = 12, - ABORT_TASK = 13, - CLEAR_TASK_SET = 14, - INITIATE_RECOVERY = 15, - RELEASE_RECOVERY = 16, - TERMINATE_IO_PROC = 17, - CLEAR_ACA = 22, - LOGICAL_UNIT_RESET = 23, - SIMPLE_QUEUE_TAG = 32, - HEAD_OF_QUEUE_TAG = 33, - ORDERED_QUEUE_TAG = 34, - IGNORE_WIDE_RESIDUE = 35, - ACA = 36, - QAS_REQUEST = 85, - BUS_DEVICE_RESET = 12, - ABORT = 6, -}; - -struct scsi_ioctl_command { - unsigned int inlen; - unsigned int outlen; - unsigned char data[0]; -}; - -struct scsi_idlun { - __u32 dev_id; - __u32 host_unique_id; -}; - -struct sg_io_hdr { - int interface_id; - int dxfer_direction; - unsigned char cmd_len; - unsigned char mx_sb_len; - short unsigned int iovec_count; - unsigned int dxfer_len; - void *dxferp; - unsigned char *cmdp; - void *sbp; - unsigned int timeout; - unsigned int flags; - int pack_id; - void *usr_ptr; - unsigned char status; - unsigned char masked_status; - unsigned char msg_status; - unsigned char sb_len_wr; - short unsigned int host_status; - short unsigned int driver_status; - int resid; - unsigned int duration; - unsigned int info; -}; - -enum { - BOND_OPTFLAG_NOSLAVES = 1, - BOND_OPTFLAG_IFDOWN = 2, - BOND_OPTFLAG_RAWVAL = 4, -}; - -enum { - BOND_VALFLAG_DEFAULT = 1, - BOND_VALFLAG_MIN = 2, - BOND_VALFLAG_MAX = 4, -}; - -typedef struct { - long unsigned int key[2]; -} hsiphash_key_t; - -struct ratelimiter_entry { - u64 last_time_ns; - u64 tokens; - u64 ip; - void *net; - spinlock_t lock; - struct hlist_node hash; - struct callback_head rcu; -}; - -enum { - PACKETS_PER_SECOND = 20, - PACKETS_BURSTABLE = 5, - PACKET_COST = 50000000, - TOKEN_MAX = 250000000, -}; - -struct cvmx_smix_en_s { - u64 en: 1; - u64 reserved_1_63: 63; -}; - -union cvmx_smix_en { - u64 u64; - struct cvmx_smix_en_s s; -}; - -struct thunder_mdiobus_nexus { - void *bar0; - struct cavium_mdiobus *buses[4]; -}; - -enum { - IFLA_GENEVE_UNSPEC = 0, - IFLA_GENEVE_ID = 1, - IFLA_GENEVE_REMOTE = 2, - IFLA_GENEVE_TTL = 3, - IFLA_GENEVE_TOS = 4, - IFLA_GENEVE_PORT = 5, - IFLA_GENEVE_COLLECT_METADATA = 6, - IFLA_GENEVE_REMOTE6 = 7, - IFLA_GENEVE_UDP_CSUM = 8, - IFLA_GENEVE_UDP_ZERO_CSUM6_TX = 9, - IFLA_GENEVE_UDP_ZERO_CSUM6_RX = 10, - IFLA_GENEVE_LABEL = 11, - IFLA_GENEVE_TTL_INHERIT = 12, - IFLA_GENEVE_DF = 13, - IFLA_GENEVE_INNER_PROTO_INHERIT = 14, - __IFLA_GENEVE_MAX = 15, -}; - -enum ifla_geneve_df { - GENEVE_DF_UNSET = 0, - GENEVE_DF_SET = 1, - GENEVE_DF_INHERIT = 2, - __GENEVE_DF_END = 3, - GENEVE_DF_MAX = 2, -}; - -struct geneve_net { - struct list_head geneve_list; - struct list_head sock_list; -}; - -struct geneve_dev; - -struct geneve_dev_node { - struct hlist_node hlist; - struct geneve_dev *geneve; -}; - -struct geneve_config { - struct ip_tunnel_info info; - bool collect_md; - bool use_udp6_rx_checksums; - bool ttl_inherit; - enum ifla_geneve_df df; - bool inner_proto_inherit; -}; - -struct geneve_sock; - -struct geneve_dev { - struct geneve_dev_node hlist4; - struct geneve_dev_node hlist6; - struct net *net; - struct net_device *dev; - struct geneve_sock *sock4; - struct geneve_sock *sock6; - struct list_head next; - struct gro_cells gro_cells; - struct geneve_config cfg; -}; - -struct geneve_sock { - bool collect_md; - struct list_head list; - struct socket *sock; - struct callback_head rcu; - int refcnt; - struct hlist_head vni_list[1024]; -}; - -struct class_info { - int class; - char *class_name; -}; - -struct usb_ohci_pdata { - unsigned int big_endian_desc: 1; - unsigned int big_endian_mmio: 1; - unsigned int no_big_frame_no: 1; - unsigned int num_ports; - int (*power_on)(struct platform_device *); - void (*power_off)(struct platform_device *); - void (*power_suspend)(struct platform_device *); -}; - -typedef __u32 __hc32; - -typedef __u16 __hc16; - -struct td; - -struct ed { - __hc32 hwINFO; - __hc32 hwTailP; - __hc32 hwHeadP; - __hc32 hwNextED; - dma_addr_t dma; - struct td *dummy; - struct ed *ed_next; - struct ed *ed_prev; - struct list_head td_list; - struct list_head in_use_list; - u8 state; - u8 type; - u8 branch; - u16 interval; - u16 load; - u16 last_iso; - u16 tick; - unsigned int takeback_wdh_cnt; - struct td *pending_td; - long: 64; -}; - -struct td { - __hc32 hwINFO; - __hc32 hwCBP; - __hc32 hwNextTD; - __hc32 hwBE; - __hc16 hwPSW[2]; - __u8 index; - struct ed *ed; - struct td *td_hash; - struct td *next_dl_td; - struct urb *urb; - dma_addr_t td_dma; - dma_addr_t data_dma; - struct list_head td_list; - long: 64; -}; - -struct ohci_hcca { - __hc32 int_table[32]; - __hc32 frame_no; - __hc32 done_head; - u8 reserved_for_hc[116]; - u8 what[4]; -}; - -struct ohci_roothub_regs { - __hc32 a; - __hc32 b; - __hc32 status; - __hc32 portstatus[15]; -}; - -struct ohci_regs { - __hc32 revision; - __hc32 control; - __hc32 cmdstatus; - __hc32 intrstatus; - __hc32 intrenable; - __hc32 intrdisable; - __hc32 hcca; - __hc32 ed_periodcurrent; - __hc32 ed_controlhead; - __hc32 ed_controlcurrent; - __hc32 ed_bulkhead; - __hc32 ed_bulkcurrent; - __hc32 donehead; - __hc32 fminterval; - __hc32 fmremaining; - __hc32 fmnumber; - __hc32 periodicstart; - __hc32 lsthresh; - struct ohci_roothub_regs roothub; - long: 64; - long: 64; -}; - -enum ohci_rh_state { - OHCI_RH_HALTED = 0, - OHCI_RH_SUSPENDED = 1, - OHCI_RH_RUNNING = 2, -}; - -struct ohci_hcd { - spinlock_t lock; - struct ohci_regs *regs; - struct ohci_hcca *hcca; - dma_addr_t hcca_dma; - struct ed *ed_rm_list; - struct ed *ed_bulktail; - struct ed *ed_controltail; - struct ed *periodic[32]; - void (*start_hnp)(struct ohci_hcd *); - struct dma_pool *td_cache; - struct dma_pool *ed_cache; - struct td *td_hash[64]; - struct td *dl_start; - struct td *dl_end; - struct list_head pending; - struct list_head eds_in_use; - enum ohci_rh_state rh_state; - int num_ports; - int load[32]; - u32 hc_control; - long unsigned int next_statechange; - u32 fminterval; - unsigned int autostop: 1; - unsigned int working: 1; - unsigned int restart_work: 1; - long unsigned int flags; - unsigned int prev_frame_no; - unsigned int wdh_cnt; - unsigned int prev_wdh_cnt; - u32 prev_donehead; - struct timer_list io_watchdog; - struct work_struct nec_work; - struct dentry *debug_dir; - long unsigned int priv[0]; -}; - -struct ohci_driver_overrides { - const char *product_desc; - size_t extra_priv_size; - int (*reset)(struct usb_hcd *); -}; - -struct ohci_platform_priv { - struct clk *clks[4]; - struct reset_control *resets; -}; - -struct usbtmc_request { - __u8 bRequestType; - __u8 bRequest; - __u16 wValue; - __u16 wIndex; - __u16 wLength; -}; - -struct usbtmc_ctrlrequest { - struct usbtmc_request req; - void *data; -}; - -struct usbtmc_termchar { - __u8 term_char; - __u8 term_char_enabled; -}; - -struct usbtmc_message { - __u32 transfer_size; - __u32 transferred; - __u32 flags; - void *message; -} __attribute__((packed)); - -struct usbtmc_dev_capabilities { - __u8 interface_capabilities; - __u8 device_capabilities; - __u8 usb488_interface_capabilities; - __u8 usb488_device_capabilities; -}; - -struct usbtmc_device_data { - const struct usb_device_id *id; - struct usb_device *usb_dev; - struct usb_interface *intf; - struct list_head file_list; - unsigned int bulk_in; - unsigned int bulk_out; - u8 bTag; - u8 bTag_last_write; - u8 bTag_last_read; - u16 wMaxPacketSize; - u8 bNotify1; - u8 bNotify2; - u16 ifnum; - u8 iin_bTag; - u8 *iin_buffer; - atomic_t iin_data_valid; - unsigned int iin_ep; - int iin_ep_present; - int iin_interval; - struct urb *iin_urb; - u16 iin_wMaxPacketSize; - __u8 usb488_caps; - bool zombie; - struct usbtmc_dev_capabilities capabilities; - struct kref kref; - struct mutex io_mutex; - wait_queue_head_t waitq; - struct fasync_struct *fasync; - spinlock_t dev_lock; -}; - -struct usbtmc_file_data { - struct usbtmc_device_data *data; - struct list_head file_elem; - u32 timeout; - u8 srq_byte; - atomic_t srq_asserted; - atomic_t closing; - u8 bmTransferAttributes; - u8 eom_val; - u8 term_char; - bool term_char_enabled; - bool auto_abort; - spinlock_t err_lock; - struct usb_anchor submitted; - struct semaphore limit_write_sem; - u32 out_transfer_size; - int out_status; - u32 in_transfer_size; - int in_status; - int in_urbs_used; - struct usb_anchor in_anchor; - wait_queue_head_t wait_bulk_in; -}; - -struct bulk_cb_wrap { - __le32 Signature; - __u32 Tag; - __le32 DataTransferLength; - __u8 Flags; - __u8 Lun; - __u8 Length; - __u8 CDB[16]; -}; - -struct bulk_cs_wrap { - __le32 Signature; - __u32 Tag; - __le32 Residue; - __u8 Status; -}; - -struct ms_bootblock_cis { - u8 bCistplDEVICE[6]; - u8 bCistplDEVICE0C[6]; - u8 bCistplJEDECC[4]; - u8 bCistplMANFID[6]; - u8 bCistplVER1[32]; - u8 bCistplFUNCID[4]; - u8 bCistplFUNCE0[4]; - u8 bCistplFUNCE1[5]; - u8 bCistplCONF[7]; - u8 bCistplCFTBLENT0[10]; - u8 bCistplCFTBLENT1[8]; - u8 bCistplCFTBLENT2[12]; - u8 bCistplCFTBLENT3[8]; - u8 bCistplCFTBLENT4[17]; - u8 bCistplCFTBLENT5[8]; - u8 bCistplCFTBLENT6[17]; - u8 bCistplCFTBLENT7[8]; - u8 bCistplNOLINK[3]; -}; - -struct ms_bootblock_idi { - u16 wIDIgeneralConfiguration; - u16 wIDInumberOfCylinder; - u16 wIDIreserved0; - u16 wIDInumberOfHead; - u16 wIDIbytesPerTrack; - u16 wIDIbytesPerSector; - u16 wIDIsectorsPerTrack; - u16 wIDItotalSectors[2]; - u16 wIDIreserved1[11]; - u16 wIDIbufferType; - u16 wIDIbufferSize; - u16 wIDIlongCmdECC; - u16 wIDIfirmVersion[4]; - u16 wIDImodelName[20]; - u16 wIDIreserved2; - u16 wIDIlongWordSupported; - u16 wIDIdmaSupported; - u16 wIDIreserved3; - u16 wIDIpioTiming; - u16 wIDIdmaTiming; - u16 wIDItransferParameter; - u16 wIDIformattedCylinder; - u16 wIDIformattedHead; - u16 wIDIformattedSectorsPerTrack; - u16 wIDIformattedTotalSectors[2]; - u16 wIDImultiSector; - u16 wIDIlbaSectors[2]; - u16 wIDIsingleWordDMA; - u16 wIDImultiWordDMA; - u16 wIDIreserved4[192]; -}; - -struct ms_bootblock_sysent_rec { - u32 dwStart; - u32 dwSize; - u8 bType; - u8 bReserved[3]; -}; - -struct ms_bootblock_sysent { - struct ms_bootblock_sysent_rec entry[4]; -}; - -struct ms_bootblock_sysinf { - u8 bMsClass; - u8 bCardType; - u16 wBlockSize; - u16 wBlockNumber; - u16 wTotalBlockNumber; - u16 wPageSize; - u8 bExtraSize; - u8 bSecuritySupport; - u8 bAssemblyDate[8]; - u8 bFactoryArea[4]; - u8 bAssemblyMakerCode; - u8 bAssemblyMachineCode[3]; - u16 wMemoryMakerCode; - u16 wMemoryDeviceCode; - u16 wMemorySize; - u8 bReserved1; - u8 bReserved2; - u8 bVCC; - u8 bVPP; - u16 wControllerChipNumber; - u16 wControllerFunction; - u8 bReserved3[9]; - u8 bParallelSupport; - u16 wFormatValue; - u8 bFormatType; - u8 bUsage; - u8 bDeviceType; - u8 bReserved4[22]; - u8 bFUValue3; - u8 bFUValue4; - u8 bReserved5[15]; -}; - -struct ms_bootblock_header { - u16 wBlockID; - u16 wFormatVersion; - u8 bReserved1[184]; - u8 bNumberOfDataEntry; - u8 bReserved2[179]; -}; - -struct ms_bootblock_page0 { - struct ms_bootblock_header header; - struct ms_bootblock_sysent sysent; - struct ms_bootblock_sysinf sysinf; -}; - -struct ms_bootblock_cis_idi { - union { - struct ms_bootblock_cis cis; - u8 dmy[256]; - } cis; - union { - struct ms_bootblock_idi idi; - u8 dmy[256]; - } idi; -}; - -struct ms_lib_type_extdat { - u8 reserved; - u8 intr; - u8 status0; - u8 status1; - u8 ovrflg; - u8 mngflg; - u16 logadr; -}; - -struct ms_lib_ctrl { - u32 flags; - u32 BytesPerSector; - u32 NumberOfCylinder; - u32 SectorsPerCylinder; - u16 cardType; - u16 blockSize; - u16 PagesPerBlock; - u16 NumberOfPhyBlock; - u16 NumberOfLogBlock; - u16 NumberOfSegment; - u16 *Phy2LogMap; - u16 *Log2PhyMap; - u16 wrtblk; - unsigned char *pagemap[4]; - unsigned char *blkpag; - struct ms_lib_type_extdat *blkext; - unsigned char copybuf[512]; -}; - -struct ene_ub6250_info { - u8 *bbuf; - u8 SD_Status; - u8 MS_Status; - u8 SM_Status; - u16 SD_Block_Mult; - u8 SD_READ_BL_LEN; - u16 SD_C_SIZE; - u8 SD_C_SIZE_MULT; - u8 SD_SPEC_VER; - u8 SD_CSD_VER; - u8 SD20_HIGH_CAPACITY; - u32 HC_C_SIZE; - u8 MMC_SPEC_VER; - u8 MMC_BusWidth; - u8 MMC_HIGH_CAPACITY; - bool MS_SWWP; - u32 MSP_TotalBlock; - struct ms_lib_ctrl MS_Lib; - bool MS_IsRWPage; - u16 MS_Model; - u8 SM_DeviceID; - u8 SM_CardID; - unsigned char *testbuf; - u8 BIN_FLAG; - u32 bl_num; - int SrbStatus; - bool Power_IsResum; -}; - -struct digi_serial { - spinlock_t ds_serial_lock; - struct usb_serial_port *ds_oob_port; - int ds_oob_port_num; - int ds_device_started; -}; - -struct digi_port { - spinlock_t dp_port_lock; - int dp_port_num; - int dp_out_buf_len; - unsigned char dp_out_buf[8]; - int dp_write_urb_in_use; - unsigned int dp_modem_signals; - int dp_transmit_idle; - wait_queue_head_t dp_transmit_idle_wait; - int dp_throttled; - int dp_throttle_restart; - wait_queue_head_t dp_flush_wait; - wait_queue_head_t dp_close_wait; - wait_queue_head_t write_wait; - struct usb_serial_port *dp_port; -}; - -struct mct_u232_private { - struct urb *read_urb; - spinlock_t lock; - unsigned int control_state; - unsigned char last_lcr; - unsigned char last_lsr; - unsigned char last_msr; - unsigned int rx_flags; -}; - -struct qt2_device_detail { - int product_id; - int num_ports; -}; - -struct qt2_serial_private { - unsigned char current_port; - struct urb *read_urb; - char *read_buffer; -}; - -struct qt2_port_private { - u8 device_port; - spinlock_t urb_lock; - bool urb_in_use; - struct urb *write_urb; - char *write_buffer; - spinlock_t lock; - u8 shadowLSR; - u8 shadowMSR; - struct usb_serial_port *port; -}; - -typedef void * (*devcon_match_fn_t)(const struct fwnode_handle *, const char *, void *); - -enum typec_orientation { - TYPEC_ORIENTATION_NONE = 0, - TYPEC_ORIENTATION_NORMAL = 1, - TYPEC_ORIENTATION_REVERSE = 2, -}; - -struct typec_switch_dev; - -struct typec_switch { - struct typec_switch_dev *sw_devs[3]; - unsigned int num_sw_devs; -}; - -struct typec_mux_dev; - -struct typec_mux { - struct typec_mux_dev *mux_devs[3]; - unsigned int num_mux_devs; -}; - -typedef int (*typec_switch_set_fn_t)(struct typec_switch_dev *, enum typec_orientation); - -struct typec_switch_dev { - struct device dev; - typec_switch_set_fn_t set; -}; - -struct typec_switch_desc { - struct fwnode_handle *fwnode; - typec_switch_set_fn_t set; - const char *name; - void *drvdata; -}; - -typedef int (*typec_mux_set_fn_t)(struct typec_mux_dev *, struct typec_mux_state *); - -struct typec_mux_dev { - struct device dev; - typec_mux_set_fn_t set; -}; - -struct typec_mux_desc { - struct fwnode_handle *fwnode; - typec_mux_set_fn_t set; - const char *name; - void *drvdata; -}; - -struct stripe { - struct dm_dev *dev; - sector_t physical_start; - atomic_t error_count; -}; - -struct stripe_c { - uint32_t stripes; - int stripes_shift; - sector_t stripe_width; - uint32_t chunk_size; - int chunk_size_shift; - struct dm_target *ti; - struct work_struct trigger_event; - struct stripe stripe[0]; -}; - -struct net_device_devres { - struct net_device *ndev; -}; - -enum tcx_action_base { - TCX_NEXT = -1, - TCX_PASS = 0, - TCX_DROP = 2, - TCX_REDIRECT = 7, -}; - -enum netdev_queue_type { - NETDEV_QUEUE_TYPE_RX = 0, - NETDEV_QUEUE_TYPE_TX = 1, -}; - -struct net_device_path_stack { - int num_paths; - struct net_device_path path[5]; -}; - -struct bpf_xdp_link { - struct bpf_link link; - struct net_device *dev; - int flags; -}; - -struct netdev_net_notifier { - struct list_head list; - struct notifier_block *nb; -}; - -struct phy_link_topology { - struct xarray phys; - u32 next_phy_index; -}; - -struct devlink; - -enum devlink_port_type { - DEVLINK_PORT_TYPE_NOTSET = 0, - DEVLINK_PORT_TYPE_AUTO = 1, - DEVLINK_PORT_TYPE_ETH = 2, - DEVLINK_PORT_TYPE_IB = 3, -}; - -struct ib_device; - -enum devlink_port_flavour { - DEVLINK_PORT_FLAVOUR_PHYSICAL = 0, - DEVLINK_PORT_FLAVOUR_CPU = 1, - DEVLINK_PORT_FLAVOUR_DSA = 2, - DEVLINK_PORT_FLAVOUR_PCI_PF = 3, - DEVLINK_PORT_FLAVOUR_PCI_VF = 4, - DEVLINK_PORT_FLAVOUR_VIRTUAL = 5, - DEVLINK_PORT_FLAVOUR_UNUSED = 6, - DEVLINK_PORT_FLAVOUR_PCI_SF = 7, -}; - -struct devlink_port_phys_attrs { - u32 port_number; - u32 split_subport_number; -}; - -struct devlink_port_pci_pf_attrs { - u32 controller; - u16 pf; - u8 external: 1; -}; - -struct devlink_port_pci_vf_attrs { - u32 controller; - u16 pf; - u16 vf; - u8 external: 1; -}; - -struct devlink_port_pci_sf_attrs { - u32 controller; - u32 sf; - u16 pf; - u8 external: 1; -}; - -struct devlink_port_attrs { - u8 split: 1; - u8 splittable: 1; - u32 lanes; - enum devlink_port_flavour flavour; - struct netdev_phys_item_id switch_id; - union { - struct devlink_port_phys_attrs phys; - struct devlink_port_pci_pf_attrs pci_pf; - struct devlink_port_pci_vf_attrs pci_vf; - struct devlink_port_pci_sf_attrs pci_sf; - }; -}; - -struct devlink_linecard; - -struct devlink_port_ops; - -struct devlink_rate; - -struct devlink_port { - struct list_head list; - struct list_head region_list; - struct devlink *devlink; - const struct devlink_port_ops *ops; - unsigned int index; - spinlock_t type_lock; - enum devlink_port_type type; - enum devlink_port_type desired_type; - union { - struct { - struct net_device *netdev; - int ifindex; - char ifname[16]; - } type_eth; - struct { - struct ib_device *ibdev; - } type_ib; - }; - struct devlink_port_attrs attrs; - u8 attrs_set: 1; - u8 switch_port: 1; - u8 registered: 1; - u8 initialized: 1; - struct delayed_work type_warn_dw; - struct list_head reporter_list; - struct devlink_rate *devlink_rate; - struct devlink_linecard *linecard; - u32 rel_index; -}; - -struct netdev_notifier_changelowerstate_info { - struct netdev_notifier_info info; - void *lower_state_info; -}; - -struct netdev_notifier_pre_changeaddr_info { - struct netdev_notifier_info info; - const unsigned char *dev_addr; -}; - -enum netdev_offload_xstats_type { - NETDEV_OFFLOAD_XSTATS_TYPE_L3 = 1, -}; - -struct netdev_notifier_offload_xstats_rd { - struct rtnl_hw_stats64 stats; - bool used; -}; - -struct netdev_notifier_offload_xstats_ru { - bool used; -}; - -struct netdev_notifier_offload_xstats_info { - struct netdev_notifier_info info; - enum netdev_offload_xstats_type type; - union { - struct netdev_notifier_offload_xstats_rd *report_delta; - struct netdev_notifier_offload_xstats_ru *report_used; - }; -}; - -enum { - NESTED_SYNC_IMM_BIT = 0, - NESTED_SYNC_TODO_BIT = 1, -}; - -struct netdev_notifier_bonding_info { - struct netdev_notifier_info info; - struct netdev_bonding_info bonding_info; -}; - -enum qdisc_state2_t { - __QDISC_STATE2_RUNNING = 0, -}; - -enum devlink_rate_type { - DEVLINK_RATE_TYPE_LEAF = 0, - DEVLINK_RATE_TYPE_NODE = 1, -}; - -enum devlink_port_fn_state { - DEVLINK_PORT_FN_STATE_INACTIVE = 0, - DEVLINK_PORT_FN_STATE_ACTIVE = 1, -}; - -enum devlink_port_fn_opstate { - DEVLINK_PORT_FN_OPSTATE_DETACHED = 0, - DEVLINK_PORT_FN_OPSTATE_ATTACHED = 1, -}; - -struct devlink_rate { - struct list_head list; - enum devlink_rate_type type; - struct devlink *devlink; - void *priv; - u64 tx_share; - u64 tx_max; - struct devlink_rate *parent; - union { - struct devlink_port *devlink_port; - struct { - char *name; - refcount_t refcnt; - }; - }; - u32 tx_priority; - u32 tx_weight; -}; - -struct devlink_port_ops { - int (*port_split)(struct devlink *, struct devlink_port *, unsigned int, struct netlink_ext_ack *); - int (*port_unsplit)(struct devlink *, struct devlink_port *, struct netlink_ext_ack *); - int (*port_type_set)(struct devlink_port *, enum devlink_port_type); - int (*port_del)(struct devlink *, struct devlink_port *, struct netlink_ext_ack *); - int (*port_fn_hw_addr_get)(struct devlink_port *, u8 *, int *, struct netlink_ext_ack *); - int (*port_fn_hw_addr_set)(struct devlink_port *, const u8 *, int, struct netlink_ext_ack *); - int (*port_fn_roce_get)(struct devlink_port *, bool *, struct netlink_ext_ack *); - int (*port_fn_roce_set)(struct devlink_port *, bool, struct netlink_ext_ack *); - int (*port_fn_migratable_get)(struct devlink_port *, bool *, struct netlink_ext_ack *); - int (*port_fn_migratable_set)(struct devlink_port *, bool, struct netlink_ext_ack *); - int (*port_fn_state_get)(struct devlink_port *, enum devlink_port_fn_state *, enum devlink_port_fn_opstate *, struct netlink_ext_ack *); - int (*port_fn_state_set)(struct devlink_port *, enum devlink_port_fn_state, struct netlink_ext_ack *); - int (*port_fn_ipsec_crypto_get)(struct devlink_port *, bool *, struct netlink_ext_ack *); - int (*port_fn_ipsec_crypto_set)(struct devlink_port *, bool, struct netlink_ext_ack *); - int (*port_fn_ipsec_packet_get)(struct devlink_port *, bool *, struct netlink_ext_ack *); - int (*port_fn_ipsec_packet_set)(struct devlink_port *, bool, struct netlink_ext_ack *); - int (*port_fn_max_io_eqs_get)(struct devlink_port *, u32 *, struct netlink_ext_ack *); - int (*port_fn_max_io_eqs_set)(struct devlink_port *, u32, struct netlink_ext_ack *); -}; - -struct rps_map { - unsigned int len; - struct callback_head rcu; - u16 cpus[0]; -}; - -struct rps_dev_flow { - u16 cpu; - u16 filter; - unsigned int last_qtail; -}; - -struct rps_dev_flow_table { - unsigned int mask; - struct callback_head rcu; - struct rps_dev_flow flows[0]; -}; - -typedef int (*bpf_op_t)(struct net_device *, struct netdev_bpf *); - -struct dev_kfree_skb_cb { - enum skb_drop_reason reason; -}; - -enum { - NAPI_F_PREFER_BUSY_POLL = 1, - NAPI_F_END_ON_RESCHED = 2, -}; - -struct netdev_adjacent { - struct net_device *dev; - netdevice_tracker dev_tracker; - bool master; - bool ignore; - u16 ref_nr; - void *private; - struct list_head list; - struct callback_head rcu; -}; - -struct tc_defact { - __u32 index; - __u32 capab; - int action; - int refcnt; - int bindcnt; -}; - -enum { - TCA_DEF_UNSPEC = 0, - TCA_DEF_TM = 1, - TCA_DEF_PARMS = 2, - TCA_DEF_DATA = 3, - TCA_DEF_PAD = 4, - __TCA_DEF_MAX = 5, -}; - -struct tcf_defact { - struct tc_action common; - u32 tcfd_datalen; - void *tcfd_defdata; -}; - -struct tc_sfq_qopt { - unsigned int quantum; - int perturb_period; - __u32 limit; - unsigned int divisor; - unsigned int flows; -}; - -struct tc_sfqred_stats { - __u32 prob_drop; - __u32 forced_drop; - __u32 prob_mark; - __u32 forced_mark; - __u32 prob_mark_head; - __u32 forced_mark_head; -}; - -struct tc_sfq_qopt_v1 { - struct tc_sfq_qopt v0; - unsigned int depth; - unsigned int headdrop; - __u32 limit; - __u32 qth_min; - __u32 qth_max; - unsigned char Wlog; - unsigned char Plog; - unsigned char Scell_log; - unsigned char flags; - __u32 max_P; - struct tc_sfqred_stats stats; -}; - -struct tc_sfq_xstats { - __s32 allot; -}; - -typedef u16 sfq_index; - -struct sfq_head { - sfq_index next; - sfq_index prev; -}; - -struct sfq_slot { - struct sk_buff *skblist_next; - struct sk_buff *skblist_prev; - sfq_index qlen; - sfq_index next; - struct sfq_head dep; - short unsigned int hash; - int allot; - unsigned int backlog; - struct red_vars vars; -}; - -struct sfq_sched_data { - int limit; - unsigned int divisor; - u8 headdrop; - u8 maxdepth; - siphash_key_t perturbation; - u8 cur_depth; - u8 flags; - struct tcf_proto *filter_list; - struct tcf_block *block; - sfq_index *ht; - struct sfq_slot *slots; - struct red_parms *red_parms; - struct tc_sfqred_stats stats; - struct sfq_slot *tail; - struct sfq_head dep[128]; - unsigned int maxflows; - int perturb_period; - unsigned int quantum; - struct timer_list perturb_timer; - struct Qdisc *sch; -}; - -struct sockaddr_nl { - __kernel_sa_family_t nl_family; - short unsigned int nl_pad; - __u32 nl_pid; - __u32 nl_groups; -}; - -enum nlmsgerr_attrs { - NLMSGERR_ATTR_UNUSED = 0, - NLMSGERR_ATTR_MSG = 1, - NLMSGERR_ATTR_OFFS = 2, - NLMSGERR_ATTR_COOKIE = 3, - NLMSGERR_ATTR_POLICY = 4, - NLMSGERR_ATTR_MISS_TYPE = 5, - NLMSGERR_ATTR_MISS_NEST = 6, - __NLMSGERR_ATTR_MAX = 7, - NLMSGERR_ATTR_MAX = 6, -}; - -struct nl_pktinfo { - __u32 group; -}; - -enum { - NETLINK_UNCONNECTED = 0, - NETLINK_CONNECTED = 1, -}; - -enum netlink_skb_flags { - NETLINK_SKB_DST = 8, -}; - -struct netlink_tap { - struct net_device *dev; - struct module *module; - struct list_head list; -}; - -struct trace_event_raw_netlink_extack { - struct trace_entry ent; - u32 __data_loc_msg; - char __data[0]; -}; - -struct trace_event_data_offsets_netlink_extack { - u32 msg; - const void *msg_ptr_; -}; - -typedef void (*btf_trace_netlink_extack)(void *, const char *); - -struct listeners { - struct callback_head rcu; - long unsigned int masks[0]; -}; - -struct netlink_tap_net { - struct list_head netlink_tap_all; - struct mutex netlink_tap_lock; -}; - -struct netlink_compare_arg { - possible_net_t pnet; - u32 portid; -}; - -struct netlink_broadcast_data { - struct sock *exclude_sk; - struct net *net; - u32 portid; - u32 group; - int failure; - int delivery_failure; - int congested; - int delivered; - gfp_t allocation; - struct sk_buff *skb; - struct sk_buff *skb2; - int (*tx_filter)(struct sock *, struct sk_buff *, void *); - void *tx_data; -}; - -struct netlink_set_err_data { - struct sock *exclude_sk; - u32 portid; - u32 group; - int code; -}; - -struct nl_seq_iter { - struct seq_net_private p; - struct rhashtable_iter hti; - int link; -}; - -struct bpf_iter__netlink { - union { - struct bpf_iter_meta *meta; - }; - union { - struct netlink_sock *sk; - }; -}; - -enum { - ETHTOOL_A_PAUSE_STAT_UNSPEC = 0, - ETHTOOL_A_PAUSE_STAT_PAD = 1, - ETHTOOL_A_PAUSE_STAT_TX_FRAMES = 2, - ETHTOOL_A_PAUSE_STAT_RX_FRAMES = 3, - __ETHTOOL_A_PAUSE_STAT_CNT = 4, - ETHTOOL_A_PAUSE_STAT_MAX = 3, -}; - -struct pause_req_info { - struct ethnl_req_info base; - enum ethtool_mac_stats_src src; -}; - -struct pause_reply_data { - struct ethnl_reply_data base; - struct ethtool_pauseparam pauseparam; - struct ethtool_pause_stats pausestat; -}; - -struct nf_hook_entries_rcu_head { - struct callback_head head; - void *allocation; -}; - -struct nf_nat_hook { - int (*parse_nat_setup)(struct nf_conn *, enum nf_nat_manip_type, const struct nlattr *); - void (*decode_session)(struct sk_buff *, struct flowi *); - void (*remove_nat_bysrc)(struct nf_conn *); -}; - -struct nf_ct_hook { - int (*update)(struct net *, struct sk_buff *); - void (*destroy)(struct nf_conntrack *); - bool (*get_tuple_skb)(struct nf_conntrack_tuple *, const struct sk_buff *); - void (*attach)(struct sk_buff *, const struct sk_buff *); - void (*set_closing)(struct nf_conntrack *); - int (*confirm)(struct sk_buff *); -}; - -enum ctattr_timeout_udp { - CTA_TIMEOUT_UDP_UNSPEC = 0, - CTA_TIMEOUT_UDP_UNREPLIED = 1, - CTA_TIMEOUT_UDP_REPLIED = 2, - __CTA_TIMEOUT_UDP_MAX = 3, -}; - -enum ctattr_protoinfo_sctp { - CTA_PROTOINFO_SCTP_UNSPEC = 0, - CTA_PROTOINFO_SCTP_STATE = 1, - CTA_PROTOINFO_SCTP_VTAG_ORIGINAL = 2, - CTA_PROTOINFO_SCTP_VTAG_REPLY = 3, - __CTA_PROTOINFO_SCTP_MAX = 4, -}; - -enum ctattr_timeout_sctp { - CTA_TIMEOUT_SCTP_UNSPEC = 0, - CTA_TIMEOUT_SCTP_CLOSED = 1, - CTA_TIMEOUT_SCTP_COOKIE_WAIT = 2, - CTA_TIMEOUT_SCTP_COOKIE_ECHOED = 3, - CTA_TIMEOUT_SCTP_ESTABLISHED = 4, - CTA_TIMEOUT_SCTP_SHUTDOWN_SENT = 5, - CTA_TIMEOUT_SCTP_SHUTDOWN_RECD = 6, - CTA_TIMEOUT_SCTP_SHUTDOWN_ACK_SENT = 7, - CTA_TIMEOUT_SCTP_HEARTBEAT_SENT = 8, - CTA_TIMEOUT_SCTP_HEARTBEAT_ACKED = 9, - __CTA_TIMEOUT_SCTP_MAX = 10, -}; - -enum nft_hook_attributes { - NFTA_HOOK_UNSPEC = 0, - NFTA_HOOK_HOOKNUM = 1, - NFTA_HOOK_PRIORITY = 2, - NFTA_HOOK_DEV = 3, - NFTA_HOOK_DEVS = 4, - __NFTA_HOOK_MAX = 5, -}; - -enum nft_table_attributes { - NFTA_TABLE_UNSPEC = 0, - NFTA_TABLE_NAME = 1, - NFTA_TABLE_FLAGS = 2, - NFTA_TABLE_USE = 3, - NFTA_TABLE_HANDLE = 4, - NFTA_TABLE_PAD = 5, - NFTA_TABLE_USERDATA = 6, - NFTA_TABLE_OWNER = 7, - __NFTA_TABLE_MAX = 8, -}; - -enum nft_chain_attributes { - NFTA_CHAIN_UNSPEC = 0, - NFTA_CHAIN_TABLE = 1, - NFTA_CHAIN_HANDLE = 2, - NFTA_CHAIN_NAME = 3, - NFTA_CHAIN_HOOK = 4, - NFTA_CHAIN_POLICY = 5, - NFTA_CHAIN_USE = 6, - NFTA_CHAIN_TYPE = 7, - NFTA_CHAIN_COUNTERS = 8, - NFTA_CHAIN_PAD = 9, - NFTA_CHAIN_FLAGS = 10, - NFTA_CHAIN_ID = 11, - NFTA_CHAIN_USERDATA = 12, - __NFTA_CHAIN_MAX = 13, -}; - -enum nft_set_policies { - NFT_SET_POL_PERFORMANCE = 0, - NFT_SET_POL_MEMORY = 1, -}; - -enum nft_set_desc_attributes { - NFTA_SET_DESC_UNSPEC = 0, - NFTA_SET_DESC_SIZE = 1, - NFTA_SET_DESC_CONCAT = 2, - __NFTA_SET_DESC_MAX = 3, -}; - -enum nft_set_field_attributes { - NFTA_SET_FIELD_UNSPEC = 0, - NFTA_SET_FIELD_LEN = 1, - __NFTA_SET_FIELD_MAX = 2, -}; - -enum nft_set_elem_attributes { - NFTA_SET_ELEM_UNSPEC = 0, - NFTA_SET_ELEM_KEY = 1, - NFTA_SET_ELEM_DATA = 2, - NFTA_SET_ELEM_FLAGS = 3, - NFTA_SET_ELEM_TIMEOUT = 4, - NFTA_SET_ELEM_EXPIRATION = 5, - NFTA_SET_ELEM_USERDATA = 6, - NFTA_SET_ELEM_EXPR = 7, - NFTA_SET_ELEM_PAD = 8, - NFTA_SET_ELEM_OBJREF = 9, - NFTA_SET_ELEM_KEY_END = 10, - NFTA_SET_ELEM_EXPRESSIONS = 11, - __NFTA_SET_ELEM_MAX = 12, -}; - -enum nft_set_elem_list_attributes { - NFTA_SET_ELEM_LIST_UNSPEC = 0, - NFTA_SET_ELEM_LIST_TABLE = 1, - NFTA_SET_ELEM_LIST_SET = 2, - NFTA_SET_ELEM_LIST_ELEMENTS = 3, - NFTA_SET_ELEM_LIST_SET_ID = 4, - __NFTA_SET_ELEM_LIST_MAX = 5, -}; - -enum nft_data_attributes { - NFTA_DATA_UNSPEC = 0, - NFTA_DATA_VALUE = 1, - NFTA_DATA_VERDICT = 2, - __NFTA_DATA_MAX = 3, -}; - -enum nft_verdict_attributes { - NFTA_VERDICT_UNSPEC = 0, - NFTA_VERDICT_CODE = 1, - NFTA_VERDICT_CHAIN = 2, - NFTA_VERDICT_CHAIN_ID = 3, - __NFTA_VERDICT_MAX = 4, -}; - -enum nft_expr_attributes { - NFTA_EXPR_UNSPEC = 0, - NFTA_EXPR_NAME = 1, - NFTA_EXPR_DATA = 2, - __NFTA_EXPR_MAX = 3, -}; - -enum nft_counter_attributes { - NFTA_COUNTER_UNSPEC = 0, - NFTA_COUNTER_BYTES = 1, - NFTA_COUNTER_PACKETS = 2, - NFTA_COUNTER_PAD = 3, - __NFTA_COUNTER_MAX = 4, -}; - -enum nft_gen_attributes { - NFTA_GEN_UNSPEC = 0, - NFTA_GEN_ID = 1, - NFTA_GEN_PROC_PID = 2, - NFTA_GEN_PROC_NAME = 3, - __NFTA_GEN_MAX = 4, -}; - -enum nft_object_attributes { - NFTA_OBJ_UNSPEC = 0, - NFTA_OBJ_TABLE = 1, - NFTA_OBJ_NAME = 2, - NFTA_OBJ_TYPE = 3, - NFTA_OBJ_DATA = 4, - NFTA_OBJ_USE = 5, - NFTA_OBJ_HANDLE = 6, - NFTA_OBJ_PAD = 7, - NFTA_OBJ_USERDATA = 8, - __NFTA_OBJ_MAX = 9, -}; - -enum nft_flowtable_flags { - NFT_FLOWTABLE_HW_OFFLOAD = 1, - NFT_FLOWTABLE_COUNTER = 2, - NFT_FLOWTABLE_MASK = 3, -}; - -enum nft_flowtable_attributes { - NFTA_FLOWTABLE_UNSPEC = 0, - NFTA_FLOWTABLE_TABLE = 1, - NFTA_FLOWTABLE_NAME = 2, - NFTA_FLOWTABLE_HOOK = 3, - NFTA_FLOWTABLE_USE = 4, - NFTA_FLOWTABLE_HANDLE = 5, - NFTA_FLOWTABLE_PAD = 6, - NFTA_FLOWTABLE_FLAGS = 7, - __NFTA_FLOWTABLE_MAX = 8, -}; - -enum nft_flowtable_hook_attributes { - NFTA_FLOWTABLE_HOOK_UNSPEC = 0, - NFTA_FLOWTABLE_HOOK_NUM = 1, - NFTA_FLOWTABLE_HOOK_PRIORITY = 2, - NFTA_FLOWTABLE_HOOK_DEVS = 3, - __NFTA_FLOWTABLE_HOOK_MAX = 4, -}; - -enum nft_devices_attributes { - NFTA_DEVICE_UNSPEC = 0, - NFTA_DEVICE_NAME = 1, - __NFTA_DEVICE_MAX = 2, -}; - -enum nft_data_desc_flags { - NFT_DATA_DESC_SETELEM = 1, -}; - -struct nft_userdata { - u8 len; - unsigned char data[0]; -}; - -struct nft_rule_dp_last { - struct nft_rule_dp end; - struct callback_head h; - struct nft_rule_blob *blob; - const struct nft_chain *chain; -}; - -struct nft_flowtable { - struct list_head list; - struct nft_table *table; - char *name; - int hooknum; - int ops_len; - u32 genmask: 2; - u32 use; - u64 handle; - long: 64; - struct list_head hook_list; - struct nf_flowtable data; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct nft_trans_set { - struct nft_trans_binding nft_trans_binding; - struct list_head list_trans_newset; - struct nft_set *set; - u32 set_id; - u32 gc_int; - u64 timeout; - bool update; - bool bound; - u32 size; -}; - -struct nft_trans_table { - struct nft_trans nft_trans; - bool update; -}; - -enum nft_trans_elem_flags { - NFT_TRANS_UPD_TIMEOUT = 1, - NFT_TRANS_UPD_EXPIRATION = 2, -}; - -struct nft_trans_elem { - struct nft_trans nft_trans; - struct nft_set *set; - struct nft_elem_priv *elem_priv; - u64 timeout; - u64 expiration; - u8 update_flags; - bool bound; -}; - -struct nft_trans_obj { - struct nft_trans nft_trans; - struct nft_object *obj; - struct nft_object *newobj; - bool update; -}; - -struct nft_trans_flowtable { - struct nft_trans nft_trans; - struct nft_flowtable *flowtable; - struct list_head hook_list; - u32 flags; - bool update; -}; - -enum { - NFT_VALIDATE_SKIP = 0, - NFT_VALIDATE_NEED = 1, - NFT_VALIDATE_DO = 2, -}; - -struct nft_audit_data { - struct nft_table *table; - int entries; - int op; - struct list_head list; -}; - -struct nft_set_elem_catchall { - struct list_head list; - struct callback_head rcu; - struct nft_elem_priv *elem; -}; - -struct nft_module_request { - struct list_head list; - char module[56]; - bool done; -}; - -struct nftnl_skb_parms { - bool report; -}; - -struct nft_chain_hook { - u32 num; - s32 priority; - const struct nft_chain_type *type; - struct list_head list; -}; - -struct nft_rule_dump_ctx { - unsigned int s_idx; - char *table; - char *chain; - bool reset; -}; - -struct nft_set_dump_args { - const struct netlink_callback *cb; - struct nft_set_iter iter; - struct sk_buff *skb; - bool reset; -}; - -struct nft_set_dump_ctx { - const struct nft_set *set; - struct nft_ctx ctx; - bool reset; -}; - -struct nft_obj_dump_ctx { - unsigned int s_idx; - char *table; - u32 type; - bool reset; -}; - -struct nft_flowtable_hook { - u32 num; - int priority; - struct list_head list; -}; - -struct nft_flowtable_filter { - char *table; -}; - -enum nft_osf_attributes { - NFTA_OSF_UNSPEC = 0, - NFTA_OSF_DREG = 1, - NFTA_OSF_TTL = 2, - NFTA_OSF_FLAGS = 3, - __NFTA_OSF_MAX = 4, -}; - -enum nft_osf_flags { - NFT_OSF_F_VERSION = 1, -}; - -struct nf_osf_data { - const char *genre; - const char *version; -}; - -struct nft_osf { - u8 dreg; - u8 ttl; - u32 flags; -}; - -enum xt_multiport_flags { - XT_MULTIPORT_SOURCE = 0, - XT_MULTIPORT_DESTINATION = 1, - XT_MULTIPORT_EITHER = 2, -}; - -struct xt_multiport_v1 { - __u8 flags; - __u8 count; - __u16 ports[15]; - __u8 pflags[15]; - __u8 invert; -}; - -struct hash_netport4_elem { - __be32 ip; - __be16 port; - u8 proto; - u8 cidr: 7; - u8 nomatch: 1; -}; - -struct hash_netport4 { - struct htable *table; - struct htable_gc gc; - u32 maxelem; - u32 initval; - u8 bucketsize; - struct list_head ad; - struct hash_netport4_elem next; - struct net_prefixes nets[32]; -}; - -struct hash_netport4_resize_ad { - struct list_head list; - enum ipset_adt ad; - struct hash_netport4_elem d; - struct ip_set_ext ext; - struct ip_set_ext mext; - u32 flags; -}; - -struct hash_netport6_elem { - union nf_inet_addr ip; - __be16 port; - u8 proto; - u8 cidr: 7; - u8 nomatch: 1; -}; - -struct hash_netport6 { - struct htable *table; - struct htable_gc gc; - u32 maxelem; - u32 initval; - u8 bucketsize; - struct list_head ad; - struct hash_netport6_elem next; - struct net_prefixes nets[128]; -}; - -struct hash_netport6_resize_ad { - struct list_head list; - enum ipset_adt ad; - struct hash_netport6_elem d; - struct ip_set_ext ext; - struct ip_set_ext mext; - u32 flags; -}; - -enum { - IP_VS_UDP_S_NORMAL = 0, - IP_VS_UDP_S_LAST = 1, -}; - -enum { - IP_VS_DIR_INPUT = 0, - IP_VS_DIR_OUTPUT = 1, - IP_VS_DIR_INPUT_ONLY = 2, - IP_VS_DIR_LAST = 3, -}; - -struct ifaddrmsg { - __u8 ifa_family; - __u8 ifa_prefixlen; - __u8 ifa_flags; - __u8 ifa_scope; - __u32 ifa_index; -}; - -enum { - IFA_UNSPEC = 0, - IFA_ADDRESS = 1, - IFA_LOCAL = 2, - IFA_LABEL = 3, - IFA_BROADCAST = 4, - IFA_ANYCAST = 5, - IFA_CACHEINFO = 6, - IFA_MULTICAST = 7, - IFA_FLAGS = 8, - IFA_RT_PRIORITY = 9, - IFA_TARGET_NETNSID = 10, - IFA_PROTO = 11, - __IFA_MAX = 12, -}; - -struct ifa_cacheinfo { - __u32 ifa_prefered; - __u32 ifa_valid; - __u32 cstamp; - __u32 tstamp; -}; - -enum { - IFLA_INET_UNSPEC = 0, - IFLA_INET_CONF = 1, - __IFLA_INET_MAX = 2, -}; - -struct in_validator_info { - __be32 ivi_addr; - struct in_device *ivi_dev; - struct netlink_ext_ack *extack; -}; - -struct inet_fill_args { - u32 portid; - u32 seq; - int event; - unsigned int flags; - int netnsid; - int ifindex; -}; - -struct devinet_sysctl_table { - struct ctl_table_header *sysctl_header; - struct ctl_table devinet_vars[33]; -}; - -struct bpf_fou_encap { - __be16 sport; - __be16 dport; -}; - -enum bpf_fou_encap_type { - FOU_BPF_ENCAP_FOU = 0, - FOU_BPF_ENCAP_GUE = 1, -}; - -enum __sk_action { - __SK_DROP = 0, - __SK_PASS = 1, - __SK_REDIRECT = 2, - __SK_NONE = 3, -}; - -enum sk_psock_state_bits { - SK_PSOCK_TX_ENABLED = 0, - SK_PSOCK_RX_STRP_ENABLED = 1, -}; - -struct tx_work { - struct delayed_work work; - struct sock *sk; -}; - -struct tls_rec; - -struct tls_sw_context_tx { - struct crypto_aead *aead_send; - struct crypto_wait async_wait; - struct tx_work tx_work; - struct tls_rec *open_rec; - struct list_head tx_list; - atomic_t encrypt_pending; - u8 async_capable: 1; - long unsigned int tx_bitmask; -}; - -enum { - TCP_BPF_IPV4 = 0, - TCP_BPF_IPV6 = 1, - TCP_BPF_NUM_PROTS = 2, -}; - -enum { - TCP_BPF_BASE = 0, - TCP_BPF_TX = 1, - TCP_BPF_RX = 2, - TCP_BPF_TXRX = 3, - TCP_BPF_NUM_CFGS = 4, -}; - -struct ip_beet_phdr { - __u8 nexthdr; - __u8 hdrlen; - __u8 padlen; - __u8 reserved; -}; - -enum { - XFRM_MODE_FLAG_TUNNEL = 1, -}; - -enum { - BPF_F_CURRENT_NETNS = -1, -}; - -struct bpf_xfrm_state_opts { - s32 error; - s32 netns_id; - u32 mark; - xfrm_address_t daddr; - __be32 spi; - u8 proto; - u16 family; -}; - -enum { - BPF_XFRM_STATE_OPTS_SZ = 36, -}; - -struct ipv6_params { - __s32 disable_ipv6; - __s32 autoconf; -}; - -struct icmp6_filter { - __u32 data[8]; -}; - -struct raw6_sock { - struct inet_sock inet; - __u32 checksum; - __u32 offset; - struct icmp6_filter filter; - __u32 ip6mr_table; - struct ipv6_pinfo inet6; -}; - -struct raw_iter_state { - struct seq_net_private p; - int bucket; -}; - -typedef int mh_filter_t(struct sock *, struct sk_buff *); - -struct raw6_frag_vec { - struct msghdr *msg; - int hlen; - char c[4]; -}; - -struct ipv6_rpl_sr_hdr { - __u8 nexthdr; - __u8 hdrlen; - __u8 type; - __u8 segments_left; - __u32 cmpre: 4; - __u32 cmpri: 4; - __u32 reserved: 4; - __u32 pad: 4; - __u32 reserved1: 16; - union { - struct { - struct {} __empty_addr; - struct in6_addr addr[0]; - }; - struct { - struct {} __empty_data; - __u8 data[0]; - }; - } segments; -}; - -enum { - ILA_ATTR_UNSPEC = 0, - ILA_ATTR_LOCATOR = 1, - ILA_ATTR_IDENTIFIER = 2, - ILA_ATTR_LOCATOR_MATCH = 3, - ILA_ATTR_IFINDEX = 4, - ILA_ATTR_DIR = 5, - ILA_ATTR_PAD = 6, - ILA_ATTR_CSUM_MODE = 7, - ILA_ATTR_IDENT_TYPE = 8, - ILA_ATTR_HOOK_TYPE = 9, - __ILA_ATTR_MAX = 10, -}; - -enum { - ILA_CMD_UNSPEC = 0, - ILA_CMD_ADD = 1, - ILA_CMD_DEL = 2, - ILA_CMD_GET = 3, - ILA_CMD_FLUSH = 4, - __ILA_CMD_MAX = 5, -}; - -struct xfrm6_tunnel { - int (*handler)(struct sk_buff *); - int (*cb_handler)(struct sk_buff *, int); - int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); - struct xfrm6_tunnel *next; - int priority; -}; - -struct ip6_tnl_parm { - char name[16]; - int link; - __u8 proto; - __u8 encap_limit; - __u8 hop_limit; - __be32 flowinfo; - __u32 flags; - struct in6_addr laddr; - struct in6_addr raddr; -}; - -struct ip6_tnl_net { - struct net_device *fb_tnl_dev; - struct ip6_tnl *tnls_r_l[32]; - struct ip6_tnl *tnls_wc[1]; - struct ip6_tnl **tnls[2]; - struct ip6_tnl *collect_md_tun; -}; - -struct ipv6_tel_txoption { - struct ipv6_txoptions ops; - __u8 dst_opt[8]; -}; - -enum { - PIM_TYPE_HELLO = 0, - PIM_TYPE_REGISTER = 1, - PIM_TYPE_REGISTER_STOP = 2, - PIM_TYPE_JOIN_PRUNE = 3, - PIM_TYPE_BOOTSTRAP = 4, - PIM_TYPE_ASSERT = 5, - PIM_TYPE_GRAFT = 6, - PIM_TYPE_GRAFT_ACK = 7, - PIM_TYPE_CANDIDATE_RP_ADV = 8, -}; - -struct pimhdr { - __u8 type; - __u8 reserved; - __be16 csum; -}; - -enum { - BRIDGE_QUERIER_UNSPEC = 0, - BRIDGE_QUERIER_IP_ADDRESS = 1, - BRIDGE_QUERIER_IP_PORT = 2, - BRIDGE_QUERIER_IP_OTHER_TIMER = 3, - BRIDGE_QUERIER_PAD = 4, - BRIDGE_QUERIER_IPV6_ADDRESS = 5, - BRIDGE_QUERIER_IPV6_PORT = 6, - BRIDGE_QUERIER_IPV6_OTHER_TIMER = 7, - __BRIDGE_QUERIER_MAX = 8, -}; - -struct br_ip_list { - struct list_head list; - struct br_ip addr; -}; - -struct net_bridge_group_src { - struct hlist_node node; - struct br_ip addr; - struct net_bridge_port_group *pg; - u8 flags; - u8 src_query_rexmit_cnt; - struct timer_list timer; - struct net_bridge *br; - struct net_bridge_mcast_gc mcast_gc; - struct callback_head rcu; -}; - -struct ebt_arp_info { - __be16 htype; - __be16 ptype; - __be16 opcode; - __be32 saddr; - __be32 smsk; - __be32 daddr; - __be32 dmsk; - unsigned char smaddr[6]; - unsigned char smmsk[6]; - unsigned char dmaddr[6]; - unsigned char dmmsk[6]; - __u8 bitmask; - __u8 invflags; -}; - -struct ebt_redirect_info { - int target; -}; - -enum rpc_reply_stat { - RPC_MSG_ACCEPTED = 0, - RPC_MSG_DENIED = 1, -}; - -enum rpc_reject_stat { - RPC_MISMATCH = 0, - RPC_AUTH_ERROR = 1, -}; - -enum { - SVC_POOL_AUTO = -1, - SVC_POOL_GLOBAL = 0, - SVC_POOL_PERCPU = 1, - SVC_POOL_PERNODE = 2, -}; - -struct svc_pool_map { - int count; - int mode; - unsigned int npools; - unsigned int *pool_to; - unsigned int *to_pool; -}; - -typedef struct xdr_netobj gssx_buffer; - -typedef struct xdr_netobj utf8string; - -typedef struct xdr_netobj gssx_OID; - -struct gssx_option { - gssx_buffer option; - gssx_buffer value; -}; - -struct gssx_option_array { - u32 count; - struct gssx_option *data; -}; - -struct gssx_status { - u64 major_status; - gssx_OID mech; - u64 minor_status; - utf8string major_status_string; - utf8string minor_status_string; - gssx_buffer server_ctx; - struct gssx_option_array options; -}; - -struct gssx_call_ctx { - utf8string locale; - gssx_buffer server_ctx; - struct gssx_option_array options; -}; - -struct gssx_name_attr { - gssx_buffer attr; - gssx_buffer value; - struct gssx_option_array extensions; -}; - -struct gssx_name_attr_array { - u32 count; - struct gssx_name_attr *data; -}; - -struct gssx_name { - gssx_buffer display_name; -}; - -typedef struct gssx_name gssx_name; - -struct gssx_cred_element { - gssx_name MN; - gssx_OID mech; - u32 cred_usage; - u64 initiator_time_rec; - u64 acceptor_time_rec; - struct gssx_option_array options; -}; - -struct gssx_cred_element_array { - u32 count; - struct gssx_cred_element *data; -}; - -struct gssx_cred { - gssx_name desired_name; - struct gssx_cred_element_array elements; - gssx_buffer cred_handle_reference; - u32 needs_release; -}; - -struct gssx_ctx { - gssx_buffer exported_context_token; - gssx_buffer state; - u32 need_release; - gssx_OID mech; - gssx_name src_name; - gssx_name targ_name; - u64 lifetime; - u64 ctx_flags; - u32 locally_initiated; - u32 open; - struct gssx_option_array options; -}; - -struct gssx_cb { - u64 initiator_addrtype; - gssx_buffer initiator_address; - u64 acceptor_addrtype; - gssx_buffer acceptor_address; - gssx_buffer application_data; -}; - -struct gssp_in_token { - struct page **pages; - unsigned int page_base; - unsigned int page_len; -}; - -struct gssx_arg_accept_sec_context { - struct gssx_call_ctx call_ctx; - struct gssx_ctx *context_handle; - struct gssx_cred *cred_handle; - struct gssp_in_token input_token; - struct gssx_cb *input_cb; - u32 ret_deleg_cred; - struct gssx_option_array options; - struct page **pages; - unsigned int npages; -}; - -struct gssx_res_accept_sec_context { - struct gssx_status status; - struct gssx_ctx *context_handle; - gssx_buffer *output_token; - struct gssx_option_array options; -}; - -enum sctp_sn_error { - SCTP_FAILED_THRESHOLD = 0, - SCTP_RECEIVED_SACK = 1, - SCTP_HEARTBEAT_SUCCESS = 2, - SCTP_RESPONSE_TO_USER_REQ = 3, - SCTP_INTERNAL_ERROR = 4, - SCTP_SHUTDOWN_GUARD_EXPIRES = 5, - SCTP_PEER_FAULTY = 6, -}; - -typedef enum sctp_sn_error sctp_sn_error_t; - -enum sctp_transport_cmd { - SCTP_TRANSPORT_UP = 0, - SCTP_TRANSPORT_DOWN = 1, - SCTP_TRANSPORT_PF = 2, -}; - -enum sctp_retransmit_reason { - SCTP_RTXR_T3_RTX = 0, - SCTP_RTXR_FAST_RTX = 1, - SCTP_RTXR_PMTUD = 2, - SCTP_RTXR_T1_RTX = 3, -}; - -enum sctp_lower_cwnd { - SCTP_LOWER_CWND_T3_RTX = 0, - SCTP_LOWER_CWND_FAST_RTX = 1, - SCTP_LOWER_CWND_ECNE = 2, - SCTP_LOWER_CWND_INACTIVE = 3, -}; - -typedef enum sctp_disposition sctp_state_fn_t(struct net *, const struct sctp_endpoint *, const struct sctp_association *, const union sctp_subtype, void *, struct sctp_cmd_seq *); - -typedef void sctp_timer_event_t(struct timer_list *); - -struct sctp_sm_table_entry { - sctp_state_fn_t *fn; - const char *name; -}; - -typedef const char *printfn_t(union sctp_subtype); - -struct virtio_9p_config { - __virtio16 tag_len; - __u8 tag[0]; -}; - -struct virtio_chan { - bool inuse; - spinlock_t lock; - struct p9_client *client; - struct virtio_device *vdev; - struct virtqueue *vq; - int ring_bufs_avail; - wait_queue_head_t *vc_wq; - long unsigned int p9_max_pages; - struct scatterlist sg[128]; - char *tag; - struct list_head chan_list; -}; - -struct ovs_header { - int dp_ifindex; -}; - -struct ovs_key_ct_tuple_ipv4 { - __be32 ipv4_src; - __be32 ipv4_dst; - __be16 src_port; - __be16 dst_port; - __u8 ipv4_proto; -}; - -struct ovs_key_ct_tuple_ipv6 { - __be32 ipv6_src[4]; - __be32 ipv6_dst[4]; - __be16 src_port; - __be16 dst_port; - __u8 ipv6_proto; -}; - -enum ovs_ct_attr { - OVS_CT_ATTR_UNSPEC = 0, - OVS_CT_ATTR_COMMIT = 1, - OVS_CT_ATTR_ZONE = 2, - OVS_CT_ATTR_MARK = 3, - OVS_CT_ATTR_LABELS = 4, - OVS_CT_ATTR_HELPER = 5, - OVS_CT_ATTR_NAT = 6, - OVS_CT_ATTR_FORCE_COMMIT = 7, - OVS_CT_ATTR_EVENTMASK = 8, - OVS_CT_ATTR_TIMEOUT = 9, - __OVS_CT_ATTR_MAX = 10, -}; - -enum ovs_nat_attr { - OVS_NAT_ATTR_UNSPEC = 0, - OVS_NAT_ATTR_SRC = 1, - OVS_NAT_ATTR_DST = 2, - OVS_NAT_ATTR_IP_MIN = 3, - OVS_NAT_ATTR_IP_MAX = 4, - OVS_NAT_ATTR_PROTO_MIN = 5, - OVS_NAT_ATTR_PROTO_MAX = 6, - OVS_NAT_ATTR_PERSISTENT = 7, - OVS_NAT_ATTR_PROTO_HASH = 8, - OVS_NAT_ATTR_PROTO_RANDOM = 9, - __OVS_NAT_ATTR_MAX = 10, -}; - -enum ovs_action_attr { - OVS_ACTION_ATTR_UNSPEC = 0, - OVS_ACTION_ATTR_OUTPUT = 1, - OVS_ACTION_ATTR_USERSPACE = 2, - OVS_ACTION_ATTR_SET = 3, - OVS_ACTION_ATTR_PUSH_VLAN = 4, - OVS_ACTION_ATTR_POP_VLAN = 5, - OVS_ACTION_ATTR_SAMPLE = 6, - OVS_ACTION_ATTR_RECIRC = 7, - OVS_ACTION_ATTR_HASH = 8, - OVS_ACTION_ATTR_PUSH_MPLS = 9, - OVS_ACTION_ATTR_POP_MPLS = 10, - OVS_ACTION_ATTR_SET_MASKED = 11, - OVS_ACTION_ATTR_CT = 12, - OVS_ACTION_ATTR_TRUNC = 13, - OVS_ACTION_ATTR_PUSH_ETH = 14, - OVS_ACTION_ATTR_POP_ETH = 15, - OVS_ACTION_ATTR_CT_CLEAR = 16, - OVS_ACTION_ATTR_PUSH_NSH = 17, - OVS_ACTION_ATTR_POP_NSH = 18, - OVS_ACTION_ATTR_METER = 19, - OVS_ACTION_ATTR_CLONE = 20, - OVS_ACTION_ATTR_CHECK_PKT_LEN = 21, - OVS_ACTION_ATTR_ADD_MPLS = 22, - OVS_ACTION_ATTR_DEC_TTL = 23, - OVS_ACTION_ATTR_DROP = 24, - OVS_ACTION_ATTR_PSAMPLE = 25, - __OVS_ACTION_ATTR_MAX = 26, - OVS_ACTION_ATTR_SET_TO_MASKED = 27, -}; - -enum ovs_ct_limit_cmd { - OVS_CT_LIMIT_CMD_UNSPEC = 0, - OVS_CT_LIMIT_CMD_SET = 1, - OVS_CT_LIMIT_CMD_DEL = 2, - OVS_CT_LIMIT_CMD_GET = 3, -}; - -enum ovs_ct_limit_attr { - OVS_CT_LIMIT_ATTR_UNSPEC = 0, - OVS_CT_LIMIT_ATTR_ZONE_LIMIT = 1, - __OVS_CT_LIMIT_ATTR_MAX = 2, -}; - -struct ovs_zone_limit { - int zone_id; - __u32 limit; - __u32 count; -}; - -struct nf_conn_act_ct_ext { - int ifindex[2]; -}; - -struct ovs_ct_limit_info { - u32 default_limit; - struct hlist_head *limits; - struct nf_conncount_data *data; -}; - -enum ovs_drop_reason { - __OVS_DROP_REASON = 196608, - OVS_DROP_LAST_ACTION = 196609, - OVS_DROP_ACTION_ERROR = 196610, - OVS_DROP_EXPLICIT = 196611, - OVS_DROP_EXPLICIT_WITH_ERROR = 196612, - OVS_DROP_METER = 196613, - OVS_DROP_RECURSION_LIMIT = 196614, - OVS_DROP_DEFERRED_LIMIT = 196615, - OVS_DROP_FRAG_L2_TOO_LONG = 196616, - OVS_DROP_FRAG_INVALID_PROTO = 196617, - OVS_DROP_CONNTRACK = 196618, - OVS_DROP_IP_TTL = 196619, - OVS_DROP_MAX = 196620, -}; - -struct ovs_ct_len_tbl { - int maxlen; - int minlen; -}; - -struct md_mark { - u32 value; - u32 mask; -}; - -struct md_labels { - struct ovs_key_ct_labels value; - struct ovs_key_ct_labels mask; -}; - -enum ovs_ct_nat { - OVS_CT_NAT = 1, - OVS_CT_SRC_NAT = 2, - OVS_CT_DST_NAT = 4, -}; - -struct ovs_conntrack_info { - struct nf_conntrack_helper *helper; - struct nf_conntrack_zone zone; - struct nf_conn *ct; - u8 commit: 1; - u8 nat: 3; - u8 force: 1; - u8 have_eventmask: 1; - u16 family; - u32 eventmask; - struct md_mark mark; - struct md_labels labels; - char timeout[32]; - struct nf_ct_timeout *nf_ct_timeout; - struct nf_nat_range2 range; -}; - -struct ovs_ct_limit { - struct hlist_node hlist_node; - struct callback_head rcu; - u16 zone; - u32 limit; -}; - -enum l3mdev_type { - L3MDEV_TYPE_UNSPEC = 0, - L3MDEV_TYPE_VRF = 1, - __L3MDEV_TYPE_MAX = 2, -}; - -typedef int (*lookup_by_table_id_t)(struct net *, u32); - -struct l3mdev_handler { - lookup_by_table_id_t dev_lookup; -}; - -struct maple_metadata { - unsigned char end; - unsigned char gap; -}; - -struct maple_pnode; - -struct maple_range_64 { - struct maple_pnode *parent; - long unsigned int pivot[15]; - union { - void *slot[16]; - struct { - void *pad[15]; - struct maple_metadata meta; - }; - }; -}; - -struct maple_arange_64 { - struct maple_pnode *parent; - long unsigned int pivot[9]; - void *slot[10]; - long unsigned int gap[10]; - struct maple_metadata meta; -}; - -struct maple_topiary { - struct maple_pnode *parent; - struct maple_enode *next; -}; - -enum maple_type { - maple_dense = 0, - maple_leaf_64 = 1, - maple_range_64 = 2, - maple_arange_64 = 3, -}; - -struct maple_node { - union { - struct { - struct maple_pnode *parent; - void *slot[31]; - }; - struct { - void *pad; - struct callback_head rcu; - struct maple_enode *piv_parent; - unsigned char parent_slot; - enum maple_type type; - unsigned char slot_len; - unsigned int ma_flags; - }; - struct maple_range_64 mr64; - struct maple_arange_64 ma64; - struct maple_alloc alloc; - }; -}; - -struct ma_topiary { - struct maple_enode *head; - struct maple_enode *tail; - struct maple_tree *mtree; -}; - -struct ma_wr_state { - struct ma_state *mas; - struct maple_node *node; - long unsigned int r_min; - long unsigned int r_max; - enum maple_type type; - unsigned char offset_end; - long unsigned int *pivots; - long unsigned int end_piv; - void **slots; - void *entry; - void *content; -}; - -struct trace_event_raw_ma_op { - struct trace_entry ent; - const char *fn; - long unsigned int min; - long unsigned int max; - long unsigned int index; - long unsigned int last; - void *node; - char __data[0]; -}; - -struct trace_event_raw_ma_read { - struct trace_entry ent; - const char *fn; - long unsigned int min; - long unsigned int max; - long unsigned int index; - long unsigned int last; - void *node; - char __data[0]; -}; - -struct trace_event_raw_ma_write { - struct trace_entry ent; - const char *fn; - long unsigned int min; - long unsigned int max; - long unsigned int index; - long unsigned int last; - long unsigned int piv; - void *val; - void *node; - char __data[0]; -}; - -struct trace_event_data_offsets_ma_op {}; - -struct trace_event_data_offsets_ma_read {}; - -struct trace_event_data_offsets_ma_write {}; - -typedef void (*btf_trace_ma_op)(void *, const char *, struct ma_state *); - -typedef void (*btf_trace_ma_read)(void *, const char *, struct ma_state *); - -typedef void (*btf_trace_ma_write)(void *, const char *, struct ma_state *, long unsigned int, void *); - -struct maple_big_node { - struct maple_pnode *parent; - long unsigned int pivot[33]; - union { - struct maple_enode *slot[34]; - struct { - long unsigned int padding[21]; - long unsigned int gap[21]; - }; - }; - unsigned char b_end; - enum maple_type type; -}; - -struct maple_subtree_state { - struct ma_state *orig_l; - struct ma_state *orig_r; - struct ma_state *l; - struct ma_state *m; - struct ma_state *r; - struct ma_topiary *free; - struct ma_topiary *destroy; - struct maple_big_node *bn; -}; - -enum { - MAX_IORES_LEVEL = 5, -}; - -struct region_devres { - struct resource *parent; - resource_size_t start; - resource_size_t n; -}; - -struct semaphore_waiter { - struct list_head list; - struct task_struct *task; - bool up; -}; - -enum rwsem_waiter_type { - RWSEM_WAITING_FOR_WRITE = 0, - RWSEM_WAITING_FOR_READ = 1, -}; - -struct rwsem_waiter { - struct list_head list; - struct task_struct *task; - enum rwsem_waiter_type type; - long unsigned int timeout; - bool handoff_set; -}; - -enum rwsem_wake_type { - RWSEM_WAKE_ANY = 0, - RWSEM_WAKE_READERS = 1, - RWSEM_WAKE_READ_OWNED = 2, -}; - -enum owner_state { - OWNER_NULL = 1, - OWNER_WRITER = 2, - OWNER_READER = 4, - OWNER_NONSPINNABLE = 8, -}; - -struct module_sect_attr { - struct bin_attribute battr; - long unsigned int address; -}; - -struct module_sect_attrs { - struct attribute_group grp; - unsigned int nsections; - struct module_sect_attr attrs[0]; -}; - -struct module_notes_attrs { - struct kobject *dir; - unsigned int notes; - struct bin_attribute attrs[0]; -}; - -struct stacktrace_cookie { - long unsigned int *store; - unsigned int size; - unsigned int skip; - unsigned int len; -}; - -typedef struct { - spinlock_t *lock; -} class_spinlock_irq_t; - -typedef struct sigevent sigevent_t; - -struct cgroup_fs_context { - struct kernfs_fs_context kfc; - struct cgroup_root *root; - struct cgroup_namespace *ns; - unsigned int flags; - bool cpuset_clone_children; - bool none; - bool all_ss; - u16 subsys_mask; - char *name; - char *release_agent; -}; - -enum cgroup_filetype { - CGROUP_FILE_PROCS = 0, - CGROUP_FILE_TASKS = 1, -}; - -struct cgroup_pidlist { - struct { - enum cgroup_filetype type; - struct pid_namespace *ns; - } key; - pid_t *list; - int length; - struct list_head links; - struct cgroup *owner; - struct delayed_work destroy_dwork; -}; - -struct cgroup_file_ctx { - struct cgroup_namespace *ns; - struct { - void *trigger; - } psi; - struct { - bool started; - struct css_task_iter iter; - } procs; - struct { - struct cgroup_pidlist *pidlist; - } procs1; - struct cgroup_of_peak peak; -}; - -struct cgrp_cset_link { - struct cgroup *cgrp; - struct css_set *cset; - struct list_head cset_link; - struct list_head cgrp_link; -}; - -struct cgroup_mgctx { - struct list_head preloaded_src_csets; - struct list_head preloaded_dst_csets; - struct cgroup_taskset tset; - u16 ss_mask; -}; - -enum cgroup1_param { - Opt_all = 0, - Opt_clone_children = 1, - Opt_cpuset_v2_mode = 2, - Opt_name = 3, - Opt_none = 4, - Opt_noprefix = 5, - Opt_release_agent = 6, - Opt_xattr = 7, - Opt_favordynmods = 8, - Opt_nofavordynmods = 9, -}; - -struct stat_node { - struct rb_node node; - void *stat; -}; - -struct stat_session { - struct list_head session_list; - struct tracer_stat *ts; - struct rb_root stat_root; - struct mutex stat_mutex; - struct dentry *file; -}; - -struct module_string { - struct list_head next; - struct module *module; - char *str; -}; - -enum { - FORMAT_HEADER = 1, - FORMAT_FIELD_SEPERATOR = 2, - FORMAT_PRINTFMT = 3, -}; - -struct boot_triggers { - const char *event; - char *trigger; -}; - -struct event_probe_data { - struct trace_event_file *file; - long unsigned int count; - int ref; - bool enable; -}; - -struct bpf_timer { - __u64 __opaque[2]; -}; - -struct bpf_wq { - __u64 __opaque[2]; -}; - -struct bpf_list_head { - __u64 __opaque[2]; -}; - -struct bpf_list_node { - __u64 __opaque[3]; -}; - -struct bpf_rb_root { - __u64 __opaque[2]; -}; - -struct bpf_rb_node { - __u64 __opaque[4]; -}; - -struct bpf_refcount { - __u32 __opaque[1]; -}; - -struct bpf_pidns_info { - __u32 pid; - __u32 tgid; -}; - -enum { - BPF_F_TIMER_ABS = 1, - BPF_F_TIMER_CPU_PIN = 2, -}; - -enum bpf_kfunc_flags { - BPF_F_PAD_ZEROS = 1, -}; - -struct bpf_rb_node_kern { - struct rb_node rb_node; - void *owner; -}; - -struct bpf_list_node_kern { - struct list_head list_head; - void *owner; -}; - -typedef u64 (*btf_bpf_map_lookup_elem)(struct bpf_map *, void *); - -typedef u64 (*btf_bpf_map_update_elem)(struct bpf_map *, void *, void *, u64); - -typedef u64 (*btf_bpf_map_delete_elem)(struct bpf_map *, void *); - -typedef u64 (*btf_bpf_map_push_elem)(struct bpf_map *, void *, u64); - -typedef u64 (*btf_bpf_map_pop_elem)(struct bpf_map *, void *); - -typedef u64 (*btf_bpf_map_peek_elem)(struct bpf_map *, void *); - -typedef u64 (*btf_bpf_map_lookup_percpu_elem)(struct bpf_map *, void *, u32); - -typedef u64 (*btf_bpf_get_smp_processor_id)(void); - -typedef u64 (*btf_bpf_get_numa_node_id)(void); - -typedef u64 (*btf_bpf_ktime_get_ns)(void); - -typedef u64 (*btf_bpf_ktime_get_boot_ns)(void); - -typedef u64 (*btf_bpf_ktime_get_coarse_ns)(void); - -typedef u64 (*btf_bpf_ktime_get_tai_ns)(void); - -typedef u64 (*btf_bpf_get_current_pid_tgid)(void); - -typedef u64 (*btf_bpf_get_current_uid_gid)(void); - -typedef u64 (*btf_bpf_get_current_comm)(char *, u32); - -typedef u64 (*btf_bpf_spin_lock)(struct bpf_spin_lock *); - -typedef u64 (*btf_bpf_spin_unlock)(struct bpf_spin_lock *); - -typedef u64 (*btf_bpf_jiffies64)(void); - -typedef u64 (*btf_bpf_get_current_cgroup_id)(void); - -typedef u64 (*btf_bpf_get_current_ancestor_cgroup_id)(int); - -typedef u64 (*btf_bpf_strtol)(const char *, size_t, u64, s64 *); - -typedef u64 (*btf_bpf_strtoul)(const char *, size_t, u64, u64 *); - -typedef u64 (*btf_bpf_strncmp)(const char *, u32, const char *); - -typedef u64 (*btf_bpf_get_ns_current_pid_tgid)(u64, u64, struct bpf_pidns_info *, u32); - -typedef u64 (*btf_bpf_event_output_data)(void *, struct bpf_map *, u64, void *, u64); - -typedef u64 (*btf_bpf_copy_from_user)(void *, u32, const void *); - -typedef u64 (*btf_bpf_copy_from_user_task)(void *, u32, const void *, struct task_struct *, u64); - -typedef u64 (*btf_bpf_per_cpu_ptr)(const void *, u32); - -typedef u64 (*btf_bpf_this_cpu_ptr)(const void *); - -struct bpf_bprintf_buffers { - char bin_args[512]; - char buf[1024]; -}; - -typedef u64 (*btf_bpf_snprintf)(char *, u32, char *, const void *, u32); - -struct bpf_async_cb { - struct bpf_map *map; - struct bpf_prog *prog; - void *callback_fn; - void *value; - union { - struct callback_head rcu; - struct work_struct delete_work; - }; - u64 flags; -}; - -struct bpf_hrtimer { - struct bpf_async_cb cb; - struct hrtimer timer; - atomic_t cancelling; -}; - -struct bpf_work { - struct bpf_async_cb cb; - struct work_struct work; - struct work_struct delete_work; -}; - -struct bpf_async_kern { - union { - struct bpf_async_cb *cb; - struct bpf_hrtimer *timer; - struct bpf_work *work; - }; - struct bpf_spin_lock lock; -}; - -enum bpf_async_type { - BPF_ASYNC_TYPE_TIMER = 0, - BPF_ASYNC_TYPE_WQ = 1, -}; - -typedef u64 (*btf_bpf_timer_init)(struct bpf_async_kern *, struct bpf_map *, u64); - -typedef u64 (*btf_bpf_timer_set_callback)(struct bpf_async_kern *, void *, struct bpf_prog_aux *); - -typedef u64 (*btf_bpf_timer_start)(struct bpf_async_kern *, u64, u64); - -typedef u64 (*btf_bpf_timer_cancel)(struct bpf_async_kern *); - -typedef u64 (*btf_bpf_kptr_xchg)(void *, void *); - -typedef u64 (*btf_bpf_dynptr_from_mem)(void *, u32, u64, struct bpf_dynptr_kern *); - -typedef u64 (*btf_bpf_dynptr_read)(void *, u32, const struct bpf_dynptr_kern *, u32, u64); - -typedef u64 (*btf_bpf_dynptr_write)(const struct bpf_dynptr_kern *, u32, void *, u32, u64); - -typedef u64 (*btf_bpf_dynptr_data)(const struct bpf_dynptr_kern *, u32, u32); - -typedef u64 (*btf_bpf_current_task_under_cgroup)(struct bpf_map *, u32); - -struct bpf_throw_ctx { - struct bpf_prog_aux *aux; - u64 sp; - u64 bp; - int cnt; -}; - -struct bpf_iter_bits { - __u64 __opaque[2]; -}; - -struct bpf_iter_bits_kern { - union { - __u64 *bits; - __u64 bits_copy; - }; - int nr_bits; - int bit; -}; - -struct bpf_mem_cache { - struct llist_head free_llist; - local_t active; - struct llist_head free_llist_extra; - struct irq_work refill_work; - struct obj_cgroup *objcg; - int unit_size; - int free_cnt; - int low_watermark; - int high_watermark; - int batch; - int percpu_size; - bool draining; - struct bpf_mem_cache *tgt; - struct llist_head free_by_rcu; - struct llist_node *free_by_rcu_tail; - struct llist_head waiting_for_gp; - struct llist_node *waiting_for_gp_tail; - struct callback_head rcu; - atomic_t call_rcu_in_progress; - struct llist_head free_llist_extra_rcu; - struct llist_head free_by_rcu_ttrace; - struct llist_head waiting_for_gp_ttrace; - struct callback_head rcu_ttrace; - atomic_t call_rcu_ttrace_in_progress; -}; - -struct bpf_mem_caches { - struct bpf_mem_cache cache[11]; -}; - -enum btf_field_iter_kind { - BTF_FIELD_ITER_IDS = 0, - BTF_FIELD_ITER_STRS = 1, -}; - -struct btf_field_desc { - int t_off_cnt; - int t_offs[2]; - int m_sz; - int m_off_cnt; - int m_offs[1]; -}; - -struct btf_field_iter { - struct btf_field_desc desc; - void *p; - int m_idx; - int off_idx; - int vlen; -}; - -struct btf_relocate { - struct btf *btf; - const struct btf *base_btf; - const struct btf *dist_base_btf; - unsigned int nr_base_types; - unsigned int nr_split_types; - unsigned int nr_dist_base_types; - int dist_str_len; - int base_str_len; - __u32 *id_map; - __u32 *str_map; -}; - -struct btf_name_info { - const char *name; - bool needs_size: 1; - unsigned int size: 31; - __u32 id; -}; - -typedef struct { - void *lock; - long unsigned int flags; -} class_irqsave_t; - -enum perf_event_task_context { - perf_invalid_context = -1, - perf_hw_context = 0, - perf_sw_context = 1, - perf_nr_task_contexts = 2, -}; - -enum perf_branch_sample_type { - PERF_SAMPLE_BRANCH_USER = 1, - PERF_SAMPLE_BRANCH_KERNEL = 2, - PERF_SAMPLE_BRANCH_HV = 4, - PERF_SAMPLE_BRANCH_ANY = 8, - PERF_SAMPLE_BRANCH_ANY_CALL = 16, - PERF_SAMPLE_BRANCH_ANY_RETURN = 32, - PERF_SAMPLE_BRANCH_IND_CALL = 64, - PERF_SAMPLE_BRANCH_ABORT_TX = 128, - PERF_SAMPLE_BRANCH_IN_TX = 256, - PERF_SAMPLE_BRANCH_NO_TX = 512, - PERF_SAMPLE_BRANCH_COND = 1024, - PERF_SAMPLE_BRANCH_CALL_STACK = 2048, - PERF_SAMPLE_BRANCH_IND_JUMP = 4096, - PERF_SAMPLE_BRANCH_CALL = 8192, - PERF_SAMPLE_BRANCH_NO_FLAGS = 16384, - PERF_SAMPLE_BRANCH_NO_CYCLES = 32768, - PERF_SAMPLE_BRANCH_TYPE_SAVE = 65536, - PERF_SAMPLE_BRANCH_HW_INDEX = 131072, - PERF_SAMPLE_BRANCH_PRIV_SAVE = 262144, - PERF_SAMPLE_BRANCH_COUNTERS = 524288, - PERF_SAMPLE_BRANCH_MAX = 1048576, -}; - -enum perf_sample_regs_abi { - PERF_SAMPLE_REGS_ABI_NONE = 0, - PERF_SAMPLE_REGS_ABI_32 = 1, - PERF_SAMPLE_REGS_ABI_64 = 2, -}; - -enum perf_event_read_format { - PERF_FORMAT_TOTAL_TIME_ENABLED = 1, - PERF_FORMAT_TOTAL_TIME_RUNNING = 2, - PERF_FORMAT_ID = 4, - PERF_FORMAT_GROUP = 8, - PERF_FORMAT_LOST = 16, - PERF_FORMAT_MAX = 32, -}; - -enum perf_event_ioc_flags { - PERF_IOC_FLAG_GROUP = 1, -}; - -struct perf_event_header { - __u32 type; - __u16 misc; - __u16 size; -}; - -struct perf_ns_link_info { - __u64 dev; - __u64 ino; -}; - -enum { - NET_NS_INDEX = 0, - UTS_NS_INDEX = 1, - IPC_NS_INDEX = 2, - PID_NS_INDEX = 3, - USER_NS_INDEX = 4, - MNT_NS_INDEX = 5, - CGROUP_NS_INDEX = 6, - NR_NAMESPACES = 7, -}; - -enum perf_event_type { - PERF_RECORD_MMAP = 1, - PERF_RECORD_LOST = 2, - PERF_RECORD_COMM = 3, - PERF_RECORD_EXIT = 4, - PERF_RECORD_THROTTLE = 5, - PERF_RECORD_UNTHROTTLE = 6, - PERF_RECORD_FORK = 7, - PERF_RECORD_READ = 8, - PERF_RECORD_SAMPLE = 9, - PERF_RECORD_MMAP2 = 10, - PERF_RECORD_AUX = 11, - PERF_RECORD_ITRACE_START = 12, - PERF_RECORD_LOST_SAMPLES = 13, - PERF_RECORD_SWITCH = 14, - PERF_RECORD_SWITCH_CPU_WIDE = 15, - PERF_RECORD_NAMESPACES = 16, - PERF_RECORD_KSYMBOL = 17, - PERF_RECORD_BPF_EVENT = 18, - PERF_RECORD_CGROUP = 19, - PERF_RECORD_TEXT_POKE = 20, - PERF_RECORD_AUX_OUTPUT_HW_ID = 21, - PERF_RECORD_MAX = 22, -}; - -enum perf_event_arm_regs { - PERF_REG_ARM64_X0 = 0, - PERF_REG_ARM64_X1 = 1, - PERF_REG_ARM64_X2 = 2, - PERF_REG_ARM64_X3 = 3, - PERF_REG_ARM64_X4 = 4, - PERF_REG_ARM64_X5 = 5, - PERF_REG_ARM64_X6 = 6, - PERF_REG_ARM64_X7 = 7, - PERF_REG_ARM64_X8 = 8, - PERF_REG_ARM64_X9 = 9, - PERF_REG_ARM64_X10 = 10, - PERF_REG_ARM64_X11 = 11, - PERF_REG_ARM64_X12 = 12, - PERF_REG_ARM64_X13 = 13, - PERF_REG_ARM64_X14 = 14, - PERF_REG_ARM64_X15 = 15, - PERF_REG_ARM64_X16 = 16, - PERF_REG_ARM64_X17 = 17, - PERF_REG_ARM64_X18 = 18, - PERF_REG_ARM64_X19 = 19, - PERF_REG_ARM64_X20 = 20, - PERF_REG_ARM64_X21 = 21, - PERF_REG_ARM64_X22 = 22, - PERF_REG_ARM64_X23 = 23, - PERF_REG_ARM64_X24 = 24, - PERF_REG_ARM64_X25 = 25, - PERF_REG_ARM64_X26 = 26, - PERF_REG_ARM64_X27 = 27, - PERF_REG_ARM64_X28 = 28, - PERF_REG_ARM64_X29 = 29, - PERF_REG_ARM64_LR = 30, - PERF_REG_ARM64_SP = 31, - PERF_REG_ARM64_PC = 32, - PERF_REG_ARM64_MAX = 33, - PERF_REG_ARM64_VG = 46, - PERF_REG_ARM64_EXTENDED_MAX = 47, -}; - -enum perf_pmu_scope { - PERF_PMU_SCOPE_NONE = 0, - PERF_PMU_SCOPE_CORE = 1, - PERF_PMU_SCOPE_DIE = 2, - PERF_PMU_SCOPE_CLUSTER = 3, - PERF_PMU_SCOPE_PKG = 4, - PERF_PMU_SCOPE_SYS_WIDE = 5, - PERF_PMU_MAX_SCOPE = 6, -}; - -enum perf_addr_filter_action_t { - PERF_ADDR_FILTER_ACTION_STOP = 0, - PERF_ADDR_FILTER_ACTION_START = 1, - PERF_ADDR_FILTER_ACTION_FILTER = 2, -}; - -struct perf_addr_filter { - struct list_head entry; - struct path path; - long unsigned int offset; - long unsigned int size; - enum perf_addr_filter_action_t action; -}; - -struct swevent_hlist { - struct hlist_head heads[256]; - struct callback_head callback_head; -}; - -struct pmu_event_list { - raw_spinlock_t lock; - struct list_head list; -}; - -struct perf_cpu_context { - struct perf_event_context ctx; - struct perf_event_context *task_ctx; - int online; - struct perf_cgroup *cgrp; - int heap_size; - struct perf_event **heap; - struct perf_event *heap_default[2]; -}; - -struct perf_pmu_events_attr { - struct device_attribute attr; - u64 id; - const char *event_str; -}; - -struct min_heap_char { - int nr; - int size; - char *data; - char preallocated[0]; -}; - -typedef struct min_heap_char min_heap_char; - -struct min_heap_callbacks { - bool (*less)(const void *, const void *, void *); - void (*swp)(void *, void *, void *); -}; - -typedef int (*remote_function_f)(void *); - -struct remote_function_call { - struct task_struct *p; - remote_function_f func; - void *info; - int ret; -}; - -enum event_type_t { - EVENT_FLEXIBLE = 1, - EVENT_PINNED = 2, - EVENT_TIME = 4, - EVENT_FROZEN = 8, - EVENT_CPU = 16, - EVENT_CGROUP = 32, - EVENT_ALL = 3, - EVENT_TIME_FROZEN = 12, -}; - -typedef struct { - struct perf_cpu_context *cpuctx; - struct perf_event_context *ctx; -} class_perf_ctx_lock_t; - -typedef void (*event_f)(struct perf_event *, struct perf_cpu_context *, struct perf_event_context *, void *); - -struct event_function_struct { - struct perf_event *event; - event_f func; - void *data; -}; - -struct __group_key { - int cpu; - struct pmu *pmu; - struct cgroup *cgroup; -}; - -struct stop_event_data { - struct perf_event *event; - unsigned int restart; -}; - -struct perf_event_min_heap { - int nr; - int size; - struct perf_event **data; - struct perf_event *preallocated[0]; -}; - -struct perf_read_data { - struct perf_event *event; - bool group; - int ret; -}; - -struct perf_read_event { - struct perf_event_header header; - u32 pid; - u32 tid; -}; - -typedef void perf_iterate_f(struct perf_event *, void *); - -struct remote_output { - struct perf_buffer *rb; - int err; -}; - -struct perf_task_event { - struct task_struct *task; - struct perf_event_context *task_ctx; - struct { - struct perf_event_header header; - u32 pid; - u32 ppid; - u32 tid; - u32 ptid; - u64 time; - } event_id; -}; - -struct perf_comm_event { - struct task_struct *task; - char *comm; - int comm_size; - struct { - struct perf_event_header header; - u32 pid; - u32 tid; - } event_id; -}; - -struct perf_namespaces_event { - struct task_struct *task; - struct { - struct perf_event_header header; - u32 pid; - u32 tid; - u64 nr_namespaces; - struct perf_ns_link_info link_info[7]; - } event_id; -}; - -struct perf_cgroup_event { - char *path; - int path_size; - struct { - struct perf_event_header header; - u64 id; - char path[0]; - } event_id; -}; - -struct perf_mmap_event { - struct vm_area_struct *vma; - const char *file_name; - int file_size; - int maj; - int min; - u64 ino; - u64 ino_generation; - u32 prot; - u32 flags; - u8 build_id[20]; - u32 build_id_size; - struct { - struct perf_event_header header; - u32 pid; - u32 tid; - u64 start; - u64 len; - u64 pgoff; - } event_id; -}; - -struct perf_switch_event { - struct task_struct *task; - struct task_struct *next_prev; - struct { - struct perf_event_header header; - u32 next_prev_pid; - u32 next_prev_tid; - } event_id; -}; - -struct perf_ksymbol_event { - const char *name; - int name_len; - struct { - struct perf_event_header header; - u64 addr; - u32 len; - u16 ksym_type; - u16 flags; - } event_id; -}; - -struct perf_bpf_event { - struct bpf_prog *prog; - struct { - struct perf_event_header header; - u16 type; - u16 flags; - u32 id; - u8 tag[8]; - } event_id; -}; - -struct perf_text_poke_event { - const void *old_bytes; - const void *new_bytes; - size_t pad; - u16 old_len; - u16 new_len; - struct { - struct perf_event_header header; - u64 addr; - } event_id; -}; - -struct swevent_htable { - struct swevent_hlist *swevent_hlist; - struct mutex hlist_mutex; - int hlist_refcount; -}; - -enum perf_probe_config { - PERF_PROBE_CONFIG_IS_RETPROBE = 1, - PERF_UPROBE_REF_CTR_OFFSET_BITS = 32, - PERF_UPROBE_REF_CTR_OFFSET_SHIFT = 32, -}; - -enum { - IF_ACT_NONE = -1, - IF_ACT_FILTER = 0, - IF_ACT_START = 1, - IF_ACT_STOP = 2, - IF_SRC_FILE = 3, - IF_SRC_KERNEL = 4, - IF_SRC_FILEADDR = 5, - IF_SRC_KERNELADDR = 6, -}; - -enum { - IF_STATE_ACTION = 0, - IF_STATE_SOURCE = 1, - IF_STATE_END = 2, -}; - -struct perf_aux_event { - struct perf_event_header header; - u64 hw_id; -}; - -struct perf_aux_event___2 { - struct perf_event_header header; - u32 pid; - u32 tid; -}; - -struct perf_aux_event___3 { - struct perf_event_header header; - u64 offset; - u64 size; - u64 flags; -}; - -struct reserve_mem_table { - char name[16]; - phys_addr_t start; - phys_addr_t size; -}; - -enum { - RES_USAGE = 0, - RES_RSVD_USAGE = 1, - RES_LIMIT = 2, - RES_RSVD_LIMIT = 3, - RES_MAX_USAGE = 4, - RES_RSVD_MAX_USAGE = 5, - RES_FAILCNT = 6, - RES_RSVD_FAILCNT = 7, -}; - -typedef int class_get_unused_fd_t; - -struct mnt_ns_info { - __u32 size; - __u32 nr_mounts; - __u64 mnt_ns_id; -}; - -struct ns_get_path_task_args { - const struct proc_ns_operations *ns_ops; - struct task_struct *task; -}; - -struct dio_submit { - struct bio *bio; - unsigned int blkbits; - unsigned int blkfactor; - unsigned int start_zero_done; - int pages_in_io; - sector_t block_in_file; - unsigned int blocks_available; - int reap_counter; - sector_t final_block_in_request; - int boundary; - get_block_t *get_block; - loff_t logical_offset_in_bio; - sector_t final_block_in_bio; - sector_t next_block_for_io; - struct page *cur_page; - unsigned int cur_page_offset; - unsigned int cur_page_len; - sector_t cur_page_block; - loff_t cur_page_fs_offset; - struct iov_iter *iter; - unsigned int head; - unsigned int tail; - size_t from; - size_t to; -}; - -struct dio { - int flags; - blk_opf_t opf; - struct gendisk *bio_disk; - struct inode *inode; - loff_t i_size; - dio_iodone_t *end_io; - bool is_pinned; - void *private; - spinlock_t bio_lock; - int page_errors; - int is_async; - bool defer_completion; - bool should_dirty; - int io_error; - long unsigned int refcount; - struct bio *bio_list; - struct task_struct *waiter; - struct kiocb *iocb; - ssize_t result; - union { - struct page *pages[64]; - struct work_struct complete_work; - }; - long: 64; -}; - -struct fscrypt_nokey_name { - u32 dirhash[2]; - u8 bytes[149]; - u8 sha256[32]; -}; - -struct ext4_filename { - const struct qstr *usr_fname; - struct fscrypt_str disk_name; - struct dx_hash_info hinfo; - struct fscrypt_str crypto_buf; -}; - -struct ext4_xattr_entry { - __u8 e_name_len; - __u8 e_name_index; - __le16 e_value_offs; - __le32 e_value_inum; - __le32 e_value_size; - __le32 e_hash; - char e_name[0]; -}; - -struct ext4_xattr_info { - const char *name; - const void *value; - size_t value_len; - int name_index; - int in_inode; -}; - -struct ext4_xattr_search { - struct ext4_xattr_entry *first; - void *base; - void *end; - struct ext4_xattr_entry *here; - int not_found; -}; - -struct ext4_xattr_ibody_find { - struct ext4_xattr_search s; - struct ext4_iloc iloc; -}; - -struct squashfs_stream { - void *stream; - struct mutex mutex; -}; - -struct fatent_ra { - sector_t cur; - sector_t limit; - unsigned int ra_blocks; - sector_t ra_advance; - sector_t ra_next; - sector_t ra_limit; -}; - -struct SU_SP_s { - __u8 magic[2]; - __u8 skip; -}; - -struct SU_CE_s { - __u8 extent[8]; - __u8 offset[8]; - __u8 size[8]; -}; - -struct SU_ER_s { - __u8 len_id; - __u8 len_des; - __u8 len_src; - __u8 ext_ver; - __u8 data[0]; -}; - -struct RR_RR_s { - __u8 flags[1]; -}; - -struct RR_PX_s { - __u8 mode[8]; - __u8 n_links[8]; - __u8 uid[8]; - __u8 gid[8]; -}; - -struct RR_PN_s { - __u8 dev_high[8]; - __u8 dev_low[8]; -}; - -struct SL_component { - __u8 flags; - __u8 len; - __u8 text[0]; -}; - -struct RR_SL_s { - __u8 flags; - struct SL_component link; -}; - -struct RR_NM_s { - __u8 flags; - char name[0]; -}; - -struct RR_CL_s { - __u8 location[8]; -}; - -struct RR_PL_s { - __u8 location[8]; -}; - -struct RR_TF_s { - __u8 flags; - __u8 data[0]; -}; - -struct RR_ZF_s { - __u8 algorithm[2]; - __u8 parms[2]; - __u8 real_size[8]; -}; - -struct rock_ridge { - __u8 signature[2]; - __u8 len; - __u8 version; - union { - struct SU_SP_s SP; - struct SU_CE_s CE; - struct SU_ER_s ER; - struct RR_RR_s RR; - struct RR_PX_s PX; - struct RR_PN_s PN; - struct RR_SL_s SL; - struct RR_NM_s NM; - struct RR_CL_s CL; - struct RR_PL_s PL; - struct RR_TF_s TF; - struct RR_ZF_s ZF; - } u; -}; - -struct rock_state { - void *buffer; - unsigned char *chr; - int len; - int cont_size; - int cont_extent; - int cont_offset; - int cont_loops; - struct inode *inode; -}; - -struct nfs3_sattrargs { - struct nfs_fh *fh; - struct iattr *sattr; - unsigned int guard; - struct timespec64 guardtime; -}; - -struct nfs3_diropargs { - struct nfs_fh *fh; - const char *name; - unsigned int len; -}; - -struct nfs3_accessargs { - struct nfs_fh *fh; - __u32 access; -}; - -struct nfs3_createargs { - struct nfs_fh *fh; - const char *name; - unsigned int len; - struct iattr *sattr; - enum nfs3_createmode createmode; - __be32 verifier[2]; -}; - -struct nfs3_mkdirargs { - struct nfs_fh *fh; - const char *name; - unsigned int len; - struct iattr *sattr; -}; - -struct nfs3_symlinkargs { - struct nfs_fh *fromfh; - const char *fromname; - unsigned int fromlen; - struct page **pages; - unsigned int pathlen; - struct iattr *sattr; -}; - -struct nfs3_mknodargs { - struct nfs_fh *fh; - const char *name; - unsigned int len; - enum nfs3_ftype type; - struct iattr *sattr; - dev_t rdev; -}; - -struct nfs3_linkargs { - struct nfs_fh *fromfh; - struct nfs_fh *tofh; - const char *toname; - unsigned int tolen; -}; - -struct nfs3_readdirargs { - struct nfs_fh *fh; - __u64 cookie; - __be32 verf[2]; - bool plus; - unsigned int count; - struct page **pages; -}; - -struct nfs3_diropres { - struct nfs_fattr *dir_attr; - struct nfs_fh *fh; - struct nfs_fattr *fattr; -}; - -struct nfs3_accessres { - struct nfs_fattr *fattr; - __u32 access; -}; - -struct nfs3_readlinkargs { - struct nfs_fh *fh; - unsigned int pgbase; - unsigned int pglen; - struct page **pages; -}; - -struct nfs3_linkres { - struct nfs_fattr *dir_attr; - struct nfs_fattr *fattr; -}; - -struct nfs3_readdirres { - struct nfs_fattr *dir_attr; - __be32 *verf; - bool plus; -}; - -struct nfs3_createdata { - struct rpc_message msg; - union { - struct nfs3_createargs create; - struct nfs3_mkdirargs mkdir; - struct nfs3_symlinkargs symlink; - struct nfs3_mknodargs mknod; - } arg; - struct nfs3_diropres res; - struct nfs_fh fh; - struct nfs_fattr fattr; - struct nfs_fattr dir_attr; -}; - -struct rpc_add_xprt_test { - void (*add_xprt_test)(struct rpc_clnt *, struct rpc_xprt *, void *); - void *data; -}; - -struct nfs4_add_xprt_data { - struct nfs_client *clp; - const struct cred *cred; -}; - -struct smb2_read_rsp { - struct smb2_hdr hdr; - __le16 StructureSize; - __u8 DataOffset; - __u8 Reserved; - __le32 DataLength; - __le32 DataRemaining; - __le32 Flags; - __u8 Buffer[0]; -}; - -struct smb2_query_directory_rsp { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 OutputBufferOffset; - __le32 OutputBufferLength; - __u8 Buffer[0]; -}; - -struct create_context_hdr { - __le32 Next; - __le16 NameOffset; - __le16 NameLength; - __le16 Reserved; - __le16 DataOffset; - __le32 DataLength; -}; - -struct lease_context { - __u8 LeaseKey[16]; - __le32 LeaseState; - __le32 LeaseFlags; - __le64 LeaseDuration; -}; - -struct lease_context_v2 { - __u8 LeaseKey[16]; - __le32 LeaseState; - __le32 LeaseFlags; - __le64 LeaseDuration; - __u8 ParentLeaseKey[16]; - __le16 Epoch; - __le16 Reserved; -} __attribute__((packed)); - -struct create_lease { - struct create_context_hdr ccontext; - __u8 Name[8]; - struct lease_context lcontext; -}; - -struct create_lease_v2 { - struct create_context_hdr ccontext; - __u8 Name[8]; - struct lease_context_v2 lcontext; - __u8 Pad[4]; -}; - -struct file_zero_data_information { - __le64 FileOffset; - __le64 BeyondFinalZero; -}; - -struct duplicate_extents_to_file { - __u64 PersistentFileHandle; - __u64 VolatileFileHandle; - __le64 SourceFileOffset; - __le64 TargetFileOffset; - __le64 ByteCount; -}; - -struct fsctl_set_integrity_information_req { - __le16 ChecksumAlgorithm; - __le16 Reserved; - __le32 Flags; -}; - -struct file_allocated_range_buffer { - __le64 file_offset; - __le64 length; -}; - -struct smb2_fs_full_size_info { - __le64 TotalAllocationUnits; - __le64 CallerAvailableAllocationUnits; - __le64 ActualAvailableAllocationUnits; - __le32 SectorsPerAllocationUnit; - __le32 BytesPerSector; -}; - -struct resume_key_req { - char ResumeKey[24]; - __le32 ContextLength; - char Context[0]; -}; - -struct copychunk_ioctl { - char SourceKey[24]; - __le32 ChunkCount; - __le32 Reserved; - __le64 SourceOffset; - __le64 TargetOffset; - __le32 Length; - __u32 Reserved2; -}; - -struct copychunk_ioctl_rsp { - __le32 ChunksWritten; - __le32 ChunkBytesWritten; - __le32 TotalBytesWritten; -}; - -struct fsctl_get_dfs_referral_req { - __le16 MaxReferralLevel; - __u8 RequestFileName[0]; -}; - -struct network_interface_info_ioctl_rsp { - __le32 Next; - __le32 IfIndex; - __le32 Capability; - __le32 Reserved; - __le64 LinkSpeed; - __le16 Family; - __u8 Buffer[126]; -}; - -struct iface_info_ipv4 { - __be16 Port; - __be32 IPv4Address; - __be64 Reserved; -} __attribute__((packed)); - -struct iface_info_ipv6 { - __be16 Port; - __be32 FlowInfo; - __u8 IPv6Address[16]; - __be32 ScopeId; -} __attribute__((packed)); - -struct smb2_file_network_open_info { - union { - struct { - __le64 CreationTime; - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le64 AllocationSize; - __le64 EndOfFile; - __le32 Attributes; - } __attribute__((packed)); - struct { - __le64 CreationTime; - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le64 AllocationSize; - __le64 EndOfFile; - __le32 Attributes; - } __attribute__((packed)) network_open_info; - }; - __le32 Reserved; -}; - -struct smb_snapshot_array { - __u32 number_of_snapshots; - __u32 number_of_snapshots_returned; - __u32 snapshot_array_size; -}; - -struct smb_query_info { - __u32 info_type; - __u32 file_info_class; - __u32 additional_information; - __u32 flags; - __u32 input_buffer_length; - __u32 output_buffer_length; -}; - -struct smb3_notify_info { - __u32 completion_filter; - bool watch_tree; - __u32 data_len; - __u8 notify_data[0]; -} __attribute__((packed)); - -struct smb2_decrypt_work { - struct work_struct decrypt; - struct TCP_Server_Info *server; - struct folio_queue *buffer; - char *buf; - unsigned int len; -}; - -struct fuse_kstatfs { - uint64_t blocks; - uint64_t bfree; - uint64_t bavail; - uint64_t files; - uint64_t ffree; - uint32_t bsize; - uint32_t namelen; - uint32_t frsize; - uint32_t padding; - uint32_t spare[6]; -}; - -struct fuse_statfs_out { - struct fuse_kstatfs st; -}; - -struct fuse_init_in { - uint32_t major; - uint32_t minor; - uint32_t max_readahead; - uint32_t flags; - uint32_t flags2; - uint32_t unused[11]; -}; - -struct fuse_init_out { - uint32_t major; - uint32_t minor; - uint32_t max_readahead; - uint32_t flags; - uint16_t max_background; - uint16_t congestion_threshold; - uint32_t max_write; - uint32_t time_gran; - uint16_t max_pages; - uint16_t map_alignment; - uint32_t flags2; - uint32_t max_stack_depth; - uint32_t unused[6]; -}; - -struct fuse_syncfs_in { - uint64_t padding; -}; - -enum { - OPT_SOURCE = 0, - OPT_SUBTYPE___2 = 1, - OPT_FD = 2, - OPT_ROOTMODE = 3, - OPT_USER_ID = 4, - OPT_GROUP_ID = 5, - OPT_DEFAULT_PERMISSIONS = 6, - OPT_ALLOW_OTHER = 7, - OPT_MAX_READ = 8, - OPT_BLKSIZE = 9, - OPT_ERR = 10, -}; - -struct fuse_inode_handle { - u64 nodeid; - u32 generation; -}; - -struct fuse_init_args { - struct fuse_args args; - struct fuse_init_in in; - struct fuse_init_out out; -}; - -struct extent_ad { - __le32 extLength; - __le32 extLocation; -}; - -struct logicalVolIntegrityDesc { - struct tag descTag; - struct timestamp recordingDateAndTime; - __le32 integrityType; - struct extent_ad nextIntegrityExt; - uint8_t logicalVolContentsUse[32]; - __le32 numOfPartitions; - __le32 lengthOfImpUse; - __le32 freeSpaceTable[0]; -}; - -struct xfs_btree_split_args { - struct xfs_btree_cur *cur; - int level; - union xfs_btree_ptr *ptrp; - union xfs_btree_key *key; - struct xfs_btree_cur **curp; - int *stat; - int result; - bool kswapd; - struct completion *done; - struct work_struct work; -}; - -struct xfs_btree_block_change_owner_info { - uint64_t new_owner; - struct list_head *buffer_list; -}; - -struct xfs_btree_has_records { - union xfs_btree_key start_key; - union xfs_btree_key end_key; - const union xfs_btree_key *key_mask; - union xfs_btree_key high_key; - enum xbtree_recpacking outcome; -}; - -struct xfs_fsop_geom { - __u32 blocksize; - __u32 rtextsize; - __u32 agblocks; - __u32 agcount; - __u32 logblocks; - __u32 sectsize; - __u32 inodesize; - __u32 imaxpct; - __u64 datablocks; - __u64 rtblocks; - __u64 rtextents; - __u64 logstart; - unsigned char uuid[16]; - __u32 sunit; - __u32 swidth; - __s32 version; - __u32 flags; - __u32 logsectsize; - __u32 rtsectsize; - __u32 dirblocksize; - __u32 logsunit; - uint32_t sick; - uint32_t checked; - __u64 reserved[17]; -}; - -struct xfs_extent_busy { - struct rb_node rb_node; - struct list_head list; - xfs_agnumber_t agno; - xfs_agblock_t bno; - xfs_extlen_t length; - unsigned int flags; -}; - -enum xfs_icwalk_goal { - XFS_ICWALK_BLOCKGC = 1, - XFS_ICWALK_RECLAIM = 0, -}; - -struct p9_rstatfs { - u32 type; - u32 bsize; - u64 blocks; - u64 bfree; - u64 bavail; - u64 files; - u64 ffree; - u64 fsid; - u32 namelen; -}; - -struct btrfs_raid_stride { - __le64 devid; - __le64 physical; -}; - -struct btrfs_stripe_extent { - struct { - struct {} __empty_strides; - struct btrfs_raid_stride strides[0]; - }; -}; - -struct btrfs_extent_owner_ref { - __le64 root_id; -}; - -struct root_name_map { - u64 id; - const char *name; -}; - -struct inode_defrag { - struct rb_node rb_node; - u64 ino; - u64 transid; - u64 root; - u32 extent_thresh; -}; - -struct defrag_target_range { - struct list_head list; - u64 start; - u64 len; -}; - -struct btrfs_disk_balance_args { - __le64 profiles; - union { - __le64 usage; - struct { - __le32 usage_min; - __le32 usage_max; - }; - }; - __le64 devid; - __le64 pstart; - __le64 pend; - __le64 vstart; - __le64 vend; - __le64 target; - __le64 flags; - union { - __le64 limit; - struct { - __le32 limit_min; - __le32 limit_max; - }; - }; - __le32 stripes_min; - __le32 stripes_max; - __le64 unused[6]; -}; - -struct btrfs_balance_item { - __le64 flags; - struct btrfs_disk_balance_args data; - struct btrfs_disk_balance_args meta; - struct btrfs_disk_balance_args sys; - __le64 unused[4]; -}; - -struct btrfs_dev_stats_item { - __le64 values[5]; -}; - -struct btrfs_discard_stripe { - struct btrfs_device *dev; - u64 physical; - u64 length; -}; - -struct btrfs_io_geometry { - u32 stripe_index; - u32 stripe_nr; - int mirror_num; - int num_stripes; - u64 stripe_offset; - u64 raid56_full_stripe_start; - int max_errors; - enum btrfs_map_op op; -}; - -struct alloc_chunk_ctl { - u64 start; - u64 type; - int num_stripes; - int sub_stripes; - int dev_stripes; - int devs_max; - int devs_min; - int devs_increment; - int ncopies; - int nparity; - u64 max_stripe_size; - u64 max_chunk_size; - u64 dev_extent_min; - u64 stripe_size; - u64 chunk_size; - int ndevs; -}; - -enum btrfs_mod_log_op { - BTRFS_MOD_LOG_KEY_REPLACE = 0, - BTRFS_MOD_LOG_KEY_ADD = 1, - BTRFS_MOD_LOG_KEY_REMOVE = 2, - BTRFS_MOD_LOG_KEY_REMOVE_WHILE_FREEING = 3, - BTRFS_MOD_LOG_KEY_REMOVE_WHILE_MOVING = 4, - BTRFS_MOD_LOG_MOVE_KEYS = 5, - BTRFS_MOD_LOG_ROOT_REPLACE = 6, -}; - -struct tree_mod_root { - u64 logical; - u8 level; -}; - -struct tree_mod_elem { - struct rb_node node; - u64 logical; - u64 seq; - enum btrfs_mod_log_op op; - int slot; - u64 generation; - struct btrfs_disk_key key; - u64 blockptr; - struct { - int dst_slot; - int nr_items; - } move; - struct tree_mod_root old_root; -}; - -struct f2fs_dentry_block { - __u8 dentry_bitmap[27]; - __u8 reserved[3]; - struct f2fs_dir_entry dentry[214]; - __u8 filename[1712]; -}; - -struct f2fs_dentry_ptr { - struct inode *inode; - void *bitmap; - struct f2fs_dir_entry *dentry; - __u8 (*filename)[8]; - int max; - int nr_bitmap; -}; - -struct z_erofs_lz4_cfgs { - __le16 max_distance; - __le16 max_pclusterblks; - u8 reserved[10]; -}; - -enum { - Z_EROFS_COMPRESSION_SHIFTED = 4, - Z_EROFS_COMPRESSION_INTERLACED = 5, - Z_EROFS_COMPRESSION_RUNTIME_MAX = 6, -}; - -struct z_erofs_lz4_decompress_ctx { - struct z_erofs_decompress_req *rq; - unsigned int inpages; - unsigned int outpages; - unsigned int oend; -}; - -struct lsm_network_audit { - int netif; - const struct sock *sk; - u16 family; - __be16 dport; - __be16 sport; - union { - struct { - __be32 daddr; - __be32 saddr; - } v4; - struct { - struct in6_addr daddr; - struct in6_addr saddr; - } v6; - } fam; -}; - -struct lsm_ioctlop_audit { - struct path path; - u16 cmd; -}; - -struct lsm_ibpkey_audit { - u64 subnet_prefix; - u16 pkey; -}; - -struct lsm_ibendport_audit { - const char *dev_name; - u8 port; -}; - -struct common_audit_data { - char type; - union { - struct path path; - struct dentry *dentry; - struct inode *inode; - struct lsm_network_audit *net; - int cap; - int ipc_id; - struct task_struct *tsk; - struct { - key_serial_t key; - char *key_desc; - } key_struct; - char *kmod_name; - struct lsm_ioctlop_audit *op; - struct file *file; - struct lsm_ibpkey_audit *ibpkey; - struct lsm_ibendport_audit *ibendport; - int reason; - const char *anonclass; - } u; - union {}; -}; - -struct akcipher_instance { - void (*free)(struct akcipher_instance *); - union { - struct { - char head[72]; - struct crypto_instance base; - } s; - struct akcipher_alg alg; - }; -}; - -struct crypto_akcipher_spawn { - struct crypto_spawn base; -}; - -struct rsa_asn1_template { - const char *name; - const u8 *data; - size_t size; -}; - -struct pkcs1pad_ctx { - struct crypto_akcipher *child; - unsigned int key_size; -}; - -struct pkcs1pad_inst_ctx { - struct crypto_akcipher_spawn spawn; - const struct rsa_asn1_template *digest_info; -}; - -struct pkcs1pad_request { - struct scatterlist in_sg[2]; - struct scatterlist out_sg[1]; - uint8_t *in_buf; - uint8_t *out_buf; - struct akcipher_request child_req; -}; - -struct vmac_tfm_ctx { - struct crypto_cipher *cipher; - u64 nhkey[16]; - u64 polykey[2]; - u64 l3key[2]; -}; - -struct vmac_desc_ctx { - union { - u8 partial[128]; - __le64 partial_words[16]; - }; - unsigned int partial_size; - bool first_block_processed; - u64 polytmp[2]; - union { - u8 bytes[16]; - __be64 pads[2]; - } nonce; - unsigned int nonce_size; -}; - -struct sha512_state { - u64 state[8]; - u64 count[2]; - u8 buf[128]; -}; - -typedef void sha512_block_fn(struct sha512_state *, const u8 *, int); - -struct crypto_kw_block { - __be64 A; - __be64 R; -}; - -struct lzo_ctx { - void *lzo_comp_mem; -}; - -struct ghash_ctx { - struct gf128mul_4k *gf128; -}; - -struct ghash_desc_ctx___2 { - u8 buffer[16]; - u32 bytes; -}; - -enum { - REQ_FSEQ_PREFLUSH = 1, - REQ_FSEQ_DATA = 2, - REQ_FSEQ_POSTFLUSH = 4, - REQ_FSEQ_DONE = 8, - REQ_FSEQ_ACTIONS = 7, - FLUSH_PENDING_TIMEOUT = 5000, -}; - -enum msdos_sys_ind { - DOS_EXTENDED_PARTITION = 5, - LINUX_EXTENDED_PARTITION = 133, - WIN98_EXTENDED_PARTITION = 15, - LINUX_DATA_PARTITION = 131, - LINUX_LVM_PARTITION = 142, - LINUX_RAID_PARTITION = 253, - SOLARIS_X86_PARTITION = 130, - NEW_SOLARIS_X86_PARTITION = 191, - DM6_AUX1PARTITION = 81, - DM6_AUX3PARTITION = 83, - DM6_PARTITION = 84, - EZD_PARTITION = 85, - FREEBSD_PARTITION = 165, - OPENBSD_PARTITION = 166, - NETBSD_PARTITION = 169, - BSDI_PARTITION = 183, - MINIX_PARTITION = 129, - UNIXWARE_PARTITION = 99, -}; - -struct parsed_partitions { - struct gendisk *disk; - char name[32]; - struct { - sector_t from; - sector_t size; - int flags; - bool has_info; - struct partition_meta_info info; - } *parts; - int next; - int limit; - bool access_beyond_eod; - char *pp_buf; -}; - -typedef struct { - struct folio *v; -} Sector; - -struct bsg_device { - struct request_queue *queue; - struct device device; - struct cdev cdev; - int max_queue; - unsigned int timeout; - unsigned int reserved_size; - bsg_sg_io_fn *sg_io_fn; -}; - -struct io_xattr { - struct file *file; - struct xattr_ctx ctx; - struct filename *filename; -}; - -struct statx_timestamp { - __s64 tv_sec; - __u32 tv_nsec; - __s32 __reserved; -}; - -struct statx { - __u32 stx_mask; - __u32 stx_blksize; - __u64 stx_attributes; - __u32 stx_nlink; - __u32 stx_uid; - __u32 stx_gid; - __u16 stx_mode; - __u16 __spare0[1]; - __u64 stx_ino; - __u64 stx_size; - __u64 stx_blocks; - __u64 stx_attributes_mask; - struct statx_timestamp stx_atime; - struct statx_timestamp stx_btime; - struct statx_timestamp stx_ctime; - struct statx_timestamp stx_mtime; - __u32 stx_rdev_major; - __u32 stx_rdev_minor; - __u32 stx_dev_major; - __u32 stx_dev_minor; - __u64 stx_mnt_id; - __u32 stx_dio_mem_align; - __u32 stx_dio_offset_align; - __u64 stx_subvol; - __u32 stx_atomic_write_unit_min; - __u32 stx_atomic_write_unit_max; - __u32 stx_atomic_write_segments_max; - __u32 __spare1[1]; - __u64 __spare3[9]; -}; - -struct io_statx { - struct file *file; - int dfd; - unsigned int mask; - unsigned int flags; - struct filename *filename; - struct statx *buffer; -}; - -struct wrapper { - cmp_func_t cmp; - swap_func_t swap; -}; - -struct genradix_iter { - size_t offset; - size_t pos; -}; - -typedef struct { - unsigned char op; - unsigned char bits; - short unsigned int val; -} code; - -typedef enum { - CODES = 0, - LENS = 1, - DISTS = 2, -} codetype; - -typedef enum { - HEAD = 0, - FLAGS = 1, - TIME = 2, - OS = 3, - EXLEN = 4, - EXTRA = 5, - NAME = 6, - COMMENT = 7, - HCRC = 8, - DICTID = 9, - DICT = 10, - TYPE = 11, - TYPEDO = 12, - STORED = 13, - COPY = 14, - TABLE = 15, - LENLENS = 16, - CODELENS = 17, - LEN = 18, - LENEXT = 19, - DIST = 20, - DISTEXT = 21, - MATCH = 22, - LIT = 23, - CHECK = 24, - LENGTH = 25, - DONE = 26, - BAD = 27, - MEM = 28, - SYNC = 29, -} inflate_mode; - -struct inflate_state { - inflate_mode mode; - int last; - int wrap; - int havedict; - int flags; - unsigned int dmax; - long unsigned int check; - long unsigned int total; - unsigned int wbits; - unsigned int wsize; - unsigned int whave; - unsigned int write; - unsigned char *window; - long unsigned int hold; - unsigned int bits; - unsigned int length; - unsigned int offset; - unsigned int extra; - const code *lencode; - const code *distcode; - unsigned int lenbits; - unsigned int distbits; - unsigned int ncode; - unsigned int nlen; - unsigned int ndist; - unsigned int have; - code *next; - short unsigned int lens[320]; - short unsigned int work[288]; - code codes[2048]; -}; - -struct inflate_workspace { - struct inflate_state inflate_state; - unsigned char working_window[32768]; -}; - -typedef struct { - BYTE maxTableLog; - BYTE tableType; - BYTE tableLog; - BYTE reserved; -} DTableDesc; - -typedef struct { - BYTE nbBits; - BYTE byte; -} HUF_DEltX1; - -typedef struct { - U32 rankVal[13]; - U32 rankStart[13]; - U32 statsWksp[218]; - BYTE symbols[256]; - BYTE huffWeight[256]; -} HUF_ReadDTableX1_Workspace; - -typedef struct { - U16 sequence; - BYTE nbBits; - BYTE length; -} HUF_DEltX2; - -typedef struct { - BYTE symbol; -} sortedSymbol_t; - -typedef U32 rankValCol_t[13]; - -typedef struct { - U32 rankVal[156]; - U32 rankStats[13]; - U32 rankStart0[15]; - sortedSymbol_t sortedSymbol[256]; - BYTE weightList[256]; - U32 calleeWksp[218]; -} HUF_ReadDTableX2_Workspace; - -typedef struct { - U32 tableTime; - U32 decode256Time; -} algo_time_t; - -struct node_groups { - unsigned int id; - union { - unsigned int ngroups; - unsigned int ncpus; - }; -}; - -struct gpiochip_info { - char name[32]; - char label[32]; - __u32 lines; -}; - -enum gpio_v2_line_flag { - GPIO_V2_LINE_FLAG_USED = 1, - GPIO_V2_LINE_FLAG_ACTIVE_LOW = 2, - GPIO_V2_LINE_FLAG_INPUT = 4, - GPIO_V2_LINE_FLAG_OUTPUT = 8, - GPIO_V2_LINE_FLAG_EDGE_RISING = 16, - GPIO_V2_LINE_FLAG_EDGE_FALLING = 32, - GPIO_V2_LINE_FLAG_OPEN_DRAIN = 64, - GPIO_V2_LINE_FLAG_OPEN_SOURCE = 128, - GPIO_V2_LINE_FLAG_BIAS_PULL_UP = 256, - GPIO_V2_LINE_FLAG_BIAS_PULL_DOWN = 512, - GPIO_V2_LINE_FLAG_BIAS_DISABLED = 1024, - GPIO_V2_LINE_FLAG_EVENT_CLOCK_REALTIME = 2048, - GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE = 4096, -}; - -struct gpio_v2_line_values { - __u64 bits; - __u64 mask; -}; - -enum gpio_v2_line_attr_id { - GPIO_V2_LINE_ATTR_ID_FLAGS = 1, - GPIO_V2_LINE_ATTR_ID_OUTPUT_VALUES = 2, - GPIO_V2_LINE_ATTR_ID_DEBOUNCE = 3, -}; - -struct gpio_v2_line_attribute { - __u32 id; - __u32 padding; - union { - __u64 flags; - __u64 values; - __u32 debounce_period_us; - }; -}; - -struct gpio_v2_line_config_attribute { - struct gpio_v2_line_attribute attr; - __u64 mask; -}; - -struct gpio_v2_line_config { - __u64 flags; - __u32 num_attrs; - __u32 padding[5]; - struct gpio_v2_line_config_attribute attrs[10]; -}; - -struct gpio_v2_line_request { - __u32 offsets[64]; - char consumer[32]; - struct gpio_v2_line_config config; - __u32 num_lines; - __u32 event_buffer_size; - __u32 padding[5]; - __s32 fd; -}; - -struct gpio_v2_line_info { - char name[32]; - char consumer[32]; - __u32 offset; - __u32 num_attrs; - __u64 flags; - struct gpio_v2_line_attribute attrs[10]; - __u32 padding[4]; -}; - -enum gpio_v2_line_changed_type { - GPIO_V2_LINE_CHANGED_REQUESTED = 1, - GPIO_V2_LINE_CHANGED_RELEASED = 2, - GPIO_V2_LINE_CHANGED_CONFIG = 3, -}; - -struct gpio_v2_line_info_changed { - struct gpio_v2_line_info info; - __u64 timestamp_ns; - __u32 event_type; - __u32 padding[5]; -}; - -enum gpio_v2_line_event_id { - GPIO_V2_LINE_EVENT_RISING_EDGE = 1, - GPIO_V2_LINE_EVENT_FALLING_EDGE = 2, -}; - -struct gpio_v2_line_event { - __u64 timestamp_ns; - __u32 id; - __u32 offset; - __u32 seqno; - __u32 line_seqno; - __u32 padding[6]; -}; - -struct gpioline_info { - __u32 line_offset; - __u32 flags; - char name[32]; - char consumer[32]; -}; - -struct gpioline_info_changed { - struct gpioline_info info; - __u64 timestamp; - __u32 event_type; - __u32 padding[5]; -}; - -struct gpiohandle_request { - __u32 lineoffsets[64]; - __u32 flags; - __u8 default_values[64]; - char consumer_label[32]; - __u32 lines; - int fd; -}; - -struct gpiohandle_config { - __u32 flags; - __u8 default_values[64]; - __u32 padding[4]; -}; - -struct gpiohandle_data { - __u8 values[64]; -}; - -struct gpioevent_request { - __u32 lineoffset; - __u32 handleflags; - __u32 eventflags; - char consumer_label[32]; - int fd; -}; - -struct gpioevent_data { - __u64 timestamp; - __u32 id; -}; - -struct linehandle_state { - struct gpio_device *gdev; - const char *label; - struct gpio_desc *descs[64]; - u32 num_descs; -}; - -struct linereq; - -struct line { - struct rb_node node; - struct gpio_desc *desc; - struct linereq *req; - unsigned int irq; - u64 edflags; - u64 timestamp_ns; - u32 req_seqno; - u32 line_seqno; - struct delayed_work work; - unsigned int debounce_period_us; - unsigned int sw_debounced; - unsigned int level; -}; - -struct linereq { - struct gpio_device *gdev; - const char *label; - u32 num_lines; - wait_queue_head_t wait; - struct notifier_block device_unregistered_nb; - u32 event_buffer_size; - struct { - union { - struct __kfifo kfifo; - struct gpio_v2_line_event *type; - const struct gpio_v2_line_event *const_type; - char (*rectype)[0]; - struct gpio_v2_line_event *ptr; - const struct gpio_v2_line_event *ptr_const; - }; - struct gpio_v2_line_event buf[0]; - } events; - atomic_t seqno; - struct mutex config_mutex; - struct line lines[0]; -}; - -struct lineevent_state { - struct gpio_device *gdev; - const char *label; - struct gpio_desc *desc; - u32 eflags; - int irq; - wait_queue_head_t wait; - struct notifier_block device_unregistered_nb; - struct { - union { - struct __kfifo kfifo; - struct gpioevent_data *type; - const struct gpioevent_data *const_type; - char (*rectype)[0]; - struct gpioevent_data *ptr; - const struct gpioevent_data *ptr_const; - }; - struct gpioevent_data buf[16]; - } events; - u64 timestamp; -}; - -struct gpio_chardev_data { - struct gpio_device *gdev; - wait_queue_head_t wait; - struct { - union { - struct __kfifo kfifo; - struct gpio_v2_line_info_changed *type; - const struct gpio_v2_line_info_changed *const_type; - char (*rectype)[0]; - struct gpio_v2_line_info_changed *ptr; - const struct gpio_v2_line_info_changed *ptr_const; - }; - struct gpio_v2_line_info_changed buf[32]; - } events; - struct notifier_block lineinfo_changed_nb; - struct notifier_block device_unregistered_nb; - long unsigned int *watched_lines; - atomic_t watch_abi_version; -}; - -struct virtio_balloon_config { - __le32 num_pages; - __le32 actual; - union { - __le32 free_page_hint_cmd_id; - __le32 free_page_report_cmd_id; - }; - __le32 poison_val; -}; - -struct virtio_balloon_stat { - __virtio16 tag; - __virtio64 val; -} __attribute__((packed)); - -enum virtio_balloon_vq { - VIRTIO_BALLOON_VQ_INFLATE = 0, - VIRTIO_BALLOON_VQ_DEFLATE = 1, - VIRTIO_BALLOON_VQ_STATS = 2, - VIRTIO_BALLOON_VQ_FREE_PAGE = 3, - VIRTIO_BALLOON_VQ_REPORTING = 4, - VIRTIO_BALLOON_VQ_MAX = 5, -}; - -enum virtio_balloon_config_read { - VIRTIO_BALLOON_CONFIG_READ_CMD_ID = 0, -}; - -struct virtio_balloon { - struct virtio_device *vdev; - struct virtqueue *inflate_vq; - struct virtqueue *deflate_vq; - struct virtqueue *stats_vq; - struct virtqueue *free_page_vq; - struct workqueue_struct *balloon_wq; - struct work_struct report_free_page_work; - struct work_struct update_balloon_stats_work; - struct work_struct update_balloon_size_work; - spinlock_t stop_update_lock; - bool stop_update; - long unsigned int config_read_bitmap; - struct list_head free_page_list; - spinlock_t free_page_list_lock; - long unsigned int num_free_page_blocks; - u32 cmd_id_received_cache; - __virtio32 cmd_id_active; - __virtio32 cmd_id_stop; - wait_queue_head_t acked; - unsigned int num_pages; - struct balloon_dev_info vb_dev_info; - struct mutex balloon_lock; - unsigned int num_pfns; - __virtio32 pfns[256]; - struct virtio_balloon_stat stats[16]; - struct shrinker *shrinker; - struct notifier_block oom_nb; - struct virtqueue *reporting_vq; - struct page_reporting_dev_info pr_dev_info; - spinlock_t wakeup_lock; - bool processing_wakeup_event; - u32 wakeup_signal_mask; -}; - -struct kbentry { - unsigned char kb_table; - unsigned char kb_index; - short unsigned int kb_value; -}; - -struct kbsentry { - unsigned char kb_func; - unsigned char kb_string[512]; -}; - -struct kbdiacr { - unsigned char diacr; - unsigned char base; - unsigned char result; -}; - -struct kbdiacrs { - unsigned int kb_cnt; - struct kbdiacr kbdiacr[256]; -}; - -struct kbdiacruc { - unsigned int diacr; - unsigned int base; - unsigned int result; -}; - -struct kbdiacrsuc { - unsigned int kb_cnt; - struct kbdiacruc kbdiacruc[256]; -}; - -struct kbkeycode { - unsigned int scancode; - unsigned int keycode; -}; - -struct kbd_repeat { - int delay; - int period; -}; - -struct keyboard_notifier_param { - struct vc_data *vc; - int down; - int shift; - int ledstate; - unsigned int value; -}; - -struct kbd_struct { - unsigned char lockstate; - unsigned char slockstate; - unsigned char ledmode: 1; - unsigned char ledflagstate: 4; - char: 3; - unsigned char default_ledflagstate: 4; - unsigned char kbdmode: 3; - int: 1; - unsigned char modeflags: 5; -}; - -struct vt_spawn_console { - spinlock_t lock; - struct pid *pid; - int sig; -}; - -typedef void k_handler_fn(struct vc_data *, unsigned char, char); - -typedef void fn_handler_fn(struct vc_data *); - -struct getset_keycode_data { - struct input_keymap_entry ke; - int error; -}; - -enum mctrl_gpio_idx { - UART_GPIO_CTS = 0, - UART_GPIO_DSR = 1, - UART_GPIO_DCD = 2, - UART_GPIO_RNG = 3, - UART_GPIO_RI = 3, - UART_GPIO_RTS = 4, - UART_GPIO_DTR = 5, - UART_GPIO_MAX = 6, -}; - -struct mctrl_gpios { - struct uart_port *port; - struct gpio_desc *gpio[6]; - int irq[6]; - unsigned int mctrl_prev; - bool mctrl_on; -}; - -struct drm_version { - int version_major; - int version_minor; - int version_patchlevel; - __kernel_size_t name_len; - char *name; - __kernel_size_t date_len; - char *date; - __kernel_size_t desc_len; - char *desc; -}; - -struct drm_unique { - __kernel_size_t unique_len; - char *unique; -}; - -struct drm_client { - int idx; - int auth; - long unsigned int pid; - long unsigned int uid; - long unsigned int magic; - long unsigned int iocs; -}; - -enum drm_stat_type { - _DRM_STAT_LOCK = 0, - _DRM_STAT_OPENS = 1, - _DRM_STAT_CLOSES = 2, - _DRM_STAT_IOCTLS = 3, - _DRM_STAT_LOCKS = 4, - _DRM_STAT_UNLOCKS = 5, - _DRM_STAT_VALUE = 6, - _DRM_STAT_BYTE = 7, - _DRM_STAT_COUNT = 8, - _DRM_STAT_IRQ = 9, - _DRM_STAT_PRIMARY = 10, - _DRM_STAT_SECONDARY = 11, - _DRM_STAT_DMA = 12, - _DRM_STAT_SPECIAL = 13, - _DRM_STAT_MISSED = 14, -}; - -struct drm_stats { - long unsigned int count; - struct { - long unsigned int value; - enum drm_stat_type type; - } data[15]; -}; - -struct drm_set_version { - int drm_di_major; - int drm_di_minor; - int drm_dd_major; - int drm_dd_minor; -}; - -struct drm_get_cap { - __u64 capability; - __u64 value; -}; - -struct drm_set_client_cap { - __u64 capability; - __u64 value; -}; - -struct drm_syncobj_create { - __u32 handle; - __u32 flags; -}; - -struct drm_syncobj_destroy { - __u32 handle; - __u32 pad; -}; - -struct drm_syncobj_handle { - __u32 handle; - __u32 flags; - __s32 fd; - __u32 pad; -}; - -struct drm_syncobj_transfer { - __u32 src_handle; - __u32 dst_handle; - __u64 src_point; - __u64 dst_point; - __u32 flags; - __u32 pad; -}; - -struct drm_syncobj_wait { - __u64 handles; - __s64 timeout_nsec; - __u32 count_handles; - __u32 flags; - __u32 first_signaled; - __u32 pad; - __u64 deadline_nsec; -}; - -struct drm_syncobj_timeline_wait { - __u64 handles; - __u64 points; - __s64 timeout_nsec; - __u32 count_handles; - __u32 flags; - __u32 first_signaled; - __u32 pad; - __u64 deadline_nsec; -}; - -struct drm_syncobj_eventfd { - __u32 handle; - __u32 flags; - __u64 point; - __s32 fd; - __u32 pad; -}; - -struct drm_syncobj_array { - __u64 handles; - __u32 count_handles; - __u32 pad; -}; - -struct drm_syncobj_timeline_array { - __u64 handles; - __u64 points; - __u32 count_handles; - __u32 flags; -}; - -struct syncobj_wait_entry { - struct list_head node; - struct task_struct *task; - struct dma_fence *fence; - struct dma_fence_cb fence_cb; - u64 point; -}; - -struct syncobj_eventfd_entry { - struct list_head node; - struct dma_fence *fence; - struct dma_fence_cb fence_cb; - struct drm_syncobj *syncobj; - struct eventfd_ctx *ev_fd_ctx; - u64 point; - u32 flags; -}; - -struct drm_virtgpu_map { - __u64 offset; - __u32 handle; - __u32 pad; -}; - -struct drm_virtgpu_getparam { - __u64 param; - __u64 value; -}; - -struct drm_virtgpu_resource_create { - __u32 target; - __u32 format; - __u32 bind; - __u32 width; - __u32 height; - __u32 depth; - __u32 array_size; - __u32 last_level; - __u32 nr_samples; - __u32 flags; - __u32 bo_handle; - __u32 res_handle; - __u32 size; - __u32 stride; -}; - -struct drm_virtgpu_resource_info { - __u32 bo_handle; - __u32 res_handle; - __u32 size; - __u32 blob_mem; -}; - -struct drm_virtgpu_3d_transfer_to_host { - __u32 bo_handle; - struct drm_virtgpu_3d_box box; - __u32 level; - __u32 offset; - __u32 stride; - __u32 layer_stride; -}; - -struct drm_virtgpu_3d_transfer_from_host { - __u32 bo_handle; - struct drm_virtgpu_3d_box box; - __u32 level; - __u32 offset; - __u32 stride; - __u32 layer_stride; -}; - -struct drm_virtgpu_3d_wait { - __u32 handle; - __u32 flags; -}; - -struct drm_virtgpu_get_caps { - __u32 cap_set_id; - __u32 cap_set_ver; - __u64 addr; - __u32 size; - __u32 pad; -}; - -struct drm_virtgpu_resource_create_blob { - __u32 blob_mem; - __u32 blob_flags; - __u32 bo_handle; - __u32 res_handle; - __u64 size; - __u32 pad; - __u32 cmd_size; - __u64 cmd; - __u64 blob_id; -}; - -struct drm_virtgpu_context_set_param { - __u64 param; - __u64 value; -}; - -struct drm_virtgpu_context_init { - __u32 num_params; - __u32 pad; - __u64 ctx_set_params; -}; - -struct scsi_host_busy_iter_data { - bool (*fn)(struct scsi_cmnd *, void *); - void *priv; -}; - -enum bip_flags { - BIP_BLOCK_INTEGRITY = 1, - BIP_MAPPED_INTEGRITY = 2, - BIP_CTRL_NOCHECK = 4, - BIP_DISK_NOCHECK = 8, - BIP_IP_CHECKSUM = 16, - BIP_COPY_USER = 32, -}; - -enum pr_status { - PR_STS_SUCCESS = 0, - PR_STS_IOERR = 2, - PR_STS_RESERVATION_CONFLICT = 24, - PR_STS_RETRY_PATH_FAILURE = 917504, - PR_STS_PATH_FAST_FAILED = 983040, - PR_STS_PATH_FAILED = 65536, -}; - -enum t10_dif_type { - T10_PI_TYPE0_PROTECTION = 0, - T10_PI_TYPE1_PROTECTION = 1, - T10_PI_TYPE2_PROTECTION = 2, - T10_PI_TYPE3_PROTECTION = 3, -}; - -struct scsi_io_group_descriptor { - u8 ic_enable: 1; - u8 cs_enble: 1; - u8 st_enble: 1; - u8 reserved1: 3; - u8 io_advice_hints_mode: 2; - u8 reserved2[3]; - u8 lbm_descriptor_type: 4; - u8 rlbsr: 2; - u8 reserved3: 1; - u8 acdlu: 1; - u8 params[2]; - u8 reserved4; - u8 reserved5[8]; -}; - -struct scsi_stream_status { - u8 reserved1: 7; - u8 perm: 1; - u8 reserved2; - __be16 stream_identifier; - u8 rel_lifetime: 6; - u8 reserved3: 2; - u8 reserved4[3]; -}; - -struct scsi_stream_status_header { - __be32 len; - u16 reserved; - __be16 number_of_open_streams; - struct { - struct {} __empty_stream_status; - struct scsi_stream_status stream_status[0]; - }; -}; - -enum scsi_pr_type { - SCSI_PR_WRITE_EXCLUSIVE = 1, - SCSI_PR_EXCLUSIVE_ACCESS = 3, - SCSI_PR_WRITE_EXCLUSIVE_REG_ONLY = 5, - SCSI_PR_EXCLUSIVE_ACCESS_REG_ONLY = 6, - SCSI_PR_WRITE_EXCLUSIVE_ALL_REGS = 7, - SCSI_PR_EXCLUSIVE_ACCESS_ALL_REGS = 8, -}; - -enum scsi_prot_flags { - SCSI_PROT_TRANSFER_PI = 1, - SCSI_PROT_GUARD_CHECK = 2, - SCSI_PROT_REF_CHECK = 4, - SCSI_PROT_REF_INCREMENT = 8, - SCSI_PROT_IP_CHECKSUM = 16, -}; - -enum { - SD_EXT_CDB_SIZE = 32, - SD_MEMPOOL_SIZE = 2, -}; - -enum { - SD_DEF_XFER_BLOCKS = 65535, - SD_MAX_XFER_BLOCKS = 4294967295, - SD_MAX_WS10_BLOCKS = 65535, - SD_MAX_WS16_BLOCKS = 8388607, -}; - -enum { - SD_LBP_FULL = 0, - SD_LBP_UNMAP = 1, - SD_LBP_WS16 = 2, - SD_LBP_WS10 = 3, - SD_LBP_ZERO = 4, - SD_LBP_DISABLE = 5, -}; - -enum { - SD_ZERO_WRITE = 0, - SD_ZERO_WS = 1, - SD_ZERO_WS16_UNMAP = 2, - SD_ZERO_WS10_UNMAP = 3, -}; - -struct opal_dev; - -struct scsi_disk { - struct scsi_device *device; - struct device disk_dev; - struct gendisk *disk; - struct opal_dev *opal_dev; - atomic_t openers; - sector_t capacity; - int max_retries; - u32 min_xfer_blocks; - u32 max_xfer_blocks; - u32 opt_xfer_blocks; - u32 max_ws_blocks; - u32 max_unmap_blocks; - u32 unmap_granularity; - u32 unmap_alignment; - u32 max_atomic; - u32 atomic_alignment; - u32 atomic_granularity; - u32 max_atomic_with_boundary; - u32 max_atomic_boundary; - u32 index; - unsigned int physical_block_size; - unsigned int max_medium_access_timeouts; - unsigned int medium_access_timed_out; - u16 permanent_stream_count; - u8 media_present; - u8 write_prot; - u8 protection_type; - u8 provisioning_mode; - u8 zeroing_mode; - u8 nr_actuators; - bool suspended; - unsigned int ATO: 1; - unsigned int cache_override: 1; - unsigned int WCE: 1; - unsigned int RCD: 1; - unsigned int DPOFUA: 1; - unsigned int first_scan: 1; - unsigned int lbpme: 1; - unsigned int lbprz: 1; - unsigned int lbpu: 1; - unsigned int lbpws: 1; - unsigned int lbpws10: 1; - unsigned int lbpvpd: 1; - unsigned int ws10: 1; - unsigned int ws16: 1; - unsigned int rc_basis: 2; - unsigned int zoned: 2; - unsigned int urswrz: 1; - unsigned int security: 1; - unsigned int ignore_medium_access_errors: 1; - unsigned int rscs: 1; - unsigned int use_atomic_write_boundary: 1; -}; - -enum cookie_values { - COOKIE_SECRET_MAX_AGE = 120, - COOKIE_SECRET_LATENCY = 5, - COOKIE_NONCE_LEN = 24, - COOKIE_LEN = 16, -}; - -enum { - COOKIE_KEY_LABEL_LEN = 8, -}; - -struct swmii_regs { - u16 bmsr; - u16 lpa; - u16 lpagb; - u16 estat; -}; - -enum { - SWMII_SPEED_10 = 0, - SWMII_SPEED_100 = 1, - SWMII_SPEED_1000 = 2, - SWMII_DUPLEX_HALF = 0, - SWMII_DUPLEX_FULL = 1, -}; - -struct fixed_mdio_bus { - struct mii_bus *mii_bus; - struct list_head phys; -}; - -struct fixed_phy { - int addr; - struct phy_device *phydev; - struct fixed_phy_status status; - bool no_carrier; - int (*link_update)(struct net_device *, struct fixed_phy_status *); - struct list_head node; - struct gpio_desc *link_gpiod; -}; - -struct nlmon { - struct netlink_tap nt; -}; - -struct usb_otg_caps { - u16 otg_rev; - bool hnp_support; - bool srp_support; - bool adp_support; -}; - -enum usb_dr_mode { - USB_DR_MODE_UNKNOWN = 0, - USB_DR_MODE_HOST = 1, - USB_DR_MODE_PERIPHERAL = 2, - USB_DR_MODE_OTG = 3, -}; - -typedef void (*companion_fn)(struct pci_dev *, struct usb_hcd *, struct pci_dev *, struct usb_hcd *); - -struct sddr55_card_info { - long unsigned int capacity; - int max_log_blks; - int pageshift; - int smallpageshift; - int blocksize; - int blockshift; - int blockmask; - int read_only; - int force_read_only; - int *lba_to_pba; - int *pba_to_lba; - int fatal_error; - long unsigned int last_access; - unsigned char sense_data[18]; -}; - -struct ti_i2c_desc { - __u8 Type; - __le16 Size; - __u8 CheckSum; - __u8 Data[0]; -} __attribute__((packed)); - -struct ti_i2c_firmware_rec { - __u8 Ver_Major; - __u8 Ver_Minor; - __u8 Data[0]; -}; - -struct ti_i2c_image_header { - __le16 Length; - __u8 CheckSum; -} __attribute__((packed)); - -struct edge_ti_manuf_descriptor { - __u8 IonConfig; - __u8 IonConfig2; - __u8 Version; - __u8 CpuRev_BoardRev; - __u8 NumPorts; - __u8 NumVirtualPorts; - __u8 HubConfig1; - __u8 HubConfig2; - __u8 TotalPorts; - __u8 Reserved; -}; - -struct out_endpoint_desc_block { - u8 Configuration; - u8 XBufAddr; - u8 XByteCount; - u8 Unused1; - u8 Unused2; - u8 YBufAddr; - u8 YByteCount; - u8 BufferSize; -}; - -struct ump_uart_config { - u16 wBaudRate; - u16 wFlags; - u8 bDataBits; - u8 bParity; - u8 bStopBits; - char cXon; - char cXoff; - u8 bUartMode; -}; - -struct product_info { - int TiMode; - u8 hardware_type; -} __attribute__((packed)); - -struct edgeport_fw_hdr { - u8 major_version; - u8 minor_version; - __le16 build_number; - __le16 length; - u8 checksum; -} __attribute__((packed)); - -struct edgeport_serial; - -struct edgeport_port { - u16 uart_base; - u16 dma_address; - u8 shadow_msr; - u8 shadow_mcr; - u8 shadow_lsr; - u8 lsr_mask; - u32 ump_read_timeout; - int baud_rate; - int close_pending; - int lsr_event; - struct edgeport_serial *edge_serial; - struct usb_serial_port *port; - u8 bUartMode; - spinlock_t ep_lock; - int ep_read_urb_state; - int ep_write_urb_in_use; -}; - -struct edgeport_serial { - struct product_info product_info; - u8 TI_I2C_Type; - u8 TiReadI2C; - struct mutex es_lock; - int num_ports_open; - struct usb_serial *serial; - struct delayed_work heartbeat_work; - int fw_version; - bool use_heartbeat; -}; - -enum mos7840_flag { - MOS7840_FLAG_LED_BUSY = 0, -}; - -struct moschip_port___2 { - int port_num; - struct urb *read_urb; - __u8 shadowLCR; - __u8 shadowMCR; - struct usb_serial_port *port; - __u8 SpRegOffset; - __u8 ControlRegOffset; - __u8 DcrRegOffset; - spinlock_t pool_lock; - struct urb *write_urb_pool[16]; - char busy[16]; - bool read_urb_busy; - bool has_led; - struct timer_list led_timer1; - struct timer_list led_timer2; - struct urb *led_urb; - struct usb_ctrlrequest *led_dr; - long unsigned int flags; -}; - -struct amba_kmi_port { - struct serio *io; - struct clk *clk; - void *base; - unsigned int irq; - unsigned int divisor; - unsigned int open; -}; - -struct ml_effect_state { - struct ff_effect *effect; - long unsigned int flags; - int count; - long unsigned int play_at; - long unsigned int stop_at; - long unsigned int adj_at; -}; - -struct ml_device { - void *private; - struct ml_effect_state states[16]; - int gain; - struct timer_list timer; - struct input_dev *dev; - int (*play_effect)(struct input_dev *, void *, struct ff_effect *); -}; - -struct i2c_smbus_ioctl_data { - __u8 read_write; - __u8 command; - __u32 size; - union i2c_smbus_data *data; -}; - -struct i2c_rdwr_ioctl_data { - struct i2c_msg *msgs; - __u32 nmsgs; -}; - -struct i2c_dev { - struct list_head list; - struct i2c_adapter *adap; - struct device dev; - struct cdev cdev; -}; - -struct dm_rq_target_io; - -struct dm_rq_clone_bio_info { - struct bio *orig; - struct dm_rq_target_io *tio; - struct bio clone; -}; - -struct dm_rq_target_io { - struct mapped_device *md; - struct dm_target *ti; - struct request *orig; - struct request *clone; - struct kthread_work work; - blk_status_t error; - union map_info___2 info; - struct dm_stats_aux stats_aux; - long unsigned int duration_jiffies; - unsigned int n_sectors; - unsigned int completed; -}; - -struct hid_class_descriptor { - __u8 bDescriptorType; - __le16 wDescriptorLength; -} __attribute__((packed)); - -struct hid_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __le16 bcdHID; - __u8 bCountryCode; - __u8 bNumDescriptors; - struct hid_class_descriptor rpt_desc; - struct hid_class_descriptor opt_descs[0]; -} __attribute__((packed)); - -struct dmabuf_token { - __u32 token_start; - __u32 token_count; -}; - -struct linger { - int l_onoff; - int l_linger; -}; - -struct so_timestamping { - int flags; - int bind_phc; -}; - -enum txtime_flags { - SOF_TXTIME_DEADLINE_MODE = 1, - SOF_TXTIME_REPORT_ERRORS = 2, - SOF_TXTIME_FLAGS_LAST = 2, - SOF_TXTIME_FLAGS_MASK = 3, -}; - -struct sock_txtime { - __kernel_clockid_t clockid; - __u32 flags; -}; - -struct netdev_queue_attribute { - struct attribute attr; - ssize_t (*show)(struct netdev_queue *, char *); - ssize_t (*store)(struct netdev_queue *, const char *, size_t); -}; - -struct tc_prio_qopt { - int bands; - __u8 priomap[16]; -}; - -struct skb_array { - struct ptr_ring ring; -}; - -struct psched_ratecfg { - u64 rate_bytes_ps; - u32 mult; - u16 overhead; - u16 mpu; - u8 linklayer; - u8 shift; -}; - -struct psched_pktrate { - u64 rate_pkts_ps; - u32 mult; - u8 shift; -}; - -struct pfifo_fast_priv { - struct skb_array q[3]; -}; - -enum { - TCA_SFB_UNSPEC = 0, - TCA_SFB_PARMS = 1, - __TCA_SFB_MAX = 2, -}; - -struct tc_sfb_qopt { - __u32 rehash_interval; - __u32 warmup_time; - __u32 max; - __u32 bin_size; - __u32 increment; - __u32 decrement; - __u32 limit; - __u32 penalty_rate; - __u32 penalty_burst; -}; - -struct tc_sfb_xstats { - __u32 earlydrop; - __u32 penaltydrop; - __u32 bucketdrop; - __u32 queuedrop; - __u32 childdrop; - __u32 marked; - __u32 maxqlen; - __u32 maxprob; - __u32 avgprob; -}; - -struct sfb_bucket { - u16 qlen; - u16 p_mark; -}; - -struct sfb_bins { - siphash_key_t perturbation; - struct sfb_bucket bins[128]; -}; - -struct sfb_sched_data { - struct Qdisc *qdisc; - struct tcf_proto *filter_list; - struct tcf_block *block; - long unsigned int rehash_interval; - long unsigned int warmup_time; - u32 max; - u32 bin_size; - u32 increment; - u32 decrement; - u32 limit; - u32 penalty_rate; - u32 penalty_burst; - u32 tokens_avail; - long unsigned int rehash_time; - long unsigned int token_time; - u8 slot; - bool double_buffering; - struct sfb_bins bins[2]; - struct { - u32 earlydrop; - u32 penaltydrop; - u32 bucketdrop; - u32 queuedrop; - u32 childdrop; - u32 marked; - } stats; -}; - -struct sfb_skb_cb { - u32 hashes[2]; -}; - -struct tc_multiq_qopt { - __u16 bands; - __u16 max_bands; -}; - -struct multiq_sched_data { - u16 bands; - u16 max_bands; - u16 curband; - struct tcf_proto *filter_list; - struct tcf_block *block; - struct Qdisc **queues; -}; - -struct bpf_dummy_ops_state { - int val; -}; - -struct bpf_dummy_ops { - int (*test_1)(struct bpf_dummy_ops_state *); - int (*test_2)(struct bpf_dummy_ops_state *, int, short unsigned int, char, long unsigned int); - int (*test_sleepable)(struct bpf_dummy_ops_state *); -}; - -typedef int (*dummy_ops_test_ret_fn)(struct bpf_dummy_ops_state *, ...); - -struct bpf_dummy_ops_test_args { - u64 args[12]; - struct bpf_dummy_ops_state state; -}; - -struct bpf_struct_ops_bpf_dummy_ops { - struct bpf_struct_ops_common_value common; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct bpf_dummy_ops data; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct eee_reply_data { - struct ethnl_reply_data base; - struct ethtool_keee eee; -}; - -enum phy_upstream { - PHY_UPSTREAM_MAC = 0, - PHY_UPSTREAM_PHY = 1, -}; - -struct phy_device_node { - enum phy_upstream upstream_type; - union { - struct net_device *netdev; - struct phy_device *phydev; - } upstream; - struct sfp_bus *parent_sfp_bus; - struct phy_device *phy; -}; - -struct phy_req_info { - struct ethnl_req_info base; - struct phy_device_node *pdn; -}; - -struct ethnl_phy_dump_ctx { - struct phy_req_info *phy_req_info; - long unsigned int ifindex; - long unsigned int phy_index; -}; - -struct nf_ct_tcp_flags { - __u8 flags; - __u8 mask; -}; - -enum nf_ct_tcp_action { - NFCT_TCP_IGNORE = 0, - NFCT_TCP_INVALID = 1, - NFCT_TCP_ACCEPT = 2, -}; - -enum tcp_bit_set { - TCP_SYN_SET = 0, - TCP_SYNACK_SET = 1, - TCP_FIN_SET = 2, - TCP_ACK_SET = 3, - TCP_RST_SET = 4, - TCP_NONE_SET = 5, -}; - -enum ctattr_protoinfo_tcp { - CTA_PROTOINFO_TCP_UNSPEC = 0, - CTA_PROTOINFO_TCP_STATE = 1, - CTA_PROTOINFO_TCP_WSCALE_ORIGINAL = 2, - CTA_PROTOINFO_TCP_WSCALE_REPLY = 3, - CTA_PROTOINFO_TCP_FLAGS_ORIGINAL = 4, - CTA_PROTOINFO_TCP_FLAGS_REPLY = 5, - __CTA_PROTOINFO_TCP_MAX = 6, -}; - -enum ctattr_timeout_tcp { - CTA_TIMEOUT_TCP_UNSPEC = 0, - CTA_TIMEOUT_TCP_SYN_SENT = 1, - CTA_TIMEOUT_TCP_SYN_RECV = 2, - CTA_TIMEOUT_TCP_ESTABLISHED = 3, - CTA_TIMEOUT_TCP_FIN_WAIT = 4, - CTA_TIMEOUT_TCP_CLOSE_WAIT = 5, - CTA_TIMEOUT_TCP_LAST_ACK = 6, - CTA_TIMEOUT_TCP_TIME_WAIT = 7, - CTA_TIMEOUT_TCP_CLOSE = 8, - CTA_TIMEOUT_TCP_SYN_SENT2 = 9, - CTA_TIMEOUT_TCP_RETRANS = 10, - CTA_TIMEOUT_TCP_UNACK = 11, - __CTA_TIMEOUT_TCP_MAX = 12, -}; - -enum nft_lookup_flags { - NFT_LOOKUP_F_INV = 1, -}; - -enum nft_lookup_attributes { - NFTA_LOOKUP_UNSPEC = 0, - NFTA_LOOKUP_SET = 1, - NFTA_LOOKUP_SREG = 2, - NFTA_LOOKUP_DREG = 3, - NFTA_LOOKUP_SET_ID = 4, - NFTA_LOOKUP_FLAGS = 5, - __NFTA_LOOKUP_MAX = 6, -}; - -struct nft_lookup { - struct nft_set *set; - u8 sreg; - u8 dreg; - bool dreg_set; - bool invert; - struct nft_set_binding binding; -}; - -struct nft_rhash { - struct rhashtable ht; - struct delayed_work gc_work; - u32 wq_gc_seq; -}; - -struct nft_rhash_elem { - struct nft_elem_priv priv; - struct rhash_head node; - u32 wq_gc_seq; - long: 0; - struct nft_set_ext ext; -}; - -struct nft_rhash_cmp_arg { - const struct nft_set *set; - const u32 *key; - u8 genmask; - u64 tstamp; -}; - -struct nft_rhash_ctx { - const struct nft_ctx ctx; - const struct nft_set *set; -}; - -struct nft_hash { - u32 seed; - u32 buckets; - struct hlist_head table[0]; -}; - -struct nft_hash_elem { - struct nft_elem_priv priv; - struct hlist_node node; - struct nft_set_ext ext; -}; - -struct xt_mark_tginfo2 { - __u32 mark; - __u32 mask; -}; - -struct xt_mark_mtinfo1 { - __u32 mark; - __u32 mask; - __u8 invert; -}; - -struct xt_rateest_target_info { - char name[16]; - __s8 interval; - __u8 ewma_log; - struct xt_rateest *est; -}; - -struct xt_rateest_net { - struct mutex hash_lock; - struct hlist_head hash[16]; -}; - -struct xt_cpu_info { - __u32 cpu; - __u32 invert; -}; - -struct nf_osf_info { - char genre[32]; - __u32 len; - __u32 flags; - __u32 loglevel; - __u32 ttl; -}; - -enum { - XT_SOCKET_TRANSPARENT = 1, - XT_SOCKET_NOWILDCARD = 2, - XT_SOCKET_RESTORESKMARK = 4, -}; - -struct xt_socket_mtinfo1 { - __u8 flags; -}; - -struct xt_socket_mtinfo2 { - __u8 flags; -}; - -struct xt_socket_mtinfo3 { - __u8 flags; -}; - -struct hash_ipportnet4_elem { - __be32 ip; - __be32 ip2; - __be16 port; - u8 cidr: 7; - u8 nomatch: 1; - u8 proto; -}; - -struct hash_ipportnet4 { - struct htable *table; - struct htable_gc gc; - u32 maxelem; - u32 initval; - u8 bucketsize; - struct list_head ad; - struct hash_ipportnet4_elem next; - struct net_prefixes nets[32]; -}; - -struct hash_ipportnet4_resize_ad { - struct list_head list; - enum ipset_adt ad; - struct hash_ipportnet4_elem d; - struct ip_set_ext ext; - struct ip_set_ext mext; - u32 flags; -}; - -struct hash_ipportnet6_elem { - union nf_inet_addr ip; - union nf_inet_addr ip2; - __be16 port; - u8 cidr: 7; - u8 nomatch: 1; - u8 proto; -}; - -struct hash_ipportnet6 { - struct htable *table; - struct htable_gc gc; - u32 maxelem; - u32 initval; - u8 bucketsize; - struct list_head ad; - struct hash_ipportnet6_elem next; - struct net_prefixes nets[128]; -}; - -struct hash_ipportnet6_resize_ad { - struct list_head list; - enum ipset_adt ad; - struct hash_ipportnet6_elem d; - struct ip_set_ext ext; - struct ip_set_ext mext; - u32 flags; -}; - -struct tcp_plb_state { - u8 consec_cong_rounds: 5; - u8 unused: 3; - u32 pause_until; -}; - -struct fib_result_nl { - __be32 fl_addr; - u32 fl_mark; - unsigned char fl_tos; - unsigned char fl_scope; - unsigned char tb_id_in; - unsigned char tb_id; - unsigned char prefixlen; - unsigned char nh_sel; - unsigned char type; - unsigned char scope; - int err; -}; - -struct arpt_getinfo { - char name[32]; - unsigned int valid_hooks; - unsigned int hook_entry[3]; - unsigned int underflow[3]; - unsigned int num_entries; - unsigned int size; -}; - -struct arpt_get_entries { - char name[32]; - unsigned int size; - struct arpt_entry entrytable[0]; -}; - -struct arpt_standard { - struct arpt_entry entry; - struct xt_standard_target target; -}; - -struct arpt_error { - struct arpt_entry entry; - struct xt_error_target target; -}; - -enum { - IFLA_INET6_UNSPEC = 0, - IFLA_INET6_FLAGS = 1, - IFLA_INET6_CONF = 2, - IFLA_INET6_STATS = 3, - IFLA_INET6_MCAST = 4, - IFLA_INET6_CACHEINFO = 5, - IFLA_INET6_ICMP6STATS = 6, - IFLA_INET6_TOKEN = 7, - IFLA_INET6_ADDR_GEN_MODE = 8, - IFLA_INET6_RA_MTU = 9, - __IFLA_INET6_MAX = 10, -}; - -struct ifla_cacheinfo { - __u32 max_reasm_len; - __u32 tstamp; - __u32 reachable_time; - __u32 retrans_time; -}; - -struct prefixmsg { - unsigned char prefix_family; - unsigned char prefix_pad1; - short unsigned int prefix_pad2; - int prefix_ifindex; - unsigned char prefix_type; - unsigned char prefix_len; - unsigned char prefix_flags; - unsigned char prefix_pad3; -}; - -enum { - PREFIX_UNSPEC = 0, - PREFIX_ADDRESS = 1, - PREFIX_CACHEINFO = 2, - __PREFIX_MAX = 3, -}; - -struct prefix_cacheinfo { - __u32 preferred_time; - __u32 valid_time; -}; - -struct in6_ifreq { - struct in6_addr ifr6_addr; - __u32 ifr6_prefixlen; - int ifr6_ifindex; -}; - -enum { - DEVCONF_FORWARDING = 0, - DEVCONF_HOPLIMIT = 1, - DEVCONF_MTU6 = 2, - DEVCONF_ACCEPT_RA = 3, - DEVCONF_ACCEPT_REDIRECTS = 4, - DEVCONF_AUTOCONF = 5, - DEVCONF_DAD_TRANSMITS = 6, - DEVCONF_RTR_SOLICITS = 7, - DEVCONF_RTR_SOLICIT_INTERVAL = 8, - DEVCONF_RTR_SOLICIT_DELAY = 9, - DEVCONF_USE_TEMPADDR = 10, - DEVCONF_TEMP_VALID_LFT = 11, - DEVCONF_TEMP_PREFERED_LFT = 12, - DEVCONF_REGEN_MAX_RETRY = 13, - DEVCONF_MAX_DESYNC_FACTOR = 14, - DEVCONF_MAX_ADDRESSES = 15, - DEVCONF_FORCE_MLD_VERSION = 16, - DEVCONF_ACCEPT_RA_DEFRTR = 17, - DEVCONF_ACCEPT_RA_PINFO = 18, - DEVCONF_ACCEPT_RA_RTR_PREF = 19, - DEVCONF_RTR_PROBE_INTERVAL = 20, - DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN = 21, - DEVCONF_PROXY_NDP = 22, - DEVCONF_OPTIMISTIC_DAD = 23, - DEVCONF_ACCEPT_SOURCE_ROUTE = 24, - DEVCONF_MC_FORWARDING = 25, - DEVCONF_DISABLE_IPV6 = 26, - DEVCONF_ACCEPT_DAD = 27, - DEVCONF_FORCE_TLLAO = 28, - DEVCONF_NDISC_NOTIFY = 29, - DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL = 30, - DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL = 31, - DEVCONF_SUPPRESS_FRAG_NDISC = 32, - DEVCONF_ACCEPT_RA_FROM_LOCAL = 33, - DEVCONF_USE_OPTIMISTIC = 34, - DEVCONF_ACCEPT_RA_MTU = 35, - DEVCONF_STABLE_SECRET = 36, - DEVCONF_USE_OIF_ADDRS_ONLY = 37, - DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT = 38, - DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN = 39, - DEVCONF_DROP_UNICAST_IN_L2_MULTICAST = 40, - DEVCONF_DROP_UNSOLICITED_NA = 41, - DEVCONF_KEEP_ADDR_ON_DOWN = 42, - DEVCONF_RTR_SOLICIT_MAX_INTERVAL = 43, - DEVCONF_SEG6_ENABLED = 44, - DEVCONF_SEG6_REQUIRE_HMAC = 45, - DEVCONF_ENHANCED_DAD = 46, - DEVCONF_ADDR_GEN_MODE = 47, - DEVCONF_DISABLE_POLICY = 48, - DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN = 49, - DEVCONF_NDISC_TCLASS = 50, - DEVCONF_RPL_SEG_ENABLED = 51, - DEVCONF_RA_DEFRTR_METRIC = 52, - DEVCONF_IOAM6_ENABLED = 53, - DEVCONF_IOAM6_ID = 54, - DEVCONF_IOAM6_ID_WIDE = 55, - DEVCONF_NDISC_EVICT_NOCARRIER = 56, - DEVCONF_ACCEPT_UNTRACKED_NA = 57, - DEVCONF_ACCEPT_RA_MIN_LFT = 58, - DEVCONF_MAX = 59, -}; - -enum { - INET6_IFADDR_STATE_PREDAD = 0, - INET6_IFADDR_STATE_DAD = 1, - INET6_IFADDR_STATE_POSTDAD = 2, - INET6_IFADDR_STATE_ERRDAD = 3, - INET6_IFADDR_STATE_DEAD = 4, -}; - -struct in6_validator_info { - struct in6_addr i6vi_addr; - struct inet6_dev *i6vi_dev; - struct netlink_ext_ack *extack; -}; - -struct ifa6_config { - const struct in6_addr *pfx; - unsigned int plen; - u8 ifa_proto; - const struct in6_addr *peer_pfx; - u32 rt_priority; - u32 ifa_flags; - u32 preferred_lft; - u32 valid_lft; - u16 scope; -}; - -union fwnet_hwaddr { - u8 u[16]; - struct { - __be64 uniq_id; - u8 max_rec; - u8 sspd; - u8 fifo[6]; - } uc; -}; - -enum cleanup_prefix_rt_t { - CLEANUP_PREFIX_RT_NOP = 0, - CLEANUP_PREFIX_RT_DEL = 1, - CLEANUP_PREFIX_RT_EXPIRE = 2, -}; - -enum { - IPV6_SADDR_RULE_INIT = 0, - IPV6_SADDR_RULE_LOCAL = 1, - IPV6_SADDR_RULE_SCOPE = 2, - IPV6_SADDR_RULE_PREFERRED = 3, - IPV6_SADDR_RULE_HOA = 4, - IPV6_SADDR_RULE_OIF = 5, - IPV6_SADDR_RULE_LABEL = 6, - IPV6_SADDR_RULE_PRIVACY = 7, - IPV6_SADDR_RULE_ORCHID = 8, - IPV6_SADDR_RULE_PREFIX = 9, - IPV6_SADDR_RULE_MAX = 10, -}; - -struct ipv6_saddr_score { - int rule; - int addr_type; - struct inet6_ifaddr *ifa; - long unsigned int scorebits[1]; - int scopedist; - int matchlen; -}; - -struct ipv6_saddr_dst { - const struct in6_addr *addr; - int ifindex; - int scope; - int label; - unsigned int prefs; -}; - -struct if6_iter_state { - struct seq_net_private p; - int bucket; - int offset; -}; - -enum addr_type_t { - UNICAST_ADDR = 0, - MULTICAST_ADDR = 1, - ANYCAST_ADDR = 2, -}; - -struct inet6_fill_args { - u32 portid; - u32 seq; - int event; - unsigned int flags; - int netnsid; - int ifindex; - enum addr_type_t type; -}; - -enum { - DAD_PROCESS = 0, - DAD_BEGIN = 1, - DAD_ABORT = 2, -}; - -struct xfrm_input_afinfo { - u8 family; - bool is_ipip; - int (*callback)(struct sk_buff *, u8, int); -}; - -enum ip6t_reject_with { - IP6T_ICMP6_NO_ROUTE = 0, - IP6T_ICMP6_ADM_PROHIBITED = 1, - IP6T_ICMP6_NOT_NEIGHBOUR = 2, - IP6T_ICMP6_ADDR_UNREACH = 3, - IP6T_ICMP6_PORT_UNREACH = 4, - IP6T_ICMP6_ECHOREPLY = 5, - IP6T_TCP_RESET = 6, - IP6T_ICMP6_POLICY_FAIL = 7, - IP6T_ICMP6_REJECT_ROUTE = 8, -}; - -struct ip6t_reject_info { - __u32 with; -}; - -enum { - FDB_NOTIFY_BIT = 1, - FDB_NOTIFY_INACTIVE_BIT = 2, -}; - -enum { - NFEA_UNSPEC = 0, - NFEA_ACTIVITY_NOTIFY = 1, - NFEA_DONT_REFRESH = 2, - __NFEA_MAX = 3, -}; - -struct __fdb_entry { - __u8 mac_addr[6]; - __u8 port_no; - __u8 is_local; - __u32 ageing_timer_value; - __u8 port_hi; - __u8 pad0; - __u16 unused; -}; - -enum switchdev_obj_id { - SWITCHDEV_OBJ_ID_UNDEFINED = 0, - SWITCHDEV_OBJ_ID_PORT_VLAN = 1, - SWITCHDEV_OBJ_ID_PORT_MDB = 2, - SWITCHDEV_OBJ_ID_HOST_MDB = 3, - SWITCHDEV_OBJ_ID_MRP = 4, - SWITCHDEV_OBJ_ID_RING_TEST_MRP = 5, - SWITCHDEV_OBJ_ID_RING_ROLE_MRP = 6, - SWITCHDEV_OBJ_ID_RING_STATE_MRP = 7, - SWITCHDEV_OBJ_ID_IN_TEST_MRP = 8, - SWITCHDEV_OBJ_ID_IN_ROLE_MRP = 9, - SWITCHDEV_OBJ_ID_IN_STATE_MRP = 10, -}; - -struct switchdev_obj { - struct list_head list; - struct net_device *orig_dev; - enum switchdev_obj_id id; - u32 flags; - void *complete_priv; - void (*complete)(struct net_device *, int, void *); -}; - -struct switchdev_obj_port_vlan { - struct switchdev_obj obj; - u16 flags; - u16 vid; - bool changed; -}; - -struct switchdev_obj_port_mdb { - struct switchdev_obj obj; - unsigned char addr[6]; - u16 vid; -}; - -enum switchdev_notifier_type { - SWITCHDEV_FDB_ADD_TO_BRIDGE = 1, - SWITCHDEV_FDB_DEL_TO_BRIDGE = 2, - SWITCHDEV_FDB_ADD_TO_DEVICE = 3, - SWITCHDEV_FDB_DEL_TO_DEVICE = 4, - SWITCHDEV_FDB_OFFLOADED = 5, - SWITCHDEV_FDB_FLUSH_TO_BRIDGE = 6, - SWITCHDEV_PORT_OBJ_ADD = 7, - SWITCHDEV_PORT_OBJ_DEL = 8, - SWITCHDEV_PORT_ATTR_SET = 9, - SWITCHDEV_VXLAN_FDB_ADD_TO_BRIDGE = 10, - SWITCHDEV_VXLAN_FDB_DEL_TO_BRIDGE = 11, - SWITCHDEV_VXLAN_FDB_ADD_TO_DEVICE = 12, - SWITCHDEV_VXLAN_FDB_DEL_TO_DEVICE = 13, - SWITCHDEV_VXLAN_FDB_OFFLOADED = 14, - SWITCHDEV_BRPORT_OFFLOADED = 15, - SWITCHDEV_BRPORT_UNOFFLOADED = 16, - SWITCHDEV_BRPORT_REPLAY = 17, -}; - -struct switchdev_notifier_info { - struct net_device *dev; - struct netlink_ext_ack *extack; - const void *ctx; -}; - -struct switchdev_notifier_fdb_info { - struct switchdev_notifier_info info; - const unsigned char *addr; - u16 vid; - u8 added_by_user: 1; - u8 is_local: 1; - u8 locked: 1; - u8 offloaded: 1; -}; - -struct switchdev_notifier_port_obj_info { - struct switchdev_notifier_info info; - const struct switchdev_obj *obj; - bool handled; -}; - -struct switchdev_notifier_port_attr_info { - struct switchdev_notifier_info info; - const struct switchdev_attr *attr; - bool handled; -}; - -struct br_switchdev_mdb_complete_info { - struct net_bridge_port *port; - struct br_ip ip; -}; - -struct ebt_stp_config_info { - __u8 flags; - __u16 root_priol; - __u16 root_priou; - char root_addr[6]; - char root_addrmsk[6]; - __u32 root_costl; - __u32 root_costu; - __u16 sender_priol; - __u16 sender_priou; - char sender_addr[6]; - char sender_addrmsk[6]; - __u16 portl; - __u16 portu; - __u16 msg_agel; - __u16 msg_ageu; - __u16 max_agel; - __u16 max_ageu; - __u16 hello_timel; - __u16 hello_timeu; - __u16 forward_delayl; - __u16 forward_delayu; -}; - -struct ebt_stp_info { - __u8 type; - struct ebt_stp_config_info config; - __u16 bitmask; - __u16 invflags; -}; - -struct stp_header { - u8 dsap; - u8 ssap; - u8 ctrl; - u8 pid; - u8 vers; - u8 type; -}; - -struct stp_config_pdu { - u8 flags; - u8 root[8]; - u8 root_cost[4]; - u8 sender[8]; - u8 port[2]; - u8 msg_age[2]; - u8 max_age[2]; - u8 hello_time[2]; - u8 forward_delay[2]; -}; - -struct unix_domain { - struct auth_domain h; -}; - -struct ip_map { - struct cache_head h; - char m_class[8]; - struct in6_addr m_addr; - struct unix_domain *m_client; - struct callback_head m_rcu; -}; - -struct unix_gid { - struct cache_head h; - kuid_t uid; - struct group_info *gi; - struct callback_head rcu; -}; - -union sctp_sack_variable { - struct sctp_gap_ack_block gab; - __be32 dup; -}; - -struct sctp_flush_ctx { - struct sctp_outq *q; - struct sctp_transport *transport; - struct list_head transport_list; - struct sctp_association *asoc; - struct sctp_packet *packet; - gfp_t gfp; -}; - -enum p9_fid_reftype { - P9_FID_REF_CREATE = 0, - P9_FID_REF_GET = 1, - P9_FID_REF_PUT = 2, - P9_FID_REF_DESTROY = 3, -} __attribute__((mode(byte))); - -struct trace_event_raw_9p_client_req { - struct trace_entry ent; - void *clnt; - __u8 type; - __u32 tag; - char __data[0]; -}; - -struct trace_event_raw_9p_client_res { - struct trace_entry ent; - void *clnt; - __u8 type; - __u32 tag; - __u32 err; - char __data[0]; -}; - -struct trace_event_raw_9p_protocol_dump { - struct trace_entry ent; - void *clnt; - __u8 type; - __u16 tag; - u32 __data_loc_line; - char __data[0]; -}; - -struct trace_event_raw_9p_fid_ref { - struct trace_entry ent; - int fid; - int refcount; - __u8 type; - char __data[0]; -}; - -struct trace_event_data_offsets_9p_client_req {}; - -struct trace_event_data_offsets_9p_client_res {}; - -struct trace_event_data_offsets_9p_protocol_dump { - u32 line; - const void *line_ptr_; -}; - -struct trace_event_data_offsets_9p_fid_ref {}; - -typedef void (*btf_trace_9p_client_req)(void *, struct p9_client *, int8_t, int); - -typedef void (*btf_trace_9p_client_res)(void *, struct p9_client *, int8_t, int, int); - -typedef void (*btf_trace_9p_protocol_dump)(void *, struct p9_client *, struct p9_fcall *); - -typedef void (*btf_trace_9p_fid_ref)(void *, struct p9_fid *, __u8); - -enum { - Opt_msize = 0, - Opt_trans = 1, - Opt_legacy = 2, - Opt_version = 3, - Opt_err___11 = 4, -}; - -struct mpls_iptunnel_encap { - u8 labels; - u8 ttl_propagate; - u8 default_ttl; - u8 reserved1; - u32 label[0]; -}; - -enum { - MPLS_IPTUNNEL_UNSPEC = 0, - MPLS_IPTUNNEL_DST = 1, - MPLS_IPTUNNEL_TTL = 2, - __MPLS_IPTUNNEL_MAX = 3, -}; - -typedef __u32 Elf32_Addr; - -typedef __u16 Elf32_Half; - -typedef __u32 Elf32_Off; - -struct elf32_hdr { - unsigned char e_ident[16]; - Elf32_Half e_type; - Elf32_Half e_machine; - Elf32_Word e_version; - Elf32_Addr e_entry; - Elf32_Off e_phoff; - Elf32_Off e_shoff; - Elf32_Word e_flags; - Elf32_Half e_ehsize; - Elf32_Half e_phentsize; - Elf32_Half e_phnum; - Elf32_Half e_shentsize; - Elf32_Half e_shnum; - Elf32_Half e_shstrndx; -}; - -typedef struct elf32_hdr Elf32_Ehdr; - -struct elf32_phdr { - Elf32_Word p_type; - Elf32_Off p_offset; - Elf32_Addr p_vaddr; - Elf32_Addr p_paddr; - Elf32_Word p_filesz; - Elf32_Word p_memsz; - Elf32_Word p_flags; - Elf32_Word p_align; -}; - -typedef struct elf32_phdr Elf32_Phdr; - -typedef struct elf64_phdr Elf64_Phdr; - -typedef struct elf32_note Elf32_Nhdr; - -struct freader { - void *buf; - u32 buf_sz; - int err; - union { - struct { - struct file *file; - struct folio *folio; - void *addr; - loff_t folio_off; - bool may_fault; - }; - struct { - const char *data; - u64 data_sz; - }; - }; -}; - -struct cpio_data { - void *data; - size_t size; - char name[18]; -}; - -enum cpio_fields { - C_MAGIC = 0, - C_INO = 1, - C_MODE = 2, - C_UID = 3, - C_GID = 4, - C_NLINK = 5, - C_MTIME = 6, - C_FILESIZE = 7, - C_MAJ = 8, - C_MIN = 9, - C_RMAJ = 10, - C_RMIN = 11, - C_NAMESIZE = 12, - C_CHKSUM = 13, - C_NFIELDS = 14, -}; - -struct cpuinfo_32bit { - u32 reg_id_dfr0; - u32 reg_id_dfr1; - u32 reg_id_isar0; - u32 reg_id_isar1; - u32 reg_id_isar2; - u32 reg_id_isar3; - u32 reg_id_isar4; - u32 reg_id_isar5; - u32 reg_id_isar6; - u32 reg_id_mmfr0; - u32 reg_id_mmfr1; - u32 reg_id_mmfr2; - u32 reg_id_mmfr3; - u32 reg_id_mmfr4; - u32 reg_id_mmfr5; - u32 reg_id_pfr0; - u32 reg_id_pfr1; - u32 reg_id_pfr2; - u32 reg_mvfr0; - u32 reg_mvfr1; - u32 reg_mvfr2; -}; - -struct cpuinfo_arm64 { - struct kobject kobj; - u64 reg_ctr; - u64 reg_cntfrq; - u64 reg_dczid; - u64 reg_midr; - u64 reg_revidr; - u64 reg_gmid; - u64 reg_smidr; - u64 reg_id_aa64dfr0; - u64 reg_id_aa64dfr1; - u64 reg_id_aa64isar0; - u64 reg_id_aa64isar1; - u64 reg_id_aa64isar2; - u64 reg_id_aa64isar3; - u64 reg_id_aa64mmfr0; - u64 reg_id_aa64mmfr1; - u64 reg_id_aa64mmfr2; - u64 reg_id_aa64mmfr3; - u64 reg_id_aa64mmfr4; - u64 reg_id_aa64pfr0; - u64 reg_id_aa64pfr1; - u64 reg_id_aa64pfr2; - u64 reg_id_aa64zfr0; - u64 reg_id_aa64smfr0; - u64 reg_id_aa64fpfr0; - struct cpuinfo_32bit aarch32; -}; - -typedef void text_poke_f(void *, void *, size_t, size_t); - -struct aarch64_insn_patch { - void **text_addrs; - u32 *new_insns; - int insn_cnt; - atomic_t cpu_count; -}; - -typedef volatile long int prel64_t; - -typedef bool filter_t(u64); - -struct ftr_set_desc { - char name[20]; - union { - struct arm64_ftr_override *override; - prel64_t override_prel; - }; - struct { - char name[10]; - u8 shift; - u8 width; - union { - filter_t *filter; - prel64_t filter_prel; - }; - } fields[0]; -}; - -enum aarch64_insn_system_register { - AARCH64_INSN_SYSREG_TPIDR_EL1 = 18052, - AARCH64_INSN_SYSREG_TPIDR_EL2 = 26242, - AARCH64_INSN_SYSREG_SP_EL0 = 16904, -}; - -enum aarch64_insn_condition { - AARCH64_INSN_COND_EQ = 0, - AARCH64_INSN_COND_NE = 1, - AARCH64_INSN_COND_CS = 2, - AARCH64_INSN_COND_CC = 3, - AARCH64_INSN_COND_MI = 4, - AARCH64_INSN_COND_PL = 5, - AARCH64_INSN_COND_VS = 6, - AARCH64_INSN_COND_VC = 7, - AARCH64_INSN_COND_HI = 8, - AARCH64_INSN_COND_LS = 9, - AARCH64_INSN_COND_GE = 10, - AARCH64_INSN_COND_LT = 11, - AARCH64_INSN_COND_GT = 12, - AARCH64_INSN_COND_LE = 13, - AARCH64_INSN_COND_AL = 14, -}; - -enum aarch64_insn_size_type { - AARCH64_INSN_SIZE_8 = 0, - AARCH64_INSN_SIZE_16 = 1, - AARCH64_INSN_SIZE_32 = 2, - AARCH64_INSN_SIZE_64 = 3, -}; - -enum aarch64_insn_ldst_type { - AARCH64_INSN_LDST_LOAD_REG_OFFSET = 0, - AARCH64_INSN_LDST_STORE_REG_OFFSET = 1, - AARCH64_INSN_LDST_LOAD_IMM_OFFSET = 2, - AARCH64_INSN_LDST_STORE_IMM_OFFSET = 3, - AARCH64_INSN_LDST_LOAD_PAIR_PRE_INDEX = 4, - AARCH64_INSN_LDST_STORE_PAIR_PRE_INDEX = 5, - AARCH64_INSN_LDST_LOAD_PAIR_POST_INDEX = 6, - AARCH64_INSN_LDST_STORE_PAIR_POST_INDEX = 7, - AARCH64_INSN_LDST_LOAD_EX = 8, - AARCH64_INSN_LDST_LOAD_ACQ_EX = 9, - AARCH64_INSN_LDST_STORE_EX = 10, - AARCH64_INSN_LDST_STORE_REL_EX = 11, - AARCH64_INSN_LDST_SIGNED_LOAD_IMM_OFFSET = 12, - AARCH64_INSN_LDST_SIGNED_LOAD_REG_OFFSET = 13, -}; - -enum aarch64_insn_adsb_type { - AARCH64_INSN_ADSB_ADD = 0, - AARCH64_INSN_ADSB_SUB = 1, - AARCH64_INSN_ADSB_ADD_SETFLAGS = 2, - AARCH64_INSN_ADSB_SUB_SETFLAGS = 3, -}; - -enum aarch64_insn_bitfield_type { - AARCH64_INSN_BITFIELD_MOVE = 0, - AARCH64_INSN_BITFIELD_MOVE_UNSIGNED = 1, - AARCH64_INSN_BITFIELD_MOVE_SIGNED = 2, -}; - -enum aarch64_insn_data1_type { - AARCH64_INSN_DATA1_REVERSE_16 = 0, - AARCH64_INSN_DATA1_REVERSE_32 = 1, - AARCH64_INSN_DATA1_REVERSE_64 = 2, -}; - -enum aarch64_insn_data2_type { - AARCH64_INSN_DATA2_UDIV = 0, - AARCH64_INSN_DATA2_SDIV = 1, - AARCH64_INSN_DATA2_LSLV = 2, - AARCH64_INSN_DATA2_LSRV = 3, - AARCH64_INSN_DATA2_ASRV = 4, - AARCH64_INSN_DATA2_RORV = 5, -}; - -enum aarch64_insn_data3_type { - AARCH64_INSN_DATA3_MADD = 0, - AARCH64_INSN_DATA3_MSUB = 1, -}; - -enum aarch64_insn_adr_type { - AARCH64_INSN_ADR_TYPE_ADRP = 0, - AARCH64_INSN_ADR_TYPE_ADR = 1, -}; - -enum aarch64_insn_mem_atomic_op { - AARCH64_INSN_MEM_ATOMIC_ADD = 0, - AARCH64_INSN_MEM_ATOMIC_CLR = 1, - AARCH64_INSN_MEM_ATOMIC_EOR = 2, - AARCH64_INSN_MEM_ATOMIC_SET = 3, - AARCH64_INSN_MEM_ATOMIC_SWP = 4, -}; - -enum aarch64_insn_mem_order_type { - AARCH64_INSN_MEM_ORDER_NONE = 0, - AARCH64_INSN_MEM_ORDER_ACQ = 1, - AARCH64_INSN_MEM_ORDER_REL = 2, - AARCH64_INSN_MEM_ORDER_ACQREL = 3, -}; - -enum aarch64_insn_mb_type { - AARCH64_INSN_MB_SY = 0, - AARCH64_INSN_MB_ST = 1, - AARCH64_INSN_MB_LD = 2, - AARCH64_INSN_MB_ISH = 3, - AARCH64_INSN_MB_ISHST = 4, - AARCH64_INSN_MB_ISHLD = 5, - AARCH64_INSN_MB_NSH = 6, - AARCH64_INSN_MB_NSHST = 7, - AARCH64_INSN_MB_NSHLD = 8, - AARCH64_INSN_MB_OSH = 9, - AARCH64_INSN_MB_OSHST = 10, - AARCH64_INSN_MB_OSHLD = 11, -}; - -typedef u64 (*bpf_trampoline_enter_t)(struct bpf_prog *, struct bpf_tramp_run_ctx *); - -typedef void (*bpf_trampoline_exit_t)(struct bpf_prog *, u64, struct bpf_tramp_run_ctx *); - -enum bpf_text_poke_type { - BPF_MOD_CALL = 0, - BPF_MOD_JUMP = 1, -}; - -struct bpf_binary_header { - u32 size; - long: 0; - u8 image[0]; -}; - -typedef void (*bpf_jit_fill_hole_t)(void *, unsigned int); - -struct jit_ctx { - const struct bpf_prog *prog; - int idx; - int epilogue_offset; - int *offset; - int exentry_idx; - int nr_used_callee_reg; - u8 used_callee_reg[8]; - __le32 *image; - __le32 *ro_image; - u32 stack_size; - u64 user_vm_start; - u64 arena_vm_start; - bool fp_used; - bool write; -}; - -struct bpf_plt { - u32 insn_ldr; - u32 insn_br; - u64 target; -}; - -struct arm64_jit_data { - struct bpf_binary_header *header; - u8 *ro_image; - struct bpf_binary_header *ro_header; - struct jit_ctx ctx; -}; - -struct taint_flag { - char c_true; - char c_false; - bool module; - const char *desc; -}; - -enum ctx_state { - CT_STATE_DISABLED = -1, - CT_STATE_KERNEL = 0, - CT_STATE_IDLE = 1, - CT_STATE_USER = 2, - CT_STATE_GUEST = 3, - CT_STATE_MAX = 4, -}; - -struct context_tracking { - atomic_t state; - long int nesting; - long int nmi_nesting; -}; - -struct warn_args { - const char *fmt; - va_list args; -}; - -struct sigaltstack { - void *ss_sp; - int ss_flags; - __kernel_size_t ss_size; -}; - -typedef struct sigaltstack stack_t; - -enum { - TRACE_SIGNAL_DELIVERED = 0, - TRACE_SIGNAL_IGNORED = 1, - TRACE_SIGNAL_ALREADY_PENDING = 2, - TRACE_SIGNAL_OVERFLOW_FAIL = 3, - TRACE_SIGNAL_LOSE_INFO = 4, -}; - -struct trace_event_raw_signal_generate { - struct trace_entry ent; - int sig; - int errno; - int code; - char comm[16]; - pid_t pid; - int group; - int result; - char __data[0]; -}; - -struct trace_event_raw_signal_deliver { - struct trace_entry ent; - int sig; - int errno; - int code; - long unsigned int sa_handler; - long unsigned int sa_flags; - char __data[0]; -}; - -struct trace_event_data_offsets_signal_generate {}; - -struct trace_event_data_offsets_signal_deliver {}; - -typedef void (*btf_trace_signal_generate)(void *, int, struct kernel_siginfo *, struct task_struct *, int, int); - -typedef void (*btf_trace_signal_deliver)(void *, int, struct kernel_siginfo *, struct k_sigaction *); - -enum sig_handler { - HANDLER_CURRENT = 0, - HANDLER_SIG_DFL = 1, - HANDLER_EXIT = 2, -}; - -enum mod_license { - NOT_GPL_ONLY = 0, - GPL_ONLY = 1, -}; - -struct find_symbol_arg { - const char *name; - bool gplok; - bool warn; - struct module *owner; - const s32 *crc; - const struct kernel_symbol *sym; - enum mod_license license; -}; - -enum fail_dup_mod_reason { - FAIL_DUP_MOD_BECOMING = 0, - FAIL_DUP_MOD_LOAD = 1, -}; - -struct trace_event_raw_module_load { - struct trace_entry ent; - unsigned int taints; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_module_free { - struct trace_entry ent; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_module_request { - struct trace_entry ent; - long unsigned int ip; - bool wait; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_data_offsets_module_load { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_module_free { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_module_request { - u32 name; - const void *name_ptr_; -}; - -typedef void (*btf_trace_module_load)(void *, struct module *); - -typedef void (*btf_trace_module_free)(void *, struct module *); - -typedef void (*btf_trace_module_request)(void *, char *, bool, long unsigned int); - -struct symsearch { - const struct kernel_symbol *start; - const struct kernel_symbol *stop; - const s32 *crcs; - enum mod_license license; -}; - -struct mod_initfree { - struct llist_node node; - void *init_text; - void *init_data; - void *init_rodata; -}; - -struct idempotent { - const void *cookie; - struct hlist_node entry; - struct completion complete; - int ret; -}; - -enum { - Q_REQUEUE_PI_NONE = 0, - Q_REQUEUE_PI_IGNORE = 1, - Q_REQUEUE_PI_IN_PROGRESS = 2, - Q_REQUEUE_PI_WAIT = 3, - Q_REQUEUE_PI_DONE = 4, - Q_REQUEUE_PI_LOCKED = 5, -}; - -struct audit_fsnotify_mark { - dev_t dev; - long unsigned int ino; - char *path; - struct fsnotify_mark mark; - struct audit_krule *rule; -}; - -struct trace_buffer_meta { - __u32 meta_page_size; - __u32 meta_struct_len; - __u32 subbuf_size; - __u32 nr_subbufs; - struct { - __u64 lost_events; - __u32 id; - __u32 read; - } reader; - __u64 flags; - __u64 entries; - __u64 overrun; - __u64 read; - __u64 Reserved1; - __u64 Reserved2; -}; - -enum ring_buffer_type { - RINGBUF_TYPE_DATA_TYPE_LEN_MAX = 28, - RINGBUF_TYPE_PADDING = 29, - RINGBUF_TYPE_TIME_EXTEND = 30, - RINGBUF_TYPE_TIME_STAMP = 31, -}; - -typedef bool (*ring_buffer_cond_fn)(void *); - -enum ring_buffer_flags { - RB_FL_OVERWRITE = 1, -}; - -typedef struct { - void *lock; -} class_cpus_read_lock_t; - -struct ring_buffer_per_cpu; - -struct buffer_page; - -struct ring_buffer_iter { - struct ring_buffer_per_cpu *cpu_buffer; - long unsigned int head; - long unsigned int next_event; - struct buffer_page *head_page; - struct buffer_page *cache_reader_page; - long unsigned int cache_read; - long unsigned int cache_pages_removed; - u64 read_stamp; - u64 page_stamp; - struct ring_buffer_event *event; - size_t event_size; - int missed_events; -}; - -struct rb_irq_work { - struct irq_work work; - wait_queue_head_t waiters; - wait_queue_head_t full_waiters; - atomic_t seq; - bool waiters_pending; - bool full_waiters_pending; - bool wakeup_full; -}; - -struct trace_buffer { - unsigned int flags; - int cpus; - atomic_t record_disabled; - atomic_t resizing; - cpumask_var_t cpumask; - struct lock_class_key *reader_lock_key; - struct mutex mutex; - struct ring_buffer_per_cpu **buffers; - struct hlist_node node; - u64 (*clock)(void); - struct rb_irq_work irq_work; - bool time_stamp_abs; - long unsigned int range_addr_start; - long unsigned int range_addr_end; - long int last_text_delta; - long int last_data_delta; - unsigned int subbuf_size; - unsigned int subbuf_order; - unsigned int max_data_size; -}; - -struct ring_buffer_meta { - int magic; - int struct_size; - long unsigned int text_addr; - long unsigned int data_addr; - long unsigned int first_buffer; - long unsigned int head_buffer; - long unsigned int commit_buffer; - __u32 subbuf_size; - __u32 nr_subbufs; - int buffers[0]; -}; - -enum { - RB_LEN_TIME_EXTEND = 8, - RB_LEN_TIME_STAMP = 8, -}; - -struct buffer_data_page { - u64 time_stamp; - local_t commit; - unsigned char data[0]; -}; - -struct buffer_data_read_page { - unsigned int order; - struct buffer_data_page *data; -}; - -struct buffer_page { - struct list_head list; - local_t write; - unsigned int read; - local_t entries; - long unsigned int real_end; - unsigned int order; - u32 id: 30; - u32 range: 1; - struct buffer_data_page *page; -}; - -struct rb_event_info { - u64 ts; - u64 delta; - u64 before; - u64 after; - long unsigned int length; - struct buffer_page *tail_page; - int add_timestamp; -}; - -enum { - RB_ADD_STAMP_NONE = 0, - RB_ADD_STAMP_EXTEND = 2, - RB_ADD_STAMP_ABSOLUTE = 4, - RB_ADD_STAMP_FORCE = 8, -}; - -enum { - RB_CTX_TRANSITION = 0, - RB_CTX_NMI = 1, - RB_CTX_IRQ = 2, - RB_CTX_SOFTIRQ = 3, - RB_CTX_NORMAL = 4, - RB_CTX_MAX = 5, -}; - -struct rb_time_struct { - local64_t time; -}; - -typedef struct rb_time_struct rb_time_t; - -struct ring_buffer_per_cpu { - int cpu; - atomic_t record_disabled; - atomic_t resize_disabled; - struct trace_buffer *buffer; - raw_spinlock_t reader_lock; - arch_spinlock_t lock; - struct lock_class_key lock_key; - struct buffer_data_page *free_page; - long unsigned int nr_pages; - unsigned int current_context; - struct list_head *pages; - long unsigned int cnt; - struct buffer_page *head_page; - struct buffer_page *tail_page; - struct buffer_page *commit_page; - struct buffer_page *reader_page; - long unsigned int lost_events; - long unsigned int last_overrun; - long unsigned int nest; - local_t entries_bytes; - local_t entries; - local_t overrun; - local_t commit_overrun; - local_t dropped_events; - local_t committing; - local_t commits; - local_t pages_touched; - local_t pages_lost; - local_t pages_read; - long int last_pages_touch; - size_t shortest_full; - long unsigned int read; - long unsigned int read_bytes; - rb_time_t write_stamp; - rb_time_t before_stamp; - u64 event_stamp[5]; - u64 read_stamp; - long unsigned int pages_removed; - unsigned int mapped; - unsigned int user_mapped; - struct mutex mapping_lock; - long unsigned int *subbuf_ids; - struct trace_buffer_meta *meta_page; - struct ring_buffer_meta *ring_meta; - long int nr_pages_to_update; - struct list_head new_pages; - struct work_struct update_pages_work; - struct completion update_done; - struct rb_irq_work irq_work; -}; - -struct rb_wait_data { - struct rb_irq_work *irq_work; - int seq; -}; - -struct btf_anon_stack { - u32 tid; - u32 offset; -}; - -struct trace_uprobe { - struct dyn_event devent; - struct uprobe_consumer consumer; - struct path path; - char *filename; - struct uprobe *uprobe; - long unsigned int offset; - long unsigned int ref_ctr_offset; - long unsigned int *nhits; - struct trace_probe tp; -}; - -struct uprobe_trace_entry_head { - struct trace_entry ent; - long unsigned int vaddr[0]; -}; - -struct uprobe_cpu_buffer { - struct mutex mutex; - void *buf; - int dsize; -}; - -typedef bool (*filter_func_t)(struct uprobe_consumer *, struct mm_struct *); - -struct bpf_bloom_filter { - struct bpf_map map; - u32 bitset_mask; - u32 hash_seed; - u32 nr_hash_funcs; - long unsigned int bitset[0]; -}; - -enum { - BPF_F_SYSCTL_BASE_NAME = 1, -}; - -struct bpf_sockopt_buf { - u8 data[32]; -}; - -struct bpf_cgroup_link { - struct bpf_link link; - struct cgroup *cgroup; - enum bpf_attach_type type; -}; - -struct bpf_prog_list { - struct hlist_node node; - struct bpf_prog *prog; - struct bpf_cgroup_link *link; - struct bpf_cgroup_storage *storage[2]; - u32 flags; -}; - -struct cgroup_lsm_atype { - u32 attach_btf_id; - int refcnt; -}; - -typedef u64 (*btf_bpf_get_local_storage)(struct bpf_map *, u64); - -typedef u64 (*btf_bpf_get_retval)(void); - -typedef u64 (*btf_bpf_set_retval)(int); - -typedef u64 (*btf_bpf_sysctl_get_name)(struct bpf_sysctl_kern *, char *, size_t, u64); - -typedef u64 (*btf_bpf_sysctl_get_current_value)(struct bpf_sysctl_kern *, char *, size_t); - -typedef u64 (*btf_bpf_sysctl_get_new_value)(struct bpf_sysctl_kern *, char *, size_t); - -typedef u64 (*btf_bpf_sysctl_set_new_value)(struct bpf_sysctl_kern *, const char *, size_t); - -typedef u64 (*btf_bpf_get_netns_cookie_sockopt)(struct bpf_sockopt_kern *); - -enum rseq_cpu_id_state { - RSEQ_CPU_ID_UNINITIALIZED = -1, - RSEQ_CPU_ID_REGISTRATION_FAILED = -2, -}; - -enum rseq_flags { - RSEQ_FLAG_UNREGISTER = 1, -}; - -enum rseq_cs_flags { - RSEQ_CS_FLAG_NO_RESTART_ON_PREEMPT = 1, - RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL = 2, - RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE = 4, -}; - -struct rseq_cs { - __u32 version; - __u32 flags; - __u64 start_ip; - __u64 post_commit_offset; - __u64 abort_ip; -}; - -typedef struct { - void *lock; -} class_irq_t; - -struct trace_event_raw_rseq_update { - struct trace_entry ent; - s32 cpu_id; - s32 node_id; - s32 mm_cid; - char __data[0]; -}; - -struct trace_event_raw_rseq_ip_fixup { - struct trace_entry ent; - long unsigned int regs_ip; - long unsigned int start_ip; - long unsigned int post_commit_offset; - long unsigned int abort_ip; - char __data[0]; -}; - -struct trace_event_data_offsets_rseq_update {}; - -struct trace_event_data_offsets_rseq_ip_fixup {}; - -typedef void (*btf_trace_rseq_update)(void *, struct task_struct *); - -typedef void (*btf_trace_rseq_ip_fixup)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - -enum lruvec_flags { - LRUVEC_CGROUP_CONGESTED = 0, - LRUVEC_NODE_CONGESTED = 1, -}; - -enum { - LRU_GEN_CORE = 0, - LRU_GEN_MM_WALK = 1, - LRU_GEN_NONLEAF_YOUNG = 2, - NR_LRU_GEN_CAPS = 3, -}; - -enum { - MM_LEAF_TOTAL = 0, - MM_LEAF_YOUNG = 1, - MM_NONLEAF_FOUND = 2, - MM_NONLEAF_ADDED = 3, - NR_MM_STATS = 4, -}; - -enum pgdat_flags { - PGDAT_DIRTY = 0, - PGDAT_WRITEBACK = 1, - PGDAT_RECLAIM_LOCKED = 2, -}; - -struct reclaim_stat { - unsigned int nr_dirty; - unsigned int nr_unqueued_dirty; - unsigned int nr_congested; - unsigned int nr_writeback; - unsigned int nr_immediate; - unsigned int nr_pageout; - unsigned int nr_activate[2]; - unsigned int nr_ref_keep; - unsigned int nr_unmap_fail; - unsigned int nr_lazyfree_fail; - unsigned int nr_demoted; -}; - -struct trace_event_raw_mm_vmscan_kswapd_sleep { - struct trace_entry ent; - int nid; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_kswapd_wake { - struct trace_entry ent; - int nid; - int zid; - int order; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_wakeup_kswapd { - struct trace_entry ent; - int nid; - int zid; - int order; - long unsigned int gfp_flags; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_direct_reclaim_begin_template { - struct trace_entry ent; - int order; - long unsigned int gfp_flags; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_direct_reclaim_end_template { - struct trace_entry ent; - long unsigned int nr_reclaimed; - char __data[0]; -}; - -struct trace_event_raw_mm_shrink_slab_start { - struct trace_entry ent; - struct shrinker *shr; - void *shrink; - int nid; - long int nr_objects_to_shrink; - long unsigned int gfp_flags; - long unsigned int cache_items; - long long unsigned int delta; - long unsigned int total_scan; - int priority; - char __data[0]; -}; - -struct trace_event_raw_mm_shrink_slab_end { - struct trace_entry ent; - struct shrinker *shr; - int nid; - void *shrink; - long int unused_scan; - long int new_scan; - int retval; - long int total_scan; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_lru_isolate { - struct trace_entry ent; - int highest_zoneidx; - int order; - long unsigned int nr_requested; - long unsigned int nr_scanned; - long unsigned int nr_skipped; - long unsigned int nr_taken; - int lru; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_write_folio { - struct trace_entry ent; - long unsigned int pfn; - int reclaim_flags; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_lru_shrink_inactive { - struct trace_entry ent; - int nid; - long unsigned int nr_scanned; - long unsigned int nr_reclaimed; - long unsigned int nr_dirty; - long unsigned int nr_writeback; - long unsigned int nr_congested; - long unsigned int nr_immediate; - unsigned int nr_activate0; - unsigned int nr_activate1; - long unsigned int nr_ref_keep; - long unsigned int nr_unmap_fail; - int priority; - int reclaim_flags; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_lru_shrink_active { - struct trace_entry ent; - int nid; - long unsigned int nr_taken; - long unsigned int nr_active; - long unsigned int nr_deactivated; - long unsigned int nr_referenced; - int priority; - int reclaim_flags; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_node_reclaim_begin { - struct trace_entry ent; - int nid; - int order; - long unsigned int gfp_flags; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_throttled { - struct trace_entry ent; - int nid; - int usec_timeout; - int usec_delayed; - int reason; - char __data[0]; -}; - -struct trace_event_data_offsets_mm_vmscan_kswapd_sleep {}; - -struct trace_event_data_offsets_mm_vmscan_kswapd_wake {}; - -struct trace_event_data_offsets_mm_vmscan_wakeup_kswapd {}; - -struct trace_event_data_offsets_mm_vmscan_direct_reclaim_begin_template {}; - -struct trace_event_data_offsets_mm_vmscan_direct_reclaim_end_template {}; - -struct trace_event_data_offsets_mm_shrink_slab_start {}; - -struct trace_event_data_offsets_mm_shrink_slab_end {}; - -struct trace_event_data_offsets_mm_vmscan_lru_isolate {}; - -struct trace_event_data_offsets_mm_vmscan_write_folio {}; - -struct trace_event_data_offsets_mm_vmscan_lru_shrink_inactive {}; - -struct trace_event_data_offsets_mm_vmscan_lru_shrink_active {}; - -struct trace_event_data_offsets_mm_vmscan_node_reclaim_begin {}; - -struct trace_event_data_offsets_mm_vmscan_throttled {}; - -typedef void (*btf_trace_mm_vmscan_kswapd_sleep)(void *, int); - -typedef void (*btf_trace_mm_vmscan_kswapd_wake)(void *, int, int, int); - -typedef void (*btf_trace_mm_vmscan_wakeup_kswapd)(void *, int, int, int, gfp_t); - -typedef void (*btf_trace_mm_vmscan_direct_reclaim_begin)(void *, int, gfp_t); - -typedef void (*btf_trace_mm_vmscan_memcg_reclaim_begin)(void *, int, gfp_t); - -typedef void (*btf_trace_mm_vmscan_memcg_softlimit_reclaim_begin)(void *, int, gfp_t); - -typedef void (*btf_trace_mm_vmscan_direct_reclaim_end)(void *, long unsigned int); - -typedef void (*btf_trace_mm_vmscan_memcg_reclaim_end)(void *, long unsigned int); - -typedef void (*btf_trace_mm_vmscan_memcg_softlimit_reclaim_end)(void *, long unsigned int); - -typedef void (*btf_trace_mm_shrink_slab_start)(void *, struct shrinker *, struct shrink_control *, long int, long unsigned int, long long unsigned int, long unsigned int, int); - -typedef void (*btf_trace_mm_shrink_slab_end)(void *, struct shrinker *, int, int, long int, long int, long int); - -typedef void (*btf_trace_mm_vmscan_lru_isolate)(void *, int, int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int); - -typedef void (*btf_trace_mm_vmscan_write_folio)(void *, struct folio *); - -typedef void (*btf_trace_mm_vmscan_lru_shrink_inactive)(void *, int, long unsigned int, long unsigned int, struct reclaim_stat *, int, int); - -typedef void (*btf_trace_mm_vmscan_lru_shrink_active)(void *, int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int, int); - -typedef void (*btf_trace_mm_vmscan_node_reclaim_begin)(void *, int, int, gfp_t); - -typedef void (*btf_trace_mm_vmscan_node_reclaim_end)(void *, long unsigned int); - -typedef void (*btf_trace_mm_vmscan_throttled)(void *, int, int, int, int); - -struct scan_control { - long unsigned int nr_to_reclaim; - nodemask_t *nodemask; - struct mem_cgroup *target_mem_cgroup; - long unsigned int anon_cost; - long unsigned int file_cost; - int *proactive_swappiness; - unsigned int may_deactivate: 2; - unsigned int force_deactivate: 1; - unsigned int skipped_deactivate: 1; - unsigned int may_writepage: 1; - unsigned int may_unmap: 1; - unsigned int may_swap: 1; - unsigned int no_cache_trim_mode: 1; - unsigned int cache_trim_mode_failed: 1; - unsigned int proactive: 1; - unsigned int memcg_low_reclaim: 1; - unsigned int memcg_low_skipped: 1; - unsigned int memcg_full_walk: 1; - unsigned int hibernation_mode: 1; - unsigned int compaction_ready: 1; - unsigned int cache_trim_mode: 1; - unsigned int file_is_tiny: 1; - unsigned int no_demotion: 1; - s8 order; - s8 priority; - s8 reclaim_idx; - gfp_t gfp_mask; - long unsigned int nr_scanned; - long unsigned int nr_reclaimed; - struct { - unsigned int dirty; - unsigned int unqueued_dirty; - unsigned int congested; - unsigned int writeback; - unsigned int immediate; - unsigned int file_taken; - unsigned int taken; - } nr; - struct reclaim_state reclaim_state; -}; - -typedef enum { - PAGE_KEEP = 0, - PAGE_ACTIVATE = 1, - PAGE_SUCCESS = 2, - PAGE_CLEAN = 3, -} pageout_t; - -enum folio_references { - FOLIOREF_RECLAIM = 0, - FOLIOREF_RECLAIM_CLEAN = 1, - FOLIOREF_KEEP = 2, - FOLIOREF_ACTIVATE = 3, -}; - -enum scan_balance { - SCAN_EQUAL = 0, - SCAN_FRACT = 1, - SCAN_ANON = 2, - SCAN_FILE = 3, -}; - -struct ctrl_pos { - long unsigned int refaulted; - long unsigned int total; - int gain; -}; - -enum { - MEMCG_LRU_NOP = 0, - MEMCG_LRU_HEAD = 1, - MEMCG_LRU_TAIL = 2, - MEMCG_LRU_OLD = 3, - MEMCG_LRU_YOUNG = 4, -}; - -struct thpsize { - struct kobject kobj; - struct list_head node; - int order; -}; - -struct trace_event_raw_migration_pmd { - struct trace_entry ent; - long unsigned int addr; - long unsigned int pmd; - char __data[0]; -}; - -struct trace_event_data_offsets_migration_pmd {}; - -typedef void (*btf_trace_set_migration_pmd)(void *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_remove_migration_pmd)(void *, long unsigned int, long unsigned int); - -struct file_clone_range { - __s64 src_fd; - __u64 src_offset; - __u64 src_length; - __u64 dest_offset; -}; - -struct fsuuid2 { - __u8 len; - __u8 uuid[16]; -}; - -struct fs_sysfs_path { - __u8 len; - __u8 name[128]; -}; - -struct file_dedupe_range_info { - __s64 dest_fd; - __u64 dest_offset; - __u64 bytes_deduped; - __s32 status; - __u32 reserved; -}; - -struct file_dedupe_range { - __u64 src_offset; - __u64 src_length; - __u16 dest_count; - __u16 reserved1; - __u32 reserved2; - struct file_dedupe_range_info info[0]; -}; - -struct fsxattr { - __u32 fsx_xflags; - __u32 fsx_extsize; - __u32 fsx_nextents; - __u32 fsx_projid; - __u32 fsx_cowextsize; - unsigned char fsx_pad[8]; -}; - -struct space_resv { - __s16 l_type; - __s16 l_whence; - __s64 l_start; - __s64 l_len; - __s32 l_sysid; - __u32 l_pid; - __s32 l_pad[4]; -}; - -struct fiemap { - __u64 fm_start; - __u64 fm_length; - __u32 fm_flags; - __u32 fm_mapped_extents; - __u32 fm_extent_count; - __u32 fm_reserved; - struct fiemap_extent fm_extents[0]; -}; - -struct fscrypt_get_policy_ex_arg { - __u64 policy_size; - union { - __u8 version; - struct fscrypt_policy_v1 v1; - struct fscrypt_policy_v2 v2; - } policy; -}; - -struct pde_opener { - struct list_head lh; - struct file *file; - bool closing; - struct completion *c; -}; - -enum { - BIAS = 2147483648, -}; - -struct pending_reservation { - struct rb_node rb_node; - ext4_lblk_t lclu; -}; - -struct rsvd_count { - int ndelayed; - bool first_do_lblk_found; - ext4_lblk_t first_do_lblk; - ext4_lblk_t last_do_lblk; - struct extent_status *left_es; - bool partial; - ext4_lblk_t lclu; -}; - -struct ext4_fc_tl { - __le16 fc_tag; - __le16 fc_len; -}; - -struct ext4_fc_head { - __le32 fc_features; - __le32 fc_tid; -}; - -struct ext4_fc_add_range { - __le32 fc_ino; - __u8 fc_ex[12]; -}; - -struct ext4_fc_del_range { - __le32 fc_ino; - __le32 fc_lblk; - __le32 fc_len; -}; - -struct ext4_fc_dentry_info { - __le32 fc_parent_ino; - __le32 fc_ino; - __u8 fc_dname[0]; -}; - -struct ext4_fc_inode { - __le32 fc_ino; - __u8 fc_raw_inode[0]; -}; - -struct ext4_fc_tail { - __le32 fc_tid; - __le32 fc_crc; -}; - -enum { - EXT4_FC_STATUS_OK = 0, - EXT4_FC_STATUS_INELIGIBLE = 1, - EXT4_FC_STATUS_SKIPPED = 2, - EXT4_FC_STATUS_FAILED = 3, -}; - -struct ext4_fc_dentry_update { - int fcd_op; - int fcd_parent; - int fcd_ino; - struct qstr fcd_name; - unsigned char fcd_iname[40]; - struct list_head fcd_list; - struct list_head fcd_dilist; -}; - -struct __track_dentry_update_args { - struct dentry *dentry; - int op; -}; - -struct __track_range_args { - ext4_lblk_t start; - ext4_lblk_t end; -}; - -struct dentry_info_args { - int parent_ino; - int dname_len; - int ino; - int inode_len; - char *dname; -}; - -struct ext4_fc_tl_mem { - u16 fc_tag; - u16 fc_len; -}; - -struct cdrom_tocentry { - __u8 cdte_track; - __u8 cdte_adr: 4; - __u8 cdte_ctrl: 4; - __u8 cdte_format; - union cdrom_addr cdte_addr; - __u8 cdte_datamode; -}; - -struct iso_volume_descriptor { - __u8 type[1]; - char id[5]; - __u8 version[1]; - __u8 data[2041]; -}; - -struct iso_primary_descriptor { - __u8 type[1]; - char id[5]; - __u8 version[1]; - __u8 unused1[1]; - char system_id[32]; - char volume_id[32]; - __u8 unused2[8]; - __u8 volume_space_size[8]; - __u8 unused3[32]; - __u8 volume_set_size[4]; - __u8 volume_sequence_number[4]; - __u8 logical_block_size[4]; - __u8 path_table_size[8]; - __u8 type_l_path_table[4]; - __u8 opt_type_l_path_table[4]; - __u8 type_m_path_table[4]; - __u8 opt_type_m_path_table[4]; - __u8 root_directory_record[34]; - char volume_set_id[128]; - char publisher_id[128]; - char preparer_id[128]; - char application_id[128]; - char copyright_file_id[37]; - char abstract_file_id[37]; - char bibliographic_file_id[37]; - __u8 creation_date[17]; - __u8 modification_date[17]; - __u8 expiration_date[17]; - __u8 effective_date[17]; - __u8 file_structure_version[1]; - __u8 unused4[1]; - __u8 application_data[512]; - __u8 unused5[653]; -}; - -struct iso_supplementary_descriptor { - __u8 type[1]; - char id[5]; - __u8 version[1]; - __u8 flags[1]; - char system_id[32]; - char volume_id[32]; - __u8 unused2[8]; - __u8 volume_space_size[8]; - __u8 escape[32]; - __u8 volume_set_size[4]; - __u8 volume_sequence_number[4]; - __u8 logical_block_size[4]; - __u8 path_table_size[8]; - __u8 type_l_path_table[4]; - __u8 opt_type_l_path_table[4]; - __u8 type_m_path_table[4]; - __u8 opt_type_m_path_table[4]; - __u8 root_directory_record[34]; - char volume_set_id[128]; - char publisher_id[128]; - char preparer_id[128]; - char application_id[128]; - char copyright_file_id[37]; - char abstract_file_id[37]; - char bibliographic_file_id[37]; - __u8 creation_date[17]; - __u8 modification_date[17]; - __u8 expiration_date[17]; - __u8 effective_date[17]; - __u8 file_structure_version[1]; - __u8 unused4[1]; - __u8 application_data[512]; - __u8 unused5[653]; -}; - -struct hs_volume_descriptor { - __u8 foo[8]; - __u8 type[1]; - char id[5]; - __u8 version[1]; - __u8 data[2033]; -}; - -struct hs_primary_descriptor { - __u8 foo[8]; - __u8 type[1]; - __u8 id[5]; - __u8 version[1]; - __u8 unused1[1]; - char system_id[32]; - char volume_id[32]; - __u8 unused2[8]; - __u8 volume_space_size[8]; - __u8 unused3[32]; - __u8 volume_set_size[4]; - __u8 volume_sequence_number[4]; - __u8 logical_block_size[4]; - __u8 path_table_size[8]; - __u8 type_l_path_table[4]; - __u8 unused4[28]; - __u8 root_directory_record[34]; -}; - -enum isofs_file_format { - isofs_file_normal = 0, - isofs_file_sparse = 1, - isofs_file_compressed = 2, -}; - -struct isofs_options { - unsigned int rock: 1; - unsigned int joliet: 1; - unsigned int cruft: 1; - unsigned int hide: 1; - unsigned int showassoc: 1; - unsigned int nocompress: 1; - unsigned int overriderockperm: 1; - unsigned int uid_set: 1; - unsigned int gid_set: 1; - unsigned char map; - unsigned char check; - unsigned int blocksize; - umode_t fmode; - umode_t dmode; - kgid_t gid; - kuid_t uid; - char *iocharset; - s32 session; - s32 sbsector; -}; - -enum { - Opt_block = 0, - Opt_check___2 = 1, - Opt_cruft = 2, - Opt_gid___7 = 3, - Opt_ignore___2 = 4, - Opt_iocharset___3 = 5, - Opt_map = 6, - Opt_mode___6 = 7, - Opt_nojoliet = 8, - Opt_norock = 9, - Opt_sb___2 = 10, - Opt_session = 11, - Opt_uid___7 = 12, - Opt_unhide = 13, - Opt_utf8___2 = 14, - Opt_err___12 = 15, - Opt_nocompress = 16, - Opt_hide = 17, - Opt_showassoc = 18, - Opt_dmode = 19, - Opt_overriderockperm = 20, -}; - -struct isofs_iget5_callback_data { - long unsigned int block; - long unsigned int offset; -}; - -struct nfs_referral_count { - struct list_head list; - const struct task_struct *task; - unsigned int referral_count; -}; - -struct nfs_closeargs { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fh; - nfs4_stateid stateid; - struct nfs_seqid *seqid; - fmode_t fmode; - u32 share_access; - const u32 *bitmask; - u32 bitmask_store[3]; - struct nfs4_layoutreturn_args *lr_args; -}; - -struct nfs_closeres { - struct nfs4_sequence_res seq_res; - nfs4_stateid stateid; - struct nfs_fattr *fattr; - struct nfs_seqid *seqid; - const struct nfs_server *server; - struct nfs4_layoutreturn_res *lr_res; - int lr_ret; -}; - -struct nfs4_delegattr { - struct timespec64 atime; - struct timespec64 mtime; - bool atime_set; - bool mtime_set; -}; - -struct nfs4_delegreturnargs { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *fhandle; - const nfs4_stateid *stateid; - const u32 *bitmask; - u32 bitmask_store[3]; - struct nfs4_layoutreturn_args *lr_args; - struct nfs4_delegattr *sattr_args; -}; - -struct nfs4_delegreturnres { - struct nfs4_sequence_res seq_res; - struct nfs_fattr *fattr; - struct nfs_server *server; - struct nfs4_layoutreturn_res *lr_res; - int lr_ret; - bool sattr_res; - int sattr_ret; -}; - -struct trace_event_raw_nfs4_clientid_event { - struct trace_entry ent; - u32 __data_loc_dstaddr; - long unsigned int error; - char __data[0]; -}; - -struct trace_event_raw_nfs4_trunked_exchange_id { - struct trace_entry ent; - u32 __data_loc_main_addr; - u32 __data_loc_trunk_addr; - long unsigned int error; - char __data[0]; -}; - -struct trace_event_raw_nfs4_sequence_done { - struct trace_entry ent; - unsigned int session; - unsigned int slot_nr; - unsigned int seq_nr; - unsigned int highest_slotid; - unsigned int target_highest_slotid; - long unsigned int status_flags; - long unsigned int error; - char __data[0]; -}; - -struct trace_event_raw_nfs4_cb_sequence { - struct trace_entry ent; - unsigned int session; - unsigned int slot_nr; - unsigned int seq_nr; - unsigned int highest_slotid; - unsigned int cachethis; - long unsigned int error; - char __data[0]; -}; - -struct trace_event_raw_nfs4_cb_seqid_err { - struct trace_entry ent; - unsigned int session; - unsigned int slot_nr; - unsigned int seq_nr; - unsigned int highest_slotid; - unsigned int cachethis; - long unsigned int error; - char __data[0]; -}; - -struct trace_event_raw_nfs4_cb_offload { - struct trace_entry ent; - long unsigned int error; - u32 fhandle; - loff_t cb_count; - int cb_how; - int cb_stateid_seq; - u32 cb_stateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_setup_sequence { - struct trace_entry ent; - unsigned int session; - unsigned int slot_nr; - unsigned int seq_nr; - unsigned int highest_used_slotid; - char __data[0]; -}; - -struct trace_event_raw_nfs4_state_mgr { - struct trace_entry ent; - long unsigned int state; - u32 __data_loc_hostname; - char __data[0]; -}; - -struct trace_event_raw_nfs4_state_mgr_failed { - struct trace_entry ent; - long unsigned int error; - long unsigned int state; - u32 __data_loc_hostname; - u32 __data_loc_section; - char __data[0]; -}; - -struct trace_event_raw_nfs4_xdr_bad_operation { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - u32 xid; - u32 op; - u32 expected; - char __data[0]; -}; - -struct trace_event_raw_nfs4_xdr_event { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - u32 xid; - u32 op; - long unsigned int error; - char __data[0]; -}; - -struct trace_event_raw_nfs4_cb_error_class { - struct trace_entry ent; - u32 xid; - u32 cbident; - char __data[0]; -}; - -struct trace_event_raw_nfs4_open_event { - struct trace_entry ent; - long unsigned int error; - long unsigned int flags; - long unsigned int fmode; - dev_t dev; - u32 fhandle; - u64 fileid; - u64 dir; - u32 __data_loc_name; - int stateid_seq; - u32 stateid_hash; - int openstateid_seq; - u32 openstateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_cached_open { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - unsigned int fmode; - int stateid_seq; - u32 stateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_close { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - unsigned int fmode; - long unsigned int error; - int stateid_seq; - u32 stateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_lock_event { - struct trace_entry ent; - long unsigned int error; - long unsigned int cmd; - long unsigned int type; - loff_t start; - loff_t end; - dev_t dev; - u32 fhandle; - u64 fileid; - int stateid_seq; - u32 stateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_set_lock { - struct trace_entry ent; - long unsigned int error; - long unsigned int cmd; - long unsigned int type; - loff_t start; - loff_t end; - dev_t dev; - u32 fhandle; - u64 fileid; - int stateid_seq; - u32 stateid_hash; - int lockstateid_seq; - u32 lockstateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_state_lock_reclaim { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - long unsigned int state_flags; - long unsigned int lock_flags; - int stateid_seq; - u32 stateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_set_delegation_event { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - unsigned int fmode; - char __data[0]; -}; - -struct trace_event_raw_nfs4_delegreturn_exit { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - long unsigned int error; - int stateid_seq; - u32 stateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_test_stateid_event { - struct trace_entry ent; - long unsigned int error; - dev_t dev; - u32 fhandle; - u64 fileid; - int stateid_seq; - u32 stateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_lookup_event { - struct trace_entry ent; - dev_t dev; - long unsigned int error; - u64 dir; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfs4_lookupp { - struct trace_entry ent; - dev_t dev; - u64 ino; - long unsigned int error; - char __data[0]; -}; - -struct trace_event_raw_nfs4_rename { - struct trace_entry ent; - dev_t dev; - long unsigned int error; - u64 olddir; - u32 __data_loc_oldname; - u64 newdir; - u32 __data_loc_newname; - char __data[0]; -}; - -struct trace_event_raw_nfs4_inode_event { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - long unsigned int error; - char __data[0]; -}; - -struct trace_event_raw_nfs4_inode_stateid_event { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - long unsigned int error; - int stateid_seq; - u32 stateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_getattr_event { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - unsigned int valid; - long unsigned int error; - char __data[0]; -}; - -struct trace_event_raw_nfs4_inode_callback_event { - struct trace_entry ent; - long unsigned int error; - dev_t dev; - u32 fhandle; - u64 fileid; - u32 __data_loc_dstaddr; - char __data[0]; -}; - -struct trace_event_raw_nfs4_inode_stateid_callback_event { - struct trace_entry ent; - long unsigned int error; - dev_t dev; - u32 fhandle; - u64 fileid; - u32 __data_loc_dstaddr; - int stateid_seq; - u32 stateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_idmap_event { - struct trace_entry ent; - long unsigned int error; - u32 id; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfs4_read_event { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - loff_t offset; - u32 arg_count; - u32 res_count; - long unsigned int error; - int stateid_seq; - u32 stateid_hash; - int layoutstateid_seq; - u32 layoutstateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_write_event { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - loff_t offset; - u32 arg_count; - u32 res_count; - long unsigned int error; - int stateid_seq; - u32 stateid_hash; - int layoutstateid_seq; - u32 layoutstateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_commit_event { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - long unsigned int error; - loff_t offset; - u32 count; - int layoutstateid_seq; - u32 layoutstateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_layoutget { - struct trace_entry ent; - dev_t dev; - u32 fhandle; - u64 fileid; - u32 iomode; - u64 offset; - u64 count; - long unsigned int error; - int stateid_seq; - u32 stateid_hash; - int layoutstateid_seq; - u32 layoutstateid_hash; - char __data[0]; -}; - -struct trace_event_raw_pnfs_update_layout { - struct trace_entry ent; - dev_t dev; - u64 fileid; - u32 fhandle; - loff_t pos; - u64 count; - enum pnfs_iomode iomode; - int layoutstateid_seq; - u32 layoutstateid_hash; - long int lseg; - enum pnfs_update_layout_reason reason; - char __data[0]; -}; - -struct trace_event_raw_pnfs_layout_event { - struct trace_entry ent; - dev_t dev; - u64 fileid; - u32 fhandle; - loff_t pos; - u64 count; - enum pnfs_iomode iomode; - int layoutstateid_seq; - u32 layoutstateid_hash; - long int lseg; - char __data[0]; -}; - -struct trace_event_raw_nfs4_deviceid_event { - struct trace_entry ent; - u32 __data_loc_dstaddr; - unsigned char deviceid[16]; - char __data[0]; -}; - -struct trace_event_raw_nfs4_deviceid_status { - struct trace_entry ent; - dev_t dev; - int status; - u32 __data_loc_dstaddr; - unsigned char deviceid[16]; - char __data[0]; -}; - -struct trace_event_raw_fl_getdevinfo { - struct trace_entry ent; - u32 __data_loc_mds_addr; - unsigned char deviceid[16]; - u32 __data_loc_ds_ips; - char __data[0]; -}; - -struct trace_event_raw_nfs4_flexfiles_io_event { - struct trace_entry ent; - long unsigned int error; - dev_t dev; - u32 fhandle; - u64 fileid; - loff_t offset; - u32 count; - int stateid_seq; - u32 stateid_hash; - u32 __data_loc_dstaddr; - char __data[0]; -}; - -struct trace_event_raw_ff_layout_commit_error { - struct trace_entry ent; - long unsigned int error; - dev_t dev; - u32 fhandle; - u64 fileid; - loff_t offset; - u32 count; - u32 __data_loc_dstaddr; - char __data[0]; -}; - -struct trace_event_raw_pnfs_bl_pr_key_class { - struct trace_entry ent; - u64 key; - dev_t dev; - u32 __data_loc_device; - char __data[0]; -}; - -struct trace_event_raw_pnfs_bl_pr_key_err_class { - struct trace_entry ent; - u64 key; - dev_t dev; - long unsigned int status; - u32 __data_loc_device; - char __data[0]; -}; - -struct trace_event_raw_nfs4_llseek { - struct trace_entry ent; - long unsigned int error; - u32 fhandle; - u32 fileid; - dev_t dev; - int stateid_seq; - u32 stateid_hash; - loff_t offset_s; - u32 what; - loff_t offset_r; - u32 eof; - char __data[0]; -}; - -struct trace_event_raw_nfs4_sparse_event { - struct trace_entry ent; - long unsigned int error; - loff_t offset; - loff_t len; - dev_t dev; - u32 fhandle; - u64 fileid; - int stateid_seq; - u32 stateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_copy { - struct trace_entry ent; - long unsigned int error; - u32 src_fhandle; - u32 src_fileid; - u32 dst_fhandle; - u32 dst_fileid; - dev_t src_dev; - dev_t dst_dev; - int src_stateid_seq; - u32 src_stateid_hash; - int dst_stateid_seq; - u32 dst_stateid_hash; - loff_t src_offset; - loff_t dst_offset; - bool sync; - loff_t len; - int res_stateid_seq; - u32 res_stateid_hash; - loff_t res_count; - bool res_sync; - bool res_cons; - bool intra; - char __data[0]; -}; - -struct trace_event_raw_nfs4_clone { - struct trace_entry ent; - long unsigned int error; - u32 src_fhandle; - u32 src_fileid; - u32 dst_fhandle; - u32 dst_fileid; - dev_t src_dev; - dev_t dst_dev; - loff_t src_offset; - loff_t dst_offset; - int src_stateid_seq; - u32 src_stateid_hash; - int dst_stateid_seq; - u32 dst_stateid_hash; - loff_t len; - char __data[0]; -}; - -struct trace_event_raw_nfs4_copy_notify { - struct trace_entry ent; - long unsigned int error; - u32 fhandle; - u32 fileid; - dev_t dev; - int stateid_seq; - u32 stateid_hash; - int res_stateid_seq; - u32 res_stateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_offload_cancel { - struct trace_entry ent; - long unsigned int error; - u32 fhandle; - int stateid_seq; - u32 stateid_hash; - char __data[0]; -}; - -struct trace_event_raw_nfs4_xattr_event { - struct trace_entry ent; - long unsigned int error; - dev_t dev; - u32 fhandle; - u64 fileid; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_data_offsets_nfs4_clientid_event { - u32 dstaddr; - const void *dstaddr_ptr_; -}; - -struct trace_event_data_offsets_nfs4_trunked_exchange_id { - u32 main_addr; - const void *main_addr_ptr_; - u32 trunk_addr; - const void *trunk_addr_ptr_; -}; - -struct trace_event_data_offsets_nfs4_sequence_done {}; - -struct trace_event_data_offsets_nfs4_cb_sequence {}; - -struct trace_event_data_offsets_nfs4_cb_seqid_err {}; - -struct trace_event_data_offsets_nfs4_cb_offload {}; - -struct trace_event_data_offsets_nfs4_setup_sequence {}; - -struct trace_event_data_offsets_nfs4_state_mgr { - u32 hostname; - const void *hostname_ptr_; -}; - -struct trace_event_data_offsets_nfs4_state_mgr_failed { - u32 hostname; - const void *hostname_ptr_; - u32 section; - const void *section_ptr_; -}; - -struct trace_event_data_offsets_nfs4_xdr_bad_operation {}; - -struct trace_event_data_offsets_nfs4_xdr_event {}; - -struct trace_event_data_offsets_nfs4_cb_error_class {}; - -struct trace_event_data_offsets_nfs4_open_event { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfs4_cached_open {}; - -struct trace_event_data_offsets_nfs4_close {}; - -struct trace_event_data_offsets_nfs4_lock_event {}; - -struct trace_event_data_offsets_nfs4_set_lock {}; - -struct trace_event_data_offsets_nfs4_state_lock_reclaim {}; - -struct trace_event_data_offsets_nfs4_set_delegation_event {}; - -struct trace_event_data_offsets_nfs4_delegreturn_exit {}; - -struct trace_event_data_offsets_nfs4_test_stateid_event {}; - -struct trace_event_data_offsets_nfs4_lookup_event { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfs4_lookupp {}; - -struct trace_event_data_offsets_nfs4_rename { - u32 oldname; - const void *oldname_ptr_; - u32 newname; - const void *newname_ptr_; -}; - -struct trace_event_data_offsets_nfs4_inode_event {}; - -struct trace_event_data_offsets_nfs4_inode_stateid_event {}; - -struct trace_event_data_offsets_nfs4_getattr_event {}; - -struct trace_event_data_offsets_nfs4_inode_callback_event { - u32 dstaddr; - const void *dstaddr_ptr_; -}; - -struct trace_event_data_offsets_nfs4_inode_stateid_callback_event { - u32 dstaddr; - const void *dstaddr_ptr_; -}; - -struct trace_event_data_offsets_nfs4_idmap_event { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfs4_read_event {}; - -struct trace_event_data_offsets_nfs4_write_event {}; - -struct trace_event_data_offsets_nfs4_commit_event {}; - -struct trace_event_data_offsets_nfs4_layoutget {}; - -struct trace_event_data_offsets_pnfs_update_layout {}; - -struct trace_event_data_offsets_pnfs_layout_event {}; - -struct trace_event_data_offsets_nfs4_deviceid_event { - u32 dstaddr; - const void *dstaddr_ptr_; -}; - -struct trace_event_data_offsets_nfs4_deviceid_status { - u32 dstaddr; - const void *dstaddr_ptr_; -}; - -struct trace_event_data_offsets_fl_getdevinfo { - u32 mds_addr; - const void *mds_addr_ptr_; - u32 ds_ips; - const void *ds_ips_ptr_; -}; - -struct trace_event_data_offsets_nfs4_flexfiles_io_event { - u32 dstaddr; - const void *dstaddr_ptr_; -}; - -struct trace_event_data_offsets_ff_layout_commit_error { - u32 dstaddr; - const void *dstaddr_ptr_; -}; - -struct trace_event_data_offsets_pnfs_bl_pr_key_class { - u32 device; - const void *device_ptr_; -}; - -struct trace_event_data_offsets_pnfs_bl_pr_key_err_class { - u32 device; - const void *device_ptr_; -}; - -struct trace_event_data_offsets_nfs4_llseek {}; - -struct trace_event_data_offsets_nfs4_sparse_event {}; - -struct trace_event_data_offsets_nfs4_copy {}; - -struct trace_event_data_offsets_nfs4_clone {}; - -struct trace_event_data_offsets_nfs4_copy_notify {}; - -struct trace_event_data_offsets_nfs4_offload_cancel {}; - -struct trace_event_data_offsets_nfs4_xattr_event { - u32 name; - const void *name_ptr_; -}; - -typedef void (*btf_trace_nfs4_setclientid)(void *, const struct nfs_client *, int); - -typedef void (*btf_trace_nfs4_setclientid_confirm)(void *, const struct nfs_client *, int); - -typedef void (*btf_trace_nfs4_renew)(void *, const struct nfs_client *, int); - -typedef void (*btf_trace_nfs4_renew_async)(void *, const struct nfs_client *, int); - -typedef void (*btf_trace_nfs4_exchange_id)(void *, const struct nfs_client *, int); - -typedef void (*btf_trace_nfs4_create_session)(void *, const struct nfs_client *, int); - -typedef void (*btf_trace_nfs4_destroy_session)(void *, const struct nfs_client *, int); - -typedef void (*btf_trace_nfs4_destroy_clientid)(void *, const struct nfs_client *, int); - -typedef void (*btf_trace_nfs4_bind_conn_to_session)(void *, const struct nfs_client *, int); - -typedef void (*btf_trace_nfs4_sequence)(void *, const struct nfs_client *, int); - -typedef void (*btf_trace_nfs4_reclaim_complete)(void *, const struct nfs_client *, int); - -typedef void (*btf_trace_nfs4_trunked_exchange_id)(void *, const struct nfs_client *, const char *, int); - -typedef void (*btf_trace_nfs4_sequence_done)(void *, const struct nfs4_session *, const struct nfs4_sequence_res *); - -typedef void (*btf_trace_nfs4_cb_sequence)(void *, const struct cb_sequenceargs *, const struct cb_sequenceres *, __be32); - -typedef void (*btf_trace_nfs4_cb_seqid_err)(void *, const struct cb_sequenceargs *, __be32); - -typedef void (*btf_trace_nfs4_cb_offload)(void *, const struct nfs_fh *, const nfs4_stateid *, uint64_t, int, int); - -typedef void (*btf_trace_nfs4_setup_sequence)(void *, const struct nfs4_session *, const struct nfs4_sequence_args *); - -typedef void (*btf_trace_nfs4_state_mgr)(void *, const struct nfs_client *); - -typedef void (*btf_trace_nfs4_state_mgr_failed)(void *, const struct nfs_client *, const char *, int); - -typedef void (*btf_trace_nfs4_xdr_bad_operation)(void *, const struct xdr_stream *, u32, u32); - -typedef void (*btf_trace_nfs4_xdr_status)(void *, const struct xdr_stream *, u32, u32); - -typedef void (*btf_trace_nfs4_xdr_bad_filehandle)(void *, const struct xdr_stream *, u32, u32); - -typedef void (*btf_trace_nfs_cb_no_clp)(void *, __be32, u32); - -typedef void (*btf_trace_nfs_cb_badprinc)(void *, __be32, u32); - -typedef void (*btf_trace_nfs4_open_reclaim)(void *, const struct nfs_open_context *, int, int); - -typedef void (*btf_trace_nfs4_open_expired)(void *, const struct nfs_open_context *, int, int); - -typedef void (*btf_trace_nfs4_open_file)(void *, const struct nfs_open_context *, int, int); - -typedef void (*btf_trace_nfs4_cached_open)(void *, const struct nfs4_state *); - -typedef void (*btf_trace_nfs4_close)(void *, const struct nfs4_state *, const struct nfs_closeargs *, const struct nfs_closeres *, int); - -typedef void (*btf_trace_nfs4_get_lock)(void *, const struct file_lock *, const struct nfs4_state *, int, int); - -typedef void (*btf_trace_nfs4_unlock)(void *, const struct file_lock *, const struct nfs4_state *, int, int); - -typedef void (*btf_trace_nfs4_set_lock)(void *, const struct file_lock *, const struct nfs4_state *, const nfs4_stateid *, int, int); - -typedef void (*btf_trace_nfs4_state_lock_reclaim)(void *, const struct nfs4_state *, const struct nfs4_lock_state *); - -typedef void (*btf_trace_nfs4_set_delegation)(void *, const struct inode *, fmode_t); - -typedef void (*btf_trace_nfs4_reclaim_delegation)(void *, const struct inode *, fmode_t); - -typedef void (*btf_trace_nfs4_delegreturn_exit)(void *, const struct nfs4_delegreturnargs *, const struct nfs4_delegreturnres *, int); - -typedef void (*btf_trace_nfs4_test_delegation_stateid)(void *, const struct nfs4_state *, const struct nfs4_lock_state *, int); - -typedef void (*btf_trace_nfs4_test_open_stateid)(void *, const struct nfs4_state *, const struct nfs4_lock_state *, int); - -typedef void (*btf_trace_nfs4_test_lock_stateid)(void *, const struct nfs4_state *, const struct nfs4_lock_state *, int); - -typedef void (*btf_trace_nfs4_lookup)(void *, const struct inode *, const struct qstr *, int); - -typedef void (*btf_trace_nfs4_symlink)(void *, const struct inode *, const struct qstr *, int); - -typedef void (*btf_trace_nfs4_mkdir)(void *, const struct inode *, const struct qstr *, int); - -typedef void (*btf_trace_nfs4_mknod)(void *, const struct inode *, const struct qstr *, int); - -typedef void (*btf_trace_nfs4_remove)(void *, const struct inode *, const struct qstr *, int); - -typedef void (*btf_trace_nfs4_get_fs_locations)(void *, const struct inode *, const struct qstr *, int); - -typedef void (*btf_trace_nfs4_secinfo)(void *, const struct inode *, const struct qstr *, int); - -typedef void (*btf_trace_nfs4_lookupp)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs4_rename)(void *, const struct inode *, const struct qstr *, const struct inode *, const struct qstr *, int); - -typedef void (*btf_trace_nfs4_access)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs4_readlink)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs4_readdir)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs4_get_acl)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs4_set_acl)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs4_get_security_label)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs4_set_security_label)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfs4_setattr)(void *, const struct inode *, const nfs4_stateid *, int); - -typedef void (*btf_trace_nfs4_delegreturn)(void *, const struct inode *, const nfs4_stateid *, int); - -typedef void (*btf_trace_nfs4_open_stateid_update)(void *, const struct inode *, const nfs4_stateid *, int); - -typedef void (*btf_trace_nfs4_open_stateid_update_wait)(void *, const struct inode *, const nfs4_stateid *, int); - -typedef void (*btf_trace_nfs4_close_stateid_update_wait)(void *, const struct inode *, const nfs4_stateid *, int); - -typedef void (*btf_trace_nfs4_getattr)(void *, const struct nfs_server *, const struct nfs_fh *, const struct nfs_fattr *, int); - -typedef void (*btf_trace_nfs4_lookup_root)(void *, const struct nfs_server *, const struct nfs_fh *, const struct nfs_fattr *, int); - -typedef void (*btf_trace_nfs4_fsinfo)(void *, const struct nfs_server *, const struct nfs_fh *, const struct nfs_fattr *, int); - -typedef void (*btf_trace_nfs4_cb_getattr)(void *, const struct nfs_client *, const struct nfs_fh *, const struct inode *, int); - -typedef void (*btf_trace_nfs4_cb_recall)(void *, const struct nfs_client *, const struct nfs_fh *, const struct inode *, const nfs4_stateid *, int); - -typedef void (*btf_trace_nfs4_cb_layoutrecall_file)(void *, const struct nfs_client *, const struct nfs_fh *, const struct inode *, const nfs4_stateid *, int); - -typedef void (*btf_trace_nfs4_map_name_to_uid)(void *, const char *, int, u32, int); - -typedef void (*btf_trace_nfs4_map_group_to_gid)(void *, const char *, int, u32, int); - -typedef void (*btf_trace_nfs4_map_uid_to_name)(void *, const char *, int, u32, int); - -typedef void (*btf_trace_nfs4_map_gid_to_group)(void *, const char *, int, u32, int); - -typedef void (*btf_trace_nfs4_read)(void *, const struct nfs_pgio_header *, int); - -typedef void (*btf_trace_nfs4_pnfs_read)(void *, const struct nfs_pgio_header *, int); - -typedef void (*btf_trace_nfs4_write)(void *, const struct nfs_pgio_header *, int); - -typedef void (*btf_trace_nfs4_pnfs_write)(void *, const struct nfs_pgio_header *, int); - -typedef void (*btf_trace_nfs4_commit)(void *, const struct nfs_commit_data *, int); - -typedef void (*btf_trace_nfs4_pnfs_commit_ds)(void *, const struct nfs_commit_data *, int); - -typedef void (*btf_trace_nfs4_layoutget)(void *, const struct nfs_open_context *, const struct pnfs_layout_range *, const struct pnfs_layout_range *, const nfs4_stateid *, int); - -typedef void (*btf_trace_nfs4_layoutcommit)(void *, const struct inode *, const nfs4_stateid *, int); - -typedef void (*btf_trace_nfs4_layoutreturn)(void *, const struct inode *, const nfs4_stateid *, int); - -typedef void (*btf_trace_nfs4_layoutreturn_on_close)(void *, const struct inode *, const nfs4_stateid *, int); - -typedef void (*btf_trace_nfs4_layouterror)(void *, const struct inode *, const nfs4_stateid *, int); - -typedef void (*btf_trace_nfs4_layoutstats)(void *, const struct inode *, const nfs4_stateid *, int); - -typedef void (*btf_trace_pnfs_update_layout)(void *, struct inode *, loff_t, u64, enum pnfs_iomode, struct pnfs_layout_hdr *, struct pnfs_layout_segment *, enum pnfs_update_layout_reason); - -typedef void (*btf_trace_pnfs_mds_fallback_pg_init_read)(void *, struct inode *, loff_t, u64, enum pnfs_iomode, struct pnfs_layout_hdr *, struct pnfs_layout_segment *); - -typedef void (*btf_trace_pnfs_mds_fallback_pg_init_write)(void *, struct inode *, loff_t, u64, enum pnfs_iomode, struct pnfs_layout_hdr *, struct pnfs_layout_segment *); - -typedef void (*btf_trace_pnfs_mds_fallback_pg_get_mirror_count)(void *, struct inode *, loff_t, u64, enum pnfs_iomode, struct pnfs_layout_hdr *, struct pnfs_layout_segment *); - -typedef void (*btf_trace_pnfs_mds_fallback_read_done)(void *, struct inode *, loff_t, u64, enum pnfs_iomode, struct pnfs_layout_hdr *, struct pnfs_layout_segment *); - -typedef void (*btf_trace_pnfs_mds_fallback_write_done)(void *, struct inode *, loff_t, u64, enum pnfs_iomode, struct pnfs_layout_hdr *, struct pnfs_layout_segment *); - -typedef void (*btf_trace_pnfs_mds_fallback_read_pagelist)(void *, struct inode *, loff_t, u64, enum pnfs_iomode, struct pnfs_layout_hdr *, struct pnfs_layout_segment *); - -typedef void (*btf_trace_pnfs_mds_fallback_write_pagelist)(void *, struct inode *, loff_t, u64, enum pnfs_iomode, struct pnfs_layout_hdr *, struct pnfs_layout_segment *); - -typedef void (*btf_trace_nfs4_deviceid_free)(void *, const struct nfs_client *, const struct nfs4_deviceid *); - -typedef void (*btf_trace_nfs4_getdeviceinfo)(void *, const struct nfs_server *, const struct nfs4_deviceid *, int); - -typedef void (*btf_trace_nfs4_find_deviceid)(void *, const struct nfs_server *, const struct nfs4_deviceid *, int); - -typedef void (*btf_trace_fl_getdevinfo)(void *, const struct nfs_server *, const struct nfs4_deviceid *, char *); - -typedef void (*btf_trace_ff_layout_read_error)(void *, const struct nfs_pgio_header *); - -typedef void (*btf_trace_ff_layout_write_error)(void *, const struct nfs_pgio_header *); - -typedef void (*btf_trace_ff_layout_commit_error)(void *, const struct nfs_commit_data *); - -typedef void (*btf_trace_bl_pr_key_reg)(void *, const struct block_device *, u64); - -typedef void (*btf_trace_bl_pr_key_unreg)(void *, const struct block_device *, u64); - -typedef void (*btf_trace_bl_pr_key_reg_err)(void *, const struct block_device *, u64, int); - -typedef void (*btf_trace_bl_pr_key_unreg_err)(void *, const struct block_device *, u64, int); - -typedef void (*btf_trace_nfs4_llseek)(void *, const struct inode *, const struct nfs42_seek_args *, const struct nfs42_seek_res *, int); - -typedef void (*btf_trace_nfs4_fallocate)(void *, const struct inode *, const struct nfs42_falloc_args *, int); - -typedef void (*btf_trace_nfs4_deallocate)(void *, const struct inode *, const struct nfs42_falloc_args *, int); - -typedef void (*btf_trace_nfs4_copy)(void *, const struct inode *, const struct inode *, const struct nfs42_copy_args *, const struct nfs42_copy_res *, const struct nl4_server *, int); - -typedef void (*btf_trace_nfs4_clone)(void *, const struct inode *, const struct inode *, const struct nfs42_clone_args *, int); - -typedef void (*btf_trace_nfs4_copy_notify)(void *, const struct inode *, const struct nfs42_copy_notify_args *, const struct nfs42_copy_notify_res *, int); - -typedef void (*btf_trace_nfs4_offload_cancel)(void *, const struct nfs42_offload_status_args *, int); - -typedef void (*btf_trace_nfs4_getxattr)(void *, const struct inode *, const char *, int); - -typedef void (*btf_trace_nfs4_setxattr)(void *, const struct inode *, const char *, int); - -typedef void (*btf_trace_nfs4_removexattr)(void *, const struct inode *, const char *, int); - -typedef void (*btf_trace_nfs4_listxattr)(void *, const struct inode *, int); - -enum nfs3_time_how { - DONT_CHANGE = 0, - SET_TO_SERVER_TIME = 1, - SET_TO_CLIENT_TIME = 2, -}; - -struct nfsd3_fhandle_pair { - __u32 dummy; - struct svc_fh fh1; - struct svc_fh fh2; -}; - -struct _SECURITY_BUFFER { - __le16 Length; - __le16 MaximumLength; - __le32 BufferOffset; -}; - -typedef struct _SECURITY_BUFFER SECURITY_BUFFER; - -struct _NEGOTIATE_MESSAGE { - __u8 Signature[8]; - __le32 MessageType; - __le32 NegotiateFlags; - SECURITY_BUFFER DomainName; - SECURITY_BUFFER WorkstationName; - char DomainString[0]; -}; - -typedef struct _NEGOTIATE_MESSAGE NEGOTIATE_MESSAGE; - -struct ntlmssp_version { - __u8 ProductMajorVersion; - __u8 ProductMinorVersion; - __le16 ProductBuild; - __u8 Reserved[3]; - __u8 NTLMRevisionCurrent; -}; - -struct negotiate_message { - __u8 Signature[8]; - __le32 MessageType; - __le32 NegotiateFlags; - SECURITY_BUFFER DomainName; - SECURITY_BUFFER WorkstationName; - struct ntlmssp_version Version; - char DomainString[0]; -}; - -struct _CHALLENGE_MESSAGE { - __u8 Signature[8]; - __le32 MessageType; - SECURITY_BUFFER TargetName; - __le32 NegotiateFlags; - __u8 Challenge[8]; - __u8 Reserved[8]; - SECURITY_BUFFER TargetInfoArray; -}; - -typedef struct _CHALLENGE_MESSAGE CHALLENGE_MESSAGE; - -struct _AUTHENTICATE_MESSAGE { - __u8 Signature[8]; - __le32 MessageType; - SECURITY_BUFFER LmChallengeResponse; - SECURITY_BUFFER NtChallengeResponse; - SECURITY_BUFFER DomainName; - SECURITY_BUFFER UserName; - SECURITY_BUFFER WorkstationName; - SECURITY_BUFFER SessionKey; - __le32 NegotiateFlags; - struct ntlmssp_version Version; - char UserString[0]; -}; - -typedef struct _AUTHENTICATE_MESSAGE AUTHENTICATE_MESSAGE; - -enum get_block_ctx { - GET_BLOCK_GENERAL = 0, - GET_BLOCK_WRITE_BEGIN = 1, - GET_BLOCK_DIRECT_IO_R = 2, - GET_BLOCK_DIRECT_IO_W = 3, - GET_BLOCK_BMAP = 4, -}; - -struct fuse_ioctl_in { - uint64_t fh; - uint32_t flags; - uint32_t cmd; - uint64_t arg; - uint32_t in_size; - uint32_t out_size; -}; - -struct fuse_ioctl_iovec { - uint64_t base; - uint64_t len; -}; - -struct fuse_ioctl_out { - int32_t result; - uint32_t flags; - uint32_t in_iovs; - uint32_t out_iovs; -}; - -struct fsverity_enable_arg { - __u32 version; - __u32 hash_algorithm; - __u32 block_size; - __u32 salt_size; - __u64 salt_ptr; - __u32 sig_size; - __u32 __reserved1; - __u64 sig_ptr; - __u64 __reserved2[11]; -}; - -struct fsverity_digest { - __u16 digest_algorithm; - __u16 digest_size; - __u8 digest[0]; -}; - -struct logicalVolIntegrityDescImpUse { - struct regid impIdent; - __le32 numFiles; - __le32 numDirs; - __le16 minUDFReadRev; - __le16 minUDFWriteRev; - __le16 maxUDFWriteRev; - uint8_t impUse[0]; -} __attribute__((packed)); - -struct allocDescImpUse { - __le16 flags; - uint8_t impUse[4]; -}; - -struct xfs_iext_rec { - uint64_t lo; - uint64_t hi; -}; - -struct xfs_iext_leaf { - struct xfs_iext_rec recs[15]; - struct xfs_iext_leaf *prev; - struct xfs_iext_leaf *next; -}; - -enum { - NODE_SIZE = 256, - KEYS_PER_NODE = 16, - RECS_PER_LEAF = 15, -}; - -struct xfs_iext_node { - uint64_t keys[16]; - void *ptrs[16]; -}; - -struct ioctl_sick_map { - unsigned int sick_mask; - unsigned int ioctl_mask; -}; - -struct xstats_entry { - char *desc; - int endpoint; -}; - -struct xfs_defer_resources { - struct xfs_buf *dr_bp[2]; - struct xfs_inode *dr_ip[5]; - short unsigned int dr_bufs; - short unsigned int dr_ordered; - short unsigned int dr_inos; -}; - -struct xfs_defer_capture { - struct list_head dfc_list; - struct list_head dfc_dfops; - unsigned int dfc_tpflags; - unsigned int dfc_blkres; - unsigned int dfc_rtxres; - unsigned int dfc_logres; - struct xfs_defer_resources dfc_held; -}; - -enum p9_cache_shortcuts { - CACHE_SC_NONE = 0, - CACHE_SC_READAHEAD = 1, - CACHE_SC_MMAP = 5, - CACHE_SC_LOOSE = 15, - CACHE_SC_FSCACHE = 143, -}; - -struct v9fs_inode { - struct netfs_inode netfs; - struct p9_qid qid; - unsigned int cache_validity; - struct mutex v_mutex; -}; - -enum { - Opt_debug___3 = 0, - Opt_dfltuid = 1, - Opt_dfltgid = 2, - Opt_afid = 3, - Opt_uname = 4, - Opt_remotename = 5, - Opt_cache___2 = 6, - Opt_cachetag = 7, - Opt_nodevmap = 8, - Opt_noxattr = 9, - Opt_directio = 10, - Opt_ignoreqv = 11, - Opt_access = 12, - Opt_posixacl = 13, - Opt_locktimeout = 14, - Opt_err___13 = 15, -}; - -enum cachefiles_trunc_trace { - cachefiles_trunc_dio_adjust = 0, - cachefiles_trunc_expand_tmpfile = 1, - cachefiles_trunc_shrink = 2, -}; - -struct btrfs_feature_attr { - struct kobj_attribute kobj_attr; - enum btrfs_feature_set feature_set; - u64 feature_bit; -}; - -struct raid_kobject { - u64 flags; - struct kobject kobj; -}; - -struct btrfs_dev_replace_item { - __le64 src_devid; - __le64 cursor_left; - __le64 cursor_right; - __le64 cont_reading_from_srcdev_mode; - __le64 replace_state; - __le64 time_started; - __le64 time_stopped; - __le64 num_write_errors; - __le64 num_uncorrectable_read_errors; -}; - -struct hmac_ctx { - struct crypto_shash *hash; - u8 pads[0]; -}; - -struct fcrypt_ctx { - __be32 sched[16]; -}; - -union lc4 { - __be32 l; - u8 c[4]; -}; - -struct aead_tfm { - struct crypto_aead *aead; - struct crypto_sync_skcipher *null_tfm; -}; - -struct req_iterator { - struct bvec_iter iter; - struct bio *bio; -}; - -enum bio_merge_status { - BIO_MERGE_OK = 0, - BIO_MERGE_NONE = 1, - BIO_MERGE_FAILED = 2, -}; - -struct uuidcmp { - const char *uuid; - int len; -}; - -enum { - IOBL_BUF_RING = 1, - IOBL_MMAP = 2, - IOBL_INC = 4, -}; - -struct io_async_rw { - size_t bytes_done; - struct iov_iter iter; - struct iov_iter_state iter_state; - struct iovec fast_iov; - struct iovec *free_iovec; - int free_iov_nr; - struct wait_page_queue wpq; -}; - -struct io_rw { - struct kiocb kiocb; - u64 addr; - u32 len; - rwf_t flags; -}; - -struct io_overflow_cqe { - struct list_head list; - struct io_uring_cqe cqe; -}; - -enum chacha20poly1305_lengths { - XCHACHA20POLY1305_NONCE_SIZE = 24, - CHACHA20POLY1305_KEY_SIZE = 32, - CHACHA20POLY1305_AUTHTAG_SIZE = 16, -}; - -typedef long unsigned int (*genpool_algo_t)(long unsigned int *, long unsigned int, long unsigned int, unsigned int, void *, struct gen_pool *, long unsigned int); - -struct gen_pool { - spinlock_t lock; - struct list_head chunks; - int min_alloc_order; - genpool_algo_t algo; - void *data; - const char *name; -}; - -struct gen_pool_chunk { - struct list_head next_chunk; - atomic_long_t avail; - phys_addr_t phys_addr; - void *owner; - long unsigned int start_addr; - long unsigned int end_addr; - long unsigned int bits[0]; -}; - -struct genpool_data_align { - int align; -}; - -struct genpool_data_fixed { - long unsigned int offset; -}; - -struct mbi_range { - u32 spi_start; - u32 nr_spis; - long unsigned int *bm; -}; - -enum tty_flow_change { - TTY_FLOW_NO_CHANGE = 0, - TTY_THROTTLE_SAFE = 1, - TTY_UNTHROTTLE_SAFE = 2, -}; - -struct n_tty_data { - size_t read_head; - size_t commit_head; - size_t canon_head; - size_t echo_head; - size_t echo_commit; - size_t echo_mark; - long unsigned int char_map[4]; - long unsigned int overrun_time; - unsigned int num_overrun; - bool no_room; - unsigned char lnext: 1; - unsigned char erasing: 1; - unsigned char raw: 1; - unsigned char real_raw: 1; - unsigned char icanon: 1; - unsigned char push: 1; - u8 read_buf[4096]; - long unsigned int read_flags[64]; - u8 echo_buf[4096]; - size_t read_tail; - size_t line_start; - size_t lookahead_count; - unsigned int column; - unsigned int canon_column; - size_t echo_tail; - struct mutex atomic_read_lock; - struct mutex output_lock; -}; - -enum { - ERASE = 0, - WERASE = 1, - KILL = 2, -}; - -struct dw8250_port_data { - int line; - struct uart_8250_dma dma; - u32 cpr_value; - u8 dlf_size; - bool hw_rs485_support; -}; - -struct pericom8250 { - void *virt; - unsigned int nr; - int line[0]; -}; - -struct timer_rand_state { - long unsigned int last_time; - long int last_delta; - long int last_delta2; -}; - -struct vdso_rng_data { - u64 generation; - u8 is_ready; -}; - -enum { - CRNG_EMPTY = 0, - CRNG_EARLY = 1, - CRNG_READY = 2, -}; - -enum { - CRNG_RESEED_START_INTERVAL = 1000, - CRNG_RESEED_INTERVAL = 60000, -}; - -struct crng { - u8 key[32]; - long unsigned int generation; - local_lock_t lock; -}; - -struct batch_u8 { - u8 entropy[96]; - local_lock_t lock; - long unsigned int generation; - unsigned int position; -}; - -struct batch_u16 { - u16 entropy[48]; - local_lock_t lock; - long unsigned int generation; - unsigned int position; -}; - -struct batch_u32 { - u32 entropy[24]; - local_lock_t lock; - long unsigned int generation; - unsigned int position; -}; - -struct batch_u64 { - u64 entropy[12]; - local_lock_t lock; - long unsigned int generation; - unsigned int position; -}; - -enum { - POOL_BITS = 256, - POOL_READY_BITS = 256, - POOL_EARLY_BITS = 128, -}; - -struct fast_pool { - long unsigned int pool[4]; - long unsigned int last; - unsigned int count; - struct timer_list mix; -}; - -struct entropy_timer_state { - long unsigned int entropy; - struct timer_list timer; - atomic_t samples; - unsigned int samples_per_bit; -}; - -enum { - NUM_TRIAL_SAMPLES = 8192, - MAX_SAMPLES_PER_BIT = 66, -}; - -enum { - MIX_INFLIGHT = 2147483648, -}; - -struct drmres_node { - struct list_head entry; - drmres_release_t release; - const char *name; - size_t size; -}; - -struct drmres { - struct drmres_node node; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - u8 data[0]; -}; - -struct drm_encoder_slave_funcs { - void (*set_config)(struct drm_encoder *, void *); - void (*destroy)(struct drm_encoder *); - void (*dpms)(struct drm_encoder *, int); - void (*save)(struct drm_encoder *); - void (*restore)(struct drm_encoder *); - bool (*mode_fixup)(struct drm_encoder *, const struct drm_display_mode *, struct drm_display_mode *); - int (*mode_valid)(struct drm_encoder *, struct drm_display_mode *); - void (*mode_set)(struct drm_encoder *, struct drm_display_mode *, struct drm_display_mode *); - enum drm_connector_status (*detect)(struct drm_encoder *, struct drm_connector *); - int (*get_modes)(struct drm_encoder *, struct drm_connector *); - int (*create_resources)(struct drm_encoder *, struct drm_connector *); - int (*set_property)(struct drm_encoder *, struct drm_connector *, struct drm_property *, uint64_t); -}; - -struct drm_encoder_slave { - struct drm_encoder base; - const struct drm_encoder_slave_funcs *slave_funcs; - void *slave_priv; - void *bus_priv; -}; - -struct drm_i2c_encoder_driver { - struct i2c_driver i2c_driver; - int (*encoder_init)(struct i2c_client *, struct drm_device *, struct drm_encoder_slave *); -}; - -enum virtio_gpu_formats { - VIRTIO_GPU_FORMAT_B8G8R8A8_UNORM = 1, - VIRTIO_GPU_FORMAT_B8G8R8X8_UNORM = 2, - VIRTIO_GPU_FORMAT_A8R8G8B8_UNORM = 3, - VIRTIO_GPU_FORMAT_X8R8G8B8_UNORM = 4, - VIRTIO_GPU_FORMAT_R8G8B8A8_UNORM = 67, - VIRTIO_GPU_FORMAT_X8B8G8R8_UNORM = 68, - VIRTIO_GPU_FORMAT_A8B8G8R8_UNORM = 121, - VIRTIO_GPU_FORMAT_R8G8B8X8_UNORM = 134, -}; - -struct virtio_gpu_framebuffer { - struct drm_framebuffer base; - struct virtio_gpu_fence *fence; -}; - -struct virtio_gpu_plane_state { - struct drm_plane_state base; - struct virtio_gpu_fence *fence; -}; - -enum { - NBD_CMD_READ = 0, - NBD_CMD_WRITE = 1, - NBD_CMD_DISC = 2, - NBD_CMD_FLUSH = 3, - NBD_CMD_TRIM = 4, - NBD_CMD_WRITE_ZEROES = 6, -}; - -struct nbd_request { - __be32 magic; - __be32 type; - union { - __be64 cookie; - char handle[8]; - }; - __be64 from; - __be32 len; -} __attribute__((packed)); - -struct nbd_reply { - __be32 magic; - __be32 error; - union { - __be64 cookie; - char handle[8]; - }; -}; - -enum { - NBD_ATTR_UNSPEC = 0, - NBD_ATTR_INDEX = 1, - NBD_ATTR_SIZE_BYTES = 2, - NBD_ATTR_BLOCK_SIZE_BYTES = 3, - NBD_ATTR_TIMEOUT = 4, - NBD_ATTR_SERVER_FLAGS = 5, - NBD_ATTR_CLIENT_FLAGS = 6, - NBD_ATTR_SOCKETS = 7, - NBD_ATTR_DEAD_CONN_TIMEOUT = 8, - NBD_ATTR_DEVICE_LIST = 9, - NBD_ATTR_BACKEND_IDENTIFIER = 10, - __NBD_ATTR_MAX = 11, -}; - -enum { - NBD_DEVICE_ITEM_UNSPEC = 0, - NBD_DEVICE_ITEM = 1, - __NBD_DEVICE_ITEM_MAX = 2, -}; - -enum { - NBD_DEVICE_UNSPEC = 0, - NBD_DEVICE_INDEX = 1, - NBD_DEVICE_CONNECTED = 2, - __NBD_DEVICE_MAX = 3, -}; - -enum { - NBD_SOCK_ITEM_UNSPEC = 0, - NBD_SOCK_ITEM = 1, - __NBD_SOCK_ITEM_MAX = 2, -}; - -enum { - NBD_SOCK_UNSPEC = 0, - NBD_SOCK_FD = 1, - __NBD_SOCK_MAX = 2, -}; - -enum { - NBD_CMD_UNSPEC = 0, - NBD_CMD_CONNECT = 1, - NBD_CMD_DISCONNECT = 2, - NBD_CMD_RECONFIGURE = 3, - NBD_CMD_LINK_DEAD = 4, - NBD_CMD_STATUS = 5, - __NBD_CMD_MAX = 6, -}; - -struct trace_event_raw_nbd_transport_event { - struct trace_entry ent; - struct request *req; - u64 handle; - char __data[0]; -}; - -struct trace_event_raw_nbd_send_request { - struct trace_entry ent; - struct nbd_request *nbd_request; - u64 dev_index; - struct request *request; - char __data[0]; -}; - -struct trace_event_data_offsets_nbd_transport_event {}; - -struct trace_event_data_offsets_nbd_send_request {}; - -typedef void (*btf_trace_nbd_header_sent)(void *, struct request *, u64); - -typedef void (*btf_trace_nbd_payload_sent)(void *, struct request *, u64); - -typedef void (*btf_trace_nbd_header_received)(void *, struct request *, u64); - -typedef void (*btf_trace_nbd_payload_received)(void *, struct request *, u64); - -typedef void (*btf_trace_nbd_send_request)(void *, struct nbd_request *, int, struct request *); - -struct nbd_sock { - struct socket *sock; - struct mutex tx_lock; - struct request *pending; - int sent; - bool dead; - int fallback_index; - int cookie; -}; - -struct nbd_device; - -struct recv_thread_args { - struct work_struct work; - struct nbd_device *nbd; - struct nbd_sock *nsock; - int index; -}; - -struct nbd_config; - -struct nbd_device { - struct blk_mq_tag_set tag_set; - int index; - refcount_t config_refs; - refcount_t refs; - struct nbd_config *config; - struct mutex config_lock; - struct gendisk *disk; - struct workqueue_struct *recv_workq; - struct work_struct remove_work; - struct list_head list; - struct task_struct *task_setup; - long unsigned int flags; - pid_t pid; - char *backend; -}; - -struct link_dead_args { - struct work_struct work; - int index; -}; - -struct nbd_config { - u32 flags; - long unsigned int runtime_flags; - u64 dead_conn_timeout; - struct nbd_sock **socks; - int num_connections; - atomic_t live_connections; - wait_queue_head_t conn_wait; - atomic_t recv_threads; - wait_queue_head_t recv_wq; - unsigned int blksize_bits; - loff_t bytesize; - struct dentry *dbg_dir; -}; - -struct nbd_cmd { - struct nbd_device *nbd; - struct mutex lock; - int index; - int cookie; - int retries; - blk_status_t status; - long unsigned int flags; - u32 cmd_cookie; -}; - -struct ipvlan_netns { - unsigned int ipvl_nf_hook_refcnt; -}; - -enum { - MAX_ALLOWEDIPS_DEPTH = 129, -}; - -enum ifla_gtp_role { - GTP_ROLE_GGSN = 0, - GTP_ROLE_SGSN = 1, -}; - -enum { - IFLA_GTP_UNSPEC = 0, - IFLA_GTP_FD0 = 1, - IFLA_GTP_FD1 = 2, - IFLA_GTP_PDP_HASHSIZE = 3, - IFLA_GTP_ROLE = 4, - IFLA_GTP_CREATE_SOCKETS = 5, - IFLA_GTP_RESTART_COUNT = 6, - IFLA_GTP_LOCAL = 7, - IFLA_GTP_LOCAL6 = 8, - __IFLA_GTP_MAX = 9, -}; - -enum gtp_genl_cmds { - GTP_CMD_NEWPDP = 0, - GTP_CMD_DELPDP = 1, - GTP_CMD_GETPDP = 2, - GTP_CMD_ECHOREQ = 3, - GTP_CMD_MAX = 4, -}; - -enum gtp_version { - GTP_V0 = 0, - GTP_V1 = 1, -}; - -enum gtp_attrs { - GTPA_UNSPEC = 0, - GTPA_LINK = 1, - GTPA_VERSION = 2, - GTPA_TID = 3, - GTPA_PEER_ADDRESS = 4, - GTPA_MS_ADDRESS = 5, - GTPA_FLOW = 6, - GTPA_NET_NS_FD = 7, - GTPA_I_TEI = 8, - GTPA_O_TEI = 9, - GTPA_PAD = 10, - GTPA_PEER_ADDR6 = 11, - GTPA_MS_ADDR6 = 12, - GTPA_FAMILY = 13, - __GTPA_MAX = 14, -}; - -struct gtp0_header { - __u8 flags; - __u8 type; - __be16 length; - __be16 seq; - __be16 flow; - __u8 number; - __u8 spare[3]; - __be64 tid; -} __attribute__((packed)); - -struct gtp1_header { - __u8 flags; - __u8 type; - __be16 length; - __be32 tid; -}; - -struct gtp1_header_long { - __u8 flags; - __u8 type; - __be16 length; - __be32 tid; - __be16 seq; - __u8 npdu; - __u8 next; -}; - -struct gtp_ie { - __u8 tag; - __u8 val; -}; - -struct gtp0_packet { - struct gtp0_header gtp0_h; - struct gtp_ie ie; -}; - -struct gtp1u_packet { - struct gtp1_header_long gtp1u_h; - struct gtp_ie ie; -} __attribute__((packed)); - -struct gtp_ext_hdr { - __u8 len; - __u8 data[0]; -}; - -struct pdp_ctx { - struct hlist_node hlist_tid; - struct hlist_node hlist_addr; - union { - struct { - u64 tid; - u16 flow; - } v0; - struct { - u32 i_tei; - u32 o_tei; - } v1; - } u; - u8 gtp_version; - u16 af; - union { - struct in_addr addr; - struct in6_addr addr6; - } ms; - union { - struct in_addr addr; - struct in6_addr addr6; - } peer; - struct sock *sk; - struct net_device *dev; - atomic_t tx_seq; - struct callback_head callback_head; -}; - -struct gtp_dev { - struct list_head list; - struct sock *sk0; - struct sock *sk1u; - u8 sk_created; - struct net_device *dev; - struct net *net; - unsigned int role; - unsigned int hash_size; - struct hlist_head *tid_hash; - struct hlist_head *addr_hash; - u8 restart_count; -}; - -struct echo_info { - u16 af; - u8 gtp_version; - union { - struct in_addr addr; - } ms; - union { - struct in_addr addr; - } peer; -}; - -struct gtp_net { - struct list_head gtp_dev_list; -}; - -enum gtp_multicast_groups { - GTP_GENL_MCGRP = 0, -}; - -struct gtp_pktinfo { - struct sock *sk; - union { - struct flowi4 fl4; - struct flowi6 fl6; - }; - union { - struct rtable *rt; - struct rt6_info *rt6; - }; - struct pdp_ctx *pctx; - struct net_device *dev; - __u8 tos; - __be16 gtph_port; -}; - -struct usb_descriptor_header { - __u8 bLength; - __u8 bDescriptorType; -}; - -struct usb_dev_cap_header { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDevCapabilityType; -}; - -struct uhci_td; - -struct uhci_qh { - __le32 link; - __le32 element; - dma_addr_t dma_handle; - struct list_head node; - struct usb_host_endpoint *hep; - struct usb_device *udev; - struct list_head queue; - struct uhci_td *dummy_td; - struct uhci_td *post_td; - struct usb_iso_packet_descriptor *iso_packet_desc; - long unsigned int advance_jiffies; - unsigned int unlink_frame; - unsigned int period; - short int phase; - short int load; - unsigned int iso_frame; - int state; - int type; - int skel; - unsigned int initial_toggle: 1; - unsigned int needs_fixup: 1; - unsigned int is_stopped: 1; - unsigned int wait_expired: 1; - unsigned int bandwidth_reserved: 1; -}; - -struct uhci_td { - __le32 link; - __le32 status; - __le32 token; - __le32 buffer; - dma_addr_t dma_handle; - struct list_head list; - int frame; - struct list_head fl_list; -}; - -enum uhci_rh_state { - UHCI_RH_RESET = 0, - UHCI_RH_SUSPENDED = 1, - UHCI_RH_AUTO_STOPPED = 2, - UHCI_RH_RESUMING = 3, - UHCI_RH_SUSPENDING = 4, - UHCI_RH_RUNNING = 5, - UHCI_RH_RUNNING_NODEVS = 6, -}; - -struct uhci_hcd { - long unsigned int io_addr; - void *regs; - struct dma_pool *qh_pool; - struct dma_pool *td_pool; - struct uhci_td *term_td; - struct uhci_qh *skelqh[11]; - struct uhci_qh *next_qh; - spinlock_t lock; - dma_addr_t frame_dma_handle; - __le32 *frame; - void **frame_cpu; - enum uhci_rh_state rh_state; - long unsigned int auto_stop_time; - unsigned int frame_number; - unsigned int is_stopped; - unsigned int last_iso_frame; - unsigned int cur_iso_frame; - unsigned int scan_in_progress: 1; - unsigned int need_rescan: 1; - unsigned int dead: 1; - unsigned int RD_enable: 1; - unsigned int is_initialized: 1; - unsigned int fsbr_is_on: 1; - unsigned int fsbr_is_wanted: 1; - unsigned int fsbr_expiring: 1; - struct timer_list fsbr_timer; - unsigned int oc_low: 1; - unsigned int wait_for_hp: 1; - unsigned int big_endian_mmio: 1; - unsigned int big_endian_desc: 1; - unsigned int is_aspeed: 1; - long unsigned int port_c_suspend; - long unsigned int resuming_ports; - long unsigned int ports_timeout; - struct list_head idle_qh_list; - int rh_numports; - wait_queue_head_t waitqh; - int num_waiting; - int total_load; - short int load[32]; - struct clk *clk; - void (*reset_hc)(struct uhci_hcd *); - int (*check_and_reset_hc)(struct uhci_hcd *); - void (*configure_hc)(struct uhci_hcd *); - int (*resume_detect_interrupts_are_broken)(struct uhci_hcd *); - int (*global_suspend_mode_is_broken)(struct uhci_hcd *); -}; - -struct urb_priv___2 { - struct list_head node; - struct urb *urb; - struct uhci_qh *qh; - struct list_head td_list; - unsigned int fsbr: 1; -}; - -enum { - ATA_MAX_DEVICES = 2, - ATA_MAX_PRD = 256, - ATA_SECT_SIZE = 512, - ATA_MAX_SECTORS_128 = 128, - ATA_MAX_SECTORS = 256, - ATA_MAX_SECTORS_1024 = 1024, - ATA_MAX_SECTORS_LBA48 = 65535, - ATA_MAX_SECTORS_TAPE = 65535, - ATA_MAX_TRIM_RNUM = 64, - ATA_ID_WORDS = 256, - ATA_ID_CONFIG = 0, - ATA_ID_CYLS = 1, - ATA_ID_HEADS = 3, - ATA_ID_SECTORS = 6, - ATA_ID_SERNO = 10, - ATA_ID_BUF_SIZE = 21, - ATA_ID_FW_REV = 23, - ATA_ID_PROD = 27, - ATA_ID_MAX_MULTSECT = 47, - ATA_ID_DWORD_IO = 48, - ATA_ID_TRUSTED = 48, - ATA_ID_CAPABILITY = 49, - ATA_ID_OLD_PIO_MODES = 51, - ATA_ID_OLD_DMA_MODES = 52, - ATA_ID_FIELD_VALID = 53, - ATA_ID_CUR_CYLS = 54, - ATA_ID_CUR_HEADS = 55, - ATA_ID_CUR_SECTORS = 56, - ATA_ID_MULTSECT = 59, - ATA_ID_LBA_CAPACITY = 60, - ATA_ID_SWDMA_MODES = 62, - ATA_ID_MWDMA_MODES = 63, - ATA_ID_PIO_MODES = 64, - ATA_ID_EIDE_DMA_MIN = 65, - ATA_ID_EIDE_DMA_TIME = 66, - ATA_ID_EIDE_PIO = 67, - ATA_ID_EIDE_PIO_IORDY = 68, - ATA_ID_ADDITIONAL_SUPP = 69, - ATA_ID_QUEUE_DEPTH = 75, - ATA_ID_SATA_CAPABILITY = 76, - ATA_ID_SATA_CAPABILITY_2 = 77, - ATA_ID_FEATURE_SUPP = 78, - ATA_ID_MAJOR_VER = 80, - ATA_ID_COMMAND_SET_1 = 82, - ATA_ID_COMMAND_SET_2 = 83, - ATA_ID_CFSSE = 84, - ATA_ID_CFS_ENABLE_1 = 85, - ATA_ID_CFS_ENABLE_2 = 86, - ATA_ID_CSF_DEFAULT = 87, - ATA_ID_UDMA_MODES = 88, - ATA_ID_HW_CONFIG = 93, - ATA_ID_SPG = 98, - ATA_ID_LBA_CAPACITY_2 = 100, - ATA_ID_SECTOR_SIZE = 106, - ATA_ID_WWN = 108, - ATA_ID_LOGICAL_SECTOR_SIZE = 117, - ATA_ID_COMMAND_SET_3 = 119, - ATA_ID_COMMAND_SET_4 = 120, - ATA_ID_LAST_LUN = 126, - ATA_ID_DLF = 128, - ATA_ID_CSFO = 129, - ATA_ID_CFA_POWER = 160, - ATA_ID_CFA_KEY_MGMT = 162, - ATA_ID_CFA_MODES = 163, - ATA_ID_DATA_SET_MGMT = 169, - ATA_ID_SCT_CMD_XPORT = 206, - ATA_ID_ROT_SPEED = 217, - ATA_ID_PIO4 = 2, - ATA_ID_SERNO_LEN = 20, - ATA_ID_FW_REV_LEN = 8, - ATA_ID_PROD_LEN = 40, - ATA_ID_WWN_LEN = 8, - ATA_PCI_CTL_OFS = 2, - ATA_PIO0 = 1, - ATA_PIO1 = 3, - ATA_PIO2 = 7, - ATA_PIO3 = 15, - ATA_PIO4 = 31, - ATA_PIO5 = 63, - ATA_PIO6 = 127, - ATA_PIO4_ONLY = 16, - ATA_SWDMA0 = 1, - ATA_SWDMA1 = 3, - ATA_SWDMA2 = 7, - ATA_SWDMA2_ONLY = 4, - ATA_MWDMA0 = 1, - ATA_MWDMA1 = 3, - ATA_MWDMA2 = 7, - ATA_MWDMA3 = 15, - ATA_MWDMA4 = 31, - ATA_MWDMA12_ONLY = 6, - ATA_MWDMA2_ONLY = 4, - ATA_UDMA0 = 1, - ATA_UDMA1 = 3, - ATA_UDMA2 = 7, - ATA_UDMA3 = 15, - ATA_UDMA4 = 31, - ATA_UDMA5 = 63, - ATA_UDMA6 = 127, - ATA_UDMA7 = 255, - ATA_UDMA24_ONLY = 20, - ATA_UDMA_MASK_40C = 7, - ATA_PRD_SZ = 8, - ATA_PRD_TBL_SZ = 2048, - ATA_PRD_EOT = -2147483648, - ATA_DMA_TABLE_OFS = 4, - ATA_DMA_STATUS = 2, - ATA_DMA_CMD = 0, - ATA_DMA_WR = 8, - ATA_DMA_START = 1, - ATA_DMA_INTR = 4, - ATA_DMA_ERR = 2, - ATA_DMA_ACTIVE = 1, - ATA_HOB = 128, - ATA_NIEN = 2, - ATA_LBA = 64, - ATA_DEV1 = 16, - ATA_DEVICE_OBS = 160, - ATA_DEVCTL_OBS = 8, - ATA_BUSY = 128, - ATA_DRDY = 64, - ATA_DF = 32, - ATA_DSC = 16, - ATA_DRQ = 8, - ATA_CORR = 4, - ATA_SENSE = 2, - ATA_ERR = 1, - ATA_SRST = 4, - ATA_ICRC = 128, - ATA_BBK = 128, - ATA_UNC = 64, - ATA_MC = 32, - ATA_IDNF = 16, - ATA_MCR = 8, - ATA_ABORTED = 4, - ATA_TRK0NF = 2, - ATA_AMNF = 1, - ATAPI_LFS = 240, - ATAPI_EOM = 2, - ATAPI_ILI = 1, - ATAPI_IO = 2, - ATAPI_COD = 1, - ATA_REG_DATA = 0, - ATA_REG_ERR = 1, - ATA_REG_NSECT = 2, - ATA_REG_LBAL = 3, - ATA_REG_LBAM = 4, - ATA_REG_LBAH = 5, - ATA_REG_DEVICE = 6, - ATA_REG_STATUS = 7, - ATA_REG_FEATURE = 1, - ATA_REG_CMD = 7, - ATA_REG_BYTEL = 4, - ATA_REG_BYTEH = 5, - ATA_REG_DEVSEL = 6, - ATA_REG_IRQ = 2, - ATA_CMD_DEV_RESET = 8, - ATA_CMD_CHK_POWER = 229, - ATA_CMD_STANDBY = 226, - ATA_CMD_IDLE = 227, - ATA_CMD_EDD = 144, - ATA_CMD_DOWNLOAD_MICRO = 146, - ATA_CMD_DOWNLOAD_MICRO_DMA = 147, - ATA_CMD_NOP = 0, - ATA_CMD_FLUSH = 231, - ATA_CMD_FLUSH_EXT = 234, - ATA_CMD_ID_ATA = 236, - ATA_CMD_ID_ATAPI = 161, - ATA_CMD_SERVICE = 162, - ATA_CMD_READ = 200, - ATA_CMD_READ_EXT = 37, - ATA_CMD_READ_QUEUED = 38, - ATA_CMD_READ_STREAM_EXT = 43, - ATA_CMD_READ_STREAM_DMA_EXT = 42, - ATA_CMD_WRITE = 202, - ATA_CMD_WRITE_EXT = 53, - ATA_CMD_WRITE_QUEUED = 54, - ATA_CMD_WRITE_STREAM_EXT = 59, - ATA_CMD_WRITE_STREAM_DMA_EXT = 58, - ATA_CMD_WRITE_FUA_EXT = 61, - ATA_CMD_WRITE_QUEUED_FUA_EXT = 62, - ATA_CMD_FPDMA_READ = 96, - ATA_CMD_FPDMA_WRITE = 97, - ATA_CMD_NCQ_NON_DATA = 99, - ATA_CMD_FPDMA_SEND = 100, - ATA_CMD_FPDMA_RECV = 101, - ATA_CMD_PIO_READ = 32, - ATA_CMD_PIO_READ_EXT = 36, - ATA_CMD_PIO_WRITE = 48, - ATA_CMD_PIO_WRITE_EXT = 52, - ATA_CMD_READ_MULTI = 196, - ATA_CMD_READ_MULTI_EXT = 41, - ATA_CMD_WRITE_MULTI = 197, - ATA_CMD_WRITE_MULTI_EXT = 57, - ATA_CMD_WRITE_MULTI_FUA_EXT = 206, - ATA_CMD_SET_FEATURES = 239, - ATA_CMD_SET_MULTI = 198, - ATA_CMD_PACKET = 160, - ATA_CMD_VERIFY = 64, - ATA_CMD_VERIFY_EXT = 66, - ATA_CMD_WRITE_UNCORR_EXT = 69, - ATA_CMD_STANDBYNOW1 = 224, - ATA_CMD_IDLEIMMEDIATE = 225, - ATA_CMD_SLEEP = 230, - ATA_CMD_INIT_DEV_PARAMS = 145, - ATA_CMD_READ_NATIVE_MAX = 248, - ATA_CMD_READ_NATIVE_MAX_EXT = 39, - ATA_CMD_SET_MAX = 249, - ATA_CMD_SET_MAX_EXT = 55, - ATA_CMD_READ_LOG_EXT = 47, - ATA_CMD_WRITE_LOG_EXT = 63, - ATA_CMD_READ_LOG_DMA_EXT = 71, - ATA_CMD_WRITE_LOG_DMA_EXT = 87, - ATA_CMD_TRUSTED_NONDATA = 91, - ATA_CMD_TRUSTED_RCV = 92, - ATA_CMD_TRUSTED_RCV_DMA = 93, - ATA_CMD_TRUSTED_SND = 94, - ATA_CMD_TRUSTED_SND_DMA = 95, - ATA_CMD_PMP_READ = 228, - ATA_CMD_PMP_READ_DMA = 233, - ATA_CMD_PMP_WRITE = 232, - ATA_CMD_PMP_WRITE_DMA = 235, - ATA_CMD_CONF_OVERLAY = 177, - ATA_CMD_SEC_SET_PASS = 241, - ATA_CMD_SEC_UNLOCK = 242, - ATA_CMD_SEC_ERASE_PREP = 243, - ATA_CMD_SEC_ERASE_UNIT = 244, - ATA_CMD_SEC_FREEZE_LOCK = 245, - ATA_CMD_SEC_DISABLE_PASS = 246, - ATA_CMD_CONFIG_STREAM = 81, - ATA_CMD_SMART = 176, - ATA_CMD_MEDIA_LOCK = 222, - ATA_CMD_MEDIA_UNLOCK = 223, - ATA_CMD_DSM = 6, - ATA_CMD_CHK_MED_CRD_TYP = 209, - ATA_CMD_CFA_REQ_EXT_ERR = 3, - ATA_CMD_CFA_WRITE_NE = 56, - ATA_CMD_CFA_TRANS_SECT = 135, - ATA_CMD_CFA_ERASE = 192, - ATA_CMD_CFA_WRITE_MULT_NE = 205, - ATA_CMD_REQ_SENSE_DATA = 11, - ATA_CMD_SANITIZE_DEVICE = 180, - ATA_CMD_ZAC_MGMT_IN = 74, - ATA_CMD_ZAC_MGMT_OUT = 159, - ATA_CMD_RESTORE = 16, - ATA_SUBCMD_FPDMA_RECV_RD_LOG_DMA_EXT = 1, - ATA_SUBCMD_FPDMA_RECV_ZAC_MGMT_IN = 2, - ATA_SUBCMD_FPDMA_SEND_DSM = 0, - ATA_SUBCMD_FPDMA_SEND_WR_LOG_DMA_EXT = 2, - ATA_SUBCMD_NCQ_NON_DATA_ABORT_QUEUE = 0, - ATA_SUBCMD_NCQ_NON_DATA_SET_FEATURES = 5, - ATA_SUBCMD_NCQ_NON_DATA_ZERO_EXT = 6, - ATA_SUBCMD_NCQ_NON_DATA_ZAC_MGMT_OUT = 7, - ATA_SUBCMD_ZAC_MGMT_IN_REPORT_ZONES = 0, - ATA_SUBCMD_ZAC_MGMT_OUT_CLOSE_ZONE = 1, - ATA_SUBCMD_ZAC_MGMT_OUT_FINISH_ZONE = 2, - ATA_SUBCMD_ZAC_MGMT_OUT_OPEN_ZONE = 3, - ATA_SUBCMD_ZAC_MGMT_OUT_RESET_WRITE_POINTER = 4, - ATA_LOG_DIRECTORY = 0, - ATA_LOG_SATA_NCQ = 16, - ATA_LOG_NCQ_NON_DATA = 18, - ATA_LOG_NCQ_SEND_RECV = 19, - ATA_LOG_CDL = 24, - ATA_LOG_CDL_SIZE = 512, - ATA_LOG_IDENTIFY_DEVICE = 48, - ATA_LOG_SENSE_NCQ = 15, - ATA_LOG_SENSE_NCQ_SIZE = 1024, - ATA_LOG_CONCURRENT_POSITIONING_RANGES = 71, - ATA_LOG_SUPPORTED_CAPABILITIES = 3, - ATA_LOG_CURRENT_SETTINGS = 4, - ATA_LOG_SECURITY = 6, - ATA_LOG_SATA_SETTINGS = 8, - ATA_LOG_ZONED_INFORMATION = 9, - ATA_LOG_DEVSLP_OFFSET = 48, - ATA_LOG_DEVSLP_SIZE = 8, - ATA_LOG_DEVSLP_MDAT = 0, - ATA_LOG_DEVSLP_MDAT_MASK = 31, - ATA_LOG_DEVSLP_DETO = 1, - ATA_LOG_DEVSLP_VALID = 7, - ATA_LOG_DEVSLP_VALID_MASK = 128, - ATA_LOG_NCQ_PRIO_OFFSET = 9, - ATA_LOG_NCQ_SEND_RECV_SUBCMDS_OFFSET = 0, - ATA_LOG_NCQ_SEND_RECV_SUBCMDS_DSM = 1, - ATA_LOG_NCQ_SEND_RECV_DSM_OFFSET = 4, - ATA_LOG_NCQ_SEND_RECV_DSM_TRIM = 1, - ATA_LOG_NCQ_SEND_RECV_RD_LOG_OFFSET = 8, - ATA_LOG_NCQ_SEND_RECV_RD_LOG_SUPPORTED = 1, - ATA_LOG_NCQ_SEND_RECV_WR_LOG_OFFSET = 12, - ATA_LOG_NCQ_SEND_RECV_WR_LOG_SUPPORTED = 1, - ATA_LOG_NCQ_SEND_RECV_ZAC_MGMT_OFFSET = 16, - ATA_LOG_NCQ_SEND_RECV_ZAC_MGMT_OUT_SUPPORTED = 1, - ATA_LOG_NCQ_SEND_RECV_ZAC_MGMT_IN_SUPPORTED = 2, - ATA_LOG_NCQ_SEND_RECV_SIZE = 20, - ATA_LOG_NCQ_NON_DATA_SUBCMDS_OFFSET = 0, - ATA_LOG_NCQ_NON_DATA_ABORT_OFFSET = 0, - ATA_LOG_NCQ_NON_DATA_ABORT_NCQ = 1, - ATA_LOG_NCQ_NON_DATA_ABORT_ALL = 2, - ATA_LOG_NCQ_NON_DATA_ABORT_STREAMING = 4, - ATA_LOG_NCQ_NON_DATA_ABORT_NON_STREAMING = 8, - ATA_LOG_NCQ_NON_DATA_ABORT_SELECTED = 16, - ATA_LOG_NCQ_NON_DATA_ZAC_MGMT_OFFSET = 28, - ATA_LOG_NCQ_NON_DATA_ZAC_MGMT_OUT = 1, - ATA_LOG_NCQ_NON_DATA_SIZE = 64, - ATA_CMD_READ_LONG = 34, - ATA_CMD_READ_LONG_ONCE = 35, - ATA_CMD_WRITE_LONG = 50, - ATA_CMD_WRITE_LONG_ONCE = 51, - SETFEATURES_XFER = 3, - XFER_UDMA_7 = 71, - XFER_UDMA_6 = 70, - XFER_UDMA_5 = 69, - XFER_UDMA_4 = 68, - XFER_UDMA_3 = 67, - XFER_UDMA_2 = 66, - XFER_UDMA_1 = 65, - XFER_UDMA_0 = 64, - XFER_MW_DMA_4 = 36, - XFER_MW_DMA_3 = 35, - XFER_MW_DMA_2 = 34, - XFER_MW_DMA_1 = 33, - XFER_MW_DMA_0 = 32, - XFER_SW_DMA_2 = 18, - XFER_SW_DMA_1 = 17, - XFER_SW_DMA_0 = 16, - XFER_PIO_6 = 14, - XFER_PIO_5 = 13, - XFER_PIO_4 = 12, - XFER_PIO_3 = 11, - XFER_PIO_2 = 10, - XFER_PIO_1 = 9, - XFER_PIO_0 = 8, - XFER_PIO_SLOW = 0, - SETFEATURES_WC_ON = 2, - SETFEATURES_WC_OFF = 130, - SETFEATURES_RA_ON = 170, - SETFEATURES_RA_OFF = 85, - SETFEATURES_AAM_ON = 66, - SETFEATURES_AAM_OFF = 194, - SETFEATURES_SPINUP = 7, - SETFEATURES_SPINUP_TIMEOUT = 30000, - SETFEATURES_SATA_ENABLE = 16, - SETFEATURES_SATA_DISABLE = 144, - SETFEATURES_CDL = 13, - SATA_FPDMA_OFFSET = 1, - SATA_FPDMA_AA = 2, - SATA_DIPM = 3, - SATA_FPDMA_IN_ORDER = 4, - SATA_AN = 5, - SATA_SSP = 6, - SATA_DEVSLP = 9, - SETFEATURE_SENSE_DATA = 195, - SETFEATURE_SENSE_DATA_SUCC_NCQ = 196, - ATA_SET_MAX_ADDR = 0, - ATA_SET_MAX_PASSWD = 1, - ATA_SET_MAX_LOCK = 2, - ATA_SET_MAX_UNLOCK = 3, - ATA_SET_MAX_FREEZE_LOCK = 4, - ATA_SET_MAX_PASSWD_DMA = 5, - ATA_SET_MAX_UNLOCK_DMA = 6, - ATA_DCO_RESTORE = 192, - ATA_DCO_FREEZE_LOCK = 193, - ATA_DCO_IDENTIFY = 194, - ATA_DCO_SET = 195, - ATA_SMART_ENABLE = 216, - ATA_SMART_READ_VALUES = 208, - ATA_SMART_READ_THRESHOLDS = 209, - ATA_DSM_TRIM = 1, - ATA_SMART_LBAM_PASS = 79, - ATA_SMART_LBAH_PASS = 194, - ATAPI_PKT_DMA = 1, - ATAPI_DMADIR = 4, - ATAPI_CDB_LEN = 16, - SATA_PMP_MAX_PORTS = 15, - SATA_PMP_CTRL_PORT = 15, - SATA_PMP_GSCR_DWORDS = 128, - SATA_PMP_GSCR_PROD_ID = 0, - SATA_PMP_GSCR_REV = 1, - SATA_PMP_GSCR_PORT_INFO = 2, - SATA_PMP_GSCR_ERROR = 32, - SATA_PMP_GSCR_ERROR_EN = 33, - SATA_PMP_GSCR_FEAT = 64, - SATA_PMP_GSCR_FEAT_EN = 96, - SATA_PMP_PSCR_STATUS = 0, - SATA_PMP_PSCR_ERROR = 1, - SATA_PMP_PSCR_CONTROL = 2, - SATA_PMP_FEAT_BIST = 1, - SATA_PMP_FEAT_PMREQ = 2, - SATA_PMP_FEAT_DYNSSC = 4, - SATA_PMP_FEAT_NOTIFY = 8, - ATA_CBL_NONE = 0, - ATA_CBL_PATA40 = 1, - ATA_CBL_PATA80 = 2, - ATA_CBL_PATA40_SHORT = 3, - ATA_CBL_PATA_UNK = 4, - ATA_CBL_PATA_IGN = 5, - ATA_CBL_SATA = 6, - SCR_STATUS = 0, - SCR_ERROR = 1, - SCR_CONTROL = 2, - SCR_ACTIVE = 3, - SCR_NOTIFICATION = 4, - SERR_DATA_RECOVERED = 1, - SERR_COMM_RECOVERED = 2, - SERR_DATA = 256, - SERR_PERSISTENT = 512, - SERR_PROTOCOL = 1024, - SERR_INTERNAL = 2048, - SERR_PHYRDY_CHG = 65536, - SERR_PHY_INT_ERR = 131072, - SERR_COMM_WAKE = 262144, - SERR_10B_8B_ERR = 524288, - SERR_DISPARITY = 1048576, - SERR_CRC = 2097152, - SERR_HANDSHAKE = 4194304, - SERR_LINK_SEQ_ERR = 8388608, - SERR_TRANS_ST_ERROR = 16777216, - SERR_UNRECOG_FIS = 33554432, - SERR_DEV_XCHG = 67108864, -}; - -struct f81232_private { - struct mutex lock; - u8 modem_control; - u8 modem_status; - u8 shadow_lcr; - speed_t baud_base; - struct work_struct lsr_work; - struct work_struct interrupt_work; - struct usb_serial_port *port; -}; - -struct keyspan_pda_private { - int tx_room; - struct work_struct unthrottle_work; - struct usb_serial *serial; - struct usb_serial_port *port; -}; - -struct sierra_iface_list { - const u8 *nums; - size_t count; -}; - -struct sierra_intf_private { - spinlock_t susp_lock; - unsigned int suspended: 1; - int in_flight; - unsigned int open_ports; -}; - -struct sierra_port_private { - spinlock_t lock; - int outstanding_urbs; - struct usb_anchor active; - struct usb_anchor delayed; - int num_out_urbs; - int num_in_urbs; - struct urb *in_urbs[8]; - int rts_state; - int dtr_state; - int cts_state; - int dsr_state; - int dcd_state; - int ri_state; -}; - -enum typec_port_type { - TYPEC_PORT_SRC = 0, - TYPEC_PORT_SNK = 1, - TYPEC_PORT_DRP = 2, -}; - -enum typec_plug_type { - USB_PLUG_NONE = 0, - USB_PLUG_TYPE_A = 1, - USB_PLUG_TYPE_B = 2, - USB_PLUG_TYPE_C = 3, - USB_PLUG_CAPTIVE = 4, -}; - -enum typec_data_role { - TYPEC_DEVICE = 0, - TYPEC_HOST = 1, -}; - -enum typec_role { - TYPEC_SINK = 0, - TYPEC_SOURCE = 1, -}; - -enum typec_pwr_opmode { - TYPEC_PWR_MODE_USB = 0, - TYPEC_PWR_MODE_1_5A = 1, - TYPEC_PWR_MODE_3_0A = 2, - TYPEC_PWR_MODE_PD = 3, -}; - -enum typec_accessory { - TYPEC_ACCESSORY_NONE = 0, - TYPEC_ACCESSORY_AUDIO = 1, - TYPEC_ACCESSORY_DEBUG = 2, -}; - -struct usb_pd_identity { - u32 id_header; - u32 cert_stat; - u32 product; - u32 vdo[3]; -}; - -struct typec_altmode_desc { - u16 svid; - u8 mode; - u32 vdo; - enum typec_port_data roles; -}; - -struct typec_plug_desc { - enum typec_plug_index index; -}; - -struct typec_cable_desc { - enum typec_plug_type type; - unsigned int active: 1; - struct usb_pd_identity *identity; - u16 pd_revision; -}; - -struct typec_partner; - -struct typec_partner_desc { - unsigned int usb_pd: 1; - enum typec_accessory accessory; - struct usb_pd_identity *identity; - u16 pd_revision; - void (*attach)(struct typec_partner *, struct device *); - void (*deattach)(struct typec_partner *, struct device *); -}; - -enum usb_pd_svdm_ver { - SVDM_VER_1_0 = 0, - SVDM_VER_2_0 = 1, - SVDM_VER_MAX = 1, -}; - -struct usb_power_delivery; - -struct typec_partner { - struct device dev; - unsigned int usb_pd: 1; - struct usb_pd_identity *identity; - enum typec_accessory accessory; - struct ida mode_ids; - int num_altmodes; - u16 pd_revision; - enum usb_pd_svdm_ver svdm_version; - struct usb_power_delivery *pd; - void (*attach)(struct typec_partner *, struct device *); - void (*deattach)(struct typec_partner *, struct device *); -}; - -struct typec_port; - -struct typec_operations { - int (*try_role)(struct typec_port *, int); - int (*dr_set)(struct typec_port *, enum typec_data_role); - int (*pr_set)(struct typec_port *, enum typec_role); - int (*vconn_set)(struct typec_port *, enum typec_role); - int (*port_type_set)(struct typec_port *, enum typec_port_type); - struct usb_power_delivery ** (*pd_get)(struct typec_port *); - int (*pd_set)(struct typec_port *, struct usb_power_delivery *); -}; - -struct typec_capability; - -struct typec_port { - unsigned int id; - struct device dev; - struct ida mode_ids; - struct usb_power_delivery *pd; - int prefer_role; - enum typec_data_role data_role; - enum typec_role pwr_role; - enum typec_role vconn_role; - enum typec_pwr_opmode pwr_opmode; - enum typec_port_type port_type; - struct mutex port_type_lock; - struct mutex partner_link_lock; - enum typec_orientation orientation; - struct typec_switch *sw; - struct typec_mux *mux; - struct typec_retimer *retimer; - const struct typec_capability *cap; - const struct typec_operations *ops; - struct typec_connector con; - struct device *usb2_dev; - struct device *usb3_dev; -}; - -struct usb_power_delivery { - struct device dev; - int id; - u16 revision; - u16 version; -}; - -struct typec_capability { - enum typec_port_type type; - enum typec_port_data data; - u16 revision; - u16 pd_revision; - enum usb_pd_svdm_ver svdm_version; - int prefer_role; - enum typec_accessory accessory[3]; - unsigned int orientation_aware: 1; - struct fwnode_handle *fwnode; - void *driver_data; - struct usb_power_delivery *pd; - const struct typec_operations *ops; -}; - -struct usb_power_delivery_desc { - u16 revision; - u16 version; -}; - -struct typec_plug { - struct device dev; - enum typec_plug_index index; - struct ida mode_ids; - int num_altmodes; -}; - -struct typec_cable { - struct device dev; - enum typec_plug_type type; - struct usb_pd_identity *identity; - unsigned int active: 1; - u16 pd_revision; - enum usb_pd_svdm_ver svdm_version; -}; - -enum pd_pdo_type { - PDO_TYPE_FIXED = 0, - PDO_TYPE_BATT = 1, - PDO_TYPE_VAR = 2, - PDO_TYPE_APDO = 3, -}; - -enum pd_apdo_type { - APDO_TYPE_PPS = 0, -}; - -struct usb_power_delivery_capabilities_desc { - u32 pdo[7]; - enum typec_role role; -}; - -struct usb_power_delivery_capabilities { - struct device dev; - struct usb_power_delivery *pd; - enum typec_role role; -}; - -struct pdo { - struct device dev; - int object_position; - u32 pdo; -}; - -enum usb_role { - USB_ROLE_NONE = 0, - USB_ROLE_HOST = 1, - USB_ROLE_DEVICE = 2, -}; - -struct usb_role_switch; - -typedef int (*usb_role_switch_set_t)(struct usb_role_switch *, enum usb_role); - -typedef enum usb_role (*usb_role_switch_get_t)(struct usb_role_switch *); - -struct usb_role_switch { - struct device dev; - struct lock_class_key key; - struct mutex lock; - struct module *module; - enum usb_role role; - bool registered; - struct device *usb2_port; - struct device *usb3_port; - struct device *udc; - usb_role_switch_set_t set; - usb_role_switch_get_t get; - bool allow_userspace_control; -}; - -struct usb_role_switch_desc { - struct fwnode_handle *fwnode; - struct device *usb2_port; - struct device *usb3_port; - struct device *udc; - usb_role_switch_set_t set; - usb_role_switch_get_t get; - bool allow_userspace_control; - void *driver_data; - const char *name; -}; - -typedef int (*nvmem_reg_read_t)(void *, unsigned int, void *, size_t); - -typedef int (*nvmem_reg_write_t)(void *, unsigned int, void *, size_t); - -typedef int (*nvmem_cell_post_process_t)(void *, const char *, int, unsigned int, void *, size_t); - -enum nvmem_type { - NVMEM_TYPE_UNKNOWN = 0, - NVMEM_TYPE_EEPROM = 1, - NVMEM_TYPE_OTP = 2, - NVMEM_TYPE_BATTERY_BACKED = 3, - NVMEM_TYPE_FRAM = 4, -}; - -struct nvmem_keepout { - unsigned int start; - unsigned int end; - unsigned char value; -}; - -struct nvmem_cell_info { - const char *name; - unsigned int offset; - size_t raw_len; - unsigned int bytes; - unsigned int bit_offset; - unsigned int nbits; - struct device_node *np; - nvmem_cell_post_process_t read_post_process; - void *priv; -}; - -struct nvmem_device; - -struct nvmem_layout; - -struct nvmem_config { - struct device *dev; - const char *name; - int id; - struct module *owner; - const struct nvmem_cell_info *cells; - int ncells; - bool add_legacy_fixed_of_cells; - void (*fixup_dt_cell_info)(struct nvmem_device *, struct nvmem_cell_info *); - const struct nvmem_keepout *keepout; - unsigned int nkeepout; - enum nvmem_type type; - bool read_only; - bool root_only; - bool ignore_wp; - struct nvmem_layout *layout; - struct device_node *of_node; - nvmem_reg_read_t reg_read; - nvmem_reg_write_t reg_write; - int size; - int word_size; - int stride; - void *priv; - bool compat; - struct device *base_dev; -}; - -struct nvmem_layout { - struct device dev; - struct nvmem_device *nvmem; - int (*add_cells)(struct nvmem_layout *); -}; - -enum hwmon_sensor_types { - hwmon_chip = 0, - hwmon_temp = 1, - hwmon_in = 2, - hwmon_curr = 3, - hwmon_power = 4, - hwmon_energy = 5, - hwmon_humidity = 6, - hwmon_fan = 7, - hwmon_pwm = 8, - hwmon_intrusion = 9, - hwmon_max = 10, -}; - -struct hwmon_ops { - umode_t (*is_visible)(const void *, enum hwmon_sensor_types, u32, int); - int (*read)(struct device *, enum hwmon_sensor_types, u32, int, long int *); - int (*read_string)(struct device *, enum hwmon_sensor_types, u32, int, const char **); - int (*write)(struct device *, enum hwmon_sensor_types, u32, int, long int); -}; - -struct hwmon_channel_info { - enum hwmon_sensor_types type; - const u32 *config; -}; - -struct hwmon_chip_info { - const struct hwmon_ops *ops; - const struct hwmon_channel_info * const *info; -}; - -struct ds3232 { - struct device *dev; - struct regmap *regmap; - int irq; - struct rtc_device *rtc; - bool suspended; -}; - -struct linear_c { - struct dm_dev *dev; - sector_t start; -}; - -struct des_ctx { - u32 expkey[32]; -}; - -struct sec_bd_info { - u32 w0; - u32 w1; - u32 w2; - u32 w3; - union { - u32 authkey_addr_lo; - u32 authiv_addr_lo; - }; - union { - u32 authkey_addr_hi; - u32 authiv_addr_hi; - }; - u32 cipher_key_addr_lo; - u32 cipher_key_addr_hi; - u32 cipher_iv_addr_lo; - u32 cipher_iv_addr_hi; - u32 data_addr_lo; - u32 data_addr_hi; - u32 mac_addr_lo; - u32 mac_addr_hi; - u32 cipher_destin_addr_lo; - u32 cipher_destin_addr_hi; -}; - -enum sec_mem_region { - SEC_COMMON = 0, - SEC_SAA = 1, - SEC_NUM_ADDR_REGIONS = 2, -}; - -struct sec_queue_ring_cmd { - atomic_t used; - struct mutex lock; - struct sec_bd_info *vaddr; - dma_addr_t paddr; - void (*callback)(struct sec_bd_info *, void *); -}; - -struct sec_debug_bd_info; - -struct sec_queue_ring_db { - struct sec_debug_bd_info *vaddr; - dma_addr_t paddr; -}; - -struct sec_out_bd_info; - -struct sec_queue_ring_cq { - struct sec_out_bd_info *vaddr; - dma_addr_t paddr; -}; - -enum sec_cipher_alg { - SEC_C_DES_ECB_64 = 0, - SEC_C_DES_CBC_64 = 1, - SEC_C_3DES_ECB_192_3KEY = 2, - SEC_C_3DES_ECB_192_2KEY = 3, - SEC_C_3DES_CBC_192_3KEY = 4, - SEC_C_3DES_CBC_192_2KEY = 5, - SEC_C_AES_ECB_128 = 6, - SEC_C_AES_ECB_192 = 7, - SEC_C_AES_ECB_256 = 8, - SEC_C_AES_CBC_128 = 9, - SEC_C_AES_CBC_192 = 10, - SEC_C_AES_CBC_256 = 11, - SEC_C_AES_CTR_128 = 12, - SEC_C_AES_CTR_192 = 13, - SEC_C_AES_CTR_256 = 14, - SEC_C_AES_XTS_128 = 15, - SEC_C_AES_XTS_256 = 16, - SEC_C_NULL = 17, -}; - -struct sec_queue; - -struct sec_alg_tfm_ctx { - enum sec_cipher_alg cipher_alg; - u8 *key; - dma_addr_t pkey; - struct sec_bd_info req_template; - struct sec_queue *queue; - struct mutex lock; - u8 *auth_buf; - struct list_head backlog; -}; - -struct sec_dev_info; - -struct sec_request_el; - -struct sec_queue { - struct sec_dev_info *dev_info; - int task_irq; - char name[64]; - struct sec_queue_ring_cmd ring_cmd; - struct sec_queue_ring_cq ring_cq; - struct sec_queue_ring_db ring_db; - void *regs; - u32 queue_id; - bool in_use; - int expected; - long unsigned int unprocessed[8]; - struct { - union { - struct __kfifo kfifo; - struct sec_request_el **type; - struct sec_request_el * const *const_type; - char (*rectype)[0]; - struct sec_request_el **ptr; - struct sec_request_el * const *ptr_const; - }; - struct sec_request_el *buf[0]; - } softqueue; - bool havesoftqueue; - spinlock_t queuelock; - void *shadow[512]; -}; - -struct sec_request { - struct list_head elements; - int num_elements; - struct mutex lock; - struct sec_alg_tfm_ctx *tfm_ctx; - int len_in; - int len_out; - dma_addr_t dma_iv; - int err; - struct crypto_async_request *req_base; - void (*cb)(struct sec_bd_info *, struct crypto_async_request *); - struct list_head backlog_head; -}; - -struct sec_hw_sgl; - -struct sec_request_el { - struct list_head head; - struct sec_bd_info req; - struct sec_hw_sgl *in; - dma_addr_t dma_in; - struct scatterlist *sgl_in; - struct sec_hw_sgl *out; - dma_addr_t dma_out; - struct scatterlist *sgl_out; - struct sec_request *sec_req; - size_t el_length; -}; - -struct sec_hw_sge { - dma_addr_t buf; - unsigned int len; - unsigned int pad; -}; - -struct sec_hw_sgl { - dma_addr_t next_sgl; - u16 entry_sum_in_chain; - u16 entry_sum_in_sgl; - u32 flag; - u64 serial_num; - u32 cpuid; - u32 data_bytes_in_sgl; - struct sec_hw_sgl *next; - u64 reserved; - struct sec_hw_sge sge_entries[64]; - u8 node[16]; -}; - -struct sec_dev_info { - int sec_id; - int num_saas; - void *regs[2]; - struct mutex dev_lock; - int queues_in_use; - struct sec_queue queues[16]; - struct device *dev; - struct dma_pool *hw_sgl_pool; -}; - -struct sec_c_alg_cfg { - unsigned int c_alg: 3; - unsigned int c_mode: 3; - unsigned int key_len: 2; - unsigned int c_width: 2; -}; - -struct vhost_vring_file { - unsigned int index; - int fd; -}; - -enum { - VHOST_NET_FEATURES = 1113419972608ULL, -}; - -enum { - VHOST_NET_BACKEND_FEATURES = 2, -}; - -enum { - VHOST_NET_VQ_RX = 0, - VHOST_NET_VQ_TX = 1, - VHOST_NET_VQ_MAX = 2, -}; - -struct vhost_net_ubuf_ref { - atomic_t refcount; - wait_queue_head_t wait; - struct vhost_virtqueue *vq; - struct callback_head rcu; -}; - -struct vhost_net_buf { - void **queue; - int tail; - int head; -}; - -struct vhost_net_virtqueue { - struct vhost_virtqueue vq; - size_t vhost_hlen; - size_t sock_hlen; - int upend_idx; - int done_idx; - int batched_xdp; - struct ubuf_info_msgzc *ubuf_info; - struct vhost_net_ubuf_ref *ubufs; - struct ptr_ring *rx_ring; - struct vhost_net_buf rxq; - struct xdp_buff *xdp; -}; - -struct vhost_net { - struct vhost_dev dev; - struct vhost_net_virtqueue vqs[2]; - struct vhost_poll poll[2]; - unsigned int tx_packets; - unsigned int tx_zcopy_err; - bool tx_flush; - struct page_frag_cache pf_cache; -}; - -enum netdev_xdp_rx_metadata { - NETDEV_XDP_RX_METADATA_TIMESTAMP = 1, - NETDEV_XDP_RX_METADATA_HASH = 2, - NETDEV_XDP_RX_METADATA_VLAN_TAG = 4, -}; - -enum netdev_xsk_flags { - NETDEV_XSK_FLAGS_TX_TIMESTAMP = 1, - NETDEV_XSK_FLAGS_TX_CHECKSUM = 2, -}; - -enum netdev_qstats_scope { - NETDEV_QSTATS_SCOPE_QUEUE = 1, -}; - -enum { - NETDEV_A_DEV_IFINDEX = 1, - NETDEV_A_DEV_PAD = 2, - NETDEV_A_DEV_XDP_FEATURES = 3, - NETDEV_A_DEV_XDP_ZC_MAX_SEGS = 4, - NETDEV_A_DEV_XDP_RX_METADATA_FEATURES = 5, - NETDEV_A_DEV_XSK_FEATURES = 6, - __NETDEV_A_DEV_MAX = 7, - NETDEV_A_DEV_MAX = 6, -}; - -enum { - NETDEV_A_PAGE_POOL_ID = 1, - NETDEV_A_PAGE_POOL_IFINDEX = 2, - NETDEV_A_PAGE_POOL_NAPI_ID = 3, - NETDEV_A_PAGE_POOL_INFLIGHT = 4, - NETDEV_A_PAGE_POOL_INFLIGHT_MEM = 5, - NETDEV_A_PAGE_POOL_DETACH_TIME = 6, - NETDEV_A_PAGE_POOL_DMABUF = 7, - __NETDEV_A_PAGE_POOL_MAX = 8, - NETDEV_A_PAGE_POOL_MAX = 7, -}; - -enum { - NETDEV_A_NAPI_IFINDEX = 1, - NETDEV_A_NAPI_ID = 2, - NETDEV_A_NAPI_IRQ = 3, - NETDEV_A_NAPI_PID = 4, - __NETDEV_A_NAPI_MAX = 5, - NETDEV_A_NAPI_MAX = 4, -}; - -enum { - NETDEV_A_QUEUE_ID = 1, - NETDEV_A_QUEUE_IFINDEX = 2, - NETDEV_A_QUEUE_TYPE = 3, - NETDEV_A_QUEUE_NAPI_ID = 4, - NETDEV_A_QUEUE_DMABUF = 5, - __NETDEV_A_QUEUE_MAX = 6, - NETDEV_A_QUEUE_MAX = 5, -}; - -enum { - NETDEV_A_QSTATS_IFINDEX = 1, - NETDEV_A_QSTATS_QUEUE_TYPE = 2, - NETDEV_A_QSTATS_QUEUE_ID = 3, - NETDEV_A_QSTATS_SCOPE = 4, - NETDEV_A_QSTATS_RX_PACKETS = 8, - NETDEV_A_QSTATS_RX_BYTES = 9, - NETDEV_A_QSTATS_TX_PACKETS = 10, - NETDEV_A_QSTATS_TX_BYTES = 11, - NETDEV_A_QSTATS_RX_ALLOC_FAIL = 12, - NETDEV_A_QSTATS_RX_HW_DROPS = 13, - NETDEV_A_QSTATS_RX_HW_DROP_OVERRUNS = 14, - NETDEV_A_QSTATS_RX_CSUM_COMPLETE = 15, - NETDEV_A_QSTATS_RX_CSUM_UNNECESSARY = 16, - NETDEV_A_QSTATS_RX_CSUM_NONE = 17, - NETDEV_A_QSTATS_RX_CSUM_BAD = 18, - NETDEV_A_QSTATS_RX_HW_GRO_PACKETS = 19, - NETDEV_A_QSTATS_RX_HW_GRO_BYTES = 20, - NETDEV_A_QSTATS_RX_HW_GRO_WIRE_PACKETS = 21, - NETDEV_A_QSTATS_RX_HW_GRO_WIRE_BYTES = 22, - NETDEV_A_QSTATS_RX_HW_DROP_RATELIMITS = 23, - NETDEV_A_QSTATS_TX_HW_DROPS = 24, - NETDEV_A_QSTATS_TX_HW_DROP_ERRORS = 25, - NETDEV_A_QSTATS_TX_CSUM_NONE = 26, - NETDEV_A_QSTATS_TX_NEEDS_CSUM = 27, - NETDEV_A_QSTATS_TX_HW_GSO_PACKETS = 28, - NETDEV_A_QSTATS_TX_HW_GSO_BYTES = 29, - NETDEV_A_QSTATS_TX_HW_GSO_WIRE_PACKETS = 30, - NETDEV_A_QSTATS_TX_HW_GSO_WIRE_BYTES = 31, - NETDEV_A_QSTATS_TX_HW_DROP_RATELIMITS = 32, - NETDEV_A_QSTATS_TX_STOP = 33, - NETDEV_A_QSTATS_TX_WAKE = 34, - __NETDEV_A_QSTATS_MAX = 35, - NETDEV_A_QSTATS_MAX = 34, -}; - -enum { - NETDEV_A_DMABUF_IFINDEX = 1, - NETDEV_A_DMABUF_QUEUES = 2, - NETDEV_A_DMABUF_FD = 3, - NETDEV_A_DMABUF_ID = 4, - __NETDEV_A_DMABUF_MAX = 5, - NETDEV_A_DMABUF_MAX = 4, -}; - -enum { - NETDEV_CMD_DEV_GET = 1, - NETDEV_CMD_DEV_ADD_NTF = 2, - NETDEV_CMD_DEV_DEL_NTF = 3, - NETDEV_CMD_DEV_CHANGE_NTF = 4, - NETDEV_CMD_PAGE_POOL_GET = 5, - NETDEV_CMD_PAGE_POOL_ADD_NTF = 6, - NETDEV_CMD_PAGE_POOL_DEL_NTF = 7, - NETDEV_CMD_PAGE_POOL_CHANGE_NTF = 8, - NETDEV_CMD_PAGE_POOL_STATS_GET = 9, - NETDEV_CMD_QUEUE_GET = 10, - NETDEV_CMD_NAPI_GET = 11, - NETDEV_CMD_QSTATS_GET = 12, - NETDEV_CMD_BIND_RX = 13, - __NETDEV_CMD_MAX = 14, - NETDEV_CMD_MAX = 13, -}; - -enum { - NETDEV_NLGRP_MGMT = 0, - NETDEV_NLGRP_PAGE_POOL = 1, -}; - -struct netdev_nl_dump_ctx { - long unsigned int ifindex; - unsigned int rxq_idx; - unsigned int txq_idx; - unsigned int napi_id; -}; - -struct dst_cache_pcpu { - long unsigned int refresh_ts; - struct dst_entry *dst; - u32 cookie; - union { - struct in_addr in_saddr; - struct in6_addr in6_saddr; - }; -}; - -enum { - TCA_CSUM_UNSPEC = 0, - TCA_CSUM_PARMS = 1, - TCA_CSUM_TM = 2, - TCA_CSUM_PAD = 3, - __TCA_CSUM_MAX = 4, -}; - -enum { - TCA_CSUM_UPDATE_FLAG_IPV4HDR = 1, - TCA_CSUM_UPDATE_FLAG_ICMP = 2, - TCA_CSUM_UPDATE_FLAG_IGMP = 4, - TCA_CSUM_UPDATE_FLAG_TCP = 8, - TCA_CSUM_UPDATE_FLAG_UDP = 16, - TCA_CSUM_UPDATE_FLAG_UDPLITE = 32, - TCA_CSUM_UPDATE_FLAG_SCTP = 64, -}; - -struct tc_csum { - __u32 index; - __u32 capab; - int action; - int refcnt; - int bindcnt; - __u32 update_flags; -}; - -struct tcf_csum_params { - u32 update_flags; - struct callback_head rcu; -}; - -struct tcf_csum { - struct tc_action common; - struct tcf_csum_params *params; - long: 64; -}; - -enum { - TCA_CHOKE_UNSPEC = 0, - TCA_CHOKE_PARMS = 1, - TCA_CHOKE_STAB = 2, - TCA_CHOKE_MAX_P = 3, - __TCA_CHOKE_MAX = 4, -}; - -struct tc_choke_xstats { - __u32 early; - __u32 pdrop; - __u32 other; - __u32 marked; - __u32 matched; -}; - -struct flow_keys_digest { - u8 data[16]; -}; - -struct choke_sched_data { - u32 limit; - unsigned char flags; - struct red_parms parms; - struct red_vars vars; - struct { - u32 prob_drop; - u32 prob_mark; - u32 forced_drop; - u32 forced_mark; - u32 pdrop; - u32 matched; - } stats; - unsigned int head; - unsigned int tail; - unsigned int tab_mask; - struct sk_buff **tab; -}; - -struct choke_skb_cb { - u8 keys_valid; - struct flow_keys_digest keys; -}; - -struct link_mode_info { - int speed; - u8 lanes; - u8 duplex; -}; - -struct linkmodes_reply_data { - struct ethnl_reply_data base; - struct ethtool_link_ksettings ksettings; - struct ethtool_link_settings *lsettings; - bool peer_empty; -}; - -enum { - ETHTOOL_A_TS_STAT_UNSPEC = 0, - ETHTOOL_A_TS_STAT_TX_PKTS = 1, - ETHTOOL_A_TS_STAT_TX_LOST = 2, - ETHTOOL_A_TS_STAT_TX_ERR = 3, - __ETHTOOL_A_TS_STAT_CNT = 4, - ETHTOOL_A_TS_STAT_MAX = 3, -}; - -struct tsinfo_reply_data { - struct ethnl_reply_data base; - struct kernel_ethtool_ts_info ts_info; - struct ethtool_ts_stats stats; -}; - -struct ethtool_cmis_cdb_rpl_hdr { - u8 rpl_len; - u8 rpl_chk_code; -}; - -struct ethtool_cmis_cdb_rpl { - struct ethtool_cmis_cdb_rpl_hdr hdr; - u8 payload[120]; -}; - -struct cmis_rev_rpl { - u8 rev; -}; - -struct cmis_cdb_advert_rpl { - u8 inst_supported; - u8 read_write_len_ext; - u8 resv1; - u8 resv2; -}; - -struct cmis_password_entry_pl { - __be32 password; -}; - -struct cmis_cdb_query_status_pl { - u16 response_delay; -}; - -struct cmis_cdb_query_status_rpl { - u8 length; - u8 status; -}; - -struct cmis_cdb_module_features_rpl { - u8 resv1[34]; - __be16 max_completion_time; -}; - -struct cmis_wait_for_cond_rpl { - u8 state; -}; - -struct ct_expect_iter_state { - struct seq_net_private p; - unsigned int bucket; -}; - -enum ctnl_timeout_msg_types { - IPCTNL_MSG_TIMEOUT_NEW = 0, - IPCTNL_MSG_TIMEOUT_GET = 1, - IPCTNL_MSG_TIMEOUT_DELETE = 2, - IPCTNL_MSG_TIMEOUT_DEFAULT_SET = 3, - IPCTNL_MSG_TIMEOUT_DEFAULT_GET = 4, - IPCTNL_MSG_TIMEOUT_MAX = 5, -}; - -enum ctattr_timeout { - CTA_TIMEOUT_UNSPEC = 0, - CTA_TIMEOUT_NAME = 1, - CTA_TIMEOUT_L3PROTO = 2, - CTA_TIMEOUT_L4PROTO = 3, - CTA_TIMEOUT_DATA = 4, - CTA_TIMEOUT_USE = 5, - __CTA_TIMEOUT_MAX = 6, -}; - -struct ctnl_timeout { - struct list_head head; - struct list_head free_head; - struct callback_head callback_head; - refcount_t refcnt; - char name[32]; - struct nf_ct_timeout timeout; -}; - -struct nfct_timeout_pernet { - struct list_head nfct_timeout_list; - struct list_head nfct_timeout_freelist; -}; - -enum nft_trace_attributes { - NFTA_TRACE_UNSPEC = 0, - NFTA_TRACE_TABLE = 1, - NFTA_TRACE_CHAIN = 2, - NFTA_TRACE_RULE_HANDLE = 3, - NFTA_TRACE_TYPE = 4, - NFTA_TRACE_VERDICT = 5, - NFTA_TRACE_ID = 6, - NFTA_TRACE_LL_HEADER = 7, - NFTA_TRACE_NETWORK_HEADER = 8, - NFTA_TRACE_TRANSPORT_HEADER = 9, - NFTA_TRACE_IIF = 10, - NFTA_TRACE_IIFTYPE = 11, - NFTA_TRACE_OIF = 12, - NFTA_TRACE_OIFTYPE = 13, - NFTA_TRACE_MARK = 14, - NFTA_TRACE_NFPROTO = 15, - NFTA_TRACE_POLICY = 16, - NFTA_TRACE_PAD = 17, - __NFTA_TRACE_MAX = 18, -}; - -enum nft_rt_keys { - NFT_RT_CLASSID = 0, - NFT_RT_NEXTHOP4 = 1, - NFT_RT_NEXTHOP6 = 2, - NFT_RT_TCPMSS = 3, - NFT_RT_XFRM = 4, - __NFT_RT_MAX = 5, -}; - -enum nft_rt_attributes { - NFTA_RT_UNSPEC = 0, - NFTA_RT_DREG = 1, - NFTA_RT_KEY = 2, - __NFTA_RT_MAX = 3, -}; - -struct nft_rt { - enum nft_rt_keys key: 8; - u8 dreg; -}; - -enum nft_ct_keys { - NFT_CT_STATE = 0, - NFT_CT_DIRECTION = 1, - NFT_CT_STATUS = 2, - NFT_CT_MARK = 3, - NFT_CT_SECMARK = 4, - NFT_CT_EXPIRATION = 5, - NFT_CT_HELPER = 6, - NFT_CT_L3PROTOCOL = 7, - NFT_CT_SRC = 8, - NFT_CT_DST = 9, - NFT_CT_PROTOCOL = 10, - NFT_CT_PROTO_SRC = 11, - NFT_CT_PROTO_DST = 12, - NFT_CT_LABELS = 13, - NFT_CT_PKTS = 14, - NFT_CT_BYTES = 15, - NFT_CT_AVGPKT = 16, - NFT_CT_ZONE = 17, - NFT_CT_EVENTMASK = 18, - NFT_CT_SRC_IP = 19, - NFT_CT_DST_IP = 20, - NFT_CT_SRC_IP6 = 21, - NFT_CT_DST_IP6 = 22, - NFT_CT_ID = 23, - __NFT_CT_MAX = 24, -}; - -enum nft_ct_attributes { - NFTA_CT_UNSPEC = 0, - NFTA_CT_DREG = 1, - NFTA_CT_KEY = 2, - NFTA_CT_DIRECTION = 3, - NFTA_CT_SREG = 4, - __NFTA_CT_MAX = 5, -}; - -enum nft_ct_helper_attributes { - NFTA_CT_HELPER_UNSPEC = 0, - NFTA_CT_HELPER_NAME = 1, - NFTA_CT_HELPER_L3PROTO = 2, - NFTA_CT_HELPER_L4PROTO = 3, - __NFTA_CT_HELPER_MAX = 4, -}; - -enum nft_ct_timeout_timeout_attributes { - NFTA_CT_TIMEOUT_UNSPEC = 0, - NFTA_CT_TIMEOUT_L3PROTO = 1, - NFTA_CT_TIMEOUT_L4PROTO = 2, - NFTA_CT_TIMEOUT_DATA = 3, - __NFTA_CT_TIMEOUT_MAX = 4, -}; - -enum nft_ct_expectation_attributes { - NFTA_CT_EXPECT_UNSPEC = 0, - NFTA_CT_EXPECT_L3PROTO = 1, - NFTA_CT_EXPECT_L4PROTO = 2, - NFTA_CT_EXPECT_DPORT = 3, - NFTA_CT_EXPECT_TIMEOUT = 4, - NFTA_CT_EXPECT_SIZE = 5, - __NFTA_CT_EXPECT_MAX = 6, -}; - -struct nft_ct { - enum nft_ct_keys key: 8; - enum ip_conntrack_dir dir: 8; - u8 len; - union { - u8 dreg; - u8 sreg; - }; -}; - -struct nft_ct_helper_obj { - struct nf_conntrack_helper *helper4; - struct nf_conntrack_helper *helper6; - u8 l4proto; -}; - -struct nft_ct_timeout_obj { - struct nf_ct_timeout *timeout; - u8 l4proto; -}; - -struct nft_ct_expect_obj { - u16 l3num; - __be16 dport; - u8 l4proto; - u8 size; - u32 timeout; -}; - -enum { - IPT_TTL_SET = 0, - IPT_TTL_INC = 1, - IPT_TTL_DEC = 2, -}; - -struct ipt_TTL_info { - __u8 mode; - __u8 ttl; -}; - -enum { - IP6T_HL_SET = 0, - IP6T_HL_INC = 1, - IP6T_HL_DEC = 2, -}; - -struct ip6t_HL_info { - __u8 mode; - __u8 hop_limit; -}; - -struct xt_tcp { - __u16 spts[2]; - __u16 dpts[2]; - __u8 option; - __u8 flg_mask; - __u8 flg_cmp; - __u8 invflags; -}; - -struct xt_tcpmss_info { - __u16 mss; -}; - -struct xt_mac_info { - unsigned char srcaddr[6]; - int invert; -}; - -enum { - XT_STRING_FLAG_INVERT = 1, - XT_STRING_FLAG_IGNORECASE = 2, -}; - -struct xt_string_info { - __u16 from_offset; - __u16 to_offset; - char algo[16]; - char pattern[128]; - __u8 patlen; - union { - struct { - __u8 invert; - } v0; - struct { - __u8 flags; - } v1; - } u; - struct ts_config *config; -}; - -enum { - IP_VS_CONN_F_TUNNEL_TYPE_IPIP = 0, - IP_VS_CONN_F_TUNNEL_TYPE_GUE = 1, - IP_VS_CONN_F_TUNNEL_TYPE_GRE = 2, - IP_VS_CONN_F_TUNNEL_TYPE_MAX = 3, -}; - -enum { - IP_VS_RT_MODE_LOCAL = 1, - IP_VS_RT_MODE_NON_LOCAL = 2, - IP_VS_RT_MODE_RDR = 4, - IP_VS_RT_MODE_CONNECT = 8, - IP_VS_RT_MODE_KNOWN_NH = 16, - IP_VS_RT_MODE_TUNNEL = 32, -}; - -typedef struct sock * (*udp_lookup_t)(const struct sk_buff *, __be16, __be16); - -typedef struct sk_buff * (*gro_receive_sk_t)(struct sock *, struct list_head *, struct sk_buff *); - -struct pimreghdr { - __u8 type; - __u8 reserved; - __be16 csum; - __be32 flags; -}; - -typedef short unsigned int vifi_t; - -struct vifctl { - vifi_t vifc_vifi; - unsigned char vifc_flags; - unsigned char vifc_threshold; - unsigned int vifc_rate_limit; - union { - struct in_addr vifc_lcl_addr; - int vifc_lcl_ifindex; - }; - struct in_addr vifc_rmt_addr; -}; - -struct mfcctl { - struct in_addr mfcc_origin; - struct in_addr mfcc_mcastgrp; - vifi_t mfcc_parent; - unsigned char mfcc_ttls[32]; - unsigned int mfcc_pkt_cnt; - unsigned int mfcc_byte_cnt; - unsigned int mfcc_wrong_if; - int mfcc_expire; -}; - -struct sioc_sg_req { - struct in_addr src; - struct in_addr grp; - long unsigned int pktcnt; - long unsigned int bytecnt; - long unsigned int wrong_if; -}; - -struct sioc_vif_req { - vifi_t vifi; - long unsigned int icount; - long unsigned int ocount; - long unsigned int ibytes; - long unsigned int obytes; -}; - -struct igmpmsg { - __u32 unused1; - __u32 unused2; - unsigned char im_msgtype; - unsigned char im_mbz; - unsigned char im_vif; - unsigned char im_vif_hi; - struct in_addr im_src; - struct in_addr im_dst; -}; - -enum { - IPMRA_TABLE_UNSPEC = 0, - IPMRA_TABLE_ID = 1, - IPMRA_TABLE_CACHE_RES_QUEUE_LEN = 2, - IPMRA_TABLE_MROUTE_REG_VIF_NUM = 3, - IPMRA_TABLE_MROUTE_DO_ASSERT = 4, - IPMRA_TABLE_MROUTE_DO_PIM = 5, - IPMRA_TABLE_VIFS = 6, - IPMRA_TABLE_MROUTE_DO_WRVIFWHOLE = 7, - __IPMRA_TABLE_MAX = 8, -}; - -enum { - IPMRA_VIF_UNSPEC = 0, - IPMRA_VIF = 1, - __IPMRA_VIF_MAX = 2, -}; - -enum { - IPMRA_VIFA_UNSPEC = 0, - IPMRA_VIFA_IFINDEX = 1, - IPMRA_VIFA_VIF_ID = 2, - IPMRA_VIFA_FLAGS = 3, - IPMRA_VIFA_BYTES_IN = 4, - IPMRA_VIFA_BYTES_OUT = 5, - IPMRA_VIFA_PACKETS_IN = 6, - IPMRA_VIFA_PACKETS_OUT = 7, - IPMRA_VIFA_LOCAL_ADDR = 8, - IPMRA_VIFA_REMOTE_ADDR = 9, - IPMRA_VIFA_PAD = 10, - __IPMRA_VIFA_MAX = 11, -}; - -enum { - IPMRA_CREPORT_UNSPEC = 0, - IPMRA_CREPORT_MSGTYPE = 1, - IPMRA_CREPORT_VIF_ID = 2, - IPMRA_CREPORT_SRC_ADDR = 3, - IPMRA_CREPORT_DST_ADDR = 4, - IPMRA_CREPORT_PKT = 5, - IPMRA_CREPORT_TABLE = 6, - __IPMRA_CREPORT_MAX = 7, -}; - -struct mfc_cache_cmp_arg { - __be32 mfc_mcastgrp; - __be32 mfc_origin; -}; - -struct mfc_cache { - struct mr_mfc _c; - union { - struct { - __be32 mfc_mcastgrp; - __be32 mfc_origin; - }; - struct mfc_cache_cmp_arg cmparg; - }; -}; - -struct icmp_filter { - __u32 data; -}; - -struct raw_sock { - struct inet_sock inet; - struct icmp_filter filter; - u32 ipmr_table; -}; - -struct ipmr_result { - struct mr_table *mrt; -}; - -struct arpt_mangle { - char src_devaddr[16]; - char tgt_devaddr[16]; - union { - struct in_addr src_ip; - } u_s; - union { - struct in_addr tgt_ip; - } u_t; - __u8 flags; - int target; -}; - -enum fib6_walk_state { - FWS_S = 0, - FWS_L = 1, - FWS_R = 2, - FWS_C = 3, - FWS_U = 4, -}; - -struct fib6_walker { - struct list_head lh; - struct fib6_node *root; - struct fib6_node *node; - struct fib6_info *leaf; - enum fib6_walk_state state; - unsigned int skip; - unsigned int count; - unsigned int skip_in_node; - int (*func)(struct fib6_walker *); - void *args; -}; - -struct fib6_entry_notifier_info { - struct fib_notifier_info info; - struct fib6_info *rt; - unsigned int nsiblings; -}; - -struct ipv6_route_iter { - struct seq_net_private p; - struct fib6_walker w; - loff_t skip; - struct fib6_table *tbl; - int sernum; -}; - -struct bpf_iter__ipv6_route { - union { - struct bpf_iter_meta *meta; - }; - union { - struct fib6_info *rt; - }; -}; - -struct fib6_cleaner { - struct fib6_walker w; - struct net *net; - int (*func)(struct fib6_info *, void *); - int sernum; - void *arg; - bool skip_notify; -}; - -enum { - FIB6_NO_SERNUM_CHANGE = 0, -}; - -struct fib6_dump_arg { - struct net *net; - struct notifier_block *nb; - struct netlink_ext_ack *extack; -}; - -struct fib6_nh_pcpu_arg { - struct fib6_info *from; - const struct fib6_table *table; -}; - -struct lookup_args { - int offset; - const struct in6_addr *addr; -}; - -struct in6_flowlabel_req { - struct in6_addr flr_dst; - __be32 flr_label; - __u8 flr_action; - __u8 flr_share; - __u16 flr_flags; - __u16 flr_expires; - __u16 flr_linger; - __u32 __flr_pad; -}; - -struct ip6fl_iter_state { - struct seq_net_private p; - struct pid_namespace *pid_ns; - int bucket; -}; - -struct ip6t_rt { - __u32 rt_type; - __u32 segsleft[2]; - __u32 hdrlen; - __u8 flags; - __u8 invflags; - struct in6_addr addrs[16]; - __u8 addrnr; -}; - -struct packet_diag_req { - __u8 sdiag_family; - __u8 sdiag_protocol; - __u16 pad; - __u32 pdiag_ino; - __u32 pdiag_show; - __u32 pdiag_cookie[2]; -}; - -struct packet_diag_msg { - __u8 pdiag_family; - __u8 pdiag_type; - __u16 pdiag_num; - __u32 pdiag_ino; - __u32 pdiag_cookie[2]; -}; - -enum { - PACKET_DIAG_INFO = 0, - PACKET_DIAG_MCLIST = 1, - PACKET_DIAG_RX_RING = 2, - PACKET_DIAG_TX_RING = 3, - PACKET_DIAG_FANOUT = 4, - PACKET_DIAG_UID = 5, - PACKET_DIAG_MEMINFO = 6, - PACKET_DIAG_FILTER = 7, - __PACKET_DIAG_MAX = 8, -}; - -struct packet_diag_info { - __u32 pdi_index; - __u32 pdi_version; - __u32 pdi_reserve; - __u32 pdi_copy_thresh; - __u32 pdi_tstamp; - __u32 pdi_flags; -}; - -struct packet_diag_mclist { - __u32 pdmc_index; - __u32 pdmc_count; - __u16 pdmc_type; - __u16 pdmc_alen; - __u8 pdmc_addr[32]; -}; - -struct packet_diag_ring { - __u32 pdr_block_size; - __u32 pdr_block_nr; - __u32 pdr_frame_size; - __u32 pdr_frame_nr; - __u32 pdr_retire_tmo; - __u32 pdr_sizeof_priv; - __u32 pdr_features; -}; - -struct brport_attribute { - struct attribute attr; - ssize_t (*show)(struct net_bridge_port *, char *); - int (*store)(struct net_bridge_port *, long unsigned int); - int (*store_raw)(struct net_bridge_port *, char *); -}; - -struct ebt_replace { - char name[32]; - unsigned int valid_hooks; - unsigned int nentries; - unsigned int entries_size; - struct ebt_entries *hook_entry[6]; - unsigned int num_counters; - struct ebt_counter *counters; - char *entries; -}; - -struct ebt_entry_match { - union { - struct { - char name[31]; - __u8 revision; - }; - struct xt_match *match; - } u; - unsigned int match_size; - long: 0; - unsigned char data[0]; -}; - -struct ebt_entry_watcher { - union { - struct { - char name[31]; - __u8 revision; - }; - struct xt_target *watcher; - } u; - unsigned int watcher_size; - long: 0; - unsigned char data[0]; -}; - -struct ebt_entry_target { - union { - struct { - char name[31]; - __u8 revision; - }; - struct xt_target *target; - } u; - unsigned int target_size; - long: 0; - unsigned char data[0]; -}; - -struct ebt_standard_target { - struct ebt_entry_target target; - int verdict; -}; - -struct ebt_pernet { - struct list_head tables; -}; - -struct ebt_template { - struct list_head list; - char name[32]; - struct module *owner; - int (*table_init)(struct net *); -}; - -struct ebt_cl_stack { - struct ebt_chainstack cs; - int from; - unsigned int hookmask; -}; - -struct ebt_log_info { - __u8 loglevel; - __u8 prefix[30]; - __u32 bitmask; -}; - -struct tcpudphdr { - __be16 src; - __be16 dst; -}; - -struct sctp_reset_streams { - sctp_assoc_t srs_assoc_id; - uint16_t srs_flags; - uint16_t srs_number_streams; - uint16_t srs_stream_list[0]; -}; - -struct sctp_add_streams { - sctp_assoc_t sas_assoc_id; - uint16_t sas_instrms; - uint16_t sas_outstrms; -}; - -enum { - SCTP_STRRESET_NOTHING_TO_DO = 0, - SCTP_STRRESET_PERFORMED = 1, - SCTP_STRRESET_DENIED = 2, - SCTP_STRRESET_ERR_WRONG_SSN = 3, - SCTP_STRRESET_ERR_IN_PROGRESS = 4, - SCTP_STRRESET_ERR_BAD_SEQNO = 5, - SCTP_STRRESET_IN_PROGRESS = 6, -}; - -enum { - dns_key_data = 0, - dns_key_error = 1, -}; - -struct sw_flow_match { - struct sw_flow_key *key; - struct sw_flow_key_range range; - struct sw_flow_mask *mask; -}; - -struct mask_count { - int index; - u64 counter; -}; - -struct secondary_data { - struct task_struct *task; - long int status; -}; - -enum kvm_bus { - KVM_MMIO_BUS = 0, - KVM_PIO_BUS = 1, - KVM_VIRTIO_CCW_NOTIFY_BUS = 2, - KVM_FAST_MMIO_BUS = 3, - KVM_NR_BUSES = 4, -}; - -enum ipi_msg_type { - IPI_RESCHEDULE = 0, - IPI_CALL_FUNC = 1, - IPI_CPU_STOP = 2, - IPI_CPU_STOP_NMI = 3, - IPI_TIMER = 4, - IPI_IRQ_WORK = 5, - NR_IPI = 6, - IPI_CPU_BACKTRACE = 6, - IPI_KGDB_ROUNDUP = 7, - MAX_IPI = 8, -}; - -struct pvclock_vcpu_stolen_time { - __le32 revision; - __le32 attributes; - __le64 stolen_time; - u8 padding[48]; -}; - -struct pv_time_stolen_time_region { - struct pvclock_vcpu_stolen_time *kaddr; -}; - -struct page_change_data { - pgprot_t set_mask; - pgprot_t clear_mask; -}; - -struct sha1_ce_state { - struct sha1_state sst; - u32 finalize; -}; - -struct aesbs_ctx { - u8 rk[1696]; - int rounds; - long: 64; -}; - -struct aesbs_cbc_ctr_ctx { - struct aesbs_ctx key; - u32 enc[60]; -}; - -struct aesbs_xts_ctx { - struct aesbs_ctx key; - u32 twkey[60]; - struct crypto_aes_ctx cts; - long: 64; -}; - -typedef struct { - void *lock; -} class_preempt_t; - -typedef struct { - raw_spinlock_t *lock; -} class_raw_spinlock_irq_t; - -typedef int (*task_call_f)(struct task_struct *, void *); - -struct trace_event_raw_sched_kthread_stop { - struct trace_entry ent; - char comm[16]; - pid_t pid; - char __data[0]; -}; - -struct trace_event_raw_sched_kthread_stop_ret { - struct trace_entry ent; - int ret; - char __data[0]; -}; - -struct trace_event_raw_sched_kthread_work_queue_work { - struct trace_entry ent; - void *work; - void *function; - void *worker; - char __data[0]; -}; - -struct trace_event_raw_sched_kthread_work_execute_start { - struct trace_entry ent; - void *work; - void *function; - char __data[0]; -}; - -struct trace_event_raw_sched_kthread_work_execute_end { - struct trace_entry ent; - void *work; - void *function; - char __data[0]; -}; - -struct trace_event_raw_sched_wakeup_template { - struct trace_entry ent; - char comm[16]; - pid_t pid; - int prio; - int target_cpu; - char __data[0]; -}; - -struct trace_event_raw_sched_switch { - struct trace_entry ent; - char prev_comm[16]; - pid_t prev_pid; - int prev_prio; - long int prev_state; - char next_comm[16]; - pid_t next_pid; - int next_prio; - char __data[0]; -}; - -struct trace_event_raw_sched_migrate_task { - struct trace_entry ent; - char comm[16]; - pid_t pid; - int prio; - int orig_cpu; - int dest_cpu; - char __data[0]; -}; - -struct trace_event_raw_sched_process_template { - struct trace_entry ent; - char comm[16]; - pid_t pid; - int prio; - char __data[0]; -}; - -struct trace_event_raw_sched_process_wait { - struct trace_entry ent; - char comm[16]; - pid_t pid; - int prio; - char __data[0]; -}; - -struct trace_event_raw_sched_process_fork { - struct trace_entry ent; - char parent_comm[16]; - pid_t parent_pid; - char child_comm[16]; - pid_t child_pid; - char __data[0]; -}; - -struct trace_event_raw_sched_process_exec { - struct trace_entry ent; - u32 __data_loc_filename; - pid_t pid; - pid_t old_pid; - char __data[0]; -}; - -struct trace_event_raw_sched_prepare_exec { - struct trace_entry ent; - u32 __data_loc_interp; - u32 __data_loc_filename; - pid_t pid; - u32 __data_loc_comm; - char __data[0]; -}; - -struct trace_event_raw_sched_stat_runtime { - struct trace_entry ent; - char comm[16]; - pid_t pid; - u64 runtime; - char __data[0]; -}; - -struct trace_event_raw_sched_pi_setprio { - struct trace_entry ent; - char comm[16]; - pid_t pid; - int oldprio; - int newprio; - char __data[0]; -}; - -struct trace_event_raw_sched_move_numa { - struct trace_entry ent; - pid_t pid; - pid_t tgid; - pid_t ngid; - int src_cpu; - int src_nid; - int dst_cpu; - int dst_nid; - char __data[0]; -}; - -struct trace_event_raw_sched_numa_pair_template { - struct trace_entry ent; - pid_t src_pid; - pid_t src_tgid; - pid_t src_ngid; - int src_cpu; - int src_nid; - pid_t dst_pid; - pid_t dst_tgid; - pid_t dst_ngid; - int dst_cpu; - int dst_nid; - char __data[0]; -}; - -struct trace_event_raw_sched_wake_idle_without_ipi { - struct trace_entry ent; - int cpu; - char __data[0]; -}; - -struct trace_event_data_offsets_sched_kthread_stop {}; - -struct trace_event_data_offsets_sched_kthread_stop_ret {}; - -struct trace_event_data_offsets_sched_kthread_work_queue_work {}; - -struct trace_event_data_offsets_sched_kthread_work_execute_start {}; - -struct trace_event_data_offsets_sched_kthread_work_execute_end {}; - -struct trace_event_data_offsets_sched_wakeup_template {}; - -struct trace_event_data_offsets_sched_switch {}; - -struct trace_event_data_offsets_sched_migrate_task {}; - -struct trace_event_data_offsets_sched_process_template {}; - -struct trace_event_data_offsets_sched_process_wait {}; - -struct trace_event_data_offsets_sched_process_fork {}; - -struct trace_event_data_offsets_sched_process_exec { - u32 filename; - const void *filename_ptr_; -}; - -struct trace_event_data_offsets_sched_prepare_exec { - u32 interp; - const void *interp_ptr_; - u32 filename; - const void *filename_ptr_; - u32 comm; - const void *comm_ptr_; -}; - -struct trace_event_data_offsets_sched_stat_runtime {}; - -struct trace_event_data_offsets_sched_pi_setprio {}; - -struct trace_event_data_offsets_sched_move_numa {}; - -struct trace_event_data_offsets_sched_numa_pair_template {}; - -struct trace_event_data_offsets_sched_wake_idle_without_ipi {}; - -typedef void (*btf_trace_sched_kthread_stop)(void *, struct task_struct *); - -typedef void (*btf_trace_sched_kthread_stop_ret)(void *, int); - -typedef void (*btf_trace_sched_kthread_work_queue_work)(void *, struct kthread_worker *, struct kthread_work *); - -typedef void (*btf_trace_sched_kthread_work_execute_start)(void *, struct kthread_work *); - -typedef void (*btf_trace_sched_kthread_work_execute_end)(void *, struct kthread_work *, kthread_work_func_t); - -typedef void (*btf_trace_sched_waking)(void *, struct task_struct *); - -typedef void (*btf_trace_sched_wakeup)(void *, struct task_struct *); - -typedef void (*btf_trace_sched_wakeup_new)(void *, struct task_struct *); - -typedef void (*btf_trace_sched_switch)(void *, bool, struct task_struct *, struct task_struct *, unsigned int); - -typedef void (*btf_trace_sched_migrate_task)(void *, struct task_struct *, int); - -typedef void (*btf_trace_sched_process_free)(void *, struct task_struct *); - -typedef void (*btf_trace_sched_process_exit)(void *, struct task_struct *); - -typedef void (*btf_trace_sched_wait_task)(void *, struct task_struct *); - -typedef void (*btf_trace_sched_process_wait)(void *, struct pid *); - -typedef void (*btf_trace_sched_process_fork)(void *, struct task_struct *, struct task_struct *); - -typedef void (*btf_trace_sched_process_exec)(void *, struct task_struct *, pid_t, struct linux_binprm *); - -typedef void (*btf_trace_sched_prepare_exec)(void *, struct task_struct *, struct linux_binprm *); - -typedef void (*btf_trace_sched_stat_runtime)(void *, struct task_struct *, u64); - -typedef void (*btf_trace_sched_pi_setprio)(void *, struct task_struct *, struct task_struct *); - -typedef void (*btf_trace_sched_move_numa)(void *, struct task_struct *, int, int); - -typedef void (*btf_trace_sched_stick_numa)(void *, struct task_struct *, int, struct task_struct *, int); - -typedef void (*btf_trace_sched_swap_numa)(void *, struct task_struct *, int, struct task_struct *, int); - -typedef void (*btf_trace_sched_wake_idle_without_ipi)(void *, int); - -typedef void (*btf_trace_pelt_cfs_tp)(void *, struct cfs_rq *); - -typedef void (*btf_trace_pelt_rt_tp)(void *, struct rq *); - -typedef void (*btf_trace_pelt_dl_tp)(void *, struct rq *); - -typedef void (*btf_trace_pelt_hw_tp)(void *, struct rq *); - -typedef void (*btf_trace_pelt_irq_tp)(void *, struct rq *); - -typedef void (*btf_trace_pelt_se_tp)(void *, struct sched_entity *); - -typedef void (*btf_trace_sched_cpu_capacity_tp)(void *, struct rq *); - -typedef void (*btf_trace_sched_overutilized_tp)(void *, struct root_domain *, bool); - -typedef void (*btf_trace_sched_util_est_cfs_tp)(void *, struct cfs_rq *); - -typedef void (*btf_trace_sched_util_est_se_tp)(void *, struct sched_entity *); - -typedef void (*btf_trace_sched_update_nr_running_tp)(void *, struct rq *, int); - -typedef void (*btf_trace_sched_compute_energy_tp)(void *, struct task_struct *, int, long unsigned int, long unsigned int, long unsigned int); - -struct trace_event_raw_ipi_raise { - struct trace_entry ent; - u32 __data_loc_target_cpus; - const char *reason; - char __data[0]; -}; - -struct trace_event_raw_ipi_send_cpu { - struct trace_entry ent; - unsigned int cpu; - void *callsite; - void *callback; - char __data[0]; -}; - -struct trace_event_raw_ipi_send_cpumask { - struct trace_entry ent; - u32 __data_loc_cpumask; - void *callsite; - void *callback; - char __data[0]; -}; - -struct trace_event_raw_ipi_handler { - struct trace_entry ent; - const char *reason; - char __data[0]; -}; - -struct trace_event_data_offsets_ipi_raise { - u32 target_cpus; - const void *target_cpus_ptr_; -}; - -struct trace_event_data_offsets_ipi_send_cpu {}; - -struct trace_event_data_offsets_ipi_send_cpumask { - u32 cpumask; - const void *cpumask_ptr_; -}; - -struct trace_event_data_offsets_ipi_handler {}; - -typedef void (*btf_trace_ipi_raise)(void *, const struct cpumask *, const char *); - -typedef void (*btf_trace_ipi_send_cpu)(void *, const unsigned int, long unsigned int, void *); - -typedef void (*btf_trace_ipi_send_cpumask)(void *, const struct cpumask *, long unsigned int, void *); - -typedef void (*btf_trace_ipi_entry)(void *, const char *); - -typedef void (*btf_trace_ipi_exit)(void *, const char *); - -struct set_affinity_pending; - -struct migration_arg { - struct task_struct *task; - int dest_cpu; - struct set_affinity_pending *pending; -}; - -struct set_affinity_pending { - refcount_t refs; - unsigned int stop_pending; - struct completion done; - struct cpu_stop_work stop_work; - struct migration_arg arg; -}; - -struct cfs_schedulable_data { - struct task_group *tg; - u64 period; - u64 quota; -}; - -enum { - cpuset = 0, - possible = 1, - fail = 2, -}; - -union cpumask_rcuhead { - cpumask_t cpumask; - struct callback_head rcu; -}; - -struct audit_parent; - -struct audit_watch { - refcount_t count; - dev_t dev; - char *path; - long unsigned int ino; - struct audit_parent *parent; - struct list_head wlist; - struct list_head rules; -}; - -struct audit_parent { - struct list_head watches; - struct fsnotify_mark mark; -}; - -struct bpf_mount_opts { - kuid_t uid; - kgid_t gid; - umode_t mode; - u64 delegate_cmds; - u64 delegate_maps; - u64 delegate_progs; - u64 delegate_attachs; -}; - -enum bpf_lru_list_type { - BPF_LRU_LIST_T_ACTIVE = 0, - BPF_LRU_LIST_T_INACTIVE = 1, - BPF_LRU_LIST_T_FREE = 2, - BPF_LRU_LOCAL_LIST_T_FREE = 3, - BPF_LRU_LOCAL_LIST_T_PENDING = 4, -}; - -struct bpf_queue_stack { - struct bpf_map map; - raw_spinlock_t lock; - u32 head; - u32 tail; - u32 size; - char elements[0]; -}; - -struct bpf_arena { - struct bpf_map map; - u64 user_vm_start; - u64 user_vm_end; - struct vm_struct *kern_vm; - struct maple_tree mt; - struct list_head vma_list; - struct mutex lock; -}; - -struct vma_list { - struct vm_area_struct *vma; - struct list_head head; - refcount_t mmap_count; -}; - -struct bpf_cpumap_val { - __u32 qsize; - union { - int fd; - __u32 id; - } bpf_prog; -}; - -struct xdp_cpumap_stats { - unsigned int redirect; - unsigned int pass; - unsigned int drop; -}; - -struct bpf_cpu_map_entry; - -struct xdp_bulk_queue { - void *q[8]; - struct list_head flush_node; - struct bpf_cpu_map_entry *obj; - unsigned int count; -}; - -struct bpf_cpu_map_entry { - u32 cpu; - int map_id; - struct xdp_bulk_queue *bulkq; - struct ptr_ring *queue; - struct task_struct *kthread; - struct bpf_cpumap_val value; - struct bpf_prog *prog; - struct completion kthread_running; - struct rcu_work free_work; -}; - -struct bpf_cpu_map { - struct bpf_map map; - struct bpf_cpu_map_entry **cpu_map; -}; - -struct swap_slots_cache { - bool lock_initialized; - struct mutex alloc_lock; - swp_entry_t *slots; - int nr; - int cur; - spinlock_t free_lock; - swp_entry_t *slots_ret; - int n_ret; -}; - -enum vmpressure_levels { - VMPRESSURE_LOW = 0, - VMPRESSURE_MEDIUM = 1, - VMPRESSURE_CRITICAL = 2, - VMPRESSURE_NUM_LEVELS = 3, -}; - -enum vmpressure_modes { - VMPRESSURE_NO_PASSTHROUGH = 0, - VMPRESSURE_HIERARCHY = 1, - VMPRESSURE_LOCAL = 2, - VMPRESSURE_NUM_MODES = 3, -}; - -struct vmpressure_event { - struct eventfd_ctx *efd; - enum vmpressure_levels level; - enum vmpressure_modes mode; - struct list_head node; -}; - -struct dentry_stat_t { - long int nr_dentry; - long int nr_unused; - long int age_limit; - long int want_pages; - long int nr_negative; - long int dummy; -}; - -struct external_name { - union { - atomic_t count; - struct callback_head head; - } u; - unsigned char name[0]; -}; - -enum d_walk_ret { - D_WALK_CONTINUE = 0, - D_WALK_QUIT = 1, - D_WALK_NORETRY = 2, - D_WALK_SKIP = 3, -}; - -struct check_mount { - struct vfsmount *mnt; - unsigned int mounted; -}; - -struct select_data { - struct dentry *start; - union { - long int found; - struct dentry *victim; - }; - struct list_head dispose; -}; - -struct proc_fs_opts { - int flag; - const char *str; -}; - -struct fscrypt_key { - __u32 mode; - __u8 raw[64]; - __u32 size; -}; - -struct fscrypt_direct_key { - struct super_block *dk_sb; - struct hlist_node dk_node; - refcount_t dk_refcount; - const struct fscrypt_mode *dk_mode; - struct fscrypt_prepared_key dk_key; - u8 dk_descriptor[8]; - u8 dk_raw[64]; -}; - -struct iomap_folio_state { - spinlock_t state_lock; - unsigned int read_bytes_pending; - atomic_t write_bytes_pending; - long unsigned int state[0]; -}; - -struct iomap_readpage_ctx { - struct folio *cur_folio; - bool cur_folio_in_bio; - struct bio *bio; - struct readahead_control *rac; -}; - -struct fs_disk_quota { - __s8 d_version; - __s8 d_flags; - __u16 d_fieldmask; - __u32 d_id; - __u64 d_blk_hardlimit; - __u64 d_blk_softlimit; - __u64 d_ino_hardlimit; - __u64 d_ino_softlimit; - __u64 d_bcount; - __u64 d_icount; - __s32 d_itimer; - __s32 d_btimer; - __u16 d_iwarns; - __u16 d_bwarns; - __s8 d_itimer_hi; - __s8 d_btimer_hi; - __s8 d_rtbtimer_hi; - __s8 d_padding2; - __u64 d_rtb_hardlimit; - __u64 d_rtb_softlimit; - __u64 d_rtbcount; - __s32 d_rtbtimer; - __u16 d_rtbwarns; - __s16 d_padding3; - char d_padding4[8]; -}; - -struct fs_qfilestat { - __u64 qfs_ino; - __u64 qfs_nblks; - __u32 qfs_nextents; -}; - -typedef struct fs_qfilestat fs_qfilestat_t; - -struct fs_quota_stat { - __s8 qs_version; - __u16 qs_flags; - __s8 qs_pad; - fs_qfilestat_t qs_uquota; - fs_qfilestat_t qs_gquota; - __u32 qs_incoredqs; - __s32 qs_btimelimit; - __s32 qs_itimelimit; - __s32 qs_rtbtimelimit; - __u16 qs_bwarnlimit; - __u16 qs_iwarnlimit; -}; - -struct fs_qfilestatv { - __u64 qfs_ino; - __u64 qfs_nblks; - __u32 qfs_nextents; - __u32 qfs_pad; -}; - -struct fs_quota_statv { - __s8 qs_version; - __u8 qs_pad1; - __u16 qs_flags; - __u32 qs_incoredqs; - struct fs_qfilestatv qs_uquota; - struct fs_qfilestatv qs_gquota; - struct fs_qfilestatv qs_pquota; - __s32 qs_btimelimit; - __s32 qs_itimelimit; - __s32 qs_rtbtimelimit; - __u16 qs_bwarnlimit; - __u16 qs_iwarnlimit; - __u16 qs_rtbwarnlimit; - __u16 qs_pad3; - __u32 qs_pad4; - __u64 qs_pad2[7]; -}; - -struct if_dqblk { - __u64 dqb_bhardlimit; - __u64 dqb_bsoftlimit; - __u64 dqb_curspace; - __u64 dqb_ihardlimit; - __u64 dqb_isoftlimit; - __u64 dqb_curinodes; - __u64 dqb_btime; - __u64 dqb_itime; - __u32 dqb_valid; -}; - -struct if_nextdqblk { - __u64 dqb_bhardlimit; - __u64 dqb_bsoftlimit; - __u64 dqb_curspace; - __u64 dqb_ihardlimit; - __u64 dqb_isoftlimit; - __u64 dqb_curinodes; - __u64 dqb_btime; - __u64 dqb_itime; - __u32 dqb_valid; - __u32 dqb_id; -}; - -struct if_dqinfo { - __u64 dqi_bgrace; - __u64 dqi_igrace; - __u32 dqi_flags; - __u32 dqi_valid; -}; - -typedef u64 compat_u64; - -struct compat_if_dqblk { - compat_u64 dqb_bhardlimit; - compat_u64 dqb_bsoftlimit; - compat_u64 dqb_curspace; - compat_u64 dqb_ihardlimit; - compat_u64 dqb_isoftlimit; - compat_u64 dqb_curinodes; - compat_u64 dqb_btime; - compat_u64 dqb_itime; - compat_uint_t dqb_valid; -}; - -struct fsmap { - __u32 fmr_device; - __u32 fmr_flags; - __u64 fmr_physical; - __u64 fmr_owner; - __u64 fmr_offset; - __u64 fmr_length; - __u64 fmr_reserved[3]; -}; - -struct ext4_fsmap_head { - uint32_t fmh_iflags; - uint32_t fmh_oflags; - unsigned int fmh_count; - unsigned int fmh_entries; - struct ext4_fsmap fmh_keys[2]; -}; - -typedef int (*ext4_fsmap_format_t)(struct ext4_fsmap *, void *); - -struct ext4_getfsmap_info { - struct ext4_fsmap_head *gfi_head; - ext4_fsmap_format_t gfi_formatter; - void *gfi_format_arg; - ext4_fsblk_t gfi_next_fsblk; - u32 gfi_dev; - ext4_group_t gfi_agno; - struct ext4_fsmap gfi_low; - struct ext4_fsmap gfi_high; - struct ext4_fsmap gfi_lastfree; - struct list_head gfi_meta_list; - bool gfi_last; -}; - -struct ext4_getfsmap_dev { - int (*gfd_fn)(struct super_block *, struct ext4_fsmap *, struct ext4_getfsmap_info *); - u32 gfd_dev; -}; - -struct squashfs_dir_entry { - __le16 offset; - __le16 inode_number; - __le16 type; - __le16 size; - char name[0]; -}; - -struct squashfs_dir_header { - __le32 count; - __le32 start_block; - __le32 inode_number; -}; - -struct squashfs_lzo { - void *input; - void *output; -}; - -struct __fat_dirent { - long int d_ino; - __kernel_off_t d_off; - short unsigned int d_reclen; - char d_name[256]; -}; - -enum { - PARSE_INVALID = 1, - PARSE_NOT_LONGNAME = 2, - PARSE_EOF = 3, -}; - -struct fat_ioctl_filldir_callback { - struct dir_context ctx; - void *dirent; - int result; - const char *longname; - int long_len; - const char *shortname; - int short_len; -}; - -enum pnfs_notify_deviceid_type4 { - NOTIFY_DEVICEID4_CHANGE = 2, - NOTIFY_DEVICEID4_DELETE = 4, -}; - -struct nfs4_get_lease_time_args { - struct nfs4_sequence_args la_seq_args; -}; - -struct nfs4_get_lease_time_res { - struct nfs4_sequence_res lr_seq_res; - struct nfs_fsinfo *lr_fsinfo; -}; - -struct nfs4_getdeviceinfo_args { - struct nfs4_sequence_args seq_args; - struct pnfs_device *pdev; - __u32 notify_types; -}; - -struct nfs4_getdeviceinfo_res { - struct nfs4_sequence_res seq_res; - struct pnfs_device *pdev; - __u32 notification; -}; - -struct nfs_lock_args { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fh; - struct file_lock *fl; - struct nfs_seqid *lock_seqid; - nfs4_stateid lock_stateid; - struct nfs_seqid *open_seqid; - nfs4_stateid open_stateid; - struct nfs_lowner lock_owner; - unsigned char block: 1; - unsigned char reclaim: 1; - unsigned char new_lock: 1; - unsigned char new_lock_owner: 1; -}; - -struct nfs_lock_res { - struct nfs4_sequence_res seq_res; - nfs4_stateid stateid; - struct nfs_seqid *lock_seqid; - struct nfs_seqid *open_seqid; -}; - -struct nfs_locku_args { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fh; - struct file_lock *fl; - struct nfs_seqid *seqid; - nfs4_stateid stateid; -}; - -struct nfs_locku_res { - struct nfs4_sequence_res seq_res; - nfs4_stateid stateid; - struct nfs_seqid *seqid; -}; - -struct nfs_lockt_args { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fh; - struct file_lock *fl; - struct nfs_lowner lock_owner; -}; - -struct nfs_lockt_res { - struct nfs4_sequence_res seq_res; - struct file_lock *denied; -}; - -struct nfs_release_lockowner_args { - struct nfs4_sequence_args seq_args; - struct nfs_lowner lock_owner; -}; - -struct nfs_release_lockowner_res { - struct nfs4_sequence_res seq_res; -}; - -struct nfs_setattrargs { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fh; - nfs4_stateid stateid; - struct iattr *iap; - const struct nfs_server *server; - const u32 *bitmask; - const struct nfs4_label *label; -}; - -enum nfs4_acl_type { - NFS4ACL_NONE = 0, - NFS4ACL_ACL = 1, - NFS4ACL_DACL = 2, - NFS4ACL_SACL = 3, -}; - -struct nfs_setaclargs { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fh; - enum nfs4_acl_type acl_type; - size_t acl_len; - struct page **acl_pages; -}; - -struct nfs_setaclres { - struct nfs4_sequence_res seq_res; -}; - -struct nfs_getaclargs { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fh; - enum nfs4_acl_type acl_type; - size_t acl_len; - struct page **acl_pages; -}; - -struct nfs_getaclres { - struct nfs4_sequence_res seq_res; - enum nfs4_acl_type acl_type; - size_t acl_len; - size_t acl_data_offset; - int acl_flags; - struct page *acl_scratch; -}; - -struct nfs_setattrres { - struct nfs4_sequence_res seq_res; - struct nfs_fattr *fattr; - const struct nfs_server *server; -}; - -typedef u64 clientid4; - -struct nfs4_accessargs { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *fh; - const u32 *bitmask; - u32 access; -}; - -struct nfs4_accessres { - struct nfs4_sequence_res seq_res; - const struct nfs_server *server; - struct nfs_fattr *fattr; - u32 supported; - u32 access; -}; - -struct nfs4_create_arg { - struct nfs4_sequence_args seq_args; - u32 ftype; - union { - struct { - struct page **pages; - unsigned int len; - } symlink; - struct { - u32 specdata1; - u32 specdata2; - } device; - } u; - const struct qstr *name; - const struct nfs_server *server; - const struct iattr *attrs; - const struct nfs_fh *dir_fh; - const u32 *bitmask; - const struct nfs4_label *label; - umode_t umask; -}; - -struct nfs4_create_res { - struct nfs4_sequence_res seq_res; - const struct nfs_server *server; - struct nfs_fh *fh; - struct nfs_fattr *fattr; - struct nfs4_change_info dir_cinfo; -}; - -struct nfs4_fsinfo_arg { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *fh; - const u32 *bitmask; -}; - -struct nfs4_fsinfo_res { - struct nfs4_sequence_res seq_res; - struct nfs_fsinfo *fsinfo; -}; - -struct nfs4_getattr_arg { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *fh; - const u32 *bitmask; -}; - -struct nfs4_getattr_res { - struct nfs4_sequence_res seq_res; - const struct nfs_server *server; - struct nfs_fattr *fattr; -}; - -struct nfs4_link_arg { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *fh; - const struct nfs_fh *dir_fh; - const struct qstr *name; - const u32 *bitmask; -}; - -struct nfs4_link_res { - struct nfs4_sequence_res seq_res; - const struct nfs_server *server; - struct nfs_fattr *fattr; - struct nfs4_change_info cinfo; - struct nfs_fattr *dir_attr; -}; - -struct nfs4_lookup_arg { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *dir_fh; - const struct qstr *name; - const u32 *bitmask; -}; - -struct nfs4_lookup_res { - struct nfs4_sequence_res seq_res; - const struct nfs_server *server; - struct nfs_fattr *fattr; - struct nfs_fh *fh; -}; - -struct nfs4_lookupp_arg { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *fh; - const u32 *bitmask; -}; - -struct nfs4_lookupp_res { - struct nfs4_sequence_res seq_res; - const struct nfs_server *server; - struct nfs_fattr *fattr; - struct nfs_fh *fh; -}; - -struct nfs4_lookup_root_arg { - struct nfs4_sequence_args seq_args; - const u32 *bitmask; -}; - -struct nfs4_pathconf_arg { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *fh; - const u32 *bitmask; -}; - -struct nfs4_pathconf_res { - struct nfs4_sequence_res seq_res; - struct nfs_pathconf *pathconf; -}; - -struct nfs4_readdir_arg { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *fh; - u64 cookie; - nfs4_verifier verifier; - u32 count; - struct page **pages; - unsigned int pgbase; - const u32 *bitmask; - bool plus; -}; - -struct nfs4_readdir_res { - struct nfs4_sequence_res seq_res; - nfs4_verifier verifier; - unsigned int pgbase; -}; - -struct nfs4_readlink { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *fh; - unsigned int pgbase; - unsigned int pglen; - struct page **pages; -}; - -struct nfs4_readlink_res { - struct nfs4_sequence_res seq_res; -}; - -struct nfs4_setclientid { - const nfs4_verifier *sc_verifier; - u32 sc_prog; - unsigned int sc_netid_len; - char sc_netid[6]; - unsigned int sc_uaddr_len; - char sc_uaddr[58]; - struct nfs_client *sc_clnt; - struct rpc_cred *sc_cred; -}; - -struct nfs4_statfs_arg { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *fh; - const u32 *bitmask; -}; - -struct nfs4_statfs_res { - struct nfs4_sequence_res seq_res; - struct nfs_fsstat *fsstat; -}; - -struct nfs4_open_caps { - u32 oa_share_access[1]; - u32 oa_share_deny[1]; - u32 oa_share_access_want[1]; - u32 oa_open_claim[1]; - u32 oa_createmode[1]; -}; - -struct nfs4_server_caps_arg { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fhandle; - const u32 *bitmask; -}; - -struct nfs4_server_caps_res { - struct nfs4_sequence_res seq_res; - u32 attr_bitmask[3]; - u32 exclcreat_bitmask[3]; - u32 acl_bitmask; - u32 has_links; - u32 has_symlinks; - u32 fh_expire_type; - u32 case_insensitive; - u32 case_preserving; - struct nfs4_open_caps open_caps; -}; - -struct nfs4_fs_locations_arg { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *dir_fh; - const struct nfs_fh *fh; - const struct qstr *name; - struct page *page; - const u32 *bitmask; - clientid4 clientid; - unsigned char migration: 1; - unsigned char renew: 1; -}; - -struct nfs4_fs_locations_res { - struct nfs4_sequence_res seq_res; - struct nfs4_fs_locations *fs_locations; - unsigned char migration: 1; - unsigned char renew: 1; -}; - -struct nfs4_secinfo_arg { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *dir_fh; - const struct qstr *name; -}; - -struct nfs4_secinfo_res { - struct nfs4_sequence_res seq_res; - struct nfs4_secinfo_flavors *flavors; -}; - -struct nfs4_fsid_present_arg { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *fh; - clientid4 clientid; - unsigned char renew: 1; -}; - -struct nfs4_fsid_present_res { - struct nfs4_sequence_res seq_res; - struct nfs_fh *fh; - unsigned char renew: 1; -}; - -struct nfs41_state_protection { - u32 how; - struct nfs4_op_map enforce; - struct nfs4_op_map allow; -}; - -struct nfs41_exchange_id_args { - struct nfs_client *client; - nfs4_verifier verifier; - u32 flags; - struct nfs41_state_protection state_protect; -}; - -struct nfs41_bind_conn_to_session_args { - struct nfs_client *client; - struct nfs4_sessionid sessionid; - u32 dir; - bool use_conn_in_rdma_mode; - int retries; -}; - -struct nfs41_bind_conn_to_session_res { - struct nfs4_sessionid sessionid; - u32 dir; - bool use_conn_in_rdma_mode; -}; - -struct nfs41_exchange_id_res { - u64 clientid; - u32 seqid; - u32 flags; - struct nfs41_server_owner *server_owner; - struct nfs41_server_scope *server_scope; - struct nfs41_impl_id *impl_id; - struct nfs41_state_protection state_protect; -}; - -struct nfs41_create_session_args { - struct nfs_client *client; - u64 clientid; - uint32_t seqid; - uint32_t flags; - uint32_t cb_program; - struct nfs4_channel_attrs fc_attrs; - struct nfs4_channel_attrs bc_attrs; -}; - -struct nfs41_create_session_res { - struct nfs4_sessionid sessionid; - uint32_t seqid; - uint32_t flags; - struct nfs4_channel_attrs fc_attrs; - struct nfs4_channel_attrs bc_attrs; -}; - -struct nfs41_reclaim_complete_args { - struct nfs4_sequence_args seq_args; - unsigned char one_fs: 1; -}; - -struct nfs41_reclaim_complete_res { - struct nfs4_sequence_res seq_res; -}; - -struct nfs41_secinfo_no_name_args { - struct nfs4_sequence_args seq_args; - int style; -}; - -struct nfs41_test_stateid_args { - struct nfs4_sequence_args seq_args; - nfs4_stateid stateid; -}; - -struct nfs41_test_stateid_res { - struct nfs4_sequence_res seq_res; - unsigned int status; -}; - -struct nfs41_free_stateid_args { - struct nfs4_sequence_args seq_args; - nfs4_stateid stateid; -}; - -struct nfs41_free_stateid_res { - struct nfs4_sequence_res seq_res; - unsigned int status; -}; - -struct nfs4_cached_acl { - enum nfs4_acl_type type; - int cached; - size_t len; - char data[0]; -}; - -enum nfs4_session_state { - NFS4_SESSION_INITING = 0, - NFS4_SESSION_ESTABLISHED = 1, -}; - -struct nfs4_call_sync_data { - const struct nfs_server *seq_server; - struct nfs4_sequence_args *seq_args; - struct nfs4_sequence_res *seq_res; -}; - -struct nfs4_open_createattrs { - struct nfs4_label *label; - struct iattr *sattr; - const __u32 verf[2]; -}; - -struct nfs4_closedata { - struct inode *inode; - struct nfs4_state *state; - struct nfs_closeargs arg; - struct nfs_closeres res; - struct { - struct nfs4_layoutreturn_args arg; - struct nfs4_layoutreturn_res res; - struct nfs4_xdr_opaque_data ld_private; - u32 roc_barrier; - bool roc; - } lr; - struct nfs_fattr fattr; - long unsigned int timestamp; -}; - -struct nfs4_createdata { - struct rpc_message msg; - struct nfs4_create_arg arg; - struct nfs4_create_res res; - struct nfs_fh fh; - struct nfs_fattr fattr; -}; - -struct nfs4_renewdata { - struct nfs_client *client; - long unsigned int timestamp; -}; - -struct nfs4_delegreturndata { - struct nfs4_delegreturnargs args; - struct nfs4_delegreturnres res; - struct nfs_fh fh; - nfs4_stateid stateid; - long unsigned int timestamp; - struct { - struct nfs4_layoutreturn_args arg; - struct nfs4_layoutreturn_res res; - struct nfs4_xdr_opaque_data ld_private; - u32 roc_barrier; - bool roc; - } lr; - struct nfs4_delegattr sattr; - struct nfs_fattr fattr; - int rpc_status; - struct inode *inode; -}; - -struct nfs4_unlockdata { - struct nfs_locku_args arg; - struct nfs_locku_res res; - struct nfs4_lock_state *lsp; - struct nfs_open_context *ctx; - struct nfs_lock_context *l_ctx; - struct file_lock fl; - struct nfs_server *server; - long unsigned int timestamp; -}; - -struct nfs4_lockdata { - struct nfs_lock_args arg; - struct nfs_lock_res res; - struct nfs4_lock_state *lsp; - struct nfs_open_context *ctx; - struct file_lock fl; - long unsigned int timestamp; - int rpc_status; - int cancelled; - struct nfs_server *server; -}; - -struct nfs4_lock_waiter { - struct inode *inode; - struct nfs_lowner owner; - wait_queue_entry_t wait; -}; - -struct nfs_release_lockowner_data { - struct nfs4_lock_state *lsp; - struct nfs_server *server; - struct nfs_release_lockowner_args args; - struct nfs_release_lockowner_res res; - long unsigned int timestamp; -}; - -struct rpc_bind_conn_calldata { - struct nfs_client *clp; - const struct cred *cred; -}; - -struct nfs41_exchange_id_data { - struct nfs41_exchange_id_res res; - struct nfs41_exchange_id_args args; -}; - -struct nfs4_get_lease_time_data { - struct nfs4_get_lease_time_args *args; - struct nfs4_get_lease_time_res *res; - struct nfs_client *clp; -}; - -struct nfs4_sequence_data { - struct nfs_client *clp; - struct nfs4_sequence_args args; - struct nfs4_sequence_res res; -}; - -struct nfs4_reclaim_complete_data { - struct nfs_client *clp; - struct nfs41_reclaim_complete_args arg; - struct nfs41_reclaim_complete_res res; -}; - -struct nfs_free_stateid_data { - struct nfs_server *server; - struct nfs41_free_stateid_args args; - struct nfs41_free_stateid_res res; -}; - -enum { - RCA4_TYPE_MASK_RDATA_DLG = 0, - RCA4_TYPE_MASK_WDATA_DLG = 1, - RCA4_TYPE_MASK_DIR_DLG = 2, - RCA4_TYPE_MASK_FILE_LAYOUT = 3, - RCA4_TYPE_MASK_BLK_LAYOUT = 4, - RCA4_TYPE_MASK_OBJ_LAYOUT_MIN = 8, - RCA4_TYPE_MASK_OBJ_LAYOUT_MAX = 9, - RCA4_TYPE_MASK_OTHER_LAYOUT_MIN = 12, - RCA4_TYPE_MASK_OTHER_LAYOUT_MAX = 15, -}; - -struct nfs4_layout_stateid { - struct nfs4_stid ls_stid; - struct list_head ls_perclnt; - struct list_head ls_perfile; - spinlock_t ls_lock; - struct list_head ls_layouts; - u32 ls_layout_type; - struct nfsd_file *ls_file; - struct nfsd4_callback ls_recall; - stateid_t ls_recall_sid; - bool ls_recalled; - struct mutex ls_mutex; -}; - -struct bloom_pair { - int entries; - int old_entries; - time64_t swap_time; - int new; - long unsigned int set[8]; -}; - -enum rp_lock { - RP_UNLOCKED = 0, - RP_LOCKED = 1, - RP_UNHASHED = 2, -}; - -struct laundry_time { - time64_t cutoff; - time64_t new_timeo; -}; - -struct smb3_sd { - __u8 Revision; - __u8 Sbz1; - __le16 Control; - __le32 OffsetOwner; - __le32 OffsetGroup; - __le32 OffsetSacl; - __le32 OffsetDacl; -}; - -struct smb3_acl { - u8 AclRevision; - u8 Sbz1; - __le16 AclSize; - __le16 AceCount; - __le16 Sbz2; -}; - -struct owner_group_sids { - struct owner_sid owner; - struct owner_sid group; -}; - -struct smb3_hdr_req { - __le32 ProtocolId; - __le16 StructureSize; - __le16 CreditCharge; - __le16 ChannelSequence; - __le16 Reserved; - __le16 Command; - __le16 CreditRequest; - __le32 Flags; - __le32 NextCommand; - __le64 MessageId; - union { - struct { - __le32 ProcessId; - __le32 TreeId; - } SyncId; - __le64 AsyncId; - } Id; - __le64 SessionId; - __u8 Signature[16]; -}; - -struct smb2_pdu { - struct smb2_hdr hdr; - __le16 StructureSize2; -} __attribute__((packed)); - -struct smb2_tree_connect_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 Flags; - __le16 PathOffset; - __le16 PathLength; - __u8 Buffer[0]; -}; - -struct smb2_tree_connect_rsp { - struct smb2_hdr hdr; - __le16 StructureSize; - __u8 ShareType; - __u8 Reserved; - __le32 ShareFlags; - __le32 Capabilities; - __le32 MaximalAccess; -}; - -struct smb2_tree_disconnect_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 Reserved; -} __attribute__((packed)); - -struct smb2_neg_context { - __le16 ContextType; - __le16 DataLength; - __le32 Reserved; -}; - -struct smb2_preauth_neg_context { - __le16 ContextType; - __le16 DataLength; - __le32 Reserved; - __le16 HashAlgorithmCount; - __le16 SaltLength; - __le16 HashAlgorithms; - __u8 Salt[32]; -} __attribute__((packed)); - -struct smb2_encryption_neg_context { - __le16 ContextType; - __le16 DataLength; - __le32 Reserved; - __le16 CipherCount; - __le16 Ciphers[0]; -} __attribute__((packed)); - -struct smb2_compression_capabilities_context { - __le16 ContextType; - __le16 DataLength; - __le32 Reserved; - __le16 CompressionAlgorithmCount; - __le16 Padding; - __le32 Flags; - __le16 CompressionAlgorithms[3]; - __u16 Pad; -}; - -struct smb2_netname_neg_context { - __le16 ContextType; - __le16 DataLength; - __le32 Reserved; - __le16 NetName[0]; -}; - -struct smb2_signing_capabilities { - __le16 ContextType; - __le16 DataLength; - __le32 Reserved; - __le16 SigningAlgorithmCount; - __le16 SigningAlgorithms[0]; -} __attribute__((packed)); - -struct smb2_posix_neg_context { - __le16 ContextType; - __le16 DataLength; - __le32 Reserved; - __u8 Name[16]; -}; - -struct smb2_negotiate_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 DialectCount; - __le16 SecurityMode; - __le16 Reserved; - __le32 Capabilities; - __u8 ClientGUID[16]; - __le32 NegotiateContextOffset; - __le16 NegotiateContextCount; - __le16 Reserved2; - __le16 Dialects[0]; -} __attribute__((packed)); - -struct smb2_negotiate_rsp { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 SecurityMode; - __le16 DialectRevision; - __le16 NegotiateContextCount; - __u8 ServerGUID[16]; - __le32 Capabilities; - __le32 MaxTransactSize; - __le32 MaxReadSize; - __le32 MaxWriteSize; - __le64 SystemTime; - __le64 ServerStartTime; - __le16 SecurityBufferOffset; - __le16 SecurityBufferLength; - __le32 NegotiateContextOffset; - __u8 Buffer[0]; -}; - -struct smb2_sess_setup_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __u8 Flags; - __u8 SecurityMode; - __le32 Capabilities; - __le32 Channel; - __le16 SecurityBufferOffset; - __le16 SecurityBufferLength; - __le64 PreviousSessionId; - __u8 Buffer[0]; -}; - -struct smb2_sess_setup_rsp { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 SessionFlags; - __le16 SecurityBufferOffset; - __le16 SecurityBufferLength; - __u8 Buffer[0]; -}; - -struct smb2_logoff_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 Reserved; -} __attribute__((packed)); - -struct smb2_close_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 Flags; - __le32 Reserved; - __u64 PersistentFileId; - __u64 VolatileFileId; -}; - -struct smb2_close_rsp { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 Flags; - __le32 Reserved; - union { - struct { - __le64 CreationTime; - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le64 AllocationSize; - __le64 EndOfFile; - __le32 Attributes; - } __attribute__((packed)); - struct { - __le64 CreationTime; - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le64 AllocationSize; - __le64 EndOfFile; - __le32 Attributes; - } __attribute__((packed)) network_open_info; - }; -} __attribute__((packed)); - -struct smb2_read_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __u8 Padding; - __u8 Flags; - __le32 Length; - __le64 Offset; - __u64 PersistentFileId; - __u64 VolatileFileId; - __le32 MinimumCount; - __le32 Channel; - __le32 RemainingBytes; - __le16 ReadChannelInfoOffset; - __le16 ReadChannelInfoLength; - __u8 Buffer[0]; -}; - -struct smb2_write_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 DataOffset; - __le32 Length; - __le64 Offset; - __u64 PersistentFileId; - __u64 VolatileFileId; - __le32 Channel; - __le32 RemainingBytes; - __le16 WriteChannelInfoOffset; - __le16 WriteChannelInfoLength; - __le32 Flags; - __u8 Buffer[0]; -}; - -struct smb2_write_rsp { - struct smb2_hdr hdr; - __le16 StructureSize; - __u8 DataOffset; - __u8 Reserved; - __le32 DataLength; - __le32 DataRemaining; - __u32 Reserved2; - __u8 Buffer[0]; -}; - -struct smb2_flush_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 Reserved1; - __le32 Reserved2; - __u64 PersistentFileId; - __u64 VolatileFileId; -}; - -struct smb2_lock_element { - __le64 Offset; - __le64 Length; - __le32 Flags; - __le32 Reserved; -}; - -struct smb2_lock_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 LockCount; - __le32 LockSequenceNumber; - __u64 PersistentFileId; - __u64 VolatileFileId; - union { - struct smb2_lock_element lock; - struct { - struct {} __empty_locks; - struct smb2_lock_element locks[0]; - }; - }; -}; - -struct smb2_echo_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __u16 Reserved; -} __attribute__((packed)); - -struct smb2_echo_rsp { - struct smb2_hdr hdr; - __le16 StructureSize; - __u16 Reserved; -} __attribute__((packed)); - -struct smb2_query_directory_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __u8 FileInformationClass; - __u8 Flags; - __le32 FileIndex; - __u64 PersistentFileId; - __u64 VolatileFileId; - __le16 FileNameOffset; - __le16 FileNameLength; - __le32 OutputBufferLength; - __u8 Buffer[0]; -}; - -struct smb2_set_info_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __u8 InfoType; - __u8 FileInfoClass; - __le32 BufferLength; - __le16 BufferOffset; - __u16 Reserved; - __le32 AdditionalInformation; - __u64 PersistentFileId; - __u64 VolatileFileId; - __u8 Buffer[0]; -}; - -struct smb2_set_info_rsp { - struct smb2_hdr hdr; - __le16 StructureSize; -} __attribute__((packed)); - -struct smb2_change_notify_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 Flags; - __le32 OutputBufferLength; - __u64 PersistentFileId; - __u64 VolatileFileId; - __le32 CompletionFilter; - __u32 Reserved; -}; - -struct smb2_change_notify_rsp { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 OutputBufferOffset; - __le32 OutputBufferLength; - __u8 Buffer[0]; -}; - -struct create_context { - union { - struct { - __le32 Next; - __le16 NameOffset; - __le16 NameLength; - __le16 Reserved; - __le16 DataOffset; - __le32 DataLength; - }; - struct create_context_hdr hdr; - }; - __u8 Buffer[0]; -}; - -struct smb2_create_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __u8 SecurityFlags; - __u8 RequestedOplockLevel; - __le32 ImpersonationLevel; - __le64 SmbCreateFlags; - __le64 Reserved; - __le32 DesiredAccess; - __le32 FileAttributes; - __le32 ShareAccess; - __le32 CreateDisposition; - __le32 CreateOptions; - __le16 NameOffset; - __le16 NameLength; - __le32 CreateContextsOffset; - __le32 CreateContextsLength; - __u8 Buffer[0]; -}; - -struct create_posix { - struct create_context_hdr ccontext; - __u8 Name[16]; - __le32 Mode; - __u32 Reserved; -}; - -struct create_durable { - struct create_context_hdr ccontext; - __u8 Name[8]; - union { - __u8 Reserved[16]; - struct { - __u64 PersistentFileId; - __u64 VolatileFileId; - } Fid; - } Data; -}; - -struct create_disk_id_rsp { - struct create_context_hdr ccontext; - __u8 Name[8]; - __le64 DiskFileId; - __le64 VolumeId; - __u8 Reserved[16]; -}; - -struct smb2_ioctl_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 Reserved; - __le32 CtlCode; - __u64 PersistentFileId; - __u64 VolatileFileId; - __le32 InputOffset; - __le32 InputCount; - __le32 MaxInputResponse; - __le32 OutputOffset; - __le32 OutputCount; - __le32 MaxOutputResponse; - __le32 Flags; - __le32 Reserved2; - __u8 Buffer[0]; -}; - -struct validate_negotiate_info_req { - __le32 Capabilities; - __u8 Guid[16]; - __le16 SecurityMode; - __le16 DialectCount; - __le16 Dialects[4]; -}; - -struct validate_negotiate_info_rsp { - __le32 Capabilities; - __u8 Guid[16]; - __le16 SecurityMode; - __le16 Dialect; -}; - -struct smb2_query_info_req { - struct smb2_hdr hdr; - __le16 StructureSize; - __u8 InfoType; - __u8 FileInfoClass; - __le32 OutputBufferLength; - __le16 InputBufferOffset; - __u16 Reserved; - __le32 InputBufferLength; - __le32 AdditionalInformation; - __le32 Flags; - __u64 PersistentFileId; - __u64 VolatileFileId; - __u8 Buffer[0]; -}; - -struct smb2_file_eof_info { - __le64 EndOfFile; -}; - -struct smb3_fs_ss_info { - __le32 LogicalBytesPerSector; - __le32 PhysicalBytesPerSectorForAtomicity; - __le32 PhysicalBytesPerSectorForPerf; - __le32 FSEffPhysicalBytesPerSectorForAtomicity; - __le32 Flags; - __le32 ByteOffsetForSectorAlignment; - __le32 ByteOffsetForPartitionAlignment; -}; - -struct smb3_fs_vol_info { - __le64 VolumeCreationTime; - __u32 VolumeSerialNumber; - __le32 VolumeLabelLength; - __u8 SupportsObjects; - __u8 Reserved; - __u8 VolumeLabel[0]; -} __attribute__((packed)); - -struct smb2_oplock_break { - struct smb2_hdr hdr; - __le16 StructureSize; - __u8 OplockLevel; - __u8 Reserved; - __le32 Reserved2; - __u64 PersistentFid; - __u64 VolatileFid; -}; - -struct smb2_lease_ack { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 Reserved; - __le32 Flags; - __u8 LeaseKey[16]; - __le32 LeaseState; - __le64 LeaseDuration; -} __attribute__((packed)); - -struct durable_context_v2 { - __le32 Timeout; - __le32 Flags; - __u64 Reserved; - __u8 CreateGuid[16]; -}; - -struct create_durable_v2 { - struct create_context_hdr ccontext; - __u8 Name[8]; - struct durable_context_v2 dcontext; -}; - -struct durable_reconnect_context_v2 { - struct { - __u64 PersistentFileId; - __u64 VolatileFileId; - } Fid; - __u8 CreateGuid[16]; - __le32 Flags; -} __attribute__((packed)); - -struct create_durable_handle_reconnect_v2 { - struct create_context_hdr ccontext; - __u8 Name[8]; - struct durable_reconnect_context_v2 dcontext; - __u8 Pad[4]; -}; - -struct crt_twarp_ctxt { - struct create_context_hdr ccontext; - __u8 Name[8]; - __le64 Timestamp; -}; - -struct crt_query_id_ctxt { - struct create_context_hdr ccontext; - __u8 Name[8]; -}; - -struct crt_sd_ctxt { - struct create_context_hdr ccontext; - __u8 Name[8]; - struct smb3_sd sd; -}; - -struct compress_ioctl { - __le16 CompressionState; -}; - -struct smb2_posix_info { - __le32 NextEntryOffset; - __u32 Ignored; - __le64 CreationTime; - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le64 EndOfFile; - __le64 AllocationSize; - __le32 DosAttributes; - __le64 Inode; - __le32 DeviceId; - __le32 Zero; - __le32 HardLinks; - __le32 ReparseTag; - __le32 Mode; -} __attribute__((packed)); - -struct smb2_posix_info_parsed { - const struct smb2_posix_info *base; - size_t size; - struct smb_sid owner; - struct smb_sid group; - int name_len; - const u8 *name; -}; - -typedef struct { - __le32 OptimalTransferSize; - __le32 BlockSize; - __le64 TotalBlocks; - __le64 BlocksAvail; - __le64 UserBlocksAvail; - __le64 TotalFileNodes; - __le64 FreeFileNodes; - __le64 FileSysIdentifier; -} FILE_SYSTEM_POSIX_INFO; - -typedef struct { - __le32 NextEntryOffset; - __u32 FileIndex; - __le64 CreationTime; - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le64 EndOfFile; - __le64 AllocationSize; - __le32 ExtFileAttributes; - __le32 FileNameLength; - char FileName[0]; -} FILE_DIRECTORY_INFO; - -struct SMB2_sess_data { - unsigned int xid; - struct cifs_ses *ses; - struct TCP_Server_Info *server; - struct nls_table *nls_cp; - void (*func)(struct SMB2_sess_data *); - int result; - u64 previous_session; - int buf0_type; - struct kvec iov[2]; -}; - -struct rb_node_key { - struct rb_node node; - size_t key; -}; - -struct e_node { - struct rb_node_key start; - struct rb_node_key count; -}; - -typedef __le64 bitmap_ulong; - -struct fuse_file_lock { - uint64_t start; - uint64_t end; - uint32_t type; - uint32_t pid; -}; - -struct fuse_open_in { - uint32_t flags; - uint32_t open_flags; -}; - -struct fuse_flush_in { - uint64_t fh; - uint32_t unused; - uint32_t padding; - uint64_t lock_owner; -}; - -struct fuse_read_in { - uint64_t fh; - uint64_t offset; - uint32_t size; - uint32_t read_flags; - uint64_t lock_owner; - uint32_t flags; - uint32_t padding; -}; - -struct fuse_write_in { - uint64_t fh; - uint64_t offset; - uint32_t size; - uint32_t write_flags; - uint64_t lock_owner; - uint32_t flags; - uint32_t padding; -}; - -struct fuse_write_out { - uint32_t size; - uint32_t padding; -}; - -struct fuse_fsync_in { - uint64_t fh; - uint32_t fsync_flags; - uint32_t padding; -}; - -struct fuse_lk_in { - uint64_t fh; - uint64_t owner; - struct fuse_file_lock lk; - uint32_t lk_flags; - uint32_t padding; -}; - -struct fuse_lk_out { - struct fuse_file_lock lk; -}; - -struct fuse_bmap_in { - uint64_t block; - uint32_t blocksize; - uint32_t padding; -}; - -struct fuse_bmap_out { - uint64_t block; -}; - -struct fuse_poll_in { - uint64_t fh; - uint64_t kh; - uint32_t flags; - uint32_t events; -}; - -struct fuse_poll_out { - uint32_t revents; - uint32_t padding; -}; - -struct fuse_fallocate_in { - uint64_t fh; - uint64_t offset; - uint64_t length; - uint32_t mode; - uint32_t padding; -}; - -struct fuse_lseek_in { - uint64_t fh; - uint64_t offset; - uint32_t whence; - uint32_t padding; -}; - -struct fuse_lseek_out { - uint64_t offset; -}; - -struct fuse_copy_file_range_in { - uint64_t fh_in; - uint64_t off_in; - uint64_t nodeid_out; - uint64_t fh_out; - uint64_t off_out; - uint64_t len; - uint64_t flags; -}; - -struct fuse_io_args { - union { - struct { - struct fuse_read_in in; - u64 attr_ver; - } read; - struct { - struct fuse_write_in in; - struct fuse_write_out out; - bool page_locked; - } write; - }; - struct fuse_args_pages ap; - struct fuse_io_priv *io; - struct fuse_file *ff; -}; - -struct fuse_writepage_args { - struct fuse_io_args ia; - struct rb_node writepages_entry; - struct list_head queue_entry; - struct fuse_writepage_args *next; - struct inode *inode; - struct fuse_sync_bucket *bucket; -}; - -struct fuse_fill_wb_data { - struct fuse_writepage_args *wpa; - struct fuse_file *ff; - struct inode *inode; - struct page **orig_pages; - unsigned int max_pages; -}; - -struct ovl_dir_cache { - long int refcount; - u64 version; - struct list_head entries; - struct rb_root root; -}; - -struct ovl_cache_entry { - unsigned int len; - unsigned int type; - u64 real_ino; - u64 ino; - struct list_head l_node; - struct rb_node node; - struct ovl_cache_entry *next_maybe_whiteout; - bool is_upper; - bool is_whiteout; - bool check_xwhiteout; - char name[0]; -}; - -struct ovl_readdir_data { - struct dir_context ctx; - struct dentry *dentry; - bool is_lowest; - struct rb_root *root; - struct list_head *list; - struct list_head middle; - struct ovl_cache_entry *first_maybe_whiteout; - int count; - int err; - bool is_upper; - bool d_type_supported; - bool in_xwhiteouts_dir; -}; - -struct ovl_dir_file { - bool is_real; - bool is_upper; - struct ovl_dir_cache *cache; - struct list_head *cursor; - struct file *realfile; - struct file *upperfile; -}; - -struct ovl_readdir_translate { - struct dir_context *orig_ctx; - struct ovl_dir_cache *cache; - struct dir_context ctx; - u64 parent_ino; - int fsid; - int xinobits; - bool xinowarn; -}; - -struct charspec { - uint8_t charSetType; - uint8_t charSetInfo[63]; -}; - -typedef uint8_t dstring; - -struct volStructDesc { - uint8_t structType; - uint8_t stdIdent[5]; - uint8_t structVersion; - uint8_t structData[2041]; -}; - -struct kernel_extent_ad { - uint32_t extLength; - uint32_t extLocation; -}; - -struct primaryVolDesc { - struct tag descTag; - __le32 volDescSeqNum; - __le32 primaryVolDescNum; - dstring volIdent[32]; - __le16 volSeqNum; - __le16 maxVolSeqNum; - __le16 interchangeLvl; - __le16 maxInterchangeLvl; - __le32 charSetList; - __le32 maxCharSetList; - dstring volSetIdent[128]; - struct charspec descCharSet; - struct charspec explanatoryCharSet; - struct extent_ad volAbstract; - struct extent_ad volCopyright; - struct regid appIdent; - struct timestamp recordingDateAndTime; - struct regid impIdent; - uint8_t impUse[64]; - __le32 predecessorVolDescSeqLocation; - __le16 flags; - uint8_t reserved[22]; -}; - -struct anchorVolDescPtr { - struct tag descTag; - struct extent_ad mainVolDescSeqExt; - struct extent_ad reserveVolDescSeqExt; - uint8_t reserved[480]; -}; - -struct volDescPtr { - struct tag descTag; - __le32 volDescSeqNum; - struct extent_ad nextVolDescSeqExt; - uint8_t reserved[484]; -}; - -struct partitionDesc { - struct tag descTag; - __le32 volDescSeqNum; - __le16 partitionFlags; - __le16 partitionNumber; - struct regid partitionContents; - uint8_t partitionContentsUse[128]; - __le32 accessType; - __le32 partitionStartingLocation; - __le32 partitionLength; - struct regid impIdent; - uint8_t impUse[128]; - uint8_t reserved[156]; -}; - -struct logicalVolDesc { - struct tag descTag; - __le32 volDescSeqNum; - struct charspec descCharSet; - dstring logicalVolIdent[128]; - __le32 logicalBlockSize; - struct regid domainIdent; - uint8_t logicalVolContentsUse[16]; - __le32 mapTableLength; - __le32 numPartitionMaps; - struct regid impIdent; - uint8_t impUse[128]; - struct extent_ad integritySeqExt; - uint8_t partitionMaps[0]; -}; - -struct genericPartitionMap { - uint8_t partitionMapType; - uint8_t partitionMapLength; - uint8_t partitionMapping[0]; -}; - -struct genericPartitionMap1 { - uint8_t partitionMapType; - uint8_t partitionMapLength; - __le16 volSeqNum; - __le16 partitionNum; -}; - -struct fileSetDesc { - struct tag descTag; - struct timestamp recordingDateAndTime; - __le16 interchangeLvl; - __le16 maxInterchangeLvl; - __le32 charSetList; - __le32 maxCharSetList; - __le32 fileSetNum; - __le32 fileSetDescNum; - struct charspec logicalVolIdentCharSet; - dstring logicalVolIdent[128]; - struct charspec fileSetCharSet; - dstring fileSetIdent[32]; - dstring copyrightFileIdent[32]; - dstring abstractFileIdent[32]; - struct long_ad rootDirectoryICB; - struct regid domainIdent; - struct long_ad nextExt; - struct long_ad streamDirectoryICB; - uint8_t reserved[32]; -}; - -struct partitionHeaderDesc { - struct short_ad unallocSpaceTable; - struct short_ad unallocSpaceBitmap; - struct short_ad partitionIntegrityTable; - struct short_ad freedSpaceTable; - struct short_ad freedSpaceBitmap; - uint8_t reserved[88]; -}; - -struct spaceBitmapDesc { - struct tag descTag; - __le32 numOfBits; - __le32 numOfBytes; - uint8_t bitmap[0]; -}; - -struct logicalVolHeaderDesc { - __le64 uniqueID; - uint8_t reserved[24]; -}; - -struct domainIdentSuffix { - __le16 UDFRevision; - uint8_t domainFlags; - uint8_t reserved[5]; -}; - -struct udfPartitionMap2 { - uint8_t partitionMapType; - uint8_t partitionMapLength; - uint8_t reserved1[2]; - struct regid partIdent; - __le16 volSeqNum; - __le16 partitionNum; -}; - -struct sparablePartitionMap { - uint8_t partitionMapType; - uint8_t partitionMapLength; - uint8_t reserved1[2]; - struct regid partIdent; - __le16 volSeqNum; - __le16 partitionNum; - __le16 packetLength; - uint8_t numSparingTables; - uint8_t reserved2[1]; - __le32 sizeSparingTable; - __le32 locSparingTable[4]; -}; - -struct metadataPartitionMap { - uint8_t partitionMapType; - uint8_t partitionMapLength; - uint8_t reserved1[2]; - struct regid partIdent; - __le16 volSeqNum; - __le16 partitionNum; - __le32 metadataFileLoc; - __le32 metadataMirrorFileLoc; - __le32 metadataBitmapFileLoc; - __le32 allocUnitSize; - __le16 alignUnitSize; - uint8_t flags; - uint8_t reserved2[5]; -}; - -struct virtualAllocationTable20 { - __le16 lengthHeader; - __le16 lengthImpUse; - dstring logicalVolIdent[128]; - __le32 previousVATICBLoc; - __le32 numFiles; - __le32 numDirs; - __le16 minUDFReadRev; - __le16 minUDFWriteRev; - __le16 maxUDFWriteRev; - __le16 reserved; - uint8_t impUse[0]; -}; - -struct udf_vds_record { - uint32_t block; - uint32_t volDescSeqNum; -}; - -struct generic_desc { - struct tag descTag; - __le32 volDescSeqNum; -}; - -enum { - VDS_POS_PRIMARY_VOL_DESC = 0, - VDS_POS_UNALLOC_SPACE_DESC = 1, - VDS_POS_LOGICAL_VOL_DESC = 2, - VDS_POS_IMP_USE_VOL_DESC = 3, - VDS_POS_LENGTH = 4, -}; - -enum { - UDF_MAX_LINKS = 65535, -}; - -struct udf_options { - unsigned int blocksize; - unsigned int session; - unsigned int lastblock; - unsigned int anchor; - unsigned int flags; - umode_t umask; - kgid_t gid; - kuid_t uid; - umode_t fmode; - umode_t dmode; - struct nls_table *nls_map; -}; - -enum { - Opt_novrs = 0, - Opt_nostrict = 1, - Opt_bs = 2, - Opt_unhide___2 = 3, - Opt_undelete = 4, - Opt_noadinicb = 5, - Opt_adinicb = 6, - Opt_shortad = 7, - Opt_longad = 8, - Opt_gid___8 = 9, - Opt_uid___8 = 10, - Opt_umask___3 = 11, - Opt_session___2 = 12, - Opt_lastblock = 13, - Opt_anchor = 14, - Opt_volume = 15, - Opt_partition = 16, - Opt_fileset = 17, - Opt_rootdir = 18, - Opt_utf8___3 = 19, - Opt_iocharset___4 = 20, - Opt_err___14 = 21, - Opt_fmode = 22, - Opt_dmode___2 = 23, -}; - -struct part_desc_seq_scan_data { - struct udf_vds_record rec; - u32 partnum; -}; - -struct desc_seq_scan_data { - struct udf_vds_record vds[4]; - unsigned int size_part_descs; - unsigned int num_part_descs; - struct part_desc_seq_scan_data *part_descs_loc; -}; - -struct dioattr { - __u32 d_mem; - __u32 d_miniosz; - __u32 d_maxiosz; -}; - -struct getbmapx { - __s64 bmv_offset; - __s64 bmv_block; - __s64 bmv_length; - __s32 bmv_count; - __s32 bmv_entries; - __s32 bmv_iflags; - __s32 bmv_oflags; - __s32 bmv_unused1; - __s32 bmv_unused2; -}; - -struct xfs_fsop_counts { - __u64 freedata; - __u64 freertx; - __u64 freeino; - __u64 allocino; -}; - -struct xfs_fsop_resblks { - __u64 resblks; - __u64 resblks_avail; -}; - -struct xfs_growfs_data { - __u64 newblocks; - __u32 imaxpct; -}; - -struct xfs_growfs_log { - __u32 newblocks; - __u32 isint; -}; - -struct xfs_growfs_rt { - __u64 newblocks; - __u32 extsize; -}; - -typedef struct xfs_growfs_rt xfs_growfs_rt_t; - -struct xfs_fsop_bulkreq { - __u64 *lastip; - __s32 icount; - void *ubuffer; - __s32 *ocount; -}; - -struct xfs_bulk_ireq { - uint64_t ino; - uint32_t flags; - uint32_t icount; - uint32_t ocount; - uint32_t agno; - uint64_t reserved[5]; -}; - -struct xfs_bulkstat_req { - struct xfs_bulk_ireq hdr; - struct xfs_bulkstat bulkstat[0]; -}; - -struct xfs_inumbers_req { - struct xfs_bulk_ireq hdr; - struct xfs_inumbers inumbers[0]; -}; - -struct xfs_error_injection { - __s32 fd; - __s32 errtag; -}; - -typedef struct xfs_error_injection xfs_error_injection_t; - -struct xfs_fs_eofblocks { - __u32 eof_version; - __u32 eof_flags; - uid_t eof_uid; - gid_t eof_gid; - prid_t eof_prid; - __u32 pad32; - __u64 eof_min_file_size; - __u64 pad64[12]; -}; - -struct xfs_swapext { - int64_t sx_version; - int64_t sx_fdtarget; - int64_t sx_fdtmp; - xfs_off_t sx_offset; - xfs_off_t sx_length; - char sx_pad[16]; - struct xfs_bstat sx_stat; -}; - -typedef struct xfs_swapext xfs_swapext_t; - -struct kgetbmap { - __s64 bmv_offset; - __s64 bmv_block; - __s64 bmv_length; - __s32 bmv_oflags; -}; - -struct fsmap_head { - __u32 fmh_iflags; - __u32 fmh_oflags; - __u32 fmh_count; - __u32 fmh_entries; - __u64 fmh_reserved[6]; - struct fsmap fmh_keys[2]; - struct fsmap fmh_recs[0]; -}; - -struct xfs_extent { - xfs_fsblock_t ext_start; - xfs_extlen_t ext_len; -}; - -typedef struct xfs_extent xfs_extent_t; - -struct xfs_extent_32 { - uint64_t ext_start; - uint32_t ext_len; -} __attribute__((packed)); - -typedef struct xfs_extent_32 xfs_extent_32_t; - -struct xfs_extent_64 { - uint64_t ext_start; - uint32_t ext_len; - uint32_t ext_pad; -}; - -typedef struct xfs_extent_64 xfs_extent_64_t; - -struct xfs_efi_log_format { - uint16_t efi_type; - uint16_t efi_size; - uint32_t efi_nextents; - uint64_t efi_id; - xfs_extent_t efi_extents[0]; -}; - -typedef struct xfs_efi_log_format xfs_efi_log_format_t; - -struct xfs_efi_log_format_32 { - uint16_t efi_type; - uint16_t efi_size; - uint32_t efi_nextents; - uint64_t efi_id; - xfs_extent_32_t efi_extents[0]; -}; - -typedef struct xfs_efi_log_format_32 xfs_efi_log_format_32_t; - -struct xfs_efi_log_format_64 { - uint16_t efi_type; - uint16_t efi_size; - uint32_t efi_nextents; - uint64_t efi_id; - xfs_extent_64_t efi_extents[0]; -}; - -typedef struct xfs_efi_log_format_64 xfs_efi_log_format_64_t; - -struct xfs_efd_log_format { - uint16_t efd_type; - uint16_t efd_size; - uint32_t efd_nextents; - uint64_t efd_efi_id; - xfs_extent_t efd_extents[0]; -}; - -typedef struct xfs_efd_log_format xfs_efd_log_format_t; - -struct xfs_efi_log_item { - struct xfs_log_item efi_item; - atomic_t efi_refcount; - atomic_t efi_next_extent; - xfs_efi_log_format_t efi_format; -}; - -struct xfs_efd_log_item { - struct xfs_log_item efd_item; - struct xfs_efi_log_item *efd_efip; - uint efd_next_extent; - xfs_efd_log_format_t efd_format; -}; - -struct btrfs_fid { - u64 objectid; - u64 root_objectid; - u32 gen; - u64 parent_objectid; - u32 parent_gen; - u64 parent_root_objectid; -} __attribute__((packed)); - -struct file_extent_cluster { - u64 start; - u64 end; - u64 boundary[128]; - unsigned int nr; - u64 owning_root; -}; - -struct mapping_tree { - struct rb_root rb_root; - spinlock_t lock; -}; - -enum reloc_stage { - MOVE_DATA_EXTENTS = 0, - UPDATE_DATA_PTRS = 1, -}; - -struct reloc_control { - struct btrfs_block_group *block_group; - struct btrfs_root *extent_root; - struct inode *data_inode; - struct btrfs_block_rsv *block_rsv; - struct btrfs_backref_cache backref_cache; - struct file_extent_cluster cluster; - struct extent_io_tree processed_blocks; - struct mapping_tree reloc_root_tree; - struct list_head reloc_roots; - struct list_head dirty_subvol_roots; - u64 merging_rsv_size; - u64 nodes_relocated; - u64 reserved_bytes; - u64 search_start; - u64 extents_found; - enum reloc_stage stage; - bool create_reloc_tree; - bool merge_reloc_tree; - bool found_file_extent; -}; - -struct mapping_node { - struct { - struct rb_node rb_node; - u64 bytenr; - }; - void *data; -}; - -struct tree_block { - struct { - struct rb_node rb_node; - u64 bytenr; - }; - u64 owner; - struct btrfs_key key; - u8 level; - bool key_ready; -}; - -struct inode_entry { - struct list_head list; - struct inode *inode; -}; - -struct gc_inode_list { - struct list_head ilist; - struct xarray iroot; -}; - -struct victim_entry { - struct rb_node rb_node; - long long unsigned int mtime; - unsigned int segno; - struct list_head list; -}; - -struct z_erofs_gbuf { - spinlock_t lock; - void *ptr; - struct page **pages; - unsigned int nrpages; -}; - -struct mqueue_fs_context { - struct ipc_namespace *ipc_ns; - bool newns; -}; - -struct posix_msg_tree_node { - struct rb_node rb_node; - struct list_head msg_list; - int priority; -}; - -struct ext_wait_queue { - struct task_struct *task; - struct list_head list; - struct msg_msg *msg; - int state; -}; - -struct mqueue_inode_info { - spinlock_t lock; - struct inode vfs_inode; - wait_queue_head_t wait_q; - struct rb_root msg_tree; - struct rb_node *msg_tree_rightmost; - struct posix_msg_tree_node *node_cache; - struct mq_attr attr; - struct sigevent notify; - struct pid *notify_owner; - u32 notify_self_exec_id; - struct user_namespace *notify_user_ns; - struct ucounts *ucounts; - struct sock *notify_sock; - struct sk_buff *notify_cookie; - struct ext_wait_queue e_wait_q[2]; - long unsigned int qsize; -}; - -enum blake2b_lengths { - BLAKE2B_BLOCK_SIZE = 128, - BLAKE2B_HASH_SIZE = 64, - BLAKE2B_KEY_SIZE = 64, - BLAKE2B_160_HASH_SIZE = 20, - BLAKE2B_256_HASH_SIZE = 32, - BLAKE2B_384_HASH_SIZE = 48, - BLAKE2B_512_HASH_SIZE = 64, -}; - -struct blake2b_state { - u64 h[8]; - u64 t[2]; - u64 f[2]; - u8 buf[128]; - unsigned int buflen; - unsigned int outlen; -}; - -enum blake2b_iv { - BLAKE2B_IV0 = 7640891576956012808ULL, - BLAKE2B_IV1 = 13503953896175478587ULL, - BLAKE2B_IV2 = 4354685564936845355ULL, - BLAKE2B_IV3 = 11912009170470909681ULL, - BLAKE2B_IV4 = 5840696475078001361ULL, - BLAKE2B_IV5 = 11170449401992604703ULL, - BLAKE2B_IV6 = 2270897969802886507ULL, - BLAKE2B_IV7 = 6620516959819538809ULL, -}; - -typedef void (*blake2b_compress_t)(struct blake2b_state *, const u8 *, size_t, u32); - -struct blake2b_tfm_ctx { - u8 key[64]; - unsigned int keylen; -}; - -struct xts_tfm_ctx { - struct crypto_skcipher *child; - struct crypto_cipher *tweak; -}; - -struct xts_instance_ctx { - struct crypto_skcipher_spawn spawn; - struct crypto_cipher_spawn tweak_spawn; -}; - -struct xts_request_ctx { - le128 t; - struct scatterlist *tail; - struct scatterlist sg[2]; - struct skcipher_request subreq; -}; - -struct lzorle_ctx { - void *lzorle_comp_mem; -}; - -struct rng_ctx { - unsigned int len; - struct crypto_rng *drng; - u8 *addtl; - size_t addtl_len; -}; - -struct rng_parent_ctx { - struct crypto_rng *drng; - u8 *entropy; -}; - -enum io_uring_register_pbuf_ring_flags { - IOU_PBUF_RING_MMAP = 1, - IOU_PBUF_RING_INC = 2, -}; - -struct io_uring_buf_reg { - __u64 ring_addr; - __u32 ring_entries; - __u16 bgid; - __u16 flags; - __u64 resv[3]; -}; - -struct io_uring_buf_status { - __u32 buf_group; - __u32 head; - __u32 resv[8]; -}; - -enum { - KBUF_MODE_EXPAND = 1, - KBUF_MODE_FREE = 2, -}; - -struct buf_sel_arg { - struct iovec *iovs; - size_t out_len; - size_t max_len; - short unsigned int nr_iovs; - short unsigned int mode; - short unsigned int partial_map; -}; - -struct io_provide_buf { - struct file *file; - __u64 addr; - __u32 len; - __u32 bgid; - __u32 nbufs; - __u16 bid; -}; - -struct io_nop { - struct file *file; - int result; -}; - -struct epoll_event { - __poll_t events; - __u64 data; -}; - -struct io_epoll { - struct file *file; - int epfd; - int op; - int fd; - struct epoll_event event; -}; - -struct io_futex { - struct file *file; - union { - u32 *uaddr; - struct futex_waitv *uwaitv; - }; - long unsigned int futex_val; - long unsigned int futex_mask; - long unsigned int futexv_owned; - u32 futex_flags; - unsigned int futex_nr; - bool futexv_unqueued; -}; - -struct io_futex_data { - struct futex_q q; - struct io_kiocb *req; -}; - -typedef enum { - ZSTD_noDict = 0, - ZSTD_extDict = 1, - ZSTD_dictMatchState = 2, - ZSTD_dedicatedDictSearch = 3, -} ZSTD_dictMode_e; - -typedef U64 ZSTD_VecMask; - -typedef enum { - search_hashChain = 0, - search_binaryTree = 1, - search_rowHash = 2, -} searchMethod_e; - -struct pcim_iomap_devres { - void *table[11]; -}; - -struct pcim_intx_devres { - int orig_intx; -}; - -enum pcim_addr_devres_type { - PCIM_ADDR_DEVRES_TYPE_INVALID = 0, - PCIM_ADDR_DEVRES_TYPE_REGION = 1, - PCIM_ADDR_DEVRES_TYPE_REGION_MAPPING = 2, - PCIM_ADDR_DEVRES_TYPE_MAPPING = 3, -}; - -struct pcim_addr_devres { - enum pcim_addr_devres_type type; - void *baseaddr; - long unsigned int offset; - long unsigned int len; - int bar; -}; - -struct u32_fract { - __u32 numerator; - __u32 denominator; -}; - -struct clk_fractional_divider { - struct clk_hw hw; - void *reg; - u8 mshift; - u8 mwidth; - u8 nshift; - u8 nwidth; - u8 flags; - void (*approximation)(struct clk_hw *, long unsigned int, long unsigned int *, long unsigned int *, long unsigned int *); - spinlock_t *lock; -}; - -struct unipair { - short unsigned int unicode; - short unsigned int fontpos; -}; - -struct unimapdesc { - short unsigned int entry_ct; - struct unipair *entries; -}; - -struct console_font_op { - unsigned int op; - unsigned int flags; - unsigned int width; - unsigned int height; - unsigned int charcount; - unsigned char *data; -}; - -struct vt_stat { - short unsigned int v_active; - short unsigned int v_signal; - short unsigned int v_state; -}; - -struct vt_sizes { - short unsigned int v_rows; - short unsigned int v_cols; - short unsigned int v_scrollsize; -}; - -struct vt_consize { - short unsigned int v_rows; - short unsigned int v_cols; - short unsigned int v_vlin; - short unsigned int v_clin; - short unsigned int v_vcol; - short unsigned int v_ccol; -}; - -struct vt_event { - unsigned int event; - unsigned int oldev; - unsigned int newev; - unsigned int pad[4]; -}; - -struct vt_setactivate { - unsigned int console; - struct vt_mode mode; -}; - -struct vt_event_wait { - struct list_head list; - struct vt_event event; - int done; -}; - -enum pci_ers_result { - PCI_ERS_RESULT_NONE = 1, - PCI_ERS_RESULT_CAN_RECOVER = 2, - PCI_ERS_RESULT_NEED_RESET = 3, - PCI_ERS_RESULT_DISCONNECT = 4, - PCI_ERS_RESULT_RECOVERED = 5, - PCI_ERS_RESULT_NO_AER_DRIVER = 6, -}; - -struct pciserial_board { - unsigned int flags; - unsigned int num_ports; - unsigned int base_baud; - unsigned int uart_offset; - unsigned int reg_shift; - unsigned int first_offset; -}; - -struct serial_private; - -struct pci_serial_quirk { - u32 vendor; - u32 device; - u32 subvendor; - u32 subdevice; - int (*probe)(struct pci_dev *); - int (*init)(struct pci_dev *); - int (*setup)(struct serial_private *, const struct pciserial_board *, struct uart_8250_port *, int); - void (*exit)(struct pci_dev *); -}; - -struct serial_private { - struct pci_dev *dev; - unsigned int nr; - struct pci_serial_quirk *quirk; - const struct pciserial_board *board; - int line[0]; -}; - -struct f815xxa_data { - spinlock_t lock; - int idx; -}; - -struct timedia_struct { - int num; - const short unsigned int *ids; -}; - -enum { - MOXA_SUPP_RS232 = 1, - MOXA_SUPP_RS422 = 2, - MOXA_SUPP_RS485 = 4, -}; - -enum pci_board_num_t { - pbn_default = 0, - pbn_b0_1_115200 = 1, - pbn_b0_2_115200 = 2, - pbn_b0_4_115200 = 3, - pbn_b0_5_115200 = 4, - pbn_b0_8_115200 = 5, - pbn_b0_1_921600 = 6, - pbn_b0_2_921600 = 7, - pbn_b0_4_921600 = 8, - pbn_b0_2_1130000 = 9, - pbn_b0_4_1152000 = 10, - pbn_b0_4_1250000 = 11, - pbn_b0_2_1843200 = 12, - pbn_b0_4_1843200 = 13, - pbn_b0_1_15625000 = 14, - pbn_b0_bt_1_115200 = 15, - pbn_b0_bt_2_115200 = 16, - pbn_b0_bt_4_115200 = 17, - pbn_b0_bt_8_115200 = 18, - pbn_b0_bt_1_460800 = 19, - pbn_b0_bt_2_460800 = 20, - pbn_b0_bt_4_460800 = 21, - pbn_b0_bt_1_921600 = 22, - pbn_b0_bt_2_921600 = 23, - pbn_b0_bt_4_921600 = 24, - pbn_b0_bt_8_921600 = 25, - pbn_b1_1_115200 = 26, - pbn_b1_2_115200 = 27, - pbn_b1_4_115200 = 28, - pbn_b1_8_115200 = 29, - pbn_b1_16_115200 = 30, - pbn_b1_1_921600 = 31, - pbn_b1_2_921600 = 32, - pbn_b1_4_921600 = 33, - pbn_b1_8_921600 = 34, - pbn_b1_2_1250000 = 35, - pbn_b1_bt_1_115200 = 36, - pbn_b1_bt_2_115200 = 37, - pbn_b1_bt_4_115200 = 38, - pbn_b1_bt_2_921600 = 39, - pbn_b1_1_1382400 = 40, - pbn_b1_2_1382400 = 41, - pbn_b1_4_1382400 = 42, - pbn_b1_8_1382400 = 43, - pbn_b2_1_115200 = 44, - pbn_b2_2_115200 = 45, - pbn_b2_4_115200 = 46, - pbn_b2_8_115200 = 47, - pbn_b2_1_460800 = 48, - pbn_b2_4_460800 = 49, - pbn_b2_8_460800 = 50, - pbn_b2_16_460800 = 51, - pbn_b2_1_921600 = 52, - pbn_b2_4_921600 = 53, - pbn_b2_8_921600 = 54, - pbn_b2_8_1152000 = 55, - pbn_b2_bt_1_115200 = 56, - pbn_b2_bt_2_115200 = 57, - pbn_b2_bt_4_115200 = 58, - pbn_b2_bt_2_921600 = 59, - pbn_b2_bt_4_921600 = 60, - pbn_b3_2_115200 = 61, - pbn_b3_4_115200 = 62, - pbn_b3_8_115200 = 63, - pbn_b4_bt_2_921600 = 64, - pbn_b4_bt_4_921600 = 65, - pbn_b4_bt_8_921600 = 66, - pbn_panacom = 67, - pbn_panacom2 = 68, - pbn_panacom4 = 69, - pbn_plx_romulus = 70, - pbn_oxsemi = 71, - pbn_oxsemi_1_15625000 = 72, - pbn_oxsemi_2_15625000 = 73, - pbn_oxsemi_4_15625000 = 74, - pbn_oxsemi_8_15625000 = 75, - pbn_intel_i960 = 76, - pbn_sgi_ioc3 = 77, - pbn_computone_4 = 78, - pbn_computone_6 = 79, - pbn_computone_8 = 80, - pbn_sbsxrsio = 81, - pbn_pasemi_1682M = 82, - pbn_ni8430_2 = 83, - pbn_ni8430_4 = 84, - pbn_ni8430_8 = 85, - pbn_ni8430_16 = 86, - pbn_ADDIDATA_PCIe_1_3906250 = 87, - pbn_ADDIDATA_PCIe_2_3906250 = 88, - pbn_ADDIDATA_PCIe_4_3906250 = 89, - pbn_ADDIDATA_PCIe_8_3906250 = 90, - pbn_ce4100_1_115200 = 91, - pbn_omegapci = 92, - pbn_NETMOS9900_2s_115200 = 93, - pbn_brcm_trumanage = 94, - pbn_fintek_4 = 95, - pbn_fintek_8 = 96, - pbn_fintek_12 = 97, - pbn_fintek_F81504A = 98, - pbn_fintek_F81508A = 99, - pbn_fintek_F81512A = 100, - pbn_wch382_2 = 101, - pbn_wch384_4 = 102, - pbn_wch384_8 = 103, - pbn_sunix_pci_1s = 104, - pbn_sunix_pci_2s = 105, - pbn_sunix_pci_4s = 106, - pbn_sunix_pci_8s = 107, - pbn_sunix_pci_16s = 108, - pbn_titan_1_4000000 = 109, - pbn_titan_2_4000000 = 110, - pbn_titan_4_4000000 = 111, - pbn_titan_8_4000000 = 112, - pbn_moxa_2 = 113, - pbn_moxa_4 = 114, - pbn_moxa_8 = 115, -}; - -struct drm_mode_crtc_lut { - __u32 crtc_id; - __u32 gamma_size; - __u64 red; - __u64 green; - __u64 blue; -}; - -struct drm_color_lut { - __u16 red; - __u16 green; - __u16 blue; - __u16 reserved; -}; - -enum drm_color_lut_tests { - DRM_COLOR_LUT_EQUAL_CHANNELS = 1, - DRM_COLOR_LUT_NON_DECREASING = 2, -}; - -struct drm_print_iterator { - void *data; - ssize_t start; - ssize_t remain; - ssize_t offset; -}; - -struct subsys_private { - struct kset subsys; - struct kset *devices_kset; - struct list_head interfaces; - struct mutex mutex; - struct kset *drivers_kset; - struct klist klist_devices; - struct klist klist_drivers; - struct blocking_notifier_head bus_notifier; - unsigned int drivers_autoprobe: 1; - const struct bus_type *bus; - struct device *dev_root; - struct kset glue_dirs; - const struct class *class; - struct lock_class_key lock_key; -}; - -struct subsys_interface { - const char *name; - const struct bus_type *subsys; - struct list_head node; - int (*add_dev)(struct device *, struct subsys_interface *); - void (*remove_dev)(struct device *, struct subsys_interface *); -}; - -struct subsys_dev_iter { - struct klist_iter ki; - const struct device_type *type; -}; - -struct reg_field { - unsigned int reg; - unsigned int lsb; - unsigned int msb; - unsigned int id_size; - unsigned int id_offset; -}; - -struct regmap_field { - struct regmap *regmap; - unsigned int mask; - unsigned int shift; - unsigned int reg; - unsigned int id_size; - unsigned int id_offset; -}; - -struct trace_event_raw_regmap_reg { - struct trace_entry ent; - u32 __data_loc_name; - unsigned int reg; - unsigned int val; - char __data[0]; -}; - -struct trace_event_raw_regmap_bulk { - struct trace_entry ent; - u32 __data_loc_name; - unsigned int reg; - u32 __data_loc_buf; - int val_len; - char __data[0]; -}; - -struct trace_event_raw_regmap_block { - struct trace_entry ent; - u32 __data_loc_name; - unsigned int reg; - int count; - char __data[0]; -}; - -struct trace_event_raw_regcache_sync { - struct trace_entry ent; - u32 __data_loc_name; - u32 __data_loc_status; - u32 __data_loc_type; - char __data[0]; -}; - -struct trace_event_raw_regmap_bool { - struct trace_entry ent; - u32 __data_loc_name; - int flag; - char __data[0]; -}; - -struct trace_event_raw_regmap_async { - struct trace_entry ent; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_regcache_drop_region { - struct trace_entry ent; - u32 __data_loc_name; - unsigned int from; - unsigned int to; - char __data[0]; -}; - -struct trace_event_data_offsets_regmap_reg { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_regmap_bulk { - u32 name; - const void *name_ptr_; - u32 buf; - const void *buf_ptr_; -}; - -struct trace_event_data_offsets_regmap_block { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_regcache_sync { - u32 name; - const void *name_ptr_; - u32 status; - const void *status_ptr_; - u32 type; - const void *type_ptr_; -}; - -struct trace_event_data_offsets_regmap_bool { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_regmap_async { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_regcache_drop_region { - u32 name; - const void *name_ptr_; -}; - -typedef void (*btf_trace_regmap_reg_write)(void *, struct regmap *, unsigned int, unsigned int); - -typedef void (*btf_trace_regmap_reg_read)(void *, struct regmap *, unsigned int, unsigned int); - -typedef void (*btf_trace_regmap_reg_read_cache)(void *, struct regmap *, unsigned int, unsigned int); - -typedef void (*btf_trace_regmap_bulk_write)(void *, struct regmap *, unsigned int, const void *, int); - -typedef void (*btf_trace_regmap_bulk_read)(void *, struct regmap *, unsigned int, const void *, int); - -typedef void (*btf_trace_regmap_hw_read_start)(void *, struct regmap *, unsigned int, int); - -typedef void (*btf_trace_regmap_hw_read_done)(void *, struct regmap *, unsigned int, int); - -typedef void (*btf_trace_regmap_hw_write_start)(void *, struct regmap *, unsigned int, int); - -typedef void (*btf_trace_regmap_hw_write_done)(void *, struct regmap *, unsigned int, int); - -typedef void (*btf_trace_regcache_sync)(void *, struct regmap *, const char *, const char *); - -typedef void (*btf_trace_regmap_cache_only)(void *, struct regmap *, bool); - -typedef void (*btf_trace_regmap_cache_bypass)(void *, struct regmap *, bool); - -typedef void (*btf_trace_regmap_async_write_start)(void *, struct regmap *, unsigned int, int); - -typedef void (*btf_trace_regmap_async_io_complete)(void *, struct regmap *); - -typedef void (*btf_trace_regmap_async_complete_start)(void *, struct regmap *); - -typedef void (*btf_trace_regmap_async_complete_done)(void *, struct regmap *); - -typedef void (*btf_trace_regcache_drop_region)(void *, struct regmap *, unsigned int, unsigned int); - -enum { - SCSI_DH_OK = 0, - SCSI_DH_DEV_FAILED = 1, - SCSI_DH_DEV_TEMP_BUSY = 2, - SCSI_DH_DEV_UNSUPP = 3, - SCSI_DH_DEVICE_MAX = 4, - SCSI_DH_NOTCONN = 5, - SCSI_DH_CONN_FAILURE = 6, - SCSI_DH_TRANSPORT_MAX = 7, - SCSI_DH_IO = 8, - SCSI_DH_INVALID_IO = 9, - SCSI_DH_RETRY = 10, - SCSI_DH_IMM_RETRY = 11, - SCSI_DH_TIMED_OUT = 12, - SCSI_DH_RES_TEMP_UNAVAIL = 13, - SCSI_DH_DEV_OFFLINED = 14, - SCSI_DH_NOMEM = 15, - SCSI_DH_NOSYS = 16, - SCSI_DH_DRIVER_MAX = 17, -}; - -struct scsi_dh_blist { - const char *vendor; - const char *model; - const char *driver; -}; - -struct bsd_dict { - union { - long unsigned int fcode; - struct { - short unsigned int prefix; - unsigned char suffix; - unsigned char pad; - } hs; - } f; - short unsigned int codem1; - short unsigned int cptr; -}; - -struct bsd_db { - int totlen; - unsigned int hsize; - unsigned char hshift; - unsigned char n_bits; - unsigned char maxbits; - unsigned char debug; - unsigned char unit; - short unsigned int seqno; - unsigned int mru; - unsigned int maxmaxcode; - unsigned int max_ent; - unsigned int in_count; - unsigned int bytes_out; - unsigned int ratio; - unsigned int checkpoint; - unsigned int clear_count; - unsigned int incomp_count; - unsigned int incomp_bytes; - unsigned int uncomp_count; - unsigned int uncomp_bytes; - unsigned int comp_count; - unsigned int comp_bytes; - short unsigned int *lens; - struct bsd_dict *dict; -}; - -struct find_interface_arg { - int minor; - struct device_driver *drv; -}; - -struct each_dev_arg { - void *data; - int (*fn)(struct usb_device *, void *); -}; - -struct dbc_regs { - __le32 capability; - __le32 doorbell; - __le32 ersts; - __le32 __reserved_0; - __le64 erstba; - __le64 erdp; - __le32 control; - __le32 status; - __le32 portsc; - __le32 __reserved_1; - __le64 dccp; - __le32 devinfo1; - __le32 devinfo2; -}; - -struct dbc_str_descs { - char string0[64]; - char manufacturer[64]; - char product[64]; - char serial[64]; -}; - -enum dbc_state { - DS_DISABLED = 0, - DS_INITIALIZED = 1, - DS_ENABLED = 2, - DS_CONNECTED = 3, - DS_CONFIGURED = 4, - DS_MAX = 5, -}; - -struct xhci_dbc; - -struct dbc_ep { - struct xhci_dbc *dbc; - struct list_head list_pending; - struct xhci_ring *ring; - unsigned int direction: 1; - unsigned int halted: 1; -}; - -struct dbc_driver; - -struct xhci_dbc { - spinlock_t lock; - struct device *dev; - struct xhci_hcd *xhci; - struct dbc_regs *regs; - struct xhci_ring *ring_evt; - struct xhci_ring *ring_in; - struct xhci_ring *ring_out; - struct xhci_erst erst; - struct xhci_container_ctx *ctx; - struct dbc_str_descs *string; - dma_addr_t string_dma; - size_t string_size; - u16 idVendor; - u16 idProduct; - u16 bcdDevice; - u8 bInterfaceProtocol; - enum dbc_state state; - struct delayed_work event_work; - unsigned int poll_interval; - long unsigned int xfer_timestamp; - unsigned int resume_required: 1; - struct dbc_ep eps[2]; - const struct dbc_driver *driver; - void *priv; -}; - -struct dbc_driver { - int (*configure)(struct xhci_dbc *); - void (*disconnect)(struct xhci_dbc *); -}; - -struct dbc_request { - void *buf; - unsigned int length; - dma_addr_t dma; - void (*complete)(struct xhci_dbc *, struct dbc_request *); - struct list_head list_pool; - int status; - unsigned int actual; - struct xhci_dbc *dbc; - struct list_head list_pending; - dma_addr_t trb_dma; - union xhci_trb *trb; - unsigned int direction: 1; -}; - -struct trace_event_raw_xhci_log_msg { - struct trace_entry ent; - u32 __data_loc_msg; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_ctx { - struct trace_entry ent; - int ctx_64; - unsigned int ctx_type; - dma_addr_t ctx_dma; - u8 *ctx_va; - unsigned int ctx_ep_num; - u32 __data_loc_ctx_data; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_trb { - struct trace_entry ent; - u32 type; - u32 field0; - u32 field1; - u32 field2; - u32 field3; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_free_virt_dev { - struct trace_entry ent; - void *vdev; - long long unsigned int out_ctx; - long long unsigned int in_ctx; - int slot_id; - u16 current_mel; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_virt_dev { - struct trace_entry ent; - void *vdev; - long long unsigned int out_ctx; - long long unsigned int in_ctx; - int devnum; - int state; - int speed; - u8 portnum; - u8 level; - int slot_id; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_urb { - struct trace_entry ent; - u32 __data_loc_devname; - void *urb; - unsigned int pipe; - unsigned int stream; - int status; - unsigned int flags; - int num_mapped_sgs; - int num_sgs; - int length; - int actual; - int epnum; - int dir_in; - int type; - int slot_id; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_ep_ctx { - struct trace_entry ent; - u32 info; - u32 info2; - u64 deq; - u32 tx_info; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_slot_ctx { - struct trace_entry ent; - u32 info; - u32 info2; - u32 tt_info; - u32 state; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_ctrl_ctx { - struct trace_entry ent; - u32 drop; - u32 add; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_ring { - struct trace_entry ent; - u32 type; - void *ring; - dma_addr_t enq; - dma_addr_t deq; - dma_addr_t enq_seg; - dma_addr_t deq_seg; - unsigned int num_segs; - unsigned int stream_id; - unsigned int cycle_state; - unsigned int bounce_buf_len; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_portsc { - struct trace_entry ent; - u32 busnum; - u32 portnum; - u32 portsc; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_doorbell { - struct trace_entry ent; - u32 slot; - u32 doorbell; - char __data[0]; -}; - -struct trace_event_raw_xhci_dbc_log_request { - struct trace_entry ent; - struct dbc_request *req; - bool dir; - unsigned int actual; - unsigned int length; - int status; - char __data[0]; -}; - -struct trace_event_data_offsets_xhci_log_msg { - u32 msg; - const void *msg_ptr_; -}; - -struct trace_event_data_offsets_xhci_log_ctx { - u32 ctx_data; - const void *ctx_data_ptr_; -}; - -struct trace_event_data_offsets_xhci_log_trb {}; - -struct trace_event_data_offsets_xhci_log_free_virt_dev {}; - -struct trace_event_data_offsets_xhci_log_virt_dev {}; - -struct trace_event_data_offsets_xhci_log_urb { - u32 devname; - const void *devname_ptr_; -}; - -struct trace_event_data_offsets_xhci_log_ep_ctx {}; - -struct trace_event_data_offsets_xhci_log_slot_ctx {}; - -struct trace_event_data_offsets_xhci_log_ctrl_ctx {}; - -struct trace_event_data_offsets_xhci_log_ring {}; - -struct trace_event_data_offsets_xhci_log_portsc {}; - -struct trace_event_data_offsets_xhci_log_doorbell {}; - -struct trace_event_data_offsets_xhci_dbc_log_request {}; - -typedef void (*btf_trace_xhci_dbg_address)(void *, struct va_format *); - -typedef void (*btf_trace_xhci_dbg_context_change)(void *, struct va_format *); - -typedef void (*btf_trace_xhci_dbg_quirks)(void *, struct va_format *); - -typedef void (*btf_trace_xhci_dbg_reset_ep)(void *, struct va_format *); - -typedef void (*btf_trace_xhci_dbg_cancel_urb)(void *, struct va_format *); - -typedef void (*btf_trace_xhci_dbg_init)(void *, struct va_format *); - -typedef void (*btf_trace_xhci_dbg_ring_expansion)(void *, struct va_format *); - -typedef void (*btf_trace_xhci_address_ctx)(void *, struct xhci_hcd *, struct xhci_container_ctx *, unsigned int); - -typedef void (*btf_trace_xhci_handle_event)(void *, struct xhci_ring *, struct xhci_generic_trb *); - -typedef void (*btf_trace_xhci_handle_command)(void *, struct xhci_ring *, struct xhci_generic_trb *); - -typedef void (*btf_trace_xhci_handle_transfer)(void *, struct xhci_ring *, struct xhci_generic_trb *); - -typedef void (*btf_trace_xhci_queue_trb)(void *, struct xhci_ring *, struct xhci_generic_trb *); - -typedef void (*btf_trace_xhci_dbc_handle_event)(void *, struct xhci_ring *, struct xhci_generic_trb *); - -typedef void (*btf_trace_xhci_dbc_handle_transfer)(void *, struct xhci_ring *, struct xhci_generic_trb *); - -typedef void (*btf_trace_xhci_dbc_gadget_ep_queue)(void *, struct xhci_ring *, struct xhci_generic_trb *); - -typedef void (*btf_trace_xhci_free_virt_device)(void *, struct xhci_virt_device *); - -typedef void (*btf_trace_xhci_alloc_virt_device)(void *, struct xhci_virt_device *); - -typedef void (*btf_trace_xhci_setup_device)(void *, struct xhci_virt_device *); - -typedef void (*btf_trace_xhci_setup_addressable_virt_device)(void *, struct xhci_virt_device *); - -typedef void (*btf_trace_xhci_stop_device)(void *, struct xhci_virt_device *); - -typedef void (*btf_trace_xhci_urb_enqueue)(void *, struct urb *); - -typedef void (*btf_trace_xhci_urb_giveback)(void *, struct urb *); - -typedef void (*btf_trace_xhci_urb_dequeue)(void *, struct urb *); - -typedef void (*btf_trace_xhci_handle_cmd_stop_ep)(void *, struct xhci_ep_ctx *); - -typedef void (*btf_trace_xhci_handle_cmd_set_deq_ep)(void *, struct xhci_ep_ctx *); - -typedef void (*btf_trace_xhci_handle_cmd_reset_ep)(void *, struct xhci_ep_ctx *); - -typedef void (*btf_trace_xhci_handle_cmd_config_ep)(void *, struct xhci_ep_ctx *); - -typedef void (*btf_trace_xhci_add_endpoint)(void *, struct xhci_ep_ctx *); - -typedef void (*btf_trace_xhci_alloc_dev)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_free_dev)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_handle_cmd_disable_slot)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_discover_or_reset_device)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_setup_device_slot)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_handle_cmd_addr_dev)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_handle_cmd_reset_dev)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_handle_cmd_set_deq)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_configure_endpoint)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_address_ctrl_ctx)(void *, struct xhci_input_control_ctx *); - -typedef void (*btf_trace_xhci_configure_endpoint_ctrl_ctx)(void *, struct xhci_input_control_ctx *); - -typedef void (*btf_trace_xhci_ring_alloc)(void *, struct xhci_ring *); - -typedef void (*btf_trace_xhci_ring_free)(void *, struct xhci_ring *); - -typedef void (*btf_trace_xhci_ring_expansion)(void *, struct xhci_ring *); - -typedef void (*btf_trace_xhci_inc_enq)(void *, struct xhci_ring *); - -typedef void (*btf_trace_xhci_inc_deq)(void *, struct xhci_ring *); - -typedef void (*btf_trace_xhci_handle_port_status)(void *, struct xhci_port *, u32); - -typedef void (*btf_trace_xhci_get_port_status)(void *, struct xhci_port *, u32); - -typedef void (*btf_trace_xhci_hub_status_data)(void *, struct xhci_port *, u32); - -typedef void (*btf_trace_xhci_ring_ep_doorbell)(void *, u32, u32); - -typedef void (*btf_trace_xhci_ring_host_doorbell)(void *, u32, u32); - -typedef void (*btf_trace_xhci_dbc_alloc_request)(void *, struct dbc_request *); - -typedef void (*btf_trace_xhci_dbc_free_request)(void *, struct dbc_request *); - -typedef void (*btf_trace_xhci_dbc_queue_request)(void *, struct dbc_request *); - -typedef void (*btf_trace_xhci_dbc_giveback_request)(void *, struct dbc_request *); - -struct edge_compatibility_bits { - __u32 VendEnableSuspend: 1; - __u32 VendUnused: 31; - __u32 IOSPOpen: 1; - __u32 IOSPClose: 1; - __u32 IOSPChase: 1; - __u32 IOSPSetRxFlow: 1; - __u32 IOSPSetTxFlow: 1; - __u32 IOSPSetXChar: 1; - __u32 IOSPRxCheck: 1; - __u32 IOSPSetClrBreak: 1; - __u32 IOSPWriteMCR: 1; - __u32 IOSPWriteLCR: 1; - __u32 IOSPSetBaudRate: 1; - __u32 IOSPDisableIntPipe: 1; - __u32 IOSPRxDataAvail: 1; - __u32 IOSPTxPurge: 1; - __u32 IOSPUnused: 18; - __u32 TrueEdgeport: 1; - __u32 GenUnused: 31; -}; - -struct edge_compatibility_descriptor { - __u8 Length; - __u8 DescType; - __u8 EpicVer; - __u8 NumPorts; - __u8 iDownloadFile; - __u8 Unused[3]; - __u8 MajorVersion; - __u8 MinorVersion; - __le16 BuildNumber; - struct edge_compatibility_bits Supports; -}; - -struct edge_manuf_descriptor { - __u16 RootDescTable[16]; - __u8 DescriptorArea[736]; - __u8 Length; - __u8 DescType; - __u8 DescVer; - __u8 NumRootDescEntries; - __u8 RomSize; - __u8 RamSize; - __u8 CpuRev; - __u8 BoardRev; - __u8 NumPorts; - __u8 DescDate[3]; - __u8 SerNumLength; - __u8 SerNumDescType; - __le16 SerialNumber[12]; - __u8 AssemblyNumLength; - __u8 AssemblyNumDescType; - __le16 AssemblyNumber[14]; - __u8 OemAssyNumLength; - __u8 OemAssyNumDescType; - __le16 OemAssyNumber[14]; - __u8 ManufDateLength; - __u8 ManufDateDescType; - __le16 ManufDate[6]; - __u8 Reserved3[77]; - __u8 UartType; - __u8 IonPid; - __u8 IonConfig; -}; - -struct edge_boot_descriptor { - __u8 Length; - __u8 DescType; - __u8 DescVer; - __u8 Reserved1; - __le16 BootCodeLength; - __u8 MajorVersion; - __u8 MinorVersion; - __le16 BuildNumber; - __u16 EnumRootDescTable; - __u8 NumDescTypes; - __u8 Reserved4; - __le16 Capabilities; - __u8 Reserved2[40]; - __u8 UConfig0; - __u8 UConfig1; - __u8 Reserved3[6]; -}; - -struct edgeport_product_info { - __u16 ProductId; - __u8 NumPorts; - __u8 ProdInfoVer; - __u32 IsServer: 1; - __u32 IsRS232: 1; - __u32 IsRS422: 1; - __u32 IsRS485: 1; - __u32 IsReserved: 28; - __u8 RomSize; - __u8 RamSize; - __u8 CpuRev; - __u8 BoardRev; - __u8 BootMajorVersion; - __u8 BootMinorVersion; - __le16 BootBuildNumber; - __u8 FirmwareMajorVersion; - __u8 FirmwareMinorVersion; - __le16 FirmwareBuildNumber; - __u8 ManufactureDescDate[3]; - __u8 HardwareType; - __u8 iDownloadFile; - __u8 EpicVer; - struct edge_compatibility_bits Epic; -}; - -enum RXSTATE { - EXPECT_HDR1 = 0, - EXPECT_HDR2 = 1, - EXPECT_DATA = 2, - EXPECT_HDR3 = 3, -}; - -struct TxFifo { - unsigned int head; - unsigned int tail; - unsigned int count; - unsigned int size; - unsigned char *fifo; -}; - -struct edgeport_port___2 { - __u16 txCredits; - __u16 maxTxCredits; - struct TxFifo txfifo; - struct urb *write_urb; - bool write_in_progress; - spinlock_t ep_lock; - __u8 shadowLCR; - __u8 shadowMCR; - __u8 shadowMSR; - __u8 shadowLSR; - __u8 shadowXonChar; - __u8 shadowXoffChar; - __u8 validDataMask; - __u32 baudRate; - bool open; - bool openPending; - bool commandPending; - bool closePending; - bool chaseResponsePending; - wait_queue_head_t wait_chase; - wait_queue_head_t wait_open; - wait_queue_head_t wait_command; - struct usb_serial_port *port; -}; - -struct edgeport_serial___2 { - char name[66]; - struct edge_manuf_descriptor manuf_descriptor; - struct edge_boot_descriptor boot_descriptor; - struct edgeport_product_info product_info; - struct edge_compatibility_descriptor epic_descriptor; - int is_epic; - __u8 interrupt_in_endpoint; - unsigned char *interrupt_in_buffer; - struct urb *interrupt_read_urb; - __u8 bulk_in_endpoint; - unsigned char *bulk_in_buffer; - struct urb *read_urb; - bool read_in_progress; - spinlock_t es_lock; - __u8 bulk_out_endpoint; - __s16 rxBytesAvail; - enum RXSTATE rxState; - __u8 rxHeader1; - __u8 rxHeader2; - __u8 rxHeader3; - __u8 rxPort; - __u8 rxStatusCode; - __u8 rxStatusParam; - __s16 rxBytesRemaining; - struct usb_serial *serial; -}; - -struct divisor_table_entry___2 { - __u32 BaudRate; - __u16 Divisor; -}; - -struct ti_uart_config { - __be16 wBaudRate; - __be16 wFlags; - u8 bDataBits; - u8 bParity; - u8 bStopBits; - char cXon; - char cXoff; - u8 bUartMode; -}; - -struct ti_port_status { - u8 bCmdCode; - u8 bModuleId; - u8 bErrorCode; - u8 bMSR; - u8 bLSR; -}; - -struct ti_write_data_bytes { - u8 bAddrType; - u8 bDataType; - u8 bDataCounter; - __be16 wBaseAddrHi; - __be16 wBaseAddrLo; - u8 bData[0]; -} __attribute__((packed)); - -struct ti_firmware_header { - __le16 wLength; - u8 bCheckSum; -} __attribute__((packed)); - -struct ti_device; - -struct ti_port { - int tp_is_open; - u8 tp_msr; - u8 tp_shadow_mcr; - u8 tp_uart_mode; - unsigned int tp_uart_base_addr; - struct ti_device *tp_tdev; - struct usb_serial_port *tp_port; - spinlock_t tp_lock; - int tp_read_urb_state; - int tp_write_urb_in_use; -}; - -struct ti_device { - struct mutex td_open_close_lock; - int td_open_port_count; - struct usb_serial *td_serial; - int td_is_3410; - bool td_rs485_only; -}; - -struct input_mask { - __u32 type; - __u32 codes_size; - __u64 codes_ptr; -}; - -struct evdev_client; - -struct evdev { - int open; - struct input_handle handle; - struct evdev_client *grab; - struct list_head client_list; - spinlock_t client_lock; - struct mutex mutex; - struct device dev; - struct cdev cdev; - bool exist; -}; - -struct evdev_client { - unsigned int head; - unsigned int tail; - unsigned int packet_head; - spinlock_t buffer_lock; - wait_queue_head_t wait; - struct fasync_struct *fasync; - struct evdev *evdev; - struct list_head node; - enum input_clock_type clk_type; - bool revoked; - long unsigned int *evmasks[32]; - unsigned int bufsize; - struct input_event buffer[0]; -}; - -struct dm_io_client { - mempool_t pool; - struct bio_set bios; -}; - -struct io { - long unsigned int error_bits; - atomic_t count; - struct dm_io_client *client; - io_notify_fn callback; - void *context; - void *vma_invalidate_address; - long unsigned int vma_invalidate_size; - long: 64; -}; - -struct dpages { - void (*get_page)(struct dpages *, struct page **, long unsigned int *, unsigned int *); - void (*next_page)(struct dpages *); - union { - unsigned int context_u; - struct bvec_iter context_bi; - }; - void *context_ptr; - void *vma_invalidate_address; - long unsigned int vma_invalidate_size; -}; - -struct sync_io { - long unsigned int error_bits; - struct completion wait; -}; - -struct arm_pmu; - -struct pmu_hw_events { - struct perf_event *events[33]; - long unsigned int used_mask[1]; - struct arm_pmu *percpu_pmu; - int irq; -}; - -struct arm_pmu { - struct pmu pmu; - cpumask_t supported_cpus; - char *name; - int pmuver; - irqreturn_t (*handle_irq)(struct arm_pmu *); - void (*enable)(struct perf_event *); - void (*disable)(struct perf_event *); - int (*get_event_idx)(struct pmu_hw_events *, struct perf_event *); - void (*clear_event_idx)(struct pmu_hw_events *, struct perf_event *); - int (*set_event_filter)(struct hw_perf_event *, struct perf_event_attr *); - u64 (*read_counter)(struct perf_event *); - void (*write_counter)(struct perf_event *, u64); - void (*start)(struct arm_pmu *); - void (*stop)(struct arm_pmu *); - void (*reset)(void *); - int (*map_event)(struct perf_event *); - long unsigned int cntr_mask[1]; - bool secure_access; - long unsigned int pmceid_bitmap[1]; - long unsigned int pmceid_ext_bitmap[1]; - struct platform_device *plat_device; - struct pmu_hw_events *hw_events; - struct hlist_node node; - struct notifier_block cpu_pm_nb; - const struct attribute_group *attr_groups[5]; - u64 reg_pmmir; - long unsigned int acpi_cpuid; -}; - -typedef int (*armpmu_init_fn)(struct arm_pmu *); - -struct pmu_probe_info { - unsigned int cpuid; - unsigned int mask; - armpmu_init_fn init; -}; - -struct fib_notifier_net { - struct list_head fib_notifier_ops; - struct atomic_notifier_head fib_chain; -}; - -enum ethtool_test_flags { - ETH_TEST_FL_OFFLINE = 1, - ETH_TEST_FL_FAILED = 2, - ETH_TEST_FL_EXTERNAL_LB = 4, - ETH_TEST_FL_EXTERNAL_LB_DONE = 8, -}; - -struct net_packet_attrs { - const unsigned char *src; - const unsigned char *dst; - u32 ip_src; - u32 ip_dst; - bool tcp; - u16 sport; - u16 dport; - int timeout; - int size; - int max_size; - u8 id; - u16 queue_mapping; -}; - -struct net_test_priv { - struct net_packet_attrs *packet; - struct packet_type pt; - struct completion comp; - int double_vlan; - int vlan_id; - int ok; -}; - -struct netsfhdr { - __be32 version; - __be64 magic; - u8 id; -} __attribute__((packed)); - -struct net_test { - char name[32]; - int (*fn)(struct net_device *); -}; - -struct sch_frag_data { - long unsigned int dst; - struct qdisc_skb_cb cb; - __be16 inner_protocol; - u16 vlan_tci; - __be16 vlan_proto; - unsigned int l2_len; - u8 l2_data[18]; - int (*xmit)(struct sk_buff *); -}; - -struct tc_tbf_qopt { - struct tc_ratespec rate; - struct tc_ratespec peakrate; - __u32 limit; - __u32 buffer; - __u32 mtu; -}; - -enum { - TCA_TBF_UNSPEC = 0, - TCA_TBF_PARMS = 1, - TCA_TBF_RTAB = 2, - TCA_TBF_PTAB = 3, - TCA_TBF_RATE64 = 4, - TCA_TBF_PRATE64 = 5, - TCA_TBF_BURST = 6, - TCA_TBF_PBURST = 7, - TCA_TBF_PAD = 8, - __TCA_TBF_MAX = 9, -}; - -enum tc_tbf_command { - TC_TBF_REPLACE = 0, - TC_TBF_DESTROY = 1, - TC_TBF_STATS = 2, - TC_TBF_GRAFT = 3, -}; - -struct tc_tbf_qopt_offload_replace_params { - struct psched_ratecfg rate; - u32 max_size; - struct gnet_stats_queue *qstats; -}; - -struct tc_tbf_qopt_offload { - enum tc_tbf_command command; - u32 handle; - u32 parent; - union { - struct tc_tbf_qopt_offload_replace_params replace_params; - struct tc_qopt_offload_stats stats; - u32 child_handle; - }; -}; - -struct tbf_sched_data { - u32 limit; - u32 max_size; - s64 buffer; - s64 mtu; - struct psched_ratecfg rate; - struct psched_ratecfg peak; - s64 tokens; - s64 ptokens; - s64 t_c; - struct Qdisc *qdisc; - struct qdisc_watchdog watchdog; -}; - -enum { - FLOW_KEY_SRC = 0, - FLOW_KEY_DST = 1, - FLOW_KEY_PROTO = 2, - FLOW_KEY_PROTO_SRC = 3, - FLOW_KEY_PROTO_DST = 4, - FLOW_KEY_IIF = 5, - FLOW_KEY_PRIORITY = 6, - FLOW_KEY_MARK = 7, - FLOW_KEY_NFCT = 8, - FLOW_KEY_NFCT_SRC = 9, - FLOW_KEY_NFCT_DST = 10, - FLOW_KEY_NFCT_PROTO_SRC = 11, - FLOW_KEY_NFCT_PROTO_DST = 12, - FLOW_KEY_RTCLASSID = 13, - FLOW_KEY_SKUID = 14, - FLOW_KEY_SKGID = 15, - FLOW_KEY_VLAN_TAG = 16, - FLOW_KEY_RXHASH = 17, - __FLOW_KEY_MAX = 18, -}; - -enum { - FLOW_MODE_MAP = 0, - FLOW_MODE_HASH = 1, -}; - -enum { - TCA_FLOW_UNSPEC = 0, - TCA_FLOW_KEYS = 1, - TCA_FLOW_MODE = 2, - TCA_FLOW_BASECLASS = 3, - TCA_FLOW_RSHIFT = 4, - TCA_FLOW_ADDEND = 5, - TCA_FLOW_MASK = 6, - TCA_FLOW_XOR = 7, - TCA_FLOW_DIVISOR = 8, - TCA_FLOW_ACT = 9, - TCA_FLOW_POLICE = 10, - TCA_FLOW_EMATCHES = 11, - TCA_FLOW_PERTURB = 12, - __TCA_FLOW_MAX = 13, -}; - -struct flow_head { - struct list_head filters; - struct callback_head rcu; -}; - -struct flow_filter { - struct list_head list; - struct tcf_exts exts; - struct tcf_ematch_tree ematches; - struct tcf_proto *tp; - struct timer_list perturb_timer; - u32 perturb_period; - u32 handle; - u32 nkeys; - u32 keymask; - u32 mode; - u32 mask; - u32 xor; - u32 rshift; - u32 addend; - u32 divisor; - u32 baseclass; - u32 hashrnd; - struct rcu_work rwork; -}; - -struct channels_reply_data { - struct ethnl_reply_data base; - struct ethtool_channels channels; -}; - -struct bpf_nf_link { - struct bpf_link link; - struct nf_hook_ops hook_ops; - netns_tracker ns_tracker; - struct net *net; - u32 dead; - const struct nf_defrag_hook *defrag_hook; -}; - -enum ctattr_timeout_generic { - CTA_TIMEOUT_GENERIC_UNSPEC = 0, - CTA_TIMEOUT_GENERIC_TIMEOUT = 1, - __CTA_TIMEOUT_GENERIC_MAX = 2, -}; - -struct nf_conn___init { - struct nf_conn ct; -}; - -struct bpf_ct_opts { - s32 netns_id; - s32 error; - u8 l4proto; - u8 dir; - u16 ct_zone_id; - u8 ct_zone_dir; - u8 reserved[3]; -}; - -enum { - NF_BPF_CT_OPTS_SZ = 16, -}; - -enum nft_immediate_attributes { - NFTA_IMMEDIATE_UNSPEC = 0, - NFTA_IMMEDIATE_DREG = 1, - NFTA_IMMEDIATE_DATA = 2, - __NFTA_IMMEDIATE_MAX = 3, -}; - -struct nft_immediate_expr { - struct nft_data data; - u8 dreg; - u8 dlen; -}; - -enum nft_ng_attributes { - NFTA_NG_UNSPEC = 0, - NFTA_NG_DREG = 1, - NFTA_NG_MODULUS = 2, - NFTA_NG_TYPE = 3, - NFTA_NG_OFFSET = 4, - NFTA_NG_SET_NAME = 5, - NFTA_NG_SET_ID = 6, - __NFTA_NG_MAX = 7, -}; - -enum nft_ng_types { - NFT_NG_INCREMENTAL = 0, - NFT_NG_RANDOM = 1, - __NFT_NG_MAX = 2, -}; - -struct nft_ng_inc { - u8 dreg; - u32 modulus; - atomic_t *counter; - u32 offset; -}; - -struct nft_ng_random { - u8 dreg; - u32 modulus; - u32 offset; -}; - -enum nft_log_attributes { - NFTA_LOG_UNSPEC = 0, - NFTA_LOG_GROUP = 1, - NFTA_LOG_PREFIX = 2, - NFTA_LOG_SNAPLEN = 3, - NFTA_LOG_QTHRESHOLD = 4, - NFTA_LOG_LEVEL = 5, - NFTA_LOG_FLAGS = 6, - __NFTA_LOG_MAX = 7, -}; - -enum nft_log_level { - NFT_LOGLEVEL_EMERG = 0, - NFT_LOGLEVEL_ALERT = 1, - NFT_LOGLEVEL_CRIT = 2, - NFT_LOGLEVEL_ERR = 3, - NFT_LOGLEVEL_WARNING = 4, - NFT_LOGLEVEL_NOTICE = 5, - NFT_LOGLEVEL_INFO = 6, - NFT_LOGLEVEL_DEBUG = 7, - NFT_LOGLEVEL_AUDIT = 8, - __NFT_LOGLEVEL_MAX = 9, -}; - -struct nft_log { - struct nf_loginfo loginfo; - char *prefix; -}; - -struct xt_nflog_info { - __u32 len; - __u16 group; - __u16 threshold; - __u16 flags; - __u16 pad; - char prefix[64]; -}; - -struct xt_ecn_info { - __u8 operation; - __u8 invert; - __u8 ip_ect; - union { - struct { - __u8 ect; - } tcp; - } proto; -}; - -struct xt_nfacct_match_info { - char name[32]; - struct nf_acct *nfacct; -}; - -struct xt_realm_info { - __u32 id; - __u32 mask; - __u8 invert; -}; - -struct hash_ip4_elem { - __be32 ip; -}; - -struct hash_ip4 { - struct htable *table; - struct htable_gc gc; - u32 maxelem; - u32 initval; - u8 bucketsize; - u8 netmask; - union nf_inet_addr bitmask; - struct list_head ad; - struct hash_ip4_elem next; -}; - -struct hash_ip4_resize_ad { - struct list_head list; - enum ipset_adt ad; - struct hash_ip4_elem d; - struct ip_set_ext ext; - struct ip_set_ext mext; - u32 flags; -}; - -struct hash_ip6_elem { - union nf_inet_addr ip; -}; - -struct hash_ip6 { - struct htable *table; - struct htable_gc gc; - u32 maxelem; - u32 initval; - u8 bucketsize; - u8 netmask; - union nf_inet_addr bitmask; - struct list_head ad; - struct hash_ip6_elem next; -}; - -struct hash_ip6_resize_ad { - struct list_head list; - enum ipset_adt ad; - struct hash_ip6_elem d; - struct ip_set_ext ext; - struct ip_set_ext mext; - u32 flags; -}; - -enum tcp_metric_index { - TCP_METRIC_RTT = 0, - TCP_METRIC_RTTVAR = 1, - TCP_METRIC_SSTHRESH = 2, - TCP_METRIC_CWND = 3, - TCP_METRIC_REORDERING = 4, - TCP_METRIC_RTT_US = 5, - TCP_METRIC_RTTVAR_US = 6, - __TCP_METRIC_MAX = 7, -}; - -enum { - TCP_METRICS_ATTR_UNSPEC = 0, - TCP_METRICS_ATTR_ADDR_IPV4 = 1, - TCP_METRICS_ATTR_ADDR_IPV6 = 2, - TCP_METRICS_ATTR_AGE = 3, - TCP_METRICS_ATTR_TW_TSVAL = 4, - TCP_METRICS_ATTR_TW_TS_STAMP = 5, - TCP_METRICS_ATTR_VALS = 6, - TCP_METRICS_ATTR_FOPEN_MSS = 7, - TCP_METRICS_ATTR_FOPEN_SYN_DROPS = 8, - TCP_METRICS_ATTR_FOPEN_SYN_DROP_TS = 9, - TCP_METRICS_ATTR_FOPEN_COOKIE = 10, - TCP_METRICS_ATTR_SADDR_IPV4 = 11, - TCP_METRICS_ATTR_SADDR_IPV6 = 12, - TCP_METRICS_ATTR_PAD = 13, - __TCP_METRICS_ATTR_MAX = 14, -}; - -enum { - TCP_METRICS_CMD_UNSPEC = 0, - TCP_METRICS_CMD_GET = 1, - TCP_METRICS_CMD_DEL = 2, - __TCP_METRICS_CMD_MAX = 3, -}; - -struct tcp_fastopen_metrics { - u16 mss; - u16 syn_loss: 10; - u16 try_exp: 2; - long unsigned int last_syn_loss; - struct tcp_fastopen_cookie cookie; -}; - -struct tcp_metrics_block { - struct tcp_metrics_block *tcpm_next; - struct net *tcpm_net; - struct inetpeer_addr tcpm_saddr; - struct inetpeer_addr tcpm_daddr; - long unsigned int tcpm_stamp; - u32 tcpm_lock; - u32 tcpm_vals[5]; - struct tcp_fastopen_metrics tcpm_fastopen; - struct callback_head callback_head; -}; - -struct tcpm_hash_bucket { - struct tcp_metrics_block *chain; -}; - -struct ipfrag_skb_cb { - union { - struct inet_skb_parm h4; - struct inet6_skb_parm h6; - }; - struct sk_buff *next_frag; - int frag_run_len; - int ip_defrag_offset; -}; - -struct ah_data { - int icv_full_len; - int icv_trunc_len; - struct crypto_ahash *ahash; -}; - -struct ah_skb_cb { - struct xfrm_skb_cb xfrm; - void *tmp; -}; - -enum { - XFRM_LOOKUP_ICMP = 1, - XFRM_LOOKUP_QUEUE = 2, - XFRM_LOOKUP_KEEP_DST_REF = 4, -}; - -struct xfrm_if_decode_session_result { - struct net *net; - u32 if_id; -}; - -struct xfrm_if_cb { - bool (*decode_session)(struct sk_buff *, short unsigned int, struct xfrm_if_decode_session_result *); -}; - -struct xfrm_flo { - struct dst_entry *dst_orig; - u8 flags; -}; - -struct xfrm_pol_inexact_node { - struct rb_node node; - union { - xfrm_address_t addr; - struct callback_head rcu; - }; - u8 prefixlen; - struct rb_root root; - struct hlist_head hhead; -}; - -struct xfrm_pol_inexact_key { - possible_net_t net; - u32 if_id; - u16 family; - u8 dir; - u8 type; -}; - -struct xfrm_pol_inexact_bin { - struct xfrm_pol_inexact_key k; - struct rhash_head head; - struct hlist_head hhead; - seqcount_spinlock_t count; - struct rb_root root_d; - struct rb_root root_s; - struct list_head inexact_bins; - struct callback_head rcu; -}; - -enum xfrm_pol_inexact_candidate_type { - XFRM_POL_CAND_BOTH = 0, - XFRM_POL_CAND_SADDR = 1, - XFRM_POL_CAND_DADDR = 2, - XFRM_POL_CAND_ANY = 3, - XFRM_POL_CAND_MAX = 4, -}; - -struct xfrm_pol_inexact_candidates { - struct hlist_head *res[4]; -}; - -struct xfrm_flow_keys { - struct flow_dissector_key_basic basic; - struct flow_dissector_key_control control; - union { - struct flow_dissector_key_ipv4_addrs ipv4; - struct flow_dissector_key_ipv6_addrs ipv6; - } addrs; - struct flow_dissector_key_ip ip; - struct flow_dissector_key_icmp icmp; - struct flow_dissector_key_ports ports; - struct flow_dissector_key_keyid gre; -}; - -struct ipv6_mreq { - struct in6_addr ipv6mr_multiaddr; - int ipv6mr_ifindex; -}; - -struct group_req { - __u32 gr_interface; - struct __kernel_sockaddr_storage gr_group; -}; - -struct compat_group_req { - __u32 gr_interface; - struct __kernel_sockaddr_storage gr_group; -} __attribute__((packed)); - -struct compat_group_source_req { - __u32 gsr_interface; - struct __kernel_sockaddr_storage gsr_group; - struct __kernel_sockaddr_storage gsr_source; -} __attribute__((packed)); - -struct compat_group_filter { - union { - struct { - __u32 gf_interface_aux; - struct __kernel_sockaddr_storage gf_group_aux; - __u32 gf_fmode_aux; - __u32 gf_numsrc_aux; - struct __kernel_sockaddr_storage gf_slist[1]; - } __attribute__((packed)); - struct { - __u32 gf_interface; - struct __kernel_sockaddr_storage gf_group; - __u32 gf_fmode; - __u32 gf_numsrc; - struct __kernel_sockaddr_storage gf_slist_flex[0]; - } __attribute__((packed)); - }; -}; - -struct ip6_ra_chain { - struct ip6_ra_chain *next; - struct sock *sk; - int sel; - void (*destructor)(struct sock *); -}; - -struct sr6_tlv { - __u8 type; - __u8 len; - __u8 data[0]; -}; - -enum { - SEG6_ATTR_UNSPEC = 0, - SEG6_ATTR_DST = 1, - SEG6_ATTR_DSTLEN = 2, - SEG6_ATTR_HMACKEYID = 3, - SEG6_ATTR_SECRET = 4, - SEG6_ATTR_SECRETLEN = 5, - SEG6_ATTR_ALGID = 6, - SEG6_ATTR_HMACINFO = 7, - __SEG6_ATTR_MAX = 8, -}; - -enum { - SEG6_CMD_UNSPEC = 0, - SEG6_CMD_SETHMAC = 1, - SEG6_CMD_DUMPHMAC = 2, - SEG6_CMD_SET_TUNSRC = 3, - SEG6_CMD_GET_TUNSRC = 4, - __SEG6_CMD_MAX = 5, -}; - -struct rt0_hdr { - struct ipv6_rt_hdr rt_hdr; - __u32 reserved; - struct in6_addr addr[0]; -}; - -struct tmp_ext { - struct in6_addr saddr; - struct in6_addr daddr; - char hdrs[0]; -}; - -struct __bridge_info { - __u64 designated_root; - __u64 bridge_id; - __u32 root_path_cost; - __u32 max_age; - __u32 hello_time; - __u32 forward_delay; - __u32 bridge_max_age; - __u32 bridge_hello_time; - __u32 bridge_forward_delay; - __u8 topology_change; - __u8 topology_change_detected; - __u8 root_port; - __u8 stp_enabled; - __u32 ageing_time; - __u32 gc_interval; - __u32 hello_timer_value; - __u32 tcn_timer_value; - __u32 topology_change_timer_value; - __u32 gc_timer_value; -}; - -struct __port_info { - __u64 designated_root; - __u64 designated_bridge; - __u16 port_id; - __u16 designated_port; - __u32 path_cost; - __u32 designated_cost; - __u8 state; - __u8 top_change_ack; - __u8 config_pending; - __u8 unused0; - __u32 message_age_timer_value; - __u32 forward_delay_timer_value; - __u32 hold_timer_value; -}; - -struct brnf_net { - bool enabled; - struct ctl_table_header *ctl_hdr; - int call_iptables; - int call_ip6tables; - int call_arptables; - int filter_vlan_tagged; - int filter_pppoe_tagged; - int pass_vlan_indev; -}; - -struct brnf_frag_data { - local_lock_t bh_lock; - char mac[22]; - u8 encap_size; - u8 size; - u16 vlan_tci; - __be16 vlan_proto; -}; - -struct ebt_nflog_info { - __u32 len; - __u16 group; - __u16 threshold; - __u16 flags; - __u16 pad; - char prefix[64]; -}; - -struct thread_deferred_req { - struct cache_deferred_req handle; - struct completion completion; -}; - -struct cache_queue { - struct list_head list; - int reader; -}; - -struct cache_request { - struct cache_queue q; - struct cache_head *item; - char *buf; - int len; - int readers; -}; - -struct cache_reader { - struct cache_queue q; - int offset; -}; - -enum sctp_spc_state { - SCTP_ADDR_AVAILABLE = 0, - SCTP_ADDR_UNREACHABLE = 1, - SCTP_ADDR_REMOVED = 2, - SCTP_ADDR_ADDED = 3, - SCTP_ADDR_MADE_PRIM = 4, - SCTP_ADDR_CONFIRMED = 5, - SCTP_ADDR_POTENTIALLY_FAILED = 6, -}; - -enum ovs_datapath_cmd { - OVS_DP_CMD_UNSPEC = 0, - OVS_DP_CMD_NEW = 1, - OVS_DP_CMD_DEL = 2, - OVS_DP_CMD_GET = 3, - OVS_DP_CMD_SET = 4, -}; - -enum ovs_datapath_attr { - OVS_DP_ATTR_UNSPEC = 0, - OVS_DP_ATTR_NAME = 1, - OVS_DP_ATTR_UPCALL_PID = 2, - OVS_DP_ATTR_STATS = 3, - OVS_DP_ATTR_MEGAFLOW_STATS = 4, - OVS_DP_ATTR_USER_FEATURES = 5, - OVS_DP_ATTR_PAD = 6, - OVS_DP_ATTR_MASKS_CACHE_SIZE = 7, - OVS_DP_ATTR_PER_CPU_PIDS = 8, - OVS_DP_ATTR_IFINDEX = 9, - __OVS_DP_ATTR_MAX = 10, -}; - -struct ovs_dp_stats { - __u64 n_hit; - __u64 n_missed; - __u64 n_lost; - __u64 n_flows; -}; - -struct ovs_dp_megaflow_stats { - __u64 n_mask_hit; - __u32 n_masks; - __u32 pad0; - __u64 n_cache_hit; - __u64 pad1; -}; - -struct ovs_vport_stats { - __u64 rx_packets; - __u64 tx_packets; - __u64 rx_bytes; - __u64 tx_bytes; - __u64 rx_errors; - __u64 tx_errors; - __u64 rx_dropped; - __u64 tx_dropped; -}; - -enum ovs_packet_cmd { - OVS_PACKET_CMD_UNSPEC = 0, - OVS_PACKET_CMD_MISS = 1, - OVS_PACKET_CMD_ACTION = 2, - OVS_PACKET_CMD_EXECUTE = 3, -}; - -enum ovs_packet_attr { - OVS_PACKET_ATTR_UNSPEC = 0, - OVS_PACKET_ATTR_PACKET = 1, - OVS_PACKET_ATTR_KEY = 2, - OVS_PACKET_ATTR_ACTIONS = 3, - OVS_PACKET_ATTR_USERDATA = 4, - OVS_PACKET_ATTR_EGRESS_TUN_KEY = 5, - OVS_PACKET_ATTR_UNUSED1 = 6, - OVS_PACKET_ATTR_UNUSED2 = 7, - OVS_PACKET_ATTR_PROBE = 8, - OVS_PACKET_ATTR_MRU = 9, - OVS_PACKET_ATTR_LEN = 10, - OVS_PACKET_ATTR_HASH = 11, - __OVS_PACKET_ATTR_MAX = 12, -}; - -enum ovs_vport_attr { - OVS_VPORT_ATTR_UNSPEC = 0, - OVS_VPORT_ATTR_PORT_NO = 1, - OVS_VPORT_ATTR_TYPE = 2, - OVS_VPORT_ATTR_NAME = 3, - OVS_VPORT_ATTR_OPTIONS = 4, - OVS_VPORT_ATTR_UPCALL_PID = 5, - OVS_VPORT_ATTR_STATS = 6, - OVS_VPORT_ATTR_PAD = 7, - OVS_VPORT_ATTR_IFINDEX = 8, - OVS_VPORT_ATTR_NETNSID = 9, - OVS_VPORT_ATTR_UPCALL_STATS = 10, - __OVS_VPORT_ATTR_MAX = 11, -}; - -enum ovs_flow_cmd { - OVS_FLOW_CMD_UNSPEC = 0, - OVS_FLOW_CMD_NEW = 1, - OVS_FLOW_CMD_DEL = 2, - OVS_FLOW_CMD_GET = 3, - OVS_FLOW_CMD_SET = 4, -}; - -enum ovs_flow_attr { - OVS_FLOW_ATTR_UNSPEC = 0, - OVS_FLOW_ATTR_KEY = 1, - OVS_FLOW_ATTR_ACTIONS = 2, - OVS_FLOW_ATTR_STATS = 3, - OVS_FLOW_ATTR_TCP_FLAGS = 4, - OVS_FLOW_ATTR_USED = 5, - OVS_FLOW_ATTR_CLEAR = 6, - OVS_FLOW_ATTR_MASK = 7, - OVS_FLOW_ATTR_PROBE = 8, - OVS_FLOW_ATTR_UFID = 9, - OVS_FLOW_ATTR_UFID_FLAGS = 10, - OVS_FLOW_ATTR_PAD = 11, - __OVS_FLOW_ATTR_MAX = 12, -}; - -enum ovs_pkt_hash_types { - OVS_PACKET_HASH_SW_BIT = 4294967296ULL, - OVS_PACKET_HASH_L4_BIT = 8589934592ULL, -}; - -union vdso_data_store { - struct vdso_data data[2]; - u8 page[4096]; -}; - -enum vvar_pages { - VVAR_DATA_PAGE_OFFSET = 0, - VVAR_TIMENS_PAGE_OFFSET = 1, - VVAR_NR_PAGES = 2, -}; - -enum vdso_abi { - VDSO_ABI_AA64 = 0, - VDSO_ABI_AA32 = 1, -}; - -struct vdso_abi_info { - const char *name; - const char *vdso_code_start; - const char *vdso_code_end; - long unsigned int vdso_pages; - struct vm_special_mapping *dm; - struct vm_special_mapping *cm; -}; - -enum aarch64_map { - AA64_MAP_VVAR = 0, - AA64_MAP_VDSO = 1, -}; - -enum { - CAP_HWCAP = 1, -}; - -enum kvm_mode { - KVM_MODE_DEFAULT = 0, - KVM_MODE_PROTECTED = 1, - KVM_MODE_NV = 2, - KVM_MODE_NONE = 3, -}; - -struct __ftr_reg_entry { - u32 sys_id; - struct arm64_ftr_reg *reg; -}; - -typedef void kpti_remap_fn(int, int, phys_addr_t, long unsigned int); - -struct fault_info { - int (*fn)(long unsigned int, long unsigned int, struct pt_regs *); - int sig; - int code; - const char *name; -}; - -typedef struct { - rwlock_t *lock; -} class_write_lock_irq_t; - -struct ptrace_peeksiginfo_args { - __u64 off; - __u32 flags; - __s32 nr; -}; - -struct ptrace_syscall_info { - __u8 op; - __u8 pad[3]; - __u32 arch; - __u64 instruction_pointer; - __u64 stack_pointer; - union { - struct { - __u64 nr; - __u64 args[6]; - } entry; - struct { - __s64 rval; - __u8 is_error; - } exit; - struct { - __u64 nr; - __u64 args[6]; - __u32 ret_data; - } seccomp; - }; -}; - -struct ptrace_rseq_configuration { - __u64 rseq_abi_pointer; - __u32 rseq_abi_size; - __u32 signature; - __u32 flags; - __u32 pad; -}; - -enum vhost_task_flags { - VHOST_TASK_FLAGS_STOP = 0, - VHOST_TASK_FLAGS_KILLED = 1, -}; - -struct vhost_task { - bool (*fn)(void *); - void (*handle_sigkill)(void *); - void *data; - struct completion exited; - long unsigned int flags; - struct task_struct *task; - struct mutex exit_mutex; -}; - -struct nbcon_state { - union { - unsigned int atom; - struct { - unsigned int prio: 2; - unsigned int req_prio: 2; - unsigned int unsafe: 1; - unsigned int unsafe_takeover: 1; - unsigned int cpu: 24; - }; - }; -}; - -enum { - IRQ_STARTUP_NORMAL = 0, - IRQ_STARTUP_MANAGED = 1, - IRQ_STARTUP_ABORT = 2, -}; - -struct cma; - -struct ce_unbind { - struct clock_event_device *ce; - int res; -}; - -struct trace_event_raw_csd_queue_cpu { - struct trace_entry ent; - unsigned int cpu; - void *callsite; - void *func; - void *csd; - char __data[0]; -}; - -struct trace_event_raw_csd_function { - struct trace_entry ent; - void *func; - void *csd; - char __data[0]; -}; - -struct trace_event_data_offsets_csd_queue_cpu {}; - -struct trace_event_data_offsets_csd_function {}; - -typedef void (*btf_trace_csd_queue_cpu)(void *, const unsigned int, long unsigned int, smp_call_func_t, call_single_data_t *); - -typedef void (*btf_trace_csd_function_entry)(void *, smp_call_func_t, call_single_data_t *); - -typedef void (*btf_trace_csd_function_exit)(void *, smp_call_func_t, call_single_data_t *); - -struct call_function_data { - call_single_data_t *csd; - cpumask_var_t cpumask; - cpumask_var_t cpumask_ipi; -}; - -struct smp_call_on_cpu_struct { - struct work_struct work; - struct completion done; - int (*func)(void *); - void *data; - int ret; - int cpu; -}; - -struct action_cache { - long unsigned int allow_native[8]; -}; - -struct notification; - -struct seccomp_filter { - refcount_t refs; - refcount_t users; - bool log; - bool wait_killable_recv; - struct action_cache cache; - struct seccomp_filter *prev; - struct bpf_prog *prog; - struct notification *notif; - struct mutex notify_lock; - wait_queue_head_t wqh; -}; - -struct seccomp_metadata { - __u64 filter_off; - __u64 flags; -}; - -struct seccomp_notif_sizes { - __u16 seccomp_notif; - __u16 seccomp_notif_resp; - __u16 seccomp_data; -}; - -struct seccomp_notif { - __u64 id; - __u32 pid; - __u32 flags; - struct seccomp_data data; -}; - -struct seccomp_notif_resp { - __u64 id; - __s64 val; - __s32 error; - __u32 flags; -}; - -struct seccomp_notif_addfd { - __u64 id; - __u32 flags; - __u32 srcfd; - __u32 newfd; - __u32 newfd_flags; -}; - -enum notify_state { - SECCOMP_NOTIFY_INIT = 0, - SECCOMP_NOTIFY_SENT = 1, - SECCOMP_NOTIFY_REPLIED = 2, -}; - -struct seccomp_knotif { - struct task_struct *task; - u64 id; - const struct seccomp_data *data; - enum notify_state state; - int error; - long int val; - u32 flags; - struct completion ready; - struct list_head list; - struct list_head addfd; -}; - -struct seccomp_kaddfd { - struct file *file; - int fd; - unsigned int flags; - __u32 ioctl_flags; - union { - bool setfd; - int ret; - }; - struct completion completion; - struct list_head list; -}; - -struct notification { - atomic_t requests; - u32 flags; - u64 next_id; - struct list_head notifications; -}; - -struct seccomp_log_name { - u32 log; - const char *name; -}; - -struct eprobe_trace_entry_head { - struct trace_entry ent; -}; - -struct trace_eprobe { - const char *event_system; - const char *event_name; - char *filter_str; - struct trace_event_call *event; - struct dyn_event devent; - struct trace_probe tp; -}; - -struct eprobe_data { - struct trace_event_file *file; - struct trace_eprobe *ep; -}; - -struct bpf_kfunc_desc { - struct btf_func_model func_model; - u32 func_id; - s32 imm; - u16 offset; - long unsigned int addr; -}; - -struct bpf_kfunc_desc_tab { - struct bpf_kfunc_desc descs[256]; - u32 nr_descs; -}; - -struct bpf_kfunc_btf { - struct btf *btf; - struct module *module; - u16 offset; -}; - -struct bpf_kfunc_btf_tab { - struct bpf_kfunc_btf descs[256]; - u32 nr_descs; -}; - -enum { - BPF_MAX_LOOPS = 8388608, -}; - -typedef u32 (*bpf_convert_ctx_access_t)(enum bpf_access_type, const struct bpf_insn *, struct bpf_insn *, struct bpf_prog *, u32 *); - -struct bpf_verifier_stack_elem { - struct bpf_verifier_state st; - int insn_idx; - int prev_insn_idx; - struct bpf_verifier_stack_elem *next; - u32 log_pos; -}; - -struct bpf_call_arg_meta { - struct bpf_map *map_ptr; - bool raw_mode; - bool pkt_access; - u8 release_regno; - int regno; - int access_size; - int mem_size; - u64 msize_max_value; - int ref_obj_id; - int dynptr_id; - int map_uid; - int func_id; - struct btf *btf; - u32 btf_id; - struct btf *ret_btf; - u32 ret_btf_id; - u32 subprogno; - struct btf_field *kptr_field; -}; - -struct bpf_kfunc_call_arg_meta { - struct btf *btf; - u32 func_id; - u32 kfunc_flags; - const struct btf_type *func_proto; - const char *func_name; - u32 ref_obj_id; - u8 release_regno; - bool r0_rdonly; - u32 ret_btf_id; - u64 r0_size; - u32 subprogno; - struct { - u64 value; - bool found; - } arg_constant; - struct btf *arg_btf; - u32 arg_btf_id; - bool arg_owning_ref; - struct { - struct btf_field *field; - } arg_list_head; - struct { - struct btf_field *field; - } arg_rbtree_root; - struct { - enum bpf_dynptr_type type; - u32 id; - u32 ref_obj_id; - } initialized_dynptr; - struct { - u8 spi; - u8 frameno; - } iter; - struct { - struct bpf_map *ptr; - int uid; - } map; - u64 mem_size; -}; - -enum reg_arg_type { - SRC_OP = 0, - DST_OP = 1, - DST_OP_NO_MARK = 2, -}; - -struct linked_reg { - u8 frameno; - union { - u8 spi; - u8 regno; - }; - bool is_reg; -}; - -struct linked_regs { - int cnt; - struct linked_reg entries[6]; -}; - -enum bpf_access_src { - ACCESS_DIRECT = 1, - ACCESS_HELPER = 2, -}; - -struct task_struct__safe_rcu { - const cpumask_t *cpus_ptr; - struct css_set *cgroups; - struct task_struct *real_parent; - struct task_struct *group_leader; -}; - -struct cgroup__safe_rcu { - struct kernfs_node *kn; -}; - -struct css_set__safe_rcu { - struct cgroup *dfl_cgrp; -}; - -struct mm_struct__safe_rcu_or_null { - struct file *exe_file; -}; - -struct sk_buff__safe_rcu_or_null { - struct sock *sk; -}; - -struct request_sock__safe_rcu_or_null { - struct sock *sk; -}; - -struct bpf_iter_meta__safe_trusted { - struct seq_file *seq; -}; - -struct bpf_iter__task__safe_trusted { - struct bpf_iter_meta *meta; - struct task_struct *task; -}; - -struct linux_binprm__safe_trusted { - struct file *file; -}; - -struct file__safe_trusted { - struct inode *f_inode; -}; - -struct dentry__safe_trusted { - struct inode *d_inode; -}; - -struct socket__safe_trusted_or_null { - struct sock *sk; -}; - -struct bpf_reg_types { - const enum bpf_reg_type types[10]; - u32 *btf_id; -}; - -enum { - AT_PKT_END = -1, - BEYOND_PKT_END = -2, -}; - -typedef int (*set_callee_state_fn)(struct bpf_verifier_env *, struct bpf_func_state *, struct bpf_func_state *, int); - -enum { - KF_ARG_DYNPTR_ID = 0, - KF_ARG_LIST_HEAD_ID = 1, - KF_ARG_LIST_NODE_ID = 2, - KF_ARG_RB_ROOT_ID = 3, - KF_ARG_RB_NODE_ID = 4, - KF_ARG_WORKQUEUE_ID = 5, -}; - -enum kfunc_ptr_arg_type { - KF_ARG_PTR_TO_CTX = 0, - KF_ARG_PTR_TO_ALLOC_BTF_ID = 1, - KF_ARG_PTR_TO_REFCOUNTED_KPTR = 2, - KF_ARG_PTR_TO_DYNPTR = 3, - KF_ARG_PTR_TO_ITER = 4, - KF_ARG_PTR_TO_LIST_HEAD = 5, - KF_ARG_PTR_TO_LIST_NODE = 6, - KF_ARG_PTR_TO_BTF_ID = 7, - KF_ARG_PTR_TO_MEM = 8, - KF_ARG_PTR_TO_MEM_SIZE = 9, - KF_ARG_PTR_TO_CALLBACK = 10, - KF_ARG_PTR_TO_RB_ROOT = 11, - KF_ARG_PTR_TO_RB_NODE = 12, - KF_ARG_PTR_TO_NULL = 13, - KF_ARG_PTR_TO_CONST_STR = 14, - KF_ARG_PTR_TO_MAP = 15, - KF_ARG_PTR_TO_WORKQUEUE = 16, -}; - -enum special_kfunc_type { - KF_bpf_obj_new_impl = 0, - KF_bpf_obj_drop_impl = 1, - KF_bpf_refcount_acquire_impl = 2, - KF_bpf_list_push_front_impl = 3, - KF_bpf_list_push_back_impl = 4, - KF_bpf_list_pop_front = 5, - KF_bpf_list_pop_back = 6, - KF_bpf_cast_to_kern_ctx = 7, - KF_bpf_rdonly_cast = 8, - KF_bpf_rcu_read_lock = 9, - KF_bpf_rcu_read_unlock = 10, - KF_bpf_rbtree_remove = 11, - KF_bpf_rbtree_add_impl = 12, - KF_bpf_rbtree_first = 13, - KF_bpf_dynptr_from_skb = 14, - KF_bpf_dynptr_from_xdp = 15, - KF_bpf_dynptr_slice = 16, - KF_bpf_dynptr_slice_rdwr = 17, - KF_bpf_dynptr_clone = 18, - KF_bpf_percpu_obj_new_impl = 19, - KF_bpf_percpu_obj_drop_impl = 20, - KF_bpf_throw = 21, - KF_bpf_wq_set_callback_impl = 22, - KF_bpf_preempt_disable = 23, - KF_bpf_preempt_enable = 24, - KF_bpf_iter_css_task_new = 25, - KF_bpf_session_cookie = 26, -}; - -enum { - REASON_BOUNDS = -1, - REASON_TYPE = -2, - REASON_PATHS = -3, - REASON_LIMIT = -4, - REASON_STACK = -5, -}; - -struct bpf_sanitize_info { - struct bpf_insn_aux_data aux; - bool mask_to_left; -}; - -enum { - DISCOVERED = 16, - EXPLORED = 32, - FALLTHROUGH = 1, - BRANCH = 2, -}; - -enum { - DONE_EXPLORING = 0, - KEEP_EXPLORING = 1, -}; - -enum exact_level { - NOT_EXACT = 0, - EXACT = 1, - RANGE_WITHIN = 2, -}; - -struct bpf_iter; - -union __u128_halves { - u128 full; - struct { - u64 low; - u64 high; - }; -}; - -struct kmem_cache_cpu { - union { - struct { - void **freelist; - long unsigned int tid; - }; - freelist_aba_t freelist_tid; - }; - struct slab *slab; - struct slab *partial; - local_lock_t lock; -}; - -struct kmem_cache_node { - spinlock_t list_lock; - long unsigned int nr_partial; - struct list_head partial; - atomic_long_t nr_slabs; - atomic_long_t total_objects; - struct list_head full; -}; - -struct memory_notify { - long unsigned int altmap_start_pfn; - long unsigned int altmap_nr_pages; - long unsigned int start_pfn; - long unsigned int nr_pages; - int status_change_nid_normal; - int status_change_nid; -}; - -struct partial_context { - gfp_t flags; - unsigned int orig_size; - void *object; -}; - -struct track { - long unsigned int addr; - depot_stack_handle_t handle; - int cpu; - int pid; - long unsigned int when; -}; - -enum track_item { - TRACK_ALLOC = 0, - TRACK_FREE = 1, -}; - -enum stat_item { - ALLOC_FASTPATH = 0, - ALLOC_SLOWPATH = 1, - FREE_FASTPATH = 2, - FREE_SLOWPATH = 3, - FREE_FROZEN = 4, - FREE_ADD_PARTIAL = 5, - FREE_REMOVE_PARTIAL = 6, - ALLOC_FROM_PARTIAL = 7, - ALLOC_SLAB = 8, - ALLOC_REFILL = 9, - ALLOC_NODE_MISMATCH = 10, - FREE_SLAB = 11, - CPUSLAB_FLUSH = 12, - DEACTIVATE_FULL = 13, - DEACTIVATE_EMPTY = 14, - DEACTIVATE_TO_HEAD = 15, - DEACTIVATE_TO_TAIL = 16, - DEACTIVATE_REMOTE_FREES = 17, - DEACTIVATE_BYPASS = 18, - ORDER_FALLBACK = 19, - CMPXCHG_DOUBLE_CPU_FAIL = 20, - CMPXCHG_DOUBLE_FAIL = 21, - CPU_PARTIAL_ALLOC = 22, - CPU_PARTIAL_FREE = 23, - CPU_PARTIAL_NODE = 24, - CPU_PARTIAL_DRAIN = 25, - NR_SLUB_STAT_ITEMS = 26, -}; - -struct slub_flush_work { - struct work_struct work; - struct kmem_cache *s; - bool skip; -}; - -struct detached_freelist { - struct slab *slab; - void *tail; - void *freelist; - int cnt; - struct kmem_cache *s; -}; - -struct location { - depot_stack_handle_t handle; - long unsigned int count; - long unsigned int addr; - long unsigned int waste; - long long int sum_time; - long int min_time; - long int max_time; - long int min_pid; - long int max_pid; - long unsigned int cpus[1]; - nodemask_t nodes; -}; - -struct loc_track { - long unsigned int max; - long unsigned int count; - struct location *loc; - loff_t idx; -}; - -enum slab_stat_type { - SL_ALL = 0, - SL_PARTIAL = 1, - SL_CPU = 2, - SL_OBJECTS = 3, - SL_TOTAL = 4, -}; - -struct slab_attribute { - struct attribute attr; - ssize_t (*show)(struct kmem_cache *, char *); - ssize_t (*store)(struct kmem_cache *, const char *, size_t); -}; - -struct saved_alias { - struct kmem_cache *s; - const char *name; - struct saved_alias *next; -}; - -typedef freelist_full_t pcp_op_T__; - -struct stat { - long unsigned int st_dev; - long unsigned int st_ino; - unsigned int st_mode; - unsigned int st_nlink; - unsigned int st_uid; - unsigned int st_gid; - long unsigned int st_rdev; - long unsigned int __pad1; - long int st_size; - int st_blksize; - int __pad2; - long int st_blocks; - long int st_atime; - long unsigned int st_atime_nsec; - long int st_mtime; - long unsigned int st_mtime_nsec; - long int st_ctime; - long unsigned int st_ctime_nsec; - unsigned int __unused4; - unsigned int __unused5; -}; - -struct simple_transaction_argresp { - ssize_t size; - char data[0]; -}; - -enum { - DIR_OFFSET_FIRST = 2, - DIR_OFFSET_EOD = 2147483647, -}; - -enum { - DIR_OFFSET_MIN = 3, - DIR_OFFSET_MAX = 2147483646, -}; - -struct simple_attr { - int (*get)(void *, u64 *); - int (*set)(void *, u64); - char get_buf[24]; - char set_buf[24]; - void *data; - const char *fmt; - struct mutex mutex; -}; - -enum fsconfig_command { - FSCONFIG_SET_FLAG = 0, - FSCONFIG_SET_STRING = 1, - FSCONFIG_SET_BINARY = 2, - FSCONFIG_SET_PATH = 3, - FSCONFIG_SET_PATH_EMPTY = 4, - FSCONFIG_SET_FD = 5, - FSCONFIG_CMD_CREATE = 6, - FSCONFIG_CMD_RECONFIGURE = 7, - FSCONFIG_CMD_CREATE_EXCL = 8, -}; - -struct timerfd_ctx { - union { - struct hrtimer tmr; - struct alarm alarm; - } t; - ktime_t tintv; - ktime_t moffs; - wait_queue_head_t wqh; - u64 ticks; - int clockid; - short unsigned int expired; - short unsigned int settime_flags; - struct callback_head rcu; - struct list_head clist; - spinlock_t cancel_lock; - bool might_cancel; -}; - -enum { - MBE_REFERENCED_B = 0, - MBE_REUSABLE_B = 1, -}; - -struct mb_cache_entry { - struct list_head e_list; - struct hlist_bl_node e_hash_list; - atomic_t e_refcnt; - u32 e_key; - long unsigned int e_flags; - u64 e_value; -}; - -struct mb_cache { - struct hlist_bl_head *c_hash; - int c_bucket_bits; - long unsigned int c_max_entries; - spinlock_t c_list_lock; - struct list_head c_list; - long unsigned int c_entry_count; - struct shrinker *c_shrink; - struct work_struct c_shrink_work; -}; - -enum handle_to_path_flags { - HANDLE_CHECK_PERMS = 1, - HANDLE_CHECK_SUBTREE = 2, -}; - -struct handle_to_path_ctx { - struct path root; - enum handle_to_path_flags flags; - unsigned int fh_flags; -}; - -enum SHIFT_DIRECTION { - SHIFT_LEFT = 0, - SHIFT_RIGHT = 1, -}; - -struct ext4_extent_tail { - __le32 et_checksum; -}; - -struct ext4_dir_entry { - __le32 inode; - __le16 rec_len; - __le16 name_len; - char name[255]; -}; - -struct ext4_dir_entry_tail { - __le32 det_reserved_zero1; - __le16 det_rec_len; - __u8 det_reserved_zero2; - __u8 det_reserved_ft; - __le32 det_checksum; -}; - -typedef enum { - EITHER = 0, - INDEX = 1, - DIRENT = 2, - DIRENT_HTREE = 3, -} dirblock_type_t; - -struct fake_dirent { - __le32 inode; - __le16 rec_len; - u8 name_len; - u8 file_type; -}; - -struct dx_countlimit { - __le16 limit; - __le16 count; -}; - -struct dx_entry { - __le32 hash; - __le32 block; -}; - -struct dx_root_info { - __le32 reserved_zero; - u8 hash_version; - u8 info_length; - u8 indirect_levels; - u8 unused_flags; -}; - -struct dx_root { - struct fake_dirent dot; - char dot_name[4]; - struct fake_dirent dotdot; - char dotdot_name[4]; - struct dx_root_info info; - struct dx_entry entries[0]; -}; - -struct dx_node { - struct fake_dirent fake; - struct dx_entry entries[0]; -}; - -struct dx_frame { - struct buffer_head *bh; - struct dx_entry *entries; - struct dx_entry *at; -}; - -struct dx_map_entry { - u32 hash; - u16 offs; - u16 size; -}; - -struct dx_tail { - u32 dt_reserved; - __le32 dt_checksum; -}; - -struct ext4_renament { - struct inode *dir; - struct dentry *dentry; - struct inode *inode; - bool is_dir; - int dir_nlink_delta; - struct buffer_head *bh; - struct ext4_dir_entry_2 *de; - int inlined; - struct buffer_head *dir_bh; - struct ext4_dir_entry_2 *parent_de; - int dir_inlined; -}; - -struct squashfs_xattr_id { - __le64 xattr; - __le32 count; - __le32 size; -}; - -struct squashfs_xattr_id_table { - __le64 xattr_table_start; - __le32 xattr_ids; - __le32 unused; -}; - -struct boot_sector { - __u8 jmp_boot[3]; - __u8 fs_name[8]; - __u8 must_be_zero[53]; - __le64 partition_offset; - __le64 vol_length; - __le32 fat_offset; - __le32 fat_length; - __le32 clu_offset; - __le32 clu_count; - __le32 root_cluster; - __le32 vol_serial; - __u8 fs_revision[2]; - __le16 vol_flags; - __u8 sect_size_bits; - __u8 sect_per_clus_bits; - __u8 num_fats; - __u8 drv_sel; - __u8 percent_in_use; - __u8 reserved[7]; - __u8 boot_code[390]; - __le16 signature; -}; - -enum { - Opt_uid___9 = 0, - Opt_gid___9 = 1, - Opt_umask___4 = 2, - Opt_dmask___3 = 3, - Opt_fmask___3 = 4, - Opt_allow_utime___2 = 5, - Opt_charset___2 = 6, - Opt_errors___5 = 7, - Opt_discard___7 = 8, - Opt_keep_last_dots = 9, - Opt_sys_tz = 10, - Opt_time_offset___2 = 11, - Opt_zero_size_dir = 12, - Opt_utf8___4 = 13, - Opt_debug___4 = 14, - Opt_namecase = 15, - Opt_codepage___2 = 16, -}; - -struct nfs_find_desc { - struct nfs_fh *fh; - struct nfs_fattr *fattr; -}; - -struct compound_hdr { - int32_t status; - uint32_t nops; - __be32 *nops_p; - uint32_t taglen; - char *tag; - uint32_t replen; - u32 minorversion; -}; - -struct read_plus_segment { - enum data_content4 type; - uint64_t offset; - union { - struct { - uint64_t length; - } hole; - struct { - uint32_t length; - unsigned int from; - } data; - }; -}; - -struct bl_pipe_msg { - struct rpc_pipe_msg msg; - wait_queue_head_t *bl_wq; -}; - -struct bl_msg_hdr { - u8 type; - u16 totallen; -}; - -struct nfsd_fcache_disposal { - spinlock_t lock; - struct list_head freeme; -}; - -struct trace_event_raw_nlmclnt_lock_event { - struct trace_entry ent; - u32 oh; - u32 svid; - u32 fh; - long unsigned int status; - u64 start; - u64 len; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_data_offsets_nlmclnt_lock_event { - u32 addr; - const void *addr_ptr_; -}; - -typedef void (*btf_trace_nlmclnt_test)(void *, const struct nlm_lock *, const struct sockaddr *, unsigned int, __be32); - -typedef void (*btf_trace_nlmclnt_lock)(void *, const struct nlm_lock *, const struct sockaddr *, unsigned int, __be32); - -typedef void (*btf_trace_nlmclnt_unlock)(void *, const struct nlm_lock *, const struct sockaddr *, unsigned int, __be32); - -typedef void (*btf_trace_nlmclnt_grant)(void *, const struct nlm_lock *, const struct sockaddr *, unsigned int, __be32); - -struct reparse_symlink_data_buffer { - __le32 ReparseTag; - __le16 ReparseDataLength; - __u16 Reserved; - __le16 SubstituteNameOffset; - __le16 SubstituteNameLength; - __le16 PrintNameOffset; - __le16 PrintNameLength; - __le32 Flags; - __u8 PathBuffer[0]; -}; - -struct smb2_create_ea_ctx { - struct create_context_hdr ctx; - __u8 name[8]; - struct smb2_file_full_ea_info ea; -}; - -struct wsl_xattr { - const char *name; - __le64 value; - u16 size; - u32 next; -}; - -struct INDEX_NAMES { - const __le16 *name; - u8 name_len; -}; - -struct bmp_buf { - struct ATTRIB *b; - struct mft_inode *mi; - struct buffer_head *bh; - ulong *buf; - size_t bit; - u32 nbits; - u64 new_valid; -}; - -struct fuse_setxattr_in { - uint32_t size; - uint32_t flags; - uint32_t setxattr_flags; - uint32_t padding; -}; - -struct fuse_getxattr_in { - uint32_t size; - uint32_t padding; -}; - -struct fuse_getxattr_out { - uint32_t size; - uint32_t padding; -}; - -struct ovl_copy_up_ctx { - struct dentry *parent; - struct dentry *dentry; - struct path lowerpath; - struct kstat stat; - struct kstat pstat; - const char *link; - struct dentry *destdir; - struct qstr destname; - struct dentry *workdir; - const struct ovl_fh *origin_fh; - bool origin; - bool indexed; - bool metacopy; - bool metacopy_digest; - bool metadata_fsync; -}; - -struct ovl_cu_creds { - const struct cred *old; - struct cred *new; -}; - -struct xfs_dir3_data_hdr { - struct xfs_dir3_blk_hdr hdr; - xfs_dir2_data_free_t best_free[3]; - __be32 pad; -}; - -struct xfs_attr_sf_hdr { - __be16 totsize; - __u8 count; - __u8 padding; -}; - -struct xfs_sysfs_attr { - struct attribute attr; - ssize_t (*show)(struct kobject *, char *); - ssize_t (*store)(struct kobject *, const char *, size_t); -}; - -struct xfs_error_init { - char *name; - int max_retries; - int retry_timeout; -}; - -struct xfs_buf_cancel { - xfs_daddr_t bc_blkno; - uint bc_len; - int bc_refcount; - struct list_head bc_list; -}; - -enum p9_perm_t { - P9_DMDIR = 2147483648, - P9_DMAPPEND = 1073741824, - P9_DMEXCL = 536870912, - P9_DMMOUNT = 268435456, - P9_DMAUTH = 134217728, - P9_DMTMP = 67108864, - P9_DMSYMLINK = 33554432, - P9_DMLINK = 16777216, - P9_DMDEVICE = 8388608, - P9_DMNAMEDPIPE = 2097152, - P9_DMSOCKET = 1048576, - P9_DMSETUID = 524288, - P9_DMSETGID = 262144, - P9_DMSETVTX = 65536, -}; - -struct p9_rdir { - int head; - int tail; - uint8_t buf[0]; -}; - -enum btrfs_csum_type { - BTRFS_CSUM_TYPE_CRC32 = 0, - BTRFS_CSUM_TYPE_XXHASH = 1, - BTRFS_CSUM_TYPE_SHA256 = 2, - BTRFS_CSUM_TYPE_BLAKE2 = 3, -}; - -struct prop_handler { - struct hlist_node node; - const char *xattr_name; - int (*validate)(const struct btrfs_inode *, const char *, size_t); - int (*apply)(struct inode *, const char *, size_t); - const char * (*extract)(const struct inode *); - bool (*ignore)(const struct btrfs_inode *); - int inheritable; -}; - -struct f2fs_orphan_block { - __le32 ino[1020]; - __le32 reserved; - __le16 blk_addr; - __le16 blk_count; - __le32 entry_count; - __le32 check_sum; -}; - -struct ino_entry { - struct list_head list; - nid_t ino; - unsigned int dirty_device; -}; - -struct ckpt_req { - struct completion wait; - struct llist_node llnode; - int ret; - ktime_t queue_time; -}; - -struct f2fs_sit_block { - struct f2fs_sit_entry entries[55]; -}; - -struct discard_entry { - struct list_head list; - block_t start_blkaddr; - unsigned char discard_map[64]; -}; - -enum { - D_PREP = 0, - D_PARTIAL = 1, - D_SUBMIT = 2, - D_DONE = 3, -}; - -struct discard_info { - block_t lstart; - block_t len; - block_t start; -}; - -struct discard_cmd { - struct rb_node rb_node; - struct discard_info di; - struct list_head list; - struct completion wait; - struct block_device *bdev; - short unsigned int ref; - unsigned char state; - unsigned char queued; - int error; - spinlock_t lock; - short unsigned int bio_ref; -}; - -enum { - DPOLICY_BG = 0, - DPOLICY_FORCE = 1, - DPOLICY_FSTRIM = 2, - DPOLICY_UMOUNT = 3, - MAX_DPOLICY = 4, -}; - -enum { - DPOLICY_IO_AWARE_DISABLE = 0, - DPOLICY_IO_AWARE_ENABLE = 1, - DPOLICY_IO_AWARE_MAX = 2, -}; - -struct discard_policy { - int type; - unsigned int min_interval; - unsigned int mid_interval; - unsigned int max_interval; - unsigned int max_requests; - unsigned int io_aware_gran; - bool io_aware; - bool sync; - bool ordered; - bool timeout; - unsigned int granularity; -}; - -struct flush_cmd { - struct completion wait; - struct llist_node llnode; - nid_t ino; - int ret; -}; - -struct revoke_entry { - struct list_head list; - block_t old_addr; - long unsigned int index; -}; - -struct sit_entry_set { - struct list_head set_list; - unsigned int start_segno; - unsigned int entry_cnt; -}; - -struct f2fs_acl_entry { - __le16 e_tag; - __le16 e_perm; - __le32 e_id; -}; - -struct f2fs_acl_header { - __le32 a_version; -}; - -struct erofs_deviceslot { - u8 tag[64]; - __le32 blocks; - __le32 mapped_blkaddr; - u8 reserved[56]; -}; - -struct z_erofs_map_header { - union { - __le32 h_fragmentoff; - struct { - __le16 h_reserved1; - __le16 h_idata_size; - }; - }; - __le16 h_advise; - __u8 h_algorithmtype; - __u8 h_clusterbits; -}; - -enum { - EROFS_ZIP_CACHE_DISABLED = 0, - EROFS_ZIP_CACHE_READAHEAD = 1, - EROFS_ZIP_CACHE_READAROUND = 2, -}; - -struct trace_event_raw_erofs_lookup { - struct trace_entry ent; - dev_t dev; - erofs_nid_t nid; - u32 __data_loc_name; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_erofs_fill_inode { - struct trace_entry ent; - dev_t dev; - erofs_nid_t nid; - erofs_blk_t blkaddr; - unsigned int ofs; - char __data[0]; -}; - -struct trace_event_raw_erofs_read_folio { - struct trace_entry ent; - dev_t dev; - erofs_nid_t nid; - int dir; - long unsigned int index; - int uptodate; - bool raw; - char __data[0]; -}; - -struct trace_event_raw_erofs_readahead { - struct trace_entry ent; - dev_t dev; - erofs_nid_t nid; - long unsigned int start; - unsigned int nrpage; - bool raw; - char __data[0]; -}; - -struct trace_event_raw_erofs_map_blocks_enter { - struct trace_entry ent; - dev_t dev; - erofs_nid_t nid; - erofs_off_t la; - u64 llen; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_erofs_map_blocks_exit { - struct trace_entry ent; - dev_t dev; - erofs_nid_t nid; - unsigned int flags; - erofs_off_t la; - erofs_off_t pa; - u64 llen; - u64 plen; - unsigned int mflags; - int ret; - char __data[0]; -}; - -struct trace_event_data_offsets_erofs_lookup { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_erofs_fill_inode {}; - -struct trace_event_data_offsets_erofs_read_folio {}; - -struct trace_event_data_offsets_erofs_readahead {}; - -struct trace_event_data_offsets_erofs_map_blocks_enter {}; - -struct trace_event_data_offsets_erofs_map_blocks_exit {}; - -typedef void (*btf_trace_erofs_lookup)(void *, struct inode *, struct dentry *, unsigned int); - -typedef void (*btf_trace_erofs_fill_inode)(void *, struct inode *); - -typedef void (*btf_trace_erofs_read_folio)(void *, struct folio *, bool); - -typedef void (*btf_trace_erofs_readahead)(void *, struct inode *, long unsigned int, unsigned int, bool); - -typedef void (*btf_trace_erofs_map_blocks_enter)(void *, struct inode *, struct erofs_map_blocks *, unsigned int); - -typedef void (*btf_trace_erofs_map_blocks_exit)(void *, struct inode *, struct erofs_map_blocks *, unsigned int, int); - -enum { - Opt_user_xattr___4 = 0, - Opt_acl___6 = 1, - Opt_cache_strategy = 2, - Opt_dax___3 = 3, - Opt_dax_enum___2 = 4, - Opt_device___2 = 5, - Opt_fsid = 6, - Opt_domain_id = 7, - Opt_directio___2 = 8, - Opt_err___15 = 9, -}; - -struct sem_undo_list { - refcount_t refcnt; - spinlock_t lock; - struct list_head list_proc; -}; - -struct sem; - -struct sem_queue; - -struct sem_undo; - -struct semid_ds { - struct ipc_perm sem_perm; - __kernel_old_time_t sem_otime; - __kernel_old_time_t sem_ctime; - struct sem *sem_base; - struct sem_queue *sem_pending; - struct sem_queue **sem_pending_last; - struct sem_undo *undo; - short unsigned int sem_nsems; -}; - -struct sem { - int semval; - struct pid *sempid; - spinlock_t lock; - struct list_head pending_alter; - struct list_head pending_const; - time64_t sem_otime; -}; - -struct sem_queue { - struct list_head list; - struct task_struct *sleeper; - struct sem_undo *undo; - struct pid *pid; - int status; - struct sembuf *sops; - struct sembuf *blocking; - int nsops; - bool alter; - bool dupsop; -}; - -struct sem_undo { - struct list_head list_proc; - struct callback_head rcu; - struct sem_undo_list *ulp; - struct list_head list_id; - int semid; - short int semadj[0]; -}; - -struct semid64_ds { - struct ipc64_perm sem_perm; - long int sem_otime; - long int sem_ctime; - long unsigned int sem_nsems; - long unsigned int __unused3; - long unsigned int __unused4; -}; - -struct seminfo { - int semmap; - int semmni; - int semmns; - int semmnu; - int semmsl; - int semopm; - int semume; - int semusz; - int semvmx; - int semaem; -}; - -struct sem_array { - struct kern_ipc_perm sem_perm; - time64_t sem_ctime; - struct list_head pending_alter; - struct list_head pending_const; - struct list_head list_id; - int sem_nsems; - int complex_count; - unsigned int use_global_lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct sem sems[0]; -}; - -enum { - SKCIPHER_WALK_PHYS = 1, - SKCIPHER_WALK_SLOW = 2, - SKCIPHER_WALK_COPY = 4, - SKCIPHER_WALK_DIFF = 8, - SKCIPHER_WALK_SLEEP = 16, -}; - -struct skcipher_walk_buffer { - struct list_head entry; - struct scatter_walk dst; - unsigned int len; - u8 *data; - u8 buffer[0]; -}; - -struct xcbc_tfm_ctx { - struct crypto_cipher *child; - u8 consts[0]; -}; - -struct xcbc_desc_ctx { - unsigned int len; - u8 odds[0]; -}; - -struct des3_ede_ctx { - u32 expkey[96]; -}; - -enum { - IOPRIO_WHO_PROCESS = 1, - IOPRIO_WHO_PGRP = 2, - IOPRIO_WHO_USER = 3, -}; - -struct throtl_data { - struct throtl_service_queue service_queue; - struct request_queue *queue; - unsigned int nr_queued[2]; - unsigned int throtl_slice; - struct work_struct dispatch_work; - bool track_bio_latency; -}; - -enum tg_state_flags { - THROTL_TG_PENDING = 1, - THROTL_TG_WAS_EMPTY = 2, - THROTL_TG_CANCELING = 4, -}; - -struct io_rename { - struct file *file; - int old_dfd; - int new_dfd; - struct filename *oldpath; - struct filename *newpath; - int flags; -}; - -struct io_unlink { - struct file *file; - int dfd; - int flags; - struct filename *filename; -}; - -struct io_mkdir { - struct file *file; - int dfd; - umode_t mode; - struct filename *filename; -}; - -struct io_link { - struct file *file; - int old_dfd; - int new_dfd; - struct filename *oldpath; - struct filename *newpath; - int flags; -}; - -typedef U32 (*ZSTD_getAllMatchesFn)(ZSTD_match_t *, ZSTD_matchState_t *, U32 *, const BYTE *, const BYTE *, const U32 *, const U32, const U32); - -typedef struct { - rawSeqStore_t seqStore; - U32 startPosInBlock; - U32 endPosInBlock; - U32 offset; -} ZSTD_optLdm_t; - -struct sg_pool { - size_t size; - char *name; - struct kmem_cache *slab; - mempool_t *pool; -}; - -struct v2m_data { - struct list_head entry; - struct fwnode_handle *fwnode; - struct resource res; - void *base; - u32 spi_start; - u32 nr_spis; - u32 spi_offset; - long unsigned int *bm; - u32 flags; -}; - -struct pl061 { - raw_spinlock_t lock; - void *base; - struct gpio_chip gc; - int parent_irq; -}; - -struct clk_mux { - struct clk_hw hw; - void *reg; - const u32 *table; - u32 mask; - u8 shift; - u8 flags; - spinlock_t *lock; -}; - -struct drm_mode_map_dumb { - __u32 handle; - __u32 pad; - __u64 offset; -}; - -struct drm_mode_destroy_dumb { - __u32 handle; -}; - -struct panel_bridge { - struct drm_bridge bridge; - struct drm_connector connector; - struct drm_panel *panel; - u32 connector_type; -}; - -struct container_dev { - struct device dev; - int (*offline)(struct container_dev *); -}; - -struct builtin_fw { - char *name; - void *data; - long unsigned int size; -}; - -struct virtio_blk_geometry { - __virtio16 cylinders; - __u8 heads; - __u8 sectors; -}; - -struct virtio_blk_zoned_characteristics { - __virtio32 zone_sectors; - __virtio32 max_open_zones; - __virtio32 max_active_zones; - __virtio32 max_append_sectors; - __virtio32 write_granularity; - __u8 model; - __u8 unused2[3]; -}; - -struct virtio_blk_config { - __virtio64 capacity; - __virtio32 size_max; - __virtio32 seg_max; - struct virtio_blk_geometry geometry; - __virtio32 blk_size; - __u8 physical_block_exp; - __u8 alignment_offset; - __virtio16 min_io_size; - __virtio32 opt_io_size; - __u8 wce; - __u8 unused; - __virtio16 num_queues; - __virtio32 max_discard_sectors; - __virtio32 max_discard_seg; - __virtio32 discard_sector_alignment; - __virtio32 max_write_zeroes_sectors; - __virtio32 max_write_zeroes_seg; - __u8 write_zeroes_may_unmap; - __u8 unused1[3]; - __virtio32 max_secure_erase_sectors; - __virtio32 max_secure_erase_seg; - __virtio32 secure_erase_sector_alignment; - struct virtio_blk_zoned_characteristics zoned; -}; - -struct virtio_blk_outhdr { - __virtio32 type; - __virtio32 ioprio; - __virtio64 sector; -}; - -struct virtio_blk_discard_write_zeroes { - __le64 sector; - __le32 num_sectors; - __le32 flags; -}; - -struct virtio_blk_vq { - struct virtqueue *vq; - spinlock_t lock; - char name[16]; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct virtio_blk { - struct mutex vdev_mutex; - struct virtio_device *vdev; - struct gendisk *disk; - struct blk_mq_tag_set tag_set; - struct work_struct config_work; - int index; - int num_vqs; - int io_queues[3]; - struct virtio_blk_vq *vqs; - unsigned int zone_sectors; -}; - -struct virtblk_req { - struct virtio_blk_outhdr out_hdr; - union { - u8 status; - struct { - __virtio64 sector; - u8 status; - } zone_append; - } in_hdr; - size_t in_hdr_len; - struct sg_table sg_table; - struct scatterlist sg[0]; -}; - -struct slave_attribute { - struct attribute attr; - ssize_t (*show)(struct slave *, char *); -}; - -struct mdio_device_id { - __u32 phy_id; - __u32 phy_id_mask; -}; - -struct smsc_hw_stat { - const char *string; - u8 reg; - u8 bits; -}; - -struct smsc_phy_priv { - unsigned int edpd_enable: 1; - unsigned int edpd_mode_set_by_user: 1; - unsigned int edpd_max_wait_ms; - bool wol_arp; -}; - -enum { - MDBA_UNSPEC = 0, - MDBA_MDB = 1, - MDBA_ROUTER = 2, - __MDBA_MAX = 3, -}; - -enum { - MDBA_MDB_UNSPEC = 0, - MDBA_MDB_ENTRY = 1, - __MDBA_MDB_MAX = 2, -}; - -enum { - MDBA_MDB_ENTRY_UNSPEC = 0, - MDBA_MDB_ENTRY_INFO = 1, - __MDBA_MDB_ENTRY_MAX = 2, -}; - -enum { - MDBA_MDB_EATTR_UNSPEC = 0, - MDBA_MDB_EATTR_TIMER = 1, - MDBA_MDB_EATTR_SRC_LIST = 2, - MDBA_MDB_EATTR_GROUP_MODE = 3, - MDBA_MDB_EATTR_SOURCE = 4, - MDBA_MDB_EATTR_RTPROT = 5, - MDBA_MDB_EATTR_DST = 6, - MDBA_MDB_EATTR_DST_PORT = 7, - MDBA_MDB_EATTR_VNI = 8, - MDBA_MDB_EATTR_IFINDEX = 9, - MDBA_MDB_EATTR_SRC_VNI = 10, - __MDBA_MDB_EATTR_MAX = 11, -}; - -enum { - MDBA_MDB_SRCLIST_UNSPEC = 0, - MDBA_MDB_SRCLIST_ENTRY = 1, - __MDBA_MDB_SRCLIST_MAX = 2, -}; - -enum { - MDBA_MDB_SRCATTR_UNSPEC = 0, - MDBA_MDB_SRCATTR_ADDRESS = 1, - MDBA_MDB_SRCATTR_TIMER = 2, - __MDBA_MDB_SRCATTR_MAX = 3, -}; - -struct br_port_msg { - __u8 family; - __u32 ifindex; -}; - -struct br_mdb_entry { - __u32 ifindex; - __u8 state; - __u8 flags; - __u16 vid; - struct { - union { - __be32 ip4; - struct in6_addr ip6; - unsigned char mac_addr[6]; - } u; - __be16 proto; - } addr; -}; - -enum { - MDBA_SET_ENTRY_UNSPEC = 0, - MDBA_SET_ENTRY = 1, - MDBA_SET_ENTRY_ATTRS = 2, - __MDBA_SET_ENTRY_MAX = 3, -}; - -enum { - MDBA_GET_ENTRY_UNSPEC = 0, - MDBA_GET_ENTRY = 1, - MDBA_GET_ENTRY_ATTRS = 2, - __MDBA_GET_ENTRY_MAX = 3, -}; - -enum { - MDBE_ATTR_UNSPEC = 0, - MDBE_ATTR_SOURCE = 1, - MDBE_ATTR_SRC_LIST = 2, - MDBE_ATTR_GROUP_MODE = 3, - MDBE_ATTR_RTPROT = 4, - MDBE_ATTR_DST = 5, - MDBE_ATTR_DST_PORT = 6, - MDBE_ATTR_VNI = 7, - MDBE_ATTR_IFINDEX = 8, - MDBE_ATTR_SRC_VNI = 9, - MDBE_ATTR_STATE_MASK = 10, - __MDBE_ATTR_MAX = 11, -}; - -enum { - MDBE_SRC_LIST_UNSPEC = 0, - MDBE_SRC_LIST_ENTRY = 1, - __MDBE_SRC_LIST_MAX = 2, -}; - -enum { - MDBE_SRCATTR_UNSPEC = 0, - MDBE_SRCATTR_ADDRESS = 1, - __MDBE_SRCATTR_MAX = 2, -}; - -struct vxlan_mdb_entry_key { - union vxlan_addr src; - union vxlan_addr dst; - __be32 vni; -}; - -struct vxlan_mdb_entry { - struct rhash_head rhnode; - struct list_head remotes; - struct vxlan_mdb_entry_key key; - struct hlist_node mdb_node; - struct callback_head rcu; -}; - -struct vxlan_mdb_remote { - struct list_head list; - struct vxlan_rdst *rd; - u8 flags; - u8 filter_mode; - u8 rt_protocol; - struct hlist_head src_list; - struct callback_head rcu; -}; - -struct vxlan_mdb_src_entry { - struct hlist_node node; - union vxlan_addr addr; - u8 flags; -}; - -struct vxlan_mdb_dump_ctx { - long int reserved; - long int entry_idx; - long int remote_idx; -}; - -struct vxlan_mdb_config_src_entry { - union vxlan_addr addr; - struct list_head node; -}; - -struct vxlan_mdb_config { - struct vxlan_dev *vxlan; - struct vxlan_mdb_entry_key group; - struct list_head src_list; - union vxlan_addr remote_ip; - u32 remote_ifindex; - __be32 remote_vni; - __be16 remote_port; - u16 nlflags; - u8 flags; - u8 filter_mode; - u8 rt_protocol; -}; - -struct vxlan_mdb_flush_desc { - union vxlan_addr remote_ip; - __be32 src_vni; - __be32 remote_vni; - __be16 remote_port; - u8 rt_protocol; -}; - -enum usb_led_event { - USB_LED_EVENT_HOST = 0, - USB_LED_EVENT_GADGET = 1, -}; - -struct iommu_fault_page_request { - u32 flags; - u32 pasid; - u32 grpid; - u32 perm; - u64 addr; - u64 private_data[2]; -}; - -struct iommu_fault { - u32 type; - struct iommu_fault_page_request prm; -}; - -struct iopf_fault { - struct iommu_fault fault; - struct list_head list; -}; - -struct iommu_attach_handle; - -struct iommu_fault_param; - -struct iopf_group { - struct iopf_fault last_fault; - struct list_head faults; - size_t fault_count; - struct list_head pending_node; - struct work_struct work; - struct iommu_attach_handle *attach_handle; - struct iommu_fault_param *fault_param; - struct list_head node; - u32 cookie; -}; - -struct iommu_fault_param {}; - -struct iommu_domain; - -typedef int (*iommu_fault_handler_t)(struct iommu_domain *, struct device *, long unsigned int, int, void *); - -struct iommu_domain_ops; - -struct iommu_domain_geometry { - dma_addr_t aperture_start; - dma_addr_t aperture_end; - bool force_aperture; -}; - -struct iommu_dma_cookie; - -struct iommu_dirty_ops; - -struct iommu_ops; - -struct iommu_domain { - unsigned int type; - const struct iommu_domain_ops *ops; - const struct iommu_dirty_ops *dirty_ops; - const struct iommu_ops *owner; - long unsigned int pgsize_bitmap; - struct iommu_domain_geometry geometry; - struct iommu_dma_cookie *iova_cookie; - int (*iopf_handler)(struct iopf_group *); - void *fault_data; - union { - struct { - iommu_fault_handler_t handler; - void *handler_token; - }; - struct { - struct mm_struct *mm; - int users; - struct list_head next; - }; - }; -}; - -struct iommu_dirty_ops {}; - -struct iommu_ops {}; - -enum xhci_overhead_type { - LS_OVERHEAD_TYPE = 0, - FS_OVERHEAD_TYPE = 1, - HS_OVERHEAD_TYPE = 2, -}; - -struct rts51x_status { - u16 vid; - u16 pid; - u8 cur_lun; - u8 card_type; - u8 total_lun; - u16 fw_ver; - u8 phy_exist; - u8 multi_flag; - u8 multi_card; - u8 log_exist; - union { - u8 detailed_type1; - u8 detailed_type2; - } detailed_type; - u8 function[2]; -}; - -struct rts51x_chip { - u16 vendor_id; - u16 product_id; - char max_lun; - struct rts51x_status *status; - int status_len; - u32 flag; - struct us_data *us; - proto_cmnd proto_handler_backup; -}; - -struct f81534_serial_private { - u8 conf_data[12]; - int tty_idx[4]; - u8 setting_idx; - int opened_port; - struct mutex urb_mutex; -}; - -struct f81534_port_private { - struct mutex mcr_mutex; - struct mutex lcr_mutex; - struct work_struct lsr_work; - struct usb_serial_port *port; - long unsigned int tx_empty; - spinlock_t msr_lock; - u32 baud_base; - u8 shadow_mcr; - u8 shadow_lcr; - u8 shadow_msr; - u8 shadow_clk; - u8 phy_num; -}; - -struct f81534_pin_data { - const u16 reg_addr; - const u8 reg_mask; -}; - -struct f81534_port_out_pin { - struct f81534_pin_data pin[3]; -}; - -enum pl2303_type { - TYPE_H = 0, - TYPE_HX = 1, - TYPE_TA = 2, - TYPE_TB = 3, - TYPE_HXD = 4, - TYPE_HXN = 5, - TYPE_COUNT = 6, -}; - -struct pl2303_type_data { - const char *name; - speed_t max_baud_rate; - long unsigned int quirks; - unsigned int no_autoxonxoff: 1; - unsigned int no_divisors: 1; - unsigned int alt_divisors: 1; -}; - -struct pl2303_serial_private { - const struct pl2303_type_data *type; - long unsigned int quirks; -}; - -struct pl2303_private { - spinlock_t lock; - u8 line_control; - u8 line_status; - u8 line_settings[7]; -}; - -struct typec_retimer_desc { - struct fwnode_handle *fwnode; - typec_retimer_set_fn_t set; - const char *name; - void *drvdata; -}; - -struct mousedev_hw_data { - int dx; - int dy; - int dz; - int x; - int y; - int abs_event; - long unsigned int buttons; -}; - -struct mousedev { - int open; - struct input_handle handle; - wait_queue_head_t wait; - struct list_head client_list; - spinlock_t client_lock; - struct mutex mutex; - struct device dev; - struct cdev cdev; - bool exist; - struct list_head mixdev_node; - bool opened_by_mixdev; - struct mousedev_hw_data packet; - unsigned int pkt_count; - int old_x[4]; - int old_y[4]; - int frac_dx; - int frac_dy; - long unsigned int touch; - int (*open_device)(struct mousedev *); - void (*close_device)(struct mousedev *); -}; - -enum mousedev_emul { - MOUSEDEV_EMUL_PS2 = 0, - MOUSEDEV_EMUL_IMPS = 1, - MOUSEDEV_EMUL_EXPS = 2, -}; - -struct mousedev_motion { - int dx; - int dy; - int dz; - long unsigned int buttons; -}; - -struct mousedev_client { - struct fasync_struct *fasync; - struct mousedev *mousedev; - struct list_head node; - struct mousedev_motion packets[16]; - unsigned int head; - unsigned int tail; - spinlock_t packet_lock; - int pos_x; - int pos_y; - u8 ps2[6]; - unsigned char ready; - unsigned char buffer; - unsigned char bufsiz; - unsigned char imexseq; - unsigned char impsseq; - enum mousedev_emul mode; - long unsigned int last_buttons; -}; - -enum { - FRACTION_DENOM = 128, -}; - -struct octeon_i2c_reg_offset { - unsigned int sw_twsi; - unsigned int twsi_int; - unsigned int sw_twsi_ext; - unsigned int mode; -}; - -struct octeon_i2c { - wait_queue_head_t queue; - struct i2c_adapter adap; - struct octeon_i2c_reg_offset roff; - struct clk *clk; - int irq; - int hlc_irq; - u32 twsi_freq; - int sys_freq; - void *twsi_base; - struct device *dev; - bool hlc_enabled; - bool broken_irq_mode; - bool broken_irq_check; - void (*int_enable)(struct octeon_i2c *); - void (*int_disable)(struct octeon_i2c *); - void (*hlc_int_enable)(struct octeon_i2c *); - void (*hlc_int_disable)(struct octeon_i2c *); - atomic_t int_enable_cnt; - atomic_t hlc_int_enable_cnt; - struct i2c_smbus_alert_setup alert_data; - struct i2c_client *ara; -}; - -struct trace_event_raw_mmc_request_start { - struct trace_entry ent; - u32 cmd_opcode; - u32 cmd_arg; - unsigned int cmd_flags; - unsigned int cmd_retries; - u32 stop_opcode; - u32 stop_arg; - unsigned int stop_flags; - unsigned int stop_retries; - u32 sbc_opcode; - u32 sbc_arg; - unsigned int sbc_flags; - unsigned int sbc_retries; - unsigned int blocks; - unsigned int blk_addr; - unsigned int blksz; - unsigned int data_flags; - int tag; - unsigned int can_retune; - unsigned int doing_retune; - unsigned int retune_now; - int need_retune; - int hold_retune; - unsigned int retune_period; - struct mmc_request *mrq; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_mmc_request_done { - struct trace_entry ent; - u32 cmd_opcode; - int cmd_err; - u32 cmd_resp[4]; - unsigned int cmd_retries; - u32 stop_opcode; - int stop_err; - u32 stop_resp[4]; - unsigned int stop_retries; - u32 sbc_opcode; - int sbc_err; - u32 sbc_resp[4]; - unsigned int sbc_retries; - unsigned int bytes_xfered; - int data_err; - int tag; - unsigned int can_retune; - unsigned int doing_retune; - unsigned int retune_now; - int need_retune; - int hold_retune; - unsigned int retune_period; - struct mmc_request *mrq; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_data_offsets_mmc_request_start { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_mmc_request_done { - u32 name; - const void *name_ptr_; -}; - -typedef void (*btf_trace_mmc_request_start)(void *, struct mmc_host *, struct mmc_request *); - -typedef void (*btf_trace_mmc_request_done)(void *, struct mmc_host *, struct mmc_request *); - -enum perf_hw_id { - PERF_COUNT_HW_CPU_CYCLES = 0, - PERF_COUNT_HW_INSTRUCTIONS = 1, - PERF_COUNT_HW_CACHE_REFERENCES = 2, - PERF_COUNT_HW_CACHE_MISSES = 3, - PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 4, - PERF_COUNT_HW_BRANCH_MISSES = 5, - PERF_COUNT_HW_BUS_CYCLES = 6, - PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 7, - PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 8, - PERF_COUNT_HW_REF_CPU_CYCLES = 9, - PERF_COUNT_HW_MAX = 10, -}; - -enum perf_hw_cache_id { - PERF_COUNT_HW_CACHE_L1D = 0, - PERF_COUNT_HW_CACHE_L1I = 1, - PERF_COUNT_HW_CACHE_LL = 2, - PERF_COUNT_HW_CACHE_DTLB = 3, - PERF_COUNT_HW_CACHE_ITLB = 4, - PERF_COUNT_HW_CACHE_BPU = 5, - PERF_COUNT_HW_CACHE_NODE = 6, - PERF_COUNT_HW_CACHE_MAX = 7, -}; - -enum perf_hw_cache_op_id { - PERF_COUNT_HW_CACHE_OP_READ = 0, - PERF_COUNT_HW_CACHE_OP_WRITE = 1, - PERF_COUNT_HW_CACHE_OP_PREFETCH = 2, - PERF_COUNT_HW_CACHE_OP_MAX = 3, -}; - -enum perf_hw_cache_op_result_id { - PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0, - PERF_COUNT_HW_CACHE_RESULT_MISS = 1, - PERF_COUNT_HW_CACHE_RESULT_MAX = 2, -}; - -enum armpmu_attr_groups { - ARMPMU_ATTR_GROUP_COMMON = 0, - ARMPMU_ATTR_GROUP_EVENTS = 1, - ARMPMU_ATTR_GROUP_FORMATS = 2, - ARMPMU_ATTR_GROUP_CAPS = 3, - ARMPMU_NR_ATTR_GROUPS = 4, -}; - -struct armv8pmu_probe_info { - struct arm_pmu *pmu; - bool present; -}; - -enum { - TCA_FLOWER_KEY_CT_FLAGS_NEW = 1, - TCA_FLOWER_KEY_CT_FLAGS_ESTABLISHED = 2, - TCA_FLOWER_KEY_CT_FLAGS_RELATED = 4, - TCA_FLOWER_KEY_CT_FLAGS_TRACKED = 8, - TCA_FLOWER_KEY_CT_FLAGS_INVALID = 16, - TCA_FLOWER_KEY_CT_FLAGS_REPLY = 32, - __TCA_FLOWER_KEY_CT_FLAGS_MAX = 33, -}; - -enum flow_dissect_ret { - FLOW_DISSECT_RET_OUT_GOOD = 0, - FLOW_DISSECT_RET_OUT_BAD = 1, - FLOW_DISSECT_RET_PROTO_AGAIN = 2, - FLOW_DISSECT_RET_IPPROTO_AGAIN = 3, - FLOW_DISSECT_RET_CONTINUE = 4, -}; - -struct flow_dissector_key_hash { - u32 hash; -}; - -struct flow_dissector_key_num_of_vlans { - u8 num_of_vlans; -}; - -struct flow_dissector_key_cfm { - u8 mdl_ver; - u8 opcode; -}; - -enum { - BPF_FLOW_DISSECTOR_F_PARSE_1ST_FRAG = 1, - BPF_FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL = 2, - BPF_FLOW_DISSECTOR_F_STOP_AT_ENCAP = 4, -}; - -struct gre_full_hdr { - struct gre_base_hdr fixed_header; - __be16 csum; - __be16 reserved1; - __be32 key; - __be32 seq; -}; - -struct pptp_gre_header { - struct gre_base_hdr gre_hd; - __be16 payload_len; - __be16 call_id; - __be32 seq; - __be32 ack; -}; - -struct tipc_basic_hdr { - __be32 w[4]; -}; - -struct hsr_tag { - __be16 path_and_LSDU_size; - __be16 sequence_nr; - __be16 encap_proto; -}; - -struct mpls_label { - __be32 entry; -}; - -struct clock_identity { - u8 id[8]; -}; - -struct port_identity { - struct clock_identity clock_identity; - __be16 port_number; -}; - -struct ptp_header { - u8 tsmt; - u8 ver; - __be16 message_length; - u8 domain_number; - u8 reserved1; - u8 flag_field[2]; - __be64 correction; - __be32 reserved2; - struct port_identity source_port_identity; - __be16 sequence_id; - u8 control; - u8 log_message_interval; -} __attribute__((packed)); - -enum batadv_packettype { - BATADV_IV_OGM = 0, - BATADV_BCAST = 1, - BATADV_CODED = 2, - BATADV_ELP = 3, - BATADV_OGM2 = 4, - BATADV_MCAST = 5, - BATADV_UNICAST = 64, - BATADV_UNICAST_FRAG = 65, - BATADV_UNICAST_4ADDR = 66, - BATADV_ICMP = 67, - BATADV_UNICAST_TVLV = 68, -}; - -struct batadv_unicast_packet { - __u8 packet_type; - __u8 version; - __u8 ttl; - __u8 ttvn; - __u8 dest[6]; -}; - -struct _flow_keys_digest_data { - __be16 n_proto; - u8 ip_proto; - u8 padding; - __be32 ports; - __be32 src; - __be32 dst; -}; - -enum { - NETDEV_A_PAGE_POOL_STATS_INFO = 1, - NETDEV_A_PAGE_POOL_STATS_ALLOC_FAST = 8, - NETDEV_A_PAGE_POOL_STATS_ALLOC_SLOW = 9, - NETDEV_A_PAGE_POOL_STATS_ALLOC_SLOW_HIGH_ORDER = 10, - NETDEV_A_PAGE_POOL_STATS_ALLOC_EMPTY = 11, - NETDEV_A_PAGE_POOL_STATS_ALLOC_REFILL = 12, - NETDEV_A_PAGE_POOL_STATS_ALLOC_WAIVE = 13, - NETDEV_A_PAGE_POOL_STATS_RECYCLE_CACHED = 14, - NETDEV_A_PAGE_POOL_STATS_RECYCLE_CACHE_FULL = 15, - NETDEV_A_PAGE_POOL_STATS_RECYCLE_RING = 16, - NETDEV_A_PAGE_POOL_STATS_RECYCLE_RING_FULL = 17, - NETDEV_A_PAGE_POOL_STATS_RECYCLE_RELEASED_REFCNT = 18, - __NETDEV_A_PAGE_POOL_STATS_MAX = 19, - NETDEV_A_PAGE_POOL_STATS_MAX = 18, -}; - -struct trace_event_raw_kfree_skb { - struct trace_entry ent; - void *skbaddr; - void *location; - void *rx_sk; - short unsigned int protocol; - enum skb_drop_reason reason; - char __data[0]; -}; - -struct trace_event_raw_consume_skb { - struct trace_entry ent; - void *skbaddr; - void *location; - char __data[0]; -}; - -struct trace_event_raw_skb_copy_datagram_iovec { - struct trace_entry ent; - const void *skbaddr; - int len; - char __data[0]; -}; - -struct trace_event_data_offsets_kfree_skb {}; - -struct trace_event_data_offsets_consume_skb {}; - -struct trace_event_data_offsets_skb_copy_datagram_iovec {}; - -typedef void (*btf_trace_kfree_skb)(void *, struct sk_buff *, void *, enum skb_drop_reason, struct sock *); - -typedef void (*btf_trace_consume_skb)(void *, struct sk_buff *, void *); - -typedef void (*btf_trace_skb_copy_datagram_iovec)(void *, const struct sk_buff *, int); - -struct trace_event_raw_net_dev_start_xmit { - struct trace_entry ent; - u32 __data_loc_name; - u16 queue_mapping; - const void *skbaddr; - bool vlan_tagged; - u16 vlan_proto; - u16 vlan_tci; - u16 protocol; - u8 ip_summed; - unsigned int len; - unsigned int data_len; - int network_offset; - bool transport_offset_valid; - int transport_offset; - u8 tx_flags; - u16 gso_size; - u16 gso_segs; - u16 gso_type; - char __data[0]; -}; - -struct trace_event_raw_net_dev_xmit { - struct trace_entry ent; - void *skbaddr; - unsigned int len; - int rc; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_net_dev_xmit_timeout { - struct trace_entry ent; - u32 __data_loc_name; - u32 __data_loc_driver; - int queue_index; - char __data[0]; -}; - -struct trace_event_raw_net_dev_template { - struct trace_entry ent; - void *skbaddr; - unsigned int len; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_net_dev_rx_verbose_template { - struct trace_entry ent; - u32 __data_loc_name; - unsigned int napi_id; - u16 queue_mapping; - const void *skbaddr; - bool vlan_tagged; - u16 vlan_proto; - u16 vlan_tci; - u16 protocol; - u8 ip_summed; - u32 hash; - bool l4_hash; - unsigned int len; - unsigned int data_len; - unsigned int truesize; - bool mac_header_valid; - int mac_header; - unsigned char nr_frags; - u16 gso_size; - u16 gso_type; - char __data[0]; -}; - -struct trace_event_raw_net_dev_rx_exit_template { - struct trace_entry ent; - int ret; - char __data[0]; -}; - -struct trace_event_data_offsets_net_dev_start_xmit { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_net_dev_xmit { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_net_dev_xmit_timeout { - u32 name; - const void *name_ptr_; - u32 driver; - const void *driver_ptr_; -}; - -struct trace_event_data_offsets_net_dev_template { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_net_dev_rx_verbose_template { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_net_dev_rx_exit_template {}; - -typedef void (*btf_trace_net_dev_start_xmit)(void *, const struct sk_buff *, const struct net_device *); - -typedef void (*btf_trace_net_dev_xmit)(void *, struct sk_buff *, int, struct net_device *, unsigned int); - -typedef void (*btf_trace_net_dev_xmit_timeout)(void *, struct net_device *, int); - -typedef void (*btf_trace_net_dev_queue)(void *, struct sk_buff *); - -typedef void (*btf_trace_netif_receive_skb)(void *, struct sk_buff *); - -typedef void (*btf_trace_netif_rx)(void *, struct sk_buff *); - -typedef void (*btf_trace_napi_gro_frags_entry)(void *, const struct sk_buff *); - -typedef void (*btf_trace_napi_gro_receive_entry)(void *, const struct sk_buff *); - -typedef void (*btf_trace_netif_receive_skb_entry)(void *, const struct sk_buff *); - -typedef void (*btf_trace_netif_receive_skb_list_entry)(void *, const struct sk_buff *); - -typedef void (*btf_trace_netif_rx_entry)(void *, const struct sk_buff *); - -typedef void (*btf_trace_napi_gro_frags_exit)(void *, int); - -typedef void (*btf_trace_napi_gro_receive_exit)(void *, int); - -typedef void (*btf_trace_netif_receive_skb_exit)(void *, int); - -typedef void (*btf_trace_netif_rx_exit)(void *, int); - -typedef void (*btf_trace_netif_receive_skb_list_exit)(void *, int); - -struct trace_event_raw_napi_poll { - struct trace_entry ent; - struct napi_struct *napi; - u32 __data_loc_dev_name; - int work; - int budget; - char __data[0]; -}; - -struct trace_event_raw_dql_stall_detected { - struct trace_entry ent; - short unsigned int thrs; - unsigned int len; - long unsigned int last_reap; - long unsigned int hist_head; - long unsigned int now; - long unsigned int hist[4]; - char __data[0]; -}; - -struct trace_event_data_offsets_napi_poll { - u32 dev_name; - const void *dev_name_ptr_; -}; - -struct trace_event_data_offsets_dql_stall_detected {}; - -typedef void (*btf_trace_napi_poll)(void *, struct napi_struct *, int, int); - -typedef void (*btf_trace_dql_stall_detected)(void *, short unsigned int, unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int *); - -struct trace_event_raw_sock_rcvqueue_full { - struct trace_entry ent; - int rmem_alloc; - unsigned int truesize; - int sk_rcvbuf; - char __data[0]; -}; - -struct trace_event_raw_sock_exceed_buf_limit { - struct trace_entry ent; - char name[32]; - long int sysctl_mem[3]; - long int allocated; - int sysctl_rmem; - int rmem_alloc; - int sysctl_wmem; - int wmem_alloc; - int wmem_queued; - int kind; - char __data[0]; -}; - -struct trace_event_raw_inet_sock_set_state { - struct trace_entry ent; - const void *skaddr; - int oldstate; - int newstate; - __u16 sport; - __u16 dport; - __u16 family; - __u16 protocol; - __u8 saddr[4]; - __u8 daddr[4]; - __u8 saddr_v6[16]; - __u8 daddr_v6[16]; - char __data[0]; -}; - -struct trace_event_raw_inet_sk_error_report { - struct trace_entry ent; - int error; - __u16 sport; - __u16 dport; - __u16 family; - __u16 protocol; - __u8 saddr[4]; - __u8 daddr[4]; - __u8 saddr_v6[16]; - __u8 daddr_v6[16]; - char __data[0]; -}; - -struct trace_event_raw_sk_data_ready { - struct trace_entry ent; - const void *skaddr; - __u16 family; - __u16 protocol; - long unsigned int ip; - char __data[0]; -}; - -struct trace_event_raw_sock_msg_length { - struct trace_entry ent; - void *sk; - __u16 family; - __u16 protocol; - int ret; - int flags; - char __data[0]; -}; - -struct trace_event_data_offsets_sock_rcvqueue_full {}; - -struct trace_event_data_offsets_sock_exceed_buf_limit {}; - -struct trace_event_data_offsets_inet_sock_set_state {}; - -struct trace_event_data_offsets_inet_sk_error_report {}; - -struct trace_event_data_offsets_sk_data_ready {}; - -struct trace_event_data_offsets_sock_msg_length {}; - -typedef void (*btf_trace_sock_rcvqueue_full)(void *, struct sock *, struct sk_buff *); - -typedef void (*btf_trace_sock_exceed_buf_limit)(void *, struct sock *, struct proto *, long int, int); - -typedef void (*btf_trace_inet_sock_set_state)(void *, const struct sock *, const int, const int); - -typedef void (*btf_trace_inet_sk_error_report)(void *, const struct sock *); - -typedef void (*btf_trace_sk_data_ready)(void *, const struct sock *); - -typedef void (*btf_trace_sock_send_length)(void *, struct sock *, int, int); - -typedef void (*btf_trace_sock_recv_length)(void *, struct sock *, int, int); - -struct trace_event_raw_udp_fail_queue_rcv_skb { - struct trace_entry ent; - int rc; - __u16 sport; - __u16 dport; - __u16 family; - __u8 saddr[28]; - __u8 daddr[28]; - char __data[0]; -}; - -struct trace_event_data_offsets_udp_fail_queue_rcv_skb {}; - -typedef void (*btf_trace_udp_fail_queue_rcv_skb)(void *, int, struct sock *, struct sk_buff *); - -struct trace_event_raw_tcp_event_sk_skb { - struct trace_entry ent; - const void *skbaddr; - const void *skaddr; - int state; - __u16 sport; - __u16 dport; - __u16 family; - __u8 saddr[4]; - __u8 daddr[4]; - __u8 saddr_v6[16]; - __u8 daddr_v6[16]; - char __data[0]; -}; - -struct trace_event_raw_tcp_send_reset { - struct trace_entry ent; - const void *skbaddr; - const void *skaddr; - int state; - enum sk_rst_reason reason; - __u8 saddr[28]; - __u8 daddr[28]; - char __data[0]; -}; - -struct trace_event_raw_tcp_event_sk { - struct trace_entry ent; - const void *skaddr; - __u16 sport; - __u16 dport; - __u16 family; - __u8 saddr[4]; - __u8 daddr[4]; - __u8 saddr_v6[16]; - __u8 daddr_v6[16]; - __u64 sock_cookie; - char __data[0]; -}; - -struct trace_event_raw_tcp_retransmit_synack { - struct trace_entry ent; - const void *skaddr; - const void *req; - __u16 sport; - __u16 dport; - __u16 family; - __u8 saddr[4]; - __u8 daddr[4]; - __u8 saddr_v6[16]; - __u8 daddr_v6[16]; - char __data[0]; -}; - -struct trace_event_raw_tcp_probe { - struct trace_entry ent; - __u8 saddr[28]; - __u8 daddr[28]; - __u16 sport; - __u16 dport; - __u16 family; - __u32 mark; - __u16 data_len; - __u32 snd_nxt; - __u32 snd_una; - __u32 snd_cwnd; - __u32 ssthresh; - __u32 snd_wnd; - __u32 srtt; - __u32 rcv_wnd; - __u64 sock_cookie; - const void *skbaddr; - const void *skaddr; - char __data[0]; -}; - -struct trace_event_raw_tcp_event_skb { - struct trace_entry ent; - const void *skbaddr; - __u8 saddr[28]; - __u8 daddr[28]; - char __data[0]; -}; - -struct trace_event_raw_tcp_cong_state_set { - struct trace_entry ent; - const void *skaddr; - __u16 sport; - __u16 dport; - __u16 family; - __u8 saddr[4]; - __u8 daddr[4]; - __u8 saddr_v6[16]; - __u8 daddr_v6[16]; - __u8 cong_state; - char __data[0]; -}; - -struct trace_event_raw_tcp_hash_event { - struct trace_entry ent; - __u64 net_cookie; - const void *skbaddr; - const void *skaddr; - int state; - __u8 saddr[28]; - __u8 daddr[28]; - int l3index; - __u16 sport; - __u16 dport; - __u16 family; - bool fin; - bool syn; - bool rst; - bool psh; - bool ack; - char __data[0]; -}; - -struct trace_event_raw_tcp_ao_event { - struct trace_entry ent; - __u64 net_cookie; - const void *skbaddr; - const void *skaddr; - int state; - __u8 saddr[28]; - __u8 daddr[28]; - int l3index; - __u16 sport; - __u16 dport; - __u16 family; - bool fin; - bool syn; - bool rst; - bool psh; - bool ack; - __u8 keyid; - __u8 rnext; - __u8 maclen; - char __data[0]; -}; - -struct trace_event_raw_tcp_ao_event_sk { - struct trace_entry ent; - __u64 net_cookie; - const void *skaddr; - int state; - __u8 saddr[28]; - __u8 daddr[28]; - __u16 sport; - __u16 dport; - __u16 family; - __u8 keyid; - __u8 rnext; - char __data[0]; -}; - -struct trace_event_raw_tcp_ao_event_sne { - struct trace_entry ent; - __u64 net_cookie; - const void *skaddr; - int state; - __u8 saddr[28]; - __u8 daddr[28]; - __u16 sport; - __u16 dport; - __u16 family; - __u32 new_sne; - char __data[0]; -}; - -struct trace_event_data_offsets_tcp_event_sk_skb {}; - -struct trace_event_data_offsets_tcp_send_reset {}; - -struct trace_event_data_offsets_tcp_event_sk {}; - -struct trace_event_data_offsets_tcp_retransmit_synack {}; - -struct trace_event_data_offsets_tcp_probe {}; - -struct trace_event_data_offsets_tcp_event_skb {}; - -struct trace_event_data_offsets_tcp_cong_state_set {}; - -struct trace_event_data_offsets_tcp_hash_event {}; - -struct trace_event_data_offsets_tcp_ao_event {}; - -struct trace_event_data_offsets_tcp_ao_event_sk {}; - -struct trace_event_data_offsets_tcp_ao_event_sne {}; - -typedef void (*btf_trace_tcp_retransmit_skb)(void *, const struct sock *, const struct sk_buff *); - -typedef void (*btf_trace_tcp_send_reset)(void *, const struct sock *, const struct sk_buff *, const enum sk_rst_reason); - -typedef void (*btf_trace_tcp_receive_reset)(void *, struct sock *); - -typedef void (*btf_trace_tcp_destroy_sock)(void *, struct sock *); - -typedef void (*btf_trace_tcp_rcv_space_adjust)(void *, struct sock *); - -typedef void (*btf_trace_tcp_retransmit_synack)(void *, const struct sock *, const struct request_sock *); - -typedef void (*btf_trace_tcp_probe)(void *, struct sock *, struct sk_buff *); - -typedef void (*btf_trace_tcp_bad_csum)(void *, const struct sk_buff *); - -typedef void (*btf_trace_tcp_cong_state_set)(void *, struct sock *, const u8); - -typedef void (*btf_trace_tcp_hash_bad_header)(void *, const struct sock *, const struct sk_buff *); - -typedef void (*btf_trace_tcp_hash_md5_required)(void *, const struct sock *, const struct sk_buff *); - -typedef void (*btf_trace_tcp_hash_md5_unexpected)(void *, const struct sock *, const struct sk_buff *); - -typedef void (*btf_trace_tcp_hash_md5_mismatch)(void *, const struct sock *, const struct sk_buff *); - -typedef void (*btf_trace_tcp_hash_ao_required)(void *, const struct sock *, const struct sk_buff *); - -typedef void (*btf_trace_tcp_ao_handshake_failure)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); - -typedef void (*btf_trace_tcp_ao_wrong_maclen)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); - -typedef void (*btf_trace_tcp_ao_mismatch)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); - -typedef void (*btf_trace_tcp_ao_key_not_found)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); - -typedef void (*btf_trace_tcp_ao_rnext_request)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); - -typedef void (*btf_trace_tcp_ao_synack_no_key)(void *, const struct sock *, const __u8, const __u8); - -typedef void (*btf_trace_tcp_ao_snd_sne_update)(void *, const struct sock *, __u32); - -typedef void (*btf_trace_tcp_ao_rcv_sne_update)(void *, const struct sock *, __u32); - -struct trace_event_raw_fib_table_lookup { - struct trace_entry ent; - u32 tb_id; - int err; - int oif; - int iif; - u8 proto; - __u8 tos; - __u8 scope; - __u8 flags; - __u8 src[4]; - __u8 dst[4]; - __u8 gw4[4]; - __u8 gw6[16]; - u16 sport; - u16 dport; - char name[16]; - char __data[0]; -}; - -struct trace_event_data_offsets_fib_table_lookup {}; - -typedef void (*btf_trace_fib_table_lookup)(void *, u32, const struct flowi4 *, const struct fib_nh_common *, int); - -struct trace_event_raw_qdisc_dequeue { - struct trace_entry ent; - struct Qdisc *qdisc; - const struct netdev_queue *txq; - int packets; - void *skbaddr; - int ifindex; - u32 handle; - u32 parent; - long unsigned int txq_state; - char __data[0]; -}; - -struct trace_event_raw_qdisc_enqueue { - struct trace_entry ent; - struct Qdisc *qdisc; - const struct netdev_queue *txq; - void *skbaddr; - int ifindex; - u32 handle; - u32 parent; - char __data[0]; -}; - -struct trace_event_raw_qdisc_reset { - struct trace_entry ent; - u32 __data_loc_dev; - u32 __data_loc_kind; - u32 parent; - u32 handle; - char __data[0]; -}; - -struct trace_event_raw_qdisc_destroy { - struct trace_entry ent; - u32 __data_loc_dev; - u32 __data_loc_kind; - u32 parent; - u32 handle; - char __data[0]; -}; - -struct trace_event_raw_qdisc_create { - struct trace_entry ent; - u32 __data_loc_dev; - u32 __data_loc_kind; - u32 parent; - char __data[0]; -}; - -struct trace_event_data_offsets_qdisc_dequeue {}; - -struct trace_event_data_offsets_qdisc_enqueue {}; - -struct trace_event_data_offsets_qdisc_reset { - u32 dev; - const void *dev_ptr_; - u32 kind; - const void *kind_ptr_; -}; - -struct trace_event_data_offsets_qdisc_destroy { - u32 dev; - const void *dev_ptr_; - u32 kind; - const void *kind_ptr_; -}; - -struct trace_event_data_offsets_qdisc_create { - u32 dev; - const void *dev_ptr_; - u32 kind; - const void *kind_ptr_; -}; - -typedef void (*btf_trace_qdisc_dequeue)(void *, struct Qdisc *, const struct netdev_queue *, int, struct sk_buff *); - -typedef void (*btf_trace_qdisc_enqueue)(void *, struct Qdisc *, const struct netdev_queue *, struct sk_buff *); - -typedef void (*btf_trace_qdisc_reset)(void *, struct Qdisc *); - -typedef void (*btf_trace_qdisc_destroy)(void *, struct Qdisc *); - -typedef void (*btf_trace_qdisc_create)(void *, const struct Qdisc_ops *, struct net_device *, u32); - -struct trace_event_raw_br_fdb_add { - struct trace_entry ent; - u8 ndm_flags; - u32 __data_loc_dev; - unsigned char addr[6]; - u16 vid; - u16 nlh_flags; - char __data[0]; -}; - -struct trace_event_raw_br_fdb_external_learn_add { - struct trace_entry ent; - u32 __data_loc_br_dev; - u32 __data_loc_dev; - unsigned char addr[6]; - u16 vid; - char __data[0]; -}; - -struct trace_event_raw_fdb_delete { - struct trace_entry ent; - u32 __data_loc_br_dev; - u32 __data_loc_dev; - unsigned char addr[6]; - u16 vid; - char __data[0]; -}; - -struct trace_event_raw_br_fdb_update { - struct trace_entry ent; - u32 __data_loc_br_dev; - u32 __data_loc_dev; - unsigned char addr[6]; - u16 vid; - long unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_br_mdb_full { - struct trace_entry ent; - u32 __data_loc_dev; - int af; - u16 vid; - __u8 src[16]; - __u8 grp[16]; - __u8 grpmac[6]; - char __data[0]; -}; - -struct trace_event_data_offsets_br_fdb_add { - u32 dev; - const void *dev_ptr_; -}; - -struct trace_event_data_offsets_br_fdb_external_learn_add { - u32 br_dev; - const void *br_dev_ptr_; - u32 dev; - const void *dev_ptr_; -}; - -struct trace_event_data_offsets_fdb_delete { - u32 br_dev; - const void *br_dev_ptr_; - u32 dev; - const void *dev_ptr_; -}; - -struct trace_event_data_offsets_br_fdb_update { - u32 br_dev; - const void *br_dev_ptr_; - u32 dev; - const void *dev_ptr_; -}; - -struct trace_event_data_offsets_br_mdb_full { - u32 dev; - const void *dev_ptr_; -}; - -typedef void (*btf_trace_br_fdb_add)(void *, struct ndmsg *, struct net_device *, const unsigned char *, u16, u16); - -typedef void (*btf_trace_br_fdb_external_learn_add)(void *, struct net_bridge *, struct net_bridge_port *, const unsigned char *, u16); - -typedef void (*btf_trace_fdb_delete)(void *, struct net_bridge *, struct net_bridge_fdb_entry *); - -typedef void (*btf_trace_br_fdb_update)(void *, struct net_bridge *, struct net_bridge_port *, const unsigned char *, u16, long unsigned int); - -typedef void (*btf_trace_br_mdb_full)(void *, const struct net_device *, const struct br_ip *); - -struct trace_event_raw_page_pool_release { - struct trace_entry ent; - const struct page_pool *pool; - s32 inflight; - u32 hold; - u32 release; - u64 cnt; - char __data[0]; -}; - -struct trace_event_raw_page_pool_state_release { - struct trace_entry ent; - const struct page_pool *pool; - long unsigned int netmem; - u32 release; - long unsigned int pfn; - char __data[0]; -}; - -struct trace_event_raw_page_pool_state_hold { - struct trace_entry ent; - const struct page_pool *pool; - long unsigned int netmem; - u32 hold; - long unsigned int pfn; - char __data[0]; -}; - -struct trace_event_raw_page_pool_update_nid { - struct trace_entry ent; - const struct page_pool *pool; - int pool_nid; - int new_nid; - char __data[0]; -}; - -struct trace_event_data_offsets_page_pool_release {}; - -struct trace_event_data_offsets_page_pool_state_release {}; - -struct trace_event_data_offsets_page_pool_state_hold {}; - -struct trace_event_data_offsets_page_pool_update_nid {}; - -typedef void (*btf_trace_page_pool_release)(void *, const struct page_pool *, s32, u32, u32); - -typedef void (*btf_trace_page_pool_state_release)(void *, const struct page_pool *, netmem_ref, u32); - -typedef void (*btf_trace_page_pool_state_hold)(void *, const struct page_pool *, netmem_ref, u32); - -typedef void (*btf_trace_page_pool_update_nid)(void *, const struct page_pool *, int); - -struct trace_event_raw_neigh_create { - struct trace_entry ent; - u32 family; - u32 __data_loc_dev; - int entries; - u8 created; - u8 gc_exempt; - u8 primary_key4[4]; - u8 primary_key6[16]; - char __data[0]; -}; - -struct trace_event_raw_neigh_update { - struct trace_entry ent; - u32 family; - u32 __data_loc_dev; - u8 lladdr[32]; - u8 lladdr_len; - u8 flags; - u8 nud_state; - u8 type; - u8 dead; - int refcnt; - __u8 primary_key4[4]; - __u8 primary_key6[16]; - long unsigned int confirmed; - long unsigned int updated; - long unsigned int used; - u8 new_lladdr[32]; - u8 new_state; - u32 update_flags; - u32 pid; - char __data[0]; -}; - -struct trace_event_raw_neigh__update { - struct trace_entry ent; - u32 family; - u32 __data_loc_dev; - u8 lladdr[32]; - u8 lladdr_len; - u8 flags; - u8 nud_state; - u8 type; - u8 dead; - int refcnt; - __u8 primary_key4[4]; - __u8 primary_key6[16]; - long unsigned int confirmed; - long unsigned int updated; - long unsigned int used; - u32 err; - char __data[0]; -}; - -struct trace_event_data_offsets_neigh_create { - u32 dev; - const void *dev_ptr_; -}; - -struct trace_event_data_offsets_neigh_update { - u32 dev; - const void *dev_ptr_; -}; - -struct trace_event_data_offsets_neigh__update { - u32 dev; - const void *dev_ptr_; -}; - -typedef void (*btf_trace_neigh_create)(void *, struct neigh_table *, struct net_device *, const void *, const struct neighbour *, bool); - -typedef void (*btf_trace_neigh_update)(void *, struct neighbour *, const u8 *, u8, u32, u32); - -typedef void (*btf_trace_neigh_update_done)(void *, struct neighbour *, int); - -typedef void (*btf_trace_neigh_timer_handler)(void *, struct neighbour *, int); - -typedef void (*btf_trace_neigh_event_send_done)(void *, struct neighbour *, int); - -typedef void (*btf_trace_neigh_event_send_dead)(void *, struct neighbour *, int); - -typedef void (*btf_trace_neigh_cleanup_and_release)(void *, struct neighbour *, int); - -struct tc_hfsc_qopt { - __u16 defcls; -}; - -struct tc_service_curve { - __u32 m1; - __u32 d; - __u32 m2; -}; - -struct tc_hfsc_stats { - __u64 work; - __u64 rtwork; - __u32 period; - __u32 level; -}; - -enum { - TCA_HFSC_UNSPEC = 0, - TCA_HFSC_RSC = 1, - TCA_HFSC_FSC = 2, - TCA_HFSC_USC = 3, - __TCA_HFSC_MAX = 4, -}; - -struct internal_sc { - u64 sm1; - u64 ism1; - u64 dx; - u64 dy; - u64 sm2; - u64 ism2; -}; - -struct runtime_sc { - u64 x; - u64 y; - u64 sm1; - u64 ism1; - u64 dx; - u64 dy; - u64 sm2; - u64 ism2; -}; - -enum hfsc_class_flags { - HFSC_RSC = 1, - HFSC_FSC = 2, - HFSC_USC = 4, -}; - -struct hfsc_sched; - -struct hfsc_class { - struct Qdisc_class_common cl_common; - long: 64; - struct gnet_stats_basic_sync bstats; - struct gnet_stats_queue qstats; - struct net_rate_estimator *rate_est; - struct tcf_proto *filter_list; - struct tcf_block *block; - unsigned int level; - struct hfsc_sched *sched; - struct hfsc_class *cl_parent; - struct list_head siblings; - struct list_head children; - struct Qdisc *qdisc; - struct rb_node el_node; - struct rb_root vt_tree; - struct rb_node vt_node; - struct rb_root cf_tree; - struct rb_node cf_node; - u64 cl_total; - u64 cl_cumul; - u64 cl_d; - u64 cl_e; - u64 cl_vt; - u64 cl_f; - u64 cl_myf; - u64 cl_cfmin; - u64 cl_cvtmin; - u64 cl_vtadj; - u64 cl_cvtoff; - struct internal_sc cl_rsc; - struct internal_sc cl_fsc; - struct internal_sc cl_usc; - struct runtime_sc cl_deadline; - struct runtime_sc cl_eligible; - struct runtime_sc cl_virtual; - struct runtime_sc cl_ulimit; - u8 cl_flags; - u32 cl_vtperiod; - u32 cl_parentperiod; - u32 cl_nactive; -}; - -struct hfsc_sched { - u16 defcls; - long: 64; - struct hfsc_class root; - struct Qdisc_class_hash clhash; - struct rb_root eligible; - struct qdisc_watchdog watchdog; - long: 64; -}; - -enum { - TCA_DRR_UNSPEC = 0, - TCA_DRR_QUANTUM = 1, - __TCA_DRR_MAX = 2, -}; - -struct tc_drr_stats { - __u32 deficit; -}; - -struct drr_class { - struct Qdisc_class_common common; - long: 64; - struct gnet_stats_basic_sync bstats; - struct gnet_stats_queue qstats; - struct net_rate_estimator *rate_est; - struct list_head alist; - struct Qdisc *qdisc; - u32 quantum; - u32 deficit; -}; - -struct drr_sched { - struct list_head active; - struct tcf_proto *filter_list; - struct tcf_block *block; - struct Qdisc_class_hash clhash; -}; - -struct ethtool_cmd { - __u32 cmd; - __u32 supported; - __u32 advertising; - __u16 speed; - __u8 duplex; - __u8 port; - __u8 phy_address; - __u8 transceiver; - __u8 autoneg; - __u8 mdio_support; - __u32 maxtxpkt; - __u32 maxrxpkt; - __u16 speed_hi; - __u8 eth_tp_mdix; - __u8 eth_tp_mdix_ctrl; - __u32 lp_advertising; - __u32 reserved[2]; -}; - -struct ethtool_value { - __u32 cmd; - __u32 data; -}; - -enum tunable_type_id { - ETHTOOL_TUNABLE_UNSPEC = 0, - ETHTOOL_TUNABLE_U8 = 1, - ETHTOOL_TUNABLE_U16 = 2, - ETHTOOL_TUNABLE_U32 = 3, - ETHTOOL_TUNABLE_U64 = 4, - ETHTOOL_TUNABLE_STRING = 5, - ETHTOOL_TUNABLE_S8 = 6, - ETHTOOL_TUNABLE_S16 = 7, - ETHTOOL_TUNABLE_S32 = 8, - ETHTOOL_TUNABLE_S64 = 9, -}; - -struct ethtool_eee { - __u32 cmd; - __u32 supported; - __u32 advertised; - __u32 lp_advertised; - __u32 eee_active; - __u32 eee_enabled; - __u32 tx_lpi_enabled; - __u32 tx_lpi_timer; - __u32 reserved[2]; -}; - -struct ethtool_gstrings { - __u32 cmd; - __u32 string_set; - __u32 len; - __u8 data[0]; -}; - -struct ethtool_sset_info { - __u32 cmd; - __u32 reserved; - __u64 sset_mask; - __u32 data[0]; -}; - -struct ethtool_perm_addr { - __u32 cmd; - __u32 size; - __u8 data[0]; -}; - -enum ethtool_flags { - ETH_FLAG_TXVLAN = 128, - ETH_FLAG_RXVLAN = 256, - ETH_FLAG_LRO = 32768, - ETH_FLAG_NTUPLE = 134217728, - ETH_FLAG_RXHASH = 268435456, -}; - -struct ethtool_rxfh { - __u32 cmd; - __u32 rss_context; - __u32 indir_size; - __u32 key_size; - __u8 hfunc; - __u8 input_xfrm; - __u8 rsvd8[2]; - __u32 rsvd32; - __u32 rss_config[0]; -}; - -struct ethtool_get_features_block { - __u32 available; - __u32 requested; - __u32 active; - __u32 never_changed; -}; - -struct ethtool_gfeatures { - __u32 cmd; - __u32 size; - struct ethtool_get_features_block features[0]; -}; - -struct ethtool_set_features_block { - __u32 valid; - __u32 requested; -}; - -struct ethtool_sfeatures { - __u32 cmd; - __u32 size; - struct ethtool_set_features_block features[0]; -}; - -struct ethtool_ts_info { - __u32 cmd; - __u32 so_timestamping; - __s32 phc_index; - __u32 tx_types; - __u32 tx_reserved[3]; - __u32 rx_filters; - __u32 rx_reserved[3]; -}; - -enum ethtool_sfeatures_retval_bits { - ETHTOOL_F_UNSUPPORTED__BIT = 0, - ETHTOOL_F_WISH__BIT = 1, - ETHTOOL_F_COMPAT__BIT = 2, -}; - -struct ethtool_per_queue_op { - __u32 cmd; - __u32 sub_command; - __u32 queue_mask[128]; - char data[0]; -}; - -struct ethtool_rx_flow_rule { - struct flow_rule *rule; - long unsigned int priv[0]; -}; - -struct ethtool_rx_flow_spec_input { - const struct ethtool_rx_flow_spec *fs; - u32 rss_ctx; -}; - -struct ethtool_devlink_compat { - struct devlink *devlink; - union { - struct ethtool_flash efl; - struct ethtool_drvinfo info; - }; -}; - -struct ethtool_link_usettings { - struct ethtool_link_settings base; - struct { - __u32 supported[4]; - __u32 advertising[4]; - __u32 lp_advertising[4]; - } link_modes; -}; - -struct ethtool_rx_flow_key { - struct flow_dissector_key_basic basic; - union { - struct flow_dissector_key_ipv4_addrs ipv4; - struct flow_dissector_key_ipv6_addrs ipv6; - }; - struct flow_dissector_key_ports tp; - struct flow_dissector_key_ip ip; - struct flow_dissector_key_vlan vlan; - struct flow_dissector_key_eth_addrs eth_addrs; -}; - -struct ethtool_rx_flow_match { - struct flow_dissector dissector; - struct ethtool_rx_flow_key key; - struct ethtool_rx_flow_key mask; -}; - -enum ethtool_module_fw_flash_status { - ETHTOOL_MODULE_FW_FLASH_STATUS_STARTED = 1, - ETHTOOL_MODULE_FW_FLASH_STATUS_IN_PROGRESS = 2, - ETHTOOL_MODULE_FW_FLASH_STATUS_COMPLETED = 3, - ETHTOOL_MODULE_FW_FLASH_STATUS_ERROR = 4, -}; - -enum { - SFF8024_ID_UNK = 0, - SFF8024_ID_SFF_8472 = 2, - SFF8024_ID_SFP = 3, - SFF8024_ID_DWDM_SFP = 11, - SFF8024_ID_QSFP_8438 = 12, - SFF8024_ID_QSFP_8436_8636 = 13, - SFF8024_ID_QSFP28_8636 = 17, - SFF8024_ID_QSFP_DD = 24, - SFF8024_ID_OSFP = 25, - SFF8024_ID_DSFP = 27, - SFF8024_ID_QSFP_PLUS_CMIS = 30, - SFF8024_ID_SFP_DD_CMIS = 31, - SFF8024_ID_SFP_PLUS_CMIS = 32, - SFF8024_ENCODING_UNSPEC = 0, - SFF8024_ENCODING_8B10B = 1, - SFF8024_ENCODING_4B5B = 2, - SFF8024_ENCODING_NRZ = 3, - SFF8024_ENCODING_8472_MANCHESTER = 4, - SFF8024_ENCODING_8472_SONET = 5, - SFF8024_ENCODING_8472_64B66B = 6, - SFF8024_ENCODING_8436_MANCHESTER = 6, - SFF8024_ENCODING_8436_SONET = 4, - SFF8024_ENCODING_8436_64B66B = 5, - SFF8024_ENCODING_256B257B = 7, - SFF8024_ENCODING_PAM4 = 8, - SFF8024_CONNECTOR_UNSPEC = 0, - SFF8024_CONNECTOR_SC = 1, - SFF8024_CONNECTOR_FIBERJACK = 6, - SFF8024_CONNECTOR_LC = 7, - SFF8024_CONNECTOR_MT_RJ = 8, - SFF8024_CONNECTOR_MU = 9, - SFF8024_CONNECTOR_SG = 10, - SFF8024_CONNECTOR_OPTICAL_PIGTAIL = 11, - SFF8024_CONNECTOR_MPO_1X12 = 12, - SFF8024_CONNECTOR_MPO_2X16 = 13, - SFF8024_CONNECTOR_HSSDC_II = 32, - SFF8024_CONNECTOR_COPPER_PIGTAIL = 33, - SFF8024_CONNECTOR_RJ45 = 34, - SFF8024_CONNECTOR_NOSEPARATE = 35, - SFF8024_CONNECTOR_MXC_2X16 = 36, - SFF8024_ECC_UNSPEC = 0, - SFF8024_ECC_100G_25GAUI_C2M_AOC = 1, - SFF8024_ECC_100GBASE_SR4_25GBASE_SR = 2, - SFF8024_ECC_100GBASE_LR4_25GBASE_LR = 3, - SFF8024_ECC_100GBASE_ER4_25GBASE_ER = 4, - SFF8024_ECC_100GBASE_SR10 = 5, - SFF8024_ECC_100GBASE_CR4 = 11, - SFF8024_ECC_25GBASE_CR_S = 12, - SFF8024_ECC_25GBASE_CR_N = 13, - SFF8024_ECC_10GBASE_T_SFI = 22, - SFF8024_ECC_10GBASE_T_SR = 28, - SFF8024_ECC_5GBASE_T = 29, - SFF8024_ECC_2_5GBASE_T = 30, -}; - -enum { - SFP_PHYS_ID = 0, - SFP_PHYS_EXT_ID = 1, - SFP_PHYS_EXT_ID_SFP = 4, - SFP_CONNECTOR = 2, - SFP_COMPLIANCE = 3, - SFP_ENCODING = 11, - SFP_BR_NOMINAL = 12, - SFP_RATE_ID = 13, - SFF_RID_8079 = 1, - SFF_RID_8431_RX_ONLY = 2, - SFF_RID_8431_TX_ONLY = 4, - SFF_RID_8431 = 6, - SFF_RID_10G8G = 14, - SFP_LINK_LEN_SM_KM = 14, - SFP_LINK_LEN_SM_100M = 15, - SFP_LINK_LEN_50UM_OM2_10M = 16, - SFP_LINK_LEN_62_5UM_OM1_10M = 17, - SFP_LINK_LEN_COPPER_1M = 18, - SFP_LINK_LEN_50UM_OM4_10M = 18, - SFP_LINK_LEN_50UM_OM3_10M = 19, - SFP_VENDOR_NAME = 20, - SFP_VENDOR_OUI = 37, - SFP_VENDOR_PN = 40, - SFP_VENDOR_REV = 56, - SFP_OPTICAL_WAVELENGTH_MSB = 60, - SFP_OPTICAL_WAVELENGTH_LSB = 61, - SFP_CABLE_SPEC = 60, - SFP_CC_BASE = 63, - SFP_OPTIONS = 64, - SFP_OPTIONS_HIGH_POWER_LEVEL = 8192, - SFP_OPTIONS_PAGING_A2 = 4096, - SFP_OPTIONS_RETIMER = 2048, - SFP_OPTIONS_COOLED_XCVR = 1024, - SFP_OPTIONS_POWER_DECL = 512, - SFP_OPTIONS_RX_LINEAR_OUT = 256, - SFP_OPTIONS_RX_DECISION_THRESH = 128, - SFP_OPTIONS_TUNABLE_TX = 64, - SFP_OPTIONS_RATE_SELECT = 32, - SFP_OPTIONS_TX_DISABLE = 16, - SFP_OPTIONS_TX_FAULT = 8, - SFP_OPTIONS_LOS_INVERTED = 4, - SFP_OPTIONS_LOS_NORMAL = 2, - SFP_BR_MAX = 66, - SFP_BR_MIN = 67, - SFP_VENDOR_SN = 68, - SFP_DATECODE = 84, - SFP_DIAGMON = 92, - SFP_DIAGMON_DDM = 64, - SFP_DIAGMON_INT_CAL = 32, - SFP_DIAGMON_EXT_CAL = 16, - SFP_DIAGMON_RXPWR_AVG = 8, - SFP_DIAGMON_ADDRMODE = 4, - SFP_ENHOPTS = 93, - SFP_ENHOPTS_ALARMWARN = 128, - SFP_ENHOPTS_SOFT_TX_DISABLE = 64, - SFP_ENHOPTS_SOFT_TX_FAULT = 32, - SFP_ENHOPTS_SOFT_RX_LOS = 16, - SFP_ENHOPTS_SOFT_RATE_SELECT = 8, - SFP_ENHOPTS_APP_SELECT_SFF8079 = 4, - SFP_ENHOPTS_SOFT_RATE_SFF8431 = 2, - SFP_SFF8472_COMPLIANCE = 94, - SFP_SFF8472_COMPLIANCE_NONE = 0, - SFP_SFF8472_COMPLIANCE_REV9_3 = 1, - SFP_SFF8472_COMPLIANCE_REV9_5 = 2, - SFP_SFF8472_COMPLIANCE_REV10_2 = 3, - SFP_SFF8472_COMPLIANCE_REV10_4 = 4, - SFP_SFF8472_COMPLIANCE_REV11_0 = 5, - SFP_SFF8472_COMPLIANCE_REV11_3 = 6, - SFP_SFF8472_COMPLIANCE_REV11_4 = 7, - SFP_SFF8472_COMPLIANCE_REV12_0 = 8, - SFP_CC_EXT = 95, -}; - -enum ethnl_sock_type { - ETHTOOL_SOCK_TYPE_MODULE_FW_FLASH = 0, -}; - -struct ethnl_sock_priv { - struct net_device *dev; - u32 portid; - enum ethnl_sock_type type; -}; - -struct ethtool_module_fw_flash { - struct list_head list; - netdevice_tracker dev_tracker; - struct work_struct work; - struct ethtool_cmis_fw_update_params fw_update; -}; - -struct module_reply_data { - struct ethnl_reply_data base; - struct ethtool_module_power_mode_params power; -}; - -struct nf_ct_helper_expectfn { - struct list_head head; - const char *name; - void (*expectfn)(struct nf_conn *, struct nf_conntrack_expect *); -}; - -struct nf_conntrack_nat_helper { - struct list_head list; - char mod_name[16]; - struct module *module; -}; - -enum nft_cmp_ops { - NFT_CMP_EQ = 0, - NFT_CMP_NEQ = 1, - NFT_CMP_LT = 2, - NFT_CMP_LTE = 3, - NFT_CMP_GT = 4, - NFT_CMP_GTE = 5, -}; - -enum nft_cmp_attributes { - NFTA_CMP_UNSPEC = 0, - NFTA_CMP_SREG = 1, - NFTA_CMP_OP = 2, - NFTA_CMP_DATA = 3, - __NFTA_CMP_MAX = 4, -}; - -enum nft_offload_reg_flags { - NFT_OFFLOAD_F_NETWORK2HOST = 1, -}; - -struct nft_cmp_expr { - struct nft_data data; - u8 sreg; - u8 len; - enum nft_cmp_ops op: 8; -}; - -union nft_cmp_offload_data { - u16 val16; - u32 val32; - u64 val64; -}; - -enum nft_queue_attributes { - NFTA_QUEUE_UNSPEC = 0, - NFTA_QUEUE_NUM = 1, - NFTA_QUEUE_TOTAL = 2, - NFTA_QUEUE_FLAGS = 3, - NFTA_QUEUE_SREG_QNUM = 4, - __NFTA_QUEUE_MAX = 5, -}; - -struct nft_queue { - u8 sreg_qnum; - u16 queuenum; - u16 queues_total; - u16 flags; -}; - -struct xt_udp { - __u16 spts[2]; - __u16 dpts[2]; - __u8 invflags; -}; - -struct ipt_icmp { - __u8 type; - __u8 code[2]; - __u8 invflags; -}; - -struct ip6t_icmp { - __u8 type; - __u8 code[2]; - __u8 invflags; -}; - -struct xt_bpf_info { - __u16 bpf_program_num_elem; - struct sock_filter bpf_program[64]; - struct bpf_prog *filter; -}; - -enum xt_bpf_modes { - XT_BPF_MODE_BYTECODE = 0, - XT_BPF_MODE_FD_PINNED = 1, - XT_BPF_MODE_FD_ELF = 2, -}; - -struct xt_bpf_info_v1 { - __u16 mode; - __u16 bpf_program_num_elem; - __s32 fd; - union { - struct sock_filter bpf_program[64]; - char path[512]; - }; - struct bpf_prog *filter; -}; - -enum { - XT_OWNER_UID = 1, - XT_OWNER_GID = 2, - XT_OWNER_SOCKET = 4, - XT_OWNER_SUPPL_GROUPS = 8, -}; - -struct xt_owner_match_info { - __u32 uid_min; - __u32 uid_max; - __u32 gid_min; - __u32 gid_max; - __u8 match; - __u8 invert; -}; - -struct xt_sctp_flag_info { - __u8 chunktype; - __u8 flag; - __u8 flag_mask; -}; - -struct xt_sctp_info { - __u16 dpts[2]; - __u16 spts[2]; - __u32 chunkmap[64]; - __u32 chunk_match_type; - struct xt_sctp_flag_info flag_info[4]; - int flag_count; - __u32 flags; - __u32 invflags; -}; - -struct hash_ipportip4_elem { - __be32 ip; - __be32 ip2; - __be16 port; - u8 proto; - u8 padding; -}; - -struct hash_ipportip4 { - struct htable *table; - struct htable_gc gc; - u32 maxelem; - u32 initval; - u8 bucketsize; - struct list_head ad; - struct hash_ipportip4_elem next; -}; - -struct hash_ipportip4_resize_ad { - struct list_head list; - enum ipset_adt ad; - struct hash_ipportip4_elem d; - struct ip_set_ext ext; - struct ip_set_ext mext; - u32 flags; -}; - -struct hash_ipportip6_elem { - union nf_inet_addr ip; - union nf_inet_addr ip2; - __be16 port; - u8 proto; - u8 padding; -}; - -struct hash_ipportip6 { - struct htable *table; - struct htable_gc gc; - u32 maxelem; - u32 initval; - u8 bucketsize; - struct list_head ad; - struct hash_ipportip6_elem next; -}; - -struct hash_ipportip6_resize_ad { - struct list_head list; - enum ipset_adt ad; - struct hash_ipportip6_elem d; - struct ip_set_ext ext; - struct ip_set_ext mext; - u32 flags; -}; - -struct raw_frag_vec { - struct msghdr *msg; - union { - struct icmphdr icmph; - char c[1]; - } hdr; - int hlen; -}; - -struct fib4_rule { - struct fib_rule common; - u8 dst_len; - u8 src_len; - dscp_t dscp; - u8 dscp_full: 1; - __be32 src; - __be32 srcmask; - __be32 dst; - __be32 dstmask; - u32 tclassid; -}; - -struct xfrm_hash_state_ptrs { - const struct hlist_head *bydst; - const struct hlist_head *bysrc; - const struct hlist_head *byspi; - unsigned int hmask; -}; - -struct xfrm6_tunnel_net { - struct hlist_head spi_byaddr[256]; - struct hlist_head spi_byspi[256]; - u32 spi; -}; - -struct xfrm6_tunnel_spi { - struct hlist_node list_byaddr; - struct hlist_node list_byspi; - xfrm_address_t addr; - u32 spi; - refcount_t refcnt; - struct callback_head callback_head; -}; - -struct stp_proto { - unsigned char group_address[6]; - void (*rcv)(const struct stp_proto *, struct sk_buff *, struct net_device *); - void *data; -}; - -struct switchdev_brport { - struct net_device *dev; - const void *ctx; - struct notifier_block *atomic_nb; - struct notifier_block *blocking_nb; - bool tx_fwd_offload; -}; - -struct switchdev_notifier_brport_info { - struct switchdev_notifier_info info; - const struct switchdev_brport brport; -}; - -enum { - MDBA_ROUTER_UNSPEC = 0, - MDBA_ROUTER_PORT = 1, - __MDBA_ROUTER_MAX = 2, -}; - -enum { - MDBA_ROUTER_PATTR_UNSPEC = 0, - MDBA_ROUTER_PATTR_TIMER = 1, - MDBA_ROUTER_PATTR_TYPE = 2, - MDBA_ROUTER_PATTR_INET_TIMER = 3, - MDBA_ROUTER_PATTR_INET6_TIMER = 4, - MDBA_ROUTER_PATTR_VID = 5, - __MDBA_ROUTER_PATTR_MAX = 6, -}; - -struct br_mdb_src_entry { - struct br_ip addr; -}; - -struct br_mdb_config { - struct net_bridge *br; - struct net_bridge_port *p; - struct br_mdb_entry *entry; - struct br_ip group; - bool src_entry; - u8 filter_mode; - u16 nlflags; - struct br_mdb_src_entry *src_entries; - int num_src_entries; - u8 rt_protocol; -}; - -struct br_mdb_flush_desc { - u32 port_ifindex; - u16 vid; - u8 rt_protocol; - u8 state; - u8 state_mask; -}; - -struct hdr_ui { - __u8 dsap; - __u8 ssap; - __u8 ctrl; - __u8 orig[3]; - __be16 type; -}; - -struct hdr_ni { - __u8 dsap; - __u8 ssap; - __be16 ctrl; - __u8 orig[3]; - __be16 type; -}; - -struct ebt_802_3_hdr { - __u8 daddr[6]; - __u8 saddr[6]; - __be16 len; - union { - struct hdr_ui ui; - struct hdr_ni ni; - } llc; -}; - -struct ebt_802_3_info { - __u8 sap; - __be16 type; - __u8 bitmask; - __u8 invflags; -}; - -enum { - SUNRPC_PIPEFS_NFS_PRIO = 0, - SUNRPC_PIPEFS_RPC_PRIO = 1, -}; - -struct rpc_cb_add_xprt_calldata { - struct rpc_xprt_switch *xps; - struct rpc_xprt *xprt; -}; - -struct connect_timeout_data { - long unsigned int connect_timeout; - long unsigned int reconnect_timeout; -}; - -struct xprt_addr { - const char *addr; - struct callback_head rcu; -}; - -enum vlan_name_types { - VLAN_NAME_TYPE_PLUS_VID = 0, - VLAN_NAME_TYPE_RAW_PLUS_VID = 1, - VLAN_NAME_TYPE_PLUS_VID_NO_PAD = 2, - VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD = 3, - VLAN_NAME_TYPE_HIGHEST = 4, -}; - -struct vlan_net { - struct proc_dir_entry *proc_vlan_dir; - struct proc_dir_entry *proc_vlan_conf; - short unsigned int name_type; -}; - -struct sctp_hash_cmp_arg { - const union sctp_addr *paddr; - const struct net *net; - __be16 lport; -}; - -enum ovs_meter_cmd { - OVS_METER_CMD_UNSPEC = 0, - OVS_METER_CMD_FEATURES = 1, - OVS_METER_CMD_SET = 2, - OVS_METER_CMD_DEL = 3, - OVS_METER_CMD_GET = 4, -}; - -enum ovs_meter_attr { - OVS_METER_ATTR_UNSPEC = 0, - OVS_METER_ATTR_ID = 1, - OVS_METER_ATTR_KBPS = 2, - OVS_METER_ATTR_STATS = 3, - OVS_METER_ATTR_BANDS = 4, - OVS_METER_ATTR_USED = 5, - OVS_METER_ATTR_CLEAR = 6, - OVS_METER_ATTR_MAX_METERS = 7, - OVS_METER_ATTR_MAX_BANDS = 8, - OVS_METER_ATTR_PAD = 9, - __OVS_METER_ATTR_MAX = 10, -}; - -enum ovs_band_attr { - OVS_BAND_ATTR_UNSPEC = 0, - OVS_BAND_ATTR_TYPE = 1, - OVS_BAND_ATTR_RATE = 2, - OVS_BAND_ATTR_BURST = 3, - OVS_BAND_ATTR_STATS = 4, - __OVS_BAND_ATTR_MAX = 5, -}; - -enum ovs_meter_band_type { - OVS_METER_BAND_TYPE_UNSPEC = 0, - OVS_METER_BAND_TYPE_DROP = 1, - __OVS_METER_BAND_TYPE_MAX = 2, -}; - -struct trace_event_raw_handshake_event_class { - struct trace_entry ent; - const void *req; - const void *sk; - unsigned int netns_ino; - char __data[0]; -}; - -struct trace_event_raw_handshake_fd_class { - struct trace_entry ent; - const void *req; - const void *sk; - int fd; - unsigned int netns_ino; - char __data[0]; -}; - -struct trace_event_raw_handshake_error_class { - struct trace_entry ent; - const void *req; - const void *sk; - int err; - unsigned int netns_ino; - char __data[0]; -}; - -struct trace_event_raw_handshake_alert_class { - struct trace_entry ent; - __u8 saddr[28]; - __u8 daddr[28]; - unsigned int netns_ino; - long unsigned int level; - long unsigned int description; - char __data[0]; -}; - -struct trace_event_raw_handshake_complete { - struct trace_entry ent; - const void *req; - const void *sk; - int status; - unsigned int netns_ino; - char __data[0]; -}; - -struct trace_event_raw_tls_contenttype { - struct trace_entry ent; - __u8 saddr[28]; - __u8 daddr[28]; - unsigned int netns_ino; - long unsigned int type; - char __data[0]; -}; - -struct trace_event_data_offsets_handshake_event_class {}; - -struct trace_event_data_offsets_handshake_fd_class {}; - -struct trace_event_data_offsets_handshake_error_class {}; - -struct trace_event_data_offsets_handshake_alert_class {}; - -struct trace_event_data_offsets_handshake_complete {}; - -struct trace_event_data_offsets_tls_contenttype {}; - -typedef void (*btf_trace_handshake_submit)(void *, const struct net *, const struct handshake_req *, const struct sock *); - -typedef void (*btf_trace_handshake_submit_err)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); - -typedef void (*btf_trace_handshake_cancel)(void *, const struct net *, const struct handshake_req *, const struct sock *); - -typedef void (*btf_trace_handshake_cancel_none)(void *, const struct net *, const struct handshake_req *, const struct sock *); - -typedef void (*btf_trace_handshake_cancel_busy)(void *, const struct net *, const struct handshake_req *, const struct sock *); - -typedef void (*btf_trace_handshake_destruct)(void *, const struct net *, const struct handshake_req *, const struct sock *); - -typedef void (*btf_trace_handshake_complete)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); - -typedef void (*btf_trace_handshake_notify_err)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); - -typedef void (*btf_trace_handshake_cmd_accept)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); - -typedef void (*btf_trace_handshake_cmd_accept_err)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); - -typedef void (*btf_trace_handshake_cmd_done)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); - -typedef void (*btf_trace_handshake_cmd_done_err)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); - -typedef void (*btf_trace_tls_contenttype)(void *, const struct sock *, unsigned char); - -typedef void (*btf_trace_tls_alert_send)(void *, const struct sock *, unsigned char, unsigned char); - -typedef void (*btf_trace_tls_alert_recv)(void *, const struct sock *, unsigned char, unsigned char); - -struct user_pac_mask { - __u64 data_mask; - __u64 insn_mask; -}; - -struct user_pac_address_keys { - __int128 unsigned apiakey; - __int128 unsigned apibkey; - __int128 unsigned apdakey; - __int128 unsigned apdbkey; -}; - -struct user_pac_generic_keys { - __int128 unsigned apgakey; -}; - -struct trace_event_raw_sys_enter { - struct trace_entry ent; - long int id; - long unsigned int args[6]; - char __data[0]; -}; - -struct trace_event_raw_sys_exit { - struct trace_entry ent; - long int id; - long int ret; - char __data[0]; -}; - -struct trace_event_data_offsets_sys_enter {}; - -struct trace_event_data_offsets_sys_exit {}; - -typedef void (*btf_trace_sys_enter)(void *, struct pt_regs *, long int); - -typedef void (*btf_trace_sys_exit)(void *, struct pt_regs *, long int); - -struct pt_regs_offset { - const char *name; - int offset; -}; - -enum aarch64_regset { - REGSET_GPR = 0, - REGSET_FPR = 1, - REGSET_TLS = 2, - REGSET_HW_BREAK = 3, - REGSET_HW_WATCH = 4, - REGSET_FPMR = 5, - REGSET_SYSTEM_CALL = 6, - REGSET_PAC_MASK = 7, - REGSET_PAC_ENABLED_KEYS = 8, - REGSET_PACA_KEYS = 9, - REGSET_PACG_KEYS = 10, - REGSET_TAGGED_ADDR_CTRL = 11, - REGSET_POE = 12, -}; - -enum ptrace_syscall_dir { - PTRACE_SYSCALL_ENTER = 0, - PTRACE_SYSCALL_EXIT = 1, -}; - -struct trace_event_raw_contention_begin { - struct trace_entry ent; - void *lock_addr; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_contention_end { - struct trace_entry ent; - void *lock_addr; - int ret; - char __data[0]; -}; - -struct trace_event_data_offsets_contention_begin {}; - -struct trace_event_data_offsets_contention_end {}; - -typedef void (*btf_trace_contention_begin)(void *, void *, unsigned int); - -typedef void (*btf_trace_contention_end)(void *, void *, int); - -struct mutex_waiter { - struct list_head list; - struct task_struct *task; - struct ww_acquire_ctx *ww_ctx; -}; - -struct rcu_gp_oldstate { - long unsigned int rgos_norm; - long unsigned int rgos_exp; -}; - -struct rcu_exp_work { - long unsigned int rew_s; - struct kthread_work rew_work; -}; - -struct rcu_node { - raw_spinlock_t lock; - long unsigned int gp_seq; - long unsigned int gp_seq_needed; - long unsigned int completedqs; - long unsigned int qsmask; - long unsigned int rcu_gp_init_mask; - long unsigned int qsmaskinit; - long unsigned int qsmaskinitnext; - long unsigned int expmask; - long unsigned int expmaskinit; - long unsigned int expmaskinitnext; - struct kthread_worker *exp_kworker; - long unsigned int cbovldmask; - long unsigned int ffmask; - long unsigned int grpmask; - int grplo; - int grphi; - u8 grpnum; - u8 level; - bool wait_blkd_tasks; - struct rcu_node *parent; - struct list_head blkd_tasks; - struct list_head *gp_tasks; - struct list_head *exp_tasks; - struct list_head *boost_tasks; - struct rt_mutex boost_mtx; - long unsigned int boost_time; - struct mutex kthread_mutex; - struct task_struct *boost_kthread_task; - unsigned int boost_kthread_status; - long unsigned int n_boosts; - struct swait_queue_head nocb_gp_wq[2]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - raw_spinlock_t fqslock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - spinlock_t exp_lock; - long unsigned int exp_seq_rq; - wait_queue_head_t exp_wq[4]; - struct rcu_exp_work rew; - bool exp_need_flush; - raw_spinlock_t exp_poll_lock; - long unsigned int exp_seq_poll_rq; - struct work_struct exp_poll_wq; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -union rcu_noqs { - struct { - u8 norm; - u8 exp; - } b; - u16 s; -}; - -struct rcu_snap_record { - long unsigned int gp_seq; - u64 cputime_irq; - u64 cputime_softirq; - u64 cputime_system; - u64 nr_hardirqs; - unsigned int nr_softirqs; - long long unsigned int nr_csw; - long unsigned int jiffies; -}; - -struct rcu_data { - long unsigned int gp_seq; - long unsigned int gp_seq_needed; - union rcu_noqs cpu_no_qs; - bool core_needs_qs; - bool beenonline; - bool gpwrap; - bool cpu_started; - struct rcu_node *mynode; - long unsigned int grpmask; - long unsigned int ticks_this_gp; - struct irq_work defer_qs_iw; - int defer_qs_iw_pending; - struct work_struct strict_work; - struct rcu_segcblist cblist; - long int qlen_last_fqs_check; - long unsigned int n_cbs_invoked; - long unsigned int n_force_qs_snap; - long int blimit; - int watching_snap; - bool rcu_need_heavy_qs; - bool rcu_urgent_qs; - bool rcu_forced_tick; - bool rcu_forced_tick_exp; - long unsigned int barrier_seq_snap; - struct callback_head barrier_head; - int exp_watching_snap; - struct swait_queue_head nocb_cb_wq; - struct swait_queue_head nocb_state_wq; - struct task_struct *nocb_gp_kthread; - raw_spinlock_t nocb_lock; - int nocb_defer_wakeup; - struct timer_list nocb_timer; - long unsigned int nocb_gp_adv_time; - struct mutex nocb_gp_kthread_mutex; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - raw_spinlock_t nocb_bypass_lock; - struct rcu_cblist nocb_bypass; - long unsigned int nocb_bypass_first; - long unsigned int nocb_nobypass_last; - int nocb_nobypass_count; - long: 64; - raw_spinlock_t nocb_gp_lock; - u8 nocb_gp_sleep; - u8 nocb_gp_bypass; - u8 nocb_gp_gp; - long unsigned int nocb_gp_seq; - long unsigned int nocb_gp_loops; - struct swait_queue_head nocb_gp_wq; - bool nocb_cb_sleep; - struct task_struct *nocb_cb_kthread; - struct list_head nocb_head_rdp; - struct list_head nocb_entry_rdp; - struct rcu_data *nocb_toggling_rdp; - long: 64; - long: 64; - long: 64; - struct rcu_data *nocb_gp_rdp; - struct task_struct *rcu_cpu_kthread_task; - unsigned int rcu_cpu_kthread_status; - char rcu_cpu_has_work; - long unsigned int rcuc_activity; - unsigned int softirq_snap; - struct irq_work rcu_iw; - bool rcu_iw_pending; - long unsigned int rcu_iw_gp_seq; - long unsigned int rcu_ofl_gp_seq; - short int rcu_ofl_gp_state; - long unsigned int rcu_onl_gp_seq; - short int rcu_onl_gp_state; - long unsigned int last_fqs_resched; - long unsigned int last_sched_clock; - struct rcu_snap_record snap_record; - long int lazy_len; - int cpu; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct sr_wait_node { - atomic_t inuse; - struct llist_node node; -}; - -struct rcu_state { - struct rcu_node node[3]; - struct rcu_node *level[3]; - int ncpus; - int n_online_cpus; - long: 64; - long: 64; - long: 64; - long: 64; - long unsigned int gp_seq; - long unsigned int gp_max; - struct task_struct *gp_kthread; - struct swait_queue_head gp_wq; - short int gp_flags; - short int gp_state; - long unsigned int gp_wake_time; - long unsigned int gp_wake_seq; - long unsigned int gp_seq_polled; - long unsigned int gp_seq_polled_snap; - long unsigned int gp_seq_polled_exp_snap; - struct mutex barrier_mutex; - atomic_t barrier_cpu_count; - struct completion barrier_completion; - long unsigned int barrier_sequence; - raw_spinlock_t barrier_lock; - struct mutex exp_mutex; - struct mutex exp_wake_mutex; - long unsigned int expedited_sequence; - atomic_t expedited_need_qs; - struct swait_queue_head expedited_wq; - int ncpus_snap; - u8 cbovld; - u8 cbovldnext; - long unsigned int jiffies_force_qs; - long unsigned int jiffies_kick_kthreads; - long unsigned int n_force_qs; - long unsigned int gp_start; - long unsigned int gp_end; - long unsigned int gp_activity; - long unsigned int gp_req_activity; - long unsigned int jiffies_stall; - int nr_fqs_jiffies_stall; - long unsigned int jiffies_resched; - long unsigned int n_force_qs_gpstart; - const char *name; - char abbr; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - arch_spinlock_t ofl_lock; - struct llist_head srs_next; - struct llist_node *srs_wait_tail; - struct llist_node *srs_done_tail; - struct sr_wait_node srs_wait_nodes[5]; - struct work_struct srs_cleanup_work; - atomic_t srs_cleanups_pending; - struct mutex nocb_mutex; - int nocb_is_setup; -}; - -struct kvfree_rcu_bulk_data { - struct list_head list; - struct rcu_gp_oldstate gp_snap; - long unsigned int nr_records; - void *records[0]; -}; - -struct kfree_rcu_cpu; - -struct kfree_rcu_cpu_work { - struct rcu_work rcu_work; - struct callback_head *head_free; - struct rcu_gp_oldstate head_free_gp_snap; - struct list_head bulk_head_free[2]; - struct kfree_rcu_cpu *krcp; -}; - -struct kfree_rcu_cpu { - struct callback_head *head; - long unsigned int head_gp_snap; - atomic_t head_count; - struct list_head bulk_head[2]; - atomic_t bulk_count[2]; - struct kfree_rcu_cpu_work krw_arr[2]; - raw_spinlock_t lock; - struct delayed_work monitor_work; - bool initialized; - struct delayed_work page_cache_work; - atomic_t backoff_page_cache_fill; - atomic_t work_in_progress; - struct hrtimer hrtimer; - struct llist_head bkvcache; - int nr_bkv_objs; -}; - -enum audit_nlgrps { - AUDIT_NLGRP_NONE = 0, - AUDIT_NLGRP_READLOG = 1, - __AUDIT_NLGRP_MAX = 2, -}; - -struct audit_status { - __u32 mask; - __u32 enabled; - __u32 failure; - __u32 pid; - __u32 rate_limit; - __u32 backlog_limit; - __u32 lost; - __u32 backlog; - union { - __u32 version; - __u32 feature_bitmap; - }; - __u32 backlog_wait_time; - __u32 backlog_wait_time_actual; -}; - -struct audit_features { - __u32 vers; - __u32 mask; - __u32 features; - __u32 lock; -}; - -struct audit_tty_status { - __u32 enabled; - __u32 log_passwd; -}; - -struct audit_sig_info { - uid_t uid; - pid_t pid; - char ctx[0]; -}; - -struct audit_netlink_list { - __u32 portid; - struct net *net; - struct sk_buff_head q; -}; - -struct audit_net { - struct sock *sk; -}; - -struct auditd_connection { - struct pid *pid; - u32 portid; - struct net *net; - struct callback_head rcu; -}; - -struct audit_ctl_mutex { - struct mutex lock; - void *owner; -}; - -struct audit_buffer { - struct sk_buff *skb; - struct audit_context *ctx; - gfp_t gfp_mask; -}; - -struct audit_reply { - __u32 portid; - struct net *net; - struct sk_buff *skb; -}; - -typedef long unsigned int perf_trace_t[1024]; - -enum page_size_enum { - __PAGE_SIZE = 4096, -}; - -struct bpf_prog_pack { - struct list_head list; - void *ptr; - long unsigned int bitmap[0]; -}; - -struct bpf_prog_dummy { - struct bpf_prog prog; -}; - -typedef u64 (*btf_bpf_user_rnd_u32)(void); - -typedef u64 (*btf_bpf_get_raw_cpu_id)(void); - -struct _bpf_dtab_netdev { - struct net_device *dev; -}; - -struct trace_event_raw_xdp_exception { - struct trace_entry ent; - int prog_id; - u32 act; - int ifindex; - char __data[0]; -}; - -struct trace_event_raw_xdp_bulk_tx { - struct trace_entry ent; - int ifindex; - u32 act; - int drops; - int sent; - int err; - char __data[0]; -}; - -struct trace_event_raw_xdp_redirect_template { - struct trace_entry ent; - int prog_id; - u32 act; - int ifindex; - int err; - int to_ifindex; - u32 map_id; - int map_index; - char __data[0]; -}; - -struct trace_event_raw_xdp_cpumap_kthread { - struct trace_entry ent; - int map_id; - u32 act; - int cpu; - unsigned int drops; - unsigned int processed; - int sched; - unsigned int xdp_pass; - unsigned int xdp_drop; - unsigned int xdp_redirect; - char __data[0]; -}; - -struct trace_event_raw_xdp_cpumap_enqueue { - struct trace_entry ent; - int map_id; - u32 act; - int cpu; - unsigned int drops; - unsigned int processed; - int to_cpu; - char __data[0]; -}; - -struct trace_event_raw_xdp_devmap_xmit { - struct trace_entry ent; - int from_ifindex; - u32 act; - int to_ifindex; - int drops; - int sent; - int err; - char __data[0]; -}; - -struct trace_event_raw_mem_disconnect { - struct trace_entry ent; - const struct xdp_mem_allocator *xa; - u32 mem_id; - u32 mem_type; - const void *allocator; - char __data[0]; -}; - -struct trace_event_raw_mem_connect { - struct trace_entry ent; - const struct xdp_mem_allocator *xa; - u32 mem_id; - u32 mem_type; - const void *allocator; - const struct xdp_rxq_info *rxq; - int ifindex; - char __data[0]; -}; - -struct trace_event_raw_mem_return_failed { - struct trace_entry ent; - const struct page *page; - u32 mem_id; - u32 mem_type; - char __data[0]; -}; - -struct trace_event_raw_bpf_xdp_link_attach_failed { - struct trace_entry ent; - u32 __data_loc_msg; - char __data[0]; -}; - -struct trace_event_data_offsets_xdp_exception {}; - -struct trace_event_data_offsets_xdp_bulk_tx {}; - -struct trace_event_data_offsets_xdp_redirect_template {}; - -struct trace_event_data_offsets_xdp_cpumap_kthread {}; - -struct trace_event_data_offsets_xdp_cpumap_enqueue {}; - -struct trace_event_data_offsets_xdp_devmap_xmit {}; - -struct trace_event_data_offsets_mem_disconnect {}; - -struct trace_event_data_offsets_mem_connect {}; - -struct trace_event_data_offsets_mem_return_failed {}; - -struct trace_event_data_offsets_bpf_xdp_link_attach_failed { - u32 msg; - const void *msg_ptr_; -}; - -typedef void (*btf_trace_xdp_exception)(void *, const struct net_device *, const struct bpf_prog *, u32); - -typedef void (*btf_trace_xdp_bulk_tx)(void *, const struct net_device *, int, int, int); - -typedef void (*btf_trace_xdp_redirect)(void *, const struct net_device *, const struct bpf_prog *, const void *, int, enum bpf_map_type, u32, u32); - -typedef void (*btf_trace_xdp_redirect_err)(void *, const struct net_device *, const struct bpf_prog *, const void *, int, enum bpf_map_type, u32, u32); - -typedef void (*btf_trace_xdp_redirect_map)(void *, const struct net_device *, const struct bpf_prog *, const void *, int, enum bpf_map_type, u32, u32); - -typedef void (*btf_trace_xdp_redirect_map_err)(void *, const struct net_device *, const struct bpf_prog *, const void *, int, enum bpf_map_type, u32, u32); - -typedef void (*btf_trace_xdp_cpumap_kthread)(void *, int, unsigned int, unsigned int, int, struct xdp_cpumap_stats *); - -typedef void (*btf_trace_xdp_cpumap_enqueue)(void *, int, unsigned int, unsigned int, int); - -typedef void (*btf_trace_xdp_devmap_xmit)(void *, const struct net_device *, const struct net_device *, int, int, int); - -typedef void (*btf_trace_mem_disconnect)(void *, const struct xdp_mem_allocator *); - -typedef void (*btf_trace_mem_connect)(void *, const struct xdp_mem_allocator *, const struct xdp_rxq_info *); - -typedef void (*btf_trace_mem_return_failed)(void *, const struct xdp_mem_info *, const struct page *); - -typedef void (*btf_trace_bpf_xdp_link_attach_failed)(void *, const char *); - -struct tcx_link { - struct bpf_link link; - struct net_device *dev; - u32 location; -}; - -struct pcpu_group_info { - int nr_units; - long unsigned int base_offset; - unsigned int *cpu_map; -}; - -struct pcpu_alloc_info { - size_t static_size; - size_t reserved_size; - size_t dyn_size; - size_t unit_size; - size_t atom_size; - size_t alloc_size; - size_t __ai_size; - int nr_groups; - struct pcpu_group_info groups[0]; -}; - -typedef int pcpu_fc_cpu_to_node_fn_t(int); - -typedef int pcpu_fc_cpu_distance_fn_t(unsigned int, unsigned int); - -struct trace_event_raw_percpu_alloc_percpu { - struct trace_entry ent; - long unsigned int call_site; - bool reserved; - bool is_atomic; - size_t size; - size_t align; - void *base_addr; - int off; - void *ptr; - size_t bytes_alloc; - long unsigned int gfp_flags; - char __data[0]; -}; - -struct trace_event_raw_percpu_free_percpu { - struct trace_entry ent; - void *base_addr; - int off; - void *ptr; - char __data[0]; -}; - -struct trace_event_raw_percpu_alloc_percpu_fail { - struct trace_entry ent; - bool reserved; - bool is_atomic; - size_t size; - size_t align; - char __data[0]; -}; - -struct trace_event_raw_percpu_create_chunk { - struct trace_entry ent; - void *base_addr; - char __data[0]; -}; - -struct trace_event_raw_percpu_destroy_chunk { - struct trace_entry ent; - void *base_addr; - char __data[0]; -}; - -struct trace_event_data_offsets_percpu_alloc_percpu {}; - -struct trace_event_data_offsets_percpu_free_percpu {}; - -struct trace_event_data_offsets_percpu_alloc_percpu_fail {}; - -struct trace_event_data_offsets_percpu_create_chunk {}; - -struct trace_event_data_offsets_percpu_destroy_chunk {}; - -typedef void (*btf_trace_percpu_alloc_percpu)(void *, long unsigned int, bool, bool, size_t, size_t, void *, int, void *, size_t, gfp_t); - -typedef void (*btf_trace_percpu_free_percpu)(void *, void *, int, void *); - -typedef void (*btf_trace_percpu_alloc_percpu_fail)(void *, bool, bool, size_t, size_t); - -typedef void (*btf_trace_percpu_create_chunk)(void *, void *); - -typedef void (*btf_trace_percpu_destroy_chunk)(void *, void *); - -struct pcpu_block_md { - int scan_hint; - int scan_hint_start; - int contig_hint; - int contig_hint_start; - int left_free; - int right_free; - int first_free; - int nr_bits; -}; - -struct pcpuobj_ext { - struct obj_cgroup *cgroup; -}; - -struct pcpu_chunk { - struct list_head list; - int free_bytes; - struct pcpu_block_md chunk_md; - long unsigned int *bound_map; - void *base_addr; - long unsigned int *alloc_map; - struct pcpu_block_md *md_blocks; - void *data; - bool immutable; - bool isolated; - int start_offset; - int end_offset; - struct pcpuobj_ext *obj_exts; - int nr_pages; - int nr_populated; - int nr_empty_pop_pages; - long unsigned int populated[0]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum tlb_flush_reason { - TLB_FLUSH_ON_TASK_SWITCH = 0, - TLB_REMOTE_SHOOTDOWN = 1, - TLB_LOCAL_SHOOTDOWN = 2, - TLB_LOCAL_MM_SHOOTDOWN = 3, - TLB_REMOTE_SEND_IPI = 4, - NR_TLB_FLUSH_REASONS = 5, -}; - -struct trace_event_raw_tlb_flush { - struct trace_entry ent; - int reason; - long unsigned int pages; - char __data[0]; -}; - -struct trace_event_data_offsets_tlb_flush {}; - -typedef void (*btf_trace_tlb_flush)(void *, int, long unsigned int); - -struct trace_event_raw_mm_migrate_pages { - struct trace_entry ent; - long unsigned int succeeded; - long unsigned int failed; - long unsigned int thp_succeeded; - long unsigned int thp_failed; - long unsigned int thp_split; - long unsigned int large_folio_split; - enum migrate_mode mode; - int reason; - char __data[0]; -}; - -struct trace_event_raw_mm_migrate_pages_start { - struct trace_entry ent; - enum migrate_mode mode; - int reason; - char __data[0]; -}; - -struct trace_event_raw_migration_pte { - struct trace_entry ent; - long unsigned int addr; - long unsigned int pte; - int order; - char __data[0]; -}; - -struct trace_event_data_offsets_mm_migrate_pages {}; - -struct trace_event_data_offsets_mm_migrate_pages_start {}; - -struct trace_event_data_offsets_migration_pte {}; - -typedef void (*btf_trace_mm_migrate_pages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, enum migrate_mode, int); - -typedef void (*btf_trace_mm_migrate_pages_start)(void *, enum migrate_mode, int); - -typedef void (*btf_trace_set_migration_pte)(void *, long unsigned int, long unsigned int, int); - -typedef void (*btf_trace_remove_migration_pte)(void *, long unsigned int, long unsigned int, int); - -struct folio_referenced_arg { - int mapcount; - int referenced; - long unsigned int vm_flags; - struct mem_cgroup *memcg; -}; - -enum zs_mapmode { - ZS_MM_RW = 0, - ZS_MM_RO = 1, - ZS_MM_WO = 2, -}; - -struct zs_pool_stats { - atomic_long_t pages_compacted; -}; - -enum fullness_group { - ZS_INUSE_RATIO_0 = 0, - ZS_INUSE_RATIO_10 = 1, - ZS_INUSE_RATIO_99 = 10, - ZS_INUSE_RATIO_100 = 11, - NR_FULLNESS_GROUPS = 12, -}; - -enum class_stat_type { - ZS_OBJS_ALLOCATED = 12, - ZS_OBJS_INUSE = 13, - NR_CLASS_STAT_TYPES = 14, -}; - -struct zs_size_stat { - long unsigned int objs[14]; -}; - -struct size_class { - spinlock_t lock; - struct list_head fullness_list[12]; - int size; - int objs_per_zspage; - int pages_per_zspage; - unsigned int index; - struct zs_size_stat stats; -}; - -struct link_free { - union { - long unsigned int next; - long unsigned int handle; - }; -}; - -struct zs_pool { - const char *name; - struct size_class *size_class[255]; - struct kmem_cache *handle_cachep; - struct kmem_cache *zspage_cachep; - atomic_long_t pages_allocated; - struct zs_pool_stats stats; - struct shrinker *shrinker; - struct work_struct free_work; - rwlock_t migrate_lock; - atomic_t compaction_in_progress; -}; - -struct zspage { - struct { - unsigned int huge: 1; - unsigned int fullness: 4; - unsigned int class: 9; - unsigned int magic: 8; - }; - unsigned int inuse; - unsigned int freeobj; - struct page *first_page; - struct list_head list; - struct zs_pool *pool; - rwlock_t lock; -}; - -struct mapping_area { - local_lock_t lock; - char *vm_buf; - char *vm_addr; - enum zs_mapmode vm_mm; -}; - -struct files_stat_struct { - long unsigned int nr_files; - long unsigned int nr_free_files; - long unsigned int max_files; -}; - -struct backing_file { - struct file file; - struct path user_path; -}; - -struct postprocess_bh_ctx { - struct work_struct work; - struct buffer_head *bh; -}; - -struct bh_lru { - struct buffer_head *bhs[16]; -}; - -struct bh_accounting { - int nr; - int ratelimit; -}; - -struct proc_fs_context { - struct pid_namespace *pid_ns; - unsigned int mask; - enum proc_hidepid hidepid; - int gid; - enum proc_pidonly pidonly; -}; - -enum proc_param { - Opt_gid___10 = 0, - Opt_hidepid = 1, - Opt_subset = 2, -}; - -struct ext4_system_zone { - struct rb_node node; - ext4_fsblk_t start_blk; - unsigned int count; - u32 ino; -}; - -struct ext4_xattr_header { - __le32 h_magic; - __le32 h_refcount; - __le32 h_blocks; - __le32 h_hash; - __le32 h_checksum; - __u32 h_reserved[3]; -}; - -struct ext4_xattr_block_find { - struct ext4_xattr_search s; - struct buffer_head *bh; -}; - -struct cb_compound_hdr_arg { - unsigned int taglen; - const char *tag; - unsigned int minorversion; - unsigned int cb_ident; - unsigned int nops; -}; - -struct cb_compound_hdr_res { - __be32 *status; - unsigned int taglen; - const char *tag; - __be32 *nops; -}; - -struct callback_op { - __be32 (*process_op)(void *, void *, struct cb_process_state *); - __be32 (*decode_args)(struct svc_rqst *, struct xdr_stream *, void *); - __be32 (*encode_res)(struct svc_rqst *, struct xdr_stream *, const void *); - long int res_maxsize; -}; - -struct nlm_wait { - struct list_head b_list; - wait_queue_head_t b_wait; - struct nlm_host *b_host; - struct file_lock *b_lock; - __be32 b_status; -}; - -struct smb_mnt_fs_info { - __u32 version; - __u16 protocol_id; - __u16 tcon_flags; - __u32 vol_serial_number; - __u32 vol_create_time; - __u32 share_caps; - __u32 share_flags; - __u32 sector_flags; - __u32 optimal_sector_size; - __u32 max_bytes_chunk; - __u32 fs_attributes; - __u32 max_path_component; - __u32 device_type; - __u32 device_characteristics; - __u32 maximal_access; - __u64 cifs_posix_caps; -}; - -struct smb_mnt_tcon_info { - __u32 tid; - __u64 session_id; -} __attribute__((packed)); - -struct smb3_key_debug_info { - __u64 Suid; - __u16 cipher_type; - __u8 auth_key[16]; - __u8 smb3encryptionkey[16]; - __u8 smb3decryptionkey[16]; -} __attribute__((packed)); - -struct smb3_full_key_debug_info { - __u32 in_size; - __u64 session_id; - __u16 cipher_type; - __u8 session_key_length; - __u8 server_in_key_length; - __u8 server_out_key_length; - __u8 data[0]; -} __attribute__((packed)); - -struct smb2_err_rsp { - struct smb2_hdr hdr; - __le16 StructureSize; - __u8 ErrorContextCount; - __u8 Reserved; - __le32 ByteCount; - __u8 ErrorData[0]; -}; - -struct smb2_symlink_err_rsp { - __le32 SymLinkLength; - __le32 SymLinkErrorTag; - __le32 ReparseTag; - __le16 ReparseDataLength; - __le16 UnparsedPathLength; - __le16 SubstituteNameOffset; - __le16 SubstituteNameLength; - __le16 PrintNameOffset; - __le16 PrintNameLength; - __le32 Flags; - __u8 PathBuffer[0]; -}; - -struct smb2_error_context_rsp { - __le32 ErrorDataLength; - __le32 ErrorId; - __u8 ErrorContextData; -} __attribute__((packed)); - -struct network_resiliency_req { - __le32 Timeout; - __le32 Reserved; -}; - -struct cifs_fscache_volume_coherency_data { - __le64 resource_id; - __le64 vol_create_time; - __le32 vol_serial_number; -} __attribute__((packed)); - -struct cifs_fscache_inode_key { - __le64 uniqueid; - __le64 createtime; - u8 type; -} __attribute__((packed)); - -struct xfs_fsmap_head { - uint32_t fmh_iflags; - uint32_t fmh_oflags; - unsigned int fmh_count; - unsigned int fmh_entries; - struct xfs_fsmap fmh_keys[2]; -}; - -struct xfs_getfsmap_info { - struct xfs_fsmap_head *head; - struct fsmap *fsmap_recs; - struct xfs_buf *agf_bp; - struct xfs_perag *pag; - xfs_daddr_t next_daddr; - xfs_daddr_t low_daddr; - xfs_daddr_t end_daddr; - u64 missing_owner; - u32 dev; - struct xfs_rmap_irec low; - struct xfs_rmap_irec high; - bool last; -}; - -struct xfs_getfsmap_dev { - u32 dev; - int (*fn)(struct xfs_trans *, const struct xfs_fsmap *, struct xfs_getfsmap_info *); - sector_t nr_sectors; -}; - -struct xfs_rui_log_format { - uint16_t rui_type; - uint16_t rui_size; - uint32_t rui_nextents; - uint64_t rui_id; - struct xfs_map_extent rui_extents[0]; -}; - -struct xfs_rud_log_format { - uint16_t rud_type; - uint16_t rud_size; - uint32_t __pad; - uint64_t rud_rui_id; -}; - -struct xfs_rui_log_item { - struct xfs_log_item rui_item; - atomic_t rui_refcount; - atomic_t rui_next_extent; - struct xfs_rui_log_format rui_format; -}; - -struct xfs_rud_log_item { - struct xfs_log_item rud_item; - struct xfs_rui_log_item *rud_ruip; - struct xfs_rud_log_format rud_format; -}; - -struct dotl_openflag_map { - int open_flag; - int dotl_flag; -}; - -struct dotl_iattr_map { - int iattr_valid; - int p9_iattr_valid; -}; - -enum cachefiles_coherency_trace { - cachefiles_coherency_check_aux = 0, - cachefiles_coherency_check_content = 1, - cachefiles_coherency_check_dirty = 2, - cachefiles_coherency_check_len = 3, - cachefiles_coherency_check_objsize = 4, - cachefiles_coherency_check_ok = 5, - cachefiles_coherency_check_type = 6, - cachefiles_coherency_check_xattr = 7, - cachefiles_coherency_set_fail = 8, - cachefiles_coherency_set_ok = 9, - cachefiles_coherency_vol_check_cmp = 10, - cachefiles_coherency_vol_check_ok = 11, - cachefiles_coherency_vol_check_resv = 12, - cachefiles_coherency_vol_check_xattr = 13, - cachefiles_coherency_vol_set_fail = 14, - cachefiles_coherency_vol_set_ok = 15, -}; - -struct cachefiles_xattr { - __be64 object_size; - __be64 zero_point; - __u8 type; - __u8 content; - __u8 data[0]; -} __attribute__((packed)); - -struct cachefiles_vol_xattr { - __be32 reserved; - __u8 data[0]; -}; - -struct eventfs_root_inode { - struct eventfs_inode ei; - struct dentry *events_dir; -}; - -enum { - EVENTFS_SAVE_MODE = 65536, - EVENTFS_SAVE_UID = 131072, - EVENTFS_SAVE_GID = 262144, -}; - -struct btrfs_em_shrink_ctx { - long int nr_to_scan; - long int scanned; - u64 last_ino; - u64 last_root; -}; - -struct btrfs_dir_log_item { - __le64 end; -}; - -struct btrfs_log_ctx { - int log_ret; - int log_transid; - bool log_new_dentries; - bool logging_new_name; - bool logging_new_delayed_dentries; - bool logged_before; - struct btrfs_inode *inode; - struct list_head list; - struct list_head ordered_extents; - struct list_head conflict_inodes; - int num_conflict_inodes; - bool logging_conflict_inodes; - struct extent_buffer *scratch_eb; -}; - -enum { - LOG_INODE_ALL = 0, - LOG_INODE_EXISTS = 1, -}; - -enum { - LOG_WALK_PIN_ONLY = 0, - LOG_WALK_REPLAY_INODES = 1, - LOG_WALK_REPLAY_DIR_INDEX = 2, - LOG_WALK_REPLAY_ALL = 3, -}; - -struct walk_control { - int free; - int pin; - int stage; - bool ignore_cur_inode; - struct btrfs_root *replay_dest; - struct btrfs_trans_handle *trans; - int (*process_func)(struct btrfs_root *, struct extent_buffer *, struct walk_control *, u64, int); -}; - -struct btrfs_dir_list { - u64 ino; - struct list_head list; -}; - -struct btrfs_ino_list { - u64 ino; - u64 parent; - struct list_head list; -}; - -struct btrfs_failed_bio { - struct btrfs_bio *bbio; - int num_copies; - atomic_t repair_count; -}; - -struct async_submit_bio { - struct btrfs_bio *bbio; - struct btrfs_io_context *bioc; - struct btrfs_io_stripe smap; - int mirror_num; - struct btrfs_work work; -}; - -struct erofs_dirent { - __le64 nid; - __le16 nameoff; - __u8 file_type; - __u8 reserved; -} __attribute__((packed)); - -struct erofs_qstr { - const unsigned char *name; - const unsigned char *end; -}; - -struct msg_msgseg { - struct msg_msgseg *next; -}; - -struct scomp_scratch { - spinlock_t lock; - void *src; - void *dst; -}; - -struct ccm_instance_ctx { - struct crypto_skcipher_spawn ctr; - struct crypto_ahash_spawn mac; -}; - -struct crypto_ccm_ctx { - struct crypto_ahash *mac; - struct crypto_skcipher *ctr; -}; - -struct crypto_rfc4309_ctx { - struct crypto_aead *child; - u8 nonce[3]; -}; - -struct crypto_rfc4309_req_ctx { - struct scatterlist src[3]; - struct scatterlist dst[3]; - struct aead_request subreq; -}; - -struct crypto_ccm_req_priv_ctx { - u8 odata[16]; - u8 idata[16]; - u8 auth_tag[16]; - u32 flags; - struct scatterlist src[3]; - struct scatterlist dst[3]; - union { - struct ahash_request ahreq; - struct skcipher_request skreq; - }; -}; - -struct cbcmac_tfm_ctx { - struct crypto_cipher *child; -}; - -struct cbcmac_desc_ctx { - unsigned int len; - u8 dg[0]; -}; - -struct jitterentropy { - spinlock_t jent_lock; - struct rand_data *entropy_collector; - struct crypto_shash *tfm; - struct shash_desc *sdesc; -}; - -struct kdf_testvec { - unsigned char *key; - size_t keylen; - unsigned char *ikm; - size_t ikmlen; - struct kvec info; - unsigned char *expected; - size_t expectedlen; -}; - -struct blk_major_name { - struct blk_major_name *next; - int major; - char name[16]; - void (*probe)(dev_t); -}; - -struct bd_holder_disk { - struct list_head list; - struct kobject *holder_dir; - int refcnt; -}; - -struct io_uring_recvmsg_out { - __u32 namelen; - __u32 controllen; - __u32 payloadlen; - __u32 flags; -}; - -struct io_async_msghdr { - struct iovec fast_iov; - struct iovec *free_iov; - int free_iov_nr; - int namelen; - __kernel_size_t controllen; - __kernel_size_t payloadlen; - struct sockaddr *uaddr; - struct msghdr msg; - struct __kernel_sockaddr_storage addr; -}; - -struct io_shutdown { - struct file *file; - int how; -}; - -struct io_accept { - struct file *file; - struct sockaddr *addr; - int *addr_len; - int flags; - int iou_flags; - u32 file_slot; - long unsigned int nofile; -}; - -struct io_socket { - struct file *file; - int domain; - int type; - int protocol; - int flags; - u32 file_slot; - long unsigned int nofile; -}; - -struct io_connect { - struct file *file; - struct sockaddr *addr; - int addr_len; - bool in_progress; - bool seen_econnaborted; -}; - -struct io_bind { - struct file *file; - int addr_len; -}; - -struct io_listen { - struct file *file; - int backlog; -}; - -struct io_sr_msg { - struct file *file; - union { - struct compat_msghdr *umsg_compat; - struct user_msghdr *umsg; - void *buf; - }; - int len; - unsigned int done_io; - unsigned int msg_flags; - unsigned int nr_multishot_loops; - u16 flags; - u16 addr_len; - u16 buf_group; - short unsigned int retry_flags; - void *addr; - void *msg_control; - struct io_kiocb *notif; -}; - -enum sr_retry_flags { - IO_SR_MSG_RETRY = 1, - IO_SR_MSG_PARTIAL_MAP = 2, -}; - -struct io_recvmsg_multishot_hdr { - struct io_uring_recvmsg_out msg; - struct __kernel_sockaddr_storage addr; -}; - -typedef long int mpi_limb_signed_t; - -typedef enum { - trustInput = 0, - checkMaxSymbolValue = 1, -} HIST_checkInput_e; - -typedef struct { - U32 f1c; - U32 f1d; - U32 f7b; - U32 f7c; -} ZSTD_cpuid_t; - -typedef enum { - ZSTD_e_continue = 0, - ZSTD_e_flush = 1, - ZSTD_e_end = 2, -} ZSTD_EndDirective; - -typedef struct { - long long unsigned int ingested; - long long unsigned int consumed; - long long unsigned int produced; - long long unsigned int flushed; - unsigned int currentJobID; - unsigned int nbActiveWorkers; -} ZSTD_frameProgression; - -typedef enum { - ZSTD_cpm_noAttachDict = 0, - ZSTD_cpm_attachDict = 1, - ZSTD_cpm_createCDict = 2, - ZSTD_cpm_unknown = 3, -} ZSTD_cParamMode_e; - -typedef size_t (*ZSTD_blockCompressor)(ZSTD_matchState_t *, seqStore_t *, U32 *, const void *, size_t); - -typedef enum { - ZSTD_defaultDisallowed = 0, - ZSTD_defaultAllowed = 1, -} ZSTD_defaultPolicy_e; - -typedef enum { - ZSTDcrp_makeClean = 0, - ZSTDcrp_leaveDirty = 1, -} ZSTD_compResetPolicy_e; - -typedef enum { - ZSTDirp_continue = 0, - ZSTDirp_reset = 1, -} ZSTD_indexResetPolicy_e; - -typedef enum { - ZSTD_resetTarget_CDict = 0, - ZSTD_resetTarget_CCtx = 1, -} ZSTD_resetTarget_e; - -typedef struct { - U32 LLtype; - U32 Offtype; - U32 MLtype; - size_t size; - size_t lastCountSize; -} ZSTD_symbolEncodingTypeStats_t; - -enum { - ZSTDbss_compress = 0, - ZSTDbss_noCompress = 1, -}; - -typedef struct { - U32 *splitLocations; - size_t idx; -} seqStoreSplits; - -typedef struct { - U32 idx; - U32 posInSequence; - size_t posInSrc; -} ZSTD_sequencePosition; - -typedef size_t (*ZSTD_sequenceCopier)(ZSTD_CCtx *, ZSTD_sequencePosition *, const ZSTD_Sequence * const, size_t, const void *, size_t); - -enum of_gpio_flags { - OF_GPIO_ACTIVE_LOW = 1, - OF_GPIO_SINGLE_ENDED = 2, - OF_GPIO_OPEN_DRAIN = 4, - OF_GPIO_TRANSITORY = 8, - OF_GPIO_PULL_UP = 16, - OF_GPIO_PULL_DOWN = 32, - OF_GPIO_PULL_DISABLE = 64, -}; - -typedef struct gpio_desc * (*of_find_gpio_quirk)(struct device_node *, const char *, unsigned int, enum of_gpio_flags *); - -struct of_rename_gpio { - const char *con_id; - const char *legacy_id; - const char *compatible; -}; - -struct portdrv_service_data { - struct pcie_port_service_driver *drv; - struct device *dev; - u32 service; -}; - -typedef int (*pcie_callback_t)(struct pcie_device *); - -struct clk_gate { - struct clk_hw hw; - void *reg; - u8 bit_idx; - u8 flags; - spinlock_t *lock; -}; - -struct dma_chan_tbl_ent { - struct dma_chan *chan; -}; - -struct dmaengine_unmap_pool { - struct kmem_cache *cache; - const char *name; - mempool_t *pool; - size_t size; -}; - -struct tty_file_private { - struct tty_struct *tty; - struct file *file; - struct list_head list; -}; - -struct irq_info { - struct hlist_node node; - int irq; - spinlock_t lock; - struct list_head *head; -}; - -struct serport___2 { - struct tty_port *port; - struct tty_struct *tty; - struct tty_driver *tty_drv; - int tty_idx; - long unsigned int flags; -}; - -struct drm_mode_fb_cmd { - __u32 fb_id; - __u32 width; - __u32 height; - __u32 pitch; - __u32 bpp; - __u32 depth; - __u32 handle; -}; - -struct drm_mode_fb_dirty_cmd { - __u32 fb_id; - __u32 flags; - __u32 color; - __u32 num_clips; - __u64 clips_ptr; -}; - -struct drm_mode_closefb { - __u32 fb_id; - __u32 pad; -}; - -struct drm_mode_rmfb_work { - struct work_struct work; - struct list_head fbs; -}; - -enum drm_lvds_dual_link_pixels { - DRM_LVDS_DUAL_LINK_EVEN_ODD_PIXELS = 0, - DRM_LVDS_DUAL_LINK_ODD_EVEN_PIXELS = 1, -}; - -enum drm_of_lvds_pixels { - DRM_OF_LVDS_EVEN = 1, - DRM_OF_LVDS_ODD = 2, -}; - -struct pm_clk_notifier_block { - struct notifier_block nb; - struct dev_pm_domain *pm_domain; - char *con_ids[0]; -}; - -struct regmap_mmio_context { - void *regs; - unsigned int val_bytes; - bool big_endian; - bool attached_clk; - struct clk *clk; - void (*reg_write)(struct regmap_mmio_context *, unsigned int, unsigned int); - unsigned int (*reg_read)(struct regmap_mmio_context *, unsigned int); -}; - -struct trace_event_raw_scsi_dispatch_cmd_start { - struct trace_entry ent; - unsigned int host_no; - unsigned int channel; - unsigned int id; - unsigned int lun; - unsigned int opcode; - unsigned int cmd_len; - int driver_tag; - int scheduler_tag; - unsigned int data_sglen; - unsigned int prot_sglen; - unsigned char prot_op; - u32 __data_loc_cmnd; - char __data[0]; -}; - -struct trace_event_raw_scsi_dispatch_cmd_error { - struct trace_entry ent; - unsigned int host_no; - unsigned int channel; - unsigned int id; - unsigned int lun; - int rtn; - unsigned int opcode; - unsigned int cmd_len; - int driver_tag; - int scheduler_tag; - unsigned int data_sglen; - unsigned int prot_sglen; - unsigned char prot_op; - u32 __data_loc_cmnd; - char __data[0]; -}; - -struct trace_event_raw_scsi_cmd_done_timeout_template { - struct trace_entry ent; - unsigned int host_no; - unsigned int channel; - unsigned int id; - unsigned int lun; - int result; - unsigned int opcode; - unsigned int cmd_len; - int driver_tag; - int scheduler_tag; - unsigned int data_sglen; - unsigned int prot_sglen; - unsigned char prot_op; - u32 __data_loc_cmnd; - u8 sense_key; - u8 asc; - u8 ascq; - char __data[0]; -}; - -struct trace_event_raw_scsi_eh_wakeup { - struct trace_entry ent; - unsigned int host_no; - char __data[0]; -}; - -struct trace_event_data_offsets_scsi_dispatch_cmd_start { - u32 cmnd; - const void *cmnd_ptr_; -}; - -struct trace_event_data_offsets_scsi_dispatch_cmd_error { - u32 cmnd; - const void *cmnd_ptr_; -}; - -struct trace_event_data_offsets_scsi_cmd_done_timeout_template { - u32 cmnd; - const void *cmnd_ptr_; -}; - -struct trace_event_data_offsets_scsi_eh_wakeup {}; - -typedef void (*btf_trace_scsi_dispatch_cmd_start)(void *, struct scsi_cmnd *); - -typedef void (*btf_trace_scsi_dispatch_cmd_error)(void *, struct scsi_cmnd *, int); - -typedef void (*btf_trace_scsi_dispatch_cmd_done)(void *, struct scsi_cmnd *); - -typedef void (*btf_trace_scsi_dispatch_cmd_timeout)(void *, struct scsi_cmnd *); - -typedef void (*btf_trace_scsi_eh_wakeup)(void *, struct Scsi_Host *); - -enum scsi_vpd_parameters { - SCSI_VPD_HEADER_SIZE = 4, - SCSI_VPD_LIST_SIZE = 36, -}; - -enum { - IFLA_IPVLAN_UNSPEC = 0, - IFLA_IPVLAN_MODE = 1, - IFLA_IPVLAN_FLAGS = 2, - __IFLA_IPVLAN_MAX = 3, -}; - -struct phy_fixup { - struct list_head list; - char bus_id[64]; - u32 phy_uid; - u32 phy_uid_mask; - int (*run)(struct phy_device *); -}; - -struct sfp_eeprom_base { - u8 phys_id; - u8 phys_ext_id; - u8 connector; - u8 if_1x_copper_passive: 1; - u8 if_1x_copper_active: 1; - u8 if_1x_lx: 1; - u8 if_1x_sx: 1; - u8 e10g_base_sr: 1; - u8 e10g_base_lr: 1; - u8 e10g_base_lrm: 1; - u8 e10g_base_er: 1; - u8 sonet_oc3_short_reach: 1; - u8 sonet_oc3_smf_intermediate_reach: 1; - u8 sonet_oc3_smf_long_reach: 1; - u8 unallocated_5_3: 1; - u8 sonet_oc12_short_reach: 1; - u8 sonet_oc12_smf_intermediate_reach: 1; - u8 sonet_oc12_smf_long_reach: 1; - u8 unallocated_5_7: 1; - u8 sonet_oc48_short_reach: 1; - u8 sonet_oc48_intermediate_reach: 1; - u8 sonet_oc48_long_reach: 1; - u8 sonet_reach_bit2: 1; - u8 sonet_reach_bit1: 1; - u8 sonet_oc192_short_reach: 1; - u8 escon_smf_1310_laser: 1; - u8 escon_mmf_1310_led: 1; - u8 e1000_base_sx: 1; - u8 e1000_base_lx: 1; - u8 e1000_base_cx: 1; - u8 e1000_base_t: 1; - u8 e100_base_lx: 1; - u8 e100_base_fx: 1; - u8 e_base_bx10: 1; - u8 e_base_px: 1; - u8 fc_tech_electrical_inter_enclosure: 1; - u8 fc_tech_lc: 1; - u8 fc_tech_sa: 1; - u8 fc_ll_m: 1; - u8 fc_ll_l: 1; - u8 fc_ll_i: 1; - u8 fc_ll_s: 1; - u8 fc_ll_v: 1; - u8 unallocated_8_0: 1; - u8 unallocated_8_1: 1; - u8 sfp_ct_passive: 1; - u8 sfp_ct_active: 1; - u8 fc_tech_ll: 1; - u8 fc_tech_sl: 1; - u8 fc_tech_sn: 1; - u8 fc_tech_electrical_intra_enclosure: 1; - u8 fc_media_sm: 1; - u8 unallocated_9_1: 1; - u8 fc_media_m5: 1; - u8 fc_media_m6: 1; - u8 fc_media_tv: 1; - u8 fc_media_mi: 1; - u8 fc_media_tp: 1; - u8 fc_media_tw: 1; - u8 fc_speed_100: 1; - u8 unallocated_10_1: 1; - u8 fc_speed_200: 1; - u8 fc_speed_3200: 1; - u8 fc_speed_400: 1; - u8 fc_speed_1600: 1; - u8 fc_speed_800: 1; - u8 fc_speed_1200: 1; - u8 encoding; - u8 br_nominal; - u8 rate_id; - u8 link_len[6]; - char vendor_name[16]; - u8 extended_cc; - char vendor_oui[3]; - char vendor_pn[16]; - char vendor_rev[4]; - union { - __be16 optical_wavelength; - __be16 cable_compliance; - struct { - u8 sff8431_app_e: 1; - u8 fc_pi_4_app_h: 1; - u8 reserved60_2: 6; - u8 reserved61: 8; - } passive; - struct { - u8 sff8431_app_e: 1; - u8 fc_pi_4_app_h: 1; - u8 sff8431_lim: 1; - u8 fc_pi_4_lim: 1; - u8 reserved60_4: 4; - u8 reserved61: 8; - } active; - }; - u8 reserved62; - u8 cc_base; -}; - -struct sfp_eeprom_ext { - __be16 options; - u8 br_max; - u8 br_min; - char vendor_sn[16]; - char datecode[8]; - u8 diagmon; - u8 enhopts; - u8 sff8472_compliance; - u8 cc_ext; -}; - -struct sfp_eeprom_id { - struct sfp_eeprom_base base; - struct sfp_eeprom_ext ext; -}; - -struct sfp_upstream_ops { - void (*attach)(void *, struct sfp_bus *); - void (*detach)(void *, struct sfp_bus *); - int (*module_insert)(void *, const struct sfp_eeprom_id *); - void (*module_remove)(void *); - int (*module_start)(void *); - void (*module_stop)(void *); - void (*link_down)(void *); - void (*link_up)(void *); - int (*connect_phy)(void *, struct phy_device *); - void (*disconnect_phy)(void *, struct phy_device *); -}; - -typedef unsigned char u_char; - -struct sha_pad { - unsigned char sha_pad1[40]; - unsigned char sha_pad2[40]; -}; - -struct ppp_mppe_state { - struct arc4_ctx arc4; - struct shash_desc *sha1; - unsigned char *sha1_digest; - unsigned char master_key[16]; - unsigned char session_key[16]; - unsigned int keylen; - unsigned char bits; - unsigned int ccount; - unsigned int stateful; - int discard; - int sanity_errors; - int unit; - int debug; - struct compstat stats; -}; - -struct uio_map; - -struct uio_mem { - const char *name; - phys_addr_t addr; - dma_addr_t dma_addr; - long unsigned int offs; - resource_size_t size; - int memtype; - void *internal_addr; - struct device *dma_device; - struct uio_map *map; -}; - -struct uio_map { - struct kobject kobj; - struct uio_mem *mem; -}; - -struct uio_portio; - -struct uio_port { - const char *name; - long unsigned int start; - long unsigned int size; - int porttype; - struct uio_portio *portio; -}; - -struct uio_portio { - struct kobject kobj; - struct uio_port *port; -}; - -struct uio_info; - -struct uio_device { - struct module *owner; - struct device dev; - int minor; - atomic_t event; - struct fasync_struct *async_queue; - wait_queue_head_t wait; - struct uio_info *info; - struct mutex info_lock; - struct kobject *map_dir; - struct kobject *portio_dir; -}; - -struct uio_info { - struct uio_device *uio_dev; - const char *name; - const char *version; - struct uio_mem mem[5]; - struct uio_port port[5]; - long int irq; - long unsigned int irq_flags; - void *priv; - irqreturn_t (*handler)(int, struct uio_info *); - int (*mmap)(struct uio_info *, struct vm_area_struct *); - int (*open)(struct uio_info *, struct inode *); - int (*release)(struct uio_info *, struct inode *); - int (*irqcontrol)(struct uio_info *, s32); -}; - -struct map_sysfs_entry { - struct attribute attr; - ssize_t (*show)(struct uio_mem *, char *); - ssize_t (*store)(struct uio_mem *, const char *, size_t); -}; - -struct portio_sysfs_entry { - struct attribute attr; - ssize_t (*show)(struct uio_port *, char *); - ssize_t (*store)(struct uio_port *, const char *, size_t); -}; - -struct uio_listener { - struct uio_device *dev; - s32 event_count; -}; - -struct api_context { - struct completion done; - int status; -}; - -struct set_config_request { - struct usb_device *udev; - int config; - struct work_struct work; - struct list_head node; -}; - -enum usb_phy_interface { - USBPHY_INTERFACE_MODE_UNKNOWN = 0, - USBPHY_INTERFACE_MODE_UTMI = 1, - USBPHY_INTERFACE_MODE_UTMIW = 2, - USBPHY_INTERFACE_MODE_ULPI = 3, - USBPHY_INTERFACE_MODE_SERIAL = 4, - USBPHY_INTERFACE_MODE_HSIC = 5, -}; - -struct xhci_regset { - char name[32]; - struct debugfs_regset32 regset; - size_t nregs; - struct list_head list; -}; - -struct xhci_file_map { - const char *name; - int (*show)(struct seq_file *, void *); -}; - -struct xhci_ep_priv { - char name[32]; - struct dentry *root; - struct xhci_stream_info *stream_info; - struct xhci_ring *show_ring; - unsigned int stream_id; -}; - -struct xhci_slot_priv { - char name[32]; - struct dentry *root; - struct xhci_ep_priv *eps[31]; - struct xhci_virt_device *dev; -}; - -struct usbcons_info { - int magic; - int break_flag; - struct usb_serial_port *port; -}; - -enum { - kl5kusb105a_sio_b115200 = 0, - kl5kusb105a_sio_b57600 = 1, - kl5kusb105a_sio_b38400 = 2, - kl5kusb105a_sio_b19200 = 4, - kl5kusb105a_sio_b14400 = 5, - kl5kusb105a_sio_b9600 = 6, - kl5kusb105a_sio_b4800 = 8, - kl5kusb105a_sio_b2400 = 9, - kl5kusb105a_sio_b1200 = 10, - kl5kusb105a_sio_b600 = 11, -}; - -struct klsi_105_port_settings { - u8 pktlen; - u8 baudrate; - u8 databits; - u8 unknown1; - u8 unknown2; -}; - -struct klsi_105_private { - struct klsi_105_port_settings cfg; - long unsigned int line_state; - spinlock_t lock; -}; - -struct mxuport_port { - u8 mcr_state; - u8 msr_state; - struct mutex mutex; - spinlock_t spinlock; -}; - -enum power_supply_notifier_events { - PSY_EVENT_PROP_CHANGED = 0, -}; - -struct power_supply_config { - struct device_node *of_node; - struct fwnode_handle *fwnode; - void *drv_data; - const struct attribute_group **attr_grp; - char **supplied_to; - size_t num_supplicants; -}; - -struct psy_am_i_supplied_data { - struct power_supply *psy; - unsigned int count; -}; - -struct psy_get_supplier_prop_data { - struct power_supply *psy; - enum power_supply_property psp; - union power_supply_propval *val; -}; - -struct dm_stats_last_position { - sector_t last_sector; - unsigned int last_rw; -}; - -struct dm_stat_percpu { - long long unsigned int sectors[2]; - long long unsigned int ios[2]; - long long unsigned int merges[2]; - long long unsigned int ticks[2]; - long long unsigned int io_ticks[2]; - long long unsigned int io_ticks_total; - long long unsigned int time_in_queue; - long long unsigned int *histogram; -}; - -struct dm_stat_shared { - atomic_t in_flight[2]; - long long unsigned int stamp; - struct dm_stat_percpu tmp; -}; - -struct dm_stat { - struct list_head list_entry; - int id; - unsigned int stat_flags; - size_t n_entries; - sector_t start; - sector_t end; - sector_t step; - unsigned int n_histogram_entries; - long long unsigned int *histogram_boundaries; - const char *program_id; - const char *aux_data; - struct callback_head callback_head; - size_t shared_alloc_size; - size_t percpu_alloc_size; - size_t histogram_alloc_size; - struct dm_stat_percpu *stat_percpu[24]; - struct dm_stat_shared stat_shared[0]; -}; - -typedef int tpl_parse_t(struct mmc_card *, struct sdio_func *, const unsigned char *, unsigned int); - -struct cis_tpl { - unsigned char code; - unsigned char min_size; - tpl_parse_t *parse; -}; - -struct mmc_pwrseq_emmc { - struct mmc_pwrseq pwrseq; - struct notifier_block reset_nb; - struct gpio_desc *reset_gpio; -}; - -struct mhu_db_link { - unsigned int irq; - void *tx_reg; - void *rx_reg; -}; - -struct arm_mhu___2 { - void *base; - struct mhu_db_link mlink[3]; - struct mbox_controller mbox; - struct device *dev; -}; - -struct mhu_db_channel { - struct arm_mhu___2 *mhu; - unsigned int pchan; - unsigned int doorbell; -}; - -struct fib_rule_uid_range { - __u32 start; - __u32 end; -}; - -struct fib_rule_notifier_info { - struct fib_notifier_info info; - struct fib_rule *rule; -}; - -struct tc_htb_opt { - struct tc_ratespec rate; - struct tc_ratespec ceil; - __u32 buffer; - __u32 cbuffer; - __u32 quantum; - __u32 level; - __u32 prio; -}; - -struct tc_htb_glob { - __u32 version; - __u32 rate2quantum; - __u32 defcls; - __u32 debug; - __u32 direct_pkts; -}; - -enum { - TCA_HTB_UNSPEC = 0, - TCA_HTB_PARMS = 1, - TCA_HTB_INIT = 2, - TCA_HTB_CTAB = 3, - TCA_HTB_RTAB = 4, - TCA_HTB_DIRECT_QLEN = 5, - TCA_HTB_RATE64 = 6, - TCA_HTB_CEIL64 = 7, - TCA_HTB_PAD = 8, - TCA_HTB_OFFLOAD = 9, - __TCA_HTB_MAX = 10, -}; - -struct tc_htb_xstats { - __u32 lends; - __u32 borrows; - __u32 giants; - __s32 tokens; - __s32 ctokens; -}; - -enum tc_htb_command { - TC_HTB_CREATE = 0, - TC_HTB_DESTROY = 1, - TC_HTB_LEAF_ALLOC_QUEUE = 2, - TC_HTB_LEAF_TO_INNER = 3, - TC_HTB_LEAF_DEL = 4, - TC_HTB_LEAF_DEL_LAST = 5, - TC_HTB_LEAF_DEL_LAST_FORCE = 6, - TC_HTB_NODE_MODIFY = 7, - TC_HTB_LEAF_QUERY_QUEUE = 8, -}; - -struct tc_htb_qopt_offload { - struct netlink_ext_ack *extack; - enum tc_htb_command command; - u32 parent_classid; - u16 classid; - u16 qid; - u32 quantum; - u64 rate; - u64 ceil; - u8 prio; -}; - -enum htb_cmode { - HTB_CANT_SEND = 0, - HTB_MAY_BORROW = 1, - HTB_CAN_SEND = 2, -}; - -struct htb_prio { - union { - struct rb_root row; - struct rb_root feed; - }; - struct rb_node *ptr; - u32 last_ptr_id; -}; - -struct htb_class_leaf { - int deficit[8]; - struct Qdisc *q; - struct netdev_queue *offload_queue; -}; - -struct htb_class_inner { - struct htb_prio clprio[8]; -}; - -struct htb_class { - struct Qdisc_class_common common; - struct psched_ratecfg rate; - struct psched_ratecfg ceil; - s64 buffer; - s64 cbuffer; - s64 mbuffer; - u32 prio; - int quantum; - struct tcf_proto *filter_list; - struct tcf_block *block; - int level; - unsigned int children; - struct htb_class *parent; - struct net_rate_estimator *rate_est; - struct gnet_stats_basic_sync bstats; - struct gnet_stats_basic_sync bstats_bias; - struct tc_htb_xstats xstats; - s64 tokens; - s64 ctokens; - s64 t_c; - union { - struct htb_class_leaf leaf; - struct htb_class_inner inner; - }; - s64 pq_key; - int prio_activity; - enum htb_cmode cmode; - struct rb_node pq_node; - struct rb_node node[8]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - unsigned int drops; - unsigned int overlimits; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct htb_level { - struct rb_root wait_pq; - struct htb_prio hprio[8]; -}; - -struct htb_sched { - struct Qdisc_class_hash clhash; - int defcls; - int rate2quantum; - struct tcf_proto *filter_list; - struct tcf_block *block; - unsigned int warned; - int direct_qlen; - struct work_struct work; - struct qdisc_skb_head direct_queue; - u32 direct_pkts; - u32 overlimits; - struct qdisc_watchdog watchdog; - s64 now; - s64 near_ev_cache[8]; - int row_mask[8]; - struct htb_level hlevel[8]; - struct Qdisc **direct_qdiscs; - unsigned int num_direct_qdiscs; - bool offload; -}; - -enum { - TCA_CGROUP_UNSPEC = 0, - TCA_CGROUP_ACT = 1, - TCA_CGROUP_POLICE = 2, - TCA_CGROUP_EMATCHES = 3, - __TCA_CGROUP_MAX = 4, -}; - -struct cls_cgroup_head { - u32 handle; - struct tcf_exts exts; - struct tcf_ematch_tree ematches; - struct tcf_proto *tp; - struct rcu_work rwork; -}; - -enum { - ETHTOOL_A_STRING_UNSPEC = 0, - ETHTOOL_A_STRING_INDEX = 1, - ETHTOOL_A_STRING_VALUE = 2, - __ETHTOOL_A_STRING_CNT = 3, - ETHTOOL_A_STRING_MAX = 2, -}; - -enum { - ETHTOOL_A_STRINGS_UNSPEC = 0, - ETHTOOL_A_STRINGS_STRING = 1, - __ETHTOOL_A_STRINGS_CNT = 2, - ETHTOOL_A_STRINGS_MAX = 1, -}; - -enum { - ETHTOOL_A_STRINGSET_UNSPEC = 0, - ETHTOOL_A_STRINGSET_ID = 1, - ETHTOOL_A_STRINGSET_COUNT = 2, - ETHTOOL_A_STRINGSET_STRINGS = 3, - __ETHTOOL_A_STRINGSET_CNT = 4, - ETHTOOL_A_STRINGSET_MAX = 3, -}; - -enum { - ETHTOOL_A_STRINGSETS_UNSPEC = 0, - ETHTOOL_A_STRINGSETS_STRINGSET = 1, - __ETHTOOL_A_STRINGSETS_CNT = 2, - ETHTOOL_A_STRINGSETS_MAX = 1, -}; - -enum { - ETHTOOL_UDP_TUNNEL_TYPE_VXLAN = 0, - ETHTOOL_UDP_TUNNEL_TYPE_GENEVE = 1, - ETHTOOL_UDP_TUNNEL_TYPE_VXLAN_GPE = 2, - __ETHTOOL_UDP_TUNNEL_TYPE_CNT = 3, -}; - -struct strset_info { - bool per_dev; - bool free_strings; - unsigned int count; - const char (*strings)[32]; -}; - -struct strset_req_info { - struct ethnl_req_info base; - u32 req_ids; - bool counts_only; -}; - -struct strset_reply_data { - struct ethnl_reply_data base; - struct strset_info sets[21]; -}; - -struct phc_vclocks_reply_data { - struct ethnl_reply_data base; - int num; - int *index; -}; - -struct nf_log_buf { - unsigned int count; - char buf[1020]; -}; - -struct conntrack_gc_work { - struct delayed_work dwork; - u32 next_bucket; - u32 avg_timeout; - u32 count; - u32 start_time; - bool exiting; - bool early_drop; -}; - -struct nft_counter { - u64_stats_t bytes; - u64_stats_t packets; -}; - -struct nft_counter_tot { - s64 bytes; - s64 packets; -}; - -struct nft_counter_percpu_priv { - struct nft_counter *counter; -}; - -enum nft_tunnel_key_ip_attributes { - NFTA_TUNNEL_KEY_IP_UNSPEC = 0, - NFTA_TUNNEL_KEY_IP_SRC = 1, - NFTA_TUNNEL_KEY_IP_DST = 2, - __NFTA_TUNNEL_KEY_IP_MAX = 3, -}; - -enum nft_tunnel_ip6_attributes { - NFTA_TUNNEL_KEY_IP6_UNSPEC = 0, - NFTA_TUNNEL_KEY_IP6_SRC = 1, - NFTA_TUNNEL_KEY_IP6_DST = 2, - NFTA_TUNNEL_KEY_IP6_FLOWLABEL = 3, - __NFTA_TUNNEL_KEY_IP6_MAX = 4, -}; - -enum nft_tunnel_opts_attributes { - NFTA_TUNNEL_KEY_OPTS_UNSPEC = 0, - NFTA_TUNNEL_KEY_OPTS_VXLAN = 1, - NFTA_TUNNEL_KEY_OPTS_ERSPAN = 2, - NFTA_TUNNEL_KEY_OPTS_GENEVE = 3, - __NFTA_TUNNEL_KEY_OPTS_MAX = 4, -}; - -enum nft_tunnel_opts_vxlan_attributes { - NFTA_TUNNEL_KEY_VXLAN_UNSPEC = 0, - NFTA_TUNNEL_KEY_VXLAN_GBP = 1, - __NFTA_TUNNEL_KEY_VXLAN_MAX = 2, -}; - -enum nft_tunnel_opts_erspan_attributes { - NFTA_TUNNEL_KEY_ERSPAN_UNSPEC = 0, - NFTA_TUNNEL_KEY_ERSPAN_VERSION = 1, - NFTA_TUNNEL_KEY_ERSPAN_V1_INDEX = 2, - NFTA_TUNNEL_KEY_ERSPAN_V2_HWID = 3, - NFTA_TUNNEL_KEY_ERSPAN_V2_DIR = 4, - __NFTA_TUNNEL_KEY_ERSPAN_MAX = 5, -}; - -enum nft_tunnel_opts_geneve_attributes { - NFTA_TUNNEL_KEY_GENEVE_UNSPEC = 0, - NFTA_TUNNEL_KEY_GENEVE_CLASS = 1, - NFTA_TUNNEL_KEY_GENEVE_TYPE = 2, - NFTA_TUNNEL_KEY_GENEVE_DATA = 3, - __NFTA_TUNNEL_KEY_GENEVE_MAX = 4, -}; - -enum nft_tunnel_flags { - NFT_TUNNEL_F_ZERO_CSUM_TX = 1, - NFT_TUNNEL_F_DONT_FRAGMENT = 2, - NFT_TUNNEL_F_SEQ_NUMBER = 4, -}; - -enum nft_tunnel_key_attributes { - NFTA_TUNNEL_KEY_UNSPEC = 0, - NFTA_TUNNEL_KEY_ID = 1, - NFTA_TUNNEL_KEY_IP = 2, - NFTA_TUNNEL_KEY_IP6 = 3, - NFTA_TUNNEL_KEY_FLAGS = 4, - NFTA_TUNNEL_KEY_TOS = 5, - NFTA_TUNNEL_KEY_TTL = 6, - NFTA_TUNNEL_KEY_SPORT = 7, - NFTA_TUNNEL_KEY_DPORT = 8, - NFTA_TUNNEL_KEY_OPTS = 9, - __NFTA_TUNNEL_KEY_MAX = 10, -}; - -enum nft_tunnel_keys { - NFT_TUNNEL_PATH = 0, - NFT_TUNNEL_ID = 1, - __NFT_TUNNEL_MAX = 2, -}; - -enum nft_tunnel_mode { - NFT_TUNNEL_MODE_NONE = 0, - NFT_TUNNEL_MODE_RX = 1, - NFT_TUNNEL_MODE_TX = 2, - __NFT_TUNNEL_MODE_MAX = 3, -}; - -enum nft_tunnel_attributes { - NFTA_TUNNEL_UNSPEC = 0, - NFTA_TUNNEL_KEY = 1, - NFTA_TUNNEL_DREG = 2, - NFTA_TUNNEL_MODE = 3, - __NFTA_TUNNEL_MAX = 4, -}; - -struct vxlan_metadata { - u32 gbp; -}; - -struct geneve_opt { - __be16 opt_class; - u8 type; - u8 length: 5; - u8 r3: 1; - u8 r2: 1; - u8 r1: 1; - u8 opt_data[0]; -}; - -struct nft_tunnel { - enum nft_tunnel_keys key: 8; - u8 dreg; - enum nft_tunnel_mode mode: 8; - u8 len; -}; - -struct nft_tunnel_opts { - union { - struct vxlan_metadata vxlan; - struct erspan_metadata erspan; - u8 data[255]; - } u; - long unsigned int flags[1]; - u32 len; -}; - -struct nft_tunnel_obj { - struct metadata_dst *md; - struct nft_tunnel_opts opts; -}; - -struct xt_CHECKSUM_info { - __u8 operation; -}; - -struct idletimer_tg; - -struct idletimer_tg_info { - __u32 timeout; - char label[28]; - struct idletimer_tg *timer; -}; - -struct idletimer_tg { - struct list_head entry; - struct alarm alarm; - struct timer_list timer; - struct work_struct work; - struct kobject *kobj; - struct device_attribute attr; - unsigned int refcnt; - u8 timer_type; -}; - -struct idletimer_tg_info_v1 { - __u32 timeout; - char label[28]; - __u8 send_nl_msg; - __u8 timer_type; - struct idletimer_tg *timer; -}; - -struct xt_limit_priv; - -struct xt_rateinfo { - __u32 avg; - __u32 burst; - long unsigned int prev; - __u32 credit; - __u32 credit_cap; - __u32 cost; - struct xt_limit_priv *master; -}; - -struct xt_limit_priv { - long unsigned int prev; - u32 credit; -}; - -enum xt_u32_ops { - XT_U32_AND = 0, - XT_U32_LEFTSH = 1, - XT_U32_RIGHTSH = 2, - XT_U32_AT = 3, -}; - -struct xt_u32_location_element { - __u32 number; - __u8 nextop; -}; - -struct xt_u32_value_element { - __u32 min; - __u32 max; -}; - -struct xt_u32_test { - struct xt_u32_location_element location[11]; - struct xt_u32_value_element value[11]; - __u8 nnums; - __u8 nvalues; -}; - -struct xt_u32 { - struct xt_u32_test tests[11]; - __u8 ntests; - __u8 invert; -}; - -struct ip_vs_sync_mesg; - -struct ip_vs_sync_buff { - struct list_head list; - long unsigned int firstuse; - struct ip_vs_sync_mesg *mesg; - unsigned char *head; - unsigned char *end; -}; - -struct ip_vs_sync_thread_data { - struct task_struct *task; - struct netns_ipvs *ipvs; - struct socket *sock; - char *buf; - int id; -}; - -struct ip_vs_sync_conn_v0 { - __u8 reserved; - __u8 protocol; - __be16 cport; - __be16 vport; - __be16 dport; - __be32 caddr; - __be32 vaddr; - __be32 daddr; - __be16 flags; - __be16 state; -}; - -struct ip_vs_sync_conn_options { - struct ip_vs_seq in_seq; - struct ip_vs_seq out_seq; -}; - -struct ip_vs_sync_v4 { - __u8 type; - __u8 protocol; - __be16 ver_size; - __be32 flags; - __be16 state; - __be16 cport; - __be16 vport; - __be16 dport; - __be32 fwmark; - __be32 timeout; - __be32 caddr; - __be32 vaddr; - __be32 daddr; -}; - -struct ip_vs_sync_v6 { - __u8 type; - __u8 protocol; - __be16 ver_size; - __be32 flags; - __be16 state; - __be16 cport; - __be16 vport; - __be16 dport; - __be32 fwmark; - __be32 timeout; - struct in6_addr caddr; - struct in6_addr vaddr; - struct in6_addr daddr; -}; - -union ip_vs_sync_conn { - struct ip_vs_sync_v4 v4; - struct ip_vs_sync_v6 v6; -}; - -struct ip_vs_sync_mesg_v0 { - __u8 nr_conns; - __u8 syncid; - __be16 size; -}; - -struct ip_vs_sync_mesg { - __u8 reserved; - __u8 syncid; - __be16 size; - __u8 nr_conns; - __s8 version; - __u16 spare; -}; - -union ipvs_sockaddr { - struct sockaddr_in in; - struct sockaddr_in6 in6; -}; - -enum lwtunnel_ip_t { - LWTUNNEL_IP_UNSPEC = 0, - LWTUNNEL_IP_ID = 1, - LWTUNNEL_IP_DST = 2, - LWTUNNEL_IP_SRC = 3, - LWTUNNEL_IP_TTL = 4, - LWTUNNEL_IP_TOS = 5, - LWTUNNEL_IP_FLAGS = 6, - LWTUNNEL_IP_PAD = 7, - LWTUNNEL_IP_OPTS = 8, - __LWTUNNEL_IP_MAX = 9, -}; - -enum lwtunnel_ip6_t { - LWTUNNEL_IP6_UNSPEC = 0, - LWTUNNEL_IP6_ID = 1, - LWTUNNEL_IP6_DST = 2, - LWTUNNEL_IP6_SRC = 3, - LWTUNNEL_IP6_HOPLIMIT = 4, - LWTUNNEL_IP6_TC = 5, - LWTUNNEL_IP6_FLAGS = 6, - LWTUNNEL_IP6_PAD = 7, - LWTUNNEL_IP6_OPTS = 8, - __LWTUNNEL_IP6_MAX = 9, -}; - -enum { - LWTUNNEL_IP_OPTS_UNSPEC = 0, - LWTUNNEL_IP_OPTS_GENEVE = 1, - LWTUNNEL_IP_OPTS_VXLAN = 2, - LWTUNNEL_IP_OPTS_ERSPAN = 3, - __LWTUNNEL_IP_OPTS_MAX = 4, -}; - -enum { - LWTUNNEL_IP_OPT_GENEVE_UNSPEC = 0, - LWTUNNEL_IP_OPT_GENEVE_CLASS = 1, - LWTUNNEL_IP_OPT_GENEVE_TYPE = 2, - LWTUNNEL_IP_OPT_GENEVE_DATA = 3, - __LWTUNNEL_IP_OPT_GENEVE_MAX = 4, -}; - -enum { - LWTUNNEL_IP_OPT_VXLAN_UNSPEC = 0, - LWTUNNEL_IP_OPT_VXLAN_GBP = 1, - __LWTUNNEL_IP_OPT_VXLAN_MAX = 2, -}; - -enum { - LWTUNNEL_IP_OPT_ERSPAN_UNSPEC = 0, - LWTUNNEL_IP_OPT_ERSPAN_VER = 1, - LWTUNNEL_IP_OPT_ERSPAN_INDEX = 2, - LWTUNNEL_IP_OPT_ERSPAN_DIR = 3, - LWTUNNEL_IP_OPT_ERSPAN_HWID = 4, - __LWTUNNEL_IP_OPT_ERSPAN_MAX = 5, -}; - -struct gre_protocol { - int (*handler)(struct sk_buff *); - void (*err_handler)(struct sk_buff *, u32); -}; - -struct ipt_getinfo { - char name[32]; - unsigned int valid_hooks; - unsigned int hook_entry[5]; - unsigned int underflow[5]; - unsigned int num_entries; - unsigned int size; -}; - -struct ipt_get_entries { - char name[32]; - unsigned int size; - struct ipt_entry entrytable[0]; -}; - -struct ipt_error { - struct ipt_entry entry; - struct xt_error_target target; -}; - -enum nf_ip_trace_comments___2 { - NF_IP_TRACE_COMMENT_RULE = 0, - NF_IP_TRACE_COMMENT_RETURN = 1, - NF_IP_TRACE_COMMENT_POLICY = 2, -}; - -enum ipt_reject_with { - IPT_ICMP_NET_UNREACHABLE = 0, - IPT_ICMP_HOST_UNREACHABLE = 1, - IPT_ICMP_PROT_UNREACHABLE = 2, - IPT_ICMP_PORT_UNREACHABLE = 3, - IPT_ICMP_ECHOREPLY = 4, - IPT_ICMP_NET_PROHIBITED = 5, - IPT_ICMP_HOST_PROHIBITED = 6, - IPT_TCP_RESET = 7, - IPT_ICMP_ADMIN_PROHIBITED = 8, -}; - -struct ipt_reject_info { - enum ipt_reject_with with; -}; - -struct inet_diag_req { - __u8 idiag_family; - __u8 idiag_src_len; - __u8 idiag_dst_len; - __u8 idiag_ext; - struct inet_diag_sockid id; - __u32 idiag_states; - __u32 idiag_dbs; -}; - -struct inet_diag_bc_op { - unsigned char code; - unsigned char yes; - short unsigned int no; -}; - -enum { - INET_DIAG_BC_NOP = 0, - INET_DIAG_BC_JMP = 1, - INET_DIAG_BC_S_GE = 2, - INET_DIAG_BC_S_LE = 3, - INET_DIAG_BC_D_GE = 4, - INET_DIAG_BC_D_LE = 5, - INET_DIAG_BC_AUTO = 6, - INET_DIAG_BC_S_COND = 7, - INET_DIAG_BC_D_COND = 8, - INET_DIAG_BC_DEV_COND = 9, - INET_DIAG_BC_MARK_COND = 10, - INET_DIAG_BC_S_EQ = 11, - INET_DIAG_BC_D_EQ = 12, - INET_DIAG_BC_CGROUP_COND = 13, -}; - -struct inet_diag_hostcond { - __u8 family; - __u8 prefix_len; - int port; - __be32 addr[0]; -}; - -struct inet_diag_markcond { - __u32 mark; - __u32 mask; -}; - -enum { - INET_DIAG_NONE = 0, - INET_DIAG_MEMINFO = 1, - INET_DIAG_INFO = 2, - INET_DIAG_VEGASINFO = 3, - INET_DIAG_CONG = 4, - INET_DIAG_TOS = 5, - INET_DIAG_TCLASS = 6, - INET_DIAG_SKMEMINFO = 7, - INET_DIAG_SHUTDOWN = 8, - INET_DIAG_DCTCPINFO = 9, - INET_DIAG_PROTOCOL = 10, - INET_DIAG_SKV6ONLY = 11, - INET_DIAG_LOCALS = 12, - INET_DIAG_PEERS = 13, - INET_DIAG_PAD = 14, - INET_DIAG_MARK = 15, - INET_DIAG_BBRINFO = 16, - INET_DIAG_CLASS_ID = 17, - INET_DIAG_MD5SIG = 18, - INET_DIAG_ULP_INFO = 19, - INET_DIAG_SK_BPF_STORAGES = 20, - INET_DIAG_CGROUP_ID = 21, - INET_DIAG_SOCKOPT = 22, - __INET_DIAG_MAX = 23, -}; - -struct inet_diag_meminfo { - __u32 idiag_rmem; - __u32 idiag_wmem; - __u32 idiag_fmem; - __u32 idiag_tmem; -}; - -struct inet_diag_sockopt { - __u8 recverr: 1; - __u8 is_icsk: 1; - __u8 freebind: 1; - __u8 hdrincl: 1; - __u8 mc_loop: 1; - __u8 transparent: 1; - __u8 mc_all: 1; - __u8 nodefrag: 1; - __u8 bind_address_no_port: 1; - __u8 recverr_rfc4884: 1; - __u8 defer_connect: 1; - __u8 unused: 5; -}; - -struct inet_diag_entry { - const __be32 *saddr; - const __be32 *daddr; - u16 sport; - u16 dport; - u16 family; - u16 userlocks; - u32 ifindex; - u32 mark; - u64 cgroup_id; -}; - -typedef void ip6_icmp_send_t(struct sk_buff *, u8, u8, __u32, const struct in6_addr *, const struct inet6_skb_parm *); - -struct icmpv6_msg { - struct sk_buff *skb; - int offset; - uint8_t type; -}; - -struct icmp6_err { - int err; - int fatal; -}; - -struct ip6_fraglist_iter { - struct ipv6hdr *tmp_hdr; - struct sk_buff *frag; - int offset; - unsigned int hlen; - __be32 frag_id; - u8 nexthdr; -}; - -struct ip6_frag_state { - u8 *prevhdr; - unsigned int hlen; - unsigned int mtu; - unsigned int left; - int offset; - int ptr; - int hroom; - int troom; - __be32 frag_id; - u8 nexthdr; -}; - -struct nf_bridge_frag_data; - -enum { - ILA_ATYPE_IID = 0, - ILA_ATYPE_LUID = 1, - ILA_ATYPE_VIRT_V4 = 2, - ILA_ATYPE_VIRT_UNI_V6 = 3, - ILA_ATYPE_VIRT_MULTI_V6 = 4, - ILA_ATYPE_NONLOCAL_ADDR = 5, - ILA_ATYPE_RSVD_1 = 6, - ILA_ATYPE_RSVD_2 = 7, - ILA_ATYPE_USE_FORMAT = 32, -}; - -struct ila_net { - struct { - struct rhashtable rhash_table; - spinlock_t *locks; - unsigned int locks_mask; - bool hooks_registered; - } xlat; -}; - -struct ila_xlat_params { - struct ila_params ip; - int ifindex; -}; - -struct ila_map { - struct ila_xlat_params xp; - struct rhash_head node; - struct ila_map *next; - struct callback_head rcu; -}; - -struct ila_dump_iter { - struct rhashtable_iter rhiter; - int skip; -}; - -struct ip6t_ah { - __u32 spis[2]; - __u32 hdrlen; - __u8 hdrres; - __u8 invflags; -}; - -struct ebt_mac_wormhash_tuple { - __u32 cmp[2]; - __be32 ip; -}; - -struct ebt_mac_wormhash { - int table[257]; - int poolsize; - struct ebt_mac_wormhash_tuple pool[0]; -}; - -struct ebt_among_info { - int wh_dst_ofs; - int wh_src_ofs; - int bitmask; -}; - -struct ebt_nat_info { - unsigned char mac[6]; - int target; -}; - -enum vlan_ioctl_cmds { - ADD_VLAN_CMD = 0, - DEL_VLAN_CMD = 1, - SET_VLAN_INGRESS_PRIORITY_CMD = 2, - SET_VLAN_EGRESS_PRIORITY_CMD = 3, - GET_VLAN_INGRESS_PRIORITY_CMD = 4, - GET_VLAN_EGRESS_PRIORITY_CMD = 5, - SET_VLAN_NAME_TYPE_CMD = 6, - SET_VLAN_FLAG_CMD = 7, - GET_VLAN_REALDEV_NAME_CMD = 8, - GET_VLAN_VID_CMD = 9, -}; - -struct vlan_ioctl_args { - int cmd; - char device1[24]; - union { - char device2[24]; - int VID; - unsigned int skb_priority; - unsigned int name_type; - unsigned int bind_type; - unsigned int flag; - } u; - short int vlan_qos; -}; - -enum dns_payload_content_type { - DNS_PAYLOAD_IS_SERVER_LIST = 0, -}; - -enum dns_lookup_status { - DNS_LOOKUP_NOT_DONE = 0, - DNS_LOOKUP_GOOD = 1, - DNS_LOOKUP_GOOD_WITH_BAD = 2, - DNS_LOOKUP_BAD = 3, - DNS_LOOKUP_GOT_NOT_FOUND = 4, - DNS_LOOKUP_GOT_LOCAL_FAILURE = 5, - DNS_LOOKUP_GOT_TEMP_FAILURE = 6, - DNS_LOOKUP_GOT_NS_FAILURE = 7, - NR__dns_lookup_status = 8, -}; - -struct dns_payload_header { - __u8 zero; - __u8 content; - __u8 version; -}; - -struct dns_server_list_v1_header { - struct dns_payload_header hdr; - __u8 source; - __u8 status; - __u8 nr_servers; -}; - -enum ovs_tunnel_key_attr { - OVS_TUNNEL_KEY_ATTR_ID = 0, - OVS_TUNNEL_KEY_ATTR_IPV4_SRC = 1, - OVS_TUNNEL_KEY_ATTR_IPV4_DST = 2, - OVS_TUNNEL_KEY_ATTR_TOS = 3, - OVS_TUNNEL_KEY_ATTR_TTL = 4, - OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT = 5, - OVS_TUNNEL_KEY_ATTR_CSUM = 6, - OVS_TUNNEL_KEY_ATTR_OAM = 7, - OVS_TUNNEL_KEY_ATTR_GENEVE_OPTS = 8, - OVS_TUNNEL_KEY_ATTR_TP_SRC = 9, - OVS_TUNNEL_KEY_ATTR_TP_DST = 10, - OVS_TUNNEL_KEY_ATTR_VXLAN_OPTS = 11, - OVS_TUNNEL_KEY_ATTR_IPV6_SRC = 12, - OVS_TUNNEL_KEY_ATTR_IPV6_DST = 13, - OVS_TUNNEL_KEY_ATTR_PAD = 14, - OVS_TUNNEL_KEY_ATTR_ERSPAN_OPTS = 15, - OVS_TUNNEL_KEY_ATTR_IPV4_INFO_BRIDGE = 16, - __OVS_TUNNEL_KEY_ATTR_MAX = 17, -}; - -struct ovs_key_ethernet { - __u8 eth_src[6]; - __u8 eth_dst[6]; -}; - -struct ovs_key_mpls { - __be32 mpls_lse; -}; - -struct ovs_key_ipv4 { - __be32 ipv4_src; - __be32 ipv4_dst; - __u8 ipv4_proto; - __u8 ipv4_tos; - __u8 ipv4_ttl; - __u8 ipv4_frag; -}; - -struct ovs_key_ipv6 { - __be32 ipv6_src[4]; - __be32 ipv6_dst[4]; - __be32 ipv6_label; - __u8 ipv6_proto; - __u8 ipv6_tclass; - __u8 ipv6_hlimit; - __u8 ipv6_frag; -}; - -struct ovs_key_ipv6_exthdrs { - __u16 hdrs; -}; - -struct ovs_key_tcp { - __be16 tcp_src; - __be16 tcp_dst; -}; - -struct ovs_key_udp { - __be16 udp_src; - __be16 udp_dst; -}; - -struct ovs_key_sctp { - __be16 sctp_src; - __be16 sctp_dst; -}; - -struct ovs_key_icmp { - __u8 icmp_type; - __u8 icmp_code; -}; - -struct ovs_key_icmpv6 { - __u8 icmpv6_type; - __u8 icmpv6_code; -}; - -struct ovs_key_arp { - __be32 arp_sip; - __be32 arp_tip; - __be16 arp_op; - __u8 arp_sha[6]; - __u8 arp_tha[6]; -}; - -struct ovs_key_nd { - __be32 nd_target[4]; - __u8 nd_sll[6]; - __u8 nd_tll[6]; -}; - -enum ovs_nsh_key_attr { - OVS_NSH_KEY_ATTR_UNSPEC = 0, - OVS_NSH_KEY_ATTR_BASE = 1, - OVS_NSH_KEY_ATTR_MD1 = 2, - OVS_NSH_KEY_ATTR_MD2 = 3, - __OVS_NSH_KEY_ATTR_MAX = 4, -}; - -struct ovs_nsh_key_md1 { - __be32 context[4]; -}; - -enum ovs_sample_attr { - OVS_SAMPLE_ATTR_UNSPEC = 0, - OVS_SAMPLE_ATTR_PROBABILITY = 1, - OVS_SAMPLE_ATTR_ACTIONS = 2, - __OVS_SAMPLE_ATTR_MAX = 3, - OVS_SAMPLE_ATTR_ARG = 4, -}; - -struct sample_arg { - bool exec; - u32 probability; -}; - -enum ovs_userspace_attr { - OVS_USERSPACE_ATTR_UNSPEC = 0, - OVS_USERSPACE_ATTR_PID = 1, - OVS_USERSPACE_ATTR_USERDATA = 2, - OVS_USERSPACE_ATTR_EGRESS_TUN_PORT = 3, - OVS_USERSPACE_ATTR_ACTIONS = 4, - __OVS_USERSPACE_ATTR_MAX = 5, -}; - -struct ovs_action_trunc { - __u32 max_len; -}; - -struct ovs_action_push_mpls { - __be32 mpls_lse; - __be16 mpls_ethertype; -}; - -struct ovs_action_add_mpls { - __be32 mpls_lse; - __be16 mpls_ethertype; - __u16 tun_flags; -}; - -struct ovs_action_push_vlan { - __be16 vlan_tpid; - __be16 vlan_tci; -}; - -enum ovs_hash_alg { - OVS_HASH_ALG_L4 = 0, - OVS_HASH_ALG_SYM_L4 = 1, -}; - -struct ovs_action_hash { - __u32 hash_alg; - __u32 hash_basis; -}; - -enum ovs_check_pkt_len_attr { - OVS_CHECK_PKT_LEN_ATTR_UNSPEC = 0, - OVS_CHECK_PKT_LEN_ATTR_PKT_LEN = 1, - OVS_CHECK_PKT_LEN_ATTR_ACTIONS_IF_GREATER = 2, - OVS_CHECK_PKT_LEN_ATTR_ACTIONS_IF_LESS_EQUAL = 3, - __OVS_CHECK_PKT_LEN_ATTR_MAX = 4, - OVS_CHECK_PKT_LEN_ATTR_ARG = 5, -}; - -struct check_pkt_len_arg { - u16 pkt_len; - bool exec_for_greater; - bool exec_for_lesser_equal; -}; - -enum ovs_psample_attr { - OVS_PSAMPLE_ATTR_GROUP = 1, - OVS_PSAMPLE_ATTR_COOKIE = 2, - __OVS_PSAMPLE_ATTR_MAX = 3, -}; - -enum ovs_dec_ttl_attr { - OVS_DEC_TTL_ATTR_UNSPEC = 0, - OVS_DEC_TTL_ATTR_ACTION = 1, - __OVS_DEC_TTL_ATTR_MAX = 2, -}; - -struct ovs_tunnel_info { - struct metadata_dst *tun_dst; -}; - -struct ovs_len_tbl { - int len; - const struct ovs_len_tbl *next; -}; - -typedef void switchdev_deferred_func_t(struct net_device *, const void *); - -struct switchdev_deferred_item { - struct list_head list; - struct net_device *dev; - netdevice_tracker dev_tracker; - switchdev_deferred_func_t *func; - long unsigned int data[0]; -}; - -struct switchdev_nested_priv { - bool (*check_cb)(const struct net_device *); - bool (*foreign_dev_check_cb)(const struct net_device *, const struct net_device *); - const struct net_device *dev; - struct net_device *lower_dev; -}; - -struct die_args { - struct pt_regs *regs; - const char *str; - long int err; - int trapnr; - int signr; -}; - -struct trace_event_raw_notifier_info { - struct trace_entry ent; - void *cb; - char __data[0]; -}; - -struct trace_event_data_offsets_notifier_info {}; - -typedef void (*btf_trace_notifier_register)(void *, void *); - -typedef void (*btf_trace_notifier_unregister)(void *, void *); - -typedef void (*btf_trace_notifier_run)(void *, void *); - -enum proc_cn_event { - PROC_EVENT_NONE = 0, - PROC_EVENT_FORK = 1, - PROC_EVENT_EXEC = 2, - PROC_EVENT_UID = 4, - PROC_EVENT_GID = 64, - PROC_EVENT_SID = 128, - PROC_EVENT_PTRACE = 256, - PROC_EVENT_COMM = 512, - PROC_EVENT_NONZERO_EXIT = 536870912, - PROC_EVENT_COREDUMP = 1073741824, - PROC_EVENT_EXIT = 2147483648, -}; - -struct irqchip_fwid { - struct fwnode_handle fwnode; - unsigned int type; - char *name; - phys_addr_t *pa; -}; - -typedef struct { - spinlock_t *lock; - long unsigned int flags; -} class_spinlock_irqsave_t; - -struct __kernel_old_itimerval { - struct __kernel_old_timeval it_interval; - struct __kernel_old_timeval it_value; -}; - -struct trace_event_raw_cgroup_root { - struct trace_entry ent; - int root; - u16 ss_mask; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_cgroup { - struct trace_entry ent; - int root; - int level; - u64 id; - u32 __data_loc_path; - char __data[0]; -}; - -struct trace_event_raw_cgroup_migrate { - struct trace_entry ent; - int dst_root; - int dst_level; - u64 dst_id; - int pid; - u32 __data_loc_dst_path; - u32 __data_loc_comm; - char __data[0]; -}; - -struct trace_event_raw_cgroup_event { - struct trace_entry ent; - int root; - int level; - u64 id; - u32 __data_loc_path; - int val; - char __data[0]; -}; - -struct trace_event_raw_cgroup_rstat { - struct trace_entry ent; - int root; - int level; - u64 id; - int cpu; - bool contended; - char __data[0]; -}; - -struct trace_event_data_offsets_cgroup_root { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_cgroup { - u32 path; - const void *path_ptr_; -}; - -struct trace_event_data_offsets_cgroup_migrate { - u32 dst_path; - const void *dst_path_ptr_; - u32 comm; - const void *comm_ptr_; -}; - -struct trace_event_data_offsets_cgroup_event { - u32 path; - const void *path_ptr_; -}; - -struct trace_event_data_offsets_cgroup_rstat {}; - -typedef void (*btf_trace_cgroup_setup_root)(void *, struct cgroup_root *); - -typedef void (*btf_trace_cgroup_destroy_root)(void *, struct cgroup_root *); - -typedef void (*btf_trace_cgroup_remount)(void *, struct cgroup_root *); - -typedef void (*btf_trace_cgroup_mkdir)(void *, struct cgroup *, const char *); - -typedef void (*btf_trace_cgroup_rmdir)(void *, struct cgroup *, const char *); - -typedef void (*btf_trace_cgroup_release)(void *, struct cgroup *, const char *); - -typedef void (*btf_trace_cgroup_rename)(void *, struct cgroup *, const char *); - -typedef void (*btf_trace_cgroup_freeze)(void *, struct cgroup *, const char *); - -typedef void (*btf_trace_cgroup_unfreeze)(void *, struct cgroup *, const char *); - -typedef void (*btf_trace_cgroup_attach_task)(void *, struct cgroup *, const char *, struct task_struct *, bool); - -typedef void (*btf_trace_cgroup_transfer_tasks)(void *, struct cgroup *, const char *, struct task_struct *, bool); - -typedef void (*btf_trace_cgroup_notify_populated)(void *, struct cgroup *, const char *, int); - -typedef void (*btf_trace_cgroup_notify_frozen)(void *, struct cgroup *, const char *, int); - -typedef void (*btf_trace_cgroup_rstat_lock_contended)(void *, struct cgroup *, int, bool); - -typedef void (*btf_trace_cgroup_rstat_locked)(void *, struct cgroup *, int, bool); - -typedef void (*btf_trace_cgroup_rstat_unlock)(void *, struct cgroup *, int, bool); - -typedef void (*btf_trace_cgroup_rstat_cpu_lock_contended)(void *, struct cgroup *, int, bool); - -typedef void (*btf_trace_cgroup_rstat_cpu_lock_contended_fastpath)(void *, struct cgroup *, int, bool); - -typedef void (*btf_trace_cgroup_rstat_cpu_locked)(void *, struct cgroup *, int, bool); - -typedef void (*btf_trace_cgroup_rstat_cpu_locked_fastpath)(void *, struct cgroup *, int, bool); - -typedef void (*btf_trace_cgroup_rstat_cpu_unlock)(void *, struct cgroup *, int, bool); - -typedef void (*btf_trace_cgroup_rstat_cpu_unlock_fastpath)(void *, struct cgroup *, int, bool); - -enum cgroup_opt_features { - OPT_FEATURE_PRESSURE = 0, - OPT_FEATURE_COUNT = 1, -}; - -enum cgroup2_param { - Opt_nsdelegate = 0, - Opt_favordynmods___2 = 1, - Opt_memory_localevents = 2, - Opt_memory_recursiveprot = 3, - Opt_memory_hugetlb_accounting = 4, - Opt_pids_localevents = 5, - nr__cgroup2_params = 6, -}; - -enum cpuset_param { - Opt_cpuset_v2_mode___2 = 0, -}; - -struct trace_event_raw_cpu { - struct trace_entry ent; - u32 state; - u32 cpu_id; - char __data[0]; -}; - -struct trace_event_raw_cpu_idle_miss { - struct trace_entry ent; - u32 cpu_id; - u32 state; - bool below; - char __data[0]; -}; - -struct trace_event_raw_powernv_throttle { - struct trace_entry ent; - int chip_id; - u32 __data_loc_reason; - int pmax; - char __data[0]; -}; - -struct trace_event_raw_pstate_sample { - struct trace_entry ent; - u32 core_busy; - u32 scaled_busy; - u32 from; - u32 to; - u64 mperf; - u64 aperf; - u64 tsc; - u32 freq; - u32 io_boost; - char __data[0]; -}; - -struct trace_event_raw_cpu_frequency_limits { - struct trace_entry ent; - u32 min_freq; - u32 max_freq; - u32 cpu_id; - char __data[0]; -}; - -struct trace_event_raw_device_pm_callback_start { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_driver; - u32 __data_loc_parent; - u32 __data_loc_pm_ops; - int event; - char __data[0]; -}; - -struct trace_event_raw_device_pm_callback_end { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_driver; - int error; - char __data[0]; -}; - -struct trace_event_raw_suspend_resume { - struct trace_entry ent; - const char *action; - int val; - bool start; - char __data[0]; -}; - -struct trace_event_raw_wakeup_source { - struct trace_entry ent; - u32 __data_loc_name; - u64 state; - char __data[0]; -}; - -struct trace_event_raw_clock { - struct trace_entry ent; - u32 __data_loc_name; - u64 state; - u64 cpu_id; - char __data[0]; -}; - -struct trace_event_raw_power_domain { - struct trace_entry ent; - u32 __data_loc_name; - u64 state; - u64 cpu_id; - char __data[0]; -}; - -struct trace_event_raw_cpu_latency_qos_request { - struct trace_entry ent; - s32 value; - char __data[0]; -}; - -struct trace_event_raw_pm_qos_update { - struct trace_entry ent; - enum pm_qos_req_action action; - int prev_value; - int curr_value; - char __data[0]; -}; - -struct trace_event_raw_dev_pm_qos_request { - struct trace_entry ent; - u32 __data_loc_name; - enum dev_pm_qos_req_type type; - s32 new_value; - char __data[0]; -}; - -struct trace_event_raw_guest_halt_poll_ns { - struct trace_entry ent; - bool grow; - unsigned int new; - unsigned int old; - char __data[0]; -}; - -struct trace_event_data_offsets_cpu {}; - -struct trace_event_data_offsets_cpu_idle_miss {}; - -struct trace_event_data_offsets_powernv_throttle { - u32 reason; - const void *reason_ptr_; -}; - -struct trace_event_data_offsets_pstate_sample {}; - -struct trace_event_data_offsets_cpu_frequency_limits {}; - -struct trace_event_data_offsets_device_pm_callback_start { - u32 device; - const void *device_ptr_; - u32 driver; - const void *driver_ptr_; - u32 parent; - const void *parent_ptr_; - u32 pm_ops; - const void *pm_ops_ptr_; -}; - -struct trace_event_data_offsets_device_pm_callback_end { - u32 device; - const void *device_ptr_; - u32 driver; - const void *driver_ptr_; -}; - -struct trace_event_data_offsets_suspend_resume {}; - -struct trace_event_data_offsets_wakeup_source { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_clock { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_power_domain { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_cpu_latency_qos_request {}; - -struct trace_event_data_offsets_pm_qos_update {}; - -struct trace_event_data_offsets_dev_pm_qos_request { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_guest_halt_poll_ns {}; - -typedef void (*btf_trace_cpu_idle)(void *, unsigned int, unsigned int); - -typedef void (*btf_trace_cpu_idle_miss)(void *, unsigned int, unsigned int, bool); - -typedef void (*btf_trace_powernv_throttle)(void *, int, const char *, int); - -typedef void (*btf_trace_pstate_sample)(void *, u32, u32, u32, u32, u64, u64, u64, u32, u32); - -typedef void (*btf_trace_cpu_frequency)(void *, unsigned int, unsigned int); - -typedef void (*btf_trace_cpu_frequency_limits)(void *, struct cpufreq_policy *); - -typedef void (*btf_trace_device_pm_callback_start)(void *, struct device *, const char *, int); - -typedef void (*btf_trace_device_pm_callback_end)(void *, struct device *, int); - -typedef void (*btf_trace_suspend_resume)(void *, const char *, int, bool); - -typedef void (*btf_trace_wakeup_source_activate)(void *, const char *, unsigned int); - -typedef void (*btf_trace_wakeup_source_deactivate)(void *, const char *, unsigned int); - -typedef void (*btf_trace_clock_enable)(void *, const char *, unsigned int, unsigned int); - -typedef void (*btf_trace_clock_disable)(void *, const char *, unsigned int, unsigned int); - -typedef void (*btf_trace_clock_set_rate)(void *, const char *, unsigned int, unsigned int); - -typedef void (*btf_trace_power_domain_target)(void *, const char *, unsigned int, unsigned int); - -typedef void (*btf_trace_pm_qos_add_request)(void *, s32); - -typedef void (*btf_trace_pm_qos_update_request)(void *, s32); - -typedef void (*btf_trace_pm_qos_remove_request)(void *, s32); - -typedef void (*btf_trace_pm_qos_update_target)(void *, enum pm_qos_req_action, int, int); - -typedef void (*btf_trace_pm_qos_update_flags)(void *, enum pm_qos_req_action, int, int); - -typedef void (*btf_trace_dev_pm_qos_add_request)(void *, const char *, enum dev_pm_qos_req_type, s32); - -typedef void (*btf_trace_dev_pm_qos_update_request)(void *, const char *, enum dev_pm_qos_req_type, s32); - -typedef void (*btf_trace_dev_pm_qos_remove_request)(void *, const char *, enum dev_pm_qos_req_type, s32); - -typedef void (*btf_trace_guest_halt_poll_ns)(void *, bool, unsigned int, unsigned int); - -struct bpf_iter_seq_link_info { - u32 link_id; -}; - -struct bpf_iter__bpf_link { - union { - struct bpf_iter_meta *meta; - }; - union { - struct bpf_link *link; - }; -}; - -struct bpf_storage_blob { - struct bpf_local_storage *storage; -}; - -typedef u64 (*btf_bpf_inode_storage_get)(struct bpf_map *, struct inode *, void *, u64, gfp_t); - -typedef u64 (*btf_bpf_inode_storage_delete)(struct bpf_map *, struct inode *); - -struct reuseport_array { - struct bpf_map map; - struct sock *ptrs[0]; -}; - -struct static_key_mod { - struct static_key_mod *next; - struct jump_entry *entries; - struct module *mod; -}; - -struct static_key_deferred { - struct static_key key; - long unsigned int timeout; - struct delayed_work work; -}; - -struct trace_event_raw_vm_unmapped_area { - struct trace_entry ent; - long unsigned int addr; - long unsigned int total_vm; - long unsigned int flags; - long unsigned int length; - long unsigned int low_limit; - long unsigned int high_limit; - long unsigned int align_mask; - long unsigned int align_offset; - char __data[0]; -}; - -struct trace_event_raw_vma_mas_szero { - struct trace_entry ent; - struct maple_tree *mt; - long unsigned int start; - long unsigned int end; - char __data[0]; -}; - -struct trace_event_raw_vma_store { - struct trace_entry ent; - struct maple_tree *mt; - struct vm_area_struct *vma; - long unsigned int vm_start; - long unsigned int vm_end; - char __data[0]; -}; - -struct trace_event_raw_exit_mmap { - struct trace_entry ent; - struct mm_struct *mm; - struct maple_tree *mt; - char __data[0]; -}; - -struct trace_event_data_offsets_vm_unmapped_area {}; - -struct trace_event_data_offsets_vma_mas_szero {}; - -struct trace_event_data_offsets_vma_store {}; - -struct trace_event_data_offsets_exit_mmap {}; - -typedef void (*btf_trace_vm_unmapped_area)(void *, long unsigned int, struct vm_unmapped_area_info *); - -typedef void (*btf_trace_vma_mas_szero)(void *, struct maple_tree *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_vma_store)(void *, struct maple_tree *, struct vm_area_struct *); - -typedef void (*btf_trace_exit_mmap)(void *, struct mm_struct *); - -struct memcg1_events_percpu { - long unsigned int nr_page_events; - long unsigned int targets[2]; -}; - -enum mem_cgroup_events_target { - MEM_CGROUP_TARGET_THRESH = 0, - MEM_CGROUP_TARGET_SOFTLIMIT = 1, - MEM_CGROUP_NTARGETS = 2, -}; - -enum res_type { - _MEM = 0, - _MEMSWAP = 1, - _KMEM = 2, - _TCP = 3, -}; - -struct mem_cgroup_tree_per_node { - struct rb_root rb_root; - struct rb_node *rb_rightmost; - spinlock_t lock; -}; - -struct mem_cgroup_tree { - struct mem_cgroup_tree_per_node *rb_tree_per_node[1]; -}; - -struct move_charge_struct { - spinlock_t lock; - struct mm_struct *mm; - struct mem_cgroup *from; - struct mem_cgroup *to; - long unsigned int flags; - long unsigned int precharge; - long unsigned int moved_charge; - long unsigned int moved_swap; - struct task_struct *moving_task; - wait_queue_head_t waitq; -}; - -struct mem_cgroup_eventfd_list { - struct list_head list; - struct eventfd_ctx *eventfd; -}; - -struct mem_cgroup_event { - struct mem_cgroup *memcg; - struct eventfd_ctx *eventfd; - struct list_head list; - int (*register_event)(struct mem_cgroup *, struct eventfd_ctx *, const char *); - void (*unregister_event)(struct mem_cgroup *, struct eventfd_ctx *); - poll_table pt; - wait_queue_head_t *wqh; - wait_queue_entry_t wait; - struct work_struct remove; -}; - -enum { - RES_USAGE___2 = 0, - RES_LIMIT___2 = 1, - RES_MAX_USAGE___2 = 2, - RES_FAILCNT___2 = 3, - RES_SOFT_LIMIT = 4, -}; - -union mc_target { - struct folio *folio; - swp_entry_t ent; -}; - -enum mc_target_type { - MC_TARGET_NONE = 0, - MC_TARGET_PAGE = 1, - MC_TARGET_SWAP = 2, - MC_TARGET_DEVICE = 3, -}; - -struct oom_wait_info { - struct mem_cgroup *memcg; - wait_queue_entry_t wait; -}; - -struct linux_dirent64 { - u64 d_ino; - s64 d_off; - short unsigned int d_reclen; - unsigned char d_type; - char d_name[0]; -}; - -struct linux_dirent { - long unsigned int d_ino; - long unsigned int d_off; - short unsigned int d_reclen; - char d_name[0]; -}; - -struct getdents_callback___2 { - struct dir_context ctx; - struct linux_dirent *current_dir; - int prev_reclen; - int count; - int error; -}; - -struct getdents_callback64 { - struct dir_context ctx; - struct linux_dirent64 *current_dir; - int prev_reclen; - int count; - int error; -}; - -struct mpage_readpage_args { - struct bio *bio; - struct folio *folio; - unsigned int nr_pages; - bool is_readahead; - sector_t last_block_in_bio; - struct buffer_head map_bh; - long unsigned int first_logical_block; - get_block_t *get_block; -}; - -struct mpage_data { - struct bio *bio; - sector_t last_block_in_bio; - get_block_t *get_block; -}; - -struct epoll_params { - __u32 busy_poll_usecs; - __u16 busy_poll_budget; - __u8 prefer_busy_poll; - __u8 __pad; -}; - -struct epoll_filefd { - struct file *file; - int fd; -} __attribute__((packed)); - -struct epitem; - -struct eppoll_entry { - struct eppoll_entry *next; - struct epitem *base; - wait_queue_entry_t wait; - wait_queue_head_t *whead; -}; - -struct eventpoll; - -struct epitem { - union { - struct rb_node rbn; - struct callback_head rcu; - }; - struct list_head rdllink; - struct epitem *next; - struct epoll_filefd ffd; - bool dying; - struct eppoll_entry *pwqlist; - struct eventpoll *ep; - struct hlist_node fllink; - struct wakeup_source *ws; - struct epoll_event event; -}; - -struct eventpoll { - struct mutex mtx; - wait_queue_head_t wq; - wait_queue_head_t poll_wait; - struct list_head rdllist; - spinlock_t lock; - struct rb_root_cached rbr; - struct epitem *ovflist; - struct wakeup_source *ws; - struct user_struct *user; - struct file *file; - u64 gen; - struct hlist_head refs; - u8 loop_check_depth; - refcount_t refcount; - unsigned int napi_id; - u32 busy_poll_usecs; - u16 busy_poll_budget; - bool prefer_busy_poll; -}; - -struct ep_pqueue { - poll_table pt; - struct epitem *epi; -}; - -struct epitems_head { - struct hlist_head epitems; - struct epitems_head *next; -}; - -struct page_region { - __u64 start; - __u64 end; - __u64 categories; -}; - -struct pm_scan_arg { - __u64 size; - __u64 flags; - __u64 start; - __u64 end; - __u64 walk_end; - __u64 vec; - __u64 vec_len; - __u64 max_pages; - __u64 category_inverted; - __u64 category_mask; - __u64 category_anyof_mask; - __u64 return_mask; -}; - -enum procmap_query_flags { - PROCMAP_QUERY_VMA_READABLE = 1, - PROCMAP_QUERY_VMA_WRITABLE = 2, - PROCMAP_QUERY_VMA_EXECUTABLE = 4, - PROCMAP_QUERY_VMA_SHARED = 8, - PROCMAP_QUERY_COVERING_OR_NEXT_VMA = 16, - PROCMAP_QUERY_FILE_BACKED_VMA = 32, -}; - -struct procmap_query { - __u64 size; - __u64 query_flags; - __u64 query_addr; - __u64 vma_start; - __u64 vma_end; - __u64 vma_flags; - __u64 vma_page_size; - __u64 vma_offset; - __u64 inode; - __u32 dev_major; - __u32 dev_minor; - __u32 vma_name_size; - __u32 build_id_size; - __u64 vma_name_addr; - __u64 build_id_addr; -}; - -struct proc_maps_private { - struct inode *inode; - struct task_struct *task; - struct mm_struct *mm; - struct vma_iterator iter; -}; - -struct mem_size_stats { - long unsigned int resident; - long unsigned int shared_clean; - long unsigned int shared_dirty; - long unsigned int private_clean; - long unsigned int private_dirty; - long unsigned int referenced; - long unsigned int anonymous; - long unsigned int lazyfree; - long unsigned int anonymous_thp; - long unsigned int shmem_thp; - long unsigned int file_thp; - long unsigned int swap; - long unsigned int shared_hugetlb; - long unsigned int private_hugetlb; - long unsigned int ksm; - u64 pss; - u64 pss_anon; - u64 pss_file; - u64 pss_shmem; - u64 pss_dirty; - u64 pss_locked; - u64 swap_pss; -}; - -enum clear_refs_types { - CLEAR_REFS_ALL = 1, - CLEAR_REFS_ANON = 2, - CLEAR_REFS_MAPPED = 3, - CLEAR_REFS_SOFT_DIRTY = 4, - CLEAR_REFS_MM_HIWATER_RSS = 5, - CLEAR_REFS_LAST = 6, -}; - -struct clear_refs_private { - enum clear_refs_types type; -}; - -typedef struct { - u64 pme; -} pagemap_entry_t; - -struct pagemapread { - int pos; - int len; - pagemap_entry_t *buffer; - bool show_pfn; -}; - -struct pagemap_scan_private { - struct pm_scan_arg arg; - long unsigned int masks_of_interest; - long unsigned int cur_vma_category; - struct page_region *vec_buf; - long unsigned int vec_buf_len; - long unsigned int vec_buf_index; - long unsigned int found_pages; - struct page_region *vec_out; -}; - -typedef struct { - __le32 *p; - __le32 key; - struct buffer_head *bh; -} Indirect; - -enum bio_post_read_step___2 { - STEP_INITIAL = 0, - STEP_DECRYPT___2 = 1, - STEP_VERITY___2 = 2, - STEP_MAX = 3, -}; - -struct bio_post_read_ctx___2 { - struct bio *bio; - struct work_struct work; - unsigned int cur_step; - unsigned int enabled_steps; -}; - -struct squashfs_fragment_entry { - __le64 start_block; - __le32 size; - unsigned int unused; -}; - -struct fat_cache { - struct list_head cache_list; - int nr_contig; - int fcluster; - int dcluster; -}; - -struct fat_cache_id { - unsigned int id; - int nr_contig; - int fcluster; - int dcluster; -}; - -struct nfsd_genl_rqstp { - struct sockaddr rq_daddr; - struct sockaddr rq_saddr; - long unsigned int rq_flags; - ktime_t rq_stime; - __be32 rq_xid; - u32 rq_vers; - u32 rq_prog; - u32 rq_proc; - u32 rq_opcnt; - u32 rq_opnum[50]; -}; - -enum { - NFSD_A_RPC_STATUS_XID = 1, - NFSD_A_RPC_STATUS_FLAGS = 2, - NFSD_A_RPC_STATUS_PROG = 3, - NFSD_A_RPC_STATUS_VERSION = 4, - NFSD_A_RPC_STATUS_PROC = 5, - NFSD_A_RPC_STATUS_SERVICE_TIME = 6, - NFSD_A_RPC_STATUS_PAD = 7, - NFSD_A_RPC_STATUS_SADDR4 = 8, - NFSD_A_RPC_STATUS_DADDR4 = 9, - NFSD_A_RPC_STATUS_SADDR6 = 10, - NFSD_A_RPC_STATUS_DADDR6 = 11, - NFSD_A_RPC_STATUS_SPORT = 12, - NFSD_A_RPC_STATUS_DPORT = 13, - NFSD_A_RPC_STATUS_COMPOUND_OPS = 14, - __NFSD_A_RPC_STATUS_MAX = 15, - NFSD_A_RPC_STATUS_MAX = 14, -}; - -enum { - NFSD_Root = 1, - NFSD_List = 2, - NFSD_Export_Stats = 3, - NFSD_Export_features = 4, - NFSD_Fh = 5, - NFSD_FO_UnlockIP = 6, - NFSD_FO_UnlockFS = 7, - NFSD_Threads = 8, - NFSD_Pool_Threads = 9, - NFSD_Pool_Stats = 10, - NFSD_Reply_Cache_Stats = 11, - NFSD_Versions = 12, - NFSD_Ports = 13, - NFSD_MaxBlkSize = 14, - NFSD_MaxConnections = 15, - NFSD_Filecache = 16, - NFSD_Leasetime = 17, - NFSD_Gracetime = 18, - NFSD_RecoveryDir = 19, - NFSD_V4EndGrace = 20, - NFSD_MaxReserved = 21, -}; - -typedef struct { - __u16 Day: 5; - __u16 Month: 4; - __u16 Year: 7; -} SMB_DATE; - -typedef struct { - __u16 TwoSeconds: 5; - __u16 Minutes: 6; - __u16 Hours: 5; -} SMB_TIME; - -struct smb_to_posix_error { - __u16 smb_err; - int posix_code; -}; - -struct ntfs_run { - CLST vcn; - CLST len; - CLST lcn; -}; - -struct fuse_dirent { - uint64_t ino; - uint64_t off; - uint32_t namelen; - uint32_t type; - char name[0]; -}; - -struct fuse_direntplus { - struct fuse_entry_out entry_out; - struct fuse_dirent dirent; -}; - -enum fuse_parse_result { - FOUND_ERR = -1, - FOUND_NONE = 0, - FOUND_SOME = 1, - FOUND_ALL = 2, -}; - -struct kernel_long_ad { - uint32_t extLength; - struct kernel_lb_addr extLocation; - uint8_t impUse[6]; -}; - -struct allocExtDesc { - struct tag descTag; - __le32 previousAllocExtLocation; - __le32 lengthAllocDescs; -}; - -struct icbtag { - __le32 priorRecordedNumDirectEntries; - __le16 strategyType; - __le16 strategyParameter; - __le16 numEntries; - uint8_t reserved; - uint8_t fileType; - struct lb_addr parentICBLocation; - __le16 flags; -}; - -struct indirectEntry { - struct tag descTag; - struct icbtag icbTag; - struct long_ad indirectICB; -}; - -struct fileEntry { - struct tag descTag; - struct icbtag icbTag; - __le32 uid; - __le32 gid; - __le32 permissions; - __le16 fileLinkCount; - uint8_t recordFormat; - uint8_t recordDisplayAttr; - __le32 recordLength; - __le64 informationLength; - __le64 logicalBlocksRecorded; - struct timestamp accessTime; - struct timestamp modificationTime; - struct timestamp attrTime; - __le32 checkpoint; - struct long_ad extendedAttrICB; - struct regid impIdent; - __le64 uniqueID; - __le32 lengthExtendedAttr; - __le32 lengthAllocDescs; - uint8_t extendedAttr[0]; -}; - -struct deviceSpec { - __le32 attrType; - uint8_t attrSubtype; - uint8_t reserved[3]; - __le32 attrLength; - __le32 impUseLength; - __le32 majorDeviceIdent; - __le32 minorDeviceIdent; - uint8_t impUse[0]; -}; - -struct unallocSpaceEntry { - struct tag descTag; - struct icbtag icbTag; - __le32 lengthAllocDescs; - uint8_t allocDescs[0]; -}; - -struct extendedFileEntry { - struct tag descTag; - struct icbtag icbTag; - __le32 uid; - __le32 gid; - __le32 permissions; - __le16 fileLinkCount; - uint8_t recordFormat; - uint8_t recordDisplayAttr; - __le32 recordLength; - __le64 informationLength; - __le64 objectSize; - __le64 logicalBlocksRecorded; - struct timestamp accessTime; - struct timestamp modificationTime; - struct timestamp createTime; - struct timestamp attrTime; - __le32 checkpoint; - __le32 reserved; - struct long_ad extendedAttrICB; - struct long_ad streamDirectoryICB; - struct regid impIdent; - __le64 uniqueID; - __le32 lengthExtendedAttr; - __le32 lengthAllocDescs; - uint8_t extendedAttr[0]; -}; - -struct udf_map_rq { - sector_t lblk; - udf_pblk_t pblk; - int iflags; - int oflags; -}; - -struct xfs_attr_sf_entry { - __u8 namelen; - __u8 valuelen; - __u8 flags; - __u8 nameval[0]; -}; - -struct xfs_attr_leaf_name_local { - __be16 valuelen; - __u8 namelen; - __u8 nameval[0]; -}; - -typedef struct xfs_attr_leaf_name_local xfs_attr_leaf_name_local_t; - -struct xfs_attr_sf_sort { - uint8_t entno; - uint8_t namelen; - uint8_t valuelen; - uint8_t flags; - xfs_dahash_t hash; - unsigned char *name; - void *value; -}; - -typedef struct xfs_attr_sf_sort xfs_attr_sf_sort_t; - -struct xfs_icreate_item { - struct xfs_log_item ic_item; - struct xfs_icreate_log ic_format; -}; - -struct btrfs_csums { - u16 size; - const char name[10]; - const char driver[12]; -}; - -struct workspace___2 { - z_stream strm; - char *buf; - unsigned int buf_size; - struct list_head list; - int level; -}; - -struct btrfs_stripe_hash { - struct list_head hash_list; - spinlock_t lock; -}; - -struct btrfs_stripe_hash_table { - struct list_head stripe_cache; - spinlock_t cache_lock; - int cache_size; - struct btrfs_stripe_hash table[0]; -}; - -struct sector_ptr { - struct page *page; - unsigned int pgoff: 24; - unsigned int uptodate: 8; -}; - -struct btrfs_plug_cb { - struct blk_plug_cb cb; - struct btrfs_fs_info *info; - struct list_head rbio_list; -}; - -enum { - Z_EROFS_LCLUSTER_TYPE_PLAIN = 0, - Z_EROFS_LCLUSTER_TYPE_HEAD1 = 1, - Z_EROFS_LCLUSTER_TYPE_NONHEAD = 2, - Z_EROFS_LCLUSTER_TYPE_HEAD2 = 3, - Z_EROFS_LCLUSTER_TYPE_MAX = 4, -}; - -struct z_erofs_lcluster_index { - __le16 di_advise; - __le16 di_clusterofs; - union { - __le32 blkaddr; - __le16 delta[2]; - } di_u; -}; - -struct z_erofs_maprecorder { - struct inode *inode; - struct erofs_map_blocks *map; - long unsigned int lcn; - u8 type; - u8 headtype; - u16 clusterofs; - u16 delta[2]; - erofs_blk_t pblk; - erofs_blk_t compressedblks; - erofs_off_t nextpackoff; - bool partialref; -}; - -enum lsm_event { - LSM_POLICY_CHANGE = 0, -}; - -struct gcm_instance_ctx { - struct crypto_skcipher_spawn ctr; - struct crypto_ahash_spawn ghash; -}; - -struct crypto_gcm_ctx { - struct crypto_skcipher *ctr; - struct crypto_ahash *ghash; -}; - -struct crypto_rfc4106_ctx { - struct crypto_aead *child; - u8 nonce[4]; -}; - -struct crypto_rfc4106_req_ctx { - struct scatterlist src[3]; - struct scatterlist dst[3]; - struct aead_request subreq; -}; - -struct crypto_rfc4543_instance_ctx { - struct crypto_aead_spawn aead; -}; - -struct crypto_rfc4543_ctx { - struct crypto_aead *child; - struct crypto_sync_skcipher *null; - u8 nonce[4]; -}; - -struct crypto_rfc4543_req_ctx { - struct aead_request subreq; -}; - -struct crypto_gcm_ghash_ctx { - unsigned int cryptlen; - struct scatterlist *src; - int (*complete)(struct aead_request *, u32); -}; - -struct crypto_gcm_req_priv_ctx { - u8 iv[16]; - u8 auth_tag[16]; - u8 iauth_tag[16]; - struct scatterlist src[3]; - struct scatterlist dst[3]; - struct scatterlist sg; - struct crypto_gcm_ghash_ctx ghash_ctx; - union { - struct ahash_request ahreq; - struct skcipher_request skreq; - } u; -}; - -struct seed_ctx { - u32 keysched[32]; -}; - -struct lz4hc_ctx { - void *lz4hc_comp_mem; -}; - -struct prng_context { - spinlock_t prng_lock; - unsigned char rand_data[16]; - unsigned char last_rand_data[16]; - unsigned char DT[16]; - unsigned char I[16]; - unsigned char V[16]; - u32 rand_data_valid; - struct crypto_cipher *tfm; - u32 flags; -}; - -enum { - DIO_SHOULD_DIRTY = 1, - DIO_IS_SYNC = 2, -}; - -struct blkdev_dio { - union { - struct kiocb *iocb; - struct task_struct *waiter; - }; - size_t size; - atomic_t ref; - unsigned int flags; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct bio bio; - long: 64; - long: 64; -}; - -enum dd_data_dir { - DD_READ = 0, - DD_WRITE = 1, -}; - -enum { - DD_DIR_COUNT = 2, -}; - -enum dd_prio { - DD_RT_PRIO = 0, - DD_BE_PRIO = 1, - DD_IDLE_PRIO = 2, - DD_PRIO_MAX = 2, -}; - -enum { - DD_PRIO_COUNT = 3, -}; - -struct io_stats_per_prio { - uint32_t inserted; - uint32_t merged; - uint32_t dispatched; - atomic_t completed; -}; - -struct dd_per_prio { - struct list_head dispatch; - struct rb_root sort_list[2]; - struct list_head fifo_list[2]; - sector_t latest_pos[2]; - struct io_stats_per_prio stats; -}; - -struct deadline_data { - struct dd_per_prio per_prio[3]; - enum dd_data_dir last_dir; - unsigned int batching; - unsigned int starved; - int fifo_expire[2]; - int fifo_batch; - int writes_starved; - int front_merges; - u32 async_depth; - int prio_aging_expire; - spinlock_t lock; -}; - -struct io_uring_rsrc_update { - __u32 offset; - __u32 resv; - __u64 data; -}; - -enum io_uring_msg_ring_flags { - IORING_MSG_DATA = 0, - IORING_MSG_SEND_FD = 1, -}; - -struct io_msg { - struct file *file; - struct file *src_file; - struct callback_head tw; - u64 user_data; - u32 len; - u32 cmd; - u32 src_fd; - union { - u32 dst_fd; - u32 cqe_flags; - }; - u32 flags; -}; - -typedef long unsigned int uint64x2_t[2]; - -struct reciprocal_value_adv { - u32 m; - u8 sh; - u8 exp; - bool is_wide_m; -}; - -enum devm_ioremap_type { - DEVM_IOREMAP = 0, - DEVM_IOREMAP_UC = 1, - DEVM_IOREMAP_WC = 2, - DEVM_IOREMAP_NP = 3, -}; - -struct arch_io_reserve_memtype_wc_devres { - resource_size_t start; - resource_size_t size; -}; - -typedef struct { - S16 norm[53]; - U32 wksp[285]; -} ZSTD_BuildCTableWksp; - -typedef struct { - U64 rolling; - U64 stopMask; -} ldmRollingHashState_t; - -typedef struct { - U32 fastMode; - U32 tableLog; -} ZSTD_seqSymbol_header; - -typedef struct { - size_t litLength; - size_t matchLength; - size_t offset; -} seq_t; - -typedef struct { - size_t state; - const ZSTD_seqSymbol *table; -} ZSTD_fseState; - -typedef struct { - BIT_DStream_t DStream; - ZSTD_fseState stateLL; - ZSTD_fseState stateOffb; - ZSTD_fseState stateML; - size_t prevOffset[3]; -} seqState_t; - -typedef enum { - ZSTD_lo_isRegularOffset = 0, - ZSTD_lo_isLongOffset = 1, -} ZSTD_longOffset_e; - -struct its_collection { - u64 target_address; - u16 col_id; -}; - -struct its_baser { - void *base; - u64 val; - u32 order; - u32 psz; -}; - -struct its_cmd_block; - -struct its_device; - -struct its_node { - raw_spinlock_t lock; - struct mutex dev_alloc_lock; - struct list_head entry; - void *base; - void *sgir_base; - phys_addr_t phys_base; - struct its_cmd_block *cmd_base; - struct its_cmd_block *cmd_write; - struct its_baser tables[8]; - struct its_collection *collections; - struct fwnode_handle *fwnode_handle; - u64 (*get_msi_base)(struct its_device *); - u64 typer; - u64 cbaser_save; - u32 ctlr_save; - u32 mpidr; - struct list_head its_device_list; - u64 flags; - long unsigned int list_nr; - int numa_node; - unsigned int msi_domain_flags; - u32 pre_its_base; - int vlpi_redist_offset; -}; - -struct its_cmd_block { - union { - u64 raw_cmd[4]; - __le64 raw_cmd_le[4]; - }; -}; - -struct event_lpi_map { - long unsigned int *lpi_map; - u16 *col_map; - irq_hw_number_t lpi_base; - int nr_lpis; - raw_spinlock_t vlpi_lock; - struct its_vm *vm; - struct its_vlpi_map *vlpi_maps; - int nr_vlpis; -}; - -struct its_device { - struct list_head entry; - struct its_node *its; - struct event_lpi_map event_map; - void *itt; - u32 nr_ites; - u32 device_id; - bool shared; -}; - -struct cpu_lpi_count { - atomic_t managed; - atomic_t unmanaged; -}; - -struct its_cmd_desc { - union { - struct { - struct its_device *dev; - u32 event_id; - } its_inv_cmd; - struct { - struct its_device *dev; - u32 event_id; - } its_clear_cmd; - struct { - struct its_device *dev; - u32 event_id; - } its_int_cmd; - struct { - struct its_device *dev; - int valid; - } its_mapd_cmd; - struct { - struct its_collection *col; - int valid; - } its_mapc_cmd; - struct { - struct its_device *dev; - u32 phys_id; - u32 event_id; - } its_mapti_cmd; - struct { - struct its_device *dev; - struct its_collection *col; - u32 event_id; - } its_movi_cmd; - struct { - struct its_device *dev; - u32 event_id; - } its_discard_cmd; - struct { - struct its_collection *col; - } its_invall_cmd; - struct { - struct its_vpe *vpe; - } its_vinvall_cmd; - struct { - struct its_vpe *vpe; - struct its_collection *col; - bool valid; - } its_vmapp_cmd; - struct { - struct its_vpe *vpe; - struct its_device *dev; - u32 virt_id; - u32 event_id; - bool db_enabled; - } its_vmapti_cmd; - struct { - struct its_vpe *vpe; - struct its_device *dev; - u32 event_id; - bool db_enabled; - } its_vmovi_cmd; - struct { - struct its_vpe *vpe; - struct its_collection *col; - u16 seq_num; - u16 its_list; - } its_vmovp_cmd; - struct { - struct its_vpe *vpe; - } its_invdb_cmd; - struct { - struct its_vpe *vpe; - u8 sgi; - u8 priority; - bool enable; - bool group; - bool clear; - } its_vsgi_cmd; - }; -}; - -typedef struct its_collection * (*its_cmd_builder_t)(struct its_node *, struct its_cmd_block *, struct its_cmd_desc *); - -typedef struct its_vpe * (*its_cmd_vbuilder_t)(struct its_node *, struct its_cmd_block *, struct its_cmd_desc *); - -struct lpi_range { - struct list_head entry; - u32 base_id; - u32 span; -}; - -struct clk_fixed_rate { - struct clk_hw hw; - long unsigned int fixed_rate; - long unsigned int fixed_accuracy; - long unsigned int flags; -}; - -struct reset_control_bulk_data { - const char *id; - struct reset_control *rstc; -}; - -struct reset_controller_dev; - -struct reset_control { - struct reset_controller_dev *rcdev; - struct list_head list; - unsigned int id; - struct kref refcnt; - bool acquired; - bool shared; - bool array; - atomic_t deassert_count; - atomic_t triggered_count; -}; - -struct reset_control_ops { - int (*reset)(struct reset_controller_dev *, long unsigned int); - int (*assert)(struct reset_controller_dev *, long unsigned int); - int (*deassert)(struct reset_controller_dev *, long unsigned int); - int (*status)(struct reset_controller_dev *, long unsigned int); -}; - -struct reset_controller_dev { - const struct reset_control_ops *ops; - struct module *owner; - struct list_head list; - struct list_head reset_control_head; - struct device *dev; - struct device_node *of_node; - const struct of_phandle_args *of_args; - int of_reset_n_cells; - int (*of_xlate)(struct reset_controller_dev *, const struct of_phandle_args *); - unsigned int nr_resets; -}; - -struct reset_control_lookup { - struct list_head list; - const char *provider; - unsigned int index; - const char *dev_id; - const char *con_id; -}; - -struct reset_control_array { - struct reset_control base; - unsigned int num_rstcs; - struct reset_control *rstc[0]; -}; - -struct reset_control_bulk_devres { - int num_rstcs; - struct reset_control_bulk_data *rstcs; -}; - -typedef short unsigned int u_short; - -enum translation_map { - LAT1_MAP = 0, - GRAF_MAP = 1, - IBMPC_MAP = 2, - USER_MAP = 3, - FIRST_MAP = 0, - LAST_MAP = 3, -}; - -struct uni_pagedict { - u16 **uni_pgdir[32]; - long unsigned int refcount; - long unsigned int sum; - unsigned char *inverse_translations[4]; - u16 *inverse_trans_unicode; -}; - -struct dw8250_platform_data { - u8 usr_reg; - u32 cpr_value; - unsigned int quirks; -}; - -struct dw8250_data { - struct dw8250_port_data data; - const struct dw8250_platform_data *pdata; - int msr_mask_on; - int msr_mask_off; - struct clk *clk; - struct clk *pclk; - struct notifier_block clk_notifier; - struct work_struct clk_work; - struct reset_control *rst; - unsigned int skip_autocfg: 1; - unsigned int uart_16550_compatible: 1; -}; - -struct drm_auth { - drm_magic_t magic; -}; - -struct drm_edid_ident { - u32 panel_id; - const char *name; -}; - -struct displayid_block { - u8 tag; - u8 rev; - u8 num_bytes; -}; - -struct displayid_tiled_block { - struct displayid_block base; - u8 tile_cap; - u8 topo[3]; - u8 tile_size[4]; - u8 tile_pixel_bezel[5]; - u8 topology_id[8]; -}; - -struct displayid_detailed_timings_1 { - u8 pixel_clock[3]; - u8 flags; - u8 hactive[2]; - u8 hblank[2]; - u8 hsync[2]; - u8 hsw[2]; - u8 vactive[2]; - u8 vblank[2]; - u8 vsync[2]; - u8 vsw[2]; -}; - -struct displayid_detailed_timing_block { - struct displayid_block base; - struct displayid_detailed_timings_1 timings[0]; -}; - -struct displayid_vesa_vendor_specific_block { - struct displayid_block base; - u8 oui[3]; - u8 data_structure_type; - u8 mso; -}; - -struct displayid_iter { - const struct drm_edid *drm_edid; - const u8 *section; - int length; - int idx; - int ext_index; - u8 version; - u8 primary_use; -}; - -struct detailed_mode_closure { - struct drm_connector *connector; - const struct drm_edid *drm_edid; - bool preferred; - int modes; -}; - -struct drm_edid_match_closure { - const struct drm_edid_ident *ident; - bool matched; -}; - -struct edid_quirk { - const struct drm_edid_ident ident; - u32 quirks; -}; - -struct minimode { - short int w; - short int h; - short int r; - short int rb; -}; - -struct drm_edid_iter { - const struct drm_edid *drm_edid; - int index; -}; - -enum edid_block_status { - EDID_BLOCK_OK = 0, - EDID_BLOCK_READ_FAIL = 1, - EDID_BLOCK_NULL = 2, - EDID_BLOCK_ZERO = 3, - EDID_BLOCK_HEADER_CORRUPT = 4, - EDID_BLOCK_HEADER_REPAIR = 5, - EDID_BLOCK_HEADER_FIXED = 6, - EDID_BLOCK_CHECKSUM = 7, - EDID_BLOCK_VERSION = 8, -}; - -typedef int read_block_fn(void *, u8 *, unsigned int, size_t); - -typedef void detailed_cb(const struct detailed_timing *, void *); - -struct stereo_mandatory_mode { - int width; - int height; - int vrefresh; - unsigned int flags; -}; - -struct cea_db_iter { - struct drm_edid_iter edid_iter; - struct displayid_iter displayid_iter; - const u8 *collection; - int index; - int end; -}; - -struct cea_db { - u8 tag_length; - u8 data[0]; -}; - -struct drm_fb_helper_funcs; - -struct fb_info; - -struct drm_fb_helper { - struct drm_client_dev client; - struct drm_client_buffer *buffer; - struct drm_framebuffer *fb; - struct drm_device *dev; - const struct drm_fb_helper_funcs *funcs; - struct fb_info *info; - u32 pseudo_palette[17]; - struct drm_clip_rect damage_clip; - spinlock_t damage_lock; - struct work_struct damage_work; - struct work_struct resume_work; - struct mutex lock; - struct list_head kernel_fb_list; - bool delayed_hotplug; - bool deferred_setup; - int preferred_bpp; -}; - -struct fb_fix_screeninfo { - char id[16]; - long unsigned int smem_start; - __u32 smem_len; - __u32 type; - __u32 type_aux; - __u32 visual; - __u16 xpanstep; - __u16 ypanstep; - __u16 ywrapstep; - __u32 line_length; - long unsigned int mmio_start; - __u32 mmio_len; - __u32 accel; - __u16 capabilities; - __u16 reserved[2]; -}; - -struct fb_bitfield { - __u32 offset; - __u32 length; - __u32 msb_right; -}; - -struct fb_var_screeninfo { - __u32 xres; - __u32 yres; - __u32 xres_virtual; - __u32 yres_virtual; - __u32 xoffset; - __u32 yoffset; - __u32 bits_per_pixel; - __u32 grayscale; - struct fb_bitfield red; - struct fb_bitfield green; - struct fb_bitfield blue; - struct fb_bitfield transp; - __u32 nonstd; - __u32 activate; - __u32 height; - __u32 width; - __u32 accel_flags; - __u32 pixclock; - __u32 left_margin; - __u32 right_margin; - __u32 upper_margin; - __u32 lower_margin; - __u32 hsync_len; - __u32 vsync_len; - __u32 sync; - __u32 vmode; - __u32 rotate; - __u32 colorspace; - __u32 reserved[4]; -}; - -struct fb_cmap { - __u32 start; - __u32 len; - __u16 *red; - __u16 *green; - __u16 *blue; - __u16 *transp; -}; - -struct fb_copyarea { - __u32 dx; - __u32 dy; - __u32 width; - __u32 height; - __u32 sx; - __u32 sy; -}; - -struct fb_fillrect { - __u32 dx; - __u32 dy; - __u32 width; - __u32 height; - __u32 color; - __u32 rop; -}; - -struct fb_image { - __u32 dx; - __u32 dy; - __u32 width; - __u32 height; - __u32 fg_color; - __u32 bg_color; - __u8 depth; - const char *data; - struct fb_cmap cmap; -}; - -struct fbcurpos { - __u16 x; - __u16 y; -}; - -struct fb_cursor { - __u16 set; - __u16 enable; - __u16 rop; - const char *mask; - struct fbcurpos hot; - struct fb_image image; -}; - -struct fb_chroma { - __u32 redx; - __u32 greenx; - __u32 bluex; - __u32 whitex; - __u32 redy; - __u32 greeny; - __u32 bluey; - __u32 whitey; -}; - -struct fb_videomode; - -struct fb_monspecs { - struct fb_chroma chroma; - struct fb_videomode *modedb; - __u8 manufacturer[4]; - __u8 monitor[14]; - __u8 serial_no[14]; - __u8 ascii[14]; - __u32 modedb_len; - __u32 model; - __u32 serial; - __u32 year; - __u32 week; - __u32 hfmin; - __u32 hfmax; - __u32 dclkmin; - __u32 dclkmax; - __u16 input; - __u16 dpms; - __u16 signal; - __u16 vfmin; - __u16 vfmax; - __u16 gamma; - __u16 gtf: 1; - __u16 misc; - __u8 version; - __u8 revision; - __u8 max_x; - __u8 max_y; -}; - -struct fb_videomode { - const char *name; - u32 refresh; - u32 xres; - u32 yres; - u32 pixclock; - u32 left_margin; - u32 right_margin; - u32 upper_margin; - u32 lower_margin; - u32 hsync_len; - u32 vsync_len; - u32 sync; - u32 vmode; - u32 flag; -}; - -struct fb_pixmap { - u8 *addr; - u32 size; - u32 offset; - u32 buf_align; - u32 scan_align; - u32 access_align; - u32 flags; - long unsigned int blit_x[1]; - long unsigned int blit_y[2]; - void (*writeio)(struct fb_info *, void *, void *, unsigned int); - void (*readio)(struct fb_info *, void *, void *, unsigned int); -}; - -struct fb_ops; - -struct fb_info { - refcount_t count; - int node; - int flags; - int fbcon_rotate_hint; - struct mutex lock; - struct mutex mm_lock; - struct fb_var_screeninfo var; - struct fb_fix_screeninfo fix; - struct fb_monspecs monspecs; - struct fb_pixmap pixmap; - struct fb_pixmap sprite; - struct fb_cmap cmap; - struct list_head modelist; - struct fb_videomode *mode; - const struct fb_ops *fbops; - struct device *device; - int class_flag; - union { - char *screen_base; - char *screen_buffer; - }; - long unsigned int screen_size; - void *pseudo_palette; - u32 state; - void *fbcon_par; - void *par; - bool skip_vt_switch; - bool skip_panic; -}; - -struct fb_blit_caps { - long unsigned int x[1]; - long unsigned int y[2]; - u32 len; - u32 flags; -}; - -struct fb_ops { - struct module *owner; - int (*fb_open)(struct fb_info *, int); - int (*fb_release)(struct fb_info *, int); - ssize_t (*fb_read)(struct fb_info *, char *, size_t, loff_t *); - ssize_t (*fb_write)(struct fb_info *, const char *, size_t, loff_t *); - int (*fb_check_var)(struct fb_var_screeninfo *, struct fb_info *); - int (*fb_set_par)(struct fb_info *); - int (*fb_setcolreg)(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, struct fb_info *); - int (*fb_setcmap)(struct fb_cmap *, struct fb_info *); - int (*fb_blank)(int, struct fb_info *); - int (*fb_pan_display)(struct fb_var_screeninfo *, struct fb_info *); - void (*fb_fillrect)(struct fb_info *, const struct fb_fillrect *); - void (*fb_copyarea)(struct fb_info *, const struct fb_copyarea *); - void (*fb_imageblit)(struct fb_info *, const struct fb_image *); - int (*fb_cursor)(struct fb_info *, struct fb_cursor *); - int (*fb_sync)(struct fb_info *); - int (*fb_ioctl)(struct fb_info *, unsigned int, long unsigned int); - int (*fb_compat_ioctl)(struct fb_info *, unsigned int, long unsigned int); - int (*fb_mmap)(struct fb_info *, struct vm_area_struct *); - void (*fb_get_caps)(struct fb_info *, struct fb_blit_caps *, struct fb_var_screeninfo *); - void (*fb_destroy)(struct fb_info *); - int (*fb_debug_enter)(struct fb_info *); - int (*fb_debug_leave)(struct fb_info *); -}; - -struct drm_fb_helper_surface_size { - u32 fb_width; - u32 fb_height; - u32 surface_width; - u32 surface_height; - u32 surface_bpp; - u32 surface_depth; -}; - -struct drm_fb_helper_funcs { - int (*fb_probe)(struct drm_fb_helper *, struct drm_fb_helper_surface_size *); - int (*fb_dirty)(struct drm_fb_helper *, struct drm_clip_rect *); -}; - -enum dpm_order { - DPM_ORDER_NONE = 0, - DPM_ORDER_DEV_AFTER_PARENT = 1, - DPM_ORDER_PARENT_BEFORE_DEV = 2, - DPM_ORDER_DEV_LAST = 3, -}; - -struct fwnode_link { - struct fwnode_handle *supplier; - struct list_head s_hook; - struct fwnode_handle *consumer; - struct list_head c_hook; - u8 flags; -}; - -union device_attr_group_devres { - const struct attribute_group *group; - const struct attribute_group **groups; -}; - -struct class_dir { - struct kobject kobj; - const struct class *class; -}; - -struct root_device { - struct device dev; - struct module *owner; -}; - -struct dma_resv_iter { - struct dma_resv *obj; - enum dma_resv_usage usage; - struct dma_fence *fence; - enum dma_resv_usage fence_usage; - unsigned int index; - struct dma_resv_list *fences; - unsigned int num_fences; - bool is_restarted; -}; - -struct dma_buf_sync { - __u64 flags; -}; - -struct dma_buf_export_sync_file { - __u32 flags; - __s32 fd; -}; - -struct dma_buf_import_sync_file { - __u32 flags; - __s32 fd; -}; - -typedef struct sg_io_hdr sg_io_hdr_t; - -struct compat_sg_io_hdr { - compat_int_t interface_id; - compat_int_t dxfer_direction; - unsigned char cmd_len; - unsigned char mx_sb_len; - short unsigned int iovec_count; - compat_uint_t dxfer_len; - compat_uint_t dxferp; - compat_uptr_t cmdp; - compat_uptr_t sbp; - compat_uint_t timeout; - compat_uint_t flags; - compat_int_t pack_id; - compat_uptr_t usr_ptr; - unsigned char status; - unsigned char masked_status; - unsigned char msg_status; - unsigned char sb_len_wr; - short unsigned int host_status; - short unsigned int driver_status; - compat_int_t resid; - compat_uint_t duration; - compat_uint_t info; -}; - -struct sg_scsi_id { - int host_no; - int channel; - int scsi_id; - int lun; - int scsi_type; - short int h_cmd_per_lun; - short int d_queue_depth; - int unused[2]; -}; - -typedef struct sg_scsi_id sg_scsi_id_t; - -struct sg_req_info { - char req_state; - char orphan; - char sg_io_owned; - char problem; - int pack_id; - void *usr_ptr; - unsigned int duration; - int unused; -}; - -typedef struct sg_req_info sg_req_info_t; - -struct sg_header { - int pack_len; - int reply_len; - int pack_id; - int result; - unsigned int twelve_byte: 1; - unsigned int target_status: 5; - unsigned int host_status: 8; - unsigned int driver_status: 8; - unsigned int other_flags: 10; - unsigned char sense_buffer[16]; -}; - -struct sg_scatter_hold { - short unsigned int k_use_sg; - unsigned int sglist_len; - unsigned int bufflen; - struct page **pages; - int page_order; - char dio_in_use; - unsigned char cmd_opcode; -}; - -typedef struct sg_scatter_hold Sg_scatter_hold; - -struct sg_fd; - -struct sg_request { - struct list_head entry; - struct sg_fd *parentfp; - Sg_scatter_hold data; - sg_io_hdr_t header; - unsigned char sense_b[96]; - char res_used; - char orphan; - char sg_io_owned; - char done; - struct request *rq; - struct bio *bio; - struct execute_work ew; -}; - -typedef struct sg_request Sg_request; - -struct sg_device; - -struct sg_fd { - struct list_head sfd_siblings; - struct sg_device *parentdp; - wait_queue_head_t read_wait; - rwlock_t rq_list_lock; - struct mutex f_mutex; - int timeout; - int timeout_user; - Sg_scatter_hold reserve; - struct list_head rq_list; - struct fasync_struct *async_qp; - Sg_request req_arr[16]; - char force_packid; - char cmd_q; - unsigned char next_cmd_len; - char keep_orphan; - char mmap_called; - char res_in_use; - struct kref f_ref; - struct execute_work ew; -}; - -struct sg_device { - struct scsi_device *device; - wait_queue_head_t open_wait; - struct mutex open_rel_lock; - int sg_tablesize; - u32 index; - struct list_head sfds; - rwlock_t sfd_lock; - atomic_t detaching; - bool exclude; - int open_cnt; - char sgdebug; - char name[32]; - struct cdev *cdev; - struct kref d_ref; -}; - -typedef struct sg_fd Sg_fd; - -typedef struct sg_device Sg_device; - -struct sg_proc_deviter { - loff_t index; - size_t max; -}; - -enum { - IFLA_MACVLAN_UNSPEC = 0, - IFLA_MACVLAN_MODE = 1, - IFLA_MACVLAN_FLAGS = 2, - IFLA_MACVLAN_MACADDR_MODE = 3, - IFLA_MACVLAN_MACADDR = 4, - IFLA_MACVLAN_MACADDR_DATA = 5, - IFLA_MACVLAN_MACADDR_COUNT = 6, - IFLA_MACVLAN_BC_QUEUE_LEN = 7, - IFLA_MACVLAN_BC_QUEUE_LEN_USED = 8, - IFLA_MACVLAN_BC_CUTOFF = 9, - __IFLA_MACVLAN_MAX = 10, -}; - -enum macvlan_macaddr_mode { - MACVLAN_MACADDR_ADD = 0, - MACVLAN_MACADDR_DEL = 1, - MACVLAN_MACADDR_FLUSH = 2, - MACVLAN_MACADDR_SET = 3, -}; - -struct macvlan_port { - struct net_device *dev; - struct hlist_head vlan_hash[256]; - struct list_head vlans; - struct sk_buff_head bc_queue; - struct work_struct bc_work; - u32 bc_queue_len_used; - int bc_cutoff; - u32 flags; - int count; - struct hlist_head vlan_source_hash[256]; - long unsigned int bc_filter[4]; - long unsigned int mc_filter[4]; - unsigned char perm_addr[6]; -}; - -struct macvlan_source_entry { - struct hlist_node hlist; - struct macvlan_dev *vlan; - unsigned char addr[8]; - struct callback_head rcu; -}; - -struct macvlan_skb_cb { - const struct macvlan_dev *src; -}; - -struct asyncppp { - struct tty_struct *tty; - unsigned int flags; - unsigned int state; - unsigned int rbits; - int mru; - spinlock_t xmit_lock; - spinlock_t recv_lock; - long unsigned int xmit_flags; - u32 xaccm[8]; - u32 raccm; - unsigned int bytes_sent; - unsigned int bytes_rcvd; - struct sk_buff *tpkt; - int tpkt_pos; - u16 tfcs; - unsigned char *optr; - unsigned char *olim; - long unsigned int last_xmit; - struct sk_buff *rpkt; - int lcp_fcs; - struct sk_buff_head rqueue; - struct tasklet_struct tsk; - refcount_t refcnt; - struct completion dead; - struct ppp_channel chan; - unsigned char obuf[4096]; -}; - -struct usb_qualifier_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __le16 bcdUSB; - __u8 bDeviceClass; - __u8 bDeviceSubClass; - __u8 bDeviceProtocol; - __u8 bMaxPacketSize0; - __u8 bNumConfigurations; - __u8 bRESERVED; -}; - -struct usbdevfs_hub_portinfo { - char nports; - char port[127]; -}; - -enum hub_led_mode { - INDICATOR_AUTO = 0, - INDICATOR_CYCLE = 1, - INDICATOR_GREEN_BLINK = 2, - INDICATOR_GREEN_BLINK_OFF = 3, - INDICATOR_AMBER_BLINK = 4, - INDICATOR_AMBER_BLINK_OFF = 5, - INDICATOR_ALT_BLINK = 6, - INDICATOR_ALT_BLINK_OFF = 7, -} __attribute__((mode(byte))); - -struct usb_tt_clear { - struct list_head clear_list; - unsigned int tt; - u16 devinfo; - struct usb_hcd *hcd; - struct usb_host_endpoint *ep; -}; - -enum hub_activation_type { - HUB_INIT = 0, - HUB_INIT2 = 1, - HUB_INIT3 = 2, - HUB_POST_RESET = 3, - HUB_RESUME = 4, - HUB_RESET_RESUME = 5, -}; - -enum hub_quiescing_type { - HUB_DISCONNECT = 0, - HUB_PRE_RESET = 1, - HUB_SUSPEND = 2, -}; - -union ata_cdb { - struct { - unsigned char SignatureByte0; - unsigned char SignatureByte1; - unsigned char ActionSelect; - unsigned char RegisterSelect; - unsigned char TransferBlockSize; - unsigned char WriteData3F6; - unsigned char WriteData1F1; - unsigned char WriteData1F2; - unsigned char WriteData1F3; - unsigned char WriteData1F4; - unsigned char WriteData1F5; - unsigned char WriteData1F6; - unsigned char WriteData1F7; - unsigned char Reserved[3]; - } generic; - struct { - unsigned char SignatureByte0; - unsigned char SignatureByte1; - unsigned char ActionSelect; - unsigned char RegisterSelect; - unsigned char TransferBlockSize; - unsigned char AlternateStatusByte; - unsigned char ErrorByte; - unsigned char SectorCountByte; - unsigned char SectorNumberByte; - unsigned char CylinderLowByte; - unsigned char CylinderHighByte; - unsigned char DeviceHeadByte; - unsigned char StatusByte; - unsigned char Reserved[3]; - } read; - struct { - unsigned char SignatureByte0; - unsigned char SignatureByte1; - unsigned char ActionSelect; - unsigned char RegisterSelect; - unsigned char TransferBlockSize; - unsigned char DeviceControlByte; - unsigned char FeaturesByte; - unsigned char SectorCountByte; - unsigned char SectorNumberByte; - unsigned char CylinderLowByte; - unsigned char CylinderHighByte; - unsigned char DeviceHeadByte; - unsigned char CommandByte; - unsigned char Reserved[3]; - } write; -}; - -struct inquiry_data { - unsigned char DeviceType; - unsigned char DeviceTypeModifier; - unsigned char Versions; - unsigned char Format; - unsigned char AdditionalLength; - unsigned char Reserved[2]; - unsigned char Capability; - unsigned char VendorId[8]; - unsigned char ProductId[16]; - unsigned char ProductRevisionLevel[4]; - unsigned char VendorSpecific[20]; - unsigned char Reserved3[40]; -}; - -struct isd200_config { - unsigned char EventNotification; - unsigned char ExternalClock; - unsigned char ATAInitTimeout; - unsigned char ATAConfig; - unsigned char ATAMajorCommand; - unsigned char ATAMinorCommand; - unsigned char ATAExtraConfig; - unsigned char Capability; -}; - -struct isd200_info { - struct inquiry_data InquiryData; - u16 *id; - struct isd200_config ConfigData; - unsigned char *RegsBuf; - unsigned char ATARegs[8]; - unsigned char DeviceHead; - unsigned char DeviceFlags; - unsigned char MaxLUNs; - unsigned char cmnd[16]; - struct scsi_cmnd srb; - struct scatterlist sg; -}; - -struct read_capacity_data { - __be32 LogicalBlockAddress; - __be32 BytesPerBlock; -}; - -struct sense_data { - unsigned char ErrorCode; - unsigned char SegmentNumber; - unsigned char Flags; - unsigned char Information[4]; - unsigned char AdditionalSenseLength; - unsigned char CommandSpecificInformation[4]; - unsigned char AdditionalSenseCode; - unsigned char AdditionalSenseCodeQualifier; - unsigned char FieldReplaceableUnitCode; - unsigned char SenseKeySpecific[3]; -}; - -struct belkin_sa_private { - spinlock_t lock; - long unsigned int control_state; - unsigned char last_lsr; - unsigned char last_msr; - int bad_flow_control; -}; - -struct keyspan_device_details { - int product_id; - enum { - msg_usa26 = 0, - msg_usa28 = 1, - msg_usa49 = 2, - msg_usa90 = 3, - msg_usa67 = 4, - } msg_format; - int num_ports; - int indat_endp_flip; - int outdat_endp_flip; - int indat_endpoints[4]; - int outdat_endpoints[4]; - int inack_endpoints[4]; - int outcont_endpoints[4]; - int instat_endpoint; - int indat_endpoint; - int glocont_endpoint; - int (*calculate_baud_rate)(struct usb_serial_port *, u32, u32, u8 *, u8 *, u8 *, int); - u32 baudclk; -}; - -struct keyspan_serial_private { - const struct keyspan_device_details *device_details; - struct urb *instat_urb; - char *instat_buf; - struct urb *indat_urb; - char *indat_buf; - struct urb *glocont_urb; - char *glocont_buf; - char *ctrl_buf; -}; - -struct keyspan_port_private { - int in_flip; - int out_flip; - const struct keyspan_device_details *device_details; - struct urb *in_urbs[2]; - char *in_buffer[2]; - struct urb *out_urbs[2]; - char *out_buffer[2]; - struct urb *inack_urb; - char *inack_buffer; - struct urb *outcont_urb; - char *outcont_buffer; - int baud; - int old_baud; - unsigned int cflag; - unsigned int old_cflag; - enum { - flow_none = 0, - flow_cts = 1, - flow_xon = 2, - } flow_control; - int rts_state; - int dtr_state; - int cts_state; - int dsr_state; - int dcd_state; - int ri_state; - int break_on; - long unsigned int tx_start_time[2]; - int resend_cont; -}; - -struct keyspan_usa26_portControlMessage { - u8 setClocking; - u8 baudLo; - u8 baudHi; - u8 externalClock_txClocking; - u8 rxClocking; - u8 setLcr; - u8 lcr; - u8 setFlowControl; - u8 ctsFlowControl; - u8 xonFlowControl; - u8 xonChar; - u8 xoffChar; - u8 setTxTriState_setRts; - u8 txTriState_rts; - u8 setHskoa_setDtr; - u8 hskoa_dtr; - u8 setPrescaler; - u8 prescaler; - u8 forwardingLength; - u8 reportHskiaChanges_dsrFlowControl; - u8 txAckThreshold; - u8 loopbackMode; - u8 _txOn; - u8 _txOff; - u8 txFlush; - u8 txBreak; - u8 rxOn; - u8 rxOff; - u8 rxFlush; - u8 rxForward; - u8 returnStatus; - u8 resetDataToggle; -}; - -struct keyspan_usa26_portStatusMessage { - u8 port; - u8 hskia_cts; - u8 gpia_dcd; - u8 dsr; - u8 ri; - u8 _txOff; - u8 _txXoff; - u8 rxEnabled; - u8 controlResponse; -}; - -struct keyspan_usa28_portControlMessage { - u8 setBaudRate; - u8 baudLo; - u8 baudHi; - u8 parity; - u8 ctsFlowControl; - u8 xonFlowControl; - u8 rts; - u8 dtr; - u8 forwardingLength; - u8 forwardMs; - u8 breakThreshold; - u8 xonChar; - u8 xoffChar; - u8 _txOn; - u8 _txOff; - u8 txFlush; - u8 txForceXoff; - u8 txBreak; - u8 rxOn; - u8 rxOff; - u8 rxFlush; - u8 rxForward; - u8 returnStatus; - u8 resetDataToggle; -}; - -struct keyspan_usa28_portStatusMessage { - u8 port; - u8 cts; - u8 dsr; - u8 dcd; - u8 ri; - u8 _txOff; - u8 _txXoff; - u8 dataLost; - u8 rxEnabled; - u8 rxBreak; - u8 rs232invalid; - u8 controlResponse; -}; - -struct keyspan_usa49_portControlMessage { - u8 portNumber; - u8 setClocking; - u8 baudLo; - u8 baudHi; - u8 prescaler; - u8 txClocking; - u8 rxClocking; - u8 setLcr; - u8 lcr; - u8 setFlowControl; - u8 ctsFlowControl; - u8 xonFlowControl; - u8 xonChar; - u8 xoffChar; - u8 setRts; - u8 rts; - u8 setDtr; - u8 dtr; - u8 forwardingLength; - u8 dsrFlowControl; - u8 txAckThreshold; - u8 loopbackMode; - u8 _txOn; - u8 _txOff; - u8 txFlush; - u8 txBreak; - u8 rxOn; - u8 rxOff; - u8 rxFlush; - u8 rxForward; - u8 returnStatus; - u8 resetDataToggle; - u8 enablePort; - u8 disablePort; -}; - -struct keyspan_usa49_portStatusMessage { - u8 portNumber; - u8 cts; - u8 dcd; - u8 dsr; - u8 ri; - u8 _txOff; - u8 _txXoff; - u8 rxEnabled; - u8 controlResponse; - u8 txAck; - u8 rs232valid; -}; - -struct keyspan_usa90_portControlMessage { - u8 setClocking; - u8 baudLo; - u8 baudHi; - u8 setLcr; - u8 lcr; - u8 setRxMode; - u8 rxMode; - u8 setTxMode; - u8 txMode; - u8 setTxFlowControl; - u8 txFlowControl; - u8 setRxFlowControl; - u8 rxFlowControl; - u8 sendXoff; - u8 sendXon; - u8 xonChar; - u8 xoffChar; - u8 sendChar; - u8 txChar; - u8 setRts; - u8 rts; - u8 setDtr; - u8 dtr; - u8 rxForwardingLength; - u8 rxForwardingTimeout; - u8 txAckSetting; - u8 portEnabled; - u8 txFlush; - u8 txBreak; - u8 loopbackMode; - u8 rxFlush; - u8 rxForward; - u8 cancelRxXoff; - u8 returnStatus; -}; - -struct keyspan_usa90_portStatusMessage { - u8 msr; - u8 cts; - u8 dcd; - u8 dsr; - u8 ri; - u8 _txXoff; - u8 rxBreak; - u8 rxOverrun; - u8 rxParity; - u8 rxFrame; - u8 portState; - u8 messageAck; - u8 charAck; - u8 controlResponse; -}; - -struct keyspan_usa67_portControlMessage { - u8 port; - u8 setClocking; - u8 baudLo; - u8 baudHi; - u8 externalClock_txClocking; - u8 setLcr; - u8 lcr; - u8 setFlowControl; - u8 ctsFlowControl; - u8 xonFlowControl; - u8 xonChar; - u8 xoffChar; - u8 setTxTriState_setRts; - u8 txTriState_rts; - u8 setHskoa_setDtr; - u8 hskoa_dtr; - u8 setPrescaler; - u8 prescaler; - u8 forwardingLength; - u8 reportHskiaChanges_dsrFlowControl; - u8 txAckThreshold; - u8 loopbackMode; - u8 _txOn; - u8 _txOff; - u8 txFlush; - u8 txBreak; - u8 rxOn; - u8 rxOff; - u8 rxFlush; - u8 rxForward; - u8 returnStatus; - u8 resetDataToggle; -}; - -struct keyspan_usa67_portStatusMessage { - u8 port; - u8 hskia_cts; - u8 gpia_dcd; - u8 _txOff; - u8 _txXoff; - u8 txAck; - u8 rxEnabled; - u8 controlResponse; -}; - -struct callbacks { - void (*instat_callback)(struct urb *); - void (*glocont_callback)(struct urb *); - void (*indat_callback)(struct urb *); - void (*outdat_callback)(struct urb *); - void (*inack_callback)(struct urb *); - void (*outcont_callback)(struct urb *); -}; - -enum qcserial_layouts { - QCSERIAL_G2K = 0, - QCSERIAL_G1K = 1, - QCSERIAL_SWI = 2, - QCSERIAL_HWI = 3, -}; - -enum serio_event_type { - SERIO_RESCAN_PORT = 0, - SERIO_RECONNECT_PORT = 1, - SERIO_RECONNECT_SUBTREE = 2, - SERIO_REGISTER_PORT = 3, - SERIO_ATTACH_DRIVER = 4, -}; - -struct serio_event { - enum serio_event_type type; - void *object; - struct module *owner; - struct list_head node; -}; - -struct i2c_smbus_alert { - struct work_struct alert; - struct i2c_client *ara; -}; - -struct alert_data { - short unsigned int addr; - enum i2c_alert_protocol type; - unsigned int data; -}; - -struct cpuidle_state_kobj { - struct cpuidle_state *state; - struct cpuidle_state_usage *state_usage; - struct completion kobj_unregister; - struct kobject kobj; - struct cpuidle_device *device; -}; - -struct cpuidle_driver_kobj { - struct cpuidle_driver *drv; - struct completion kobj_unregister; - struct kobject kobj; -}; - -struct cpuidle_device_kobj { - struct cpuidle_device *dev; - struct completion kobj_unregister; - struct kobject kobj; -}; - -struct cpuidle_attr { - struct attribute attr; - ssize_t (*show)(struct cpuidle_device *, char *); - ssize_t (*store)(struct cpuidle_device *, const char *, size_t); -}; - -struct cpuidle_state_attr { - struct attribute attr; - ssize_t (*show)(struct cpuidle_state *, struct cpuidle_state_usage *, char *); - ssize_t (*store)(struct cpuidle_state *, struct cpuidle_state_usage *, const char *, size_t); -}; - -struct cpuidle_driver_attr { - struct attribute attr; - ssize_t (*show)(struct cpuidle_driver *, char *); - ssize_t (*store)(struct cpuidle_driver *, const char *, size_t); -}; - -struct mmc_gpio { - struct gpio_desc *ro_gpio; - struct gpio_desc *cd_gpio; - irq_handler_t cd_gpio_isr; - char *ro_label; - char *cd_label; - u32 cd_debounce_delay_ms; - int cd_irq; -}; - -struct vhost_vring_state { - unsigned int index; - unsigned int num; -}; - -struct vhost_vring_addr { - unsigned int index; - unsigned int flags; - __u64 desc_user_addr; - __u64 used_user_addr; - __u64 avail_user_addr; - __u64 log_guest_addr; -}; - -struct vhost_worker_state { - unsigned int worker_id; -}; - -struct vhost_vring_worker { - unsigned int index; - unsigned int worker_id; -}; - -struct vhost_msg { - int type; - union { - struct vhost_iotlb_msg iotlb; - __u8 padding[64]; - }; -}; - -struct vhost_msg_v2 { - __u32 type; - __u32 asid; - union { - struct vhost_iotlb_msg iotlb; - __u8 padding[64]; - }; -}; - -struct vhost_memory_region { - __u64 guest_phys_addr; - __u64 memory_size; - __u64 userspace_addr; - __u64 flags_padding; -}; - -struct vhost_memory { - __u32 nregions; - __u32 padding; - struct vhost_memory_region regions[0]; -}; - -struct vhost_msg_node { - union { - struct vhost_msg msg; - struct vhost_msg_v2 msg_v2; - }; - struct vhost_virtqueue *vq; - struct list_head node; -}; - -struct vhost_flush_struct { - struct vhost_work work; - struct completion wait_event; -}; - -struct vhost_attach_cgroups_struct { - struct vhost_work work; - struct task_struct *owner; - int ret; -}; - -struct tc_police { - __u32 index; - int action; - __u32 limit; - __u32 burst; - __u32 mtu; - struct tc_ratespec rate; - struct tc_ratespec peakrate; - int refcnt; - int bindcnt; - __u32 capab; -}; - -enum { - TCA_POLICE_UNSPEC = 0, - TCA_POLICE_TBF = 1, - TCA_POLICE_RATE = 2, - TCA_POLICE_PEAKRATE = 3, - TCA_POLICE_AVRATE = 4, - TCA_POLICE_RESULT = 5, - TCA_POLICE_TM = 6, - TCA_POLICE_PAD = 7, - TCA_POLICE_RATE64 = 8, - TCA_POLICE_PEAKRATE64 = 9, - TCA_POLICE_PKTRATE64 = 10, - TCA_POLICE_PKTBURST64 = 11, - __TCA_POLICE_MAX = 12, -}; - -struct tcf_police_params { - int tcfp_result; - u32 tcfp_ewma_rate; - s64 tcfp_burst; - u32 tcfp_mtu; - s64 tcfp_mtu_ptoks; - s64 tcfp_pkt_burst; - struct psched_ratecfg rate; - bool rate_present; - struct psched_ratecfg peak; - bool peak_present; - struct psched_pktrate ppsrate; - bool pps_present; - struct callback_head rcu; -}; - -struct tcf_police { - struct tc_action common; - struct tcf_police_params *params; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - spinlock_t tcfp_lock; - s64 tcfp_toks; - s64 tcfp_ptoks; - s64 tcfp_pkttoks; - s64 tcfp_t_c; - long: 64; - long: 64; - long: 64; -}; - -enum { - TC_FP_EXPRESS = 1, - TC_FP_PREEMPTIBLE = 2, -}; - -struct tc_mqprio_qopt { - __u8 num_tc; - __u8 prio_tc_map[16]; - __u8 hw; - __u16 count[16]; - __u16 offset[16]; -}; - -struct tc_mqprio_qopt_offload { - struct tc_mqprio_qopt qopt; - struct netlink_ext_ack *extack; - u16 mode; - u16 shaper; - u32 flags; - u64 min_rate[16]; - u64 max_rate[16]; - long unsigned int preemptible_tcs; -}; - -struct tc_matchall_pcnt { - __u64 rhit; -}; - -enum { - TCA_MATCHALL_UNSPEC = 0, - TCA_MATCHALL_CLASSID = 1, - TCA_MATCHALL_ACT = 2, - TCA_MATCHALL_FLAGS = 3, - TCA_MATCHALL_PCNT = 4, - TCA_MATCHALL_PAD = 5, - __TCA_MATCHALL_MAX = 6, -}; - -enum tc_matchall_command { - TC_CLSMATCHALL_REPLACE = 0, - TC_CLSMATCHALL_DESTROY = 1, - TC_CLSMATCHALL_STATS = 2, -}; - -struct tc_cls_matchall_offload { - struct flow_cls_common_offload common; - enum tc_matchall_command command; - struct flow_rule *rule; - struct flow_stats stats; - bool use_act_stats; - long unsigned int cookie; -}; - -struct cls_mall_head { - struct tcf_exts exts; - struct tcf_result res; - u32 handle; - u32 flags; - unsigned int in_hw_count; - struct tc_matchall_pcnt *pf; - struct rcu_work rwork; - bool deleting; -}; - -enum ethtool_supported_ring_param { - ETHTOOL_RING_USE_RX_BUF_LEN = 1, - ETHTOOL_RING_USE_CQE_SIZE = 2, - ETHTOOL_RING_USE_TX_PUSH = 4, - ETHTOOL_RING_USE_RX_PUSH = 8, - ETHTOOL_RING_USE_TX_PUSH_BUF_LEN = 16, - ETHTOOL_RING_USE_TCP_DATA_SPLIT = 32, -}; - -enum { - ETHTOOL_TCP_DATA_SPLIT_UNKNOWN = 0, - ETHTOOL_TCP_DATA_SPLIT_DISABLED = 1, - ETHTOOL_TCP_DATA_SPLIT_ENABLED = 2, -}; - -struct rings_reply_data { - struct ethnl_reply_data base; - struct ethtool_ringparam ringparam; - struct kernel_ethtool_ringparam kernel_ringparam; - u32 supported_ring_params; -}; - -enum { - ETHTOOL_A_MM_STAT_UNSPEC = 0, - ETHTOOL_A_MM_STAT_PAD = 1, - ETHTOOL_A_MM_STAT_REASSEMBLY_ERRORS = 2, - ETHTOOL_A_MM_STAT_SMD_ERRORS = 3, - ETHTOOL_A_MM_STAT_REASSEMBLY_OK = 4, - ETHTOOL_A_MM_STAT_RX_FRAG_COUNT = 5, - ETHTOOL_A_MM_STAT_TX_FRAG_COUNT = 6, - ETHTOOL_A_MM_STAT_HOLD_COUNT = 7, - __ETHTOOL_A_MM_STAT_CNT = 8, - ETHTOOL_A_MM_STAT_MAX = 7, -}; - -struct mm_reply_data { - struct ethnl_reply_data base; - struct ethtool_mm_state state; - struct ethtool_mm_stats stats; -}; - -enum nfqnl_msg_types { - NFQNL_MSG_PACKET = 0, - NFQNL_MSG_VERDICT = 1, - NFQNL_MSG_CONFIG = 2, - NFQNL_MSG_VERDICT_BATCH = 3, - NFQNL_MSG_MAX = 4, -}; - -struct nfqnl_msg_packet_hdr { - __be32 packet_id; - __be16 hw_protocol; - __u8 hook; -} __attribute__((packed)); - -struct nfqnl_msg_packet_hw { - __be16 hw_addrlen; - __u16 _pad; - __u8 hw_addr[8]; -}; - -struct nfqnl_msg_packet_timestamp { - __be64 sec; - __be64 usec; -}; - -enum nfqnl_vlan_attr { - NFQA_VLAN_UNSPEC = 0, - NFQA_VLAN_PROTO = 1, - NFQA_VLAN_TCI = 2, - __NFQA_VLAN_MAX = 3, -}; - -enum nfqnl_attr_type { - NFQA_UNSPEC = 0, - NFQA_PACKET_HDR = 1, - NFQA_VERDICT_HDR = 2, - NFQA_MARK = 3, - NFQA_TIMESTAMP = 4, - NFQA_IFINDEX_INDEV = 5, - NFQA_IFINDEX_OUTDEV = 6, - NFQA_IFINDEX_PHYSINDEV = 7, - NFQA_IFINDEX_PHYSOUTDEV = 8, - NFQA_HWADDR = 9, - NFQA_PAYLOAD = 10, - NFQA_CT = 11, - NFQA_CT_INFO = 12, - NFQA_CAP_LEN = 13, - NFQA_SKB_INFO = 14, - NFQA_EXP = 15, - NFQA_UID = 16, - NFQA_GID = 17, - NFQA_SECCTX = 18, - NFQA_VLAN = 19, - NFQA_L2HDR = 20, - NFQA_PRIORITY = 21, - NFQA_CGROUP_CLASSID = 22, - __NFQA_MAX = 23, -}; - -struct nfqnl_msg_verdict_hdr { - __be32 verdict; - __be32 id; -}; - -enum nfqnl_msg_config_cmds { - NFQNL_CFG_CMD_NONE = 0, - NFQNL_CFG_CMD_BIND = 1, - NFQNL_CFG_CMD_UNBIND = 2, - NFQNL_CFG_CMD_PF_BIND = 3, - NFQNL_CFG_CMD_PF_UNBIND = 4, -}; - -struct nfqnl_msg_config_cmd { - __u8 command; - __u8 _pad; - __be16 pf; -}; - -enum nfqnl_config_mode { - NFQNL_COPY_NONE = 0, - NFQNL_COPY_META = 1, - NFQNL_COPY_PACKET = 2, -}; - -struct nfqnl_msg_config_params { - __be32 copy_range; - __u8 copy_mode; -} __attribute__((packed)); - -enum nfqnl_attr_config { - NFQA_CFG_UNSPEC = 0, - NFQA_CFG_CMD = 1, - NFQA_CFG_PARAMS = 2, - NFQA_CFG_QUEUE_MAXLEN = 3, - NFQA_CFG_MASK = 4, - NFQA_CFG_FLAGS = 5, - __NFQA_CFG_MAX = 6, -}; - -struct nfqnl_instance { - struct hlist_node hlist; - struct callback_head rcu; - u32 peer_portid; - unsigned int queue_maxlen; - unsigned int copy_range; - unsigned int queue_dropped; - unsigned int queue_user_dropped; - u_int16_t queue_num; - u_int8_t copy_mode; - u_int32_t flags; - long: 0; - spinlock_t lock; - unsigned int queue_total; - unsigned int id_sequence; - struct list_head queue_list; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -typedef int (*nfqnl_cmpfn)(struct nf_queue_entry *, long unsigned int); - -struct nfnl_queue_net { - spinlock_t instances_lock; - struct hlist_head instance_table[16]; -}; - -struct nf_nat_lookup_hook_priv { - struct nf_hook_entries *entries; - struct callback_head callback_head; -}; - -struct nf_nat_hooks_net { - struct nf_hook_ops *nat_hook_ops; - unsigned int users; -}; - -struct nat_net { - struct nf_nat_hooks_net nat_proto_net[11]; -}; - -struct nf_nat_proto_clean { - u8 l3proto; - u8 l4proto; -}; - -enum ctattr_nat { - CTA_NAT_UNSPEC = 0, - CTA_NAT_V4_MINIP = 1, - CTA_NAT_V4_MAXIP = 2, - CTA_NAT_PROTO = 3, - CTA_NAT_V6_MINIP = 4, - CTA_NAT_V6_MAXIP = 5, - __CTA_NAT_MAX = 6, -}; - -enum ctattr_protonat { - CTA_PROTONAT_UNSPEC = 0, - CTA_PROTONAT_PORT_MIN = 1, - CTA_PROTONAT_PORT_MAX = 2, - __CTA_PROTONAT_MAX = 3, -}; - -enum nft_payload_csum_types { - NFT_PAYLOAD_CSUM_NONE = 0, - NFT_PAYLOAD_CSUM_INET = 1, - NFT_PAYLOAD_CSUM_SCTP = 2, -}; - -enum nft_payload_csum_flags { - NFT_PAYLOAD_L4CSUM_PSEUDOHDR = 1, -}; - -enum nft_payload_attributes { - NFTA_PAYLOAD_UNSPEC = 0, - NFTA_PAYLOAD_DREG = 1, - NFTA_PAYLOAD_BASE = 2, - NFTA_PAYLOAD_OFFSET = 3, - NFTA_PAYLOAD_LEN = 4, - NFTA_PAYLOAD_SREG = 5, - NFTA_PAYLOAD_CSUM_TYPE = 6, - NFTA_PAYLOAD_CSUM_OFFSET = 7, - NFTA_PAYLOAD_CSUM_FLAGS = 8, - __NFTA_PAYLOAD_MAX = 9, -}; - -struct nft_payload_set { - enum nft_payload_bases base: 8; - u8 offset; - u8 len; - u8 sreg; - u8 csum_type; - u8 csum_offset; - u8 csum_flags; -}; - -struct nft_payload_vlan_hdr { - __be16 h_vlan_proto; - __be16 h_vlan_TCI; -}; - -enum nft_nat_types { - NFT_NAT_SNAT = 0, - NFT_NAT_DNAT = 1, -}; - -enum nft_nat_attributes { - NFTA_NAT_UNSPEC = 0, - NFTA_NAT_TYPE = 1, - NFTA_NAT_FAMILY = 2, - NFTA_NAT_REG_ADDR_MIN = 3, - NFTA_NAT_REG_ADDR_MAX = 4, - NFTA_NAT_REG_PROTO_MIN = 5, - NFTA_NAT_REG_PROTO_MAX = 6, - NFTA_NAT_FLAGS = 7, - __NFTA_NAT_MAX = 8, -}; - -struct nft_nat { - u8 sreg_addr_min; - u8 sreg_addr_max; - u8 sreg_proto_min; - u8 sreg_proto_max; - enum nf_nat_manip_type type: 8; - u8 family; - u16 flags; -}; - -enum { - XT_CONNMARK_SET = 0, - XT_CONNMARK_SAVE = 1, - XT_CONNMARK_RESTORE = 2, -}; - -enum { - D_SHIFT_LEFT = 0, - D_SHIFT_RIGHT = 1, -}; - -struct xt_connmark_tginfo1 { - __u32 ctmark; - __u32 ctmask; - __u32 nfmask; - __u8 mode; -}; - -struct xt_connmark_tginfo2 { - __u32 ctmark; - __u32 ctmask; - __u32 nfmask; - __u8 shift_dir; - __u8 shift_bits; - __u8 mode; -}; - -struct xt_connmark_mtinfo1 { - __u32 mark; - __u32 mask; - __u8 invert; -}; - -enum xt_connbytes_what { - XT_CONNBYTES_PKTS = 0, - XT_CONNBYTES_BYTES = 1, - XT_CONNBYTES_AVGPKT = 2, -}; - -enum xt_connbytes_direction { - XT_CONNBYTES_DIR_ORIGINAL = 0, - XT_CONNBYTES_DIR_REPLY = 1, - XT_CONNBYTES_DIR_BOTH = 2, -}; - -struct xt_connbytes_info { - struct { - __u64 from; - __u64 to; - } count; - __u8 what; - __u8 direction; -}; - -enum { - IPT_TTL_EQ = 0, - IPT_TTL_NE = 1, - IPT_TTL_LT = 2, - IPT_TTL_GT = 3, -}; - -struct ipt_ttl_info { - __u8 mode; - __u8 ttl; -}; - -enum { - IP6T_HL_EQ = 0, - IP6T_HL_NE = 1, - IP6T_HL_LT = 2, - IP6T_HL_GT = 3, -}; - -struct ip6t_hl_info { - __u8 mode; - __u8 hop_limit; -}; - -struct xt_state_info { - unsigned int statemask; -}; - -struct icmp_ext_hdr { - __u8 reserved1: 4; - __u8 version: 4; - __u8 reserved2; - __sum16 checksum; -}; - -struct icmp_extobj_hdr { - __be16 length; - __u8 class_num; - __u8 class_type; -}; - -struct icmp_ext_echo_ctype3_hdr { - __be16 afi; - __u8 addrlen; - __u8 reserved; -}; - -struct icmp_ext_echo_iio { - struct icmp_extobj_hdr extobj_hdr; - union { - char name[16]; - __be32 ifindex; - struct { - struct icmp_ext_echo_ctype3_hdr ctype3_hdr; - union { - __be32 ipv4_addr; - struct in6_addr ipv6_addr; - } ip_addr; - } addr; - } ident; -}; - -struct trace_event_raw_icmp_send { - struct trace_entry ent; - const void *skbaddr; - int type; - int code; - __u8 saddr[4]; - __u8 daddr[4]; - __u16 sport; - __u16 dport; - short unsigned int ulen; - char __data[0]; -}; - -struct trace_event_data_offsets_icmp_send {}; - -typedef void (*btf_trace_icmp_send)(void *, const struct sk_buff *, int, int); - -struct icmp_bxm { - struct sk_buff *skb; - int offset; - int data_len; - struct { - struct icmphdr icmph; - __be32 times[3]; - } data; - int head_len; - struct ip_options_data replyopts; -}; - -struct icmp_control { - enum skb_drop_reason (*handler)(struct sk_buff *); - short int error; -}; - -enum { - XT_RPFILTER_LOOSE = 1, - XT_RPFILTER_VALID_MARK = 2, - XT_RPFILTER_ACCEPT_LOCAL = 4, - XT_RPFILTER_INVERT = 8, - XT_RPFILTER_OPTION_MASK = 15, -}; - -struct xt_rpfilter_info { - __u8 flags; -}; - -enum { - INET_ULP_INFO_UNSPEC = 0, - INET_ULP_INFO_NAME = 1, - INET_ULP_INFO_TLS = 2, - INET_ULP_INFO_MPTCP = 3, - __INET_ULP_INFO_MAX = 4, -}; - -struct xfrm_trans_tasklet { - struct work_struct work; - spinlock_t queue_lock; - struct sk_buff_head queue; -}; - -struct xfrm_trans_cb { - union { - struct inet_skb_parm h4; - struct inet6_skb_parm h6; - } header; - int (*finish)(struct net *, struct sock *, struct sk_buff *); - struct net *net; -}; - -struct ioam6_hdr { - __u8 opt_type; - __u8 opt_len; - char: 8; - __u8 type; -}; - -struct ip6t_mh { - __u8 types[2]; - __u8 invflags; -}; - -struct ebt_vlan_info { - __u16 id; - __u8 prio; - __be16 encap; - __u8 bitmask; - __u8 invflags; -}; - -struct sctp_prinfo { - __u16 pr_policy; - __u32 pr_value; -}; - -struct sctp_authinfo { - __u16 auth_keynumber; -}; - -struct sctp_event_subscribe { - __u8 sctp_data_io_event; - __u8 sctp_association_event; - __u8 sctp_address_event; - __u8 sctp_send_failure_event; - __u8 sctp_peer_error_event; - __u8 sctp_shutdown_event; - __u8 sctp_partial_delivery_event; - __u8 sctp_adaptation_layer_event; - __u8 sctp_authentication_event; - __u8 sctp_sender_dry_event; - __u8 sctp_stream_reset_event; - __u8 sctp_assoc_reset_event; - __u8 sctp_stream_change_event; - __u8 sctp_send_failure_event_event; -}; - -struct sctp_setpeerprim { - sctp_assoc_t sspp_assoc_id; - struct __kernel_sockaddr_storage sspp_addr; -} __attribute__((packed)); - -struct sctp_prim { - sctp_assoc_t ssp_assoc_id; - struct __kernel_sockaddr_storage ssp_addr; -} __attribute__((packed)); - -struct sctp_setadaptation { - __u32 ssb_adaptation_ind; -}; - -struct sctp_authchunk { - __u8 sauth_chunk; -}; - -struct sctp_authkeyid { - sctp_assoc_t scact_assoc_id; - __u16 scact_keynumber; -}; - -struct sctp_sack_info { - sctp_assoc_t sack_assoc_id; - uint32_t sack_delay; - uint32_t sack_freq; -}; - -struct sctp_assoc_value { - sctp_assoc_t assoc_id; - uint32_t assoc_value; -}; - -struct sctp_stream_value { - sctp_assoc_t assoc_id; - uint16_t stream_id; - uint16_t stream_value; -}; - -struct sctp_paddrinfo { - sctp_assoc_t spinfo_assoc_id; - struct __kernel_sockaddr_storage spinfo_address; - __s32 spinfo_state; - __u32 spinfo_cwnd; - __u32 spinfo_srtt; - __u32 spinfo_rto; - __u32 spinfo_mtu; -} __attribute__((packed)); - -struct sctp_status { - sctp_assoc_t sstat_assoc_id; - __s32 sstat_state; - __u32 sstat_rwnd; - __u16 sstat_unackdata; - __u16 sstat_penddata; - __u16 sstat_instrms; - __u16 sstat_outstrms; - __u32 sstat_fragmentation_point; - struct sctp_paddrinfo sstat_primary; -}; - -struct sctp_authchunks { - sctp_assoc_t gauth_assoc_id; - __u32 gauth_number_of_chunks; - uint8_t gauth_chunks[0]; -}; - -enum sctp_sstat_state { - SCTP_EMPTY = 0, - SCTP_CLOSED = 1, - SCTP_COOKIE_WAIT = 2, - SCTP_COOKIE_ECHOED = 3, - SCTP_ESTABLISHED = 4, - SCTP_SHUTDOWN_PENDING = 5, - SCTP_SHUTDOWN_SENT = 6, - SCTP_SHUTDOWN_RECEIVED = 7, - SCTP_SHUTDOWN_ACK_SENT = 8, -}; - -struct sctp_assoc_ids { - __u32 gaids_number_of_ids; - sctp_assoc_t gaids_assoc_id[0]; -}; - -struct sctp_getaddrs_old { - sctp_assoc_t assoc_id; - int addr_num; - struct sockaddr *addrs; -}; - -struct sctp_getaddrs { - sctp_assoc_t assoc_id; - __u32 addr_num; - __u8 addrs[0]; -}; - -struct sctp_assoc_stats { - sctp_assoc_t sas_assoc_id; - struct __kernel_sockaddr_storage sas_obs_rto_ipaddr; - __u64 sas_maxrto; - __u64 sas_isacks; - __u64 sas_osacks; - __u64 sas_opackets; - __u64 sas_ipackets; - __u64 sas_rtxchunks; - __u64 sas_outofseqtsns; - __u64 sas_idupchunks; - __u64 sas_gapcnt; - __u64 sas_ouodchunks; - __u64 sas_iuodchunks; - __u64 sas_oodchunks; - __u64 sas_iodchunks; - __u64 sas_octrlchunks; - __u64 sas_ictrlchunks; -}; - -typedef struct { - sctp_assoc_t associd; - int sd; -} sctp_peeloff_arg_t; - -typedef struct { - sctp_peeloff_arg_t p_arg; - unsigned int flags; -} sctp_peeloff_flags_arg_t; - -struct sctp_paddrthlds_v2 { - sctp_assoc_t spt_assoc_id; - struct __kernel_sockaddr_storage spt_address; - __u16 spt_pathmaxrxt; - __u16 spt_pathpfthld; - __u16 spt_pathcpthld; -}; - -struct sctp_prstatus { - sctp_assoc_t sprstat_assoc_id; - __u16 sprstat_sid; - __u16 sprstat_policy; - __u64 sprstat_abandoned_unsent; - __u64 sprstat_abandoned_sent; -}; - -struct sctp_default_prinfo { - sctp_assoc_t pr_assoc_id; - __u32 pr_value; - __u16 pr_policy; -}; - -struct sctp_info { - __u32 sctpi_tag; - __u32 sctpi_state; - __u32 sctpi_rwnd; - __u16 sctpi_unackdata; - __u16 sctpi_penddata; - __u16 sctpi_instrms; - __u16 sctpi_outstrms; - __u32 sctpi_fragmentation_point; - __u32 sctpi_inqueue; - __u32 sctpi_outqueue; - __u32 sctpi_overall_error; - __u32 sctpi_max_burst; - __u32 sctpi_maxseg; - __u32 sctpi_peer_rwnd; - __u32 sctpi_peer_tag; - __u8 sctpi_peer_capable; - __u8 sctpi_peer_sack; - __u16 __reserved1; - __u64 sctpi_isacks; - __u64 sctpi_osacks; - __u64 sctpi_opackets; - __u64 sctpi_ipackets; - __u64 sctpi_rtxchunks; - __u64 sctpi_outofseqtsns; - __u64 sctpi_idupchunks; - __u64 sctpi_gapcnt; - __u64 sctpi_ouodchunks; - __u64 sctpi_iuodchunks; - __u64 sctpi_oodchunks; - __u64 sctpi_iodchunks; - __u64 sctpi_octrlchunks; - __u64 sctpi_ictrlchunks; - struct __kernel_sockaddr_storage sctpi_p_address; - __s32 sctpi_p_state; - __u32 sctpi_p_cwnd; - __u32 sctpi_p_srtt; - __u32 sctpi_p_rto; - __u32 sctpi_p_hbinterval; - __u32 sctpi_p_pathmaxrxt; - __u32 sctpi_p_sackdelay; - __u32 sctpi_p_sackfreq; - __u32 sctpi_p_ssthresh; - __u32 sctpi_p_partial_bytes_acked; - __u32 sctpi_p_flight_size; - __u16 sctpi_p_error; - __u16 __reserved2; - __u32 sctpi_s_autoclose; - __u32 sctpi_s_adaptation_ind; - __u32 sctpi_s_pd_point; - __u8 sctpi_s_nodelay; - __u8 sctpi_s_disable_fragments; - __u8 sctpi_s_v4mapped; - __u8 sctpi_s_frag_interleave; - __u32 sctpi_s_type; - __u32 __reserved3; -}; - -struct sctp_event { - sctp_assoc_t se_assoc_id; - uint16_t se_type; - uint8_t se_on; -}; - -struct sctp_udpencaps { - sctp_assoc_t sue_assoc_id; - struct __kernel_sockaddr_storage sue_address; - uint16_t sue_port; -}; - -struct sctp_probeinterval { - sctp_assoc_t spi_assoc_id; - struct __kernel_sockaddr_storage spi_address; - __u32 spi_interval; -}; - -struct sctp_cmsgs { - struct sctp_initmsg *init; - struct sctp_sndrcvinfo *srinfo; - struct sctp_sndinfo *sinfo; - struct sctp_prinfo *prinfo; - struct sctp_authinfo *authinfo; - struct msghdr *addrs_msg; -}; - -typedef int (*sctp_callback_t)(struct sctp_endpoint *, struct sctp_transport *, void *); - -enum ovs_vport_upcall_attr { - OVS_VPORT_UPCALL_ATTR_SUCCESS = 0, - OVS_VPORT_UPCALL_ATTR_FAIL = 1, - __OVS_VPORT_UPCALL_ATTR_MAX = 2, -}; - -struct vsock_diag_req { - __u8 sdiag_family; - __u8 sdiag_protocol; - __u16 pad; - __u32 vdiag_states; - __u32 vdiag_ino; - __u32 vdiag_show; - __u32 vdiag_cookie[2]; -}; - -struct vsock_diag_msg { - __u8 vdiag_family; - __u8 vdiag_type; - __u8 vdiag_state; - __u8 vdiag_shutdown; - __u32 vdiag_src_cid; - __u32 vdiag_src_port; - __u32 vdiag_dst_cid; - __u32 vdiag_dst_port; - __u32 vdiag_ino; - __u32 vdiag_cookie[2]; -}; - -typedef long unsigned int cycles_t; - -struct sigcontext { - __u64 fault_address; - __u64 regs[31]; - __u64 sp; - __u64 pc; - __u64 pstate; - long: 64; - __u8 __reserved[4096]; -}; - -struct _aarch64_ctx { - __u32 magic; - __u32 size; -}; - -struct fpsimd_context { - struct _aarch64_ctx head; - __u32 fpsr; - __u32 fpcr; - __int128 unsigned vregs[32]; -}; - -struct esr_context { - struct _aarch64_ctx head; - __u64 esr; -}; - -struct poe_context { - struct _aarch64_ctx head; - __u64 por_el0; -}; - -struct extra_context { - struct _aarch64_ctx head; - __u64 datap; - __u32 size; - __u32 __reserved[3]; -}; - -struct sve_context { - struct _aarch64_ctx head; - __u16 vl; - __u16 flags; - __u16 __reserved[2]; -}; - -struct tpidr2_context { - struct _aarch64_ctx head; - __u64 tpidr2; -}; - -struct fpmr_context { - struct _aarch64_ctx head; - __u64 fpmr; -}; - -struct za_context { - struct _aarch64_ctx head; - __u16 vl; - __u16 __reserved[3]; -}; - -struct zt_context { - struct _aarch64_ctx head; - __u16 nregs; - __u16 __reserved[3]; -}; - -struct ucontext { - long unsigned int uc_flags; - struct ucontext *uc_link; - stack_t uc_stack; - sigset_t uc_sigmask; - __u8 __unused[120]; - long: 64; - struct sigcontext uc_mcontext; -}; - -struct rt_sigframe { - struct siginfo info; - struct ucontext uc; -}; - -struct frame_record { - u64 fp; - u64 lr; -}; - -struct rt_sigframe_user_layout { - struct rt_sigframe *sigframe; - struct frame_record *next_frame; - long unsigned int size; - long unsigned int limit; - long unsigned int fpsimd_offset; - long unsigned int esr_offset; - long unsigned int sve_offset; - long unsigned int tpidr2_offset; - long unsigned int za_offset; - long unsigned int zt_offset; - long unsigned int fpmr_offset; - long unsigned int poe_offset; - long unsigned int extra_offset; - long unsigned int end_offset; -}; - -struct user_access_state { - u64 por_el0; -}; - -struct user_ctxs { - struct fpsimd_context *fpsimd; - u32 fpsimd_size; - struct sve_context *sve; - u32 sve_size; - struct tpidr2_context *tpidr2; - u32 tpidr2_size; - struct za_context *za; - u32 za_size; - struct zt_context *zt; - u32 zt_size; - struct fpmr_context *fpmr; - u32 fpmr_size; - struct poe_context *poe; - u32 poe_size; -}; - -enum { - NDD_UNARMED = 1, - NDD_LOCKED = 2, - NDD_SECURITY_OVERWRITE = 3, - NDD_WORK_PENDING = 4, - NDD_LABELING = 6, - NDD_INCOHERENT = 7, - NDD_REGISTER_SYNC = 8, - ND_IOCTL_MAX_BUFLEN = 4194304, - ND_CMD_MAX_ELEM = 5, - ND_CMD_MAX_ENVELOPE = 256, - ND_MAX_MAPPINGS = 32, - ND_REGION_PAGEMAP = 0, - ND_REGION_PERSIST_CACHE = 1, - ND_REGION_PERSIST_MEMCTRL = 2, - ND_REGION_ASYNC = 3, - ND_REGION_CXL = 4, - DPA_RESOURCE_ADJUSTED = 1, -}; - -struct prb_data_block { - long unsigned int id; - char data[0]; -}; - -struct trace_event_raw_rcu_utilization { - struct trace_entry ent; - const char *s; - char __data[0]; -}; - -struct trace_event_raw_rcu_stall_warning { - struct trace_entry ent; - const char *rcuname; - const char *msg; - char __data[0]; -}; - -struct trace_event_data_offsets_rcu_utilization {}; - -struct trace_event_data_offsets_rcu_stall_warning {}; - -typedef void (*btf_trace_rcu_utilization)(void *, const char *); - -typedef void (*btf_trace_rcu_stall_warning)(void *, const char *, const char *); - -struct rcu_tasks; - -typedef void (*rcu_tasks_gp_func_t)(struct rcu_tasks *); - -typedef void (*pregp_func_t)(struct list_head *); - -typedef void (*pertask_func_t)(struct task_struct *, struct list_head *); - -typedef void (*postscan_func_t)(struct list_head *); - -typedef void (*holdouts_func_t)(struct list_head *, bool, bool *); - -typedef void (*postgp_func_t)(struct rcu_tasks *); - -struct rcu_tasks_percpu; - -struct rcu_tasks { - struct rcuwait cbs_wait; - raw_spinlock_t cbs_gbl_lock; - struct mutex tasks_gp_mutex; - int gp_state; - int gp_sleep; - int init_fract; - long unsigned int gp_jiffies; - long unsigned int gp_start; - long unsigned int tasks_gp_seq; - long unsigned int n_ipis; - long unsigned int n_ipis_fails; - struct task_struct *kthread_ptr; - long unsigned int lazy_jiffies; - rcu_tasks_gp_func_t gp_func; - pregp_func_t pregp_func; - pertask_func_t pertask_func; - postscan_func_t postscan_func; - holdouts_func_t holdouts_func; - postgp_func_t postgp_func; - call_rcu_func_t call_func; - unsigned int wait_state; - struct rcu_tasks_percpu *rtpcpu; - struct rcu_tasks_percpu **rtpcp_array; - int percpu_enqueue_shift; - int percpu_enqueue_lim; - int percpu_dequeue_lim; - long unsigned int percpu_dequeue_gpseq; - struct mutex barrier_q_mutex; - atomic_t barrier_q_count; - struct completion barrier_q_completion; - long unsigned int barrier_q_seq; - long unsigned int barrier_q_start; - char *name; - char *kname; -}; - -struct rcu_tasks_percpu { - struct rcu_segcblist cblist; - raw_spinlock_t lock; - long unsigned int rtp_jiffies; - long unsigned int rtp_n_lock_retries; - struct timer_list lazy_timer; - unsigned int urgent_gp; - struct work_struct rtp_work; - struct irq_work rtp_irq_work; - struct callback_head barrier_q_head; - struct list_head rtp_blkd_tasks; - struct list_head rtp_exit_list; - int cpu; - int index; - struct rcu_tasks *rtpp; -}; - -struct trc_stall_chk_rdr { - int nesting; - int ipi_to_cpu; - u8 needqs; -}; - -struct trace_event_raw_alarmtimer_suspend { - struct trace_entry ent; - s64 expires; - unsigned char alarm_type; - char __data[0]; -}; - -struct trace_event_raw_alarm_class { - struct trace_entry ent; - void *alarm; - unsigned char alarm_type; - s64 expires; - s64 now; - char __data[0]; -}; - -struct trace_event_data_offsets_alarmtimer_suspend {}; - -struct trace_event_data_offsets_alarm_class {}; - -typedef void (*btf_trace_alarmtimer_suspend)(void *, ktime_t, int); - -typedef void (*btf_trace_alarmtimer_fired)(void *, struct alarm *, ktime_t); - -typedef void (*btf_trace_alarmtimer_start)(void *, struct alarm *, ktime_t); - -typedef void (*btf_trace_alarmtimer_cancel)(void *, struct alarm *, ktime_t); - -struct alarm_base { - spinlock_t lock; - struct timerqueue_head timerqueue; - ktime_t (*get_ktime)(void); - void (*get_timespec)(struct timespec64 *); - clockid_t base_clockid; -}; - -struct trace_export { - struct trace_export *next; - void (*write)(struct trace_export *, const void *, unsigned int); - int flags; -}; - -typedef bool (*cond_update_fn_t)(struct trace_array *, void *); - -struct trace_min_max_param { - struct mutex *lock; - u64 *val; - u64 *min; - u64 *max; -}; - -struct pipe_wait { - struct trace_iterator *iter; - int wait_index; -}; - -struct ftrace_stack { - long unsigned int calls[1024]; -}; - -struct ftrace_stacks { - struct ftrace_stack stacks[4]; -}; - -struct trace_buffer_struct { - int nesting; - char buffer[4096]; -}; - -struct ftrace_buffer_info { - struct trace_iterator iter; - void *spare; - unsigned int spare_cpu; - unsigned int spare_size; - unsigned int read; -}; - -struct err_info { - const char **errs; - u8 type; - u16 pos; - u64 ts; -}; - -struct tracing_log_err { - struct list_head list; - struct err_info info; - char loc[128]; - char *cmd; -}; - -struct buffer_ref { - struct trace_buffer *buffer; - void *page; - int cpu; - refcount_t refcount; -}; - -struct bpf_preload_info { - char link_name[16]; - struct bpf_link *link; -}; - -struct bpf_preload_ops { - int (*preload)(struct bpf_preload_info *); - struct module *owner; -}; - -enum bpf_type { - BPF_TYPE_UNSPEC = 0, - BPF_TYPE_PROG = 1, - BPF_TYPE_MAP = 2, - BPF_TYPE_LINK = 3, -}; - -struct map_iter { - void *key; - bool done; -}; - -struct bpffs_btf_enums { - const struct btf *btf; - const struct btf_type *cmd_t; - const struct btf_type *map_t; - const struct btf_type *prog_t; - const struct btf_type *attach_t; -}; - -enum { - OPT_UID = 0, - OPT_GID = 1, - OPT_MODE = 2, - OPT_DELEGATE_CMDS = 3, - OPT_DELEGATE_MAPS = 4, - OPT_DELEGATE_PROGS = 5, - OPT_DELEGATE_ATTACHS = 6, -}; - -struct bpf_shim_tramp_link { - struct bpf_tramp_link link; - struct bpf_trampoline *trampoline; -}; - -struct bpf_cpumask { - cpumask_t cpumask; - refcount_t usage; -}; - -struct shmem_quota_limits { - qsize_t usrquota_bhardlimit; - qsize_t usrquota_ihardlimit; - qsize_t grpquota_bhardlimit; - qsize_t grpquota_ihardlimit; -}; - -struct shmem_sb_info { - long unsigned int max_blocks; - struct percpu_counter used_blocks; - long unsigned int max_inodes; - long unsigned int free_ispace; - raw_spinlock_t stat_lock; - umode_t mode; - unsigned char huge; - kuid_t uid; - kgid_t gid; - bool full_inums; - bool noswap; - ino_t next_ino; - ino_t *ino_batch; - struct mempolicy *mpol; - spinlock_t shrinklist_lock; - struct list_head shrinklist; - long unsigned int shrinklist_len; - struct shmem_quota_limits qlimits; -}; - -struct shmem_falloc { - wait_queue_head_t *waitq; - long unsigned int start; - long unsigned int next; - long unsigned int nr_falloced; - long unsigned int nr_unswapped; -}; - -struct shmem_options { - long long unsigned int blocks; - long long unsigned int inodes; - struct mempolicy *mpol; - kuid_t uid; - kgid_t gid; - umode_t mode; - bool full_inums; - int huge; - int seen; - bool noswap; - short unsigned int quota_types; - struct shmem_quota_limits qlimits; -}; - -enum shmem_param { - Opt_gid___11 = 0, - Opt_huge = 1, - Opt_mode___7 = 2, - Opt_mpol = 3, - Opt_nr_blocks = 4, - Opt_nr_inodes___2 = 5, - Opt_size___2 = 6, - Opt_uid___10 = 7, - Opt_inode32___2 = 8, - Opt_inode64___2 = 9, - Opt_noswap = 10, - Opt_quota___4 = 11, - Opt_usrquota___4 = 12, - Opt_grpquota___4 = 13, - Opt_usrquota_block_hardlimit = 14, - Opt_usrquota_inode_hardlimit = 15, - Opt_grpquota_block_hardlimit = 16, - Opt_grpquota_inode_hardlimit = 17, -}; - -struct crypto_acomp_ctx { - struct crypto_acomp *acomp; - struct acomp_req *req; - struct crypto_wait wait; - u8 *buffer; - struct mutex mutex; - bool is_sleepable; -}; - -struct zswap_pool { - struct zpool *zpool; - struct crypto_acomp_ctx *acomp_ctx; - struct percpu_ref ref; - struct list_head list; - struct work_struct release_work; - struct hlist_node node; - char tfm_name[128]; -}; - -struct zswap_entry { - swp_entry_t swpentry; - unsigned int length; - bool referenced; - struct zswap_pool *pool; - long unsigned int handle; - struct obj_cgroup *objcg; - struct list_head lru; -}; - -enum zswap_init_type { - ZSWAP_UNINIT = 0, - ZSWAP_INIT_SUCCEED = 1, - ZSWAP_INIT_FAILED = 2, -}; - -struct saved { - struct path link; - struct delayed_call done; - const char *name; - unsigned int seq; -}; - -struct nameidata { - struct path path; - struct qstr last; - struct path root; - struct inode *inode; - unsigned int flags; - unsigned int state; - unsigned int seq; - unsigned int next_seq; - unsigned int m_seq; - unsigned int r_seq; - int last_type; - unsigned int depth; - int total_link_count; - struct saved *stack; - struct saved internal[2]; - struct filename *name; - struct nameidata *saved; - unsigned int root_seq; - int dfd; - vfsuid_t dir_vfsuid; - umode_t dir_mode; -}; - -enum { - LAST_NORM = 0, - LAST_ROOT = 1, - LAST_DOT = 2, - LAST_DOTDOT = 3, -}; - -enum { - WALK_TRAILING = 1, - WALK_MORE = 2, - WALK_NOFOLLOW = 4, -}; - -struct eventfd_ctx { - struct kref kref; - wait_queue_head_t wqh; - __u64 count; - unsigned int flags; - int id; -}; - -enum { - QUOTA_NL_C_UNSPEC = 0, - QUOTA_NL_C_WARNING = 1, - __QUOTA_NL_C_MAX = 2, -}; - -enum { - QUOTA_NL_A_UNSPEC = 0, - QUOTA_NL_A_QTYPE = 1, - QUOTA_NL_A_EXCESS_ID = 2, - QUOTA_NL_A_WARNING = 3, - QUOTA_NL_A_DEV_MAJOR = 4, - QUOTA_NL_A_DEV_MINOR = 5, - QUOTA_NL_A_CAUSED_ID = 6, - QUOTA_NL_A_PAD = 7, - __QUOTA_NL_A_MAX = 8, -}; - -struct trace_event_raw_fscache_cache { - struct trace_entry ent; - unsigned int cache; - int usage; - enum fscache_cache_trace where; - char __data[0]; -}; - -struct trace_event_raw_fscache_volume { - struct trace_entry ent; - unsigned int volume; - int usage; - enum fscache_volume_trace where; - char __data[0]; -}; - -struct trace_event_raw_fscache_cookie { - struct trace_entry ent; - unsigned int cookie; - int ref; - enum fscache_cookie_trace where; - char __data[0]; -}; - -struct trace_event_raw_fscache_active { - struct trace_entry ent; - unsigned int cookie; - int ref; - int n_active; - int n_accesses; - enum fscache_active_trace why; - char __data[0]; -}; - -struct trace_event_raw_fscache_access_cache { - struct trace_entry ent; - unsigned int cache; - int ref; - int n_accesses; - enum fscache_access_trace why; - char __data[0]; -}; - -struct trace_event_raw_fscache_access_volume { - struct trace_entry ent; - unsigned int volume; - unsigned int cookie; - int ref; - int n_accesses; - enum fscache_access_trace why; - char __data[0]; -}; - -struct trace_event_raw_fscache_access { - struct trace_entry ent; - unsigned int cookie; - int ref; - int n_accesses; - enum fscache_access_trace why; - char __data[0]; -}; - -struct trace_event_raw_fscache_acquire { - struct trace_entry ent; - unsigned int cookie; - unsigned int volume; - int v_ref; - int v_n_cookies; - char __data[0]; -}; - -struct trace_event_raw_fscache_relinquish { - struct trace_entry ent; - unsigned int cookie; - unsigned int volume; - int ref; - int n_active; - u8 flags; - bool retire; - char __data[0]; -}; - -struct trace_event_raw_fscache_invalidate { - struct trace_entry ent; - unsigned int cookie; - loff_t new_size; - char __data[0]; -}; - -struct trace_event_raw_fscache_resize { - struct trace_entry ent; - unsigned int cookie; - loff_t old_size; - loff_t new_size; - char __data[0]; -}; - -struct trace_event_data_offsets_fscache_cache {}; - -struct trace_event_data_offsets_fscache_volume {}; - -struct trace_event_data_offsets_fscache_cookie {}; - -struct trace_event_data_offsets_fscache_active {}; - -struct trace_event_data_offsets_fscache_access_cache {}; - -struct trace_event_data_offsets_fscache_access_volume {}; - -struct trace_event_data_offsets_fscache_access {}; - -struct trace_event_data_offsets_fscache_acquire {}; - -struct trace_event_data_offsets_fscache_relinquish {}; - -struct trace_event_data_offsets_fscache_invalidate {}; - -struct trace_event_data_offsets_fscache_resize {}; - -typedef void (*btf_trace_fscache_cache)(void *, unsigned int, int, enum fscache_cache_trace); - -typedef void (*btf_trace_fscache_volume)(void *, unsigned int, int, enum fscache_volume_trace); - -typedef void (*btf_trace_fscache_cookie)(void *, unsigned int, int, enum fscache_cookie_trace); - -typedef void (*btf_trace_fscache_active)(void *, unsigned int, int, int, int, enum fscache_active_trace); - -typedef void (*btf_trace_fscache_access_cache)(void *, unsigned int, int, int, enum fscache_access_trace); - -typedef void (*btf_trace_fscache_access_volume)(void *, unsigned int, unsigned int, int, int, enum fscache_access_trace); - -typedef void (*btf_trace_fscache_access)(void *, unsigned int, int, int, enum fscache_access_trace); - -typedef void (*btf_trace_fscache_acquire)(void *, struct fscache_cookie *); - -typedef void (*btf_trace_fscache_relinquish)(void *, struct fscache_cookie *, bool); - -typedef void (*btf_trace_fscache_invalidate)(void *, struct fscache_cookie *, loff_t); - -typedef void (*btf_trace_fscache_resize)(void *, struct fscache_cookie *, loff_t); - -struct migrate_struct { - ext4_lblk_t first_block; - ext4_lblk_t last_block; - ext4_lblk_t curr_block; - ext4_fsblk_t first_pblock; - ext4_fsblk_t last_pblock; -}; - -struct recovery_info { - tid_t start_transaction; - tid_t end_transaction; - long unsigned int head_block; - int nr_replays; - int nr_revokes; - int nr_revoke_hits; -}; - -struct squashfs_xattr_entry { - __le16 type; - __le16 size; - char data[0]; -}; - -struct squashfs_xattr_val { - __le32 vsize; - char value[0]; -}; - -struct nfs_io_completion { - void (*complete)(void *); - void *data; - struct kref refcount; -}; - -struct nfs4_ds_server { - struct list_head list; - struct rpc_clnt *rpc_clnt; -}; - -struct nlmclnt_initdata { - const char *hostname; - const struct sockaddr *address; - size_t addrlen; - short unsigned int protocol; - u32 nfs_version; - int noresvport; - struct net *net; - const struct nlmclnt_operations *nlmclnt_ops; - const struct cred *cred; -}; - -struct smb2_lease_break { - struct smb2_hdr hdr; - __le16 StructureSize; - __le16 Epoch; - __le32 Flags; - __u8 LeaseKey[16]; - __le32 CurrentLeaseState; - __le32 NewLeaseState; - __le32 BreakReason; - __le32 AccessMaskHint; - __le32 ShareMaskHint; -} __attribute__((packed)); - -struct close_cancelled_open { - struct cifs_fid fid; - struct cifs_tcon *tcon; - struct work_struct work; - __u64 mid; - __u16 cmd; -}; - -struct smb2_lease_break_work { - struct work_struct lease_break; - struct tcon_link *tlink; - __u8 lease_key[16]; - __le32 lease_state; -}; - -enum { - AUTOFS_IOC_READY_CMD = 96, - AUTOFS_IOC_FAIL_CMD = 97, - AUTOFS_IOC_CATATONIC_CMD = 98, - AUTOFS_IOC_PROTOVER_CMD = 99, - AUTOFS_IOC_SETTIMEOUT_CMD = 100, - AUTOFS_IOC_EXPIRE_CMD = 101, -}; - -enum { - AUTOFS_IOC_EXPIRE_MULTI_CMD = 102, - AUTOFS_IOC_PROTOSUBVER_CMD = 103, - AUTOFS_IOC_ASKUMOUNT_CMD = 112, -}; - -enum ovl_copyop { - OVL_COPY = 0, - OVL_CLONE = 1, - OVL_DEDUPE = 2, -}; - -enum btrfs_caching_type { - BTRFS_CACHE_NO = 0, - BTRFS_CACHE_STARTED = 1, - BTRFS_CACHE_FINISHED = 2, - BTRFS_CACHE_ERROR = 3, -}; - -enum btrfs_loop_type { - LOOP_CACHING_NOWAIT = 0, - LOOP_CACHING_WAIT = 1, - LOOP_UNSET_SIZE_CLASS = 2, - LOOP_ALLOC_CHUNK = 3, - LOOP_WRONG_SIZE_CLASS = 4, - LOOP_NO_EMPTY_SIZE = 5, -}; - -struct walk_control___2 { - u64 refs[8]; - u64 flags[8]; - struct btrfs_key update_progress; - struct btrfs_key drop_progress; - int drop_level; - int stage; - int level; - int shared_level; - int update_ref; - int keep_locks; - int reada_slot; - int reada_count; - int restarted; - int lookup_info; -}; - -struct btrfs_compr_pool { - struct shrinker *shrinker; - spinlock_t lock; - struct list_head list; - int count; - int thresh; -}; - -struct bucket_item { - u32 count; -}; - -struct heuristic_ws { - u8 *sample; - u32 sample_size; - struct bucket_item *bucket; - struct bucket_item *bucket_b; - struct list_head list; -}; - -enum { - GC_THREAD = 0, - SM_INFO = 1, - DCC_INFO = 2, - NM_INFO = 3, - F2FS_SBI = 4, - STAT_INFO = 5, - RESERVED_BLOCKS = 6, - CPRC_INFO = 7, - ATGC_INFO = 8, -}; - -struct f2fs_attr { - struct attribute attr; - ssize_t (*show)(struct f2fs_attr *, struct f2fs_sb_info *, char *); - ssize_t (*store)(struct f2fs_attr *, struct f2fs_sb_info *, const char *, size_t); - int struct_type; - int offset; - int id; -}; - -struct f2fs_base_attr { - struct attribute attr; - ssize_t (*show)(struct f2fs_base_attr *, char *); - ssize_t (*store)(struct f2fs_base_attr *, const char *, size_t); -}; - -enum ecryptfs_token_types { - ECRYPTFS_PASSWORD = 0, - ECRYPTFS_PRIVATE_KEY = 1, -}; - -struct bf_ctx { - u32 p[18]; - u32 s[1024]; -}; - -struct michael_mic_ctx { - u32 l; - u32 r; -}; - -struct michael_mic_desc_ctx { - __le32 pending; - size_t pending_len; - u32 l; - u32 r; -}; - -enum io_uring_socket_op { - SOCKET_URING_OP_SIOCINQ = 0, - SOCKET_URING_OP_SIOCOUTQ = 1, - SOCKET_URING_OP_GETSOCKOPT = 2, - SOCKET_URING_OP_SETSOCKOPT = 3, -}; - -struct uring_cache { - struct io_uring_sqe sqes[2]; -}; - -struct io_timeout_data { - struct io_kiocb *req; - struct hrtimer timer; - struct timespec64 ts; - enum hrtimer_mode mode; - u32 flags; -}; - -struct io_timeout { - struct file *file; - u32 off; - u32 target_seq; - u32 repeats; - struct list_head list; - struct io_kiocb *head; - struct io_kiocb *prev; -}; - -struct io_timeout_rem { - struct file *file; - u64 addr; - struct timespec64 ts; - u32 flags; - bool ltimeout; -}; - -struct region { - unsigned int start; - unsigned int off; - unsigned int group_len; - unsigned int end; - unsigned int nbits; -}; - -union uu { - short unsigned int us; - unsigned char b[2]; -}; - -typedef struct tree_desc_s tree_desc; - -struct ts_bm { - u8 *pattern; - unsigned int patlen; - unsigned int bad_shift[256]; - unsigned int good_shift[0]; -}; - -struct dp_sdp_header { - u8 HB0; - u8 HB1; - u8 HB2; - u8 HB3; -}; - -struct dp_sdp { - struct dp_sdp_header sdp_header; - u8 db[32]; -}; - -struct of_dma { - struct list_head of_dma_controllers; - struct device_node *of_node; - struct dma_chan * (*of_dma_xlate)(struct of_phandle_args *, struct of_dma *); - void * (*of_dma_route_allocate)(struct of_phandle_args *, struct of_dma *); - struct dma_router *dma_router; - void *of_dma_data; -}; - -struct of_dma_filter_info { - dma_cap_mask_t dma_cap; - dma_filter_fn filter_fn; -}; - -struct tiocl_selection { - short unsigned int xs; - short unsigned int ys; - short unsigned int xe; - short unsigned int ye; - short unsigned int sel_mode; -}; - -struct vc_selection { - struct mutex lock; - struct vc_data *cons; - char *buffer; - unsigned int buf_len; - volatile int start; - int end; -}; - -struct pnp_device_id { - __u8 id[8]; - kernel_ulong_t driver_data; -}; - -struct pnp_card_device_id { - __u8 id[8]; - kernel_ulong_t driver_data; - struct { - __u8 id[8]; - } devs[8]; -}; - -struct pnp_protocol; - -struct pnp_id; - -struct pnp_card { - struct device dev; - unsigned char number; - struct list_head global_list; - struct list_head protocol_list; - struct list_head devices; - struct pnp_protocol *protocol; - struct pnp_id *id; - char name[50]; - unsigned char pnpver; - unsigned char productver; - unsigned int serial; - unsigned char checksum; - struct proc_dir_entry *procdir; -}; - -struct pnp_dev; - -struct pnp_protocol { - struct list_head protocol_list; - char *name; - int (*get)(struct pnp_dev *); - int (*set)(struct pnp_dev *); - int (*disable)(struct pnp_dev *); - bool (*can_wakeup)(struct pnp_dev *); - int (*suspend)(struct pnp_dev *, pm_message_t); - int (*resume)(struct pnp_dev *); - unsigned char number; - struct device dev; - struct list_head cards; - struct list_head devices; -}; - -struct pnp_id { - char id[8]; - struct pnp_id *next; -}; - -struct pnp_card_driver; - -struct pnp_card_link { - struct pnp_card *card; - struct pnp_card_driver *driver; - void *driver_data; - pm_message_t pm_state; -}; - -struct pnp_driver { - const char *name; - const struct pnp_device_id *id_table; - unsigned int flags; - int (*probe)(struct pnp_dev *, const struct pnp_device_id *); - void (*remove)(struct pnp_dev *); - void (*shutdown)(struct pnp_dev *); - int (*suspend)(struct pnp_dev *, pm_message_t); - int (*resume)(struct pnp_dev *); - struct device_driver driver; -}; - -struct pnp_card_driver { - struct list_head global_list; - char *name; - const struct pnp_card_device_id *id_table; - unsigned int flags; - int (*probe)(struct pnp_card_link *, const struct pnp_card_device_id *); - void (*remove)(struct pnp_card_link *); - int (*suspend)(struct pnp_card_link *, pm_message_t); - int (*resume)(struct pnp_card_link *); - struct pnp_driver link; -}; - -struct pnp_dev { - struct device dev; - u64 dma_mask; - unsigned int number; - int status; - struct list_head global_list; - struct list_head protocol_list; - struct list_head card_list; - struct list_head rdev_list; - struct pnp_protocol *protocol; - struct pnp_card *card; - struct pnp_driver *driver; - struct pnp_card_link *card_link; - struct pnp_id *id; - int active; - int capabilities; - unsigned int num_dependent_sets; - struct list_head resources; - struct list_head options; - char name[50]; - int flags; - struct proc_dir_entry *procent; - void *data; -}; - -struct of_serial_info { - struct clk *clk; - struct reset_control *rst; - int type; - int line; - struct notifier_block clk_notifier; -}; - -struct drm_mode_crtc { - __u64 set_connectors_ptr; - __u32 count_connectors; - __u32 crtc_id; - __u32 fb_id; - __u32 x; - __u32 y; - __u32 gamma_size; - __u32 mode_valid; - struct drm_mode_modeinfo mode; -}; - -struct drm_mode_property_enum { - __u64 value; - char name[32]; -}; - -struct drm_mode_get_property { - __u64 values_ptr; - __u64 enum_blob_ptr; - __u32 prop_id; - __u32 flags; - char name[32]; - __u32 count_values; - __u32 count_enum_blobs; -}; - -struct drm_mode_get_blob { - __u32 blob_id; - __u32 length; - __u64 data; -}; - -struct drm_mode_create_blob { - __u64 data; - __u32 length; - __u32 blob_id; -}; - -struct drm_mode_destroy_blob { - __u32 blob_id; -}; - -struct drm_property_enum { - uint64_t value; - struct list_head head; - char name[32]; -}; - -struct drm_exec { - u32 flags; - struct ww_acquire_ctx ticket; - unsigned int num_objects; - unsigned int max_objects; - struct drm_gem_object **objects; - struct drm_gem_object *contended; - struct drm_gem_object *prelocked; -}; - -enum drm_gpuva_flags { - DRM_GPUVA_INVALIDATED = 1, - DRM_GPUVA_SPARSE = 2, - DRM_GPUVA_USERBITS = 4, -}; - -struct drm_gpuvm; - -struct drm_gpuvm_bo; - -struct drm_gpuva { - struct drm_gpuvm *vm; - struct drm_gpuvm_bo *vm_bo; - enum drm_gpuva_flags flags; - struct { - u64 addr; - u64 range; - } va; - struct { - u64 offset; - struct drm_gem_object *obj; - struct list_head entry; - } gem; - struct { - struct rb_node node; - struct list_head entry; - u64 __subtree_last; - } rb; -}; - -enum drm_gpuvm_flags { - DRM_GPUVM_RESV_PROTECTED = 1, - DRM_GPUVM_USERBITS = 2, -}; - -struct drm_gpuvm_ops; - -struct drm_gpuvm { - const char *name; - enum drm_gpuvm_flags flags; - struct drm_device *drm; - u64 mm_start; - u64 mm_range; - struct { - struct rb_root_cached tree; - struct list_head list; - } rb; - struct kref kref; - struct drm_gpuva kernel_alloc_node; - const struct drm_gpuvm_ops *ops; - struct drm_gem_object *r_obj; - struct { - struct list_head list; - struct list_head *local_list; - spinlock_t lock; - } extobj; - struct { - struct list_head list; - struct list_head *local_list; - spinlock_t lock; - } evict; -}; - -struct drm_gpuvm_bo { - struct drm_gpuvm *vm; - struct drm_gem_object *obj; - bool evicted; - struct kref kref; - struct { - struct list_head gpuva; - struct { - struct list_head gem; - struct list_head extobj; - struct list_head evict; - } entry; - } list; -}; - -struct drm_gpuva_op; - -struct drm_gpuvm_ops { - void (*vm_free)(struct drm_gpuvm *); - struct drm_gpuva_op * (*op_alloc)(void); - void (*op_free)(struct drm_gpuva_op *); - struct drm_gpuvm_bo * (*vm_bo_alloc)(void); - void (*vm_bo_free)(struct drm_gpuvm_bo *); - int (*vm_bo_validate)(struct drm_gpuvm_bo *, struct drm_exec *); - int (*sm_step_map)(struct drm_gpuva_op *, void *); - int (*sm_step_remap)(struct drm_gpuva_op *, void *); - int (*sm_step_unmap)(struct drm_gpuva_op *, void *); -}; - -enum drm_gpuva_op_type { - DRM_GPUVA_OP_MAP = 0, - DRM_GPUVA_OP_REMAP = 1, - DRM_GPUVA_OP_UNMAP = 2, - DRM_GPUVA_OP_PREFETCH = 3, -}; - -struct drm_gpuva_op_map { - struct { - u64 addr; - u64 range; - } va; - struct { - u64 offset; - struct drm_gem_object *obj; - } gem; -}; - -struct drm_gpuva_op_unmap { - struct drm_gpuva *va; - bool keep; -}; - -struct drm_gpuva_op_remap { - struct drm_gpuva_op_map *prev; - struct drm_gpuva_op_map *next; - struct drm_gpuva_op_unmap *unmap; -}; - -struct drm_gpuva_op_prefetch { - struct drm_gpuva *va; -}; - -struct drm_gpuva_op { - struct list_head entry; - enum drm_gpuva_op_type op; - union { - struct drm_gpuva_op_map map; - struct drm_gpuva_op_remap remap; - struct drm_gpuva_op_unmap unmap; - struct drm_gpuva_op_prefetch prefetch; - }; -}; - -struct transport_class { - struct class class; - int (*setup)(struct transport_container *, struct device *, struct device *); - int (*configure)(struct transport_container *, struct device *, struct device *); - int (*remove)(struct transport_container *, struct device *, struct device *); -}; - -struct anon_transport_class { - struct transport_class tclass; - struct attribute_container container; -}; - -typedef void (*irq_write_msi_msg_t)(struct msi_desc *, struct msi_msg *); - -struct dma_resv_list { - struct callback_head rcu; - u32 num_fences; - u32 max_fences; - struct dma_fence *table[0]; -}; - -struct learning_pkt { - u8 mac_dst[6]; - u8 mac_src[6]; - __be16 type; - u8 padding[46]; -}; - -struct arp_pkt { - __be16 hw_addr_space; - __be16 prot_addr_space; - u8 hw_addr_len; - u8 prot_addr_len; - __be16 op_code; - u8 mac_src[6]; - __be32 ip_src; - u8 mac_dst[6]; - __be32 ip_dst; -} __attribute__((packed)); - -struct alb_walk_data { - struct bonding *bond; - struct slave *slave; - const u8 *mac_addr; - bool strict_match; -}; - -struct mdio_board_entry { - struct list_head list; - struct mdio_board_info board_info; -}; - -struct lan88xx_priv { - int chip_id; - int chip_rev; - __u32 wolopts; -}; - -struct tunnel_msg { - __u8 family; - __u8 flags; - __u16 reserved2; - __u32 ifindex; -}; - -enum { - VNIFILTER_ENTRY_STATS_UNSPEC = 0, - VNIFILTER_ENTRY_STATS_RX_BYTES = 1, - VNIFILTER_ENTRY_STATS_RX_PKTS = 2, - VNIFILTER_ENTRY_STATS_RX_DROPS = 3, - VNIFILTER_ENTRY_STATS_RX_ERRORS = 4, - VNIFILTER_ENTRY_STATS_TX_BYTES = 5, - VNIFILTER_ENTRY_STATS_TX_PKTS = 6, - VNIFILTER_ENTRY_STATS_TX_DROPS = 7, - VNIFILTER_ENTRY_STATS_TX_ERRORS = 8, - VNIFILTER_ENTRY_STATS_PAD = 9, - __VNIFILTER_ENTRY_STATS_MAX = 10, -}; - -enum { - VXLAN_VNIFILTER_ENTRY_UNSPEC = 0, - VXLAN_VNIFILTER_ENTRY_START = 1, - VXLAN_VNIFILTER_ENTRY_END = 2, - VXLAN_VNIFILTER_ENTRY_GROUP = 3, - VXLAN_VNIFILTER_ENTRY_GROUP6 = 4, - VXLAN_VNIFILTER_ENTRY_STATS = 5, - __VXLAN_VNIFILTER_ENTRY_MAX = 6, -}; - -enum { - VXLAN_VNIFILTER_UNSPEC = 0, - VXLAN_VNIFILTER_ENTRY = 1, - __VXLAN_VNIFILTER_MAX = 2, -}; - -enum { - VXLAN_VNI_STATS_RX = 0, - VXLAN_VNI_STATS_RX_DROPS = 1, - VXLAN_VNI_STATS_RX_ERRORS = 2, - VXLAN_VNI_STATS_TX = 3, - VXLAN_VNI_STATS_TX_DROPS = 4, - VXLAN_VNI_STATS_TX_ERRORS = 5, -}; - -struct urb_priv___3 { - struct ed *ed; - u16 length; - u16 td_cnt; - struct list_head pending; - struct td *td[0]; -}; - -typedef struct urb_priv___3 urb_priv_t; - -struct debug_buffer { - ssize_t (*fill_func)(struct debug_buffer *); - struct ohci_hcd *ohci; - struct mutex mutex; - size_t count; - char *page; -}; - -struct iu { - __u8 iu_id; - __u8 rsvd1; - __be16 tag; -}; - -enum { - IU_ID_COMMAND = 1, - IU_ID_STATUS = 3, - IU_ID_RESPONSE = 4, - IU_ID_TASK_MGMT = 5, - IU_ID_READ_READY = 6, - IU_ID_WRITE_READY = 7, -}; - -enum { - RC_TMF_COMPLETE = 0, - RC_INVALID_INFO_UNIT = 2, - RC_TMF_NOT_SUPPORTED = 4, - RC_TMF_FAILED = 5, - RC_TMF_SUCCEEDED = 8, - RC_INCORRECT_LUN = 9, - RC_OVERLAPPED_TAG = 10, -}; - -struct command_iu { - __u8 iu_id; - __u8 rsvd1; - __be16 tag; - __u8 prio_attr; - __u8 rsvd5; - __u8 len; - __u8 rsvd7; - struct scsi_lun lun; - __u8 cdb[16]; -}; - -struct sense_iu { - __u8 iu_id; - __u8 rsvd1; - __be16 tag; - __be16 status_qual; - __u8 status; - __u8 rsvd7[7]; - __be16 len; - __u8 sense[96]; -}; - -struct response_iu { - __u8 iu_id; - __u8 rsvd1; - __be16 tag; - __u8 add_response_info[3]; - __u8 response_code; -}; - -enum { - CMD_PIPE_ID = 1, - STATUS_PIPE_ID = 2, - DATA_IN_PIPE_ID = 3, - DATA_OUT_PIPE_ID = 4, - UAS_SIMPLE_TAG = 0, - UAS_HEAD_TAG = 1, - UAS_ORDERED_TAG = 2, - UAS_ACA = 4, -}; - -struct uas_dev_info { - struct usb_interface *intf; - struct usb_device *udev; - struct usb_anchor cmd_urbs; - struct usb_anchor sense_urbs; - struct usb_anchor data_urbs; - u64 flags; - int qdepth; - int resetting; - unsigned int cmd_pipe; - unsigned int status_pipe; - unsigned int data_in_pipe; - unsigned int data_out_pipe; - unsigned int use_streams: 1; - unsigned int shutdown: 1; - struct scsi_cmnd *cmnd[256]; - spinlock_t lock; - struct work_struct work; - struct work_struct scan_work; -}; - -enum { - SUBMIT_STATUS_URB = 2, - ALLOC_DATA_IN_URB = 4, - SUBMIT_DATA_IN_URB = 8, - ALLOC_DATA_OUT_URB = 16, - SUBMIT_DATA_OUT_URB = 32, - ALLOC_CMD_URB = 64, - SUBMIT_CMD_URB = 128, - COMMAND_INFLIGHT = 256, - DATA_IN_URB_INFLIGHT = 512, - DATA_OUT_URB_INFLIGHT = 1024, - COMMAND_ABORTED = 2048, - IS_IN_WORK_LIST = 4096, -}; - -struct uas_cmd_info { - unsigned int state; - unsigned int uas_tag; - struct urb *cmd_urb; - struct urb *data_in_urb; - struct urb *data_out_urb; -}; - -struct jumpshot_info { - long unsigned int sectors; - long unsigned int ssize; - unsigned char sense_key; - long unsigned int sense_asc; - long unsigned int sense_ascq; -}; - -enum ftdi_sio_baudrate { - ftdi_sio_b300 = 0, - ftdi_sio_b600 = 1, - ftdi_sio_b1200 = 2, - ftdi_sio_b2400 = 3, - ftdi_sio_b4800 = 4, - ftdi_sio_b9600 = 5, - ftdi_sio_b19200 = 6, - ftdi_sio_b38400 = 7, - ftdi_sio_b57600 = 8, - ftdi_sio_b115200 = 9, -}; - -enum ftdi_chip_type { - SIO = 0, - FT232A = 1, - FT232B = 2, - FT2232C = 3, - FT232R = 4, - FT232H = 5, - FT2232H = 6, - FT4232H = 7, - FT4232HA = 8, - FT232HP = 9, - FT233HP = 10, - FT2232HP = 11, - FT2233HP = 12, - FT4232HP = 13, - FT4233HP = 14, - FTX = 15, -}; - -struct ftdi_private { - enum ftdi_chip_type chip_type; - int baud_base; - int custom_divisor; - u16 last_set_data_value; - int flags; - long unsigned int last_dtr_rts; - char prev_status; - char transmit_empty; - u16 channel; - speed_t force_baud; - int force_rtscts; - unsigned int latency; - short unsigned int max_packet_size; - struct mutex cfg_lock; - struct gpio_chip gc; - struct mutex gpio_lock; - bool gpio_registered; - bool gpio_used; - u8 gpio_altfunc; - u8 gpio_output; - u8 gpio_value; -}; - -struct ftdi_quirk { - int (*probe)(struct usb_serial *); - void (*port_probe)(struct ftdi_private *); -}; - -struct kobil_private { - unsigned char buf[300]; - int filled; - int cur_pos; - __u16 device_type; -}; - -struct visor_connection_info { - __le16 num_ports; - struct { - __u8 port_function_id; - __u8 port; - } connections[2]; -}; - -struct palm_ext_connection_info { - __u8 num_ports; - __u8 endpoint_numbers_different; - __le16 reserved1; - struct { - __u32 port_function_id; - __u8 port; - __u8 end_point_info; - __le16 reserved; - } connections[2]; -}; - -struct trace_event_raw_rtc_time_alarm_class { - struct trace_entry ent; - time64_t secs; - int err; - char __data[0]; -}; - -struct trace_event_raw_rtc_irq_set_freq { - struct trace_entry ent; - int freq; - int err; - char __data[0]; -}; - -struct trace_event_raw_rtc_irq_set_state { - struct trace_entry ent; - int enabled; - int err; - char __data[0]; -}; - -struct trace_event_raw_rtc_alarm_irq_enable { - struct trace_entry ent; - unsigned int enabled; - int err; - char __data[0]; -}; - -struct trace_event_raw_rtc_offset_class { - struct trace_entry ent; - long int offset; - int err; - char __data[0]; -}; - -struct trace_event_raw_rtc_timer_class { - struct trace_entry ent; - struct rtc_timer *timer; - ktime_t expires; - ktime_t period; - char __data[0]; -}; - -struct trace_event_data_offsets_rtc_time_alarm_class {}; - -struct trace_event_data_offsets_rtc_irq_set_freq {}; - -struct trace_event_data_offsets_rtc_irq_set_state {}; - -struct trace_event_data_offsets_rtc_alarm_irq_enable {}; - -struct trace_event_data_offsets_rtc_offset_class {}; - -struct trace_event_data_offsets_rtc_timer_class {}; - -typedef void (*btf_trace_rtc_set_time)(void *, time64_t, int); - -typedef void (*btf_trace_rtc_read_time)(void *, time64_t, int); - -typedef void (*btf_trace_rtc_set_alarm)(void *, time64_t, int); - -typedef void (*btf_trace_rtc_read_alarm)(void *, time64_t, int); - -typedef void (*btf_trace_rtc_irq_set_freq)(void *, int, int); - -typedef void (*btf_trace_rtc_irq_set_state)(void *, int, int); - -typedef void (*btf_trace_rtc_alarm_irq_enable)(void *, unsigned int, int); - -typedef void (*btf_trace_rtc_set_offset)(void *, long int, int); - -typedef void (*btf_trace_rtc_read_offset)(void *, long int, int); - -typedef void (*btf_trace_rtc_timer_enqueue)(void *, struct rtc_timer *); - -typedef void (*btf_trace_rtc_timer_dequeue)(void *, struct rtc_timer *); - -typedef void (*btf_trace_rtc_timer_fired)(void *, struct rtc_timer *); - -enum { - none = 0, - day = 1, - month = 2, - year = 3, -}; - -enum { - DM_TIO_INSIDE_DM_IO = 0, - DM_TIO_IS_DUPLICATE_BIO = 1, -}; - -enum { - DM_IO_ACCOUNTED = 0, - DM_IO_WAS_SPLIT = 1, - DM_IO_BLK_STAT = 2, -}; - -struct clone_info { - struct dm_table *map; - struct bio *bio; - struct dm_io *io; - sector_t sector; - unsigned int sector_count; - bool is_abnormal_io: 1; - bool submit_as_polled: 1; -}; - -struct table_device { - struct list_head list; - refcount_t count; - struct dm_dev dm_dev; -}; - -struct dm_pr { - u64 old_key; - u64 new_key; - u32 flags; - bool abort; - bool fail_early; - int ret; - enum pr_type type; - struct pr_keys *read_keys; - struct pr_held_reservation *rsv; -}; - -struct psci_0_1_function_ids { - u32 cpu_suspend; - u32 cpu_on; - u32 cpu_off; - u32 migrate; -}; - -typedef int suspend_state_t; - -struct platform_suspend_ops { - int (*valid)(suspend_state_t); - int (*begin)(suspend_state_t); - int (*prepare)(void); - int (*prepare_late)(void); - int (*enter)(suspend_state_t); - void (*wake)(void); - void (*finish)(void); - bool (*suspend_again)(void); - void (*end)(void); - void (*recover)(void); -}; - -typedef long unsigned int psci_fn(long unsigned int, long unsigned int, long unsigned int, long unsigned int); - -typedef int (*psci_initcall_t)(const struct device_node *); - -struct usage_priority { - __u32 usage; - bool global; - unsigned int slot_overwrite; -}; - -typedef bool (*hid_usage_cmp_t)(struct hid_usage *, unsigned int, unsigned int); - -struct rmem_assigned_device { - struct device *dev; - struct reserved_mem *rmem; - struct list_head list; -}; - -struct csum_state { - __wsum csum; - size_t off; -}; - -struct rtnl_link_stats { - __u32 rx_packets; - __u32 tx_packets; - __u32 rx_bytes; - __u32 tx_bytes; - __u32 rx_errors; - __u32 tx_errors; - __u32 rx_dropped; - __u32 tx_dropped; - __u32 multicast; - __u32 collisions; - __u32 rx_length_errors; - __u32 rx_over_errors; - __u32 rx_crc_errors; - __u32 rx_frame_errors; - __u32 rx_fifo_errors; - __u32 rx_missed_errors; - __u32 tx_aborted_errors; - __u32 tx_carrier_errors; - __u32 tx_fifo_errors; - __u32 tx_heartbeat_errors; - __u32 tx_window_errors; - __u32 rx_compressed; - __u32 tx_compressed; - __u32 rx_nohandler; -}; - -struct rtnl_link_ifmap { - __u64 mem_start; - __u64 mem_end; - __u64 base_addr; - __u16 irq; - __u8 dma; - __u8 port; -}; - -enum { - IFLA_PROTO_DOWN_REASON_UNSPEC = 0, - IFLA_PROTO_DOWN_REASON_MASK = 1, - IFLA_PROTO_DOWN_REASON_VALUE = 2, - __IFLA_PROTO_DOWN_REASON_CNT = 3, - IFLA_PROTO_DOWN_REASON_MAX = 2, -}; - -enum { - IFLA_INFO_UNSPEC = 0, - IFLA_INFO_KIND = 1, - IFLA_INFO_DATA = 2, - IFLA_INFO_XSTATS = 3, - IFLA_INFO_SLAVE_KIND = 4, - IFLA_INFO_SLAVE_DATA = 5, - __IFLA_INFO_MAX = 6, -}; - -enum { - IFLA_VF_INFO_UNSPEC = 0, - IFLA_VF_INFO = 1, - __IFLA_VF_INFO_MAX = 2, -}; - -enum { - IFLA_VF_UNSPEC = 0, - IFLA_VF_MAC = 1, - IFLA_VF_VLAN = 2, - IFLA_VF_TX_RATE = 3, - IFLA_VF_SPOOFCHK = 4, - IFLA_VF_LINK_STATE = 5, - IFLA_VF_RATE = 6, - IFLA_VF_RSS_QUERY_EN = 7, - IFLA_VF_STATS = 8, - IFLA_VF_TRUST = 9, - IFLA_VF_IB_NODE_GUID = 10, - IFLA_VF_IB_PORT_GUID = 11, - IFLA_VF_VLAN_LIST = 12, - IFLA_VF_BROADCAST = 13, - __IFLA_VF_MAX = 14, -}; - -struct ifla_vf_mac { - __u32 vf; - __u8 mac[32]; -}; - -struct ifla_vf_broadcast { - __u8 broadcast[32]; -}; - -struct ifla_vf_vlan { - __u32 vf; - __u32 vlan; - __u32 qos; -}; - -enum { - IFLA_VF_VLAN_INFO_UNSPEC = 0, - IFLA_VF_VLAN_INFO = 1, - __IFLA_VF_VLAN_INFO_MAX = 2, -}; - -struct ifla_vf_vlan_info { - __u32 vf; - __u32 vlan; - __u32 qos; - __be16 vlan_proto; -}; - -struct ifla_vf_tx_rate { - __u32 vf; - __u32 rate; -}; - -struct ifla_vf_rate { - __u32 vf; - __u32 min_tx_rate; - __u32 max_tx_rate; -}; - -struct ifla_vf_spoofchk { - __u32 vf; - __u32 setting; -}; - -struct ifla_vf_link_state { - __u32 vf; - __u32 link_state; -}; - -struct ifla_vf_rss_query_en { - __u32 vf; - __u32 setting; -}; - -enum { - IFLA_VF_STATS_RX_PACKETS = 0, - IFLA_VF_STATS_TX_PACKETS = 1, - IFLA_VF_STATS_RX_BYTES = 2, - IFLA_VF_STATS_TX_BYTES = 3, - IFLA_VF_STATS_BROADCAST = 4, - IFLA_VF_STATS_MULTICAST = 5, - IFLA_VF_STATS_PAD = 6, - IFLA_VF_STATS_RX_DROPPED = 7, - IFLA_VF_STATS_TX_DROPPED = 8, - __IFLA_VF_STATS_MAX = 9, -}; - -struct ifla_vf_trust { - __u32 vf; - __u32 setting; -}; - -enum { - IFLA_VF_PORT_UNSPEC = 0, - IFLA_VF_PORT = 1, - __IFLA_VF_PORT_MAX = 2, -}; - -enum { - IFLA_PORT_UNSPEC = 0, - IFLA_PORT_VF = 1, - IFLA_PORT_PROFILE = 2, - IFLA_PORT_VSI_TYPE = 3, - IFLA_PORT_INSTANCE_UUID = 4, - IFLA_PORT_HOST_UUID = 5, - IFLA_PORT_REQUEST = 6, - IFLA_PORT_RESPONSE = 7, - __IFLA_PORT_MAX = 8, -}; - -struct if_stats_msg { - __u8 family; - __u8 pad1; - __u16 pad2; - __u32 ifindex; - __u32 filter_mask; -}; - -enum { - IFLA_STATS_GETSET_UNSPEC = 0, - IFLA_STATS_GET_FILTERS = 1, - IFLA_STATS_SET_OFFLOAD_XSTATS_L3_STATS = 2, - __IFLA_STATS_GETSET_MAX = 3, -}; - -enum { - IFLA_OFFLOAD_XSTATS_UNSPEC = 0, - IFLA_OFFLOAD_XSTATS_CPU_HIT = 1, - IFLA_OFFLOAD_XSTATS_HW_S_INFO = 2, - IFLA_OFFLOAD_XSTATS_L3_STATS = 3, - __IFLA_OFFLOAD_XSTATS_MAX = 4, -}; - -enum { - IFLA_OFFLOAD_XSTATS_HW_S_INFO_UNSPEC = 0, - IFLA_OFFLOAD_XSTATS_HW_S_INFO_REQUEST = 1, - IFLA_OFFLOAD_XSTATS_HW_S_INFO_USED = 2, - __IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX = 3, -}; - -enum { - XDP_ATTACHED_NONE = 0, - XDP_ATTACHED_DRV = 1, - XDP_ATTACHED_SKB = 2, - XDP_ATTACHED_HW = 3, - XDP_ATTACHED_MULTI = 4, -}; - -enum { - IFLA_XDP_UNSPEC = 0, - IFLA_XDP_FD = 1, - IFLA_XDP_ATTACHED = 2, - IFLA_XDP_FLAGS = 3, - IFLA_XDP_PROG_ID = 4, - IFLA_XDP_DRV_PROG_ID = 5, - IFLA_XDP_SKB_PROG_ID = 6, - IFLA_XDP_HW_PROG_ID = 7, - IFLA_XDP_EXPECTED_FD = 8, - __IFLA_XDP_MAX = 9, -}; - -enum { - IFLA_EVENT_NONE = 0, - IFLA_EVENT_REBOOT = 1, - IFLA_EVENT_FEATURES = 2, - IFLA_EVENT_BONDING_FAILOVER = 3, - IFLA_EVENT_NOTIFY_PEERS = 4, - IFLA_EVENT_IGMP_RESEND = 5, - IFLA_EVENT_BONDING_OPTIONS = 6, -}; - -struct rta_cacheinfo { - __u32 rta_clntref; - __u32 rta_lastuse; - __s32 rta_expires; - __u32 rta_error; - __u32 rta_used; - __u32 rta_id; - __u32 rta_ts; - __u32 rta_tsage; -}; - -enum rtnl_kinds { - RTNL_KIND_NEW = 0, - RTNL_KIND_DEL = 1, - RTNL_KIND_GET = 2, - RTNL_KIND_SET = 3, -}; - -struct rtnl_link { - rtnl_doit_func doit; - rtnl_dumpit_func dumpit; - struct module *owner; - unsigned int flags; - struct callback_head rcu; -}; - -struct rtnl_newlink_tbs { - struct nlattr *tb[66]; - struct nlattr *attr[51]; - struct nlattr *slave_attr[45]; -}; - -struct rtnl_offload_xstats_request_used { - bool request; - bool used; -}; - -struct rtnl_stats_dump_filters { - u32 mask[6]; -}; - -struct rtnl_mdb_dump_ctx { - long int idx; -}; - -typedef int (*pp_nl_fill_cb)(struct sk_buff *, const struct page_pool *, const struct genl_info *); - -struct page_pool_dump_cb { - long unsigned int ifindex; - u32 pp_id; -}; - -struct update_classid_context { - u32 classid; - unsigned int batch; -}; - -struct tc_gact { - __u32 index; - __u32 capab; - int action; - int refcnt; - int bindcnt; -}; - -struct tc_gact_p { - __u16 ptype; - __u16 pval; - int paction; -}; - -enum { - TCA_GACT_UNSPEC = 0, - TCA_GACT_TM = 1, - TCA_GACT_PARMS = 2, - TCA_GACT_PROB = 3, - TCA_GACT_PAD = 4, - __TCA_GACT_MAX = 5, -}; - -struct tcf_gact { - struct tc_action common; - u16 tcfg_ptype; - u16 tcfg_pval; - int tcfg_paction; - atomic_t packets; -}; - -typedef int (*g_rand)(struct tcf_gact *); - -enum { - TC_MQPRIO_HW_OFFLOAD_NONE = 0, - TC_MQPRIO_HW_OFFLOAD_TCS = 1, - __TC_MQPRIO_HW_OFFLOAD_MAX = 2, -}; - -enum { - TC_MQPRIO_MODE_DCB = 0, - TC_MQPRIO_MODE_CHANNEL = 1, - __TC_MQPRIO_MODE_MAX = 2, -}; - -enum { - TC_MQPRIO_SHAPER_DCB = 0, - TC_MQPRIO_SHAPER_BW_RATE = 1, - __TC_MQPRIO_SHAPER_MAX = 2, -}; - -enum { - TCA_MQPRIO_TC_ENTRY_UNSPEC = 0, - TCA_MQPRIO_TC_ENTRY_INDEX = 1, - TCA_MQPRIO_TC_ENTRY_FP = 2, - __TCA_MQPRIO_TC_ENTRY_CNT = 3, - TCA_MQPRIO_TC_ENTRY_MAX = 2, -}; - -enum { - TCA_MQPRIO_UNSPEC = 0, - TCA_MQPRIO_MODE = 1, - TCA_MQPRIO_SHAPER = 2, - TCA_MQPRIO_MIN_RATE64 = 3, - TCA_MQPRIO_MAX_RATE64 = 4, - TCA_MQPRIO_TC_ENTRY = 5, - __TCA_MQPRIO_MAX = 6, -}; - -struct tc_mqprio_caps { - bool validate_queue_counts: 1; -}; - -struct mqprio_sched { - struct Qdisc **qdiscs; - u16 mode; - u16 shaper; - int hw_offload; - u32 flags; - u64 min_rate[16]; - u64 max_rate[16]; - u32 fp[16]; -}; - -enum ethtool_multicast_groups { - ETHNL_MCGRP_MONITOR = 0, -}; - -struct ethnl_dump_ctx { - const struct ethnl_request_ops *ops; - struct ethnl_req_info *req_info; - struct ethnl_reply_data *reply_data; - long unsigned int pos_ifindex; -}; - -typedef void (*ethnl_notify_handler_t)(struct net_device *, unsigned int, const void *); - -enum { - ETHTOOL_A_TUNNEL_UDP_UNSPEC = 0, - ETHTOOL_A_TUNNEL_UDP_TABLE = 1, - __ETHTOOL_A_TUNNEL_UDP_CNT = 2, - ETHTOOL_A_TUNNEL_UDP_MAX = 1, -}; - -struct ethnl_tunnel_info_dump_ctx { - struct ethnl_req_info req_info; - long unsigned int ifindex; -}; - -struct nf_osf_wc { - __u32 wc; - __u32 val; -}; - -struct nf_osf_opt { - __u16 kind; - __u16 length; - struct nf_osf_wc wc; -}; - -struct nf_osf_user_finger { - struct nf_osf_wc wss; - __u8 ttl; - __u8 df; - __u16 ss; - __u16 mss; - __u16 opt_num; - char genre[32]; - char version[32]; - char subtype[32]; - struct nf_osf_opt opt[40]; -}; - -enum iana_options { - OSFOPT_EOL = 0, - OSFOPT_NOP = 1, - OSFOPT_MSS = 2, - OSFOPT_WSO = 3, - OSFOPT_SACKP = 4, - OSFOPT_SACK = 5, - OSFOPT_ECHO = 6, - OSFOPT_ECHOREPLY = 7, - OSFOPT_TS = 8, - OSFOPT_POCP = 9, - OSFOPT_POSP = 10, - OSFOPT_EMPTY = 255, -}; - -enum nf_osf_window_size_options { - OSF_WSS_PLAIN = 0, - OSF_WSS_MSS = 1, - OSF_WSS_MTU = 2, - OSF_WSS_MODULO = 3, - OSF_WSS_MAX = 4, -}; - -enum nf_osf_attr_type { - OSF_ATTR_UNSPEC = 0, - OSF_ATTR_FINGER = 1, - OSF_ATTR_MAX = 2, -}; - -enum nf_osf_msg_types { - OSF_MSG_ADD = 0, - OSF_MSG_REMOVE = 1, - OSF_MSG_MAX = 2, -}; - -enum osf_fmatch_states { - FMATCH_WRONG = 0, - FMATCH_OK = 1, - FMATCH_OPT_WRONG = 2, -}; - -struct nf_osf_finger { - struct callback_head callback_head; - struct list_head finger_entry; - struct nf_osf_user_finger finger; -}; - -struct nf_osf_hdr_ctx { - bool df; - u16 window; - u16 totlen; - const unsigned char *optp; - unsigned int optsize; -}; - -enum nft_objref_attributes { - NFTA_OBJREF_UNSPEC = 0, - NFTA_OBJREF_IMM_TYPE = 1, - NFTA_OBJREF_IMM_NAME = 2, - NFTA_OBJREF_SET_SREG = 3, - NFTA_OBJREF_SET_NAME = 4, - NFTA_OBJREF_SET_ID = 5, - __NFTA_OBJREF_MAX = 6, -}; - -struct nft_objref_map { - struct nft_set *set; - u8 sreg; - struct nft_set_binding binding; -}; - -enum nft_masq_attributes { - NFTA_MASQ_UNSPEC = 0, - NFTA_MASQ_FLAGS = 1, - NFTA_MASQ_REG_PROTO_MIN = 2, - NFTA_MASQ_REG_PROTO_MAX = 3, - __NFTA_MASQ_MAX = 4, -}; - -struct nft_masq { - u32 flags; - u8 sreg_proto_min; - u8 sreg_proto_max; -}; - -struct xt_NFQ_info { - __u16 queuenum; -}; - -struct xt_NFQ_info_v1 { - __u16 queuenum; - __u16 queues_total; -}; - -struct xt_NFQ_info_v2 { - __u16 queuenum; - __u16 queues_total; - __u16 bypass; -}; - -struct xt_NFQ_info_v3 { - __u16 queuenum; - __u16 queues_total; - __u16 flags; -}; - -struct xt_dscp_info { - __u8 dscp; - __u8 invert; -}; - -struct xt_tos_match_info { - __u8 tos_mask; - __u8 tos_value; - __u8 invert; -}; - -enum xt_quota_flags { - XT_QUOTA_INVERT = 1, -}; - -struct xt_quota_priv; - -struct xt_quota_info { - __u32 flags; - __u32 pad; - __u64 quota; - struct xt_quota_priv *master; -}; - -struct xt_quota_priv { - spinlock_t lock; - uint64_t quota; -}; - -struct ip_vs_service_user { - __u16 protocol; - __be32 addr; - __be16 port; - __u32 fwmark; - char sched_name[16]; - unsigned int flags; - unsigned int timeout; - __be32 netmask; -}; - -struct ip_vs_dest_user { - __be32 addr; - __be16 port; - unsigned int conn_flags; - int weight; - __u32 u_threshold; - __u32 l_threshold; -}; - -struct ip_vs_stats_user { - __u32 conns; - __u32 inpkts; - __u32 outpkts; - __u64 inbytes; - __u64 outbytes; - __u32 cps; - __u32 inpps; - __u32 outpps; - __u32 inbps; - __u32 outbps; -}; - -struct ip_vs_getinfo { - unsigned int version; - unsigned int size; - unsigned int num_services; -}; - -struct ip_vs_service_entry { - __u16 protocol; - __be32 addr; - __be16 port; - __u32 fwmark; - char sched_name[16]; - unsigned int flags; - unsigned int timeout; - __be32 netmask; - unsigned int num_dests; - struct ip_vs_stats_user stats; -}; - -struct ip_vs_dest_entry { - __be32 addr; - __be16 port; - unsigned int conn_flags; - int weight; - __u32 u_threshold; - __u32 l_threshold; - __u32 activeconns; - __u32 inactconns; - __u32 persistconns; - struct ip_vs_stats_user stats; -}; - -struct ip_vs_get_dests { - __u16 protocol; - __be32 addr; - __be16 port; - __u32 fwmark; - unsigned int num_dests; - struct ip_vs_dest_entry entrytable[0]; -}; - -struct ip_vs_get_services { - unsigned int num_services; - struct ip_vs_service_entry entrytable[0]; -}; - -struct ip_vs_timeout_user { - int tcp_timeout; - int tcp_fin_timeout; - int udp_timeout; -}; - -struct ip_vs_daemon_user { - int state; - char mcast_ifn[16]; - int syncid; -}; - -struct ip_vs_flags { - __u32 flags; - __u32 mask; -}; - -enum { - IPVS_CMD_UNSPEC = 0, - IPVS_CMD_NEW_SERVICE = 1, - IPVS_CMD_SET_SERVICE = 2, - IPVS_CMD_DEL_SERVICE = 3, - IPVS_CMD_GET_SERVICE = 4, - IPVS_CMD_NEW_DEST = 5, - IPVS_CMD_SET_DEST = 6, - IPVS_CMD_DEL_DEST = 7, - IPVS_CMD_GET_DEST = 8, - IPVS_CMD_NEW_DAEMON = 9, - IPVS_CMD_DEL_DAEMON = 10, - IPVS_CMD_GET_DAEMON = 11, - IPVS_CMD_SET_CONFIG = 12, - IPVS_CMD_GET_CONFIG = 13, - IPVS_CMD_SET_INFO = 14, - IPVS_CMD_GET_INFO = 15, - IPVS_CMD_ZERO = 16, - IPVS_CMD_FLUSH = 17, - __IPVS_CMD_MAX = 18, -}; - -enum { - IPVS_CMD_ATTR_UNSPEC = 0, - IPVS_CMD_ATTR_SERVICE = 1, - IPVS_CMD_ATTR_DEST = 2, - IPVS_CMD_ATTR_DAEMON = 3, - IPVS_CMD_ATTR_TIMEOUT_TCP = 4, - IPVS_CMD_ATTR_TIMEOUT_TCP_FIN = 5, - IPVS_CMD_ATTR_TIMEOUT_UDP = 6, - __IPVS_CMD_ATTR_MAX = 7, -}; - -enum { - IPVS_SVC_ATTR_UNSPEC = 0, - IPVS_SVC_ATTR_AF = 1, - IPVS_SVC_ATTR_PROTOCOL = 2, - IPVS_SVC_ATTR_ADDR = 3, - IPVS_SVC_ATTR_PORT = 4, - IPVS_SVC_ATTR_FWMARK = 5, - IPVS_SVC_ATTR_SCHED_NAME = 6, - IPVS_SVC_ATTR_FLAGS = 7, - IPVS_SVC_ATTR_TIMEOUT = 8, - IPVS_SVC_ATTR_NETMASK = 9, - IPVS_SVC_ATTR_STATS = 10, - IPVS_SVC_ATTR_PE_NAME = 11, - IPVS_SVC_ATTR_STATS64 = 12, - __IPVS_SVC_ATTR_MAX = 13, -}; - -enum { - IPVS_DEST_ATTR_UNSPEC = 0, - IPVS_DEST_ATTR_ADDR = 1, - IPVS_DEST_ATTR_PORT = 2, - IPVS_DEST_ATTR_FWD_METHOD = 3, - IPVS_DEST_ATTR_WEIGHT = 4, - IPVS_DEST_ATTR_U_THRESH = 5, - IPVS_DEST_ATTR_L_THRESH = 6, - IPVS_DEST_ATTR_ACTIVE_CONNS = 7, - IPVS_DEST_ATTR_INACT_CONNS = 8, - IPVS_DEST_ATTR_PERSIST_CONNS = 9, - IPVS_DEST_ATTR_STATS = 10, - IPVS_DEST_ATTR_ADDR_FAMILY = 11, - IPVS_DEST_ATTR_STATS64 = 12, - IPVS_DEST_ATTR_TUN_TYPE = 13, - IPVS_DEST_ATTR_TUN_PORT = 14, - IPVS_DEST_ATTR_TUN_FLAGS = 15, - __IPVS_DEST_ATTR_MAX = 16, -}; - -enum { - IPVS_DAEMON_ATTR_UNSPEC = 0, - IPVS_DAEMON_ATTR_STATE = 1, - IPVS_DAEMON_ATTR_MCAST_IFN = 2, - IPVS_DAEMON_ATTR_SYNC_ID = 3, - IPVS_DAEMON_ATTR_SYNC_MAXLEN = 4, - IPVS_DAEMON_ATTR_MCAST_GROUP = 5, - IPVS_DAEMON_ATTR_MCAST_GROUP6 = 6, - IPVS_DAEMON_ATTR_MCAST_PORT = 7, - IPVS_DAEMON_ATTR_MCAST_TTL = 8, - __IPVS_DAEMON_ATTR_MAX = 9, -}; - -enum { - IPVS_STATS_ATTR_UNSPEC = 0, - IPVS_STATS_ATTR_CONNS = 1, - IPVS_STATS_ATTR_INPKTS = 2, - IPVS_STATS_ATTR_OUTPKTS = 3, - IPVS_STATS_ATTR_INBYTES = 4, - IPVS_STATS_ATTR_OUTBYTES = 5, - IPVS_STATS_ATTR_CPS = 6, - IPVS_STATS_ATTR_INPPS = 7, - IPVS_STATS_ATTR_OUTPPS = 8, - IPVS_STATS_ATTR_INBPS = 9, - IPVS_STATS_ATTR_OUTBPS = 10, - IPVS_STATS_ATTR_PAD = 11, - __IPVS_STATS_ATTR_MAX = 12, -}; - -enum { - IPVS_INFO_ATTR_UNSPEC = 0, - IPVS_INFO_ATTR_VERSION = 1, - IPVS_INFO_ATTR_CONN_TAB_SIZE = 2, - __IPVS_INFO_ATTR_MAX = 3, -}; - -struct ip_vs_service_user_kern { - u16 af; - u16 protocol; - union nf_inet_addr addr; - __be16 port; - u32 fwmark; - char *sched_name; - char *pe_name; - unsigned int flags; - unsigned int timeout; - __be32 netmask; -}; - -struct ip_vs_dest_user_kern { - union nf_inet_addr addr; - __be16 port; - unsigned int conn_flags; - int weight; - u32 u_threshold; - u32 l_threshold; - u16 af; - u16 tun_type; - __be16 tun_port; - u16 tun_flags; -}; - -struct ip_vs_iter { - struct seq_net_private p; - struct hlist_head *table; - int bucket; -}; - -enum { - BPF_WRITE_HDR_TCP_CURRENT_MSS = 1, - BPF_WRITE_HDR_TCP_SYNACK_COOKIE = 2, -}; - -enum tsq_flags { - TSQF_THROTTLED = 1, - TSQF_QUEUED = 2, - TCPF_TSQ_DEFERRED = 4, - TCPF_WRITE_TIMER_DEFERRED = 8, - TCPF_DELACK_TIMER_DEFERRED = 16, - TCPF_MTU_REDUCED_DEFERRED = 32, - TCPF_ACK_DEFERRED = 64, -}; - -struct mptcp_out_options {}; - -struct tcp_out_options { - u16 options; - u16 mss; - u8 ws; - u8 num_sack_blocks; - u8 hash_size; - u8 bpf_opt_len; - __u8 *hash_location; - __u32 tsval; - __u32 tsecr; - struct tcp_fastopen_cookie *fastopen_cookie; - struct mptcp_out_options mptcp; -}; - -struct tsq_tasklet { - struct tasklet_struct tasklet; - struct list_head head; -}; - -struct ipt_ah { - __u32 spis[2]; - __u8 invflags; -}; - -struct frag_queue { - struct inet_frag_queue q; - int iif; - __u16 nhoffset; - u8 ecn; -}; - -enum { - ILA_HOOK_ROUTE_OUTPUT = 0, - ILA_HOOK_ROUTE_INPUT = 1, -}; - -struct ila_lwt { - struct ila_params p; - struct dst_cache dst_cache; - u32 connected: 1; - u32 lwt_output: 1; -}; - -struct nft_dup_ipv6 { - u8 sreg_addr; - u8 sreg_dev; -}; - -struct vti6_net { - struct net_device *fb_tnl_dev; - struct ip6_tnl *tnls_r_l[32]; - struct ip6_tnl *tnls_wc[1]; - struct ip6_tnl **tnls[2]; -}; - -union net_bridge_eht_addr { - __be32 ip4; - struct in6_addr ip6; -}; - -struct net_bridge_group_eht_host { - struct rb_node rb_node; - union net_bridge_eht_addr h_addr; - struct hlist_head set_entries; - unsigned int num_entries; - unsigned char filter_mode; - struct net_bridge_port_group *pg; -}; - -struct net_bridge_group_eht_set; - -struct net_bridge_group_eht_set_entry { - struct rb_node rb_node; - struct hlist_node host_list; - union net_bridge_eht_addr h_addr; - struct timer_list timer; - struct net_bridge *br; - struct net_bridge_group_eht_set *eht_set; - struct net_bridge_group_eht_host *h_parent; - struct net_bridge_mcast_gc mcast_gc; -}; - -struct net_bridge_group_eht_set { - struct rb_node rb_node; - union net_bridge_eht_addr src_addr; - struct rb_root entry_tree; - struct timer_list timer; - struct net_bridge_port_group *pg; - struct net_bridge *br; - struct net_bridge_mcast_gc mcast_gc; -}; - -struct gssp_upcall_data { - struct xdr_netobj in_handle; - struct gssp_in_token in_token; - struct xdr_netobj out_handle; - struct xdr_netobj out_token; - struct rpcsec_gss_oid mech_oid; - struct svc_cred creds; - int found_creds; - int major_status; - int minor_status; -}; - -enum { - GSSX_NULL = 0, - GSSX_INDICATE_MECHS = 1, - GSSX_GET_CALL_CONTEXT = 2, - GSSX_IMPORT_AND_CANON_NAME = 3, - GSSX_EXPORT_CRED = 4, - GSSX_IMPORT_CRED = 5, - GSSX_ACQUIRE_CRED = 6, - GSSX_STORE_CRED = 7, - GSSX_INIT_SEC_CONTEXT = 8, - GSSX_ACCEPT_SEC_CONTEXT = 9, - GSSX_RELEASE_HANDLE = 10, - GSSX_GET_MIC = 11, - GSSX_VERIFY = 12, - GSSX_WRAP = 13, - GSSX_UNWRAP = 14, - GSSX_WRAP_SIZE_LIMIT = 15, -}; - -enum { - SCTP_DEFAULT_OUTSTREAMS = 10, -}; - -enum { - SCTP_DEFAULT_INSTREAMS = 65535, -}; - -struct errormap { - char *name; - int val; - int namelen; - struct hlist_node list; -}; - -struct ovs_action_push_eth { - struct ovs_key_ethernet addresses; -}; - -struct deferred_action { - struct sk_buff *skb; - const struct nlattr *actions; - int actions_len; - struct sw_flow_key pkt_key; -}; - -struct ovs_frag_data { - long unsigned int dst; - struct vport *vport; - struct ovs_skb_cb cb; - __be16 inner_protocol; - u16 network_offset; - u16 vlan_tci; - __be16 vlan_proto; - unsigned int l2_len; - u8 mac_proto; - u8 l2_data[30]; -}; - -struct action_fifo { - int head; - int tail; - struct deferred_action fifo[10]; -}; - -struct action_flow_keys { - struct sw_flow_key key[3]; -}; - -enum virtio_vsock_event_id { - VIRTIO_VSOCK_EVENT_TRANSPORT_RESET = 0, -}; - -struct virtio_vsock_event { - __le32 id; -}; - -struct virtio_vsock { - struct virtio_device *vdev; - struct virtqueue *vqs[3]; - struct work_struct tx_work; - struct work_struct rx_work; - struct work_struct event_work; - struct mutex tx_lock; - bool tx_run; - long: 0; - struct work_struct send_pkt_work; - struct sk_buff_head send_pkt_queue; - atomic_t queued_replies; - long: 0; - struct mutex rx_lock; - bool rx_run; - int: 0; - int rx_buf_nr; - int rx_buf_max_nr; - long: 0; - struct mutex event_lock; - bool event_run; - struct virtio_vsock_event event_list[8]; - int: 0; - u32 guest_cid; - bool seqpacket_allow; - long: 0; - struct scatterlist *out_sgs[18]; - struct scatterlist out_bufs[18]; -} __attribute__((packed)); - -struct handshake_net { - spinlock_t hn_lock; - int hn_pending; - int hn_pending_max; - struct list_head hn_requests; - long unsigned int hn_flags; -}; - -enum hn_flags_bits { - HANDSHAKE_F_NET_DRAINING = 0, -}; - -struct wchan_info { - long unsigned int pc; - int count; -}; - -struct prctl_mm_map { - __u64 start_code; - __u64 end_code; - __u64 start_data; - __u64 end_data; - __u64 start_brk; - __u64 brk; - __u64 start_stack; - __u64 arg_start; - __u64 arg_end; - __u64 env_start; - __u64 env_end; - __u64 *auxv; - __u32 auxv_size; - __u32 exe_fd; -}; - -struct rlimit64 { - __u64 rlim_cur; - __u64 rlim_max; -}; - -struct tms { - __kernel_clock_t tms_utime; - __kernel_clock_t tms_stime; - __kernel_clock_t tms_cutime; - __kernel_clock_t tms_cstime; -}; - -struct getcpu_cache { - long unsigned int blob[16]; -}; - -enum { - AFFINITY = 0, - AFFINITY_LIST = 1, - EFFECTIVE = 2, - EFFECTIVE_LIST = 3, -}; - -struct modversion_info { - long unsigned int crc; - char name[56]; -}; - -enum freezer_state_flags { - CGROUP_FREEZER_ONLINE = 1, - CGROUP_FREEZING_SELF = 2, - CGROUP_FREEZING_PARENT = 4, - CGROUP_FROZEN = 8, - CGROUP_FREEZING = 6, -}; - -struct freezer { - struct cgroup_subsys_state css; - unsigned int state; -}; - -struct audit_rule_data { - __u32 flags; - __u32 action; - __u32 field_count; - __u32 mask[64]; - __u32 fields[64]; - __u32 values[64]; - __u32 fieldflags[64]; - __u32 buflen; - char buf[0]; -}; - -struct filter_pred; - -struct prog_entry { - int target; - int when_to_branch; - struct filter_pred *pred; -}; - -struct regex; - -typedef int (*regex_match_func)(char *, struct regex *, int); - -struct regex { - char pattern[256]; - int len; - int field_len; - regex_match_func match; -}; - -enum filter_op_ids { - OP_GLOB = 0, - OP_NE = 1, - OP_EQ = 2, - OP_LE = 3, - OP_LT = 4, - OP_GE = 5, - OP_GT = 6, - OP_BAND = 7, - OP_MAX = 8, -}; - -enum filter_pred_fn { - FILTER_PRED_FN_NOP = 0, - FILTER_PRED_FN_64 = 1, - FILTER_PRED_FN_64_CPUMASK = 2, - FILTER_PRED_FN_S64 = 3, - FILTER_PRED_FN_U64 = 4, - FILTER_PRED_FN_32 = 5, - FILTER_PRED_FN_32_CPUMASK = 6, - FILTER_PRED_FN_S32 = 7, - FILTER_PRED_FN_U32 = 8, - FILTER_PRED_FN_16 = 9, - FILTER_PRED_FN_16_CPUMASK = 10, - FILTER_PRED_FN_S16 = 11, - FILTER_PRED_FN_U16 = 12, - FILTER_PRED_FN_8 = 13, - FILTER_PRED_FN_8_CPUMASK = 14, - FILTER_PRED_FN_S8 = 15, - FILTER_PRED_FN_U8 = 16, - FILTER_PRED_FN_COMM = 17, - FILTER_PRED_FN_STRING = 18, - FILTER_PRED_FN_STRLOC = 19, - FILTER_PRED_FN_STRRELLOC = 20, - FILTER_PRED_FN_PCHAR_USER = 21, - FILTER_PRED_FN_PCHAR = 22, - FILTER_PRED_FN_CPU = 23, - FILTER_PRED_FN_CPU_CPUMASK = 24, - FILTER_PRED_FN_CPUMASK = 25, - FILTER_PRED_FN_CPUMASK_CPU = 26, - FILTER_PRED_FN_FUNCTION = 27, - FILTER_PRED_FN_ = 28, - FILTER_PRED_TEST_VISITED = 29, -}; - -struct filter_pred { - struct regex *regex; - struct cpumask *mask; - short unsigned int *ops; - struct ftrace_event_field *field; - u64 val; - u64 val2; - enum filter_pred_fn fn_num; - int offset; - int not; - int op; -}; - -enum { - FILT_ERR_NONE = 0, - FILT_ERR_INVALID_OP = 1, - FILT_ERR_TOO_MANY_OPEN = 2, - FILT_ERR_TOO_MANY_CLOSE = 3, - FILT_ERR_MISSING_QUOTE = 4, - FILT_ERR_MISSING_BRACE_OPEN = 5, - FILT_ERR_MISSING_BRACE_CLOSE = 6, - FILT_ERR_OPERAND_TOO_LONG = 7, - FILT_ERR_EXPECT_STRING = 8, - FILT_ERR_EXPECT_DIGIT = 9, - FILT_ERR_ILLEGAL_FIELD_OP = 10, - FILT_ERR_FIELD_NOT_FOUND = 11, - FILT_ERR_ILLEGAL_INTVAL = 12, - FILT_ERR_BAD_SUBSYS_FILTER = 13, - FILT_ERR_TOO_MANY_PREDS = 14, - FILT_ERR_INVALID_FILTER = 15, - FILT_ERR_INVALID_CPULIST = 16, - FILT_ERR_IP_FIELD_ONLY = 17, - FILT_ERR_INVALID_VALUE = 18, - FILT_ERR_NO_FUNCTION = 19, - FILT_ERR_ERRNO = 20, - FILT_ERR_NO_FILTER = 21, -}; - -struct filter_parse_error { - int lasterr; - int lasterr_pos; -}; - -typedef int (*parse_pred_fn)(const char *, void *, int, struct filter_parse_error *, struct filter_pred **); - -enum { - INVERT = 1, - PROCESS_AND = 2, - PROCESS_OR = 4, -}; - -struct ustring_buffer { - char buffer[1024]; -}; - -enum { - TOO_MANY_CLOSE = -1, - TOO_MANY_OPEN = -2, - MISSING_QUOTE = -3, -}; - -struct filter_list { - struct list_head list; - struct event_filter *filter; -}; - -struct function_filter_data { - struct ftrace_ops *ops; - int first_filter; - int first_notrace; -}; - -struct bpf_iter_num { - __u64 __opaque[1]; -}; - -struct bpf_iter_target_info { - struct list_head list; - const struct bpf_iter_reg *reg_info; - u32 btf_id; -}; - -struct bpf_iter_link { - struct bpf_link link; - struct bpf_iter_aux_info aux; - struct bpf_iter_target_info *tinfo; -}; - -struct bpf_iter_priv_data { - struct bpf_iter_target_info *tinfo; - const struct bpf_iter_seq_info *seq_info; - struct bpf_prog *prog; - u64 session_id; - u64 seq_num; - bool done_stop; - long: 0; - u8 target_private[0]; -}; - -typedef u64 (*btf_bpf_for_each_map_elem)(struct bpf_map *, void *, void *, u64); - -typedef u64 (*btf_bpf_loop)(u32, void *, void *, u64); - -struct bpf_iter_num_kern { - int cur; - int end; -}; - -struct bpf_iter__cgroup { - union { - struct bpf_iter_meta *meta; - }; - union { - struct cgroup *cgroup; - }; -}; - -struct cgroup_iter_priv { - struct cgroup_subsys_state *start_css; - bool visited_all; - bool terminate; - int order; -}; - -struct bpf_iter_css { - __u64 __opaque[3]; -}; - -struct bpf_iter_css_kern { - struct cgroup_subsys_state *start; - struct cgroup_subsys_state *pos; - unsigned int flags; -}; - -struct bp_slots_histogram { - atomic_t *count; -}; - -struct bp_cpuinfo { - unsigned int cpu_pinned; - struct bp_slots_histogram tsk_pinned; -}; - -struct trace_event_raw_mm_lru_insertion { - struct trace_entry ent; - struct folio *folio; - long unsigned int pfn; - enum lru_list lru; - long unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_mm_lru_activate { - struct trace_entry ent; - struct folio *folio; - long unsigned int pfn; - char __data[0]; -}; - -struct trace_event_data_offsets_mm_lru_insertion {}; - -struct trace_event_data_offsets_mm_lru_activate {}; - -typedef void (*btf_trace_mm_lru_insertion)(void *, struct folio *); - -typedef void (*btf_trace_mm_lru_activate)(void *, struct folio *); - -struct cpu_fbatches { - local_lock_t lock; - struct folio_batch lru_add; - struct folio_batch lru_deactivate_file; - struct folio_batch lru_deactivate; - struct folio_batch lru_lazyfree; - struct folio_batch lru_activate; - local_lock_t lock_irq; - struct folio_batch lru_move_tail; -}; - -typedef void (*move_fn_t)(struct lruvec *, struct folio *); - -struct trace_event_raw_mm_compaction_isolate_template { - struct trace_entry ent; - long unsigned int start_pfn; - long unsigned int end_pfn; - long unsigned int nr_scanned; - long unsigned int nr_taken; - char __data[0]; -}; - -struct trace_event_raw_mm_compaction_migratepages { - struct trace_entry ent; - long unsigned int nr_migrated; - long unsigned int nr_failed; - char __data[0]; -}; - -struct trace_event_raw_mm_compaction_begin { - struct trace_entry ent; - long unsigned int zone_start; - long unsigned int migrate_pfn; - long unsigned int free_pfn; - long unsigned int zone_end; - bool sync; - char __data[0]; -}; - -struct trace_event_raw_mm_compaction_end { - struct trace_entry ent; - long unsigned int zone_start; - long unsigned int migrate_pfn; - long unsigned int free_pfn; - long unsigned int zone_end; - bool sync; - int status; - char __data[0]; -}; - -struct trace_event_raw_mm_compaction_try_to_compact_pages { - struct trace_entry ent; - int order; - long unsigned int gfp_mask; - int prio; - char __data[0]; -}; - -struct trace_event_raw_mm_compaction_suitable_template { - struct trace_entry ent; - int nid; - enum zone_type idx; - int order; - int ret; - char __data[0]; -}; - -struct trace_event_raw_mm_compaction_defer_template { - struct trace_entry ent; - int nid; - enum zone_type idx; - int order; - unsigned int considered; - unsigned int defer_shift; - int order_failed; - char __data[0]; -}; - -struct trace_event_raw_mm_compaction_kcompactd_sleep { - struct trace_entry ent; - int nid; - char __data[0]; -}; - -struct trace_event_raw_kcompactd_wake_template { - struct trace_entry ent; - int nid; - int order; - enum zone_type highest_zoneidx; - char __data[0]; -}; - -struct trace_event_data_offsets_mm_compaction_isolate_template {}; - -struct trace_event_data_offsets_mm_compaction_migratepages {}; - -struct trace_event_data_offsets_mm_compaction_begin {}; - -struct trace_event_data_offsets_mm_compaction_end {}; - -struct trace_event_data_offsets_mm_compaction_try_to_compact_pages {}; - -struct trace_event_data_offsets_mm_compaction_suitable_template {}; - -struct trace_event_data_offsets_mm_compaction_defer_template {}; - -struct trace_event_data_offsets_mm_compaction_kcompactd_sleep {}; - -struct trace_event_data_offsets_kcompactd_wake_template {}; - -typedef void (*btf_trace_mm_compaction_isolate_migratepages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - -typedef void (*btf_trace_mm_compaction_isolate_freepages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - -typedef void (*btf_trace_mm_compaction_fast_isolate_freepages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - -typedef void (*btf_trace_mm_compaction_migratepages)(void *, unsigned int, unsigned int); - -typedef void (*btf_trace_mm_compaction_begin)(void *, struct compact_control *, long unsigned int, long unsigned int, bool); - -typedef void (*btf_trace_mm_compaction_end)(void *, struct compact_control *, long unsigned int, long unsigned int, bool, int); - -typedef void (*btf_trace_mm_compaction_try_to_compact_pages)(void *, int, gfp_t, int); - -typedef void (*btf_trace_mm_compaction_finished)(void *, struct zone *, int, int); - -typedef void (*btf_trace_mm_compaction_suitable)(void *, struct zone *, int, int); - -typedef void (*btf_trace_mm_compaction_deferred)(void *, struct zone *, int); - -typedef void (*btf_trace_mm_compaction_defer_compaction)(void *, struct zone *, int); - -typedef void (*btf_trace_mm_compaction_defer_reset)(void *, struct zone *, int); - -typedef void (*btf_trace_mm_compaction_kcompactd_sleep)(void *, int); - -typedef void (*btf_trace_mm_compaction_wakeup_kcompactd)(void *, int, int, enum zone_type); - -typedef void (*btf_trace_mm_compaction_kcompactd_wake)(void *, int, int, enum zone_type); - -typedef enum { - ISOLATE_ABORT = 0, - ISOLATE_NONE = 1, - ISOLATE_SUCCESS = 2, -} isolate_migrate_t; - -union swap_header { - struct { - char reserved[4086]; - char magic[10]; - } magic; - struct { - char bootbits[1024]; - __u32 version; - __u32 last_page; - __u32 nr_badpages; - unsigned char sws_uuid[16]; - unsigned char sws_volume[16]; - __u32 padding[117]; - __u32 badpages[1]; - } info; -}; - -struct swap_extent { - struct rb_node rb_node; - long unsigned int start_page; - long unsigned int nr_pages; - sector_t start_block; -}; - -struct mnt_idmap { - struct uid_gid_map uid_map; - struct uid_gid_map gid_map; - refcount_t count; -}; - -struct kioctx; - -struct kioctx_table { - struct callback_head rcu; - unsigned int nr; - struct kioctx *table[0]; -}; - -typedef __kernel_ulong_t aio_context_t; - -enum { - IOCB_CMD_PREAD = 0, - IOCB_CMD_PWRITE = 1, - IOCB_CMD_FSYNC = 2, - IOCB_CMD_FDSYNC = 3, - IOCB_CMD_POLL = 5, - IOCB_CMD_NOOP = 6, - IOCB_CMD_PREADV = 7, - IOCB_CMD_PWRITEV = 8, -}; - -struct io_event { - __u64 data; - __u64 obj; - __s64 res; - __s64 res2; -}; - -struct iocb { - __u64 aio_data; - __u32 aio_key; - __kernel_rwf_t aio_rw_flags; - __u16 aio_lio_opcode; - __s16 aio_reqprio; - __u32 aio_fildes; - __u64 aio_buf; - __u64 aio_nbytes; - __s64 aio_offset; - __u64 aio_reserved2; - __u32 aio_flags; - __u32 aio_resfd; -}; - -typedef int kiocb_cancel_fn(struct kiocb *); - -struct aio_ring { - unsigned int id; - unsigned int nr; - unsigned int head; - unsigned int tail; - unsigned int magic; - unsigned int compat_features; - unsigned int incompat_features; - unsigned int header_length; - struct io_event io_events[0]; -}; - -struct kioctx_cpu; - -struct ctx_rq_wait; - -struct kioctx { - struct percpu_ref users; - atomic_t dead; - struct percpu_ref reqs; - long unsigned int user_id; - struct kioctx_cpu *cpu; - unsigned int req_batch; - unsigned int max_reqs; - unsigned int nr_events; - long unsigned int mmap_base; - long unsigned int mmap_size; - struct folio **ring_folios; - long int nr_pages; - struct rcu_work free_rwork; - struct ctx_rq_wait *rq_wait; - long: 64; - long: 64; - long: 64; - struct { - atomic_t reqs_available; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - }; - struct { - spinlock_t ctx_lock; - struct list_head active_reqs; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - }; - struct { - struct mutex ring_lock; - wait_queue_head_t wait; - long: 64; - }; - struct { - unsigned int tail; - unsigned int completed_events; - spinlock_t completion_lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - }; - struct folio *internal_folios[8]; - struct file *aio_ring_file; - unsigned int id; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct kioctx_cpu { - unsigned int reqs_available; -}; - -struct ctx_rq_wait { - struct completion comp; - atomic_t count; -}; - -struct fsync_iocb { - struct file *file; - struct work_struct work; - bool datasync; - struct cred *creds; -}; - -struct poll_iocb { - struct file *file; - struct wait_queue_head *head; - __poll_t events; - bool cancelled; - bool work_scheduled; - bool work_need_resched; - struct wait_queue_entry wait; - struct work_struct work; -}; - -struct aio_kiocb { - union { - struct file *ki_filp; - struct kiocb rw; - struct fsync_iocb fsync; - struct poll_iocb poll; - }; - struct kioctx *ki_ctx; - kiocb_cancel_fn *ki_cancel; - struct io_event ki_res; - struct list_head ki_list; - refcount_t ki_refcnt; - struct eventfd_ctx *ki_eventfd; -}; - -struct aio_waiter { - struct wait_queue_entry w; - size_t min_nr; -}; - -struct aio_poll_table { - struct poll_table_struct pt; - struct aio_kiocb *iocb; - bool queued; - int error; -}; - -struct __aio_sigset { - const sigset_t *sigmask; - size_t sigsetsize; -}; - -struct pts_mount_opts { - int setuid; - int setgid; - kuid_t uid; - kgid_t gid; - umode_t mode; - umode_t ptmxmode; - int reserve; - int max; -}; - -enum { - Opt_uid___11 = 0, - Opt_gid___12 = 1, - Opt_mode___8 = 2, - Opt_ptmxmode = 3, - Opt_newinstance = 4, - Opt_max = 5, - Opt_err___16 = 6, -}; - -struct pts_fs_info { - struct ida allocated_ptys; - struct pts_mount_opts mount_opts; - struct super_block *sb; - struct dentry *ptmx_dentry; -}; - -struct fsuuid { - __u32 fsu_len; - __u32 fsu_flags; - __u8 fsu_uuid[0]; -}; - -struct move_extent { - __u32 reserved; - __u32 donor_fd; - __u64 orig_start; - __u64 donor_start; - __u64 len; - __u64 moved_len; -}; - -struct ext4_new_group_input { - __u32 group; - __u64 block_bitmap; - __u64 inode_bitmap; - __u64 inode_table; - __u32 blocks_count; - __u16 reserved_blocks; - __u16 unused; -}; - -typedef void ext4_update_sb_callback(struct ext4_super_block *, const void *); - -struct getfsmap_info { - struct super_block *gi_sb; - struct fsmap_head *gi_data; - unsigned int gi_idx; - __u32 gi_last_flags; -}; - -struct workspace___3 { - void *mem; - size_t mem_size; - size_t window_size; -}; - -enum exfat_validate_dentry_mode { - ES_MODE_GET_FILE_ENTRY = 0, - ES_MODE_GET_STRM_ENTRY = 1, - ES_MODE_GET_NAME_ENTRY = 2, - ES_MODE_GET_CRITICAL_SEC_ENTRY = 3, - ES_MODE_GET_BENIGN_SEC_ENTRY = 4, -}; - -enum { - DIRENT_STEP_FILE = 0, - DIRENT_STEP_STRM = 1, - DIRENT_STEP_NAME = 2, - DIRENT_STEP_SECD = 3, -}; - -struct nfs2_fh { - char data[32]; -}; - -struct nfs3_fh { - short unsigned int size; - unsigned char data[64]; -}; - -struct nfs_mount_data { - int version; - int fd; - struct nfs2_fh old_root; - int flags; - int rsize; - int wsize; - int timeo; - int retrans; - int acregmin; - int acregmax; - int acdirmin; - int acdirmax; - struct sockaddr_in addr; - char hostname[256]; - int namlen; - unsigned int bsize; - struct nfs3_fh root; - int pseudoflavor; - char context[257]; -}; - -struct nfs_string { - unsigned int len; - const char *data; -}; - -struct nfs4_mount_data { - int version; - int flags; - int rsize; - int wsize; - int timeo; - int retrans; - int acregmin; - int acregmax; - int acdirmin; - int acdirmax; - struct nfs_string client_addr; - struct nfs_string mnt_path; - struct nfs_string hostname; - unsigned int host_addrlen; - struct sockaddr *host_addr; - int proto; - int auth_flavourlen; - int *auth_flavours; -}; - -enum nfs_param { - Opt_ac = 0, - Opt_acdirmax___2 = 1, - Opt_acdirmin = 2, - Opt_acl___7 = 3, - Opt_acregmax___2 = 4, - Opt_acregmin = 5, - Opt_actimeo___2 = 6, - Opt_addr = 7, - Opt_bg = 8, - Opt_bsize = 9, - Opt_clientaddr = 10, - Opt_cto = 11, - Opt_alignwrite = 12, - Opt_fg = 13, - Opt_fscache = 14, - Opt_fscache_flag = 15, - Opt_hard___2 = 16, - Opt_intr___2 = 17, - Opt_local_lock = 18, - Opt_lock = 19, - Opt_lookupcache = 20, - Opt_migration = 21, - Opt_minorversion = 22, - Opt_mountaddr = 23, - Opt_mounthost = 24, - Opt_mountport = 25, - Opt_mountproto = 26, - Opt_mountvers = 27, - Opt_namelen = 28, - Opt_nconnect = 29, - Opt_max_connect = 30, - Opt_port___3 = 31, - Opt_posix = 32, - Opt_proto = 33, - Opt_rdirplus = 34, - Opt_rdma___2 = 35, - Opt_resvport = 36, - Opt_retrans___2 = 37, - Opt_retry = 38, - Opt_rsize___2 = 39, - Opt_sec___2 = 40, - Opt_sharecache = 41, - Opt_sloppy___2 = 42, - Opt_soft___2 = 43, - Opt_softerr = 44, - Opt_softreval = 45, - Opt_source___3 = 46, - Opt_tcp = 47, - Opt_timeo = 48, - Opt_trunkdiscovery = 49, - Opt_udp = 50, - Opt_v = 51, - Opt_vers___2 = 52, - Opt_wsize___2 = 53, - Opt_write = 54, - Opt_xprtsec = 55, -}; - -enum { - Opt_local_lock_all = 0, - Opt_local_lock_flock = 1, - Opt_local_lock_none = 2, - Opt_local_lock_posix = 3, -}; - -enum { - Opt_lookupcache_all = 0, - Opt_lookupcache_none = 1, - Opt_lookupcache_positive = 2, -}; - -enum { - Opt_write_lazy = 0, - Opt_write_eager = 1, - Opt_write_wait = 2, -}; - -enum { - Opt_vers_2 = 0, - Opt_vers_3 = 1, - Opt_vers_4 = 2, - Opt_vers_4_0 = 3, - Opt_vers_4_1 = 4, - Opt_vers_4_2 = 5, -}; - -enum { - Opt_xprt_rdma = 0, - Opt_xprt_rdma6 = 1, - Opt_xprt_tcp = 2, - Opt_xprt_tcp6 = 3, - Opt_xprt_udp = 4, - Opt_xprt_udp6 = 5, - nr__Opt_xprt = 6, -}; - -enum { - Opt_sec_krb5___2 = 0, - Opt_sec_krb5i___2 = 1, - Opt_sec_krb5p___2 = 2, - Opt_sec_lkey = 3, - Opt_sec_lkeyi = 4, - Opt_sec_lkeyp = 5, - Opt_sec_none___2 = 6, - Opt_sec_spkm = 7, - Opt_sec_spkmi = 8, - Opt_sec_spkmp = 9, - Opt_sec_sys = 10, - nr__Opt_sec = 11, -}; - -enum { - Opt_xprtsec_none = 0, - Opt_xprtsec_tls = 1, - Opt_xprtsec_mtls = 2, - nr__Opt_xprtsec = 3, -}; - -struct compat_nfs_string { - compat_uint_t len; - compat_uptr_t data; -}; - -struct compat_nfs4_mount_data_v1 { - compat_int_t version; - compat_int_t flags; - compat_int_t rsize; - compat_int_t wsize; - compat_int_t timeo; - compat_int_t retrans; - compat_int_t acregmin; - compat_int_t acregmax; - compat_int_t acdirmin; - compat_int_t acdirmax; - struct compat_nfs_string client_addr; - struct compat_nfs_string mnt_path; - struct compat_nfs_string hostname; - compat_uint_t host_addrlen; - compat_uptr_t host_addr; - compat_int_t proto; - compat_int_t auth_flavourlen; - compat_uptr_t auth_flavours; -}; - -struct nfs4_xattr_bucket { - spinlock_t lock; - struct hlist_head hlist; - struct nfs4_xattr_cache *cache; - bool draining; -}; - -struct nfs4_xattr_entry; - -struct nfs4_xattr_cache { - struct kref ref; - struct nfs4_xattr_bucket buckets[64]; - struct list_head lru; - struct list_head dispose; - atomic_long_t nent; - spinlock_t listxattr_lock; - struct inode *inode; - struct nfs4_xattr_entry *listxattr; -}; - -struct nfs4_xattr_entry { - struct kref ref; - struct hlist_node hnode; - struct list_head lru; - struct list_head dispose; - char *xattr_name; - void *xattr_value; - size_t xattr_size; - struct nfs4_xattr_bucket *bucket; - uint32_t flags; -}; - -typedef long unsigned int (*count_objects_cb)(struct shrinker *, struct shrink_control *); - -typedef long unsigned int (*scan_objects_cb)(struct shrinker *, struct shrink_control *); - -struct trace_event_raw_nfsd_xdr_err_class { - struct trace_entry ent; - unsigned int netns_ino; - u32 xid; - u32 vers; - u32 proc; - u32 __data_loc_server; - u32 __data_loc_client; - char __data[0]; -}; - -struct trace_event_raw_nfsd_compound { - struct trace_entry ent; - u32 xid; - u32 opcnt; - u32 __data_loc_tag; - char __data[0]; -}; - -struct trace_event_raw_nfsd_compound_status { - struct trace_entry ent; - u32 args_opcnt; - u32 resp_opcnt; - int status; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfsd_compound_decode_err { - struct trace_entry ent; - unsigned int netns_ino; - u32 xid; - long unsigned int status; - unsigned char server[28]; - unsigned char client[28]; - u32 args_opcnt; - u32 resp_opcnt; - u32 opnum; - char __data[0]; -}; - -struct trace_event_raw_nfsd_compound_encode_err { - struct trace_entry ent; - unsigned int netns_ino; - u32 xid; - long unsigned int status; - unsigned char server[28]; - unsigned char client[28]; - u32 opnum; - char __data[0]; -}; - -struct trace_event_raw_nfsd_fh_verify { - struct trace_entry ent; - unsigned int netns_ino; - u32 __data_loc_server; - u32 __data_loc_client; - u32 xid; - u32 fh_hash; - const void *inode; - long unsigned int type; - long unsigned int access; - char __data[0]; -}; - -struct trace_event_raw_nfsd_fh_verify_err { - struct trace_entry ent; - unsigned int netns_ino; - u32 __data_loc_server; - u32 __data_loc_client; - u32 xid; - u32 fh_hash; - const void *inode; - long unsigned int type; - long unsigned int access; - int error; - char __data[0]; -}; - -struct trace_event_raw_nfsd_fh_err_class { - struct trace_entry ent; - u32 xid; - u32 fh_hash; - int status; - char __data[0]; -}; - -struct trace_event_raw_nfsd_exp_find_key { - struct trace_entry ent; - int fsidtype; - u32 fsid[6]; - u32 __data_loc_auth_domain; - int status; - char __data[0]; -}; - -struct trace_event_raw_nfsd_expkey_update { - struct trace_entry ent; - int fsidtype; - u32 fsid[6]; - u32 __data_loc_auth_domain; - u32 __data_loc_path; - bool cache; - char __data[0]; -}; - -struct trace_event_raw_nfsd_exp_get_by_name { - struct trace_entry ent; - u32 __data_loc_path; - u32 __data_loc_auth_domain; - int status; - char __data[0]; -}; - -struct trace_event_raw_nfsd_export_update { - struct trace_entry ent; - u32 __data_loc_path; - u32 __data_loc_auth_domain; - bool cache; - char __data[0]; -}; - -struct trace_event_raw_nfsd_io_class { - struct trace_entry ent; - u32 xid; - u32 fh_hash; - u64 offset; - u32 len; - char __data[0]; -}; - -struct trace_event_raw_nfsd_err_class { - struct trace_entry ent; - u32 xid; - u32 fh_hash; - loff_t offset; - int status; - char __data[0]; -}; - -struct trace_event_raw_nfsd_dirent { - struct trace_entry ent; - u32 fh_hash; - u64 ino; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfsd_copy_err_class { - struct trace_entry ent; - u32 xid; - u32 src_fh_hash; - loff_t src_offset; - u32 dst_fh_hash; - loff_t dst_offset; - u64 count; - int status; - char __data[0]; -}; - -struct trace_event_raw_nfsd_delegret_wakeup { - struct trace_entry ent; - u32 xid; - const void *inode; - long int timeo; - char __data[0]; -}; - -struct trace_event_raw_nfsd_stateid_class { - struct trace_entry ent; - u32 cl_boot; - u32 cl_id; - u32 si_id; - u32 si_generation; - char __data[0]; -}; - -struct trace_event_raw_nfsd_stateseqid_class { - struct trace_entry ent; - u32 seqid; - u32 cl_boot; - u32 cl_id; - u32 si_id; - u32 si_generation; - char __data[0]; -}; - -struct trace_event_raw_nfsd_stid_class { - struct trace_entry ent; - long unsigned int sc_type; - long unsigned int sc_status; - int sc_count; - u32 cl_boot; - u32 cl_id; - u32 si_id; - u32 si_generation; - char __data[0]; -}; - -struct trace_event_raw_nfsd_stateowner_replay { - struct trace_entry ent; - long unsigned int status; - u32 opnum; - char __data[0]; -}; - -struct trace_event_raw_nfsd_seq4_status { - struct trace_entry ent; - unsigned int netns_ino; - u32 xid; - u32 cl_boot; - u32 cl_id; - u32 seqno; - u32 reserved; - long unsigned int status_flags; - char __data[0]; -}; - -struct trace_event_raw_nfsd_cs_slot_class { - struct trace_entry ent; - u32 seqid; - u32 slot_seqid; - u32 cl_boot; - u32 cl_id; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_nfsd_slot_seqid_sequence { - struct trace_entry ent; - u32 seqid; - u32 slot_seqid; - u32 cl_boot; - u32 cl_id; - u32 __data_loc_addr; - bool in_use; - char __data[0]; -}; - -struct trace_event_raw_nfsd_clientid_class { - struct trace_entry ent; - u32 cl_boot; - u32 cl_id; - char __data[0]; -}; - -struct trace_event_raw_nfsd_mark_client_expired { - struct trace_entry ent; - int cl_rpc_users; - u32 cl_boot; - u32 cl_id; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_nfsd_net_class { - struct trace_entry ent; - long long unsigned int boot_time; - char __data[0]; -}; - -struct trace_event_raw_nfsd_writeverf_reset { - struct trace_entry ent; - long long unsigned int boot_time; - u32 xid; - int error; - unsigned char verifier[8]; - char __data[0]; -}; - -struct trace_event_raw_nfsd_clid_cred_mismatch { - struct trace_entry ent; - u32 cl_boot; - u32 cl_id; - long unsigned int cl_flavor; - long unsigned int new_flavor; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_nfsd_clid_verf_mismatch { - struct trace_entry ent; - u32 cl_boot; - u32 cl_id; - unsigned char cl_verifier[8]; - unsigned char new_verifier[8]; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_nfsd_clid_class { - struct trace_entry ent; - u32 cl_boot; - u32 cl_id; - unsigned char addr[28]; - long unsigned int flavor; - unsigned char verifier[8]; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfsd_file_class { - struct trace_entry ent; - void *nf_inode; - int nf_ref; - long unsigned int nf_flags; - unsigned char nf_may; - struct file *nf_file; - char __data[0]; -}; - -struct trace_event_raw_nfsd_file_alloc { - struct trace_entry ent; - const void *nf_inode; - long unsigned int nf_flags; - long unsigned int nf_may; - unsigned int nf_ref; - char __data[0]; -}; - -struct trace_event_raw_nfsd_file_acquire { - struct trace_entry ent; - u32 xid; - const void *inode; - long unsigned int may_flags; - unsigned int nf_ref; - long unsigned int nf_flags; - long unsigned int nf_may; - const void *nf_file; - u32 status; - char __data[0]; -}; - -struct trace_event_raw_nfsd_file_insert_err { - struct trace_entry ent; - u32 xid; - const void *inode; - long unsigned int may_flags; - long int error; - char __data[0]; -}; - -struct trace_event_raw_nfsd_file_cons_err { - struct trace_entry ent; - u32 xid; - const void *inode; - long unsigned int may_flags; - unsigned int nf_ref; - long unsigned int nf_flags; - long unsigned int nf_may; - const void *nf_file; - char __data[0]; -}; - -struct trace_event_raw_nfsd_file_open_class { - struct trace_entry ent; - void *nf_inode; - int nf_ref; - long unsigned int nf_flags; - long unsigned int nf_may; - void *nf_file; - char __data[0]; -}; - -struct trace_event_raw_nfsd_file_is_cached { - struct trace_entry ent; - const struct inode *inode; - int found; - char __data[0]; -}; - -struct trace_event_raw_nfsd_file_fsnotify_handle_event { - struct trace_entry ent; - struct inode *inode; - unsigned int nlink; - umode_t mode; - u32 mask; - char __data[0]; -}; - -struct trace_event_raw_nfsd_file_gc_class { - struct trace_entry ent; - void *nf_inode; - void *nf_file; - int nf_ref; - long unsigned int nf_flags; - char __data[0]; -}; - -struct trace_event_raw_nfsd_file_lruwalk_class { - struct trace_entry ent; - long unsigned int removed; - long unsigned int remaining; - char __data[0]; -}; - -struct trace_event_raw_nfsd_file_close { - struct trace_entry ent; - const void *inode; - char __data[0]; -}; - -struct trace_event_raw_nfsd_drc_found { - struct trace_entry ent; - long long unsigned int boot_time; - long unsigned int result; - u32 xid; - char __data[0]; -}; - -struct trace_event_raw_nfsd_drc_mismatch { - struct trace_entry ent; - long long unsigned int boot_time; - u32 xid; - u32 cached; - u32 ingress; - char __data[0]; -}; - -struct trace_event_raw_nfsd_cb_args { - struct trace_entry ent; - u32 cl_boot; - u32 cl_id; - u32 prog; - u32 ident; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_nfsd_cb_nodelegs { - struct trace_entry ent; - u32 cl_boot; - u32 cl_id; - char __data[0]; -}; - -struct trace_event_raw_nfsd_cb_class { - struct trace_entry ent; - long unsigned int state; - u32 cl_boot; - u32 cl_id; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_nfsd_cb_setup { - struct trace_entry ent; - u32 cl_boot; - u32 cl_id; - long unsigned int authflavor; - u32 __data_loc_addr; - u32 __data_loc_netid; - char __data[0]; -}; - -struct trace_event_raw_nfsd_cb_setup_err { - struct trace_entry ent; - long int error; - u32 cl_boot; - u32 cl_id; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_nfsd_cb_lifetime_class { - struct trace_entry ent; - u32 cl_boot; - u32 cl_id; - const void *cb; - long unsigned int opcode; - bool need_restart; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_nfsd_cb_seq_status { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - u32 cl_boot; - u32 cl_id; - u32 seqno; - u32 reserved; - int tk_status; - int seq_status; - char __data[0]; -}; - -struct trace_event_raw_nfsd_cb_free_slot { - struct trace_entry ent; - unsigned int task_id; - unsigned int client_id; - u32 cl_boot; - u32 cl_id; - u32 seqno; - u32 reserved; - u32 slot_seqno; - char __data[0]; -}; - -struct trace_event_raw_nfsd_cb_recall { - struct trace_entry ent; - u32 cl_boot; - u32 cl_id; - u32 si_id; - u32 si_generation; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_nfsd_cb_notify_lock { - struct trace_entry ent; - u32 cl_boot; - u32 cl_id; - u32 fh_hash; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_nfsd_cb_offload { - struct trace_entry ent; - u32 cl_boot; - u32 cl_id; - u32 si_id; - u32 si_generation; - u32 fh_hash; - int status; - u64 count; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_nfsd_cb_recall_any { - struct trace_entry ent; - u32 cl_boot; - u32 cl_id; - u32 keep; - long unsigned int bmval0; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_nfsd_cb_done_class { - struct trace_entry ent; - u32 cl_boot; - u32 cl_id; - u32 si_id; - u32 si_generation; - int status; - char __data[0]; -}; - -struct trace_event_raw_nfsd_cb_recall_any_done { - struct trace_entry ent; - u32 cl_boot; - u32 cl_id; - int status; - char __data[0]; -}; - -struct trace_event_raw_nfsd_ctl_unlock_ip { - struct trace_entry ent; - unsigned int netns_ino; - u32 __data_loc_address; - char __data[0]; -}; - -struct trace_event_raw_nfsd_ctl_unlock_fs { - struct trace_entry ent; - unsigned int netns_ino; - u32 __data_loc_path; - char __data[0]; -}; - -struct trace_event_raw_nfsd_ctl_filehandle { - struct trace_entry ent; - unsigned int netns_ino; - int maxsize; - u32 __data_loc_domain; - u32 __data_loc_path; - char __data[0]; -}; - -struct trace_event_raw_nfsd_ctl_threads { - struct trace_entry ent; - unsigned int netns_ino; - int newthreads; - char __data[0]; -}; - -struct trace_event_raw_nfsd_ctl_pool_threads { - struct trace_entry ent; - unsigned int netns_ino; - int pool; - int nrthreads; - char __data[0]; -}; - -struct trace_event_raw_nfsd_ctl_version { - struct trace_entry ent; - unsigned int netns_ino; - u32 __data_loc_mesg; - char __data[0]; -}; - -struct trace_event_raw_nfsd_ctl_ports_addfd { - struct trace_entry ent; - unsigned int netns_ino; - int fd; - char __data[0]; -}; - -struct trace_event_raw_nfsd_ctl_ports_addxprt { - struct trace_entry ent; - unsigned int netns_ino; - int port; - u32 __data_loc_transport; - char __data[0]; -}; - -struct trace_event_raw_nfsd_ctl_maxblksize { - struct trace_entry ent; - unsigned int netns_ino; - int bsize; - char __data[0]; -}; - -struct trace_event_raw_nfsd_ctl_maxconn { - struct trace_entry ent; - unsigned int netns_ino; - int maxconn; - char __data[0]; -}; - -struct trace_event_raw_nfsd_ctl_time { - struct trace_entry ent; - unsigned int netns_ino; - int time; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_nfsd_ctl_recoverydir { - struct trace_entry ent; - unsigned int netns_ino; - u32 __data_loc_recdir; - char __data[0]; -}; - -struct trace_event_raw_nfsd_end_grace { - struct trace_entry ent; - unsigned int netns_ino; - char __data[0]; -}; - -struct trace_event_raw_nfsd_copy_class { - struct trace_entry ent; - bool intra; - bool async; - u32 src_cl_boot; - u32 src_cl_id; - u32 src_so_id; - u32 src_si_generation; - u32 dst_cl_boot; - u32 dst_cl_id; - u32 dst_so_id; - u32 dst_si_generation; - u32 cb_cl_boot; - u32 cb_cl_id; - u32 cb_so_id; - u32 cb_si_generation; - u64 src_cp_pos; - u64 dst_cp_pos; - u64 cp_count; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_nfsd_copy_done { - struct trace_entry ent; - int status; - bool intra; - bool async; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_raw_nfsd_copy_async_done { - struct trace_entry ent; - int status; - bool intra; - bool async; - u32 src_cl_boot; - u32 src_cl_id; - u32 src_so_id; - u32 src_si_generation; - u32 dst_cl_boot; - u32 dst_cl_id; - u32 dst_so_id; - u32 dst_si_generation; - u32 cb_cl_boot; - u32 cb_cl_id; - u32 cb_so_id; - u32 cb_si_generation; - u64 src_cp_pos; - u64 dst_cp_pos; - u64 cp_count; - u32 __data_loc_addr; - char __data[0]; -}; - -struct trace_event_data_offsets_nfsd_xdr_err_class { - u32 server; - const void *server_ptr_; - u32 client; - const void *client_ptr_; -}; - -struct trace_event_data_offsets_nfsd_compound { - u32 tag; - const void *tag_ptr_; -}; - -struct trace_event_data_offsets_nfsd_compound_status { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfsd_compound_decode_err {}; - -struct trace_event_data_offsets_nfsd_compound_encode_err {}; - -struct trace_event_data_offsets_nfsd_fh_verify { - u32 server; - const void *server_ptr_; - u32 client; - const void *client_ptr_; -}; - -struct trace_event_data_offsets_nfsd_fh_verify_err { - u32 server; - const void *server_ptr_; - u32 client; - const void *client_ptr_; -}; - -struct trace_event_data_offsets_nfsd_fh_err_class {}; - -struct trace_event_data_offsets_nfsd_exp_find_key { - u32 auth_domain; - const void *auth_domain_ptr_; -}; - -struct trace_event_data_offsets_nfsd_expkey_update { - u32 auth_domain; - const void *auth_domain_ptr_; - u32 path; - const void *path_ptr_; -}; - -struct trace_event_data_offsets_nfsd_exp_get_by_name { - u32 path; - const void *path_ptr_; - u32 auth_domain; - const void *auth_domain_ptr_; -}; - -struct trace_event_data_offsets_nfsd_export_update { - u32 path; - const void *path_ptr_; - u32 auth_domain; - const void *auth_domain_ptr_; -}; - -struct trace_event_data_offsets_nfsd_io_class {}; - -struct trace_event_data_offsets_nfsd_err_class {}; - -struct trace_event_data_offsets_nfsd_dirent { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfsd_copy_err_class {}; - -struct trace_event_data_offsets_nfsd_delegret_wakeup {}; - -struct trace_event_data_offsets_nfsd_stateid_class {}; - -struct trace_event_data_offsets_nfsd_stateseqid_class {}; - -struct trace_event_data_offsets_nfsd_stid_class {}; - -struct trace_event_data_offsets_nfsd_stateowner_replay {}; - -struct trace_event_data_offsets_nfsd_seq4_status {}; - -struct trace_event_data_offsets_nfsd_cs_slot_class { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_nfsd_slot_seqid_sequence { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_nfsd_clientid_class {}; - -struct trace_event_data_offsets_nfsd_mark_client_expired { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_nfsd_net_class {}; - -struct trace_event_data_offsets_nfsd_writeverf_reset {}; - -struct trace_event_data_offsets_nfsd_clid_cred_mismatch { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_nfsd_clid_verf_mismatch { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_nfsd_clid_class { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfsd_file_class {}; - -struct trace_event_data_offsets_nfsd_file_alloc {}; - -struct trace_event_data_offsets_nfsd_file_acquire {}; - -struct trace_event_data_offsets_nfsd_file_insert_err {}; - -struct trace_event_data_offsets_nfsd_file_cons_err {}; - -struct trace_event_data_offsets_nfsd_file_open_class {}; - -struct trace_event_data_offsets_nfsd_file_is_cached {}; - -struct trace_event_data_offsets_nfsd_file_fsnotify_handle_event {}; - -struct trace_event_data_offsets_nfsd_file_gc_class {}; - -struct trace_event_data_offsets_nfsd_file_lruwalk_class {}; - -struct trace_event_data_offsets_nfsd_file_close {}; - -struct trace_event_data_offsets_nfsd_drc_found {}; - -struct trace_event_data_offsets_nfsd_drc_mismatch {}; - -struct trace_event_data_offsets_nfsd_cb_args { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_nfsd_cb_nodelegs {}; - -struct trace_event_data_offsets_nfsd_cb_class { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_nfsd_cb_setup { - u32 addr; - const void *addr_ptr_; - u32 netid; - const void *netid_ptr_; -}; - -struct trace_event_data_offsets_nfsd_cb_setup_err { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_nfsd_cb_lifetime_class { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_nfsd_cb_seq_status {}; - -struct trace_event_data_offsets_nfsd_cb_free_slot {}; - -struct trace_event_data_offsets_nfsd_cb_recall { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_nfsd_cb_notify_lock { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_nfsd_cb_offload { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_nfsd_cb_recall_any { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_nfsd_cb_done_class {}; - -struct trace_event_data_offsets_nfsd_cb_recall_any_done {}; - -struct trace_event_data_offsets_nfsd_ctl_unlock_ip { - u32 address; - const void *address_ptr_; -}; - -struct trace_event_data_offsets_nfsd_ctl_unlock_fs { - u32 path; - const void *path_ptr_; -}; - -struct trace_event_data_offsets_nfsd_ctl_filehandle { - u32 domain; - const void *domain_ptr_; - u32 path; - const void *path_ptr_; -}; - -struct trace_event_data_offsets_nfsd_ctl_threads {}; - -struct trace_event_data_offsets_nfsd_ctl_pool_threads {}; - -struct trace_event_data_offsets_nfsd_ctl_version { - u32 mesg; - const void *mesg_ptr_; -}; - -struct trace_event_data_offsets_nfsd_ctl_ports_addfd {}; - -struct trace_event_data_offsets_nfsd_ctl_ports_addxprt { - u32 transport; - const void *transport_ptr_; -}; - -struct trace_event_data_offsets_nfsd_ctl_maxblksize {}; - -struct trace_event_data_offsets_nfsd_ctl_maxconn {}; - -struct trace_event_data_offsets_nfsd_ctl_time { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_nfsd_ctl_recoverydir { - u32 recdir; - const void *recdir_ptr_; -}; - -struct trace_event_data_offsets_nfsd_end_grace {}; - -struct trace_event_data_offsets_nfsd_copy_class { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_nfsd_copy_done { - u32 addr; - const void *addr_ptr_; -}; - -struct trace_event_data_offsets_nfsd_copy_async_done { - u32 addr; - const void *addr_ptr_; -}; - -typedef void (*btf_trace_nfsd_garbage_args_err)(void *, const struct svc_rqst *); - -typedef void (*btf_trace_nfsd_cant_encode_err)(void *, const struct svc_rqst *); - -typedef void (*btf_trace_nfsd_compound)(void *, const struct svc_rqst *, const char *, u32, u32); - -typedef void (*btf_trace_nfsd_compound_status)(void *, u32, u32, __be32, const char *); - -typedef void (*btf_trace_nfsd_compound_decode_err)(void *, const struct svc_rqst *, u32, u32, u32, __be32); - -typedef void (*btf_trace_nfsd_compound_encode_err)(void *, const struct svc_rqst *, u32, __be32); - -typedef void (*btf_trace_nfsd_fh_verify)(void *, const struct svc_rqst *, const struct svc_fh *, umode_t, int); - -typedef void (*btf_trace_nfsd_fh_verify_err)(void *, const struct svc_rqst *, const struct svc_fh *, umode_t, int, __be32); - -typedef void (*btf_trace_nfsd_set_fh_dentry_badexport)(void *, struct svc_rqst *, struct svc_fh *, int); - -typedef void (*btf_trace_nfsd_set_fh_dentry_badhandle)(void *, struct svc_rqst *, struct svc_fh *, int); - -typedef void (*btf_trace_nfsd_exp_find_key)(void *, const struct svc_expkey *, int); - -typedef void (*btf_trace_nfsd_expkey_update)(void *, const struct svc_expkey *, const char *); - -typedef void (*btf_trace_nfsd_exp_get_by_name)(void *, const struct svc_export *, int); - -typedef void (*btf_trace_nfsd_export_update)(void *, const struct svc_export *); - -typedef void (*btf_trace_nfsd_read_start)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); - -typedef void (*btf_trace_nfsd_read_splice)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); - -typedef void (*btf_trace_nfsd_read_vector)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); - -typedef void (*btf_trace_nfsd_read_io_done)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); - -typedef void (*btf_trace_nfsd_read_done)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); - -typedef void (*btf_trace_nfsd_write_start)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); - -typedef void (*btf_trace_nfsd_write_opened)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); - -typedef void (*btf_trace_nfsd_write_io_done)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); - -typedef void (*btf_trace_nfsd_write_done)(void *, struct svc_rqst *, struct svc_fh *, u64, u32); - -typedef void (*btf_trace_nfsd_read_err)(void *, struct svc_rqst *, struct svc_fh *, loff_t, int); - -typedef void (*btf_trace_nfsd_write_err)(void *, struct svc_rqst *, struct svc_fh *, loff_t, int); - -typedef void (*btf_trace_nfsd_dirent)(void *, struct svc_fh *, u64, const char *, int); - -typedef void (*btf_trace_nfsd_clone_file_range_err)(void *, struct svc_rqst *, struct svc_fh *, loff_t, struct svc_fh *, loff_t, u64, int); - -typedef void (*btf_trace_nfsd_delegret_wakeup)(void *, const struct svc_rqst *, const struct inode *, long int); - -typedef void (*btf_trace_nfsd_layoutstate_alloc)(void *, stateid_t *); - -typedef void (*btf_trace_nfsd_layoutstate_unhash)(void *, stateid_t *); - -typedef void (*btf_trace_nfsd_layoutstate_free)(void *, stateid_t *); - -typedef void (*btf_trace_nfsd_layout_get_lookup_fail)(void *, stateid_t *); - -typedef void (*btf_trace_nfsd_layout_commit_lookup_fail)(void *, stateid_t *); - -typedef void (*btf_trace_nfsd_layout_return_lookup_fail)(void *, stateid_t *); - -typedef void (*btf_trace_nfsd_layout_recall)(void *, stateid_t *); - -typedef void (*btf_trace_nfsd_layout_recall_done)(void *, stateid_t *); - -typedef void (*btf_trace_nfsd_layout_recall_fail)(void *, stateid_t *); - -typedef void (*btf_trace_nfsd_layout_recall_release)(void *, stateid_t *); - -typedef void (*btf_trace_nfsd_open)(void *, stateid_t *); - -typedef void (*btf_trace_nfsd_deleg_read)(void *, stateid_t *); - -typedef void (*btf_trace_nfsd_deleg_write)(void *, stateid_t *); - -typedef void (*btf_trace_nfsd_deleg_return)(void *, stateid_t *); - -typedef void (*btf_trace_nfsd_deleg_recall)(void *, stateid_t *); - -typedef void (*btf_trace_nfsd_preprocess)(void *, u32, const stateid_t *); - -typedef void (*btf_trace_nfsd_open_confirm)(void *, u32, const stateid_t *); - -typedef void (*btf_trace_nfsd_stid_revoke)(void *, const struct nfs4_stid *); - -typedef void (*btf_trace_nfsd_stateowner_replay)(void *, u32, const struct nfs4_replay *); - -typedef void (*btf_trace_nfsd_seq4_status)(void *, const struct svc_rqst *, const struct nfsd4_sequence *); - -typedef void (*btf_trace_nfsd_slot_seqid_conf)(void *, const struct nfs4_client *, const struct nfsd4_create_session *); - -typedef void (*btf_trace_nfsd_slot_seqid_unconf)(void *, const struct nfs4_client *, const struct nfsd4_create_session *); - -typedef void (*btf_trace_nfsd_slot_seqid_sequence)(void *, const struct nfs4_client *, const struct nfsd4_sequence *, const struct nfsd4_slot *); - -typedef void (*btf_trace_nfsd_clid_expire_unconf)(void *, const clientid_t *); - -typedef void (*btf_trace_nfsd_clid_reclaim_complete)(void *, const clientid_t *); - -typedef void (*btf_trace_nfsd_clid_confirmed)(void *, const clientid_t *); - -typedef void (*btf_trace_nfsd_clid_destroyed)(void *, const clientid_t *); - -typedef void (*btf_trace_nfsd_clid_admin_expired)(void *, const clientid_t *); - -typedef void (*btf_trace_nfsd_clid_replaced)(void *, const clientid_t *); - -typedef void (*btf_trace_nfsd_clid_purged)(void *, const clientid_t *); - -typedef void (*btf_trace_nfsd_clid_renew)(void *, const clientid_t *); - -typedef void (*btf_trace_nfsd_clid_stale)(void *, const clientid_t *); - -typedef void (*btf_trace_nfsd_mark_client_expired)(void *, const struct nfs4_client *, int); - -typedef void (*btf_trace_nfsd_grace_start)(void *, const struct nfsd_net *); - -typedef void (*btf_trace_nfsd_grace_complete)(void *, const struct nfsd_net *); - -typedef void (*btf_trace_nfsd_writeverf_reset)(void *, const struct nfsd_net *, const struct svc_rqst *, int); - -typedef void (*btf_trace_nfsd_clid_cred_mismatch)(void *, const struct nfs4_client *, const struct svc_rqst *); - -typedef void (*btf_trace_nfsd_clid_verf_mismatch)(void *, const struct nfs4_client *, const struct svc_rqst *, const nfs4_verifier *); - -typedef void (*btf_trace_nfsd_clid_fresh)(void *, const struct nfs4_client *); - -typedef void (*btf_trace_nfsd_clid_confirmed_r)(void *, const struct nfs4_client *); - -typedef void (*btf_trace_nfsd_file_free)(void *, struct nfsd_file *); - -typedef void (*btf_trace_nfsd_file_unhash)(void *, struct nfsd_file *); - -typedef void (*btf_trace_nfsd_file_put)(void *, struct nfsd_file *); - -typedef void (*btf_trace_nfsd_file_closing)(void *, struct nfsd_file *); - -typedef void (*btf_trace_nfsd_file_unhash_and_queue)(void *, struct nfsd_file *); - -typedef void (*btf_trace_nfsd_file_alloc)(void *, const struct nfsd_file *); - -typedef void (*btf_trace_nfsd_file_acquire)(void *, const struct svc_rqst *, const struct inode *, unsigned int, const struct nfsd_file *, __be32); - -typedef void (*btf_trace_nfsd_file_insert_err)(void *, const struct svc_rqst *, const struct inode *, unsigned int, long int); - -typedef void (*btf_trace_nfsd_file_cons_err)(void *, const struct svc_rqst *, const struct inode *, unsigned int, const struct nfsd_file *); - -typedef void (*btf_trace_nfsd_file_open)(void *, const struct nfsd_file *, __be32); - -typedef void (*btf_trace_nfsd_file_opened)(void *, const struct nfsd_file *, __be32); - -typedef void (*btf_trace_nfsd_file_is_cached)(void *, const struct inode *, int); - -typedef void (*btf_trace_nfsd_file_fsnotify_handle_event)(void *, struct inode *, u32); - -typedef void (*btf_trace_nfsd_file_lru_add)(void *, const struct nfsd_file *); - -typedef void (*btf_trace_nfsd_file_lru_add_disposed)(void *, const struct nfsd_file *); - -typedef void (*btf_trace_nfsd_file_lru_del)(void *, const struct nfsd_file *); - -typedef void (*btf_trace_nfsd_file_lru_del_disposed)(void *, const struct nfsd_file *); - -typedef void (*btf_trace_nfsd_file_gc_in_use)(void *, const struct nfsd_file *); - -typedef void (*btf_trace_nfsd_file_gc_writeback)(void *, const struct nfsd_file *); - -typedef void (*btf_trace_nfsd_file_gc_referenced)(void *, const struct nfsd_file *); - -typedef void (*btf_trace_nfsd_file_gc_disposed)(void *, const struct nfsd_file *); - -typedef void (*btf_trace_nfsd_file_gc_removed)(void *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_nfsd_file_shrinker_removed)(void *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_nfsd_file_close)(void *, const struct inode *); - -typedef void (*btf_trace_nfsd_drc_found)(void *, const struct nfsd_net *, const struct svc_rqst *, int); - -typedef void (*btf_trace_nfsd_drc_mismatch)(void *, const struct nfsd_net *, const struct nfsd_cacherep *, const struct nfsd_cacherep *); - -typedef void (*btf_trace_nfsd_cb_args)(void *, const struct nfs4_client *, const struct nfs4_cb_conn *); - -typedef void (*btf_trace_nfsd_cb_nodelegs)(void *, const struct nfs4_client *); - -typedef void (*btf_trace_nfsd_cb_start)(void *, const struct nfs4_client *); - -typedef void (*btf_trace_nfsd_cb_new_state)(void *, const struct nfs4_client *); - -typedef void (*btf_trace_nfsd_cb_probe)(void *, const struct nfs4_client *); - -typedef void (*btf_trace_nfsd_cb_lost)(void *, const struct nfs4_client *); - -typedef void (*btf_trace_nfsd_cb_shutdown)(void *, const struct nfs4_client *); - -typedef void (*btf_trace_nfsd_cb_rpc_prepare)(void *, const struct nfs4_client *); - -typedef void (*btf_trace_nfsd_cb_rpc_done)(void *, const struct nfs4_client *); - -typedef void (*btf_trace_nfsd_cb_rpc_release)(void *, const struct nfs4_client *); - -typedef void (*btf_trace_nfsd_cb_setup)(void *, const struct nfs4_client *, const char *, rpc_authflavor_t); - -typedef void (*btf_trace_nfsd_cb_setup_err)(void *, const struct nfs4_client *, long int); - -typedef void (*btf_trace_nfsd_cb_queue)(void *, const struct nfs4_client *, const struct nfsd4_callback *); - -typedef void (*btf_trace_nfsd_cb_destroy)(void *, const struct nfs4_client *, const struct nfsd4_callback *); - -typedef void (*btf_trace_nfsd_cb_restart)(void *, const struct nfs4_client *, const struct nfsd4_callback *); - -typedef void (*btf_trace_nfsd_cb_bc_update)(void *, const struct nfs4_client *, const struct nfsd4_callback *); - -typedef void (*btf_trace_nfsd_cb_bc_shutdown)(void *, const struct nfs4_client *, const struct nfsd4_callback *); - -typedef void (*btf_trace_nfsd_cb_seq_status)(void *, const struct rpc_task *, const struct nfsd4_callback *); - -typedef void (*btf_trace_nfsd_cb_free_slot)(void *, const struct rpc_task *, const struct nfsd4_callback *); - -typedef void (*btf_trace_nfsd_cb_recall)(void *, const struct nfs4_stid *); - -typedef void (*btf_trace_nfsd_cb_notify_lock)(void *, const struct nfs4_lockowner *, const struct nfsd4_blocked_lock *); - -typedef void (*btf_trace_nfsd_cb_offload)(void *, const struct nfs4_client *, const stateid_t *, const struct knfsd_fh *, u64, __be32); - -typedef void (*btf_trace_nfsd_cb_recall_any)(void *, const struct nfsd4_cb_recall_any *); - -typedef void (*btf_trace_nfsd_cb_recall_done)(void *, const stateid_t *, const struct rpc_task *); - -typedef void (*btf_trace_nfsd_cb_notify_lock_done)(void *, const stateid_t *, const struct rpc_task *); - -typedef void (*btf_trace_nfsd_cb_layout_done)(void *, const stateid_t *, const struct rpc_task *); - -typedef void (*btf_trace_nfsd_cb_offload_done)(void *, const stateid_t *, const struct rpc_task *); - -typedef void (*btf_trace_nfsd_cb_getattr_done)(void *, const stateid_t *, const struct rpc_task *); - -typedef void (*btf_trace_nfsd_cb_recall_any_done)(void *, const struct nfsd4_callback *, const struct rpc_task *); - -typedef void (*btf_trace_nfsd_ctl_unlock_ip)(void *, const struct net *, const char *); - -typedef void (*btf_trace_nfsd_ctl_unlock_fs)(void *, const struct net *, const char *); - -typedef void (*btf_trace_nfsd_ctl_filehandle)(void *, const struct net *, const char *, const char *, int); - -typedef void (*btf_trace_nfsd_ctl_threads)(void *, const struct net *, int); - -typedef void (*btf_trace_nfsd_ctl_pool_threads)(void *, const struct net *, int, int); - -typedef void (*btf_trace_nfsd_ctl_version)(void *, const struct net *, const char *); - -typedef void (*btf_trace_nfsd_ctl_ports_addfd)(void *, const struct net *, int); - -typedef void (*btf_trace_nfsd_ctl_ports_addxprt)(void *, const struct net *, const char *, int); - -typedef void (*btf_trace_nfsd_ctl_maxblksize)(void *, const struct net *, int); - -typedef void (*btf_trace_nfsd_ctl_maxconn)(void *, const struct net *, int); - -typedef void (*btf_trace_nfsd_ctl_time)(void *, const struct net *, const char *, size_t, int); - -typedef void (*btf_trace_nfsd_ctl_recoverydir)(void *, const struct net *, const char *); - -typedef void (*btf_trace_nfsd_end_grace)(void *, const struct net *); - -typedef void (*btf_trace_nfsd_copy_inter)(void *, const struct nfsd4_copy *); - -typedef void (*btf_trace_nfsd_copy_intra)(void *, const struct nfsd4_copy *); - -typedef void (*btf_trace_nfsd_copy_async)(void *, const struct nfsd4_copy *); - -typedef void (*btf_trace_nfsd_copy_done)(void *, const struct nfsd4_copy *, __be32); - -typedef void (*btf_trace_nfsd_copy_async_done)(void *, const struct nfsd4_copy *); - -typedef struct { - __le32 NextEntryOffset; - __u32 ResumeKey; - FILE_UNIX_BASIC_INFO basic; - union { - char __pad; - struct { - struct {} __empty_FileName; - char FileName[0]; - }; - }; -} __attribute__((packed)) FILE_UNIX_INFO; - -typedef struct { - __le32 NextEntryOffset; - __u32 FileIndex; - __le64 CreationTime; - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le64 EndOfFile; - __le64 AllocationSize; - __le32 ExtFileAttributes; - __le32 FileNameLength; - __le32 EaSize; - char FileName[0]; -} __attribute__((packed)) FILE_FULL_DIRECTORY_INFO; - -typedef struct { - __le32 NextEntryOffset; - __u32 FileIndex; - __le64 CreationTime; - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le64 EndOfFile; - __le64 AllocationSize; - __le32 ExtFileAttributes; - __le32 FileNameLength; - __le32 EaSize; - __le32 Reserved; - __le64 UniqueId; - char FileName[0]; -} SEARCH_ID_FULL_DIR_INFO; - -typedef struct { - __le32 NextEntryOffset; - __u32 FileIndex; - __le64 CreationTime; - __le64 LastAccessTime; - __le64 LastWriteTime; - __le64 ChangeTime; - __le64 EndOfFile; - __le64 AllocationSize; - __le32 ExtFileAttributes; - __le32 FileNameLength; - __le32 EaSize; - __u8 ShortNameLength; - __u8 Reserved; - __u8 ShortName[24]; - char FileName[0]; -} __attribute__((packed)) FILE_BOTH_DIRECTORY_INFO; - -typedef struct { - __u32 ResumeKey; - __le16 CreationDate; - __le16 CreationTime; - __le16 LastAccessDate; - __le16 LastAccessTime; - __le16 LastWriteDate; - __le16 LastWriteTime; - __le32 DataSize; - __le32 AllocationSize; - __le16 Attributes; - __u8 FileNameLength; - char FileName[0]; -} __attribute__((packed)) FIND_FILE_STANDARD_INFO; - -struct cifs_dirent { - const char *name; - size_t namelen; - u32 resume_key; - u64 ino; -}; - -struct derivation { - struct kvec label; - struct kvec context; -}; - -struct derivation_triplet { - struct derivation signing; - struct derivation encryption; - struct derivation decryption; -}; - -enum { - Opt_direct = 0, - Opt_fd = 1, - Opt_gid___13 = 2, - Opt_ignore___3 = 3, - Opt_indirect = 4, - Opt_maxproto = 5, - Opt_minproto = 6, - Opt_offset = 7, - Opt_pgrp = 8, - Opt_strictexpire = 9, - Opt_uid___12 = 10, -}; - -struct autofs_fs_context { - kuid_t uid; - kgid_t gid; - int pgrp; - bool pgrp_set; -}; - -struct xfs_trim_cur { - xfs_agblock_t start; - xfs_extlen_t count; - xfs_agblock_t end; - xfs_extlen_t minlen; - bool by_bno; -}; - -struct xfs_unmount_log_format { - uint16_t magic; - uint16_t pad1; - uint32_t pad2; -}; - -typedef struct xlog_ticket xlog_ticket_t; - -struct cachefiles_open { - __u32 volume_key_size; - __u32 cookie_key_size; - __u32 fd; - __u32 flags; - __u8 data[0]; -}; - -struct cachefiles_read { - __u64 off; - __u64 len; -}; - -struct trace_event_raw_cachefiles_ref { - struct trace_entry ent; - unsigned int obj; - unsigned int cookie; - enum cachefiles_obj_ref_trace why; - int usage; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_lookup { - struct trace_entry ent; - unsigned int obj; - short int error; - long unsigned int dino; - long unsigned int ino; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_mkdir { - struct trace_entry ent; - unsigned int dir; - unsigned int subdir; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_tmpfile { - struct trace_entry ent; - unsigned int obj; - unsigned int backer; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_link { - struct trace_entry ent; - unsigned int obj; - unsigned int backer; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_unlink { - struct trace_entry ent; - unsigned int obj; - unsigned int ino; - enum fscache_why_object_killed why; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_rename { - struct trace_entry ent; - unsigned int obj; - unsigned int ino; - enum fscache_why_object_killed why; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_coherency { - struct trace_entry ent; - unsigned int obj; - enum cachefiles_coherency_trace why; - enum cachefiles_content content; - u64 ino; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_vol_coherency { - struct trace_entry ent; - unsigned int vol; - enum cachefiles_coherency_trace why; - u64 ino; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_prep_read { - struct trace_entry ent; - unsigned int obj; - short unsigned int flags; - enum netfs_io_source source; - enum cachefiles_prepare_read_trace why; - size_t len; - loff_t start; - unsigned int netfs_inode; - unsigned int cache_inode; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_read { - struct trace_entry ent; - unsigned int obj; - unsigned int backer; - size_t len; - loff_t start; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_write { - struct trace_entry ent; - unsigned int obj; - unsigned int backer; - size_t len; - loff_t start; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_trunc { - struct trace_entry ent; - unsigned int obj; - unsigned int backer; - enum cachefiles_trunc_trace why; - loff_t from; - loff_t to; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_mark_active { - struct trace_entry ent; - unsigned int obj; - ino_t inode; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_mark_failed { - struct trace_entry ent; - unsigned int obj; - ino_t inode; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_mark_inactive { - struct trace_entry ent; - unsigned int obj; - ino_t inode; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_vfs_error { - struct trace_entry ent; - unsigned int obj; - unsigned int backer; - enum cachefiles_error_trace where; - short int error; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_io_error { - struct trace_entry ent; - unsigned int obj; - unsigned int backer; - enum cachefiles_error_trace where; - short int error; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_ondemand_open { - struct trace_entry ent; - unsigned int obj; - unsigned int msg_id; - unsigned int object_id; - unsigned int fd; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_ondemand_copen { - struct trace_entry ent; - unsigned int obj; - unsigned int msg_id; - long int len; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_ondemand_close { - struct trace_entry ent; - unsigned int obj; - unsigned int msg_id; - unsigned int object_id; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_ondemand_read { - struct trace_entry ent; - unsigned int obj; - unsigned int msg_id; - unsigned int object_id; - loff_t start; - size_t len; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_ondemand_cread { - struct trace_entry ent; - unsigned int obj; - unsigned int msg_id; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_ondemand_fd_write { - struct trace_entry ent; - unsigned int obj; - unsigned int backer; - loff_t start; - size_t len; - char __data[0]; -}; - -struct trace_event_raw_cachefiles_ondemand_fd_release { - struct trace_entry ent; - unsigned int obj; - unsigned int object_id; - char __data[0]; -}; - -struct trace_event_data_offsets_cachefiles_ref {}; - -struct trace_event_data_offsets_cachefiles_lookup {}; - -struct trace_event_data_offsets_cachefiles_mkdir {}; - -struct trace_event_data_offsets_cachefiles_tmpfile {}; - -struct trace_event_data_offsets_cachefiles_link {}; - -struct trace_event_data_offsets_cachefiles_unlink {}; - -struct trace_event_data_offsets_cachefiles_rename {}; - -struct trace_event_data_offsets_cachefiles_coherency {}; - -struct trace_event_data_offsets_cachefiles_vol_coherency {}; - -struct trace_event_data_offsets_cachefiles_prep_read {}; - -struct trace_event_data_offsets_cachefiles_read {}; - -struct trace_event_data_offsets_cachefiles_write {}; - -struct trace_event_data_offsets_cachefiles_trunc {}; - -struct trace_event_data_offsets_cachefiles_mark_active {}; - -struct trace_event_data_offsets_cachefiles_mark_failed {}; - -struct trace_event_data_offsets_cachefiles_mark_inactive {}; - -struct trace_event_data_offsets_cachefiles_vfs_error {}; - -struct trace_event_data_offsets_cachefiles_io_error {}; - -struct trace_event_data_offsets_cachefiles_ondemand_open {}; - -struct trace_event_data_offsets_cachefiles_ondemand_copen {}; - -struct trace_event_data_offsets_cachefiles_ondemand_close {}; - -struct trace_event_data_offsets_cachefiles_ondemand_read {}; - -struct trace_event_data_offsets_cachefiles_ondemand_cread {}; - -struct trace_event_data_offsets_cachefiles_ondemand_fd_write {}; - -struct trace_event_data_offsets_cachefiles_ondemand_fd_release {}; - -typedef void (*btf_trace_cachefiles_ref)(void *, unsigned int, unsigned int, int, enum cachefiles_obj_ref_trace); - -typedef void (*btf_trace_cachefiles_lookup)(void *, struct cachefiles_object *, struct dentry *, struct dentry *); - -typedef void (*btf_trace_cachefiles_mkdir)(void *, struct dentry *, struct dentry *); - -typedef void (*btf_trace_cachefiles_tmpfile)(void *, struct cachefiles_object *, struct inode *); - -typedef void (*btf_trace_cachefiles_link)(void *, struct cachefiles_object *, struct inode *); - -typedef void (*btf_trace_cachefiles_unlink)(void *, struct cachefiles_object *, ino_t, enum fscache_why_object_killed); - -typedef void (*btf_trace_cachefiles_rename)(void *, struct cachefiles_object *, ino_t, enum fscache_why_object_killed); - -typedef void (*btf_trace_cachefiles_coherency)(void *, struct cachefiles_object *, ino_t, enum cachefiles_content, enum cachefiles_coherency_trace); - -typedef void (*btf_trace_cachefiles_vol_coherency)(void *, struct cachefiles_volume *, ino_t, enum cachefiles_coherency_trace); - -typedef void (*btf_trace_cachefiles_prep_read)(void *, struct cachefiles_object *, loff_t, size_t, short unsigned int, enum netfs_io_source, enum cachefiles_prepare_read_trace, ino_t, ino_t); - -typedef void (*btf_trace_cachefiles_read)(void *, struct cachefiles_object *, struct inode *, loff_t, size_t); - -typedef void (*btf_trace_cachefiles_write)(void *, struct cachefiles_object *, struct inode *, loff_t, size_t); - -typedef void (*btf_trace_cachefiles_trunc)(void *, struct cachefiles_object *, struct inode *, loff_t, loff_t, enum cachefiles_trunc_trace); - -typedef void (*btf_trace_cachefiles_mark_active)(void *, struct cachefiles_object *, struct inode *); - -typedef void (*btf_trace_cachefiles_mark_failed)(void *, struct cachefiles_object *, struct inode *); - -typedef void (*btf_trace_cachefiles_mark_inactive)(void *, struct cachefiles_object *, struct inode *); - -typedef void (*btf_trace_cachefiles_vfs_error)(void *, struct cachefiles_object *, struct inode *, int, enum cachefiles_error_trace); - -typedef void (*btf_trace_cachefiles_io_error)(void *, struct cachefiles_object *, struct inode *, int, enum cachefiles_error_trace); - -typedef void (*btf_trace_cachefiles_ondemand_open)(void *, struct cachefiles_object *, struct cachefiles_msg *, struct cachefiles_open *); - -typedef void (*btf_trace_cachefiles_ondemand_copen)(void *, struct cachefiles_object *, unsigned int, long int); - -typedef void (*btf_trace_cachefiles_ondemand_close)(void *, struct cachefiles_object *, struct cachefiles_msg *); - -typedef void (*btf_trace_cachefiles_ondemand_read)(void *, struct cachefiles_object *, struct cachefiles_msg *, struct cachefiles_read *); - -typedef void (*btf_trace_cachefiles_ondemand_cread)(void *, struct cachefiles_object *, unsigned int); - -typedef void (*btf_trace_cachefiles_ondemand_fd_write)(void *, struct cachefiles_object *, struct inode *, loff_t, size_t); - -typedef void (*btf_trace_cachefiles_ondemand_fd_release)(void *, struct cachefiles_object *, int); - -struct falloc_range { - struct list_head list; - u64 start; - u64 len; -}; - -enum { - RANGE_BOUNDARY_WRITTEN_EXTENT = 0, - RANGE_BOUNDARY_PREALLOC_EXTENT = 1, - RANGE_BOUNDARY_HOLE = 2, -}; - -struct workspace___4 { - void *mem; - void *buf; - void *cbuf; - struct list_head list; -}; - -struct btrfs_free_space_info { - __le32 extent_count; - __le32 flags; -}; - -struct fsync_inode_entry { - struct list_head list; - struct inode *inode; - block_t blkaddr; - block_t last_dentry; -}; - -struct erofs_xattr_ibody_header { - __le32 h_name_filter; - __u8 h_shared_count; - __u8 h_reserved2[7]; - __le32 h_shared_xattrs[0]; -}; - -struct erofs_xattr_entry { - __u8 e_name_len; - __u8 e_name_index; - __le16 e_value_size; - char e_name[0]; -}; - -struct erofs_xattr_iter { - struct super_block *sb; - struct erofs_buf buf; - erofs_off_t pos; - void *kaddr; - char *buffer; - int buffer_size; - int buffer_ofs; - int index; - int infix_len; - struct qstr name; - struct dentry *dentry; -}; - -struct z_erofs_bvec { - struct page *page; - int offset; - unsigned int end; -}; - -struct z_erofs_bvset { - struct page *nextpage; - struct z_erofs_bvec bvec[0]; -}; - -struct z_erofs_bvset_inline { - struct page *nextpage; - struct z_erofs_bvec bvec[2]; -}; - -struct z_erofs_pcluster { - struct mutex lock; - struct lockref lockref; - struct z_erofs_pcluster *next; - erofs_off_t index; - unsigned int length; - unsigned int vcnt; - unsigned int pclustersize; - short unsigned int pageofs_out; - short unsigned int pageofs_in; - union { - struct z_erofs_bvset_inline bvset; - struct callback_head rcu; - }; - unsigned char algorithmformat; - bool partial; - bool besteffort; - struct z_erofs_bvec compressed_bvecs[0]; -}; - -struct z_erofs_decompressqueue { - struct super_block *sb; - struct z_erofs_pcluster *head; - atomic_t pending_bios; - union { - struct completion done; - struct work_struct work; - struct kthread_work kthread_work; - } u; - bool eio; - bool sync; -}; - -struct z_erofs_pcluster_slab { - struct kmem_cache *slab; - unsigned int maxpages; - char name[48]; -}; - -struct z_erofs_bvec_iter { - struct page *bvpage; - struct z_erofs_bvset *bvset; - unsigned int nr; - unsigned int cur; -}; - -enum z_erofs_pclustermode { - Z_EROFS_PCLUSTER_INFLIGHT = 0, - Z_EROFS_PCLUSTER_FOLLOWED_NOINPLACE = 1, - Z_EROFS_PCLUSTER_FOLLOWED = 2, -}; - -struct z_erofs_frontend { - struct inode * const inode; - struct erofs_map_blocks map; - struct z_erofs_bvec_iter biter; - struct page *pagepool; - struct page *candidate_bvpage; - struct z_erofs_pcluster *pcl; - struct z_erofs_pcluster *head; - enum z_erofs_pclustermode mode; - erofs_off_t headoffset; - unsigned int icur; -}; - -struct z_erofs_backend { - struct page *onstack_pages[32]; - struct super_block *sb; - struct z_erofs_pcluster *pcl; - struct page **decompressed_pages; - struct page **compressed_pages; - struct list_head decompressed_secondary_bvecs; - struct page **pagepool; - unsigned int onstack_used; - unsigned int nr_pages; - bool keepxcpy; -}; - -struct z_erofs_bvec_item { - struct z_erofs_bvec bvec; - struct list_head list; -}; - -enum { - JQ_BYPASS = 0, - JQ_SUBMIT = 1, - NR_JOBQUEUES = 2, -}; - -struct keyring_read_iterator_context { - size_t buflen; - size_t count; - key_serial_t *buffer; -}; - -struct kpp_instance { - void (*free)(struct kpp_instance *); - union { - struct { - char head[48]; - struct crypto_instance base; - } s; - struct kpp_alg alg; - }; -}; - -struct crypto_kpp_spawn { - struct crypto_spawn base; -}; - -struct khazad_ctx { - u64 E[9]; - u64 D[9]; -}; - -struct authenc_instance_ctx { - struct crypto_ahash_spawn auth; - struct crypto_skcipher_spawn enc; - unsigned int reqoff; -}; - -struct crypto_authenc_ctx { - struct crypto_ahash *auth; - struct crypto_skcipher *enc; - struct crypto_sync_skcipher *null; -}; - -struct authenc_request_ctx { - struct scatterlist src[2]; - struct scatterlist dst[2]; - char tail[0]; -}; - -struct bt_iter_data { - struct blk_mq_hw_ctx *hctx; - struct request_queue *q; - busy_tag_iter_fn *fn; - void *data; - bool reserved; -}; - -struct bt_tags_iter_data { - struct blk_mq_tags *tags; - busy_tag_iter_fn *fn; - void *data; - unsigned int flags; -}; - -typedef guid_t efi_guid_t; - -struct _gpt_header { - __le64 signature; - __le32 revision; - __le32 header_size; - __le32 header_crc32; - __le32 reserved1; - __le64 my_lba; - __le64 alternate_lba; - __le64 first_usable_lba; - __le64 last_usable_lba; - efi_guid_t disk_guid; - __le64 partition_entry_lba; - __le32 num_partition_entries; - __le32 sizeof_partition_entry; - __le32 partition_entry_array_crc32; -} __attribute__((packed)); - -typedef struct _gpt_header gpt_header; - -struct _gpt_entry_attributes { - u64 required_to_function: 1; - u64 reserved: 47; - u64 type_guid_specific: 16; -}; - -typedef struct _gpt_entry_attributes gpt_entry_attributes; - -struct _gpt_entry { - efi_guid_t partition_type_guid; - efi_guid_t unique_partition_guid; - __le64 starting_lba; - __le64 ending_lba; - gpt_entry_attributes attributes; - __le16 partition_name[36]; -}; - -typedef struct _gpt_entry gpt_entry; - -struct _gpt_mbr_record { - u8 boot_indicator; - u8 start_head; - u8 start_sector; - u8 start_track; - u8 os_type; - u8 end_head; - u8 end_sector; - u8 end_track; - __le32 starting_lba; - __le32 size_in_lba; -}; - -typedef struct _gpt_mbr_record gpt_mbr_record; - -struct _legacy_mbr { - u8 boot_code[440]; - __le32 unique_mbr_signature; - __le16 unknown; - gpt_mbr_record partition_record[4]; - __le16 signature; -} __attribute__((packed)); - -typedef struct _legacy_mbr legacy_mbr; - -struct io_uring_getevents_arg { - __u64 sigmask; - __u32 sigmask_sz; - __u32 min_wait_usec; - __u64 ts; -}; - -struct trace_event_raw_io_uring_create { - struct trace_entry ent; - int fd; - void *ctx; - u32 sq_entries; - u32 cq_entries; - u32 flags; - char __data[0]; -}; - -struct trace_event_raw_io_uring_register { - struct trace_entry ent; - void *ctx; - unsigned int opcode; - unsigned int nr_files; - unsigned int nr_bufs; - long int ret; - char __data[0]; -}; - -struct trace_event_raw_io_uring_file_get { - struct trace_entry ent; - void *ctx; - void *req; - u64 user_data; - int fd; - char __data[0]; -}; - -struct trace_event_raw_io_uring_queue_async_work { - struct trace_entry ent; - void *ctx; - void *req; - u64 user_data; - u8 opcode; - long long unsigned int flags; - struct io_wq_work *work; - int rw; - u32 __data_loc_op_str; - char __data[0]; -}; - -struct trace_event_raw_io_uring_defer { - struct trace_entry ent; - void *ctx; - void *req; - long long unsigned int data; - u8 opcode; - u32 __data_loc_op_str; - char __data[0]; -}; - -struct trace_event_raw_io_uring_link { - struct trace_entry ent; - void *ctx; - void *req; - void *target_req; - char __data[0]; -}; - -struct trace_event_raw_io_uring_cqring_wait { - struct trace_entry ent; - void *ctx; - int min_events; - char __data[0]; -}; - -struct trace_event_raw_io_uring_fail_link { - struct trace_entry ent; - void *ctx; - void *req; - long long unsigned int user_data; - u8 opcode; - void *link; - u32 __data_loc_op_str; - char __data[0]; -}; - -struct trace_event_raw_io_uring_complete { - struct trace_entry ent; - void *ctx; - void *req; - u64 user_data; - int res; - unsigned int cflags; - u64 extra1; - u64 extra2; - char __data[0]; -}; - -struct trace_event_raw_io_uring_submit_req { - struct trace_entry ent; - void *ctx; - void *req; - long long unsigned int user_data; - u8 opcode; - long long unsigned int flags; - bool sq_thread; - u32 __data_loc_op_str; - char __data[0]; -}; - -struct trace_event_raw_io_uring_poll_arm { - struct trace_entry ent; - void *ctx; - void *req; - long long unsigned int user_data; - u8 opcode; - int mask; - int events; - u32 __data_loc_op_str; - char __data[0]; -}; - -struct trace_event_raw_io_uring_task_add { - struct trace_entry ent; - void *ctx; - void *req; - long long unsigned int user_data; - u8 opcode; - int mask; - u32 __data_loc_op_str; - char __data[0]; -}; - -struct trace_event_raw_io_uring_req_failed { - struct trace_entry ent; - void *ctx; - void *req; - long long unsigned int user_data; - u8 opcode; - u8 flags; - u8 ioprio; - u64 off; - u64 addr; - u32 len; - u32 op_flags; - u16 buf_index; - u16 personality; - u32 file_index; - u64 pad1; - u64 addr3; - int error; - u32 __data_loc_op_str; - char __data[0]; -}; - -struct trace_event_raw_io_uring_cqe_overflow { - struct trace_entry ent; - void *ctx; - long long unsigned int user_data; - s32 res; - u32 cflags; - void *ocqe; - char __data[0]; -}; - -struct trace_event_raw_io_uring_task_work_run { - struct trace_entry ent; - void *tctx; - unsigned int count; - char __data[0]; -}; - -struct trace_event_raw_io_uring_short_write { - struct trace_entry ent; - void *ctx; - u64 fpos; - u64 wanted; - u64 got; - char __data[0]; -}; - -struct trace_event_raw_io_uring_local_work_run { - struct trace_entry ent; - void *ctx; - int count; - unsigned int loops; - char __data[0]; -}; - -struct trace_event_data_offsets_io_uring_create {}; - -struct trace_event_data_offsets_io_uring_register {}; - -struct trace_event_data_offsets_io_uring_file_get {}; - -struct trace_event_data_offsets_io_uring_queue_async_work { - u32 op_str; - const void *op_str_ptr_; -}; - -struct trace_event_data_offsets_io_uring_defer { - u32 op_str; - const void *op_str_ptr_; -}; - -struct trace_event_data_offsets_io_uring_link {}; - -struct trace_event_data_offsets_io_uring_cqring_wait {}; - -struct trace_event_data_offsets_io_uring_fail_link { - u32 op_str; - const void *op_str_ptr_; -}; - -struct trace_event_data_offsets_io_uring_complete {}; - -struct trace_event_data_offsets_io_uring_submit_req { - u32 op_str; - const void *op_str_ptr_; -}; - -struct trace_event_data_offsets_io_uring_poll_arm { - u32 op_str; - const void *op_str_ptr_; -}; - -struct trace_event_data_offsets_io_uring_task_add { - u32 op_str; - const void *op_str_ptr_; -}; - -struct trace_event_data_offsets_io_uring_req_failed { - u32 op_str; - const void *op_str_ptr_; -}; - -struct trace_event_data_offsets_io_uring_cqe_overflow {}; - -struct trace_event_data_offsets_io_uring_task_work_run {}; - -struct trace_event_data_offsets_io_uring_short_write {}; - -struct trace_event_data_offsets_io_uring_local_work_run {}; - -typedef void (*btf_trace_io_uring_create)(void *, int, void *, u32, u32, u32); - -typedef void (*btf_trace_io_uring_register)(void *, void *, unsigned int, unsigned int, unsigned int, long int); - -typedef void (*btf_trace_io_uring_file_get)(void *, struct io_kiocb *, int); - -typedef void (*btf_trace_io_uring_queue_async_work)(void *, struct io_kiocb *, int); - -typedef void (*btf_trace_io_uring_defer)(void *, struct io_kiocb *); - -typedef void (*btf_trace_io_uring_link)(void *, struct io_kiocb *, struct io_kiocb *); - -typedef void (*btf_trace_io_uring_cqring_wait)(void *, void *, int); - -typedef void (*btf_trace_io_uring_fail_link)(void *, struct io_kiocb *, struct io_kiocb *); - -typedef void (*btf_trace_io_uring_complete)(void *, void *, void *, u64, int, unsigned int, u64, u64); - -typedef void (*btf_trace_io_uring_submit_req)(void *, struct io_kiocb *); - -typedef void (*btf_trace_io_uring_poll_arm)(void *, struct io_kiocb *, int, int); - -typedef void (*btf_trace_io_uring_task_add)(void *, struct io_kiocb *, int); - -typedef void (*btf_trace_io_uring_req_failed)(void *, const struct io_uring_sqe *, struct io_kiocb *, int); - -typedef void (*btf_trace_io_uring_cqe_overflow)(void *, void *, long long unsigned int, s32, u32, void *); - -typedef void (*btf_trace_io_uring_task_work_run)(void *, void *, unsigned int); - -typedef void (*btf_trace_io_uring_short_write)(void *, void *, u64, u64, u64); - -typedef void (*btf_trace_io_uring_local_work_run)(void *, void *, int, unsigned int); - -struct io_defer_entry { - struct list_head list; - struct io_kiocb *req; - u32 seq; -}; - -struct ext_arg { - size_t argsz; - struct __kernel_timespec *ts; - const sigset_t *sig; - ktime_t min_time; -}; - -struct io_tctx_exit { - struct callback_head task_work; - struct completion completion; - struct io_ring_ctx *ctx; -}; - -struct io_task_cancel { - struct task_struct *task; - bool all; -}; - -struct creds; - -typedef uint64_t vli_type; - -enum xz_check { - XZ_CHECK_NONE = 0, - XZ_CHECK_CRC32 = 1, - XZ_CHECK_CRC64 = 4, - XZ_CHECK_SHA256 = 10, -}; - -struct xz_dec_hash { - vli_type unpadded; - vli_type uncompressed; - uint32_t crc32; -}; - -struct xz_dec_bcj; - -struct xz_dec { - enum { - SEQ_STREAM_HEADER = 0, - SEQ_BLOCK_START = 1, - SEQ_BLOCK_HEADER = 2, - SEQ_BLOCK_UNCOMPRESS = 3, - SEQ_BLOCK_PADDING = 4, - SEQ_BLOCK_CHECK = 5, - SEQ_INDEX = 6, - SEQ_INDEX_PADDING = 7, - SEQ_INDEX_CRC32 = 8, - SEQ_STREAM_FOOTER = 9, - } sequence; - uint32_t pos; - vli_type vli; - size_t in_start; - size_t out_start; - uint32_t crc32; - enum xz_check check_type; - enum xz_mode mode; - bool allow_buf_error; - struct { - vli_type compressed; - vli_type uncompressed; - uint32_t size; - } block_header; - struct { - vli_type compressed; - vli_type uncompressed; - vli_type count; - struct xz_dec_hash hash; - } block; - struct { - enum { - SEQ_INDEX_COUNT = 0, - SEQ_INDEX_UNPADDED = 1, - SEQ_INDEX_UNCOMPRESSED = 2, - } sequence; - vli_type size; - vli_type count; - struct xz_dec_hash hash; - } index; - struct { - size_t pos; - size_t size; - uint8_t buf[1024]; - } temp; - struct xz_dec_lzma2 *lzma2; - struct xz_dec_bcj *bcj; - bool bcj_active; -}; - -struct xz_dec_bcj { - enum { - BCJ_X86 = 4, - BCJ_POWERPC = 5, - BCJ_IA64 = 6, - BCJ_ARM = 7, - BCJ_ARMTHUMB = 8, - BCJ_SPARC = 9, - BCJ_ARM64 = 10, - BCJ_RISCV = 11, - } type; - enum xz_ret ret; - bool single_call; - uint32_t pos; - uint32_t x86_prev_mask; - uint8_t *out; - size_t out_pos; - size_t out_size; - struct { - size_t filtered; - size_t size; - uint8_t buf[16]; - } temp; -}; - -struct ts_kmp { - u8 *pattern; - unsigned int pattern_len; - unsigned int prefix_tbl[0]; -}; - -enum pci_bar_type { - pci_bar_unknown = 0, - pci_bar_io = 1, - pci_bar_mem32 = 2, - pci_bar_mem64 = 3, -}; - -struct pci_domain_busn_res { - struct list_head list; - struct resource res; - int domain_nr; -}; - -struct pci_fixup { - u16 vendor; - u16 device; - u32 class; - unsigned int class_shift; - int hook_offset; -}; - -enum { - NVME_REG_CAP = 0, - NVME_REG_VS = 8, - NVME_REG_INTMS = 12, - NVME_REG_INTMC = 16, - NVME_REG_CC = 20, - NVME_REG_CSTS = 28, - NVME_REG_NSSR = 32, - NVME_REG_AQA = 36, - NVME_REG_ASQ = 40, - NVME_REG_ACQ = 48, - NVME_REG_CMBLOC = 56, - NVME_REG_CMBSZ = 60, - NVME_REG_BPINFO = 64, - NVME_REG_BPRSEL = 68, - NVME_REG_BPMBL = 72, - NVME_REG_CMBMSC = 80, - NVME_REG_CRTO = 104, - NVME_REG_PMRCAP = 3584, - NVME_REG_PMRCTL = 3588, - NVME_REG_PMRSTS = 3592, - NVME_REG_PMREBS = 3596, - NVME_REG_PMRSWTP = 3600, - NVME_REG_DBS = 4096, -}; - -enum { - NVME_CC_ENABLE = 1, - NVME_CC_EN_SHIFT = 0, - NVME_CC_CSS_SHIFT = 4, - NVME_CC_MPS_SHIFT = 7, - NVME_CC_AMS_SHIFT = 11, - NVME_CC_SHN_SHIFT = 14, - NVME_CC_IOSQES_SHIFT = 16, - NVME_CC_IOCQES_SHIFT = 20, - NVME_CC_CSS_NVM = 0, - NVME_CC_CSS_CSI = 96, - NVME_CC_CSS_MASK = 112, - NVME_CC_AMS_RR = 0, - NVME_CC_AMS_WRRU = 2048, - NVME_CC_AMS_VS = 14336, - NVME_CC_SHN_NONE = 0, - NVME_CC_SHN_NORMAL = 16384, - NVME_CC_SHN_ABRUPT = 32768, - NVME_CC_SHN_MASK = 49152, - NVME_CC_IOSQES = 393216, - NVME_CC_IOCQES = 4194304, - NVME_CC_CRIME = 16777216, -}; - -enum { - NVME_CSTS_RDY = 1, - NVME_CSTS_CFS = 2, - NVME_CSTS_NSSRO = 16, - NVME_CSTS_PP = 32, - NVME_CSTS_SHST_NORMAL = 0, - NVME_CSTS_SHST_OCCUR = 4, - NVME_CSTS_SHST_CMPLT = 8, - NVME_CSTS_SHST_MASK = 12, -}; - -enum { - NVME_AEN_BIT_NS_ATTR = 8, - NVME_AEN_BIT_FW_ACT = 9, - NVME_AEN_BIT_ANA_CHANGE = 11, - NVME_AEN_BIT_DISC_CHANGE = 31, -}; - -enum { - SWITCHTEC_GAS_MRPC_OFFSET = 0, - SWITCHTEC_GAS_TOP_CFG_OFFSET = 4096, - SWITCHTEC_GAS_SW_EVENT_OFFSET = 6144, - SWITCHTEC_GAS_SYS_INFO_OFFSET = 8192, - SWITCHTEC_GAS_FLASH_INFO_OFFSET = 8704, - SWITCHTEC_GAS_PART_CFG_OFFSET = 16384, - SWITCHTEC_GAS_NTB_OFFSET = 65536, - SWITCHTEC_GAS_PFF_CSR_OFFSET = 1261568, -}; - -enum { - SWITCHTEC_NTB_REG_INFO_OFFSET = 0, - SWITCHTEC_NTB_REG_CTRL_OFFSET = 16384, - SWITCHTEC_NTB_REG_DBMSG_OFFSET = 409600, -}; - -struct nt_partition_info { - u32 xlink_enabled; - u32 target_part_low; - u32 target_part_high; - u32 reserved; -}; - -struct ntb_info_regs { - u8 partition_count; - u8 partition_id; - u16 reserved1; - u64 ep_map; - u16 requester_id; - u16 reserved2; - u32 reserved3[4]; - struct nt_partition_info ntp_info[48]; -} __attribute__((packed)); - -struct ntb_ctrl_regs { - u32 partition_status; - u32 partition_op; - u32 partition_ctrl; - u32 bar_setup; - u32 bar_error; - u16 lut_table_entries; - u16 lut_table_offset; - u32 lut_error; - u16 req_id_table_size; - u16 req_id_table_offset; - u32 req_id_error; - u32 reserved1[7]; - struct { - u32 ctl; - u32 win_size; - u64 xlate_addr; - } bar_entry[6]; - struct { - u32 win_size; - u32 reserved[3]; - } bar_ext_entry[6]; - u32 reserved2[192]; - u32 req_id_table[512]; - u32 reserved3[256]; - u64 lut_entry[512]; -}; - -struct pci_dev_reset_methods { - u16 vendor; - u16 device; - int (*reset)(struct pci_dev *, bool); -}; - -struct pci_dev_acs_enabled { - u16 vendor; - u16 device; - int (*acs_enabled)(struct pci_dev *, u16); -}; - -struct pci_dev_acs_ops { - u16 vendor; - u16 device; - int (*enable_acs)(struct pci_dev *); - int (*disable_acs_redir)(struct pci_dev *); -}; - -struct termios { - tcflag_t c_iflag; - tcflag_t c_oflag; - tcflag_t c_cflag; - tcflag_t c_lflag; - cc_t c_line; - cc_t c_cc[19]; -}; - -struct termios2 { - tcflag_t c_iflag; - tcflag_t c_oflag; - tcflag_t c_cflag; - tcflag_t c_lflag; - cc_t c_line; - cc_t c_cc[19]; - speed_t c_ispeed; - speed_t c_ospeed; -}; - -struct termio { - short unsigned int c_iflag; - short unsigned int c_oflag; - short unsigned int c_cflag; - short unsigned int c_lflag; - unsigned char c_line; - unsigned char c_cc[8]; -}; - -struct con_driver { - const struct consw *con; - const char *desc; - struct device *dev; - int node; - int first; - int last; - int flag; -}; - -enum { - blank_off = 0, - blank_normal_wait = 1, - blank_vesa_wait = 2, -}; - -enum { - EPecma = 0, - EPdec = 1, - EPeq = 2, - EPgt = 3, - EPlt = 4, -}; - -enum CSI_J { - CSI_J_CURSOR_TO_END = 0, - CSI_J_START_TO_CURSOR = 1, - CSI_J_VISIBLE = 2, - CSI_J_FULL = 3, -}; - -enum { - CSI_K_CURSOR_TO_LINEEND = 0, - CSI_K_LINESTART_TO_CURSOR = 1, - CSI_K_LINE = 2, -}; - -struct rgb { - u8 r; - u8 g; - u8 b; -}; - -enum { - CSI_m_DEFAULT = 0, - CSI_m_BOLD = 1, - CSI_m_HALF_BRIGHT = 2, - CSI_m_ITALIC = 3, - CSI_m_UNDERLINE = 4, - CSI_m_BLINK = 5, - CSI_m_REVERSE = 7, - CSI_m_PRI_FONT = 10, - CSI_m_ALT_FONT1 = 11, - CSI_m_ALT_FONT2 = 12, - CSI_m_DOUBLE_UNDERLINE = 21, - CSI_m_NORMAL_INTENSITY = 22, - CSI_m_NO_ITALIC = 23, - CSI_m_NO_UNDERLINE = 24, - CSI_m_NO_BLINK = 25, - CSI_m_NO_REVERSE = 27, - CSI_m_FG_COLOR_BEG = 30, - CSI_m_FG_COLOR_END = 37, - CSI_m_FG_COLOR = 38, - CSI_m_DEFAULT_FG_COLOR = 39, - CSI_m_BG_COLOR_BEG = 40, - CSI_m_BG_COLOR_END = 47, - CSI_m_BG_COLOR = 48, - CSI_m_DEFAULT_BG_COLOR = 49, - CSI_m_BRIGHT_FG_COLOR_BEG = 90, - CSI_m_BRIGHT_FG_COLOR_END = 97, - CSI_m_BRIGHT_FG_COLOR_OFF = 60, - CSI_m_BRIGHT_BG_COLOR_BEG = 100, - CSI_m_BRIGHT_BG_COLOR_END = 107, - CSI_m_BRIGHT_BG_COLOR_OFF = 60, -}; - -enum { - CSI_DEC_hl_CURSOR_KEYS = 1, - CSI_DEC_hl_132_COLUMNS = 3, - CSI_DEC_hl_REVERSE_VIDEO = 5, - CSI_DEC_hl_ORIGIN_MODE = 6, - CSI_DEC_hl_AUTOWRAP = 7, - CSI_DEC_hl_AUTOREPEAT = 8, - CSI_DEC_hl_MOUSE_X10 = 9, - CSI_DEC_hl_SHOW_CURSOR = 25, - CSI_DEC_hl_MOUSE_VT200 = 1000, -}; - -enum { - CSI_hl_DISPLAY_CTRL = 3, - CSI_hl_INSERT = 4, - CSI_hl_AUTO_NL = 20, -}; - -enum CSI_right_square_bracket { - CSI_RSB_COLOR_FOR_UNDERLINE = 1, - CSI_RSB_COLOR_FOR_HALF_BRIGHT = 2, - CSI_RSB_MAKE_CUR_COLOR_DEFAULT = 8, - CSI_RSB_BLANKING_INTERVAL = 9, - CSI_RSB_BELL_FREQUENCY = 10, - CSI_RSB_BELL_DURATION = 11, - CSI_RSB_BRING_CONSOLE_TO_FRONT = 12, - CSI_RSB_UNBLANK = 13, - CSI_RSB_VESA_OFF_INTERVAL = 14, - CSI_RSB_BRING_PREV_CONSOLE_TO_FRONT = 15, - CSI_RSB_CURSOR_BLINK_INTERVAL = 16, -}; - -enum vc_ctl_state { - ESnormal = 0, - ESesc = 1, - ESsquare = 2, - ESgetpars = 3, - ESfunckey = 4, - EShash = 5, - ESsetG0 = 6, - ESsetG1 = 7, - ESpercent = 8, - EScsiignore = 9, - ESnonstd = 10, - ESpalette = 11, - ESosc = 12, - ESANSI_first = 12, - ESapc = 13, - ESpm = 14, - ESdcs = 15, - ESANSI_last = 15, -}; - -enum { - ASCII_NULL = 0, - ASCII_BELL = 7, - ASCII_BACKSPACE = 8, - ASCII_IGNORE_FIRST = 8, - ASCII_HTAB = 9, - ASCII_LINEFEED = 10, - ASCII_VTAB = 11, - ASCII_FORMFEED = 12, - ASCII_CAR_RET = 13, - ASCII_IGNORE_LAST = 13, - ASCII_SHIFTOUT = 14, - ASCII_SHIFTIN = 15, - ASCII_CANCEL = 24, - ASCII_SUBSTITUTE = 26, - ASCII_ESCAPE = 27, - ASCII_CSI_IGNORE_FIRST = 32, - ASCII_CSI_IGNORE_LAST = 63, - ASCII_DEL = 127, - ASCII_EXT_CSI = 155, -}; - -struct interval { - uint32_t first; - uint32_t last; -}; - -struct vc_draw_region { - long unsigned int from; - long unsigned int to; - int x; -}; - -struct amba_pl011_data { - bool (*dma_filter)(struct dma_chan *, void *); - void *dma_rx_param; - void *dma_tx_param; - bool dma_rx_poll_enable; - unsigned int dma_rx_poll_rate; - unsigned int dma_rx_poll_timeout; - void (*init)(void); - void (*exit)(void); -}; - -enum { - REG_DR = 0, - REG_ST_DMAWM = 1, - REG_ST_TIMEOUT = 2, - REG_FR = 3, - REG_LCRH_RX = 4, - REG_LCRH_TX = 5, - REG_IBRD = 6, - REG_FBRD = 7, - REG_CR = 8, - REG_IFLS = 9, - REG_IMSC = 10, - REG_RIS = 11, - REG_MIS = 12, - REG_ICR = 13, - REG_DMACR = 14, - REG_ST_XFCR = 15, - REG_ST_XON1 = 16, - REG_ST_XON2 = 17, - REG_ST_XOFF1 = 18, - REG_ST_XOFF2 = 19, - REG_ST_ITCR = 20, - REG_ST_ITIP = 21, - REG_ST_ABCR = 22, - REG_ST_ABIMSC = 23, - REG_ARRAY_SIZE = 24, -}; - -struct vendor_data { - const u16 *reg_offset; - unsigned int ifls; - unsigned int fr_busy; - unsigned int fr_dsr; - unsigned int fr_cts; - unsigned int fr_ri; - unsigned int inv_fr; - bool access_32b; - bool oversampling; - bool dma_threshold; - bool cts_event_workaround; - bool always_enabled; - bool fixed_options; - unsigned int (*get_fifosize)(struct amba_device *); -}; - -struct pl011_dmabuf { - dma_addr_t dma; - size_t len; - char *buf; -}; - -struct pl011_dmarx_data { - struct dma_chan *chan; - struct completion complete; - bool use_buf_b; - struct pl011_dmabuf dbuf_a; - struct pl011_dmabuf dbuf_b; - dma_cookie_t cookie; - bool running; - struct timer_list timer; - unsigned int last_residue; - long unsigned int last_jiffies; - bool auto_poll_rate; - unsigned int poll_rate; - unsigned int poll_timeout; -}; - -struct pl011_dmatx_data { - struct dma_chan *chan; - dma_addr_t dma; - size_t len; - char *buf; - bool queued; -}; - -struct uart_amba_port { - struct uart_port port; - const u16 *reg_offset; - struct clk *clk; - const struct vendor_data *vendor; - unsigned int im; - unsigned int old_status; - unsigned int fifosize; - unsigned int fixed_baud; - char type[12]; - bool rs485_tx_started; - unsigned int rs485_tx_drain_interval; - unsigned int dmacr; - bool using_tx_dma; - bool using_rx_dma; - struct pl011_dmarx_data dmarx; - struct pl011_dmatx_data dmatx; - bool dma_probed; -}; - -struct displayid_header { - u8 rev; - u8 bytes; - u8 prod_id; - u8 ext_count; -}; - -struct drm_mode_obj_get_properties { - __u64 props_ptr; - __u64 prop_values_ptr; - __u32 count_props; - __u32 obj_id; - __u32 obj_type; -}; - -struct drm_atomic_helper_damage_iter { - struct drm_rect plane_src; - const struct drm_rect *clips; - uint32_t num_clips; - uint32_t curr_clip; - bool full_update; -}; - -struct ewma_psr_time { - long unsigned int internal; -}; - -struct drm_self_refresh_data { - struct drm_crtc *crtc; - struct delayed_work entry_work; - struct mutex avg_mutex; - struct ewma_psr_time entry_avg_ms; - struct ewma_psr_time exit_avg_ms; -}; - -struct class_compat { - struct kobject *kobj; -}; - -enum fw_opt { - FW_OPT_UEVENT = 1, - FW_OPT_NOWAIT = 2, - FW_OPT_USERHELPER = 4, - FW_OPT_NO_WARN = 8, - FW_OPT_NOCACHE = 16, - FW_OPT_NOFALLBACK_SYSFS = 32, - FW_OPT_FALLBACK_PLATFORM = 64, - FW_OPT_PARTIAL = 128, -}; - -enum fw_status { - FW_STATUS_UNKNOWN = 0, - FW_STATUS_LOADING = 1, - FW_STATUS_DONE = 2, - FW_STATUS_ABORTED = 3, -}; - -struct fw_state { - struct completion completion; - enum fw_status status; -}; - -struct firmware_cache; - -struct fw_priv { - struct kref ref; - struct list_head list; - struct firmware_cache *fwc; - struct fw_state fw_st; - void *data; - size_t size; - size_t allocated_size; - size_t offset; - u32 opt_flags; - const char *fw_name; -}; - -struct firmware_cache { - spinlock_t lock; - struct list_head head; - int state; -}; - -struct firmware_work { - struct work_struct work; - struct module *module; - const char *name; - struct device *device; - void *context; - void (*cont)(const struct firmware *, void *); - u32 opt_flags; -}; - -typedef unsigned int __kernel_old_dev_t; - -enum { - LO_FLAGS_READ_ONLY = 1, - LO_FLAGS_AUTOCLEAR = 4, - LO_FLAGS_PARTSCAN = 8, - LO_FLAGS_DIRECT_IO = 16, -}; - -struct loop_info { - int lo_number; - __kernel_old_dev_t lo_device; - long unsigned int lo_inode; - __kernel_old_dev_t lo_rdevice; - int lo_offset; - int lo_encrypt_type; - int lo_encrypt_key_size; - int lo_flags; - char lo_name[64]; - unsigned char lo_encrypt_key[32]; - long unsigned int lo_init[2]; - char reserved[4]; -}; - -struct loop_info64 { - __u64 lo_device; - __u64 lo_inode; - __u64 lo_rdevice; - __u64 lo_offset; - __u64 lo_sizelimit; - __u32 lo_number; - __u32 lo_encrypt_type; - __u32 lo_encrypt_key_size; - __u32 lo_flags; - __u8 lo_file_name[64]; - __u8 lo_crypt_name[64]; - __u8 lo_encrypt_key[32]; - __u64 lo_init[2]; -}; - -struct loop_config { - __u32 fd; - __u32 block_size; - struct loop_info64 info; - __u64 __reserved[8]; -}; - -enum { - Lo_unbound = 0, - Lo_bound = 1, - Lo_rundown = 2, - Lo_deleting = 3, -}; - -struct loop_device { - int lo_number; - loff_t lo_offset; - loff_t lo_sizelimit; - int lo_flags; - char lo_file_name[64]; - struct file *lo_backing_file; - struct block_device *lo_device; - gfp_t old_gfp_mask; - spinlock_t lo_lock; - int lo_state; - spinlock_t lo_work_lock; - struct workqueue_struct *workqueue; - struct work_struct rootcg_work; - struct list_head rootcg_cmd_list; - struct list_head idle_worker_list; - struct rb_root worker_tree; - struct timer_list timer; - bool use_dio; - bool sysfs_inited; - struct request_queue *lo_queue; - struct blk_mq_tag_set tag_set; - struct gendisk *lo_disk; - struct mutex lo_mutex; - bool idr_visible; -}; - -struct loop_cmd { - struct list_head list_entry; - bool use_aio; - atomic_t ref; - long int ret; - struct kiocb iocb; - struct bio_vec *bvec; - struct cgroup_subsys_state *blkcg_css; - struct cgroup_subsys_state *memcg_css; -}; - -struct loop_worker { - struct rb_node rb_node; - struct work_struct work; - struct list_head cmd_list; - struct list_head idle_list; - struct loop_device *lo; - struct cgroup_subsys_state *blkcg_css; - long unsigned int last_ran_at; -}; - -struct scsi_varlen_cdb_hdr { - __u8 opcode; - __u8 control; - __u8 misc[5]; - __u8 additional_cdb_length; - __be16 service_action; -}; - -enum { - IFLA_VXLAN_UNSPEC = 0, - IFLA_VXLAN_ID = 1, - IFLA_VXLAN_GROUP = 2, - IFLA_VXLAN_LINK = 3, - IFLA_VXLAN_LOCAL = 4, - IFLA_VXLAN_TTL = 5, - IFLA_VXLAN_TOS = 6, - IFLA_VXLAN_LEARNING = 7, - IFLA_VXLAN_AGEING = 8, - IFLA_VXLAN_LIMIT = 9, - IFLA_VXLAN_PORT_RANGE = 10, - IFLA_VXLAN_PROXY = 11, - IFLA_VXLAN_RSC = 12, - IFLA_VXLAN_L2MISS = 13, - IFLA_VXLAN_L3MISS = 14, - IFLA_VXLAN_PORT = 15, - IFLA_VXLAN_GROUP6 = 16, - IFLA_VXLAN_LOCAL6 = 17, - IFLA_VXLAN_UDP_CSUM = 18, - IFLA_VXLAN_UDP_ZERO_CSUM6_TX = 19, - IFLA_VXLAN_UDP_ZERO_CSUM6_RX = 20, - IFLA_VXLAN_REMCSUM_TX = 21, - IFLA_VXLAN_REMCSUM_RX = 22, - IFLA_VXLAN_GBP = 23, - IFLA_VXLAN_REMCSUM_NOPARTIAL = 24, - IFLA_VXLAN_COLLECT_METADATA = 25, - IFLA_VXLAN_LABEL = 26, - IFLA_VXLAN_GPE = 27, - IFLA_VXLAN_TTL_INHERIT = 28, - IFLA_VXLAN_DF = 29, - IFLA_VXLAN_VNIFILTER = 30, - IFLA_VXLAN_LOCALBYPASS = 31, - IFLA_VXLAN_LABEL_POLICY = 32, - __IFLA_VXLAN_MAX = 33, -}; - -struct ifla_vxlan_port_range { - __be16 low; - __be16 high; -}; - -struct vxlanhdr { - __be32 vx_flags; - __be32 vx_vni; -}; - -struct vxlanhdr_gbp { - u8 vx_flags; - u8 reserved_flags1: 3; - u8 policy_applied: 1; - u8 reserved_flags2: 2; - u8 dont_learn: 1; - u8 reserved_flags3: 1; - __be16 policy_id; - __be32 vx_vni; -}; - -struct vxlanhdr_gpe { - u8 oam_flag: 1; - u8 reserved_flags1: 1; - u8 np_applied: 1; - u8 instance_applied: 1; - u8 version: 2; - u8 reserved_flags2: 2; - u8 reserved_flags3; - u8 reserved_flags4; - u8 next_protocol; - __be32 vx_vni; -}; - -struct switchdev_notifier_vxlan_fdb_info { - struct switchdev_notifier_info info; - union vxlan_addr remote_ip; - __be16 remote_port; - __be32 remote_vni; - u32 remote_ifindex; - u8 eth_addr[6]; - __be32 vni; - bool offloaded; - bool added_by_user; -}; - -struct vxlan_fdb { - struct hlist_node hlist; - struct callback_head rcu; - long unsigned int updated; - long unsigned int used; - struct list_head remotes; - u8 eth_addr[6]; - u16 state; - __be32 vni; - u16 flags; - struct list_head nh_list; - struct nexthop *nh; - struct vxlan_dev *vdev; -}; - -struct vxlan_fdb_flush_desc { - bool ignore_default_entry; - long unsigned int state; - long unsigned int state_mask; - long unsigned int flags; - long unsigned int flags_mask; - __be32 src_vni; - u32 nhid; - __be32 vni; - __be16 port; - union vxlan_addr dst_ip; -}; - -struct ehci_iso_packet { - u64 bufp; - __le32 transaction; - u8 cross; - u32 buf1; -}; - -struct ehci_iso_sched { - struct list_head td_list; - unsigned int span; - unsigned int first_packet; - struct ehci_iso_packet packet[0]; -}; - -struct ehci_tt { - u16 bandwidth[8]; - struct list_head tt_list; - struct list_head ps_list; - struct usb_tt *usb_tt; - int tt_port; -}; - -struct metrousb_private { - spinlock_t lock; - int throttled; - long unsigned int control_state; -}; - -struct urb_to_usbip_flags { - u32 urb_flag; - u32 usbip_flag; -}; - -struct key_entry { - int type; - u32 code; - union { - u16 keycode; - struct { - u8 code; - u8 value; - } sw; - }; -}; - -struct pl031_vendor_data { - struct rtc_class_ops ops; - bool clockwatch; - bool st_weekday; - long unsigned int irqflags; - time64_t range_min; - timeu64_t range_max; -}; - -struct pl031_local { - struct pl031_vendor_data *vendor; - struct rtc_device *rtc; - void *base; -}; - -struct sdio_device_id { - __u8 class; - __u16 vendor; - __u16 device; - kernel_ulong_t driver_data; -}; - -struct sdio_driver { - char *name; - const struct sdio_device_id *id_table; - int (*probe)(struct sdio_func *, const struct sdio_device_id *); - void (*remove)(struct sdio_func *); - struct device_driver drv; -}; - -struct sec_debug_bd_info { - u32 soft_err_check; - u32 hard_err_check; - u32 icv_mac1st_word; - u32 sec_get_id; - u32 reserv_left[12]; -}; - -struct sec_out_bd_info { - u16 data; -}; - -struct pmu_irq_ops { - void (*enable_pmuirq)(unsigned int); - void (*disable_pmuirq)(unsigned int); - void (*free_pmuirq)(unsigned int, int, void *); -}; - -struct net_rate_estimator { - struct gnet_stats_basic_sync *bstats; - spinlock_t *stats_lock; - bool running; - struct gnet_stats_basic_sync *cpu_bstats; - u8 ewma_log; - u8 intvl_log; - seqcount_t seq; - u64 last_packets; - u64 last_bytes; - u64 avpps; - u64 avbps; - long unsigned int next_jiffies; - struct timer_list timer; - struct callback_head rcu; -}; - -struct compat_ifconf { - compat_int_t ifc_len; - compat_caddr_t ifcbuf; -}; - -enum tc_mq_command { - TC_MQ_CREATE = 0, - TC_MQ_DESTROY = 1, - TC_MQ_STATS = 2, - TC_MQ_GRAFT = 3, -}; - -struct tc_mq_opt_offload_graft_params { - long unsigned int queue; - u32 child_handle; -}; - -struct tc_mq_qopt_offload { - enum tc_mq_command command; - u32 handle; - union { - struct tc_qopt_offload_stats stats; - struct tc_mq_opt_offload_graft_params graft_params; - }; -}; - -struct mq_sched { - struct Qdisc **qdiscs; -}; - -struct tc_mirred { - __u32 index; - __u32 capab; - int action; - int refcnt; - int bindcnt; - int eaction; - __u32 ifindex; -}; - -enum { - TCA_MIRRED_UNSPEC = 0, - TCA_MIRRED_TM = 1, - TCA_MIRRED_PARMS = 2, - TCA_MIRRED_PAD = 3, - TCA_MIRRED_BLOCKID = 4, - __TCA_MIRRED_MAX = 5, -}; - -struct tcf_mirred { - struct tc_action common; - int tcfm_eaction; - u32 tcfm_blockid; - bool tcfm_mac_header_xmit; - struct net_device *tcfm_dev; - netdevice_tracker tcfm_dev_tracker; - struct list_head tcfm_list; - long: 64; -}; - -enum tc_prio_command { - TC_PRIO_REPLACE = 0, - TC_PRIO_DESTROY = 1, - TC_PRIO_STATS = 2, - TC_PRIO_GRAFT = 3, -}; - -struct tc_prio_qopt_offload_params { - int bands; - u8 priomap[16]; - struct gnet_stats_queue *qstats; -}; - -struct tc_prio_qopt_offload_graft_params { - u8 band; - u32 child_handle; -}; - -struct tc_prio_qopt_offload { - enum tc_prio_command command; - u32 handle; - u32 parent; - union { - struct tc_prio_qopt_offload_params replace_params; - struct tc_qopt_offload_stats stats; - struct tc_prio_qopt_offload_graft_params graft_params; - }; -}; - -struct prio_sched_data { - int bands; - struct tcf_proto *filter_list; - struct tcf_block *block; - u8 prio2band[16]; - struct Qdisc *queues[16]; -}; - -struct ethtool_forced_speed_map { - u32 speed; - long unsigned int caps[2]; - const u32 *cap_arr; - u32 arr_size; -}; - -enum { - ETHTOOL_A_PROFILE_UNSPEC = 0, - ETHTOOL_A_PROFILE_IRQ_MODERATION = 1, - __ETHTOOL_A_PROFILE_CNT = 2, - ETHTOOL_A_PROFILE_MAX = 1, -}; - -enum { - ETHTOOL_A_IRQ_MODERATION_UNSPEC = 0, - ETHTOOL_A_IRQ_MODERATION_USEC = 1, - ETHTOOL_A_IRQ_MODERATION_PKTS = 2, - ETHTOOL_A_IRQ_MODERATION_COMPS = 3, - __ETHTOOL_A_IRQ_MODERATION_CNT = 4, - ETHTOOL_A_IRQ_MODERATION_MAX = 3, -}; - -struct coalesce_reply_data { - struct ethnl_reply_data base; - struct ethtool_coalesce coalesce; - struct kernel_ethtool_coalesce kernel_coalesce; - u32 supported_params; -}; - -struct plca_reply_data { - struct ethnl_reply_data base; - struct phy_plca_cfg plca_cfg; - struct phy_plca_status plca_st; -}; - -enum cntl_msg_types { - IPCTNL_MSG_CT_NEW = 0, - IPCTNL_MSG_CT_GET = 1, - IPCTNL_MSG_CT_DELETE = 2, - IPCTNL_MSG_CT_GET_CTRZERO = 3, - IPCTNL_MSG_CT_GET_STATS_CPU = 4, - IPCTNL_MSG_CT_GET_STATS = 5, - IPCTNL_MSG_CT_GET_DYING = 6, - IPCTNL_MSG_CT_GET_UNCONFIRMED = 7, - IPCTNL_MSG_MAX = 8, -}; - -enum ctnl_exp_msg_types { - IPCTNL_MSG_EXP_NEW = 0, - IPCTNL_MSG_EXP_GET = 1, - IPCTNL_MSG_EXP_DELETE = 2, - IPCTNL_MSG_EXP_GET_STATS_CPU = 3, - IPCTNL_MSG_EXP_MAX = 4, -}; - -enum ctattr_type { - CTA_UNSPEC = 0, - CTA_TUPLE_ORIG = 1, - CTA_TUPLE_REPLY = 2, - CTA_STATUS = 3, - CTA_PROTOINFO = 4, - CTA_HELP = 5, - CTA_NAT_SRC = 6, - CTA_TIMEOUT = 7, - CTA_MARK = 8, - CTA_COUNTERS_ORIG = 9, - CTA_COUNTERS_REPLY = 10, - CTA_USE = 11, - CTA_ID = 12, - CTA_NAT_DST = 13, - CTA_TUPLE_MASTER = 14, - CTA_SEQ_ADJ_ORIG = 15, - CTA_NAT_SEQ_ADJ_ORIG = 15, - CTA_SEQ_ADJ_REPLY = 16, - CTA_NAT_SEQ_ADJ_REPLY = 16, - CTA_SECMARK = 17, - CTA_ZONE = 18, - CTA_SECCTX = 19, - CTA_TIMESTAMP = 20, - CTA_MARK_MASK = 21, - CTA_LABELS = 22, - CTA_LABELS_MASK = 23, - CTA_SYNPROXY = 24, - CTA_FILTER = 25, - CTA_STATUS_MASK = 26, - __CTA_MAX = 27, -}; - -enum ctattr_tuple { - CTA_TUPLE_UNSPEC = 0, - CTA_TUPLE_IP = 1, - CTA_TUPLE_PROTO = 2, - CTA_TUPLE_ZONE = 3, - __CTA_TUPLE_MAX = 4, -}; - -enum ctattr_ip { - CTA_IP_UNSPEC = 0, - CTA_IP_V4_SRC = 1, - CTA_IP_V4_DST = 2, - CTA_IP_V6_SRC = 3, - CTA_IP_V6_DST = 4, - __CTA_IP_MAX = 5, -}; - -enum ctattr_counters { - CTA_COUNTERS_UNSPEC = 0, - CTA_COUNTERS_PACKETS = 1, - CTA_COUNTERS_BYTES = 2, - CTA_COUNTERS32_PACKETS = 3, - CTA_COUNTERS32_BYTES = 4, - CTA_COUNTERS_PAD = 5, - __CTA_COUNTERS_MAX = 6, -}; - -enum ctattr_tstamp { - CTA_TIMESTAMP_UNSPEC = 0, - CTA_TIMESTAMP_START = 1, - CTA_TIMESTAMP_STOP = 2, - CTA_TIMESTAMP_PAD = 3, - __CTA_TIMESTAMP_MAX = 4, -}; - -enum ctattr_seqadj { - CTA_SEQADJ_UNSPEC = 0, - CTA_SEQADJ_CORRECTION_POS = 1, - CTA_SEQADJ_OFFSET_BEFORE = 2, - CTA_SEQADJ_OFFSET_AFTER = 3, - __CTA_SEQADJ_MAX = 4, -}; - -enum ctattr_synproxy { - CTA_SYNPROXY_UNSPEC = 0, - CTA_SYNPROXY_ISN = 1, - CTA_SYNPROXY_ITS = 2, - CTA_SYNPROXY_TSOFF = 3, - __CTA_SYNPROXY_MAX = 4, -}; - -enum ctattr_expect { - CTA_EXPECT_UNSPEC = 0, - CTA_EXPECT_MASTER = 1, - CTA_EXPECT_TUPLE = 2, - CTA_EXPECT_MASK = 3, - CTA_EXPECT_TIMEOUT = 4, - CTA_EXPECT_ID = 5, - CTA_EXPECT_HELP_NAME = 6, - CTA_EXPECT_ZONE = 7, - CTA_EXPECT_FLAGS = 8, - CTA_EXPECT_CLASS = 9, - CTA_EXPECT_NAT = 10, - CTA_EXPECT_FN = 11, - __CTA_EXPECT_MAX = 12, -}; - -enum ctattr_expect_nat { - CTA_EXPECT_NAT_UNSPEC = 0, - CTA_EXPECT_NAT_DIR = 1, - CTA_EXPECT_NAT_TUPLE = 2, - __CTA_EXPECT_NAT_MAX = 3, -}; - -enum ctattr_stats_cpu { - CTA_STATS_UNSPEC = 0, - CTA_STATS_SEARCHED = 1, - CTA_STATS_FOUND = 2, - CTA_STATS_NEW = 3, - CTA_STATS_INVALID = 4, - CTA_STATS_IGNORE = 5, - CTA_STATS_DELETE = 6, - CTA_STATS_DELETE_LIST = 7, - CTA_STATS_INSERT = 8, - CTA_STATS_INSERT_FAILED = 9, - CTA_STATS_DROP = 10, - CTA_STATS_EARLY_DROP = 11, - CTA_STATS_ERROR = 12, - CTA_STATS_SEARCH_RESTART = 13, - CTA_STATS_CLASH_RESOLVE = 14, - CTA_STATS_CHAIN_TOOLONG = 15, - __CTA_STATS_MAX = 16, -}; - -enum ctattr_stats_global { - CTA_STATS_GLOBAL_UNSPEC = 0, - CTA_STATS_GLOBAL_ENTRIES = 1, - CTA_STATS_GLOBAL_MAX_ENTRIES = 2, - __CTA_STATS_GLOBAL_MAX = 3, -}; - -enum ctattr_expect_stats { - CTA_STATS_EXP_UNSPEC = 0, - CTA_STATS_EXP_NEW = 1, - CTA_STATS_EXP_CREATE = 2, - CTA_STATS_EXP_DELETE = 3, - __CTA_STATS_EXP_MAX = 4, -}; - -enum ctattr_filter { - CTA_FILTER_UNSPEC = 0, - CTA_FILTER_ORIG_FLAGS = 1, - CTA_FILTER_REPLY_FLAGS = 2, - __CTA_FILTER_MAX = 3, -}; - -struct ctnetlink_list_dump_ctx { - struct nf_conn *last; - unsigned int cpu; - bool done; -}; - -struct ctnetlink_filter_u32 { - u32 val; - u32 mask; -}; - -struct ctnetlink_filter { - u8 family; - bool zone_filter; - u_int32_t orig_flags; - u_int32_t reply_flags; - struct nf_conntrack_tuple orig; - struct nf_conntrack_tuple reply; - struct nf_conntrack_zone zone; - struct ctnetlink_filter_u32 mark; - struct ctnetlink_filter_u32 status; -}; - -enum { - XT_CT_NOTRACK = 1, - XT_CT_NOTRACK_ALIAS = 2, - XT_CT_ZONE_DIR_ORIG = 4, - XT_CT_ZONE_DIR_REPL = 8, - XT_CT_ZONE_MARK = 16, - XT_CT_MASK = 31, -}; - -struct xt_ct_target_info { - __u16 flags; - __u16 zone; - __u32 ct_events; - __u32 exp_events; - char helper[16]; - struct nf_conn *ct; -}; - -struct xt_ct_target_info_v1 { - __u16 flags; - __u16 zone; - __u32 ct_events; - __u32 exp_events; - char helper[16]; - char timeout[32]; - struct nf_conn *ct; -}; - -enum { - XT_CONNLIMIT_INVERT = 1, - XT_CONNLIMIT_DADDR = 2, -}; - -struct xt_connlimit_info { - union { - union nf_inet_addr mask; - }; - unsigned int limit; - __u32 flags; - struct nf_conncount_data *data; -}; - -struct xt_ipcomp { - __u32 spis[2]; - __u8 invflags; - __u8 hdrres; -}; - -struct xt_pkttype_info { - int pkttype; - int invert; -}; - -struct hash_net4_elem { - __be32 ip; - u16 padding0; - u8 nomatch; - u8 cidr; -}; - -struct hash_net4 { - struct htable *table; - struct htable_gc gc; - u32 maxelem; - u32 initval; - u8 bucketsize; - struct list_head ad; - struct hash_net4_elem next; - struct net_prefixes nets[32]; -}; - -struct hash_net4_resize_ad { - struct list_head list; - enum ipset_adt ad; - struct hash_net4_elem d; - struct ip_set_ext ext; - struct ip_set_ext mext; - u32 flags; -}; - -struct hash_net6_elem { - union nf_inet_addr ip; - u16 padding0; - u8 nomatch; - u8 cidr; -}; - -struct hash_net6 { - struct htable *table; - struct htable_gc gc; - u32 maxelem; - u32 initval; - u8 bucketsize; - struct list_head ad; - struct hash_net6_elem next; - struct net_prefixes nets[128]; -}; - -struct hash_net6_resize_ad { - struct list_head list; - enum ipset_adt ad; - struct hash_net6_elem d; - struct ip_set_ext ext; - struct ip_set_ext mext; - u32 flags; -}; - -struct tcp_states_t { - int next_state[11]; -}; - -struct sock_bh_locked { - struct sock *sock; - local_lock_t bh_lock; -}; - -struct bpf_tcp_iter_state { - struct tcp_iter_state state; - unsigned int cur_sk; - unsigned int end_sk; - unsigned int max_sk; - struct sock **batch; - bool st_bucket_done; -}; - -struct bpf_iter__tcp { - union { - struct bpf_iter_meta *meta; - }; - union { - struct sock_common *sk_common; - }; - uid_t uid; -}; - -struct ipt_ECN_info { - __u8 operation; - __u8 ip_ect; - union { - struct { - __u8 ece: 1; - __u8 cwr: 1; - } tcp; - } proto; -}; - -struct ac6_iter_state { - struct seq_net_private p; - struct net_device *dev; -}; - -struct nft_ct_frag6_pernet { - struct ctl_table_header *nf_frag_frags_hdr; - struct fqdir *fqdir; -}; - -struct br_frame_type { - __be16 type; - int (*frame_handler)(struct net_bridge_port *, struct sk_buff *); - struct hlist_node list; -}; - -enum { - IFLA_BRIDGE_MST_UNSPEC = 0, - IFLA_BRIDGE_MST_ENTRY = 1, - __IFLA_BRIDGE_MST_MAX = 2, -}; - -enum { - IFLA_BRIDGE_MST_ENTRY_UNSPEC = 0, - IFLA_BRIDGE_MST_ENTRY_MSTI = 1, - IFLA_BRIDGE_MST_ENTRY_STATE = 2, - __IFLA_BRIDGE_MST_ENTRY_MAX = 3, -}; - -struct ebt_ip_info { - __be32 saddr; - __be32 daddr; - __be32 smsk; - __be32 dmsk; - __u8 tos; - __u8 protocol; - __u8 bitmask; - __u8 invflags; - union { - __u16 sport[2]; - __u8 icmp_type[2]; - __u8 igmp_type[2]; - }; - union { - __u16 dport[2]; - __u8 icmp_code[2]; - }; -}; - -union pkthdr___2 { - struct { - __be16 src; - __be16 dst; - } tcpudphdr; - struct { - u8 type; - u8 code; - } icmphdr; - struct { - u8 type; - } igmphdr; -}; - -struct ebt_mark_t_info { - long unsigned int mark; - int target; -}; - -enum xprt_xid_rb_cmp { - XID_RB_EQUAL = 0, - XID_RB_LEFT = 1, - XID_RB_RIGHT = 2, -}; - -struct rsc; - -struct gss_svc_data { - struct rpc_gss_wire_cred clcred; - u32 gsd_databody_offset; - struct rsc *rsci; - __be32 gsd_seq_num; - u8 gsd_scratch[40]; -}; - -struct gss_svc_seq_data { - u32 sd_max; - long unsigned int sd_win[2]; - spinlock_t sd_lock; -}; - -struct rsc { - struct cache_head h; - struct xdr_netobj handle; - struct svc_cred cred; - struct gss_svc_seq_data seqdata; - struct gss_ctx *mechctx; - struct callback_head callback_head; -}; - -struct rsi { - struct cache_head h; - struct xdr_netobj in_handle; - struct xdr_netobj in_token; - struct xdr_netobj out_handle; - struct xdr_netobj out_token; - int major_status; - int minor_status; - struct callback_head callback_head; -}; - -struct gss_domain { - struct auth_domain h; - u32 pseudoflavor; -}; - -enum sctp_ssf_flags { - SCTP_DATA_UNSENT = 0, - SCTP_DATA_SENT = 1, -}; - -enum { - SCTP_ARBITRARY_COOKIE_ECHO_LEN = 200, -}; - -struct sctp_infox { - struct sctp_info *sctpinfo; - struct sctp_association *asoc; -}; - -struct sctp_comm_param { - struct sk_buff *skb; - struct netlink_callback *cb; - const struct inet_diag_req_v2 *r; - const struct nlmsghdr *nlh; - bool net_admin; -}; - -#ifndef BPF_NO_PRESERVE_ACCESS_INDEX -#pragma clang attribute pop -#endif - -#endif /* __VMLINUX_H__ */ diff --git a/components/execd/pkg/ebpf/prog/vmlinux-x86_64.h b/components/execd/pkg/ebpf/prog/vmlinux-x86_64.h deleted file mode 100644 index f30e6aae0..000000000 --- a/components/execd/pkg/ebpf/prog/vmlinux-x86_64.h +++ /dev/null @@ -1,161230 +0,0 @@ -#ifndef __VMLINUX_H__ -#define __VMLINUX_H__ - -#ifndef BPF_NO_PRESERVE_ACCESS_INDEX -#pragma clang attribute push (__attribute__((preserve_access_index)), apply_to = record) -#endif - -typedef unsigned char __u8; - -typedef short unsigned int __u16; - -typedef int __s32; - -typedef unsigned int __u32; - -typedef long long int __s64; - -typedef long long unsigned int __u64; - -typedef __u8 u8; - -typedef __u16 u16; - -typedef __s32 s32; - -typedef __u32 u32; - -typedef __s64 s64; - -typedef __u64 u64; - -enum { - false = 0, - true = 1, -}; - -typedef long int __kernel_long_t; - -typedef long unsigned int __kernel_ulong_t; - -typedef int __kernel_pid_t; - -typedef unsigned int __kernel_uid32_t; - -typedef __kernel_ulong_t __kernel_size_t; - -typedef __kernel_long_t __kernel_ssize_t; - -typedef long long int __kernel_time64_t; - -typedef __kernel_long_t __kernel_clock_t; - -typedef int __kernel_timer_t; - -typedef int __kernel_clockid_t; - -typedef __kernel_pid_t pid_t; - -typedef __kernel_clockid_t clockid_t; - -typedef _Bool bool; - -typedef __kernel_uid32_t uid_t; - -typedef long unsigned int uintptr_t; - -typedef __kernel_size_t size_t; - -typedef __kernel_ssize_t ssize_t; - -typedef s64 ktime_t; - -typedef struct { - int counter; -} atomic_t; - -typedef struct { - s64 counter; -} atomic64_t; - -struct list_head { - struct list_head *next; - struct list_head *prev; -}; - -struct hlist_node; - -struct hlist_head { - struct hlist_node *first; -}; - -struct hlist_node { - struct hlist_node *next; - struct hlist_node **pprev; -}; - -struct callback_head { - struct callback_head *next; - void (*func)(struct callback_head *); -}; - -struct thread_info { - long unsigned int flags; - long unsigned int syscall_work; - u32 status; - u32 cpu; -}; - -struct refcount_struct { - atomic_t refs; -}; - -typedef struct refcount_struct refcount_t; - -struct llist_node { - struct llist_node *next; -}; - -struct __call_single_node { - struct llist_node llist; - union { - unsigned int u_flags; - atomic_t a_flags; - }; - u16 src; - u16 dst; -}; - -struct load_weight { - long unsigned int weight; - u32 inv_weight; -}; - -struct rb_node { - long unsigned int __rb_parent_color; - struct rb_node *rb_right; - struct rb_node *rb_left; -}; - -struct sched_avg { - u64 last_update_time; - u64 load_sum; - u64 runnable_sum; - u32 util_sum; - u32 period_contrib; - long unsigned int load_avg; - long unsigned int runnable_avg; - long unsigned int util_avg; - unsigned int util_est; -}; - -struct cfs_rq; - -struct sched_entity { - struct load_weight load; - struct rb_node run_node; - u64 deadline; - u64 min_vruntime; - u64 min_slice; - struct list_head group_node; - unsigned char on_rq; - unsigned char sched_delayed; - unsigned char rel_deadline; - unsigned char custom_slice; - u64 exec_start; - u64 sum_exec_runtime; - u64 prev_sum_exec_runtime; - u64 vruntime; - union { - s64 vlag; - u64 vprot; - }; - u64 slice; - u64 nr_migrations; - int depth; - struct sched_entity *parent; - struct cfs_rq *cfs_rq; - struct cfs_rq *my_q; - long unsigned int runnable_weight; - long: 64; - struct sched_avg avg; -}; - -struct sched_rt_entity { - struct list_head run_list; - long unsigned int timeout; - long unsigned int watchdog_stamp; - unsigned int time_slice; - short unsigned int on_rq; - short unsigned int on_list; - struct sched_rt_entity *back; -}; - -struct timerqueue_node { - struct rb_node node; - ktime_t expires; -}; - -enum hrtimer_restart { - HRTIMER_NORESTART = 0, - HRTIMER_RESTART = 1, -}; - -struct hrtimer_clock_base; - -struct hrtimer { - struct timerqueue_node node; - ktime_t _softexpires; - enum hrtimer_restart (*function)(struct hrtimer *); - struct hrtimer_clock_base *base; - u8 state; - u8 is_rel; - u8 is_soft; - u8 is_hard; -}; - -struct task_struct; - -struct sched_dl_entity; - -typedef struct task_struct * (*dl_server_pick_f)(struct sched_dl_entity *); - -struct rq; - -struct sched_dl_entity { - struct rb_node rb_node; - u64 dl_runtime; - u64 dl_deadline; - u64 dl_period; - u64 dl_bw; - u64 dl_density; - s64 runtime; - u64 deadline; - unsigned int flags; - unsigned int dl_throttled: 1; - unsigned int dl_yielded: 1; - unsigned int dl_non_contending: 1; - unsigned int dl_overrun: 1; - unsigned int dl_server: 1; - unsigned int dl_server_active: 1; - unsigned int dl_defer: 1; - unsigned int dl_defer_armed: 1; - unsigned int dl_defer_running: 1; - struct hrtimer dl_timer; - struct hrtimer inactive_timer; - struct rq *rq; - dl_server_pick_f server_pick_task; - struct sched_dl_entity *pi_se; -}; - -struct scx_dsq_list_node { - struct list_head node; - u32 flags; - u32 priv; -}; - -typedef atomic64_t atomic_long_t; - -struct scx_dispatch_q; - -struct cgroup; - -struct sched_ext_entity { - struct scx_dispatch_q *dsq; - struct scx_dsq_list_node dsq_list; - struct rb_node dsq_priq; - u32 dsq_seq; - u32 dsq_flags; - u32 flags; - u32 weight; - s32 sticky_cpu; - s32 holding_cpu; - s32 selected_cpu; - u32 kf_mask; - struct task_struct *kf_tasks[2]; - atomic_long_t ops_state; - struct list_head runnable_node; - long unsigned int runnable_at; - u64 core_sched_at; - u64 ddsp_dsq_id; - u64 ddsp_enq_flags; - u64 slice; - u64 dsq_vtime; - bool disallow; - struct cgroup *cgrp_moving_from; - struct list_head tasks_node; -}; - -struct uclamp_se { - unsigned int value: 11; - unsigned int bucket_id: 3; - unsigned int active: 1; - unsigned int user_defined: 1; -}; - -struct sched_statistics { - u64 wait_start; - u64 wait_max; - u64 wait_count; - u64 wait_sum; - u64 iowait_count; - u64 iowait_sum; - u64 sleep_start; - u64 sleep_max; - s64 sum_sleep_runtime; - u64 block_start; - u64 block_max; - s64 sum_block_runtime; - s64 exec_max; - u64 slice_max; - u64 nr_migrations_cold; - u64 nr_failed_migrations_affine; - u64 nr_failed_migrations_running; - u64 nr_failed_migrations_hot; - u64 nr_forced_migrations; - u64 nr_wakeups; - u64 nr_wakeups_sync; - u64 nr_wakeups_migrate; - u64 nr_wakeups_local; - u64 nr_wakeups_remote; - u64 nr_wakeups_affine; - u64 nr_wakeups_affine_attempts; - u64 nr_wakeups_passive; - u64 nr_wakeups_idle; - u64 core_forceidle_sum; - long: 64; - long: 64; - long: 64; -}; - -struct cpumask { - long unsigned int bits[128]; -}; - -typedef struct cpumask cpumask_t; - -union rcu_special { - struct { - u8 blocked; - u8 need_qs; - u8 exp_hint; - u8 need_mb; - } b; - u32 s; -}; - -struct sched_info { - long unsigned int pcount; - long long unsigned int run_delay; - long long unsigned int max_run_delay; - long long unsigned int min_run_delay; - long long unsigned int last_arrival; - long long unsigned int last_queued; -}; - -struct plist_node { - int prio; - struct list_head prio_list; - struct list_head node_list; -}; - -enum timespec_type { - TT_NONE = 0, - TT_NATIVE = 1, - TT_COMPAT = 2, -}; - -struct __kernel_timespec; - -struct old_timespec32; - -struct pollfd; - -struct restart_block { - long unsigned int arch_data; - long int (*fn)(struct restart_block *); - union { - struct { - u32 *uaddr; - u32 val; - u32 flags; - u32 bitset; - u64 time; - u32 *uaddr2; - } futex; - struct { - clockid_t clockid; - enum timespec_type type; - union { - struct __kernel_timespec *rmtp; - struct old_timespec32 *compat_rmtp; - }; - u64 expires; - } nanosleep; - struct { - struct pollfd *ufds; - int nfds; - int has_timeout; - long unsigned int tv_sec; - long unsigned int tv_nsec; - } poll; - }; -}; - -struct qspinlock { - union { - atomic_t val; - struct { - u8 locked; - u8 pending; - }; - struct { - u16 locked_pending; - u16 tail; - }; - }; -}; - -typedef struct qspinlock arch_spinlock_t; - -struct raw_spinlock { - arch_spinlock_t raw_lock; -}; - -typedef struct raw_spinlock raw_spinlock_t; - -struct prev_cputime { - u64 utime; - u64 stime; - raw_spinlock_t lock; -}; - -struct seqcount { - unsigned int sequence; -}; - -typedef struct seqcount seqcount_t; - -enum vtime_state { - VTIME_INACTIVE = 0, - VTIME_IDLE = 1, - VTIME_SYS = 2, - VTIME_USER = 3, - VTIME_GUEST = 4, -}; - -struct vtime { - seqcount_t seqcount; - long long unsigned int starttime; - enum vtime_state state; - unsigned int cpu; - u64 utime; - u64 stime; - u64 gtime; -}; - -struct rb_root { - struct rb_node *rb_node; -}; - -struct rb_root_cached { - struct rb_root rb_root; - struct rb_node *rb_leftmost; -}; - -struct timerqueue_head { - struct rb_root_cached rb_root; -}; - -struct posix_cputimer_base { - u64 nextevt; - struct timerqueue_head tqhead; -}; - -struct posix_cputimers { - struct posix_cputimer_base bases[3]; - unsigned int timers_active; - unsigned int expiry_active; -}; - -struct optimistic_spin_queue { - atomic_t tail; -}; - -struct mutex { - atomic_long_t owner; - raw_spinlock_t wait_lock; - struct optimistic_spin_queue osq; - struct list_head wait_list; -}; - -struct posix_cputimers_work { - struct callback_head work; - struct mutex mutex; - unsigned int scheduled; -}; - -struct sem_undo_list; - -struct sysv_sem { - struct sem_undo_list *undo_list; -}; - -struct sysv_shm { - struct list_head shm_clist; -}; - -typedef struct { - long unsigned int sig[1]; -} sigset_t; - -struct sigpending { - struct list_head list; - sigset_t signal; -}; - -typedef struct { - uid_t val; -} kuid_t; - -struct seccomp_filter; - -struct seccomp { - int mode; - atomic_t filter_count; - struct seccomp_filter *filter; -}; - -struct syscall_user_dispatch { - char *selector; - long unsigned int offset; - long unsigned int len; - bool on_dispatch; -}; - -struct spinlock { - union { - struct raw_spinlock rlock; - }; -}; - -typedef struct spinlock spinlock_t; - -struct wake_q_node { - struct wake_q_node *next; -}; - -struct task_io_accounting { - u64 rchar; - u64 wchar; - u64 syscr; - u64 syscw; - u64 read_bytes; - u64 write_bytes; - u64 cancelled_write_bytes; -}; - -typedef struct { - long unsigned int bits[16]; -} nodemask_t; - -struct seqcount_spinlock { - seqcount_t seqcount; -}; - -typedef struct seqcount_spinlock seqcount_spinlock_t; - -struct arch_tlbflush_unmap_batch { - struct cpumask cpumask; - bool unmapped_pages; -}; - -struct tlbflush_unmap_batch { - struct arch_tlbflush_unmap_batch arch; - bool flush_required; - bool writable; -}; - -struct page; - -struct page_frag { - struct page *page; - __u32 offset; - __u32 size; -}; - -struct latency_record { - long unsigned int backtrace[12]; - unsigned int count; - long unsigned int time; - long unsigned int max; -}; - -struct kmap_ctrl {}; - -struct timer_list { - struct hlist_node entry; - long unsigned int expires; - void (*function)(struct timer_list *); - u32 flags; -}; - -struct llist_head { - struct llist_node *first; -}; - -struct da_monitor { - bool monitoring; - unsigned int curr_state; -}; - -struct ltl_monitor {}; - -union rv_task_monitor { - struct da_monitor da_mon; - struct ltl_monitor ltl_mon; -}; - -struct desc_struct { - u16 limit0; - u16 base0; - u16 base1: 8; - u16 type: 4; - u16 s: 1; - u16 dpl: 2; - u16 p: 1; - u16 limit1: 4; - u16 avl: 1; - u16 l: 1; - u16 d: 1; - u16 g: 1; - u16 base2: 8; -}; - -struct thread_shstk { - u64 base; - u64 size; -}; - -struct perf_event; - -struct io_bitmap; - -struct thread_struct { - struct desc_struct tls_array[3]; - long unsigned int sp; - short unsigned int es; - short unsigned int ds; - short unsigned int fsindex; - short unsigned int gsindex; - long unsigned int fsbase; - long unsigned int gsbase; - struct perf_event *ptrace_bps[4]; - long unsigned int virtual_dr6; - long unsigned int ptrace_dr7; - long unsigned int cr2; - long unsigned int trap_nr; - long unsigned int error_code; - struct io_bitmap *io_bitmap; - long unsigned int iopl_emul; - unsigned int iopl_warn: 1; - u32 pkru; - long unsigned int features; - long unsigned int features_locked; - struct thread_shstk shstk; -}; - -struct sched_class; - -struct task_group; - -struct mm_struct; - -struct address_space; - -struct pid; - -struct completion; - -struct cred; - -struct key; - -struct nameidata; - -struct fs_struct; - -struct files_struct; - -struct io_uring_task; - -struct nsproxy; - -struct signal_struct; - -struct sighand_struct; - -struct audit_context; - -struct rt_mutex_waiter; - -struct bio_list; - -struct blk_plug; - -struct reclaim_state; - -struct io_context; - -struct capture_control; - -struct kernel_siginfo; - -typedef struct kernel_siginfo kernel_siginfo_t; - -struct css_set; - -struct robust_list_head; - -struct compat_robust_list_head; - -struct futex_pi_state; - -struct perf_event_context; - -struct perf_ctx_data; - -struct mempolicy; - -struct numa_group; - -struct rseq; - -struct pipe_inode_info; - -struct task_delay_info; - -struct mem_cgroup; - -struct obj_cgroup; - -struct gendisk; - -struct uprobe_task; - -struct vm_struct; - -struct bpf_local_storage; - -struct bpf_run_ctx; - -struct bpf_net_context; - -struct user_event_mm; - -struct task_struct { - struct thread_info thread_info; - unsigned int __state; - unsigned int saved_state; - void *stack; - refcount_t usage; - unsigned int flags; - unsigned int ptrace; - int on_cpu; - struct __call_single_node wake_entry; - unsigned int wakee_flips; - long unsigned int wakee_flip_decay_ts; - struct task_struct *last_wakee; - int recent_used_cpu; - int wake_cpu; - int on_rq; - int prio; - int static_prio; - int normal_prio; - unsigned int rt_priority; - struct sched_entity se; - struct sched_rt_entity rt; - struct sched_dl_entity dl; - struct sched_dl_entity *dl_server; - struct sched_ext_entity scx; - const struct sched_class *sched_class; - struct rb_node core_node; - long unsigned int core_cookie; - unsigned int core_occupation; - struct task_group *sched_task_group; - struct uclamp_se uclamp_req[2]; - struct uclamp_se uclamp[2]; - struct sched_statistics stats; - struct hlist_head preempt_notifiers; - unsigned int btrace_seq; - unsigned int policy; - long unsigned int max_allowed_capacity; - int nr_cpus_allowed; - const cpumask_t *cpus_ptr; - cpumask_t *user_cpus_ptr; - cpumask_t cpus_mask; - void *migration_pending; - short unsigned int migration_disabled; - short unsigned int migration_flags; - int trc_reader_nesting; - int trc_ipi_to_cpu; - union rcu_special trc_reader_special; - struct list_head trc_holdout_list; - struct list_head trc_blkd_node; - int trc_blkd_cpu; - struct sched_info sched_info; - struct list_head tasks; - struct plist_node pushable_tasks; - struct rb_node pushable_dl_tasks; - struct mm_struct *mm; - struct mm_struct *active_mm; - struct address_space *faults_disabled_mapping; - int exit_state; - int exit_code; - int exit_signal; - int pdeath_signal; - long unsigned int jobctl; - unsigned int personality; - unsigned int sched_reset_on_fork: 1; - unsigned int sched_contributes_to_load: 1; - unsigned int sched_migrated: 1; - unsigned int sched_task_hot: 1; - long: 28; - unsigned int sched_remote_wakeup: 1; - unsigned int sched_rt_mutex: 1; - unsigned int user_dumpable: 1; - unsigned int in_execve: 1; - unsigned int in_iowait: 1; - unsigned int restore_sigmask: 1; - unsigned int in_lru_fault: 1; - unsigned int no_cgroup_migration: 1; - unsigned int frozen: 1; - unsigned int use_memdelay: 1; - unsigned int in_memstall: 1; - unsigned int in_eventfd: 1; - unsigned int pasid_activated: 1; - unsigned int reported_split_lock: 1; - unsigned int in_thrashing: 1; - unsigned int in_nf_duplicate: 1; - long unsigned int atomic_flags; - struct restart_block restart_block; - pid_t pid; - pid_t tgid; - long unsigned int stack_canary; - struct task_struct *real_parent; - struct task_struct *parent; - struct list_head children; - struct list_head sibling; - struct task_struct *group_leader; - struct list_head ptraced; - struct list_head ptrace_entry; - struct pid *thread_pid; - struct hlist_node pid_links[4]; - struct list_head thread_node; - struct completion *vfork_done; - int *set_child_tid; - int *clear_child_tid; - void *worker_private; - u64 utime; - u64 stime; - u64 gtime; - struct prev_cputime prev_cputime; - struct vtime vtime; - atomic_t tick_dep_mask; - long unsigned int nvcsw; - long unsigned int nivcsw; - u64 start_time; - u64 start_boottime; - long unsigned int min_flt; - long unsigned int maj_flt; - struct posix_cputimers posix_cputimers; - struct posix_cputimers_work posix_cputimers_work; - const struct cred *ptracer_cred; - const struct cred *real_cred; - const struct cred *cred; - struct key *cached_requested_key; - char comm[16]; - struct nameidata *nameidata; - struct sysv_sem sysvsem; - struct sysv_shm sysvshm; - long unsigned int last_switch_count; - long unsigned int last_switch_time; - struct fs_struct *fs; - struct files_struct *files; - struct io_uring_task *io_uring; - struct nsproxy *nsproxy; - struct signal_struct *signal; - struct sighand_struct *sighand; - sigset_t blocked; - sigset_t real_blocked; - sigset_t saved_sigmask; - struct sigpending pending; - long unsigned int sas_ss_sp; - size_t sas_ss_size; - unsigned int sas_ss_flags; - struct callback_head *task_works; - struct audit_context *audit_context; - kuid_t loginuid; - unsigned int sessionid; - struct seccomp seccomp; - struct syscall_user_dispatch syscall_dispatch; - u64 parent_exec_id; - u64 self_exec_id; - spinlock_t alloc_lock; - raw_spinlock_t pi_lock; - struct wake_q_node wake_q; - struct rb_root_cached pi_waiters; - struct task_struct *pi_top_task; - struct rt_mutex_waiter *pi_blocked_on; - struct mutex *blocked_on; - long unsigned int blocker; - unsigned int in_ubsan; - void *journal_info; - struct bio_list *bio_list; - struct blk_plug *plug; - struct reclaim_state *reclaim_state; - struct io_context *io_context; - struct capture_control *capture_control; - long unsigned int ptrace_message; - kernel_siginfo_t *last_siginfo; - struct task_io_accounting ioac; - unsigned int psi_flags; - u64 acct_rss_mem1; - u64 acct_vm_mem1; - u64 acct_timexpd; - nodemask_t mems_allowed; - seqcount_spinlock_t mems_allowed_seq; - int cpuset_mem_spread_rotor; - struct css_set *cgroups; - struct list_head cg_list; - u32 closid; - u32 rmid; - struct robust_list_head *robust_list; - struct compat_robust_list_head *compat_robust_list; - struct list_head pi_state_list; - struct futex_pi_state *pi_state_cache; - struct mutex futex_exit_mutex; - unsigned int futex_state; - u8 perf_recursion[4]; - struct perf_event_context *perf_event_ctxp; - struct mutex perf_event_mutex; - struct list_head perf_event_list; - struct perf_ctx_data *perf_ctx_data; - struct mempolicy *mempolicy; - short int il_prev; - u8 il_weight; - short int pref_node_fork; - int numa_scan_seq; - unsigned int numa_scan_period; - unsigned int numa_scan_period_max; - int numa_preferred_nid; - long unsigned int numa_migrate_retry; - u64 node_stamp; - u64 last_task_numa_placement; - u64 last_sum_exec_runtime; - struct callback_head numa_work; - struct numa_group *numa_group; - long unsigned int *numa_faults; - long unsigned int total_numa_faults; - long unsigned int numa_faults_locality[3]; - long unsigned int numa_pages_migrated; - struct rseq *rseq; - u32 rseq_len; - u32 rseq_sig; - long unsigned int rseq_event_mask; - int mm_cid; - int last_mm_cid; - int migrate_from_cpu; - int mm_cid_active; - struct callback_head cid_work; - struct tlbflush_unmap_batch tlb_ubc; - struct pipe_inode_info *splice_pipe; - struct page_frag task_frag; - struct task_delay_info *delays; - int nr_dirtied; - int nr_dirtied_pause; - long unsigned int dirty_paused_when; - int latency_record_count; - struct latency_record latency_record[32]; - u64 timer_slack_ns; - u64 default_timer_slack_ns; - int curr_ret_stack; - int curr_ret_depth; - long unsigned int *ret_stack; - long long unsigned int ftrace_timestamp; - long long unsigned int ftrace_sleeptime; - atomic_t trace_overrun; - atomic_t tracing_graph_pause; - long unsigned int trace_recursion; - unsigned int memcg_nr_pages_over_high; - struct mem_cgroup *active_memcg; - struct obj_cgroup *objcg; - struct gendisk *throttle_disk; - struct uprobe_task *utask; - unsigned int sequential_io; - unsigned int sequential_io_avg; - struct kmap_ctrl kmap_ctrl; - struct callback_head rcu; - refcount_t rcu_users; - int pagefault_disabled; - struct task_struct *oom_reaper_list; - struct timer_list oom_reaper_timer; - struct vm_struct *stack_vm_area; - refcount_t stack_refcount; - int patch_state; - void *security; - struct bpf_local_storage *bpf_storage; - struct bpf_run_ctx *bpf_ctx; - struct bpf_net_context *bpf_net_context; - void *mce_vaddr; - __u64 mce_kflags; - u64 mce_addr; - __u64 mce_ripv: 1; - __u64 mce_whole_page: 1; - __u64 __mce_reserved: 62; - struct callback_head mce_kill_me; - int mce_count; - struct llist_head kretprobe_instances; - struct llist_head rethooks; - struct callback_head l1d_flush_kill; - union rv_task_monitor rv[2]; - struct user_event_mm *user_event_mm; - struct thread_struct thread; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -typedef __u32 Elf32_Word; - -struct elf32_note { - Elf32_Word n_namesz; - Elf32_Word n_descsz; - Elf32_Word n_type; -}; - -struct obs_kernel_param { - const char *str; - int (*setup_func)(char *); - int early; -}; - -struct __kernel_timespec { - __kernel_time64_t tv_sec; - long long int tv_nsec; -}; - -enum pid_type { - PIDTYPE_PID = 0, - PIDTYPE_TGID = 1, - PIDTYPE_PGID = 2, - PIDTYPE_SID = 3, - PIDTYPE_MAX = 4, -}; - -union sigval { - int sival_int; - void *sival_ptr; -}; - -typedef union sigval sigval_t; - -union __sifields { - struct { - __kernel_pid_t _pid; - __kernel_uid32_t _uid; - } _kill; - struct { - __kernel_timer_t _tid; - int _overrun; - sigval_t _sigval; - int _sys_private; - } _timer; - struct { - __kernel_pid_t _pid; - __kernel_uid32_t _uid; - sigval_t _sigval; - } _rt; - struct { - __kernel_pid_t _pid; - __kernel_uid32_t _uid; - int _status; - __kernel_clock_t _utime; - __kernel_clock_t _stime; - } _sigchld; - struct { - void *_addr; - union { - int _trapno; - short int _addr_lsb; - struct { - char _dummy_bnd[8]; - void *_lower; - void *_upper; - } _addr_bnd; - struct { - char _dummy_pkey[8]; - __u32 _pkey; - } _addr_pkey; - struct { - long unsigned int _data; - __u32 _type; - __u32 _flags; - } _perf; - }; - } _sigfault; - struct { - long int _band; - int _fd; - } _sigpoll; - struct { - void *_call_addr; - int _syscall; - unsigned int _arch; - } _sigsys; -}; - -struct kernel_siginfo { - struct { - int si_signo; - int si_errno; - int si_code; - union __sifields _sifields; - }; -}; - -enum fortify_func { - FORTIFY_FUNC_strncpy = 0, - FORTIFY_FUNC_strnlen = 1, - FORTIFY_FUNC_strlen = 2, - FORTIFY_FUNC_strscpy = 3, - FORTIFY_FUNC_strlcat = 4, - FORTIFY_FUNC_strcat = 5, - FORTIFY_FUNC_strncat = 6, - FORTIFY_FUNC_memset = 7, - FORTIFY_FUNC_memcpy = 8, - FORTIFY_FUNC_memmove = 9, - FORTIFY_FUNC_memscan = 10, - FORTIFY_FUNC_memcmp = 11, - FORTIFY_FUNC_memchr = 12, - FORTIFY_FUNC_memchr_inv = 13, - FORTIFY_FUNC_kmemdup = 14, - FORTIFY_FUNC_strcpy = 15, - FORTIFY_FUNC_UNKNOWN = 16, -}; - -struct rseq { - __u32 cpu_id_start; - __u32 cpu_id; - __u64 rseq_cs; - __u32 flags; - __u32 node_id; - __u32 mm_cid; - char end[0]; -}; - -struct rhash_head { - struct rhash_head *next; -}; - -struct scx_dispatch_q { - raw_spinlock_t lock; - struct list_head list; - struct rb_root priq; - u32 nr; - u32 seq; - u64 id; - struct rhash_head hash_node; - struct llist_node free_node; - struct callback_head rcu; -}; - -enum { - TASK_COMM_LEN = 16, -}; - -enum uclamp_id { - UCLAMP_MIN = 0, - UCLAMP_MAX = 1, - UCLAMP_CNT = 2, -}; - -struct rq_flags; - -struct affinity_context; - -struct sched_class { - int uclamp_enabled; - void (*enqueue_task)(struct rq *, struct task_struct *, int); - bool (*dequeue_task)(struct rq *, struct task_struct *, int); - void (*yield_task)(struct rq *); - bool (*yield_to_task)(struct rq *, struct task_struct *); - void (*wakeup_preempt)(struct rq *, struct task_struct *, int); - int (*balance)(struct rq *, struct task_struct *, struct rq_flags *); - struct task_struct * (*pick_task)(struct rq *); - struct task_struct * (*pick_next_task)(struct rq *, struct task_struct *); - void (*put_prev_task)(struct rq *, struct task_struct *, struct task_struct *); - void (*set_next_task)(struct rq *, struct task_struct *, bool); - int (*select_task_rq)(struct task_struct *, int, int); - void (*migrate_task_rq)(struct task_struct *, int); - void (*task_woken)(struct rq *, struct task_struct *); - void (*set_cpus_allowed)(struct task_struct *, struct affinity_context *); - void (*rq_online)(struct rq *); - void (*rq_offline)(struct rq *); - struct rq * (*find_lock_rq)(struct task_struct *, struct rq *); - void (*task_tick)(struct rq *, struct task_struct *, int); - void (*task_fork)(struct task_struct *); - void (*task_dead)(struct task_struct *); - void (*switching_to)(struct rq *, struct task_struct *); - void (*switched_from)(struct rq *, struct task_struct *); - void (*switched_to)(struct rq *, struct task_struct *); - void (*reweight_task)(struct rq *, struct task_struct *, const struct load_weight *); - void (*prio_changed)(struct rq *, struct task_struct *, int); - unsigned int (*get_rr_interval)(struct rq *, struct task_struct *); - void (*update_curr)(struct rq *); - void (*task_change_group)(struct task_struct *); - int (*task_is_throttled)(struct task_struct *, int); -}; - -typedef unsigned int __kernel_gid32_t; - -typedef __kernel_gid32_t gid_t; - -typedef struct { - gid_t val; -} kgid_t; - -typedef struct { - u64 val; -} kernel_cap_t; - -struct user_struct; - -struct user_namespace; - -struct ucounts; - -struct group_info; - -struct cred { - atomic_long_t usage; - kuid_t uid; - kgid_t gid; - kuid_t suid; - kgid_t sgid; - kuid_t euid; - kgid_t egid; - kuid_t fsuid; - kgid_t fsgid; - unsigned int securebits; - kernel_cap_t cap_inheritable; - kernel_cap_t cap_permitted; - kernel_cap_t cap_effective; - kernel_cap_t cap_bset; - kernel_cap_t cap_ambient; - unsigned char jit_keyring; - struct key *session_keyring; - struct key *process_keyring; - struct key *thread_keyring; - struct key *request_key_auth; - void *security; - struct user_struct *user; - struct user_namespace *user_ns; - struct ucounts *ucounts; - struct group_info *group_info; - union { - int non_rcu; - struct callback_head rcu; - }; -}; - -struct uts_namespace; - -struct ipc_namespace; - -struct mnt_namespace; - -struct pid_namespace; - -struct net; - -struct time_namespace; - -struct cgroup_namespace; - -struct nsproxy { - refcount_t count; - struct uts_namespace *uts_ns; - struct ipc_namespace *ipc_ns; - struct mnt_namespace *mnt_ns; - struct pid_namespace *pid_ns_for_children; - struct net *net_ns; - struct time_namespace *time_ns; - struct time_namespace *time_ns_for_children; - struct cgroup_namespace *cgroup_ns; -}; - -struct new_utsname { - char sysname[65]; - char nodename[65]; - char release[65]; - char version[65]; - char machine[65]; - char domainname[65]; -}; - -struct dentry; - -struct proc_ns_operations; - -struct ns_common { - struct dentry *stashed; - const struct proc_ns_operations *ops; - unsigned int inum; - refcount_t count; -}; - -struct uts_namespace { - struct new_utsname name; - struct user_namespace *user_ns; - struct ucounts *ucounts; - struct ns_common ns; -}; - -struct nsset { - unsigned int flags; - struct nsproxy *nsproxy; - struct fs_struct *fs; - const struct cred *cred; -}; - -struct proc_ns_operations { - const char *name; - const char *real_ns_name; - int type; - struct ns_common * (*get)(struct task_struct *); - void (*put)(struct ns_common *); - int (*install)(struct nsset *, struct ns_common *); - struct user_namespace * (*owner)(struct ns_common *); - struct ns_common * (*get_parent)(struct ns_common *); -}; - -enum init_ns_ino { - IPC_NS_INIT_INO = 4026531839, - UTS_NS_INIT_INO = 4026531838, - USER_NS_INIT_INO = 4026531837, - PID_NS_INIT_INO = 4026531836, - CGROUP_NS_INIT_INO = 4026531835, - TIME_NS_INIT_INO = 4026531834, - NET_NS_INIT_INO = 4026531833, - MNT_NS_INIT_INO = 4026531832, -}; - -enum { - PROC_IPC_INIT_INO = 4026531839, - PROC_UTS_INIT_INO = 4026531838, - PROC_USER_INIT_INO = 4026531837, - PROC_PID_INIT_INO = 4026531836, - PROC_CGROUP_INIT_INO = 4026531835, - PROC_TIME_INIT_INO = 4026531834, - PROC_NET_INIT_INO = 4026531833, - PROC_MNT_INIT_INO = 4026531832, -}; - -typedef signed char __s8; - -typedef short int __s16; - -typedef __s8 s8; - -typedef __s16 s16; - -typedef long long int __kernel_loff_t; - -typedef unsigned int __poll_t; - -typedef u32 __kernel_dev_t; - -typedef __kernel_dev_t dev_t; - -typedef short unsigned int umode_t; - -typedef __kernel_loff_t loff_t; - -typedef s32 int32_t; - -typedef u32 uint32_t; - -typedef u64 sector_t; - -typedef u64 blkcnt_t; - -typedef unsigned int gfp_t; - -typedef unsigned int fmode_t; - -typedef u64 phys_addr_t; - -typedef phys_addr_t resource_size_t; - -typedef struct { - atomic_t refcnt; -} rcuref_t; - -struct rcuwait { - struct task_struct *task; -}; - -struct lock_class_key {}; - -struct fs_context; - -struct fs_parameter_spec; - -struct super_block; - -struct module; - -struct file_system_type { - const char *name; - int fs_flags; - int (*init_fs_context)(struct fs_context *); - const struct fs_parameter_spec *parameters; - struct dentry * (*mount)(struct file_system_type *, int, const char *, void *); - void (*kill_sb)(struct super_block *); - struct module *owner; - struct file_system_type *next; - struct hlist_head fs_supers; - struct lock_class_key s_lock_key; - struct lock_class_key s_umount_key; - struct lock_class_key s_vfs_rename_key; - struct lock_class_key s_writers_key[3]; - struct lock_class_key i_lock_key; - struct lock_class_key i_mutex_key; - struct lock_class_key invalidate_lock_key; - struct lock_class_key i_mutex_dir_key; -}; - -struct qrwlock { - union { - atomic_t cnts; - struct { - u8 wlocked; - u8 __lstate[3]; - }; - }; - arch_spinlock_t wait_lock; -}; - -typedef struct qrwlock arch_rwlock_t; - -struct lockdep_map {}; - -struct ratelimit_state { - raw_spinlock_t lock; - int interval; - int burst; - atomic_t rs_n_left; - atomic_t missed; - unsigned int flags; - long unsigned int begin; -}; - -struct jump_entry { - s32 code; - s32 target; - long int key; -}; - -struct static_key_mod; - -struct static_key { - atomic_t enabled; - union { - long unsigned int type; - struct jump_entry *entries; - struct static_key_mod *next; - }; -}; - -struct static_key_true { - struct static_key key; -}; - -struct static_key_false { - struct static_key key; -}; - -struct _ddebug { - const char *modname; - const char *function; - const char *filename; - const char *format; - unsigned int lineno: 18; - unsigned int class_id: 6; - unsigned int flags: 8; - union { - struct static_key_true dd_key_true; - struct static_key_false dd_key_false; - } key; -}; - -enum class_map_type { - DD_CLASS_TYPE_DISJOINT_BITS = 0, - DD_CLASS_TYPE_LEVEL_NUM = 1, - DD_CLASS_TYPE_DISJOINT_NAMES = 2, - DD_CLASS_TYPE_LEVEL_NAMES = 3, -}; - -struct ddebug_class_map { - struct list_head link; - struct module *mod; - const char *mod_name; - const char **class_names; - const int length; - const int base; - enum class_map_type map_type; -}; - -enum module_state { - MODULE_STATE_LIVE = 0, - MODULE_STATE_COMING = 1, - MODULE_STATE_GOING = 2, - MODULE_STATE_UNFORMED = 3, -}; - -struct kref { - refcount_t refcount; -}; - -struct kset; - -struct kobj_type; - -struct kernfs_node; - -struct kobject { - const char *name; - struct list_head entry; - struct kobject *parent; - struct kset *kset; - const struct kobj_type *ktype; - struct kernfs_node *sd; - struct kref kref; - unsigned int state_initialized: 1; - unsigned int state_in_sysfs: 1; - unsigned int state_add_uevent_sent: 1; - unsigned int state_remove_uevent_sent: 1; - unsigned int uevent_suppress: 1; -}; - -struct module_param_attrs; - -struct module_kobject { - struct kobject kobj; - struct module *mod; - struct kobject *drivers_dir; - struct module_param_attrs *mp; - struct completion *kobj_completion; -}; - -struct latch_tree_node { - struct rb_node node[2]; -}; - -struct mod_tree_node { - struct module *mod; - struct latch_tree_node node; -}; - -struct module_memory { - void *base; - bool is_rox; - unsigned int size; - struct mod_tree_node mtn; -}; - -struct its_array { - void **pages; - int num; -}; - -struct mod_arch_specific { - struct its_array its_pages; -}; - -struct elf64_sym; - -typedef struct elf64_sym Elf64_Sym; - -struct mod_kallsyms { - Elf64_Sym *symtab; - unsigned int num_symtab; - char *strtab; - char *typetab; -}; - -typedef const int tracepoint_ptr_t; - -struct _ddebug_info { - struct _ddebug *descs; - struct ddebug_class_map *classes; - unsigned int num_descs; - unsigned int num_classes; -}; - -struct module_attribute; - -struct kernel_symbol; - -struct kernel_param; - -struct exception_table_entry; - -struct bug_entry; - -struct module_sect_attrs; - -struct module_notes_attrs; - -struct srcu_struct; - -struct bpf_raw_event_map; - -struct trace_event_call; - -struct trace_eval_map; - -struct static_call_site; - -struct klp_modinfo; - -struct error_injection_entry; - -struct module { - enum module_state state; - struct list_head list; - char name[56]; - struct module_kobject mkobj; - struct module_attribute *modinfo_attrs; - const char *version; - const char *srcversion; - struct kobject *holders_dir; - const struct kernel_symbol *syms; - const u32 *crcs; - unsigned int num_syms; - struct mutex param_lock; - struct kernel_param *kp; - unsigned int num_kp; - unsigned int num_gpl_syms; - const struct kernel_symbol *gpl_syms; - const u32 *gpl_crcs; - bool using_gplonly_symbols; - bool sig_ok; - bool async_probe_requested; - unsigned int num_exentries; - struct exception_table_entry *extable; - int (*init)(void); - struct module_memory mem[7]; - struct mod_arch_specific arch; - long unsigned int taints; - unsigned int num_bugs; - struct list_head bug_list; - struct bug_entry *bug_table; - struct mod_kallsyms *kallsyms; - struct mod_kallsyms core_kallsyms; - struct module_sect_attrs *sect_attrs; - struct module_notes_attrs *notes_attrs; - char *args; - void *percpu; - unsigned int percpu_size; - void *noinstr_text_start; - unsigned int noinstr_text_size; - unsigned int num_tracepoints; - tracepoint_ptr_t *tracepoints_ptrs; - unsigned int num_srcu_structs; - struct srcu_struct **srcu_struct_ptrs; - unsigned int num_bpf_raw_events; - struct bpf_raw_event_map *bpf_raw_events; - unsigned int btf_data_size; - unsigned int btf_base_data_size; - void *btf_data; - void *btf_base_data; - struct jump_entry *jump_entries; - unsigned int num_jump_entries; - unsigned int num_trace_bprintk_fmt; - const char **trace_bprintk_fmt_start; - struct trace_event_call **trace_events; - unsigned int num_trace_events; - struct trace_eval_map **trace_evals; - unsigned int num_trace_evals; - unsigned int num_ftrace_callsites; - long unsigned int *ftrace_callsites; - void *kprobes_text_start; - unsigned int kprobes_text_size; - long unsigned int *kprobe_blacklist; - unsigned int num_kprobe_blacklist; - int num_static_call_sites; - struct static_call_site *static_call_sites; - bool klp; - bool klp_alive; - struct klp_modinfo *klp_info; - struct list_head source_list; - struct list_head target_list; - void (*exit)(void); - atomic_t refcnt; - struct error_injection_entry *ei_funcs; - unsigned int num_ei_funcs; - struct _ddebug_info dyndbg_info; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct kernel_param_ops { - unsigned int flags; - int (*set)(const char *, const struct kernel_param *); - int (*get)(char *, const struct kernel_param *); - void (*free)(void *); -}; - -typedef unsigned int fop_flags_t; - -typedef void *fl_owner_t; - -struct file; - -struct kiocb; - -struct iov_iter; - -struct io_comp_batch; - -struct dir_context; - -struct poll_table_struct; - -struct vm_area_struct; - -struct inode; - -struct file_lock; - -struct file_lease; - -struct seq_file; - -struct io_uring_cmd; - -struct vm_area_desc; - -struct file_operations { - struct module *owner; - fop_flags_t fop_flags; - loff_t (*llseek)(struct file *, loff_t, int); - ssize_t (*read)(struct file *, char *, size_t, loff_t *); - ssize_t (*write)(struct file *, const char *, size_t, loff_t *); - ssize_t (*read_iter)(struct kiocb *, struct iov_iter *); - ssize_t (*write_iter)(struct kiocb *, struct iov_iter *); - int (*iopoll)(struct kiocb *, struct io_comp_batch *, unsigned int); - int (*iterate_shared)(struct file *, struct dir_context *); - __poll_t (*poll)(struct file *, struct poll_table_struct *); - long int (*unlocked_ioctl)(struct file *, unsigned int, long unsigned int); - long int (*compat_ioctl)(struct file *, unsigned int, long unsigned int); - int (*mmap)(struct file *, struct vm_area_struct *); - int (*open)(struct inode *, struct file *); - int (*flush)(struct file *, fl_owner_t); - int (*release)(struct inode *, struct file *); - int (*fsync)(struct file *, loff_t, loff_t, int); - int (*fasync)(int, struct file *, int); - int (*lock)(struct file *, int, struct file_lock *); - long unsigned int (*get_unmapped_area)(struct file *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - int (*check_flags)(int); - int (*flock)(struct file *, int, struct file_lock *); - ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int); - ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); - void (*splice_eof)(struct file *); - int (*setlease)(struct file *, int, struct file_lease **, void **); - long int (*fallocate)(struct file *, int, loff_t, loff_t); - void (*show_fdinfo)(struct seq_file *, struct file *); - ssize_t (*copy_file_range)(struct file *, loff_t, struct file *, loff_t, size_t, unsigned int); - loff_t (*remap_file_range)(struct file *, loff_t, struct file *, loff_t, loff_t, unsigned int); - int (*fadvise)(struct file *, loff_t, loff_t, int); - int (*uring_cmd)(struct io_uring_cmd *, unsigned int); - int (*uring_cmd_iopoll)(struct io_uring_cmd *, struct io_comp_batch *, unsigned int); - int (*mmap_prepare)(struct vm_area_desc *); -}; - -struct bug_entry { - int bug_addr_disp; - int file_disp; - short unsigned int line; - short unsigned int flags; -}; - -struct static_call_site { - s32 addr; - s32 key; -}; - -struct static_call_mod { - struct static_call_mod *next; - struct module *mod; - struct static_call_site *sites; -}; - -struct static_call_key { - void *func; - union { - long unsigned int type; - struct static_call_mod *mods; - struct static_call_site *sites; - }; -}; - -typedef struct { - seqcount_spinlock_t seqcount; - spinlock_t lock; -} seqlock_t; - -struct cacheline_padding { - char x[0]; -}; - -struct free_area { - struct list_head free_list[6]; - long unsigned int nr_free; -}; - -struct work_struct; - -typedef void (*work_func_t)(struct work_struct *); - -struct work_struct { - atomic_long_t data; - struct list_head entry; - work_func_t func; -}; - -struct pglist_data; - -struct per_cpu_pages; - -struct per_cpu_zonestat; - -struct zone { - long unsigned int _watermark[4]; - long unsigned int watermark_boost; - long unsigned int nr_reserved_highatomic; - long unsigned int nr_free_highatomic; - long int lowmem_reserve[5]; - int node; - struct pglist_data *zone_pgdat; - struct per_cpu_pages *per_cpu_pageset; - struct per_cpu_zonestat *per_cpu_zonestats; - int pageset_high_min; - int pageset_high_max; - int pageset_batch; - long unsigned int zone_start_pfn; - atomic_long_t managed_pages; - long unsigned int spanned_pages; - long unsigned int present_pages; - long unsigned int present_early_pages; - long unsigned int cma_pages; - const char *name; - long unsigned int nr_isolate_pageblock; - seqlock_t span_seqlock; - int initialized; - long: 64; - long: 64; - long: 64; - long: 64; - struct cacheline_padding _pad1_; - struct free_area free_area[11]; - struct list_head unaccepted_pages; - struct work_struct unaccepted_cleanup; - long unsigned int flags; - spinlock_t lock; - struct llist_head trylock_free_pages; - struct cacheline_padding _pad2_; - long unsigned int percpu_drift_mark; - long unsigned int compact_cached_free_pfn; - long unsigned int compact_cached_migrate_pfn[2]; - long unsigned int compact_init_migrate_pfn; - long unsigned int compact_init_free_pfn; - unsigned int compact_considered; - unsigned int compact_defer_shift; - int compact_order_failed; - bool compact_blockskip_flush; - bool contiguous; - long: 0; - struct cacheline_padding _pad3_; - atomic_long_t vm_stat[12]; - atomic_long_t vm_numa_event[6]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct zoneref { - struct zone *zone; - int zone_idx; -}; - -struct zonelist { - struct zoneref _zonerefs[5121]; -}; - -struct wait_queue_head { - spinlock_t lock; - struct list_head head; -}; - -typedef struct wait_queue_head wait_queue_head_t; - -enum zone_type { - ZONE_DMA = 0, - ZONE_DMA32 = 1, - ZONE_NORMAL = 2, - ZONE_MOVABLE = 3, - ZONE_DEVICE = 4, - __MAX_NR_ZONES = 5, -}; - -struct deferred_split { - spinlock_t split_queue_lock; - struct list_head split_queue; - long unsigned int split_queue_len; -}; - -struct hlist_nulls_node { - struct hlist_nulls_node *next; - struct hlist_nulls_node **pprev; -}; - -struct lru_gen_folio { - long unsigned int max_seq; - long unsigned int min_seq[2]; - long unsigned int timestamps[4]; - struct list_head folios[40]; - long int nr_pages[40]; - long unsigned int avg_refaulted[8]; - long unsigned int avg_total[8]; - long unsigned int protected[8]; - atomic_long_t evicted[8]; - atomic_long_t refaulted[8]; - bool enabled; - u8 gen; - u8 seg; - struct hlist_nulls_node list; -}; - -struct lru_gen_mm_state { - long unsigned int seq; - struct list_head *head; - struct list_head *tail; - long unsigned int *filters[2]; - long unsigned int stats[4]; -}; - -struct zswap_lruvec_state { - atomic_long_t nr_disk_swapins; -}; - -struct lruvec { - struct list_head lists[5]; - spinlock_t lru_lock; - long unsigned int anon_cost; - long unsigned int file_cost; - atomic_long_t nonresident_age; - long unsigned int refaults[2]; - long unsigned int flags; - struct lru_gen_folio lrugen; - struct lru_gen_mm_state mm_state; - struct pglist_data *pgdat; - struct zswap_lruvec_state zswap_lruvec_state; -}; - -struct lru_gen_mm_walk { - struct lruvec *lruvec; - long unsigned int seq; - long unsigned int next_addr; - int nr_pages[40]; - int mm_stats[4]; - int batched; - int swappiness; - bool force_scan; -}; - -struct hlist_nulls_head { - struct hlist_nulls_node *first; -}; - -struct lru_gen_memcg { - long unsigned int seq; - long unsigned int nr_memcgs[3]; - struct hlist_nulls_head fifo[24]; - spinlock_t lock; -}; - -struct memory_failure_stats { - long unsigned int total; - long unsigned int ignored; - long unsigned int failed; - long unsigned int delayed; - long unsigned int recovered; -}; - -struct per_cpu_nodestat; - -struct memory_tier; - -struct pglist_data { - struct zone node_zones[5]; - struct zonelist node_zonelists[2]; - int nr_zones; - spinlock_t node_size_lock; - long unsigned int node_start_pfn; - long unsigned int node_present_pages; - long unsigned int node_spanned_pages; - int node_id; - wait_queue_head_t kswapd_wait; - wait_queue_head_t pfmemalloc_wait; - wait_queue_head_t reclaim_wait[4]; - atomic_t nr_writeback_throttled; - long unsigned int nr_reclaim_start; - struct mutex kswapd_lock; - struct task_struct *kswapd; - int kswapd_order; - enum zone_type kswapd_highest_zoneidx; - int kswapd_failures; - int kcompactd_max_order; - enum zone_type kcompactd_highest_zoneidx; - wait_queue_head_t kcompactd_wait; - struct task_struct *kcompactd; - bool proactive_compact_trigger; - long unsigned int totalreserve_pages; - long unsigned int min_unmapped_pages; - long unsigned int min_slab_pages; - long: 64; - long: 64; - long: 64; - struct cacheline_padding _pad1_; - struct deferred_split deferred_split_queue; - unsigned int nbp_rl_start; - long unsigned int nbp_rl_nr_cand; - unsigned int nbp_threshold; - unsigned int nbp_th_start; - long unsigned int nbp_th_nr_cand; - struct lruvec __lruvec; - long unsigned int flags; - struct lru_gen_mm_walk mm_walk; - struct lru_gen_memcg memcg_lru; - long: 64; - struct cacheline_padding _pad2_; - struct per_cpu_nodestat *per_cpu_nodestats; - atomic_long_t vm_stat[49]; - struct memory_tier *memtier; - struct memory_failure_stats mf_stats; -}; - -struct attribute; - -struct bin_attribute; - -struct attribute_group { - const char *name; - umode_t (*is_visible)(struct kobject *, struct attribute *, int); - umode_t (*is_bin_visible)(struct kobject *, const struct bin_attribute *, int); - size_t (*bin_size)(struct kobject *, const struct bin_attribute *, int); - struct attribute **attrs; - union { - const struct bin_attribute * const *bin_attrs; - const struct bin_attribute * const *bin_attrs_new; - }; -}; - -struct fred_cs { - u64 cs: 16; - u64 sl: 2; - u64 wfe: 1; -}; - -struct fred_ss { - u64 ss: 16; - u64 sti: 1; - u64 swevent: 1; - u64 nmi: 1; - int: 13; - u64 vector: 8; - short: 8; - u64 type: 4; - char: 4; - u64 enclave: 1; - u64 lm: 1; - u64 nested: 1; - char: 1; - u64 insnlen: 4; -}; - -struct pt_regs { - long unsigned int r15; - long unsigned int r14; - long unsigned int r13; - long unsigned int r12; - long unsigned int bp; - long unsigned int bx; - long unsigned int r11; - long unsigned int r10; - long unsigned int r9; - long unsigned int r8; - long unsigned int ax; - long unsigned int cx; - long unsigned int dx; - long unsigned int si; - long unsigned int di; - long unsigned int orig_ax; - long unsigned int ip; - union { - u16 cs; - u64 csx; - struct fred_cs fred_cs; - }; - long unsigned int flags; - long unsigned int sp; - union { - u16 ss; - u64 ssx; - struct fred_ss fred_ss; - }; -}; - -typedef long unsigned int pteval_t; - -typedef long unsigned int pmdval_t; - -typedef long unsigned int pudval_t; - -typedef long unsigned int pgdval_t; - -typedef long unsigned int pgprotval_t; - -typedef struct { - pteval_t pte; -} pte_t; - -typedef struct { - pmdval_t pmd; -} pmd_t; - -struct pgprot { - pgprotval_t pgprot; -}; - -typedef struct pgprot pgprot_t; - -typedef struct { - pgdval_t pgd; -} pgd_t; - -typedef struct { - pudval_t pud; -} pud_t; - -typedef struct page *pgtable_t; - -struct page_pool; - -struct page { - long unsigned int flags; - union { - struct { - union { - struct list_head lru; - struct { - void *__filler; - unsigned int mlock_count; - }; - struct list_head buddy_list; - struct list_head pcp_list; - struct { - struct llist_node pcp_llist; - unsigned int order; - }; - }; - struct address_space *mapping; - union { - long unsigned int __folio_index; - long unsigned int share; - }; - long unsigned int private; - }; - struct { - long unsigned int pp_magic; - struct page_pool *pp; - long unsigned int _pp_mapping_pad; - long unsigned int dma_addr; - atomic_long_t pp_ref_count; - }; - struct { - long unsigned int compound_head; - }; - struct { - void *_unused_pgmap_compound_head; - void *zone_device_data; - }; - struct callback_head callback_head; - }; - union { - unsigned int page_type; - atomic_t _mapcount; - }; - atomic_t _refcount; - long unsigned int memcg_data; -}; - -typedef struct {} lockdep_map_p; - -struct maple_tree { - union { - spinlock_t ma_lock; - lockdep_map_p ma_external_lock; - }; - unsigned int ma_flags; - void *ma_root; -}; - -struct rw_semaphore { - atomic_long_t count; - atomic_long_t owner; - struct optimistic_spin_queue osq; - raw_spinlock_t wait_lock; - struct list_head wait_list; -}; - -typedef long unsigned int vm_flags_t; - -struct percpu_counter { - raw_spinlock_t lock; - s64 count; - struct list_head list; - s32 *counters; -}; - -struct ldt_struct; - -struct vdso_image; - -typedef struct { - u64 ctx_id; - atomic64_t tlb_gen; - long unsigned int next_trim_cpumask; - struct rw_semaphore ldt_usr_sem; - struct ldt_struct *ldt; - long unsigned int flags; - struct mutex lock; - void *vdso; - const struct vdso_image *vdso_image; - atomic_t perf_rdpmc_allowed; - u16 pkey_allocation_map; - s16 execute_only_pkey; - u16 global_asid; - bool asid_transition; -} mm_context_t; - -struct xol_area; - -struct uprobes_state { - struct xol_area *xol_area; -}; - -typedef unsigned int mm_id_t; - -struct mm_cid; - -struct futex_private_hash; - -struct linux_binfmt; - -struct kioctx_table; - -struct mmu_notifier_subscriptions; - -struct iommu_mm_data; - -struct mm_struct { - struct { - struct { - atomic_t mm_count; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - }; - struct maple_tree mm_mt; - long unsigned int mmap_base; - long unsigned int mmap_legacy_base; - long unsigned int mmap_compat_base; - long unsigned int mmap_compat_legacy_base; - long unsigned int task_size; - pgd_t *pgd; - atomic_t membarrier_state; - atomic_t mm_users; - struct mm_cid *pcpu_cid; - long unsigned int mm_cid_next_scan; - unsigned int nr_cpus_allowed; - atomic_t max_nr_cid; - raw_spinlock_t cpus_allowed_lock; - atomic_long_t pgtables_bytes; - int map_count; - spinlock_t page_table_lock; - struct rw_semaphore mmap_lock; - struct list_head mmlist; - struct rcuwait vma_writer_wait; - seqcount_t mm_lock_seq; - struct mutex futex_hash_lock; - struct futex_private_hash *futex_phash; - struct futex_private_hash *futex_phash_new; - long unsigned int futex_batches; - struct callback_head futex_rcu; - atomic_long_t futex_atomic; - unsigned int *futex_ref; - long unsigned int hiwater_rss; - long unsigned int hiwater_vm; - long unsigned int total_vm; - long unsigned int locked_vm; - atomic64_t pinned_vm; - long unsigned int data_vm; - long unsigned int exec_vm; - long unsigned int stack_vm; - vm_flags_t def_flags; - seqcount_t write_protect_seq; - spinlock_t arg_lock; - long unsigned int start_code; - long unsigned int end_code; - long unsigned int start_data; - long unsigned int end_data; - long unsigned int start_brk; - long unsigned int brk; - long unsigned int start_stack; - long unsigned int arg_start; - long unsigned int arg_end; - long unsigned int env_start; - long unsigned int env_end; - long unsigned int saved_auxv[52]; - struct percpu_counter rss_stat[4]; - struct linux_binfmt *binfmt; - mm_context_t context; - long unsigned int flags; - spinlock_t ioctx_lock; - struct kioctx_table *ioctx_table; - struct task_struct *owner; - struct user_namespace *user_ns; - struct file *exe_file; - struct mmu_notifier_subscriptions *notifier_subscriptions; - long unsigned int numa_next_scan; - long unsigned int numa_scan_offset; - int numa_scan_seq; - atomic_t tlb_flush_pending; - atomic_t tlb_flush_batched; - struct uprobes_state uprobes_state; - atomic_long_t hugetlb_usage; - struct work_struct async_put_work; - struct iommu_mm_data *iommu_mm; - long unsigned int ksm_merging_pages; - long unsigned int ksm_rmap_items; - atomic_long_t ksm_zero_pages; - struct { - struct list_head list; - long unsigned int bitmap; - struct mem_cgroup *memcg; - } lru_gen; - mm_id_t mm_id; - long: 64; - long: 64; - long: 64; - }; - long unsigned int cpu_bitmap[0]; -}; - -struct range { - u64 start; - u64 end; -}; - -struct seq_operations { - void * (*start)(struct seq_file *, loff_t *); - void (*stop)(struct seq_file *, void *); - void * (*next)(struct seq_file *, void *, loff_t *); - int (*show)(struct seq_file *, void *); -}; - -enum perf_event_state { - PERF_EVENT_STATE_DEAD = -5, - PERF_EVENT_STATE_REVOKED = -4, - PERF_EVENT_STATE_EXIT = -3, - PERF_EVENT_STATE_ERROR = -2, - PERF_EVENT_STATE_OFF = -1, - PERF_EVENT_STATE_INACTIVE = 0, - PERF_EVENT_STATE_ACTIVE = 1, -}; - -typedef struct { - atomic_long_t a; -} local_t; - -typedef struct { - local_t a; -} local64_t; - -struct perf_event_attr { - __u32 type; - __u32 size; - __u64 config; - union { - __u64 sample_period; - __u64 sample_freq; - }; - __u64 sample_type; - __u64 read_format; - __u64 disabled: 1; - __u64 inherit: 1; - __u64 pinned: 1; - __u64 exclusive: 1; - __u64 exclude_user: 1; - __u64 exclude_kernel: 1; - __u64 exclude_hv: 1; - __u64 exclude_idle: 1; - __u64 mmap: 1; - __u64 comm: 1; - __u64 freq: 1; - __u64 inherit_stat: 1; - __u64 enable_on_exec: 1; - __u64 task: 1; - __u64 watermark: 1; - __u64 precise_ip: 2; - __u64 mmap_data: 1; - __u64 sample_id_all: 1; - __u64 exclude_host: 1; - __u64 exclude_guest: 1; - __u64 exclude_callchain_kernel: 1; - __u64 exclude_callchain_user: 1; - __u64 mmap2: 1; - __u64 comm_exec: 1; - __u64 use_clockid: 1; - __u64 context_switch: 1; - __u64 write_backward: 1; - __u64 namespaces: 1; - __u64 ksymbol: 1; - __u64 bpf_event: 1; - __u64 aux_output: 1; - __u64 cgroup: 1; - __u64 text_poke: 1; - __u64 build_id: 1; - __u64 inherit_thread: 1; - __u64 remove_on_exec: 1; - __u64 sigtrap: 1; - __u64 __reserved_1: 26; - union { - __u32 wakeup_events; - __u32 wakeup_watermark; - }; - __u32 bp_type; - union { - __u64 bp_addr; - __u64 kprobe_func; - __u64 uprobe_path; - __u64 config1; - }; - union { - __u64 bp_len; - __u64 kprobe_addr; - __u64 probe_offset; - __u64 config2; - }; - __u64 branch_sample_type; - __u64 sample_regs_user; - __u32 sample_stack_user; - __s32 clockid; - __u64 sample_regs_intr; - __u32 aux_watermark; - __u16 sample_max_stack; - __u16 __reserved_2; - __u32 aux_sample_size; - union { - __u32 aux_action; - struct { - __u32 aux_start_paused: 1; - __u32 aux_pause: 1; - __u32 aux_resume: 1; - __u32 __reserved_3: 29; - }; - }; - __u64 sig_data; - __u64 config3; -}; - -struct hw_perf_event_extra { - u64 config; - unsigned int reg; - int alloc; - int idx; -}; - -struct arch_hw_breakpoint { - long unsigned int address; - long unsigned int mask; - u8 len; - u8 type; -}; - -struct rhlist_head { - struct rhash_head rhead; - struct rhlist_head *next; -}; - -struct hw_perf_event { - union { - struct { - u64 config; - u64 config1; - u64 last_tag; - u64 dyn_constraint; - long unsigned int config_base; - long unsigned int event_base; - int event_base_rdpmc; - int idx; - int last_cpu; - int flags; - struct hw_perf_event_extra extra_reg; - struct hw_perf_event_extra branch_reg; - }; - struct { - u64 aux_config; - unsigned int aux_paused; - }; - struct { - struct hrtimer hrtimer; - }; - struct { - struct list_head tp_list; - }; - struct { - u64 pwr_acc; - u64 ptsc; - }; - struct { - struct arch_hw_breakpoint info; - struct rhlist_head bp_list; - }; - struct { - u8 iommu_bank; - u8 iommu_cntr; - u16 padding; - u64 conf; - u64 conf1; - }; - }; - struct task_struct *target; - void *addr_filters; - long unsigned int addr_filters_gen; - int state; - local64_t prev_count; - u64 sample_period; - union { - struct { - u64 last_period; - local64_t period_left; - }; - struct { - u64 saved_metric; - u64 saved_slots; - }; - }; - u64 interrupts_seq; - u64 interrupts; - u64 freq_time_stamp; - u64 freq_count_stamp; -}; - -struct irq_work { - struct __call_single_node node; - void (*func)(struct irq_work *); - struct rcuwait irqwait; -}; - -struct perf_addr_filters_head { - struct list_head list; - raw_spinlock_t lock; - unsigned int nr_file_filters; -}; - -struct perf_sample_data; - -typedef void (*perf_overflow_handler_t)(struct perf_event *, struct perf_sample_data *, struct pt_regs *); - -struct ftrace_ops; - -struct ftrace_regs; - -typedef void (*ftrace_func_t)(long unsigned int, long unsigned int, struct ftrace_ops *, struct ftrace_regs *); - -struct ftrace_hash; - -struct ftrace_ops_hash { - struct ftrace_hash *notrace_hash; - struct ftrace_hash *filter_hash; - struct mutex regex_lock; -}; - -enum ftrace_ops_cmd { - FTRACE_OPS_CMD_ENABLE_SHARE_IPMODIFY_SELF = 0, - FTRACE_OPS_CMD_ENABLE_SHARE_IPMODIFY_PEER = 1, - FTRACE_OPS_CMD_DISABLE_SHARE_IPMODIFY_PEER = 2, -}; - -typedef int (*ftrace_ops_func_t)(struct ftrace_ops *, enum ftrace_ops_cmd); - -struct ftrace_ops { - ftrace_func_t func; - struct ftrace_ops *next; - long unsigned int flags; - void *private; - ftrace_func_t saved_func; - struct ftrace_ops_hash local_hash; - struct ftrace_ops_hash *func_hash; - struct ftrace_ops_hash old_hash; - long unsigned int trampoline; - long unsigned int trampoline_size; - struct list_head list; - struct list_head subop_list; - ftrace_ops_func_t ops_func; - struct ftrace_ops *managed; - long unsigned int direct_call; -}; - -struct pmu; - -struct perf_event_pmu_context; - -struct perf_buffer; - -struct fasync_struct; - -struct perf_addr_filter_range; - -struct bpf_prog; - -struct event_filter; - -struct perf_cgroup; - -struct perf_event { - struct list_head event_entry; - struct list_head sibling_list; - struct list_head active_list; - struct rb_node group_node; - u64 group_index; - struct list_head migrate_entry; - struct hlist_node hlist_entry; - struct list_head active_entry; - int nr_siblings; - int event_caps; - int group_caps; - unsigned int group_generation; - struct perf_event *group_leader; - struct pmu *pmu; - void *pmu_private; - enum perf_event_state state; - unsigned int attach_state; - local64_t count; - atomic64_t child_count; - u64 total_time_enabled; - u64 total_time_running; - u64 tstamp; - struct perf_event_attr attr; - u16 header_size; - u16 id_header_size; - u16 read_size; - struct hw_perf_event hw; - struct perf_event_context *ctx; - struct perf_event_pmu_context *pmu_ctx; - atomic_long_t refcount; - atomic64_t child_total_time_enabled; - atomic64_t child_total_time_running; - struct mutex child_mutex; - struct list_head child_list; - struct perf_event *parent; - int oncpu; - int cpu; - struct list_head owner_entry; - struct task_struct *owner; - struct mutex mmap_mutex; - atomic_t mmap_count; - struct perf_buffer *rb; - struct list_head rb_entry; - long unsigned int rcu_batches; - int rcu_pending; - wait_queue_head_t waitq; - struct fasync_struct *fasync; - unsigned int pending_wakeup; - unsigned int pending_kill; - unsigned int pending_disable; - long unsigned int pending_addr; - struct irq_work pending_irq; - struct irq_work pending_disable_irq; - struct callback_head pending_task; - unsigned int pending_work; - atomic_t event_limit; - struct perf_addr_filters_head addr_filters; - struct perf_addr_filter_range *addr_filter_ranges; - long unsigned int addr_filters_gen; - struct perf_event *aux_event; - void (*destroy)(struct perf_event *); - struct callback_head callback_head; - struct pid_namespace *ns; - u64 id; - atomic64_t lost_samples; - u64 (*clock)(void); - perf_overflow_handler_t overflow_handler; - void *overflow_handler_context; - struct bpf_prog *prog; - u64 bpf_cookie; - struct trace_event_call *tp_event; - struct event_filter *filter; - struct ftrace_ops ftrace_ops; - struct perf_cgroup *cgrp; - void *security; - struct list_head sb_list; - struct list_head pmu_list; - u32 orig_type; -}; - -typedef s32 old_time32_t; - -struct old_timespec32 { - old_time32_t tv_sec; - s32 tv_nsec; -}; - -struct pollfd { - int fd; - short int events; - short int revents; -}; - -typedef struct cpumask *cpumask_var_t; - -struct xarray { - spinlock_t xa_lock; - gfp_t xa_flags; - void *xa_head; -}; - -struct idr { - struct xarray idr_rt; - unsigned int idr_base; - unsigned int idr_next; -}; - -struct ctl_table; - -struct ctl_table_root; - -struct ctl_table_set; - -struct ctl_dir; - -struct ctl_node; - -struct ctl_table_header { - union { - struct { - const struct ctl_table *ctl_table; - int ctl_table_size; - int used; - int count; - int nreg; - }; - struct callback_head rcu; - }; - struct completion *unregistering; - const struct ctl_table *ctl_table_arg; - struct ctl_table_root *root; - struct ctl_table_set *set; - struct ctl_dir *parent; - struct ctl_node *node; - struct hlist_head inodes; - enum { - SYSCTL_TABLE_TYPE_DEFAULT = 0, - SYSCTL_TABLE_TYPE_PERMANENTLY_EMPTY = 1, - } type; -}; - -struct ctl_dir { - struct ctl_table_header header; - struct rb_root root; -}; - -struct ctl_table_set { - int (*is_seen)(struct ctl_table_set *); - struct ctl_dir dir; -}; - -struct kmem_cache; - -struct fs_pin; - -struct pid_namespace { - struct idr idr; - struct callback_head rcu; - unsigned int pid_allocated; - struct task_struct *child_reaper; - struct kmem_cache *pid_cachep; - unsigned int level; - int pid_max; - struct pid_namespace *parent; - struct fs_pin *bacct; - struct user_namespace *user_ns; - struct ucounts *ucounts; - int reboot; - struct ns_common ns; - struct work_struct work; - struct ctl_table_set set; - struct ctl_table_header *sysctls; - int memfd_noexec_scope; -}; - -typedef struct { - arch_rwlock_t raw_lock; -} rwlock_t; - -struct seqcount_raw_spinlock { - seqcount_t seqcount; -}; - -typedef struct seqcount_raw_spinlock seqcount_raw_spinlock_t; - -struct hrtimer_cpu_base; - -struct hrtimer_clock_base { - struct hrtimer_cpu_base *cpu_base; - unsigned int index; - clockid_t clockid; - seqcount_raw_spinlock_t seq; - struct hrtimer *running; - struct timerqueue_head active; - ktime_t (*get_time)(void); - ktime_t offset; -}; - -struct rlimit { - __kernel_ulong_t rlim_cur; - __kernel_ulong_t rlim_max; -}; - -struct task_cputime { - u64 stime; - u64 utime; - long long unsigned int sum_exec_runtime; -}; - -typedef void __signalfn_t(int); - -typedef __signalfn_t *__sighandler_t; - -typedef void __restorefn_t(void); - -typedef __restorefn_t *__sigrestore_t; - -struct ucounts { - struct hlist_nulls_node node; - struct user_namespace *ns; - kuid_t uid; - struct callback_head rcu; - rcuref_t count; - atomic_long_t ucount[12]; - atomic_long_t rlimit[4]; -}; - -struct sigaction { - __sighandler_t sa_handler; - long unsigned int sa_flags; - __sigrestore_t sa_restorer; - sigset_t sa_mask; -}; - -struct k_sigaction { - struct sigaction sa; -}; - -enum { - ___GFP_DMA_BIT = 0, - ___GFP_HIGHMEM_BIT = 1, - ___GFP_DMA32_BIT = 2, - ___GFP_MOVABLE_BIT = 3, - ___GFP_RECLAIMABLE_BIT = 4, - ___GFP_HIGH_BIT = 5, - ___GFP_IO_BIT = 6, - ___GFP_FS_BIT = 7, - ___GFP_ZERO_BIT = 8, - ___GFP_UNUSED_BIT = 9, - ___GFP_DIRECT_RECLAIM_BIT = 10, - ___GFP_KSWAPD_RECLAIM_BIT = 11, - ___GFP_WRITE_BIT = 12, - ___GFP_NOWARN_BIT = 13, - ___GFP_RETRY_MAYFAIL_BIT = 14, - ___GFP_NOFAIL_BIT = 15, - ___GFP_NORETRY_BIT = 16, - ___GFP_MEMALLOC_BIT = 17, - ___GFP_COMP_BIT = 18, - ___GFP_NOMEMALLOC_BIT = 19, - ___GFP_HARDWALL_BIT = 20, - ___GFP_THISNODE_BIT = 21, - ___GFP_ACCOUNT_BIT = 22, - ___GFP_ZEROTAGS_BIT = 23, - ___GFP_NO_OBJ_EXT_BIT = 24, - ___GFP_LAST_BIT = 25, -}; - -typedef void (*smp_call_func_t)(void *); - -struct __call_single_data { - struct __call_single_node node; - smp_call_func_t func; - void *info; -}; - -typedef struct __call_single_data call_single_data_t; - -struct hlist_bl_node { - struct hlist_bl_node *next; - struct hlist_bl_node **pprev; -}; - -struct qstr { - union { - struct { - u32 hash; - u32 len; - }; - u64 hash_len; - }; - const unsigned char *name; -}; - -union shortname_store { - unsigned char string[40]; - long unsigned int words[5]; -}; - -struct lockref { - union { - __u64 lock_count; - struct { - spinlock_t lock; - int count; - }; - }; -}; - -struct dentry_operations; - -struct dentry { - unsigned int d_flags; - seqcount_spinlock_t d_seq; - struct hlist_bl_node d_hash; - struct dentry *d_parent; - struct qstr d_name; - struct inode *d_inode; - union shortname_store d_shortname; - const struct dentry_operations *d_op; - struct super_block *d_sb; - long unsigned int d_time; - void *d_fsdata; - struct lockref d_lockref; - union { - struct list_head d_lru; - wait_queue_head_t *d_wait; - }; - struct hlist_node d_sib; - struct hlist_head d_children; - union { - struct hlist_node d_alias; - struct hlist_bl_node d_in_lookup_hash; - struct callback_head d_rcu; - } d_u; -}; - -struct tracepoint_func { - void *func; - void *data; - int prio; -}; - -struct tracepoint_ext { - int (*regfunc)(void); - void (*unregfunc)(void); - unsigned int faultable: 1; -}; - -struct tracepoint { - const char *name; - struct static_key_false key; - struct static_call_key *static_call_key; - void *static_call_tramp; - void *iterator; - void *probestub; - struct tracepoint_func *funcs; - struct tracepoint_ext *ext; -}; - -struct bpf_raw_event_map { - struct tracepoint *tp; - void *bpf_func; - u32 num_args; - u32 writable_size; - long: 64; -}; - -struct codetag { - unsigned int flags; - unsigned int lineno; - const char *modname; - const char *function; - const char *filename; -}; - -struct alloc_tag_counters { - u64 bytes; - u64 calls; -}; - -struct alloc_tag { - struct codetag ct; - struct alloc_tag_counters *counters; -}; - -struct percpu_ref_data; - -struct percpu_ref { - long unsigned int percpu_count_ptr; - struct percpu_ref_data *data; -}; - -struct workqueue_struct; - -struct rcu_work { - struct work_struct work; - struct callback_head rcu; - struct workqueue_struct *wq; -}; - -struct cgroup_subsys; - -struct css_rstat_cpu; - -struct cgroup_subsys_state { - struct cgroup *cgroup; - struct cgroup_subsys *ss; - struct percpu_ref refcnt; - struct css_rstat_cpu *rstat_cpu; - struct list_head sibling; - struct list_head children; - int id; - unsigned int flags; - u64 serial_nr; - atomic_t online_cnt; - struct work_struct destroy_work; - struct rcu_work destroy_rwork; - struct cgroup_subsys_state *parent; - int nr_descendants; - struct cgroup_subsys_state *rstat_flush_next; -}; - -struct cgroup_file { - struct kernfs_node *kn; - long unsigned int notified_at; - struct timer_list notify_timer; -}; - -struct cgroup_base_stat { - struct task_cputime cputime; - u64 forceidle_sum; - u64 ntime; -}; - -struct bpf_prog_array; - -struct cgroup_bpf { - struct bpf_prog_array *effective[38]; - struct hlist_head progs[38]; - u8 flags[38]; - u64 revisions[38]; - struct list_head storages; - struct bpf_prog_array *inactive; - struct percpu_ref refcnt; - struct work_struct release_work; -}; - -struct cgroup_freezer_state { - bool freeze; - bool e_freeze; - int nr_frozen_descendants; - int nr_frozen_tasks; -}; - -struct cgroup_root; - -struct cgroup_rstat_base_cpu; - -struct psi_group; - -struct cgroup { - struct cgroup_subsys_state self; - long unsigned int flags; - int level; - int max_depth; - int nr_descendants; - int nr_dying_descendants; - int max_descendants; - int nr_populated_csets; - int nr_populated_domain_children; - int nr_populated_threaded_children; - int nr_threaded_children; - unsigned int kill_seq; - struct kernfs_node *kn; - struct cgroup_file procs_file; - struct cgroup_file events_file; - struct cgroup_file psi_files[3]; - u16 subtree_control; - u16 subtree_ss_mask; - u16 old_subtree_control; - u16 old_subtree_ss_mask; - struct cgroup_subsys_state *subsys[15]; - int nr_dying_subsys[15]; - struct cgroup_root *root; - struct list_head cset_links; - struct list_head e_csets[15]; - struct cgroup *dom_cgrp; - struct cgroup *old_dom_cgrp; - struct cgroup_rstat_base_cpu *rstat_base_cpu; - struct cacheline_padding _pad_; - struct cgroup_base_stat last_bstat; - struct cgroup_base_stat bstat; - struct prev_cputime prev_cputime; - struct list_head pidlists; - struct mutex pidlist_mutex; - wait_queue_head_t offline_waitq; - struct work_struct release_agent_work; - struct psi_group *psi; - struct cgroup_bpf bpf; - struct cgroup_freezer_state freezer; - struct bpf_local_storage *bpf_cgrp_storage; - struct cgroup *ancestors[0]; - long: 64; - long: 64; -}; - -typedef u32 errseq_t; - -struct address_space_operations; - -struct address_space { - struct inode *host; - struct xarray i_pages; - struct rw_semaphore invalidate_lock; - gfp_t gfp_mask; - atomic_t i_mmap_writable; - struct rb_root_cached i_mmap; - long unsigned int nrpages; - long unsigned int writeback_index; - const struct address_space_operations *a_ops; - long unsigned int flags; - errseq_t wb_err; - spinlock_t i_private_lock; - struct list_head i_private_list; - struct rw_semaphore i_mmap_rwsem; - void *i_private_data; -}; - -struct upid { - int nr; - struct pid_namespace *ns; -}; - -struct pidfs_attr; - -struct pid { - refcount_t count; - unsigned int level; - spinlock_t lock; - struct { - u64 ino; - struct rb_node pidfs_node; - struct dentry *stashed; - struct pidfs_attr *attr; - }; - struct hlist_head tasks[4]; - struct hlist_head inodes; - wait_queue_head_t wait_pidfd; - struct callback_head rcu; - struct upid numbers[0]; -}; - -struct swait_queue_head { - raw_spinlock_t lock; - struct list_head task_list; -}; - -struct completion { - unsigned int done; - struct swait_queue_head wait; -}; - -typedef int32_t key_serial_t; - -typedef __s64 time64_t; - -typedef uint32_t key_perm_t; - -struct key_type; - -struct key_tag; - -struct keyring_index_key { - long unsigned int hash; - union { - struct { - u16 desc_len; - char desc[6]; - }; - long unsigned int x; - }; - struct key_type *type; - struct key_tag *domain_tag; - const char *description; -}; - -union key_payload { - void *rcu_data0; - void *data[4]; -}; - -struct assoc_array_ptr; - -struct assoc_array { - struct assoc_array_ptr *root; - long unsigned int nr_leaves_on_tree; -}; - -struct watch_list; - -struct key_user; - -struct key_restriction; - -struct key { - refcount_t usage; - key_serial_t serial; - union { - struct list_head graveyard_link; - struct rb_node serial_node; - }; - struct watch_list *watchers; - struct rw_semaphore sem; - struct key_user *user; - void *security; - union { - time64_t expiry; - time64_t revoked_at; - }; - time64_t last_used_at; - kuid_t uid; - kgid_t gid; - key_perm_t perm; - short unsigned int quotalen; - short unsigned int datalen; - short int state; - long unsigned int flags; - union { - struct keyring_index_key index_key; - struct { - long unsigned int hash; - long unsigned int len_desc; - struct key_type *type; - struct key_tag *domain_tag; - char *description; - }; - }; - union { - union key_payload payload; - struct { - struct list_head name_link; - struct assoc_array keys; - }; - }; - struct key_restriction *restrict_link; -}; - -struct cpu_itimer { - u64 expires; - u64 incr; -}; - -struct task_cputime_atomic { - atomic64_t utime; - atomic64_t stime; - atomic64_t sum_exec_runtime; -}; - -struct thread_group_cputimer { - struct task_cputime_atomic cputime_atomic; -}; - -struct pacct_struct { - int ac_flag; - long int ac_exitcode; - long unsigned int ac_mem; - u64 ac_utime; - u64 ac_stime; - long unsigned int ac_minflt; - long unsigned int ac_majflt; -}; - -struct core_state; - -struct tty_struct; - -struct autogroup; - -struct taskstats; - -struct tty_audit_buf; - -struct signal_struct { - refcount_t sigcnt; - atomic_t live; - int nr_threads; - int quick_threads; - struct list_head thread_head; - wait_queue_head_t wait_chldexit; - struct task_struct *curr_target; - struct sigpending shared_pending; - struct hlist_head multiprocess; - int group_exit_code; - int notify_count; - struct task_struct *group_exec_task; - int group_stop_count; - unsigned int flags; - struct core_state *core_state; - unsigned int is_child_subreaper: 1; - unsigned int has_child_subreaper: 1; - unsigned int timer_create_restore_ids: 1; - atomic_t next_posix_timer_id; - struct hlist_head posix_timers; - struct hlist_head ignored_posix_timers; - struct hrtimer real_timer; - ktime_t it_real_incr; - struct cpu_itimer it[2]; - struct thread_group_cputimer cputimer; - struct posix_cputimers posix_cputimers; - struct pid *pids[4]; - atomic_t tick_dep_mask; - struct pid *tty_old_pgrp; - int leader; - struct tty_struct *tty; - struct autogroup *autogroup; - seqlock_t stats_lock; - u64 utime; - u64 stime; - u64 cutime; - u64 cstime; - u64 gtime; - u64 cgtime; - struct prev_cputime prev_cputime; - long unsigned int nvcsw; - long unsigned int nivcsw; - long unsigned int cnvcsw; - long unsigned int cnivcsw; - long unsigned int min_flt; - long unsigned int maj_flt; - long unsigned int cmin_flt; - long unsigned int cmaj_flt; - long unsigned int inblock; - long unsigned int oublock; - long unsigned int cinblock; - long unsigned int coublock; - long unsigned int maxrss; - long unsigned int cmaxrss; - struct task_io_accounting ioac; - long long unsigned int sum_sched_runtime; - struct rlimit rlim[16]; - struct pacct_struct pacct; - struct taskstats *stats; - unsigned int audit_tty; - struct tty_audit_buf *tty_audit_buf; - bool oom_flag_origin; - short int oom_score_adj; - short int oom_score_adj_min; - struct mm_struct *oom_mm; - struct mutex cred_guard_mutex; - struct rw_semaphore exec_update_lock; -}; - -struct sighand_struct { - spinlock_t siglock; - refcount_t count; - wait_queue_head_t signalfd_wqh; - struct k_sigaction action[64]; -}; - -struct bio; - -struct bio_list { - struct bio *head; - struct bio *tail; -}; - -struct request; - -struct rq_list { - struct request *head; - struct request *tail; -}; - -struct blk_plug { - struct rq_list mq_list; - struct rq_list cached_rqs; - u64 cur_ktime; - short unsigned int nr_ios; - short unsigned int rq_count; - bool multiple_queues; - bool has_elevator; - struct list_head cb_list; -}; - -struct io_cq; - -struct io_context { - atomic_long_t refcount; - atomic_t active_ref; - short unsigned int ioprio; - spinlock_t lock; - struct xarray icq_tree; - struct io_cq *icq_hint; - struct hlist_head icq_list; - struct work_struct release_work; -}; - -struct css_set { - struct cgroup_subsys_state *subsys[15]; - refcount_t refcount; - struct css_set *dom_cset; - struct cgroup *dfl_cgrp; - int nr_tasks; - struct list_head tasks; - struct list_head mg_tasks; - struct list_head dying_tasks; - struct list_head task_iters; - struct list_head e_cset_node[15]; - struct list_head threaded_csets; - struct list_head threaded_csets_node; - struct hlist_node hlist; - struct list_head cgrp_links; - struct list_head mg_src_preload_node; - struct list_head mg_dst_preload_node; - struct list_head mg_node; - struct cgroup *mg_src_cgrp; - struct cgroup *mg_dst_cgrp; - struct css_set *mg_dst_cset; - bool dead; - struct callback_head callback_head; -}; - -typedef u32 compat_uptr_t; - -struct compat_robust_list { - compat_uptr_t next; -}; - -typedef s32 compat_long_t; - -struct compat_robust_list_head { - struct compat_robust_list list; - compat_long_t futex_offset; - compat_uptr_t list_op_pending; -}; - -struct perf_event_groups { - struct rb_root tree; - u64 index; -}; - -struct perf_event_context { - raw_spinlock_t lock; - struct mutex mutex; - struct list_head pmu_ctx_list; - struct perf_event_groups pinned_groups; - struct perf_event_groups flexible_groups; - struct list_head event_list; - int nr_events; - int nr_user; - int is_active; - int nr_stat; - int nr_freq; - int rotate_disable; - refcount_t refcount; - struct task_struct *task; - u64 time; - u64 timestamp; - u64 timeoffset; - struct perf_event_context *parent_ctx; - u64 parent_gen; - u64 generation; - int pin_count; - int nr_cgroups; - struct callback_head callback_head; - local_t nr_no_switch_fast; -}; - -struct perf_ctx_data { - struct callback_head callback_head; - refcount_t refcount; - int global; - struct kmem_cache *ctx_cache; - void *data; -}; - -struct mem_cgroup_id { - int id; - refcount_t ref; -}; - -struct page_counter { - atomic_long_t usage; - long unsigned int failcnt; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct cacheline_padding _pad1_; - long unsigned int emin; - atomic_long_t min_usage; - atomic_long_t children_min_usage; - long unsigned int elow; - atomic_long_t low_usage; - atomic_long_t children_low_usage; - long unsigned int watermark; - long unsigned int local_watermark; - struct cacheline_padding _pad2_; - bool protection_support; - bool track_failcnt; - long unsigned int min; - long unsigned int low; - long unsigned int high; - long unsigned int max; - struct page_counter *parent; - long: 64; - long: 64; -}; - -struct vmpressure { - long unsigned int scanned; - long unsigned int reclaimed; - long unsigned int tree_scanned; - long unsigned int tree_reclaimed; - spinlock_t sr_lock; - struct list_head events; - struct mutex events_lock; - struct work_struct work; -}; - -struct fprop_global { - struct percpu_counter events; - unsigned int period; - seqcount_t sequence; -}; - -struct wb_domain { - spinlock_t lock; - struct fprop_global completions; - struct timer_list period_timer; - long unsigned int period_time; - long unsigned int dirty_limit_tstamp; - long unsigned int dirty_limit; -}; - -struct wb_completion { - atomic_t cnt; - wait_queue_head_t *waitq; -}; - -struct memcg_cgwb_frn { - u64 bdi_id; - int memcg_id; - u64 at; - struct wb_completion done; -}; - -struct lru_gen_mm_list { - struct list_head fifo; - spinlock_t lock; -}; - -struct memcg_vmstats; - -struct memcg_vmstats_percpu; - -struct mem_cgroup_per_node; - -struct mem_cgroup { - struct cgroup_subsys_state css; - struct mem_cgroup_id id; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct page_counter memory; - union { - struct page_counter swap; - struct page_counter memsw; - }; - struct list_head memory_peaks; - struct list_head swap_peaks; - spinlock_t peaks_lock; - struct work_struct high_work; - long unsigned int zswap_max; - bool zswap_writeback; - struct vmpressure vmpressure; - bool oom_group; - int swappiness; - struct cgroup_file events_file; - struct cgroup_file events_local_file; - struct cgroup_file swap_events_file; - struct memcg_vmstats *vmstats; - atomic_long_t memory_events[9]; - atomic_long_t memory_events_local[9]; - u64 socket_pressure; - int kmemcg_id; - struct obj_cgroup *objcg; - struct obj_cgroup *orig_objcg; - struct list_head objcg_list; - struct memcg_vmstats_percpu *vmstats_percpu; - struct list_head cgwb_list; - struct wb_domain cgwb_domain; - struct memcg_cgwb_frn cgwb_frn[4]; - struct deferred_split deferred_split_queue; - struct lru_gen_mm_list mm_list; - struct mem_cgroup_per_node *nodeinfo[0]; - long: 64; - long: 64; -}; - -struct obj_cgroup { - struct percpu_ref refcnt; - struct mem_cgroup *memcg; - atomic_t nr_charged_bytes; - union { - struct list_head list; - struct callback_head rcu; - }; -}; - -typedef void *mempool_alloc_t(gfp_t, void *); - -typedef void mempool_free_t(void *, void *); - -struct mempool_s { - spinlock_t lock; - int min_nr; - int curr_nr; - void **elements; - void *pool_data; - mempool_alloc_t *alloc; - mempool_free_t *free; - wait_queue_head_t wait; -}; - -typedef struct mempool_s mempool_t; - -struct bio_alloc_cache; - -struct bio_set { - struct kmem_cache *bio_slab; - unsigned int front_pad; - struct bio_alloc_cache *cache; - mempool_t bio_pool; - mempool_t bvec_pool; - unsigned int back_pad; - spinlock_t rescue_lock; - struct bio_list rescue_list; - struct work_struct rescue_work; - struct workqueue_struct *rescue_workqueue; - struct hlist_node cpuhp_dead; -}; - -typedef unsigned int blk_mode_t; - -struct block_device; - -struct block_device_operations; - -struct request_queue; - -struct backing_dev_info; - -struct timer_rand_state; - -struct disk_events; - -struct cdrom_device_info; - -struct badblocks; - -struct blk_independent_access_ranges; - -struct gendisk { - int major; - int first_minor; - int minors; - char disk_name[32]; - short unsigned int events; - short unsigned int event_flags; - struct xarray part_tbl; - struct block_device *part0; - const struct block_device_operations *fops; - struct request_queue *queue; - void *private_data; - struct bio_set bio_split; - int flags; - long unsigned int state; - struct mutex open_mutex; - unsigned int open_partitions; - struct backing_dev_info *bdi; - struct kobject queue_kobj; - struct kobject *slave_dir; - struct list_head slave_bdevs; - struct timer_rand_state *random; - struct disk_events *ev; - unsigned int nr_zones; - unsigned int zone_capacity; - unsigned int last_zone_capacity; - long unsigned int *conv_zones_bitmap; - unsigned int zone_wplugs_hash_bits; - atomic_t nr_zone_wplugs; - spinlock_t zone_wplugs_lock; - struct mempool_s *zone_wplugs_pool; - struct hlist_head *zone_wplugs_hash; - struct workqueue_struct *zone_wplugs_wq; - struct cdrom_device_info *cdi; - int node_id; - struct badblocks *bb; - struct lockdep_map lockdep_map; - u64 diskseq; - blk_mode_t open_mode; - struct blk_independent_access_ranges *ia_ranges; - struct mutex rqos_state_mutex; -}; - -enum uprobe_task_state { - UTASK_RUNNING = 0, - UTASK_SSTEP = 1, - UTASK_SSTEP_ACK = 2, - UTASK_SSTEP_TRAPPED = 3, -}; - -struct arch_uprobe_task { - long unsigned int saved_scratch_register; - unsigned int saved_trap_nr; - unsigned int saved_tf; -}; - -struct return_instance; - -struct uprobe; - -struct arch_uprobe; - -struct uprobe_task { - enum uprobe_task_state state; - unsigned int depth; - struct return_instance *return_instances; - struct return_instance *ri_pool; - struct timer_list ri_timer; - seqcount_t ri_seqcount; - union { - struct { - struct arch_uprobe_task autask; - long unsigned int vaddr; - }; - struct { - struct callback_head dup_xol_work; - long unsigned int dup_xol_addr; - }; - }; - struct uprobe *active_uprobe; - long unsigned int xol_vaddr; - bool signal_denied; - struct arch_uprobe *auprobe; -}; - -struct bpf_run_ctx {}; - -struct timespec64 { - time64_t tv_sec; - long int tv_nsec; -}; - -struct delayed_work { - struct work_struct work; - struct timer_list timer; - struct workqueue_struct *wq; - int cpu; -}; - -struct rcu_segcblist { - struct callback_head *head; - struct callback_head **tails[4]; - long unsigned int gp_seq[4]; - atomic_long_t len; - long int seglen[4]; - u8 flags; -}; - -struct srcu_ctr { - atomic_long_t srcu_locks; - atomic_long_t srcu_unlocks; -}; - -struct srcu_node; - -struct srcu_data { - struct srcu_ctr srcu_ctrs[2]; - int srcu_reader_flavor; - long: 64; - long: 64; - long: 64; - spinlock_t lock; - struct rcu_segcblist srcu_cblist; - long unsigned int srcu_gp_seq_needed; - long unsigned int srcu_gp_seq_needed_exp; - bool srcu_cblist_invoking; - struct timer_list delay_work; - struct work_struct work; - struct callback_head srcu_barrier_head; - struct srcu_node *mynode; - long unsigned int grpmask; - int cpu; - struct srcu_struct *ssp; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct srcu_node { - spinlock_t lock; - long unsigned int srcu_have_cbs[4]; - long unsigned int srcu_data_have_cbs[4]; - long unsigned int srcu_gp_seq_needed_exp; - struct srcu_node *srcu_parent; - int grplo; - int grphi; -}; - -struct srcu_usage; - -struct srcu_struct { - struct srcu_ctr *srcu_ctrp; - struct srcu_data *sda; - struct lockdep_map dep_map; - struct srcu_usage *srcu_sup; -}; - -struct srcu_usage { - struct srcu_node *node; - struct srcu_node *level[4]; - int srcu_size_state; - struct mutex srcu_cb_mutex; - spinlock_t lock; - struct mutex srcu_gp_mutex; - long unsigned int srcu_gp_seq; - long unsigned int srcu_gp_seq_needed; - long unsigned int srcu_gp_seq_needed_exp; - long unsigned int srcu_gp_start; - long unsigned int srcu_last_gp_end; - long unsigned int srcu_size_jiffies; - long unsigned int srcu_n_lock_retries; - long unsigned int srcu_n_exp_nodelay; - bool sda_is_static; - long unsigned int srcu_barrier_seq; - struct mutex srcu_barrier_mutex; - struct completion srcu_barrier_completion; - atomic_t srcu_barrier_cpu_cnt; - long unsigned int reschedule_jiffies; - long unsigned int reschedule_count; - struct delayed_work work; - struct srcu_struct *srcu_ssp; -}; - -struct uprobe_xol_ops; - -struct arch_uprobe { - union { - u8 insn[16]; - u8 ixol[16]; - }; - const struct uprobe_xol_ops *ops; - union { - struct { - s32 offs; - u8 ilen; - u8 opc1; - } branch; - struct { - u8 fixups; - u8 ilen; - } defparam; - struct { - u8 reg_offset; - u8 ilen; - } push; - }; -}; - -struct uprobe_xol_ops { - bool (*emulate)(struct arch_uprobe *, struct pt_regs *); - int (*pre_xol)(struct arch_uprobe *, struct pt_regs *); - int (*post_xol)(struct arch_uprobe *, struct pt_regs *); - void (*abort)(struct arch_uprobe *, struct pt_regs *); -}; - -enum hprobe_state { - HPROBE_LEASED = 0, - HPROBE_STABLE = 1, - HPROBE_GONE = 2, - HPROBE_CONSUMED = 3, -}; - -struct hprobe { - enum hprobe_state state; - int srcu_idx; - struct uprobe *uprobe; -}; - -struct return_consumer { - __u64 cookie; - __u64 id; -}; - -struct return_instance { - struct hprobe hprobe; - long unsigned int func; - long unsigned int stack; - long unsigned int orig_ret_vaddr; - bool chained; - int cons_cnt; - struct return_instance *next; - struct callback_head rcu; - struct return_consumer consumer; - struct return_consumer *extra_consumers; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct vdso_image { - void *data; - long unsigned int size; - long unsigned int alt; - long unsigned int alt_len; - long unsigned int extable_base; - long unsigned int extable_len; - const void *extable; - long int sym_VDSO32_NOTE_MASK; - long int sym___kernel_sigreturn; - long int sym___kernel_rt_sigreturn; - long int sym___kernel_vsyscall; - long int sym_int80_landing_pad; - long int sym_vdso32_sigreturn_landing_pad; - long int sym_vdso32_rt_sigreturn_landing_pad; -}; - -typedef struct { - long unsigned int val; -} swp_entry_t; - -typedef int mm_id_mapcount_t; - -struct vmem_altmap { - long unsigned int base_pfn; - const long unsigned int end_pfn; - const long unsigned int reserve; - long unsigned int free; - long unsigned int align; - long unsigned int alloc; - bool inaccessible; -}; - -enum memory_type { - MEMORY_DEVICE_PRIVATE = 1, - MEMORY_DEVICE_COHERENT = 2, - MEMORY_DEVICE_FS_DAX = 3, - MEMORY_DEVICE_GENERIC = 4, - MEMORY_DEVICE_PCI_P2PDMA = 5, -}; - -struct dev_pagemap_ops; - -struct dev_pagemap { - struct vmem_altmap altmap; - struct percpu_ref ref; - struct completion done; - enum memory_type type; - unsigned int flags; - long unsigned int vmemmap_shift; - const struct dev_pagemap_ops *ops; - void *owner; - int nr_range; - union { - struct range range; - struct { - struct {} __empty_ranges; - struct range ranges[0]; - }; - }; -}; - -struct folio { - union { - struct { - long unsigned int flags; - union { - struct list_head lru; - struct { - void *__filler; - unsigned int mlock_count; - }; - struct dev_pagemap *pgmap; - }; - struct address_space *mapping; - union { - long unsigned int index; - long unsigned int share; - }; - union { - void *private; - swp_entry_t swap; - }; - atomic_t _mapcount; - atomic_t _refcount; - long unsigned int memcg_data; - }; - struct page page; - }; - union { - struct { - long unsigned int _flags_1; - long unsigned int _head_1; - union { - struct { - atomic_t _large_mapcount; - atomic_t _nr_pages_mapped; - atomic_t _entire_mapcount; - atomic_t _pincount; - mm_id_mapcount_t _mm_id_mapcount[2]; - union { - mm_id_t _mm_id[2]; - long unsigned int _mm_ids; - }; - }; - long unsigned int _usable_1[4]; - }; - atomic_t _mapcount_1; - atomic_t _refcount_1; - unsigned int _nr_pages; - }; - struct page __page_1; - }; - union { - struct { - long unsigned int _flags_2; - long unsigned int _head_2; - struct list_head _deferred_list; - }; - struct page __page_2; - }; - union { - struct { - long unsigned int _flags_3; - long unsigned int _head_3; - void *_hugetlb_subpool; - void *_hugetlb_cgroup; - void *_hugetlb_cgroup_rsvd; - void *_hugetlb_hwpoison; - }; - struct page __page_3; - }; -}; - -typedef struct { - long unsigned int v; -} freeptr_t; - -struct vfsmount; - -struct path { - struct vfsmount *mnt; - struct dentry *dentry; -}; - -struct file_ra_state { - long unsigned int start; - unsigned int size; - unsigned int async_size; - unsigned int ra_pages; - short unsigned int order; - short unsigned int mmap_miss; - loff_t prev_pos; -}; - -typedef struct { - atomic64_t refcnt; -} file_ref_t; - -struct fown_struct; - -struct file { - spinlock_t f_lock; - fmode_t f_mode; - const struct file_operations *f_op; - struct address_space *f_mapping; - void *private_data; - struct inode *f_inode; - unsigned int f_flags; - unsigned int f_iocb_flags; - const struct cred *f_cred; - struct fown_struct *f_owner; - struct path f_path; - union { - struct mutex f_pos_lock; - u64 f_pipe; - }; - loff_t f_pos; - void *f_security; - errseq_t f_wb_err; - errseq_t f_sb_err; - struct hlist_head *f_ep; - union { - struct callback_head f_task_work; - struct llist_node f_llist; - struct file_ra_state f_ra; - freeptr_t f_freeptr; - }; - file_ref_t f_ref; -}; - -struct userfaultfd_ctx; - -struct vm_userfaultfd_ctx { - struct userfaultfd_ctx *ctx; -}; - -struct anon_vma_name { - struct kref kref; - char name[0]; -}; - -struct vma_numab_state { - long unsigned int next_scan; - long unsigned int pids_active_reset; - long unsigned int pids_active[2]; - int start_scan_seq; - int prev_scan_seq; -}; - -struct pfnmap_track_ctx { - struct kref kref; - long unsigned int pfn; - long unsigned int size; -}; - -struct vm_operations_struct; - -struct vm_area_desc { - struct mm_struct *mm; - long unsigned int start; - long unsigned int end; - long unsigned int pgoff; - struct file *file; - vm_flags_t vm_flags; - pgprot_t page_prot; - const struct vm_operations_struct *vm_ops; - void *private_data; -}; - -typedef unsigned int vm_fault_t; - -struct vm_fault; - -struct vm_operations_struct { - void (*open)(struct vm_area_struct *); - void (*close)(struct vm_area_struct *); - int (*may_split)(struct vm_area_struct *, long unsigned int); - int (*mremap)(struct vm_area_struct *); - int (*mprotect)(struct vm_area_struct *, long unsigned int, long unsigned int, long unsigned int); - vm_fault_t (*fault)(struct vm_fault *); - vm_fault_t (*huge_fault)(struct vm_fault *, unsigned int); - vm_fault_t (*map_pages)(struct vm_fault *, long unsigned int, long unsigned int); - long unsigned int (*pagesize)(struct vm_area_struct *); - vm_fault_t (*page_mkwrite)(struct vm_fault *); - vm_fault_t (*pfn_mkwrite)(struct vm_fault *); - int (*access)(struct vm_area_struct *, long unsigned int, void *, int, int); - const char * (*name)(struct vm_area_struct *); - int (*set_policy)(struct vm_area_struct *, struct mempolicy *); - struct mempolicy * (*get_policy)(struct vm_area_struct *, long unsigned int, long unsigned int *); - struct page * (*find_special_page)(struct vm_area_struct *, long unsigned int); -}; - -struct anon_vma; - -struct vm_area_struct { - union { - struct { - long unsigned int vm_start; - long unsigned int vm_end; - }; - freeptr_t vm_freeptr; - }; - struct mm_struct *vm_mm; - pgprot_t vm_page_prot; - union { - const vm_flags_t vm_flags; - vm_flags_t __vm_flags; - }; - unsigned int vm_lock_seq; - struct list_head anon_vma_chain; - struct anon_vma *anon_vma; - const struct vm_operations_struct *vm_ops; - long unsigned int vm_pgoff; - struct file *vm_file; - void *vm_private_data; - atomic_long_t swap_readahead_info; - struct mempolicy *vm_policy; - struct vma_numab_state *numab_state; - refcount_t vm_refcnt; - struct { - struct rb_node rb; - long unsigned int rb_subtree_last; - } shared; - struct anon_vma_name *anon_name; - struct vm_userfaultfd_ctx vm_userfaultfd_ctx; - struct pfnmap_track_ctx *pfnmap_track_ctx; -}; - -struct mm_cid { - u64 time; - int cid; - int recent_cid; -}; - -struct uid_gid_extent { - u32 first; - u32 lower_first; - u32 count; -}; - -struct uid_gid_map { - union { - struct { - struct uid_gid_extent extent[5]; - u32 nr_extents; - }; - struct { - struct uid_gid_extent *forward; - struct uid_gid_extent *reverse; - }; - }; -}; - -struct binfmt_misc; - -struct user_namespace { - struct uid_gid_map uid_map; - struct uid_gid_map gid_map; - struct uid_gid_map projid_map; - struct user_namespace *parent; - int level; - kuid_t owner; - kgid_t group; - struct ns_common ns; - long unsigned int flags; - bool parent_could_setfcap; - struct list_head keyring_name_list; - struct key *user_keyring_register; - struct rw_semaphore keyring_sem; - struct key *persistent_keyring_register; - struct work_struct work; - struct ctl_table_set set; - struct ctl_table_header *sysctls; - struct ucounts *ucounts; - long int ucount_max[12]; - long int rlimit_max[4]; - struct binfmt_misc *binfmt_misc; -}; - -enum fault_flag { - FAULT_FLAG_WRITE = 1, - FAULT_FLAG_MKWRITE = 2, - FAULT_FLAG_ALLOW_RETRY = 4, - FAULT_FLAG_RETRY_NOWAIT = 8, - FAULT_FLAG_KILLABLE = 16, - FAULT_FLAG_TRIED = 32, - FAULT_FLAG_USER = 64, - FAULT_FLAG_REMOTE = 128, - FAULT_FLAG_INSTRUCTION = 256, - FAULT_FLAG_INTERRUPTIBLE = 512, - FAULT_FLAG_UNSHARE = 1024, - FAULT_FLAG_ORIG_PTE_VALID = 2048, - FAULT_FLAG_VMA_LOCK = 4096, -}; - -struct vm_fault { - const struct { - struct vm_area_struct *vma; - gfp_t gfp_mask; - long unsigned int pgoff; - long unsigned int address; - long unsigned int real_address; - }; - enum fault_flag flags; - pmd_t *pmd; - pud_t *pud; - union { - pte_t orig_pte; - pmd_t orig_pmd; - }; - struct page *cow_page; - struct page *page; - pte_t *pte; - spinlock_t *ptl; - pgtable_t prealloc_pte; -}; - -struct per_cpu_pages { - spinlock_t lock; - int count; - int high; - int high_min; - int high_max; - int batch; - u8 flags; - u8 alloc_factor; - u8 expire; - short int free_count; - struct list_head lists[14]; -}; - -struct per_cpu_zonestat { - s8 vm_stat_diff[12]; - s8 stat_threshold; - long unsigned int vm_numa_event[6]; -}; - -struct per_cpu_nodestat { - s8 stat_threshold; - s8 vm_node_stat_diff[49]; -}; - -struct list_lru_node; - -struct list_lru { - struct list_lru_node *node; - struct list_head list; - int shrinker_id; - bool memcg_aware; - struct xarray xa; -}; - -struct kernfs_root; - -struct kernfs_elem_dir { - long unsigned int subdirs; - struct rb_root children; - struct kernfs_root *root; - long unsigned int rev; -}; - -struct kernfs_elem_symlink { - struct kernfs_node *target_kn; -}; - -struct kernfs_ops; - -struct kernfs_open_node; - -struct kernfs_elem_attr { - const struct kernfs_ops *ops; - struct kernfs_open_node *open; - loff_t size; - struct kernfs_node *notify_next; -}; - -struct kernfs_iattrs; - -struct kernfs_node { - atomic_t count; - atomic_t active; - struct kernfs_node *__parent; - const char *name; - struct rb_node rb; - const void *ns; - unsigned int hash; - short unsigned int flags; - umode_t mode; - union { - struct kernfs_elem_dir dir; - struct kernfs_elem_symlink symlink; - struct kernfs_elem_attr attr; - }; - u64 id; - void *priv; - struct kernfs_iattrs *iattr; - struct callback_head rcu; -}; - -struct kernfs_open_file; - -struct kernfs_ops { - int (*open)(struct kernfs_open_file *); - void (*release)(struct kernfs_open_file *); - int (*seq_show)(struct seq_file *, void *); - void * (*seq_start)(struct seq_file *, loff_t *); - void * (*seq_next)(struct seq_file *, void *, loff_t *); - void (*seq_stop)(struct seq_file *, void *); - ssize_t (*read)(struct kernfs_open_file *, char *, size_t, loff_t); - size_t atomic_write_len; - bool prealloc; - ssize_t (*write)(struct kernfs_open_file *, char *, size_t, loff_t); - __poll_t (*poll)(struct kernfs_open_file *, struct poll_table_struct *); - int (*mmap)(struct kernfs_open_file *, struct vm_area_struct *); - loff_t (*llseek)(struct kernfs_open_file *, loff_t, int); -}; - -struct seq_file { - char *buf; - size_t size; - size_t from; - size_t count; - size_t pad_until; - loff_t index; - loff_t read_pos; - struct mutex lock; - const struct seq_operations *op; - int poll_event; - const struct file *file; - void *private; -}; - -struct kernfs_open_file { - struct kernfs_node *kn; - struct file *file; - struct seq_file *seq_file; - void *priv; - struct mutex mutex; - struct mutex prealloc_mutex; - int event; - struct list_head list; - char *prealloc_buf; - size_t atomic_write_len; - bool mmapped: 1; - bool released: 1; - const struct vm_operations_struct *vm_ops; -}; - -typedef void (*poll_queue_proc)(struct file *, wait_queue_head_t *, struct poll_table_struct *); - -struct poll_table_struct { - poll_queue_proc _qproc; - __poll_t _key; -}; - -enum kobj_ns_type { - KOBJ_NS_TYPE_NONE = 0, - KOBJ_NS_TYPE_NET = 1, - KOBJ_NS_TYPES = 2, -}; - -struct sock; - -struct kobj_ns_type_operations { - enum kobj_ns_type type; - bool (*current_may_mount)(void); - void * (*grab_current_ns)(void); - const void * (*netlink_ns)(struct sock *); - const void * (*initial_ns)(void); - void (*drop_ns)(void *); -}; - -struct kstat { - u32 result_mask; - umode_t mode; - unsigned int nlink; - uint32_t blksize; - u64 attributes; - u64 attributes_mask; - u64 ino; - dev_t dev; - dev_t rdev; - kuid_t uid; - kgid_t gid; - loff_t size; - struct timespec64 atime; - struct timespec64 mtime; - struct timespec64 ctime; - struct timespec64 btime; - u64 blocks; - u64 mnt_id; - u64 change_cookie; - u64 subvol; - u32 dio_mem_align; - u32 dio_offset_align; - u32 dio_read_offset_align; - u32 atomic_write_unit_min; - u32 atomic_write_unit_max; - u32 atomic_write_unit_max_opt; - u32 atomic_write_segments_max; -}; - -struct attribute { - const char *name; - umode_t mode; -}; - -struct bin_attribute { - struct attribute attr; - size_t size; - void *private; - struct address_space * (*f_mapping)(void); - ssize_t (*read)(struct file *, struct kobject *, const struct bin_attribute *, char *, loff_t, size_t); - ssize_t (*read_new)(struct file *, struct kobject *, const struct bin_attribute *, char *, loff_t, size_t); - ssize_t (*write)(struct file *, struct kobject *, const struct bin_attribute *, char *, loff_t, size_t); - ssize_t (*write_new)(struct file *, struct kobject *, const struct bin_attribute *, char *, loff_t, size_t); - loff_t (*llseek)(struct file *, struct kobject *, const struct bin_attribute *, loff_t, int); - int (*mmap)(struct file *, struct kobject *, const struct bin_attribute *, struct vm_area_struct *); -}; - -struct sysfs_ops { - ssize_t (*show)(struct kobject *, struct attribute *, char *); - ssize_t (*store)(struct kobject *, struct attribute *, const char *, size_t); -}; - -struct kset_uevent_ops; - -struct kset { - struct list_head list; - spinlock_t list_lock; - struct kobject kobj; - const struct kset_uevent_ops *uevent_ops; -}; - -struct kobj_type { - void (*release)(struct kobject *); - const struct sysfs_ops *sysfs_ops; - const struct attribute_group **default_groups; - const struct kobj_ns_type_operations * (*child_ns_type)(const struct kobject *); - const void * (*namespace)(const struct kobject *); - void (*get_ownership)(const struct kobject *, kuid_t *, kgid_t *); -}; - -struct kobj_uevent_env { - char *argv[3]; - char *envp[64]; - int envp_idx; - char buf[2048]; - int buflen; -}; - -struct kset_uevent_ops { - int (* const filter)(const struct kobject *); - const char * (* const name)(const struct kobject *); - int (* const uevent)(const struct kobject *, struct kobj_uevent_env *); -}; - -struct em_perf_state { - long unsigned int performance; - long unsigned int frequency; - long unsigned int power; - long unsigned int cost; - long unsigned int flags; -}; - -struct em_perf_table { - struct callback_head rcu; - struct kref kref; - struct em_perf_state state[0]; -}; - -struct em_perf_domain { - struct em_perf_table *em_table; - int nr_perf_states; - int min_perf_state; - int max_perf_state; - long unsigned int flags; - long unsigned int cpus[0]; -}; - -enum dl_dev_state { - DL_DEV_NO_DRIVER = 0, - DL_DEV_PROBING = 1, - DL_DEV_DRIVER_BOUND = 2, - DL_DEV_UNBINDING = 3, -}; - -struct dev_links_info { - struct list_head suppliers; - struct list_head consumers; - struct list_head defer_sync; - enum dl_dev_state status; -}; - -struct pm_message { - int event; -}; - -typedef struct pm_message pm_message_t; - -enum rpm_request { - RPM_REQ_NONE = 0, - RPM_REQ_IDLE = 1, - RPM_REQ_SUSPEND = 2, - RPM_REQ_AUTOSUSPEND = 3, - RPM_REQ_RESUME = 4, -}; - -enum rpm_status { - RPM_INVALID = -1, - RPM_ACTIVE = 0, - RPM_RESUMING = 1, - RPM_SUSPENDED = 2, - RPM_SUSPENDING = 3, - RPM_BLOCKED = 4, -}; - -struct wakeup_source; - -struct wake_irq; - -struct pm_subsys_data; - -struct device; - -struct dev_pm_qos; - -struct dev_pm_info { - pm_message_t power_state; - bool can_wakeup: 1; - bool async_suspend: 1; - bool in_dpm_list: 1; - bool is_prepared: 1; - bool is_suspended: 1; - bool is_noirq_suspended: 1; - bool is_late_suspended: 1; - bool no_pm: 1; - bool early_init: 1; - bool direct_complete: 1; - u32 driver_flags; - spinlock_t lock; - struct list_head entry; - struct completion completion; - struct wakeup_source *wakeup; - bool wakeup_path: 1; - bool syscore: 1; - bool no_pm_callbacks: 1; - bool work_in_progress: 1; - bool smart_suspend: 1; - bool must_resume: 1; - bool may_skip_resume: 1; - bool strict_midlayer: 1; - struct hrtimer suspend_timer; - u64 timer_expires; - struct work_struct work; - wait_queue_head_t wait_queue; - struct wake_irq *wakeirq; - atomic_t usage_count; - atomic_t child_count; - unsigned int disable_depth: 3; - bool idle_notification: 1; - bool request_pending: 1; - bool deferred_resume: 1; - bool needs_force_resume: 1; - bool runtime_auto: 1; - bool ignore_children: 1; - bool no_callbacks: 1; - bool irq_safe: 1; - bool use_autosuspend: 1; - bool timer_autosuspends: 1; - bool memalloc_noio: 1; - unsigned int links_count; - enum rpm_request request; - enum rpm_status runtime_status; - enum rpm_status last_status; - int runtime_error; - int autosuspend_delay; - u64 last_busy; - u64 active_time; - u64 suspended_time; - u64 accounting_timestamp; - struct pm_subsys_data *subsys_data; - void (*set_latency_tolerance)(struct device *, s32); - struct dev_pm_qos *qos; - bool detach_power_off: 1; -}; - -struct irq_domain; - -struct msi_device_data; - -struct dev_msi_info { - struct irq_domain *domain; - struct msi_device_data *data; -}; - -struct dev_archdata {}; - -enum device_removable { - DEVICE_REMOVABLE_NOT_SUPPORTED = 0, - DEVICE_REMOVABLE_UNKNOWN = 1, - DEVICE_FIXED = 2, - DEVICE_REMOVABLE = 3, -}; - -struct device_private; - -struct device_type; - -struct bus_type; - -struct device_driver; - -struct dev_pm_domain; - -struct dev_pin_info; - -struct dma_map_ops; - -struct bus_dma_region; - -struct device_dma_parameters; - -struct cma; - -struct io_tlb_mem; - -struct device_node; - -struct fwnode_handle; - -struct class; - -struct iommu_group; - -struct dev_iommu; - -struct device_physical_location; - -struct device { - struct kobject kobj; - struct device *parent; - struct device_private *p; - const char *init_name; - const struct device_type *type; - const struct bus_type *bus; - struct device_driver *driver; - void *platform_data; - void *driver_data; - struct mutex mutex; - struct dev_links_info links; - struct dev_pm_info power; - struct dev_pm_domain *pm_domain; - struct em_perf_domain *em_pd; - struct dev_pin_info *pins; - struct dev_msi_info msi; - const struct dma_map_ops *dma_ops; - u64 *dma_mask; - u64 coherent_dma_mask; - u64 bus_dma_limit; - const struct bus_dma_region *dma_range_map; - struct device_dma_parameters *dma_parms; - struct list_head dma_pools; - struct cma *cma_area; - struct io_tlb_mem *dma_io_tlb_mem; - struct list_head dma_io_tlb_pools; - spinlock_t dma_io_tlb_lock; - bool dma_uses_io_tlb; - struct dev_archdata archdata; - struct device_node *of_node; - struct fwnode_handle *fwnode; - int numa_node; - dev_t devt; - u32 id; - spinlock_t devres_lock; - struct list_head devres_head; - const struct class *class; - const struct attribute_group **groups; - void (*release)(struct device *); - struct iommu_group *iommu_group; - struct dev_iommu *iommu; - struct device_physical_location *physical_location; - enum device_removable removable; - bool offline_disabled: 1; - bool offline: 1; - bool of_node_reused: 1; - bool state_synced: 1; - bool can_match: 1; - bool dma_skip_sync: 1; - bool dma_iommu: 1; -}; - -struct resource { - resource_size_t start; - resource_size_t end; - const char *name; - long unsigned int flags; - long unsigned int desc; - struct resource *parent; - struct resource *sibling; - struct resource *child; -}; - -struct dev_pm_ops { - int (*prepare)(struct device *); - void (*complete)(struct device *); - int (*suspend)(struct device *); - int (*resume)(struct device *); - int (*freeze)(struct device *); - int (*thaw)(struct device *); - int (*poweroff)(struct device *); - int (*restore)(struct device *); - int (*suspend_late)(struct device *); - int (*resume_early)(struct device *); - int (*freeze_late)(struct device *); - int (*thaw_early)(struct device *); - int (*poweroff_late)(struct device *); - int (*restore_early)(struct device *); - int (*suspend_noirq)(struct device *); - int (*resume_noirq)(struct device *); - int (*freeze_noirq)(struct device *); - int (*thaw_noirq)(struct device *); - int (*poweroff_noirq)(struct device *); - int (*restore_noirq)(struct device *); - int (*runtime_suspend)(struct device *); - int (*runtime_resume)(struct device *); - int (*runtime_idle)(struct device *); -}; - -struct pm_domain_data; - -struct pm_subsys_data { - spinlock_t lock; - unsigned int refcount; - unsigned int clock_op_might_sleep; - struct mutex clock_mutex; - struct list_head clock_list; - struct pm_domain_data *domain_data; -}; - -struct wakeup_source { - const char *name; - int id; - struct list_head entry; - spinlock_t lock; - struct wake_irq *wakeirq; - struct timer_list timer; - long unsigned int timer_expires; - ktime_t total_time; - ktime_t max_time; - ktime_t last_time; - ktime_t start_prevent_time; - ktime_t prevent_sleep_time; - long unsigned int event_count; - long unsigned int active_count; - long unsigned int relax_count; - long unsigned int expire_count; - long unsigned int wakeup_count; - struct device *dev; - bool active: 1; - bool autosleep_enabled: 1; -}; - -struct dev_pm_domain { - struct dev_pm_ops ops; - int (*start)(struct device *); - void (*detach)(struct device *, bool); - int (*activate)(struct device *); - void (*sync)(struct device *); - void (*dismiss)(struct device *); - int (*set_performance_state)(struct device *, unsigned int); -}; - -struct bus_type { - const char *name; - const char *dev_name; - const struct attribute_group **bus_groups; - const struct attribute_group **dev_groups; - const struct attribute_group **drv_groups; - int (*match)(struct device *, const struct device_driver *); - int (*uevent)(const struct device *, struct kobj_uevent_env *); - int (*probe)(struct device *); - void (*sync_state)(struct device *); - void (*remove)(struct device *); - void (*shutdown)(struct device *); - const struct cpumask * (*irq_get_affinity)(struct device *, unsigned int); - int (*online)(struct device *); - int (*offline)(struct device *); - int (*suspend)(struct device *, pm_message_t); - int (*resume)(struct device *); - int (*num_vf)(struct device *); - int (*dma_configure)(struct device *); - void (*dma_cleanup)(struct device *); - const struct dev_pm_ops *pm; - bool need_parent_lock; -}; - -enum probe_type { - PROBE_DEFAULT_STRATEGY = 0, - PROBE_PREFER_ASYNCHRONOUS = 1, - PROBE_FORCE_SYNCHRONOUS = 2, -}; - -struct of_device_id; - -struct acpi_device_id; - -struct driver_private; - -struct device_driver { - const char *name; - const struct bus_type *bus; - struct module *owner; - const char *mod_name; - bool suppress_bind_attrs; - enum probe_type probe_type; - const struct of_device_id *of_match_table; - const struct acpi_device_id *acpi_match_table; - int (*probe)(struct device *); - void (*sync_state)(struct device *); - int (*remove)(struct device *); - void (*shutdown)(struct device *); - int (*suspend)(struct device *, pm_message_t); - int (*resume)(struct device *); - const struct attribute_group **groups; - const struct attribute_group **dev_groups; - const struct dev_pm_ops *pm; - void (*coredump)(struct device *); - struct driver_private *p; -}; - -struct class { - const char *name; - const struct attribute_group **class_groups; - const struct attribute_group **dev_groups; - int (*dev_uevent)(const struct device *, struct kobj_uevent_env *); - char * (*devnode)(const struct device *, umode_t *); - void (*class_release)(const struct class *); - void (*dev_release)(struct device *); - int (*shutdown_pre)(struct device *); - const struct kobj_ns_type_operations *ns_type; - const void * (*namespace)(const struct device *); - void (*get_ownership)(const struct device *, kuid_t *, kgid_t *); - const struct dev_pm_ops *pm; -}; - -struct device_type { - const char *name; - const struct attribute_group **groups; - int (*uevent)(const struct device *, struct kobj_uevent_env *); - char * (*devnode)(const struct device *, umode_t *, kuid_t *, kgid_t *); - void (*release)(struct device *); - const struct dev_pm_ops *pm; -}; - -typedef int proc_handler(const struct ctl_table *, int, void *, size_t *, loff_t *); - -struct ctl_table_poll; - -struct ctl_table { - const char *procname; - void *data; - int maxlen; - umode_t mode; - proc_handler *proc_handler; - struct ctl_table_poll *poll; - void *extra1; - void *extra2; -}; - -struct ctl_table_poll { - atomic_t event; - wait_queue_head_t wait; -}; - -struct ctl_node { - struct rb_node node; - struct ctl_table_header *header; -}; - -struct ctl_table_root { - struct ctl_table_set default_set; - struct ctl_table_set * (*lookup)(struct ctl_table_root *); - void (*set_ownership)(struct ctl_table_header *, kuid_t *, kgid_t *); - int (*permissions)(struct ctl_table_header *, const struct ctl_table *); -}; - -enum umh_disable_depth { - UMH_ENABLED = 0, - UMH_FREEZING = 1, - UMH_DISABLED = 2, -}; - -struct iovec { - void *iov_base; - __kernel_size_t iov_len; -}; - -struct kvec { - void *iov_base; - size_t iov_len; -}; - -struct bio_vec { - struct page *bv_page; - unsigned int bv_len; - unsigned int bv_offset; -}; - -struct folio_batch { - unsigned char nr; - unsigned char i; - bool percpu_pvec_drained; - struct folio *folios[31]; -}; - -struct folio_queue { - struct folio_batch vec; - u8 orders[31]; - struct folio_queue *next; - struct folio_queue *prev; - long unsigned int marks; - long unsigned int marks2; - unsigned int rreq_id; - unsigned int debug_id; -}; - -struct iov_iter { - u8 iter_type; - bool nofault; - bool data_source; - size_t iov_offset; - union { - struct iovec __ubuf_iovec; - struct { - union { - const struct iovec *__iov; - const struct kvec *kvec; - const struct bio_vec *bvec; - const struct folio_queue *folioq; - struct xarray *xarray; - void *ubuf; - }; - size_t count; - }; - }; - union { - long unsigned int nr_segs; - u8 folioq_slot; - loff_t xarray_start; - }; -}; - -struct wait_page_queue; - -struct kiocb { - struct file *ki_filp; - loff_t ki_pos; - void (*ki_complete)(struct kiocb *, long int); - void *private; - int ki_flags; - u16 ki_ioprio; - u8 ki_write_stream; - union { - struct wait_page_queue *ki_waitq; - ssize_t (*dio_complete)(void *); - }; -}; - -struct hlist_bl_head { - struct hlist_bl_node *first; -}; - -enum rw_hint { - WRITE_LIFE_NOT_SET = 0, - WRITE_LIFE_NONE = 1, - WRITE_LIFE_SHORT = 2, - WRITE_LIFE_MEDIUM = 3, - WRITE_LIFE_LONG = 4, - WRITE_LIFE_EXTREME = 5, -} __attribute__((mode(byte))); - -struct posix_acl; - -struct inode_operations; - -struct bdi_writeback; - -struct file_lock_context; - -struct cdev; - -struct fsnotify_mark_connector; - -struct fscrypt_inode_info; - -struct fsverity_info; - -struct inode { - umode_t i_mode; - short unsigned int i_opflags; - kuid_t i_uid; - kgid_t i_gid; - unsigned int i_flags; - struct posix_acl *i_acl; - struct posix_acl *i_default_acl; - const struct inode_operations *i_op; - struct super_block *i_sb; - struct address_space *i_mapping; - void *i_security; - long unsigned int i_ino; - union { - const unsigned int i_nlink; - unsigned int __i_nlink; - }; - dev_t i_rdev; - loff_t i_size; - time64_t i_atime_sec; - time64_t i_mtime_sec; - time64_t i_ctime_sec; - u32 i_atime_nsec; - u32 i_mtime_nsec; - u32 i_ctime_nsec; - u32 i_generation; - spinlock_t i_lock; - short unsigned int i_bytes; - u8 i_blkbits; - enum rw_hint i_write_hint; - blkcnt_t i_blocks; - u32 i_state; - struct rw_semaphore i_rwsem; - long unsigned int dirtied_when; - long unsigned int dirtied_time_when; - struct hlist_node i_hash; - struct list_head i_io_list; - struct bdi_writeback *i_wb; - int i_wb_frn_winner; - u16 i_wb_frn_avg_time; - u16 i_wb_frn_history; - struct list_head i_lru; - struct list_head i_sb_list; - struct list_head i_wb_list; - union { - struct hlist_head i_dentry; - struct callback_head i_rcu; - }; - atomic64_t i_version; - atomic64_t i_sequence; - atomic_t i_count; - atomic_t i_dio_count; - atomic_t i_writecount; - atomic_t i_readcount; - union { - const struct file_operations *i_fop; - void (*free_inode)(struct inode *); - }; - struct file_lock_context *i_flctx; - struct address_space i_data; - union { - struct list_head i_devices; - int i_linklen; - }; - union { - struct pipe_inode_info *i_pipe; - struct cdev *i_cdev; - char *i_link; - unsigned int i_dir_seq; - }; - __u32 i_fsnotify_mask; - struct fsnotify_mark_connector *i_fsnotify_marks; - struct fscrypt_inode_info *i_crypt_info; - struct fsverity_info *i_verity_info; - void *i_private; -}; - -enum d_real_type { - D_REAL_DATA = 0, - D_REAL_METADATA = 1, -}; - -struct dentry_operations { - int (*d_revalidate)(struct inode *, const struct qstr *, struct dentry *, unsigned int); - int (*d_weak_revalidate)(struct dentry *, unsigned int); - int (*d_hash)(const struct dentry *, struct qstr *); - int (*d_compare)(const struct dentry *, unsigned int, const char *, const struct qstr *); - int (*d_delete)(const struct dentry *); - int (*d_init)(struct dentry *); - void (*d_release)(struct dentry *); - void (*d_prune)(struct dentry *); - void (*d_iput)(struct dentry *, struct inode *); - char * (*d_dname)(struct dentry *, char *, int); - struct vfsmount * (*d_automount)(struct path *); - int (*d_manage)(const struct path *, bool); - struct dentry * (*d_real)(struct dentry *, enum d_real_type); - bool (*d_unalias_trylock)(const struct dentry *); - void (*d_unalias_unlock)(const struct dentry *); - long: 64; -}; - -struct mtd_info; - -typedef long long int qsize_t; - -struct quota_format_type; - -struct mem_dqinfo { - struct quota_format_type *dqi_format; - int dqi_fmt_id; - struct list_head dqi_dirty_list; - long unsigned int dqi_flags; - unsigned int dqi_bgrace; - unsigned int dqi_igrace; - qsize_t dqi_max_spc_limit; - qsize_t dqi_max_ino_limit; - void *dqi_priv; -}; - -struct quota_format_ops; - -struct quota_info { - unsigned int flags; - struct rw_semaphore dqio_sem; - struct inode *files[3]; - struct mem_dqinfo info[3]; - const struct quota_format_ops *ops[3]; -}; - -struct rcu_sync { - int gp_state; - int gp_count; - wait_queue_head_t gp_wait; - struct callback_head cb_head; -}; - -struct percpu_rw_semaphore { - struct rcu_sync rss; - unsigned int *read_count; - struct rcuwait writer; - wait_queue_head_t waiters; - atomic_t block; -}; - -struct sb_writers { - short unsigned int frozen; - int freeze_kcount; - int freeze_ucount; - const void *freeze_owner; - struct percpu_rw_semaphore rw_sem[3]; -}; - -typedef struct { - __u8 b[16]; -} uuid_t; - -struct super_operations; - -struct dquot_operations; - -struct quotactl_ops; - -struct export_operations; - -struct xattr_handler; - -struct fscrypt_operations; - -struct fscrypt_keyring; - -struct fsverity_operations; - -struct unicode_map; - -struct fsnotify_sb_info; - -struct shrinker; - -struct super_block { - struct list_head s_list; - dev_t s_dev; - unsigned char s_blocksize_bits; - long unsigned int s_blocksize; - loff_t s_maxbytes; - struct file_system_type *s_type; - const struct super_operations *s_op; - const struct dquot_operations *dq_op; - const struct quotactl_ops *s_qcop; - const struct export_operations *s_export_op; - long unsigned int s_flags; - long unsigned int s_iflags; - long unsigned int s_magic; - struct dentry *s_root; - struct rw_semaphore s_umount; - int s_count; - atomic_t s_active; - void *s_security; - const struct xattr_handler * const *s_xattr; - const struct fscrypt_operations *s_cop; - struct fscrypt_keyring *s_master_keys; - const struct fsverity_operations *s_vop; - struct unicode_map *s_encoding; - __u16 s_encoding_flags; - struct hlist_bl_head s_roots; - struct list_head s_mounts; - struct block_device *s_bdev; - struct file *s_bdev_file; - struct backing_dev_info *s_bdi; - struct mtd_info *s_mtd; - struct hlist_node s_instances; - unsigned int s_quota_types; - struct quota_info s_dquot; - struct sb_writers s_writers; - void *s_fs_info; - u32 s_time_gran; - time64_t s_time_min; - time64_t s_time_max; - u32 s_fsnotify_mask; - struct fsnotify_sb_info *s_fsnotify_info; - char s_id[32]; - uuid_t s_uuid; - u8 s_uuid_len; - char s_sysfs_name[37]; - unsigned int s_max_links; - unsigned int s_d_flags; - struct mutex s_vfs_rename_mutex; - const char *s_subtype; - const struct dentry_operations *__s_d_op; - struct shrinker *s_shrink; - atomic_long_t s_remove_count; - int s_readonly_remount; - errseq_t s_wb_err; - struct workqueue_struct *s_dio_done_wq; - struct hlist_head s_pins; - struct user_namespace *s_user_ns; - struct list_lru s_dentry_lru; - struct list_lru s_inode_lru; - struct callback_head rcu; - struct work_struct destroy_work; - struct mutex s_sync_lock; - int s_stack_depth; - long: 0; - spinlock_t s_inode_list_lock; - struct list_head s_inodes; - spinlock_t s_inode_wblist_lock; - struct list_head s_inodes_wb; - long: 64; - long: 64; -}; - -struct mnt_idmap; - -struct vfsmount { - struct dentry *mnt_root; - struct super_block *mnt_sb; - int mnt_flags; - struct mnt_idmap *mnt_idmap; -}; - -struct shrinker_info_unit { - atomic_long_t nr_deferred[64]; - long unsigned int map[1]; -}; - -struct shrinker_info { - struct callback_head rcu; - int map_nr_max; - struct shrinker_info_unit *unit[0]; -}; - -struct shrink_control { - gfp_t gfp_mask; - int nid; - long unsigned int nr_to_scan; - long unsigned int nr_scanned; - struct mem_cgroup *memcg; -}; - -struct shrinker { - long unsigned int (*count_objects)(struct shrinker *, struct shrink_control *); - long unsigned int (*scan_objects)(struct shrinker *, struct shrink_control *); - long int batch; - int seeks; - unsigned int flags; - refcount_t refcount; - struct completion done; - struct callback_head rcu; - void *private_data; - struct list_head list; - int id; - atomic_long_t *nr_deferred; -}; - -struct list_lru_one { - struct list_head list; - long int nr_items; - spinlock_t lock; -}; - -struct list_lru_node { - struct list_lru_one lru; - atomic_long_t nr_items; - long: 64; - long: 64; - long: 64; -}; - -enum migrate_mode { - MIGRATE_ASYNC = 0, - MIGRATE_SYNC_LIGHT = 1, - MIGRATE_SYNC = 2, -}; - -struct exception_table_entry { - int insn; - int fixup; - int data; -}; - -struct key_tag { - struct callback_head rcu; - refcount_t usage; - bool removed; -}; - -typedef int (*request_key_actor_t)(struct key *, void *); - -struct key_preparsed_payload; - -struct key_match_data; - -struct kernel_pkey_params; - -struct kernel_pkey_query; - -struct key_type { - const char *name; - size_t def_datalen; - unsigned int flags; - int (*vet_description)(const char *); - int (*preparse)(struct key_preparsed_payload *); - void (*free_preparse)(struct key_preparsed_payload *); - int (*instantiate)(struct key *, struct key_preparsed_payload *); - int (*update)(struct key *, struct key_preparsed_payload *); - int (*match_preparse)(struct key_match_data *); - void (*match_free)(struct key_match_data *); - void (*revoke)(struct key *); - void (*destroy)(struct key *); - void (*describe)(const struct key *, struct seq_file *); - long int (*read)(const struct key *, char *, size_t); - request_key_actor_t request_key; - struct key_restriction * (*lookup_restriction)(const char *); - int (*asym_query)(const struct kernel_pkey_params *, struct kernel_pkey_query *); - int (*asym_eds_op)(struct kernel_pkey_params *, const void *, void *); - int (*asym_verify_signature)(struct kernel_pkey_params *, const void *, const void *); - struct list_head link; - struct lock_class_key lock_class; -}; - -typedef int (*key_restrict_link_func_t)(struct key *, const struct key_type *, const union key_payload *, struct key *); - -struct key_restriction { - key_restrict_link_func_t check; - struct key *key; - struct key_type *keytype; -}; - -struct user_struct { - refcount_t __count; - struct percpu_counter epoll_watches; - long unsigned int unix_inflight; - atomic_long_t pipe_bufs; - struct hlist_node uidhash_node; - kuid_t uid; - atomic_long_t locked_vm; - atomic_t nr_watches; - struct ratelimit_state ratelimit; -}; - -struct group_info { - refcount_t usage; - int ngroups; - kgid_t gid[0]; -}; - -struct hrtimer_cpu_base { - raw_spinlock_t lock; - unsigned int cpu; - unsigned int active_bases; - unsigned int clock_was_set_seq; - unsigned int hres_active: 1; - unsigned int in_hrtirq: 1; - unsigned int hang_detected: 1; - unsigned int softirq_activated: 1; - unsigned int online: 1; - unsigned int nr_events; - short unsigned int nr_retries; - short unsigned int nr_hangs; - unsigned int max_hang_time; - ktime_t expires_next; - struct hrtimer *next_timer; - ktime_t softirq_expires_next; - struct hrtimer *softirq_next_timer; - struct hrtimer_clock_base clock_base[8]; - call_single_data_t csd; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct core_thread { - struct task_struct *task; - struct core_thread *next; -}; - -struct core_state { - atomic_t nr_threads; - struct core_thread dumper; - struct completion startup; -}; - -struct taskstats { - __u16 version; - __u32 ac_exitcode; - __u8 ac_flag; - __u8 ac_nice; - __u64 cpu_count; - __u64 cpu_delay_total; - __u64 blkio_count; - __u64 blkio_delay_total; - __u64 swapin_count; - __u64 swapin_delay_total; - __u64 cpu_run_real_total; - __u64 cpu_run_virtual_total; - char ac_comm[32]; - __u8 ac_sched; - __u8 ac_pad[3]; - long: 0; - __u32 ac_uid; - __u32 ac_gid; - __u32 ac_pid; - __u32 ac_ppid; - __u32 ac_btime; - __u64 ac_etime; - __u64 ac_utime; - __u64 ac_stime; - __u64 ac_minflt; - __u64 ac_majflt; - __u64 coremem; - __u64 virtmem; - __u64 hiwater_rss; - __u64 hiwater_vm; - __u64 read_char; - __u64 write_char; - __u64 read_syscalls; - __u64 write_syscalls; - __u64 read_bytes; - __u64 write_bytes; - __u64 cancelled_write_bytes; - __u64 nvcsw; - __u64 nivcsw; - __u64 ac_utimescaled; - __u64 ac_stimescaled; - __u64 cpu_scaled_run_real_total; - __u64 freepages_count; - __u64 freepages_delay_total; - __u64 thrashing_count; - __u64 thrashing_delay_total; - __u64 ac_btime64; - __u64 compact_count; - __u64 compact_delay_total; - __u32 ac_tgid; - __u64 ac_tgetime; - __u64 ac_exe_dev; - __u64 ac_exe_inode; - __u64 wpcopy_count; - __u64 wpcopy_delay_total; - __u64 irq_count; - __u64 irq_delay_total; - __u64 cpu_delay_max; - __u64 cpu_delay_min; - __u64 blkio_delay_max; - __u64 blkio_delay_min; - __u64 swapin_delay_max; - __u64 swapin_delay_min; - __u64 freepages_delay_max; - __u64 freepages_delay_min; - __u64 thrashing_delay_max; - __u64 thrashing_delay_min; - __u64 compact_delay_max; - __u64 compact_delay_min; - __u64 wpcopy_delay_max; - __u64 wpcopy_delay_min; - __u64 irq_delay_max; - __u64 irq_delay_min; -}; - -struct delayed_call { - void (*fn)(void *); - void *arg; -}; - -struct io_cq { - struct request_queue *q; - struct io_context *ioc; - union { - struct list_head q_node; - struct kmem_cache *__rcu_icq_cache; - }; - union { - struct hlist_node ioc_node; - struct callback_head __rcu_head; - }; - unsigned int flags; -}; - -typedef unsigned int blk_features_t; - -typedef unsigned int blk_flags_t; - -enum blk_integrity_checksum { - BLK_INTEGRITY_CSUM_NONE = 0, - BLK_INTEGRITY_CSUM_IP = 1, - BLK_INTEGRITY_CSUM_CRC = 2, - BLK_INTEGRITY_CSUM_CRC64 = 3, -} __attribute__((mode(byte))); - -struct blk_integrity { - unsigned char flags; - enum blk_integrity_checksum csum_type; - unsigned char metadata_size; - unsigned char pi_offset; - unsigned char interval_exp; - unsigned char tag_size; - unsigned char pi_tuple_size; -}; - -struct queue_limits { - blk_features_t features; - blk_flags_t flags; - long unsigned int seg_boundary_mask; - long unsigned int virt_boundary_mask; - unsigned int max_hw_sectors; - unsigned int max_dev_sectors; - unsigned int chunk_sectors; - unsigned int max_sectors; - unsigned int max_user_sectors; - unsigned int max_segment_size; - unsigned int min_segment_size; - unsigned int physical_block_size; - unsigned int logical_block_size; - unsigned int alignment_offset; - unsigned int io_min; - unsigned int io_opt; - unsigned int max_discard_sectors; - unsigned int max_hw_discard_sectors; - unsigned int max_user_discard_sectors; - unsigned int max_secure_erase_sectors; - unsigned int max_write_zeroes_sectors; - unsigned int max_wzeroes_unmap_sectors; - unsigned int max_hw_wzeroes_unmap_sectors; - unsigned int max_user_wzeroes_unmap_sectors; - unsigned int max_hw_zone_append_sectors; - unsigned int max_zone_append_sectors; - unsigned int discard_granularity; - unsigned int discard_alignment; - unsigned int zone_write_granularity; - unsigned int atomic_write_hw_max; - unsigned int atomic_write_max_sectors; - unsigned int atomic_write_hw_boundary; - unsigned int atomic_write_boundary_sectors; - unsigned int atomic_write_hw_unit_min; - unsigned int atomic_write_unit_min; - unsigned int atomic_write_hw_unit_max; - unsigned int atomic_write_unit_max; - short unsigned int max_segments; - short unsigned int max_integrity_segments; - short unsigned int max_discard_segments; - short unsigned int max_write_streams; - unsigned int write_stream_granularity; - unsigned int max_open_zones; - unsigned int max_active_zones; - unsigned int dma_alignment; - unsigned int dma_pad_mask; - struct blk_integrity integrity; -}; - -struct elevator_queue; - -struct blk_mq_ops; - -struct blk_mq_ctx; - -struct blk_queue_stats; - -struct rq_qos; - -struct blk_crypto_profile; - -struct blk_mq_tags; - -struct blkcg_gq; - -struct blk_trace; - -struct blk_flush_queue; - -struct throtl_data; - -struct blk_mq_tag_set; - -struct request_queue { - void *queuedata; - struct elevator_queue *elevator; - const struct blk_mq_ops *mq_ops; - struct blk_mq_ctx *queue_ctx; - long unsigned int queue_flags; - unsigned int rq_timeout; - unsigned int queue_depth; - refcount_t refs; - unsigned int nr_hw_queues; - struct xarray hctx_table; - struct percpu_ref q_usage_counter; - struct lock_class_key io_lock_cls_key; - struct lockdep_map io_lockdep_map; - struct lock_class_key q_lock_cls_key; - struct lockdep_map q_lockdep_map; - struct request *last_merge; - spinlock_t queue_lock; - int quiesce_depth; - struct gendisk *disk; - struct kobject *mq_kobj; - struct queue_limits limits; - struct device *dev; - enum rpm_status rpm_status; - atomic_t pm_only; - struct blk_queue_stats *stats; - struct rq_qos *rq_qos; - struct mutex rq_qos_mutex; - int id; - long unsigned int nr_requests; - struct blk_crypto_profile *crypto_profile; - struct kobject *crypto_kobject; - struct timer_list timeout; - struct work_struct timeout_work; - atomic_t nr_active_requests_shared_tags; - struct blk_mq_tags *sched_shared_tags; - struct list_head icq_list; - long unsigned int blkcg_pols[1]; - struct blkcg_gq *root_blkg; - struct list_head blkg_list; - struct mutex blkcg_mutex; - int node; - spinlock_t requeue_lock; - struct list_head requeue_list; - struct delayed_work requeue_work; - struct blk_trace *blk_trace; - struct blk_flush_queue *fq; - struct list_head flush_list; - struct mutex elevator_lock; - struct mutex sysfs_lock; - struct mutex limits_lock; - struct list_head unused_hctx_list; - spinlock_t unused_hctx_lock; - int mq_freeze_depth; - struct throtl_data *td; - struct callback_head callback_head; - wait_queue_head_t mq_freeze_wq; - struct mutex mq_freeze_lock; - struct blk_mq_tag_set *tag_set; - struct list_head tag_set_list; - struct dentry *debugfs_dir; - struct dentry *sched_debugfs_dir; - struct dentry *rqos_debugfs_dir; - struct mutex debugfs_mutex; -}; - -typedef struct { - uid_t val; -} vfsuid_t; - -typedef struct { - gid_t val; -} vfsgid_t; - -typedef void percpu_ref_func_t(struct percpu_ref *); - -struct percpu_ref_data { - atomic_long_t count; - percpu_ref_func_t *release; - percpu_ref_func_t *confirm_switch; - bool force_atomic: 1; - bool allow_reinit: 1; - struct callback_head rcu; - struct percpu_ref *ref; -}; - -enum kmalloc_cache_type { - KMALLOC_NORMAL = 0, - KMALLOC_RANDOM_START = 0, - KMALLOC_RANDOM_END = 15, - KMALLOC_RECLAIM = 16, - KMALLOC_DMA = 17, - KMALLOC_CGROUP = 18, - NR_KMALLOC_TYPES = 19, -}; - -struct utf8data; - -struct utf8data_table; - -struct unicode_map { - unsigned int version; - const struct utf8data *ntab[2]; - const struct utf8data_table *tables; -}; - -struct utf8data { - unsigned int maxage; - unsigned int offset; -}; - -struct utf8data_table { - const unsigned int *utf8agetab; - int utf8agetab_size; - const struct utf8data *utf8nfdicfdata; - int utf8nfdicfdata_size; - const struct utf8data *utf8nfdidata; - int utf8nfdidata_size; - const unsigned char *utf8data; -}; - -struct iattr { - unsigned int ia_valid; - umode_t ia_mode; - union { - kuid_t ia_uid; - vfsuid_t ia_vfsuid; - }; - union { - kgid_t ia_gid; - vfsgid_t ia_vfsgid; - }; - loff_t ia_size; - struct timespec64 ia_atime; - struct timespec64 ia_mtime; - struct timespec64 ia_ctime; - struct file *ia_file; -}; - -typedef __kernel_uid32_t projid_t; - -typedef struct { - projid_t val; -} kprojid_t; - -enum quota_type { - USRQUOTA = 0, - GRPQUOTA = 1, - PRJQUOTA = 2, -}; - -struct kqid { - union { - kuid_t uid; - kgid_t gid; - kprojid_t projid; - }; - enum quota_type type; -}; - -struct mem_dqblk { - qsize_t dqb_bhardlimit; - qsize_t dqb_bsoftlimit; - qsize_t dqb_curspace; - qsize_t dqb_rsvspace; - qsize_t dqb_ihardlimit; - qsize_t dqb_isoftlimit; - qsize_t dqb_curinodes; - time64_t dqb_btime; - time64_t dqb_itime; -}; - -struct dquot { - struct hlist_node dq_hash; - struct list_head dq_inuse; - struct list_head dq_free; - struct list_head dq_dirty; - struct mutex dq_lock; - spinlock_t dq_dqb_lock; - atomic_t dq_count; - struct super_block *dq_sb; - struct kqid dq_id; - loff_t dq_off; - long unsigned int dq_flags; - struct mem_dqblk dq_dqb; -}; - -struct quota_format_type { - int qf_fmt_id; - const struct quota_format_ops *qf_ops; - struct module *qf_owner; - struct quota_format_type *qf_next; -}; - -struct quota_format_ops { - int (*check_quota_file)(struct super_block *, int); - int (*read_file_info)(struct super_block *, int); - int (*write_file_info)(struct super_block *, int); - int (*free_file_info)(struct super_block *, int); - int (*read_dqblk)(struct dquot *); - int (*commit_dqblk)(struct dquot *); - int (*release_dqblk)(struct dquot *); - int (*get_next_id)(struct super_block *, struct kqid *); -}; - -struct dquot_operations { - int (*write_dquot)(struct dquot *); - struct dquot * (*alloc_dquot)(struct super_block *, int); - void (*destroy_dquot)(struct dquot *); - int (*acquire_dquot)(struct dquot *); - int (*release_dquot)(struct dquot *); - int (*mark_dirty)(struct dquot *); - int (*write_info)(struct super_block *, int); - qsize_t * (*get_reserved_space)(struct inode *); - int (*get_projid)(struct inode *, kprojid_t *); - int (*get_inode_usage)(struct inode *, qsize_t *); - int (*get_next_id)(struct super_block *, struct kqid *); -}; - -struct qc_dqblk { - int d_fieldmask; - u64 d_spc_hardlimit; - u64 d_spc_softlimit; - u64 d_ino_hardlimit; - u64 d_ino_softlimit; - u64 d_space; - u64 d_ino_count; - s64 d_ino_timer; - s64 d_spc_timer; - int d_ino_warns; - int d_spc_warns; - u64 d_rt_spc_hardlimit; - u64 d_rt_spc_softlimit; - u64 d_rt_space; - s64 d_rt_spc_timer; - int d_rt_spc_warns; -}; - -struct qc_type_state { - unsigned int flags; - unsigned int spc_timelimit; - unsigned int ino_timelimit; - unsigned int rt_spc_timelimit; - unsigned int spc_warnlimit; - unsigned int ino_warnlimit; - unsigned int rt_spc_warnlimit; - long long unsigned int ino; - blkcnt_t blocks; - blkcnt_t nextents; -}; - -struct qc_state { - unsigned int s_incoredqs; - struct qc_type_state s_state[3]; -}; - -struct qc_info { - int i_fieldmask; - unsigned int i_flags; - unsigned int i_spc_timelimit; - unsigned int i_ino_timelimit; - unsigned int i_rt_spc_timelimit; - unsigned int i_spc_warnlimit; - unsigned int i_ino_warnlimit; - unsigned int i_rt_spc_warnlimit; -}; - -struct quotactl_ops { - int (*quota_on)(struct super_block *, int, int, const struct path *); - int (*quota_off)(struct super_block *, int); - int (*quota_enable)(struct super_block *, unsigned int); - int (*quota_disable)(struct super_block *, unsigned int); - int (*quota_sync)(struct super_block *, int); - int (*set_info)(struct super_block *, int, struct qc_info *); - int (*get_dqblk)(struct super_block *, struct kqid, struct qc_dqblk *); - int (*get_nextdqblk)(struct super_block *, struct kqid *, struct qc_dqblk *); - int (*set_dqblk)(struct super_block *, struct kqid, struct qc_dqblk *); - int (*get_state)(struct super_block *, struct qc_state *); - int (*rm_xquota)(struct super_block *, unsigned int); -}; - -struct writeback_control; - -struct readahead_control; - -struct swap_info_struct; - -struct address_space_operations { - int (*read_folio)(struct file *, struct folio *); - int (*writepages)(struct address_space *, struct writeback_control *); - bool (*dirty_folio)(struct address_space *, struct folio *); - void (*readahead)(struct readahead_control *); - int (*write_begin)(const struct kiocb *, struct address_space *, loff_t, unsigned int, struct folio **, void **); - int (*write_end)(const struct kiocb *, struct address_space *, loff_t, unsigned int, unsigned int, struct folio *, void *); - sector_t (*bmap)(struct address_space *, sector_t); - void (*invalidate_folio)(struct folio *, size_t, size_t); - bool (*release_folio)(struct folio *, gfp_t); - void (*free_folio)(struct folio *); - ssize_t (*direct_IO)(struct kiocb *, struct iov_iter *); - int (*migrate_folio)(struct address_space *, struct folio *, struct folio *, enum migrate_mode); - int (*launder_folio)(struct folio *); - bool (*is_partially_uptodate)(struct folio *, size_t, size_t); - void (*is_dirty_writeback)(struct folio *, bool *, bool *); - int (*error_remove_folio)(struct address_space *, struct folio *); - int (*swap_activate)(struct swap_info_struct *, struct file *, sector_t *); - void (*swap_deactivate)(struct file *); - int (*swap_rw)(struct kiocb *, struct iov_iter *); -}; - -enum writeback_sync_modes { - WB_SYNC_NONE = 0, - WB_SYNC_ALL = 1, -}; - -struct writeback_control { - long int nr_to_write; - long int pages_skipped; - loff_t range_start; - loff_t range_end; - enum writeback_sync_modes sync_mode; - unsigned int for_kupdate: 1; - unsigned int for_background: 1; - unsigned int tagged_writepages: 1; - unsigned int range_cyclic: 1; - unsigned int for_sync: 1; - unsigned int unpinned_netfs_wb: 1; - unsigned int no_cgroup_owner: 1; - struct folio_batch fbatch; - long unsigned int index; - int saved_err; - struct bdi_writeback *wb; - struct inode *inode; - int wb_id; - int wb_lcand_id; - int wb_tcand_id; - size_t wb_bytes; - size_t wb_lcand_bytes; - size_t wb_tcand_bytes; -}; - -struct fiemap_extent_info; - -struct file_kattr; - -struct offset_ctx; - -struct inode_operations { - struct dentry * (*lookup)(struct inode *, struct dentry *, unsigned int); - const char * (*get_link)(struct dentry *, struct inode *, struct delayed_call *); - int (*permission)(struct mnt_idmap *, struct inode *, int); - struct posix_acl * (*get_inode_acl)(struct inode *, int, bool); - int (*readlink)(struct dentry *, char *, int); - int (*create)(struct mnt_idmap *, struct inode *, struct dentry *, umode_t, bool); - int (*link)(struct dentry *, struct inode *, struct dentry *); - int (*unlink)(struct inode *, struct dentry *); - int (*symlink)(struct mnt_idmap *, struct inode *, struct dentry *, const char *); - struct dentry * (*mkdir)(struct mnt_idmap *, struct inode *, struct dentry *, umode_t); - int (*rmdir)(struct inode *, struct dentry *); - int (*mknod)(struct mnt_idmap *, struct inode *, struct dentry *, umode_t, dev_t); - int (*rename)(struct mnt_idmap *, struct inode *, struct dentry *, struct inode *, struct dentry *, unsigned int); - int (*setattr)(struct mnt_idmap *, struct dentry *, struct iattr *); - int (*getattr)(struct mnt_idmap *, const struct path *, struct kstat *, u32, unsigned int); - ssize_t (*listxattr)(struct dentry *, char *, size_t); - int (*fiemap)(struct inode *, struct fiemap_extent_info *, u64, u64); - int (*update_time)(struct inode *, int); - int (*atomic_open)(struct inode *, struct dentry *, struct file *, unsigned int, umode_t); - int (*tmpfile)(struct mnt_idmap *, struct inode *, struct file *, umode_t); - struct posix_acl * (*get_acl)(struct mnt_idmap *, struct dentry *, int); - int (*set_acl)(struct mnt_idmap *, struct dentry *, struct posix_acl *, int); - int (*fileattr_set)(struct mnt_idmap *, struct dentry *, struct file_kattr *); - int (*fileattr_get)(struct dentry *, struct file_kattr *); - struct offset_ctx * (*get_offset_ctx)(struct inode *); - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct fprop_local_percpu { - struct percpu_counter events; - unsigned int period; - raw_spinlock_t lock; -}; - -enum wb_reason { - WB_REASON_BACKGROUND = 0, - WB_REASON_VMSCAN = 1, - WB_REASON_SYNC = 2, - WB_REASON_PERIODIC = 3, - WB_REASON_LAPTOP_TIMER = 4, - WB_REASON_FS_FREE_SPACE = 5, - WB_REASON_FORKER_THREAD = 6, - WB_REASON_FOREIGN_FLUSH = 7, - WB_REASON_MAX = 8, -}; - -struct bdi_writeback { - struct backing_dev_info *bdi; - long unsigned int state; - long unsigned int last_old_flush; - struct list_head b_dirty; - struct list_head b_io; - struct list_head b_more_io; - struct list_head b_dirty_time; - spinlock_t list_lock; - atomic_t writeback_inodes; - struct percpu_counter stat[4]; - long unsigned int bw_time_stamp; - long unsigned int dirtied_stamp; - long unsigned int written_stamp; - long unsigned int write_bandwidth; - long unsigned int avg_write_bandwidth; - long unsigned int dirty_ratelimit; - long unsigned int balanced_dirty_ratelimit; - struct fprop_local_percpu completions; - int dirty_exceeded; - enum wb_reason start_all_reason; - spinlock_t work_lock; - struct list_head work_list; - struct delayed_work dwork; - struct delayed_work bw_dwork; - struct list_head bdi_node; - struct percpu_ref refcnt; - struct fprop_local_percpu memcg_completions; - struct cgroup_subsys_state *memcg_css; - struct cgroup_subsys_state *blkcg_css; - struct list_head memcg_node; - struct list_head blkcg_node; - struct list_head b_attached; - struct list_head offline_node; - union { - struct work_struct release_work; - struct callback_head rcu; - }; -}; - -struct fown_struct { - struct file *file; - rwlock_t lock; - struct pid *pid; - enum pid_type pid_type; - kuid_t uid; - kuid_t euid; - int signum; -}; - -struct fasync_struct { - rwlock_t fa_lock; - int magic; - int fa_fd; - struct fasync_struct *fa_next; - struct file *fa_file; - struct callback_head fa_rcu; -}; - -enum freeze_holder { - FREEZE_HOLDER_KERNEL = 1, - FREEZE_HOLDER_USERSPACE = 2, - FREEZE_MAY_NEST = 4, - FREEZE_EXCL = 8, -}; - -struct kstatfs; - -struct super_operations { - struct inode * (*alloc_inode)(struct super_block *); - void (*destroy_inode)(struct inode *); - void (*free_inode)(struct inode *); - void (*dirty_inode)(struct inode *, int); - int (*write_inode)(struct inode *, struct writeback_control *); - int (*drop_inode)(struct inode *); - void (*evict_inode)(struct inode *); - void (*put_super)(struct super_block *); - int (*sync_fs)(struct super_block *, int); - int (*freeze_super)(struct super_block *, enum freeze_holder, const void *); - int (*freeze_fs)(struct super_block *); - int (*thaw_super)(struct super_block *, enum freeze_holder, const void *); - int (*unfreeze_fs)(struct super_block *); - int (*statfs)(struct dentry *, struct kstatfs *); - int (*remount_fs)(struct super_block *, int *, char *); - void (*umount_begin)(struct super_block *); - int (*show_options)(struct seq_file *, struct dentry *); - int (*show_devname)(struct seq_file *, struct dentry *); - int (*show_path)(struct seq_file *, struct dentry *); - int (*show_stats)(struct seq_file *, struct dentry *); - ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t); - ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t); - struct dquot ** (*get_dquots)(struct inode *); - long int (*nr_cached_objects)(struct super_block *, struct shrink_control *); - long int (*free_cached_objects)(struct super_block *, struct shrink_control *); - int (*remove_bdev)(struct super_block *, struct block_device *); - void (*shutdown)(struct super_block *); -}; - -struct fid; - -struct iomap; - -struct handle_to_path_ctx; - -struct export_operations { - int (*encode_fh)(struct inode *, __u32 *, int *, struct inode *); - struct dentry * (*fh_to_dentry)(struct super_block *, struct fid *, int, int); - struct dentry * (*fh_to_parent)(struct super_block *, struct fid *, int, int); - int (*get_name)(struct dentry *, char *, struct dentry *); - struct dentry * (*get_parent)(struct dentry *); - int (*commit_metadata)(struct inode *); - int (*get_uuid)(struct super_block *, u8 *, u32 *, u64 *); - int (*map_blocks)(struct inode *, loff_t, u64, struct iomap *, bool, u32 *); - int (*commit_blocks)(struct inode *, struct iomap *, int, struct iattr *); - int (*permission)(struct handle_to_path_ctx *, unsigned int); - struct file * (*open)(struct path *, unsigned int); - long unsigned int flags; -}; - -struct xattr_handler { - const char *name; - const char *prefix; - int flags; - bool (*list)(struct dentry *); - int (*get)(const struct xattr_handler *, struct dentry *, struct inode *, const char *, void *, size_t); - int (*set)(const struct xattr_handler *, struct mnt_idmap *, struct dentry *, struct inode *, const char *, const void *, size_t, int); -}; - -union fscrypt_policy; - -struct fscrypt_operations { - unsigned int needs_bounce_pages: 1; - unsigned int has_32bit_inodes: 1; - unsigned int supports_subblock_data_units: 1; - const char *legacy_key_prefix; - int (*get_context)(struct inode *, void *, size_t); - int (*set_context)(struct inode *, const void *, size_t, void *); - const union fscrypt_policy * (*get_dummy_policy)(struct super_block *); - bool (*empty_dir)(struct inode *); - bool (*has_stable_inodes)(struct super_block *); - struct block_device ** (*get_devices)(struct super_block *, unsigned int *); -}; - -struct fsverity_operations { - int (*begin_enable_verity)(struct file *); - int (*end_enable_verity)(struct file *, const void *, size_t, u64); - int (*get_verity_descriptor)(struct inode *, void *, size_t); - struct page * (*read_merkle_tree_page)(struct inode *, long unsigned int, long unsigned int); - int (*write_merkle_tree_block)(struct inode *, const void *, u64, unsigned int); -}; - -struct disk_stats; - -struct blk_holder_ops; - -struct partition_meta_info; - -struct block_device { - sector_t bd_start_sect; - sector_t bd_nr_sectors; - struct gendisk *bd_disk; - struct request_queue *bd_queue; - struct disk_stats *bd_stats; - long unsigned int bd_stamp; - atomic_t __bd_flags; - dev_t bd_dev; - struct address_space *bd_mapping; - atomic_t bd_openers; - spinlock_t bd_size_lock; - void *bd_claiming; - void *bd_holder; - const struct blk_holder_ops *bd_holder_ops; - struct mutex bd_holder_lock; - int bd_holders; - struct kobject *bd_holder_dir; - atomic_t bd_fsfreeze_count; - struct mutex bd_fsfreeze_mutex; - struct partition_meta_info *bd_meta_info; - int bd_writers; - void *bd_security; - struct device bd_device; -}; - -struct backing_dev_info { - u64 id; - struct rb_node rb_node; - struct list_head bdi_list; - long unsigned int ra_pages; - long unsigned int io_pages; - struct kref refcnt; - unsigned int capabilities; - unsigned int min_ratio; - unsigned int max_ratio; - unsigned int max_prop_frac; - atomic_long_t tot_write_bandwidth; - long unsigned int last_bdp_sleep; - struct bdi_writeback wb; - struct list_head wb_list; - struct xarray cgwb_tree; - struct mutex cgwb_release_mutex; - struct rw_semaphore wb_switch_rwsem; - wait_queue_head_t wb_waitq; - struct device *dev; - char dev_name[64]; - struct device *owner; - struct timer_list laptop_mode_wb_timer; - struct dentry *debug_dir; -}; - -typedef bool (*filldir_t)(struct dir_context *, const char *, int, loff_t, u64, unsigned int); - -struct dir_context { - filldir_t actor; - loff_t pos; - int count; - unsigned int dt_flags_mask; -}; - -struct io_comp_batch { - struct rq_list req_list; - bool need_ts; - void (*complete)(struct io_comp_batch *); -}; - -struct offset_ctx { - struct maple_tree mt; - long unsigned int next_offset; -}; - -struct p_log; - -struct fs_parameter; - -struct fs_parse_result; - -typedef int fs_param_type(struct p_log *, const struct fs_parameter_spec *, struct fs_parameter *, struct fs_parse_result *); - -struct fs_parameter_spec { - const char *name; - fs_param_type *type; - u8 opt; - short unsigned int flags; - const void *data; -}; - -typedef __u32 blk_opf_t; - -typedef u8 blk_status_t; - -struct bvec_iter { - sector_t bi_sector; - unsigned int bi_size; - unsigned int bi_idx; - unsigned int bi_bvec_done; -} __attribute__((packed)); - -typedef unsigned int blk_qc_t; - -typedef void bio_end_io_t(struct bio *); - -struct bio_crypt_ctx; - -struct bio_integrity_payload; - -struct bio { - struct bio *bi_next; - struct block_device *bi_bdev; - blk_opf_t bi_opf; - short unsigned int bi_flags; - short unsigned int bi_ioprio; - enum rw_hint bi_write_hint; - u8 bi_write_stream; - blk_status_t bi_status; - atomic_t __bi_remaining; - struct bvec_iter bi_iter; - union { - blk_qc_t bi_cookie; - unsigned int __bi_nr_segments; - }; - bio_end_io_t *bi_end_io; - void *bi_private; - struct blkcg_gq *bi_blkg; - u64 issue_time_ns; - u64 bi_iocost_cost; - struct bio_crypt_ctx *bi_crypt_context; - struct bio_integrity_payload *bi_integrity; - short unsigned int bi_vcnt; - short unsigned int bi_max_vecs; - atomic_t __bi_cnt; - struct bio_vec *bi_io_vec; - struct bio_set *bi_pool; - struct bio_vec bi_inline_vecs[0]; -}; - -typedef __u64 Elf64_Addr; - -typedef __u16 Elf64_Half; - -typedef __u64 Elf64_Off; - -typedef __u32 Elf64_Word; - -typedef __u64 Elf64_Xword; - -struct elf64_sym { - Elf64_Word st_name; - unsigned char st_info; - unsigned char st_other; - Elf64_Half st_shndx; - Elf64_Addr st_value; - Elf64_Xword st_size; -}; - -struct elf64_hdr { - unsigned char e_ident[16]; - Elf64_Half e_type; - Elf64_Half e_machine; - Elf64_Word e_version; - Elf64_Addr e_entry; - Elf64_Off e_phoff; - Elf64_Off e_shoff; - Elf64_Word e_flags; - Elf64_Half e_ehsize; - Elf64_Half e_phentsize; - Elf64_Half e_phnum; - Elf64_Half e_shentsize; - Elf64_Half e_shnum; - Elf64_Half e_shstrndx; -}; - -typedef struct elf64_hdr Elf64_Ehdr; - -struct elf64_shdr { - Elf64_Word sh_name; - Elf64_Word sh_type; - Elf64_Xword sh_flags; - Elf64_Addr sh_addr; - Elf64_Off sh_offset; - Elf64_Xword sh_size; - Elf64_Word sh_link; - Elf64_Word sh_info; - Elf64_Xword sh_addralign; - Elf64_Xword sh_entsize; -}; - -typedef struct elf64_shdr Elf64_Shdr; - -struct kparam_string; - -struct kparam_array; - -struct kernel_param { - const char *name; - struct module *mod; - const struct kernel_param_ops *ops; - const u16 perm; - s8 level; - u8 flags; - union { - void *arg; - const struct kparam_string *str; - const struct kparam_array *arr; - }; -}; - -struct kparam_string { - unsigned int maxlen; - char *string; -}; - -struct kparam_array { - unsigned int max; - unsigned int elemsize; - unsigned int *num; - const struct kernel_param_ops *ops; - void *elem; -}; - -struct error_injection_entry { - long unsigned int addr; - int etype; -}; - -struct module_attribute { - struct attribute attr; - ssize_t (*show)(const struct module_attribute *, struct module_kobject *, char *); - ssize_t (*store)(const struct module_attribute *, struct module_kobject *, const char *, size_t); - void (*setup)(struct module *, const char *); - int (*test)(struct module *); - void (*free)(struct module *); -}; - -struct klp_modinfo { - Elf64_Ehdr hdr; - Elf64_Shdr *sechdrs; - char *secstrings; - unsigned int symndx; -}; - -struct kernel_symbol { - int value_offset; - int name_offset; - int namespace_offset; -}; - -struct trace_event_functions; - -struct trace_event { - struct hlist_node node; - int type; - struct trace_event_functions *funcs; -}; - -struct trace_event_class; - -struct trace_event_call { - struct list_head list; - struct trace_event_class *class; - union { - const char *name; - struct tracepoint *tp; - }; - struct trace_event event; - char *print_fmt; - union { - void *module; - atomic_t refcnt; - }; - void *data; - int flags; - int perf_refcount; - struct hlist_head *perf_events; - struct bpf_prog_array *prog_array; - int (*perf_perm)(struct trace_event_call *, struct perf_event *); -}; - -struct trace_eval_map { - const char *system; - const char *eval_string; - long unsigned int eval_value; -}; - -struct of_device_id { - char name[32]; - char type[32]; - char compatible[128]; - const void *data; -}; - -typedef long unsigned int kernel_ulong_t; - -struct acpi_device_id { - __u8 id[16]; - kernel_ulong_t driver_data; - __u32 cls; - __u32 cls_msk; -}; - -struct device_dma_parameters { - unsigned int max_segment_size; - unsigned int min_align_mask; - long unsigned int segment_boundary_mask; -}; - -enum device_physical_location_panel { - DEVICE_PANEL_TOP = 0, - DEVICE_PANEL_BOTTOM = 1, - DEVICE_PANEL_LEFT = 2, - DEVICE_PANEL_RIGHT = 3, - DEVICE_PANEL_FRONT = 4, - DEVICE_PANEL_BACK = 5, - DEVICE_PANEL_UNKNOWN = 6, -}; - -enum device_physical_location_vertical_position { - DEVICE_VERT_POS_UPPER = 0, - DEVICE_VERT_POS_CENTER = 1, - DEVICE_VERT_POS_LOWER = 2, -}; - -enum device_physical_location_horizontal_position { - DEVICE_HORI_POS_LEFT = 0, - DEVICE_HORI_POS_CENTER = 1, - DEVICE_HORI_POS_RIGHT = 2, -}; - -struct device_physical_location { - enum device_physical_location_panel panel; - enum device_physical_location_vertical_position vertical_position; - enum device_physical_location_horizontal_position horizontal_position; - bool dock; - bool lid; -}; - -typedef u64 dma_addr_t; - -enum dma_data_direction { - DMA_BIDIRECTIONAL = 0, - DMA_TO_DEVICE = 1, - DMA_FROM_DEVICE = 2, - DMA_NONE = 3, -}; - -struct sg_table; - -struct scatterlist; - -struct dma_map_ops { - void * (*alloc)(struct device *, size_t, dma_addr_t *, gfp_t, long unsigned int); - void (*free)(struct device *, size_t, void *, dma_addr_t, long unsigned int); - struct page * (*alloc_pages_op)(struct device *, size_t, dma_addr_t *, enum dma_data_direction, gfp_t); - void (*free_pages)(struct device *, size_t, struct page *, dma_addr_t, enum dma_data_direction); - int (*mmap)(struct device *, struct vm_area_struct *, void *, dma_addr_t, size_t, long unsigned int); - int (*get_sgtable)(struct device *, struct sg_table *, void *, dma_addr_t, size_t, long unsigned int); - dma_addr_t (*map_page)(struct device *, struct page *, long unsigned int, size_t, enum dma_data_direction, long unsigned int); - void (*unmap_page)(struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); - int (*map_sg)(struct device *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); - void (*unmap_sg)(struct device *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); - dma_addr_t (*map_resource)(struct device *, phys_addr_t, size_t, enum dma_data_direction, long unsigned int); - void (*unmap_resource)(struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); - void (*sync_single_for_cpu)(struct device *, dma_addr_t, size_t, enum dma_data_direction); - void (*sync_single_for_device)(struct device *, dma_addr_t, size_t, enum dma_data_direction); - void (*sync_sg_for_cpu)(struct device *, struct scatterlist *, int, enum dma_data_direction); - void (*sync_sg_for_device)(struct device *, struct scatterlist *, int, enum dma_data_direction); - void (*cache_sync)(struct device *, void *, size_t, enum dma_data_direction); - int (*dma_supported)(struct device *, u64); - u64 (*get_required_mask)(struct device *); - size_t (*max_mapping_size)(struct device *); - size_t (*opt_mapping_size)(void); - long unsigned int (*get_merge_boundary)(struct device *); -}; - -struct bus_dma_region { - phys_addr_t cpu_start; - dma_addr_t dma_start; - u64 size; -}; - -struct fwnode_operations; - -struct fwnode_handle { - struct fwnode_handle *secondary; - const struct fwnode_operations *ops; - struct device *dev; - struct list_head suppliers; - struct list_head consumers; - u8 flags; -}; - -typedef u64 async_cookie_t; - -typedef void (*async_func_t)(void *, async_cookie_t); - -struct async_domain { - struct list_head pending; - unsigned int registered: 1; -}; - -struct dev_pagemap_ops { - void (*page_free)(struct page *); - vm_fault_t (*migrate_to_ram)(struct vm_fault *); - int (*memory_failure)(struct dev_pagemap *, long unsigned int, long unsigned int, int); -}; - -struct seq_buf { - char *buffer; - size_t size; - size_t len; -}; - -struct trace_seq { - char buffer[8156]; - struct seq_buf seq; - size_t readpos; - int full; -}; - -enum perf_sw_ids { - PERF_COUNT_SW_CPU_CLOCK = 0, - PERF_COUNT_SW_TASK_CLOCK = 1, - PERF_COUNT_SW_PAGE_FAULTS = 2, - PERF_COUNT_SW_CONTEXT_SWITCHES = 3, - PERF_COUNT_SW_CPU_MIGRATIONS = 4, - PERF_COUNT_SW_PAGE_FAULTS_MIN = 5, - PERF_COUNT_SW_PAGE_FAULTS_MAJ = 6, - PERF_COUNT_SW_ALIGNMENT_FAULTS = 7, - PERF_COUNT_SW_EMULATION_FAULTS = 8, - PERF_COUNT_SW_DUMMY = 9, - PERF_COUNT_SW_BPF_OUTPUT = 10, - PERF_COUNT_SW_CGROUP_SWITCHES = 11, - PERF_COUNT_SW_MAX = 12, -}; - -union perf_mem_data_src { - __u64 val; - struct { - __u64 mem_op: 5; - __u64 mem_lvl: 14; - __u64 mem_snoop: 5; - __u64 mem_lock: 2; - __u64 mem_dtlb: 7; - __u64 mem_lvl_num: 4; - __u64 mem_remote: 1; - __u64 mem_snoopx: 2; - __u64 mem_blk: 3; - __u64 mem_hops: 3; - __u64 mem_rsvd: 18; - }; -}; - -struct perf_branch_entry { - __u64 from; - __u64 to; - __u64 mispred: 1; - __u64 predicted: 1; - __u64 in_tx: 1; - __u64 abort: 1; - __u64 cycles: 16; - __u64 type: 4; - __u64 spec: 2; - __u64 new_type: 4; - __u64 priv: 3; - __u64 reserved: 31; -}; - -union perf_sample_weight { - __u64 full; - struct { - __u32 var1_dw; - __u16 var2_w; - __u16 var3_w; - }; -}; - -struct cgroup_namespace { - struct ns_common ns; - struct user_namespace *user_ns; - struct ucounts *ucounts; - struct css_set *root_cset; -}; - -struct perf_cpu_pmu_context; - -struct perf_output_handle; - -struct pmu { - struct list_head entry; - spinlock_t events_lock; - struct list_head events; - struct module *module; - struct device *dev; - struct device *parent; - const struct attribute_group **attr_groups; - const struct attribute_group **attr_update; - const char *name; - int type; - int capabilities; - unsigned int scope; - struct perf_cpu_pmu_context **cpu_pmu_context; - atomic_t exclusive_cnt; - int task_ctx_nr; - int hrtimer_interval_ms; - unsigned int nr_addr_filters; - void (*pmu_enable)(struct pmu *); - void (*pmu_disable)(struct pmu *); - int (*event_init)(struct perf_event *); - void (*event_mapped)(struct perf_event *, struct mm_struct *); - void (*event_unmapped)(struct perf_event *, struct mm_struct *); - int (*add)(struct perf_event *, int); - void (*del)(struct perf_event *, int); - void (*start)(struct perf_event *, int); - void (*stop)(struct perf_event *, int); - void (*read)(struct perf_event *); - void (*start_txn)(struct pmu *, unsigned int); - int (*commit_txn)(struct pmu *); - void (*cancel_txn)(struct pmu *); - int (*event_idx)(struct perf_event *); - void (*sched_task)(struct perf_event_pmu_context *, struct task_struct *, bool); - struct kmem_cache *task_ctx_cache; - void * (*setup_aux)(struct perf_event *, void **, int, bool); - void (*free_aux)(void *); - long int (*snapshot_aux)(struct perf_event *, struct perf_output_handle *, long unsigned int); - int (*addr_filters_validate)(struct list_head *); - void (*addr_filters_sync)(struct perf_event *); - int (*aux_output_match)(struct perf_event *); - bool (*filter)(struct pmu *, int); - int (*check_period)(struct perf_event *, u64); -}; - -struct ftrace_regs {}; - -struct perf_regs { - __u64 abi; - struct pt_regs *regs; -}; - -struct u64_stats_sync {}; - -struct bpf_cgroup_storage; - -struct bpf_prog_array_item { - struct bpf_prog *prog; - union { - struct bpf_cgroup_storage *cgroup_storage[2]; - u64 bpf_cookie; - }; -}; - -struct bpf_prog_array { - struct callback_head rcu; - struct bpf_prog_array_item items[0]; -}; - -struct psi_group_cpu { - unsigned int tasks[4]; - u32 state_mask; - u32 times[7]; - u64 state_start; - long: 64; - u32 times_prev[14]; - long: 64; -}; - -struct psi_group { - struct psi_group *parent; - bool enabled; - struct mutex avgs_lock; - struct psi_group_cpu *pcpu; - u64 avg_total[6]; - u64 avg_last_update; - u64 avg_next_update; - struct delayed_work avgs_work; - struct list_head avg_triggers; - u32 avg_nr_triggers[6]; - u64 total[12]; - long unsigned int avg[18]; - struct task_struct *rtpoll_task; - struct timer_list rtpoll_timer; - wait_queue_head_t rtpoll_wait; - atomic_t rtpoll_wakeup; - atomic_t rtpoll_scheduled; - struct mutex rtpoll_trigger_lock; - struct list_head rtpoll_triggers; - u32 rtpoll_nr_triggers[6]; - u32 rtpoll_states; - u64 rtpoll_min_period; - u64 rtpoll_total[6]; - u64 rtpoll_next_update; - u64 rtpoll_until; -}; - -struct cgroup_taskset; - -struct cftype; - -struct cgroup_subsys { - struct cgroup_subsys_state * (*css_alloc)(struct cgroup_subsys_state *); - int (*css_online)(struct cgroup_subsys_state *); - void (*css_offline)(struct cgroup_subsys_state *); - void (*css_released)(struct cgroup_subsys_state *); - void (*css_free)(struct cgroup_subsys_state *); - void (*css_reset)(struct cgroup_subsys_state *); - void (*css_killed)(struct cgroup_subsys_state *); - void (*css_rstat_flush)(struct cgroup_subsys_state *, int); - int (*css_extra_stat_show)(struct seq_file *, struct cgroup_subsys_state *); - int (*css_local_stat_show)(struct seq_file *, struct cgroup_subsys_state *); - int (*can_attach)(struct cgroup_taskset *); - void (*cancel_attach)(struct cgroup_taskset *); - void (*attach)(struct cgroup_taskset *); - void (*post_attach)(void); - int (*can_fork)(struct task_struct *, struct css_set *); - void (*cancel_fork)(struct task_struct *, struct css_set *); - void (*fork)(struct task_struct *); - void (*exit)(struct task_struct *); - void (*release)(struct task_struct *); - void (*bind)(struct cgroup_subsys_state *); - bool early_init: 1; - bool implicit_on_dfl: 1; - bool threaded: 1; - int id; - const char *name; - const char *legacy_name; - struct cgroup_root *root; - struct idr css_idr; - struct list_head cfts; - struct cftype *dfl_cftypes; - struct cftype *legacy_cftypes; - unsigned int depends_on; - spinlock_t rstat_ss_lock; - struct llist_head *lhead; -}; - -struct css_rstat_cpu { - struct cgroup_subsys_state *updated_children; - struct cgroup_subsys_state *updated_next; - struct llist_node lnode; - struct cgroup_subsys_state *owner; -}; - -struct cgroup_rstat_base_cpu { - struct u64_stats_sync bsync; - struct cgroup_base_stat bstat; - struct cgroup_base_stat last_bstat; - struct cgroup_base_stat subtree_bstat; - struct cgroup_base_stat last_subtree_bstat; -}; - -struct cgroup_root { - struct kernfs_root *kf_root; - unsigned int subsys_mask; - int hierarchy_id; - struct list_head root_list; - struct callback_head rcu; - long: 64; - long: 64; - struct cgroup cgrp; - struct cgroup *cgrp_ancestor_storage; - atomic_t nr_cgrps; - unsigned int flags; - char release_agent_path[4096]; - char name[64]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct cftype { - char name[64]; - long unsigned int private; - size_t max_write_len; - unsigned int flags; - unsigned int file_offset; - struct cgroup_subsys *ss; - struct list_head node; - struct kernfs_ops *kf_ops; - int (*open)(struct kernfs_open_file *); - void (*release)(struct kernfs_open_file *); - u64 (*read_u64)(struct cgroup_subsys_state *, struct cftype *); - s64 (*read_s64)(struct cgroup_subsys_state *, struct cftype *); - int (*seq_show)(struct seq_file *, void *); - void * (*seq_start)(struct seq_file *, loff_t *); - void * (*seq_next)(struct seq_file *, void *, loff_t *); - void (*seq_stop)(struct seq_file *, void *); - int (*write_u64)(struct cgroup_subsys_state *, struct cftype *, u64); - int (*write_s64)(struct cgroup_subsys_state *, struct cftype *, s64); - ssize_t (*write)(struct kernfs_open_file *, char *, size_t, loff_t); - __poll_t (*poll)(struct kernfs_open_file *, struct poll_table_struct *); - struct lock_class_key lockdep_key; -}; - -struct bpf_insn { - __u8 code; - __u8 dst_reg: 4; - __u8 src_reg: 4; - __s16 off; - __s32 imm; -}; - -enum bpf_cgroup_iter_order { - BPF_CGROUP_ITER_ORDER_UNSPEC = 0, - BPF_CGROUP_ITER_SELF_ONLY = 1, - BPF_CGROUP_ITER_DESCENDANTS_PRE = 2, - BPF_CGROUP_ITER_DESCENDANTS_POST = 3, - BPF_CGROUP_ITER_ANCESTORS_UP = 4, -}; - -enum bpf_map_type { - BPF_MAP_TYPE_UNSPEC = 0, - BPF_MAP_TYPE_HASH = 1, - BPF_MAP_TYPE_ARRAY = 2, - BPF_MAP_TYPE_PROG_ARRAY = 3, - BPF_MAP_TYPE_PERF_EVENT_ARRAY = 4, - BPF_MAP_TYPE_PERCPU_HASH = 5, - BPF_MAP_TYPE_PERCPU_ARRAY = 6, - BPF_MAP_TYPE_STACK_TRACE = 7, - BPF_MAP_TYPE_CGROUP_ARRAY = 8, - BPF_MAP_TYPE_LRU_HASH = 9, - BPF_MAP_TYPE_LRU_PERCPU_HASH = 10, - BPF_MAP_TYPE_LPM_TRIE = 11, - BPF_MAP_TYPE_ARRAY_OF_MAPS = 12, - BPF_MAP_TYPE_HASH_OF_MAPS = 13, - BPF_MAP_TYPE_DEVMAP = 14, - BPF_MAP_TYPE_SOCKMAP = 15, - BPF_MAP_TYPE_CPUMAP = 16, - BPF_MAP_TYPE_XSKMAP = 17, - BPF_MAP_TYPE_SOCKHASH = 18, - BPF_MAP_TYPE_CGROUP_STORAGE_DEPRECATED = 19, - BPF_MAP_TYPE_CGROUP_STORAGE = 19, - BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 20, - BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE_DEPRECATED = 21, - BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 21, - BPF_MAP_TYPE_QUEUE = 22, - BPF_MAP_TYPE_STACK = 23, - BPF_MAP_TYPE_SK_STORAGE = 24, - BPF_MAP_TYPE_DEVMAP_HASH = 25, - BPF_MAP_TYPE_STRUCT_OPS = 26, - BPF_MAP_TYPE_RINGBUF = 27, - BPF_MAP_TYPE_INODE_STORAGE = 28, - BPF_MAP_TYPE_TASK_STORAGE = 29, - BPF_MAP_TYPE_BLOOM_FILTER = 30, - BPF_MAP_TYPE_USER_RINGBUF = 31, - BPF_MAP_TYPE_CGRP_STORAGE = 32, - BPF_MAP_TYPE_ARENA = 33, - __MAX_BPF_MAP_TYPE = 34, -}; - -enum bpf_prog_type { - BPF_PROG_TYPE_UNSPEC = 0, - BPF_PROG_TYPE_SOCKET_FILTER = 1, - BPF_PROG_TYPE_KPROBE = 2, - BPF_PROG_TYPE_SCHED_CLS = 3, - BPF_PROG_TYPE_SCHED_ACT = 4, - BPF_PROG_TYPE_TRACEPOINT = 5, - BPF_PROG_TYPE_XDP = 6, - BPF_PROG_TYPE_PERF_EVENT = 7, - BPF_PROG_TYPE_CGROUP_SKB = 8, - BPF_PROG_TYPE_CGROUP_SOCK = 9, - BPF_PROG_TYPE_LWT_IN = 10, - BPF_PROG_TYPE_LWT_OUT = 11, - BPF_PROG_TYPE_LWT_XMIT = 12, - BPF_PROG_TYPE_SOCK_OPS = 13, - BPF_PROG_TYPE_SK_SKB = 14, - BPF_PROG_TYPE_CGROUP_DEVICE = 15, - BPF_PROG_TYPE_SK_MSG = 16, - BPF_PROG_TYPE_RAW_TRACEPOINT = 17, - BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 18, - BPF_PROG_TYPE_LWT_SEG6LOCAL = 19, - BPF_PROG_TYPE_LIRC_MODE2 = 20, - BPF_PROG_TYPE_SK_REUSEPORT = 21, - BPF_PROG_TYPE_FLOW_DISSECTOR = 22, - BPF_PROG_TYPE_CGROUP_SYSCTL = 23, - BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE = 24, - BPF_PROG_TYPE_CGROUP_SOCKOPT = 25, - BPF_PROG_TYPE_TRACING = 26, - BPF_PROG_TYPE_STRUCT_OPS = 27, - BPF_PROG_TYPE_EXT = 28, - BPF_PROG_TYPE_LSM = 29, - BPF_PROG_TYPE_SK_LOOKUP = 30, - BPF_PROG_TYPE_SYSCALL = 31, - BPF_PROG_TYPE_NETFILTER = 32, - __MAX_BPF_PROG_TYPE = 33, -}; - -enum bpf_attach_type { - BPF_CGROUP_INET_INGRESS = 0, - BPF_CGROUP_INET_EGRESS = 1, - BPF_CGROUP_INET_SOCK_CREATE = 2, - BPF_CGROUP_SOCK_OPS = 3, - BPF_SK_SKB_STREAM_PARSER = 4, - BPF_SK_SKB_STREAM_VERDICT = 5, - BPF_CGROUP_DEVICE = 6, - BPF_SK_MSG_VERDICT = 7, - BPF_CGROUP_INET4_BIND = 8, - BPF_CGROUP_INET6_BIND = 9, - BPF_CGROUP_INET4_CONNECT = 10, - BPF_CGROUP_INET6_CONNECT = 11, - BPF_CGROUP_INET4_POST_BIND = 12, - BPF_CGROUP_INET6_POST_BIND = 13, - BPF_CGROUP_UDP4_SENDMSG = 14, - BPF_CGROUP_UDP6_SENDMSG = 15, - BPF_LIRC_MODE2 = 16, - BPF_FLOW_DISSECTOR = 17, - BPF_CGROUP_SYSCTL = 18, - BPF_CGROUP_UDP4_RECVMSG = 19, - BPF_CGROUP_UDP6_RECVMSG = 20, - BPF_CGROUP_GETSOCKOPT = 21, - BPF_CGROUP_SETSOCKOPT = 22, - BPF_TRACE_RAW_TP = 23, - BPF_TRACE_FENTRY = 24, - BPF_TRACE_FEXIT = 25, - BPF_MODIFY_RETURN = 26, - BPF_LSM_MAC = 27, - BPF_TRACE_ITER = 28, - BPF_CGROUP_INET4_GETPEERNAME = 29, - BPF_CGROUP_INET6_GETPEERNAME = 30, - BPF_CGROUP_INET4_GETSOCKNAME = 31, - BPF_CGROUP_INET6_GETSOCKNAME = 32, - BPF_XDP_DEVMAP = 33, - BPF_CGROUP_INET_SOCK_RELEASE = 34, - BPF_XDP_CPUMAP = 35, - BPF_SK_LOOKUP = 36, - BPF_XDP = 37, - BPF_SK_SKB_VERDICT = 38, - BPF_SK_REUSEPORT_SELECT = 39, - BPF_SK_REUSEPORT_SELECT_OR_MIGRATE = 40, - BPF_PERF_EVENT = 41, - BPF_TRACE_KPROBE_MULTI = 42, - BPF_LSM_CGROUP = 43, - BPF_STRUCT_OPS = 44, - BPF_NETFILTER = 45, - BPF_TCX_INGRESS = 46, - BPF_TCX_EGRESS = 47, - BPF_TRACE_UPROBE_MULTI = 48, - BPF_CGROUP_UNIX_CONNECT = 49, - BPF_CGROUP_UNIX_SENDMSG = 50, - BPF_CGROUP_UNIX_RECVMSG = 51, - BPF_CGROUP_UNIX_GETPEERNAME = 52, - BPF_CGROUP_UNIX_GETSOCKNAME = 53, - BPF_NETKIT_PRIMARY = 54, - BPF_NETKIT_PEER = 55, - BPF_TRACE_KPROBE_SESSION = 56, - BPF_TRACE_UPROBE_SESSION = 57, - __MAX_BPF_ATTACH_TYPE = 58, -}; - -enum bpf_link_type { - BPF_LINK_TYPE_UNSPEC = 0, - BPF_LINK_TYPE_RAW_TRACEPOINT = 1, - BPF_LINK_TYPE_TRACING = 2, - BPF_LINK_TYPE_CGROUP = 3, - BPF_LINK_TYPE_ITER = 4, - BPF_LINK_TYPE_NETNS = 5, - BPF_LINK_TYPE_XDP = 6, - BPF_LINK_TYPE_PERF_EVENT = 7, - BPF_LINK_TYPE_KPROBE_MULTI = 8, - BPF_LINK_TYPE_STRUCT_OPS = 9, - BPF_LINK_TYPE_NETFILTER = 10, - BPF_LINK_TYPE_TCX = 11, - BPF_LINK_TYPE_UPROBE_MULTI = 12, - BPF_LINK_TYPE_NETKIT = 13, - BPF_LINK_TYPE_SOCKMAP = 14, - __MAX_BPF_LINK_TYPE = 15, -}; - -union bpf_attr { - struct { - __u32 map_type; - __u32 key_size; - __u32 value_size; - __u32 max_entries; - __u32 map_flags; - __u32 inner_map_fd; - __u32 numa_node; - char map_name[16]; - __u32 map_ifindex; - __u32 btf_fd; - __u32 btf_key_type_id; - __u32 btf_value_type_id; - __u32 btf_vmlinux_value_type_id; - __u64 map_extra; - __s32 value_type_btf_obj_fd; - __s32 map_token_fd; - }; - struct { - __u32 map_fd; - __u64 key; - union { - __u64 value; - __u64 next_key; - }; - __u64 flags; - }; - struct { - __u64 in_batch; - __u64 out_batch; - __u64 keys; - __u64 values; - __u32 count; - __u32 map_fd; - __u64 elem_flags; - __u64 flags; - } batch; - struct { - __u32 prog_type; - __u32 insn_cnt; - __u64 insns; - __u64 license; - __u32 log_level; - __u32 log_size; - __u64 log_buf; - __u32 kern_version; - __u32 prog_flags; - char prog_name[16]; - __u32 prog_ifindex; - __u32 expected_attach_type; - __u32 prog_btf_fd; - __u32 func_info_rec_size; - __u64 func_info; - __u32 func_info_cnt; - __u32 line_info_rec_size; - __u64 line_info; - __u32 line_info_cnt; - __u32 attach_btf_id; - union { - __u32 attach_prog_fd; - __u32 attach_btf_obj_fd; - }; - __u32 core_relo_cnt; - __u64 fd_array; - __u64 core_relos; - __u32 core_relo_rec_size; - __u32 log_true_size; - __s32 prog_token_fd; - __u32 fd_array_cnt; - }; - struct { - __u64 pathname; - __u32 bpf_fd; - __u32 file_flags; - __s32 path_fd; - }; - struct { - union { - __u32 target_fd; - __u32 target_ifindex; - }; - __u32 attach_bpf_fd; - __u32 attach_type; - __u32 attach_flags; - __u32 replace_bpf_fd; - union { - __u32 relative_fd; - __u32 relative_id; - }; - __u64 expected_revision; - }; - struct { - __u32 prog_fd; - __u32 retval; - __u32 data_size_in; - __u32 data_size_out; - __u64 data_in; - __u64 data_out; - __u32 repeat; - __u32 duration; - __u32 ctx_size_in; - __u32 ctx_size_out; - __u64 ctx_in; - __u64 ctx_out; - __u32 flags; - __u32 cpu; - __u32 batch_size; - } test; - struct { - union { - __u32 start_id; - __u32 prog_id; - __u32 map_id; - __u32 btf_id; - __u32 link_id; - }; - __u32 next_id; - __u32 open_flags; - __s32 fd_by_id_token_fd; - }; - struct { - __u32 bpf_fd; - __u32 info_len; - __u64 info; - } info; - struct { - union { - __u32 target_fd; - __u32 target_ifindex; - }; - __u32 attach_type; - __u32 query_flags; - __u32 attach_flags; - __u64 prog_ids; - union { - __u32 prog_cnt; - __u32 count; - }; - __u64 prog_attach_flags; - __u64 link_ids; - __u64 link_attach_flags; - __u64 revision; - } query; - struct { - __u64 name; - __u32 prog_fd; - __u64 cookie; - } raw_tracepoint; - struct { - __u64 btf; - __u64 btf_log_buf; - __u32 btf_size; - __u32 btf_log_size; - __u32 btf_log_level; - __u32 btf_log_true_size; - __u32 btf_flags; - __s32 btf_token_fd; - }; - struct { - __u32 pid; - __u32 fd; - __u32 flags; - __u32 buf_len; - __u64 buf; - __u32 prog_id; - __u32 fd_type; - __u64 probe_offset; - __u64 probe_addr; - } task_fd_query; - struct { - union { - __u32 prog_fd; - __u32 map_fd; - }; - union { - __u32 target_fd; - __u32 target_ifindex; - }; - __u32 attach_type; - __u32 flags; - union { - __u32 target_btf_id; - struct { - __u64 iter_info; - __u32 iter_info_len; - }; - struct { - __u64 bpf_cookie; - } perf_event; - struct { - __u32 flags; - __u32 cnt; - __u64 syms; - __u64 addrs; - __u64 cookies; - } kprobe_multi; - struct { - __u32 target_btf_id; - __u64 cookie; - } tracing; - struct { - __u32 pf; - __u32 hooknum; - __s32 priority; - __u32 flags; - } netfilter; - struct { - union { - __u32 relative_fd; - __u32 relative_id; - }; - __u64 expected_revision; - } tcx; - struct { - __u64 path; - __u64 offsets; - __u64 ref_ctr_offsets; - __u64 cookies; - __u32 cnt; - __u32 flags; - __u32 pid; - } uprobe_multi; - struct { - union { - __u32 relative_fd; - __u32 relative_id; - }; - __u64 expected_revision; - } netkit; - struct { - union { - __u32 relative_fd; - __u32 relative_id; - }; - __u64 expected_revision; - } cgroup; - }; - } link_create; - struct { - __u32 link_fd; - union { - __u32 new_prog_fd; - __u32 new_map_fd; - }; - __u32 flags; - union { - __u32 old_prog_fd; - __u32 old_map_fd; - }; - } link_update; - struct { - __u32 link_fd; - } link_detach; - struct { - __u32 type; - } enable_stats; - struct { - __u32 link_fd; - __u32 flags; - } iter_create; - struct { - __u32 prog_fd; - __u32 map_fd; - __u32 flags; - } prog_bind_map; - struct { - __u32 flags; - __u32 bpffs_fd; - } token_create; - struct { - __u64 stream_buf; - __u32 stream_buf_len; - __u32 stream_id; - __u32 prog_fd; - } prog_stream_read; -}; - -enum bpf_func_id { - BPF_FUNC_unspec = 0, - BPF_FUNC_map_lookup_elem = 1, - BPF_FUNC_map_update_elem = 2, - BPF_FUNC_map_delete_elem = 3, - BPF_FUNC_probe_read = 4, - BPF_FUNC_ktime_get_ns = 5, - BPF_FUNC_trace_printk = 6, - BPF_FUNC_get_prandom_u32 = 7, - BPF_FUNC_get_smp_processor_id = 8, - BPF_FUNC_skb_store_bytes = 9, - BPF_FUNC_l3_csum_replace = 10, - BPF_FUNC_l4_csum_replace = 11, - BPF_FUNC_tail_call = 12, - BPF_FUNC_clone_redirect = 13, - BPF_FUNC_get_current_pid_tgid = 14, - BPF_FUNC_get_current_uid_gid = 15, - BPF_FUNC_get_current_comm = 16, - BPF_FUNC_get_cgroup_classid = 17, - BPF_FUNC_skb_vlan_push = 18, - BPF_FUNC_skb_vlan_pop = 19, - BPF_FUNC_skb_get_tunnel_key = 20, - BPF_FUNC_skb_set_tunnel_key = 21, - BPF_FUNC_perf_event_read = 22, - BPF_FUNC_redirect = 23, - BPF_FUNC_get_route_realm = 24, - BPF_FUNC_perf_event_output = 25, - BPF_FUNC_skb_load_bytes = 26, - BPF_FUNC_get_stackid = 27, - BPF_FUNC_csum_diff = 28, - BPF_FUNC_skb_get_tunnel_opt = 29, - BPF_FUNC_skb_set_tunnel_opt = 30, - BPF_FUNC_skb_change_proto = 31, - BPF_FUNC_skb_change_type = 32, - BPF_FUNC_skb_under_cgroup = 33, - BPF_FUNC_get_hash_recalc = 34, - BPF_FUNC_get_current_task = 35, - BPF_FUNC_probe_write_user = 36, - BPF_FUNC_current_task_under_cgroup = 37, - BPF_FUNC_skb_change_tail = 38, - BPF_FUNC_skb_pull_data = 39, - BPF_FUNC_csum_update = 40, - BPF_FUNC_set_hash_invalid = 41, - BPF_FUNC_get_numa_node_id = 42, - BPF_FUNC_skb_change_head = 43, - BPF_FUNC_xdp_adjust_head = 44, - BPF_FUNC_probe_read_str = 45, - BPF_FUNC_get_socket_cookie = 46, - BPF_FUNC_get_socket_uid = 47, - BPF_FUNC_set_hash = 48, - BPF_FUNC_setsockopt = 49, - BPF_FUNC_skb_adjust_room = 50, - BPF_FUNC_redirect_map = 51, - BPF_FUNC_sk_redirect_map = 52, - BPF_FUNC_sock_map_update = 53, - BPF_FUNC_xdp_adjust_meta = 54, - BPF_FUNC_perf_event_read_value = 55, - BPF_FUNC_perf_prog_read_value = 56, - BPF_FUNC_getsockopt = 57, - BPF_FUNC_override_return = 58, - BPF_FUNC_sock_ops_cb_flags_set = 59, - BPF_FUNC_msg_redirect_map = 60, - BPF_FUNC_msg_apply_bytes = 61, - BPF_FUNC_msg_cork_bytes = 62, - BPF_FUNC_msg_pull_data = 63, - BPF_FUNC_bind = 64, - BPF_FUNC_xdp_adjust_tail = 65, - BPF_FUNC_skb_get_xfrm_state = 66, - BPF_FUNC_get_stack = 67, - BPF_FUNC_skb_load_bytes_relative = 68, - BPF_FUNC_fib_lookup = 69, - BPF_FUNC_sock_hash_update = 70, - BPF_FUNC_msg_redirect_hash = 71, - BPF_FUNC_sk_redirect_hash = 72, - BPF_FUNC_lwt_push_encap = 73, - BPF_FUNC_lwt_seg6_store_bytes = 74, - BPF_FUNC_lwt_seg6_adjust_srh = 75, - BPF_FUNC_lwt_seg6_action = 76, - BPF_FUNC_rc_repeat = 77, - BPF_FUNC_rc_keydown = 78, - BPF_FUNC_skb_cgroup_id = 79, - BPF_FUNC_get_current_cgroup_id = 80, - BPF_FUNC_get_local_storage = 81, - BPF_FUNC_sk_select_reuseport = 82, - BPF_FUNC_skb_ancestor_cgroup_id = 83, - BPF_FUNC_sk_lookup_tcp = 84, - BPF_FUNC_sk_lookup_udp = 85, - BPF_FUNC_sk_release = 86, - BPF_FUNC_map_push_elem = 87, - BPF_FUNC_map_pop_elem = 88, - BPF_FUNC_map_peek_elem = 89, - BPF_FUNC_msg_push_data = 90, - BPF_FUNC_msg_pop_data = 91, - BPF_FUNC_rc_pointer_rel = 92, - BPF_FUNC_spin_lock = 93, - BPF_FUNC_spin_unlock = 94, - BPF_FUNC_sk_fullsock = 95, - BPF_FUNC_tcp_sock = 96, - BPF_FUNC_skb_ecn_set_ce = 97, - BPF_FUNC_get_listener_sock = 98, - BPF_FUNC_skc_lookup_tcp = 99, - BPF_FUNC_tcp_check_syncookie = 100, - BPF_FUNC_sysctl_get_name = 101, - BPF_FUNC_sysctl_get_current_value = 102, - BPF_FUNC_sysctl_get_new_value = 103, - BPF_FUNC_sysctl_set_new_value = 104, - BPF_FUNC_strtol = 105, - BPF_FUNC_strtoul = 106, - BPF_FUNC_sk_storage_get = 107, - BPF_FUNC_sk_storage_delete = 108, - BPF_FUNC_send_signal = 109, - BPF_FUNC_tcp_gen_syncookie = 110, - BPF_FUNC_skb_output = 111, - BPF_FUNC_probe_read_user = 112, - BPF_FUNC_probe_read_kernel = 113, - BPF_FUNC_probe_read_user_str = 114, - BPF_FUNC_probe_read_kernel_str = 115, - BPF_FUNC_tcp_send_ack = 116, - BPF_FUNC_send_signal_thread = 117, - BPF_FUNC_jiffies64 = 118, - BPF_FUNC_read_branch_records = 119, - BPF_FUNC_get_ns_current_pid_tgid = 120, - BPF_FUNC_xdp_output = 121, - BPF_FUNC_get_netns_cookie = 122, - BPF_FUNC_get_current_ancestor_cgroup_id = 123, - BPF_FUNC_sk_assign = 124, - BPF_FUNC_ktime_get_boot_ns = 125, - BPF_FUNC_seq_printf = 126, - BPF_FUNC_seq_write = 127, - BPF_FUNC_sk_cgroup_id = 128, - BPF_FUNC_sk_ancestor_cgroup_id = 129, - BPF_FUNC_ringbuf_output = 130, - BPF_FUNC_ringbuf_reserve = 131, - BPF_FUNC_ringbuf_submit = 132, - BPF_FUNC_ringbuf_discard = 133, - BPF_FUNC_ringbuf_query = 134, - BPF_FUNC_csum_level = 135, - BPF_FUNC_skc_to_tcp6_sock = 136, - BPF_FUNC_skc_to_tcp_sock = 137, - BPF_FUNC_skc_to_tcp_timewait_sock = 138, - BPF_FUNC_skc_to_tcp_request_sock = 139, - BPF_FUNC_skc_to_udp6_sock = 140, - BPF_FUNC_get_task_stack = 141, - BPF_FUNC_load_hdr_opt = 142, - BPF_FUNC_store_hdr_opt = 143, - BPF_FUNC_reserve_hdr_opt = 144, - BPF_FUNC_inode_storage_get = 145, - BPF_FUNC_inode_storage_delete = 146, - BPF_FUNC_d_path = 147, - BPF_FUNC_copy_from_user = 148, - BPF_FUNC_snprintf_btf = 149, - BPF_FUNC_seq_printf_btf = 150, - BPF_FUNC_skb_cgroup_classid = 151, - BPF_FUNC_redirect_neigh = 152, - BPF_FUNC_per_cpu_ptr = 153, - BPF_FUNC_this_cpu_ptr = 154, - BPF_FUNC_redirect_peer = 155, - BPF_FUNC_task_storage_get = 156, - BPF_FUNC_task_storage_delete = 157, - BPF_FUNC_get_current_task_btf = 158, - BPF_FUNC_bprm_opts_set = 159, - BPF_FUNC_ktime_get_coarse_ns = 160, - BPF_FUNC_ima_inode_hash = 161, - BPF_FUNC_sock_from_file = 162, - BPF_FUNC_check_mtu = 163, - BPF_FUNC_for_each_map_elem = 164, - BPF_FUNC_snprintf = 165, - BPF_FUNC_sys_bpf = 166, - BPF_FUNC_btf_find_by_name_kind = 167, - BPF_FUNC_sys_close = 168, - BPF_FUNC_timer_init = 169, - BPF_FUNC_timer_set_callback = 170, - BPF_FUNC_timer_start = 171, - BPF_FUNC_timer_cancel = 172, - BPF_FUNC_get_func_ip = 173, - BPF_FUNC_get_attach_cookie = 174, - BPF_FUNC_task_pt_regs = 175, - BPF_FUNC_get_branch_snapshot = 176, - BPF_FUNC_trace_vprintk = 177, - BPF_FUNC_skc_to_unix_sock = 178, - BPF_FUNC_kallsyms_lookup_name = 179, - BPF_FUNC_find_vma = 180, - BPF_FUNC_loop = 181, - BPF_FUNC_strncmp = 182, - BPF_FUNC_get_func_arg = 183, - BPF_FUNC_get_func_ret = 184, - BPF_FUNC_get_func_arg_cnt = 185, - BPF_FUNC_get_retval = 186, - BPF_FUNC_set_retval = 187, - BPF_FUNC_xdp_get_buff_len = 188, - BPF_FUNC_xdp_load_bytes = 189, - BPF_FUNC_xdp_store_bytes = 190, - BPF_FUNC_copy_from_user_task = 191, - BPF_FUNC_skb_set_tstamp = 192, - BPF_FUNC_ima_file_hash = 193, - BPF_FUNC_kptr_xchg = 194, - BPF_FUNC_map_lookup_percpu_elem = 195, - BPF_FUNC_skc_to_mptcp_sock = 196, - BPF_FUNC_dynptr_from_mem = 197, - BPF_FUNC_ringbuf_reserve_dynptr = 198, - BPF_FUNC_ringbuf_submit_dynptr = 199, - BPF_FUNC_ringbuf_discard_dynptr = 200, - BPF_FUNC_dynptr_read = 201, - BPF_FUNC_dynptr_write = 202, - BPF_FUNC_dynptr_data = 203, - BPF_FUNC_tcp_raw_gen_syncookie_ipv4 = 204, - BPF_FUNC_tcp_raw_gen_syncookie_ipv6 = 205, - BPF_FUNC_tcp_raw_check_syncookie_ipv4 = 206, - BPF_FUNC_tcp_raw_check_syncookie_ipv6 = 207, - BPF_FUNC_ktime_get_tai_ns = 208, - BPF_FUNC_user_ringbuf_drain = 209, - BPF_FUNC_cgrp_storage_get = 210, - BPF_FUNC_cgrp_storage_delete = 211, - __BPF_FUNC_MAX_ID = 212, -}; - -struct bpf_link_info { - __u32 type; - __u32 id; - __u32 prog_id; - union { - struct { - __u64 tp_name; - __u32 tp_name_len; - __u64 cookie; - } raw_tracepoint; - struct { - __u32 attach_type; - __u32 target_obj_id; - __u32 target_btf_id; - __u64 cookie; - } tracing; - struct { - __u64 cgroup_id; - __u32 attach_type; - } cgroup; - struct { - __u64 target_name; - __u32 target_name_len; - union { - struct { - __u32 map_id; - } map; - }; - union { - struct { - __u64 cgroup_id; - __u32 order; - } cgroup; - struct { - __u32 tid; - __u32 pid; - } task; - }; - } iter; - struct { - __u32 netns_ino; - __u32 attach_type; - } netns; - struct { - __u32 ifindex; - } xdp; - struct { - __u32 map_id; - } struct_ops; - struct { - __u32 pf; - __u32 hooknum; - __s32 priority; - __u32 flags; - } netfilter; - struct { - __u64 addrs; - __u32 count; - __u32 flags; - __u64 missed; - __u64 cookies; - } kprobe_multi; - struct { - __u64 path; - __u64 offsets; - __u64 ref_ctr_offsets; - __u64 cookies; - __u32 path_size; - __u32 count; - __u32 flags; - __u32 pid; - } uprobe_multi; - struct { - __u32 type; - union { - struct { - __u64 file_name; - __u32 name_len; - __u32 offset; - __u64 cookie; - __u64 ref_ctr_offset; - } uprobe; - struct { - __u64 func_name; - __u32 name_len; - __u32 offset; - __u64 addr; - __u64 missed; - __u64 cookie; - } kprobe; - struct { - __u64 tp_name; - __u32 name_len; - __u64 cookie; - } tracepoint; - struct { - __u64 config; - __u32 type; - __u64 cookie; - } event; - }; - } perf_event; - struct { - __u32 ifindex; - __u32 attach_type; - } tcx; - struct { - __u32 ifindex; - __u32 attach_type; - } netkit; - struct { - __u32 map_id; - __u32 attach_type; - } sockmap; - }; -}; - -struct bpf_func_info { - __u32 insn_off; - __u32 type_id; -}; - -struct bpf_line_info { - __u32 insn_off; - __u32 file_name_off; - __u32 line_off; - __u32 line_col; -}; - -struct sock_filter { - __u16 code; - __u8 jt; - __u8 jf; - __u32 k; -}; - -struct btf_type { - __u32 name_off; - __u32 info; - union { - __u32 size; - __u32 type; - }; -}; - -struct btf_member { - __u32 name_off; - __u32 type; - __u32 offset; -}; - -struct bpf_prog_stats; - -struct bpf_prog_aux; - -struct sock_fprog_kern; - -struct bpf_prog { - u16 pages; - u16 jited: 1; - u16 jit_requested: 1; - u16 gpl_compatible: 1; - u16 cb_access: 1; - u16 dst_needed: 1; - u16 blinding_requested: 1; - u16 blinded: 1; - u16 is_func: 1; - u16 kprobe_override: 1; - u16 has_callchain_buf: 1; - u16 enforce_expected_attach_type: 1; - u16 call_get_stack: 1; - u16 call_get_func_ip: 1; - u16 tstamp_type_access: 1; - u16 sleepable: 1; - enum bpf_prog_type type; - enum bpf_attach_type expected_attach_type; - u32 len; - u32 jited_len; - u8 tag[8]; - struct bpf_prog_stats *stats; - int *active; - unsigned int (*bpf_func)(const void *, const struct bpf_insn *); - struct bpf_prog_aux *aux; - struct sock_fprog_kern *orig_prog; - union { - struct { - struct {} __empty_insns; - struct sock_filter insns[0]; - }; - struct { - struct {} __empty_insnsi; - struct bpf_insn insnsi[0]; - }; - }; -}; - -enum btf_field_type { - BPF_SPIN_LOCK = 1, - BPF_TIMER = 2, - BPF_KPTR_UNREF = 4, - BPF_KPTR_REF = 8, - BPF_KPTR_PERCPU = 16, - BPF_KPTR = 28, - BPF_LIST_HEAD = 32, - BPF_LIST_NODE = 64, - BPF_RB_ROOT = 128, - BPF_RB_NODE = 256, - BPF_GRAPH_NODE = 320, - BPF_GRAPH_ROOT = 160, - BPF_REFCOUNT = 512, - BPF_WORKQUEUE = 1024, - BPF_UPTR = 2048, - BPF_RES_SPIN_LOCK = 4096, -}; - -typedef void (*btf_dtor_kfunc_t)(void *); - -struct btf; - -struct btf_field_kptr { - struct btf *btf; - struct module *module; - btf_dtor_kfunc_t dtor; - u32 btf_id; -}; - -struct btf_record; - -struct btf_field_graph_root { - struct btf *btf; - u32 value_btf_id; - u32 node_offset; - struct btf_record *value_rec; -}; - -struct btf_field { - u32 offset; - u32 size; - enum btf_field_type type; - union { - struct btf_field_kptr kptr; - struct btf_field_graph_root graph_root; - }; -}; - -struct btf_record { - u32 cnt; - u32 field_mask; - int spin_lock_off; - int res_spin_lock_off; - int timer_off; - int wq_off; - int refcount_off; - struct btf_field fields[0]; -}; - -struct blk_holder_ops { - void (*mark_dead)(struct block_device *, bool); - void (*sync)(struct block_device *); - int (*freeze)(struct block_device *); - int (*thaw)(struct block_device *); -}; - -struct partition_meta_info { - char uuid[37]; - u8 volname[64]; -}; - -struct mem_cgroup_reclaim_iter { - struct mem_cgroup *position; - atomic_t generation; -}; - -struct lruvec_stats_percpu; - -struct lruvec_stats; - -struct mem_cgroup_per_node { - struct mem_cgroup *memcg; - struct lruvec_stats_percpu *lruvec_stats_percpu; - struct lruvec_stats *lruvec_stats; - struct shrinker_info *shrinker_info; - long: 64; - long: 64; - long: 64; - long: 64; - struct cacheline_padding _pad1_; - struct lruvec lruvec; - long: 64; - long: 64; - struct cacheline_padding _pad2_; - long unsigned int lru_zone_size[25]; - struct mem_cgroup_reclaim_iter iter; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -typedef u64 (*bpf_callback_t)(u64, u64, u64, u64, u64); - -struct bpf_iter_aux_info; - -typedef int (*bpf_iter_init_seq_priv_t)(void *, struct bpf_iter_aux_info *); - -enum bpf_iter_task_type { - BPF_TASK_ITER_ALL = 0, - BPF_TASK_ITER_TID = 1, - BPF_TASK_ITER_TGID = 2, -}; - -struct bpf_map; - -struct bpf_iter_aux_info { - struct bpf_map *map; - struct { - struct cgroup *start; - enum bpf_cgroup_iter_order order; - } cgroup; - struct { - enum bpf_iter_task_type type; - u32 pid; - } task; -}; - -typedef void (*bpf_iter_fini_seq_priv_t)(void *); - -struct bpf_iter_seq_info { - const struct seq_operations *seq_ops; - bpf_iter_init_seq_priv_t init_seq_private; - bpf_iter_fini_seq_priv_t fini_seq_private; - u32 seq_priv_size; -}; - -struct bpf_local_storage_map; - -struct bpf_verifier_env; - -struct bpf_func_state; - -struct bpf_map_ops { - int (*map_alloc_check)(union bpf_attr *); - struct bpf_map * (*map_alloc)(union bpf_attr *); - void (*map_release)(struct bpf_map *, struct file *); - void (*map_free)(struct bpf_map *); - int (*map_get_next_key)(struct bpf_map *, void *, void *); - void (*map_release_uref)(struct bpf_map *); - void * (*map_lookup_elem_sys_only)(struct bpf_map *, void *); - int (*map_lookup_batch)(struct bpf_map *, const union bpf_attr *, union bpf_attr *); - int (*map_lookup_and_delete_elem)(struct bpf_map *, void *, void *, u64); - int (*map_lookup_and_delete_batch)(struct bpf_map *, const union bpf_attr *, union bpf_attr *); - int (*map_update_batch)(struct bpf_map *, struct file *, const union bpf_attr *, union bpf_attr *); - int (*map_delete_batch)(struct bpf_map *, const union bpf_attr *, union bpf_attr *); - void * (*map_lookup_elem)(struct bpf_map *, void *); - long int (*map_update_elem)(struct bpf_map *, void *, void *, u64); - long int (*map_delete_elem)(struct bpf_map *, void *); - long int (*map_push_elem)(struct bpf_map *, void *, u64); - long int (*map_pop_elem)(struct bpf_map *, void *); - long int (*map_peek_elem)(struct bpf_map *, void *); - void * (*map_lookup_percpu_elem)(struct bpf_map *, void *, u32); - void * (*map_fd_get_ptr)(struct bpf_map *, struct file *, int); - void (*map_fd_put_ptr)(struct bpf_map *, void *, bool); - int (*map_gen_lookup)(struct bpf_map *, struct bpf_insn *); - u32 (*map_fd_sys_lookup_elem)(void *); - void (*map_seq_show_elem)(struct bpf_map *, void *, struct seq_file *); - int (*map_check_btf)(const struct bpf_map *, const struct btf *, const struct btf_type *, const struct btf_type *); - int (*map_poke_track)(struct bpf_map *, struct bpf_prog_aux *); - void (*map_poke_untrack)(struct bpf_map *, struct bpf_prog_aux *); - void (*map_poke_run)(struct bpf_map *, u32, struct bpf_prog *, struct bpf_prog *); - int (*map_direct_value_addr)(const struct bpf_map *, u64 *, u32); - int (*map_direct_value_meta)(const struct bpf_map *, u64, u32 *); - int (*map_mmap)(struct bpf_map *, struct vm_area_struct *); - __poll_t (*map_poll)(struct bpf_map *, struct file *, struct poll_table_struct *); - long unsigned int (*map_get_unmapped_area)(struct file *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - int (*map_local_storage_charge)(struct bpf_local_storage_map *, void *, u32); - void (*map_local_storage_uncharge)(struct bpf_local_storage_map *, void *, u32); - struct bpf_local_storage ** (*map_owner_storage_ptr)(void *); - long int (*map_redirect)(struct bpf_map *, u64, u64); - bool (*map_meta_equal)(const struct bpf_map *, const struct bpf_map *); - int (*map_set_for_each_callback_args)(struct bpf_verifier_env *, struct bpf_func_state *, struct bpf_func_state *); - long int (*map_for_each_callback)(struct bpf_map *, bpf_callback_t, void *, u64); - u64 (*map_mem_usage)(const struct bpf_map *); - int *map_btf_id; - const struct bpf_iter_seq_info *iter_seq_info; -}; - -struct bpf_map_owner; - -struct bpf_map { - const struct bpf_map_ops *ops; - struct bpf_map *inner_map_meta; - void *security; - enum bpf_map_type map_type; - u32 key_size; - u32 value_size; - u32 max_entries; - u64 map_extra; - u32 map_flags; - u32 id; - struct btf_record *record; - int numa_node; - u32 btf_key_type_id; - u32 btf_value_type_id; - u32 btf_vmlinux_value_type_id; - struct btf *btf; - struct obj_cgroup *objcg; - char name[16]; - struct mutex freeze_mutex; - atomic64_t refcnt; - atomic64_t usercnt; - union { - struct work_struct work; - struct callback_head rcu; - }; - atomic64_t writecnt; - spinlock_t owner_lock; - struct bpf_map_owner *owner; - bool bypass_spec_v1; - bool frozen; - bool free_after_mult_rcu_gp; - bool free_after_rcu_gp; - atomic64_t sleepable_refcnt; - s64 *elem_count; - u64 cookie; -}; - -struct btf_header { - __u16 magic; - __u8 version; - __u8 flags; - __u32 hdr_len; - __u32 type_off; - __u32 type_len; - __u32 str_off; - __u32 str_len; -}; - -struct btf_kfunc_set_tab; - -struct btf_id_dtor_kfunc_tab; - -struct btf_struct_metas; - -struct btf_struct_ops_tab; - -struct btf { - void *data; - struct btf_type **types; - u32 *resolved_ids; - u32 *resolved_sizes; - const char *strings; - void *nohdr_data; - struct btf_header hdr; - u32 nr_types; - u32 types_size; - u32 data_size; - refcount_t refcnt; - u32 id; - struct callback_head rcu; - struct btf_kfunc_set_tab *kfunc_set_tab; - struct btf_id_dtor_kfunc_tab *dtor_kfunc_tab; - struct btf_struct_metas *struct_meta_tab; - struct btf_struct_ops_tab *struct_ops_tab; - struct btf *base_btf; - u32 start_id; - u32 start_str_off; - char name[56]; - bool kernel_btf; - __u32 *base_id_map; -}; - -struct bpf_ksym { - long unsigned int start; - long unsigned int end; - char name[512]; - struct list_head lnode; - struct latch_tree_node tnode; - bool prog; -}; - -struct bpf_stream { - atomic_t capacity; - struct llist_head log; - struct mutex lock; - struct llist_node *backlog_head; - struct llist_node *backlog_tail; -}; - -struct bpf_ctx_arg_aux; - -struct bpf_trampoline; - -struct bpf_arena; - -struct bpf_jit_poke_descriptor; - -struct bpf_kfunc_desc_tab; - -struct bpf_kfunc_btf_tab; - -struct bpf_prog_ops; - -struct bpf_struct_ops; - -struct btf_mod_pair; - -struct bpf_token; - -struct bpf_prog_offload; - -struct bpf_func_info_aux; - -struct bpf_prog_aux { - atomic64_t refcnt; - u32 used_map_cnt; - u32 used_btf_cnt; - u32 max_ctx_offset; - u32 max_pkt_offset; - u32 max_tp_access; - u32 stack_depth; - u32 id; - u32 func_cnt; - u32 real_func_cnt; - u32 func_idx; - u32 attach_btf_id; - u32 attach_st_ops_member_off; - u32 ctx_arg_info_size; - u32 max_rdonly_access; - u32 max_rdwr_access; - struct btf *attach_btf; - struct bpf_ctx_arg_aux *ctx_arg_info; - void *priv_stack_ptr; - struct mutex dst_mutex; - struct bpf_prog *dst_prog; - struct bpf_trampoline *dst_trampoline; - enum bpf_prog_type saved_dst_prog_type; - enum bpf_attach_type saved_dst_attach_type; - bool verifier_zext; - bool dev_bound; - bool offload_requested; - bool attach_btf_trace; - bool attach_tracing_prog; - bool func_proto_unreliable; - bool tail_call_reachable; - bool xdp_has_frags; - bool exception_cb; - bool exception_boundary; - bool is_extended; - bool jits_use_priv_stack; - bool priv_stack_requested; - bool changes_pkt_data; - bool might_sleep; - u64 prog_array_member_cnt; - struct mutex ext_mutex; - struct bpf_arena *arena; - void (*recursion_detected)(struct bpf_prog *); - const struct btf_type *attach_func_proto; - const char *attach_func_name; - struct bpf_prog **func; - void *jit_data; - struct bpf_jit_poke_descriptor *poke_tab; - struct bpf_kfunc_desc_tab *kfunc_tab; - struct bpf_kfunc_btf_tab *kfunc_btf_tab; - u32 size_poke_tab; - struct bpf_ksym ksym; - const struct bpf_prog_ops *ops; - const struct bpf_struct_ops *st_ops; - struct bpf_map **used_maps; - struct mutex used_maps_mutex; - struct btf_mod_pair *used_btfs; - struct bpf_prog *prog; - struct user_struct *user; - u64 load_time; - u32 verified_insns; - int cgroup_atype; - struct bpf_map *cgroup_storage[2]; - char name[16]; - u64 (*bpf_exception_cb)(u64, u64, u64, u64, u64); - void *security; - struct bpf_token *token; - struct bpf_prog_offload *offload; - struct btf *btf; - struct bpf_func_info *func_info; - struct bpf_func_info_aux *func_info_aux; - struct bpf_line_info *linfo; - void **jited_linfo; - u32 func_info_cnt; - u32 nr_linfo; - u32 linfo_idx; - struct module *mod; - u32 num_exentries; - struct exception_table_entry *extable; - union { - struct work_struct work; - struct callback_head rcu; - }; - struct bpf_stream stream[2]; -}; - -struct bpf_map_owner { - enum bpf_prog_type type; - bool jited; - bool xdp_has_frags; - u64 storage_cookie[2]; - const struct btf_type *attach_func_proto; - enum bpf_attach_type expected_attach_type; -}; - -enum bpf_arg_type { - ARG_DONTCARE = 0, - ARG_CONST_MAP_PTR = 1, - ARG_PTR_TO_MAP_KEY = 2, - ARG_PTR_TO_MAP_VALUE = 3, - ARG_PTR_TO_MEM = 4, - ARG_PTR_TO_ARENA = 5, - ARG_CONST_SIZE = 6, - ARG_CONST_SIZE_OR_ZERO = 7, - ARG_PTR_TO_CTX = 8, - ARG_ANYTHING = 9, - ARG_PTR_TO_SPIN_LOCK = 10, - ARG_PTR_TO_SOCK_COMMON = 11, - ARG_PTR_TO_SOCKET = 12, - ARG_PTR_TO_BTF_ID = 13, - ARG_PTR_TO_RINGBUF_MEM = 14, - ARG_CONST_ALLOC_SIZE_OR_ZERO = 15, - ARG_PTR_TO_BTF_ID_SOCK_COMMON = 16, - ARG_PTR_TO_PERCPU_BTF_ID = 17, - ARG_PTR_TO_FUNC = 18, - ARG_PTR_TO_STACK = 19, - ARG_PTR_TO_CONST_STR = 20, - ARG_PTR_TO_TIMER = 21, - ARG_KPTR_XCHG_DEST = 22, - ARG_PTR_TO_DYNPTR = 23, - __BPF_ARG_TYPE_MAX = 24, - ARG_PTR_TO_MAP_VALUE_OR_NULL = 259, - ARG_PTR_TO_MEM_OR_NULL = 260, - ARG_PTR_TO_CTX_OR_NULL = 264, - ARG_PTR_TO_SOCKET_OR_NULL = 268, - ARG_PTR_TO_STACK_OR_NULL = 275, - ARG_PTR_TO_BTF_ID_OR_NULL = 269, - ARG_PTR_TO_UNINIT_MEM = 67141636, - ARG_PTR_TO_FIXED_SIZE_MEM = 262148, - __BPF_ARG_TYPE_LIMIT = 134217727, -}; - -enum bpf_return_type { - RET_INTEGER = 0, - RET_VOID = 1, - RET_PTR_TO_MAP_VALUE = 2, - RET_PTR_TO_SOCKET = 3, - RET_PTR_TO_TCP_SOCK = 4, - RET_PTR_TO_SOCK_COMMON = 5, - RET_PTR_TO_MEM = 6, - RET_PTR_TO_MEM_OR_BTF_ID = 7, - RET_PTR_TO_BTF_ID = 8, - __BPF_RET_TYPE_MAX = 9, - RET_PTR_TO_MAP_VALUE_OR_NULL = 258, - RET_PTR_TO_SOCKET_OR_NULL = 259, - RET_PTR_TO_TCP_SOCK_OR_NULL = 260, - RET_PTR_TO_SOCK_COMMON_OR_NULL = 261, - RET_PTR_TO_RINGBUF_MEM_OR_NULL = 1286, - RET_PTR_TO_DYNPTR_MEM_OR_NULL = 262, - RET_PTR_TO_BTF_ID_OR_NULL = 264, - RET_PTR_TO_BTF_ID_TRUSTED = 1048584, - __BPF_RET_TYPE_LIMIT = 134217727, -}; - -struct bpf_func_proto { - u64 (*func)(u64, u64, u64, u64, u64); - bool gpl_only; - bool pkt_access; - bool might_sleep; - bool allow_fastcall; - enum bpf_return_type ret_type; - union { - struct { - enum bpf_arg_type arg1_type; - enum bpf_arg_type arg2_type; - enum bpf_arg_type arg3_type; - enum bpf_arg_type arg4_type; - enum bpf_arg_type arg5_type; - }; - enum bpf_arg_type arg_type[5]; - }; - union { - struct { - u32 *arg1_btf_id; - u32 *arg2_btf_id; - u32 *arg3_btf_id; - u32 *arg4_btf_id; - u32 *arg5_btf_id; - }; - u32 *arg_btf_id[5]; - struct { - size_t arg1_size; - size_t arg2_size; - size_t arg3_size; - size_t arg4_size; - size_t arg5_size; - }; - size_t arg_size[5]; - }; - int *ret_btf_id; - bool (*allowed)(const struct bpf_prog *); -}; - -enum bpf_access_type { - BPF_READ = 1, - BPF_WRITE = 2, -}; - -enum bpf_reg_type { - NOT_INIT = 0, - SCALAR_VALUE = 1, - PTR_TO_CTX = 2, - CONST_PTR_TO_MAP = 3, - PTR_TO_MAP_VALUE = 4, - PTR_TO_MAP_KEY = 5, - PTR_TO_STACK = 6, - PTR_TO_PACKET_META = 7, - PTR_TO_PACKET = 8, - PTR_TO_PACKET_END = 9, - PTR_TO_FLOW_KEYS = 10, - PTR_TO_SOCKET = 11, - PTR_TO_SOCK_COMMON = 12, - PTR_TO_TCP_SOCK = 13, - PTR_TO_TP_BUFFER = 14, - PTR_TO_XDP_SOCK = 15, - PTR_TO_BTF_ID = 16, - PTR_TO_MEM = 17, - PTR_TO_ARENA = 18, - PTR_TO_BUF = 19, - PTR_TO_FUNC = 20, - CONST_PTR_TO_DYNPTR = 21, - __BPF_REG_TYPE_MAX = 22, - PTR_TO_MAP_VALUE_OR_NULL = 260, - PTR_TO_SOCKET_OR_NULL = 267, - PTR_TO_SOCK_COMMON_OR_NULL = 268, - PTR_TO_TCP_SOCK_OR_NULL = 269, - PTR_TO_BTF_ID_OR_NULL = 272, - __BPF_REG_TYPE_LIMIT = 134217727, -}; - -struct bpf_verifier_log; - -struct bpf_insn_access_aux { - enum bpf_reg_type reg_type; - bool is_ldsx; - union { - int ctx_field_size; - struct { - struct btf *btf; - u32 btf_id; - u32 ref_obj_id; - }; - }; - struct bpf_verifier_log *log; - bool is_retval; -}; - -struct bpf_prog_ops { - int (*test_run)(struct bpf_prog *, const union bpf_attr *, union bpf_attr *); -}; - -struct bpf_reg_state; - -struct bpf_verifier_ops { - const struct bpf_func_proto * (*get_func_proto)(enum bpf_func_id, const struct bpf_prog *); - bool (*is_valid_access)(int, int, enum bpf_access_type, const struct bpf_prog *, struct bpf_insn_access_aux *); - int (*gen_prologue)(struct bpf_insn *, bool, const struct bpf_prog *); - int (*gen_epilogue)(struct bpf_insn *, const struct bpf_prog *, s16); - int (*gen_ld_abs)(const struct bpf_insn *, struct bpf_insn *); - u32 (*convert_ctx_access)(enum bpf_access_type, const struct bpf_insn *, struct bpf_insn *, struct bpf_prog *, u32 *); - int (*btf_struct_access)(struct bpf_verifier_log *, const struct bpf_reg_state *, int, int); -}; - -enum bpf_dynptr_type { - BPF_DYNPTR_TYPE_INVALID = 0, - BPF_DYNPTR_TYPE_LOCAL = 1, - BPF_DYNPTR_TYPE_RINGBUF = 2, - BPF_DYNPTR_TYPE_SKB = 3, - BPF_DYNPTR_TYPE_XDP = 4, -}; - -enum bpf_iter_state { - BPF_ITER_STATE_INVALID = 0, - BPF_ITER_STATE_ACTIVE = 1, - BPF_ITER_STATE_DRAINED = 2, -}; - -struct tnum { - u64 value; - u64 mask; -}; - -enum bpf_reg_liveness { - REG_LIVE_NONE = 0, - REG_LIVE_READ32 = 1, - REG_LIVE_READ64 = 2, - REG_LIVE_READ = 3, - REG_LIVE_WRITTEN = 4, - REG_LIVE_DONE = 8, -}; - -struct bpf_reg_state { - enum bpf_reg_type type; - s32 off; - union { - int range; - struct { - struct bpf_map *map_ptr; - u32 map_uid; - }; - struct { - struct btf *btf; - u32 btf_id; - }; - struct { - u32 mem_size; - u32 dynptr_id; - }; - struct { - enum bpf_dynptr_type type; - bool first_slot; - } dynptr; - struct { - struct btf *btf; - u32 btf_id; - enum bpf_iter_state state: 2; - int depth: 30; - } iter; - struct { - enum { - IRQ_NATIVE_KFUNC = 0, - IRQ_LOCK_KFUNC = 1, - } kfunc_class; - } irq; - struct { - long unsigned int raw1; - long unsigned int raw2; - } raw; - u32 subprogno; - }; - struct tnum var_off; - s64 smin_value; - s64 smax_value; - u64 umin_value; - u64 umax_value; - s32 s32_min_value; - s32 s32_max_value; - u32 u32_min_value; - u32 u32_max_value; - u32 id; - u32 ref_obj_id; - struct bpf_reg_state *parent; - u32 frameno; - s32 subreg_def; - enum bpf_reg_liveness live; - bool precise; -}; - -struct net_device; - -struct bpf_offload_dev; - -struct bpf_prog_offload { - struct bpf_prog *prog; - struct net_device *netdev; - struct bpf_offload_dev *offdev; - void *dev_priv; - struct list_head offloads; - bool dev_state; - bool opt_failed; - void *jited_image; - u32 jited_len; -}; - -struct btf_func_model { - u8 ret_size; - u8 ret_flags; - u8 nr_args; - u8 arg_size[12]; - u8 arg_flags[12]; -}; - -struct bpf_tramp_image { - void *image; - int size; - struct bpf_ksym ksym; - struct percpu_ref pcref; - void *ip_after_call; - void *ip_epilogue; - union { - struct callback_head rcu; - struct work_struct work; - }; -}; - -struct bpf_trampoline { - struct hlist_node hlist; - struct ftrace_ops *fops; - struct mutex mutex; - refcount_t refcnt; - u32 flags; - u64 key; - struct { - struct btf_func_model model; - void *addr; - bool ftrace_managed; - } func; - struct bpf_prog *extension_prog; - struct hlist_head progs_hlist[3]; - int progs_cnt[3]; - struct bpf_tramp_image *cur_image; -}; - -struct bpf_func_info_aux { - u16 linkage; - bool unreliable; - bool called: 1; - bool verified: 1; -}; - -struct bpf_jit_poke_descriptor { - void *tailcall_target; - void *tailcall_bypass; - void *bypass_addr; - void *aux; - union { - struct { - struct bpf_map *map; - u32 key; - } tail_call; - }; - bool tailcall_target_stable; - u8 adj_off; - u16 reason; - u32 insn_idx; -}; - -struct bpf_ctx_arg_aux { - u32 offset; - enum bpf_reg_type reg_type; - struct btf *btf; - u32 btf_id; - u32 ref_obj_id; - bool refcounted; -}; - -struct btf_mod_pair { - struct btf *btf; - struct module *module; -}; - -struct bpf_link; - -struct bpf_struct_ops { - const struct bpf_verifier_ops *verifier_ops; - int (*init)(struct btf *); - int (*check_member)(const struct btf_type *, const struct btf_member *, const struct bpf_prog *); - int (*init_member)(const struct btf_type *, const struct btf_member *, void *, const void *); - int (*reg)(void *, struct bpf_link *); - void (*unreg)(void *, struct bpf_link *); - int (*update)(void *, void *, struct bpf_link *); - int (*validate)(void *); - void *cfi_stubs; - struct module *owner; - const char *name; - struct btf_func_model func_models[64]; -}; - -struct bpf_token { - struct work_struct work; - atomic64_t refcnt; - struct user_namespace *userns; - u64 allowed_cmds; - u64 allowed_maps; - u64 allowed_progs; - u64 allowed_attachs; - void *security; -}; - -struct bpf_link_ops; - -struct bpf_link { - atomic64_t refcnt; - u32 id; - enum bpf_link_type type; - const struct bpf_link_ops *ops; - struct bpf_prog *prog; - u32 flags; - enum bpf_attach_type attach_type; - union { - struct callback_head rcu; - struct work_struct work; - }; - bool sleepable; -}; - -struct bpf_link_ops { - void (*release)(struct bpf_link *); - void (*dealloc)(struct bpf_link *); - void (*dealloc_deferred)(struct bpf_link *); - int (*detach)(struct bpf_link *); - int (*update_prog)(struct bpf_link *, struct bpf_prog *, struct bpf_prog *); - void (*show_fdinfo)(const struct bpf_link *, struct seq_file *); - int (*fill_link_info)(const struct bpf_link *, struct bpf_link_info *); - int (*update_map)(struct bpf_link *, struct bpf_map *, struct bpf_map *); - __poll_t (*poll)(struct file *, struct poll_table_struct *); -}; - -struct perf_callchain_entry { - u64 nr; - u64 ip[0]; -}; - -typedef long unsigned int (*perf_copy_f)(void *, const void *, long unsigned int, long unsigned int); - -struct perf_raw_frag { - union { - struct perf_raw_frag *next; - long unsigned int pad; - }; - perf_copy_f copy; - void *data; - u32 size; -} __attribute__((packed)); - -struct perf_raw_record { - struct perf_raw_frag frag; - u32 size; -}; - -struct perf_branch_stack { - u64 nr; - u64 hw_idx; - struct perf_branch_entry entries[0]; -}; - -struct perf_event_pmu_context { - struct pmu *pmu; - struct perf_event_context *ctx; - struct list_head pmu_ctx_entry; - struct list_head pinned_active; - struct list_head flexible_active; - unsigned int embedded: 1; - unsigned int nr_events; - unsigned int nr_cgroups; - unsigned int nr_freq; - atomic_t refcount; - struct callback_head callback_head; - int rotate_necessary; -}; - -struct perf_cpu_pmu_context { - struct perf_event_pmu_context epc; - struct perf_event_pmu_context *task_epc; - struct list_head sched_cb_entry; - int sched_cb_usage; - int active_oncpu; - int exclusive; - int pmu_disable_count; - raw_spinlock_t hrtimer_lock; - struct hrtimer hrtimer; - ktime_t hrtimer_interval; - unsigned int hrtimer_active; -}; - -struct perf_output_handle { - struct perf_event *event; - struct perf_buffer *rb; - long unsigned int wakeup; - long unsigned int size; - union { - u64 flags; - u64 aux_flags; - struct { - u64 skip_read: 1; - }; - }; - union { - void *addr; - long unsigned int head; - }; - int page; -}; - -struct perf_addr_filter_range { - long unsigned int start; - long unsigned int size; -}; - -struct perf_sample_data { - u64 sample_flags; - u64 period; - u64 dyn_size; - u64 type; - struct { - u32 pid; - u32 tid; - } tid_entry; - u64 time; - u64 id; - struct { - u32 cpu; - u32 reserved; - } cpu_entry; - u64 ip; - struct perf_callchain_entry *callchain; - struct perf_raw_record *raw; - struct perf_branch_stack *br_stack; - u64 *br_stack_cntr; - union perf_sample_weight weight; - union perf_mem_data_src data_src; - u64 txn; - struct perf_regs regs_user; - struct perf_regs regs_intr; - u64 stack_user_size; - u64 stream_id; - u64 cgroup; - u64 addr; - u64 phys_addr; - u64 data_page_size; - u64 code_page_size; - u64 aux_size; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct perf_cgroup_info; - -struct perf_cgroup { - struct cgroup_subsys_state css; - struct perf_cgroup_info *info; -}; - -struct perf_cgroup_info { - u64 time; - u64 timestamp; - u64 timeoffset; - int active; -}; - -struct trace_entry { - short unsigned int type; - unsigned char flags; - unsigned char preempt_count; - int pid; -}; - -struct trace_array; - -struct tracer; - -struct array_buffer; - -struct ring_buffer_iter; - -struct trace_iterator { - struct trace_array *tr; - struct tracer *trace; - struct array_buffer *array_buffer; - void *private; - int cpu_file; - struct mutex mutex; - struct ring_buffer_iter **buffer_iter; - long unsigned int iter_flags; - void *temp; - unsigned int temp_size; - char *fmt; - unsigned int fmt_size; - atomic_t wait_index; - struct trace_seq tmp_seq; - cpumask_var_t started; - bool closed; - bool snapshot; - struct trace_seq seq; - struct trace_entry *ent; - long unsigned int lost_events; - int leftover; - int ent_size; - int cpu; - u64 ts; - loff_t pos; - long int idx; -}; - -enum print_line_t { - TRACE_TYPE_PARTIAL_LINE = 0, - TRACE_TYPE_HANDLED = 1, - TRACE_TYPE_UNHANDLED = 2, - TRACE_TYPE_NO_CONSUME = 3, -}; - -typedef enum print_line_t (*trace_print_func)(struct trace_iterator *, int, struct trace_event *); - -struct trace_event_functions { - trace_print_func trace; - trace_print_func raw; - trace_print_func hex; - trace_print_func binary; -}; - -enum trace_reg { - TRACE_REG_REGISTER = 0, - TRACE_REG_UNREGISTER = 1, - TRACE_REG_PERF_REGISTER = 2, - TRACE_REG_PERF_UNREGISTER = 3, - TRACE_REG_PERF_OPEN = 4, - TRACE_REG_PERF_CLOSE = 5, - TRACE_REG_PERF_ADD = 6, - TRACE_REG_PERF_DEL = 7, -}; - -struct trace_event_fields { - const char *type; - union { - struct { - const char *name; - const int size; - const int align; - const unsigned int is_signed: 1; - unsigned int needs_test: 1; - const int filter_type; - const int len; - }; - int (*define_fields)(struct trace_event_call *); - }; -}; - -struct trace_event_class { - const char *system; - void *probe; - void *perf_probe; - int (*reg)(struct trace_event_call *, enum trace_reg, void *); - struct trace_event_fields *fields_array; - struct list_head * (*get_fields)(struct trace_event_call *); - struct list_head fields; - int (*raw_init)(struct trace_event_call *); -}; - -enum { - TRACE_EVENT_FL_CAP_ANY_BIT = 0, - TRACE_EVENT_FL_NO_SET_FILTER_BIT = 1, - TRACE_EVENT_FL_IGNORE_ENABLE_BIT = 2, - TRACE_EVENT_FL_TRACEPOINT_BIT = 3, - TRACE_EVENT_FL_DYNAMIC_BIT = 4, - TRACE_EVENT_FL_KPROBE_BIT = 5, - TRACE_EVENT_FL_UPROBE_BIT = 6, - TRACE_EVENT_FL_EPROBE_BIT = 7, - TRACE_EVENT_FL_FPROBE_BIT = 8, - TRACE_EVENT_FL_CUSTOM_BIT = 9, - TRACE_EVENT_FL_TEST_STR_BIT = 10, -}; - -enum { - EVENT_FILE_FL_ENABLED_BIT = 0, - EVENT_FILE_FL_RECORDED_CMD_BIT = 1, - EVENT_FILE_FL_RECORDED_TGID_BIT = 2, - EVENT_FILE_FL_FILTERED_BIT = 3, - EVENT_FILE_FL_NO_SET_FILTER_BIT = 4, - EVENT_FILE_FL_SOFT_DISABLED_BIT = 5, - EVENT_FILE_FL_TRIGGER_MODE_BIT = 6, - EVENT_FILE_FL_TRIGGER_COND_BIT = 7, - EVENT_FILE_FL_PID_FILTER_BIT = 8, - EVENT_FILE_FL_WAS_ENABLED_BIT = 9, - EVENT_FILE_FL_FREED_BIT = 10, -}; - -enum dev_dma_attr { - DEV_DMA_NOT_SUPPORTED = 0, - DEV_DMA_NON_COHERENT = 1, - DEV_DMA_COHERENT = 2, -}; - -struct fwnode_reference_args; - -struct fwnode_endpoint; - -struct fwnode_operations { - struct fwnode_handle * (*get)(struct fwnode_handle *); - void (*put)(struct fwnode_handle *); - bool (*device_is_available)(const struct fwnode_handle *); - const void * (*device_get_match_data)(const struct fwnode_handle *, const struct device *); - bool (*device_dma_supported)(const struct fwnode_handle *); - enum dev_dma_attr (*device_get_dma_attr)(const struct fwnode_handle *); - bool (*property_present)(const struct fwnode_handle *, const char *); - bool (*property_read_bool)(const struct fwnode_handle *, const char *); - int (*property_read_int_array)(const struct fwnode_handle *, const char *, unsigned int, void *, size_t); - int (*property_read_string_array)(const struct fwnode_handle *, const char *, const char **, size_t); - const char * (*get_name)(const struct fwnode_handle *); - const char * (*get_name_prefix)(const struct fwnode_handle *); - struct fwnode_handle * (*get_parent)(const struct fwnode_handle *); - struct fwnode_handle * (*get_next_child_node)(const struct fwnode_handle *, struct fwnode_handle *); - struct fwnode_handle * (*get_named_child_node)(const struct fwnode_handle *, const char *); - int (*get_reference_args)(const struct fwnode_handle *, const char *, const char *, unsigned int, unsigned int, struct fwnode_reference_args *); - struct fwnode_handle * (*graph_get_next_endpoint)(const struct fwnode_handle *, struct fwnode_handle *); - struct fwnode_handle * (*graph_get_remote_endpoint)(const struct fwnode_handle *); - struct fwnode_handle * (*graph_get_port_parent)(struct fwnode_handle *); - int (*graph_parse_endpoint)(const struct fwnode_handle *, struct fwnode_endpoint *); - void * (*iomap)(struct fwnode_handle *, int); - int (*irq_get)(const struct fwnode_handle *, unsigned int); - int (*add_links)(struct fwnode_handle *); -}; - -struct fwnode_endpoint { - unsigned int port; - unsigned int id; - const struct fwnode_handle *local_fwnode; -}; - -struct fwnode_reference_args { - struct fwnode_handle *fwnode; - unsigned int nargs; - u64 args[16]; -}; - -enum memblock_flags { - MEMBLOCK_NONE = 0, - MEMBLOCK_HOTPLUG = 1, - MEMBLOCK_MIRROR = 2, - MEMBLOCK_NOMAP = 4, - MEMBLOCK_DRIVER_MANAGED = 8, - MEMBLOCK_RSRV_NOINIT = 16, - MEMBLOCK_RSRV_KERN = 32, - MEMBLOCK_KHO_SCRATCH = 64, -}; - -struct blk_zone { - __u64 start; - __u64 len; - __u64 wp; - __u8 type; - __u8 cond; - __u8 non_seq; - __u8 reset; - __u8 resv[4]; - __u64 capacity; - __u8 reserved[24]; -}; - -typedef int (*report_zones_cb)(struct blk_zone *, unsigned int, void *); - -enum blk_unique_id { - BLK_UID_T10 = 1, - BLK_UID_EUI64 = 2, - BLK_UID_NAA = 3, -}; - -struct hd_geometry; - -struct pr_ops; - -struct block_device_operations { - void (*submit_bio)(struct bio *); - int (*poll_bio)(struct bio *, struct io_comp_batch *, unsigned int); - int (*open)(struct gendisk *, blk_mode_t); - void (*release)(struct gendisk *); - int (*ioctl)(struct block_device *, blk_mode_t, unsigned int, long unsigned int); - int (*compat_ioctl)(struct block_device *, blk_mode_t, unsigned int, long unsigned int); - unsigned int (*check_events)(struct gendisk *, unsigned int); - void (*unlock_native_capacity)(struct gendisk *); - int (*getgeo)(struct block_device *, struct hd_geometry *); - int (*set_read_only)(struct block_device *, bool); - void (*free_disk)(struct gendisk *); - void (*swap_slot_free_notify)(struct block_device *, long unsigned int); - int (*report_zones)(struct gendisk *, sector_t, unsigned int, report_zones_cb, void *); - char * (*devnode)(struct gendisk *, umode_t *); - int (*get_unique_id)(struct gendisk *, u8 *, enum blk_unique_id); - struct module *owner; - const struct pr_ops *pr_ops; - int (*alternative_gpt_sector)(struct gendisk *, sector_t *); -}; - -struct blk_independent_access_range { - struct kobject kobj; - sector_t sector; - sector_t nr_sectors; -}; - -struct blk_independent_access_ranges { - struct kobject kobj; - bool sysfs_registered; - unsigned int nr_ia_ranges; - struct blk_independent_access_range ia_range[0]; -}; - -enum blk_eh_timer_return { - BLK_EH_DONE = 0, - BLK_EH_RESET_TIMER = 1, -}; - -struct blk_mq_hw_ctx; - -struct blk_mq_queue_data; - -struct blk_mq_ops { - blk_status_t (*queue_rq)(struct blk_mq_hw_ctx *, const struct blk_mq_queue_data *); - void (*commit_rqs)(struct blk_mq_hw_ctx *); - void (*queue_rqs)(struct rq_list *); - int (*get_budget)(struct request_queue *); - void (*put_budget)(struct request_queue *, int); - void (*set_rq_budget_token)(struct request *, int); - int (*get_rq_budget_token)(struct request *); - enum blk_eh_timer_return (*timeout)(struct request *); - int (*poll)(struct blk_mq_hw_ctx *, struct io_comp_batch *); - void (*complete)(struct request *); - int (*init_hctx)(struct blk_mq_hw_ctx *, void *, unsigned int); - void (*exit_hctx)(struct blk_mq_hw_ctx *, unsigned int); - int (*init_request)(struct blk_mq_tag_set *, struct request *, unsigned int, unsigned int); - void (*exit_request)(struct blk_mq_tag_set *, struct request *, unsigned int); - void (*cleanup_rq)(struct request *); - bool (*busy)(struct request_queue *); - void (*map_queues)(struct blk_mq_tag_set *); - void (*show_rq)(struct seq_file *, struct request *); -}; - -enum pr_type { - PR_WRITE_EXCLUSIVE = 1, - PR_EXCLUSIVE_ACCESS = 2, - PR_WRITE_EXCLUSIVE_REG_ONLY = 3, - PR_EXCLUSIVE_ACCESS_REG_ONLY = 4, - PR_WRITE_EXCLUSIVE_ALL_REGS = 5, - PR_EXCLUSIVE_ACCESS_ALL_REGS = 6, -}; - -struct pr_keys; - -struct pr_held_reservation; - -struct pr_ops { - int (*pr_register)(struct block_device *, u64, u64, u32); - int (*pr_reserve)(struct block_device *, u64, enum pr_type, u32); - int (*pr_release)(struct block_device *, u64, enum pr_type); - int (*pr_preempt)(struct block_device *, u64, u64, enum pr_type, bool); - int (*pr_clear)(struct block_device *, u64); - int (*pr_read_keys)(struct block_device *, struct pr_keys *); - int (*pr_read_reservation)(struct block_device *, struct pr_held_reservation *); -}; - -struct hash { - int ino; - int minor; - int major; - umode_t mode; - struct hash *next; - char name[4098]; -}; - -struct dir_entry { - struct list_head list; - time64_t mtime; - char name[0]; -}; - -enum state { - Start = 0, - Collect = 1, - GotHeader = 2, - SkipIt = 3, - GotName = 4, - CopyFile = 5, - GotSymlink = 6, - Reset = 7, -}; - -typedef int (*decompress_fn)(unsigned char *, long int, long int (*)(void *, long unsigned int), long int (*)(void *, long unsigned int), unsigned char *, long int *, void (*)(char *)); - -typedef __u16 __be16; - -typedef __u32 __be32; - -typedef __u32 __wsum; - -struct rhashtable; - -struct rhashtable_compare_arg { - struct rhashtable *ht; - const void *key; -}; - -typedef u32 (*rht_hashfn_t)(const void *, u32, u32); - -typedef u32 (*rht_obj_hashfn_t)(const void *, u32, u32); - -typedef int (*rht_obj_cmpfn_t)(struct rhashtable_compare_arg *, const void *); - -struct rhashtable_params { - u16 nelem_hint; - u16 key_len; - u16 key_offset; - u16 head_offset; - unsigned int max_size; - u16 min_size; - bool automatic_shrinking; - rht_hashfn_t hashfn; - rht_obj_hashfn_t obj_hashfn; - rht_obj_cmpfn_t obj_cmpfn; -}; - -struct bucket_table; - -struct rhashtable { - struct bucket_table *tbl; - unsigned int key_len; - unsigned int max_elems; - struct rhashtable_params p; - bool rhlist; - struct work_struct run_work; - struct mutex mutex; - spinlock_t lock; - atomic_t nelems; -}; - -enum scx_public_consts { - SCX_OPS_NAME_LEN = 128ULL, - SCX_SLICE_DFL = 20000000ULL, - SCX_SLICE_INF = 18446744073709551615ULL, -}; - -enum scx_dsq_id_flags { - SCX_DSQ_FLAG_BUILTIN = 9223372036854775808ULL, - SCX_DSQ_FLAG_LOCAL_ON = 4611686018427387904ULL, - SCX_DSQ_INVALID = 9223372036854775808ULL, - SCX_DSQ_GLOBAL = 9223372036854775809ULL, - SCX_DSQ_LOCAL = 9223372036854775810ULL, - SCX_DSQ_LOCAL_ON = 13835058055282163712ULL, - SCX_DSQ_LOCAL_CPU_MASK = 4294967295ULL, -}; - -struct ref_tracker_dir {}; - -struct notifier_block; - -struct raw_notifier_head { - struct notifier_block *head; -}; - -struct prot_inuse; - -struct netns_core { - struct ctl_table_header *sysctl_hdr; - int sysctl_somaxconn; - int sysctl_optmem_max; - u8 sysctl_txrehash; - u8 sysctl_tstamp_allow_data; - struct prot_inuse *prot_inuse; - struct cpumask *rps_default_mask; -}; - -struct ipstats_mib; - -struct tcp_mib; - -struct linux_mib; - -struct udp_mib; - -struct linux_xfrm_mib; - -struct linux_tls_mib; - -struct mptcp_mib; - -struct icmp_mib; - -struct icmpmsg_mib; - -struct icmpv6_mib; - -struct icmpv6msg_mib; - -struct proc_dir_entry; - -struct netns_mib { - struct ipstats_mib *ip_statistics; - struct ipstats_mib *ipv6_statistics; - struct tcp_mib *tcp_statistics; - struct linux_mib *net_statistics; - struct udp_mib *udp_statistics; - struct udp_mib *udp_stats_in6; - struct linux_xfrm_mib *xfrm_statistics; - struct linux_tls_mib *tls_statistics; - struct mptcp_mib *mptcp_statistics; - struct udp_mib *udplite_statistics; - struct udp_mib *udplite_stats_in6; - struct icmp_mib *icmp_statistics; - struct icmpmsg_mib *icmpmsg_statistics; - struct icmpv6_mib *icmpv6_statistics; - struct icmpv6msg_mib *icmpv6msg_statistics; - struct proc_dir_entry *proc_net_devsnmp6; -}; - -struct netns_packet { - struct mutex sklist_lock; - struct hlist_head sklist; -}; - -struct unix_table { - spinlock_t *locks; - struct hlist_head *buckets; -}; - -struct netns_unix { - struct unix_table table; - int sysctl_max_dgram_qlen; - struct ctl_table_header *ctl; -}; - -struct blocking_notifier_head { - struct rw_semaphore rwsem; - struct notifier_block *head; -}; - -struct netns_nexthop { - struct rb_root rb_root; - struct hlist_head *devhash; - unsigned int seq; - u32 last_id_allocated; - struct blocking_notifier_head notifier_chain; -}; - -struct inet_hashinfo; - -struct inet_timewait_death_row { - refcount_t tw_refcount; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct inet_hashinfo *hashinfo; - int sysctl_max_tw_buckets; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct udp_tunnel_gro { - struct sock *sk; - struct hlist_head list; -}; - -struct local_ports { - u32 range; - bool warned; -}; - -struct ping_group_range { - seqlock_t lock; - kgid_t range[2]; -}; - -struct sysctl_fib_multipath_hash_seed { - u32 user_seed; - u32 mp_seed; -}; - -typedef struct { - u64 key[2]; -} siphash_key_t; - -struct udp_table; - -struct ipv4_devconf; - -struct ip_ra_chain; - -struct fib_rules_ops; - -struct fib_table; - -struct inet_peer_base; - -struct fqdir; - -struct tcp_congestion_ops; - -struct tcp_fastopen_context; - -struct mr_table; - -struct fib_notifier_ops; - -struct netns_ipv4 { - __u8 __cacheline_group_begin__netns_ipv4_read_tx[0]; - u8 sysctl_tcp_early_retrans; - u8 sysctl_tcp_tso_win_divisor; - u8 sysctl_tcp_tso_rtt_log; - u8 sysctl_tcp_autocorking; - int sysctl_tcp_min_snd_mss; - unsigned int sysctl_tcp_notsent_lowat; - int sysctl_tcp_limit_output_bytes; - int sysctl_tcp_min_rtt_wlen; - int sysctl_tcp_wmem[3]; - u8 sysctl_ip_fwd_use_pmtu; - __u8 __cacheline_group_end__netns_ipv4_read_tx[0]; - __u8 __cacheline_group_begin__netns_ipv4_read_txrx[0]; - u8 sysctl_tcp_moderate_rcvbuf; - __u8 __cacheline_group_end__netns_ipv4_read_txrx[0]; - __u8 __cacheline_group_begin__netns_ipv4_read_rx[0]; - u8 sysctl_ip_early_demux; - u8 sysctl_tcp_early_demux; - u8 sysctl_tcp_l3mdev_accept; - int sysctl_tcp_reordering; - int sysctl_tcp_rmem[3]; - __u8 __cacheline_group_end__netns_ipv4_read_rx[0]; - long: 64; - struct inet_timewait_death_row tcp_death_row; - struct udp_table *udp_table; - struct udp_tunnel_gro udp_tunnel_gro[2]; - struct ctl_table_header *forw_hdr; - struct ctl_table_header *frags_hdr; - struct ctl_table_header *ipv4_hdr; - struct ctl_table_header *route_hdr; - struct ctl_table_header *xfrm4_hdr; - struct ipv4_devconf *devconf_all; - struct ipv4_devconf *devconf_dflt; - struct ip_ra_chain *ra_chain; - struct mutex ra_mutex; - struct fib_rules_ops *rules_ops; - struct fib_table *fib_main; - struct fib_table *fib_default; - unsigned int fib_rules_require_fldissect; - bool fib_has_custom_rules; - bool fib_has_custom_local_routes; - bool fib_offload_disabled; - u8 sysctl_tcp_shrink_window; - atomic_t fib_num_tclassid_users; - struct hlist_head *fib_table_hash; - struct sock *fibnl; - struct hlist_head *fib_info_hash; - unsigned int fib_info_hash_bits; - unsigned int fib_info_cnt; - struct sock *mc_autojoin_sk; - struct inet_peer_base *peers; - struct fqdir *fqdir; - u8 sysctl_icmp_echo_ignore_all; - u8 sysctl_icmp_echo_enable_probe; - u8 sysctl_icmp_echo_ignore_broadcasts; - u8 sysctl_icmp_ignore_bogus_error_responses; - u8 sysctl_icmp_errors_use_inbound_ifaddr; - int sysctl_icmp_ratelimit; - int sysctl_icmp_ratemask; - int sysctl_icmp_msgs_per_sec; - int sysctl_icmp_msgs_burst; - atomic_t icmp_global_credit; - u32 icmp_global_stamp; - u32 ip_rt_min_pmtu; - int ip_rt_mtu_expires; - int ip_rt_min_advmss; - struct local_ports ip_local_ports; - u8 sysctl_tcp_ecn; - u8 sysctl_tcp_ecn_fallback; - u8 sysctl_ip_default_ttl; - u8 sysctl_ip_no_pmtu_disc; - u8 sysctl_ip_fwd_update_priority; - u8 sysctl_ip_nonlocal_bind; - u8 sysctl_ip_autobind_reuse; - u8 sysctl_ip_dynaddr; - u8 sysctl_raw_l3mdev_accept; - u8 sysctl_udp_early_demux; - u8 sysctl_nexthop_compat_mode; - u8 sysctl_fwmark_reflect; - u8 sysctl_tcp_fwmark_accept; - u8 sysctl_tcp_mtu_probing; - int sysctl_tcp_mtu_probe_floor; - int sysctl_tcp_base_mss; - int sysctl_tcp_probe_threshold; - u32 sysctl_tcp_probe_interval; - int sysctl_tcp_keepalive_time; - int sysctl_tcp_keepalive_intvl; - u8 sysctl_tcp_keepalive_probes; - u8 sysctl_tcp_syn_retries; - u8 sysctl_tcp_synack_retries; - u8 sysctl_tcp_syncookies; - u8 sysctl_tcp_migrate_req; - u8 sysctl_tcp_comp_sack_nr; - u8 sysctl_tcp_backlog_ack_defer; - u8 sysctl_tcp_pingpong_thresh; - u8 sysctl_tcp_retries1; - u8 sysctl_tcp_retries2; - u8 sysctl_tcp_orphan_retries; - u8 sysctl_tcp_tw_reuse; - unsigned int sysctl_tcp_tw_reuse_delay; - int sysctl_tcp_fin_timeout; - u8 sysctl_tcp_sack; - u8 sysctl_tcp_window_scaling; - u8 sysctl_tcp_timestamps; - int sysctl_tcp_rto_min_us; - int sysctl_tcp_rto_max_ms; - u8 sysctl_tcp_recovery; - u8 sysctl_tcp_thin_linear_timeouts; - u8 sysctl_tcp_slow_start_after_idle; - u8 sysctl_tcp_retrans_collapse; - u8 sysctl_tcp_stdurg; - u8 sysctl_tcp_rfc1337; - u8 sysctl_tcp_abort_on_overflow; - u8 sysctl_tcp_fack; - int sysctl_tcp_max_reordering; - int sysctl_tcp_adv_win_scale; - u8 sysctl_tcp_dsack; - u8 sysctl_tcp_app_win; - u8 sysctl_tcp_frto; - u8 sysctl_tcp_nometrics_save; - u8 sysctl_tcp_no_ssthresh_metrics_save; - u8 sysctl_tcp_workaround_signed_windows; - int sysctl_tcp_challenge_ack_limit; - u8 sysctl_tcp_min_tso_segs; - u8 sysctl_tcp_reflect_tos; - int sysctl_tcp_invalid_ratelimit; - int sysctl_tcp_pacing_ss_ratio; - int sysctl_tcp_pacing_ca_ratio; - unsigned int sysctl_tcp_child_ehash_entries; - long unsigned int sysctl_tcp_comp_sack_delay_ns; - long unsigned int sysctl_tcp_comp_sack_slack_ns; - int sysctl_max_syn_backlog; - int sysctl_tcp_fastopen; - const struct tcp_congestion_ops *tcp_congestion_control; - struct tcp_fastopen_context *tcp_fastopen_ctx; - unsigned int sysctl_tcp_fastopen_blackhole_timeout; - atomic_t tfo_active_disable_times; - long unsigned int tfo_active_disable_stamp; - u32 tcp_challenge_timestamp; - u32 tcp_challenge_count; - u8 sysctl_tcp_plb_enabled; - u8 sysctl_tcp_plb_idle_rehash_rounds; - u8 sysctl_tcp_plb_rehash_rounds; - u8 sysctl_tcp_plb_suspend_rto_sec; - int sysctl_tcp_plb_cong_thresh; - int sysctl_udp_wmem_min; - int sysctl_udp_rmem_min; - u8 sysctl_fib_notify_on_flag_change; - u8 sysctl_tcp_syn_linear_timeouts; - u8 sysctl_udp_l3mdev_accept; - u8 sysctl_igmp_llm_reports; - int sysctl_igmp_max_memberships; - int sysctl_igmp_max_msf; - int sysctl_igmp_qrv; - struct ping_group_range ping_group_range; - atomic_t dev_addr_genid; - unsigned int sysctl_udp_child_hash_entries; - long unsigned int *sysctl_local_reserved_ports; - int sysctl_ip_prot_sock; - struct mr_table *mrt; - struct sysctl_fib_multipath_hash_seed sysctl_fib_multipath_hash_seed; - u32 sysctl_fib_multipath_hash_fields; - u8 sysctl_fib_multipath_use_neigh; - u8 sysctl_fib_multipath_hash_policy; - struct fib_notifier_ops *notifier_ops; - unsigned int fib_seq; - struct fib_notifier_ops *ipmr_notifier_ops; - unsigned int ipmr_seq; - atomic_t rt_genid; - siphash_key_t ip_id_key; - struct hlist_head *inet_addr_lst; - struct delayed_work addr_chk_work; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct dst_entry; - -struct sk_buff; - -struct neighbour; - -struct dst_ops { - short unsigned int family; - unsigned int gc_thresh; - void (*gc)(struct dst_ops *); - struct dst_entry * (*check)(struct dst_entry *, __u32); - unsigned int (*default_advmss)(const struct dst_entry *); - unsigned int (*mtu)(const struct dst_entry *); - u32 * (*cow_metrics)(struct dst_entry *, long unsigned int); - void (*destroy)(struct dst_entry *); - void (*ifdown)(struct dst_entry *, struct net_device *); - void (*negative_advice)(struct sock *, struct dst_entry *); - void (*link_failure)(struct sk_buff *); - void (*update_pmtu)(struct dst_entry *, struct sock *, struct sk_buff *, u32, bool); - void (*redirect)(struct dst_entry *, struct sock *, struct sk_buff *); - int (*local_out)(struct net *, struct sock *, struct sk_buff *); - struct neighbour * (*neigh_lookup)(const struct dst_entry *, struct sk_buff *, const void *); - void (*confirm_neigh)(const struct dst_entry *, const void *); - struct kmem_cache *kmem_cachep; - struct percpu_counter pcpuc_entries; - long: 64; - long: 64; - long: 64; -}; - -struct netns_sysctl_ipv6 { - struct ctl_table_header *hdr; - struct ctl_table_header *route_hdr; - struct ctl_table_header *icmp_hdr; - struct ctl_table_header *frags_hdr; - struct ctl_table_header *xfrm6_hdr; - int flush_delay; - int ip6_rt_max_size; - int ip6_rt_gc_min_interval; - int ip6_rt_gc_timeout; - int ip6_rt_gc_interval; - int ip6_rt_gc_elasticity; - int ip6_rt_mtu_expires; - int ip6_rt_min_advmss; - u32 multipath_hash_fields; - u8 multipath_hash_policy; - u8 bindv6only; - u8 flowlabel_consistency; - u8 auto_flowlabels; - int icmpv6_time; - u8 icmpv6_echo_ignore_all; - u8 icmpv6_echo_ignore_multicast; - u8 icmpv6_echo_ignore_anycast; - long unsigned int icmpv6_ratemask[4]; - long unsigned int *icmpv6_ratemask_ptr; - u8 anycast_src_echo_reply; - u8 ip_nonlocal_bind; - u8 fwmark_reflect; - u8 flowlabel_state_ranges; - int idgen_retries; - int idgen_delay; - int flowlabel_reflect; - int max_dst_opts_cnt; - int max_hbh_opts_cnt; - int max_dst_opts_len; - int max_hbh_opts_len; - int seg6_flowlabel; - u32 ioam6_id; - u64 ioam6_id_wide; - u8 skip_notify_on_dev_down; - u8 fib_notify_on_flag_change; - u8 icmpv6_error_anycast_as_unicast; -}; - -struct ipv6_devconf; - -struct fib6_info; - -struct rt6_info; - -struct rt6_statistics; - -struct fib6_table; - -struct seg6_pernet_data; - -struct ioam6_pernet_data; - -struct netns_ipv6 { - struct dst_ops ip6_dst_ops; - struct netns_sysctl_ipv6 sysctl; - struct ipv6_devconf *devconf_all; - struct ipv6_devconf *devconf_dflt; - struct inet_peer_base *peers; - struct fqdir *fqdir; - struct fib6_info *fib6_null_entry; - struct rt6_info *ip6_null_entry; - struct rt6_statistics *rt6_stats; - struct timer_list ip6_fib_timer; - struct hlist_head *fib_table_hash; - spinlock_t fib_table_hash_lock; - struct fib6_table *fib6_main_tbl; - struct list_head fib6_walkers; - rwlock_t fib6_walker_lock; - spinlock_t fib6_gc_lock; - atomic_t ip6_rt_gc_expire; - long unsigned int ip6_rt_last_gc; - unsigned char flowlabel_has_excl; - bool fib6_has_custom_rules; - unsigned int fib6_rules_require_fldissect; - unsigned int fib6_routes_require_src; - struct rt6_info *ip6_prohibit_entry; - struct rt6_info *ip6_blk_hole_entry; - struct fib6_table *fib6_local_tbl; - struct fib_rules_ops *fib6_rules_ops; - struct sock *ndisc_sk; - struct sock *tcp_sk; - struct sock *igmp_sk; - struct sock *mc_autojoin_sk; - struct hlist_head *inet6_addr_lst; - spinlock_t addrconf_hash_lock; - struct delayed_work addr_chk_work; - struct list_head mr6_tables; - struct fib_rules_ops *mr6_rules_ops; - atomic_t dev_addr_genid; - atomic_t fib6_sernum; - struct seg6_pernet_data *seg6_data; - struct fib_notifier_ops *notifier_ops; - struct fib_notifier_ops *ip6mr_notifier_ops; - unsigned int ipmr_seq; - struct { - struct hlist_head head; - spinlock_t lock; - u32 seq; - } ip6addrlbl_table; - struct ioam6_pernet_data *ioam6_data; - long: 64; - long: 64; - long: 64; -}; - -struct netns_sysctl_lowpan { - struct ctl_table_header *frags_hdr; -}; - -struct netns_ieee802154_lowpan { - struct netns_sysctl_lowpan sysctl; - struct fqdir *fqdir; -}; - -struct sctp_mib; - -struct netns_sctp { - struct sctp_mib *sctp_statistics; - struct proc_dir_entry *proc_net_sctp; - struct ctl_table_header *sysctl_header; - struct sock *ctl_sock; - struct sock *udp4_sock; - struct sock *udp6_sock; - int udp_port; - int encap_port; - struct list_head local_addr_list; - struct list_head addr_waitq; - struct timer_list addr_wq_timer; - struct list_head auto_asconf_splist; - spinlock_t addr_wq_lock; - spinlock_t local_addr_lock; - unsigned int rto_initial; - unsigned int rto_min; - unsigned int rto_max; - int rto_alpha; - int rto_beta; - int max_burst; - int cookie_preserve_enable; - char *sctp_hmac_alg; - unsigned int valid_cookie_life; - unsigned int sack_timeout; - unsigned int hb_interval; - unsigned int probe_interval; - int max_retrans_association; - int max_retrans_path; - int max_retrans_init; - int pf_retrans; - int ps_retrans; - int pf_enable; - int pf_expose; - int sndbuf_policy; - int rcvbuf_policy; - int default_auto_asconf; - int addip_enable; - int addip_noauth; - int prsctp_enable; - int reconf_enable; - int auth_enable; - int intl_enable; - int ecn_enable; - int scope_policy; - int rwnd_upd_shift; - long unsigned int max_autoclose; - int l3mdev_accept; -}; - -struct nf_logger; - -struct nf_hook_entries; - -struct netns_nf { - struct proc_dir_entry *proc_netfilter; - const struct nf_logger *nf_loggers[11]; - struct ctl_table_header *nf_log_dir_header; - struct ctl_table_header *nf_lwtnl_dir_header; - struct nf_hook_entries *hooks_ipv4[5]; - struct nf_hook_entries *hooks_ipv6[5]; - struct nf_hook_entries *hooks_arp[3]; - struct nf_hook_entries *hooks_bridge[5]; - unsigned int defrag_ipv4_users; - unsigned int defrag_ipv6_users; -}; - -struct nf_generic_net { - unsigned int timeout; -}; - -struct nf_tcp_net { - unsigned int timeouts[14]; - u8 tcp_loose; - u8 tcp_be_liberal; - u8 tcp_max_retrans; - u8 tcp_ignore_invalid_rst; - unsigned int offload_timeout; -}; - -struct nf_udp_net { - unsigned int timeouts[2]; - unsigned int offload_timeout; -}; - -struct nf_icmp_net { - unsigned int timeout; -}; - -struct nf_sctp_net { - unsigned int timeouts[10]; -}; - -struct nf_gre_net { - struct list_head keymap_list; - unsigned int timeouts[2]; -}; - -struct nf_ip_net { - struct nf_generic_net generic; - struct nf_tcp_net tcp; - struct nf_udp_net udp; - struct nf_icmp_net icmp; - struct nf_icmp_net icmpv6; - struct nf_sctp_net sctp; - struct nf_gre_net gre; -}; - -struct ip_conntrack_stat; - -struct nf_ct_event_notifier; - -struct netns_ct { - bool ecache_dwork_pending; - u8 sysctl_log_invalid; - u8 sysctl_events; - u8 sysctl_acct; - u8 sysctl_tstamp; - u8 sysctl_checksum; - struct ip_conntrack_stat *stat; - struct nf_ct_event_notifier *nf_conntrack_event_cb; - struct nf_ip_net nf_ct_proto; - atomic_t labels_used; -}; - -struct netns_nftables { - unsigned int base_seq; - u8 gencursor; -}; - -struct nf_flow_table_stat; - -struct netns_ft { - struct nf_flow_table_stat *stat; -}; - -struct sk_buff_list { - struct sk_buff *next; - struct sk_buff *prev; -}; - -struct sk_buff_head { - union { - struct { - struct sk_buff *next; - struct sk_buff *prev; - }; - struct sk_buff_list list; - }; - __u32 qlen; - spinlock_t lock; -}; - -struct netns_bpf { - struct bpf_prog_array *run_array[2]; - struct bpf_prog *progs[2]; - struct list_head links[2]; -}; - -struct xfrm_policy_hash { - struct hlist_head *table; - unsigned int hmask; - u8 dbits4; - u8 sbits4; - u8 dbits6; - u8 sbits6; -}; - -struct xfrm_policy_hthresh { - struct work_struct work; - seqlock_t lock; - u8 lbits4; - u8 rbits4; - u8 lbits6; - u8 rbits6; -}; - -struct netns_xfrm { - struct list_head state_all; - struct hlist_head *state_bydst; - struct hlist_head *state_bysrc; - struct hlist_head *state_byspi; - struct hlist_head *state_byseq; - struct hlist_head *state_cache_input; - unsigned int state_hmask; - unsigned int state_num; - struct work_struct state_hash_work; - struct list_head policy_all; - struct hlist_head *policy_byidx; - unsigned int policy_idx_hmask; - unsigned int idx_generator; - struct xfrm_policy_hash policy_bydst[3]; - unsigned int policy_count[6]; - struct work_struct policy_hash_work; - struct xfrm_policy_hthresh policy_hthresh; - struct list_head inexact_bins; - struct sock *nlsk; - struct sock *nlsk_stash; - u32 sysctl_aevent_etime; - u32 sysctl_aevent_rseqth; - int sysctl_larval_drop; - u32 sysctl_acq_expires; - u8 policy_default[3]; - struct ctl_table_header *sysctl_hdr; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct dst_ops xfrm4_dst_ops; - struct dst_ops xfrm6_dst_ops; - spinlock_t xfrm_state_lock; - seqcount_spinlock_t xfrm_state_hash_generation; - seqcount_spinlock_t xfrm_policy_hash_generation; - spinlock_t xfrm_policy_lock; - struct mutex xfrm_cfg_mutex; - struct delayed_work nat_keepalive_work; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct netns_ipvs; - -struct mpls_route; - -struct netns_mpls { - int ip_ttl_propagate; - int default_ttl; - size_t platform_labels; - struct mpls_route **platform_label; - struct ctl_table_header *ctl; -}; - -struct can_dev_rcv_lists; - -struct can_pkg_stats; - -struct can_rcv_lists_stats; - -struct netns_can { - struct proc_dir_entry *proc_dir; - struct proc_dir_entry *pde_stats; - struct proc_dir_entry *pde_reset_stats; - struct proc_dir_entry *pde_rcvlist_all; - struct proc_dir_entry *pde_rcvlist_fil; - struct proc_dir_entry *pde_rcvlist_inv; - struct proc_dir_entry *pde_rcvlist_sff; - struct proc_dir_entry *pde_rcvlist_eff; - struct proc_dir_entry *pde_rcvlist_err; - struct proc_dir_entry *bcmproc_dir; - struct can_dev_rcv_lists *rx_alldev_list; - spinlock_t rcvlists_lock; - struct timer_list stattimer; - struct can_pkg_stats *pkg_stats; - struct can_rcv_lists_stats *rcv_lists_stats; - struct hlist_head cgw_list; -}; - -struct netns_xdp { - struct mutex lock; - struct hlist_head list; -}; - -struct netns_mctp { - struct list_head routes; - struct mutex bind_lock; - struct hlist_head binds[128]; - spinlock_t keys_lock; - struct hlist_head keys; - unsigned int default_net; - struct mutex neigh_lock; - struct list_head neighbours; -}; - -struct smc_stats; - -struct smc_stats_rsn; - -struct netns_smc { - struct smc_stats *smc_stats; - struct mutex mutex_fback_rsn; - struct smc_stats_rsn *fback_rsn; - bool limit_smc_hs; - struct ctl_table_header *smc_hdr; - unsigned int sysctl_autocorking_size; - unsigned int sysctl_smcr_buf_type; - int sysctl_smcr_testlink_time; - int sysctl_wmem; - int sysctl_rmem; - int sysctl_max_links_per_lgr; - int sysctl_max_conns_per_lgr; -}; - -struct uevent_sock; - -struct net_generic; - -struct net { - refcount_t passive; - spinlock_t rules_mod_lock; - unsigned int dev_base_seq; - u32 ifindex; - spinlock_t nsid_lock; - atomic_t fnhe_genid; - struct list_head list; - struct list_head exit_list; - struct llist_node defer_free_list; - struct llist_node cleanup_list; - struct list_head ptype_all; - struct list_head ptype_specific; - struct key_tag *key_domain; - struct user_namespace *user_ns; - struct ucounts *ucounts; - struct idr netns_ids; - struct ns_common ns; - struct ref_tracker_dir refcnt_tracker; - struct ref_tracker_dir notrefcnt_tracker; - struct list_head dev_base_head; - struct proc_dir_entry *proc_net; - struct proc_dir_entry *proc_net_stat; - struct ctl_table_set sysctls; - struct sock *rtnl; - struct sock *genl_sock; - struct uevent_sock *uevent_sock; - struct hlist_head *dev_name_head; - struct hlist_head *dev_index_head; - struct xarray dev_by_index; - struct raw_notifier_head netdev_chain; - u32 hash_mix; - struct net_device *loopback_dev; - struct list_head rules_ops; - struct netns_core core; - struct netns_mib mib; - struct netns_packet packet; - struct netns_unix unx; - struct netns_nexthop nexthop; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct netns_ipv4 ipv4; - struct netns_ipv6 ipv6; - struct netns_ieee802154_lowpan ieee802154_lowpan; - struct netns_sctp sctp; - struct netns_nf nf; - struct netns_ct ct; - struct netns_nftables nft; - struct netns_ft ft; - struct sk_buff_head wext_nlevents; - struct net_generic *gen; - struct netns_bpf bpf; - long: 64; - long: 64; - struct netns_xfrm xfrm; - u64 net_cookie; - struct netns_ipvs *ipvs; - struct netns_mpls mpls; - struct netns_can can; - struct netns_xdp xdp; - struct netns_mctp mctp; - struct sock *crypto_nlsk; - struct sock *diag_nlsk; - struct netns_smc smc; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -typedef int (*notifier_fn_t)(struct notifier_block *, long unsigned int, void *); - -struct notifier_block { - notifier_fn_t notifier_call; - struct notifier_block *next; - int priority; -}; - -typedef unsigned int sk_buff_data_t; - -struct skb_ext; - -struct sk_buff { - union { - struct { - struct sk_buff *next; - struct sk_buff *prev; - union { - struct net_device *dev; - long unsigned int dev_scratch; - }; - }; - struct rb_node rbnode; - struct list_head list; - struct llist_node ll_node; - }; - struct sock *sk; - union { - ktime_t tstamp; - u64 skb_mstamp_ns; - }; - char cb[48]; - union { - struct { - long unsigned int _skb_refdst; - void (*destructor)(struct sk_buff *); - }; - struct list_head tcp_tsorted_anchor; - long unsigned int _sk_redir; - }; - long unsigned int _nfct; - unsigned int len; - unsigned int data_len; - __u16 mac_len; - __u16 hdr_len; - __u16 queue_mapping; - __u8 __cloned_offset[0]; - __u8 cloned: 1; - __u8 nohdr: 1; - __u8 fclone: 2; - __u8 peeked: 1; - __u8 head_frag: 1; - __u8 pfmemalloc: 1; - __u8 pp_recycle: 1; - __u8 active_extensions; - union { - struct { - __u8 __pkt_type_offset[0]; - __u8 pkt_type: 3; - __u8 ignore_df: 1; - __u8 dst_pending_confirm: 1; - __u8 ip_summed: 2; - __u8 ooo_okay: 1; - __u8 __mono_tc_offset[0]; - __u8 tstamp_type: 2; - __u8 tc_at_ingress: 1; - __u8 tc_skip_classify: 1; - __u8 remcsum_offload: 1; - __u8 csum_complete_sw: 1; - __u8 csum_level: 2; - __u8 inner_protocol_type: 1; - __u8 l4_hash: 1; - __u8 sw_hash: 1; - __u8 wifi_acked_valid: 1; - __u8 wifi_acked: 1; - __u8 no_fcs: 1; - __u8 encapsulation: 1; - __u8 encap_hdr_csum: 1; - __u8 csum_valid: 1; - __u8 ndisc_nodetype: 2; - __u8 ipvs_property: 1; - __u8 nf_trace: 1; - __u8 offload_fwd_mark: 1; - __u8 offload_l3_fwd_mark: 1; - __u8 redirected: 1; - __u8 from_ingress: 1; - __u8 nf_skip_egress: 1; - __u8 decrypted: 1; - __u8 slow_gro: 1; - __u8 csum_not_inet: 1; - __u8 unreadable: 1; - __u16 tc_index; - u16 alloc_cpu; - union { - __wsum csum; - struct { - __u16 csum_start; - __u16 csum_offset; - }; - }; - __u32 priority; - int skb_iif; - __u32 hash; - union { - u32 vlan_all; - struct { - __be16 vlan_proto; - __u16 vlan_tci; - }; - }; - union { - unsigned int napi_id; - unsigned int sender_cpu; - }; - __u32 secmark; - union { - __u32 mark; - __u32 reserved_tailroom; - }; - union { - __be16 inner_protocol; - __u8 inner_ipproto; - }; - __u16 inner_transport_header; - __u16 inner_network_header; - __u16 inner_mac_header; - __be16 protocol; - __u16 transport_header; - __u16 network_header; - __u16 mac_header; - }; - struct { - __u8 __pkt_type_offset[0]; - __u8 pkt_type: 3; - __u8 ignore_df: 1; - __u8 dst_pending_confirm: 1; - __u8 ip_summed: 2; - __u8 ooo_okay: 1; - __u8 __mono_tc_offset[0]; - __u8 tstamp_type: 2; - __u8 tc_at_ingress: 1; - __u8 tc_skip_classify: 1; - __u8 remcsum_offload: 1; - __u8 csum_complete_sw: 1; - __u8 csum_level: 2; - __u8 inner_protocol_type: 1; - __u8 l4_hash: 1; - __u8 sw_hash: 1; - __u8 wifi_acked_valid: 1; - __u8 wifi_acked: 1; - __u8 no_fcs: 1; - __u8 encapsulation: 1; - __u8 encap_hdr_csum: 1; - __u8 csum_valid: 1; - __u8 ndisc_nodetype: 2; - __u8 ipvs_property: 1; - __u8 nf_trace: 1; - __u8 offload_fwd_mark: 1; - __u8 offload_l3_fwd_mark: 1; - __u8 redirected: 1; - __u8 from_ingress: 1; - __u8 nf_skip_egress: 1; - __u8 decrypted: 1; - __u8 slow_gro: 1; - __u8 csum_not_inet: 1; - __u8 unreadable: 1; - __u16 tc_index; - u16 alloc_cpu; - union { - __wsum csum; - struct { - __u16 csum_start; - __u16 csum_offset; - }; - }; - __u32 priority; - int skb_iif; - __u32 hash; - union { - u32 vlan_all; - struct { - __be16 vlan_proto; - __u16 vlan_tci; - }; - }; - union { - unsigned int napi_id; - unsigned int sender_cpu; - }; - __u32 secmark; - union { - __u32 mark; - __u32 reserved_tailroom; - }; - union { - __be16 inner_protocol; - __u8 inner_ipproto; - }; - __u16 inner_transport_header; - __u16 inner_network_header; - __u16 inner_mac_header; - __be16 protocol; - __u16 transport_header; - __u16 network_header; - __u16 mac_header; - } headers; - }; - sk_buff_data_t tail; - sk_buff_data_t end; - unsigned char *head; - unsigned char *data; - unsigned int truesize; - refcount_t users; - struct skb_ext *extensions; -}; - -struct in6_addr { - union { - __u8 u6_addr8[16]; - __be16 u6_addr16[8]; - __be32 u6_addr32[4]; - } in6_u; -}; - -struct ipstats_mib { - u64 mibs[38]; - struct u64_stats_sync syncp; -}; - -struct icmp_mib { - long unsigned int mibs[30]; -}; - -struct icmpmsg_mib { - atomic_long_t mibs[512]; -}; - -struct icmpv6_mib { - long unsigned int mibs[7]; -}; - -struct icmpv6msg_mib { - atomic_long_t mibs[512]; -}; - -struct tcp_mib { - long unsigned int mibs[16]; -}; - -struct udp_mib { - long unsigned int mibs[10]; -}; - -struct linux_mib { - long unsigned int mibs[136]; -}; - -struct linux_xfrm_mib { - long unsigned int mibs[33]; -}; - -struct linux_tls_mib { - long unsigned int mibs[18]; -}; - -struct inet_frags; - -struct fqdir { - long int high_thresh; - long int low_thresh; - int timeout; - int max_dist; - struct inet_frags *f; - struct net *net; - bool dead; - long: 64; - long: 64; - struct rhashtable rhashtable; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - atomic_long_t mem; - struct work_struct destroy_work; - struct llist_node free_list; - long: 64; - long: 64; -}; - -struct inet_frag_queue; - -struct inet_frags { - unsigned int qsize; - void (*constructor)(struct inet_frag_queue *, const void *); - void (*destructor)(struct inet_frag_queue *); - void (*frag_expire)(struct timer_list *); - struct kmem_cache *frags_cachep; - const char *frags_cache_name; - struct rhashtable_params rhash_params; - refcount_t refcnt; - struct completion completion; -}; - -struct frag_v4_compare_key { - __be32 saddr; - __be32 daddr; - u32 user; - u32 vif; - __be16 id; - u16 protocol; -}; - -struct frag_v6_compare_key { - struct in6_addr saddr; - struct in6_addr daddr; - u32 user; - __be32 id; - u32 iif; -}; - -struct inet_frag_queue { - struct rhash_head node; - union { - struct frag_v4_compare_key v4; - struct frag_v6_compare_key v6; - } key; - struct timer_list timer; - spinlock_t lock; - refcount_t refcnt; - struct rb_root rb_fragments; - struct sk_buff *fragments_tail; - struct sk_buff *last_run_head; - ktime_t stamp; - int len; - int meat; - u8 tstamp_type; - __u8 flags; - u16 max_size; - struct fqdir *fqdir; - struct callback_head rcu; -}; - -enum tcp_ca_event { - CA_EVENT_TX_START = 0, - CA_EVENT_CWND_RESTART = 1, - CA_EVENT_COMPLETE_CWR = 2, - CA_EVENT_LOSS = 3, - CA_EVENT_ECN_NO_CE = 4, - CA_EVENT_ECN_IS_CE = 5, -}; - -struct ack_sample; - -struct rate_sample; - -union tcp_cc_info; - -struct tcp_congestion_ops { - u32 (*ssthresh)(struct sock *); - void (*cong_avoid)(struct sock *, u32, u32); - void (*set_state)(struct sock *, u8); - void (*cwnd_event)(struct sock *, enum tcp_ca_event); - void (*in_ack_event)(struct sock *, u32); - void (*pkts_acked)(struct sock *, const struct ack_sample *); - u32 (*min_tso_segs)(struct sock *); - void (*cong_control)(struct sock *, u32, int, const struct rate_sample *); - u32 (*undo_cwnd)(struct sock *); - u32 (*sndbuf_expand)(struct sock *); - size_t (*get_info)(struct sock *, u32, int *, union tcp_cc_info *); - char name[16]; - struct module *owner; - struct list_head list; - u32 key; - u32 flags; - void (*init)(struct sock *); - void (*release)(struct sock *); - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -typedef struct {} netdevice_tracker; - -struct xfrm_state; - -struct uncached_list; - -struct lwtunnel_state; - -struct dst_entry { - union { - struct net_device *dev; - struct net_device *dev_rcu; - }; - struct dst_ops *ops; - long unsigned int _metrics; - long unsigned int expires; - struct xfrm_state *xfrm; - int (*input)(struct sk_buff *); - int (*output)(struct net *, struct sock *, struct sk_buff *); - short unsigned int flags; - short int obsolete; - short unsigned int header_len; - short unsigned int trailer_len; - rcuref_t __rcuref; - int __use; - long unsigned int lastuse; - struct callback_head callback_head; - short int error; - short int __pad; - __u32 tclassid; - netdevice_tracker dev_tracker; - struct list_head rt_uncached; - struct uncached_list *rt_uncached_list; - struct lwtunnel_state *lwtstate; -}; - -enum nf_log_type { - NF_LOG_TYPE_LOG = 0, - NF_LOG_TYPE_ULOG = 1, - NF_LOG_TYPE_MAX = 2, -}; - -typedef u8 u_int8_t; - -struct nf_loginfo; - -typedef void nf_logfn(struct net *, u_int8_t, unsigned int, const struct sk_buff *, const struct net_device *, const struct net_device *, const struct nf_loginfo *, const char *); - -struct nf_logger { - char *name; - enum nf_log_type type; - nf_logfn *logfn; - struct module *me; -}; - -struct ip_conntrack_stat { - unsigned int found; - unsigned int invalid; - unsigned int insert; - unsigned int insert_failed; - unsigned int clash_resolve; - unsigned int drop; - unsigned int early_drop; - unsigned int error; - unsigned int expect_new; - unsigned int expect_create; - unsigned int expect_delete; - unsigned int search_restart; - unsigned int chaintoolong; -}; - -struct nf_flow_table_stat { - unsigned int count_wq_add; - unsigned int count_wq_del; - unsigned int count_wq_stats; -}; - -enum { - TCA_FLOWER_KEY_FLAGS_IS_FRAGMENT = 1, - TCA_FLOWER_KEY_FLAGS_FRAG_IS_FIRST = 2, - TCA_FLOWER_KEY_FLAGS_TUNNEL_CSUM = 4, - TCA_FLOWER_KEY_FLAGS_TUNNEL_DONT_FRAGMENT = 8, - TCA_FLOWER_KEY_FLAGS_TUNNEL_OAM = 16, - TCA_FLOWER_KEY_FLAGS_TUNNEL_CRIT_OPT = 32, - __TCA_FLOWER_KEY_FLAGS_MAX = 33, -}; - -enum flow_dissector_key_id { - FLOW_DISSECTOR_KEY_CONTROL = 0, - FLOW_DISSECTOR_KEY_BASIC = 1, - FLOW_DISSECTOR_KEY_IPV4_ADDRS = 2, - FLOW_DISSECTOR_KEY_IPV6_ADDRS = 3, - FLOW_DISSECTOR_KEY_PORTS = 4, - FLOW_DISSECTOR_KEY_PORTS_RANGE = 5, - FLOW_DISSECTOR_KEY_ICMP = 6, - FLOW_DISSECTOR_KEY_ETH_ADDRS = 7, - FLOW_DISSECTOR_KEY_TIPC = 8, - FLOW_DISSECTOR_KEY_ARP = 9, - FLOW_DISSECTOR_KEY_VLAN = 10, - FLOW_DISSECTOR_KEY_FLOW_LABEL = 11, - FLOW_DISSECTOR_KEY_GRE_KEYID = 12, - FLOW_DISSECTOR_KEY_MPLS_ENTROPY = 13, - FLOW_DISSECTOR_KEY_ENC_KEYID = 14, - FLOW_DISSECTOR_KEY_ENC_IPV4_ADDRS = 15, - FLOW_DISSECTOR_KEY_ENC_IPV6_ADDRS = 16, - FLOW_DISSECTOR_KEY_ENC_CONTROL = 17, - FLOW_DISSECTOR_KEY_ENC_PORTS = 18, - FLOW_DISSECTOR_KEY_MPLS = 19, - FLOW_DISSECTOR_KEY_TCP = 20, - FLOW_DISSECTOR_KEY_IP = 21, - FLOW_DISSECTOR_KEY_CVLAN = 22, - FLOW_DISSECTOR_KEY_ENC_IP = 23, - FLOW_DISSECTOR_KEY_ENC_OPTS = 24, - FLOW_DISSECTOR_KEY_META = 25, - FLOW_DISSECTOR_KEY_CT = 26, - FLOW_DISSECTOR_KEY_HASH = 27, - FLOW_DISSECTOR_KEY_NUM_OF_VLANS = 28, - FLOW_DISSECTOR_KEY_PPPOE = 29, - FLOW_DISSECTOR_KEY_L2TPV3 = 30, - FLOW_DISSECTOR_KEY_CFM = 31, - FLOW_DISSECTOR_KEY_IPSEC = 32, - FLOW_DISSECTOR_KEY_MAX = 33, -}; - -struct skb_ext { - refcount_t refcnt; - u8 offset[5]; - u8 chunks; - long: 0; - char data[0]; -}; - -enum skb_ext_id { - SKB_EXT_BRIDGE_NF = 0, - SKB_EXT_SEC_PATH = 1, - TC_SKB_EXT = 2, - SKB_EXT_MPTCP = 3, - SKB_EXT_MCTP = 4, - SKB_EXT_NUM = 5, -}; - -enum audit_ntp_type { - AUDIT_NTP_OFFSET = 0, - AUDIT_NTP_FREQ = 1, - AUDIT_NTP_STATUS = 2, - AUDIT_NTP_TAI = 3, - AUDIT_NTP_TICK = 4, - AUDIT_NTP_ADJUST = 5, - AUDIT_NTP_NVALS = 6, -}; - -enum cc_attr { - CC_ATTR_MEM_ENCRYPT = 0, - CC_ATTR_HOST_MEM_ENCRYPT = 1, - CC_ATTR_GUEST_MEM_ENCRYPT = 2, - CC_ATTR_GUEST_STATE_ENCRYPT = 3, - CC_ATTR_GUEST_UNROLL_STRING_IO = 4, - CC_ATTR_GUEST_SEV_SNP = 5, - CC_ATTR_GUEST_SNP_SECURE_TSC = 6, - CC_ATTR_HOST_SEV_SNP = 7, -}; - -enum { - UNAME26 = 131072, - ADDR_NO_RANDOMIZE = 262144, - FDPIC_FUNCPTRS = 524288, - MMAP_PAGE_ZERO = 1048576, - ADDR_COMPAT_LAYOUT = 2097152, - READ_IMPLIES_EXEC = 4194304, - ADDR_LIMIT_32BIT = 8388608, - SHORT_INODE = 16777216, - WHOLE_SECONDS = 33554432, - STICKY_TIMEOUTS = 67108864, - ADDR_LIMIT_3GB = 134217728, -}; - -struct cpuinfo_topology { - u32 apicid; - u32 initial_apicid; - u32 pkg_id; - u32 die_id; - u32 cu_id; - u32 core_id; - u32 logical_pkg_id; - u32 logical_die_id; - u32 logical_core_id; - u32 amd_node_id; - u32 llc_id; - u32 l2c_id; - union { - u32 cpu_type; - struct { - u32 intel_native_model_id: 24; - u32 intel_type: 8; - }; - struct { - u32 amd_num_processors: 16; - u32 amd_power_eff_ranking: 8; - u32 amd_native_model_id: 4; - u32 amd_type: 4; - }; - }; -}; - -struct cpuinfo_x86 { - union { - struct { - __u8 x86_model; - __u8 x86; - __u8 x86_vendor; - __u8 x86_reserved; - }; - __u32 x86_vfm; - }; - __u8 x86_stepping; - int x86_tlbsize; - __u32 vmx_capability[5]; - __u8 x86_virt_bits; - __u8 x86_phys_bits; - __u32 extended_cpuid_level; - int cpuid_level; - union { - __u32 x86_capability[24]; - long unsigned int x86_capability_alignment; - }; - char x86_vendor_id[16]; - char x86_model_id[64]; - struct cpuinfo_topology topo; - unsigned int x86_cache_size; - int x86_cache_alignment; - int x86_cache_max_rmid; - int x86_cache_occ_scale; - int x86_cache_mbm_width_offset; - int x86_power; - long unsigned int loops_per_jiffy; - u64 ppin; - u16 x86_clflush_size; - u16 booted_cores; - u16 cpu_index; - bool smt_active; - u32 microcode; - u8 x86_cache_bits; - unsigned int initialized: 1; -}; - -enum cc_vendor { - CC_VENDOR_NONE = 0, - CC_VENDOR_AMD = 1, - CC_VENDOR_INTEL = 2, -}; - -struct cc_attr_flags { - __u64 host_sev_snp: 1; - __u64 __resv: 63; -}; - -enum migratetype { - MIGRATE_UNMOVABLE = 0, - MIGRATE_MOVABLE = 1, - MIGRATE_RECLAIMABLE = 2, - MIGRATE_PCPTYPES = 3, - MIGRATE_HIGHATOMIC = 3, - MIGRATE_CMA = 4, - __MIGRATE_TYPE_END = 4, - MIGRATE_ISOLATE = 5, - MIGRATE_TYPES = 6, -}; - -enum numa_stat_item { - NUMA_HIT = 0, - NUMA_MISS = 1, - NUMA_FOREIGN = 2, - NUMA_INTERLEAVE_HIT = 3, - NUMA_LOCAL = 4, - NUMA_OTHER = 5, - NR_VM_NUMA_EVENT_ITEMS = 6, -}; - -enum zone_stat_item { - NR_FREE_PAGES = 0, - NR_FREE_PAGES_BLOCKS = 1, - NR_ZONE_LRU_BASE = 2, - NR_ZONE_INACTIVE_ANON = 2, - NR_ZONE_ACTIVE_ANON = 3, - NR_ZONE_INACTIVE_FILE = 4, - NR_ZONE_ACTIVE_FILE = 5, - NR_ZONE_UNEVICTABLE = 6, - NR_ZONE_WRITE_PENDING = 7, - NR_MLOCK = 8, - NR_ZSPAGES = 9, - NR_FREE_CMA_PAGES = 10, - NR_UNACCEPTED = 11, - NR_VM_ZONE_STAT_ITEMS = 12, -}; - -enum node_stat_item { - NR_LRU_BASE = 0, - NR_INACTIVE_ANON = 0, - NR_ACTIVE_ANON = 1, - NR_INACTIVE_FILE = 2, - NR_ACTIVE_FILE = 3, - NR_UNEVICTABLE = 4, - NR_SLAB_RECLAIMABLE_B = 5, - NR_SLAB_UNRECLAIMABLE_B = 6, - NR_ISOLATED_ANON = 7, - NR_ISOLATED_FILE = 8, - WORKINGSET_NODES = 9, - WORKINGSET_REFAULT_BASE = 10, - WORKINGSET_REFAULT_ANON = 10, - WORKINGSET_REFAULT_FILE = 11, - WORKINGSET_ACTIVATE_BASE = 12, - WORKINGSET_ACTIVATE_ANON = 12, - WORKINGSET_ACTIVATE_FILE = 13, - WORKINGSET_RESTORE_BASE = 14, - WORKINGSET_RESTORE_ANON = 14, - WORKINGSET_RESTORE_FILE = 15, - WORKINGSET_NODERECLAIM = 16, - NR_ANON_MAPPED = 17, - NR_FILE_MAPPED = 18, - NR_FILE_PAGES = 19, - NR_FILE_DIRTY = 20, - NR_WRITEBACK = 21, - NR_SHMEM = 22, - NR_SHMEM_THPS = 23, - NR_SHMEM_PMDMAPPED = 24, - NR_FILE_THPS = 25, - NR_FILE_PMDMAPPED = 26, - NR_ANON_THPS = 27, - NR_VMSCAN_WRITE = 28, - NR_VMSCAN_IMMEDIATE = 29, - NR_DIRTIED = 30, - NR_WRITTEN = 31, - NR_THROTTLED_WRITTEN = 32, - NR_KERNEL_MISC_RECLAIMABLE = 33, - NR_FOLL_PIN_ACQUIRED = 34, - NR_FOLL_PIN_RELEASED = 35, - NR_KERNEL_STACK_KB = 36, - NR_PAGETABLE = 37, - NR_SECONDARY_PAGETABLE = 38, - NR_IOMMU_PAGES = 39, - NR_SWAPCACHE = 40, - PGPROMOTE_SUCCESS = 41, - PGPROMOTE_CANDIDATE = 42, - PGDEMOTE_KSWAPD = 43, - PGDEMOTE_DIRECT = 44, - PGDEMOTE_KHUGEPAGED = 45, - PGDEMOTE_PROACTIVE = 46, - NR_HUGETLB = 47, - NR_BALLOON_PAGES = 48, - NR_VM_NODE_STAT_ITEMS = 49, -}; - -enum lru_list { - LRU_INACTIVE_ANON = 0, - LRU_ACTIVE_ANON = 1, - LRU_INACTIVE_FILE = 2, - LRU_ACTIVE_FILE = 3, - LRU_UNEVICTABLE = 4, - NR_LRU_LISTS = 5, -}; - -enum vmscan_throttle_state { - VMSCAN_THROTTLE_WRITEBACK = 0, - VMSCAN_THROTTLE_ISOLATED = 1, - VMSCAN_THROTTLE_NOPROGRESS = 2, - VMSCAN_THROTTLE_CONGESTED = 3, - NR_VMSCAN_THROTTLE = 4, -}; - -enum { - MM_LEAF_TOTAL = 0, - MM_LEAF_YOUNG = 1, - MM_NONLEAF_FOUND = 2, - MM_NONLEAF_ADDED = 3, - NR_MM_STATS = 4, -}; - -enum zone_watermarks { - WMARK_MIN = 0, - WMARK_LOW = 1, - WMARK_HIGH = 2, - WMARK_PROMO = 3, - NR_WMARK = 4, -}; - -enum { - ZONELIST_FALLBACK = 0, - ZONELIST_NOFALLBACK = 1, - MAX_ZONELISTS = 2, -}; - -enum pg_level { - PG_LEVEL_NONE = 0, - PG_LEVEL_4K = 1, - PG_LEVEL_2M = 2, - PG_LEVEL_1G = 3, - PG_LEVEL_512G = 4, - PG_LEVEL_256T = 5, - PG_LEVEL_NUM = 6, -}; - -struct paravirt_callee_save { - void *func; -}; - -struct pv_cpu_ops { - void (*io_delay)(void); -}; - -struct pv_irq_ops { - void (*safe_halt)(void); - void (*halt)(void); -}; - -struct flush_tlb_info; - -struct pv_mmu_ops { - void (*flush_tlb_user)(void); - void (*flush_tlb_kernel)(void); - void (*flush_tlb_one_user)(long unsigned int); - void (*flush_tlb_multi)(const struct cpumask *, const struct flush_tlb_info *); - void (*exit_mmap)(struct mm_struct *); - void (*notify_page_enc_status_changed)(long unsigned int, int, bool); -}; - -struct flush_tlb_info { - struct mm_struct *mm; - long unsigned int start; - long unsigned int end; - u64 new_tlb_gen; - unsigned int initiating_cpu; - u8 stride_shift; - u8 freed_tables; - u8 trim_cpumask; -}; - -struct pv_lock_ops { - void (*queued_spin_lock_slowpath)(struct qspinlock *, u32); - struct paravirt_callee_save queued_spin_unlock; - void (*wait)(u8 *, u8); - void (*kick)(int); - struct paravirt_callee_save vcpu_is_preempted; -}; - -struct paravirt_patch_template { - struct pv_cpu_ops cpu; - struct pv_irq_ops irq; - struct pv_mmu_ops mmu; - struct pv_lock_ops lock; -}; - -struct io_bitmap { - u64 sequence; - refcount_t refcnt; - unsigned int max; - long unsigned int bitmap[1024]; -}; - -enum rseq_cs_flags_bit { - RSEQ_CS_FLAG_NO_RESTART_ON_PREEMPT_BIT = 0, - RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL_BIT = 1, - RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE_BIT = 2, -}; - -struct x86_guest { - int (*enc_status_change_prepare)(long unsigned int, int, bool); - int (*enc_status_change_finish)(long unsigned int, int, bool); - bool (*enc_tlb_flush_required)(bool); - bool (*enc_cache_flush_required)(void); - void (*enc_kexec_begin)(void); - void (*enc_kexec_finish)(void); -}; - -struct x86_cpuinit_ops { - void (*setup_percpu_clockev)(void); - void (*early_percpu_clock_init)(void); - void (*fixup_cpu_id)(struct cpuinfo_x86 *, int); - bool parallel_bringup; -}; - -struct x86_legacy_devices { - int pnpbios; -}; - -enum x86_legacy_i8042_state { - X86_LEGACY_I8042_PLATFORM_ABSENT = 0, - X86_LEGACY_I8042_FIRMWARE_ABSENT = 1, - X86_LEGACY_I8042_EXPECTED_PRESENT = 2, -}; - -struct x86_legacy_features { - enum x86_legacy_i8042_state i8042; - int rtc; - int warm_reset; - int no_vga; - int reserve_bios_regions; - struct x86_legacy_devices devices; -}; - -struct ghcb; - -struct x86_hyper_runtime { - void (*pin_vcpu)(int); - void (*sev_es_hcall_prepare)(struct ghcb *, struct pt_regs *); - bool (*sev_es_hcall_finish)(struct ghcb *, struct pt_regs *); - bool (*is_private_mmio)(u64); -}; - -struct x86_platform_ops { - long unsigned int (*calibrate_cpu)(void); - long unsigned int (*calibrate_tsc)(void); - void (*get_wallclock)(struct timespec64 *); - int (*set_wallclock)(const struct timespec64 *); - void (*iommu_shutdown)(void); - bool (*is_untracked_pat_range)(u64, u64); - void (*nmi_init)(void); - unsigned char (*get_nmi_reason)(void); - void (*save_sched_clock_state)(void); - void (*restore_sched_clock_state)(void); - void (*apic_post_init)(void); - struct x86_legacy_features legacy; - void (*set_legacy_features)(void); - void (*realmode_reserve)(void); - void (*realmode_init)(void); - struct x86_hyper_runtime hyper; - struct x86_guest guest; -}; - -struct tdx_module_args { - u64 rcx; - u64 rdx; - u64 r8; - u64 r9; - u64 r10; - u64 r11; - u64 r12; - u64 r13; - u64 r14; - u64 r15; - u64 rbx; - u64 rdi; - u64 rsi; -}; - -struct ve_info { - u64 exit_reason; - u64 exit_qual; - u64 gla; - u64 gpa; - u32 instr_len; - u32 instr_info; -}; - -typedef unsigned int insn_attr_t; - -typedef unsigned char insn_byte_t; - -typedef int insn_value_t; - -struct insn_field { - union { - insn_value_t value; - insn_byte_t bytes[4]; - }; - unsigned char got; - unsigned char nbytes; -}; - -struct insn { - struct insn_field prefixes; - struct insn_field rex_prefix; - struct insn_field vex_prefix; - struct insn_field opcode; - struct insn_field modrm; - struct insn_field sib; - struct insn_field displacement; - union { - struct insn_field immediate; - struct insn_field moffset1; - struct insn_field immediate1; - }; - union { - struct insn_field moffset2; - struct insn_field immediate2; - }; - int emulate_prefix_size; - insn_attr_t attr; - unsigned char opnd_bytes; - unsigned char addr_bytes; - unsigned char length; - unsigned char x86_64; - const insn_byte_t *kaddr; - const insn_byte_t *end_kaddr; - const insn_byte_t *next_byte; -}; - -enum insn_mode { - INSN_MODE_32 = 0, - INSN_MODE_64 = 1, - INSN_MODE_KERN = 2, - INSN_NUM_MODES = 3, -}; - -enum insn_mmio_type { - INSN_MMIO_DECODE_FAILED = 0, - INSN_MMIO_WRITE = 1, - INSN_MMIO_WRITE_IMM = 2, - INSN_MMIO_READ = 3, - INSN_MMIO_READ_ZERO_EXTEND = 4, - INSN_MMIO_READ_SIGN_EXTEND = 5, - INSN_MMIO_MOVS = 6, -}; - -typedef u32 phandle; - -struct property; - -struct device_node { - const char *name; - phandle phandle; - const char *full_name; - struct fwnode_handle fwnode; - struct property *properties; - struct property *deadprops; - struct device_node *parent; - struct device_node *child; - struct device_node *sibling; - long unsigned int _flags; - void *data; -}; - -struct property { - char *name; - int length; - void *value; - struct property *next; -}; - -enum unwind_user_type_bits { - UNWIND_USER_TYPE_FP_BIT = 0, - NR_UNWIND_USER_TYPE_BITS = 1, -}; - -enum rseq_event_mask_bits { - RSEQ_EVENT_PREEMPT_BIT = 0, - RSEQ_EVENT_SIGNAL_BIT = 1, - RSEQ_EVENT_MIGRATE_BIT = 2, -}; - -typedef __u64 __be64; - -enum node_states { - N_POSSIBLE = 0, - N_ONLINE = 1, - N_NORMAL_MEMORY = 2, - N_HIGH_MEMORY = 2, - N_MEMORY = 3, - N_CPU = 4, - N_GENERIC_INITIATOR = 5, - NR_NODE_STATES = 6, -}; - -struct smp_ops { - void (*smp_prepare_boot_cpu)(void); - void (*smp_prepare_cpus)(unsigned int); - void (*smp_cpus_done)(unsigned int); - void (*stop_other_cpus)(int); - void (*crash_stop_other_cpus)(void); - void (*smp_send_reschedule)(int); - void (*cleanup_dead_cpu)(unsigned int); - void (*poll_sync_state)(void); - int (*kick_ap_alive)(unsigned int, struct task_struct *); - int (*cpu_disable)(void); - void (*cpu_die)(unsigned int); - void (*play_dead)(void); - void (*stop_this_cpu)(void); - void (*send_call_func_ipi)(const struct cpumask *); - void (*send_call_func_single_ipi)(int); -}; - -typedef struct mutex *class_mutex_t; - -struct ghcb_save_area { - u8 reserved_0x0[203]; - u8 cpl; - u8 reserved_0xcc[116]; - u64 xss; - u8 reserved_0x148[24]; - u64 dr7; - u8 reserved_0x168[16]; - u64 rip; - u8 reserved_0x180[88]; - u64 rsp; - u8 reserved_0x1e0[24]; - u64 rax; - u8 reserved_0x200[264]; - u64 rcx; - u64 rdx; - u64 rbx; - u8 reserved_0x320[8]; - u64 rbp; - u64 rsi; - u64 rdi; - u64 r8; - u64 r9; - u64 r10; - u64 r11; - u64 r12; - u64 r13; - u64 r14; - u64 r15; - u8 reserved_0x380[16]; - u64 sw_exit_code; - u64 sw_exit_info_1; - u64 sw_exit_info_2; - u64 sw_scratch; - u8 reserved_0x3b0[56]; - u64 xcr0; - u8 valid_bitmap[16]; - u64 x87_state_gpa; -}; - -struct ghcb { - struct ghcb_save_area save; - u8 reserved_save[1016]; - u8 shared_buffer[2032]; - u8 reserved_0xff0[10]; - u16 protocol_version; - u32 ghcb_usage; -}; - -enum pagetype { - PGTY_buddy = 240, - PGTY_offline = 241, - PGTY_table = 242, - PGTY_guard = 243, - PGTY_hugetlb = 244, - PGTY_slab = 245, - PGTY_zsmalloc = 246, - PGTY_unaccepted = 247, - PGTY_large_kmalloc = 248, - PGTY_mapcount_underflow = 255, -}; - -typedef struct { - __u8 b[16]; -} guid_t; - -struct cdev { - struct kobject kobj; - struct module *owner; - const struct file_operations *ops; - struct list_head list; - dev_t dev; - unsigned int count; -}; - -struct kobj_attribute { - struct attribute attr; - ssize_t (*show)(struct kobject *, struct kobj_attribute *, char *); - ssize_t (*store)(struct kobject *, struct kobj_attribute *, const char *, size_t); -}; - -struct pdev_archdata {}; - -typedef long unsigned int efi_status_t; - -typedef u8 efi_bool_t; - -typedef u16 efi_char16_t; - -typedef guid_t efi_guid_t; - -typedef struct { - u64 signature; - u32 revision; - u32 headersize; - u32 crc32; - u32 reserved; -} efi_table_hdr_t; - -typedef struct { - u32 type; - u32 pad; - u64 phys_addr; - u64 virt_addr; - u64 num_pages; - u64 attribute; -} efi_memory_desc_t; - -typedef struct { - efi_guid_t guid; - u32 headersize; - u32 flags; - u32 imagesize; -} efi_capsule_header_t; - -typedef struct { - u16 year; - u8 month; - u8 day; - u8 hour; - u8 minute; - u8 second; - u8 pad1; - u32 nanosecond; - s16 timezone; - u8 daylight; - u8 pad2; -} efi_time_t; - -typedef struct { - u32 resolution; - u32 accuracy; - u8 sets_to_zero; -} efi_time_cap_t; - -typedef struct { - efi_table_hdr_t hdr; - u32 get_time; - u32 set_time; - u32 get_wakeup_time; - u32 set_wakeup_time; - u32 set_virtual_address_map; - u32 convert_pointer; - u32 get_variable; - u32 get_next_variable; - u32 set_variable; - u32 get_next_high_mono_count; - u32 reset_system; - u32 update_capsule; - u32 query_capsule_caps; - u32 query_variable_info; -} efi_runtime_services_32_t; - -typedef efi_status_t efi_get_time_t(efi_time_t *, efi_time_cap_t *); - -typedef efi_status_t efi_set_time_t(efi_time_t *); - -typedef efi_status_t efi_get_wakeup_time_t(efi_bool_t *, efi_bool_t *, efi_time_t *); - -typedef efi_status_t efi_set_wakeup_time_t(efi_bool_t, efi_time_t *); - -typedef efi_status_t efi_get_variable_t(efi_char16_t *, efi_guid_t *, u32 *, long unsigned int *, void *); - -typedef efi_status_t efi_get_next_variable_t(long unsigned int *, efi_char16_t *, efi_guid_t *); - -typedef efi_status_t efi_set_variable_t(efi_char16_t *, efi_guid_t *, u32, long unsigned int, void *); - -typedef efi_status_t efi_get_next_high_mono_count_t(u32 *); - -typedef void efi_reset_system_t(int, efi_status_t, long unsigned int, efi_char16_t *); - -typedef efi_status_t efi_query_variable_info_t(u32, u64 *, u64 *, u64 *); - -typedef efi_status_t efi_update_capsule_t(efi_capsule_header_t **, long unsigned int, long unsigned int); - -typedef efi_status_t efi_query_capsule_caps_t(efi_capsule_header_t **, long unsigned int, u64 *, int *); - -typedef union { - struct { - efi_table_hdr_t hdr; - efi_status_t (*get_time)(efi_time_t *, efi_time_cap_t *); - efi_status_t (*set_time)(efi_time_t *); - efi_status_t (*get_wakeup_time)(efi_bool_t *, efi_bool_t *, efi_time_t *); - efi_status_t (*set_wakeup_time)(efi_bool_t, efi_time_t *); - efi_status_t (*set_virtual_address_map)(long unsigned int, long unsigned int, u32, efi_memory_desc_t *); - void *convert_pointer; - efi_status_t (*get_variable)(efi_char16_t *, efi_guid_t *, u32 *, long unsigned int *, void *); - efi_status_t (*get_next_variable)(long unsigned int *, efi_char16_t *, efi_guid_t *); - efi_status_t (*set_variable)(efi_char16_t *, efi_guid_t *, u32, long unsigned int, void *); - efi_status_t (*get_next_high_mono_count)(u32 *); - void (*reset_system)(int, efi_status_t, long unsigned int, efi_char16_t *); - efi_status_t (*update_capsule)(efi_capsule_header_t **, long unsigned int, long unsigned int); - efi_status_t (*query_capsule_caps)(efi_capsule_header_t **, long unsigned int, u64 *, int *); - efi_status_t (*query_variable_info)(u32, u64 *, u64 *, u64 *); - }; - efi_runtime_services_32_t mixed_mode; -} efi_runtime_services_t; - -struct efi_memory_map { - phys_addr_t phys_map; - void *map; - void *map_end; - int nr_map; - long unsigned int desc_version; - long unsigned int desc_size; - long unsigned int flags; -}; - -struct efi { - const efi_runtime_services_t *runtime; - unsigned int runtime_version; - unsigned int runtime_supported_mask; - long unsigned int acpi; - long unsigned int acpi20; - long unsigned int smbios; - long unsigned int smbios3; - long unsigned int esrt; - long unsigned int tpm_log; - long unsigned int tpm_final_log; - long unsigned int ovmf_debug_log; - long unsigned int mokvar_table; - long unsigned int coco_secret; - long unsigned int unaccepted; - efi_get_time_t *get_time; - efi_set_time_t *set_time; - efi_get_wakeup_time_t *get_wakeup_time; - efi_set_wakeup_time_t *set_wakeup_time; - efi_get_variable_t *get_variable; - efi_get_next_variable_t *get_next_variable; - efi_set_variable_t *set_variable; - efi_set_variable_t *set_variable_nonblocking; - efi_query_variable_info_t *query_variable_info; - efi_query_variable_info_t *query_variable_info_nonblocking; - efi_update_capsule_t *update_capsule; - efi_query_capsule_caps_t *query_capsule_caps; - efi_get_next_high_mono_count_t *get_next_high_mono_count; - efi_reset_system_t *reset_system; - struct efi_memory_map memmap; - long unsigned int flags; -}; - -struct platform_device_id; - -struct mfd_cell; - -struct platform_device { - const char *name; - int id; - bool id_auto; - struct device dev; - u64 platform_dma_mask; - struct device_dma_parameters dma_parms; - u32 num_resources; - struct resource *resource; - const struct platform_device_id *id_entry; - const char *driver_override; - struct mfd_cell *mfd_cell; - struct pdev_archdata archdata; -}; - -struct platform_device_id { - char name[24]; - kernel_ulong_t driver_data; -}; - -enum { - SEV_RET_NO_FW_CALL = -1, - SEV_RET_SUCCESS = 0, - SEV_RET_INVALID_PLATFORM_STATE = 1, - SEV_RET_INVALID_GUEST_STATE = 2, - SEV_RET_INAVLID_CONFIG = 3, - SEV_RET_INVALID_CONFIG = 3, - SEV_RET_INVALID_LEN = 4, - SEV_RET_ALREADY_OWNED = 5, - SEV_RET_INVALID_CERTIFICATE = 6, - SEV_RET_POLICY_FAILURE = 7, - SEV_RET_INACTIVE = 8, - SEV_RET_INVALID_ADDRESS = 9, - SEV_RET_BAD_SIGNATURE = 10, - SEV_RET_BAD_MEASUREMENT = 11, - SEV_RET_ASID_OWNED = 12, - SEV_RET_INVALID_ASID = 13, - SEV_RET_WBINVD_REQUIRED = 14, - SEV_RET_DFFLUSH_REQUIRED = 15, - SEV_RET_INVALID_GUEST = 16, - SEV_RET_INVALID_COMMAND = 17, - SEV_RET_ACTIVE = 18, - SEV_RET_HWSEV_RET_PLATFORM = 19, - SEV_RET_HWSEV_RET_UNSAFE = 20, - SEV_RET_UNSUPPORTED = 21, - SEV_RET_INVALID_PARAM = 22, - SEV_RET_RESOURCE_LIMIT = 23, - SEV_RET_SECURE_DATA_INVALID = 24, - SEV_RET_INVALID_PAGE_SIZE = 25, - SEV_RET_INVALID_PAGE_STATE = 26, - SEV_RET_INVALID_MDATA_ENTRY = 27, - SEV_RET_INVALID_PAGE_OWNER = 28, - SEV_RET_AEAD_OFLOW = 29, - SEV_RET_EXIT_RING_BUFFER = 31, - SEV_RET_RMP_INIT_REQUIRED = 32, - SEV_RET_BAD_SVN = 33, - SEV_RET_BAD_VERSION = 34, - SEV_RET_SHUTDOWN_REQUIRED = 35, - SEV_RET_UPDATE_FAILED = 36, - SEV_RET_RESTORE_REQUIRED = 37, - SEV_RET_RMP_INITIALIZATION_FAILED = 38, - SEV_RET_INVALID_KEY = 39, - SEV_RET_MAX = 40, -}; - -struct crypto_aes_ctx { - u32 key_enc[60]; - u32 key_dec[60]; - u32 key_length; -}; - -typedef struct { - __be64 a; - __be64 b; -} be128; - -struct aesgcm_ctx { - be128 ghash_key; - struct crypto_aes_ctx aes_ctx; - unsigned int authsize; -}; - -enum psc_op { - SNP_PAGE_STATE_PRIVATE = 1, - SNP_PAGE_STATE_SHARED = 2, -}; - -struct psc_hdr { - u16 cur_entry; - u16 end_entry; - u32 reserved; -}; - -struct psc_entry { - u64 cur_page: 12; - u64 gfn: 40; - u64 operation: 4; - u64 pagesize: 1; - u64 reserved: 7; -}; - -struct snp_psc_desc { - struct psc_hdr hdr; - struct psc_entry entries[64]; -}; - -struct sev_config { - __u64 debug: 1; - __u64 ghcbs_initialized: 1; - __u64 use_cas: 1; - __u64 __reserved: 61; -}; - -struct vmcb_seg { - u16 selector; - u16 attrib; - u32 limit; - u64 base; -}; - -struct sev_es_save_area { - struct vmcb_seg es; - struct vmcb_seg cs; - struct vmcb_seg ss; - struct vmcb_seg ds; - struct vmcb_seg fs; - struct vmcb_seg gs; - struct vmcb_seg gdtr; - struct vmcb_seg ldtr; - struct vmcb_seg idtr; - struct vmcb_seg tr; - u64 pl0_ssp; - u64 pl1_ssp; - u64 pl2_ssp; - u64 pl3_ssp; - u64 u_cet; - u8 reserved_0xc8[2]; - u8 vmpl; - u8 cpl; - u8 reserved_0xcc[4]; - u64 efer; - u8 reserved_0xd8[104]; - u64 xss; - u64 cr4; - u64 cr3; - u64 cr0; - u64 dr7; - u64 dr6; - u64 rflags; - u64 rip; - u64 dr0; - u64 dr1; - u64 dr2; - u64 dr3; - u64 dr0_addr_mask; - u64 dr1_addr_mask; - u64 dr2_addr_mask; - u64 dr3_addr_mask; - u8 reserved_0x1c0[24]; - u64 rsp; - u64 s_cet; - u64 ssp; - u64 isst_addr; - u64 rax; - u64 star; - u64 lstar; - u64 cstar; - u64 sfmask; - u64 kernel_gs_base; - u64 sysenter_cs; - u64 sysenter_esp; - u64 sysenter_eip; - u64 cr2; - u8 reserved_0x248[32]; - u64 g_pat; - u64 dbgctl; - u64 br_from; - u64 br_to; - u64 last_excp_from; - u64 last_excp_to; - u8 reserved_0x298[80]; - u32 pkru; - u32 tsc_aux; - u64 tsc_scale; - u64 tsc_offset; - u8 reserved_0x300[8]; - u64 rcx; - u64 rdx; - u64 rbx; - u64 reserved_0x320; - u64 rbp; - u64 rsi; - u64 rdi; - u64 r8; - u64 r9; - u64 r10; - u64 r11; - u64 r12; - u64 r13; - u64 r14; - u64 r15; - u8 reserved_0x380[16]; - u64 guest_exit_info_1; - u64 guest_exit_info_2; - u64 guest_exit_int_info; - u64 guest_nrip; - u64 sev_features; - u64 vintr_ctrl; - u64 guest_exit_code; - u64 virtual_tom; - u64 tlb_id; - u64 pcpu_id; - u64 event_inj; - u64 xcr0; - u8 reserved_0x3f0[16]; - u64 x87_dp; - u32 mxcsr; - u16 x87_ftw; - u16 x87_fsw; - u16 x87_fcw; - u16 x87_fop; - u16 x87_ds; - u16 x87_cs; - u64 x87_rip; - u8 fpreg_x87[80]; - u8 fpreg_xmm[256]; - u8 fpreg_ymm[256]; -}; - -enum es_result { - ES_OK = 0, - ES_UNSUPPORTED = 1, - ES_VMM_ERROR = 2, - ES_DECODE_FAILED = 3, - ES_EXCEPTION = 4, - ES_RETRY = 5, -}; - -struct es_fault_info { - long unsigned int vector; - long unsigned int error_code; - long unsigned int cr2; -}; - -struct es_em_ctxt { - struct pt_regs *regs; - struct insn insn; - struct es_fault_info fi; -}; - -struct snp_cpuid_fn { - u32 eax_in; - u32 ecx_in; - u64 xcr0_in; - u64 xss_in; - u32 eax; - u32 ebx; - u32 ecx; - u32 edx; - u64 __reserved; -}; - -struct snp_cpuid_table { - u32 count; - u32 __reserved1; - u64 __reserved2; - struct snp_cpuid_fn fn[64]; -}; - -struct snp_req_data { - long unsigned int req_gpa; - long unsigned int resp_gpa; - long unsigned int data_gpa; - unsigned int data_npages; -}; - -enum msg_type { - SNP_MSG_TYPE_INVALID = 0, - SNP_MSG_CPUID_REQ = 1, - SNP_MSG_CPUID_RSP = 2, - SNP_MSG_KEY_REQ = 3, - SNP_MSG_KEY_RSP = 4, - SNP_MSG_REPORT_REQ = 5, - SNP_MSG_REPORT_RSP = 6, - SNP_MSG_EXPORT_REQ = 7, - SNP_MSG_EXPORT_RSP = 8, - SNP_MSG_IMPORT_REQ = 9, - SNP_MSG_IMPORT_RSP = 10, - SNP_MSG_ABSORB_REQ = 11, - SNP_MSG_ABSORB_RSP = 12, - SNP_MSG_VMRK_REQ = 13, - SNP_MSG_VMRK_RSP = 14, - SNP_MSG_TSC_INFO_REQ = 17, - SNP_MSG_TSC_INFO_RSP = 18, - SNP_MSG_TYPE_MAX = 19, -}; - -enum aead_algo { - SNP_AEAD_INVALID = 0, - SNP_AEAD_AES_256_GCM = 1, -}; - -struct snp_guest_msg_hdr { - u8 authtag[32]; - u64 msg_seqno; - u8 rsvd1[8]; - u8 algo; - u8 hdr_version; - u16 hdr_sz; - u8 msg_type; - u8 msg_version; - u16 msg_sz; - u32 rsvd2; - u8 msg_vmpck; - u8 rsvd3[35]; -}; - -struct snp_guest_msg { - struct snp_guest_msg_hdr hdr; - u8 payload[4000]; -}; - -struct snp_tsc_info_req { - u8 rsvd[128]; -}; - -struct snp_tsc_info_resp { - u32 status; - u32 rsvd1; - u64 tsc_scale; - u64 tsc_offset; - u32 tsc_factor; - u8 rsvd2[100]; -}; - -struct snp_guest_req { - void *req_buf; - size_t req_sz; - void *resp_buf; - size_t resp_sz; - u64 exit_code; - u64 exitinfo2; - unsigned int vmpck_id; - u8 msg_version; - u8 msg_type; - struct snp_req_data input; - void *certs_data; -}; - -struct secrets_os_area { - u32 msg_seqno_0; - u32 msg_seqno_1; - u32 msg_seqno_2; - u32 msg_seqno_3; - u64 ap_jump_table_pa; - u8 rsvd[40]; - u8 guest_usage[32]; -}; - -struct snp_secrets_page { - u32 version; - u32 imien: 1; - u32 rsvd1: 31; - u32 fms; - u32 rsvd2; - u8 gosvw[16]; - u8 vmpck0[32]; - u8 vmpck1[32]; - u8 vmpck2[32]; - u8 vmpck3[32]; - struct secrets_os_area os_area; - u8 vmsa_tweak_bitmap[64]; - u64 svsm_base; - u64 svsm_size; - u64 svsm_caa; - u32 svsm_max_version; - u8 svsm_guest_vmpl; - u8 rsvd3[3]; - u32 tsc_factor; - u8 rsvd4[3740]; -}; - -struct snp_msg_desc { - struct snp_guest_msg *request; - struct snp_guest_msg *response; - struct snp_guest_msg secret_request; - struct snp_guest_msg secret_response; - struct snp_secrets_page *secrets; - struct aesgcm_ctx *ctx; - u32 *os_area_msg_seqno; - u8 *vmpck; - int vmpck_id; -}; - -struct svsm_ca { - u8 call_pending; - u8 mem_available; - u8 rsvd1[6]; - u8 svsm_buffer[4088]; -}; - -struct svsm_pvalidate_entry { - u64 page_size: 2; - u64 action: 1; - u64 ignore_cf: 1; - u64 rsvd: 8; - u64 pfn: 52; -}; - -struct svsm_pvalidate_call { - u16 num_entries; - u16 cur_index; - u8 rsvd1[4]; - struct svsm_pvalidate_entry entry[0]; -}; - -struct svsm_loc_entry { - u64 pa; - u32 len; - u8 rsvd[4]; -}; - -struct svsm_attest_call { - struct svsm_loc_entry report_buf; - struct svsm_loc_entry nonce; - struct svsm_loc_entry manifest_buf; - struct svsm_loc_entry certificates_buf; - u8 service_guid[16]; - u32 service_manifest_ver; - u8 rsvd[4]; -}; - -struct pte_enc_desc { - pte_t *kpte; - int pte_level; - bool encrypt; - long unsigned int pfn; - long unsigned int pa; - void *va; - long unsigned int size; - pgprot_t new_pgprot; -}; - -struct svsm_call { - struct svsm_ca *caa; - u64 rax; - u64 rcx; - u64 rdx; - u64 r8; - u64 r9; - u64 rax_out; - u64 rcx_out; - u64 rdx_out; - u64 r8_out; - u64 r9_out; -}; - -struct sev_es_runtime_data { - struct ghcb ghcb_page; - struct ghcb backup_ghcb; - bool ghcb_active; - bool backup_ghcb_active; - long unsigned int dr7; -}; - -struct ghcb_state { - struct ghcb *ghcb; -}; - -struct real_mode_header { - u32 text_start; - u32 ro_end; - u32 trampoline_start; - u32 trampoline_header; - u32 sev_es_trampoline_start; - u32 trampoline_start64; - u32 trampoline_pgd; - u32 wakeup_start; - u32 wakeup_header; - u32 machine_real_restart_asm; - u32 machine_real_restart_seg; -}; - -struct apic { - void (*eoi)(void); - void (*native_eoi)(void); - void (*write)(u32, u32); - u32 (*read)(u32); - void (*wait_icr_idle)(void); - u32 (*safe_wait_icr_idle)(void); - void (*send_IPI)(int, int); - void (*send_IPI_mask)(const struct cpumask *, int); - void (*send_IPI_mask_allbutself)(const struct cpumask *, int); - void (*send_IPI_allbutself)(int); - void (*send_IPI_all)(int); - void (*send_IPI_self)(int); - u32 disable_esr: 1; - u32 dest_mode_logical: 1; - u32 x2apic_set_max_apicid: 1; - u32 nmi_to_offline_cpu: 1; - u32 (*calc_dest_apicid)(unsigned int); - u64 (*icr_read)(void); - void (*icr_write)(u32, u32); - u32 max_apic_id; - int (*probe)(void); - int (*acpi_madt_oem_check)(char *, char *); - void (*init_apic_ldr)(void); - u32 (*cpu_present_to_apicid)(int); - u32 (*get_apic_id)(u32); - int (*wakeup_secondary_cpu)(u32, long unsigned int, unsigned int); - int (*wakeup_secondary_cpu_64)(u32, long unsigned int, unsigned int); - char *name; -}; - -struct apic_override { - void (*eoi)(void); - void (*native_eoi)(void); - void (*write)(u32, u32); - u32 (*read)(u32); - void (*send_IPI)(int, int); - void (*send_IPI_mask)(const struct cpumask *, int); - void (*send_IPI_mask_allbutself)(const struct cpumask *, int); - void (*send_IPI_allbutself)(int); - void (*send_IPI_all)(int); - void (*send_IPI_self)(int); - u64 (*icr_read)(void); - void (*icr_write)(u32, u32); - int (*wakeup_secondary_cpu)(u32, long unsigned int, unsigned int); - int (*wakeup_secondary_cpu_64)(u32, long unsigned int, unsigned int); -}; - -struct x86_hw_tss { - u32 reserved1; - u64 sp0; - u64 sp1; - u64 sp2; - u64 reserved2; - u64 ist[7]; - u32 reserved3; - u32 reserved4; - u16 reserved5; - u16 io_bitmap_base; -} __attribute__((packed)); - -struct x86_io_bitmap { - u64 prev_sequence; - unsigned int prev_max; - long unsigned int bitmap[1025]; - long unsigned int mapall[1025]; -}; - -struct tss_struct { - struct x86_hw_tss x86_tss; - struct x86_io_bitmap io_bitmap; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct cea_exception_stacks { - char DF_stack_guard[4096]; - char DF_stack[8192]; - char NMI_stack_guard[4096]; - char NMI_stack[8192]; - char DB_stack_guard[4096]; - char DB_stack[8192]; - char MCE_stack_guard[4096]; - char MCE_stack[8192]; - char VC_stack_guard[4096]; - char VC_stack[8192]; - char VC2_stack_guard[4096]; - char VC2_stack[8192]; - char IST_top_guard[4096]; -}; - -struct cpuid_leaf { - u32 fn; - u32 subfn; - u32 eax; - u32 ebx; - u32 ecx; - u32 edx; -}; - -struct irqentry_state { - union { - bool exit_rcu; - bool lockdep; - }; -}; - -typedef struct irqentry_state irqentry_state_t; - -enum x86_pf_error_code { - X86_PF_PROT = 1, - X86_PF_WRITE = 2, - X86_PF_USER = 4, - X86_PF_RSVD = 8, - X86_PF_INSTR = 16, - X86_PF_PK = 32, - X86_PF_SHSTK = 64, - X86_PF_SGX = 32768, - X86_PF_RMP = 2147483648, -}; - -enum syscall_work_bit { - SYSCALL_WORK_BIT_SECCOMP = 0, - SYSCALL_WORK_BIT_SYSCALL_TRACEPOINT = 1, - SYSCALL_WORK_BIT_SYSCALL_TRACE = 2, - SYSCALL_WORK_BIT_SYSCALL_EMU = 3, - SYSCALL_WORK_BIT_SYSCALL_AUDIT = 4, - SYSCALL_WORK_BIT_SYSCALL_USER_DISPATCH = 5, - SYSCALL_WORK_BIT_SYSCALL_EXIT_TRAP = 6, -}; - -enum ctx_state { - CT_STATE_DISABLED = -1, - CT_STATE_KERNEL = 0, - CT_STATE_IDLE = 1, - CT_STATE_USER = 2, - CT_STATE_GUEST = 3, - CT_STATE_MAX = 4, -}; - -struct context_tracking { - bool active; - int recursion; - atomic_t state; - long int nesting; - long int nmi_nesting; -}; - -typedef long int (*sys_call_ptr_t)(const struct pt_regs *); - -struct alt_instr { - s32 instr_offset; - s32 repl_offset; - union { - struct { - u32 cpuid: 16; - u32 flags: 16; - }; - u32 ft_flags; - }; - u8 instrlen; - u8 replacementlen; -} __attribute__((packed)); - -struct wait_queue_entry; - -typedef int (*wait_queue_func_t)(struct wait_queue_entry *, unsigned int, int, void *); - -struct wait_queue_entry { - unsigned int flags; - void *private; - wait_queue_func_t func; - struct list_head entry; -}; - -typedef struct wait_queue_entry wait_queue_entry_t; - -struct maple_alloc { - long unsigned int total; - unsigned char node_count; - unsigned int request_count; - struct maple_alloc *slot[30]; -}; - -struct maple_enode; - -enum store_type { - wr_invalid = 0, - wr_new_root = 1, - wr_store_root = 2, - wr_exact_fit = 3, - wr_spanning_store = 4, - wr_split_store = 5, - wr_rebalance = 6, - wr_append = 7, - wr_node_store = 8, - wr_slot_store = 9, -}; - -enum maple_status { - ma_active = 0, - ma_start = 1, - ma_root = 2, - ma_none = 3, - ma_pause = 4, - ma_overflow = 5, - ma_underflow = 6, - ma_error = 7, -}; - -struct ma_state { - struct maple_tree *tree; - long unsigned int index; - long unsigned int last; - struct maple_enode *node; - long unsigned int min; - long unsigned int max; - struct maple_alloc *alloc; - enum maple_status status; - unsigned char depth; - unsigned char offset; - unsigned char mas_flags; - unsigned char end; - enum store_type store_type; -}; - -struct reclaim_state { - long unsigned int reclaimed; - struct lru_gen_mm_walk *mm_walk; -}; - -struct vma_iterator { - struct ma_state mas; -}; - -enum vm_fault_reason { - VM_FAULT_OOM = 1, - VM_FAULT_SIGBUS = 2, - VM_FAULT_MAJOR = 4, - VM_FAULT_HWPOISON = 16, - VM_FAULT_HWPOISON_LARGE = 32, - VM_FAULT_SIGSEGV = 64, - VM_FAULT_NOPAGE = 256, - VM_FAULT_LOCKED = 512, - VM_FAULT_RETRY = 1024, - VM_FAULT_FALLBACK = 2048, - VM_FAULT_DONE_COW = 4096, - VM_FAULT_NEEDDSYNC = 8192, - VM_FAULT_COMPLETED = 16384, - VM_FAULT_HINDEX_MASK = 983040, -}; - -struct vm_special_mapping { - const char *name; - struct page **pages; - vm_fault_t (*fault)(const struct vm_special_mapping *, struct vm_area_struct *, struct vm_fault *); - int (*mremap)(const struct vm_special_mapping *, struct vm_area_struct *); - void (*close)(const struct vm_special_mapping *, struct vm_area_struct *); -}; - -enum pageflags { - PG_locked = 0, - PG_writeback = 1, - PG_referenced = 2, - PG_uptodate = 3, - PG_dirty = 4, - PG_lru = 5, - PG_head = 6, - PG_waiters = 7, - PG_active = 8, - PG_workingset = 9, - PG_owner_priv_1 = 10, - PG_owner_2 = 11, - PG_arch_1 = 12, - PG_reserved = 13, - PG_private = 14, - PG_private_2 = 15, - PG_reclaim = 16, - PG_swapbacked = 17, - PG_unevictable = 18, - PG_dropbehind = 19, - PG_mlocked = 20, - PG_hwpoison = 21, - PG_young = 22, - PG_idle = 23, - PG_arch_2 = 24, - __NR_PAGEFLAGS = 25, - PG_readahead = 16, - PG_swapcache = 10, - PG_checked = 10, - PG_anon_exclusive = 11, - PG_mappedtodisk = 11, - PG_fscache = 15, - PG_pinned = 10, - PG_savepinned = 4, - PG_foreign = 10, - PG_xen_remapped = 10, - PG_movable_ops_isolated = 16, - PG_movable_ops = 3, - PG_reported = 3, - PG_vmemmap_self_hosted = 10, - PG_has_hwpoisoned = 8, - PG_large_rmappable = 9, - PG_partially_mapped = 16, -}; - -struct wait_page_queue { - struct folio *folio; - int bit_nr; - wait_queue_entry_t wait; -}; - -struct readahead_control { - struct file *file; - struct address_space *mapping; - struct file_ra_state *ra; - long unsigned int _index; - unsigned int _nr_pages; - unsigned int _batch_count; - bool dropbehind; - bool _workingset; - long unsigned int _pflags; -}; - -struct swap_cluster_info; - -struct swap_sequential_cluster; - -struct swap_info_struct { - struct percpu_ref users; - long unsigned int flags; - short int prio; - struct plist_node list; - signed char type; - unsigned int max; - unsigned char *swap_map; - long unsigned int *zeromap; - struct swap_cluster_info *cluster_info; - struct list_head free_clusters; - struct list_head full_clusters; - struct list_head nonfull_clusters[10]; - struct list_head frag_clusters[10]; - atomic_long_t frag_cluster_nr[10]; - unsigned int pages; - atomic_long_t inuse_pages; - struct swap_sequential_cluster *global_cluster; - spinlock_t global_cluster_lock; - struct rb_root swap_extent_root; - struct block_device *bdev; - struct file *swap_file; - struct completion comp; - spinlock_t lock; - spinlock_t cont_lock; - struct work_struct discard_work; - struct work_struct reclaim_work; - struct list_head discard_clusters; - struct plist_node avail_lists[0]; -}; - -struct pvclock_vcpu_time_info { - u32 version; - u32 pad0; - u64 tsc_timestamp; - u64 system_time; - u32 tsc_to_system_mul; - s8 tsc_shift; - u8 flags; - u8 pad[2]; -}; - -struct pvclock_vsyscall_time_info { - struct pvclock_vcpu_time_info pvti; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum vdso_clock_mode { - VDSO_CLOCKMODE_NONE = 0, - VDSO_CLOCKMODE_TSC = 1, - VDSO_CLOCKMODE_PVCLOCK = 2, - VDSO_CLOCKMODE_HVCLOCK = 3, - VDSO_CLOCKMODE_MAX = 4, - VDSO_CLOCKMODE_TIMENS = 2147483647, -}; - -enum vdso_pages { - VDSO_TIME_PAGE_OFFSET = 0, - VDSO_TIMENS_PAGE_OFFSET = 1, - VDSO_RNG_PAGE_OFFSET = 2, - VDSO_ARCH_PAGES_START = 3, - VDSO_ARCH_PAGES_END = 3, - VDSO_NR_PAGES = 4, -}; - -enum { - HI_SOFTIRQ = 0, - TIMER_SOFTIRQ = 1, - NET_TX_SOFTIRQ = 2, - NET_RX_SOFTIRQ = 3, - BLOCK_SOFTIRQ = 4, - IRQ_POLL_SOFTIRQ = 5, - TASKLET_SOFTIRQ = 6, - SCHED_SOFTIRQ = 7, - HRTIMER_SOFTIRQ = 8, - RCU_SOFTIRQ = 9, - NR_SOFTIRQS = 10, -}; - -enum cpu_usage_stat { - CPUTIME_USER = 0, - CPUTIME_NICE = 1, - CPUTIME_SYSTEM = 2, - CPUTIME_SOFTIRQ = 3, - CPUTIME_IRQ = 4, - CPUTIME_IDLE = 5, - CPUTIME_IOWAIT = 6, - CPUTIME_STEAL = 7, - CPUTIME_GUEST = 8, - CPUTIME_GUEST_NICE = 9, - CPUTIME_FORCEIDLE = 10, - NR_STATS = 11, -}; - -enum cgroup_bpf_attach_type { - CGROUP_BPF_ATTACH_TYPE_INVALID = -1, - CGROUP_INET_INGRESS = 0, - CGROUP_INET_EGRESS = 1, - CGROUP_INET_SOCK_CREATE = 2, - CGROUP_SOCK_OPS = 3, - CGROUP_DEVICE = 4, - CGROUP_INET4_BIND = 5, - CGROUP_INET6_BIND = 6, - CGROUP_INET4_CONNECT = 7, - CGROUP_INET6_CONNECT = 8, - CGROUP_UNIX_CONNECT = 9, - CGROUP_INET4_POST_BIND = 10, - CGROUP_INET6_POST_BIND = 11, - CGROUP_UDP4_SENDMSG = 12, - CGROUP_UDP6_SENDMSG = 13, - CGROUP_UNIX_SENDMSG = 14, - CGROUP_SYSCTL = 15, - CGROUP_UDP4_RECVMSG = 16, - CGROUP_UDP6_RECVMSG = 17, - CGROUP_UNIX_RECVMSG = 18, - CGROUP_GETSOCKOPT = 19, - CGROUP_SETSOCKOPT = 20, - CGROUP_INET4_GETPEERNAME = 21, - CGROUP_INET6_GETPEERNAME = 22, - CGROUP_UNIX_GETPEERNAME = 23, - CGROUP_INET4_GETSOCKNAME = 24, - CGROUP_INET6_GETSOCKNAME = 25, - CGROUP_UNIX_GETSOCKNAME = 26, - CGROUP_INET_SOCK_RELEASE = 27, - CGROUP_LSM_START = 28, - CGROUP_LSM_END = 37, - MAX_CGROUP_BPF_ATTACH_TYPE = 38, -}; - -enum psi_task_count { - NR_IOWAIT = 0, - NR_MEMSTALL = 1, - NR_RUNNING = 2, - NR_MEMSTALL_RUNNING = 3, - NR_PSI_TASK_COUNTS = 4, -}; - -enum psi_res { - PSI_IO = 0, - PSI_MEM = 1, - PSI_CPU = 2, - NR_PSI_RESOURCES = 3, -}; - -enum psi_states { - PSI_IO_SOME = 0, - PSI_IO_FULL = 1, - PSI_MEM_SOME = 2, - PSI_MEM_FULL = 3, - PSI_CPU_SOME = 4, - PSI_CPU_FULL = 5, - PSI_NONIDLE = 6, - NR_PSI_STATES = 7, -}; - -enum psi_aggregators { - PSI_AVGS = 0, - PSI_POLL = 1, - NR_PSI_AGGREGATORS = 2, -}; - -enum cgroup_subsys_id { - cpuset_cgrp_id = 0, - cpu_cgrp_id = 1, - cpuacct_cgrp_id = 2, - io_cgrp_id = 3, - memory_cgrp_id = 4, - devices_cgrp_id = 5, - freezer_cgrp_id = 6, - net_cls_cgrp_id = 7, - perf_event_cgrp_id = 8, - net_prio_cgrp_id = 9, - hugetlb_cgrp_id = 10, - pids_cgrp_id = 11, - rdma_cgrp_id = 12, - misc_cgrp_id = 13, - dmem_cgrp_id = 14, - CGROUP_SUBSYS_COUNT = 15, -}; - -enum wb_stat_item { - WB_RECLAIMABLE = 0, - WB_WRITEBACK = 1, - WB_DIRTIED = 2, - WB_WRITTEN = 3, - NR_WB_STAT_ITEMS = 4, -}; - -enum memcg_memory_event { - MEMCG_LOW = 0, - MEMCG_HIGH = 1, - MEMCG_MAX = 2, - MEMCG_OOM = 3, - MEMCG_OOM_KILL = 4, - MEMCG_OOM_GROUP_KILL = 5, - MEMCG_SWAP_HIGH = 6, - MEMCG_SWAP_MAX = 7, - MEMCG_SWAP_FAIL = 8, - MEMCG_NR_MEMORY_EVENTS = 9, -}; - -enum page_memcg_data_flags { - MEMCG_DATA_OBJEXTS = 1, - MEMCG_DATA_KMEM = 2, - __NR_MEMCG_DATA_FLAGS = 4, -}; - -struct swap_cluster_info { - spinlock_t lock; - u16 count; - u8 flags; - u8 order; - struct list_head list; -}; - -struct swap_sequential_cluster { - unsigned int next[10]; -}; - -struct vdso_exception_table_entry { - int insn; - int fixup; -}; - -enum { - MM_FILEPAGES = 0, - MM_ANONPAGES = 1, - MM_SWAPENTS = 2, - MM_SHMEMPAGES = 3, - NR_MM_COUNTERS = 4, -}; - -enum utf8_normalization { - UTF8_NFDI = 0, - UTF8_NFDICF = 1, - UTF8_NMAX = 2, -}; - -enum { - DQF_ROOT_SQUASH_B = 0, - DQF_SYS_FILE_B = 16, - DQF_PRIVATE = 17, -}; - -enum { - DQST_LOOKUPS = 0, - DQST_DROPS = 1, - DQST_READS = 2, - DQST_WRITES = 3, - DQST_CACHE_HITS = 4, - DQST_ALLOC_DQUOTS = 5, - DQST_FREE_DQUOTS = 6, - DQST_SYNCS = 7, - _DQST_DQSTAT_LAST = 8, -}; - -enum { - SB_UNFROZEN = 0, - SB_FREEZE_WRITE = 1, - SB_FREEZE_PAGEFAULT = 2, - SB_FREEZE_FS = 3, - SB_FREEZE_COMPLETE = 4, -}; - -typedef long unsigned int p4dval_t; - -typedef struct { - p4dval_t p4d; -} p4d_t; - -typedef struct { - void *lock; -} class_preempt_notrace_t; - -enum fixed_addresses { - VSYSCALL_PAGE = 511, - FIX_DBGP_BASE = 512, - FIX_EARLYCON_MEM_BASE = 513, - FIX_APIC_BASE = 514, - FIX_IO_APIC_BASE_0 = 515, - FIX_IO_APIC_BASE_END = 642, - __end_of_permanent_fixed_addresses = 643, - FIX_BTMAP_END = 1024, - FIX_BTMAP_BEGIN = 1535, - FIX_TBOOT_BASE = 1536, - __end_of_fixed_addresses = 1537, -}; - -struct ring_buffer_event { - u32 type_len: 5; - u32 time_delta: 27; - u32 array[0]; -}; - -struct bpf_raw_tp_link { - struct bpf_link link; - struct bpf_raw_event_map *btp; - u64 cookie; -}; - -struct trace_buffer; - -struct trace_event_file; - -struct trace_event_buffer { - struct trace_buffer *buffer; - struct ring_buffer_event *event; - struct trace_event_file *trace_file; - void *entry; - unsigned int trace_ctx; - struct pt_regs *regs; -}; - -struct eventfs_inode; - -struct trace_subsystem_dir; - -struct trace_event_file { - struct list_head list; - struct trace_event_call *event_call; - struct event_filter *filter; - struct eventfs_inode *ei; - struct trace_array *tr; - struct trace_subsystem_dir *system; - struct list_head triggers; - long unsigned int flags; - refcount_t ref; - atomic_t sm_ref; - atomic_t tm_ref; -}; - -enum { - TRACE_EVENT_FL_CAP_ANY = 1, - TRACE_EVENT_FL_NO_SET_FILTER = 2, - TRACE_EVENT_FL_IGNORE_ENABLE = 4, - TRACE_EVENT_FL_TRACEPOINT = 8, - TRACE_EVENT_FL_DYNAMIC = 16, - TRACE_EVENT_FL_KPROBE = 32, - TRACE_EVENT_FL_UPROBE = 64, - TRACE_EVENT_FL_EPROBE = 128, - TRACE_EVENT_FL_FPROBE = 256, - TRACE_EVENT_FL_CUSTOM = 512, - TRACE_EVENT_FL_TEST_STR = 1024, -}; - -enum { - EVENT_FILE_FL_ENABLED = 1, - EVENT_FILE_FL_RECORDED_CMD = 2, - EVENT_FILE_FL_RECORDED_TGID = 4, - EVENT_FILE_FL_FILTERED = 8, - EVENT_FILE_FL_NO_SET_FILTER = 16, - EVENT_FILE_FL_SOFT_DISABLED = 32, - EVENT_FILE_FL_TRIGGER_MODE = 64, - EVENT_FILE_FL_TRIGGER_COND = 128, - EVENT_FILE_FL_PID_FILTER = 256, - EVENT_FILE_FL_WAS_ENABLED = 512, - EVENT_FILE_FL_FREED = 1024, -}; - -enum { - FILTER_OTHER = 0, - FILTER_STATIC_STRING = 1, - FILTER_DYN_STRING = 2, - FILTER_RDYN_STRING = 3, - FILTER_PTR_STRING = 4, - FILTER_TRACE_FN = 5, - FILTER_CPUMASK = 6, - FILTER_COMM = 7, - FILTER_CPU = 8, - FILTER_STACKTRACE = 9, -}; - -struct trace_event_raw_emulate_vsyscall { - struct trace_entry ent; - int nr; - char __data[0]; -}; - -struct trace_event_data_offsets_emulate_vsyscall {}; - -typedef void (*btf_trace_emulate_vsyscall)(void *, int); - -enum { - EMULATE = 0, - XONLY = 1, - NONE = 2, -}; - -struct fred_info { - long unsigned int edata; - long unsigned int resv; -}; - -struct fred_frame { - struct pt_regs regs; - struct fred_info info; -}; - -typedef void (*idtentry_t)(struct pt_regs *); - -enum perf_type_id { - PERF_TYPE_HARDWARE = 0, - PERF_TYPE_SOFTWARE = 1, - PERF_TYPE_TRACEPOINT = 2, - PERF_TYPE_HW_CACHE = 3, - PERF_TYPE_RAW = 4, - PERF_TYPE_BREAKPOINT = 5, - PERF_TYPE_MAX = 6, -}; - -enum perf_hw_id { - PERF_COUNT_HW_CPU_CYCLES = 0, - PERF_COUNT_HW_INSTRUCTIONS = 1, - PERF_COUNT_HW_CACHE_REFERENCES = 2, - PERF_COUNT_HW_CACHE_MISSES = 3, - PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 4, - PERF_COUNT_HW_BRANCH_MISSES = 5, - PERF_COUNT_HW_BUS_CYCLES = 6, - PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 7, - PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 8, - PERF_COUNT_HW_REF_CPU_CYCLES = 9, - PERF_COUNT_HW_MAX = 10, -}; - -enum perf_hw_cache_id { - PERF_COUNT_HW_CACHE_L1D = 0, - PERF_COUNT_HW_CACHE_L1I = 1, - PERF_COUNT_HW_CACHE_LL = 2, - PERF_COUNT_HW_CACHE_DTLB = 3, - PERF_COUNT_HW_CACHE_ITLB = 4, - PERF_COUNT_HW_CACHE_BPU = 5, - PERF_COUNT_HW_CACHE_NODE = 6, - PERF_COUNT_HW_CACHE_MAX = 7, -}; - -enum perf_hw_cache_op_id { - PERF_COUNT_HW_CACHE_OP_READ = 0, - PERF_COUNT_HW_CACHE_OP_WRITE = 1, - PERF_COUNT_HW_CACHE_OP_PREFETCH = 2, - PERF_COUNT_HW_CACHE_OP_MAX = 3, -}; - -enum perf_hw_cache_op_result_id { - PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0, - PERF_COUNT_HW_CACHE_RESULT_MISS = 1, - PERF_COUNT_HW_CACHE_RESULT_MAX = 2, -}; - -enum perf_event_sample_format { - PERF_SAMPLE_IP = 1, - PERF_SAMPLE_TID = 2, - PERF_SAMPLE_TIME = 4, - PERF_SAMPLE_ADDR = 8, - PERF_SAMPLE_READ = 16, - PERF_SAMPLE_CALLCHAIN = 32, - PERF_SAMPLE_ID = 64, - PERF_SAMPLE_CPU = 128, - PERF_SAMPLE_PERIOD = 256, - PERF_SAMPLE_STREAM_ID = 512, - PERF_SAMPLE_RAW = 1024, - PERF_SAMPLE_BRANCH_STACK = 2048, - PERF_SAMPLE_REGS_USER = 4096, - PERF_SAMPLE_STACK_USER = 8192, - PERF_SAMPLE_WEIGHT = 16384, - PERF_SAMPLE_DATA_SRC = 32768, - PERF_SAMPLE_IDENTIFIER = 65536, - PERF_SAMPLE_TRANSACTION = 131072, - PERF_SAMPLE_REGS_INTR = 262144, - PERF_SAMPLE_PHYS_ADDR = 524288, - PERF_SAMPLE_AUX = 1048576, - PERF_SAMPLE_CGROUP = 2097152, - PERF_SAMPLE_DATA_PAGE_SIZE = 4194304, - PERF_SAMPLE_CODE_PAGE_SIZE = 8388608, - PERF_SAMPLE_WEIGHT_STRUCT = 16777216, - PERF_SAMPLE_MAX = 33554432, -}; - -enum perf_branch_sample_type_shift { - PERF_SAMPLE_BRANCH_USER_SHIFT = 0, - PERF_SAMPLE_BRANCH_KERNEL_SHIFT = 1, - PERF_SAMPLE_BRANCH_HV_SHIFT = 2, - PERF_SAMPLE_BRANCH_ANY_SHIFT = 3, - PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT = 4, - PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT = 5, - PERF_SAMPLE_BRANCH_IND_CALL_SHIFT = 6, - PERF_SAMPLE_BRANCH_ABORT_TX_SHIFT = 7, - PERF_SAMPLE_BRANCH_IN_TX_SHIFT = 8, - PERF_SAMPLE_BRANCH_NO_TX_SHIFT = 9, - PERF_SAMPLE_BRANCH_COND_SHIFT = 10, - PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT = 11, - PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT = 12, - PERF_SAMPLE_BRANCH_CALL_SHIFT = 13, - PERF_SAMPLE_BRANCH_NO_FLAGS_SHIFT = 14, - PERF_SAMPLE_BRANCH_NO_CYCLES_SHIFT = 15, - PERF_SAMPLE_BRANCH_TYPE_SAVE_SHIFT = 16, - PERF_SAMPLE_BRANCH_HW_INDEX_SHIFT = 17, - PERF_SAMPLE_BRANCH_PRIV_SAVE_SHIFT = 18, - PERF_SAMPLE_BRANCH_COUNTERS_SHIFT = 19, - PERF_SAMPLE_BRANCH_MAX_SHIFT = 20, -}; - -enum perf_branch_sample_type { - PERF_SAMPLE_BRANCH_USER = 1, - PERF_SAMPLE_BRANCH_KERNEL = 2, - PERF_SAMPLE_BRANCH_HV = 4, - PERF_SAMPLE_BRANCH_ANY = 8, - PERF_SAMPLE_BRANCH_ANY_CALL = 16, - PERF_SAMPLE_BRANCH_ANY_RETURN = 32, - PERF_SAMPLE_BRANCH_IND_CALL = 64, - PERF_SAMPLE_BRANCH_ABORT_TX = 128, - PERF_SAMPLE_BRANCH_IN_TX = 256, - PERF_SAMPLE_BRANCH_NO_TX = 512, - PERF_SAMPLE_BRANCH_COND = 1024, - PERF_SAMPLE_BRANCH_CALL_STACK = 2048, - PERF_SAMPLE_BRANCH_IND_JUMP = 4096, - PERF_SAMPLE_BRANCH_CALL = 8192, - PERF_SAMPLE_BRANCH_NO_FLAGS = 16384, - PERF_SAMPLE_BRANCH_NO_CYCLES = 32768, - PERF_SAMPLE_BRANCH_TYPE_SAVE = 65536, - PERF_SAMPLE_BRANCH_HW_INDEX = 131072, - PERF_SAMPLE_BRANCH_PRIV_SAVE = 262144, - PERF_SAMPLE_BRANCH_COUNTERS = 524288, - PERF_SAMPLE_BRANCH_MAX = 1048576, -}; - -struct perf_event_mmap_page { - __u32 version; - __u32 compat_version; - __u32 lock; - __u32 index; - __s64 offset; - __u64 time_enabled; - __u64 time_running; - union { - __u64 capabilities; - struct { - __u64 cap_bit0: 1; - __u64 cap_bit0_is_deprecated: 1; - __u64 cap_user_rdpmc: 1; - __u64 cap_user_time: 1; - __u64 cap_user_time_zero: 1; - __u64 cap_user_time_short: 1; - __u64 cap_____res: 58; - }; - }; - __u16 pmc_width; - __u16 time_shift; - __u32 time_mult; - __u64 time_offset; - __u64 time_zero; - __u32 size; - __u32 __reserved_1; - __u64 time_cycles; - __u64 time_mask; - __u8 __reserved[928]; - __u64 data_head; - __u64 data_tail; - __u64 data_offset; - __u64 data_size; - __u64 aux_head; - __u64 aux_tail; - __u64 aux_offset; - __u64 aux_size; -}; - -typedef struct { - void *lock; - long unsigned int flags; -} class_irqsave_t; - -typedef bool (*smp_cond_func_t)(int, void *); - -struct ldt_struct { - struct desc_struct *entries; - unsigned int nr_entries; - int slot; -}; - -struct device_attribute { - struct attribute attr; - ssize_t (*show)(struct device *, struct device_attribute *, char *); - ssize_t (*store)(struct device *, struct device_attribute *, const char *, size_t); -}; - -enum cpuhp_state { - CPUHP_INVALID = -1, - CPUHP_OFFLINE = 0, - CPUHP_CREATE_THREADS = 1, - CPUHP_PERF_X86_PREPARE = 2, - CPUHP_PERF_X86_AMD_UNCORE_PREP = 3, - CPUHP_PERF_POWER = 4, - CPUHP_PERF_SUPERH = 5, - CPUHP_X86_HPET_DEAD = 6, - CPUHP_X86_MCE_DEAD = 7, - CPUHP_VIRT_NET_DEAD = 8, - CPUHP_IBMVNIC_DEAD = 9, - CPUHP_SLUB_DEAD = 10, - CPUHP_DEBUG_OBJ_DEAD = 11, - CPUHP_MM_WRITEBACK_DEAD = 12, - CPUHP_MM_VMSTAT_DEAD = 13, - CPUHP_SOFTIRQ_DEAD = 14, - CPUHP_NET_MVNETA_DEAD = 15, - CPUHP_CPUIDLE_DEAD = 16, - CPUHP_ARM64_FPSIMD_DEAD = 17, - CPUHP_ARM_OMAP_WAKE_DEAD = 18, - CPUHP_IRQ_POLL_DEAD = 19, - CPUHP_BLOCK_SOFTIRQ_DEAD = 20, - CPUHP_BIO_DEAD = 21, - CPUHP_ACPI_CPUDRV_DEAD = 22, - CPUHP_S390_PFAULT_DEAD = 23, - CPUHP_BLK_MQ_DEAD = 24, - CPUHP_FS_BUFF_DEAD = 25, - CPUHP_PRINTK_DEAD = 26, - CPUHP_MM_MEMCQ_DEAD = 27, - CPUHP_PERCPU_CNT_DEAD = 28, - CPUHP_RADIX_DEAD = 29, - CPUHP_PAGE_ALLOC = 30, - CPUHP_NET_DEV_DEAD = 31, - CPUHP_IOMMU_IOVA_DEAD = 32, - CPUHP_AP_ARM_CACHE_B15_RAC_DEAD = 33, - CPUHP_PADATA_DEAD = 34, - CPUHP_AP_DTPM_CPU_DEAD = 35, - CPUHP_RANDOM_PREPARE = 36, - CPUHP_WORKQUEUE_PREP = 37, - CPUHP_POWER_NUMA_PREPARE = 38, - CPUHP_HRTIMERS_PREPARE = 39, - CPUHP_X2APIC_PREPARE = 40, - CPUHP_SMPCFD_PREPARE = 41, - CPUHP_RELAY_PREPARE = 42, - CPUHP_MD_RAID5_PREPARE = 43, - CPUHP_RCUTREE_PREP = 44, - CPUHP_CPUIDLE_COUPLED_PREPARE = 45, - CPUHP_POWERPC_PMAC_PREPARE = 46, - CPUHP_POWERPC_MMU_CTX_PREPARE = 47, - CPUHP_XEN_PREPARE = 48, - CPUHP_XEN_EVTCHN_PREPARE = 49, - CPUHP_ARM_SHMOBILE_SCU_PREPARE = 50, - CPUHP_SH_SH3X_PREPARE = 51, - CPUHP_TOPOLOGY_PREPARE = 52, - CPUHP_NET_IUCV_PREPARE = 53, - CPUHP_ARM_BL_PREPARE = 54, - CPUHP_TRACE_RB_PREPARE = 55, - CPUHP_MM_ZSWP_POOL_PREPARE = 56, - CPUHP_KVM_PPC_BOOK3S_PREPARE = 57, - CPUHP_ZCOMP_PREPARE = 58, - CPUHP_TIMERS_PREPARE = 59, - CPUHP_TMIGR_PREPARE = 60, - CPUHP_MIPS_SOC_PREPARE = 61, - CPUHP_BP_PREPARE_DYN = 62, - CPUHP_BP_PREPARE_DYN_END = 82, - CPUHP_BP_KICK_AP = 83, - CPUHP_BRINGUP_CPU = 84, - CPUHP_AP_IDLE_DEAD = 85, - CPUHP_AP_OFFLINE = 86, - CPUHP_AP_CACHECTRL_STARTING = 87, - CPUHP_AP_SCHED_STARTING = 88, - CPUHP_AP_RCUTREE_DYING = 89, - CPUHP_AP_CPU_PM_STARTING = 90, - CPUHP_AP_IRQ_GIC_STARTING = 91, - CPUHP_AP_IRQ_HIP04_STARTING = 92, - CPUHP_AP_IRQ_APPLE_AIC_STARTING = 93, - CPUHP_AP_IRQ_ARMADA_XP_STARTING = 94, - CPUHP_AP_IRQ_BCM2836_STARTING = 95, - CPUHP_AP_IRQ_MIPS_GIC_STARTING = 96, - CPUHP_AP_IRQ_EIOINTC_STARTING = 97, - CPUHP_AP_IRQ_AVECINTC_STARTING = 98, - CPUHP_AP_IRQ_SIFIVE_PLIC_STARTING = 99, - CPUHP_AP_IRQ_ACLINT_SSWI_STARTING = 100, - CPUHP_AP_IRQ_RISCV_IMSIC_STARTING = 101, - CPUHP_AP_IRQ_RISCV_SBI_IPI_STARTING = 102, - CPUHP_AP_ARM_MVEBU_COHERENCY = 103, - CPUHP_AP_PERF_X86_AMD_UNCORE_STARTING = 104, - CPUHP_AP_PERF_X86_STARTING = 105, - CPUHP_AP_PERF_X86_AMD_IBS_STARTING = 106, - CPUHP_AP_PERF_XTENSA_STARTING = 107, - CPUHP_AP_ARM_VFP_STARTING = 108, - CPUHP_AP_ARM64_DEBUG_MONITORS_STARTING = 109, - CPUHP_AP_PERF_ARM_HW_BREAKPOINT_STARTING = 110, - CPUHP_AP_PERF_ARM_ACPI_STARTING = 111, - CPUHP_AP_PERF_ARM_STARTING = 112, - CPUHP_AP_PERF_RISCV_STARTING = 113, - CPUHP_AP_ARM_L2X0_STARTING = 114, - CPUHP_AP_EXYNOS4_MCT_TIMER_STARTING = 115, - CPUHP_AP_ARM_ARCH_TIMER_STARTING = 116, - CPUHP_AP_ARM_ARCH_TIMER_EVTSTRM_STARTING = 117, - CPUHP_AP_ARM_GLOBAL_TIMER_STARTING = 118, - CPUHP_AP_JCORE_TIMER_STARTING = 119, - CPUHP_AP_ARM_TWD_STARTING = 120, - CPUHP_AP_QCOM_TIMER_STARTING = 121, - CPUHP_AP_TEGRA_TIMER_STARTING = 122, - CPUHP_AP_ARMADA_TIMER_STARTING = 123, - CPUHP_AP_LOONGARCH_ARCH_TIMER_STARTING = 124, - CPUHP_AP_MIPS_GIC_TIMER_STARTING = 125, - CPUHP_AP_ARC_TIMER_STARTING = 126, - CPUHP_AP_REALTEK_TIMER_STARTING = 127, - CPUHP_AP_RISCV_TIMER_STARTING = 128, - CPUHP_AP_CLINT_TIMER_STARTING = 129, - CPUHP_AP_CSKY_TIMER_STARTING = 130, - CPUHP_AP_TI_GP_TIMER_STARTING = 131, - CPUHP_AP_HYPERV_TIMER_STARTING = 132, - CPUHP_AP_DUMMY_TIMER_STARTING = 133, - CPUHP_AP_ARM_XEN_STARTING = 134, - CPUHP_AP_ARM_XEN_RUNSTATE_STARTING = 135, - CPUHP_AP_ARM_CORESIGHT_STARTING = 136, - CPUHP_AP_ARM_CORESIGHT_CTI_STARTING = 137, - CPUHP_AP_ARM64_ISNDEP_STARTING = 138, - CPUHP_AP_SMPCFD_DYING = 139, - CPUHP_AP_HRTIMERS_DYING = 140, - CPUHP_AP_TICK_DYING = 141, - CPUHP_AP_X86_TBOOT_DYING = 142, - CPUHP_AP_ARM_CACHE_B15_RAC_DYING = 143, - CPUHP_AP_ONLINE = 144, - CPUHP_TEARDOWN_CPU = 145, - CPUHP_AP_ONLINE_IDLE = 146, - CPUHP_AP_HYPERV_ONLINE = 147, - CPUHP_AP_KVM_ONLINE = 148, - CPUHP_AP_SCHED_WAIT_EMPTY = 149, - CPUHP_AP_SMPBOOT_THREADS = 150, - CPUHP_AP_IRQ_AFFINITY_ONLINE = 151, - CPUHP_AP_BLK_MQ_ONLINE = 152, - CPUHP_AP_ARM_MVEBU_SYNC_CLOCKS = 153, - CPUHP_AP_X86_INTEL_EPB_ONLINE = 154, - CPUHP_AP_PERF_ONLINE = 155, - CPUHP_AP_PERF_X86_ONLINE = 156, - CPUHP_AP_PERF_X86_UNCORE_ONLINE = 157, - CPUHP_AP_PERF_X86_AMD_UNCORE_ONLINE = 158, - CPUHP_AP_PERF_X86_AMD_POWER_ONLINE = 159, - CPUHP_AP_PERF_S390_CF_ONLINE = 160, - CPUHP_AP_PERF_S390_SF_ONLINE = 161, - CPUHP_AP_PERF_ARM_CCI_ONLINE = 162, - CPUHP_AP_PERF_ARM_CCN_ONLINE = 163, - CPUHP_AP_PERF_ARM_HISI_CPA_ONLINE = 164, - CPUHP_AP_PERF_ARM_HISI_DDRC_ONLINE = 165, - CPUHP_AP_PERF_ARM_HISI_HHA_ONLINE = 166, - CPUHP_AP_PERF_ARM_HISI_L3_ONLINE = 167, - CPUHP_AP_PERF_ARM_HISI_PA_ONLINE = 168, - CPUHP_AP_PERF_ARM_HISI_SLLC_ONLINE = 169, - CPUHP_AP_PERF_ARM_HISI_PCIE_PMU_ONLINE = 170, - CPUHP_AP_PERF_ARM_HNS3_PMU_ONLINE = 171, - CPUHP_AP_PERF_ARM_L2X0_ONLINE = 172, - CPUHP_AP_PERF_ARM_QCOM_L2_ONLINE = 173, - CPUHP_AP_PERF_ARM_QCOM_L3_ONLINE = 174, - CPUHP_AP_PERF_ARM_APM_XGENE_ONLINE = 175, - CPUHP_AP_PERF_ARM_CAVIUM_TX2_UNCORE_ONLINE = 176, - CPUHP_AP_PERF_ARM_MARVELL_CN10K_DDR_ONLINE = 177, - CPUHP_AP_PERF_ARM_MRVL_PEM_ONLINE = 178, - CPUHP_AP_PERF_POWERPC_NEST_IMC_ONLINE = 179, - CPUHP_AP_PERF_POWERPC_CORE_IMC_ONLINE = 180, - CPUHP_AP_PERF_POWERPC_THREAD_IMC_ONLINE = 181, - CPUHP_AP_PERF_POWERPC_TRACE_IMC_ONLINE = 182, - CPUHP_AP_PERF_POWERPC_HV_24x7_ONLINE = 183, - CPUHP_AP_PERF_POWERPC_HV_GPCI_ONLINE = 184, - CPUHP_AP_PERF_CSKY_ONLINE = 185, - CPUHP_AP_TMIGR_ONLINE = 186, - CPUHP_AP_WATCHDOG_ONLINE = 187, - CPUHP_AP_WORKQUEUE_ONLINE = 188, - CPUHP_AP_RANDOM_ONLINE = 189, - CPUHP_AP_RCUTREE_ONLINE = 190, - CPUHP_AP_KTHREADS_ONLINE = 191, - CPUHP_AP_BASE_CACHEINFO_ONLINE = 192, - CPUHP_AP_ONLINE_DYN = 193, - CPUHP_AP_ONLINE_DYN_END = 233, - CPUHP_AP_X86_HPET_ONLINE = 234, - CPUHP_AP_X86_KVM_CLK_ONLINE = 235, - CPUHP_AP_ACTIVE = 236, - CPUHP_ONLINE = 237, -}; - -struct x86_pmu_capability { - int version; - int num_counters_gp; - int num_counters_fixed; - int bit_width_gp; - int bit_width_fixed; - unsigned int events_mask; - int events_mask_len; - unsigned int pebs_ept: 1; -}; - -struct debug_store { - u64 bts_buffer_base; - u64 bts_index; - u64 bts_absolute_maximum; - u64 bts_interrupt_threshold; - u64 pebs_buffer_base; - u64 pebs_index; - u64 pebs_absolute_maximum; - u64 pebs_interrupt_threshold; - u64 pebs_event_reset[48]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum stack_type { - STACK_TYPE_UNKNOWN = 0, - STACK_TYPE_TASK = 1, - STACK_TYPE_IRQ = 2, - STACK_TYPE_SOFTIRQ = 3, - STACK_TYPE_ENTRY = 4, - STACK_TYPE_EXCEPTION = 5, - STACK_TYPE_EXCEPTION_LAST = 10, -}; - -struct stack_info { - enum stack_type type; - long unsigned int *begin; - long unsigned int *end; - long unsigned int *next_sp; -}; - -struct stack_frame { - struct stack_frame *next_frame; - long unsigned int return_address; -}; - -struct stack_frame_ia32 { - u32 next_frame; - u32 return_address; -}; - -struct perf_guest_switch_msr { - unsigned int msr; - u64 host; - u64 guest; -}; - -typedef struct { - u8 kvm_cpu_l1tf_flush_l1d; - unsigned int __nmi_count; - unsigned int apic_timer_irqs; - unsigned int irq_spurious_count; - unsigned int icr_read_retry_count; - unsigned int kvm_posted_intr_ipis; - unsigned int kvm_posted_intr_wakeup_ipis; - unsigned int kvm_posted_intr_nested_ipis; - unsigned int x86_platform_ipis; - unsigned int apic_perf_irqs; - unsigned int apic_irq_work_irqs; - unsigned int irq_resched_count; - unsigned int irq_call_count; - unsigned int irq_tlb_count; - unsigned int irq_thermal_count; - unsigned int irq_threshold_count; - unsigned int irq_deferred_error_count; - unsigned int irq_hv_callback_count; - unsigned int irq_hv_reenlightenment_count; - unsigned int hyperv_stimer0_count; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -} irq_cpustat_t; - -enum perf_event_x86_regs { - PERF_REG_X86_AX = 0, - PERF_REG_X86_BX = 1, - PERF_REG_X86_CX = 2, - PERF_REG_X86_DX = 3, - PERF_REG_X86_SI = 4, - PERF_REG_X86_DI = 5, - PERF_REG_X86_BP = 6, - PERF_REG_X86_SP = 7, - PERF_REG_X86_IP = 8, - PERF_REG_X86_FLAGS = 9, - PERF_REG_X86_CS = 10, - PERF_REG_X86_SS = 11, - PERF_REG_X86_DS = 12, - PERF_REG_X86_ES = 13, - PERF_REG_X86_FS = 14, - PERF_REG_X86_GS = 15, - PERF_REG_X86_R8 = 16, - PERF_REG_X86_R9 = 17, - PERF_REG_X86_R10 = 18, - PERF_REG_X86_R11 = 19, - PERF_REG_X86_R12 = 20, - PERF_REG_X86_R13 = 21, - PERF_REG_X86_R14 = 22, - PERF_REG_X86_R15 = 23, - PERF_REG_X86_32_MAX = 16, - PERF_REG_X86_64_MAX = 24, - PERF_REG_X86_XMM0 = 32, - PERF_REG_X86_XMM1 = 34, - PERF_REG_X86_XMM2 = 36, - PERF_REG_X86_XMM3 = 38, - PERF_REG_X86_XMM4 = 40, - PERF_REG_X86_XMM5 = 42, - PERF_REG_X86_XMM6 = 44, - PERF_REG_X86_XMM7 = 46, - PERF_REG_X86_XMM8 = 48, - PERF_REG_X86_XMM9 = 50, - PERF_REG_X86_XMM10 = 52, - PERF_REG_X86_XMM11 = 54, - PERF_REG_X86_XMM12 = 56, - PERF_REG_X86_XMM13 = 58, - PERF_REG_X86_XMM14 = 60, - PERF_REG_X86_XMM15 = 62, - PERF_REG_X86_XMM_MAX = 64, -}; - -struct perf_callchain_entry_ctx { - struct perf_callchain_entry *entry; - u32 max_stack; - u32 nr; - short int contexts; - bool contexts_maxed; -}; - -struct perf_pmu_events_attr { - struct device_attribute attr; - u64 id; - const char *event_str; -}; - -struct perf_pmu_events_ht_attr { - struct device_attribute attr; - u64 id; - const char *event_str_ht; - const char *event_str_noht; -}; - -struct perf_pmu_events_hybrid_attr { - struct device_attribute attr; - u64 id; - const char *event_str; - u64 pmu_type; -}; - -enum { - NMI_LOCAL = 0, - NMI_UNKNOWN = 1, - NMI_SERR = 2, - NMI_IO_CHECK = 3, - NMI_MAX = 4, -}; - -typedef int (*nmi_handler_t)(unsigned int, struct pt_regs *); - -struct nmiaction { - struct list_head list; - nmi_handler_t handler; - u64 max_duration; - long unsigned int flags; - const char *name; -}; - -struct gdt_page { - struct desc_struct gdt[16]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct cyc2ns_data { - u32 cyc2ns_mul; - u32 cyc2ns_shift; - u64 cyc2ns_offset; -}; - -struct unwind_state { - struct stack_info stack_info; - long unsigned int stack_mask; - struct task_struct *task; - int graph_idx; - struct llist_node *kr_cur; - bool error; - bool got_irq; - long unsigned int *bp; - long unsigned int *orig_sp; - long unsigned int ip; - long unsigned int *next_bp; - struct pt_regs *regs; -}; - -enum extra_reg_type { - EXTRA_REG_NONE = -1, - EXTRA_REG_RSP_0 = 0, - EXTRA_REG_RSP_1 = 1, - EXTRA_REG_LBR = 2, - EXTRA_REG_LDLAT = 3, - EXTRA_REG_FE = 4, - EXTRA_REG_SNOOP_0 = 5, - EXTRA_REG_SNOOP_1 = 6, - EXTRA_REG_MAX = 7, -}; - -struct event_constraint { - union { - long unsigned int idxmsk[1]; - u64 idxmsk64; - }; - u64 code; - u64 cmask; - int weight; - int overlap; - int flags; - unsigned int size; -}; - -enum { - PERF_X86_EVENT_PEBS_LDLAT = 1, - PERF_X86_EVENT_PEBS_ST = 2, - PERF_X86_EVENT_PEBS_ST_HSW = 4, - PERF_X86_EVENT_PEBS_LD_HSW = 8, - PERF_X86_EVENT_PEBS_NA_HSW = 16, - PERF_X86_EVENT_EXCL = 32, - PERF_X86_EVENT_DYNAMIC = 64, - PERF_X86_EVENT_PEBS_CNTR = 128, - PERF_X86_EVENT_EXCL_ACCT = 256, - PERF_X86_EVENT_AUTO_RELOAD = 512, - PERF_X86_EVENT_LARGE_PEBS = 1024, - PERF_X86_EVENT_PEBS_VIA_PT = 2048, - PERF_X86_EVENT_PAIR = 4096, - PERF_X86_EVENT_LBR_SELECT = 8192, - PERF_X86_EVENT_TOPDOWN = 16384, - PERF_X86_EVENT_PEBS_STLAT = 32768, - PERF_X86_EVENT_AMD_BRS = 65536, - PERF_X86_EVENT_PEBS_LAT_HYBRID = 131072, - PERF_X86_EVENT_NEEDS_BRANCH_STACK = 262144, - PERF_X86_EVENT_BRANCH_COUNTERS = 524288, - PERF_X86_EVENT_ACR = 1048576, -}; - -struct amd_nb { - int nb_id; - int refcnt; - struct perf_event *owners[64]; - struct event_constraint event_constraints[64]; -}; - -struct er_account { - raw_spinlock_t lock; - u64 config; - u64 reg; - atomic_t ref; -}; - -struct intel_shared_regs { - struct er_account regs[7]; - int refcnt; - unsigned int core_id; -}; - -enum intel_excl_state_type { - INTEL_EXCL_UNUSED = 0, - INTEL_EXCL_SHARED = 1, - INTEL_EXCL_EXCLUSIVE = 2, -}; - -struct intel_excl_states { - enum intel_excl_state_type state[64]; - bool sched_started; -}; - -struct intel_excl_cntrs { - raw_spinlock_t lock; - struct intel_excl_states states[2]; - union { - u16 has_exclusive[2]; - u32 exclusive_present; - }; - int refcnt; - unsigned int core_id; -}; - -enum { - X86_PERF_KFREE_SHARED = 0, - X86_PERF_KFREE_EXCL = 1, - X86_PERF_KFREE_MAX = 2, -}; - -struct cpu_hw_events { - struct perf_event *events[64]; - long unsigned int active_mask[1]; - long unsigned int dirty[1]; - int enabled; - int n_events; - int n_added; - int n_txn; - int n_txn_pair; - int n_txn_metric; - int assign[64]; - u64 tags[64]; - struct perf_event *event_list[64]; - struct event_constraint *event_constraint[64]; - int n_excl; - int n_late_setup; - unsigned int txn_flags; - int is_fake; - struct debug_store *ds; - void *ds_pebs_vaddr; - void *ds_bts_vaddr; - u64 pebs_enabled; - int n_pebs; - int n_large_pebs; - int n_pebs_via_pt; - int pebs_output; - u64 pebs_data_cfg; - u64 active_pebs_data_cfg; - int pebs_record_size; - u64 fixed_ctrl_val; - u64 active_fixed_ctrl_val; - u64 acr_cfg_b[64]; - u64 acr_cfg_c[64]; - int lbr_users; - int lbr_pebs_users; - struct perf_branch_stack lbr_stack; - struct perf_branch_entry lbr_entries[32]; - u64 lbr_counters[32]; - union { - struct er_account *lbr_sel; - struct er_account *lbr_ctl; - }; - u64 br_sel; - void *last_task_ctx; - int last_log_id; - int lbr_select; - void *lbr_xsave; - u64 intel_ctrl_guest_mask; - u64 intel_ctrl_host_mask; - struct perf_guest_switch_msr guest_switch_msrs[64]; - u64 intel_cp_status; - struct intel_shared_regs *shared_regs; - struct event_constraint *constraint_list; - struct intel_excl_cntrs *excl_cntrs; - int excl_thread_id; - u64 tfa_shadow; - int n_metric; - struct amd_nb *amd_nb; - int brs_active; - u64 perf_ctr_virt_mask; - int n_pair; - void *kfree_on_online[2]; - struct pmu *pmu; -}; - -struct extra_reg { - unsigned int event; - unsigned int msr; - u64 config_mask; - u64 valid_mask; - int idx; - bool extra_msr_access; -}; - -union perf_capabilities { - struct { - u64 lbr_format: 6; - u64 pebs_trap: 1; - u64 pebs_arch_reg: 1; - u64 pebs_format: 4; - u64 smm_freeze: 1; - u64 full_width_write: 1; - u64 pebs_baseline: 1; - u64 perf_metrics: 1; - u64 pebs_output_pt_available: 1; - u64 pebs_timing_info: 1; - u64 anythread_deprecated: 1; - u64 rdpmc_metrics_clear: 1; - }; - u64 capabilities; -}; - -struct x86_pmu_quirk { - struct x86_pmu_quirk *next; - void (*func)(void); -}; - -enum { - x86_lbr_exclusive_lbr = 0, - x86_lbr_exclusive_bts = 1, - x86_lbr_exclusive_pt = 2, - x86_lbr_exclusive_max = 3, -}; - -enum hybrid_pmu_type { - not_hybrid = 0, - hybrid_small = 1, - hybrid_big = 2, - hybrid_tiny = 4, - hybrid_big_small = 3, - hybrid_small_tiny = 5, - hybrid_big_small_tiny = 7, -}; - -struct x86_hybrid_pmu { - struct pmu pmu; - const char *name; - enum hybrid_pmu_type pmu_type; - cpumask_t supported_cpus; - union perf_capabilities intel_cap; - u64 intel_ctrl; - u64 pebs_events_mask; - u64 config_mask; - union { - u64 cntr_mask64; - long unsigned int cntr_mask[1]; - }; - union { - u64 fixed_cntr_mask64; - long unsigned int fixed_cntr_mask[1]; - }; - union { - u64 acr_cntr_mask64; - long unsigned int acr_cntr_mask[1]; - }; - union { - u64 acr_cause_mask64; - long unsigned int acr_cause_mask[1]; - }; - struct event_constraint unconstrained; - u64 hw_cache_event_ids[42]; - u64 hw_cache_extra_regs[42]; - struct event_constraint *event_constraints; - struct event_constraint *pebs_constraints; - struct extra_reg *extra_regs; - unsigned int late_ack: 1; - unsigned int mid_ack: 1; - unsigned int enabled_ack: 1; - u64 pebs_data_source[256]; -}; - -enum intel_cpu_type { - INTEL_CPU_TYPE_UNKNOWN = 0, - INTEL_CPU_TYPE_ATOM = 32, - INTEL_CPU_TYPE_CORE = 64, -}; - -struct x86_pmu { - const char *name; - int version; - int (*handle_irq)(struct pt_regs *); - void (*disable_all)(void); - void (*enable_all)(int); - void (*enable)(struct perf_event *); - void (*disable)(struct perf_event *); - void (*assign)(struct perf_event *, int); - void (*add)(struct perf_event *); - void (*del)(struct perf_event *); - void (*read)(struct perf_event *); - int (*set_period)(struct perf_event *); - u64 (*update)(struct perf_event *); - int (*hw_config)(struct perf_event *); - int (*schedule_events)(struct cpu_hw_events *, int, int *); - void (*late_setup)(void); - void (*pebs_enable)(struct perf_event *); - void (*pebs_disable)(struct perf_event *); - void (*pebs_enable_all)(void); - void (*pebs_disable_all)(void); - unsigned int eventsel; - unsigned int perfctr; - unsigned int fixedctr; - int (*addr_offset)(int, bool); - int (*rdpmc_index)(int); - u64 (*event_map)(int); - int max_events; - u64 config_mask; - union { - u64 cntr_mask64; - long unsigned int cntr_mask[1]; - }; - union { - u64 fixed_cntr_mask64; - long unsigned int fixed_cntr_mask[1]; - }; - union { - u64 acr_cntr_mask64; - long unsigned int acr_cntr_mask[1]; - }; - union { - u64 acr_cause_mask64; - long unsigned int acr_cause_mask[1]; - }; - int cntval_bits; - u64 cntval_mask; - union { - long unsigned int events_maskl; - long unsigned int events_mask[1]; - }; - int events_mask_len; - int apic; - u64 max_period; - struct event_constraint * (*get_event_constraints)(struct cpu_hw_events *, int, struct perf_event *); - void (*put_event_constraints)(struct cpu_hw_events *, struct perf_event *); - void (*start_scheduling)(struct cpu_hw_events *); - void (*commit_scheduling)(struct cpu_hw_events *, int, int); - void (*stop_scheduling)(struct cpu_hw_events *); - struct event_constraint *event_constraints; - struct x86_pmu_quirk *quirks; - void (*limit_period)(struct perf_event *, s64 *); - unsigned int late_ack: 1; - unsigned int mid_ack: 1; - unsigned int enabled_ack: 1; - int attr_rdpmc_broken; - int attr_rdpmc; - struct attribute **format_attrs; - ssize_t (*events_sysfs_show)(char *, u64); - const struct attribute_group **attr_update; - long unsigned int attr_freeze_on_smi; - int (*cpu_prepare)(int); - void (*cpu_starting)(int); - void (*cpu_dying)(int); - void (*cpu_dead)(int); - void (*check_microcode)(void); - void (*sched_task)(struct perf_event_pmu_context *, struct task_struct *, bool); - u64 intel_ctrl; - union perf_capabilities intel_cap; - unsigned int bts: 1; - unsigned int bts_active: 1; - unsigned int ds_pebs: 1; - unsigned int pebs_active: 1; - unsigned int pebs_broken: 1; - unsigned int pebs_prec_dist: 1; - unsigned int pebs_no_tlb: 1; - unsigned int pebs_no_isolation: 1; - unsigned int pebs_block: 1; - unsigned int pebs_ept: 1; - int pebs_record_size; - int pebs_buffer_size; - u64 pebs_events_mask; - void (*drain_pebs)(struct pt_regs *, struct perf_sample_data *); - struct event_constraint *pebs_constraints; - void (*pebs_aliases)(struct perf_event *); - u64 (*pebs_latency_data)(struct perf_event *, u64); - long unsigned int large_pebs_flags; - u64 rtm_abort_event; - u64 pebs_capable; - unsigned int lbr_tos; - unsigned int lbr_from; - unsigned int lbr_to; - unsigned int lbr_info; - unsigned int lbr_nr; - union { - u64 lbr_sel_mask; - u64 lbr_ctl_mask; - }; - union { - const int *lbr_sel_map; - int *lbr_ctl_map; - }; - u64 lbr_callstack_users; - bool lbr_double_abort; - bool lbr_pt_coexist; - unsigned int lbr_has_info: 1; - unsigned int lbr_has_tsx: 1; - unsigned int lbr_from_flags: 1; - unsigned int lbr_to_cycles: 1; - unsigned int lbr_depth_mask: 8; - unsigned int lbr_deep_c_reset: 1; - unsigned int lbr_lip: 1; - unsigned int lbr_cpl: 1; - unsigned int lbr_filter: 1; - unsigned int lbr_call_stack: 1; - unsigned int lbr_mispred: 1; - unsigned int lbr_timed_lbr: 1; - unsigned int lbr_br_type: 1; - unsigned int lbr_counters: 4; - void (*lbr_reset)(void); - void (*lbr_read)(struct cpu_hw_events *); - void (*lbr_save)(void *); - void (*lbr_restore)(void *); - atomic_t lbr_exclusive[3]; - int num_topdown_events; - unsigned int amd_nb_constraints: 1; - u64 perf_ctr_pair_en; - struct extra_reg *extra_regs; - unsigned int flags; - struct perf_guest_switch_msr * (*guest_get_msrs)(int *, void *); - int (*check_period)(struct perf_event *, u64); - int (*aux_output_match)(struct perf_event *); - void (*filter)(struct pmu *, int, bool *); - int num_hybrid_pmus; - struct x86_hybrid_pmu *hybrid_pmu; - enum intel_cpu_type (*get_hybrid_cpu_type)(void); -}; - -struct sched_state { - int weight; - int event; - int counter; - int unassigned; - int nr_gp; - u64 used; -}; - -struct perf_sched { - int max_weight; - int max_events; - int max_gp; - int saved_states; - struct event_constraint **constraints; - struct sched_state state; - struct sched_state saved[2]; -}; - -enum x86_topology_domains { - TOPO_SMT_DOMAIN = 0, - TOPO_CORE_DOMAIN = 1, - TOPO_MODULE_DOMAIN = 2, - TOPO_TILE_DOMAIN = 3, - TOPO_DIE_DOMAIN = 4, - TOPO_DIEGRP_DOMAIN = 5, - TOPO_PKG_DOMAIN = 6, - TOPO_MAX_DOMAIN = 7, -}; - -struct perf_msr { - u64 msr; - struct attribute_group *grp; - bool (*test)(int, void *); - bool no_check; - u64 mask; -}; - -enum { - PERF_BR_UNKNOWN = 0, - PERF_BR_COND = 1, - PERF_BR_UNCOND = 2, - PERF_BR_IND = 3, - PERF_BR_CALL = 4, - PERF_BR_IND_CALL = 5, - PERF_BR_RET = 6, - PERF_BR_SYSCALL = 7, - PERF_BR_SYSRET = 8, - PERF_BR_COND_CALL = 9, - PERF_BR_COND_RET = 10, - PERF_BR_ERET = 11, - PERF_BR_IRQ = 12, - PERF_BR_SERROR = 13, - PERF_BR_NO_TX = 14, - PERF_BR_EXTEND_ABI = 15, - PERF_BR_MAX = 16, -}; - -enum { - X86_BR_NONE = 0, - X86_BR_USER = 1, - X86_BR_KERNEL = 2, - X86_BR_CALL = 4, - X86_BR_RET = 8, - X86_BR_SYSCALL = 16, - X86_BR_SYSRET = 32, - X86_BR_INT = 64, - X86_BR_IRET = 128, - X86_BR_JCC = 256, - X86_BR_JMP = 512, - X86_BR_IRQ = 1024, - X86_BR_IND_CALL = 2048, - X86_BR_ABORT = 4096, - X86_BR_IN_TX = 8192, - X86_BR_NO_TX = 16384, - X86_BR_ZERO_CALL = 32768, - X86_BR_CALL_STACK = 65536, - X86_BR_IND_JMP = 131072, - X86_BR_TYPE_SAVE = 262144, -}; - -typedef struct kmem_cache *kmem_buckets[14]; - -union cpuid_0x80000022_ebx { - struct { - unsigned int num_core_pmc: 4; - unsigned int lbr_v2_stack_sz: 6; - unsigned int num_df_pmc: 6; - unsigned int num_umc_pmc: 6; - } split; - unsigned int full; -}; - -typedef int perf_snapshot_branch_stack_t(struct perf_branch_entry *, unsigned int); - -typedef void amd_pmu_branch_reset_t(void); - -enum { - PERF_BR_SPEC_NA = 0, - PERF_BR_SPEC_WRONG_PATH = 1, - PERF_BR_NON_SPEC_CORRECT_PATH = 2, - PERF_BR_SPEC_CORRECT_PATH = 3, - PERF_BR_SPEC_MAX = 4, -}; - -struct branch_entry { - union { - struct { - u64 ip: 58; - u64 ip_sign_ext: 5; - u64 mispredict: 1; - } split; - u64 full; - } from; - union { - struct { - u64 ip: 58; - u64 ip_sign_ext: 3; - u64 reserved: 1; - u64 spec: 1; - u64 valid: 1; - } split; - u64 full; - } to; -}; - -union amd_debug_extn_cfg { - __u64 val; - struct { - __u64 rsvd0: 2; - __u64 brsmen: 1; - __u64 rsvd4_3: 2; - __u64 vb: 1; - __u64 rsvd2: 10; - __u64 msroff: 4; - __u64 rsvd3: 4; - __u64 pmc: 3; - __u64 rsvd4: 37; - }; -}; - -enum perf_event_task_context { - perf_invalid_context = -1, - perf_hw_context = 0, - perf_sw_context = 1, - perf_nr_task_contexts = 2, -}; - -struct pci_device_id { - __u32 vendor; - __u32 device; - __u32 subvendor; - __u32 subdevice; - __u32 class; - __u32 class_mask; - kernel_ulong_t driver_data; - __u32 override_only; -}; - -struct pci_bus; - -struct hotplug_slot; - -struct pci_slot { - struct pci_bus *bus; - struct list_head list; - struct hotplug_slot *hotplug; - unsigned char number; - struct kobject kobj; -}; - -typedef short unsigned int pci_bus_flags_t; - -struct pci_dev; - -struct pci_ops; - -struct pci_bus { - struct list_head node; - struct pci_bus *parent; - struct list_head children; - struct list_head devices; - struct pci_dev *self; - struct list_head slots; - struct resource *resource[4]; - struct list_head resources; - struct resource busn_res; - struct pci_ops *ops; - void *sysdata; - struct proc_dir_entry *procdir; - unsigned char number; - unsigned char primary; - unsigned char max_bus_speed; - unsigned char cur_bus_speed; - char name[48]; - short unsigned int bridge_ctl; - pci_bus_flags_t bus_flags; - struct device *bridge; - struct device dev; - struct bin_attribute *legacy_io; - struct bin_attribute *legacy_mem; - unsigned int is_added: 1; - unsigned int unsafe_warn: 1; - unsigned int flit_mode: 1; -}; - -typedef int pci_power_t; - -typedef unsigned int pci_channel_state_t; - -typedef short unsigned int pci_dev_flags_t; - -struct pci_vpd { - struct mutex lock; - unsigned int len; - u8 cap; -}; - -struct aer_info; - -struct rcec_ea; - -struct pci_driver; - -struct pcie_link_state; - -struct pcie_bwctrl_data; - -struct pci_sriov; - -struct pci_p2pdma; - -struct pci_dev { - struct list_head bus_list; - struct pci_bus *bus; - struct pci_bus *subordinate; - void *sysdata; - struct proc_dir_entry *procent; - struct pci_slot *slot; - unsigned int devfn; - short unsigned int vendor; - short unsigned int device; - short unsigned int subsystem_vendor; - short unsigned int subsystem_device; - unsigned int class; - u8 revision; - u8 hdr_type; - u16 aer_cap; - struct aer_info *aer_info; - struct rcec_ea *rcec_ea; - struct pci_dev *rcec; - u32 devcap; - u16 rebar_cap; - u8 pcie_cap; - u8 msi_cap; - u8 msix_cap; - u8 pcie_mpss: 3; - u8 rom_base_reg; - u8 pin; - u16 pcie_flags_reg; - long unsigned int *dma_alias_mask; - struct pci_driver *driver; - u64 dma_mask; - struct device_dma_parameters dma_parms; - pci_power_t current_state; - u8 pm_cap; - unsigned int pme_support: 5; - unsigned int pme_poll: 1; - unsigned int pinned: 1; - unsigned int config_rrs_sv: 1; - unsigned int imm_ready: 1; - unsigned int d1_support: 1; - unsigned int d2_support: 1; - unsigned int no_d1d2: 1; - unsigned int no_d3cold: 1; - unsigned int bridge_d3: 1; - unsigned int d3cold_allowed: 1; - unsigned int mmio_always_on: 1; - unsigned int wakeup_prepared: 1; - unsigned int skip_bus_pm: 1; - unsigned int ignore_hotplug: 1; - unsigned int hotplug_user_indicators: 1; - unsigned int clear_retrain_link: 1; - unsigned int d3hot_delay; - unsigned int d3cold_delay; - u16 l1ss; - struct pcie_link_state *link_state; - unsigned int ltr_path: 1; - unsigned int pasid_no_tlp: 1; - unsigned int eetlp_prefix_max: 3; - pci_channel_state_t error_state; - struct device dev; - int cfg_size; - unsigned int irq; - struct resource resource[17]; - struct resource driver_exclusive_resource; - unsigned int transparent: 1; - unsigned int io_window: 1; - unsigned int pref_window: 1; - unsigned int pref_64_window: 1; - unsigned int multifunction: 1; - unsigned int is_busmaster: 1; - unsigned int no_msi: 1; - unsigned int no_64bit_msi: 1; - unsigned int block_cfg_access: 1; - unsigned int broken_parity_status: 1; - unsigned int irq_reroute_variant: 2; - unsigned int msi_enabled: 1; - unsigned int msix_enabled: 1; - unsigned int ari_enabled: 1; - unsigned int ats_enabled: 1; - unsigned int pasid_enabled: 1; - unsigned int pri_enabled: 1; - unsigned int tph_enabled: 1; - unsigned int is_managed: 1; - unsigned int is_msi_managed: 1; - unsigned int needs_freset: 1; - unsigned int state_saved: 1; - unsigned int is_physfn: 1; - unsigned int is_virtfn: 1; - unsigned int is_hotplug_bridge: 1; - unsigned int is_pciehp: 1; - unsigned int shpc_managed: 1; - unsigned int is_thunderbolt: 1; - unsigned int untrusted: 1; - unsigned int external_facing: 1; - unsigned int broken_intx_masking: 1; - unsigned int io_window_1k: 1; - unsigned int irq_managed: 1; - unsigned int non_compliant_bars: 1; - unsigned int is_probed: 1; - unsigned int link_active_reporting: 1; - unsigned int no_vf_scan: 1; - unsigned int no_command_memory: 1; - unsigned int rom_bar_overlap: 1; - unsigned int rom_attr_enabled: 1; - unsigned int non_mappable_bars: 1; - unsigned int aspm_os_control: 1; - pci_dev_flags_t dev_flags; - atomic_t enable_cnt; - spinlock_t pcie_cap_lock; - u32 saved_config_space[16]; - struct hlist_head saved_cap_space; - struct bin_attribute *res_attr[17]; - struct bin_attribute *res_attr_wc[17]; - unsigned int broken_cmd_compl: 1; - u16 ptm_cap; - unsigned int ptm_root: 1; - unsigned int ptm_enabled: 1; - u8 ptm_granularity; - void *msix_base; - raw_spinlock_t msi_lock; - struct pci_vpd vpd; - u16 dpc_cap; - unsigned int dpc_rp_extensions: 1; - u8 dpc_rp_log_size; - struct pcie_bwctrl_data *link_bwctrl; - union { - struct pci_sriov *sriov; - struct pci_dev *physfn; - }; - u16 ats_cap; - u8 ats_stu; - u16 pri_cap; - u32 pri_reqs_alloc; - unsigned int pasid_required: 1; - u16 pasid_cap; - u16 pasid_features; - struct pci_p2pdma *p2pdma; - struct xarray doe_mbs; - u16 acs_cap; - u8 supported_speeds; - phys_addr_t rom; - size_t romlen; - const char *driver_override; - long unsigned int priv_flags; - u8 reset_methods[8]; - u16 tph_cap; - u8 tph_mode; - u8 tph_req_type; -}; - -struct pci_dynids { - spinlock_t lock; - struct list_head list; -}; - -struct pci_error_handlers; - -struct pci_driver { - const char *name; - const struct pci_device_id *id_table; - int (*probe)(struct pci_dev *, const struct pci_device_id *); - void (*remove)(struct pci_dev *); - int (*suspend)(struct pci_dev *, pm_message_t); - int (*resume)(struct pci_dev *); - void (*shutdown)(struct pci_dev *); - int (*sriov_configure)(struct pci_dev *, int); - int (*sriov_set_msix_vec_count)(struct pci_dev *, int); - u32 (*sriov_get_vf_total_msix)(struct pci_dev *); - const struct pci_error_handlers *err_handler; - const struct attribute_group **groups; - const struct attribute_group **dev_groups; - struct device_driver driver; - struct pci_dynids dynids; - bool driver_managed_dma; -}; - -struct pci_ops { - int (*add_bus)(struct pci_bus *); - void (*remove_bus)(struct pci_bus *); - void * (*map_bus)(struct pci_bus *, unsigned int, int); - int (*read)(struct pci_bus *, unsigned int, int, int, u32 *); - int (*write)(struct pci_bus *, unsigned int, int, int, u32); -}; - -typedef unsigned int pci_ers_result_t; - -struct pci_error_handlers { - pci_ers_result_t (*error_detected)(struct pci_dev *, pci_channel_state_t); - pci_ers_result_t (*mmio_enabled)(struct pci_dev *); - pci_ers_result_t (*slot_reset)(struct pci_dev *); - void (*reset_prepare)(struct pci_dev *); - void (*reset_done)(struct pci_dev *); - void (*resume)(struct pci_dev *); - void (*cor_error_detected)(struct pci_dev *); -}; - -struct syscore_ops { - struct list_head node; - int (*suspend)(void); - void (*resume)(void); - void (*shutdown)(void); -}; - -union ibs_fetch_ctl { - __u64 val; - struct { - __u64 fetch_maxcnt: 16; - __u64 fetch_cnt: 16; - __u64 fetch_lat: 16; - __u64 fetch_en: 1; - __u64 fetch_val: 1; - __u64 fetch_comp: 1; - __u64 ic_miss: 1; - __u64 phy_addr_valid: 1; - __u64 l1tlb_pgsz: 2; - __u64 l1tlb_miss: 1; - __u64 l2tlb_miss: 1; - __u64 rand_en: 1; - __u64 fetch_l2_miss: 1; - __u64 l3_miss_only: 1; - __u64 fetch_oc_miss: 1; - __u64 fetch_l3_miss: 1; - __u64 reserved: 2; - }; -}; - -union ibs_op_ctl { - __u64 val; - struct { - __u64 opmaxcnt: 16; - __u64 l3_miss_only: 1; - __u64 op_en: 1; - __u64 op_val: 1; - __u64 cnt_ctl: 1; - __u64 opmaxcnt_ext: 7; - __u64 reserved0: 5; - __u64 opcurcnt: 27; - __u64 ldlat_thrsh: 4; - __u64 ldlat_en: 1; - }; -}; - -union ibs_op_data { - __u64 val; - struct { - __u64 comp_to_ret_ctr: 16; - __u64 tag_to_ret_ctr: 16; - __u64 reserved1: 2; - __u64 op_return: 1; - __u64 op_brn_taken: 1; - __u64 op_brn_misp: 1; - __u64 op_brn_ret: 1; - __u64 op_rip_invalid: 1; - __u64 op_brn_fuse: 1; - __u64 op_microcode: 1; - __u64 reserved2: 23; - }; -}; - -union ibs_op_data2 { - __u64 val; - struct { - __u64 data_src_lo: 3; - __u64 reserved0: 1; - __u64 rmt_node: 1; - __u64 cache_hit_st: 1; - __u64 data_src_hi: 2; - __u64 reserved1: 56; - }; -}; - -union ibs_op_data3 { - __u64 val; - struct { - __u64 ld_op: 1; - __u64 st_op: 1; - __u64 dc_l1tlb_miss: 1; - __u64 dc_l2tlb_miss: 1; - __u64 dc_l1tlb_hit_2m: 1; - __u64 dc_l1tlb_hit_1g: 1; - __u64 dc_l2tlb_hit_2m: 1; - __u64 dc_miss: 1; - __u64 dc_mis_acc: 1; - __u64 reserved: 4; - __u64 dc_wc_mem_acc: 1; - __u64 dc_uc_mem_acc: 1; - __u64 dc_locked_op: 1; - __u64 dc_miss_no_mab_alloc: 1; - __u64 dc_lin_addr_valid: 1; - __u64 dc_phy_addr_valid: 1; - __u64 dc_l2_tlb_hit_1g: 1; - __u64 l2_miss: 1; - __u64 sw_pf: 1; - __u64 op_mem_width: 4; - __u64 op_dc_miss_open_mem_reqs: 6; - __u64 dc_miss_lat: 16; - __u64 tlb_refill_lat: 16; - }; -}; - -struct perf_ibs_data { - u32 size; - union { - u32 data[0]; - u32 caps; - }; - u64 regs[8]; -}; - -enum ibs_states { - IBS_ENABLED = 0, - IBS_STARTED = 1, - IBS_STOPPING = 2, - IBS_STOPPED = 3, - IBS_MAX_STATES = 4, -}; - -struct cpu_perf_ibs { - struct perf_event *event; - long unsigned int state[1]; -}; - -struct perf_ibs { - struct pmu pmu; - unsigned int msr; - u64 config_mask; - u64 cnt_mask; - u64 enable_mask; - u64 valid_mask; - u16 min_period; - u64 max_period; - long unsigned int offset_mask[1]; - int offset_max; - unsigned int fetch_count_reset_broken: 1; - unsigned int fetch_ignore_if_zero_rip: 1; - struct cpu_perf_ibs *pcpu; - u64 (*get_count)(u64); -}; - -struct bts_ctx { - struct perf_output_handle handle; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct debug_store ds_back; - int state; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum { - BTS_STATE_STOPPED = 0, - BTS_STATE_INACTIVE = 1, - BTS_STATE_ACTIVE = 2, -}; - -struct bts_phys { - struct page *page; - long unsigned int size; - long unsigned int offset; - long unsigned int displacement; -}; - -struct bts_buffer { - size_t real_size; - unsigned int nr_pages; - unsigned int nr_bufs; - unsigned int cur_buf; - bool snapshot; - local_t data_size; - local_t head; - long unsigned int end; - void **data_pages; - struct bts_phys buf[0]; -}; - -typedef unsigned int slab_flags_t; - -struct fxregs_state { - u16 cwd; - u16 swd; - u16 twd; - u16 fop; - union { - struct { - u64 rip; - u64 rdp; - }; - struct { - u32 fip; - u32 fcs; - u32 foo; - u32 fos; - }; - }; - u32 mxcsr; - u32 mxcsr_mask; - u32 st_space[32]; - u32 xmm_space[64]; - u32 padding[12]; - union { - u32 padding1[12]; - u32 sw_reserved[12]; - }; -}; - -enum xfeature { - XFEATURE_FP = 0, - XFEATURE_SSE = 1, - XFEATURE_YMM = 2, - XFEATURE_BNDREGS = 3, - XFEATURE_BNDCSR = 4, - XFEATURE_OPMASK = 5, - XFEATURE_ZMM_Hi256 = 6, - XFEATURE_Hi16_ZMM = 7, - XFEATURE_PT_UNIMPLEMENTED_SO_FAR = 8, - XFEATURE_PKRU = 9, - XFEATURE_PASID = 10, - XFEATURE_CET_USER = 11, - XFEATURE_CET_KERNEL = 12, - XFEATURE_RSRVD_COMP_13 = 13, - XFEATURE_RSRVD_COMP_14 = 14, - XFEATURE_LBR = 15, - XFEATURE_RSRVD_COMP_16 = 16, - XFEATURE_XTILE_CFG = 17, - XFEATURE_XTILE_DATA = 18, - XFEATURE_APX = 19, - XFEATURE_MAX = 20, -}; - -struct lbr_entry { - u64 from; - u64 to; - u64 info; -}; - -struct arch_lbr_state { - u64 lbr_ctl; - u64 lbr_depth; - u64 ler_from; - u64 ler_to; - u64 ler_info; - struct lbr_entry entries[0]; -}; - -struct xstate_header { - u64 xfeatures; - u64 xcomp_bv; - u64 reserved[6]; -}; - -struct xregs_state { - struct fxregs_state i387; - struct xstate_header header; - u8 extended_state_area[0]; -}; - -struct kmem_cache_args { - unsigned int align; - unsigned int useroffset; - unsigned int usersize; - unsigned int freeptr_offset; - bool use_freeptr_offset; - void (*ctor)(void *); -}; - -union cpuid28_eax { - struct { - unsigned int lbr_depth_mask: 8; - unsigned int reserved: 22; - unsigned int lbr_deep_c_reset: 1; - unsigned int lbr_lip: 1; - } split; - unsigned int full; -}; - -union cpuid28_ebx { - struct { - unsigned int lbr_cpl: 1; - unsigned int lbr_filter: 1; - unsigned int lbr_call_stack: 1; - } split; - unsigned int full; -}; - -union cpuid28_ecx { - struct { - unsigned int lbr_mispred: 1; - unsigned int lbr_timed_lbr: 1; - unsigned int lbr_br_type: 1; - unsigned int reserved: 13; - unsigned int lbr_counters: 4; - } split; - unsigned int full; -}; - -struct x86_pmu_lbr { - unsigned int nr; - unsigned int from; - unsigned int to; - unsigned int info; - bool has_callstack; -}; - -enum { - LBR_FORMAT_32 = 0, - LBR_FORMAT_LIP = 1, - LBR_FORMAT_EIP = 2, - LBR_FORMAT_EIP_FLAGS = 3, - LBR_FORMAT_EIP_FLAGS2 = 4, - LBR_FORMAT_INFO = 5, - LBR_FORMAT_TIME = 6, - LBR_FORMAT_INFO2 = 7, - LBR_FORMAT_MAX_KNOWN = 7, -}; - -struct x86_perf_task_context_opt { - int lbr_callstack_users; - int lbr_stack_state; - int log_id; -}; - -struct x86_perf_task_context { - u64 lbr_sel; - int tos; - int valid_lbrs; - struct x86_perf_task_context_opt opt; - struct lbr_entry lbr[32]; -}; - -struct x86_perf_task_context_arch_lbr { - struct x86_perf_task_context_opt opt; - struct lbr_entry entries[0]; -}; - -struct x86_perf_task_context_arch_lbr_xsave { - struct x86_perf_task_context_opt opt; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - union { - struct xregs_state xsave; - struct { - struct fxregs_state i387; - struct xstate_header header; - struct arch_lbr_state lbr; - long: 64; - long: 64; - long: 64; - }; - }; -}; - -enum { - LBR_NONE = 0, - LBR_VALID = 1, -}; - -enum { - ARCH_LBR_BR_TYPE_JCC = 0, - ARCH_LBR_BR_TYPE_NEAR_IND_JMP = 1, - ARCH_LBR_BR_TYPE_NEAR_REL_JMP = 2, - ARCH_LBR_BR_TYPE_NEAR_IND_CALL = 3, - ARCH_LBR_BR_TYPE_NEAR_REL_CALL = 4, - ARCH_LBR_BR_TYPE_NEAR_RET = 5, - ARCH_LBR_BR_TYPE_KNOWN_MAX = 5, - ARCH_LBR_BR_TYPE_MAP_MAX = 16, -}; - -typedef void (*exitcall_t)(void); - -enum hrtimer_mode { - HRTIMER_MODE_ABS = 0, - HRTIMER_MODE_REL = 1, - HRTIMER_MODE_PINNED = 2, - HRTIMER_MODE_SOFT = 4, - HRTIMER_MODE_HARD = 8, - HRTIMER_MODE_ABS_PINNED = 2, - HRTIMER_MODE_REL_PINNED = 3, - HRTIMER_MODE_ABS_SOFT = 4, - HRTIMER_MODE_REL_SOFT = 5, - HRTIMER_MODE_ABS_PINNED_SOFT = 6, - HRTIMER_MODE_REL_PINNED_SOFT = 7, - HRTIMER_MODE_ABS_HARD = 8, - HRTIMER_MODE_REL_HARD = 9, - HRTIMER_MODE_ABS_PINNED_HARD = 10, - HRTIMER_MODE_REL_PINNED_HARD = 11, -}; - -struct x86_cpu_id { - __u16 vendor; - __u16 family; - __u16 model; - __u16 steppings; - __u16 feature; - __u16 flags; - __u8 type; - kernel_ulong_t driver_data; -}; - -enum bus_notifier_event { - BUS_NOTIFY_ADD_DEVICE = 0, - BUS_NOTIFY_DEL_DEVICE = 1, - BUS_NOTIFY_REMOVED_DEVICE = 2, - BUS_NOTIFY_BIND_DRIVER = 3, - BUS_NOTIFY_BOUND_DRIVER = 4, - BUS_NOTIFY_UNBIND_DRIVER = 5, - BUS_NOTIFY_UNBOUND_DRIVER = 6, - BUS_NOTIFY_DRIVER_NOT_BOUND = 7, -}; - -struct acpi_device; - -struct pci_sysdata { - int domain; - int node; - struct acpi_device *companion; - void *iommu; - void *fwnode; - struct pci_dev *vmd_dev; -}; - -struct pci_extra_dev { - struct pci_dev *dev[4]; -}; - -struct intel_uncore_pmu; - -struct intel_uncore_ops; - -struct uncore_event_desc; - -struct freerunning_counters; - -struct intel_uncore_topology; - -struct intel_uncore_type { - const char *name; - int num_counters; - int num_boxes; - int perf_ctr_bits; - int fixed_ctr_bits; - int num_freerunning_types; - int type_id; - unsigned int perf_ctr; - unsigned int event_ctl; - unsigned int event_mask; - unsigned int event_mask_ext; - unsigned int fixed_ctr; - unsigned int fixed_ctl; - unsigned int box_ctl; - union { - unsigned int msr_offset; - unsigned int mmio_offset; - }; - unsigned int mmio_map_size; - unsigned int num_shared_regs: 8; - unsigned int single_fixed: 1; - unsigned int pair_ctr_ctl: 1; - union { - u64 *msr_offsets; - u64 *pci_offsets; - u64 *mmio_offsets; - }; - struct event_constraint unconstrainted; - struct event_constraint *constraints; - struct intel_uncore_pmu *pmus; - struct intel_uncore_ops *ops; - struct uncore_event_desc *event_descs; - struct freerunning_counters *freerunning; - const struct attribute_group *attr_groups[4]; - const struct attribute_group **attr_update; - struct pmu *pmu; - struct rb_root *boxes; - struct intel_uncore_topology **topology; - int (*get_topology)(struct intel_uncore_type *); - void (*set_mapping)(struct intel_uncore_type *); - void (*cleanup_mapping)(struct intel_uncore_type *); - void (*cleanup_extra_boxes)(struct intel_uncore_type *); -}; - -struct intel_uncore_box; - -struct intel_uncore_pmu { - struct pmu pmu; - char name[32]; - int pmu_idx; - bool registered; - atomic_t activeboxes; - cpumask_t cpu_mask; - struct intel_uncore_type *type; - struct intel_uncore_box **boxes; -}; - -struct intel_uncore_ops { - void (*init_box)(struct intel_uncore_box *); - void (*exit_box)(struct intel_uncore_box *); - void (*disable_box)(struct intel_uncore_box *); - void (*enable_box)(struct intel_uncore_box *); - void (*disable_event)(struct intel_uncore_box *, struct perf_event *); - void (*enable_event)(struct intel_uncore_box *, struct perf_event *); - u64 (*read_counter)(struct intel_uncore_box *, struct perf_event *); - int (*hw_config)(struct intel_uncore_box *, struct perf_event *); - struct event_constraint * (*get_constraint)(struct intel_uncore_box *, struct perf_event *); - void (*put_constraint)(struct intel_uncore_box *, struct perf_event *); -}; - -struct uncore_event_desc { - struct device_attribute attr; - const char *config; -}; - -struct freerunning_counters { - unsigned int counter_base; - unsigned int counter_offset; - unsigned int box_offset; - unsigned int num_counters; - unsigned int bits; - unsigned int *box_offsets; -}; - -struct uncore_iio_topology; - -struct uncore_upi_topology; - -struct intel_uncore_topology { - int pmu_idx; - union { - void *untyped; - struct uncore_iio_topology *iio; - struct uncore_upi_topology *upi; - }; -}; - -struct intel_uncore_extra_reg { - raw_spinlock_t lock; - u64 config; - u64 config1; - u64 config2; - atomic_t ref; -}; - -struct intel_uncore_box { - int dieid; - int n_active; - int n_events; - int cpu; - long unsigned int flags; - atomic_t refcnt; - struct perf_event *events[10]; - struct perf_event *event_list[10]; - struct event_constraint *event_constraint[10]; - long unsigned int active_mask[1]; - u64 tags[10]; - struct pci_dev *pci_dev; - struct intel_uncore_pmu *pmu; - u64 hrtimer_duration; - struct hrtimer hrtimer; - struct list_head list; - struct list_head active_list; - void *io_addr; - struct intel_uncore_extra_reg shared_regs[0]; -}; - -struct uncore_iio_topology { - int pci_bus_no; - int segment; -}; - -struct uncore_upi_topology { - int die_to; - int pmu_idx_to; - int enabled; -}; - -struct pci2phy_map { - struct list_head list; - int segment; - int pbus_to_dieid[256]; -}; - -struct intel_uncore_discovery_unit { - struct rb_node node; - unsigned int pmu_idx; - unsigned int id; - unsigned int die; - u64 addr; -}; - -struct intel_uncore_init_fun { - void (*cpu_init)(void); - int (*pci_init)(void); - void (*mmio_init)(void); - bool use_discovery; - int *uncore_units_ignore; -}; - -typedef u64 uint64_t; - -struct x86_init_mpparse { - void (*setup_ioapic_ids)(void); - void (*find_mptable)(void); - void (*early_parse_smp_cfg)(void); - void (*parse_smp_cfg)(void); -}; - -struct x86_init_resources { - void (*probe_roms)(void); - void (*reserve_resources)(void); - char * (*memory_setup)(void); - void (*dmi_setup)(void); -}; - -struct x86_init_irqs { - void (*pre_vector_init)(void); - void (*intr_init)(void); - void (*intr_mode_select)(void); - void (*intr_mode_init)(void); - struct irq_domain * (*create_pci_msi_domain)(void); -}; - -struct x86_init_oem { - void (*arch_setup)(void); - void (*banner)(void); -}; - -struct x86_init_paging { - void (*pagetable_init)(void); -}; - -struct x86_init_timers { - void (*setup_percpu_clockev)(void); - void (*timer_init)(void); - void (*wallclock_init)(void); -}; - -struct x86_init_iommu { - int (*iommu_init)(void); -}; - -struct x86_init_pci { - int (*arch_init)(void); - int (*init)(void); - void (*init_irq)(void); - void (*fixup_irqs)(void); -}; - -struct x86_hyper_init { - void (*init_platform)(void); - void (*guest_late_init)(void); - bool (*x2apic_available)(void); - bool (*msi_ext_dest_id)(void); - void (*init_mem_mapping)(void); - void (*init_after_bootmem)(void); -}; - -struct x86_init_acpi { - void (*set_root_pointer)(u64); - u64 (*get_root_pointer)(void); - void (*reduced_hw_early_init)(void); -}; - -struct x86_init_ops { - struct x86_init_resources resources; - struct x86_init_mpparse mpparse; - struct x86_init_irqs irqs; - struct x86_init_oem oem; - struct x86_init_paging paging; - struct x86_init_timers timers; - struct x86_init_iommu iommu; - struct x86_init_pci pci; - struct x86_hyper_init hyper; - struct x86_init_acpi acpi; -}; - -struct hvm_start_info { - uint32_t magic; - uint32_t version; - uint32_t flags; - uint32_t nr_modules; - uint64_t modlist_paddr; - uint64_t cmdline_paddr; - uint64_t rsdp_paddr; - uint64_t memmap_paddr; - uint32_t memmap_entries; - uint32_t reserved; -}; - -struct hvm_modlist_entry { - uint64_t paddr; - uint64_t size; - uint64_t cmdline_paddr; - uint64_t reserved; -}; - -struct hvm_memmap_table_entry { - uint64_t addr; - uint64_t size; - uint32_t type; - uint32_t reserved; -}; - -struct boot_e820_entry { - __u64 addr; - __u64 size; - __u32 type; -} __attribute__((packed)); - -struct screen_info { - __u8 orig_x; - __u8 orig_y; - __u16 ext_mem_k; - __u16 orig_video_page; - __u8 orig_video_mode; - __u8 orig_video_cols; - __u8 flags; - __u8 unused2; - __u16 orig_video_ega_bx; - __u16 unused3; - __u8 orig_video_lines; - __u8 orig_video_isVGA; - __u16 orig_video_points; - __u16 lfb_width; - __u16 lfb_height; - __u16 lfb_depth; - __u32 lfb_base; - __u32 lfb_size; - __u16 cl_magic; - __u16 cl_offset; - __u16 lfb_linelength; - __u8 red_size; - __u8 red_pos; - __u8 green_size; - __u8 green_pos; - __u8 blue_size; - __u8 blue_pos; - __u8 rsvd_size; - __u8 rsvd_pos; - __u16 vesapm_seg; - __u16 vesapm_off; - __u16 pages; - __u16 vesa_attributes; - __u32 capabilities; - __u32 ext_lfb_base; - __u8 _reserved[2]; -} __attribute__((packed)); - -struct apm_bios_info { - __u16 version; - __u16 cseg; - __u32 offset; - __u16 cseg_16; - __u16 dseg; - __u16 flags; - __u16 cseg_len; - __u16 cseg_16_len; - __u16 dseg_len; -}; - -struct edd_device_params { - __u16 length; - __u16 info_flags; - __u32 num_default_cylinders; - __u32 num_default_heads; - __u32 sectors_per_track; - __u64 number_of_sectors; - __u16 bytes_per_sector; - __u32 dpte_ptr; - __u16 key; - __u8 device_path_info_length; - __u8 reserved2; - __u16 reserved3; - __u8 host_bus_type[4]; - __u8 interface_type[8]; - union { - struct { - __u16 base_address; - __u16 reserved1; - __u32 reserved2; - } isa; - struct { - __u8 bus; - __u8 slot; - __u8 function; - __u8 channel; - __u32 reserved; - } pci; - struct { - __u64 reserved; - } ibnd; - struct { - __u64 reserved; - } xprs; - struct { - __u64 reserved; - } htpt; - struct { - __u64 reserved; - } unknown; - } interface_path; - union { - struct { - __u8 device; - __u8 reserved1; - __u16 reserved2; - __u32 reserved3; - __u64 reserved4; - } ata; - struct { - __u8 device; - __u8 lun; - __u8 reserved1; - __u8 reserved2; - __u32 reserved3; - __u64 reserved4; - } atapi; - struct { - __u16 id; - __u64 lun; - __u16 reserved1; - __u32 reserved2; - } __attribute__((packed)) scsi; - struct { - __u64 serial_number; - __u64 reserved; - } usb; - struct { - __u64 eui; - __u64 reserved; - } i1394; - struct { - __u64 wwid; - __u64 lun; - } fibre; - struct { - __u64 identity_tag; - __u64 reserved; - } i2o; - struct { - __u32 array_number; - __u32 reserved1; - __u64 reserved2; - } raid; - struct { - __u8 device; - __u8 reserved1; - __u16 reserved2; - __u32 reserved3; - __u64 reserved4; - } sata; - struct { - __u64 reserved1; - __u64 reserved2; - } unknown; - } device_path; - __u8 reserved4; - __u8 checksum; -} __attribute__((packed)); - -struct edd_info { - __u8 device; - __u8 version; - __u16 interface_support; - __u16 legacy_max_cylinder; - __u8 legacy_max_head; - __u8 legacy_sectors_per_track; - struct edd_device_params params; -}; - -struct ist_info { - __u32 signature; - __u32 command; - __u32 event; - __u32 perf_level; -}; - -struct edid_info { - unsigned char dummy[128]; -}; - -struct setup_header { - __u8 setup_sects; - __u16 root_flags; - __u32 syssize; - __u16 ram_size; - __u16 vid_mode; - __u16 root_dev; - __u16 boot_flag; - __u16 jump; - __u32 header; - __u16 version; - __u32 realmode_swtch; - __u16 start_sys_seg; - __u16 kernel_version; - __u8 type_of_loader; - __u8 loadflags; - __u16 setup_move_size; - __u32 code32_start; - __u32 ramdisk_image; - __u32 ramdisk_size; - __u32 bootsect_kludge; - __u16 heap_end_ptr; - __u8 ext_loader_ver; - __u8 ext_loader_type; - __u32 cmd_line_ptr; - __u32 initrd_addr_max; - __u32 kernel_alignment; - __u8 relocatable_kernel; - __u8 min_alignment; - __u16 xloadflags; - __u32 cmdline_size; - __u32 hardware_subarch; - __u64 hardware_subarch_data; - __u32 payload_offset; - __u32 payload_length; - __u64 setup_data; - __u64 pref_address; - __u32 init_size; - __u32 handover_offset; - __u32 kernel_info_offset; -} __attribute__((packed)); - -struct sys_desc_table { - __u16 length; - __u8 table[14]; -}; - -struct olpc_ofw_header { - __u32 ofw_magic; - __u32 ofw_version; - __u32 cif_handler; - __u32 irq_desc_table; -}; - -struct efi_info { - __u32 efi_loader_signature; - __u32 efi_systab; - __u32 efi_memdesc_size; - __u32 efi_memdesc_version; - __u32 efi_memmap; - __u32 efi_memmap_size; - __u32 efi_systab_hi; - __u32 efi_memmap_hi; -}; - -struct boot_params { - struct screen_info screen_info; - struct apm_bios_info apm_bios_info; - __u8 _pad2[4]; - __u64 tboot_addr; - struct ist_info ist_info; - __u64 acpi_rsdp_addr; - __u8 _pad3[8]; - __u8 hd0_info[16]; - __u8 hd1_info[16]; - struct sys_desc_table sys_desc_table; - struct olpc_ofw_header olpc_ofw_header; - __u32 ext_ramdisk_image; - __u32 ext_ramdisk_size; - __u32 ext_cmd_line_ptr; - __u8 _pad4[112]; - __u32 cc_blob_address; - struct edid_info edid_info; - struct efi_info efi_info; - __u32 alt_mem_k; - __u32 scratch; - __u8 e820_entries; - __u8 eddbuf_entries; - __u8 edd_mbr_sig_buf_entries; - __u8 kbd_status; - __u8 secure_boot; - __u8 _pad5[2]; - __u8 sentinel; - __u8 _pad6[1]; - struct setup_header hdr; - __u8 _pad7[36]; - __u32 edd_mbr_sig_buffer[16]; - struct boot_e820_entry e820_table[128]; - __u8 _pad8[48]; - struct edd_info eddbuf[6]; - __u8 _pad9[276]; -}; - -enum e820_type { - E820_TYPE_RAM = 1, - E820_TYPE_RESERVED = 2, - E820_TYPE_ACPI = 3, - E820_TYPE_NVS = 4, - E820_TYPE_UNUSABLE = 5, - E820_TYPE_PMEM = 7, - E820_TYPE_PRAM = 12, - E820_TYPE_SOFT_RESERVED = 4026531839, -}; - -typedef long unsigned int irq_hw_number_t; - -struct irq_stack { - char stack[16384]; -}; - -struct vm_struct { - struct vm_struct *next; - void *addr; - long unsigned int size; - long unsigned int flags; - struct page **pages; - unsigned int page_order; - unsigned int nr_pages; - phys_addr_t phys_addr; - const void *caller; - long unsigned int requested_size; -}; - -enum work_bits { - WORK_STRUCT_PENDING_BIT = 0, - WORK_STRUCT_INACTIVE_BIT = 1, - WORK_STRUCT_PWQ_BIT = 2, - WORK_STRUCT_LINKED_BIT = 3, - WORK_STRUCT_FLAG_BITS = 4, - WORK_STRUCT_COLOR_SHIFT = 4, - WORK_STRUCT_COLOR_BITS = 4, - WORK_STRUCT_PWQ_SHIFT = 8, - WORK_OFFQ_FLAG_SHIFT = 4, - WORK_OFFQ_BH_BIT = 4, - WORK_OFFQ_FLAG_END = 5, - WORK_OFFQ_FLAG_BITS = 1, - WORK_OFFQ_DISABLE_SHIFT = 5, - WORK_OFFQ_DISABLE_BITS = 16, - WORK_OFFQ_POOL_SHIFT = 21, - WORK_OFFQ_LEFT = 43, - WORK_OFFQ_POOL_BITS = 31, -}; - -enum work_flags { - WORK_STRUCT_PENDING = 1, - WORK_STRUCT_INACTIVE = 2, - WORK_STRUCT_PWQ = 4, - WORK_STRUCT_LINKED = 8, - WORK_STRUCT_STATIC = 0, -}; - -enum wq_misc_consts { - WORK_NR_COLORS = 16, - WORK_CPU_UNBOUND = 8192, - WORK_BUSY_PENDING = 1, - WORK_BUSY_RUNNING = 2, - WORKER_DESC_LEN = 32, -}; - -enum irq_domain_bus_token { - DOMAIN_BUS_ANY = 0, - DOMAIN_BUS_WIRED = 1, - DOMAIN_BUS_GENERIC_MSI = 2, - DOMAIN_BUS_PCI_MSI = 3, - DOMAIN_BUS_PLATFORM_MSI = 4, - DOMAIN_BUS_NEXUS = 5, - DOMAIN_BUS_IPI = 6, - DOMAIN_BUS_FSL_MC_MSI = 7, - DOMAIN_BUS_TI_SCI_INTA_MSI = 8, - DOMAIN_BUS_WAKEUP = 9, - DOMAIN_BUS_VMD_MSI = 10, - DOMAIN_BUS_PCI_DEVICE_MSI = 11, - DOMAIN_BUS_PCI_DEVICE_MSIX = 12, - DOMAIN_BUS_DMAR = 13, - DOMAIN_BUS_AMDVI = 14, - DOMAIN_BUS_DEVICE_MSI = 15, - DOMAIN_BUS_WIRED_TO_MSI = 16, -}; - -struct irq_domain_ops; - -struct irq_domain_chip_generic; - -struct msi_parent_ops; - -struct irq_data; - -struct irq_domain { - struct list_head link; - const char *name; - const struct irq_domain_ops *ops; - void *host_data; - unsigned int flags; - unsigned int mapcount; - struct mutex mutex; - struct irq_domain *root; - struct fwnode_handle *fwnode; - enum irq_domain_bus_token bus_token; - struct irq_domain_chip_generic *gc; - struct device *dev; - struct device *pm_dev; - struct irq_domain *parent; - const struct msi_parent_ops *msi_parent_ops; - void (*exit)(struct irq_domain *); - irq_hw_number_t hwirq_max; - unsigned int revmap_size; - struct xarray revmap_tree; - struct irq_data *revmap[0]; -}; - -enum irqreturn { - IRQ_NONE = 0, - IRQ_HANDLED = 1, - IRQ_WAKE_THREAD = 2, -}; - -typedef enum irqreturn irqreturn_t; - -typedef irqreturn_t (*irq_handler_t)(int, void *); - -struct irqaction { - irq_handler_t handler; - void *dev_id; - void *percpu_dev_id; - struct irqaction *next; - irq_handler_t thread_fn; - struct task_struct *thread; - struct irqaction *secondary; - unsigned int irq; - unsigned int flags; - long unsigned int thread_flags; - long unsigned int thread_mask; - const char *name; - struct proc_dir_entry *dir; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct irq_affinity_notify { - unsigned int irq; - struct kref kref; - struct work_struct work; - void (*notify)(struct irq_affinity_notify *, const cpumask_t *); - void (*release)(struct kref *); -}; - -struct irq_affinity_desc { - struct cpumask mask; - unsigned int is_managed: 1; -}; - -enum irqchip_irq_state { - IRQCHIP_STATE_PENDING = 0, - IRQCHIP_STATE_ACTIVE = 1, - IRQCHIP_STATE_MASKED = 2, - IRQCHIP_STATE_LINE_LEVEL = 3, -}; - -enum { - MEMREMAP_WB = 1, - MEMREMAP_WT = 2, - MEMREMAP_WC = 4, - MEMREMAP_ENC = 8, - MEMREMAP_DEC = 16, -}; - -struct hv_reenlightenment_control { - u64 vector: 8; - u64 reserved1: 8; - u64 enabled: 1; - u64 reserved2: 15; - u64 target_vp: 32; -}; - -struct hv_tsc_emulation_status { - u64 inprogress: 1; - u64 reserved: 63; -}; - -struct hv_tsc_emulation_control { - u64 enabled: 1; - u64 reserved: 63; -}; - -union hv_reference_tsc_msr { - u64 as_uint64; - struct { - u64 enable: 1; - u64 reserved: 11; - u64 pfn: 52; - }; -}; - -union hv_x64_msr_hypercall_contents { - u64 as_uint64; - struct { - u64 enable: 1; - u64 reserved: 11; - u64 guest_physical_address: 52; - }; -}; - -union hv_vp_assist_msr_contents { - u64 as_uint64; - struct { - u64 enable: 1; - u64 reserved: 11; - u64 pfn: 52; - }; -}; - -union hv_input_vtl { - u8 as_uint8; - struct { - u8 target_vtl: 4; - u8 use_target_vtl: 1; - u8 reserved_z: 3; - }; -}; - -struct hv_get_vp_from_apic_id_in { - u64 partition_id; - union hv_input_vtl target_vtl; - u8 res[7]; - u32 apic_ids[0]; -}; - -struct hv_nested_enlightenments_control { - struct { - u32 directhypercall: 1; - u32 reserved: 31; - } features; - struct { - u32 inter_partition_comm: 1; - u32 reserved: 31; - } hypercall_controls; -}; - -struct hv_vp_assist_page { - u32 apic_assist; - u32 reserved1; - u32 vtl_entry_reason; - u32 vtl_reserved; - u64 vtl_ret_x64rax; - u64 vtl_ret_x64rcx; - struct hv_nested_enlightenments_control nested_control; - u8 enlighten_vmentry; - u8 reserved2[7]; - u64 current_nested_vmcs; - u8 synthetic_time_unhalted_timer_expired; - u8 reserved3[7]; - u8 virtualization_fault_information[40]; - u8 reserved4[8]; - u8 intercept_message[256]; - u8 vtl_ret_actions[256]; -}; - -enum x86_hypervisor_type { - X86_HYPER_NATIVE = 0, - X86_HYPER_VMWARE = 1, - X86_HYPER_MS_HYPERV = 2, - X86_HYPER_XEN_PV = 3, - X86_HYPER_XEN_HVM = 4, - X86_HYPER_KVM = 5, - X86_HYPER_JAILHOUSE = 6, - X86_HYPER_ACRN = 7, -}; - -union msi_instance_cookie { - u64 value; - void *ptr; -}; - -struct irq_desc; - -typedef void (*irq_flow_handler_t)(struct irq_desc *); - -struct msi_desc; - -struct irq_common_data { - unsigned int state_use_accessors; - unsigned int node; - void *handler_data; - struct msi_desc *msi_desc; - cpumask_var_t affinity; - cpumask_var_t effective_affinity; -}; - -struct irq_chip; - -struct irq_data { - u32 mask; - unsigned int irq; - irq_hw_number_t hwirq; - struct irq_common_data *common; - struct irq_chip *chip; - struct irq_domain *domain; - struct irq_data *parent_data; - void *chip_data; -}; - -struct irqstat; - -struct irq_desc { - struct irq_common_data irq_common_data; - struct irq_data irq_data; - struct irqstat *kstat_irqs; - irq_flow_handler_t handle_irq; - struct irqaction *action; - unsigned int status_use_accessors; - unsigned int core_internal_state__do_not_mess_with_it; - unsigned int depth; - unsigned int wake_depth; - unsigned int tot_count; - unsigned int irq_count; - long unsigned int last_unhandled; - unsigned int irqs_unhandled; - atomic_t threads_handled; - int threads_handled_last; - raw_spinlock_t lock; - struct cpumask *percpu_enabled; - const struct cpumask *percpu_affinity; - const struct cpumask *affinity_hint; - struct irq_affinity_notify *affinity_notify; - cpumask_var_t pending_mask; - long unsigned int threads_oneshot; - atomic_t threads_active; - wait_queue_head_t wait_for_threads; - unsigned int nr_actions; - unsigned int no_suspend_depth; - unsigned int cond_suspend_depth; - unsigned int force_resume_depth; - struct proc_dir_entry *dir; - struct callback_head rcu; - struct kobject kobj; - struct mutex request_mutex; - int parent_irq; - struct module *owner; - const char *name; - struct hlist_node resend_node; - long: 64; - long: 64; - long: 64; -}; - -struct x86_msi_addr_lo { - union { - struct { - u32 reserved_0: 2; - u32 dest_mode_logical: 1; - u32 redirect_hint: 1; - u32 reserved_1: 1; - u32 virt_destid_8_14: 7; - u32 destid_0_7: 8; - u32 base_address: 12; - }; - struct { - u32 dmar_reserved_0: 2; - u32 dmar_index_15: 1; - u32 dmar_subhandle_valid: 1; - u32 dmar_format: 1; - u32 dmar_index_0_14: 15; - u32 dmar_base_address: 12; - }; - }; -}; - -typedef struct x86_msi_addr_lo arch_msi_msg_addr_lo_t; - -struct x86_msi_addr_hi { - u32 reserved: 8; - u32 destid_8_31: 24; -}; - -typedef struct x86_msi_addr_hi arch_msi_msg_addr_hi_t; - -struct x86_msi_data { - union { - struct { - u32 vector: 8; - u32 delivery_mode: 3; - u32 dest_mode_logical: 1; - u32 reserved: 2; - u32 active_low: 1; - u32 is_level: 1; - }; - u32 dmar_subhandle; - }; -}; - -typedef struct x86_msi_data arch_msi_msg_data_t; - -struct msi_msg { - union { - u32 address_lo; - arch_msi_msg_addr_lo_t arch_addr_lo; - }; - union { - u32 address_hi; - arch_msi_msg_addr_hi_t arch_addr_hi; - }; - union { - u32 data; - arch_msi_msg_data_t arch_data; - }; -}; - -struct pci_msi_desc { - union { - u32 msi_mask; - u32 msix_ctrl; - }; - struct { - u8 is_msix: 1; - u8 multiple: 3; - u8 multi_cap: 3; - u8 can_mask: 1; - u8 is_64: 1; - u8 is_virtual: 1; - unsigned int default_irq; - } msi_attrib; - union { - u8 mask_pos; - void *mask_base; - }; -}; - -union msi_domain_cookie { - u64 value; - void *ptr; - void *iobase; -}; - -struct msi_desc_data { - union msi_domain_cookie dcookie; - union msi_instance_cookie icookie; -}; - -struct msi_desc { - unsigned int irq; - unsigned int nvec_used; - struct device *dev; - struct msi_msg msg; - struct irq_affinity_desc *affinity; - struct device_attribute *sysfs_attrs; - void (*write_msi_msg)(struct msi_desc *, void *); - void *write_msi_msg_data; - u16 msi_index; - union { - struct pci_msi_desc pci; - struct msi_desc_data data; - }; -}; - -struct irq_chip { - const char *name; - unsigned int (*irq_startup)(struct irq_data *); - void (*irq_shutdown)(struct irq_data *); - void (*irq_enable)(struct irq_data *); - void (*irq_disable)(struct irq_data *); - void (*irq_ack)(struct irq_data *); - void (*irq_mask)(struct irq_data *); - void (*irq_mask_ack)(struct irq_data *); - void (*irq_unmask)(struct irq_data *); - void (*irq_eoi)(struct irq_data *); - int (*irq_set_affinity)(struct irq_data *, const struct cpumask *, bool); - int (*irq_retrigger)(struct irq_data *); - int (*irq_set_type)(struct irq_data *, unsigned int); - int (*irq_set_wake)(struct irq_data *, unsigned int); - void (*irq_bus_lock)(struct irq_data *); - void (*irq_bus_sync_unlock)(struct irq_data *); - void (*irq_suspend)(struct irq_data *); - void (*irq_resume)(struct irq_data *); - void (*irq_pm_shutdown)(struct irq_data *); - void (*irq_calc_mask)(struct irq_data *); - void (*irq_print_chip)(struct irq_data *, struct seq_file *); - int (*irq_request_resources)(struct irq_data *); - void (*irq_release_resources)(struct irq_data *); - void (*irq_compose_msi_msg)(struct irq_data *, struct msi_msg *); - void (*irq_write_msi_msg)(struct irq_data *, struct msi_msg *); - int (*irq_get_irqchip_state)(struct irq_data *, enum irqchip_irq_state, bool *); - int (*irq_set_irqchip_state)(struct irq_data *, enum irqchip_irq_state, bool); - int (*irq_set_vcpu_affinity)(struct irq_data *, void *); - void (*ipi_send_single)(struct irq_data *, unsigned int); - void (*ipi_send_mask)(struct irq_data *, const struct cpumask *); - int (*irq_nmi_setup)(struct irq_data *); - void (*irq_nmi_teardown)(struct irq_data *); - void (*irq_force_complete_move)(struct irq_data *); - long unsigned int flags; -}; - -struct irqstat { - unsigned int cnt; -}; - -enum irq_alloc_type { - X86_IRQ_ALLOC_TYPE_IOAPIC = 1, - X86_IRQ_ALLOC_TYPE_HPET = 2, - X86_IRQ_ALLOC_TYPE_PCI_MSI = 3, - X86_IRQ_ALLOC_TYPE_PCI_MSIX = 4, - X86_IRQ_ALLOC_TYPE_DMAR = 5, - X86_IRQ_ALLOC_TYPE_AMDVI = 6, - X86_IRQ_ALLOC_TYPE_UV = 7, -}; - -struct ioapic_alloc_info { - int pin; - int node; - u32 is_level: 1; - u32 active_low: 1; - u32 valid: 1; -}; - -struct uv_alloc_info { - int limit; - int blade; - long unsigned int offset; - char *name; -}; - -struct irq_alloc_info { - enum irq_alloc_type type; - u32 flags; - u32 devid; - irq_hw_number_t hwirq; - const struct cpumask *mask; - struct msi_desc *desc; - void *data; - union { - struct ioapic_alloc_info ioapic; - struct uv_alloc_info uv; - }; -}; - -struct irq_chip_regs { - long unsigned int enable; - long unsigned int disable; - long unsigned int mask; - long unsigned int ack; - long unsigned int eoi; - long unsigned int type; -}; - -struct irq_chip_type { - struct irq_chip chip; - struct irq_chip_regs regs; - irq_flow_handler_t handler; - u32 type; - u32 mask_cache_priv; - u32 *mask_cache; -}; - -struct irq_chip_generic { - raw_spinlock_t lock; - void *reg_base; - u32 (*reg_readl)(void *); - void (*reg_writel)(u32, void *); - void (*suspend)(struct irq_chip_generic *); - void (*resume)(struct irq_chip_generic *); - unsigned int irq_base; - unsigned int irq_cnt; - u32 mask_cache; - u32 wake_enabled; - u32 wake_active; - unsigned int num_ct; - void *private; - long unsigned int installed; - long unsigned int unused; - struct irq_domain *domain; - struct list_head list; - struct irq_chip_type chip_types[0]; -}; - -enum irq_gc_flags { - IRQ_GC_INIT_MASK_CACHE = 1, - IRQ_GC_INIT_NESTED_LOCK = 2, - IRQ_GC_MASK_CACHE_PER_TYPE = 4, - IRQ_GC_NO_MASK = 8, - IRQ_GC_BE_IO = 16, -}; - -struct irq_domain_chip_generic { - unsigned int irqs_per_chip; - unsigned int num_chips; - unsigned int irq_flags_to_clear; - unsigned int irq_flags_to_set; - enum irq_gc_flags gc_flags; - void (*exit)(struct irq_chip_generic *); - struct irq_chip_generic *gc[0]; -}; - -struct irq_fwspec { - struct fwnode_handle *fwnode; - int param_count; - u32 param[16]; -}; - -struct irq_domain_ops { - int (*match)(struct irq_domain *, struct device_node *, enum irq_domain_bus_token); - int (*select)(struct irq_domain *, struct irq_fwspec *, enum irq_domain_bus_token); - int (*map)(struct irq_domain *, unsigned int, irq_hw_number_t); - void (*unmap)(struct irq_domain *, unsigned int); - int (*xlate)(struct irq_domain *, struct device_node *, const u32 *, unsigned int, long unsigned int *, unsigned int *); - int (*alloc)(struct irq_domain *, unsigned int, unsigned int, void *); - void (*free)(struct irq_domain *, unsigned int, unsigned int); - int (*activate)(struct irq_domain *, struct irq_data *, bool); - void (*deactivate)(struct irq_domain *, struct irq_data *); - int (*translate)(struct irq_domain *, struct irq_fwspec *, long unsigned int *, unsigned int *); -}; - -struct msi_domain_info; - -struct msi_parent_ops { - u32 supported_flags; - u32 required_flags; - u32 chip_flags; - u32 bus_select_token; - u32 bus_select_mask; - const char *prefix; - bool (*init_dev_msi_info)(struct device *, struct irq_domain *, struct irq_domain *, struct msi_domain_info *); -}; - -typedef struct irq_alloc_info msi_alloc_info_t; - -struct msi_domain_ops { - irq_hw_number_t (*get_hwirq)(struct msi_domain_info *, msi_alloc_info_t *); - int (*msi_init)(struct irq_domain *, struct msi_domain_info *, unsigned int, irq_hw_number_t, msi_alloc_info_t *); - void (*msi_free)(struct irq_domain *, struct msi_domain_info *, unsigned int); - int (*msi_prepare)(struct irq_domain *, struct device *, int, msi_alloc_info_t *); - void (*msi_teardown)(struct irq_domain *, msi_alloc_info_t *); - void (*prepare_desc)(struct irq_domain *, msi_alloc_info_t *, struct msi_desc *); - void (*set_desc)(msi_alloc_info_t *, struct msi_desc *); - int (*domain_alloc_irqs)(struct irq_domain *, struct device *, int); - void (*domain_free_irqs)(struct irq_domain *, struct device *); - void (*msi_post_free)(struct irq_domain *, struct device *); - int (*msi_translate)(struct irq_domain *, struct irq_fwspec *, irq_hw_number_t *, unsigned int *); -}; - -struct msi_domain_info { - u32 flags; - enum irq_domain_bus_token bus_token; - unsigned int hwsize; - struct msi_domain_ops *ops; - struct device *dev; - struct irq_chip *chip; - void *chip_data; - irq_flow_handler_t handler; - void *handler_data; - const char *handler_name; - msi_alloc_info_t *alloc_data; - void *data; -}; - -enum hv_partition_type { - HV_PARTITION_TYPE_GUEST = 0, - HV_PARTITION_TYPE_ROOT = 1, -}; - -struct ms_hyperv_info { - u32 features; - u32 priv_high; - u32 ext_features; - u32 misc_features; - u32 hints; - u32 nested_features; - u32 max_vp_index; - u32 max_lp_index; - u8 vtl; - union { - u32 isolation_config_a; - struct { - u32 paravisor_present: 1; - u32 reserved_a1: 31; - }; - }; - union { - u32 isolation_config_b; - struct { - u32 cvm_type: 4; - u32 reserved_b1: 1; - u32 shared_gpa_boundary_active: 1; - u32 shared_gpa_boundary_bits: 6; - u32 reserved_b2: 20; - }; - }; - u64 shared_gpa_boundary; -}; - -struct desc_ptr { - short unsigned int size; - long unsigned int address; -} __attribute__((packed)); - -enum hv_isolation_type { - HV_ISOLATION_TYPE_NONE = 0, - HV_ISOLATION_TYPE_VBS = 1, - HV_ISOLATION_TYPE_SNP = 2, - HV_ISOLATION_TYPE_TDX = 3, -}; - -struct hv_x64_segment_register { - u64 base; - u32 limit; - u16 selector; - union { - struct { - u16 segment_type: 4; - u16 non_system_segment: 1; - u16 descriptor_privilege_level: 2; - u16 present: 1; - u16 reserved: 4; - u16 available: 1; - u16 _long: 1; - u16 _default: 1; - u16 granularity: 1; - }; - u16 attributes; - }; -}; - -struct hv_x64_table_register { - u16 pad[3]; - u16 limit; - u64 base; -}; - -struct hv_init_vp_context { - u64 rip; - u64 rsp; - u64 rflags; - struct hv_x64_segment_register cs; - struct hv_x64_segment_register ds; - struct hv_x64_segment_register es; - struct hv_x64_segment_register fs; - struct hv_x64_segment_register gs; - struct hv_x64_segment_register ss; - struct hv_x64_segment_register tr; - struct hv_x64_segment_register ldtr; - struct hv_x64_table_register idtr; - struct hv_x64_table_register gdtr; - u64 efer; - u64 cr0; - u64 cr3; - u64 cr4; - u64 msr_cr_pat; -}; - -struct hv_enable_vp_vtl { - u64 partition_id; - u32 vp_index; - union hv_input_vtl target_vtl; - u8 mbz0; - u16 mbz1; - struct hv_init_vp_context vp_context; -}; - -enum hv_mem_host_visibility { - VMBUS_PAGE_NOT_VISIBLE = 0, - VMBUS_PAGE_VISIBLE_READ_ONLY = 1, - VMBUS_PAGE_VISIBLE_READ_WRITE = 3, -}; - -struct hv_gpa_range_for_visibility { - u64 partition_id; - u32 host_visibility: 2; - u32 reserved0: 30; - u32 reserved1; - u64 gpa_page_list[510]; -}; - -union hv_ghcb { - struct ghcb ghcb; - struct { - u64 hypercalldata[509]; - u64 outputgpa; - union { - union { - struct { - u32 callcode: 16; - u32 isfast: 1; - u32 reserved1: 14; - u32 isnested: 1; - u32 countofelements: 12; - u32 reserved2: 4; - u32 repstartindex: 12; - u32 reserved3: 4; - }; - u64 asuint64; - } hypercallinput; - union { - struct { - u16 callstatus; - u16 reserved1; - u32 elementsprocessed: 12; - u32 reserved2: 20; - }; - u64 asunit64; - } hypercalloutput; - }; - u64 reserved2; - } hypercall; -}; - -struct mtrr_var_range { - __u32 base_lo; - __u32 base_hi; - __u32 mask_lo; - __u32 mask_hi; -}; - -typedef __u8 mtrr_type; - -struct hv_vpset { - u64 format; - u64 valid_bank_mask; - u64 bank_contents[0]; -}; - -struct hv_send_ipi { - u32 vector; - u32 reserved; - u64 cpu_mask; -}; - -enum hv_generic_set_format { - HV_GENERIC_SET_SPARSE_4K = 0, - HV_GENERIC_SET_ALL = 1, -}; - -struct hv_send_ipi_ex { - u32 vector; - u32 reserved; - struct hv_vpset vp_set; -}; - -struct math_emu_info { - long int ___orig_eip; - struct pt_regs *regs; -}; - -struct fregs_state { - u32 cwd; - u32 swd; - u32 twd; - u32 fip; - u32 fcs; - u32 foo; - u32 fos; - u32 st_space[20]; - u32 status; -}; - -struct swregs_state { - u32 cwd; - u32 swd; - u32 twd; - u32 fip; - u32 fcs; - u32 foo; - u32 fos; - u32 st_space[20]; - u8 ftop; - u8 changed; - u8 lookahead; - u8 no_update; - u8 rm; - u8 alimit; - struct math_emu_info *info; - u32 entry_eip; -}; - -union fpregs_state { - struct fregs_state fsave; - struct fxregs_state fxsave; - struct swregs_state soft; - struct xregs_state xsave; - u8 __padding[4096]; -}; - -struct fpstate { - unsigned int size; - unsigned int user_size; - u64 xfeatures; - u64 user_xfeatures; - u64 xfd; - unsigned int is_valloc: 1; - unsigned int is_guest: 1; - unsigned int is_confidential: 1; - unsigned int in_use: 1; - long: 64; - long: 64; - long: 64; - union fpregs_state regs; -}; - -struct fpu_state_perm { - u64 __state_perm; - unsigned int __state_size; - unsigned int __user_state_size; -}; - -struct fpu { - unsigned int last_cpu; - long unsigned int avx512_timestamp; - struct fpstate *fpstate; - struct fpstate *__task_fpstate; - struct fpu_state_perm perm; - struct fpu_state_perm guest_perm; - struct fpstate __fpstate; -}; - -struct iommu_mm_data { - u32 pasid; - struct list_head sva_domains; -}; - -struct iommu_fault_param; - -struct iommu_fwspec; - -struct iommu_device; - -struct dev_iommu { - struct mutex lock; - struct iommu_fault_param *fault_param; - struct iommu_fwspec *fwspec; - struct iommu_device *iommu_dev; - void *priv; - u32 max_pasids; - u32 attach_deferred: 1; - u32 pci_32bit_workaround: 1; - u32 require_direct: 1; - u32 shadow_on_flush: 1; -}; - -enum show_regs_mode { - SHOW_REGS_SHORT = 0, - SHOW_REGS_USER = 1, - SHOW_REGS_ALL = 2, -}; - -struct of_phandle_args { - struct device_node *np; - int args_count; - uint32_t args[16]; -}; - -enum iommu_hw_info_type { - IOMMU_HW_INFO_TYPE_NONE = 0, - IOMMU_HW_INFO_TYPE_DEFAULT = 0, - IOMMU_HW_INFO_TYPE_INTEL_VTD = 1, - IOMMU_HW_INFO_TYPE_ARM_SMMUV3 = 2, - IOMMU_HW_INFO_TYPE_TEGRA241_CMDQV = 3, -}; - -enum iommu_viommu_type { - IOMMU_VIOMMU_TYPE_DEFAULT = 0, - IOMMU_VIOMMU_TYPE_ARM_SMMUV3 = 1, - IOMMU_VIOMMU_TYPE_TEGRA241_CMDQV = 2, -}; - -struct iommu_fault_page_request { - u32 flags; - u32 pasid; - u32 grpid; - u32 perm; - u64 addr; - u64 private_data[2]; -}; - -struct iommu_fault { - u32 type; - struct iommu_fault_page_request prm; -}; - -struct iommu_page_response { - u32 pasid; - u32 grpid; - u32 code; -}; - -struct iopf_fault { - struct iommu_fault fault; - struct list_head list; -}; - -struct iommu_attach_handle; - -struct iopf_group { - struct iopf_fault last_fault; - struct list_head faults; - size_t fault_count; - struct list_head pending_node; - struct work_struct work; - struct iommu_attach_handle *attach_handle; - struct iommu_fault_param *fault_param; - struct list_head node; - u32 cookie; -}; - -struct iommu_domain; - -struct iommu_attach_handle { - struct iommu_domain *domain; -}; - -struct iopf_queue; - -struct iommu_fault_param { - struct mutex lock; - refcount_t users; - struct callback_head rcu; - struct device *dev; - struct iopf_queue *queue; - struct list_head queue_list; - struct list_head partial; - struct list_head faults; -}; - -struct iopf_queue { - struct workqueue_struct *wq; - struct list_head devices; - struct mutex lock; -}; - -typedef int (*iommu_fault_handler_t)(struct iommu_domain *, struct device *, long unsigned int, int, void *); - -enum iommu_domain_cookie_type { - IOMMU_COOKIE_NONE = 0, - IOMMU_COOKIE_DMA_IOVA = 1, - IOMMU_COOKIE_DMA_MSI = 2, - IOMMU_COOKIE_FAULT_HANDLER = 3, - IOMMU_COOKIE_SVA = 4, - IOMMU_COOKIE_IOMMUFD = 5, -}; - -struct iommu_domain_geometry { - dma_addr_t aperture_start; - dma_addr_t aperture_end; - bool force_aperture; -}; - -struct iommu_domain_ops; - -struct iommu_dirty_ops; - -struct iommu_ops; - -struct iommu_dma_cookie; - -struct iommu_dma_msi_cookie; - -struct iommufd_hw_pagetable; - -struct iommu_domain { - unsigned int type; - enum iommu_domain_cookie_type cookie_type; - const struct iommu_domain_ops *ops; - const struct iommu_dirty_ops *dirty_ops; - const struct iommu_ops *owner; - long unsigned int pgsize_bitmap; - struct iommu_domain_geometry geometry; - int (*iopf_handler)(struct iopf_group *); - union { - struct iommu_dma_cookie *iova_cookie; - struct iommu_dma_msi_cookie *msi_cookie; - struct iommufd_hw_pagetable *iommufd_hwpt; - struct { - iommu_fault_handler_t handler; - void *handler_token; - }; - struct { - struct mm_struct *mm; - int users; - struct list_head next; - }; - }; -}; - -typedef unsigned int ioasid_t; - -struct iommu_iotlb_gather; - -struct iommu_user_data_array; - -struct iommu_domain_ops { - int (*attach_dev)(struct iommu_domain *, struct device *); - int (*set_dev_pasid)(struct iommu_domain *, struct device *, ioasid_t, struct iommu_domain *); - int (*map_pages)(struct iommu_domain *, long unsigned int, phys_addr_t, size_t, size_t, int, gfp_t, size_t *); - size_t (*unmap_pages)(struct iommu_domain *, long unsigned int, size_t, size_t, struct iommu_iotlb_gather *); - void (*flush_iotlb_all)(struct iommu_domain *); - int (*iotlb_sync_map)(struct iommu_domain *, long unsigned int, size_t); - void (*iotlb_sync)(struct iommu_domain *, struct iommu_iotlb_gather *); - int (*cache_invalidate_user)(struct iommu_domain *, struct iommu_user_data_array *); - phys_addr_t (*iova_to_phys)(struct iommu_domain *, dma_addr_t); - bool (*enforce_cache_coherency)(struct iommu_domain *); - int (*set_pgtable_quirks)(struct iommu_domain *, long unsigned int); - void (*free)(struct iommu_domain *); -}; - -struct iommu_dirty_bitmap; - -struct iommu_dirty_ops { - int (*set_dirty_tracking)(struct iommu_domain *, bool); - int (*read_and_clear_dirty)(struct iommu_domain *, long unsigned int, size_t, long unsigned int, struct iommu_dirty_bitmap *); -}; - -enum iommu_cap { - IOMMU_CAP_CACHE_COHERENCY = 0, - IOMMU_CAP_NOEXEC = 1, - IOMMU_CAP_PRE_BOOT_PROTECTION = 2, - IOMMU_CAP_ENFORCE_CACHE_COHERENCY = 3, - IOMMU_CAP_DEFERRED_FLUSH = 4, - IOMMU_CAP_DIRTY_TRACKING = 5, -}; - -struct iommu_user_data; - -struct iommufd_viommu; - -struct iommu_ops { - bool (*capable)(struct device *, enum iommu_cap); - void * (*hw_info)(struct device *, u32 *, enum iommu_hw_info_type *); - struct iommu_domain * (*domain_alloc_identity)(struct device *); - struct iommu_domain * (*domain_alloc_paging_flags)(struct device *, u32, const struct iommu_user_data *); - struct iommu_domain * (*domain_alloc_paging)(struct device *); - struct iommu_domain * (*domain_alloc_sva)(struct device *, struct mm_struct *); - struct iommu_domain * (*domain_alloc_nested)(struct device *, struct iommu_domain *, u32, const struct iommu_user_data *); - struct iommu_device * (*probe_device)(struct device *); - void (*release_device)(struct device *); - void (*probe_finalize)(struct device *); - struct iommu_group * (*device_group)(struct device *); - void (*get_resv_regions)(struct device *, struct list_head *); - int (*of_xlate)(struct device *, const struct of_phandle_args *); - bool (*is_attach_deferred)(struct device *); - void (*page_response)(struct device *, struct iopf_fault *, struct iommu_page_response *); - int (*def_domain_type)(struct device *); - size_t (*get_viommu_size)(struct device *, enum iommu_viommu_type); - int (*viommu_init)(struct iommufd_viommu *, struct iommu_domain *, const struct iommu_user_data *); - const struct iommu_domain_ops *default_domain_ops; - struct module *owner; - struct iommu_domain *identity_domain; - struct iommu_domain *blocked_domain; - struct iommu_domain *release_domain; - struct iommu_domain *default_domain; - u8 user_pasid_table: 1; -}; - -struct iommu_pages_list { - struct list_head pages; -}; - -struct iommu_iotlb_gather { - long unsigned int start; - long unsigned int end; - size_t pgsize; - struct iommu_pages_list freelist; - bool queued; -}; - -struct iova_bitmap; - -struct iommu_dirty_bitmap { - struct iova_bitmap *bitmap; - struct iommu_iotlb_gather *gather; -}; - -struct iommu_user_data { - unsigned int type; - void *uptr; - size_t len; -}; - -struct iommu_user_data_array { - unsigned int type; - void *uptr; - size_t entry_len; - u32 entry_num; -}; - -struct iommu_device { - struct list_head list; - const struct iommu_ops *ops; - struct fwnode_handle *fwnode; - struct device *dev; - struct iommu_group *singleton_group; - u32 max_pasids; - bool ready; -}; - -struct iommu_fwspec { - struct fwnode_handle *iommu_fwnode; - u32 flags; - unsigned int num_ids; - u32 ids[0]; -}; - -struct resctrl_pqr_state { - u32 cur_rmid; - u32 cur_closid; - u32 default_rmid; - u32 default_closid; -}; - -enum which_selector { - FS = 0, - GS = 1, -}; - -enum exception_stack_ordering { - ESTACK_DF = 0, - ESTACK_NMI = 1, - ESTACK_DB = 2, - ESTACK_MCE = 3, - ESTACK_VC = 4, - ESTACK_VC2 = 5, - N_EXCEPTION_STACKS = 6, -}; - -struct estack_pages { - u32 offs; - u16 size; - u16 type; -}; - -enum lockdep_ok { - LOCKDEP_STILL_OK = 0, - LOCKDEP_NOW_UNRELIABLE = 1, -}; - -struct entry_stack { - char stack[4096]; -}; - -struct entry_stack_page { - struct entry_stack stack; -}; - -enum die_val { - DIE_OOPS = 1, - DIE_INT3 = 2, - DIE_DEBUG = 3, - DIE_PANIC = 4, - DIE_NMI = 5, - DIE_DIE = 6, - DIE_KERNELDEBUG = 7, - DIE_TRAP = 8, - DIE_GPF = 9, - DIE_CALL = 10, - DIE_PAGE_FAULT = 11, - DIE_NMIUNKNOWN = 12, -}; - -struct debug_store_buffers { - char bts_buffer[65536]; - char pebs_buffer[65536]; -}; - -struct cpu_entry_area { - char gdt[4096]; - struct entry_stack_page entry_stack_page; - struct tss_struct tss; - struct cea_exception_stacks estacks; - struct debug_store cpu_debug_store; - struct debug_store_buffers cpu_debug_buffers; -}; - -enum { - IRQ_TYPE_NONE = 0, - IRQ_TYPE_EDGE_RISING = 1, - IRQ_TYPE_EDGE_FALLING = 2, - IRQ_TYPE_EDGE_BOTH = 3, - IRQ_TYPE_LEVEL_HIGH = 4, - IRQ_TYPE_LEVEL_LOW = 8, - IRQ_TYPE_LEVEL_MASK = 12, - IRQ_TYPE_SENSE_MASK = 15, - IRQ_TYPE_DEFAULT = 15, - IRQ_TYPE_PROBE = 16, - IRQ_LEVEL = 256, - IRQ_PER_CPU = 512, - IRQ_NOPROBE = 1024, - IRQ_NOREQUEST = 2048, - IRQ_NOAUTOEN = 4096, - IRQ_NO_BALANCING = 8192, - IRQ_NESTED_THREAD = 32768, - IRQ_NOTHREAD = 65536, - IRQ_PER_CPU_DEVID = 131072, - IRQ_IS_POLLED = 262144, - IRQ_DISABLE_UNLAZY = 524288, - IRQ_HIDDEN = 1048576, - IRQ_NO_DEBUG = 2097152, -}; - -typedef struct irq_desc *vector_irq_t[256]; - -struct legacy_pic { - int nr_legacy_irqs; - struct irq_chip *chip; - void (*mask)(unsigned int); - void (*unmask)(unsigned int); - void (*mask_all)(void); - void (*restore_mask)(void); - void (*init)(int); - int (*probe)(void); - int (*irq_pending)(unsigned int); - void (*make_irq)(unsigned int); -}; - -struct userfaultfd_ctx { - wait_queue_head_t fault_pending_wqh; - wait_queue_head_t fault_wqh; - wait_queue_head_t fd_wqh; - wait_queue_head_t event_wqh; - seqcount_spinlock_t refile_seq; - refcount_t refcount; - unsigned int flags; - unsigned int features; - bool released; - struct rw_semaphore map_changing_lock; - atomic_t mmap_changing; - struct mm_struct *mm; -}; - -enum align_flags { - ALIGN_VA_32 = 1, - ALIGN_VA_64 = 2, -}; - -struct va_alignment { - int flags; - long unsigned int mask; - long unsigned int bits; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum { - EI_ETYPE_NULL = 0, - EI_ETYPE_ERRNO = 1, - EI_ETYPE_ERRNO_NULL = 2, - EI_ETYPE_TRUE = 3, -}; - -struct vm_unmapped_area_info { - long unsigned int flags; - long unsigned int length; - long unsigned int low_limit; - long unsigned int high_limit; - long unsigned int align_mask; - long unsigned int align_offset; - long unsigned int start_gap; -}; - -struct syscall_metadata { - const char *name; - int syscall_nr; - int nb_args; - const char **types; - const char **args; - struct list_head enter_fields; - struct trace_event_call *enter_event; - struct trace_event_call *exit_event; -}; - -struct hstate; - -struct hugepage_subpool { - spinlock_t lock; - long int count; - long int max_hpages; - long int used_hpages; - struct hstate *hstate; - long int min_hpages; - long int rsv_hpages; -}; - -struct hstate { - struct mutex resize_lock; - struct lock_class_key resize_key; - int next_nid_to_alloc; - int next_nid_to_free; - unsigned int order; - unsigned int demote_order; - long unsigned int mask; - long unsigned int max_huge_pages; - long unsigned int nr_huge_pages; - long unsigned int free_huge_pages; - long unsigned int resv_huge_pages; - long unsigned int surplus_huge_pages; - long unsigned int nr_overcommit_huge_pages; - struct list_head hugepage_activelist; - struct list_head hugepage_freelists[1024]; - unsigned int max_huge_pages_node[1024]; - unsigned int nr_huge_pages_node[1024]; - unsigned int free_huge_pages_node[1024]; - unsigned int surplus_huge_pages_node[1024]; - char name[32]; -}; - -struct hugetlbfs_sb_info { - long int max_inodes; - long int free_inodes; - spinlock_t stat_lock; - struct hstate *hstate; - struct hugepage_subpool *spool; - kuid_t uid; - kgid_t gid; - umode_t mode; -}; - -enum mthp_stat_item { - MTHP_STAT_ANON_FAULT_ALLOC = 0, - MTHP_STAT_ANON_FAULT_FALLBACK = 1, - MTHP_STAT_ANON_FAULT_FALLBACK_CHARGE = 2, - MTHP_STAT_ZSWPOUT = 3, - MTHP_STAT_SWPIN = 4, - MTHP_STAT_SWPIN_FALLBACK = 5, - MTHP_STAT_SWPIN_FALLBACK_CHARGE = 6, - MTHP_STAT_SWPOUT = 7, - MTHP_STAT_SWPOUT_FALLBACK = 8, - MTHP_STAT_SHMEM_ALLOC = 9, - MTHP_STAT_SHMEM_FALLBACK = 10, - MTHP_STAT_SHMEM_FALLBACK_CHARGE = 11, - MTHP_STAT_SPLIT = 12, - MTHP_STAT_SPLIT_FAILED = 13, - MTHP_STAT_SPLIT_DEFERRED = 14, - MTHP_STAT_NR_ANON = 15, - MTHP_STAT_NR_ANON_PARTIALLY_MAPPED = 16, - __MTHP_STAT_COUNT = 17, -}; - -enum vm_event_item { - PGPGIN = 0, - PGPGOUT = 1, - PSWPIN = 2, - PSWPOUT = 3, - PGALLOC_DMA = 4, - PGALLOC_DMA32 = 5, - PGALLOC_NORMAL = 6, - PGALLOC_MOVABLE = 7, - PGALLOC_DEVICE = 8, - ALLOCSTALL_DMA = 9, - ALLOCSTALL_DMA32 = 10, - ALLOCSTALL_NORMAL = 11, - ALLOCSTALL_MOVABLE = 12, - ALLOCSTALL_DEVICE = 13, - PGSCAN_SKIP_DMA = 14, - PGSCAN_SKIP_DMA32 = 15, - PGSCAN_SKIP_NORMAL = 16, - PGSCAN_SKIP_MOVABLE = 17, - PGSCAN_SKIP_DEVICE = 18, - PGFREE = 19, - PGACTIVATE = 20, - PGDEACTIVATE = 21, - PGLAZYFREE = 22, - PGFAULT = 23, - PGMAJFAULT = 24, - PGLAZYFREED = 25, - PGREFILL = 26, - PGREUSE = 27, - PGSTEAL_KSWAPD = 28, - PGSTEAL_DIRECT = 29, - PGSTEAL_KHUGEPAGED = 30, - PGSTEAL_PROACTIVE = 31, - PGSCAN_KSWAPD = 32, - PGSCAN_DIRECT = 33, - PGSCAN_KHUGEPAGED = 34, - PGSCAN_PROACTIVE = 35, - PGSCAN_DIRECT_THROTTLE = 36, - PGSCAN_ANON = 37, - PGSCAN_FILE = 38, - PGSTEAL_ANON = 39, - PGSTEAL_FILE = 40, - PGSCAN_ZONE_RECLAIM_SUCCESS = 41, - PGSCAN_ZONE_RECLAIM_FAILED = 42, - PGINODESTEAL = 43, - SLABS_SCANNED = 44, - KSWAPD_INODESTEAL = 45, - KSWAPD_LOW_WMARK_HIT_QUICKLY = 46, - KSWAPD_HIGH_WMARK_HIT_QUICKLY = 47, - PAGEOUTRUN = 48, - PGROTATED = 49, - DROP_PAGECACHE = 50, - DROP_SLAB = 51, - OOM_KILL = 52, - NUMA_PTE_UPDATES = 53, - NUMA_HUGE_PTE_UPDATES = 54, - NUMA_HINT_FAULTS = 55, - NUMA_HINT_FAULTS_LOCAL = 56, - NUMA_PAGE_MIGRATE = 57, - PGMIGRATE_SUCCESS = 58, - PGMIGRATE_FAIL = 59, - THP_MIGRATION_SUCCESS = 60, - THP_MIGRATION_FAIL = 61, - THP_MIGRATION_SPLIT = 62, - COMPACTMIGRATE_SCANNED = 63, - COMPACTFREE_SCANNED = 64, - COMPACTISOLATED = 65, - COMPACTSTALL = 66, - COMPACTFAIL = 67, - COMPACTSUCCESS = 68, - KCOMPACTD_WAKE = 69, - KCOMPACTD_MIGRATE_SCANNED = 70, - KCOMPACTD_FREE_SCANNED = 71, - HTLB_BUDDY_PGALLOC = 72, - HTLB_BUDDY_PGALLOC_FAIL = 73, - CMA_ALLOC_SUCCESS = 74, - CMA_ALLOC_FAIL = 75, - UNEVICTABLE_PGCULLED = 76, - UNEVICTABLE_PGSCANNED = 77, - UNEVICTABLE_PGRESCUED = 78, - UNEVICTABLE_PGMLOCKED = 79, - UNEVICTABLE_PGMUNLOCKED = 80, - UNEVICTABLE_PGCLEARED = 81, - UNEVICTABLE_PGSTRANDED = 82, - THP_FAULT_ALLOC = 83, - THP_FAULT_FALLBACK = 84, - THP_FAULT_FALLBACK_CHARGE = 85, - THP_COLLAPSE_ALLOC = 86, - THP_COLLAPSE_ALLOC_FAILED = 87, - THP_FILE_ALLOC = 88, - THP_FILE_FALLBACK = 89, - THP_FILE_FALLBACK_CHARGE = 90, - THP_FILE_MAPPED = 91, - THP_SPLIT_PAGE = 92, - THP_SPLIT_PAGE_FAILED = 93, - THP_DEFERRED_SPLIT_PAGE = 94, - THP_UNDERUSED_SPLIT_PAGE = 95, - THP_SPLIT_PMD = 96, - THP_SCAN_EXCEED_NONE_PTE = 97, - THP_SCAN_EXCEED_SWAP_PTE = 98, - THP_SCAN_EXCEED_SHARED_PTE = 99, - THP_SPLIT_PUD = 100, - THP_ZERO_PAGE_ALLOC = 101, - THP_ZERO_PAGE_ALLOC_FAILED = 102, - THP_SWPOUT = 103, - THP_SWPOUT_FALLBACK = 104, - BALLOON_INFLATE = 105, - BALLOON_DEFLATE = 106, - BALLOON_MIGRATE = 107, - SWAP_RA = 108, - SWAP_RA_HIT = 109, - SWPIN_ZERO = 110, - SWPOUT_ZERO = 111, - KSM_SWPIN_COPY = 112, - COW_KSM = 113, - ZSWPIN = 114, - ZSWPOUT = 115, - ZSWPWB = 116, - DIRECT_MAP_LEVEL2_SPLIT = 117, - DIRECT_MAP_LEVEL3_SPLIT = 118, - DIRECT_MAP_LEVEL2_COLLAPSE = 119, - DIRECT_MAP_LEVEL3_COLLAPSE = 120, - NR_VM_EVENT_ITEMS = 121, -}; - -typedef struct { - void *lock; -} class_irq_t; - -enum clock_event_state { - CLOCK_EVT_STATE_DETACHED = 0, - CLOCK_EVT_STATE_SHUTDOWN = 1, - CLOCK_EVT_STATE_PERIODIC = 2, - CLOCK_EVT_STATE_ONESHOT = 3, - CLOCK_EVT_STATE_ONESHOT_STOPPED = 4, -}; - -struct clock_event_device { - void (*event_handler)(struct clock_event_device *); - int (*set_next_event)(long unsigned int, struct clock_event_device *); - int (*set_next_ktime)(ktime_t, struct clock_event_device *); - ktime_t next_event; - u64 max_delta_ns; - u64 min_delta_ns; - u32 mult; - u32 shift; - enum clock_event_state state_use_accessors; - unsigned int features; - long unsigned int retries; - int (*set_state_periodic)(struct clock_event_device *); - int (*set_state_oneshot)(struct clock_event_device *); - int (*set_state_oneshot_stopped)(struct clock_event_device *); - int (*set_state_shutdown)(struct clock_event_device *); - int (*tick_resume)(struct clock_event_device *); - void (*broadcast)(const struct cpumask *); - void (*suspend)(struct clock_event_device *); - void (*resume)(struct clock_event_device *); - long unsigned int min_delta_ticks; - long unsigned int max_delta_ticks; - const char *name; - int rating; - int irq; - int bound_on; - const struct cpumask *cpumask; - struct list_head list; - struct module *owner; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct muldiv { - u32 multiplier; - u32 divider; -}; - -struct freq_desc { - bool use_msr_plat; - struct muldiv muldiv[16]; - u32 freqs[16]; - u32 mask; -}; - -struct e820_entry { - u64 addr; - u64 size; - enum e820_type type; -} __attribute__((packed)); - -struct e820_table { - __u32 nr_entries; - struct e820_entry entries[3200]; -}; - -enum system_states { - SYSTEM_BOOTING = 0, - SYSTEM_SCHEDULING = 1, - SYSTEM_FREEING_INITMEM = 2, - SYSTEM_RUNNING = 3, - SYSTEM_HALT = 4, - SYSTEM_POWER_OFF = 5, - SYSTEM_RESTART = 6, - SYSTEM_SUSPEND = 7, -}; - -union text_poke_insn { - u8 text[5]; - struct { - u8 opcode; - s32 disp; - } __attribute__((packed)); -}; - -enum insn_type { - CALL = 0, - NOP = 1, - JMP = 2, - RET = 3, - JCC = 4, -}; - -struct vcpu_fpu_config { - unsigned int size; - u64 features; -}; - -struct fpu_state_config { - unsigned int max_size; - unsigned int default_size; - u64 max_features; - u64 default_features; - u64 legacy_features; - u64 independent_features; -}; - -struct _fpreg { - __u16 significand[4]; - __u16 exponent; -}; - -struct _fpxreg { - __u16 significand[4]; - __u16 exponent; - __u16 padding[3]; -}; - -struct cet_user_state { - u64 user_cet; - u64 user_ssp; -}; - -struct user_i387_ia32_struct { - u32 cwd; - u32 swd; - u32 twd; - u32 fip; - u32 fcs; - u32 foo; - u32 fos; - u32 st_space[20]; -}; - -struct membuf { - void *p; - size_t left; -}; - -struct user_regset; - -typedef int user_regset_active_fn(struct task_struct *, const struct user_regset *); - -typedef int user_regset_get2_fn(struct task_struct *, const struct user_regset *, struct membuf); - -typedef int user_regset_set_fn(struct task_struct *, const struct user_regset *, unsigned int, unsigned int, const void *, const void *); - -typedef int user_regset_writeback_fn(struct task_struct *, const struct user_regset *, int); - -struct user_regset { - user_regset_get2_fn *regset_get; - user_regset_set_fn *set; - user_regset_active_fn *active; - user_regset_writeback_fn *writeback; - unsigned int n; - unsigned int size; - unsigned int align; - unsigned int bias; - unsigned int core_note_type; - const char *core_note_name; -}; - -enum xstate_copy_mode { - XSTATE_COPY_FP = 0, - XSTATE_COPY_FX = 1, - XSTATE_COPY_XSAVE = 2, -}; - -typedef void (*swap_func_t)(void *, void *, int); - -typedef int (*cmp_func_t)(const void *, const void *); - -struct pkru_state { - u32 pkru; - u32 pad; -}; - -struct fpu_guest { - u64 xfeatures; - u64 xfd_err; - unsigned int uabi_size; - struct fpstate *fpstate; -}; - -struct elf64_note { - Elf64_Word n_namesz; - Elf64_Word n_descsz; - Elf64_Word n_type; -}; - -struct core_vma_metadata { - long unsigned int start; - long unsigned int end; - vm_flags_t flags; - long unsigned int dump_size; - long unsigned int pgoff; - struct file *file; -}; - -struct coredump_params { - const kernel_siginfo_t *siginfo; - struct file *file; - long unsigned int limit; - long unsigned int mm_flags; - int cpu; - loff_t written; - loff_t pos; - loff_t to_skip; - int vma_count; - size_t vma_data_size; - struct core_vma_metadata *vma_meta; - struct pid *pid; -}; - -struct x86_xfeat_component { - __u32 type; - __u32 size; - __u32 offset; - __u32 flags; -}; - -typedef u8 uint8_t; - -struct acpi_table_header { - char signature[4]; - u32 length; - u8 revision; - u8 checksum; - char oem_id[6]; - char oem_table_id[8]; - u32 oem_revision; - char asl_compiler_id[4]; - u32 asl_compiler_revision; -}; - -struct acpi_generic_address { - u8 space_id; - u8 bit_width; - u8 bit_offset; - u8 access_width; - u64 address; -} __attribute__((packed)); - -struct acpi_table_fadt { - struct acpi_table_header header; - u32 facs; - u32 dsdt; - u8 model; - u8 preferred_profile; - u16 sci_interrupt; - u32 smi_command; - u8 acpi_enable; - u8 acpi_disable; - u8 s4_bios_request; - u8 pstate_control; - u32 pm1a_event_block; - u32 pm1b_event_block; - u32 pm1a_control_block; - u32 pm1b_control_block; - u32 pm2_control_block; - u32 pm_timer_block; - u32 gpe0_block; - u32 gpe1_block; - u8 pm1_event_length; - u8 pm1_control_length; - u8 pm2_control_length; - u8 pm_timer_length; - u8 gpe0_block_length; - u8 gpe1_block_length; - u8 gpe1_base; - u8 cst_control; - u16 c2_latency; - u16 c3_latency; - u16 flush_size; - u16 flush_stride; - u8 duty_offset; - u8 duty_width; - u8 day_alarm; - u8 month_alarm; - u8 century; - u16 boot_flags; - u8 reserved; - u32 flags; - struct acpi_generic_address reset_register; - u8 reset_value; - u16 arm_boot_flags; - u8 minor_revision; - u64 Xfacs; - u64 Xdsdt; - struct acpi_generic_address xpm1a_event_block; - struct acpi_generic_address xpm1b_event_block; - struct acpi_generic_address xpm1a_control_block; - struct acpi_generic_address xpm1b_control_block; - struct acpi_generic_address xpm2_control_block; - struct acpi_generic_address xpm_timer_block; - struct acpi_generic_address xgpe0_block; - struct acpi_generic_address xgpe1_block; - struct acpi_generic_address sleep_control; - struct acpi_generic_address sleep_status; - u64 hypervisor_id; -} __attribute__((packed)); - -enum { - TB_SHUTDOWN_REBOOT = 0, - TB_SHUTDOWN_S5 = 1, - TB_SHUTDOWN_S4 = 2, - TB_SHUTDOWN_S3 = 3, - TB_SHUTDOWN_HALT = 4, - TB_SHUTDOWN_WFS = 5, -}; - -struct tboot_mac_region { - u64 start; - u32 size; -} __attribute__((packed)); - -struct tboot_acpi_generic_address { - u8 space_id; - u8 bit_width; - u8 bit_offset; - u8 access_width; - u64 address; -} __attribute__((packed)); - -struct tboot_acpi_sleep_info { - struct tboot_acpi_generic_address pm1a_cnt_blk; - struct tboot_acpi_generic_address pm1b_cnt_blk; - struct tboot_acpi_generic_address pm1a_evt_blk; - struct tboot_acpi_generic_address pm1b_evt_blk; - u16 pm1a_cnt_val; - u16 pm1b_cnt_val; - u64 wakeup_vector; - u32 vector_width; - u64 kernel_s3_resume_vector; -} __attribute__((packed)); - -struct tboot { - u8 uuid[16]; - u32 version; - u32 log_addr; - u32 shutdown_entry; - u32 shutdown_type; - struct tboot_acpi_sleep_info acpi_sinfo; - u32 tboot_base; - u32 tboot_size; - u8 num_mac_regions; - struct tboot_mac_region mac_regions[32]; - u8 s3_key[64]; - u8 reserved_align[3]; - u32 num_in_wfs; -}; - -struct sha1_hash { - u8 hash[20]; -}; - -struct sinit_mle_data { - u32 version; - struct sha1_hash bios_acm_id; - u32 edx_senter_flags; - u64 mseg_valid; - struct sha1_hash sinit_hash; - struct sha1_hash mle_hash; - struct sha1_hash stm_hash; - struct sha1_hash lcp_policy_hash; - u32 lcp_policy_control; - u32 rlp_wakeup_addr; - u32 reserved; - u32 num_mdrs; - u32 mdrs_off; - u32 num_vtd_dmars; - u32 vtd_dmars_off; -} __attribute__((packed)); - -enum cpuid_regs_idx { - CPUID_EAX = 0, - CPUID_EBX = 1, - CPUID_ECX = 2, - CPUID_EDX = 3, -}; - -struct topo_scan { - struct cpuinfo_x86 *c; - unsigned int dom_shifts[7]; - unsigned int dom_ncpus[7]; - unsigned int ebx1_nproc_shift; - u16 amd_nodes_per_pkg; - u16 amd_node_id; -}; - -enum topo_types { - INVALID_TYPE = 0, - SMT_TYPE = 1, - CORE_TYPE = 2, - MAX_TYPE_0B = 3, - MODULE_TYPE = 3, - AMD_CCD_TYPE = 3, - TILE_TYPE = 4, - AMD_SOCKET_TYPE = 4, - MAX_TYPE_80000026 = 5, - DIE_TYPE = 5, - DIEGRP_TYPE = 6, - MAX_TYPE_1F = 7, -}; - -enum { - DESC_TSS = 9, - DESC_LDT = 2, - DESCTYPE_S = 16, -}; - -struct ldttss_desc { - u16 limit0; - u16 base0; - u16 base1: 8; - u16 type: 5; - u16 dpl: 2; - u16 p: 1; - u16 limit1: 4; - u16 zero0: 3; - u16 g: 1; - u16 base2: 8; - u32 base3; - u32 zero1; -}; - -typedef struct ldttss_desc tss_desc; - -enum cpuid_leafs { - CPUID_1_EDX = 0, - CPUID_8000_0001_EDX = 1, - CPUID_8086_0001_EDX = 2, - CPUID_LNX_1 = 3, - CPUID_1_ECX = 4, - CPUID_C000_0001_EDX = 5, - CPUID_8000_0001_ECX = 6, - CPUID_LNX_2 = 7, - CPUID_LNX_3 = 8, - CPUID_7_0_EBX = 9, - CPUID_D_1_EAX = 10, - CPUID_LNX_4 = 11, - CPUID_7_1_EAX = 12, - CPUID_8000_0008_EBX = 13, - CPUID_6_EAX = 14, - CPUID_8000_000A_EDX = 15, - CPUID_7_ECX = 16, - CPUID_8000_0007_EBX = 17, - CPUID_7_EDX = 18, - CPUID_8000_001F_EAX = 19, - CPUID_8000_0021_EAX = 20, - CPUID_LNX_5 = 21, - NR_CPUID_WORDS = 22, -}; - -struct tlb_context { - u64 ctx_id; - u64 tlb_gen; -}; - -struct tlb_state { - struct mm_struct *loaded_mm; - union { - struct mm_struct *last_user_mm; - long unsigned int last_user_mm_spec; - }; - u16 loaded_mm_asid; - u16 next_asid; - bool invalidate_other; - short unsigned int user_pcid_flush_mask; - long unsigned int cr4; - struct tlb_context ctxs[6]; -}; - -enum kgdb_bptype { - BP_BREAKPOINT = 0, - BP_HARDWARE_BREAKPOINT = 1, - BP_WRITE_WATCHPOINT = 2, - BP_READ_WATCHPOINT = 3, - BP_ACCESS_WATCHPOINT = 4, - BP_POKE_BREAKPOINT = 5, -}; - -struct kgdb_arch { - unsigned char gdb_bpt_instr[1]; - long unsigned int flags; - int (*set_breakpoint)(long unsigned int, char *); - int (*remove_breakpoint)(long unsigned int, char *); - int (*set_hw_breakpoint)(long unsigned int, int, enum kgdb_bptype); - int (*remove_hw_breakpoint)(long unsigned int, int, enum kgdb_bptype); - void (*disable_hw_break)(struct pt_regs *); - void (*remove_all_hw_break)(void); - void (*correct_hw_break)(void); -}; - -enum intercept_words { - INTERCEPT_CR = 0, - INTERCEPT_DR = 1, - INTERCEPT_EXCEPTION = 2, - INTERCEPT_WORD3 = 3, - INTERCEPT_WORD4 = 4, - INTERCEPT_WORD5 = 5, - MAX_INTERCEPT = 6, -}; - -struct cpu_dev { - const char *c_vendor; - const char *c_ident[2]; - void (*c_early_init)(struct cpuinfo_x86 *); - void (*c_bsp_init)(struct cpuinfo_x86 *); - void (*c_init)(struct cpuinfo_x86 *); - void (*c_identify)(struct cpuinfo_x86 *); - void (*c_detect_tlb)(struct cpuinfo_x86 *); - int c_x86_vendor; -}; - -struct ppin_info { - int feature; - int msr_ppin_ctl; - int msr_ppin; -}; - -struct cpuid_dependent_feature { - u32 feature; - u32 level; -}; - -enum vmx_feature_leafs { - MISC_FEATURES = 0, - PRIMARY_CTLS = 1, - SECONDARY_CTLS = 2, - TERTIARY_CTLS_LOW = 3, - TERTIARY_CTLS_HIGH = 4, - NR_VMX_FEATURE_WORDS = 5, -}; - -enum tsx_ctrl_states { - TSX_CTRL_ENABLE = 0, - TSX_CTRL_DISABLE = 1, - TSX_CTRL_RTM_ALWAYS_ABORT = 2, - TSX_CTRL_NOT_SUPPORTED = 3, -}; - -enum spectre_v2_mitigation { - SPECTRE_V2_NONE = 0, - SPECTRE_V2_RETPOLINE = 1, - SPECTRE_V2_LFENCE = 2, - SPECTRE_V2_EIBRS = 3, - SPECTRE_V2_EIBRS_RETPOLINE = 4, - SPECTRE_V2_EIBRS_LFENCE = 5, - SPECTRE_V2_IBRS = 6, -}; - -struct gen_pool; - -typedef long unsigned int (*genpool_algo_t)(long unsigned int *, long unsigned int, long unsigned int, unsigned int, void *, struct gen_pool *, long unsigned int); - -struct gen_pool { - spinlock_t lock; - struct list_head chunks; - int min_alloc_order; - genpool_algo_t algo; - void *data; - const char *name; -}; - -struct mce { - __u64 status; - __u64 misc; - __u64 addr; - __u64 mcgstatus; - __u64 ip; - __u64 tsc; - __u64 time; - __u8 cpuvendor; - __u8 inject_flags; - __u8 severity; - __u8 pad; - __u32 cpuid; - __u8 cs; - __u8 bank; - __u8 cpu; - __u8 finished; - __u32 extcpu; - __u32 socketid; - __u32 apicid; - __u64 mcgcap; - __u64 synd; - __u64 ipid; - __u64 ppin; - __u32 microcode; - __u64 kflags; -}; - -union vendor_info { - struct { - u64 synd1; - u64 synd2; - } amd; -}; - -struct mce_hw_err { - struct mce m; - union vendor_info vendor; -}; - -struct mce_evt_llist { - struct llist_node llnode; - struct mce_hw_err err; -}; - -typedef long unsigned int mce_banks_t[1]; - -enum mcp_flags { - MCP_TIMESTAMP = 1, - MCP_UC = 2, - MCP_DONTLOG = 4, - MCP_QUEUE_LOG = 8, -}; - -struct storm_bank { - u64 history; - u64 timestamp; - bool in_storm_mode; - bool poll_only; -}; - -struct mca_storm_desc { - struct storm_bank banks[64]; - u8 stormy_bank_count; - bool poll_mode; -}; - -struct mca_config { - __u64 lmce_disabled: 1; - __u64 disabled: 1; - __u64 ser: 1; - __u64 recovery: 1; - __u64 bios_cmci_threshold: 1; - __u64 initialized: 1; - __u64 __reserved: 58; - bool dont_log_ce; - bool cmci_disabled; - bool ignore_ce; - bool print_all; - int monarch_timeout; - int panic_timeout; - u32 rip_msr; - s8 bootlog; -}; - -struct mce_vendor_flags { - __u64 overflow_recov: 1; - __u64 succor: 1; - __u64 smca: 1; - __u64 zen_ifu_quirk: 1; - __u64 amd_threshold: 1; - __u64 p5: 1; - __u64 winchip: 1; - __u64 snb_ifu_quirk: 1; - __u64 skx_repmov_quirk: 1; - __u64 __reserved_0: 55; -}; - -struct cpio_data { - void *data; - size_t size; - char name[18]; -}; - -struct firmware { - size_t size; - const u8 *data; - void *priv; -}; - -struct cpu_signature { - unsigned int sig; - unsigned int pf; - unsigned int rev; -}; - -struct ucode_cpu_info { - struct cpu_signature cpu_sig; - void *mc; -}; - -struct microcode_header_intel { - unsigned int hdrver; - unsigned int rev; - unsigned int date; - unsigned int sig; - unsigned int cksum; - unsigned int ldrver; - unsigned int pf; - unsigned int datasize; - unsigned int totalsize; - unsigned int metasize; - unsigned int min_req_ver; - unsigned int reserved; -}; - -struct microcode_intel { - struct microcode_header_intel hdr; - unsigned int bits[0]; -}; - -enum ucode_state { - UCODE_OK = 0, - UCODE_NEW = 1, - UCODE_NEW_SAFE = 2, - UCODE_UPDATED = 3, - UCODE_NFOUND = 4, - UCODE_ERROR = 5, - UCODE_TIMEOUT = 6, - UCODE_OFFLINE = 7, -}; - -struct microcode_ops { - enum ucode_state (*request_microcode_fw)(int, struct device *); - void (*microcode_fini_cpu)(int); - enum ucode_state (*apply_microcode)(int); - int (*collect_cpu_info)(int, struct cpu_signature *); - void (*finalize_late_load)(int); - unsigned int nmi_safe: 1; - unsigned int use_nmi: 1; -}; - -struct early_load_data { - u32 old_rev; - u32 new_rev; -}; - -struct extended_signature { - unsigned int sig; - unsigned int pf; - unsigned int cksum; -}; - -struct extended_sigtable { - unsigned int count; - unsigned int cksum; - unsigned int reserved[3]; - struct extended_signature sigs[0]; -}; - -struct fc_log; - -struct p_log { - const char *prefix; - struct fc_log *log; -}; - -enum fs_context_purpose { - FS_CONTEXT_FOR_MOUNT = 0, - FS_CONTEXT_FOR_SUBMOUNT = 1, - FS_CONTEXT_FOR_RECONFIGURE = 2, -}; - -enum fs_context_phase { - FS_CONTEXT_CREATE_PARAMS = 0, - FS_CONTEXT_CREATING = 1, - FS_CONTEXT_AWAITING_MOUNT = 2, - FS_CONTEXT_AWAITING_RECONF = 3, - FS_CONTEXT_RECONF_PARAMS = 4, - FS_CONTEXT_RECONFIGURING = 5, - FS_CONTEXT_FAILED = 6, -}; - -struct fs_context_operations; - -struct fs_context { - const struct fs_context_operations *ops; - struct mutex uapi_mutex; - struct file_system_type *fs_type; - void *fs_private; - void *sget_key; - struct dentry *root; - struct user_namespace *user_ns; - struct net *net_ns; - const struct cred *cred; - struct p_log log; - const char *source; - void *security; - void *s_fs_info; - unsigned int sb_flags; - unsigned int sb_flags_mask; - unsigned int s_iflags; - enum fs_context_purpose purpose: 8; - enum fs_context_phase phase: 8; - bool need_free: 1; - bool global: 1; - bool oldapi: 1; - bool exclusive: 1; -}; - -struct audit_names; - -struct filename { - const char *name; - const char *uptr; - atomic_t refcnt; - struct audit_names *aname; - const char iname[0]; -}; - -enum fs_value_type { - fs_value_is_undefined = 0, - fs_value_is_flag = 1, - fs_value_is_string = 2, - fs_value_is_blob = 3, - fs_value_is_filename = 4, - fs_value_is_file = 5, -}; - -struct fs_parameter { - const char *key; - enum fs_value_type type: 8; - union { - char *string; - void *blob; - struct filename *name; - struct file *file; - }; - size_t size; - int dirfd; -}; - -struct fc_log { - refcount_t usage; - u8 head; - u8 tail; - u8 need_free; - struct module *owner; - char *buffer[8]; -}; - -struct fs_context_operations { - void (*free)(struct fs_context *); - int (*dup)(struct fs_context *, struct fs_context *); - int (*parse_param)(struct fs_context *, struct fs_parameter *); - int (*parse_monolithic)(struct fs_context *, void *); - int (*get_tree)(struct fs_context *); - int (*reconfigure)(struct fs_context *); -}; - -struct fs_parse_result { - bool negated; - union { - bool boolean; - int int_32; - unsigned int uint_32; - u64 uint_64; - kuid_t uid; - kgid_t gid; - }; -}; - -enum resctrl_event_id { - QOS_L3_OCCUP_EVENT_ID = 1, - QOS_L3_MBM_TOTAL_EVENT_ID = 2, - QOS_L3_MBM_LOCAL_EVENT_ID = 3, - QOS_NUM_EVENTS = 4, -}; - -enum resctrl_res_level { - RDT_RESOURCE_L3 = 0, - RDT_RESOURCE_L2 = 1, - RDT_RESOURCE_MBA = 2, - RDT_RESOURCE_SMBA = 3, - RDT_NUM_RESOURCES = 4, -}; - -enum resctrl_conf_type { - CDP_NONE = 0, - CDP_CODE = 1, - CDP_DATA = 2, -}; - -struct resctrl_schema; - -struct rdt_ctrl_domain; - -struct pseudo_lock_region { - struct resctrl_schema *s; - u32 closid; - struct rdt_ctrl_domain *d; - u32 cbm; - wait_queue_head_t lock_thread_wq; - int thread_done; - int cpu; - unsigned int line_size; - unsigned int size; - void *kmem; - unsigned int minor; - struct dentry *debugfs_dir; - struct list_head pm_reqs; -}; - -struct rdt_resource; - -struct resctrl_schema { - struct list_head list; - char name[8]; - const char *fmt_str; - enum resctrl_conf_type conf_type; - struct rdt_resource *res; - u32 num_closid; -}; - -enum resctrl_domain_type { - RESCTRL_CTRL_DOMAIN = 0, - RESCTRL_MON_DOMAIN = 1, -}; - -struct rdt_domain_hdr { - struct list_head list; - int id; - enum resctrl_domain_type type; - struct cpumask cpu_mask; -}; - -struct resctrl_staged_config { - u32 new_ctrl; - bool have_new_ctrl; -}; - -struct rdt_ctrl_domain { - struct rdt_domain_hdr hdr; - struct pseudo_lock_region *plr; - struct resctrl_staged_config staged_config[3]; - u32 *mbps_val; -}; - -struct mbm_state; - -struct rdt_mon_domain { - struct rdt_domain_hdr hdr; - unsigned int ci_id; - long unsigned int *rmid_busy_llc; - struct mbm_state *mbm_total; - struct mbm_state *mbm_local; - struct delayed_work mbm_over; - struct delayed_work cqm_limbo; - int mbm_work_cpu; - int cqm_work_cpu; -}; - -struct resctrl_cache { - unsigned int cbm_len; - unsigned int min_cbm_bits; - unsigned int shareable_bits; - bool arch_has_sparse_bitmasks; - bool arch_has_per_cpu_cfg; -}; - -enum membw_throttle_mode { - THREAD_THROTTLE_UNDEFINED = 0, - THREAD_THROTTLE_MAX = 1, - THREAD_THROTTLE_PER_THREAD = 2, -}; - -struct resctrl_membw { - u32 min_bw; - u32 max_bw; - u32 bw_gran; - u32 delay_linear; - bool arch_needs_linear; - enum membw_throttle_mode throttle_mode; - bool mba_sc; - u32 *mb_map; -}; - -enum resctrl_scope { - RESCTRL_L2_CACHE = 2, - RESCTRL_L3_CACHE = 3, - RESCTRL_L3_NODE = 4, -}; - -enum resctrl_schema_fmt { - RESCTRL_SCHEMA_BITMAP = 0, - RESCTRL_SCHEMA_RANGE = 1, -}; - -struct rdt_resource { - int rid; - bool alloc_capable; - bool mon_capable; - int num_rmid; - enum resctrl_scope ctrl_scope; - enum resctrl_scope mon_scope; - struct resctrl_cache cache; - struct resctrl_membw membw; - struct list_head ctrl_domains; - struct list_head mon_domains; - char *name; - enum resctrl_schema_fmt schema_fmt; - struct list_head evt_list; - unsigned int mbm_cfg_mask; - bool cdp_capable; -}; - -struct resctrl_cpu_defaults { - u32 closid; - u32 rmid; -}; - -struct resctrl_mon_config_info { - struct rdt_resource *r; - struct rdt_mon_domain *d; - u32 evtid; - u32 mon_config; -}; - -struct rdt_hw_ctrl_domain { - struct rdt_ctrl_domain d_resctrl; - u32 *ctrl_val; -}; - -struct msr_param { - struct rdt_resource *res; - struct rdt_ctrl_domain *dom; - u32 low; - u32 high; -}; - -struct rdt_hw_resource { - struct rdt_resource r_resctrl; - u32 num_closid; - unsigned int msr_base; - void (*msr_update)(struct msr_param *); - unsigned int mon_scale; - unsigned int mbm_width; - bool cdp_enabled; -}; - -enum sgx_encls_function { - ECREATE = 0, - EADD = 1, - EINIT = 2, - EREMOVE = 3, - EDGBRD = 4, - EDGBWR = 5, - EEXTEND = 6, - ELDU = 8, - EBLOCK = 9, - EPA = 10, - EWB = 11, - ETRACK = 12, - EAUG = 13, - EMODPR = 14, - EMODT = 15, -}; - -enum sgx_return_code { - SGX_EPC_PAGE_CONFLICT = 7, - SGX_NOT_TRACKED = 11, - SGX_CHILD_PRESENT = 13, - SGX_INVALID_EINITTOKEN = 16, - SGX_PAGE_NOT_MODIFIABLE = 20, - SGX_UNMASKED_EVENT = 128, -}; - -enum sgx_attribute { - SGX_ATTR_INIT = 1, - SGX_ATTR_DEBUG = 2, - SGX_ATTR_MODE64BIT = 4, - SGX_ATTR_PROVISIONKEY = 16, - SGX_ATTR_EINITTOKENKEY = 32, - SGX_ATTR_KSS = 128, - SGX_ATTR_ASYNC_EXIT_NOTIFY = 1024, -}; - -struct sgx_secs { - u64 size; - u64 base; - u32 ssa_frame_size; - u32 miscselect; - u8 reserved1[24]; - u64 attributes; - u64 xfrm; - u32 mrenclave[8]; - u8 reserved2[32]; - u32 mrsigner[8]; - u8 reserved3[32]; - u32 config_id[16]; - u16 isv_prod_id; - u16 isv_svn; - u16 config_svn; - u8 reserved4[3834]; -}; - -struct sgx_pageinfo { - u64 addr; - u64 contents; - u64 metadata; - u64 secs; -}; - -enum sgx_page_type { - SGX_PAGE_TYPE_SECS = 0, - SGX_PAGE_TYPE_TCS = 1, - SGX_PAGE_TYPE_REG = 2, - SGX_PAGE_TYPE_VA = 3, - SGX_PAGE_TYPE_TRIM = 4, -}; - -enum sgx_secinfo_flags { - SGX_SECINFO_R = 1, - SGX_SECINFO_W = 2, - SGX_SECINFO_X = 4, - SGX_SECINFO_SECS = 0, - SGX_SECINFO_TCS = 256, - SGX_SECINFO_REG = 512, - SGX_SECINFO_VA = 768, - SGX_SECINFO_TRIM = 1024, -}; - -struct sgx_secinfo { - u64 flags; - u8 reserved[56]; -}; - -struct sgx_sigstruct_header { - u64 header1[2]; - u32 vendor; - u32 date; - u64 header2[2]; - u32 swdefined; - u8 reserved1[84]; -}; - -struct sgx_sigstruct_body { - u32 miscselect; - u32 misc_mask; - u8 reserved2[20]; - u64 attributes; - u64 xfrm; - u64 attributes_mask; - u64 xfrm_mask; - u8 mrenclave[32]; - u8 reserved3[32]; - u16 isvprodid; - u16 isvsvn; -} __attribute__((packed)); - -struct sgx_sigstruct { - struct sgx_sigstruct_header header; - u8 modulus[384]; - u32 exponent; - u8 signature[384]; - struct sgx_sigstruct_body body; - u8 reserved4[12]; - u8 q1[384]; - u8 q2[384]; -}; - -struct mempolicy { - atomic_t refcnt; - short unsigned int mode; - short unsigned int flags; - nodemask_t nodes; - int home_node; - union { - nodemask_t cpuset_mems_allowed; - nodemask_t user_nodemask; - } w; -}; - -enum sgx_page_flags { - SGX_PAGE_MEASURE = 1, -}; - -struct sgx_enclave_create { - __u64 src; -}; - -struct sgx_enclave_add_pages { - __u64 src; - __u64 offset; - __u64 length; - __u64 secinfo; - __u64 flags; - __u64 count; -}; - -struct sgx_enclave_init { - __u64 sigstruct; -}; - -struct sgx_enclave_provision { - __u64 fd; -}; - -struct sgx_enclave_restrict_permissions { - __u64 offset; - __u64 length; - __u64 permissions; - __u64 result; - __u64 count; -}; - -struct sgx_enclave_modify_types { - __u64 offset; - __u64 length; - __u64 page_type; - __u64 result; - __u64 count; -}; - -struct sgx_enclave_remove_pages { - __u64 offset; - __u64 length; - __u64 count; -}; - -struct sgx_encl_page; - -struct sgx_epc_page { - unsigned int section; - u16 flags; - u16 poison; - struct sgx_encl_page *owner; - struct list_head list; -}; - -struct sgx_encl; - -struct sgx_va_page; - -struct sgx_encl_page { - long unsigned int desc; - long unsigned int vm_max_prot_bits: 8; - enum sgx_page_type type: 16; - struct sgx_epc_page *epc_page; - struct sgx_encl *encl; - struct sgx_va_page *va_page; -}; - -struct sgx_numa_node { - struct list_head free_page_list; - struct list_head sgx_poison_page_list; - long unsigned int size; - spinlock_t lock; -}; - -struct sgx_epc_section { - long unsigned int phys_addr; - void *virt_addr; - struct sgx_epc_page *pages; - struct sgx_numa_node *node; -}; - -struct sgx_encl { - long unsigned int base; - long unsigned int size; - long unsigned int flags; - unsigned int page_cnt; - unsigned int secs_child_cnt; - struct mutex lock; - struct xarray page_array; - struct sgx_encl_page secs; - long unsigned int attributes; - long unsigned int attributes_mask; - cpumask_t cpumask; - struct file *backing; - struct kref refcount; - struct list_head va_pages; - long unsigned int mm_list_version; - struct list_head mm_list; - spinlock_t mm_lock; - struct srcu_struct srcu; -}; - -struct sgx_va_page { - struct sgx_epc_page *epc_page; - long unsigned int slots[8]; - struct list_head list; -}; - -enum sgx_encl_flags { - SGX_ENCL_IOCTL = 1, - SGX_ENCL_DEBUG = 2, - SGX_ENCL_CREATED = 4, - SGX_ENCL_INITIALIZED = 8, -}; - -struct hypervisor_x86 { - const char *name; - uint32_t (*detect)(void); - enum x86_hypervisor_type type; - struct x86_hyper_init init; - struct x86_hyper_runtime runtime; - bool ignore_nopv; -}; - -struct pv_info { - const char *name; -}; - -union hv_hypervisor_version_info { - struct { - u32 build_number; - u32 minor_version: 16; - u32 major_version: 16; - u32 service_pack; - u32 service_number: 24; - u32 service_branch: 8; - }; - struct { - u32 eax; - u32 ebx; - u32 ecx; - u32 edx; - }; -}; - -struct machine_ops { - void (*restart)(char *); - void (*halt)(void); - void (*power_off)(void); - void (*shutdown)(void); - void (*crash_shutdown)(struct pt_regs *); - void (*emergency_restart)(void); -}; - -struct acpi_hest_header { - u16 type; - u16 source_id; -}; - -struct acpi_hest_ia_error_bank { - u8 bank_number; - u8 clear_status_on_init; - u8 status_format; - u8 reserved; - u32 control_register; - u64 control_data; - u32 status_register; - u32 address_register; - u32 misc_register; -} __attribute__((packed)); - -struct acpi_hest_notify { - u8 type; - u8 length; - u16 config_write_enable; - u32 poll_interval; - u32 vector; - u32 polling_threshold_value; - u32 polling_threshold_window; - u32 error_threshold_value; - u32 error_threshold_window; -}; - -struct acpi_hest_ia_corrected { - struct acpi_hest_header header; - u16 reserved1; - u8 flags; - u8 enabled; - u32 records_to_preallocate; - u32 max_sections_per_record; - struct acpi_hest_notify notify; - u8 num_hardware_banks; - u8 reserved2[3]; -}; - -struct cper_ia_proc_ctx { - u16 reg_ctx_type; - u16 reg_arr_size; - u32 msr_addr; - u64 mm_reg_addr; -}; - -struct cper_sec_mem_err { - u64 validation_bits; - u64 error_status; - u64 physical_addr; - u64 physical_addr_mask; - u16 node; - u16 card; - u16 module; - u16 bank; - u16 device; - u16 row; - u16 column; - u16 bit_pos; - u64 requestor_id; - u64 responder_id; - u64 target_id; - u8 error_type; - u8 extended; - u16 rank; - u16 mem_array_handle; - u16 mem_dev_handle; -}; - -enum x86_topology_cpu_type { - TOPO_CPU_TYPE_PERFORMANCE = 0, - TOPO_CPU_TYPE_EFFICIENCY = 1, - TOPO_CPU_TYPE_UNKNOWN = 2, -}; - -struct cpc_reg { - u8 descriptor; - u16 length; - u8 space_id; - u8 bit_width; - u8 bit_offset; - u8 access_width; - u64 address; -} __attribute__((packed)); - -struct cppc_perf_caps { - u32 guaranteed_perf; - u32 highest_perf; - u32 nominal_perf; - u32 lowest_perf; - u32 lowest_nonlinear_perf; - u32 lowest_freq; - u32 nominal_freq; - u32 energy_perf; - bool auto_sel; -}; - -enum amd_pref_core { - AMD_PREF_CORE_UNKNOWN = 0, - AMD_PREF_CORE_SUPPORTED = 1, - AMD_PREF_CORE_UNSUPPORTED = 2, -}; - -struct acpi_subtable_header { - u8 type; - u8 length; -}; - -struct acpi_cdat_header { - u8 type; - u8 reserved; - u16 length; -}; - -struct acpi_cedt_header { - u8 type; - u8 reserved; - u16 length; -}; - -struct acpi_hmat_structure { - u16 type; - u16 reserved; - u32 length; -}; - -struct acpi_madt_multiproc_wakeup { - struct acpi_subtable_header header; - u16 version; - u32 reserved; - u64 mailbox_address; - u64 reset_vector; -}; - -enum acpi_madt_multiproc_wakeup_version { - ACPI_MADT_MP_WAKEUP_VERSION_NONE = 0, - ACPI_MADT_MP_WAKEUP_VERSION_V1 = 1, - ACPI_MADT_MP_WAKEUP_VERSION_RESERVED = 2, -}; - -struct acpi_madt_multiproc_wakeup_mailbox { - u16 command; - u16 reserved; - u32 apic_id; - u64 wakeup_vector; - u8 reserved_os[2032]; - u8 reserved_firmware[2048]; -}; - -struct acpi_prmt_module_header { - u16 revision; - u16 length; -}; - -union acpi_subtable_headers { - struct acpi_subtable_header common; - struct acpi_hmat_structure hmat; - struct acpi_prmt_module_header prmt; - struct acpi_cedt_header cedt; - struct acpi_cdat_header cdat; -}; - -struct x86_mapping_info { - void * (*alloc_pgt_page)(void *); - void (*free_pgt_page)(void *, void *); - void *context; - long unsigned int page_flag; - long unsigned int offset; - bool direct_gbpages; - long unsigned int kernpg_flag; -}; - -enum reboot_mode { - REBOOT_UNDEFINED = -1, - REBOOT_COLD = 0, - REBOOT_WARM = 1, - REBOOT_HARD = 2, - REBOOT_SOFT = 3, - REBOOT_GPIO = 4, -}; - -enum reboot_type { - BOOT_TRIPLE = 116, - BOOT_KBD = 107, - BOOT_BIOS = 98, - BOOT_ACPI = 97, - BOOT_EFI = 101, - BOOT_CF9_FORCE = 112, - BOOT_CF9_SAFE = 113, -}; - -enum dmi_field { - DMI_NONE = 0, - DMI_BIOS_VENDOR = 1, - DMI_BIOS_VERSION = 2, - DMI_BIOS_DATE = 3, - DMI_BIOS_RELEASE = 4, - DMI_EC_FIRMWARE_RELEASE = 5, - DMI_SYS_VENDOR = 6, - DMI_PRODUCT_NAME = 7, - DMI_PRODUCT_VERSION = 8, - DMI_PRODUCT_SERIAL = 9, - DMI_PRODUCT_UUID = 10, - DMI_PRODUCT_SKU = 11, - DMI_PRODUCT_FAMILY = 12, - DMI_BOARD_VENDOR = 13, - DMI_BOARD_NAME = 14, - DMI_BOARD_VERSION = 15, - DMI_BOARD_SERIAL = 16, - DMI_BOARD_ASSET_TAG = 17, - DMI_CHASSIS_VENDOR = 18, - DMI_CHASSIS_TYPE = 19, - DMI_CHASSIS_VERSION = 20, - DMI_CHASSIS_SERIAL = 21, - DMI_CHASSIS_ASSET_TAG = 22, - DMI_STRING_MAX = 23, - DMI_OEM_STRING = 24, -}; - -struct dmi_strmatch { - unsigned char slot: 7; - unsigned char exact_match: 1; - char substr[79]; -}; - -struct dmi_system_id { - int (*callback)(const struct dmi_system_id *); - const char *ident; - struct dmi_strmatch matches[4]; - void *driver_data; -}; - -typedef void cpu_emergency_virt_cb(void); - -typedef void (*nmi_shootdown_cb)(int, struct pt_regs *); - -enum { - IRQ_SET_MASK_OK = 0, - IRQ_SET_MASK_OK_NOCOPY = 1, - IRQ_SET_MASK_OK_DONE = 2, -}; - -enum { - IRQD_TRIGGER_MASK = 15, - IRQD_SETAFFINITY_PENDING = 256, - IRQD_ACTIVATED = 512, - IRQD_NO_BALANCING = 1024, - IRQD_PER_CPU = 2048, - IRQD_AFFINITY_SET = 4096, - IRQD_LEVEL = 8192, - IRQD_WAKEUP_STATE = 16384, - IRQD_IRQ_DISABLED = 65536, - IRQD_IRQ_MASKED = 131072, - IRQD_IRQ_INPROGRESS = 262144, - IRQD_WAKEUP_ARMED = 524288, - IRQD_FORWARDED_TO_VCPU = 1048576, - IRQD_AFFINITY_MANAGED = 2097152, - IRQD_IRQ_STARTED = 4194304, - IRQD_MANAGED_SHUTDOWN = 8388608, - IRQD_SINGLE_TARGET = 16777216, - IRQD_DEFAULT_TRIGGER_SET = 33554432, - IRQD_CAN_RESERVE = 67108864, - IRQD_HANDLE_ENFORCE_IRQCTX = 134217728, - IRQD_AFFINITY_ON_ACTIVATE = 268435456, - IRQD_IRQ_ENABLED_ON_SUSPEND = 536870912, - IRQD_RESEND_WHEN_IN_PROGRESS = 1073741824, -}; - -enum { - IRQCHIP_SET_TYPE_MASKED = 1, - IRQCHIP_EOI_IF_HANDLED = 2, - IRQCHIP_MASK_ON_SUSPEND = 4, - IRQCHIP_ONOFFLINE_ENABLED = 8, - IRQCHIP_SKIP_SET_WAKE = 16, - IRQCHIP_ONESHOT_SAFE = 32, - IRQCHIP_EOI_THREADED = 64, - IRQCHIP_SUPPORTS_LEVEL_MSI = 128, - IRQCHIP_SUPPORTS_NMI = 256, - IRQCHIP_ENABLE_WAKEUP_ON_SUSPEND = 512, - IRQCHIP_AFFINITY_PRE_STARTUP = 1024, - IRQCHIP_IMMUTABLE = 2048, - IRQCHIP_MOVE_DEFERRED = 4096, -}; - -struct irq_cfg { - unsigned int dest_apicid; - unsigned int vector; -}; - -enum { - IRQ_DOMAIN_FLAG_HIERARCHY = 1, - IRQ_DOMAIN_NAME_ALLOCATED = 2, - IRQ_DOMAIN_FLAG_IPI_PER_CPU = 4, - IRQ_DOMAIN_FLAG_IPI_SINGLE = 8, - IRQ_DOMAIN_FLAG_MSI = 16, - IRQ_DOMAIN_FLAG_ISOLATED_MSI = 32, - IRQ_DOMAIN_FLAG_NO_MAP = 64, - IRQ_DOMAIN_FLAG_MSI_PARENT = 256, - IRQ_DOMAIN_FLAG_MSI_DEVICE = 512, - IRQ_DOMAIN_FLAG_DESTROY_GC = 1024, - IRQ_DOMAIN_FLAG_MSI_IMMUTABLE = 2048, - IRQ_DOMAIN_FLAG_FWNODE_PARENT = 4096, - IRQ_DOMAIN_FLAG_NONCORE = 65536, -}; - -enum { - IRQCHIP_FWNODE_REAL = 0, - IRQCHIP_FWNODE_NAMED = 1, - IRQCHIP_FWNODE_NAMED_ID = 2, -}; - -enum { - MSI_FLAG_USE_DEF_DOM_OPS = 1, - MSI_FLAG_USE_DEF_CHIP_OPS = 2, - MSI_FLAG_ACTIVATE_EARLY = 4, - MSI_FLAG_MUST_REACTIVATE = 8, - MSI_FLAG_DEV_SYSFS = 16, - MSI_FLAG_ALLOC_SIMPLE_MSI_DESCS = 32, - MSI_FLAG_FREE_MSI_DESCS = 64, - MSI_FLAG_USE_DEV_FWNODE = 128, - MSI_FLAG_PARENT_PM_DEV = 256, - MSI_FLAG_PCI_MSI_MASK_PARENT = 512, - MSI_FLAG_PCI_MSI_STARTUP_PARENT = 1024, - MSI_GENERIC_FLAGS_MASK = 65535, - MSI_DOMAIN_FLAGS_MASK = 4294901760, - MSI_FLAG_MULTI_PCI_MSI = 65536, - MSI_FLAG_PCI_MSIX = 131072, - MSI_FLAG_LEVEL_CAPABLE = 262144, - MSI_FLAG_MSIX_CONTIGUOUS = 524288, - MSI_FLAG_PCI_MSIX_ALLOC_DYN = 1048576, - MSI_FLAG_NO_AFFINITY = 2097152, - MSI_FLAG_NO_MASK = 4194304, -}; - -struct objpool_slot { - uint32_t head; - uint32_t tail; - uint32_t last; - uint32_t mask; - void *entries[0]; -}; - -struct objpool_head; - -typedef int (*objpool_fini_cb)(struct objpool_head *, void *); - -struct objpool_head { - int obj_size; - int nr_objs; - int nr_possible_cpus; - int capacity; - gfp_t gfp; - refcount_t ref; - long unsigned int flags; - struct objpool_slot **cpu_slots; - objpool_fini_cb release; - void *context; -}; - -struct rethook; - -struct rethook_node { - struct callback_head rcu; - struct llist_node llist; - struct rethook *rethook; - long unsigned int ret_addr; - long unsigned int frame; -}; - -struct rethook { - void *data; - void (*handler)(struct rethook_node *, void *, long unsigned int, struct pt_regs *); - struct objpool_head pool; - struct callback_head rcu; -}; - -enum { - IORES_DESC_NONE = 0, - IORES_DESC_CRASH_KERNEL = 1, - IORES_DESC_ACPI_TABLES = 2, - IORES_DESC_ACPI_NV_STORAGE = 3, - IORES_DESC_PERSISTENT_MEMORY = 4, - IORES_DESC_PERSISTENT_MEMORY_LEGACY = 5, - IORES_DESC_DEVICE_PRIVATE_MEMORY = 6, - IORES_DESC_RESERVED = 7, - IORES_DESC_SOFT_RESERVED = 8, - IORES_DESC_CXL = 9, -}; - -struct kimage_arch { - pgd_t *pgd; - p4d_t *p4d; - pud_t *pud; - pmd_t *pmd; - pte_t *pte; -}; - -struct crash_mem { - unsigned int max_nr_ranges; - unsigned int nr_ranges; - struct range ranges[0]; -}; - -typedef long unsigned int kimage_entry_t; - -struct kexec_segment { - union { - void *buf; - void *kbuf; - }; - size_t bufsz; - long unsigned int mem; - size_t memsz; -}; - -struct purgatory_info { - const Elf64_Ehdr *ehdr; - Elf64_Shdr *sechdrs; - void *purgatory_buf; -}; - -typedef int kexec_probe_t(const char *, long unsigned int); - -struct kimage; - -typedef void *kexec_load_t(struct kimage *, char *, long unsigned int, char *, long unsigned int, char *, long unsigned int); - -struct kexec_file_ops; - -struct kimage { - kimage_entry_t head; - kimage_entry_t *entry; - kimage_entry_t *last_entry; - long unsigned int start; - struct page *control_code_page; - struct page *swap_page; - void *vmcoreinfo_data_copy; - long unsigned int nr_segments; - struct kexec_segment segment[16]; - struct page *segment_cma[16]; - struct list_head control_pages; - struct list_head dest_pages; - struct list_head unusable_pages; - long unsigned int control_page; - unsigned int type: 1; - unsigned int preserve_context: 1; - unsigned int file_mode: 1; - unsigned int hotplug_support: 1; - unsigned int no_cma: 1; - struct kimage_arch arch; - void *kernel_buf; - long unsigned int kernel_buf_len; - void *initrd_buf; - long unsigned int initrd_buf_len; - char *cmdline_buf; - long unsigned int cmdline_buf_len; - const struct kexec_file_ops *fops; - void *image_loader_data; - struct purgatory_info purgatory_info; - int hp_action; - int elfcorehdr_index; - bool elfcorehdr_updated; - void *ima_buffer; - phys_addr_t ima_buffer_addr; - size_t ima_buffer_size; - long unsigned int ima_segment_index; - bool is_ima_segment_index_set; - struct { - struct kexec_segment *scratch; - phys_addr_t fdt; - } kho; - void *elf_headers; - long unsigned int elf_headers_sz; - long unsigned int elf_load_addr; - long unsigned int dm_crypt_keys_addr; - long unsigned int dm_crypt_keys_sz; -}; - -typedef int kexec_cleanup_t(void *); - -typedef int kexec_verify_sig_t(const char *, long unsigned int); - -struct kexec_file_ops { - kexec_probe_t *probe; - kexec_load_t *load; - kexec_cleanup_t *cleanup; - kexec_verify_sig_t *verify_sig; -}; - -struct kexec_buf { - struct kimage *image; - void *buffer; - long unsigned int bufsz; - long unsigned int mem; - long unsigned int memsz; - long unsigned int buf_align; - long unsigned int buf_min; - long unsigned int buf_max; - struct page *cma; - bool top_down; - bool random; -}; - -struct crash_memmap_data { - struct boot_params *params; - unsigned int type; -}; - -struct die_args { - struct pt_regs *regs; - const char *str; - long int err; - int trapnr; - int signr; -}; - -enum regnames { - GDB_AX = 0, - GDB_BX = 1, - GDB_CX = 2, - GDB_DX = 3, - GDB_SI = 4, - GDB_DI = 5, - GDB_BP = 6, - GDB_SP = 7, - GDB_R8 = 8, - GDB_R9 = 9, - GDB_R10 = 10, - GDB_R11 = 11, - GDB_R12 = 12, - GDB_R13 = 13, - GDB_R14 = 14, - GDB_R15 = 15, - GDB_PC = 16, - GDB_PS = 17, - GDB_CS = 18, - GDB_SS = 19, - GDB_DS = 20, - GDB_ES = 21, - GDB_FS = 22, - GDB_GS = 23, -}; - -enum kgdb_bpstate { - BP_UNDEFINED = 0, - BP_REMOVED = 1, - BP_SET = 2, - BP_ACTIVE = 3, -}; - -struct kgdb_bkpt { - long unsigned int bpt_addr; - unsigned char saved_instr[1]; - enum kgdb_bptype type; - enum kgdb_bpstate state; -}; - -struct dbg_reg_def_t { - char *name; - int size; - int offset; -}; - -struct inactive_task_frame { - long unsigned int r15; - long unsigned int r14; - long unsigned int r13; - long unsigned int r12; - long unsigned int bx; - long unsigned int bp; - long unsigned int ret_addr; -}; - -enum { - HW_BREAKPOINT_LEN_1 = 1, - HW_BREAKPOINT_LEN_2 = 2, - HW_BREAKPOINT_LEN_3 = 3, - HW_BREAKPOINT_LEN_4 = 4, - HW_BREAKPOINT_LEN_5 = 5, - HW_BREAKPOINT_LEN_6 = 6, - HW_BREAKPOINT_LEN_7 = 7, - HW_BREAKPOINT_LEN_8 = 8, -}; - -enum { - HW_BREAKPOINT_EMPTY = 0, - HW_BREAKPOINT_R = 1, - HW_BREAKPOINT_W = 2, - HW_BREAKPOINT_RW = 3, - HW_BREAKPOINT_X = 4, - HW_BREAKPOINT_INVALID = 7, -}; - -struct hw_breakpoint { - unsigned int enabled; - long unsigned int addr; - int len; - int type; - struct perf_event **pev; -}; - -struct swait_queue { - struct task_struct *task; - struct list_head task_list; -}; - -struct kvm_steal_time { - __u64 steal; - __u32 version; - __u32 flags; - __u8 preempted; - __u8 u8_pad[3]; - __u32 pad[11]; -}; - -struct kvm_vcpu_pv_apf_data { - __u32 flags; - __u32 token; - __u8 pad[56]; -}; - -struct kvm_task_sleep_node { - struct hlist_node link; - struct swait_queue_head wq; - u32 token; - int cpu; -}; - -struct kvm_task_sleep_head { - raw_spinlock_t lock; - struct hlist_head list; -}; - -struct __va_list_tag { - unsigned int gp_offset; - unsigned int fp_offset; - void *overflow_arg_area; - void *reg_save_area; -}; - -typedef __builtin_va_list va_list; - -struct va_format { - const char *fmt; - va_list *va; -}; - -struct ksignal { - struct k_sigaction ka; - kernel_siginfo_t info; - int sig; -}; - -enum page_cache_mode { - _PAGE_CACHE_MODE_WB = 0, - _PAGE_CACHE_MODE_WC = 1, - _PAGE_CACHE_MODE_UC_MINUS = 2, - _PAGE_CACHE_MODE_UC = 3, - _PAGE_CACHE_MODE_WT = 4, - _PAGE_CACHE_MODE_WP = 5, - _PAGE_CACHE_MODE_NUM = 8, -}; - -struct mem_section_usage { - struct callback_head rcu; - long unsigned int subsection_map[1]; - long unsigned int pageblock_flags[0]; -}; - -struct mem_section { - long unsigned int section_mem_map; - struct mem_section_usage *usage; -}; - -enum { - SECTION_MARKED_PRESENT_BIT = 0, - SECTION_HAS_MEM_MAP_BIT = 1, - SECTION_IS_ONLINE_BIT = 2, - SECTION_IS_EARLY_BIT = 3, - SECTION_TAINT_ZONE_DEVICE_BIT = 4, - SECTION_IS_VMEMMAP_PREINIT_BIT = 5, - SECTION_MAP_LAST_BIT = 6, -}; - -enum { - IORES_MAP_SYSTEM_RAM = 1, - IORES_MAP_ENCRYPTED = 2, -}; - -enum { - REGION_INTERSECTS = 0, - REGION_DISJOINT = 1, - REGION_MIXED = 2, -}; - -struct setup_data { - __u64 next; - __u32 type; - __u32 len; - __u8 data[0]; -}; - -struct setup_indirect { - __u32 type; - __u32 reserved; - __u64 len; - __u64 addr; -}; - -struct ioremap_desc { - unsigned int flags; -}; - -struct ptdesc { - long unsigned int __page_flags; - union { - struct callback_head pt_rcu_head; - struct list_head pt_list; - struct { - long unsigned int _pt_pad_1; - pgtable_t pmd_huge_pte; - }; - }; - long unsigned int __page_mapping; - union { - long unsigned int pt_index; - struct mm_struct *pt_mm; - atomic_t pt_frag_refcount; - atomic_t pt_share_count; - }; - union { - long unsigned int _pt_pad_2; - spinlock_t ptl; - }; - unsigned int __page_type; - atomic_t __page_refcount; - long unsigned int pt_memcg_data; -}; - -struct encoded_page; - -struct mmu_table_batch { - struct callback_head rcu; - unsigned int nr; - void *tables[0]; -}; - -struct mmu_gather_batch { - struct mmu_gather_batch *next; - unsigned int nr; - unsigned int max; - struct encoded_page *encoded_pages[0]; -}; - -struct mmu_gather { - struct mm_struct *mm; - struct mmu_table_batch *batch; - long unsigned int start; - long unsigned int end; - unsigned int fullmm: 1; - unsigned int need_flush_all: 1; - unsigned int freed_tables: 1; - unsigned int delayed_rmap: 1; - unsigned int cleared_ptes: 1; - unsigned int cleared_pmds: 1; - unsigned int cleared_puds: 1; - unsigned int cleared_p4ds: 1; - unsigned int vma_exec: 1; - unsigned int vma_huge: 1; - unsigned int vma_pfn: 1; - unsigned int batch_count; - struct mmu_gather_batch *active; - struct mmu_gather_batch local; - struct page *__pages[8]; -}; - -struct rb_augment_callbacks { - void (*propagate)(struct rb_node *, struct rb_node *); - void (*copy)(struct rb_node *, struct rb_node *); - void (*rotate)(struct rb_node *, struct rb_node *); -}; - -struct memtype { - u64 start; - u64 end; - u64 subtree_max_end; - enum page_cache_mode type; - struct rb_node rb; -}; - -enum reason_type { - NOT_ME = 0, - NOTHING = 1, - REG_READ = 2, - REG_WRITE = 3, - IMM_WRITE = 4, - OTHERS = 5, -}; - -struct prefix_bits { - unsigned int shorted: 1; - unsigned int enlarged: 1; - unsigned int rexr: 1; - unsigned int rex: 1; -}; - -enum { - arg_AL = 0, - arg_CL = 1, - arg_DL = 2, - arg_BL = 3, - arg_AH = 4, - arg_CH = 5, - arg_DH = 6, - arg_BH = 7, - arg_AX = 0, - arg_CX = 1, - arg_DX = 2, - arg_BX = 3, - arg_SP = 4, - arg_BP = 5, - arg_SI = 6, - arg_DI = 7, - arg_R8 = 8, - arg_R9 = 9, - arg_R10 = 10, - arg_R11 = 11, - arg_R12 = 12, - arg_R13 = 13, - arg_R14 = 14, - arg_R15 = 15, -}; - -struct kmmio_probe; - -typedef void (*kmmio_pre_handler_t)(struct kmmio_probe *, struct pt_regs *, long unsigned int); - -typedef void (*kmmio_post_handler_t)(struct kmmio_probe *, long unsigned int, struct pt_regs *); - -struct kmmio_probe { - struct list_head list; - long unsigned int addr; - long unsigned int len; - kmmio_pre_handler_t pre_handler; - kmmio_post_handler_t post_handler; - void *private; -}; - -enum mm_io_opcode { - MMIO_READ = 1, - MMIO_WRITE = 2, - MMIO_PROBE = 3, - MMIO_UNPROBE = 4, - MMIO_UNKNOWN_OP = 5, -}; - -struct mmiotrace_rw { - resource_size_t phys; - long unsigned int value; - long unsigned int pc; - int map_id; - unsigned char opcode; - unsigned char width; -}; - -struct mmiotrace_map { - resource_size_t phys; - long unsigned int virt; - long unsigned int len; - int map_id; - unsigned char opcode; -}; - -struct trap_reason { - long unsigned int addr; - long unsigned int ip; - enum reason_type type; - int active_traces; -}; - -struct remap_trace { - struct list_head list; - struct kmmio_probe probe; - resource_size_t phys; - long unsigned int id; -}; - -struct io_tlb_area; - -struct io_tlb_slot; - -struct io_tlb_pool { - phys_addr_t start; - phys_addr_t end; - void *vaddr; - long unsigned int nslabs; - bool late_alloc; - unsigned int nareas; - unsigned int area_nslabs; - struct io_tlb_area *areas; - struct io_tlb_slot *slots; - struct list_head node; - struct callback_head rcu; - bool transient; -}; - -struct io_tlb_mem { - struct io_tlb_pool defpool; - long unsigned int nslabs; - struct dentry *debugfs; - bool force_bounce; - bool for_alloc; - bool can_grow; - u64 phys_limit; - spinlock_t lock; - struct list_head pools; - struct work_struct dyn_alloc; - atomic_long_t total_used; - atomic_long_t used_hiwater; - atomic_long_t transient_nslabs; -}; - -struct scatterlist { - long unsigned int page_link; - unsigned int offset; - unsigned int length; - dma_addr_t dma_address; - unsigned int dma_length; - unsigned int dma_flags; -}; - -struct sg_table { - struct scatterlist *sgl; - unsigned int nents; - unsigned int orig_nents; -}; - -typedef struct { - efi_guid_t guid; - u32 table; -} efi_config_table_32_t; - -typedef union { - struct { - efi_guid_t guid; - void *table; - }; - efi_config_table_32_t mixed_mode; -} efi_config_table_t; - -typedef struct { - efi_guid_t guid; - long unsigned int *ptr; - const char name[16]; -} efi_config_table_type_t; - -typedef struct { - efi_table_hdr_t hdr; - u64 fw_vendor; - u32 fw_revision; - u32 __pad1; - u64 con_in_handle; - u64 con_in; - u64 con_out_handle; - u64 con_out; - u64 stderr_handle; - u64 stderr; - u64 runtime; - u64 boottime; - u32 nr_tables; - u32 __pad2; - u64 tables; -} efi_system_table_64_t; - -typedef struct { - efi_table_hdr_t hdr; - u32 fw_vendor; - u32 fw_revision; - u32 con_in_handle; - u32 con_in; - u32 con_out_handle; - u32 con_out; - u32 stderr_handle; - u32 stderr; - u32 runtime; - u32 boottime; - u32 nr_tables; - u32 tables; -} efi_system_table_32_t; - -struct efi_memory_map_data { - phys_addr_t phys_map; - long unsigned int size; - long unsigned int desc_version; - long unsigned int desc_size; - long unsigned int flags; -}; - -enum efi_secureboot_mode { - efi_secureboot_mode_unset = 0, - efi_secureboot_mode_unknown = 1, - efi_secureboot_mode_disabled = 2, - efi_secureboot_mode_enabled = 3, -}; - -struct efi_setup_data { - u64 fw_vendor; - u64 __unused; - u64 tables; - u64 smbios; - u64 reserved[8]; -}; - -struct semaphore { - raw_spinlock_t lock; - unsigned int count; - struct list_head wait_list; - long unsigned int last_holder; -}; - -enum uv_bios_cmd { - UV_BIOS_COMMON = 0, - UV_BIOS_GET_SN_INFO = 1, - UV_BIOS_FREQ_BASE = 2, - UV_BIOS_WATCHLIST_ALLOC = 3, - UV_BIOS_WATCHLIST_FREE = 4, - UV_BIOS_MEMPROTECT = 5, - UV_BIOS_GET_PARTITION_ADDR = 6, - UV_BIOS_SET_LEGACY_VGA_TARGET = 7, -}; - -enum { - BIOS_STATUS_MORE_PASSES = 1, - BIOS_STATUS_SUCCESS = 0, - BIOS_STATUS_UNIMPLEMENTED = -38, - BIOS_STATUS_EINVAL = -22, - BIOS_STATUS_UNAVAIL = -16, - BIOS_STATUS_ABORT = -4, -}; - -struct uv_systab { - char signature[4]; - u32 revision; - u64 (*function)(enum uv_bios_cmd, ...); - u32 size; - struct { - u32 type: 8; - u32 offset: 24; - } entry[1]; -}; - -union partition_info_u { - u64 val; - struct { - u64 hub_version: 8; - u64 partition_id: 16; - u64 coherence_id: 16; - u64 region_size: 24; - }; -}; - -enum uv_memprotect { - UV_MEMPROT_RESTRICT_ACCESS = 0, - UV_MEMPROT_ALLOW_AMO = 1, - UV_MEMPROT_ALLOW_RW = 2, -}; - -struct irq_domain_chip_generic_info { - const char *name; - irq_flow_handler_t handler; - unsigned int irqs_per_chip; - unsigned int num_ct; - unsigned int irq_flags_to_clear; - unsigned int irq_flags_to_set; - enum irq_gc_flags gc_flags; - int (*init)(struct irq_chip_generic *); - void (*exit)(struct irq_chip_generic *); -}; - -struct irq_domain_info { - struct fwnode_handle *fwnode; - unsigned int domain_flags; - unsigned int size; - irq_hw_number_t hwirq_max; - int direct_max; - unsigned int hwirq_base; - unsigned int virq_base; - enum irq_domain_bus_token bus_token; - const char *name_suffix; - const struct irq_domain_ops *ops; - void *host_data; - struct device *dev; - struct irq_domain *parent; - struct irq_domain_chip_generic_info *dgc_info; - int (*init)(struct irq_domain *); - void (*exit)(struct irq_domain *); -}; - -struct uv_IO_APIC_route_entry { - __u64 vector: 8; - __u64 delivery_mode: 3; - __u64 dest_mode: 1; - __u64 delivery_status: 1; - __u64 polarity: 1; - __u64 __reserved_1: 1; - __u64 trigger: 1; - __u64 mask: 1; - __u64 __reserved_2: 15; - __u64 dest: 32; -}; - -enum { - UV_AFFINITY_ALL = 0, - UV_AFFINITY_NODE = 1, - UV_AFFINITY_CPU = 2, -}; - -struct uv_gam_range_s { - u32 limit; - u16 nasid; - s8 base; - u8 reserved; -}; - -struct uv_hub_info_s { - unsigned int hub_type; - unsigned char hub_revision; - long unsigned int global_mmr_base; - long unsigned int global_mmr_shift; - long unsigned int gpa_mask; - short unsigned int *socket_to_node; - short unsigned int *socket_to_pnode; - short unsigned int *pnode_to_socket; - struct uv_gam_range_s *gr_table; - short unsigned int min_socket; - short unsigned int min_pnode; - unsigned char m_val; - unsigned char n_val; - unsigned char gr_table_len; - unsigned char apic_pnode_shift; - unsigned char gpa_shift; - unsigned char nasid_shift; - unsigned char m_shift; - unsigned char n_lshift; - unsigned int gnode_extra; - long unsigned int gnode_upper; - long unsigned int lowmem_remap_top; - long unsigned int lowmem_remap_base; - long unsigned int global_gru_base; - long unsigned int global_gru_shift; - short unsigned int pnode; - short unsigned int pnode_mask; - short unsigned int coherency_domain_number; - short unsigned int numa_blade_id; - short unsigned int nr_possible_cpus; - short unsigned int nr_online_cpus; - short int memory_nid; - short unsigned int *node_to_socket; -}; - -struct uv_cpu_info_s { - void *p_uv_hub_info; - unsigned char blade_cpu_id; - void *reserved; -}; - -struct uv_irq_2_mmr_pnode { - long unsigned int offset; - int pnode; -}; - -struct rmp_state { - u64 gpa; - u8 assigned; - u8 pagesize; - u8 immutable; - u8 rsvd; - u32 asid; -}; - -enum acpi_device_swnode_dev_props { - ACPI_DEVICE_SWNODE_DEV_ROTATION = 0, - ACPI_DEVICE_SWNODE_DEV_CLOCK_FREQUENCY = 1, - ACPI_DEVICE_SWNODE_DEV_LED_MAX_MICROAMP = 2, - ACPI_DEVICE_SWNODE_DEV_FLASH_MAX_MICROAMP = 3, - ACPI_DEVICE_SWNODE_DEV_FLASH_MAX_TIMEOUT_US = 4, - ACPI_DEVICE_SWNODE_DEV_NUM_OF = 5, - ACPI_DEVICE_SWNODE_DEV_NUM_ENTRIES = 6, -}; - -enum acpi_device_swnode_port_props { - ACPI_DEVICE_SWNODE_PORT_REG = 0, - ACPI_DEVICE_SWNODE_PORT_NUM_OF = 1, - ACPI_DEVICE_SWNODE_PORT_NUM_ENTRIES = 2, -}; - -enum acpi_device_swnode_ep_props { - ACPI_DEVICE_SWNODE_EP_REMOTE_EP = 0, - ACPI_DEVICE_SWNODE_EP_BUS_TYPE = 1, - ACPI_DEVICE_SWNODE_EP_REG = 2, - ACPI_DEVICE_SWNODE_EP_CLOCK_LANES = 3, - ACPI_DEVICE_SWNODE_EP_DATA_LANES = 4, - ACPI_DEVICE_SWNODE_EP_LANE_POLARITIES = 5, - ACPI_DEVICE_SWNODE_EP_LINK_FREQUENCIES = 6, - ACPI_DEVICE_SWNODE_EP_NUM_OF = 7, - ACPI_DEVICE_SWNODE_EP_NUM_ENTRIES = 8, -}; - -struct rmpentry { - u64 gpa; - u8 assigned: 1; - u8 rsvd1: 7; - u8 pagesize: 1; - u8 hpage_region_status: 1; - u8 rsvd2: 6; - u8 immutable: 1; - u8 rsvd3: 7; - u8 rsvd4; - u32 asid; -}; - -struct rmpentry_raw { - union { - struct { - u64 assigned: 1; - u64 pagesize: 1; - u64 immutable: 1; - u64 rsvd1: 9; - u64 gpa: 39; - u64 asid: 10; - u64 vmsa: 1; - u64 validated: 1; - u64 rsvd2: 1; - }; - u64 lo; - }; - u64 hi; -}; - -struct rmp_segment_desc { - struct rmpentry_raw *rmp_entry; - u64 max_index; - u64 size; -}; - -enum { - GATE_INTERRUPT = 14, - GATE_TRAP = 15, - GATE_CALL = 12, - GATE_TASK = 5, -}; - -struct idt_bits { - u16 ist: 3; - u16 zero: 5; - u16 type: 5; - u16 dpl: 2; - u16 p: 1; -}; - -struct idt_data { - unsigned int vector; - unsigned int segment; - struct idt_bits bits; - const void *addr; -}; - -struct gate_struct { - u16 offset_low; - u16 segment; - struct idt_bits bits; - u16 offset_middle; - u32 offset_high; - u32 reserved; -}; - -typedef struct gate_struct gate_desc; - -struct sme_populate_pgd_data { - void *pgtable_area; - pgd_t *pgd; - pmdval_t pmd_flags; - pteval_t pte_flags; - long unsigned int paddr; - long unsigned int vaddr; - long unsigned int vaddr_end; -}; - -struct cc_blob_sev_info { - u32 magic; - u16 version; - u16 reserved; - u64 secrets_phys; - u32 secrets_len; - u32 rsvd1; - u64 cpuid_phys; - u32 cpuid_len; - u32 rsvd2; -}; - -struct cc_setup_data { - struct setup_data header; - u32 cc_blob_address; -}; - -typedef void (*rcu_callback_t)(struct callback_head *); - -typedef struct { - spinlock_t *lock; -} class_spinlock_irq_t; - -enum refcount_saturation_type { - REFCOUNT_ADD_NOT_ZERO_OVF = 0, - REFCOUNT_ADD_OVF = 1, - REFCOUNT_ADD_UAF = 2, - REFCOUNT_SUB_UAF = 3, - REFCOUNT_DEC_LEAK = 4, -}; - -struct clone_args { - __u64 flags; - __u64 pidfd; - __u64 child_tid; - __u64 parent_tid; - __u64 exit_signal; - __u64 stack; - __u64 stack_size; - __u64 tls; - __u64 set_tid; - __u64 set_tid_size; - __u64 cgroup; -}; - -struct fs_struct { - int users; - seqlock_t seq; - int umask; - int in_exec; - struct path root; - struct path pwd; -}; - -struct fdtable { - unsigned int max_fds; - struct file **fd; - long unsigned int *close_on_exec; - long unsigned int *open_fds; - long unsigned int *full_fds_bits; - struct callback_head rcu; -}; - -struct files_struct { - atomic_t count; - bool resize_in_progress; - wait_queue_head_t resize_wait; - struct fdtable *fdt; - struct fdtable fdtab; - long: 64; - long: 64; - long: 64; - long: 64; - spinlock_t file_lock; - unsigned int next_fd; - long unsigned int close_on_exec_init[1]; - long unsigned int open_fds_init[1]; - long unsigned int full_fds_bits_init[1]; - struct file *fd_array[64]; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct compact_control; - -struct capture_control { - struct compact_control *cc; - struct page *page; -}; - -struct robust_list { - struct robust_list *next; -}; - -struct robust_list_head { - struct robust_list list; - long int futex_offset; - struct robust_list *list_op_pending; -}; - -struct task_delay_info { - raw_spinlock_t lock; - u64 blkio_start; - u64 blkio_delay_max; - u64 blkio_delay_min; - u64 blkio_delay; - u64 swapin_start; - u64 swapin_delay_max; - u64 swapin_delay_min; - u64 swapin_delay; - u32 blkio_count; - u32 swapin_count; - u64 freepages_start; - u64 freepages_delay_max; - u64 freepages_delay_min; - u64 freepages_delay; - u64 thrashing_start; - u64 thrashing_delay_max; - u64 thrashing_delay_min; - u64 thrashing_delay; - u64 compact_start; - u64 compact_delay_max; - u64 compact_delay_min; - u64 compact_delay; - u64 wpcopy_start; - u64 wpcopy_delay_max; - u64 wpcopy_delay_min; - u64 wpcopy_delay; - u64 irq_delay_max; - u64 irq_delay_min; - u64 irq_delay; - u32 freepages_count; - u32 thrashing_count; - u32 compact_count; - u32 wpcopy_count; - u32 irq_count; -}; - -struct user_event_mm { - struct list_head mms_link; - struct list_head enablers; - struct mm_struct *mm; - struct user_event_mm *next; - refcount_t refcnt; - refcount_t tasks; - struct rcu_work put_rwork; -}; - -enum tk_offsets { - TK_OFFS_REAL = 0, - TK_OFFS_BOOT = 1, - TK_OFFS_TAI = 2, - TK_OFFS_MAX = 3, -}; - -struct anon_vma { - struct anon_vma *root; - struct rw_semaphore rwsem; - atomic_t refcount; - long unsigned int num_children; - long unsigned int num_active_vmas; - struct anon_vma *parent; - struct rb_root_cached rb_root; -}; - -struct linux_binprm; - -struct linux_binfmt { - struct list_head lh; - struct module *module; - int (*load_binary)(struct linux_binprm *); - int (*core_dump)(struct coredump_params *); - long unsigned int min_coredump; -}; - -enum mm_cid_state { - MM_CID_UNSET = 4294967295, - MM_CID_LAZY_PUT = 2147483648, -}; - -enum _slab_flag_bits { - _SLAB_CONSISTENCY_CHECKS = 0, - _SLAB_RED_ZONE = 1, - _SLAB_POISON = 2, - _SLAB_KMALLOC = 3, - _SLAB_HWCACHE_ALIGN = 4, - _SLAB_CACHE_DMA = 5, - _SLAB_CACHE_DMA32 = 6, - _SLAB_STORE_USER = 7, - _SLAB_PANIC = 8, - _SLAB_TYPESAFE_BY_RCU = 9, - _SLAB_TRACE = 10, - _SLAB_NOLEAKTRACE = 11, - _SLAB_NO_MERGE = 12, - _SLAB_ACCOUNT = 13, - _SLAB_NO_USER_FLAGS = 14, - _SLAB_SKIP_KFENCE = 15, - _SLAB_RECLAIM_ACCOUNT = 16, - _SLAB_OBJECT_POISON = 17, - _SLAB_CMPXCHG_DOUBLE = 18, - _SLAB_NO_OBJ_EXT = 19, - _SLAB_FLAGS_LAST_BIT = 20, -}; - -struct kernel_clone_args { - u64 flags; - int *pidfd; - int *child_tid; - int *parent_tid; - const char *name; - int exit_signal; - u32 kthread: 1; - u32 io_thread: 1; - u32 user_worker: 1; - u32 no_files: 1; - long unsigned int stack; - long unsigned int stack_size; - long unsigned int tls; - pid_t *set_tid; - size_t set_tid_size; - int cgroup; - int idle; - int (*fn)(void *); - void *fn_arg; - struct cgroup *cgrp; - struct css_set *cset; - unsigned int kill_seq; -}; - -struct multiprocess_signals { - sigset_t signal; - struct hlist_node node; -}; - -struct ld_semaphore { - atomic_long_t count; - raw_spinlock_t wait_lock; - unsigned int wait_readers; - struct list_head read_wait; - struct list_head write_wait; -}; - -typedef unsigned int tcflag_t; - -typedef unsigned char cc_t; - -typedef unsigned int speed_t; - -struct ktermios { - tcflag_t c_iflag; - tcflag_t c_oflag; - tcflag_t c_cflag; - tcflag_t c_lflag; - cc_t c_line; - cc_t c_cc[19]; - speed_t c_ispeed; - speed_t c_ospeed; -}; - -struct winsize { - short unsigned int ws_row; - short unsigned int ws_col; - short unsigned int ws_xpixel; - short unsigned int ws_ypixel; -}; - -struct tty_driver; - -struct tty_port; - -struct tty_operations; - -struct tty_ldisc; - -struct tty_struct { - struct kref kref; - int index; - struct device *dev; - struct tty_driver *driver; - struct tty_port *port; - const struct tty_operations *ops; - struct tty_ldisc *ldisc; - struct ld_semaphore ldisc_sem; - struct mutex atomic_write_lock; - struct mutex legacy_mutex; - struct mutex throttle_mutex; - struct rw_semaphore termios_rwsem; - struct mutex winsize_mutex; - struct ktermios termios; - struct ktermios termios_locked; - char name[64]; - long unsigned int flags; - int count; - unsigned int receive_room; - struct winsize winsize; - struct { - spinlock_t lock; - bool stopped; - bool tco_stopped; - } flow; - struct { - struct pid *pgrp; - struct pid *session; - spinlock_t lock; - unsigned char pktstatus; - bool packet; - } ctrl; - bool hw_stopped; - bool closing; - int flow_change; - struct tty_struct *link; - struct fasync_struct *fasync; - wait_queue_head_t write_wait; - wait_queue_head_t read_wait; - struct work_struct hangup_work; - void *disc_data; - void *driver_data; - spinlock_t files_lock; - int write_cnt; - u8 *write_buf; - struct list_head tty_files; - struct work_struct SAK_work; -}; - -typedef int (*proc_visitor)(struct task_struct *, void *); - -typedef unsigned int xa_mark_t; - -enum xa_lock_type { - XA_LOCK_IRQ = 1, - XA_LOCK_BH = 2, -}; - -struct ida { - struct xarray xa; -}; - -typedef int class_get_unused_fd_t; - -struct fd_range { - unsigned int from; - unsigned int to; -}; - -struct linux_binprm { - struct vm_area_struct *vma; - long unsigned int vma_pages; - long unsigned int argmin; - struct mm_struct *mm; - long unsigned int p; - unsigned int have_execfd: 1; - unsigned int execfd_creds: 1; - unsigned int secureexec: 1; - unsigned int point_of_no_return: 1; - unsigned int comm_from_dentry: 1; - unsigned int is_check: 1; - struct file *executable; - struct file *interpreter; - struct file *file; - struct cred *cred; - int unsafe; - unsigned int per_clear; - int argc; - int envc; - const char *filename; - const char *interp; - const char *fdpath; - unsigned int interp_flags; - int execfd; - long unsigned int exec; - struct rlimit rlim_stack; - char buf[256]; -}; - -struct binfmt_misc { - struct list_head entries; - rwlock_t entries_lock; - bool enabled; -}; - -enum ucount_type { - UCOUNT_USER_NAMESPACES = 0, - UCOUNT_PID_NAMESPACES = 1, - UCOUNT_UTS_NAMESPACES = 2, - UCOUNT_IPC_NAMESPACES = 3, - UCOUNT_NET_NAMESPACES = 4, - UCOUNT_MNT_NAMESPACES = 5, - UCOUNT_CGROUP_NAMESPACES = 6, - UCOUNT_TIME_NAMESPACES = 7, - UCOUNT_INOTIFY_INSTANCES = 8, - UCOUNT_INOTIFY_WATCHES = 9, - UCOUNT_FANOTIFY_GROUPS = 10, - UCOUNT_FANOTIFY_MARKS = 11, - UCOUNT_COUNTS = 12, -}; - -enum rlimit_type { - UCOUNT_RLIMIT_NPROC = 0, - UCOUNT_RLIMIT_MSGQUEUE = 1, - UCOUNT_RLIMIT_SIGPENDING = 2, - UCOUNT_RLIMIT_MEMLOCK = 3, - UCOUNT_RLIMIT_COUNTS = 4, -}; - -enum { - FUTEX_STATE_OK = 0, - FUTEX_STATE_EXITING = 1, - FUTEX_STATE_DEAD = 2, -}; - -enum tty_driver_type { - TTY_DRIVER_TYPE_SYSTEM = 0, - TTY_DRIVER_TYPE_CONSOLE = 1, - TTY_DRIVER_TYPE_SERIAL = 2, - TTY_DRIVER_TYPE_PTY = 3, - TTY_DRIVER_TYPE_SCC = 4, - TTY_DRIVER_TYPE_SYSCONS = 5, -}; - -enum tty_driver_subtype { - SYSTEM_TYPE_TTY = 1, - SYSTEM_TYPE_CONSOLE = 2, - SYSTEM_TYPE_SYSCONS = 3, - SYSTEM_TYPE_SYSPTMX = 4, - PTY_TYPE_MASTER = 1, - PTY_TYPE_SLAVE = 2, - SERIAL_TYPE_NORMAL = 1, -}; - -struct serial_icounter_struct; - -struct serial_struct; - -struct tty_operations { - struct tty_struct * (*lookup)(struct tty_driver *, struct file *, int); - int (*install)(struct tty_driver *, struct tty_struct *); - void (*remove)(struct tty_driver *, struct tty_struct *); - int (*open)(struct tty_struct *, struct file *); - void (*close)(struct tty_struct *, struct file *); - void (*shutdown)(struct tty_struct *); - void (*cleanup)(struct tty_struct *); - ssize_t (*write)(struct tty_struct *, const u8 *, size_t); - int (*put_char)(struct tty_struct *, u8); - void (*flush_chars)(struct tty_struct *); - unsigned int (*write_room)(struct tty_struct *); - unsigned int (*chars_in_buffer)(struct tty_struct *); - int (*ioctl)(struct tty_struct *, unsigned int, long unsigned int); - long int (*compat_ioctl)(struct tty_struct *, unsigned int, long unsigned int); - void (*set_termios)(struct tty_struct *, const struct ktermios *); - void (*throttle)(struct tty_struct *); - void (*unthrottle)(struct tty_struct *); - void (*stop)(struct tty_struct *); - void (*start)(struct tty_struct *); - void (*hangup)(struct tty_struct *); - int (*break_ctl)(struct tty_struct *, int); - void (*flush_buffer)(struct tty_struct *); - int (*ldisc_ok)(struct tty_struct *, int); - void (*set_ldisc)(struct tty_struct *); - void (*wait_until_sent)(struct tty_struct *, int); - void (*send_xchar)(struct tty_struct *, u8); - int (*tiocmget)(struct tty_struct *); - int (*tiocmset)(struct tty_struct *, unsigned int, unsigned int); - int (*resize)(struct tty_struct *, struct winsize *); - int (*get_icount)(struct tty_struct *, struct serial_icounter_struct *); - int (*get_serial)(struct tty_struct *, struct serial_struct *); - int (*set_serial)(struct tty_struct *, struct serial_struct *); - void (*show_fdinfo)(struct tty_struct *, struct seq_file *); - int (*poll_init)(struct tty_driver *, int, char *); - int (*poll_get_char)(struct tty_driver *, int); - void (*poll_put_char)(struct tty_driver *, int, char); - int (*proc_show)(struct seq_file *, void *); -}; - -struct tty_driver { - struct kref kref; - struct cdev **cdevs; - struct module *owner; - const char *driver_name; - const char *name; - int name_base; - int major; - int minor_start; - unsigned int num; - enum tty_driver_type type; - enum tty_driver_subtype subtype; - struct ktermios init_termios; - long unsigned int flags; - struct proc_dir_entry *proc_entry; - struct tty_driver *other; - struct tty_struct **ttys; - struct tty_port **ports; - struct ktermios **termios; - void *driver_state; - const struct tty_operations *ops; - struct list_head tty_drivers; -}; - -struct tty_buffer { - union { - struct tty_buffer *next; - struct llist_node free; - }; - unsigned int used; - unsigned int size; - unsigned int commit; - unsigned int lookahead; - unsigned int read; - bool flags; - long: 0; - u8 data[0]; -}; - -struct tty_bufhead { - struct tty_buffer *head; - struct work_struct work; - struct mutex lock; - atomic_t priority; - struct tty_buffer sentinel; - struct llist_head free; - atomic_t mem_used; - int mem_limit; - struct tty_buffer *tail; -}; - -struct __kfifo { - unsigned int in; - unsigned int out; - unsigned int mask; - unsigned int esize; - void *data; -}; - -struct tty_port_operations; - -struct tty_port_client_operations; - -struct tty_port { - struct tty_bufhead buf; - struct tty_struct *tty; - struct tty_struct *itty; - const struct tty_port_operations *ops; - const struct tty_port_client_operations *client_ops; - spinlock_t lock; - int blocked_open; - int count; - wait_queue_head_t open_wait; - wait_queue_head_t delta_msr_wait; - long unsigned int flags; - long unsigned int iflags; - unsigned char console: 1; - struct mutex mutex; - struct mutex buf_mutex; - u8 *xmit_buf; - struct { - union { - struct __kfifo kfifo; - u8 *type; - const u8 *const_type; - char (*rectype)[0]; - u8 *ptr; - const u8 *ptr_const; - }; - u8 buf[0]; - } xmit_fifo; - unsigned int close_delay; - unsigned int closing_wait; - int drain_delay; - struct kref kref; - void *client_data; -}; - -struct tty_ldisc_ops { - char *name; - int num; - int (*open)(struct tty_struct *); - void (*close)(struct tty_struct *); - void (*flush_buffer)(struct tty_struct *); - ssize_t (*read)(struct tty_struct *, struct file *, u8 *, size_t, void **, long unsigned int); - ssize_t (*write)(struct tty_struct *, struct file *, const u8 *, size_t); - int (*ioctl)(struct tty_struct *, unsigned int, long unsigned int); - int (*compat_ioctl)(struct tty_struct *, unsigned int, long unsigned int); - void (*set_termios)(struct tty_struct *, const struct ktermios *); - __poll_t (*poll)(struct tty_struct *, struct file *, struct poll_table_struct *); - void (*hangup)(struct tty_struct *); - void (*receive_buf)(struct tty_struct *, const u8 *, const u8 *, size_t); - void (*write_wakeup)(struct tty_struct *); - void (*dcd_change)(struct tty_struct *, bool); - size_t (*receive_buf2)(struct tty_struct *, const u8 *, const u8 *, size_t); - void (*lookahead_buf)(struct tty_struct *, const u8 *, const u8 *, size_t); - struct module *owner; -}; - -struct tty_ldisc { - struct tty_ldisc_ops *ops; - struct tty_struct *tty; -}; - -struct tty_port_operations { - bool (*carrier_raised)(struct tty_port *); - void (*dtr_rts)(struct tty_port *, bool); - void (*shutdown)(struct tty_port *); - int (*activate)(struct tty_port *, struct tty_struct *); - void (*destruct)(struct tty_port *); -}; - -struct tty_port_client_operations { - size_t (*receive_buf)(struct tty_port *, const u8 *, const u8 *, size_t); - void (*lookahead_buf)(struct tty_port *, const u8 *, const u8 *, size_t); - void (*write_wakeup)(struct tty_port *); -}; - -struct compact_control { - struct list_head freepages[11]; - struct list_head migratepages; - unsigned int nr_freepages; - unsigned int nr_migratepages; - long unsigned int free_pfn; - long unsigned int migrate_pfn; - long unsigned int fast_start_pfn; - struct zone *zone; - long unsigned int total_migrate_scanned; - long unsigned int total_free_scanned; - short unsigned int fast_search_fail; - short int search_order; - const gfp_t gfp_mask; - int order; - int migratetype; - const unsigned int alloc_flags; - const int highest_zoneidx; - enum migrate_mode mode; - bool ignore_skip_hint; - bool no_set_skip_hint; - bool ignore_block_suitable; - bool direct_compaction; - bool proactive_compaction; - bool whole_zone; - bool contended; - bool finish_pageblock; - bool alloc_contig; -}; - -struct trace_event_raw_task_newtask { - struct trace_entry ent; - pid_t pid; - char comm[16]; - long unsigned int clone_flags; - short int oom_score_adj; - char __data[0]; -}; - -struct trace_event_raw_task_rename { - struct trace_entry ent; - char oldcomm[16]; - char newcomm[16]; - short int oom_score_adj; - char __data[0]; -}; - -struct trace_event_raw_task_prctl_unknown { - struct trace_entry ent; - int option; - long unsigned int arg2; - long unsigned int arg3; - long unsigned int arg4; - long unsigned int arg5; - char __data[0]; -}; - -struct trace_event_data_offsets_task_newtask {}; - -struct trace_event_data_offsets_task_rename {}; - -struct trace_event_data_offsets_task_prctl_unknown {}; - -typedef void (*btf_trace_task_newtask)(void *, struct task_struct *, long unsigned int); - -typedef void (*btf_trace_task_rename)(void *, struct task_struct *, const char *); - -typedef void (*btf_trace_task_prctl_unknown)(void *, int, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - -struct vm_stack { - struct callback_head rcu; - struct vm_struct *stack_vm_area; -}; - -enum { - IPSTATS_MIB_NUM = 0, - IPSTATS_MIB_INPKTS = 1, - IPSTATS_MIB_INOCTETS = 2, - IPSTATS_MIB_INDELIVERS = 3, - IPSTATS_MIB_NOECTPKTS = 4, - IPSTATS_MIB_ECT1PKTS = 5, - IPSTATS_MIB_ECT0PKTS = 6, - IPSTATS_MIB_CEPKTS = 7, - IPSTATS_MIB_OUTREQUESTS = 8, - IPSTATS_MIB_OUTPKTS = 9, - IPSTATS_MIB_OUTOCTETS = 10, - IPSTATS_MIB_OUTFORWDATAGRAMS = 11, - IPSTATS_MIB_INHDRERRORS = 12, - IPSTATS_MIB_INTOOBIGERRORS = 13, - IPSTATS_MIB_INNOROUTES = 14, - IPSTATS_MIB_INADDRERRORS = 15, - IPSTATS_MIB_INUNKNOWNPROTOS = 16, - IPSTATS_MIB_INTRUNCATEDPKTS = 17, - IPSTATS_MIB_INDISCARDS = 18, - IPSTATS_MIB_OUTDISCARDS = 19, - IPSTATS_MIB_OUTNOROUTES = 20, - IPSTATS_MIB_REASMTIMEOUT = 21, - IPSTATS_MIB_REASMREQDS = 22, - IPSTATS_MIB_REASMOKS = 23, - IPSTATS_MIB_REASMFAILS = 24, - IPSTATS_MIB_FRAGOKS = 25, - IPSTATS_MIB_FRAGFAILS = 26, - IPSTATS_MIB_FRAGCREATES = 27, - IPSTATS_MIB_INMCASTPKTS = 28, - IPSTATS_MIB_OUTMCASTPKTS = 29, - IPSTATS_MIB_INBCASTPKTS = 30, - IPSTATS_MIB_OUTBCASTPKTS = 31, - IPSTATS_MIB_INMCASTOCTETS = 32, - IPSTATS_MIB_OUTMCASTOCTETS = 33, - IPSTATS_MIB_INBCASTOCTETS = 34, - IPSTATS_MIB_OUTBCASTOCTETS = 35, - IPSTATS_MIB_CSUMERRORS = 36, - IPSTATS_MIB_REASM_OVERLAPS = 37, - __IPSTATS_MIB_MAX = 38, -}; - -enum { - ICMP_MIB_NUM = 0, - ICMP_MIB_INMSGS = 1, - ICMP_MIB_INERRORS = 2, - ICMP_MIB_INDESTUNREACHS = 3, - ICMP_MIB_INTIMEEXCDS = 4, - ICMP_MIB_INPARMPROBS = 5, - ICMP_MIB_INSRCQUENCHS = 6, - ICMP_MIB_INREDIRECTS = 7, - ICMP_MIB_INECHOS = 8, - ICMP_MIB_INECHOREPS = 9, - ICMP_MIB_INTIMESTAMPS = 10, - ICMP_MIB_INTIMESTAMPREPS = 11, - ICMP_MIB_INADDRMASKS = 12, - ICMP_MIB_INADDRMASKREPS = 13, - ICMP_MIB_OUTMSGS = 14, - ICMP_MIB_OUTERRORS = 15, - ICMP_MIB_OUTDESTUNREACHS = 16, - ICMP_MIB_OUTTIMEEXCDS = 17, - ICMP_MIB_OUTPARMPROBS = 18, - ICMP_MIB_OUTSRCQUENCHS = 19, - ICMP_MIB_OUTREDIRECTS = 20, - ICMP_MIB_OUTECHOS = 21, - ICMP_MIB_OUTECHOREPS = 22, - ICMP_MIB_OUTTIMESTAMPS = 23, - ICMP_MIB_OUTTIMESTAMPREPS = 24, - ICMP_MIB_OUTADDRMASKS = 25, - ICMP_MIB_OUTADDRMASKREPS = 26, - ICMP_MIB_CSUMERRORS = 27, - ICMP_MIB_RATELIMITGLOBAL = 28, - ICMP_MIB_RATELIMITHOST = 29, - __ICMP_MIB_MAX = 30, -}; - -enum { - ICMP6_MIB_NUM = 0, - ICMP6_MIB_INMSGS = 1, - ICMP6_MIB_INERRORS = 2, - ICMP6_MIB_OUTMSGS = 3, - ICMP6_MIB_OUTERRORS = 4, - ICMP6_MIB_CSUMERRORS = 5, - ICMP6_MIB_RATELIMITHOST = 6, - __ICMP6_MIB_MAX = 7, -}; - -enum { - TCP_MIB_NUM = 0, - TCP_MIB_RTOALGORITHM = 1, - TCP_MIB_RTOMIN = 2, - TCP_MIB_RTOMAX = 3, - TCP_MIB_MAXCONN = 4, - TCP_MIB_ACTIVEOPENS = 5, - TCP_MIB_PASSIVEOPENS = 6, - TCP_MIB_ATTEMPTFAILS = 7, - TCP_MIB_ESTABRESETS = 8, - TCP_MIB_CURRESTAB = 9, - TCP_MIB_INSEGS = 10, - TCP_MIB_OUTSEGS = 11, - TCP_MIB_RETRANSSEGS = 12, - TCP_MIB_INERRS = 13, - TCP_MIB_OUTRSTS = 14, - TCP_MIB_CSUMERRORS = 15, - __TCP_MIB_MAX = 16, -}; - -enum { - UDP_MIB_NUM = 0, - UDP_MIB_INDATAGRAMS = 1, - UDP_MIB_NOPORTS = 2, - UDP_MIB_INERRORS = 3, - UDP_MIB_OUTDATAGRAMS = 4, - UDP_MIB_RCVBUFERRORS = 5, - UDP_MIB_SNDBUFERRORS = 6, - UDP_MIB_CSUMERRORS = 7, - UDP_MIB_IGNOREDMULTI = 8, - UDP_MIB_MEMERRORS = 9, - __UDP_MIB_MAX = 10, -}; - -enum { - LINUX_MIB_NUM = 0, - LINUX_MIB_SYNCOOKIESSENT = 1, - LINUX_MIB_SYNCOOKIESRECV = 2, - LINUX_MIB_SYNCOOKIESFAILED = 3, - LINUX_MIB_EMBRYONICRSTS = 4, - LINUX_MIB_PRUNECALLED = 5, - LINUX_MIB_RCVPRUNED = 6, - LINUX_MIB_OFOPRUNED = 7, - LINUX_MIB_OUTOFWINDOWICMPS = 8, - LINUX_MIB_LOCKDROPPEDICMPS = 9, - LINUX_MIB_ARPFILTER = 10, - LINUX_MIB_TIMEWAITED = 11, - LINUX_MIB_TIMEWAITRECYCLED = 12, - LINUX_MIB_TIMEWAITKILLED = 13, - LINUX_MIB_PAWSACTIVEREJECTED = 14, - LINUX_MIB_PAWSESTABREJECTED = 15, - LINUX_MIB_BEYOND_WINDOW = 16, - LINUX_MIB_TSECRREJECTED = 17, - LINUX_MIB_PAWS_OLD_ACK = 18, - LINUX_MIB_PAWS_TW_REJECTED = 19, - LINUX_MIB_DELAYEDACKS = 20, - LINUX_MIB_DELAYEDACKLOCKED = 21, - LINUX_MIB_DELAYEDACKLOST = 22, - LINUX_MIB_LISTENOVERFLOWS = 23, - LINUX_MIB_LISTENDROPS = 24, - LINUX_MIB_TCPHPHITS = 25, - LINUX_MIB_TCPPUREACKS = 26, - LINUX_MIB_TCPHPACKS = 27, - LINUX_MIB_TCPRENORECOVERY = 28, - LINUX_MIB_TCPSACKRECOVERY = 29, - LINUX_MIB_TCPSACKRENEGING = 30, - LINUX_MIB_TCPSACKREORDER = 31, - LINUX_MIB_TCPRENOREORDER = 32, - LINUX_MIB_TCPTSREORDER = 33, - LINUX_MIB_TCPFULLUNDO = 34, - LINUX_MIB_TCPPARTIALUNDO = 35, - LINUX_MIB_TCPDSACKUNDO = 36, - LINUX_MIB_TCPLOSSUNDO = 37, - LINUX_MIB_TCPLOSTRETRANSMIT = 38, - LINUX_MIB_TCPRENOFAILURES = 39, - LINUX_MIB_TCPSACKFAILURES = 40, - LINUX_MIB_TCPLOSSFAILURES = 41, - LINUX_MIB_TCPFASTRETRANS = 42, - LINUX_MIB_TCPSLOWSTARTRETRANS = 43, - LINUX_MIB_TCPTIMEOUTS = 44, - LINUX_MIB_TCPLOSSPROBES = 45, - LINUX_MIB_TCPLOSSPROBERECOVERY = 46, - LINUX_MIB_TCPRENORECOVERYFAIL = 47, - LINUX_MIB_TCPSACKRECOVERYFAIL = 48, - LINUX_MIB_TCPRCVCOLLAPSED = 49, - LINUX_MIB_TCPDSACKOLDSENT = 50, - LINUX_MIB_TCPDSACKOFOSENT = 51, - LINUX_MIB_TCPDSACKRECV = 52, - LINUX_MIB_TCPDSACKOFORECV = 53, - LINUX_MIB_TCPABORTONDATA = 54, - LINUX_MIB_TCPABORTONCLOSE = 55, - LINUX_MIB_TCPABORTONMEMORY = 56, - LINUX_MIB_TCPABORTONTIMEOUT = 57, - LINUX_MIB_TCPABORTONLINGER = 58, - LINUX_MIB_TCPABORTFAILED = 59, - LINUX_MIB_TCPMEMORYPRESSURES = 60, - LINUX_MIB_TCPMEMORYPRESSURESCHRONO = 61, - LINUX_MIB_TCPSACKDISCARD = 62, - LINUX_MIB_TCPDSACKIGNOREDOLD = 63, - LINUX_MIB_TCPDSACKIGNOREDNOUNDO = 64, - LINUX_MIB_TCPSPURIOUSRTOS = 65, - LINUX_MIB_TCPMD5NOTFOUND = 66, - LINUX_MIB_TCPMD5UNEXPECTED = 67, - LINUX_MIB_TCPMD5FAILURE = 68, - LINUX_MIB_SACKSHIFTED = 69, - LINUX_MIB_SACKMERGED = 70, - LINUX_MIB_SACKSHIFTFALLBACK = 71, - LINUX_MIB_TCPBACKLOGDROP = 72, - LINUX_MIB_PFMEMALLOCDROP = 73, - LINUX_MIB_TCPMINTTLDROP = 74, - LINUX_MIB_TCPDEFERACCEPTDROP = 75, - LINUX_MIB_IPRPFILTER = 76, - LINUX_MIB_TCPTIMEWAITOVERFLOW = 77, - LINUX_MIB_TCPREQQFULLDOCOOKIES = 78, - LINUX_MIB_TCPREQQFULLDROP = 79, - LINUX_MIB_TCPRETRANSFAIL = 80, - LINUX_MIB_TCPRCVCOALESCE = 81, - LINUX_MIB_TCPBACKLOGCOALESCE = 82, - LINUX_MIB_TCPOFOQUEUE = 83, - LINUX_MIB_TCPOFODROP = 84, - LINUX_MIB_TCPOFOMERGE = 85, - LINUX_MIB_TCPCHALLENGEACK = 86, - LINUX_MIB_TCPSYNCHALLENGE = 87, - LINUX_MIB_TCPFASTOPENACTIVE = 88, - LINUX_MIB_TCPFASTOPENACTIVEFAIL = 89, - LINUX_MIB_TCPFASTOPENPASSIVE = 90, - LINUX_MIB_TCPFASTOPENPASSIVEFAIL = 91, - LINUX_MIB_TCPFASTOPENLISTENOVERFLOW = 92, - LINUX_MIB_TCPFASTOPENCOOKIEREQD = 93, - LINUX_MIB_TCPFASTOPENBLACKHOLE = 94, - LINUX_MIB_TCPSPURIOUS_RTX_HOSTQUEUES = 95, - LINUX_MIB_BUSYPOLLRXPACKETS = 96, - LINUX_MIB_TCPAUTOCORKING = 97, - LINUX_MIB_TCPFROMZEROWINDOWADV = 98, - LINUX_MIB_TCPTOZEROWINDOWADV = 99, - LINUX_MIB_TCPWANTZEROWINDOWADV = 100, - LINUX_MIB_TCPSYNRETRANS = 101, - LINUX_MIB_TCPORIGDATASENT = 102, - LINUX_MIB_TCPHYSTARTTRAINDETECT = 103, - LINUX_MIB_TCPHYSTARTTRAINCWND = 104, - LINUX_MIB_TCPHYSTARTDELAYDETECT = 105, - LINUX_MIB_TCPHYSTARTDELAYCWND = 106, - LINUX_MIB_TCPACKSKIPPEDSYNRECV = 107, - LINUX_MIB_TCPACKSKIPPEDPAWS = 108, - LINUX_MIB_TCPACKSKIPPEDSEQ = 109, - LINUX_MIB_TCPACKSKIPPEDFINWAIT2 = 110, - LINUX_MIB_TCPACKSKIPPEDTIMEWAIT = 111, - LINUX_MIB_TCPACKSKIPPEDCHALLENGE = 112, - LINUX_MIB_TCPWINPROBE = 113, - LINUX_MIB_TCPKEEPALIVE = 114, - LINUX_MIB_TCPMTUPFAIL = 115, - LINUX_MIB_TCPMTUPSUCCESS = 116, - LINUX_MIB_TCPDELIVERED = 117, - LINUX_MIB_TCPDELIVEREDCE = 118, - LINUX_MIB_TCPACKCOMPRESSED = 119, - LINUX_MIB_TCPZEROWINDOWDROP = 120, - LINUX_MIB_TCPRCVQDROP = 121, - LINUX_MIB_TCPWQUEUETOOBIG = 122, - LINUX_MIB_TCPFASTOPENPASSIVEALTKEY = 123, - LINUX_MIB_TCPTIMEOUTREHASH = 124, - LINUX_MIB_TCPDUPLICATEDATAREHASH = 125, - LINUX_MIB_TCPDSACKRECVSEGS = 126, - LINUX_MIB_TCPDSACKIGNOREDDUBIOUS = 127, - LINUX_MIB_TCPMIGRATEREQSUCCESS = 128, - LINUX_MIB_TCPMIGRATEREQFAILURE = 129, - LINUX_MIB_TCPPLBREHASH = 130, - LINUX_MIB_TCPAOREQUIRED = 131, - LINUX_MIB_TCPAOBAD = 132, - LINUX_MIB_TCPAOKEYNOTFOUND = 133, - LINUX_MIB_TCPAOGOOD = 134, - LINUX_MIB_TCPAODROPPEDICMPS = 135, - __LINUX_MIB_MAX = 136, -}; - -enum { - LINUX_MIB_XFRMNUM = 0, - LINUX_MIB_XFRMINERROR = 1, - LINUX_MIB_XFRMINBUFFERERROR = 2, - LINUX_MIB_XFRMINHDRERROR = 3, - LINUX_MIB_XFRMINNOSTATES = 4, - LINUX_MIB_XFRMINSTATEPROTOERROR = 5, - LINUX_MIB_XFRMINSTATEMODEERROR = 6, - LINUX_MIB_XFRMINSTATESEQERROR = 7, - LINUX_MIB_XFRMINSTATEEXPIRED = 8, - LINUX_MIB_XFRMINSTATEMISMATCH = 9, - LINUX_MIB_XFRMINSTATEINVALID = 10, - LINUX_MIB_XFRMINTMPLMISMATCH = 11, - LINUX_MIB_XFRMINNOPOLS = 12, - LINUX_MIB_XFRMINPOLBLOCK = 13, - LINUX_MIB_XFRMINPOLERROR = 14, - LINUX_MIB_XFRMOUTERROR = 15, - LINUX_MIB_XFRMOUTBUNDLEGENERROR = 16, - LINUX_MIB_XFRMOUTBUNDLECHECKERROR = 17, - LINUX_MIB_XFRMOUTNOSTATES = 18, - LINUX_MIB_XFRMOUTSTATEPROTOERROR = 19, - LINUX_MIB_XFRMOUTSTATEMODEERROR = 20, - LINUX_MIB_XFRMOUTSTATESEQERROR = 21, - LINUX_MIB_XFRMOUTSTATEEXPIRED = 22, - LINUX_MIB_XFRMOUTPOLBLOCK = 23, - LINUX_MIB_XFRMOUTPOLDEAD = 24, - LINUX_MIB_XFRMOUTPOLERROR = 25, - LINUX_MIB_XFRMFWDHDRERROR = 26, - LINUX_MIB_XFRMOUTSTATEINVALID = 27, - LINUX_MIB_XFRMACQUIREERROR = 28, - LINUX_MIB_XFRMOUTSTATEDIRERROR = 29, - LINUX_MIB_XFRMINSTATEDIRERROR = 30, - LINUX_MIB_XFRMINIPTFSERROR = 31, - LINUX_MIB_XFRMOUTNOQSPACE = 32, - __LINUX_MIB_XFRMMAX = 33, -}; - -enum { - LINUX_MIB_TLSNUM = 0, - LINUX_MIB_TLSCURRTXSW = 1, - LINUX_MIB_TLSCURRRXSW = 2, - LINUX_MIB_TLSCURRTXDEVICE = 3, - LINUX_MIB_TLSCURRRXDEVICE = 4, - LINUX_MIB_TLSTXSW = 5, - LINUX_MIB_TLSRXSW = 6, - LINUX_MIB_TLSTXDEVICE = 7, - LINUX_MIB_TLSRXDEVICE = 8, - LINUX_MIB_TLSDECRYPTERROR = 9, - LINUX_MIB_TLSRXDEVICERESYNC = 10, - LINUX_MIB_TLSDECRYPTRETRY = 11, - LINUX_MIB_TLSRXNOPADVIOL = 12, - LINUX_MIB_TLSRXREKEYOK = 13, - LINUX_MIB_TLSRXREKEYERROR = 14, - LINUX_MIB_TLSTXREKEYOK = 15, - LINUX_MIB_TLSTXREKEYERROR = 16, - LINUX_MIB_TLSRXREKEYRECEIVED = 17, - __LINUX_MIB_TLSMAX = 18, -}; - -enum nf_inet_hooks { - NF_INET_PRE_ROUTING = 0, - NF_INET_LOCAL_IN = 1, - NF_INET_FORWARD = 2, - NF_INET_LOCAL_OUT = 3, - NF_INET_POST_ROUTING = 4, - NF_INET_NUMHOOKS = 5, - NF_INET_INGRESS = 5, -}; - -enum { - NFPROTO_UNSPEC = 0, - NFPROTO_INET = 1, - NFPROTO_IPV4 = 2, - NFPROTO_ARP = 3, - NFPROTO_NETDEV = 5, - NFPROTO_BRIDGE = 7, - NFPROTO_IPV6 = 10, - NFPROTO_NUMPROTO = 11, -}; - -enum tcp_conntrack { - TCP_CONNTRACK_NONE = 0, - TCP_CONNTRACK_SYN_SENT = 1, - TCP_CONNTRACK_SYN_RECV = 2, - TCP_CONNTRACK_ESTABLISHED = 3, - TCP_CONNTRACK_FIN_WAIT = 4, - TCP_CONNTRACK_CLOSE_WAIT = 5, - TCP_CONNTRACK_LAST_ACK = 6, - TCP_CONNTRACK_TIME_WAIT = 7, - TCP_CONNTRACK_CLOSE = 8, - TCP_CONNTRACK_LISTEN = 9, - TCP_CONNTRACK_MAX = 10, - TCP_CONNTRACK_IGNORE = 11, - TCP_CONNTRACK_RETRANS = 12, - TCP_CONNTRACK_UNACK = 13, - TCP_CONNTRACK_TIMEOUT_MAX = 14, -}; - -enum ip_conntrack_dir { - IP_CT_DIR_ORIGINAL = 0, - IP_CT_DIR_REPLY = 1, - IP_CT_DIR_MAX = 2, -}; - -enum sctp_conntrack { - SCTP_CONNTRACK_NONE = 0, - SCTP_CONNTRACK_CLOSED = 1, - SCTP_CONNTRACK_COOKIE_WAIT = 2, - SCTP_CONNTRACK_COOKIE_ECHOED = 3, - SCTP_CONNTRACK_ESTABLISHED = 4, - SCTP_CONNTRACK_SHUTDOWN_SENT = 5, - SCTP_CONNTRACK_SHUTDOWN_RECD = 6, - SCTP_CONNTRACK_SHUTDOWN_ACK_SENT = 7, - SCTP_CONNTRACK_HEARTBEAT_SENT = 8, - SCTP_CONNTRACK_HEARTBEAT_ACKED = 9, - SCTP_CONNTRACK_MAX = 10, -}; - -enum udp_conntrack { - UDP_CT_UNREPLIED = 0, - UDP_CT_REPLIED = 1, - UDP_CT_MAX = 2, -}; - -enum gre_conntrack { - GRE_CT_UNREPLIED = 0, - GRE_CT_REPLIED = 1, - GRE_CT_MAX = 2, -}; - -enum { - XFRM_POLICY_IN = 0, - XFRM_POLICY_OUT = 1, - XFRM_POLICY_FWD = 2, - XFRM_POLICY_MASK = 3, - XFRM_POLICY_MAX = 3, -}; - -enum netns_bpf_attach_type { - NETNS_BPF_INVALID = -1, - NETNS_BPF_FLOW_DISSECTOR = 0, - NETNS_BPF_SK_LOOKUP = 1, - MAX_NETNS_BPF_ATTACH_TYPE = 2, -}; - -typedef resource_size_t (*resource_alignf)(void *, const struct resource *, resource_size_t, resource_size_t); - -struct resource_constraint { - resource_size_t min; - resource_size_t max; - resource_size_t align; - resource_alignf alignf; - void *alignf_data; -}; - -typedef void (*dr_release_t)(struct device *, void *); - -typedef int (*dr_match_t)(struct device *, void *, void *); - -struct pseudo_fs_context { - const struct super_operations *ops; - const struct export_operations *eops; - const struct xattr_handler * const *xattr; - const struct dentry_operations *dops; - long unsigned int magic; -}; - -struct resource_entry { - struct list_head node; - struct resource *res; - resource_size_t offset; - struct resource __res; -}; - -enum { - MAX_IORES_LEVEL = 5, -}; - -struct region_devres { - struct resource *parent; - resource_size_t start; - resource_size_t n; -}; - -typedef __kernel_clock_t clock_t; - -struct sysinfo { - __kernel_long_t uptime; - __kernel_ulong_t loads[3]; - __kernel_ulong_t totalram; - __kernel_ulong_t freeram; - __kernel_ulong_t sharedram; - __kernel_ulong_t bufferram; - __kernel_ulong_t totalswap; - __kernel_ulong_t freeswap; - __u16 procs; - __u16 pad; - __kernel_ulong_t totalhigh; - __kernel_ulong_t freehigh; - __u32 mem_unit; - char _f[0]; -}; - -enum { - PER_LINUX = 0, - PER_LINUX_32BIT = 8388608, - PER_LINUX_FDPIC = 524288, - PER_SVR4 = 68157441, - PER_SVR3 = 83886082, - PER_SCOSVR3 = 117440515, - PER_OSR5 = 100663299, - PER_WYSEV386 = 83886084, - PER_ISCR4 = 67108869, - PER_BSD = 6, - PER_SUNOS = 67108870, - PER_XENIX = 83886087, - PER_LINUX32 = 8, - PER_LINUX32_3GB = 134217736, - PER_IRIX32 = 67108873, - PER_IRIXN32 = 67108874, - PER_IRIX64 = 67108875, - PER_RISCOS = 12, - PER_SOLARIS = 67108877, - PER_UW7 = 68157454, - PER_OSF4 = 15, - PER_HPUX = 16, - PER_MASK = 255, -}; - -struct __kernel_old_timeval { - __kernel_long_t tv_sec; - __kernel_long_t tv_usec; -}; - -struct rusage { - struct __kernel_old_timeval ru_utime; - struct __kernel_old_timeval ru_stime; - __kernel_long_t ru_maxrss; - __kernel_long_t ru_ixrss; - __kernel_long_t ru_idrss; - __kernel_long_t ru_isrss; - __kernel_long_t ru_minflt; - __kernel_long_t ru_majflt; - __kernel_long_t ru_nswap; - __kernel_long_t ru_inblock; - __kernel_long_t ru_oublock; - __kernel_long_t ru_msgsnd; - __kernel_long_t ru_msgrcv; - __kernel_long_t ru_nsignals; - __kernel_long_t ru_nvcsw; - __kernel_long_t ru_nivcsw; -}; - -struct rlimit64 { - __u64 rlim_cur; - __u64 rlim_max; -}; - -struct old_timeval32 { - old_time32_t tv_sec; - s32 tv_usec; -}; - -struct timens_offsets { - struct timespec64 monotonic; - struct timespec64 boottime; -}; - -struct time_namespace { - struct user_namespace *user_ns; - struct ucounts *ucounts; - struct ns_common ns; - struct timens_offsets offsets; - struct page *vvar_page; - bool frozen_offsets; -}; - -typedef s32 compat_clock_t; - -typedef u32 compat_ulong_t; - -struct compat_tms { - compat_clock_t tms_utime; - compat_clock_t tms_stime; - compat_clock_t tms_cutime; - compat_clock_t tms_cstime; -}; - -struct compat_rlimit { - compat_ulong_t rlim_cur; - compat_ulong_t rlim_max; -}; - -struct compat_rusage { - struct old_timeval32 ru_utime; - struct old_timeval32 ru_stime; - compat_long_t ru_maxrss; - compat_long_t ru_ixrss; - compat_long_t ru_idrss; - compat_long_t ru_isrss; - compat_long_t ru_minflt; - compat_long_t ru_majflt; - compat_long_t ru_nswap; - compat_long_t ru_inblock; - compat_long_t ru_oublock; - compat_long_t ru_msgsnd; - compat_long_t ru_msgrcv; - compat_long_t ru_nsignals; - compat_long_t ru_nvcsw; - compat_long_t ru_nivcsw; -}; - -struct oldold_utsname { - char sysname[9]; - char nodename[9]; - char release[9]; - char version[9]; - char machine[9]; -}; - -struct old_utsname { - char sysname[65]; - char nodename[65]; - char release[65]; - char version[65]; - char machine[65]; -}; - -enum uts_proc { - UTS_PROC_ARCH = 0, - UTS_PROC_OSTYPE = 1, - UTS_PROC_OSRELEASE = 2, - UTS_PROC_VERSION = 3, - UTS_PROC_HOSTNAME = 4, - UTS_PROC_DOMAINNAME = 5, -}; - -struct prctl_mm_map { - __u64 start_code; - __u64 end_code; - __u64 start_data; - __u64 end_data; - __u64 start_brk; - __u64 brk; - __u64 start_stack; - __u64 arg_start; - __u64 arg_end; - __u64 env_start; - __u64 env_end; - __u64 *auxv; - __u32 auxv_size; - __u32 exe_fd; -}; - -struct fd { - long unsigned int word; -}; - -typedef struct fd class_fd_t; - -struct tms { - __kernel_clock_t tms_utime; - __kernel_clock_t tms_stime; - __kernel_clock_t tms_cutime; - __kernel_clock_t tms_cstime; -}; - -struct getcpu_cache { - long unsigned int blob[16]; -}; - -struct compat_sysinfo { - s32 uptime; - u32 loads[3]; - u32 totalram; - u32 freeram; - u32 sharedram; - u32 bufferram; - u32 totalswap; - u32 freeswap; - u16 procs; - u16 pad; - u32 totalhigh; - u32 freehigh; - u32 mem_unit; - char _f[8]; -}; - -enum { - CSD_FLAG_LOCK = 1, - IRQ_WORK_PENDING = 1, - IRQ_WORK_BUSY = 2, - IRQ_WORK_LAZY = 4, - IRQ_WORK_HARD_IRQ = 8, - IRQ_WORK_CLAIMED = 3, - CSD_TYPE_ASYNC = 0, - CSD_TYPE_SYNC = 16, - CSD_TYPE_IRQ_WORK = 32, - CSD_TYPE_TTWU = 48, - CSD_FLAG_TYPE_MASK = 240, -}; - -typedef void (*task_work_func_t)(struct callback_head *); - -enum task_work_notify_mode { - TWA_NONE = 0, - TWA_RESUME = 1, - TWA_SIGNAL = 2, - TWA_SIGNAL_NO_IPI = 3, - TWA_NMI_CURRENT = 4, -}; - -struct ipc_ids { - int in_use; - short unsigned int seq; - struct rw_semaphore rwsem; - struct idr ipcs_idr; - int max_idx; - int last_idx; - int next_id; - struct rhashtable key_ht; -}; - -struct ipc_namespace { - struct ipc_ids ids[3]; - int sem_ctls[4]; - int used_sems; - unsigned int msg_ctlmax; - unsigned int msg_ctlmnb; - unsigned int msg_ctlmni; - struct percpu_counter percpu_msg_bytes; - struct percpu_counter percpu_msg_hdrs; - size_t shm_ctlmax; - size_t shm_ctlall; - long unsigned int shm_tot; - int shm_ctlmni; - int shm_rmid_forced; - struct notifier_block ipcns_nb; - struct vfsmount *mq_mnt; - unsigned int mq_queues_count; - unsigned int mq_queues_max; - unsigned int mq_msg_max; - unsigned int mq_msgsize_max; - unsigned int mq_msg_default; - unsigned int mq_msgsize_default; - struct ctl_table_set mq_set; - struct ctl_table_header *mq_sysctls; - struct ctl_table_set ipc_set; - struct ctl_table_header *ipc_sysctls; - struct user_namespace *user_ns; - struct ucounts *ucounts; - struct llist_node mnt_llist; - struct ns_common ns; -}; - -enum wq_flags { - WQ_BH = 1, - WQ_UNBOUND = 2, - WQ_FREEZABLE = 4, - WQ_MEM_RECLAIM = 8, - WQ_HIGHPRI = 16, - WQ_CPU_INTENSIVE = 32, - WQ_SYSFS = 64, - WQ_POWER_EFFICIENT = 128, - WQ_PERCPU = 256, - __WQ_DESTROYING = 32768, - __WQ_DRAINING = 65536, - __WQ_ORDERED = 131072, - __WQ_LEGACY = 262144, - __WQ_BH_ALLOWS = 17, -}; - -enum wq_consts { - WQ_MAX_ACTIVE = 2048, - WQ_UNBOUND_MAX_ACTIVE = 2048, - WQ_DFL_ACTIVE = 1024, - WQ_DFL_MIN_ACTIVE = 8, -}; - -struct pool_workqueue; - -struct worker_pool; - -struct worker { - union { - struct list_head entry; - struct hlist_node hentry; - }; - struct work_struct *current_work; - work_func_t current_func; - struct pool_workqueue *current_pwq; - u64 current_at; - unsigned int current_color; - int sleeping; - work_func_t last_func; - struct list_head scheduled; - struct task_struct *task; - struct worker_pool *pool; - struct list_head node; - long unsigned int last_active; - unsigned int flags; - int id; - char desc[32]; - struct workqueue_struct *rescue_wq; -}; - -struct async_entry { - struct list_head domain_list; - struct list_head global_list; - struct work_struct work; - async_cookie_t cookie; - async_func_t func; - void *data; - struct async_domain *domain; -}; - -struct pin_cookie {}; - -struct plist_head { - struct list_head node_list; -}; - -struct scx_task_group { - u32 flags; - u32 weight; - u64 bw_period_us; - u64 bw_quota_us; - u64 bw_burst_us; -}; - -struct dl_bw { - raw_spinlock_t lock; - u64 bw; - u64 total_bw; -}; - -struct cpudl_item; - -struct cpudl { - raw_spinlock_t lock; - int size; - cpumask_var_t free_cpus; - struct cpudl_item *elements; -}; - -struct cpupri_vec { - atomic_t count; - cpumask_var_t mask; -}; - -struct cpupri { - struct cpupri_vec pri_to_cpu[101]; - int *cpu_to_pri; -}; - -struct perf_domain; - -struct root_domain { - atomic_t refcount; - atomic_t rto_count; - struct callback_head rcu; - cpumask_var_t span; - cpumask_var_t online; - bool overloaded; - bool overutilized; - cpumask_var_t dlo_mask; - atomic_t dlo_count; - struct dl_bw dl_bw; - struct cpudl cpudl; - u64 visit_cookie; - struct irq_work rto_push_work; - raw_spinlock_t rto_lock; - int rto_loop; - int rto_cpu; - atomic_t rto_loop_next; - atomic_t rto_loop_start; - cpumask_var_t rto_mask; - struct cpupri cpupri; - struct perf_domain *pd; -}; - -struct cfs_rq { - struct load_weight load; - unsigned int nr_queued; - unsigned int h_nr_queued; - unsigned int h_nr_runnable; - unsigned int h_nr_idle; - s64 avg_vruntime; - u64 avg_load; - u64 zero_vruntime; - unsigned int forceidle_seq; - u64 zero_vruntime_fi; - struct rb_root_cached tasks_timeline; - struct sched_entity *curr; - struct sched_entity *next; - long: 64; - long: 64; - long: 64; - struct sched_avg avg; - struct { - raw_spinlock_t lock; - int nr; - long unsigned int load_avg; - long unsigned int util_avg; - long unsigned int runnable_avg; - long: 64; - long: 64; - long: 64; - long: 64; - } removed; - u64 last_update_tg_load_avg; - long unsigned int tg_load_avg_contrib; - long int propagate; - long int prop_runnable_sum; - long unsigned int h_load; - u64 last_h_load_update; - struct sched_entity *h_load_next; - struct rq *rq; - int on_list; - struct list_head leaf_cfs_rq_list; - struct task_group *tg; - int idle; - int runtime_enabled; - s64 runtime_remaining; - u64 throttled_pelt_idle; - u64 throttled_clock; - u64 throttled_clock_pelt; - u64 throttled_clock_pelt_time; - u64 throttled_clock_self; - u64 throttled_clock_self_time; - int throttled; - int throttle_count; - struct list_head throttled_list; - struct list_head throttled_csd_list; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct uclamp_bucket { - long unsigned int value: 11; - long unsigned int tasks: 53; -}; - -struct uclamp_rq { - unsigned int value; - struct uclamp_bucket bucket[5]; -}; - -struct rt_prio_array { - long unsigned int bitmap[2]; - struct list_head queue[100]; -}; - -struct rt_rq { - struct rt_prio_array active; - unsigned int rt_nr_running; - unsigned int rr_nr_running; - struct { - int curr; - int next; - } highest_prio; - bool overloaded; - struct plist_head pushable_tasks; - int rt_queued; - struct task_group *tg; -}; - -struct dl_rq { - struct rb_root_cached root; - unsigned int dl_nr_running; - struct { - u64 curr; - u64 next; - } earliest_dl; - bool overloaded; - struct rb_root_cached pushable_dl_tasks_root; - u64 running_bw; - u64 this_bw; - u64 extra_bw; - u64 max_bw; - u64 bw_ratio; -}; - -struct balance_callback { - struct balance_callback *next; - void (*func)(struct rq *); -}; - -struct scx_rq { - struct scx_dispatch_q local_dsq; - struct list_head runnable_list; - struct list_head ddsp_deferred_locals; - long unsigned int ops_qseq; - u64 extra_enq_flags; - u32 nr_running; - u32 cpuperf_target; - bool cpu_released; - u32 flags; - u64 clock; - cpumask_var_t cpus_to_kick; - cpumask_var_t cpus_to_kick_if_idle; - cpumask_var_t cpus_to_preempt; - cpumask_var_t cpus_to_wait; - long unsigned int pnt_seq; - struct balance_callback deferred_bal_cb; - struct irq_work deferred_irq_work; - struct irq_work kick_cpus_irq_work; -}; - -typedef int (*cpu_stop_fn_t)(void *); - -struct cpu_stop_done; - -struct cpu_stop_work { - struct list_head list; - cpu_stop_fn_t fn; - long unsigned int caller; - void *arg; - struct cpu_stop_done *done; -}; - -struct sched_domain; - -struct cpuidle_state; - -struct rq { - raw_spinlock_t __lock; - unsigned int nr_running; - unsigned int nr_numa_running; - unsigned int nr_preferred_running; - unsigned int numa_migrate_on; - long unsigned int last_blocked_load_update_tick; - unsigned int has_blocked_load; - long: 64; - long: 64; - long: 64; - call_single_data_t nohz_csd; - unsigned int nohz_tick_stopped; - atomic_t nohz_flags; - unsigned int ttwu_pending; - u64 nr_switches; - long: 64; - struct uclamp_rq uclamp[2]; - unsigned int uclamp_flags; - long: 64; - long: 64; - long: 64; - struct cfs_rq cfs; - struct rt_rq rt; - struct dl_rq dl; - struct scx_rq scx; - struct sched_dl_entity fair_server; - struct list_head leaf_cfs_rq_list; - struct list_head *tmp_alone_branch; - long unsigned int nr_uninterruptible; - union { - struct task_struct *donor; - struct task_struct *curr; - }; - struct sched_dl_entity *dl_server; - struct task_struct *idle; - struct task_struct *stop; - long unsigned int next_balance; - struct mm_struct *prev_mm; - unsigned int clock_update_flags; - u64 clock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - u64 clock_task; - u64 clock_pelt; - long unsigned int lost_idle_time; - u64 clock_pelt_idle; - u64 clock_idle; - atomic_t nr_iowait; - u64 last_seen_need_resched_ns; - int ticks_without_resched; - int membarrier_state; - struct root_domain *rd; - struct sched_domain *sd; - long unsigned int cpu_capacity; - struct balance_callback *balance_callback; - unsigned char nohz_idle_balance; - unsigned char idle_balance; - long unsigned int misfit_task_load; - int active_balance; - int push_cpu; - struct cpu_stop_work active_balance_work; - int cpu; - int online; - struct list_head cfs_tasks; - struct sched_avg avg_rt; - struct sched_avg avg_dl; - u64 idle_stamp; - u64 avg_idle; - u64 max_idle_balance_cost; - struct rcuwait hotplug_wait; - u64 prev_steal_time; - long unsigned int calc_load_update; - long int calc_load_active; - long: 64; - call_single_data_t hrtick_csd; - struct hrtimer hrtick_timer; - ktime_t hrtick_time; - struct sched_info rq_sched_info; - long long unsigned int rq_cpu_time; - unsigned int yld_count; - unsigned int sched_count; - unsigned int sched_goidle; - unsigned int ttwu_count; - unsigned int ttwu_local; - struct cpuidle_state *idle_state; - unsigned int nr_pinned; - unsigned int push_busy; - struct cpu_stop_work push_work; - struct rq *core; - struct task_struct *core_pick; - struct sched_dl_entity *core_dl_server; - unsigned int core_enabled; - unsigned int core_sched_seq; - struct rb_root core_tree; - unsigned int core_task_seq; - unsigned int core_pick_seq; - long unsigned int core_cookie; - unsigned int core_forceidle_count; - unsigned int core_forceidle_seq; - unsigned int core_forceidle_occupation; - u64 core_forceidle_start; - cpumask_var_t scratch_mask; - long: 64; - long: 64; - call_single_data_t cfsb_csd; - struct list_head cfsb_csd_list; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct cfs_bandwidth { - raw_spinlock_t lock; - ktime_t period; - u64 quota; - u64 runtime; - u64 burst; - u64 runtime_snap; - s64 hierarchical_quota; - u8 idle; - u8 period_active; - u8 slack_started; - struct hrtimer period_timer; - struct hrtimer slack_timer; - struct list_head throttled_cfs_rq; - int nr_periods; - int nr_throttled; - int nr_burst; - u64 throttled_time; - u64 burst_time; -}; - -struct task_group { - struct cgroup_subsys_state css; - int idle; - struct sched_entity **se; - struct cfs_rq **cfs_rq; - long unsigned int shares; - long: 64; - long: 64; - atomic_long_t load_avg; - struct scx_task_group scx; - struct callback_head rcu; - struct list_head list; - struct task_group *parent; - struct list_head siblings; - struct list_head children; - struct autogroup *autogroup; - struct cfs_bandwidth cfs_bandwidth; - unsigned int uclamp_pct[2]; - struct uclamp_se uclamp_req[2]; - struct uclamp_se uclamp[2]; -}; - -struct numa_group { - refcount_t refcount; - spinlock_t lock; - int nr_tasks; - pid_t gid; - int active_nodes; - struct callback_head rcu; - long unsigned int total_faults; - long unsigned int max_faults_cpu; - long unsigned int faults[0]; -}; - -enum pm_qos_type { - PM_QOS_UNITIALIZED = 0, - PM_QOS_MAX = 1, - PM_QOS_MIN = 2, -}; - -struct pm_qos_constraints { - struct plist_head list; - s32 target_value; - s32 default_value; - s32 no_constraint_value; - enum pm_qos_type type; - struct blocking_notifier_head *notifiers; -}; - -struct freq_constraints { - struct pm_qos_constraints min_freq; - struct blocking_notifier_head min_freq_notifiers; - struct pm_qos_constraints max_freq; - struct blocking_notifier_head max_freq_notifiers; -}; - -struct pm_qos_flags { - struct list_head list; - s32 effective_flags; -}; - -struct dev_pm_qos_request; - -struct dev_pm_qos { - struct pm_qos_constraints resume_latency; - struct pm_qos_constraints latency_tolerance; - struct freq_constraints freq; - struct pm_qos_flags flags; - struct dev_pm_qos_request *resume_latency_req; - struct dev_pm_qos_request *latency_tolerance_req; - struct dev_pm_qos_request *flags_req; -}; - -struct autogroup { - struct kref kref; - struct task_group *tg; - struct rw_semaphore lock; - long unsigned int id; - int nice; -}; - -struct update_util_data { - void (*func)(struct update_util_data *, u64, unsigned int); -}; - -enum cpu_idle_type { - __CPU_NOT_IDLE = 0, - CPU_IDLE = 1, - CPU_NEWLY_IDLE = 2, - CPU_MAX_IDLE_TYPES = 3, -}; - -enum { - SD_BALANCE_NEWIDLE = 1, - SD_BALANCE_EXEC = 2, - SD_BALANCE_FORK = 4, - SD_BALANCE_WAKE = 8, - SD_WAKE_AFFINE = 16, - SD_ASYM_CPUCAPACITY = 32, - SD_ASYM_CPUCAPACITY_FULL = 64, - SD_SHARE_CPUCAPACITY = 128, - SD_CLUSTER = 256, - SD_SHARE_LLC = 512, - SD_SERIALIZE = 1024, - SD_ASYM_PACKING = 2048, - SD_PREFER_SIBLING = 4096, - SD_NUMA = 8192, -}; - -struct sched_domain_shared { - atomic_t ref; - atomic_t nr_busy_cpus; - int has_idle_cores; - int nr_idle_scan; -}; - -struct sched_group; - -struct sched_domain { - struct sched_domain *parent; - struct sched_domain *child; - struct sched_group *groups; - long unsigned int min_interval; - long unsigned int max_interval; - unsigned int busy_factor; - unsigned int imbalance_pct; - unsigned int cache_nice_tries; - unsigned int imb_numa_nr; - int nohz_idle; - int flags; - int level; - long unsigned int last_balance; - unsigned int balance_interval; - unsigned int nr_balance_failed; - unsigned int newidle_call; - unsigned int newidle_success; - unsigned int newidle_ratio; - u64 max_newidle_lb_cost; - long unsigned int last_decay_max_lb_cost; - unsigned int lb_count[3]; - unsigned int lb_failed[3]; - unsigned int lb_balanced[3]; - unsigned int lb_imbalance_load[3]; - unsigned int lb_imbalance_util[3]; - unsigned int lb_imbalance_task[3]; - unsigned int lb_imbalance_misfit[3]; - unsigned int lb_gained[3]; - unsigned int lb_hot_gained[3]; - unsigned int lb_nobusyg[3]; - unsigned int lb_nobusyq[3]; - unsigned int alb_count; - unsigned int alb_failed; - unsigned int alb_pushed; - unsigned int sbe_count; - unsigned int sbe_balanced; - unsigned int sbe_pushed; - unsigned int sbf_count; - unsigned int sbf_balanced; - unsigned int sbf_pushed; - unsigned int ttwu_wake_remote; - unsigned int ttwu_move_affine; - unsigned int ttwu_move_balance; - char *name; - union { - void *private; - struct callback_head rcu; - }; - struct sched_domain_shared *shared; - unsigned int span_weight; - long unsigned int span[0]; -}; - -struct sched_group_capacity; - -struct sched_group { - struct sched_group *next; - atomic_t ref; - unsigned int group_weight; - unsigned int cores; - struct sched_group_capacity *sgc; - int asym_prefer_cpu; - int flags; - long unsigned int cpumask[0]; -}; - -struct sched_group_capacity { - atomic_t ref; - long unsigned int capacity; - long unsigned int min_capacity; - long unsigned int max_capacity; - long unsigned int next_update; - int imbalance; - int id; - long unsigned int cpumask[0]; -}; - -enum tick_dep_bits { - TICK_DEP_BIT_POSIX_TIMER = 0, - TICK_DEP_BIT_PERF_EVENTS = 1, - TICK_DEP_BIT_SCHED = 2, - TICK_DEP_BIT_CLOCK_UNSTABLE = 3, - TICK_DEP_BIT_RCU = 4, - TICK_DEP_BIT_RCU_EXP = 5, -}; - -enum hk_type { - HK_TYPE_DOMAIN = 0, - HK_TYPE_MANAGED_IRQ = 1, - HK_TYPE_KERNEL_NOISE = 2, - HK_TYPE_MAX = 3, - HK_TYPE_TICK = 2, - HK_TYPE_TIMER = 2, - HK_TYPE_RCU = 2, - HK_TYPE_MISC = 2, - HK_TYPE_WQ = 2, - HK_TYPE_KTHREAD = 2, -}; - -struct cpuidle_state_usage { - long long unsigned int disable; - long long unsigned int usage; - u64 time_ns; - long long unsigned int above; - long long unsigned int below; - long long unsigned int rejected; - long long unsigned int s2idle_usage; - long long unsigned int s2idle_time; -}; - -struct cpuidle_device; - -struct cpuidle_driver; - -struct cpuidle_state { - char name[16]; - char desc[32]; - s64 exit_latency_ns; - s64 target_residency_ns; - unsigned int flags; - unsigned int exit_latency; - int power_usage; - unsigned int target_residency; - int (*enter)(struct cpuidle_device *, struct cpuidle_driver *, int); - void (*enter_dead)(struct cpuidle_device *, int); - int (*enter_s2idle)(struct cpuidle_device *, struct cpuidle_driver *, int); -}; - -struct cpuidle_driver_kobj; - -struct cpuidle_state_kobj; - -struct cpuidle_device_kobj; - -struct cpuidle_device { - unsigned int registered: 1; - unsigned int enabled: 1; - unsigned int poll_time_limit: 1; - unsigned int cpu; - ktime_t next_hrtimer; - int last_state_idx; - u64 last_residency_ns; - u64 poll_limit_ns; - u64 forced_idle_latency_limit_ns; - struct cpuidle_state_usage states_usage[10]; - struct cpuidle_state_kobj *kobjs[10]; - struct cpuidle_driver_kobj *kobj_driver; - struct cpuidle_device_kobj *kobj_dev; - struct list_head device_list; -}; - -struct cpuidle_driver { - const char *name; - struct module *owner; - unsigned int bctimer: 1; - struct cpuidle_state states[10]; - int state_count; - int safe_state_index; - struct cpumask *cpumask; - const char *governor; -}; - -struct sched_attr { - __u32 size; - __u32 sched_policy; - __u64 sched_flags; - __s32 sched_nice; - __u32 sched_priority; - __u64 sched_runtime; - __u64 sched_deadline; - __u64 sched_period; - __u32 sched_util_min; - __u32 sched_util_max; -}; - -struct rnd_state { - __u32 s1; - __u32 s2; - __u32 s3; - __u32 s4; -}; - -enum sched_tunable_scaling { - SCHED_TUNABLESCALING_NONE = 0, - SCHED_TUNABLESCALING_LOG = 1, - SCHED_TUNABLESCALING_LINEAR = 2, - SCHED_TUNABLESCALING_END = 3, -}; - -struct pm_qos_flags_request { - struct list_head node; - s32 flags; -}; - -enum freq_qos_req_type { - FREQ_QOS_MIN = 1, - FREQ_QOS_MAX = 2, -}; - -struct freq_qos_request { - enum freq_qos_req_type type; - struct plist_node pnode; - struct freq_constraints *qos; -}; - -enum dev_pm_qos_req_type { - DEV_PM_QOS_RESUME_LATENCY = 1, - DEV_PM_QOS_LATENCY_TOLERANCE = 2, - DEV_PM_QOS_MIN_FREQUENCY = 3, - DEV_PM_QOS_MAX_FREQUENCY = 4, - DEV_PM_QOS_FLAGS = 5, -}; - -struct dev_pm_qos_request { - enum dev_pm_qos_req_type type; - union { - struct plist_node pnode; - struct pm_qos_flags_request flr; - struct freq_qos_request freq; - } data; - struct device *dev; -}; - -enum numa_vmaskip_reason { - NUMAB_SKIP_UNSUITABLE = 0, - NUMAB_SKIP_SHARED_RO = 1, - NUMAB_SKIP_INACCESSIBLE = 2, - NUMAB_SKIP_SCAN_DELAY = 3, - NUMAB_SKIP_PID_INACTIVE = 4, - NUMAB_SKIP_IGNORE_PID = 5, - NUMAB_SKIP_SEQ_COMPLETED = 6, -}; - -struct cpudl_item { - u64 dl; - int cpu; - int idx; -}; - -struct asym_cap_data { - struct list_head link; - struct callback_head rcu; - long unsigned int capacity; - long unsigned int cpus[0]; -}; - -typedef int (*tg_visitor)(struct task_group *, void *); - -enum scx_rq_flags { - SCX_RQ_ONLINE = 1, - SCX_RQ_CAN_STOP_TICK = 2, - SCX_RQ_BAL_PENDING = 4, - SCX_RQ_BAL_KEEP = 8, - SCX_RQ_BYPASSING = 16, - SCX_RQ_CLK_VALID = 32, - SCX_RQ_BAL_CB_PENDING = 64, - SCX_RQ_IN_WAKEUP = 65536, - SCX_RQ_IN_BALANCE = 131072, -}; - -struct perf_domain { - struct em_perf_domain *em_pd; - struct perf_domain *next; - struct callback_head rcu; -}; - -struct rq_flags { - long unsigned int flags; - struct pin_cookie cookie; - unsigned int clock_update_flags; -}; - -typedef struct { - struct rq *lock; - struct rq_flags rf; -} class_rq_lock_irqsave_t; - -enum numa_topology_type { - NUMA_DIRECT = 0, - NUMA_GLUELESS_MESH = 1, - NUMA_BACKPLANE = 2, -}; - -enum numa_faults_stats { - NUMA_MEM = 0, - NUMA_CPU = 1, - NUMA_MEMBUF = 2, - NUMA_CPUBUF = 3, -}; - -enum { - __SCHED_FEAT_PLACE_LAG = 0, - __SCHED_FEAT_PLACE_DEADLINE_INITIAL = 1, - __SCHED_FEAT_PLACE_REL_DEADLINE = 2, - __SCHED_FEAT_RUN_TO_PARITY = 3, - __SCHED_FEAT_PREEMPT_SHORT = 4, - __SCHED_FEAT_NEXT_BUDDY = 5, - __SCHED_FEAT_PICK_BUDDY = 6, - __SCHED_FEAT_CACHE_HOT_BUDDY = 7, - __SCHED_FEAT_DELAY_DEQUEUE = 8, - __SCHED_FEAT_DELAY_ZERO = 9, - __SCHED_FEAT_WAKEUP_PREEMPTION = 10, - __SCHED_FEAT_HRTICK = 11, - __SCHED_FEAT_HRTICK_DL = 12, - __SCHED_FEAT_NONTASK_CAPACITY = 13, - __SCHED_FEAT_TTWU_QUEUE = 14, - __SCHED_FEAT_SIS_UTIL = 15, - __SCHED_FEAT_WARN_DOUBLE_CLOCK = 16, - __SCHED_FEAT_RT_PUSH_IPI = 17, - __SCHED_FEAT_RT_RUNTIME_SHARE = 18, - __SCHED_FEAT_LB_MIN = 19, - __SCHED_FEAT_ATTACH_AGE_LOAD = 20, - __SCHED_FEAT_WA_IDLE = 21, - __SCHED_FEAT_WA_WEIGHT = 22, - __SCHED_FEAT_WA_BIAS = 23, - __SCHED_FEAT_UTIL_EST = 24, - __SCHED_FEAT_LATENCY_WARN = 25, - __SCHED_FEAT_NI_RANDOM = 26, - __SCHED_FEAT_NR = 27, -}; - -struct affinity_context { - const struct cpumask *new_mask; - struct cpumask *user_mask; - unsigned int flags; -}; - -struct sched_entity_stats { - struct sched_entity se; - struct sched_statistics stats; -}; - -enum numa_type { - node_has_spare = 0, - node_fully_busy = 1, - node_overloaded = 2, -}; - -struct numa_stats { - long unsigned int load; - long unsigned int runnable; - long unsigned int util; - long unsigned int compute_capacity; - unsigned int nr_running; - unsigned int weight; - enum numa_type node_type; - int idle_cpu; -}; - -struct task_numa_env { - struct task_struct *p; - int src_cpu; - int src_nid; - int dst_cpu; - int dst_nid; - int imb_numa_nr; - struct numa_stats src_stats; - struct numa_stats dst_stats; - int imbalance_pct; - int dist; - struct task_struct *best_task; - long int best_imp; - int best_cpu; -}; - -struct energy_env { - long unsigned int task_busy_time; - long unsigned int pd_busy_time; - long unsigned int cpu_cap; - long unsigned int pd_cap; -}; - -enum fbq_type { - regular = 0, - remote = 1, - all = 2, -}; - -enum group_type { - group_has_spare = 0, - group_fully_busy = 1, - group_misfit_task = 2, - group_smt_balance = 3, - group_asym_packing = 4, - group_imbalanced = 5, - group_overloaded = 6, -}; - -enum migration_type { - migrate_load = 0, - migrate_util = 1, - migrate_task = 2, - migrate_misfit = 3, -}; - -struct lb_env { - struct sched_domain *sd; - struct rq *src_rq; - int src_cpu; - int dst_cpu; - struct rq *dst_rq; - struct cpumask *dst_grpmask; - int new_dst_cpu; - enum cpu_idle_type idle; - long int imbalance; - struct cpumask *cpus; - unsigned int flags; - unsigned int loop; - unsigned int loop_break; - unsigned int loop_max; - enum fbq_type fbq_type; - enum migration_type migration_type; - struct list_head tasks; -}; - -struct sg_lb_stats { - long unsigned int avg_load; - long unsigned int group_load; - long unsigned int group_capacity; - long unsigned int group_util; - long unsigned int group_runnable; - unsigned int sum_nr_running; - unsigned int sum_h_nr_running; - unsigned int idle_cpus; - unsigned int group_weight; - enum group_type group_type; - unsigned int group_asym_packing; - unsigned int group_smt_balance; - long unsigned int group_misfit_task_load; - unsigned int nr_numa_running; - unsigned int nr_preferred_running; -}; - -struct sd_lb_stats { - struct sched_group *busiest; - struct sched_group *local; - long unsigned int total_load; - long unsigned int total_capacity; - long unsigned int avg_load; - unsigned int prefer_sibling; - struct sg_lb_stats busiest_stat; - struct sg_lb_stats local_stat; -}; - -typedef struct { - void *lock; -} class_preempt_t; - -struct ww_acquire_ctx; - -struct ww_mutex { - struct mutex base; - struct ww_acquire_ctx *ctx; -}; - -struct ww_acquire_ctx { - struct task_struct *task; - long unsigned int stamp; - unsigned int acquired; - short unsigned int wounded; - short unsigned int is_wait_die; -}; - -typedef struct { - raw_spinlock_t *lock; - long unsigned int flags; -} class_raw_spinlock_irqsave_t; - -struct trace_print_flags { - long unsigned int mask; - const char *name; -}; - -struct wake_q_head { - struct wake_q_node *first; - struct wake_q_node **lastp; -}; - -struct trace_event_raw_contention_begin { - struct trace_entry ent; - void *lock_addr; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_contention_end { - struct trace_entry ent; - void *lock_addr; - int ret; - char __data[0]; -}; - -struct trace_event_data_offsets_contention_begin {}; - -struct trace_event_data_offsets_contention_end {}; - -typedef void (*btf_trace_contention_begin)(void *, void *, unsigned int); - -typedef void (*btf_trace_contention_end)(void *, void *, int); - -struct mutex_waiter { - struct list_head list; - struct task_struct *task; - struct ww_acquire_ctx *ww_ctx; -}; - -enum { - TASKSTATS_CMD_UNSPEC = 0, - TASKSTATS_CMD_GET = 1, - TASKSTATS_CMD_NEW = 2, - __TASKSTATS_CMD_MAX = 3, -}; - -struct pm_vt_switch { - struct list_head head; - struct device *dev; - bool required; -}; - -typedef int suspend_state_t; - -struct platform_hibernation_ops { - int (*begin)(pm_message_t); - void (*end)(void); - int (*pre_snapshot)(void); - void (*finish)(void); - int (*prepare)(void); - int (*enter)(void); - void (*leave)(void); - int (*pre_restore)(void); - void (*restore_cleanup)(void); - void (*recover)(void); -}; - -enum lockdown_reason { - LOCKDOWN_NONE = 0, - LOCKDOWN_MODULE_SIGNATURE = 1, - LOCKDOWN_DEV_MEM = 2, - LOCKDOWN_EFI_TEST = 3, - LOCKDOWN_KEXEC = 4, - LOCKDOWN_HIBERNATION = 5, - LOCKDOWN_PCI_ACCESS = 6, - LOCKDOWN_IOPORT = 7, - LOCKDOWN_MSR = 8, - LOCKDOWN_ACPI_TABLES = 9, - LOCKDOWN_DEVICE_TREE = 10, - LOCKDOWN_PCMCIA_CIS = 11, - LOCKDOWN_TIOCSSERIAL = 12, - LOCKDOWN_MODULE_PARAMETERS = 13, - LOCKDOWN_MMIOTRACE = 14, - LOCKDOWN_DEBUGFS = 15, - LOCKDOWN_XMON_WR = 16, - LOCKDOWN_BPF_WRITE_USER = 17, - LOCKDOWN_DBG_WRITE_KERNEL = 18, - LOCKDOWN_RTAS_ERROR_INJECTION = 19, - LOCKDOWN_INTEGRITY_MAX = 20, - LOCKDOWN_KCORE = 21, - LOCKDOWN_KPROBES = 22, - LOCKDOWN_BPF_READ_KERNEL = 23, - LOCKDOWN_DBG_READ_KERNEL = 24, - LOCKDOWN_PERF = 25, - LOCKDOWN_TRACEFS = 26, - LOCKDOWN_XMON_RW = 27, - LOCKDOWN_XFRM_SECRET = 28, - LOCKDOWN_CONFIDENTIALITY_MAX = 29, -}; - -enum { - TEST_NONE = 0, - TEST_CORE = 1, - TEST_CPUS = 2, - TEST_PLATFORM = 3, - TEST_DEVICES = 4, - TEST_FREEZER = 5, - __TEST_AFTER_LAST = 6, -}; - -enum { - HIBERNATION_INVALID = 0, - HIBERNATION_PLATFORM = 1, - HIBERNATION_SHUTDOWN = 2, - HIBERNATION_REBOOT = 3, - HIBERNATION_SUSPEND = 4, - HIBERNATION_TEST_RESUME = 5, - __HIBERNATION_AFTER_LAST = 6, -}; - -struct sysrq_key_op { - void (* const handler)(u8); - const char * const help_msg; - const char * const action_msg; - const int enable_mask; -}; - -struct em_data_callback { - int (*active_power)(struct device *, long unsigned int *, long unsigned int *); - int (*get_cost)(struct device *, long unsigned int, long unsigned int *); -}; - -enum cpufreq_table_sorting { - CPUFREQ_TABLE_UNSORTED = 0, - CPUFREQ_TABLE_SORTED_ASCENDING = 1, - CPUFREQ_TABLE_SORTED_DESCENDING = 2, -}; - -struct cpufreq_cpuinfo { - unsigned int max_freq; - unsigned int min_freq; - unsigned int transition_latency; -}; - -struct clk; - -struct cpufreq_governor; - -struct cpufreq_frequency_table; - -struct cpufreq_stats; - -struct thermal_cooling_device; - -struct cpufreq_policy { - cpumask_var_t cpus; - cpumask_var_t related_cpus; - cpumask_var_t real_cpus; - unsigned int shared_type; - unsigned int cpu; - struct clk *clk; - struct cpufreq_cpuinfo cpuinfo; - unsigned int min; - unsigned int max; - unsigned int cur; - unsigned int suspend_freq; - unsigned int policy; - unsigned int last_policy; - struct cpufreq_governor *governor; - void *governor_data; - char last_governor[16]; - struct work_struct update; - struct freq_constraints constraints; - struct freq_qos_request *min_freq_req; - struct freq_qos_request *max_freq_req; - struct cpufreq_frequency_table *freq_table; - enum cpufreq_table_sorting freq_table_sorted; - struct list_head policy_list; - struct kobject kobj; - struct completion kobj_unregister; - struct rw_semaphore rwsem; - bool fast_switch_possible; - bool fast_switch_enabled; - bool strict_target; - bool efficiencies_available; - unsigned int transition_delay_us; - bool dvfs_possible_from_any_cpu; - bool boost_enabled; - bool boost_supported; - unsigned int cached_target_freq; - unsigned int cached_resolved_idx; - bool transition_ongoing; - spinlock_t transition_lock; - wait_queue_head_t transition_wait; - struct task_struct *transition_task; - struct cpufreq_stats *stats; - void *driver_data; - struct thermal_cooling_device *cdev; - struct notifier_block nb_min; - struct notifier_block nb_max; -}; - -struct cpufreq_governor { - char name[16]; - int (*init)(struct cpufreq_policy *); - void (*exit)(struct cpufreq_policy *); - int (*start)(struct cpufreq_policy *); - void (*stop)(struct cpufreq_policy *); - void (*limits)(struct cpufreq_policy *); - ssize_t (*show_setspeed)(struct cpufreq_policy *, char *); - int (*store_setspeed)(struct cpufreq_policy *, unsigned int); - struct list_head governor_list; - struct module *owner; - u8 flags; -}; - -struct cpufreq_frequency_table { - unsigned int flags; - unsigned int driver_data; - unsigned int frequency; -}; - -struct em_dbg_info { - struct em_perf_domain *pd; - int ps_id; -}; - -enum hrtimer_base_type { - HRTIMER_BASE_MONOTONIC = 0, - HRTIMER_BASE_REALTIME = 1, - HRTIMER_BASE_BOOTTIME = 2, - HRTIMER_BASE_TAI = 3, - HRTIMER_BASE_MONOTONIC_SOFT = 4, - HRTIMER_BASE_REALTIME_SOFT = 5, - HRTIMER_BASE_BOOTTIME_SOFT = 6, - HRTIMER_BASE_TAI_SOFT = 7, - HRTIMER_MAX_CLOCK_BASES = 8, -}; - -typedef struct { - raw_spinlock_t *lock; -} class_raw_spinlock_irq_t; - -typedef struct { - void *lock; -} class_rcu_t; - -struct kernel_stat { - long unsigned int irqs_sum; - unsigned int softirqs[10]; -}; - -enum { - IRQS_AUTODETECT = 1, - IRQS_SPURIOUS_DISABLED = 2, - IRQS_POLL_INPROGRESS = 8, - IRQS_ONESHOT = 32, - IRQS_REPLAY = 64, - IRQS_WAITING = 128, - IRQS_PENDING = 512, - IRQS_SUSPENDED = 2048, - IRQS_TIMINGS = 4096, - IRQS_NMI = 8192, - IRQS_SYSFS = 16384, -}; - -enum { - _IRQ_DEFAULT_INIT_FLAGS = 0, - _IRQ_PER_CPU = 512, - _IRQ_LEVEL = 256, - _IRQ_NOPROBE = 1024, - _IRQ_NOREQUEST = 2048, - _IRQ_NOTHREAD = 65536, - _IRQ_NOAUTOEN = 4096, - _IRQ_NO_BALANCING = 8192, - _IRQ_NESTED_THREAD = 32768, - _IRQ_PER_CPU_DEVID = 131072, - _IRQ_IS_POLLED = 262144, - _IRQ_DISABLE_UNLAZY = 524288, - _IRQ_HIDDEN = 1048576, - _IRQ_NO_DEBUG = 2097152, - _IRQF_MODIFY_MASK = 2080527, -}; - -typedef struct { - raw_spinlock_t *lock; -} class_raw_spinlock_t; - -struct tasklet_struct { - struct tasklet_struct *next; - long unsigned int state; - atomic_t count; - bool use_callback; - union { - void (*func)(long unsigned int); - void (*callback)(struct tasklet_struct *); - }; - long unsigned int data; -}; - -enum { - TASKLET_STATE_SCHED = 0, - TASKLET_STATE_RUN = 1, -}; - -struct irq_sim_ops { - int (*irq_sim_irq_requested)(struct irq_domain *, irq_hw_number_t, void *); - void (*irq_sim_irq_released)(struct irq_domain *, irq_hw_number_t, void *); -}; - -struct irq_sim_work_ctx { - struct irq_work work; - unsigned int irq_count; - long unsigned int *pending; - struct irq_domain *domain; - struct irq_sim_ops ops; - void *user_data; -}; - -struct irq_sim_irq_ctx { - bool enabled; - struct irq_sim_work_ctx *work_ctx; -}; - -typedef void (*call_rcu_func_t)(struct callback_head *, rcu_callback_t); - -struct rcu_gp_oldstate { - long unsigned int rgos_norm; - long unsigned int rgos_exp; -}; - -typedef int (*task_call_f)(struct task_struct *, void *); - -struct rcu_cblist { - struct callback_head *head; - struct callback_head **tail; - long int len; -}; - -struct rcu_synchronize { - struct callback_head head; - struct completion completion; - struct rcu_gp_oldstate oldstate; -}; - -struct trace_event_raw_rcu_utilization { - struct trace_entry ent; - const char *s; - char __data[0]; -}; - -struct trace_event_raw_rcu_stall_warning { - struct trace_entry ent; - const char *rcuname; - const char *msg; - char __data[0]; -}; - -struct trace_event_data_offsets_rcu_utilization {}; - -struct trace_event_data_offsets_rcu_stall_warning {}; - -typedef void (*btf_trace_rcu_utilization)(void *, const char *); - -typedef void (*btf_trace_rcu_stall_warning)(void *, const char *, const char *); - -struct rcu_tasks; - -typedef void (*rcu_tasks_gp_func_t)(struct rcu_tasks *); - -typedef void (*pregp_func_t)(struct list_head *); - -typedef void (*pertask_func_t)(struct task_struct *, struct list_head *); - -typedef void (*postscan_func_t)(struct list_head *); - -typedef void (*holdouts_func_t)(struct list_head *, bool, bool *); - -typedef void (*postgp_func_t)(struct rcu_tasks *); - -struct rcu_tasks_percpu; - -struct rcu_tasks { - struct rcuwait cbs_wait; - raw_spinlock_t cbs_gbl_lock; - struct mutex tasks_gp_mutex; - int gp_state; - int gp_sleep; - int init_fract; - long unsigned int gp_jiffies; - long unsigned int gp_start; - long unsigned int tasks_gp_seq; - long unsigned int n_ipis; - long unsigned int n_ipis_fails; - struct task_struct *kthread_ptr; - long unsigned int lazy_jiffies; - rcu_tasks_gp_func_t gp_func; - pregp_func_t pregp_func; - pertask_func_t pertask_func; - postscan_func_t postscan_func; - holdouts_func_t holdouts_func; - postgp_func_t postgp_func; - call_rcu_func_t call_func; - unsigned int wait_state; - struct rcu_tasks_percpu *rtpcpu; - struct rcu_tasks_percpu **rtpcp_array; - int percpu_enqueue_shift; - int percpu_enqueue_lim; - int percpu_dequeue_lim; - long unsigned int percpu_dequeue_gpseq; - struct mutex barrier_q_mutex; - atomic_t barrier_q_count; - struct completion barrier_q_completion; - long unsigned int barrier_q_seq; - long unsigned int barrier_q_start; - char *name; - char *kname; -}; - -struct rcu_tasks_percpu { - struct rcu_segcblist cblist; - raw_spinlock_t lock; - long unsigned int rtp_jiffies; - long unsigned int rtp_n_lock_retries; - struct timer_list lazy_timer; - unsigned int urgent_gp; - struct work_struct rtp_work; - struct irq_work rtp_irq_work; - struct callback_head barrier_q_head; - struct list_head rtp_blkd_tasks; - struct list_head rtp_exit_list; - int cpu; - int index; - struct rcu_tasks *rtpp; -}; - -struct trc_stall_chk_rdr { - int nesting; - int ipi_to_cpu; - u8 needqs; -}; - -typedef int (*klp_shadow_ctor_t)(void *, void *, void *); - -typedef void (*klp_shadow_dtor_t)(void *, void *); - -struct klp_shadow { - struct hlist_node node; - struct callback_head callback_head; - void *obj; - long unsigned int id; - char data[0]; -}; - -struct klp_func { - const char *old_name; - void *new_func; - long unsigned int old_sympos; - void *old_func; - struct kobject kobj; - struct list_head node; - struct list_head stack_node; - long unsigned int old_size; - long unsigned int new_size; - bool nop; - bool patched; - bool transition; -}; - -struct klp_object; - -struct klp_callbacks { - int (*pre_patch)(struct klp_object *); - void (*post_patch)(struct klp_object *); - void (*pre_unpatch)(struct klp_object *); - void (*post_unpatch)(struct klp_object *); - bool post_unpatch_enabled; -}; - -struct klp_object { - const char *name; - struct klp_func *funcs; - struct klp_callbacks callbacks; - struct kobject kobj; - struct list_head func_list; - struct list_head node; - struct module *mod; - bool dynamic; - bool patched; -}; - -struct klp_state { - long unsigned int id; - unsigned int version; - void *data; -}; - -struct klp_patch { - struct module *mod; - struct klp_object *objs; - struct klp_state *states; - bool replace; - struct list_head list; - struct kobject kobj; - struct list_head obj_list; - bool enabled; - bool forced; - struct work_struct free_work; - struct completion finish; -}; - -enum pci_p2pdma_map_type { - PCI_P2PDMA_MAP_UNKNOWN = 0, - PCI_P2PDMA_MAP_NONE = 1, - PCI_P2PDMA_MAP_NOT_SUPPORTED = 2, - PCI_P2PDMA_MAP_BUS_ADDR = 3, - PCI_P2PDMA_MAP_THRU_HOST_BRIDGE = 4, -}; - -struct pci_p2pdma_map_state { - struct dev_pagemap *pgmap; - enum pci_p2pdma_map_type map; - u64 bus_off; -}; - -struct debugfs_u32_array { - u32 *array; - u32 n_elements; -}; - -struct cma_memrange { - long unsigned int base_pfn; - long unsigned int count; - union { - long unsigned int early_pfn; - long unsigned int *bitmap; - }; - struct debugfs_u32_array dfs_bitmap; -}; - -struct cma_kobject; - -struct cma { - long unsigned int count; - long unsigned int available_count; - unsigned int order_per_bit; - spinlock_t lock; - struct mutex alloc_mutex; - struct hlist_head mem_head; - spinlock_t mem_head_lock; - char name[64]; - int nranges; - struct cma_memrange ranges[8]; - atomic64_t nr_pages_succeeded; - atomic64_t nr_pages_failed; - atomic64_t nr_pages_released; - struct cma_kobject *cma_kobj; - long unsigned int flags; - int nid; -}; - -typedef struct { - void *lock; -} class_rcu_tasks_trace_t; - -struct trace_event_raw_sys_enter { - struct trace_entry ent; - long int id; - long unsigned int args[6]; - char __data[0]; -}; - -struct trace_event_raw_sys_exit { - struct trace_entry ent; - long int id; - long int ret; - char __data[0]; -}; - -struct trace_event_data_offsets_sys_enter {}; - -struct trace_event_data_offsets_sys_exit {}; - -typedef void (*btf_trace_sys_enter)(void *, struct pt_regs *, long int); - -typedef void (*btf_trace_sys_exit)(void *, struct pt_regs *, long int); - -struct load_info { - const char *name; - struct module *mod; - Elf64_Ehdr *hdr; - long unsigned int len; - Elf64_Shdr *sechdrs; - char *secstrings; - char *strtab; - long unsigned int symoffs; - long unsigned int stroffs; - long unsigned int init_typeoffs; - long unsigned int core_typeoffs; - bool sig_ok; - long unsigned int mod_kallsyms_init_off; - struct page **pages; - unsigned int max_pages; - unsigned int used_pages; - struct { - unsigned int sym; - unsigned int str; - unsigned int mod; - unsigned int vers; - unsigned int info; - unsigned int pcpu; - unsigned int vers_ext_crc; - unsigned int vers_ext_name; - } index; -}; - -typedef enum { - ZSTD_error_no_error = 0, - ZSTD_error_GENERIC = 1, - ZSTD_error_prefix_unknown = 10, - ZSTD_error_version_unsupported = 12, - ZSTD_error_frameParameter_unsupported = 14, - ZSTD_error_frameParameter_windowTooLarge = 16, - ZSTD_error_corruption_detected = 20, - ZSTD_error_checksum_wrong = 22, - ZSTD_error_literals_headerWrong = 24, - ZSTD_error_dictionary_corrupted = 30, - ZSTD_error_dictionary_wrong = 32, - ZSTD_error_dictionaryCreation_failed = 34, - ZSTD_error_parameter_unsupported = 40, - ZSTD_error_parameter_combination_unsupported = 41, - ZSTD_error_parameter_outOfBound = 42, - ZSTD_error_tableLog_tooLarge = 44, - ZSTD_error_maxSymbolValue_tooLarge = 46, - ZSTD_error_maxSymbolValue_tooSmall = 48, - ZSTD_error_cannotProduce_uncompressedBlock = 49, - ZSTD_error_stabilityCondition_notRespected = 50, - ZSTD_error_stage_wrong = 60, - ZSTD_error_init_missing = 62, - ZSTD_error_memory_allocation = 64, - ZSTD_error_workSpace_tooSmall = 66, - ZSTD_error_dstSize_tooSmall = 70, - ZSTD_error_srcSize_wrong = 72, - ZSTD_error_dstBuffer_null = 74, - ZSTD_error_noForwardProgress_destFull = 80, - ZSTD_error_noForwardProgress_inputEmpty = 82, - ZSTD_error_frameIndex_tooLarge = 100, - ZSTD_error_seekableIO = 102, - ZSTD_error_dstBuffer_wrong = 104, - ZSTD_error_srcBuffer_wrong = 105, - ZSTD_error_sequenceProducer_failed = 106, - ZSTD_error_externalSequences_invalid = 107, - ZSTD_error_maxCode = 120, -} ZSTD_ErrorCode; - -typedef u16 uint16_t; - -typedef uint16_t U16; - -typedef uint8_t BYTE; - -typedef uint32_t U32; - -typedef struct { - U16 nextState; - BYTE nbAdditionalBits; - BYTE nbBits; - U32 baseValue; -} ZSTD_seqSymbol; - -typedef U32 HUF_DTable; - -typedef struct { - ZSTD_seqSymbol LLTable[513]; - ZSTD_seqSymbol OFTable[257]; - ZSTD_seqSymbol MLTable[513]; - HUF_DTable hufTable[4097]; - U32 rep[3]; - U32 workspace[157]; -} ZSTD_entropyDTables_t; - -typedef enum { - ZSTD_frame = 0, - ZSTD_skippableFrame = 1, -} ZSTD_FrameType_e; - -typedef struct { - long long unsigned int frameContentSize; - long long unsigned int windowSize; - unsigned int blockSizeMax; - ZSTD_FrameType_e frameType; - unsigned int headerSize; - unsigned int dictID; - unsigned int checksumFlag; - unsigned int _reserved1; - unsigned int _reserved2; -} ZSTD_FrameHeader; - -typedef uint64_t U64; - -typedef enum { - bt_raw = 0, - bt_rle = 1, - bt_compressed = 2, - bt_reserved = 3, -} blockType_e; - -typedef enum { - ZSTDds_getFrameHeaderSize = 0, - ZSTDds_decodeFrameHeader = 1, - ZSTDds_decodeBlockHeader = 2, - ZSTDds_decompressBlock = 3, - ZSTDds_decompressLastBlock = 4, - ZSTDds_checkChecksum = 5, - ZSTDds_decodeSkippableHeader = 6, - ZSTDds_skipFrame = 7, -} ZSTD_dStage; - -struct xxh64_state { - uint64_t total_len; - uint64_t v1; - uint64_t v2; - uint64_t v3; - uint64_t v4; - uint64_t mem64[4]; - uint32_t memsize; -}; - -typedef enum { - ZSTD_f_zstd1 = 0, - ZSTD_f_zstd1_magicless = 1, -} ZSTD_format_e; - -typedef enum { - ZSTD_d_validateChecksum = 0, - ZSTD_d_ignoreChecksum = 1, -} ZSTD_forceIgnoreChecksum_e; - -typedef void * (*ZSTD_allocFunction)(void *, size_t); - -typedef void (*ZSTD_freeFunction)(void *, void *); - -typedef struct { - ZSTD_allocFunction customAlloc; - ZSTD_freeFunction customFree; - void *opaque; -} ZSTD_customMem; - -typedef enum { - ZSTD_use_indefinitely = -1, - ZSTD_dont_use = 0, - ZSTD_use_once = 1, -} ZSTD_dictUses_e; - -struct ZSTD_DDict_s; - -typedef struct ZSTD_DDict_s ZSTD_DDict; - -typedef struct { - const ZSTD_DDict **ddictPtrTable; - size_t ddictPtrTableSize; - size_t ddictPtrCount; -} ZSTD_DDictHashSet; - -typedef enum { - ZSTD_rmd_refSingleDDict = 0, - ZSTD_rmd_refMultipleDDicts = 1, -} ZSTD_refMultipleDDicts_e; - -typedef enum { - zdss_init = 0, - zdss_loadHeader = 1, - zdss_read = 2, - zdss_load = 3, - zdss_flush = 4, -} ZSTD_dStreamStage; - -typedef enum { - ZSTD_bm_buffered = 0, - ZSTD_bm_stable = 1, -} ZSTD_bufferMode_e; - -struct ZSTD_outBuffer_s { - void *dst; - size_t size; - size_t pos; -}; - -typedef struct ZSTD_outBuffer_s ZSTD_outBuffer; - -typedef enum { - ZSTD_not_in_dst = 0, - ZSTD_in_dst = 1, - ZSTD_split = 2, -} ZSTD_litLocation_e; - -struct ZSTD_DCtx_s { - const ZSTD_seqSymbol *LLTptr; - const ZSTD_seqSymbol *MLTptr; - const ZSTD_seqSymbol *OFTptr; - const HUF_DTable *HUFptr; - ZSTD_entropyDTables_t entropy; - U32 workspace[640]; - const void *previousDstEnd; - const void *prefixStart; - const void *virtualStart; - const void *dictEnd; - size_t expected; - ZSTD_FrameHeader fParams; - U64 processedCSize; - U64 decodedSize; - blockType_e bType; - ZSTD_dStage stage; - U32 litEntropy; - U32 fseEntropy; - struct xxh64_state xxhState; - size_t headerSize; - ZSTD_format_e format; - ZSTD_forceIgnoreChecksum_e forceIgnoreChecksum; - U32 validateChecksum; - const BYTE *litPtr; - ZSTD_customMem customMem; - size_t litSize; - size_t rleSize; - size_t staticSize; - int isFrameDecompression; - int bmi2; - ZSTD_DDict *ddictLocal; - const ZSTD_DDict *ddict; - U32 dictID; - int ddictIsCold; - ZSTD_dictUses_e dictUses; - ZSTD_DDictHashSet *ddictSet; - ZSTD_refMultipleDDicts_e refMultipleDDicts; - int disableHufAsm; - int maxBlockSizeParam; - ZSTD_dStreamStage streamStage; - char *inBuff; - size_t inBuffSize; - size_t inPos; - size_t maxWindowSize; - char *outBuff; - size_t outBuffSize; - size_t outStart; - size_t outEnd; - size_t lhSize; - U32 hostageByte; - int noForwardProgress; - ZSTD_bufferMode_e outBufferMode; - ZSTD_outBuffer expectedOutBuffer; - BYTE *litBuffer; - const BYTE *litBufferEnd; - ZSTD_litLocation_e litBufferLocation; - BYTE litExtraBuffer[65568]; - BYTE headerBuffer[18]; - size_t oversizedDuration; -}; - -typedef struct ZSTD_DCtx_s ZSTD_DCtx; - -struct ZSTD_inBuffer_s { - const void *src; - size_t size; - size_t pos; -}; - -typedef struct ZSTD_inBuffer_s ZSTD_inBuffer; - -typedef ZSTD_DCtx ZSTD_DStream; - -typedef ZSTD_ErrorCode zstd_error_code; - -typedef ZSTD_inBuffer zstd_in_buffer; - -typedef ZSTD_outBuffer zstd_out_buffer; - -typedef ZSTD_DStream zstd_dstream; - -typedef ZSTD_FrameHeader zstd_frame_header; - -enum mod_mem_type { - MOD_TEXT = 0, - MOD_DATA = 1, - MOD_RODATA = 2, - MOD_RO_AFTER_INIT = 3, - MOD_INIT_TEXT = 4, - MOD_INIT_DATA = 5, - MOD_INIT_RODATA = 6, - MOD_MEM_NUM_TYPES = 7, - MOD_INVALID = -1, -}; - -enum { - PROC_ENTRY_PERMANENT = 1, - PROC_ENTRY_proc_read_iter = 2, - PROC_ENTRY_proc_compat_ioctl = 4, - PROC_ENTRY_proc_lseek = 8, - PROC_ENTRY_FORCE_LOOKUP = 128, -}; - -struct proc_ops { - unsigned int proc_flags; - int (*proc_open)(struct inode *, struct file *); - ssize_t (*proc_read)(struct file *, char *, size_t, loff_t *); - ssize_t (*proc_read_iter)(struct kiocb *, struct iov_iter *); - ssize_t (*proc_write)(struct file *, const char *, size_t, loff_t *); - loff_t (*proc_lseek)(struct file *, loff_t, int); - int (*proc_release)(struct inode *, struct file *); - __poll_t (*proc_poll)(struct file *, struct poll_table_struct *); - long int (*proc_ioctl)(struct file *, unsigned int, long unsigned int); - long int (*proc_compat_ioctl)(struct file *, unsigned int, long unsigned int); - int (*proc_mmap)(struct file *, struct vm_area_struct *); - long unsigned int (*proc_get_unmapped_area)(struct file *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); -}; - -struct module_use { - struct list_head source_list; - struct list_head target_list; - struct module *source; - struct module *target; -}; - -struct modversion_info { - long unsigned int crc; - char name[56]; -}; - -enum mod_license { - NOT_GPL_ONLY = 0, - GPL_ONLY = 1, -}; - -struct find_symbol_arg { - const char *name; - bool gplok; - bool warn; - struct module *owner; - const u32 *crc; - const struct kernel_symbol *sym; - enum mod_license license; -}; - -struct modversion_info_ext { - size_t remaining; - const u32 *crc; - const char *name; -}; - -typedef bool (*stack_trace_consume_fn)(void *, long unsigned int); - -struct stacktrace_cookie { - long unsigned int *store; - unsigned int size; - unsigned int skip; - unsigned int len; -}; - -struct hrtimer_sleeper { - struct hrtimer timer; - struct task_struct *task; -}; - -typedef s64 int64_t; - -enum clocksource_ids { - CSID_GENERIC = 0, - CSID_ARM_ARCH_COUNTER = 1, - CSID_S390_TOD = 2, - CSID_X86_TSC_EARLY = 3, - CSID_X86_TSC = 4, - CSID_X86_KVM_CLK = 5, - CSID_X86_ART = 6, - CSID_MAX = 7, -}; - -struct clocksource_base; - -struct clocksource { - u64 (*read)(struct clocksource *); - u64 mask; - u32 mult; - u32 shift; - u64 max_idle_ns; - u32 maxadj; - u32 uncertainty_margin; - u64 max_cycles; - u64 max_raw_delta; - const char *name; - struct list_head list; - u32 freq_khz; - int rating; - enum clocksource_ids id; - enum vdso_clock_mode vdso_clock_mode; - long unsigned int flags; - struct clocksource_base *base; - int (*enable)(struct clocksource *); - void (*disable)(struct clocksource *); - void (*suspend)(struct clocksource *); - void (*resume)(struct clocksource *); - void (*mark_unstable)(struct clocksource *); - void (*tick_stable)(struct clocksource *); - struct list_head wd_list; - u64 cs_last; - u64 wd_last; - struct module *owner; -}; - -struct clocksource_base { - enum clocksource_ids id; - u32 freq_khz; - u64 offset; - u32 numerator; - u32 denominator; -}; - -enum wd_read_status { - WD_READ_SUCCESS = 0, - WD_READ_UNSTABLE = 1, - WD_READ_SKIP = 2, -}; - -typedef __kernel_timer_t timer_t; - -struct sigqueue { - struct list_head list; - int flags; - kernel_siginfo_t info; - struct ucounts *ucounts; -}; - -struct itimerspec64 { - struct timespec64 it_interval; - struct timespec64 it_value; -}; - -struct __kernel_timex_timeval { - __kernel_time64_t tv_sec; - long long int tv_usec; -}; - -struct __kernel_timex { - unsigned int modes; - long long int offset; - long long int freq; - long long int maxerror; - long long int esterror; - int status; - long long int constant; - long long int precision; - long long int tolerance; - struct __kernel_timex_timeval time; - long long int tick; - long long int ppsfreq; - long long int jitter; - int shift; - long long int stabil; - long long int jitcnt; - long long int calcnt; - long long int errcnt; - long long int stbcnt; - int tai; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum alarmtimer_type { - ALARM_REALTIME = 0, - ALARM_BOOTTIME = 1, - ALARM_NUMTYPE = 2, - ALARM_REALTIME_FREEZER = 3, - ALARM_BOOTTIME_FREEZER = 4, -}; - -struct alarm { - struct timerqueue_node node; - struct hrtimer timer; - void (*function)(struct alarm *, ktime_t); - enum alarmtimer_type type; - int state; - void *data; -}; - -struct cpu_timer { - struct timerqueue_node node; - struct timerqueue_head *head; - struct pid *pid; - struct list_head elist; - bool firing; - bool nanosleep; - struct task_struct *handling; -}; - -struct k_clock; - -struct k_itimer { - struct hlist_node t_hash; - struct hlist_node list; - timer_t it_id; - clockid_t it_clock; - int it_sigev_notify; - enum pid_type it_pid_type; - struct signal_struct *it_signal; - const struct k_clock *kclock; - spinlock_t it_lock; - int it_status; - bool it_sig_periodic; - s64 it_overrun; - s64 it_overrun_last; - unsigned int it_signal_seq; - unsigned int it_sigqueue_seq; - ktime_t it_interval; - struct hlist_node ignored_list; - union { - struct pid *it_pid; - struct task_struct *it_process; - }; - struct sigqueue sigq; - rcuref_t rcuref; - union { - struct { - struct hrtimer timer; - } real; - struct cpu_timer cpu; - struct { - struct alarm alarmtimer; - } alarm; - } it; - struct callback_head rcu; - long: 64; - long: 64; - long: 64; -}; - -struct k_clock { - int (*clock_getres)(const clockid_t, struct timespec64 *); - int (*clock_set)(const clockid_t, const struct timespec64 *); - int (*clock_get_timespec)(const clockid_t, struct timespec64 *); - ktime_t (*clock_get_ktime)(const clockid_t); - int (*clock_adj)(const clockid_t, struct __kernel_timex *); - int (*timer_create)(struct k_itimer *); - int (*nsleep)(const clockid_t, int, const struct timespec64 *); - int (*timer_set)(struct k_itimer *, int, struct itimerspec64 *, struct itimerspec64 *); - int (*timer_del)(struct k_itimer *); - void (*timer_get)(struct k_itimer *, struct itimerspec64 *); - void (*timer_rearm)(struct k_itimer *); - s64 (*timer_forward)(struct k_itimer *, ktime_t); - ktime_t (*timer_remaining)(struct k_itimer *, ktime_t); - int (*timer_try_to_cancel)(struct k_itimer *); - void (*timer_arm)(struct k_itimer *, ktime_t, bool, bool); - void (*timer_wait_running)(struct k_itimer *); -}; - -enum posix_timer_state { - POSIX_TIMER_DISARMED = 0, - POSIX_TIMER_ARMED = 1, - POSIX_TIMER_REQUEUE_PENDING = 2, -}; - -struct __kernel_old_itimerval { - struct __kernel_old_timeval it_interval; - struct __kernel_old_timeval it_value; -}; - -struct old_itimerval32 { - struct old_timeval32 it_interval; - struct old_timeval32 it_value; -}; - -enum tick_device_mode { - TICKDEV_MODE_PERIODIC = 0, - TICKDEV_MODE_ONESHOT = 1, -}; - -struct tick_device { - struct clock_event_device *evtdev; - enum tick_device_mode mode; -}; - -struct proc_timens_offset { - int clockid; - struct timespec64 val; -}; - -struct timens_offset { - s64 sec; - u64 nsec; -}; - -struct arch_vdso_time_data {}; - -struct vdso_timestamp { - u64 sec; - u64 nsec; -}; - -struct vdso_clock { - u32 seq; - s32 clock_mode; - u64 cycle_last; - u64 max_cycles; - u64 mask; - u32 mult; - u32 shift; - union { - struct vdso_timestamp basetime[12]; - struct timens_offset offset[12]; - }; -}; - -struct vdso_time_data { - struct arch_vdso_time_data arch_data; - struct vdso_clock clock_data[2]; - struct vdso_clock aux_clock_data[8]; - s32 tz_minuteswest; - s32 tz_dsttime; - u32 hrtimer_res; - u32 __unused; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct rt_mutex_base { - raw_spinlock_t wait_lock; - struct rb_root_cached waiters; - struct task_struct *owner; -}; - -union futex_key { - struct { - u64 i_seq; - long unsigned int pgoff; - unsigned int offset; - } shared; - struct { - union { - struct mm_struct *mm; - u64 __tmp; - }; - long unsigned int address; - unsigned int offset; - } private; - struct { - u64 ptr; - long unsigned int word; - unsigned int offset; - unsigned int node; - } both; -}; - -struct futex_pi_state { - struct list_head list; - struct rt_mutex_base pi_mutex; - struct task_struct *owner; - refcount_t refcount; - union futex_key key; -}; - -typedef u32 compat_size_t; - -struct futex_waitv { - __u64 val; - __u64 uaddr; - __u32 flags; - __u32 __reserved; -}; - -struct futex_q; - -typedef void futex_wake_fn(struct wake_q_head *, struct futex_q *); - -struct futex_q { - struct plist_node list; - struct task_struct *task; - spinlock_t *lock_ptr; - futex_wake_fn *wake; - void *wake_data; - union futex_key key; - struct futex_pi_state *pi_state; - struct rt_mutex_waiter *rt_waiter; - union futex_key *requeue_pi_key; - u32 bitset; - atomic_t requeue_state; - bool drop_hb_ref; -}; - -struct futex_vector { - struct futex_waitv w; - struct futex_q q; -}; - -struct trace_event_raw_csd_queue_cpu { - struct trace_entry ent; - unsigned int cpu; - void *callsite; - void *func; - void *csd; - char __data[0]; -}; - -struct trace_event_raw_csd_function { - struct trace_entry ent; - void *func; - void *csd; - char __data[0]; -}; - -struct trace_event_data_offsets_csd_queue_cpu {}; - -struct trace_event_data_offsets_csd_function {}; - -typedef void (*btf_trace_csd_queue_cpu)(void *, const unsigned int, long unsigned int, smp_call_func_t, call_single_data_t *); - -typedef void (*btf_trace_csd_function_entry)(void *, smp_call_func_t, call_single_data_t *); - -typedef void (*btf_trace_csd_function_exit)(void *, smp_call_func_t, call_single_data_t *); - -struct call_function_data { - call_single_data_t *csd; - cpumask_var_t cpumask; - cpumask_var_t cpumask_ipi; -}; - -struct smp_call_on_cpu_struct { - struct work_struct work; - struct completion done; - int (*func)(void *); - void *data; - int ret; - int cpu; -}; - -enum key_need_perm { - KEY_NEED_UNSPECIFIED = 0, - KEY_NEED_VIEW = 1, - KEY_NEED_READ = 2, - KEY_NEED_WRITE = 3, - KEY_NEED_SEARCH = 4, - KEY_NEED_LINK = 5, - KEY_NEED_SETATTR = 6, - KEY_NEED_UNLINK = 7, - KEY_SYSADMIN_OVERRIDE = 8, - KEY_AUTHTOKEN_OVERRIDE = 9, - KEY_DEFER_PERM_CHECK = 10, -}; - -struct __key_reference_with_attributes; - -typedef struct __key_reference_with_attributes *key_ref_t; - -struct user_key_payload { - struct callback_head rcu; - short unsigned int datalen; - long: 0; - char data[0]; -}; - -struct config_group; - -struct config_item_type; - -struct config_item { - char *ci_name; - char ci_namebuf[20]; - struct kref ci_kref; - struct list_head ci_entry; - struct config_item *ci_parent; - struct config_group *ci_group; - const struct config_item_type *ci_type; - struct dentry *ci_dentry; -}; - -struct configfs_subsystem; - -struct config_group { - struct config_item cg_item; - struct list_head cg_children; - struct configfs_subsystem *cg_subsys; - struct list_head default_groups; - struct list_head group_entry; -}; - -struct configfs_item_operations; - -struct configfs_group_operations; - -struct configfs_attribute; - -struct configfs_bin_attribute; - -struct config_item_type { - struct module *ct_owner; - struct configfs_item_operations *ct_item_ops; - struct configfs_group_operations *ct_group_ops; - struct configfs_attribute **ct_attrs; - struct configfs_bin_attribute **ct_bin_attrs; -}; - -struct configfs_item_operations { - void (*release)(struct config_item *); - int (*allow_link)(struct config_item *, struct config_item *); - void (*drop_link)(struct config_item *, struct config_item *); -}; - -struct configfs_group_operations { - struct config_item * (*make_item)(struct config_group *, const char *); - struct config_group * (*make_group)(struct config_group *, const char *); - void (*disconnect_notify)(struct config_group *, struct config_item *); - void (*drop_item)(struct config_group *, struct config_item *); - bool (*is_visible)(struct config_item *, struct configfs_attribute *, int); - bool (*is_bin_visible)(struct config_item *, struct configfs_bin_attribute *, int); -}; - -struct configfs_attribute { - const char *ca_name; - struct module *ca_owner; - umode_t ca_mode; - ssize_t (*show)(struct config_item *, char *); - ssize_t (*store)(struct config_item *, const char *, size_t); -}; - -struct configfs_bin_attribute { - struct configfs_attribute cb_attr; - void *cb_private; - size_t cb_max_size; - ssize_t (*read)(struct config_item *, void *, size_t); - ssize_t (*write)(struct config_item *, const void *, size_t); -}; - -struct configfs_subsystem { - struct config_group su_group; - struct mutex su_mutex; -}; - -struct dm_crypt_key { - unsigned int key_size; - char key_desc[128]; - u8 data[256]; -}; - -struct keys_header { - unsigned int total_keys; - struct dm_crypt_key keys[0]; -}; - -struct config_key { - struct config_item item; - const char *description; -}; - -enum key_being_used_for { - VERIFYING_MODULE_SIGNATURE = 0, - VERIFYING_FIRMWARE_SIGNATURE = 1, - VERIFYING_KEXEC_PE_SIGNATURE = 2, - VERIFYING_KEY_SIGNATURE = 3, - VERIFYING_KEY_SELF_SIGNATURE = 4, - VERIFYING_UNSPECIFIED_SIGNATURE = 5, - NR__KEY_BEING_USED_FOR = 6, -}; - -struct memblock_region { - phys_addr_t base; - phys_addr_t size; - enum memblock_flags flags; - int nid; -}; - -struct memblock_type { - long unsigned int cnt; - long unsigned int max; - phys_addr_t total_size; - struct memblock_region *regions; - char *name; -}; - -struct memblock { - bool bottom_up; - phys_addr_t current_limit; - struct memblock_type memory; - struct memblock_type reserved; -}; - -enum kernel_read_file_id { - READING_UNKNOWN = 0, - READING_FIRMWARE = 1, - READING_MODULE = 2, - READING_KEXEC_IMAGE = 3, - READING_KEXEC_INITRAMFS = 4, - READING_POLICY = 5, - READING_X509_CERTIFICATE = 6, - READING_MAX_ID = 7, -}; - -struct sha256_block_state { - u32 h[8]; -}; - -struct __sha256_ctx { - struct sha256_block_state state; - u64 bytecount; - u8 buf[64]; -}; - -struct sha256_ctx { - struct __sha256_ctx ctx; -}; - -struct kexec_sha_region { - long unsigned int start; - long unsigned int len; -}; - -struct cgroup_taskset { - struct list_head src_csets; - struct list_head dst_csets; - int nr_tasks; - int ssid; - struct list_head *csets; - struct css_set *cur_cset; - struct task_struct *cur_task; -}; - -enum { - __PERCPU_REF_ATOMIC = 1, - __PERCPU_REF_DEAD = 2, - __PERCPU_REF_ATOMIC_DEAD = 3, - __PERCPU_REF_FLAG_BITS = 2, -}; - -enum { - CSS_NO_REF = 1, - CSS_ONLINE = 2, - CSS_RELEASED = 4, - CSS_VISIBLE = 8, - CSS_DYING = 16, -}; - -enum { - CFTYPE_ONLY_ON_ROOT = 1, - CFTYPE_NOT_ON_ROOT = 2, - CFTYPE_NS_DELEGATABLE = 4, - CFTYPE_NO_PREFIX = 8, - CFTYPE_WORLD_WRITABLE = 16, - CFTYPE_DEBUG = 32, - __CFTYPE_ONLY_ON_DFL = 65536, - __CFTYPE_NOT_ON_DFL = 131072, - __CFTYPE_ADDED = 262144, -}; - -struct css_task_iter { - struct cgroup_subsys *ss; - unsigned int flags; - struct list_head *cset_pos; - struct list_head *cset_head; - struct list_head *tcset_pos; - struct list_head *tcset_head; - struct list_head *task_pos; - struct list_head *cur_tasks_head; - struct css_set *cur_cset; - struct css_set *cur_dcset; - struct task_struct *cur_task; - struct list_head iters_node; -}; - -enum freezer_state_flags { - CGROUP_FREEZER_ONLINE = 1, - CGROUP_FREEZING_SELF = 2, - CGROUP_FREEZING_PARENT = 4, - CGROUP_FROZEN = 8, - CGROUP_FREEZING = 6, -}; - -struct freezer { - struct cgroup_subsys_state css; - unsigned int state; -}; - -enum { - CGRP_ROOT_NOPREFIX = 2, - CGRP_ROOT_XATTR = 4, - CGRP_ROOT_NS_DELEGATE = 8, - CGRP_ROOT_FAVOR_DYNMODS = 16, - CGRP_ROOT_CPUSET_V2_MODE = 65536, - CGRP_ROOT_MEMORY_LOCAL_EVENTS = 131072, - CGRP_ROOT_MEMORY_RECURSIVE_PROT = 262144, - CGRP_ROOT_MEMORY_HUGETLB_ACCOUNTING = 524288, - CGRP_ROOT_PIDS_LOCAL_EVENTS = 1048576, -}; - -enum pidcg_event { - PIDCG_MAX = 0, - PIDCG_FORKFAIL = 1, - NR_PIDCG_EVENTS = 2, -}; - -struct pids_cgroup { - struct cgroup_subsys_state css; - atomic64_t counter; - atomic64_t limit; - int64_t watermark; - struct cgroup_file events_file; - struct cgroup_file events_local_file; - atomic64_t events[2]; - atomic64_t events_local[2]; -}; - -enum misc_res_type { - MISC_CG_RES_SEV = 0, - MISC_CG_RES_SEV_ES = 1, - MISC_CG_RES_TDX = 2, - MISC_CG_RES_TYPES = 3, -}; - -struct misc_res { - u64 max; - atomic64_t watermark; - atomic64_t usage; - atomic64_t events; - atomic64_t events_local; -}; - -struct misc_cg { - struct cgroup_subsys_state css; - struct cgroup_file events_file; - struct cgroup_file events_local_file; - struct misc_res res[3]; -}; - -typedef int __kernel_mqd_t; - -typedef __kernel_mqd_t mqd_t; - -enum audit_state { - AUDIT_STATE_DISABLED = 0, - AUDIT_STATE_BUILD = 1, - AUDIT_STATE_RECORD = 2, -}; - -struct audit_stamp { - struct timespec64 ctime; - unsigned int serial; -}; - -struct lsm_prop_selinux { - u32 secid; -}; - -struct smack_known; - -struct lsm_prop_smack { - struct smack_known *skp; -}; - -struct aa_label; - -struct lsm_prop_apparmor { - struct aa_label *label; -}; - -struct lsm_prop_bpf { - u32 secid; -}; - -struct lsm_prop { - struct lsm_prop_selinux selinux; - struct lsm_prop_smack smack; - struct lsm_prop_apparmor apparmor; - struct lsm_prop_bpf bpf; -}; - -struct audit_cap_data { - kernel_cap_t permitted; - kernel_cap_t inheritable; - union { - unsigned int fE; - kernel_cap_t effective; - }; - kernel_cap_t ambient; - kuid_t rootid; -}; - -struct audit_names { - struct list_head list; - struct filename *name; - int name_len; - bool hidden; - long unsigned int ino; - dev_t dev; - umode_t mode; - kuid_t uid; - kgid_t gid; - dev_t rdev; - struct lsm_prop oprop; - struct audit_cap_data fcap; - unsigned int fcap_ver; - unsigned char type; - bool should_free; -}; - -struct mq_attr { - __kernel_long_t mq_flags; - __kernel_long_t mq_maxmsg; - __kernel_long_t mq_msgsize; - __kernel_long_t mq_curmsgs; - __kernel_long_t __reserved[4]; -}; - -struct open_how { - __u64 flags; - __u64 mode; - __u64 resolve; -}; - -struct audit_ntp_val { - long long int oldval; - long long int newval; -}; - -struct audit_ntp_data { - struct audit_ntp_val vals[6]; -}; - -struct audit_proctitle { - int len; - char *value; -}; - -struct audit_aux_data; - -struct __kernel_sockaddr_storage; - -struct audit_tree_refs; - -struct audit_context { - int dummy; - enum { - AUDIT_CTX_UNUSED = 0, - AUDIT_CTX_SYSCALL = 1, - AUDIT_CTX_URING = 2, - } context; - enum audit_state state; - enum audit_state current_state; - struct audit_stamp stamp; - int major; - int uring_op; - long unsigned int argv[4]; - long int return_code; - u64 prio; - int return_valid; - struct audit_names preallocated_names[5]; - int name_count; - struct list_head names_list; - char *filterkey; - struct path pwd; - struct audit_aux_data *aux; - struct audit_aux_data *aux_pids; - struct __kernel_sockaddr_storage *sockaddr; - size_t sockaddr_len; - pid_t ppid; - kuid_t uid; - kuid_t euid; - kuid_t suid; - kuid_t fsuid; - kgid_t gid; - kgid_t egid; - kgid_t sgid; - kgid_t fsgid; - long unsigned int personality; - int arch; - pid_t target_pid; - kuid_t target_auid; - kuid_t target_uid; - unsigned int target_sessionid; - struct lsm_prop target_ref; - char target_comm[16]; - struct audit_tree_refs *trees; - struct audit_tree_refs *first_trees; - struct list_head killed_trees; - int tree_count; - int type; - union { - struct { - int nargs; - long int args[6]; - } socketcall; - struct { - kuid_t uid; - kgid_t gid; - umode_t mode; - struct lsm_prop oprop; - int has_perm; - uid_t perm_uid; - gid_t perm_gid; - umode_t perm_mode; - long unsigned int qbytes; - } ipc; - struct { - mqd_t mqdes; - struct mq_attr mqstat; - } mq_getsetattr; - struct { - mqd_t mqdes; - int sigev_signo; - } mq_notify; - struct { - mqd_t mqdes; - size_t msg_len; - unsigned int msg_prio; - struct timespec64 abs_timeout; - } mq_sendrecv; - struct { - int oflag; - umode_t mode; - struct mq_attr attr; - } mq_open; - struct { - pid_t pid; - struct audit_cap_data cap; - } capset; - struct { - int fd; - int flags; - } mmap; - struct open_how openat2; - struct { - int argc; - } execve; - struct { - const char *name; - } module; - struct { - struct audit_ntp_data ntp_data; - struct timespec64 tk_injoffset; - } time; - }; - int fds[2]; - struct audit_proctitle proctitle; -}; - -enum dentry_flags { - DCACHE_OP_HASH = 1, - DCACHE_OP_COMPARE = 2, - DCACHE_OP_REVALIDATE = 4, - DCACHE_OP_DELETE = 8, - DCACHE_OP_PRUNE = 16, - DCACHE_DISCONNECTED = 32, - DCACHE_REFERENCED = 64, - DCACHE_DONTCACHE = 128, - DCACHE_CANT_MOUNT = 256, - DCACHE_GENOCIDE = 512, - DCACHE_SHRINK_LIST = 1024, - DCACHE_OP_WEAK_REVALIDATE = 2048, - DCACHE_NFSFS_RENAMED = 4096, - DCACHE_FSNOTIFY_PARENT_WATCHED = 8192, - DCACHE_DENTRY_KILLED = 16384, - DCACHE_MOUNTED = 32768, - DCACHE_NEED_AUTOMOUNT = 65536, - DCACHE_MANAGE_TRANSIT = 131072, - DCACHE_LRU_LIST = 262144, - DCACHE_ENTRY_TYPE = 3670016, - DCACHE_MISS_TYPE = 0, - DCACHE_WHITEOUT_TYPE = 524288, - DCACHE_DIRECTORY_TYPE = 1048576, - DCACHE_AUTODIR_TYPE = 1572864, - DCACHE_REGULAR_TYPE = 2097152, - DCACHE_SPECIAL_TYPE = 2621440, - DCACHE_SYMLINK_TYPE = 3145728, - DCACHE_NOKEY_NAME = 4194304, - DCACHE_OP_REAL = 8388608, - DCACHE_PAR_LOOKUP = 16777216, - DCACHE_DENTRY_CURSOR = 33554432, - DCACHE_NORCU = 67108864, -}; - -struct fsnotify_mark_connector { - spinlock_t lock; - unsigned char type; - unsigned char prio; - short unsigned int flags; - union { - void *obj; - struct fsnotify_mark_connector *destroy_next; - }; - struct hlist_head list; -}; - -struct fsnotify_sb_info { - struct fsnotify_mark_connector *sb_marks; - atomic_long_t watched_objects[3]; -}; - -enum { - Audit_equal = 0, - Audit_not_equal = 1, - Audit_bitmask = 2, - Audit_bittest = 3, - Audit_lt = 4, - Audit_gt = 5, - Audit_le = 6, - Audit_ge = 7, - Audit_bad = 8, -}; - -struct audit_field; - -struct audit_watch; - -struct audit_tree; - -struct audit_fsnotify_mark; - -struct audit_krule { - u32 pflags; - u32 flags; - u32 listnr; - u32 action; - u32 mask[64]; - u32 buflen; - u32 field_count; - char *filterkey; - struct audit_field *fields; - struct audit_field *arch_f; - struct audit_field *inode_f; - struct audit_watch *watch; - struct audit_tree *tree; - struct audit_fsnotify_mark *exe; - struct list_head rlist; - struct list_head list; - u64 prio; -}; - -struct audit_field { - u32 type; - union { - u32 val; - kuid_t uid; - kgid_t gid; - struct { - char *lsm_str; - void *lsm_rule; - }; - }; - u32 op; -}; - -struct audit_parent; - -struct audit_watch { - refcount_t count; - dev_t dev; - char *path; - long unsigned int ino; - struct audit_parent *parent; - struct list_head wlist; - struct list_head rules; -}; - -struct fsnotify_group; - -struct fsnotify_iter_info; - -struct fsnotify_mark; - -struct fsnotify_event; - -struct fsnotify_ops { - int (*handle_event)(struct fsnotify_group *, u32, const void *, int, struct inode *, const struct qstr *, u32, struct fsnotify_iter_info *); - int (*handle_inode_event)(struct fsnotify_mark *, u32, struct inode *, struct inode *, const struct qstr *, u32); - void (*free_group_priv)(struct fsnotify_group *); - void (*freeing_mark)(struct fsnotify_mark *, struct fsnotify_group *); - void (*free_event)(struct fsnotify_group *, struct fsnotify_event *); - void (*free_mark)(struct fsnotify_mark *); -}; - -enum fsnotify_group_prio { - FSNOTIFY_PRIO_NORMAL = 0, - FSNOTIFY_PRIO_CONTENT = 1, - FSNOTIFY_PRIO_PRE_CONTENT = 2, - __FSNOTIFY_PRIO_NUM = 3, -}; - -struct inotify_group_private_data { - spinlock_t idr_lock; - struct idr idr; - struct ucounts *ucounts; -}; - -struct fanotify_group_private_data { - struct hlist_head *merge_hash; - struct list_head access_list; - wait_queue_head_t access_waitq; - int flags; - int f_flags; - struct ucounts *ucounts; - mempool_t error_events_pool; -}; - -struct fsnotify_group { - const struct fsnotify_ops *ops; - refcount_t refcnt; - spinlock_t notification_lock; - struct list_head notification_list; - wait_queue_head_t notification_waitq; - unsigned int q_len; - unsigned int max_events; - enum fsnotify_group_prio priority; - bool shutdown; - int flags; - unsigned int owner_flags; - struct mutex mark_mutex; - atomic_t user_waits; - struct list_head marks_list; - struct fasync_struct *fsn_fa; - struct fsnotify_event *overflow_event; - struct mem_cgroup *memcg; - struct user_namespace *user_ns; - union { - void *private; - struct inotify_group_private_data inotify_data; - struct fanotify_group_private_data fanotify_data; - }; -}; - -struct fsnotify_iter_info { - struct fsnotify_mark *marks[6]; - struct fsnotify_group *current_group; - unsigned int report_mask; - int srcu_idx; -}; - -struct fsnotify_mark { - __u32 mask; - refcount_t refcnt; - struct fsnotify_group *group; - struct list_head g_list; - spinlock_t lock; - struct hlist_node obj_list; - struct fsnotify_mark_connector *connector; - __u32 ignore_mask; - unsigned int flags; -}; - -struct fsnotify_event { - struct list_head list; -}; - -enum fsnotify_obj_type { - FSNOTIFY_OBJ_TYPE_ANY = -1, - FSNOTIFY_OBJ_TYPE_INODE = 0, - FSNOTIFY_OBJ_TYPE_VFSMOUNT = 1, - FSNOTIFY_OBJ_TYPE_SB = 2, - FSNOTIFY_OBJ_TYPE_MNTNS = 3, - FSNOTIFY_OBJ_TYPE_COUNT = 4, - FSNOTIFY_OBJ_TYPE_DETACHED = 4, -}; - -typedef short unsigned int __kernel_sa_family_t; - -struct __kernel_sockaddr_storage { - union { - struct { - __kernel_sa_family_t ss_family; - char __data[126]; - }; - void *__align; - }; -}; - -struct audit_entry { - struct list_head list; - struct callback_head rcu; - struct audit_krule rule; -}; - -struct audit_parent { - struct list_head watches; - struct fsnotify_mark mark; -}; - -typedef struct { - void *lock; -} class_jump_label_lock_t; - -typedef struct { - void *lock; -} class_cpus_read_lock_t; - -enum { - FTRACE_OPS_FL_ENABLED = 1, - FTRACE_OPS_FL_DYNAMIC = 2, - FTRACE_OPS_FL_SAVE_REGS = 4, - FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED = 8, - FTRACE_OPS_FL_RECURSION = 16, - FTRACE_OPS_FL_STUB = 32, - FTRACE_OPS_FL_INITIALIZED = 64, - FTRACE_OPS_FL_DELETED = 128, - FTRACE_OPS_FL_ADDING = 256, - FTRACE_OPS_FL_REMOVING = 512, - FTRACE_OPS_FL_MODIFYING = 1024, - FTRACE_OPS_FL_ALLOC_TRAMP = 2048, - FTRACE_OPS_FL_IPMODIFY = 4096, - FTRACE_OPS_FL_PID = 8192, - FTRACE_OPS_FL_RCU = 16384, - FTRACE_OPS_FL_TRACE_ARRAY = 32768, - FTRACE_OPS_FL_PERMANENT = 65536, - FTRACE_OPS_FL_DIRECT = 131072, - FTRACE_OPS_FL_SUBOP = 262144, - FTRACE_OPS_FL_GRAPH = 524288, -}; - -typedef void (*rethook_handler_t)(struct rethook_node *, void *, long unsigned int, struct pt_regs *); - -typedef u8 kprobe_opcode_t; - -struct kprobe; - -struct arch_specific_insn { - kprobe_opcode_t *insn; - unsigned int boostable: 1; - unsigned char size; - union { - unsigned char opcode; - struct { - unsigned char type; - } jcc; - struct { - unsigned char type; - unsigned char asize; - } loop; - struct { - unsigned char reg; - } indirect; - }; - s32 rel32; - void (*emulate_op)(struct kprobe *, struct pt_regs *); - int tp_len; -}; - -typedef int (*kprobe_pre_handler_t)(struct kprobe *, struct pt_regs *); - -typedef void (*kprobe_post_handler_t)(struct kprobe *, struct pt_regs *, long unsigned int); - -struct kprobe { - struct hlist_node hlist; - struct list_head list; - long unsigned int nmissed; - kprobe_opcode_t *addr; - const char *symbol_name; - unsigned int offset; - kprobe_pre_handler_t pre_handler; - kprobe_post_handler_t post_handler; - kprobe_opcode_t opcode; - struct arch_specific_insn ainsn; - u32 flags; -}; - -struct arch_optimized_insn { - kprobe_opcode_t copied_insn[4]; - kprobe_opcode_t *insn; - size_t size; -}; - -struct prev_kprobe { - struct kprobe *kp; - long unsigned int status; - long unsigned int old_flags; - long unsigned int saved_flags; -}; - -struct kprobe_ctlblk { - long unsigned int kprobe_status; - long unsigned int kprobe_old_flags; - long unsigned int kprobe_saved_flags; - struct prev_kprobe prev_kprobe; -}; - -struct kretprobe_instance; - -typedef int (*kretprobe_handler_t)(struct kretprobe_instance *, struct pt_regs *); - -struct kretprobe_instance { - struct rethook_node node; - char data[0]; -}; - -struct kretprobe { - struct kprobe kp; - kretprobe_handler_t handler; - kretprobe_handler_t entry_handler; - int maxactive; - int nmissed; - size_t data_size; - struct rethook *rh; -}; - -struct kretprobe_blackpoint { - const char *name; - void *addr; -}; - -struct kprobe_blacklist_entry { - struct list_head list; - long unsigned int start_addr; - long unsigned int end_addr; -}; - -struct kprobe_insn_cache { - struct mutex mutex; - void * (*alloc)(void); - void (*free)(void *); - const char *sym; - struct list_head pages; - size_t insn_size; - int nr_garbage; -}; - -struct optimized_kprobe { - struct kprobe kp; - struct list_head list; - struct arch_optimized_insn optinsn; -}; - -enum perf_record_ksymbol_type { - PERF_RECORD_KSYMBOL_TYPE_UNKNOWN = 0, - PERF_RECORD_KSYMBOL_TYPE_BPF = 1, - PERF_RECORD_KSYMBOL_TYPE_OOL = 2, - PERF_RECORD_KSYMBOL_TYPE_MAX = 3, -}; - -enum execmem_type { - EXECMEM_DEFAULT = 0, - EXECMEM_MODULE_TEXT = 0, - EXECMEM_KPROBES = 1, - EXECMEM_FTRACE = 2, - EXECMEM_BPF = 3, - EXECMEM_MODULE_DATA = 4, - EXECMEM_TYPE_MAX = 5, -}; - -struct kprobe_insn_page { - struct list_head list; - kprobe_opcode_t *insns; - struct kprobe_insn_cache *cache; - int nused; - int ngarbage; - char slot_used[0]; -}; - -enum kprobe_slot_state { - SLOT_CLEAN = 0, - SLOT_DIRTY = 1, - SLOT_USED = 2, -}; - -struct debuggerinfo_struct { - void *debuggerinfo; - struct task_struct *task; - int exception_state; - int ret_state; - int irq_depth; - int enter_kgdb; - bool rounding_up; -}; - -struct __ksymtab { - long unsigned int value; - const char *mod_name; - long unsigned int mod_start; - long unsigned int mod_end; - const char *sec_name; - long unsigned int sec_start; - long unsigned int sec_end; - const char *sym_name; - long unsigned int sym_start; - long unsigned int sym_end; -}; - -typedef struct __ksymtab kdb_symtab_t; - -typedef short unsigned int u_short; - -struct atomic_notifier_head { - spinlock_t lock; - struct notifier_block *head; -}; - -typedef unsigned int pipe_index_t; - -struct pipe_buffer; - -struct watch_queue; - -struct pipe_inode_info { - struct mutex mutex; - wait_queue_head_t rd_wait; - wait_queue_head_t wr_wait; - union { - long unsigned int head_tail; - struct { - pipe_index_t head; - pipe_index_t tail; - }; - }; - unsigned int max_usage; - unsigned int ring_size; - unsigned int nr_accounted; - unsigned int readers; - unsigned int writers; - unsigned int files; - unsigned int r_counter; - unsigned int w_counter; - bool poll_usage; - bool note_loss; - struct page *tmp_page[2]; - struct fasync_struct *fasync_readers; - struct fasync_struct *fasync_writers; - struct pipe_buffer *bufs; - struct user_struct *user; - struct watch_queue *watch_queue; -}; - -typedef struct poll_table_struct poll_table; - -enum { - RELAY_STATS_BUF_FULL = 1, - RELAY_STATS_WRT_BIG = 2, - RELAY_STATS_LAST = 2, -}; - -struct rchan_buf_stats { - unsigned int full_count; - unsigned int big_count; -}; - -struct rchan; - -struct rchan_buf { - void *start; - void *data; - size_t offset; - size_t subbufs_produced; - size_t subbufs_consumed; - struct rchan *chan; - wait_queue_head_t read_wait; - struct irq_work wakeup_work; - struct dentry *dentry; - struct kref kref; - struct rchan_buf_stats stats; - struct page **page_array; - unsigned int page_count; - unsigned int finalized; - size_t *padding; - size_t bytes_consumed; - size_t early_bytes; - unsigned int cpu; - long: 64; - long: 64; -}; - -struct rchan_callbacks; - -struct rchan { - u32 version; - size_t subbuf_size; - size_t n_subbufs; - size_t alloc_size; - const struct rchan_callbacks *cb; - struct kref kref; - void *private_data; - struct rchan_buf **buf; - int is_global; - struct list_head list; - struct dentry *parent; - int has_base_filename; - char base_filename[255]; -}; - -struct rchan_callbacks { - int (*subbuf_start)(struct rchan_buf *, void *, void *); - struct dentry * (*create_buf_file)(const char *, struct dentry *, umode_t, struct rchan_buf *, int *); - int (*remove_buf_file)(struct dentry *); -}; - -struct pipe_buf_operations; - -struct pipe_buffer { - struct page *page; - unsigned int offset; - unsigned int len; - const struct pipe_buf_operations *ops; - unsigned int flags; - long unsigned int private; -}; - -struct pipe_buf_operations { - int (*confirm)(struct pipe_inode_info *, struct pipe_buffer *); - void (*release)(struct pipe_inode_info *, struct pipe_buffer *); - bool (*try_steal)(struct pipe_inode_info *, struct pipe_buffer *); - bool (*get)(struct pipe_inode_info *, struct pipe_buffer *); -}; - -struct trace_buffer_meta { - __u32 meta_page_size; - __u32 meta_struct_len; - __u32 subbuf_size; - __u32 nr_subbufs; - struct { - __u64 lost_events; - __u32 id; - __u32 read; - } reader; - __u64 flags; - __u64 entries; - __u64 overrun; - __u64 read; - __u64 Reserved1; - __u64 Reserved2; -}; - -enum ring_buffer_type { - RINGBUF_TYPE_DATA_TYPE_LEN_MAX = 28, - RINGBUF_TYPE_PADDING = 29, - RINGBUF_TYPE_TIME_EXTEND = 30, - RINGBUF_TYPE_TIME_STAMP = 31, -}; - -typedef bool (*ring_buffer_cond_fn)(void *); - -struct rb_irq_work { - struct irq_work work; - wait_queue_head_t waiters; - wait_queue_head_t full_waiters; - atomic_t seq; - bool waiters_pending; - bool full_waiters_pending; - bool wakeup_full; -}; - -struct ring_buffer_per_cpu; - -struct ring_buffer_meta; - -struct trace_buffer { - unsigned int flags; - int cpus; - atomic_t record_disabled; - atomic_t resizing; - cpumask_var_t cpumask; - struct lock_class_key *reader_lock_key; - struct mutex mutex; - struct ring_buffer_per_cpu **buffers; - struct hlist_node node; - u64 (*clock)(void); - struct rb_irq_work irq_work; - bool time_stamp_abs; - long unsigned int range_addr_start; - long unsigned int range_addr_end; - struct ring_buffer_meta *meta; - unsigned int subbuf_size; - unsigned int subbuf_order; - unsigned int max_data_size; -}; - -enum ring_buffer_flags { - RB_FL_OVERWRITE = 1, -}; - -struct ftrace_hash { - long unsigned int size_bits; - struct hlist_head *buckets; - long unsigned int count; - long unsigned int flags; - struct callback_head rcu; -}; - -struct ftrace_graph_ent { - long unsigned int func; - int depth; -} __attribute__((packed)); - -struct ftrace_graph_ret { - long unsigned int func; - long unsigned int retval; - int depth; - unsigned int overrun; -}; - -struct fgraph_ops; - -typedef void (*trace_func_graph_ret_t)(struct ftrace_graph_ret *, struct fgraph_ops *, struct ftrace_regs *); - -typedef int (*trace_func_graph_ent_t)(struct ftrace_graph_ent *, struct fgraph_ops *, struct ftrace_regs *); - -struct fgraph_ops { - trace_func_graph_ent_t entryfunc; - trace_func_graph_ret_t retfunc; - struct ftrace_ops ops; - void *private; - trace_func_graph_ent_t saved_func; - int idx; -}; - -struct prog_entry; - -struct event_filter { - struct prog_entry *prog; - char *filter_string; -}; - -struct trace_array_cpu; - -struct array_buffer { - struct trace_array *tr; - struct trace_buffer *buffer; - struct trace_array_cpu *data; - u64 time_start; - int cpu; -}; - -struct trace_module_delta; - -struct trace_pid_list; - -struct trace_options; - -struct cond_snapshot; - -struct trace_func_repeats; - -struct trace_array { - struct list_head list; - char *name; - struct array_buffer array_buffer; - struct array_buffer max_buffer; - bool allocated_snapshot; - spinlock_t snapshot_trigger_lock; - unsigned int snapshot; - long unsigned int max_latency; - struct dentry *d_max_latency; - struct work_struct fsnotify_work; - struct irq_work fsnotify_irqwork; - unsigned int mapped; - long unsigned int range_addr_start; - long unsigned int range_addr_size; - char *range_name; - long int text_delta; - struct trace_module_delta *module_delta; - void *scratch; - int scratch_size; - int buffer_disabled; - struct trace_pid_list *filtered_pids; - struct trace_pid_list *filtered_no_pids; - arch_spinlock_t max_lock; - int sys_refcount_enter; - int sys_refcount_exit; - struct trace_event_file *enter_syscall_files[470]; - struct trace_event_file *exit_syscall_files[470]; - int stop_count; - int clock_id; - int nr_topts; - bool clear_trace; - int buffer_percent; - unsigned int n_err_log_entries; - struct tracer *current_trace; - unsigned int trace_flags; - unsigned char trace_flags_index[32]; - unsigned int flags; - raw_spinlock_t start_lock; - const char *system_names; - struct list_head err_log; - struct dentry *dir; - struct dentry *options; - struct dentry *percpu_dir; - struct eventfs_inode *event_dir; - struct trace_options *topts; - struct list_head systems; - struct list_head events; - struct list_head marker_list; - struct trace_event_file *trace_marker_file; - cpumask_var_t tracing_cpumask; - cpumask_var_t pipe_cpumask; - int ref; - int trace_ref; - struct list_head mod_events; - struct ftrace_ops *ops; - struct trace_pid_list *function_pids; - struct trace_pid_list *function_no_pids; - struct fgraph_ops *gops; - struct list_head func_probes; - struct list_head mod_trace; - struct list_head mod_notrace; - int function_enabled; - int no_filter_buffering_ref; - struct list_head hist_vars; - struct cond_snapshot *cond_snapshot; - struct trace_func_repeats *last_func_repeats; - bool ring_buffer_expanded; -}; - -struct tracer_flags; - -struct tracer { - const char *name; - int (*init)(struct trace_array *); - void (*reset)(struct trace_array *); - void (*start)(struct trace_array *); - void (*stop)(struct trace_array *); - int (*update_thresh)(struct trace_array *); - void (*open)(struct trace_iterator *); - void (*pipe_open)(struct trace_iterator *); - void (*close)(struct trace_iterator *); - void (*pipe_close)(struct trace_iterator *); - ssize_t (*read)(struct trace_iterator *, struct file *, char *, size_t, loff_t *); - ssize_t (*splice_read)(struct trace_iterator *, struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); - void (*print_header)(struct seq_file *); - enum print_line_t (*print_line)(struct trace_iterator *); - int (*set_flag)(struct trace_array *, u32, u32, int); - int (*flag_changed)(struct trace_array *, u32, int); - struct tracer *next; - struct tracer_flags *flags; - int enabled; - bool print_max; - bool allow_instances; - bool use_max_tr; - bool noboot; -}; - -struct buffer_page; - -struct ring_buffer_iter { - struct ring_buffer_per_cpu *cpu_buffer; - long unsigned int head; - long unsigned int next_event; - struct buffer_page *head_page; - struct buffer_page *cache_reader_page; - long unsigned int cache_read; - long unsigned int cache_pages_removed; - u64 read_stamp; - u64 page_stamp; - struct ring_buffer_event *event; - size_t event_size; - int missed_events; -}; - -struct event_subsystem; - -struct trace_subsystem_dir { - struct list_head list; - struct event_subsystem *subsystem; - struct trace_array *tr; - struct eventfs_inode *ei; - int ref_count; - int nr_events; -}; - -union lower_chunk { - union lower_chunk *next; - long unsigned int data[256]; -}; - -union upper_chunk { - union upper_chunk *next; - union lower_chunk *data[256]; -}; - -struct trace_pid_list { - raw_spinlock_t lock; - struct irq_work refill_irqwork; - union upper_chunk *upper[256]; - union upper_chunk *upper_list; - union lower_chunk *lower_list; - int free_upper_chunks; - int free_lower_chunks; -}; - -struct trace_array_cpu { - local_t disabled; - long unsigned int entries; - long unsigned int saved_latency; - long unsigned int critical_start; - long unsigned int critical_end; - long unsigned int critical_sequence; - long unsigned int nice; - long unsigned int policy; - long unsigned int rt_priority; - long unsigned int skipped_entries; - u64 preempt_timestamp; - pid_t pid; - kuid_t uid; - char comm[16]; - int ftrace_ignore_pid; - bool ignore_pid; -}; - -struct trace_option_dentry; - -struct trace_options { - struct tracer *tracer; - struct trace_option_dentry *topts; -}; - -struct tracer_opt; - -struct trace_option_dentry { - struct tracer_opt *opt; - struct tracer_flags *flags; - struct trace_array *tr; - struct dentry *entry; -}; - -typedef bool (*cond_update_fn_t)(struct trace_array *, void *); - -struct cond_snapshot { - void *cond_data; - cond_update_fn_t update; -}; - -struct trace_func_repeats { - long unsigned int ip; - long unsigned int parent_ip; - long unsigned int count; - u64 ts_last_call; -}; - -struct trace_module_delta { - struct callback_head rcu; - long int delta[0]; -}; - -struct tracer_opt { - const char *name; - u32 bit; -}; - -struct tracer_flags { - u32 val; - struct tracer_opt *opts; - struct tracer *trace; -}; - -enum trace_iterator_bits { - TRACE_ITER_PRINT_PARENT_BIT = 0, - TRACE_ITER_SYM_OFFSET_BIT = 1, - TRACE_ITER_SYM_ADDR_BIT = 2, - TRACE_ITER_VERBOSE_BIT = 3, - TRACE_ITER_RAW_BIT = 4, - TRACE_ITER_HEX_BIT = 5, - TRACE_ITER_BIN_BIT = 6, - TRACE_ITER_BLOCK_BIT = 7, - TRACE_ITER_FIELDS_BIT = 8, - TRACE_ITER_PRINTK_BIT = 9, - TRACE_ITER_ANNOTATE_BIT = 10, - TRACE_ITER_USERSTACKTRACE_BIT = 11, - TRACE_ITER_SYM_USEROBJ_BIT = 12, - TRACE_ITER_PRINTK_MSGONLY_BIT = 13, - TRACE_ITER_CONTEXT_INFO_BIT = 14, - TRACE_ITER_LATENCY_FMT_BIT = 15, - TRACE_ITER_RECORD_CMD_BIT = 16, - TRACE_ITER_RECORD_TGID_BIT = 17, - TRACE_ITER_OVERWRITE_BIT = 18, - TRACE_ITER_STOP_ON_FREE_BIT = 19, - TRACE_ITER_IRQ_INFO_BIT = 20, - TRACE_ITER_MARKERS_BIT = 21, - TRACE_ITER_EVENT_FORK_BIT = 22, - TRACE_ITER_TRACE_PRINTK_BIT = 23, - TRACE_ITER_COPY_MARKER_BIT = 24, - TRACE_ITER_PAUSE_ON_TRACE_BIT = 25, - TRACE_ITER_HASH_PTR_BIT = 26, - TRACE_ITER_FUNCTION_BIT = 27, - TRACE_ITER_FUNC_FORK_BIT = 28, - TRACE_ITER_DISPLAY_GRAPH_BIT = 29, - TRACE_ITER_STACKTRACE_BIT = 30, - TRACE_ITER_LAST_BIT = 31, -}; - -struct event_subsystem { - struct list_head list; - const char *name; - struct event_filter *filter; - int ref_count; -}; - -struct ring_buffer_meta { - int magic; - int struct_sizes; - long unsigned int total_size; - long unsigned int buffers_offset; -}; - -struct ring_buffer_cpu_meta { - long unsigned int first_buffer; - long unsigned int head_buffer; - long unsigned int commit_buffer; - __u32 subbuf_size; - __u32 nr_subbufs; - int buffers[0]; -}; - -enum { - RB_LEN_TIME_EXTEND = 8, - RB_LEN_TIME_STAMP = 8, -}; - -struct buffer_data_page { - u64 time_stamp; - local_t commit; - unsigned char data[0]; -}; - -struct buffer_data_read_page { - unsigned int order; - struct buffer_data_page *data; -}; - -struct buffer_page { - struct list_head list; - local_t write; - unsigned int read; - local_t entries; - long unsigned int real_end; - unsigned int order; - u32 id: 30; - u32 range: 1; - struct buffer_data_page *page; -}; - -struct rb_event_info { - u64 ts; - u64 delta; - u64 before; - u64 after; - long unsigned int length; - struct buffer_page *tail_page; - int add_timestamp; -}; - -enum { - RB_ADD_STAMP_NONE = 0, - RB_ADD_STAMP_EXTEND = 2, - RB_ADD_STAMP_ABSOLUTE = 4, - RB_ADD_STAMP_FORCE = 8, -}; - -enum { - RB_CTX_TRANSITION = 0, - RB_CTX_NMI = 1, - RB_CTX_IRQ = 2, - RB_CTX_SOFTIRQ = 3, - RB_CTX_NORMAL = 4, - RB_CTX_MAX = 5, -}; - -struct rb_time_struct { - local64_t time; -}; - -typedef struct rb_time_struct rb_time_t; - -struct ring_buffer_per_cpu { - int cpu; - atomic_t record_disabled; - atomic_t resize_disabled; - struct trace_buffer *buffer; - raw_spinlock_t reader_lock; - arch_spinlock_t lock; - struct lock_class_key lock_key; - struct buffer_data_page *free_page; - long unsigned int nr_pages; - unsigned int current_context; - struct list_head *pages; - long unsigned int cnt; - struct buffer_page *head_page; - struct buffer_page *tail_page; - struct buffer_page *commit_page; - struct buffer_page *reader_page; - long unsigned int lost_events; - long unsigned int last_overrun; - long unsigned int nest; - local_t entries_bytes; - local_t entries; - local_t overrun; - local_t commit_overrun; - local_t dropped_events; - local_t committing; - local_t commits; - local_t pages_touched; - local_t pages_lost; - local_t pages_read; - long int last_pages_touch; - size_t shortest_full; - long unsigned int read; - long unsigned int read_bytes; - rb_time_t write_stamp; - rb_time_t before_stamp; - u64 event_stamp[5]; - u64 read_stamp; - long unsigned int pages_removed; - unsigned int mapped; - unsigned int user_mapped; - struct mutex mapping_lock; - long unsigned int *subbuf_ids; - struct trace_buffer_meta *meta_page; - struct ring_buffer_cpu_meta *ring_meta; - long int nr_pages_to_update; - struct list_head new_pages; - struct work_struct update_pages_work; - struct completion update_done; - struct rb_irq_work irq_work; -}; - -struct rb_wait_data { - struct rb_irq_work *irq_work; - int seq; -}; - -enum trace_flag_type { - TRACE_FLAG_IRQS_OFF = 1, - TRACE_FLAG_NEED_RESCHED_LAZY = 2, - TRACE_FLAG_NEED_RESCHED = 4, - TRACE_FLAG_HARDIRQ = 8, - TRACE_FLAG_SOFTIRQ = 16, - TRACE_FLAG_PREEMPT_RESCHED = 32, - TRACE_FLAG_NMI = 64, - TRACE_FLAG_BH_OFF = 128, -}; - -enum trace_type { - __TRACE_FIRST_TYPE = 0, - TRACE_FN = 1, - TRACE_CTX = 2, - TRACE_WAKE = 3, - TRACE_STACK = 4, - TRACE_PRINT = 5, - TRACE_BPRINT = 6, - TRACE_MMIO_RW = 7, - TRACE_MMIO_MAP = 8, - TRACE_BRANCH = 9, - TRACE_GRAPH_RET = 10, - TRACE_GRAPH_ENT = 11, - TRACE_GRAPH_RETADDR_ENT = 12, - TRACE_USER_STACK = 13, - TRACE_BLK = 14, - TRACE_BPUTS = 15, - TRACE_HWLAT = 16, - TRACE_OSNOISE = 17, - TRACE_TIMERLAT = 18, - TRACE_RAW_DATA = 19, - TRACE_FUNC_REPEATS = 20, - __TRACE_LAST_TYPE = 21, -}; - -struct hwlat_entry { - struct trace_entry ent; - u64 duration; - u64 outer_duration; - u64 nmi_total_ts; - struct timespec64 timestamp; - unsigned int nmi_count; - unsigned int seqnum; - unsigned int count; -}; - -struct trace_min_max_param { - struct mutex *lock; - u64 *val; - u64 *min; - u64 *max; -}; - -enum { - MODE_NONE = 0, - MODE_ROUND_ROBIN = 1, - MODE_PER_CPU = 2, - MODE_MAX = 3, -}; - -struct hwlat_kthread_data { - struct task_struct *kthread; - u64 nmi_ts_start; - u64 nmi_total_ts; - int nmi_count; - int nmi_cpu; -}; - -struct hwlat_sample { - u64 seqnum; - u64 duration; - u64 outer_duration; - u64 nmi_total_ts; - struct timespec64 timestamp; - int nmi_count; - int count; -}; - -struct hwlat_data { - struct mutex lock; - u64 count; - u64 sample_window; - u64 sample_width; - int thread_mode; -}; - -struct print_entry { - struct trace_entry ent; - long unsigned int ip; - char buf[0]; -}; - -struct trace_mmiotrace_rw { - struct trace_entry ent; - struct mmiotrace_rw rw; -}; - -struct trace_mmiotrace_map { - struct trace_entry ent; - struct mmiotrace_map map; -}; - -struct header_iter { - struct pci_dev *dev; -}; - -enum { - TRACE_FTRACE_BIT = 0, - TRACE_FTRACE_NMI_BIT = 1, - TRACE_FTRACE_IRQ_BIT = 2, - TRACE_FTRACE_SIRQ_BIT = 3, - TRACE_FTRACE_TRANSITION_BIT = 4, - TRACE_INTERNAL_BIT = 5, - TRACE_INTERNAL_NMI_BIT = 6, - TRACE_INTERNAL_IRQ_BIT = 7, - TRACE_INTERNAL_SIRQ_BIT = 8, - TRACE_INTERNAL_TRANSITION_BIT = 9, - TRACE_INTERNAL_EVENT_BIT = 10, - TRACE_INTERNAL_EVENT_NMI_BIT = 11, - TRACE_INTERNAL_EVENT_IRQ_BIT = 12, - TRACE_INTERNAL_EVENT_SIRQ_BIT = 13, - TRACE_INTERNAL_EVENT_TRANSITION_BIT = 14, - TRACE_BRANCH_BIT = 15, - TRACE_IRQ_BIT = 16, - TRACE_RECORD_RECURSION_BIT = 17, -}; - -enum { - TRACE_CTX_NMI = 0, - TRACE_CTX_IRQ = 1, - TRACE_CTX_SOFTIRQ = 2, - TRACE_CTX_NORMAL = 3, - TRACE_CTX_TRANSITION = 4, -}; - -struct __arch_ftrace_regs { - struct pt_regs regs; -}; - -enum { - FTRACE_UPDATE_CALLS = 1, - FTRACE_DISABLE_CALLS = 2, - FTRACE_UPDATE_TRACE_FUNC = 4, - FTRACE_START_FUNC_RET = 8, - FTRACE_STOP_FUNC_RET = 16, - FTRACE_MAY_SLEEP = 32, -}; - -struct ftrace_ret_stack { - long unsigned int ret; - long unsigned int func; - long unsigned int *retp; -}; - -enum { - FGRAPH_TYPE_RESERVED = 0, - FGRAPH_TYPE_BITMAP = 1, - FGRAPH_TYPE_DATA = 2, -}; - -struct ftrace_entry { - struct trace_entry ent; - long unsigned int ip; - long unsigned int parent_ip; - long unsigned int args[0]; -}; - -typedef long unsigned int perf_trace_t[1024]; - -struct ftrace_event_field { - struct list_head link; - const char *name; - const char *type; - int filter_type; - int offset; - int size; - unsigned int is_signed: 1; - unsigned int needs_test: 1; - int len; -}; - -enum { - FOLL_WRITE = 1, - FOLL_GET = 2, - FOLL_DUMP = 4, - FOLL_FORCE = 8, - FOLL_NOWAIT = 16, - FOLL_NOFAULT = 32, - FOLL_HWPOISON = 64, - FOLL_ANON = 128, - FOLL_LONGTERM = 256, - FOLL_SPLIT_PMD = 512, - FOLL_PCI_P2PDMA = 1024, - FOLL_INTERRUPTIBLE = 2048, - FOLL_HONOR_NUMA_FAULT = 4096, -}; - -enum user_reg_flag { - USER_EVENT_REG_PERSIST = 1, - USER_EVENT_REG_MULTI_FORMAT = 2, - USER_EVENT_REG_MAX = 4, -}; - -struct user_reg { - __u32 size; - __u8 enable_bit; - __u8 enable_size; - __u16 flags; - __u64 enable_addr; - __u64 name_args; - __u32 write_index; -} __attribute__((packed)); - -struct user_unreg { - __u32 size; - __u8 disable_bit; - __u8 __reserved; - __u16 __reserved2; - __u64 disable_addr; -}; - -struct dyn_event; - -struct dyn_event_operations { - struct list_head list; - int (*create)(const char *); - int (*show)(struct seq_file *, struct dyn_event *); - bool (*is_busy)(struct dyn_event *); - int (*free)(struct dyn_event *); - bool (*match)(const char *, const char *, int, const char **, struct dyn_event *); -}; - -struct dyn_event { - struct list_head list; - struct dyn_event_operations *ops; -}; - -struct user_event_group { - char *system_name; - char *system_multi_name; - struct hlist_node node; - struct mutex reg_mutex; - struct hlist_head register_table[256]; - u64 multi_id; -}; - -struct user_event { - struct user_event_group *group; - char *reg_name; - struct tracepoint tracepoint; - struct trace_event_call call; - struct trace_event_class class; - struct dyn_event devent; - struct hlist_node node; - struct list_head fields; - struct list_head validators; - struct work_struct put_work; - refcount_t refcnt; - int min_size; - int reg_flags; - char status; -}; - -struct user_event_enabler { - struct list_head mm_enablers_link; - struct user_event *event; - long unsigned int addr; - long unsigned int values; -}; - -struct user_event_enabler_fault { - struct work_struct work; - struct user_event_mm *mm; - struct user_event_enabler *enabler; - int attempt; -}; - -struct user_event_refs { - struct callback_head rcu; - int count; - struct user_event *events[0]; -}; - -struct user_event_file_info { - struct user_event_group *group; - struct user_event_refs *refs; -}; - -struct user_event_validator { - struct list_head user_event_link; - int offset; - int flags; -}; - -typedef void (*user_event_func_t)(struct user_event *, struct iov_iter *, void *, bool *); - -enum pm_qos_req_action { - PM_QOS_ADD_REQ = 0, - PM_QOS_UPDATE_REQ = 1, - PM_QOS_REMOVE_REQ = 2, -}; - -struct trace_event_raw_cpu { - struct trace_entry ent; - u32 state; - u32 cpu_id; - char __data[0]; -}; - -struct trace_event_raw_cpu_idle_miss { - struct trace_entry ent; - u32 cpu_id; - u32 state; - bool below; - char __data[0]; -}; - -struct trace_event_raw_pstate_sample { - struct trace_entry ent; - u32 core_busy; - u32 scaled_busy; - u32 from; - u32 to; - u64 mperf; - u64 aperf; - u64 tsc; - u32 freq; - u32 io_boost; - char __data[0]; -}; - -struct trace_event_raw_cpu_frequency_limits { - struct trace_entry ent; - u32 min_freq; - u32 max_freq; - u32 cpu_id; - char __data[0]; -}; - -struct trace_event_raw_device_pm_callback_start { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_driver; - u32 __data_loc_parent; - u32 __data_loc_pm_ops; - int event; - char __data[0]; -}; - -struct trace_event_raw_device_pm_callback_end { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_driver; - int error; - char __data[0]; -}; - -struct trace_event_raw_suspend_resume { - struct trace_entry ent; - const char *action; - int val; - bool start; - char __data[0]; -}; - -struct trace_event_raw_wakeup_source { - struct trace_entry ent; - u32 __data_loc_name; - u64 state; - char __data[0]; -}; - -struct trace_event_raw_cpu_latency_qos_request { - struct trace_entry ent; - s32 value; - char __data[0]; -}; - -struct trace_event_raw_pm_qos_update { - struct trace_entry ent; - enum pm_qos_req_action action; - int prev_value; - int curr_value; - char __data[0]; -}; - -struct trace_event_raw_dev_pm_qos_request { - struct trace_entry ent; - u32 __data_loc_name; - enum dev_pm_qos_req_type type; - s32 new_value; - char __data[0]; -}; - -struct trace_event_raw_guest_halt_poll_ns { - struct trace_entry ent; - bool grow; - unsigned int new; - unsigned int old; - char __data[0]; -}; - -struct trace_event_data_offsets_cpu {}; - -struct trace_event_data_offsets_cpu_idle_miss {}; - -struct trace_event_data_offsets_pstate_sample {}; - -struct trace_event_data_offsets_cpu_frequency_limits {}; - -struct trace_event_data_offsets_device_pm_callback_start { - u32 device; - const void *device_ptr_; - u32 driver; - const void *driver_ptr_; - u32 parent; - const void *parent_ptr_; - u32 pm_ops; - const void *pm_ops_ptr_; -}; - -struct trace_event_data_offsets_device_pm_callback_end { - u32 device; - const void *device_ptr_; - u32 driver; - const void *driver_ptr_; -}; - -struct trace_event_data_offsets_suspend_resume {}; - -struct trace_event_data_offsets_wakeup_source { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_cpu_latency_qos_request {}; - -struct trace_event_data_offsets_pm_qos_update {}; - -struct trace_event_data_offsets_dev_pm_qos_request { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_guest_halt_poll_ns {}; - -typedef void (*btf_trace_cpu_idle)(void *, unsigned int, unsigned int); - -typedef void (*btf_trace_cpu_idle_miss)(void *, unsigned int, unsigned int, bool); - -typedef void (*btf_trace_pstate_sample)(void *, u32, u32, u32, u32, u64, u64, u64, u32, u32); - -typedef void (*btf_trace_cpu_frequency)(void *, unsigned int, unsigned int); - -typedef void (*btf_trace_cpu_frequency_limits)(void *, struct cpufreq_policy *); - -typedef void (*btf_trace_device_pm_callback_start)(void *, struct device *, const char *, int); - -typedef void (*btf_trace_device_pm_callback_end)(void *, struct device *, int); - -typedef void (*btf_trace_suspend_resume)(void *, const char *, int, bool); - -typedef void (*btf_trace_wakeup_source_activate)(void *, const char *, unsigned int); - -typedef void (*btf_trace_wakeup_source_deactivate)(void *, const char *, unsigned int); - -typedef void (*btf_trace_pm_qos_add_request)(void *, s32); - -typedef void (*btf_trace_pm_qos_update_request)(void *, s32); - -typedef void (*btf_trace_pm_qos_remove_request)(void *, s32); - -typedef void (*btf_trace_pm_qos_update_target)(void *, enum pm_qos_req_action, int, int); - -typedef void (*btf_trace_pm_qos_update_flags)(void *, enum pm_qos_req_action, int, int); - -typedef void (*btf_trace_dev_pm_qos_add_request)(void *, const char *, enum dev_pm_qos_req_type, s32); - -typedef void (*btf_trace_dev_pm_qos_update_request)(void *, const char *, enum dev_pm_qos_req_type, s32); - -typedef void (*btf_trace_dev_pm_qos_remove_request)(void *, const char *, enum dev_pm_qos_req_type, s32); - -typedef void (*btf_trace_guest_halt_poll_ns)(void *, bool, unsigned int, unsigned int); - -enum { - BTF_KIND_UNKN = 0, - BTF_KIND_INT = 1, - BTF_KIND_PTR = 2, - BTF_KIND_ARRAY = 3, - BTF_KIND_STRUCT = 4, - BTF_KIND_UNION = 5, - BTF_KIND_ENUM = 6, - BTF_KIND_FWD = 7, - BTF_KIND_TYPEDEF = 8, - BTF_KIND_VOLATILE = 9, - BTF_KIND_CONST = 10, - BTF_KIND_RESTRICT = 11, - BTF_KIND_FUNC = 12, - BTF_KIND_FUNC_PROTO = 13, - BTF_KIND_VAR = 14, - BTF_KIND_DATASEC = 15, - BTF_KIND_FLOAT = 16, - BTF_KIND_DECL_TAG = 17, - BTF_KIND_TYPE_TAG = 18, - BTF_KIND_ENUM64 = 19, - NR_BTF_KINDS = 20, - BTF_KIND_MAX = 19, -}; - -struct btf_array { - __u32 type; - __u32 index_type; - __u32 nelems; -}; - -struct btf_param { - __u32 name_off; - __u32 type; -}; - -typedef int (*print_type_func_t)(struct trace_seq *, void *, void *); - -enum fetch_op { - FETCH_OP_NOP = 0, - FETCH_OP_REG = 1, - FETCH_OP_STACK = 2, - FETCH_OP_STACKP = 3, - FETCH_OP_RETVAL = 4, - FETCH_OP_IMM = 5, - FETCH_OP_COMM = 6, - FETCH_OP_ARG = 7, - FETCH_OP_FOFFS = 8, - FETCH_OP_DATA = 9, - FETCH_OP_EDATA = 10, - FETCH_OP_DEREF = 11, - FETCH_OP_UDEREF = 12, - FETCH_OP_ST_RAW = 13, - FETCH_OP_ST_MEM = 14, - FETCH_OP_ST_UMEM = 15, - FETCH_OP_ST_STRING = 16, - FETCH_OP_ST_USTRING = 17, - FETCH_OP_ST_SYMSTR = 18, - FETCH_OP_ST_EDATA = 19, - FETCH_OP_MOD_BF = 20, - FETCH_OP_LP_ARRAY = 21, - FETCH_OP_TP_ARG = 22, - FETCH_OP_END = 23, - FETCH_NOP_SYMBOL = 24, -}; - -struct fetch_insn { - enum fetch_op op; - union { - unsigned int param; - struct { - unsigned int size; - int offset; - }; - struct { - unsigned char basesize; - unsigned char lshift; - unsigned char rshift; - }; - long unsigned int immediate; - void *data; - }; -}; - -struct fetch_type { - const char *name; - size_t size; - bool is_signed; - bool is_string; - print_type_func_t print; - const char *fmt; - const char *fmttype; -}; - -struct probe_arg { - struct fetch_insn *code; - bool dynamic; - unsigned int offset; - unsigned int count; - const char *name; - const char *comm; - char *fmt; - const struct fetch_type *type; -}; - -struct probe_entry_arg { - struct fetch_insn *code; - unsigned int size; -}; - -struct trace_uprobe_filter { - rwlock_t rwlock; - int nr_systemwide; - struct list_head perf_events; -}; - -struct trace_probe_event { - unsigned int flags; - struct trace_event_class class; - struct trace_event_call call; - struct list_head files; - struct list_head probes; - struct trace_uprobe_filter filter[0]; -}; - -struct trace_probe { - struct list_head list; - struct trace_probe_event *event; - ssize_t size; - unsigned int nr_args; - struct probe_entry_arg *entry_arg; - struct probe_arg args[0]; -}; - -struct event_file_link { - struct trace_event_file *file; - struct list_head list; -}; - -struct traceprobe_parse_context { - struct trace_event_call *event; - const char *funcname; - const struct btf_type *proto; - const struct btf_param *params; - s32 nr_params; - struct btf *btf; - const struct btf_type *last_type; - u32 last_bitoffs; - u32 last_bitsize; - struct trace_probe *tp; - unsigned int flags; - int offset; -}; - -enum probe_print_type { - PROBE_PRINT_NORMAL = 0, - PROBE_PRINT_RETURN = 1, - PROBE_PRINT_EVENT = 2, -}; - -enum { - TP_ERR_FILE_NOT_FOUND = 0, - TP_ERR_NO_REGULAR_FILE = 1, - TP_ERR_BAD_REFCNT = 2, - TP_ERR_REFCNT_OPEN_BRACE = 3, - TP_ERR_BAD_REFCNT_SUFFIX = 4, - TP_ERR_BAD_UPROBE_OFFS = 5, - TP_ERR_BAD_MAXACT_TYPE = 6, - TP_ERR_BAD_MAXACT = 7, - TP_ERR_MAXACT_TOO_BIG = 8, - TP_ERR_BAD_PROBE_ADDR = 9, - TP_ERR_NON_UNIQ_SYMBOL = 10, - TP_ERR_BAD_RETPROBE = 11, - TP_ERR_NO_TRACEPOINT = 12, - TP_ERR_BAD_TP_NAME = 13, - TP_ERR_BAD_ADDR_SUFFIX = 14, - TP_ERR_NO_GROUP_NAME = 15, - TP_ERR_GROUP_TOO_LONG = 16, - TP_ERR_BAD_GROUP_NAME = 17, - TP_ERR_NO_EVENT_NAME = 18, - TP_ERR_EVENT_TOO_LONG = 19, - TP_ERR_BAD_EVENT_NAME = 20, - TP_ERR_EVENT_EXIST = 21, - TP_ERR_RETVAL_ON_PROBE = 22, - TP_ERR_NO_RETVAL = 23, - TP_ERR_BAD_STACK_NUM = 24, - TP_ERR_BAD_ARG_NUM = 25, - TP_ERR_BAD_VAR = 26, - TP_ERR_BAD_REG_NAME = 27, - TP_ERR_BAD_MEM_ADDR = 28, - TP_ERR_BAD_IMM = 29, - TP_ERR_IMMSTR_NO_CLOSE = 30, - TP_ERR_FILE_ON_KPROBE = 31, - TP_ERR_BAD_FILE_OFFS = 32, - TP_ERR_SYM_ON_UPROBE = 33, - TP_ERR_TOO_MANY_OPS = 34, - TP_ERR_DEREF_NEED_BRACE = 35, - TP_ERR_BAD_DEREF_OFFS = 36, - TP_ERR_DEREF_OPEN_BRACE = 37, - TP_ERR_COMM_CANT_DEREF = 38, - TP_ERR_BAD_FETCH_ARG = 39, - TP_ERR_ARRAY_NO_CLOSE = 40, - TP_ERR_BAD_ARRAY_SUFFIX = 41, - TP_ERR_BAD_ARRAY_NUM = 42, - TP_ERR_ARRAY_TOO_BIG = 43, - TP_ERR_BAD_TYPE = 44, - TP_ERR_BAD_STRING = 45, - TP_ERR_BAD_SYMSTRING = 46, - TP_ERR_BAD_BITFIELD = 47, - TP_ERR_ARG_NAME_TOO_LONG = 48, - TP_ERR_NO_ARG_NAME = 49, - TP_ERR_BAD_ARG_NAME = 50, - TP_ERR_USED_ARG_NAME = 51, - TP_ERR_ARG_TOO_LONG = 52, - TP_ERR_NO_ARG_BODY = 53, - TP_ERR_BAD_INSN_BNDRY = 54, - TP_ERR_FAIL_REG_PROBE = 55, - TP_ERR_DIFF_PROBE_TYPE = 56, - TP_ERR_DIFF_ARG_TYPE = 57, - TP_ERR_SAME_PROBE = 58, - TP_ERR_NO_EVENT_INFO = 59, - TP_ERR_BAD_ATTACH_EVENT = 60, - TP_ERR_BAD_ATTACH_ARG = 61, - TP_ERR_NO_EP_FILTER = 62, - TP_ERR_NOSUP_BTFARG = 63, - TP_ERR_NO_BTFARG = 64, - TP_ERR_NO_BTF_ENTRY = 65, - TP_ERR_BAD_VAR_ARGS = 66, - TP_ERR_NOFENTRY_ARGS = 67, - TP_ERR_DOUBLE_ARGS = 68, - TP_ERR_ARGS_2LONG = 69, - TP_ERR_ARGIDX_2BIG = 70, - TP_ERR_NO_PTR_STRCT = 71, - TP_ERR_NOSUP_DAT_ARG = 72, - TP_ERR_BAD_HYPHEN = 73, - TP_ERR_NO_BTF_FIELD = 74, - TP_ERR_BAD_BTF_TID = 75, - TP_ERR_BAD_TYPE4STR = 76, - TP_ERR_NEED_STRING_TYPE = 77, - TP_ERR_TOO_MANY_ARGS = 78, - TP_ERR_TOO_MANY_EARGS = 79, -}; - -struct trace_probe_log { - const char *subsystem; - const char **argv; - int argc; - int index; -}; - -struct rv_reactor { - const char *name; - const char *description; - void (*react)(const char *, ...); - struct list_head list; -}; - -struct rv_monitor { - const char *name; - const char *description; - bool enabled; - int (*enable)(void); - void (*disable)(void); - void (*reset)(void); - struct rv_reactor *reactor; - void (*react)(const char *, ...); - struct list_head list; - struct rv_monitor *parent; - struct dentry *root_d; -}; - -enum states_wwnr { - not_running_wwnr = 0, - running_wwnr = 1, - state_max_wwnr = 2, -}; - -enum events_wwnr { - switch_in_wwnr = 0, - switch_out_wwnr = 1, - wakeup_wwnr = 2, - event_max_wwnr = 3, -}; - -struct automaton_wwnr { - char *state_names[2]; - char *event_names[3]; - unsigned char function[6]; - unsigned char initial_state; - bool final_states[2]; -}; - -struct smp_hotplug_thread { - struct task_struct **store; - struct list_head list; - int (*thread_should_run)(unsigned int); - void (*thread_fn)(unsigned int); - void (*create)(unsigned int); - void (*setup)(unsigned int); - void (*cleanup)(unsigned int, bool); - void (*park)(unsigned int); - void (*unpark)(unsigned int); - bool selfparking; - const char *thread_comm; -}; - -struct rhash_lock_head; - -struct bucket_table { - unsigned int size; - unsigned int nest; - u32 hash_rnd; - struct list_head walkers; - struct callback_head rcu; - struct bucket_table *future_tbl; - struct lockdep_map dep_map; - long: 64; - struct rhash_lock_head *buckets[0]; -}; - -struct bpf_nh_params { - u32 nh_family; - union { - u32 ipv4_nh; - struct in6_addr ipv6_nh; - }; -}; - -struct bpf_redirect_info { - u64 tgt_index; - void *tgt_value; - struct bpf_map *map; - u32 flags; - u32 map_id; - enum bpf_map_type map_type; - struct bpf_nh_params nh; - u32 kern_flags; -}; - -struct bpf_net_context { - struct bpf_redirect_info ri; - struct list_head cpu_map_flush_list; - struct list_head dev_map_flush_list; - struct list_head xskmap_map_flush_list; -}; - -struct napi_struct; - -struct page_pool_params_fast { - unsigned int order; - unsigned int pool_size; - int nid; - struct device *dev; - struct napi_struct *napi; - enum dma_data_direction dma_dir; - unsigned int max_len; - unsigned int offset; -}; - -typedef long unsigned int netmem_ref; - -struct page_pool_alloc_stats { - u64 fast; - u64 slow; - u64 slow_high_order; - u64 empty; - u64 refill; - u64 waive; -}; - -struct pp_alloc_cache { - u32 count; - netmem_ref cache[128]; -}; - -struct ptr_ring { - int producer; - spinlock_t producer_lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - int consumer_head; - int consumer_tail; - spinlock_t consumer_lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - int size; - int batch; - void **queue; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct page_pool_params_slow { - struct net_device *netdev; - unsigned int queue_idx; - unsigned int flags; - void (*init_callback)(netmem_ref, void *); - void *init_arg; -}; - -struct memory_provider_ops; - -struct page_pool_recycle_stats; - -struct page_pool { - struct page_pool_params_fast p; - int cpuid; - u32 pages_state_hold_cnt; - bool has_init_callback: 1; - bool dma_map: 1; - bool dma_sync: 1; - bool dma_sync_for_cpu: 1; - bool system: 1; - long: 0; - __u8 __cacheline_group_begin__frag[0]; - long int frag_users; - netmem_ref frag_page; - unsigned int frag_offset; - long: 0; - __u8 __cacheline_group_end__frag[0]; - long: 64; - struct {} __cacheline_group_pad__frag; - struct delayed_work release_dw; - void (*disconnect)(void *); - long unsigned int defer_start; - long unsigned int defer_warn; - struct page_pool_alloc_stats alloc_stats; - u32 xdp_mem_id; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct pp_alloc_cache alloc; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct ptr_ring ring; - void *mp_priv; - const struct memory_provider_ops *mp_ops; - struct xarray dma_mapped; - struct page_pool_recycle_stats *recycle_stats; - atomic_t pages_state_release_cnt; - refcount_t user_cnt; - u64 destroy_cnt; - struct page_pool_params_slow slow; - struct { - struct hlist_node list; - u64 detach_time; - u32 id; - } user; - long: 64; -}; - -struct tree_descr { - const char *name; - const struct file_operations *ops; - int mode; -}; - -enum bpf_cmd { - BPF_MAP_CREATE = 0, - BPF_MAP_LOOKUP_ELEM = 1, - BPF_MAP_UPDATE_ELEM = 2, - BPF_MAP_DELETE_ELEM = 3, - BPF_MAP_GET_NEXT_KEY = 4, - BPF_PROG_LOAD = 5, - BPF_OBJ_PIN = 6, - BPF_OBJ_GET = 7, - BPF_PROG_ATTACH = 8, - BPF_PROG_DETACH = 9, - BPF_PROG_TEST_RUN = 10, - BPF_PROG_RUN = 10, - BPF_PROG_GET_NEXT_ID = 11, - BPF_MAP_GET_NEXT_ID = 12, - BPF_PROG_GET_FD_BY_ID = 13, - BPF_MAP_GET_FD_BY_ID = 14, - BPF_OBJ_GET_INFO_BY_FD = 15, - BPF_PROG_QUERY = 16, - BPF_RAW_TRACEPOINT_OPEN = 17, - BPF_BTF_LOAD = 18, - BPF_BTF_GET_FD_BY_ID = 19, - BPF_TASK_FD_QUERY = 20, - BPF_MAP_LOOKUP_AND_DELETE_ELEM = 21, - BPF_MAP_FREEZE = 22, - BPF_BTF_GET_NEXT_ID = 23, - BPF_MAP_LOOKUP_BATCH = 24, - BPF_MAP_LOOKUP_AND_DELETE_BATCH = 25, - BPF_MAP_UPDATE_BATCH = 26, - BPF_MAP_DELETE_BATCH = 27, - BPF_LINK_CREATE = 28, - BPF_LINK_UPDATE = 29, - BPF_LINK_GET_FD_BY_ID = 30, - BPF_LINK_GET_NEXT_ID = 31, - BPF_ENABLE_STATS = 32, - BPF_ITER_CREATE = 33, - BPF_LINK_DETACH = 34, - BPF_PROG_BIND_MAP = 35, - BPF_TOKEN_CREATE = 36, - BPF_PROG_STREAM_READ_BY_FD = 37, - __MAX_BPF_CMD = 38, -}; - -struct xdp_md { - __u32 data; - __u32 data_end; - __u32 data_meta; - __u32 ingress_ifindex; - __u32 rx_queue_index; - __u32 egress_ifindex; -}; - -typedef __kernel_sa_family_t sa_family_t; - -struct sockaddr { - sa_family_t sa_family; - union { - char sa_data_min[14]; - struct { - struct {} __empty_sa_data; - char sa_data[0]; - }; - }; -}; - -typedef struct { - unsigned int clock_rate; - unsigned int clock_type; - short unsigned int loopback; -} sync_serial_settings; - -typedef struct { - unsigned int clock_rate; - unsigned int clock_type; - short unsigned int loopback; - unsigned int slot_map; -} te1_settings; - -typedef struct { - short unsigned int encoding; - short unsigned int parity; -} raw_hdlc_proto; - -typedef struct { - unsigned int t391; - unsigned int t392; - unsigned int n391; - unsigned int n392; - unsigned int n393; - short unsigned int lmi; - short unsigned int dce; -} fr_proto; - -typedef struct { - unsigned int dlci; -} fr_proto_pvc; - -typedef struct { - unsigned int dlci; - char master[16]; -} fr_proto_pvc_info; - -typedef struct { - unsigned int interval; - unsigned int timeout; -} cisco_proto; - -typedef struct { - short unsigned int dce; - unsigned int modulo; - unsigned int window; - unsigned int t1; - unsigned int t2; - unsigned int n2; -} x25_hdlc_proto; - -struct ifmap { - long unsigned int mem_start; - long unsigned int mem_end; - short unsigned int base_addr; - unsigned char irq; - unsigned char dma; - unsigned char port; -}; - -struct if_settings { - unsigned int type; - unsigned int size; - union { - raw_hdlc_proto *raw_hdlc; - cisco_proto *cisco; - fr_proto *fr; - fr_proto_pvc *fr_pvc; - fr_proto_pvc_info *fr_pvc_info; - x25_hdlc_proto *x25; - sync_serial_settings *sync; - te1_settings *te1; - } ifs_ifsu; -}; - -struct ifreq { - union { - char ifrn_name[16]; - } ifr_ifrn; - union { - struct sockaddr ifru_addr; - struct sockaddr ifru_dstaddr; - struct sockaddr ifru_broadaddr; - struct sockaddr ifru_netmask; - struct sockaddr ifru_hwaddr; - short int ifru_flags; - int ifru_ivalue; - int ifru_mtu; - struct ifmap ifru_map; - char ifru_slave[16]; - char ifru_newname[16]; - void *ifru_data; - struct if_settings ifru_settings; - } ifr_ifru; -}; - -struct btf_enum { - __u32 name_off; - __s32 val; -}; - -typedef struct { - local64_t v; -} u64_stats_t; - -struct bpf_offloaded_map; - -struct bpf_map_dev_ops { - int (*map_get_next_key)(struct bpf_offloaded_map *, void *, void *); - int (*map_lookup_elem)(struct bpf_offloaded_map *, void *, void *); - int (*map_update_elem)(struct bpf_offloaded_map *, void *, void *, u64); - int (*map_delete_elem)(struct bpf_offloaded_map *, void *); -}; - -struct bpf_offloaded_map { - struct bpf_map map; - struct net_device *netdev; - const struct bpf_map_dev_ops *dev_ops; - void *dev_priv; - struct list_head offloads; -}; - -typedef u64 netdev_features_t; - -struct netdev_tc_txq { - u16 count; - u16 offset; -}; - -enum rx_handler_result { - RX_HANDLER_CONSUMED = 0, - RX_HANDLER_ANOTHER = 1, - RX_HANDLER_EXACT = 2, - RX_HANDLER_PASS = 3, -}; - -typedef enum rx_handler_result rx_handler_result_t; - -typedef rx_handler_result_t rx_handler_func_t(struct sk_buff **); - -typedef struct { - struct net *net; -} possible_net_t; - -typedef u32 xdp_features_t; - -struct net_device_stats { - union { - long unsigned int rx_packets; - atomic_long_t __rx_packets; - }; - union { - long unsigned int tx_packets; - atomic_long_t __tx_packets; - }; - union { - long unsigned int rx_bytes; - atomic_long_t __rx_bytes; - }; - union { - long unsigned int tx_bytes; - atomic_long_t __tx_bytes; - }; - union { - long unsigned int rx_errors; - atomic_long_t __rx_errors; - }; - union { - long unsigned int tx_errors; - atomic_long_t __tx_errors; - }; - union { - long unsigned int rx_dropped; - atomic_long_t __rx_dropped; - }; - union { - long unsigned int tx_dropped; - atomic_long_t __tx_dropped; - }; - union { - long unsigned int multicast; - atomic_long_t __multicast; - }; - union { - long unsigned int collisions; - atomic_long_t __collisions; - }; - union { - long unsigned int rx_length_errors; - atomic_long_t __rx_length_errors; - }; - union { - long unsigned int rx_over_errors; - atomic_long_t __rx_over_errors; - }; - union { - long unsigned int rx_crc_errors; - atomic_long_t __rx_crc_errors; - }; - union { - long unsigned int rx_frame_errors; - atomic_long_t __rx_frame_errors; - }; - union { - long unsigned int rx_fifo_errors; - atomic_long_t __rx_fifo_errors; - }; - union { - long unsigned int rx_missed_errors; - atomic_long_t __rx_missed_errors; - }; - union { - long unsigned int tx_aborted_errors; - atomic_long_t __tx_aborted_errors; - }; - union { - long unsigned int tx_carrier_errors; - atomic_long_t __tx_carrier_errors; - }; - union { - long unsigned int tx_fifo_errors; - atomic_long_t __tx_fifo_errors; - }; - union { - long unsigned int tx_heartbeat_errors; - atomic_long_t __tx_heartbeat_errors; - }; - union { - long unsigned int tx_window_errors; - atomic_long_t __tx_window_errors; - }; - union { - long unsigned int rx_compressed; - atomic_long_t __rx_compressed; - }; - union { - long unsigned int tx_compressed; - atomic_long_t __tx_compressed; - }; -}; - -struct netdev_hw_addr_list { - struct list_head list; - int count; - struct rb_root tree; -}; - -struct tipc_bearer; - -struct mpls_dev; - -enum netdev_ml_priv_type { - ML_PRIV_NONE = 0, - ML_PRIV_CAN = 1, -}; - -enum netdev_stat_type { - NETDEV_PCPU_STAT_NONE = 0, - NETDEV_PCPU_STAT_LSTATS = 1, - NETDEV_PCPU_STAT_TSTATS = 2, - NETDEV_PCPU_STAT_DSTATS = 3, -}; - -struct garp_port; - -struct mrp_port; - -struct bpf_xdp_link; - -struct bpf_xdp_entity { - struct bpf_prog *prog; - struct bpf_xdp_link *link; -}; - -struct net_device_ops; - -struct header_ops; - -struct netdev_queue; - -struct xps_dev_maps; - -struct bpf_mprog_entry; - -struct pcpu_lstats; - -struct pcpu_sw_netstats; - -struct pcpu_dstats; - -struct inet6_dev; - -struct netdev_rx_queue; - -struct netpoll_info; - -struct netdev_name_node; - -struct dev_ifalias; - -struct xdp_metadata_ops; - -struct xsk_tx_metadata_ops; - -struct net_device_core_stats; - -struct ethtool_ops; - -struct l3mdev_ops; - -struct ndisc_ops; - -struct xfrmdev_ops; - -struct tlsdev_ops; - -struct in_device; - -struct vlan_info; - -struct dsa_port; - -struct ax25_dev; - -struct wireless_dev; - -struct wpan_dev; - -struct mctp_dev; - -struct cpu_rmap; - -struct Qdisc; - -struct xdp_dev_bulk_queue; - -struct dm_hw_stat_delta; - -struct rtnl_link_ops; - -struct netdev_stat_ops; - -struct netdev_queue_mgmt_ops; - -struct dcbnl_rtnl_ops; - -struct netprio_map; - -struct phy_link_topology; - -struct phy_device; - -struct sfp_bus; - -struct macsec_ops; - -struct udp_tunnel_nic_info; - -struct udp_tunnel_nic; - -struct netdev_config; - -struct ethtool_netdev_state; - -struct rtnl_hw_stats64; - -struct devlink_port; - -struct dpll_pin; - -struct dim_irq_moder; - -struct napi_config; - -struct net_shaper_hierarchy; - -struct hwtstamp_provider; - -struct net_device { - __u8 __cacheline_group_begin__net_device_read_tx[0]; - union { - struct { - long unsigned int priv_flags: 32; - long unsigned int lltx: 1; - long unsigned int netmem_tx: 1; - }; - struct { - long unsigned int priv_flags: 32; - long unsigned int lltx: 1; - long unsigned int netmem_tx: 1; - } priv_flags_fast; - }; - const struct net_device_ops *netdev_ops; - const struct header_ops *header_ops; - struct netdev_queue *_tx; - netdev_features_t gso_partial_features; - unsigned int real_num_tx_queues; - unsigned int gso_max_size; - unsigned int gso_ipv4_max_size; - u16 gso_max_segs; - s16 num_tc; - unsigned int mtu; - short unsigned int needed_headroom; - struct netdev_tc_txq tc_to_txq[16]; - struct xps_dev_maps *xps_maps[2]; - struct nf_hook_entries *nf_hooks_egress; - struct bpf_mprog_entry *tcx_egress; - __u8 __cacheline_group_end__net_device_read_tx[0]; - __u8 __cacheline_group_begin__net_device_read_txrx[0]; - union { - struct pcpu_lstats *lstats; - struct pcpu_sw_netstats *tstats; - struct pcpu_dstats *dstats; - }; - long unsigned int state; - unsigned int flags; - short unsigned int hard_header_len; - netdev_features_t features; - struct inet6_dev *ip6_ptr; - __u8 __cacheline_group_end__net_device_read_txrx[0]; - __u8 __cacheline_group_begin__net_device_read_rx[0]; - struct bpf_prog *xdp_prog; - struct list_head ptype_specific; - int ifindex; - unsigned int real_num_rx_queues; - struct netdev_rx_queue *_rx; - unsigned int gro_max_size; - unsigned int gro_ipv4_max_size; - rx_handler_func_t *rx_handler; - void *rx_handler_data; - possible_net_t nd_net; - struct netpoll_info *npinfo; - struct bpf_mprog_entry *tcx_ingress; - __u8 __cacheline_group_end__net_device_read_rx[0]; - char name[16]; - struct netdev_name_node *name_node; - struct dev_ifalias *ifalias; - long unsigned int mem_end; - long unsigned int mem_start; - long unsigned int base_addr; - struct list_head dev_list; - struct list_head napi_list; - struct list_head unreg_list; - struct list_head close_list; - struct list_head ptype_all; - struct { - struct list_head upper; - struct list_head lower; - } adj_list; - xdp_features_t xdp_features; - const struct xdp_metadata_ops *xdp_metadata_ops; - const struct xsk_tx_metadata_ops *xsk_tx_metadata_ops; - short unsigned int gflags; - short unsigned int needed_tailroom; - netdev_features_t hw_features; - netdev_features_t wanted_features; - netdev_features_t vlan_features; - netdev_features_t hw_enc_features; - netdev_features_t mpls_features; - unsigned int min_mtu; - unsigned int max_mtu; - short unsigned int type; - unsigned char min_header_len; - unsigned char name_assign_type; - int group; - struct net_device_stats stats; - struct net_device_core_stats *core_stats; - atomic_t carrier_up_count; - atomic_t carrier_down_count; - const struct ethtool_ops *ethtool_ops; - const struct l3mdev_ops *l3mdev_ops; - const struct ndisc_ops *ndisc_ops; - const struct xfrmdev_ops *xfrmdev_ops; - const struct tlsdev_ops *tlsdev_ops; - unsigned int operstate; - unsigned char link_mode; - unsigned char if_port; - unsigned char dma; - unsigned char perm_addr[32]; - unsigned char addr_assign_type; - unsigned char addr_len; - unsigned char upper_level; - unsigned char lower_level; - u8 threaded; - short unsigned int neigh_priv_len; - short unsigned int dev_id; - short unsigned int dev_port; - int irq; - u32 priv_len; - spinlock_t addr_list_lock; - struct netdev_hw_addr_list uc; - struct netdev_hw_addr_list mc; - struct netdev_hw_addr_list dev_addrs; - struct kset *queues_kset; - unsigned int promiscuity; - unsigned int allmulti; - bool uc_promisc; - struct in_device *ip_ptr; - struct hlist_head fib_nh_head; - struct vlan_info *vlan_info; - struct dsa_port *dsa_ptr; - struct tipc_bearer *tipc_ptr; - void *atalk_ptr; - struct ax25_dev *ax25_ptr; - struct wireless_dev *ieee80211_ptr; - struct wpan_dev *ieee802154_ptr; - struct mpls_dev *mpls_ptr; - struct mctp_dev *mctp_ptr; - const unsigned char *dev_addr; - unsigned int num_rx_queues; - unsigned int xdp_zc_max_segs; - struct netdev_queue *ingress_queue; - struct nf_hook_entries *nf_hooks_ingress; - unsigned char broadcast[32]; - struct cpu_rmap *rx_cpu_rmap; - struct hlist_node index_hlist; - unsigned int num_tx_queues; - struct Qdisc *qdisc; - unsigned int tx_queue_len; - spinlock_t tx_global_lock; - struct xdp_dev_bulk_queue *xdp_bulkq; - struct hlist_head qdisc_hash[16]; - struct timer_list watchdog_timer; - int watchdog_timeo; - u32 proto_down_reason; - struct list_head todo_list; - int *pcpu_refcnt; - struct ref_tracker_dir refcnt_tracker; - struct list_head link_watch_list; - u8 reg_state; - bool dismantle; - bool moving_ns; - bool rtnl_link_initializing; - bool needs_free_netdev; - void (*priv_destructor)(struct net_device *); - void *ml_priv; - enum netdev_ml_priv_type ml_priv_type; - enum netdev_stat_type pcpu_stat_type: 8; - struct garp_port *garp_port; - struct mrp_port *mrp_port; - struct dm_hw_stat_delta *dm_private; - struct device dev; - const struct attribute_group *sysfs_groups[5]; - const struct attribute_group *sysfs_rx_queue_group; - const struct rtnl_link_ops *rtnl_link_ops; - const struct netdev_stat_ops *stat_ops; - const struct netdev_queue_mgmt_ops *queue_mgmt_ops; - unsigned int tso_max_size; - u16 tso_max_segs; - const struct dcbnl_rtnl_ops *dcbnl_ops; - u8 prio_tc_map[16]; - struct netprio_map *priomap; - struct phy_link_topology *link_topo; - struct phy_device *phydev; - struct sfp_bus *sfp_bus; - struct lock_class_key *qdisc_tx_busylock; - bool proto_down; - bool irq_affinity_auto; - bool rx_cpu_rmap_auto; - long unsigned int see_all_hwtstamp_requests: 1; - long unsigned int change_proto_down: 1; - long unsigned int netns_immutable: 1; - long unsigned int fcoe_mtu: 1; - struct list_head net_notifier_list; - const struct macsec_ops *macsec_ops; - const struct udp_tunnel_nic_info *udp_tunnel_nic_info; - struct udp_tunnel_nic *udp_tunnel_nic; - struct netdev_config *cfg; - struct netdev_config *cfg_pending; - struct ethtool_netdev_state *ethtool; - struct bpf_xdp_entity xdp_state[3]; - u8 dev_addr_shadow[32]; - netdevice_tracker linkwatch_dev_tracker; - netdevice_tracker watchdog_dev_tracker; - netdevice_tracker dev_registered_tracker; - struct rtnl_hw_stats64 *offload_xstats_l3; - struct devlink_port *devlink_port; - struct dpll_pin *dpll_pin; - struct hlist_head page_pools; - struct dim_irq_moder *irq_moder; - u64 max_pacing_offload_horizon; - struct napi_config *napi_config; - u32 num_napi_configs; - u32 napi_defer_hard_irqs; - long unsigned int gro_flush_timeout; - bool up; - bool request_ops_lock; - struct mutex lock; - struct net_shaper_hierarchy *net_shaper_hierarchy; - struct hlist_head neighbours[2]; - struct hwtstamp_provider *hwprov; - long: 64; - long: 64; - u8 priv[0]; -}; - -struct bpf_prog_stats { - u64_stats_t cnt; - u64_stats_t nsecs; - u64_stats_t misses; - struct u64_stats_sync syncp; - long: 64; -}; - -struct sock_fprog_kern { - u16 len; - struct sock_filter *filter; -}; - -struct bpf_mount_opts { - kuid_t uid; - kgid_t gid; - umode_t mode; - u64 delegate_cmds; - u64 delegate_maps; - u64 delegate_progs; - u64 delegate_attachs; -}; - -struct tc_stats { - __u64 bytes; - __u32 packets; - __u32 drops; - __u32 overlimits; - __u32 bps; - __u32 pps; - __u32 qlen; - __u32 backlog; -}; - -struct tc_sizespec { - unsigned char cell_log; - unsigned char size_log; - short int cell_align; - int overhead; - unsigned int linklayer; - unsigned int mpu; - unsigned int mtu; - unsigned int tsize; -}; - -struct skb_shared_hwtstamps { - union { - ktime_t hwtstamp; - void *netdev_data; - }; -}; - -struct dql { - unsigned int num_queued; - unsigned int adj_limit; - unsigned int last_obj_cnt; - short unsigned int stall_thrs; - long unsigned int history_head; - long unsigned int history[4]; - long: 64; - unsigned int limit; - unsigned int num_completed; - unsigned int prev_ovlimit; - unsigned int prev_num_queued; - unsigned int prev_last_obj_cnt; - unsigned int lowest_slack; - long unsigned int slack_start_time; - unsigned int max_limit; - unsigned int min_limit; - unsigned int slack_hold_time; - short unsigned int stall_max; - long unsigned int last_reap; - long unsigned int stall_cnt; -}; - -struct hh_cache { - unsigned int hh_len; - seqlock_t hh_lock; - long unsigned int hh_data[16]; -}; - -struct neigh_table; - -struct neigh_parms; - -struct neigh_ops; - -struct neighbour { - struct hlist_node hash; - struct hlist_node dev_list; - struct neigh_table *tbl; - struct neigh_parms *parms; - long unsigned int confirmed; - long unsigned int updated; - rwlock_t lock; - refcount_t refcnt; - unsigned int arp_queue_len_bytes; - struct sk_buff_head arp_queue; - struct timer_list timer; - long unsigned int used; - atomic_t probes; - u8 nud_state; - u8 type; - u8 dead; - u8 protocol; - u32 flags; - seqlock_t ha_lock; - long: 0; - unsigned char ha[32]; - struct hh_cache hh; - int (*output)(struct neighbour *, struct sk_buff *); - const struct neigh_ops *ops; - struct list_head gc_list; - struct list_head managed_list; - struct callback_head rcu; - struct net_device *dev; - netdevice_tracker dev_tracker; - u8 primary_key[0]; -}; - -struct ieee_ets { - __u8 willing; - __u8 ets_cap; - __u8 cbs; - __u8 tc_tx_bw[8]; - __u8 tc_rx_bw[8]; - __u8 tc_tsa[8]; - __u8 prio_tc[8]; - __u8 tc_reco_bw[8]; - __u8 tc_reco_tsa[8]; - __u8 reco_prio_tc[8]; -}; - -struct ieee_maxrate { - __u64 tc_maxrate[8]; -}; - -struct ieee_qcn { - __u8 rpg_enable[8]; - __u32 rppp_max_rps[8]; - __u32 rpg_time_reset[8]; - __u32 rpg_byte_reset[8]; - __u32 rpg_threshold[8]; - __u32 rpg_max_rate[8]; - __u32 rpg_ai_rate[8]; - __u32 rpg_hai_rate[8]; - __u32 rpg_gd[8]; - __u32 rpg_min_dec_fac[8]; - __u32 rpg_min_rate[8]; - __u32 cndd_state_machine[8]; -}; - -struct ieee_qcn_stats { - __u64 rppp_rp_centiseconds[8]; - __u32 rppp_created_rps[8]; -}; - -struct ieee_pfc { - __u8 pfc_cap; - __u8 pfc_en; - __u8 mbc; - __u16 delay; - __u64 requests[8]; - __u64 indications[8]; -}; - -struct dcbnl_buffer { - __u8 prio2buffer[8]; - __u32 buffer_size[8]; - __u32 total_size; -}; - -struct cee_pg { - __u8 willing; - __u8 error; - __u8 pg_en; - __u8 tcs_supported; - __u8 pg_bw[8]; - __u8 prio_pg[8]; -}; - -struct cee_pfc { - __u8 willing; - __u8 error; - __u8 pfc_en; - __u8 tcs_supported; -}; - -struct dcb_app { - __u8 selector; - __u8 priority; - __u16 protocol; -}; - -struct dcb_peer_app_info { - __u8 willing; - __u8 error; -}; - -struct dcbnl_rtnl_ops { - int (*ieee_getets)(struct net_device *, struct ieee_ets *); - int (*ieee_setets)(struct net_device *, struct ieee_ets *); - int (*ieee_getmaxrate)(struct net_device *, struct ieee_maxrate *); - int (*ieee_setmaxrate)(struct net_device *, struct ieee_maxrate *); - int (*ieee_getqcn)(struct net_device *, struct ieee_qcn *); - int (*ieee_setqcn)(struct net_device *, struct ieee_qcn *); - int (*ieee_getqcnstats)(struct net_device *, struct ieee_qcn_stats *); - int (*ieee_getpfc)(struct net_device *, struct ieee_pfc *); - int (*ieee_setpfc)(struct net_device *, struct ieee_pfc *); - int (*ieee_getapp)(struct net_device *, struct dcb_app *); - int (*ieee_setapp)(struct net_device *, struct dcb_app *); - int (*ieee_delapp)(struct net_device *, struct dcb_app *); - int (*ieee_peer_getets)(struct net_device *, struct ieee_ets *); - int (*ieee_peer_getpfc)(struct net_device *, struct ieee_pfc *); - u8 (*getstate)(struct net_device *); - u8 (*setstate)(struct net_device *, u8); - void (*getpermhwaddr)(struct net_device *, u8 *); - void (*setpgtccfgtx)(struct net_device *, int, u8, u8, u8, u8); - void (*setpgbwgcfgtx)(struct net_device *, int, u8); - void (*setpgtccfgrx)(struct net_device *, int, u8, u8, u8, u8); - void (*setpgbwgcfgrx)(struct net_device *, int, u8); - void (*getpgtccfgtx)(struct net_device *, int, u8 *, u8 *, u8 *, u8 *); - void (*getpgbwgcfgtx)(struct net_device *, int, u8 *); - void (*getpgtccfgrx)(struct net_device *, int, u8 *, u8 *, u8 *, u8 *); - void (*getpgbwgcfgrx)(struct net_device *, int, u8 *); - void (*setpfccfg)(struct net_device *, int, u8); - void (*getpfccfg)(struct net_device *, int, u8 *); - u8 (*setall)(struct net_device *); - u8 (*getcap)(struct net_device *, int, u8 *); - int (*getnumtcs)(struct net_device *, int, u8 *); - int (*setnumtcs)(struct net_device *, int, u8); - u8 (*getpfcstate)(struct net_device *); - void (*setpfcstate)(struct net_device *, u8); - void (*getbcncfg)(struct net_device *, int, u32 *); - void (*setbcncfg)(struct net_device *, int, u32); - void (*getbcnrp)(struct net_device *, int, u8 *); - void (*setbcnrp)(struct net_device *, int, u8); - int (*setapp)(struct net_device *, u8, u16, u8); - int (*getapp)(struct net_device *, u8, u16); - u8 (*getfeatcfg)(struct net_device *, int, u8 *); - u8 (*setfeatcfg)(struct net_device *, int, u8); - u8 (*getdcbx)(struct net_device *); - u8 (*setdcbx)(struct net_device *, u8); - int (*peer_getappinfo)(struct net_device *, struct dcb_peer_app_info *, u16 *); - int (*peer_getapptable)(struct net_device *, struct dcb_app *); - int (*cee_peer_getpg)(struct net_device *, struct cee_pg *); - int (*cee_peer_getpfc)(struct net_device *, struct cee_pfc *); - int (*dcbnl_getbuffer)(struct net_device *, struct dcbnl_buffer *); - int (*dcbnl_setbuffer)(struct net_device *, struct dcbnl_buffer *); - int (*dcbnl_setapptrust)(struct net_device *, u8 *, int); - int (*dcbnl_getapptrust)(struct net_device *, u8 *, int *); - int (*dcbnl_setrewr)(struct net_device *, struct dcb_app *); - int (*dcbnl_delrewr)(struct net_device *, struct dcb_app *); -}; - -struct netprio_map { - struct callback_head rcu; - u32 priomap_len; - u32 priomap[0]; -}; - -struct nlmsghdr { - __u32 nlmsg_len; - __u16 nlmsg_type; - __u16 nlmsg_flags; - __u32 nlmsg_seq; - __u32 nlmsg_pid; -}; - -struct nlattr { - __u16 nla_len; - __u16 nla_type; -}; - -struct nla_policy; - -struct netlink_ext_ack { - const char *_msg; - const struct nlattr *bad_attr; - const struct nla_policy *policy; - const struct nlattr *miss_nest; - u16 miss_type; - u8 cookie[8]; - u8 cookie_len; - char _msg_buf[80]; -}; - -struct netlink_range_validation; - -struct netlink_range_validation_signed; - -struct nla_policy { - u8 type; - u8 validation_type; - u16 len; - union { - u16 strict_start_type; - const u32 bitfield32_valid; - const u32 mask; - const char *reject_message; - const struct nla_policy *nested_policy; - const struct netlink_range_validation *range; - const struct netlink_range_validation_signed *range_signed; - struct { - s16 min; - s16 max; - }; - int (*validate)(const struct nlattr *, struct netlink_ext_ack *); - }; -}; - -struct netlink_callback { - struct sk_buff *skb; - const struct nlmsghdr *nlh; - int (*dump)(struct sk_buff *, struct netlink_callback *); - int (*done)(struct netlink_callback *); - void *data; - struct module *module; - struct netlink_ext_ack *extack; - u16 family; - u16 answer_flags; - u32 min_dump_alloc; - unsigned int prev_seq; - unsigned int seq; - int flags; - bool strict_check; - union { - u8 ctx[48]; - long int args[6]; - }; -}; - -struct ndmsg { - __u8 ndm_family; - __u8 ndm_pad1; - __u16 ndm_pad2; - __s32 ndm_ifindex; - __u16 ndm_state; - __u8 ndm_flags; - __u8 ndm_type; -}; - -struct rtnl_link_stats64 { - __u64 rx_packets; - __u64 tx_packets; - __u64 rx_bytes; - __u64 tx_bytes; - __u64 rx_errors; - __u64 tx_errors; - __u64 rx_dropped; - __u64 tx_dropped; - __u64 multicast; - __u64 collisions; - __u64 rx_length_errors; - __u64 rx_over_errors; - __u64 rx_crc_errors; - __u64 rx_frame_errors; - __u64 rx_fifo_errors; - __u64 rx_missed_errors; - __u64 tx_aborted_errors; - __u64 tx_carrier_errors; - __u64 tx_fifo_errors; - __u64 tx_heartbeat_errors; - __u64 tx_window_errors; - __u64 rx_compressed; - __u64 tx_compressed; - __u64 rx_nohandler; - __u64 rx_otherhost_dropped; -}; - -struct rtnl_hw_stats64 { - __u64 rx_packets; - __u64 tx_packets; - __u64 rx_bytes; - __u64 tx_bytes; - __u64 rx_errors; - __u64 tx_errors; - __u64 rx_dropped; - __u64 tx_dropped; - __u64 multicast; -}; - -struct ifla_vf_guid { - __u32 vf; - __u64 guid; -}; - -struct ifla_vf_stats { - __u64 rx_packets; - __u64 tx_packets; - __u64 rx_bytes; - __u64 tx_bytes; - __u64 broadcast; - __u64 multicast; - __u64 rx_dropped; - __u64 tx_dropped; -}; - -struct ifla_vf_info { - __u32 vf; - __u8 mac[32]; - __u32 vlan; - __u32 qos; - __u32 spoofchk; - __u32 linkstate; - __u32 min_tx_rate; - __u32 max_tx_rate; - __u32 rss_query_en; - __u32 trusted; - __be16 vlan_proto; -}; - -enum netdev_tx { - __NETDEV_TX_MIN = -2147483648, - NETDEV_TX_OK = 0, - NETDEV_TX_BUSY = 16, -}; - -typedef enum netdev_tx netdev_tx_t; - -struct net_device_core_stats { - long unsigned int rx_dropped; - long unsigned int tx_dropped; - long unsigned int rx_nohandler; - long unsigned int rx_otherhost_dropped; -}; - -struct header_ops { - int (*create)(struct sk_buff *, struct net_device *, short unsigned int, const void *, const void *, unsigned int); - int (*parse)(const struct sk_buff *, unsigned char *); - int (*cache)(const struct neighbour *, struct hh_cache *, __be16); - void (*cache_update)(struct hh_cache *, const struct net_device *, const unsigned char *); - bool (*validate)(const char *, unsigned int); - __be16 (*parse_protocol)(const struct sk_buff *); -}; - -struct gro_list { - struct list_head list; - int count; -}; - -struct gro_node { - long unsigned int bitmask; - struct gro_list hash[8]; - struct list_head rx_list; - u32 rx_count; - u32 cached_napi_id; -}; - -struct napi_config { - u64 gro_flush_timeout; - u64 irq_suspend_timeout; - u32 defer_hard_irqs; - cpumask_t affinity_mask; - u8 threaded; - unsigned int napi_id; -}; - -struct napi_struct { - struct list_head poll_list; - long unsigned int state; - int weight; - u32 defer_hard_irqs_count; - int (*poll)(struct napi_struct *, int); - int poll_owner; - int list_owner; - struct net_device *dev; - struct sk_buff *skb; - struct gro_node gro; - struct hrtimer timer; - struct task_struct *thread; - long unsigned int gro_flush_timeout; - long unsigned int irq_suspend_timeout; - u32 defer_hard_irqs; - u32 napi_id; - struct list_head dev_list; - struct hlist_node napi_hash_node; - int irq; - struct irq_affinity_notify notify; - int napi_rmap_idx; - int index; - struct napi_config *config; -}; - -struct xsk_buff_pool; - -struct netdev_queue { - struct net_device *dev; - netdevice_tracker dev_tracker; - struct Qdisc *qdisc; - struct Qdisc *qdisc_sleeping; - struct kobject kobj; - const struct attribute_group **groups; - long unsigned int tx_maxrate; - atomic_long_t trans_timeout; - struct net_device *sb_dev; - struct xsk_buff_pool *pool; - struct dql dql; - spinlock_t _xmit_lock; - int xmit_lock_owner; - long unsigned int trans_start; - long unsigned int state; - struct napi_struct *napi; - int numa_node; - long: 64; - long: 64; - long: 64; -}; - -struct qdisc_skb_head { - struct sk_buff *head; - struct sk_buff *tail; - __u32 qlen; - spinlock_t lock; -}; - -struct gnet_stats_basic_sync { - u64_stats_t bytes; - u64_stats_t packets; - struct u64_stats_sync syncp; -}; - -struct gnet_stats_queue { - __u32 qlen; - __u32 backlog; - __u32 drops; - __u32 requeues; - __u32 overlimits; -}; - -struct Qdisc_ops; - -struct qdisc_size_table; - -struct net_rate_estimator; - -struct Qdisc { - int (*enqueue)(struct sk_buff *, struct Qdisc *, struct sk_buff **); - struct sk_buff * (*dequeue)(struct Qdisc *); - unsigned int flags; - u32 limit; - const struct Qdisc_ops *ops; - struct qdisc_size_table *stab; - struct hlist_node hash; - u32 handle; - u32 parent; - struct netdev_queue *dev_queue; - struct net_rate_estimator *rate_est; - struct gnet_stats_basic_sync *cpu_bstats; - struct gnet_stats_queue *cpu_qstats; - int pad; - refcount_t refcnt; - long: 64; - long: 64; - long: 64; - struct sk_buff_head gso_skb; - struct qdisc_skb_head q; - struct gnet_stats_basic_sync bstats; - struct gnet_stats_queue qstats; - int owner; - long unsigned int state; - long unsigned int state2; - struct Qdisc *next_sched; - struct sk_buff_head skb_bad_txq; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - spinlock_t busylock; - spinlock_t seqlock; - struct callback_head rcu; - netdevice_tracker dev_tracker; - struct lock_class_key root_lock_key; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long int privdata[0]; -}; - -struct xps_map { - unsigned int len; - unsigned int alloc_len; - struct callback_head rcu; - u16 queues[0]; -}; - -struct xps_dev_maps { - struct callback_head rcu; - unsigned int nr_ids; - s16 num_tc; - struct xps_map *attr_map[0]; -}; - -struct netdev_phys_item_id { - unsigned char id[32]; - unsigned char id_len; -}; - -enum net_device_path_type { - DEV_PATH_ETHERNET = 0, - DEV_PATH_VLAN = 1, - DEV_PATH_BRIDGE = 2, - DEV_PATH_PPPOE = 3, - DEV_PATH_DSA = 4, - DEV_PATH_MTK_WDMA = 5, -}; - -struct net_device_path { - enum net_device_path_type type; - const struct net_device *dev; - union { - struct { - u16 id; - __be16 proto; - u8 h_dest[6]; - } encap; - struct { - enum { - DEV_PATH_BR_VLAN_KEEP = 0, - DEV_PATH_BR_VLAN_TAG = 1, - DEV_PATH_BR_VLAN_UNTAG = 2, - DEV_PATH_BR_VLAN_UNTAG_HW = 3, - } vlan_mode; - u16 vlan_id; - __be16 vlan_proto; - } bridge; - struct { - int port; - u16 proto; - } dsa; - struct { - u8 wdma_idx; - u8 queue; - u16 wcid; - u8 bss; - u8 amsdu; - } mtk_wdma; - }; -}; - -struct net_device_path_ctx { - const struct net_device *dev; - u8 daddr[6]; - int num_vlans; - struct { - u16 id; - __be16 proto; - } vlan[2]; -}; - -enum tc_setup_type { - TC_QUERY_CAPS = 0, - TC_SETUP_QDISC_MQPRIO = 1, - TC_SETUP_CLSU32 = 2, - TC_SETUP_CLSFLOWER = 3, - TC_SETUP_CLSMATCHALL = 4, - TC_SETUP_CLSBPF = 5, - TC_SETUP_BLOCK = 6, - TC_SETUP_QDISC_CBS = 7, - TC_SETUP_QDISC_RED = 8, - TC_SETUP_QDISC_PRIO = 9, - TC_SETUP_QDISC_MQ = 10, - TC_SETUP_QDISC_ETF = 11, - TC_SETUP_ROOT_QDISC = 12, - TC_SETUP_QDISC_GRED = 13, - TC_SETUP_QDISC_TAPRIO = 14, - TC_SETUP_FT = 15, - TC_SETUP_QDISC_ETS = 16, - TC_SETUP_QDISC_TBF = 17, - TC_SETUP_QDISC_FIFO = 18, - TC_SETUP_QDISC_HTB = 19, - TC_SETUP_ACT = 20, -}; - -enum bpf_netdev_command { - XDP_SETUP_PROG = 0, - XDP_SETUP_PROG_HW = 1, - BPF_OFFLOAD_MAP_ALLOC = 2, - BPF_OFFLOAD_MAP_FREE = 3, - XDP_SETUP_XSK_POOL = 4, -}; - -struct netdev_bpf { - enum bpf_netdev_command command; - union { - struct { - u32 flags; - struct bpf_prog *prog; - struct netlink_ext_ack *extack; - }; - struct { - struct bpf_offloaded_map *offmap; - }; - struct { - struct xsk_buff_pool *pool; - u16 queue_id; - } xsk; - }; -}; - -struct xfrm_policy; - -struct xfrmdev_ops { - int (*xdo_dev_state_add)(struct net_device *, struct xfrm_state *, struct netlink_ext_ack *); - void (*xdo_dev_state_delete)(struct net_device *, struct xfrm_state *); - void (*xdo_dev_state_free)(struct net_device *, struct xfrm_state *); - bool (*xdo_dev_offload_ok)(struct sk_buff *, struct xfrm_state *); - void (*xdo_dev_state_advance_esn)(struct xfrm_state *); - void (*xdo_dev_state_update_stats)(struct xfrm_state *); - int (*xdo_dev_policy_add)(struct xfrm_policy *, struct netlink_ext_ack *); - void (*xdo_dev_policy_delete)(struct xfrm_policy *); - void (*xdo_dev_policy_free)(struct xfrm_policy *); -}; - -struct dev_ifalias { - struct callback_head rcuhead; - char ifalias[0]; -}; - -struct xdp_frame; - -struct xdp_buff; - -struct ip_tunnel_parm_kern; - -struct kernel_hwtstamp_config; - -struct net_shaper_ops; - -struct net_device_ops { - int (*ndo_init)(struct net_device *); - void (*ndo_uninit)(struct net_device *); - int (*ndo_open)(struct net_device *); - int (*ndo_stop)(struct net_device *); - netdev_tx_t (*ndo_start_xmit)(struct sk_buff *, struct net_device *); - netdev_features_t (*ndo_features_check)(struct sk_buff *, struct net_device *, netdev_features_t); - u16 (*ndo_select_queue)(struct net_device *, struct sk_buff *, struct net_device *); - void (*ndo_change_rx_flags)(struct net_device *, int); - void (*ndo_set_rx_mode)(struct net_device *); - int (*ndo_set_mac_address)(struct net_device *, void *); - int (*ndo_validate_addr)(struct net_device *); - int (*ndo_do_ioctl)(struct net_device *, struct ifreq *, int); - int (*ndo_eth_ioctl)(struct net_device *, struct ifreq *, int); - int (*ndo_siocbond)(struct net_device *, struct ifreq *, int); - int (*ndo_siocwandev)(struct net_device *, struct if_settings *); - int (*ndo_siocdevprivate)(struct net_device *, struct ifreq *, void *, int); - int (*ndo_set_config)(struct net_device *, struct ifmap *); - int (*ndo_change_mtu)(struct net_device *, int); - int (*ndo_neigh_setup)(struct net_device *, struct neigh_parms *); - void (*ndo_tx_timeout)(struct net_device *, unsigned int); - void (*ndo_get_stats64)(struct net_device *, struct rtnl_link_stats64 *); - bool (*ndo_has_offload_stats)(const struct net_device *, int); - int (*ndo_get_offload_stats)(int, const struct net_device *, void *); - struct net_device_stats * (*ndo_get_stats)(struct net_device *); - int (*ndo_vlan_rx_add_vid)(struct net_device *, __be16, u16); - int (*ndo_vlan_rx_kill_vid)(struct net_device *, __be16, u16); - void (*ndo_poll_controller)(struct net_device *); - int (*ndo_netpoll_setup)(struct net_device *); - void (*ndo_netpoll_cleanup)(struct net_device *); - int (*ndo_set_vf_mac)(struct net_device *, int, u8 *); - int (*ndo_set_vf_vlan)(struct net_device *, int, u16, u8, __be16); - int (*ndo_set_vf_rate)(struct net_device *, int, int, int); - int (*ndo_set_vf_spoofchk)(struct net_device *, int, bool); - int (*ndo_set_vf_trust)(struct net_device *, int, bool); - int (*ndo_get_vf_config)(struct net_device *, int, struct ifla_vf_info *); - int (*ndo_set_vf_link_state)(struct net_device *, int, int); - int (*ndo_get_vf_stats)(struct net_device *, int, struct ifla_vf_stats *); - int (*ndo_set_vf_port)(struct net_device *, int, struct nlattr **); - int (*ndo_get_vf_port)(struct net_device *, int, struct sk_buff *); - int (*ndo_get_vf_guid)(struct net_device *, int, struct ifla_vf_guid *, struct ifla_vf_guid *); - int (*ndo_set_vf_guid)(struct net_device *, int, u64, int); - int (*ndo_set_vf_rss_query_en)(struct net_device *, int, bool); - int (*ndo_setup_tc)(struct net_device *, enum tc_setup_type, void *); - int (*ndo_rx_flow_steer)(struct net_device *, const struct sk_buff *, u16, u32); - int (*ndo_add_slave)(struct net_device *, struct net_device *, struct netlink_ext_ack *); - int (*ndo_del_slave)(struct net_device *, struct net_device *); - struct net_device * (*ndo_get_xmit_slave)(struct net_device *, struct sk_buff *, bool); - struct net_device * (*ndo_sk_get_lower_dev)(struct net_device *, struct sock *); - netdev_features_t (*ndo_fix_features)(struct net_device *, netdev_features_t); - int (*ndo_set_features)(struct net_device *, netdev_features_t); - int (*ndo_neigh_construct)(struct net_device *, struct neighbour *); - void (*ndo_neigh_destroy)(struct net_device *, struct neighbour *); - int (*ndo_fdb_add)(struct ndmsg *, struct nlattr **, struct net_device *, const unsigned char *, u16, u16, bool *, struct netlink_ext_ack *); - int (*ndo_fdb_del)(struct ndmsg *, struct nlattr **, struct net_device *, const unsigned char *, u16, bool *, struct netlink_ext_ack *); - int (*ndo_fdb_del_bulk)(struct nlmsghdr *, struct net_device *, struct netlink_ext_ack *); - int (*ndo_fdb_dump)(struct sk_buff *, struct netlink_callback *, struct net_device *, struct net_device *, int *); - int (*ndo_fdb_get)(struct sk_buff *, struct nlattr **, struct net_device *, const unsigned char *, u16, u32, u32, struct netlink_ext_ack *); - int (*ndo_mdb_add)(struct net_device *, struct nlattr **, u16, struct netlink_ext_ack *); - int (*ndo_mdb_del)(struct net_device *, struct nlattr **, struct netlink_ext_ack *); - int (*ndo_mdb_del_bulk)(struct net_device *, struct nlattr **, struct netlink_ext_ack *); - int (*ndo_mdb_dump)(struct net_device *, struct sk_buff *, struct netlink_callback *); - int (*ndo_mdb_get)(struct net_device *, struct nlattr **, u32, u32, struct netlink_ext_ack *); - int (*ndo_bridge_setlink)(struct net_device *, struct nlmsghdr *, u16, struct netlink_ext_ack *); - int (*ndo_bridge_getlink)(struct sk_buff *, u32, u32, struct net_device *, u32, int); - int (*ndo_bridge_dellink)(struct net_device *, struct nlmsghdr *, u16); - int (*ndo_change_carrier)(struct net_device *, bool); - int (*ndo_get_phys_port_id)(struct net_device *, struct netdev_phys_item_id *); - int (*ndo_get_port_parent_id)(struct net_device *, struct netdev_phys_item_id *); - int (*ndo_get_phys_port_name)(struct net_device *, char *, size_t); - void * (*ndo_dfwd_add_station)(struct net_device *, struct net_device *); - void (*ndo_dfwd_del_station)(struct net_device *, void *); - int (*ndo_set_tx_maxrate)(struct net_device *, int, u32); - int (*ndo_get_iflink)(const struct net_device *); - int (*ndo_fill_metadata_dst)(struct net_device *, struct sk_buff *); - void (*ndo_set_rx_headroom)(struct net_device *, int); - int (*ndo_bpf)(struct net_device *, struct netdev_bpf *); - int (*ndo_xdp_xmit)(struct net_device *, int, struct xdp_frame **, u32); - struct net_device * (*ndo_xdp_get_xmit_slave)(struct net_device *, struct xdp_buff *); - int (*ndo_xsk_wakeup)(struct net_device *, u32, u32); - int (*ndo_tunnel_ctl)(struct net_device *, struct ip_tunnel_parm_kern *, int); - struct net_device * (*ndo_get_peer_dev)(struct net_device *); - int (*ndo_fill_forward_path)(struct net_device_path_ctx *, struct net_device_path *); - ktime_t (*ndo_get_tstamp)(struct net_device *, const struct skb_shared_hwtstamps *, bool); - int (*ndo_hwtstamp_get)(struct net_device *, struct kernel_hwtstamp_config *); - int (*ndo_hwtstamp_set)(struct net_device *, struct kernel_hwtstamp_config *, struct netlink_ext_ack *); - const struct net_shaper_ops *net_shaper_ops; -}; - -enum xdp_mem_type { - MEM_TYPE_PAGE_SHARED = 0, - MEM_TYPE_PAGE_ORDER0 = 1, - MEM_TYPE_PAGE_POOL = 2, - MEM_TYPE_XSK_BUFF_POOL = 3, - MEM_TYPE_MAX = 4, -}; - -struct xdp_frame { - void *data; - u32 len; - u32 headroom; - u32 metasize; - enum xdp_mem_type mem_type: 32; - struct net_device *dev_rx; - u32 frame_sz; - u32 flags; -}; - -struct xdp_rxq_info; - -struct xdp_txq_info; - -struct xdp_buff { - void *data; - void *data_end; - void *data_meta; - void *data_hard_start; - struct xdp_rxq_info *rxq; - struct xdp_txq_info *txq; - u32 frame_sz; - u32 flags; -}; - -enum net_shaper_scope { - NET_SHAPER_SCOPE_UNSPEC = 0, - NET_SHAPER_SCOPE_NETDEV = 1, - NET_SHAPER_SCOPE_QUEUE = 2, - NET_SHAPER_SCOPE_NODE = 3, - __NET_SHAPER_SCOPE_MAX = 4, - NET_SHAPER_SCOPE_MAX = 3, -}; - -struct net_shaper_binding; - -struct net_shaper; - -struct net_shaper_handle; - -struct net_shaper_ops { - int (*group)(struct net_shaper_binding *, int, const struct net_shaper *, const struct net_shaper *, struct netlink_ext_ack *); - int (*set)(struct net_shaper_binding *, const struct net_shaper *, struct netlink_ext_ack *); - int (*delete)(struct net_shaper_binding *, const struct net_shaper_handle *, struct netlink_ext_ack *); - void (*capabilities)(struct net_shaper_binding *, enum net_shaper_scope, long unsigned int *); -}; - -struct pcpu_lstats { - u64_stats_t packets; - u64_stats_t bytes; - struct u64_stats_sync syncp; -}; - -struct pcpu_sw_netstats { - u64_stats_t rx_packets; - u64_stats_t rx_bytes; - u64_stats_t tx_packets; - u64_stats_t tx_bytes; - struct u64_stats_sync syncp; -}; - -struct pcpu_dstats { - u64_stats_t rx_packets; - u64_stats_t rx_bytes; - u64_stats_t tx_packets; - u64_stats_t tx_bytes; - u64_stats_t rx_drops; - u64_stats_t tx_drops; - struct u64_stats_sync syncp; - long: 64; - long: 64; -}; - -enum xdp_rss_hash_type { - XDP_RSS_L3_IPV4 = 1, - XDP_RSS_L3_IPV6 = 2, - XDP_RSS_L3_DYNHDR = 4, - XDP_RSS_L4 = 8, - XDP_RSS_L4_TCP = 16, - XDP_RSS_L4_UDP = 32, - XDP_RSS_L4_SCTP = 64, - XDP_RSS_L4_IPSEC = 128, - XDP_RSS_L4_ICMP = 256, - XDP_RSS_TYPE_NONE = 0, - XDP_RSS_TYPE_L2 = 0, - XDP_RSS_TYPE_L3_IPV4 = 1, - XDP_RSS_TYPE_L3_IPV6 = 2, - XDP_RSS_TYPE_L3_IPV4_OPT = 5, - XDP_RSS_TYPE_L3_IPV6_EX = 6, - XDP_RSS_TYPE_L4_ANY = 8, - XDP_RSS_TYPE_L4_IPV4_TCP = 25, - XDP_RSS_TYPE_L4_IPV4_UDP = 41, - XDP_RSS_TYPE_L4_IPV4_SCTP = 73, - XDP_RSS_TYPE_L4_IPV4_IPSEC = 137, - XDP_RSS_TYPE_L4_IPV4_ICMP = 265, - XDP_RSS_TYPE_L4_IPV6_TCP = 26, - XDP_RSS_TYPE_L4_IPV6_UDP = 42, - XDP_RSS_TYPE_L4_IPV6_SCTP = 74, - XDP_RSS_TYPE_L4_IPV6_IPSEC = 138, - XDP_RSS_TYPE_L4_IPV6_ICMP = 266, - XDP_RSS_TYPE_L4_IPV6_TCP_EX = 30, - XDP_RSS_TYPE_L4_IPV6_UDP_EX = 46, - XDP_RSS_TYPE_L4_IPV6_SCTP_EX = 78, -}; - -struct xdp_metadata_ops { - int (*xmo_rx_timestamp)(const struct xdp_md *, u64 *); - int (*xmo_rx_hash)(const struct xdp_md *, u32 *, enum xdp_rss_hash_type *); - int (*xmo_rx_vlan_tag)(const struct xdp_md *, __be16 *, u16 *); -}; - -struct xsk_tx_metadata_ops { - void (*tmo_request_timestamp)(void *); - u64 (*tmo_fill_timestamp)(void *); - void (*tmo_request_checksum)(u16, u16, void *); - void (*tmo_request_launch_time)(u64, void *); -}; - -enum ethtool_phys_id_state { - ETHTOOL_ID_INACTIVE = 0, - ETHTOOL_ID_ACTIVE = 1, - ETHTOOL_ID_ON = 2, - ETHTOOL_ID_OFF = 3, -}; - -struct ethtool_drvinfo; - -struct ethtool_regs; - -struct ethtool_wolinfo; - -struct ethtool_link_ext_state_info; - -struct ethtool_link_ext_stats; - -struct ethtool_eeprom; - -struct ethtool_coalesce; - -struct kernel_ethtool_coalesce; - -struct ethtool_ringparam; - -struct kernel_ethtool_ringparam; - -struct ethtool_pause_stats; - -struct ethtool_pauseparam; - -struct ethtool_test; - -struct ethtool_stats; - -struct ethtool_rxnfc; - -struct ethtool_flash; - -struct ethtool_rxfh_param; - -struct ethtool_rxfh_fields; - -struct ethtool_rxfh_context; - -struct ethtool_channels; - -struct ethtool_dump; - -struct kernel_ethtool_ts_info; - -struct ethtool_ts_stats; - -struct ethtool_modinfo; - -struct ethtool_keee; - -struct ethtool_tunable; - -struct ethtool_link_ksettings; - -struct ethtool_fec_stats; - -struct ethtool_fecparam; - -struct ethtool_module_eeprom; - -struct ethtool_eth_phy_stats; - -struct ethtool_eth_mac_stats; - -struct ethtool_eth_ctrl_stats; - -struct ethtool_rmon_stats; - -struct ethtool_rmon_hist_range; - -struct ethtool_module_power_mode_params; - -struct ethtool_mm_state; - -struct ethtool_mm_cfg; - -struct ethtool_mm_stats; - -struct ethtool_ops { - u32 supported_input_xfrm: 8; - u32 cap_link_lanes_supported: 1; - u32 rxfh_per_ctx_fields: 1; - u32 rxfh_per_ctx_key: 1; - u32 cap_rss_rxnfc_adds: 1; - u32 rxfh_indir_space; - u16 rxfh_key_space; - u16 rxfh_priv_size; - u32 rxfh_max_num_contexts; - u32 supported_coalesce_params; - u32 supported_ring_params; - u32 supported_hwtstamp_qualifiers; - void (*get_drvinfo)(struct net_device *, struct ethtool_drvinfo *); - int (*get_regs_len)(struct net_device *); - void (*get_regs)(struct net_device *, struct ethtool_regs *, void *); - void (*get_wol)(struct net_device *, struct ethtool_wolinfo *); - int (*set_wol)(struct net_device *, struct ethtool_wolinfo *); - u32 (*get_msglevel)(struct net_device *); - void (*set_msglevel)(struct net_device *, u32); - int (*nway_reset)(struct net_device *); - u32 (*get_link)(struct net_device *); - int (*get_link_ext_state)(struct net_device *, struct ethtool_link_ext_state_info *); - void (*get_link_ext_stats)(struct net_device *, struct ethtool_link_ext_stats *); - int (*get_eeprom_len)(struct net_device *); - int (*get_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); - int (*set_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); - int (*get_coalesce)(struct net_device *, struct ethtool_coalesce *, struct kernel_ethtool_coalesce *, struct netlink_ext_ack *); - int (*set_coalesce)(struct net_device *, struct ethtool_coalesce *, struct kernel_ethtool_coalesce *, struct netlink_ext_ack *); - void (*get_ringparam)(struct net_device *, struct ethtool_ringparam *, struct kernel_ethtool_ringparam *, struct netlink_ext_ack *); - int (*set_ringparam)(struct net_device *, struct ethtool_ringparam *, struct kernel_ethtool_ringparam *, struct netlink_ext_ack *); - void (*get_pause_stats)(struct net_device *, struct ethtool_pause_stats *); - void (*get_pauseparam)(struct net_device *, struct ethtool_pauseparam *); - int (*set_pauseparam)(struct net_device *, struct ethtool_pauseparam *); - void (*self_test)(struct net_device *, struct ethtool_test *, u64 *); - void (*get_strings)(struct net_device *, u32, u8 *); - int (*set_phys_id)(struct net_device *, enum ethtool_phys_id_state); - void (*get_ethtool_stats)(struct net_device *, struct ethtool_stats *, u64 *); - int (*begin)(struct net_device *); - void (*complete)(struct net_device *); - u32 (*get_priv_flags)(struct net_device *); - int (*set_priv_flags)(struct net_device *, u32); - int (*get_sset_count)(struct net_device *, int); - int (*get_rxnfc)(struct net_device *, struct ethtool_rxnfc *, u32 *); - int (*set_rxnfc)(struct net_device *, struct ethtool_rxnfc *); - int (*flash_device)(struct net_device *, struct ethtool_flash *); - int (*reset)(struct net_device *, u32 *); - u32 (*get_rxfh_key_size)(struct net_device *); - u32 (*get_rxfh_indir_size)(struct net_device *); - int (*get_rxfh)(struct net_device *, struct ethtool_rxfh_param *); - int (*set_rxfh)(struct net_device *, struct ethtool_rxfh_param *, struct netlink_ext_ack *); - int (*get_rxfh_fields)(struct net_device *, struct ethtool_rxfh_fields *); - int (*set_rxfh_fields)(struct net_device *, const struct ethtool_rxfh_fields *, struct netlink_ext_ack *); - int (*create_rxfh_context)(struct net_device *, struct ethtool_rxfh_context *, const struct ethtool_rxfh_param *, struct netlink_ext_ack *); - int (*modify_rxfh_context)(struct net_device *, struct ethtool_rxfh_context *, const struct ethtool_rxfh_param *, struct netlink_ext_ack *); - int (*remove_rxfh_context)(struct net_device *, struct ethtool_rxfh_context *, u32, struct netlink_ext_ack *); - void (*get_channels)(struct net_device *, struct ethtool_channels *); - int (*set_channels)(struct net_device *, struct ethtool_channels *); - int (*get_dump_flag)(struct net_device *, struct ethtool_dump *); - int (*get_dump_data)(struct net_device *, struct ethtool_dump *, void *); - int (*set_dump)(struct net_device *, struct ethtool_dump *); - int (*get_ts_info)(struct net_device *, struct kernel_ethtool_ts_info *); - void (*get_ts_stats)(struct net_device *, struct ethtool_ts_stats *); - int (*get_module_info)(struct net_device *, struct ethtool_modinfo *); - int (*get_module_eeprom)(struct net_device *, struct ethtool_eeprom *, u8 *); - int (*get_eee)(struct net_device *, struct ethtool_keee *); - int (*set_eee)(struct net_device *, struct ethtool_keee *); - int (*get_tunable)(struct net_device *, const struct ethtool_tunable *, void *); - int (*set_tunable)(struct net_device *, const struct ethtool_tunable *, const void *); - int (*get_per_queue_coalesce)(struct net_device *, u32, struct ethtool_coalesce *); - int (*set_per_queue_coalesce)(struct net_device *, u32, struct ethtool_coalesce *); - int (*get_link_ksettings)(struct net_device *, struct ethtool_link_ksettings *); - int (*set_link_ksettings)(struct net_device *, const struct ethtool_link_ksettings *); - void (*get_fec_stats)(struct net_device *, struct ethtool_fec_stats *); - int (*get_fecparam)(struct net_device *, struct ethtool_fecparam *); - int (*set_fecparam)(struct net_device *, struct ethtool_fecparam *); - void (*get_ethtool_phy_stats)(struct net_device *, struct ethtool_stats *, u64 *); - int (*get_phy_tunable)(struct net_device *, const struct ethtool_tunable *, void *); - int (*set_phy_tunable)(struct net_device *, const struct ethtool_tunable *, const void *); - int (*get_module_eeprom_by_page)(struct net_device *, const struct ethtool_module_eeprom *, struct netlink_ext_ack *); - int (*set_module_eeprom_by_page)(struct net_device *, const struct ethtool_module_eeprom *, struct netlink_ext_ack *); - void (*get_eth_phy_stats)(struct net_device *, struct ethtool_eth_phy_stats *); - void (*get_eth_mac_stats)(struct net_device *, struct ethtool_eth_mac_stats *); - void (*get_eth_ctrl_stats)(struct net_device *, struct ethtool_eth_ctrl_stats *); - void (*get_rmon_stats)(struct net_device *, struct ethtool_rmon_stats *, const struct ethtool_rmon_hist_range **); - int (*get_module_power_mode)(struct net_device *, struct ethtool_module_power_mode_params *, struct netlink_ext_ack *); - int (*set_module_power_mode)(struct net_device *, const struct ethtool_module_power_mode_params *, struct netlink_ext_ack *); - int (*get_mm)(struct net_device *, struct ethtool_mm_state *); - int (*set_mm)(struct net_device *, struct ethtool_mm_cfg *, struct netlink_ext_ack *); - void (*get_mm_stats)(struct net_device *, struct ethtool_mm_stats *); -}; - -struct flowi6; - -struct l3mdev_ops { - u32 (*l3mdev_fib_table)(const struct net_device *); - struct sk_buff * (*l3mdev_l3_rcv)(struct net_device *, struct sk_buff *, u16); - struct sk_buff * (*l3mdev_l3_out)(struct net_device *, struct sock *, struct sk_buff *, u16); - struct dst_entry * (*l3mdev_link_scope_lookup)(const struct net_device *, struct flowi6 *); -}; - -struct nd_opt_hdr; - -struct ndisc_options; - -struct prefix_info; - -struct ndisc_ops { - int (*parse_options)(const struct net_device *, struct nd_opt_hdr *, struct ndisc_options *); - void (*update)(const struct net_device *, struct neighbour *, u32, u8, const struct ndisc_options *); - int (*opt_addr_space)(const struct net_device *, u8, struct neighbour *, u8 *, u8 **); - void (*fill_addr_option)(const struct net_device *, struct sk_buff *, u8, const u8 *); - void (*prefix_rcv_add_addr)(struct net *, struct net_device *, const struct prefix_info *, struct inet6_dev *, struct in6_addr *, int, u32, bool, bool, __u32, u32, bool); -}; - -enum tls_offload_ctx_dir { - TLS_OFFLOAD_CTX_DIR_RX = 0, - TLS_OFFLOAD_CTX_DIR_TX = 1, -}; - -struct tls_crypto_info; - -struct tls_context; - -struct tlsdev_ops { - int (*tls_dev_add)(struct net_device *, struct sock *, enum tls_offload_ctx_dir, struct tls_crypto_info *, u32); - void (*tls_dev_del)(struct net_device *, struct tls_context *, enum tls_offload_ctx_dir); - int (*tls_dev_resync)(struct net_device *, struct sock *, u32, u8 *, enum tls_offload_ctx_dir); -}; - -struct rtnl_newlink_params; - -struct rtnl_link_ops { - struct list_head list; - struct srcu_struct srcu; - const char *kind; - size_t priv_size; - struct net_device * (*alloc)(struct nlattr **, const char *, unsigned char, unsigned int, unsigned int); - void (*setup)(struct net_device *); - bool netns_refund; - const u16 peer_type; - unsigned int maxtype; - const struct nla_policy *policy; - int (*validate)(struct nlattr **, struct nlattr **, struct netlink_ext_ack *); - int (*newlink)(struct net_device *, struct rtnl_newlink_params *, struct netlink_ext_ack *); - int (*changelink)(struct net_device *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); - void (*dellink)(struct net_device *, struct list_head *); - size_t (*get_size)(const struct net_device *); - int (*fill_info)(struct sk_buff *, const struct net_device *); - size_t (*get_xstats_size)(const struct net_device *); - int (*fill_xstats)(struct sk_buff *, const struct net_device *); - unsigned int (*get_num_tx_queues)(void); - unsigned int (*get_num_rx_queues)(void); - unsigned int slave_maxtype; - const struct nla_policy *slave_policy; - int (*slave_changelink)(struct net_device *, struct net_device *, struct nlattr **, struct nlattr **, struct netlink_ext_ack *); - size_t (*get_slave_size)(const struct net_device *, const struct net_device *); - int (*fill_slave_info)(struct sk_buff *, const struct net_device *, const struct net_device *); - struct net * (*get_link_net)(const struct net_device *); - size_t (*get_linkxstats_size)(const struct net_device *, int); - int (*fill_linkxstats)(struct sk_buff *, const struct net_device *, int *, int); -}; - -struct netdev_queue_stats_rx; - -struct netdev_queue_stats_tx; - -struct netdev_stat_ops { - void (*get_queue_stats_rx)(struct net_device *, int, struct netdev_queue_stats_rx *); - void (*get_queue_stats_tx)(struct net_device *, int, struct netdev_queue_stats_tx *); - void (*get_base_stats)(struct net_device *, struct netdev_queue_stats_rx *, struct netdev_queue_stats_tx *); -}; - -struct netdev_queue_mgmt_ops { - size_t ndo_queue_mem_size; - int (*ndo_queue_mem_alloc)(struct net_device *, void *, int); - void (*ndo_queue_mem_free)(struct net_device *, void *); - int (*ndo_queue_start)(struct net_device *, void *, int); - int (*ndo_queue_stop)(struct net_device *, void *, int); -}; - -struct macsec_context; - -struct macsec_ops { - int (*mdo_dev_open)(struct macsec_context *); - int (*mdo_dev_stop)(struct macsec_context *); - int (*mdo_add_secy)(struct macsec_context *); - int (*mdo_upd_secy)(struct macsec_context *); - int (*mdo_del_secy)(struct macsec_context *); - int (*mdo_add_rxsc)(struct macsec_context *); - int (*mdo_upd_rxsc)(struct macsec_context *); - int (*mdo_del_rxsc)(struct macsec_context *); - int (*mdo_add_rxsa)(struct macsec_context *); - int (*mdo_upd_rxsa)(struct macsec_context *); - int (*mdo_del_rxsa)(struct macsec_context *); - int (*mdo_add_txsa)(struct macsec_context *); - int (*mdo_upd_txsa)(struct macsec_context *); - int (*mdo_del_txsa)(struct macsec_context *); - int (*mdo_get_dev_stats)(struct macsec_context *); - int (*mdo_get_tx_sc_stats)(struct macsec_context *); - int (*mdo_get_tx_sa_stats)(struct macsec_context *); - int (*mdo_get_rx_sc_stats)(struct macsec_context *); - int (*mdo_get_rx_sa_stats)(struct macsec_context *); - int (*mdo_insert_tx_tag)(struct phy_device *, struct sk_buff *); - unsigned int needed_headroom; - unsigned int needed_tailroom; - bool rx_uses_md_dst; -}; - -struct udp_tunnel_nic_table_info { - unsigned int n_entries; - unsigned int tunnel_types; -}; - -struct udp_tunnel_info; - -struct udp_tunnel_nic_shared; - -struct udp_tunnel_nic_info { - int (*set_port)(struct net_device *, unsigned int, unsigned int, struct udp_tunnel_info *); - int (*unset_port)(struct net_device *, unsigned int, unsigned int, struct udp_tunnel_info *); - int (*sync_table)(struct net_device *, unsigned int); - struct udp_tunnel_nic_shared *shared; - unsigned int flags; - struct udp_tunnel_nic_table_info tables[4]; -}; - -struct tcmsg { - unsigned char tcm_family; - unsigned char tcm__pad1; - short unsigned int tcm__pad2; - int tcm_ifindex; - __u32 tcm_handle; - __u32 tcm_parent; - __u32 tcm_info; -}; - -struct gnet_dump { - spinlock_t *lock; - struct sk_buff *skb; - struct nlattr *tail; - int compat_tc_stats; - int compat_xstats; - int padattr; - void *xstats; - int xstats_len; - struct tc_stats tc_stats; -}; - -struct netlink_range_validation { - u64 min; - u64 max; -}; - -struct netlink_range_validation_signed { - s64 min; - s64 max; -}; - -struct rtnl_newlink_params { - struct net *src_net; - struct net *link_net; - struct net *peer_net; - struct nlattr **tb; - struct nlattr **data; -}; - -enum flow_action_hw_stats_bit { - FLOW_ACTION_HW_STATS_IMMEDIATE_BIT = 0, - FLOW_ACTION_HW_STATS_DELAYED_BIT = 1, - FLOW_ACTION_HW_STATS_DISABLED_BIT = 2, - FLOW_ACTION_HW_STATS_NUM_BITS = 3, -}; - -struct flow_block { - struct list_head cb_list; -}; - -typedef int flow_setup_cb_t(enum tc_setup_type, void *, void *); - -struct qdisc_size_table { - struct callback_head rcu; - struct list_head list; - struct tc_sizespec szopts; - int refcnt; - u16 data[0]; -}; - -struct Qdisc_class_ops; - -struct Qdisc_ops { - struct Qdisc_ops *next; - const struct Qdisc_class_ops *cl_ops; - char id[16]; - int priv_size; - unsigned int static_flags; - int (*enqueue)(struct sk_buff *, struct Qdisc *, struct sk_buff **); - struct sk_buff * (*dequeue)(struct Qdisc *); - struct sk_buff * (*peek)(struct Qdisc *); - int (*init)(struct Qdisc *, struct nlattr *, struct netlink_ext_ack *); - void (*reset)(struct Qdisc *); - void (*destroy)(struct Qdisc *); - int (*change)(struct Qdisc *, struct nlattr *, struct netlink_ext_ack *); - void (*attach)(struct Qdisc *); - int (*change_tx_queue_len)(struct Qdisc *, unsigned int); - void (*change_real_num_tx)(struct Qdisc *, unsigned int); - int (*dump)(struct Qdisc *, struct sk_buff *); - int (*dump_stats)(struct Qdisc *, struct gnet_dump *); - void (*ingress_block_set)(struct Qdisc *, u32); - void (*egress_block_set)(struct Qdisc *, u32); - u32 (*ingress_block_get)(struct Qdisc *); - u32 (*egress_block_get)(struct Qdisc *); - struct module *owner; -}; - -struct qdisc_walker; - -struct tcf_block; - -struct Qdisc_class_ops { - unsigned int flags; - struct netdev_queue * (*select_queue)(struct Qdisc *, struct tcmsg *); - int (*graft)(struct Qdisc *, long unsigned int, struct Qdisc *, struct Qdisc **, struct netlink_ext_ack *); - struct Qdisc * (*leaf)(struct Qdisc *, long unsigned int); - void (*qlen_notify)(struct Qdisc *, long unsigned int); - long unsigned int (*find)(struct Qdisc *, u32); - int (*change)(struct Qdisc *, u32, u32, struct nlattr **, long unsigned int *, struct netlink_ext_ack *); - int (*delete)(struct Qdisc *, long unsigned int, struct netlink_ext_ack *); - void (*walk)(struct Qdisc *, struct qdisc_walker *); - struct tcf_block * (*tcf_block)(struct Qdisc *, long unsigned int, struct netlink_ext_ack *); - long unsigned int (*bind_tcf)(struct Qdisc *, long unsigned int, u32); - void (*unbind_tcf)(struct Qdisc *, long unsigned int); - int (*dump)(struct Qdisc *, long unsigned int, struct sk_buff *, struct tcmsg *); - int (*dump_stats)(struct Qdisc *, long unsigned int, struct gnet_dump *); -}; - -struct tcf_chain; - -struct tcf_block { - struct xarray ports; - struct mutex lock; - struct list_head chain_list; - u32 index; - u32 classid; - refcount_t refcnt; - struct net *net; - struct Qdisc *q; - struct rw_semaphore cb_lock; - struct flow_block flow_block; - struct list_head owner_list; - bool keep_dst; - atomic_t useswcnt; - atomic_t offloadcnt; - unsigned int nooffloaddevcnt; - unsigned int lockeddevcnt; - struct { - struct tcf_chain *chain; - struct list_head filter_chain_list; - } chain0; - struct callback_head rcu; - struct hlist_head proto_destroy_ht[128]; - struct mutex proto_destroy_lock; -}; - -struct tcf_result; - -struct tcf_proto_ops; - -struct tcf_proto { - struct tcf_proto *next; - void *root; - int (*classify)(struct sk_buff *, const struct tcf_proto *, struct tcf_result *); - __be16 protocol; - u32 prio; - void *data; - const struct tcf_proto_ops *ops; - struct tcf_chain *chain; - spinlock_t lock; - bool deleting; - bool counted; - bool usesw; - refcount_t refcnt; - struct callback_head rcu; - struct hlist_node destroy_ht_node; -}; - -struct tcf_result { - union { - struct { - long unsigned int class; - u32 classid; - }; - const struct tcf_proto *goto_tp; - }; -}; - -struct tcf_walker; - -struct tcf_exts; - -struct tcf_proto_ops { - struct list_head head; - char kind[16]; - int (*classify)(struct sk_buff *, const struct tcf_proto *, struct tcf_result *); - int (*init)(struct tcf_proto *); - void (*destroy)(struct tcf_proto *, bool, struct netlink_ext_ack *); - void * (*get)(struct tcf_proto *, u32); - void (*put)(struct tcf_proto *, void *); - int (*change)(struct net *, struct sk_buff *, struct tcf_proto *, long unsigned int, u32, struct nlattr **, void **, u32, struct netlink_ext_ack *); - int (*delete)(struct tcf_proto *, void *, bool *, bool, struct netlink_ext_ack *); - bool (*delete_empty)(struct tcf_proto *); - void (*walk)(struct tcf_proto *, struct tcf_walker *, bool); - int (*reoffload)(struct tcf_proto *, bool, flow_setup_cb_t *, void *, struct netlink_ext_ack *); - void (*hw_add)(struct tcf_proto *, void *); - void (*hw_del)(struct tcf_proto *, void *); - void (*bind_class)(void *, u32, long unsigned int, void *, long unsigned int); - void * (*tmplt_create)(struct net *, struct tcf_chain *, struct nlattr **, struct netlink_ext_ack *); - void (*tmplt_destroy)(void *); - void (*tmplt_reoffload)(struct tcf_chain *, bool, flow_setup_cb_t *, void *); - struct tcf_exts * (*get_exts)(const struct tcf_proto *, u32); - int (*dump)(struct net *, struct tcf_proto *, void *, struct sk_buff *, struct tcmsg *, bool); - int (*terse_dump)(struct net *, struct tcf_proto *, void *, struct sk_buff *, struct tcmsg *, bool); - int (*tmplt_dump)(struct sk_buff *, struct net *, void *); - struct module *owner; - int flags; -}; - -struct tcf_chain { - struct mutex filter_chain_lock; - struct tcf_proto *filter_chain; - struct list_head list; - struct tcf_block *block; - u32 index; - unsigned int refcnt; - unsigned int action_refcnt; - bool explicitly_created; - bool flushing; - const struct tcf_proto_ops *tmplt_ops; - void *tmplt_priv; - struct callback_head rcu; -}; - -struct page_pool_recycle_stats { - u64 cached; - u64 cache_full; - u64 ring; - u64 ring_full; - u64 released_refcnt; -}; - -struct memory_provider_ops { - netmem_ref (*alloc_netmems)(struct page_pool *, gfp_t); - bool (*release_netmem)(struct page_pool *, netmem_ref); - int (*init)(struct page_pool *); - void (*destroy)(struct page_pool *); - int (*nl_fill)(void *, struct sk_buff *, struct netdev_rx_queue *); - void (*uninstall)(void *, struct netdev_rx_queue *); -}; - -struct xdp_mem_info { - u32 type; - u32 id; -}; - -struct xdp_rxq_info { - struct net_device *dev; - u32 queue_index; - u32 reg_state; - struct xdp_mem_info mem; - u32 frag_size; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct xdp_txq_info { - struct net_device *dev; -}; - -struct rhash_lock_head {}; - -struct bpf_preload_info { - char link_name[16]; - struct bpf_link *link; -}; - -struct bpf_preload_ops { - int (*preload)(struct bpf_preload_info *); - struct module *owner; -}; - -enum bpf_type { - BPF_TYPE_UNSPEC = 0, - BPF_TYPE_PROG = 1, - BPF_TYPE_MAP = 2, - BPF_TYPE_LINK = 3, -}; - -struct map_iter { - void *key; - bool done; -}; - -struct bpffs_btf_enums { - const struct btf *btf; - const struct btf_type *cmd_t; - const struct btf_type *map_t; - const struct btf_type *prog_t; - const struct btf_type *attach_t; -}; - -enum { - OPT_UID = 0, - OPT_GID = 1, - OPT_MODE = 2, - OPT_DELEGATE_CMDS = 3, - OPT_DELEGATE_MAPS = 4, - OPT_DELEGATE_PROGS = 5, - OPT_DELEGATE_ATTACHS = 6, -}; - -typedef __kernel_ulong_t ino_t; - -enum { - BPF_REG_0 = 0, - BPF_REG_1 = 1, - BPF_REG_2 = 2, - BPF_REG_3 = 3, - BPF_REG_4 = 4, - BPF_REG_5 = 5, - BPF_REG_6 = 6, - BPF_REG_7 = 7, - BPF_REG_8 = 8, - BPF_REG_9 = 9, - BPF_REG_10 = 10, - __MAX_BPF_REG = 11, -}; - -struct bpf_cgroup_storage_key { - __u64 cgroup_inode_id; - __u32 attach_type; -}; - -enum { - BPF_F_INDEX_MASK = 4294967295ULL, - BPF_F_CURRENT_CPU = 4294967295ULL, - BPF_F_CTXLEN_MASK = 4503595332403200ULL, -}; - -struct bpf_spin_lock { - __u32 val; -}; - -struct bpf_timer { - __u64 __opaque[2]; -}; - -struct bpf_wq { - __u64 __opaque[2]; -}; - -struct bpf_dynptr { - __u64 __opaque[2]; -}; - -struct bpf_list_head { - __u64 __opaque[2]; -}; - -struct bpf_list_node { - __u64 __opaque[3]; -}; - -struct bpf_rb_root { - __u64 __opaque[2]; -}; - -struct bpf_rb_node { - __u64 __opaque[4]; -}; - -struct bpf_refcount { - __u32 __opaque[1]; -}; - -struct bpf_pidns_info { - __u32 pid; - __u32 tgid; -}; - -enum { - BPF_F_TIMER_ABS = 1, - BPF_F_TIMER_CPU_PIN = 2, -}; - -enum bpf_kfunc_flags { - BPF_F_PAD_ZEROS = 1, -}; - -struct ubuf_info; - -struct msghdr { - void *msg_name; - int msg_namelen; - int msg_inq; - struct iov_iter msg_iter; - union { - void *msg_control; - void *msg_control_user; - }; - bool msg_control_is_user: 1; - bool msg_get_inq: 1; - unsigned int msg_flags; - __kernel_size_t msg_controllen; - struct kiocb *msg_iocb; - struct ubuf_info *msg_ubuf; - int (*sg_from_iter)(struct sk_buff *, struct iov_iter *, size_t); -}; - -struct ubuf_info_ops; - -struct ubuf_info { - const struct ubuf_info_ops *ops; - refcount_t refcnt; - u8 flags; -}; - -struct __large_struct { - long unsigned int buf[100]; -}; - -typedef struct { - void *lock; -} class_pagefault_t; - -typedef __u64 __addrpair; - -typedef __u32 __portpair; - -struct proto; - -struct sock_common { - union { - __addrpair skc_addrpair; - struct { - __be32 skc_daddr; - __be32 skc_rcv_saddr; - }; - }; - union { - unsigned int skc_hash; - __u16 skc_u16hashes[2]; - }; - union { - __portpair skc_portpair; - struct { - __be16 skc_dport; - __u16 skc_num; - }; - }; - short unsigned int skc_family; - volatile unsigned char skc_state; - unsigned char skc_reuse: 4; - unsigned char skc_reuseport: 1; - unsigned char skc_ipv6only: 1; - unsigned char skc_net_refcnt: 1; - int skc_bound_dev_if; - union { - struct hlist_node skc_bind_node; - struct hlist_node skc_portaddr_node; - }; - struct proto *skc_prot; - possible_net_t skc_net; - struct in6_addr skc_v6_daddr; - struct in6_addr skc_v6_rcv_saddr; - atomic64_t skc_cookie; - union { - long unsigned int skc_flags; - struct sock *skc_listener; - struct inet_timewait_death_row *skc_tw_dr; - }; - int skc_dontcopy_begin[0]; - union { - struct hlist_node skc_node; - struct hlist_nulls_node skc_nulls_node; - }; - short unsigned int skc_tx_queue_mapping; - short unsigned int skc_rx_queue_mapping; - union { - int skc_incoming_cpu; - u32 skc_rcv_wnd; - u32 skc_tw_rcv_nxt; - }; - refcount_t skc_refcnt; - int skc_dontcopy_end[0]; - union { - u32 skc_rxhash; - u32 skc_window_clamp; - u32 skc_tw_snd_nxt; - }; -}; - -typedef struct { - spinlock_t slock; - int owned; - wait_queue_head_t wq; -} socket_lock_t; - -struct sock_cgroup_data { - struct cgroup *cgroup; - u32 classid; - u16 prioidx; -}; - -typedef struct {} netns_tracker; - -struct sk_filter; - -struct socket_wq; - -struct socket; - -struct sock_reuseport; - -struct sock { - struct sock_common __sk_common; - __u8 __cacheline_group_begin__sock_write_rx[0]; - atomic_t sk_drops; - __s32 sk_peek_off; - struct sk_buff_head sk_error_queue; - struct sk_buff_head sk_receive_queue; - struct { - atomic_t rmem_alloc; - int len; - struct sk_buff *head; - struct sk_buff *tail; - } sk_backlog; - __u8 __cacheline_group_end__sock_write_rx[0]; - __u8 __cacheline_group_begin__sock_read_rx[0]; - struct dst_entry *sk_rx_dst; - int sk_rx_dst_ifindex; - u32 sk_rx_dst_cookie; - unsigned int sk_ll_usec; - unsigned int sk_napi_id; - u16 sk_busy_poll_budget; - u8 sk_prefer_busy_poll; - u8 sk_userlocks; - int sk_rcvbuf; - struct sk_filter *sk_filter; - union { - struct socket_wq *sk_wq; - struct socket_wq *sk_wq_raw; - }; - void (*sk_data_ready)(struct sock *); - long int sk_rcvtimeo; - int sk_rcvlowat; - __u8 __cacheline_group_end__sock_read_rx[0]; - __u8 __cacheline_group_begin__sock_read_rxtx[0]; - int sk_err; - struct socket *sk_socket; - struct mem_cgroup *sk_memcg; - struct xfrm_policy *sk_policy[2]; - __u8 __cacheline_group_end__sock_read_rxtx[0]; - __u8 __cacheline_group_begin__sock_write_rxtx[0]; - socket_lock_t sk_lock; - u32 sk_reserved_mem; - int sk_forward_alloc; - u32 sk_tsflags; - __u8 __cacheline_group_end__sock_write_rxtx[0]; - __u8 __cacheline_group_begin__sock_write_tx[0]; - int sk_write_pending; - atomic_t sk_omem_alloc; - int sk_sndbuf; - int sk_wmem_queued; - refcount_t sk_wmem_alloc; - long unsigned int sk_tsq_flags; - union { - struct sk_buff *sk_send_head; - struct rb_root tcp_rtx_queue; - }; - struct sk_buff_head sk_write_queue; - u32 sk_dst_pending_confirm; - u32 sk_pacing_status; - struct page_frag sk_frag; - struct timer_list sk_timer; - long unsigned int sk_pacing_rate; - atomic_t sk_zckey; - atomic_t sk_tskey; - __u8 __cacheline_group_end__sock_write_tx[0]; - __u8 __cacheline_group_begin__sock_read_tx[0]; - long unsigned int sk_max_pacing_rate; - long int sk_sndtimeo; - u32 sk_priority; - u32 sk_mark; - struct dst_entry *sk_dst_cache; - netdev_features_t sk_route_caps; - struct sk_buff * (*sk_validate_xmit_skb)(struct sock *, struct net_device *, struct sk_buff *); - u16 sk_gso_type; - u16 sk_gso_max_segs; - unsigned int sk_gso_max_size; - gfp_t sk_allocation; - u32 sk_txhash; - u8 sk_pacing_shift; - bool sk_use_task_frag; - __u8 __cacheline_group_end__sock_read_tx[0]; - u8 sk_gso_disabled: 1; - u8 sk_kern_sock: 1; - u8 sk_no_check_tx: 1; - u8 sk_no_check_rx: 1; - u8 sk_shutdown; - u16 sk_type; - u16 sk_protocol; - long unsigned int sk_lingertime; - struct proto *sk_prot_creator; - rwlock_t sk_callback_lock; - int sk_err_soft; - u32 sk_ack_backlog; - u32 sk_max_ack_backlog; - kuid_t sk_uid; - long unsigned int sk_ino; - spinlock_t sk_peer_lock; - int sk_bind_phc; - struct pid *sk_peer_pid; - const struct cred *sk_peer_cred; - ktime_t sk_stamp; - int sk_disconnects; - union { - u8 sk_txrehash; - u8 sk_scm_recv_flags; - struct { - u8 sk_scm_credentials: 1; - u8 sk_scm_security: 1; - u8 sk_scm_pidfd: 1; - u8 sk_scm_rights: 1; - u8 sk_scm_unused: 4; - }; - }; - u8 sk_clockid; - u8 sk_txtime_deadline_mode: 1; - u8 sk_txtime_report_errors: 1; - u8 sk_txtime_unused: 6; - u8 sk_bpf_cb_flags; - void *sk_user_data; - void *sk_security; - struct sock_cgroup_data sk_cgrp_data; - void (*sk_state_change)(struct sock *); - void (*sk_write_space)(struct sock *); - void (*sk_error_report)(struct sock *); - int (*sk_backlog_rcv)(struct sock *, struct sk_buff *); - void (*sk_destruct)(struct sock *); - struct sock_reuseport *sk_reuseport_cb; - struct bpf_local_storage *sk_bpf_storage; - struct callback_head sk_rcu; - netns_tracker ns_tracker; - struct xarray sk_user_frags; -}; - -typedef struct { - union { - void *kernel; - void *user; - }; - bool is_kernel: 1; -} sockptr_t; - -typedef sockptr_t bpfptr_t; - -struct btf_id_set8 { - u32 cnt; - u32 flags; - struct { - u32 id; - u32 flags; - } pairs[0]; -}; - -enum { - BTF_TRACING_TYPE_TASK = 0, - BTF_TRACING_TYPE_FILE = 1, - BTF_TRACING_TYPE_VMA = 2, - MAX_BTF_TRACING_TYPE = 3, -}; - -typedef int (*btf_kfunc_filter_t)(const struct bpf_prog *, u32); - -struct btf_kfunc_id_set { - struct module *owner; - struct btf_id_set8 *set; - btf_kfunc_filter_t filter; -}; - -struct btf_id_dtor_kfunc { - u32 btf_id; - u32 kfunc_btf_id; -}; - -struct btf_struct_meta { - u32 btf_id; - struct btf_record *record; -}; - -struct bpf_mem_caches; - -struct bpf_mem_cache; - -struct bpf_mem_alloc { - struct bpf_mem_caches *caches; - struct bpf_mem_cache *cache; - struct obj_cgroup *objcg; - bool percpu; - struct work_struct work; -}; - -struct bpf_verifier_log { - u64 start_pos; - u64 end_pos; - char *ubuf; - u32 level; - u32 len_total; - u32 len_max; - char kbuf[1024]; -}; - -enum priv_stack_mode { - PRIV_STACK_UNKNOWN = 0, - NO_PRIV_STACK = 1, - PRIV_STACK_ADAPTIVE = 2, -}; - -struct bpf_subprog_arg_info { - enum bpf_arg_type arg_type; - union { - u32 mem_size; - u32 btf_id; - }; -}; - -struct bpf_subprog_info { - u32 start; - u32 linfo_idx; - u16 stack_depth; - u16 stack_extra; - s16 fastcall_stack_off; - bool has_tail_call: 1; - bool tail_call_reachable: 1; - bool has_ld_abs: 1; - bool is_cb: 1; - bool is_async_cb: 1; - bool is_exception_cb: 1; - bool args_cached: 1; - bool keep_fastcall_stack: 1; - bool changes_pkt_data: 1; - bool might_sleep: 1; - enum priv_stack_mode priv_stack_mode; - u8 arg_cnt; - struct bpf_subprog_arg_info args[5]; -}; - -struct bpf_id_pair { - u32 old; - u32 cur; -}; - -struct bpf_idmap { - u32 tmp_id_gen; - struct bpf_id_pair map[600]; -}; - -struct bpf_idset { - u32 count; - u32 ids[600]; -}; - -struct backtrack_state { - struct bpf_verifier_env *env; - u32 frame; - u32 reg_masks[8]; - u64 stack_masks[8]; -}; - -struct bpf_scc_callchain { - u32 callsites[7]; - u32 scc; -}; - -struct bpf_verifier_stack_elem; - -struct bpf_verifier_state; - -struct bpf_insn_aux_data; - -struct bpf_jmp_history_entry; - -struct bpf_scc_info; - -struct bpf_verifier_env { - u32 insn_idx; - u32 prev_insn_idx; - struct bpf_prog *prog; - const struct bpf_verifier_ops *ops; - struct module *attach_btf_mod; - struct bpf_verifier_stack_elem *head; - int stack_size; - bool strict_alignment; - bool test_state_freq; - bool test_reg_invariants; - struct bpf_verifier_state *cur_state; - struct list_head *explored_states; - struct list_head free_list; - struct bpf_map *used_maps[64]; - struct btf_mod_pair used_btfs[64]; - u32 used_map_cnt; - u32 used_btf_cnt; - u32 id_gen; - u32 hidden_subprog_cnt; - int exception_callback_subprog; - bool explore_alu_limits; - bool allow_ptr_leaks; - bool allow_uninit_stack; - bool bpf_capable; - bool bypass_spec_v1; - bool bypass_spec_v4; - bool seen_direct_write; - bool seen_exception; - struct bpf_insn_aux_data *insn_aux_data; - const struct bpf_line_info *prev_linfo; - struct bpf_verifier_log log; - struct bpf_subprog_info subprog_info[258]; - union { - struct bpf_idmap idmap_scratch; - struct bpf_idset idset_scratch; - }; - struct { - int *insn_state; - int *insn_stack; - int *insn_postorder; - int cur_stack; - int cur_postorder; - } cfg; - struct backtrack_state bt; - struct bpf_jmp_history_entry *cur_hist_ent; - u32 pass_cnt; - u32 subprog_cnt; - u32 prev_insn_processed; - u32 insn_processed; - u32 prev_jmps_processed; - u32 jmps_processed; - u64 verification_time; - u32 max_states_per_insn; - u32 total_states; - u32 peak_states; - u32 longest_mark_read_walk; - u32 free_list_size; - u32 explored_states_size; - u32 num_backedges; - bpfptr_t fd_array; - u32 scratched_regs; - u64 scratched_stack_slots; - u64 prev_log_pos; - u64 prev_insn_print_pos; - struct bpf_reg_state fake_reg[2]; - char tmp_str_buf[320]; - struct bpf_insn insn_buf[32]; - struct bpf_insn epilogue_buf[32]; - struct bpf_scc_callchain callchain_buf; - struct bpf_scc_info **scc_info; - u32 scc_cnt; -}; - -struct bpf_retval_range { - s32 minval; - s32 maxval; -}; - -struct bpf_stack_state; - -struct bpf_func_state { - struct bpf_reg_state regs[11]; - int callsite; - u32 frameno; - u32 subprogno; - u32 async_entry_cnt; - struct bpf_retval_range callback_ret_range; - bool in_callback_fn; - bool in_async_callback_fn; - bool in_exception_callback_fn; - u32 callback_depth; - struct bpf_stack_state *stack; - int allocated_stack; -}; - -struct bpf_rb_node_kern { - struct rb_node rb_node; - void *owner; -}; - -struct bpf_list_node_kern { - struct list_head list_head; - void *owner; -}; - -enum bpf_type_flag { - PTR_MAYBE_NULL = 256, - MEM_RDONLY = 512, - MEM_RINGBUF = 1024, - MEM_USER = 2048, - MEM_PERCPU = 4096, - OBJ_RELEASE = 8192, - PTR_UNTRUSTED = 16384, - MEM_UNINIT = 32768, - DYNPTR_TYPE_LOCAL = 65536, - DYNPTR_TYPE_RINGBUF = 131072, - MEM_FIXED_SIZE = 262144, - MEM_ALLOC = 524288, - PTR_TRUSTED = 1048576, - MEM_RCU = 2097152, - NON_OWN_REF = 4194304, - DYNPTR_TYPE_SKB = 8388608, - DYNPTR_TYPE_XDP = 16777216, - MEM_ALIGNED = 33554432, - MEM_WRITE = 67108864, - __BPF_TYPE_FLAG_MAX = 67108865, - __BPF_TYPE_LAST_FLAG = 67108864, -}; - -struct bpf_dynptr_kern { - void *data; - u32 size; - u32 offset; -}; - -struct bpf_array_aux { - struct list_head poke_progs; - struct bpf_map *map; - struct mutex poke_mutex; - struct work_struct work; -}; - -struct bpf_array { - struct bpf_map map; - u32 elem_size; - u32 index_mask; - struct bpf_array_aux *aux; - union { - struct { - struct {} __empty_value; - char value[0]; - }; - struct { - struct {} __empty_ptrs; - void *ptrs[0]; - }; - struct { - struct {} __empty_pptrs; - void *pptrs[0]; - }; - }; -}; - -typedef long unsigned int (*bpf_ctx_copy_t)(void *, const void *, long unsigned int, long unsigned int); - -struct bpf_storage_buffer; - -struct bpf_cgroup_storage_map; - -struct bpf_cgroup_storage { - union { - struct bpf_storage_buffer *buf; - void *percpu_buf; - }; - struct bpf_cgroup_storage_map *map; - struct bpf_cgroup_storage_key key; - struct list_head list_map; - struct list_head list_cg; - struct rb_node node; - struct callback_head rcu; -}; - -struct bpf_bprintf_buffers { - char bin_args[512]; - char buf[1024]; -}; - -struct bpf_bprintf_data { - u32 *bin_args; - char *buf; - bool get_bin_args; - bool get_buf; -}; - -struct flowi_tunnel { - __be64 tun_id; -}; - -struct flowi_common { - int flowic_oif; - int flowic_iif; - int flowic_l3mdev; - __u32 flowic_mark; - __u8 flowic_tos; - __u8 flowic_scope; - __u8 flowic_proto; - __u8 flowic_flags; - __u32 flowic_secid; - kuid_t flowic_uid; - __u32 flowic_multipath_hash; - struct flowi_tunnel flowic_tun_key; -}; - -union flowi_uli { - struct { - __be16 dport; - __be16 sport; - } ports; - struct { - __u8 type; - __u8 code; - } icmpt; - __be32 gre_key; - struct { - __u8 type; - } mht; -}; - -struct flowi4 { - struct flowi_common __fl_common; - __be32 saddr; - __be32 daddr; - union flowi_uli uli; -}; - -struct flowi6 { - struct flowi_common __fl_common; - struct in6_addr daddr; - struct in6_addr saddr; - __be32 flowlabel; - union flowi_uli uli; - __u32 mp_hash; -}; - -struct flowi { - union { - struct flowi_common __fl_common; - struct flowi4 ip4; - struct flowi6 ip6; - } u; -}; - -struct prot_inuse { - int all; - int val[64]; -}; - -struct fib_rule; - -struct fib_lookup_arg; - -struct fib_rule_hdr; - -struct fib_rules_ops { - int family; - struct list_head list; - int rule_size; - int addr_size; - int unresolved_rules; - int nr_goto_rules; - unsigned int fib_rules_seq; - int (*action)(struct fib_rule *, struct flowi *, int, struct fib_lookup_arg *); - bool (*suppress)(struct fib_rule *, int, struct fib_lookup_arg *); - int (*match)(struct fib_rule *, struct flowi *, int); - int (*configure)(struct fib_rule *, struct sk_buff *, struct fib_rule_hdr *, struct nlattr **, struct netlink_ext_ack *); - int (*delete)(struct fib_rule *); - int (*compare)(struct fib_rule *, struct fib_rule_hdr *, struct nlattr **); - int (*fill)(struct fib_rule *, struct sk_buff *, struct fib_rule_hdr *); - size_t (*nlmsg_payload)(struct fib_rule *); - void (*flush_cache)(struct fib_rules_ops *); - int nlgroup; - struct list_head rules_list; - struct module *owner; - struct net *fro_net; - struct callback_head rcu; -}; - -struct fib_notifier_ops { - int family; - struct list_head list; - unsigned int (*fib_seq_read)(const struct net *); - int (*fib_dump)(struct net *, struct notifier_block *, struct netlink_ext_ack *); - struct module *owner; - struct callback_head rcu; -}; - -struct ubuf_info_ops { - void (*complete)(struct sk_buff *, struct ubuf_info *, bool); - int (*link_skb)(struct sk_buff *, struct ubuf_info *); -}; - -typedef enum { - SS_FREE = 0, - SS_UNCONNECTED = 1, - SS_CONNECTING = 2, - SS_CONNECTED = 3, - SS_DISCONNECTING = 4, -} socket_state; - -struct socket_wq { - wait_queue_head_t wait; - struct fasync_struct *fasync_list; - long unsigned int flags; - struct callback_head rcu; - long: 64; -}; - -struct proto_ops; - -struct socket { - socket_state state; - short int type; - long unsigned int flags; - struct file *file; - struct sock *sk; - const struct proto_ops *ops; - long: 64; - long: 64; - long: 64; - struct socket_wq wq; -}; - -typedef struct { - size_t written; - size_t count; - union { - char *buf; - void *data; - } arg; - int error; -} read_descriptor_t; - -typedef int (*sk_read_actor_t)(read_descriptor_t *, struct sk_buff *, unsigned int, size_t); - -typedef int (*skb_read_actor_t)(struct sock *, struct sk_buff *); - -struct proto_accept_arg; - -struct proto_ops { - int family; - struct module *owner; - int (*release)(struct socket *); - int (*bind)(struct socket *, struct sockaddr *, int); - int (*connect)(struct socket *, struct sockaddr *, int, int); - int (*socketpair)(struct socket *, struct socket *); - int (*accept)(struct socket *, struct socket *, struct proto_accept_arg *); - int (*getname)(struct socket *, struct sockaddr *, int); - __poll_t (*poll)(struct file *, struct socket *, struct poll_table_struct *); - int (*ioctl)(struct socket *, unsigned int, long unsigned int); - int (*compat_ioctl)(struct socket *, unsigned int, long unsigned int); - int (*gettstamp)(struct socket *, void *, bool, bool); - int (*listen)(struct socket *, int); - int (*shutdown)(struct socket *, int); - int (*setsockopt)(struct socket *, int, int, sockptr_t, unsigned int); - int (*getsockopt)(struct socket *, int, int, char *, int *); - void (*show_fdinfo)(struct seq_file *, struct socket *); - int (*sendmsg)(struct socket *, struct msghdr *, size_t); - int (*recvmsg)(struct socket *, struct msghdr *, size_t, int); - int (*mmap)(struct file *, struct socket *, struct vm_area_struct *); - ssize_t (*splice_read)(struct socket *, loff_t *, struct pipe_inode_info *, size_t, unsigned int); - void (*splice_eof)(struct socket *); - int (*set_peek_off)(struct sock *, int); - int (*peek_len)(struct socket *); - int (*read_sock)(struct sock *, read_descriptor_t *, sk_read_actor_t); - int (*read_skb)(struct sock *, skb_read_actor_t); - int (*sendmsg_locked)(struct sock *, struct msghdr *, size_t); - int (*set_rcvlowat)(struct sock *, int); -}; - -struct proto_accept_arg { - int flags; - int err; - int is_empty; - bool kern; -}; - -struct neigh_parms { - possible_net_t net; - struct net_device *dev; - netdevice_tracker dev_tracker; - struct list_head list; - int (*neigh_setup)(struct neighbour *); - struct neigh_table *tbl; - void *sysctl_table; - int dead; - refcount_t refcnt; - struct callback_head callback_head; - int reachable_time; - u32 qlen; - int data[14]; - long unsigned int data_state[1]; -}; - -enum hwtstamp_source { - HWTSTAMP_SOURCE_NETDEV = 1, - HWTSTAMP_SOURCE_PHYLIB = 2, -}; - -enum hwtstamp_provider_qualifier { - HWTSTAMP_PROVIDER_QUALIFIER_PRECISE = 0, - HWTSTAMP_PROVIDER_QUALIFIER_APPROX = 1, - HWTSTAMP_PROVIDER_QUALIFIER_CNT = 2, -}; - -struct kernel_hwtstamp_config { - int flags; - int tx_type; - int rx_filter; - struct ifreq *ifr; - bool copied_to_user; - enum hwtstamp_source source; - enum hwtstamp_provider_qualifier qualifier; -}; - -struct hwtstamp_provider_desc { - int index; - enum hwtstamp_provider_qualifier qualifier; -}; - -struct hwtstamp_provider { - struct callback_head callback_head; - enum hwtstamp_source source; - struct phy_device *phydev; - struct hwtstamp_provider_desc desc; -}; - -struct pneigh_entry; - -struct neigh_statistics; - -struct neigh_hash_table; - -struct neigh_table { - int family; - unsigned int entry_size; - unsigned int key_len; - __be16 protocol; - __u32 (*hash)(const void *, const struct net_device *, __u32 *); - bool (*key_eq)(const struct neighbour *, const void *); - int (*constructor)(struct neighbour *); - int (*pconstructor)(struct pneigh_entry *); - void (*pdestructor)(struct pneigh_entry *); - void (*proxy_redo)(struct sk_buff *); - int (*is_multicast)(const void *); - bool (*allow_add)(const struct net_device *, struct netlink_ext_ack *); - char *id; - struct neigh_parms parms; - struct list_head parms_list; - int gc_interval; - int gc_thresh1; - int gc_thresh2; - int gc_thresh3; - long unsigned int last_flush; - struct delayed_work gc_work; - struct delayed_work managed_work; - struct timer_list proxy_timer; - struct sk_buff_head proxy_queue; - atomic_t entries; - atomic_t gc_entries; - struct list_head gc_list; - struct list_head managed_list; - rwlock_t lock; - long unsigned int last_rand; - struct neigh_statistics *stats; - struct neigh_hash_table *nht; - struct mutex phash_lock; - struct pneigh_entry **phash_buckets; -}; - -struct neigh_statistics { - long unsigned int allocs; - long unsigned int destroys; - long unsigned int hash_grows; - long unsigned int res_failed; - long unsigned int lookups; - long unsigned int hits; - long unsigned int rcv_probes_mcast; - long unsigned int rcv_probes_ucast; - long unsigned int periodic_gc_runs; - long unsigned int forced_gc_runs; - long unsigned int unres_discards; - long unsigned int table_fulls; -}; - -struct neigh_ops { - int family; - void (*solicit)(struct neighbour *, struct sk_buff *); - void (*error_report)(struct neighbour *, struct sk_buff *); - int (*output)(struct neighbour *, struct sk_buff *); - int (*connected_output)(struct neighbour *, struct sk_buff *); -}; - -struct pneigh_entry { - struct pneigh_entry *next; - possible_net_t net; - struct net_device *dev; - netdevice_tracker dev_tracker; - union { - struct list_head free_node; - struct callback_head rcu; - }; - u32 flags; - u8 protocol; - bool permanent; - u32 key[0]; -}; - -struct neigh_hash_table { - struct hlist_head *hash_heads; - unsigned int hash_shift; - __u32 hash_rnd[4]; - struct callback_head rcu; -}; - -struct fib_rule_hdr { - __u8 family; - __u8 dst_len; - __u8 src_len; - __u8 tos; - __u8 table; - __u8 res1; - __u8 res2; - __u8 action; - __u32 flags; -}; - -struct fib_rule_port_range { - __u16 start; - __u16 end; -}; - -struct fib_kuid_range { - kuid_t start; - kuid_t end; -}; - -struct fib_rule { - struct list_head list; - int iifindex; - int oifindex; - u32 mark; - u32 mark_mask; - u32 flags; - u32 table; - u8 action; - u8 l3mdev; - u8 proto; - u8 ip_proto; - u32 target; - __be64 tun_id; - struct fib_rule *ctarget; - struct net *fr_net; - refcount_t refcnt; - u32 pref; - int suppress_ifgroup; - int suppress_prefixlen; - char iifname[16]; - char oifname[16]; - struct fib_kuid_range uid_range; - struct fib_rule_port_range sport_range; - struct fib_rule_port_range dport_range; - u16 sport_mask; - u16 dport_mask; - u8 iif_is_l3_master; - u8 oif_is_l3_master; - struct callback_head rcu; -}; - -struct fib_lookup_arg { - void *lookup_ptr; - const void *lookup_data; - void *result; - struct fib_rule *rule; - u32 table; - int flags; -}; - -struct smc_hashinfo; - -struct sk_psock; - -struct request_sock_ops; - -struct timewait_sock_ops; - -struct raw_hashinfo; - -struct proto { - void (*close)(struct sock *, long int); - int (*pre_connect)(struct sock *, struct sockaddr *, int); - int (*connect)(struct sock *, struct sockaddr *, int); - int (*disconnect)(struct sock *, int); - struct sock * (*accept)(struct sock *, struct proto_accept_arg *); - int (*ioctl)(struct sock *, int, int *); - int (*init)(struct sock *); - void (*destroy)(struct sock *); - void (*shutdown)(struct sock *, int); - int (*setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); - int (*getsockopt)(struct sock *, int, int, char *, int *); - void (*keepalive)(struct sock *, int); - int (*compat_ioctl)(struct sock *, unsigned int, long unsigned int); - int (*sendmsg)(struct sock *, struct msghdr *, size_t); - int (*recvmsg)(struct sock *, struct msghdr *, size_t, int, int *); - void (*splice_eof)(struct socket *); - int (*bind)(struct sock *, struct sockaddr *, int); - int (*bind_add)(struct sock *, struct sockaddr *, int); - int (*backlog_rcv)(struct sock *, struct sk_buff *); - bool (*bpf_bypass_getsockopt)(int, int); - void (*release_cb)(struct sock *); - int (*hash)(struct sock *); - void (*unhash)(struct sock *); - void (*rehash)(struct sock *); - int (*get_port)(struct sock *, short unsigned int); - void (*put_port)(struct sock *); - int (*psock_update_sk_prot)(struct sock *, struct sk_psock *, bool); - unsigned int inuse_idx; - bool (*stream_memory_free)(const struct sock *, int); - bool (*sock_is_readable)(struct sock *); - void (*enter_memory_pressure)(struct sock *); - void (*leave_memory_pressure)(struct sock *); - atomic_long_t *memory_allocated; - int *per_cpu_fw_alloc; - struct percpu_counter *sockets_allocated; - long unsigned int *memory_pressure; - long int *sysctl_mem; - int *sysctl_wmem; - int *sysctl_rmem; - u32 sysctl_wmem_offset; - u32 sysctl_rmem_offset; - int max_header; - bool no_autobind; - struct kmem_cache *slab; - unsigned int obj_size; - unsigned int ipv6_pinfo_offset; - slab_flags_t slab_flags; - unsigned int useroffset; - unsigned int usersize; - unsigned int *orphan_count; - struct request_sock_ops *rsk_prot; - struct timewait_sock_ops *twsk_prot; - union { - struct inet_hashinfo *hashinfo; - struct udp_table *udp_table; - struct raw_hashinfo *raw_hash; - struct smc_hashinfo *smc_hash; - } h; - struct module *owner; - char name[32]; - struct list_head node; - int (*diag_destroy)(struct sock *, int); -}; - -struct sk_filter { - refcount_t refcnt; - struct callback_head rcu; - struct bpf_prog *prog; -}; - -struct bpf_storage_buffer { - struct callback_head rcu; - char data[0]; -}; - -struct bpf_stack_state { - struct bpf_reg_state spilled_ptr; - u8 slot_type[8]; -}; - -enum ref_state_type { - REF_TYPE_PTR = 2, - REF_TYPE_IRQ = 4, - REF_TYPE_LOCK = 8, - REF_TYPE_RES_LOCK = 16, - REF_TYPE_RES_LOCK_IRQ = 32, - REF_TYPE_LOCK_MASK = 56, -}; - -struct bpf_reference_state { - enum ref_state_type type; - int id; - int insn_idx; - void *ptr; -}; - -enum { - INSN_F_FRAMENO_MASK = 7, - INSN_F_SPI_MASK = 63, - INSN_F_SPI_SHIFT = 3, - INSN_F_STACK_ACCESS = 512, - INSN_F_DST_REG_STACK = 1024, - INSN_F_SRC_REG_STACK = 2048, -}; - -struct bpf_jmp_history_entry { - u32 idx; - u32 prev_idx: 20; - u32 flags: 12; - u64 linked_regs; -}; - -struct bpf_verifier_state { - struct bpf_func_state *frame[8]; - struct bpf_verifier_state *parent; - struct bpf_reference_state *refs; - u32 branches; - u32 insn_idx; - u32 curframe; - u32 acquired_refs; - u32 active_locks; - u32 active_preempt_locks; - u32 active_irq_id; - u32 active_lock_id; - void *active_lock_ptr; - bool active_rcu_lock; - bool speculative; - bool in_sleepable; - u32 first_insn_idx; - u32 last_insn_idx; - struct bpf_verifier_state *equal_state; - struct bpf_jmp_history_entry *jmp_history; - u32 jmp_history_cnt; - u32 dfs_depth; - u32 callback_unroll_depth; - u32 may_goto_depth; -}; - -struct bpf_loop_inline_state { - unsigned int initialized: 1; - unsigned int fit_for_inline: 1; - u32 callback_subprogno; -}; - -struct bpf_map_ptr_state { - struct bpf_map *map_ptr; - bool poison; - bool unpriv; -}; - -struct bpf_insn_aux_data { - union { - enum bpf_reg_type ptr_type; - struct bpf_map_ptr_state map_ptr_state; - s32 call_imm; - u32 alu_limit; - struct { - u32 map_index; - u32 map_off; - }; - struct { - enum bpf_reg_type reg_type; - union { - struct { - struct btf *btf; - u32 btf_id; - }; - u32 mem_size; - }; - } btf_var; - struct bpf_loop_inline_state loop_inline_state; - }; - union { - u64 obj_new_size; - u64 insert_off; - }; - struct btf_struct_meta *kptr_struct_meta; - u64 map_key_state; - int ctx_field_size; - u32 seen; - bool nospec; - bool nospec_result; - bool zext_dst; - bool needs_zext; - bool storage_get_func_atomic; - bool is_iter_next; - bool call_with_percpu_alloc_ptr; - u8 alu_state; - u8 fastcall_pattern: 1; - u8 fastcall_spills_num: 3; - u8 arg_prog: 4; - unsigned int orig_idx; - bool jmp_point; - bool prune_point; - bool force_checkpoint; - bool calls_callback; - u32 scc; - u16 live_regs_before; -}; - -struct bpf_scc_backedge { - struct bpf_scc_backedge *next; - struct bpf_verifier_state state; -}; - -struct bpf_scc_visit { - struct bpf_scc_callchain callchain; - struct bpf_verifier_state *entry_state; - struct bpf_scc_backedge *backedges; - u32 num_backedges; -}; - -struct bpf_scc_info { - u32 num_visits; - struct bpf_scc_visit visits[0]; -}; - -typedef u64 (*btf_bpf_map_lookup_elem)(struct bpf_map *, void *); - -typedef u64 (*btf_bpf_map_update_elem)(struct bpf_map *, void *, void *, u64); - -typedef u64 (*btf_bpf_map_delete_elem)(struct bpf_map *, void *); - -typedef u64 (*btf_bpf_map_push_elem)(struct bpf_map *, void *, u64); - -typedef u64 (*btf_bpf_map_pop_elem)(struct bpf_map *, void *); - -typedef u64 (*btf_bpf_map_peek_elem)(struct bpf_map *, void *); - -typedef u64 (*btf_bpf_map_lookup_percpu_elem)(struct bpf_map *, void *, u32); - -typedef u64 (*btf_bpf_get_smp_processor_id)(void); - -typedef u64 (*btf_bpf_get_numa_node_id)(void); - -typedef u64 (*btf_bpf_ktime_get_ns)(void); - -typedef u64 (*btf_bpf_ktime_get_boot_ns)(void); - -typedef u64 (*btf_bpf_ktime_get_coarse_ns)(void); - -typedef u64 (*btf_bpf_ktime_get_tai_ns)(void); - -typedef u64 (*btf_bpf_get_current_pid_tgid)(void); - -typedef u64 (*btf_bpf_get_current_uid_gid)(void); - -typedef u64 (*btf_bpf_get_current_comm)(char *, u32); - -typedef u64 (*btf_bpf_spin_lock)(struct bpf_spin_lock *); - -typedef u64 (*btf_bpf_spin_unlock)(struct bpf_spin_lock *); - -typedef u64 (*btf_bpf_jiffies64)(void); - -typedef u64 (*btf_bpf_get_current_cgroup_id)(void); - -typedef u64 (*btf_bpf_get_current_ancestor_cgroup_id)(int); - -typedef u64 (*btf_bpf_strtol)(const char *, size_t, u64, s64 *); - -typedef u64 (*btf_bpf_strtoul)(const char *, size_t, u64, u64 *); - -typedef u64 (*btf_bpf_strncmp)(const char *, u32, const char *); - -typedef u64 (*btf_bpf_get_ns_current_pid_tgid)(u64, u64, struct bpf_pidns_info *, u32); - -typedef u64 (*btf_bpf_event_output_data)(void *, struct bpf_map *, u64, void *, u64); - -typedef u64 (*btf_bpf_copy_from_user)(void *, u32, const void *); - -typedef u64 (*btf_bpf_copy_from_user_task)(void *, u32, const void *, struct task_struct *, u64); - -typedef u64 (*btf_bpf_per_cpu_ptr)(const void *, u32); - -typedef u64 (*btf_bpf_this_cpu_ptr)(const void *); - -typedef u64 (*btf_bpf_snprintf)(char *, u32, char *, const void *, u32); - -struct bpf_async_cb { - struct bpf_map *map; - struct bpf_prog *prog; - void *callback_fn; - void *value; - union { - struct callback_head rcu; - struct work_struct delete_work; - }; - u64 flags; -}; - -struct bpf_hrtimer { - struct bpf_async_cb cb; - struct hrtimer timer; - atomic_t cancelling; -}; - -struct bpf_work { - struct bpf_async_cb cb; - struct work_struct work; - struct work_struct delete_work; -}; - -struct bpf_async_kern { - union { - struct bpf_async_cb *cb; - struct bpf_hrtimer *timer; - struct bpf_work *work; - }; - struct bpf_spin_lock lock; -}; - -enum bpf_async_type { - BPF_ASYNC_TYPE_TIMER = 0, - BPF_ASYNC_TYPE_WQ = 1, -}; - -typedef u64 (*btf_bpf_timer_init)(struct bpf_async_kern *, struct bpf_map *, u64); - -typedef u64 (*btf_bpf_timer_set_callback)(struct bpf_async_kern *, void *, struct bpf_prog_aux *); - -typedef u64 (*btf_bpf_timer_start)(struct bpf_async_kern *, u64, u64); - -typedef u64 (*btf_bpf_timer_cancel)(struct bpf_async_kern *); - -typedef u64 (*btf_bpf_kptr_xchg)(void *, void *); - -typedef u64 (*btf_bpf_dynptr_from_mem)(void *, u32, u64, struct bpf_dynptr_kern *); - -typedef u64 (*btf_bpf_dynptr_read)(void *, u32, const struct bpf_dynptr_kern *, u32, u64); - -typedef u64 (*btf_bpf_dynptr_write)(const struct bpf_dynptr_kern *, u32, void *, u32, u64); - -typedef u64 (*btf_bpf_dynptr_data)(const struct bpf_dynptr_kern *, u32, u32); - -typedef u64 (*btf_bpf_current_task_under_cgroup)(struct bpf_map *, u32); - -struct bpf_throw_ctx { - struct bpf_prog_aux *aux; - u64 sp; - u64 bp; - int cnt; -}; - -struct bpf_iter_bits { - __u64 __opaque[2]; -}; - -struct bpf_iter_bits_kern { - union { - __u64 *bits; - __u64 bits_copy; - }; - int nr_bits; - int bit; -}; - -union bpf_iter_link_info { - struct { - __u32 map_fd; - } map; - struct { - enum bpf_cgroup_iter_order order; - __u32 cgroup_fd; - __u64 cgroup_id; - } cgroup; - struct { - __u32 tid; - __u32 pid; - __u32 pid_fd; - } task; -}; - -typedef int (*bpf_iter_attach_target_t)(struct bpf_prog *, union bpf_iter_link_info *, struct bpf_iter_aux_info *); - -typedef void (*bpf_iter_detach_target_t)(struct bpf_iter_aux_info *); - -typedef void (*bpf_iter_show_fdinfo_t)(const struct bpf_iter_aux_info *, struct seq_file *); - -typedef int (*bpf_iter_fill_link_info_t)(const struct bpf_iter_aux_info *, struct bpf_link_info *); - -typedef const struct bpf_func_proto * (*bpf_iter_get_func_proto_t)(enum bpf_func_id, const struct bpf_prog *); - -struct bpf_iter_reg { - const char *target; - bpf_iter_attach_target_t attach_target; - bpf_iter_detach_target_t detach_target; - bpf_iter_show_fdinfo_t show_fdinfo; - bpf_iter_fill_link_info_t fill_link_info; - bpf_iter_get_func_proto_t get_func_proto; - u32 ctx_arg_info_size; - u32 feature; - struct bpf_ctx_arg_aux ctx_arg_info[2]; - const struct bpf_iter_seq_info *seq_info; -}; - -struct bpf_iter_meta { - union { - struct seq_file *seq; - }; - u64 session_id; - u64 seq_num; -}; - -struct bpf_iter_seq_prog_info { - u32 prog_id; -}; - -struct bpf_iter__bpf_prog { - union { - struct bpf_iter_meta *meta; - }; - union { - struct bpf_prog *prog; - }; -}; - -enum bpf_lru_list_type { - BPF_LRU_LIST_T_ACTIVE = 0, - BPF_LRU_LIST_T_INACTIVE = 1, - BPF_LRU_LIST_T_FREE = 2, - BPF_LRU_LOCAL_LIST_T_FREE = 3, - BPF_LRU_LOCAL_LIST_T_PENDING = 4, -}; - -struct bpf_lru_node { - struct list_head list; - u16 cpu; - u8 type; - u8 ref; -}; - -struct bpf_lru_list { - struct list_head lists[3]; - unsigned int counts[2]; - struct list_head *next_inactive_rotation; - raw_spinlock_t lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct bpf_lru_locallist { - struct list_head lists[2]; - u16 next_steal; - raw_spinlock_t lock; -}; - -struct bpf_common_lru { - struct bpf_lru_list lru_list; - struct bpf_lru_locallist *local_list; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -typedef bool (*del_from_htab_func)(void *, struct bpf_lru_node *); - -struct bpf_lru { - union { - struct bpf_common_lru common_lru; - struct bpf_lru_list *percpu_lru; - }; - del_from_htab_func del_from_htab; - void *del_arg; - unsigned int hash_offset; - unsigned int target_free; - unsigned int nr_scans; - bool percpu; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum { - BPF_ANY = 0, - BPF_NOEXIST = 1, - BPF_EXIST = 2, - BPF_F_LOCK = 4, -}; - -enum { - BPF_F_NO_PREALLOC = 1, - BPF_F_NO_COMMON_LRU = 2, - BPF_F_NUMA_NODE = 4, - BPF_F_RDONLY = 8, - BPF_F_WRONLY = 16, - BPF_F_STACK_BUILD_ID = 32, - BPF_F_ZERO_SEED = 64, - BPF_F_RDONLY_PROG = 128, - BPF_F_WRONLY_PROG = 256, - BPF_F_CLONE = 512, - BPF_F_MMAPABLE = 1024, - BPF_F_PRESERVE_ELEMS = 2048, - BPF_F_INNER_MAP = 4096, - BPF_F_LINK = 8192, - BPF_F_PATH_FD = 16384, - BPF_F_VTYPE_BTF_OBJ_FD = 32768, - BPF_F_TOKEN_FD = 65536, - BPF_F_SEGV_ON_FAULT = 131072, - BPF_F_NO_USER_CONV = 262144, -}; - -typedef struct qspinlock rqspinlock_t; - -struct rqspinlock_held { - int cnt; - void *locks[31]; -}; - -enum bpf_cgroup_storage_type { - BPF_CGROUP_STORAGE_SHARED = 0, - BPF_CGROUP_STORAGE_PERCPU = 1, - __BPF_CGROUP_STORAGE_MAX = 2, -}; - -enum { - BPF_MAX_TRAMP_LINKS = 38, -}; - -enum bpf_tramp_prog_type { - BPF_TRAMP_FENTRY = 0, - BPF_TRAMP_FEXIT = 1, - BPF_TRAMP_MODIFY_RETURN = 2, - BPF_TRAMP_MAX = 3, - BPF_TRAMP_REPLACE = 4, -}; - -struct bpf_queue_stack { - struct bpf_map map; - rqspinlock_t lock; - u32 head; - u32 tail; - u32 size; - char elements[0]; -}; - -enum { - BPF_LOCAL_STORAGE_GET_F_CREATE = 1, - BPF_SK_STORAGE_GET_F_CREATE = 1, -}; - -struct bpf_local_storage_data; - -struct bpf_local_storage { - struct bpf_local_storage_data *cache[16]; - struct bpf_local_storage_map *smap; - struct hlist_head list; - void *owner; - struct callback_head rcu; - raw_spinlock_t lock; -}; - -typedef struct fd class_fd_raw_t; - -struct bpf_local_storage_map_bucket; - -struct bpf_local_storage_map { - struct bpf_map map; - struct bpf_local_storage_map_bucket *buckets; - u32 bucket_log; - u16 elem_size; - u16 cache_idx; - struct bpf_mem_alloc selem_ma; - struct bpf_mem_alloc storage_ma; - bool bpf_ma; -}; - -enum { - RTAX_UNSPEC = 0, - RTAX_LOCK = 1, - RTAX_MTU = 2, - RTAX_WINDOW = 3, - RTAX_RTT = 4, - RTAX_RTTVAR = 5, - RTAX_SSTHRESH = 6, - RTAX_CWND = 7, - RTAX_ADVMSS = 8, - RTAX_REORDERING = 9, - RTAX_HOPLIMIT = 10, - RTAX_INITCWND = 11, - RTAX_FEATURES = 12, - RTAX_RTO_MIN = 13, - RTAX_INITRWND = 14, - RTAX_QUICKACK = 15, - RTAX_CC_ALGO = 16, - RTAX_FASTOPEN_NO_COOKIE = 17, - __RTAX_MAX = 18, -}; - -struct bpf_local_storage_map_bucket { - struct hlist_head list; - raw_spinlock_t lock; -}; - -struct bpf_local_storage_data { - struct bpf_local_storage_map *smap; - u8 data[0]; -}; - -struct bpf_local_storage_elem { - struct hlist_node map_node; - struct hlist_node snode; - struct bpf_local_storage *local_storage; - union { - struct callback_head rcu; - struct hlist_node free_node; - }; - long: 64; - struct bpf_local_storage_data sdata; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct bpf_local_storage_cache { - spinlock_t idx_lock; - u64 idx_usage_counts[16]; -}; - -enum { - NEIGH_VAR_MCAST_PROBES = 0, - NEIGH_VAR_UCAST_PROBES = 1, - NEIGH_VAR_APP_PROBES = 2, - NEIGH_VAR_MCAST_REPROBES = 3, - NEIGH_VAR_RETRANS_TIME = 4, - NEIGH_VAR_BASE_REACHABLE_TIME = 5, - NEIGH_VAR_DELAY_PROBE_TIME = 6, - NEIGH_VAR_INTERVAL_PROBE_TIME_MS = 7, - NEIGH_VAR_GC_STALETIME = 8, - NEIGH_VAR_QUEUE_LEN_BYTES = 9, - NEIGH_VAR_PROXY_QLEN = 10, - NEIGH_VAR_ANYCAST_DELAY = 11, - NEIGH_VAR_PROXY_DELAY = 12, - NEIGH_VAR_LOCKTIME = 13, - NEIGH_VAR_QUEUE_LEN = 14, - NEIGH_VAR_RETRANS_TIME_MS = 15, - NEIGH_VAR_BASE_REACHABLE_TIME_MS = 16, - NEIGH_VAR_GC_INTERVAL = 17, - NEIGH_VAR_GC_THRESH1 = 18, - NEIGH_VAR_GC_THRESH2 = 19, - NEIGH_VAR_GC_THRESH3 = 20, - NEIGH_VAR_MAX = 21, -}; - -enum { - TCP_ESTABLISHED = 1, - TCP_SYN_SENT = 2, - TCP_SYN_RECV = 3, - TCP_FIN_WAIT1 = 4, - TCP_FIN_WAIT2 = 5, - TCP_TIME_WAIT = 6, - TCP_CLOSE = 7, - TCP_CLOSE_WAIT = 8, - TCP_LAST_ACK = 9, - TCP_LISTEN = 10, - TCP_CLOSING = 11, - TCP_NEW_SYN_RECV = 12, - TCP_BOUND_INACTIVE = 13, - TCP_MAX_STATES = 14, -}; - -struct lsm_blob_sizes { - int lbs_cred; - int lbs_file; - int lbs_ib; - int lbs_inode; - int lbs_sock; - int lbs_superblock; - int lbs_ipc; - int lbs_key; - int lbs_msg_msg; - int lbs_perf_event; - int lbs_task; - int lbs_xattr_count; - int lbs_tun_dev; - int lbs_bdev; - bool lbs_secmark; -}; - -struct bpf_storage_blob { - struct bpf_local_storage *storage; -}; - -typedef u64 (*btf_bpf_inode_storage_get)(struct bpf_map *, struct inode *, void *, u64, gfp_t); - -typedef u64 (*btf_bpf_inode_storage_delete)(struct bpf_map *, struct inode *); - -struct bpf_res_spin_lock { - u32 val; -}; - -enum bpf_stream_id { - BPF_STDOUT = 1, - BPF_STDERR = 2, -}; - -struct bpf_stream_stage { - struct llist_head log; - int len; -}; - -struct mcs_spinlock { - struct mcs_spinlock *next; - int locked; - int count; -}; - -struct qnode { - struct mcs_spinlock mcs; - long int reserved[2]; -}; - -struct rqspinlock_timeout { - u64 timeout_end; - u64 duration; - u64 cur; - u16 spin; -}; - -typedef unsigned int zap_flags_t; - -struct zap_details { - struct folio *single_folio; - bool even_cows; - bool reclaim_pt; - zap_flags_t zap_flags; -}; - -typedef int (*pte_fn_t)(pte_t *, long unsigned int, void *); - -struct range_tree { - struct rb_root_cached it_root; - struct rb_root_cached range_size_root; -}; - -struct bpf_arena { - struct bpf_map map; - u64 user_vm_start; - u64 user_vm_end; - struct vm_struct *kern_vm; - struct range_tree rt; - struct list_head vma_list; - struct mutex lock; -}; - -struct vma_list { - struct vm_area_struct *vma; - struct list_head head; - refcount_t mmap_count; -}; - -enum { - BPF_F_INGRESS = 1, - BPF_F_BROADCAST = 8, - BPF_F_EXCLUDE_INGRESS = 16, -}; - -enum xdp_action { - XDP_ABORTED = 0, - XDP_DROP = 1, - XDP_PASS = 2, - XDP_TX = 3, - XDP_REDIRECT = 4, -}; - -struct bpf_cpumap_val { - __u32 qsize; - union { - int fd; - __u32 id; - } bpf_prog; -}; - -enum net_device_flags { - IFF_UP = 1, - IFF_BROADCAST = 2, - IFF_DEBUG = 4, - IFF_LOOPBACK = 8, - IFF_POINTOPOINT = 16, - IFF_NOTRAILERS = 32, - IFF_RUNNING = 64, - IFF_NOARP = 128, - IFF_PROMISC = 256, - IFF_ALLMULTI = 512, - IFF_MASTER = 1024, - IFF_SLAVE = 2048, - IFF_MULTICAST = 4096, - IFF_PORTSEL = 8192, - IFF_AUTOMEDIA = 16384, - IFF_DYNAMIC = 32768, - IFF_LOWER_UP = 65536, - IFF_DORMANT = 131072, - IFF_ECHO = 262144, -}; - -typedef unsigned int (*bpf_func_t)(const void *, const struct bpf_insn *); - -enum skb_drop_reason { - SKB_NOT_DROPPED_YET = 0, - SKB_CONSUMED = 1, - SKB_DROP_REASON_NOT_SPECIFIED = 2, - SKB_DROP_REASON_NO_SOCKET = 3, - SKB_DROP_REASON_SOCKET_CLOSE = 4, - SKB_DROP_REASON_SOCKET_FILTER = 5, - SKB_DROP_REASON_SOCKET_RCVBUFF = 6, - SKB_DROP_REASON_UNIX_DISCONNECT = 7, - SKB_DROP_REASON_UNIX_SKIP_OOB = 8, - SKB_DROP_REASON_PKT_TOO_SMALL = 9, - SKB_DROP_REASON_TCP_CSUM = 10, - SKB_DROP_REASON_UDP_CSUM = 11, - SKB_DROP_REASON_NETFILTER_DROP = 12, - SKB_DROP_REASON_OTHERHOST = 13, - SKB_DROP_REASON_IP_CSUM = 14, - SKB_DROP_REASON_IP_INHDR = 15, - SKB_DROP_REASON_IP_RPFILTER = 16, - SKB_DROP_REASON_UNICAST_IN_L2_MULTICAST = 17, - SKB_DROP_REASON_XFRM_POLICY = 18, - SKB_DROP_REASON_IP_NOPROTO = 19, - SKB_DROP_REASON_PROTO_MEM = 20, - SKB_DROP_REASON_TCP_AUTH_HDR = 21, - SKB_DROP_REASON_TCP_MD5NOTFOUND = 22, - SKB_DROP_REASON_TCP_MD5UNEXPECTED = 23, - SKB_DROP_REASON_TCP_MD5FAILURE = 24, - SKB_DROP_REASON_TCP_AONOTFOUND = 25, - SKB_DROP_REASON_TCP_AOUNEXPECTED = 26, - SKB_DROP_REASON_TCP_AOKEYNOTFOUND = 27, - SKB_DROP_REASON_TCP_AOFAILURE = 28, - SKB_DROP_REASON_SOCKET_BACKLOG = 29, - SKB_DROP_REASON_TCP_FLAGS = 30, - SKB_DROP_REASON_TCP_ABORT_ON_DATA = 31, - SKB_DROP_REASON_TCP_ZEROWINDOW = 32, - SKB_DROP_REASON_TCP_OLD_DATA = 33, - SKB_DROP_REASON_TCP_OVERWINDOW = 34, - SKB_DROP_REASON_TCP_OFOMERGE = 35, - SKB_DROP_REASON_TCP_RFC7323_PAWS = 36, - SKB_DROP_REASON_TCP_RFC7323_PAWS_ACK = 37, - SKB_DROP_REASON_TCP_RFC7323_TW_PAWS = 38, - SKB_DROP_REASON_TCP_RFC7323_TSECR = 39, - SKB_DROP_REASON_TCP_LISTEN_OVERFLOW = 40, - SKB_DROP_REASON_TCP_OLD_SEQUENCE = 41, - SKB_DROP_REASON_TCP_INVALID_SEQUENCE = 42, - SKB_DROP_REASON_TCP_INVALID_END_SEQUENCE = 43, - SKB_DROP_REASON_TCP_INVALID_ACK_SEQUENCE = 44, - SKB_DROP_REASON_TCP_RESET = 45, - SKB_DROP_REASON_TCP_INVALID_SYN = 46, - SKB_DROP_REASON_TCP_CLOSE = 47, - SKB_DROP_REASON_TCP_FASTOPEN = 48, - SKB_DROP_REASON_TCP_OLD_ACK = 49, - SKB_DROP_REASON_TCP_TOO_OLD_ACK = 50, - SKB_DROP_REASON_TCP_ACK_UNSENT_DATA = 51, - SKB_DROP_REASON_TCP_OFO_QUEUE_PRUNE = 52, - SKB_DROP_REASON_TCP_OFO_DROP = 53, - SKB_DROP_REASON_IP_OUTNOROUTES = 54, - SKB_DROP_REASON_BPF_CGROUP_EGRESS = 55, - SKB_DROP_REASON_IPV6DISABLED = 56, - SKB_DROP_REASON_NEIGH_CREATEFAIL = 57, - SKB_DROP_REASON_NEIGH_FAILED = 58, - SKB_DROP_REASON_NEIGH_QUEUEFULL = 59, - SKB_DROP_REASON_NEIGH_DEAD = 60, - SKB_DROP_REASON_NEIGH_HH_FILLFAIL = 61, - SKB_DROP_REASON_TC_EGRESS = 62, - SKB_DROP_REASON_SECURITY_HOOK = 63, - SKB_DROP_REASON_QDISC_DROP = 64, - SKB_DROP_REASON_QDISC_OVERLIMIT = 65, - SKB_DROP_REASON_QDISC_CONGESTED = 66, - SKB_DROP_REASON_CAKE_FLOOD = 67, - SKB_DROP_REASON_FQ_BAND_LIMIT = 68, - SKB_DROP_REASON_FQ_HORIZON_LIMIT = 69, - SKB_DROP_REASON_FQ_FLOW_LIMIT = 70, - SKB_DROP_REASON_CPU_BACKLOG = 71, - SKB_DROP_REASON_XDP = 72, - SKB_DROP_REASON_TC_INGRESS = 73, - SKB_DROP_REASON_UNHANDLED_PROTO = 74, - SKB_DROP_REASON_SKB_CSUM = 75, - SKB_DROP_REASON_SKB_GSO_SEG = 76, - SKB_DROP_REASON_SKB_UCOPY_FAULT = 77, - SKB_DROP_REASON_DEV_HDR = 78, - SKB_DROP_REASON_DEV_READY = 79, - SKB_DROP_REASON_FULL_RING = 80, - SKB_DROP_REASON_NOMEM = 81, - SKB_DROP_REASON_HDR_TRUNC = 82, - SKB_DROP_REASON_TAP_FILTER = 83, - SKB_DROP_REASON_TAP_TXFILTER = 84, - SKB_DROP_REASON_ICMP_CSUM = 85, - SKB_DROP_REASON_INVALID_PROTO = 86, - SKB_DROP_REASON_IP_INADDRERRORS = 87, - SKB_DROP_REASON_IP_INNOROUTES = 88, - SKB_DROP_REASON_IP_LOCAL_SOURCE = 89, - SKB_DROP_REASON_IP_INVALID_SOURCE = 90, - SKB_DROP_REASON_IP_LOCALNET = 91, - SKB_DROP_REASON_IP_INVALID_DEST = 92, - SKB_DROP_REASON_PKT_TOO_BIG = 93, - SKB_DROP_REASON_DUP_FRAG = 94, - SKB_DROP_REASON_FRAG_REASM_TIMEOUT = 95, - SKB_DROP_REASON_FRAG_TOO_FAR = 96, - SKB_DROP_REASON_TCP_MINTTL = 97, - SKB_DROP_REASON_IPV6_BAD_EXTHDR = 98, - SKB_DROP_REASON_IPV6_NDISC_FRAG = 99, - SKB_DROP_REASON_IPV6_NDISC_HOP_LIMIT = 100, - SKB_DROP_REASON_IPV6_NDISC_BAD_CODE = 101, - SKB_DROP_REASON_IPV6_NDISC_BAD_OPTIONS = 102, - SKB_DROP_REASON_IPV6_NDISC_NS_OTHERHOST = 103, - SKB_DROP_REASON_QUEUE_PURGE = 104, - SKB_DROP_REASON_TC_COOKIE_ERROR = 105, - SKB_DROP_REASON_PACKET_SOCK_ERROR = 106, - SKB_DROP_REASON_TC_CHAIN_NOTFOUND = 107, - SKB_DROP_REASON_TC_RECLASSIFY_LOOP = 108, - SKB_DROP_REASON_VXLAN_INVALID_HDR = 109, - SKB_DROP_REASON_VXLAN_VNI_NOT_FOUND = 110, - SKB_DROP_REASON_MAC_INVALID_SOURCE = 111, - SKB_DROP_REASON_VXLAN_ENTRY_EXISTS = 112, - SKB_DROP_REASON_NO_TX_TARGET = 113, - SKB_DROP_REASON_IP_TUNNEL_ECN = 114, - SKB_DROP_REASON_TUNNEL_TXINFO = 115, - SKB_DROP_REASON_LOCAL_MAC = 116, - SKB_DROP_REASON_ARP_PVLAN_DISABLE = 117, - SKB_DROP_REASON_MAC_IEEE_MAC_CONTROL = 118, - SKB_DROP_REASON_BRIDGE_INGRESS_STP_STATE = 119, - SKB_DROP_REASON_CAN_RX_INVALID_FRAME = 120, - SKB_DROP_REASON_CANFD_RX_INVALID_FRAME = 121, - SKB_DROP_REASON_CANXL_RX_INVALID_FRAME = 122, - SKB_DROP_REASON_PFMEMALLOC = 123, - SKB_DROP_REASON_DUALPI2_STEP_DROP = 124, - SKB_DROP_REASON_MAX = 125, - SKB_DROP_REASON_SUBSYS_MASK = 4294901760, -}; - -struct icmpv6_mib_device { - atomic_long_t mibs[7]; -}; - -struct icmpv6msg_mib_device { - atomic_long_t mibs[512]; -}; - -struct udp_hslot; - -struct udp_hslot_main; - -struct udp_table { - struct udp_hslot *hash; - struct udp_hslot_main *hash2; - struct udp_hslot *hash4; - unsigned int mask; - unsigned int log; -}; - -struct ip_ra_chain { - struct ip_ra_chain *next; - struct sock *sk; - union { - void (*destructor)(struct sock *); - struct sock *saved_sk; - }; - struct callback_head rcu; -}; - -struct fib_table { - struct hlist_node tb_hlist; - u32 tb_id; - int tb_num_default; - struct callback_head rcu; - long unsigned int *tb_data; - long unsigned int __data[0]; -}; - -struct inet_peer_base { - struct rb_root rb_root; - seqlock_t lock; - int total; -}; - -struct ipv6_stable_secret { - bool initialized; - struct in6_addr secret; -}; - -struct ipv6_devconf { - __u8 __cacheline_group_begin__ipv6_devconf_read_txrx[0]; - __s32 disable_ipv6; - __s32 hop_limit; - __s32 mtu6; - __s32 forwarding; - __s32 force_forwarding; - __s32 disable_policy; - __s32 proxy_ndp; - __u8 __cacheline_group_end__ipv6_devconf_read_txrx[0]; - __s32 accept_ra; - __s32 accept_redirects; - __s32 autoconf; - __s32 dad_transmits; - __s32 rtr_solicits; - __s32 rtr_solicit_interval; - __s32 rtr_solicit_max_interval; - __s32 rtr_solicit_delay; - __s32 force_mld_version; - __s32 mldv1_unsolicited_report_interval; - __s32 mldv2_unsolicited_report_interval; - __s32 use_tempaddr; - __s32 temp_valid_lft; - __s32 temp_prefered_lft; - __s32 regen_min_advance; - __s32 regen_max_retry; - __s32 max_desync_factor; - __s32 max_addresses; - __s32 accept_ra_defrtr; - __u32 ra_defrtr_metric; - __s32 accept_ra_min_hop_limit; - __s32 accept_ra_min_lft; - __s32 accept_ra_pinfo; - __s32 ignore_routes_with_linkdown; - __s32 accept_ra_rtr_pref; - __s32 rtr_probe_interval; - __s32 accept_ra_rt_info_min_plen; - __s32 accept_ra_rt_info_max_plen; - __s32 accept_source_route; - __s32 accept_ra_from_local; - __s32 optimistic_dad; - __s32 use_optimistic; - atomic_t mc_forwarding; - __s32 drop_unicast_in_l2_multicast; - __s32 accept_dad; - __s32 force_tllao; - __s32 ndisc_notify; - __s32 suppress_frag_ndisc; - __s32 accept_ra_mtu; - __s32 drop_unsolicited_na; - __s32 accept_untracked_na; - struct ipv6_stable_secret stable_secret; - __s32 use_oif_addrs_only; - __s32 keep_addr_on_down; - __s32 seg6_enabled; - __s32 seg6_require_hmac; - __u32 enhanced_dad; - __u32 addr_gen_mode; - __s32 ndisc_tclass; - __s32 rpl_seg_enabled; - __u32 ioam6_id; - __u32 ioam6_id_wide; - __u8 ioam6_enabled; - __u8 ndisc_evict_nocarrier; - __u8 ra_honor_pio_life; - __u8 ra_honor_pio_pflag; - struct ctl_table_header *sysctl_header; -}; - -enum gro_result { - GRO_MERGED = 0, - GRO_MERGED_FREE = 1, - GRO_HELD = 2, - GRO_NORMAL = 3, - GRO_CONSUMED = 4, -}; - -typedef enum gro_result gro_result_t; - -enum netdev_priv_flags { - IFF_802_1Q_VLAN = 1, - IFF_EBRIDGE = 2, - IFF_BONDING = 4, - IFF_ISATAP = 8, - IFF_WAN_HDLC = 16, - IFF_XMIT_DST_RELEASE = 32, - IFF_DONT_BRIDGE = 64, - IFF_DISABLE_NETPOLL = 128, - IFF_MACVLAN_PORT = 256, - IFF_BRIDGE_PORT = 512, - IFF_OVS_DATAPATH = 1024, - IFF_TX_SKB_SHARING = 2048, - IFF_UNICAST_FLT = 4096, - IFF_TEAM_PORT = 8192, - IFF_SUPP_NOFCS = 16384, - IFF_LIVE_ADDR_CHANGE = 32768, - IFF_MACVLAN = 65536, - IFF_XMIT_DST_RELEASE_PERM = 131072, - IFF_L3MDEV_MASTER = 262144, - IFF_NO_QUEUE = 524288, - IFF_OPENVSWITCH = 1048576, - IFF_L3MDEV_SLAVE = 2097152, - IFF_TEAM = 4194304, - IFF_RXFH_CONFIGURED = 8388608, - IFF_PHONY_HEADROOM = 16777216, - IFF_MACSEC = 33554432, - IFF_NO_RX_HANDLER = 67108864, - IFF_FAILOVER = 134217728, - IFF_FAILOVER_SLAVE = 268435456, - IFF_L3MDEV_RX_HANDLER = 536870912, - IFF_NO_ADDRCONF = 1073741824, - IFF_TX_SKB_NO_LINEAR = 2147483648, -}; - -struct ipv6_devstat { - struct proc_dir_entry *proc_dir_entry; - struct ipstats_mib *ipv6; - struct icmpv6_mib_device *icmpv6dev; - struct icmpv6msg_mib_device *icmpv6msgdev; -}; - -struct ifmcaddr6; - -struct ifacaddr6; - -struct inet6_dev { - struct net_device *dev; - netdevice_tracker dev_tracker; - struct list_head addr_list; - struct ifmcaddr6 *mc_list; - struct ifmcaddr6 *mc_tomb; - unsigned char mc_qrv; - unsigned char mc_gq_running; - unsigned char mc_ifc_count; - unsigned char mc_dad_count; - long unsigned int mc_v1_seen; - long unsigned int mc_qi; - long unsigned int mc_qri; - long unsigned int mc_maxdelay; - struct delayed_work mc_gq_work; - struct delayed_work mc_ifc_work; - struct delayed_work mc_dad_work; - struct delayed_work mc_query_work; - struct delayed_work mc_report_work; - struct sk_buff_head mc_query_queue; - struct sk_buff_head mc_report_queue; - spinlock_t mc_query_lock; - spinlock_t mc_report_lock; - struct mutex mc_lock; - struct ifacaddr6 *ac_list; - rwlock_t lock; - refcount_t refcnt; - __u32 if_flags; - int dead; - u32 desync_factor; - struct list_head tempaddr_list; - struct in6_addr token; - struct neigh_parms *nd_parms; - struct ipv6_devconf cnf; - struct ipv6_devstat stats; - struct timer_list rs_timer; - __s32 rs_interval; - __u8 rs_probes; - long unsigned int tstamp; - struct callback_head rcu; - unsigned int ra_mtu; -}; - -typedef unsigned int (*bpf_dispatcher_fn)(const void *, const struct bpf_insn *, unsigned int (*)(const void *, const struct bpf_insn *)); - -struct xdp_cpumap_stats { - unsigned int redirect; - unsigned int pass; - unsigned int drop; -}; - -struct lwtunnel_state { - __u16 type; - __u16 flags; - __u16 headroom; - atomic_t refcnt; - int (*orig_output)(struct net *, struct sock *, struct sk_buff *); - int (*orig_input)(struct sk_buff *); - struct callback_head rcu; - __u8 data[0]; -}; - -enum sk_rst_reason { - SK_RST_REASON_NOT_SPECIFIED = 0, - SK_RST_REASON_NO_SOCKET = 1, - SK_RST_REASON_TCP_INVALID_ACK_SEQUENCE = 2, - SK_RST_REASON_TCP_RFC7323_PAWS = 3, - SK_RST_REASON_TCP_TOO_OLD_ACK = 4, - SK_RST_REASON_TCP_ACK_UNSENT_DATA = 5, - SK_RST_REASON_TCP_FLAGS = 6, - SK_RST_REASON_TCP_OLD_ACK = 7, - SK_RST_REASON_TCP_ABORT_ON_DATA = 8, - SK_RST_REASON_TCP_TIMEWAIT_SOCKET = 9, - SK_RST_REASON_INVALID_SYN = 10, - SK_RST_REASON_TCP_ABORT_ON_CLOSE = 11, - SK_RST_REASON_TCP_ABORT_ON_LINGER = 12, - SK_RST_REASON_TCP_ABORT_ON_MEMORY = 13, - SK_RST_REASON_TCP_STATE = 14, - SK_RST_REASON_TCP_KEEPALIVE_TIMEOUT = 15, - SK_RST_REASON_TCP_DISCONNECT_WITH_DATA = 16, - SK_RST_REASON_MPTCP_RST_EUNSPEC = 17, - SK_RST_REASON_MPTCP_RST_EMPTCP = 18, - SK_RST_REASON_MPTCP_RST_ERESOURCE = 19, - SK_RST_REASON_MPTCP_RST_EPROHIBIT = 20, - SK_RST_REASON_MPTCP_RST_EWQ2BIG = 21, - SK_RST_REASON_MPTCP_RST_EBADPERF = 22, - SK_RST_REASON_MPTCP_RST_EMIDDLEBOX = 23, - SK_RST_REASON_ERROR = 24, - SK_RST_REASON_MAX = 25, -}; - -struct request_sock; - -struct request_sock_ops { - int family; - unsigned int obj_size; - struct kmem_cache *slab; - char *slab_name; - void (*send_ack)(const struct sock *, struct sk_buff *, struct request_sock *); - void (*send_reset)(const struct sock *, struct sk_buff *, enum sk_rst_reason); - void (*destructor)(struct request_sock *); - void (*syn_ack_timeout)(const struct request_sock *); -}; - -struct timewait_sock_ops { - struct kmem_cache *twsk_slab; - char *twsk_slab_name; - unsigned int twsk_obj_size; - void (*twsk_destructor)(struct sock *); -}; - -struct saved_syn; - -struct request_sock { - struct sock_common __req_common; - struct request_sock *dl_next; - u16 mss; - u8 num_retrans; - u8 syncookie: 1; - u8 num_timeout: 7; - u32 ts_recent; - struct timer_list rsk_timer; - const struct request_sock_ops *rsk_ops; - struct sock *sk; - struct saved_syn *saved_syn; - u32 secid; - u32 peer_secid; - u32 timeout; -}; - -struct saved_syn { - u32 mac_hdrlen; - u32 network_hdrlen; - u32 tcp_hdrlen; - u8 data[0]; -}; - -enum tsq_enum { - TSQ_THROTTLED = 0, - TSQ_QUEUED = 1, - TCP_TSQ_DEFERRED = 2, - TCP_WRITE_TIMER_DEFERRED = 3, - TCP_DELACK_TIMER_DEFERRED = 4, - TCP_MTU_REDUCED_DEFERRED = 5, - TCP_ACK_DEFERRED = 6, -}; - -struct ip6_sf_list { - struct ip6_sf_list *sf_next; - struct in6_addr sf_addr; - long unsigned int sf_count[2]; - unsigned char sf_gsresp; - unsigned char sf_oldin; - unsigned char sf_crcount; - struct callback_head rcu; -}; - -struct ifmcaddr6 { - struct in6_addr mca_addr; - struct inet6_dev *idev; - struct ifmcaddr6 *next; - struct ip6_sf_list *mca_sources; - struct ip6_sf_list *mca_tomb; - unsigned int mca_sfmode; - unsigned char mca_crcount; - long unsigned int mca_sfcount[2]; - struct delayed_work mca_work; - unsigned int mca_flags; - int mca_users; - refcount_t mca_refcnt; - long unsigned int mca_cstamp; - long unsigned int mca_tstamp; - struct callback_head rcu; -}; - -struct ifacaddr6 { - struct in6_addr aca_addr; - struct fib6_info *aca_rt; - struct ifacaddr6 *aca_next; - struct hlist_node aca_addr_lst; - int aca_users; - refcount_t aca_refcnt; - long unsigned int aca_cstamp; - long unsigned int aca_tstamp; - struct callback_head rcu; -}; - -enum { - __ND_OPT_PREFIX_INFO_END = 0, - ND_OPT_SOURCE_LL_ADDR = 1, - ND_OPT_TARGET_LL_ADDR = 2, - ND_OPT_PREFIX_INFO = 3, - ND_OPT_REDIRECT_HDR = 4, - ND_OPT_MTU = 5, - ND_OPT_NONCE = 14, - __ND_OPT_ARRAY_MAX = 15, - ND_OPT_ROUTE_INFO = 24, - ND_OPT_RDNSS = 25, - ND_OPT_DNSSL = 31, - ND_OPT_6CO = 34, - ND_OPT_CAPTIVE_PORTAL = 37, - ND_OPT_PREF64 = 38, - __ND_OPT_MAX = 39, -}; - -struct nd_opt_hdr { - __u8 nd_opt_type; - __u8 nd_opt_len; -}; - -struct ndisc_options { - struct nd_opt_hdr *nd_opt_array[15]; - struct nd_opt_hdr *nd_opts_ri; - struct nd_opt_hdr *nd_opts_ri_end; - struct nd_opt_hdr *nd_useropts; - struct nd_opt_hdr *nd_useropts_end; - struct nd_opt_hdr *nd_802154_opt_array[3]; -}; - -struct prefix_info { - __u8 type; - __u8 length; - __u8 prefix_len; - union { - __u8 flags; - struct { - __u8 reserved: 4; - __u8 preferpd: 1; - __u8 routeraddr: 1; - __u8 autoconf: 1; - __u8 onlink: 1; - }; - }; - __be32 valid; - __be32 prefered; - __be32 reserved2; - struct in6_addr prefix; -}; - -struct udp_hslot { - union { - struct hlist_head head; - struct hlist_nulls_head nulls_head; - }; - int count; - spinlock_t lock; -}; - -struct udp_hslot_main { - struct udp_hslot hslot; - u32 hash4_cnt; - long: 64; -}; - -struct bpf_cpu_map_entry; - -struct xdp_bulk_queue { - void *q[8]; - struct list_head flush_node; - struct bpf_cpu_map_entry *obj; - unsigned int count; -}; - -struct bpf_cpu_map_entry { - u32 cpu; - int map_id; - struct xdp_bulk_queue *bulkq; - struct ptr_ring *queue; - struct task_struct *kthread; - struct bpf_cpumap_val value; - struct bpf_prog *prog; - struct gro_node gro; - struct completion kthread_running; - struct rcu_work free_work; -}; - -struct bpf_cpu_map { - struct bpf_map map; - struct bpf_cpu_map_entry **cpu_map; -}; - -struct cpu_map_ret { - u32 xdp_n; - u32 skb_n; -}; - -enum bpf_iter_feature { - BPF_ITER_RESCHED = 1, -}; - -struct bpf_iter__cgroup { - union { - struct bpf_iter_meta *meta; - }; - union { - struct cgroup *cgroup; - }; -}; - -struct cgroup_iter_priv { - struct cgroup_subsys_state *start_css; - bool visited_all; - bool terminate; - int order; -}; - -struct bpf_iter_css { - __u64 __opaque[3]; -}; - -struct bpf_iter_css_kern { - struct cgroup_subsys_state *start; - struct cgroup_subsys_state *pos; - unsigned int flags; -}; - -enum sock_type { - SOCK_STREAM = 1, - SOCK_DGRAM = 2, - SOCK_RAW = 3, - SOCK_RDM = 4, - SOCK_SEQPACKET = 5, - SOCK_DCCP = 6, - SOCK_PACKET = 10, -}; - -enum { - IPPROTO_IP = 0, - IPPROTO_ICMP = 1, - IPPROTO_IGMP = 2, - IPPROTO_IPIP = 4, - IPPROTO_TCP = 6, - IPPROTO_EGP = 8, - IPPROTO_PUP = 12, - IPPROTO_UDP = 17, - IPPROTO_IDP = 22, - IPPROTO_TP = 29, - IPPROTO_DCCP = 33, - IPPROTO_IPV6 = 41, - IPPROTO_RSVP = 46, - IPPROTO_GRE = 47, - IPPROTO_ESP = 50, - IPPROTO_AH = 51, - IPPROTO_MTP = 92, - IPPROTO_BEETPH = 94, - IPPROTO_ENCAP = 98, - IPPROTO_PIM = 103, - IPPROTO_COMP = 108, - IPPROTO_L2TP = 115, - IPPROTO_SCTP = 132, - IPPROTO_UDPLITE = 136, - IPPROTO_MPLS = 137, - IPPROTO_ETHERNET = 143, - IPPROTO_AGGFRAG = 144, - IPPROTO_RAW = 255, - IPPROTO_SMC = 256, - IPPROTO_MPTCP = 262, - IPPROTO_MAX = 263, -}; - -struct sock_reuseport { - struct callback_head rcu; - u16 max_socks; - u16 num_socks; - u16 num_closed_socks; - u16 incoming_cpu; - unsigned int synq_overflow_ts; - unsigned int reuseport_id; - unsigned int bind_inany: 1; - unsigned int has_conns: 1; - struct bpf_prog *prog; - struct sock *socks[0]; -}; - -enum sock_flags { - SOCK_DEAD = 0, - SOCK_DONE = 1, - SOCK_URGINLINE = 2, - SOCK_KEEPOPEN = 3, - SOCK_LINGER = 4, - SOCK_DESTROY = 5, - SOCK_BROADCAST = 6, - SOCK_TIMESTAMP = 7, - SOCK_ZAPPED = 8, - SOCK_USE_WRITE_QUEUE = 9, - SOCK_DBG = 10, - SOCK_RCVTSTAMP = 11, - SOCK_RCVTSTAMPNS = 12, - SOCK_LOCALROUTE = 13, - SOCK_MEMALLOC = 14, - SOCK_TIMESTAMPING_RX_SOFTWARE = 15, - SOCK_FASYNC = 16, - SOCK_RXQ_OVFL = 17, - SOCK_ZEROCOPY = 18, - SOCK_WIFI_STATUS = 19, - SOCK_NOFCS = 20, - SOCK_FILTER_LOCKED = 21, - SOCK_SELECT_ERR_QUEUE = 22, - SOCK_RCU_FREE = 23, - SOCK_TXTIME = 24, - SOCK_XDP = 25, - SOCK_TSTAMP_NEW = 26, - SOCK_RCVMARK = 27, - SOCK_RCVPRIORITY = 28, - SOCK_TIMESTAMPING_ANY = 29, -}; - -struct reuseport_array { - struct bpf_map map; - struct sock *ptrs[0]; -}; - -typedef int __kernel_key_t; - -typedef __kernel_key_t key_t; - -enum { - BPF_F_BPRM_SECUREEXEC = 1, -}; - -struct timezone { - int tz_minuteswest; - int tz_dsttime; -}; - -struct kern_ipc_perm { - spinlock_t lock; - bool deleted; - int id; - key_t key; - kuid_t uid; - kgid_t gid; - kuid_t cuid; - kgid_t cgid; - umode_t mode; - long unsigned int seq; - void *security; - struct rhash_head khtnode; - struct callback_head rcu; - refcount_t refcount; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct sembuf { - short unsigned int sem_num; - short int sem_op; - short int sem_flg; -}; - -struct btf_id_set { - u32 cnt; - u32 ids[0]; -}; - -enum { - BTF_SOCK_TYPE_INET = 0, - BTF_SOCK_TYPE_INET_CONN = 1, - BTF_SOCK_TYPE_INET_REQ = 2, - BTF_SOCK_TYPE_INET_TW = 3, - BTF_SOCK_TYPE_REQ = 4, - BTF_SOCK_TYPE_SOCK = 5, - BTF_SOCK_TYPE_SOCK_COMMON = 6, - BTF_SOCK_TYPE_TCP = 7, - BTF_SOCK_TYPE_TCP_REQ = 8, - BTF_SOCK_TYPE_TCP_TW = 9, - BTF_SOCK_TYPE_TCP6 = 10, - BTF_SOCK_TYPE_UDP = 11, - BTF_SOCK_TYPE_UDP6 = 12, - BTF_SOCK_TYPE_UNIX = 13, - BTF_SOCK_TYPE_MPTCP = 14, - BTF_SOCK_TYPE_SOCKET = 15, - MAX_BTF_SOCK_TYPE = 16, -}; - -struct bpf_trace_run_ctx { - struct bpf_run_ctx run_ctx; - u64 bpf_cookie; - bool is_uprobe; -}; - -struct xfrm_sec_ctx { - __u8 ctx_doi; - __u8 ctx_alg; - __u16 ctx_len; - __u32 ctx_sid; - char ctx_str[0]; -}; - -struct xfrm_user_sec_ctx { - __u16 len; - __u16 exttype; - __u8 ctx_alg; - __u8 ctx_doi; - __u16 ctx_len; -}; - -struct lsm_ctx { - __u64 id; - __u64 flags; - __u64 len; - __u64 ctx_len; - __u8 ctx[0]; -}; - -enum lsm_integrity_type { - LSM_INT_DMVERITY_SIG_VALID = 0, - LSM_INT_DMVERITY_ROOTHASH = 1, - LSM_INT_FSVERITY_BUILTINSIG_VALID = 2, -}; - -struct lsm_context { - char *context; - u32 len; - int id; -}; - -struct xattr { - const char *name; - void *value; - size_t value_len; -}; - -enum kernel_load_data_id { - LOADING_UNKNOWN = 0, - LOADING_FIRMWARE = 1, - LOADING_MODULE = 2, - LOADING_KEXEC_IMAGE = 3, - LOADING_KEXEC_INITRAMFS = 4, - LOADING_POLICY = 5, - LOADING_X509_CERTIFICATE = 6, - LOADING_MAX_ID = 7, -}; - -enum hash_algo { - HASH_ALGO_MD4 = 0, - HASH_ALGO_MD5 = 1, - HASH_ALGO_SHA1 = 2, - HASH_ALGO_RIPE_MD_160 = 3, - HASH_ALGO_SHA256 = 4, - HASH_ALGO_SHA384 = 5, - HASH_ALGO_SHA512 = 6, - HASH_ALGO_SHA224 = 7, - HASH_ALGO_RIPE_MD_128 = 8, - HASH_ALGO_RIPE_MD_256 = 9, - HASH_ALGO_RIPE_MD_320 = 10, - HASH_ALGO_WP_256 = 11, - HASH_ALGO_WP_384 = 12, - HASH_ALGO_WP_512 = 13, - HASH_ALGO_TGR_128 = 14, - HASH_ALGO_TGR_160 = 15, - HASH_ALGO_TGR_192 = 16, - HASH_ALGO_SM3_256 = 17, - HASH_ALGO_STREEBOG_256 = 18, - HASH_ALGO_STREEBOG_512 = 19, - HASH_ALGO_SHA3_256 = 20, - HASH_ALGO_SHA3_384 = 21, - HASH_ALGO_SHA3_512 = 22, - HASH_ALGO__LAST = 23, -}; - -typedef u64 (*btf_bpf_bprm_opts_set)(struct linux_binprm *, u64); - -typedef u64 (*btf_bpf_ima_inode_hash)(struct inode *, void *, u32); - -typedef u64 (*btf_bpf_ima_file_hash)(struct file *, void *, u32); - -typedef u64 (*btf_bpf_get_attach_cookie)(void *); - -struct static_call_tramp_key { - s32 tramp; - s32 key; -}; - -struct perf_event_header { - __u32 type; - __u16 misc; - __u16 size; -}; - -enum perf_event_type { - PERF_RECORD_MMAP = 1, - PERF_RECORD_LOST = 2, - PERF_RECORD_COMM = 3, - PERF_RECORD_EXIT = 4, - PERF_RECORD_THROTTLE = 5, - PERF_RECORD_UNTHROTTLE = 6, - PERF_RECORD_FORK = 7, - PERF_RECORD_READ = 8, - PERF_RECORD_SAMPLE = 9, - PERF_RECORD_MMAP2 = 10, - PERF_RECORD_AUX = 11, - PERF_RECORD_ITRACE_START = 12, - PERF_RECORD_LOST_SAMPLES = 13, - PERF_RECORD_SWITCH = 14, - PERF_RECORD_SWITCH_CPU_WIDE = 15, - PERF_RECORD_NAMESPACES = 16, - PERF_RECORD_KSYMBOL = 17, - PERF_RECORD_BPF_EVENT = 18, - PERF_RECORD_CGROUP = 19, - PERF_RECORD_TEXT_POKE = 20, - PERF_RECORD_AUX_OUTPUT_HW_ID = 21, - PERF_RECORD_MAX = 22, -}; - -struct perf_buffer { - refcount_t refcount; - struct callback_head callback_head; - int nr_pages; - int overwrite; - int paused; - atomic_t poll; - local_t head; - unsigned int nest; - local_t events; - local_t wakeup; - local_t lost; - long int watermark; - long int aux_watermark; - spinlock_t event_lock; - struct list_head event_list; - atomic_t mmap_count; - long unsigned int mmap_locked; - struct user_struct *mmap_user; - struct mutex aux_mutex; - long int aux_head; - unsigned int aux_nest; - long int aux_wakeup; - long unsigned int aux_pgoff; - int aux_nr_pages; - int aux_overwrite; - atomic_t aux_mmap_count; - long unsigned int aux_mmap_locked; - void (*free_aux)(void *); - refcount_t aux_refcount; - int aux_in_sampling; - int aux_in_pause_resume; - void **aux_pages; - void *aux_priv; - struct perf_event_mmap_page *user_page; - void *data_pages[0]; -}; - -enum wq_affn_scope { - WQ_AFFN_DFL = 0, - WQ_AFFN_CPU = 1, - WQ_AFFN_SMT = 2, - WQ_AFFN_CACHE = 3, - WQ_AFFN_NUMA = 4, - WQ_AFFN_SYSTEM = 5, - WQ_AFFN_NR_TYPES = 6, -}; - -struct workqueue_attrs { - int nice; - cpumask_var_t cpumask; - cpumask_var_t __pod_cpumask; - bool affn_strict; - enum wq_affn_scope affn_scope; - bool ordered; -}; - -struct parallel_data; - -struct padata_priv { - struct list_head list; - struct parallel_data *pd; - int cb_cpu; - unsigned int seq_nr; - int info; - void (*parallel)(struct padata_priv *); - void (*serial)(struct padata_priv *); -}; - -struct padata_cpumask { - cpumask_var_t pcpu; - cpumask_var_t cbcpu; -}; - -struct padata_shell; - -struct padata_list; - -struct padata_serial_queue; - -struct parallel_data { - struct padata_shell *ps; - struct padata_list *reorder_list; - struct padata_serial_queue *squeue; - refcount_t refcnt; - unsigned int seq_nr; - unsigned int processed; - int cpu; - struct padata_cpumask cpumask; -}; - -struct padata_list { - struct list_head list; - spinlock_t lock; -}; - -struct padata_serial_queue { - struct padata_list serial; - struct work_struct work; - struct parallel_data *pd; -}; - -struct padata_instance; - -struct padata_shell { - struct padata_instance *pinst; - struct parallel_data *pd; - struct parallel_data *opd; - struct list_head list; -}; - -struct padata_instance { - struct hlist_node cpu_online_node; - struct hlist_node cpu_dead_node; - struct workqueue_struct *parallel_wq; - struct workqueue_struct *serial_wq; - struct list_head pslist; - struct padata_cpumask cpumask; - struct kobject kobj; - struct mutex lock; - u8 flags; -}; - -struct padata_mt_job { - void (*thread_fn)(long unsigned int, long unsigned int, void *); - void *fn_arg; - long unsigned int start; - long unsigned int size; - long unsigned int align; - long unsigned int min_chunk; - int max_threads; - bool numa_aware; -}; - -struct padata_work { - struct work_struct pw_work; - struct list_head pw_list; - void *pw_data; -}; - -struct padata_mt_job_state { - spinlock_t lock; - struct completion completion; - struct padata_mt_job *job; - int nworks; - int nworks_fini; - long unsigned int chunk_size; -}; - -struct padata_sysfs_entry { - struct attribute attr; - ssize_t (*show)(struct padata_instance *, struct attribute *, char *); - ssize_t (*store)(struct padata_instance *, struct attribute *, const char *, size_t); -}; - -struct watch; - -struct watch_list { - struct callback_head rcu; - struct hlist_head watchers; - void (*release_watch)(struct watch *); - spinlock_t lock; -}; - -enum watch_notification_type { - WATCH_TYPE_META = 0, - WATCH_TYPE_KEY_NOTIFY = 1, - WATCH_TYPE__NR = 2, -}; - -enum watch_meta_notification_subtype { - WATCH_META_REMOVAL_NOTIFICATION = 0, - WATCH_META_LOSS_NOTIFICATION = 1, -}; - -struct watch_notification { - __u32 type: 24; - __u32 subtype: 8; - __u32 info; -}; - -struct watch_notification_type_filter { - __u32 type; - __u32 info_filter; - __u32 info_mask; - __u32 subtype_filter[8]; -}; - -struct watch_notification_filter { - __u32 nr_filters; - __u32 __reserved; - struct watch_notification_type_filter filters[0]; -}; - -struct watch_notification_removal { - struct watch_notification watch; - __u64 id; -}; - -struct watch_type_filter { - enum watch_notification_type type; - __u32 subtype_filter[1]; - __u32 info_filter; - __u32 info_mask; -}; - -struct watch_filter { - union { - struct callback_head rcu; - long unsigned int type_filter[1]; - }; - u32 nr_filters; - struct watch_type_filter filters[0]; -}; - -struct watch_queue { - struct callback_head rcu; - struct watch_filter *filter; - struct pipe_inode_info *pipe; - struct hlist_head watches; - struct page **notes; - long unsigned int *notes_bitmap; - struct kref usage; - spinlock_t lock; - unsigned int nr_notes; - unsigned int nr_pages; -}; - -struct watch { - union { - struct callback_head rcu; - u32 info_id; - }; - struct watch_queue *queue; - struct hlist_node queue_node; - struct watch_list *watch_list; - struct hlist_node list_node; - const struct cred *cred; - void *private; - u64 id; - struct kref usage; -}; - -typedef struct pglist_data pg_data_t; - -struct xa_node { - unsigned char shift; - unsigned char offset; - unsigned char count; - unsigned char nr_values; - struct xa_node *parent; - struct xarray *array; - union { - struct list_head private_list; - struct callback_head callback_head; - }; - void *slots[64]; - union { - long unsigned int tags[3]; - long unsigned int marks[3]; - }; -}; - -typedef void (*xa_update_node_t)(struct xa_node *); - -struct xa_state { - struct xarray *xa; - long unsigned int xa_index; - unsigned char xa_shift; - unsigned char xa_sibs; - unsigned char xa_offset; - unsigned char xa_pad; - struct xa_node *xa_node; - struct xa_node *xa_alloc; - xa_update_node_t xa_update; - struct list_lru *xa_lru; -}; - -enum { - XA_CHECK_SCHED = 4096, -}; - -enum positive_aop_returns { - AOP_WRITEPAGE_ACTIVATE = 524288, - AOP_TRUNCATED_PAGE = 524289, -}; - -enum wb_state { - WB_registered = 0, - WB_writeback_running = 1, - WB_has_dirty_io = 2, - WB_start_all = 3, -}; - -struct wb_lock_cookie { - bool locked; - long unsigned int flags; -}; - -struct dirty_throttle_control { - struct wb_domain *dom; - struct dirty_throttle_control *gdtc; - struct bdi_writeback *wb; - struct fprop_local_percpu *wb_completions; - long unsigned int avail; - long unsigned int dirty; - long unsigned int thresh; - long unsigned int bg_thresh; - long unsigned int limit; - long unsigned int wb_dirty; - long unsigned int wb_thresh; - long unsigned int wb_bg_thresh; - long unsigned int pos_ratio; - bool freerun; - bool dirty_exceeded; -}; - -typedef int (*writepage_t)(struct folio *, struct writeback_control *, void *); - -enum objext_flags { - OBJEXTS_ALLOC_FAIL = 4, - __NR_OBJEXTS_FLAGS = 8, -}; - -enum mapping_flags { - AS_EIO = 0, - AS_ENOSPC = 1, - AS_MM_ALL_LOCKS = 2, - AS_UNEVICTABLE = 3, - AS_EXITING = 4, - AS_NO_WRITEBACK_TAGS = 5, - AS_RELEASE_ALWAYS = 6, - AS_STABLE_WRITES = 7, - AS_INACCESSIBLE = 8, - AS_WRITEBACK_MAY_DEADLOCK_ON_RECLAIM = 9, - AS_NO_DATA_INTEGRITY = 11, - AS_FOLIO_ORDER_BITS = 5, - AS_FOLIO_ORDER_MIN = 16, - AS_FOLIO_ORDER_MAX = 21, -}; - -enum lruvec_flags { - LRUVEC_CGROUP_CONGESTED = 0, - LRUVEC_NODE_CONGESTED = 1, -}; - -enum { - LRU_GEN_ANON = 0, - LRU_GEN_FILE = 1, -}; - -enum { - LRU_GEN_CORE = 0, - LRU_GEN_MM_WALK = 1, - LRU_GEN_NONLEAF_YOUNG = 2, - NR_LRU_GEN_CAPS = 3, -}; - -enum pgdat_flags { - PGDAT_DIRTY = 0, - PGDAT_WRITEBACK = 1, - PGDAT_RECLAIM_LOCKED = 2, -}; - -enum zone_flags { - ZONE_BOOSTED_WATERMARK = 0, - ZONE_RECLAIM_ACTIVE = 1, - ZONE_BELOW_HIGH = 2, -}; - -enum migrate_reason { - MR_COMPACTION = 0, - MR_MEMORY_FAILURE = 1, - MR_MEMORY_HOTPLUG = 2, - MR_SYSCALL = 3, - MR_MEMPOLICY_MBIND = 4, - MR_NUMA_MISPLACED = 5, - MR_CONTIG_RANGE = 6, - MR_LONGTERM_PIN = 7, - MR_DEMOTION = 8, - MR_DAMON = 9, - MR_TYPES = 10, -}; - -struct mthp_stat { - long unsigned int stats[170]; -}; - -struct reclaim_stat { - unsigned int nr_dirty; - unsigned int nr_unqueued_dirty; - unsigned int nr_congested; - unsigned int nr_writeback; - unsigned int nr_immediate; - unsigned int nr_pageout; - unsigned int nr_activate[2]; - unsigned int nr_ref_keep; - unsigned int nr_unmap_fail; - unsigned int nr_lazyfree_fail; - unsigned int nr_demoted; -}; - -struct vm_event_state { - long unsigned int event[121]; -}; - -struct mem_cgroup_reclaim_cookie { - pg_data_t *pgdat; - int generation; -}; - -struct node { - struct device dev; - struct list_head access_list; - struct list_head cache_attrs; - struct device *cache_dev; -}; - -enum { - SWP_USED = 1, - SWP_WRITEOK = 2, - SWP_DISCARDABLE = 4, - SWP_DISCARDING = 8, - SWP_SOLIDSTATE = 16, - SWP_CONTINUED = 32, - SWP_BLKDEV = 64, - SWP_ACTIVATED = 128, - SWP_FS_OPS = 256, - SWP_AREA_DISCARD = 512, - SWP_PAGE_DISCARD = 1024, - SWP_STABLE_WRITES = 2048, - SWP_SYNCHRONOUS_IO = 4096, -}; - -enum ttu_flags { - TTU_SPLIT_HUGE_PMD = 4, - TTU_IGNORE_MLOCK = 8, - TTU_SYNC = 16, - TTU_HWPOISON = 32, - TTU_BATCH_FLUSH = 64, - TTU_RMAP_LOCKED = 128, -}; - -struct page_vma_mapped_walk { - long unsigned int pfn; - long unsigned int nr_pages; - long unsigned int pgoff; - struct vm_area_struct *vma; - long unsigned int address; - pmd_t *pmd; - pte_t *pte; - spinlock_t *ptl; - unsigned int flags; -}; - -enum compact_priority { - COMPACT_PRIO_SYNC_FULL = 0, - MIN_COMPACT_PRIORITY = 0, - COMPACT_PRIO_SYNC_LIGHT = 1, - MIN_COMPACT_COSTLY_PRIORITY = 1, - DEF_COMPACT_PRIORITY = 1, - COMPACT_PRIO_ASYNC = 2, - INIT_COMPACT_PRIORITY = 2, -}; - -enum compact_result { - COMPACT_NOT_SUITABLE_ZONE = 0, - COMPACT_SKIPPED = 1, - COMPACT_DEFERRED = 2, - COMPACT_NO_SUITABLE_PAGE = 3, - COMPACT_CONTINUE = 4, - COMPACT_COMPLETE = 5, - COMPACT_PARTIAL_SKIPPED = 6, - COMPACT_CONTENDED = 7, - COMPACT_SUCCESS = 8, -}; - -typedef struct folio *new_folio_t(struct folio *, long unsigned int); - -typedef void free_folio_t(struct folio *, long unsigned int); - -enum oom_constraint { - CONSTRAINT_NONE = 0, - CONSTRAINT_CPUSET = 1, - CONSTRAINT_MEMORY_POLICY = 2, - CONSTRAINT_MEMCG = 3, -}; - -struct oom_control { - struct zonelist *zonelist; - nodemask_t *nodemask; - struct mem_cgroup *memcg; - const gfp_t gfp_mask; - const int order; - long unsigned int totalpages; - struct task_struct *chosen; - long int chosen_points; - enum oom_constraint constraint; -}; - -enum page_walk_lock { - PGWALK_RDLOCK = 0, - PGWALK_WRLOCK = 1, - PGWALK_WRLOCK_VERIFY = 2, - PGWALK_VMA_RDLOCK_VERIFY = 3, -}; - -struct mm_walk; - -struct mm_walk_ops { - int (*pgd_entry)(pgd_t *, long unsigned int, long unsigned int, struct mm_walk *); - int (*p4d_entry)(p4d_t *, long unsigned int, long unsigned int, struct mm_walk *); - int (*pud_entry)(pud_t *, long unsigned int, long unsigned int, struct mm_walk *); - int (*pmd_entry)(pmd_t *, long unsigned int, long unsigned int, struct mm_walk *); - int (*pte_entry)(pte_t *, long unsigned int, long unsigned int, struct mm_walk *); - int (*pte_hole)(long unsigned int, long unsigned int, int, struct mm_walk *); - int (*hugetlb_entry)(pte_t *, long unsigned int, long unsigned int, long unsigned int, struct mm_walk *); - int (*test_walk)(long unsigned int, long unsigned int, struct mm_walk *); - int (*pre_vma)(long unsigned int, long unsigned int, struct mm_walk *); - void (*post_vma)(struct mm_walk *); - int (*install_pte)(long unsigned int, long unsigned int, pte_t *, struct mm_walk *); - enum page_walk_lock walk_lock; -}; - -enum page_walk_action { - ACTION_SUBTREE = 0, - ACTION_CONTINUE = 1, - ACTION_AGAIN = 2, -}; - -struct mm_walk { - const struct mm_walk_ops *ops; - struct mm_struct *mm; - pgd_t *pgd; - struct vm_area_struct *vma; - enum page_walk_action action; - bool no_vma; - void *private; -}; - -struct match_token { - int token; - const char *pattern; -}; - -enum { - MAX_OPT_ARGS = 3, -}; - -typedef struct { - char *from; - char *to; -} substring_t; - -struct migration_target_control { - int nid; - nodemask_t *nmask; - gfp_t gfp_mask; - enum migrate_reason reason; -}; - -struct trace_event_raw_mm_vmscan_kswapd_sleep { - struct trace_entry ent; - int nid; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_kswapd_wake { - struct trace_entry ent; - int nid; - int zid; - int order; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_wakeup_kswapd { - struct trace_entry ent; - int nid; - int zid; - int order; - long unsigned int gfp_flags; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_direct_reclaim_begin_template { - struct trace_entry ent; - int order; - long unsigned int gfp_flags; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_direct_reclaim_end_template { - struct trace_entry ent; - long unsigned int nr_reclaimed; - char __data[0]; -}; - -struct trace_event_raw_mm_shrink_slab_start { - struct trace_entry ent; - struct shrinker *shr; - void *shrink; - int nid; - long int nr_objects_to_shrink; - long unsigned int gfp_flags; - long unsigned int cache_items; - long long unsigned int delta; - long unsigned int total_scan; - int priority; - char __data[0]; -}; - -struct trace_event_raw_mm_shrink_slab_end { - struct trace_entry ent; - struct shrinker *shr; - int nid; - void *shrink; - long int unused_scan; - long int new_scan; - int retval; - long int total_scan; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_lru_isolate { - struct trace_entry ent; - int highest_zoneidx; - int order; - long unsigned int nr_requested; - long unsigned int nr_scanned; - long unsigned int nr_skipped; - long unsigned int nr_taken; - int lru; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_write_folio { - struct trace_entry ent; - long unsigned int pfn; - int reclaim_flags; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_reclaim_pages { - struct trace_entry ent; - int nid; - long unsigned int nr_scanned; - long unsigned int nr_reclaimed; - long unsigned int nr_dirty; - long unsigned int nr_writeback; - long unsigned int nr_congested; - long unsigned int nr_immediate; - unsigned int nr_activate0; - unsigned int nr_activate1; - long unsigned int nr_ref_keep; - long unsigned int nr_unmap_fail; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_lru_shrink_inactive { - struct trace_entry ent; - int nid; - long unsigned int nr_scanned; - long unsigned int nr_reclaimed; - long unsigned int nr_dirty; - long unsigned int nr_writeback; - long unsigned int nr_congested; - long unsigned int nr_immediate; - unsigned int nr_activate0; - unsigned int nr_activate1; - long unsigned int nr_ref_keep; - long unsigned int nr_unmap_fail; - int priority; - int reclaim_flags; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_lru_shrink_active { - struct trace_entry ent; - int nid; - long unsigned int nr_taken; - long unsigned int nr_active; - long unsigned int nr_deactivated; - long unsigned int nr_referenced; - int priority; - int reclaim_flags; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_node_reclaim_begin { - struct trace_entry ent; - int nid; - int order; - long unsigned int gfp_flags; - char __data[0]; -}; - -struct trace_event_raw_mm_vmscan_throttled { - struct trace_entry ent; - int nid; - int usec_timeout; - int usec_delayed; - int reason; - char __data[0]; -}; - -struct trace_event_data_offsets_mm_vmscan_kswapd_sleep {}; - -struct trace_event_data_offsets_mm_vmscan_kswapd_wake {}; - -struct trace_event_data_offsets_mm_vmscan_wakeup_kswapd {}; - -struct trace_event_data_offsets_mm_vmscan_direct_reclaim_begin_template {}; - -struct trace_event_data_offsets_mm_vmscan_direct_reclaim_end_template {}; - -struct trace_event_data_offsets_mm_shrink_slab_start {}; - -struct trace_event_data_offsets_mm_shrink_slab_end {}; - -struct trace_event_data_offsets_mm_vmscan_lru_isolate {}; - -struct trace_event_data_offsets_mm_vmscan_write_folio {}; - -struct trace_event_data_offsets_mm_vmscan_reclaim_pages {}; - -struct trace_event_data_offsets_mm_vmscan_lru_shrink_inactive {}; - -struct trace_event_data_offsets_mm_vmscan_lru_shrink_active {}; - -struct trace_event_data_offsets_mm_vmscan_node_reclaim_begin {}; - -struct trace_event_data_offsets_mm_vmscan_throttled {}; - -typedef void (*btf_trace_mm_vmscan_kswapd_sleep)(void *, int); - -typedef void (*btf_trace_mm_vmscan_kswapd_wake)(void *, int, int, int); - -typedef void (*btf_trace_mm_vmscan_wakeup_kswapd)(void *, int, int, int, gfp_t); - -typedef void (*btf_trace_mm_vmscan_direct_reclaim_begin)(void *, int, gfp_t); - -typedef void (*btf_trace_mm_vmscan_memcg_reclaim_begin)(void *, int, gfp_t); - -typedef void (*btf_trace_mm_vmscan_memcg_softlimit_reclaim_begin)(void *, int, gfp_t); - -typedef void (*btf_trace_mm_vmscan_direct_reclaim_end)(void *, long unsigned int); - -typedef void (*btf_trace_mm_vmscan_memcg_reclaim_end)(void *, long unsigned int); - -typedef void (*btf_trace_mm_vmscan_memcg_softlimit_reclaim_end)(void *, long unsigned int); - -typedef void (*btf_trace_mm_shrink_slab_start)(void *, struct shrinker *, struct shrink_control *, long int, long unsigned int, long long unsigned int, long unsigned int, int); - -typedef void (*btf_trace_mm_shrink_slab_end)(void *, struct shrinker *, int, int, long int, long int, long int); - -typedef void (*btf_trace_mm_vmscan_lru_isolate)(void *, int, int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int); - -typedef void (*btf_trace_mm_vmscan_write_folio)(void *, struct folio *); - -typedef void (*btf_trace_mm_vmscan_reclaim_pages)(void *, int, long unsigned int, long unsigned int, struct reclaim_stat *); - -typedef void (*btf_trace_mm_vmscan_lru_shrink_inactive)(void *, int, long unsigned int, long unsigned int, struct reclaim_stat *, int, int); - -typedef void (*btf_trace_mm_vmscan_lru_shrink_active)(void *, int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int, int); - -typedef void (*btf_trace_mm_vmscan_node_reclaim_begin)(void *, int, int, gfp_t); - -typedef void (*btf_trace_mm_vmscan_node_reclaim_end)(void *, long unsigned int); - -typedef void (*btf_trace_mm_vmscan_throttled)(void *, int, int, int, int); - -struct scan_control { - long unsigned int nr_to_reclaim; - nodemask_t *nodemask; - struct mem_cgroup *target_mem_cgroup; - long unsigned int anon_cost; - long unsigned int file_cost; - int *proactive_swappiness; - unsigned int may_deactivate: 2; - unsigned int force_deactivate: 1; - unsigned int skipped_deactivate: 1; - unsigned int may_writepage: 1; - unsigned int may_unmap: 1; - unsigned int may_swap: 1; - unsigned int no_cache_trim_mode: 1; - unsigned int cache_trim_mode_failed: 1; - unsigned int proactive: 1; - unsigned int memcg_low_reclaim: 1; - unsigned int memcg_low_skipped: 1; - unsigned int memcg_full_walk: 1; - unsigned int hibernation_mode: 1; - unsigned int compaction_ready: 1; - unsigned int cache_trim_mode: 1; - unsigned int file_is_tiny: 1; - unsigned int no_demotion: 1; - s8 order; - s8 priority; - s8 reclaim_idx; - gfp_t gfp_mask; - long unsigned int nr_scanned; - long unsigned int nr_reclaimed; - struct { - unsigned int dirty; - unsigned int unqueued_dirty; - unsigned int congested; - unsigned int writeback; - unsigned int immediate; - unsigned int file_taken; - unsigned int taken; - } nr; - struct reclaim_state reclaim_state; -}; - -typedef enum { - PAGE_KEEP = 0, - PAGE_ACTIVATE = 1, - PAGE_SUCCESS = 2, - PAGE_CLEAN = 3, -} pageout_t; - -enum folio_references { - FOLIOREF_RECLAIM = 0, - FOLIOREF_RECLAIM_CLEAN = 1, - FOLIOREF_KEEP = 2, - FOLIOREF_ACTIVATE = 3, -}; - -enum scan_balance { - SCAN_EQUAL = 0, - SCAN_FRACT = 1, - SCAN_ANON = 2, - SCAN_FILE = 3, -}; - -struct ctrl_pos { - long unsigned int refaulted; - long unsigned int total; - int gain; -}; - -enum { - MEMCG_LRU_NOP = 0, - MEMCG_LRU_HEAD = 1, - MEMCG_LRU_TAIL = 2, - MEMCG_LRU_OLD = 3, - MEMCG_LRU_YOUNG = 4, -}; - -enum { - MEMORY_RECLAIM_SWAPPINESS = 0, - MEMORY_RECLAIM_SWAPPINESS_MAX = 1, - MEMORY_RECLAIM_NULL = 2, -}; - -typedef __int128 unsigned __u128; - -typedef __u128 u128; - -struct reciprocal_value { - u32 m; - u8 sh1; - u8 sh2; -}; - -struct kmem_cache_order_objects { - unsigned int x; -}; - -struct kmem_cache_cpu; - -struct kmem_cache_node; - -struct kmem_cache { - struct kmem_cache_cpu *cpu_slab; - slab_flags_t flags; - long unsigned int min_partial; - unsigned int size; - unsigned int object_size; - struct reciprocal_value reciprocal_size; - unsigned int offset; - unsigned int cpu_partial; - unsigned int cpu_partial_slabs; - struct kmem_cache_order_objects oo; - struct kmem_cache_order_objects min; - gfp_t allocflags; - int refcount; - void (*ctor)(void *); - unsigned int inuse; - unsigned int align; - unsigned int red_left_pad; - const char *name; - struct list_head list; - struct kobject kobj; - long unsigned int random; - unsigned int remote_node_defrag_ratio; - unsigned int *random_seq; - unsigned int useroffset; - unsigned int usersize; - struct kmem_cache_node *node[1024]; -}; - -typedef u128 freelist_full_t; - -typedef union { - struct { - void *freelist; - long unsigned int counter; - }; - freelist_full_t full; -} freelist_aba_t; - -struct slab { - long unsigned int flags; - struct kmem_cache *slab_cache; - union { - struct { - union { - struct list_head slab_list; - struct { - struct slab *next; - int slabs; - }; - }; - union { - struct { - void *freelist; - union { - long unsigned int counters; - struct { - unsigned int inuse: 16; - unsigned int objects: 15; - unsigned int frozen: 1; - }; - }; - }; - freelist_aba_t freelist_counter; - }; - }; - struct callback_head callback_head; - }; - unsigned int __page_type; - atomic_t __page_refcount; - long unsigned int obj_exts; -}; - -enum slab_state { - DOWN = 0, - PARTIAL = 1, - UP = 2, - FULL = 3, -}; - -struct kmalloc_info_struct { - const char *name[19]; - unsigned int size; -}; - -struct slabinfo { - long unsigned int active_objs; - long unsigned int num_objs; - long unsigned int active_slabs; - long unsigned int num_slabs; - long unsigned int shared_avail; - unsigned int limit; - unsigned int batchcount; - unsigned int shared; - unsigned int objects_per_slab; - unsigned int cache_order; -}; - -struct kmem_obj_info { - void *kp_ptr; - struct slab *kp_slab; - void *kp_objp; - long unsigned int kp_data_offset; - struct kmem_cache *kp_slab_cache; - void *kp_ret; - void *kp_stack[16]; - void *kp_free_stack[16]; -}; - -struct trace_event_raw_kmem_cache_alloc { - struct trace_entry ent; - long unsigned int call_site; - const void *ptr; - size_t bytes_req; - size_t bytes_alloc; - long unsigned int gfp_flags; - int node; - bool accounted; - char __data[0]; -}; - -struct trace_event_raw_kmalloc { - struct trace_entry ent; - long unsigned int call_site; - const void *ptr; - size_t bytes_req; - size_t bytes_alloc; - long unsigned int gfp_flags; - int node; - char __data[0]; -}; - -struct trace_event_raw_kfree { - struct trace_entry ent; - long unsigned int call_site; - const void *ptr; - char __data[0]; -}; - -struct trace_event_raw_kmem_cache_free { - struct trace_entry ent; - long unsigned int call_site; - const void *ptr; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_mm_page_free { - struct trace_entry ent; - long unsigned int pfn; - unsigned int order; - char __data[0]; -}; - -struct trace_event_raw_mm_page_free_batched { - struct trace_entry ent; - long unsigned int pfn; - char __data[0]; -}; - -struct trace_event_raw_mm_page_alloc { - struct trace_entry ent; - long unsigned int pfn; - unsigned int order; - long unsigned int gfp_flags; - int migratetype; - char __data[0]; -}; - -struct trace_event_raw_mm_page { - struct trace_entry ent; - long unsigned int pfn; - unsigned int order; - int migratetype; - int percpu_refill; - char __data[0]; -}; - -struct trace_event_raw_mm_page_pcpu_drain { - struct trace_entry ent; - long unsigned int pfn; - unsigned int order; - int migratetype; - char __data[0]; -}; - -struct trace_event_raw_mm_page_alloc_extfrag { - struct trace_entry ent; - long unsigned int pfn; - int alloc_order; - int fallback_order; - int alloc_migratetype; - int fallback_migratetype; - int change_ownership; - char __data[0]; -}; - -struct trace_event_raw_mm_setup_per_zone_wmarks { - struct trace_entry ent; - int node_id; - u32 __data_loc_name; - long unsigned int watermark_min; - long unsigned int watermark_low; - long unsigned int watermark_high; - long unsigned int watermark_promo; - char __data[0]; -}; - -struct trace_event_raw_mm_setup_per_zone_lowmem_reserve { - struct trace_entry ent; - int node_id; - u32 __data_loc_name; - u32 __data_loc_upper_name; - long int lowmem_reserve; - char __data[0]; -}; - -struct trace_event_raw_mm_calculate_totalreserve_pages { - struct trace_entry ent; - long unsigned int totalreserve_pages; - char __data[0]; -}; - -struct trace_event_raw_rss_stat { - struct trace_entry ent; - unsigned int mm_id; - unsigned int curr; - int member; - long int size; - char __data[0]; -}; - -struct trace_event_data_offsets_kmem_cache_alloc {}; - -struct trace_event_data_offsets_kmalloc {}; - -struct trace_event_data_offsets_kfree {}; - -struct trace_event_data_offsets_kmem_cache_free { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_mm_page_free {}; - -struct trace_event_data_offsets_mm_page_free_batched {}; - -struct trace_event_data_offsets_mm_page_alloc {}; - -struct trace_event_data_offsets_mm_page {}; - -struct trace_event_data_offsets_mm_page_pcpu_drain {}; - -struct trace_event_data_offsets_mm_page_alloc_extfrag {}; - -struct trace_event_data_offsets_mm_setup_per_zone_wmarks { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_mm_setup_per_zone_lowmem_reserve { - u32 name; - const void *name_ptr_; - u32 upper_name; - const void *upper_name_ptr_; -}; - -struct trace_event_data_offsets_mm_calculate_totalreserve_pages {}; - -struct trace_event_data_offsets_rss_stat {}; - -typedef void (*btf_trace_kmem_cache_alloc)(void *, long unsigned int, const void *, struct kmem_cache *, gfp_t, int); - -typedef void (*btf_trace_kmalloc)(void *, long unsigned int, const void *, size_t, size_t, gfp_t, int); - -typedef void (*btf_trace_kfree)(void *, long unsigned int, const void *); - -typedef void (*btf_trace_kmem_cache_free)(void *, long unsigned int, const void *, const struct kmem_cache *); - -typedef void (*btf_trace_mm_page_free)(void *, struct page *, unsigned int); - -typedef void (*btf_trace_mm_page_free_batched)(void *, struct page *); - -typedef void (*btf_trace_mm_page_alloc)(void *, struct page *, unsigned int, gfp_t, int); - -typedef void (*btf_trace_mm_page_alloc_zone_locked)(void *, struct page *, unsigned int, int, int); - -typedef void (*btf_trace_mm_page_pcpu_drain)(void *, struct page *, unsigned int, int); - -typedef void (*btf_trace_mm_page_alloc_extfrag)(void *, struct page *, int, int, int, int); - -typedef void (*btf_trace_mm_setup_per_zone_wmarks)(void *, struct zone *); - -typedef void (*btf_trace_mm_setup_per_zone_lowmem_reserve)(void *, struct zone *, struct zone *, long int); - -typedef void (*btf_trace_mm_calculate_totalreserve_pages)(void *, long unsigned int); - -typedef void (*btf_trace_rss_stat)(void *, struct mm_struct *, int); - -struct kvfree_rcu_bulk_data { - struct list_head list; - struct rcu_gp_oldstate gp_snap; - long unsigned int nr_records; - void *records[0]; -}; - -struct kfree_rcu_cpu; - -struct kfree_rcu_cpu_work { - struct rcu_work rcu_work; - struct callback_head *head_free; - struct rcu_gp_oldstate head_free_gp_snap; - struct list_head bulk_head_free[2]; - struct kfree_rcu_cpu *krcp; -}; - -struct kfree_rcu_cpu { - struct callback_head *head; - long unsigned int head_gp_snap; - atomic_t head_count; - struct list_head bulk_head[2]; - atomic_t bulk_count[2]; - struct kfree_rcu_cpu_work krw_arr[2]; - raw_spinlock_t lock; - struct delayed_work monitor_work; - bool initialized; - struct delayed_work page_cache_work; - atomic_t backoff_page_cache_fill; - atomic_t work_in_progress; - struct hrtimer hrtimer; - struct llist_head bkvcache; - int nr_bkv_objs; -}; - -enum lru_status { - LRU_REMOVED = 0, - LRU_REMOVED_RETRY = 1, - LRU_ROTATE = 2, - LRU_SKIP = 3, - LRU_RETRY = 4, - LRU_STOP = 5, -}; - -typedef enum lru_status (*list_lru_walk_cb)(struct list_head *, struct list_lru_one *, void *); - -typedef unsigned int pgtbl_mod_mask; - -enum mmu_notifier_event { - MMU_NOTIFY_UNMAP = 0, - MMU_NOTIFY_CLEAR = 1, - MMU_NOTIFY_PROTECTION_VMA = 2, - MMU_NOTIFY_PROTECTION_PAGE = 3, - MMU_NOTIFY_SOFT_DIRTY = 4, - MMU_NOTIFY_RELEASE = 5, - MMU_NOTIFY_MIGRATE = 6, - MMU_NOTIFY_EXCLUSIVE = 7, -}; - -struct mmu_notifier_range { - struct mm_struct *mm; - long unsigned int start; - long unsigned int end; - unsigned int flags; - enum mmu_notifier_event event; - void *owner; -}; - -enum transparent_hugepage_flag { - TRANSPARENT_HUGEPAGE_UNSUPPORTED = 0, - TRANSPARENT_HUGEPAGE_FLAG = 1, - TRANSPARENT_HUGEPAGE_REQ_MADV_FLAG = 2, - TRANSPARENT_HUGEPAGE_DEFRAG_DIRECT_FLAG = 3, - TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_FLAG = 4, - TRANSPARENT_HUGEPAGE_DEFRAG_KSWAPD_OR_MADV_FLAG = 5, - TRANSPARENT_HUGEPAGE_DEFRAG_REQ_MADV_FLAG = 6, - TRANSPARENT_HUGEPAGE_DEFRAG_KHUGEPAGED_FLAG = 7, - TRANSPARENT_HUGEPAGE_USE_ZERO_PAGE_FLAG = 8, -}; - -struct follow_pfnmap_args { - struct vm_area_struct *vma; - long unsigned int address; - spinlock_t *lock; - pte_t *ptep; - long unsigned int pfn; - long unsigned int addr_mask; - pgprot_t pgprot; - bool writable; - bool special; -}; - -typedef long unsigned int pte_marker; - -typedef int rmap_t; - -enum rmap_level { - RMAP_LEVEL_PTE = 0, - RMAP_LEVEL_PMD = 1, - RMAP_LEVEL_PUD = 2, -}; - -struct unlink_vma_file_batch { - int count; - struct vm_area_struct *vmas[8]; -}; - -typedef int fpb_t; - -struct copy_subpage_arg { - struct folio *dst; - struct folio *src; - struct vm_area_struct *vma; -}; - -struct vmap_area { - long unsigned int va_start; - long unsigned int va_end; - struct rb_node rb_node; - struct list_head list; - union { - long unsigned int subtree_max_size; - struct vm_struct *vm; - }; - long unsigned int flags; -}; - -typedef unsigned int kasan_vmalloc_flags_t; - -enum memcg_stat_item { - MEMCG_SWAP = 49, - MEMCG_SOCK = 50, - MEMCG_PERCPU_B = 51, - MEMCG_VMALLOC = 52, - MEMCG_KMEM = 53, - MEMCG_ZSWAP_B = 54, - MEMCG_ZSWAPPED = 55, - MEMCG_NR_STAT = 56, -}; - -struct trace_event_raw_alloc_vmap_area { - struct trace_entry ent; - long unsigned int addr; - long unsigned int size; - long unsigned int align; - long unsigned int vstart; - long unsigned int vend; - int failed; - char __data[0]; -}; - -struct trace_event_raw_purge_vmap_area_lazy { - struct trace_entry ent; - long unsigned int start; - long unsigned int end; - unsigned int npurged; - char __data[0]; -}; - -struct trace_event_raw_free_vmap_area_noflush { - struct trace_entry ent; - long unsigned int va_start; - long unsigned int nr_lazy; - long unsigned int nr_lazy_max; - char __data[0]; -}; - -struct trace_event_data_offsets_alloc_vmap_area {}; - -struct trace_event_data_offsets_purge_vmap_area_lazy {}; - -struct trace_event_data_offsets_free_vmap_area_noflush {}; - -typedef void (*btf_trace_alloc_vmap_area)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, int); - -typedef void (*btf_trace_purge_vmap_area_lazy)(void *, long unsigned int, long unsigned int, unsigned int); - -typedef void (*btf_trace_free_vmap_area_noflush)(void *, long unsigned int, long unsigned int, long unsigned int); - -struct vfree_deferred { - struct llist_head list; - struct work_struct wq; -}; - -struct rb_list { - struct rb_root root; - struct list_head head; - spinlock_t lock; -}; - -struct vmap_pool { - struct list_head head; - long unsigned int len; -}; - -struct vmap_node { - struct vmap_pool pool[256]; - spinlock_t pool_lock; - bool skip_populate; - struct rb_list busy; - struct rb_list lazy; - struct list_head purge_list; - struct work_struct purge_work; - long unsigned int nr_purged; -}; - -enum fit_type { - NOTHING_FIT = 0, - FL_FIT_TYPE = 1, - LE_FIT_TYPE = 2, - RE_FIT_TYPE = 3, - NE_FIT_TYPE = 4, -}; - -struct vmap_block_queue { - spinlock_t lock; - struct list_head free; - struct xarray vmap_blocks; -}; - -struct vmap_block { - spinlock_t lock; - struct vmap_area *va; - long unsigned int free; - long unsigned int dirty; - long unsigned int used_map[4]; - long unsigned int dirty_min; - long unsigned int dirty_max; - struct list_head free_list; - struct callback_head callback_head; - struct list_head purge; - unsigned int cpu; -}; - -struct vmap_pfn_data { - long unsigned int *pfns; - pgprot_t prot; - unsigned int idx; -}; - -enum { - MMOP_OFFLINE = 0, - MMOP_ONLINE = 1, - MMOP_ONLINE_KERNEL = 2, - MMOP_ONLINE_MOVABLE = 3, -}; - -typedef int mhp_t; - -struct mhp_params { - struct vmem_altmap *altmap; - pgprot_t pgprot; - struct dev_pagemap *pgmap; -}; - -typedef void (*online_page_callback_t)(struct page *, unsigned int); - -enum meminit_context { - MEMINIT_EARLY = 0, - MEMINIT_HOTPLUG = 1, -}; - -struct node_notify { - int nid; -}; - -struct memory_group { - int nid; - struct list_head memory_blocks; - long unsigned int present_kernel_pages; - long unsigned int present_movable_pages; - bool is_dynamic; - union { - struct { - long unsigned int max_pages; - } s; - struct { - long unsigned int unit_pages; - } d; - }; -}; - -struct memory_block { - long unsigned int start_section_nr; - long unsigned int state; - int online_type; - int nid; - struct zone *zone; - struct device dev; - struct vmem_altmap *altmap; - struct memory_group *group; - struct list_head group_next; - atomic_long_t nr_hwpoison; -}; - -struct memory_notify { - long unsigned int altmap_start_pfn; - long unsigned int altmap_nr_pages; - long unsigned int start_pfn; - long unsigned int nr_pages; -}; - -typedef int (*walk_memory_blocks_func_t)(struct memory_block *, void *); - -typedef int (*walk_memory_groups_func_t)(struct memory_group *, void *); - -enum hugetlb_page_flags { - HPG_restore_reserve = 0, - HPG_migratable = 1, - HPG_temporary = 2, - HPG_freed = 3, - HPG_vmemmap_optimized = 4, - HPG_raw_hwp_unreliable = 5, - HPG_cma = 6, - __NR_HPAGEFLAGS = 7, -}; - -enum pb_isolate_mode { - PB_ISOLATE_MODE_MEM_OFFLINE = 0, - PB_ISOLATE_MODE_CMA_ALLOC = 1, - PB_ISOLATE_MODE_OTHER = 2, -}; - -enum { - MEMMAP_ON_MEMORY_DISABLE = 0, - MEMMAP_ON_MEMORY_ENABLE = 1, - MEMMAP_ON_MEMORY_FORCE = 2, -}; - -enum { - ONLINE_POLICY_CONTIG_ZONES = 0, - ONLINE_POLICY_AUTO_MOVABLE = 1, -}; - -struct auto_movable_stats { - long unsigned int kernel_early_pages; - long unsigned int movable_pages; -}; - -struct auto_movable_group_stats { - long unsigned int movable_pages; - long unsigned int req_kernel_early_pages; -}; - -typedef unsigned int fgf_t; - -enum string_size_units { - STRING_UNITS_10 = 0, - STRING_UNITS_2 = 1, - STRING_UNITS_MASK = 1, - STRING_UNITS_NO_SPACE = 1073741824, - STRING_UNITS_NO_BYTES = 2147483648, -}; - -enum { - MPOL_DEFAULT = 0, - MPOL_PREFERRED = 1, - MPOL_BIND = 2, - MPOL_INTERLEAVE = 3, - MPOL_LOCAL = 4, - MPOL_PREFERRED_MANY = 5, - MPOL_WEIGHTED_INTERLEAVE = 6, - MPOL_MAX = 7, -}; - -typedef unsigned int uffd_flags_t; - -enum mfill_atomic_mode { - MFILL_ATOMIC_COPY = 0, - MFILL_ATOMIC_ZEROPAGE = 1, - MFILL_ATOMIC_CONTINUE = 2, - MFILL_ATOMIC_POISON = 3, - NR_MFILL_ATOMIC_MODES = 4, -}; - -struct resv_map { - struct kref refs; - spinlock_t lock; - struct list_head regions; - long int adds_in_progress; - struct list_head region_cache; - long int region_cache_count; - struct rw_semaphore rw_sema; - struct page_counter *reservation_counter; - long unsigned int pages_per_hpage; - struct cgroup_subsys_state *css; -}; - -struct file_region { - struct list_head link; - long int from; - long int to; - struct page_counter *reservation_counter; - struct cgroup_subsys_state *css; -}; - -struct hugetlb_vma_lock { - struct kref refs; - struct rw_semaphore rw_sema; - struct vm_area_struct *vma; -}; - -struct huge_bootmem_page { - struct list_head list; - struct hstate *hstate; - long unsigned int flags; - struct cma *cma; -}; - -enum hugetlb_memory_event { - HUGETLB_MAX = 0, - HUGETLB_NR_MEMORY_EVENTS = 1, -}; - -struct hugetlb_cgroup_per_node { - long unsigned int usage[2]; -}; - -struct hugetlb_cgroup { - struct cgroup_subsys_state css; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct page_counter hugepage[2]; - struct page_counter rsvd_hugepage[2]; - atomic_long_t events[2]; - atomic_long_t events_local[2]; - struct cgroup_file events_file[2]; - struct cgroup_file events_local_file[2]; - struct hugetlb_cgroup_per_node *nodeinfo[0]; -}; - -struct hugetlb_cmdline { - char *val; - int (*setup)(char *); -}; - -enum vma_resv_mode { - VMA_NEEDS_RESV = 0, - VMA_COMMIT_RESV = 1, - VMA_END_RESV = 2, - VMA_ADD_RESV = 3, - VMA_DEL_RESV = 4, -}; - -typedef enum { - MAP_CHG_REUSE = 0, - MAP_CHG_NEEDED = 1, - MAP_CHG_ENFORCED = 2, -} map_chg_state; - -struct node_hstate { - struct kobject *hugepages_kobj; - struct kobject *hstate_kobjs[2]; -}; - -struct mmu_notifier_subscriptions { - struct hlist_head list; - bool has_itree; - spinlock_t lock; - long unsigned int invalidate_seq; - long unsigned int active_invalidate_ranges; - struct rb_root_cached itree; - wait_queue_head_t wq; - struct hlist_head deferred_list; -}; - -struct interval_tree_node { - struct rb_node rb; - long unsigned int start; - long unsigned int last; - long unsigned int __subtree_last; -}; - -struct mmu_notifier; - -struct mmu_notifier_ops { - void (*release)(struct mmu_notifier *, struct mm_struct *); - int (*clear_flush_young)(struct mmu_notifier *, struct mm_struct *, long unsigned int, long unsigned int); - int (*clear_young)(struct mmu_notifier *, struct mm_struct *, long unsigned int, long unsigned int); - int (*test_young)(struct mmu_notifier *, struct mm_struct *, long unsigned int); - int (*invalidate_range_start)(struct mmu_notifier *, const struct mmu_notifier_range *); - void (*invalidate_range_end)(struct mmu_notifier *, const struct mmu_notifier_range *); - void (*arch_invalidate_secondary_tlbs)(struct mmu_notifier *, struct mm_struct *, long unsigned int, long unsigned int); - struct mmu_notifier * (*alloc_notifier)(struct mm_struct *); - void (*free_notifier)(struct mmu_notifier *); -}; - -struct mmu_notifier { - struct hlist_node hlist; - const struct mmu_notifier_ops *ops; - struct mm_struct *mm; - struct callback_head rcu; - unsigned int users; -}; - -struct mmu_interval_notifier; - -struct mmu_interval_notifier_ops { - bool (*invalidate)(struct mmu_interval_notifier *, const struct mmu_notifier_range *, long unsigned int); -}; - -struct mmu_interval_notifier { - struct interval_tree_node interval_tree; - const struct mmu_interval_notifier_ops *ops; - struct mm_struct *mm; - struct hlist_node deferred_item; - long unsigned int invalidate_seq; -}; - -enum { - DUMP_PREFIX_NONE = 0, - DUMP_PREFIX_ADDRESS = 1, - DUMP_PREFIX_OFFSET = 2, -}; - -typedef unsigned int isolate_mode_t; - -struct buffer_head; - -typedef void bh_end_io_t(struct buffer_head *, int); - -struct buffer_head { - long unsigned int b_state; - struct buffer_head *b_this_page; - union { - struct page *b_page; - struct folio *b_folio; - }; - sector_t b_blocknr; - size_t b_size; - char *b_data; - struct block_device *b_bdev; - bh_end_io_t *b_end_io; - void *b_private; - struct list_head b_assoc_buffers; - struct address_space *b_assoc_map; - atomic_t b_count; - spinlock_t b_uptodate_lock; -}; - -struct movable_operations { - bool (*isolate_page)(struct page *, isolate_mode_t); - int (*migrate_page)(struct page *, struct page *, enum migrate_mode); - void (*putback_page)(struct page *); -}; - -enum bh_state_bits { - BH_Uptodate = 0, - BH_Dirty = 1, - BH_Lock = 2, - BH_Req = 3, - BH_Mapped = 4, - BH_New = 5, - BH_Async_Read = 6, - BH_Async_Write = 7, - BH_Delay = 8, - BH_Boundary = 9, - BH_Write_EIO = 10, - BH_Unwritten = 11, - BH_Quiet = 12, - BH_Meta = 13, - BH_Prio = 14, - BH_Defer_Completion = 15, - BH_Migrate = 16, - BH_PrivateStart = 17, -}; - -enum rmp_flags { - RMP_LOCKED = 1, - RMP_USE_SHARED_ZEROPAGE = 2, -}; - -struct rmap_walk_control { - void *arg; - bool try_lock; - bool contended; - bool (*rmap_one)(struct folio *, struct vm_area_struct *, long unsigned int, void *); - int (*done)(struct folio *); - struct anon_vma * (*anon_lock)(const struct folio *, struct rmap_walk_control *); - bool (*invalid_vma)(struct vm_area_struct *, void *); -}; - -typedef int folio_walk_flags_t; - -enum folio_walk_level { - FW_LEVEL_PTE = 0, - FW_LEVEL_PMD = 1, - FW_LEVEL_PUD = 2, -}; - -struct folio_walk { - struct page *page; - enum folio_walk_level level; - union { - pte_t *ptep; - pud_t *pudp; - pmd_t *pmdp; - }; - union { - pte_t pte; - pud_t pud; - pmd_t pmd; - }; - struct vm_area_struct *vma; - spinlock_t *ptl; -}; - -struct rmap_walk_arg { - struct folio *folio; - bool map_unused_to_zeropage; -}; - -enum { - PAGE_WAS_MAPPED = 1, - PAGE_WAS_MLOCKED = 2, - PAGE_OLD_STATES = 3, -}; - -struct migrate_pages_stats { - int nr_succeeded; - int nr_failed_pages; - int nr_thp_succeeded; - int nr_thp_failed; - int nr_thp_split; - int nr_split; -}; - -enum vmpressure_levels { - VMPRESSURE_LOW = 0, - VMPRESSURE_MEDIUM = 1, - VMPRESSURE_CRITICAL = 2, - VMPRESSURE_NUM_LEVELS = 3, -}; - -enum vmpressure_modes { - VMPRESSURE_NO_PASSTHROUGH = 0, - VMPRESSURE_HIERARCHY = 1, - VMPRESSURE_LOCAL = 2, - VMPRESSURE_NUM_MODES = 3, -}; - -struct eventfd_ctx; - -struct vmpressure_event { - struct eventfd_ctx *efd; - enum vmpressure_levels level; - enum vmpressure_modes mode; - struct list_head node; -}; - -struct swap_cgroup { - atomic_t ids; -}; - -struct swap_cgroup_ctrl { - struct swap_cgroup *map; -}; - -enum mf_flags { - MF_COUNT_INCREASED = 1, - MF_ACTION_REQUIRED = 2, - MF_MUST_KILL = 4, - MF_SOFT_OFFLINE = 8, - MF_UNPOISON = 16, - MF_SW_SIMULATED = 32, - MF_NO_RETRY = 64, - MF_MEM_PRE_REMOVE = 128, -}; - -enum mf_result { - MF_IGNORED = 0, - MF_FAILED = 1, - MF_DELAYED = 2, - MF_RECOVERED = 3, -}; - -enum mf_action_page_type { - MF_MSG_KERNEL = 0, - MF_MSG_KERNEL_HIGH_ORDER = 1, - MF_MSG_DIFFERENT_COMPOUND = 2, - MF_MSG_HUGE = 3, - MF_MSG_FREE_HUGE = 4, - MF_MSG_GET_HWPOISON = 5, - MF_MSG_UNMAP_FAILED = 6, - MF_MSG_DIRTY_SWAPCACHE = 7, - MF_MSG_CLEAN_SWAPCACHE = 8, - MF_MSG_DIRTY_MLOCKED_LRU = 9, - MF_MSG_CLEAN_MLOCKED_LRU = 10, - MF_MSG_DIRTY_UNEVICTABLE_LRU = 11, - MF_MSG_CLEAN_UNEVICTABLE_LRU = 12, - MF_MSG_DIRTY_LRU = 13, - MF_MSG_CLEAN_LRU = 14, - MF_MSG_TRUNCATED_LRU = 15, - MF_MSG_BUDDY = 16, - MF_MSG_DAX = 17, - MF_MSG_UNSPLIT_THP = 18, - MF_MSG_ALREADY_POISONED = 19, - MF_MSG_UNKNOWN = 20, -}; - -typedef long unsigned int dax_entry_t; - -struct anon_vma_chain { - struct vm_area_struct *vma; - struct anon_vma *anon_vma; - struct list_head same_vma; - struct rb_node rb; - long unsigned int rb_subtree_last; -}; - -struct to_kill { - struct list_head nd; - struct task_struct *tsk; - long unsigned int addr; - short int size_shift; -}; - -struct hwpoison_walk { - struct to_kill tk; - long unsigned int pfn; - int flags; -}; - -struct page_state { - long unsigned int mask; - long unsigned int res; - enum mf_action_page_type type; - int (*action)(struct page_state *, struct page *); -}; - -struct raw_hwp_page { - struct llist_node node; - struct page *page; -}; - -struct memory_failure_entry { - long unsigned int pfn; - int flags; -}; - -struct memory_failure_cpu { - struct { - union { - struct __kfifo kfifo; - struct memory_failure_entry *type; - const struct memory_failure_entry *const_type; - char (*rectype)[0]; - struct memory_failure_entry *ptr; - const struct memory_failure_entry *ptr_const; - }; - struct memory_failure_entry buf[16]; - } fifo; - raw_spinlock_t lock; - struct work_struct work; -}; - -struct zs_pool_stats { - atomic_long_t pages_compacted; -}; - -struct zpool_driver { - char *type; - struct module *owner; - atomic_t refcount; - struct list_head list; - void * (*create)(const char *, gfp_t); - void (*destroy)(void *); - int (*malloc)(void *, size_t, gfp_t, long unsigned int *, const int); - void (*free)(void *, long unsigned int); - void * (*obj_read_begin)(void *, long unsigned int, void *); - void (*obj_read_end)(void *, long unsigned int, void *); - void (*obj_write)(void *, long unsigned int, void *, size_t); - u64 (*total_pages)(void *); -}; - -struct zspage; - -struct zpdesc { - long unsigned int flags; - struct list_head lru; - long unsigned int movable_ops; - union { - struct zpdesc *next; - long unsigned int handle; - }; - struct zspage *zspage; - unsigned int first_obj_offset; - atomic_t _refcount; -}; - -struct zspage_lock { - spinlock_t lock; - int cnt; - struct lockdep_map dep_map; -}; - -struct zs_pool; - -struct zspage { - struct { - unsigned int huge: 1; - unsigned int fullness: 4; - unsigned int class: 9; - unsigned int magic: 8; - }; - unsigned int inuse; - unsigned int freeobj; - struct zpdesc *first_zpdesc; - struct list_head list; - struct zs_pool *pool; - struct zspage_lock zsl; -}; - -enum fullness_group { - ZS_INUSE_RATIO_0 = 0, - ZS_INUSE_RATIO_10 = 1, - ZS_INUSE_RATIO_99 = 10, - ZS_INUSE_RATIO_100 = 11, - NR_FULLNESS_GROUPS = 12, -}; - -enum class_stat_type { - ZS_OBJS_ALLOCATED = 12, - ZS_OBJS_INUSE = 13, - NR_CLASS_STAT_TYPES = 14, -}; - -struct zs_size_stat { - long unsigned int objs[14]; -}; - -struct size_class { - spinlock_t lock; - struct list_head fullness_list[12]; - int size; - int objs_per_zspage; - int pages_per_zspage; - unsigned int index; - struct zs_size_stat stats; -}; - -struct link_free { - union { - long unsigned int next; - long unsigned int handle; - }; -}; - -struct zs_pool { - const char *name; - struct size_class *size_class[255]; - struct kmem_cache *handle_cachep; - struct kmem_cache *zspage_cachep; - atomic_long_t pages_allocated; - struct zs_pool_stats stats; - struct shrinker *shrinker; - struct work_struct free_work; - rwlock_t lock; - atomic_t compaction_in_progress; -}; - -struct cma_kobject { - struct kobject kobj; - struct cma *cma; -}; - -struct cma_mem { - struct hlist_node node; - struct page *p; - long unsigned int n; -}; - -struct ptdump_range { - long unsigned int start; - long unsigned int end; -}; - -struct ptdump_state { - void (*note_page_pte)(struct ptdump_state *, long unsigned int, pte_t); - void (*note_page_pmd)(struct ptdump_state *, long unsigned int, pmd_t); - void (*note_page_pud)(struct ptdump_state *, long unsigned int, pud_t); - void (*note_page_p4d)(struct ptdump_state *, long unsigned int, p4d_t); - void (*note_page_pgd)(struct ptdump_state *, long unsigned int, pgd_t); - void (*note_page_flush)(struct ptdump_state *); - void (*effective_prot_pte)(struct ptdump_state *, pte_t); - void (*effective_prot_pmd)(struct ptdump_state *, pmd_t); - void (*effective_prot_pud)(struct ptdump_state *, pud_t); - void (*effective_prot_p4d)(struct ptdump_state *, p4d_t); - void (*effective_prot_pgd)(struct ptdump_state *, pgd_t); - const struct ptdump_range *range; -}; - -enum execmem_range_flags { - EXECMEM_KASAN_SHADOW = 1, - EXECMEM_ROX_CACHE = 2, -}; - -struct execmem_range { - long unsigned int start; - long unsigned int end; - long unsigned int fallback_start; - long unsigned int fallback_end; - pgprot_t pgprot; - unsigned int alignment; - enum execmem_range_flags flags; -}; - -struct execmem_info { - struct execmem_range ranges[5]; -}; - -struct execmem_cache { - struct mutex mutex; - struct maple_tree busy_areas; - struct maple_tree free_areas; - unsigned int pending_free_cnt; -}; - -typedef __kernel_long_t __kernel_off_t; - -typedef __kernel_off_t off_t; - -typedef struct { - spinlock_t *lock; -} class_spinlock_t; - -typedef struct fd class_fd_pos_t; - -enum iter_type { - ITER_UBUF = 0, - ITER_IOVEC = 1, - ITER_BVEC = 2, - ITER_KVEC = 3, - ITER_FOLIOQ = 4, - ITER_XARRAY = 5, - ITER_DISCARD = 6, -}; - -enum { - IOPRIO_CLASS_NONE = 0, - IOPRIO_CLASS_RT = 1, - IOPRIO_CLASS_BE = 2, - IOPRIO_CLASS_IDLE = 3, - IOPRIO_CLASS_INVALID = 7, -}; - -enum { - IOPRIO_HINT_NONE = 0, - IOPRIO_HINT_DEV_DURATION_LIMIT_1 = 1, - IOPRIO_HINT_DEV_DURATION_LIMIT_2 = 2, - IOPRIO_HINT_DEV_DURATION_LIMIT_3 = 3, - IOPRIO_HINT_DEV_DURATION_LIMIT_4 = 4, - IOPRIO_HINT_DEV_DURATION_LIMIT_5 = 5, - IOPRIO_HINT_DEV_DURATION_LIMIT_6 = 6, - IOPRIO_HINT_DEV_DURATION_LIMIT_7 = 7, -}; - -typedef int __kernel_rwf_t; - -typedef __kernel_rwf_t rwf_t; - -enum fsnotify_data_type { - FSNOTIFY_EVENT_NONE = 0, - FSNOTIFY_EVENT_FILE_RANGE = 1, - FSNOTIFY_EVENT_PATH = 2, - FSNOTIFY_EVENT_INODE = 3, - FSNOTIFY_EVENT_DENTRY = 4, - FSNOTIFY_EVENT_MNT = 5, - FSNOTIFY_EVENT_ERROR = 6, -}; - -typedef s32 compat_off_t; - -typedef s64 compat_loff_t; - -typedef short unsigned int __kernel_old_uid_t; - -typedef short unsigned int __kernel_old_gid_t; - -typedef __kernel_old_uid_t old_uid_t; - -typedef __kernel_old_gid_t old_gid_t; - -struct stat { - __kernel_ulong_t st_dev; - __kernel_ulong_t st_ino; - __kernel_ulong_t st_nlink; - unsigned int st_mode; - unsigned int st_uid; - unsigned int st_gid; - unsigned int __pad0; - __kernel_ulong_t st_rdev; - __kernel_long_t st_size; - __kernel_long_t st_blksize; - __kernel_long_t st_blocks; - __kernel_ulong_t st_atime; - __kernel_ulong_t st_atime_nsec; - __kernel_ulong_t st_mtime; - __kernel_ulong_t st_mtime_nsec; - __kernel_ulong_t st_ctime; - __kernel_ulong_t st_ctime_nsec; - __kernel_long_t __unused[3]; -}; - -struct __old_kernel_stat { - short unsigned int st_dev; - short unsigned int st_ino; - short unsigned int st_mode; - short unsigned int st_nlink; - short unsigned int st_uid; - short unsigned int st_gid; - short unsigned int st_rdev; - unsigned int st_size; - unsigned int st_atime; - unsigned int st_mtime; - unsigned int st_ctime; -}; - -struct statx_timestamp { - __s64 tv_sec; - __u32 tv_nsec; - __s32 __reserved; -}; - -struct statx { - __u32 stx_mask; - __u32 stx_blksize; - __u64 stx_attributes; - __u32 stx_nlink; - __u32 stx_uid; - __u32 stx_gid; - __u16 stx_mode; - __u16 __spare0[1]; - __u64 stx_ino; - __u64 stx_size; - __u64 stx_blocks; - __u64 stx_attributes_mask; - struct statx_timestamp stx_atime; - struct statx_timestamp stx_btime; - struct statx_timestamp stx_ctime; - struct statx_timestamp stx_mtime; - __u32 stx_rdev_major; - __u32 stx_rdev_minor; - __u32 stx_dev_major; - __u32 stx_dev_minor; - __u64 stx_mnt_id; - __u32 stx_dio_mem_align; - __u32 stx_dio_offset_align; - __u64 stx_subvol; - __u32 stx_atomic_write_unit_min; - __u32 stx_atomic_write_unit_max; - __u32 stx_atomic_write_segments_max; - __u32 stx_dio_read_offset_align; - __u32 stx_atomic_write_unit_max_opt; - __u32 __spare2[1]; - __u64 __spare3[8]; -}; - -typedef u16 compat_mode_t; - -typedef u16 __compat_uid_t; - -typedef u16 __compat_gid_t; - -typedef u32 compat_ino_t; - -typedef u16 compat_nlink_t; - -struct compat_stat { - u32 st_dev; - compat_ino_t st_ino; - compat_mode_t st_mode; - compat_nlink_t st_nlink; - __compat_uid_t st_uid; - __compat_gid_t st_gid; - u32 st_rdev; - u32 st_size; - u32 st_blksize; - u32 st_blocks; - u32 st_atime; - u32 st_atime_nsec; - u32 st_mtime; - u32 st_mtime_nsec; - u32 st_ctime; - u32 st_ctime_nsec; - u32 __unused4; - u32 __unused5; -}; - -struct mount; - -struct mnt_namespace { - struct ns_common ns; - struct mount *root; - struct { - struct rb_root mounts; - struct rb_node *mnt_last_node; - struct rb_node *mnt_first_node; - }; - struct user_namespace *user_ns; - struct ucounts *ucounts; - u64 seq; - union { - wait_queue_head_t poll; - struct callback_head mnt_ns_rcu; - }; - u64 seq_origin; - u64 event; - __u32 n_fsnotify_mask; - struct fsnotify_mark_connector *n_fsnotify_marks; - unsigned int nr_mounts; - unsigned int pending_mounts; - struct rb_node mnt_ns_tree_node; - struct list_head mnt_ns_list; - refcount_t passive; -}; - -struct fs_pin { - wait_queue_head_t wait; - int done; - struct hlist_node s_list; - struct hlist_node m_list; - void (*kill)(struct fs_pin *); -}; - -struct mnt_pcp; - -struct mountpoint; - -struct mount { - struct hlist_node mnt_hash; - struct mount *mnt_parent; - struct dentry *mnt_mountpoint; - struct vfsmount mnt; - union { - struct rb_node mnt_node; - struct callback_head mnt_rcu; - struct llist_node mnt_llist; - }; - struct mnt_pcp *mnt_pcp; - struct list_head mnt_mounts; - struct list_head mnt_child; - struct list_head mnt_instance; - const char *mnt_devname; - struct list_head mnt_list; - struct list_head mnt_expire; - struct list_head mnt_share; - struct hlist_head mnt_slave_list; - struct hlist_node mnt_slave; - struct mount *mnt_master; - struct mnt_namespace *mnt_ns; - struct mountpoint *mnt_mp; - union { - struct hlist_node mnt_mp_list; - struct hlist_node mnt_umount; - }; - struct fsnotify_mark_connector *mnt_fsnotify_marks; - __u32 mnt_fsnotify_mask; - struct list_head to_notify; - struct mnt_namespace *prev_ns; - int mnt_t_flags; - int mnt_id; - u64 mnt_id_unique; - int mnt_group_id; - int mnt_expiry_mark; - struct hlist_head mnt_pins; - struct hlist_head mnt_stuck_children; - struct mount *overmount; -}; - -struct mnt_pcp { - int mnt_count; - int mnt_writers; -}; - -struct mountpoint { - struct hlist_node m_hash; - struct dentry *m_dentry; - struct hlist_head m_list; -}; - -struct f_owner_ex { - int type; - __kernel_pid_t pid; -}; - -struct flock { - short int l_type; - short int l_whence; - __kernel_off_t l_start; - __kernel_off_t l_len; - __kernel_pid_t l_pid; -}; - -struct file_lock_context { - spinlock_t flc_lock; - struct list_head flc_flock; - struct list_head flc_posix; - struct list_head flc_lease; -}; - -struct file_lock_core { - struct file_lock_core *flc_blocker; - struct list_head flc_list; - struct hlist_node flc_link; - struct list_head flc_blocked_requests; - struct list_head flc_blocked_member; - fl_owner_t flc_owner; - unsigned int flc_flags; - unsigned char flc_type; - pid_t flc_pid; - int flc_link_cpu; - wait_queue_head_t flc_wait; - struct file *flc_file; -}; - -struct nlm_lockowner; - -struct nfs_lock_info { - u32 state; - struct nlm_lockowner *owner; - struct list_head list; -}; - -struct nfs4_lock_state; - -struct nfs4_lock_info { - struct nfs4_lock_state *owner; -}; - -struct file_lock_operations; - -struct lock_manager_operations; - -struct file_lock { - struct file_lock_core c; - loff_t fl_start; - loff_t fl_end; - const struct file_lock_operations *fl_ops; - const struct lock_manager_operations *fl_lmops; - union { - struct nfs_lock_info nfs_fl; - struct nfs4_lock_info nfs4_fl; - struct { - struct list_head link; - int state; - unsigned int debug_id; - } afs; - struct { - struct inode *inode; - } ceph; - } fl_u; -}; - -struct lease_manager_operations; - -struct file_lease { - struct file_lock_core c; - struct fasync_struct *fl_fasync; - long unsigned int fl_break_time; - long unsigned int fl_downgrade_time; - const struct lease_manager_operations *fl_lmops; -}; - -typedef s32 compat_pid_t; - -struct compat_flock { - short int l_type; - short int l_whence; - compat_off_t l_start; - compat_off_t l_len; - compat_pid_t l_pid; -}; - -struct compat_flock64 { - short int l_type; - short int l_whence; - compat_loff_t l_start; - compat_loff_t l_len; - compat_pid_t l_pid; -} __attribute__((packed)); - -struct file_lock_operations { - void (*fl_copy_lock)(struct file_lock *, struct file_lock *); - void (*fl_release_private)(struct file_lock *); -}; - -struct lock_manager_operations { - void *lm_mod_owner; - fl_owner_t (*lm_get_owner)(fl_owner_t); - void (*lm_put_owner)(fl_owner_t); - void (*lm_notify)(struct file_lock *); - int (*lm_grant)(struct file_lock *, int); - bool (*lm_lock_expirable)(struct file_lock *); - void (*lm_expire_lock)(void); -}; - -struct lease_manager_operations { - bool (*lm_break)(struct file_lease *); - int (*lm_change)(struct file_lease *, int, struct list_head *); - void (*lm_setup)(struct file_lease *, void **); - bool (*lm_breaker_owns_lease)(struct file_lease *); -}; - -enum dentry_d_lock_class { - DENTRY_D_LOCK_NORMAL = 0, - DENTRY_D_LOCK_NESTED = 1, -}; - -struct name_snapshot { - struct qstr name; - union shortname_store inline_name; -}; - -enum mount_flags { - MNT_NOSUID = 1, - MNT_NODEV = 2, - MNT_NOEXEC = 4, - MNT_NOATIME = 8, - MNT_NODIRATIME = 16, - MNT_RELATIME = 32, - MNT_READONLY = 64, - MNT_NOSYMFOLLOW = 128, - MNT_SHRINKABLE = 256, - MNT_WRITE_HOLD = 512, - MNT_INTERNAL = 16384, - MNT_LOCK_ATIME = 262144, - MNT_LOCK_NOEXEC = 524288, - MNT_LOCK_NOSUID = 1048576, - MNT_LOCK_NODEV = 2097152, - MNT_LOCK_READONLY = 4194304, - MNT_LOCKED = 8388608, - MNT_DOOMED = 16777216, - MNT_SYNC_UMOUNT = 33554432, - MNT_UMOUNT = 134217728, - MNT_USER_SETTABLE_MASK = 255, - MNT_ATIME_MASK = 56, - MNT_INTERNAL_FLAGS = 58737152, -}; - -struct fscrypt_policy_v1 { - __u8 version; - __u8 contents_encryption_mode; - __u8 filenames_encryption_mode; - __u8 flags; - __u8 master_key_descriptor[8]; -}; - -struct fscrypt_policy_v2 { - __u8 version; - __u8 contents_encryption_mode; - __u8 filenames_encryption_mode; - __u8 flags; - __u8 log2_data_unit_size; - __u8 __reserved[3]; - __u8 master_key_identifier[16]; -}; - -union fscrypt_policy { - u8 version; - struct fscrypt_policy_v1 v1; - struct fscrypt_policy_v2 v2; -}; - -struct dentry_stat_t { - long int nr_dentry; - long int nr_unused; - long int age_limit; - long int want_pages; - long int nr_negative; - long int dummy; -}; - -struct external_name { - atomic_t count; - struct callback_head head; - unsigned char name[0]; -}; - -enum d_walk_ret { - D_WALK_CONTINUE = 0, - D_WALK_QUIT = 1, - D_WALK_NORETRY = 2, - D_WALK_SKIP = 3, -}; - -struct check_mount { - struct vfsmount *mnt; - unsigned int mounted; -}; - -struct select_data { - struct dentry *start; - union { - long int found; - struct dentry *victim; - }; - struct list_head dispose; -}; - -typedef struct { - int val[2]; -} __kernel_fsid_t; - -enum inode_i_mutex_lock_class { - I_MUTEX_NORMAL = 0, - I_MUTEX_PARENT = 1, - I_MUTEX_CHILD = 2, - I_MUTEX_XATTR = 3, - I_MUTEX_NONDIR2 = 4, - I_MUTEX_PARENT2 = 5, -}; - -struct kstatfs { - long int f_type; - long int f_bsize; - u64 f_blocks; - u64 f_bfree; - u64 f_bavail; - u64 f_files; - u64 f_ffree; - __kernel_fsid_t f_fsid; - long int f_namelen; - long int f_frsize; - long int f_flags; - long int f_spare[4]; -}; - -struct simple_transaction_argresp { - ssize_t size; - char data[0]; -}; - -enum fid_type { - FILEID_ROOT = 0, - FILEID_INO32_GEN = 1, - FILEID_INO32_GEN_PARENT = 2, - FILEID_BTRFS_WITHOUT_PARENT = 77, - FILEID_BTRFS_WITH_PARENT = 78, - FILEID_BTRFS_WITH_PARENT_ROOT = 79, - FILEID_UDF_WITHOUT_PARENT = 81, - FILEID_UDF_WITH_PARENT = 82, - FILEID_NILFS_WITHOUT_PARENT = 97, - FILEID_NILFS_WITH_PARENT = 98, - FILEID_FAT_WITHOUT_PARENT = 113, - FILEID_FAT_WITH_PARENT = 114, - FILEID_INO64_GEN = 129, - FILEID_INO64_GEN_PARENT = 130, - FILEID_LUSTRE = 151, - FILEID_BCACHEFS_WITHOUT_PARENT = 177, - FILEID_BCACHEFS_WITH_PARENT = 178, - FILEID_KERNFS = 254, - FILEID_INVALID = 255, -}; - -struct fid { - union { - struct { - u32 ino; - u32 gen; - u32 parent_ino; - u32 parent_gen; - } i32; - struct { - u64 ino; - u32 gen; - } __attribute__((packed)) i64; - struct { - u32 block; - u16 partref; - u16 parent_partref; - u32 generation; - u32 parent_block; - u32 parent_generation; - } udf; - struct { - struct {} __empty_raw; - __u32 raw[0]; - }; - }; -}; - -enum handle_to_path_flags { - HANDLE_CHECK_PERMS = 1, - HANDLE_CHECK_SUBTREE = 2, -}; - -struct handle_to_path_ctx { - struct path root; - enum handle_to_path_flags flags; - unsigned int fh_flags; -}; - -enum fsnotify_iter_type { - FSNOTIFY_ITER_TYPE_INODE = 0, - FSNOTIFY_ITER_TYPE_VFSMOUNT = 1, - FSNOTIFY_ITER_TYPE_SB = 2, - FSNOTIFY_ITER_TYPE_PARENT = 3, - FSNOTIFY_ITER_TYPE_INODE2 = 4, - FSNOTIFY_ITER_TYPE_MNTNS = 5, - FSNOTIFY_ITER_TYPE_COUNT = 6, -}; - -struct fscrypt_str { - unsigned char *name; - u32 len; -}; - -struct stashed_operations { - struct dentry * (*stash_dentry)(struct dentry **, struct dentry *); - void (*put_data)(void *); - int (*init_inode)(struct inode *, void *); -}; - -enum { - DIR_OFFSET_FIRST = 2, - DIR_OFFSET_EOD = 2147483647, -}; - -enum { - DIR_OFFSET_MIN = 3, - DIR_OFFSET_MAX = 2147483646, -}; - -struct simple_attr { - int (*get)(void *, u64 *); - int (*set)(void *, u64); - char get_buf[24]; - char set_buf[24]; - void *data; - const char *fmt; - struct mutex mutex; -}; - -typedef __kernel_long_t __kernel_old_time_t; - -struct old_utimbuf32 { - old_time32_t actime; - old_time32_t modtime; -}; - -struct utimbuf { - __kernel_old_time_t actime; - __kernel_old_time_t modtime; -}; - -struct prepend_buffer { - char *buf; - int len; -}; - -struct constant_table { - const char *name; - int value; -}; - -struct pidfs_exit_info { - __u64 cgroupid; - __s32 exit_code; - __u32 coredump_mask; -}; - -struct simple_xattrs; - -struct pidfs_attr { - struct simple_xattrs *xattrs; - struct pidfs_exit_info __pei; - struct pidfs_exit_info *exit_info; -}; - -typedef struct task_struct *class_task_lock_t; - -enum proc_hidepid { - HIDEPID_OFF = 0, - HIDEPID_NO_ACCESS = 1, - HIDEPID_INVISIBLE = 2, - HIDEPID_NOT_PTRACEABLE = 4, -}; - -enum proc_pidonly { - PROC_PIDONLY_OFF = 0, - PROC_PIDONLY_ON = 1, -}; - -struct proc_fs_info { - struct pid_namespace *pid_ns; - struct dentry *proc_self; - struct dentry *proc_thread_self; - kgid_t pid_gid; - enum proc_hidepid hide_pid; - enum proc_pidonly pidonly; - struct callback_head rcu; -}; - -struct pidfd_info { - __u64 mask; - __u64 cgroupid; - __u32 pid; - __u32 tgid; - __u32 ppid; - __u32 ruid; - __u32 rgid; - __u32 euid; - __u32 egid; - __u32 suid; - __u32 sgid; - __u32 fsuid; - __u32 fsgid; - __s32 exit_code; - __u32 coredump_mask; - __u32 __spare1; -}; - -struct simple_xattrs { - struct rb_root rb_root; - rwlock_t lock; -}; - -struct simple_xattr { - struct rb_node rb_node; - char *name; - size_t size; - char value[0]; -}; - -typedef u32 nlink_t; - -typedef int (*proc_write_t)(struct file *, char *, size_t); - -struct proc_dir_entry { - atomic_t in_use; - refcount_t refcnt; - struct list_head pde_openers; - spinlock_t pde_unload_lock; - struct completion *pde_unload_completion; - const struct inode_operations *proc_iops; - union { - const struct proc_ops *proc_ops; - const struct file_operations *proc_dir_ops; - }; - union { - const struct seq_operations *seq_ops; - int (*single_show)(struct seq_file *, void *); - }; - proc_write_t write; - void *data; - unsigned int state_size; - unsigned int low_ino; - nlink_t nlink; - kuid_t uid; - kgid_t gid; - loff_t size; - struct proc_dir_entry *parent; - struct rb_root subdir; - struct rb_node subdir_node; - char *name; - umode_t mode; - u8 flags; - u8 namelen; - char inline_name[0]; -}; - -union proc_op { - int (*proc_get_link)(struct dentry *, struct path *); - int (*proc_show)(struct seq_file *, struct pid_namespace *, struct pid *, struct task_struct *); - int lsmid; -}; - -struct proc_inode { - struct pid *pid; - unsigned int fd; - union proc_op op; - struct proc_dir_entry *pde; - struct ctl_table_header *sysctl; - const struct ctl_table *sysctl_entry; - struct hlist_node sibling_inodes; - const struct proc_ns_operations *ns_ops; - struct inode vfs_inode; -}; - -enum { - T_SHARED = 1, - T_UNBINDABLE = 2, - T_MARKED = 4, - T_UMOUNT_CANDIDATE = 8, - T_SHARED_MASK = 2, -}; - -struct proc_mounts { - struct mnt_namespace *ns; - struct path root; - int (*show)(struct seq_file *, struct vfsmount *); -}; - -struct proc_fs_opts { - int flag; - const char *str; -}; - -struct file_handle { - __u32 handle_bytes; - int handle_type; - unsigned char f_handle[0]; -}; - -struct inotify_inode_mark { - struct fsnotify_mark fsn_mark; - int wd; -}; - -struct fanotify_response_info_header { - __u8 type; - __u8 pad; - __u16 len; -}; - -struct fanotify_response_info_audit_rule { - struct fanotify_response_info_header hdr; - __u32 rule_number; - __u32 subj_trust; - __u32 obj_trust; -}; - -struct fs_error_report { - int error; - struct inode *inode; - struct super_block *sb; -}; - -struct file_range { - const struct path *path; - loff_t pos; - size_t count; -}; - -struct fsnotify_mnt { - const struct mnt_namespace *ns; - u64 mnt_id; -}; - -enum { - FAN_EVENT_INIT = 0, - FAN_EVENT_REPORTED = 1, - FAN_EVENT_ANSWERED = 2, - FAN_EVENT_CANCELED = 3, -}; - -struct fanotify_fh { - u8 type; - u8 len; - u8 flags; - u8 pad; -}; - -struct fanotify_info { - u8 dir_fh_totlen; - u8 dir2_fh_totlen; - u8 file_fh_totlen; - u8 name_len; - u8 name2_len; - u8 pad[3]; - unsigned char buf[0]; -}; - -enum fanotify_event_type { - FANOTIFY_EVENT_TYPE_FID = 0, - FANOTIFY_EVENT_TYPE_FID_NAME = 1, - FANOTIFY_EVENT_TYPE_PATH = 2, - FANOTIFY_EVENT_TYPE_PATH_PERM = 3, - FANOTIFY_EVENT_TYPE_OVERFLOW = 4, - FANOTIFY_EVENT_TYPE_FS_ERROR = 5, - FANOTIFY_EVENT_TYPE_MNT = 6, - __FANOTIFY_EVENT_TYPE_NUM = 7, -}; - -struct fanotify_event { - struct fsnotify_event fse; - struct hlist_node merge_list; - u32 mask; - struct { - unsigned int type: 3; - unsigned int hash: 29; - }; - struct pid *pid; -}; - -struct fanotify_fid_event { - struct fanotify_event fae; - __kernel_fsid_t fsid; - struct { - struct fanotify_fh object_fh; - unsigned char _inline_fh_buf[12]; - }; -}; - -struct fanotify_name_event { - struct fanotify_event fae; - __kernel_fsid_t fsid; - struct fanotify_info info; -}; - -struct fanotify_error_event { - struct fanotify_event fae; - s32 error; - u32 err_count; - __kernel_fsid_t fsid; - struct { - struct fanotify_fh object_fh; - unsigned char _inline_fh_buf[128]; - }; -}; - -struct fanotify_path_event { - struct fanotify_event fae; - struct path path; -}; - -struct fanotify_mnt_event { - struct fanotify_event fae; - u64 mnt_id; -}; - -struct fanotify_perm_event { - struct fanotify_event fae; - struct path path; - const loff_t *ppos; - size_t count; - u32 response; - short unsigned int state; - int fd; - union { - struct fanotify_response_info_header hdr; - struct fanotify_response_info_audit_rule audit_rule; - }; -}; - -struct fanotify_mark { - struct fsnotify_mark fsn_mark; - __kernel_fsid_t fsid; -}; - -struct __kernel_itimerspec { - struct __kernel_timespec it_interval; - struct __kernel_timespec it_value; -}; - -struct old_itimerspec32 { - struct old_timespec32 it_interval; - struct old_timespec32 it_value; -}; - -struct timerfd_ctx { - union { - struct hrtimer tmr; - struct alarm alarm; - } t; - ktime_t tintv; - ktime_t moffs; - wait_queue_head_t wqh; - u64 ticks; - int clockid; - short unsigned int expired; - short unsigned int settime_flags; - struct callback_head rcu; - struct list_head clist; - spinlock_t cancel_lock; - bool might_cancel; -}; - -struct wait_bit_key { - long unsigned int *flags; - int bit_nr; - long unsigned int timeout; -}; - -struct wait_bit_queue_entry { - struct wait_bit_key key; - struct wait_queue_entry wq_entry; -}; - -enum dax_access_mode { - DAX_ACCESS = 0, - DAX_RECOVERY_WRITE = 1, -}; - -struct dax_device; - -struct iomap { - u64 addr; - loff_t offset; - u64 length; - u16 type; - u16 flags; - struct block_device *bdev; - struct dax_device *dax_dev; - void *inline_data; - void *private; - u64 validity_cookie; -}; - -struct iomap_iter { - struct inode *inode; - loff_t pos; - u64 len; - loff_t iter_start_pos; - int status; - unsigned int flags; - struct iomap iomap; - struct iomap srcmap; - void *private; -}; - -struct iomap_ops { - int (*iomap_begin)(struct inode *, loff_t, loff_t, unsigned int, struct iomap *, struct iomap *); - int (*iomap_end)(struct inode *, loff_t, loff_t, ssize_t, unsigned int, struct iomap *); -}; - -struct trace_event_raw_dax_pmd_fault_class { - struct trace_entry ent; - long unsigned int ino; - long unsigned int vm_start; - long unsigned int vm_end; - vm_flags_t vm_flags; - long unsigned int address; - long unsigned int pgoff; - long unsigned int max_pgoff; - dev_t dev; - unsigned int flags; - int result; - char __data[0]; -}; - -struct trace_event_raw_dax_pmd_load_hole_class { - struct trace_entry ent; - long unsigned int ino; - vm_flags_t vm_flags; - long unsigned int address; - struct folio *zero_folio; - void *radix_entry; - dev_t dev; - char __data[0]; -}; - -struct trace_event_raw_dax_pte_fault_class { - struct trace_entry ent; - long unsigned int ino; - vm_flags_t vm_flags; - long unsigned int address; - long unsigned int pgoff; - dev_t dev; - unsigned int flags; - int result; - char __data[0]; -}; - -struct trace_event_raw_dax_writeback_range_class { - struct trace_entry ent; - long unsigned int ino; - long unsigned int start_index; - long unsigned int end_index; - dev_t dev; - char __data[0]; -}; - -struct trace_event_raw_dax_writeback_one { - struct trace_entry ent; - long unsigned int ino; - long unsigned int pgoff; - long unsigned int pglen; - dev_t dev; - char __data[0]; -}; - -struct trace_event_data_offsets_dax_pmd_fault_class {}; - -struct trace_event_data_offsets_dax_pmd_load_hole_class {}; - -struct trace_event_data_offsets_dax_pte_fault_class {}; - -struct trace_event_data_offsets_dax_writeback_range_class {}; - -struct trace_event_data_offsets_dax_writeback_one {}; - -typedef void (*btf_trace_dax_pmd_fault)(void *, struct inode *, struct vm_fault *, long unsigned int, int); - -typedef void (*btf_trace_dax_pmd_fault_done)(void *, struct inode *, struct vm_fault *, long unsigned int, int); - -typedef void (*btf_trace_dax_pmd_load_hole)(void *, struct inode *, struct vm_fault *, struct folio *, void *); - -typedef void (*btf_trace_dax_pmd_load_hole_fallback)(void *, struct inode *, struct vm_fault *, struct folio *, void *); - -typedef void (*btf_trace_dax_pte_fault)(void *, struct inode *, struct vm_fault *, int); - -typedef void (*btf_trace_dax_pte_fault_done)(void *, struct inode *, struct vm_fault *, int); - -typedef void (*btf_trace_dax_load_hole)(void *, struct inode *, struct vm_fault *, int); - -typedef void (*btf_trace_dax_insert_pfn_mkwrite_no_entry)(void *, struct inode *, struct vm_fault *, int); - -typedef void (*btf_trace_dax_insert_pfn_mkwrite)(void *, struct inode *, struct vm_fault *, int); - -typedef void (*btf_trace_dax_writeback_range)(void *, struct inode *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_dax_writeback_range_done)(void *, struct inode *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_dax_writeback_one)(void *, struct inode *, long unsigned int, long unsigned int); - -struct exceptional_entry_key { - struct xarray *xa; - long unsigned int entry_start; -}; - -struct wait_exceptional_entry_queue { - wait_queue_entry_t wait; - struct exceptional_entry_key key; -}; - -enum dax_wake_mode { - WAKE_ALL = 0, - WAKE_NEXT = 1, -}; - -typedef void (*crypto_completion_t)(void *, int); - -struct crypto_tfm; - -struct crypto_async_request { - struct list_head list; - crypto_completion_t complete; - void *data; - struct crypto_tfm *tfm; - u32 flags; -}; - -struct crypto_alg; - -struct crypto_tfm { - refcount_t refcnt; - u32 crt_flags; - int node; - struct crypto_tfm *fb; - void (*exit)(struct crypto_tfm *); - struct crypto_alg *__crt_alg; - void *__crt_ctx[0]; -}; - -struct cipher_alg { - unsigned int cia_min_keysize; - unsigned int cia_max_keysize; - int (*cia_setkey)(struct crypto_tfm *, const u8 *, unsigned int); - void (*cia_encrypt)(struct crypto_tfm *, u8 *, const u8 *); - void (*cia_decrypt)(struct crypto_tfm *, u8 *, const u8 *); -}; - -struct crypto_type; - -struct crypto_alg { - struct list_head cra_list; - struct list_head cra_users; - u32 cra_flags; - unsigned int cra_blocksize; - unsigned int cra_ctxsize; - unsigned int cra_alignmask; - unsigned int cra_reqsize; - int cra_priority; - refcount_t cra_refcnt; - char cra_name[128]; - char cra_driver_name[128]; - const struct crypto_type *cra_type; - union { - struct cipher_alg cipher; - } cra_u; - int (*cra_init)(struct crypto_tfm *); - void (*cra_exit)(struct crypto_tfm *); - void (*cra_destroy)(struct crypto_alg *); - struct module *cra_module; -}; - -struct crypto_instance; - -struct crypto_type { - unsigned int (*ctxsize)(struct crypto_alg *, u32, u32); - unsigned int (*extsize)(struct crypto_alg *); - int (*init_tfm)(struct crypto_tfm *); - void (*show)(struct seq_file *, struct crypto_alg *); - int (*report)(struct sk_buff *, struct crypto_alg *); - void (*free)(struct crypto_instance *); - void (*destroy)(struct crypto_alg *); - unsigned int type; - unsigned int maskclear; - unsigned int maskset; - unsigned int tfmsize; - unsigned int algsize; -}; - -struct skcipher_request { - unsigned int cryptlen; - u8 *iv; - struct scatterlist *src; - struct scatterlist *dst; - struct crypto_async_request base; - void *__ctx[0]; -}; - -struct crypto_skcipher { - unsigned int reqsize; - struct crypto_tfm base; -}; - -struct crypto_sync_skcipher { - struct crypto_skcipher base; -}; - -struct blk_crypto_key; - -struct fscrypt_prepared_key { - struct crypto_sync_skcipher *tfm; - struct blk_crypto_key *blk_key; -}; - -struct fscrypt_mode; - -struct fscrypt_master_key; - -struct fscrypt_direct_key; - -struct fscrypt_inode_info { - struct fscrypt_prepared_key ci_enc_key; - u8 ci_owns_key: 1; - u8 ci_inlinecrypt: 1; - u8 ci_dirhash_key_initialized: 1; - u8 ci_data_unit_bits; - u8 ci_data_units_per_block_bits; - u32 ci_hashed_ino; - struct fscrypt_mode *ci_mode; - struct inode *ci_inode; - struct fscrypt_master_key *ci_master_key; - struct list_head ci_master_key_link; - struct fscrypt_direct_key *ci_direct_key; - siphash_key_t ci_dirhash_key; - union fscrypt_policy ci_policy; - u8 ci_nonce[16]; -}; - -struct fscrypt_key { - __u32 mode; - __u8 raw[64]; - __u32 size; -}; - -struct fscrypt_key_specifier { - __u32 type; - __u32 __reserved; - union { - __u8 __reserved[32]; - __u8 descriptor[8]; - __u8 identifier[16]; - } u; -}; - -struct crypto_shash { - struct crypto_tfm base; -}; - -enum blk_crypto_mode_num { - BLK_ENCRYPTION_MODE_INVALID = 0, - BLK_ENCRYPTION_MODE_AES_256_XTS = 1, - BLK_ENCRYPTION_MODE_AES_128_CBC_ESSIV = 2, - BLK_ENCRYPTION_MODE_ADIANTUM = 3, - BLK_ENCRYPTION_MODE_SM4_XTS = 4, - BLK_ENCRYPTION_MODE_MAX = 5, -}; - -enum blk_crypto_key_type { - BLK_CRYPTO_KEY_TYPE_RAW = 1, - BLK_CRYPTO_KEY_TYPE_HW_WRAPPED = 2, -}; - -struct blk_crypto_config { - enum blk_crypto_mode_num crypto_mode; - unsigned int data_unit_size; - unsigned int dun_bytes; - enum blk_crypto_key_type key_type; -}; - -struct blk_crypto_key { - struct blk_crypto_config crypto_cfg; - unsigned int data_unit_size_bits; - unsigned int size; - u8 bytes[128]; -}; - -struct bio_crypt_ctx { - const struct blk_crypto_key *bc_key; - u64 bc_dun[4]; -}; - -struct fscrypt_mode { - const char *friendly_name; - const char *cipher_str; - int keysize; - int security_strength; - int ivsize; - int logged_cryptoapi_impl; - int logged_blk_crypto_native; - int logged_blk_crypto_fallback; - enum blk_crypto_mode_num blk_crypto_mode; -}; - -struct fscrypt_hkdf { - struct crypto_shash *hmac_tfm; -}; - -struct fscrypt_master_key_secret { - struct fscrypt_hkdf hkdf; - bool is_hw_wrapped; - u32 size; - u8 bytes[128]; -}; - -struct fscrypt_master_key { - struct hlist_node mk_node; - struct rw_semaphore mk_sem; - refcount_t mk_active_refs; - refcount_t mk_struct_refs; - struct callback_head mk_rcu_head; - struct fscrypt_master_key_secret mk_secret; - struct fscrypt_key_specifier mk_spec; - struct key *mk_users; - struct list_head mk_decrypted_inodes; - spinlock_t mk_decrypted_inodes_lock; - struct fscrypt_prepared_key mk_direct_keys[11]; - struct fscrypt_prepared_key mk_iv_ino_lblk_64_keys[11]; - struct fscrypt_prepared_key mk_iv_ino_lblk_32_keys[11]; - siphash_key_t mk_ino_hash_key; - bool mk_ino_hash_key_initialized; - bool mk_present; -}; - -struct fscrypt_direct_key { - struct super_block *dk_sb; - struct hlist_node dk_node; - refcount_t dk_refcount; - const struct fscrypt_mode *dk_mode; - struct fscrypt_prepared_key dk_key; - u8 dk_descriptor[8]; - u8 dk_raw[64]; -}; - -typedef __u32 __le32; - -typedef __u64 __le64; - -struct fsverity_hash_alg; - -union fsverity_hash_ctx; - -struct merkle_tree_params { - const struct fsverity_hash_alg *hash_alg; - const union fsverity_hash_ctx *hashstate; - unsigned int digest_size; - unsigned int block_size; - unsigned int hashes_per_block; - unsigned int blocks_per_page; - u8 log_digestsize; - u8 log_blocksize; - u8 log_arity; - u8 log_blocks_per_page; - unsigned int num_levels; - u64 tree_size; - long unsigned int tree_pages; - long unsigned int level_start[8]; -}; - -struct fsverity_info { - struct merkle_tree_params tree_params; - u8 root_hash[64]; - u8 file_digest[64]; - const struct inode *inode; - long unsigned int *hash_block_verified; -}; - -struct sha512_block_state { - u64 h[8]; -}; - -struct __sha512_ctx { - struct sha512_block_state state; - u64 bytecount_lo; - u64 bytecount_hi; - u8 buf[128]; -}; - -struct sha512_ctx { - struct __sha512_ctx ctx; -}; - -struct fsverity_enable_arg { - __u32 version; - __u32 hash_algorithm; - __u32 block_size; - __u32 salt_size; - __u64 salt_ptr; - __u32 sig_size; - __u32 __reserved1; - __u64 sig_ptr; - __u64 __reserved2[11]; -}; - -struct fsverity_descriptor { - __u8 version; - __u8 hash_algorithm; - __u8 log_blocksize; - __u8 salt_size; - __le32 sig_size; - __le64 data_size; - __u8 root_hash[64]; - __u8 salt[32]; - __u8 __reserved[144]; - __u8 signature[0]; -}; - -struct fsverity_hash_alg { - const char *name; - unsigned int digest_size; - unsigned int block_size; - enum hash_algo algo_id; -}; - -union fsverity_hash_ctx { - struct sha256_ctx sha256; - struct sha512_ctx sha512; -}; - -struct block_buffer { - u32 filled; - bool is_root_hash; - u8 *data; -}; - -typedef __u16 __le16; - -struct fsverity_formatted_digest { - char magic[8]; - __le16 digest_algorithm; - __le16 digest_size; - __u8 digest[0]; -}; - -struct backing_file_ctx { - const struct cred *cred; - void (*accessed)(struct file *); - void (*end_write)(struct kiocb *, ssize_t); -}; - -struct backing_aio { - struct kiocb iocb; - refcount_t ref; - struct kiocb *orig_iocb; - void (*end_write)(struct kiocb *, ssize_t); - struct work_struct work; - long int res; -}; - -struct posix_acl_hdr { - refcount_t a_refcount; - unsigned int a_count; - struct callback_head a_rcu; -}; - -struct posix_acl_entry { - short int e_tag; - short unsigned int e_perm; - union { - kuid_t e_uid; - kgid_t e_gid; - }; -}; - -struct posix_acl { - union { - struct { - refcount_t a_refcount; - unsigned int a_count; - struct callback_head a_rcu; - }; - struct posix_acl_hdr hdr; - }; - struct posix_acl_entry a_entries[0]; -}; - -struct posix_acl_xattr_entry { - __le16 e_tag; - __le16 e_perm; - __le32 e_id; -}; - -struct posix_acl_xattr_header { - __le32 a_version; -}; - -enum { - BIO_PAGE_PINNED = 0, - BIO_CLONED = 1, - BIO_QUIET = 2, - BIO_CHAIN = 3, - BIO_REFFED = 4, - BIO_BPS_THROTTLED = 5, - BIO_TRACE_COMPLETION = 6, - BIO_CGROUP_ACCT = 7, - BIO_QOS_THROTTLED = 8, - BIO_TG_BPS_THROTTLED = 8, - BIO_QOS_MERGED = 9, - BIO_REMAPPED = 10, - BIO_ZONE_WRITE_PLUGGING = 11, - BIO_EMULATES_ZONE_APPEND = 12, - BIO_FLAG_LAST = 13, -}; - -enum req_op { - REQ_OP_READ = 0, - REQ_OP_WRITE = 1, - REQ_OP_FLUSH = 2, - REQ_OP_DISCARD = 3, - REQ_OP_SECURE_ERASE = 5, - REQ_OP_ZONE_APPEND = 7, - REQ_OP_WRITE_ZEROES = 9, - REQ_OP_ZONE_OPEN = 11, - REQ_OP_ZONE_CLOSE = 13, - REQ_OP_ZONE_FINISH = 15, - REQ_OP_ZONE_RESET = 17, - REQ_OP_ZONE_RESET_ALL = 19, - REQ_OP_DRV_IN = 34, - REQ_OP_DRV_OUT = 35, - REQ_OP_LAST = 36, -}; - -enum req_flag_bits { - __REQ_FAILFAST_DEV = 8, - __REQ_FAILFAST_TRANSPORT = 9, - __REQ_FAILFAST_DRIVER = 10, - __REQ_SYNC = 11, - __REQ_META = 12, - __REQ_PRIO = 13, - __REQ_NOMERGE = 14, - __REQ_IDLE = 15, - __REQ_INTEGRITY = 16, - __REQ_FUA = 17, - __REQ_PREFLUSH = 18, - __REQ_RAHEAD = 19, - __REQ_BACKGROUND = 20, - __REQ_NOWAIT = 21, - __REQ_POLLED = 22, - __REQ_ALLOC_CACHE = 23, - __REQ_SWAP = 24, - __REQ_DRV = 25, - __REQ_FS_PRIVATE = 26, - __REQ_ATOMIC = 27, - __REQ_P2PDMA = 28, - __REQ_NOUNMAP = 29, - __REQ_NR_BITS = 30, -}; - -struct iomap_ioend { - struct list_head io_list; - u16 io_flags; - struct inode *io_inode; - size_t io_size; - atomic_t io_remaining; - int io_error; - struct iomap_ioend *io_parent; - loff_t io_offset; - sector_t io_sector; - void *io_private; - struct bio io_bio; -}; - -struct iomap_dio_ops { - int (*end_io)(struct kiocb *, ssize_t, int, unsigned int); - void (*submit_io)(const struct iomap_iter *, struct bio *, loff_t); - struct bio_set *bio_set; -}; - -struct iomap_dio { - struct kiocb *iocb; - const struct iomap_dio_ops *dops; - loff_t i_size; - loff_t size; - atomic_t ref; - unsigned int flags; - int error; - size_t done_before; - bool wait_for_completion; - union { - struct { - struct iov_iter *iter; - struct task_struct *waiter; - } submit; - struct { - struct work_struct work; - } aio; - }; -}; - -struct fiemap_extent; - -struct fiemap_extent_info { - unsigned int fi_flags; - unsigned int fi_extents_mapped; - unsigned int fi_extents_max; - struct fiemap_extent *fi_extents_start; -}; - -struct fiemap_extent { - __u64 fe_logical; - __u64 fe_physical; - __u64 fe_length; - __u64 fe_reserved64[2]; - __u32 fe_flags; - __u32 fe_reserved[3]; -}; - -enum { - QIF_BLIMITS_B = 0, - QIF_SPACE_B = 1, - QIF_ILIMITS_B = 2, - QIF_INODES_B = 3, - QIF_BTIME_B = 4, - QIF_ITIME_B = 5, -}; - -typedef __kernel_uid32_t qid_t; - -enum { - DQF_INFO_DIRTY_B = 17, -}; - -struct dqstats { - long unsigned int stat[8]; - struct percpu_counter counter[8]; -}; - -enum { - _DQUOT_USAGE_ENABLED = 0, - _DQUOT_LIMITS_ENABLED = 1, - _DQUOT_SUSPENDED = 2, - _DQUOT_STATE_FLAGS = 3, -}; - -struct quota_module_name { - int qm_fmt_id; - char *qm_mod_name; -}; - -struct dquot_warn { - struct super_block *w_sb; - struct kqid w_dq_id; - short int w_type; -}; - -enum procfs_ino { - PROCFS_ROOT_INO = 1, -}; - -struct proc_fs_context { - struct pid_namespace *pid_ns; - unsigned int mask; - enum proc_hidepid hidepid; - int gid; - enum proc_pidonly pidonly; -}; - -enum proc_param { - Opt_gid = 0, - Opt_hidepid = 1, - Opt_subset = 2, -}; - -struct kernel_cpustat { - u64 cpustat[11]; -}; - -typedef int (*parse_unknown_fn)(char *, char *, const char *, void *); - -enum { - NEIGH_ARP_TABLE = 0, - NEIGH_ND_TABLE = 1, - NEIGH_NR_TABLES = 2, - NEIGH_LINK_TABLE = 2, -}; - -enum { - NAPI_STATE_SCHED = 0, - NAPI_STATE_MISSED = 1, - NAPI_STATE_DISABLE = 2, - NAPI_STATE_NPSVC = 3, - NAPI_STATE_LISTED = 4, - NAPI_STATE_NO_BUSY_POLL = 5, - NAPI_STATE_IN_BUSY_POLL = 6, - NAPI_STATE_PREFER_BUSY_POLL = 7, - NAPI_STATE_THREADED = 8, - NAPI_STATE_SCHED_THREADED = 9, - NAPI_STATE_HAS_NOTIFIER = 10, -}; - -enum xps_map_type { - XPS_CPUS = 0, - XPS_RXQS = 1, - XPS_MAPS_MAX = 2, -}; - -enum bpf_xdp_mode { - XDP_MODE_SKB = 0, - XDP_MODE_DRV = 1, - XDP_MODE_HW = 2, - __MAX_XDP_MODE = 3, -}; - -enum { - NETIF_MSG_DRV_BIT = 0, - NETIF_MSG_PROBE_BIT = 1, - NETIF_MSG_LINK_BIT = 2, - NETIF_MSG_TIMER_BIT = 3, - NETIF_MSG_IFDOWN_BIT = 4, - NETIF_MSG_IFUP_BIT = 5, - NETIF_MSG_RX_ERR_BIT = 6, - NETIF_MSG_TX_ERR_BIT = 7, - NETIF_MSG_TX_QUEUED_BIT = 8, - NETIF_MSG_INTR_BIT = 9, - NETIF_MSG_TX_DONE_BIT = 10, - NETIF_MSG_RX_STATUS_BIT = 11, - NETIF_MSG_PKTDATA_BIT = 12, - NETIF_MSG_HW_BIT = 13, - NETIF_MSG_WOL_BIT = 14, - NETIF_MSG_CLASS_COUNT = 15, -}; - -struct sysctl_alias { - const char *kernel_param; - const char *sysctl_param; -}; - -enum kernfs_node_type { - KERNFS_DIR = 1, - KERNFS_FILE = 2, - KERNFS_LINK = 4, -}; - -enum kernfs_node_flag { - KERNFS_ACTIVATED = 16, - KERNFS_NS = 32, - KERNFS_HAS_SEQ_SHOW = 64, - KERNFS_HAS_MMAP = 128, - KERNFS_LOCKDEP = 256, - KERNFS_HIDDEN = 512, - KERNFS_SUICIDAL = 1024, - KERNFS_SUICIDED = 2048, - KERNFS_EMPTY_DIR = 4096, - KERNFS_HAS_RELEASE = 8192, - KERNFS_REMOVING = 16384, -}; - -enum kernfs_root_flag { - KERNFS_ROOT_CREATE_DEACTIVATED = 1, - KERNFS_ROOT_EXTRA_OPEN_PERM_CHECK = 2, - KERNFS_ROOT_SUPPORT_EXPORTOP = 4, - KERNFS_ROOT_SUPPORT_USER_XATTR = 8, - KERNFS_ROOT_INVARIANT_PARENT = 16, -}; - -struct kernfs_syscall_ops; - -struct kernfs_root { - struct kernfs_node *kn; - unsigned int flags; - struct idr ino_idr; - spinlock_t kernfs_idr_lock; - u32 last_id_lowbits; - u32 id_highbits; - struct kernfs_syscall_ops *syscall_ops; - struct list_head supers; - wait_queue_head_t deactivate_waitq; - struct rw_semaphore kernfs_rwsem; - struct rw_semaphore kernfs_iattr_rwsem; - struct rw_semaphore kernfs_supers_rwsem; - rwlock_t kernfs_rename_lock; - struct callback_head rcu; -}; - -struct kernfs_iattrs { - kuid_t ia_uid; - kgid_t ia_gid; - struct timespec64 ia_atime; - struct timespec64 ia_mtime; - struct timespec64 ia_ctime; - struct simple_xattrs xattrs; - atomic_t nr_user_xattrs; - atomic_t user_xattr_size; -}; - -struct kernfs_syscall_ops { - int (*show_options)(struct seq_file *, struct kernfs_root *); - int (*mkdir)(struct kernfs_node *, const char *, umode_t); - int (*rmdir)(struct kernfs_node *); - int (*rename)(struct kernfs_node *, struct kernfs_node *, const char *); - int (*show_path)(struct seq_file *, struct kernfs_node *, struct kernfs_root *); -}; - -struct kernfs_fs_context { - struct kernfs_root *root; - void *ns_tag; - long unsigned int magic; - bool new_sb_created; -}; - -struct module_version_attribute { - struct module_attribute mattr; - const char *module_name; - const char *version; -}; - -struct configfs_fragment { - atomic_t frag_count; - struct rw_semaphore frag_sem; - bool frag_dead; -}; - -struct configfs_dirent { - atomic_t s_count; - int s_dependent_count; - struct list_head s_sibling; - struct list_head s_children; - int s_links; - void *s_element; - int s_type; - umode_t s_mode; - struct dentry *s_dentry; - struct iattr *s_iattr; - struct configfs_fragment *s_frag; -}; - -typedef unsigned int tid_t; - -struct transaction_chp_stats_s { - long unsigned int cs_chp_time; - __u32 cs_forced_to_close; - __u32 cs_written; - __u32 cs_dropped; -}; - -struct journal_s; - -typedef struct journal_s journal_t; - -struct journal_head; - -struct transaction_s; - -typedef struct transaction_s transaction_t; - -struct transaction_s { - journal_t *t_journal; - tid_t t_tid; - enum { - T_RUNNING = 0, - T_LOCKED = 1, - T_SWITCH = 2, - T_FLUSH = 3, - T_COMMIT = 4, - T_COMMIT_DFLUSH = 5, - T_COMMIT_JFLUSH = 6, - T_COMMIT_CALLBACK = 7, - T_FINISHED = 8, - } t_state; - long unsigned int t_log_start; - int t_nr_buffers; - struct journal_head *t_reserved_list; - struct journal_head *t_buffers; - struct journal_head *t_forget; - struct journal_head *t_checkpoint_list; - struct journal_head *t_shadow_list; - struct list_head t_inode_list; - long unsigned int t_max_wait; - long unsigned int t_start; - long unsigned int t_requested; - struct transaction_chp_stats_s t_chp_stats; - atomic_t t_updates; - atomic_t t_outstanding_credits; - atomic_t t_outstanding_revokes; - atomic_t t_handle_count; - transaction_t *t_cpnext; - transaction_t *t_cpprev; - long unsigned int t_expires; - ktime_t t_start_time; - unsigned int t_synchronous_commit: 1; - int t_need_data_flush; -}; - -struct jbd2_buffer_trigger_type; - -struct journal_head { - struct buffer_head *b_bh; - spinlock_t b_state_lock; - int b_jcount; - unsigned int b_jlist; - unsigned int b_modified; - char *b_frozen_data; - char *b_committed_data; - transaction_t *b_transaction; - transaction_t *b_next_transaction; - struct journal_head *b_tnext; - struct journal_head *b_tprev; - transaction_t *b_cp_transaction; - struct journal_head *b_cpnext; - struct journal_head *b_cpprev; - struct jbd2_buffer_trigger_type *b_triggers; - struct jbd2_buffer_trigger_type *b_frozen_triggers; -}; - -struct jbd2_buffer_trigger_type { - void (*t_frozen)(struct jbd2_buffer_trigger_type *, struct buffer_head *, void *, size_t); - void (*t_abort)(struct jbd2_buffer_trigger_type *, struct buffer_head *); -}; - -struct jbd2_journal_handle; - -typedef struct jbd2_journal_handle handle_t; - -struct jbd2_journal_handle { - union { - transaction_t *h_transaction; - journal_t *h_journal; - }; - handle_t *h_rsv_handle; - int h_total_credits; - int h_revoke_credits; - int h_revoke_credits_requested; - int h_ref; - int h_err; - unsigned int h_sync: 1; - unsigned int h_reserved: 1; - unsigned int h_aborted: 1; - unsigned int h_type: 8; - unsigned int h_line_no: 16; - long unsigned int h_start_jiffies; - unsigned int h_requested_credits; - unsigned int saved_alloc_context; -}; - -struct transaction_run_stats_s { - long unsigned int rs_wait; - long unsigned int rs_request_delay; - long unsigned int rs_running; - long unsigned int rs_locked; - long unsigned int rs_flushing; - long unsigned int rs_logging; - __u32 rs_handle_count; - __u32 rs_blocks; - __u32 rs_blocks_logged; -}; - -struct transaction_stats_s { - long unsigned int ts_tid; - long unsigned int ts_requested; - struct transaction_run_stats_s run; -}; - -enum passtype { - PASS_SCAN = 0, - PASS_REVOKE = 1, - PASS_REPLAY = 2, -}; - -struct journal_superblock_s; - -typedef struct journal_superblock_s journal_superblock_t; - -struct jbd2_revoke_table_s; - -struct jbd2_inode; - -struct journal_s { - long unsigned int j_flags; - int j_errno; - struct mutex j_abort_mutex; - struct buffer_head *j_sb_buffer; - journal_superblock_t *j_superblock; - rwlock_t j_state_lock; - int j_barrier_count; - struct mutex j_barrier; - transaction_t *j_running_transaction; - transaction_t *j_committing_transaction; - transaction_t *j_checkpoint_transactions; - wait_queue_head_t j_wait_transaction_locked; - wait_queue_head_t j_wait_done_commit; - wait_queue_head_t j_wait_commit; - wait_queue_head_t j_wait_updates; - wait_queue_head_t j_wait_reserved; - wait_queue_head_t j_fc_wait; - struct mutex j_checkpoint_mutex; - struct buffer_head *j_chkpt_bhs[64]; - struct shrinker *j_shrinker; - struct percpu_counter j_checkpoint_jh_count; - transaction_t *j_shrink_transaction; - long unsigned int j_head; - long unsigned int j_tail; - long unsigned int j_free; - long unsigned int j_first; - long unsigned int j_last; - long unsigned int j_fc_first; - long unsigned int j_fc_off; - long unsigned int j_fc_last; - struct block_device *j_dev; - int j_blocksize; - long long unsigned int j_blk_offset; - char j_devname[56]; - struct block_device *j_fs_dev; - errseq_t j_fs_dev_wb_err; - unsigned int j_total_len; - atomic_t j_reserved_credits; - spinlock_t j_list_lock; - struct inode *j_inode; - tid_t j_tail_sequence; - tid_t j_transaction_sequence; - tid_t j_commit_sequence; - tid_t j_commit_request; - __u8 j_uuid[16]; - struct task_struct *j_task; - int j_max_transaction_buffers; - int j_revoke_records_per_block; - int j_transaction_overhead_buffers; - long unsigned int j_commit_interval; - struct timer_list j_commit_timer; - spinlock_t j_revoke_lock; - struct jbd2_revoke_table_s *j_revoke; - struct jbd2_revoke_table_s *j_revoke_table[2]; - struct buffer_head **j_wbuf; - struct buffer_head **j_fc_wbuf; - int j_wbufsize; - int j_fc_wbufsize; - pid_t j_last_sync_writer; - u64 j_average_commit_time; - u32 j_min_batch_time; - u32 j_max_batch_time; - void (*j_commit_callback)(journal_t *, transaction_t *); - int (*j_submit_inode_data_buffers)(struct jbd2_inode *); - int (*j_finish_inode_data_buffers)(struct jbd2_inode *); - spinlock_t j_history_lock; - struct proc_dir_entry *j_proc_entry; - struct transaction_stats_s j_stats; - unsigned int j_failed_commit; - void *j_private; - __u32 j_csum_seed; - struct lock_class_key jbd2_trans_commit_key; - void (*j_fc_cleanup_callback)(struct journal_s *, int, tid_t); - int (*j_fc_replay_callback)(struct journal_s *, struct buffer_head *, enum passtype, int, tid_t); - int (*j_bmap)(struct journal_s *, sector_t *); -}; - -struct journal_header_s { - __be32 h_magic; - __be32 h_blocktype; - __be32 h_sequence; -}; - -typedef struct journal_header_s journal_header_t; - -struct journal_superblock_s { - journal_header_t s_header; - __be32 s_blocksize; - __be32 s_maxlen; - __be32 s_first; - __be32 s_sequence; - __be32 s_start; - __be32 s_errno; - __be32 s_feature_compat; - __be32 s_feature_incompat; - __be32 s_feature_ro_compat; - __u8 s_uuid[16]; - __be32 s_nr_users; - __be32 s_dynsuper; - __be32 s_max_transaction; - __be32 s_max_trans_data; - __u8 s_checksum_type; - __u8 s_padding2[3]; - __be32 s_num_fc_blks; - __be32 s_head; - __u32 s_padding[40]; - __be32 s_checksum; - __u8 s_users[768]; -}; - -struct jbd2_inode { - transaction_t *i_transaction; - transaction_t *i_next_transaction; - struct list_head i_list; - struct inode *i_vfs_inode; - long unsigned int i_flags; - loff_t i_dirty_start; - loff_t i_dirty_end; -}; - -struct bgl_lock { - spinlock_t lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct blockgroup_lock { - struct bgl_lock locks[128]; -}; - -struct fscrypt_dummy_policy { - const union fscrypt_policy *policy; -}; - -typedef int ext4_grpblk_t; - -typedef long long unsigned int ext4_fsblk_t; - -typedef __u32 ext4_lblk_t; - -typedef unsigned int ext4_group_t; - -struct ext4_map_blocks { - ext4_fsblk_t m_pblk; - ext4_lblk_t m_lblk; - unsigned int m_len; - unsigned int m_flags; -}; - -struct ext4_system_blocks { - struct rb_root root; - struct callback_head rcu; -}; - -struct ext4_group_desc { - __le32 bg_block_bitmap_lo; - __le32 bg_inode_bitmap_lo; - __le32 bg_inode_table_lo; - __le16 bg_free_blocks_count_lo; - __le16 bg_free_inodes_count_lo; - __le16 bg_used_dirs_count_lo; - __le16 bg_flags; - __le32 bg_exclude_bitmap_lo; - __le16 bg_block_bitmap_csum_lo; - __le16 bg_inode_bitmap_csum_lo; - __le16 bg_itable_unused_lo; - __le16 bg_checksum; - __le32 bg_block_bitmap_hi; - __le32 bg_inode_bitmap_hi; - __le32 bg_inode_table_hi; - __le16 bg_free_blocks_count_hi; - __le16 bg_free_inodes_count_hi; - __le16 bg_used_dirs_count_hi; - __le16 bg_itable_unused_hi; - __le32 bg_exclude_bitmap_hi; - __le16 bg_block_bitmap_csum_hi; - __le16 bg_inode_bitmap_csum_hi; - __u32 bg_reserved; -}; - -struct flex_groups { - atomic64_t free_clusters; - atomic_t free_inodes; - atomic_t used_dirs; -}; - -struct ext4_es_stats { - long unsigned int es_stats_shrunk; - struct percpu_counter es_stats_cache_hits; - struct percpu_counter es_stats_cache_misses; - u64 es_stats_scan_time; - u64 es_stats_max_scan_time; - struct percpu_counter es_stats_all_cnt; - struct percpu_counter es_stats_shk_cnt; -}; - -struct ext4_fc_stats { - unsigned int fc_ineligible_reason_count[10]; - long unsigned int fc_num_commits; - long unsigned int fc_ineligible_commits; - long unsigned int fc_failed_commits; - long unsigned int fc_skipped_commits; - long unsigned int fc_numblks; - u64 s_fc_avg_commit_time; -}; - -struct ext4_fc_alloc_region { - ext4_lblk_t lblk; - ext4_fsblk_t pblk; - int ino; - int len; -}; - -struct ext4_fc_replay_state { - int fc_replay_num_tags; - int fc_replay_expected_off; - int fc_current_pass; - int fc_cur_tag; - int fc_crc; - struct ext4_fc_alloc_region *fc_regions; - int fc_regions_size; - int fc_regions_used; - int fc_regions_valid; - int *fc_modified_inodes; - int fc_modified_inodes_used; - int fc_modified_inodes_size; -}; - -struct ext4_super_block { - __le32 s_inodes_count; - __le32 s_blocks_count_lo; - __le32 s_r_blocks_count_lo; - __le32 s_free_blocks_count_lo; - __le32 s_free_inodes_count; - __le32 s_first_data_block; - __le32 s_log_block_size; - __le32 s_log_cluster_size; - __le32 s_blocks_per_group; - __le32 s_clusters_per_group; - __le32 s_inodes_per_group; - __le32 s_mtime; - __le32 s_wtime; - __le16 s_mnt_count; - __le16 s_max_mnt_count; - __le16 s_magic; - __le16 s_state; - __le16 s_errors; - __le16 s_minor_rev_level; - __le32 s_lastcheck; - __le32 s_checkinterval; - __le32 s_creator_os; - __le32 s_rev_level; - __le16 s_def_resuid; - __le16 s_def_resgid; - __le32 s_first_ino; - __le16 s_inode_size; - __le16 s_block_group_nr; - __le32 s_feature_compat; - __le32 s_feature_incompat; - __le32 s_feature_ro_compat; - __u8 s_uuid[16]; - char s_volume_name[16]; - char s_last_mounted[64]; - __le32 s_algorithm_usage_bitmap; - __u8 s_prealloc_blocks; - __u8 s_prealloc_dir_blocks; - __le16 s_reserved_gdt_blocks; - __u8 s_journal_uuid[16]; - __le32 s_journal_inum; - __le32 s_journal_dev; - __le32 s_last_orphan; - __le32 s_hash_seed[4]; - __u8 s_def_hash_version; - __u8 s_jnl_backup_type; - __le16 s_desc_size; - __le32 s_default_mount_opts; - __le32 s_first_meta_bg; - __le32 s_mkfs_time; - __le32 s_jnl_blocks[17]; - __le32 s_blocks_count_hi; - __le32 s_r_blocks_count_hi; - __le32 s_free_blocks_count_hi; - __le16 s_min_extra_isize; - __le16 s_want_extra_isize; - __le32 s_flags; - __le16 s_raid_stride; - __le16 s_mmp_update_interval; - __le64 s_mmp_block; - __le32 s_raid_stripe_width; - __u8 s_log_groups_per_flex; - __u8 s_checksum_type; - __u8 s_encryption_level; - __u8 s_reserved_pad; - __le64 s_kbytes_written; - __le32 s_snapshot_inum; - __le32 s_snapshot_id; - __le64 s_snapshot_r_blocks_count; - __le32 s_snapshot_list; - __le32 s_error_count; - __le32 s_first_error_time; - __le32 s_first_error_ino; - __le64 s_first_error_block; - __u8 s_first_error_func[32]; - __le32 s_first_error_line; - __le32 s_last_error_time; - __le32 s_last_error_ino; - __le32 s_last_error_line; - __le64 s_last_error_block; - __u8 s_last_error_func[32]; - __u8 s_mount_opts[64]; - __le32 s_usr_quota_inum; - __le32 s_grp_quota_inum; - __le32 s_overhead_clusters; - __le32 s_backup_bgs[2]; - __u8 s_encrypt_algos[4]; - __u8 s_encrypt_pw_salt[16]; - __le32 s_lpf_ino; - __le32 s_prj_quota_inum; - __le32 s_checksum_seed; - __u8 s_wtime_hi; - __u8 s_mtime_hi; - __u8 s_mkfs_time_hi; - __u8 s_lastcheck_hi; - __u8 s_first_error_time_hi; - __u8 s_last_error_time_hi; - __u8 s_first_error_errcode; - __u8 s_last_error_errcode; - __le16 s_encoding; - __le16 s_encoding_flags; - __le32 s_orphan_file_inum; - __le32 s_reserved[94]; - __le32 s_checksum; -}; - -struct ext4_journal_trigger { - struct jbd2_buffer_trigger_type tr_triggers; - struct super_block *sb; -}; - -struct ext4_orphan_block { - atomic_t ob_free_entries; - struct buffer_head *ob_bh; -}; - -struct ext4_orphan_info { - int of_blocks; - __u32 of_csum_seed; - struct ext4_orphan_block *of_binfo; -}; - -struct ext4_group_info; - -struct ext4_locality_group; - -struct ext4_li_request; - -struct mb_cache; - -struct ext4_sb_info { - long unsigned int s_desc_size; - long unsigned int s_inodes_per_block; - long unsigned int s_blocks_per_group; - long unsigned int s_clusters_per_group; - long unsigned int s_inodes_per_group; - long unsigned int s_itb_per_group; - long unsigned int s_gdb_count; - long unsigned int s_desc_per_block; - ext4_group_t s_groups_count; - ext4_group_t s_blockfile_groups; - long unsigned int s_overhead; - unsigned int s_cluster_ratio; - unsigned int s_cluster_bits; - loff_t s_bitmap_maxbytes; - struct buffer_head *s_sbh; - struct ext4_super_block *s_es; - struct buffer_head **s_group_desc; - unsigned int s_mount_opt; - unsigned int s_mount_opt2; - long unsigned int s_mount_flags; - unsigned int s_def_mount_opt; - unsigned int s_def_mount_opt2; - ext4_fsblk_t s_sb_block; - atomic64_t s_resv_clusters; - kuid_t s_resuid; - kgid_t s_resgid; - short unsigned int s_mount_state; - short unsigned int s_pad; - int s_addr_per_block_bits; - int s_desc_per_block_bits; - int s_inode_size; - int s_first_ino; - unsigned int s_inode_readahead_blks; - unsigned int s_inode_goal; - u32 s_hash_seed[4]; - int s_def_hash_version; - int s_hash_unsigned; - struct percpu_counter s_freeclusters_counter; - struct percpu_counter s_freeinodes_counter; - struct percpu_counter s_dirs_counter; - struct percpu_counter s_dirtyclusters_counter; - struct percpu_counter s_sra_exceeded_retry_limit; - struct blockgroup_lock *s_blockgroup_lock; - struct proc_dir_entry *s_proc; - struct kobject s_kobj; - struct completion s_kobj_unregister; - struct super_block *s_sb; - struct buffer_head *s_mmp_bh; - struct journal_s *s_journal; - long unsigned int s_ext4_flags; - struct mutex s_orphan_lock; - struct list_head s_orphan; - struct ext4_orphan_info s_orphan_info; - long unsigned int s_commit_interval; - u32 s_max_batch_time; - u32 s_min_batch_time; - struct file *s_journal_bdev_file; - char *s_qf_names[3]; - int s_jquota_fmt; - unsigned int s_want_extra_isize; - struct ext4_system_blocks *s_system_blks; - struct ext4_group_info ***s_group_info; - struct inode *s_buddy_cache; - spinlock_t s_md_lock; - short unsigned int *s_mb_offsets; - unsigned int *s_mb_maxs; - unsigned int s_group_info_size; - atomic_t s_mb_free_pending; - struct list_head s_freed_data_list[2]; - struct list_head s_discard_list; - struct work_struct s_discard_work; - atomic_t s_retry_alloc_pending; - struct xarray *s_mb_avg_fragment_size; - struct xarray *s_mb_largest_free_orders; - long unsigned int s_stripe; - unsigned int s_mb_max_linear_groups; - unsigned int s_mb_stream_request; - unsigned int s_mb_max_to_scan; - unsigned int s_mb_min_to_scan; - unsigned int s_mb_stats; - unsigned int s_mb_order2_reqs; - unsigned int s_mb_group_prealloc; - unsigned int s_max_dir_size_kb; - unsigned int s_mb_prefetch; - unsigned int s_mb_prefetch_limit; - unsigned int s_mb_best_avail_max_trim_order; - unsigned int s_sb_update_sec; - unsigned int s_sb_update_kb; - ext4_group_t *s_mb_last_groups; - unsigned int s_mb_nr_global_goals; - atomic_t s_bal_reqs; - atomic_t s_bal_success; - atomic_t s_bal_allocated; - atomic_t s_bal_ex_scanned; - atomic_t s_bal_cX_ex_scanned[5]; - atomic_t s_bal_groups_scanned; - atomic_t s_bal_goals; - atomic_t s_bal_stream_goals; - atomic_t s_bal_len_goals; - atomic_t s_bal_breaks; - atomic_t s_bal_2orders; - atomic64_t s_bal_cX_groups_considered[5]; - atomic64_t s_bal_cX_hits[5]; - atomic64_t s_bal_cX_failed[5]; - atomic_t s_mb_buddies_generated; - atomic64_t s_mb_generation_time; - atomic_t s_mb_lost_chunks; - atomic_t s_mb_preallocated; - atomic_t s_mb_discarded; - atomic_t s_lock_busy; - struct ext4_locality_group *s_locality_groups; - long unsigned int s_sectors_written_start; - u64 s_kbytes_written; - unsigned int s_extent_max_zeroout_kb; - unsigned int s_log_groups_per_flex; - struct flex_groups **s_flex_groups; - ext4_group_t s_flex_groups_allocated; - struct workqueue_struct *rsv_conversion_wq; - struct timer_list s_err_report; - struct ext4_li_request *s_li_request; - unsigned int s_li_wait_mult; - struct task_struct *s_mmp_tsk; - long unsigned int s_last_trim_minblks; - __u32 s_csum_seed; - struct shrinker *s_es_shrinker; - struct list_head s_es_list; - long int s_es_nr_inode; - struct ext4_es_stats s_es_stats; - struct mb_cache *s_ea_block_cache; - struct mb_cache *s_ea_inode_cache; - long: 64; - long: 64; - long: 64; - long: 64; - spinlock_t s_es_lock; - struct ext4_journal_trigger s_journal_triggers[1]; - struct ratelimit_state s_err_ratelimit_state; - struct ratelimit_state s_warning_ratelimit_state; - struct ratelimit_state s_msg_ratelimit_state; - atomic_t s_warning_count; - atomic_t s_msg_count; - struct fscrypt_dummy_policy s_dummy_enc_policy; - struct percpu_rw_semaphore s_writepages_rwsem; - struct dax_device *s_daxdev; - u64 s_dax_part_off; - errseq_t s_bdev_wb_err; - spinlock_t s_bdev_wb_lock; - spinlock_t s_error_lock; - int s_add_error_count; - int s_first_error_code; - __u32 s_first_error_line; - __u32 s_first_error_ino; - __u64 s_first_error_block; - const char *s_first_error_func; - time64_t s_first_error_time; - int s_last_error_code; - __u32 s_last_error_line; - __u32 s_last_error_ino; - __u64 s_last_error_block; - const char *s_last_error_func; - time64_t s_last_error_time; - struct work_struct s_sb_upd_work; - unsigned int s_awu_min; - unsigned int s_awu_max; - atomic_t s_fc_subtid; - struct list_head s_fc_q[2]; - struct list_head s_fc_dentry_q[2]; - unsigned int s_fc_bytes; - struct mutex s_fc_lock; - struct buffer_head *s_fc_bh; - struct ext4_fc_stats s_fc_stats; - tid_t s_fc_ineligible_tid; - struct ext4_fc_replay_state s_fc_replay_state; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct ext4_group_info { - long unsigned int bb_state; - struct rb_root bb_free_root; - ext4_grpblk_t bb_first_free; - ext4_grpblk_t bb_free; - ext4_grpblk_t bb_fragments; - int bb_avg_fragment_size_order; - ext4_grpblk_t bb_largest_free_order; - ext4_group_t bb_group; - struct list_head bb_prealloc_list; - struct rw_semaphore alloc_sem; - ext4_grpblk_t bb_counters[0]; -}; - -enum ext4_li_mode { - EXT4_LI_MODE_PREFETCH_BBITMAP = 0, - EXT4_LI_MODE_ITABLE = 1, -}; - -struct ext4_li_request { - struct super_block *lr_super; - enum ext4_li_mode lr_mode; - ext4_group_t lr_first_not_zeroed; - ext4_group_t lr_next_group; - struct list_head lr_request; - long unsigned int lr_next_sched; - long unsigned int lr_timeout; -}; - -typedef enum { - EXT4_IGET_NORMAL = 0, - EXT4_IGET_SPECIAL = 1, - EXT4_IGET_HANDLE = 2, - EXT4_IGET_BAD = 4, - EXT4_IGET_EA_INODE = 8, -} ext4_iget_flags; - -struct ext4_system_zone { - struct rb_node node; - ext4_fsblk_t start_blk; - unsigned int count; - u32 ino; -}; - -enum { - ES_WRITTEN_B = 0, - ES_UNWRITTEN_B = 1, - ES_DELAYED_B = 2, - ES_HOLE_B = 3, - ES_REFERENCED_B = 4, - ES_FLAGS = 5, -}; - -struct extent_status { - struct rb_node rb_node; - ext4_lblk_t es_lblk; - ext4_lblk_t es_len; - ext4_fsblk_t es_pblk; -}; - -struct ext4_es_tree { - struct rb_root root; - struct extent_status *cache_es; -}; - -struct pending_reservation { - struct rb_node rb_node; - ext4_lblk_t lclu; -}; - -struct ext4_pending_tree { - struct rb_root root; -}; - -struct ext4_inode_info { - __le32 i_data[15]; - __u32 i_dtime; - ext4_fsblk_t i_file_acl; - ext4_group_t i_block_group; - ext4_lblk_t i_dir_start_lookup; - long unsigned int i_flags; - struct rw_semaphore xattr_sem; - union { - struct list_head i_orphan; - unsigned int i_orphan_idx; - }; - struct list_head i_fc_dilist; - struct list_head i_fc_list; - ext4_lblk_t i_fc_lblk_start; - ext4_lblk_t i_fc_lblk_len; - spinlock_t i_raw_lock; - wait_queue_head_t i_fc_wait; - spinlock_t i_fc_lock; - loff_t i_disksize; - struct rw_semaphore i_data_sem; - struct inode vfs_inode; - struct jbd2_inode *jinode; - struct timespec64 i_crtime; - atomic_t i_prealloc_active; - unsigned int i_reserved_data_blocks; - struct rb_root i_prealloc_node; - rwlock_t i_prealloc_lock; - struct ext4_es_tree i_es_tree; - rwlock_t i_es_lock; - struct list_head i_es_list; - unsigned int i_es_all_nr; - unsigned int i_es_shk_nr; - ext4_lblk_t i_es_shrink_lblk; - ext4_group_t i_last_alloc_group; - struct ext4_pending_tree i_pending_tree; - __u16 i_extra_isize; - u16 i_inline_off; - u16 i_inline_size; - qsize_t i_reserved_quota; - spinlock_t i_block_reservation_lock; - spinlock_t i_completed_io_lock; - struct list_head i_rsv_conversion_list; - struct work_struct i_rsv_conversion_work; - tid_t i_sync_tid; - tid_t i_datasync_tid; - struct dquot *i_dquot[3]; - __u32 i_csum_seed; - kprojid_t i_projid; -}; - -enum { - EXT4_STATE_NEW = 0, - EXT4_STATE_XATTR = 1, - EXT4_STATE_NO_EXPAND = 2, - EXT4_STATE_DA_ALLOC_CLOSE = 3, - EXT4_STATE_EXT_MIGRATE = 4, - EXT4_STATE_NEWENTRY = 5, - EXT4_STATE_MAY_INLINE_DATA = 6, - EXT4_STATE_EXT_PRECACHED = 7, - EXT4_STATE_LUSTRE_EA_INODE = 8, - EXT4_STATE_VERITY_IN_PROGRESS = 9, - EXT4_STATE_FC_COMMITTING = 10, - EXT4_STATE_FC_FLUSHING_DATA = 11, - EXT4_STATE_ORPHAN_FILE = 12, -}; - -struct rsvd_count { - int ndelayed; - bool first_do_lblk_found; - ext4_lblk_t first_do_lblk; - ext4_lblk_t last_do_lblk; - struct extent_status *left_es; - bool partial; - ext4_lblk_t lclu; -}; - -struct dx_hash_info { - u32 hash; - u32 minor_hash; - int hash_version; - u32 *seed; -}; - -typedef int get_block_t(struct inode *, sector_t, struct buffer_head *, int); - -enum criteria { - CR_POWER2_ALIGNED = 0, - CR_GOAL_LEN_FAST = 1, - CR_BEST_AVAIL_LEN = 2, - CR_GOAL_LEN_SLOW = 3, - CR_ANY_FREE = 4, - EXT4_MB_NUM_CRS = 5, -}; - -enum { - EXT4_INODE_SECRM = 0, - EXT4_INODE_UNRM = 1, - EXT4_INODE_COMPR = 2, - EXT4_INODE_SYNC = 3, - EXT4_INODE_IMMUTABLE = 4, - EXT4_INODE_APPEND = 5, - EXT4_INODE_NODUMP = 6, - EXT4_INODE_NOATIME = 7, - EXT4_INODE_DIRTY = 8, - EXT4_INODE_COMPRBLK = 9, - EXT4_INODE_NOCOMPR = 10, - EXT4_INODE_ENCRYPT = 11, - EXT4_INODE_INDEX = 12, - EXT4_INODE_IMAGIC = 13, - EXT4_INODE_JOURNAL_DATA = 14, - EXT4_INODE_NOTAIL = 15, - EXT4_INODE_DIRSYNC = 16, - EXT4_INODE_TOPDIR = 17, - EXT4_INODE_HUGE_FILE = 18, - EXT4_INODE_EXTENTS = 19, - EXT4_INODE_VERITY = 20, - EXT4_INODE_EA_INODE = 21, - EXT4_INODE_DAX = 25, - EXT4_INODE_INLINE_DATA = 28, - EXT4_INODE_PROJINHERIT = 29, - EXT4_INODE_CASEFOLD = 30, - EXT4_INODE_RESERVED = 31, -}; - -struct ext4_inode { - __le16 i_mode; - __le16 i_uid; - __le32 i_size_lo; - __le32 i_atime; - __le32 i_ctime; - __le32 i_mtime; - __le32 i_dtime; - __le16 i_gid; - __le16 i_links_count; - __le32 i_blocks_lo; - __le32 i_flags; - union { - struct { - __le32 l_i_version; - } linux1; - struct { - __u32 h_i_translator; - } hurd1; - struct { - __u32 m_i_reserved1; - } masix1; - } osd1; - __le32 i_block[15]; - __le32 i_generation; - __le32 i_file_acl_lo; - __le32 i_size_high; - __le32 i_obso_faddr; - union { - struct { - __le16 l_i_blocks_high; - __le16 l_i_file_acl_high; - __le16 l_i_uid_high; - __le16 l_i_gid_high; - __le16 l_i_checksum_lo; - __le16 l_i_reserved; - } linux2; - struct { - __le16 h_i_reserved1; - __u16 h_i_mode_high; - __u16 h_i_uid_high; - __u16 h_i_gid_high; - __u32 h_i_author; - } hurd2; - struct { - __le16 h_i_reserved1; - __le16 m_i_file_acl_high; - __u32 m_i_reserved2[2]; - } masix2; - } osd2; - __le16 i_extra_isize; - __le16 i_checksum_hi; - __le32 i_ctime_extra; - __le32 i_mtime_extra; - __le32 i_atime_extra; - __le32 i_crtime; - __le32 i_crtime_extra; - __le32 i_version_hi; - __le32 i_projid; -}; - -enum { - EXT4_FC_REASON_XATTR = 0, - EXT4_FC_REASON_CROSS_RENAME = 1, - EXT4_FC_REASON_JOURNAL_FLAG_CHANGE = 2, - EXT4_FC_REASON_NOMEM = 3, - EXT4_FC_REASON_SWAP_BOOT = 4, - EXT4_FC_REASON_RESIZE = 5, - EXT4_FC_REASON_RENAME_DIR = 6, - EXT4_FC_REASON_FALLOC_RANGE = 7, - EXT4_FC_REASON_INODE_JOURNAL_DATA = 8, - EXT4_FC_REASON_ENCRYPTED_FILENAME = 9, - EXT4_FC_REASON_MAX = 10, -}; - -enum ext4_journal_trigger_type { - EXT4_JTR_ORPHAN_FILE = 0, - EXT4_JTR_NONE = 1, -}; - -enum { - EXT4_FLAGS_RESIZING = 0, - EXT4_FLAGS_SHUTDOWN = 1, - EXT4_FLAGS_BDEV_IS_DAX = 2, - EXT4_FLAGS_EMERGENCY_RO = 3, -}; - -struct ext4_dir_entry_hash { - __le32 hash; - __le32 minor_hash; -}; - -struct ext4_dir_entry_2 { - __le32 inode; - __le16 rec_len; - __u8 name_len; - __u8 file_type; - char name[255]; -}; - -struct ext4_filename { - const struct qstr *usr_fname; - struct fscrypt_str disk_name; - struct dx_hash_info hinfo; - struct fscrypt_str crypto_buf; - struct qstr cf_name; -}; - -struct ext4_iloc { - struct buffer_head *bh; - long unsigned int offset; - ext4_group_t block_group; -}; - -struct fname; - -struct dir_private_info { - struct rb_root root; - struct rb_node *curr_node; - struct fname *extra_fname; - loff_t last_pos; - __u32 curr_hash; - __u32 curr_minor_hash; - __u32 next_hash; - u64 cookie; - bool initialized; -}; - -struct ext4_xattr_ibody_header { - __le32 h_magic; -}; - -struct ext4_xattr_entry { - __u8 e_name_len; - __u8 e_name_index; - __le16 e_value_offs; - __le32 e_value_inum; - __le32 e_value_size; - __le32 e_hash; - char e_name[0]; -}; - -struct ext4_xattr_info { - const char *name; - const void *value; - size_t value_len; - int name_index; - int in_inode; -}; - -struct ext4_xattr_search { - struct ext4_xattr_entry *first; - void *base; - void *end; - struct ext4_xattr_entry *here; - int not_found; -}; - -struct ext4_xattr_ibody_find { - struct ext4_xattr_search s; - struct ext4_iloc iloc; -}; - -struct ext4_extent { - __le32 ee_block; - __le16 ee_len; - __le16 ee_start_hi; - __le32 ee_start_lo; -}; - -struct ext4_extent_idx { - __le32 ei_block; - __le32 ei_leaf_lo; - __le16 ei_leaf_hi; - __u16 ei_unused; -}; - -struct ext4_extent_header { - __le16 eh_magic; - __le16 eh_entries; - __le16 eh_max; - __le16 eh_depth; - __le32 eh_generation; -}; - -struct ext4_ext_path { - ext4_fsblk_t p_block; - __u16 p_depth; - __u16 p_maxdepth; - struct ext4_extent *p_ext; - struct ext4_extent_idx *p_idx; - struct ext4_extent_header *p_hdr; - struct buffer_head *p_bh; -}; - -struct migrate_struct { - ext4_lblk_t first_block; - ext4_lblk_t last_block; - ext4_lblk_t curr_block; - ext4_fsblk_t first_pblock; - ext4_fsblk_t last_pblock; -}; - -struct ext4_new_group_data { - __u32 group; - __u64 block_bitmap; - __u64 inode_bitmap; - __u64 inode_table; - __u32 blocks_count; - __u16 reserved_blocks; - __u16 mdata_blocks; - __u32 free_clusters_count; -}; - -enum { - BLOCK_BITMAP = 0, - INODE_BITMAP = 1, - INODE_TABLE = 2, - GROUP_TABLE_COUNT = 3, -}; - -struct ext4_rcu_ptr { - struct callback_head rcu; - void *ptr; -}; - -struct ext4_new_flex_group_data { - struct ext4_new_group_data *groups; - __u16 *bg_flags; - ext4_group_t resize_bg; - ext4_group_t count; -}; - -struct disk_stats { - u64 nsecs[4]; - long unsigned int sectors[4]; - long unsigned int ios[4]; - long unsigned int merges[4]; - long unsigned int io_ticks; - local_t in_flight[2]; -}; - -enum stat_group { - STAT_READ = 0, - STAT_WRITE = 1, - STAT_DISCARD = 2, - STAT_FLUSH = 3, - NR_STAT_GROUPS = 4, -}; - -enum { - attr_noop = 0, - attr_delayed_allocation_blocks = 1, - attr_session_write_kbytes = 2, - attr_lifetime_write_kbytes = 3, - attr_reserved_clusters = 4, - attr_sra_exceeded_retry_limit = 5, - attr_inode_readahead = 6, - attr_trigger_test_error = 7, - attr_first_error_time = 8, - attr_last_error_time = 9, - attr_clusters_in_group = 10, - attr_mb_order = 11, - attr_feature = 12, - attr_pointer_pi = 13, - attr_pointer_ui = 14, - attr_pointer_ul = 15, - attr_pointer_u64 = 16, - attr_pointer_u8 = 17, - attr_pointer_string = 18, - attr_pointer_atomic = 19, - attr_journal_task = 20, -}; - -enum { - ptr_explicit = 0, - ptr_ext4_sb_info_offset = 1, - ptr_ext4_super_block_offset = 2, -}; - -struct ext4_attr { - struct attribute attr; - short int attr_id; - short int attr_ptr; - short unsigned int attr_size; - union { - int offset; - void *explicit_ptr; - } u; -}; - -struct ext4_fc_tl { - __le16 fc_tag; - __le16 fc_len; -}; - -struct ext4_fc_head { - __le32 fc_features; - __le32 fc_tid; -}; - -struct ext4_fc_add_range { - __le32 fc_ino; - __u8 fc_ex[12]; -}; - -struct ext4_fc_del_range { - __le32 fc_ino; - __le32 fc_lblk; - __le32 fc_len; -}; - -struct ext4_fc_dentry_info { - __le32 fc_parent_ino; - __le32 fc_ino; - __u8 fc_dname[0]; -}; - -struct ext4_fc_inode { - __le32 fc_ino; - __u8 fc_raw_inode[0]; -}; - -struct ext4_fc_tail { - __le32 fc_tid; - __le32 fc_crc; -}; - -enum { - EXT4_FC_STATUS_OK = 0, - EXT4_FC_STATUS_INELIGIBLE = 1, - EXT4_FC_STATUS_SKIPPED = 2, - EXT4_FC_STATUS_FAILED = 3, -}; - -struct ext4_fc_dentry_update { - int fcd_op; - int fcd_parent; - int fcd_ino; - struct name_snapshot fcd_name; - struct list_head fcd_list; - struct list_head fcd_dilist; -}; - -struct ext4_locality_group { - struct mutex lg_mutex; - struct list_head lg_prealloc_list[10]; - spinlock_t lg_prealloc_lock; -}; - -enum { - EXT4_MF_MNTDIR_SAMPLED = 0, - EXT4_MF_FC_INELIGIBLE = 1, - EXT4_MF_JOURNAL_DESTROY = 2, -}; - -struct __track_dentry_update_args { - struct dentry *dentry; - int op; -}; - -struct __track_range_args { - ext4_lblk_t start; - ext4_lblk_t end; -}; - -struct dentry_info_args { - int parent_ino; - int dname_len; - int ino; - int inode_len; - char *dname; -}; - -struct ext4_fc_tl_mem { - u16 fc_tag; - u16 fc_len; -}; - -typedef int filler_t(struct file *, struct folio *); - -struct fscrypt_name { - const struct qstr *usr_fname; - struct fscrypt_str disk_name; - u32 hash; - u32 minor_hash; - struct fscrypt_str crypto_buf; - bool is_nokey_name; -}; - -enum jbd_state_bits { - BH_JBD = 17, - BH_JWrite = 18, - BH_Freed = 19, - BH_Revoked = 20, - BH_RevokeValid = 21, - BH_JBDDirty = 22, - BH_JournalHead = 23, - BH_Shadow = 24, - BH_Verified = 25, - BH_JBDPrivateStart = 26, -}; - -enum jbd2_shrink_type { - JBD2_SHRINK_DESTROY = 0, - JBD2_SHRINK_BUSY_STOP = 1, - JBD2_SHRINK_BUSY_SKIP = 2, -}; - -struct jbd2_journal_block_tail { - __be32 t_checksum; -}; - -struct trace_event_raw_jbd2_checkpoint { - struct trace_entry ent; - dev_t dev; - int result; - char __data[0]; -}; - -struct trace_event_raw_jbd2_commit { - struct trace_entry ent; - dev_t dev; - char sync_commit; - tid_t transaction; - char __data[0]; -}; - -struct trace_event_raw_jbd2_end_commit { - struct trace_entry ent; - dev_t dev; - char sync_commit; - tid_t transaction; - tid_t head; - char __data[0]; -}; - -struct trace_event_raw_jbd2_submit_inode_data { - struct trace_entry ent; - dev_t dev; - ino_t ino; - char __data[0]; -}; - -struct trace_event_raw_jbd2_handle_start_class { - struct trace_entry ent; - dev_t dev; - tid_t tid; - unsigned int type; - unsigned int line_no; - int requested_blocks; - char __data[0]; -}; - -struct trace_event_raw_jbd2_handle_extend { - struct trace_entry ent; - dev_t dev; - tid_t tid; - unsigned int type; - unsigned int line_no; - int buffer_credits; - int requested_blocks; - char __data[0]; -}; - -struct trace_event_raw_jbd2_handle_stats { - struct trace_entry ent; - dev_t dev; - tid_t tid; - unsigned int type; - unsigned int line_no; - int interval; - int sync; - int requested_blocks; - int dirtied_blocks; - char __data[0]; -}; - -struct trace_event_raw_jbd2_run_stats { - struct trace_entry ent; - dev_t dev; - tid_t tid; - long unsigned int wait; - long unsigned int request_delay; - long unsigned int running; - long unsigned int locked; - long unsigned int flushing; - long unsigned int logging; - __u32 handle_count; - __u32 blocks; - __u32 blocks_logged; - char __data[0]; -}; - -struct trace_event_raw_jbd2_checkpoint_stats { - struct trace_entry ent; - dev_t dev; - tid_t tid; - long unsigned int chp_time; - __u32 forced_to_close; - __u32 written; - __u32 dropped; - char __data[0]; -}; - -struct trace_event_raw_jbd2_update_log_tail { - struct trace_entry ent; - dev_t dev; - tid_t tail_sequence; - tid_t first_tid; - long unsigned int block_nr; - long unsigned int freed; - char __data[0]; -}; - -struct trace_event_raw_jbd2_write_superblock { - struct trace_entry ent; - dev_t dev; - blk_opf_t write_flags; - char __data[0]; -}; - -struct trace_event_raw_jbd2_lock_buffer_stall { - struct trace_entry ent; - dev_t dev; - long unsigned int stall_ms; - char __data[0]; -}; - -struct trace_event_raw_jbd2_journal_shrink { - struct trace_entry ent; - dev_t dev; - long unsigned int nr_to_scan; - long unsigned int count; - char __data[0]; -}; - -struct trace_event_raw_jbd2_shrink_scan_exit { - struct trace_entry ent; - dev_t dev; - long unsigned int nr_to_scan; - long unsigned int nr_shrunk; - long unsigned int count; - char __data[0]; -}; - -struct trace_event_raw_jbd2_shrink_checkpoint_list { - struct trace_entry ent; - dev_t dev; - tid_t first_tid; - tid_t tid; - tid_t last_tid; - long unsigned int nr_freed; - tid_t next_tid; - char __data[0]; -}; - -struct trace_event_data_offsets_jbd2_checkpoint {}; - -struct trace_event_data_offsets_jbd2_commit {}; - -struct trace_event_data_offsets_jbd2_end_commit {}; - -struct trace_event_data_offsets_jbd2_submit_inode_data {}; - -struct trace_event_data_offsets_jbd2_handle_start_class {}; - -struct trace_event_data_offsets_jbd2_handle_extend {}; - -struct trace_event_data_offsets_jbd2_handle_stats {}; - -struct trace_event_data_offsets_jbd2_run_stats {}; - -struct trace_event_data_offsets_jbd2_checkpoint_stats {}; - -struct trace_event_data_offsets_jbd2_update_log_tail {}; - -struct trace_event_data_offsets_jbd2_write_superblock {}; - -struct trace_event_data_offsets_jbd2_lock_buffer_stall {}; - -struct trace_event_data_offsets_jbd2_journal_shrink {}; - -struct trace_event_data_offsets_jbd2_shrink_scan_exit {}; - -struct trace_event_data_offsets_jbd2_shrink_checkpoint_list {}; - -typedef void (*btf_trace_jbd2_checkpoint)(void *, journal_t *, int); - -typedef void (*btf_trace_jbd2_start_commit)(void *, journal_t *, transaction_t *); - -typedef void (*btf_trace_jbd2_commit_locking)(void *, journal_t *, transaction_t *); - -typedef void (*btf_trace_jbd2_commit_flushing)(void *, journal_t *, transaction_t *); - -typedef void (*btf_trace_jbd2_commit_logging)(void *, journal_t *, transaction_t *); - -typedef void (*btf_trace_jbd2_drop_transaction)(void *, journal_t *, transaction_t *); - -typedef void (*btf_trace_jbd2_end_commit)(void *, journal_t *, transaction_t *); - -typedef void (*btf_trace_jbd2_submit_inode_data)(void *, struct inode *); - -typedef void (*btf_trace_jbd2_handle_start)(void *, dev_t, tid_t, unsigned int, unsigned int, int); - -typedef void (*btf_trace_jbd2_handle_restart)(void *, dev_t, tid_t, unsigned int, unsigned int, int); - -typedef void (*btf_trace_jbd2_handle_extend)(void *, dev_t, tid_t, unsigned int, unsigned int, int, int); - -typedef void (*btf_trace_jbd2_handle_stats)(void *, dev_t, tid_t, unsigned int, unsigned int, int, int, int, int); - -typedef void (*btf_trace_jbd2_run_stats)(void *, dev_t, tid_t, struct transaction_run_stats_s *); - -typedef void (*btf_trace_jbd2_checkpoint_stats)(void *, dev_t, tid_t, struct transaction_chp_stats_s *); - -typedef void (*btf_trace_jbd2_update_log_tail)(void *, journal_t *, tid_t, long unsigned int, long unsigned int); - -typedef void (*btf_trace_jbd2_write_superblock)(void *, journal_t *, blk_opf_t); - -typedef void (*btf_trace_jbd2_lock_buffer_stall)(void *, dev_t, long unsigned int); - -typedef void (*btf_trace_jbd2_shrink_count)(void *, journal_t *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_jbd2_shrink_scan_enter)(void *, journal_t *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_jbd2_shrink_scan_exit)(void *, journal_t *, long unsigned int, long unsigned int, long unsigned int); - -typedef void (*btf_trace_jbd2_shrink_checkpoint_list)(void *, journal_t *, tid_t, tid_t, tid_t, long unsigned int, tid_t); - -struct jbd2_stats_proc_session { - journal_t *journal; - struct transaction_stats_s *stats; - int start; - int max; -}; - -struct meta_entry { - u64 data_block; - unsigned int index_block; - short unsigned int offset; - short unsigned int pad; -}; - -struct meta_index { - unsigned int inode_number; - unsigned int offset; - short unsigned int entries; - short unsigned int skip; - short unsigned int locked; - short unsigned int pad; - struct meta_entry meta_entry[127]; -}; - -struct squashfs_cache_entry; - -struct squashfs_cache { - char *name; - int entries; - int curr_blk; - int next_blk; - int num_waiters; - int unused; - int block_size; - int pages; - spinlock_t lock; - wait_queue_head_t wait_queue; - struct squashfs_cache_entry *entry; -}; - -struct squashfs_page_actor; - -struct squashfs_cache_entry { - u64 block; - int length; - int refcount; - u64 next_index; - int pending; - int error; - int num_waiters; - wait_queue_head_t wait_queue; - struct squashfs_cache *cache; - void **data; - struct squashfs_page_actor *actor; -}; - -struct squashfs_page_actor { - union { - void **buffer; - struct page **page; - }; - void *pageaddr; - void *tmp_buffer; - void * (*squashfs_first_page)(struct squashfs_page_actor *); - void * (*squashfs_next_page)(struct squashfs_page_actor *); - void (*squashfs_finish_page)(struct squashfs_page_actor *); - struct page *last_page; - int pages; - int length; - int next_page; - int alloc_buffer; - int returned_pages; - long unsigned int next_index; -}; - -struct squashfs_decompressor; - -struct squashfs_decompressor_thread_ops; - -struct squashfs_sb_info { - const struct squashfs_decompressor *decompressor; - int devblksize; - int devblksize_log2; - struct squashfs_cache *block_cache; - struct squashfs_cache *fragment_cache; - struct squashfs_cache *read_page; - struct address_space *cache_mapping; - int next_meta_index; - __le64 *id_table; - __le64 *fragment_index; - __le64 *xattr_id_table; - struct mutex meta_index_mutex; - struct meta_index *meta_index; - void *stream; - __le64 *inode_lookup_table; - u64 inode_table; - u64 directory_table; - u64 xattr_table; - unsigned int block_size; - short unsigned int block_log; - long long int bytes_used; - unsigned int inodes; - unsigned int fragments; - unsigned int xattr_ids; - unsigned int ids; - bool panic_on_errors; - const struct squashfs_decompressor_thread_ops *thread_ops; - int max_thread_num; -}; - -struct squashfs_decompressor { - void * (*init)(struct squashfs_sb_info *, void *); - void * (*comp_opts)(struct squashfs_sb_info *, void *, int); - void (*free)(void *); - int (*decompress)(struct squashfs_sb_info *, void *, struct bio *, int, int, struct squashfs_page_actor *); - int id; - char *name; - int alloc_buffer; - int supported; -}; - -struct squashfs_decompressor_thread_ops { - void * (*create)(struct squashfs_sb_info *, void *); - void (*destroy)(struct squashfs_sb_info *); - int (*decompress)(struct squashfs_sb_info *, struct bio *, int, int, struct squashfs_page_actor *); - int (*max_decompressors)(void); -}; - -struct squashfs_stream { - void *stream; - struct mutex mutex; -}; - -struct squashfs_xattr_id { - __le64 xattr; - __le32 count; - __le32 size; -}; - -struct squashfs_xattr_id_table { - __le64 xattr_table_start; - __le32 xattr_ids; - __le32 unused; -}; - -struct bvec_iter_all { - struct bio_vec bv; - int idx; - unsigned int done; -}; - -typedef unsigned char Byte; - -typedef long unsigned int uLong; - -struct internal_state; - -struct z_stream_s { - const Byte *next_in; - uLong avail_in; - uLong total_in; - Byte *next_out; - uLong avail_out; - uLong total_out; - char *msg; - struct internal_state *state; - void *workspace; - int data_type; - uLong adler; - uLong reserved; -}; - -struct internal_state { - int dummy; -}; - -typedef struct z_stream_s z_stream; - -typedef z_stream *z_streamp; - -enum { - HUGETLB_SHMFS_INODE = 1, - HUGETLB_ANONHUGE_INODE = 2, -}; - -struct hugetlbfs_inode_info { - struct inode vfs_inode; - unsigned int seals; -}; - -struct trace_event_raw_hugetlbfs_alloc_inode { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ino_t dir; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_hugetlbfs__inode { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u16 mode; - loff_t size; - unsigned int nlink; - unsigned int seals; - blkcnt_t blocks; - char __data[0]; -}; - -struct trace_event_raw_hugetlbfs_setattr { - struct trace_entry ent; - dev_t dev; - ino_t ino; - unsigned int d_len; - u32 __data_loc_d_name; - unsigned int ia_valid; - unsigned int ia_mode; - loff_t old_size; - loff_t ia_size; - char __data[0]; -}; - -struct trace_event_raw_hugetlbfs_fallocate { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int mode; - loff_t offset; - loff_t len; - loff_t size; - int ret; - char __data[0]; -}; - -struct trace_event_data_offsets_hugetlbfs_alloc_inode {}; - -struct trace_event_data_offsets_hugetlbfs__inode {}; - -struct trace_event_data_offsets_hugetlbfs_setattr { - u32 d_name; - const void *d_name_ptr_; -}; - -struct trace_event_data_offsets_hugetlbfs_fallocate {}; - -typedef void (*btf_trace_hugetlbfs_alloc_inode)(void *, struct inode *, struct inode *, int); - -typedef void (*btf_trace_hugetlbfs_evict_inode)(void *, struct inode *); - -typedef void (*btf_trace_hugetlbfs_free_inode)(void *, struct inode *); - -typedef void (*btf_trace_hugetlbfs_setattr)(void *, struct inode *, struct dentry *, struct iattr *); - -typedef void (*btf_trace_hugetlbfs_fallocate)(void *, struct inode *, int, loff_t, loff_t, int); - -enum hugetlbfs_size_type { - NO_SIZE = 0, - SIZE_STD = 1, - SIZE_PERCENT = 2, -}; - -struct hugetlbfs_fs_context { - struct hstate *hstate; - long long unsigned int max_size_opt; - long long unsigned int min_size_opt; - long int max_hpages; - long int nr_inodes; - long int min_hpages; - enum hugetlbfs_size_type max_val_type; - enum hugetlbfs_size_type min_val_type; - kuid_t uid; - kgid_t gid; - umode_t mode; -}; - -enum hugetlb_param { - Opt_gid___2 = 0, - Opt_min_size = 1, - Opt_mode = 2, - Opt_nr_inodes = 3, - Opt_pagesize = 4, - Opt_size = 5, - Opt_uid = 6, -}; - -struct fstrim_range { - __u64 start; - __u64 len; - __u64 minlen; -}; - -enum file_time_flags { - S_ATIME = 1, - S_MTIME = 2, - S_CTIME = 4, - S_VERSION = 8, -}; - -typedef u16 wchar_t; - -struct nls_table { - const char *charset; - const char *alias; - int (*uni2char)(wchar_t, unsigned char *, int); - int (*char2uni)(const unsigned char *, int, wchar_t *); - const unsigned char *charset2lower; - const unsigned char *charset2upper; - struct module *owner; - struct nls_table *next; -}; - -struct fat_mount_options { - kuid_t fs_uid; - kgid_t fs_gid; - short unsigned int fs_fmask; - short unsigned int fs_dmask; - short unsigned int codepage; - int time_offset; - char *iocharset; - short unsigned int shortname; - unsigned char name_check; - unsigned char errors; - unsigned char nfs; - short unsigned int allow_utime; - unsigned int quiet: 1; - unsigned int showexec: 1; - unsigned int sys_immutable: 1; - unsigned int dotsOK: 1; - unsigned int isvfat: 1; - unsigned int utf8: 1; - unsigned int unicode_xlate: 1; - unsigned int numtail: 1; - unsigned int flush: 1; - unsigned int nocase: 1; - unsigned int usefree: 1; - unsigned int tz_set: 1; - unsigned int rodir: 1; - unsigned int discard: 1; - unsigned int dos1xfloppy: 1; - unsigned int debug: 1; -}; - -struct fatent_operations; - -struct msdos_sb_info { - short unsigned int sec_per_clus; - short unsigned int cluster_bits; - unsigned int cluster_size; - unsigned char fats; - unsigned char fat_bits; - short unsigned int fat_start; - long unsigned int fat_length; - long unsigned int dir_start; - short unsigned int dir_entries; - long unsigned int data_start; - long unsigned int max_cluster; - long unsigned int root_cluster; - long unsigned int fsinfo_sector; - struct mutex fat_lock; - struct mutex nfs_build_inode_lock; - struct mutex s_lock; - unsigned int prev_free; - unsigned int free_clusters; - unsigned int free_clus_valid; - struct fat_mount_options options; - struct nls_table *nls_disk; - struct nls_table *nls_io; - const void *dir_ops; - int dir_per_block; - int dir_per_block_bits; - unsigned int vol_id; - int fatent_shift; - const struct fatent_operations *fatent_ops; - struct inode *fat_inode; - struct inode *fsinfo_inode; - struct ratelimit_state ratelimit; - spinlock_t inode_hash_lock; - struct hlist_head inode_hashtable[256]; - spinlock_t dir_hash_lock; - struct hlist_head dir_hashtable[256]; - unsigned int dirty; - struct callback_head rcu; -}; - -struct fat_entry; - -struct fatent_operations { - void (*ent_blocknr)(struct super_block *, int, int *, sector_t *); - void (*ent_set_ptr)(struct fat_entry *, int); - int (*ent_bread)(struct super_block *, struct fat_entry *, int, sector_t); - int (*ent_get)(struct fat_entry *); - void (*ent_put)(struct fat_entry *, int); - int (*ent_next)(struct fat_entry *); -}; - -struct msdos_inode_info { - spinlock_t cache_lru_lock; - struct list_head cache_lru; - int nr_caches; - unsigned int cache_valid_id; - loff_t mmu_private; - int i_start; - int i_logstart; - int i_attrs; - loff_t i_pos; - struct hlist_node i_fat_hash; - struct hlist_node i_dir_hash; - struct rw_semaphore truncate_lock; - struct timespec64 i_crtime; - struct inode vfs_inode; -}; - -struct fat_entry { - int entry; - union { - u8 *ent12_p[2]; - __le16 *ent16_p; - __le32 *ent32_p; - } u; - int nr_bhs; - struct buffer_head *bhs[2]; - struct inode *fat_inode; -}; - -enum utf16_endian { - UTF16_HOST_ENDIAN = 0, - UTF16_LITTLE_ENDIAN = 1, - UTF16_BIG_ENDIAN = 2, -}; - -struct msdos_dir_entry { - __u8 name[11]; - __u8 attr; - __u8 lcase; - __u8 ctime_cs; - __le16 ctime; - __le16 cdate; - __le16 adate; - __le16 starthi; - __le16 time; - __le16 date; - __le16 start; - __le32 size; -}; - -struct msdos_dir_slot { - __u8 id; - __u8 name0_4[10]; - __u8 attr; - __u8 reserved; - __u8 alias_checksum; - __u8 name5_10[12]; - __le16 start; - __u8 name11_12[4]; -}; - -struct fat_slot_info { - loff_t i_pos; - loff_t slot_off; - int nr_slots; - struct msdos_dir_entry *de; - struct buffer_head *bh; -}; - -struct shortname_info { - unsigned char lower: 1; - unsigned char upper: 1; - unsigned char valid: 1; -}; - -struct ecryptfs_mount_crypt_stat; - -struct ecryptfs_crypt_stat { - u32 flags; - unsigned int file_version; - size_t iv_bytes; - size_t metadata_size; - size_t extent_size; - size_t key_size; - size_t extent_shift; - unsigned int extent_mask; - struct ecryptfs_mount_crypt_stat *mount_crypt_stat; - struct crypto_skcipher *tfm; - struct crypto_shash *hash_tfm; - unsigned char cipher[32]; - unsigned char key[64]; - unsigned char root_iv[16]; - struct list_head keysig_list; - struct mutex keysig_list_mutex; - struct mutex cs_tfm_mutex; - struct mutex cs_mutex; -}; - -struct ecryptfs_mount_crypt_stat { - u32 flags; - struct list_head global_auth_tok_list; - struct mutex global_auth_tok_list_mutex; - size_t global_default_cipher_key_size; - size_t global_default_fn_cipher_key_bytes; - unsigned char global_default_cipher_name[32]; - unsigned char global_default_fn_cipher_name[32]; - char global_default_fnek_sig[17]; -}; - -struct ecryptfs_inode_info { - struct inode vfs_inode; - struct inode *wii_inode; - struct mutex lower_file_mutex; - atomic_t lower_file_count; - struct file *lower_file; - struct ecryptfs_crypt_stat crypt_stat; -}; - -struct ecryptfs_dentry_info { - struct path lower_path; - struct callback_head rcu; -}; - -struct ecryptfs_global_auth_tok { - u32 flags; - struct list_head mount_crypt_stat_list; - struct key *global_auth_tok_key; - unsigned char sig[17]; -}; - -struct ecryptfs_sb_info { - struct super_block *wsi_sb; - struct ecryptfs_mount_crypt_stat mount_crypt_stat; -}; - -struct ecryptfs_open_req { - struct file **lower_file; - struct path path; - struct completion done; - struct list_head kthread_ctl_list; -}; - -struct ecryptfs_kthread_ctl { - u32 flags; - struct mutex mux; - struct list_head req_list; - wait_queue_head_t wait; -}; - -struct miscdevice { - int minor; - const char *name; - const struct file_operations *fops; - struct list_head list; - struct device *parent; - struct device *this_device; - const struct attribute_group **groups; - const char *nodename; - umode_t mode; -}; - -struct ecryptfs_message { - u32 index; - u32 data_len; - u8 data[0]; -}; - -struct ecryptfs_msg_ctx { - u8 state; - u8 type; - u32 index; - u32 counter; - size_t msg_size; - struct ecryptfs_message *msg; - struct task_struct *task; - struct list_head node; - struct list_head daemon_out_list; - struct mutex mux; -}; - -struct ecryptfs_daemon { - u32 flags; - u32 num_queued_msg_ctx; - struct file *file; - struct mutex mux; - struct list_head msg_ctx_out_queue; - wait_queue_head_t wait; - struct hlist_node euid_chain; -}; - -struct utf8cursor { - const struct unicode_map *um; - enum utf8_normalization n; - const char *s; - const char *p; - const char *ss; - const char *sp; - unsigned int len; - unsigned int slen; - short int ccc; - short int nccc; - unsigned char hangul[12]; -}; - -typedef const unsigned char utf8trie_t; - -typedef const unsigned char utf8leaf_t; - -enum fuse_opcode { - FUSE_LOOKUP = 1, - FUSE_FORGET = 2, - FUSE_GETATTR = 3, - FUSE_SETATTR = 4, - FUSE_READLINK = 5, - FUSE_SYMLINK = 6, - FUSE_MKNOD = 8, - FUSE_MKDIR = 9, - FUSE_UNLINK = 10, - FUSE_RMDIR = 11, - FUSE_RENAME = 12, - FUSE_LINK = 13, - FUSE_OPEN = 14, - FUSE_READ = 15, - FUSE_WRITE = 16, - FUSE_STATFS = 17, - FUSE_RELEASE = 18, - FUSE_FSYNC = 20, - FUSE_SETXATTR = 21, - FUSE_GETXATTR = 22, - FUSE_LISTXATTR = 23, - FUSE_REMOVEXATTR = 24, - FUSE_FLUSH = 25, - FUSE_INIT = 26, - FUSE_OPENDIR = 27, - FUSE_READDIR = 28, - FUSE_RELEASEDIR = 29, - FUSE_FSYNCDIR = 30, - FUSE_GETLK = 31, - FUSE_SETLK = 32, - FUSE_SETLKW = 33, - FUSE_ACCESS = 34, - FUSE_CREATE = 35, - FUSE_INTERRUPT = 36, - FUSE_BMAP = 37, - FUSE_DESTROY = 38, - FUSE_IOCTL = 39, - FUSE_POLL = 40, - FUSE_NOTIFY_REPLY = 41, - FUSE_BATCH_FORGET = 42, - FUSE_FALLOCATE = 43, - FUSE_READDIRPLUS = 44, - FUSE_RENAME2 = 45, - FUSE_LSEEK = 46, - FUSE_COPY_FILE_RANGE = 47, - FUSE_SETUPMAPPING = 48, - FUSE_REMOVEMAPPING = 49, - FUSE_SYNCFS = 50, - FUSE_TMPFILE = 51, - FUSE_STATX = 52, - CUSE_INIT = 4096, - CUSE_INIT_BSWAP_RESERVED = 1048576, - FUSE_INIT_BSWAP_RESERVED = 436207616, -}; - -enum fuse_notify_code { - FUSE_NOTIFY_POLL = 1, - FUSE_NOTIFY_INVAL_INODE = 2, - FUSE_NOTIFY_INVAL_ENTRY = 3, - FUSE_NOTIFY_STORE = 4, - FUSE_NOTIFY_RETRIEVE = 5, - FUSE_NOTIFY_DELETE = 6, - FUSE_NOTIFY_RESEND = 7, - FUSE_NOTIFY_INC_EPOCH = 8, - FUSE_NOTIFY_CODE_MAX = 9, -}; - -struct fuse_forget_in { - uint64_t nlookup; -}; - -struct fuse_forget_one { - uint64_t nodeid; - uint64_t nlookup; -}; - -struct fuse_batch_forget_in { - uint32_t count; - uint32_t dummy; -}; - -struct fuse_open_out { - uint64_t fh; - uint32_t open_flags; - int32_t backing_id; -}; - -struct fuse_release_in { - uint64_t fh; - uint32_t flags; - uint32_t release_flags; - uint64_t lock_owner; -}; - -struct fuse_interrupt_in { - uint64_t unique; -}; - -struct fuse_notify_poll_wakeup_out { - uint64_t kh; -}; - -struct fuse_in_header { - uint32_t len; - uint32_t opcode; - uint64_t unique; - uint64_t nodeid; - uint32_t uid; - uint32_t gid; - uint32_t pid; - uint16_t total_extlen; - uint16_t padding; -}; - -struct fuse_out_header { - uint32_t len; - int32_t error; - uint64_t unique; -}; - -struct fuse_notify_inval_inode_out { - uint64_t ino; - int64_t off; - int64_t len; -}; - -struct fuse_notify_inval_entry_out { - uint64_t parent; - uint32_t namelen; - uint32_t flags; -}; - -struct fuse_notify_delete_out { - uint64_t parent; - uint64_t child; - uint32_t namelen; - uint32_t padding; -}; - -struct fuse_notify_store_out { - uint64_t nodeid; - uint64_t offset; - uint32_t size; - uint32_t padding; -}; - -struct fuse_notify_retrieve_out { - uint64_t notify_unique; - uint64_t nodeid; - uint64_t offset; - uint32_t size; - uint32_t padding; -}; - -struct fuse_notify_retrieve_in { - uint64_t dummy1; - uint64_t offset; - uint32_t size; - uint32_t dummy2; - uint64_t dummy3; - uint64_t dummy4; -}; - -struct fuse_backing_map { - int32_t fd; - uint32_t flags; - uint64_t padding; -}; - -typedef union { -} release_pages_arg; - -struct fuse_forget_link { - struct fuse_forget_one forget_one; - struct fuse_forget_link *next; -}; - -struct fuse_mount; - -union fuse_file_args; - -struct fuse_file { - struct fuse_mount *fm; - union fuse_file_args *args; - u64 kh; - u64 fh; - u64 nodeid; - refcount_t count; - u32 open_flags; - struct list_head write_entry; - struct { - loff_t pos; - loff_t cache_off; - u64 version; - } readdir; - struct rb_node polled_node; - wait_queue_head_t poll_wait; - enum { - IOM_NONE = 0, - IOM_CACHED = 1, - IOM_UNCACHED = 2, - } iomode; - struct file *passthrough; - const struct cred *cred; - bool flock: 1; -}; - -struct fuse_conn; - -struct fuse_mount { - struct fuse_conn *fc; - struct super_block *sb; - struct list_head fc_entry; - struct callback_head rcu; -}; - -struct fuse_in_arg { - unsigned int size; - const void *value; -}; - -struct fuse_arg { - unsigned int size; - void *value; -}; - -struct fuse_args { - uint64_t nodeid; - uint32_t opcode; - uint8_t in_numargs; - uint8_t out_numargs; - uint8_t ext_idx; - bool force: 1; - bool noreply: 1; - bool nocreds: 1; - bool in_pages: 1; - bool out_pages: 1; - bool user_pages: 1; - bool out_argvar: 1; - bool page_zeroing: 1; - bool page_replace: 1; - bool may_block: 1; - bool is_ext: 1; - bool is_pinned: 1; - bool invalidate_vmap: 1; - struct fuse_in_arg in_args[4]; - struct fuse_arg out_args[2]; - void (*end)(struct fuse_mount *, struct fuse_args *, int); - void *vmap_base; -}; - -struct fuse_release_args { - struct fuse_args args; - struct fuse_release_in inarg; - struct inode *inode; -}; - -union fuse_file_args { - struct fuse_open_out open_outarg; - struct fuse_release_args release_args; -}; - -struct fuse_folio_desc { - unsigned int length; - unsigned int offset; -}; - -struct fuse_args_pages { - struct fuse_args args; - struct folio **folios; - struct fuse_folio_desc *descs; - unsigned int num_folios; -}; - -enum fuse_req_flag { - FR_ISREPLY = 0, - FR_FORCE = 1, - FR_BACKGROUND = 2, - FR_WAITING = 3, - FR_ABORTED = 4, - FR_INTERRUPTED = 5, - FR_LOCKED = 6, - FR_PENDING = 7, - FR_SENT = 8, - FR_FINISHED = 9, - FR_PRIVATE = 10, - FR_ASYNC = 11, - FR_URING = 12, -}; - -struct fuse_req { - struct list_head list; - struct list_head intr_entry; - struct fuse_args *args; - refcount_t count; - long unsigned int flags; - struct { - struct fuse_in_header h; - } in; - struct { - struct fuse_out_header h; - } out; - wait_queue_head_t waitq; - void *argbuf; - struct fuse_mount *fm; - void *ring_entry; - void *ring_queue; - long unsigned int create_time; -}; - -struct fuse_iqueue; - -struct fuse_iqueue_ops { - void (*send_forget)(struct fuse_iqueue *, struct fuse_forget_link *); - void (*send_interrupt)(struct fuse_iqueue *, struct fuse_req *); - void (*send_req)(struct fuse_iqueue *, struct fuse_req *); - void (*release)(struct fuse_iqueue *); -}; - -struct fuse_iqueue { - unsigned int connected; - spinlock_t lock; - wait_queue_head_t waitq; - u64 reqctr; - struct list_head pending; - struct list_head interrupts; - struct fuse_forget_link forget_list_head; - struct fuse_forget_link *forget_list_tail; - int forget_batch; - struct fasync_struct *fasync; - const struct fuse_iqueue_ops *ops; - void *priv; -}; - -struct fuse_pqueue { - unsigned int connected; - spinlock_t lock; - struct list_head *processing; - struct list_head io; -}; - -struct fuse_dev { - struct fuse_conn *fc; - struct fuse_pqueue pq; - struct list_head entry; -}; - -enum fuse_dax_mode { - FUSE_DAX_INODE_DEFAULT = 0, - FUSE_DAX_ALWAYS = 1, - FUSE_DAX_NEVER = 2, - FUSE_DAX_INODE_USER = 3, -}; - -struct fuse_conn_dax; - -struct fuse_sync_bucket; - -struct fuse_ring; - -struct fuse_conn { - spinlock_t lock; - refcount_t count; - atomic_t dev_count; - atomic_t epoch; - struct callback_head rcu; - kuid_t user_id; - kgid_t group_id; - struct pid_namespace *pid_ns; - struct user_namespace *user_ns; - unsigned int max_read; - unsigned int max_write; - unsigned int max_pages; - unsigned int max_pages_limit; - struct fuse_iqueue iq; - atomic64_t khctr; - struct rb_root polled_files; - unsigned int max_background; - unsigned int congestion_threshold; - unsigned int num_background; - unsigned int active_background; - struct list_head bg_queue; - spinlock_t bg_lock; - int initialized; - int blocked; - wait_queue_head_t blocked_waitq; - unsigned int connected; - bool aborted; - unsigned int conn_error: 1; - unsigned int conn_init: 1; - unsigned int async_read: 1; - unsigned int abort_err: 1; - unsigned int atomic_o_trunc: 1; - unsigned int export_support: 1; - unsigned int writeback_cache: 1; - unsigned int parallel_dirops: 1; - unsigned int handle_killpriv: 1; - unsigned int cache_symlinks: 1; - unsigned int legacy_opts_show: 1; - unsigned int handle_killpriv_v2: 1; - unsigned int no_open: 1; - unsigned int no_opendir: 1; - unsigned int no_fsync: 1; - unsigned int no_fsyncdir: 1; - unsigned int no_flush: 1; - unsigned int no_setxattr: 1; - unsigned int setxattr_ext: 1; - unsigned int no_getxattr: 1; - unsigned int no_listxattr: 1; - unsigned int no_removexattr: 1; - unsigned int no_lock: 1; - unsigned int no_access: 1; - unsigned int no_create: 1; - unsigned int no_interrupt: 1; - unsigned int no_bmap: 1; - unsigned int no_poll: 1; - unsigned int big_writes: 1; - unsigned int dont_mask: 1; - unsigned int no_flock: 1; - unsigned int no_fallocate: 1; - unsigned int no_rename2: 1; - unsigned int auto_inval_data: 1; - unsigned int explicit_inval_data: 1; - unsigned int do_readdirplus: 1; - unsigned int readdirplus_auto: 1; - unsigned int async_dio: 1; - unsigned int no_lseek: 1; - unsigned int posix_acl: 1; - unsigned int default_permissions: 1; - unsigned int allow_other: 1; - unsigned int no_copy_file_range: 1; - unsigned int destroy: 1; - unsigned int delete_stale: 1; - unsigned int no_control: 1; - unsigned int no_force_umount: 1; - unsigned int auto_submounts: 1; - unsigned int sync_fs: 1; - unsigned int init_security: 1; - unsigned int create_supp_group: 1; - unsigned int inode_dax: 1; - unsigned int no_tmpfile: 1; - unsigned int direct_io_allow_mmap: 1; - unsigned int no_statx: 1; - unsigned int passthrough: 1; - unsigned int use_pages_for_kvec_io: 1; - unsigned int no_link: 1; - unsigned int io_uring; - int max_stack_depth; - atomic_t num_waiting; - unsigned int minor; - struct list_head entry; - dev_t dev; - u32 scramble_key[4]; - atomic64_t attr_version; - atomic64_t evict_ctr; - u32 name_max; - void (*release)(struct fuse_conn *); - struct rw_semaphore killsb; - struct list_head devices; - enum fuse_dax_mode dax_mode; - struct fuse_conn_dax *dax; - struct list_head mounts; - struct fuse_sync_bucket *curr_bucket; - struct idr backing_files_map; - struct fuse_ring *ring; - struct { - struct delayed_work work; - unsigned int req_timeout; - } timeout; - u8 blkbits; -}; - -struct fuse_sync_bucket { - atomic_t count; - wait_queue_head_t waitq; - struct callback_head rcu; -}; - -struct fuse_ring_queue; - -struct fuse_ring { - struct fuse_conn *fc; - size_t nr_queues; - size_t max_payload_sz; - struct fuse_ring_queue **queues; - unsigned int stop_debug_log: 1; - wait_queue_head_t stop_waitq; - struct delayed_work async_teardown_work; - long unsigned int teardown_time; - atomic_t queue_refs; - bool ready; -}; - -struct fuse_ring_queue { - struct fuse_ring *ring; - unsigned int qid; - spinlock_t lock; - struct list_head ent_avail_queue; - struct list_head ent_w_req_queue; - struct list_head ent_commit_queue; - struct list_head ent_in_userspace; - struct list_head ent_released; - struct list_head fuse_req_queue; - struct list_head fuse_req_bg_queue; - struct fuse_pqueue fpq; - unsigned int active_background; - bool stopped; -}; - -struct fuse_copy_state { - struct fuse_req *req; - struct iov_iter *iter; - struct pipe_buffer *pipebufs; - struct pipe_buffer *currbuf; - struct pipe_inode_info *pipe; - long unsigned int nr_segs; - struct page *pg; - unsigned int len; - unsigned int offset; - bool write: 1; - bool move_folios: 1; - bool is_uring: 1; - struct { - unsigned int copied_sz; - } ring; -}; - -struct trace_event_raw_fuse_request_send { - struct trace_entry ent; - dev_t connection; - uint64_t unique; - enum fuse_opcode opcode; - uint32_t len; - char __data[0]; -}; - -struct trace_event_raw_fuse_request_end { - struct trace_entry ent; - dev_t connection; - uint64_t unique; - uint32_t len; - int32_t error; - char __data[0]; -}; - -struct trace_event_data_offsets_fuse_request_send {}; - -struct trace_event_data_offsets_fuse_request_end {}; - -typedef void (*btf_trace_fuse_request_send)(void *, const struct fuse_req *); - -typedef void (*btf_trace_fuse_request_end)(void *, const struct fuse_req *); - -struct fuse_retrieve_args { - struct fuse_args_pages ap; - struct fuse_notify_retrieve_in inarg; -}; - -struct fuse_submount_lookup { - refcount_t count; - u64 nodeid; - struct fuse_forget_link *forget; -}; - -struct fuse_backing { - struct file *file; - struct cred *cred; - refcount_t count; - struct callback_head rcu; -}; - -struct fuse_inode_dax; - -struct fuse_inode { - struct inode inode; - u64 nodeid; - u64 nlookup; - struct fuse_forget_link *forget; - u64 i_time; - u32 inval_mask; - umode_t orig_i_mode; - struct timespec64 i_btime; - u64 orig_ino; - u64 attr_version; - union { - struct { - struct list_head write_files; - struct list_head queued_writes; - int writectr; - int iocachectr; - wait_queue_head_t page_waitq; - wait_queue_head_t direct_io_waitq; - }; - struct { - bool cached; - loff_t size; - loff_t pos; - u64 version; - struct timespec64 mtime; - u64 iversion; - spinlock_t lock; - } rdc; - }; - long unsigned int state; - struct mutex mutex; - spinlock_t lock; - struct fuse_inode_dax *dax; - struct fuse_submount_lookup *submount_lookup; - struct fuse_backing *fb; - u8 cached_i_blkbits; -}; - -enum { - FUSE_I_ADVISE_RDPLUS = 0, - FUSE_I_INIT_RDPLUS = 1, - FUSE_I_SIZE_UNSTABLE = 2, - FUSE_I_BAD = 3, - FUSE_I_BTIME = 4, - FUSE_I_CACHE_IO_MODE = 5, -}; - -struct fuse_attr { - uint64_t ino; - uint64_t size; - uint64_t blocks; - uint64_t atime; - uint64_t mtime; - uint64_t ctime; - uint32_t atimensec; - uint32_t mtimensec; - uint32_t ctimensec; - uint32_t mode; - uint32_t nlink; - uint32_t uid; - uint32_t gid; - uint32_t rdev; - uint32_t blksize; - uint32_t flags; -}; - -struct fuse_sx_time { - int64_t tv_sec; - uint32_t tv_nsec; - int32_t __reserved; -}; - -struct fuse_statx { - uint32_t mask; - uint32_t blksize; - uint64_t attributes; - uint32_t nlink; - uint32_t uid; - uint32_t gid; - uint16_t mode; - uint16_t __spare0[1]; - uint64_t ino; - uint64_t size; - uint64_t blocks; - uint64_t attributes_mask; - struct fuse_sx_time atime; - struct fuse_sx_time btime; - struct fuse_sx_time ctime; - struct fuse_sx_time mtime; - uint32_t rdev_major; - uint32_t rdev_minor; - uint32_t dev_major; - uint32_t dev_minor; - uint64_t __spare2[14]; -}; - -struct fuse_entry_out { - uint64_t nodeid; - uint64_t generation; - uint64_t entry_valid; - uint64_t attr_valid; - uint32_t entry_valid_nsec; - uint32_t attr_valid_nsec; - struct fuse_attr attr; -}; - -struct fuse_read_in { - uint64_t fh; - uint64_t offset; - uint32_t size; - uint32_t read_flags; - uint64_t lock_owner; - uint32_t flags; - uint32_t padding; -}; - -struct fuse_write_in { - uint64_t fh; - uint64_t offset; - uint32_t size; - uint32_t write_flags; - uint64_t lock_owner; - uint32_t flags; - uint32_t padding; -}; - -struct fuse_write_out { - uint32_t size; - uint32_t padding; -}; - -struct fuse_dirent { - uint64_t ino; - uint64_t off; - uint32_t namelen; - uint32_t type; - char name[0]; -}; - -struct fuse_direntplus { - struct fuse_entry_out entry_out; - struct fuse_dirent dirent; -}; - -struct fuse_io_priv { - struct kref refcnt; - int async; - spinlock_t lock; - unsigned int reqs; - ssize_t bytes; - size_t size; - __u64 offset; - bool write; - bool should_dirty; - int err; - struct kiocb *iocb; - struct completion *done; - bool blocking; -}; - -struct fuse_io_args { - union { - struct { - struct fuse_read_in in; - u64 attr_ver; - } read; - struct { - struct fuse_write_in in; - struct fuse_write_out out; - bool folio_locked; - } write; - }; - struct fuse_args_pages ap; - struct fuse_io_priv *io; - struct fuse_file *ff; -}; - -enum fuse_parse_result { - FOUND_ERR = -1, - FOUND_NONE = 0, - FOUND_SOME = 1, - FOUND_ALL = 2, -}; - -typedef struct {} local_lock_t; - -typedef struct { - local_lock_t llock; - u8 acquired; -} local_trylock_t; - -struct radix_tree_preload { - local_lock_t lock; - unsigned int nr; - struct xa_node *nodes; -}; - -typedef struct vfsmount * (*debugfs_automount_t)(struct dentry *, void *); - -struct debugfs_short_fops { - ssize_t (*read)(struct file *, char *, size_t, loff_t *); - ssize_t (*write)(struct file *, const char *, size_t, loff_t *); - loff_t (*llseek)(struct file *, loff_t, int); -}; - -struct debugfs_cancellation { - struct list_head list; - void (*cancel)(struct dentry *, void *); - void *cancel_data; -}; - -struct debugfs_inode_info { - struct inode vfs_inode; - union { - const void *raw; - const struct file_operations *real_fops; - const struct debugfs_short_fops *short_fops; - debugfs_automount_t automount; - }; - void *aux; -}; - -struct debugfs_fsdata { - const struct file_operations *real_fops; - const struct debugfs_short_fops *short_fops; - struct { - refcount_t active_users; - struct completion active_users_drained; - struct mutex cancellations_mtx; - struct list_head cancellations; - unsigned int methods; - }; -}; - -struct debugfs_fs_info { - kuid_t uid; - kgid_t gid; - umode_t mode; - unsigned int opts; -}; - -enum { - Opt_uid___2 = 0, - Opt_gid___3 = 1, - Opt_mode___2 = 2, - Opt_source = 3, -}; - -enum kmsg_dump_reason { - KMSG_DUMP_UNDEF = 0, - KMSG_DUMP_PANIC = 1, - KMSG_DUMP_OOPS = 2, - KMSG_DUMP_EMERG = 3, - KMSG_DUMP_SHUTDOWN = 4, - KMSG_DUMP_MAX = 5, -}; - -enum pstore_type_id { - PSTORE_TYPE_DMESG = 0, - PSTORE_TYPE_MCE = 1, - PSTORE_TYPE_CONSOLE = 2, - PSTORE_TYPE_FTRACE = 3, - PSTORE_TYPE_PPC_RTAS = 4, - PSTORE_TYPE_PPC_OF = 5, - PSTORE_TYPE_PPC_COMMON = 6, - PSTORE_TYPE_PMSG = 7, - PSTORE_TYPE_PPC_OPAL = 8, - PSTORE_TYPE_MAX = 9, -}; - -struct pstore_info; - -struct pstore_record { - struct pstore_info *psi; - enum pstore_type_id type; - u64 id; - struct timespec64 time; - char *buf; - ssize_t size; - ssize_t ecc_notice_size; - void *priv; - int count; - enum kmsg_dump_reason reason; - unsigned int part; - bool compressed; -}; - -struct pstore_info { - struct module *owner; - const char *name; - raw_spinlock_t buf_lock; - char *buf; - size_t bufsize; - struct mutex read_mutex; - int flags; - int max_reason; - void *data; - int (*open)(struct pstore_info *); - int (*close)(struct pstore_info *); - ssize_t (*read)(struct pstore_record *); - int (*write)(struct pstore_record *); - int (*write_user)(struct pstore_record *, const char *); - int (*erase)(struct pstore_record *); -}; - -struct pstore_ftrace_record { - long unsigned int ip; - long unsigned int parent_ip; - u64 ts; -}; - -struct pstore_private { - struct list_head list; - struct dentry *dentry; - struct pstore_record *record; - size_t total_size; -}; - -struct pstore_ftrace_seq_data { - const void *ptr; - size_t off; - size_t size; -}; - -enum { - Opt_kmsg_bytes = 0, -}; - -struct pstore_context { - unsigned int kmsg_bytes; -}; - -struct efivarfs_mount_opts { - kuid_t uid; - kgid_t gid; -}; - -struct efivarfs_fs_info { - struct efivarfs_mount_opts mount_opts; - struct super_block *sb; - struct notifier_block nb; -}; - -struct efi_variable { - efi_char16_t VariableName[512]; - efi_guid_t VendorGuid; -}; - -struct efivar_entry { - struct efi_variable var; - struct inode vfs_inode; - long unsigned int open_count; - bool removed; -}; - -enum { - Opt_uid___3 = 0, - Opt_gid___4 = 1, -}; - -enum cache_type { - CACHE_TYPE_NOCACHE = 0, - CACHE_TYPE_INST = 1, - CACHE_TYPE_DATA = 2, - CACHE_TYPE_SEPARATE = 3, - CACHE_TYPE_UNIFIED = 4, -}; - -struct cacheinfo { - unsigned int id; - enum cache_type type; - unsigned int level; - unsigned int coherency_line_size; - unsigned int number_of_sets; - unsigned int ways_of_associativity; - unsigned int physical_line_partition; - unsigned int size; - cpumask_t shared_cpu_map; - unsigned int attributes; - void *fw_token; - bool disable_sysfs; - void *priv; -}; - -struct mbm_state { - u64 prev_bw_bytes; - u32 prev_bw; -}; - -struct mon_evt { - enum resctrl_event_id evtid; - char *name; - bool configurable; - struct list_head list; -}; - -struct rdtgroup; - -struct rmid_read { - struct rdtgroup *rgrp; - struct rdt_resource *r; - struct rdt_mon_domain *d; - enum resctrl_event_id evtid; - bool first; - struct cacheinfo *ci; - int err; - u64 val; - void *arch_mon_ctx; -}; - -enum rdt_group_type { - RDTCTRL_GROUP = 0, - RDTMON_GROUP = 1, - RDT_NUM_GROUP = 2, -}; - -struct mongroup { - struct kernfs_node *mon_data_kn; - struct rdtgroup *parent; - struct list_head crdtgrp_list; - u32 rmid; -}; - -enum rdtgrp_mode { - RDT_MODE_SHAREABLE = 0, - RDT_MODE_EXCLUSIVE = 1, - RDT_MODE_PSEUDO_LOCKSETUP = 2, - RDT_MODE_PSEUDO_LOCKED = 3, - RDT_NUM_MODES = 4, -}; - -struct rdtgroup { - struct kernfs_node *kn; - struct list_head rdtgroup_list; - u32 closid; - struct cpumask cpu_mask; - int flags; - atomic_t waitcount; - enum rdt_group_type type; - struct mongroup mon; - enum rdtgrp_mode mode; - enum resctrl_event_id mba_mbps_event; - struct pseudo_lock_region *plr; -}; - -struct trace_event_raw_mon_llc_occupancy_limbo { - struct trace_entry ent; - u32 ctrl_hw_id; - u32 mon_hw_id; - int domain_id; - u64 llc_occupancy_bytes; - char __data[0]; -}; - -struct trace_event_data_offsets_mon_llc_occupancy_limbo {}; - -typedef void (*btf_trace_mon_llc_occupancy_limbo)(void *, u32, u32, int, u64); - -struct rmid_entry { - u32 closid; - u32 rmid; - int busy; - struct list_head list; -}; - -typedef unsigned int __kernel_mode_t; - -typedef int __kernel_ipc_pid_t; - -typedef unsigned int __kernel_uid_t; - -typedef unsigned int __kernel_gid_t; - -struct ipc_perm { - __kernel_key_t key; - __kernel_uid_t uid; - __kernel_gid_t gid; - __kernel_uid_t cuid; - __kernel_gid_t cgid; - __kernel_mode_t mode; - short unsigned int seq; -}; - -struct ipc64_perm { - __kernel_key_t key; - __kernel_uid32_t uid; - __kernel_gid32_t gid; - __kernel_uid32_t cuid; - __kernel_gid32_t cgid; - __kernel_mode_t mode; - unsigned char __pad1[0]; - short unsigned int seq; - short unsigned int __pad2; - __kernel_ulong_t __unused1; - __kernel_ulong_t __unused2; -}; - -struct msgbuf { - __kernel_long_t mtype; - char mtext[1]; -}; - -struct msg; - -struct msqid_ds { - struct ipc_perm msg_perm; - struct msg *msg_first; - struct msg *msg_last; - __kernel_old_time_t msg_stime; - __kernel_old_time_t msg_rtime; - __kernel_old_time_t msg_ctime; - long unsigned int msg_lcbytes; - long unsigned int msg_lqbytes; - short unsigned int msg_cbytes; - short unsigned int msg_qnum; - short unsigned int msg_qbytes; - __kernel_ipc_pid_t msg_lspid; - __kernel_ipc_pid_t msg_lrpid; -}; - -struct msqid64_ds { - struct ipc64_perm msg_perm; - long int msg_stime; - long int msg_rtime; - long int msg_ctime; - long unsigned int msg_cbytes; - long unsigned int msg_qnum; - long unsigned int msg_qbytes; - __kernel_pid_t msg_lspid; - __kernel_pid_t msg_lrpid; - long unsigned int __unused4; - long unsigned int __unused5; -}; - -struct msginfo { - int msgpool; - int msgmap; - int msgmax; - int msgmnb; - int msgmni; - int msgssz; - int msgtql; - short unsigned int msgseg; -}; - -struct msg_msgseg; - -struct msg_msg { - struct list_head m_list; - long int m_type; - size_t m_ts; - struct msg_msgseg *next; - void *security; -}; - -typedef u16 compat_ipc_pid_t; - -typedef s32 compat_ssize_t; - -typedef s32 compat_key_t; - -typedef u16 compat_ushort_t; - -typedef u32 __compat_uid32_t; - -typedef u32 __compat_gid32_t; - -struct compat_ipc64_perm { - compat_key_t key; - __compat_uid32_t uid; - __compat_gid32_t gid; - __compat_uid32_t cuid; - __compat_gid32_t cgid; - compat_mode_t mode; - unsigned char __pad1[2]; - compat_ushort_t seq; - compat_ushort_t __pad2; - compat_ulong_t unused1; - compat_ulong_t unused2; -}; - -struct compat_msqid64_ds { - struct compat_ipc64_perm msg_perm; - compat_ulong_t msg_stime; - compat_ulong_t msg_stime_high; - compat_ulong_t msg_rtime; - compat_ulong_t msg_rtime_high; - compat_ulong_t msg_ctime; - compat_ulong_t msg_ctime_high; - compat_ulong_t msg_cbytes; - compat_ulong_t msg_qnum; - compat_ulong_t msg_qbytes; - compat_pid_t msg_lspid; - compat_pid_t msg_lrpid; - compat_ulong_t __unused4; - compat_ulong_t __unused5; -}; - -struct ipc_params { - key_t key; - int flg; - union { - size_t size; - int nsems; - } u; -}; - -struct ipc_ops { - int (*getnew)(struct ipc_namespace *, struct ipc_params *); - int (*associate)(struct kern_ipc_perm *, int); - int (*more_checks)(struct kern_ipc_perm *, struct ipc_params *); -}; - -struct compat_ipc_perm { - key_t key; - __compat_uid_t uid; - __compat_gid_t gid; - __compat_uid_t cuid; - __compat_gid_t cgid; - compat_mode_t mode; - short unsigned int seq; -}; - -struct msg_queue { - struct kern_ipc_perm q_perm; - time64_t q_stime; - time64_t q_rtime; - time64_t q_ctime; - long unsigned int q_cbytes; - long unsigned int q_qnum; - long unsigned int q_qbytes; - struct pid *q_lspid; - struct pid *q_lrpid; - struct list_head q_messages; - struct list_head q_receivers; - struct list_head q_senders; - long: 64; - long: 64; -}; - -struct msg_receiver { - struct list_head r_list; - struct task_struct *r_tsk; - int r_mode; - long int r_msgtype; - long int r_maxsize; - struct msg_msg *r_msg; -}; - -struct msg_sender { - struct list_head list; - struct task_struct *tsk; - size_t msgsz; -}; - -struct compat_msqid_ds { - struct compat_ipc_perm msg_perm; - compat_uptr_t msg_first; - compat_uptr_t msg_last; - old_time32_t msg_stime; - old_time32_t msg_rtime; - old_time32_t msg_ctime; - compat_ulong_t msg_lcbytes; - compat_ulong_t msg_lqbytes; - short unsigned int msg_cbytes; - short unsigned int msg_qnum; - short unsigned int msg_qbytes; - compat_ipc_pid_t msg_lspid; - compat_ipc_pid_t msg_lrpid; -}; - -struct compat_msgbuf { - compat_long_t mtype; - char mtext[0]; -}; - -struct sigevent { - sigval_t sigev_value; - int sigev_signo; - int sigev_notify; - union { - int _pad[12]; - int _tid; - struct { - void (*_function)(sigval_t); - void *_attribute; - } _sigev_thread; - } _sigev_un; -}; - -typedef s32 compat_int_t; - -union compat_sigval { - compat_int_t sival_int; - compat_uptr_t sival_ptr; -}; - -typedef union compat_sigval compat_sigval_t; - -struct compat_sigevent { - compat_sigval_t sigev_value; - compat_int_t sigev_signo; - compat_int_t sigev_notify; - union { - compat_int_t _pad[13]; - compat_int_t _tid; - struct { - compat_uptr_t _function; - compat_uptr_t _attribute; - } _sigev_thread; - } _sigev_un; -}; - -typedef int (*initxattrs)(struct inode *, const struct xattr *, void *); - -struct mqueue_fs_context { - struct ipc_namespace *ipc_ns; - bool newns; -}; - -struct posix_msg_tree_node { - struct rb_node rb_node; - struct list_head msg_list; - int priority; -}; - -struct ext_wait_queue { - struct task_struct *task; - struct list_head list; - struct msg_msg *msg; - int state; -}; - -struct mqueue_inode_info { - spinlock_t lock; - struct inode vfs_inode; - wait_queue_head_t wait_q; - struct rb_root msg_tree; - struct rb_node *msg_tree_rightmost; - struct posix_msg_tree_node *node_cache; - struct mq_attr attr; - struct sigevent notify; - struct pid *notify_owner; - u32 notify_self_exec_id; - struct user_namespace *notify_user_ns; - struct ucounts *ucounts; - struct sock *notify_sock; - struct sk_buff *notify_cookie; - struct ext_wait_queue e_wait_q[2]; - long unsigned int qsize; -}; - -struct compat_mq_attr { - compat_long_t mq_flags; - compat_long_t mq_maxmsg; - compat_long_t mq_msgsize; - compat_long_t mq_curmsgs; - compat_long_t __reserved[4]; -}; - -struct kernel_pkey_query { - __u32 supported_ops; - __u32 key_size; - __u16 max_data_size; - __u16 max_sig_size; - __u16 max_enc_size; - __u16 max_dec_size; -}; - -enum kernel_pkey_operation { - kernel_pkey_encrypt = 0, - kernel_pkey_decrypt = 1, - kernel_pkey_sign = 2, - kernel_pkey_verify = 3, -}; - -struct kernel_pkey_params { - struct key *key; - const char *encoding; - const char *hash_algo; - char *info; - __u32 in_len; - union { - __u32 out_len; - __u32 in2_len; - }; - enum kernel_pkey_operation op: 8; -}; - -enum key_lookup_flag { - KEY_LOOKUP_CREATE = 1, - KEY_LOOKUP_PARTIAL = 2, - KEY_LOOKUP_ALL = 3, -}; - -enum key_state { - KEY_IS_UNINSTANTIATED = 0, - KEY_IS_POSITIVE = 1, -}; - -struct key_user { - struct rb_node node; - struct mutex cons_lock; - spinlock_t lock; - refcount_t usage; - atomic_t nkeys; - atomic_t nikeys; - kuid_t uid; - int qnkeys; - int qnbytes; -}; - -struct request_key_auth { - struct callback_head rcu; - struct key *target_key; - struct key *dest_keyring; - const struct cred *cred; - void *callout_info; - size_t callout_len; - pid_t pid; - char op[8]; -}; - -struct key_preparsed_payload { - const char *orig_description; - char *description; - union key_payload payload; - const void *data; - size_t datalen; - size_t quotalen; - time64_t expiry; -}; - -struct key_match_data { - bool (*cmp)(const struct key *, const struct key_match_data *); - const void *raw_data; - void *preparsed; - unsigned int lookup_type; -}; - -struct keyring_search_context { - struct keyring_index_key index_key; - const struct cred *cred; - struct key_match_data match_data; - unsigned int flags; - int (*iterator)(const void *, void *); - int skipped_ret; - bool possessed; - key_ref_t result; - time64_t now; -}; - -enum tpm_duration { - TPM_SHORT = 0, - TPM_MEDIUM = 1, - TPM_LONG = 2, - TPM_LONG_LONG = 3, - TPM_UNDEFINED = 4, - TPM_NUM_DURATIONS = 4, -}; - -struct trusted_key_payload { - struct callback_head rcu; - unsigned int key_len; - unsigned int blob_len; - unsigned char migratable; - unsigned char old_format; - unsigned char key[129]; - unsigned char blob[512]; -}; - -struct trusted_key_ops { - unsigned char migratable; - int (*init)(void); - int (*seal)(struct trusted_key_payload *, char *); - int (*unseal)(struct trusted_key_payload *, char *); - int (*get_random)(unsigned char *, size_t); - void (*exit)(void); -}; - -struct trusted_key_source { - char *name; - struct trusted_key_ops *ops; -}; - -enum { - Opt_err = 0, - Opt_new = 1, - Opt_load = 2, - Opt_update = 3, -}; - -enum asn1_class { - ASN1_UNIV = 0, - ASN1_APPL = 1, - ASN1_CONT = 2, - ASN1_PRIV = 3, -}; - -enum asn1_method { - ASN1_PRIM = 0, - ASN1_CONS = 1, -}; - -enum asn1_tag { - ASN1_EOC = 0, - ASN1_BOOL = 1, - ASN1_INT = 2, - ASN1_BTS = 3, - ASN1_OTS = 4, - ASN1_NULL = 5, - ASN1_OID = 6, - ASN1_ODE = 7, - ASN1_EXT = 8, - ASN1_REAL = 9, - ASN1_ENUM = 10, - ASN1_EPDV = 11, - ASN1_UTF8STR = 12, - ASN1_RELOID = 13, - ASN1_SEQ = 16, - ASN1_SET = 17, - ASN1_NUMSTR = 18, - ASN1_PRNSTR = 19, - ASN1_TEXSTR = 20, - ASN1_VIDSTR = 21, - ASN1_IA5STR = 22, - ASN1_UNITIM = 23, - ASN1_GENTIM = 24, - ASN1_GRASTR = 25, - ASN1_VISSTR = 26, - ASN1_GENSTR = 27, - ASN1_UNISTR = 28, - ASN1_CHRSTR = 29, - ASN1_BMPSTR = 30, - ASN1_LONG_TAG = 31, -}; - -typedef int (*asn1_action_t)(void *, size_t, unsigned char, const void *, size_t); - -struct asn1_decoder { - const unsigned char *machine; - size_t machlen; - const asn1_action_t *actions; -}; - -enum asn1_opcode { - ASN1_OP_MATCH = 0, - ASN1_OP_MATCH_OR_SKIP = 1, - ASN1_OP_MATCH_ACT = 2, - ASN1_OP_MATCH_ACT_OR_SKIP = 3, - ASN1_OP_MATCH_JUMP = 4, - ASN1_OP_MATCH_JUMP_OR_SKIP = 5, - ASN1_OP_MATCH_ANY = 8, - ASN1_OP_MATCH_ANY_OR_SKIP = 9, - ASN1_OP_MATCH_ANY_ACT = 10, - ASN1_OP_MATCH_ANY_ACT_OR_SKIP = 11, - ASN1_OP_COND_MATCH_OR_SKIP = 17, - ASN1_OP_COND_MATCH_ACT_OR_SKIP = 19, - ASN1_OP_COND_MATCH_JUMP_OR_SKIP = 21, - ASN1_OP_COND_MATCH_ANY = 24, - ASN1_OP_COND_MATCH_ANY_OR_SKIP = 25, - ASN1_OP_COND_MATCH_ANY_ACT = 26, - ASN1_OP_COND_MATCH_ANY_ACT_OR_SKIP = 27, - ASN1_OP_COND_FAIL = 28, - ASN1_OP_COMPLETE = 29, - ASN1_OP_ACT = 30, - ASN1_OP_MAYBE_ACT = 31, - ASN1_OP_END_SEQ = 32, - ASN1_OP_END_SET = 33, - ASN1_OP_END_SEQ_OF = 34, - ASN1_OP_END_SET_OF = 35, - ASN1_OP_END_SEQ_ACT = 36, - ASN1_OP_END_SET_ACT = 37, - ASN1_OP_END_SEQ_OF_ACT = 38, - ASN1_OP_END_SET_OF_ACT = 39, - ASN1_OP_RETURN = 40, - ASN1_OP__NR = 41, -}; - -enum tpm2key_actions { - ACT_tpm2_key_parent = 0, - ACT_tpm2_key_priv = 1, - ACT_tpm2_key_pub = 2, - ACT_tpm2_key_type = 3, - NR__tpm2key_actions = 4, -}; - -struct encrypted_key_payload { - struct callback_head rcu; - char *format; - char *master_desc; - char *datalen; - u8 *iv; - u8 *encrypted_data; - short unsigned int datablob_len; - short unsigned int decrypted_datalen; - short unsigned int payload_datalen; - short unsigned int encrypted_key_format; - u8 *decrypted_data; - u8 payload_data[0]; -}; - -struct skcipher_alg_common { - unsigned int min_keysize; - unsigned int max_keysize; - unsigned int ivsize; - unsigned int chunksize; - unsigned int statesize; - struct crypto_alg base; -}; - -struct ecryptfs_session_key { - u32 flags; - u32 encrypted_key_size; - u32 decrypted_key_size; - u8 encrypted_key[512]; - u8 decrypted_key[64]; -}; - -struct ecryptfs_password { - u32 password_bytes; - s32 hash_algo; - u32 hash_iterations; - u32 session_key_encryption_key_bytes; - u32 flags; - u8 session_key_encryption_key[64]; - u8 signature[17]; - u8 salt[8]; -}; - -struct ecryptfs_private_key { - u32 key_size; - u32 data_len; - u8 signature[17]; - char pki_type[17]; - u8 data[0]; -}; - -struct ecryptfs_auth_tok { - u16 version; - u16 token_type; - u32 flags; - struct ecryptfs_session_key session_key; - u8 reserved[32]; - union { - struct ecryptfs_password password; - struct ecryptfs_private_key private_key; - } token; -}; - -enum { - Opt_new___2 = 0, - Opt_load___2 = 1, - Opt_update___2 = 2, - Opt_err___2 = 3, -}; - -enum { - Opt_default = 0, - Opt_ecryptfs = 1, - Opt_enc32 = 2, - Opt_error = 3, -}; - -enum derived_key_type { - ENC_KEY = 0, - AUTH_KEY = 1, -}; - -enum lsm_event { - LSM_POLICY_CHANGE = 0, -}; - -struct ethhdr { - unsigned char h_dest[6]; - unsigned char h_source[6]; - __be16 h_proto; -}; - -struct ethtool_drvinfo { - __u32 cmd; - char driver[32]; - char version[32]; - char fw_version[32]; - char bus_info[32]; - char erom_version[32]; - char reserved2[12]; - __u32 n_priv_flags; - __u32 n_stats; - __u32 testinfo_len; - __u32 eedump_len; - __u32 regdump_len; -}; - -struct ethtool_wolinfo { - __u32 cmd; - __u32 supported; - __u32 wolopts; - __u8 sopass[6]; -}; - -struct ethtool_tunable { - __u32 cmd; - __u32 id; - __u32 type_id; - __u32 len; - void *data[0]; -}; - -struct ethtool_regs { - __u32 cmd; - __u32 version; - __u32 len; - __u8 data[0]; -}; - -struct ethtool_eeprom { - __u32 cmd; - __u32 magic; - __u32 offset; - __u32 len; - __u8 data[0]; -}; - -struct ethtool_modinfo { - __u32 cmd; - __u32 type; - __u32 eeprom_len; - __u32 reserved[8]; -}; - -struct ethtool_coalesce { - __u32 cmd; - __u32 rx_coalesce_usecs; - __u32 rx_max_coalesced_frames; - __u32 rx_coalesce_usecs_irq; - __u32 rx_max_coalesced_frames_irq; - __u32 tx_coalesce_usecs; - __u32 tx_max_coalesced_frames; - __u32 tx_coalesce_usecs_irq; - __u32 tx_max_coalesced_frames_irq; - __u32 stats_block_coalesce_usecs; - __u32 use_adaptive_rx_coalesce; - __u32 use_adaptive_tx_coalesce; - __u32 pkt_rate_low; - __u32 rx_coalesce_usecs_low; - __u32 rx_max_coalesced_frames_low; - __u32 tx_coalesce_usecs_low; - __u32 tx_max_coalesced_frames_low; - __u32 pkt_rate_high; - __u32 rx_coalesce_usecs_high; - __u32 rx_max_coalesced_frames_high; - __u32 tx_coalesce_usecs_high; - __u32 tx_max_coalesced_frames_high; - __u32 rate_sample_interval; -}; - -struct ethtool_ringparam { - __u32 cmd; - __u32 rx_max_pending; - __u32 rx_mini_max_pending; - __u32 rx_jumbo_max_pending; - __u32 tx_max_pending; - __u32 rx_pending; - __u32 rx_mini_pending; - __u32 rx_jumbo_pending; - __u32 tx_pending; -}; - -struct ethtool_channels { - __u32 cmd; - __u32 max_rx; - __u32 max_tx; - __u32 max_other; - __u32 max_combined; - __u32 rx_count; - __u32 tx_count; - __u32 other_count; - __u32 combined_count; -}; - -struct ethtool_pauseparam { - __u32 cmd; - __u32 autoneg; - __u32 rx_pause; - __u32 tx_pause; -}; - -enum ethtool_link_ext_state { - ETHTOOL_LINK_EXT_STATE_AUTONEG = 0, - ETHTOOL_LINK_EXT_STATE_LINK_TRAINING_FAILURE = 1, - ETHTOOL_LINK_EXT_STATE_LINK_LOGICAL_MISMATCH = 2, - ETHTOOL_LINK_EXT_STATE_BAD_SIGNAL_INTEGRITY = 3, - ETHTOOL_LINK_EXT_STATE_NO_CABLE = 4, - ETHTOOL_LINK_EXT_STATE_CABLE_ISSUE = 5, - ETHTOOL_LINK_EXT_STATE_EEPROM_ISSUE = 6, - ETHTOOL_LINK_EXT_STATE_CALIBRATION_FAILURE = 7, - ETHTOOL_LINK_EXT_STATE_POWER_BUDGET_EXCEEDED = 8, - ETHTOOL_LINK_EXT_STATE_OVERHEAT = 9, - ETHTOOL_LINK_EXT_STATE_MODULE = 10, -}; - -enum ethtool_link_ext_substate_autoneg { - ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_PARTNER_DETECTED = 1, - ETHTOOL_LINK_EXT_SUBSTATE_AN_ACK_NOT_RECEIVED = 2, - ETHTOOL_LINK_EXT_SUBSTATE_AN_NEXT_PAGE_EXCHANGE_FAILED = 3, - ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_PARTNER_DETECTED_FORCE_MODE = 4, - ETHTOOL_LINK_EXT_SUBSTATE_AN_FEC_MISMATCH_DURING_OVERRIDE = 5, - ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_HCD = 6, -}; - -enum ethtool_link_ext_substate_link_training { - ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_FRAME_LOCK_NOT_ACQUIRED = 1, - ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_LINK_INHIBIT_TIMEOUT = 2, - ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_LINK_PARTNER_DID_NOT_SET_RECEIVER_READY = 3, - ETHTOOL_LINK_EXT_SUBSTATE_LT_REMOTE_FAULT = 4, -}; - -enum ethtool_link_ext_substate_link_logical_mismatch { - ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_ACQUIRE_BLOCK_LOCK = 1, - ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_ACQUIRE_AM_LOCK = 2, - ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_GET_ALIGN_STATUS = 3, - ETHTOOL_LINK_EXT_SUBSTATE_LLM_FC_FEC_IS_NOT_LOCKED = 4, - ETHTOOL_LINK_EXT_SUBSTATE_LLM_RS_FEC_IS_NOT_LOCKED = 5, -}; - -enum ethtool_link_ext_substate_bad_signal_integrity { - ETHTOOL_LINK_EXT_SUBSTATE_BSI_LARGE_NUMBER_OF_PHYSICAL_ERRORS = 1, - ETHTOOL_LINK_EXT_SUBSTATE_BSI_UNSUPPORTED_RATE = 2, - ETHTOOL_LINK_EXT_SUBSTATE_BSI_SERDES_REFERENCE_CLOCK_LOST = 3, - ETHTOOL_LINK_EXT_SUBSTATE_BSI_SERDES_ALOS = 4, -}; - -enum ethtool_link_ext_substate_cable_issue { - ETHTOOL_LINK_EXT_SUBSTATE_CI_UNSUPPORTED_CABLE = 1, - ETHTOOL_LINK_EXT_SUBSTATE_CI_CABLE_TEST_FAILURE = 2, -}; - -enum ethtool_link_ext_substate_module { - ETHTOOL_LINK_EXT_SUBSTATE_MODULE_CMIS_NOT_READY = 1, -}; - -enum ethtool_mac_stats_src { - ETHTOOL_MAC_STATS_SRC_AGGREGATE = 0, - ETHTOOL_MAC_STATS_SRC_EMAC = 1, - ETHTOOL_MAC_STATS_SRC_PMAC = 2, -}; - -enum ethtool_module_power_mode_policy { - ETHTOOL_MODULE_POWER_MODE_POLICY_HIGH = 1, - ETHTOOL_MODULE_POWER_MODE_POLICY_AUTO = 2, -}; - -enum ethtool_module_power_mode { - ETHTOOL_MODULE_POWER_MODE_LOW = 1, - ETHTOOL_MODULE_POWER_MODE_HIGH = 2, -}; - -enum ethtool_mm_verify_status { - ETHTOOL_MM_VERIFY_STATUS_UNKNOWN = 0, - ETHTOOL_MM_VERIFY_STATUS_INITIAL = 1, - ETHTOOL_MM_VERIFY_STATUS_VERIFYING = 2, - ETHTOOL_MM_VERIFY_STATUS_SUCCEEDED = 3, - ETHTOOL_MM_VERIFY_STATUS_FAILED = 4, - ETHTOOL_MM_VERIFY_STATUS_DISABLED = 5, -}; - -struct ethtool_test { - __u32 cmd; - __u32 flags; - __u32 reserved; - __u32 len; - __u64 data[0]; -}; - -struct ethtool_stats { - __u32 cmd; - __u32 n_stats; - __u64 data[0]; -}; - -struct ethtool_tcpip4_spec { - __be32 ip4src; - __be32 ip4dst; - __be16 psrc; - __be16 pdst; - __u8 tos; -}; - -struct ethtool_ah_espip4_spec { - __be32 ip4src; - __be32 ip4dst; - __be32 spi; - __u8 tos; -}; - -struct ethtool_usrip4_spec { - __be32 ip4src; - __be32 ip4dst; - __be32 l4_4_bytes; - __u8 tos; - __u8 ip_ver; - __u8 proto; -}; - -struct ethtool_tcpip6_spec { - __be32 ip6src[4]; - __be32 ip6dst[4]; - __be16 psrc; - __be16 pdst; - __u8 tclass; -}; - -struct ethtool_ah_espip6_spec { - __be32 ip6src[4]; - __be32 ip6dst[4]; - __be32 spi; - __u8 tclass; -}; - -struct ethtool_usrip6_spec { - __be32 ip6src[4]; - __be32 ip6dst[4]; - __be32 l4_4_bytes; - __u8 tclass; - __u8 l4_proto; -}; - -union ethtool_flow_union { - struct ethtool_tcpip4_spec tcp_ip4_spec; - struct ethtool_tcpip4_spec udp_ip4_spec; - struct ethtool_tcpip4_spec sctp_ip4_spec; - struct ethtool_ah_espip4_spec ah_ip4_spec; - struct ethtool_ah_espip4_spec esp_ip4_spec; - struct ethtool_usrip4_spec usr_ip4_spec; - struct ethtool_tcpip6_spec tcp_ip6_spec; - struct ethtool_tcpip6_spec udp_ip6_spec; - struct ethtool_tcpip6_spec sctp_ip6_spec; - struct ethtool_ah_espip6_spec ah_ip6_spec; - struct ethtool_ah_espip6_spec esp_ip6_spec; - struct ethtool_usrip6_spec usr_ip6_spec; - struct ethhdr ether_spec; - __u8 hdata[52]; -}; - -struct ethtool_flow_ext { - __u8 padding[2]; - unsigned char h_dest[6]; - __be16 vlan_etype; - __be16 vlan_tci; - __be32 data[2]; -}; - -struct ethtool_rx_flow_spec { - __u32 flow_type; - union ethtool_flow_union h_u; - struct ethtool_flow_ext h_ext; - union ethtool_flow_union m_u; - struct ethtool_flow_ext m_ext; - __u64 ring_cookie; - __u32 location; -}; - -struct ethtool_rxnfc { - __u32 cmd; - __u32 flow_type; - __u64 data; - struct ethtool_rx_flow_spec fs; - union { - __u32 rule_cnt; - __u32 rss_context; - }; - __u32 rule_locs[0]; -}; - -struct ethtool_flash { - __u32 cmd; - __u32 region; - char data[128]; -}; - -struct ethtool_dump { - __u32 cmd; - __u32 version; - __u32 flag; - __u32 len; - __u8 data[0]; -}; - -struct ethtool_fecparam { - __u32 cmd; - __u32 active_fec; - __u32 fec; - __u32 reserved; -}; - -struct ethtool_link_settings { - __u32 cmd; - __u32 speed; - __u8 duplex; - __u8 port; - __u8 phy_address; - __u8 autoneg; - __u8 mdio_support; - __u8 eth_tp_mdix; - __u8 eth_tp_mdix_ctrl; - __s8 link_mode_masks_nwords; - __u8 transceiver; - __u8 master_slave_cfg; - __u8 master_slave_state; - __u8 rate_matching; - __u32 reserved[7]; -}; - -struct kernel_ethtool_ringparam { - u32 rx_buf_len; - u8 tcp_data_split; - u8 tx_push; - u8 rx_push; - u32 cqe_size; - u32 tx_push_buf_len; - u32 tx_push_buf_max_len; - u32 hds_thresh; - u32 hds_thresh_max; -}; - -struct ethtool_link_ext_state_info { - enum ethtool_link_ext_state link_ext_state; - union { - enum ethtool_link_ext_substate_autoneg autoneg; - enum ethtool_link_ext_substate_link_training link_training; - enum ethtool_link_ext_substate_link_logical_mismatch link_logical_mismatch; - enum ethtool_link_ext_substate_bad_signal_integrity bad_signal_integrity; - enum ethtool_link_ext_substate_cable_issue cable_issue; - enum ethtool_link_ext_substate_module module; - u32 __link_ext_substate; - }; -}; - -struct ethtool_link_ext_stats { - u64 link_down_events; -}; - -struct ethtool_rxfh_context { - u32 indir_size; - u32 key_size; - u16 priv_size; - u8 hfunc; - u8 input_xfrm; - u8 indir_configured: 1; - u8 key_configured: 1; - u32 key_off; - long: 0; - u8 data[0]; -}; - -struct ethtool_link_ksettings { - struct ethtool_link_settings base; - struct { - long unsigned int supported[2]; - long unsigned int advertising[2]; - long unsigned int lp_advertising[2]; - } link_modes; - u32 lanes; -}; - -struct ethtool_keee { - long unsigned int supported[2]; - long unsigned int advertised[2]; - long unsigned int lp_advertised[2]; - u32 tx_lpi_timer; - bool tx_lpi_enabled; - bool eee_active; - bool eee_enabled; -}; - -struct kernel_ethtool_coalesce { - u8 use_cqe_mode_tx; - u8 use_cqe_mode_rx; - u32 tx_aggr_max_bytes; - u32 tx_aggr_max_frames; - u32 tx_aggr_time_usecs; -}; - -struct ethtool_eth_mac_stats { - enum ethtool_mac_stats_src src; - union { - struct { - u64 FramesTransmittedOK; - u64 SingleCollisionFrames; - u64 MultipleCollisionFrames; - u64 FramesReceivedOK; - u64 FrameCheckSequenceErrors; - u64 AlignmentErrors; - u64 OctetsTransmittedOK; - u64 FramesWithDeferredXmissions; - u64 LateCollisions; - u64 FramesAbortedDueToXSColls; - u64 FramesLostDueToIntMACXmitError; - u64 CarrierSenseErrors; - u64 OctetsReceivedOK; - u64 FramesLostDueToIntMACRcvError; - u64 MulticastFramesXmittedOK; - u64 BroadcastFramesXmittedOK; - u64 FramesWithExcessiveDeferral; - u64 MulticastFramesReceivedOK; - u64 BroadcastFramesReceivedOK; - u64 InRangeLengthErrors; - u64 OutOfRangeLengthField; - u64 FrameTooLongErrors; - }; - struct { - u64 FramesTransmittedOK; - u64 SingleCollisionFrames; - u64 MultipleCollisionFrames; - u64 FramesReceivedOK; - u64 FrameCheckSequenceErrors; - u64 AlignmentErrors; - u64 OctetsTransmittedOK; - u64 FramesWithDeferredXmissions; - u64 LateCollisions; - u64 FramesAbortedDueToXSColls; - u64 FramesLostDueToIntMACXmitError; - u64 CarrierSenseErrors; - u64 OctetsReceivedOK; - u64 FramesLostDueToIntMACRcvError; - u64 MulticastFramesXmittedOK; - u64 BroadcastFramesXmittedOK; - u64 FramesWithExcessiveDeferral; - u64 MulticastFramesReceivedOK; - u64 BroadcastFramesReceivedOK; - u64 InRangeLengthErrors; - u64 OutOfRangeLengthField; - u64 FrameTooLongErrors; - } stats; - }; -}; - -struct ethtool_eth_phy_stats { - enum ethtool_mac_stats_src src; - union { - struct { - u64 SymbolErrorDuringCarrier; - }; - struct { - u64 SymbolErrorDuringCarrier; - } stats; - }; -}; - -struct ethtool_eth_ctrl_stats { - enum ethtool_mac_stats_src src; - union { - struct { - u64 MACControlFramesTransmitted; - u64 MACControlFramesReceived; - u64 UnsupportedOpcodesReceived; - }; - struct { - u64 MACControlFramesTransmitted; - u64 MACControlFramesReceived; - u64 UnsupportedOpcodesReceived; - } stats; - }; -}; - -struct ethtool_pause_stats { - enum ethtool_mac_stats_src src; - union { - struct { - u64 tx_pause_frames; - u64 rx_pause_frames; - }; - struct { - u64 tx_pause_frames; - u64 rx_pause_frames; - } stats; - }; -}; - -struct ethtool_fec_stat { - u64 total; - u64 lanes[8]; -}; - -struct ethtool_fec_stats { - struct ethtool_fec_stat corrected_blocks; - struct ethtool_fec_stat uncorrectable_blocks; - struct ethtool_fec_stat corrected_bits; -}; - -struct ethtool_rmon_hist_range { - u16 low; - u16 high; -}; - -struct ethtool_rmon_stats { - enum ethtool_mac_stats_src src; - union { - struct { - u64 undersize_pkts; - u64 oversize_pkts; - u64 fragments; - u64 jabbers; - u64 hist[11]; - u64 hist_tx[11]; - }; - struct { - u64 undersize_pkts; - u64 oversize_pkts; - u64 fragments; - u64 jabbers; - u64 hist[11]; - u64 hist_tx[11]; - } stats; - }; -}; - -struct ethtool_ts_stats { - union { - struct { - u64 pkts; - u64 onestep_pkts_unconfirmed; - u64 lost; - u64 err; - }; - struct { - u64 pkts; - u64 onestep_pkts_unconfirmed; - u64 lost; - u64 err; - } tx_stats; - }; -}; - -struct ethtool_module_eeprom { - u32 offset; - u32 length; - u8 page; - u8 bank; - u8 i2c_address; - u8 *data; -}; - -struct ethtool_module_power_mode_params { - enum ethtool_module_power_mode_policy policy; - enum ethtool_module_power_mode mode; -}; - -struct ethtool_mm_state { - u32 verify_time; - u32 max_verify_time; - enum ethtool_mm_verify_status verify_status; - bool tx_enabled; - bool tx_active; - bool pmac_enabled; - bool verify_enabled; - u32 tx_min_frag_size; - u32 rx_min_frag_size; -}; - -struct ethtool_mm_cfg { - u32 verify_time; - bool verify_enabled; - bool tx_enabled; - bool pmac_enabled; - u32 tx_min_frag_size; -}; - -struct ethtool_mm_stats { - u64 MACMergeFrameAssErrorCount; - u64 MACMergeFrameSmdErrorCount; - u64 MACMergeFrameAssOkCount; - u64 MACMergeFragCountRx; - u64 MACMergeFragCountTx; - u64 MACMergeHoldCount; -}; - -struct ethtool_rxfh_param { - u8 hfunc; - u32 indir_size; - u32 *indir; - u32 key_size; - u8 *key; - u32 rss_context; - u8 rss_delete; - u8 input_xfrm; -}; - -struct ethtool_rxfh_fields { - u32 data; - u32 flow_type; - u32 rss_context; -}; - -struct kernel_ethtool_ts_info { - u32 cmd; - u32 so_timestamping; - int phc_index; - enum hwtstamp_provider_qualifier phc_qualifier; - enum hwtstamp_source phc_source; - int phc_phyindex; - u32 tx_types; - u32 rx_filters; -}; - -struct ethtool_netdev_state { - struct xarray rss_ctx; - struct mutex rss_lock; - unsigned int wol_enabled: 1; - unsigned int module_fw_flash_in_progress: 1; -}; - -struct dim_cq_moder; - -struct dim_irq_moder { - u8 profile_flags; - u8 coal_flags; - u8 dim_rx_mode; - u8 dim_tx_mode; - struct dim_cq_moder *rx_profile; - struct dim_cq_moder *tx_profile; - void (*rx_dim_work)(struct work_struct *); - void (*tx_dim_work)(struct work_struct *); -}; - -struct dim_cq_moder { - u16 usec; - u16 pkts; - u16 comps; - u8 cq_period_mode; - struct callback_head rcu; -}; - -enum ib_uverbs_write_cmds { - IB_USER_VERBS_CMD_GET_CONTEXT = 0, - IB_USER_VERBS_CMD_QUERY_DEVICE = 1, - IB_USER_VERBS_CMD_QUERY_PORT = 2, - IB_USER_VERBS_CMD_ALLOC_PD = 3, - IB_USER_VERBS_CMD_DEALLOC_PD = 4, - IB_USER_VERBS_CMD_CREATE_AH = 5, - IB_USER_VERBS_CMD_MODIFY_AH = 6, - IB_USER_VERBS_CMD_QUERY_AH = 7, - IB_USER_VERBS_CMD_DESTROY_AH = 8, - IB_USER_VERBS_CMD_REG_MR = 9, - IB_USER_VERBS_CMD_REG_SMR = 10, - IB_USER_VERBS_CMD_REREG_MR = 11, - IB_USER_VERBS_CMD_QUERY_MR = 12, - IB_USER_VERBS_CMD_DEREG_MR = 13, - IB_USER_VERBS_CMD_ALLOC_MW = 14, - IB_USER_VERBS_CMD_BIND_MW = 15, - IB_USER_VERBS_CMD_DEALLOC_MW = 16, - IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL = 17, - IB_USER_VERBS_CMD_CREATE_CQ = 18, - IB_USER_VERBS_CMD_RESIZE_CQ = 19, - IB_USER_VERBS_CMD_DESTROY_CQ = 20, - IB_USER_VERBS_CMD_POLL_CQ = 21, - IB_USER_VERBS_CMD_PEEK_CQ = 22, - IB_USER_VERBS_CMD_REQ_NOTIFY_CQ = 23, - IB_USER_VERBS_CMD_CREATE_QP = 24, - IB_USER_VERBS_CMD_QUERY_QP = 25, - IB_USER_VERBS_CMD_MODIFY_QP = 26, - IB_USER_VERBS_CMD_DESTROY_QP = 27, - IB_USER_VERBS_CMD_POST_SEND = 28, - IB_USER_VERBS_CMD_POST_RECV = 29, - IB_USER_VERBS_CMD_ATTACH_MCAST = 30, - IB_USER_VERBS_CMD_DETACH_MCAST = 31, - IB_USER_VERBS_CMD_CREATE_SRQ = 32, - IB_USER_VERBS_CMD_MODIFY_SRQ = 33, - IB_USER_VERBS_CMD_QUERY_SRQ = 34, - IB_USER_VERBS_CMD_DESTROY_SRQ = 35, - IB_USER_VERBS_CMD_POST_SRQ_RECV = 36, - IB_USER_VERBS_CMD_OPEN_XRCD = 37, - IB_USER_VERBS_CMD_CLOSE_XRCD = 38, - IB_USER_VERBS_CMD_CREATE_XSRQ = 39, - IB_USER_VERBS_CMD_OPEN_QP = 40, -}; - -enum ib_uverbs_odp_general_cap_bits { - IB_UVERBS_ODP_SUPPORT = 1, - IB_UVERBS_ODP_SUPPORT_IMPLICIT = 2, -}; - -enum ib_uverbs_odp_transport_cap_bits { - IB_UVERBS_ODP_SUPPORT_SEND = 1, - IB_UVERBS_ODP_SUPPORT_RECV = 2, - IB_UVERBS_ODP_SUPPORT_WRITE = 4, - IB_UVERBS_ODP_SUPPORT_READ = 8, - IB_UVERBS_ODP_SUPPORT_ATOMIC = 16, - IB_UVERBS_ODP_SUPPORT_SRQ_RECV = 32, - IB_UVERBS_ODP_SUPPORT_FLUSH = 64, - IB_UVERBS_ODP_SUPPORT_ATOMIC_WRITE = 128, -}; - -enum ib_uverbs_wc_opcode { - IB_UVERBS_WC_SEND = 0, - IB_UVERBS_WC_RDMA_WRITE = 1, - IB_UVERBS_WC_RDMA_READ = 2, - IB_UVERBS_WC_COMP_SWAP = 3, - IB_UVERBS_WC_FETCH_ADD = 4, - IB_UVERBS_WC_BIND_MW = 5, - IB_UVERBS_WC_LOCAL_INV = 6, - IB_UVERBS_WC_TSO = 7, - IB_UVERBS_WC_FLUSH = 8, - IB_UVERBS_WC_ATOMIC_WRITE = 9, -}; - -enum ib_uverbs_create_qp_mask { - IB_UVERBS_CREATE_QP_MASK_IND_TABLE = 1, -}; - -enum ib_uverbs_wr_opcode { - IB_UVERBS_WR_RDMA_WRITE = 0, - IB_UVERBS_WR_RDMA_WRITE_WITH_IMM = 1, - IB_UVERBS_WR_SEND = 2, - IB_UVERBS_WR_SEND_WITH_IMM = 3, - IB_UVERBS_WR_RDMA_READ = 4, - IB_UVERBS_WR_ATOMIC_CMP_AND_SWP = 5, - IB_UVERBS_WR_ATOMIC_FETCH_AND_ADD = 6, - IB_UVERBS_WR_LOCAL_INV = 7, - IB_UVERBS_WR_BIND_MW = 8, - IB_UVERBS_WR_SEND_WITH_INV = 9, - IB_UVERBS_WR_TSO = 10, - IB_UVERBS_WR_RDMA_READ_WITH_INV = 11, - IB_UVERBS_WR_MASKED_ATOMIC_CMP_AND_SWP = 12, - IB_UVERBS_WR_MASKED_ATOMIC_FETCH_AND_ADD = 13, - IB_UVERBS_WR_FLUSH = 14, - IB_UVERBS_WR_ATOMIC_WRITE = 15, -}; - -enum ib_uverbs_device_cap_flags { - IB_UVERBS_DEVICE_RESIZE_MAX_WR = 1ULL, - IB_UVERBS_DEVICE_BAD_PKEY_CNTR = 2ULL, - IB_UVERBS_DEVICE_BAD_QKEY_CNTR = 4ULL, - IB_UVERBS_DEVICE_RAW_MULTI = 8ULL, - IB_UVERBS_DEVICE_AUTO_PATH_MIG = 16ULL, - IB_UVERBS_DEVICE_CHANGE_PHY_PORT = 32ULL, - IB_UVERBS_DEVICE_UD_AV_PORT_ENFORCE = 64ULL, - IB_UVERBS_DEVICE_CURR_QP_STATE_MOD = 128ULL, - IB_UVERBS_DEVICE_SHUTDOWN_PORT = 256ULL, - IB_UVERBS_DEVICE_PORT_ACTIVE_EVENT = 1024ULL, - IB_UVERBS_DEVICE_SYS_IMAGE_GUID = 2048ULL, - IB_UVERBS_DEVICE_RC_RNR_NAK_GEN = 4096ULL, - IB_UVERBS_DEVICE_SRQ_RESIZE = 8192ULL, - IB_UVERBS_DEVICE_N_NOTIFY_CQ = 16384ULL, - IB_UVERBS_DEVICE_MEM_WINDOW = 131072ULL, - IB_UVERBS_DEVICE_UD_IP_CSUM = 262144ULL, - IB_UVERBS_DEVICE_XRC = 1048576ULL, - IB_UVERBS_DEVICE_MEM_MGT_EXTENSIONS = 2097152ULL, - IB_UVERBS_DEVICE_MEM_WINDOW_TYPE_2A = 8388608ULL, - IB_UVERBS_DEVICE_MEM_WINDOW_TYPE_2B = 16777216ULL, - IB_UVERBS_DEVICE_RC_IP_CSUM = 33554432ULL, - IB_UVERBS_DEVICE_RAW_IP_CSUM = 67108864ULL, - IB_UVERBS_DEVICE_MANAGED_FLOW_STEERING = 536870912ULL, - IB_UVERBS_DEVICE_RAW_SCATTER_FCS = 17179869184ULL, - IB_UVERBS_DEVICE_PCI_WRITE_END_PADDING = 68719476736ULL, - IB_UVERBS_DEVICE_FLUSH_GLOBAL = 274877906944ULL, - IB_UVERBS_DEVICE_FLUSH_PERSISTENT = 549755813888ULL, - IB_UVERBS_DEVICE_ATOMIC_WRITE = 1099511627776ULL, -}; - -enum ib_uverbs_raw_packet_caps { - IB_UVERBS_RAW_PACKET_CAP_CVLAN_STRIPPING = 1, - IB_UVERBS_RAW_PACKET_CAP_SCATTER_FCS = 2, - IB_UVERBS_RAW_PACKET_CAP_IP_CSUM = 4, - IB_UVERBS_RAW_PACKET_CAP_DELAY_DROP = 8, -}; - -enum ib_uverbs_access_flags { - IB_UVERBS_ACCESS_LOCAL_WRITE = 1, - IB_UVERBS_ACCESS_REMOTE_WRITE = 2, - IB_UVERBS_ACCESS_REMOTE_READ = 4, - IB_UVERBS_ACCESS_REMOTE_ATOMIC = 8, - IB_UVERBS_ACCESS_MW_BIND = 16, - IB_UVERBS_ACCESS_ZERO_BASED = 32, - IB_UVERBS_ACCESS_ON_DEMAND = 64, - IB_UVERBS_ACCESS_HUGETLB = 128, - IB_UVERBS_ACCESS_FLUSH_GLOBAL = 256, - IB_UVERBS_ACCESS_FLUSH_PERSISTENT = 512, - IB_UVERBS_ACCESS_RELAXED_ORDERING = 1048576, - IB_UVERBS_ACCESS_OPTIONAL_RANGE = 1072693248, -}; - -enum ib_uverbs_srq_type { - IB_UVERBS_SRQT_BASIC = 0, - IB_UVERBS_SRQT_XRC = 1, - IB_UVERBS_SRQT_TM = 2, -}; - -enum ib_uverbs_wq_type { - IB_UVERBS_WQT_RQ = 0, -}; - -enum ib_uverbs_wq_flags { - IB_UVERBS_WQ_FLAGS_CVLAN_STRIPPING = 1, - IB_UVERBS_WQ_FLAGS_SCATTER_FCS = 2, - IB_UVERBS_WQ_FLAGS_DELAY_DROP = 4, - IB_UVERBS_WQ_FLAGS_PCI_WRITE_END_PADDING = 8, -}; - -enum ib_uverbs_qp_type { - IB_UVERBS_QPT_RC = 2, - IB_UVERBS_QPT_UC = 3, - IB_UVERBS_QPT_UD = 4, - IB_UVERBS_QPT_RAW_PACKET = 8, - IB_UVERBS_QPT_XRC_INI = 9, - IB_UVERBS_QPT_XRC_TGT = 10, - IB_UVERBS_QPT_DRIVER = 255, -}; - -enum ib_uverbs_qp_create_flags { - IB_UVERBS_QP_CREATE_BLOCK_MULTICAST_LOOPBACK = 2, - IB_UVERBS_QP_CREATE_SCATTER_FCS = 256, - IB_UVERBS_QP_CREATE_CVLAN_STRIPPING = 512, - IB_UVERBS_QP_CREATE_PCI_WRITE_END_PADDING = 2048, - IB_UVERBS_QP_CREATE_SQ_SIG_ALL = 4096, -}; - -enum ib_uverbs_gid_type { - IB_UVERBS_GID_TYPE_IB = 0, - IB_UVERBS_GID_TYPE_ROCE_V1 = 1, - IB_UVERBS_GID_TYPE_ROCE_V2 = 2, -}; - -enum ib_poll_context { - IB_POLL_SOFTIRQ = 0, - IB_POLL_WORKQUEUE = 1, - IB_POLL_UNBOUND_WORKQUEUE = 2, - IB_POLL_LAST_POOL_TYPE = 2, - IB_POLL_DIRECT = 3, -}; - -struct lsm_network_audit { - int netif; - const struct sock *sk; - u16 family; - __be16 dport; - __be16 sport; - union { - struct { - __be32 daddr; - __be32 saddr; - } v4; - struct { - struct in6_addr daddr; - struct in6_addr saddr; - } v6; - } fam; -}; - -struct lsm_ioctlop_audit { - struct path path; - u16 cmd; -}; - -struct lsm_ibpkey_audit { - u64 subnet_prefix; - u16 pkey; -}; - -struct lsm_ibendport_audit { - const char *dev_name; - u8 port; -}; - -struct selinux_audit_data { - u32 ssid; - u32 tsid; - u16 tclass; - u32 requested; - u32 audited; - u32 denied; - int result; -}; - -struct smack_audit_data; - -struct apparmor_audit_data; - -struct common_audit_data { - char type; - union { - struct path path; - struct dentry *dentry; - struct inode *inode; - struct lsm_network_audit *net; - int cap; - int ipc_id; - struct task_struct *tsk; - struct { - key_serial_t key; - char *key_desc; - } key_struct; - char *kmod_name; - struct lsm_ioctlop_audit *op; - struct file *file; - struct lsm_ibpkey_audit *ibpkey; - struct lsm_ibendport_audit *ibendport; - int reason; - const char *anonclass; - u16 nlmsg_type; - } u; - union { - struct smack_audit_data *smack_audit_data; - struct selinux_audit_data *selinux_audit_data; - struct apparmor_audit_data *apparmor_audit_data; - }; -}; - -enum { - POLICYDB_CAP_NETPEER = 0, - POLICYDB_CAP_OPENPERM = 1, - POLICYDB_CAP_EXTSOCKCLASS = 2, - POLICYDB_CAP_ALWAYSNETWORK = 3, - POLICYDB_CAP_CGROUPSECLABEL = 4, - POLICYDB_CAP_NNP_NOSUID_TRANSITION = 5, - POLICYDB_CAP_GENFS_SECLABEL_SYMLINKS = 6, - POLICYDB_CAP_IOCTL_SKIP_CLOEXEC = 7, - POLICYDB_CAP_USERSPACE_INITIAL_CONTEXT = 8, - POLICYDB_CAP_NETLINK_XPERM = 9, - POLICYDB_CAP_NETIF_WILDCARD = 10, - POLICYDB_CAP_GENFS_SECLABEL_WILDCARD = 11, - __POLICYDB_CAP_MAX = 12, -}; - -struct selinux_policy; - -struct selinux_state { - bool enforcing; - bool initialized; - bool policycap[12]; - struct page *status_page; - struct mutex status_lock; - struct selinux_policy *policy; - struct mutex policy_mutex; -}; - -struct selinux_policy_convert_data; - -struct selinux_load_state { - struct selinux_policy *policy; - struct selinux_policy_convert_data *convert_data; -}; - -struct av_decision { - u32 allowed; - u32 auditallow; - u32 auditdeny; - u32 seqno; - u32 flags; -}; - -struct avc_cache_stats { - unsigned int lookups; - unsigned int misses; - unsigned int allocations; - unsigned int reclaims; - unsigned int frees; -}; - -struct cred_security_struct { - u32 osid; - u32 sid; - u32 exec_sid; - u32 create_sid; - u32 keycreate_sid; - u32 sockcreate_sid; -}; - -enum label_initialized { - LABEL_INVALID = 0, - LABEL_INITIALIZED = 1, - LABEL_PENDING = 2, -}; - -struct inode_security_struct { - struct inode *inode; - struct list_head list; - u32 task_sid; - u32 sid; - u16 sclass; - unsigned char initialized; - spinlock_t lock; -}; - -enum sel_inos { - SEL_ROOT_INO = 2, - SEL_LOAD = 3, - SEL_ENFORCE = 4, - SEL_CONTEXT = 5, - SEL_ACCESS = 6, - SEL_CREATE = 7, - SEL_RELABEL = 8, - SEL_USER = 9, - SEL_POLICYVERS = 10, - SEL_COMMIT_BOOLS = 11, - SEL_MLS = 12, - SEL_DISABLE = 13, - SEL_MEMBER = 14, - SEL_CHECKREQPROT = 15, - SEL_COMPAT_NET = 16, - SEL_REJECT_UNKNOWN = 17, - SEL_DENY_UNKNOWN = 18, - SEL_STATUS = 19, - SEL_POLICY = 20, - SEL_VALIDATE_TRANS = 21, - SEL_INO_NEXT = 22, -}; - -struct selinux_fs_info { - struct dentry *bool_dir; - unsigned int bool_num; - char **bool_pending_names; - int *bool_pending_values; - struct dentry *class_dir; - long unsigned int last_class_ino; - bool policy_opened; - struct dentry *policycap_dir; - long unsigned int last_ino; - struct super_block *sb; -}; - -struct policy_load_memory { - size_t len; - void *data; -}; - -enum ethtool_link_mode_bit_indices { - ETHTOOL_LINK_MODE_10baseT_Half_BIT = 0, - ETHTOOL_LINK_MODE_10baseT_Full_BIT = 1, - ETHTOOL_LINK_MODE_100baseT_Half_BIT = 2, - ETHTOOL_LINK_MODE_100baseT_Full_BIT = 3, - ETHTOOL_LINK_MODE_1000baseT_Half_BIT = 4, - ETHTOOL_LINK_MODE_1000baseT_Full_BIT = 5, - ETHTOOL_LINK_MODE_Autoneg_BIT = 6, - ETHTOOL_LINK_MODE_TP_BIT = 7, - ETHTOOL_LINK_MODE_AUI_BIT = 8, - ETHTOOL_LINK_MODE_MII_BIT = 9, - ETHTOOL_LINK_MODE_FIBRE_BIT = 10, - ETHTOOL_LINK_MODE_BNC_BIT = 11, - ETHTOOL_LINK_MODE_10000baseT_Full_BIT = 12, - ETHTOOL_LINK_MODE_Pause_BIT = 13, - ETHTOOL_LINK_MODE_Asym_Pause_BIT = 14, - ETHTOOL_LINK_MODE_2500baseX_Full_BIT = 15, - ETHTOOL_LINK_MODE_Backplane_BIT = 16, - ETHTOOL_LINK_MODE_1000baseKX_Full_BIT = 17, - ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT = 18, - ETHTOOL_LINK_MODE_10000baseKR_Full_BIT = 19, - ETHTOOL_LINK_MODE_10000baseR_FEC_BIT = 20, - ETHTOOL_LINK_MODE_20000baseMLD2_Full_BIT = 21, - ETHTOOL_LINK_MODE_20000baseKR2_Full_BIT = 22, - ETHTOOL_LINK_MODE_40000baseKR4_Full_BIT = 23, - ETHTOOL_LINK_MODE_40000baseCR4_Full_BIT = 24, - ETHTOOL_LINK_MODE_40000baseSR4_Full_BIT = 25, - ETHTOOL_LINK_MODE_40000baseLR4_Full_BIT = 26, - ETHTOOL_LINK_MODE_56000baseKR4_Full_BIT = 27, - ETHTOOL_LINK_MODE_56000baseCR4_Full_BIT = 28, - ETHTOOL_LINK_MODE_56000baseSR4_Full_BIT = 29, - ETHTOOL_LINK_MODE_56000baseLR4_Full_BIT = 30, - ETHTOOL_LINK_MODE_25000baseCR_Full_BIT = 31, - ETHTOOL_LINK_MODE_25000baseKR_Full_BIT = 32, - ETHTOOL_LINK_MODE_25000baseSR_Full_BIT = 33, - ETHTOOL_LINK_MODE_50000baseCR2_Full_BIT = 34, - ETHTOOL_LINK_MODE_50000baseKR2_Full_BIT = 35, - ETHTOOL_LINK_MODE_100000baseKR4_Full_BIT = 36, - ETHTOOL_LINK_MODE_100000baseSR4_Full_BIT = 37, - ETHTOOL_LINK_MODE_100000baseCR4_Full_BIT = 38, - ETHTOOL_LINK_MODE_100000baseLR4_ER4_Full_BIT = 39, - ETHTOOL_LINK_MODE_50000baseSR2_Full_BIT = 40, - ETHTOOL_LINK_MODE_1000baseX_Full_BIT = 41, - ETHTOOL_LINK_MODE_10000baseCR_Full_BIT = 42, - ETHTOOL_LINK_MODE_10000baseSR_Full_BIT = 43, - ETHTOOL_LINK_MODE_10000baseLR_Full_BIT = 44, - ETHTOOL_LINK_MODE_10000baseLRM_Full_BIT = 45, - ETHTOOL_LINK_MODE_10000baseER_Full_BIT = 46, - ETHTOOL_LINK_MODE_2500baseT_Full_BIT = 47, - ETHTOOL_LINK_MODE_5000baseT_Full_BIT = 48, - ETHTOOL_LINK_MODE_FEC_NONE_BIT = 49, - ETHTOOL_LINK_MODE_FEC_RS_BIT = 50, - ETHTOOL_LINK_MODE_FEC_BASER_BIT = 51, - ETHTOOL_LINK_MODE_50000baseKR_Full_BIT = 52, - ETHTOOL_LINK_MODE_50000baseSR_Full_BIT = 53, - ETHTOOL_LINK_MODE_50000baseCR_Full_BIT = 54, - ETHTOOL_LINK_MODE_50000baseLR_ER_FR_Full_BIT = 55, - ETHTOOL_LINK_MODE_50000baseDR_Full_BIT = 56, - ETHTOOL_LINK_MODE_100000baseKR2_Full_BIT = 57, - ETHTOOL_LINK_MODE_100000baseSR2_Full_BIT = 58, - ETHTOOL_LINK_MODE_100000baseCR2_Full_BIT = 59, - ETHTOOL_LINK_MODE_100000baseLR2_ER2_FR2_Full_BIT = 60, - ETHTOOL_LINK_MODE_100000baseDR2_Full_BIT = 61, - ETHTOOL_LINK_MODE_200000baseKR4_Full_BIT = 62, - ETHTOOL_LINK_MODE_200000baseSR4_Full_BIT = 63, - ETHTOOL_LINK_MODE_200000baseLR4_ER4_FR4_Full_BIT = 64, - ETHTOOL_LINK_MODE_200000baseDR4_Full_BIT = 65, - ETHTOOL_LINK_MODE_200000baseCR4_Full_BIT = 66, - ETHTOOL_LINK_MODE_100baseT1_Full_BIT = 67, - ETHTOOL_LINK_MODE_1000baseT1_Full_BIT = 68, - ETHTOOL_LINK_MODE_400000baseKR8_Full_BIT = 69, - ETHTOOL_LINK_MODE_400000baseSR8_Full_BIT = 70, - ETHTOOL_LINK_MODE_400000baseLR8_ER8_FR8_Full_BIT = 71, - ETHTOOL_LINK_MODE_400000baseDR8_Full_BIT = 72, - ETHTOOL_LINK_MODE_400000baseCR8_Full_BIT = 73, - ETHTOOL_LINK_MODE_FEC_LLRS_BIT = 74, - ETHTOOL_LINK_MODE_100000baseKR_Full_BIT = 75, - ETHTOOL_LINK_MODE_100000baseSR_Full_BIT = 76, - ETHTOOL_LINK_MODE_100000baseLR_ER_FR_Full_BIT = 77, - ETHTOOL_LINK_MODE_100000baseCR_Full_BIT = 78, - ETHTOOL_LINK_MODE_100000baseDR_Full_BIT = 79, - ETHTOOL_LINK_MODE_200000baseKR2_Full_BIT = 80, - ETHTOOL_LINK_MODE_200000baseSR2_Full_BIT = 81, - ETHTOOL_LINK_MODE_200000baseLR2_ER2_FR2_Full_BIT = 82, - ETHTOOL_LINK_MODE_200000baseDR2_Full_BIT = 83, - ETHTOOL_LINK_MODE_200000baseCR2_Full_BIT = 84, - ETHTOOL_LINK_MODE_400000baseKR4_Full_BIT = 85, - ETHTOOL_LINK_MODE_400000baseSR4_Full_BIT = 86, - ETHTOOL_LINK_MODE_400000baseLR4_ER4_FR4_Full_BIT = 87, - ETHTOOL_LINK_MODE_400000baseDR4_Full_BIT = 88, - ETHTOOL_LINK_MODE_400000baseCR4_Full_BIT = 89, - ETHTOOL_LINK_MODE_100baseFX_Half_BIT = 90, - ETHTOOL_LINK_MODE_100baseFX_Full_BIT = 91, - ETHTOOL_LINK_MODE_10baseT1L_Full_BIT = 92, - ETHTOOL_LINK_MODE_800000baseCR8_Full_BIT = 93, - ETHTOOL_LINK_MODE_800000baseKR8_Full_BIT = 94, - ETHTOOL_LINK_MODE_800000baseDR8_Full_BIT = 95, - ETHTOOL_LINK_MODE_800000baseDR8_2_Full_BIT = 96, - ETHTOOL_LINK_MODE_800000baseSR8_Full_BIT = 97, - ETHTOOL_LINK_MODE_800000baseVR8_Full_BIT = 98, - ETHTOOL_LINK_MODE_10baseT1S_Full_BIT = 99, - ETHTOOL_LINK_MODE_10baseT1S_Half_BIT = 100, - ETHTOOL_LINK_MODE_10baseT1S_P2MP_Half_BIT = 101, - ETHTOOL_LINK_MODE_10baseT1BRR_Full_BIT = 102, - ETHTOOL_LINK_MODE_200000baseCR_Full_BIT = 103, - ETHTOOL_LINK_MODE_200000baseKR_Full_BIT = 104, - ETHTOOL_LINK_MODE_200000baseDR_Full_BIT = 105, - ETHTOOL_LINK_MODE_200000baseDR_2_Full_BIT = 106, - ETHTOOL_LINK_MODE_200000baseSR_Full_BIT = 107, - ETHTOOL_LINK_MODE_200000baseVR_Full_BIT = 108, - ETHTOOL_LINK_MODE_400000baseCR2_Full_BIT = 109, - ETHTOOL_LINK_MODE_400000baseKR2_Full_BIT = 110, - ETHTOOL_LINK_MODE_400000baseDR2_Full_BIT = 111, - ETHTOOL_LINK_MODE_400000baseDR2_2_Full_BIT = 112, - ETHTOOL_LINK_MODE_400000baseSR2_Full_BIT = 113, - ETHTOOL_LINK_MODE_400000baseVR2_Full_BIT = 114, - ETHTOOL_LINK_MODE_800000baseCR4_Full_BIT = 115, - ETHTOOL_LINK_MODE_800000baseKR4_Full_BIT = 116, - ETHTOOL_LINK_MODE_800000baseDR4_Full_BIT = 117, - ETHTOOL_LINK_MODE_800000baseDR4_2_Full_BIT = 118, - ETHTOOL_LINK_MODE_800000baseSR4_Full_BIT = 119, - ETHTOOL_LINK_MODE_800000baseVR4_Full_BIT = 120, - __ETHTOOL_LINK_MODE_MASK_NBITS = 121, -}; - -struct netnode_security_struct { - union { - __be32 ipv4; - struct in6_addr ipv6; - } addr; - u32 sid; - u16 family; -}; - -struct sel_netnode_bkt { - unsigned int size; - struct list_head list; -}; - -struct sel_netnode { - struct netnode_security_struct nsec; - struct list_head list; - struct callback_head rcu; -}; - -struct netport_security_struct { - u32 sid; - u16 port; - u8 protocol; -}; - -struct sel_netport_bkt { - int size; - struct list_head list; -}; - -struct sel_netport { - struct netport_security_struct psec; - struct list_head list; - struct callback_head rcu; -}; - -struct selinux_kernel_status { - u32 version; - u32 sequence; - u32 enforcing; - u32 policyload; - u32 deny_unknown; -}; - -struct netlbl_lsm_catmap { - u32 startbit; - u64 bitmap[4]; - struct netlbl_lsm_catmap *next; -}; - -struct ebitmap_node { - struct ebitmap_node *next; - long unsigned int maps[6]; - u32 startbit; -}; - -struct ebitmap { - struct ebitmap_node *node; - u32 highbit; -}; - -struct policy_file { - char *data; - size_t len; -}; - -struct extended_perms_data { - u32 p[8]; -}; - -struct hashtab_key_params { - u32 (*hash)(const void *); - int (*cmp)(const void *, const void *); -}; - -struct hashtab_node { - void *key; - void *datum; - struct hashtab_node *next; -}; - -struct hashtab { - struct hashtab_node **htable; - u32 size; - u32 nel; -}; - -struct symtab { - struct hashtab table; - u32 nprim; -}; - -struct avtab_key { - u16 source_type; - u16 target_type; - u16 target_class; - u16 specified; -}; - -struct avtab_extended_perms { - u8 specified; - u8 driver; - struct extended_perms_data perms; -}; - -struct avtab_datum { - union { - u32 data; - struct avtab_extended_perms *xperms; - } u; -}; - -struct avtab_node { - struct avtab_key key; - struct avtab_datum datum; - struct avtab_node *next; -}; - -struct avtab { - struct avtab_node **htable; - u32 nel; - u32 nslot; - u32 mask; -}; - -struct mls_level { - u32 sens; - struct ebitmap cat; -}; - -struct mls_range { - struct mls_level level[2]; -}; - -struct context { - u32 user; - u32 role; - u32 type; - u32 len; - struct mls_range range; - char *str; -}; - -struct sidtab_str_cache; - -struct sidtab_entry { - u32 sid; - u32 hash; - struct context context; - struct sidtab_str_cache *cache; - struct hlist_node list; -}; - -struct sidtab_node_inner; - -struct sidtab_node_leaf; - -union sidtab_entry_inner { - struct sidtab_node_inner *ptr_inner; - struct sidtab_node_leaf *ptr_leaf; -}; - -struct sidtab_node_inner { - union sidtab_entry_inner entries[512]; -}; - -struct sidtab_node_leaf { - struct sidtab_entry entries[39]; -}; - -struct sidtab_isid_entry { - int set; - struct sidtab_entry entry; -}; - -struct convert_context_args; - -struct sidtab; - -struct sidtab_convert_params { - struct convert_context_args *args; - struct sidtab *target; -}; - -struct policydb; - -struct convert_context_args { - struct policydb *oldp; - struct policydb *newp; -}; - -struct sidtab { - union sidtab_entry_inner roots[4]; - u32 count; - struct sidtab_convert_params *convert; - bool frozen; - spinlock_t lock; - u32 cache_free_slots; - struct list_head cache_lru_list; - spinlock_t cache_lock; - struct sidtab_isid_entry isids[27]; - struct hlist_head context_to_sid[512]; -}; - -struct type_set; - -struct constraint_expr { - u32 expr_type; - u32 attr; - u32 op; - struct ebitmap names; - struct type_set *type_names; - struct constraint_expr *next; -}; - -struct type_set { - struct ebitmap types; - struct ebitmap negset; - u32 flags; -}; - -struct constraint_node { - u32 permissions; - struct constraint_expr *expr; - struct constraint_node *next; -}; - -struct perm_datum { - u32 value; -}; - -struct common_datum { - u32 value; - struct symtab permissions; -}; - -struct class_datum { - u32 value; - char *comkey; - struct common_datum *comdatum; - struct symtab permissions; - struct constraint_node *constraints; - struct constraint_node *validatetrans; - char default_user; - char default_role; - char default_type; - char default_range; -}; - -struct role_datum { - u32 value; - u32 bounds; - struct ebitmap dominates; - struct ebitmap types; -}; - -struct role_trans_key { - u32 role; - u32 type; - u32 tclass; -}; - -struct role_trans_datum { - u32 new_role; -}; - -struct filename_trans_key { - u32 ttype; - u16 tclass; - const char *name; -}; - -struct filename_trans_datum { - struct ebitmap stypes; - u32 otype; - struct filename_trans_datum *next; -}; - -struct role_allow { - u32 role; - u32 new_role; - struct role_allow *next; -}; - -struct type_datum { - u32 value; - u32 bounds; - unsigned char primary; - unsigned char attribute; -}; - -struct user_datum { - u32 value; - u32 bounds; - struct ebitmap roles; - struct mls_range range; - struct mls_level dfltlevel; -}; - -struct level_datum { - struct mls_level level; - unsigned char isalias; -}; - -struct cat_datum { - u32 value; - unsigned char isalias; -}; - -struct range_trans { - u32 source_type; - u32 target_type; - u32 target_class; -}; - -struct cond_bool_datum { - u32 value; - int state; -}; - -struct ocontext { - union { - char *name; - struct { - u8 protocol; - u16 low_port; - u16 high_port; - } port; - struct { - u32 addr; - u32 mask; - } node; - struct { - u32 addr[4]; - u32 mask[4]; - } node6; - struct { - u64 subnet_prefix; - u16 low_pkey; - u16 high_pkey; - } ibpkey; - struct { - char *dev_name; - u8 port; - } ibendport; - } u; - union { - u32 sclass; - u32 behavior; - } v; - struct context context[2]; - u32 sid[2]; - struct ocontext *next; -}; - -struct genfs { - char *fstype; - struct ocontext *head; - struct genfs *next; -}; - -struct cond_node; - -struct policydb { - int mls_enabled; - struct symtab symtab[8]; - char **sym_val_to_name[8]; - struct class_datum **class_val_to_struct; - struct role_datum **role_val_to_struct; - struct user_datum **user_val_to_struct; - struct type_datum **type_val_to_struct; - struct avtab te_avtab; - struct hashtab role_tr; - struct ebitmap filename_trans_ttypes; - struct hashtab filename_trans; - u32 compat_filename_trans_count; - struct cond_bool_datum **bool_val_to_struct; - struct avtab te_cond_avtab; - struct cond_node *cond_list; - u32 cond_list_len; - struct role_allow *role_allow; - struct ocontext *ocontexts[9]; - struct genfs *genfs; - struct hashtab range_tr; - struct ebitmap *type_attr_map_array; - struct ebitmap policycaps; - struct ebitmap permissive_map; - struct ebitmap neveraudit_map; - size_t len; - unsigned int policyvers; - unsigned int reject_unknown: 1; - unsigned int allow_unknown: 1; - u16 process_class; - u32 process_trans_perms; -}; - -struct cond_expr_node; - -struct cond_expr { - struct cond_expr_node *nodes; - u32 len; -}; - -struct cond_av_list { - struct avtab_node **nodes; - u32 len; -}; - -struct cond_node { - int cur_state; - struct cond_expr expr; - struct cond_av_list true_list; - struct cond_av_list false_list; -}; - -struct policy_data { - struct policydb *p; - struct policy_file *fp; -}; - -struct cond_expr_node { - u32 expr_type; - u32 boolean; -}; - -struct policydb_compat_info { - unsigned int version; - unsigned int sym_num; - unsigned int ocon_num; -}; - -typedef __u16 __sum16; - -struct sockaddr_in6 { - short unsigned int sin6_family; - __be16 sin6_port; - __be32 sin6_flowinfo; - struct in6_addr sin6_addr; - __u32 sin6_scope_id; -}; - -struct sockaddr_inet { - short unsigned int sa_family; - char sa_data[26]; -}; - -struct iphdr { - __u8 ihl: 4; - __u8 version: 4; - __u8 tos; - __be16 tot_len; - __be16 id; - __be16 frag_off; - __u8 ttl; - __u8 protocol; - __sum16 check; - union { - struct { - __be32 saddr; - __be32 daddr; - }; - struct { - __be32 saddr; - __be32 daddr; - } addrs; - }; -}; - -struct in6_pktinfo { - struct in6_addr ipi6_addr; - int ipi6_ifindex; -}; - -struct ipv6_rt_hdr { - __u8 nexthdr; - __u8 hdrlen; - __u8 type; - __u8 segments_left; -}; - -struct ipv6_opt_hdr { - __u8 nexthdr; - __u8 hdrlen; -}; - -struct ipv6hdr { - __u8 priority: 4; - __u8 version: 4; - __u8 flow_lbl[3]; - __be16 payload_len; - __u8 nexthdr; - __u8 hop_limit; - union { - struct { - struct in6_addr saddr; - struct in6_addr daddr; - }; - struct { - struct in6_addr saddr; - struct in6_addr daddr; - } addrs; - }; -}; - -struct in_addr { - __be32 s_addr; -}; - -struct sockaddr_in { - __kernel_sa_family_t sin_family; - __be16 sin_port; - struct in_addr sin_addr; - unsigned char __pad[8]; -}; - -struct ip_options { - __be32 faddr; - __be32 nexthop; - unsigned char optlen; - unsigned char srr; - unsigned char rr; - unsigned char ts; - unsigned char is_strictroute: 1; - unsigned char srr_is_hit: 1; - unsigned char is_changed: 1; - unsigned char rr_needaddr: 1; - unsigned char ts_needtime: 1; - unsigned char ts_needaddr: 1; - unsigned char router_alert; - unsigned char cipso; - unsigned char __pad2; - unsigned char __data[0]; -}; - -struct ip_options_rcu { - struct callback_head rcu; - struct ip_options opt; -}; - -struct ipv6_txoptions { - refcount_t refcnt; - int tot_len; - __u16 opt_flen; - __u16 opt_nflen; - struct ipv6_opt_hdr *hopopt; - struct ipv6_opt_hdr *dst0opt; - struct ipv6_rt_hdr *srcrt; - struct ipv6_opt_hdr *dst1opt; - struct callback_head rcu; -}; - -struct inet_cork { - unsigned int flags; - __be32 addr; - struct ip_options *opt; - unsigned int fragsize; - int length; - struct dst_entry *dst; - u8 tx_flags; - __u8 ttl; - __s16 tos; - u32 priority; - __u16 gso_size; - u32 ts_opt_id; - u64 transmit_time; - u32 mark; -}; - -struct inet_cork_full { - struct inet_cork base; - struct flowi fl; -}; - -struct ipv6_pinfo; - -struct ip_mc_socklist; - -struct inet_sock { - struct sock sk; - struct ipv6_pinfo *pinet6; - long unsigned int inet_flags; - __be32 inet_saddr; - __s16 uc_ttl; - __be16 inet_sport; - struct ip_options_rcu *inet_opt; - atomic_t inet_id; - __u8 tos; - __u8 min_ttl; - __u8 mc_ttl; - __u8 pmtudisc; - __u8 rcv_tos; - __u8 convert_csum; - int uc_index; - int mc_index; - __be32 mc_addr; - u32 local_port_range; - struct ip_mc_socklist *mc_list; - struct inet_cork_full cork; -}; - -struct inet6_cork { - struct ipv6_txoptions *opt; - u8 hop_limit; - u8 tclass; - u8 dontfrag: 1; -}; - -struct ipv6_mc_socklist; - -struct ipv6_ac_socklist; - -struct ipv6_fl_socklist; - -struct ipv6_pinfo { - struct in6_addr saddr; - struct in6_pktinfo sticky_pktinfo; - const struct in6_addr *daddr_cache; - const struct in6_addr *saddr_cache; - __be32 flow_label; - __u32 frag_size; - s16 hop_limit; - u8 mcast_hops; - int ucast_oif; - int mcast_oif; - union { - struct { - __u16 srcrt: 1; - __u16 osrcrt: 1; - __u16 rxinfo: 1; - __u16 rxoinfo: 1; - __u16 rxhlim: 1; - __u16 rxohlim: 1; - __u16 hopopts: 1; - __u16 ohopopts: 1; - __u16 dstopts: 1; - __u16 odstopts: 1; - __u16 rxflow: 1; - __u16 rxtclass: 1; - __u16 rxpmtu: 1; - __u16 rxorigdstaddr: 1; - __u16 recvfragsize: 1; - } bits; - __u16 all; - } rxopt; - __u8 srcprefs; - __u8 pmtudisc; - __u8 min_hopcount; - __u8 tclass; - __be32 rcv_flowinfo; - __u32 dst_cookie; - struct ipv6_mc_socklist *ipv6_mc_list; - struct ipv6_ac_socklist *ipv6_ac_list; - struct ipv6_fl_socklist *ipv6_fl_list; - struct ipv6_txoptions *opt; - struct sk_buff *pktoptions; - struct sk_buff *rxpmtu; - struct inet6_cork cork; -}; - -struct ip6_sf_socklist; - -struct ipv6_mc_socklist { - struct in6_addr addr; - int ifindex; - unsigned int sfmode; - struct ipv6_mc_socklist *next; - struct ip6_sf_socklist *sflist; - struct callback_head rcu; -}; - -struct ipv6_ac_socklist { - struct in6_addr acl_addr; - int acl_ifindex; - struct ipv6_ac_socklist *acl_next; -}; - -struct ip6_flowlabel; - -struct ipv6_fl_socklist { - struct ipv6_fl_socklist *next; - struct ip6_flowlabel *fl; - struct callback_head rcu; -}; - -enum sctp_endpoint_type { - SCTP_EP_TYPE_SOCKET = 0, - SCTP_EP_TYPE_ASSOCIATION = 1, -}; - -struct sctp_chunk; - -struct sctp_inq { - struct list_head in_chunk_list; - struct sctp_chunk *in_progress; - struct work_struct immediate; -}; - -struct sctp_bind_addr { - __u16 port; - struct list_head address_list; -}; - -struct sctp_ep_common { - enum sctp_endpoint_type type; - refcount_t refcnt; - bool dead; - struct sock *sk; - struct net *net; - struct sctp_inq inqueue; - struct sctp_bind_addr bind_addr; -}; - -typedef __s32 sctp_assoc_t; - -union sctp_addr { - struct sockaddr_inet sa; - struct sockaddr_in v4; - struct sockaddr_in6 v6; -}; - -struct sctp_cookie { - __u32 my_vtag; - __u32 peer_vtag; - __u32 my_ttag; - __u32 peer_ttag; - ktime_t expiration; - __u16 sinit_num_ostreams; - __u16 sinit_max_instreams; - __u32 initial_tsn; - union sctp_addr peer_addr; - __u16 my_port; - __u8 prsctp_capable; - __u8 padding; - __u32 adaptation_ind; - __u8 auth_random[36]; - __u8 auth_hmacs[10]; - __u8 auth_chunks[20]; - __u32 raw_addr_list_len; -}; - -struct sctp_tsnmap { - long unsigned int *tsn_map; - __u32 base_tsn; - __u32 cumulative_tsn_ack_point; - __u32 max_tsn_seen; - __u16 len; - __u16 pending_data; - __u16 num_dup_tsns; - __be32 dup_tsns[16]; -}; - -struct sctp_inithdr_host { - __u32 init_tag; - __u32 a_rwnd; - __u16 num_outbound_streams; - __u16 num_inbound_streams; - __u32 initial_tsn; -}; - -enum sctp_state { - SCTP_STATE_CLOSED = 0, - SCTP_STATE_COOKIE_WAIT = 1, - SCTP_STATE_COOKIE_ECHOED = 2, - SCTP_STATE_ESTABLISHED = 3, - SCTP_STATE_SHUTDOWN_PENDING = 4, - SCTP_STATE_SHUTDOWN_SENT = 5, - SCTP_STATE_SHUTDOWN_RECEIVED = 6, - SCTP_STATE_SHUTDOWN_ACK_SENT = 7, -}; - -struct genradix_root; - -struct __genradix { - struct genradix_root *root; -}; - -struct sctp_stream_out_ext; - -struct sctp_stream_out { - union { - __u32 mid; - __u16 ssn; - }; - __u32 mid_uo; - struct sctp_stream_out_ext *ext; - __u8 state; -}; - -struct sctp_stream_in { - union { - __u32 mid; - __u16 ssn; - }; - __u32 mid_uo; - __u32 fsn; - __u32 fsn_uo; - char pd_mode; - char pd_mode_uo; -}; - -struct sctp_stream_interleave; - -struct sctp_stream { - struct { - struct __genradix tree; - struct sctp_stream_out type[0]; - } out; - struct { - struct __genradix tree; - struct sctp_stream_in type[0]; - } in; - __u16 outcnt; - __u16 incnt; - struct sctp_stream_out *out_curr; - union { - struct { - struct list_head prio_list; - }; - struct { - struct list_head rr_list; - struct sctp_stream_out_ext *rr_next; - }; - struct { - struct list_head fc_list; - }; - }; - struct sctp_stream_interleave *si; -}; - -struct sctp_sched_ops; - -struct sctp_association; - -struct sctp_outq { - struct sctp_association *asoc; - struct list_head out_chunk_list; - struct sctp_sched_ops *sched; - unsigned int out_qlen; - unsigned int error; - struct list_head control_chunk_list; - struct list_head sacked; - struct list_head retransmit; - struct list_head abandoned; - __u32 outstanding_bytes; - char fast_rtx; - char cork; -}; - -struct sctp_ulpq { - char pd_mode; - struct sctp_association *asoc; - struct sk_buff_head reasm; - struct sk_buff_head reasm_uo; - struct sk_buff_head lobby; -}; - -struct sctp_priv_assoc_stats { - struct __kernel_sockaddr_storage obs_rto_ipaddr; - __u64 max_obs_rto; - __u64 isacks; - __u64 osacks; - __u64 opackets; - __u64 ipackets; - __u64 rtxchunks; - __u64 outofseqtsns; - __u64 idupchunks; - __u64 gapcnt; - __u64 ouodchunks; - __u64 iuodchunks; - __u64 oodchunks; - __u64 iodchunks; - __u64 octrlchunks; - __u64 ictrlchunks; -}; - -struct sctp_endpoint; - -struct sctp_transport; - -struct sctp_random_param; - -struct sctp_chunks_param; - -struct sctp_hmac_algo_param; - -struct sctp_auth_bytes; - -struct sctp_shared_key; - -struct sctp_association { - struct sctp_ep_common base; - struct list_head asocs; - sctp_assoc_t assoc_id; - struct sctp_endpoint *ep; - struct sctp_cookie c; - struct { - struct list_head transport_addr_list; - __u32 rwnd; - __u16 transport_count; - __u16 port; - struct sctp_transport *primary_path; - union sctp_addr primary_addr; - struct sctp_transport *active_path; - struct sctp_transport *retran_path; - struct sctp_transport *last_sent_to; - struct sctp_transport *last_data_from; - struct sctp_tsnmap tsn_map; - __be16 addip_disabled_mask; - __u16 ecn_capable: 1; - __u16 ipv4_address: 1; - __u16 ipv6_address: 1; - __u16 asconf_capable: 1; - __u16 prsctp_capable: 1; - __u16 reconf_capable: 1; - __u16 intl_capable: 1; - __u16 auth_capable: 1; - __u16 sack_needed: 1; - __u16 sack_generation: 1; - __u16 zero_window_announced: 1; - __u32 sack_cnt; - __u32 adaptation_ind; - struct sctp_inithdr_host i; - void *cookie; - int cookie_len; - __u32 addip_serial; - struct sctp_random_param *peer_random; - struct sctp_chunks_param *peer_chunks; - struct sctp_hmac_algo_param *peer_hmacs; - } peer; - enum sctp_state state; - int overall_error_count; - ktime_t cookie_life; - long unsigned int rto_initial; - long unsigned int rto_max; - long unsigned int rto_min; - int max_burst; - int max_retrans; - __u16 pf_retrans; - __u16 ps_retrans; - __u16 max_init_attempts; - __u16 init_retries; - long unsigned int max_init_timeo; - long unsigned int hbinterval; - long unsigned int probe_interval; - __be16 encap_port; - __u16 pathmaxrxt; - __u32 flowlabel; - __u8 dscp; - __u8 pmtu_pending; - __u32 pathmtu; - __u32 param_flags; - __u32 sackfreq; - long unsigned int sackdelay; - long unsigned int timeouts[12]; - struct timer_list timers[12]; - struct sctp_transport *shutdown_last_sent_to; - struct sctp_transport *init_last_sent_to; - int shutdown_retries; - __u32 next_tsn; - __u32 ctsn_ack_point; - __u32 adv_peer_ack_point; - __u32 highest_sacked; - __u32 fast_recovery_exit; - __u8 fast_recovery; - __u16 unack_data; - __u32 rtx_data_chunks; - __u32 rwnd; - __u32 a_rwnd; - __u32 rwnd_over; - __u32 rwnd_press; - int sndbuf_used; - atomic_t rmem_alloc; - wait_queue_head_t wait; - __u32 frag_point; - __u32 user_frag; - int init_err_counter; - int init_cycle; - __u16 default_stream; - __u16 default_flags; - __u32 default_ppid; - __u32 default_context; - __u32 default_timetolive; - __u32 default_rcv_context; - struct sctp_stream stream; - struct sctp_outq outqueue; - struct sctp_ulpq ulpq; - __u32 last_ecne_tsn; - __u32 last_cwr_tsn; - int numduptsns; - struct sctp_chunk *addip_last_asconf; - struct list_head asconf_ack_list; - struct list_head addip_chunk_list; - __u32 addip_serial; - int src_out_of_asoc_ok; - union sctp_addr *asconf_addr_del_pending; - struct sctp_transport *new_transport; - struct list_head endpoint_shared_keys; - struct sctp_auth_bytes *asoc_shared_key; - struct sctp_shared_key *shkey; - __u16 default_hmac_id; - __u16 active_key_id; - __u8 need_ecne: 1; - __u8 temp: 1; - __u8 pf_expose: 2; - __u8 force_delay: 1; - __u8 strreset_enable; - __u8 strreset_outstanding; - __u32 strreset_outseq; - __u32 strreset_inseq; - __u32 strreset_result[2]; - struct sctp_chunk *strreset_chunk; - struct sctp_priv_assoc_stats stats; - int sent_cnt_removable; - __u16 subscribe; - __u64 abandoned_unsent[3]; - __u64 abandoned_sent[3]; - u32 secid; - u32 peer_secid; - struct callback_head rcu; -}; - -struct netlbl_lsm_cache { - refcount_t refcount; - void (*free)(const void *); - void *data; -}; - -struct netlbl_lsm_secattr { - u32 flags; - u32 type; - char *domain; - struct netlbl_lsm_cache *cache; - struct { - struct { - struct netlbl_lsm_catmap *cat; - u32 lvl; - } mls; - u32 secid; - } attr; -}; - -struct ip6_sf_socklist { - unsigned int sl_max; - unsigned int sl_count; - struct callback_head rcu; - struct in6_addr sl_addr[0]; -}; - -struct ip6_flowlabel { - struct ip6_flowlabel *next; - __be32 label; - atomic_t users; - struct in6_addr dst; - struct ipv6_txoptions *opt; - long unsigned int linger; - struct callback_head rcu; - u8 share; - union { - struct pid *pid; - kuid_t uid; - } owner; - long unsigned int lastuse; - long unsigned int expires; - struct net *fl_net; -}; - -struct sk_security_struct { - enum { - NLBL_UNSET = 0, - NLBL_REQUIRE = 1, - NLBL_LABELED = 2, - NLBL_REQSKB = 3, - NLBL_CONNLABELED = 4, - } nlbl_state; - struct netlbl_lsm_secattr *nlbl_secattr; - u32 sid; - u32 peer_sid; - u16 sclass; - enum { - SCTP_ASSOC_UNSET = 0, - SCTP_ASSOC_SET = 1, - } sctp_assoc_state; -}; - -struct sctp_initmsg { - __u16 sinit_num_ostreams; - __u16 sinit_max_instreams; - __u16 sinit_max_attempts; - __u16 sinit_max_init_timeo; -}; - -struct sctp_sndrcvinfo { - __u16 sinfo_stream; - __u16 sinfo_ssn; - __u16 sinfo_flags; - __u32 sinfo_ppid; - __u32 sinfo_context; - __u32 sinfo_timetolive; - __u32 sinfo_tsn; - __u32 sinfo_cumtsn; - sctp_assoc_t sinfo_assoc_id; -}; - -struct sctp_rtoinfo { - sctp_assoc_t srto_assoc_id; - __u32 srto_initial; - __u32 srto_max; - __u32 srto_min; -}; - -struct sctp_assocparams { - sctp_assoc_t sasoc_assoc_id; - __u16 sasoc_asocmaxrxt; - __u16 sasoc_number_peer_destinations; - __u32 sasoc_peer_rwnd; - __u32 sasoc_local_rwnd; - __u32 sasoc_cookie_life; -}; - -struct sctp_paddrparams { - sctp_assoc_t spp_assoc_id; - struct __kernel_sockaddr_storage spp_address; - __u32 spp_hbinterval; - __u16 spp_pathmaxrxt; - __u32 spp_pathmtu; - __u32 spp_sackdelay; - __u32 spp_flags; - __u32 spp_ipv6_flowlabel; - __u8 spp_dscp; - int: 0; -} __attribute__((packed)); - -struct sctphdr { - __be16 source; - __be16 dest; - __be32 vtag; - __le32 checksum; -}; - -struct sctp_chunkhdr { - __u8 type; - __u8 flags; - __be16 length; -}; - -struct sctp_paramhdr { - __be16 type; - __be16 length; -}; - -struct sctp_datahdr { - __be32 tsn; - __be16 stream; - __be16 ssn; - __u32 ppid; -}; - -struct sctp_idatahdr { - __be32 tsn; - __be16 stream; - __be16 reserved; - __be32 mid; - union { - __u32 ppid; - __be32 fsn; - }; -}; - -struct sctp_inithdr { - __be32 init_tag; - __be32 a_rwnd; - __be16 num_outbound_streams; - __be16 num_inbound_streams; - __be32 initial_tsn; -}; - -struct sctp_ipv4addr_param { - struct sctp_paramhdr param_hdr; - struct in_addr addr; -}; - -struct sctp_ipv6addr_param { - struct sctp_paramhdr param_hdr; - struct in6_addr addr; -}; - -struct sctp_cookie_preserve_param { - struct sctp_paramhdr param_hdr; - __be32 lifespan_increment; -}; - -struct sctp_hostname_param { - struct sctp_paramhdr param_hdr; - uint8_t hostname[0]; -}; - -struct sctp_supported_addrs_param { - struct sctp_paramhdr param_hdr; - __be16 types[0]; -}; - -struct sctp_adaptation_ind_param { - struct sctp_paramhdr param_hdr; - __be32 adaptation_ind; -}; - -struct sctp_supported_ext_param { - struct sctp_paramhdr param_hdr; - __u8 chunks[0]; -}; - -struct sctp_random_param { - struct sctp_paramhdr param_hdr; - __u8 random_val[0]; -}; - -struct sctp_chunks_param { - struct sctp_paramhdr param_hdr; - __u8 chunks[0]; -}; - -struct sctp_hmac_algo_param { - struct sctp_paramhdr param_hdr; - __be16 hmac_ids[0]; -}; - -struct sctp_cookie_param { - struct sctp_paramhdr p; - __u8 body[0]; -}; - -struct sctp_sackhdr { - __be32 cum_tsn_ack; - __be32 a_rwnd; - __be16 num_gap_ack_blocks; - __be16 num_dup_tsns; -}; - -struct sctp_heartbeathdr { - struct sctp_paramhdr info; -}; - -struct sctp_shutdownhdr { - __be32 cum_tsn_ack; -}; - -struct sctp_errhdr { - __be16 cause; - __be16 length; -}; - -struct sctp_ecnehdr { - __be32 lowest_tsn; -}; - -struct sctp_cwrhdr { - __be32 lowest_tsn; -}; - -struct sctp_fwdtsn_hdr { - __be32 new_cum_tsn; -}; - -struct sctp_ifwdtsn_hdr { - __be32 new_cum_tsn; -}; - -struct sctp_addip_param { - struct sctp_paramhdr param_hdr; - __be32 crr_id; -}; - -struct sctp_addiphdr { - __be32 serial; -}; - -struct sctp_authhdr { - __be16 shkey_id; - __be16 hmac_id; -}; - -struct sctp_auth_bytes { - refcount_t refcnt; - __u32 len; - __u8 data[0]; -}; - -struct sctp_shared_key { - struct list_head key_list; - struct sctp_auth_bytes *key; - refcount_t refcnt; - __u16 key_id; - __u8 deactivated; -}; - -enum sctp_scope { - SCTP_SCOPE_GLOBAL = 0, - SCTP_SCOPE_PRIVATE = 1, - SCTP_SCOPE_LINK = 2, - SCTP_SCOPE_LOOPBACK = 3, - SCTP_SCOPE_UNUSABLE = 4, -}; - -struct sctp_ulpevent { - struct sctp_association *asoc; - struct sctp_chunk *chunk; - unsigned int rmem_len; - union { - __u32 mid; - __u16 ssn; - }; - union { - __u32 ppid; - __u32 fsn; - }; - __u32 tsn; - __u32 cumtsn; - __u16 stream; - __u16 flags; - __u16 msg_flags; -} __attribute__((packed)); - -union sctp_addr_param; - -union sctp_params { - void *v; - struct sctp_paramhdr *p; - struct sctp_cookie_preserve_param *life; - struct sctp_hostname_param *dns; - struct sctp_cookie_param *cookie; - struct sctp_supported_addrs_param *sat; - struct sctp_ipv4addr_param *v4; - struct sctp_ipv6addr_param *v6; - union sctp_addr_param *addr; - struct sctp_adaptation_ind_param *aind; - struct sctp_supported_ext_param *ext; - struct sctp_random_param *random; - struct sctp_chunks_param *chunks; - struct sctp_hmac_algo_param *hmac_algo; - struct sctp_addip_param *addip; -}; - -struct sctp_sender_hb_info; - -struct sctp_signed_cookie; - -struct sctp_datamsg; - -struct sctp_chunk { - struct list_head list; - refcount_t refcnt; - int sent_count; - union { - struct list_head transmitted_list; - struct list_head stream_list; - }; - struct list_head frag_list; - struct sk_buff *skb; - union { - struct sk_buff *head_skb; - struct sctp_shared_key *shkey; - }; - union sctp_params param_hdr; - union { - __u8 *v; - struct sctp_datahdr *data_hdr; - struct sctp_inithdr *init_hdr; - struct sctp_sackhdr *sack_hdr; - struct sctp_heartbeathdr *hb_hdr; - struct sctp_sender_hb_info *hbs_hdr; - struct sctp_shutdownhdr *shutdown_hdr; - struct sctp_signed_cookie *cookie_hdr; - struct sctp_ecnehdr *ecne_hdr; - struct sctp_cwrhdr *ecn_cwr_hdr; - struct sctp_errhdr *err_hdr; - struct sctp_addiphdr *addip_hdr; - struct sctp_fwdtsn_hdr *fwdtsn_hdr; - struct sctp_authhdr *auth_hdr; - struct sctp_idatahdr *idata_hdr; - struct sctp_ifwdtsn_hdr *ifwdtsn_hdr; - } subh; - __u8 *chunk_end; - struct sctp_chunkhdr *chunk_hdr; - struct sctphdr *sctp_hdr; - struct sctp_sndrcvinfo sinfo; - struct sctp_association *asoc; - struct sctp_ep_common *rcvr; - long unsigned int sent_at; - union sctp_addr source; - union sctp_addr dest; - struct sctp_datamsg *msg; - struct sctp_transport *transport; - struct sk_buff *auth_chunk; - __u16 rtt_in_progress: 1; - __u16 has_tsn: 1; - __u16 has_ssn: 1; - __u16 singleton: 1; - __u16 end_of_packet: 1; - __u16 ecn_ce_done: 1; - __u16 pdiscard: 1; - __u16 tsn_gap_acked: 1; - __u16 data_accepted: 1; - __u16 auth: 1; - __u16 has_asconf: 1; - __u16 pmtu_probe: 1; - __u16 tsn_missing_report: 2; - __u16 fast_retransmit: 2; -}; - -struct sctp_stream_interleave { - __u16 data_chunk_len; - __u16 ftsn_chunk_len; - struct sctp_chunk * (*make_datafrag)(const struct sctp_association *, const struct sctp_sndrcvinfo *, int, __u8, gfp_t); - void (*assign_number)(struct sctp_chunk *); - bool (*validate_data)(struct sctp_chunk *); - int (*ulpevent_data)(struct sctp_ulpq *, struct sctp_chunk *, gfp_t); - int (*enqueue_event)(struct sctp_ulpq *, struct sctp_ulpevent *); - void (*renege_events)(struct sctp_ulpq *, struct sctp_chunk *, gfp_t); - void (*start_pd)(struct sctp_ulpq *, gfp_t); - void (*abort_pd)(struct sctp_ulpq *, gfp_t); - void (*generate_ftsn)(struct sctp_outq *, __u32); - bool (*validate_ftsn)(struct sctp_chunk *); - void (*report_ftsn)(struct sctp_ulpq *, __u32); - void (*handle_ftsn)(struct sctp_ulpq *, struct sctp_chunk *); -}; - -struct sctp_bind_bucket { - short unsigned int port; - signed char fastreuse; - signed char fastreuseport; - kuid_t fastuid; - struct hlist_node node; - struct hlist_head owner; - struct net *net; -}; - -enum sctp_socket_type { - SCTP_SOCKET_UDP = 0, - SCTP_SOCKET_UDP_HIGH_BANDWIDTH = 1, - SCTP_SOCKET_TCP = 2, -}; - -struct sctp_pf; - -struct sctp_sock { - struct inet_sock inet; - enum sctp_socket_type type; - struct sctp_pf *pf; - struct crypto_shash *hmac; - char *sctp_hmac_alg; - struct sctp_endpoint *ep; - struct sctp_bind_bucket *bind_hash; - __u16 default_stream; - __u32 default_ppid; - __u16 default_flags; - __u32 default_context; - __u32 default_timetolive; - __u32 default_rcv_context; - int max_burst; - __u32 hbinterval; - __u32 probe_interval; - __be16 udp_port; - __be16 encap_port; - __u16 pathmaxrxt; - __u32 flowlabel; - __u8 dscp; - __u16 pf_retrans; - __u16 ps_retrans; - __u32 pathmtu; - __u32 sackdelay; - __u32 sackfreq; - __u32 param_flags; - __u32 default_ss; - struct sctp_rtoinfo rtoinfo; - struct sctp_paddrparams paddrparam; - struct sctp_assocparams assocparams; - __u16 subscribe; - struct sctp_initmsg initmsg; - int user_frag; - __u32 autoclose; - __u32 adaptation_ind; - __u32 pd_point; - __u16 nodelay: 1; - __u16 pf_expose: 2; - __u16 reuse: 1; - __u16 disable_fragments: 1; - __u16 v4mapped: 1; - __u16 frag_interleave: 1; - __u16 recvrcvinfo: 1; - __u16 recvnxtinfo: 1; - __u16 data_ready_signalled: 1; - atomic_t pd_mode; - struct sk_buff_head pd_lobby; - struct list_head auto_asconf_list; - int do_auto_asconf; -}; - -struct sctp_af; - -struct sctp_pf { - void (*event_msgname)(struct sctp_ulpevent *, char *, int *); - void (*skb_msgname)(struct sk_buff *, char *, int *); - int (*af_supported)(sa_family_t, struct sctp_sock *); - int (*cmp_addr)(const union sctp_addr *, const union sctp_addr *, struct sctp_sock *); - int (*bind_verify)(struct sctp_sock *, union sctp_addr *); - int (*send_verify)(struct sctp_sock *, union sctp_addr *); - int (*supported_addrs)(const struct sctp_sock *, __be16 *); - struct sock * (*create_accept_sk)(struct sock *, struct sctp_association *, bool); - int (*addr_to_user)(struct sctp_sock *, union sctp_addr *); - void (*to_sk_saddr)(union sctp_addr *, struct sock *); - void (*to_sk_daddr)(union sctp_addr *, struct sock *); - void (*copy_ip_options)(struct sock *, struct sock *); - struct sctp_af *af; -}; - -struct sctp_endpoint { - struct sctp_ep_common base; - struct hlist_node node; - int hashent; - struct list_head asocs; - __u8 secret_key[32]; - __u8 *digest; - __u32 sndbuf_policy; - __u32 rcvbuf_policy; - struct crypto_shash **auth_hmacs; - struct sctp_hmac_algo_param *auth_hmacs_list; - struct sctp_chunks_param *auth_chunk_list; - struct list_head endpoint_shared_keys; - __u16 active_key_id; - __u8 ecn_enable: 1; - __u8 auth_enable: 1; - __u8 intl_enable: 1; - __u8 prsctp_enable: 1; - __u8 asconf_enable: 1; - __u8 reconf_enable: 1; - __u8 strreset_enable; - struct callback_head rcu; -}; - -struct sctp_signed_cookie { - __u8 signature[32]; - __u32 __pad; - struct sctp_cookie c; -} __attribute__((packed)); - -union sctp_addr_param { - struct sctp_paramhdr p; - struct sctp_ipv4addr_param v4; - struct sctp_ipv6addr_param v6; -}; - -struct sctp_sender_hb_info { - struct sctp_paramhdr param_hdr; - union sctp_addr daddr; - long unsigned int sent_at; - __u64 hb_nonce; - __u32 probe_size; -}; - -struct sctp_af { - int (*sctp_xmit)(struct sk_buff *, struct sctp_transport *); - int (*setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); - int (*getsockopt)(struct sock *, int, int, char *, int *); - void (*get_dst)(struct sctp_transport *, union sctp_addr *, struct flowi *, struct sock *); - void (*get_saddr)(struct sctp_sock *, struct sctp_transport *, struct flowi *); - void (*copy_addrlist)(struct list_head *, struct net_device *); - int (*cmp_addr)(const union sctp_addr *, const union sctp_addr *); - void (*addr_copy)(union sctp_addr *, union sctp_addr *); - void (*from_skb)(union sctp_addr *, struct sk_buff *, int); - void (*from_sk)(union sctp_addr *, struct sock *); - bool (*from_addr_param)(union sctp_addr *, union sctp_addr_param *, __be16, int); - int (*to_addr_param)(const union sctp_addr *, union sctp_addr_param *); - int (*addr_valid)(union sctp_addr *, struct sctp_sock *, const struct sk_buff *); - enum sctp_scope (*scope)(union sctp_addr *); - void (*inaddr_any)(union sctp_addr *, __be16); - int (*is_any)(const union sctp_addr *); - int (*available)(union sctp_addr *, struct sctp_sock *); - int (*skb_iif)(const struct sk_buff *); - int (*skb_sdif)(const struct sk_buff *); - int (*is_ce)(const struct sk_buff *); - void (*seq_dump_addr)(struct seq_file *, union sctp_addr *); - void (*ecn_capable)(struct sock *); - __u16 net_header_len; - int sockaddr_len; - int (*ip_options_len)(struct sock *); - sa_family_t sa_family; - struct list_head list; -}; - -struct sctp_packet { - __u16 source_port; - __u16 destination_port; - __u32 vtag; - struct list_head chunk_list; - size_t overhead; - size_t size; - size_t max_size; - struct sctp_transport *transport; - struct sctp_chunk *auth; - u8 has_cookie_echo: 1; - u8 has_sack: 1; - u8 has_auth: 1; - u8 has_data: 1; - u8 ipfragok: 1; -}; - -struct sctp_transport { - struct list_head transports; - struct rhlist_head node; - refcount_t refcnt; - __u32 dead: 1; - __u32 rto_pending: 1; - __u32 hb_sent: 1; - __u32 pmtu_pending: 1; - __u32 dst_pending_confirm: 1; - __u32 sack_generation: 1; - u32 dst_cookie; - struct flowi fl; - union sctp_addr ipaddr; - struct sctp_af *af_specific; - struct sctp_association *asoc; - long unsigned int rto; - __u32 rtt; - __u32 rttvar; - __u32 srtt; - __u32 cwnd; - __u32 ssthresh; - __u32 partial_bytes_acked; - __u32 flight_size; - __u32 burst_limited; - struct dst_entry *dst; - union sctp_addr saddr; - long unsigned int hbinterval; - long unsigned int probe_interval; - long unsigned int sackdelay; - __u32 sackfreq; - atomic_t mtu_info; - ktime_t last_time_heard; - long unsigned int last_time_sent; - long unsigned int last_time_ecne_reduced; - __be16 encap_port; - __u16 pathmaxrxt; - __u32 flowlabel; - __u8 dscp; - __u16 pf_retrans; - __u16 ps_retrans; - __u32 pathmtu; - __u32 param_flags; - int init_sent_count; - int state; - short unsigned int error_count; - struct timer_list T3_rtx_timer; - struct timer_list hb_timer; - struct timer_list proto_unreach_timer; - struct timer_list reconf_timer; - struct timer_list probe_timer; - struct list_head transmitted; - struct sctp_packet packet; - struct list_head send_ready; - struct { - __u32 next_tsn_at_change; - char changeover_active; - char cycling_changeover; - char cacc_saw_newack; - } cacc; - struct { - __u16 pmtu; - __u16 probe_size; - __u16 probe_high; - __u8 probe_count; - __u8 state; - } pl; - __u64 hb_nonce; - struct callback_head rcu; -}; - -struct sctp_datamsg { - struct list_head chunks; - refcount_t refcnt; - long unsigned int expires_at; - int send_error; - u8 send_failed: 1; - u8 can_delay: 1; - u8 abandoned: 1; -}; - -struct sctp_stream_priorities { - struct list_head prio_sched; - struct list_head active; - struct sctp_stream_out_ext *next; - __u16 prio; - __u16 users; -}; - -struct sctp_stream_out_ext { - __u64 abandoned_unsent[3]; - __u64 abandoned_sent[3]; - struct list_head outq; - union { - struct { - struct list_head prio_list; - struct sctp_stream_priorities *prio_head; - }; - struct { - struct list_head rr_list; - }; - struct { - struct list_head fc_list; - __u32 fc_length; - __u16 fc_weight; - }; - }; -}; - -struct smack_known { - struct list_head list; - struct hlist_node smk_hashed; - char *smk_known; - u32 smk_secid; - struct netlbl_lsm_secattr smk_netlabel; - struct list_head smk_rules; - struct mutex smk_rules_lock; -}; - -struct smack_audit_data { - const char *function; - char *subject; - char *object; - char *request; - int result; -}; - -struct task_smack { - struct smack_known *smk_task; - struct smack_known *smk_forked; - struct smack_known *smk_transmuted; - struct list_head smk_rules; - struct mutex smk_rules_lock; - struct list_head smk_relabel; -}; - -struct smack_rule { - struct list_head list; - struct smack_known *smk_subject; - struct smack_known *smk_object; - int smk_access; -}; - -struct smack_known_list_elem { - struct list_head list; - struct smack_known *smk_label; -}; - -struct smk_audit_info { - struct common_audit_data a; - struct smack_audit_data sad; -}; - -struct sockaddr_un { - __kernel_sa_family_t sun_family; - char sun_path[108]; -}; - -struct unix_address { - refcount_t refcnt; - int len; - struct sockaddr_un name[0]; -}; - -struct scm_stat { - atomic_t nr_fds; - long unsigned int nr_unix_fds; -}; - -struct unix_vertex; - -struct unix_sock { - struct sock sk; - struct unix_address *addr; - struct path path; - struct mutex iolock; - struct mutex bindlock; - struct sock *peer; - struct sock *listener; - struct unix_vertex *vertex; - spinlock_t lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct socket_wq peer_wq; - wait_queue_entry_t peer_wake; - struct scm_stat scm_stat; - int inq_len; - bool recvmsg_inq; - struct sk_buff *oob_skb; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct tcphdr { - __be16 source; - __be16 dest; - __be32 seq; - __be32 ack_seq; - __u16 ae: 1; - __u16 res1: 3; - __u16 doff: 4; - __u16 fin: 1; - __u16 syn: 1; - __u16 rst: 1; - __u16 psh: 1; - __u16 ack: 1; - __u16 urg: 1; - __u16 ece: 1; - __u16 cwr: 1; - __be16 window; - __sum16 check; - __be16 urg_ptr; -}; - -struct udphdr { - __be16 source; - __be16 dest; - __be16 len; - __sum16 check; -}; - -enum tomoyo_conditions_index { - TOMOYO_TASK_UID = 0, - TOMOYO_TASK_EUID = 1, - TOMOYO_TASK_SUID = 2, - TOMOYO_TASK_FSUID = 3, - TOMOYO_TASK_GID = 4, - TOMOYO_TASK_EGID = 5, - TOMOYO_TASK_SGID = 6, - TOMOYO_TASK_FSGID = 7, - TOMOYO_TASK_PID = 8, - TOMOYO_TASK_PPID = 9, - TOMOYO_EXEC_ARGC = 10, - TOMOYO_EXEC_ENVC = 11, - TOMOYO_TYPE_IS_SOCKET = 12, - TOMOYO_TYPE_IS_SYMLINK = 13, - TOMOYO_TYPE_IS_FILE = 14, - TOMOYO_TYPE_IS_BLOCK_DEV = 15, - TOMOYO_TYPE_IS_DIRECTORY = 16, - TOMOYO_TYPE_IS_CHAR_DEV = 17, - TOMOYO_TYPE_IS_FIFO = 18, - TOMOYO_MODE_SETUID = 19, - TOMOYO_MODE_SETGID = 20, - TOMOYO_MODE_STICKY = 21, - TOMOYO_MODE_OWNER_READ = 22, - TOMOYO_MODE_OWNER_WRITE = 23, - TOMOYO_MODE_OWNER_EXECUTE = 24, - TOMOYO_MODE_GROUP_READ = 25, - TOMOYO_MODE_GROUP_WRITE = 26, - TOMOYO_MODE_GROUP_EXECUTE = 27, - TOMOYO_MODE_OTHERS_READ = 28, - TOMOYO_MODE_OTHERS_WRITE = 29, - TOMOYO_MODE_OTHERS_EXECUTE = 30, - TOMOYO_EXEC_REALPATH = 31, - TOMOYO_SYMLINK_TARGET = 32, - TOMOYO_PATH1_UID = 33, - TOMOYO_PATH1_GID = 34, - TOMOYO_PATH1_INO = 35, - TOMOYO_PATH1_MAJOR = 36, - TOMOYO_PATH1_MINOR = 37, - TOMOYO_PATH1_PERM = 38, - TOMOYO_PATH1_TYPE = 39, - TOMOYO_PATH1_DEV_MAJOR = 40, - TOMOYO_PATH1_DEV_MINOR = 41, - TOMOYO_PATH2_UID = 42, - TOMOYO_PATH2_GID = 43, - TOMOYO_PATH2_INO = 44, - TOMOYO_PATH2_MAJOR = 45, - TOMOYO_PATH2_MINOR = 46, - TOMOYO_PATH2_PERM = 47, - TOMOYO_PATH2_TYPE = 48, - TOMOYO_PATH2_DEV_MAJOR = 49, - TOMOYO_PATH2_DEV_MINOR = 50, - TOMOYO_PATH1_PARENT_UID = 51, - TOMOYO_PATH1_PARENT_GID = 52, - TOMOYO_PATH1_PARENT_INO = 53, - TOMOYO_PATH1_PARENT_PERM = 54, - TOMOYO_PATH2_PARENT_UID = 55, - TOMOYO_PATH2_PARENT_GID = 56, - TOMOYO_PATH2_PARENT_INO = 57, - TOMOYO_PATH2_PARENT_PERM = 58, - TOMOYO_MAX_CONDITION_KEYWORD = 59, - TOMOYO_NUMBER_UNION = 60, - TOMOYO_NAME_UNION = 61, - TOMOYO_ARGV_ENTRY = 62, - TOMOYO_ENVP_ENTRY = 63, -}; - -enum tomoyo_path_stat_index { - TOMOYO_PATH1 = 0, - TOMOYO_PATH1_PARENT = 1, - TOMOYO_PATH2 = 2, - TOMOYO_PATH2_PARENT = 3, - TOMOYO_MAX_PATH_STAT = 4, -}; - -enum tomoyo_mode_index { - TOMOYO_CONFIG_DISABLED = 0, - TOMOYO_CONFIG_LEARNING = 1, - TOMOYO_CONFIG_PERMISSIVE = 2, - TOMOYO_CONFIG_ENFORCING = 3, - TOMOYO_CONFIG_MAX_MODE = 4, - TOMOYO_CONFIG_WANT_REJECT_LOG = 64, - TOMOYO_CONFIG_WANT_GRANT_LOG = 128, - TOMOYO_CONFIG_USE_DEFAULT = 255, -}; - -enum tomoyo_policy_id { - TOMOYO_ID_GROUP = 0, - TOMOYO_ID_ADDRESS_GROUP = 1, - TOMOYO_ID_PATH_GROUP = 2, - TOMOYO_ID_NUMBER_GROUP = 3, - TOMOYO_ID_TRANSITION_CONTROL = 4, - TOMOYO_ID_AGGREGATOR = 5, - TOMOYO_ID_MANAGER = 6, - TOMOYO_ID_CONDITION = 7, - TOMOYO_ID_NAME = 8, - TOMOYO_ID_ACL = 9, - TOMOYO_ID_DOMAIN = 10, - TOMOYO_MAX_POLICY = 11, -}; - -enum tomoyo_domain_info_flags_index { - TOMOYO_DIF_QUOTA_WARNED = 0, - TOMOYO_DIF_TRANSITION_FAILED = 1, - TOMOYO_MAX_DOMAIN_INFO_FLAGS = 2, -}; - -enum tomoyo_group_id { - TOMOYO_PATH_GROUP = 0, - TOMOYO_NUMBER_GROUP = 1, - TOMOYO_ADDRESS_GROUP = 2, - TOMOYO_MAX_GROUP = 3, -}; - -enum tomoyo_transition_type { - TOMOYO_TRANSITION_CONTROL_NO_RESET = 0, - TOMOYO_TRANSITION_CONTROL_RESET = 1, - TOMOYO_TRANSITION_CONTROL_NO_INITIALIZE = 2, - TOMOYO_TRANSITION_CONTROL_INITIALIZE = 3, - TOMOYO_TRANSITION_CONTROL_NO_KEEP = 4, - TOMOYO_TRANSITION_CONTROL_KEEP = 5, - TOMOYO_MAX_TRANSITION_TYPE = 6, -}; - -enum tomoyo_acl_entry_type_index { - TOMOYO_TYPE_PATH_ACL = 0, - TOMOYO_TYPE_PATH2_ACL = 1, - TOMOYO_TYPE_PATH_NUMBER_ACL = 2, - TOMOYO_TYPE_MKDEV_ACL = 3, - TOMOYO_TYPE_MOUNT_ACL = 4, - TOMOYO_TYPE_INET_ACL = 5, - TOMOYO_TYPE_UNIX_ACL = 6, - TOMOYO_TYPE_ENV_ACL = 7, - TOMOYO_TYPE_MANUAL_TASK_ACL = 8, -}; - -enum tomoyo_path_acl_index { - TOMOYO_TYPE_EXECUTE = 0, - TOMOYO_TYPE_READ = 1, - TOMOYO_TYPE_WRITE = 2, - TOMOYO_TYPE_APPEND = 3, - TOMOYO_TYPE_UNLINK = 4, - TOMOYO_TYPE_GETATTR = 5, - TOMOYO_TYPE_RMDIR = 6, - TOMOYO_TYPE_TRUNCATE = 7, - TOMOYO_TYPE_SYMLINK = 8, - TOMOYO_TYPE_CHROOT = 9, - TOMOYO_TYPE_UMOUNT = 10, - TOMOYO_MAX_PATH_OPERATION = 11, -}; - -enum tomoyo_memory_stat_type { - TOMOYO_MEMORY_POLICY = 0, - TOMOYO_MEMORY_AUDIT = 1, - TOMOYO_MEMORY_QUERY = 2, - TOMOYO_MAX_MEMORY_STAT = 3, -}; - -enum tomoyo_mkdev_acl_index { - TOMOYO_TYPE_MKBLOCK = 0, - TOMOYO_TYPE_MKCHAR = 1, - TOMOYO_MAX_MKDEV_OPERATION = 2, -}; - -enum tomoyo_network_acl_index { - TOMOYO_NETWORK_BIND = 0, - TOMOYO_NETWORK_LISTEN = 1, - TOMOYO_NETWORK_CONNECT = 2, - TOMOYO_NETWORK_SEND = 3, - TOMOYO_MAX_NETWORK_OPERATION = 4, -}; - -enum tomoyo_path2_acl_index { - TOMOYO_TYPE_LINK = 0, - TOMOYO_TYPE_RENAME = 1, - TOMOYO_TYPE_PIVOT_ROOT = 2, - TOMOYO_MAX_PATH2_OPERATION = 3, -}; - -enum tomoyo_path_number_acl_index { - TOMOYO_TYPE_CREATE = 0, - TOMOYO_TYPE_MKDIR = 1, - TOMOYO_TYPE_MKFIFO = 2, - TOMOYO_TYPE_MKSOCK = 3, - TOMOYO_TYPE_IOCTL = 4, - TOMOYO_TYPE_CHMOD = 5, - TOMOYO_TYPE_CHOWN = 6, - TOMOYO_TYPE_CHGRP = 7, - TOMOYO_MAX_PATH_NUMBER_OPERATION = 8, -}; - -enum tomoyo_mac_index { - TOMOYO_MAC_FILE_EXECUTE = 0, - TOMOYO_MAC_FILE_OPEN = 1, - TOMOYO_MAC_FILE_CREATE = 2, - TOMOYO_MAC_FILE_UNLINK = 3, - TOMOYO_MAC_FILE_GETATTR = 4, - TOMOYO_MAC_FILE_MKDIR = 5, - TOMOYO_MAC_FILE_RMDIR = 6, - TOMOYO_MAC_FILE_MKFIFO = 7, - TOMOYO_MAC_FILE_MKSOCK = 8, - TOMOYO_MAC_FILE_TRUNCATE = 9, - TOMOYO_MAC_FILE_SYMLINK = 10, - TOMOYO_MAC_FILE_MKBLOCK = 11, - TOMOYO_MAC_FILE_MKCHAR = 12, - TOMOYO_MAC_FILE_LINK = 13, - TOMOYO_MAC_FILE_RENAME = 14, - TOMOYO_MAC_FILE_CHMOD = 15, - TOMOYO_MAC_FILE_CHOWN = 16, - TOMOYO_MAC_FILE_CHGRP = 17, - TOMOYO_MAC_FILE_IOCTL = 18, - TOMOYO_MAC_FILE_CHROOT = 19, - TOMOYO_MAC_FILE_MOUNT = 20, - TOMOYO_MAC_FILE_UMOUNT = 21, - TOMOYO_MAC_FILE_PIVOT_ROOT = 22, - TOMOYO_MAC_NETWORK_INET_STREAM_BIND = 23, - TOMOYO_MAC_NETWORK_INET_STREAM_LISTEN = 24, - TOMOYO_MAC_NETWORK_INET_STREAM_CONNECT = 25, - TOMOYO_MAC_NETWORK_INET_DGRAM_BIND = 26, - TOMOYO_MAC_NETWORK_INET_DGRAM_SEND = 27, - TOMOYO_MAC_NETWORK_INET_RAW_BIND = 28, - TOMOYO_MAC_NETWORK_INET_RAW_SEND = 29, - TOMOYO_MAC_NETWORK_UNIX_STREAM_BIND = 30, - TOMOYO_MAC_NETWORK_UNIX_STREAM_LISTEN = 31, - TOMOYO_MAC_NETWORK_UNIX_STREAM_CONNECT = 32, - TOMOYO_MAC_NETWORK_UNIX_DGRAM_BIND = 33, - TOMOYO_MAC_NETWORK_UNIX_DGRAM_SEND = 34, - TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_BIND = 35, - TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_LISTEN = 36, - TOMOYO_MAC_NETWORK_UNIX_SEQPACKET_CONNECT = 37, - TOMOYO_MAC_ENVIRON = 38, - TOMOYO_MAX_MAC_INDEX = 39, -}; - -enum tomoyo_mac_category_index { - TOMOYO_MAC_CATEGORY_FILE = 0, - TOMOYO_MAC_CATEGORY_NETWORK = 1, - TOMOYO_MAC_CATEGORY_MISC = 2, - TOMOYO_MAX_MAC_CATEGORY_INDEX = 3, -}; - -enum tomoyo_policy_stat_type { - TOMOYO_STAT_POLICY_UPDATES = 0, - TOMOYO_STAT_POLICY_LEARNING = 1, - TOMOYO_STAT_POLICY_PERMISSIVE = 2, - TOMOYO_STAT_POLICY_ENFORCING = 3, - TOMOYO_MAX_POLICY_STAT = 4, -}; - -enum tomoyo_pref_index { - TOMOYO_PREF_MAX_AUDIT_LOG = 0, - TOMOYO_PREF_MAX_LEARNING_ENTRY = 1, - TOMOYO_MAX_PREF = 2, -}; - -struct tomoyo_acl_head { - struct list_head list; - s8 is_deleted; -} __attribute__((packed)); - -struct tomoyo_shared_acl_head { - struct list_head list; - atomic_t users; -} __attribute__((packed)); - -struct tomoyo_path_info { - const char *name; - u32 hash; - u16 const_len; - bool is_dir; - bool is_patterned; -}; - -struct tomoyo_obj_info; - -struct tomoyo_execve; - -struct tomoyo_domain_info; - -struct tomoyo_acl_info; - -struct tomoyo_request_info { - struct tomoyo_obj_info *obj; - struct tomoyo_execve *ee; - struct tomoyo_domain_info *domain; - union { - struct { - const struct tomoyo_path_info *filename; - const struct tomoyo_path_info *matched_path; - u8 operation; - } path; - struct { - const struct tomoyo_path_info *filename1; - const struct tomoyo_path_info *filename2; - u8 operation; - } path2; - struct { - const struct tomoyo_path_info *filename; - unsigned int mode; - unsigned int major; - unsigned int minor; - u8 operation; - } mkdev; - struct { - const struct tomoyo_path_info *filename; - long unsigned int number; - u8 operation; - } path_number; - struct { - const struct tomoyo_path_info *name; - } environ; - struct { - const __be32 *address; - u16 port; - u8 protocol; - u8 operation; - bool is_ipv6; - } inet_network; - struct { - const struct tomoyo_path_info *address; - u8 protocol; - u8 operation; - } unix_network; - struct { - const struct tomoyo_path_info *type; - const struct tomoyo_path_info *dir; - const struct tomoyo_path_info *dev; - long unsigned int flags; - int need_dev; - } mount; - struct { - const struct tomoyo_path_info *domainname; - } task; - } param; - struct tomoyo_acl_info *matched_acl; - u8 param_type; - bool granted; - u8 retry; - u8 profile; - u8 mode; - u8 type; -}; - -struct tomoyo_mini_stat { - kuid_t uid; - kgid_t gid; - ino_t ino; - umode_t mode; - dev_t dev; - dev_t rdev; -}; - -struct tomoyo_obj_info { - bool validate_done; - bool stat_valid[4]; - struct path path1; - struct path path2; - struct tomoyo_mini_stat stat[4]; - struct tomoyo_path_info *symlink_target; -}; - -struct tomoyo_page_dump { - struct page *page; - char *data; -}; - -struct tomoyo_execve { - struct tomoyo_request_info r; - struct tomoyo_obj_info obj; - struct linux_binprm *bprm; - const struct tomoyo_path_info *transition; - struct tomoyo_page_dump dump; - char *tmp; -}; - -struct tomoyo_policy_namespace; - -struct tomoyo_domain_info { - struct list_head list; - struct list_head acl_info_list; - const struct tomoyo_path_info *domainname; - struct tomoyo_policy_namespace *ns; - long unsigned int group[4]; - u8 profile; - bool is_deleted; - bool flags[2]; - atomic_t users; -}; - -struct tomoyo_condition; - -struct tomoyo_acl_info { - struct list_head list; - struct tomoyo_condition *cond; - s8 is_deleted; - u8 type; -} __attribute__((packed)); - -struct tomoyo_name { - struct tomoyo_shared_acl_head head; - struct tomoyo_path_info entry; -}; - -struct tomoyo_group; - -struct tomoyo_name_union { - const struct tomoyo_path_info *filename; - struct tomoyo_group *group; -}; - -struct tomoyo_group { - struct tomoyo_shared_acl_head head; - const struct tomoyo_path_info *group_name; - struct list_head member_list; -}; - -struct tomoyo_condition { - struct tomoyo_shared_acl_head head; - u32 size; - u16 condc; - u16 numbers_count; - u16 names_count; - u16 argc; - u16 envc; - u8 grant_log; - const struct tomoyo_path_info *transit; -}; - -struct tomoyo_profile; - -struct tomoyo_policy_namespace { - struct tomoyo_profile *profile_ptr[256]; - struct list_head group_list[3]; - struct list_head policy_list[11]; - struct list_head acl_group[256]; - struct list_head namespace_list; - unsigned int profile_version; - const char *name; -}; - -struct tomoyo_path_acl { - struct tomoyo_acl_info head; - u16 perm; - struct tomoyo_name_union name; -}; - -struct tomoyo_acl_param { - char *data; - struct list_head *list; - struct tomoyo_policy_namespace *ns; - bool is_delete; -}; - -struct tomoyo_transition_control { - struct tomoyo_acl_head head; - u8 type; - bool is_last_name; - const struct tomoyo_path_info *domainname; - const struct tomoyo_path_info *program; -}; - -struct tomoyo_aggregator { - struct tomoyo_acl_head head; - const struct tomoyo_path_info *original_name; - const struct tomoyo_path_info *aggregated_name; -}; - -struct tomoyo_preference { - unsigned int learning_max_entry; - bool enforcing_verbose; - bool learning_verbose; - bool permissive_verbose; -}; - -struct tomoyo_profile { - const struct tomoyo_path_info *comment; - struct tomoyo_preference *learning; - struct tomoyo_preference *permissive; - struct tomoyo_preference *enforcing; - struct tomoyo_preference preference; - u8 default_config; - u8 config[42]; - unsigned int pref[2]; -}; - -struct tomoyo_task { - struct tomoyo_domain_info *domain_info; - struct tomoyo_domain_info *old_domain_info; -}; - -struct tomoyo_number_union { - long unsigned int values[2]; - struct tomoyo_group *group; - u8 value_type[2]; -}; - -struct tomoyo_ipaddr_union { - struct in6_addr ip[2]; - struct tomoyo_group *group; - bool is_ipv6; -}; - -struct tomoyo_path_group { - struct tomoyo_acl_head head; - const struct tomoyo_path_info *member_name; -}; - -struct tomoyo_number_group { - struct tomoyo_acl_head head; - struct tomoyo_number_union number; -}; - -struct tomoyo_address_group { - struct tomoyo_acl_head head; - struct tomoyo_ipaddr_union address; -}; - -struct lsm_id { - const char *name; - u64 id; - bool lsmprop; -}; - -union security_list_options { - int (*binder_set_context_mgr)(const struct cred *); - int (*binder_transaction)(const struct cred *, const struct cred *); - int (*binder_transfer_binder)(const struct cred *, const struct cred *); - int (*binder_transfer_file)(const struct cred *, const struct cred *, const struct file *); - int (*ptrace_access_check)(struct task_struct *, unsigned int); - int (*ptrace_traceme)(struct task_struct *); - int (*capget)(const struct task_struct *, kernel_cap_t *, kernel_cap_t *, kernel_cap_t *); - int (*capset)(struct cred *, const struct cred *, const kernel_cap_t *, const kernel_cap_t *, const kernel_cap_t *); - int (*capable)(const struct cred *, struct user_namespace *, int, unsigned int); - int (*quotactl)(int, int, int, const struct super_block *); - int (*quota_on)(struct dentry *); - int (*syslog)(int); - int (*settime)(const struct timespec64 *, const struct timezone *); - int (*vm_enough_memory)(struct mm_struct *, long int); - int (*bprm_creds_for_exec)(struct linux_binprm *); - int (*bprm_creds_from_file)(struct linux_binprm *, const struct file *); - int (*bprm_check_security)(struct linux_binprm *); - void (*bprm_committing_creds)(const struct linux_binprm *); - void (*bprm_committed_creds)(const struct linux_binprm *); - int (*fs_context_submount)(struct fs_context *, struct super_block *); - int (*fs_context_dup)(struct fs_context *, struct fs_context *); - int (*fs_context_parse_param)(struct fs_context *, struct fs_parameter *); - int (*sb_alloc_security)(struct super_block *); - void (*sb_delete)(struct super_block *); - void (*sb_free_security)(struct super_block *); - void (*sb_free_mnt_opts)(void *); - int (*sb_eat_lsm_opts)(char *, void **); - int (*sb_mnt_opts_compat)(struct super_block *, void *); - int (*sb_remount)(struct super_block *, void *); - int (*sb_kern_mount)(const struct super_block *); - int (*sb_show_options)(struct seq_file *, struct super_block *); - int (*sb_statfs)(struct dentry *); - int (*sb_mount)(const char *, const struct path *, const char *, long unsigned int, void *); - int (*sb_umount)(struct vfsmount *, int); - int (*sb_pivotroot)(const struct path *, const struct path *); - int (*sb_set_mnt_opts)(struct super_block *, void *, long unsigned int, long unsigned int *); - int (*sb_clone_mnt_opts)(const struct super_block *, struct super_block *, long unsigned int, long unsigned int *); - int (*move_mount)(const struct path *, const struct path *); - int (*dentry_init_security)(struct dentry *, int, const struct qstr *, const char **, struct lsm_context *); - int (*dentry_create_files_as)(struct dentry *, int, struct qstr *, const struct cred *, struct cred *); - int (*path_unlink)(const struct path *, struct dentry *); - int (*path_mkdir)(const struct path *, struct dentry *, umode_t); - int (*path_rmdir)(const struct path *, struct dentry *); - int (*path_mknod)(const struct path *, struct dentry *, umode_t, unsigned int); - void (*path_post_mknod)(struct mnt_idmap *, struct dentry *); - int (*path_truncate)(const struct path *); - int (*path_symlink)(const struct path *, struct dentry *, const char *); - int (*path_link)(struct dentry *, const struct path *, struct dentry *); - int (*path_rename)(const struct path *, struct dentry *, const struct path *, struct dentry *, unsigned int); - int (*path_chmod)(const struct path *, umode_t); - int (*path_chown)(const struct path *, kuid_t, kgid_t); - int (*path_chroot)(const struct path *); - int (*path_notify)(const struct path *, u64, unsigned int); - int (*inode_alloc_security)(struct inode *); - void (*inode_free_security)(struct inode *); - void (*inode_free_security_rcu)(void *); - int (*inode_init_security)(struct inode *, struct inode *, const struct qstr *, struct xattr *, int *); - int (*inode_init_security_anon)(struct inode *, const struct qstr *, const struct inode *); - int (*inode_create)(struct inode *, struct dentry *, umode_t); - void (*inode_post_create_tmpfile)(struct mnt_idmap *, struct inode *); - int (*inode_link)(struct dentry *, struct inode *, struct dentry *); - int (*inode_unlink)(struct inode *, struct dentry *); - int (*inode_symlink)(struct inode *, struct dentry *, const char *); - int (*inode_mkdir)(struct inode *, struct dentry *, umode_t); - int (*inode_rmdir)(struct inode *, struct dentry *); - int (*inode_mknod)(struct inode *, struct dentry *, umode_t, dev_t); - int (*inode_rename)(struct inode *, struct dentry *, struct inode *, struct dentry *); - int (*inode_readlink)(struct dentry *); - int (*inode_follow_link)(struct dentry *, struct inode *, bool); - int (*inode_permission)(struct inode *, int); - int (*inode_setattr)(struct mnt_idmap *, struct dentry *, struct iattr *); - void (*inode_post_setattr)(struct mnt_idmap *, struct dentry *, int); - int (*inode_getattr)(const struct path *); - int (*inode_xattr_skipcap)(const char *); - int (*inode_setxattr)(struct mnt_idmap *, struct dentry *, const char *, const void *, size_t, int); - void (*inode_post_setxattr)(struct dentry *, const char *, const void *, size_t, int); - int (*inode_getxattr)(struct dentry *, const char *); - int (*inode_listxattr)(struct dentry *); - int (*inode_removexattr)(struct mnt_idmap *, struct dentry *, const char *); - void (*inode_post_removexattr)(struct dentry *, const char *); - int (*inode_file_setattr)(struct dentry *, struct file_kattr *); - int (*inode_file_getattr)(struct dentry *, struct file_kattr *); - int (*inode_set_acl)(struct mnt_idmap *, struct dentry *, const char *, struct posix_acl *); - void (*inode_post_set_acl)(struct dentry *, const char *, struct posix_acl *); - int (*inode_get_acl)(struct mnt_idmap *, struct dentry *, const char *); - int (*inode_remove_acl)(struct mnt_idmap *, struct dentry *, const char *); - void (*inode_post_remove_acl)(struct mnt_idmap *, struct dentry *, const char *); - int (*inode_need_killpriv)(struct dentry *); - int (*inode_killpriv)(struct mnt_idmap *, struct dentry *); - int (*inode_getsecurity)(struct mnt_idmap *, struct inode *, const char *, void **, bool); - int (*inode_setsecurity)(struct inode *, const char *, const void *, size_t, int); - int (*inode_listsecurity)(struct inode *, char *, size_t); - void (*inode_getlsmprop)(struct inode *, struct lsm_prop *); - int (*inode_copy_up)(struct dentry *, struct cred **); - int (*inode_copy_up_xattr)(struct dentry *, const char *); - int (*inode_setintegrity)(const struct inode *, enum lsm_integrity_type, const void *, size_t); - int (*kernfs_init_security)(struct kernfs_node *, struct kernfs_node *); - int (*file_permission)(struct file *, int); - int (*file_alloc_security)(struct file *); - void (*file_release)(struct file *); - void (*file_free_security)(struct file *); - int (*file_ioctl)(struct file *, unsigned int, long unsigned int); - int (*file_ioctl_compat)(struct file *, unsigned int, long unsigned int); - int (*mmap_addr)(long unsigned int); - int (*mmap_file)(struct file *, long unsigned int, long unsigned int, long unsigned int); - int (*file_mprotect)(struct vm_area_struct *, long unsigned int, long unsigned int); - int (*file_lock)(struct file *, unsigned int); - int (*file_fcntl)(struct file *, unsigned int, long unsigned int); - void (*file_set_fowner)(struct file *); - int (*file_send_sigiotask)(struct task_struct *, struct fown_struct *, int); - int (*file_receive)(struct file *); - int (*file_open)(struct file *); - int (*file_post_open)(struct file *, int); - int (*file_truncate)(struct file *); - int (*task_alloc)(struct task_struct *, long unsigned int); - void (*task_free)(struct task_struct *); - int (*cred_alloc_blank)(struct cred *, gfp_t); - void (*cred_free)(struct cred *); - int (*cred_prepare)(struct cred *, const struct cred *, gfp_t); - void (*cred_transfer)(struct cred *, const struct cred *); - void (*cred_getsecid)(const struct cred *, u32 *); - void (*cred_getlsmprop)(const struct cred *, struct lsm_prop *); - int (*kernel_act_as)(struct cred *, u32); - int (*kernel_create_files_as)(struct cred *, struct inode *); - int (*kernel_module_request)(char *); - int (*kernel_load_data)(enum kernel_load_data_id, bool); - int (*kernel_post_load_data)(char *, loff_t, enum kernel_load_data_id, char *); - int (*kernel_read_file)(struct file *, enum kernel_read_file_id, bool); - int (*kernel_post_read_file)(struct file *, char *, loff_t, enum kernel_read_file_id); - int (*task_fix_setuid)(struct cred *, const struct cred *, int); - int (*task_fix_setgid)(struct cred *, const struct cred *, int); - int (*task_fix_setgroups)(struct cred *, const struct cred *); - int (*task_setpgid)(struct task_struct *, pid_t); - int (*task_getpgid)(struct task_struct *); - int (*task_getsid)(struct task_struct *); - void (*current_getlsmprop_subj)(struct lsm_prop *); - void (*task_getlsmprop_obj)(struct task_struct *, struct lsm_prop *); - int (*task_setnice)(struct task_struct *, int); - int (*task_setioprio)(struct task_struct *, int); - int (*task_getioprio)(struct task_struct *); - int (*task_prlimit)(const struct cred *, const struct cred *, unsigned int); - int (*task_setrlimit)(struct task_struct *, unsigned int, struct rlimit *); - int (*task_setscheduler)(struct task_struct *); - int (*task_getscheduler)(struct task_struct *); - int (*task_movememory)(struct task_struct *); - int (*task_kill)(struct task_struct *, struct kernel_siginfo *, int, const struct cred *); - int (*task_prctl)(int, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - void (*task_to_inode)(struct task_struct *, struct inode *); - int (*userns_create)(const struct cred *); - int (*ipc_permission)(struct kern_ipc_perm *, short int); - void (*ipc_getlsmprop)(struct kern_ipc_perm *, struct lsm_prop *); - int (*msg_msg_alloc_security)(struct msg_msg *); - void (*msg_msg_free_security)(struct msg_msg *); - int (*msg_queue_alloc_security)(struct kern_ipc_perm *); - void (*msg_queue_free_security)(struct kern_ipc_perm *); - int (*msg_queue_associate)(struct kern_ipc_perm *, int); - int (*msg_queue_msgctl)(struct kern_ipc_perm *, int); - int (*msg_queue_msgsnd)(struct kern_ipc_perm *, struct msg_msg *, int); - int (*msg_queue_msgrcv)(struct kern_ipc_perm *, struct msg_msg *, struct task_struct *, long int, int); - int (*shm_alloc_security)(struct kern_ipc_perm *); - void (*shm_free_security)(struct kern_ipc_perm *); - int (*shm_associate)(struct kern_ipc_perm *, int); - int (*shm_shmctl)(struct kern_ipc_perm *, int); - int (*shm_shmat)(struct kern_ipc_perm *, char *, int); - int (*sem_alloc_security)(struct kern_ipc_perm *); - void (*sem_free_security)(struct kern_ipc_perm *); - int (*sem_associate)(struct kern_ipc_perm *, int); - int (*sem_semctl)(struct kern_ipc_perm *, int); - int (*sem_semop)(struct kern_ipc_perm *, struct sembuf *, unsigned int, int); - int (*netlink_send)(struct sock *, struct sk_buff *); - void (*d_instantiate)(struct dentry *, struct inode *); - int (*getselfattr)(unsigned int, struct lsm_ctx *, u32 *, u32); - int (*setselfattr)(unsigned int, struct lsm_ctx *, u32, u32); - int (*getprocattr)(struct task_struct *, const char *, char **); - int (*setprocattr)(const char *, void *, size_t); - int (*ismaclabel)(const char *); - int (*secid_to_secctx)(u32, struct lsm_context *); - int (*lsmprop_to_secctx)(struct lsm_prop *, struct lsm_context *); - int (*secctx_to_secid)(const char *, u32, u32 *); - void (*release_secctx)(struct lsm_context *); - void (*inode_invalidate_secctx)(struct inode *); - int (*inode_notifysecctx)(struct inode *, void *, u32); - int (*inode_setsecctx)(struct dentry *, void *, u32); - int (*inode_getsecctx)(struct inode *, struct lsm_context *); - int (*post_notification)(const struct cred *, const struct cred *, struct watch_notification *); - int (*watch_key)(struct key *); - int (*unix_stream_connect)(struct sock *, struct sock *, struct sock *); - int (*unix_may_send)(struct socket *, struct socket *); - int (*socket_create)(int, int, int, int); - int (*socket_post_create)(struct socket *, int, int, int, int); - int (*socket_socketpair)(struct socket *, struct socket *); - int (*socket_bind)(struct socket *, struct sockaddr *, int); - int (*socket_connect)(struct socket *, struct sockaddr *, int); - int (*socket_listen)(struct socket *, int); - int (*socket_accept)(struct socket *, struct socket *); - int (*socket_sendmsg)(struct socket *, struct msghdr *, int); - int (*socket_recvmsg)(struct socket *, struct msghdr *, int, int); - int (*socket_getsockname)(struct socket *); - int (*socket_getpeername)(struct socket *); - int (*socket_getsockopt)(struct socket *, int, int); - int (*socket_setsockopt)(struct socket *, int, int); - int (*socket_shutdown)(struct socket *, int); - int (*socket_sock_rcv_skb)(struct sock *, struct sk_buff *); - int (*socket_getpeersec_stream)(struct socket *, sockptr_t, sockptr_t, unsigned int); - int (*socket_getpeersec_dgram)(struct socket *, struct sk_buff *, u32 *); - int (*sk_alloc_security)(struct sock *, int, gfp_t); - void (*sk_free_security)(struct sock *); - void (*sk_clone_security)(const struct sock *, struct sock *); - void (*sk_getsecid)(const struct sock *, u32 *); - void (*sock_graft)(struct sock *, struct socket *); - int (*inet_conn_request)(const struct sock *, struct sk_buff *, struct request_sock *); - void (*inet_csk_clone)(struct sock *, const struct request_sock *); - void (*inet_conn_established)(struct sock *, struct sk_buff *); - int (*secmark_relabel_packet)(u32); - void (*secmark_refcount_inc)(void); - void (*secmark_refcount_dec)(void); - void (*req_classify_flow)(const struct request_sock *, struct flowi_common *); - int (*tun_dev_alloc_security)(void *); - int (*tun_dev_create)(void); - int (*tun_dev_attach_queue)(void *); - int (*tun_dev_attach)(struct sock *, void *); - int (*tun_dev_open)(void *); - int (*sctp_assoc_request)(struct sctp_association *, struct sk_buff *); - int (*sctp_bind_connect)(struct sock *, int, struct sockaddr *, int); - void (*sctp_sk_clone)(struct sctp_association *, struct sock *, struct sock *); - int (*sctp_assoc_established)(struct sctp_association *, struct sk_buff *); - int (*mptcp_add_subflow)(struct sock *, struct sock *); - int (*ib_pkey_access)(void *, u64, u16); - int (*ib_endport_manage_subnet)(void *, const char *, u8); - int (*ib_alloc_security)(void *); - int (*xfrm_policy_alloc_security)(struct xfrm_sec_ctx **, struct xfrm_user_sec_ctx *, gfp_t); - int (*xfrm_policy_clone_security)(struct xfrm_sec_ctx *, struct xfrm_sec_ctx **); - void (*xfrm_policy_free_security)(struct xfrm_sec_ctx *); - int (*xfrm_policy_delete_security)(struct xfrm_sec_ctx *); - int (*xfrm_state_alloc)(struct xfrm_state *, struct xfrm_user_sec_ctx *); - int (*xfrm_state_alloc_acquire)(struct xfrm_state *, struct xfrm_sec_ctx *, u32); - void (*xfrm_state_free_security)(struct xfrm_state *); - int (*xfrm_state_delete_security)(struct xfrm_state *); - int (*xfrm_policy_lookup)(struct xfrm_sec_ctx *, u32); - int (*xfrm_state_pol_flow_match)(struct xfrm_state *, struct xfrm_policy *, const struct flowi_common *); - int (*xfrm_decode_session)(struct sk_buff *, u32 *, int); - int (*key_alloc)(struct key *, const struct cred *, long unsigned int); - int (*key_permission)(key_ref_t, const struct cred *, enum key_need_perm); - int (*key_getsecurity)(struct key *, char **); - void (*key_post_create_or_update)(struct key *, struct key *, const void *, size_t, long unsigned int, bool); - int (*audit_rule_init)(u32, u32, char *, void **, gfp_t); - int (*audit_rule_known)(struct audit_krule *); - int (*audit_rule_match)(struct lsm_prop *, u32, u32, void *); - void (*audit_rule_free)(void *); - int (*bpf)(int, union bpf_attr *, unsigned int, bool); - int (*bpf_map)(struct bpf_map *, fmode_t); - int (*bpf_prog)(struct bpf_prog *); - int (*bpf_map_create)(struct bpf_map *, union bpf_attr *, struct bpf_token *, bool); - void (*bpf_map_free)(struct bpf_map *); - int (*bpf_prog_load)(struct bpf_prog *, union bpf_attr *, struct bpf_token *, bool); - void (*bpf_prog_free)(struct bpf_prog *); - int (*bpf_token_create)(struct bpf_token *, union bpf_attr *, const struct path *); - void (*bpf_token_free)(struct bpf_token *); - int (*bpf_token_cmd)(const struct bpf_token *, enum bpf_cmd); - int (*bpf_token_capable)(const struct bpf_token *, int); - int (*locked_down)(enum lockdown_reason); - int (*lock_kernel_down)(const char *, enum lockdown_reason); - int (*perf_event_open)(int); - int (*perf_event_alloc)(struct perf_event *); - int (*perf_event_read)(struct perf_event *); - int (*perf_event_write)(struct perf_event *); - int (*uring_override_creds)(const struct cred *); - int (*uring_sqpoll)(void); - int (*uring_cmd)(struct io_uring_cmd *); - int (*uring_allowed)(void); - void (*initramfs_populated)(void); - int (*bdev_alloc_security)(struct block_device *); - void (*bdev_free_security)(struct block_device *); - int (*bdev_setintegrity)(struct block_device *, enum lsm_integrity_type, const void *, size_t); -}; - -struct security_hook_heads { - struct hlist_head binder_set_context_mgr; - struct hlist_head binder_transaction; - struct hlist_head binder_transfer_binder; - struct hlist_head binder_transfer_file; - struct hlist_head ptrace_access_check; - struct hlist_head ptrace_traceme; - struct hlist_head capget; - struct hlist_head capset; - struct hlist_head capable; - struct hlist_head quotactl; - struct hlist_head quota_on; - struct hlist_head syslog; - struct hlist_head settime; - struct hlist_head vm_enough_memory; - struct hlist_head bprm_creds_for_exec; - struct hlist_head bprm_creds_from_file; - struct hlist_head bprm_check_security; - struct hlist_head bprm_committing_creds; - struct hlist_head bprm_committed_creds; - struct hlist_head fs_context_submount; - struct hlist_head fs_context_dup; - struct hlist_head fs_context_parse_param; - struct hlist_head sb_alloc_security; - struct hlist_head sb_delete; - struct hlist_head sb_free_security; - struct hlist_head sb_free_mnt_opts; - struct hlist_head sb_eat_lsm_opts; - struct hlist_head sb_mnt_opts_compat; - struct hlist_head sb_remount; - struct hlist_head sb_kern_mount; - struct hlist_head sb_show_options; - struct hlist_head sb_statfs; - struct hlist_head sb_mount; - struct hlist_head sb_umount; - struct hlist_head sb_pivotroot; - struct hlist_head sb_set_mnt_opts; - struct hlist_head sb_clone_mnt_opts; - struct hlist_head move_mount; - struct hlist_head dentry_init_security; - struct hlist_head dentry_create_files_as; - struct hlist_head path_unlink; - struct hlist_head path_mkdir; - struct hlist_head path_rmdir; - struct hlist_head path_mknod; - struct hlist_head path_post_mknod; - struct hlist_head path_truncate; - struct hlist_head path_symlink; - struct hlist_head path_link; - struct hlist_head path_rename; - struct hlist_head path_chmod; - struct hlist_head path_chown; - struct hlist_head path_chroot; - struct hlist_head path_notify; - struct hlist_head inode_alloc_security; - struct hlist_head inode_free_security; - struct hlist_head inode_free_security_rcu; - struct hlist_head inode_init_security; - struct hlist_head inode_init_security_anon; - struct hlist_head inode_create; - struct hlist_head inode_post_create_tmpfile; - struct hlist_head inode_link; - struct hlist_head inode_unlink; - struct hlist_head inode_symlink; - struct hlist_head inode_mkdir; - struct hlist_head inode_rmdir; - struct hlist_head inode_mknod; - struct hlist_head inode_rename; - struct hlist_head inode_readlink; - struct hlist_head inode_follow_link; - struct hlist_head inode_permission; - struct hlist_head inode_setattr; - struct hlist_head inode_post_setattr; - struct hlist_head inode_getattr; - struct hlist_head inode_xattr_skipcap; - struct hlist_head inode_setxattr; - struct hlist_head inode_post_setxattr; - struct hlist_head inode_getxattr; - struct hlist_head inode_listxattr; - struct hlist_head inode_removexattr; - struct hlist_head inode_post_removexattr; - struct hlist_head inode_file_setattr; - struct hlist_head inode_file_getattr; - struct hlist_head inode_set_acl; - struct hlist_head inode_post_set_acl; - struct hlist_head inode_get_acl; - struct hlist_head inode_remove_acl; - struct hlist_head inode_post_remove_acl; - struct hlist_head inode_need_killpriv; - struct hlist_head inode_killpriv; - struct hlist_head inode_getsecurity; - struct hlist_head inode_setsecurity; - struct hlist_head inode_listsecurity; - struct hlist_head inode_getlsmprop; - struct hlist_head inode_copy_up; - struct hlist_head inode_copy_up_xattr; - struct hlist_head inode_setintegrity; - struct hlist_head kernfs_init_security; - struct hlist_head file_permission; - struct hlist_head file_alloc_security; - struct hlist_head file_release; - struct hlist_head file_free_security; - struct hlist_head file_ioctl; - struct hlist_head file_ioctl_compat; - struct hlist_head mmap_addr; - struct hlist_head mmap_file; - struct hlist_head file_mprotect; - struct hlist_head file_lock; - struct hlist_head file_fcntl; - struct hlist_head file_set_fowner; - struct hlist_head file_send_sigiotask; - struct hlist_head file_receive; - struct hlist_head file_open; - struct hlist_head file_post_open; - struct hlist_head file_truncate; - struct hlist_head task_alloc; - struct hlist_head task_free; - struct hlist_head cred_alloc_blank; - struct hlist_head cred_free; - struct hlist_head cred_prepare; - struct hlist_head cred_transfer; - struct hlist_head cred_getsecid; - struct hlist_head cred_getlsmprop; - struct hlist_head kernel_act_as; - struct hlist_head kernel_create_files_as; - struct hlist_head kernel_module_request; - struct hlist_head kernel_load_data; - struct hlist_head kernel_post_load_data; - struct hlist_head kernel_read_file; - struct hlist_head kernel_post_read_file; - struct hlist_head task_fix_setuid; - struct hlist_head task_fix_setgid; - struct hlist_head task_fix_setgroups; - struct hlist_head task_setpgid; - struct hlist_head task_getpgid; - struct hlist_head task_getsid; - struct hlist_head current_getlsmprop_subj; - struct hlist_head task_getlsmprop_obj; - struct hlist_head task_setnice; - struct hlist_head task_setioprio; - struct hlist_head task_getioprio; - struct hlist_head task_prlimit; - struct hlist_head task_setrlimit; - struct hlist_head task_setscheduler; - struct hlist_head task_getscheduler; - struct hlist_head task_movememory; - struct hlist_head task_kill; - struct hlist_head task_prctl; - struct hlist_head task_to_inode; - struct hlist_head userns_create; - struct hlist_head ipc_permission; - struct hlist_head ipc_getlsmprop; - struct hlist_head msg_msg_alloc_security; - struct hlist_head msg_msg_free_security; - struct hlist_head msg_queue_alloc_security; - struct hlist_head msg_queue_free_security; - struct hlist_head msg_queue_associate; - struct hlist_head msg_queue_msgctl; - struct hlist_head msg_queue_msgsnd; - struct hlist_head msg_queue_msgrcv; - struct hlist_head shm_alloc_security; - struct hlist_head shm_free_security; - struct hlist_head shm_associate; - struct hlist_head shm_shmctl; - struct hlist_head shm_shmat; - struct hlist_head sem_alloc_security; - struct hlist_head sem_free_security; - struct hlist_head sem_associate; - struct hlist_head sem_semctl; - struct hlist_head sem_semop; - struct hlist_head netlink_send; - struct hlist_head d_instantiate; - struct hlist_head getselfattr; - struct hlist_head setselfattr; - struct hlist_head getprocattr; - struct hlist_head setprocattr; - struct hlist_head ismaclabel; - struct hlist_head secid_to_secctx; - struct hlist_head lsmprop_to_secctx; - struct hlist_head secctx_to_secid; - struct hlist_head release_secctx; - struct hlist_head inode_invalidate_secctx; - struct hlist_head inode_notifysecctx; - struct hlist_head inode_setsecctx; - struct hlist_head inode_getsecctx; - struct hlist_head post_notification; - struct hlist_head watch_key; - struct hlist_head unix_stream_connect; - struct hlist_head unix_may_send; - struct hlist_head socket_create; - struct hlist_head socket_post_create; - struct hlist_head socket_socketpair; - struct hlist_head socket_bind; - struct hlist_head socket_connect; - struct hlist_head socket_listen; - struct hlist_head socket_accept; - struct hlist_head socket_sendmsg; - struct hlist_head socket_recvmsg; - struct hlist_head socket_getsockname; - struct hlist_head socket_getpeername; - struct hlist_head socket_getsockopt; - struct hlist_head socket_setsockopt; - struct hlist_head socket_shutdown; - struct hlist_head socket_sock_rcv_skb; - struct hlist_head socket_getpeersec_stream; - struct hlist_head socket_getpeersec_dgram; - struct hlist_head sk_alloc_security; - struct hlist_head sk_free_security; - struct hlist_head sk_clone_security; - struct hlist_head sk_getsecid; - struct hlist_head sock_graft; - struct hlist_head inet_conn_request; - struct hlist_head inet_csk_clone; - struct hlist_head inet_conn_established; - struct hlist_head secmark_relabel_packet; - struct hlist_head secmark_refcount_inc; - struct hlist_head secmark_refcount_dec; - struct hlist_head req_classify_flow; - struct hlist_head tun_dev_alloc_security; - struct hlist_head tun_dev_create; - struct hlist_head tun_dev_attach_queue; - struct hlist_head tun_dev_attach; - struct hlist_head tun_dev_open; - struct hlist_head sctp_assoc_request; - struct hlist_head sctp_bind_connect; - struct hlist_head sctp_sk_clone; - struct hlist_head sctp_assoc_established; - struct hlist_head mptcp_add_subflow; - struct hlist_head ib_pkey_access; - struct hlist_head ib_endport_manage_subnet; - struct hlist_head ib_alloc_security; - struct hlist_head xfrm_policy_alloc_security; - struct hlist_head xfrm_policy_clone_security; - struct hlist_head xfrm_policy_free_security; - struct hlist_head xfrm_policy_delete_security; - struct hlist_head xfrm_state_alloc; - struct hlist_head xfrm_state_alloc_acquire; - struct hlist_head xfrm_state_free_security; - struct hlist_head xfrm_state_delete_security; - struct hlist_head xfrm_policy_lookup; - struct hlist_head xfrm_state_pol_flow_match; - struct hlist_head xfrm_decode_session; - struct hlist_head key_alloc; - struct hlist_head key_permission; - struct hlist_head key_getsecurity; - struct hlist_head key_post_create_or_update; - struct hlist_head audit_rule_init; - struct hlist_head audit_rule_known; - struct hlist_head audit_rule_match; - struct hlist_head audit_rule_free; - struct hlist_head bpf; - struct hlist_head bpf_map; - struct hlist_head bpf_prog; - struct hlist_head bpf_map_create; - struct hlist_head bpf_map_free; - struct hlist_head bpf_prog_load; - struct hlist_head bpf_prog_free; - struct hlist_head bpf_token_create; - struct hlist_head bpf_token_free; - struct hlist_head bpf_token_cmd; - struct hlist_head bpf_token_capable; - struct hlist_head locked_down; - struct hlist_head lock_kernel_down; - struct hlist_head perf_event_open; - struct hlist_head perf_event_alloc; - struct hlist_head perf_event_read; - struct hlist_head perf_event_write; - struct hlist_head uring_override_creds; - struct hlist_head uring_sqpoll; - struct hlist_head uring_cmd; - struct hlist_head uring_allowed; - struct hlist_head initramfs_populated; - struct hlist_head bdev_alloc_security; - struct hlist_head bdev_free_security; - struct hlist_head bdev_setintegrity; -}; - -struct security_hook_list { - struct hlist_node list; - struct hlist_head *head; - union security_list_options hook; - const struct lsm_id *lsmid; -}; - -enum lsm_order { - LSM_ORDER_FIRST = -1, - LSM_ORDER_MUTABLE = 0, - LSM_ORDER_LAST = 1, -}; - -struct lsm_info { - const char *name; - enum lsm_order order; - long unsigned int flags; - int *enabled; - int (*init)(void); - struct lsm_blob_sizes *blobs; -}; - -enum reftype { - REF_NS = 0, - REF_PROXY = 1, - REF_RAWDATA = 2, -}; - -struct aa_common_ref { - struct kref count; - enum reftype reftype; -}; - -struct aa_proxy; - -struct aa_profile; - -struct aa_ruleset; - -struct aa_label { - struct aa_common_ref count; - struct rb_node node; - struct callback_head rcu; - struct aa_proxy *proxy; - char *hname; - long int flags; - u32 secid; - int size; - u64 mediates; - union { - struct { - struct aa_profile *profile[2]; - struct { - struct {} __empty_rules; - struct aa_ruleset *rules[0]; - }; - }; - struct { - struct {} __empty_vec; - struct aa_profile *vec[0]; - }; - }; -}; - -enum audit_mode { - AUDIT_NORMAL = 0, - AUDIT_QUIET_DENIED = 1, - AUDIT_QUIET = 2, - AUDIT_NOQUIET = 3, - AUDIT_ALL = 4, -}; - -enum aa_sfs_type { - AA_SFS_TYPE_BOOLEAN = 0, - AA_SFS_TYPE_BOOLEAN_INTPRINT = 1, - AA_SFS_TYPE_STRING = 2, - AA_SFS_TYPE_U64 = 3, - AA_SFS_TYPE_FOPS = 4, - AA_SFS_TYPE_DIR = 5, -}; - -struct aa_sfs_entry { - const char *name; - struct dentry *dentry; - umode_t mode; - enum aa_sfs_type v_type; - union { - bool boolean; - char *string; - long unsigned int u64; - struct aa_sfs_entry *files; - } v; - const struct file_operations *file_ops; -}; - -enum aafs_ns_type { - AAFS_NS_DIR = 0, - AAFS_NS_PROFS = 1, - AAFS_NS_NS = 2, - AAFS_NS_RAW_DATA = 3, - AAFS_NS_LOAD = 4, - AAFS_NS_REPLACE = 5, - AAFS_NS_REMOVE = 6, - AAFS_NS_REVISION = 7, - AAFS_NS_COUNT = 8, - AAFS_NS_MAX_COUNT = 9, - AAFS_NS_SIZE = 10, - AAFS_NS_MAX_SIZE = 11, - AAFS_NS_OWNER = 12, - AAFS_NS_SIZEOF = 13, -}; - -enum aafs_prof_type { - AAFS_PROF_DIR = 0, - AAFS_PROF_PROFS = 1, - AAFS_PROF_NAME = 2, - AAFS_PROF_MODE = 3, - AAFS_PROF_ATTACH = 4, - AAFS_PROF_HASH = 5, - AAFS_PROF_RAW_DATA = 6, - AAFS_PROF_RAW_HASH = 7, - AAFS_PROF_RAW_ABI = 8, - AAFS_PROF_LEARNING_COUNT = 9, - AAFS_PROF_SIZEOF = 10, -}; - -struct aa_caps { - kernel_cap_t allow; - kernel_cap_t audit; - kernel_cap_t denied; - kernel_cap_t quiet; - kernel_cap_t kill; - kernel_cap_t extended; -}; - -struct table_header { - u16 td_id; - u16 td_flags; - u32 td_hilen; - u32 td_lolen; - char td_data[0]; -}; - -struct aa_dfa { - struct kref count; - u16 flags; - u32 max_oob; - struct table_header *tables[8]; -}; - -struct aa_str_table_ent { - int count; - int size; - char *strs; -}; - -struct aa_str_table { - int size; - struct aa_str_table_ent *table; -}; - -struct aa_policy { - const char *name; - char *hname; - struct list_head list; - struct list_head profiles; -}; - -struct aa_labelset { - rwlock_t lock; - struct rb_root root; -}; - -struct aa_proxy { - struct aa_common_ref count; - struct aa_label *label; -}; - -struct label_it { - int i; - int j; -}; - -struct aa_rlimit { - unsigned int mask; - struct rlimit limits[16]; -}; - -struct aa_policydb; - -struct aa_secmark; - -struct aa_ruleset { - int size; - struct aa_policydb *policy; - struct aa_policydb *file; - struct aa_caps caps; - struct aa_rlimit rlimits; - int secmark_count; - struct aa_secmark *secmark; -}; - -struct aa_attachment { - const char *xmatch_str; - struct aa_policydb *xmatch; - unsigned int xmatch_len; - int xattr_count; - char **xattrs; -}; - -struct aa_audit_cache { - spinlock_t lock; - int size; - struct list_head head; -}; - -struct aa_ns; - -struct aa_net_compat; - -struct aa_loaddata; - -struct aa_profile { - struct aa_policy base; - struct aa_profile *parent; - struct aa_ns *ns; - const char *rename; - enum audit_mode audit; - long int mode; - u32 path_flags; - int signal; - const char *disconnected; - const char *disconnected_ipc; - struct aa_attachment attach; - struct aa_net_compat *net_compat; - struct aa_audit_cache learning_cache; - struct aa_loaddata *rawdata; - unsigned char *hash; - char *dirname; - struct dentry *dents[10]; - struct rhashtable *data; - int n_rules; - struct aa_label label; -}; - -struct apparmor_audit_data { - u32 flags; - int error; - int type; - u16 class; - const char *op; - const struct cred *subj_cred; - struct aa_label *subj_label; - const char *name; - const char *info; - u32 request; - u32 denied; - u32 tags; - struct task_struct *subjtsk; - union { - struct { - struct aa_label *peer; - union { - struct { - const char *target; - kuid_t ouid; - } fs; - struct { - int rlim; - long unsigned int max; - } rlim; - struct { - int signal; - int unmappedsig; - }; - struct { - int type; - int protocol; - void *addr; - int addrlen; - struct { - void *addr; - int addrlen; - } peer; - } net; - struct { - const char *target; - } ns; - struct { - kuid_t ouid; - } mq; - }; - }; - struct { - struct aa_profile *profile; - const char *ns; - long int pos; - } iface; - struct { - const char *src_name; - const char *type; - const char *trans; - const char *data; - long unsigned int flags; - } mnt; - struct { - struct aa_label *target; - } uring; - }; - struct common_audit_data common; -}; - -struct aa_perms { - u32 allow; - u32 deny; - u32 subtree; - u32 cond; - u32 kill; - u32 complain; - u32 prompt; - u32 audit; - u32 quiet; - u32 hide; - u32 xindex; - u32 tag; - u32 label; -}; - -struct aa_ns_acct { - int max_size; - int max_count; - int size; - int count; -}; - -struct aa_ns { - struct aa_policy base; - struct aa_ns *parent; - struct mutex lock; - struct aa_ns_acct acct; - struct aa_profile *unconfined; - struct list_head sub_ns; - atomic_t uniq_null; - long int uniq_id; - int level; - long int revision; - wait_queue_head_t wait; - spinlock_t listener_lock; - struct list_head listeners; - struct aa_labelset labels; - struct list_head rawdata_list; - struct dentry *dents[13]; -}; - -enum audit_type { - AUDIT_APPARMOR_AUDIT = 0, - AUDIT_APPARMOR_ALLOWED = 1, - AUDIT_APPARMOR_DENIED = 2, - AUDIT_APPARMOR_HINT = 3, - AUDIT_APPARMOR_STATUS = 4, - AUDIT_APPARMOR_ERROR = 5, - AUDIT_APPARMOR_KILL = 6, - AUDIT_APPARMOR_USER = 7, - AUDIT_APPARMOR_AUTO = 8, -}; - -struct aa_net_compat { - u16 allow[46]; - u16 audit[46]; - u16 quiet[46]; -}; - -struct aa_secmark { - u8 audit; - u8 deny; - u32 secid; - char *label; -}; - -enum profile_mode { - APPARMOR_ENFORCE = 0, - APPARMOR_COMPLAIN = 1, - APPARMOR_KILL = 2, - APPARMOR_UNCONFINED = 3, - APPARMOR_USER = 4, -}; - -struct aa_tags_header { - u32 mask; - u32 count; - u32 size; - u32 tags; -}; - -struct aa_tags_struct { - struct { - u32 size; - u32 *table; - } sets; - struct { - u32 size; - struct aa_tags_header *table; - } hdrs; - struct aa_str_table strs; -}; - -struct aa_policydb { - struct kref count; - struct aa_dfa *dfa; - struct { - struct aa_perms *perms; - u32 size; - }; - struct aa_str_table trans; - struct aa_tags_struct tags; - unsigned int start[33]; -}; - -struct audit_cache { - const struct cred *ad_subj_cred; - u64 ktime_ns_expiration[41]; -}; - -struct counted_str { - struct kref count; - char name[0]; -}; - -struct val_table_ent { - const char *str; - int value; -}; - -enum label_flags { - FLAG_HAT = 1, - FLAG_UNCONFINED = 2, - FLAG_NULL = 4, - FLAG_IX_ON_NAME_ERROR = 8, - FLAG_IMMUTIBLE = 16, - FLAG_USER_DEFINED = 32, - FLAG_NO_LIST_REF = 64, - FLAG_NS_COUNT = 128, - FLAG_IN_TREE = 256, - FLAG_PROFILE = 512, - FLAG_EXPLICIT = 1024, - FLAG_STALE = 2048, - FLAG_INTERRUPTIBLE = 4096, - FLAG_REVOKED = 8192, - FLAG_DEBUG1 = 16384, - FLAG_DEBUG2 = 32768, -}; - -struct aa_data { - char *key; - u32 size; - char *data; - struct rhash_head head; -}; - -struct aa_loaddata { - struct aa_common_ref count; - struct kref pcount; - struct list_head list; - struct work_struct work; - struct dentry *dents[6]; - struct aa_ns *ns; - char *name; - size_t size; - size_t compressed_size; - long int revision; - int abi; - unsigned char *hash; - char *data; -}; - -struct aa_load_ent { - struct list_head list; - struct aa_profile *new; - struct aa_profile *old; - struct aa_profile *rename; - const char *ns_name; -}; - -enum { - AAFS_LOADDATA_ABI = 0, - AAFS_LOADDATA_REVISION = 1, - AAFS_LOADDATA_HASH = 2, - AAFS_LOADDATA_DATA = 3, - AAFS_LOADDATA_COMPRESSED_SIZE = 4, - AAFS_LOADDATA_DIR = 5, - AAFS_LOADDATA_NDENTS = 6, -}; - -struct tty_file_private { - struct tty_struct *tty; - struct file *file; - struct list_head list; -}; - -enum apparmor_notif_type { - APPARMOR_NOTIF_RESP_PERM = 0, - APPARMOR_NOTIF_CANCEL = 1, - APPARMOR_NOTIF_INTERUPT = 2, - APPARMOR_NOTIF_ALIVE = 3, - APPARMOR_NOTIF_OP = 4, - APPARMOR_NOTIF_RESP_NAME = 5, -}; - -struct aa_file_ctx { - spinlock_t lock; - struct aa_label *label; - u32 allow; -}; - -struct path_cond { - kuid_t uid; - umode_t mode; -}; - -struct aa_knotif { - struct apparmor_audit_data *ad; - struct list_head list; - struct completion ready; - u64 id; - u16 ntype; - u16 flags; -}; - -struct aa_audit_node { - struct kref count; - struct apparmor_audit_data data; - struct list_head list; - struct aa_knotif knotif; -}; - -struct aa_sk_ctx { - struct aa_label *label; - struct aa_label *peer; - struct aa_label *peer_lastupdate; -}; - -enum dfa_accept_flags { - ACCEPT_FLAG_OWNER = 1, -}; - -struct aa_inode_sec { - struct inode *inode; - struct aa_label *label; - u16 sclass; - bool initialized; - spinlock_t lock; -}; - -enum path_flags { - PATH_IS_DIR = 1, - PATH_SOCK_COND = 2, - PATH_CONNECT_PATH = 4, - PATH_CHROOT_REL = 8, - PATH_CHROOT_NSCONNECT = 16, - PATH_CONNECT_IPC_PATH = 32, - PATH_DELEGATE_DELETED = 65536, - PATH_MEDIATE_DELETED = 131072, -}; - -struct cred_label { - const struct cred *cred; - struct aa_label *label; -}; - -enum sid_policy_type { - SIDPOL_DEFAULT = 0, - SIDPOL_CONSTRAINED = 1, - SIDPOL_ALLOWED = 2, -}; - -typedef union { - kuid_t uid; - kgid_t gid; -} kid_t; - -enum setid_type { - UID = 0, - GID = 1, -}; - -struct setid_rule { - struct hlist_node next; - kid_t src_id; - kid_t dst_id; - enum setid_type type; -}; - -struct setid_ruleset { - struct hlist_head rules[256]; - char *policy_str; - struct callback_head rcu; - enum setid_type type; -}; - -typedef u16 access_mask_t; - -struct access_masks { - access_mask_t fs: 16; - access_mask_t net: 2; - access_mask_t scope: 2; -}; - -union access_masks_all { - struct access_masks masks; - u32 all; -}; - -typedef u8 deny_masks_t; - -struct landlock_hierarchy; - -struct landlock_ruleset { - struct rb_root root_inode; - struct rb_root root_net_port; - struct landlock_hierarchy *hierarchy; - union { - struct work_struct work_free; - struct { - struct mutex lock; - refcount_t usage; - u32 num_rules; - u32 num_layers; - struct access_masks access_masks[0]; - }; - }; -}; - -struct landlock_cred_security { - struct landlock_ruleset *domain; - u16 domain_exec; - u8 log_subdomains_off: 1; -} __attribute__((packed)); - -struct landlock_erratum { - const int abi; - const u8 number; -}; - -struct landlock_file_security { - access_mask_t allowed_access; - deny_masks_t deny_masks; - u8 fown_layer; - struct landlock_cred_security fown_subject; -}; - -struct landlock_ruleset_attr { - __u64 handled_access_fs; - __u64 handled_access_net; - __u64 scoped; -}; - -enum landlock_rule_type { - LANDLOCK_RULE_PATH_BENEATH = 1, - LANDLOCK_RULE_NET_PORT = 2, -}; - -struct landlock_path_beneath_attr { - __u64 allowed_access; - __s32 parent_fd; -} __attribute__((packed)); - -struct landlock_net_port_attr { - __u64 allowed_access; - __u64 port; -}; - -enum landlock_log_status { - LANDLOCK_LOG_PENDING = 0, - LANDLOCK_LOG_RECORDED = 1, - LANDLOCK_LOG_DISABLED = 2, -}; - -struct landlock_details; - -struct landlock_hierarchy { - struct landlock_hierarchy *parent; - refcount_t usage; - enum landlock_log_status log_status; - atomic64_t num_denials; - u64 id; - const struct landlock_details *details; - u32 log_same_exec: 1; - u32 log_new_exec: 1; -}; - -struct landlock_details { - struct pid *pid; - uid_t uid; - char comm[16]; - char exe_path[0]; -}; - -typedef u16 layer_mask_t; - -enum landlock_request_type { - LANDLOCK_REQUEST_PTRACE = 1, - LANDLOCK_REQUEST_FS_CHANGE_TOPOLOGY = 2, - LANDLOCK_REQUEST_FS_ACCESS = 3, - LANDLOCK_REQUEST_NET_ACCESS = 4, - LANDLOCK_REQUEST_SCOPE_ABSTRACT_UNIX_SOCKET = 5, - LANDLOCK_REQUEST_SCOPE_SIGNAL = 6, -}; - -struct landlock_request { - enum landlock_request_type type; - struct common_audit_data audit; - size_t layer_plus_one; - access_mask_t access; - const layer_mask_t (*layer_masks)[0]; - size_t layer_masks_size; - const access_mask_t all_existing_optional_access; - deny_masks_t deny_masks; -}; - -struct dm_verity_digest { - const char *alg; - const u8 *digest; - size_t digest_len; -}; - -enum ipe_hook_type { - IPE_HOOK_BPRM_CHECK = 0, - IPE_HOOK_MMAP = 1, - IPE_HOOK_MPROTECT = 2, - IPE_HOOK_KERNEL_READ = 3, - IPE_HOOK_KERNEL_LOAD = 4, - __IPE_HOOK_MAX = 5, -}; - -enum ipe_op_type { - IPE_OP_EXEC = 0, - IPE_OP_FIRMWARE = 1, - IPE_OP_KERNEL_MODULE = 2, - IPE_OP_KEXEC_IMAGE = 3, - IPE_OP_KEXEC_INITRAMFS = 4, - IPE_OP_POLICY = 5, - IPE_OP_X509 = 6, - __IPE_OP_MAX = 7, -}; - -struct ipe_superblock { - bool initramfs; -}; - -struct digest_info; - -struct ipe_bdev { - bool dm_verity_signed; - struct digest_info *root_hash; -}; - -struct digest_info { - const char *alg; - const u8 *digest; - size_t digest_len; -}; - -struct ipe_inode { - bool fs_verity_signed; -}; - -struct ipe_eval_ctx { - enum ipe_op_type op; - enum ipe_hook_type hook; - const struct file *file; - bool initramfs; - const struct ipe_bdev *ipe_bdev; - const struct inode *ino; - const struct ipe_inode *ipe_inode; -}; - -enum ipe_action_type { - IPE_ACTION_ALLOW = 0, - IPE_ACTION_DENY = 1, - __IPE_ACTION_MAX = 2, -}; - -struct ipe_op_table { - struct list_head rules; - enum ipe_action_type default_action; -}; - -struct ipe_parsed_policy { - const char *name; - struct { - u16 major; - u16 minor; - u16 rev; - } version; - enum ipe_action_type global_default_action; - struct ipe_op_table rules[7]; -}; - -struct ipe_policy { - const char *pkcs7; - size_t pkcs7len; - const char *text; - size_t textlen; - struct ipe_parsed_policy *parsed; - struct dentry *policyfs; -}; - -enum OID { - OID_id_dsa_with_sha1 = 0, - OID_id_dsa = 1, - OID_id_ecPublicKey = 2, - OID_id_prime192v1 = 3, - OID_id_prime256v1 = 4, - OID_id_ecdsa_with_sha1 = 5, - OID_id_ecdsa_with_sha224 = 6, - OID_id_ecdsa_with_sha256 = 7, - OID_id_ecdsa_with_sha384 = 8, - OID_id_ecdsa_with_sha512 = 9, - OID_rsaEncryption = 10, - OID_sha1WithRSAEncryption = 11, - OID_sha256WithRSAEncryption = 12, - OID_sha384WithRSAEncryption = 13, - OID_sha512WithRSAEncryption = 14, - OID_sha224WithRSAEncryption = 15, - OID_data = 16, - OID_signed_data = 17, - OID_email_address = 18, - OID_contentType = 19, - OID_messageDigest = 20, - OID_signingTime = 21, - OID_smimeCapabilites = 22, - OID_smimeAuthenticatedAttrs = 23, - OID_mskrb5 = 24, - OID_krb5 = 25, - OID_krb5u2u = 26, - OID_msIndirectData = 27, - OID_msStatementType = 28, - OID_msSpOpusInfo = 29, - OID_msPeImageDataObjId = 30, - OID_msIndividualSPKeyPurpose = 31, - OID_msOutlookExpress = 32, - OID_ntlmssp = 33, - OID_negoex = 34, - OID_spnego = 35, - OID_IAKerb = 36, - OID_PKU2U = 37, - OID_Scram = 38, - OID_certAuthInfoAccess = 39, - OID_sha1 = 40, - OID_id_ansip384r1 = 41, - OID_id_ansip521r1 = 42, - OID_sha256 = 43, - OID_sha384 = 44, - OID_sha512 = 45, - OID_sha224 = 46, - OID_commonName = 47, - OID_surname = 48, - OID_countryName = 49, - OID_locality = 50, - OID_stateOrProvinceName = 51, - OID_organizationName = 52, - OID_organizationUnitName = 53, - OID_title = 54, - OID_description = 55, - OID_name = 56, - OID_givenName = 57, - OID_initials = 58, - OID_generationalQualifier = 59, - OID_subjectKeyIdentifier = 60, - OID_keyUsage = 61, - OID_subjectAltName = 62, - OID_issuerAltName = 63, - OID_basicConstraints = 64, - OID_crlDistributionPoints = 65, - OID_certPolicies = 66, - OID_authorityKeyIdentifier = 67, - OID_extKeyUsage = 68, - OID_NetlogonMechanism = 69, - OID_appleLocalKdcSupported = 70, - OID_gostCPSignA = 71, - OID_gostCPSignB = 72, - OID_gostCPSignC = 73, - OID_gost2012PKey256 = 74, - OID_gost2012PKey512 = 75, - OID_gost2012Digest256 = 76, - OID_gost2012Digest512 = 77, - OID_gost2012Signature256 = 78, - OID_gost2012Signature512 = 79, - OID_gostTC26Sign256A = 80, - OID_gostTC26Sign256B = 81, - OID_gostTC26Sign256C = 82, - OID_gostTC26Sign256D = 83, - OID_gostTC26Sign512A = 84, - OID_gostTC26Sign512B = 85, - OID_gostTC26Sign512C = 86, - OID_sm2 = 87, - OID_sm3 = 88, - OID_SM2_with_SM3 = 89, - OID_sm3WithRSAEncryption = 90, - OID_TPMLoadableKey = 91, - OID_TPMImportableKey = 92, - OID_TPMSealedData = 93, - OID_sha3_256 = 94, - OID_sha3_384 = 95, - OID_sha3_512 = 96, - OID_id_ecdsa_with_sha3_256 = 97, - OID_id_ecdsa_with_sha3_384 = 98, - OID_id_ecdsa_with_sha3_512 = 99, - OID_id_rsassa_pkcs1_v1_5_with_sha3_256 = 100, - OID_id_rsassa_pkcs1_v1_5_with_sha3_384 = 101, - OID_id_rsassa_pkcs1_v1_5_with_sha3_512 = 102, - OID__NR = 103, -}; - -struct public_key { - void *key; - u32 keylen; - enum OID algo; - void *params; - u32 paramlen; - bool key_is_private; - const char *id_type; - const char *pkey_algo; - long unsigned int key_eflags; -}; - -struct asymmetric_key_id; - -struct public_key_signature { - struct asymmetric_key_id *auth_ids[3]; - u8 *s; - u8 *digest; - u32 s_size; - u32 digest_size; - const char *pkey_algo; - const char *hash_algo; - const char *encoding; -}; - -struct asymmetric_key_id { - short unsigned int len; - unsigned char data[0]; -}; - -enum asymmetric_payload_bits { - asym_crypto = 0, - asym_subtype = 1, - asym_key_ids = 2, - asym_auth = 3, -}; - -struct signature_v2_hdr { - uint8_t type; - uint8_t version; - uint8_t hash_algo; - __be32 keyid; - __be16 sig_size; - uint8_t sig[0]; -} __attribute__((packed)); - -struct hwrng { - const char *name; - int (*init)(struct hwrng *); - void (*cleanup)(struct hwrng *); - int (*data_present)(struct hwrng *, int); - int (*data_read)(struct hwrng *, u32 *); - int (*read)(struct hwrng *, void *, size_t, bool); - long unsigned int priv; - short unsigned int quality; - struct list_head list; - struct kref ref; - struct completion cleanup_done; - struct completion dying; -}; - -typedef void *acpi_handle; - -struct tpm_digest { - u16 alg_id; - u8 digest[64]; -}; - -struct tpm_bank_info { - u16 alg_id; - u16 digest_size; - u16 crypto_id; -}; - -struct tpm_chip; - -struct tpm_class_ops { - unsigned int flags; - const u8 req_complete_mask; - const u8 req_complete_val; - bool (*req_canceled)(struct tpm_chip *, u8); - int (*recv)(struct tpm_chip *, u8 *, size_t); - int (*send)(struct tpm_chip *, u8 *, size_t, size_t); - void (*cancel)(struct tpm_chip *); - u8 (*status)(struct tpm_chip *); - void (*update_timeouts)(struct tpm_chip *, long unsigned int *); - void (*update_durations)(struct tpm_chip *, long unsigned int *); - int (*go_idle)(struct tpm_chip *); - int (*cmd_ready)(struct tpm_chip *); - int (*request_locality)(struct tpm_chip *, int); - int (*relinquish_locality)(struct tpm_chip *, int); - void (*clk_enable)(struct tpm_chip *, bool); -}; - -struct tpm_bios_log { - void *bios_event_log; - void *bios_event_log_end; -}; - -struct tpm_chip_seqops { - struct tpm_chip *chip; - const struct seq_operations *seqops; -}; - -struct tpm_space { - u32 context_tbl[3]; - u8 *context_buf; - u32 session_tbl[3]; - u8 *session_buf; - u32 buf_size; -}; - -struct tpm_chip { - struct device dev; - struct device devs; - struct cdev cdev; - struct cdev cdevs; - struct rw_semaphore ops_sem; - const struct tpm_class_ops *ops; - struct tpm_bios_log log; - struct tpm_chip_seqops bin_log_seqops; - struct tpm_chip_seqops ascii_log_seqops; - unsigned int flags; - int dev_num; - long unsigned int is_open; - char hwrng_name[64]; - struct hwrng hwrng; - struct mutex tpm_mutex; - long unsigned int timeout_a; - long unsigned int timeout_b; - long unsigned int timeout_c; - long unsigned int timeout_d; - bool timeout_adjusted; - long unsigned int duration[4]; - bool duration_adjusted; - struct dentry *bios_dir; - const struct attribute_group *groups[8]; - unsigned int groups_cnt; - u32 nr_allocated_banks; - struct tpm_bank_info allocated_banks[8]; - acpi_handle acpi_dev_handle; - char ppi_version[4]; - struct tpm_space work_space; - u32 last_cc; - u32 nr_commands; - u32 *cc_attrs_tbl; - int locality; -}; - -enum integrity_status { - INTEGRITY_PASS = 0, - INTEGRITY_PASS_IMMUTABLE = 1, - INTEGRITY_FAIL = 2, - INTEGRITY_FAIL_IMMUTABLE = 3, - INTEGRITY_NOLABEL = 4, - INTEGRITY_NOXATTRS = 5, - INTEGRITY_UNKNOWN = 6, -}; - -struct integrity_inode_attributes { - u64 version; - long unsigned int ino; - dev_t dev; -}; - -struct evm_ima_xattr_data_hdr { - u8 type; -}; - -struct evm_ima_xattr_data { - union { - struct { - u8 type; - }; - struct evm_ima_xattr_data_hdr hdr; - }; - u8 data[0]; -}; - -struct ima_digest_data_hdr { - u8 algo; - u8 length; - union { - struct { - u8 unused; - u8 type; - } sha1; - struct { - u8 type; - u8 algo; - } ng; - u8 data[2]; - } xattr; -}; - -struct ima_digest_data { - union { - struct { - u8 algo; - u8 length; - union { - struct { - u8 unused; - u8 type; - } sha1; - struct { - u8 type; - u8 algo; - } ng; - u8 data[2]; - } xattr; - }; - struct ima_digest_data_hdr hdr; - }; - u8 digest[0]; -}; - -struct ima_max_digest_data { - struct ima_digest_data_hdr hdr; - u8 digest[64]; -}; - -enum ima_show_type { - IMA_SHOW_BINARY = 0, - IMA_SHOW_BINARY_NO_FIELD_LEN = 1, - IMA_SHOW_BINARY_OLD_STRING_FMT = 2, - IMA_SHOW_ASCII = 3, -}; - -struct ima_iint_cache; - -struct modsig; - -struct ima_event_data { - struct ima_iint_cache *iint; - struct file *file; - const unsigned char *filename; - struct evm_ima_xattr_data *xattr_value; - int xattr_len; - const struct modsig *modsig; - const char *violation; - const void *buf; - int buf_len; -}; - -struct ima_iint_cache { - struct mutex mutex; - struct integrity_inode_attributes real_inode; - long unsigned int flags; - long unsigned int measured_pcrs; - long unsigned int atomic_flags; - enum integrity_status ima_file_status: 4; - enum integrity_status ima_mmap_status: 4; - enum integrity_status ima_bprm_status: 4; - enum integrity_status ima_read_status: 4; - enum integrity_status ima_creds_status: 4; - struct ima_digest_data *ima_hash; -}; - -struct pkcs7_message; - -struct modsig { - struct pkcs7_message *pkcs7_msg; - enum hash_algo hash_algo; - const u8 *digest; - u32 digest_size; - int raw_pkcs7_len; - u8 raw_pkcs7[0]; -}; - -struct ima_field_data { - u8 *data; - u32 len; -}; - -struct ima_template_field { - const char field_id[16]; - int (*field_init)(struct ima_event_data *, struct ima_field_data *); - void (*field_show)(struct seq_file *, enum ima_show_type, struct ima_field_data *); -}; - -struct ima_template_desc { - struct list_head list; - char *name; - char *fmt; - int num_fields; - const struct ima_template_field **fields; -}; - -struct ima_template_entry { - int pcr; - struct tpm_digest *digests; - struct ima_template_desc *template_desc; - u32 template_data_len; - struct ima_field_data template_data[0]; -}; - -enum ima_hooks { - NONE___2 = 0, - FILE_CHECK = 1, - MMAP_CHECK = 2, - MMAP_CHECK_REQPROT = 3, - BPRM_CHECK = 4, - CREDS_CHECK = 5, - POST_SETATTR = 6, - MODULE_CHECK = 7, - FIRMWARE_CHECK = 8, - KEXEC_KERNEL_CHECK = 9, - KEXEC_INITRAMFS_CHECK = 10, - POLICY_CHECK = 11, - KEXEC_CMDLINE = 12, - KEY_CHECK = 13, - CRITICAL_DATA = 14, - SETXATTR_CHECK = 15, - MAX_CHECK = 16, -}; - -enum lsm_rule_types { - LSM_OBJ_USER = 0, - LSM_OBJ_ROLE = 1, - LSM_OBJ_TYPE = 2, - LSM_SUBJ_USER = 3, - LSM_SUBJ_ROLE = 4, - LSM_SUBJ_TYPE = 5, -}; - -enum policy_types { - ORIGINAL_TCB = 1, - DEFAULT_TCB = 2, -}; - -enum policy_rule_list { - IMA_DEFAULT_POLICY = 1, - IMA_CUSTOM_POLICY = 2, -}; - -struct ima_rule_opt_list { - size_t count; - char *items[0]; -}; - -struct ima_rule_entry { - struct list_head list; - int action; - unsigned int flags; - enum ima_hooks func; - int mask; - long unsigned int fsmagic; - uuid_t fsuuid; - kuid_t uid; - kgid_t gid; - kuid_t fowner; - kgid_t fgroup; - bool (*uid_op)(kuid_t, kuid_t); - bool (*gid_op)(kgid_t, kgid_t); - bool (*fowner_op)(vfsuid_t, kuid_t); - bool (*fgroup_op)(vfsgid_t, kgid_t); - int pcr; - unsigned int allowed_algos; - struct { - void *rule; - char *args_p; - int type; - } lsm[6]; - char *fsname; - struct ima_rule_opt_list *keyrings; - struct ima_rule_opt_list *label; - struct ima_template_desc *template; -}; - -enum policy_opt { - Opt_measure = 0, - Opt_dont_measure = 1, - Opt_appraise = 2, - Opt_dont_appraise = 3, - Opt_audit = 4, - Opt_hash = 5, - Opt_dont_hash = 6, - Opt_obj_user = 7, - Opt_obj_role = 8, - Opt_obj_type = 9, - Opt_subj_user = 10, - Opt_subj_role = 11, - Opt_subj_type = 12, - Opt_func = 13, - Opt_mask = 14, - Opt_fsmagic = 15, - Opt_fsname = 16, - Opt_fsuuid = 17, - Opt_uid_eq = 18, - Opt_euid_eq = 19, - Opt_gid_eq = 20, - Opt_egid_eq = 21, - Opt_fowner_eq = 22, - Opt_fgroup_eq = 23, - Opt_uid_gt = 24, - Opt_euid_gt = 25, - Opt_gid_gt = 26, - Opt_egid_gt = 27, - Opt_fowner_gt = 28, - Opt_fgroup_gt = 29, - Opt_uid_lt = 30, - Opt_euid_lt = 31, - Opt_gid_lt = 32, - Opt_egid_lt = 33, - Opt_fowner_lt = 34, - Opt_fgroup_lt = 35, - Opt_digest_type = 36, - Opt_appraise_type = 37, - Opt_appraise_flag = 38, - Opt_appraise_algos = 39, - Opt_permit_directio = 40, - Opt_pcr = 41, - Opt_template = 42, - Opt_keyrings = 43, - Opt_label = 44, - Opt_err___3 = 45, -}; - -enum evm_ima_xattr_type { - IMA_XATTR_DIGEST = 1, - EVM_XATTR_HMAC = 2, - EVM_IMA_XATTR_DIGSIG = 3, - IMA_XATTR_DIGEST_NG = 4, - EVM_XATTR_PORTABLE_DIGSIG = 5, - IMA_VERITY_DIGSIG = 6, - IMA_XATTR_LAST = 7, -}; - -struct ima_file_id { - __u8 hash_type; - __u8 hash_algorithm; - __u8 hash[64]; -}; - -struct xattr_list { - struct list_head list; - char *name; - bool enabled; -}; - -struct crypto_spawn { - struct list_head list; - struct crypto_alg *alg; - union { - struct crypto_instance *inst; - struct crypto_spawn *next; - }; - const struct crypto_type *frontend; - u32 mask; - bool dead; - bool registered; -}; - -struct crypto_template; - -struct crypto_instance { - struct crypto_alg alg; - struct crypto_template *tmpl; - union { - struct hlist_node list; - struct crypto_spawn *spawns; - }; - void *__ctx[0]; -}; - -struct rtattr; - -struct crypto_template { - struct list_head list; - struct hlist_head instances; - struct hlist_head dead; - struct module *module; - struct work_struct free_work; - int (*create)(struct crypto_template *, struct rtattr **); - char name[128]; -}; - -struct rtattr { - short unsigned int rta_len; - short unsigned int rta_type; -}; - -struct crypto_queue { - struct list_head list; - struct list_head *backlog; - unsigned int qlen; - unsigned int max_qlen; -}; - -struct crypto_attr_alg { - char name[128]; -}; - -struct crypto_attr_type { - u32 type; - u32 mask; -}; - -enum { - CRYPTO_MSG_ALG_REQUEST = 0, - CRYPTO_MSG_ALG_REGISTER = 1, - CRYPTO_MSG_ALG_LOADED = 2, -}; - -struct crypto_larval { - struct crypto_alg alg; - struct crypto_alg *adult; - struct completion completion; - u32 mask; - bool test_started; -}; - -enum { - CRYPTOA_UNSPEC = 0, - CRYPTOA_ALG = 1, - CRYPTOA_TYPE = 2, - __CRYPTOA_MAX = 3, -}; - -enum crypto_attr_type_t { - CRYPTOCFGA_UNSPEC = 0, - CRYPTOCFGA_PRIORITY_VAL = 1, - CRYPTOCFGA_REPORT_LARVAL = 2, - CRYPTOCFGA_REPORT_HASH = 3, - CRYPTOCFGA_REPORT_BLKCIPHER = 4, - CRYPTOCFGA_REPORT_AEAD = 5, - CRYPTOCFGA_REPORT_COMPRESS = 6, - CRYPTOCFGA_REPORT_RNG = 7, - CRYPTOCFGA_REPORT_CIPHER = 8, - CRYPTOCFGA_REPORT_AKCIPHER = 9, - CRYPTOCFGA_REPORT_KPP = 10, - CRYPTOCFGA_REPORT_ACOMP = 11, - CRYPTOCFGA_STAT_LARVAL = 12, - CRYPTOCFGA_STAT_HASH = 13, - CRYPTOCFGA_STAT_BLKCIPHER = 14, - CRYPTOCFGA_STAT_AEAD = 15, - CRYPTOCFGA_STAT_COMPRESS = 16, - CRYPTOCFGA_STAT_RNG = 17, - CRYPTOCFGA_STAT_CIPHER = 18, - CRYPTOCFGA_STAT_AKCIPHER = 19, - CRYPTOCFGA_STAT_KPP = 20, - CRYPTOCFGA_STAT_ACOMP = 21, - CRYPTOCFGA_REPORT_SIG = 22, - __CRYPTOCFGA_MAX = 23, -}; - -struct crypto_report_blkcipher { - char type[64]; - char geniv[64]; - unsigned int blocksize; - unsigned int min_keysize; - unsigned int max_keysize; - unsigned int ivsize; -}; - -union crypto_no_such_thing; - -struct scatter_walk { - union { - void * const addr; - union crypto_no_such_thing *__addr; - }; - struct scatterlist *sg; - unsigned int offset; -}; - -struct skcipher_walk { - union { - struct { - struct { - const void * const addr; - } virt; - } src; - struct scatter_walk in; - }; - union { - struct { - struct { - void * const addr; - } virt; - } dst; - struct scatter_walk out; - }; - unsigned int nbytes; - unsigned int total; - u8 *page; - u8 *buffer; - u8 *oiv; - void *iv; - unsigned int ivsize; - int flags; - unsigned int blocksize; - unsigned int stride; - unsigned int alignmask; -}; - -struct crypto_lskcipher { - struct crypto_tfm base; -}; - -struct lskcipher_alg { - int (*setkey)(struct crypto_lskcipher *, const u8 *, unsigned int); - int (*encrypt)(struct crypto_lskcipher *, const u8 *, u8 *, unsigned int, u8 *, u32); - int (*decrypt)(struct crypto_lskcipher *, const u8 *, u8 *, unsigned int, u8 *, u32); - int (*init)(struct crypto_lskcipher *); - void (*exit)(struct crypto_lskcipher *); - struct skcipher_alg_common co; -}; - -struct lskcipher_instance { - void (*free)(struct lskcipher_instance *); - union { - struct { - char head[64]; - struct crypto_instance base; - } s; - struct lskcipher_alg alg; - }; -}; - -struct crypto_lskcipher_spawn { - struct crypto_spawn base; -}; - -struct crypto_report_hash { - char type[64]; - unsigned int blocksize; - unsigned int digestsize; -}; - -struct hash_alg_common { - unsigned int digestsize; - unsigned int statesize; - struct crypto_alg base; -}; - -struct ahash_request { - struct crypto_async_request base; - unsigned int nbytes; - union { - struct scatterlist *src; - const u8 *svirt; - }; - u8 *result; - struct scatterlist sg_head[2]; - crypto_completion_t saved_complete; - void *saved_data; - void *__ctx[0]; -}; - -struct crypto_ahash; - -struct ahash_alg { - int (*init)(struct ahash_request *); - int (*update)(struct ahash_request *); - int (*final)(struct ahash_request *); - int (*finup)(struct ahash_request *); - int (*digest)(struct ahash_request *); - int (*export)(struct ahash_request *, void *); - int (*import)(struct ahash_request *, const void *); - int (*export_core)(struct ahash_request *, void *); - int (*import_core)(struct ahash_request *, const void *); - int (*setkey)(struct crypto_ahash *, const u8 *, unsigned int); - int (*init_tfm)(struct crypto_ahash *); - void (*exit_tfm)(struct crypto_ahash *); - int (*clone_tfm)(struct crypto_ahash *, struct crypto_ahash *); - struct hash_alg_common halg; -}; - -struct crypto_ahash { - bool using_shash; - unsigned int statesize; - unsigned int reqsize; - struct crypto_tfm base; -}; - -struct shash_desc { - struct crypto_shash *tfm; - void *__ctx[0]; -}; - -struct shash_alg { - int (*init)(struct shash_desc *); - int (*update)(struct shash_desc *, const u8 *, unsigned int); - int (*final)(struct shash_desc *, u8 *); - int (*finup)(struct shash_desc *, const u8 *, unsigned int, u8 *); - int (*digest)(struct shash_desc *, const u8 *, unsigned int, u8 *); - int (*export)(struct shash_desc *, void *); - int (*import)(struct shash_desc *, const void *); - int (*export_core)(struct shash_desc *, void *); - int (*import_core)(struct shash_desc *, const void *); - int (*setkey)(struct crypto_shash *, const u8 *, unsigned int); - int (*init_tfm)(struct crypto_shash *); - void (*exit_tfm)(struct crypto_shash *); - int (*clone_tfm)(struct crypto_shash *, struct crypto_shash *); - unsigned int descsize; - union { - struct { - unsigned int digestsize; - unsigned int statesize; - struct crypto_alg base; - }; - struct hash_alg_common halg; - }; -}; - -struct crypto_hash_walk { - const char *data; - unsigned int offset; - unsigned int flags; - struct page *pg; - unsigned int entrylen; - unsigned int total; - struct scatterlist *sg; -}; - -struct ahash_instance { - void (*free)(struct ahash_instance *); - union { - struct { - char head[112]; - struct crypto_instance base; - } s; - struct ahash_alg alg; - }; -}; - -struct crypto_ahash_spawn { - struct crypto_spawn base; -}; - -struct kpp_request { - struct crypto_async_request base; - struct scatterlist *src; - struct scatterlist *dst; - unsigned int src_len; - unsigned int dst_len; - void *__ctx[0]; -}; - -struct crypto_kpp { - unsigned int reqsize; - struct crypto_tfm base; -}; - -struct kpp_alg { - int (*set_secret)(struct crypto_kpp *, const void *, unsigned int); - int (*generate_public_key)(struct kpp_request *); - int (*compute_shared_secret)(struct kpp_request *); - unsigned int (*max_size)(struct crypto_kpp *); - int (*init)(struct crypto_kpp *); - void (*exit)(struct crypto_kpp *); - struct crypto_alg base; -}; - -struct kpp_instance { - void (*free)(struct kpp_instance *); - union { - struct { - char head[48]; - struct crypto_instance base; - } s; - struct kpp_alg alg; - }; -}; - -struct crypto_kpp_spawn { - struct crypto_spawn base; -}; - -struct crypto_report_kpp { - char type[64]; -}; - -struct crypto_wait { - struct completion completion; - int err; -}; - -struct akcipher_request { - struct crypto_async_request base; - struct scatterlist *src; - struct scatterlist *dst; - unsigned int src_len; - unsigned int dst_len; - void *__ctx[0]; -}; - -struct crypto_akcipher { - unsigned int reqsize; - struct crypto_tfm base; -}; - -struct akcipher_alg { - int (*encrypt)(struct akcipher_request *); - int (*decrypt)(struct akcipher_request *); - int (*set_pub_key)(struct crypto_akcipher *, const void *, unsigned int); - int (*set_priv_key)(struct crypto_akcipher *, const void *, unsigned int); - unsigned int (*max_size)(struct crypto_akcipher *); - int (*init)(struct crypto_akcipher *); - void (*exit)(struct crypto_akcipher *); - struct crypto_alg base; -}; - -struct crypto_sig { - struct crypto_tfm base; -}; - -struct sig_alg { - int (*sign)(struct crypto_sig *, const void *, unsigned int, void *, unsigned int); - int (*verify)(struct crypto_sig *, const void *, unsigned int, const void *, unsigned int); - int (*set_pub_key)(struct crypto_sig *, const void *, unsigned int); - int (*set_priv_key)(struct crypto_sig *, const void *, unsigned int); - unsigned int (*key_size)(struct crypto_sig *); - unsigned int (*digest_size)(struct crypto_sig *); - unsigned int (*max_size)(struct crypto_sig *); - int (*init)(struct crypto_sig *); - void (*exit)(struct crypto_sig *); - struct crypto_alg base; -}; - -struct crypto_akcipher_spawn { - struct crypto_spawn base; -}; - -struct sig_instance { - void (*free)(struct sig_instance *); - union { - struct { - char head[72]; - struct crypto_instance base; - }; - struct sig_alg alg; - }; -}; - -struct hash_prefix { - const char *name; - const u8 *data; - size_t size; -}; - -struct rsassa_pkcs1_ctx { - struct crypto_akcipher *child; - unsigned int key_size; -}; - -struct rsassa_pkcs1_inst_ctx { - struct crypto_akcipher_spawn spawn; - const struct hash_prefix *hash_prefix; -}; - -struct cryptomgr_param { - struct rtattr *tb[34]; - struct { - struct rtattr attr; - struct crypto_attr_type data; - } type; - struct { - struct rtattr attr; - struct crypto_attr_alg data; - } attrs[32]; - char template[128]; - struct crypto_larval *larval; - u32 otype; - u32 omask; -}; - -struct crypto_test_param { - char driver[128]; - char alg[128]; - u32 type; -}; - -struct __hmac_sha256_key { - struct sha256_block_state istate; - struct sha256_block_state ostate; -}; - -struct __hmac_sha256_ctx { - struct __sha256_ctx sha_ctx; - struct sha256_block_state ostate; -}; - -struct sha224_ctx { - struct __sha256_ctx ctx; -}; - -struct hmac_sha224_key { - struct __hmac_sha256_key key; -}; - -struct hmac_sha224_ctx { - struct __hmac_sha256_ctx ctx; -}; - -struct hmac_sha256_key { - struct __hmac_sha256_key key; -}; - -struct hmac_sha256_ctx { - struct __hmac_sha256_ctx ctx; -}; - -struct aead_request { - struct crypto_async_request base; - unsigned int assoclen; - unsigned int cryptlen; - u8 *iv; - struct scatterlist *src; - struct scatterlist *dst; - void *__ctx[0]; -}; - -struct crypto_aead; - -struct aead_alg { - int (*setkey)(struct crypto_aead *, const u8 *, unsigned int); - int (*setauthsize)(struct crypto_aead *, unsigned int); - int (*encrypt)(struct aead_request *); - int (*decrypt)(struct aead_request *); - int (*init)(struct crypto_aead *); - void (*exit)(struct crypto_aead *); - unsigned int ivsize; - unsigned int maxauthsize; - unsigned int chunksize; - struct crypto_alg base; -}; - -struct crypto_aead { - unsigned int authsize; - unsigned int reqsize; - struct crypto_tfm base; -}; - -struct aead_instance { - void (*free)(struct aead_instance *); - union { - struct { - char head[64]; - struct crypto_instance base; - } s; - struct aead_alg alg; - }; -}; - -struct crypto_aead_spawn { - struct crypto_spawn base; -}; - -struct crypto_skcipher_spawn { - struct crypto_spawn base; -}; - -struct gcm_instance_ctx { - struct crypto_skcipher_spawn ctr; - struct crypto_ahash_spawn ghash; -}; - -struct crypto_gcm_ctx { - struct crypto_skcipher *ctr; - struct crypto_ahash *ghash; -}; - -struct crypto_rfc4106_ctx { - struct crypto_aead *child; - u8 nonce[4]; -}; - -struct crypto_rfc4106_req_ctx { - struct scatterlist src[3]; - struct scatterlist dst[3]; - struct aead_request subreq; -}; - -struct crypto_rfc4543_instance_ctx { - struct crypto_aead_spawn aead; -}; - -struct crypto_rfc4543_ctx { - struct crypto_aead *child; - u8 nonce[4]; -}; - -struct crypto_rfc4543_req_ctx { - struct aead_request subreq; -}; - -struct crypto_gcm_ghash_ctx { - unsigned int cryptlen; - struct scatterlist *src; - int (*complete)(struct aead_request *, u32); -}; - -struct crypto_gcm_req_priv_ctx { - u8 iv[16]; - u8 auth_tag[16]; - u8 iauth_tag[16]; - struct scatterlist src[3]; - struct scatterlist dst[3]; - struct scatterlist sg; - struct crypto_gcm_ghash_ctx ghash_ctx; - union { - struct ahash_request ahreq; - struct skcipher_request skreq; - } u; -}; - -struct comp_alg_common { - struct crypto_alg base; -}; - -struct crypto_acomp_stream { - spinlock_t lock; - void *ctx; -}; - -struct crypto_acomp_streams { - void * (*alloc_ctx)(void); - void (*free_ctx)(void *); - struct crypto_acomp_stream *streams; - struct work_struct stream_work; - cpumask_t stream_want; -}; - -struct crypto_scomp { - struct crypto_tfm base; -}; - -struct scomp_alg { - int (*compress)(struct crypto_scomp *, const u8 *, unsigned int, u8 *, unsigned int *, void *); - int (*decompress)(struct crypto_scomp *, const u8 *, unsigned int, u8 *, unsigned int *, void *); - struct crypto_acomp_streams streams; - union { - struct { - struct crypto_alg base; - }; - struct comp_alg_common calg; - }; -}; - -typedef unsigned char u8___2; - -struct rand_data { - void *hash_state; - __u64 prev_time; - __u64 last_delta; - __s64 last_delta2; - unsigned int flags; - unsigned int osr; - unsigned char *mem; - unsigned int memlocation; - unsigned int memblocks; - unsigned int memblocksize; - unsigned int memaccessloops; - unsigned int rct_count; - unsigned int apt_cutoff; - unsigned int apt_cutoff_permanent; - unsigned int apt_observations; - unsigned int apt_count; - unsigned int apt_base; - unsigned int health_failure; - unsigned int apt_base_set: 1; -}; - -struct crypto_rng; - -struct rng_alg { - int (*generate)(struct crypto_rng *, const u8 *, unsigned int, u8 *, unsigned int); - int (*seed)(struct crypto_rng *, const u8 *, unsigned int); - void (*set_ent)(struct crypto_rng *, const u8 *, unsigned int); - unsigned int seedsize; - struct crypto_alg base; -}; - -struct crypto_rng { - struct crypto_tfm base; -}; - -struct jitterentropy { - spinlock_t jent_lock; - struct rand_data *entropy_collector; - struct crypto_shash *tfm; - struct shash_desc *sdesc; -}; - -struct ecdh { - char *key; - short unsigned int key_size; -}; - -enum { - CRYPTO_KPP_SECRET_TYPE_UNKNOWN = 0, - CRYPTO_KPP_SECRET_TYPE_DH = 1, - CRYPTO_KPP_SECRET_TYPE_ECDH = 2, -}; - -struct kpp_secret { - short unsigned int type; - short unsigned int len; -}; - -struct asymmetric_key_ids { - void *id[3]; -}; - -struct asymmetric_key_subtype { - struct module *owner; - const char *name; - short unsigned int name_len; - void (*describe)(const struct key *, struct seq_file *); - void (*destroy)(void *, void *); - int (*query)(const struct kernel_pkey_params *, struct kernel_pkey_query *); - int (*eds_op)(struct kernel_pkey_params *, const void *, void *); - int (*verify_signature)(const struct key *, const struct public_key_signature *); -}; - -struct asymmetric_key_parser { - struct list_head link; - struct module *owner; - const char *name; - int (*parse)(struct key_preparsed_payload *); -}; - -struct x509_certificate { - struct x509_certificate *next; - struct x509_certificate *signer; - struct public_key *pub; - struct public_key_signature *sig; - char *issuer; - char *subject; - struct asymmetric_key_id *id; - struct asymmetric_key_id *skid; - time64_t valid_from; - time64_t valid_to; - const void *tbs; - unsigned int tbs_size; - unsigned int raw_sig_size; - const void *raw_sig; - const void *raw_serial; - unsigned int raw_serial_size; - unsigned int raw_issuer_size; - const void *raw_issuer; - const void *raw_subject; - unsigned int raw_subject_size; - unsigned int raw_skid_size; - const void *raw_skid; - unsigned int index; - bool seen; - bool verified; - bool self_signed; - bool unsupported_sig; - bool blacklisted; -}; - -struct pkcs7_signed_info { - struct pkcs7_signed_info *next; - struct x509_certificate *signer; - unsigned int index; - bool unsupported_crypto; - bool blacklisted; - const void *msgdigest; - unsigned int msgdigest_len; - unsigned int authattrs_len; - const void *authattrs; - long unsigned int aa_set; - time64_t signing_time; - struct public_key_signature *sig; -}; - -struct pkcs7_message { - struct x509_certificate *certs; - struct x509_certificate *crl; - struct pkcs7_signed_info *signed_infos; - u8 version; - bool have_authattrs; - enum OID data_type; - size_t data_len; - size_t data_hdrlen; - const void *data; -}; - -struct pkcs7_parse_context { - struct pkcs7_message *msg; - struct pkcs7_signed_info *sinfo; - struct pkcs7_signed_info **ppsinfo; - struct x509_certificate *certs; - struct x509_certificate **ppcerts; - long unsigned int data; - enum OID last_oid; - unsigned int x509_index; - unsigned int sinfo_index; - const void *raw_serial; - unsigned int raw_serial_size; - unsigned int raw_issuer_size; - const void *raw_issuer; - const void *raw_skid; - unsigned int raw_skid_size; - bool expect_skid; -}; - -struct mz_hdr { - uint16_t magic; - uint16_t lbsize; - uint16_t blocks; - uint16_t relocs; - uint16_t hdrsize; - uint16_t min_extra_pps; - uint16_t max_extra_pps; - uint16_t ss; - uint16_t sp; - uint16_t checksum; - uint16_t ip; - uint16_t cs; - uint16_t reloc_table_offset; - uint16_t overlay_num; - uint16_t reserved0[4]; - uint16_t oem_id; - uint16_t oem_info; - uint16_t reserved1[10]; - uint32_t peaddr; - char message[0]; -}; - -struct pe_hdr { - uint32_t magic; - uint16_t machine; - uint16_t sections; - uint32_t timestamp; - uint32_t symbol_table; - uint32_t symbols; - uint16_t opt_hdr_size; - uint16_t flags; -}; - -struct pe32_opt_hdr { - uint16_t magic; - uint8_t ld_major; - uint8_t ld_minor; - uint32_t text_size; - uint32_t data_size; - uint32_t bss_size; - uint32_t entry_point; - uint32_t code_base; - uint32_t data_base; - uint32_t image_base; - uint32_t section_align; - uint32_t file_align; - uint16_t os_major; - uint16_t os_minor; - uint16_t image_major; - uint16_t image_minor; - uint16_t subsys_major; - uint16_t subsys_minor; - uint32_t win32_version; - uint32_t image_size; - uint32_t header_size; - uint32_t csum; - uint16_t subsys; - uint16_t dll_flags; - uint32_t stack_size_req; - uint32_t stack_size; - uint32_t heap_size_req; - uint32_t heap_size; - uint32_t loader_flags; - uint32_t data_dirs; -}; - -struct pe32plus_opt_hdr { - uint16_t magic; - uint8_t ld_major; - uint8_t ld_minor; - uint32_t text_size; - uint32_t data_size; - uint32_t bss_size; - uint32_t entry_point; - uint32_t code_base; - uint64_t image_base; - uint32_t section_align; - uint32_t file_align; - uint16_t os_major; - uint16_t os_minor; - uint16_t image_major; - uint16_t image_minor; - uint16_t subsys_major; - uint16_t subsys_minor; - uint32_t win32_version; - uint32_t image_size; - uint32_t header_size; - uint32_t csum; - uint16_t subsys; - uint16_t dll_flags; - uint64_t stack_size_req; - uint64_t stack_size; - uint64_t heap_size_req; - uint64_t heap_size; - uint32_t loader_flags; - uint32_t data_dirs; -}; - -struct data_dirent { - uint32_t virtual_address; - uint32_t size; -}; - -struct data_directory { - struct data_dirent exports; - struct data_dirent imports; - struct data_dirent resources; - struct data_dirent exceptions; - struct data_dirent certs; - struct data_dirent base_relocations; - struct data_dirent debug; - struct data_dirent arch; - struct data_dirent global_ptr; - struct data_dirent tls; - struct data_dirent load_config; - struct data_dirent bound_imports; - struct data_dirent import_addrs; - struct data_dirent delay_imports; - struct data_dirent clr_runtime_hdr; - struct data_dirent reserved; -}; - -struct section_header { - char name[8]; - uint32_t virtual_size; - uint32_t virtual_address; - uint32_t raw_data_size; - uint32_t data_addr; - uint32_t relocs; - uint32_t line_numbers; - uint16_t num_relocs; - uint16_t num_lin_numbers; - uint32_t flags; -}; - -struct win_certificate { - uint32_t length; - uint16_t revision; - uint16_t cert_type; -}; - -struct pefile_context { - unsigned int header_size; - unsigned int image_checksum_offset; - unsigned int cert_dirent_offset; - unsigned int n_data_dirents; - unsigned int n_sections; - unsigned int certs_size; - unsigned int sig_offset; - unsigned int sig_len; - const struct section_header *secs; - const void *digest; - unsigned int digest_len; - const char *digest_algo; -}; - -struct io_ring_ctx; - -struct io_wq; - -struct io_uring_task { - int cached_refs; - const struct io_ring_ctx *last; - struct task_struct *task; - struct io_wq *io_wq; - struct file *registered_rings[16]; - struct xarray xa; - struct wait_queue_head wait; - atomic_t in_cancel; - atomic_t inflight_tracked; - struct percpu_counter inflight; - long: 64; - struct { - struct llist_head task_list; - struct callback_head task_work; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - }; -}; - -struct io_uring_sqe; - -struct io_uring_cmd { - struct file *file; - const struct io_uring_sqe *sqe; - void (*task_work_cb)(struct io_uring_cmd *, unsigned int); - u32 cmd_op; - u32 flags; - u8 pdu[32]; -}; - -typedef __u16 uio_meta_flags_t; - -struct uio_meta { - uio_meta_flags_t flags; - u16 app_tag; - u64 seed; - struct iov_iter iter; -}; - -struct bio_integrity_payload { - struct bvec_iter bip_iter; - short unsigned int bip_vcnt; - short unsigned int bip_max_vcnt; - short unsigned int bip_flags; - u16 app_tag; - struct bio_vec *bip_vec; -}; - -enum { - BIOSET_NEED_BVECS = 1, - BIOSET_NEED_RESCUER = 2, - BIOSET_PERCPU_CACHE = 4, -}; - -struct sbitmap_word { - long unsigned int word; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long unsigned int cleared; - raw_spinlock_t swap_lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct sbitmap { - unsigned int depth; - unsigned int shift; - unsigned int map_nr; - bool round_robin; - struct sbitmap_word *map; - unsigned int *alloc_hint; -}; - -struct sbq_wait_state { - wait_queue_head_t wait; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct sbitmap_queue { - struct sbitmap sb; - unsigned int wake_batch; - atomic_t wake_index; - struct sbq_wait_state *ws; - atomic_t ws_active; - unsigned int min_shallow_depth; - atomic_t completion_cnt; - atomic_t wakeup_cnt; -}; - -typedef __u32 req_flags_t; - -enum mq_rq_state { - MQ_RQ_IDLE = 0, - MQ_RQ_IN_FLIGHT = 1, - MQ_RQ_COMPLETE = 2, -}; - -enum rq_end_io_ret { - RQ_END_IO_NONE = 0, - RQ_END_IO_FREE = 1, -}; - -typedef enum rq_end_io_ret rq_end_io_fn(struct request *, blk_status_t); - -struct blk_crypto_keyslot; - -struct request { - struct request_queue *q; - struct blk_mq_ctx *mq_ctx; - struct blk_mq_hw_ctx *mq_hctx; - blk_opf_t cmd_flags; - req_flags_t rq_flags; - int tag; - int internal_tag; - unsigned int timeout; - unsigned int __data_len; - sector_t __sector; - struct bio *bio; - struct bio *biotail; - union { - struct list_head queuelist; - struct request *rq_next; - }; - struct block_device *part; - u64 alloc_time_ns; - u64 start_time_ns; - u64 io_start_time_ns; - short unsigned int wbt_flags; - short unsigned int stats_sectors; - short unsigned int nr_phys_segments; - short unsigned int nr_integrity_segments; - struct bio_crypt_ctx *crypt_ctx; - struct blk_crypto_keyslot *crypt_keyslot; - enum mq_rq_state state; - atomic_t ref; - long unsigned int deadline; - union { - struct hlist_node hash; - struct llist_node ipi_list; - }; - union { - struct rb_node rb_node; - struct bio_vec special_vec; - }; - struct { - struct io_cq *icq; - void *priv[2]; - } elv; - struct { - unsigned int seq; - rq_end_io_fn *saved_end_io; - } flush; - u64 fifo_time; - rq_end_io_fn *end_io; - void *end_io_data; -}; - -struct blk_mq_tags { - unsigned int nr_tags; - unsigned int nr_reserved_tags; - unsigned int active_queues; - struct sbitmap_queue bitmap_tags; - struct sbitmap_queue breserved_tags; - struct request **rqs; - struct request **static_rqs; - struct list_head page_list; - spinlock_t lock; -}; - -struct blk_flush_queue { - spinlock_t mq_flush_lock; - unsigned int flush_pending_idx: 1; - unsigned int flush_running_idx: 1; - blk_status_t rq_status; - long unsigned int flush_pending_since; - struct list_head flush_queue[2]; - long unsigned int flush_data_in_flight; - struct request *flush_rq; -}; - -struct blk_mq_queue_map { - unsigned int *mq_map; - unsigned int nr_queues; - unsigned int queue_offset; -}; - -struct blk_mq_tag_set { - const struct blk_mq_ops *ops; - struct blk_mq_queue_map map[3]; - unsigned int nr_maps; - unsigned int nr_hw_queues; - unsigned int queue_depth; - unsigned int reserved_tags; - unsigned int cmd_size; - int numa_node; - unsigned int timeout; - unsigned int flags; - void *driver_data; - struct blk_mq_tags **tags; - struct blk_mq_tags *shared_tags; - struct mutex tag_list_lock; - struct list_head tag_list; - struct srcu_struct *srcu; - struct rw_semaphore update_nr_hwq_lock; -}; - -struct blk_mq_hw_ctx { - struct { - spinlock_t lock; - struct list_head dispatch; - long unsigned int state; - long: 64; - long: 64; - long: 64; - long: 64; - }; - struct delayed_work run_work; - cpumask_var_t cpumask; - int next_cpu; - int next_cpu_batch; - long unsigned int flags; - void *sched_data; - struct request_queue *queue; - struct blk_flush_queue *fq; - void *driver_data; - struct sbitmap ctx_map; - struct blk_mq_ctx *dispatch_from; - unsigned int dispatch_busy; - short unsigned int type; - short unsigned int nr_ctx; - struct blk_mq_ctx **ctxs; - spinlock_t dispatch_wait_lock; - wait_queue_entry_t dispatch_wait; - atomic_t wait_index; - struct blk_mq_tags *tags; - struct blk_mq_tags *sched_tags; - unsigned int numa_node; - unsigned int queue_num; - atomic_t nr_active; - struct hlist_node cpuhp_online; - struct hlist_node cpuhp_dead; - struct kobject kobj; - struct dentry *debugfs_dir; - struct dentry *sched_debugfs_dir; - struct list_head hctx_list; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct blk_mq_queue_data { - struct request *rq; - bool last; -}; - -struct iomap_write_ops { - struct folio * (*get_folio)(struct iomap_iter *, loff_t, unsigned int); - void (*put_folio)(struct inode *, loff_t, unsigned int, struct folio *); - bool (*iomap_valid)(struct inode *, const struct iomap *); - int (*read_folio_range)(const struct iomap_iter *, struct folio *, loff_t, size_t); -}; - -struct io_uring_sqe { - __u8 opcode; - __u8 flags; - __u16 ioprio; - __s32 fd; - union { - __u64 off; - __u64 addr2; - struct { - __u32 cmd_op; - __u32 __pad1; - }; - }; - union { - __u64 addr; - __u64 splice_off_in; - struct { - __u32 level; - __u32 optname; - }; - }; - __u32 len; - union { - __u32 rw_flags; - __u32 fsync_flags; - __u16 poll_events; - __u32 poll32_events; - __u32 sync_range_flags; - __u32 msg_flags; - __u32 timeout_flags; - __u32 accept_flags; - __u32 cancel_flags; - __u32 open_flags; - __u32 statx_flags; - __u32 fadvise_advice; - __u32 splice_flags; - __u32 rename_flags; - __u32 unlink_flags; - __u32 hardlink_flags; - __u32 xattr_flags; - __u32 msg_ring_flags; - __u32 uring_cmd_flags; - __u32 waitid_flags; - __u32 futex_flags; - __u32 install_fd_flags; - __u32 nop_flags; - __u32 pipe_flags; - }; - __u64 user_data; - union { - __u16 buf_index; - __u16 buf_group; - }; - __u16 personality; - union { - __s32 splice_fd_in; - __u32 file_index; - __u32 zcrx_ifq_idx; - __u32 optlen; - struct { - __u16 addr_len; - __u16 __pad3[1]; - }; - struct { - __u8 write_stream; - __u8 __pad4[3]; - }; - }; - union { - struct { - __u64 addr3; - __u64 __pad2[1]; - }; - struct { - __u64 attr_ptr; - __u64 attr_type_mask; - }; - __u64 optval; - __u8 cmd[0]; - }; -}; - -enum io_uring_sqe_flags_bit { - IOSQE_FIXED_FILE_BIT = 0, - IOSQE_IO_DRAIN_BIT = 1, - IOSQE_IO_LINK_BIT = 2, - IOSQE_IO_HARDLINK_BIT = 3, - IOSQE_ASYNC_BIT = 4, - IOSQE_BUFFER_SELECT_BIT = 5, - IOSQE_CQE_SKIP_SUCCESS_BIT = 6, -}; - -enum io_uring_op { - IORING_OP_NOP = 0, - IORING_OP_READV = 1, - IORING_OP_WRITEV = 2, - IORING_OP_FSYNC = 3, - IORING_OP_READ_FIXED = 4, - IORING_OP_WRITE_FIXED = 5, - IORING_OP_POLL_ADD = 6, - IORING_OP_POLL_REMOVE = 7, - IORING_OP_SYNC_FILE_RANGE = 8, - IORING_OP_SENDMSG = 9, - IORING_OP_RECVMSG = 10, - IORING_OP_TIMEOUT = 11, - IORING_OP_TIMEOUT_REMOVE = 12, - IORING_OP_ACCEPT = 13, - IORING_OP_ASYNC_CANCEL = 14, - IORING_OP_LINK_TIMEOUT = 15, - IORING_OP_CONNECT = 16, - IORING_OP_FALLOCATE = 17, - IORING_OP_OPENAT = 18, - IORING_OP_CLOSE = 19, - IORING_OP_FILES_UPDATE = 20, - IORING_OP_STATX = 21, - IORING_OP_READ = 22, - IORING_OP_WRITE = 23, - IORING_OP_FADVISE = 24, - IORING_OP_MADVISE = 25, - IORING_OP_SEND = 26, - IORING_OP_RECV = 27, - IORING_OP_OPENAT2 = 28, - IORING_OP_EPOLL_CTL = 29, - IORING_OP_SPLICE = 30, - IORING_OP_PROVIDE_BUFFERS = 31, - IORING_OP_REMOVE_BUFFERS = 32, - IORING_OP_TEE = 33, - IORING_OP_SHUTDOWN = 34, - IORING_OP_RENAMEAT = 35, - IORING_OP_UNLINKAT = 36, - IORING_OP_MKDIRAT = 37, - IORING_OP_SYMLINKAT = 38, - IORING_OP_LINKAT = 39, - IORING_OP_MSG_RING = 40, - IORING_OP_FSETXATTR = 41, - IORING_OP_SETXATTR = 42, - IORING_OP_FGETXATTR = 43, - IORING_OP_GETXATTR = 44, - IORING_OP_SOCKET = 45, - IORING_OP_URING_CMD = 46, - IORING_OP_SEND_ZC = 47, - IORING_OP_SENDMSG_ZC = 48, - IORING_OP_READ_MULTISHOT = 49, - IORING_OP_WAITID = 50, - IORING_OP_FUTEX_WAIT = 51, - IORING_OP_FUTEX_WAKE = 52, - IORING_OP_FUTEX_WAITV = 53, - IORING_OP_FIXED_FD_INSTALL = 54, - IORING_OP_FTRUNCATE = 55, - IORING_OP_BIND = 56, - IORING_OP_LISTEN = 57, - IORING_OP_RECV_ZC = 58, - IORING_OP_EPOLL_WAIT = 59, - IORING_OP_READV_FIXED = 60, - IORING_OP_WRITEV_FIXED = 61, - IORING_OP_PIPE = 62, - IORING_OP_LAST = 63, -}; - -struct io_uring_cqe { - __u64 user_data; - __s32 res; - __u32 flags; - __u64 big_cqe[0]; -}; - -enum io_uring_register_op { - IORING_REGISTER_BUFFERS = 0, - IORING_UNREGISTER_BUFFERS = 1, - IORING_REGISTER_FILES = 2, - IORING_UNREGISTER_FILES = 3, - IORING_REGISTER_EVENTFD = 4, - IORING_UNREGISTER_EVENTFD = 5, - IORING_REGISTER_FILES_UPDATE = 6, - IORING_REGISTER_EVENTFD_ASYNC = 7, - IORING_REGISTER_PROBE = 8, - IORING_REGISTER_PERSONALITY = 9, - IORING_UNREGISTER_PERSONALITY = 10, - IORING_REGISTER_RESTRICTIONS = 11, - IORING_REGISTER_ENABLE_RINGS = 12, - IORING_REGISTER_FILES2 = 13, - IORING_REGISTER_FILES_UPDATE2 = 14, - IORING_REGISTER_BUFFERS2 = 15, - IORING_REGISTER_BUFFERS_UPDATE = 16, - IORING_REGISTER_IOWQ_AFF = 17, - IORING_UNREGISTER_IOWQ_AFF = 18, - IORING_REGISTER_IOWQ_MAX_WORKERS = 19, - IORING_REGISTER_RING_FDS = 20, - IORING_UNREGISTER_RING_FDS = 21, - IORING_REGISTER_PBUF_RING = 22, - IORING_UNREGISTER_PBUF_RING = 23, - IORING_REGISTER_SYNC_CANCEL = 24, - IORING_REGISTER_FILE_ALLOC_RANGE = 25, - IORING_REGISTER_PBUF_STATUS = 26, - IORING_REGISTER_NAPI = 27, - IORING_UNREGISTER_NAPI = 28, - IORING_REGISTER_CLOCK = 29, - IORING_REGISTER_CLONE_BUFFERS = 30, - IORING_REGISTER_SEND_MSG_RING = 31, - IORING_REGISTER_ZCRX_IFQ = 32, - IORING_REGISTER_RESIZE_RINGS = 33, - IORING_REGISTER_MEM_REGION = 34, - IORING_REGISTER_LAST = 35, - IORING_REGISTER_USE_REGISTERED_RING = 2147483648, -}; - -struct io_wq_work_node { - struct io_wq_work_node *next; -}; - -struct io_wq_work_list { - struct io_wq_work_node *first; - struct io_wq_work_node *last; -}; - -struct io_wq_work { - struct io_wq_work_node list; - atomic_t flags; - int cancel_seq; -}; - -struct io_rsrc_node; - -struct io_rsrc_data { - unsigned int nr; - struct io_rsrc_node **nodes; -}; - -struct io_file_table { - struct io_rsrc_data data; - long unsigned int *bitmap; - unsigned int alloc_hint; -}; - -struct io_hash_bucket { - struct hlist_head list; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct io_hash_table { - struct io_hash_bucket *hbs; - unsigned int hash_bits; -}; - -struct io_mapped_region { - struct page **pages; - void *ptr; - unsigned int nr_pages; - unsigned int flags; -}; - -struct io_alloc_cache { - void **entries; - unsigned int nr_cached; - unsigned int max_cached; - unsigned int elem_size; - unsigned int init_clear; -}; - -struct io_kiocb; - -struct io_submit_link { - struct io_kiocb *head; - struct io_kiocb *last; -}; - -struct io_submit_state { - struct io_wq_work_node free_list; - struct io_wq_work_list compl_reqs; - struct io_submit_link link; - bool plug_started; - bool need_plug; - bool cq_flush; - short unsigned int submit_nr; - struct blk_plug plug; -}; - -struct io_restriction { - long unsigned int register_op[1]; - long unsigned int sqe_op[1]; - u8 sqe_flags_allowed; - u8 sqe_flags_required; - bool registered; -}; - -struct io_rings; - -struct io_ev_fd; - -struct io_sq_data; - -struct io_wq_hash; - -struct io_ring_ctx { - struct { - unsigned int flags; - unsigned int drain_next: 1; - unsigned int restricted: 1; - unsigned int off_timeout_used: 1; - unsigned int drain_active: 1; - unsigned int has_evfd: 1; - unsigned int task_complete: 1; - unsigned int lockless_cq: 1; - unsigned int syscall_iopoll: 1; - unsigned int poll_activated: 1; - unsigned int drain_disabled: 1; - unsigned int compat: 1; - unsigned int iowq_limits_set: 1; - struct task_struct *submitter_task; - struct io_rings *rings; - struct percpu_ref refs; - clockid_t clockid; - enum tk_offsets clock_offset; - enum task_work_notify_mode notify_method; - unsigned int sq_thread_idle; - long: 64; - }; - struct { - struct mutex uring_lock; - u32 *sq_array; - struct io_uring_sqe *sq_sqes; - unsigned int cached_sq_head; - unsigned int sq_entries; - atomic_t cancel_seq; - bool poll_multi_queue; - struct io_wq_work_list iopoll_list; - struct io_file_table file_table; - struct io_rsrc_data buf_table; - struct io_alloc_cache node_cache; - struct io_alloc_cache imu_cache; - struct io_submit_state submit_state; - struct xarray io_bl_xa; - struct io_hash_table cancel_table; - struct io_alloc_cache apoll_cache; - struct io_alloc_cache netmsg_cache; - struct io_alloc_cache rw_cache; - struct io_alloc_cache cmd_cache; - struct hlist_head cancelable_uring_cmd; - u64 hybrid_poll_time; - long: 64; - long: 64; - }; - struct { - struct io_uring_cqe *cqe_cached; - struct io_uring_cqe *cqe_sentinel; - unsigned int cached_cq_tail; - unsigned int cq_entries; - struct io_ev_fd *io_ev_fd; - void *cq_wait_arg; - size_t cq_wait_size; - long: 64; - long: 64; - }; - struct { - struct llist_head work_llist; - struct llist_head retry_llist; - long unsigned int check_cq; - atomic_t cq_wait_nr; - atomic_t cq_timeouts; - struct wait_queue_head cq_wait; - long: 64; - }; - struct { - raw_spinlock_t timeout_lock; - struct list_head timeout_list; - struct list_head ltimeout_list; - unsigned int cq_last_tm_flush; - long: 64; - long: 64; - }; - spinlock_t completion_lock; - struct list_head cq_overflow_list; - struct hlist_head waitid_list; - struct hlist_head futex_list; - struct io_alloc_cache futex_cache; - const struct cred *sq_creds; - struct io_sq_data *sq_data; - struct wait_queue_head sqo_sq_wait; - struct list_head sqd_list; - unsigned int file_alloc_start; - unsigned int file_alloc_end; - struct wait_queue_head poll_wq; - struct io_restriction restrictions; - struct xarray zcrx_ctxs; - u32 pers_next; - struct xarray personalities; - struct io_wq_hash *hash_map; - struct user_struct *user; - struct mm_struct *mm_account; - struct llist_head fallback_llist; - struct delayed_work fallback_work; - struct work_struct exit_work; - struct list_head tctx_list; - struct completion ref_comp; - u32 iowq_limits[2]; - struct callback_head poll_wq_task_work; - struct list_head defer_list; - unsigned int nr_drained; - struct list_head napi_list; - spinlock_t napi_lock; - ktime_t napi_busy_poll_dt; - bool napi_prefer_busy_poll; - u8 napi_track_mode; - struct hlist_head napi_ht[16]; - unsigned int evfd_last_cq_tail; - unsigned int nr_req_allocated; - struct mutex mmap_lock; - struct io_mapped_region sq_region; - struct io_mapped_region ring_region; - struct io_mapped_region param_region; - long: 64; - long: 64; - long: 64; -}; - -struct io_uring { - u32 head; - u32 tail; -}; - -struct io_rings { - struct io_uring sq; - struct io_uring cq; - u32 sq_ring_mask; - u32 cq_ring_mask; - u32 sq_ring_entries; - u32 cq_ring_entries; - u32 sq_dropped; - atomic_t sq_flags; - u32 cq_flags; - u32 cq_overflow; - long: 64; - long: 64; - struct io_uring_cqe cqes[0]; -}; - -struct io_cmd_data { - struct file *file; - __u8 data[56]; -}; - -typedef u64 io_req_flags_t; - -struct io_cqe { - __u64 user_data; - __s32 res; - union { - __u32 flags; - int fd; - }; -}; - -struct io_tw_state; - -typedef struct io_tw_state io_tw_token_t; - -typedef void (*io_req_tw_func_t)(struct io_kiocb *, io_tw_token_t); - -struct io_task_work { - struct llist_node node; - io_req_tw_func_t func; -}; - -struct io_big_cqe { - u64 extra1; - u64 extra2; -}; - -struct io_buffer; - -struct io_buffer_list; - -struct async_poll; - -struct io_kiocb { - union { - struct file *file; - struct io_cmd_data cmd; - }; - u8 opcode; - u8 iopoll_completed; - u16 buf_index; - unsigned int nr_tw; - io_req_flags_t flags; - struct io_cqe cqe; - struct io_ring_ctx *ctx; - struct io_uring_task *tctx; - union { - struct io_buffer *kbuf; - struct io_buffer_list *buf_list; - struct io_rsrc_node *buf_node; - }; - union { - struct io_wq_work_node comp_list; - __poll_t apoll_events; - }; - struct io_rsrc_node *file_node; - atomic_t refs; - bool cancel_seq_set; - struct io_task_work io_task_work; - union { - struct hlist_node hash_node; - u64 iopoll_start; - struct callback_head callback_head; - }; - struct async_poll *apoll; - void *async_data; - atomic_t poll_refs; - struct io_kiocb *link; - const struct cred *creds; - struct io_wq_work work; - struct io_big_cqe big_cqe; -}; - -struct io_tw_state {}; - -enum { - REQ_F_FIXED_FILE_BIT = 0, - REQ_F_IO_DRAIN_BIT = 1, - REQ_F_LINK_BIT = 2, - REQ_F_HARDLINK_BIT = 3, - REQ_F_FORCE_ASYNC_BIT = 4, - REQ_F_BUFFER_SELECT_BIT = 5, - REQ_F_CQE_SKIP_BIT = 6, - REQ_F_FAIL_BIT = 8, - REQ_F_INFLIGHT_BIT = 9, - REQ_F_CUR_POS_BIT = 10, - REQ_F_NOWAIT_BIT = 11, - REQ_F_LINK_TIMEOUT_BIT = 12, - REQ_F_NEED_CLEANUP_BIT = 13, - REQ_F_POLLED_BIT = 14, - REQ_F_HYBRID_IOPOLL_STATE_BIT = 15, - REQ_F_BUFFER_SELECTED_BIT = 16, - REQ_F_BUFFER_RING_BIT = 17, - REQ_F_REISSUE_BIT = 18, - REQ_F_CREDS_BIT = 19, - REQ_F_REFCOUNT_BIT = 20, - REQ_F_ARM_LTIMEOUT_BIT = 21, - REQ_F_ASYNC_DATA_BIT = 22, - REQ_F_SKIP_LINK_CQES_BIT = 23, - REQ_F_SINGLE_POLL_BIT = 24, - REQ_F_DOUBLE_POLL_BIT = 25, - REQ_F_MULTISHOT_BIT = 26, - REQ_F_APOLL_MULTISHOT_BIT = 27, - REQ_F_CLEAR_POLLIN_BIT = 28, - REQ_F_SUPPORT_NOWAIT_BIT = 29, - REQ_F_ISREG_BIT = 30, - REQ_F_POLL_NO_LAZY_BIT = 31, - REQ_F_CAN_POLL_BIT = 32, - REQ_F_BL_EMPTY_BIT = 33, - REQ_F_BL_NO_RECYCLE_BIT = 34, - REQ_F_BUFFERS_COMMIT_BIT = 35, - REQ_F_BUF_NODE_BIT = 36, - REQ_F_HAS_METADATA_BIT = 37, - REQ_F_IMPORT_BUFFER_BIT = 38, - REQ_F_SQE_COPIED_BIT = 39, - __REQ_F_LAST_BIT = 40, -}; - -enum { - DIO_SHOULD_DIRTY = 1, - DIO_IS_SYNC = 2, -}; - -struct blkdev_dio { - union { - struct kiocb *iocb; - struct task_struct *waiter; - }; - size_t size; - atomic_t ref; - unsigned int flags; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct bio bio; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum kobject_action { - KOBJ_ADD = 0, - KOBJ_REMOVE = 1, - KOBJ_CHANGE = 2, - KOBJ_MOVE = 3, - KOBJ_ONLINE = 4, - KOBJ_OFFLINE = 5, - KOBJ_BIND = 6, - KOBJ_UNBIND = 7, -}; - -struct blkg_iostat { - u64 bytes[3]; - u64 ios[3]; -}; - -struct blkg_iostat_set { - struct u64_stats_sync sync; - struct blkcg_gq *blkg; - struct llist_node lnode; - int lqueued; - struct blkg_iostat cur; - struct blkg_iostat last; -}; - -struct blkcg; - -struct blkg_policy_data; - -struct blkcg_gq { - struct request_queue *q; - struct list_head q_node; - struct hlist_node blkcg_node; - struct blkcg *blkcg; - struct blkcg_gq *parent; - struct percpu_ref refcnt; - bool online; - struct blkg_iostat_set *iostat_cpu; - struct blkg_iostat_set iostat; - struct blkg_policy_data *pd[6]; - spinlock_t async_bio_lock; - struct bio_list async_bios; - union { - struct work_struct async_bio_work; - struct work_struct free_work; - }; - atomic_t use_delay; - atomic64_t delay_nsec; - atomic64_t delay_start; - u64 last_delay; - int last_use; - struct callback_head callback_head; -}; - -typedef __u32 blk_mq_req_flags_t; - -struct elevator_type; - -struct elevator_tags; - -struct elevator_queue { - struct elevator_type *type; - struct elevator_tags *et; - void *elevator_data; - struct kobject kobj; - struct mutex sysfs_lock; - long unsigned int flags; - struct hlist_head hash[64]; -}; - -struct blk_mq_ctxs; - -struct blk_mq_ctx { - struct { - spinlock_t lock; - struct list_head rq_lists[3]; - long: 64; - }; - unsigned int cpu; - short unsigned int index_hw[3]; - struct blk_mq_hw_ctx *hctxs[3]; - struct request_queue *queue; - struct blk_mq_ctxs *ctxs; - struct kobject kobj; - long: 64; -}; - -enum rq_qos_id { - RQ_QOS_WBT = 0, - RQ_QOS_LATENCY = 1, - RQ_QOS_COST = 2, -}; - -struct rq_qos_ops; - -struct rq_qos { - const struct rq_qos_ops *ops; - struct gendisk *disk; - enum rq_qos_id id; - struct rq_qos *next; - struct dentry *debugfs_dir; -}; - -struct blk_trace { - int trace_state; - struct rchan *rchan; - long unsigned int *sequence; - unsigned char *msg_data; - u16 act_mask; - u64 start_lba; - u64 end_lba; - u32 pid; - u32 dev; - struct dentry *dir; - struct list_head running_list; - atomic_t dropped; -}; - -enum { - QUEUE_FLAG_DYING = 0, - QUEUE_FLAG_NOMERGES = 1, - QUEUE_FLAG_SAME_COMP = 2, - QUEUE_FLAG_FAIL_IO = 3, - QUEUE_FLAG_NOXMERGES = 4, - QUEUE_FLAG_SAME_FORCE = 5, - QUEUE_FLAG_INIT_DONE = 6, - QUEUE_FLAG_STATS = 7, - QUEUE_FLAG_REGISTERED = 8, - QUEUE_FLAG_QUIESCED = 9, - QUEUE_FLAG_RQ_ALLOC_TIME = 10, - QUEUE_FLAG_HCTX_ACTIVE = 11, - QUEUE_FLAG_SQ_SCHED = 12, - QUEUE_FLAG_DISABLE_WBT_DEF = 13, - QUEUE_FLAG_NO_ELV_SWITCH = 14, - QUEUE_FLAG_QOS_ENABLED = 15, - QUEUE_FLAG_MAX = 16, -}; - -enum hctx_type { - HCTX_TYPE_DEFAULT = 0, - HCTX_TYPE_READ = 1, - HCTX_TYPE_POLL = 2, - HCTX_MAX_TYPES = 3, -}; - -enum { - BLK_MQ_F_TAG_QUEUE_SHARED = 2, - BLK_MQ_F_STACKING = 4, - BLK_MQ_F_TAG_HCTX_SHARED = 8, - BLK_MQ_F_BLOCKING = 16, - BLK_MQ_F_TAG_RR = 32, - BLK_MQ_F_NO_SCHED_BY_DEFAULT = 64, - BLK_MQ_F_MAX = 128, -}; - -enum blktrace_act { - __BLK_TA_QUEUE = 1, - __BLK_TA_BACKMERGE = 2, - __BLK_TA_FRONTMERGE = 3, - __BLK_TA_GETRQ = 4, - __BLK_TA_SLEEPRQ = 5, - __BLK_TA_REQUEUE = 6, - __BLK_TA_ISSUE = 7, - __BLK_TA_COMPLETE = 8, - __BLK_TA_PLUG = 9, - __BLK_TA_UNPLUG_IO = 10, - __BLK_TA_UNPLUG_TIMER = 11, - __BLK_TA_INSERT = 12, - __BLK_TA_SPLIT = 13, - __BLK_TA_BOUNCE = 14, - __BLK_TA_REMAP = 15, - __BLK_TA_ABORT = 16, - __BLK_TA_DRV_DATA = 17, - __BLK_TA_CGROUP = 256, -}; - -struct blk_mq_ctxs { - struct kobject kobj; - struct blk_mq_ctx *queue_ctx; -}; - -typedef unsigned int blk_insert_t; - -struct blk_mq_alloc_data { - struct request_queue *q; - blk_mq_req_flags_t flags; - unsigned int shallow_depth; - blk_opf_t cmd_flags; - req_flags_t rq_flags; - unsigned int nr_tags; - struct rq_list *cached_rqs; - struct blk_mq_ctx *ctx; - struct blk_mq_hw_ctx *hctx; -}; - -struct blk_mq_debugfs_attr { - const char *name; - umode_t mode; - int (*show)(void *, struct seq_file *); - ssize_t (*write)(void *, const char *, size_t, loff_t *); - const struct seq_operations *seq_ops; -}; - -enum elv_merge { - ELEVATOR_NO_MERGE = 0, - ELEVATOR_FRONT_MERGE = 1, - ELEVATOR_BACK_MERGE = 2, - ELEVATOR_DISCARD_MERGE = 3, -}; - -struct elevator_tags { - unsigned int nr_hw_queues; - unsigned int nr_requests; - struct blk_mq_tags *tags[0]; -}; - -struct elevator_mq_ops { - int (*init_sched)(struct request_queue *, struct elevator_queue *); - void (*exit_sched)(struct elevator_queue *); - int (*init_hctx)(struct blk_mq_hw_ctx *, unsigned int); - void (*exit_hctx)(struct blk_mq_hw_ctx *, unsigned int); - void (*depth_updated)(struct request_queue *); - void * (*alloc_sched_data)(struct request_queue *); - void (*free_sched_data)(void *); - bool (*allow_merge)(struct request_queue *, struct request *, struct bio *); - bool (*bio_merge)(struct request_queue *, struct bio *, unsigned int); - int (*request_merge)(struct request_queue *, struct request **, struct bio *); - void (*request_merged)(struct request_queue *, struct request *, enum elv_merge); - void (*requests_merged)(struct request_queue *, struct request *, struct request *); - void (*limit_depth)(blk_opf_t, struct blk_mq_alloc_data *); - void (*prepare_request)(struct request *); - void (*finish_request)(struct request *); - void (*insert_requests)(struct blk_mq_hw_ctx *, struct list_head *, blk_insert_t); - struct request * (*dispatch_request)(struct blk_mq_hw_ctx *); - bool (*has_work)(struct blk_mq_hw_ctx *); - void (*completed_request)(struct request *, u64); - void (*requeue_request)(struct request *); - struct request * (*former_request)(struct request_queue *, struct request *); - struct request * (*next_request)(struct request_queue *, struct request *); - void (*init_icq)(struct io_cq *); - void (*exit_icq)(struct io_cq *); -}; - -struct elv_fs_entry; - -struct elevator_type { - struct kmem_cache *icq_cache; - struct elevator_mq_ops ops; - size_t icq_size; - size_t icq_align; - const struct elv_fs_entry *elevator_attrs; - const char *elevator_name; - const char *elevator_alias; - struct module *elevator_owner; - const struct blk_mq_debugfs_attr *queue_debugfs_attrs; - const struct blk_mq_debugfs_attr *hctx_debugfs_attrs; - char icq_cache_name[22]; - struct list_head list; -}; - -struct elv_fs_entry { - struct attribute attr; - ssize_t (*show)(struct elevator_queue *, char *); - ssize_t (*store)(struct elevator_queue *, const char *, size_t); -}; - -struct rq_qos_ops { - void (*throttle)(struct rq_qos *, struct bio *); - void (*track)(struct rq_qos *, struct request *, struct bio *); - void (*merge)(struct rq_qos *, struct request *, struct bio *); - void (*issue)(struct rq_qos *, struct request *); - void (*requeue)(struct rq_qos *, struct request *); - void (*done)(struct rq_qos *, struct request *); - void (*done_bio)(struct rq_qos *, struct bio *); - void (*cleanup)(struct rq_qos *, struct bio *); - void (*queue_depth_changed)(struct rq_qos *); - void (*exit)(struct rq_qos *); - const struct blk_mq_debugfs_attr *debugfs_attrs; -}; - -enum blkg_iostat_type { - BLKG_IOSTAT_READ = 0, - BLKG_IOSTAT_WRITE = 1, - BLKG_IOSTAT_DISCARD = 2, - BLKG_IOSTAT_NR = 3, -}; - -struct blkcg_policy_data; - -struct blkcg { - struct cgroup_subsys_state css; - spinlock_t lock; - refcount_t online_pin; - atomic_t congestion_count; - struct xarray blkg_tree; - struct blkcg_gq *blkg_hint; - struct hlist_head blkg_list; - struct blkcg_policy_data *cpd[6]; - struct list_head all_blkcgs_node; - struct llist_head *lhead; - char fc_app_id[129]; - struct list_head cgwb_list; -}; - -struct blkg_policy_data { - struct blkcg_gq *blkg; - int plid; - bool online; -}; - -struct blkcg_policy_data { - struct blkcg *blkcg; - int plid; -}; - -enum blkg_rwstat_type { - BLKG_RWSTAT_READ = 0, - BLKG_RWSTAT_WRITE = 1, - BLKG_RWSTAT_SYNC = 2, - BLKG_RWSTAT_ASYNC = 3, - BLKG_RWSTAT_DISCARD = 4, - BLKG_RWSTAT_NR = 5, - BLKG_RWSTAT_TOTAL = 5, -}; - -struct queue_sysfs_entry { - struct attribute attr; - ssize_t (*show)(struct gendisk *, char *); - ssize_t (*show_limit)(struct gendisk *, char *); - ssize_t (*store)(struct gendisk *, const char *, size_t); - int (*store_limit)(struct gendisk *, const char *, size_t, struct queue_limits *); -}; - -enum { - ICQ_EXITED = 4, - ICQ_DESTROYED = 8, -}; - -enum rqf_flags { - __RQF_STARTED = 0, - __RQF_FLUSH_SEQ = 1, - __RQF_MIXED_MERGE = 2, - __RQF_DONTPREP = 3, - __RQF_SCHED_TAGS = 4, - __RQF_USE_SCHED = 5, - __RQF_FAILED = 6, - __RQF_QUIET = 7, - __RQF_IO_STAT = 8, - __RQF_PM = 9, - __RQF_HASHED = 10, - __RQF_STATS = 11, - __RQF_SPECIAL_PAYLOAD = 12, - __RQF_ZONE_WRITE_PLUGGING = 13, - __RQF_TIMED_OUT = 14, - __RQF_RESV = 15, - __RQF_BITS = 16, -}; - -typedef bool (*sb_for_each_fn)(struct sbitmap *, unsigned int, void *); - -struct sbq_wait { - struct sbitmap_queue *sbq; - struct wait_queue_entry wait; -}; - -typedef bool busy_tag_iter_fn(struct request *, void *); - -enum { - BLK_MQ_S_STOPPED = 0, - BLK_MQ_S_TAG_ACTIVE = 1, - BLK_MQ_S_SCHED_RESTART = 2, - BLK_MQ_S_INACTIVE = 3, - BLK_MQ_S_MAX = 4, -}; - -enum { - BLK_MQ_REQ_NOWAIT = 1, - BLK_MQ_REQ_RESERVED = 2, - BLK_MQ_REQ_PM = 4, -}; - -enum { - BLK_MQ_UNIQUE_TAG_BITS = 16, - BLK_MQ_UNIQUE_TAG_MASK = 65535, -}; - -enum { - BLK_MQ_NO_TAG = 4294967295, - BLK_MQ_TAG_MIN = 1, - BLK_MQ_TAG_MAX = 4294967294, -}; - -struct bt_iter_data { - struct blk_mq_hw_ctx *hctx; - struct request_queue *q; - busy_tag_iter_fn *fn; - void *data; - bool reserved; -}; - -struct bt_tags_iter_data { - struct blk_mq_tags *tags; - busy_tag_iter_fn *fn; - void *data; - unsigned int flags; -}; - -typedef int (*list_cmp_func_t)(void *, const struct list_head *, const struct list_head *); - -struct elevator_resources { - void *data; - struct elevator_tags *et; -}; - -struct elv_change_ctx { - const char *name; - bool no_uevent; - struct elevator_queue *old; - struct elevator_queue *new; - struct elevator_type *type; - struct elevator_resources res; -}; - -enum { - IOPRIO_WHO_PROCESS = 1, - IOPRIO_WHO_PGRP = 2, - IOPRIO_WHO_USER = 3, -}; - -struct RigidDiskBlock { - __be32 rdb_ID; - __be32 rdb_SummedLongs; - __be32 rdb_ChkSum; - __be32 rdb_HostID; - __be32 rdb_BlockBytes; - __be32 rdb_Flags; - __be32 rdb_BadBlockList; - __be32 rdb_PartitionList; - __be32 rdb_FileSysHeaderList; - __be32 rdb_DriveInit; - __be32 rdb_Reserved1[6]; - __be32 rdb_Cylinders; - __be32 rdb_Sectors; - __be32 rdb_Heads; - __be32 rdb_Interleave; - __be32 rdb_Park; - __be32 rdb_Reserved2[3]; - __be32 rdb_WritePreComp; - __be32 rdb_ReducedWrite; - __be32 rdb_StepRate; - __be32 rdb_Reserved3[5]; - __be32 rdb_RDBBlocksLo; - __be32 rdb_RDBBlocksHi; - __be32 rdb_LoCylinder; - __be32 rdb_HiCylinder; - __be32 rdb_CylBlocks; - __be32 rdb_AutoParkSeconds; - __be32 rdb_HighRDSKBlock; - __be32 rdb_Reserved4; - char rdb_DiskVendor[8]; - char rdb_DiskProduct[16]; - char rdb_DiskRevision[4]; - char rdb_ControllerVendor[8]; - char rdb_ControllerProduct[16]; - char rdb_ControllerRevision[4]; - __be32 rdb_Reserved5[10]; -}; - -struct PartitionBlock { - __be32 pb_ID; - __be32 pb_SummedLongs; - __be32 pb_ChkSum; - __be32 pb_HostID; - __be32 pb_Next; - __be32 pb_Flags; - __be32 pb_Reserved1[2]; - __be32 pb_DevFlags; - __u8 pb_DriveName[32]; - __be32 pb_Reserved2[15]; - __be32 pb_Environment[17]; - __be32 pb_EReserved[15]; -}; - -struct parsed_partitions { - struct gendisk *disk; - char name[32]; - struct { - sector_t from; - sector_t size; - int flags; - bool has_info; - struct partition_meta_info info; - } *parts; - int next; - int limit; - bool access_beyond_eod; - char *pp_buf; -}; - -typedef struct { - struct folio *v; -} Sector; - -struct cmdline_subpart { - char name[32]; - sector_t from; - sector_t size; - int flags; - struct cmdline_subpart *next_subpart; -}; - -struct cmdline_parts { - char name[32]; - unsigned int nr_subparts; - struct cmdline_subpart *subpart; - struct cmdline_parts *next_parts; -}; - -enum { - LINUX_RAID_PARTITION = 253, -}; - -struct sgi_volume { - s8 name[8]; - __be32 block_num; - __be32 num_bytes; -}; - -struct sgi_partition { - __be32 num_blocks; - __be32 first_block; - __be32 type; -}; - -struct sgi_disklabel { - __be32 magic_mushroom; - __be16 root_part_num; - __be16 swap_part_num; - s8 boot_file[16]; - u8 _unused0[48]; - struct sgi_volume volume[15]; - struct sgi_partition partitions[16]; - __be32 csum; - __be32 _unused1; -}; - -struct d_partition { - __le32 p_res; - u8 p_fstype; - u8 p_res2[3]; - __le32 p_offset; - __le32 p_size; -}; - -struct disklabel { - u8 d_reserved[270]; - struct d_partition d_partitions[2]; - u8 d_blank[208]; - __le16 d_magic; -} __attribute__((packed)); - -enum { - DISK_EVENT_MEDIA_CHANGE = 1, - DISK_EVENT_EJECT_REQUEST = 2, -}; - -enum { - DISK_EVENT_FLAG_POLL = 1, - DISK_EVENT_FLAG_UEVENT = 2, - DISK_EVENT_FLAG_BLOCK_ON_EXCL_WRITE = 4, -}; - -struct disk_events { - struct list_head node; - struct gendisk *disk; - spinlock_t lock; - struct mutex block_mutex; - int block; - unsigned int pending; - unsigned int clearing; - long int poll_msecs; - struct delayed_work dwork; -}; - -struct sg_io_v4 { - __s32 guard; - __u32 protocol; - __u32 subprotocol; - __u32 request_len; - __u64 request; - __u64 request_tag; - __u32 request_attr; - __u32 request_priority; - __u32 request_extra; - __u32 max_response_len; - __u64 response; - __u32 dout_iovec_count; - __u32 dout_xfer_len; - __u32 din_iovec_count; - __u32 din_xfer_len; - __u64 dout_xferp; - __u64 din_xferp; - __u32 timeout; - __u32 flags; - __u64 usr_ptr; - __u32 spare_in; - __u32 driver_status; - __u32 transport_status; - __u32 device_status; - __u32 retry_delay; - __u32 info; - __u32 duration; - __u32 response_len; - __s32 din_resid; - __s32 dout_resid; - __u64 generated_tag; - __u32 spare_out; - __u32 padding; -}; - -typedef int bsg_sg_io_fn(struct request_queue *, struct sg_io_v4 *, bool, unsigned int); - -struct rq_map_data { - struct page **pages; - long unsigned int offset; - short unsigned int page_order; - short unsigned int nr_entries; - bool null_mapped; - bool from_user; -}; - -struct bsg_job; - -typedef int bsg_job_fn(struct bsg_job *); - -struct bsg_buffer { - unsigned int payload_len; - int sg_cnt; - struct scatterlist *sg_list; -}; - -struct bsg_job { - struct device *dev; - struct kref kref; - unsigned int timeout; - void *request; - void *reply; - unsigned int request_len; - unsigned int reply_len; - struct bsg_buffer request_payload; - struct bsg_buffer reply_payload; - int result; - unsigned int reply_payload_rcv_len; - struct request *bidi_rq; - struct bio *bidi_bio; - void *dd_data; -}; - -typedef enum blk_eh_timer_return bsg_timeout_fn(struct request *); - -enum scsi_device_event { - SDEV_EVT_MEDIA_CHANGE = 1, - SDEV_EVT_INQUIRY_CHANGE_REPORTED = 2, - SDEV_EVT_CAPACITY_CHANGE_REPORTED = 3, - SDEV_EVT_SOFT_THRESHOLD_REACHED_REPORTED = 4, - SDEV_EVT_MODE_PARAMETER_CHANGE_REPORTED = 5, - SDEV_EVT_LUN_CHANGE_REPORTED = 6, - SDEV_EVT_ALUA_STATE_CHANGE_REPORTED = 7, - SDEV_EVT_POWER_ON_RESET_OCCURRED = 8, - SDEV_EVT_FIRST = 1, - SDEV_EVT_LAST = 8, - SDEV_EVT_MAXBITS = 9, -}; - -struct bsg_device; - -struct bsg_set { - struct blk_mq_tag_set tag_set; - struct bsg_device *bd; - bsg_job_fn *job_fn; - bsg_timeout_fn *timeout_fn; -}; - -struct throtl_service_queue { - struct throtl_service_queue *parent_sq; - struct list_head queued[2]; - unsigned int nr_queued_bps[2]; - unsigned int nr_queued_iops[2]; - struct rb_root_cached pending_tree; - unsigned int nr_pending; - long unsigned int first_pending_disptime; - struct timer_list pending_timer; -}; - -struct throtl_data { - struct throtl_service_queue service_queue; - struct request_queue *queue; - unsigned int nr_queued[2]; - unsigned int throtl_slice; - struct work_struct dispatch_work; - bool track_bio_latency; -}; - -enum blktrace_cat { - BLK_TC_READ = 1, - BLK_TC_WRITE = 2, - BLK_TC_FLUSH = 4, - BLK_TC_SYNC = 8, - BLK_TC_SYNCIO = 8, - BLK_TC_QUEUE = 16, - BLK_TC_REQUEUE = 32, - BLK_TC_ISSUE = 64, - BLK_TC_COMPLETE = 128, - BLK_TC_FS = 256, - BLK_TC_PC = 512, - BLK_TC_NOTIFY = 1024, - BLK_TC_AHEAD = 2048, - BLK_TC_META = 4096, - BLK_TC_DISCARD = 8192, - BLK_TC_DRV_DATA = 16384, - BLK_TC_FUA = 32768, - BLK_TC_END = 32768, -}; - -typedef struct blkcg_policy_data *blkcg_pol_alloc_cpd_fn(gfp_t); - -typedef void blkcg_pol_free_cpd_fn(struct blkcg_policy_data *); - -typedef struct blkg_policy_data *blkcg_pol_alloc_pd_fn(struct gendisk *, struct blkcg *, gfp_t); - -typedef void blkcg_pol_init_pd_fn(struct blkg_policy_data *); - -typedef void blkcg_pol_online_pd_fn(struct blkg_policy_data *); - -typedef void blkcg_pol_offline_pd_fn(struct blkg_policy_data *); - -typedef void blkcg_pol_free_pd_fn(struct blkg_policy_data *); - -typedef void blkcg_pol_reset_pd_stats_fn(struct blkg_policy_data *); - -typedef void blkcg_pol_stat_pd_fn(struct blkg_policy_data *, struct seq_file *); - -struct blkcg_policy { - int plid; - struct cftype *dfl_cftypes; - struct cftype *legacy_cftypes; - blkcg_pol_alloc_cpd_fn *cpd_alloc_fn; - blkcg_pol_free_cpd_fn *cpd_free_fn; - blkcg_pol_alloc_pd_fn *pd_alloc_fn; - blkcg_pol_init_pd_fn *pd_init_fn; - blkcg_pol_online_pd_fn *pd_online_fn; - blkcg_pol_offline_pd_fn *pd_offline_fn; - blkcg_pol_free_pd_fn *pd_free_fn; - blkcg_pol_reset_pd_stats_fn *pd_reset_stats_fn; - blkcg_pol_stat_pd_fn *pd_stat_fn; -}; - -struct blkg_conf_ctx { - char *input; - char *body; - struct block_device *bdev; - struct blkcg_gq *blkg; -}; - -struct blkg_rwstat { - struct percpu_counter cpu_cnt[5]; - atomic64_t aux_cnt[5]; -}; - -struct blkg_rwstat_sample { - u64 cnt[5]; -}; - -struct throtl_grp; - -struct throtl_qnode { - struct list_head node; - struct bio_list bios_bps; - struct bio_list bios_iops; - struct throtl_grp *tg; -}; - -struct throtl_grp { - struct blkg_policy_data pd; - struct rb_node rb_node; - struct throtl_data *td; - struct throtl_service_queue service_queue; - struct throtl_qnode qnode_on_self[2]; - struct throtl_qnode qnode_on_parent[2]; - long unsigned int disptime; - unsigned int flags; - bool has_rules_bps[2]; - bool has_rules_iops[2]; - uint64_t bps[2]; - unsigned int iops[2]; - int64_t bytes_disp[2]; - int io_disp[2]; - long unsigned int last_check_time; - long unsigned int slice_start[2]; - long unsigned int slice_end[2]; - struct blkg_rwstat stat_bytes; - struct blkg_rwstat stat_ios; -}; - -enum tg_state_flags { - THROTL_TG_PENDING = 1, - THROTL_TG_WAS_EMPTY = 2, - THROTL_TG_IOPS_WAS_EMPTY = 4, - THROTL_TG_CANCELING = 8, -}; - -typedef unsigned int iov_iter_extraction_t; - -enum bip_flags { - BIP_BLOCK_INTEGRITY = 1, - BIP_MAPPED_INTEGRITY = 2, - BIP_DISK_NOCHECK = 4, - BIP_IP_CHECKSUM = 8, - BIP_COPY_USER = 16, - BIP_CHECK_GUARD = 32, - BIP_CHECK_REFTAG = 64, - BIP_CHECK_APPTAG = 128, -}; - -struct bio_integrity_alloc { - struct bio_integrity_payload bip; - struct bio_vec bvecs[0]; -}; - -enum blk_integrity_flags { - BLK_INTEGRITY_NOVERIFY = 1, - BLK_INTEGRITY_NOGENERATE = 2, - BLK_INTEGRITY_DEVICE_CAPABLE = 4, - BLK_INTEGRITY_REF_TAG = 8, - BLK_INTEGRITY_STACKED = 16, -}; - -struct bio_integrity_data { - struct bio *bio; - struct bvec_iter saved_bio_iter; - struct work_struct work; - struct bio_integrity_payload bip; - struct bio_vec bvec; -}; - -struct show_busy_params { - struct seq_file *m; - struct blk_mq_hw_ctx *hctx; -}; - -struct blk_crypto_ll_ops { - int (*keyslot_program)(struct blk_crypto_profile *, const struct blk_crypto_key *, unsigned int); - int (*keyslot_evict)(struct blk_crypto_profile *, const struct blk_crypto_key *, unsigned int); - int (*derive_sw_secret)(struct blk_crypto_profile *, const u8 *, size_t, u8 *); - int (*import_key)(struct blk_crypto_profile *, const u8 *, size_t, u8 *); - int (*generate_key)(struct blk_crypto_profile *, u8 *); - int (*prepare_key)(struct blk_crypto_profile *, const u8 *, size_t, u8 *); -}; - -struct blk_crypto_profile { - struct blk_crypto_ll_ops ll_ops; - unsigned int max_dun_bytes_supported; - unsigned int key_types_supported; - unsigned int modes_supported[5]; - struct device *dev; - unsigned int num_slots; - struct rw_semaphore lock; - struct lock_class_key lockdep_key; - wait_queue_head_t idle_slots_wait_queue; - struct list_head idle_slots; - spinlock_t idle_slots_lock; - struct hlist_head *slot_hashtable; - unsigned int log_slot_ht_size; - struct blk_crypto_keyslot *slots; -}; - -struct blk_crypto_import_key_arg { - __u64 raw_key_ptr; - __u64 raw_key_size; - __u64 lt_key_ptr; - __u64 lt_key_size; - __u64 reserved[4]; -}; - -struct blk_crypto_generate_key_arg { - __u64 lt_key_ptr; - __u64 lt_key_size; - __u64 reserved[4]; -}; - -struct blk_crypto_prepare_key_arg { - __u64 lt_key_ptr; - __u64 lt_key_size; - __u64 eph_key_ptr; - __u64 eph_key_size; - __u64 reserved[4]; -}; - -struct blk_crypto_mode { - const char *name; - const char *cipher_str; - unsigned int keysize; - unsigned int security_strength; - unsigned int ivsize; -}; - -struct bd_holder_disk { - struct list_head list; - struct kobject *holder_dir; - int refcnt; -}; - -enum { - IORING_MEM_REGION_TYPE_USER = 1, -}; - -struct io_uring_region_desc { - __u64 user_addr; - __u64 size; - __u32 flags; - __u32 id; - __u64 mmap_offset; - __u64 __resv[4]; -}; - -struct io_uring_buf { - __u64 addr; - __u32 len; - __u16 bid; - __u16 resv; -}; - -struct io_uring_buf_ring { - union { - struct { - __u64 resv1; - __u32 resv2; - __u16 resv3; - __u16 tail; - }; - struct { - struct {} __empty_bufs; - struct io_uring_buf bufs[0]; - }; - }; -}; - -enum io_uring_register_pbuf_ring_flags { - IOU_PBUF_RING_MMAP = 1, - IOU_PBUF_RING_INC = 2, -}; - -struct io_uring_buf_reg { - __u64 ring_addr; - __u32 ring_entries; - __u16 bgid; - __u16 flags; - __u64 resv[3]; -}; - -struct io_uring_buf_status { - __u32 buf_group; - __u32 head; - __u32 resv[8]; -}; - -enum io_uring_cmd_flags { - IO_URING_F_COMPLETE_DEFER = 1, - IO_URING_F_UNLOCKED = 2, - IO_URING_F_MULTISHOT = 4, - IO_URING_F_IOWQ = 8, - IO_URING_F_INLINE = 16, - IO_URING_F_NONBLOCK = -2147483648, - IO_URING_F_SQE128 = 256, - IO_URING_F_CQE32 = 512, - IO_URING_F_IOPOLL = 1024, - IO_URING_F_CANCEL = 2048, - IO_URING_F_COMPAT = 4096, - IO_URING_F_TASK_DEAD = 8192, -}; - -struct io_mapped_ubuf; - -struct io_rsrc_node { - unsigned char type; - int refs; - u64 tag; - union { - long unsigned int file_ptr; - struct io_mapped_ubuf *buf; - }; -}; - -struct io_wq_hash { - refcount_t refs; - long unsigned int map; - struct wait_queue_head wait; -}; - -enum { - REQ_F_FIXED_FILE = 1ULL, - REQ_F_IO_DRAIN = 2ULL, - REQ_F_LINK = 4ULL, - REQ_F_HARDLINK = 8ULL, - REQ_F_FORCE_ASYNC = 16ULL, - REQ_F_BUFFER_SELECT = 32ULL, - REQ_F_CQE_SKIP = 64ULL, - REQ_F_FAIL = 256ULL, - REQ_F_INFLIGHT = 512ULL, - REQ_F_CUR_POS = 1024ULL, - REQ_F_NOWAIT = 2048ULL, - REQ_F_LINK_TIMEOUT = 4096ULL, - REQ_F_NEED_CLEANUP = 8192ULL, - REQ_F_POLLED = 16384ULL, - REQ_F_IOPOLL_STATE = 32768ULL, - REQ_F_BUFFER_SELECTED = 65536ULL, - REQ_F_BUFFER_RING = 131072ULL, - REQ_F_REISSUE = 262144ULL, - REQ_F_SUPPORT_NOWAIT = 536870912ULL, - REQ_F_ISREG = 1073741824ULL, - REQ_F_CREDS = 524288ULL, - REQ_F_REFCOUNT = 1048576ULL, - REQ_F_ARM_LTIMEOUT = 2097152ULL, - REQ_F_ASYNC_DATA = 4194304ULL, - REQ_F_SKIP_LINK_CQES = 8388608ULL, - REQ_F_SINGLE_POLL = 16777216ULL, - REQ_F_DOUBLE_POLL = 33554432ULL, - REQ_F_MULTISHOT = 67108864ULL, - REQ_F_APOLL_MULTISHOT = 134217728ULL, - REQ_F_CLEAR_POLLIN = 268435456ULL, - REQ_F_POLL_NO_LAZY = 2147483648ULL, - REQ_F_CAN_POLL = 4294967296ULL, - REQ_F_BL_EMPTY = 8589934592ULL, - REQ_F_BL_NO_RECYCLE = 17179869184ULL, - REQ_F_BUFFERS_COMMIT = 34359738368ULL, - REQ_F_BUF_NODE = 68719476736ULL, - REQ_F_HAS_METADATA = 137438953472ULL, - REQ_F_IMPORT_BUFFER = 274877906944ULL, - REQ_F_SQE_COPIED = 549755813888ULL, -}; - -struct io_buffer { - struct list_head list; - __u64 addr; - __u32 len; - __u16 bid; - __u16 bgid; -}; - -struct io_buffer_list { - union { - struct list_head buf_list; - struct io_uring_buf_ring *buf_ring; - }; - int nbufs; - __u16 bgid; - __u16 buf_nr_pages; - __u16 nr_entries; - __u16 head; - __u16 mask; - __u16 flags; - struct io_mapped_region region; -}; - -struct io_mapped_ubuf { - u64 ubuf; - unsigned int len; - unsigned int nr_bvecs; - unsigned int folio_shift; - refcount_t refs; - long unsigned int acct_pages; - void (*release)(void *); - void *priv; - bool is_kbuf; - u8 dir; - struct bio_vec bvec[0]; -}; - -enum { - IOU_COMPLETE = 0, - IOU_ISSUE_SKIP_COMPLETE = -529, - IOU_RETRY = -11, - IOU_REQUEUE = -3072, -}; - -enum { - IOBL_BUF_RING = 1, - IOBL_INC = 2, -}; - -enum { - KBUF_MODE_EXPAND = 1, - KBUF_MODE_FREE = 2, -}; - -struct buf_sel_arg { - struct iovec *iovs; - size_t out_len; - size_t max_len; - short unsigned int nr_iovs; - short unsigned int mode; - short unsigned int buf_group; - short unsigned int partial_map; -}; - -struct io_provide_buf { - struct file *file; - __u64 addr; - __u32 len; - __u32 bgid; - __u32 nbufs; - __u16 bid; -}; - -struct io_uring_rsrc_update { - __u32 offset; - __u32 resv; - __u64 data; -}; - -struct io_wq_data { - struct io_wq_hash *hash; - struct task_struct *task; -}; - -struct io_tctx_node { - struct list_head ctx_node; - struct task_struct *task; - struct io_ring_ctx *ctx; -}; - -struct io_uring_file_index_range { - __u32 off; - __u32 len; - __u64 resv; -}; - -enum { - IORING_RSRC_FILE = 0, - IORING_RSRC_BUFFER = 1, -}; - -struct io_ev_fd { - struct eventfd_ctx *cq_ev_fd; - unsigned int eventfd_async; - unsigned int last_cq_tail; - refcount_t refs; - atomic_t ops; - struct callback_head rcu; -}; - -enum { - IO_EVENTFD_OP_SIGNAL_BIT = 0, -}; - -struct iou_vec { - union { - struct iovec *iovec; - struct bio_vec *bvec; - }; - unsigned int nr; -}; - -struct io_poll { - struct file *file; - struct wait_queue_head *head; - __poll_t events; - int retries; - struct wait_queue_entry wait; -}; - -struct async_poll { - struct io_poll poll; - struct io_poll *double_poll; -}; - -struct io_issue_def { - unsigned int needs_file: 1; - unsigned int plug: 1; - unsigned int ioprio: 1; - unsigned int iopoll: 1; - unsigned int buffer_select: 1; - unsigned int hash_reg_file: 1; - unsigned int unbound_nonreg_file: 1; - unsigned int pollin: 1; - unsigned int pollout: 1; - unsigned int poll_exclusive: 1; - unsigned int audit_skip: 1; - unsigned int iopoll_queue: 1; - unsigned int vectored: 1; - short unsigned int async_size; - int (*issue)(struct io_kiocb *, unsigned int); - int (*prep)(struct io_kiocb *, const struct io_uring_sqe *); -}; - -struct io_async_cmd { - struct iou_vec vec; - struct io_uring_sqe sqes[2]; -}; - -enum { - IO_APOLL_OK = 0, - IO_APOLL_ABORTED = 1, - IO_APOLL_READY = 2, -}; - -struct io_nop { - struct file *file; - int result; - int fd; - unsigned int flags; -}; - -struct io_splice { - struct file *file_out; - loff_t off_out; - loff_t off_in; - u64 len; - int splice_fd_in; - unsigned int flags; - struct io_rsrc_node *rsrc_node; -}; - -struct io_statx { - struct file *file; - int dfd; - unsigned int mask; - unsigned int flags; - struct filename *filename; - struct statx *buffer; -}; - -struct siginfo { - union { - struct { - int si_signo; - int si_errno; - int si_code; - union __sifields _sifields; - }; - int _si_pad[32]; - }; -}; - -typedef s32 compat_timer_t; - -struct compat_siginfo { - int si_signo; - int si_errno; - int si_code; - union { - int _pad[29]; - struct { - compat_pid_t _pid; - __compat_uid32_t _uid; - } _kill; - struct { - compat_timer_t _tid; - int _overrun; - compat_sigval_t _sigval; - } _timer; - struct { - compat_pid_t _pid; - __compat_uid32_t _uid; - compat_sigval_t _sigval; - } _rt; - struct { - compat_pid_t _pid; - __compat_uid32_t _uid; - int _status; - compat_clock_t _utime; - compat_clock_t _stime; - } _sigchld; - struct { - compat_uptr_t _addr; - union { - int _trapno; - short int _addr_lsb; - struct { - char _dummy_bnd[4]; - compat_uptr_t _lower; - compat_uptr_t _upper; - } _addr_bnd; - struct { - char _dummy_pkey[4]; - u32 _pkey; - } _addr_pkey; - struct { - compat_ulong_t _data; - u32 _type; - u32 _flags; - } _perf; - }; - } _sigfault; - struct { - compat_long_t _band; - int _fd; - } _sigpoll; - struct { - compat_uptr_t _call_addr; - int _syscall; - unsigned int _arch; - } _sigsys; - } _sifields; -}; - -struct io_cancel_data { - struct io_ring_ctx *ctx; - union { - u64 data; - struct file *file; - }; - u8 opcode; - u32 flags; - int seq; -}; - -struct waitid_info { - pid_t pid; - uid_t uid; - int status; - int cause; -}; - -struct wait_opts { - enum pid_type wo_type; - int wo_flags; - struct pid *wo_pid; - struct waitid_info *wo_info; - int wo_stat; - struct rusage *wo_rusage; - wait_queue_entry_t child_wait; - int notask_error; -}; - -struct io_waitid_async { - struct io_kiocb *req; - struct wait_opts wo; -}; - -struct io_waitid { - struct file *file; - int which; - pid_t upid; - int options; - atomic_t refs; - struct wait_queue_head *head; - struct siginfo *infop; - struct waitid_info info; -}; - -struct io_imu_folio_data { - unsigned int nr_pages_head; - unsigned int nr_pages_mid; - unsigned int folio_shift; - unsigned int nr_folios; - long unsigned int first_folio_page_idx; -}; - -enum { - IO_REGION_F_VMAP = 1, - IO_REGION_F_USER_PROVIDED = 2, - IO_REGION_F_SINGLE_REF = 4, -}; - -enum io_wq_type { - IO_WQ_BOUND = 0, - IO_WQ_UNBOUND = 1, -}; - -struct io_wq_acct { - raw_spinlock_t workers_lock; - unsigned int nr_workers; - unsigned int max_workers; - atomic_t nr_running; - struct hlist_nulls_head free_list; - struct list_head all_list; - raw_spinlock_t lock; - struct io_wq_work_list work_list; - long unsigned int flags; -}; - -struct io_wq { - long unsigned int state; - struct io_wq_hash *hash; - atomic_t worker_refs; - struct completion worker_done; - struct hlist_node cpuhp_node; - struct task_struct *task; - struct io_wq_acct acct[2]; - struct wait_queue_entry wait; - struct io_wq_work *hash_tail[64]; - cpumask_var_t cpu_mask; -}; - -enum { - IO_WQ_WORK_CANCEL = 1, - IO_WQ_WORK_HASHED = 2, - IO_WQ_WORK_UNBOUND = 4, - IO_WQ_WORK_CONCURRENT = 16, - IO_WQ_HASH_SHIFT = 24, -}; - -enum io_wq_cancel { - IO_WQ_CANCEL_OK = 0, - IO_WQ_CANCEL_RUNNING = 1, - IO_WQ_CANCEL_NOTFOUND = 2, -}; - -typedef bool work_cancel_fn(struct io_wq_work *, void *); - -enum { - IO_WORKER_F_UP = 0, - IO_WORKER_F_RUNNING = 1, - IO_WORKER_F_FREE = 2, -}; - -enum { - IO_WQ_BIT_EXIT = 0, -}; - -enum { - IO_ACCT_STALLED_BIT = 0, -}; - -struct io_worker { - refcount_t ref; - long unsigned int flags; - struct hlist_nulls_node nulls_node; - struct list_head all_list; - struct task_struct *task; - struct io_wq *wq; - struct io_wq_acct *acct; - struct io_wq_work *cur_work; - raw_spinlock_t lock; - struct completion ref_done; - long unsigned int create_state; - struct callback_head create_work; - int init_retries; - union { - struct callback_head rcu; - struct delayed_work work; - }; -}; - -enum { - IO_WQ_ACCT_BOUND = 0, - IO_WQ_ACCT_UNBOUND = 1, - IO_WQ_ACCT_NR = 2, -}; - -struct io_cb_cancel_data { - work_cancel_fn *fn; - void *data; - int nr_running; - int nr_pending; - bool cancel_all; -}; - -struct online_data { - unsigned int cpu; - bool online; -}; - -enum io_uring_napi_op { - IO_URING_NAPI_REGISTER_OP = 0, - IO_URING_NAPI_STATIC_ADD_ID = 1, - IO_URING_NAPI_STATIC_DEL_ID = 2, -}; - -enum io_uring_napi_tracking_strategy { - IO_URING_NAPI_TRACKING_DYNAMIC = 0, - IO_URING_NAPI_TRACKING_STATIC = 1, - IO_URING_NAPI_TRACKING_INACTIVE = 255, -}; - -struct io_uring_napi { - __u32 busy_poll_to; - __u8 prefer_busy_poll; - __u8 opcode; - __u8 pad[2]; - __u32 op_param; - __u32 resv; -}; - -struct io_wait_queue { - struct wait_queue_entry wq; - struct io_ring_ctx *ctx; - unsigned int cq_tail; - unsigned int cq_min_tail; - unsigned int nr_timeouts; - int hit_timeout; - ktime_t min_timeout; - ktime_t timeout; - struct hrtimer t; - ktime_t napi_busy_poll_dt; - bool napi_prefer_busy_poll; -}; - -enum { - IO_CHECK_CQ_OVERFLOW_BIT = 0, - IO_CHECK_CQ_DROPPED_BIT = 1, -}; - -struct io_napi_entry { - unsigned int napi_id; - struct list_head list; - long unsigned int timeout; - struct hlist_node node; - struct callback_head rcu; -}; - -struct sg_append_table { - struct sg_table sgt; - struct scatterlist *prv; - unsigned int total_nents; -}; - -typedef struct scatterlist *sg_alloc_fn(unsigned int, gfp_t); - -typedef void sg_free_fn(struct scatterlist *, unsigned int); - -struct sg_page_iter { - struct scatterlist *sg; - unsigned int sg_pgoffset; - unsigned int __nents; - int __pg_advance; -}; - -struct sg_dma_page_iter { - struct sg_page_iter base; -}; - -struct sg_mapping_iter { - struct page *page; - void *addr; - size_t length; - size_t consumed; - struct sg_page_iter piter; - unsigned int __offset; - unsigned int __remaining; - unsigned int __flags; -}; - -struct lwq { - spinlock_t lock; - struct llist_node *ready; - struct llist_head new; -}; - -typedef __kernel_long_t __kernel_ptrdiff_t; - -typedef __kernel_ptrdiff_t ptrdiff_t; - -struct region { - unsigned int start; - unsigned int off; - unsigned int group_len; - unsigned int end; - unsigned int nbits; -}; - -typedef struct { - __le64 b; - __le64 a; -} le128; - -struct gf128mul_4k { - be128 t[256]; -}; - -struct gf128mul_64k { - struct gf128mul_4k *t[16]; -}; - -struct poly1305_key { - union { - u32 r[5]; - u64 r64[3]; - }; -}; - -struct poly1305_core_key { - struct poly1305_key key; - struct poly1305_key precomputed_s; -}; - -struct poly1305_state { - union { - u32 h[5]; - u64 h64[3]; - }; -}; - -struct poly1305_block_state { - struct poly1305_state h; - union { - struct poly1305_key opaque_r[11]; - struct poly1305_core_key core_r; - }; -}; - -struct poly1305_desc_ctx { - u8 buf[16]; - unsigned int buflen; - u32 s[4]; - struct poly1305_block_state state; -}; - -struct sha1_block_state { - u32 h[5]; -}; - -struct sha1_ctx { - struct sha1_block_state state; - u64 bytecount; - u8 buf[64]; -}; - -struct hmac_sha1_key { - struct sha1_block_state istate; - struct sha1_block_state ostate; -}; - -struct hmac_sha1_ctx { - struct sha1_ctx sha_ctx; - struct sha1_block_state ostate; -}; - -typedef long unsigned int mpi_limb_t; - -typedef mpi_limb_t *mpi_ptr_t; - -typedef int mpi_size_t; - -typedef mpi_limb_t UWtype; - -typedef unsigned int UHWtype; - -struct gcry_mpi { - int alloced; - int nlimbs; - int nbits; - int sign; - unsigned int flags; - mpi_limb_t *d; -}; - -typedef struct gcry_mpi *MPI; - -enum devm_ioremap_type { - DEVM_IOREMAP = 0, - DEVM_IOREMAP_UC = 1, - DEVM_IOREMAP_WC = 2, - DEVM_IOREMAP_NP = 3, -}; - -struct arch_io_reserve_memtype_wc_devres { - resource_size_t start; - resource_size_t size; -}; - -typedef unsigned int uInt; - -typedef struct { - unsigned char op; - unsigned char bits; - short unsigned int val; -} code; - -typedef enum { - CODES = 0, - LENS = 1, - DISTS = 2, -} codetype; - -typedef enum { - HEAD = 0, - FLAGS = 1, - TIME = 2, - OS = 3, - EXLEN = 4, - EXTRA = 5, - NAME = 6, - COMMENT = 7, - HCRC = 8, - DICTID = 9, - DICT = 10, - TYPE = 11, - TYPEDO = 12, - STORED = 13, - COPY = 14, - TABLE = 15, - LENLENS = 16, - CODELENS = 17, - LEN = 18, - LENEXT = 19, - DIST = 20, - DISTEXT = 21, - MATCH = 22, - LIT = 23, - CHECK = 24, - LENGTH = 25, - DONE = 26, - BAD = 27, - MEM = 28, - SYNC = 29, -} inflate_mode; - -struct inflate_state { - inflate_mode mode; - int last; - int wrap; - int havedict; - int flags; - unsigned int dmax; - long unsigned int check; - long unsigned int total; - unsigned int wbits; - unsigned int wsize; - unsigned int whave; - unsigned int write; - unsigned char *window; - long unsigned int hold; - unsigned int bits; - unsigned int length; - unsigned int offset; - unsigned int extra; - const code *lencode; - const code *distcode; - unsigned int lenbits; - unsigned int distbits; - unsigned int ncode; - unsigned int nlen; - unsigned int ndist; - unsigned int have; - code *next; - short unsigned int lens[320]; - short unsigned int work[288]; - code codes[2048]; -}; - -struct inflate_workspace { - struct inflate_state inflate_state; - unsigned char working_window[32768]; -}; - -typedef unsigned char uch; - -typedef short unsigned int ush; - -typedef long unsigned int ulg; - -struct ct_data_s { - union { - ush freq; - ush code; - } fc; - union { - ush dad; - ush len; - } dl; -}; - -typedef struct ct_data_s ct_data; - -struct static_tree_desc_s { - const ct_data *static_tree; - const int *extra_bits; - int extra_base; - int elems; - int max_length; -}; - -typedef struct static_tree_desc_s static_tree_desc; - -struct tree_desc_s { - ct_data *dyn_tree; - int max_code; - static_tree_desc *stat_desc; -}; - -typedef struct tree_desc_s tree_desc; - -typedef ush Pos; - -typedef unsigned int IPos; - -struct deflate_state { - z_streamp strm; - int status; - Byte *pending_buf; - ulg pending_buf_size; - Byte *pending_out; - int pending; - int noheader; - Byte data_type; - Byte method; - int last_flush; - uInt w_size; - uInt w_bits; - uInt w_mask; - Byte *window; - ulg window_size; - Pos *prev; - Pos *head; - uInt ins_h; - uInt hash_size; - uInt hash_bits; - uInt hash_mask; - uInt hash_shift; - long int block_start; - uInt match_length; - IPos prev_match; - int match_available; - uInt strstart; - uInt match_start; - uInt lookahead; - uInt prev_length; - uInt max_chain_length; - uInt max_lazy_match; - int level; - int strategy; - uInt good_match; - int nice_match; - struct ct_data_s dyn_ltree[573]; - struct ct_data_s dyn_dtree[61]; - struct ct_data_s bl_tree[39]; - struct tree_desc_s l_desc; - struct tree_desc_s d_desc; - struct tree_desc_s bl_desc; - ush bl_count[16]; - int heap[573]; - int heap_len; - int heap_max; - uch depth[573]; - uch *l_buf; - uInt lit_bufsize; - uInt last_lit; - ush *d_buf; - ulg opt_len; - ulg static_len; - ulg compressed_len; - uInt matches; - int last_eob_len; - ush bi_buf; - int bi_valid; -}; - -typedef struct deflate_state deflate_state; - -typedef size_t BitContainerType; - -typedef struct { - BitContainerType bitContainer; - unsigned int bitPos; - char *startPtr; - char *ptr; - char *endPtr; -} BIT_CStream_t; - -typedef unsigned int FSE_CTable; - -typedef struct { - ptrdiff_t value; - const void *stateTable; - const void *symbolTT; - unsigned int stateLog; -} FSE_CState_t; - -typedef struct { - int deltaFindState; - U32 deltaNbBits; -} FSE_symbolCompressionTransform; - -typedef s16 int16_t; - -typedef int16_t S16; - -typedef size_t HUF_CElt; - -enum { - HUF_flags_bmi2 = 1, - HUF_flags_optimalDepth = 2, - HUF_flags_preferRepeat = 4, - HUF_flags_suspectUncompressible = 8, - HUF_flags_disableAsm = 16, - HUF_flags_disableFast = 32, -}; - -typedef enum { - HUF_repeat_none = 0, - HUF_repeat_check = 1, - HUF_repeat_valid = 2, -} HUF_repeat; - -typedef struct { - BYTE tableLog; - BYTE maxSymbolValue; - BYTE unused[6]; -} HUF_CTableHeader; - -struct nodeElt_s { - U32 count; - U16 parent; - BYTE byte; - BYTE nbBits; -}; - -typedef struct nodeElt_s nodeElt; - -typedef struct { - FSE_CTable CTable[59]; - U32 scratchBuffer[41]; - unsigned int count[13]; - S16 norm[13]; -} HUF_CompressWeightsWksp; - -typedef struct { - HUF_CompressWeightsWksp wksp; - BYTE bitsToWeight[13]; - BYTE huffWeight[255]; -} HUF_WriteCTableWksp; - -typedef struct { - U16 base; - U16 curr; -} rankPos; - -typedef nodeElt huffNodeTable[512]; - -typedef struct { - huffNodeTable huffNodeTbl; - rankPos rankPosition[192]; -} HUF_buildCTable_wksp_tables; - -typedef struct { - size_t bitContainer[2]; - size_t bitPos[2]; - BYTE *startPtr; - BYTE *ptr; - BYTE *endPtr; -} HUF_CStream_t; - -typedef enum { - HUF_singleStream = 0, - HUF_fourStreams = 1, -} HUF_nbStreams_e; - -typedef struct { - unsigned int count[256]; - HUF_CElt CTable[257]; - union { - HUF_buildCTable_wksp_tables buildCTable_wksp; - HUF_WriteCTableWksp writeCTable_wksp; - U32 hist_wksp[1024]; - } wksps; -} HUF_compress_tables_t; - -typedef uint8_t U8; - -typedef enum { - ZSTD_fast = 1, - ZSTD_dfast = 2, - ZSTD_greedy = 3, - ZSTD_lazy = 4, - ZSTD_lazy2 = 5, - ZSTD_btlazy2 = 6, - ZSTD_btopt = 7, - ZSTD_btultra = 8, - ZSTD_btultra2 = 9, -} ZSTD_strategy; - -typedef struct { - unsigned int windowLog; - unsigned int chainLog; - unsigned int hashLog; - unsigned int searchLog; - unsigned int minMatch; - unsigned int targetLength; - ZSTD_strategy strategy; -} ZSTD_compressionParameters; - -typedef enum { - ZSTD_ps_auto = 0, - ZSTD_ps_enable = 1, - ZSTD_ps_disable = 2, -} ZSTD_ParamSwitch_e; - -typedef enum { - FSE_repeat_none = 0, - FSE_repeat_check = 1, - FSE_repeat_valid = 2, -} FSE_repeat; - -typedef enum { - ZSTD_no_overlap = 0, - ZSTD_overlap_src_before_dst = 1, -} ZSTD_overlap_e; - -typedef struct { - HUF_CElt CTable[257]; - HUF_repeat repeatMode; -} ZSTD_hufCTables_t; - -typedef struct { - FSE_CTable offcodeCTable[193]; - FSE_CTable matchlengthCTable[363]; - FSE_CTable litlengthCTable[329]; - FSE_repeat offcode_repeatMode; - FSE_repeat matchlength_repeatMode; - FSE_repeat litlength_repeatMode; -} ZSTD_fseCTables_t; - -typedef struct { - ZSTD_hufCTables_t huf; - ZSTD_fseCTables_t fse; -} ZSTD_entropyCTables_t; - -struct SeqDef_s { - U32 offBase; - U16 litLength; - U16 mlBase; -}; - -typedef struct SeqDef_s SeqDef; - -typedef enum { - ZSTD_llt_none = 0, - ZSTD_llt_literalLength = 1, - ZSTD_llt_matchLength = 2, -} ZSTD_longLengthType_e; - -typedef struct { - SeqDef *sequencesStart; - SeqDef *sequences; - BYTE *litStart; - BYTE *lit; - BYTE *llCode; - BYTE *mlCode; - BYTE *ofCode; - size_t maxNbSeq; - size_t maxNbLit; - ZSTD_longLengthType_e longLengthType; - U32 longLengthPos; -} SeqStore_t; - -typedef struct { - U32 off; - U32 len; -} ZSTD_match_t; - -typedef struct { - U32 offset; - U32 litLength; - U32 matchLength; -} rawSeq; - -typedef struct { - rawSeq *seq; - size_t pos; - size_t posInSequence; - size_t size; - size_t capacity; -} RawSeqStore_t; - -typedef struct { - int price; - U32 off; - U32 mlen; - U32 litlen; - U32 rep[3]; -} ZSTD_optimal_t; - -typedef enum { - zop_dynamic = 0, - zop_predef = 1, -} ZSTD_OptPrice_e; - -typedef struct { - unsigned int *litFreq; - unsigned int *litLengthFreq; - unsigned int *matchLengthFreq; - unsigned int *offCodeFreq; - ZSTD_match_t *matchTable; - ZSTD_optimal_t *priceTable; - U32 litSum; - U32 litLengthSum; - U32 matchLengthSum; - U32 offCodeSum; - U32 litSumBasePrice; - U32 litLengthSumBasePrice; - U32 matchLengthSumBasePrice; - U32 offCodeSumBasePrice; - ZSTD_OptPrice_e priceType; - const ZSTD_entropyCTables_t *symbolCosts; - ZSTD_ParamSwitch_e literalCompressionMode; -} optState_t; - -typedef struct { - const BYTE *nextSrc; - const BYTE *base; - const BYTE *dictBase; - U32 dictLimit; - U32 lowLimit; - U32 nbOverflowCorrections; -} ZSTD_window_t; - -struct ZSTD_MatchState_t; - -typedef struct ZSTD_MatchState_t ZSTD_MatchState_t; - -struct ZSTD_MatchState_t { - ZSTD_window_t window; - U32 loadedDictEnd; - U32 nextToUpdate; - U32 hashLog3; - U32 rowHashLog; - BYTE *tagTable; - U32 hashCache[8]; - U64 hashSalt; - U32 hashSaltEntropy; - U32 *hashTable; - U32 *hashTable3; - U32 *chainTable; - int forceNonContiguous; - int dedicatedDictSearch; - optState_t opt; - const ZSTD_MatchState_t *dictMatchState; - ZSTD_compressionParameters cParams; - const RawSeqStore_t *ldmSeqStore; - int prefetchCDictTables; - int lazySkipping; -}; - -typedef enum { - ZSTD_dtlm_fast = 0, - ZSTD_dtlm_full = 1, -} ZSTD_dictTableLoadMethod_e; - -typedef enum { - ZSTD_tfp_forCCtx = 0, - ZSTD_tfp_forCDict = 1, -} ZSTD_tableFillPurpose_e; - -typedef int64_t S64; - -typedef struct { - unsigned int events[1024]; - size_t nbEvents; -} Fingerprint; - -typedef struct { - Fingerprint pastEvents; - Fingerprint newEvents; -} FPStats; - -typedef void (*RecordEvents_f)(Fingerprint *, const void *, size_t); - -typedef enum { - ZSTD_reset_session_only = 1, - ZSTD_reset_parameters = 2, - ZSTD_reset_session_and_parameters = 3, -} ZSTD_ResetDirective; - -struct ZSTD_DDict_s { - void *dictBuffer; - const void *dictContent; - size_t dictSize; - ZSTD_entropyDTables_t entropy; - U32 dictID; - U32 entropyPresent; - ZSTD_customMem cMem; -}; - -typedef enum { - ZSTD_dct_auto = 0, - ZSTD_dct_rawContent = 1, - ZSTD_dct_fullDict = 2, -} ZSTD_dictContentType_e; - -typedef enum { - ZSTD_dlm_byCopy = 0, - ZSTD_dlm_byRef = 1, -} ZSTD_dictLoadMethod_e; - -typedef ZSTD_customMem zstd_custom_mem; - -typedef ZSTD_DCtx zstd_dctx; - -typedef ZSTD_DDict zstd_ddict; - -typedef struct { - BitContainerType bitContainer; - unsigned int bitsConsumed; - const char *ptr; - const char *start; - const char *limitPtr; -} BIT_DStream_t; - -typedef enum { - BIT_DStream_unfinished = 0, - BIT_DStream_endOfBuffer = 1, - BIT_DStream_completed = 2, - BIT_DStream_overflow = 3, -} BIT_DStream_status; - -typedef size_t (*HUF_DecompressUsingDTableFn)(void *, size_t, const void *, size_t, const HUF_DTable *); - -typedef struct { - BYTE maxTableLog; - BYTE tableType; - BYTE tableLog; - BYTE reserved; -} DTableDesc; - -typedef struct { - const BYTE *ip[4]; - BYTE *op[4]; - U64 bits[4]; - const void *dt; - const BYTE *ilowest; - BYTE *oend; - const BYTE *iend[4]; -} HUF_DecompressFastArgs; - -typedef void (*HUF_DecompressFastLoopFn)(HUF_DecompressFastArgs *); - -typedef struct { - BYTE nbBits; - BYTE byte; -} HUF_DEltX1; - -typedef struct { - U32 rankVal[13]; - U32 rankStart[13]; - U32 statsWksp[219]; - BYTE symbols[256]; - BYTE huffWeight[256]; -} HUF_ReadDTableX1_Workspace; - -typedef struct { - U16 sequence; - BYTE nbBits; - BYTE length; -} HUF_DEltX2; - -typedef struct { - BYTE symbol; -} sortedSymbol_t; - -typedef U32 rankValCol_t[13]; - -typedef struct { - U32 rankVal[156]; - U32 rankStats[13]; - U32 rankStart0[15]; - sortedSymbol_t sortedSymbol[256]; - BYTE weightList[256]; - U32 calleeWksp[219]; -} HUF_ReadDTableX2_Workspace; - -typedef struct { - U32 tableTime; - U32 decode256Time; -} algo_time_t; - -typedef ZSTD_ErrorCode ERR_enum; - -enum xz_mode { - XZ_SINGLE = 0, - XZ_PREALLOC = 1, - XZ_DYNALLOC = 2, -}; - -enum xz_ret { - XZ_OK = 0, - XZ_STREAM_END = 1, - XZ_UNSUPPORTED_CHECK = 2, - XZ_MEM_ERROR = 3, - XZ_MEMLIMIT_ERROR = 4, - XZ_FORMAT_ERROR = 5, - XZ_OPTIONS_ERROR = 6, - XZ_DATA_ERROR = 7, - XZ_BUF_ERROR = 8, -}; - -struct xz_buf { - const uint8_t *in; - size_t in_pos; - size_t in_size; - uint8_t *out; - size_t out_pos; - size_t out_size; -}; - -struct ei_entry { - struct list_head list; - long unsigned int start_addr; - long unsigned int end_addr; - int etype; - void *priv; -}; - -struct ddebug_class_param { - union { - long unsigned int *bits; - unsigned int *lvl; - }; - char flags[8]; - const struct ddebug_class_map *map; -}; - -enum netdev_reg_state { - NETREG_UNINITIALIZED = 0, - NETREG_REGISTERED = 1, - NETREG_UNREGISTERING = 2, - NETREG_UNREGISTERED = 3, - NETREG_RELEASED = 4, - NETREG_DUMMY = 5, -}; - -struct irq_poll; - -typedef int irq_poll_fn(struct irq_poll *, int); - -struct irq_poll { - struct list_head list; - long unsigned int state; - int weight; - irq_poll_fn *poll; -}; - -struct rdma_cgroup { - struct cgroup_subsys_state css; - struct list_head rpools; -}; - -struct rdmacg_device { - struct list_head dev_node; - struct list_head rpools; - char *name; -}; - -struct dim_sample { - ktime_t time; - u32 pkt_ctr; - u32 byte_ctr; - u16 event_ctr; - u32 comp_ctr; -}; - -struct dim_stats { - int ppms; - int bpms; - int epms; - int cpms; - int cpe_ratio; -}; - -struct dim { - u8 state; - struct dim_stats prev_stats; - struct dim_sample start_sample; - struct dim_sample measuring_sample; - struct work_struct work; - void *priv; - u8 profile_ix; - u8 mode; - u8 tune_state; - u8 steps_right; - u8 steps_left; - u8 tired; -}; - -enum rdma_nl_counter_mode { - RDMA_COUNTER_MODE_NONE = 0, - RDMA_COUNTER_MODE_AUTO = 1, - RDMA_COUNTER_MODE_MANUAL = 2, - RDMA_COUNTER_MODE_MAX = 3, -}; - -enum rdma_nl_counter_mask { - RDMA_COUNTER_MASK_QP_TYPE = 1, - RDMA_COUNTER_MASK_PID = 2, -}; - -enum rdma_nl_dev_type { - RDMA_DEVICE_TYPE_SMI = 1, -}; - -enum rdma_nl_name_assign_type { - RDMA_NAME_ASSIGN_TYPE_UNKNOWN = 0, - RDMA_NAME_ASSIGN_TYPE_USER = 1, -}; - -enum rdma_restrack_type { - RDMA_RESTRACK_PD = 0, - RDMA_RESTRACK_CQ = 1, - RDMA_RESTRACK_QP = 2, - RDMA_RESTRACK_CM_ID = 3, - RDMA_RESTRACK_MR = 4, - RDMA_RESTRACK_CTX = 5, - RDMA_RESTRACK_COUNTER = 6, - RDMA_RESTRACK_SRQ = 7, - RDMA_RESTRACK_DMAH = 8, - RDMA_RESTRACK_MAX = 9, -}; - -struct rdma_restrack_entry { - bool valid; - u8 no_track: 1; - struct kref kref; - struct completion comp; - struct task_struct *task; - const char *kern_name; - enum rdma_restrack_type type; - bool user; - u32 id; -}; - -struct rdma_link_ops { - struct list_head list; - const char *type; - int (*newlink)(const char *, struct net_device *); -}; - -struct auto_mode_param { - int qp_type; -}; - -struct rdma_counter_mode { - enum rdma_nl_counter_mode mode; - enum rdma_nl_counter_mask mask; - struct auto_mode_param param; - bool bind_opcnt; -}; - -struct rdma_hw_stats; - -struct rdma_port_counter { - struct rdma_counter_mode mode; - struct rdma_hw_stats *hstats; - unsigned int num_counters; - struct mutex lock; -}; - -struct rdma_stat_desc; - -struct rdma_hw_stats { - struct mutex lock; - long unsigned int timestamp; - long unsigned int lifespan; - const struct rdma_stat_desc *descs; - long unsigned int *is_disabled; - int num_counters; - u64 value[0]; -}; - -struct ib_device; - -struct rdma_counter { - struct rdma_restrack_entry res; - struct ib_device *device; - uint32_t id; - struct kref kref; - struct rdma_counter_mode mode; - struct mutex lock; - struct rdma_hw_stats *stats; - u32 port; -}; - -enum rdma_driver_id { - RDMA_DRIVER_UNKNOWN = 0, - RDMA_DRIVER_MLX5 = 1, - RDMA_DRIVER_MLX4 = 2, - RDMA_DRIVER_CXGB3 = 3, - RDMA_DRIVER_CXGB4 = 4, - RDMA_DRIVER_MTHCA = 5, - RDMA_DRIVER_BNXT_RE = 6, - RDMA_DRIVER_OCRDMA = 7, - RDMA_DRIVER_NES = 8, - RDMA_DRIVER_I40IW = 9, - RDMA_DRIVER_IRDMA = 9, - RDMA_DRIVER_VMW_PVRDMA = 10, - RDMA_DRIVER_QEDR = 11, - RDMA_DRIVER_HNS = 12, - RDMA_DRIVER_USNIC = 13, - RDMA_DRIVER_RXE = 14, - RDMA_DRIVER_HFI1 = 15, - RDMA_DRIVER_QIB = 16, - RDMA_DRIVER_EFA = 17, - RDMA_DRIVER_SIW = 18, - RDMA_DRIVER_ERDMA = 19, - RDMA_DRIVER_MANA = 20, -}; - -enum ib_cq_notify_flags { - IB_CQ_SOLICITED = 1, - IB_CQ_NEXT_COMP = 2, - IB_CQ_SOLICITED_MASK = 3, - IB_CQ_REPORT_MISSED_EVENTS = 4, -}; - -struct ib_mad; - -enum rdma_link_layer { - IB_LINK_LAYER_UNSPECIFIED = 0, - IB_LINK_LAYER_INFINIBAND = 1, - IB_LINK_LAYER_ETHERNET = 2, -}; - -enum rdma_netdev_t { - RDMA_NETDEV_OPA_VNIC = 0, - RDMA_NETDEV_IPOIB = 1, -}; - -enum ib_srq_attr_mask { - IB_SRQ_MAX_WR = 1, - IB_SRQ_LIMIT = 2, -}; - -struct uverbs_attr_bundle; - -struct ib_umem; - -enum ib_mr_type { - IB_MR_TYPE_MEM_REG = 0, - IB_MR_TYPE_SG_GAPS = 1, - IB_MR_TYPE_DM = 2, - IB_MR_TYPE_USER = 3, - IB_MR_TYPE_DMA = 4, - IB_MR_TYPE_INTEGRITY = 5, -}; - -enum ib_uverbs_advise_mr_advice { - IB_UVERBS_ADVISE_MR_ADVICE_PREFETCH = 0, - IB_UVERBS_ADVISE_MR_ADVICE_PREFETCH_WRITE = 1, - IB_UVERBS_ADVISE_MR_ADVICE_PREFETCH_NO_FAULT = 2, -}; - -struct rdma_cm_id; - -struct iw_cm_id; - -struct iw_cm_conn_param; - -struct ib_uverbs_file; - -struct ib_qp; - -struct ib_send_wr; - -struct ib_recv_wr; - -struct ib_cq; - -struct ib_wc; - -struct ib_srq; - -struct ib_grh; - -struct ib_device_attr; - -struct ib_udata; - -struct ib_device_modify; - -struct ib_port_attr; - -struct ib_port_modify; - -struct ib_port_immutable; - -struct rdma_netdev_alloc_params; - -union ib_gid; - -struct ib_gid_attr; - -struct ib_ucontext; - -struct rdma_user_mmap_entry; - -struct ib_pd; - -struct ib_ah; - -struct rdma_ah_init_attr; - -struct rdma_ah_attr; - -struct ib_srq_init_attr; - -struct ib_srq_attr; - -struct ib_qp_init_attr; - -struct ib_qp_attr; - -struct ib_cq_init_attr; - -struct ib_mr; - -struct ib_dmah; - -struct ib_sge; - -struct ib_mr_status; - -struct ib_mw; - -struct ib_xrcd; - -struct ib_flow; - -struct ib_flow_attr; - -struct ib_flow_action; - -struct ib_wq; - -struct ib_wq_init_attr; - -struct ib_wq_attr; - -struct ib_rwq_ind_table; - -struct ib_rwq_ind_table_init_attr; - -struct ib_dm; - -struct ib_dm_alloc_attr; - -struct ib_dm_mr_attr; - -struct ib_counters; - -struct ib_counters_read_attr; - -struct ib_device_ops { - struct module *owner; - enum rdma_driver_id driver_id; - u32 uverbs_abi_ver; - unsigned int uverbs_no_driver_id_binding: 1; - const struct attribute_group *device_group; - const struct attribute_group **port_groups; - int (*post_send)(struct ib_qp *, const struct ib_send_wr *, const struct ib_send_wr **); - int (*post_recv)(struct ib_qp *, const struct ib_recv_wr *, const struct ib_recv_wr **); - void (*drain_rq)(struct ib_qp *); - void (*drain_sq)(struct ib_qp *); - int (*poll_cq)(struct ib_cq *, int, struct ib_wc *); - int (*peek_cq)(struct ib_cq *, int); - int (*req_notify_cq)(struct ib_cq *, enum ib_cq_notify_flags); - int (*post_srq_recv)(struct ib_srq *, const struct ib_recv_wr *, const struct ib_recv_wr **); - int (*process_mad)(struct ib_device *, int, u32, const struct ib_wc *, const struct ib_grh *, const struct ib_mad *, struct ib_mad *, size_t *, u16 *); - int (*query_device)(struct ib_device *, struct ib_device_attr *, struct ib_udata *); - int (*modify_device)(struct ib_device *, int, struct ib_device_modify *); - void (*get_dev_fw_str)(struct ib_device *, char *); - const struct cpumask * (*get_vector_affinity)(struct ib_device *, int); - int (*query_port)(struct ib_device *, u32, struct ib_port_attr *); - int (*modify_port)(struct ib_device *, u32, int, struct ib_port_modify *); - int (*get_port_immutable)(struct ib_device *, u32, struct ib_port_immutable *); - enum rdma_link_layer (*get_link_layer)(struct ib_device *, u32); - struct net_device * (*get_netdev)(struct ib_device *, u32); - struct net_device * (*alloc_rdma_netdev)(struct ib_device *, u32, enum rdma_netdev_t, const char *, unsigned char, void (*)(struct net_device *)); - int (*rdma_netdev_get_params)(struct ib_device *, u32, enum rdma_netdev_t, struct rdma_netdev_alloc_params *); - int (*query_gid)(struct ib_device *, u32, int, union ib_gid *); - int (*add_gid)(const struct ib_gid_attr *, void **); - int (*del_gid)(const struct ib_gid_attr *, void **); - int (*query_pkey)(struct ib_device *, u32, u16, u16 *); - int (*alloc_ucontext)(struct ib_ucontext *, struct ib_udata *); - void (*dealloc_ucontext)(struct ib_ucontext *); - int (*mmap)(struct ib_ucontext *, struct vm_area_struct *); - void (*mmap_free)(struct rdma_user_mmap_entry *); - void (*disassociate_ucontext)(struct ib_ucontext *); - int (*alloc_pd)(struct ib_pd *, struct ib_udata *); - int (*dealloc_pd)(struct ib_pd *, struct ib_udata *); - int (*create_ah)(struct ib_ah *, struct rdma_ah_init_attr *, struct ib_udata *); - int (*create_user_ah)(struct ib_ah *, struct rdma_ah_init_attr *, struct ib_udata *); - int (*modify_ah)(struct ib_ah *, struct rdma_ah_attr *); - int (*query_ah)(struct ib_ah *, struct rdma_ah_attr *); - int (*destroy_ah)(struct ib_ah *, u32); - int (*create_srq)(struct ib_srq *, struct ib_srq_init_attr *, struct ib_udata *); - int (*modify_srq)(struct ib_srq *, struct ib_srq_attr *, enum ib_srq_attr_mask, struct ib_udata *); - int (*query_srq)(struct ib_srq *, struct ib_srq_attr *); - int (*destroy_srq)(struct ib_srq *, struct ib_udata *); - int (*create_qp)(struct ib_qp *, struct ib_qp_init_attr *, struct ib_udata *); - int (*modify_qp)(struct ib_qp *, struct ib_qp_attr *, int, struct ib_udata *); - int (*query_qp)(struct ib_qp *, struct ib_qp_attr *, int, struct ib_qp_init_attr *); - int (*destroy_qp)(struct ib_qp *, struct ib_udata *); - int (*create_cq)(struct ib_cq *, const struct ib_cq_init_attr *, struct uverbs_attr_bundle *); - int (*create_cq_umem)(struct ib_cq *, const struct ib_cq_init_attr *, struct ib_umem *, struct uverbs_attr_bundle *); - int (*modify_cq)(struct ib_cq *, u16, u16); - int (*destroy_cq)(struct ib_cq *, struct ib_udata *); - int (*resize_cq)(struct ib_cq *, int, struct ib_udata *); - int (*pre_destroy_cq)(struct ib_cq *); - void (*post_destroy_cq)(struct ib_cq *); - struct ib_mr * (*get_dma_mr)(struct ib_pd *, int); - struct ib_mr * (*reg_user_mr)(struct ib_pd *, u64, u64, u64, int, struct ib_dmah *, struct ib_udata *); - struct ib_mr * (*reg_user_mr_dmabuf)(struct ib_pd *, u64, u64, u64, int, int, struct ib_dmah *, struct uverbs_attr_bundle *); - struct ib_mr * (*rereg_user_mr)(struct ib_mr *, int, u64, u64, u64, int, struct ib_pd *, struct ib_udata *); - int (*dereg_mr)(struct ib_mr *, struct ib_udata *); - struct ib_mr * (*alloc_mr)(struct ib_pd *, enum ib_mr_type, u32); - struct ib_mr * (*alloc_mr_integrity)(struct ib_pd *, u32, u32); - int (*advise_mr)(struct ib_pd *, enum ib_uverbs_advise_mr_advice, u32, struct ib_sge *, u32, struct uverbs_attr_bundle *); - int (*map_mr_sg)(struct ib_mr *, struct scatterlist *, int, unsigned int *); - int (*check_mr_status)(struct ib_mr *, u32, struct ib_mr_status *); - int (*alloc_mw)(struct ib_mw *, struct ib_udata *); - int (*dealloc_mw)(struct ib_mw *); - int (*attach_mcast)(struct ib_qp *, union ib_gid *, u16); - int (*detach_mcast)(struct ib_qp *, union ib_gid *, u16); - int (*alloc_xrcd)(struct ib_xrcd *, struct ib_udata *); - int (*dealloc_xrcd)(struct ib_xrcd *, struct ib_udata *); - struct ib_flow * (*create_flow)(struct ib_qp *, struct ib_flow_attr *, struct ib_udata *); - int (*destroy_flow)(struct ib_flow *); - int (*destroy_flow_action)(struct ib_flow_action *); - int (*set_vf_link_state)(struct ib_device *, int, u32, int); - int (*get_vf_config)(struct ib_device *, int, u32, struct ifla_vf_info *); - int (*get_vf_stats)(struct ib_device *, int, u32, struct ifla_vf_stats *); - int (*get_vf_guid)(struct ib_device *, int, u32, struct ifla_vf_guid *, struct ifla_vf_guid *); - int (*set_vf_guid)(struct ib_device *, int, u32, u64, int); - struct ib_wq * (*create_wq)(struct ib_pd *, struct ib_wq_init_attr *, struct ib_udata *); - int (*destroy_wq)(struct ib_wq *, struct ib_udata *); - int (*modify_wq)(struct ib_wq *, struct ib_wq_attr *, u32, struct ib_udata *); - int (*create_rwq_ind_table)(struct ib_rwq_ind_table *, struct ib_rwq_ind_table_init_attr *, struct ib_udata *); - int (*destroy_rwq_ind_table)(struct ib_rwq_ind_table *); - struct ib_dm * (*alloc_dm)(struct ib_device *, struct ib_ucontext *, struct ib_dm_alloc_attr *, struct uverbs_attr_bundle *); - int (*dealloc_dm)(struct ib_dm *, struct uverbs_attr_bundle *); - int (*alloc_dmah)(struct ib_dmah *, struct uverbs_attr_bundle *); - int (*dealloc_dmah)(struct ib_dmah *, struct uverbs_attr_bundle *); - struct ib_mr * (*reg_dm_mr)(struct ib_pd *, struct ib_dm *, struct ib_dm_mr_attr *, struct uverbs_attr_bundle *); - int (*create_counters)(struct ib_counters *, struct uverbs_attr_bundle *); - int (*destroy_counters)(struct ib_counters *); - int (*read_counters)(struct ib_counters *, struct ib_counters_read_attr *, struct uverbs_attr_bundle *); - int (*map_mr_sg_pi)(struct ib_mr *, struct scatterlist *, int, unsigned int *, struct scatterlist *, int, unsigned int *); - struct rdma_hw_stats * (*alloc_hw_device_stats)(struct ib_device *); - struct rdma_hw_stats * (*alloc_hw_port_stats)(struct ib_device *, u32); - int (*get_hw_stats)(struct ib_device *, struct rdma_hw_stats *, u32, int); - int (*modify_hw_stat)(struct ib_device *, u32, unsigned int, bool); - int (*fill_res_mr_entry)(struct sk_buff *, struct ib_mr *); - int (*fill_res_mr_entry_raw)(struct sk_buff *, struct ib_mr *); - int (*fill_res_cq_entry)(struct sk_buff *, struct ib_cq *); - int (*fill_res_cq_entry_raw)(struct sk_buff *, struct ib_cq *); - int (*fill_res_qp_entry)(struct sk_buff *, struct ib_qp *); - int (*fill_res_qp_entry_raw)(struct sk_buff *, struct ib_qp *); - int (*fill_res_cm_id_entry)(struct sk_buff *, struct rdma_cm_id *); - int (*fill_res_srq_entry)(struct sk_buff *, struct ib_srq *); - int (*fill_res_srq_entry_raw)(struct sk_buff *, struct ib_srq *); - int (*enable_driver)(struct ib_device *); - void (*dealloc_driver)(struct ib_device *); - void (*iw_add_ref)(struct ib_qp *); - void (*iw_rem_ref)(struct ib_qp *); - struct ib_qp * (*iw_get_qp)(struct ib_device *, int); - int (*iw_connect)(struct iw_cm_id *, struct iw_cm_conn_param *); - int (*iw_accept)(struct iw_cm_id *, struct iw_cm_conn_param *); - int (*iw_reject)(struct iw_cm_id *, const void *, u8); - int (*iw_create_listen)(struct iw_cm_id *, int); - int (*iw_destroy_listen)(struct iw_cm_id *); - int (*counter_bind_qp)(struct rdma_counter *, struct ib_qp *, u32); - int (*counter_unbind_qp)(struct ib_qp *, u32); - int (*counter_dealloc)(struct rdma_counter *); - struct rdma_hw_stats * (*counter_alloc_stats)(struct rdma_counter *); - int (*counter_update_stats)(struct rdma_counter *); - void (*counter_init)(struct rdma_counter *); - int (*fill_stat_mr_entry)(struct sk_buff *, struct ib_mr *); - int (*query_ucontext)(struct ib_ucontext *, struct uverbs_attr_bundle *); - int (*get_numa_node)(struct ib_device *); - struct ib_device * (*add_sub_dev)(struct ib_device *, enum rdma_nl_dev_type, const char *); - void (*del_sub_dev)(struct ib_device *); - void (*ufile_hw_cleanup)(struct ib_uverbs_file *); - void (*report_port_event)(struct ib_device *, struct net_device *, long unsigned int); - size_t size_ib_ah; - size_t size_ib_counters; - size_t size_ib_cq; - size_t size_ib_dmah; - size_t size_ib_mw; - size_t size_ib_pd; - size_t size_ib_qp; - size_t size_ib_rwq_ind_table; - size_t size_ib_srq; - size_t size_ib_ucontext; - size_t size_ib_xrcd; - size_t size_rdma_counter; -}; - -struct ib_core_device { - struct device dev; - possible_net_t rdma_net; - struct kobject *ports_kobj; - struct list_head port_list; - struct ib_device *owner; -}; - -enum ib_atomic_cap { - IB_ATOMIC_NONE = 0, - IB_ATOMIC_HCA = 1, - IB_ATOMIC_GLOB = 2, -}; - -struct ib_odp_caps { - uint64_t general_caps; - struct { - uint32_t rc_odp_caps; - uint32_t uc_odp_caps; - uint32_t ud_odp_caps; - uint32_t xrc_odp_caps; - } per_transport_caps; -}; - -struct ib_rss_caps { - u32 supported_qpts; - u32 max_rwq_indirection_tables; - u32 max_rwq_indirection_table_size; -}; - -struct ib_tm_caps { - u32 max_rndv_hdr_size; - u32 max_num_tags; - u32 flags; - u32 max_ops; - u32 max_sge; -}; - -struct ib_cq_caps { - u16 max_cq_moderation_count; - u16 max_cq_moderation_period; -}; - -struct ib_device_attr { - u64 fw_ver; - __be64 sys_image_guid; - u64 max_mr_size; - u64 page_size_cap; - u32 vendor_id; - u32 vendor_part_id; - u32 hw_ver; - int max_qp; - int max_qp_wr; - u64 device_cap_flags; - u64 kernel_cap_flags; - int max_send_sge; - int max_recv_sge; - int max_sge_rd; - int max_cq; - int max_cqe; - int max_mr; - int max_pd; - int max_qp_rd_atom; - int max_ee_rd_atom; - int max_res_rd_atom; - int max_qp_init_rd_atom; - int max_ee_init_rd_atom; - enum ib_atomic_cap atomic_cap; - enum ib_atomic_cap masked_atomic_cap; - int max_ee; - int max_rdd; - int max_mw; - int max_raw_ipv6_qp; - int max_raw_ethy_qp; - int max_mcast_grp; - int max_mcast_qp_attach; - int max_total_mcast_qp_attach; - int max_ah; - int max_srq; - int max_srq_wr; - int max_srq_sge; - unsigned int max_fast_reg_page_list_len; - unsigned int max_pi_fast_reg_page_list_len; - u16 max_pkeys; - u8 local_ca_ack_delay; - int sig_prot_cap; - int sig_guard_cap; - struct ib_odp_caps odp_caps; - uint64_t timestamp_mask; - uint64_t hca_core_clock; - struct ib_rss_caps rss_caps; - u32 max_wq_type_rq; - u32 raw_packet_caps; - struct ib_tm_caps tm_caps; - struct ib_cq_caps cq_caps; - u64 max_dm_size; - u32 max_sgl_rd; -}; - -struct hw_stats_device_data; - -struct rdma_restrack_root; - -struct uapi_definition; - -struct ib_port_data; - -struct ib_device { - struct device *dma_device; - struct ib_device_ops ops; - char name[64]; - struct callback_head callback_head; - struct list_head event_handler_list; - struct rw_semaphore event_handler_rwsem; - spinlock_t qp_open_list_lock; - struct rw_semaphore client_data_rwsem; - struct xarray client_data; - struct mutex unregistration_lock; - rwlock_t cache_lock; - struct ib_port_data *port_data; - int num_comp_vectors; - union { - struct device dev; - struct ib_core_device coredev; - }; - const struct attribute_group *groups[4]; - u8 hw_stats_attr_index; - u64 uverbs_cmd_mask; - char node_desc[64]; - __be64 node_guid; - u32 local_dma_lkey; - u16 is_switch: 1; - u16 kverbs_provider: 1; - u16 use_cq_dim: 1; - u8 node_type; - u32 phys_port_cnt; - struct ib_device_attr attrs; - struct hw_stats_device_data *hw_stats_data; - struct rdmacg_device cg_device; - u32 index; - spinlock_t cq_pools_lock; - struct list_head cq_pools[3]; - struct rdma_restrack_root *res; - const struct uapi_definition *driver_def; - refcount_t refcount; - struct completion unreg_completion; - struct work_struct unregistration_work; - const struct rdma_link_ops *link_ops; - struct mutex compat_devs_mutex; - struct xarray compat_devs; - char iw_ifname[16]; - u32 iw_driver_flags; - u32 lag_flags; - struct mutex subdev_lock; - struct list_head subdev_list_head; - enum rdma_nl_dev_type type; - struct ib_device *parent; - struct list_head subdev_list; - enum rdma_nl_name_assign_type name_assign_type; -}; - -enum ib_signature_type { - IB_SIG_TYPE_NONE = 0, - IB_SIG_TYPE_T10_DIF = 1, -}; - -enum ib_t10_dif_bg_type { - IB_T10DIF_CRC = 0, - IB_T10DIF_CSUM = 1, -}; - -struct ib_t10_dif_domain { - enum ib_t10_dif_bg_type bg_type; - u16 pi_interval; - u16 bg; - u16 app_tag; - u32 ref_tag; - bool ref_remap; - bool app_escape; - bool ref_escape; - u16 apptag_check_mask; -}; - -struct ib_sig_domain { - enum ib_signature_type sig_type; - union { - struct ib_t10_dif_domain dif; - } sig; -}; - -struct ib_sig_attrs { - u8 check_mask; - struct ib_sig_domain mem; - struct ib_sig_domain wire; - int meta_length; -}; - -enum ib_sig_err_type { - IB_SIG_BAD_GUARD = 0, - IB_SIG_BAD_REFTAG = 1, - IB_SIG_BAD_APPTAG = 2, -}; - -struct ib_sig_err { - enum ib_sig_err_type err_type; - u32 expected; - u32 actual; - u64 sig_err_offset; - u32 key; -}; - -enum tph_mem_type { - TPH_MEM_TYPE_VM = 0, - TPH_MEM_TYPE_PM = 1, -}; - -union ib_gid { - u8 raw[16]; - struct { - __be64 subnet_prefix; - __be64 interface_id; - } global; -}; - -enum ib_gid_type { - IB_GID_TYPE_IB = 0, - IB_GID_TYPE_ROCE = 1, - IB_GID_TYPE_ROCE_UDP_ENCAP = 2, - IB_GID_TYPE_SIZE = 3, -}; - -struct ib_gid_attr { - struct net_device *ndev; - struct ib_device *device; - union ib_gid gid; - enum ib_gid_type gid_type; - u16 index; - u32 port_num; -}; - -struct ib_cq_init_attr { - unsigned int cqe; - u32 comp_vector; - u32 flags; -}; - -struct ib_dm_mr_attr { - u64 length; - u64 offset; - u32 access_flags; -}; - -struct ib_dm_alloc_attr { - u64 length; - u32 alignment; - u32 flags; -}; - -enum ib_mtu { - IB_MTU_256 = 1, - IB_MTU_512 = 2, - IB_MTU_1024 = 3, - IB_MTU_2048 = 4, - IB_MTU_4096 = 5, -}; - -enum ib_port_state { - IB_PORT_NOP = 0, - IB_PORT_DOWN = 1, - IB_PORT_INIT = 2, - IB_PORT_ARMED = 3, - IB_PORT_ACTIVE = 4, - IB_PORT_ACTIVE_DEFER = 5, -}; - -struct rdma_stat_desc { - const char *name; - unsigned int flags; - const void *priv; -}; - -struct ib_port_attr { - u64 subnet_prefix; - enum ib_port_state state; - enum ib_mtu max_mtu; - enum ib_mtu active_mtu; - u32 phys_mtu; - int gid_tbl_len; - unsigned int ip_gids: 1; - u32 port_cap_flags; - u32 max_msg_sz; - u32 bad_pkey_cntr; - u32 qkey_viol_cntr; - u16 pkey_tbl_len; - u32 sm_lid; - u32 lid; - u8 lmc; - u8 max_vl_num; - u8 sm_sl; - u8 subnet_timeout; - u8 init_type_reply; - u8 active_width; - u16 active_speed; - u8 phys_state; - u16 port_cap_flags2; -}; - -struct ib_device_modify { - u64 sys_image_guid; - char node_desc[64]; -}; - -struct ib_port_modify { - u32 set_port_cap_mask; - u32 clr_port_cap_mask; - u8 init_type; -}; - -enum ib_event_type { - IB_EVENT_CQ_ERR = 0, - IB_EVENT_QP_FATAL = 1, - IB_EVENT_QP_REQ_ERR = 2, - IB_EVENT_QP_ACCESS_ERR = 3, - IB_EVENT_COMM_EST = 4, - IB_EVENT_SQ_DRAINED = 5, - IB_EVENT_PATH_MIG = 6, - IB_EVENT_PATH_MIG_ERR = 7, - IB_EVENT_DEVICE_FATAL = 8, - IB_EVENT_PORT_ACTIVE = 9, - IB_EVENT_PORT_ERR = 10, - IB_EVENT_LID_CHANGE = 11, - IB_EVENT_PKEY_CHANGE = 12, - IB_EVENT_SM_CHANGE = 13, - IB_EVENT_SRQ_ERR = 14, - IB_EVENT_SRQ_LIMIT_REACHED = 15, - IB_EVENT_QP_LAST_WQE_REACHED = 16, - IB_EVENT_CLIENT_REREGISTER = 17, - IB_EVENT_GID_CHANGE = 18, - IB_EVENT_WQ_FATAL = 19, -}; - -struct ib_ucq_object; - -typedef void (*ib_comp_handler)(struct ib_cq *, void *); - -struct ib_event; - -struct ib_cq { - struct ib_device *device; - struct ib_ucq_object *uobject; - ib_comp_handler comp_handler; - void (*event_handler)(struct ib_event *, void *); - void *cq_context; - int cqe; - unsigned int cqe_used; - atomic_t usecnt; - enum ib_poll_context poll_ctx; - struct ib_wc *wc; - struct list_head pool_entry; - union { - struct irq_poll iop; - struct work_struct work; - }; - struct workqueue_struct *comp_wq; - struct dim *dim; - ktime_t timestamp; - u8 interrupt: 1; - u8 shared: 1; - unsigned int comp_vector; - struct rdma_restrack_entry res; -}; - -struct ib_uqp_object; - -enum ib_qp_type { - IB_QPT_SMI = 0, - IB_QPT_GSI = 1, - IB_QPT_RC = 2, - IB_QPT_UC = 3, - IB_QPT_UD = 4, - IB_QPT_RAW_IPV6 = 5, - IB_QPT_RAW_ETHERTYPE = 6, - IB_QPT_RAW_PACKET = 8, - IB_QPT_XRC_INI = 9, - IB_QPT_XRC_TGT = 10, - IB_QPT_MAX = 11, - IB_QPT_DRIVER = 255, - IB_QPT_RESERVED1 = 4096, - IB_QPT_RESERVED2 = 4097, - IB_QPT_RESERVED3 = 4098, - IB_QPT_RESERVED4 = 4099, - IB_QPT_RESERVED5 = 4100, - IB_QPT_RESERVED6 = 4101, - IB_QPT_RESERVED7 = 4102, - IB_QPT_RESERVED8 = 4103, - IB_QPT_RESERVED9 = 4104, - IB_QPT_RESERVED10 = 4105, -}; - -struct ib_qp_security; - -struct ib_qp { - struct ib_device *device; - struct ib_pd *pd; - struct ib_cq *send_cq; - struct ib_cq *recv_cq; - spinlock_t mr_lock; - int mrs_used; - struct list_head rdma_mrs; - struct list_head sig_mrs; - struct ib_srq *srq; - struct completion srq_completion; - struct ib_xrcd *xrcd; - struct list_head xrcd_list; - atomic_t usecnt; - struct list_head open_list; - struct ib_qp *real_qp; - struct ib_uqp_object *uobject; - void (*event_handler)(struct ib_event *, void *); - void (*registered_event_handler)(struct ib_event *, void *); - void *qp_context; - const struct ib_gid_attr *av_sgid_attr; - const struct ib_gid_attr *alt_path_sgid_attr; - u32 qp_num; - u32 max_write_sge; - u32 max_read_sge; - enum ib_qp_type qp_type; - struct ib_rwq_ind_table *rwq_ind_tbl; - struct ib_qp_security *qp_sec; - u32 port; - bool integrity_en; - struct rdma_restrack_entry res; - struct rdma_counter *counter; -}; - -struct ib_usrq_object; - -enum ib_srq_type { - IB_SRQT_BASIC = 0, - IB_SRQT_XRC = 1, - IB_SRQT_TM = 2, -}; - -struct ib_srq { - struct ib_device *device; - struct ib_pd *pd; - struct ib_usrq_object *uobject; - void (*event_handler)(struct ib_event *, void *); - void *srq_context; - enum ib_srq_type srq_type; - atomic_t usecnt; - struct { - struct ib_cq *cq; - union { - struct { - struct ib_xrcd *xrcd; - u32 srq_num; - } xrc; - }; - } ext; - struct rdma_restrack_entry res; -}; - -struct ib_uwq_object; - -enum ib_wq_state { - IB_WQS_RESET = 0, - IB_WQS_RDY = 1, - IB_WQS_ERR = 2, -}; - -enum ib_wq_type { - IB_WQT_RQ = 0, -}; - -struct ib_wq { - struct ib_device *device; - struct ib_uwq_object *uobject; - void *wq_context; - void (*event_handler)(struct ib_event *, void *); - struct ib_pd *pd; - struct ib_cq *cq; - u32 wq_num; - enum ib_wq_state state; - enum ib_wq_type wq_type; - atomic_t usecnt; -}; - -struct ib_event { - struct ib_device *device; - union { - struct ib_cq *cq; - struct ib_qp *qp; - struct ib_srq *srq; - struct ib_wq *wq; - u32 port_num; - } element; - enum ib_event_type event; -}; - -struct ib_global_route { - const struct ib_gid_attr *sgid_attr; - union ib_gid dgid; - u32 flow_label; - u8 sgid_index; - u8 hop_limit; - u8 traffic_class; -}; - -struct ib_grh { - __be32 version_tclass_flow; - __be16 paylen; - u8 next_hdr; - u8 hop_limit; - union ib_gid sgid; - union ib_gid dgid; -}; - -struct ib_mr_status { - u32 fail_status; - struct ib_sig_err sig_err; -}; - -struct rdma_ah_init_attr { - struct rdma_ah_attr *ah_attr; - u32 flags; - struct net_device *xmit_slave; -}; - -enum rdma_ah_attr_type { - RDMA_AH_ATTR_TYPE_UNDEFINED = 0, - RDMA_AH_ATTR_TYPE_IB = 1, - RDMA_AH_ATTR_TYPE_ROCE = 2, - RDMA_AH_ATTR_TYPE_OPA = 3, -}; - -struct ib_ah_attr { - u16 dlid; - u8 src_path_bits; -}; - -struct roce_ah_attr { - u8 dmac[6]; -}; - -struct opa_ah_attr { - u32 dlid; - u8 src_path_bits; - bool make_grd; -}; - -struct rdma_ah_attr { - struct ib_global_route grh; - u8 sl; - u8 static_rate; - u32 port_num; - u8 ah_flags; - enum rdma_ah_attr_type type; - union { - struct ib_ah_attr ib; - struct roce_ah_attr roce; - struct opa_ah_attr opa; - }; -}; - -enum ib_wc_status { - IB_WC_SUCCESS = 0, - IB_WC_LOC_LEN_ERR = 1, - IB_WC_LOC_QP_OP_ERR = 2, - IB_WC_LOC_EEC_OP_ERR = 3, - IB_WC_LOC_PROT_ERR = 4, - IB_WC_WR_FLUSH_ERR = 5, - IB_WC_MW_BIND_ERR = 6, - IB_WC_BAD_RESP_ERR = 7, - IB_WC_LOC_ACCESS_ERR = 8, - IB_WC_REM_INV_REQ_ERR = 9, - IB_WC_REM_ACCESS_ERR = 10, - IB_WC_REM_OP_ERR = 11, - IB_WC_RETRY_EXC_ERR = 12, - IB_WC_RNR_RETRY_EXC_ERR = 13, - IB_WC_LOC_RDD_VIOL_ERR = 14, - IB_WC_REM_INV_RD_REQ_ERR = 15, - IB_WC_REM_ABORT_ERR = 16, - IB_WC_INV_EECN_ERR = 17, - IB_WC_INV_EEC_STATE_ERR = 18, - IB_WC_FATAL_ERR = 19, - IB_WC_RESP_TIMEOUT_ERR = 20, - IB_WC_GENERAL_ERR = 21, -}; - -enum ib_wc_opcode { - IB_WC_SEND = 0, - IB_WC_RDMA_WRITE = 1, - IB_WC_RDMA_READ = 2, - IB_WC_COMP_SWAP = 3, - IB_WC_FETCH_ADD = 4, - IB_WC_BIND_MW = 5, - IB_WC_LOCAL_INV = 6, - IB_WC_LSO = 7, - IB_WC_ATOMIC_WRITE = 9, - IB_WC_REG_MR = 10, - IB_WC_MASKED_COMP_SWAP = 11, - IB_WC_MASKED_FETCH_ADD = 12, - IB_WC_FLUSH = 8, - IB_WC_RECV = 128, - IB_WC_RECV_RDMA_WITH_IMM = 129, -}; - -struct ib_cqe { - void (*done)(struct ib_cq *, struct ib_wc *); -}; - -struct ib_wc { - union { - u64 wr_id; - struct ib_cqe *wr_cqe; - }; - enum ib_wc_status status; - enum ib_wc_opcode opcode; - u32 vendor_err; - u32 byte_len; - struct ib_qp *qp; - union { - __be32 imm_data; - u32 invalidate_rkey; - } ex; - u32 src_qp; - u32 slid; - int wc_flags; - u16 pkey_index; - u8 sl; - u8 dlid_path_bits; - u32 port_num; - u8 smac[6]; - u16 vlan_id; - u8 network_hdr_type; -}; - -struct ib_srq_attr { - u32 max_wr; - u32 max_sge; - u32 srq_limit; -}; - -struct ib_xrcd { - struct ib_device *device; - atomic_t usecnt; - struct inode *inode; - struct rw_semaphore tgt_qps_rwsem; - struct xarray tgt_qps; -}; - -struct ib_srq_init_attr { - void (*event_handler)(struct ib_event *, void *); - void *srq_context; - struct ib_srq_attr attr; - enum ib_srq_type srq_type; - struct { - struct ib_cq *cq; - union { - struct { - struct ib_xrcd *xrcd; - } xrc; - struct { - u32 max_num_tags; - } tag_matching; - }; - } ext; -}; - -struct ib_qp_cap { - u32 max_send_wr; - u32 max_recv_wr; - u32 max_send_sge; - u32 max_recv_sge; - u32 max_inline_data; - u32 max_rdma_ctxs; -}; - -enum ib_sig_type { - IB_SIGNAL_ALL_WR = 0, - IB_SIGNAL_REQ_WR = 1, -}; - -struct ib_qp_init_attr { - void (*event_handler)(struct ib_event *, void *); - void *qp_context; - struct ib_cq *send_cq; - struct ib_cq *recv_cq; - struct ib_srq *srq; - struct ib_xrcd *xrcd; - struct ib_qp_cap cap; - enum ib_sig_type sq_sig_type; - enum ib_qp_type qp_type; - u32 create_flags; - u32 port_num; - struct ib_rwq_ind_table *rwq_ind_tbl; - u32 source_qpn; -}; - -struct ib_uobject; - -struct ib_rwq_ind_table { - struct ib_device *device; - struct ib_uobject *uobject; - atomic_t usecnt; - u32 ind_tbl_num; - u32 log_ind_tbl_size; - struct ib_wq **ind_tbl; -}; - -enum ib_qp_state { - IB_QPS_RESET = 0, - IB_QPS_INIT = 1, - IB_QPS_RTR = 2, - IB_QPS_RTS = 3, - IB_QPS_SQD = 4, - IB_QPS_SQE = 5, - IB_QPS_ERR = 6, -}; - -enum ib_mig_state { - IB_MIG_MIGRATED = 0, - IB_MIG_REARM = 1, - IB_MIG_ARMED = 2, -}; - -enum ib_mw_type { - IB_MW_TYPE_1 = 1, - IB_MW_TYPE_2 = 2, -}; - -struct ib_qp_attr { - enum ib_qp_state qp_state; - enum ib_qp_state cur_qp_state; - enum ib_mtu path_mtu; - enum ib_mig_state path_mig_state; - u32 qkey; - u32 rq_psn; - u32 sq_psn; - u32 dest_qp_num; - int qp_access_flags; - struct ib_qp_cap cap; - struct rdma_ah_attr ah_attr; - struct rdma_ah_attr alt_ah_attr; - u16 pkey_index; - u16 alt_pkey_index; - u8 en_sqd_async_notify; - u8 sq_draining; - u8 max_rd_atomic; - u8 max_dest_rd_atomic; - u8 min_rnr_timer; - u32 port_num; - u8 timeout; - u8 retry_cnt; - u8 rnr_retry; - u32 alt_port_num; - u8 alt_timeout; - u32 rate_limit; - struct net_device *xmit_slave; -}; - -enum ib_wr_opcode { - IB_WR_RDMA_WRITE = 0, - IB_WR_RDMA_WRITE_WITH_IMM = 1, - IB_WR_SEND = 2, - IB_WR_SEND_WITH_IMM = 3, - IB_WR_RDMA_READ = 4, - IB_WR_ATOMIC_CMP_AND_SWP = 5, - IB_WR_ATOMIC_FETCH_AND_ADD = 6, - IB_WR_BIND_MW = 8, - IB_WR_LSO = 10, - IB_WR_SEND_WITH_INV = 9, - IB_WR_RDMA_READ_WITH_INV = 11, - IB_WR_LOCAL_INV = 7, - IB_WR_MASKED_ATOMIC_CMP_AND_SWP = 12, - IB_WR_MASKED_ATOMIC_FETCH_AND_ADD = 13, - IB_WR_FLUSH = 14, - IB_WR_ATOMIC_WRITE = 15, - IB_WR_REG_MR = 32, - IB_WR_REG_MR_INTEGRITY = 33, - IB_WR_RESERVED1 = 240, - IB_WR_RESERVED2 = 241, - IB_WR_RESERVED3 = 242, - IB_WR_RESERVED4 = 243, - IB_WR_RESERVED5 = 244, - IB_WR_RESERVED6 = 245, - IB_WR_RESERVED7 = 246, - IB_WR_RESERVED8 = 247, - IB_WR_RESERVED9 = 248, - IB_WR_RESERVED10 = 249, -}; - -struct ib_sge { - u64 addr; - u32 length; - u32 lkey; -}; - -struct ib_send_wr { - struct ib_send_wr *next; - union { - u64 wr_id; - struct ib_cqe *wr_cqe; - }; - struct ib_sge *sg_list; - int num_sge; - enum ib_wr_opcode opcode; - int send_flags; - union { - __be32 imm_data; - u32 invalidate_rkey; - } ex; -}; - -struct ib_ah { - struct ib_device *device; - struct ib_pd *pd; - struct ib_uobject *uobject; - const struct ib_gid_attr *sgid_attr; - enum rdma_ah_attr_type type; -}; - -struct ib_mr { - struct ib_device *device; - struct ib_pd *pd; - u32 lkey; - u32 rkey; - u64 iova; - u64 length; - unsigned int page_size; - enum ib_mr_type type; - bool need_inval; - union { - struct ib_uobject *uobject; - struct list_head qp_entry; - }; - struct ib_dm *dm; - struct ib_sig_attrs *sig_attrs; - struct ib_dmah *dmah; - struct rdma_restrack_entry res; -}; - -struct ib_recv_wr { - struct ib_recv_wr *next; - union { - u64 wr_id; - struct ib_cqe *wr_cqe; - }; - struct ib_sge *sg_list; - int num_sge; -}; - -struct ib_rdmacg_object { - struct rdma_cgroup *cg; -}; - -struct ib_ucontext { - struct ib_device *device; - struct ib_uverbs_file *ufile; - struct ib_rdmacg_object cg_obj; - u64 enabled_caps; - struct rdma_restrack_entry res; - struct xarray mmap_xa; -}; - -struct uverbs_api_object; - -struct ib_uobject { - u64 user_handle; - struct ib_uverbs_file *ufile; - struct ib_ucontext *context; - void *object; - struct list_head list; - struct ib_rdmacg_object cg_obj; - int id; - struct kref ref; - atomic_t usecnt; - struct callback_head rcu; - const struct uverbs_api_object *uapi_object; -}; - -struct ib_udata { - const void *inbuf; - void *outbuf; - size_t inlen; - size_t outlen; -}; - -struct ib_pd { - u32 local_dma_lkey; - u32 flags; - struct ib_device *device; - struct ib_uobject *uobject; - atomic_t usecnt; - u32 unsafe_global_rkey; - struct ib_mr *__internal_mr; - struct rdma_restrack_entry res; -}; - -struct ib_wq_init_attr { - void *wq_context; - enum ib_wq_type wq_type; - u32 max_wr; - u32 max_sge; - struct ib_cq *cq; - void (*event_handler)(struct ib_event *, void *); - u32 create_flags; -}; - -struct ib_wq_attr { - enum ib_wq_state wq_state; - enum ib_wq_state curr_wq_state; - u32 flags; - u32 flags_mask; -}; - -struct ib_rwq_ind_table_init_attr { - u32 log_ind_tbl_size; - struct ib_wq **ind_tbl; -}; - -enum port_pkey_state { - IB_PORT_PKEY_NOT_VALID = 0, - IB_PORT_PKEY_VALID = 1, - IB_PORT_PKEY_LISTED = 2, -}; - -struct ib_port_pkey { - enum port_pkey_state state; - u16 pkey_index; - u32 port_num; - struct list_head qp_list; - struct list_head to_error_list; - struct ib_qp_security *sec; -}; - -struct ib_ports_pkeys; - -struct ib_qp_security { - struct ib_qp *qp; - struct ib_device *dev; - struct mutex mutex; - struct ib_ports_pkeys *ports_pkeys; - struct list_head shared_qp_list; - void *security; - bool destroying; - atomic_t error_list_count; - struct completion error_complete; - int error_comps_pending; -}; - -struct ib_ports_pkeys { - struct ib_port_pkey main; - struct ib_port_pkey alt; -}; - -struct ib_dm { - struct ib_device *device; - u32 length; - u32 flags; - struct ib_uobject *uobject; - atomic_t usecnt; -}; - -struct ib_dmah { - struct ib_device *device; - struct ib_uobject *uobject; - struct rdma_restrack_entry res; - u32 cpu_id; - enum tph_mem_type mem_type; - atomic_t usecnt; - u8 ph; - u8 valid_fields; -}; - -struct ib_mw { - struct ib_device *device; - struct ib_pd *pd; - struct ib_uobject *uobject; - u32 rkey; - enum ib_mw_type type; -}; - -enum ib_flow_attr_type { - IB_FLOW_ATTR_NORMAL = 0, - IB_FLOW_ATTR_ALL_DEFAULT = 1, - IB_FLOW_ATTR_MC_DEFAULT = 2, - IB_FLOW_ATTR_SNIFFER = 3, -}; - -enum ib_flow_spec_type { - IB_FLOW_SPEC_ETH = 32, - IB_FLOW_SPEC_IB = 34, - IB_FLOW_SPEC_IPV4 = 48, - IB_FLOW_SPEC_IPV6 = 49, - IB_FLOW_SPEC_ESP = 52, - IB_FLOW_SPEC_TCP = 64, - IB_FLOW_SPEC_UDP = 65, - IB_FLOW_SPEC_VXLAN_TUNNEL = 80, - IB_FLOW_SPEC_GRE = 81, - IB_FLOW_SPEC_MPLS = 96, - IB_FLOW_SPEC_INNER = 256, - IB_FLOW_SPEC_ACTION_TAG = 4096, - IB_FLOW_SPEC_ACTION_DROP = 4097, - IB_FLOW_SPEC_ACTION_HANDLE = 4098, - IB_FLOW_SPEC_ACTION_COUNT = 4099, -}; - -struct ib_flow_eth_filter { - u8 dst_mac[6]; - u8 src_mac[6]; - __be16 ether_type; - __be16 vlan_tag; -}; - -struct ib_flow_spec_eth { - u32 type; - u16 size; - struct ib_flow_eth_filter val; - struct ib_flow_eth_filter mask; -}; - -struct ib_flow_ib_filter { - __be16 dlid; - __u8 sl; -}; - -struct ib_flow_spec_ib { - u32 type; - u16 size; - struct ib_flow_ib_filter val; - struct ib_flow_ib_filter mask; -}; - -struct ib_flow_ipv4_filter { - __be32 src_ip; - __be32 dst_ip; - u8 proto; - u8 tos; - u8 ttl; - u8 flags; -}; - -struct ib_flow_spec_ipv4 { - u32 type; - u16 size; - struct ib_flow_ipv4_filter val; - struct ib_flow_ipv4_filter mask; -}; - -struct ib_flow_ipv6_filter { - u8 src_ip[16]; - u8 dst_ip[16]; - __be32 flow_label; - u8 next_hdr; - u8 traffic_class; - u8 hop_limit; -} __attribute__((packed)); - -struct ib_flow_spec_ipv6 { - u32 type; - u16 size; - struct ib_flow_ipv6_filter val; - struct ib_flow_ipv6_filter mask; -}; - -struct ib_flow_tcp_udp_filter { - __be16 dst_port; - __be16 src_port; -}; - -struct ib_flow_spec_tcp_udp { - u32 type; - u16 size; - struct ib_flow_tcp_udp_filter val; - struct ib_flow_tcp_udp_filter mask; -}; - -struct ib_flow_tunnel_filter { - __be32 tunnel_id; -}; - -struct ib_flow_spec_tunnel { - u32 type; - u16 size; - struct ib_flow_tunnel_filter val; - struct ib_flow_tunnel_filter mask; -}; - -struct ib_flow_esp_filter { - __be32 spi; - __be32 seq; -}; - -struct ib_flow_spec_esp { - u32 type; - u16 size; - struct ib_flow_esp_filter val; - struct ib_flow_esp_filter mask; -}; - -struct ib_flow_gre_filter { - __be16 c_ks_res0_ver; - __be16 protocol; - __be32 key; -}; - -struct ib_flow_spec_gre { - u32 type; - u16 size; - struct ib_flow_gre_filter val; - struct ib_flow_gre_filter mask; -}; - -struct ib_flow_mpls_filter { - __be32 tag; -}; - -struct ib_flow_spec_mpls { - u32 type; - u16 size; - struct ib_flow_mpls_filter val; - struct ib_flow_mpls_filter mask; -}; - -struct ib_flow_spec_action_tag { - enum ib_flow_spec_type type; - u16 size; - u32 tag_id; -}; - -struct ib_flow_spec_action_drop { - enum ib_flow_spec_type type; - u16 size; -}; - -struct ib_flow_spec_action_handle { - enum ib_flow_spec_type type; - u16 size; - struct ib_flow_action *act; -}; - -enum ib_flow_action_type { - IB_FLOW_ACTION_UNSPECIFIED = 0, - IB_FLOW_ACTION_ESP = 1, -}; - -struct ib_flow_action { - struct ib_device *device; - struct ib_uobject *uobject; - enum ib_flow_action_type type; - atomic_t usecnt; -}; - -struct ib_flow_spec_action_count { - enum ib_flow_spec_type type; - u16 size; - struct ib_counters *counters; -}; - -struct ib_counters { - struct ib_device *device; - struct ib_uobject *uobject; - atomic_t usecnt; -}; - -union ib_flow_spec { - struct { - u32 type; - u16 size; - }; - struct ib_flow_spec_eth eth; - struct ib_flow_spec_ib ib; - struct ib_flow_spec_ipv4 ipv4; - struct ib_flow_spec_tcp_udp tcp_udp; - struct ib_flow_spec_ipv6 ipv6; - struct ib_flow_spec_tunnel tunnel; - struct ib_flow_spec_esp esp; - struct ib_flow_spec_gre gre; - struct ib_flow_spec_mpls mpls; - struct ib_flow_spec_action_tag flow_tag; - struct ib_flow_spec_action_drop drop; - struct ib_flow_spec_action_handle action; - struct ib_flow_spec_action_count flow_count; -}; - -struct ib_flow_attr { - enum ib_flow_attr_type type; - u16 size; - u16 priority; - u32 flags; - u8 num_of_specs; - u32 port; - union ib_flow_spec flows[0]; -}; - -struct ib_flow { - struct ib_qp *qp; - struct ib_device *device; - struct ib_uobject *uobject; -}; - -struct ib_pkey_cache; - -struct ib_gid_table; - -struct ib_port_cache { - u64 subnet_prefix; - struct ib_pkey_cache *pkey; - struct ib_gid_table *gid; - u8 lmc; - enum ib_port_state port_state; - enum ib_port_state last_port_state; -}; - -struct ib_port_immutable { - int pkey_tbl_len; - int gid_tbl_len; - u32 core_cap_flags; - u32 max_mad_size; -}; - -struct ib_port; - -struct ib_port_data { - struct ib_device *ib_dev; - struct ib_port_immutable immutable; - spinlock_t pkey_list_lock; - spinlock_t netdev_lock; - struct list_head pkey_list; - struct ib_port_cache cache; - struct net_device *netdev; - netdevice_tracker netdev_tracker; - struct hlist_node ndev_hash_link; - struct rdma_port_counter port_counter; - struct ib_port *sysfs; -}; - -struct rdma_netdev_alloc_params { - size_t sizeof_priv; - unsigned int txqs; - unsigned int rxqs; - void *param; - int (*initialize_rdma_netdev)(struct ib_device *, u32, struct net_device *, void *); -}; - -struct ib_counters_read_attr { - u64 *counters_buff; - u32 ncounters; - u32 flags; -}; - -struct rdma_user_mmap_entry { - struct kref ref; - struct ib_ucontext *ucontext; - long unsigned int start_pgoff; - size_t npages; - bool driver_removed; -}; - -struct ddebug_table { - struct list_head link; - struct list_head maps; - const char *mod_name; - unsigned int num_ddebugs; - struct _ddebug *ddebugs; -}; - -struct ddebug_query { - const char *filename; - const char *module; - const char *function; - const char *format; - const char *class_string; - unsigned int first_lineno; - unsigned int last_lineno; -}; - -struct ddebug_iter { - struct ddebug_table *table; - int idx; -}; - -struct flag_settings { - unsigned int flags; - unsigned int mask; -}; - -struct flagsbuf { - char buf[8]; -}; - -enum dim_state { - DIM_START_MEASURE = 0, - DIM_MEASURE_IN_PROGRESS = 1, - DIM_APPLY_NEW_PROFILE = 2, -}; - -enum dim_tune_state { - DIM_PARKING_ON_TOP = 0, - DIM_PARKING_TIRED = 1, - DIM_GOING_RIGHT = 2, - DIM_GOING_LEFT = 3, -}; - -enum dim_stats_state { - DIM_STATS_WORSE = 0, - DIM_STATS_SAME = 1, - DIM_STATS_BETTER = 2, -}; - -enum dim_step_result { - DIM_STEPPED = 0, - DIM_TOO_TIRED = 1, - DIM_ON_EDGE = 2, -}; - -enum pubkey_algo { - PUBKEY_ALGO_RSA = 0, - PUBKEY_ALGO_MAX = 1, -}; - -struct pubkey_hdr { - uint8_t version; - uint32_t timestamp; - uint8_t algo; - uint8_t nmpi; - char mpi[0]; -} __attribute__((packed)); - -struct signature_hdr { - uint8_t version; - uint32_t timestamp; - uint8_t algo; - uint8_t hash; - uint8_t keyid[8]; - uint8_t nmpi; - char mpi[0]; -} __attribute__((packed)); - -enum { - IRQ_POLL_F_SCHED = 0, - IRQ_POLL_F_DISABLE = 1, -}; - -struct xbc_node { - uint16_t next; - uint16_t child; - uint16_t parent; - uint16_t data; -}; - -struct font_desc { - int idx; - const char *name; - unsigned int width; - unsigned int height; - unsigned int charcount; - const void *data; - int pref; -}; - -struct font_data { - unsigned int extra[4]; - const unsigned char data[0]; -}; - -struct acpi_table_cdat { - u32 length; - u8 revision; - u8 checksum; - u8 reserved[6]; - u32 sequence; -}; - -enum acpi_cdat_type { - ACPI_CDAT_TYPE_DSMAS = 0, - ACPI_CDAT_TYPE_DSLBIS = 1, - ACPI_CDAT_TYPE_DSMSCIS = 2, - ACPI_CDAT_TYPE_DSIS = 3, - ACPI_CDAT_TYPE_DSEMTS = 4, - ACPI_CDAT_TYPE_SSLBIS = 5, - ACPI_CDAT_TYPE_RESERVED = 6, -}; - -typedef int (*acpi_tbl_entry_handler)(union acpi_subtable_headers *, const long unsigned int); - -typedef int (*acpi_tbl_entry_handler_arg)(union acpi_subtable_headers *, void *, const long unsigned int); - -struct acpi_subtable_proc { - int id; - acpi_tbl_entry_handler handler; - acpi_tbl_entry_handler_arg handler_arg; - void *arg; - int count; -}; - -union fw_table_header { - struct acpi_table_header acpi; - struct acpi_table_cdat cdat; -}; - -enum acpi_subtable_type { - ACPI_SUBTABLE_COMMON = 0, - ACPI_SUBTABLE_HMAT = 1, - ACPI_SUBTABLE_PRMT = 2, - ACPI_SUBTABLE_CEDT = 3, - CDAT_SUBTABLE = 4, -}; - -struct acpi_subtable_entry { - union acpi_subtable_headers *hdr; - enum acpi_subtable_type type; -}; - -struct msr { - union { - struct { - u32 l; - u32 h; - }; - u64 q; - }; -}; - -enum pcpu_fc { - PCPU_FC_AUTO = 0, - PCPU_FC_EMBED = 1, - PCPU_FC_PAGE = 2, - PCPU_FC_NR = 3, -}; - -struct msr_info { - u32 msr_no; - struct msr reg; - struct msr *msrs; - int err; -}; - -struct msr_regs_info { - u32 *regs; - int err; -}; - -struct msr_info_completion { - struct msr_info msr; - struct completion done; -}; - -struct trace_event_raw_msr_trace_class { - struct trace_entry ent; - unsigned int msr; - u64 val; - int failed; - char __data[0]; -}; - -struct trace_event_data_offsets_msr_trace_class {}; - -typedef void (*btf_trace_read_msr)(void *, unsigned int, u64, int); - -typedef void (*btf_trace_write_msr)(void *, unsigned int, u64, int); - -typedef void (*btf_trace_rdpmc)(void *, unsigned int, u64, int); - -struct pinctrl_pin_desc { - unsigned int number; - const char *name; - void *drv_data; -}; - -struct pinctrl_dev; - -struct pinctrl_map; - -struct pinctrl_ops { - int (*get_groups_count)(struct pinctrl_dev *); - const char * (*get_group_name)(struct pinctrl_dev *, unsigned int); - int (*get_group_pins)(struct pinctrl_dev *, unsigned int, const unsigned int **, unsigned int *); - void (*pin_dbg_show)(struct pinctrl_dev *, struct seq_file *, unsigned int); - int (*dt_node_to_map)(struct pinctrl_dev *, struct device_node *, struct pinctrl_map **, unsigned int *); - void (*dt_free_map)(struct pinctrl_dev *, struct pinctrl_map *, unsigned int); -}; - -struct pinctrl_desc; - -struct pinctrl; - -struct pinctrl_state; - -struct pinctrl_dev { - struct list_head node; - const struct pinctrl_desc *desc; - struct xarray pin_desc_tree; - struct list_head gpio_ranges; - struct device *dev; - struct module *owner; - void *driver_data; - struct pinctrl *p; - struct pinctrl_state *hog_default; - struct pinctrl_state *hog_sleep; - struct mutex mutex; - struct dentry *device_root; -}; - -enum pinctrl_map_type { - PIN_MAP_TYPE_INVALID = 0, - PIN_MAP_TYPE_DUMMY_STATE = 1, - PIN_MAP_TYPE_MUX_GROUP = 2, - PIN_MAP_TYPE_CONFIGS_PIN = 3, - PIN_MAP_TYPE_CONFIGS_GROUP = 4, -}; - -struct pinctrl_map_mux { - const char *group; - const char *function; -}; - -struct pinctrl_map_configs { - const char *group_or_pin; - long unsigned int *configs; - unsigned int num_configs; -}; - -struct pinctrl_map { - const char *dev_name; - const char *name; - enum pinctrl_map_type type; - const char *ctrl_dev_name; - union { - struct pinctrl_map_mux mux; - struct pinctrl_map_configs configs; - } data; -}; - -struct pinmux_ops; - -struct pinconf_ops; - -struct pinconf_generic_params; - -struct pin_config_item; - -struct pinctrl_desc { - const char *name; - const struct pinctrl_pin_desc *pins; - unsigned int npins; - const struct pinctrl_ops *pctlops; - const struct pinmux_ops *pmxops; - const struct pinconf_ops *confops; - struct module *owner; - unsigned int num_custom_params; - const struct pinconf_generic_params *custom_params; - const struct pin_config_item *custom_conf_items; - bool link_consumers; -}; - -struct pinctrl_gpio_range; - -struct pinmux_ops { - int (*request)(struct pinctrl_dev *, unsigned int); - int (*free)(struct pinctrl_dev *, unsigned int); - int (*get_functions_count)(struct pinctrl_dev *); - const char * (*get_function_name)(struct pinctrl_dev *, unsigned int); - int (*get_function_groups)(struct pinctrl_dev *, unsigned int, const char * const **, unsigned int *); - int (*set_mux)(struct pinctrl_dev *, unsigned int, unsigned int); - int (*gpio_request_enable)(struct pinctrl_dev *, struct pinctrl_gpio_range *, unsigned int); - void (*gpio_disable_free)(struct pinctrl_dev *, struct pinctrl_gpio_range *, unsigned int); - int (*gpio_set_direction)(struct pinctrl_dev *, struct pinctrl_gpio_range *, unsigned int, bool); - bool strict; -}; - -struct pinconf_ops { - bool is_generic; - int (*pin_config_get)(struct pinctrl_dev *, unsigned int, long unsigned int *); - int (*pin_config_set)(struct pinctrl_dev *, unsigned int, long unsigned int *, unsigned int); - int (*pin_config_group_get)(struct pinctrl_dev *, unsigned int, long unsigned int *); - int (*pin_config_group_set)(struct pinctrl_dev *, unsigned int, long unsigned int *, unsigned int); - void (*pin_config_dbg_show)(struct pinctrl_dev *, struct seq_file *, unsigned int); - void (*pin_config_group_dbg_show)(struct pinctrl_dev *, struct seq_file *, unsigned int); - void (*pin_config_config_dbg_show)(struct pinctrl_dev *, struct seq_file *, long unsigned int); -}; - -enum pin_config_param { - PIN_CONFIG_BIAS_BUS_HOLD = 0, - PIN_CONFIG_BIAS_DISABLE = 1, - PIN_CONFIG_BIAS_HIGH_IMPEDANCE = 2, - PIN_CONFIG_BIAS_PULL_DOWN = 3, - PIN_CONFIG_BIAS_PULL_PIN_DEFAULT = 4, - PIN_CONFIG_BIAS_PULL_UP = 5, - PIN_CONFIG_DRIVE_OPEN_DRAIN = 6, - PIN_CONFIG_DRIVE_OPEN_SOURCE = 7, - PIN_CONFIG_DRIVE_PUSH_PULL = 8, - PIN_CONFIG_DRIVE_STRENGTH = 9, - PIN_CONFIG_DRIVE_STRENGTH_UA = 10, - PIN_CONFIG_INPUT_DEBOUNCE = 11, - PIN_CONFIG_INPUT_ENABLE = 12, - PIN_CONFIG_INPUT_SCHMITT = 13, - PIN_CONFIG_INPUT_SCHMITT_ENABLE = 14, - PIN_CONFIG_INPUT_SCHMITT_UV = 15, - PIN_CONFIG_MODE_LOW_POWER = 16, - PIN_CONFIG_MODE_PWM = 17, - PIN_CONFIG_OUTPUT = 18, - PIN_CONFIG_OUTPUT_ENABLE = 19, - PIN_CONFIG_OUTPUT_IMPEDANCE_OHMS = 20, - PIN_CONFIG_PERSIST_STATE = 21, - PIN_CONFIG_POWER_SOURCE = 22, - PIN_CONFIG_SKEW_DELAY = 23, - PIN_CONFIG_SLEEP_HARDWARE_STATE = 24, - PIN_CONFIG_SLEW_RATE = 25, - PIN_CONFIG_END = 127, - PIN_CONFIG_MAX = 255, -}; - -struct pinconf_generic_params { - const char * const property; - enum pin_config_param param; - u32 default_value; -}; - -struct pin_config_item { - const enum pin_config_param param; - const char * const display; - const char * const format; - bool has_arg; -}; - -struct pinctrl { - struct list_head node; - struct device *dev; - struct list_head states; - struct pinctrl_state *state; - struct list_head dt_maps; - struct kref users; -}; - -struct pinctrl_state { - struct list_head node; - const char *name; - struct list_head settings; -}; - -struct pinctrl_setting_mux { - unsigned int group; - unsigned int func; -}; - -struct pinctrl_setting_configs { - unsigned int group_or_pin; - long unsigned int *configs; - unsigned int num_configs; -}; - -struct pinctrl_setting { - struct list_head node; - enum pinctrl_map_type type; - struct pinctrl_dev *pctldev; - const char *dev_name; - union { - struct pinctrl_setting_mux mux; - struct pinctrl_setting_configs configs; - } data; -}; - -struct pin_desc { - struct pinctrl_dev *pctldev; - const char *name; - bool dynamic_name; - void *drv_data; - unsigned int mux_usecount; - const char *mux_owner; - const struct pinctrl_setting_mux *mux_setting; - const char *gpio_owner; - struct mutex mux_lock; -}; - -enum dev_prop_type { - DEV_PROP_U8 = 0, - DEV_PROP_U16 = 1, - DEV_PROP_U32 = 2, - DEV_PROP_U64 = 3, - DEV_PROP_STRING = 4, - DEV_PROP_REF = 5, -}; - -struct software_node; - -struct software_node_ref_args { - const struct software_node *node; - unsigned int nargs; - u64 args[16]; -}; - -struct property_entry; - -struct software_node { - const char *name; - const struct software_node *parent; - const struct property_entry *properties; -}; - -struct property_entry { - const char *name; - size_t length; - bool is_inline; - enum dev_prop_type type; - union { - const void *pointer; - union { - u8 u8_data[8]; - u16 u16_data[4]; - u32 u32_data[2]; - u64 u64_data[1]; - const char *str[1]; - } value; - }; -}; - -typedef u64 acpi_io_address; - -typedef u64 acpi_physical_address; - -typedef u32 acpi_status; - -typedef u32 acpi_object_type; - -typedef u8 acpi_adr_space_type; - -union acpi_object { - acpi_object_type type; - struct { - acpi_object_type type; - u64 value; - } integer; - struct { - acpi_object_type type; - u32 length; - char *pointer; - } string; - struct { - acpi_object_type type; - u32 length; - u8 *pointer; - } buffer; - struct { - acpi_object_type type; - u32 count; - union acpi_object *elements; - } package; - struct { - acpi_object_type type; - acpi_object_type actual_type; - acpi_handle handle; - } reference; - struct { - acpi_object_type type; - u32 proc_id; - acpi_io_address pblk_address; - u32 pblk_length; - } processor; - struct { - acpi_object_type type; - u32 system_level; - u32 resource_order; - } power_resource; -}; - -typedef acpi_status (*acpi_adr_space_handler)(u32, acpi_physical_address, u32, u64 *, void *, void *); - -typedef acpi_status (*acpi_adr_space_setup)(acpi_handle, u32, void *, void **); - -struct acpi_hotplug_profile { - struct kobject kobj; - int (*scan_dependent)(struct acpi_device *); - void (*notify_online)(struct acpi_device *); - bool enabled: 1; - bool demand_offline: 1; -}; - -struct acpi_device_status { - u32 present: 1; - u32 enabled: 1; - u32 show_in_ui: 1; - u32 functional: 1; - u32 battery_present: 1; - u32 reserved: 27; -}; - -struct acpi_device_flags { - u32 dynamic_status: 1; - u32 removable: 1; - u32 ejectable: 1; - u32 power_manageable: 1; - u32 match_driver: 1; - u32 initialized: 1; - u32 visited: 1; - u32 hotplug_notify: 1; - u32 is_dock_station: 1; - u32 of_compatible_ok: 1; - u32 coherent_dma: 1; - u32 cca_seen: 1; - u32 enumeration_by_parent: 1; - u32 honor_deps: 1; - u32 reserved: 18; -}; - -typedef char acpi_bus_id[8]; - -struct acpi_pnp_type { - u32 hardware_id: 1; - u32 bus_address: 1; - u32 platform_id: 1; - u32 backlight: 1; - u32 reserved: 28; -}; - -typedef u64 acpi_bus_address; - -typedef char acpi_device_name[40]; - -typedef char acpi_device_class[20]; - -struct acpi_device_pnp { - acpi_bus_id bus_id; - int instance_no; - struct acpi_pnp_type type; - acpi_bus_address bus_address; - char *unique_id; - struct list_head ids; - acpi_device_name device_name; - acpi_device_class device_class; -}; - -struct acpi_device_power_flags { - u32 explicit_get: 1; - u32 power_resources: 1; - u32 inrush_current: 1; - u32 power_removed: 1; - u32 ignore_parent: 1; - u32 dsw_present: 1; - u32 reserved: 26; -}; - -struct acpi_device_power_state { - struct list_head resources; - struct { - u8 valid: 1; - u8 explicit_set: 1; - u8 reserved: 6; - } flags; - int power; - int latency; -}; - -struct acpi_device_power { - int state; - struct acpi_device_power_flags flags; - struct acpi_device_power_state states[5]; - u8 state_for_enumeration; -}; - -struct acpi_device_wakeup_flags { - u8 valid: 1; - u8 notifier_present: 1; -}; - -struct acpi_device_wakeup_context { - void (*func)(struct acpi_device_wakeup_context *); - struct device *dev; -}; - -struct acpi_device_wakeup { - acpi_handle gpe_device; - u64 gpe_number; - u64 sleep_state; - struct list_head resources; - struct acpi_device_wakeup_flags flags; - struct acpi_device_wakeup_context context; - struct wakeup_source *ws; - int prepare_count; - int enable_count; -}; - -struct acpi_device_perf_flags { - u8 reserved: 8; -}; - -struct acpi_device_perf_state; - -struct acpi_device_perf { - int state; - struct acpi_device_perf_flags flags; - int state_count; - struct acpi_device_perf_state *states; -}; - -struct acpi_device_dir { - struct proc_dir_entry *entry; -}; - -struct acpi_device_data { - const union acpi_object *pointer; - struct list_head properties; - const union acpi_object *of_compatible; - struct list_head subnodes; -}; - -struct acpi_scan_handler; - -struct acpi_hotplug_context; - -struct acpi_device_software_nodes; - -struct acpi_gpio_mapping; - -struct acpi_device { - u32 pld_crc; - int device_type; - acpi_handle handle; - struct fwnode_handle fwnode; - struct list_head wakeup_list; - struct list_head del_list; - struct acpi_device_status status; - struct acpi_device_flags flags; - struct acpi_device_pnp pnp; - struct acpi_device_power power; - struct acpi_device_wakeup wakeup; - struct acpi_device_perf performance; - struct acpi_device_dir dir; - struct acpi_device_data data; - struct acpi_scan_handler *handler; - struct acpi_hotplug_context *hp; - struct acpi_device_software_nodes *swnodes; - const struct acpi_gpio_mapping *driver_gpios; - void *driver_data; - struct device dev; - unsigned int physical_node_count; - unsigned int dep_unmet; - struct list_head physical_node_list; - struct mutex physical_node_lock; - void (*remove)(struct acpi_device *); -}; - -struct acpi_scan_handler { - struct list_head list_node; - const struct acpi_device_id *ids; - bool (*match)(const char *, const struct acpi_device_id **); - int (*attach)(struct acpi_device *, const struct acpi_device_id *); - void (*detach)(struct acpi_device *); - void (*post_eject)(struct acpi_device *); - void (*bind)(struct device *); - void (*unbind)(struct device *); - struct acpi_hotplug_profile hotplug; -}; - -typedef int (*acpi_hp_notify)(struct acpi_device *, u32); - -typedef void (*acpi_hp_uevent)(struct acpi_device *, u32); - -typedef void (*acpi_hp_fixup)(struct acpi_device *); - -struct acpi_hotplug_context { - struct acpi_device *self; - acpi_hp_notify notify; - acpi_hp_uevent uevent; - acpi_hp_fixup fixup; -}; - -struct acpi_device_perf_state { - struct { - u8 valid: 1; - u8 reserved: 7; - } flags; - u8 power; - u8 performance; - int latency; -}; - -struct acpi_device_software_node_port { - char port_name[9]; - u32 data_lanes[8]; - u32 lane_polarities[9]; - u64 link_frequencies[8]; - unsigned int port_nr; - bool crs_csi2_local; - struct property_entry port_props[2]; - struct property_entry ep_props[8]; - struct software_node_ref_args remote_ep[1]; -}; - -struct acpi_device_software_nodes { - struct property_entry dev_props[6]; - struct software_node *nodes; - const struct software_node **nodeptrs; - struct acpi_device_software_node_port *ports; - unsigned int num_ports; -}; - -struct acpi_gpio_params; - -struct acpi_gpio_mapping { - const char *name; - const struct acpi_gpio_params *data; - unsigned int size; - unsigned int quirks; -}; - -struct pingroup { - const char *name; - const unsigned int *pins; - size_t npins; -}; - -struct gpio_chip; - -struct pinctrl_gpio_range { - struct list_head node; - const char *name; - unsigned int id; - unsigned int base; - unsigned int pin_base; - unsigned int npins; - const unsigned int *pins; - struct gpio_chip *gc; -}; - -union gpio_irq_fwspec; - -struct gpio_irq_chip { - struct irq_chip *chip; - struct irq_domain *domain; - struct fwnode_handle *fwnode; - struct irq_domain *parent_domain; - int (*child_to_parent_hwirq)(struct gpio_chip *, unsigned int, unsigned int, unsigned int *, unsigned int *); - int (*populate_parent_alloc_arg)(struct gpio_chip *, union gpio_irq_fwspec *, unsigned int, unsigned int); - unsigned int (*child_offset_to_irq)(struct gpio_chip *, unsigned int); - struct irq_domain_ops child_irq_domain_ops; - irq_flow_handler_t handler; - unsigned int default_type; - struct lock_class_key *lock_key; - struct lock_class_key *request_key; - irq_flow_handler_t parent_handler; - union { - void *parent_handler_data; - void **parent_handler_data_array; - }; - unsigned int num_parents; - unsigned int *parents; - unsigned int *map; - bool threaded; - bool per_parent_data; - bool initialized; - bool domain_is_allocated_externally; - int (*init_hw)(struct gpio_chip *); - void (*init_valid_mask)(struct gpio_chip *, long unsigned int *, unsigned int); - long unsigned int *valid_mask; - unsigned int first; - void (*irq_enable)(struct irq_data *); - void (*irq_disable)(struct irq_data *); - void (*irq_unmask)(struct irq_data *); - void (*irq_mask)(struct irq_data *); -}; - -struct gpio_device; - -struct gpio_chip { - const char *label; - struct gpio_device *gpiodev; - struct device *parent; - struct fwnode_handle *fwnode; - struct module *owner; - int (*request)(struct gpio_chip *, unsigned int); - void (*free)(struct gpio_chip *, unsigned int); - int (*get_direction)(struct gpio_chip *, unsigned int); - int (*direction_input)(struct gpio_chip *, unsigned int); - int (*direction_output)(struct gpio_chip *, unsigned int, int); - int (*get)(struct gpio_chip *, unsigned int); - int (*get_multiple)(struct gpio_chip *, long unsigned int *, long unsigned int *); - int (*set)(struct gpio_chip *, unsigned int, int); - int (*set_multiple)(struct gpio_chip *, long unsigned int *, long unsigned int *); - int (*set_config)(struct gpio_chip *, unsigned int, long unsigned int); - int (*to_irq)(struct gpio_chip *, unsigned int); - void (*dbg_show)(struct seq_file *, struct gpio_chip *); - int (*init_valid_mask)(struct gpio_chip *, long unsigned int *, unsigned int); - int (*add_pin_ranges)(struct gpio_chip *); - int (*en_hw_timestamp)(struct gpio_chip *, u32, long unsigned int); - int (*dis_hw_timestamp)(struct gpio_chip *, u32, long unsigned int); - int base; - u16 ngpio; - u16 offset; - const char * const *names; - bool can_sleep; - long unsigned int (*read_reg)(void *); - void (*write_reg)(void *, long unsigned int); - bool be_bits; - void *reg_dat; - void *reg_set; - void *reg_clr; - void *reg_dir_out; - void *reg_dir_in; - bool bgpio_dir_unreadable; - bool bgpio_pinctrl; - int bgpio_bits; - raw_spinlock_t bgpio_lock; - long unsigned int bgpio_data; - long unsigned int bgpio_dir; - struct gpio_irq_chip irq; -}; - -struct pinfunction { - const char *name; - const char * const *groups; - size_t ngroups; -}; - -union gpio_irq_fwspec { - struct irq_fwspec fwspec; - msi_alloc_info_t msiinfo; -}; - -struct platform_driver { - int (*probe)(struct platform_device *); - void (*remove)(struct platform_device *); - void (*shutdown)(struct platform_device *); - int (*suspend)(struct platform_device *, pm_message_t); - int (*resume)(struct platform_device *); - struct device_driver driver; - const struct platform_device_id *id_table; - bool prevent_deferred_probe; - bool driver_managed_dma; -}; - -struct intel_pingroup { - struct pingroup grp; - short unsigned int mode; - const unsigned int *modes; -}; - -struct intel_function { - struct pinfunction func; -}; - -struct intel_padgroup { - unsigned int reg_num; - unsigned int base; - unsigned int size; - int gpio_base; - unsigned int padown_num; -}; - -struct intel_community { - unsigned int barno; - unsigned int padown_offset; - unsigned int padcfglock_offset; - unsigned int hostown_offset; - unsigned int is_offset; - unsigned int ie_offset; - unsigned int features; - unsigned int pin_base; - size_t npins; - unsigned int gpp_size; - unsigned int gpp_num_padown_regs; - const struct intel_padgroup *gpps; - size_t ngpps; - const unsigned int *pad_map; - short unsigned int nirqs; - short unsigned int acpi_space_id; - void *regs; - void *pad_regs; -}; - -struct intel_pinctrl_soc_data { - const char *uid; - const struct pinctrl_pin_desc *pins; - size_t npins; - const struct intel_pingroup *groups; - size_t ngroups; - const struct intel_function *functions; - size_t nfunctions; - const struct intel_community *communities; - size_t ncommunities; -}; - -struct intel_pad_context; - -struct intel_community_context; - -struct intel_pinctrl_context { - struct intel_pad_context *pads; - struct intel_community_context *communities; -}; - -struct intel_pad_context { - u32 padctrl0; - u32 padctrl1; -}; - -struct intel_community_context { - unsigned int intr_lines[16]; - u32 saved_intmask; -}; - -struct intel_pinctrl { - struct device *dev; - raw_spinlock_t lock; - struct pinctrl_desc pctldesc; - struct pinctrl_dev *pctldev; - struct gpio_chip chip; - const struct intel_pinctrl_soc_data *soc; - struct intel_community *communities; - size_t ncommunities; - struct intel_pinctrl_context context; - int irq; -}; - -struct gpio_array; - -struct gpio_desc; - -struct gpio_descs { - struct gpio_array *info; - unsigned int ndescs; - struct gpio_desc *desc[0]; -}; - -struct gpio_array { - struct gpio_desc **desc; - unsigned int size; - struct gpio_device *gdev; - long unsigned int *get_mask; - long unsigned int *set_mask; - long unsigned int invert_mask[0]; -}; - -struct gpio_desc_label; - -struct gpio_desc { - struct gpio_device *gdev; - long unsigned int flags; - struct gpio_desc_label *label; - const char *name; - unsigned int debounce_period_us; -}; - -enum gpiod_flags { - GPIOD_ASIS = 0, - GPIOD_IN = 1, - GPIOD_OUT_LOW = 3, - GPIOD_OUT_HIGH = 7, - GPIOD_OUT_LOW_OPEN_DRAIN = 11, - GPIOD_OUT_HIGH_OPEN_DRAIN = 15, -}; - -struct gpio_device { - struct device dev; - struct cdev chrdev; - int id; - struct module *owner; - struct gpio_chip *chip; - struct gpio_desc *descs; - long unsigned int *valid_mask; - struct srcu_struct desc_srcu; - unsigned int base; - u16 ngpio; - bool can_sleep; - const char *label; - void *data; - struct list_head list; - struct raw_notifier_head line_state_notifier; - rwlock_t line_state_lock; - struct workqueue_struct *line_state_wq; - struct blocking_notifier_head device_notifier; - struct srcu_struct srcu; - struct list_head pin_ranges; -}; - -struct gpio_desc_label { - struct callback_head rh; - char str[0]; -}; - -typedef struct { - rwlock_t *lock; - long unsigned int flags; -} class_write_lock_irqsave_t; - -typedef struct { - struct srcu_struct *lock; - int idx; -} class_srcu_t; - -enum hte_edge { - HTE_EDGE_NO_SETUP = 1, - HTE_RISING_EDGE_TS = 2, - HTE_FALLING_EDGE_TS = 4, -}; - -enum hte_return { - HTE_CB_HANDLED = 0, - HTE_RUN_SECOND_CB = 1, -}; - -struct hte_ts_data { - u64 tsc; - u64 seq; - int raw_level; -}; - -typedef enum hte_return (*hte_ts_cb_t)(struct hte_ts_data *, void *); - -typedef enum hte_return (*hte_ts_sec_cb_t)(void *); - -struct hte_line_attr { - u32 line_id; - void *line_data; - long unsigned int edge_flags; - const char *name; -}; - -struct hte_ts_desc { - struct hte_line_attr attr; - void *hte_data; -}; - -struct gpiochip_info { - char name[32]; - char label[32]; - __u32 lines; -}; - -enum gpio_v2_line_flag { - GPIO_V2_LINE_FLAG_USED = 1, - GPIO_V2_LINE_FLAG_ACTIVE_LOW = 2, - GPIO_V2_LINE_FLAG_INPUT = 4, - GPIO_V2_LINE_FLAG_OUTPUT = 8, - GPIO_V2_LINE_FLAG_EDGE_RISING = 16, - GPIO_V2_LINE_FLAG_EDGE_FALLING = 32, - GPIO_V2_LINE_FLAG_OPEN_DRAIN = 64, - GPIO_V2_LINE_FLAG_OPEN_SOURCE = 128, - GPIO_V2_LINE_FLAG_BIAS_PULL_UP = 256, - GPIO_V2_LINE_FLAG_BIAS_PULL_DOWN = 512, - GPIO_V2_LINE_FLAG_BIAS_DISABLED = 1024, - GPIO_V2_LINE_FLAG_EVENT_CLOCK_REALTIME = 2048, - GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE = 4096, -}; - -struct gpio_v2_line_values { - __u64 bits; - __u64 mask; -}; - -enum gpio_v2_line_attr_id { - GPIO_V2_LINE_ATTR_ID_FLAGS = 1, - GPIO_V2_LINE_ATTR_ID_OUTPUT_VALUES = 2, - GPIO_V2_LINE_ATTR_ID_DEBOUNCE = 3, -}; - -struct gpio_v2_line_attribute { - __u32 id; - __u32 padding; - union { - __u64 flags; - __u64 values; - __u32 debounce_period_us; - }; -}; - -struct gpio_v2_line_config_attribute { - struct gpio_v2_line_attribute attr; - __u64 mask; -}; - -struct gpio_v2_line_config { - __u64 flags; - __u32 num_attrs; - __u32 padding[5]; - struct gpio_v2_line_config_attribute attrs[10]; -}; - -struct gpio_v2_line_request { - __u32 offsets[64]; - char consumer[32]; - struct gpio_v2_line_config config; - __u32 num_lines; - __u32 event_buffer_size; - __u32 padding[5]; - __s32 fd; -}; - -struct gpio_v2_line_info { - char name[32]; - char consumer[32]; - __u32 offset; - __u32 num_attrs; - __u64 flags; - struct gpio_v2_line_attribute attrs[10]; - __u32 padding[4]; -}; - -enum gpio_v2_line_changed_type { - GPIO_V2_LINE_CHANGED_REQUESTED = 1, - GPIO_V2_LINE_CHANGED_RELEASED = 2, - GPIO_V2_LINE_CHANGED_CONFIG = 3, -}; - -struct gpio_v2_line_info_changed { - struct gpio_v2_line_info info; - __u64 timestamp_ns; - __u32 event_type; - __u32 padding[5]; -}; - -enum gpio_v2_line_event_id { - GPIO_V2_LINE_EVENT_RISING_EDGE = 1, - GPIO_V2_LINE_EVENT_FALLING_EDGE = 2, -}; - -struct gpio_v2_line_event { - __u64 timestamp_ns; - __u32 id; - __u32 offset; - __u32 seqno; - __u32 line_seqno; - __u32 padding[6]; -}; - -struct gpioline_info { - __u32 line_offset; - __u32 flags; - char name[32]; - char consumer[32]; -}; - -struct gpioline_info_changed { - struct gpioline_info info; - __u64 timestamp; - __u32 event_type; - __u32 padding[5]; -}; - -struct gpiohandle_request { - __u32 lineoffsets[64]; - __u32 flags; - __u8 default_values[64]; - char consumer_label[32]; - __u32 lines; - int fd; -}; - -struct gpiohandle_config { - __u32 flags; - __u8 default_values[64]; - __u32 padding[4]; -}; - -struct gpiohandle_data { - __u8 values[64]; -}; - -struct gpioevent_request { - __u32 lineoffset; - __u32 handleflags; - __u32 eventflags; - char consumer_label[32]; - int fd; -}; - -struct gpioevent_data { - __u64 timestamp; - __u32 id; -}; - -struct gpio_chip_guard { - struct gpio_device *gdev; - struct gpio_chip *gc; - int idx; -}; - -typedef struct gpio_chip_guard class_gpio_chip_guard_t; - -struct linehandle_state { - struct gpio_device *gdev; - const char *label; - struct gpio_desc *descs[64]; - u32 num_descs; -}; - -struct linereq; - -struct line { - struct gpio_desc *desc; - struct linereq *req; - unsigned int irq; - u64 edflags; - u64 timestamp_ns; - u32 req_seqno; - u32 line_seqno; - struct delayed_work work; - unsigned int sw_debounced; - unsigned int level; - struct hte_ts_desc hdesc; - int raw_level; - u32 total_discard_seq; - u32 last_seqno; -}; - -struct linereq { - struct gpio_device *gdev; - const char *label; - u32 num_lines; - wait_queue_head_t wait; - struct notifier_block device_unregistered_nb; - u32 event_buffer_size; - struct { - union { - struct __kfifo kfifo; - struct gpio_v2_line_event *type; - const struct gpio_v2_line_event *const_type; - char (*rectype)[0]; - struct gpio_v2_line_event *ptr; - const struct gpio_v2_line_event *ptr_const; - }; - struct gpio_v2_line_event buf[0]; - } events; - atomic_t seqno; - struct mutex config_mutex; - struct line lines[0]; -}; - -struct lineevent_state { - struct gpio_device *gdev; - const char *label; - struct gpio_desc *desc; - u32 eflags; - int irq; - wait_queue_head_t wait; - struct notifier_block device_unregistered_nb; - struct { - union { - struct __kfifo kfifo; - struct gpioevent_data *type; - const struct gpioevent_data *const_type; - char (*rectype)[0]; - struct gpioevent_data *ptr; - const struct gpioevent_data *ptr_const; - }; - struct gpioevent_data buf[16]; - } events; - u64 timestamp; -}; - -struct gpio_chardev_data { - struct gpio_device *gdev; - wait_queue_head_t wait; - struct { - union { - struct __kfifo kfifo; - struct gpio_v2_line_info_changed *type; - const struct gpio_v2_line_info_changed *const_type; - char (*rectype)[0]; - struct gpio_v2_line_info_changed *ptr; - const struct gpio_v2_line_info_changed *ptr_const; - }; - struct gpio_v2_line_info_changed buf[32]; - } events; - struct notifier_block lineinfo_changed_nb; - struct notifier_block device_unregistered_nb; - long unsigned int *watched_lines; - atomic_t watch_abi_version; - struct file *fp; -}; - -struct lineinfo_changed_ctx { - struct work_struct work; - struct gpio_v2_line_info_changed chg; - struct gpio_device *gdev; - struct gpio_chardev_data *cdev; -}; - -typedef u64 acpi_size; - -typedef char *acpi_string; - -struct acpi_object_list { - u32 count; - union acpi_object *pointer; -}; - -struct acpi_buffer { - acpi_size length; - void *pointer; -}; - -typedef void (*acpi_object_handler)(acpi_handle, void *); - -struct acpi_connection_info { - u8 *connection; - u16 length; - u8 access_length; -}; - -struct acpi_resource_irq { - u8 descriptor_length; - u8 triggering; - u8 polarity; - u8 shareable; - u8 wake_capable; - u8 interrupt_count; - union { - u8 interrupt; - struct { - struct {} __Empty_interrupts; - u8 interrupts[0]; - }; - }; -}; - -struct acpi_resource_dma { - u8 type; - u8 bus_master; - u8 transfer; - u8 channel_count; - union { - u8 channel; - struct { - struct {} __Empty_channels; - u8 channels[0]; - }; - }; -}; - -struct acpi_resource_start_dependent { - u8 descriptor_length; - u8 compatibility_priority; - u8 performance_robustness; -}; - -struct acpi_resource_io { - u8 io_decode; - u8 alignment; - u8 address_length; - u16 minimum; - u16 maximum; -} __attribute__((packed)); - -struct acpi_resource_fixed_io { - u16 address; - u8 address_length; -} __attribute__((packed)); - -struct acpi_resource_fixed_dma { - u16 request_lines; - u16 channels; - u8 width; -} __attribute__((packed)); - -struct acpi_resource_vendor { - u16 byte_length; - u8 byte_data[0]; -}; - -struct acpi_resource_vendor_typed { - u16 byte_length; - u8 uuid_subtype; - u8 uuid[16]; - u8 byte_data[0]; -} __attribute__((packed)); - -struct acpi_resource_end_tag { - u8 checksum; -}; - -struct acpi_resource_memory24 { - u8 write_protect; - u16 minimum; - u16 maximum; - u16 alignment; - u16 address_length; -} __attribute__((packed)); - -struct acpi_resource_memory32 { - u8 write_protect; - u32 minimum; - u32 maximum; - u32 alignment; - u32 address_length; -} __attribute__((packed)); - -struct acpi_resource_fixed_memory32 { - u8 write_protect; - u32 address; - u32 address_length; -} __attribute__((packed)); - -struct acpi_memory_attribute { - u8 write_protect; - u8 caching; - u8 range_type; - u8 translation; -}; - -struct acpi_io_attribute { - u8 range_type; - u8 translation; - u8 translation_type; - u8 reserved1; -}; - -union acpi_resource_attribute { - struct acpi_memory_attribute mem; - struct acpi_io_attribute io; - u8 type_specific; -}; - -struct acpi_resource_label { - u16 string_length; - char *string_ptr; -} __attribute__((packed)); - -struct acpi_resource_source { - u8 index; - u16 string_length; - char *string_ptr; -} __attribute__((packed)); - -struct acpi_address16_attribute { - u16 granularity; - u16 minimum; - u16 maximum; - u16 translation_offset; - u16 address_length; -}; - -struct acpi_address32_attribute { - u32 granularity; - u32 minimum; - u32 maximum; - u32 translation_offset; - u32 address_length; -}; - -struct acpi_address64_attribute { - u64 granularity; - u64 minimum; - u64 maximum; - u64 translation_offset; - u64 address_length; -}; - -struct acpi_resource_address { - u8 resource_type; - u8 producer_consumer; - u8 decode; - u8 min_address_fixed; - u8 max_address_fixed; - union acpi_resource_attribute info; -}; - -struct acpi_resource_address16 { - u8 resource_type; - u8 producer_consumer; - u8 decode; - u8 min_address_fixed; - u8 max_address_fixed; - union acpi_resource_attribute info; - struct acpi_address16_attribute address; - struct acpi_resource_source resource_source; -} __attribute__((packed)); - -struct acpi_resource_address32 { - u8 resource_type; - u8 producer_consumer; - u8 decode; - u8 min_address_fixed; - u8 max_address_fixed; - union acpi_resource_attribute info; - struct acpi_address32_attribute address; - struct acpi_resource_source resource_source; -} __attribute__((packed)); - -struct acpi_resource_address64 { - u8 resource_type; - u8 producer_consumer; - u8 decode; - u8 min_address_fixed; - u8 max_address_fixed; - union acpi_resource_attribute info; - struct acpi_address64_attribute address; - struct acpi_resource_source resource_source; -} __attribute__((packed)); - -struct acpi_resource_extended_address64 { - u8 resource_type; - u8 producer_consumer; - u8 decode; - u8 min_address_fixed; - u8 max_address_fixed; - union acpi_resource_attribute info; - u8 revision_ID; - struct acpi_address64_attribute address; - u64 type_specific; -} __attribute__((packed)); - -struct acpi_resource_extended_irq { - u8 producer_consumer; - u8 triggering; - u8 polarity; - u8 shareable; - u8 wake_capable; - u8 interrupt_count; - struct acpi_resource_source resource_source; - union { - u32 interrupt; - struct { - struct {} __Empty_interrupts; - u32 interrupts[0]; - }; - }; -} __attribute__((packed)); - -struct acpi_resource_generic_register { - u8 space_id; - u8 bit_width; - u8 bit_offset; - u8 access_size; - u64 address; -} __attribute__((packed)); - -struct acpi_resource_gpio { - u8 revision_id; - u8 connection_type; - u8 producer_consumer; - u8 pin_config; - u8 shareable; - u8 wake_capable; - u8 io_restriction; - u8 triggering; - u8 polarity; - u16 drive_strength; - u16 debounce_timeout; - u16 pin_table_length; - u16 vendor_length; - struct acpi_resource_source resource_source; - u16 *pin_table; - u8 *vendor_data; -} __attribute__((packed)); - -struct acpi_resource_common_serialbus { - u8 revision_id; - u8 type; - u8 producer_consumer; - u8 slave_mode; - u8 connection_sharing; - u8 type_revision_id; - u16 type_data_length; - u16 vendor_length; - struct acpi_resource_source resource_source; - u8 *vendor_data; -} __attribute__((packed)); - -struct acpi_resource_i2c_serialbus { - u8 revision_id; - u8 type; - u8 producer_consumer; - u8 slave_mode; - u8 connection_sharing; - u8 type_revision_id; - u16 type_data_length; - u16 vendor_length; - struct acpi_resource_source resource_source; - u8 *vendor_data; - u8 access_mode; - u16 slave_address; - u32 connection_speed; -} __attribute__((packed)); - -struct acpi_resource_spi_serialbus { - u8 revision_id; - u8 type; - u8 producer_consumer; - u8 slave_mode; - u8 connection_sharing; - u8 type_revision_id; - u16 type_data_length; - u16 vendor_length; - struct acpi_resource_source resource_source; - u8 *vendor_data; - u8 wire_mode; - u8 device_polarity; - u8 data_bit_length; - u8 clock_phase; - u8 clock_polarity; - u16 device_selection; - u32 connection_speed; -} __attribute__((packed)); - -struct acpi_resource_uart_serialbus { - u8 revision_id; - u8 type; - u8 producer_consumer; - u8 slave_mode; - u8 connection_sharing; - u8 type_revision_id; - u16 type_data_length; - u16 vendor_length; - struct acpi_resource_source resource_source; - u8 *vendor_data; - u8 endian; - u8 data_bits; - u8 stop_bits; - u8 flow_control; - u8 parity; - u8 lines_enabled; - u16 rx_fifo_size; - u16 tx_fifo_size; - u32 default_baud_rate; -} __attribute__((packed)); - -struct acpi_resource_csi2_serialbus { - u8 revision_id; - u8 type; - u8 producer_consumer; - u8 slave_mode; - u8 connection_sharing; - u8 type_revision_id; - u16 type_data_length; - u16 vendor_length; - struct acpi_resource_source resource_source; - u8 *vendor_data; - u8 local_port_instance; - u8 phy_type; -} __attribute__((packed)); - -struct acpi_resource_pin_function { - u8 revision_id; - u8 pin_config; - u8 shareable; - u16 function_number; - u16 pin_table_length; - u16 vendor_length; - struct acpi_resource_source resource_source; - u16 *pin_table; - u8 *vendor_data; -} __attribute__((packed)); - -struct acpi_resource_pin_config { - u8 revision_id; - u8 producer_consumer; - u8 shareable; - u8 pin_config_type; - u32 pin_config_value; - u16 pin_table_length; - u16 vendor_length; - struct acpi_resource_source resource_source; - u16 *pin_table; - u8 *vendor_data; -} __attribute__((packed)); - -struct acpi_resource_clock_input { - u8 revision_id; - u8 mode; - u8 scale; - u16 frequency_divisor; - u32 frequency_numerator; - struct acpi_resource_source resource_source; -} __attribute__((packed)); - -struct acpi_resource_pin_group { - u8 revision_id; - u8 producer_consumer; - u16 pin_table_length; - u16 vendor_length; - u16 *pin_table; - struct acpi_resource_label resource_label; - u8 *vendor_data; -} __attribute__((packed)); - -struct acpi_resource_pin_group_function { - u8 revision_id; - u8 producer_consumer; - u8 shareable; - u16 function_number; - u16 vendor_length; - struct acpi_resource_source resource_source; - struct acpi_resource_label resource_source_label; - u8 *vendor_data; -} __attribute__((packed)); - -struct acpi_resource_pin_group_config { - u8 revision_id; - u8 producer_consumer; - u8 shareable; - u8 pin_config_type; - u32 pin_config_value; - u16 vendor_length; - struct acpi_resource_source resource_source; - struct acpi_resource_label resource_source_label; - u8 *vendor_data; -} __attribute__((packed)); - -union acpi_resource_data { - struct acpi_resource_irq irq; - struct acpi_resource_dma dma; - struct acpi_resource_start_dependent start_dpf; - struct acpi_resource_io io; - struct acpi_resource_fixed_io fixed_io; - struct acpi_resource_fixed_dma fixed_dma; - struct acpi_resource_vendor vendor; - struct acpi_resource_vendor_typed vendor_typed; - struct acpi_resource_end_tag end_tag; - struct acpi_resource_memory24 memory24; - struct acpi_resource_memory32 memory32; - struct acpi_resource_fixed_memory32 fixed_memory32; - struct acpi_resource_address16 address16; - struct acpi_resource_address32 address32; - struct acpi_resource_address64 address64; - struct acpi_resource_extended_address64 ext_address64; - struct acpi_resource_extended_irq extended_irq; - struct acpi_resource_generic_register generic_reg; - struct acpi_resource_gpio gpio; - struct acpi_resource_i2c_serialbus i2c_serial_bus; - struct acpi_resource_spi_serialbus spi_serial_bus; - struct acpi_resource_uart_serialbus uart_serial_bus; - struct acpi_resource_csi2_serialbus csi2_serial_bus; - struct acpi_resource_common_serialbus common_serial_bus; - struct acpi_resource_pin_function pin_function; - struct acpi_resource_pin_config pin_config; - struct acpi_resource_pin_group pin_group; - struct acpi_resource_pin_group_function pin_group_function; - struct acpi_resource_pin_group_config pin_group_config; - struct acpi_resource_clock_input clock_input; - struct acpi_resource_address address; -}; - -struct acpi_resource { - u32 type; - u32 length; - union acpi_resource_data data; -}; - -typedef acpi_status (*acpi_walk_resource_callback)(struct acpi_resource *, void *); - -struct acpi_gpio_params { - unsigned int crs_entry_index; - short unsigned int line_index; - bool active_low; -}; - -enum gpio_lookup_flags { - GPIO_ACTIVE_HIGH = 0, - GPIO_ACTIVE_LOW = 1, - GPIO_OPEN_DRAIN = 2, - GPIO_OPEN_SOURCE = 4, - GPIO_PERSISTENT = 0, - GPIO_TRANSITORY = 8, - GPIO_PULL_UP = 16, - GPIO_PULL_DOWN = 32, - GPIO_PULL_DISABLE = 64, - GPIO_LOOKUP_FLAGS_DEFAULT = 0, -}; - -enum acpi_gpio_ignore_list { - ACPI_GPIO_IGNORE_WAKE = 0, - ACPI_GPIO_IGNORE_INTERRUPT = 1, -}; - -struct acpi_gpio_event { - struct list_head node; - acpi_handle handle; - irq_handler_t handler; - unsigned int pin; - unsigned int irq; - long unsigned int irqflags; - bool irq_is_wake; - bool irq_requested; - struct gpio_desc *desc; -}; - -struct acpi_gpio_connection { - struct list_head node; - unsigned int pin; - struct gpio_desc *desc; -}; - -struct acpi_gpio_chip { - struct acpi_connection_info conn_info; - struct list_head conns; - struct mutex conn_lock; - struct gpio_chip *chip; - struct list_head events; - struct list_head deferred_req_irqs_list_entry; -}; - -struct acpi_gpio_info { - struct acpi_device *adev; - enum gpiod_flags flags; - bool gpioint; - bool wake_capable; - int pin_config; - int polarity; - int triggering; - unsigned int debounce; - unsigned int quirks; -}; - -struct acpi_gpio_lookup { - struct acpi_gpio_params params; - struct acpi_gpio_info *info; - struct gpio_desc *desc; - int n; -}; - -enum { - TPS6586X_INT_PLDO_0 = 0, - TPS6586X_INT_PLDO_1 = 1, - TPS6586X_INT_PLDO_2 = 2, - TPS6586X_INT_PLDO_3 = 3, - TPS6586X_INT_PLDO_4 = 4, - TPS6586X_INT_PLDO_5 = 5, - TPS6586X_INT_PLDO_6 = 6, - TPS6586X_INT_PLDO_7 = 7, - TPS6586X_INT_COMP_DET = 8, - TPS6586X_INT_ADC = 9, - TPS6586X_INT_PLDO_8 = 10, - TPS6586X_INT_PLDO_9 = 11, - TPS6586X_INT_PSM_0 = 12, - TPS6586X_INT_PSM_1 = 13, - TPS6586X_INT_PSM_2 = 14, - TPS6586X_INT_PSM_3 = 15, - TPS6586X_INT_RTC_ALM1 = 16, - TPS6586X_INT_ACUSB_OVP = 17, - TPS6586X_INT_USB_DET = 18, - TPS6586X_INT_AC_DET = 19, - TPS6586X_INT_BAT_DET = 20, - TPS6586X_INT_CHG_STAT = 21, - TPS6586X_INT_CHG_TEMP = 22, - TPS6586X_INT_PP = 23, - TPS6586X_INT_RESUME = 24, - TPS6586X_INT_LOW_SYS = 25, - TPS6586X_INT_RTC_ALM2 = 26, -}; - -struct tps6586x_subdev_info { - int id; - const char *name; - void *platform_data; - struct device_node *of_node; -}; - -struct regulator_init_data; - -struct tps6586x_platform_data { - int num_subdevs; - struct tps6586x_subdev_info *subdevs; - int gpio_base; - int irq_base; - bool pm_off; - struct regulator_init_data *reg_init_data[15]; -}; - -struct tps6586x_gpio { - struct gpio_chip gpio_chip; - struct device *parent; -}; - -struct pwm_lpss_boardinfo { - long unsigned int clk_rate; - unsigned int npwm; - long unsigned int base_unit_bits; - bool bypass; - bool other_devices_aml_touches_pwm_regs; -}; - -enum led_brightness { - LED_OFF = 0, - LED_ON = 1, - LED_HALF = 127, - LED_FULL = 255, -}; - -struct led_hw_trigger_type { - int dummy; -}; - -struct led_pattern; - -struct led_trigger; - -struct led_classdev { - const char *name; - unsigned int brightness; - unsigned int max_brightness; - unsigned int color; - int flags; - long unsigned int work_flags; - void (*brightness_set)(struct led_classdev *, enum led_brightness); - int (*brightness_set_blocking)(struct led_classdev *, enum led_brightness); - enum led_brightness (*brightness_get)(struct led_classdev *); - int (*blink_set)(struct led_classdev *, long unsigned int *, long unsigned int *); - int (*pattern_set)(struct led_classdev *, struct led_pattern *, u32, int); - int (*pattern_clear)(struct led_classdev *); - struct device *dev; - const struct attribute_group **groups; - struct list_head node; - const char *default_trigger; - long unsigned int blink_delay_on; - long unsigned int blink_delay_off; - struct timer_list blink_timer; - int blink_brightness; - int new_blink_brightness; - void (*flash_resume)(struct led_classdev *); - struct workqueue_struct *wq; - struct work_struct set_brightness_work; - int delayed_set_value; - long unsigned int delayed_delay_on; - long unsigned int delayed_delay_off; - struct rw_semaphore trigger_lock; - struct led_trigger *trigger; - struct list_head trig_list; - void *trigger_data; - bool activated; - struct led_hw_trigger_type *trigger_type; - const char *hw_control_trigger; - int (*hw_control_is_supported)(struct led_classdev *, long unsigned int); - int (*hw_control_set)(struct led_classdev *, long unsigned int); - int (*hw_control_get)(struct led_classdev *, long unsigned int *); - struct device * (*hw_control_get_device)(struct led_classdev *); - int brightness_hw_changed; - struct kernfs_node *brightness_hw_changed_kn; - struct mutex led_access; -}; - -struct led_pattern { - u32 delta_t; - int brightness; -}; - -struct led_trigger { - const char *name; - int (*activate)(struct led_classdev *); - void (*deactivate)(struct led_classdev *); - enum led_brightness brightness; - struct led_hw_trigger_type *trigger_type; - spinlock_t leddev_list_lock; - struct list_head led_cdevs; - struct list_head next_trig; - const struct attribute_group **groups; -}; - -typedef int (*device_match_t)(struct device *, const void *); - -struct hotplug_slot_ops; - -struct hotplug_slot { - const struct hotplug_slot_ops *ops; - struct pci_slot *pci_slot; - struct module *owner; - const char *mod_name; -}; - -enum { - PCI_STD_RESOURCES = 0, - PCI_STD_RESOURCE_END = 5, - PCI_ROM_RESOURCE = 6, - PCI_IOV_RESOURCES = 7, - PCI_IOV_RESOURCE_END = 12, - PCI_BRIDGE_RESOURCES = 13, - PCI_BRIDGE_RESOURCE_END = 16, - PCI_NUM_RESOURCES = 17, - DEVICE_COUNT_RESOURCE = 17, -}; - -enum { - pci_channel_io_normal = 1, - pci_channel_io_frozen = 2, - pci_channel_io_perm_failure = 3, -}; - -enum pci_dev_flags { - PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG = 1, - PCI_DEV_FLAGS_NO_D3 = 2, - PCI_DEV_FLAGS_ASSIGNED = 4, - PCI_DEV_FLAGS_ACS_ENABLED_QUIRK = 8, - PCI_DEV_FLAG_PCIE_BRIDGE_ALIAS = 32, - PCI_DEV_FLAGS_NO_BUS_RESET = 64, - PCI_DEV_FLAGS_NO_PM_RESET = 128, - PCI_DEV_FLAGS_VPD_REF_F0 = 256, - PCI_DEV_FLAGS_BRIDGE_XLATE_ROOT = 512, - PCI_DEV_FLAGS_NO_FLR_RESET = 1024, - PCI_DEV_FLAGS_NO_RELAXED_ORDERING = 2048, - PCI_DEV_FLAGS_HAS_MSI_MASKING = 4096, - PCI_DEV_FLAGS_MSIX_TOUCH_ENTRY_DATA_FIRST = 8192, - PCI_DEV_FLAGS_NO_RRS_SV = 16384, -}; - -enum pci_bus_flags { - PCI_BUS_FLAGS_NO_MSI = 1, - PCI_BUS_FLAGS_NO_MMRBC = 2, - PCI_BUS_FLAGS_NO_AERSID = 4, - PCI_BUS_FLAGS_NO_EXTCFG = 8, -}; - -enum pci_bus_speed { - PCI_SPEED_33MHz = 0, - PCI_SPEED_66MHz = 1, - PCI_SPEED_66MHz_PCIX = 2, - PCI_SPEED_100MHz_PCIX = 3, - PCI_SPEED_133MHz_PCIX = 4, - PCI_SPEED_66MHz_PCIX_ECC = 5, - PCI_SPEED_100MHz_PCIX_ECC = 6, - PCI_SPEED_133MHz_PCIX_ECC = 7, - PCI_SPEED_66MHz_PCIX_266 = 9, - PCI_SPEED_100MHz_PCIX_266 = 10, - PCI_SPEED_133MHz_PCIX_266 = 11, - AGP_UNKNOWN = 12, - AGP_1X = 13, - AGP_2X = 14, - AGP_4X = 15, - AGP_8X = 16, - PCI_SPEED_66MHz_PCIX_533 = 17, - PCI_SPEED_100MHz_PCIX_533 = 18, - PCI_SPEED_133MHz_PCIX_533 = 19, - PCIE_SPEED_2_5GT = 20, - PCIE_SPEED_5_0GT = 21, - PCIE_SPEED_8_0GT = 22, - PCIE_SPEED_16_0GT = 23, - PCIE_SPEED_32_0GT = 24, - PCIE_SPEED_64_0GT = 25, - PCI_SPEED_UNKNOWN = 255, -}; - -struct pci_sriov { - int pos; - int nres; - u32 cap; - u16 ctrl; - u16 total_VFs; - u16 initial_VFs; - u16 num_VFs; - u16 offset; - u16 stride; - u16 vf_device; - u32 pgsz; - u8 link; - u8 max_VF_buses; - u16 driver_max_VFs; - struct pci_dev *dev; - struct pci_dev *self; - u32 class; - u8 hdr_type; - u16 subsystem_vendor; - u16 subsystem_device; - resource_size_t barsz[6]; - u16 vf_rebar_cap; - bool drivers_autoprobe; -}; - -struct rcec_ea { - u8 nextbusn; - u8 lastbusn; - u32 bitmap; -}; - -struct pci_host_bridge { - struct device dev; - struct pci_bus *bus; - struct pci_ops *ops; - struct pci_ops *child_ops; - void *sysdata; - int busnr; - int domain_nr; - struct list_head windows; - struct list_head dma_ranges; - u8 (*swizzle_irq)(struct pci_dev *, u8 *); - int (*map_irq)(const struct pci_dev *, u8, u8); - void (*release_fn)(struct pci_host_bridge *); - int (*enable_device)(struct pci_host_bridge *, struct pci_dev *); - void (*disable_device)(struct pci_host_bridge *, struct pci_dev *); - void *release_data; - unsigned int ignore_reset_delay: 1; - unsigned int no_ext_tags: 1; - unsigned int no_inc_mrrs: 1; - unsigned int native_aer: 1; - unsigned int native_pcie_hotplug: 1; - unsigned int native_shpc_hotplug: 1; - unsigned int native_pme: 1; - unsigned int native_ltr: 1; - unsigned int native_dpc: 1; - unsigned int native_cxl_error: 1; - unsigned int preserve_config: 1; - unsigned int size_windows: 1; - unsigned int msi_domain: 1; - resource_size_t (*align_resource)(struct pci_dev *, const struct resource *, resource_size_t, resource_size_t, resource_size_t); - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long unsigned int private[0]; -}; - -typedef u64 pci_bus_addr_t; - -struct pci_bus_region { - pci_bus_addr_t start; - pci_bus_addr_t end; -}; - -enum { - PCI_REASSIGN_ALL_RSRC = 1, - PCI_REASSIGN_ALL_BUS = 2, - PCI_PROBE_ONLY = 4, - PCI_CAN_SKIP_ISA_ALIGN = 8, - PCI_ENABLE_PROC_DOMAINS = 16, - PCI_COMPAT_DOMAIN_0 = 32, - PCI_SCAN_ALL_PCIE_DEVS = 64, -}; - -enum pcie_bus_config_types { - PCIE_BUS_TUNE_OFF = 0, - PCIE_BUS_DEFAULT = 1, - PCIE_BUS_SAFE = 2, - PCIE_BUS_PERFORMANCE = 3, - PCIE_BUS_PEER2PEER = 4, -}; - -enum pci_fixup_pass { - pci_fixup_early = 0, - pci_fixup_header = 1, - pci_fixup_final = 2, - pci_fixup_enable = 3, - pci_fixup_resume = 4, - pci_fixup_suspend = 5, - pci_fixup_resume_early = 6, - pci_fixup_suspend_late = 7, -}; - -struct hotplug_slot_ops { - int (*enable_slot)(struct hotplug_slot *); - int (*disable_slot)(struct hotplug_slot *); - int (*set_attention_status)(struct hotplug_slot *, u8); - int (*hardware_test)(struct hotplug_slot *, u32); - int (*get_power_status)(struct hotplug_slot *, u8 *); - int (*get_attention_status)(struct hotplug_slot *, u8 *); - int (*get_latch_status)(struct hotplug_slot *, u8 *); - int (*get_adapter_status)(struct hotplug_slot *, u8 *); - int (*reset_slot)(struct hotplug_slot *, bool); -}; - -enum pci_bar_type { - pci_bar_unknown = 0, - pci_bar_io = 1, - pci_bar_mem32 = 2, - pci_bar_mem64 = 3, -}; - -enum equalization_preset_type { - EQ_PRESET_TYPE_8GTS = 0, - EQ_PRESET_TYPE_16GTS = 1, - EQ_PRESET_TYPE_32GTS = 2, - EQ_PRESET_TYPE_64GTS = 3, - EQ_PRESET_TYPE_MAX = 4, -}; - -struct pci_domain_busn_res { - struct list_head list; - struct resource res; - int domain_nr; -}; - -struct pci_dev_resource { - struct list_head list; - struct resource *res; - struct pci_dev *dev; - resource_size_t start; - resource_size_t end; - resource_size_t add_size; - resource_size_t min_align; - long unsigned int flags; -}; - -enum release_type { - leaf_only = 0, - whole_subtree = 1, -}; - -enum enable_type { - undefined = -1, - user_disabled = 0, - auto_disabled = 1, - user_enabled = 2, - auto_enabled = 3, -}; - -enum msi_domain_ids { - MSI_DEFAULT_DOMAIN = 0, - MSI_MAX_DEVICE_IRQDOMAINS = 1, -}; - -struct msi_domain_template { - char name[48]; - struct irq_chip chip; - struct msi_domain_ops ops; - struct msi_domain_info info; - msi_alloc_info_t alloc_info; -}; - -enum support_mode { - ALLOW_LEGACY = 0, - DENY_LEGACY = 1, -}; - -typedef struct rw_semaphore *class_rwsem_read_t; - -typedef struct rw_semaphore *class_rwsem_write_t; - -struct pcie_bwctrl_data { - struct mutex set_speed_mutex; - struct thermal_cooling_device *cdev; -}; - -struct pcie_device { - int irq; - struct pci_dev *port; - u32 service; - void *priv_data; - struct device device; -}; - -struct pcie_port_service_driver { - const char *name; - int (*probe)(struct pcie_device *); - void (*remove)(struct pcie_device *); - int (*suspend)(struct pcie_device *); - int (*resume_noirq)(struct pcie_device *); - int (*resume)(struct pcie_device *); - int (*runtime_suspend)(struct pcie_device *); - int (*runtime_resume)(struct pcie_device *); - int (*slot_reset)(struct pcie_device *); - int port_type; - u32 service; - struct device_driver driver; -}; - -enum pci_ers_result { - PCI_ERS_RESULT_NONE = 1, - PCI_ERS_RESULT_CAN_RECOVER = 2, - PCI_ERS_RESULT_NEED_RESET = 3, - PCI_ERS_RESULT_DISCONNECT = 4, - PCI_ERS_RESULT_RECOVERED = 5, - PCI_ERS_RESULT_NO_AER_DRIVER = 6, -}; - -struct pcie_ptm_ops { - int (*check_capability)(void *); - int (*context_update_write)(void *, u8); - int (*context_update_read)(void *, u8 *); - int (*context_valid_write)(void *, bool); - int (*context_valid_read)(void *, bool *); - int (*local_clock_read)(void *, u64 *); - int (*master_clock_read)(void *, u64 *); - int (*t1_read)(void *, u64 *); - int (*t2_read)(void *, u64 *); - int (*t3_read)(void *, u64 *); - int (*t4_read)(void *, u64 *); - bool (*context_update_visible)(void *); - bool (*context_valid_visible)(void *); - bool (*local_clock_visible)(void *); - bool (*master_clock_visible)(void *); - bool (*t1_visible)(void *); - bool (*t2_visible)(void *); - bool (*t3_visible)(void *); - bool (*t4_visible)(void *); -}; - -struct pci_ptm_debugfs { - struct dentry *debugfs; - const struct pcie_ptm_ops *ops; - struct mutex lock; - void *pdata; -}; - -struct pci_cap_saved_data { - u16 cap_nr; - bool cap_extended; - unsigned int size; - u32 data[0]; -}; - -struct pci_cap_saved_state { - struct hlist_node next; - struct pci_cap_saved_data cap; -}; - -struct bus_attribute { - struct attribute attr; - ssize_t (*show)(const struct bus_type *, char *); - ssize_t (*store)(const struct bus_type *, const char *, size_t); -}; - -enum pci_mmap_state { - pci_mmap_io = 0, - pci_mmap_mem = 1, -}; - -enum pcie_link_width { - PCIE_LNK_WIDTH_RESRV = 0, - PCIE_LNK_X1 = 1, - PCIE_LNK_X2 = 2, - PCIE_LNK_X4 = 4, - PCIE_LNK_X8 = 8, - PCIE_LNK_X12 = 12, - PCIE_LNK_X16 = 16, - PCIE_LNK_X32 = 32, - PCIE_LNK_WIDTH_UNKNOWN = 255, -}; - -enum pci_mmap_api { - PCI_MMAP_SYSFS = 0, - PCI_MMAP_PROCFS = 1, -}; - -struct pci_reset_fn_method { - int (*reset_fn)(struct pci_dev *, bool); - char *name; -}; - -struct pci_slot_attribute { - struct attribute attr; - ssize_t (*show)(struct pci_slot *, char *); - ssize_t (*store)(struct pci_slot *, const char *, size_t); -}; - -struct slot { - u8 number; - unsigned int devfn; - struct pci_bus *bus; - struct pci_dev *dev; - unsigned int latch_status: 1; - unsigned int adapter_status: 1; - unsigned int extracting; - struct hotplug_slot hotplug_slot; - struct list_head slot_list; -}; - -struct controller { - struct pcie_device *pcie; - u64 dsn; - u32 slot_cap; - unsigned int inband_presence_disabled: 1; - u16 slot_ctrl; - struct mutex ctrl_lock; - long unsigned int cmd_started; - unsigned int cmd_busy: 1; - wait_queue_head_t queue; - atomic_t pending_events; - unsigned int notification_enabled: 1; - unsigned int power_fault_detected; - struct task_struct *poll_thread; - u8 state; - struct mutex state_lock; - struct delayed_work button_work; - struct hotplug_slot hotplug_slot; - struct rw_semaphore reset_lock; - unsigned int depth; - unsigned int ist_running; - int request_result; - wait_queue_head_t requester; -}; - -struct controller___2; - -struct slot___2 { - u8 bus; - u8 device; - u16 status; - u32 number; - u8 is_a_board; - u8 state; - u8 attention_save; - u8 presence_save; - u8 latch_save; - u8 pwr_save; - struct controller___2 *ctrl; - struct hotplug_slot hotplug_slot; - struct list_head slot_list; - struct delayed_work work; - struct mutex lock; - struct workqueue_struct *wq; - u8 hp_slot; -}; - -struct controller___2 { - struct mutex crit_sect; - struct mutex cmd_lock; - int num_slots; - int slot_num_inc; - struct pci_dev *pci_dev; - struct list_head slot_list; - wait_queue_head_t queue; - u8 slot_device_offset; - u32 pcix_misc2_reg; - u32 first_slot; - u32 cap_offset; - long unsigned int mmio_base; - long unsigned int mmio_size; - void *creg; - struct timer_list poll_timer; -}; - -enum ctrl_offsets { - BASE_OFFSET = 0, - SLOT_AVAIL1 = 4, - SLOT_AVAIL2 = 8, - SLOT_CONFIG = 12, - SEC_BUS_CONFIG = 16, - MSI_CTRL = 18, - PROG_INTERFACE = 19, - CMD = 20, - CMD_STATUS = 22, - INTR_LOC = 24, - SERR_LOC = 28, - SERR_INTR_ENABLE = 32, - SLOT1 = 36, -}; - -struct pci_doe_mb { - struct pci_dev *pdev; - u16 cap_offset; - struct xarray feats; - wait_queue_head_t wq; - struct workqueue_struct *work_queue; - long unsigned int flags; - struct device_attribute *sysfs_attrs; -}; - -struct pci_doe_feature { - u16 vid; - u8 type; -}; - -struct pci_doe_task { - struct pci_doe_feature feat; - const __le32 *request_pl; - size_t request_pl_sz; - __le32 *response_pl; - size_t response_pl_sz; - int rv; - void (*complete)(struct pci_doe_task *); - void *private; - struct work_struct work; - struct pci_doe_mb *doe_mb; -}; - -struct pci_epf_device_id { - char name[20]; - kernel_ulong_t driver_data; -}; - -enum pci_interrupt_pin { - PCI_INTERRUPT_UNKNOWN = 0, - PCI_INTERRUPT_INTA = 1, - PCI_INTERRUPT_INTB = 2, - PCI_INTERRUPT_INTC = 3, - PCI_INTERRUPT_INTD = 4, -}; - -enum pci_barno { - NO_BAR = -1, - BAR_0 = 0, - BAR_1 = 1, - BAR_2 = 2, - BAR_3 = 3, - BAR_4 = 4, - BAR_5 = 5, -}; - -struct pci_epf_header { - u16 vendorid; - u16 deviceid; - u8 revid; - u8 progif_code; - u8 subclass_code; - u8 baseclass_code; - u8 cache_line_size; - u16 subsys_vendor_id; - u16 subsys_id; - enum pci_interrupt_pin interrupt_pin; -}; - -struct pci_epf; - -struct pci_epf_ops { - int (*bind)(struct pci_epf *); - void (*unbind)(struct pci_epf *); - struct config_group * (*add_cfs)(struct pci_epf *, struct config_group *); -}; - -struct pci_epf_bar { - dma_addr_t phys_addr; - void *addr; - size_t size; - size_t aligned_size; - enum pci_barno barno; - int flags; -}; - -struct pci_epc; - -struct pci_epf_driver; - -struct pci_epc_event_ops; - -struct pci_epf_doorbell_msg; - -struct pci_epf { - struct device dev; - const char *name; - struct pci_epf_header *header; - struct pci_epf_bar bar[6]; - u8 msi_interrupts; - u16 msix_interrupts; - u8 func_no; - u8 vfunc_no; - struct pci_epc *epc; - struct pci_epf *epf_pf; - struct pci_epf_driver *driver; - const struct pci_epf_device_id *id; - struct list_head list; - struct mutex lock; - struct pci_epc *sec_epc; - struct list_head sec_epc_list; - struct pci_epf_bar sec_epc_bar[6]; - u8 sec_epc_func_no; - struct config_group *group; - unsigned int is_bound; - unsigned int is_vf; - long unsigned int vfunction_num_map; - struct list_head pci_vepf; - const struct pci_epc_event_ops *event_ops; - struct pci_epf_doorbell_msg *db_msg; - u16 num_db; -}; - -struct pci_epc_event_ops { - int (*epc_init)(struct pci_epf *); - void (*epc_deinit)(struct pci_epf *); - int (*link_up)(struct pci_epf *); - int (*link_down)(struct pci_epf *); - int (*bus_master_enable)(struct pci_epf *); -}; - -struct pci_epf_driver { - int (*probe)(struct pci_epf *, const struct pci_epf_device_id *); - void (*remove)(struct pci_epf *); - struct device_driver driver; - const struct pci_epf_ops *ops; - struct module *owner; - struct list_head epf_group; - const struct pci_epf_device_id *id_table; -}; - -struct pci_epf_doorbell_msg { - struct msi_msg msg; - int virq; -}; - -struct pci_epc_ops; - -struct pci_epc_mem; - -struct pci_epc { - struct device dev; - struct list_head pci_epf; - struct mutex list_lock; - const struct pci_epc_ops *ops; - struct pci_epc_mem **windows; - struct pci_epc_mem *mem; - unsigned int num_windows; - u8 max_functions; - u8 *max_vfs; - struct config_group *group; - struct mutex lock; - long unsigned int function_num_map; - int domain_nr; - bool init_complete; -}; - -enum pci_epc_interface_type { - UNKNOWN_INTERFACE = -1, - PRIMARY_INTERFACE = 0, - SECONDARY_INTERFACE = 1, -}; - -struct pci_epc_map { - u64 pci_addr; - size_t pci_size; - u64 map_pci_addr; - size_t map_size; - phys_addr_t phys_base; - phys_addr_t phys_addr; - void *virt_base; - void *virt_addr; -}; - -struct pci_epc_features; - -struct pci_epc_ops { - int (*write_header)(struct pci_epc *, u8, u8, struct pci_epf_header *); - int (*set_bar)(struct pci_epc *, u8, u8, struct pci_epf_bar *); - void (*clear_bar)(struct pci_epc *, u8, u8, struct pci_epf_bar *); - u64 (*align_addr)(struct pci_epc *, u64, size_t *, size_t *); - int (*map_addr)(struct pci_epc *, u8, u8, phys_addr_t, u64, size_t); - void (*unmap_addr)(struct pci_epc *, u8, u8, phys_addr_t); - int (*set_msi)(struct pci_epc *, u8, u8, u8); - int (*get_msi)(struct pci_epc *, u8, u8); - int (*set_msix)(struct pci_epc *, u8, u8, u16, enum pci_barno, u32); - int (*get_msix)(struct pci_epc *, u8, u8); - int (*raise_irq)(struct pci_epc *, u8, u8, unsigned int, u16); - int (*map_msi_irq)(struct pci_epc *, u8, u8, phys_addr_t, u8, u32, u32 *, u32 *); - int (*start)(struct pci_epc *); - void (*stop)(struct pci_epc *); - const struct pci_epc_features * (*get_features)(struct pci_epc *, u8, u8); - struct module *owner; -}; - -enum pci_epc_bar_type { - BAR_PROGRAMMABLE = 0, - BAR_FIXED = 1, - BAR_RESIZABLE = 2, - BAR_RESERVED = 3, -}; - -struct pci_epc_bar_desc { - enum pci_epc_bar_type type; - u64 fixed_size; - bool only_64bit; -}; - -struct pci_epc_features { - unsigned int linkup_notifier: 1; - unsigned int msi_capable: 1; - unsigned int msix_capable: 1; - unsigned int intx_capable: 1; - struct pci_epc_bar_desc bar[6]; - size_t align; -}; - -struct pci_epc_mem_window { - phys_addr_t phys_base; - size_t size; - size_t page_size; -}; - -struct pci_epc_mem { - struct pci_epc_mem_window window; - long unsigned int *bitmap; - int pages; - struct mutex lock; -}; - -struct hv_vmbus_device_id { - guid_t guid; - kernel_ulong_t driver_data; -}; - -enum msi_desc_filter { - MSI_DESC_ALL = 0, - MSI_DESC_NOTASSOCIATED = 1, - MSI_DESC_ASSOCIATED = 2, -}; - -typedef struct { - struct device *lock; -} class_msi_descs_lock_t; - -enum { - MSI_CHIP_FLAG_SET_EOI = 1, - MSI_CHIP_FLAG_SET_ACK = 2, -}; - -union hv_msi_address_register { - u32 as_uint32; - struct { - u32 reserved1: 2; - u32 destination_mode: 1; - u32 redirection_hint: 1; - u32 reserved2: 8; - u32 destination_id: 8; - u32 msi_base: 12; - }; -}; - -union hv_msi_data_register { - u32 as_uint32; - struct { - u32 vector: 8; - u32 delivery_mode: 3; - u32 reserved1: 3; - u32 level_assert: 1; - u32 trigger_mode: 1; - u32 reserved2: 16; - }; -}; - -union hv_msi_entry { - u64 as_uint64; - struct { - union hv_msi_address_register address; - union hv_msi_data_register data; - }; -}; - -union hv_ioapic_rte { - u64 as_uint64; - struct { - u32 vector: 8; - u32 delivery_mode: 3; - u32 destination_mode: 1; - u32 delivery_status: 1; - u32 interrupt_polarity: 1; - u32 remote_irr: 1; - u32 trigger_mode: 1; - u32 interrupt_mask: 1; - u32 reserved1: 15; - u32 reserved2: 24; - u32 destination_id: 8; - }; - struct { - u32 low_uint32; - u32 high_uint32; - }; -}; - -enum hv_interrupt_source { - HV_INTERRUPT_SOURCE_MSI = 1, - HV_INTERRUPT_SOURCE_IOAPIC = 2, -}; - -struct hv_interrupt_entry { - u32 source; - u32 reserved1; - union { - union hv_msi_entry msi_entry; - union hv_ioapic_rte ioapic_rte; - }; -}; - -struct hv_device_interrupt_target { - u32 vector; - u32 flags; - union { - u64 vp_mask; - struct hv_vpset vp_set; - }; -}; - -struct hv_retarget_device_interrupt { - u64 partition_id; - u64 device_id; - struct hv_interrupt_entry int_entry; - u64 reserved2; - struct hv_device_interrupt_target int_target; -}; - -struct hv_mmio_read_input { - u64 gpa; - u32 size; - u32 reserved; -}; - -struct hv_mmio_read_output { - u8 data[64]; -}; - -struct hv_mmio_write_input { - u64 gpa; - u32 size; - u32 reserved; - u8 data[64]; -}; - -struct hv_ring_buffer { - u32 write_index; - u32 read_index; - u32 interrupt_mask; - u32 pending_send_sz; - u32 reserved1[12]; - union { - struct { - u32 feat_pending_send_sz: 1; - }; - u32 value; - } feature_bits; - u8 reserved2[4028]; - u8 buffer[0]; -}; - -struct hv_ring_buffer_info { - struct hv_ring_buffer *ring_buffer; - u32 ring_size; - struct reciprocal_value ring_size_div10_reciprocal; - spinlock_t ring_lock; - u32 ring_datasize; - u32 priv_read_index; - struct mutex ring_buffer_mutex; - void *pkt_buffer; - u32 pkt_buffer_size; -}; - -struct vmbus_channel_offer { - guid_t if_type; - guid_t if_instance; - u64 reserved1; - u64 reserved2; - u16 chn_flags; - u16 mmio_megabytes; - union { - struct { - unsigned char user_def[120]; - } std; - struct { - u32 pipe_mode; - unsigned char user_def[116]; - } pipe; - } u; - u16 sub_channel_index; - u16 reserved3; -}; - -struct vmpacket_descriptor { - u16 type; - u16 offset8; - u16 len8; - u16 flags; - u64 trans_id; -}; - -enum vmbus_packet_type { - VM_PKT_INVALID = 0, - VM_PKT_SYNCH = 1, - VM_PKT_ADD_XFER_PAGESET = 2, - VM_PKT_RM_XFER_PAGESET = 3, - VM_PKT_ESTABLISH_GPADL = 4, - VM_PKT_TEARDOWN_GPADL = 5, - VM_PKT_DATA_INBAND = 6, - VM_PKT_DATA_USING_XFER_PAGES = 7, - VM_PKT_DATA_USING_GPADL = 8, - VM_PKT_DATA_USING_GPA_DIRECT = 9, - VM_PKT_CANCEL_REQUEST = 10, - VM_PKT_COMP = 11, - VM_PKT_DATA_USING_ADDITIONAL_PKT = 12, - VM_PKT_ADDITIONAL_DATA = 13, -}; - -enum vmbus_channel_message_type { - CHANNELMSG_INVALID = 0, - CHANNELMSG_OFFERCHANNEL = 1, - CHANNELMSG_RESCIND_CHANNELOFFER = 2, - CHANNELMSG_REQUESTOFFERS = 3, - CHANNELMSG_ALLOFFERS_DELIVERED = 4, - CHANNELMSG_OPENCHANNEL = 5, - CHANNELMSG_OPENCHANNEL_RESULT = 6, - CHANNELMSG_CLOSECHANNEL = 7, - CHANNELMSG_GPADL_HEADER = 8, - CHANNELMSG_GPADL_BODY = 9, - CHANNELMSG_GPADL_CREATED = 10, - CHANNELMSG_GPADL_TEARDOWN = 11, - CHANNELMSG_GPADL_TORNDOWN = 12, - CHANNELMSG_RELID_RELEASED = 13, - CHANNELMSG_INITIATE_CONTACT = 14, - CHANNELMSG_VERSION_RESPONSE = 15, - CHANNELMSG_UNLOAD = 16, - CHANNELMSG_UNLOAD_RESPONSE = 17, - CHANNELMSG_18 = 18, - CHANNELMSG_19 = 19, - CHANNELMSG_20 = 20, - CHANNELMSG_TL_CONNECT_REQUEST = 21, - CHANNELMSG_MODIFYCHANNEL = 22, - CHANNELMSG_TL_CONNECT_RESULT = 23, - CHANNELMSG_MODIFYCHANNEL_RESPONSE = 24, - CHANNELMSG_COUNT = 25, -}; - -struct vmbus_channel_message_header { - enum vmbus_channel_message_type msgtype; - u32 padding; -}; - -struct vmbus_channel_version_supported { - struct vmbus_channel_message_header header; - u8 version_supported; -} __attribute__((packed)); - -struct vmbus_channel_offer_channel { - struct vmbus_channel_message_header header; - struct vmbus_channel_offer offer; - u32 child_relid; - u8 monitorid; - u8 monitor_allocated: 1; - u8 reserved: 7; - u16 is_dedicated_interrupt: 1; - u16 reserved1: 15; - u32 connection_id; -} __attribute__((packed)); - -struct vmbus_channel_open_result { - struct vmbus_channel_message_header header; - u32 child_relid; - u32 openid; - u32 status; -}; - -struct vmbus_channel_modifychannel_response { - struct vmbus_channel_message_header header; - u32 child_relid; - u32 status; -}; - -struct vmbus_channel_close_channel { - struct vmbus_channel_message_header header; - u32 child_relid; -}; - -struct vmbus_channel_gpadl_created { - struct vmbus_channel_message_header header; - u32 child_relid; - u32 gpadl; - u32 creation_status; -}; - -struct vmbus_channel_gpadl_torndown { - struct vmbus_channel_message_header header; - u32 gpadl; -}; - -struct vmbus_channel_version_response { - struct vmbus_channel_message_header header; - u8 version_supported; - u8 connection_state; - u16 padding; - u32 msg_conn_id; -}; - -enum vmbus_channel_state { - CHANNEL_OFFER_STATE = 0, - CHANNEL_OPENING_STATE = 1, - CHANNEL_OPEN_STATE = 2, - CHANNEL_OPENED_STATE = 3, -}; - -struct vmbus_channel; - -struct vmbus_channel_msginfo { - struct list_head msglistentry; - struct list_head submsglist; - struct completion waitevent; - struct vmbus_channel *waiting_channel; - union { - struct vmbus_channel_version_supported version_supported; - struct vmbus_channel_open_result open_result; - struct vmbus_channel_gpadl_torndown gpadl_torndown; - struct vmbus_channel_gpadl_created gpadl_created; - struct vmbus_channel_version_response version_response; - struct vmbus_channel_modifychannel_response modify_response; - } response; - u32 msgsize; - unsigned char msg[0]; -}; - -struct vmbus_gpadl { - u32 gpadl_handle; - u32 size; - void *buffer; - bool decrypted; -}; - -struct vmbus_close_msg { - struct vmbus_channel_msginfo info; - struct vmbus_channel_close_channel msg; -}; - -enum hv_callback_mode { - HV_CALL_BATCHED = 0, - HV_CALL_DIRECT = 1, - HV_CALL_ISR = 2, -}; - -struct vmbus_requestor { - u64 *req_arr; - long unsigned int *req_bitmap; - u32 size; - u64 next_request_id; - spinlock_t req_lock; -}; - -struct hv_device; - -struct vmbus_channel { - struct list_head listentry; - struct hv_device *device_obj; - enum vmbus_channel_state state; - struct vmbus_channel_offer_channel offermsg; - u8 monitor_grp; - u8 monitor_bit; - bool rescind; - bool rescind_ref; - struct completion rescind_event; - struct vmbus_gpadl ringbuffer_gpadlhandle; - struct page *ringbuffer_page; - u32 ringbuffer_pagecount; - u32 ringbuffer_send_offset; - struct hv_ring_buffer_info outbound; - struct hv_ring_buffer_info inbound; - struct vmbus_close_msg close_msg; - u64 interrupts; - u64 sig_events; - u64 intr_out_empty; - bool out_full_flag; - struct tasklet_struct callback_event; - void (*onchannel_callback)(void *); - void *channel_callback_context; - void (*change_target_cpu_callback)(struct vmbus_channel *, u32, u32); - spinlock_t sched_lock; - enum hv_callback_mode callback_mode; - bool is_dedicated_interrupt; - u64 sig_event; - u32 target_cpu; - void (*sc_creation_callback)(struct vmbus_channel *); - void (*chn_rescind_callback)(struct vmbus_channel *); - struct list_head sc_list; - struct vmbus_channel *primary_channel; - void *per_channel_state; - struct callback_head rcu; - struct kobject kobj; - bool low_latency; - bool probe_done; - u16 device_id; - struct work_struct add_channel_work; - u64 intr_in_full; - u64 out_full_total; - u64 out_full_first; - bool fuzz_testing_state; - u32 fuzz_testing_interrupt_delay; - u32 fuzz_testing_message_delay; - u64 (*next_request_id_callback)(struct vmbus_channel *, u64); - u64 (*request_addr_callback)(struct vmbus_channel *, u64); - struct vmbus_requestor requestor; - u32 rqstor_size; - u32 max_pkt_size; - int (*mmap_ring_buffer)(struct vmbus_channel *, struct vm_area_struct *); - bool ring_sysfs_visible; -}; - -struct hv_device { - guid_t dev_type; - guid_t dev_instance; - u16 vendor_id; - u16 device_id; - struct device device; - const char *driver_override; - struct vmbus_channel *channel; - struct kset *channels_kset; - struct device_dma_parameters dma_parms; - u64 dma_mask; - struct dentry *debug_dir; -}; - -struct hv_driver { - const char *name; - bool hvsock; - guid_t dev_type; - const struct hv_vmbus_device_id *id_table; - struct device_driver driver; - struct { - spinlock_t lock; - struct list_head list; - } dynids; - int (*probe)(struct hv_device *, const struct hv_vmbus_device_id *); - void (*remove)(struct hv_device *); - void (*shutdown)(struct hv_device *); - int (*suspend)(struct hv_device *); - int (*resume)(struct hv_device *); -}; - -struct hyperv_pci_block_ops { - int (*read_block)(struct pci_dev *, void *, unsigned int, unsigned int, unsigned int *); - int (*write_block)(struct pci_dev *, void *, unsigned int, unsigned int); - int (*reg_blk_invalidate)(struct pci_dev *, void *, void (*)(void *, u64)); -}; - -enum pci_protocol_version_t { - PCI_PROTOCOL_VERSION_1_1 = 65537, - PCI_PROTOCOL_VERSION_1_2 = 65538, - PCI_PROTOCOL_VERSION_1_3 = 65539, - PCI_PROTOCOL_VERSION_1_4 = 65540, -}; - -enum pci_message_type { - PCI_MESSAGE_BASE = 1112080384, - PCI_BUS_RELATIONS = 1112080384, - PCI_QUERY_BUS_RELATIONS = 1112080385, - PCI_POWER_STATE_CHANGE = 1112080388, - PCI_QUERY_RESOURCE_REQUIREMENTS = 1112080389, - PCI_QUERY_RESOURCE_RESOURCES = 1112080390, - PCI_BUS_D0ENTRY = 1112080391, - PCI_BUS_D0EXIT = 1112080392, - PCI_READ_BLOCK = 1112080393, - PCI_WRITE_BLOCK = 1112080394, - PCI_EJECT = 1112080395, - PCI_QUERY_STOP = 1112080396, - PCI_REENABLE = 1112080397, - PCI_QUERY_STOP_FAILED = 1112080398, - PCI_EJECTION_COMPLETE = 1112080399, - PCI_RESOURCES_ASSIGNED = 1112080400, - PCI_RESOURCES_RELEASED = 1112080401, - PCI_INVALIDATE_BLOCK = 1112080402, - PCI_QUERY_PROTOCOL_VERSION = 1112080403, - PCI_CREATE_INTERRUPT_MESSAGE = 1112080404, - PCI_DELETE_INTERRUPT_MESSAGE = 1112080405, - PCI_RESOURCES_ASSIGNED2 = 1112080406, - PCI_CREATE_INTERRUPT_MESSAGE2 = 1112080407, - PCI_DELETE_INTERRUPT_MESSAGE2 = 1112080408, - PCI_BUS_RELATIONS2 = 1112080409, - PCI_RESOURCES_ASSIGNED3 = 1112080410, - PCI_CREATE_INTERRUPT_MESSAGE3 = 1112080411, - PCI_MESSAGE_MAXIMUM = 1112080412, -}; - -union win_slot_encoding { - struct { - u32 dev: 5; - u32 func: 3; - u32 reserved: 24; - } bits; - u32 slot; -}; - -struct pci_function_description { - u16 v_id; - u16 d_id; - u8 rev; - u8 prog_intf; - u8 subclass; - u8 base_class; - u32 subsystem_id; - union win_slot_encoding win_slot; - u32 ser; -}; - -enum pci_device_description_flags { - HV_PCI_DEVICE_FLAG_NONE = 0, - HV_PCI_DEVICE_FLAG_NUMA_AFFINITY = 1, -}; - -struct pci_function_description2 { - u16 v_id; - u16 d_id; - u8 rev; - u8 prog_intf; - u8 subclass; - u8 base_class; - u32 subsystem_id; - union win_slot_encoding win_slot; - u32 ser; - u32 flags; - u16 virtual_numa_node; - u16 reserved; -}; - -struct hv_msi_desc { - u8 vector; - u8 delivery_mode; - u16 vector_count; - u32 reserved; - u64 cpu_mask; -}; - -struct hv_msi_desc2 { - u8 vector; - u8 delivery_mode; - u16 vector_count; - u16 processor_count; - u16 processor_array[32]; -}; - -struct hv_msi_desc3 { - u32 vector; - u8 delivery_mode; - u8 reserved; - u16 vector_count; - u16 processor_count; - u16 processor_array[32]; -} __attribute__((packed)); - -struct tran_int_desc { - u16 reserved; - u16 vector_count; - u32 data; - u64 address; -}; - -struct pci_message { - u32 type; -}; - -struct pci_child_message { - struct pci_message message_type; - union win_slot_encoding wslot; -}; - -struct pci_incoming_message { - struct vmpacket_descriptor hdr; - struct pci_message message_type; -} __attribute__((packed)); - -struct pci_response { - struct vmpacket_descriptor hdr; - s32 status; -} __attribute__((packed)); - -struct pci_packet { - void (*completion_func)(void *, struct pci_response *, int); - void *compl_ctxt; -}; - -struct pci_version_request { - struct pci_message message_type; - u32 protocol_version; -}; - -struct pci_bus_d0_entry { - struct pci_message message_type; - u32 reserved; - u64 mmio_base; -}; - -struct pci_bus_relations { - struct pci_incoming_message incoming; - u32 device_count; - struct pci_function_description func[0]; -}; - -struct pci_bus_relations2 { - struct pci_incoming_message incoming; - u32 device_count; - struct pci_function_description2 func[0]; -}; - -struct pci_q_res_req_response { - struct vmpacket_descriptor hdr; - s32 status; - u32 probed_bar[6]; -} __attribute__((packed)); - -struct pci_resources_assigned { - struct pci_message message_type; - union win_slot_encoding wslot; - u8 memory_range[120]; - u32 msi_descriptors; - u32 reserved[4]; -}; - -struct pci_resources_assigned2 { - struct pci_message message_type; - union win_slot_encoding wslot; - u8 memory_range[120]; - u32 msi_descriptor_count; - u8 reserved[70]; -} __attribute__((packed)); - -struct pci_create_interrupt { - struct pci_message message_type; - union win_slot_encoding wslot; - struct hv_msi_desc int_desc; -}; - -struct pci_create_int_response { - struct pci_response response; - u32 reserved; - struct tran_int_desc int_desc; -}; - -struct pci_create_interrupt2 { - struct pci_message message_type; - union win_slot_encoding wslot; - struct hv_msi_desc2 int_desc; -} __attribute__((packed)); - -struct pci_create_interrupt3 { - struct pci_message message_type; - union win_slot_encoding wslot; - struct hv_msi_desc3 int_desc; -} __attribute__((packed)); - -struct pci_delete_interrupt { - struct pci_message message_type; - union win_slot_encoding wslot; - struct tran_int_desc int_desc; -}; - -struct pci_read_block { - struct pci_message message_type; - u32 block_id; - union win_slot_encoding wslot; - u32 bytes_requested; -}; - -struct pci_read_block_response { - struct vmpacket_descriptor hdr; - u32 status; - u8 bytes[128]; -} __attribute__((packed)); - -struct pci_write_block { - struct pci_message message_type; - u32 block_id; - union win_slot_encoding wslot; - u32 byte_count; - u8 bytes[128]; -}; - -struct pci_dev_inval_block { - struct pci_incoming_message incoming; - union win_slot_encoding wslot; - u64 block_mask; -}; - -struct pci_dev_incoming { - struct pci_incoming_message incoming; - union win_slot_encoding wslot; -}; - -struct pci_eject_response { - struct pci_message message_type; - union win_slot_encoding wslot; - u32 status; -}; - -enum hv_pcibus_state { - hv_pcibus_init = 0, - hv_pcibus_probed = 1, - hv_pcibus_installed = 2, - hv_pcibus_removing = 3, - hv_pcibus_maximum = 4, -}; - -struct hv_pcibus_device { - struct pci_sysdata sysdata; - struct pci_host_bridge *bridge; - struct fwnode_handle *fwnode; - enum pci_protocol_version_t protocol_version; - struct mutex state_lock; - enum hv_pcibus_state state; - struct hv_device *hdev; - resource_size_t low_mmio_space; - resource_size_t high_mmio_space; - struct resource *mem_config; - struct resource *low_mmio_res; - struct resource *high_mmio_res; - struct completion *survey_event; - struct pci_bus *pci_bus; - spinlock_t config_lock; - spinlock_t device_list_lock; - void *cfg_addr; - struct list_head children; - struct list_head dr_list; - struct irq_domain *irq_domain; - struct workqueue_struct *wq; - int wslot_res_allocated; - bool use_calls; -}; - -struct hv_dr_work { - struct work_struct wrk; - struct hv_pcibus_device *bus; -}; - -struct hv_pcidev_description { - u16 v_id; - u16 d_id; - u8 rev; - u8 prog_intf; - u8 subclass; - u8 base_class; - u32 subsystem_id; - union win_slot_encoding win_slot; - u32 ser; - u32 flags; - u16 virtual_numa_node; -}; - -struct hv_dr_state { - struct list_head list_entry; - u32 device_count; - struct hv_pcidev_description func[0]; -}; - -struct hv_pci_dev { - struct list_head list_entry; - refcount_t refs; - struct pci_slot *pci_slot; - struct hv_pcidev_description desc; - bool reported_missing; - struct hv_pcibus_device *hbus; - struct work_struct wrk; - void (*block_invalidate)(void *, u64); - void *invalidate_context; - u32 probed_bar[6]; -}; - -struct hv_pci_compl { - struct completion host_event; - s32 completion_status; -}; - -struct hv_read_config_compl { - struct hv_pci_compl comp_pkt; - void *buf; - unsigned int len; - unsigned int bytes_returned; -}; - -struct compose_comp_ctxt { - struct hv_pci_compl comp_pkt; - struct tran_int_desc int_desc; -}; - -struct q_res_req_compl { - struct completion host_event; - struct hv_pci_dev *hpdev; -}; - -struct clk_bulk_data { - const char *id; - struct clk *clk; -}; - -struct dw_edma_region { - u64 paddr; - union { - void *mem; - void *io; - } vaddr; - size_t sz; -}; - -struct dw_edma_plat_ops { - int (*irq_vector)(struct device *, unsigned int); - u64 (*pci_address)(struct device *, phys_addr_t); -}; - -enum dw_edma_map_format { - EDMA_MF_EDMA_LEGACY = 0, - EDMA_MF_EDMA_UNROLL = 1, - EDMA_MF_HDMA_COMPAT = 5, - EDMA_MF_HDMA_NATIVE = 7, -}; - -struct dw_edma; - -struct dw_edma_chip { - struct device *dev; - int nr_irqs; - const struct dw_edma_plat_ops *ops; - u32 flags; - void *reg_base; - u16 ll_wr_cnt; - u16 ll_rd_cnt; - struct dw_edma_region ll_region_wr[8]; - struct dw_edma_region ll_region_rd[8]; - struct dw_edma_region dt_region_wr[8]; - struct dw_edma_region dt_region_rd[8]; - enum dw_edma_map_format mf; - struct dw_edma *dw; -}; - -struct reset_control; - -struct reset_control_bulk_data { - const char *id; - struct reset_control *rstc; -}; - -struct pci_eq_presets { - u16 eq_presets_8gts[16]; - u8 eq_presets_Ngts[48]; -}; - -enum dw_pcie_device_mode { - DW_PCIE_UNKNOWN_TYPE = 0, - DW_PCIE_EP_TYPE = 1, - DW_PCIE_LEG_EP_TYPE = 2, - DW_PCIE_RC_TYPE = 3, -}; - -enum dw_pcie_app_clk { - DW_PCIE_DBI_CLK = 0, - DW_PCIE_MSTR_CLK = 1, - DW_PCIE_SLV_CLK = 2, - DW_PCIE_NUM_APP_CLKS = 3, -}; - -enum dw_pcie_core_clk { - DW_PCIE_PIPE_CLK = 0, - DW_PCIE_CORE_CLK = 1, - DW_PCIE_AUX_CLK = 2, - DW_PCIE_REF_CLK = 3, - DW_PCIE_NUM_CORE_CLKS = 4, -}; - -enum dw_pcie_app_rst { - DW_PCIE_DBI_RST = 0, - DW_PCIE_MSTR_RST = 1, - DW_PCIE_SLV_RST = 2, - DW_PCIE_NUM_APP_RSTS = 3, -}; - -enum dw_pcie_core_rst { - DW_PCIE_NON_STICKY_RST = 0, - DW_PCIE_STICKY_RST = 1, - DW_PCIE_CORE_RST = 2, - DW_PCIE_PIPE_RST = 3, - DW_PCIE_PHY_RST = 4, - DW_PCIE_HOT_RST = 5, - DW_PCIE_PWR_RST = 6, - DW_PCIE_NUM_CORE_RSTS = 7, -}; - -enum dw_pcie_ltssm { - DW_PCIE_LTSSM_DETECT_QUIET = 0, - DW_PCIE_LTSSM_DETECT_ACT = 1, - DW_PCIE_LTSSM_POLL_ACTIVE = 2, - DW_PCIE_LTSSM_POLL_COMPLIANCE = 3, - DW_PCIE_LTSSM_POLL_CONFIG = 4, - DW_PCIE_LTSSM_PRE_DETECT_QUIET = 5, - DW_PCIE_LTSSM_DETECT_WAIT = 6, - DW_PCIE_LTSSM_CFG_LINKWD_START = 7, - DW_PCIE_LTSSM_CFG_LINKWD_ACEPT = 8, - DW_PCIE_LTSSM_CFG_LANENUM_WAI = 9, - DW_PCIE_LTSSM_CFG_LANENUM_ACEPT = 10, - DW_PCIE_LTSSM_CFG_COMPLETE = 11, - DW_PCIE_LTSSM_CFG_IDLE = 12, - DW_PCIE_LTSSM_RCVRY_LOCK = 13, - DW_PCIE_LTSSM_RCVRY_SPEED = 14, - DW_PCIE_LTSSM_RCVRY_RCVRCFG = 15, - DW_PCIE_LTSSM_RCVRY_IDLE = 16, - DW_PCIE_LTSSM_L0 = 17, - DW_PCIE_LTSSM_L0S = 18, - DW_PCIE_LTSSM_L123_SEND_EIDLE = 19, - DW_PCIE_LTSSM_L1_IDLE = 20, - DW_PCIE_LTSSM_L2_IDLE = 21, - DW_PCIE_LTSSM_L2_WAKE = 22, - DW_PCIE_LTSSM_DISABLED_ENTRY = 23, - DW_PCIE_LTSSM_DISABLED_IDLE = 24, - DW_PCIE_LTSSM_DISABLED = 25, - DW_PCIE_LTSSM_LPBK_ENTRY = 26, - DW_PCIE_LTSSM_LPBK_ACTIVE = 27, - DW_PCIE_LTSSM_LPBK_EXIT = 28, - DW_PCIE_LTSSM_LPBK_EXIT_TIMEOUT = 29, - DW_PCIE_LTSSM_HOT_RESET_ENTRY = 30, - DW_PCIE_LTSSM_HOT_RESET = 31, - DW_PCIE_LTSSM_RCVRY_EQ0 = 32, - DW_PCIE_LTSSM_RCVRY_EQ1 = 33, - DW_PCIE_LTSSM_RCVRY_EQ2 = 34, - DW_PCIE_LTSSM_RCVRY_EQ3 = 35, - DW_PCIE_LTSSM_UNKNOWN = 4294967295, -}; - -struct dw_pcie_rp; - -struct dw_pcie_host_ops { - int (*init)(struct dw_pcie_rp *); - void (*deinit)(struct dw_pcie_rp *); - void (*post_init)(struct dw_pcie_rp *); - int (*msi_init)(struct dw_pcie_rp *); - void (*pme_turn_off)(struct dw_pcie_rp *); -}; - -struct dw_pcie_rp { - bool has_msi_ctrl: 1; - bool cfg0_io_shared: 1; - u64 cfg0_base; - void *va_cfg0_base; - u32 cfg0_size; - resource_size_t io_base; - phys_addr_t io_bus_addr; - u32 io_size; - int irq; - const struct dw_pcie_host_ops *ops; - int msi_irq[8]; - struct irq_domain *irq_domain; - dma_addr_t msi_data; - struct irq_chip *msi_irq_chip; - u32 num_vectors; - u32 irq_mask[8]; - struct pci_host_bridge *bridge; - raw_spinlock_t lock; - long unsigned int msi_irq_in_use[4]; - bool use_atu_msg; - int msg_atu_index; - struct resource *msg_res; - bool use_linkup_irq; - struct pci_eq_presets presets; -}; - -struct dw_pcie_ep; - -struct dw_pcie_ep_ops { - void (*pre_init)(struct dw_pcie_ep *); - void (*init)(struct dw_pcie_ep *); - int (*raise_irq)(struct dw_pcie_ep *, u8, unsigned int, u16); - const struct pci_epc_features * (*get_features)(struct dw_pcie_ep *); - unsigned int (*get_dbi_offset)(struct dw_pcie_ep *, u8); - unsigned int (*get_dbi2_offset)(struct dw_pcie_ep *, u8); -}; - -struct dw_pcie_ep { - struct pci_epc *epc; - struct list_head func_list; - const struct dw_pcie_ep_ops *ops; - phys_addr_t phys_base; - size_t addr_size; - size_t page_size; - u8 bar_to_atu[6]; - phys_addr_t *outbound_addr; - long unsigned int *ib_window_map; - long unsigned int *ob_window_map; - void *msi_mem; - phys_addr_t msi_mem_phys; - struct pci_epf_bar *epf_bar[6]; -}; - -struct dw_pcie; - -struct dw_pcie_ops { - u64 (*cpu_addr_fixup)(struct dw_pcie *, u64); - u32 (*read_dbi)(struct dw_pcie *, void *, u32, size_t); - void (*write_dbi)(struct dw_pcie *, void *, u32, size_t, u32); - void (*write_dbi2)(struct dw_pcie *, void *, u32, size_t, u32); - bool (*link_up)(struct dw_pcie *); - enum dw_pcie_ltssm (*get_ltssm)(struct dw_pcie *); - int (*start_link)(struct dw_pcie *); - void (*stop_link)(struct dw_pcie *); -}; - -struct debugfs_info; - -struct dw_pcie { - struct device *dev; - void *dbi_base; - resource_size_t dbi_phys_addr; - void *dbi_base2; - void *atu_base; - void *elbi_base; - resource_size_t atu_phys_addr; - size_t atu_size; - resource_size_t parent_bus_offset; - u32 num_ib_windows; - u32 num_ob_windows; - u32 region_align; - u64 region_limit; - struct dw_pcie_rp pp; - struct dw_pcie_ep ep; - const struct dw_pcie_ops *ops; - u32 version; - u32 type; - long unsigned int caps; - int num_lanes; - int max_link_speed; - u8 n_fts[2]; - struct dw_edma_chip edma; - struct clk_bulk_data app_clks[3]; - struct clk_bulk_data core_clks[4]; - struct reset_control_bulk_data app_rsts[3]; - struct reset_control_bulk_data core_rsts[7]; - struct gpio_desc *pe_rst; - bool suspended; - struct debugfs_info *debugfs; - enum dw_pcie_device_mode mode; - u16 ptm_vsec_offset; - struct pci_ptm_debugfs *ptm_debugfs; - bool use_parent_dt_ranges; -}; - -struct debugfs_info { - struct dentry *debug_dir; - void *rasdes_info; -}; - -struct dw_plat_pcie { - struct dw_pcie *pci; - enum dw_pcie_device_mode mode; -}; - -struct dw_plat_pcie_of_data { - enum dw_pcie_device_mode mode; -}; - -struct rio_device_id { - __u16 did; - __u16 vid; - __u16 asm_did; - __u16 asm_vid; -}; - -typedef s32 dma_cookie_t; - -enum dma_status { - DMA_COMPLETE = 0, - DMA_IN_PROGRESS = 1, - DMA_PAUSED = 2, - DMA_ERROR = 3, - DMA_OUT_OF_ORDER = 4, -}; - -enum dma_transaction_type { - DMA_MEMCPY = 0, - DMA_XOR = 1, - DMA_PQ = 2, - DMA_XOR_VAL = 3, - DMA_PQ_VAL = 4, - DMA_MEMSET = 5, - DMA_MEMSET_SG = 6, - DMA_INTERRUPT = 7, - DMA_PRIVATE = 8, - DMA_ASYNC_TX = 9, - DMA_SLAVE = 10, - DMA_CYCLIC = 11, - DMA_INTERLEAVE = 12, - DMA_COMPLETION_NO_ORDER = 13, - DMA_REPEAT = 14, - DMA_LOAD_EOT = 15, - DMA_TX_TYPE_END = 16, -}; - -enum dma_transfer_direction { - DMA_MEM_TO_MEM = 0, - DMA_MEM_TO_DEV = 1, - DMA_DEV_TO_MEM = 2, - DMA_DEV_TO_DEV = 3, - DMA_TRANS_NONE = 4, -}; - -struct data_chunk { - size_t size; - size_t icg; - size_t dst_icg; - size_t src_icg; -}; - -struct dma_interleaved_template { - dma_addr_t src_start; - dma_addr_t dst_start; - enum dma_transfer_direction dir; - bool src_inc; - bool dst_inc; - bool src_sgl; - bool dst_sgl; - size_t numf; - size_t frame_size; - struct data_chunk sgl[0]; -}; - -struct dma_vec { - dma_addr_t addr; - size_t len; -}; - -enum dma_ctrl_flags { - DMA_PREP_INTERRUPT = 1, - DMA_CTRL_ACK = 2, - DMA_PREP_PQ_DISABLE_P = 4, - DMA_PREP_PQ_DISABLE_Q = 8, - DMA_PREP_CONTINUE = 16, - DMA_PREP_FENCE = 32, - DMA_CTRL_REUSE = 64, - DMA_PREP_CMD = 128, - DMA_PREP_REPEAT = 256, - DMA_PREP_LOAD_EOT = 512, -}; - -enum sum_check_bits { - SUM_CHECK_P = 0, - SUM_CHECK_Q = 1, -}; - -enum sum_check_flags { - SUM_CHECK_P_RESULT = 1, - SUM_CHECK_Q_RESULT = 2, -}; - -typedef struct { - long unsigned int bits[1]; -} dma_cap_mask_t; - -enum dma_desc_metadata_mode { - DESC_METADATA_NONE = 0, - DESC_METADATA_CLIENT = 1, - DESC_METADATA_ENGINE = 2, -}; - -struct dma_chan_percpu { - long unsigned int memcpy_count; - long unsigned int bytes_transferred; -}; - -struct dma_router { - struct device *dev; - void (*route_free)(struct device *, void *); -}; - -struct dma_device; - -struct dma_chan_dev; - -struct dma_chan { - struct dma_device *device; - struct device *slave; - dma_cookie_t cookie; - dma_cookie_t completed_cookie; - int chan_id; - struct dma_chan_dev *dev; - const char *name; - char *dbg_client_name; - struct list_head device_node; - struct dma_chan_percpu *local; - int client_count; - int table_count; - struct dma_router *router; - void *route_data; - void *private; -}; - -typedef bool (*dma_filter_fn)(struct dma_chan *, void *); - -struct dma_slave_map; - -struct dma_filter { - dma_filter_fn fn; - int mapcnt; - const struct dma_slave_map *map; -}; - -enum dmaengine_alignment { - DMAENGINE_ALIGN_1_BYTE = 0, - DMAENGINE_ALIGN_2_BYTES = 1, - DMAENGINE_ALIGN_4_BYTES = 2, - DMAENGINE_ALIGN_8_BYTES = 3, - DMAENGINE_ALIGN_16_BYTES = 4, - DMAENGINE_ALIGN_32_BYTES = 5, - DMAENGINE_ALIGN_64_BYTES = 6, - DMAENGINE_ALIGN_128_BYTES = 7, - DMAENGINE_ALIGN_256_BYTES = 8, -}; - -enum dma_residue_granularity { - DMA_RESIDUE_GRANULARITY_DESCRIPTOR = 0, - DMA_RESIDUE_GRANULARITY_SEGMENT = 1, - DMA_RESIDUE_GRANULARITY_BURST = 2, -}; - -struct dma_async_tx_descriptor; - -struct dma_slave_caps; - -struct dma_slave_config; - -struct dma_tx_state; - -struct dma_device { - struct kref ref; - unsigned int chancnt; - unsigned int privatecnt; - struct list_head channels; - struct list_head global_node; - struct dma_filter filter; - dma_cap_mask_t cap_mask; - enum dma_desc_metadata_mode desc_metadata_modes; - short unsigned int max_xor; - short unsigned int max_pq; - enum dmaengine_alignment copy_align; - enum dmaengine_alignment xor_align; - enum dmaengine_alignment pq_align; - enum dmaengine_alignment fill_align; - int dev_id; - struct device *dev; - struct module *owner; - struct ida chan_ida; - u32 src_addr_widths; - u32 dst_addr_widths; - u32 directions; - u32 min_burst; - u32 max_burst; - u32 max_sg_burst; - bool descriptor_reuse; - enum dma_residue_granularity residue_granularity; - int (*device_alloc_chan_resources)(struct dma_chan *); - int (*device_router_config)(struct dma_chan *); - void (*device_free_chan_resources)(struct dma_chan *); - struct dma_async_tx_descriptor * (*device_prep_dma_memcpy)(struct dma_chan *, dma_addr_t, dma_addr_t, size_t, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_dma_xor)(struct dma_chan *, dma_addr_t, dma_addr_t *, unsigned int, size_t, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_dma_xor_val)(struct dma_chan *, dma_addr_t *, unsigned int, size_t, enum sum_check_flags *, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_dma_pq)(struct dma_chan *, dma_addr_t *, dma_addr_t *, unsigned int, const unsigned char *, size_t, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_dma_pq_val)(struct dma_chan *, dma_addr_t *, dma_addr_t *, unsigned int, const unsigned char *, size_t, enum sum_check_flags *, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_dma_memset)(struct dma_chan *, dma_addr_t, int, size_t, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_dma_memset_sg)(struct dma_chan *, struct scatterlist *, unsigned int, int, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_dma_interrupt)(struct dma_chan *, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_peripheral_dma_vec)(struct dma_chan *, const struct dma_vec *, size_t, enum dma_transfer_direction, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_slave_sg)(struct dma_chan *, struct scatterlist *, unsigned int, enum dma_transfer_direction, long unsigned int, void *); - struct dma_async_tx_descriptor * (*device_prep_dma_cyclic)(struct dma_chan *, dma_addr_t, size_t, size_t, enum dma_transfer_direction, long unsigned int); - struct dma_async_tx_descriptor * (*device_prep_interleaved_dma)(struct dma_chan *, struct dma_interleaved_template *, long unsigned int); - void (*device_caps)(struct dma_chan *, struct dma_slave_caps *); - int (*device_config)(struct dma_chan *, struct dma_slave_config *); - int (*device_pause)(struct dma_chan *); - int (*device_resume)(struct dma_chan *); - int (*device_terminate_all)(struct dma_chan *); - void (*device_synchronize)(struct dma_chan *); - enum dma_status (*device_tx_status)(struct dma_chan *, dma_cookie_t, struct dma_tx_state *); - void (*device_issue_pending)(struct dma_chan *); - void (*device_release)(struct dma_device *); - void (*dbg_summary_show)(struct seq_file *, struct dma_device *); - struct dentry *dbg_dev_root; -}; - -struct dma_chan_dev { - struct dma_chan *chan; - struct device device; - int dev_id; - bool chan_dma_dev; -}; - -enum dma_slave_buswidth { - DMA_SLAVE_BUSWIDTH_UNDEFINED = 0, - DMA_SLAVE_BUSWIDTH_1_BYTE = 1, - DMA_SLAVE_BUSWIDTH_2_BYTES = 2, - DMA_SLAVE_BUSWIDTH_3_BYTES = 3, - DMA_SLAVE_BUSWIDTH_4_BYTES = 4, - DMA_SLAVE_BUSWIDTH_8_BYTES = 8, - DMA_SLAVE_BUSWIDTH_16_BYTES = 16, - DMA_SLAVE_BUSWIDTH_32_BYTES = 32, - DMA_SLAVE_BUSWIDTH_64_BYTES = 64, - DMA_SLAVE_BUSWIDTH_128_BYTES = 128, -}; - -struct dma_slave_config { - enum dma_transfer_direction direction; - phys_addr_t src_addr; - phys_addr_t dst_addr; - enum dma_slave_buswidth src_addr_width; - enum dma_slave_buswidth dst_addr_width; - u32 src_maxburst; - u32 dst_maxburst; - u32 src_port_window_size; - u32 dst_port_window_size; - bool device_fc; - void *peripheral_config; - size_t peripheral_size; -}; - -struct dma_slave_caps { - u32 src_addr_widths; - u32 dst_addr_widths; - u32 directions; - u32 min_burst; - u32 max_burst; - u32 max_sg_burst; - bool cmd_pause; - bool cmd_resume; - bool cmd_terminate; - enum dma_residue_granularity residue_granularity; - bool descriptor_reuse; -}; - -typedef void (*dma_async_tx_callback)(void *); - -enum dmaengine_tx_result { - DMA_TRANS_NOERROR = 0, - DMA_TRANS_READ_FAILED = 1, - DMA_TRANS_WRITE_FAILED = 2, - DMA_TRANS_ABORTED = 3, -}; - -struct dmaengine_result { - enum dmaengine_tx_result result; - u32 residue; -}; - -typedef void (*dma_async_tx_callback_result)(void *, const struct dmaengine_result *); - -struct dmaengine_unmap_data { - u16 map_cnt; - u8 to_cnt; - u8 from_cnt; - u8 bidi_cnt; - struct device *dev; - struct kref kref; - size_t len; - dma_addr_t addr[0]; -}; - -struct dma_descriptor_metadata_ops { - int (*attach)(struct dma_async_tx_descriptor *, void *, size_t); - void * (*get_ptr)(struct dma_async_tx_descriptor *, size_t *, size_t *); - int (*set_len)(struct dma_async_tx_descriptor *, size_t); -}; - -struct dma_async_tx_descriptor { - dma_cookie_t cookie; - enum dma_ctrl_flags flags; - dma_addr_t phys; - struct dma_chan *chan; - dma_cookie_t (*tx_submit)(struct dma_async_tx_descriptor *); - int (*desc_free)(struct dma_async_tx_descriptor *); - dma_async_tx_callback callback; - dma_async_tx_callback_result callback_result; - void *callback_param; - struct dmaengine_unmap_data *unmap; - enum dma_desc_metadata_mode desc_metadata_mode; - struct dma_descriptor_metadata_ops *metadata_ops; -}; - -struct dma_tx_state { - dma_cookie_t last; - dma_cookie_t used; - u32 residue; - u32 in_flight_bytes; -}; - -struct dma_slave_map { - const char *devname; - const char *slave; - void *param; -}; - -struct rio_switch_ops; - -struct rio_dev; - -struct rio_switch { - struct list_head node; - u8 *route_table; - u32 port_ok; - struct rio_switch_ops *ops; - spinlock_t lock; - struct rio_dev *nextdev[0]; -}; - -struct rio_mport; - -struct rio_switch_ops { - struct module *owner; - int (*add_entry)(struct rio_mport *, u16, u8, u16, u16, u8); - int (*get_entry)(struct rio_mport *, u16, u8, u16, u16, u8 *); - int (*clr_table)(struct rio_mport *, u16, u8, u16); - int (*set_domain)(struct rio_mport *, u16, u8, u8); - int (*get_domain)(struct rio_mport *, u16, u8, u8 *); - int (*em_init)(struct rio_dev *); - int (*em_handle)(struct rio_dev *, u8); -}; - -struct rio_net; - -struct rio_driver; - -union rio_pw_msg; - -struct rio_dev { - struct list_head global_list; - struct list_head net_list; - struct rio_net *net; - bool do_enum; - u16 did; - u16 vid; - u32 device_rev; - u16 asm_did; - u16 asm_vid; - u16 asm_rev; - u16 efptr; - u32 pef; - u32 swpinfo; - u32 src_ops; - u32 dst_ops; - u32 comp_tag; - u32 phys_efptr; - u32 phys_rmap; - u32 em_efptr; - u64 dma_mask; - struct rio_driver *driver; - struct device dev; - struct resource riores[16]; - int (*pwcback)(struct rio_dev *, union rio_pw_msg *, int); - u16 destid; - u8 hopcount; - struct rio_dev *prev; - atomic_t state; - struct rio_switch rswitch[0]; -}; - -struct rio_msg { - struct resource *res; - void (*mcback)(struct rio_mport *, void *, int, int); -}; - -struct rio_ops; - -struct rio_scan; - -struct rio_mport { - struct list_head dbells; - struct list_head pwrites; - struct list_head node; - struct list_head nnode; - struct rio_net *net; - struct mutex lock; - struct resource iores; - struct resource riores[16]; - struct rio_msg inb_msg[4]; - struct rio_msg outb_msg[4]; - int host_deviceid; - struct rio_ops *ops; - unsigned char id; - unsigned char index; - unsigned int sys_size; - u32 phys_efptr; - u32 phys_rmap; - unsigned char name[40]; - struct device dev; - void *priv; - struct dma_device dma; - struct rio_scan *nscan; - atomic_t state; - unsigned int pwe_refcnt; -}; - -struct rio_net { - struct list_head node; - struct list_head devices; - struct list_head switches; - struct list_head mports; - struct rio_mport *hport; - unsigned char id; - struct device dev; - void *enum_data; - void (*release)(struct rio_net *); -}; - -struct rio_driver { - struct list_head node; - char *name; - const struct rio_device_id *id_table; - int (*probe)(struct rio_dev *, const struct rio_device_id *); - void (*remove)(struct rio_dev *); - void (*shutdown)(struct rio_dev *); - int (*suspend)(struct rio_dev *, u32); - int (*resume)(struct rio_dev *); - int (*enable_wake)(struct rio_dev *, u32, int); - struct device_driver driver; -}; - -union rio_pw_msg { - struct { - u32 comptag; - u32 errdetect; - u32 is_port; - u32 ltlerrdet; - u32 padding[12]; - } em; - u32 raw[16]; -}; - -struct rio_mport_attr; - -struct rio_ops { - int (*lcread)(struct rio_mport *, int, u32, int, u32 *); - int (*lcwrite)(struct rio_mport *, int, u32, int, u32); - int (*cread)(struct rio_mport *, int, u16, u8, u32, int, u32 *); - int (*cwrite)(struct rio_mport *, int, u16, u8, u32, int, u32); - int (*dsend)(struct rio_mport *, int, u16, u16); - int (*pwenable)(struct rio_mport *, int); - int (*open_outb_mbox)(struct rio_mport *, void *, int, int); - void (*close_outb_mbox)(struct rio_mport *, int); - int (*open_inb_mbox)(struct rio_mport *, void *, int, int); - void (*close_inb_mbox)(struct rio_mport *, int); - int (*add_outb_message)(struct rio_mport *, struct rio_dev *, int, void *, size_t); - int (*add_inb_buffer)(struct rio_mport *, int, void *); - void * (*get_inb_message)(struct rio_mport *, int); - int (*map_inb)(struct rio_mport *, dma_addr_t, u64, u64, u32); - void (*unmap_inb)(struct rio_mport *, dma_addr_t); - int (*query_mport)(struct rio_mport *, struct rio_mport_attr *); - int (*map_outb)(struct rio_mport *, u16, u64, u32, u32, dma_addr_t *); - void (*unmap_outb)(struct rio_mport *, u16, u64); -}; - -struct rio_scan { - struct module *owner; - int (*enumerate)(struct rio_mport *, u32); - int (*discover)(struct rio_mport *, u32); -}; - -struct rio_mport_attr { - int flags; - int link_speed; - int link_width; - int dma_max_sge; - int dma_max_size; - int dma_align; -}; - -enum vesa_blank_mode { - VESA_NO_BLANKING = 0, - VESA_VSYNC_SUSPEND = 1, - VESA_HSYNC_SUSPEND = 2, - VESA_POWERDOWN = 3, - VESA_BLANK_MAX = 3, -}; - -enum con_scroll { - SM_UP = 0, - SM_DOWN = 1, -}; - -enum vc_intensity { - VCI_HALF_BRIGHT = 0, - VCI_NORMAL = 1, - VCI_BOLD = 2, - VCI_MASK = 3, -}; - -struct vc_data; - -struct console_font; - -struct consw { - struct module *owner; - const char * (*con_startup)(void); - void (*con_init)(struct vc_data *, bool); - void (*con_deinit)(struct vc_data *); - void (*con_clear)(struct vc_data *, unsigned int, unsigned int, unsigned int); - void (*con_putc)(struct vc_data *, u16, unsigned int, unsigned int); - void (*con_putcs)(struct vc_data *, const u16 *, unsigned int, unsigned int, unsigned int); - void (*con_cursor)(struct vc_data *, bool); - bool (*con_scroll)(struct vc_data *, unsigned int, unsigned int, enum con_scroll, unsigned int); - bool (*con_switch)(struct vc_data *); - bool (*con_blank)(struct vc_data *, enum vesa_blank_mode, bool); - int (*con_font_set)(struct vc_data *, const struct console_font *, unsigned int, unsigned int); - int (*con_font_get)(struct vc_data *, struct console_font *, unsigned int); - int (*con_font_default)(struct vc_data *, struct console_font *, const char *); - int (*con_resize)(struct vc_data *, unsigned int, unsigned int, bool); - void (*con_set_palette)(struct vc_data *, const unsigned char *); - void (*con_scrolldelta)(struct vc_data *, int); - bool (*con_set_origin)(struct vc_data *); - void (*con_save_screen)(struct vc_data *); - u8 (*con_build_attr)(struct vc_data *, u8, enum vc_intensity, bool, bool, bool, bool); - void (*con_invert_region)(struct vc_data *, u16 *, int); - void (*con_debug_enter)(struct vc_data *); - void (*con_debug_leave)(struct vc_data *); -}; - -struct vc_state { - unsigned int x; - unsigned int y; - unsigned char color; - unsigned char Gx_charset[2]; - unsigned int charset: 1; - enum vc_intensity intensity; - bool italic; - bool underline; - bool blink; - bool reverse; -}; - -struct console_font { - unsigned int width; - unsigned int height; - unsigned int charcount; - unsigned char *data; -}; - -struct vt_mode { - __u8 mode; - __u8 waitv; - __s16 relsig; - __s16 acqsig; - __s16 frsig; -}; - -struct uni_pagedict; - -struct vc_data { - struct tty_port port; - struct vc_state state; - struct vc_state saved_state; - short unsigned int vc_num; - unsigned int vc_cols; - unsigned int vc_rows; - unsigned int vc_size_row; - unsigned int vc_scan_lines; - unsigned int vc_cell_height; - long unsigned int vc_origin; - long unsigned int vc_scr_end; - long unsigned int vc_visible_origin; - unsigned int vc_top; - unsigned int vc_bottom; - const struct consw *vc_sw; - short unsigned int *vc_screenbuf; - unsigned int vc_screenbuf_size; - unsigned char vc_mode; - unsigned char vc_attr; - unsigned char vc_def_color; - unsigned char vc_ulcolor; - unsigned char vc_itcolor; - unsigned char vc_halfcolor; - unsigned int vc_cursor_type; - short unsigned int vc_complement_mask; - short unsigned int vc_s_complement_mask; - long unsigned int vc_pos; - short unsigned int vc_hi_font_mask; - struct console_font vc_font; - short unsigned int vc_video_erase_char; - unsigned int vc_state; - unsigned int vc_npar; - unsigned int vc_par[16]; - struct vt_mode vt_mode; - struct pid *vt_pid; - int vt_newvt; - wait_queue_head_t paste_wait; - unsigned int vc_disp_ctrl: 1; - unsigned int vc_toggle_meta: 1; - unsigned int vc_decscnm: 1; - unsigned int vc_decom: 1; - unsigned int vc_decawm: 1; - unsigned int vc_deccm: 1; - unsigned int vc_decim: 1; - unsigned int vc_priv: 3; - unsigned int vc_need_wrap: 1; - unsigned int vc_can_do_color: 1; - unsigned int vc_report_mouse: 2; - unsigned int vc_bracketed_paste: 1; - unsigned char vc_utf: 1; - unsigned char vc_utf_count; - int vc_utf_char; - long unsigned int vc_tab_stop[4]; - unsigned char vc_palette[48]; - short unsigned int *vc_translate; - unsigned int vc_bell_pitch; - unsigned int vc_bell_duration; - short unsigned int vc_cur_blink_ms; - struct vc_data **vc_display_fg; - struct uni_pagedict *uni_pagedict; - struct uni_pagedict **uni_pagedict_loc; - u32 **vc_uni_lines; -}; - -struct fb_fix_screeninfo { - char id[16]; - long unsigned int smem_start; - __u32 smem_len; - __u32 type; - __u32 type_aux; - __u32 visual; - __u16 xpanstep; - __u16 ypanstep; - __u16 ywrapstep; - __u32 line_length; - long unsigned int mmio_start; - __u32 mmio_len; - __u32 accel; - __u16 capabilities; - __u16 reserved[2]; -}; - -struct fb_bitfield { - __u32 offset; - __u32 length; - __u32 msb_right; -}; - -struct fb_var_screeninfo { - __u32 xres; - __u32 yres; - __u32 xres_virtual; - __u32 yres_virtual; - __u32 xoffset; - __u32 yoffset; - __u32 bits_per_pixel; - __u32 grayscale; - struct fb_bitfield red; - struct fb_bitfield green; - struct fb_bitfield blue; - struct fb_bitfield transp; - __u32 nonstd; - __u32 activate; - __u32 height; - __u32 width; - __u32 accel_flags; - __u32 pixclock; - __u32 left_margin; - __u32 right_margin; - __u32 upper_margin; - __u32 lower_margin; - __u32 hsync_len; - __u32 vsync_len; - __u32 sync; - __u32 vmode; - __u32 rotate; - __u32 colorspace; - __u32 reserved[4]; -}; - -struct fb_cmap { - __u32 start; - __u32 len; - __u16 *red; - __u16 *green; - __u16 *blue; - __u16 *transp; -}; - -enum { - FB_BLANK_UNBLANK = 0, - FB_BLANK_NORMAL = 1, - FB_BLANK_VSYNC_SUSPEND = 2, - FB_BLANK_HSYNC_SUSPEND = 3, - FB_BLANK_POWERDOWN = 4, -}; - -struct fb_copyarea { - __u32 dx; - __u32 dy; - __u32 width; - __u32 height; - __u32 sx; - __u32 sy; -}; - -struct fb_fillrect { - __u32 dx; - __u32 dy; - __u32 width; - __u32 height; - __u32 color; - __u32 rop; -}; - -struct fb_image { - __u32 dx; - __u32 dy; - __u32 width; - __u32 height; - __u32 fg_color; - __u32 bg_color; - __u8 depth; - const char *data; - struct fb_cmap cmap; -}; - -struct fbcurpos { - __u16 x; - __u16 y; -}; - -struct fb_cursor { - __u16 set; - __u16 enable; - __u16 rop; - const char *mask; - struct fbcurpos hot; - struct fb_image image; -}; - -struct fb_chroma { - __u32 redx; - __u32 greenx; - __u32 bluex; - __u32 whitex; - __u32 redy; - __u32 greeny; - __u32 bluey; - __u32 whitey; -}; - -struct fb_videomode; - -struct fb_monspecs { - struct fb_chroma chroma; - struct fb_videomode *modedb; - __u8 manufacturer[4]; - __u8 monitor[14]; - __u8 serial_no[14]; - __u8 ascii[14]; - __u32 modedb_len; - __u32 model; - __u32 serial; - __u32 year; - __u32 week; - __u32 hfmin; - __u32 hfmax; - __u32 dclkmin; - __u32 dclkmax; - __u16 input; - __u16 dpms; - __u16 signal; - __u16 vfmin; - __u16 vfmax; - __u16 gamma; - __u16 gtf: 1; - __u16 misc; - __u8 version; - __u8 revision; - __u8 max_x; - __u8 max_y; -}; - -struct fb_videomode { - const char *name; - u32 refresh; - u32 xres; - u32 yres; - u32 pixclock; - u32 left_margin; - u32 right_margin; - u32 upper_margin; - u32 lower_margin; - u32 hsync_len; - u32 vsync_len; - u32 sync; - u32 vmode; - u32 flag; -}; - -struct fb_info; - -struct fb_pixmap { - u8 *addr; - u32 size; - u32 offset; - u32 buf_align; - u32 scan_align; - u32 access_align; - u32 flags; - long unsigned int blit_x[1]; - long unsigned int blit_y[2]; - void (*writeio)(struct fb_info *, void *, void *, unsigned int); - void (*readio)(struct fb_info *, void *, void *, unsigned int); -}; - -struct backlight_device; - -struct lcd_device; - -struct fb_deferred_io_pageref; - -struct fb_deferred_io; - -struct fb_ops; - -struct fb_tile_ops; - -struct fb_info { - refcount_t count; - int node; - int flags; - int fbcon_rotate_hint; - struct mutex lock; - struct mutex mm_lock; - struct fb_var_screeninfo var; - struct fb_fix_screeninfo fix; - struct fb_monspecs monspecs; - struct fb_pixmap pixmap; - struct fb_pixmap sprite; - struct fb_cmap cmap; - struct list_head modelist; - struct fb_videomode *mode; - int blank; - struct backlight_device *bl_dev; - struct mutex bl_curve_mutex; - u8 bl_curve[128]; - struct lcd_device *lcd_dev; - struct delayed_work deferred_work; - long unsigned int npagerefs; - struct fb_deferred_io_pageref *pagerefs; - struct fb_deferred_io *fbdefio; - const struct fb_ops *fbops; - struct device *device; - struct device *dev; - int class_flag; - struct fb_tile_ops *tileops; - union { - char *screen_base; - char *screen_buffer; - }; - long unsigned int screen_size; - void *pseudo_palette; - u32 state; - void *fbcon_par; - void *par; - bool skip_vt_switch; - bool skip_panic; -}; - -struct fb_blit_caps { - long unsigned int x[1]; - long unsigned int y[2]; - u32 len; - u32 flags; -}; - -struct fb_deferred_io_pageref { - struct page *page; - long unsigned int offset; - struct list_head list; -}; - -struct fb_deferred_io { - long unsigned int delay; - bool sort_pagereflist; - int open_count; - struct mutex lock; - struct list_head pagereflist; - struct address_space *mapping; - struct page * (*get_page)(struct fb_info *, long unsigned int); - void (*deferred_io)(struct fb_info *, struct list_head *); -}; - -struct fb_ops { - struct module *owner; - int (*fb_open)(struct fb_info *, int); - int (*fb_release)(struct fb_info *, int); - ssize_t (*fb_read)(struct fb_info *, char *, size_t, loff_t *); - ssize_t (*fb_write)(struct fb_info *, const char *, size_t, loff_t *); - int (*fb_check_var)(struct fb_var_screeninfo *, struct fb_info *); - int (*fb_set_par)(struct fb_info *); - int (*fb_setcolreg)(unsigned int, unsigned int, unsigned int, unsigned int, unsigned int, struct fb_info *); - int (*fb_setcmap)(struct fb_cmap *, struct fb_info *); - int (*fb_blank)(int, struct fb_info *); - int (*fb_pan_display)(struct fb_var_screeninfo *, struct fb_info *); - void (*fb_fillrect)(struct fb_info *, const struct fb_fillrect *); - void (*fb_copyarea)(struct fb_info *, const struct fb_copyarea *); - void (*fb_imageblit)(struct fb_info *, const struct fb_image *); - int (*fb_cursor)(struct fb_info *, struct fb_cursor *); - int (*fb_sync)(struct fb_info *); - int (*fb_ioctl)(struct fb_info *, unsigned int, long unsigned int); - int (*fb_compat_ioctl)(struct fb_info *, unsigned int, long unsigned int); - int (*fb_mmap)(struct fb_info *, struct vm_area_struct *); - void (*fb_get_caps)(struct fb_info *, struct fb_blit_caps *, struct fb_var_screeninfo *); - void (*fb_destroy)(struct fb_info *); - int (*fb_debug_enter)(struct fb_info *); - int (*fb_debug_leave)(struct fb_info *); -}; - -struct fb_tilemap { - __u32 width; - __u32 height; - __u32 depth; - __u32 length; - const __u8 *data; -}; - -struct fb_tilerect { - __u32 sx; - __u32 sy; - __u32 width; - __u32 height; - __u32 index; - __u32 fg; - __u32 bg; - __u32 rop; -}; - -struct fb_tilearea { - __u32 sx; - __u32 sy; - __u32 dx; - __u32 dy; - __u32 width; - __u32 height; -}; - -struct fb_tileblit { - __u32 sx; - __u32 sy; - __u32 width; - __u32 height; - __u32 fg; - __u32 bg; - __u32 length; - __u32 *indices; -}; - -struct fb_tilecursor { - __u32 sx; - __u32 sy; - __u32 mode; - __u32 shape; - __u32 fg; - __u32 bg; -}; - -struct fb_tile_ops { - void (*fb_settile)(struct fb_info *, struct fb_tilemap *); - void (*fb_tilecopy)(struct fb_info *, struct fb_tilearea *); - void (*fb_tilefill)(struct fb_info *, struct fb_tilerect *); - void (*fb_tileblit)(struct fb_info *, struct fb_tileblit *); - void (*fb_tilecursor)(struct fb_info *, struct fb_tilecursor *); - int (*fb_get_tilemax)(struct fb_info *); -}; - -struct lcd_properties { - int max_contrast; -}; - -struct lcd_ops; - -struct lcd_device { - struct lcd_properties props; - struct mutex ops_lock; - const struct lcd_ops *ops; - struct mutex update_lock; - struct list_head entry; - struct device dev; -}; - -struct fb_modelist { - struct list_head list; - struct fb_videomode mode; -}; - -struct lcd_ops { - int (*get_power)(struct lcd_device *); - int (*set_power)(struct lcd_device *, int); - int (*get_contrast)(struct lcd_device *); - int (*set_contrast)(struct lcd_device *, int); - int (*set_mode)(struct lcd_device *, u32, u32); - bool (*controls_device)(struct lcd_device *, struct device *); -}; - -struct dmt_videomode { - u32 dmt_id; - u32 std_2byte_code; - u32 cvt_3byte_code; - const struct fb_videomode *mode; -}; - -enum display_flags { - DISPLAY_FLAGS_HSYNC_LOW = 1, - DISPLAY_FLAGS_HSYNC_HIGH = 2, - DISPLAY_FLAGS_VSYNC_LOW = 4, - DISPLAY_FLAGS_VSYNC_HIGH = 8, - DISPLAY_FLAGS_DE_LOW = 16, - DISPLAY_FLAGS_DE_HIGH = 32, - DISPLAY_FLAGS_PIXDATA_POSEDGE = 64, - DISPLAY_FLAGS_PIXDATA_NEGEDGE = 128, - DISPLAY_FLAGS_INTERLACED = 256, - DISPLAY_FLAGS_DOUBLESCAN = 512, - DISPLAY_FLAGS_DOUBLECLK = 1024, - DISPLAY_FLAGS_SYNC_POSEDGE = 2048, - DISPLAY_FLAGS_SYNC_NEGEDGE = 4096, -}; - -struct videomode { - long unsigned int pixelclock; - u32 hactive; - u32 hfront_porch; - u32 hback_porch; - u32 hsync_len; - u32 vactive; - u32 vfront_porch; - u32 vback_porch; - u32 vsync_len; - enum display_flags flags; -}; - -struct broken_edid { - u8 manufacturer[4]; - u32 model; - u32 fix; -}; - -struct __fb_timings { - u32 dclk; - u32 hfreq; - u32 vfreq; - u32 hactive; - u32 vactive; - u32 hblank; - u32 vblank; - u32 htotal; - u32 vtotal; -}; - -typedef unsigned char u_char; - -struct fbcon_display { - const u_char *fontdata; - int userfont; - u_short inverse; - short int yscroll; - int vrows; - int cursor_shape; - int con_rotate; - u32 xres_virtual; - u32 yres_virtual; - u32 height; - u32 width; - u32 bits_per_pixel; - u32 grayscale; - u32 nonstd; - u32 accel_flags; - u32 rotate; - struct fb_bitfield red; - struct fb_bitfield green; - struct fb_bitfield blue; - struct fb_bitfield transp; - const struct fb_videomode *mode; -}; - -struct fbcon_ops { - void (*bmove)(struct vc_data *, struct fb_info *, int, int, int, int, int, int); - void (*clear)(struct vc_data *, struct fb_info *, int, int, int, int, int, int); - void (*putcs)(struct vc_data *, struct fb_info *, const short unsigned int *, int, int, int, int, int); - void (*clear_margins)(struct vc_data *, struct fb_info *, int, int); - void (*cursor)(struct vc_data *, struct fb_info *, bool, int, int); - int (*update_start)(struct fb_info *); - int (*rotate_font)(struct fb_info *, struct vc_data *); - struct fb_var_screeninfo var; - struct delayed_work cursor_work; - struct fb_cursor cursor_state; - struct fbcon_display *p; - struct fb_info *info; - int currcon; - int cur_blink_jiffies; - int cursor_flash; - int cursor_reset; - int blank_state; - int graphics; - int save_graphics; - bool initialized; - int rotate; - int cur_rotate; - char *cursor_data; - u8 *fontbuffer; - u8 *fontdata; - u8 *cursor_src; - u32 cursor_size; - u32 fd_size; -}; - -struct fb_address { - void *address; - int bits; -}; - -struct fb_reverse { - bool byte; - bool pixel; -}; - -struct fb_pattern { - long unsigned int pixels; - int left; - int right; - struct fb_reverse reverse; -}; - -struct fb_bitmap_iter { - const u8 *data; - long unsigned int colors[2]; - int width; - int i; -}; - -struct fb_color_iter { - const u8 *data; - const u32 *palette; - struct fb_reverse reverse; - int shift; - int width; - int i; -}; - -struct fb_bitmap4x_iter { - const u8 *data; - u32 fgxcolor; - u32 bgcolor; - int width; - int i; - const u32 *expand; - int bpp; - bool top; -}; - -struct timing_entry { - u32 min; - u32 typ; - u32 max; -}; - -struct display_timing { - struct timing_entry pixelclock; - struct timing_entry hactive; - struct timing_entry hfront_porch; - struct timing_entry hback_porch; - struct timing_entry hsync_len; - struct timing_entry vactive; - struct timing_entry vfront_porch; - struct timing_entry vback_porch; - struct timing_entry vsync_len; - enum display_flags flags; -}; - -struct display_timings { - unsigned int num_timings; - unsigned int native_mode; - struct display_timing **timings; -}; - -enum idle_boot_override { - IDLE_NO_OVERRIDE = 0, - IDLE_HALT = 1, - IDLE_NOMWAIT = 2, - IDLE_POLL = 3, -}; - -typedef u32 phys_cpuid_t; - -enum tick_broadcast_mode { - TICK_BROADCAST_OFF = 0, - TICK_BROADCAST_ON = 1, - TICK_BROADCAST_FORCE = 2, -}; - -struct thermal_cooling_device_ops; - -struct thermal_cooling_device { - int id; - const char *type; - long unsigned int max_state; - struct device device; - struct device_node *np; - void *devdata; - void *stats; - const struct thermal_cooling_device_ops *ops; - bool updated; - struct mutex lock; - struct list_head thermal_instances; - struct list_head node; -}; - -enum { - C1E_PROMOTION_PRESERVE = 0, - C1E_PROMOTION_ENABLE = 1, - C1E_PROMOTION_DISABLE = 2, -}; - -struct idle_cpu { - struct cpuidle_state *state_table; - long unsigned int auto_demotion_disable_flags; - bool disable_promotion_to_c1e; - bool c1_demotion_supported; - bool use_acpi; -}; - -struct thermal_cooling_device_ops { - int (*get_max_state)(struct thermal_cooling_device *, long unsigned int *); - int (*get_cur_state)(struct thermal_cooling_device *, long unsigned int *); - int (*set_cur_state)(struct thermal_cooling_device *, long unsigned int); - int (*get_requested_power)(struct thermal_cooling_device *, u32 *); - int (*state2power)(struct thermal_cooling_device *, long unsigned int, u32 *); - int (*power2state)(struct thermal_cooling_device *, u32, long unsigned int *); -}; - -struct acpi_processor_cx { - u8 valid; - u8 type; - u32 address; - u8 entry_method; - u8 index; - u32 latency; - u8 bm_sts_skip; - char desc[32]; -}; - -struct acpi_lpi_state { - u32 min_residency; - u32 wake_latency; - u32 flags; - u32 arch_flags; - u32 res_cnt_freq; - u32 enable_parent_state; - u64 address; - u8 index; - u8 entry_method; - char desc[32]; -}; - -struct acpi_processor_power { - int count; - union { - struct acpi_processor_cx states[8]; - struct acpi_lpi_state lpi_states[8]; - }; - int timer_broadcast_on_state; -}; - -struct acpi_psd_package { - u64 num_entries; - u64 revision; - u64 domain; - u64 coord_type; - u64 num_processors; -}; - -struct acpi_pct_register { - u8 descriptor; - u16 length; - u8 space_id; - u8 bit_width; - u8 bit_offset; - u8 reserved; - u64 address; -} __attribute__((packed)); - -struct acpi_processor_px { - u64 core_frequency; - u64 power; - u64 transition_latency; - u64 bus_master_latency; - u64 control; - u64 status; -}; - -struct acpi_processor_performance { - unsigned int state; - unsigned int platform_limit; - struct acpi_pct_register control_register; - struct acpi_pct_register status_register; - unsigned int state_count; - struct acpi_processor_px *states; - struct acpi_psd_package domain_info; - cpumask_var_t shared_cpu_map; - unsigned int shared_type; -}; - -struct acpi_tsd_package { - u64 num_entries; - u64 revision; - u64 domain; - u64 coord_type; - u64 num_processors; -}; - -struct acpi_processor_tx_tss { - u64 freqpercentage; - u64 power; - u64 transition_latency; - u64 control; - u64 status; -}; - -struct acpi_processor_tx { - u16 power; - u16 performance; -}; - -struct acpi_processor; - -struct acpi_processor_throttling { - unsigned int state; - unsigned int platform_limit; - struct acpi_pct_register control_register; - struct acpi_pct_register status_register; - unsigned int state_count; - struct acpi_processor_tx_tss *states_tss; - struct acpi_tsd_package domain_info; - cpumask_var_t shared_cpu_map; - int (*acpi_processor_get_throttling)(struct acpi_processor *); - int (*acpi_processor_set_throttling)(struct acpi_processor *, int, bool); - u32 address; - u8 duty_offset; - u8 duty_width; - u8 tsd_valid_flag; - unsigned int shared_type; - struct acpi_processor_tx states[16]; -}; - -struct acpi_processor_flags { - u8 power: 1; - u8 performance: 1; - u8 throttling: 1; - u8 limit: 1; - u8 bm_control: 1; - u8 bm_check: 1; - u8 has_cst: 1; - u8 has_lpi: 1; - u8 power_setup_done: 1; - u8 bm_rld_set: 1; - u8 previously_online: 1; -}; - -struct acpi_processor_lx { - int px; - int tx; -}; - -struct acpi_processor_limit { - struct acpi_processor_lx state; - struct acpi_processor_lx thermal; - struct acpi_processor_lx user; -}; - -struct acpi_processor { - acpi_handle handle; - u32 acpi_id; - phys_cpuid_t phys_id; - u32 id; - u32 pblk; - int performance_platform_limit; - int throttling_platform_limit; - struct acpi_processor_flags flags; - struct acpi_processor_power power; - struct acpi_processor_performance *performance; - struct acpi_processor_throttling throttling; - struct acpi_processor_limit limit; - struct thermal_cooling_device *cdev; - struct device *dev; - struct freq_qos_request perflib_req; - struct freq_qos_request thermal_req; -}; - -struct nvs_region { - __u64 phys_start; - __u64 size; - struct list_head node; -}; - -struct nvs_page { - long unsigned int phys_start; - unsigned int size; - void *kaddr; - void *data; - bool unmap; - struct list_head node; -}; - -struct platform_suspend_ops { - int (*valid)(suspend_state_t); - int (*begin)(suspend_state_t); - int (*prepare)(void); - int (*prepare_late)(void); - int (*enter)(suspend_state_t); - void (*wake)(void); - void (*finish)(void); - bool (*suspend_again)(void); - void (*end)(void); - void (*recover)(void); -}; - -struct platform_s2idle_ops { - int (*begin)(void); - int (*prepare)(void); - int (*prepare_late)(void); - void (*check)(void); - bool (*wake)(void); - void (*restore_early)(void); - void (*restore)(void); - void (*end)(void); -}; - -enum sys_off_mode { - SYS_OFF_MODE_POWER_OFF_PREPARE = 0, - SYS_OFF_MODE_POWER_OFF = 1, - SYS_OFF_MODE_RESTART_PREPARE = 2, - SYS_OFF_MODE_RESTART = 3, -}; - -struct sys_off_data { - int mode; - void *cb_data; - const char *cmd; - struct device *dev; -}; - -typedef u32 acpi_event_status; - -struct acpi_table_facs { - char signature[4]; - u32 length; - u32 hardware_signature; - u32 firmware_waking_vector; - u32 global_lock; - u32 flags; - u64 xfirmware_waking_vector; - u8 version; - u8 reserved[3]; - u32 ospm_flags; - u8 reserved1[24]; -}; - -typedef int (*device_iter_t)(struct device *, void *); - -typedef void (*acpi_notify_handler)(acpi_handle, u32, void *); - -typedef acpi_status (*acpi_table_handler)(u32, void *, void *); - -typedef int (*acpi_op_add)(struct acpi_device *); - -typedef void (*acpi_op_remove)(struct acpi_device *); - -typedef void (*acpi_op_notify)(struct acpi_device *, u32); - -struct acpi_device_ops { - acpi_op_add add; - acpi_op_remove remove; - acpi_op_notify notify; -}; - -struct acpi_driver { - char name[80]; - char class[80]; - const struct acpi_device_id *ids; - unsigned int flags; - struct acpi_device_ops ops; - struct device_driver drv; -}; - -struct acpi_hardware_id { - struct list_head list; - const char *id; -}; - -struct acpi_device_physical_node { - struct list_head node; - struct device *dev; - unsigned int node_id; - bool put_online: 1; -}; - -enum acpi_irq_model_id { - ACPI_IRQ_MODEL_PIC = 0, - ACPI_IRQ_MODEL_IOAPIC = 1, - ACPI_IRQ_MODEL_IOSAPIC = 2, - ACPI_IRQ_MODEL_PLATFORM = 3, - ACPI_IRQ_MODEL_GIC = 4, - ACPI_IRQ_MODEL_LPIC = 5, - ACPI_IRQ_MODEL_RINTC = 6, - ACPI_IRQ_MODEL_COUNT = 7, -}; - -struct acpi_osc_context { - char *uuid_str; - int rev; - struct acpi_buffer cap; - struct acpi_buffer ret; -}; - -struct acpi_dev_walk_context { - int (*fn)(struct acpi_device *, void *); - void *data; -}; - -struct acpi_pld_info { - u8 revision; - u8 ignore_color; - u8 red; - u8 green; - u8 blue; - u16 width; - u16 height; - u8 user_visible; - u8 dock; - u8 lid; - u8 panel; - u8 vertical_position; - u8 horizontal_position; - u8 shape; - u8 group_orientation; - u8 group_token; - u8 group_position; - u8 bay; - u8 ejectable; - u8 ospm_eject_required; - u8 cabinet_number; - u8 card_cage_number; - u8 reference; - u8 rotation; - u8 order; - u8 reserved; - u16 vertical_offset; - u16 horizontal_offset; -}; - -enum v4l2_preemphasis { - V4L2_PREEMPHASIS_DISABLED = 0, - V4L2_PREEMPHASIS_50_uS = 1, - V4L2_PREEMPHASIS_75_uS = 2, -}; - -enum v4l2_av1_segment_feature { - V4L2_AV1_SEG_LVL_ALT_Q = 0, - V4L2_AV1_SEG_LVL_ALT_LF_Y_V = 1, - V4L2_AV1_SEG_LVL_REF_FRAME = 5, - V4L2_AV1_SEG_LVL_REF_SKIP = 6, - V4L2_AV1_SEG_LVL_REF_GLOBALMV = 7, - V4L2_AV1_SEG_LVL_MAX = 8, -}; - -enum v4l2_fwnode_bus_type { - V4L2_FWNODE_BUS_TYPE_GUESS = 0, - V4L2_FWNODE_BUS_TYPE_CSI2_CPHY = 1, - V4L2_FWNODE_BUS_TYPE_CSI1 = 2, - V4L2_FWNODE_BUS_TYPE_CCP2 = 3, - V4L2_FWNODE_BUS_TYPE_CSI2_DPHY = 4, - V4L2_FWNODE_BUS_TYPE_PARALLEL = 5, - V4L2_FWNODE_BUS_TYPE_BT656 = 6, - V4L2_FWNODE_BUS_TYPE_DPI = 7, - NR_OF_V4L2_FWNODE_BUS_TYPE = 8, -}; - -struct crs_csi2_connection { - struct list_head entry; - struct acpi_resource_csi2_serialbus csi2_data; - acpi_handle remote_handle; - char remote_name[0]; -}; - -struct crs_csi2 { - struct list_head entry; - acpi_handle handle; - struct acpi_device_software_nodes *swnodes; - struct list_head connections; - u32 port_count; -}; - -struct csi2_resources_walk_data { - acpi_handle handle; - struct list_head connections; -}; - -struct acpi_pci_link_irq { - u32 active; - u8 triggering; - u8 polarity; - u8 resource_type; - u8 possible_count; - u32 possible[16]; - u8 initialized: 1; - u8 reserved: 7; -}; - -struct acpi_pci_link { - struct list_head list; - struct acpi_device *device; - struct acpi_pci_link_irq irq; - int refcnt; -}; - -struct fch_clk_data { - void *base; - char *name; -}; - -struct platform_device_info { - struct device *parent; - struct fwnode_handle *fwnode; - bool of_node_reused; - const char *name; - int id; - const struct resource *res; - unsigned int num_res; - const void *data; - size_t size_data; - u64 dma_mask; - const struct property_entry *properties; -}; - -struct apd_private_data; - -struct apd_device_desc { - unsigned int fixed_clk_rate; - struct property_entry *properties; - int (*setup)(struct apd_private_data *); -}; - -struct apd_private_data { - struct clk *clk; - struct acpi_device *adev; - const struct apd_device_desc *dev_desc; -}; - -struct acpi_bus_event { - struct list_head node; - acpi_device_class device_class; - acpi_bus_id bus_id; - u32 type; - u32 data; -}; - -struct scm_creds { - u32 pid; - kuid_t uid; - kgid_t gid; -}; - -struct netlink_skb_parms { - struct scm_creds creds; - __u32 portid; - __u32 dst_group; - __u32 flags; - struct sock *sk; - bool nsid_is_set; - int nsid; -}; - -typedef int (*netlink_filter_fn)(struct sock *, struct sk_buff *, void *); - -struct genlmsghdr { - __u8 cmd; - __u8 version; - __u16 reserved; -}; - -struct genl_multicast_group { - char name[16]; - u8 flags; -}; - -struct genl_split_ops; - -struct genl_info; - -struct genl_ops; - -struct genl_small_ops; - -struct genl_family { - unsigned int hdrsize; - char name[16]; - unsigned int version; - unsigned int maxattr; - u8 netnsok: 1; - u8 parallel_ops: 1; - u8 n_ops; - u8 n_small_ops; - u8 n_split_ops; - u8 n_mcgrps; - u8 resv_start_op; - const struct nla_policy *policy; - int (*pre_doit)(const struct genl_split_ops *, struct sk_buff *, struct genl_info *); - void (*post_doit)(const struct genl_split_ops *, struct sk_buff *, struct genl_info *); - int (*bind)(int); - void (*unbind)(int); - const struct genl_ops *ops; - const struct genl_small_ops *small_ops; - const struct genl_split_ops *split_ops; - const struct genl_multicast_group *mcgrps; - struct module *module; - size_t sock_priv_size; - void (*sock_priv_init)(void *); - void (*sock_priv_destroy)(void *); - int id; - unsigned int mcgrp_offset; - struct xarray *sock_privs; -}; - -struct genl_split_ops { - union { - struct { - int (*pre_doit)(const struct genl_split_ops *, struct sk_buff *, struct genl_info *); - int (*doit)(struct sk_buff *, struct genl_info *); - void (*post_doit)(const struct genl_split_ops *, struct sk_buff *, struct genl_info *); - }; - struct { - int (*start)(struct netlink_callback *); - int (*dumpit)(struct sk_buff *, struct netlink_callback *); - int (*done)(struct netlink_callback *); - }; - }; - const struct nla_policy *policy; - unsigned int maxattr; - u8 cmd; - u8 internal_flags; - u8 flags; - u8 validate; -}; - -struct genl_info { - u32 snd_seq; - u32 snd_portid; - const struct genl_family *family; - const struct nlmsghdr *nlhdr; - struct genlmsghdr *genlhdr; - struct nlattr **attrs; - possible_net_t _net; - union { - u8 ctx[48]; - void *user_ptr[2]; - }; - struct netlink_ext_ack *extack; -}; - -struct genl_ops { - int (*doit)(struct sk_buff *, struct genl_info *); - int (*start)(struct netlink_callback *); - int (*dumpit)(struct sk_buff *, struct netlink_callback *); - int (*done)(struct netlink_callback *); - const struct nla_policy *policy; - unsigned int maxattr; - u8 cmd; - u8 internal_flags; - u8 flags; - u8 validate; -}; - -struct genl_small_ops { - int (*doit)(struct sk_buff *, struct genl_info *); - int (*dumpit)(struct sk_buff *, struct netlink_callback *); - u8 cmd; - u8 internal_flags; - u8 flags; - u8 validate; -}; - -struct acpi_genl_event { - acpi_device_class device_class; - char bus_id[15]; - u32 type; - u32 data; -}; - -enum { - ACPI_GENL_ATTR_UNSPEC = 0, - ACPI_GENL_ATTR_EVENT = 1, - __ACPI_GENL_ATTR_MAX = 2, -}; - -enum { - ACPI_GENL_CMD_UNSPEC = 0, - ACPI_GENL_CMD_EVENT = 1, - __ACPI_GENL_CMD_MAX = 2, -}; - -struct acpi_table_wdat { - struct acpi_table_header header; - u32 header_length; - u16 pci_segment; - u8 pci_bus; - u8 pci_device; - u8 pci_function; - u8 reserved[3]; - u32 timer_period; - u32 max_count; - u32 min_count; - u8 flags; - u8 reserved2[3]; - u32 entries; -}; - -struct acpi_wdat_entry { - u8 action; - u8 instruction; - u16 reserved; - struct acpi_generic_address register_region; - u32 value; - u32 mask; -}; - -typedef u16 acpi_owner_id; - -typedef u32 (*acpi_gpe_handler)(acpi_handle, u32, void *); - -union acpi_name_union { - u32 integer; - char ascii[4]; -}; - -union acpi_operand_object; - -struct acpi_namespace_node { - union acpi_operand_object *object; - u8 descriptor_type; - u8 type; - u16 flags; - union acpi_name_union name; - struct acpi_namespace_node *parent; - struct acpi_namespace_node *child; - struct acpi_namespace_node *peer; - acpi_owner_id owner_id; -}; - -struct acpi_object_common { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; -}; - -struct acpi_object_integer { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - u8 fill[3]; - u64 value; -}; - -struct acpi_object_string { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - char *pointer; - u32 length; -}; - -struct acpi_object_buffer { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - u8 *pointer; - u32 length; - u32 aml_length; - u8 *aml_start; - struct acpi_namespace_node *node; -}; - -struct acpi_object_package { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - struct acpi_namespace_node *node; - union acpi_operand_object **elements; - u8 *aml_start; - u32 aml_length; - u32 count; -}; - -struct acpi_object_event { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - void *os_semaphore; -}; - -struct acpi_walk_state; - -typedef acpi_status (*acpi_internal_method)(struct acpi_walk_state *); - -struct acpi_object_method { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - u8 info_flags; - u8 param_count; - u8 sync_level; - union acpi_operand_object *mutex; - union acpi_operand_object *node; - u8 *aml_start; - union { - acpi_internal_method implementation; - union acpi_operand_object *handler; - } dispatch; - u32 aml_length; - acpi_owner_id owner_id; - u8 thread_count; -}; - -struct acpi_thread_state; - -struct acpi_object_mutex { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - u8 sync_level; - u16 acquisition_depth; - void *os_mutex; - u64 thread_id; - struct acpi_thread_state *owner_thread; - union acpi_operand_object *prev; - union acpi_operand_object *next; - struct acpi_namespace_node *node; - u8 original_sync_level; -}; - -struct acpi_object_region { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - u8 space_id; - struct acpi_namespace_node *node; - union acpi_operand_object *handler; - union acpi_operand_object *next; - acpi_physical_address address; - u32 length; - void *pointer; -}; - -struct acpi_object_notify_common { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - union acpi_operand_object *notify_list[2]; - union acpi_operand_object *handler; -}; - -struct acpi_gpe_block_info; - -struct acpi_object_device { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - union acpi_operand_object *notify_list[2]; - union acpi_operand_object *handler; - struct acpi_gpe_block_info *gpe_block; -}; - -struct acpi_object_power_resource { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - union acpi_operand_object *notify_list[2]; - union acpi_operand_object *handler; - u32 system_level; - u32 resource_order; -}; - -struct acpi_object_processor { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - u8 proc_id; - u8 length; - union acpi_operand_object *notify_list[2]; - union acpi_operand_object *handler; - acpi_io_address address; -}; - -struct acpi_object_thermal_zone { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - union acpi_operand_object *notify_list[2]; - union acpi_operand_object *handler; -}; - -struct acpi_object_field_common { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - u8 field_flags; - u8 attribute; - u8 access_byte_width; - struct acpi_namespace_node *node; - u32 bit_length; - u32 base_byte_offset; - u32 value; - u8 start_field_bit_offset; - u8 access_length; - union acpi_operand_object *region_obj; -}; - -struct acpi_object_region_field { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - u8 field_flags; - u8 attribute; - u8 access_byte_width; - struct acpi_namespace_node *node; - u32 bit_length; - u32 base_byte_offset; - u32 value; - u8 start_field_bit_offset; - u8 access_length; - u16 resource_length; - union acpi_operand_object *region_obj; - u8 *resource_buffer; - u16 pin_number_index; - u8 *internal_pcc_buffer; -}; - -struct acpi_object_buffer_field { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - u8 field_flags; - u8 attribute; - u8 access_byte_width; - struct acpi_namespace_node *node; - u32 bit_length; - u32 base_byte_offset; - u32 value; - u8 start_field_bit_offset; - u8 access_length; - u8 is_create_field; - union acpi_operand_object *buffer_obj; -}; - -struct acpi_object_bank_field { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - u8 field_flags; - u8 attribute; - u8 access_byte_width; - struct acpi_namespace_node *node; - u32 bit_length; - u32 base_byte_offset; - u32 value; - u8 start_field_bit_offset; - u8 access_length; - union acpi_operand_object *region_obj; - union acpi_operand_object *bank_obj; -}; - -struct acpi_object_index_field { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - u8 field_flags; - u8 attribute; - u8 access_byte_width; - struct acpi_namespace_node *node; - u32 bit_length; - u32 base_byte_offset; - u32 value; - u8 start_field_bit_offset; - u8 access_length; - union acpi_operand_object *index_obj; - union acpi_operand_object *data_obj; -}; - -struct acpi_object_notify_handler { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - struct acpi_namespace_node *node; - u32 handler_type; - acpi_notify_handler handler; - void *context; - union acpi_operand_object *next[2]; -}; - -struct acpi_object_addr_handler { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - u8 space_id; - u8 handler_flags; - acpi_adr_space_handler handler; - struct acpi_namespace_node *node; - void *context; - void *context_mutex; - acpi_adr_space_setup setup; - union acpi_operand_object *region_list; - union acpi_operand_object *next; -}; - -struct acpi_object_reference { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - u8 class; - u8 target_type; - u8 resolved; - void *object; - struct acpi_namespace_node *node; - union acpi_operand_object **where; - u8 *index_pointer; - u8 *aml; - u32 value; -}; - -struct acpi_object_extra { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - struct acpi_namespace_node *method_REG; - struct acpi_namespace_node *scope_node; - void *region_context; - u8 *aml_start; - u32 aml_length; -}; - -struct acpi_object_data { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - acpi_object_handler handler; - void *pointer; -}; - -struct acpi_object_cache_list { - union acpi_operand_object *next_object; - u8 descriptor_type; - u8 type; - u16 reference_count; - u8 flags; - union acpi_operand_object *next; -}; - -union acpi_operand_object { - struct acpi_object_common common; - struct acpi_object_integer integer; - struct acpi_object_string string; - struct acpi_object_buffer buffer; - struct acpi_object_package package; - struct acpi_object_event event; - struct acpi_object_method method; - struct acpi_object_mutex mutex; - struct acpi_object_region region; - struct acpi_object_notify_common common_notify; - struct acpi_object_device device; - struct acpi_object_power_resource power_resource; - struct acpi_object_processor processor; - struct acpi_object_thermal_zone thermal_zone; - struct acpi_object_field_common common_field; - struct acpi_object_region_field field; - struct acpi_object_buffer_field buffer_field; - struct acpi_object_bank_field bank_field; - struct acpi_object_index_field index_field; - struct acpi_object_notify_handler notify; - struct acpi_object_addr_handler address_space; - struct acpi_object_reference reference; - struct acpi_object_extra extra; - struct acpi_object_data data; - struct acpi_object_cache_list cache; - struct acpi_namespace_node node; -}; - -union acpi_parse_object; - -union acpi_generic_state; - -struct acpi_parse_state { - u8 *aml_start; - u8 *aml; - u8 *aml_end; - u8 *pkg_start; - u8 *pkg_end; - union acpi_parse_object *start_op; - struct acpi_namespace_node *start_node; - union acpi_generic_state *scope; - union acpi_parse_object *start_scope; - u32 aml_size; -}; - -typedef acpi_status (*acpi_parse_downwards)(struct acpi_walk_state *, union acpi_parse_object **); - -typedef acpi_status (*acpi_parse_upwards)(struct acpi_walk_state *); - -struct acpi_opcode_info; - -struct acpi_walk_state { - struct acpi_walk_state *next; - u8 descriptor_type; - u8 walk_type; - u16 opcode; - u8 next_op_info; - u8 num_operands; - u8 operand_index; - acpi_owner_id owner_id; - u8 last_predicate; - u8 current_result; - u8 return_used; - u8 scope_depth; - u8 pass_number; - u8 namespace_override; - u8 result_size; - u8 result_count; - u8 *aml; - u32 arg_types; - u32 method_breakpoint; - u32 user_breakpoint; - u32 parse_flags; - struct acpi_parse_state parser_state; - u32 prev_arg_types; - u32 arg_count; - u16 method_nesting_depth; - u8 method_is_nested; - struct acpi_namespace_node arguments[7]; - struct acpi_namespace_node local_variables[8]; - union acpi_operand_object *operands[9]; - union acpi_operand_object **params; - u8 *aml_last_while; - union acpi_operand_object **caller_return_desc; - union acpi_generic_state *control_state; - struct acpi_namespace_node *deferred_node; - union acpi_operand_object *implicit_return_obj; - struct acpi_namespace_node *method_call_node; - union acpi_parse_object *method_call_op; - union acpi_operand_object *method_desc; - struct acpi_namespace_node *method_node; - char *method_pathname; - union acpi_parse_object *op; - const struct acpi_opcode_info *op_info; - union acpi_parse_object *origin; - union acpi_operand_object *result_obj; - union acpi_generic_state *results; - union acpi_operand_object *return_desc; - union acpi_generic_state *scope_info; - union acpi_parse_object *prev_op; - union acpi_parse_object *next_op; - struct acpi_thread_state *thread; - acpi_parse_downwards descending_callback; - acpi_parse_upwards ascending_callback; -}; - -struct acpi_gpe_handler_info { - acpi_gpe_handler address; - void *context; - struct acpi_namespace_node *method_node; - u8 original_flags; - u8 originally_enabled; -}; - -struct acpi_gpe_notify_info { - struct acpi_namespace_node *device_node; - struct acpi_gpe_notify_info *next; -}; - -union acpi_gpe_dispatch_info { - struct acpi_namespace_node *method_node; - struct acpi_gpe_handler_info *handler; - struct acpi_gpe_notify_info *notify_list; -}; - -struct acpi_gpe_register_info; - -struct acpi_gpe_event_info { - union acpi_gpe_dispatch_info dispatch; - struct acpi_gpe_register_info *register_info; - u8 flags; - u8 gpe_number; - u8 runtime_count; - u8 disable_for_dispatch; -}; - -struct acpi_gpe_address { - u8 space_id; - u64 address; -}; - -struct acpi_gpe_register_info { - struct acpi_gpe_address status_address; - struct acpi_gpe_address enable_address; - u16 base_gpe_number; - u8 enable_for_wake; - u8 enable_for_run; - u8 mask_for_run; - u8 enable_mask; -}; - -struct acpi_gpe_xrupt_info; - -struct acpi_gpe_block_info { - struct acpi_namespace_node *node; - struct acpi_gpe_block_info *previous; - struct acpi_gpe_block_info *next; - struct acpi_gpe_xrupt_info *xrupt_block; - struct acpi_gpe_register_info *register_info; - struct acpi_gpe_event_info *event_info; - u64 address; - u32 register_count; - u16 gpe_count; - u16 block_base_number; - u8 space_id; - u8 initialized; -}; - -struct acpi_gpe_xrupt_info { - struct acpi_gpe_xrupt_info *previous; - struct acpi_gpe_xrupt_info *next; - struct acpi_gpe_block_info *gpe_block_list_head; - u32 interrupt_number; -}; - -struct acpi_common_state { - void *next; - u8 descriptor_type; - u8 flags; - u16 value; - u16 state; -}; - -struct acpi_update_state { - void *next; - u8 descriptor_type; - u8 flags; - u16 value; - u16 state; - union acpi_operand_object *object; -}; - -struct acpi_pkg_state { - void *next; - u8 descriptor_type; - u8 flags; - u16 value; - u16 state; - u32 index; - union acpi_operand_object *source_object; - union acpi_operand_object *dest_object; - struct acpi_walk_state *walk_state; - void *this_target_obj; - u32 num_packages; -}; - -struct acpi_control_state { - void *next; - u8 descriptor_type; - u8 flags; - u16 value; - u16 state; - u16 opcode; - union acpi_parse_object *predicate_op; - u8 *aml_predicate_start; - u8 *package_end; - u64 loop_timeout; -}; - -union acpi_parse_value { - u64 integer; - u32 size; - char *string; - u8 *buffer; - char *name; - union acpi_parse_object *arg; -}; - -struct acpi_parse_obj_common { - union acpi_parse_object *parent; - u8 descriptor_type; - u8 flags; - u16 aml_opcode; - u8 *aml; - union acpi_parse_object *next; - struct acpi_namespace_node *node; - union acpi_parse_value value; - u8 arg_list_length; - u16 disasm_flags; - u8 disasm_opcode; - char *operator_symbol; - char aml_op_name[16]; -}; - -struct acpi_parse_obj_named { - union acpi_parse_object *parent; - u8 descriptor_type; - u8 flags; - u16 aml_opcode; - u8 *aml; - union acpi_parse_object *next; - struct acpi_namespace_node *node; - union acpi_parse_value value; - u8 arg_list_length; - u16 disasm_flags; - u8 disasm_opcode; - char *operator_symbol; - char aml_op_name[16]; - char *path; - u8 *data; - u32 length; - u32 name; -}; - -struct acpi_parse_obj_asl { - union acpi_parse_object *parent; - u8 descriptor_type; - u8 flags; - u16 aml_opcode; - u8 *aml; - union acpi_parse_object *next; - struct acpi_namespace_node *node; - union acpi_parse_value value; - u8 arg_list_length; - u16 disasm_flags; - u8 disasm_opcode; - char *operator_symbol; - char aml_op_name[16]; - union acpi_parse_object *child; - union acpi_parse_object *parent_method; - char *filename; - u8 file_changed; - char *parent_filename; - char *external_name; - char *namepath; - char name_seg[4]; - u32 extra_value; - u32 column; - u32 line_number; - u32 logical_line_number; - u32 logical_byte_offset; - u32 end_line; - u32 end_logical_line; - u32 acpi_btype; - u32 aml_length; - u32 aml_subtree_length; - u32 final_aml_length; - u32 final_aml_offset; - u32 compile_flags; - u16 parse_opcode; - u8 aml_opcode_length; - u8 aml_pkg_len_bytes; - u8 extra; - char parse_op_name[20]; -}; - -union acpi_parse_object { - struct acpi_parse_obj_common common; - struct acpi_parse_obj_named named; - struct acpi_parse_obj_asl asl; -}; - -struct acpi_scope_state { - void *next; - u8 descriptor_type; - u8 flags; - u16 value; - u16 state; - struct acpi_namespace_node *node; -}; - -struct acpi_pscope_state { - void *next; - u8 descriptor_type; - u8 flags; - u16 value; - u16 state; - u32 arg_count; - union acpi_parse_object *op; - u8 *arg_end; - u8 *pkg_end; - u32 arg_list; -}; - -struct acpi_thread_state { - void *next; - u8 descriptor_type; - u8 flags; - u16 value; - u16 state; - u8 current_sync_level; - struct acpi_walk_state *walk_state_list; - union acpi_operand_object *acquired_mutex_list; - u64 thread_id; -}; - -struct acpi_result_values { - void *next; - u8 descriptor_type; - u8 flags; - u16 value; - u16 state; - union acpi_operand_object *obj_desc[8]; -}; - -struct acpi_global_notify_handler { - acpi_notify_handler handler; - void *context; -}; - -struct acpi_notify_info { - void *next; - u8 descriptor_type; - u8 flags; - u16 value; - u16 state; - u8 handler_list_id; - struct acpi_namespace_node *node; - union acpi_operand_object *handler_list_head; - struct acpi_global_notify_handler *global; -}; - -union acpi_generic_state { - struct acpi_common_state common; - struct acpi_control_state control; - struct acpi_update_state update; - struct acpi_scope_state scope; - struct acpi_pscope_state parse_scope; - struct acpi_pkg_state pkg; - struct acpi_thread_state thread; - struct acpi_result_values results; - struct acpi_notify_info notify; -}; - -struct acpi_opcode_info { - char *name; - u32 parse_args; - u32 runtime_args; - u16 flags; - u8 object_type; - u8 class; - u8 type; -}; - -enum { - ACPI_REFCLASS_LOCAL = 0, - ACPI_REFCLASS_ARG = 1, - ACPI_REFCLASS_REFOF = 2, - ACPI_REFCLASS_INDEX = 3, - ACPI_REFCLASS_TABLE = 4, - ACPI_REFCLASS_NAME = 5, - ACPI_REFCLASS_DEBUG = 6, - ACPI_REFCLASS_MAX = 6, -}; - -struct acpi_common_descriptor { - void *common_pointer; - u8 descriptor_type; -}; - -union acpi_descriptor { - struct acpi_common_descriptor common; - union acpi_operand_object object; - struct acpi_namespace_node node; - union acpi_parse_object op; -}; - -typedef enum { - ACPI_IMODE_LOAD_PASS1 = 1, - ACPI_IMODE_LOAD_PASS2 = 2, - ACPI_IMODE_EXECUTE = 3, -} acpi_interpreter_mode; - -struct acpi_create_field_info { - struct acpi_namespace_node *region_node; - struct acpi_namespace_node *field_node; - struct acpi_namespace_node *register_node; - struct acpi_namespace_node *data_register_node; - struct acpi_namespace_node *connection_node; - u8 *resource_buffer; - u32 bank_value; - u32 field_bit_position; - u32 field_bit_length; - u16 resource_length; - u16 pin_number_index; - u8 field_flags; - u8 attribute; - u8 field_type; - u8 access_length; -}; - -typedef void (*acpi_osd_exec_callback)(void *); - -typedef void (*acpi_gbl_event_handler)(u32, acpi_handle, u32, void *); - -typedef enum { - OSL_GLOBAL_LOCK_HANDLER = 0, - OSL_NOTIFY_HANDLER = 1, - OSL_GPE_HANDLER = 2, - OSL_DEBUGGER_MAIN_THREAD = 3, - OSL_DEBUGGER_EXEC_THREAD = 4, - OSL_EC_POLL_HANDLER = 5, - OSL_EC_BURST_HANDLER = 6, -} acpi_execute_type; - -struct acpi_name_info { - char name[4]; - u16 argument_list; - u8 expected_btypes; -} __attribute__((packed)); - -struct acpi_package_info { - u8 type; - u8 object_type1; - u8 count1; - u8 object_type2; - u8 count2; - u16 reserved; -} __attribute__((packed)); - -struct acpi_package_info2 { - u8 type; - u8 count; - u8 object_type[4]; - u8 reserved; -}; - -struct acpi_package_info3 { - u8 type; - u8 count; - u8 object_type[2]; - u8 tail_object_type; - u16 reserved; -} __attribute__((packed)); - -struct acpi_package_info4 { - u8 type; - u8 object_type1; - u8 count1; - u8 sub_object_types; - u8 pkg_count; - u16 reserved; -} __attribute__((packed)); - -union acpi_predefined_info { - struct acpi_name_info info; - struct acpi_package_info ret_info; - struct acpi_package_info2 ret_info2; - struct acpi_package_info3 ret_info3; - struct acpi_package_info4 ret_info4; -}; - -struct acpi_evaluate_info { - struct acpi_namespace_node *prefix_node; - const char *relative_pathname; - union acpi_operand_object **parameters; - struct acpi_namespace_node *node; - union acpi_operand_object *obj_desc; - char *full_pathname; - const union acpi_predefined_info *predefined; - union acpi_operand_object *return_object; - union acpi_operand_object *parent_package; - u32 return_flags; - u32 return_btype; - u16 param_count; - u16 node_flags; - u8 pass_number; - u8 return_object_type; - u8 flags; -}; - -typedef u32 (*acpi_osd_handler)(void *); - -struct acpi_gpe_device_info { - u32 index; - u32 next_block_base_index; - acpi_status status; - struct acpi_namespace_node *gpe_device; -}; - -typedef acpi_status (*acpi_gpe_callback)(struct acpi_gpe_xrupt_info *, struct acpi_gpe_block_info *, void *); - -typedef u32 acpi_name; - -struct acpi_pcc_info { - u8 subspace_id; - u16 length; - u8 *internal_buffer; -}; - -struct acpi_ffh_info { - u64 offset; - u64 length; -}; - -typedef acpi_status (*acpi_walk_callback)(acpi_handle, u32, void *, void **); - -typedef u32 acpi_mutex_handle; - -struct acpi_reg_walk_info { - u32 function; - u32 reg_run_count; - acpi_adr_space_type space_id; -}; - -typedef u32 (*acpi_event_handler)(void *); - -struct acpi_fixed_event_handler { - acpi_event_handler handler; - void *context; -}; - -struct acpi_fixed_event_info { - u8 status_register_id; - u8 enable_register_id; - u16 status_bit_mask; - u16 enable_bit_mask; -}; - -enum { - AML_FIELD_UPDATE_PRESERVE = 0, - AML_FIELD_UPDATE_WRITE_AS_ONES = 32, - AML_FIELD_UPDATE_WRITE_AS_ZEROS = 64, -}; - -enum { - AML_FIELD_ACCESS_ANY = 0, - AML_FIELD_ACCESS_BYTE = 1, - AML_FIELD_ACCESS_WORD = 2, - AML_FIELD_ACCESS_DWORD = 3, - AML_FIELD_ACCESS_QWORD = 4, - AML_FIELD_ACCESS_BUFFER = 5, -}; - -enum { - AML_FIELD_ATTRIB_QUICK = 2, - AML_FIELD_ATTRIB_SEND_RECEIVE = 4, - AML_FIELD_ATTRIB_BYTE = 6, - AML_FIELD_ATTRIB_WORD = 8, - AML_FIELD_ATTRIB_BLOCK = 10, - AML_FIELD_ATTRIB_BYTES = 11, - AML_FIELD_ATTRIB_PROCESS_CALL = 12, - AML_FIELD_ATTRIB_BLOCK_PROCESS_CALL = 13, - AML_FIELD_ATTRIB_RAW_BYTES = 14, - AML_FIELD_ATTRIB_RAW_PROCESS_BYTES = 15, -}; - -struct acpi_bit_register_info { - u8 parent_register; - u8 bit_position; - u16 access_bit_mask; -}; - -struct acpi_pci_id { - u16 segment; - u16 bus; - u16 device; - u16 function; -}; - -struct acpi_pci_device { - acpi_handle device; - struct acpi_pci_device *next; -}; - -struct acpi_table_desc { - acpi_physical_address address; - struct acpi_table_header *pointer; - u32 length; - union acpi_name_union signature; - acpi_owner_id owner_id; - u8 flags; - u16 validation_count; -}; - -struct acpi_table_list { - struct acpi_table_desc *tables; - u32 current_table_count; - u32 max_table_count; - u8 flags; -}; - -typedef acpi_status (*acpi_repair_function)(struct acpi_evaluate_info *, union acpi_operand_object **); - -struct acpi_repair_info { - char name[4]; - acpi_repair_function repair_function; -}; - -struct acpi_rsdump_info { - u8 opcode; - u8 offset; - const char *name; - const char **pointer; -} __attribute__((packed)); - -enum { - ACPI_RSD_TITLE = 0, - ACPI_RSD_1BITFLAG = 1, - ACPI_RSD_2BITFLAG = 2, - ACPI_RSD_3BITFLAG = 3, - ACPI_RSD_6BITFLAG = 4, - ACPI_RSD_ADDRESS = 5, - ACPI_RSD_DWORDLIST = 6, - ACPI_RSD_LITERAL = 7, - ACPI_RSD_LONGLIST = 8, - ACPI_RSD_SHORTLIST = 9, - ACPI_RSD_SHORTLISTX = 10, - ACPI_RSD_SOURCE = 11, - ACPI_RSD_STRING = 12, - ACPI_RSD_UINT8 = 13, - ACPI_RSD_UINT16 = 14, - ACPI_RSD_UINT32 = 15, - ACPI_RSD_UINT64 = 16, - ACPI_RSD_WORDLIST = 17, - ACPI_RSD_LABEL = 18, - ACPI_RSD_SOURCE_LABEL = 19, -}; - -struct acpi_rsconvert_info { - u8 opcode; - u8 resource_offset; - u8 aml_offset; - u8 value; -}; - -enum { - ACPI_RSC_INITGET = 0, - ACPI_RSC_INITSET = 1, - ACPI_RSC_FLAGINIT = 2, - ACPI_RSC_1BITFLAG = 3, - ACPI_RSC_2BITFLAG = 4, - ACPI_RSC_3BITFLAG = 5, - ACPI_RSC_6BITFLAG = 6, - ACPI_RSC_ADDRESS = 7, - ACPI_RSC_BITMASK = 8, - ACPI_RSC_BITMASK16 = 9, - ACPI_RSC_COUNT = 10, - ACPI_RSC_COUNT16 = 11, - ACPI_RSC_COUNT_GPIO_PIN = 12, - ACPI_RSC_COUNT_GPIO_RES = 13, - ACPI_RSC_COUNT_GPIO_VEN = 14, - ACPI_RSC_COUNT_SERIAL_RES = 15, - ACPI_RSC_COUNT_SERIAL_VEN = 16, - ACPI_RSC_DATA8 = 17, - ACPI_RSC_EXIT_EQ = 18, - ACPI_RSC_EXIT_LE = 19, - ACPI_RSC_EXIT_NE = 20, - ACPI_RSC_LENGTH = 21, - ACPI_RSC_MOVE_GPIO_PIN = 22, - ACPI_RSC_MOVE_GPIO_RES = 23, - ACPI_RSC_MOVE_SERIAL_RES = 24, - ACPI_RSC_MOVE_SERIAL_VEN = 25, - ACPI_RSC_MOVE8 = 26, - ACPI_RSC_MOVE16 = 27, - ACPI_RSC_MOVE32 = 28, - ACPI_RSC_MOVE64 = 29, - ACPI_RSC_SET8 = 30, - ACPI_RSC_SOURCE = 31, - ACPI_RSC_SOURCEX = 32, -}; - -struct aml_resource_small_header { - u8 descriptor_type; -}; - -struct aml_resource_irq { - u8 descriptor_type; - u16 irq_mask; - u8 flags; -} __attribute__((packed)); - -struct aml_resource_dma { - u8 descriptor_type; - u8 dma_channel_mask; - u8 flags; -}; - -struct aml_resource_start_dependent { - u8 descriptor_type; - u8 flags; -}; - -struct aml_resource_end_dependent { - u8 descriptor_type; -}; - -struct aml_resource_io { - u8 descriptor_type; - u8 flags; - u16 minimum; - u16 maximum; - u8 alignment; - u8 address_length; -}; - -struct aml_resource_fixed_io { - u8 descriptor_type; - u16 address; - u8 address_length; -} __attribute__((packed)); - -struct aml_resource_vendor_small { - u8 descriptor_type; -}; - -struct aml_resource_end_tag { - u8 descriptor_type; - u8 checksum; -}; - -struct aml_resource_fixed_dma { - u8 descriptor_type; - u16 request_lines; - u16 channels; - u8 width; -} __attribute__((packed)); - -struct aml_resource_large_header { - u8 descriptor_type; - u16 resource_length; -} __attribute__((packed)); - -struct aml_resource_memory24 { - u8 descriptor_type; - u16 resource_length; - u8 flags; - u16 minimum; - u16 maximum; - u16 alignment; - u16 address_length; -} __attribute__((packed)); - -struct aml_resource_vendor_large { - u8 descriptor_type; - u16 resource_length; -} __attribute__((packed)); - -struct aml_resource_memory32 { - u8 descriptor_type; - u16 resource_length; - u8 flags; - u32 minimum; - u32 maximum; - u32 alignment; - u32 address_length; -} __attribute__((packed)); - -struct aml_resource_fixed_memory32 { - u8 descriptor_type; - u16 resource_length; - u8 flags; - u32 address; - u32 address_length; -} __attribute__((packed)); - -struct aml_resource_address { - u8 descriptor_type; - u16 resource_length; - u8 resource_type; - u8 flags; - u8 specific_flags; -} __attribute__((packed)); - -struct aml_resource_extended_address64 { - u8 descriptor_type; - u16 resource_length; - u8 resource_type; - u8 flags; - u8 specific_flags; - u8 revision_ID; - u8 reserved; - u64 granularity; - u64 minimum; - u64 maximum; - u64 translation_offset; - u64 address_length; - u64 type_specific; -} __attribute__((packed)); - -struct aml_resource_address64 { - u8 descriptor_type; - u16 resource_length; - u8 resource_type; - u8 flags; - u8 specific_flags; - u64 granularity; - u64 minimum; - u64 maximum; - u64 translation_offset; - u64 address_length; -} __attribute__((packed)); - -struct aml_resource_address32 { - u8 descriptor_type; - u16 resource_length; - u8 resource_type; - u8 flags; - u8 specific_flags; - u32 granularity; - u32 minimum; - u32 maximum; - u32 translation_offset; - u32 address_length; -} __attribute__((packed)); - -struct aml_resource_address16 { - u8 descriptor_type; - u16 resource_length; - u8 resource_type; - u8 flags; - u8 specific_flags; - u16 granularity; - u16 minimum; - u16 maximum; - u16 translation_offset; - u16 address_length; -} __attribute__((packed)); - -struct aml_resource_extended_irq { - u8 descriptor_type; - u16 resource_length; - u8 flags; - u8 interrupt_count; - union { - u32 interrupt; - struct { - struct {} __Empty_interrupts; - u32 interrupts[0]; - }; - }; -} __attribute__((packed)); - -struct aml_resource_generic_register { - u8 descriptor_type; - u16 resource_length; - u8 address_space_id; - u8 bit_width; - u8 bit_offset; - u8 access_size; - u64 address; -} __attribute__((packed)); - -struct aml_resource_gpio { - u8 descriptor_type; - u16 resource_length; - u8 revision_id; - u8 connection_type; - u16 flags; - u16 int_flags; - u8 pin_config; - u16 drive_strength; - u16 debounce_timeout; - u16 pin_table_offset; - u8 res_source_index; - u16 res_source_offset; - u16 vendor_offset; - u16 vendor_length; -} __attribute__((packed)); - -struct aml_resource_common_serialbus { - u8 descriptor_type; - u16 resource_length; - u8 revision_id; - u8 res_source_index; - u8 type; - u8 flags; - u16 type_specific_flags; - u8 type_revision_id; - u16 type_data_length; -} __attribute__((packed)); - -struct aml_resource_csi2_serialbus { - u8 descriptor_type; - u16 resource_length; - u8 revision_id; - u8 res_source_index; - u8 type; - u8 flags; - u16 type_specific_flags; - u8 type_revision_id; - u16 type_data_length; -} __attribute__((packed)); - -struct aml_resource_i2c_serialbus { - u8 descriptor_type; - u16 resource_length; - u8 revision_id; - u8 res_source_index; - u8 type; - u8 flags; - u16 type_specific_flags; - u8 type_revision_id; - u16 type_data_length; - u32 connection_speed; - u16 slave_address; -} __attribute__((packed)); - -struct aml_resource_spi_serialbus { - u8 descriptor_type; - u16 resource_length; - u8 revision_id; - u8 res_source_index; - u8 type; - u8 flags; - u16 type_specific_flags; - u8 type_revision_id; - u16 type_data_length; - u32 connection_speed; - u8 data_bit_length; - u8 clock_phase; - u8 clock_polarity; - u16 device_selection; -} __attribute__((packed)); - -struct aml_resource_uart_serialbus { - u8 descriptor_type; - u16 resource_length; - u8 revision_id; - u8 res_source_index; - u8 type; - u8 flags; - u16 type_specific_flags; - u8 type_revision_id; - u16 type_data_length; - u32 default_baud_rate; - u16 rx_fifo_size; - u16 tx_fifo_size; - u8 parity; - u8 lines_enabled; -} __attribute__((packed)); - -struct aml_resource_pin_function { - u8 descriptor_type; - u16 resource_length; - u8 revision_id; - u16 flags; - u8 pin_config; - u16 function_number; - u16 pin_table_offset; - u8 res_source_index; - u16 res_source_offset; - u16 vendor_offset; - u16 vendor_length; -} __attribute__((packed)); - -struct aml_resource_pin_config { - u8 descriptor_type; - u16 resource_length; - u8 revision_id; - u16 flags; - u8 pin_config_type; - u32 pin_config_value; - u16 pin_table_offset; - u8 res_source_index; - u16 res_source_offset; - u16 vendor_offset; - u16 vendor_length; -} __attribute__((packed)); - -struct aml_resource_clock_input { - u8 descriptor_type; - u16 resource_length; - u8 revision_id; - u16 flags; - u16 frequency_divisor; - u32 frequency_numerator; -} __attribute__((packed)); - -struct aml_resource_pin_group { - u8 descriptor_type; - u16 resource_length; - u8 revision_id; - u16 flags; - u16 pin_table_offset; - u16 label_offset; - u16 vendor_offset; - u16 vendor_length; -} __attribute__((packed)); - -struct aml_resource_pin_group_function { - u8 descriptor_type; - u16 resource_length; - u8 revision_id; - u16 flags; - u16 function_number; - u8 res_source_index; - u16 res_source_offset; - u16 res_source_label_offset; - u16 vendor_offset; - u16 vendor_length; -} __attribute__((packed)); - -struct aml_resource_pin_group_config { - u8 descriptor_type; - u16 resource_length; - u8 revision_id; - u16 flags; - u8 pin_config_type; - u32 pin_config_value; - u8 res_source_index; - u16 res_source_offset; - u16 res_source_label_offset; - u16 vendor_offset; - u16 vendor_length; -} __attribute__((packed)); - -union aml_resource { - u8 descriptor_type; - struct aml_resource_small_header small_header; - struct aml_resource_large_header large_header; - struct aml_resource_irq irq; - struct aml_resource_dma dma; - struct aml_resource_start_dependent start_dpf; - struct aml_resource_end_dependent end_dpf; - struct aml_resource_io io; - struct aml_resource_fixed_io fixed_io; - struct aml_resource_fixed_dma fixed_dma; - struct aml_resource_vendor_small vendor_small; - struct aml_resource_end_tag end_tag; - struct aml_resource_memory24 memory24; - struct aml_resource_generic_register generic_reg; - struct aml_resource_vendor_large vendor_large; - struct aml_resource_memory32 memory32; - struct aml_resource_fixed_memory32 fixed_memory32; - struct aml_resource_address16 address16; - struct aml_resource_address32 address32; - struct aml_resource_address64 address64; - struct aml_resource_extended_address64 ext_address64; - struct aml_resource_extended_irq extended_irq; - struct aml_resource_gpio gpio; - struct aml_resource_i2c_serialbus i2c_serial_bus; - struct aml_resource_spi_serialbus spi_serial_bus; - struct aml_resource_uart_serialbus uart_serial_bus; - struct aml_resource_csi2_serialbus csi2_serial_bus; - struct aml_resource_common_serialbus common_serial_bus; - struct aml_resource_pin_function pin_function; - struct aml_resource_pin_config pin_config; - struct aml_resource_pin_group pin_group; - struct aml_resource_pin_group_function pin_group_function; - struct aml_resource_pin_group_config pin_group_config; - struct aml_resource_clock_input clock_input; - struct aml_resource_address address; - u32 dword_item; - u16 word_item; - u8 byte_item; -}; - -struct acpi_fadt_info { - const char *name; - u16 address64; - u16 address32; - u16 length; - u8 default_length; - u8 flags; -}; - -struct acpi_fadt_pm_info { - struct acpi_generic_address *target; - u16 source; - u8 register_num; -}; - -struct acpi_table_rsdp { - char signature[8]; - u8 checksum; - char oem_id[6]; - u8 revision; - u32 rsdt_physical_address; - u32 length; - u64 xsdt_physical_address; - u8 extended_checksum; - u8 reserved[3]; -} __attribute__((packed)); - -typedef acpi_status (*acpi_pkg_callback)(u8, union acpi_operand_object *, union acpi_generic_state *, void *); - -struct acpi_pkg_info { - u8 *free_space; - acpi_size length; - u32 object_space; - u32 num_packages; -}; - -struct acpi_pnp_device_id { - u32 length; - char *string; -}; - -struct acpi_pnp_device_id_list { - u32 count; - u32 list_size; - struct acpi_pnp_device_id ids[0]; -}; - -typedef u32 (*acpi_interface_handler)(acpi_string, u32); - -struct acpi_interface_info { - char *name; - struct acpi_interface_info *next; - u8 flags; - u8 value; -}; - -typedef acpi_status (*acpi_exception_handler)(acpi_status, acpi_name, u16, u32, void *); - -struct acpi_device_info { - u32 info_size; - u32 name; - acpi_object_type type; - u8 param_count; - u16 valid; - u8 flags; - u8 highest_dstates[4]; - u8 lowest_dstates[5]; - u64 address; - struct acpi_pnp_device_id hardware_id; - struct acpi_pnp_device_id unique_id; - struct acpi_pnp_device_id class_code; - struct acpi_pnp_device_id_list compatible_id_list; -}; - -struct acpi_handler_info { - void *handler; - char *name; -}; - -struct acpi_db_execute_walk { - u32 count; - u32 max_count; - char name_seg[5]; -}; - -struct acpi_mutex_info { - void *mutex; - u32 use_count; - u64 thread_id; -}; - -struct acpi_db_argument_info { - const char *name; -}; - -enum { - NDD_UNARMED = 1, - NDD_LOCKED = 2, - NDD_SECURITY_OVERWRITE = 3, - NDD_WORK_PENDING = 4, - NDD_LABELING = 6, - NDD_INCOHERENT = 7, - NDD_REGISTER_SYNC = 8, - ND_IOCTL_MAX_BUFLEN = 4194304, - ND_CMD_MAX_ELEM = 5, - ND_CMD_MAX_ENVELOPE = 256, - ND_MAX_MAPPINGS = 32, - ND_REGION_PAGEMAP = 0, - ND_REGION_PERSIST_CACHE = 1, - ND_REGION_PERSIST_MEMCTRL = 2, - ND_REGION_ASYNC = 3, - ND_REGION_CXL = 4, - DPA_RESOURCE_ADJUSTED = 1, -}; - -struct nvdimm_bus_descriptor; - -struct nvdimm; - -typedef int (*ndctl_fn)(struct nvdimm_bus_descriptor *, struct nvdimm *, unsigned int, void *, unsigned int, int *); - -struct nvdimm_bus_fw_ops; - -struct nvdimm_bus_descriptor { - const struct attribute_group **attr_groups; - long unsigned int cmd_mask; - long unsigned int dimm_family_mask; - long unsigned int bus_family_mask; - struct module *module; - char *provider_name; - struct device_node *of_node; - ndctl_fn ndctl; - int (*flush_probe)(struct nvdimm_bus_descriptor *); - int (*clear_to_send)(struct nvdimm_bus_descriptor *, struct nvdimm *, unsigned int, void *); - const struct nvdimm_bus_fw_ops *fw_ops; -}; - -enum nvdimm_fwa_state { - NVDIMM_FWA_INVALID = 0, - NVDIMM_FWA_IDLE = 1, - NVDIMM_FWA_ARMED = 2, - NVDIMM_FWA_BUSY = 3, - NVDIMM_FWA_ARM_OVERFLOW = 4, -}; - -enum nvdimm_fwa_capability { - NVDIMM_FWA_CAP_INVALID = 0, - NVDIMM_FWA_CAP_NONE = 1, - NVDIMM_FWA_CAP_QUIESCE = 2, - NVDIMM_FWA_CAP_LIVE = 3, -}; - -struct nvdimm_bus_fw_ops { - enum nvdimm_fwa_state (*activate_state)(struct nvdimm_bus_descriptor *); - enum nvdimm_fwa_capability (*capability)(struct nvdimm_bus_descriptor *); - int (*activate)(struct nvdimm_bus_descriptor *); -}; - -struct nd_cmd_desc { - int in_num; - int out_num; - u32 in_sizes[5]; - int out_sizes[5]; -}; - -struct nd_interleave_set { - u64 cookie1; - u64 cookie2; - u64 altcookie; - guid_t type_guid; -}; - -struct nd_mapping_desc { - struct nvdimm *nvdimm; - u64 start; - u64 size; - int position; -}; - -struct nd_region; - -struct nd_region_desc { - struct resource *res; - struct nd_mapping_desc *mapping; - u16 num_mappings; - const struct attribute_group **attr_groups; - struct nd_interleave_set *nd_set; - void *provider_data; - int num_lanes; - int numa_node; - int target_node; - long unsigned int flags; - int memregion; - struct device_node *of_node; - int (*flush)(struct nd_region *, struct bio *); -}; - -struct nvdimm_key_data { - u8 data[32]; -}; - -enum nvdimm_passphrase_type { - NVDIMM_USER = 0, - NVDIMM_MASTER = 1, -}; - -struct nvdimm_security_ops { - long unsigned int (*get_flags)(struct nvdimm *, enum nvdimm_passphrase_type); - int (*freeze)(struct nvdimm *); - int (*change_key)(struct nvdimm *, const struct nvdimm_key_data *, const struct nvdimm_key_data *, enum nvdimm_passphrase_type); - int (*unlock)(struct nvdimm *, const struct nvdimm_key_data *); - int (*disable)(struct nvdimm *, const struct nvdimm_key_data *); - int (*erase)(struct nvdimm *, const struct nvdimm_key_data *, enum nvdimm_passphrase_type); - int (*overwrite)(struct nvdimm *, const struct nvdimm_key_data *); - int (*query_overwrite)(struct nvdimm *); - int (*disable_master)(struct nvdimm *, const struct nvdimm_key_data *); -}; - -enum nvdimm_fwa_trigger { - NVDIMM_FWA_ARM = 0, - NVDIMM_FWA_DISARM = 1, -}; - -enum nvdimm_fwa_result { - NVDIMM_FWA_RESULT_INVALID = 0, - NVDIMM_FWA_RESULT_NONE = 1, - NVDIMM_FWA_RESULT_SUCCESS = 2, - NVDIMM_FWA_RESULT_NOTSTAGED = 3, - NVDIMM_FWA_RESULT_NEEDRESET = 4, - NVDIMM_FWA_RESULT_FAIL = 5, -}; - -struct nvdimm_fw_ops { - enum nvdimm_fwa_state (*activate_state)(struct nvdimm *); - enum nvdimm_fwa_result (*activate_result)(struct nvdimm *); - int (*arm)(struct nvdimm *, enum nvdimm_fwa_trigger); -}; - -struct nd_cmd_get_config_data_hdr { - __u32 in_offset; - __u32 in_length; - __u32 status; - __u8 out_buf[0]; -}; - -struct nd_cmd_set_config_hdr { - __u32 in_offset; - __u32 in_length; - __u8 in_buf[0]; -}; - -struct nd_cmd_ars_cap { - __u64 address; - __u64 length; - __u32 status; - __u32 max_ars_out; - __u32 clear_err_unit; - __u16 flags; - __u16 reserved; -}; - -struct nd_cmd_ars_start { - __u64 address; - __u64 length; - __u16 type; - __u8 flags; - __u8 reserved[5]; - __u32 status; - __u32 scrub_time; -}; - -struct nd_ars_record { - __u32 handle; - __u32 reserved; - __u64 err_address; - __u64 length; -}; - -struct nd_cmd_ars_status { - __u32 status; - __u32 out_length; - __u64 address; - __u64 length; - __u64 restart_address; - __u64 restart_length; - __u16 type; - __u16 flags; - __u32 num_records; - struct nd_ars_record records[0]; -}; - -struct nd_cmd_clear_error { - __u64 address; - __u64 length; - __u32 status; - __u8 reserved[4]; - __u64 cleared; -}; - -enum { - ND_CMD_IMPLEMENTED = 0, - ND_CMD_ARS_CAP = 1, - ND_CMD_ARS_START = 2, - ND_CMD_ARS_STATUS = 3, - ND_CMD_CLEAR_ERROR = 4, - ND_CMD_SMART = 1, - ND_CMD_SMART_THRESHOLD = 2, - ND_CMD_DIMM_FLAGS = 3, - ND_CMD_GET_CONFIG_SIZE = 4, - ND_CMD_GET_CONFIG_DATA = 5, - ND_CMD_SET_CONFIG_DATA = 6, - ND_CMD_VENDOR_EFFECT_LOG_SIZE = 7, - ND_CMD_VENDOR_EFFECT_LOG = 8, - ND_CMD_VENDOR = 9, - ND_CMD_CALL = 10, -}; - -enum { - ND_ARS_VOLATILE = 1, - ND_ARS_PERSISTENT = 2, - ND_ARS_RETURN_PREV_DATA = 2, - ND_CONFIG_LOCKED = 1, -}; - -struct nd_cmd_pkg { - __u64 nd_family; - __u64 nd_command; - __u32 nd_size_in; - __u32 nd_size_out; - __u32 nd_reserved2[9]; - __u32 nd_fw_size; - unsigned char nd_payload[0]; -}; - -struct acpi_nfit_header { - u16 type; - u16 length; -}; - -enum acpi_nfit_type { - ACPI_NFIT_TYPE_SYSTEM_ADDRESS = 0, - ACPI_NFIT_TYPE_MEMORY_MAP = 1, - ACPI_NFIT_TYPE_INTERLEAVE = 2, - ACPI_NFIT_TYPE_SMBIOS = 3, - ACPI_NFIT_TYPE_CONTROL_REGION = 4, - ACPI_NFIT_TYPE_DATA_REGION = 5, - ACPI_NFIT_TYPE_FLUSH_ADDRESS = 6, - ACPI_NFIT_TYPE_CAPABILITIES = 7, - ACPI_NFIT_TYPE_RESERVED = 8, -}; - -struct acpi_nfit_system_address { - struct acpi_nfit_header header; - u16 range_index; - u16 flags; - u32 reserved; - u32 proximity_domain; - u8 range_guid[16]; - u64 address; - u64 length; - u64 memory_mapping; - u64 location_cookie; -}; - -struct acpi_nfit_memory_map { - struct acpi_nfit_header header; - u32 device_handle; - u16 physical_id; - u16 region_id; - u16 range_index; - u16 region_index; - u64 region_size; - u64 region_offset; - u64 address; - u16 interleave_index; - u16 interleave_ways; - u16 flags; - u16 reserved; -}; - -struct acpi_nfit_interleave { - struct acpi_nfit_header header; - u16 interleave_index; - u16 reserved; - u32 line_count; - u32 line_size; - u32 line_offset[0]; -}; - -struct acpi_nfit_control_region { - struct acpi_nfit_header header; - u16 region_index; - u16 vendor_id; - u16 device_id; - u16 revision_id; - u16 subsystem_vendor_id; - u16 subsystem_device_id; - u16 subsystem_revision_id; - u8 valid_fields; - u8 manufacturing_location; - u16 manufacturing_date; - u8 reserved[2]; - u32 serial_number; - u16 code; - u16 windows; - u64 window_size; - u64 command_offset; - u64 command_size; - u64 status_offset; - u64 status_size; - u16 flags; - u8 reserved1[6]; -}; - -struct acpi_nfit_data_region { - struct acpi_nfit_header header; - u16 region_index; - u16 windows; - u64 offset; - u64 size; - u64 capacity; - u64 start_address; -}; - -struct acpi_nfit_flush_address { - struct acpi_nfit_header header; - u32 device_handle; - u16 hint_count; - u8 reserved[6]; - u64 hint_address[0]; -}; - -struct acpi_nfit_capabilities { - struct acpi_nfit_header header; - u8 highest_capability; - u8 reserved[3]; - u32 capabilities; - u32 reserved2; -}; - -enum nvdimm_event { - NVDIMM_REVALIDATE_POISON = 0, - NVDIMM_REVALIDATE_REGION = 1, -}; - -struct nd_intel_smart { - u32 status; - union { - struct { - u32 flags; - u8 reserved0[4]; - u8 health; - u8 spares; - u8 life_used; - u8 alarm_flags; - u16 media_temperature; - u16 ctrl_temperature; - u32 shutdown_count; - u8 ait_status; - u16 pmic_temperature; - u8 reserved1[8]; - u8 shutdown_state; - u32 vendor_size; - u8 vendor_data[92]; - } __attribute__((packed)); - u8 data[128]; - }; -}; - -enum nvdimm_family_cmds { - NVDIMM_INTEL_LATCH_SHUTDOWN = 10, - NVDIMM_INTEL_GET_MODES = 11, - NVDIMM_INTEL_GET_FWINFO = 12, - NVDIMM_INTEL_START_FWUPDATE = 13, - NVDIMM_INTEL_SEND_FWUPDATE = 14, - NVDIMM_INTEL_FINISH_FWUPDATE = 15, - NVDIMM_INTEL_QUERY_FWUPDATE = 16, - NVDIMM_INTEL_SET_THRESHOLD = 17, - NVDIMM_INTEL_INJECT_ERROR = 18, - NVDIMM_INTEL_GET_SECURITY_STATE = 19, - NVDIMM_INTEL_SET_PASSPHRASE = 20, - NVDIMM_INTEL_DISABLE_PASSPHRASE = 21, - NVDIMM_INTEL_UNLOCK_UNIT = 22, - NVDIMM_INTEL_FREEZE_LOCK = 23, - NVDIMM_INTEL_SECURE_ERASE = 24, - NVDIMM_INTEL_OVERWRITE = 25, - NVDIMM_INTEL_QUERY_OVERWRITE = 26, - NVDIMM_INTEL_SET_MASTER_PASSPHRASE = 27, - NVDIMM_INTEL_MASTER_SECURE_ERASE = 28, - NVDIMM_INTEL_FW_ACTIVATE_DIMMINFO = 29, - NVDIMM_INTEL_FW_ACTIVATE_ARM = 30, -}; - -enum nvdimm_bus_family_cmds { - NVDIMM_BUS_INTEL_FW_ACTIVATE_BUSINFO = 1, - NVDIMM_BUS_INTEL_FW_ACTIVATE = 2, -}; - -enum nfit_uuids { - NFIT_DEV_DIMM = 0, - NFIT_DEV_DIMM_N_HPE1 = 1, - NFIT_DEV_DIMM_N_HPE2 = 2, - NFIT_DEV_DIMM_N_MSFT = 3, - NFIT_DEV_DIMM_N_HYPERV = 4, - NFIT_BUS_INTEL = 6, - NFIT_SPA_VOLATILE = 7, - NFIT_SPA_PM = 8, - NFIT_SPA_DCR = 9, - NFIT_SPA_BDW = 10, - NFIT_SPA_VDISK = 11, - NFIT_SPA_VCD = 12, - NFIT_SPA_PDISK = 13, - NFIT_SPA_PCD = 14, - NFIT_DEV_BUS = 15, - NFIT_UUID_MAX = 16, -}; - -enum { - NFIT_BLK_READ_FLUSH = 1, - NFIT_BLK_DCR_LATCH = 2, - NFIT_ARS_STATUS_DONE = 0, - NFIT_ARS_STATUS_BUSY = 65536, - NFIT_ARS_STATUS_NONE = 131072, - NFIT_ARS_STATUS_INTR = 196608, - NFIT_ARS_START_BUSY = 6, - NFIT_ARS_CAP_NONE = 1, - NFIT_ARS_F_OVERFLOW = 1, - NFIT_ARS_TIMEOUT = 90, -}; - -enum nfit_root_notifiers { - NFIT_NOTIFY_UPDATE = 128, - NFIT_NOTIFY_UC_MEMORY_ERROR = 129, -}; - -enum nfit_dimm_notifiers { - NFIT_NOTIFY_DIMM_HEALTH = 129, -}; - -enum nfit_ars_state { - ARS_REQ_SHORT = 0, - ARS_REQ_LONG = 1, - ARS_FAILED = 2, -}; - -struct nfit_spa { - struct list_head list; - struct nd_region *nd_region; - long unsigned int ars_state; - u32 clear_err_unit; - u32 max_ars; - struct acpi_nfit_system_address spa[0]; -}; - -struct nfit_dcr { - struct list_head list; - struct acpi_nfit_control_region dcr[0]; -}; - -struct nfit_bdw { - struct list_head list; - struct acpi_nfit_data_region bdw[0]; -}; - -struct nfit_idt { - struct list_head list; - struct acpi_nfit_interleave idt[0]; -}; - -struct nfit_flush { - struct list_head list; - struct acpi_nfit_flush_address flush[0]; -}; - -struct nfit_memdev { - struct list_head list; - struct acpi_nfit_memory_map memdev[0]; -}; - -enum nfit_mem_flags { - NFIT_MEM_LSR = 0, - NFIT_MEM_LSW = 1, - NFIT_MEM_DIRTY = 2, - NFIT_MEM_DIRTY_COUNT = 3, -}; - -struct acpi_nfit_desc; - -struct nfit_mem { - struct nvdimm *nvdimm; - struct acpi_nfit_memory_map *memdev_dcr; - struct acpi_nfit_memory_map *memdev_pmem; - struct acpi_nfit_control_region *dcr; - struct acpi_nfit_system_address *spa_dcr; - struct acpi_nfit_interleave *idt_dcr; - struct kernfs_node *flags_attr; - struct nfit_flush *nfit_flush; - struct list_head list; - struct acpi_device *adev; - struct acpi_nfit_desc *acpi_desc; - enum nvdimm_fwa_state fwa_state; - enum nvdimm_fwa_result fwa_result; - int fwa_count; - char id[23]; - struct resource *flush_wpq; - long unsigned int dsm_mask; - long unsigned int flags; - u32 dirty_shutdown; - int family; -}; - -struct nvdimm_bus; - -struct acpi_nfit_desc { - struct nvdimm_bus_descriptor nd_desc; - struct acpi_table_header acpi_header; - struct mutex init_mutex; - struct list_head memdevs; - struct list_head flushes; - struct list_head dimms; - struct list_head spas; - struct list_head dcrs; - struct list_head bdws; - struct list_head idts; - struct nvdimm_bus *nvdimm_bus; - struct device *dev; - struct nd_cmd_ars_status *ars_status; - struct nfit_spa *scrub_spa; - struct delayed_work dwork; - struct list_head list; - struct kernfs_node *scrub_count_state; - unsigned int max_ars; - unsigned int scrub_count; - unsigned int scrub_mode; - long unsigned int scrub_flags; - long unsigned int dimm_cmd_force_en; - long unsigned int bus_cmd_force_en; - long unsigned int bus_dsm_mask; - long unsigned int family_dsm_mask[2]; - unsigned int platform_cap; - unsigned int scrub_tmo; - enum nvdimm_fwa_state fwa_state; - enum nvdimm_fwa_capability fwa_cap; - int fwa_count; - bool fwa_noidle; - bool fwa_nosuspend; -}; - -enum scrub_flags { - ARS_BUSY = 0, - ARS_CANCEL = 1, - ARS_VALID = 2, - ARS_POLL = 3, -}; - -enum scrub_mode { - HW_ERROR_SCRUB_OFF = 0, - HW_ERROR_SCRUB_ON = 1, -}; - -struct nfit_table_prev { - struct list_head spas; - struct list_head memdevs; - struct list_head dcrs; - struct list_head bdws; - struct list_head idts; - struct list_head flushes; -}; - -enum nfit_aux_cmds { - NFIT_CMD_TRANSLATE_SPA = 5, - NFIT_CMD_ARS_INJECT_SET = 7, - NFIT_CMD_ARS_INJECT_CLEAR = 8, - NFIT_CMD_ARS_INJECT_GET = 9, -}; - -struct nfit_set_info { - u64 region_offset; - u32 serial_number; - u32 pad; -}; - -struct nfit_set_info2 { - u64 region_offset; - u32 serial_number; - u16 vendor_id; - u16 manufacturing_date; - u8 manufacturing_location; - u8 reserved[31]; -}; - -struct acpi_table_spcr { - struct acpi_table_header header; - u8 interface_type; - u8 reserved[3]; - struct acpi_generic_address serial_port; - u8 interrupt_type; - u8 pc_interrupt; - u32 interrupt; - u8 baud_rate; - u8 parity; - u8 stop_bits; - u8 flow_control; - u8 terminal_type; - u8 language; - u16 pci_device_id; - u16 pci_vendor_id; - u8 pci_bus; - u8 pci_device; - u8 pci_function; - u32 pci_flags; - u8 pci_segment; - u32 uart_clk_freq; - u32 precise_baudrate; - u16 name_space_string_length; - u16 name_space_string_offset; - char name_space_string[0]; -} __attribute__((packed)); - -struct acpi_whea_header { - u8 action; - u8 instruction; - u8 flags; - u8 reserved; - struct acpi_generic_address register_region; - u64 value; - u64 mask; -}; - -struct apei_exec_context; - -typedef int (*apei_exec_ins_func_t)(struct apei_exec_context *, struct acpi_whea_header *); - -struct apei_exec_ins_type; - -struct apei_exec_context { - u32 ip; - u64 value; - u64 var1; - u64 var2; - u64 src_base; - u64 dst_base; - struct apei_exec_ins_type *ins_table; - u32 instructions; - struct acpi_whea_header *action_table; - u32 entries; -}; - -struct apei_exec_ins_type { - u32 flags; - apei_exec_ins_func_t run; -}; - -struct apei_resources { - struct list_head iomem; - struct list_head ioport; -}; - -typedef int (*apei_exec_entry_func_t)(struct apei_exec_context *, struct acpi_whea_header *, void *); - -struct apei_res { - struct list_head list; - long unsigned int start; - long unsigned int end; -}; - -struct acpi_lpat { - int temp; - int raw; -}; - -struct acpi_lpat_conversion_table { - struct acpi_lpat *lpat; - int lpat_count; -}; - -struct pmic_table { - int address; - int reg; - int bit; -}; - -struct regmap; - -struct intel_pmic_opregion_data { - int (*get_power)(struct regmap *, int, int, u64 *); - int (*update_power)(struct regmap *, int, int, bool); - int (*get_raw_temp)(struct regmap *, int); - int (*update_aux)(struct regmap *, int, int); - int (*get_policy)(struct regmap *, int, int, u64 *); - int (*update_policy)(struct regmap *, int, int, int); - int (*exec_mipi_pmic_seq_element)(struct regmap *, u16, u32, u32, u32); - int (*lpat_raw_to_temp)(struct acpi_lpat_conversion_table *, int); - const struct pmic_table *power_table; - int power_table_count; - const struct pmic_table *thermal_table; - int thermal_table_count; - int pmic_i2c_address; -}; - -struct intel_pmic_regs_handler_ctx { - unsigned int val; - u16 addr; -}; - -struct intel_pmic_opregion { - struct mutex lock; - struct acpi_lpat_conversion_table *lpat_table; - struct regmap *regmap; - const struct intel_pmic_opregion_data *data; - struct intel_pmic_regs_handler_ctx ctx; -}; - -struct tps68470_pmic_table { - u32 address; - u32 reg; - u32 bitmask; -}; - -struct tps68470_pmic_opregion { - struct mutex lock; - struct regmap *regmap; -}; - -struct override_status_id { - struct acpi_device_id hid[2]; - struct x86_cpu_id cpu_ids[2]; - struct dmi_system_id dmi_ids[2]; - const char *uid; - const char *path; - long long unsigned int status; -}; - -struct pnp_device_id { - __u8 id[8]; - kernel_ulong_t driver_data; -}; - -struct pnp_card_device_id { - __u8 id[8]; - kernel_ulong_t driver_data; - struct { - __u8 id[8]; - } devs[8]; -}; - -struct pnp_protocol; - -struct pnp_id; - -struct pnp_card { - struct device dev; - unsigned char number; - struct list_head global_list; - struct list_head protocol_list; - struct list_head devices; - struct pnp_protocol *protocol; - struct pnp_id *id; - char name[50]; - unsigned char pnpver; - unsigned char productver; - unsigned int serial; - unsigned char checksum; - struct proc_dir_entry *procdir; -}; - -struct pnp_dev; - -struct pnp_protocol { - struct list_head protocol_list; - char *name; - int (*get)(struct pnp_dev *); - int (*set)(struct pnp_dev *); - int (*disable)(struct pnp_dev *); - bool (*can_wakeup)(struct pnp_dev *); - int (*suspend)(struct pnp_dev *, pm_message_t); - int (*resume)(struct pnp_dev *); - unsigned char number; - struct device dev; - struct list_head cards; - struct list_head devices; -}; - -struct pnp_id { - char id[8]; - struct pnp_id *next; -}; - -struct pnp_card_driver; - -struct pnp_card_link { - struct pnp_card *card; - struct pnp_card_driver *driver; - void *driver_data; - pm_message_t pm_state; -}; - -struct pnp_driver { - const char *name; - const struct pnp_device_id *id_table; - unsigned int flags; - int (*probe)(struct pnp_dev *, const struct pnp_device_id *); - void (*remove)(struct pnp_dev *); - void (*shutdown)(struct pnp_dev *); - int (*suspend)(struct pnp_dev *, pm_message_t); - int (*resume)(struct pnp_dev *); - struct device_driver driver; -}; - -struct pnp_card_driver { - struct list_head global_list; - char *name; - const struct pnp_card_device_id *id_table; - unsigned int flags; - int (*probe)(struct pnp_card_link *, const struct pnp_card_device_id *); - void (*remove)(struct pnp_card_link *); - int (*suspend)(struct pnp_card_link *, pm_message_t); - int (*resume)(struct pnp_card_link *); - struct pnp_driver link; -}; - -struct pnp_dev { - struct device dev; - u64 dma_mask; - unsigned int number; - int status; - struct list_head global_list; - struct list_head protocol_list; - struct list_head card_list; - struct list_head rdev_list; - struct pnp_protocol *protocol; - struct pnp_card *card; - struct pnp_driver *driver; - struct pnp_card_link *card_link; - struct pnp_id *id; - int active; - int capabilities; - unsigned int num_dependent_sets; - struct list_head resources; - struct list_head options; - char name[50]; - int flags; - struct proc_dir_entry *procent; - void *data; -}; - -struct pnp_port { - resource_size_t min; - resource_size_t max; - resource_size_t align; - resource_size_t size; - unsigned char flags; -}; - -typedef struct { - long unsigned int bits[4]; -} pnp_irq_mask_t; - -struct pnp_irq { - pnp_irq_mask_t map; - unsigned char flags; -}; - -struct pnp_dma { - unsigned char map; - unsigned char flags; -}; - -struct pnp_mem { - resource_size_t min; - resource_size_t max; - resource_size_t align; - resource_size_t size; - unsigned char flags; -}; - -struct pnp_option { - struct list_head list; - unsigned int flags; - long unsigned int type; - union { - struct pnp_port port; - struct pnp_irq irq; - struct pnp_dma dma; - struct pnp_mem mem; - } u; -}; - -struct pnp_resource { - struct list_head list; - struct resource res; -}; - -struct clk_hw; - -struct clk_lookup { - struct list_head node; - const char *dev_id; - const char *con_id; - struct clk *clk; - struct clk_hw *clk_hw; -}; - -struct clk_core; - -struct clk_init_data; - -struct clk_hw { - struct clk_core *core; - struct clk *clk; - const struct clk_init_data *init; -}; - -struct clk_rate_request { - struct clk_core *core; - long unsigned int rate; - long unsigned int min_rate; - long unsigned int max_rate; - long unsigned int best_parent_rate; - struct clk_hw *best_parent_hw; -}; - -struct clk_duty { - unsigned int num; - unsigned int den; -}; - -struct clk_ops { - int (*prepare)(struct clk_hw *); - void (*unprepare)(struct clk_hw *); - int (*is_prepared)(struct clk_hw *); - void (*unprepare_unused)(struct clk_hw *); - int (*enable)(struct clk_hw *); - void (*disable)(struct clk_hw *); - int (*is_enabled)(struct clk_hw *); - void (*disable_unused)(struct clk_hw *); - int (*save_context)(struct clk_hw *); - void (*restore_context)(struct clk_hw *); - long unsigned int (*recalc_rate)(struct clk_hw *, long unsigned int); - long int (*round_rate)(struct clk_hw *, long unsigned int, long unsigned int *); - int (*determine_rate)(struct clk_hw *, struct clk_rate_request *); - int (*set_parent)(struct clk_hw *, u8); - u8 (*get_parent)(struct clk_hw *); - int (*set_rate)(struct clk_hw *, long unsigned int, long unsigned int); - int (*set_rate_and_parent)(struct clk_hw *, long unsigned int, long unsigned int, u8); - long unsigned int (*recalc_accuracy)(struct clk_hw *, long unsigned int); - int (*get_phase)(struct clk_hw *); - int (*set_phase)(struct clk_hw *, int); - int (*get_duty_cycle)(struct clk_hw *, struct clk_duty *); - int (*set_duty_cycle)(struct clk_hw *, struct clk_duty *); - int (*init)(struct clk_hw *); - void (*terminate)(struct clk_hw *); - void (*debug_init)(struct clk_hw *, struct dentry *); -}; - -struct clk_parent_data { - const struct clk_hw *hw; - const char *fw_name; - const char *name; - int index; -}; - -struct clk_init_data { - const char *name; - const struct clk_ops *ops; - const char * const *parent_names; - const struct clk_parent_data *parent_data; - const struct clk_hw **parent_hws; - u8 num_parents; - long unsigned int flags; -}; - -struct clk_lookup_alloc { - struct clk_lookup cl; - char dev_id[24]; - char con_id[16]; -}; - -struct clk_fixed_rate { - struct clk_hw hw; - long unsigned int fixed_rate; - long unsigned int fixed_accuracy; - long unsigned int flags; -}; - -struct clk_composite { - struct clk_hw hw; - struct clk_ops ops; - struct clk_hw *mux_hw; - struct clk_hw *rate_hw; - struct clk_hw *gate_hw; - const struct clk_ops *mux_ops; - const struct clk_ops *rate_ops; - const struct clk_ops *gate_ops; -}; - -struct dmaengine_desc_callback { - dma_async_tx_callback callback; - dma_async_tx_callback_result callback_result; - void *callback_param; -}; - -struct virt_dma_desc { - struct dma_async_tx_descriptor tx; - struct dmaengine_result tx_result; - struct list_head node; -}; - -struct virt_dma_chan { - struct dma_chan chan; - struct tasklet_struct task; - void (*desc_free)(struct virt_dma_desc *); - spinlock_t lock; - struct list_head desc_allocated; - struct list_head desc_submitted; - struct list_head desc_issued; - struct list_head desc_completed; - struct list_head desc_terminated; - struct virt_dma_desc *cyclic; -}; - -struct of_dma { - struct list_head of_dma_controllers; - struct device_node *of_node; - struct dma_chan * (*of_dma_xlate)(struct of_phandle_args *, struct of_dma *); - void * (*of_dma_route_allocate)(struct of_phandle_args *, struct of_dma *); - struct dma_router *dma_router; - void *of_dma_data; -}; - -enum reset_control_flags { - RESET_CONTROL_EXCLUSIVE = 4, - RESET_CONTROL_EXCLUSIVE_DEASSERTED = 12, - RESET_CONTROL_EXCLUSIVE_RELEASED = 0, - RESET_CONTROL_SHARED = 1, - RESET_CONTROL_SHARED_DEASSERTED = 9, - RESET_CONTROL_OPTIONAL_EXCLUSIVE = 6, - RESET_CONTROL_OPTIONAL_EXCLUSIVE_DEASSERTED = 14, - RESET_CONTROL_OPTIONAL_EXCLUSIVE_RELEASED = 2, - RESET_CONTROL_OPTIONAL_SHARED = 3, - RESET_CONTROL_OPTIONAL_SHARED_DEASSERTED = 11, -}; - -enum ldma_chan_on_off { - DMA_CH_OFF = 0, - DMA_CH_ON = 1, -}; - -enum { - DMA_TYPE_TX = 0, - DMA_TYPE_RX = 1, - DMA_TYPE_MCPY = 2, -}; - -struct ldma_port; - -struct dma_pool; - -struct dw2_desc_sw; - -struct ldma_chan { - struct virt_dma_chan vchan; - struct ldma_port *port; - char name[8]; - int nr; - u32 flags; - enum ldma_chan_on_off onoff; - dma_addr_t desc_phys; - void *desc_base; - u32 desc_cnt; - int rst; - u32 hdrm_len; - bool hdrm_csum; - u32 boff_len; - u32 data_endian; - u32 desc_endian; - bool pden; - bool desc_rx_np; - bool data_endian_en; - bool desc_endian_en; - bool abc_en; - bool desc_init; - struct dma_pool *desc_pool; - u32 desc_num; - struct dw2_desc_sw *ds; - struct work_struct work; - struct dma_slave_config config; -}; - -struct ldma_dev; - -struct ldma_port { - struct ldma_dev *ldev; - u32 portid; - u32 rxbl; - u32 txbl; - u32 rxendi; - u32 txendi; - u32 pkt_drop; -}; - -struct dw2_desc; - -struct dw2_desc_sw { - struct virt_dma_desc vdesc; - struct ldma_chan *chan; - dma_addr_t desc_phys; - size_t desc_cnt; - size_t size; - struct dw2_desc *desc_hw; -}; - -struct ldma_inst_data; - -struct ldma_dev { - struct device *dev; - void *base; - struct reset_control *rst; - struct clk *core_clk; - struct dma_device dma_dev; - u32 ver; - int irq; - struct ldma_port *ports; - struct ldma_chan *chans; - spinlock_t dev_lock; - u32 chan_nrs; - u32 port_nrs; - u32 channels_mask; - u32 flags; - u32 pollcnt; - const struct ldma_inst_data *inst; - struct workqueue_struct *wq; -}; - -struct ldma_inst_data { - bool desc_in_sram; - bool chan_fc; - bool desc_fod; - bool valid_desc_fetch_ack; - u32 orrc; - const char *name; - u32 type; -}; - -struct dw2_desc { - u32 field; - u32 addr; -}; - -struct virtio_device_id { - __u32 device; - __u32 vendor; -}; - -struct virtio_pci_common_cfg { - __le32 device_feature_select; - __le32 device_feature; - __le32 guest_feature_select; - __le32 guest_feature; - __le16 msix_config; - __le16 num_queues; - __u8 device_status; - __u8 config_generation; - __le16 queue_select; - __le16 queue_size; - __le16 queue_msix_vector; - __le16 queue_enable; - __le16 queue_notify_off; - __le32 queue_desc_lo; - __le32 queue_desc_hi; - __le32 queue_avail_lo; - __le32 queue_avail_hi; - __le32 queue_used_lo; - __le32 queue_used_hi; -}; - -struct virtio_pci_modern_common_cfg { - struct virtio_pci_common_cfg cfg; - __le16 queue_notify_data; - __le16 queue_reset; - __le16 admin_queue_index; - __le16 admin_queue_num; -}; - -struct virtio_pci_modern_device { - struct pci_dev *pci_dev; - struct virtio_pci_common_cfg *common; - void *device; - void *notify_base; - resource_size_t notify_pa; - u8 *isr; - size_t notify_len; - size_t device_len; - size_t common_len; - int notify_map_cap; - u32 notify_offset_multiplier; - int modern_bars; - struct virtio_device_id id; - int (*device_id_check)(struct pci_dev *); - u64 dma_mask; -}; - -struct irq_affinity { - unsigned int pre_vectors; - unsigned int post_vectors; - unsigned int nr_sets; - unsigned int set_size[4]; - void (*calc_sets)(struct irq_affinity *, unsigned int); - void *priv; -}; - -struct virtio_device; - -struct virtqueue { - struct list_head list; - void (*callback)(struct virtqueue *); - const char *name; - struct virtio_device *vdev; - unsigned int index; - unsigned int num_free; - unsigned int num_max; - bool reset; - void *priv; -}; - -struct vringh_config_ops; - -struct virtio_config_ops; - -struct virtio_device { - int index; - bool failed; - bool config_core_enabled; - bool config_driver_disabled; - bool config_change_pending; - spinlock_t config_lock; - spinlock_t vqs_list_lock; - struct device dev; - struct virtio_device_id id; - const struct virtio_config_ops *config; - const struct vringh_config_ops *vringh_config; - struct list_head vqs; - union { - u64 features; - u64 features_array[2]; - }; - void *priv; -}; - -struct virtqueue_info; - -struct virtio_shm_region; - -struct virtio_config_ops { - void (*get)(struct virtio_device *, unsigned int, void *, unsigned int); - void (*set)(struct virtio_device *, unsigned int, const void *, unsigned int); - u32 (*generation)(struct virtio_device *); - u8 (*get_status)(struct virtio_device *); - void (*set_status)(struct virtio_device *, u8); - void (*reset)(struct virtio_device *); - int (*find_vqs)(struct virtio_device *, unsigned int, struct virtqueue **, struct virtqueue_info *, struct irq_affinity *); - void (*del_vqs)(struct virtio_device *); - void (*synchronize_cbs)(struct virtio_device *); - u64 (*get_features)(struct virtio_device *); - void (*get_extended_features)(struct virtio_device *, u64 *); - int (*finalize_features)(struct virtio_device *); - const char * (*bus_name)(struct virtio_device *); - int (*set_vq_affinity)(struct virtqueue *, const struct cpumask *); - const struct cpumask * (*get_vq_affinity)(struct virtio_device *, int); - bool (*get_shm_region)(struct virtio_device *, struct virtio_shm_region *, u8); - int (*disable_vq_and_reset)(struct virtqueue *); - int (*enable_vq_after_reset)(struct virtqueue *); -}; - -struct virtio_shm_region { - u64 addr; - u64 len; -}; - -typedef void vq_callback_t(struct virtqueue *); - -struct virtqueue_info { - const char *name; - vq_callback_t *callback; - bool ctx; -}; - -struct virtio_mmio_device { - struct virtio_device vdev; - struct platform_device *pdev; - void *base; - long unsigned int version; -}; - -struct virtio_admin_cmd { - __le16 opcode; - __le16 group_type; - __le64 group_member_id; - struct scatterlist *data_sg; - struct scatterlist *result_sg; - struct completion completion; - u32 result_sg_size; - int ret; -}; - -struct virtio_admin_cmd_legacy_wr_data { - __u8 offset; - __u8 reserved[7]; - __u8 registers[0]; -}; - -struct virtio_admin_cmd_legacy_rd_data { - __u8 offset; -}; - -struct virtio_admin_cmd_notify_info_data { - __u8 flags; - __u8 bar; - __u8 padding[6]; - __le64 offset; -}; - -struct virtio_admin_cmd_notify_info_result { - struct virtio_admin_cmd_notify_info_data entries[4]; -}; - -struct virtio_pci_legacy_device { - struct pci_dev *pci_dev; - u8 *isr; - void *ioaddr; - struct virtio_device_id id; -}; - -struct virtio_pci_vq_info { - struct virtqueue *vq; - struct list_head node; - unsigned int msix_vector; -}; - -struct virtio_pci_admin_vq { - struct virtio_pci_vq_info *info; - spinlock_t lock; - u64 supported_cmds; - u64 supported_caps; - u8 max_dev_parts_objects; - struct ida dev_parts_ida; - char name[10]; - u16 vq_index; -}; - -struct virtio_pci_device { - struct virtio_device vdev; - struct pci_dev *pci_dev; - union { - struct virtio_pci_legacy_device ldev; - struct virtio_pci_modern_device mdev; - }; - bool is_legacy; - u8 *isr; - spinlock_t lock; - struct list_head virtqueues; - struct list_head slow_virtqueues; - struct virtio_pci_vq_info **vqs; - struct virtio_pci_admin_vq admin_vq; - int msix_enabled; - int intx_enabled; - cpumask_var_t *msix_affinity_masks; - char (*msix_names)[256]; - unsigned int msix_vectors; - unsigned int msix_used_vectors; - bool per_vq_vectors; - struct virtqueue * (*setup_vq)(struct virtio_pci_device *, struct virtio_pci_vq_info *, unsigned int, void (*)(struct virtqueue *), const char *, bool, u16); - void (*del_vq)(struct virtio_pci_vq_info *); - u16 (*config_vector)(struct virtio_pci_device *, u16); - int (*avq_index)(struct virtio_device *, u16 *, u16 *); -}; - -struct regulator_state { - int uV; - int min_uV; - int max_uV; - unsigned int mode; - int enabled; - bool changeable; -}; - -struct notification_limit { - int prot; - int err; - int warn; -}; - -struct regulation_constraints { - const char *name; - int min_uV; - int max_uV; - int uV_offset; - int min_uA; - int max_uA; - int ilim_uA; - int pw_budget_mW; - int system_load; - u32 *max_spread; - int max_uV_step; - unsigned int valid_modes_mask; - unsigned int valid_ops_mask; - int input_uV; - struct regulator_state state_disk; - struct regulator_state state_mem; - struct regulator_state state_standby; - struct notification_limit over_curr_limits; - struct notification_limit over_voltage_limits; - struct notification_limit under_voltage_limits; - struct notification_limit temp_limits; - suspend_state_t initial_state; - unsigned int initial_mode; - unsigned int ramp_delay; - unsigned int settling_time; - unsigned int settling_time_up; - unsigned int settling_time_down; - unsigned int enable_time; - unsigned int uv_less_critical_window_ms; - unsigned int active_discharge; - unsigned int always_on: 1; - unsigned int boot_on: 1; - unsigned int apply_uV: 1; - unsigned int ramp_disable: 1; - unsigned int soft_start: 1; - unsigned int pull_down: 1; - unsigned int system_critical: 1; - unsigned int over_current_protection: 1; - unsigned int over_current_detection: 1; - unsigned int over_voltage_detection: 1; - unsigned int under_voltage_detection: 1; - unsigned int over_temp_detection: 1; -}; - -struct regulator_consumer_supply { - const char *dev_name; - const char *supply; -}; - -struct regulator_init_data { - const char *supply_regulator; - struct regulation_constraints constraints; - int num_consumer_supplies; - struct regulator_consumer_supply *consumer_supplies; - void *driver_data; -}; - -struct fixed_voltage_config { - const char *supply_name; - const char *input_supply; - int microvolts; - unsigned int startup_delay; - unsigned int off_on_delay; - unsigned int enabled_at_boot: 1; - struct regulator_init_data *init_data; -}; - -struct fixed_regulator_data { - struct fixed_voltage_config cfg; - struct regulator_init_data init_data; - struct platform_device pdev; -}; - -struct regulator; - -struct regulator_bulk_data { - const char *supply; - struct regulator *consumer; - int init_load_uA; - int ret; -}; - -struct regulator_voltage { - int min_uV; - int max_uV; -}; - -struct regulator_dev; - -struct regulator { - struct device *dev; - struct list_head list; - unsigned int always_on: 1; - unsigned int bypass: 1; - unsigned int device_link: 1; - int uA_load; - unsigned int enable_count; - unsigned int deferred_disables; - struct regulator_voltage voltage[5]; - const char *supply_name; - struct device_attribute dev_attr; - struct regulator_dev *rdev; - struct dentry *debugfs; -}; - -struct linear_range { - unsigned int min; - unsigned int min_sel; - unsigned int max_sel; - unsigned int step; -}; - -struct regulator_ops { - int (*list_voltage)(struct regulator_dev *, unsigned int); - int (*set_voltage)(struct regulator_dev *, int, int, unsigned int *); - int (*map_voltage)(struct regulator_dev *, int, int); - int (*set_voltage_sel)(struct regulator_dev *, unsigned int); - int (*get_voltage)(struct regulator_dev *); - int (*get_voltage_sel)(struct regulator_dev *); - int (*set_current_limit)(struct regulator_dev *, int, int); - int (*get_current_limit)(struct regulator_dev *); - int (*set_input_current_limit)(struct regulator_dev *, int); - int (*set_over_current_protection)(struct regulator_dev *, int, int, bool); - int (*set_over_voltage_protection)(struct regulator_dev *, int, int, bool); - int (*set_under_voltage_protection)(struct regulator_dev *, int, int, bool); - int (*set_thermal_protection)(struct regulator_dev *, int, int, bool); - int (*set_active_discharge)(struct regulator_dev *, bool); - int (*enable)(struct regulator_dev *); - int (*disable)(struct regulator_dev *); - int (*is_enabled)(struct regulator_dev *); - int (*set_mode)(struct regulator_dev *, unsigned int); - unsigned int (*get_mode)(struct regulator_dev *); - int (*get_error_flags)(struct regulator_dev *, unsigned int *); - int (*enable_time)(struct regulator_dev *); - int (*set_ramp_delay)(struct regulator_dev *, int); - int (*set_voltage_time)(struct regulator_dev *, int, int); - int (*set_voltage_time_sel)(struct regulator_dev *, unsigned int, unsigned int); - int (*set_soft_start)(struct regulator_dev *); - int (*get_status)(struct regulator_dev *); - unsigned int (*get_optimum_mode)(struct regulator_dev *, int, int, int); - int (*set_load)(struct regulator_dev *, int); - int (*set_bypass)(struct regulator_dev *, bool); - int (*get_bypass)(struct regulator_dev *, bool *); - int (*set_suspend_voltage)(struct regulator_dev *, int); - int (*set_suspend_enable)(struct regulator_dev *); - int (*set_suspend_disable)(struct regulator_dev *); - int (*set_suspend_mode)(struct regulator_dev *, unsigned int); - int (*resume)(struct regulator_dev *); - int (*set_pull_down)(struct regulator_dev *); -}; - -struct regulator_coupler; - -struct coupling_desc { - struct regulator_dev **coupled_rdevs; - struct regulator_coupler *coupler; - int n_resolved; - int n_coupled; -}; - -struct regulator_desc; - -struct regulator_enable_gpio; - -struct regulator_dev { - const struct regulator_desc *desc; - int exclusive; - u32 use_count; - u32 open_count; - u32 bypass_count; - struct list_head list; - struct list_head consumer_list; - struct coupling_desc coupling_desc; - struct blocking_notifier_head notifier; - struct ww_mutex mutex; - struct task_struct *mutex_owner; - int ref_cnt; - struct module *owner; - struct device dev; - struct regulation_constraints *constraints; - struct regulator *supply; - const char *supply_name; - struct regmap *regmap; - struct delayed_work disable_work; - void *reg_data; - struct dentry *debugfs; - struct regulator_enable_gpio *ena_pin; - unsigned int ena_gpio_state: 1; - unsigned int is_switch: 1; - ktime_t last_off; - int cached_err; - bool use_cached_err; - spinlock_t err_lock; - int pw_requested_mW; -}; - -enum regulator_type { - REGULATOR_VOLTAGE = 0, - REGULATOR_CURRENT = 1, -}; - -struct regulator_config; - -struct regulator_desc { - const char *name; - const char *supply_name; - const char *of_match; - bool of_match_full_name; - const char *regulators_node; - int (*of_parse_cb)(struct device_node *, const struct regulator_desc *, struct regulator_config *); - int (*init_cb)(struct regulator_dev *, struct regulator_config *); - int id; - unsigned int continuous_voltage_range: 1; - unsigned int n_voltages; - unsigned int n_current_limits; - const struct regulator_ops *ops; - int irq; - enum regulator_type type; - struct module *owner; - unsigned int min_uV; - unsigned int uV_step; - unsigned int linear_min_sel; - int fixed_uV; - unsigned int ramp_delay; - int min_dropout_uV; - const struct linear_range *linear_ranges; - const unsigned int *linear_range_selectors_bitfield; - int n_linear_ranges; - const unsigned int *volt_table; - const unsigned int *curr_table; - unsigned int vsel_range_reg; - unsigned int vsel_range_mask; - bool range_applied_by_vsel; - unsigned int vsel_reg; - unsigned int vsel_mask; - unsigned int vsel_step; - unsigned int csel_reg; - unsigned int csel_mask; - unsigned int apply_reg; - unsigned int apply_bit; - unsigned int enable_reg; - unsigned int enable_mask; - unsigned int enable_val; - unsigned int disable_val; - bool enable_is_inverted; - unsigned int bypass_reg; - unsigned int bypass_mask; - unsigned int bypass_val_on; - unsigned int bypass_val_off; - unsigned int active_discharge_on; - unsigned int active_discharge_off; - unsigned int active_discharge_mask; - unsigned int active_discharge_reg; - unsigned int soft_start_reg; - unsigned int soft_start_mask; - unsigned int soft_start_val_on; - unsigned int pull_down_reg; - unsigned int pull_down_mask; - unsigned int pull_down_val_on; - unsigned int ramp_reg; - unsigned int ramp_mask; - const unsigned int *ramp_delay_table; - unsigned int n_ramp_values; - unsigned int enable_time; - unsigned int off_on_delay; - unsigned int poll_enabled_time; - unsigned int (*of_map_mode)(unsigned int); -}; - -struct regulator_config { - struct device *dev; - const struct regulator_init_data *init_data; - void *driver_data; - struct device_node *of_node; - struct regmap *regmap; - struct gpio_desc *ena_gpiod; -}; - -struct regulator_err_state { - struct regulator_dev *rdev; - long unsigned int notifs; - long unsigned int errors; - int possible_errs; -}; - -struct regulator_irq_data { - struct regulator_err_state *states; - int num_states; - void *data; - long int opaque; -}; - -struct regulator_irq_desc { - const char *name; - int fatal_cnt; - int reread_ms; - int irq_off_ms; - bool skip_off; - bool high_prio; - void *data; - int (*die)(struct regulator_irq_data *); - int (*map_event)(int, struct regulator_irq_data *, long unsigned int *); - int (*renable)(struct regulator_irq_data *); -}; - -enum regulator_get_type { - NORMAL_GET = 0, - EXCLUSIVE_GET = 1, - OPTIONAL_GET = 2, - MAX_GET_TYPE = 3, -}; - -struct regulator_bulk_devres { - struct regulator_bulk_data *consumers; - int num_consumers; -}; - -struct regulator_supply_alias_match { - struct device *dev; - const char *id; -}; - -struct regulator_notifier_match { - struct regulator *regulator; - struct notifier_block *nb; -}; - -struct gpiod_lookup { - const char *key; - u16 chip_hwnum; - const char *con_id; - unsigned int idx; - long unsigned int flags; -}; - -struct gpiod_lookup_table { - struct list_head list; - const char *dev_id; - struct gpiod_lookup table[0]; -}; - -struct reset_controller_dev; - -struct reset_control { - struct reset_controller_dev *rcdev; - struct list_head list; - unsigned int id; - struct kref refcnt; - bool acquired; - bool shared; - bool array; - atomic_t deassert_count; - atomic_t triggered_count; -}; - -struct reset_control_ops { - int (*reset)(struct reset_controller_dev *, long unsigned int); - int (*assert)(struct reset_controller_dev *, long unsigned int); - int (*deassert)(struct reset_controller_dev *, long unsigned int); - int (*status)(struct reset_controller_dev *, long unsigned int); -}; - -struct reset_controller_dev { - const struct reset_control_ops *ops; - struct module *owner; - struct list_head list; - struct list_head reset_control_head; - struct device *dev; - struct device_node *of_node; - const struct of_phandle_args *of_args; - int of_reset_n_cells; - int (*of_xlate)(struct reset_controller_dev *, const struct of_phandle_args *); - unsigned int nr_resets; -}; - -struct reset_control_lookup { - struct list_head list; - const char *provider; - unsigned int index; - const char *dev_id; - const char *con_id; -}; - -struct reset_control_array { - struct reset_control base; - unsigned int num_rstcs; - struct reset_control *rstc[0]; -}; - -struct reset_gpio_lookup { - struct of_phandle_args of_args; - struct list_head list; -}; - -struct reset_control_bulk_devres { - int num_rstcs; - struct reset_control_bulk_data *rstcs; -}; - -typedef unsigned int uint; - -typedef struct { - spinlock_t *lock; - long unsigned int flags; -} class_spinlock_irqsave_t; - -typedef u32 compat_uint_t; - -enum tty_driver_flag { - TTY_DRIVER_INSTALLED = 1, - TTY_DRIVER_RESET_TERMIOS = 2, - TTY_DRIVER_REAL_RAW = 4, - TTY_DRIVER_DYNAMIC_DEV = 8, - TTY_DRIVER_DEVPTS_MEM = 16, - TTY_DRIVER_HARDWARE_BREAK = 32, - TTY_DRIVER_DYNAMIC_ALLOC = 64, - TTY_DRIVER_UNNUMBERED_NODE = 128, -}; - -struct serial_icounter_struct { - int cts; - int dsr; - int rng; - int dcd; - int rx; - int tx; - int frame; - int overrun; - int parity; - int brk; - int buf_overrun; - int reserved[9]; -}; - -struct serial_struct { - int type; - int line; - unsigned int port; - int irq; - int flags; - int xmit_fifo_size; - int custom_divisor; - int baud_base; - short unsigned int close_delay; - char io_type; - char reserved_char[1]; - int hub6; - short unsigned int closing_wait; - short unsigned int closing_wait2; - unsigned char *iomem_base; - short unsigned int iomem_reg_shift; - unsigned int port_high; - long unsigned int iomap_base; -}; - -enum tty_struct_flags { - TTY_THROTTLED = 0, - TTY_IO_ERROR = 1, - TTY_OTHER_CLOSED = 2, - TTY_EXCLUSIVE = 3, - TTY_DO_WRITE_WAKEUP = 4, - TTY_LDISC_OPEN = 5, - TTY_PTY_LOCK = 6, - TTY_NO_WRITE_SPLIT = 7, - TTY_HUPPED = 8, - TTY_HUPPING = 9, - TTY_LDISC_CHANGING = 10, - TTY_LDISC_HALTED = 11, -}; - -enum cons_flags { - CON_PRINTBUFFER = 1, - CON_CONSDEV = 2, - CON_ENABLED = 4, - CON_BOOT = 8, - CON_ANYTIME = 16, - CON_BRL = 32, - CON_EXTENDED = 64, - CON_SUSPENDED = 128, - CON_NBCON = 256, -}; - -enum nbcon_prio { - NBCON_PRIO_NONE = 0, - NBCON_PRIO_NORMAL = 1, - NBCON_PRIO_EMERGENCY = 2, - NBCON_PRIO_PANIC = 3, - NBCON_PRIO_MAX = 4, -}; - -struct console; - -struct printk_buffers; - -struct nbcon_context { - struct console *console; - unsigned int spinwait_max_us; - enum nbcon_prio prio; - unsigned int allow_unsafe_takeover: 1; - unsigned int backlog: 1; - struct printk_buffers *pbufs; - u64 seq; -}; - -struct nbcon_write_context; - -struct console { - char name[16]; - void (*write)(struct console *, const char *, unsigned int); - int (*read)(struct console *, char *, unsigned int); - struct tty_driver * (*device)(struct console *, int *); - void (*unblank)(void); - int (*setup)(struct console *, char *); - int (*exit)(struct console *); - int (*match)(struct console *, char *, int, char *); - short int flags; - short int index; - int cflag; - uint ispeed; - uint ospeed; - u64 seq; - long unsigned int dropped; - void *data; - struct hlist_node node; - void (*write_atomic)(struct console *, struct nbcon_write_context *); - void (*write_thread)(struct console *, struct nbcon_write_context *); - void (*device_lock)(struct console *, long unsigned int *); - void (*device_unlock)(struct console *, long unsigned int); - atomic_t nbcon_state; - atomic_long_t nbcon_seq; - struct nbcon_context nbcon_device_ctxt; - atomic_long_t nbcon_prev_seq; - struct printk_buffers *pbufs; - struct task_struct *kthread; - struct rcuwait rcuwait; - struct irq_work irq_work; -}; - -struct nbcon_write_context { - struct nbcon_context ctxt; - char *outbuf; - unsigned int len; - bool unsafe_takeover; -}; - -struct serial_struct32 { - compat_int_t type; - compat_int_t line; - compat_uint_t port; - compat_int_t irq; - compat_int_t flags; - compat_int_t xmit_fifo_size; - compat_int_t custom_divisor; - compat_int_t baud_base; - short unsigned int close_delay; - char io_type; - char reserved_char; - compat_int_t hub6; - short unsigned int closing_wait; - short unsigned int closing_wait2; - compat_uint_t iomem_base; - short unsigned int iomem_reg_shift; - unsigned int port_high; - compat_int_t reserved; -}; - -struct tty_audit_buf { - struct mutex mutex; - dev_t dev; - bool icanon; - size_t valid; - u8 *data; -}; - -struct vc { - struct vc_data *d; - struct work_struct SAK_work; -}; - -struct vt_notifier_param { - struct vc_data *vc; - unsigned int c; -}; - -struct vcs_poll_data { - struct notifier_block notifier; - unsigned int cons_num; - int event; - wait_queue_head_t waitq; - struct fasync_struct *fasync; -}; - -struct tiocl_selection { - short unsigned int xs; - short unsigned int ys; - short unsigned int xe; - short unsigned int ye; - short unsigned int sel_mode; -}; - -struct vc_selection { - struct mutex lock; - struct vc_data *cons; - char *buffer; - unsigned int buf_len; - volatile int start; - int end; -}; - -struct ucs_interval16 { - u16 first; - u16 last; -}; - -struct ucs_interval32 { - u32 first; - u32 last; -}; - -struct ucs_recomposition { - u16 base; - u16 mark; - u16 recomposed; -}; - -struct compare_key { - u16 base; - u16 mark; -}; - -struct ucs_page_desc { - u8 page; - u8 count; - u16 start; -}; - -struct ucs_page_entry { - u8 offset; - u8 fallback; -}; - -struct hv_ops; - -struct hvc_struct { - struct tty_port port; - spinlock_t lock; - int index; - int do_wakeup; - int outbuf_size; - int n_outbuf; - uint32_t vtermno; - const struct hv_ops *ops; - int irq_requested; - int data; - struct winsize ws; - struct work_struct tty_resize; - struct list_head next; - long unsigned int flags; - u8 outbuf[0]; -}; - -struct hv_ops { - ssize_t (*get_chars)(uint32_t, u8 *, size_t); - ssize_t (*put_chars)(uint32_t, const u8 *, size_t); - int (*flush)(uint32_t, bool); - int (*notifier_add)(struct hvc_struct *, int); - void (*notifier_del)(struct hvc_struct *, int); - void (*notifier_hangup)(struct hvc_struct *, int); - int (*tiocmget)(struct hvc_struct *); - int (*tiocmset)(struct hvc_struct *, unsigned int, unsigned int); - void (*dtr_rts)(struct hvc_struct *, bool); -}; - -struct serial_rs485 { - __u32 flags; - __u32 delay_rts_before_send; - __u32 delay_rts_after_send; - union { - __u32 padding[5]; - struct { - __u8 addr_recv; - __u8 addr_dest; - __u8 padding0[2]; - __u32 padding1[4]; - }; - }; -}; - -struct serial_iso7816 { - __u32 flags; - __u32 tg; - __u32 sc_fi; - __u32 sc_di; - __u32 clk; - __u32 reserved[5]; -}; - -struct uart_port; - -struct uart_ops { - unsigned int (*tx_empty)(struct uart_port *); - void (*set_mctrl)(struct uart_port *, unsigned int); - unsigned int (*get_mctrl)(struct uart_port *); - void (*stop_tx)(struct uart_port *); - void (*start_tx)(struct uart_port *); - void (*throttle)(struct uart_port *); - void (*unthrottle)(struct uart_port *); - void (*send_xchar)(struct uart_port *, char); - void (*stop_rx)(struct uart_port *); - void (*start_rx)(struct uart_port *); - void (*enable_ms)(struct uart_port *); - void (*break_ctl)(struct uart_port *, int); - int (*startup)(struct uart_port *); - void (*shutdown)(struct uart_port *); - void (*flush_buffer)(struct uart_port *); - void (*set_termios)(struct uart_port *, struct ktermios *, const struct ktermios *); - void (*set_ldisc)(struct uart_port *, struct ktermios *); - void (*pm)(struct uart_port *, unsigned int, unsigned int); - const char * (*type)(struct uart_port *); - void (*release_port)(struct uart_port *); - int (*request_port)(struct uart_port *); - void (*config_port)(struct uart_port *, int); - int (*verify_port)(struct uart_port *, struct serial_struct *); - int (*ioctl)(struct uart_port *, unsigned int, long unsigned int); - int (*poll_init)(struct uart_port *); - void (*poll_put_char)(struct uart_port *, unsigned char); - int (*poll_get_char)(struct uart_port *); -}; - -enum uart_iotype { - UPIO_UNKNOWN = -1, - UPIO_PORT = 0, - UPIO_HUB6 = 1, - UPIO_MEM = 2, - UPIO_MEM32 = 3, - UPIO_AU = 4, - UPIO_TSI = 5, - UPIO_MEM32BE = 6, - UPIO_MEM16 = 7, -}; - -struct uart_icount { - __u32 cts; - __u32 dsr; - __u32 rng; - __u32 dcd; - __u32 rx; - __u32 tx; - __u32 frame; - __u32 overrun; - __u32 parity; - __u32 brk; - __u32 buf_overrun; -}; - -typedef u64 upf_t; - -typedef unsigned int upstat_t; - -struct uart_state; - -struct serial_port_device; - -struct uart_port { - spinlock_t lock; - long unsigned int iobase; - unsigned char *membase; - u32 (*serial_in)(struct uart_port *, unsigned int); - void (*serial_out)(struct uart_port *, unsigned int, u32); - void (*set_termios)(struct uart_port *, struct ktermios *, const struct ktermios *); - void (*set_ldisc)(struct uart_port *, struct ktermios *); - unsigned int (*get_mctrl)(struct uart_port *); - void (*set_mctrl)(struct uart_port *, unsigned int); - unsigned int (*get_divisor)(struct uart_port *, unsigned int, unsigned int *); - void (*set_divisor)(struct uart_port *, unsigned int, unsigned int, unsigned int); - int (*startup)(struct uart_port *); - void (*shutdown)(struct uart_port *); - void (*throttle)(struct uart_port *); - void (*unthrottle)(struct uart_port *); - int (*handle_irq)(struct uart_port *); - void (*pm)(struct uart_port *, unsigned int, unsigned int); - void (*handle_break)(struct uart_port *); - int (*rs485_config)(struct uart_port *, struct ktermios *, struct serial_rs485 *); - int (*iso7816_config)(struct uart_port *, struct serial_iso7816 *); - unsigned int ctrl_id; - unsigned int port_id; - unsigned int irq; - long unsigned int irqflags; - unsigned int uartclk; - unsigned int fifosize; - unsigned char x_char; - unsigned char regshift; - unsigned char quirks; - enum uart_iotype iotype; - unsigned int read_status_mask; - unsigned int ignore_status_mask; - struct uart_state *state; - struct uart_icount icount; - struct console *cons; - upf_t flags; - upstat_t status; - bool hw_stopped; - unsigned int mctrl; - unsigned int frame_time; - unsigned int type; - const struct uart_ops *ops; - unsigned int custom_divisor; - unsigned int line; - unsigned int minor; - resource_size_t mapbase; - resource_size_t mapsize; - struct device *dev; - struct serial_port_device *port_dev; - long unsigned int sysrq; - u8 sysrq_ch; - unsigned char has_sysrq; - unsigned char sysrq_seq; - unsigned char hub6; - unsigned char suspended; - unsigned char console_reinit; - const char *name; - struct attribute_group *attr_group; - const struct attribute_group **tty_groups; - struct serial_rs485 rs485; - struct serial_rs485 rs485_supported; - struct gpio_desc *rs485_term_gpio; - struct gpio_desc *rs485_rx_during_tx_gpio; - struct serial_iso7816 iso7816; - void *private_data; -}; - -enum uart_pm_state { - UART_PM_STATE_ON = 0, - UART_PM_STATE_OFF = 3, - UART_PM_STATE_UNDEFINED = 4, -}; - -struct uart_state { - struct tty_port port; - enum uart_pm_state pm_state; - atomic_t refcount; - wait_queue_head_t remove_wait; - struct uart_port *uart_port; -}; - -struct serial_port_device { - struct device dev; - struct uart_port *port; - unsigned int tx_enabled: 1; -}; - -struct uart_driver { - struct module *owner; - const char *driver_name; - const char *dev_name; - int major; - int minor; - int nr; - struct console *cons; - struct uart_state *state; - struct tty_driver *tty_driver; -}; - -enum { - KERNEL_PARAM_FL_UNSAFE = 1, - KERNEL_PARAM_FL_HWPARAM = 2, -}; - -enum hwparam_type { - hwparam_ioport = 0, - hwparam_iomem = 1, - hwparam_ioport_or_iomem = 2, - hwparam_irq = 3, - hwparam_dma = 4, - hwparam_dma_addr = 5, - hwparam_other = 6, -}; - -struct uart_8250_port; - -struct plat_serial8250_port { - long unsigned int iobase; - void *membase; - resource_size_t mapbase; - resource_size_t mapsize; - unsigned int uartclk; - unsigned int irq; - long unsigned int irqflags; - void *private_data; - unsigned char regshift; - unsigned char iotype; - unsigned char hub6; - unsigned char has_sysrq; - unsigned int type; - upf_t flags; - u16 bugs; - u32 (*serial_in)(struct uart_port *, unsigned int); - void (*serial_out)(struct uart_port *, unsigned int, u32); - u32 (*dl_read)(struct uart_8250_port *); - void (*dl_write)(struct uart_8250_port *, u32); - void (*set_termios)(struct uart_port *, struct ktermios *, const struct ktermios *); - void (*set_ldisc)(struct uart_port *, struct ktermios *); - unsigned int (*get_mctrl)(struct uart_port *); - int (*handle_irq)(struct uart_port *); - void (*pm)(struct uart_port *, unsigned int, unsigned int); - void (*handle_break)(struct uart_port *); -}; - -struct mctrl_gpios; - -struct uart_8250_dma; - -struct uart_8250_ops; - -struct uart_8250_em485; - -struct uart_8250_port { - struct uart_port port; - struct timer_list timer; - struct list_head list; - u32 capabilities; - u16 bugs; - unsigned int tx_loadsz; - unsigned char acr; - unsigned char fcr; - unsigned char ier; - unsigned char lcr; - unsigned char mcr; - unsigned char cur_iotype; - unsigned int rpm_tx_active; - unsigned char canary; - unsigned char probe; - struct mctrl_gpios *gpios; - u16 lsr_saved_flags; - u16 lsr_save_mask; - unsigned char msr_saved_flags; - struct uart_8250_dma *dma; - const struct uart_8250_ops *ops; - u32 (*dl_read)(struct uart_8250_port *); - void (*dl_write)(struct uart_8250_port *, u32); - struct uart_8250_em485 *em485; - void (*rs485_start_tx)(struct uart_8250_port *, bool); - void (*rs485_stop_tx)(struct uart_8250_port *, bool); - struct delayed_work overrun_backoff; - u32 overrun_backoff_time_ms; -}; - -enum { - PLAT8250_DEV_LEGACY = -1, - PLAT8250_DEV_PLATFORM = 0, - PLAT8250_DEV_PLATFORM1 = 1, - PLAT8250_DEV_PLATFORM2 = 2, - PLAT8250_DEV_FOURPORT = 3, - PLAT8250_DEV_ACCENT = 4, - PLAT8250_DEV_BOCA = 5, - PLAT8250_DEV_EXAR_ST16C554 = 6, - PLAT8250_DEV_HUB6 = 7, - PLAT8250_DEV_AU1X00 = 8, - PLAT8250_DEV_SM501 = 9, -}; - -struct uart_8250_ops { - int (*setup_irq)(struct uart_8250_port *); - void (*release_irq)(struct uart_8250_port *); - void (*setup_timer)(struct uart_8250_port *); -}; - -struct uart_8250_em485 { - struct hrtimer start_tx_timer; - struct hrtimer stop_tx_timer; - struct hrtimer *active_timer; - struct uart_8250_port *port; - unsigned int tx_stopped: 1; -}; - -struct uart_8250_dma { - int (*tx_dma)(struct uart_8250_port *); - int (*rx_dma)(struct uart_8250_port *); - void (*prepare_tx_dma)(struct uart_8250_port *); - void (*prepare_rx_dma)(struct uart_8250_port *); - dma_filter_fn fn; - void *rx_param; - void *tx_param; - struct dma_slave_config rxconf; - struct dma_slave_config txconf; - struct dma_chan *rxchan; - struct dma_chan *txchan; - phys_addr_t rx_dma_addr; - phys_addr_t tx_dma_addr; - dma_addr_t rx_addr; - dma_addr_t tx_addr; - dma_cookie_t rx_cookie; - dma_cookie_t tx_cookie; - void *rx_buf; - size_t rx_size; - size_t tx_size; - unsigned char tx_running; - unsigned char tx_err; - unsigned char rx_running; -}; - -struct old_serial_port { - unsigned int uart; - unsigned int baud_base; - unsigned int port; - unsigned int irq; - upf_t flags; - unsigned char io_type; - unsigned char *iomem_base; - short unsigned int iomem_reg_shift; -}; - -typedef void (*serial8250_isa_config_fn)(int, struct uart_port *, u32 *); - -struct fintek_8250 { - u16 pid; - u16 base_port; - u8 index; - u8 key; -}; - -struct hsu_dma_slave { - struct device *dma_dev; - int chan_id; -}; - -struct hsu_dma; - -struct hsu_dma_chip { - struct device *dev; - int irq; - void *regs; - unsigned int length; - unsigned int offset; - struct hsu_dma *hsu; -}; - -struct mid8250; - -struct mid8250_board { - long unsigned int freq; - unsigned int base_baud; - unsigned int bar; - int (*setup)(struct mid8250 *, struct uart_port *); - void (*exit)(struct mid8250 *); -}; - -struct mid8250 { - int line; - int dma_index; - struct pci_dev *dma_dev; - struct uart_8250_dma dma; - struct mid8250_board *board; - struct hsu_dma_chip dma_chip; -}; - -struct sccnxp_pdata { - const u8 reg_shift; - const u32 mctrl_cfg[2]; - const unsigned int poll_time_us; -}; - -struct sccnxp_chip { - const char *name; - unsigned int nr; - long unsigned int freq_min; - long unsigned int freq_std; - long unsigned int freq_max; - unsigned int flags; - unsigned int fifosize; - unsigned int trwd; -}; - -struct sccnxp_port { - struct uart_driver uart; - struct uart_port port[2]; - bool opened[2]; - int irq; - u8 imr; - struct sccnxp_chip *chip; - struct console console; - spinlock_t lock; - bool poll; - struct timer_list timer; - struct sccnxp_pdata pdata; - struct regulator *regulator; -}; - -struct splice_desc { - size_t total_len; - unsigned int len; - unsigned int flags; - union { - void *userptr; - struct file *file; - void *data; - } u; - void (*splice_eof)(struct splice_desc *); - loff_t pos; - loff_t *opos; - size_t num_spliced; - bool need_wakeup; -}; - -typedef int splice_actor(struct pipe_inode_info *, struct pipe_buffer *, struct splice_desc *); - -struct memdev { - const char *name; - const struct file_operations *fops; - fmode_t fmode; - umode_t mode; -}; - -struct agp_version { - u16 major; - u16 minor; -}; - -struct agp_bridge_data; - -struct agp_memory { - struct agp_memory *next; - struct agp_memory *prev; - struct agp_bridge_data *bridge; - struct page **pages; - size_t page_count; - int key; - int num_scratch_pages; - off_t pg_start; - u32 type; - u32 physical; - bool is_bound; - bool is_flushed; - struct list_head mapped_list; - struct scatterlist *sg_list; - int num_sg; -}; - -struct agp_bridge_driver; - -struct agp_bridge_data { - const struct agp_version *version; - const struct agp_bridge_driver *driver; - const struct vm_operations_struct *vm_ops; - void *previous_size; - void *current_size; - void *dev_private_data; - struct pci_dev *dev; - u32 *gatt_table; - u32 *gatt_table_real; - long unsigned int scratch_page; - struct page *scratch_page_page; - dma_addr_t scratch_page_dma; - long unsigned int gart_bus_addr; - long unsigned int gatt_bus_addr; - u32 mode; - long unsigned int *key_list; - atomic_t current_memory_agp; - atomic_t agp_in_use; - int max_memory_agp; - int aperture_size_idx; - int capndx; - int flags; - char major_version; - char minor_version; - struct list_head list; - u32 apbase_config; - struct list_head mapped_list; - spinlock_t mapped_lock; -}; - -struct amd_l3_cache { - unsigned int indices; - u8 subcaches[4]; -}; - -struct amd_northbridge { - struct pci_dev *misc; - struct pci_dev *link; - struct amd_l3_cache l3_cache; -}; - -enum aper_size_type { - U8_APER_SIZE = 0, - U16_APER_SIZE = 1, - U32_APER_SIZE = 2, - LVL2_APER_SIZE = 3, - FIXED_APER_SIZE = 4, -}; - -struct gatt_mask { - long unsigned int mask; - u32 type; -}; - -struct aper_size_info_32 { - int size; - int num_entries; - int page_order; - u32 size_value; -}; - -struct agp_bridge_driver { - struct module *owner; - const void *aperture_sizes; - int num_aperture_sizes; - enum aper_size_type size_type; - bool cant_use_aperture; - bool needs_scratch_page; - const struct gatt_mask *masks; - int (*fetch_size)(void); - int (*configure)(void); - void (*agp_enable)(struct agp_bridge_data *, u32); - void (*cleanup)(void); - void (*tlb_flush)(struct agp_memory *); - long unsigned int (*mask_memory)(struct agp_bridge_data *, dma_addr_t, int); - void (*cache_flush)(void); - int (*create_gatt_table)(struct agp_bridge_data *); - int (*free_gatt_table)(struct agp_bridge_data *); - int (*insert_memory)(struct agp_memory *, off_t, int); - int (*remove_memory)(struct agp_memory *, off_t, int); - struct agp_memory * (*alloc_by_type)(size_t, int); - void (*free_by_type)(struct agp_memory *); - struct page * (*agp_alloc_page)(struct agp_bridge_data *); - int (*agp_alloc_pages)(struct agp_bridge_data *, struct agp_memory *, size_t); - void (*agp_destroy_page)(struct page *, int); - void (*agp_destroy_pages)(struct agp_memory *); - int (*agp_type_to_mask_type)(struct agp_bridge_data *, int); -}; - -enum chipset_type { - NOT_SUPPORTED = 0, - SUPPORTED = 1, -}; - -struct aper_size_info_8 { - int size; - int num_entries; - int page_order; - u8 size_value; -}; - -struct aper_size_info_16 { - int size; - int num_entries; - int page_order; - u16 size_value; -}; - -struct agp_device_ids { - short unsigned int device_id; - enum chipset_type chipset; - const char *chipset_name; - int (*chipset_setup)(struct pci_dev *); -}; - -struct file_priv { - struct tpm_chip *chip; - struct tpm_space *space; - struct mutex buffer_mutex; - struct timer_list user_read_timer; - struct work_struct timeout_work; - struct work_struct async_work; - wait_queue_head_t async_wait; - ssize_t response_length; - bool response_read; - bool command_enqueued; - u8 data_buffer[4096]; -}; - -struct tpmrm_priv { - struct file_priv priv; - struct tpm_space space; -}; - -enum tpm_chip_flags { - TPM_CHIP_FLAG_BOOTSTRAPPED = 1, - TPM_CHIP_FLAG_TPM2 = 2, - TPM_CHIP_FLAG_IRQ = 4, - TPM_CHIP_FLAG_VIRTUAL = 8, - TPM_CHIP_FLAG_HAVE_TIMEOUTS = 16, - TPM_CHIP_FLAG_ALWAYS_POWERED = 32, - TPM_CHIP_FLAG_FIRMWARE_POWER_MANAGED = 64, - TPM_CHIP_FLAG_FIRMWARE_UPGRADE = 128, - TPM_CHIP_FLAG_SUSPENDED = 256, - TPM_CHIP_FLAG_HWRNG_DISABLED = 512, - TPM_CHIP_FLAG_DISABLE = 1024, - TPM_CHIP_FLAG_SYNC = 2048, -}; - -enum tpm2_structures { - TPM2_ST_NO_SESSIONS = 32769, - TPM2_ST_SESSIONS = 32770, - TPM2_ST_CREATION = 32801, -}; - -struct tpm_header { - __be16 tag; - __be32 length; - union { - __be32 ordinal; - __be32 return_code; - }; -} __attribute__((packed)); - -enum tpm_buf_flags { - TPM_BUF_OVERFLOW = 1, - TPM_BUF_TPM2B = 2, - TPM_BUF_BOUNDARY_ERROR = 4, -}; - -struct tpm_buf { - u32 flags; - u32 length; - u8 *data; - u8 handles; -}; - -struct acpi_table_tpm2 { - struct acpi_table_header header; - u16 platform_class; - u16 reserved; - u64 control_address; - u32 start_method; -} __attribute__((packed)); - -struct acpi_tpm2_phy { - u8 start_method_specific[12]; - u32 log_area_minimum_length; - u64 log_area_start_address; -}; - -enum bios_platform_class { - BIOS_CLIENT = 0, - BIOS_SERVER = 1, -}; - -struct tcg_efi_specid_event_algs { - u16 alg_id; - u16 digest_size; -}; - -struct tcg_efi_specid_event_head { - u8 signature[16]; - u32 platform_class; - u8 spec_version_minor; - u8 spec_version_major; - u8 spec_errata; - u8 uintnsize; - u32 num_algs; - struct tcg_efi_specid_event_algs digest_sizes[0]; -}; - -struct tcg_pcr_event { - u32 pcr_idx; - u32 event_type; - u8 digest[20]; - u32 event_size; - u8 event[0]; -}; - -struct client_hdr { - u32 log_max_len; - u64 log_start_addr; -} __attribute__((packed)); - -struct server_hdr { - u16 reserved; - u64 log_max_len; - u64 log_start_addr; -} __attribute__((packed)); - -struct acpi_tcpa { - struct acpi_table_header hdr; - u16 platform_class; - union { - struct client_hdr client; - struct server_hdr server; - }; -}; - -typedef int (*iova_bitmap_fn_t)(struct iova_bitmap *, long unsigned int, size_t, void *); - -struct iova_bitmap_map { - long unsigned int iova; - long unsigned int length; - long unsigned int pgshift; - long unsigned int pgoff; - long unsigned int npages; - struct page **pages; -}; - -struct iova_bitmap { - struct iova_bitmap_map mapped; - u8 *bitmap; - long unsigned int mapped_base_index; - long unsigned int mapped_total_index; - long unsigned int iova; - size_t length; -}; - -enum irq_remap_cap { - IRQ_POSTING_CAP = 0, -}; - -enum { - IRQ_REMAP_XAPIC_MODE = 0, - IRQ_REMAP_X2APIC_MODE = 1, -}; - -struct irq_remap_table { - raw_spinlock_t lock; - unsigned int min_index; - u32 *table; -}; - -enum protection_domain_mode { - PD_MODE_NONE = 0, - PD_MODE_V1 = 1, - PD_MODE_V2 = 2, -}; - -struct amd_iommu_pci_seg; - -struct amd_irte_ops; - -struct amd_iommu { - struct list_head list; - int index; - raw_spinlock_t lock; - struct pci_dev *dev; - struct pci_dev *root_pdev; - u64 mmio_phys; - u64 mmio_phys_end; - u8 *mmio_base; - u32 cap; - u8 acpi_flags; - u64 features; - u64 features2; - u16 devid; - u16 cap_ptr; - struct amd_iommu_pci_seg *pci_seg; - u64 exclusion_start; - u64 exclusion_length; - u8 *cmd_buf; - u32 cmd_buf_head; - u32 cmd_buf_tail; - u8 *evt_buf; - unsigned char evt_irq_name[16]; - u8 *ppr_log; - unsigned char ppr_irq_name[16]; - u8 *ga_log; - unsigned char ga_irq_name[16]; - u8 *ga_log_tail; - bool int_enabled; - bool need_sync; - bool irtcachedis_enabled; - struct iommu_device iommu; - u32 stored_addr_lo; - u32 stored_addr_hi; - u32 stored_l1[108]; - u32 stored_l2[131]; - u8 max_banks; - u8 max_counters; - struct irq_domain *ir_domain; - struct amd_irte_ops *irte_ops; - u32 flags; - volatile u64 *cmd_sem; - atomic64_t cmd_sem_val; - u64 cmd_sem_paddr; - struct iopf_queue *iopf_queue; - unsigned char iopfq_name[32]; -}; - -struct dev_table_entry; - -struct amd_iommu_pci_seg { - struct list_head list; - struct llist_head dev_data_list; - u16 id; - u16 last_bdf; - u32 dev_table_size; - struct dev_table_entry *dev_table; - struct amd_iommu **rlookup_table; - struct irq_remap_table **irq_lookup_table; - struct dev_table_entry *old_dev_tbl_cpy; - u16 *alias_table; - struct list_head unity_map; -}; - -struct dev_table_entry { - union { - u64 data[4]; - u128 data128[2]; - }; -}; - -struct amd_irte_ops { - void (*prepare)(void *, u32, bool, u8, u32, int); - void (*activate)(struct amd_iommu *, void *, u16, u16); - void (*deactivate)(struct amd_iommu *, void *, u16, u16); - void (*set_affinity)(struct amd_iommu *, void *, u16, u16, u8, u32); - void * (*get)(struct irq_remap_table *, int); - void (*set_allocated)(struct irq_remap_table *, int); - bool (*is_allocated)(struct irq_remap_table *, int); - void (*clear_allocated)(struct irq_remap_table *, int); -}; - -struct acpihid_map_entry { - struct list_head list; - u8 uid[256]; - u8 hid[9]; - u32 devid; - u32 root_devid; - bool cmd_line; - struct iommu_group *group; -}; - -struct devid_map { - struct list_head list; - u8 id; - u32 devid; - bool cmd_line; -}; - -struct ivhd_dte_flags { - struct list_head list; - u16 segid; - u16 devid_first; - u16 devid_last; - long: 64; - struct dev_table_entry dte; -}; - -struct unity_map_entry { - struct list_head list; - u16 devid_start; - u16 devid_end; - u64 address_start; - u64 address_end; - int prot; -}; - -enum amd_iommu_intr_mode_type { - AMD_IOMMU_GUEST_IR_LEGACY = 0, - AMD_IOMMU_GUEST_IR_LEGACY_GA = 1, - AMD_IOMMU_GUEST_IR_VAPIC = 2, -}; - -struct irq_remap_ops { - int capability; - int (*prepare)(void); - int (*enable)(void); - void (*disable)(void); - int (*reenable)(int); - int (*enable_faulting)(unsigned int); -}; - -struct ivhd_header { - u8 type; - u8 flags; - u16 length; - u16 devid; - u16 cap_ptr; - u64 mmio_phys; - u16 pci_seg; - u16 info; - u32 efr_attr; - u64 efr_reg; - u64 efr_reg2; -}; - -struct ivhd_entry { - u8 type; - u16 devid; - u8 flags; - union { - struct { - u32 ext; - u32 hidh; - }; - struct { - u32 ext; - u32 hidh; - } ext_hid; - }; - u64 cid; - u8 uidf; - u8 uidl; - u8 uid; -} __attribute__((packed)); - -struct ivmd_header { - u8 type; - u8 flags; - u16 length; - u16 devid; - u16 aux; - u16 pci_seg; - u8 resv[6]; - u64 range_start; - u64 range_length; -}; - -enum iommu_init_state { - IOMMU_START_STATE = 0, - IOMMU_IVRS_DETECTED = 1, - IOMMU_ACPI_FINISHED = 2, - IOMMU_ENABLED = 3, - IOMMU_PCI_INIT = 4, - IOMMU_INTERRUPTS_EN = 5, - IOMMU_INITIALIZED = 6, - IOMMU_NOT_FOUND = 7, - IOMMU_INIT_ERROR = 8, - IOMMU_CMDLINE_DISABLED = 9, -}; - -union intcapxt { - u64 capxt; - struct { - u64 reserved_0: 2; - u64 dest_mode_logical: 1; - u64 reserved_1: 5; - u64 destid_0_23: 24; - u64 vector: 8; - u64 reserved_2: 16; - u64 destid_24_31: 8; - }; -}; - -enum io_pgtable_fmt { - ARM_32_LPAE_S1 = 0, - ARM_32_LPAE_S2 = 1, - ARM_64_LPAE_S1 = 2, - ARM_64_LPAE_S2 = 3, - ARM_V7S = 4, - ARM_MALI_LPAE = 5, - AMD_IOMMU_V1 = 6, - AMD_IOMMU_V2 = 7, - APPLE_DART = 8, - APPLE_DART2 = 9, - IO_PGTABLE_NUM_FMTS = 10, -}; - -struct iommu_flush_ops { - void (*tlb_flush_all)(void *); - void (*tlb_flush_walk)(long unsigned int, size_t, size_t, void *); - void (*tlb_add_page)(struct iommu_iotlb_gather *, long unsigned int, size_t, void *); -}; - -struct io_pgtable_cfg { - long unsigned int quirks; - long unsigned int pgsize_bitmap; - unsigned int ias; - unsigned int oas; - bool coherent_walk; - const struct iommu_flush_ops *tlb; - struct device *iommu_dev; - void * (*alloc)(void *, size_t, gfp_t); - void (*free)(void *, void *, size_t); - union { - struct { - u64 ttbr; - struct { - u32 ips: 3; - u32 tg: 2; - u32 sh: 2; - u32 orgn: 2; - u32 irgn: 2; - u32 tsz: 6; - } tcr; - u64 mair; - } arm_lpae_s1_cfg; - struct { - u64 vttbr; - struct { - u32 ps: 3; - u32 tg: 2; - u32 sh: 2; - u32 orgn: 2; - u32 irgn: 2; - u32 sl: 2; - u32 tsz: 6; - } vtcr; - } arm_lpae_s2_cfg; - struct { - u32 ttbr; - u32 tcr; - u32 nmrr; - u32 prrr; - } arm_v7s_cfg; - struct { - u64 transtab; - u64 memattr; - } arm_mali_lpae_cfg; - struct { - u64 ttbr[4]; - u32 n_ttbrs; - } apple_dart_cfg; - struct { - int nid; - } amd; - }; -}; - -struct io_pgtable_ops { - int (*map_pages)(struct io_pgtable_ops *, long unsigned int, phys_addr_t, size_t, size_t, int, gfp_t, size_t *); - size_t (*unmap_pages)(struct io_pgtable_ops *, long unsigned int, size_t, size_t, struct iommu_iotlb_gather *); - phys_addr_t (*iova_to_phys)(struct io_pgtable_ops *, long unsigned int); - int (*pgtable_walk)(struct io_pgtable_ops *, long unsigned int, void *); - int (*read_and_clear_dirty)(struct io_pgtable_ops *, long unsigned int, size_t, long unsigned int, struct iommu_dirty_bitmap *); -}; - -struct io_pgtable { - enum io_pgtable_fmt fmt; - void *cookie; - struct io_pgtable_cfg cfg; - struct io_pgtable_ops ops; -}; - -struct gcr3_tbl_info { - u64 *gcr3_tbl; - int glx; - u32 pasid_cnt; - u16 domid; -}; - -struct amd_io_pgtable { - seqcount_t seqcount; - struct io_pgtable pgtbl; - int mode; - u64 *root; - u64 *pgd; -}; - -struct iommu_dev_data; - -struct pdom_dev_data { - struct iommu_dev_data *dev_data; - ioasid_t pasid; - struct list_head list; -}; - -struct protection_domain; - -struct iommu_dev_data { - struct mutex mutex; - spinlock_t dte_lock; - struct list_head list; - struct llist_node dev_data_list; - struct protection_domain *domain; - struct gcr3_tbl_info gcr3_info; - struct device *dev; - u16 devid; - unsigned int max_irqs; - u32 max_pasids; - u32 flags; - int ats_qdep; - u8 ats_enabled: 1; - u8 pri_enabled: 1; - u8 pasid_enabled: 1; - u8 pri_tlp: 1; - u8 ppr: 1; - bool use_vapic; - bool defer_attach; - struct ratelimit_state rs; -}; - -struct protection_domain { - struct list_head dev_list; - struct iommu_domain domain; - struct amd_io_pgtable iop; - spinlock_t lock; - u16 id; - enum protection_domain_mode pd_mode; - bool dirty_tracking; - struct xarray iommu_array; - struct mmu_notifier mn; - struct list_head dev_data_list; -}; - -struct iommu_hwpt_vtd_s1 { - __u64 flags; - __u64 pgtbl_addr; - __u32 addr_width; - __u32 __reserved; -}; - -enum iommu_fault_type { - IOMMU_FAULT_PAGE_REQ = 1, -}; - -struct acpi_dmar_header { - u16 type; - u16 length; -}; - -struct dmar_dev_scope { - struct device *dev; - u8 bus; - u8 devfn; -}; - -struct intel_iommu; - -struct dmar_drhd_unit { - struct list_head list; - struct acpi_dmar_header *hdr; - u64 reg_base_addr; - long unsigned int reg_size; - struct dmar_dev_scope *devices; - int devices_cnt; - u16 segment; - u8 ignored: 1; - u8 include_all: 1; - u8 gfx_dedicated: 1; - struct intel_iommu *iommu; -}; - -struct iommu_flush { - void (*flush_context)(struct intel_iommu *, u16, u16, u8, u64); - void (*flush_iotlb)(struct intel_iommu *, u16, u64, unsigned int, u64); -}; - -struct root_entry; - -struct page_req_dsc; - -struct q_inval; - -struct ir_table; - -struct iommu_pmu; - -struct intel_iommu { - void *reg; - u64 reg_phys; - u64 reg_size; - u64 cap; - u64 ecap; - u64 vccap; - u64 ecmdcap[4]; - u32 gcmd; - raw_spinlock_t register_lock; - int seq_id; - int agaw; - int msagaw; - unsigned int irq; - unsigned int pr_irq; - unsigned int perf_irq; - u16 segment; - unsigned char name[16]; - struct mutex did_lock; - struct ida domain_ida; - long unsigned int *copied_tables; - spinlock_t lock; - struct root_entry *root_entry; - struct iommu_flush flush; - struct page_req_dsc *prq; - unsigned char prq_name[16]; - long unsigned int prq_seq_number; - struct completion prq_complete; - struct iopf_queue *iopf_queue; - unsigned char iopfq_name[16]; - struct mutex iopf_lock; - struct q_inval *qi; - u32 iommu_state[4]; - struct rb_root device_rbtree; - spinlock_t device_rbtree_lock; - struct ir_table *ir_table; - struct irq_domain *ir_domain; - struct iommu_device iommu; - int node; - u32 flags; - struct dmar_drhd_unit *drhd; - void *perf_statistic; - struct iommu_pmu *pmu; -}; - -struct irte { - union { - struct { - union { - struct { - __u64 present: 1; - __u64 fpd: 1; - __u64 __res0: 6; - __u64 avail: 4; - __u64 __res1: 3; - __u64 pst: 1; - __u64 vector: 8; - __u64 __res2: 40; - }; - struct { - __u64 r_present: 1; - __u64 r_fpd: 1; - __u64 dst_mode: 1; - __u64 redir_hint: 1; - __u64 trigger_mode: 1; - __u64 dlvry_mode: 3; - __u64 r_avail: 4; - __u64 r_res0: 4; - __u64 r_vector: 8; - __u64 r_res1: 8; - __u64 dest_id: 32; - }; - struct { - __u64 p_present: 1; - __u64 p_fpd: 1; - __u64 p_res0: 6; - __u64 p_avail: 4; - __u64 p_res1: 2; - __u64 p_urgent: 1; - __u64 p_pst: 1; - __u64 p_vector: 8; - __u64 p_res2: 14; - __u64 pda_l: 26; - }; - __u64 low; - }; - union { - struct { - __u64 sid: 16; - __u64 sq: 2; - __u64 svt: 2; - __u64 __res3: 44; - }; - struct { - __u64 p_sid: 16; - __u64 p_sq: 2; - __u64 p_svt: 2; - __u64 p_res3: 12; - __u64 pda_h: 32; - }; - __u64 high; - }; - }; - __u128 irte; - }; -}; - -enum { - QI_FREE = 0, - QI_IN_USE = 1, - QI_DONE = 2, - QI_ABORT = 3, -}; - -struct qi_desc { - u64 qw0; - u64 qw1; - u64 qw2; - u64 qw3; -}; - -struct q_inval { - raw_spinlock_t q_lock; - void *desc; - int *desc_status; - int free_head; - int free_tail; - int free_cnt; -}; - -struct ir_table { - struct irte *base; - long unsigned int *bitmap; -}; - -struct root_entry { - u64 lo; - u64 hi; -}; - -struct iommu_domain_info { - struct intel_iommu *iommu; - unsigned int refcnt; - u16 did; -}; - -struct qi_batch { - struct qi_desc descs[16]; - unsigned int index; -}; - -struct dma_pte { - u64 val; -}; - -struct dmar_domain { - int nid; - struct xarray iommu_array; - u8 iommu_coherency: 1; - u8 force_snooping: 1; - u8 set_pte_snp: 1; - u8 use_first_level: 1; - u8 dirty_tracking: 1; - u8 nested_parent: 1; - u8 has_mappings: 1; - u8 iotlb_sync_map: 1; - spinlock_t lock; - struct list_head devices; - struct list_head dev_pasids; - spinlock_t cache_lock; - struct list_head cache_tags; - struct qi_batch *qi_batch; - int iommu_superpage; - union { - struct { - struct dma_pte *pgd; - int gaw; - int agaw; - u64 max_addr; - spinlock_t s1_lock; - struct list_head s1_domains; - }; - struct { - struct dmar_domain *s2_domain; - struct iommu_hwpt_vtd_s1 s1_cfg; - struct list_head s2_link; - }; - struct { - struct mmu_notifier notifier; - }; - }; - struct iommu_domain domain; -}; - -struct iommu_pmu { - struct intel_iommu *iommu; - u32 num_cntr; - u32 num_eg; - u32 cntr_width; - u32 cntr_stride; - u32 filter; - void *base; - void *cfg_reg; - void *cntr_reg; - void *overflow; - u64 *evcap; - u32 **cntr_evcap; - struct pmu pmu; - long unsigned int used_mask[1]; - struct perf_event *event_list[64]; - unsigned char irq_name[16]; -}; - -struct page_req_dsc { - union { - struct { - u64 type: 8; - u64 pasid_present: 1; - u64 rsvd: 7; - u64 rid: 16; - u64 pasid: 20; - u64 exe_req: 1; - u64 pm_req: 1; - u64 rsvd2: 10; - }; - u64 qw_0; - }; - union { - struct { - u64 rd_req: 1; - u64 wr_req: 1; - u64 lpig: 1; - u64 prg_index: 9; - u64 addr: 52; - }; - u64 qw_1; - }; - u64 qw_2; - u64 qw_3; -}; - -struct pasid_table; - -struct device_domain_info { - struct list_head link; - u32 segment; - u8 bus; - u8 devfn; - u16 pfsid; - u8 pasid_supported: 3; - u8 pasid_enabled: 1; - u8 pri_supported: 1; - u8 pri_enabled: 1; - u8 ats_supported: 1; - u8 ats_enabled: 1; - u8 dtlb_extra_inval: 1; - u8 domain_attached: 1; - u8 ats_qdep; - unsigned int iopf_refcount; - struct device *dev; - struct intel_iommu *iommu; - struct dmar_domain *domain; - struct pasid_table *pasid_table; - struct rb_node node; -}; - -struct pasid_table { - void *table; - u32 max_pasid; -}; - -union __u128_halves { - u128 full; - struct { - u64 low; - u64 high; - }; -}; - -typedef long long unsigned int cycles_t; - -struct acpi_table_dmar { - struct acpi_table_header header; - u8 width; - u8 flags; - u8 reserved[10]; -}; - -struct acpi_dmar_device_scope { - u8 entry_type; - u8 length; - u8 flags; - u8 reserved; - u8 enumeration_id; - u8 bus; -}; - -enum acpi_dmar_scope_type { - ACPI_DMAR_SCOPE_TYPE_NOT_USED = 0, - ACPI_DMAR_SCOPE_TYPE_ENDPOINT = 1, - ACPI_DMAR_SCOPE_TYPE_BRIDGE = 2, - ACPI_DMAR_SCOPE_TYPE_IOAPIC = 3, - ACPI_DMAR_SCOPE_TYPE_HPET = 4, - ACPI_DMAR_SCOPE_TYPE_NAMESPACE = 5, - ACPI_DMAR_SCOPE_TYPE_RESERVED = 6, -}; - -struct acpi_dmar_pci_path { - u8 device; - u8 function; -}; - -struct acpi_dmar_hardware_unit { - struct acpi_dmar_header header; - u8 flags; - u8 size; - u16 segment; - u64 address; -}; - -struct dmar_pci_path { - u8 bus; - u8 device; - u8 function; -}; - -struct dmar_pci_notify_info { - struct pci_dev *dev; - long unsigned int event; - int bus; - u16 seg; - u16 level; - struct dmar_pci_path path[0]; -}; - -struct intel_iommu_pi_data { - u64 pi_desc_addr; - u32 vector; -}; - -enum { - SR_DMAR_FECTL_REG = 0, - SR_DMAR_FEDATA_REG = 1, - SR_DMAR_FEADDR_REG = 2, - SR_DMAR_FEUADDR_REG = 3, - MAX_SR_DMAR_REGS = 4, -}; - -struct ioapic_scope { - struct intel_iommu *iommu; - unsigned int id; - unsigned int bus; - unsigned int devfn; -}; - -struct hpet_scope { - struct intel_iommu *iommu; - u8 id; - unsigned int bus; - unsigned int devfn; -}; - -struct irq_2_iommu { - struct intel_iommu *iommu; - u16 irte_index; - u16 sub_handle; - u8 irte_mask; - bool posted_msi; - bool posted_vcpu; -}; - -struct intel_ir_data { - struct irq_2_iommu irq_2_iommu; - struct irte irte_entry; - union { - struct msi_msg msi_entry; - }; -}; - -struct set_msi_sid_data { - struct pci_dev *pdev; - u16 alias; - int count; - int busmatch_count; -}; - -struct trace_event_raw_iommu_group_event { - struct trace_entry ent; - int gid; - u32 __data_loc_device; - char __data[0]; -}; - -struct trace_event_raw_iommu_device_event { - struct trace_entry ent; - u32 __data_loc_device; - char __data[0]; -}; - -struct trace_event_raw_map { - struct trace_entry ent; - u64 iova; - u64 paddr; - size_t size; - char __data[0]; -}; - -struct trace_event_raw_unmap { - struct trace_entry ent; - u64 iova; - size_t size; - size_t unmapped_size; - char __data[0]; -}; - -struct trace_event_raw_iommu_error { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_driver; - u64 iova; - int flags; - char __data[0]; -}; - -struct trace_event_data_offsets_iommu_group_event { - u32 device; - const void *device_ptr_; -}; - -struct trace_event_data_offsets_iommu_device_event { - u32 device; - const void *device_ptr_; -}; - -struct trace_event_data_offsets_map {}; - -struct trace_event_data_offsets_unmap {}; - -struct trace_event_data_offsets_iommu_error { - u32 device; - const void *device_ptr_; - u32 driver; - const void *driver_ptr_; -}; - -typedef void (*btf_trace_add_device_to_group)(void *, int, struct device *); - -typedef void (*btf_trace_remove_device_from_group)(void *, int, struct device *); - -typedef void (*btf_trace_attach_device_to_domain)(void *, struct device *); - -typedef void (*btf_trace_map)(void *, long unsigned int, phys_addr_t, size_t); - -typedef void (*btf_trace_unmap)(void *, long unsigned int, size_t, size_t); - -typedef void (*btf_trace_io_page_fault)(void *, struct device *, long unsigned int, int); - -enum iommu_resv_type { - IOMMU_RESV_DIRECT = 0, - IOMMU_RESV_DIRECT_RELAXABLE = 1, - IOMMU_RESV_RESERVED = 2, - IOMMU_RESV_MSI = 3, - IOMMU_RESV_SW_MSI = 4, -}; - -struct iommu_resv_region { - struct list_head list; - phys_addr_t start; - size_t length; - int prot; - enum iommu_resv_type type; - void (*free)(struct device *, struct iommu_resv_region *); -}; - -struct virtio_driver { - struct device_driver driver; - const struct virtio_device_id *id_table; - const unsigned int *feature_table; - unsigned int feature_table_size; - const unsigned int *feature_table_legacy; - unsigned int feature_table_size_legacy; - int (*validate)(struct virtio_device *); - int (*probe)(struct virtio_device *); - void (*scan)(struct virtio_device *); - void (*remove)(struct virtio_device *); - void (*config_changed)(struct virtio_device *); - int (*freeze)(struct virtio_device *); - int (*restore)(struct virtio_device *); - int (*reset_prepare)(struct virtio_device *); - int (*reset_done)(struct virtio_device *); - void (*shutdown)(struct virtio_device *); -}; - -struct virtio_iommu_range_64 { - __le64 start; - __le64 end; -}; - -struct virtio_iommu_range_32 { - __le32 start; - __le32 end; -}; - -struct virtio_iommu_config { - __le64 page_size_mask; - struct virtio_iommu_range_64 input_range; - struct virtio_iommu_range_32 domain_range; - __le32 probe_size; - __u8 bypass; - __u8 reserved[3]; -}; - -struct virtio_iommu_req_head { - __u8 type; - __u8 reserved[3]; -}; - -struct virtio_iommu_req_tail { - __u8 status; - __u8 reserved[3]; -}; - -struct virtio_iommu_req_attach { - struct virtio_iommu_req_head head; - __le32 domain; - __le32 endpoint; - __le32 flags; - __u8 reserved[4]; - struct virtio_iommu_req_tail tail; -}; - -struct virtio_iommu_req_detach { - struct virtio_iommu_req_head head; - __le32 domain; - __le32 endpoint; - __u8 reserved[8]; - struct virtio_iommu_req_tail tail; -}; - -struct virtio_iommu_req_map { - struct virtio_iommu_req_head head; - __le32 domain; - __le64 virt_start; - __le64 virt_end; - __le64 phys_start; - __le32 flags; - struct virtio_iommu_req_tail tail; -}; - -struct virtio_iommu_req_unmap { - struct virtio_iommu_req_head head; - __le32 domain; - __le64 virt_start; - __le64 virt_end; - __u8 reserved[4]; - struct virtio_iommu_req_tail tail; -}; - -struct virtio_iommu_probe_property { - __le16 type; - __le16 length; -}; - -struct virtio_iommu_probe_resv_mem { - struct virtio_iommu_probe_property head; - __u8 subtype; - __u8 reserved[3]; - __le64 start; - __le64 end; -}; - -struct virtio_iommu_req_probe { - struct virtio_iommu_req_head head; - __le32 endpoint; - __u8 reserved[64]; - __u8 properties[0]; -}; - -struct virtio_iommu_fault { - __u8 reason; - __u8 reserved[3]; - __le32 flags; - __le32 endpoint; - __u8 reserved2[4]; - __le64 address; -}; - -struct viommu_dev { - struct iommu_device iommu; - struct device *dev; - struct virtio_device *vdev; - struct ida domain_ids; - struct virtqueue *vqs[2]; - spinlock_t request_lock; - struct list_head requests; - void *evts; - struct iommu_domain_geometry geometry; - u64 pgsize_bitmap; - u32 first_domain; - u32 last_domain; - u32 identity_domain_id; - u32 map_flags; - u32 probe_size; -}; - -struct viommu_mapping { - phys_addr_t paddr; - struct interval_tree_node iova; - u32 flags; -}; - -struct viommu_domain { - struct iommu_domain domain; - struct viommu_dev *viommu; - unsigned int id; - u32 map_flags; - spinlock_t mappings_lock; - struct rb_root_cached mappings; - long unsigned int nr_endpoints; -}; - -struct viommu_endpoint { - struct device *dev; - struct viommu_dev *viommu; - struct viommu_domain *vdomain; - struct list_head resv_regions; -}; - -struct viommu_request { - struct list_head list; - void *writeback; - unsigned int write_offset; - unsigned int len; - char buf[0]; -}; - -struct viommu_event { - union { - u32 head; - struct virtio_iommu_fault fault; - }; -}; - -struct netlink_kernel_cfg { - unsigned int groups; - unsigned int flags; - void (*input)(struct sk_buff *); - int (*bind)(struct net *, int); - void (*unbind)(struct net *, int); - void (*release)(struct sock *, long unsigned int *); -}; - -struct cb_id { - __u32 idx; - __u32 val; -}; - -struct cn_msg { - struct cb_id id; - __u32 seq; - __u32 ack; - __u16 len; - __u16 flags; - __u8 data[0]; -}; - -struct cn_queue_dev { - atomic_t refcnt; - unsigned char name[32]; - struct list_head queue_list; - spinlock_t queue_lock; - struct sock *nls; -}; - -struct cn_callback_id { - unsigned char name[32]; - struct cb_id id; -}; - -struct cn_callback_entry { - struct list_head callback_entry; - refcount_t refcnt; - struct cn_queue_dev *pdev; - struct cn_callback_id id; - void (*callback)(struct cn_msg *, struct netlink_skb_parms *); - u32 seq; - u32 group; -}; - -struct cn_dev { - struct cb_id id; - u32 seq; - u32 groups; - struct sock *nls; - struct cn_queue_dev *cbdev; -}; - -struct klist_node; - -struct klist { - spinlock_t k_lock; - struct list_head k_list; - void (*get)(struct klist_node *); - void (*put)(struct klist_node *); -}; - -struct klist_node { - void *n_klist; - struct list_head n_node; - struct kref n_ref; -}; - -struct klist_iter { - struct klist *i_klist; - struct klist_node *i_cur; -}; - -struct wake_irq { - struct device *dev; - unsigned int status; - int irq; - const char *name; -}; - -struct subsys_private { - struct kset subsys; - struct kset *devices_kset; - struct list_head interfaces; - struct mutex mutex; - struct kset *drivers_kset; - struct klist klist_devices; - struct klist klist_drivers; - struct blocking_notifier_head bus_notifier; - unsigned int drivers_autoprobe: 1; - const struct bus_type *bus; - struct device *dev_root; - struct kset glue_dirs; - const struct class *class; - struct lock_class_key lock_key; -}; - -struct driver_private { - struct kobject kobj; - struct klist klist_devices; - struct klist_node knode_bus; - struct module_kobject *mkobj; - struct device_driver *driver; -}; - -struct driver_attribute { - struct attribute attr; - ssize_t (*show)(struct device_driver *, char *); - ssize_t (*store)(struct device_driver *, const char *, size_t); -}; - -struct subsys_interface { - const char *name; - const struct bus_type *subsys; - struct list_head node; - int (*add_dev)(struct device *, struct subsys_interface *); - void (*remove_dev)(struct device *, struct subsys_interface *); -}; - -struct device_private { - struct klist klist_children; - struct klist_node knode_parent; - struct klist_node knode_driver; - struct klist_node knode_bus; - struct klist_node knode_class; - struct list_head deferred_probe; - const struct device_driver *async_driver; - char *deferred_probe_reason; - struct device *device; - u8 dead: 1; -}; - -struct subsys_dev_iter { - struct klist_iter ki; - const struct device_type *type; -}; - -struct cpu { - int node_id; - int hotpluggable; - struct device dev; -}; - -typedef u32 note_buf_t[92]; - -struct cpu_attr { - struct device_attribute attr; - const struct cpumask * const map; -}; - -struct attribute_container { - struct list_head node; - struct klist containers; - struct class *class; - const struct attribute_group *grp; - struct device_attribute **attrs; - int (*match)(struct attribute_container *, struct device *); - long unsigned int flags; -}; - -struct transport_container; - -struct transport_class { - struct class class; - int (*setup)(struct transport_container *, struct device *, struct device *); - int (*configure)(struct transport_container *, struct device *, struct device *); - int (*remove)(struct transport_container *, struct device *, struct device *); -}; - -struct transport_container { - struct attribute_container ac; - const struct attribute_group *statistics; -}; - -struct anon_transport_class { - struct transport_class tclass; - struct attribute_container container; -}; - -struct container_dev { - struct device dev; - int (*offline)(struct container_dev *); -}; - -struct swnode { - struct kobject kobj; - struct fwnode_handle fwnode; - const struct software_node *node; - int id; - struct ida child_ids; - struct list_head entry; - struct list_head children; - struct swnode *parent; - unsigned int allocated: 1; - unsigned int managed: 1; -}; - -struct req { - struct req *next; - struct completion done; - int err; - const char *name; - umode_t mode; - kuid_t uid; - kgid_t gid; - struct device *dev; -}; - -enum pm_qos_flags_status { - PM_QOS_FLAGS_UNDEFINED = -1, - PM_QOS_FLAGS_NONE = 0, - PM_QOS_FLAGS_SOME = 1, - PM_QOS_FLAGS_ALL = 2, -}; - -struct rtc_time { - int tm_sec; - int tm_min; - int tm_hour; - int tm_mday; - int tm_mon; - int tm_year; - int tm_wday; - int tm_yday; - int tm_isdst; -}; - -struct isa_driver { - int (*match)(struct device *, unsigned int); - int (*probe)(struct device *, unsigned int); - void (*remove)(struct device *, unsigned int); - void (*shutdown)(struct device *, unsigned int); - int (*suspend)(struct device *, unsigned int, pm_message_t); - int (*resume)(struct device *, unsigned int); - struct device_driver driver; - struct device *devices; -}; - -struct isa_dev { - struct device dev; - struct device *next; - unsigned int id; -}; - -enum fw_upload_err { - FW_UPLOAD_ERR_NONE = 0, - FW_UPLOAD_ERR_HW_ERROR = 1, - FW_UPLOAD_ERR_TIMEOUT = 2, - FW_UPLOAD_ERR_CANCELED = 3, - FW_UPLOAD_ERR_BUSY = 4, - FW_UPLOAD_ERR_INVALID_SIZE = 5, - FW_UPLOAD_ERR_RW_ERROR = 6, - FW_UPLOAD_ERR_WEAROUT = 7, - FW_UPLOAD_ERR_FW_INVALID = 8, - FW_UPLOAD_ERR_MAX = 9, -}; - -struct fw_upload { - void *dd_handle; - void *priv; -}; - -struct fw_upload_ops { - enum fw_upload_err (*prepare)(struct fw_upload *, const u8 *, u32); - enum fw_upload_err (*write)(struct fw_upload *, const u8 *, u32, u32, u32 *); - enum fw_upload_err (*poll_complete)(struct fw_upload *); - void (*cancel)(struct fw_upload *); - void (*cleanup)(struct fw_upload *); -}; - -enum fw_opt { - FW_OPT_UEVENT = 1, - FW_OPT_NOWAIT = 2, - FW_OPT_USERHELPER = 4, - FW_OPT_NO_WARN = 8, - FW_OPT_NOCACHE = 16, - FW_OPT_NOFALLBACK_SYSFS = 32, - FW_OPT_FALLBACK_PLATFORM = 64, - FW_OPT_PARTIAL = 128, -}; - -enum fw_status { - FW_STATUS_UNKNOWN = 0, - FW_STATUS_LOADING = 1, - FW_STATUS_DONE = 2, - FW_STATUS_ABORTED = 3, -}; - -struct fw_state { - struct completion completion; - enum fw_status status; -}; - -struct firmware_cache; - -struct fw_priv { - struct kref ref; - struct list_head list; - struct firmware_cache *fwc; - struct fw_state fw_st; - void *data; - size_t size; - size_t allocated_size; - size_t offset; - u32 opt_flags; - bool is_paged_buf; - struct page **pages; - int nr_pages; - int page_array_size; - bool need_uevent; - struct list_head pending_list; - const char *fw_name; -}; - -struct fw_sysfs { - bool nowait; - struct device dev; - struct fw_priv *fw_priv; - struct firmware *fw; - void *fw_upload_priv; -}; - -enum fw_upload_prog { - FW_UPLOAD_PROG_IDLE = 0, - FW_UPLOAD_PROG_RECEIVING = 1, - FW_UPLOAD_PROG_PREPARING = 2, - FW_UPLOAD_PROG_TRANSFERRING = 3, - FW_UPLOAD_PROG_PROGRAMMING = 4, - FW_UPLOAD_PROG_MAX = 5, -}; - -struct fw_upload_priv { - struct fw_upload *fw_upload; - struct module *module; - const char *name; - const struct fw_upload_ops *ops; - struct mutex lock; - struct work_struct work; - const u8 *data; - u32 remaining_size; - enum fw_upload_prog progress; - enum fw_upload_prog err_progress; - enum fw_upload_err err_code; -}; - -struct builtin_fw { - char *name; - void *data; - long unsigned int size; -}; - -struct xa_limit { - u32 max; - u32 min; -}; - -struct for_each_memory_block_cb_data { - walk_memory_blocks_func_t func; - void *arg; -}; - -enum regcache_type { - REGCACHE_NONE = 0, - REGCACHE_RBTREE = 1, - REGCACHE_FLAT = 2, - REGCACHE_MAPLE = 3, -}; - -struct reg_default { - unsigned int reg; - unsigned int def; -}; - -struct reg_sequence { - unsigned int reg; - unsigned int def; - unsigned int delay_us; -}; - -enum regmap_endian { - REGMAP_ENDIAN_DEFAULT = 0, - REGMAP_ENDIAN_BIG = 1, - REGMAP_ENDIAN_LITTLE = 2, - REGMAP_ENDIAN_NATIVE = 3, -}; - -struct regmap_range { - unsigned int range_min; - unsigned int range_max; -}; - -struct regmap_access_table { - const struct regmap_range *yes_ranges; - unsigned int n_yes_ranges; - const struct regmap_range *no_ranges; - unsigned int n_no_ranges; -}; - -typedef void (*regmap_lock)(void *); - -typedef void (*regmap_unlock)(void *); - -struct regmap_range_cfg; - -struct regmap_config { - const char *name; - int reg_bits; - int reg_stride; - int reg_shift; - unsigned int reg_base; - int pad_bits; - int val_bits; - bool (*writeable_reg)(struct device *, unsigned int); - bool (*readable_reg)(struct device *, unsigned int); - bool (*volatile_reg)(struct device *, unsigned int); - bool (*precious_reg)(struct device *, unsigned int); - bool (*writeable_noinc_reg)(struct device *, unsigned int); - bool (*readable_noinc_reg)(struct device *, unsigned int); - int (*reg_read)(void *, unsigned int, unsigned int *); - int (*reg_write)(void *, unsigned int, unsigned int); - int (*reg_update_bits)(void *, unsigned int, unsigned int, unsigned int); - int (*read)(void *, const void *, size_t, void *, size_t); - int (*write)(void *, const void *, size_t); - size_t max_raw_read; - size_t max_raw_write; - bool can_sleep; - bool fast_io; - bool io_port; - bool disable_locking; - regmap_lock lock; - regmap_unlock unlock; - void *lock_arg; - unsigned int max_register; - bool max_register_is_0; - const struct regmap_access_table *wr_table; - const struct regmap_access_table *rd_table; - const struct regmap_access_table *volatile_table; - const struct regmap_access_table *precious_table; - const struct regmap_access_table *wr_noinc_table; - const struct regmap_access_table *rd_noinc_table; - const struct reg_default *reg_defaults; - unsigned int num_reg_defaults; - enum regcache_type cache_type; - const void *reg_defaults_raw; - unsigned int num_reg_defaults_raw; - long unsigned int read_flag_mask; - long unsigned int write_flag_mask; - bool zero_flag_mask; - bool use_single_read; - bool use_single_write; - bool use_relaxed_mmio; - bool can_multi_write; - bool use_hwlock; - bool use_raw_spinlock; - unsigned int hwlock_id; - unsigned int hwlock_mode; - enum regmap_endian reg_format_endian; - enum regmap_endian val_format_endian; - const struct regmap_range_cfg *ranges; - unsigned int num_ranges; -}; - -struct regmap_range_cfg { - const char *name; - unsigned int range_min; - unsigned int range_max; - unsigned int selector_reg; - unsigned int selector_mask; - int selector_shift; - unsigned int window_start; - unsigned int window_len; -}; - -typedef int (*regmap_hw_write)(void *, const void *, size_t); - -typedef int (*regmap_hw_gather_write)(void *, const void *, size_t, const void *, size_t); - -struct regmap_async; - -typedef int (*regmap_hw_async_write)(void *, const void *, size_t, const void *, size_t, struct regmap_async *); - -struct regmap_async { - struct list_head list; - struct regmap *map; - void *work_buf; -}; - -typedef int (*regmap_hw_read)(void *, const void *, size_t, void *, size_t); - -typedef int (*regmap_hw_reg_read)(void *, unsigned int, unsigned int *); - -typedef int (*regmap_hw_reg_noinc_read)(void *, unsigned int, void *, size_t); - -typedef int (*regmap_hw_reg_write)(void *, unsigned int, unsigned int); - -typedef int (*regmap_hw_reg_noinc_write)(void *, unsigned int, const void *, size_t); - -typedef int (*regmap_hw_reg_update_bits)(void *, unsigned int, unsigned int, unsigned int); - -typedef struct regmap_async * (*regmap_hw_async_alloc)(void); - -typedef void (*regmap_hw_free_context)(void *); - -struct regmap_bus { - bool fast_io; - bool free_on_exit; - regmap_hw_write write; - regmap_hw_gather_write gather_write; - regmap_hw_async_write async_write; - regmap_hw_reg_write reg_write; - regmap_hw_reg_noinc_write reg_noinc_write; - regmap_hw_reg_update_bits reg_update_bits; - regmap_hw_read read; - regmap_hw_reg_read reg_read; - regmap_hw_reg_noinc_read reg_noinc_read; - regmap_hw_free_context free_context; - regmap_hw_async_alloc async_alloc; - u8 read_flag_mask; - enum regmap_endian reg_format_endian_default; - enum regmap_endian val_format_endian_default; - size_t max_raw_read; - size_t max_raw_write; -}; - -struct reg_field { - unsigned int reg; - unsigned int lsb; - unsigned int msb; - unsigned int id_size; - unsigned int id_offset; -}; - -struct regmap_format { - size_t buf_size; - size_t reg_bytes; - size_t pad_bytes; - size_t val_bytes; - s8 reg_shift; - void (*format_write)(struct regmap *, unsigned int, unsigned int); - void (*format_reg)(void *, unsigned int, unsigned int); - void (*format_val)(void *, unsigned int, unsigned int); - unsigned int (*parse_val)(const void *); - void (*parse_inplace)(void *); -}; - -struct regcache_ops; - -struct hwspinlock; - -struct regmap { - union { - struct mutex mutex; - struct { - spinlock_t spinlock; - long unsigned int spinlock_flags; - }; - struct { - raw_spinlock_t raw_spinlock; - long unsigned int raw_spinlock_flags; - }; - }; - struct lock_class_key *lock_key; - regmap_lock lock; - regmap_unlock unlock; - void *lock_arg; - gfp_t alloc_flags; - unsigned int reg_base; - struct device *dev; - void *work_buf; - struct regmap_format format; - const struct regmap_bus *bus; - void *bus_context; - const char *name; - spinlock_t async_lock; - wait_queue_head_t async_waitq; - struct list_head async_list; - struct list_head async_free; - int async_ret; - bool async; - bool debugfs_disable; - struct dentry *debugfs; - const char *debugfs_name; - unsigned int debugfs_reg_len; - unsigned int debugfs_val_len; - unsigned int debugfs_tot_len; - struct list_head debugfs_off_cache; - struct mutex cache_lock; - unsigned int max_register; - bool max_register_is_set; - bool (*writeable_reg)(struct device *, unsigned int); - bool (*readable_reg)(struct device *, unsigned int); - bool (*volatile_reg)(struct device *, unsigned int); - bool (*precious_reg)(struct device *, unsigned int); - bool (*writeable_noinc_reg)(struct device *, unsigned int); - bool (*readable_noinc_reg)(struct device *, unsigned int); - const struct regmap_access_table *wr_table; - const struct regmap_access_table *rd_table; - const struct regmap_access_table *volatile_table; - const struct regmap_access_table *precious_table; - const struct regmap_access_table *wr_noinc_table; - const struct regmap_access_table *rd_noinc_table; - int (*reg_read)(void *, unsigned int, unsigned int *); - int (*reg_write)(void *, unsigned int, unsigned int); - int (*reg_update_bits)(void *, unsigned int, unsigned int, unsigned int); - int (*read)(void *, const void *, size_t, void *, size_t); - int (*write)(void *, const void *, size_t); - long unsigned int read_flag_mask; - long unsigned int write_flag_mask; - int reg_shift; - int reg_stride; - int reg_stride_order; - bool defer_caching; - bool force_write_field; - const struct regcache_ops *cache_ops; - enum regcache_type cache_type; - unsigned int cache_size_raw; - unsigned int cache_word_size; - unsigned int num_reg_defaults; - unsigned int num_reg_defaults_raw; - bool cache_only; - bool cache_bypass; - bool cache_free; - struct reg_default *reg_defaults; - const void *reg_defaults_raw; - void *cache; - bool cache_dirty; - bool no_sync_defaults; - struct reg_sequence *patch; - int patch_regs; - bool can_sleep; - bool use_single_read; - bool use_single_write; - bool can_multi_write; - size_t max_raw_read; - size_t max_raw_write; - struct rb_root range_tree; - void *selector_work_buf; - struct hwspinlock *hwlock; -}; - -struct regcache_ops { - const char *name; - enum regcache_type type; - int (*init)(struct regmap *); - int (*exit)(struct regmap *); - void (*debugfs_init)(struct regmap *); - int (*read)(struct regmap *, unsigned int, unsigned int *); - int (*write)(struct regmap *, unsigned int, unsigned int); - int (*sync)(struct regmap *, unsigned int, unsigned int); - int (*drop)(struct regmap *, unsigned int, unsigned int); -}; - -struct regmap_range_node { - struct rb_node node; - const char *name; - struct regmap *map; - unsigned int range_min; - unsigned int range_max; - unsigned int selector_reg; - unsigned int selector_mask; - int selector_shift; - unsigned int window_start; - unsigned int window_len; -}; - -struct regmap_field { - struct regmap *regmap; - unsigned int mask; - unsigned int shift; - unsigned int reg; - unsigned int id_size; - unsigned int id_offset; -}; - -struct trace_event_raw_regmap_reg { - struct trace_entry ent; - u32 __data_loc_name; - unsigned int reg; - unsigned int val; - char __data[0]; -}; - -struct trace_event_raw_regmap_bulk { - struct trace_entry ent; - u32 __data_loc_name; - unsigned int reg; - u32 __data_loc_buf; - int val_len; - char __data[0]; -}; - -struct trace_event_raw_regmap_block { - struct trace_entry ent; - u32 __data_loc_name; - unsigned int reg; - int count; - char __data[0]; -}; - -struct trace_event_raw_regcache_sync { - struct trace_entry ent; - u32 __data_loc_name; - u32 __data_loc_status; - u32 __data_loc_type; - char __data[0]; -}; - -struct trace_event_raw_regmap_bool { - struct trace_entry ent; - u32 __data_loc_name; - int flag; - char __data[0]; -}; - -struct trace_event_raw_regmap_async { - struct trace_entry ent; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_regcache_drop_region { - struct trace_entry ent; - u32 __data_loc_name; - unsigned int from; - unsigned int to; - char __data[0]; -}; - -struct trace_event_data_offsets_regmap_reg { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_regmap_bulk { - u32 name; - const void *name_ptr_; - u32 buf; - const void *buf_ptr_; -}; - -struct trace_event_data_offsets_regmap_block { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_regcache_sync { - u32 name; - const void *name_ptr_; - u32 status; - const void *status_ptr_; - u32 type; - const void *type_ptr_; -}; - -struct trace_event_data_offsets_regmap_bool { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_regmap_async { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_regcache_drop_region { - u32 name; - const void *name_ptr_; -}; - -typedef void (*btf_trace_regmap_reg_write)(void *, struct regmap *, unsigned int, unsigned int); - -typedef void (*btf_trace_regmap_reg_read)(void *, struct regmap *, unsigned int, unsigned int); - -typedef void (*btf_trace_regmap_reg_read_cache)(void *, struct regmap *, unsigned int, unsigned int); - -typedef void (*btf_trace_regmap_bulk_write)(void *, struct regmap *, unsigned int, const void *, int); - -typedef void (*btf_trace_regmap_bulk_read)(void *, struct regmap *, unsigned int, const void *, int); - -typedef void (*btf_trace_regmap_hw_read_start)(void *, struct regmap *, unsigned int, int); - -typedef void (*btf_trace_regmap_hw_read_done)(void *, struct regmap *, unsigned int, int); - -typedef void (*btf_trace_regmap_hw_write_start)(void *, struct regmap *, unsigned int, int); - -typedef void (*btf_trace_regmap_hw_write_done)(void *, struct regmap *, unsigned int, int); - -typedef void (*btf_trace_regcache_sync)(void *, struct regmap *, const char *, const char *); - -typedef void (*btf_trace_regmap_cache_only)(void *, struct regmap *, bool); - -typedef void (*btf_trace_regmap_cache_bypass)(void *, struct regmap *, bool); - -typedef void (*btf_trace_regmap_async_write_start)(void *, struct regmap *, unsigned int, int); - -typedef void (*btf_trace_regmap_async_io_complete)(void *, struct regmap *); - -typedef void (*btf_trace_regmap_async_complete_start)(void *, struct regmap *); - -typedef void (*btf_trace_regmap_async_complete_done)(void *, struct regmap *); - -typedef void (*btf_trace_regcache_drop_region)(void *, struct regmap *, unsigned int, unsigned int); - -struct regmap_irq_type { - unsigned int type_reg_offset; - unsigned int type_reg_mask; - unsigned int type_rising_val; - unsigned int type_falling_val; - unsigned int type_level_low_val; - unsigned int type_level_high_val; - unsigned int types_supported; -}; - -struct regmap_irq { - unsigned int reg_offset; - unsigned int mask; - struct regmap_irq_type type; -}; - -struct regmap_irq_sub_irq_map { - unsigned int num_regs; - unsigned int *offset; -}; - -struct regmap_irq_chip_data; - -struct regmap_irq_chip { - const char *name; - const char *domain_suffix; - unsigned int main_status; - unsigned int num_main_status_bits; - const struct regmap_irq_sub_irq_map *sub_reg_offsets; - int num_main_regs; - unsigned int status_base; - unsigned int mask_base; - unsigned int unmask_base; - unsigned int ack_base; - unsigned int wake_base; - const unsigned int *config_base; - unsigned int irq_reg_stride; - unsigned int init_ack_masked: 1; - unsigned int mask_unmask_non_inverted: 1; - unsigned int use_ack: 1; - unsigned int ack_invert: 1; - unsigned int clear_ack: 1; - unsigned int status_invert: 1; - unsigned int status_is_level: 1; - unsigned int wake_invert: 1; - unsigned int type_in_mask: 1; - unsigned int clear_on_unmask: 1; - unsigned int runtime_pm: 1; - unsigned int no_status: 1; - int num_regs; - const struct regmap_irq *irqs; - int num_irqs; - int num_config_bases; - int num_config_regs; - int (*handle_pre_irq)(void *); - int (*handle_post_irq)(void *); - int (*handle_mask_sync)(int, unsigned int, unsigned int, void *); - int (*set_type_config)(unsigned int **, unsigned int, const struct regmap_irq *, int, void *); - unsigned int (*get_irq_reg)(struct regmap_irq_chip_data *, unsigned int, int); - void *irq_drv_data; -}; - -struct regmap_irq_chip_data { - struct mutex lock; - struct lock_class_key lock_key; - struct irq_chip irq_chip; - struct regmap *map; - const struct regmap_irq_chip *chip; - int irq_base; - struct irq_domain *domain; - int irq; - int wake_count; - void *status_reg_buf; - unsigned int *main_status_buf; - unsigned int *status_buf; - unsigned int *prev_status_buf; - unsigned int *mask_buf; - unsigned int *mask_buf_def; - unsigned int *wake_buf; - unsigned int *type_buf; - unsigned int *type_buf_def; - unsigned int **config_buf; - unsigned int irq_reg_stride; - unsigned int (*get_irq_reg)(struct regmap_irq_chip_data *, unsigned int, int); - unsigned int clear_status: 1; -}; - -struct sram_config { - int (*init)(void); - bool map_only_reserved; -}; - -struct sram_partition { - void *base; - struct gen_pool *pool; - struct bin_attribute battr; - struct mutex lock; - struct list_head list; -}; - -struct sram_dev { - const struct sram_config *config; - struct device *dev; - void *virt_base; - bool no_memory_wc; - struct gen_pool *pool; - struct sram_partition *partition; - u32 partitions; -}; - -struct sram_reserve { - struct list_head list; - u32 start; - u32 size; - struct resource res; - bool export; - bool pool; - bool protect_exec; - const char *label; -}; - -struct i2c_device_id { - char name[20]; - kernel_ulong_t driver_data; -}; - -struct rt_mutex { - struct rt_mutex_base rtmutex; -}; - -struct i2c_msg { - __u16 addr; - __u16 flags; - __u16 len; - __u8 *buf; -}; - -union i2c_smbus_data { - __u8 byte; - __u16 word; - __u8 block[34]; -}; - -enum i2c_slave_event { - I2C_SLAVE_READ_REQUESTED = 0, - I2C_SLAVE_WRITE_REQUESTED = 1, - I2C_SLAVE_READ_PROCESSED = 2, - I2C_SLAVE_WRITE_RECEIVED = 3, - I2C_SLAVE_STOP = 4, -}; - -struct i2c_client; - -typedef int (*i2c_slave_cb_t)(struct i2c_client *, enum i2c_slave_event, u8 *); - -struct i2c_adapter; - -struct i2c_client { - short unsigned int flags; - short unsigned int addr; - char name[20]; - struct i2c_adapter *adapter; - struct device dev; - int init_irq; - int irq; - struct list_head detected; - i2c_slave_cb_t slave_cb; - void *devres_group_id; - struct dentry *debugfs; -}; - -enum i2c_alert_protocol { - I2C_PROTOCOL_SMBUS_ALERT = 0, - I2C_PROTOCOL_SMBUS_HOST_NOTIFY = 1, -}; - -struct i2c_board_info; - -struct i2c_driver { - unsigned int class; - int (*probe)(struct i2c_client *); - void (*remove)(struct i2c_client *); - void (*shutdown)(struct i2c_client *); - void (*alert)(struct i2c_client *, enum i2c_alert_protocol, unsigned int); - int (*command)(struct i2c_client *, unsigned int, void *); - struct device_driver driver; - const struct i2c_device_id *id_table; - int (*detect)(struct i2c_client *, struct i2c_board_info *); - const short unsigned int *address_list; - struct list_head clients; - u32 flags; -}; - -struct i2c_board_info { - char type[20]; - short unsigned int flags; - short unsigned int addr; - const char *dev_name; - void *platform_data; - struct fwnode_handle *fwnode; - const struct software_node *swnode; - const struct resource *resources; - unsigned int num_resources; - int irq; -}; - -struct i2c_algorithm; - -struct i2c_lock_operations; - -struct i2c_bus_recovery_info; - -struct i2c_adapter_quirks; - -struct i2c_adapter { - struct module *owner; - unsigned int class; - const struct i2c_algorithm *algo; - void *algo_data; - const struct i2c_lock_operations *lock_ops; - struct rt_mutex bus_lock; - struct rt_mutex mux_lock; - int timeout; - int retries; - struct device dev; - long unsigned int locked_flags; - int nr; - char name[48]; - struct completion dev_released; - struct mutex userspace_clients_lock; - struct list_head userspace_clients; - struct i2c_bus_recovery_info *bus_recovery_info; - const struct i2c_adapter_quirks *quirks; - struct irq_domain *host_notify_domain; - struct regulator *bus_regulator; - struct dentry *debugfs; - long unsigned int addrs_in_instantiation[2]; -}; - -struct i2c_algorithm { - union { - int (*xfer)(struct i2c_adapter *, struct i2c_msg *, int); - int (*master_xfer)(struct i2c_adapter *, struct i2c_msg *, int); - }; - union { - int (*xfer_atomic)(struct i2c_adapter *, struct i2c_msg *, int); - int (*master_xfer_atomic)(struct i2c_adapter *, struct i2c_msg *, int); - }; - int (*smbus_xfer)(struct i2c_adapter *, u16, short unsigned int, char, u8, int, union i2c_smbus_data *); - int (*smbus_xfer_atomic)(struct i2c_adapter *, u16, short unsigned int, char, u8, int, union i2c_smbus_data *); - u32 (*functionality)(struct i2c_adapter *); - union { - int (*reg_target)(struct i2c_client *); - int (*reg_slave)(struct i2c_client *); - }; - union { - int (*unreg_target)(struct i2c_client *); - int (*unreg_slave)(struct i2c_client *); - }; -}; - -struct i2c_lock_operations { - void (*lock_bus)(struct i2c_adapter *, unsigned int); - int (*trylock_bus)(struct i2c_adapter *, unsigned int); - void (*unlock_bus)(struct i2c_adapter *, unsigned int); -}; - -struct i2c_bus_recovery_info { - int (*recover_bus)(struct i2c_adapter *); - int (*get_scl)(struct i2c_adapter *); - void (*set_scl)(struct i2c_adapter *, int); - int (*get_sda)(struct i2c_adapter *); - void (*set_sda)(struct i2c_adapter *, int); - int (*get_bus_free)(struct i2c_adapter *); - void (*prepare_recovery)(struct i2c_adapter *); - void (*unprepare_recovery)(struct i2c_adapter *); - struct gpio_desc *scl_gpiod; - struct gpio_desc *sda_gpiod; - struct pinctrl *pinctrl; - struct pinctrl_state *pins_default; - struct pinctrl_state *pins_gpio; -}; - -struct i2c_adapter_quirks { - u64 flags; - int max_num_msgs; - u16 max_write_len; - u16 max_read_len; - u16 max_comb_1st_msg_len; - u16 max_comb_2nd_msg_len; -}; - -struct mfd_cell_acpi_match; - -struct mfd_cell { - const char *name; - int id; - int level; - int (*suspend)(struct platform_device *); - int (*resume)(struct platform_device *); - const void *platform_data; - size_t pdata_size; - const struct mfd_cell_acpi_match *acpi_match; - const struct software_node *swnode; - const char *of_compatible; - u64 of_reg; - bool use_of_reg; - int num_resources; - const struct resource *resources; - bool ignore_resource_conflicts; - bool pm_runtime_no_callbacks; - int num_parent_supplies; - const char * const *parent_supplies; -}; - -struct mfd_cell_acpi_match { - const char *pnpid; - const long long unsigned int adr; -}; - -enum { - CHIP_INVALID = 0, - CHIP_PM8606 = 1, - CHIP_PM8607 = 2, - CHIP_MAX = 3, -}; - -enum pm8606_ref_gp_and_osc_clients { - REF_GP_NO_CLIENTS = 0, - WLED1_DUTY = 1, - WLED2_DUTY = 2, - WLED3_DUTY = 4, - RGB1_ENABLE = 8, - RGB2_ENABLE = 16, - LDO_VBR_EN = 32, - REF_GP_MAX_CLIENT = 65535, -}; - -enum { - PM8607_IRQ_ONKEY = 0, - PM8607_IRQ_EXTON = 1, - PM8607_IRQ_CHG = 2, - PM8607_IRQ_BAT = 3, - PM8607_IRQ_RTC = 4, - PM8607_IRQ_CC = 5, - PM8607_IRQ_VBAT = 6, - PM8607_IRQ_VCHG = 7, - PM8607_IRQ_VSYS = 8, - PM8607_IRQ_TINT = 9, - PM8607_IRQ_GPADC0 = 10, - PM8607_IRQ_GPADC1 = 11, - PM8607_IRQ_GPADC2 = 12, - PM8607_IRQ_GPADC3 = 13, - PM8607_IRQ_AUDIO_SHORT = 14, - PM8607_IRQ_PEN = 15, - PM8607_IRQ_HEADSET = 16, - PM8607_IRQ_HOOK = 17, - PM8607_IRQ_MICIN = 18, - PM8607_IRQ_CHG_FAIL = 19, - PM8607_IRQ_CHG_DONE = 20, - PM8607_IRQ_CHG_FAULT = 21, -}; - -struct pm860x_chip { - struct device *dev; - struct mutex irq_lock; - struct mutex osc_lock; - struct i2c_client *client; - struct i2c_client *companion; - struct regmap *regmap; - struct regmap *regmap_companion; - int buck3_double; - int companion_addr; - short unsigned int osc_vote; - int id; - int irq_mode; - int irq_base; - int core_irq; - unsigned char chip_version; - unsigned char osc_status; - unsigned int wakeup_flag; -}; - -enum { - GI2C_PORT = 0, - PI2C_PORT = 1, -}; - -struct pm860x_backlight_pdata { - int pwm; - int iset; -}; - -struct pm860x_led_pdata { - int iset; -}; - -struct pm860x_rtc_pdata { - int (*sync)(unsigned int); - int vrtc; -}; - -struct pm860x_touch_pdata { - int gpadc_prebias; - int slot_cycle; - int off_scale; - int sw_cal; - int tsi_prebias; - int pen_prebias; - int pen_prechg; - int res_x; - long unsigned int flags; -}; - -struct pm860x_power_pdata { - int max_capacity; - int resistor; -}; - -struct charger_desc; - -struct pm860x_platform_data { - struct pm860x_backlight_pdata *backlight; - struct pm860x_led_pdata *led; - struct pm860x_rtc_pdata *rtc; - struct pm860x_touch_pdata *touch; - struct pm860x_power_pdata *power; - struct regulator_init_data *buck1; - struct regulator_init_data *buck2; - struct regulator_init_data *buck3; - struct regulator_init_data *ldo1; - struct regulator_init_data *ldo2; - struct regulator_init_data *ldo3; - struct regulator_init_data *ldo4; - struct regulator_init_data *ldo5; - struct regulator_init_data *ldo6; - struct regulator_init_data *ldo7; - struct regulator_init_data *ldo8; - struct regulator_init_data *ldo9; - struct regulator_init_data *ldo10; - struct regulator_init_data *ldo12; - struct regulator_init_data *ldo_vibrator; - struct regulator_init_data *ldo14; - struct charger_desc *chg_desc; - int companion_addr; - int i2c_port; - int irq_mode; - int irq_base; - int num_leds; - int num_backlights; -}; - -enum polling_modes { - CM_POLL_DISABLE = 0, - CM_POLL_ALWAYS = 1, - CM_POLL_EXTERNAL_POWER_ONLY = 2, - CM_POLL_CHARGING_ONLY = 3, -}; - -enum data_source { - CM_BATTERY_PRESENT = 0, - CM_NO_BATTERY = 1, - CM_FUEL_GAUGE = 2, - CM_CHARGER_STAT = 3, -}; - -struct charger_regulator; - -struct charger_desc { - const char *psy_name; - enum polling_modes polling_mode; - unsigned int polling_interval_ms; - unsigned int fullbatt_vchkdrop_uV; - unsigned int fullbatt_uV; - unsigned int fullbatt_soc; - unsigned int fullbatt_full_capacity; - enum data_source battery_present; - const char **psy_charger_stat; - int num_charger_regulators; - struct charger_regulator *charger_regulators; - const struct attribute_group **sysfs_groups; - const char *psy_fuel_gauge; - const char *thermal_zone; - int temp_min; - int temp_max; - int temp_diff; - bool measure_battery_temp; - u32 charging_max_duration_ms; - u32 discharging_max_duration_ms; -}; - -enum power_supply_property { - POWER_SUPPLY_PROP_STATUS = 0, - POWER_SUPPLY_PROP_CHARGE_TYPE = 1, - POWER_SUPPLY_PROP_CHARGE_TYPES = 2, - POWER_SUPPLY_PROP_HEALTH = 3, - POWER_SUPPLY_PROP_PRESENT = 4, - POWER_SUPPLY_PROP_ONLINE = 5, - POWER_SUPPLY_PROP_AUTHENTIC = 6, - POWER_SUPPLY_PROP_TECHNOLOGY = 7, - POWER_SUPPLY_PROP_CYCLE_COUNT = 8, - POWER_SUPPLY_PROP_VOLTAGE_MAX = 9, - POWER_SUPPLY_PROP_VOLTAGE_MIN = 10, - POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN = 11, - POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN = 12, - POWER_SUPPLY_PROP_VOLTAGE_NOW = 13, - POWER_SUPPLY_PROP_VOLTAGE_AVG = 14, - POWER_SUPPLY_PROP_VOLTAGE_OCV = 15, - POWER_SUPPLY_PROP_VOLTAGE_BOOT = 16, - POWER_SUPPLY_PROP_CURRENT_MAX = 17, - POWER_SUPPLY_PROP_CURRENT_NOW = 18, - POWER_SUPPLY_PROP_CURRENT_AVG = 19, - POWER_SUPPLY_PROP_CURRENT_BOOT = 20, - POWER_SUPPLY_PROP_POWER_NOW = 21, - POWER_SUPPLY_PROP_POWER_AVG = 22, - POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN = 23, - POWER_SUPPLY_PROP_CHARGE_EMPTY_DESIGN = 24, - POWER_SUPPLY_PROP_CHARGE_FULL = 25, - POWER_SUPPLY_PROP_CHARGE_EMPTY = 26, - POWER_SUPPLY_PROP_CHARGE_NOW = 27, - POWER_SUPPLY_PROP_CHARGE_AVG = 28, - POWER_SUPPLY_PROP_CHARGE_COUNTER = 29, - POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT = 30, - POWER_SUPPLY_PROP_CONSTANT_CHARGE_CURRENT_MAX = 31, - POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE = 32, - POWER_SUPPLY_PROP_CONSTANT_CHARGE_VOLTAGE_MAX = 33, - POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT = 34, - POWER_SUPPLY_PROP_CHARGE_CONTROL_LIMIT_MAX = 35, - POWER_SUPPLY_PROP_CHARGE_CONTROL_START_THRESHOLD = 36, - POWER_SUPPLY_PROP_CHARGE_CONTROL_END_THRESHOLD = 37, - POWER_SUPPLY_PROP_CHARGE_BEHAVIOUR = 38, - POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT = 39, - POWER_SUPPLY_PROP_INPUT_VOLTAGE_LIMIT = 40, - POWER_SUPPLY_PROP_INPUT_POWER_LIMIT = 41, - POWER_SUPPLY_PROP_ENERGY_FULL_DESIGN = 42, - POWER_SUPPLY_PROP_ENERGY_EMPTY_DESIGN = 43, - POWER_SUPPLY_PROP_ENERGY_FULL = 44, - POWER_SUPPLY_PROP_ENERGY_EMPTY = 45, - POWER_SUPPLY_PROP_ENERGY_NOW = 46, - POWER_SUPPLY_PROP_ENERGY_AVG = 47, - POWER_SUPPLY_PROP_CAPACITY = 48, - POWER_SUPPLY_PROP_CAPACITY_ALERT_MIN = 49, - POWER_SUPPLY_PROP_CAPACITY_ALERT_MAX = 50, - POWER_SUPPLY_PROP_CAPACITY_ERROR_MARGIN = 51, - POWER_SUPPLY_PROP_CAPACITY_LEVEL = 52, - POWER_SUPPLY_PROP_TEMP = 53, - POWER_SUPPLY_PROP_TEMP_MAX = 54, - POWER_SUPPLY_PROP_TEMP_MIN = 55, - POWER_SUPPLY_PROP_TEMP_ALERT_MIN = 56, - POWER_SUPPLY_PROP_TEMP_ALERT_MAX = 57, - POWER_SUPPLY_PROP_TEMP_AMBIENT = 58, - POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MIN = 59, - POWER_SUPPLY_PROP_TEMP_AMBIENT_ALERT_MAX = 60, - POWER_SUPPLY_PROP_TIME_TO_EMPTY_NOW = 61, - POWER_SUPPLY_PROP_TIME_TO_EMPTY_AVG = 62, - POWER_SUPPLY_PROP_TIME_TO_FULL_NOW = 63, - POWER_SUPPLY_PROP_TIME_TO_FULL_AVG = 64, - POWER_SUPPLY_PROP_TYPE = 65, - POWER_SUPPLY_PROP_USB_TYPE = 66, - POWER_SUPPLY_PROP_SCOPE = 67, - POWER_SUPPLY_PROP_PRECHARGE_CURRENT = 68, - POWER_SUPPLY_PROP_CHARGE_TERM_CURRENT = 69, - POWER_SUPPLY_PROP_CALIBRATE = 70, - POWER_SUPPLY_PROP_MANUFACTURE_YEAR = 71, - POWER_SUPPLY_PROP_MANUFACTURE_MONTH = 72, - POWER_SUPPLY_PROP_MANUFACTURE_DAY = 73, - POWER_SUPPLY_PROP_MODEL_NAME = 74, - POWER_SUPPLY_PROP_MANUFACTURER = 75, - POWER_SUPPLY_PROP_SERIAL_NUMBER = 76, -}; - -enum power_supply_type { - POWER_SUPPLY_TYPE_UNKNOWN = 0, - POWER_SUPPLY_TYPE_BATTERY = 1, - POWER_SUPPLY_TYPE_UPS = 2, - POWER_SUPPLY_TYPE_MAINS = 3, - POWER_SUPPLY_TYPE_USB = 4, - POWER_SUPPLY_TYPE_USB_DCP = 5, - POWER_SUPPLY_TYPE_USB_CDP = 6, - POWER_SUPPLY_TYPE_USB_ACA = 7, - POWER_SUPPLY_TYPE_USB_TYPE_C = 8, - POWER_SUPPLY_TYPE_USB_PD = 9, - POWER_SUPPLY_TYPE_USB_PD_DRP = 10, - POWER_SUPPLY_TYPE_APPLE_BRICK_ID = 11, - POWER_SUPPLY_TYPE_WIRELESS = 12, -}; - -union power_supply_propval { - int intval; - const char *strval; -}; - -struct power_supply; - -struct power_supply_desc { - const char *name; - enum power_supply_type type; - u8 charge_behaviours; - u32 charge_types; - u32 usb_types; - const enum power_supply_property *properties; - size_t num_properties; - int (*get_property)(struct power_supply *, enum power_supply_property, union power_supply_propval *); - int (*set_property)(struct power_supply *, enum power_supply_property, const union power_supply_propval *); - int (*property_is_writeable)(struct power_supply *, enum power_supply_property); - void (*external_power_changed)(struct power_supply *); - bool no_thermal; - int use_for_apm; -}; - -struct power_supply_battery_info; - -struct thermal_zone_device; - -struct power_supply { - const struct power_supply_desc *desc; - char **supplied_to; - size_t num_supplicants; - char **supplied_from; - size_t num_supplies; - void *drv_data; - struct device dev; - struct work_struct changed_work; - struct delayed_work deferred_register_work; - spinlock_t changed_lock; - bool changed; - bool update_groups; - bool initialized; - bool removing; - atomic_t use_cnt; - struct power_supply_battery_info *battery_info; - struct rw_semaphore extensions_sem; - struct list_head extensions; - struct thermal_zone_device *tzd; - struct thermal_cooling_device *tcd; - struct led_trigger *trig; - struct led_trigger *charging_trig; - struct led_trigger *full_trig; - struct led_trigger *charging_blink_full_solid_trig; - struct led_trigger *charging_orange_full_green_trig; -}; - -struct power_supply_maintenance_charge_table; - -struct power_supply_battery_ocv_table; - -struct power_supply_resistance_temp_table; - -struct power_supply_vbat_ri_table; - -struct power_supply_battery_info { - unsigned int technology; - int energy_full_design_uwh; - int charge_full_design_uah; - int voltage_min_design_uv; - int voltage_max_design_uv; - int tricklecharge_current_ua; - int precharge_current_ua; - int precharge_voltage_max_uv; - int charge_term_current_ua; - int charge_restart_voltage_uv; - int overvoltage_limit_uv; - int constant_charge_current_max_ua; - int constant_charge_voltage_max_uv; - const struct power_supply_maintenance_charge_table *maintenance_charge; - int maintenance_charge_size; - int alert_low_temp_charge_current_ua; - int alert_low_temp_charge_voltage_uv; - int alert_high_temp_charge_current_ua; - int alert_high_temp_charge_voltage_uv; - int factory_internal_resistance_uohm; - int factory_internal_resistance_charging_uohm; - int ocv_temp[20]; - int temp_ambient_alert_min; - int temp_ambient_alert_max; - int temp_alert_min; - int temp_alert_max; - int temp_min; - int temp_max; - const struct power_supply_battery_ocv_table *ocv_table[20]; - int ocv_table_size[20]; - const struct power_supply_resistance_temp_table *resist_table; - int resist_table_size; - const struct power_supply_vbat_ri_table *vbat2ri_discharging; - int vbat2ri_discharging_size; - const struct power_supply_vbat_ri_table *vbat2ri_charging; - int vbat2ri_charging_size; - int bti_resistance_ohm; - int bti_resistance_tolerance; -}; - -struct power_supply_battery_ocv_table { - int ocv; - int capacity; -}; - -struct power_supply_resistance_temp_table { - int temp; - int resistance; -}; - -struct power_supply_vbat_ri_table { - int vbat_uv; - int ri_uohm; -}; - -struct power_supply_maintenance_charge_table { - int charge_current_max_ua; - int charge_voltage_max_uv; - int charge_safety_timer_minutes; -}; - -struct extcon_dev; - -struct charger_manager; - -struct charger_cable { - const char *extcon_name; - const char *name; - struct extcon_dev *extcon_dev; - u64 extcon_type; - struct work_struct wq; - struct notifier_block nb; - bool attached; - struct charger_regulator *charger; - int min_uA; - int max_uA; - struct charger_manager *cm; -}; - -struct charger_regulator { - const char *regulator_name; - struct regulator *consumer; - int externally_control; - struct charger_cable *cables; - int num_cables; - struct attribute_group attr_grp; - struct device_attribute attr_name; - struct device_attribute attr_state; - struct device_attribute attr_externally_control; - struct attribute *attrs[4]; - struct charger_manager *cm; -}; - -struct charger_manager { - struct list_head entry; - struct device *dev; - struct charger_desc *desc; - struct thermal_zone_device *tzd_batt; - bool charger_enabled; - int emergency_stop; - char psy_name_buf[31]; - struct power_supply_desc charger_psy_desc; - struct power_supply *charger_psy; - u64 charging_start_time; - u64 charging_end_time; - int battery_status; -}; - -struct pm860x_irq_data { - int reg; - int mask_reg; - int enable; - int offs; -}; - -enum wm831x_auxadc { - WM831X_AUX_CAL = 15, - WM831X_AUX_BKUP_BATT = 10, - WM831X_AUX_WALL = 9, - WM831X_AUX_BATT = 8, - WM831X_AUX_USB = 7, - WM831X_AUX_SYSVDD = 6, - WM831X_AUX_BATT_TEMP = 5, - WM831X_AUX_CHIP_TEMP = 4, - WM831X_AUX_AUX4 = 3, - WM831X_AUX_AUX3 = 2, - WM831X_AUX_AUX2 = 1, - WM831X_AUX_AUX1 = 0, -}; - -struct wm831x_backlight_pdata { - int isink; - int max_uA; -}; - -struct wm831x_backup_pdata { - int charger_enable; - int no_constant_voltage; - int vlim; - int ilim; -}; - -struct wm831x_battery_pdata { - int enable; - int fast_enable; - int off_mask; - int trickle_ilim; - int vsel; - int eoc_iterm; - int fast_ilim; - int timeout; -}; - -enum wm831x_status_src { - WM831X_STATUS_PRESERVE = 0, - WM831X_STATUS_OTP = 1, - WM831X_STATUS_POWER = 2, - WM831X_STATUS_CHARGER = 3, - WM831X_STATUS_MANUAL = 4, -}; - -struct wm831x_status_pdata { - enum wm831x_status_src default_src; - const char *name; - const char *default_trigger; -}; - -struct wm831x_touch_pdata { - int fivewire; - int isel; - int rpu; - int pressure; - unsigned int data_irq; - int data_irqf; - unsigned int pd_irq; - int pd_irqf; -}; - -enum wm831x_watchdog_action { - WM831X_WDOG_NONE = 0, - WM831X_WDOG_INTERRUPT = 1, - WM831X_WDOG_RESET = 2, - WM831X_WDOG_WAKE = 3, -}; - -struct wm831x_watchdog_pdata { - enum wm831x_watchdog_action primary; - enum wm831x_watchdog_action secondary; - unsigned int software: 1; -}; - -struct wm831x; - -struct wm831x_pdata { - int wm831x_num; - int (*pre_init)(struct wm831x *); - int (*post_init)(struct wm831x *); - bool irq_cmos; - bool disable_touch; - bool soft_shutdown; - int irq_base; - int gpio_base; - int gpio_defaults[16]; - struct wm831x_backlight_pdata *backlight; - struct wm831x_backup_pdata *backup; - struct wm831x_battery_pdata *battery; - struct wm831x_touch_pdata *touch; - struct wm831x_watchdog_pdata *watchdog; - struct wm831x_status_pdata *status[2]; - struct regulator_init_data *dcdc[4]; - struct regulator_init_data *epe[2]; - struct regulator_init_data *ldo[11]; - struct regulator_init_data *isink[2]; -}; - -enum wm831x_parent { - WM8310 = 33552, - WM8311 = 33553, - WM8312 = 33554, - WM8320 = 33568, - WM8321 = 33569, - WM8325 = 33573, - WM8326 = 33574, -}; - -typedef int (*wm831x_auxadc_read_fn)(struct wm831x *, enum wm831x_auxadc); - -struct wm831x { - struct mutex io_lock; - struct device *dev; - struct regmap *regmap; - struct wm831x_pdata pdata; - enum wm831x_parent type; - int irq; - struct mutex irq_lock; - struct irq_domain *irq_domain; - int irq_masks_cur[5]; - int irq_masks_cache[5]; - bool soft_shutdown; - unsigned int has_gpio_ena: 1; - unsigned int has_cs_sts: 1; - unsigned int charger_irq_wake: 1; - int num_gpio; - int gpio_update[16]; - bool gpio_level_high[16]; - bool gpio_level_low[16]; - struct mutex auxadc_lock; - struct list_head auxadc_pending; - u16 auxadc_active; - wm831x_auxadc_read_fn auxadc_read; - struct mutex key_lock; - unsigned int locked: 1; -}; - -struct wm831x_auxadc_req { - struct list_head list; - enum wm831x_auxadc input; - int val; - struct completion done; -}; - -struct spi_device_id { - char name[32]; - kernel_ulong_t driver_data; -}; - -struct kthread_work; - -typedef void (*kthread_work_func_t)(struct kthread_work *); - -struct kthread_worker; - -struct kthread_work { - struct list_head node; - kthread_work_func_t func; - struct kthread_worker *worker; - int canceling; -}; - -struct kthread_worker { - unsigned int flags; - raw_spinlock_t lock; - struct list_head work_list; - struct list_head delayed_work_list; - struct task_struct *task; - struct kthread_work *current_work; -}; - -struct spi_statistics { - struct u64_stats_sync syncp; - u64_stats_t messages; - u64_stats_t transfers; - u64_stats_t errors; - u64_stats_t timedout; - u64_stats_t spi_sync; - u64_stats_t spi_sync_immediate; - u64_stats_t spi_async; - u64_stats_t bytes; - u64_stats_t bytes_rx; - u64_stats_t bytes_tx; - u64_stats_t transfer_bytes_histo[17]; - u64_stats_t transfers_split_maxsize; -}; - -struct spi_delay { - u16 value; - u8 unit; -}; - -struct spi_controller; - -struct spi_device { - struct device dev; - struct spi_controller *controller; - u32 max_speed_hz; - u8 bits_per_word; - bool rt; - u32 mode; - int irq; - void *controller_state; - void *controller_data; - char modalias[32]; - const char *driver_override; - struct spi_statistics *pcpu_statistics; - struct spi_delay word_delay; - struct spi_delay cs_setup; - struct spi_delay cs_hold; - struct spi_delay cs_inactive; - u8 chip_select[24]; - u32 cs_index_mask: 24; - struct gpio_desc *cs_gpiod[24]; -}; - -struct spi_message; - -struct spi_transfer; - -struct spi_controller_mem_ops; - -struct spi_controller_mem_caps; - -struct spi_offload; - -struct spi_offload_config; - -struct spi_controller { - struct device dev; - struct list_head list; - s16 bus_num; - u16 num_chipselect; - u16 dma_alignment; - u32 mode_bits; - u32 buswidth_override_bits; - u32 bits_per_word_mask; - u32 min_speed_hz; - u32 max_speed_hz; - u16 flags; - bool devm_allocated; - union { - bool slave; - bool target; - }; - size_t (*max_transfer_size)(struct spi_device *); - size_t (*max_message_size)(struct spi_device *); - struct mutex io_mutex; - struct mutex add_lock; - spinlock_t bus_lock_spinlock; - struct mutex bus_lock_mutex; - bool bus_lock_flag; - int (*setup)(struct spi_device *); - int (*set_cs_timing)(struct spi_device *); - int (*transfer)(struct spi_device *, struct spi_message *); - void (*cleanup)(struct spi_device *); - bool (*can_dma)(struct spi_controller *, struct spi_device *, struct spi_transfer *); - struct device *dma_map_dev; - struct device *cur_rx_dma_dev; - struct device *cur_tx_dma_dev; - bool queued; - struct kthread_worker *kworker; - struct kthread_work pump_messages; - spinlock_t queue_lock; - struct list_head queue; - struct spi_message *cur_msg; - struct completion cur_msg_completion; - bool cur_msg_incomplete; - bool cur_msg_need_completion; - bool busy; - bool running; - bool rt; - bool auto_runtime_pm; - bool fallback; - bool last_cs_mode_high; - s8 last_cs[24]; - u32 last_cs_index_mask: 24; - struct completion xfer_completion; - size_t max_dma_len; - int (*optimize_message)(struct spi_message *); - int (*unoptimize_message)(struct spi_message *); - int (*prepare_transfer_hardware)(struct spi_controller *); - int (*transfer_one_message)(struct spi_controller *, struct spi_message *); - int (*unprepare_transfer_hardware)(struct spi_controller *); - int (*prepare_message)(struct spi_controller *, struct spi_message *); - int (*unprepare_message)(struct spi_controller *, struct spi_message *); - int (*target_abort)(struct spi_controller *); - void (*set_cs)(struct spi_device *, bool); - int (*transfer_one)(struct spi_controller *, struct spi_device *, struct spi_transfer *); - void (*handle_err)(struct spi_controller *, struct spi_message *); - const struct spi_controller_mem_ops *mem_ops; - const struct spi_controller_mem_caps *mem_caps; - bool dtr_caps; - struct spi_offload * (*get_offload)(struct spi_device *, const struct spi_offload_config *); - void (*put_offload)(struct spi_offload *); - struct gpio_desc **cs_gpiods; - bool use_gpio_descriptors; - s8 unused_native_cs; - s8 max_native_cs; - struct spi_statistics *pcpu_statistics; - struct dma_chan *dma_tx; - struct dma_chan *dma_rx; - void *dummy_rx; - void *dummy_tx; - int (*fw_translate_cs)(struct spi_controller *, unsigned int); - bool ptp_sts_supported; - long unsigned int irq_flags; - bool queue_empty; - bool must_async; - bool defer_optimize_message; -}; - -struct spi_driver { - const struct spi_device_id *id_table; - int (*probe)(struct spi_device *); - void (*remove)(struct spi_device *); - void (*shutdown)(struct spi_device *); - struct device_driver driver; -}; - -struct spi_message { - struct list_head transfers; - struct spi_device *spi; - bool pre_optimized; - bool optimized; - bool prepared; - int status; - void (*complete)(void *); - void *context; - unsigned int frame_length; - unsigned int actual_length; - struct list_head queue; - void *state; - void *opt_state; - struct spi_offload *offload; - struct list_head resources; -}; - -struct ptp_system_timestamp; - -struct spi_transfer { - const void *tx_buf; - void *rx_buf; - unsigned int len; - u16 error; - bool tx_sg_mapped; - bool rx_sg_mapped; - struct sg_table tx_sg; - struct sg_table rx_sg; - dma_addr_t tx_dma; - dma_addr_t rx_dma; - unsigned int dummy_data: 1; - unsigned int cs_off: 1; - unsigned int cs_change: 1; - unsigned int tx_nbits: 4; - unsigned int rx_nbits: 4; - unsigned int timestamped: 1; - bool dtr_mode; - u8 bits_per_word; - struct spi_delay delay; - struct spi_delay cs_change_delay; - struct spi_delay word_delay; - u32 speed_hz; - u32 effective_speed_hz; - unsigned int offload_flags; - unsigned int ptp_sts_word_pre; - unsigned int ptp_sts_word_post; - struct ptp_system_timestamp *ptp_sts; - struct list_head transfer_list; -}; - -struct spi_mem; - -struct spi_mem_op; - -struct spi_mem_dirmap_desc; - -struct spi_controller_mem_ops { - int (*adjust_op_size)(struct spi_mem *, struct spi_mem_op *); - bool (*supports_op)(struct spi_mem *, const struct spi_mem_op *); - int (*exec_op)(struct spi_mem *, const struct spi_mem_op *); - const char * (*get_name)(struct spi_mem *); - int (*dirmap_create)(struct spi_mem_dirmap_desc *); - void (*dirmap_destroy)(struct spi_mem_dirmap_desc *); - ssize_t (*dirmap_read)(struct spi_mem_dirmap_desc *, u64, size_t, void *); - ssize_t (*dirmap_write)(struct spi_mem_dirmap_desc *, u64, size_t, const void *); - int (*poll_status)(struct spi_mem *, const struct spi_mem_op *, u16, u16, long unsigned int, long unsigned int, long unsigned int); -}; - -struct spi_controller_mem_caps { - bool dtr; - bool ecc; - bool swap16; - bool per_op_freq; -}; - -struct spi_offload_config { - u32 capability_flags; -}; - -struct wm8350_audio_platform_data { - int vmid_discharge_msecs; - int drain_msecs; - int cap_discharge_msecs; - int vmid_charge_msecs; - u32 vmid_s_curve: 2; - u32 dis_out4: 2; - u32 dis_out3: 2; - u32 dis_out2: 2; - u32 dis_out1: 2; - u32 vroi_out4: 1; - u32 vroi_out3: 1; - u32 vroi_out2: 1; - u32 vroi_out1: 1; - u32 vroi_enable: 1; - u32 codec_current_on: 2; - u32 codec_current_standby: 2; - u32 codec_current_charge: 2; -}; - -struct wm8350_codec { - struct platform_device *pdev; - struct wm8350_audio_platform_data *platform_data; -}; - -struct wm8350_gpio { - struct platform_device *pdev; -}; - -struct wm8350_led { - struct platform_device *pdev; - struct work_struct work; - spinlock_t value_lock; - enum led_brightness value; - struct led_classdev cdev; - int max_uA_index; - int enabled; - struct regulator *isink; - struct regulator_consumer_supply isink_consumer; - struct regulator_init_data isink_init; - struct regulator *dcdc; - struct regulator_consumer_supply dcdc_consumer; - struct regulator_init_data dcdc_init; -}; - -struct wm8350_pmic { - int max_dcdc; - int max_isink; - int isink_A_dcdc; - int isink_B_dcdc; - u16 dcdc1_hib_mode; - u16 dcdc3_hib_mode; - u16 dcdc4_hib_mode; - u16 dcdc6_hib_mode; - struct platform_device *pdev[12]; - struct wm8350_led led[2]; -}; - -struct rtc_device; - -struct wm8350_rtc { - struct platform_device *pdev; - struct rtc_device *rtc; - int alarm_enabled; - int update_enabled; -}; - -struct wm8350_charger_policy { - int eoc_mA; - int charge_mV; - int fast_limit_mA; - int fast_limit_USB_mA; - int charge_timeout; - int trickle_start_mV; - int trickle_charge_mA; - int trickle_charge_USB_mA; -}; - -struct wm8350_power { - struct platform_device *pdev; - struct power_supply *battery; - struct power_supply *usb; - struct power_supply *ac; - struct wm8350_charger_policy *policy; - int rev_g_coeff; -}; - -struct wm8350_wdt { - struct platform_device *pdev; -}; - -struct wm8350_hwmon { - struct platform_device *pdev; - struct device *classdev; -}; - -struct wm8350 { - struct device *dev; - struct regmap *regmap; - bool unlocked; - struct mutex auxadc_mutex; - struct completion auxadc_done; - struct mutex irq_lock; - int chip_irq; - int irq_base; - u16 irq_masks[7]; - struct wm8350_codec codec; - struct wm8350_gpio gpio; - struct wm8350_hwmon hwmon; - struct wm8350_pmic pmic; - struct wm8350_power power; - struct wm8350_rtc rtc; - struct wm8350_wdt wdt; -}; - -struct wm8350_platform_data { - int (*init)(struct wm8350 *); - int irq_high; - int irq_base; - int gpio_base; -}; - -struct wm8350_irq_data { - int primary; - int reg; - int mask; - int primary_only; -}; - -struct tps65912 { - struct device *dev; - struct regmap *regmap; - int irq; - struct regmap_irq_chip_data *irq_data; -}; - -enum twl_module_ids { - TWL_MODULE_USB = 0, - TWL_MODULE_PIH = 1, - TWL_MODULE_MAIN_CHARGE = 2, - TWL_MODULE_PM_MASTER = 3, - TWL_MODULE_PM_RECEIVER = 4, - TWL_MODULE_RTC = 5, - TWL_MODULE_PWM = 6, - TWL_MODULE_LED = 7, - TWL_MODULE_SECURED_REG = 8, - TWL_MODULE_LAST = 9, -}; - -struct twl6030_irq { - unsigned int irq_base; - int twl_irq; - bool irq_wake_enabled; - atomic_t wakeirqs; - struct notifier_block pm_nb; - struct irq_chip irq_chip; - struct irq_domain *irq_domain; - const int *irq_mapping_tbl; -}; - -struct mfd_of_node_entry { - struct list_head list; - struct device *dev; - struct device_node *np; -}; - -struct match_ids_walk_data { - struct acpi_device_id *ids; - struct acpi_device *adev; -}; - -struct da9052 { - struct device *dev; - struct regmap *regmap; - struct mutex auxadc_lock; - struct completion done; - int irq_base; - struct regmap_irq_chip_data *irq_data; - u8 chip_id; - int chip_irq; - int fault_log; - int (*fix_io)(struct da9052 *, unsigned char); -}; - -struct led_platform_data; - -struct da9052_pdata { - struct led_platform_data *pled; - int (*init)(struct da9052 *); - int irq_base; - int gpio_base; - int use_for_apm; - struct regulator_init_data *regulators[14]; -}; - -enum lp8788_int_id { - LP8788_INT_TSDL = 0, - LP8788_INT_TSDH = 1, - LP8788_INT_UVLO = 2, - LP8788_INT_FLAGMON = 3, - LP8788_INT_PWRON_TIME = 4, - LP8788_INT_PWRON = 5, - LP8788_INT_COMP1 = 6, - LP8788_INT_COMP2 = 7, - LP8788_INT_CHG_INPUT_STATE = 8, - LP8788_INT_CHG_STATE = 9, - LP8788_INT_EOC = 10, - LP8788_INT_CHG_RESTART = 11, - LP8788_INT_RESTART_TIMEOUT = 12, - LP8788_INT_FULLCHG_TIMEOUT = 13, - LP8788_INT_PRECHG_TIMEOUT = 14, - LP8788_INT_RTC_ALARM1 = 17, - LP8788_INT_RTC_ALARM2 = 18, - LP8788_INT_ENTER_SYS_SUPPORT = 19, - LP8788_INT_EXIT_SYS_SUPPORT = 20, - LP8788_INT_BATT_LOW = 21, - LP8788_INT_NO_BATT = 22, - LP8788_INT_MAX = 24, -}; - -enum lp8788_dvs_sel { - DVS_SEL_V0 = 0, - DVS_SEL_V1 = 1, - DVS_SEL_V2 = 2, - DVS_SEL_V3 = 3, -}; - -enum lp8788_charger_event { - NO_CHARGER = 0, - CHARGER_DETECTED = 1, -}; - -enum lp8788_isink_scale { - LP8788_ISINK_SCALE_100mA = 0, - LP8788_ISINK_SCALE_120mA = 1, -}; - -enum lp8788_isink_number { - LP8788_ISINK_1 = 0, - LP8788_ISINK_2 = 1, - LP8788_ISINK_3 = 2, -}; - -enum lp8788_alarm_sel { - LP8788_ALARM_1 = 0, - LP8788_ALARM_2 = 1, - LP8788_ALARM_MAX = 2, -}; - -struct lp8788_buck1_dvs { - enum lp8788_dvs_sel vsel; -}; - -struct lp8788_buck2_dvs { - enum lp8788_dvs_sel vsel; -}; - -struct lp8788_chg_param { - u8 addr; - u8 val; -}; - -struct lp8788; - -struct lp8788_charger_platform_data { - const char *adc_vbatt; - const char *adc_batt_temp; - unsigned int max_vbatt_mv; - struct lp8788_chg_param *chg_params; - int num_chg_params; - void (*charger_event)(struct lp8788 *, enum lp8788_charger_event); -}; - -struct lp8788_platform_data; - -struct lp8788 { - struct device *dev; - struct regmap *regmap; - struct irq_domain *irqdm; - int irq; - struct lp8788_platform_data *pdata; -}; - -struct lp8788_led_platform_data { - char *name; - enum lp8788_isink_scale scale; - enum lp8788_isink_number num; - int iout_code; -}; - -struct lp8788_vib_platform_data { - char *name; - enum lp8788_isink_scale scale; - enum lp8788_isink_number num; - int iout_code; - int pwm_code; -}; - -struct iio_map; - -struct lp8788_platform_data { - int (*init_func)(struct lp8788 *); - struct regulator_init_data *buck_data[4]; - struct regulator_init_data *dldo_data[12]; - struct regulator_init_data *aldo_data[10]; - struct lp8788_buck1_dvs *buck1_dvs; - struct lp8788_buck2_dvs *buck2_dvs; - struct lp8788_charger_platform_data *chg_pdata; - enum lp8788_alarm_sel alarm_sel; - struct lp8788_led_platform_data *led_pdata; - struct lp8788_vib_platform_data *vib_pdata; - struct iio_map *adc_pdata; -}; - -struct da9055 { - struct regmap *regmap; - struct regmap_irq_chip_data *irq_data; - struct device *dev; - struct i2c_client *i2c_client; - int irq_base; - int chip_irq; -}; - -struct max8925_chip { - struct device *dev; - struct i2c_client *i2c; - struct i2c_client *adc; - struct i2c_client *rtc; - struct mutex io_lock; - struct mutex irq_lock; - int irq_base; - int core_irq; - int tsc_irq; - unsigned int wakeup_flag; -}; - -struct max8925_backlight_pdata { - int lxw_scl; - int lxw_freq; - int dual_string; -}; - -struct max8925_touch_pdata { - unsigned int flags; -}; - -struct max8925_power_pdata { - int (*set_charger)(int); - unsigned int batt_detect: 1; - unsigned int topoff_threshold: 2; - unsigned int fast_charge: 3; - unsigned int no_temp_support: 1; - unsigned int no_insert_detect: 1; - char **supplied_to; - int num_supplicants; -}; - -struct max8925_platform_data { - struct max8925_backlight_pdata *backlight; - struct max8925_touch_pdata *touch; - struct max8925_power_pdata *power; - struct regulator_init_data *sd1; - struct regulator_init_data *sd2; - struct regulator_init_data *sd3; - struct regulator_init_data *ldo1; - struct regulator_init_data *ldo2; - struct regulator_init_data *ldo3; - struct regulator_init_data *ldo4; - struct regulator_init_data *ldo5; - struct regulator_init_data *ldo6; - struct regulator_init_data *ldo7; - struct regulator_init_data *ldo8; - struct regulator_init_data *ldo9; - struct regulator_init_data *ldo10; - struct regulator_init_data *ldo11; - struct regulator_init_data *ldo12; - struct regulator_init_data *ldo13; - struct regulator_init_data *ldo14; - struct regulator_init_data *ldo15; - struct regulator_init_data *ldo16; - struct regulator_init_data *ldo17; - struct regulator_init_data *ldo18; - struct regulator_init_data *ldo19; - struct regulator_init_data *ldo20; - int irq_base; - int tsc_irq; -}; - -struct max8998_regulator_data { - int id; - struct regulator_init_data *initdata; - struct device_node *reg_node; -}; - -struct max8998_platform_data { - struct max8998_regulator_data *regulators; - int num_regulators; - unsigned int irq_base; - int ono; - bool buck_voltage_lock; - int buck1_voltage[4]; - int buck2_voltage[2]; - int buck1_default_idx; - int buck2_default_idx; - bool wakeup; - bool rtc_delay; - int eoc; - int restart; - int timeout; -}; - -enum { - MAX8998_REG_IRQ1 = 0, - MAX8998_REG_IRQ2 = 1, - MAX8998_REG_IRQ3 = 2, - MAX8998_REG_IRQ4 = 3, - MAX8998_REG_IRQM1 = 4, - MAX8998_REG_IRQM2 = 5, - MAX8998_REG_IRQM3 = 6, - MAX8998_REG_IRQM4 = 7, - MAX8998_REG_STATUS1 = 8, - MAX8998_REG_STATUS2 = 9, - MAX8998_REG_STATUSM1 = 10, - MAX8998_REG_STATUSM2 = 11, - MAX8998_REG_CHGR1 = 12, - MAX8998_REG_CHGR2 = 13, - MAX8998_REG_LDO_ACTIVE_DISCHARGE1 = 14, - MAX8998_REG_LDO_ACTIVE_DISCHARGE2 = 15, - MAX8998_REG_BUCK_ACTIVE_DISCHARGE3 = 16, - MAX8998_REG_ONOFF1 = 17, - MAX8998_REG_ONOFF2 = 18, - MAX8998_REG_ONOFF3 = 19, - MAX8998_REG_ONOFF4 = 20, - MAX8998_REG_BUCK1_VOLTAGE1 = 21, - MAX8998_REG_BUCK1_VOLTAGE2 = 22, - MAX8998_REG_BUCK1_VOLTAGE3 = 23, - MAX8998_REG_BUCK1_VOLTAGE4 = 24, - MAX8998_REG_BUCK2_VOLTAGE1 = 25, - MAX8998_REG_BUCK2_VOLTAGE2 = 26, - MAX8998_REG_BUCK3 = 27, - MAX8998_REG_BUCK4 = 28, - MAX8998_REG_LDO2_LDO3 = 29, - MAX8998_REG_LDO4 = 30, - MAX8998_REG_LDO5 = 31, - MAX8998_REG_LDO6 = 32, - MAX8998_REG_LDO7 = 33, - MAX8998_REG_LDO8_LDO9 = 34, - MAX8998_REG_LDO10_LDO11 = 35, - MAX8998_REG_LDO12 = 36, - MAX8998_REG_LDO13 = 37, - MAX8998_REG_LDO14 = 38, - MAX8998_REG_LDO15 = 39, - MAX8998_REG_LDO16 = 40, - MAX8998_REG_LDO17 = 41, - MAX8998_REG_BKCHR = 42, - MAX8998_REG_LBCNFG1 = 43, - MAX8998_REG_LBCNFG2 = 44, -}; - -enum { - TYPE_MAX8998 = 0, - TYPE_LP3974 = 1, - TYPE_LP3979 = 2, -}; - -struct max8998_dev { - struct device *dev; - struct max8998_platform_data *pdata; - struct i2c_client *i2c; - struct i2c_client *rtc; - struct mutex iolock; - struct mutex irqlock; - unsigned int irq_base; - struct irq_domain *irq_domain; - int irq; - int ono; - u8 irq_masks_cur[4]; - u8 irq_masks_cache[4]; - long unsigned int type; - bool wakeup; -}; - -struct max8998_reg_dump { - u8 addr; - u8 val; -}; - -enum { - TPS65090_IRQ_INTERRUPT = 0, - TPS65090_IRQ_VAC_STATUS_CHANGE = 1, - TPS65090_IRQ_VSYS_STATUS_CHANGE = 2, - TPS65090_IRQ_BAT_STATUS_CHANGE = 3, - TPS65090_IRQ_CHARGING_STATUS_CHANGE = 4, - TPS65090_IRQ_CHARGING_COMPLETE = 5, - TPS65090_IRQ_OVERLOAD_DCDC1 = 6, - TPS65090_IRQ_OVERLOAD_DCDC2 = 7, - TPS65090_IRQ_OVERLOAD_DCDC3 = 8, - TPS65090_IRQ_OVERLOAD_FET1 = 9, - TPS65090_IRQ_OVERLOAD_FET2 = 10, - TPS65090_IRQ_OVERLOAD_FET3 = 11, - TPS65090_IRQ_OVERLOAD_FET4 = 12, - TPS65090_IRQ_OVERLOAD_FET5 = 13, - TPS65090_IRQ_OVERLOAD_FET6 = 14, - TPS65090_IRQ_OVERLOAD_FET7 = 15, -}; - -enum { - TPS65090_REGULATOR_DCDC1 = 0, - TPS65090_REGULATOR_DCDC2 = 1, - TPS65090_REGULATOR_DCDC3 = 2, - TPS65090_REGULATOR_FET1 = 3, - TPS65090_REGULATOR_FET2 = 4, - TPS65090_REGULATOR_FET3 = 5, - TPS65090_REGULATOR_FET4 = 6, - TPS65090_REGULATOR_FET5 = 7, - TPS65090_REGULATOR_FET6 = 8, - TPS65090_REGULATOR_FET7 = 9, - TPS65090_REGULATOR_LDO1 = 10, - TPS65090_REGULATOR_LDO2 = 11, - TPS65090_REGULATOR_MAX = 12, -}; - -struct tps65090 { - struct device *dev; - struct regmap *rmap; - struct regmap_irq_chip_data *irq_data; -}; - -struct tps65090_regulator_plat_data { - struct regulator_init_data *reg_init_data; - bool enable_ext_control; - struct gpio_desc *gpiod; - bool overcurrent_wait_valid; - int overcurrent_wait; -}; - -struct tps65090_platform_data { - int irq_base; - char **supplied_to; - size_t num_supplicants; - int enable_low_current_chrg; - struct tps65090_regulator_plat_data *reg_pdata[12]; -}; - -enum tps65090_cells { - PMIC = 0, - CHARGER = 1, -}; - -enum { - RC5T583_IRQ_ONKEY = 0, - RC5T583_IRQ_ACOK = 1, - RC5T583_IRQ_LIDOPEN = 2, - RC5T583_IRQ_PREOT = 3, - RC5T583_IRQ_CLKSTP = 4, - RC5T583_IRQ_ONKEY_OFF = 5, - RC5T583_IRQ_WD = 6, - RC5T583_IRQ_EN_PWRREQ1 = 7, - RC5T583_IRQ_EN_PWRREQ2 = 8, - RC5T583_IRQ_PRE_VINDET = 9, - RC5T583_IRQ_DC0LIM = 10, - RC5T583_IRQ_DC1LIM = 11, - RC5T583_IRQ_DC2LIM = 12, - RC5T583_IRQ_DC3LIM = 13, - RC5T583_IRQ_CTC = 14, - RC5T583_IRQ_YALE = 15, - RC5T583_IRQ_DALE = 16, - RC5T583_IRQ_WALE = 17, - RC5T583_IRQ_AIN1L = 18, - RC5T583_IRQ_AIN2L = 19, - RC5T583_IRQ_AIN3L = 20, - RC5T583_IRQ_VBATL = 21, - RC5T583_IRQ_VIN3L = 22, - RC5T583_IRQ_VIN8L = 23, - RC5T583_IRQ_AIN1H = 24, - RC5T583_IRQ_AIN2H = 25, - RC5T583_IRQ_AIN3H = 26, - RC5T583_IRQ_VBATH = 27, - RC5T583_IRQ_VIN3H = 28, - RC5T583_IRQ_VIN8H = 29, - RC5T583_IRQ_ADCEND = 30, - RC5T583_IRQ_GPIO0 = 31, - RC5T583_IRQ_GPIO1 = 32, - RC5T583_IRQ_GPIO2 = 33, - RC5T583_IRQ_GPIO3 = 34, - RC5T583_IRQ_GPIO4 = 35, - RC5T583_IRQ_GPIO5 = 36, - RC5T583_IRQ_GPIO6 = 37, - RC5T583_IRQ_GPIO7 = 38, - RC5T583_MAX_IRQS = 39, -}; - -enum { - RC5T583_REGULATOR_DC0 = 0, - RC5T583_REGULATOR_DC1 = 1, - RC5T583_REGULATOR_DC2 = 2, - RC5T583_REGULATOR_DC3 = 3, - RC5T583_REGULATOR_LDO0 = 4, - RC5T583_REGULATOR_LDO1 = 5, - RC5T583_REGULATOR_LDO2 = 6, - RC5T583_REGULATOR_LDO3 = 7, - RC5T583_REGULATOR_LDO4 = 8, - RC5T583_REGULATOR_LDO5 = 9, - RC5T583_REGULATOR_LDO6 = 10, - RC5T583_REGULATOR_LDO7 = 11, - RC5T583_REGULATOR_LDO8 = 12, - RC5T583_REGULATOR_LDO9 = 13, - RC5T583_REGULATOR_MAX = 14, -}; - -struct rc5t583 { - struct device *dev; - struct regmap *regmap; - int chip_irq; - int irq_base; - struct mutex irq_lock; - long unsigned int group_irq_en[5]; - uint8_t intc_inten_reg; - uint8_t irq_en_reg[8]; - uint8_t gpedge_reg[2]; -}; - -enum int_type { - SYS_INT = 1, - DCDC_INT = 2, - RTC_INT = 4, - ADC_INT = 8, - GPIO_INT = 16, -}; - -struct rc5t583_irq_data { - u8 int_type; - u8 master_bit; - u8 int_en_bit; - u8 mask_reg_index; - int grp_index; -}; - -struct badrange_entry { - u64 start; - u64 length; - struct list_head list; -}; - -struct badrange { - struct list_head list; - spinlock_t lock; -}; - -struct nvdimm { - long unsigned int flags; - void *provider_data; - long unsigned int cmd_mask; - struct device dev; - atomic_t busy; - int id; - int num_flush; - struct resource *flush_wpq; - const char *dimm_id; - struct { - const struct nvdimm_security_ops *ops; - long unsigned int flags; - long unsigned int ext_flags; - unsigned int overwrite_tmo; - struct kernfs_node *overwrite_state; - } sec; - struct delayed_work dwork; - const struct nvdimm_fw_ops *fw_ops; -}; - -struct badblocks { - struct device *dev; - int count; - int unacked_exist; - int shift; - u64 *page; - int changed; - seqlock_t lock; - sector_t sector; - sector_t size; -}; - -struct nvdimm_drvdata; - -struct nd_mapping { - struct nvdimm *nvdimm; - u64 start; - u64 size; - int position; - struct list_head labels; - struct mutex lock; - struct nvdimm_drvdata *ndd; -}; - -struct nd_percpu_lane; - -struct nd_region { - struct device dev; - struct ida ns_ida; - struct ida btt_ida; - struct ida pfn_ida; - struct ida dax_ida; - long unsigned int flags; - struct device *ns_seed; - struct device *btt_seed; - struct device *pfn_seed; - struct device *dax_seed; - long unsigned int align; - u16 ndr_mappings; - u64 ndr_size; - u64 ndr_start; - int id; - int num_lanes; - int ro; - int numa_node; - int target_node; - void *provider_data; - struct kernfs_node *bb_state; - struct badblocks bb; - struct nd_interleave_set *nd_set; - struct nd_percpu_lane *lane; - int (*flush)(struct nd_region *, struct bio *); - struct nd_mapping mapping[0]; -}; - -struct nd_cmd_get_config_size { - __u32 status; - __u32 config_size; - __u32 max_xfer; -}; - -struct nd_cmd_vendor_hdr { - __u32 opcode; - __u32 in_length; - __u8 in_buf[0]; -}; - -enum nvdimm_claim_class { - NVDIMM_CCLASS_NONE = 0, - NVDIMM_CCLASS_BTT = 1, - NVDIMM_CCLASS_BTT2 = 2, - NVDIMM_CCLASS_PFN = 3, - NVDIMM_CCLASS_DAX = 4, - NVDIMM_CCLASS_UNKNOWN = 5, -}; - -struct nd_device_driver { - struct device_driver drv; - long unsigned int type; - int (*probe)(struct device *); - void (*remove)(struct device *); - void (*shutdown)(struct device *); - void (*notify)(struct device *, enum nvdimm_event); -}; - -struct nd_namespace_common { - int force_raw; - struct device dev; - struct device *claim; - enum nvdimm_claim_class claim_class; - int (*rw_bytes)(struct nd_namespace_common *, resource_size_t, void *, size_t, int, long unsigned int); -}; - -struct nd_namespace_io { - struct nd_namespace_common common; - struct resource res; - resource_size_t size; - void *addr; - struct badblocks bb; -}; - -enum { - NSINDEX_SIG_LEN = 16, - NSINDEX_ALIGN = 256, - NSINDEX_SEQ_MASK = 3, - NSLABEL_UUID_LEN = 16, - NSLABEL_NAME_LEN = 64, - NSLABEL_FLAG_ROLABEL = 1, - NSLABEL_FLAG_LOCAL = 2, - NSLABEL_FLAG_BTT = 4, - NSLABEL_FLAG_UPDATING = 8, - BTT_ALIGN = 4096, - BTTINFO_SIG_LEN = 16, - BTTINFO_UUID_LEN = 16, - BTTINFO_FLAG_ERROR = 1, - BTTINFO_MAJOR_VERSION = 1, - ND_LABEL_MIN_SIZE = 1024, - ND_LABEL_ID_SIZE = 50, - ND_NSINDEX_INIT = 1, -}; - -struct nvdimm_drvdata { - struct device *dev; - int nslabel_size; - struct nd_cmd_get_config_size nsarea; - void *data; - bool cxl; - int ns_current; - int ns_next; - struct resource dpa; - struct kref kref; -}; - -struct nd_percpu_lane { - int count; - spinlock_t lock; -}; - -struct btt; - -struct nd_btt { - struct device dev; - struct nd_namespace_common *ndns; - struct btt *btt; - long unsigned int lbasize; - u64 size; - uuid_t *uuid; - int id; - int initial_offset; - u16 version_major; - u16 version_minor; -}; - -enum nd_pfn_mode { - PFN_MODE_NONE = 0, - PFN_MODE_RAM = 1, - PFN_MODE_PMEM = 2, -}; - -struct nd_pfn_sb; - -struct nd_pfn { - int id; - uuid_t *uuid; - struct device dev; - long unsigned int align; - long unsigned int npfns; - enum nd_pfn_mode mode; - struct nd_pfn_sb *pfn_sb; - struct nd_namespace_common *ndns; -}; - -struct nd_pfn_sb { - u8 signature[16]; - u8 uuid[16]; - u8 parent_uuid[16]; - __le32 flags; - __le16 version_major; - __le16 version_minor; - __le64 dataoff; - __le64 npfns; - __le32 mode; - __le32 start_pad; - __le32 end_trunc; - __le32 align; - __le32 page_size; - __le16 page_struct_size; - u8 padding[3994]; - __le64 checksum; -}; - -struct nd_dax { - struct nd_pfn nd_pfn; -}; - -enum nd_async_mode { - ND_SYNC = 0, - ND_ASYNC = 1, -}; - -struct nvdimm_bus { - struct nvdimm_bus_descriptor *nd_desc; - wait_queue_head_t wait; - struct list_head list; - struct device dev; - int id; - int probe_active; - atomic_t ioctl_active; - struct list_head mapping_list; - struct mutex reconfig_mutex; - struct badrange badrange; -}; - -struct clear_badblocks_context { - resource_size_t phys; - resource_size_t cleared; -}; - -enum nd_ioctl_mode { - BUS_IOCTL = 0, - DIMM_IOCTL = 1, -}; - -struct nd_namespace_index { - u8 sig[16]; - u8 flags[3]; - u8 labelsize; - __le32 seq; - __le64 myoff; - __le64 mysize; - __le64 otheroff; - __le64 labeloff; - __le32 nslot; - __le16 major; - __le16 minor; - __le64 checksum; - u8 free[0]; -}; - -struct nvdimm_efi_label { - u8 uuid[16]; - u8 name[64]; - __le32 flags; - __le16 nlabel; - __le16 position; - __le64 isetcookie; - __le64 lbasize; - __le64 dpa; - __le64 rawsize; - __le32 slot; - u8 align; - u8 reserved[3]; - guid_t type_guid; - guid_t abstraction_guid; - u8 reserved2[88]; - __le64 checksum; -}; - -struct nvdimm_cxl_label { - u8 type[16]; - u8 uuid[16]; - u8 name[64]; - __le32 flags; - __le16 nrange; - __le16 position; - __le64 dpa; - __le64 rawsize; - __le32 slot; - __le32 align; - u8 region_uuid[16]; - u8 abstraction_uuid[16]; - __le16 lbasize; - u8 reserved[86]; - __le64 checksum; -}; - -struct nd_namespace_label { - union { - struct nvdimm_cxl_label cxl; - struct nvdimm_efi_label efi; - }; -}; - -enum { - ND_MAX_LANES = 256, - INT_LBASIZE_ALIGNMENT = 64, - NVDIMM_IO_ATOMIC = 1, -}; - -struct nd_region_data { - int ns_count; - int ns_active; - unsigned int hints_shift; - void *flush_wpq[0]; -}; - -struct nd_label_ent { - struct list_head list; - long unsigned int flags; - struct nd_namespace_label *label; -}; - -struct btt { - struct gendisk *btt_disk; - struct list_head arena_list; - struct dentry *debugfs_dir; - struct nd_btt *nd_btt; - u64 nlba; - long long unsigned int rawsize; - u32 lbasize; - u32 sector_size; - struct nd_region *nd_region; - struct mutex init_lock; - int init_state; - int num_arenas; - struct badblocks *phys_bb; -}; - -struct nd_gen_sb { - char reserved[4088]; - __le64 checksum; -}; - -enum nvdimm_security_bits { - NVDIMM_SECURITY_DISABLED = 0, - NVDIMM_SECURITY_UNLOCKED = 1, - NVDIMM_SECURITY_LOCKED = 2, - NVDIMM_SECURITY_FROZEN = 3, - NVDIMM_SECURITY_OVERWRITE = 4, -}; - -enum nvdimmsec_op_ids { - OP_FREEZE = 0, - OP_DISABLE = 1, - OP_DISABLE_MASTER = 2, - OP_UPDATE = 3, - OP_ERASE = 4, - OP_OVERWRITE = 5, - OP_MASTER_UPDATE = 6, - OP_MASTER_ERASE = 7, -}; - -struct dax_operations { - long int (*direct_access)(struct dax_device *, long unsigned int, long int, enum dax_access_mode, void **, long unsigned int *); - int (*zero_page_range)(struct dax_device *, long unsigned int, size_t); - size_t (*recovery_write)(struct dax_device *, long unsigned int, void *, size_t, struct iov_iter *); -}; - -struct dax_holder_operations; - -struct dax_device { - struct inode inode; - struct cdev cdev; - void *private; - long unsigned int flags; - const struct dax_operations *ops; - void *holder_data; - const struct dax_holder_operations *holder_ops; -}; - -struct dax_holder_operations { - int (*notify_failure)(struct dax_device *, u64, u64, int); -}; - -enum dax_device_flags { - DAXDEV_ALIVE = 0, - DAXDEV_WRITE_CACHE = 1, - DAXDEV_SYNC = 2, - DAXDEV_NOCACHE = 3, - DAXDEV_NOMC = 4, -}; - -struct dma_fence_ops; - -struct dma_fence { - spinlock_t *lock; - const struct dma_fence_ops *ops; - union { - struct list_head cb_list; - ktime_t timestamp; - struct callback_head rcu; - }; - u64 context; - u64 seqno; - long unsigned int flags; - struct kref refcount; - int error; -}; - -struct dma_fence_ops { - const char * (*get_driver_name)(struct dma_fence *); - const char * (*get_timeline_name)(struct dma_fence *); - bool (*enable_signaling)(struct dma_fence *); - bool (*signaled)(struct dma_fence *); - long int (*wait)(struct dma_fence *, bool, long int); - void (*release)(struct dma_fence *); - void (*set_deadline)(struct dma_fence *, ktime_t); -}; - -enum dma_fence_flag_bits { - DMA_FENCE_FLAG_SEQNO64_BIT = 0, - DMA_FENCE_FLAG_SIGNALED_BIT = 1, - DMA_FENCE_FLAG_TIMESTAMP_BIT = 2, - DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT = 3, - DMA_FENCE_FLAG_USER_BITS = 4, -}; - -struct dma_fence_cb; - -typedef void (*dma_fence_func_t)(struct dma_fence *, struct dma_fence_cb *); - -struct dma_fence_cb { - struct list_head node; - dma_fence_func_t func; -}; - -struct trace_event_raw_dma_fence { - struct trace_entry ent; - u32 __data_loc_driver; - u32 __data_loc_timeline; - unsigned int context; - unsigned int seqno; - char __data[0]; -}; - -struct trace_event_raw_dma_fence_unsignaled { - struct trace_entry ent; - u32 __data_loc_driver; - u32 __data_loc_timeline; - unsigned int context; - unsigned int seqno; - char __data[0]; -}; - -struct trace_event_data_offsets_dma_fence { - u32 driver; - const void *driver_ptr_; - u32 timeline; - const void *timeline_ptr_; -}; - -struct trace_event_data_offsets_dma_fence_unsignaled { - u32 driver; - const void *driver_ptr_; - u32 timeline; - const void *timeline_ptr_; -}; - -typedef void (*btf_trace_dma_fence_emit)(void *, struct dma_fence *); - -typedef void (*btf_trace_dma_fence_init)(void *, struct dma_fence *); - -typedef void (*btf_trace_dma_fence_destroy)(void *, struct dma_fence *); - -typedef void (*btf_trace_dma_fence_enable_signal)(void *, struct dma_fence *); - -typedef void (*btf_trace_dma_fence_signaled)(void *, struct dma_fence *); - -typedef void (*btf_trace_dma_fence_wait_start)(void *, struct dma_fence *); - -typedef void (*btf_trace_dma_fence_wait_end)(void *, struct dma_fence *); - -struct default_wait_cb { - struct dma_fence_cb base; - struct task_struct *task; -}; - -struct dma_fence_unwrap { - struct dma_fence *chain; - struct dma_fence *array; - unsigned int index; -}; - -struct sync_file { - struct file *file; - char user_name[32]; - struct list_head sync_file_list; - wait_queue_head_t wq; - long unsigned int flags; - struct dma_fence *fence; - struct dma_fence_cb cb; -}; - -struct sync_merge_data { - char name[32]; - __s32 fd2; - __s32 fence; - __u32 flags; - __u32 pad; -}; - -struct sync_fence_info { - char obj_name[32]; - char driver_name[32]; - __s32 status; - __u32 flags; - __u64 timestamp_ns; -}; - -struct sync_file_info { - char name[32]; - __s32 status; - __u32 flags; - __u32 num_fences; - __u32 pad; - __u64 sync_fence_info; -}; - -struct sync_set_deadline { - __u64 deadline_ns; - __u64 pad; -}; - -enum access_coordinate_class { - ACCESS_COORDINATE_LOCAL = 0, - ACCESS_COORDINATE_CPU = 1, - ACCESS_COORDINATE_MAX = 2, -}; - -struct cxl_mbox_cmd_rc { - int err; - const char *desc; -}; - -enum poison_cmd_enabled_bits { - CXL_POISON_ENABLED_LIST = 0, - CXL_POISON_ENABLED_INJECT = 1, - CXL_POISON_ENABLED_CLEAR = 2, - CXL_POISON_ENABLED_SCAN_CAPS = 3, - CXL_POISON_ENABLED_SCAN_MEDIA = 4, - CXL_POISON_ENABLED_SCAN_RESULTS = 5, - CXL_POISON_ENABLED_MAX = 6, -}; - -enum security_cmd_enabled_bits { - CXL_SEC_ENABLED_SANITIZE = 0, - CXL_SEC_ENABLED_SECURE_ERASE = 1, - CXL_SEC_ENABLED_GET_SECURITY_STATE = 2, - CXL_SEC_ENABLED_SET_PASSPHRASE = 3, - CXL_SEC_ENABLED_DISABLE_PASSPHRASE = 4, - CXL_SEC_ENABLED_UNLOCK = 5, - CXL_SEC_ENABLED_FREEZE_SECURITY = 6, - CXL_SEC_ENABLED_PASSPHRASE_SECURE_ERASE = 7, - CXL_SEC_ENABLED_MAX = 8, -}; - -enum sam_status { - SAM_STAT_GOOD = 0, - SAM_STAT_CHECK_CONDITION = 2, - SAM_STAT_CONDITION_MET = 4, - SAM_STAT_BUSY = 8, - SAM_STAT_INTERMEDIATE = 16, - SAM_STAT_INTERMEDIATE_CONDITION_MET = 20, - SAM_STAT_RESERVATION_CONFLICT = 24, - SAM_STAT_COMMAND_TERMINATED = 34, - SAM_STAT_TASK_SET_FULL = 40, - SAM_STAT_ACA_ACTIVE = 48, - SAM_STAT_TASK_ABORTED = 64, -}; - -struct scsi_sense_hdr { - u8 response_code; - u8 sense_key; - u8 asc; - u8 ascq; - u8 byte4; - u8 byte5; - u8 byte6; - u8 additional_length; -}; - -enum scsi_host_status { - DID_OK = 0, - DID_NO_CONNECT = 1, - DID_BUS_BUSY = 2, - DID_TIME_OUT = 3, - DID_BAD_TARGET = 4, - DID_ABORT = 5, - DID_PARITY = 6, - DID_ERROR = 7, - DID_RESET = 8, - DID_BAD_INTR = 9, - DID_PASSTHROUGH = 10, - DID_SOFT_ERROR = 11, - DID_IMM_RETRY = 12, - DID_REQUEUE = 13, - DID_TRANSPORT_DISRUPTED = 14, - DID_TRANSPORT_FAILFAST = 15, - DID_TRANSPORT_MARGINAL = 20, -}; - -enum scsi_disposition { - NEEDS_RETRY = 8193, - SUCCESS = 8194, - FAILED = 8195, - QUEUED = 8196, - SOFT_ERROR = 8197, - ADD_TO_MLQUEUE = 8198, - TIMEOUT_ERROR = 8199, - SCSI_RETURN_NOT_HANDLED = 8200, - FAST_IO_FAIL = 8201, -}; - -typedef __u64 blist_flags_t; - -struct scsi_mode_data { - __u32 length; - __u16 block_descriptor_length; - __u8 medium_type; - __u8 device_specific; - __u8 header_length; - __u8 longlba: 1; -}; - -enum scsi_device_state { - SDEV_CREATED = 1, - SDEV_RUNNING = 2, - SDEV_CANCEL = 3, - SDEV_DEL = 4, - SDEV_QUIESCE = 5, - SDEV_OFFLINE = 6, - SDEV_TRANSPORT_OFFLINE = 7, - SDEV_BLOCK = 8, - SDEV_CREATED_BLOCK = 9, -}; - -struct scsi_vpd { - struct callback_head rcu; - int len; - unsigned char data[0]; -}; - -struct Scsi_Host; - -struct scsi_target; - -struct scsi_device_handler; - -struct scsi_device { - struct Scsi_Host *host; - struct request_queue *request_queue; - struct list_head siblings; - struct list_head same_target_siblings; - struct sbitmap budget_map; - atomic_t device_blocked; - atomic_t restarts; - spinlock_t list_lock; - struct list_head starved_entry; - short unsigned int queue_depth; - short unsigned int max_queue_depth; - short unsigned int last_queue_full_depth; - short unsigned int last_queue_full_count; - long unsigned int last_queue_full_time; - long unsigned int queue_ramp_up_period; - long unsigned int last_queue_ramp_up; - unsigned int id; - unsigned int channel; - u64 lun; - unsigned int manufacturer; - unsigned int sector_size; - void *hostdata; - unsigned char type; - char scsi_level; - char inq_periph_qual; - struct mutex inquiry_mutex; - unsigned char inquiry_len; - unsigned char *inquiry; - const char *vendor; - const char *model; - const char *rev; - struct scsi_vpd *vpd_pg0; - struct scsi_vpd *vpd_pg83; - struct scsi_vpd *vpd_pg80; - struct scsi_vpd *vpd_pg89; - struct scsi_vpd *vpd_pgb0; - struct scsi_vpd *vpd_pgb1; - struct scsi_vpd *vpd_pgb2; - struct scsi_vpd *vpd_pgb7; - struct scsi_target *sdev_target; - blist_flags_t sdev_bflags; - unsigned int eh_timeout; - unsigned int manage_system_start_stop: 1; - unsigned int manage_runtime_start_stop: 1; - unsigned int manage_shutdown: 1; - unsigned int force_runtime_start_on_system_start: 1; - unsigned int is_ata: 1; - unsigned int removable: 1; - unsigned int changed: 1; - unsigned int busy: 1; - unsigned int lockable: 1; - unsigned int locked: 1; - unsigned int borken: 1; - unsigned int disconnect: 1; - unsigned int soft_reset: 1; - unsigned int sdtr: 1; - unsigned int wdtr: 1; - unsigned int ppr: 1; - unsigned int tagged_supported: 1; - unsigned int simple_tags: 1; - unsigned int was_reset: 1; - unsigned int expecting_cc_ua: 1; - unsigned int use_10_for_rw: 1; - unsigned int use_10_for_ms: 1; - unsigned int set_dbd_for_ms: 1; - unsigned int read_before_ms: 1; - unsigned int no_report_opcodes: 1; - unsigned int no_write_same: 1; - unsigned int use_16_for_rw: 1; - unsigned int use_16_for_sync: 1; - unsigned int skip_ms_page_8: 1; - unsigned int skip_ms_page_3f: 1; - unsigned int skip_vpd_pages: 1; - unsigned int try_vpd_pages: 1; - unsigned int use_192_bytes_for_3f: 1; - unsigned int no_start_on_add: 1; - unsigned int allow_restart: 1; - unsigned int start_stop_pwr_cond: 1; - unsigned int no_uld_attach: 1; - unsigned int select_no_atn: 1; - unsigned int fix_capacity: 1; - unsigned int guess_capacity: 1; - unsigned int retry_hwerror: 1; - unsigned int last_sector_bug: 1; - unsigned int no_read_disc_info: 1; - unsigned int no_read_capacity_16: 1; - unsigned int try_rc_10_first: 1; - unsigned int security_supported: 1; - unsigned int is_visible: 1; - unsigned int wce_default_on: 1; - unsigned int no_dif: 1; - unsigned int broken_fua: 1; - unsigned int lun_in_cdb: 1; - unsigned int unmap_limit_for_ws: 1; - unsigned int rpm_autosuspend: 1; - unsigned int ignore_media_change: 1; - unsigned int silence_suspend: 1; - unsigned int no_vpd_size: 1; - unsigned int cdl_supported: 1; - unsigned int cdl_enable: 1; - unsigned int queue_stopped; - bool offline_already; - atomic_t ua_new_media_ctr; - atomic_t ua_por_ctr; - atomic_t disk_events_disable_depth; - long unsigned int supported_events[1]; - long unsigned int pending_events[1]; - struct list_head event_list; - struct work_struct event_work; - unsigned int max_device_blocked; - atomic_t iorequest_cnt; - atomic_t iodone_cnt; - atomic_t ioerr_cnt; - atomic_t iotmo_cnt; - struct device sdev_gendev; - struct device sdev_dev; - struct work_struct requeue_work; - struct scsi_device_handler *handler; - void *handler_data; - size_t dma_drain_len; - void *dma_drain_buf; - unsigned int sg_timeout; - unsigned int sg_reserved_size; - struct bsg_device *bsg_dev; - unsigned char access_state; - struct mutex state_mutex; - enum scsi_device_state sdev_state; - struct task_struct *quiesced_by; - long unsigned int sdev_data[0]; -}; - -enum scsi_host_state { - SHOST_CREATED = 1, - SHOST_RUNNING = 2, - SHOST_CANCEL = 3, - SHOST_DEL = 4, - SHOST_RECOVERY = 5, - SHOST_CANCEL_RECOVERY = 6, - SHOST_DEL_RECOVERY = 7, -}; - -struct scsi_host_template; - -struct scsi_transport_template; - -struct Scsi_Host { - struct list_head __devices; - struct list_head __targets; - struct list_head starved_list; - spinlock_t default_lock; - spinlock_t *host_lock; - struct mutex scan_mutex; - struct list_head eh_abort_list; - struct list_head eh_cmd_q; - struct task_struct *ehandler; - struct completion *eh_action; - wait_queue_head_t host_wait; - const struct scsi_host_template *hostt; - struct scsi_transport_template *transportt; - struct kref tagset_refcnt; - struct completion tagset_freed; - struct blk_mq_tag_set tag_set; - atomic_t host_blocked; - unsigned int host_failed; - unsigned int host_eh_scheduled; - unsigned int host_no; - int eh_deadline; - long unsigned int last_reset; - unsigned int max_channel; - unsigned int max_id; - u64 max_lun; - unsigned int unique_id; - short unsigned int max_cmd_len; - int this_id; - int can_queue; - short int cmd_per_lun; - short unsigned int sg_tablesize; - short unsigned int sg_prot_tablesize; - unsigned int max_sectors; - unsigned int opt_sectors; - unsigned int max_segment_size; - unsigned int dma_alignment; - long unsigned int dma_boundary; - long unsigned int virt_boundary_mask; - unsigned int nr_hw_queues; - unsigned int nr_maps; - unsigned int active_mode: 2; - unsigned int host_self_blocked: 1; - unsigned int reverse_ordering: 1; - unsigned int tmf_in_progress: 1; - unsigned int async_scan: 1; - unsigned int eh_noresume: 1; - unsigned int no_write_same: 1; - unsigned int host_tagset: 1; - unsigned int queuecommand_may_block: 1; - unsigned int short_inquiry: 1; - unsigned int no_scsi2_lun_in_cdb: 1; - struct workqueue_struct *work_q; - struct workqueue_struct *tmf_work_q; - unsigned int max_host_blocked; - unsigned int prot_capabilities; - unsigned char prot_guard_type; - long unsigned int base; - long unsigned int io_port; - unsigned char n_io_port; - unsigned char dma_channel; - unsigned int irq; - enum scsi_host_state shost_state; - struct device shost_gendev; - struct device shost_dev; - void *shost_data; - struct device *dma_dev; - int rpm_autosuspend_delay; - long unsigned int hostdata[0]; -}; - -enum scsi_target_state { - STARGET_CREATED = 1, - STARGET_RUNNING = 2, - STARGET_REMOVE = 3, - STARGET_CREATED_REMOVE = 4, - STARGET_DEL = 5, -}; - -struct scsi_target { - struct scsi_device *starget_sdev_user; - struct list_head siblings; - struct list_head devices; - struct device dev; - struct kref reap_ref; - unsigned int channel; - unsigned int id; - unsigned int create: 1; - unsigned int single_lun: 1; - unsigned int pdt_1f_for_no_lun: 1; - unsigned int no_report_luns: 1; - unsigned int expecting_lun_change: 1; - atomic_t target_busy; - atomic_t target_blocked; - unsigned int can_queue; - unsigned int max_target_blocked; - char scsi_level; - enum scsi_target_state state; - void *hostdata; - long unsigned int starget_data[0]; -}; - -struct scsi_failure { - int result; - u8 sense; - u8 asc; - u8 ascq; - s8 allowed; - s8 retries; -}; - -struct scsi_failures { - int total_allowed; - int total_retries; - struct scsi_failure *failure_definitions; -}; - -struct scsi_exec_args { - unsigned char *sense; - unsigned int sense_len; - struct scsi_sense_hdr *sshdr; - blk_mq_req_flags_t req_flags; - int scmd_flags; - int *resid; - struct scsi_failures *failures; -}; - -struct scsi_data_buffer { - struct sg_table table; - unsigned int length; -}; - -enum scsi_cmnd_submitter { - SUBMITTED_BY_BLOCK_LAYER = 0, - SUBMITTED_BY_SCSI_ERROR_HANDLER = 1, - SUBMITTED_BY_SCSI_RESET_IOCTL = 2, -} __attribute__((mode(byte))); - -struct scsi_cmnd { - struct scsi_device *device; - struct list_head eh_entry; - struct delayed_work abort_work; - struct callback_head rcu; - int eh_eflags; - int budget_token; - long unsigned int jiffies_at_alloc; - int retries; - int allowed; - unsigned char prot_op; - unsigned char prot_type; - unsigned char prot_flags; - enum scsi_cmnd_submitter submitter; - short unsigned int cmd_len; - enum dma_data_direction sc_data_direction; - unsigned char cmnd[32]; - struct scsi_data_buffer sdb; - struct scsi_data_buffer *prot_sdb; - unsigned int underflow; - unsigned int transfersize; - unsigned int resid_len; - unsigned int sense_len; - unsigned char *sense_buffer; - int flags; - long unsigned int state; - unsigned int extra_len; - unsigned char *host_scribble; - int result; -}; - -enum scsi_prot_operations { - SCSI_PROT_NORMAL = 0, - SCSI_PROT_READ_INSERT = 1, - SCSI_PROT_WRITE_STRIP = 2, - SCSI_PROT_READ_STRIP = 3, - SCSI_PROT_WRITE_INSERT = 4, - SCSI_PROT_READ_PASS = 5, - SCSI_PROT_WRITE_PASS = 6, -}; - -struct scsi_driver { - struct device_driver gendrv; - int (*resume)(struct device *); - void (*rescan)(struct device *); - blk_status_t (*init_command)(struct scsi_cmnd *); - void (*uninit_command)(struct scsi_cmnd *); - int (*done)(struct scsi_cmnd *); - int (*eh_action)(struct scsi_cmnd *, int); - void (*eh_reset)(struct scsi_cmnd *); -}; - -enum scsi_timeout_action { - SCSI_EH_DONE = 0, - SCSI_EH_RESET_TIMER = 1, - SCSI_EH_NOT_HANDLED = 2, -}; - -struct scsi_host_template { - unsigned int cmd_size; - int (*queuecommand)(struct Scsi_Host *, struct scsi_cmnd *); - void (*commit_rqs)(struct Scsi_Host *, u16); - struct module *module; - const char *name; - const char * (*info)(struct Scsi_Host *); - int (*ioctl)(struct scsi_device *, unsigned int, void *); - int (*compat_ioctl)(struct scsi_device *, unsigned int, void *); - int (*init_cmd_priv)(struct Scsi_Host *, struct scsi_cmnd *); - int (*exit_cmd_priv)(struct Scsi_Host *, struct scsi_cmnd *); - int (*eh_abort_handler)(struct scsi_cmnd *); - int (*eh_device_reset_handler)(struct scsi_cmnd *); - int (*eh_target_reset_handler)(struct scsi_cmnd *); - int (*eh_bus_reset_handler)(struct scsi_cmnd *); - int (*eh_host_reset_handler)(struct scsi_cmnd *); - int (*sdev_init)(struct scsi_device *); - int (*sdev_configure)(struct scsi_device *, struct queue_limits *); - void (*sdev_destroy)(struct scsi_device *); - int (*target_alloc)(struct scsi_target *); - void (*target_destroy)(struct scsi_target *); - int (*scan_finished)(struct Scsi_Host *, long unsigned int); - void (*scan_start)(struct Scsi_Host *); - int (*change_queue_depth)(struct scsi_device *, int); - void (*map_queues)(struct Scsi_Host *); - int (*mq_poll)(struct Scsi_Host *, unsigned int); - bool (*dma_need_drain)(struct request *); - int (*bios_param)(struct scsi_device *, struct block_device *, sector_t, int *); - void (*unlock_native_capacity)(struct scsi_device *); - int (*show_info)(struct seq_file *, struct Scsi_Host *); - int (*write_info)(struct Scsi_Host *, char *, int); - enum scsi_timeout_action (*eh_timed_out)(struct scsi_cmnd *); - bool (*eh_should_retry_cmd)(struct scsi_cmnd *); - int (*host_reset)(struct Scsi_Host *, int); - const char *proc_name; - int can_queue; - int this_id; - short unsigned int sg_tablesize; - short unsigned int sg_prot_tablesize; - unsigned int max_sectors; - unsigned int max_segment_size; - unsigned int dma_alignment; - long unsigned int dma_boundary; - long unsigned int virt_boundary_mask; - short int cmd_per_lun; - bool tag_alloc_policy_rr: 1; - unsigned int track_queue_depth: 1; - unsigned int supported_mode: 2; - unsigned int emulated: 1; - unsigned int skip_settle_delay: 1; - unsigned int no_write_same: 1; - unsigned int host_tagset: 1; - unsigned int queuecommand_may_block: 1; - unsigned int max_host_blocked; - const struct attribute_group **shost_groups; - const struct attribute_group **sdev_groups; - u64 vendor_id; -}; - -struct trace_event_raw_scsi_dispatch_cmd_start { - struct trace_entry ent; - unsigned int host_no; - unsigned int channel; - unsigned int id; - unsigned int lun; - unsigned int opcode; - unsigned int cmd_len; - int driver_tag; - int scheduler_tag; - unsigned int data_sglen; - unsigned int prot_sglen; - unsigned char prot_op; - u32 __data_loc_cmnd; - char __data[0]; -}; - -struct trace_event_raw_scsi_dispatch_cmd_error { - struct trace_entry ent; - unsigned int host_no; - unsigned int channel; - unsigned int id; - unsigned int lun; - int rtn; - unsigned int opcode; - unsigned int cmd_len; - int driver_tag; - int scheduler_tag; - unsigned int data_sglen; - unsigned int prot_sglen; - unsigned char prot_op; - u32 __data_loc_cmnd; - char __data[0]; -}; - -struct trace_event_raw_scsi_cmd_done_timeout_template { - struct trace_entry ent; - unsigned int host_no; - unsigned int channel; - unsigned int id; - unsigned int lun; - int result; - unsigned int opcode; - unsigned int cmd_len; - int driver_tag; - int scheduler_tag; - unsigned int data_sglen; - unsigned int prot_sglen; - unsigned char prot_op; - u32 __data_loc_cmnd; - u8 sense_key; - u8 asc; - u8 ascq; - char __data[0]; -}; - -struct trace_event_raw_scsi_eh_wakeup { - struct trace_entry ent; - unsigned int host_no; - char __data[0]; -}; - -struct trace_event_data_offsets_scsi_dispatch_cmd_start { - u32 cmnd; - const void *cmnd_ptr_; -}; - -struct trace_event_data_offsets_scsi_dispatch_cmd_error { - u32 cmnd; - const void *cmnd_ptr_; -}; - -struct trace_event_data_offsets_scsi_cmd_done_timeout_template { - u32 cmnd; - const void *cmnd_ptr_; -}; - -struct trace_event_data_offsets_scsi_eh_wakeup {}; - -typedef void (*btf_trace_scsi_dispatch_cmd_start)(void *, struct scsi_cmnd *); - -typedef void (*btf_trace_scsi_dispatch_cmd_error)(void *, struct scsi_cmnd *, int); - -typedef void (*btf_trace_scsi_dispatch_cmd_done)(void *, struct scsi_cmnd *); - -typedef void (*btf_trace_scsi_dispatch_cmd_timeout)(void *, struct scsi_cmnd *); - -typedef void (*btf_trace_scsi_eh_wakeup)(void *, struct Scsi_Host *); - -enum scsi_vpd_parameters { - SCSI_VPD_HEADER_SIZE = 4, - SCSI_VPD_LIST_SIZE = 36, -}; - -struct scsi_event { - enum scsi_device_event evt_type; - struct list_head node; -}; - -typedef void (*activate_complete)(void *, int); - -struct scsi_device_handler { - struct list_head list; - struct module *module; - const char *name; - enum scsi_disposition (*check_sense)(struct scsi_device *, struct scsi_sense_hdr *); - int (*attach)(struct scsi_device *); - void (*detach)(struct scsi_device *); - int (*activate)(struct scsi_device *, activate_complete, void *); - blk_status_t (*prep_fn)(struct scsi_device *, struct request *); - int (*set_params)(struct scsi_device *, const char *); - void (*rescan)(struct scsi_device *); -}; - -struct scsi_transport_template { - struct transport_container host_attrs; - struct transport_container target_attrs; - struct transport_container device_attrs; - int (*user_scan)(struct Scsi_Host *, uint, uint, u64); - int device_size; - int device_private_offset; - int target_size; - int target_private_offset; - int host_size; - unsigned int create_work_queue: 1; - void (*eh_strategy_handler)(struct Scsi_Host *); -}; - -enum scsi_host_prot_capabilities { - SHOST_DIF_TYPE1_PROTECTION = 1, - SHOST_DIF_TYPE2_PROTECTION = 2, - SHOST_DIF_TYPE3_PROTECTION = 4, - SHOST_DIX_TYPE0_PROTECTION = 8, - SHOST_DIX_TYPE1_PROTECTION = 16, - SHOST_DIX_TYPE2_PROTECTION = 32, - SHOST_DIX_TYPE3_PROTECTION = 64, -}; - -enum scsi_ml_status { - SCSIML_STAT_OK = 0, - SCSIML_STAT_RESV_CONFLICT = 1, - SCSIML_STAT_NOSPC = 2, - SCSIML_STAT_MED_ERROR = 3, - SCSIML_STAT_TGT_FAILURE = 4, - SCSIML_STAT_DL_TIMEOUT = 5, -}; - -enum { - ACTION_FAIL = 0, - ACTION_REPREP = 1, - ACTION_DELAYED_REPREP = 2, - ACTION_RETRY = 3, - ACTION_DELAYED_RETRY = 4, -}; - -enum scsi_devinfo_key { - SCSI_DEVINFO_GLOBAL = 0, - SCSI_DEVINFO_SPI = 1, -}; - -struct scsi_dev_info_list { - struct list_head dev_info_list; - char vendor[8]; - char model[16]; - blist_flags_t flags; - unsigned int compatible; -}; - -struct scsi_dev_info_list_table { - struct list_head node; - struct list_head scsi_dev_info_list; - const char *name; - int key; -}; - -struct double_list { - struct list_head *top; - struct list_head *bottom; -}; - -struct scsi_lun { - __u8 scsi_lun[8]; -}; - -enum scsi_pr_type { - SCSI_PR_WRITE_EXCLUSIVE = 1, - SCSI_PR_EXCLUSIVE_ACCESS = 3, - SCSI_PR_WRITE_EXCLUSIVE_REG_ONLY = 5, - SCSI_PR_EXCLUSIVE_ACCESS_REG_ONLY = 6, - SCSI_PR_WRITE_EXCLUSIVE_ALL_REGS = 7, - SCSI_PR_EXCLUSIVE_ACCESS_ALL_REGS = 8, -}; - -enum scsi_scan_mode { - SCSI_SCAN_INITIAL = 0, - SCSI_SCAN_RESCAN = 1, - SCSI_SCAN_MANUAL = 2, -}; - -struct scsi_nl_hdr { - __u8 version; - __u8 transport; - __u16 magic; - __u16 msgtype; - __u16 msglen; -}; - -enum fc_port_type { - FC_PORTTYPE_UNKNOWN = 0, - FC_PORTTYPE_OTHER = 1, - FC_PORTTYPE_NOTPRESENT = 2, - FC_PORTTYPE_NPORT = 3, - FC_PORTTYPE_NLPORT = 4, - FC_PORTTYPE_LPORT = 5, - FC_PORTTYPE_PTP = 6, - FC_PORTTYPE_NPIV = 7, -}; - -enum fc_port_state { - FC_PORTSTATE_UNKNOWN = 0, - FC_PORTSTATE_NOTPRESENT = 1, - FC_PORTSTATE_ONLINE = 2, - FC_PORTSTATE_OFFLINE = 3, - FC_PORTSTATE_BLOCKED = 4, - FC_PORTSTATE_BYPASSED = 5, - FC_PORTSTATE_DIAGNOSTICS = 6, - FC_PORTSTATE_LINKDOWN = 7, - FC_PORTSTATE_ERROR = 8, - FC_PORTSTATE_LOOPBACK = 9, - FC_PORTSTATE_DELETED = 10, - FC_PORTSTATE_MARGINAL = 11, -}; - -enum fc_vport_state { - FC_VPORT_UNKNOWN = 0, - FC_VPORT_ACTIVE = 1, - FC_VPORT_DISABLED = 2, - FC_VPORT_LINKDOWN = 3, - FC_VPORT_INITIALIZING = 4, - FC_VPORT_NO_FABRIC_SUPP = 5, - FC_VPORT_NO_FABRIC_RSCS = 6, - FC_VPORT_FABRIC_LOGOUT = 7, - FC_VPORT_FABRIC_REJ_WWN = 8, - FC_VPORT_FAILED = 9, -}; - -enum fc_tgtid_binding_type { - FC_TGTID_BIND_NONE = 0, - FC_TGTID_BIND_BY_WWPN = 1, - FC_TGTID_BIND_BY_WWNN = 2, - FC_TGTID_BIND_BY_ID = 3, -}; - -struct fc_vport_identifiers { - u64 node_name; - u64 port_name; - u32 roles; - bool disable; - enum fc_port_type vport_type; - char symbolic_name[64]; -}; - -struct fc_vport { - enum fc_vport_state vport_state; - enum fc_vport_state vport_last_state; - u64 node_name; - u64 port_name; - u32 roles; - u32 vport_id; - enum fc_port_type vport_type; - char symbolic_name[64]; - void *dd_data; - struct Scsi_Host *shost; - unsigned int channel; - u32 number; - u8 flags; - struct list_head peers; - struct device dev; - struct work_struct vport_delete_work; -}; - -struct fc_rport_identifiers { - u64 node_name; - u64 port_name; - u32 port_id; - u32 roles; -}; - -struct fc_fpin_stats { - u64 dn; - u64 dn_unknown; - u64 dn_timeout; - u64 dn_unable_to_route; - u64 dn_device_specific; - u64 li; - u64 li_failure_unknown; - u64 li_link_failure_count; - u64 li_loss_of_sync_count; - u64 li_loss_of_signals_count; - u64 li_prim_seq_err_count; - u64 li_invalid_tx_word_count; - u64 li_invalid_crc_count; - u64 li_device_specific; - u64 cn; - u64 cn_clear; - u64 cn_lost_credit; - u64 cn_credit_stall; - u64 cn_oversubscription; - u64 cn_device_specific; -}; - -struct fc_rport { - u32 maxframe_size; - u32 supported_classes; - u32 dev_loss_tmo; - struct fc_fpin_stats fpin_stats; - u64 node_name; - u64 port_name; - u32 port_id; - u32 roles; - enum fc_port_state port_state; - u32 scsi_target_id; - u32 fast_io_fail_tmo; - void *dd_data; - unsigned int channel; - u32 number; - u8 flags; - struct list_head peers; - struct device dev; - struct delayed_work dev_loss_work; - struct work_struct scan_work; - struct delayed_work fail_io_work; - struct work_struct stgt_delete_work; - struct work_struct rport_delete_work; - struct request_queue *rqst_q; - struct workqueue_struct *devloss_work_q; -}; - -struct fc_starget_attrs { - u64 node_name; - u64 port_name; - u32 port_id; -}; - -struct fc_host_statistics { - u64 seconds_since_last_reset; - u64 tx_frames; - u64 tx_words; - u64 rx_frames; - u64 rx_words; - u64 lip_count; - u64 nos_count; - u64 error_frames; - u64 dumped_frames; - u64 link_failure_count; - u64 loss_of_sync_count; - u64 loss_of_signal_count; - u64 prim_seq_protocol_err_count; - u64 invalid_tx_word_count; - u64 invalid_crc_count; - u64 fcp_input_requests; - u64 fcp_output_requests; - u64 fcp_control_requests; - u64 fcp_input_megabytes; - u64 fcp_output_megabytes; - u64 fcp_packet_alloc_failures; - u64 fcp_packet_aborts; - u64 fcp_frame_alloc_failures; - u64 fc_no_free_exch; - u64 fc_no_free_exch_xid; - u64 fc_xid_not_found; - u64 fc_xid_busy; - u64 fc_seq_not_found; - u64 fc_non_bls_resp; - u64 cn_sig_warn; - u64 cn_sig_alarm; -}; - -enum fc_host_event_code { - FCH_EVT_LIP = 1, - FCH_EVT_LINKUP = 2, - FCH_EVT_LINKDOWN = 3, - FCH_EVT_LIPRESET = 4, - FCH_EVT_RSCN = 5, - FCH_EVT_ADAPTER_CHANGE = 259, - FCH_EVT_PORT_UNKNOWN = 512, - FCH_EVT_PORT_OFFLINE = 513, - FCH_EVT_PORT_ONLINE = 514, - FCH_EVT_PORT_FABRIC = 516, - FCH_EVT_LINK_UNKNOWN = 1280, - FCH_EVT_LINK_FPIN = 1281, - FCH_EVT_LINK_FPIN_ACK = 1282, - FCH_EVT_VENDOR_UNIQUE = 65535, -}; - -struct fc_host_attrs { - u64 node_name; - u64 port_name; - u64 permanent_port_name; - u32 supported_classes; - u8 supported_fc4s[32]; - u32 supported_speeds; - u32 maxframe_size; - u16 max_npiv_vports; - u32 max_ct_payload; - u32 num_ports; - u32 num_discovered_ports; - u32 bootbios_state; - char serial_number[64]; - char manufacturer[64]; - char model[256]; - char model_description[256]; - char hardware_version[64]; - char driver_version[64]; - char firmware_version[64]; - char optionrom_version[64]; - char vendor_identifier[8]; - char bootbios_version[256]; - u32 port_id; - enum fc_port_type port_type; - enum fc_port_state port_state; - u8 active_fc4s[32]; - u32 speed; - u64 fabric_name; - char symbolic_name[256]; - char system_hostname[256]; - u32 dev_loss_tmo; - struct fc_fpin_stats fpin_stats; - enum fc_tgtid_binding_type tgtid_bind_type; - struct list_head rports; - struct list_head rport_bindings; - struct list_head vports; - u32 next_rport_number; - u32 next_target_id; - u32 next_vport_number; - u16 npiv_vports_inuse; - struct workqueue_struct *work_q; - struct request_queue *rqst_q; - u8 fdmi_version; -}; - -struct fc_function_template { - void (*get_rport_dev_loss_tmo)(struct fc_rport *); - void (*set_rport_dev_loss_tmo)(struct fc_rport *, u32); - void (*get_starget_node_name)(struct scsi_target *); - void (*get_starget_port_name)(struct scsi_target *); - void (*get_starget_port_id)(struct scsi_target *); - void (*get_host_port_id)(struct Scsi_Host *); - void (*get_host_port_type)(struct Scsi_Host *); - void (*get_host_port_state)(struct Scsi_Host *); - void (*get_host_active_fc4s)(struct Scsi_Host *); - void (*get_host_speed)(struct Scsi_Host *); - void (*get_host_fabric_name)(struct Scsi_Host *); - void (*get_host_symbolic_name)(struct Scsi_Host *); - void (*set_host_system_hostname)(struct Scsi_Host *); - struct fc_host_statistics * (*get_fc_host_stats)(struct Scsi_Host *); - void (*reset_fc_host_stats)(struct Scsi_Host *); - int (*issue_fc_host_lip)(struct Scsi_Host *); - void (*dev_loss_tmo_callbk)(struct fc_rport *); - void (*terminate_rport_io)(struct fc_rport *); - void (*set_vport_symbolic_name)(struct fc_vport *); - int (*vport_create)(struct fc_vport *, bool); - int (*vport_disable)(struct fc_vport *, bool); - int (*vport_delete)(struct fc_vport *); - u32 max_bsg_segments; - int (*bsg_request)(struct bsg_job *); - int (*bsg_timeout)(struct bsg_job *); - u32 dd_fcrport_size; - u32 dd_fcvport_size; - u32 dd_bsg_size; - long unsigned int show_rport_maxframe_size: 1; - long unsigned int show_rport_supported_classes: 1; - long unsigned int show_rport_dev_loss_tmo: 1; - long unsigned int show_starget_node_name: 1; - long unsigned int show_starget_port_name: 1; - long unsigned int show_starget_port_id: 1; - long unsigned int show_host_node_name: 1; - long unsigned int show_host_port_name: 1; - long unsigned int show_host_permanent_port_name: 1; - long unsigned int show_host_supported_classes: 1; - long unsigned int show_host_supported_fc4s: 1; - long unsigned int show_host_supported_speeds: 1; - long unsigned int show_host_maxframe_size: 1; - long unsigned int show_host_serial_number: 1; - long unsigned int show_host_manufacturer: 1; - long unsigned int show_host_model: 1; - long unsigned int show_host_model_description: 1; - long unsigned int show_host_hardware_version: 1; - long unsigned int show_host_driver_version: 1; - long unsigned int show_host_firmware_version: 1; - long unsigned int show_host_optionrom_version: 1; - long unsigned int show_host_port_id: 1; - long unsigned int show_host_port_type: 1; - long unsigned int show_host_port_state: 1; - long unsigned int show_host_active_fc4s: 1; - long unsigned int show_host_speed: 1; - long unsigned int show_host_fabric_name: 1; - long unsigned int show_host_symbolic_name: 1; - long unsigned int show_host_system_hostname: 1; - long unsigned int disable_target_scan: 1; -}; - -struct fc_nl_event { - struct scsi_nl_hdr snlh; - __u64 seconds; - __u64 vendor_id; - __u16 host_no; - __u16 event_datalen; - __u32 event_num; - __u32 event_code; - union { - __u32 event_data; - struct { - struct {} __empty_event_data_flex; - __u8 event_data_flex[0]; - }; - }; -}; - -struct fc_bsg_host_add_rport { - __u8 reserved; - __u8 port_id[3]; -}; - -struct fc_bsg_host_del_rport { - __u8 reserved; - __u8 port_id[3]; -}; - -struct fc_bsg_host_els { - __u8 command_code; - __u8 port_id[3]; -}; - -struct fc_bsg_ctels_reply { - __u32 status; - struct { - __u8 action; - __u8 reason_code; - __u8 reason_explanation; - __u8 vendor_unique; - } rjt_data; -}; - -struct fc_bsg_host_ct { - __u8 reserved; - __u8 port_id[3]; - __u32 preamble_word0; - __u32 preamble_word1; - __u32 preamble_word2; -}; - -struct fc_bsg_host_vendor { - __u64 vendor_id; - __u32 vendor_cmd[0]; -}; - -struct fc_bsg_host_vendor_reply { - struct { - struct {} __empty_vendor_rsp; - __u32 vendor_rsp[0]; - }; -}; - -struct fc_bsg_rport_els { - __u8 els_code; -}; - -struct fc_bsg_rport_ct { - __u32 preamble_word0; - __u32 preamble_word1; - __u32 preamble_word2; -}; - -struct fc_bsg_request { - __u32 msgcode; - union { - struct fc_bsg_host_add_rport h_addrport; - struct fc_bsg_host_del_rport h_delrport; - struct fc_bsg_host_els h_els; - struct fc_bsg_host_ct h_ct; - struct fc_bsg_host_vendor h_vendor; - struct fc_bsg_rport_els r_els; - struct fc_bsg_rport_ct r_ct; - } rqst_data; -} __attribute__((packed)); - -struct fc_bsg_reply { - __u32 result; - __u32 reply_payload_rcv_len; - union { - struct fc_bsg_host_vendor_reply vendor_reply; - struct fc_bsg_ctels_reply ctels_reply; - } reply_data; -}; - -enum fc_ls_tlv_dtag { - ELS_DTAG_LS_REQ_INFO = 1, - ELS_DTAG_LNK_FAULT_CAP = 65549, - ELS_DTAG_CG_SIGNAL_CAP = 65551, - ELS_DTAG_LNK_INTEGRITY = 131073, - ELS_DTAG_DELIVERY = 131074, - ELS_DTAG_PEER_CONGEST = 131075, - ELS_DTAG_CONGESTION = 131076, - ELS_DTAG_FPIN_REGISTER = 196609, -}; - -struct fc_tlv_desc { - __be32 desc_tag; - __be32 desc_len; - __u8 desc_value[0]; -}; - -enum fc_fpin_li_event_types { - FPIN_LI_UNKNOWN = 0, - FPIN_LI_LINK_FAILURE = 1, - FPIN_LI_LOSS_OF_SYNC = 2, - FPIN_LI_LOSS_OF_SIG = 3, - FPIN_LI_PRIM_SEQ_ERR = 4, - FPIN_LI_INVALID_TX_WD = 5, - FPIN_LI_INVALID_CRC = 6, - FPIN_LI_DEVICE_SPEC = 15, -}; - -enum fc_fpin_deli_event_types { - FPIN_DELI_UNKNOWN = 0, - FPIN_DELI_TIMEOUT = 1, - FPIN_DELI_UNABLE_TO_ROUTE = 2, - FPIN_DELI_DEVICE_SPEC = 15, -}; - -enum fc_fpin_congn_event_types { - FPIN_CONGN_CLEAR = 0, - FPIN_CONGN_LOST_CREDIT = 1, - FPIN_CONGN_CREDIT_STALL = 2, - FPIN_CONGN_OVERSUBSCRIPTION = 3, - FPIN_CONGN_DEVICE_SPEC = 15, -}; - -struct fc_fn_li_desc { - __be32 desc_tag; - __be32 desc_len; - __be64 detecting_wwpn; - __be64 attached_wwpn; - __be16 event_type; - __be16 event_modifier; - __be32 event_threshold; - __be32 event_count; - __be32 pname_count; - __be64 pname_list[0]; -}; - -struct fc_fn_deli_desc { - __be32 desc_tag; - __be32 desc_len; - __be64 detecting_wwpn; - __be64 attached_wwpn; - __be32 deli_reason_code; -}; - -struct fc_fn_peer_congn_desc { - __be32 desc_tag; - __be32 desc_len; - __be64 detecting_wwpn; - __be64 attached_wwpn; - __be16 event_type; - __be16 event_modifier; - __be32 event_period; - __be32 pname_count; - __be64 pname_list[0]; -}; - -struct fc_fn_congn_desc { - __be32 desc_tag; - __be32 desc_len; - __be16 event_type; - __be16 event_modifier; - __be32 event_period; - __u8 severity; - __u8 resv[3]; -}; - -struct fc_els_fpin { - __u8 fpin_cmd; - __u8 fpin_zero[3]; - __be32 desc_len; - struct fc_tlv_desc fpin_desc[0]; -}; - -struct fc_internal { - struct scsi_transport_template t; - struct fc_function_template *f; - struct device_attribute private_starget_attrs[3]; - struct device_attribute *starget_attrs[4]; - struct device_attribute private_host_attrs[29]; - struct device_attribute *host_attrs[30]; - struct transport_container rport_attr_cont; - struct device_attribute private_rport_attrs[10]; - struct device_attribute *rport_attrs[11]; - struct transport_container vport_attr_cont; - struct device_attribute private_vport_attrs[9]; - struct device_attribute *vport_attrs[10]; -}; - -enum zbc_zone_type { - ZBC_ZONE_TYPE_CONV = 1, - ZBC_ZONE_TYPE_SEQWRITE_REQ = 2, - ZBC_ZONE_TYPE_SEQWRITE_PREF = 3, - ZBC_ZONE_TYPE_SEQ_OR_BEFORE_REQ = 4, - ZBC_ZONE_TYPE_GAP = 5, -}; - -enum zbc_zone_cond { - ZBC_ZONE_COND_NO_WP = 0, - ZBC_ZONE_COND_EMPTY = 1, - ZBC_ZONE_COND_IMP_OPEN = 2, - ZBC_ZONE_COND_EXP_OPEN = 3, - ZBC_ZONE_COND_CLOSED = 4, - ZBC_ZONE_COND_READONLY = 13, - ZBC_ZONE_COND_FULL = 14, - ZBC_ZONE_COND_OFFLINE = 15, -}; - -enum zbc_zone_alignment_method { - ZBC_CONSTANT_ZONE_LENGTH = 1, - ZBC_CONSTANT_ZONE_START_OFFSET = 8, -}; - -struct zoned_disk_info { - u32 nr_zones; - u32 zone_blocks; -}; - -struct opal_dev; - -struct scsi_disk { - struct scsi_device *device; - struct device disk_dev; - struct gendisk *disk; - struct opal_dev *opal_dev; - struct zoned_disk_info early_zone_info; - struct zoned_disk_info zone_info; - u32 zones_optimal_open; - u32 zones_optimal_nonseq; - u32 zones_max_open; - u32 zone_starting_lba_gran; - atomic_t openers; - sector_t capacity; - int max_retries; - u32 min_xfer_blocks; - u32 max_xfer_blocks; - u32 opt_xfer_blocks; - u32 max_ws_blocks; - u32 max_unmap_blocks; - u32 unmap_granularity; - u32 unmap_alignment; - u32 max_atomic; - u32 atomic_alignment; - u32 atomic_granularity; - u32 max_atomic_with_boundary; - u32 max_atomic_boundary; - u32 index; - unsigned int physical_block_size; - unsigned int max_medium_access_timeouts; - unsigned int medium_access_timed_out; - u16 permanent_stream_count; - u8 media_present; - u8 write_prot; - u8 protection_type; - u8 provisioning_mode; - u8 zeroing_mode; - u8 nr_actuators; - bool suspended; - unsigned int ATO: 1; - unsigned int cache_override: 1; - unsigned int WCE: 1; - unsigned int RCD: 1; - unsigned int DPOFUA: 1; - unsigned int first_scan: 1; - unsigned int lbpme: 1; - unsigned int lbprz: 1; - unsigned int lbpu: 1; - unsigned int lbpws: 1; - unsigned int lbpws10: 1; - unsigned int lbpvpd: 1; - unsigned int ws10: 1; - unsigned int ws16: 1; - unsigned int rc_basis: 2; - unsigned int zoned: 2; - unsigned int urswrz: 1; - unsigned int security: 1; - unsigned int ignore_medium_access_errors: 1; - unsigned int rscs: 1; - unsigned int use_atomic_write_boundary: 1; -}; - -struct trace_event_raw_scsi_prepare_zone_append { - struct trace_entry ent; - unsigned int host_no; - unsigned int channel; - unsigned int id; - unsigned int lun; - sector_t lba; - unsigned int wp_offset; - char __data[0]; -}; - -struct trace_event_raw_scsi_zone_wp_update { - struct trace_entry ent; - unsigned int host_no; - unsigned int channel; - unsigned int id; - unsigned int lun; - sector_t rq_sector; - unsigned int wp_offset; - unsigned int good_bytes; - char __data[0]; -}; - -struct trace_event_data_offsets_scsi_prepare_zone_append {}; - -struct trace_event_data_offsets_scsi_zone_wp_update {}; - -typedef void (*btf_trace_scsi_prepare_zone_append)(void *, struct scsi_cmnd *, sector_t, unsigned int); - -typedef void (*btf_trace_scsi_zone_wp_update)(void *, struct scsi_cmnd *, sector_t, unsigned int, unsigned int); - -enum { - GENHD_FL_REMOVABLE = 1, - GENHD_FL_HIDDEN = 2, - GENHD_FL_NO_PART = 4, -}; - -struct hd_geometry { - unsigned char heads; - unsigned char sectors; - short unsigned int cylinders; - long unsigned int start; -}; - -struct pr_keys { - u32 generation; - u32 num_keys; - u64 keys[0]; -}; - -struct pr_held_reservation { - u64 key; - u32 generation; - enum pr_type type; -}; - -enum nvme_subsys_type { - NVME_NQN_DISC = 1, - NVME_NQN_NVME = 2, - NVME_NQN_CURR = 3, -}; - -enum nvme_ctrl_type { - NVME_CTRL_IO = 1, - NVME_CTRL_DISC = 2, - NVME_CTRL_ADMIN = 3, -}; - -enum nvme_dctype { - NVME_DCTYPE_NOT_REPORTED = 0, - NVME_DCTYPE_DDC = 1, - NVME_DCTYPE_CDC = 2, -}; - -enum { - NVME_REG_CAP = 0, - NVME_REG_VS = 8, - NVME_REG_INTMS = 12, - NVME_REG_INTMC = 16, - NVME_REG_CC = 20, - NVME_REG_CSTS = 28, - NVME_REG_NSSR = 32, - NVME_REG_AQA = 36, - NVME_REG_ASQ = 40, - NVME_REG_ACQ = 48, - NVME_REG_CMBLOC = 56, - NVME_REG_CMBSZ = 60, - NVME_REG_BPINFO = 64, - NVME_REG_BPRSEL = 68, - NVME_REG_BPMBL = 72, - NVME_REG_CMBMSC = 80, - NVME_REG_CRTO = 104, - NVME_REG_PMRCAP = 3584, - NVME_REG_PMRCTL = 3588, - NVME_REG_PMRSTS = 3592, - NVME_REG_PMREBS = 3596, - NVME_REG_PMRSWTP = 3600, - NVME_REG_DBS = 4096, -}; - -enum { - NVME_CC_ENABLE = 1, - NVME_CC_EN_SHIFT = 0, - NVME_CC_CSS_SHIFT = 4, - NVME_CC_CSS_MASK = 112, - NVME_CC_CSS_NVM = 0, - NVME_CC_CSS_CSI = 96, - NVME_CC_MPS_SHIFT = 7, - NVME_CC_MPS_MASK = 1920, - NVME_CC_AMS_SHIFT = 11, - NVME_CC_AMS_MASK = 14336, - NVME_CC_AMS_RR = 0, - NVME_CC_AMS_WRRU = 2048, - NVME_CC_AMS_VS = 14336, - NVME_CC_SHN_SHIFT = 14, - NVME_CC_SHN_MASK = 49152, - NVME_CC_SHN_NONE = 0, - NVME_CC_SHN_NORMAL = 16384, - NVME_CC_SHN_ABRUPT = 32768, - NVME_CC_IOSQES_SHIFT = 16, - NVME_CC_IOSQES_MASK = 983040, - NVME_CC_IOSQES = 393216, - NVME_CC_IOCQES_SHIFT = 20, - NVME_CC_IOCQES_MASK = 15728640, - NVME_CC_IOCQES = 4194304, - NVME_CC_CRIME = 16777216, -}; - -enum { - NVME_CSTS_RDY = 1, - NVME_CSTS_CFS = 2, - NVME_CSTS_NSSRO = 16, - NVME_CSTS_PP = 32, - NVME_CSTS_SHST_NORMAL = 0, - NVME_CSTS_SHST_OCCUR = 4, - NVME_CSTS_SHST_CMPLT = 8, - NVME_CSTS_SHST_MASK = 12, -}; - -enum { - NVME_CAP_CSS_NVM = 1, - NVME_CAP_CSS_CSI = 64, -}; - -enum { - NVME_CAP_CRMS_CRWMS = 576460752303423488ULL, - NVME_CAP_CRMS_CRIMS = 1152921504606846976ULL, -}; - -struct nvme_id_power_state { - __le16 max_power; - __u8 rsvd2; - __u8 flags; - __le32 entry_lat; - __le32 exit_lat; - __u8 read_tput; - __u8 read_lat; - __u8 write_tput; - __u8 write_lat; - __le16 idle_power; - __u8 idle_scale; - __u8 rsvd19; - __le16 active_power; - __u8 active_work_scale; - __u8 rsvd23[9]; -}; - -enum { - NVME_PS_FLAGS_MAX_POWER_SCALE = 1, - NVME_PS_FLAGS_NON_OP_STATE = 2, -}; - -enum nvme_ctrl_attr { - NVME_CTRL_ATTR_HID_128_BIT = 1, - NVME_CTRL_ATTR_TBKAS = 64, - NVME_CTRL_ATTR_ELBAS = 32768, - NVME_CTRL_ATTR_RHII = 262144, - NVME_CTRL_ATTR_FDPS = 524288, -}; - -struct nvme_id_ctrl { - __le16 vid; - __le16 ssvid; - char sn[20]; - char mn[40]; - char fr[8]; - __u8 rab; - __u8 ieee[3]; - __u8 cmic; - __u8 mdts; - __le16 cntlid; - __le32 ver; - __le32 rtd3r; - __le32 rtd3e; - __le32 oaes; - __le32 ctratt; - __u8 rsvd100[11]; - __u8 cntrltype; - __u8 fguid[16]; - __le16 crdt1; - __le16 crdt2; - __le16 crdt3; - __u8 rsvd134[122]; - __le16 oacs; - __u8 acl; - __u8 aerl; - __u8 frmw; - __u8 lpa; - __u8 elpe; - __u8 npss; - __u8 avscc; - __u8 apsta; - __le16 wctemp; - __le16 cctemp; - __le16 mtfa; - __le32 hmpre; - __le32 hmmin; - __u8 tnvmcap[16]; - __u8 unvmcap[16]; - __le32 rpmbs; - __le16 edstt; - __u8 dsto; - __u8 fwug; - __le16 kas; - __le16 hctma; - __le16 mntmt; - __le16 mxtmt; - __le32 sanicap; - __le32 hmminds; - __le16 hmmaxd; - __le16 nvmsetidmax; - __le16 endgidmax; - __u8 anatt; - __u8 anacap; - __le32 anagrpmax; - __le32 nanagrpid; - __u8 rsvd352[160]; - __u8 sqes; - __u8 cqes; - __le16 maxcmd; - __le32 nn; - __le16 oncs; - __le16 fuses; - __u8 fna; - __u8 vwc; - __le16 awun; - __le16 awupf; - __u8 nvscc; - __u8 nwpc; - __le16 acwu; - __u8 rsvd534[2]; - __le32 sgls; - __le32 mnan; - __u8 rsvd544[224]; - char subnqn[256]; - __u8 rsvd1024[768]; - __le32 ioccsz; - __le32 iorcsz; - __le16 icdoff; - __u8 ctrattr; - __u8 msdbd; - __u8 rsvd1804[2]; - __u8 dctype; - __u8 rsvd1807[241]; - struct nvme_id_power_state psd[32]; - __u8 vs[1024]; -}; - -enum { - NVME_CTRL_CMIC_MULTI_PORT = 1, - NVME_CTRL_CMIC_MULTI_CTRL = 2, - NVME_CTRL_CMIC_ANA = 8, - NVME_CTRL_ONCS_COMPARE = 1, - NVME_CTRL_ONCS_WRITE_UNCORRECTABLE = 2, - NVME_CTRL_ONCS_DSM = 4, - NVME_CTRL_ONCS_WRITE_ZEROES = 8, - NVME_CTRL_ONCS_RESERVATIONS = 32, - NVME_CTRL_ONCS_TIMESTAMP = 64, - NVME_CTRL_VWC_PRESENT = 1, - NVME_CTRL_OACS_SEC_SUPP = 1, - NVME_CTRL_OACS_NS_MNGT_SUPP = 8, - NVME_CTRL_OACS_DIRECTIVES = 32, - NVME_CTRL_OACS_DBBUF_SUPP = 256, - NVME_CTRL_LPA_CMD_EFFECTS_LOG = 2, - NVME_CTRL_CTRATT_128_ID = 1, - NVME_CTRL_CTRATT_NON_OP_PSP = 2, - NVME_CTRL_CTRATT_NVM_SETS = 4, - NVME_CTRL_CTRATT_READ_RECV_LVLS = 8, - NVME_CTRL_CTRATT_ENDURANCE_GROUPS = 16, - NVME_CTRL_CTRATT_PREDICTABLE_LAT = 32, - NVME_CTRL_CTRATT_NAMESPACE_GRANULARITY = 128, - NVME_CTRL_CTRATT_UUID_LIST = 512, - NVME_CTRL_SGLS_BYTE_ALIGNED = 1, - NVME_CTRL_SGLS_DWORD_ALIGNED = 2, - NVME_CTRL_SGLS_KSDBDS = 4, - NVME_CTRL_SGLS_MSDS = 524288, - NVME_CTRL_SGLS_SAOS = 1048576, -}; - -struct nvme_lbaf { - __le16 ms; - __u8 ds; - __u8 rp; -}; - -struct nvme_id_ns { - __le64 nsze; - __le64 ncap; - __le64 nuse; - __u8 nsfeat; - __u8 nlbaf; - __u8 flbas; - __u8 mc; - __u8 dpc; - __u8 dps; - __u8 nmic; - __u8 rescap; - __u8 fpi; - __u8 dlfeat; - __le16 nawun; - __le16 nawupf; - __le16 nacwu; - __le16 nabsn; - __le16 nabo; - __le16 nabspf; - __le16 noiob; - __u8 nvmcap[16]; - __le16 npwg; - __le16 npwa; - __le16 npdg; - __le16 npda; - __le16 nows; - __u8 rsvd74[18]; - __le32 anagrpid; - __u8 rsvd96[3]; - __u8 nsattr; - __le16 nvmsetid; - __le16 endgid; - __u8 nguid[16]; - __u8 eui64[8]; - struct nvme_lbaf lbaf[64]; - __u8 vs[3712]; -}; - -struct nvme_id_ns_cs_indep { - __u8 nsfeat; - __u8 nmic; - __u8 rescap; - __u8 fpi; - __le32 anagrpid; - __u8 nsattr; - __u8 rsvd9; - __le16 nvmsetid; - __le16 endgid; - __u8 nstat; - __u8 rsvd15[4081]; -}; - -struct nvme_id_ns_nvm { - __le64 lbstm; - __u8 pic; - __u8 rsvd9[3]; - __le32 elbaf[64]; - __u8 rsvd268[3828]; -}; - -enum { - NVME_ID_NS_NVM_STS_MASK = 127, - NVME_ID_NS_NVM_GUARD_SHIFT = 7, - NVME_ID_NS_NVM_GUARD_MASK = 3, - NVME_ID_NS_NVM_QPIF_SHIFT = 9, - NVME_ID_NS_NVM_QPIF_MASK = 15, - NVME_ID_NS_NVM_QPIFS = 8, -}; - -struct nvme_id_ctrl_nvm { - __u8 vsl; - __u8 wzsl; - __u8 wusl; - __u8 dmrl; - __le32 dmrsl; - __le64 dmsl; - __u8 rsvd16[4080]; -}; - -enum { - NVME_ID_CNS_NS = 0, - NVME_ID_CNS_CTRL = 1, - NVME_ID_CNS_NS_ACTIVE_LIST = 2, - NVME_ID_CNS_NS_DESC_LIST = 3, - NVME_ID_CNS_CS_NS = 5, - NVME_ID_CNS_CS_CTRL = 6, - NVME_ID_CNS_NS_ACTIVE_LIST_CS = 7, - NVME_ID_CNS_NS_CS_INDEP = 8, - NVME_ID_CNS_NS_PRESENT_LIST = 16, - NVME_ID_CNS_NS_PRESENT = 17, - NVME_ID_CNS_CTRL_NS_LIST = 18, - NVME_ID_CNS_CTRL_LIST = 19, - NVME_ID_CNS_SCNDRY_CTRL_LIST = 21, - NVME_ID_CNS_NS_GRANULARITY = 22, - NVME_ID_CNS_UUID_LIST = 23, - NVME_ID_CNS_ENDGRP_LIST = 25, -}; - -enum { - NVME_CSI_NVM = 0, - NVME_CSI_ZNS = 2, -}; - -enum { - NVME_NS_FEAT_THIN = 1, - NVME_NS_FEAT_ATOMICS = 2, - NVME_NS_FEAT_IO_OPT = 16, - NVME_NS_ATTR_RO = 1, - NVME_NS_FLBAS_LBA_MASK = 15, - NVME_NS_FLBAS_LBA_UMASK = 96, - NVME_NS_FLBAS_LBA_SHIFT = 1, - NVME_NS_FLBAS_META_EXT = 16, - NVME_NS_NMIC_SHARED = 1, - NVME_NS_ROTATIONAL = 16, - NVME_NS_VWC_NOT_PRESENT = 32, - NVME_LBAF_RP_BEST = 0, - NVME_LBAF_RP_BETTER = 1, - NVME_LBAF_RP_GOOD = 2, - NVME_LBAF_RP_DEGRADED = 3, - NVME_NS_DPC_PI_LAST = 16, - NVME_NS_DPC_PI_FIRST = 8, - NVME_NS_DPC_PI_TYPE3 = 4, - NVME_NS_DPC_PI_TYPE2 = 2, - NVME_NS_DPC_PI_TYPE1 = 1, - NVME_NS_DPS_PI_FIRST = 8, - NVME_NS_DPS_PI_MASK = 7, - NVME_NS_DPS_PI_TYPE1 = 1, - NVME_NS_DPS_PI_TYPE2 = 2, - NVME_NS_DPS_PI_TYPE3 = 3, -}; - -enum { - NVME_NSTAT_NRDY = 1, -}; - -enum { - NVME_NVM_NS_16B_GUARD = 0, - NVME_NVM_NS_32B_GUARD = 1, - NVME_NVM_NS_64B_GUARD = 2, - NVME_NVM_NS_QTYPE_GUARD = 3, -}; - -struct nvme_ns_id_desc { - __u8 nidt; - __u8 nidl; - __le16 reserved; -}; - -enum { - NVME_NIDT_EUI64 = 1, - NVME_NIDT_NGUID = 2, - NVME_NIDT_UUID = 3, - NVME_NIDT_CSI = 4, -}; - -struct nvme_fdp_config { - __u8 flags; - __u8 fdpcidx; - __le16 reserved; -}; - -struct nvme_fdp_ruh_desc { - __u8 ruht; - __u8 reserved[3]; -}; - -struct nvme_fdp_config_desc { - __le16 dsze; - __u8 fdpa; - __u8 vss; - __le32 nrg; - __le16 nruh; - __le16 maxpids; - __le32 nns; - __le64 runs; - __le32 erutl; - __u8 rsvd28[36]; - struct nvme_fdp_ruh_desc ruhs[0]; -}; - -struct nvme_fdp_config_log { - __le16 numfdpc; - __u8 ver; - __u8 rsvd3; - __le32 sze; - __u8 rsvd8[8]; -}; - -struct nvme_fw_slot_info_log { - __u8 afi; - __u8 rsvd1[7]; - __le64 frs[7]; - __u8 rsvd64[448]; -}; - -enum { - NVME_CMD_EFFECTS_CSUPP = 1, - NVME_CMD_EFFECTS_LBCC = 2, - NVME_CMD_EFFECTS_NCC = 4, - NVME_CMD_EFFECTS_NIC = 8, - NVME_CMD_EFFECTS_CCC = 16, - NVME_CMD_EFFECTS_CSER_MASK = 49152, - NVME_CMD_EFFECTS_CSE_MASK = 458752, - NVME_CMD_EFFECTS_UUID_SEL = 524288, - NVME_CMD_EFFECTS_SCOPE_MASK = 4293918720, -}; - -struct nvme_effects_log { - __le32 acs[256]; - __le32 iocs[256]; - __u8 resv[2048]; -}; - -enum nvme_ana_state { - NVME_ANA_OPTIMIZED = 1, - NVME_ANA_NONOPTIMIZED = 2, - NVME_ANA_INACCESSIBLE = 3, - NVME_ANA_PERSISTENT_LOSS = 4, - NVME_ANA_CHANGE = 15, -}; - -struct nvme_ana_rsp_hdr { - __le64 chgcnt; - __le16 ngrps; - __le16 rsvd10[3]; -}; - -enum { - NVME_AER_ERROR = 0, - NVME_AER_SMART = 1, - NVME_AER_NOTICE = 2, - NVME_AER_CSS = 6, - NVME_AER_VS = 7, -}; - -enum { - NVME_AER_ERROR_PERSIST_INT_ERR = 3, -}; - -enum { - NVME_AER_NOTICE_NS_CHANGED = 0, - NVME_AER_NOTICE_FW_ACT_STARTING = 1, - NVME_AER_NOTICE_ANA = 3, - NVME_AER_NOTICE_DISC_CHANGED = 240, -}; - -enum { - NVME_AEN_CFG_NS_ATTR = 256, - NVME_AEN_CFG_FW_ACT = 512, - NVME_AEN_CFG_ANA_CHANGE = 2048, - NVME_AEN_CFG_DISC_CHANGE = -2147483648, -}; - -enum nvme_opcode { - nvme_cmd_flush = 0, - nvme_cmd_write = 1, - nvme_cmd_read = 2, - nvme_cmd_write_uncor = 4, - nvme_cmd_compare = 5, - nvme_cmd_write_zeroes = 8, - nvme_cmd_dsm = 9, - nvme_cmd_verify = 12, - nvme_cmd_resv_register = 13, - nvme_cmd_resv_report = 14, - nvme_cmd_resv_acquire = 17, - nvme_cmd_io_mgmt_recv = 18, - nvme_cmd_resv_release = 21, - nvme_cmd_zone_mgmt_send = 121, - nvme_cmd_zone_mgmt_recv = 122, - nvme_cmd_zone_append = 125, - nvme_cmd_vendor_start = 128, -}; - -struct nvme_sgl_desc { - __le64 addr; - __le32 length; - __u8 rsvd[3]; - __u8 type; -}; - -struct nvme_keyed_sgl_desc { - __le64 addr; - __u8 length[3]; - __u8 key[4]; - __u8 type; -}; - -union nvme_data_ptr { - struct { - __le64 prp1; - __le64 prp2; - }; - struct nvme_sgl_desc sgl; - struct nvme_keyed_sgl_desc ksgl; -}; - -enum { - NVME_CMD_FUSE_FIRST = 1, - NVME_CMD_FUSE_SECOND = 2, - NVME_CMD_SGL_METABUF = 64, - NVME_CMD_SGL_METASEG = 128, - NVME_CMD_SGL_ALL = 192, -}; - -struct nvme_common_command { - __u8 opcode; - __u8 flags; - __u16 command_id; - __le32 nsid; - __le32 cdw2[2]; - __le64 metadata; - union nvme_data_ptr dptr; - union { - struct { - __le32 cdw10; - __le32 cdw11; - __le32 cdw12; - __le32 cdw13; - __le32 cdw14; - __le32 cdw15; - }; - struct { - __le32 cdw10; - __le32 cdw11; - __le32 cdw12; - __le32 cdw13; - __le32 cdw14; - __le32 cdw15; - } cdws; - }; -}; - -struct nvme_rw_command { - __u8 opcode; - __u8 flags; - __u16 command_id; - __le32 nsid; - __le32 cdw2; - __le32 cdw3; - __le64 metadata; - union nvme_data_ptr dptr; - __le64 slba; - __le16 length; - __le16 control; - __le32 dsmgmt; - __le32 reftag; - __le16 lbat; - __le16 lbatm; -}; - -enum { - NVME_RW_LR = 32768, - NVME_RW_FUA = 16384, - NVME_RW_APPEND_PIREMAP = 512, - NVME_RW_DSM_FREQ_UNSPEC = 0, - NVME_RW_DSM_FREQ_TYPICAL = 1, - NVME_RW_DSM_FREQ_RARE = 2, - NVME_RW_DSM_FREQ_READS = 3, - NVME_RW_DSM_FREQ_WRITES = 4, - NVME_RW_DSM_FREQ_RW = 5, - NVME_RW_DSM_FREQ_ONCE = 6, - NVME_RW_DSM_FREQ_PREFETCH = 7, - NVME_RW_DSM_FREQ_TEMP = 8, - NVME_RW_DSM_LATENCY_NONE = 0, - NVME_RW_DSM_LATENCY_IDLE = 16, - NVME_RW_DSM_LATENCY_NORM = 32, - NVME_RW_DSM_LATENCY_LOW = 48, - NVME_RW_DSM_SEQ_REQ = 64, - NVME_RW_DSM_COMPRESSED = 128, - NVME_RW_PRINFO_PRCHK_REF = 1024, - NVME_RW_PRINFO_PRCHK_APP = 2048, - NVME_RW_PRINFO_PRCHK_GUARD = 4096, - NVME_RW_PRINFO_PRACT = 8192, - NVME_RW_DTYPE_STREAMS = 16, - NVME_RW_DTYPE_DPLCMT = 32, - NVME_WZ_DEAC = 512, -}; - -struct nvme_dsm_cmd { - __u8 opcode; - __u8 flags; - __u16 command_id; - __le32 nsid; - __u64 rsvd2[2]; - union nvme_data_ptr dptr; - __le32 nr; - __le32 attributes; - __u32 rsvd12[4]; -}; - -enum { - NVME_DSMGMT_IDR = 1, - NVME_DSMGMT_IDW = 2, - NVME_DSMGMT_AD = 4, -}; - -struct nvme_dsm_range { - __le32 cattr; - __le32 nlb; - __le64 slba; -}; - -struct nvme_write_zeroes_cmd { - __u8 opcode; - __u8 flags; - __u16 command_id; - __le32 nsid; - __u64 rsvd2; - __le64 metadata; - union nvme_data_ptr dptr; - __le64 slba; - __le16 length; - __le16 control; - __le32 dsmgmt; - __le32 reftag; - __le16 lbat; - __le16 lbatm; -}; - -enum nvme_zone_mgmt_action { - NVME_ZONE_CLOSE = 1, - NVME_ZONE_FINISH = 2, - NVME_ZONE_OPEN = 3, - NVME_ZONE_RESET = 4, - NVME_ZONE_OFFLINE = 5, - NVME_ZONE_SET_DESC_EXT = 16, -}; - -struct nvme_zone_mgmt_send_cmd { - __u8 opcode; - __u8 flags; - __u16 command_id; - __le32 nsid; - __le32 cdw2[2]; - __le64 metadata; - union nvme_data_ptr dptr; - __le64 slba; - __le32 cdw12; - __u8 zsa; - __u8 select_all; - __u8 rsvd13[2]; - __le32 cdw14[2]; -}; - -struct nvme_zone_mgmt_recv_cmd { - __u8 opcode; - __u8 flags; - __u16 command_id; - __le32 nsid; - __le64 rsvd2[2]; - union nvme_data_ptr dptr; - __le64 slba; - __le32 numd; - __u8 zra; - __u8 zrasf; - __u8 pr; - __u8 rsvd13; - __le32 cdw14[2]; -}; - -struct nvme_io_mgmt_recv_cmd { - __u8 opcode; - __u8 flags; - __u16 command_id; - __le32 nsid; - __le64 rsvd2[2]; - union nvme_data_ptr dptr; - __u8 mo; - __u8 rsvd11; - __u16 mos; - __le32 numd; - __le32 cdw12[4]; -}; - -enum { - NVME_IO_MGMT_RECV_MO_RUHS = 1, -}; - -struct nvme_fdp_ruh_status_desc { - __le16 pid; - __le16 ruhid; - __le32 earutr; - __le64 ruamw; - __u8 reserved[16]; -}; - -struct nvme_fdp_ruh_status { - __u8 rsvd0[14]; - __le16 nruhsd; - struct nvme_fdp_ruh_status_desc ruhsd[0]; -}; - -struct nvme_feat_auto_pst { - __le64 entries[32]; -}; - -struct nvme_feat_host_behavior { - __u8 acre; - __u8 etdas; - __u8 lbafee; - __u8 resv1[509]; -}; - -enum { - NVME_ENABLE_ACRE = 1, - NVME_ENABLE_LBAFEE = 1, -}; - -enum nvme_admin_opcode { - nvme_admin_delete_sq = 0, - nvme_admin_create_sq = 1, - nvme_admin_get_log_page = 2, - nvme_admin_delete_cq = 4, - nvme_admin_create_cq = 5, - nvme_admin_identify = 6, - nvme_admin_abort_cmd = 8, - nvme_admin_set_features = 9, - nvme_admin_get_features = 10, - nvme_admin_async_event = 12, - nvme_admin_ns_mgmt = 13, - nvme_admin_activate_fw = 16, - nvme_admin_download_fw = 17, - nvme_admin_dev_self_test = 20, - nvme_admin_ns_attach = 21, - nvme_admin_keep_alive = 24, - nvme_admin_directive_send = 25, - nvme_admin_directive_recv = 26, - nvme_admin_virtual_mgmt = 28, - nvme_admin_nvme_mi_send = 29, - nvme_admin_nvme_mi_recv = 30, - nvme_admin_dbbuf = 124, - nvme_admin_format_nvm = 128, - nvme_admin_security_send = 129, - nvme_admin_security_recv = 130, - nvme_admin_sanitize_nvm = 132, - nvme_admin_get_lba_status = 134, - nvme_admin_vendor_start = 192, -}; - -enum { - NVME_QUEUE_PHYS_CONTIG = 1, - NVME_CQ_IRQ_ENABLED = 2, - NVME_SQ_PRIO_URGENT = 0, - NVME_SQ_PRIO_HIGH = 2, - NVME_SQ_PRIO_MEDIUM = 4, - NVME_SQ_PRIO_LOW = 6, - NVME_FEAT_ARBITRATION = 1, - NVME_FEAT_POWER_MGMT = 2, - NVME_FEAT_LBA_RANGE = 3, - NVME_FEAT_TEMP_THRESH = 4, - NVME_FEAT_ERR_RECOVERY = 5, - NVME_FEAT_VOLATILE_WC = 6, - NVME_FEAT_NUM_QUEUES = 7, - NVME_FEAT_IRQ_COALESCE = 8, - NVME_FEAT_IRQ_CONFIG = 9, - NVME_FEAT_WRITE_ATOMIC = 10, - NVME_FEAT_ASYNC_EVENT = 11, - NVME_FEAT_AUTO_PST = 12, - NVME_FEAT_HOST_MEM_BUF = 13, - NVME_FEAT_TIMESTAMP = 14, - NVME_FEAT_KATO = 15, - NVME_FEAT_HCTM = 16, - NVME_FEAT_NOPSC = 17, - NVME_FEAT_RRL = 18, - NVME_FEAT_PLM_CONFIG = 19, - NVME_FEAT_PLM_WINDOW = 20, - NVME_FEAT_HOST_BEHAVIOR = 22, - NVME_FEAT_SANITIZE = 23, - NVME_FEAT_FDP = 29, - NVME_FEAT_SW_PROGRESS = 128, - NVME_FEAT_HOST_ID = 129, - NVME_FEAT_RESV_MASK = 130, - NVME_FEAT_RESV_PERSIST = 131, - NVME_FEAT_WRITE_PROTECT = 132, - NVME_FEAT_VENDOR_START = 192, - NVME_FEAT_VENDOR_END = 255, - NVME_LOG_SUPPORTED = 0, - NVME_LOG_ERROR = 1, - NVME_LOG_SMART = 2, - NVME_LOG_FW_SLOT = 3, - NVME_LOG_CHANGED_NS = 4, - NVME_LOG_CMD_EFFECTS = 5, - NVME_LOG_DEVICE_SELF_TEST = 6, - NVME_LOG_TELEMETRY_HOST = 7, - NVME_LOG_TELEMETRY_CTRL = 8, - NVME_LOG_ENDURANCE_GROUP = 9, - NVME_LOG_ANA = 12, - NVME_LOG_FEATURES = 18, - NVME_LOG_RMI = 22, - NVME_LOG_FDP_CONFIGS = 32, - NVME_LOG_DISC = 112, - NVME_LOG_RESERVATION = 128, - NVME_FWACT_REPL = 0, - NVME_FWACT_REPL_ACTV = 8, - NVME_FWACT_ACTV = 16, -}; - -struct nvme_identify { - __u8 opcode; - __u8 flags; - __u16 command_id; - __le32 nsid; - __u64 rsvd2[2]; - union nvme_data_ptr dptr; - __u8 cns; - __u8 rsvd3; - __le16 ctrlid; - __le16 cnssid; - __u8 rsvd11; - __u8 csi; - __u32 rsvd12[4]; -}; - -struct nvme_features { - __u8 opcode; - __u8 flags; - __u16 command_id; - __le32 nsid; - __u64 rsvd2[2]; - union nvme_data_ptr dptr; - __le32 fid; - __le32 dword11; - __le32 dword12; - __le32 dword13; - __le32 dword14; - __le32 dword15; -}; - -struct nvme_create_cq { - __u8 opcode; - __u8 flags; - __u16 command_id; - __u32 rsvd1[5]; - __le64 prp1; - __u64 rsvd8; - __le16 cqid; - __le16 qsize; - __le16 cq_flags; - __le16 irq_vector; - __u32 rsvd12[4]; -}; - -struct nvme_create_sq { - __u8 opcode; - __u8 flags; - __u16 command_id; - __u32 rsvd1[5]; - __le64 prp1; - __u64 rsvd8; - __le16 sqid; - __le16 qsize; - __le16 sq_flags; - __le16 cqid; - __u32 rsvd12[4]; -}; - -struct nvme_delete_queue { - __u8 opcode; - __u8 flags; - __u16 command_id; - __u32 rsvd1[9]; - __le16 qid; - __u16 rsvd10; - __u32 rsvd11[5]; -}; - -struct nvme_abort_cmd { - __u8 opcode; - __u8 flags; - __u16 command_id; - __u32 rsvd1[9]; - __le16 sqid; - __u16 cid; - __u32 rsvd11[5]; -}; - -struct nvme_download_firmware { - __u8 opcode; - __u8 flags; - __u16 command_id; - __u32 rsvd1[5]; - union nvme_data_ptr dptr; - __le32 numd; - __le32 offset; - __u32 rsvd12[4]; -}; - -struct nvme_format_cmd { - __u8 opcode; - __u8 flags; - __u16 command_id; - __le32 nsid; - __u64 rsvd2[4]; - __le32 cdw10; - __u32 rsvd11[5]; -}; - -struct nvme_get_log_page_command { - __u8 opcode; - __u8 flags; - __u16 command_id; - __le32 nsid; - __u64 rsvd2[2]; - union nvme_data_ptr dptr; - __u8 lid; - __u8 lsp; - __le16 numdl; - __le16 numdu; - __le16 lsi; - union { - struct { - __le32 lpol; - __le32 lpou; - }; - __le64 lpo; - }; - __u8 rsvd14[3]; - __u8 csi; - __u32 rsvd15; -}; - -struct nvme_directive_cmd { - __u8 opcode; - __u8 flags; - __u16 command_id; - __le32 nsid; - __u64 rsvd2[2]; - union nvme_data_ptr dptr; - __le32 numd; - __u8 doper; - __u8 dtype; - __le16 dspec; - __u8 endir; - __u8 tdtype; - __u16 rsvd15; - __u32 rsvd16[3]; -}; - -enum nvmf_fabrics_opcode { - nvme_fabrics_command = 127, -}; - -enum nvmf_capsule_command { - nvme_fabrics_type_property_set = 0, - nvme_fabrics_type_connect = 1, - nvme_fabrics_type_property_get = 4, - nvme_fabrics_type_auth_send = 5, - nvme_fabrics_type_auth_receive = 6, -}; - -struct nvmf_common_command { - __u8 opcode; - __u8 resv1; - __u16 command_id; - __u8 fctype; - __u8 resv2[35]; - __u8 ts[24]; -}; - -struct nvmf_connect_command { - __u8 opcode; - __u8 resv1; - __u16 command_id; - __u8 fctype; - __u8 resv2[19]; - union nvme_data_ptr dptr; - __le16 recfmt; - __le16 qid; - __le16 sqsize; - __u8 cattr; - __u8 resv3; - __le32 kato; - __u8 resv4[12]; -}; - -struct nvmf_property_set_command { - __u8 opcode; - __u8 resv1; - __u16 command_id; - __u8 fctype; - __u8 resv2[35]; - __u8 attrib; - __u8 resv3[3]; - __le32 offset; - __le64 value; - __u8 resv4[8]; -}; - -struct nvmf_property_get_command { - __u8 opcode; - __u8 resv1; - __u16 command_id; - __u8 fctype; - __u8 resv2[35]; - __u8 attrib; - __u8 resv3[3]; - __le32 offset; - __u8 resv4[16]; -}; - -struct nvmf_auth_common_command { - __u8 opcode; - __u8 resv1; - __u16 command_id; - __u8 fctype; - __u8 resv2[19]; - union nvme_data_ptr dptr; - __u8 resv3; - __u8 spsp0; - __u8 spsp1; - __u8 secp; - __le32 al_tl; - __u8 resv4[16]; -}; - -struct nvmf_auth_send_command { - __u8 opcode; - __u8 resv1; - __u16 command_id; - __u8 fctype; - __u8 resv2[19]; - union nvme_data_ptr dptr; - __u8 resv3; - __u8 spsp0; - __u8 spsp1; - __u8 secp; - __le32 tl; - __u8 resv4[16]; -}; - -struct nvmf_auth_receive_command { - __u8 opcode; - __u8 resv1; - __u16 command_id; - __u8 fctype; - __u8 resv2[19]; - union nvme_data_ptr dptr; - __u8 resv3; - __u8 spsp0; - __u8 spsp1; - __u8 secp; - __le32 al; - __u8 resv4[16]; -}; - -struct nvme_dbbuf { - __u8 opcode; - __u8 flags; - __u16 command_id; - __u32 rsvd1[5]; - __le64 prp1; - __le64 prp2; - __u32 rsvd12[6]; -}; - -struct nvme_command { - union { - struct nvme_common_command common; - struct nvme_rw_command rw; - struct nvme_identify identify; - struct nvme_features features; - struct nvme_create_cq create_cq; - struct nvme_create_sq create_sq; - struct nvme_delete_queue delete_queue; - struct nvme_download_firmware dlfw; - struct nvme_format_cmd format; - struct nvme_dsm_cmd dsm; - struct nvme_write_zeroes_cmd write_zeroes; - struct nvme_zone_mgmt_send_cmd zms; - struct nvme_zone_mgmt_recv_cmd zmr; - struct nvme_abort_cmd abort; - struct nvme_get_log_page_command get_log_page; - struct nvmf_common_command fabrics; - struct nvmf_connect_command connect; - struct nvmf_property_set_command prop_set; - struct nvmf_property_get_command prop_get; - struct nvmf_auth_common_command auth_common; - struct nvmf_auth_send_command auth_send; - struct nvmf_auth_receive_command auth_receive; - struct nvme_dbbuf dbbuf; - struct nvme_directive_cmd directive; - struct nvme_io_mgmt_recv_cmd imr; - }; -}; - -enum { - NVME_SCT_GENERIC = 0, - NVME_SC_SUCCESS = 0, - NVME_SC_INVALID_OPCODE = 1, - NVME_SC_INVALID_FIELD = 2, - NVME_SC_CMDID_CONFLICT = 3, - NVME_SC_DATA_XFER_ERROR = 4, - NVME_SC_POWER_LOSS = 5, - NVME_SC_INTERNAL = 6, - NVME_SC_ABORT_REQ = 7, - NVME_SC_ABORT_QUEUE = 8, - NVME_SC_FUSED_FAIL = 9, - NVME_SC_FUSED_MISSING = 10, - NVME_SC_INVALID_NS = 11, - NVME_SC_CMD_SEQ_ERROR = 12, - NVME_SC_SGL_INVALID_LAST = 13, - NVME_SC_SGL_INVALID_COUNT = 14, - NVME_SC_SGL_INVALID_DATA = 15, - NVME_SC_SGL_INVALID_METADATA = 16, - NVME_SC_SGL_INVALID_TYPE = 17, - NVME_SC_CMB_INVALID_USE = 18, - NVME_SC_PRP_INVALID_OFFSET = 19, - NVME_SC_ATOMIC_WU_EXCEEDED = 20, - NVME_SC_OP_DENIED = 21, - NVME_SC_SGL_INVALID_OFFSET = 22, - NVME_SC_RESERVED = 23, - NVME_SC_HOST_ID_INCONSIST = 24, - NVME_SC_KA_TIMEOUT_EXPIRED = 25, - NVME_SC_KA_TIMEOUT_INVALID = 26, - NVME_SC_ABORTED_PREEMPT_ABORT = 27, - NVME_SC_SANITIZE_FAILED = 28, - NVME_SC_SANITIZE_IN_PROGRESS = 29, - NVME_SC_SGL_INVALID_GRANULARITY = 30, - NVME_SC_CMD_NOT_SUP_CMB_QUEUE = 31, - NVME_SC_NS_WRITE_PROTECTED = 32, - NVME_SC_CMD_INTERRUPTED = 33, - NVME_SC_TRANSIENT_TR_ERR = 34, - NVME_SC_ADMIN_COMMAND_MEDIA_NOT_READY = 36, - NVME_SC_INVALID_IO_CMD_SET = 44, - NVME_SC_LBA_RANGE = 128, - NVME_SC_CAP_EXCEEDED = 129, - NVME_SC_NS_NOT_READY = 130, - NVME_SC_RESERVATION_CONFLICT = 131, - NVME_SC_FORMAT_IN_PROGRESS = 132, - NVME_SCT_COMMAND_SPECIFIC = 256, - NVME_SC_CQ_INVALID = 256, - NVME_SC_QID_INVALID = 257, - NVME_SC_QUEUE_SIZE = 258, - NVME_SC_ABORT_LIMIT = 259, - NVME_SC_ABORT_MISSING = 260, - NVME_SC_ASYNC_LIMIT = 261, - NVME_SC_FIRMWARE_SLOT = 262, - NVME_SC_FIRMWARE_IMAGE = 263, - NVME_SC_INVALID_VECTOR = 264, - NVME_SC_INVALID_LOG_PAGE = 265, - NVME_SC_INVALID_FORMAT = 266, - NVME_SC_FW_NEEDS_CONV_RESET = 267, - NVME_SC_INVALID_QUEUE = 268, - NVME_SC_FEATURE_NOT_SAVEABLE = 269, - NVME_SC_FEATURE_NOT_CHANGEABLE = 270, - NVME_SC_FEATURE_NOT_PER_NS = 271, - NVME_SC_FW_NEEDS_SUBSYS_RESET = 272, - NVME_SC_FW_NEEDS_RESET = 273, - NVME_SC_FW_NEEDS_MAX_TIME = 274, - NVME_SC_FW_ACTIVATE_PROHIBITED = 275, - NVME_SC_OVERLAPPING_RANGE = 276, - NVME_SC_NS_INSUFFICIENT_CAP = 277, - NVME_SC_NS_ID_UNAVAILABLE = 278, - NVME_SC_NS_ALREADY_ATTACHED = 280, - NVME_SC_NS_IS_PRIVATE = 281, - NVME_SC_NS_NOT_ATTACHED = 282, - NVME_SC_THIN_PROV_NOT_SUPP = 283, - NVME_SC_CTRL_LIST_INVALID = 284, - NVME_SC_SELF_TEST_IN_PROGRESS = 285, - NVME_SC_BP_WRITE_PROHIBITED = 286, - NVME_SC_CTRL_ID_INVALID = 287, - NVME_SC_SEC_CTRL_STATE_INVALID = 288, - NVME_SC_CTRL_RES_NUM_INVALID = 289, - NVME_SC_RES_ID_INVALID = 290, - NVME_SC_PMR_SAN_PROHIBITED = 291, - NVME_SC_ANA_GROUP_ID_INVALID = 292, - NVME_SC_ANA_ATTACH_FAILED = 293, - NVME_SC_BAD_ATTRIBUTES = 384, - NVME_SC_INVALID_PI = 385, - NVME_SC_READ_ONLY = 386, - NVME_SC_CMD_SIZE_LIM_EXCEEDED = 387, - NVME_SC_CONNECT_FORMAT = 384, - NVME_SC_CONNECT_CTRL_BUSY = 385, - NVME_SC_CONNECT_INVALID_PARAM = 386, - NVME_SC_CONNECT_RESTART_DISC = 387, - NVME_SC_CONNECT_INVALID_HOST = 388, - NVME_SC_DISCOVERY_RESTART = 400, - NVME_SC_AUTH_REQUIRED = 401, - NVME_SC_ZONE_BOUNDARY_ERROR = 440, - NVME_SC_ZONE_FULL = 441, - NVME_SC_ZONE_READ_ONLY = 442, - NVME_SC_ZONE_OFFLINE = 443, - NVME_SC_ZONE_INVALID_WRITE = 444, - NVME_SC_ZONE_TOO_MANY_ACTIVE = 445, - NVME_SC_ZONE_TOO_MANY_OPEN = 446, - NVME_SC_ZONE_INVALID_TRANSITION = 447, - NVME_SCT_MEDIA_ERROR = 512, - NVME_SC_WRITE_FAULT = 640, - NVME_SC_READ_ERROR = 641, - NVME_SC_GUARD_CHECK = 642, - NVME_SC_APPTAG_CHECK = 643, - NVME_SC_REFTAG_CHECK = 644, - NVME_SC_COMPARE_FAILED = 645, - NVME_SC_ACCESS_DENIED = 646, - NVME_SC_UNWRITTEN_BLOCK = 647, - NVME_SCT_PATH = 768, - NVME_SC_INTERNAL_PATH_ERROR = 768, - NVME_SC_ANA_PERSISTENT_LOSS = 769, - NVME_SC_ANA_INACCESSIBLE = 770, - NVME_SC_ANA_TRANSITION = 771, - NVME_SC_CTRL_PATH_ERROR = 864, - NVME_SC_HOST_PATH_ERROR = 880, - NVME_SC_HOST_ABORTED_CMD = 881, - NVME_SC_MASK = 255, - NVME_SCT_MASK = 1792, - NVME_SCT_SC_MASK = 2047, - NVME_STATUS_CRD = 6144, - NVME_STATUS_MORE = 8192, - NVME_STATUS_DNR = 16384, -}; - -union nvme_result { - __le16 u16; - __le32 u32; - __le64 u64; -}; - -typedef int sec_send_recv(void *, u16, u8, void *, size_t, bool); - -enum nvme_quirks { - NVME_QUIRK_STRIPE_SIZE = 1, - NVME_QUIRK_IDENTIFY_CNS = 2, - NVME_QUIRK_DEALLOCATE_ZEROES = 4, - NVME_QUIRK_DELAY_BEFORE_CHK_RDY = 8, - NVME_QUIRK_NO_APST = 16, - NVME_QUIRK_NO_DEEPEST_PS = 32, - NVME_QUIRK_QDEPTH_ONE = 64, - NVME_QUIRK_MEDIUM_PRIO_SQ = 128, - NVME_QUIRK_IGNORE_DEV_SUBNQN = 256, - NVME_QUIRK_DISABLE_WRITE_ZEROES = 512, - NVME_QUIRK_SIMPLE_SUSPEND = 1024, - NVME_QUIRK_SINGLE_VECTOR = 2048, - NVME_QUIRK_128_BYTES_SQES = 4096, - NVME_QUIRK_SHARED_TAGS = 8192, - NVME_QUIRK_NO_TEMP_THRESH_CHANGE = 16384, - NVME_QUIRK_NO_NS_DESC_LIST = 32768, - NVME_QUIRK_DMA_ADDRESS_BITS_48 = 65536, - NVME_QUIRK_SKIP_CID_GEN = 131072, - NVME_QUIRK_BOGUS_NID = 262144, - NVME_QUIRK_NO_SECONDARY_TEMP_THRESH = 524288, - NVME_QUIRK_FORCE_NO_SIMPLE_SUSPEND = 1048576, - NVME_QUIRK_BROKEN_MSI = 2097152, - NVME_QUIRK_DMAPOOL_ALIGN_512 = 4194304, -}; - -struct nvme_ctrl; - -struct nvme_request { - struct nvme_command *cmd; - union nvme_result result; - u8 genctr; - u8 retries; - u8 flags; - u16 status; - long unsigned int start_time; - struct nvme_ctrl *ctrl; -}; - -enum nvme_ctrl_state { - NVME_CTRL_NEW = 0, - NVME_CTRL_LIVE = 1, - NVME_CTRL_RESETTING = 2, - NVME_CTRL_CONNECTING = 3, - NVME_CTRL_DELETING = 4, - NVME_CTRL_DELETING_NOIO = 5, - NVME_CTRL_DEAD = 6, -}; - -struct nvme_fault_inject {}; - -struct nvme_ctrl_ops; - -struct nvme_subsystem; - -struct nvme_dhchap_queue_context; - -struct nvme_dhchap_key; - -struct nvmf_ctrl_options; - -struct nvme_ctrl { - bool comp_seen; - bool identified; - bool passthru_err_log_enabled; - enum nvme_ctrl_state state; - spinlock_t lock; - struct mutex scan_lock; - const struct nvme_ctrl_ops *ops; - struct request_queue *admin_q; - struct request_queue *connect_q; - struct request_queue *fabrics_q; - struct device *dev; - int instance; - int numa_node; - struct blk_mq_tag_set *tagset; - struct blk_mq_tag_set *admin_tagset; - struct list_head namespaces; - struct mutex namespaces_lock; - struct srcu_struct srcu; - struct device ctrl_device; - struct device *device; - struct device *hwmon_device; - struct cdev cdev; - struct work_struct reset_work; - struct work_struct delete_work; - wait_queue_head_t state_wq; - struct nvme_subsystem *subsys; - struct list_head subsys_entry; - struct opal_dev *opal_dev; - u16 cntlid; - u16 mtfa; - u32 ctrl_config; - u32 queue_count; - u64 cap; - u32 max_hw_sectors; - u32 max_segments; - u32 max_integrity_segments; - u32 max_zeroes_sectors; - u32 max_zone_append; - u16 crdt[3]; - u16 oncs; - u8 dmrl; - u32 dmrsl; - u16 oacs; - u16 sqsize; - u32 max_namespaces; - atomic_t abort_limit; - u8 vwc; - u32 vs; - u32 sgls; - u16 kas; - u8 npss; - u8 apsta; - u16 wctemp; - u16 cctemp; - u32 oaes; - u32 aen_result; - u32 ctratt; - unsigned int shutdown_timeout; - unsigned int kato; - bool subsystem; - long unsigned int quirks; - struct nvme_id_power_state psd[32]; - struct nvme_effects_log *effects; - struct xarray cels; - struct work_struct scan_work; - struct work_struct async_event_work; - struct delayed_work ka_work; - struct delayed_work failfast_work; - struct nvme_command ka_cmd; - long unsigned int ka_last_check_time; - struct work_struct fw_act_work; - long unsigned int events; - u8 anacap; - u8 anatt; - u32 anagrpmax; - u32 nanagrpid; - struct mutex ana_lock; - struct nvme_ana_rsp_hdr *ana_log_buf; - size_t ana_log_size; - struct timer_list anatt_timer; - struct work_struct ana_work; - atomic_t nr_active; - struct work_struct dhchap_auth_work; - struct mutex dhchap_auth_mutex; - struct nvme_dhchap_queue_context *dhchap_ctxs; - struct nvme_dhchap_key *host_key; - struct nvme_dhchap_key *ctrl_key; - u16 transaction; - key_serial_t tls_pskid; - u64 ps_max_latency_us; - bool apst_enabled; - u16 hmmaxd; - u32 hmpre; - u32 hmmin; - u32 hmminds; - u32 ioccsz; - u32 iorcsz; - u16 icdoff; - u16 maxcmd; - int nr_reconnects; - long unsigned int flags; - struct nvmf_ctrl_options *opts; - struct page *discard_page; - long unsigned int discard_page_busy; - struct nvme_fault_inject fault_inject; - enum nvme_ctrl_type cntrltype; - enum nvme_dctype dctype; -}; - -enum { - NVME_REQ_CANCELLED = 1, - NVME_REQ_USERCMD = 2, - NVME_MPATH_IO_STATS = 4, - NVME_MPATH_CNT_ACTIVE = 8, -}; - -enum nvme_ctrl_flags { - NVME_CTRL_FAILFAST_EXPIRED = 0, - NVME_CTRL_ADMIN_Q_STOPPED = 1, - NVME_CTRL_STARTED_ONCE = 2, - NVME_CTRL_STOPPED = 3, - NVME_CTRL_SKIP_ID_CNS_CS = 4, - NVME_CTRL_DIRTY_CAPABILITY = 5, - NVME_CTRL_FROZEN = 6, -}; - -struct nvme_ctrl_ops { - const char *name; - struct module *module; - unsigned int flags; - const struct attribute_group **dev_attr_groups; - int (*reg_read32)(struct nvme_ctrl *, u32, u32 *); - int (*reg_write32)(struct nvme_ctrl *, u32, u32); - int (*reg_read64)(struct nvme_ctrl *, u32, u64 *); - void (*free_ctrl)(struct nvme_ctrl *); - void (*submit_async_event)(struct nvme_ctrl *); - int (*subsystem_reset)(struct nvme_ctrl *); - void (*delete_ctrl)(struct nvme_ctrl *); - void (*stop_ctrl)(struct nvme_ctrl *); - int (*get_address)(struct nvme_ctrl *, char *, int); - void (*print_device_info)(struct nvme_ctrl *); - bool (*supports_pci_p2pdma)(struct nvme_ctrl *); -}; - -enum nvme_iopolicy { - NVME_IOPOLICY_NUMA = 0, - NVME_IOPOLICY_RR = 1, - NVME_IOPOLICY_QD = 2, -}; - -struct nvme_subsystem { - int instance; - struct device dev; - struct kref ref; - struct list_head entry; - struct mutex lock; - struct list_head ctrls; - struct list_head nsheads; - char subnqn[223]; - char serial[20]; - char model[40]; - char firmware_rev[8]; - u8 cmic; - enum nvme_subsys_type subtype; - u16 vendor_id; - u16 awupf; - struct ida ns_ida; - enum nvme_iopolicy iopolicy; -}; - -struct nvme_dhchap_key { - size_t len; - u8 hash; - u8 key[0]; -}; - -struct nvmf_host; - -struct nvmf_ctrl_options { - unsigned int mask; - int max_reconnects; - char *transport; - char *subsysnqn; - char *traddr; - char *trsvcid; - char *host_traddr; - char *host_iface; - size_t queue_size; - unsigned int nr_io_queues; - unsigned int reconnect_delay; - unsigned int recovery_delay; - bool discovery_nqn; - bool duplicate_connect; - unsigned int kato; - struct nvmf_host *host; - char *dhchap_secret; - char *dhchap_ctrl_secret; - struct key *keyring; - struct key *tls_key; - bool tls; - bool concat; - bool disable_sqflow; - bool hdr_digest; - bool data_digest; - unsigned int nr_write_queues; - unsigned int nr_poll_queues; - int tos; - int fast_io_fail_tmo; -}; - -struct nvme_ns_ids { - u8 eui64[8]; - u8 nguid[16]; - uuid_t uuid; - u8 csi; -}; - -struct nvme_ns; - -struct nvme_ns_head { - struct list_head list; - struct srcu_struct srcu; - struct nvme_subsystem *subsys; - struct nvme_ns_ids ids; - u8 lba_shift; - u16 ms; - u16 pi_size; - u8 pi_type; - u8 guard_type; - struct list_head entry; - struct kref ref; - bool shared; - bool rotational; - bool passthru_err_log_enabled; - struct nvme_effects_log *effects; - u64 nuse; - unsigned int ns_id; - int instance; - u64 zsze; - long unsigned int features; - struct ratelimit_state rs_nuse; - struct cdev cdev; - struct device cdev_device; - struct gendisk *disk; - u16 nr_plids; - u16 *plids; - struct bio_list requeue_list; - spinlock_t requeue_lock; - struct work_struct requeue_work; - struct work_struct partition_scan_work; - struct mutex lock; - long unsigned int flags; - struct delayed_work remove_work; - unsigned int delayed_removal_secs; - struct nvme_ns *current_path[0]; -}; - -struct nvme_ns { - struct list_head list; - struct nvme_ctrl *ctrl; - struct request_queue *queue; - struct gendisk *disk; - enum nvme_ana_state ana_state; - u32 ana_grpid; - struct list_head siblings; - struct kref kref; - struct nvme_ns_head *head; - long unsigned int flags; - struct cdev cdev; - struct device cdev_device; - struct nvme_fault_inject fault_inject; -}; - -enum nvme_ns_features { - NVME_NS_EXT_LBAS = 1, - NVME_NS_METADATA_SUPPORTED = 2, - NVME_NS_DEAC = 4, -}; - -typedef __u32 nvme_submit_flags_t; - -enum { - NVME_SUBMIT_AT_HEAD = 1, - NVME_SUBMIT_NOWAIT = 2, - NVME_SUBMIT_RESERVED = 4, - NVME_SUBMIT_RETRY = 8, -}; - -struct nvme_zone_info { - u64 zone_size; - unsigned int max_open_zones; - unsigned int max_active_zones; -}; - -struct nvmf_host { - struct kref ref; - struct list_head list; - char nqn[223]; - uuid_t id; -}; - -struct trace_event_raw_nvme_setup_cmd { - struct trace_entry ent; - char disk[32]; - int ctrl_id; - int qid; - u8 opcode; - u8 flags; - u8 fctype; - u16 cid; - u32 nsid; - bool metadata; - u8 cdw10[24]; - char __data[0]; -}; - -struct trace_event_raw_nvme_complete_rq { - struct trace_entry ent; - char disk[32]; - int ctrl_id; - int qid; - int cid; - u64 result; - u8 retries; - u8 flags; - u16 status; - char __data[0]; -}; - -struct trace_event_raw_nvme_async_event { - struct trace_entry ent; - int ctrl_id; - u32 result; - char __data[0]; -}; - -struct trace_event_raw_nvme_sq { - struct trace_entry ent; - int ctrl_id; - char disk[32]; - int qid; - u16 sq_head; - u16 sq_tail; - char __data[0]; -}; - -struct trace_event_data_offsets_nvme_setup_cmd {}; - -struct trace_event_data_offsets_nvme_complete_rq {}; - -struct trace_event_data_offsets_nvme_async_event {}; - -struct trace_event_data_offsets_nvme_sq {}; - -typedef void (*btf_trace_nvme_setup_cmd)(void *, struct request *, struct nvme_command *); - -typedef void (*btf_trace_nvme_complete_rq)(void *, struct request *); - -typedef void (*btf_trace_nvme_async_event)(void *, struct nvme_ctrl *, u32); - -typedef void (*btf_trace_nvme_sq)(void *, struct request *, __le16, int); - -struct nvme_ns_info { - struct nvme_ns_ids ids; - u32 nsid; - __le32 anagrpid; - u8 pi_offset; - u16 endgid; - u64 runs; - bool is_shared; - bool is_readonly; - bool is_ready; - bool is_removed; - bool is_rotational; - bool no_vwc; -}; - -enum nvme_disposition { - COMPLETE = 0, - RETRY = 1, - FAILOVER = 2, - AUTHENTICATE = 3, -}; - -struct nvme_core_quirk_entry { - u16 vid; - const char *mn; - const char *fr; - long unsigned int quirks; -}; - -struct async_scan_info { - struct nvme_ctrl *ctrl; - atomic_t next_nsid; - __le32 *ns_list; -}; - -struct cdrom_device_ops; - -struct cdrom_device_info { - const struct cdrom_device_ops *ops; - struct list_head list; - struct gendisk *disk; - void *handle; - int mask; - int speed; - int capacity; - unsigned int options: 30; - unsigned int mc_flags: 2; - unsigned int vfs_events; - unsigned int ioctl_events; - int use_count; - char name[20]; - __u8 sanyo_slot: 2; - __u8 keeplocked: 1; - __u8 reserved: 5; - int cdda_method; - __u8 last_sense; - __u8 media_written; - short unsigned int mmc3_profile; - int mrw_mode_page; - bool opened_for_data; - __s64 last_media_change_ms; -}; - -enum { - ATA_MAX_DEVICES = 2, - ATA_MAX_PRD = 256, - ATA_SECT_SIZE = 512, - ATA_MAX_SECTORS_128 = 128, - ATA_MAX_SECTORS = 256, - ATA_MAX_SECTORS_1024 = 1024, - ATA_MAX_SECTORS_LBA48 = 65535, - ATA_MAX_SECTORS_TAPE = 65535, - ATA_MAX_TRIM_RNUM = 64, - ATA_ID_WORDS = 256, - ATA_ID_CONFIG = 0, - ATA_ID_CYLS = 1, - ATA_ID_HEADS = 3, - ATA_ID_SECTORS = 6, - ATA_ID_SERNO = 10, - ATA_ID_BUF_SIZE = 21, - ATA_ID_FW_REV = 23, - ATA_ID_PROD = 27, - ATA_ID_MAX_MULTSECT = 47, - ATA_ID_DWORD_IO = 48, - ATA_ID_TRUSTED = 48, - ATA_ID_CAPABILITY = 49, - ATA_ID_OLD_PIO_MODES = 51, - ATA_ID_OLD_DMA_MODES = 52, - ATA_ID_FIELD_VALID = 53, - ATA_ID_CUR_CYLS = 54, - ATA_ID_CUR_HEADS = 55, - ATA_ID_CUR_SECTORS = 56, - ATA_ID_MULTSECT = 59, - ATA_ID_LBA_CAPACITY = 60, - ATA_ID_SWDMA_MODES = 62, - ATA_ID_MWDMA_MODES = 63, - ATA_ID_PIO_MODES = 64, - ATA_ID_EIDE_DMA_MIN = 65, - ATA_ID_EIDE_DMA_TIME = 66, - ATA_ID_EIDE_PIO = 67, - ATA_ID_EIDE_PIO_IORDY = 68, - ATA_ID_ADDITIONAL_SUPP = 69, - ATA_ID_QUEUE_DEPTH = 75, - ATA_ID_SATA_CAPABILITY = 76, - ATA_ID_SATA_CAPABILITY_2 = 77, - ATA_ID_FEATURE_SUPP = 78, - ATA_ID_MAJOR_VER = 80, - ATA_ID_COMMAND_SET_1 = 82, - ATA_ID_COMMAND_SET_2 = 83, - ATA_ID_CFSSE = 84, - ATA_ID_CFS_ENABLE_1 = 85, - ATA_ID_CFS_ENABLE_2 = 86, - ATA_ID_CSF_DEFAULT = 87, - ATA_ID_UDMA_MODES = 88, - ATA_ID_HW_CONFIG = 93, - ATA_ID_SPG = 98, - ATA_ID_LBA_CAPACITY_2 = 100, - ATA_ID_SECTOR_SIZE = 106, - ATA_ID_WWN = 108, - ATA_ID_LOGICAL_SECTOR_SIZE = 117, - ATA_ID_COMMAND_SET_3 = 119, - ATA_ID_COMMAND_SET_4 = 120, - ATA_ID_LAST_LUN = 126, - ATA_ID_DLF = 128, - ATA_ID_CSFO = 129, - ATA_ID_CFA_POWER = 160, - ATA_ID_CFA_KEY_MGMT = 162, - ATA_ID_CFA_MODES = 163, - ATA_ID_DATA_SET_MGMT = 169, - ATA_ID_SCT_CMD_XPORT = 206, - ATA_ID_ROT_SPEED = 217, - ATA_ID_PIO4 = 2, - ATA_ID_SERNO_LEN = 20, - ATA_ID_FW_REV_LEN = 8, - ATA_ID_PROD_LEN = 40, - ATA_ID_WWN_LEN = 8, - ATA_PCI_CTL_OFS = 2, - ATA_PIO0 = 1, - ATA_PIO1 = 3, - ATA_PIO2 = 7, - ATA_PIO3 = 15, - ATA_PIO4 = 31, - ATA_PIO5 = 63, - ATA_PIO6 = 127, - ATA_PIO4_ONLY = 16, - ATA_SWDMA0 = 1, - ATA_SWDMA1 = 3, - ATA_SWDMA2 = 7, - ATA_SWDMA2_ONLY = 4, - ATA_MWDMA0 = 1, - ATA_MWDMA1 = 3, - ATA_MWDMA2 = 7, - ATA_MWDMA3 = 15, - ATA_MWDMA4 = 31, - ATA_MWDMA12_ONLY = 6, - ATA_MWDMA2_ONLY = 4, - ATA_UDMA0 = 1, - ATA_UDMA1 = 3, - ATA_UDMA2 = 7, - ATA_UDMA3 = 15, - ATA_UDMA4 = 31, - ATA_UDMA5 = 63, - ATA_UDMA6 = 127, - ATA_UDMA7 = 255, - ATA_UDMA24_ONLY = 20, - ATA_UDMA_MASK_40C = 7, - ATA_PRD_SZ = 8, - ATA_PRD_TBL_SZ = 2048, - ATA_PRD_EOT = -2147483648, - ATA_DMA_TABLE_OFS = 4, - ATA_DMA_STATUS = 2, - ATA_DMA_CMD = 0, - ATA_DMA_WR = 8, - ATA_DMA_START = 1, - ATA_DMA_INTR = 4, - ATA_DMA_ERR = 2, - ATA_DMA_ACTIVE = 1, - ATA_HOB = 128, - ATA_NIEN = 2, - ATA_LBA = 64, - ATA_DEV1 = 16, - ATA_DEVICE_OBS = 160, - ATA_DEVCTL_OBS = 8, - ATA_BUSY = 128, - ATA_DRDY = 64, - ATA_DF = 32, - ATA_DSC = 16, - ATA_DRQ = 8, - ATA_CORR = 4, - ATA_SENSE = 2, - ATA_ERR = 1, - ATA_SRST = 4, - ATA_ICRC = 128, - ATA_BBK = 128, - ATA_UNC = 64, - ATA_MC = 32, - ATA_IDNF = 16, - ATA_MCR = 8, - ATA_ABORTED = 4, - ATA_TRK0NF = 2, - ATA_AMNF = 1, - ATAPI_LFS = 240, - ATAPI_EOM = 2, - ATAPI_ILI = 1, - ATAPI_IO = 2, - ATAPI_COD = 1, - ATA_REG_DATA = 0, - ATA_REG_ERR = 1, - ATA_REG_NSECT = 2, - ATA_REG_LBAL = 3, - ATA_REG_LBAM = 4, - ATA_REG_LBAH = 5, - ATA_REG_DEVICE = 6, - ATA_REG_STATUS = 7, - ATA_REG_FEATURE = 1, - ATA_REG_CMD = 7, - ATA_REG_BYTEL = 4, - ATA_REG_BYTEH = 5, - ATA_REG_DEVSEL = 6, - ATA_REG_IRQ = 2, - ATA_CMD_DEV_RESET = 8, - ATA_CMD_CHK_POWER = 229, - ATA_CMD_STANDBY = 226, - ATA_CMD_IDLE = 227, - ATA_CMD_EDD = 144, - ATA_CMD_DOWNLOAD_MICRO = 146, - ATA_CMD_DOWNLOAD_MICRO_DMA = 147, - ATA_CMD_NOP = 0, - ATA_CMD_FLUSH = 231, - ATA_CMD_FLUSH_EXT = 234, - ATA_CMD_ID_ATA = 236, - ATA_CMD_ID_ATAPI = 161, - ATA_CMD_SERVICE = 162, - ATA_CMD_READ = 200, - ATA_CMD_READ_EXT = 37, - ATA_CMD_READ_QUEUED = 38, - ATA_CMD_READ_STREAM_EXT = 43, - ATA_CMD_READ_STREAM_DMA_EXT = 42, - ATA_CMD_WRITE = 202, - ATA_CMD_WRITE_EXT = 53, - ATA_CMD_WRITE_QUEUED = 54, - ATA_CMD_WRITE_STREAM_EXT = 59, - ATA_CMD_WRITE_STREAM_DMA_EXT = 58, - ATA_CMD_WRITE_FUA_EXT = 61, - ATA_CMD_WRITE_QUEUED_FUA_EXT = 62, - ATA_CMD_FPDMA_READ = 96, - ATA_CMD_FPDMA_WRITE = 97, - ATA_CMD_NCQ_NON_DATA = 99, - ATA_CMD_FPDMA_SEND = 100, - ATA_CMD_FPDMA_RECV = 101, - ATA_CMD_PIO_READ = 32, - ATA_CMD_PIO_READ_EXT = 36, - ATA_CMD_PIO_WRITE = 48, - ATA_CMD_PIO_WRITE_EXT = 52, - ATA_CMD_READ_MULTI = 196, - ATA_CMD_READ_MULTI_EXT = 41, - ATA_CMD_WRITE_MULTI = 197, - ATA_CMD_WRITE_MULTI_EXT = 57, - ATA_CMD_WRITE_MULTI_FUA_EXT = 206, - ATA_CMD_SET_FEATURES = 239, - ATA_CMD_SET_MULTI = 198, - ATA_CMD_PACKET = 160, - ATA_CMD_VERIFY = 64, - ATA_CMD_VERIFY_EXT = 66, - ATA_CMD_WRITE_UNCORR_EXT = 69, - ATA_CMD_STANDBYNOW1 = 224, - ATA_CMD_IDLEIMMEDIATE = 225, - ATA_CMD_SLEEP = 230, - ATA_CMD_INIT_DEV_PARAMS = 145, - ATA_CMD_READ_NATIVE_MAX = 248, - ATA_CMD_READ_NATIVE_MAX_EXT = 39, - ATA_CMD_SET_MAX = 249, - ATA_CMD_SET_MAX_EXT = 55, - ATA_CMD_READ_LOG_EXT = 47, - ATA_CMD_WRITE_LOG_EXT = 63, - ATA_CMD_READ_LOG_DMA_EXT = 71, - ATA_CMD_WRITE_LOG_DMA_EXT = 87, - ATA_CMD_TRUSTED_NONDATA = 91, - ATA_CMD_TRUSTED_RCV = 92, - ATA_CMD_TRUSTED_RCV_DMA = 93, - ATA_CMD_TRUSTED_SND = 94, - ATA_CMD_TRUSTED_SND_DMA = 95, - ATA_CMD_PMP_READ = 228, - ATA_CMD_PMP_READ_DMA = 233, - ATA_CMD_PMP_WRITE = 232, - ATA_CMD_PMP_WRITE_DMA = 235, - ATA_CMD_CONF_OVERLAY = 177, - ATA_CMD_SEC_SET_PASS = 241, - ATA_CMD_SEC_UNLOCK = 242, - ATA_CMD_SEC_ERASE_PREP = 243, - ATA_CMD_SEC_ERASE_UNIT = 244, - ATA_CMD_SEC_FREEZE_LOCK = 245, - ATA_CMD_SEC_DISABLE_PASS = 246, - ATA_CMD_CONFIG_STREAM = 81, - ATA_CMD_SMART = 176, - ATA_CMD_MEDIA_LOCK = 222, - ATA_CMD_MEDIA_UNLOCK = 223, - ATA_CMD_DSM = 6, - ATA_CMD_CHK_MED_CRD_TYP = 209, - ATA_CMD_CFA_REQ_EXT_ERR = 3, - ATA_CMD_CFA_WRITE_NE = 56, - ATA_CMD_CFA_TRANS_SECT = 135, - ATA_CMD_CFA_ERASE = 192, - ATA_CMD_CFA_WRITE_MULT_NE = 205, - ATA_CMD_REQ_SENSE_DATA = 11, - ATA_CMD_SANITIZE_DEVICE = 180, - ATA_CMD_ZAC_MGMT_IN = 74, - ATA_CMD_ZAC_MGMT_OUT = 159, - ATA_CMD_RESTORE = 16, - ATA_SUBCMD_FPDMA_RECV_RD_LOG_DMA_EXT = 1, - ATA_SUBCMD_FPDMA_RECV_ZAC_MGMT_IN = 2, - ATA_SUBCMD_FPDMA_SEND_DSM = 0, - ATA_SUBCMD_FPDMA_SEND_WR_LOG_DMA_EXT = 2, - ATA_SUBCMD_NCQ_NON_DATA_ABORT_QUEUE = 0, - ATA_SUBCMD_NCQ_NON_DATA_SET_FEATURES = 5, - ATA_SUBCMD_NCQ_NON_DATA_ZERO_EXT = 6, - ATA_SUBCMD_NCQ_NON_DATA_ZAC_MGMT_OUT = 7, - ATA_SUBCMD_ZAC_MGMT_IN_REPORT_ZONES = 0, - ATA_SUBCMD_ZAC_MGMT_OUT_CLOSE_ZONE = 1, - ATA_SUBCMD_ZAC_MGMT_OUT_FINISH_ZONE = 2, - ATA_SUBCMD_ZAC_MGMT_OUT_OPEN_ZONE = 3, - ATA_SUBCMD_ZAC_MGMT_OUT_RESET_WRITE_POINTER = 4, - ATA_LOG_DIRECTORY = 0, - ATA_LOG_SATA_NCQ = 16, - ATA_LOG_NCQ_NON_DATA = 18, - ATA_LOG_NCQ_SEND_RECV = 19, - ATA_LOG_CDL = 24, - ATA_LOG_CDL_SIZE = 512, - ATA_LOG_IDENTIFY_DEVICE = 48, - ATA_LOG_SENSE_NCQ = 15, - ATA_LOG_SENSE_NCQ_SIZE = 1024, - ATA_LOG_CONCURRENT_POSITIONING_RANGES = 71, - ATA_LOG_SUPPORTED_CAPABILITIES = 3, - ATA_LOG_CURRENT_SETTINGS = 4, - ATA_LOG_SECURITY = 6, - ATA_LOG_SATA_SETTINGS = 8, - ATA_LOG_ZONED_INFORMATION = 9, - ATA_LOG_DEVSLP_OFFSET = 48, - ATA_LOG_DEVSLP_SIZE = 8, - ATA_LOG_DEVSLP_MDAT = 0, - ATA_LOG_DEVSLP_MDAT_MASK = 31, - ATA_LOG_DEVSLP_DETO = 1, - ATA_LOG_DEVSLP_VALID = 7, - ATA_LOG_DEVSLP_VALID_MASK = 128, - ATA_LOG_NCQ_PRIO_OFFSET = 9, - ATA_LOG_NCQ_SEND_RECV_SUBCMDS_OFFSET = 0, - ATA_LOG_NCQ_SEND_RECV_SUBCMDS_DSM = 1, - ATA_LOG_NCQ_SEND_RECV_DSM_OFFSET = 4, - ATA_LOG_NCQ_SEND_RECV_DSM_TRIM = 1, - ATA_LOG_NCQ_SEND_RECV_RD_LOG_OFFSET = 8, - ATA_LOG_NCQ_SEND_RECV_RD_LOG_SUPPORTED = 1, - ATA_LOG_NCQ_SEND_RECV_WR_LOG_OFFSET = 12, - ATA_LOG_NCQ_SEND_RECV_WR_LOG_SUPPORTED = 1, - ATA_LOG_NCQ_SEND_RECV_ZAC_MGMT_OFFSET = 16, - ATA_LOG_NCQ_SEND_RECV_ZAC_MGMT_OUT_SUPPORTED = 1, - ATA_LOG_NCQ_SEND_RECV_ZAC_MGMT_IN_SUPPORTED = 2, - ATA_LOG_NCQ_SEND_RECV_SIZE = 20, - ATA_LOG_NCQ_NON_DATA_SUBCMDS_OFFSET = 0, - ATA_LOG_NCQ_NON_DATA_ABORT_OFFSET = 0, - ATA_LOG_NCQ_NON_DATA_ABORT_NCQ = 1, - ATA_LOG_NCQ_NON_DATA_ABORT_ALL = 2, - ATA_LOG_NCQ_NON_DATA_ABORT_STREAMING = 4, - ATA_LOG_NCQ_NON_DATA_ABORT_NON_STREAMING = 8, - ATA_LOG_NCQ_NON_DATA_ABORT_SELECTED = 16, - ATA_LOG_NCQ_NON_DATA_ZAC_MGMT_OFFSET = 28, - ATA_LOG_NCQ_NON_DATA_ZAC_MGMT_OUT = 1, - ATA_LOG_NCQ_NON_DATA_SIZE = 64, - ATA_CMD_READ_LONG = 34, - ATA_CMD_READ_LONG_ONCE = 35, - ATA_CMD_WRITE_LONG = 50, - ATA_CMD_WRITE_LONG_ONCE = 51, - SETFEATURES_XFER = 3, - XFER_UDMA_7 = 71, - XFER_UDMA_6 = 70, - XFER_UDMA_5 = 69, - XFER_UDMA_4 = 68, - XFER_UDMA_3 = 67, - XFER_UDMA_2 = 66, - XFER_UDMA_1 = 65, - XFER_UDMA_0 = 64, - XFER_MW_DMA_4 = 36, - XFER_MW_DMA_3 = 35, - XFER_MW_DMA_2 = 34, - XFER_MW_DMA_1 = 33, - XFER_MW_DMA_0 = 32, - XFER_SW_DMA_2 = 18, - XFER_SW_DMA_1 = 17, - XFER_SW_DMA_0 = 16, - XFER_PIO_6 = 14, - XFER_PIO_5 = 13, - XFER_PIO_4 = 12, - XFER_PIO_3 = 11, - XFER_PIO_2 = 10, - XFER_PIO_1 = 9, - XFER_PIO_0 = 8, - XFER_PIO_SLOW = 0, - SETFEATURES_WC_ON = 2, - SETFEATURES_WC_OFF = 130, - SETFEATURES_RA_ON = 170, - SETFEATURES_RA_OFF = 85, - SETFEATURES_AAM_ON = 66, - SETFEATURES_AAM_OFF = 194, - SETFEATURES_SPINUP = 7, - SETFEATURES_SPINUP_TIMEOUT = 30000, - SETFEATURES_SATA_ENABLE = 16, - SETFEATURES_SATA_DISABLE = 144, - SETFEATURES_CDL = 13, - SATA_FPDMA_OFFSET = 1, - SATA_FPDMA_AA = 2, - SATA_DIPM = 3, - SATA_FPDMA_IN_ORDER = 4, - SATA_AN = 5, - SATA_SSP = 6, - SATA_DEVSLP = 9, - SETFEATURE_SENSE_DATA = 195, - SETFEATURE_SENSE_DATA_SUCC_NCQ = 196, - ATA_SET_MAX_ADDR = 0, - ATA_SET_MAX_PASSWD = 1, - ATA_SET_MAX_LOCK = 2, - ATA_SET_MAX_UNLOCK = 3, - ATA_SET_MAX_FREEZE_LOCK = 4, - ATA_SET_MAX_PASSWD_DMA = 5, - ATA_SET_MAX_UNLOCK_DMA = 6, - ATA_DCO_RESTORE = 192, - ATA_DCO_FREEZE_LOCK = 193, - ATA_DCO_IDENTIFY = 194, - ATA_DCO_SET = 195, - ATA_SMART_ENABLE = 216, - ATA_SMART_READ_VALUES = 208, - ATA_SMART_READ_THRESHOLDS = 209, - ATA_DSM_TRIM = 1, - ATA_SMART_LBAM_PASS = 79, - ATA_SMART_LBAH_PASS = 194, - ATAPI_PKT_DMA = 1, - ATAPI_DMADIR = 4, - ATAPI_CDB_LEN = 16, - SATA_PMP_MAX_PORTS = 15, - SATA_PMP_CTRL_PORT = 15, - SATA_PMP_GSCR_DWORDS = 128, - SATA_PMP_GSCR_PROD_ID = 0, - SATA_PMP_GSCR_REV = 1, - SATA_PMP_GSCR_PORT_INFO = 2, - SATA_PMP_GSCR_ERROR = 32, - SATA_PMP_GSCR_ERROR_EN = 33, - SATA_PMP_GSCR_FEAT = 64, - SATA_PMP_GSCR_FEAT_EN = 96, - SATA_PMP_PSCR_STATUS = 0, - SATA_PMP_PSCR_ERROR = 1, - SATA_PMP_PSCR_CONTROL = 2, - SATA_PMP_FEAT_BIST = 1, - SATA_PMP_FEAT_PMREQ = 2, - SATA_PMP_FEAT_DYNSSC = 4, - SATA_PMP_FEAT_NOTIFY = 8, - ATA_CBL_NONE = 0, - ATA_CBL_PATA40 = 1, - ATA_CBL_PATA80 = 2, - ATA_CBL_PATA40_SHORT = 3, - ATA_CBL_PATA_UNK = 4, - ATA_CBL_PATA_IGN = 5, - ATA_CBL_SATA = 6, - SCR_STATUS = 0, - SCR_ERROR = 1, - SCR_CONTROL = 2, - SCR_ACTIVE = 3, - SCR_NOTIFICATION = 4, - SERR_DATA_RECOVERED = 1, - SERR_COMM_RECOVERED = 2, - SERR_DATA = 256, - SERR_PERSISTENT = 512, - SERR_PROTOCOL = 1024, - SERR_INTERNAL = 2048, - SERR_PHYRDY_CHG = 65536, - SERR_PHY_INT_ERR = 131072, - SERR_COMM_WAKE = 262144, - SERR_10B_8B_ERR = 524288, - SERR_DISPARITY = 1048576, - SERR_CRC = 2097152, - SERR_HANDSHAKE = 4194304, - SERR_LINK_SEQ_ERR = 8388608, - SERR_TRANS_ST_ERROR = 16777216, - SERR_UNRECOG_FIS = 33554432, - SERR_DEV_XCHG = 67108864, -}; - -enum ata_prot_flags { - ATA_PROT_FLAG_PIO = 1, - ATA_PROT_FLAG_DMA = 2, - ATA_PROT_FLAG_NCQ = 4, - ATA_PROT_FLAG_ATAPI = 8, - ATA_PROT_UNKNOWN = 255, - ATA_PROT_NODATA = 0, - ATA_PROT_PIO = 1, - ATA_PROT_DMA = 2, - ATA_PROT_NCQ_NODATA = 4, - ATA_PROT_NCQ = 6, - ATAPI_PROT_NODATA = 8, - ATAPI_PROT_PIO = 9, - ATAPI_PROT_DMA = 10, -}; - -struct ata_bmdma_prd { - __le32 addr; - __le32 flags_len; -}; - -struct cdrom_msf0 { - __u8 minute; - __u8 second; - __u8 frame; -}; - -union cdrom_addr { - struct cdrom_msf0 msf; - int lba; -}; - -struct cdrom_multisession { - union cdrom_addr addr; - __u8 xa_flag; - __u8 addr_format; -}; - -struct cdrom_mcn { - __u8 medium_catalog_number[14]; -}; - -struct packet_command { - unsigned char cmd[12]; - unsigned char *buffer; - unsigned int buflen; - int stat; - struct scsi_sense_hdr *sshdr; - unsigned char data_direction; - int quiet; - int timeout; - void *reserved[1]; -}; - -struct cdrom_device_ops { - int (*open)(struct cdrom_device_info *, int); - void (*release)(struct cdrom_device_info *); - int (*drive_status)(struct cdrom_device_info *, int); - unsigned int (*check_events)(struct cdrom_device_info *, unsigned int, int); - int (*tray_move)(struct cdrom_device_info *, int); - int (*lock_door)(struct cdrom_device_info *, int); - int (*select_speed)(struct cdrom_device_info *, long unsigned int); - int (*get_last_session)(struct cdrom_device_info *, struct cdrom_multisession *); - int (*get_mcn)(struct cdrom_device_info *, struct cdrom_mcn *); - int (*reset)(struct cdrom_device_info *); - int (*audio_ioctl)(struct cdrom_device_info *, unsigned int, void *); - int (*generic_packet)(struct cdrom_device_info *, struct packet_command *); - int (*read_cdda_bpc)(struct cdrom_device_info *, void *, u32, u32, u8 *); - const int capability; -}; - -enum ata_quirks { - __ATA_QUIRK_DIAGNOSTIC = 0, - __ATA_QUIRK_NODMA = 1, - __ATA_QUIRK_NONCQ = 2, - __ATA_QUIRK_MAX_SEC_128 = 3, - __ATA_QUIRK_BROKEN_HPA = 4, - __ATA_QUIRK_DISABLE = 5, - __ATA_QUIRK_HPA_SIZE = 6, - __ATA_QUIRK_IVB = 7, - __ATA_QUIRK_STUCK_ERR = 8, - __ATA_QUIRK_BRIDGE_OK = 9, - __ATA_QUIRK_ATAPI_MOD16_DMA = 10, - __ATA_QUIRK_FIRMWARE_WARN = 11, - __ATA_QUIRK_1_5_GBPS = 12, - __ATA_QUIRK_NOSETXFER = 13, - __ATA_QUIRK_BROKEN_FPDMA_AA = 14, - __ATA_QUIRK_DUMP_ID = 15, - __ATA_QUIRK_MAX_SEC_LBA48 = 16, - __ATA_QUIRK_ATAPI_DMADIR = 17, - __ATA_QUIRK_NO_NCQ_TRIM = 18, - __ATA_QUIRK_NOLPM = 19, - __ATA_QUIRK_WD_BROKEN_LPM = 20, - __ATA_QUIRK_ZERO_AFTER_TRIM = 21, - __ATA_QUIRK_NO_DMA_LOG = 22, - __ATA_QUIRK_NOTRIM = 23, - __ATA_QUIRK_MAX_SEC_1024 = 24, - __ATA_QUIRK_MAX_TRIM_128M = 25, - __ATA_QUIRK_NO_NCQ_ON_ATI = 26, - __ATA_QUIRK_NO_LPM_ON_ATI = 27, - __ATA_QUIRK_NO_ID_DEV_LOG = 28, - __ATA_QUIRK_NO_LOG_DIR = 29, - __ATA_QUIRK_NO_FUA = 30, - __ATA_QUIRK_MAX = 31, -}; - -enum { - LIBATA_MAX_PRD = 128, - LIBATA_DUMB_MAX_PRD = 64, - ATA_DEF_QUEUE = 1, - ATA_MAX_QUEUE = 32, - ATA_TAG_INTERNAL = 32, - ATA_SHORT_PAUSE = 16, - ATAPI_MAX_DRAIN = 16384, - ATA_ALL_DEVICES = 3, - ATA_SHT_EMULATED = 1, - ATA_SHT_THIS_ID = -1, - ATA_TFLAG_LBA48 = 1, - ATA_TFLAG_ISADDR = 2, - ATA_TFLAG_DEVICE = 4, - ATA_TFLAG_WRITE = 8, - ATA_TFLAG_LBA = 16, - ATA_TFLAG_FUA = 32, - ATA_TFLAG_POLLING = 64, - ATA_DFLAG_LBA = 1, - ATA_DFLAG_LBA48 = 2, - ATA_DFLAG_CDB_INTR = 4, - ATA_DFLAG_NCQ = 8, - ATA_DFLAG_FLUSH_EXT = 16, - ATA_DFLAG_ACPI_PENDING = 32, - ATA_DFLAG_ACPI_FAILED = 64, - ATA_DFLAG_AN = 128, - ATA_DFLAG_TRUSTED = 256, - ATA_DFLAG_FUA = 512, - ATA_DFLAG_DMADIR = 1024, - ATA_DFLAG_NCQ_SEND_RECV = 2048, - ATA_DFLAG_NCQ_PRIO = 4096, - ATA_DFLAG_CDL = 8192, - ATA_DFLAG_CFG_MASK = 16383, - ATA_DFLAG_PIO = 16384, - ATA_DFLAG_NCQ_OFF = 32768, - ATA_DFLAG_SLEEPING = 65536, - ATA_DFLAG_DUBIOUS_XFER = 131072, - ATA_DFLAG_NO_UNLOAD = 262144, - ATA_DFLAG_UNLOCK_HPA = 524288, - ATA_DFLAG_INIT_MASK = 1048575, - ATA_DFLAG_NCQ_PRIO_ENABLED = 1048576, - ATA_DFLAG_CDL_ENABLED = 2097152, - ATA_DFLAG_RESUMING = 4194304, - ATA_DFLAG_DETACH = 16777216, - ATA_DFLAG_DETACHED = 33554432, - ATA_DFLAG_DA = 67108864, - ATA_DFLAG_DEVSLP = 134217728, - ATA_DFLAG_ACPI_DISABLED = 268435456, - ATA_DFLAG_D_SENSE = 536870912, - ATA_DFLAG_FEATURES_MASK = 201341696, - ATA_DEV_UNKNOWN = 0, - ATA_DEV_ATA = 1, - ATA_DEV_ATA_UNSUP = 2, - ATA_DEV_ATAPI = 3, - ATA_DEV_ATAPI_UNSUP = 4, - ATA_DEV_PMP = 5, - ATA_DEV_PMP_UNSUP = 6, - ATA_DEV_SEMB = 7, - ATA_DEV_SEMB_UNSUP = 8, - ATA_DEV_ZAC = 9, - ATA_DEV_ZAC_UNSUP = 10, - ATA_DEV_NONE = 11, - ATA_LFLAG_NO_HRST = 2, - ATA_LFLAG_NO_SRST = 4, - ATA_LFLAG_ASSUME_ATA = 8, - ATA_LFLAG_ASSUME_SEMB = 16, - ATA_LFLAG_ASSUME_CLASS = 24, - ATA_LFLAG_NO_RETRY = 32, - ATA_LFLAG_DISABLED = 64, - ATA_LFLAG_SW_ACTIVITY = 128, - ATA_LFLAG_NO_LPM = 256, - ATA_LFLAG_RST_ONCE = 512, - ATA_LFLAG_CHANGED = 1024, - ATA_LFLAG_NO_DEBOUNCE_DELAY = 2048, - ATA_FLAG_SLAVE_POSS = 1, - ATA_FLAG_SATA = 2, - ATA_FLAG_NO_LPM = 4, - ATA_FLAG_NO_LOG_PAGE = 32, - ATA_FLAG_NO_ATAPI = 64, - ATA_FLAG_PIO_DMA = 128, - ATA_FLAG_PIO_LBA48 = 256, - ATA_FLAG_PIO_POLLING = 512, - ATA_FLAG_NCQ = 1024, - ATA_FLAG_NO_POWEROFF_SPINDOWN = 2048, - ATA_FLAG_NO_HIBERNATE_SPINDOWN = 4096, - ATA_FLAG_DEBUGMSG = 8192, - ATA_FLAG_FPDMA_AA = 16384, - ATA_FLAG_IGN_SIMPLEX = 32768, - ATA_FLAG_NO_IORDY = 65536, - ATA_FLAG_ACPI_SATA = 131072, - ATA_FLAG_AN = 262144, - ATA_FLAG_PMP = 524288, - ATA_FLAG_FPDMA_AUX = 1048576, - ATA_FLAG_EM = 2097152, - ATA_FLAG_SW_ACTIVITY = 4194304, - ATA_FLAG_NO_DIPM = 8388608, - ATA_FLAG_SAS_HOST = 16777216, - ATA_PFLAG_EH_PENDING = 1, - ATA_PFLAG_EH_IN_PROGRESS = 2, - ATA_PFLAG_FROZEN = 4, - ATA_PFLAG_RECOVERED = 8, - ATA_PFLAG_LOADING = 16, - ATA_PFLAG_SCSI_HOTPLUG = 64, - ATA_PFLAG_INITIALIZING = 128, - ATA_PFLAG_RESETTING = 256, - ATA_PFLAG_UNLOADING = 512, - ATA_PFLAG_UNLOADED = 1024, - ATA_PFLAG_RESUMING = 65536, - ATA_PFLAG_SUSPENDED = 131072, - ATA_PFLAG_PM_PENDING = 262144, - ATA_PFLAG_INIT_GTM_VALID = 524288, - ATA_PFLAG_PIO32 = 1048576, - ATA_PFLAG_PIO32CHANGE = 2097152, - ATA_PFLAG_EXTERNAL = 4194304, - ATA_QCFLAG_ACTIVE = 1, - ATA_QCFLAG_DMAMAP = 2, - ATA_QCFLAG_RTF_FILLED = 4, - ATA_QCFLAG_IO = 8, - ATA_QCFLAG_RESULT_TF = 16, - ATA_QCFLAG_CLEAR_EXCL = 32, - ATA_QCFLAG_QUIET = 64, - ATA_QCFLAG_RETRY = 128, - ATA_QCFLAG_HAS_CDL = 256, - ATA_QCFLAG_EH = 65536, - ATA_QCFLAG_SENSE_VALID = 131072, - ATA_QCFLAG_EH_SCHEDULED = 262144, - ATA_QCFLAG_EH_SUCCESS_CMD = 524288, - ATA_HOST_SIMPLEX = 1, - ATA_HOST_STARTED = 2, - ATA_HOST_PARALLEL_SCAN = 4, - ATA_HOST_IGNORE_ATA = 8, - ATA_HOST_NO_PART = 16, - ATA_HOST_NO_SSC = 32, - ATA_HOST_NO_DEVSLP = 64, - ATA_TMOUT_INTERNAL_QUICK = 5000, - ATA_TMOUT_MAX_PARK = 30000, - ATA_TMOUT_FF_WAIT_LONG = 2000, - ATA_TMOUT_FF_WAIT = 800, - ATA_WAIT_AFTER_RESET = 150, - ATA_TMOUT_PMP_SRST_WAIT = 10000, - ATA_TMOUT_SPURIOUS_PHY = 10000, - BUS_UNKNOWN = 0, - BUS_DMA = 1, - BUS_IDLE = 2, - BUS_NOINTR = 3, - BUS_NODATA = 4, - BUS_TIMER = 5, - BUS_PIO = 6, - BUS_EDD = 7, - BUS_IDENTIFY = 8, - BUS_PACKET = 9, - PORT_UNKNOWN = 0, - PORT_ENABLED = 1, - PORT_DISABLED = 2, - ATA_NR_PIO_MODES = 7, - ATA_NR_MWDMA_MODES = 5, - ATA_NR_UDMA_MODES = 8, - ATA_SHIFT_PIO = 0, - ATA_SHIFT_MWDMA = 7, - ATA_SHIFT_UDMA = 12, - ATA_SHIFT_PRIO = 6, - ATA_PRIO_HIGH = 2, - ATA_DMA_PAD_SZ = 4, - ATA_ERING_SIZE = 32, - ATA_DEFER_LINK = 1, - ATA_DEFER_PORT = 2, - ATA_EH_DESC_LEN = 80, - ATA_EH_REVALIDATE = 1, - ATA_EH_SOFTRESET = 2, - ATA_EH_HARDRESET = 4, - ATA_EH_RESET = 6, - ATA_EH_ENABLE_LINK = 8, - ATA_EH_PARK = 32, - ATA_EH_GET_SUCCESS_SENSE = 64, - ATA_EH_SET_ACTIVE = 128, - ATA_EH_PERDEV_MASK = 225, - ATA_EH_ALL_ACTIONS = 15, - ATA_EHI_HOTPLUGGED = 1, - ATA_EHI_NO_AUTOPSY = 4, - ATA_EHI_QUIET = 8, - ATA_EHI_NO_RECOVERY = 16, - ATA_EHI_DID_SOFTRESET = 65536, - ATA_EHI_DID_HARDRESET = 131072, - ATA_EHI_PRINTINFO = 262144, - ATA_EHI_SETMODE = 524288, - ATA_EHI_POST_SETMODE = 1048576, - ATA_EHI_DID_PRINT_QUIRKS = 2097152, - ATA_EHI_DID_RESET = 196608, - ATA_EHI_TO_SLAVE_MASK = 12, - ATA_EH_MAX_TRIES = 5, - ATA_LINK_RESUME_TRIES = 5, - ATA_EH_DEV_TRIES = 3, - ATA_EH_PMP_TRIES = 5, - ATA_EH_PMP_LINK_TRIES = 3, - SATA_PMP_RW_TIMEOUT = 3000, - ATA_EH_CMD_TIMEOUT_TABLE_SIZE = 8, - ATA_QUIRK_DIAGNOSTIC = 1, - ATA_QUIRK_NODMA = 2, - ATA_QUIRK_NONCQ = 4, - ATA_QUIRK_MAX_SEC_128 = 8, - ATA_QUIRK_BROKEN_HPA = 16, - ATA_QUIRK_DISABLE = 32, - ATA_QUIRK_HPA_SIZE = 64, - ATA_QUIRK_IVB = 128, - ATA_QUIRK_STUCK_ERR = 256, - ATA_QUIRK_BRIDGE_OK = 512, - ATA_QUIRK_ATAPI_MOD16_DMA = 1024, - ATA_QUIRK_FIRMWARE_WARN = 2048, - ATA_QUIRK_1_5_GBPS = 4096, - ATA_QUIRK_NOSETXFER = 8192, - ATA_QUIRK_BROKEN_FPDMA_AA = 16384, - ATA_QUIRK_DUMP_ID = 32768, - ATA_QUIRK_MAX_SEC_LBA48 = 65536, - ATA_QUIRK_ATAPI_DMADIR = 131072, - ATA_QUIRK_NO_NCQ_TRIM = 262144, - ATA_QUIRK_NOLPM = 524288, - ATA_QUIRK_WD_BROKEN_LPM = 1048576, - ATA_QUIRK_ZERO_AFTER_TRIM = 2097152, - ATA_QUIRK_NO_DMA_LOG = 4194304, - ATA_QUIRK_NOTRIM = 8388608, - ATA_QUIRK_MAX_SEC_1024 = 16777216, - ATA_QUIRK_MAX_TRIM_128M = 33554432, - ATA_QUIRK_NO_NCQ_ON_ATI = 67108864, - ATA_QUIRK_NO_LPM_ON_ATI = 134217728, - ATA_QUIRK_NO_ID_DEV_LOG = 268435456, - ATA_QUIRK_NO_LOG_DIR = 536870912, - ATA_QUIRK_NO_FUA = 1073741824, - ATA_DMA_MASK_ATA = 1, - ATA_DMA_MASK_ATAPI = 2, - ATA_DMA_MASK_CFA = 4, - ATAPI_READ = 0, - ATAPI_WRITE = 1, - ATAPI_READ_CD = 2, - ATAPI_PASS_THRU = 3, - ATAPI_MISC = 4, - ATA_TIMING_SETUP = 1, - ATA_TIMING_ACT8B = 2, - ATA_TIMING_REC8B = 4, - ATA_TIMING_CYC8B = 8, - ATA_TIMING_8BIT = 14, - ATA_TIMING_ACTIVE = 16, - ATA_TIMING_RECOVER = 32, - ATA_TIMING_DMACK_HOLD = 64, - ATA_TIMING_CYCLE = 128, - ATA_TIMING_UDMA = 256, - ATA_TIMING_ALL = 511, - ATA_ACPI_FILTER_SETXFER = 1, - ATA_ACPI_FILTER_LOCK = 2, - ATA_ACPI_FILTER_DIPM = 4, - ATA_ACPI_FILTER_FPDMA_OFFSET = 8, - ATA_ACPI_FILTER_FPDMA_AA = 16, - ATA_ACPI_FILTER_DEFAULT = 7, -}; - -enum ata_xfer_mask { - ATA_MASK_PIO = 127, - ATA_MASK_MWDMA = 3968, - ATA_MASK_UDMA = 1044480, -}; - -enum hsm_task_states { - HSM_ST_IDLE = 0, - HSM_ST_FIRST = 1, - HSM_ST = 2, - HSM_ST_LAST = 3, - HSM_ST_ERR = 4, -}; - -enum ata_completion_errors { - AC_ERR_OK = 0, - AC_ERR_DEV = 1, - AC_ERR_HSM = 2, - AC_ERR_TIMEOUT = 4, - AC_ERR_MEDIA = 8, - AC_ERR_ATA_BUS = 16, - AC_ERR_HOST_BUS = 32, - AC_ERR_SYSTEM = 64, - AC_ERR_INVALID = 128, - AC_ERR_OTHER = 256, - AC_ERR_NODEV_HINT = 512, - AC_ERR_NCQ = 1024, -}; - -enum ata_lpm_policy { - ATA_LPM_UNKNOWN = 0, - ATA_LPM_MAX_POWER = 1, - ATA_LPM_MED_POWER = 2, - ATA_LPM_MED_POWER_WITH_DIPM = 3, - ATA_LPM_MIN_POWER_WITH_PARTIAL = 4, - ATA_LPM_MIN_POWER = 5, -}; - -struct ata_queued_cmd; - -typedef void (*ata_qc_cb_t)(struct ata_queued_cmd *); - -struct ata_taskfile { - long unsigned int flags; - u8 protocol; - u8 ctl; - u8 hob_feature; - u8 hob_nsect; - u8 hob_lbal; - u8 hob_lbam; - u8 hob_lbah; - union { - u8 error; - u8 feature; - }; - u8 nsect; - u8 lbal; - u8 lbam; - u8 lbah; - u8 device; - union { - u8 status; - u8 command; - }; - u32 auxiliary; -}; - -struct ata_port; - -struct ata_device; - -struct ata_queued_cmd { - struct ata_port *ap; - struct ata_device *dev; - struct scsi_cmnd *scsicmd; - void (*scsidone)(struct scsi_cmnd *); - struct ata_taskfile tf; - u8 cdb[16]; - long unsigned int flags; - unsigned int tag; - unsigned int hw_tag; - unsigned int n_elem; - unsigned int orig_n_elem; - int dma_dir; - unsigned int sect_size; - unsigned int nbytes; - unsigned int extrabytes; - unsigned int curbytes; - struct scatterlist sgent; - struct scatterlist *sg; - struct scatterlist *cursg; - unsigned int cursg_ofs; - unsigned int err_mask; - struct ata_taskfile result_tf; - ata_qc_cb_t complete_fn; - void *private_data; - void *lldd_task; -}; - -struct ata_link; - -typedef int (*ata_prereset_fn_t)(struct ata_link *, long unsigned int); - -struct ata_eh_info { - struct ata_device *dev; - u32 serror; - unsigned int err_mask; - unsigned int action; - unsigned int dev_action[2]; - unsigned int flags; - unsigned int probe_mask; - char desc[80]; - int desc_len; -}; - -struct ata_eh_context { - struct ata_eh_info i; - int tries[2]; - int cmd_timeout_idx[16]; - unsigned int classes[2]; - unsigned int did_probe_mask; - unsigned int unloaded_mask; - unsigned int saved_ncq_enabled; - u8 saved_xfer_mode[2]; - long unsigned int last_reset; -}; - -struct ata_ering_entry { - unsigned int eflags; - unsigned int err_mask; - u64 timestamp; -}; - -struct ata_ering { - int cursor; - struct ata_ering_entry ring[32]; -}; - -struct ata_cpr_log; - -struct ata_cdl; - -struct ata_device { - struct ata_link *link; - unsigned int devno; - unsigned int quirks; - long unsigned int flags; - struct scsi_device *sdev; - void *private_data; - union acpi_object *gtf_cache; - unsigned int gtf_filter; - struct device tdev; - u64 n_sectors; - u64 n_native_sectors; - unsigned int class; - long unsigned int unpark_deadline; - u8 pio_mode; - u8 dma_mode; - u8 xfer_mode; - unsigned int xfer_shift; - unsigned int multi_count; - unsigned int max_sectors; - unsigned int cdb_len; - unsigned int pio_mask; - unsigned int mwdma_mask; - unsigned int udma_mask; - u16 cylinders; - u16 heads; - u16 sectors; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - union { - u16 id[256]; - u32 gscr[128]; - }; - u8 gp_log_dir[512]; - u8 devslp_timing[8]; - u8 ncq_send_recv_cmds[20]; - u8 ncq_non_data_cmds[64]; - u32 zac_zoned_cap; - u32 zac_zones_optimal_open; - u32 zac_zones_optimal_nonseq; - u32 zac_zones_max_open; - struct ata_cpr_log *cpr_log; - struct ata_cdl *cdl; - int spdn_cnt; - struct ata_ering ering; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - u8 sector_buf[512]; -}; - -struct ata_link { - struct ata_port *ap; - int pmp; - struct device tdev; - unsigned int active_tag; - u32 sactive; - unsigned int flags; - u32 saved_scontrol; - unsigned int hw_sata_spd_limit; - unsigned int sata_spd_limit; - unsigned int sata_spd; - enum ata_lpm_policy lpm_policy; - struct ata_eh_info eh_info; - struct ata_eh_context eh_context; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct ata_device device[2]; - long unsigned int last_lpm_change; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -typedef int (*ata_reset_fn_t)(struct ata_link *, unsigned int *, long unsigned int); - -typedef void (*ata_postreset_fn_t)(struct ata_link *, unsigned int *); - -enum sw_activity { - OFF = 0, - BLINK_ON = 1, - BLINK_OFF = 2, -}; - -struct ata_ioports { - void *cmd_addr; - void *data_addr; - void *error_addr; - void *feature_addr; - void *nsect_addr; - void *lbal_addr; - void *lbam_addr; - void *lbah_addr; - void *device_addr; - void *status_addr; - void *command_addr; - void *altstatus_addr; - void *ctl_addr; - void *bmdma_addr; - void *scr_addr; -}; - -struct ata_port_operations; - -struct ata_host { - spinlock_t lock; - struct device *dev; - void * const *iomap; - unsigned int n_ports; - unsigned int n_tags; - void *private_data; - struct ata_port_operations *ops; - long unsigned int flags; - struct kref kref; - struct mutex eh_mutex; - struct task_struct *eh_owner; - struct ata_port *simplex_claimed; - struct ata_port *ports[0]; -}; - -struct ata_reset_operations { - ata_prereset_fn_t prereset; - ata_reset_fn_t softreset; - ata_reset_fn_t hardreset; - ata_postreset_fn_t postreset; -}; - -struct ata_port_operations { - int (*qc_defer)(struct ata_queued_cmd *); - int (*check_atapi_dma)(struct ata_queued_cmd *); - enum ata_completion_errors (*qc_prep)(struct ata_queued_cmd *); - unsigned int (*qc_issue)(struct ata_queued_cmd *); - void (*qc_fill_rtf)(struct ata_queued_cmd *); - void (*qc_ncq_fill_rtf)(struct ata_port *, u64); - int (*cable_detect)(struct ata_port *); - unsigned int (*mode_filter)(struct ata_device *, unsigned int); - void (*set_piomode)(struct ata_port *, struct ata_device *); - void (*set_dmamode)(struct ata_port *, struct ata_device *); - int (*set_mode)(struct ata_link *, struct ata_device **); - unsigned int (*read_id)(struct ata_device *, struct ata_taskfile *, __le16 *); - void (*dev_config)(struct ata_device *); - void (*freeze)(struct ata_port *); - void (*thaw)(struct ata_port *); - struct ata_reset_operations reset; - struct ata_reset_operations pmp_reset; - void (*error_handler)(struct ata_port *); - void (*lost_interrupt)(struct ata_port *); - void (*post_internal_cmd)(struct ata_queued_cmd *); - void (*sched_eh)(struct ata_port *); - void (*end_eh)(struct ata_port *); - int (*scr_read)(struct ata_link *, unsigned int, u32 *); - int (*scr_write)(struct ata_link *, unsigned int, u32); - void (*pmp_attach)(struct ata_port *); - void (*pmp_detach)(struct ata_port *); - int (*set_lpm)(struct ata_link *, enum ata_lpm_policy, unsigned int); - int (*port_suspend)(struct ata_port *, pm_message_t); - int (*port_resume)(struct ata_port *); - int (*port_start)(struct ata_port *); - void (*port_stop)(struct ata_port *); - void (*host_stop)(struct ata_host *); - void (*sff_dev_select)(struct ata_port *, unsigned int); - void (*sff_set_devctl)(struct ata_port *, u8); - u8 (*sff_check_status)(struct ata_port *); - u8 (*sff_check_altstatus)(struct ata_port *); - void (*sff_tf_load)(struct ata_port *, const struct ata_taskfile *); - void (*sff_tf_read)(struct ata_port *, struct ata_taskfile *); - void (*sff_exec_command)(struct ata_port *, const struct ata_taskfile *); - unsigned int (*sff_data_xfer)(struct ata_queued_cmd *, unsigned char *, unsigned int, int); - void (*sff_irq_on)(struct ata_port *); - bool (*sff_irq_check)(struct ata_port *); - void (*sff_irq_clear)(struct ata_port *); - void (*sff_drain_fifo)(struct ata_queued_cmd *); - void (*bmdma_setup)(struct ata_queued_cmd *); - void (*bmdma_start)(struct ata_queued_cmd *); - void (*bmdma_stop)(struct ata_queued_cmd *); - u8 (*bmdma_status)(struct ata_port *); - ssize_t (*em_show)(struct ata_port *, char *); - ssize_t (*em_store)(struct ata_port *, const char *, size_t); - ssize_t (*sw_activity_show)(struct ata_device *, char *); - ssize_t (*sw_activity_store)(struct ata_device *, enum sw_activity); - ssize_t (*transmit_led_message)(struct ata_port *, u32, ssize_t); - const struct ata_port_operations *inherits; -}; - -struct ata_port_stats { - long unsigned int unhandled_irq; - long unsigned int idle_irq; - long unsigned int rw_reqbuf; -}; - -struct ata_acpi_drive { - u32 pio; - u32 dma; -}; - -struct ata_acpi_gtm { - struct ata_acpi_drive drive[2]; - u32 flags; -}; - -struct ata_port { - struct Scsi_Host *scsi_host; - struct ata_port_operations *ops; - spinlock_t *lock; - long unsigned int flags; - unsigned int pflags; - unsigned int print_id; - unsigned int port_no; - struct ata_ioports ioaddr; - u8 ctl; - u8 last_ctl; - struct ata_link *sff_pio_task_link; - struct delayed_work sff_pio_task; - struct ata_bmdma_prd *bmdma_prd; - dma_addr_t bmdma_prd_dma; - unsigned int pio_mask; - unsigned int mwdma_mask; - unsigned int udma_mask; - unsigned int cbl; - struct ata_queued_cmd qcmd[33]; - u64 qc_active; - int nr_active_links; - long: 64; - long: 64; - struct ata_link link; - struct ata_link *slave_link; - int nr_pmp_links; - struct ata_link *pmp_link; - struct ata_link *excl_link; - struct ata_port_stats stats; - struct ata_host *host; - struct device *dev; - struct device tdev; - struct mutex scsi_scan_mutex; - struct delayed_work hotplug_task; - struct delayed_work scsi_rescan_task; - unsigned int hsm_task_state; - struct list_head eh_done_q; - wait_queue_head_t eh_wait_q; - int eh_tries; - struct completion park_req_pending; - pm_message_t pm_mesg; - enum ata_lpm_policy target_lpm_policy; - struct timer_list fastdrain_timer; - unsigned int fastdrain_cnt; - async_cookie_t cookie; - int em_message_type; - void *private_data; - struct ata_acpi_gtm __acpi_init_gtm; - long: 64; - long: 64; - long: 64; -}; - -struct ata_cpr { - u8 num; - u8 num_storage_elements; - u64 start_lba; - u64 num_lbas; -}; - -struct ata_cpr_log { - u8 nr_cpr; - struct ata_cpr cpr[0]; -}; - -struct ata_cdl { - u8 desc_log_buf[512]; - u8 ncq_sense_log_buf[1024]; -}; - -struct ata_port_info { - long unsigned int flags; - long unsigned int link_flags; - unsigned int pio_mask; - unsigned int mwdma_mask; - unsigned int udma_mask; - struct ata_port_operations *port_ops; - void *private_data; -}; - -struct ata_timing { - short unsigned int mode; - short unsigned int setup; - short unsigned int act8b; - short unsigned int rec8b; - short unsigned int cyc8b; - short unsigned int active; - short unsigned int recover; - short unsigned int dmack_hold; - short unsigned int cycle; - short unsigned int udma; -}; - -struct pci_bits { - unsigned int reg; - unsigned int width; - long unsigned int mask; - long unsigned int val; -}; - -enum ata_link_iter_mode { - ATA_LITER_EDGE = 0, - ATA_LITER_HOST_FIRST = 1, - ATA_LITER_PMP_FIRST = 2, -}; - -enum ata_dev_iter_mode { - ATA_DITER_ENABLED = 0, - ATA_DITER_ENABLED_REVERSE = 1, - ATA_DITER_ALL = 2, - ATA_DITER_ALL_REVERSE = 3, -}; - -struct trace_event_raw_ata_qc_issue_template { - struct trace_entry ent; - unsigned int ata_port; - unsigned int ata_dev; - unsigned int tag; - unsigned char cmd; - unsigned char dev; - unsigned char lbal; - unsigned char lbam; - unsigned char lbah; - unsigned char nsect; - unsigned char feature; - unsigned char hob_lbal; - unsigned char hob_lbam; - unsigned char hob_lbah; - unsigned char hob_nsect; - unsigned char hob_feature; - unsigned char ctl; - unsigned char proto; - long unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_ata_qc_complete_template { - struct trace_entry ent; - unsigned int ata_port; - unsigned int ata_dev; - unsigned int tag; - unsigned char status; - unsigned char dev; - unsigned char lbal; - unsigned char lbam; - unsigned char lbah; - unsigned char nsect; - unsigned char error; - unsigned char hob_lbal; - unsigned char hob_lbam; - unsigned char hob_lbah; - unsigned char hob_nsect; - unsigned char hob_feature; - unsigned char ctl; - long unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_ata_tf_load { - struct trace_entry ent; - unsigned int ata_port; - unsigned char cmd; - unsigned char dev; - unsigned char lbal; - unsigned char lbam; - unsigned char lbah; - unsigned char nsect; - unsigned char feature; - unsigned char hob_lbal; - unsigned char hob_lbam; - unsigned char hob_lbah; - unsigned char hob_nsect; - unsigned char hob_feature; - unsigned char proto; - char __data[0]; -}; - -struct trace_event_raw_ata_exec_command_template { - struct trace_entry ent; - unsigned int ata_port; - unsigned int tag; - unsigned char cmd; - unsigned char feature; - unsigned char hob_nsect; - unsigned char proto; - char __data[0]; -}; - -struct trace_event_raw_ata_bmdma_status { - struct trace_entry ent; - unsigned int ata_port; - unsigned int tag; - unsigned char host_stat; - char __data[0]; -}; - -struct trace_event_raw_ata_eh_link_autopsy { - struct trace_entry ent; - unsigned int ata_port; - unsigned int ata_dev; - unsigned int eh_action; - unsigned int eh_err_mask; - char __data[0]; -}; - -struct trace_event_raw_ata_eh_link_autopsy_qc { - struct trace_entry ent; - unsigned int ata_port; - unsigned int ata_dev; - unsigned int tag; - unsigned int qc_flags; - unsigned int eh_err_mask; - char __data[0]; -}; - -struct trace_event_raw_ata_eh_action_template { - struct trace_entry ent; - unsigned int ata_port; - unsigned int ata_dev; - unsigned int eh_action; - char __data[0]; -}; - -struct trace_event_raw_ata_link_reset_begin_template { - struct trace_entry ent; - unsigned int ata_port; - unsigned int class[2]; - long unsigned int deadline; - char __data[0]; -}; - -struct trace_event_raw_ata_link_reset_end_template { - struct trace_entry ent; - unsigned int ata_port; - unsigned int class[2]; - int rc; - char __data[0]; -}; - -struct trace_event_raw_ata_port_eh_begin_template { - struct trace_entry ent; - unsigned int ata_port; - char __data[0]; -}; - -struct trace_event_raw_ata_sff_hsm_template { - struct trace_entry ent; - unsigned int ata_port; - unsigned int ata_dev; - unsigned int tag; - unsigned int qc_flags; - unsigned int protocol; - unsigned int hsm_state; - unsigned char dev_state; - char __data[0]; -}; - -struct trace_event_raw_ata_transfer_data_template { - struct trace_entry ent; - unsigned int ata_port; - unsigned int ata_dev; - unsigned int tag; - unsigned int flags; - unsigned int offset; - unsigned int bytes; - char __data[0]; -}; - -struct trace_event_raw_ata_sff_template { - struct trace_entry ent; - unsigned int ata_port; - unsigned char hsm_state; - char __data[0]; -}; - -struct trace_event_data_offsets_ata_qc_issue_template {}; - -struct trace_event_data_offsets_ata_qc_complete_template {}; - -struct trace_event_data_offsets_ata_tf_load {}; - -struct trace_event_data_offsets_ata_exec_command_template {}; - -struct trace_event_data_offsets_ata_bmdma_status {}; - -struct trace_event_data_offsets_ata_eh_link_autopsy {}; - -struct trace_event_data_offsets_ata_eh_link_autopsy_qc {}; - -struct trace_event_data_offsets_ata_eh_action_template {}; - -struct trace_event_data_offsets_ata_link_reset_begin_template {}; - -struct trace_event_data_offsets_ata_link_reset_end_template {}; - -struct trace_event_data_offsets_ata_port_eh_begin_template {}; - -struct trace_event_data_offsets_ata_sff_hsm_template {}; - -struct trace_event_data_offsets_ata_transfer_data_template {}; - -struct trace_event_data_offsets_ata_sff_template {}; - -typedef void (*btf_trace_ata_qc_prep)(void *, struct ata_queued_cmd *); - -typedef void (*btf_trace_ata_qc_issue)(void *, struct ata_queued_cmd *); - -typedef void (*btf_trace_ata_qc_complete_internal)(void *, struct ata_queued_cmd *); - -typedef void (*btf_trace_ata_qc_complete_failed)(void *, struct ata_queued_cmd *); - -typedef void (*btf_trace_ata_qc_complete_done)(void *, struct ata_queued_cmd *); - -typedef void (*btf_trace_ata_tf_load)(void *, struct ata_port *, const struct ata_taskfile *); - -typedef void (*btf_trace_ata_exec_command)(void *, struct ata_port *, const struct ata_taskfile *, unsigned int); - -typedef void (*btf_trace_ata_bmdma_setup)(void *, struct ata_port *, const struct ata_taskfile *, unsigned int); - -typedef void (*btf_trace_ata_bmdma_start)(void *, struct ata_port *, const struct ata_taskfile *, unsigned int); - -typedef void (*btf_trace_ata_bmdma_stop)(void *, struct ata_port *, const struct ata_taskfile *, unsigned int); - -typedef void (*btf_trace_ata_bmdma_status)(void *, struct ata_port *, unsigned int); - -typedef void (*btf_trace_ata_eh_link_autopsy)(void *, struct ata_device *, unsigned int, unsigned int); - -typedef void (*btf_trace_ata_eh_link_autopsy_qc)(void *, struct ata_queued_cmd *); - -typedef void (*btf_trace_ata_eh_about_to_do)(void *, struct ata_link *, unsigned int, unsigned int); - -typedef void (*btf_trace_ata_eh_done)(void *, struct ata_link *, unsigned int, unsigned int); - -typedef void (*btf_trace_ata_link_hardreset_begin)(void *, struct ata_link *, unsigned int *, long unsigned int); - -typedef void (*btf_trace_ata_slave_hardreset_begin)(void *, struct ata_link *, unsigned int *, long unsigned int); - -typedef void (*btf_trace_ata_link_softreset_begin)(void *, struct ata_link *, unsigned int *, long unsigned int); - -typedef void (*btf_trace_ata_link_hardreset_end)(void *, struct ata_link *, unsigned int *, int); - -typedef void (*btf_trace_ata_slave_hardreset_end)(void *, struct ata_link *, unsigned int *, int); - -typedef void (*btf_trace_ata_link_softreset_end)(void *, struct ata_link *, unsigned int *, int); - -typedef void (*btf_trace_ata_link_postreset)(void *, struct ata_link *, unsigned int *, int); - -typedef void (*btf_trace_ata_slave_postreset)(void *, struct ata_link *, unsigned int *, int); - -typedef void (*btf_trace_ata_std_sched_eh)(void *, struct ata_port *); - -typedef void (*btf_trace_ata_port_freeze)(void *, struct ata_port *); - -typedef void (*btf_trace_ata_port_thaw)(void *, struct ata_port *); - -typedef void (*btf_trace_ata_sff_hsm_state)(void *, struct ata_queued_cmd *, unsigned char); - -typedef void (*btf_trace_ata_sff_hsm_command_complete)(void *, struct ata_queued_cmd *, unsigned char); - -typedef void (*btf_trace_ata_sff_port_intr)(void *, struct ata_queued_cmd *, unsigned char); - -typedef void (*btf_trace_ata_sff_pio_transfer_data)(void *, struct ata_queued_cmd *, unsigned int, unsigned int); - -typedef void (*btf_trace_atapi_pio_transfer_data)(void *, struct ata_queued_cmd *, unsigned int, unsigned int); - -typedef void (*btf_trace_atapi_send_cdb)(void *, struct ata_queued_cmd *, unsigned int, unsigned int); - -typedef void (*btf_trace_ata_sff_flush_pio_task)(void *, struct ata_port *); - -enum { - ATA_READID_POSTRESET = 1, - ATA_DNXFER_PIO = 0, - ATA_DNXFER_DMA = 1, - ATA_DNXFER_40C = 2, - ATA_DNXFER_FORCE_PIO = 3, - ATA_DNXFER_FORCE_PIO0 = 4, - ATA_DNXFER_QUIET = -2147483648, -}; - -struct ata_force_param { - const char *name; - u8 cbl; - u8 spd_limit; - unsigned int xfer_mask; - unsigned int quirk_on; - unsigned int quirk_off; - unsigned int pflags_on; - u16 lflags_on; - u16 lflags_off; -}; - -struct ata_force_ent { - int port; - int device; - struct ata_force_param param; -}; - -struct ata_xfer_ent { - int shift; - int bits; - u8 base; -}; - -struct ata_dev_quirks_entry { - const char *model_num; - const char *model_rev; - unsigned int quirks; -}; - -struct ata_acpi_gtf { - u8 tf[7]; -}; - -struct ata_acpi_hotplug_context { - struct acpi_hotplug_context hp; - union { - struct ata_port *ap; - struct ata_device *dev; - } data; -}; - -enum { - ATA_GEN_CLASS_MATCH = 1, - ATA_GEN_FORCE_DMA = 2, - ATA_GEN_INTEL_IDER = 4, -}; - -struct drm_device; - -struct drm_master { - struct kref refcount; - struct drm_device *dev; - char *unique; - int unique_len; - struct idr magic_map; - void *driver_priv; - struct drm_master *lessor; - int lessee_id; - struct list_head lessee_list; - struct list_head lessees; - struct idr leases; - struct idr lessee_idr; -}; - -struct drm_modeset_lock { - struct ww_mutex mutex; - struct list_head head; -}; - -struct drm_modeset_acquire_ctx; - -struct drm_mode_config_funcs; - -struct drm_property; - -struct drm_atomic_state; - -struct drm_mode_config_helper_funcs; - -struct drm_mode_config { - struct mutex mutex; - struct drm_modeset_lock connection_mutex; - struct drm_modeset_acquire_ctx *acquire_ctx; - struct mutex idr_mutex; - struct idr object_idr; - struct idr tile_idr; - struct mutex fb_lock; - int num_fb; - struct list_head fb_list; - spinlock_t connector_list_lock; - int num_connector; - struct ida connector_ida; - struct list_head connector_list; - struct llist_head connector_free_list; - struct work_struct connector_free_work; - int num_encoder; - struct list_head encoder_list; - int num_total_plane; - struct list_head plane_list; - struct raw_spinlock panic_lock; - int num_crtc; - struct list_head crtc_list; - struct list_head property_list; - struct list_head privobj_list; - unsigned int min_width; - unsigned int min_height; - unsigned int max_width; - unsigned int max_height; - const struct drm_mode_config_funcs *funcs; - bool poll_enabled; - bool poll_running; - bool delayed_event; - struct delayed_work output_poll_work; - struct mutex blob_lock; - struct list_head property_blob_list; - struct drm_property *edid_property; - struct drm_property *dpms_property; - struct drm_property *path_property; - struct drm_property *tile_property; - struct drm_property *link_status_property; - struct drm_property *plane_type_property; - struct drm_property *prop_src_x; - struct drm_property *prop_src_y; - struct drm_property *prop_src_w; - struct drm_property *prop_src_h; - struct drm_property *prop_crtc_x; - struct drm_property *prop_crtc_y; - struct drm_property *prop_crtc_w; - struct drm_property *prop_crtc_h; - struct drm_property *prop_fb_id; - struct drm_property *prop_in_fence_fd; - struct drm_property *prop_out_fence_ptr; - struct drm_property *prop_crtc_id; - struct drm_property *prop_fb_damage_clips; - struct drm_property *prop_active; - struct drm_property *prop_mode_id; - struct drm_property *prop_vrr_enabled; - struct drm_property *dvi_i_subconnector_property; - struct drm_property *dvi_i_select_subconnector_property; - struct drm_property *dp_subconnector_property; - struct drm_property *tv_subconnector_property; - struct drm_property *tv_select_subconnector_property; - struct drm_property *legacy_tv_mode_property; - struct drm_property *tv_mode_property; - struct drm_property *tv_left_margin_property; - struct drm_property *tv_right_margin_property; - struct drm_property *tv_top_margin_property; - struct drm_property *tv_bottom_margin_property; - struct drm_property *tv_brightness_property; - struct drm_property *tv_contrast_property; - struct drm_property *tv_flicker_reduction_property; - struct drm_property *tv_overscan_property; - struct drm_property *tv_saturation_property; - struct drm_property *tv_hue_property; - struct drm_property *scaling_mode_property; - struct drm_property *aspect_ratio_property; - struct drm_property *content_type_property; - struct drm_property *degamma_lut_property; - struct drm_property *degamma_lut_size_property; - struct drm_property *ctm_property; - struct drm_property *gamma_lut_property; - struct drm_property *gamma_lut_size_property; - struct drm_property *suggested_x_property; - struct drm_property *suggested_y_property; - struct drm_property *non_desktop_property; - struct drm_property *panel_orientation_property; - struct drm_property *writeback_fb_id_property; - struct drm_property *writeback_pixel_formats_property; - struct drm_property *writeback_out_fence_ptr_property; - struct drm_property *hdr_output_metadata_property; - struct drm_property *content_protection_property; - struct drm_property *hdcp_content_type_property; - uint32_t preferred_depth; - uint32_t prefer_shadow; - bool quirk_addfb_prefer_xbgr_30bpp; - bool quirk_addfb_prefer_host_byte_order; - bool async_page_flip; - bool fb_modifiers_not_supported; - bool normalize_zpos; - struct drm_property *modifiers_property; - struct drm_property *async_modifiers_property; - struct drm_property *size_hints_property; - uint32_t cursor_width; - uint32_t cursor_height; - struct drm_atomic_state *suspend_state; - const struct drm_mode_config_helper_funcs *helper_private; -}; - -struct drm_vram_mm; - -enum switch_power_state { - DRM_SWITCH_POWER_ON = 0, - DRM_SWITCH_POWER_OFF = 1, - DRM_SWITCH_POWER_CHANGING = 2, - DRM_SWITCH_POWER_DYNAMIC_OFF = 3, -}; - -struct drm_driver; - -struct drm_minor; - -struct drm_vblank_crtc; - -struct drm_vma_offset_manager; - -struct drm_fb_helper; - -struct drm_device { - int if_version; - struct kref ref; - struct device *dev; - struct device *dma_dev; - struct { - struct list_head resources; - void *final_kfree; - spinlock_t lock; - } managed; - const struct drm_driver *driver; - void *dev_private; - struct drm_minor *primary; - struct drm_minor *render; - struct drm_minor *accel; - bool registered; - struct drm_master *master; - u32 driver_features; - bool unplugged; - struct inode *anon_inode; - char *unique; - struct mutex struct_mutex; - struct mutex master_mutex; - atomic_t open_count; - struct mutex filelist_mutex; - struct list_head filelist; - struct list_head filelist_internal; - struct mutex clientlist_mutex; - struct list_head clientlist; - bool vblank_disable_immediate; - struct drm_vblank_crtc *vblank; - spinlock_t vblank_time_lock; - spinlock_t vbl_lock; - u32 max_vblank_count; - struct list_head vblank_event_list; - spinlock_t event_lock; - unsigned int num_crtcs; - struct drm_mode_config mode_config; - struct mutex object_name_lock; - struct idr object_name_idr; - struct drm_vma_offset_manager *vma_offset_manager; - struct drm_vram_mm *vram_mm; - enum switch_power_state switch_power_state; - struct drm_fb_helper *fb_helper; - struct dentry *debugfs_root; -}; - -typedef u32 depot_stack_handle_t; - -struct drm_modeset_acquire_ctx { - struct ww_acquire_ctx ww_ctx; - struct drm_modeset_lock *contended; - depot_stack_handle_t stack_depot; - struct list_head locked; - bool trylock_only; - bool interruptible; -}; - -enum drm_mode_status { - MODE_OK = 0, - MODE_HSYNC = 1, - MODE_VSYNC = 2, - MODE_H_ILLEGAL = 3, - MODE_V_ILLEGAL = 4, - MODE_BAD_WIDTH = 5, - MODE_NOMODE = 6, - MODE_NO_INTERLACE = 7, - MODE_NO_DBLESCAN = 8, - MODE_NO_VSCAN = 9, - MODE_MEM = 10, - MODE_VIRTUAL_X = 11, - MODE_VIRTUAL_Y = 12, - MODE_MEM_VIRT = 13, - MODE_NOCLOCK = 14, - MODE_CLOCK_HIGH = 15, - MODE_CLOCK_LOW = 16, - MODE_CLOCK_RANGE = 17, - MODE_BAD_HVALUE = 18, - MODE_BAD_VVALUE = 19, - MODE_BAD_VSCAN = 20, - MODE_HSYNC_NARROW = 21, - MODE_HSYNC_WIDE = 22, - MODE_HBLANK_NARROW = 23, - MODE_HBLANK_WIDE = 24, - MODE_VSYNC_NARROW = 25, - MODE_VSYNC_WIDE = 26, - MODE_VBLANK_NARROW = 27, - MODE_VBLANK_WIDE = 28, - MODE_PANEL = 29, - MODE_INTERLACE_WIDTH = 30, - MODE_ONE_WIDTH = 31, - MODE_ONE_HEIGHT = 32, - MODE_ONE_SIZE = 33, - MODE_NO_REDUCED = 34, - MODE_NO_STEREO = 35, - MODE_NO_420 = 36, - MODE_STALE = -3, - MODE_BAD = -2, - MODE_ERROR = -1, -}; - -struct drm_framebuffer; - -struct drm_file; - -struct drm_format_info; - -struct drm_mode_fb_cmd2; - -struct drm_display_mode; - -struct drm_mode_config_funcs { - struct drm_framebuffer * (*fb_create)(struct drm_device *, struct drm_file *, const struct drm_format_info *, const struct drm_mode_fb_cmd2 *); - const struct drm_format_info * (*get_format_info)(u32, u64); - enum drm_mode_status (*mode_valid)(struct drm_device *, const struct drm_display_mode *); - int (*atomic_check)(struct drm_device *, struct drm_atomic_state *); - int (*atomic_commit)(struct drm_device *, struct drm_atomic_state *, bool); - struct drm_atomic_state * (*atomic_state_alloc)(struct drm_device *); - void (*atomic_state_clear)(struct drm_atomic_state *); - void (*atomic_state_free)(struct drm_atomic_state *); -}; - -typedef unsigned int drm_magic_t; - -struct drm_prime_file_private { - struct mutex lock; - struct rb_root dmabufs; - struct rb_root handles; -}; - -struct drm_file { - bool authenticated; - bool stereo_allowed; - bool universal_planes; - bool atomic; - bool aspect_ratio_allowed; - bool writeback_connectors; - bool was_master; - bool is_master; - bool supports_virtualized_cursor_plane; - struct drm_master *master; - spinlock_t master_lookup_lock; - struct pid *pid; - u64 client_id; - drm_magic_t magic; - struct list_head lhead; - struct drm_minor *minor; - struct idr object_idr; - spinlock_t table_lock; - struct idr syncobj_idr; - spinlock_t syncobj_table_lock; - struct file *filp; - void *driver_priv; - struct list_head fbs; - struct mutex fbs_lock; - struct list_head blobs; - wait_queue_head_t event_wait; - struct list_head pending_event_list; - struct list_head event_list; - int event_space; - struct mutex event_read_lock; - struct drm_prime_file_private prime; - const char *client_name; - struct mutex client_name_lock; - struct dentry *debugfs_client; -}; - -struct drm_format_info { - u32 format; - u8 depth; - u8 num_planes; - union { - u8 cpp[4]; - u8 char_per_block[4]; - }; - u8 block_w[4]; - u8 block_h[4]; - u8 hsub; - u8 vsub; - bool has_alpha; - bool is_yuv; - bool is_color_indexed; -}; - -struct drm_mode_fb_cmd2 { - __u32 fb_id; - __u32 width; - __u32 height; - __u32 pixel_format; - __u32 flags; - __u32 handles[4]; - __u32 pitches[4]; - __u32 offsets[4]; - __u64 modifier[4]; -}; - -enum hdmi_picture_aspect { - HDMI_PICTURE_ASPECT_NONE = 0, - HDMI_PICTURE_ASPECT_4_3 = 1, - HDMI_PICTURE_ASPECT_16_9 = 2, - HDMI_PICTURE_ASPECT_64_27 = 3, - HDMI_PICTURE_ASPECT_256_135 = 4, - HDMI_PICTURE_ASPECT_RESERVED = 5, -}; - -struct drm_display_mode { - int clock; - u16 hdisplay; - u16 hsync_start; - u16 hsync_end; - u16 htotal; - u16 hskew; - u16 vdisplay; - u16 vsync_start; - u16 vsync_end; - u16 vtotal; - u16 vscan; - u32 flags; - int crtc_clock; - u16 crtc_hdisplay; - u16 crtc_hblank_start; - u16 crtc_hblank_end; - u16 crtc_hsync_start; - u16 crtc_hsync_end; - u16 crtc_htotal; - u16 crtc_hskew; - u16 crtc_vdisplay; - u16 crtc_vblank_start; - u16 crtc_vblank_end; - u16 crtc_vsync_start; - u16 crtc_vsync_end; - u16 crtc_vtotal; - u16 width_mm; - u16 height_mm; - u8 type; - bool expose_to_userspace; - struct list_head head; - char name[32]; - enum drm_mode_status status; - enum hdmi_picture_aspect picture_aspect_ratio; -}; - -struct drm_object_properties; - -struct drm_mode_object { - uint32_t id; - uint32_t type; - struct drm_object_properties *properties; - struct kref refcount; - void (*free_cb)(struct kref *); -}; - -struct drm_property { - struct list_head head; - struct drm_mode_object base; - uint32_t flags; - char name[32]; - uint32_t num_values; - uint64_t *values; - struct drm_device *dev; - struct list_head enum_list; -}; - -struct drm_mode_config_helper_funcs { - void (*atomic_commit_tail)(struct drm_atomic_state *); - int (*atomic_commit_setup)(struct drm_atomic_state *); -}; - -struct drm_gem_object; - -struct dma_buf; - -struct dma_buf_attachment; - -struct drm_mode_create_dumb; - -struct drm_fb_helper_surface_size; - -struct drm_printer; - -struct drm_ioctl_desc; - -struct drm_driver { - int (*load)(struct drm_device *, long unsigned int); - int (*open)(struct drm_device *, struct drm_file *); - void (*postclose)(struct drm_device *, struct drm_file *); - void (*unload)(struct drm_device *); - void (*release)(struct drm_device *); - void (*master_set)(struct drm_device *, struct drm_file *, bool); - void (*master_drop)(struct drm_device *, struct drm_file *); - void (*debugfs_init)(struct drm_minor *); - struct drm_gem_object * (*gem_create_object)(struct drm_device *, size_t); - int (*prime_handle_to_fd)(struct drm_device *, struct drm_file *, uint32_t, uint32_t, int *); - int (*prime_fd_to_handle)(struct drm_device *, struct drm_file *, int, uint32_t *); - struct drm_gem_object * (*gem_prime_import)(struct drm_device *, struct dma_buf *); - struct drm_gem_object * (*gem_prime_import_sg_table)(struct drm_device *, struct dma_buf_attachment *, struct sg_table *); - int (*dumb_create)(struct drm_file *, struct drm_device *, struct drm_mode_create_dumb *); - int (*dumb_map_offset)(struct drm_file *, struct drm_device *, uint32_t, uint64_t *); - int (*fbdev_probe)(struct drm_fb_helper *, struct drm_fb_helper_surface_size *); - void (*show_fdinfo)(struct drm_printer *, struct drm_file *); - int major; - int minor; - int patchlevel; - char *name; - char *desc; - u32 driver_features; - const struct drm_ioctl_desc *ioctls; - int num_ioctls; - const struct file_operations *fops; -}; - -struct drm_minor { - int index; - int type; - struct device *kdev; - struct drm_device *dev; - struct dentry *debugfs_symlink; - struct dentry *debugfs_root; -}; - -struct drm_vblank_crtc_config { - int offdelay_ms; - bool disable_immediate; -}; - -struct drm_vblank_crtc { - struct drm_device *dev; - wait_queue_head_t queue; - struct timer_list disable_timer; - seqlock_t seqlock; - atomic64_t count; - ktime_t time; - atomic_t refcount; - u32 last; - u32 max_vblank_count; - unsigned int inmodeset; - unsigned int pipe; - int framedur_ns; - int linedur_ns; - struct drm_display_mode hwmode; - struct drm_vblank_crtc_config config; - bool enabled; - struct kthread_worker *worker; - struct list_head pending_work; - wait_queue_head_t work_wait_queue; -}; - -enum drm_driver_feature { - DRIVER_GEM = 1, - DRIVER_MODESET = 2, - DRIVER_RENDER = 8, - DRIVER_ATOMIC = 16, - DRIVER_SYNCOBJ = 32, - DRIVER_SYNCOBJ_TIMELINE = 64, - DRIVER_COMPUTE_ACCEL = 128, - DRIVER_GEM_GPUVA = 256, - DRIVER_CURSOR_HOTSPOT = 512, - DRIVER_USE_AGP = 33554432, - DRIVER_LEGACY = 67108864, - DRIVER_PCI_DMA = 134217728, - DRIVER_SG = 268435456, - DRIVER_HAVE_DMA = 536870912, - DRIVER_HAVE_IRQ = 1073741824, -}; - -struct drm_mode_create_dumb { - __u32 height; - __u32 width; - __u32 bpp; - __u32 flags; - __u32 handle; - __u32 pitch; - __u64 size; -}; - -enum drm_debug_category { - DRM_UT_CORE = 0, - DRM_UT_DRIVER = 1, - DRM_UT_KMS = 2, - DRM_UT_PRIME = 3, - DRM_UT_ATOMIC = 4, - DRM_UT_VBL = 5, - DRM_UT_STATE = 6, - DRM_UT_LEASE = 7, - DRM_UT_DP = 8, - DRM_UT_DRMRES = 9, -}; - -struct drm_printer { - void (*printfn)(struct drm_printer *, struct va_format *); - void (*puts)(struct drm_printer *, const char *); - void *arg; - const void *origin; - const char *prefix; - struct { - unsigned int series; - unsigned int counter; - } line; - enum drm_debug_category category; -}; - -enum drm_ioctl_flags { - DRM_AUTH = 1, - DRM_MASTER = 2, - DRM_ROOT_ONLY = 4, - DRM_RENDER_ALLOW = 32, -}; - -typedef int drm_ioctl_t(struct drm_device *, void *, struct drm_file *); - -struct drm_ioctl_desc { - unsigned int cmd; - enum drm_ioctl_flags flags; - drm_ioctl_t *func; - const char *name; -}; - -struct drm_auth { - drm_magic_t magic; -}; - -struct drm_object_properties { - int count; - struct drm_property *properties[64]; - uint64_t values[64]; -}; - -struct iosys_map { - union { - void *vaddr_iomem; - void *vaddr; - }; - bool is_iomem; -}; - -enum xen_domain_type { - XEN_NATIVE = 0, - XEN_PV_DOMAIN = 1, - XEN_HVM_DOMAIN = 2, -}; - -enum hdmi_infoframe_type { - HDMI_INFOFRAME_TYPE_VENDOR = 129, - HDMI_INFOFRAME_TYPE_AVI = 130, - HDMI_INFOFRAME_TYPE_SPD = 131, - HDMI_INFOFRAME_TYPE_AUDIO = 132, - HDMI_INFOFRAME_TYPE_DRM = 135, -}; - -struct hdmi_any_infoframe { - enum hdmi_infoframe_type type; - unsigned char version; - unsigned char length; -}; - -enum hdmi_colorspace { - HDMI_COLORSPACE_RGB = 0, - HDMI_COLORSPACE_YUV422 = 1, - HDMI_COLORSPACE_YUV444 = 2, - HDMI_COLORSPACE_YUV420 = 3, - HDMI_COLORSPACE_RESERVED4 = 4, - HDMI_COLORSPACE_RESERVED5 = 5, - HDMI_COLORSPACE_RESERVED6 = 6, - HDMI_COLORSPACE_IDO_DEFINED = 7, -}; - -enum hdmi_scan_mode { - HDMI_SCAN_MODE_NONE = 0, - HDMI_SCAN_MODE_OVERSCAN = 1, - HDMI_SCAN_MODE_UNDERSCAN = 2, - HDMI_SCAN_MODE_RESERVED = 3, -}; - -enum hdmi_colorimetry { - HDMI_COLORIMETRY_NONE = 0, - HDMI_COLORIMETRY_ITU_601 = 1, - HDMI_COLORIMETRY_ITU_709 = 2, - HDMI_COLORIMETRY_EXTENDED = 3, -}; - -enum hdmi_active_aspect { - HDMI_ACTIVE_ASPECT_16_9_TOP = 2, - HDMI_ACTIVE_ASPECT_14_9_TOP = 3, - HDMI_ACTIVE_ASPECT_16_9_CENTER = 4, - HDMI_ACTIVE_ASPECT_PICTURE = 8, - HDMI_ACTIVE_ASPECT_4_3 = 9, - HDMI_ACTIVE_ASPECT_16_9 = 10, - HDMI_ACTIVE_ASPECT_14_9 = 11, - HDMI_ACTIVE_ASPECT_4_3_SP_14_9 = 13, - HDMI_ACTIVE_ASPECT_16_9_SP_14_9 = 14, - HDMI_ACTIVE_ASPECT_16_9_SP_4_3 = 15, -}; - -enum hdmi_extended_colorimetry { - HDMI_EXTENDED_COLORIMETRY_XV_YCC_601 = 0, - HDMI_EXTENDED_COLORIMETRY_XV_YCC_709 = 1, - HDMI_EXTENDED_COLORIMETRY_S_YCC_601 = 2, - HDMI_EXTENDED_COLORIMETRY_OPYCC_601 = 3, - HDMI_EXTENDED_COLORIMETRY_OPRGB = 4, - HDMI_EXTENDED_COLORIMETRY_BT2020_CONST_LUM = 5, - HDMI_EXTENDED_COLORIMETRY_BT2020 = 6, - HDMI_EXTENDED_COLORIMETRY_RESERVED = 7, -}; - -enum hdmi_quantization_range { - HDMI_QUANTIZATION_RANGE_DEFAULT = 0, - HDMI_QUANTIZATION_RANGE_LIMITED = 1, - HDMI_QUANTIZATION_RANGE_FULL = 2, - HDMI_QUANTIZATION_RANGE_RESERVED = 3, -}; - -enum hdmi_nups { - HDMI_NUPS_UNKNOWN = 0, - HDMI_NUPS_HORIZONTAL = 1, - HDMI_NUPS_VERTICAL = 2, - HDMI_NUPS_BOTH = 3, -}; - -enum hdmi_ycc_quantization_range { - HDMI_YCC_QUANTIZATION_RANGE_LIMITED = 0, - HDMI_YCC_QUANTIZATION_RANGE_FULL = 1, -}; - -enum hdmi_content_type { - HDMI_CONTENT_TYPE_GRAPHICS = 0, - HDMI_CONTENT_TYPE_PHOTO = 1, - HDMI_CONTENT_TYPE_CINEMA = 2, - HDMI_CONTENT_TYPE_GAME = 3, -}; - -enum hdmi_metadata_type { - HDMI_STATIC_METADATA_TYPE1 = 0, -}; - -enum hdmi_eotf { - HDMI_EOTF_TRADITIONAL_GAMMA_SDR = 0, - HDMI_EOTF_TRADITIONAL_GAMMA_HDR = 1, - HDMI_EOTF_SMPTE_ST2084 = 2, - HDMI_EOTF_BT_2100_HLG = 3, -}; - -struct hdmi_avi_infoframe { - enum hdmi_infoframe_type type; - unsigned char version; - unsigned char length; - bool itc; - unsigned char pixel_repeat; - enum hdmi_colorspace colorspace; - enum hdmi_scan_mode scan_mode; - enum hdmi_colorimetry colorimetry; - enum hdmi_picture_aspect picture_aspect; - enum hdmi_active_aspect active_aspect; - enum hdmi_extended_colorimetry extended_colorimetry; - enum hdmi_quantization_range quantization_range; - enum hdmi_nups nups; - unsigned char video_code; - enum hdmi_ycc_quantization_range ycc_quantization_range; - enum hdmi_content_type content_type; - short unsigned int top_bar; - short unsigned int bottom_bar; - short unsigned int left_bar; - short unsigned int right_bar; -}; - -struct hdmi_drm_infoframe { - enum hdmi_infoframe_type type; - unsigned char version; - unsigned char length; - enum hdmi_eotf eotf; - enum hdmi_metadata_type metadata_type; - struct { - u16 x; - u16 y; - } display_primaries[3]; - struct { - u16 x; - u16 y; - } white_point; - u16 max_display_mastering_luminance; - u16 min_display_mastering_luminance; - u16 max_cll; - u16 max_fall; -}; - -enum hdmi_spd_sdi { - HDMI_SPD_SDI_UNKNOWN = 0, - HDMI_SPD_SDI_DSTB = 1, - HDMI_SPD_SDI_DVDP = 2, - HDMI_SPD_SDI_DVHS = 3, - HDMI_SPD_SDI_HDDVR = 4, - HDMI_SPD_SDI_DVC = 5, - HDMI_SPD_SDI_DSC = 6, - HDMI_SPD_SDI_VCD = 7, - HDMI_SPD_SDI_GAME = 8, - HDMI_SPD_SDI_PC = 9, - HDMI_SPD_SDI_BD = 10, - HDMI_SPD_SDI_SACD = 11, - HDMI_SPD_SDI_HDDVD = 12, - HDMI_SPD_SDI_PMP = 13, -}; - -struct hdmi_spd_infoframe { - enum hdmi_infoframe_type type; - unsigned char version; - unsigned char length; - char vendor[8]; - char product[16]; - enum hdmi_spd_sdi sdi; -}; - -enum hdmi_audio_coding_type { - HDMI_AUDIO_CODING_TYPE_STREAM = 0, - HDMI_AUDIO_CODING_TYPE_PCM = 1, - HDMI_AUDIO_CODING_TYPE_AC3 = 2, - HDMI_AUDIO_CODING_TYPE_MPEG1 = 3, - HDMI_AUDIO_CODING_TYPE_MP3 = 4, - HDMI_AUDIO_CODING_TYPE_MPEG2 = 5, - HDMI_AUDIO_CODING_TYPE_AAC_LC = 6, - HDMI_AUDIO_CODING_TYPE_DTS = 7, - HDMI_AUDIO_CODING_TYPE_ATRAC = 8, - HDMI_AUDIO_CODING_TYPE_DSD = 9, - HDMI_AUDIO_CODING_TYPE_EAC3 = 10, - HDMI_AUDIO_CODING_TYPE_DTS_HD = 11, - HDMI_AUDIO_CODING_TYPE_MLP = 12, - HDMI_AUDIO_CODING_TYPE_DST = 13, - HDMI_AUDIO_CODING_TYPE_WMA_PRO = 14, - HDMI_AUDIO_CODING_TYPE_CXT = 15, -}; - -enum hdmi_audio_sample_size { - HDMI_AUDIO_SAMPLE_SIZE_STREAM = 0, - HDMI_AUDIO_SAMPLE_SIZE_16 = 1, - HDMI_AUDIO_SAMPLE_SIZE_20 = 2, - HDMI_AUDIO_SAMPLE_SIZE_24 = 3, -}; - -enum hdmi_audio_sample_frequency { - HDMI_AUDIO_SAMPLE_FREQUENCY_STREAM = 0, - HDMI_AUDIO_SAMPLE_FREQUENCY_32000 = 1, - HDMI_AUDIO_SAMPLE_FREQUENCY_44100 = 2, - HDMI_AUDIO_SAMPLE_FREQUENCY_48000 = 3, - HDMI_AUDIO_SAMPLE_FREQUENCY_88200 = 4, - HDMI_AUDIO_SAMPLE_FREQUENCY_96000 = 5, - HDMI_AUDIO_SAMPLE_FREQUENCY_176400 = 6, - HDMI_AUDIO_SAMPLE_FREQUENCY_192000 = 7, -}; - -enum hdmi_audio_coding_type_ext { - HDMI_AUDIO_CODING_TYPE_EXT_CT = 0, - HDMI_AUDIO_CODING_TYPE_EXT_HE_AAC = 1, - HDMI_AUDIO_CODING_TYPE_EXT_HE_AAC_V2 = 2, - HDMI_AUDIO_CODING_TYPE_EXT_MPEG_SURROUND = 3, - HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_HE_AAC = 4, - HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_HE_AAC_V2 = 5, - HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_AAC_LC = 6, - HDMI_AUDIO_CODING_TYPE_EXT_DRA = 7, - HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_HE_AAC_SURROUND = 8, - HDMI_AUDIO_CODING_TYPE_EXT_MPEG4_AAC_LC_SURROUND = 10, -}; - -struct hdmi_audio_infoframe { - enum hdmi_infoframe_type type; - unsigned char version; - unsigned char length; - unsigned char channels; - enum hdmi_audio_coding_type coding_type; - enum hdmi_audio_sample_size sample_size; - enum hdmi_audio_sample_frequency sample_frequency; - enum hdmi_audio_coding_type_ext coding_type_ext; - unsigned char channel_allocation; - unsigned char level_shift_value; - bool downmix_inhibit; -}; - -enum hdmi_3d_structure { - HDMI_3D_STRUCTURE_INVALID = -1, - HDMI_3D_STRUCTURE_FRAME_PACKING = 0, - HDMI_3D_STRUCTURE_FIELD_ALTERNATIVE = 1, - HDMI_3D_STRUCTURE_LINE_ALTERNATIVE = 2, - HDMI_3D_STRUCTURE_SIDE_BY_SIDE_FULL = 3, - HDMI_3D_STRUCTURE_L_DEPTH = 4, - HDMI_3D_STRUCTURE_L_DEPTH_GFX_GFX_DEPTH = 5, - HDMI_3D_STRUCTURE_TOP_AND_BOTTOM = 6, - HDMI_3D_STRUCTURE_SIDE_BY_SIDE_HALF = 8, -}; - -struct hdmi_vendor_infoframe { - enum hdmi_infoframe_type type; - unsigned char version; - unsigned char length; - unsigned int oui; - u8 vic; - enum hdmi_3d_structure s3d_struct; - unsigned int s3d_ext_data; -}; - -struct hdr_static_metadata { - __u8 eotf; - __u8 metadata_type; - __u16 max_cll; - __u16 max_fall; - __u16 min_cll; -}; - -struct hdr_sink_metadata { - __u32 metadata_type; - union { - struct hdr_static_metadata hdmi_type1; - }; -}; - -union hdmi_vendor_any_infoframe { - struct { - enum hdmi_infoframe_type type; - unsigned char version; - unsigned char length; - unsigned int oui; - } any; - struct hdmi_vendor_infoframe hdmi; -}; - -union hdmi_infoframe { - struct hdmi_any_infoframe any; - struct hdmi_avi_infoframe avi; - struct hdmi_spd_infoframe spd; - union hdmi_vendor_any_infoframe vendor; - struct hdmi_audio_infoframe audio; - struct hdmi_drm_infoframe drm; -}; - -enum drm_mode_subconnector { - DRM_MODE_SUBCONNECTOR_Automatic = 0, - DRM_MODE_SUBCONNECTOR_Unknown = 0, - DRM_MODE_SUBCONNECTOR_VGA = 1, - DRM_MODE_SUBCONNECTOR_DVID = 3, - DRM_MODE_SUBCONNECTOR_DVIA = 4, - DRM_MODE_SUBCONNECTOR_Composite = 5, - DRM_MODE_SUBCONNECTOR_SVIDEO = 6, - DRM_MODE_SUBCONNECTOR_Component = 8, - DRM_MODE_SUBCONNECTOR_SCART = 9, - DRM_MODE_SUBCONNECTOR_DisplayPort = 10, - DRM_MODE_SUBCONNECTOR_HDMIA = 11, - DRM_MODE_SUBCONNECTOR_Native = 15, - DRM_MODE_SUBCONNECTOR_Wireless = 18, -}; - -struct drm_mode_crtc_lut { - __u32 crtc_id; - __u32 gamma_size; - __u64 red; - __u64 green; - __u64 blue; -}; - -struct drm_color_lut { - __u16 red; - __u16 green; - __u16 blue; - __u16 reserved; -}; - -struct drm_property_blob { - struct drm_mode_object base; - struct drm_device *dev; - struct list_head head_global; - struct list_head head_file; - size_t length; - void *data; -}; - -struct drm_prop_enum_list { - int type; - const char *name; -}; - -enum drm_connector_force { - DRM_FORCE_UNSPECIFIED = 0, - DRM_FORCE_OFF = 1, - DRM_FORCE_ON = 2, - DRM_FORCE_ON_DIGITAL = 3, -}; - -enum drm_connector_status { - connector_status_connected = 1, - connector_status_disconnected = 2, - connector_status_unknown = 3, -}; - -enum drm_connector_registration_state { - DRM_CONNECTOR_INITIALIZING = 0, - DRM_CONNECTOR_REGISTERED = 1, - DRM_CONNECTOR_UNREGISTERED = 2, -}; - -enum subpixel_order { - SubPixelUnknown = 0, - SubPixelHorizontalRGB = 1, - SubPixelHorizontalBGR = 2, - SubPixelVerticalRGB = 3, - SubPixelVerticalBGR = 4, - SubPixelNone = 5, -}; - -enum drm_connector_tv_mode { - DRM_MODE_TV_MODE_NTSC = 0, - DRM_MODE_TV_MODE_NTSC_443 = 1, - DRM_MODE_TV_MODE_NTSC_J = 2, - DRM_MODE_TV_MODE_PAL = 3, - DRM_MODE_TV_MODE_PAL_M = 4, - DRM_MODE_TV_MODE_PAL_N = 5, - DRM_MODE_TV_MODE_SECAM = 6, - DRM_MODE_TV_MODE_MONOCHROME = 7, - DRM_MODE_TV_MODE_MAX = 8, -}; - -struct drm_scrambling { - bool supported; - bool low_rates; -}; - -struct drm_scdc { - bool supported; - bool read_request; - struct drm_scrambling scrambling; -}; - -struct drm_hdmi_dsc_cap { - bool v_1p2; - bool native_420; - bool all_bpp; - u8 bpc_supported; - u8 max_slices; - int clk_per_slice; - u8 max_lanes; - u8 max_frl_rate_per_lane; - u8 total_chunk_kbytes; -}; - -struct drm_hdmi_info { - struct drm_scdc scdc; - long unsigned int y420_vdb_modes[4]; - long unsigned int y420_cmdb_modes[4]; - u8 y420_dc_modes; - u8 max_frl_rate_per_lane; - u8 max_lanes; - struct drm_hdmi_dsc_cap dsc_cap; -}; - -enum drm_link_status { - DRM_LINK_STATUS_GOOD = 0, - DRM_LINK_STATUS_BAD = 1, -}; - -enum drm_panel_orientation { - DRM_MODE_PANEL_ORIENTATION_UNKNOWN = -1, - DRM_MODE_PANEL_ORIENTATION_NORMAL = 0, - DRM_MODE_PANEL_ORIENTATION_BOTTOM_UP = 1, - DRM_MODE_PANEL_ORIENTATION_LEFT_UP = 2, - DRM_MODE_PANEL_ORIENTATION_RIGHT_UP = 3, -}; - -enum drm_hdmi_broadcast_rgb { - DRM_HDMI_BROADCAST_RGB_AUTO = 0, - DRM_HDMI_BROADCAST_RGB_FULL = 1, - DRM_HDMI_BROADCAST_RGB_LIMITED = 2, -}; - -struct drm_monitor_range_info { - u16 min_vfreq; - u16 max_vfreq; -}; - -struct drm_luminance_range_info { - u32 min_luminance; - u32 max_luminance; -}; - -enum drm_privacy_screen_status { - PRIVACY_SCREEN_DISABLED = 0, - PRIVACY_SCREEN_ENABLED = 1, - PRIVACY_SCREEN_DISABLED_LOCKED = 2, - PRIVACY_SCREEN_ENABLED_LOCKED = 3, -}; - -enum drm_colorspace { - DRM_MODE_COLORIMETRY_DEFAULT = 0, - DRM_MODE_COLORIMETRY_NO_DATA = 0, - DRM_MODE_COLORIMETRY_SMPTE_170M_YCC = 1, - DRM_MODE_COLORIMETRY_BT709_YCC = 2, - DRM_MODE_COLORIMETRY_XVYCC_601 = 3, - DRM_MODE_COLORIMETRY_XVYCC_709 = 4, - DRM_MODE_COLORIMETRY_SYCC_601 = 5, - DRM_MODE_COLORIMETRY_OPYCC_601 = 6, - DRM_MODE_COLORIMETRY_OPRGB = 7, - DRM_MODE_COLORIMETRY_BT2020_CYCC = 8, - DRM_MODE_COLORIMETRY_BT2020_RGB = 9, - DRM_MODE_COLORIMETRY_BT2020_YCC = 10, - DRM_MODE_COLORIMETRY_DCI_P3_RGB_D65 = 11, - DRM_MODE_COLORIMETRY_DCI_P3_RGB_THEATER = 12, - DRM_MODE_COLORIMETRY_RGB_WIDE_FIXED = 13, - DRM_MODE_COLORIMETRY_RGB_WIDE_FLOAT = 14, - DRM_MODE_COLORIMETRY_BT601_YCC = 15, - DRM_MODE_COLORIMETRY_COUNT = 16, -}; - -struct drm_display_info { - unsigned int width_mm; - unsigned int height_mm; - unsigned int bpc; - enum subpixel_order subpixel_order; - int panel_orientation; - u32 color_formats; - const u32 *bus_formats; - unsigned int num_bus_formats; - u32 bus_flags; - int max_tmds_clock; - bool dvi_dual; - bool is_hdmi; - bool has_audio; - bool has_hdmi_infoframe; - bool rgb_quant_range_selectable; - u8 edid_hdmi_rgb444_dc_modes; - u8 edid_hdmi_ycbcr444_dc_modes; - u8 cea_rev; - struct drm_hdmi_info hdmi; - struct hdr_sink_metadata hdr_sink_metadata; - bool non_desktop; - struct drm_monitor_range_info monitor_range; - struct drm_luminance_range_info luminance_range; - u8 mso_stream_count; - u8 mso_pixel_overlap; - u32 max_dsc_bpp; - u8 *vics; - int vics_len; - u32 quirks; - u16 source_physical_address; -}; - -struct drm_connector_tv_margins { - unsigned int bottom; - unsigned int left; - unsigned int right; - unsigned int top; -}; - -struct drm_tv_connector_state { - enum drm_mode_subconnector select_subconnector; - enum drm_mode_subconnector subconnector; - struct drm_connector_tv_margins margins; - unsigned int legacy_mode; - unsigned int mode; - unsigned int brightness; - unsigned int contrast; - unsigned int flicker_reduction; - unsigned int overscan; - unsigned int saturation; - unsigned int hue; -}; - -struct drm_connector_hdmi_infoframe { - union hdmi_infoframe data; - bool set; -}; - -struct drm_connector_hdmi_state { - enum drm_hdmi_broadcast_rgb broadcast_rgb; - struct { - struct drm_connector_hdmi_infoframe avi; - struct drm_connector_hdmi_infoframe hdr_drm; - struct drm_connector_hdmi_infoframe spd; - struct drm_connector_hdmi_infoframe hdmi; - } infoframes; - bool is_limited_range; - unsigned int output_bpc; - enum hdmi_colorspace output_format; - long long unsigned int tmds_char_rate; -}; - -struct drm_connector; - -struct drm_crtc; - -struct drm_encoder; - -struct drm_crtc_commit; - -struct drm_writeback_job; - -struct drm_connector_state { - struct drm_connector *connector; - struct drm_crtc *crtc; - struct drm_encoder *best_encoder; - enum drm_link_status link_status; - struct drm_atomic_state *state; - struct drm_crtc_commit *commit; - struct drm_tv_connector_state tv; - bool self_refresh_aware; - enum hdmi_picture_aspect picture_aspect_ratio; - unsigned int content_type; - unsigned int hdcp_content_type; - unsigned int scaling_mode; - unsigned int content_protection; - enum drm_colorspace colorspace; - struct drm_writeback_job *writeback_job; - u8 max_requested_bpc; - u8 max_bpc; - enum drm_privacy_screen_status privacy_screen_sw_state; - struct drm_property_blob *hdr_output_metadata; - struct drm_connector_hdmi_state hdmi; -}; - -struct drm_privacy_screen; - -struct drm_cmdline_mode { - char name[32]; - bool specified; - bool refresh_specified; - bool bpp_specified; - unsigned int pixel_clock; - int xres; - int yres; - int bpp; - int refresh; - bool rb; - bool interlace; - bool cvt; - bool margins; - enum drm_connector_force force; - unsigned int rotation_reflection; - enum drm_panel_orientation panel_orientation; - struct drm_connector_tv_margins tv_margins; - enum drm_connector_tv_mode tv_mode; - bool tv_mode_specified; -}; - -struct drm_connector_hdmi_funcs; - -struct drm_connector_hdmi { - unsigned char vendor[8]; - unsigned char product[16]; - long unsigned int supported_formats; - const struct drm_connector_hdmi_funcs *funcs; - struct { - struct mutex lock; - struct drm_connector_hdmi_infoframe audio; - } infoframes; -}; - -struct drm_connector_hdmi_audio_funcs; - -struct drm_connector_hdmi_audio { - const struct drm_connector_hdmi_audio_funcs *funcs; - struct platform_device *codec_pdev; - struct mutex lock; - void (*plugged_cb)(struct device *, bool); - struct device *plugged_cb_dev; - bool last_state; - int dai_port; -}; - -struct drm_connector_cec_funcs; - -struct drm_connector_cec { - struct mutex mutex; - const struct drm_connector_cec_funcs *funcs; - void *data; -}; - -struct drm_connector_funcs; - -struct drm_connector_helper_funcs; - -struct drm_edid; - -struct drm_tile_group; - -struct drm_connector { - struct drm_device *dev; - struct device *kdev; - struct device_attribute *attr; - struct fwnode_handle *fwnode; - struct list_head head; - struct list_head global_connector_list_entry; - struct drm_mode_object base; - char *name; - struct mutex mutex; - unsigned int index; - int connector_type; - int connector_type_id; - bool interlace_allowed; - bool doublescan_allowed; - bool stereo_allowed; - bool ycbcr_420_allowed; - enum drm_connector_registration_state registration_state; - struct list_head modes; - enum drm_connector_status status; - struct list_head probed_modes; - struct drm_display_info display_info; - const struct drm_connector_funcs *funcs; - struct drm_property_blob *edid_blob_ptr; - struct drm_object_properties properties; - struct drm_property *scaling_mode_property; - struct drm_property *vrr_capable_property; - struct drm_property *colorspace_property; - struct drm_property_blob *path_blob_ptr; - unsigned int max_bpc; - struct drm_property *max_bpc_property; - struct drm_privacy_screen *privacy_screen; - struct notifier_block privacy_screen_notifier; - struct drm_property *privacy_screen_sw_state_property; - struct drm_property *privacy_screen_hw_state_property; - struct drm_property *broadcast_rgb_property; - uint8_t polled; - int dpms; - const struct drm_connector_helper_funcs *helper_private; - struct drm_cmdline_mode cmdline_mode; - enum drm_connector_force force; - const struct drm_edid *edid_override; - struct mutex edid_override_mutex; - u64 epoch_counter; - u32 possible_encoders; - struct drm_encoder *encoder; - uint8_t eld[128]; - struct mutex eld_mutex; - bool latency_present[2]; - int video_latency[2]; - int audio_latency[2]; - struct i2c_adapter *ddc; - int null_edid_counter; - unsigned int bad_edid_counter; - bool edid_corrupt; - u8 real_edid_checksum; - struct dentry *debugfs_entry; - struct drm_connector_state *state; - struct drm_property_blob *tile_blob_ptr; - bool has_tile; - struct drm_tile_group *tile_group; - bool tile_is_single_monitor; - uint8_t num_h_tile; - uint8_t num_v_tile; - uint8_t tile_h_loc; - uint8_t tile_v_loc; - uint16_t tile_h_size; - uint16_t tile_v_size; - struct llist_node free_node; - struct drm_connector_hdmi hdmi; - struct drm_connector_hdmi_audio hdmi_audio; - struct drm_connector_cec cec; -}; - -struct drm_crtc_crc_entry; - -struct drm_crtc_crc { - spinlock_t lock; - const char *source; - bool opened; - bool overflow; - struct drm_crtc_crc_entry *entries; - int head; - int tail; - size_t values_cnt; - wait_queue_head_t wq; -}; - -struct drm_plane; - -struct drm_crtc_funcs; - -struct drm_crtc_helper_funcs; - -struct drm_crtc_state; - -struct drm_self_refresh_data; - -struct drm_crtc { - struct drm_device *dev; - struct device_node *port; - struct list_head head; - char *name; - struct drm_modeset_lock mutex; - struct drm_mode_object base; - struct drm_plane *primary; - struct drm_plane *cursor; - unsigned int index; - int cursor_x; - int cursor_y; - bool enabled; - struct drm_display_mode mode; - struct drm_display_mode hwmode; - int x; - int y; - const struct drm_crtc_funcs *funcs; - uint32_t gamma_size; - uint16_t *gamma_store; - const struct drm_crtc_helper_funcs *helper_private; - struct drm_object_properties properties; - struct drm_property *scaling_filter_property; - struct drm_crtc_state *state; - struct list_head commit_list; - spinlock_t commit_lock; - struct dentry *debugfs_entry; - struct drm_crtc_crc crc; - unsigned int fence_context; - spinlock_t fence_lock; - long unsigned int fence_seqno; - char timeline_name[32]; - struct drm_self_refresh_data *self_refresh_data; -}; - -struct __drm_planes_state; - -struct __drm_crtcs_state; - -struct __drm_connnectors_state; - -struct __drm_private_objs_state; - -struct drm_atomic_state { - struct kref ref; - struct drm_device *dev; - bool allow_modeset: 1; - bool legacy_cursor_update: 1; - bool async_update: 1; - bool duplicated: 1; - struct __drm_planes_state *planes; - struct __drm_crtcs_state *crtcs; - int num_connector; - struct __drm_connnectors_state *connectors; - int num_private_objs; - struct __drm_private_objs_state *private_objs; - struct drm_modeset_acquire_ctx *acquire_ctx; - struct drm_crtc_commit *fake_commit; - struct work_struct commit_work; -}; - -struct drm_pending_vblank_event; - -struct drm_crtc_commit { - struct drm_crtc *crtc; - struct kref ref; - struct completion flip_done; - struct completion hw_done; - struct completion cleanup_done; - struct list_head commit_entry; - struct drm_pending_vblank_event *event; - bool abort_completion; -}; - -struct hdmi_codec_daifmt; - -struct hdmi_codec_params; - -struct drm_connector_hdmi_audio_funcs { - int (*startup)(struct drm_connector *); - int (*prepare)(struct drm_connector *, struct hdmi_codec_daifmt *, struct hdmi_codec_params *); - void (*shutdown)(struct drm_connector *); - int (*mute_stream)(struct drm_connector *, bool, int); -}; - -struct drm_connector_cec_funcs { - void (*phys_addr_invalidate)(struct drm_connector *); - void (*phys_addr_set)(struct drm_connector *, u16); -}; - -struct drm_connector_hdmi_funcs { - enum drm_mode_status (*tmds_char_rate_valid)(const struct drm_connector *, const struct drm_display_mode *, long long unsigned int); - int (*clear_infoframe)(struct drm_connector *, enum hdmi_infoframe_type); - int (*write_infoframe)(struct drm_connector *, enum hdmi_infoframe_type, const u8 *, size_t); - const struct drm_edid * (*read_edid)(struct drm_connector *); -}; - -struct edid; - -struct drm_edid { - size_t size; - const struct edid *edid; -}; - -struct drm_connector_funcs { - int (*dpms)(struct drm_connector *, int); - void (*reset)(struct drm_connector *); - enum drm_connector_status (*detect)(struct drm_connector *, bool); - void (*force)(struct drm_connector *); - int (*fill_modes)(struct drm_connector *, uint32_t, uint32_t); - int (*set_property)(struct drm_connector *, struct drm_property *, uint64_t); - int (*late_register)(struct drm_connector *); - void (*early_unregister)(struct drm_connector *); - void (*destroy)(struct drm_connector *); - struct drm_connector_state * (*atomic_duplicate_state)(struct drm_connector *); - void (*atomic_destroy_state)(struct drm_connector *, struct drm_connector_state *); - int (*atomic_set_property)(struct drm_connector *, struct drm_connector_state *, struct drm_property *, uint64_t); - int (*atomic_get_property)(struct drm_connector *, const struct drm_connector_state *, struct drm_property *, uint64_t *); - void (*atomic_print_state)(struct drm_printer *, const struct drm_connector_state *); - void (*oob_hotplug_event)(struct drm_connector *, enum drm_connector_status); - void (*debugfs_init)(struct drm_connector *, struct dentry *); -}; - -struct drm_writeback_connector; - -struct drm_connector_helper_funcs { - int (*get_modes)(struct drm_connector *); - int (*detect_ctx)(struct drm_connector *, struct drm_modeset_acquire_ctx *, bool); - enum drm_mode_status (*mode_valid)(struct drm_connector *, const struct drm_display_mode *); - int (*mode_valid_ctx)(struct drm_connector *, const struct drm_display_mode *, struct drm_modeset_acquire_ctx *, enum drm_mode_status *); - struct drm_encoder * (*best_encoder)(struct drm_connector *); - struct drm_encoder * (*atomic_best_encoder)(struct drm_connector *, struct drm_atomic_state *); - int (*atomic_check)(struct drm_connector *, struct drm_atomic_state *); - void (*atomic_commit)(struct drm_connector *, struct drm_atomic_state *); - int (*prepare_writeback_job)(struct drm_writeback_connector *, struct drm_writeback_job *); - void (*cleanup_writeback_job)(struct drm_writeback_connector *, struct drm_writeback_job *); - void (*enable_hpd)(struct drm_connector *); - void (*disable_hpd)(struct drm_connector *); -}; - -struct drm_tile_group { - struct kref refcount; - struct drm_device *dev; - int id; - u8 group_data[8]; -}; - -struct kmsg_dump_detail { - enum kmsg_dump_reason reason; - const char *description; -}; - -struct kmsg_dumper { - struct list_head list; - void (*dump)(struct kmsg_dumper *, struct kmsg_dump_detail *); - enum kmsg_dump_reason max_reason; - bool registered; -}; - -enum drm_color_encoding { - DRM_COLOR_YCBCR_BT601 = 0, - DRM_COLOR_YCBCR_BT709 = 1, - DRM_COLOR_YCBCR_BT2020 = 2, - DRM_COLOR_ENCODING_MAX = 3, -}; - -enum drm_color_range { - DRM_COLOR_YCBCR_LIMITED_RANGE = 0, - DRM_COLOR_YCBCR_FULL_RANGE = 1, - DRM_COLOR_RANGE_MAX = 2, -}; - -enum drm_color_lut_tests { - DRM_COLOR_LUT_EQUAL_CHANNELS = 1, - DRM_COLOR_LUT_NON_DECREASING = 2, -}; - -typedef void (*drm_crtc_set_lut_func)(struct drm_crtc *, unsigned int, u16, u16, u16); - -struct drm_rect { - int x1; - int y1; - int x2; - int y2; -}; - -enum drm_scaling_filter { - DRM_SCALING_FILTER_DEFAULT = 0, - DRM_SCALING_FILTER_NEAREST_NEIGHBOR = 1, -}; - -struct drm_plane_state { - struct drm_plane *plane; - struct drm_crtc *crtc; - struct drm_framebuffer *fb; - struct dma_fence *fence; - int32_t crtc_x; - int32_t crtc_y; - uint32_t crtc_w; - uint32_t crtc_h; - uint32_t src_x; - uint32_t src_y; - uint32_t src_h; - uint32_t src_w; - int32_t hotspot_x; - int32_t hotspot_y; - u16 alpha; - uint16_t pixel_blend_mode; - unsigned int rotation; - unsigned int zpos; - unsigned int normalized_zpos; - enum drm_color_encoding color_encoding; - enum drm_color_range color_range; - struct drm_property_blob *fb_damage_clips; - bool ignore_damage_clips; - struct drm_rect src; - struct drm_rect dst; - bool visible; - enum drm_scaling_filter scaling_filter; - struct drm_crtc_commit *commit; - struct drm_atomic_state *state; - bool color_mgmt_changed: 1; -}; - -enum drm_plane_type { - DRM_PLANE_TYPE_OVERLAY = 0, - DRM_PLANE_TYPE_PRIMARY = 1, - DRM_PLANE_TYPE_CURSOR = 2, -}; - -struct drm_plane_funcs; - -struct drm_plane_helper_funcs; - -struct drm_plane { - struct drm_device *dev; - struct list_head head; - char *name; - struct drm_modeset_lock mutex; - struct drm_mode_object base; - uint32_t possible_crtcs; - uint32_t *format_types; - unsigned int format_count; - bool format_default; - uint64_t *modifiers; - unsigned int modifier_count; - struct drm_crtc *crtc; - struct drm_framebuffer *fb; - struct drm_framebuffer *old_fb; - const struct drm_plane_funcs *funcs; - struct drm_object_properties properties; - enum drm_plane_type type; - unsigned int index; - const struct drm_plane_helper_funcs *helper_private; - struct drm_plane_state *state; - struct drm_property *alpha_property; - struct drm_property *zpos_property; - struct drm_property *rotation_property; - struct drm_property *blend_mode_property; - struct drm_property *color_encoding_property; - struct drm_property *color_range_property; - struct drm_property *scaling_filter_property; - struct drm_property *hotspot_x_property; - struct drm_property *hotspot_y_property; - struct kmsg_dumper kmsg_panic; -}; - -struct drm_plane_funcs { - int (*update_plane)(struct drm_plane *, struct drm_crtc *, struct drm_framebuffer *, int, int, unsigned int, unsigned int, uint32_t, uint32_t, uint32_t, uint32_t, struct drm_modeset_acquire_ctx *); - int (*disable_plane)(struct drm_plane *, struct drm_modeset_acquire_ctx *); - void (*destroy)(struct drm_plane *); - void (*reset)(struct drm_plane *); - int (*set_property)(struct drm_plane *, struct drm_property *, uint64_t); - struct drm_plane_state * (*atomic_duplicate_state)(struct drm_plane *); - void (*atomic_destroy_state)(struct drm_plane *, struct drm_plane_state *); - int (*atomic_set_property)(struct drm_plane *, struct drm_plane_state *, struct drm_property *, uint64_t); - int (*atomic_get_property)(struct drm_plane *, const struct drm_plane_state *, struct drm_property *, uint64_t *); - int (*late_register)(struct drm_plane *); - void (*early_unregister)(struct drm_plane *); - void (*atomic_print_state)(struct drm_printer *, const struct drm_plane_state *); - bool (*format_mod_supported)(struct drm_plane *, uint32_t, uint64_t); - bool (*format_mod_supported_async)(struct drm_plane *, u32, u64); -}; - -struct drm_scanout_buffer; - -struct drm_plane_helper_funcs { - int (*prepare_fb)(struct drm_plane *, struct drm_plane_state *); - void (*cleanup_fb)(struct drm_plane *, struct drm_plane_state *); - int (*begin_fb_access)(struct drm_plane *, struct drm_plane_state *); - void (*end_fb_access)(struct drm_plane *, struct drm_plane_state *); - int (*atomic_check)(struct drm_plane *, struct drm_atomic_state *); - void (*atomic_update)(struct drm_plane *, struct drm_atomic_state *); - void (*atomic_enable)(struct drm_plane *, struct drm_atomic_state *); - void (*atomic_disable)(struct drm_plane *, struct drm_atomic_state *); - int (*atomic_async_check)(struct drm_plane *, struct drm_atomic_state *, bool); - void (*atomic_async_update)(struct drm_plane *, struct drm_atomic_state *); - int (*get_scanout_buffer)(struct drm_plane *, struct drm_scanout_buffer *); - void (*panic_flush)(struct drm_plane *); -}; - -struct drm_crtc_crc_entry { - bool has_frame_counter; - uint32_t frame; - uint32_t crcs[10]; -}; - -struct drm_crtc_state { - struct drm_crtc *crtc; - bool enable; - bool active; - bool planes_changed: 1; - bool mode_changed: 1; - bool active_changed: 1; - bool connectors_changed: 1; - bool zpos_changed: 1; - bool color_mgmt_changed: 1; - bool no_vblank: 1; - u32 plane_mask; - u32 connector_mask; - u32 encoder_mask; - struct drm_display_mode adjusted_mode; - struct drm_display_mode mode; - struct drm_property_blob *mode_blob; - struct drm_property_blob *degamma_lut; - struct drm_property_blob *ctm; - struct drm_property_blob *gamma_lut; - u32 target_vblank; - bool async_flip; - bool vrr_enabled; - bool self_refresh_active; - enum drm_scaling_filter scaling_filter; - struct drm_pending_vblank_event *event; - struct drm_crtc_commit *commit; - struct drm_atomic_state *state; -}; - -struct drm_mode_set; - -struct drm_crtc_funcs { - void (*reset)(struct drm_crtc *); - int (*cursor_set)(struct drm_crtc *, struct drm_file *, uint32_t, uint32_t, uint32_t); - int (*cursor_set2)(struct drm_crtc *, struct drm_file *, uint32_t, uint32_t, uint32_t, int32_t, int32_t); - int (*cursor_move)(struct drm_crtc *, int, int); - int (*gamma_set)(struct drm_crtc *, u16 *, u16 *, u16 *, uint32_t, struct drm_modeset_acquire_ctx *); - void (*destroy)(struct drm_crtc *); - int (*set_config)(struct drm_mode_set *, struct drm_modeset_acquire_ctx *); - int (*page_flip)(struct drm_crtc *, struct drm_framebuffer *, struct drm_pending_vblank_event *, uint32_t, struct drm_modeset_acquire_ctx *); - int (*page_flip_target)(struct drm_crtc *, struct drm_framebuffer *, struct drm_pending_vblank_event *, uint32_t, uint32_t, struct drm_modeset_acquire_ctx *); - int (*set_property)(struct drm_crtc *, struct drm_property *, uint64_t); - struct drm_crtc_state * (*atomic_duplicate_state)(struct drm_crtc *); - void (*atomic_destroy_state)(struct drm_crtc *, struct drm_crtc_state *); - int (*atomic_set_property)(struct drm_crtc *, struct drm_crtc_state *, struct drm_property *, uint64_t); - int (*atomic_get_property)(struct drm_crtc *, const struct drm_crtc_state *, struct drm_property *, uint64_t *); - int (*late_register)(struct drm_crtc *); - void (*early_unregister)(struct drm_crtc *); - int (*set_crc_source)(struct drm_crtc *, const char *); - int (*verify_crc_source)(struct drm_crtc *, const char *, size_t *); - const char * const * (*get_crc_sources)(struct drm_crtc *, size_t *); - void (*atomic_print_state)(struct drm_printer *, const struct drm_crtc_state *); - u32 (*get_vblank_counter)(struct drm_crtc *); - int (*enable_vblank)(struct drm_crtc *); - void (*disable_vblank)(struct drm_crtc *); - bool (*get_vblank_timestamp)(struct drm_crtc *, int *, ktime_t *, bool); -}; - -struct drm_mode_set { - struct drm_framebuffer *fb; - struct drm_crtc *crtc; - struct drm_display_mode *mode; - uint32_t x; - uint32_t y; - struct drm_connector **connectors; - size_t num_connectors; -}; - -enum mode_set_atomic { - LEAVE_ATOMIC_MODE_SET = 0, - ENTER_ATOMIC_MODE_SET = 1, -}; - -struct drm_crtc_helper_funcs { - void (*dpms)(struct drm_crtc *, int); - void (*prepare)(struct drm_crtc *); - void (*commit)(struct drm_crtc *); - enum drm_mode_status (*mode_valid)(struct drm_crtc *, const struct drm_display_mode *); - bool (*mode_fixup)(struct drm_crtc *, const struct drm_display_mode *, struct drm_display_mode *); - int (*mode_set)(struct drm_crtc *, struct drm_display_mode *, struct drm_display_mode *, int, int, struct drm_framebuffer *); - void (*mode_set_nofb)(struct drm_crtc *); - int (*mode_set_base)(struct drm_crtc *, int, int, struct drm_framebuffer *); - int (*mode_set_base_atomic)(struct drm_crtc *, struct drm_framebuffer *, int, int, enum mode_set_atomic); - void (*disable)(struct drm_crtc *); - int (*atomic_check)(struct drm_crtc *, struct drm_atomic_state *); - void (*atomic_begin)(struct drm_crtc *, struct drm_atomic_state *); - void (*atomic_flush)(struct drm_crtc *, struct drm_atomic_state *); - void (*atomic_enable)(struct drm_crtc *, struct drm_atomic_state *); - void (*atomic_disable)(struct drm_crtc *, struct drm_atomic_state *); - bool (*get_scanout_position)(struct drm_crtc *, bool, int *, int *, ktime_t *, ktime_t *, const struct drm_display_mode *); -}; - -struct __drm_planes_state { - struct drm_plane *ptr; - struct drm_plane_state *state; - struct drm_plane_state *old_state; - struct drm_plane_state *new_state; -}; - -struct __drm_crtcs_state { - struct drm_crtc *ptr; - struct drm_crtc_state *state; - struct drm_crtc_state *old_state; - struct drm_crtc_state *new_state; - struct drm_crtc_commit *commit; - s32 *out_fence_ptr; - u64 last_vblank_count; -}; - -struct __drm_connnectors_state { - struct drm_connector *ptr; - struct drm_connector_state *state; - struct drm_connector_state *old_state; - struct drm_connector_state *new_state; - s32 *out_fence_ptr; -}; - -struct drm_private_state; - -struct drm_private_obj; - -struct drm_private_state_funcs { - struct drm_private_state * (*atomic_duplicate_state)(struct drm_private_obj *); - void (*atomic_destroy_state)(struct drm_private_obj *, struct drm_private_state *); - void (*atomic_print_state)(struct drm_printer *, const struct drm_private_state *); -}; - -struct drm_private_state { - struct drm_atomic_state *state; - struct drm_private_obj *obj; -}; - -struct drm_private_obj { - struct list_head head; - struct drm_modeset_lock lock; - struct drm_private_state *state; - const struct drm_private_state_funcs *funcs; -}; - -struct __drm_private_objs_state { - struct drm_private_obj *ptr; - struct drm_private_state *state; - struct drm_private_state *old_state; - struct drm_private_state *new_state; -}; - -struct drm_edid_ident { - u32 panel_id; - const char *name; -}; - -struct displayid_header { - u8 rev; - u8 bytes; - u8 prod_id; - u8 ext_count; -}; - -struct displayid_block { - u8 tag; - u8 rev; - u8 num_bytes; -}; - -struct displayid_iter { - const struct drm_edid *drm_edid; - const u8 *section; - int length; - int idx; - int ext_index; - u8 version; - u8 primary_use; - u8 quirks; -}; - -enum { - QUIRK_IGNORE_CHECKSUM = 0, -}; - -struct displayid_quirk { - const struct drm_edid_ident ident; - u8 quirks; -}; - -struct drm_event { - __u32 type; - __u32 length; -}; - -struct drm_event_vblank { - struct drm_event base; - __u64 user_data; - __u32 tv_sec; - __u32 tv_usec; - __u32 sequence; - __u32 crtc_id; -}; - -struct drm_event_crtc_sequence { - struct drm_event base; - __u64 user_data; - __s64 time_ns; - __u64 sequence; -}; - -enum drm_minor_type { - DRM_MINOR_PRIMARY = 0, - DRM_MINOR_CONTROL = 1, - DRM_MINOR_RENDER = 2, - DRM_MINOR_ACCEL = 32, -}; - -struct drm_pending_event { - struct completion *completion; - void (*completion_release)(struct completion *); - struct drm_event *event; - struct dma_fence *fence; - struct drm_file *file_priv; - struct list_head link; - struct list_head pending_link; -}; - -struct drm_encoder_funcs; - -struct drm_encoder_helper_funcs; - -struct drm_encoder { - struct drm_device *dev; - struct list_head head; - struct drm_mode_object base; - char *name; - int encoder_type; - unsigned int index; - uint32_t possible_crtcs; - uint32_t possible_clones; - struct drm_crtc *crtc; - struct list_head bridge_chain; - const struct drm_encoder_funcs *funcs; - const struct drm_encoder_helper_funcs *helper_private; - struct dentry *debugfs_entry; -}; - -struct drm_wedge_task_info { - pid_t pid; - char comm[16]; -}; - -struct drm_pending_vblank_event { - struct drm_pending_event base; - unsigned int pipe; - u64 sequence; - union { - struct drm_event base; - struct drm_event_vblank vbl; - struct drm_event_crtc_sequence seq; - } event; -}; - -struct drm_encoder_funcs { - void (*reset)(struct drm_encoder *); - void (*destroy)(struct drm_encoder *); - int (*late_register)(struct drm_encoder *); - void (*early_unregister)(struct drm_encoder *); - void (*debugfs_init)(struct drm_encoder *, struct dentry *); -}; - -struct drm_encoder_helper_funcs { - void (*dpms)(struct drm_encoder *, int); - enum drm_mode_status (*mode_valid)(struct drm_encoder *, const struct drm_display_mode *); - bool (*mode_fixup)(struct drm_encoder *, const struct drm_display_mode *, struct drm_display_mode *); - void (*prepare)(struct drm_encoder *); - void (*commit)(struct drm_encoder *); - void (*mode_set)(struct drm_encoder *, struct drm_display_mode *, struct drm_display_mode *); - void (*atomic_mode_set)(struct drm_encoder *, struct drm_crtc_state *, struct drm_connector_state *); - enum drm_connector_status (*detect)(struct drm_encoder *, struct drm_connector *); - void (*atomic_disable)(struct drm_encoder *, struct drm_atomic_state *); - void (*atomic_enable)(struct drm_encoder *, struct drm_atomic_state *); - void (*disable)(struct drm_encoder *); - void (*enable)(struct drm_encoder *); - int (*atomic_check)(struct drm_encoder *, struct drm_crtc_state *, struct drm_connector_state *); -}; - -typedef void (*drmres_release_t)(struct drm_device *, void *); - -struct drm_clip_rect { - short unsigned int x1; - short unsigned int y1; - short unsigned int x2; - short unsigned int y2; -}; - -struct drm_mode_fb_cmd { - __u32 fb_id; - __u32 width; - __u32 height; - __u32 pitch; - __u32 bpp; - __u32 depth; - __u32 handle; -}; - -struct drm_mode_fb_dirty_cmd { - __u32 fb_id; - __u32 flags; - __u32 color; - __u32 num_clips; - __u64 clips_ptr; -}; - -struct drm_mode_closefb { - __u32 fb_id; - __u32 pad; -}; - -struct drm_framebuffer_funcs; - -struct drm_framebuffer { - struct drm_device *dev; - struct list_head head; - struct drm_mode_object base; - char comm[16]; - const struct drm_format_info *format; - const struct drm_framebuffer_funcs *funcs; - unsigned int pitches[4]; - unsigned int offsets[4]; - uint64_t modifier; - unsigned int width; - unsigned int height; - int flags; - unsigned int internal_flags; - struct list_head filp_head; - struct drm_gem_object *obj[4]; -}; - -struct drm_mm; - -struct drm_mm_node { - long unsigned int color; - u64 start; - u64 size; - struct drm_mm *mm; - struct list_head node_list; - struct list_head hole_stack; - struct rb_node rb; - struct rb_node rb_hole_size; - struct rb_node rb_hole_addr; - u64 __subtree_last; - u64 hole_size; - u64 subtree_max_hole; - long unsigned int flags; -}; - -struct drm_mm { - void (*color_adjust)(const struct drm_mm_node *, long unsigned int, u64 *, u64 *); - struct list_head hole_stack; - struct drm_mm_node head_node; - struct rb_root_cached interval_tree; - struct rb_root_cached holes_size; - struct rb_root holes_addr; - long unsigned int scan_active; -}; - -struct drm_vma_offset_manager { - rwlock_t vm_lock; - struct drm_mm vm_addr_space_mm; -}; - -struct dma_resv_list; - -struct dma_resv { - struct ww_mutex lock; - struct dma_resv_list *fences; -}; - -struct dma_buf_ops { - int (*attach)(struct dma_buf *, struct dma_buf_attachment *); - void (*detach)(struct dma_buf *, struct dma_buf_attachment *); - int (*pin)(struct dma_buf_attachment *); - void (*unpin)(struct dma_buf_attachment *); - struct sg_table * (*map_dma_buf)(struct dma_buf_attachment *, enum dma_data_direction); - void (*unmap_dma_buf)(struct dma_buf_attachment *, struct sg_table *, enum dma_data_direction); - void (*release)(struct dma_buf *); - int (*begin_cpu_access)(struct dma_buf *, enum dma_data_direction); - int (*end_cpu_access)(struct dma_buf *, enum dma_data_direction); - int (*mmap)(struct dma_buf *, struct vm_area_struct *); - int (*vmap)(struct dma_buf *, struct iosys_map *); - void (*vunmap)(struct dma_buf *, struct iosys_map *); -}; - -struct dma_buf_poll_cb_t { - struct dma_fence_cb cb; - wait_queue_head_t *poll; - __poll_t active; -}; - -struct dma_buf { - size_t size; - struct file *file; - struct list_head attachments; - const struct dma_buf_ops *ops; - unsigned int vmapping_counter; - struct iosys_map vmap_ptr; - const char *exp_name; - const char *name; - spinlock_t name_lock; - struct module *owner; - struct list_head list_node; - void *priv; - struct dma_resv *resv; - wait_queue_head_t poll; - struct dma_buf_poll_cb_t cb_in; - struct dma_buf_poll_cb_t cb_out; -}; - -struct dma_buf_attach_ops; - -struct dma_buf_attachment { - struct dma_buf *dmabuf; - struct device *dev; - struct list_head node; - bool peer2peer; - const struct dma_buf_attach_ops *importer_ops; - void *importer_priv; - void *priv; -}; - -struct dma_buf_attach_ops { - bool allow_peer2peer; - void (*move_notify)(struct dma_buf_attachment *); -}; - -struct drm_vma_offset_node { - rwlock_t vm_lock; - struct drm_mm_node vm_node; - struct rb_root vm_files; - void *driver_private; -}; - -enum drm_gem_object_status { - DRM_GEM_OBJECT_RESIDENT = 1, - DRM_GEM_OBJECT_PURGEABLE = 2, - DRM_GEM_OBJECT_ACTIVE = 4, -}; - -struct drm_gem_object_funcs { - void (*free)(struct drm_gem_object *); - int (*open)(struct drm_gem_object *, struct drm_file *); - void (*close)(struct drm_gem_object *, struct drm_file *); - void (*print_info)(struct drm_printer *, unsigned int, const struct drm_gem_object *); - struct dma_buf * (*export)(struct drm_gem_object *, int); - int (*pin)(struct drm_gem_object *); - void (*unpin)(struct drm_gem_object *); - struct sg_table * (*get_sg_table)(struct drm_gem_object *); - int (*vmap)(struct drm_gem_object *, struct iosys_map *); - void (*vunmap)(struct drm_gem_object *, struct iosys_map *); - int (*mmap)(struct drm_gem_object *, struct vm_area_struct *); - int (*evict)(struct drm_gem_object *); - enum drm_gem_object_status (*status)(struct drm_gem_object *); - size_t (*rss)(struct drm_gem_object *); - const struct vm_operations_struct *vm_ops; -}; - -struct drm_gem_lru; - -struct drm_gem_object { - struct kref refcount; - unsigned int handle_count; - struct drm_device *dev; - struct file *filp; - struct drm_vma_offset_node vma_node; - size_t size; - int name; - struct dma_buf *dma_buf; - struct dma_buf_attachment *import_attach; - struct dma_resv *resv; - struct dma_resv _resv; - struct { - struct list_head list; - } gpuva; - const struct drm_gem_object_funcs *funcs; - struct list_head lru_node; - struct drm_gem_lru *lru; -}; - -struct drm_gem_lru { - struct mutex *lock; - long int count; - struct list_head list; -}; - -struct drm_debugfs_info { - const char *name; - int (*show)(struct seq_file *, void *); - u32 driver_features; - void *data; -}; - -struct drm_debugfs_entry { - struct drm_device *dev; - struct drm_debugfs_info file; - struct list_head list; -}; - -struct drm_framebuffer_funcs { - void (*destroy)(struct drm_framebuffer *); - int (*create_handle)(struct drm_framebuffer *, struct drm_file *, unsigned int *); - int (*dirty)(struct drm_framebuffer *, struct drm_file *, unsigned int, unsigned int, struct drm_clip_rect *, unsigned int); -}; - -struct drm_mode_rmfb_work { - struct work_struct work; - struct list_head fbs; -}; - -struct drm_mode_create_lease { - __u64 object_ids; - __u32 object_count; - __u32 flags; - __u32 lessee_id; - __u32 fd; -}; - -struct drm_mode_list_lessees { - __u32 count_lessees; - __u32 pad; - __u64 lessees_ptr; -}; - -struct drm_mode_get_lease { - __u32 count_objects; - __u32 pad; - __u64 objects_ptr; -}; - -struct drm_mode_revoke_lease { - __u32 lessee_id; -}; - -struct drm_mode_modeinfo { - __u32 clock; - __u16 hdisplay; - __u16 hsync_start; - __u16 hsync_end; - __u16 htotal; - __u16 hskew; - __u16 vdisplay; - __u16 vsync_start; - __u16 vsync_end; - __u16 vtotal; - __u16 vscan; - __u32 vrefresh; - __u32 flags; - __u32 type; - char name[32]; -}; - -enum drm_bus_flags { - DRM_BUS_FLAG_DE_LOW = 1, - DRM_BUS_FLAG_DE_HIGH = 2, - DRM_BUS_FLAG_PIXDATA_DRIVE_POSEDGE = 4, - DRM_BUS_FLAG_PIXDATA_DRIVE_NEGEDGE = 8, - DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE = 8, - DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE = 4, - DRM_BUS_FLAG_DATA_MSB_TO_LSB = 16, - DRM_BUS_FLAG_DATA_LSB_TO_MSB = 32, - DRM_BUS_FLAG_SYNC_DRIVE_POSEDGE = 64, - DRM_BUS_FLAG_SYNC_DRIVE_NEGEDGE = 128, - DRM_BUS_FLAG_SYNC_SAMPLE_POSEDGE = 128, - DRM_BUS_FLAG_SYNC_SAMPLE_NEGEDGE = 64, - DRM_BUS_FLAG_SHARP_SIGNALS = 256, -}; - -enum drm_mode_analog { - DRM_MODE_ANALOG_NTSC = 0, - DRM_MODE_ANALOG_PAL = 1, -}; - -struct analog_param_field { - unsigned int even; - unsigned int odd; -}; - -struct analog_param_range { - unsigned int min; - unsigned int typ; - unsigned int max; -}; - -struct analog_parameters { - unsigned int num_lines; - unsigned int line_duration_ns; - struct analog_param_range hact_ns; - struct analog_param_range hfp_ns; - struct analog_param_range hslen_ns; - struct analog_param_range hbp_ns; - struct analog_param_range hblk_ns; - unsigned int bt601_hfp; - struct analog_param_field vfp_lines; - struct analog_param_field vslen_lines; - struct analog_param_field vbp_lines; -}; - -struct drm_named_mode { - const char *name; - unsigned int pixel_clock_khz; - unsigned int xres; - unsigned int yres; - unsigned int flags; - unsigned int tv_mode; -}; - -struct debugfs_reg32 { - char *name; - long unsigned int offset; -}; - -struct debugfs_regset32 { - const struct debugfs_reg32 *regs; - int nregs; - void *base; - struct device *dev; -}; - -struct drm_print_iterator { - void *data; - ssize_t start; - ssize_t remain; - ssize_t offset; -}; - -struct class_attribute { - struct attribute attr; - ssize_t (*show)(const struct class *, const struct class_attribute *, char *); - ssize_t (*store)(const struct class *, const struct class_attribute *, const char *, size_t); -}; - -struct class_attribute_string { - struct class_attribute attr; - char *str; -}; - -struct acpi_bus_type { - struct list_head list; - const char *name; - bool (*match)(struct device *); - struct acpi_device * (*find_companion)(struct device *); - void (*setup)(struct device *); -}; - -struct component_ops { - int (*bind)(struct device *, struct device *, void *); - void (*unbind)(struct device *, struct device *, void *); -}; - -enum drm_mm_insert_mode { - DRM_MM_INSERT_BEST = 0, - DRM_MM_INSERT_LOW = 1, - DRM_MM_INSERT_HIGH = 2, - DRM_MM_INSERT_EVICT = 3, - DRM_MM_INSERT_ONCE = 2147483648, - DRM_MM_INSERT_HIGHEST = 2147483650, - DRM_MM_INSERT_LOWEST = 2147483649, -}; - -struct drm_vma_offset_file { - struct rb_node vm_rb; - struct drm_file *vm_tag; - long unsigned int vm_count; -}; - -struct drm_writeback_job { - struct drm_writeback_connector *connector; - bool prepared; - struct work_struct cleanup_work; - struct list_head list_entry; - struct drm_framebuffer *fb; - struct dma_fence *out_fence; - void *priv; -}; - -struct drm_writeback_connector { - struct drm_connector base; - struct drm_encoder encoder; - struct drm_property_blob *pixel_formats_blob_ptr; - spinlock_t job_lock; - struct list_head job_queue; - unsigned int fence_context; - spinlock_t fence_lock; - long unsigned int fence_seqno; - char timeline_name[32]; -}; - -struct drm_version { - int version_major; - int version_minor; - int version_patchlevel; - __kernel_size_t name_len; - char *name; - __kernel_size_t date_len; - char *date; - __kernel_size_t desc_len; - char *desc; -}; - -struct drm_unique { - __kernel_size_t unique_len; - char *unique; -}; - -struct drm_client { - int idx; - int auth; - long unsigned int pid; - long unsigned int uid; - long unsigned int magic; - long unsigned int iocs; -}; - -enum drm_stat_type { - _DRM_STAT_LOCK = 0, - _DRM_STAT_OPENS = 1, - _DRM_STAT_CLOSES = 2, - _DRM_STAT_IOCTLS = 3, - _DRM_STAT_LOCKS = 4, - _DRM_STAT_UNLOCKS = 5, - _DRM_STAT_VALUE = 6, - _DRM_STAT_BYTE = 7, - _DRM_STAT_COUNT = 8, - _DRM_STAT_IRQ = 9, - _DRM_STAT_PRIMARY = 10, - _DRM_STAT_SECONDARY = 11, - _DRM_STAT_DMA = 12, - _DRM_STAT_SPECIAL = 13, - _DRM_STAT_MISSED = 14, -}; - -enum drm_vblank_seq_type { - _DRM_VBLANK_ABSOLUTE = 0, - _DRM_VBLANK_RELATIVE = 1, - _DRM_VBLANK_HIGH_CRTC_MASK = 62, - _DRM_VBLANK_EVENT = 67108864, - _DRM_VBLANK_FLIP = 134217728, - _DRM_VBLANK_NEXTONMISS = 268435456, - _DRM_VBLANK_SECONDARY = 536870912, - _DRM_VBLANK_SIGNAL = 1073741824, -}; - -struct drm_wait_vblank_request { - enum drm_vblank_seq_type type; - unsigned int sequence; - long unsigned int signal; -}; - -struct drm_wait_vblank_reply { - enum drm_vblank_seq_type type; - unsigned int sequence; - long int tval_sec; - long int tval_usec; -}; - -union drm_wait_vblank { - struct drm_wait_vblank_request request; - struct drm_wait_vblank_reply reply; -}; - -typedef int drm_ioctl_compat_t(struct file *, unsigned int, long unsigned int); - -struct drm_version_32 { - int version_major; - int version_minor; - int version_patchlevel; - u32 name_len; - u32 name; - u32 date_len; - u32 date; - u32 desc_len; - u32 desc; -}; - -typedef struct drm_version_32 drm_version32_t; - -struct drm_unique32 { - u32 unique_len; - u32 unique; -}; - -typedef struct drm_unique32 drm_unique32_t; - -struct drm_client32 { - int idx; - int auth; - u32 pid; - u32 uid; - u32 magic; - u32 iocs; -}; - -typedef struct drm_client32 drm_client32_t; - -struct drm_stats32 { - u32 count; - struct { - u32 value; - enum drm_stat_type type; - } data[15]; -}; - -typedef struct drm_stats32 drm_stats32_t; - -struct drm_wait_vblank_request32 { - enum drm_vblank_seq_type type; - unsigned int sequence; - u32 signal; -}; - -struct drm_wait_vblank_reply32 { - enum drm_vblank_seq_type type; - unsigned int sequence; - s32 tval_sec; - s32 tval_usec; -}; - -union drm_wait_vblank32 { - struct drm_wait_vblank_request32 request; - struct drm_wait_vblank_reply32 reply; -}; - -typedef union drm_wait_vblank32 drm_wait_vblank32_t; - -struct drm_mode_fb_cmd232 { - u32 fb_id; - u32 width; - u32 height; - u32 pixel_format; - u32 flags; - u32 handles[4]; - u32 pitches[4]; - u32 offsets[4]; - u64 modifier[4]; -} __attribute__((packed)); - -struct drm_exec { - u32 flags; - struct ww_acquire_ctx ticket; - unsigned int num_objects; - unsigned int max_objects; - struct drm_gem_object **objects; - struct drm_gem_object *contended; - struct drm_gem_object *prelocked; -}; - -enum drm_gpuva_flags { - DRM_GPUVA_INVALIDATED = 1, - DRM_GPUVA_SPARSE = 2, - DRM_GPUVA_USERBITS = 4, -}; - -struct drm_gpuvm; - -struct drm_gpuvm_bo; - -struct drm_gpuva { - struct drm_gpuvm *vm; - struct drm_gpuvm_bo *vm_bo; - enum drm_gpuva_flags flags; - struct { - u64 addr; - u64 range; - } va; - struct { - u64 offset; - struct drm_gem_object *obj; - struct list_head entry; - } gem; - struct { - struct rb_node node; - struct list_head entry; - u64 __subtree_last; - } rb; -}; - -enum drm_gpuvm_flags { - DRM_GPUVM_RESV_PROTECTED = 1, - DRM_GPUVM_USERBITS = 2, -}; - -struct drm_gpuvm_ops; - -struct drm_gpuvm { - const char *name; - enum drm_gpuvm_flags flags; - struct drm_device *drm; - u64 mm_start; - u64 mm_range; - struct { - struct rb_root_cached tree; - struct list_head list; - } rb; - struct kref kref; - struct drm_gpuva kernel_alloc_node; - const struct drm_gpuvm_ops *ops; - struct drm_gem_object *r_obj; - struct { - struct list_head list; - struct list_head *local_list; - spinlock_t lock; - } extobj; - struct { - struct list_head list; - struct list_head *local_list; - spinlock_t lock; - } evict; -}; - -struct drm_gpuvm_bo { - struct drm_gpuvm *vm; - struct drm_gem_object *obj; - bool evicted; - struct kref kref; - struct { - struct list_head gpuva; - struct { - struct list_head gem; - struct list_head extobj; - struct list_head evict; - } entry; - } list; -}; - -struct drm_gpuva_op; - -struct drm_gpuvm_ops { - void (*vm_free)(struct drm_gpuvm *); - struct drm_gpuva_op * (*op_alloc)(void); - void (*op_free)(struct drm_gpuva_op *); - struct drm_gpuvm_bo * (*vm_bo_alloc)(void); - void (*vm_bo_free)(struct drm_gpuvm_bo *); - int (*vm_bo_validate)(struct drm_gpuvm_bo *, struct drm_exec *); - int (*sm_step_map)(struct drm_gpuva_op *, void *); - int (*sm_step_remap)(struct drm_gpuva_op *, void *); - int (*sm_step_unmap)(struct drm_gpuva_op *, void *); -}; - -enum drm_gpuva_op_type { - DRM_GPUVA_OP_MAP = 0, - DRM_GPUVA_OP_REMAP = 1, - DRM_GPUVA_OP_UNMAP = 2, - DRM_GPUVA_OP_PREFETCH = 3, - DRM_GPUVA_OP_DRIVER = 4, -}; - -struct drm_gpuva_op_map { - struct { - u64 addr; - u64 range; - } va; - struct { - u64 offset; - struct drm_gem_object *obj; - } gem; -}; - -struct drm_gpuva_op_unmap { - struct drm_gpuva *va; - bool keep; -}; - -struct drm_gpuva_op_remap { - struct drm_gpuva_op_map *prev; - struct drm_gpuva_op_map *next; - struct drm_gpuva_op_unmap *unmap; -}; - -struct drm_gpuva_op_prefetch { - struct drm_gpuva *va; -}; - -struct drm_gpuva_op { - struct list_head entry; - enum drm_gpuva_op_type op; - union { - struct drm_gpuva_op_map map; - struct drm_gpuva_op_remap remap; - struct drm_gpuva_op_unmap unmap; - struct drm_gpuva_op_prefetch prefetch; - }; -}; - -struct drm_info_list { - const char *name; - int (*show)(struct seq_file *, void *); - u32 driver_features; - void *data; -}; - -struct drm_info_node { - struct drm_minor *minor; - const struct drm_info_list *info_ent; - struct list_head list; - struct dentry *dent; -}; - -struct kmsg_dump_iter { - u64 cur_seq; - u64 next_seq; -}; - -struct linux_logo { - int type; - unsigned int width; - unsigned int height; - unsigned int clutsize; - const unsigned char *clut; - const unsigned char *data; -}; - -struct drm_scanout_buffer { - const struct drm_format_info *format; - struct iosys_map map[4]; - struct page **pages; - unsigned int width; - unsigned int height; - unsigned int pitch[4]; - void (*set_pixel)(struct drm_scanout_buffer *, unsigned int, unsigned int, u32); - void *private; -}; - -struct drm_panic_line { - u32 len; - const char *txt; -}; - -struct drm_bus_cfg { - u32 format; - u32 flags; -}; - -struct drm_bridge; - -struct drm_bridge_state { - struct drm_private_state base; - struct drm_bridge *bridge; - struct drm_bus_cfg input_bus_cfg; - struct drm_bus_cfg output_bus_cfg; -}; - -enum drm_bridge_ops { - DRM_BRIDGE_OP_DETECT = 1, - DRM_BRIDGE_OP_EDID = 2, - DRM_BRIDGE_OP_HPD = 4, - DRM_BRIDGE_OP_MODES = 8, - DRM_BRIDGE_OP_HDMI = 16, - DRM_BRIDGE_OP_HDMI_AUDIO = 32, - DRM_BRIDGE_OP_DP_AUDIO = 64, - DRM_BRIDGE_OP_HDMI_CEC_NOTIFIER = 128, - DRM_BRIDGE_OP_HDMI_CEC_ADAPTER = 256, -}; - -struct drm_bridge_timings; - -struct drm_bridge_funcs; - -struct drm_bridge { - struct drm_private_obj base; - struct drm_device *dev; - struct drm_encoder *encoder; - struct list_head chain_node; - struct device_node *of_node; - struct list_head list; - const struct drm_bridge_timings *timings; - const struct drm_bridge_funcs *funcs; - void *container; - struct kref refcount; - void *driver_private; - enum drm_bridge_ops ops; - int type; - bool interlace_allowed; - bool ycbcr_420_allowed; - bool pre_enable_prev_first; - struct i2c_adapter *ddc; - const char *vendor; - const char *product; - unsigned int supported_formats; - unsigned int max_bpc; - struct device *hdmi_cec_dev; - struct device *hdmi_audio_dev; - int hdmi_audio_max_i2s_playback_channels; - u64 hdmi_audio_i2s_formats; - unsigned int hdmi_audio_spdif_playback: 1; - int hdmi_audio_dai_port; - const char *hdmi_cec_adapter_name; - u8 hdmi_cec_available_las; - struct mutex hpd_mutex; - void (*hpd_cb)(void *, enum drm_connector_status); - void *hpd_data; -}; - -enum drm_bridge_attach_flags { - DRM_BRIDGE_ATTACH_NO_CONNECTOR = 1, -}; - -struct cec_msg; - -struct drm_bridge_funcs { - int (*attach)(struct drm_bridge *, struct drm_encoder *, enum drm_bridge_attach_flags); - void (*destroy)(struct drm_bridge *); - void (*detach)(struct drm_bridge *); - enum drm_mode_status (*mode_valid)(struct drm_bridge *, const struct drm_display_info *, const struct drm_display_mode *); - bool (*mode_fixup)(struct drm_bridge *, const struct drm_display_mode *, struct drm_display_mode *); - void (*disable)(struct drm_bridge *); - void (*post_disable)(struct drm_bridge *); - void (*mode_set)(struct drm_bridge *, const struct drm_display_mode *, const struct drm_display_mode *); - void (*pre_enable)(struct drm_bridge *); - void (*enable)(struct drm_bridge *); - void (*atomic_pre_enable)(struct drm_bridge *, struct drm_atomic_state *); - void (*atomic_enable)(struct drm_bridge *, struct drm_atomic_state *); - void (*atomic_disable)(struct drm_bridge *, struct drm_atomic_state *); - void (*atomic_post_disable)(struct drm_bridge *, struct drm_atomic_state *); - struct drm_bridge_state * (*atomic_duplicate_state)(struct drm_bridge *); - void (*atomic_destroy_state)(struct drm_bridge *, struct drm_bridge_state *); - u32 * (*atomic_get_output_bus_fmts)(struct drm_bridge *, struct drm_bridge_state *, struct drm_crtc_state *, struct drm_connector_state *, unsigned int *); - u32 * (*atomic_get_input_bus_fmts)(struct drm_bridge *, struct drm_bridge_state *, struct drm_crtc_state *, struct drm_connector_state *, u32, unsigned int *); - int (*atomic_check)(struct drm_bridge *, struct drm_bridge_state *, struct drm_crtc_state *, struct drm_connector_state *); - struct drm_bridge_state * (*atomic_reset)(struct drm_bridge *); - enum drm_connector_status (*detect)(struct drm_bridge *, struct drm_connector *); - int (*get_modes)(struct drm_bridge *, struct drm_connector *); - const struct drm_edid * (*edid_read)(struct drm_bridge *, struct drm_connector *); - void (*hpd_notify)(struct drm_bridge *, enum drm_connector_status); - void (*hpd_enable)(struct drm_bridge *); - void (*hpd_disable)(struct drm_bridge *); - enum drm_mode_status (*hdmi_tmds_char_rate_valid)(const struct drm_bridge *, const struct drm_display_mode *, long long unsigned int); - int (*hdmi_clear_infoframe)(struct drm_bridge *, enum hdmi_infoframe_type); - int (*hdmi_write_infoframe)(struct drm_bridge *, enum hdmi_infoframe_type, const u8 *, size_t); - int (*hdmi_audio_startup)(struct drm_bridge *, struct drm_connector *); - int (*hdmi_audio_prepare)(struct drm_bridge *, struct drm_connector *, struct hdmi_codec_daifmt *, struct hdmi_codec_params *); - void (*hdmi_audio_shutdown)(struct drm_bridge *, struct drm_connector *); - int (*hdmi_audio_mute_stream)(struct drm_bridge *, struct drm_connector *, bool, int); - int (*hdmi_cec_init)(struct drm_bridge *, struct drm_connector *); - int (*hdmi_cec_enable)(struct drm_bridge *, bool); - int (*hdmi_cec_log_addr)(struct drm_bridge *, u8); - int (*hdmi_cec_transmit)(struct drm_bridge *, u8, u32, struct cec_msg *); - int (*dp_audio_startup)(struct drm_bridge *, struct drm_connector *); - int (*dp_audio_prepare)(struct drm_bridge *, struct drm_connector *, struct hdmi_codec_daifmt *, struct hdmi_codec_params *); - void (*dp_audio_shutdown)(struct drm_bridge *, struct drm_connector *); - int (*dp_audio_mute_stream)(struct drm_bridge *, struct drm_connector *, bool, int); - void (*debugfs_init)(struct drm_bridge *, struct dentry *); -}; - -struct drm_bridge_timings { - u32 input_bus_flags; - u32 setup_time_ps; - u32 hold_time_ps; - bool dual_link; -}; - -struct drm_flip_work; - -typedef void (*drm_flip_func_t)(struct drm_flip_work *, void *); - -struct drm_flip_work { - const char *name; - drm_flip_func_t func; - struct work_struct worker; - struct list_head queued; - struct list_head commited; - spinlock_t lock; -}; - -struct drm_flip_task { - struct list_head node; - void *data; -}; - -enum dma_resv_usage { - DMA_RESV_USAGE_KERNEL = 0, - DMA_RESV_USAGE_WRITE = 1, - DMA_RESV_USAGE_READ = 2, - DMA_RESV_USAGE_BOOKKEEP = 3, -}; - -struct dma_fence_chain { - struct dma_fence base; - struct dma_fence *prev; - u64 prev_seqno; - struct dma_fence *fence; - union { - struct dma_fence_cb cb; - struct irq_work work; - }; - spinlock_t lock; -}; - -struct drm_format_conv_state { - struct { - void *mem; - size_t size; - bool preallocated; - } tmp; -}; - -struct drm_shadow_plane_state { - struct drm_plane_state base; - struct drm_format_conv_state fmtcnv_state; - struct iosys_map map[4]; - struct iosys_map data[4]; -}; - -struct drm_simple_display_pipe; - -struct drm_simple_display_pipe_funcs { - enum drm_mode_status (*mode_valid)(struct drm_simple_display_pipe *, const struct drm_display_mode *); - void (*enable)(struct drm_simple_display_pipe *, struct drm_crtc_state *, struct drm_plane_state *); - void (*disable)(struct drm_simple_display_pipe *); - int (*check)(struct drm_simple_display_pipe *, struct drm_plane_state *, struct drm_crtc_state *); - void (*update)(struct drm_simple_display_pipe *, struct drm_plane_state *); - int (*prepare_fb)(struct drm_simple_display_pipe *, struct drm_plane_state *); - void (*cleanup_fb)(struct drm_simple_display_pipe *, struct drm_plane_state *); - int (*begin_fb_access)(struct drm_simple_display_pipe *, struct drm_plane_state *); - void (*end_fb_access)(struct drm_simple_display_pipe *, struct drm_plane_state *); - int (*enable_vblank)(struct drm_simple_display_pipe *); - void (*disable_vblank)(struct drm_simple_display_pipe *); - void (*reset_crtc)(struct drm_simple_display_pipe *); - struct drm_crtc_state * (*duplicate_crtc_state)(struct drm_simple_display_pipe *); - void (*destroy_crtc_state)(struct drm_simple_display_pipe *, struct drm_crtc_state *); - void (*reset_plane)(struct drm_simple_display_pipe *); - struct drm_plane_state * (*duplicate_plane_state)(struct drm_simple_display_pipe *); - void (*destroy_plane_state)(struct drm_simple_display_pipe *, struct drm_plane_state *); -}; - -struct drm_simple_display_pipe { - struct drm_crtc crtc; - struct drm_plane plane; - struct drm_encoder encoder; - struct drm_connector *connector; - const struct drm_simple_display_pipe_funcs *funcs; -}; - -struct ewma_psr_time { - long unsigned int internal; -}; - -struct drm_self_refresh_data { - struct drm_crtc *crtc; - struct delayed_work entry_work; - struct mutex avg_mutex; - struct ewma_psr_time entry_avg_ms; - struct ewma_psr_time exit_avg_ms; -}; - -struct drm_dsc_rc_range_parameters { - u8 range_min_qp; - u8 range_max_qp; - u8 range_bpg_offset; -}; - -struct drm_dsc_config { - u8 line_buf_depth; - u8 bits_per_component; - bool convert_rgb; - u8 slice_count; - u16 slice_width; - u16 slice_height; - bool simple_422; - u16 pic_width; - u16 pic_height; - u8 rc_tgt_offset_high; - u8 rc_tgt_offset_low; - u16 bits_per_pixel; - u8 rc_edge_factor; - u8 rc_quant_incr_limit1; - u8 rc_quant_incr_limit0; - u16 initial_xmit_delay; - u16 initial_dec_delay; - bool block_pred_enable; - u8 first_line_bpg_offset; - u16 initial_offset; - u16 rc_buf_thresh[14]; - struct drm_dsc_rc_range_parameters rc_range_params[15]; - u16 rc_model_size; - u8 flatness_min_qp; - u8 flatness_max_qp; - u8 initial_scale_value; - u16 scale_decrement_interval; - u16 scale_increment_interval; - u16 nfl_bpg_offset; - u16 slice_bpg_offset; - u16 final_offset; - bool vbr_enable; - u8 mux_word_size; - u16 slice_chunk_size; - u16 rc_bits; - u8 dsc_version_minor; - u8 dsc_version_major; - bool native_422; - bool native_420; - u8 second_line_bpg_offset; - u16 nsl_bpg_offset; - u16 second_line_offset_adj; -}; - -struct drm_dsc_picture_parameter_set { - u8 dsc_version; - u8 pps_identifier; - u8 pps_reserved; - u8 pps_3; - u8 pps_4; - u8 bits_per_pixel_low; - __be16 pic_height; - __be16 pic_width; - __be16 slice_height; - __be16 slice_width; - __be16 chunk_size; - u8 initial_xmit_delay_high; - u8 initial_xmit_delay_low; - __be16 initial_dec_delay; - u8 pps20_reserved; - u8 initial_scale_value; - __be16 scale_increment_interval; - u8 scale_decrement_interval_high; - u8 scale_decrement_interval_low; - u8 pps26_reserved; - u8 first_line_bpg_offset; - __be16 nfl_bpg_offset; - __be16 slice_bpg_offset; - __be16 initial_offset; - __be16 final_offset; - u8 flatness_min_qp; - u8 flatness_max_qp; - __be16 rc_model_size; - u8 rc_edge_factor; - u8 rc_quant_incr_limit0; - u8 rc_quant_incr_limit1; - u8 rc_tgt_offset; - u8 rc_buf_thresh[14]; - __be16 rc_range_parameters[15]; - u8 native_422_420; - u8 second_line_bpg_offset; - __be16 nsl_bpg_offset; - __be16 second_line_offset_adj; - u32 pps_long_94_reserved; - u32 pps_long_98_reserved; - u32 pps_long_102_reserved; - u32 pps_long_106_reserved; - u32 pps_long_110_reserved; - u32 pps_long_114_reserved; - u32 pps_long_118_reserved; - u32 pps_long_122_reserved; - __be16 pps_short_126_reserved; -} __attribute__((packed)); - -struct mipi_dsi_msg { - u8 channel; - u8 type; - u16 flags; - size_t tx_len; - const void *tx_buf; - size_t rx_len; - void *rx_buf; -}; - -struct mipi_dsi_packet { - size_t size; - u8 header[4]; - size_t payload_length; - const u8 *payload; -}; - -struct mipi_dsi_host; - -struct mipi_dsi_device; - -struct mipi_dsi_host_ops { - int (*attach)(struct mipi_dsi_host *, struct mipi_dsi_device *); - int (*detach)(struct mipi_dsi_host *, struct mipi_dsi_device *); - ssize_t (*transfer)(struct mipi_dsi_host *, const struct mipi_dsi_msg *); -}; - -struct mipi_dsi_host { - struct device *dev; - const struct mipi_dsi_host_ops *ops; - struct list_head list; -}; - -enum mipi_dsi_pixel_format { - MIPI_DSI_FMT_RGB888 = 0, - MIPI_DSI_FMT_RGB666 = 1, - MIPI_DSI_FMT_RGB666_PACKED = 2, - MIPI_DSI_FMT_RGB565 = 3, -}; - -struct mipi_dsi_device { - struct mipi_dsi_host *host; - struct device dev; - bool attached; - char name[20]; - unsigned int channel; - unsigned int lanes; - enum mipi_dsi_pixel_format format; - long unsigned int mode_flags; - long unsigned int hs_rate; - long unsigned int lp_rate; - struct drm_dsc_config *dsc; -}; - -struct mipi_dsi_device_info { - char type[20]; - u32 channel; - struct device_node *node; -}; - -struct mipi_dsi_multi_context { - struct mipi_dsi_device *dsi; - int accum_err; -}; - -enum mipi_dsi_compression_algo { - MIPI_DSI_COMPRESSION_DSC = 0, - MIPI_DSI_COMPRESSION_VENDOR = 3, -}; - -enum mipi_dsi_dcs_tear_mode { - MIPI_DSI_DCS_TEAR_MODE_VBLANK = 0, - MIPI_DSI_DCS_TEAR_MODE_VHBLANK = 1, -}; - -struct mipi_dsi_driver { - struct device_driver driver; - int (*probe)(struct mipi_dsi_device *); - void (*remove)(struct mipi_dsi_device *); - void (*shutdown)(struct mipi_dsi_device *); -}; - -enum { - MIPI_DSI_V_SYNC_START = 1, - MIPI_DSI_V_SYNC_END = 17, - MIPI_DSI_H_SYNC_START = 33, - MIPI_DSI_H_SYNC_END = 49, - MIPI_DSI_COMPRESSION_MODE = 7, - MIPI_DSI_END_OF_TRANSMISSION = 8, - MIPI_DSI_COLOR_MODE_OFF = 2, - MIPI_DSI_COLOR_MODE_ON = 18, - MIPI_DSI_SHUTDOWN_PERIPHERAL = 34, - MIPI_DSI_TURN_ON_PERIPHERAL = 50, - MIPI_DSI_GENERIC_SHORT_WRITE_0_PARAM = 3, - MIPI_DSI_GENERIC_SHORT_WRITE_1_PARAM = 19, - MIPI_DSI_GENERIC_SHORT_WRITE_2_PARAM = 35, - MIPI_DSI_GENERIC_READ_REQUEST_0_PARAM = 4, - MIPI_DSI_GENERIC_READ_REQUEST_1_PARAM = 20, - MIPI_DSI_GENERIC_READ_REQUEST_2_PARAM = 36, - MIPI_DSI_DCS_SHORT_WRITE = 5, - MIPI_DSI_DCS_SHORT_WRITE_PARAM = 21, - MIPI_DSI_DCS_READ = 6, - MIPI_DSI_EXECUTE_QUEUE = 22, - MIPI_DSI_SET_MAXIMUM_RETURN_PACKET_SIZE = 55, - MIPI_DSI_NULL_PACKET = 9, - MIPI_DSI_BLANKING_PACKET = 25, - MIPI_DSI_GENERIC_LONG_WRITE = 41, - MIPI_DSI_DCS_LONG_WRITE = 57, - MIPI_DSI_PICTURE_PARAMETER_SET = 10, - MIPI_DSI_COMPRESSED_PIXEL_STREAM = 11, - MIPI_DSI_LOOSELY_PACKED_PIXEL_STREAM_YCBCR20 = 12, - MIPI_DSI_PACKED_PIXEL_STREAM_YCBCR24 = 28, - MIPI_DSI_PACKED_PIXEL_STREAM_YCBCR16 = 44, - MIPI_DSI_PACKED_PIXEL_STREAM_30 = 13, - MIPI_DSI_PACKED_PIXEL_STREAM_36 = 29, - MIPI_DSI_PACKED_PIXEL_STREAM_YCBCR12 = 61, - MIPI_DSI_PACKED_PIXEL_STREAM_16 = 14, - MIPI_DSI_PACKED_PIXEL_STREAM_18 = 30, - MIPI_DSI_PIXEL_STREAM_3BYTE_18 = 46, - MIPI_DSI_PACKED_PIXEL_STREAM_24 = 62, -}; - -enum { - MIPI_DCS_NOP = 0, - MIPI_DCS_SOFT_RESET = 1, - MIPI_DCS_GET_COMPRESSION_MODE = 3, - MIPI_DCS_GET_DISPLAY_ID = 4, - MIPI_DCS_GET_ERROR_COUNT_ON_DSI = 5, - MIPI_DCS_GET_RED_CHANNEL = 6, - MIPI_DCS_GET_GREEN_CHANNEL = 7, - MIPI_DCS_GET_BLUE_CHANNEL = 8, - MIPI_DCS_GET_DISPLAY_STATUS = 9, - MIPI_DCS_GET_POWER_MODE = 10, - MIPI_DCS_GET_ADDRESS_MODE = 11, - MIPI_DCS_GET_PIXEL_FORMAT = 12, - MIPI_DCS_GET_DISPLAY_MODE = 13, - MIPI_DCS_GET_SIGNAL_MODE = 14, - MIPI_DCS_GET_DIAGNOSTIC_RESULT = 15, - MIPI_DCS_ENTER_SLEEP_MODE = 16, - MIPI_DCS_EXIT_SLEEP_MODE = 17, - MIPI_DCS_ENTER_PARTIAL_MODE = 18, - MIPI_DCS_ENTER_NORMAL_MODE = 19, - MIPI_DCS_GET_IMAGE_CHECKSUM_RGB = 20, - MIPI_DCS_GET_IMAGE_CHECKSUM_CT = 21, - MIPI_DCS_EXIT_INVERT_MODE = 32, - MIPI_DCS_ENTER_INVERT_MODE = 33, - MIPI_DCS_SET_GAMMA_CURVE = 38, - MIPI_DCS_SET_DISPLAY_OFF = 40, - MIPI_DCS_SET_DISPLAY_ON = 41, - MIPI_DCS_SET_COLUMN_ADDRESS = 42, - MIPI_DCS_SET_PAGE_ADDRESS = 43, - MIPI_DCS_WRITE_MEMORY_START = 44, - MIPI_DCS_WRITE_LUT = 45, - MIPI_DCS_READ_MEMORY_START = 46, - MIPI_DCS_SET_PARTIAL_ROWS = 48, - MIPI_DCS_SET_PARTIAL_COLUMNS = 49, - MIPI_DCS_SET_SCROLL_AREA = 51, - MIPI_DCS_SET_TEAR_OFF = 52, - MIPI_DCS_SET_TEAR_ON = 53, - MIPI_DCS_SET_ADDRESS_MODE = 54, - MIPI_DCS_SET_SCROLL_START = 55, - MIPI_DCS_EXIT_IDLE_MODE = 56, - MIPI_DCS_ENTER_IDLE_MODE = 57, - MIPI_DCS_SET_PIXEL_FORMAT = 58, - MIPI_DCS_WRITE_MEMORY_CONTINUE = 60, - MIPI_DCS_SET_3D_CONTROL = 61, - MIPI_DCS_READ_MEMORY_CONTINUE = 62, - MIPI_DCS_GET_3D_CONTROL = 63, - MIPI_DCS_SET_VSYNC_TIMING = 64, - MIPI_DCS_SET_TEAR_SCANLINE = 68, - MIPI_DCS_GET_SCANLINE = 69, - MIPI_DCS_SET_DISPLAY_BRIGHTNESS = 81, - MIPI_DCS_GET_DISPLAY_BRIGHTNESS = 82, - MIPI_DCS_WRITE_CONTROL_DISPLAY = 83, - MIPI_DCS_GET_CONTROL_DISPLAY = 84, - MIPI_DCS_WRITE_POWER_SAVE = 85, - MIPI_DCS_GET_POWER_SAVE = 86, - MIPI_DCS_SET_CABC_MIN_BRIGHTNESS = 94, - MIPI_DCS_GET_CABC_MIN_BRIGHTNESS = 95, - MIPI_DCS_READ_DDB_START = 161, - MIPI_DCS_READ_PPS_START = 162, - MIPI_DCS_READ_DDB_CONTINUE = 168, - MIPI_DCS_READ_PPS_CONTINUE = 169, -}; - -struct drm_atomic_helper_damage_iter { - struct drm_rect plane_src; - const struct drm_rect *clips; - uint32_t num_clips; - uint32_t curr_clip; - bool full_update; -}; - -struct drm_sysfb_device { - struct drm_device dev; - const u8 *edid; - struct drm_display_mode fb_mode; - const struct drm_format_info *fb_format; - unsigned int fb_pitch; - unsigned int fb_gamma_lut_size; - struct iosys_map fb_addr; -}; - -struct drm_sysfb_crtc_state { - struct drm_crtc_state base; - const struct drm_format_info *format; -}; - -struct pm_domain_data { - struct list_head list_node; - struct device *dev; -}; - -enum vga_switcheroo_handler_flags_t { - VGA_SWITCHEROO_CAN_SWITCH_DDC = 1, - VGA_SWITCHEROO_NEEDS_EDP_CONFIG = 2, -}; - -enum vga_switcheroo_state { - VGA_SWITCHEROO_OFF = 0, - VGA_SWITCHEROO_ON = 1, - VGA_SWITCHEROO_NOT_FOUND = 2, -}; - -enum vga_switcheroo_client_id { - VGA_SWITCHEROO_UNKNOWN_ID = 4096, - VGA_SWITCHEROO_IGD = 0, - VGA_SWITCHEROO_DIS = 1, - VGA_SWITCHEROO_MAX_CLIENTS = 2, -}; - -struct vga_switcheroo_handler { - int (*init)(void); - int (*switchto)(enum vga_switcheroo_client_id); - int (*switch_ddc)(enum vga_switcheroo_client_id); - int (*power_state)(enum vga_switcheroo_client_id, enum vga_switcheroo_state); - enum vga_switcheroo_client_id (*get_client_id)(struct pci_dev *); -}; - -struct vga_switcheroo_client_ops { - void (*set_gpu_state)(struct pci_dev *, enum vga_switcheroo_state); - void (*reprobe)(struct pci_dev *); - bool (*can_switch)(struct pci_dev *); - void (*gpu_bound)(struct pci_dev *, enum vga_switcheroo_client_id); -}; - -struct vga_switcheroo_client { - struct pci_dev *pdev; - struct fb_info *fb_info; - enum vga_switcheroo_state pwr_state; - const struct vga_switcheroo_client_ops *ops; - enum vga_switcheroo_client_id id; - bool active; - bool driver_power_control; - struct list_head list; - struct pci_dev *vga_dev; -}; - -struct vgasr_priv { - bool active; - bool delayed_switch_active; - enum vga_switcheroo_client_id delayed_client_id; - struct dentry *debugfs_root; - int registered_clients; - struct list_head clients; - const struct vga_switcheroo_handler *handler; - enum vga_switcheroo_handler_flags_t handler_flags; - struct mutex mux_hw_lock; - int old_ddc_owner; -}; - -enum { - NETIF_F_SG_BIT = 0, - NETIF_F_IP_CSUM_BIT = 1, - __UNUSED_NETIF_F_1 = 2, - NETIF_F_HW_CSUM_BIT = 3, - NETIF_F_IPV6_CSUM_BIT = 4, - NETIF_F_HIGHDMA_BIT = 5, - NETIF_F_FRAGLIST_BIT = 6, - NETIF_F_HW_VLAN_CTAG_TX_BIT = 7, - NETIF_F_HW_VLAN_CTAG_RX_BIT = 8, - NETIF_F_HW_VLAN_CTAG_FILTER_BIT = 9, - NETIF_F_VLAN_CHALLENGED_BIT = 10, - NETIF_F_GSO_BIT = 11, - __UNUSED_NETIF_F_12 = 12, - __UNUSED_NETIF_F_13 = 13, - NETIF_F_GRO_BIT = 14, - NETIF_F_LRO_BIT = 15, - NETIF_F_GSO_SHIFT = 16, - NETIF_F_TSO_BIT = 16, - NETIF_F_GSO_ROBUST_BIT = 17, - NETIF_F_TSO_ECN_BIT = 18, - NETIF_F_TSO_MANGLEID_BIT = 19, - NETIF_F_TSO6_BIT = 20, - NETIF_F_FSO_BIT = 21, - NETIF_F_GSO_GRE_BIT = 22, - NETIF_F_GSO_GRE_CSUM_BIT = 23, - NETIF_F_GSO_IPXIP4_BIT = 24, - NETIF_F_GSO_IPXIP6_BIT = 25, - NETIF_F_GSO_UDP_TUNNEL_BIT = 26, - NETIF_F_GSO_UDP_TUNNEL_CSUM_BIT = 27, - NETIF_F_GSO_PARTIAL_BIT = 28, - NETIF_F_GSO_TUNNEL_REMCSUM_BIT = 29, - NETIF_F_GSO_SCTP_BIT = 30, - NETIF_F_GSO_ESP_BIT = 31, - NETIF_F_GSO_UDP_BIT = 32, - NETIF_F_GSO_UDP_L4_BIT = 33, - NETIF_F_GSO_FRAGLIST_BIT = 34, - NETIF_F_GSO_ACCECN_BIT = 35, - NETIF_F_GSO_LAST = 35, - NETIF_F_FCOE_CRC_BIT = 36, - NETIF_F_SCTP_CRC_BIT = 37, - NETIF_F_NTUPLE_BIT = 38, - NETIF_F_RXHASH_BIT = 39, - NETIF_F_RXCSUM_BIT = 40, - NETIF_F_NOCACHE_COPY_BIT = 41, - NETIF_F_LOOPBACK_BIT = 42, - NETIF_F_RXFCS_BIT = 43, - NETIF_F_RXALL_BIT = 44, - NETIF_F_HW_VLAN_STAG_TX_BIT = 45, - NETIF_F_HW_VLAN_STAG_RX_BIT = 46, - NETIF_F_HW_VLAN_STAG_FILTER_BIT = 47, - NETIF_F_HW_L2FW_DOFFLOAD_BIT = 48, - NETIF_F_HW_TC_BIT = 49, - NETIF_F_HW_ESP_BIT = 50, - NETIF_F_HW_ESP_TX_CSUM_BIT = 51, - NETIF_F_RX_UDP_TUNNEL_PORT_BIT = 52, - NETIF_F_HW_TLS_TX_BIT = 53, - NETIF_F_HW_TLS_RX_BIT = 54, - NETIF_F_GRO_HW_BIT = 55, - NETIF_F_HW_TLS_RECORD_BIT = 56, - NETIF_F_GRO_FRAGLIST_BIT = 57, - NETIF_F_HW_MACSEC_BIT = 58, - NETIF_F_GRO_UDP_FWD_BIT = 59, - NETIF_F_HW_HSR_TAG_INS_BIT = 60, - NETIF_F_HW_HSR_TAG_RM_BIT = 61, - NETIF_F_HW_HSR_FWD_BIT = 62, - NETIF_F_HW_HSR_DUP_BIT = 63, - NETDEV_FEATURE_COUNT = 64, -}; - -struct skb_frag { - netmem_ref netmem; - unsigned int len; - unsigned int offset; -}; - -typedef struct skb_frag skb_frag_t; - -enum { - SKBTX_HW_TSTAMP_NOBPF = 1, - SKBTX_SW_TSTAMP = 2, - SKBTX_IN_PROGRESS = 4, - SKBTX_COMPLETION_TSTAMP = 8, - SKBTX_HW_TSTAMP_NETDEV = 32, - SKBTX_SCHED_TSTAMP = 64, - SKBTX_BPF = 128, -}; - -struct xsk_tx_metadata_compl { - __u64 *tx_timestamp; -}; - -struct skb_shared_info { - __u8 flags; - __u8 meta_len; - __u8 nr_frags; - __u8 tx_flags; - short unsigned int gso_size; - short unsigned int gso_segs; - struct sk_buff *frag_list; - union { - struct skb_shared_hwtstamps hwtstamps; - struct xsk_tx_metadata_compl xsk_meta; - }; - unsigned int gso_type; - u32 tskey; - atomic_t dataref; - union { - struct { - u32 xdp_frags_size; - u32 xdp_frags_truesize; - }; - void *destructor_arg; - }; - skb_frag_t frags[17]; -}; - -struct pernet_operations { - struct list_head list; - int (*init)(struct net *); - void (*pre_exit)(struct net *); - void (*exit)(struct net *); - void (*exit_batch)(struct list_head *); - void (*exit_rtnl)(struct net *, struct list_head *); - unsigned int * const id; - const size_t size; -}; - -struct dev_ext_attribute { - struct device_attribute attr; - void *var; -}; - -enum device_link_state { - DL_STATE_NONE = -1, - DL_STATE_DORMANT = 0, - DL_STATE_AVAILABLE = 1, - DL_STATE_CONSUMER_PROBE = 2, - DL_STATE_ACTIVE = 3, - DL_STATE_SUPPLIER_UNBIND = 4, -}; - -struct device_link { - struct device *supplier; - struct list_head s_node; - struct device *consumer; - struct list_head c_node; - struct device link_dev; - enum device_link_state status; - u32 flags; - refcount_t rpm_active; - struct kref kref; - struct work_struct rm_work; - bool supplier_preactivated; -}; - -struct mii_bus; - -struct mdio_device { - struct device dev; - struct mii_bus *bus; - char modalias[32]; - int (*bus_match)(struct device *, const struct device_driver *); - void (*device_free)(struct mdio_device *); - void (*device_remove)(struct mdio_device *); - int addr; - int flags; - int reset_state; - struct gpio_desc *reset_gpio; - struct reset_control *reset_ctrl; - unsigned int reset_assert_delay; - unsigned int reset_deassert_delay; -}; - -struct phy_c45_device_ids { - u32 devices_in_package; - u32 mmds_present; - u32 device_ids[32]; -}; - -enum phy_state { - PHY_DOWN = 0, - PHY_READY = 1, - PHY_HALTED = 2, - PHY_ERROR = 3, - PHY_UP = 4, - PHY_RUNNING = 5, - PHY_NOLINK = 6, - PHY_CABLETEST = 7, -}; - -typedef enum { - PHY_INTERFACE_MODE_NA = 0, - PHY_INTERFACE_MODE_INTERNAL = 1, - PHY_INTERFACE_MODE_MII = 2, - PHY_INTERFACE_MODE_GMII = 3, - PHY_INTERFACE_MODE_SGMII = 4, - PHY_INTERFACE_MODE_TBI = 5, - PHY_INTERFACE_MODE_REVMII = 6, - PHY_INTERFACE_MODE_RMII = 7, - PHY_INTERFACE_MODE_REVRMII = 8, - PHY_INTERFACE_MODE_RGMII = 9, - PHY_INTERFACE_MODE_RGMII_ID = 10, - PHY_INTERFACE_MODE_RGMII_RXID = 11, - PHY_INTERFACE_MODE_RGMII_TXID = 12, - PHY_INTERFACE_MODE_RTBI = 13, - PHY_INTERFACE_MODE_SMII = 14, - PHY_INTERFACE_MODE_XGMII = 15, - PHY_INTERFACE_MODE_XLGMII = 16, - PHY_INTERFACE_MODE_MOCA = 17, - PHY_INTERFACE_MODE_PSGMII = 18, - PHY_INTERFACE_MODE_QSGMII = 19, - PHY_INTERFACE_MODE_TRGMII = 20, - PHY_INTERFACE_MODE_100BASEX = 21, - PHY_INTERFACE_MODE_1000BASEX = 22, - PHY_INTERFACE_MODE_2500BASEX = 23, - PHY_INTERFACE_MODE_5GBASER = 24, - PHY_INTERFACE_MODE_RXAUI = 25, - PHY_INTERFACE_MODE_XAUI = 26, - PHY_INTERFACE_MODE_10GBASER = 27, - PHY_INTERFACE_MODE_25GBASER = 28, - PHY_INTERFACE_MODE_USXGMII = 29, - PHY_INTERFACE_MODE_10GKR = 30, - PHY_INTERFACE_MODE_QUSGMII = 31, - PHY_INTERFACE_MODE_1000BASEKX = 32, - PHY_INTERFACE_MODE_10G_QXGMII = 33, - PHY_INTERFACE_MODE_50GBASER = 34, - PHY_INTERFACE_MODE_LAUI = 35, - PHY_INTERFACE_MODE_100GBASEP = 36, - PHY_INTERFACE_MODE_MIILITE = 37, - PHY_INTERFACE_MODE_MAX = 38, -} phy_interface_t; - -struct eee_config { - u32 tx_lpi_timer; - bool tx_lpi_enabled; - bool eee_enabled; -}; - -struct phy_package_shared; - -struct phylink; - -struct phy_driver; - -struct mii_timestamper; - -struct pse_control; - -struct phy_device { - struct mdio_device mdio; - const struct phy_driver *drv; - struct device_link *devlink; - u32 phyindex; - u32 phy_id; - struct phy_c45_device_ids c45_ids; - unsigned int is_c45: 1; - unsigned int is_internal: 1; - unsigned int is_pseudo_fixed_link: 1; - unsigned int is_gigabit_capable: 1; - unsigned int has_fixups: 1; - unsigned int suspended: 1; - unsigned int suspended_by_mdio_bus: 1; - unsigned int sysfs_links: 1; - unsigned int loopback_enabled: 1; - unsigned int downshifted_rate: 1; - unsigned int is_on_sfp_module: 1; - unsigned int mac_managed_pm: 1; - unsigned int wol_enabled: 1; - unsigned int is_genphy_driven: 1; - unsigned int autoneg: 1; - unsigned int link: 1; - unsigned int autoneg_complete: 1; - unsigned int interrupts: 1; - unsigned int irq_suspended: 1; - unsigned int irq_rerun: 1; - unsigned int default_timestamp: 1; - int rate_matching; - enum phy_state state; - u32 dev_flags; - phy_interface_t interface; - long unsigned int possible_interfaces[1]; - int speed; - int duplex; - int port; - int pause; - int asym_pause; - u8 master_slave_get; - u8 master_slave_set; - u8 master_slave_state; - long unsigned int supported[2]; - long unsigned int advertising[2]; - long unsigned int lp_advertising[2]; - long unsigned int adv_old[2]; - long unsigned int supported_eee[2]; - long unsigned int advertising_eee[2]; - long unsigned int eee_disabled_modes[2]; - bool enable_tx_lpi; - bool eee_active; - struct eee_config eee_cfg; - long unsigned int host_interfaces[1]; - struct list_head leds; - int irq; - void *priv; - struct phy_package_shared *shared; - struct sk_buff *skb; - void *ehdr; - struct nlattr *nest; - struct delayed_work state_queue; - struct mutex lock; - bool sfp_bus_attached; - struct sfp_bus *sfp_bus; - struct phylink *phylink; - struct net_device *attached_dev; - struct mii_timestamper *mii_ts; - struct pse_control *psec; - u8 mdix; - u8 mdix_ctrl; - int pma_extable; - unsigned int link_down_events; - void (*phy_link_change)(struct phy_device *, bool); - void (*adjust_link)(struct net_device *); - const struct macsec_ops *macsec_ops; -}; - -struct ethtool_phy_stats { - u64 rx_packets; - u64 rx_bytes; - u64 rx_errors; - u64 tx_packets; - u64 tx_bytes; - u64 tx_errors; -}; - -struct phy_plca_cfg { - int version; - int enabled; - int node_id; - int node_cnt; - int to_tmr; - int burst_cnt; - int burst_tmr; -}; - -struct phy_plca_status { - bool pst; -}; - -struct phy_tdr_config { - u32 first; - u32 last; - u32 step; - s8 pair; -}; - -struct mdio_bus_stats { - u64_stats_t transfers; - u64_stats_t errors; - u64_stats_t writes; - u64_stats_t reads; - struct u64_stats_sync syncp; -}; - -struct mii_bus { - struct module *owner; - const char *name; - char id[61]; - void *priv; - int (*read)(struct mii_bus *, int, int); - int (*write)(struct mii_bus *, int, int, u16); - int (*read_c45)(struct mii_bus *, int, int, int); - int (*write_c45)(struct mii_bus *, int, int, int, u16); - int (*reset)(struct mii_bus *); - struct mdio_bus_stats stats[32]; - struct mutex mdio_lock; - struct device *parent; - enum { - MDIOBUS_ALLOCATED = 1, - MDIOBUS_REGISTERED = 2, - MDIOBUS_UNREGISTERED = 3, - MDIOBUS_RELEASED = 4, - } state; - struct device dev; - struct mdio_device *mdio_map[32]; - u32 phy_mask; - u32 phy_ignore_ta_mask; - int irq[32]; - int reset_delay_us; - int reset_post_delay_us; - struct gpio_desc *reset_gpiod; - struct mutex shared_lock; - struct phy_package_shared *shared[32]; -}; - -struct mdio_driver_common { - struct device_driver driver; - int flags; -}; - -struct mdio_driver { - struct mdio_driver_common mdiodrv; - int (*probe)(struct mdio_device *); - void (*remove)(struct mdio_device *); - void (*shutdown)(struct mdio_device *); -}; - -struct mii_timestamper { - bool (*rxtstamp)(struct mii_timestamper *, struct sk_buff *, int); - void (*txtstamp)(struct mii_timestamper *, struct sk_buff *, int); - int (*hwtstamp)(struct mii_timestamper *, struct kernel_hwtstamp_config *, struct netlink_ext_ack *); - void (*link_state)(struct mii_timestamper *, struct phy_device *); - int (*ts_info)(struct mii_timestamper *, struct kernel_ethtool_ts_info *); - struct device *device; -}; - -struct phy_driver { - struct mdio_driver_common mdiodrv; - u32 phy_id; - char *name; - u32 phy_id_mask; - const long unsigned int * const features; - u32 flags; - const void *driver_data; - int (*soft_reset)(struct phy_device *); - int (*config_init)(struct phy_device *); - int (*probe)(struct phy_device *); - int (*get_features)(struct phy_device *); - unsigned int (*inband_caps)(struct phy_device *, phy_interface_t); - int (*config_inband)(struct phy_device *, unsigned int); - int (*get_rate_matching)(struct phy_device *, phy_interface_t); - int (*suspend)(struct phy_device *); - int (*resume)(struct phy_device *); - int (*config_aneg)(struct phy_device *); - int (*aneg_done)(struct phy_device *); - int (*read_status)(struct phy_device *); - int (*config_intr)(struct phy_device *); - irqreturn_t (*handle_interrupt)(struct phy_device *); - void (*remove)(struct phy_device *); - int (*match_phy_device)(struct phy_device *, const struct phy_driver *); - int (*set_wol)(struct phy_device *, struct ethtool_wolinfo *); - void (*get_wol)(struct phy_device *, struct ethtool_wolinfo *); - void (*link_change_notify)(struct phy_device *); - int (*read_mmd)(struct phy_device *, int, u16); - int (*write_mmd)(struct phy_device *, int, u16, u16); - int (*read_page)(struct phy_device *); - int (*write_page)(struct phy_device *, int); - int (*module_info)(struct phy_device *, struct ethtool_modinfo *); - int (*module_eeprom)(struct phy_device *, struct ethtool_eeprom *, u8 *); - int (*cable_test_start)(struct phy_device *); - int (*cable_test_tdr_start)(struct phy_device *, const struct phy_tdr_config *); - int (*cable_test_get_status)(struct phy_device *, bool *); - void (*get_phy_stats)(struct phy_device *, struct ethtool_eth_phy_stats *, struct ethtool_phy_stats *); - void (*get_link_stats)(struct phy_device *, struct ethtool_link_ext_stats *); - int (*update_stats)(struct phy_device *); - int (*get_sset_count)(struct phy_device *); - void (*get_strings)(struct phy_device *, u8 *); - void (*get_stats)(struct phy_device *, struct ethtool_stats *, u64 *); - int (*get_tunable)(struct phy_device *, struct ethtool_tunable *, void *); - int (*set_tunable)(struct phy_device *, struct ethtool_tunable *, const void *); - int (*set_loopback)(struct phy_device *, bool, int); - int (*get_sqi)(struct phy_device *); - int (*get_sqi_max)(struct phy_device *); - int (*get_plca_cfg)(struct phy_device *, struct phy_plca_cfg *); - int (*set_plca_cfg)(struct phy_device *, const struct phy_plca_cfg *); - int (*get_plca_status)(struct phy_device *, struct phy_plca_status *); - int (*led_brightness_set)(struct phy_device *, u8, enum led_brightness); - int (*led_blink_set)(struct phy_device *, u8, long unsigned int *, long unsigned int *); - int (*led_hw_is_supported)(struct phy_device *, u8, long unsigned int); - int (*led_hw_control_set)(struct phy_device *, u8, long unsigned int); - int (*led_hw_control_get)(struct phy_device *, u8, long unsigned int *); - int (*led_polarity_set)(struct phy_device *, int, long unsigned int); - unsigned int (*get_next_update_time)(struct phy_device *); -}; - -struct trace_event_raw_mdio_access { - struct trace_entry ent; - char busid[61]; - char read; - u8 addr; - u16 val; - unsigned int regnum; - char __data[0]; -}; - -struct trace_event_data_offsets_mdio_access {}; - -typedef void (*btf_trace_mdio_access)(void *, struct mii_bus *, char, u8, unsigned int, u16, int); - -struct mdio_bus_stat_attr { - int addr; - unsigned int field_offset; -}; - -struct link_capabilities { - int speed; - unsigned int duplex; - long unsigned int linkmodes[2]; -}; - -struct link_mode_info { - int speed; - u8 lanes; - u8 duplex; -}; - -enum { - LINK_CAPA_10HD = 0, - LINK_CAPA_10FD = 1, - LINK_CAPA_100HD = 2, - LINK_CAPA_100FD = 3, - LINK_CAPA_1000HD = 4, - LINK_CAPA_1000FD = 5, - LINK_CAPA_2500FD = 6, - LINK_CAPA_5000FD = 7, - LINK_CAPA_10000FD = 8, - LINK_CAPA_20000FD = 9, - LINK_CAPA_25000FD = 10, - LINK_CAPA_40000FD = 11, - LINK_CAPA_50000FD = 12, - LINK_CAPA_56000FD = 13, - LINK_CAPA_100000FD = 14, - LINK_CAPA_200000FD = 15, - LINK_CAPA_400000FD = 16, - LINK_CAPA_800000FD = 17, - __LINK_CAPA_MAX = 18, -}; - -struct mdio_board_info { - const char *bus_id; - char modalias[32]; - int mdio_addr; - const void *platform_data; -}; - -struct faux_device { - struct device dev; -}; - -struct faux_device_ops { - int (*probe)(struct faux_device *); - void (*remove)(struct faux_device *); -}; - -struct fixed_phy_status { - int link; - int speed; - int duplex; - int pause; - int asym_pause; -}; - -struct fixed_mdio_bus { - struct mii_bus *mii_bus; - struct list_head phys; -}; - -struct fixed_phy { - int addr; - struct phy_device *phydev; - struct fixed_phy_status status; - bool no_carrier; - int (*link_update)(struct net_device *, struct fixed_phy_status *); - struct list_head node; - struct gpio_desc *link_gpiod; -}; - -struct netdev_xmit { - u16 recursion; - u8 more; - u8 skip_txqueue; - u8 sched_mirred_nest; - u8 nf_dup_skb_recursion; -}; - -struct nf_conntrack { - refcount_t use; -}; - -struct flow_dissector_key_control { - u16 thoff; - u16 addr_type; - u32 flags; -}; - -struct flow_dissector_key_basic { - __be16 n_proto; - u8 ip_proto; - u8 padding; -}; - -struct flow_dissector { - long long unsigned int used_keys; - short unsigned int offset[33]; -}; - -struct flow_keys_basic { - struct flow_dissector_key_control control; - struct flow_dissector_key_basic basic; -}; - -enum { - SKBFL_ZEROCOPY_ENABLE = 1, - SKBFL_SHARED_FRAG = 2, - SKBFL_PURE_ZEROCOPY = 4, - SKBFL_DONT_ORPHAN = 8, - SKBFL_MANAGED_FRAG_REFS = 16, -}; - -enum { - SKB_GSO_TCPV4 = 1, - SKB_GSO_DODGY = 2, - SKB_GSO_TCP_ECN = 4, - SKB_GSO_TCP_FIXEDID = 8, - SKB_GSO_TCPV6 = 16, - SKB_GSO_FCOE = 32, - SKB_GSO_GRE = 64, - SKB_GSO_GRE_CSUM = 128, - SKB_GSO_IPXIP4 = 256, - SKB_GSO_IPXIP6 = 512, - SKB_GSO_UDP_TUNNEL = 1024, - SKB_GSO_UDP_TUNNEL_CSUM = 2048, - SKB_GSO_PARTIAL = 4096, - SKB_GSO_TUNNEL_REMCSUM = 8192, - SKB_GSO_SCTP = 16384, - SKB_GSO_ESP = 32768, - SKB_GSO_UDP = 65536, - SKB_GSO_UDP_L4 = 131072, - SKB_GSO_FRAGLIST = 262144, - SKB_GSO_TCP_ACCECN = 524288, -}; - -enum pkt_hash_types { - PKT_HASH_TYPE_NONE = 0, - PKT_HASH_TYPE_L2 = 1, - PKT_HASH_TYPE_L3 = 2, - PKT_HASH_TYPE_L4 = 3, -}; - -enum netdev_xdp_act { - NETDEV_XDP_ACT_BASIC = 1, - NETDEV_XDP_ACT_REDIRECT = 2, - NETDEV_XDP_ACT_NDO_XMIT = 4, - NETDEV_XDP_ACT_XSK_ZEROCOPY = 8, - NETDEV_XDP_ACT_HW_OFFLOAD = 16, - NETDEV_XDP_ACT_RX_SG = 32, - NETDEV_XDP_ACT_NDO_XMIT_SG = 64, - NETDEV_XDP_ACT_MASK = 127, -}; - -enum netdev_queue_type { - NETDEV_QUEUE_TYPE_RX = 0, - NETDEV_QUEUE_TYPE_TX = 1, -}; - -struct netdev_hw_addr { - struct list_head list; - struct rb_node node; - unsigned char addr[32]; - unsigned char type; - bool global_use; - int sync_cnt; - int refcount; - int synced; - struct callback_head callback_head; -}; - -enum netdev_state_t { - __LINK_STATE_START = 0, - __LINK_STATE_PRESENT = 1, - __LINK_STATE_NOCARRIER = 2, - __LINK_STATE_LINKWATCH_PENDING = 3, - __LINK_STATE_DORMANT = 4, - __LINK_STATE_TESTING = 5, -}; - -enum { - NAPIF_STATE_SCHED = 1, - NAPIF_STATE_MISSED = 2, - NAPIF_STATE_DISABLE = 4, - NAPIF_STATE_NPSVC = 8, - NAPIF_STATE_LISTED = 16, - NAPIF_STATE_NO_BUSY_POLL = 32, - NAPIF_STATE_IN_BUSY_POLL = 64, - NAPIF_STATE_PREFER_BUSY_POLL = 128, - NAPIF_STATE_THREADED = 256, - NAPIF_STATE_SCHED_THREADED = 512, - NAPIF_STATE_HAS_NOTIFIER = 1024, -}; - -enum netdev_queue_state_t { - __QUEUE_STATE_DRV_XOFF = 0, - __QUEUE_STATE_STACK_XOFF = 1, - __QUEUE_STATE_FROZEN = 2, -}; - -struct xdp_umem; - -struct xsk_queue; - -struct xdp_buff_xsk; - -struct xdp_desc; - -struct xsk_buff_pool { - struct device *dev; - struct net_device *netdev; - struct list_head xsk_tx_list; - spinlock_t xsk_tx_list_lock; - refcount_t users; - struct xdp_umem *umem; - struct work_struct work; - spinlock_t rx_lock; - struct list_head free_list; - struct list_head xskb_list; - u32 heads_cnt; - u16 queue_id; - struct xsk_queue *fq; - struct xsk_queue *cq; - dma_addr_t *dma_pages; - struct xdp_buff_xsk *heads; - struct xdp_desc *tx_descs; - u64 chunk_mask; - u64 addrs_cnt; - u32 free_list_cnt; - u32 dma_pages_cnt; - u32 free_heads_cnt; - u32 headroom; - u32 chunk_size; - u32 chunk_shift; - u32 frame_len; - u32 xdp_zc_max_segs; - u8 tx_metadata_len; - u8 cached_need_wakeup; - bool uses_need_wakeup; - bool unaligned; - bool tx_sw_csum; - void *addrs; - spinlock_t cq_lock; - struct xdp_buff_xsk *free_heads[0]; - long: 64; - long: 64; -}; - -struct pp_memory_provider_params { - void *mp_priv; - const struct memory_provider_ops *mp_ops; -}; - -struct rps_map; - -struct rps_dev_flow_table; - -struct netdev_rx_queue { - struct xdp_rxq_info xdp_rxq; - struct rps_map *rps_map; - struct rps_dev_flow_table *rps_flow_table; - struct kobject kobj; - const struct attribute_group **groups; - struct net_device *dev; - netdevice_tracker dev_tracker; - struct xsk_buff_pool *pool; - struct napi_struct *napi; - struct pp_memory_provider_params mp_params; -}; - -struct netdev_config { - u32 hds_thresh; - u8 hds_config; -}; - -struct sd_flow_limit; - -struct softnet_data { - struct list_head poll_list; - struct sk_buff_head process_queue; - local_lock_t process_queue_bh_lock; - unsigned int processed; - unsigned int time_squeeze; - struct softnet_data *rps_ipi_list; - unsigned int received_rps; - bool in_net_rx_action; - bool in_napi_threaded_poll; - struct sd_flow_limit *flow_limit; - struct Qdisc *output_queue; - struct Qdisc **output_queue_tailp; - struct sk_buff *completion_queue; - struct sk_buff_head xfrm_backlog; - struct netdev_xmit xmit; - unsigned int input_queue_head; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - call_single_data_t csd; - struct softnet_data *rps_ipi_next; - unsigned int cpu; - unsigned int input_queue_tail; - struct sk_buff_head input_pkt_queue; - struct napi_struct backlog; - long: 64; - atomic_t dropped; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - spinlock_t defer_lock; - int defer_count; - int defer_ipi_scheduled; - struct sk_buff *defer_list; - long: 64; - call_single_data_t defer_csd; -}; - -enum ethtool_stringset { - ETH_SS_TEST = 0, - ETH_SS_STATS = 1, - ETH_SS_PRIV_FLAGS = 2, - ETH_SS_NTUPLE_FILTERS = 3, - ETH_SS_FEATURES = 4, - ETH_SS_RSS_HASH_FUNCS = 5, - ETH_SS_TUNABLES = 6, - ETH_SS_PHY_STATS = 7, - ETH_SS_PHY_TUNABLES = 8, - ETH_SS_LINK_MODES = 9, - ETH_SS_MSG_CLASSES = 10, - ETH_SS_WOL_MODES = 11, - ETH_SS_SOF_TIMESTAMPING = 12, - ETH_SS_TS_TX_TYPES = 13, - ETH_SS_TS_RX_FILTERS = 14, - ETH_SS_UDP_TUNNEL_TYPES = 15, - ETH_SS_STATS_STD = 16, - ETH_SS_STATS_ETH_PHY = 17, - ETH_SS_STATS_ETH_MAC = 18, - ETH_SS_STATS_ETH_CTRL = 19, - ETH_SS_STATS_RMON = 20, - ETH_SS_STATS_PHY = 21, - ETH_SS_TS_FLAGS = 22, - ETH_SS_COUNT = 23, -}; - -enum { - TCP_V4_FLOW = 1, - UDP_V4_FLOW = 2, - SCTP_V4_FLOW = 3, - AH_ESP_V4_FLOW = 4, - TCP_V6_FLOW = 5, - UDP_V6_FLOW = 6, - SCTP_V6_FLOW = 7, - AH_ESP_V6_FLOW = 8, - AH_V4_FLOW = 9, - ESP_V4_FLOW = 10, - AH_V6_FLOW = 11, - ESP_V6_FLOW = 12, - IPV4_USER_FLOW = 13, - IP_USER_FLOW = 13, - IPV6_USER_FLOW = 14, - IPV4_FLOW = 16, - IPV6_FLOW = 17, - ETHER_FLOW = 18, - GTPU_V4_FLOW = 19, - GTPU_V6_FLOW = 20, - GTPC_V4_FLOW = 21, - GTPC_V6_FLOW = 22, - GTPC_TEID_V4_FLOW = 23, - GTPC_TEID_V6_FLOW = 24, - GTPU_EH_V4_FLOW = 25, - GTPU_EH_V6_FLOW = 26, - GTPU_UL_V4_FLOW = 27, - GTPU_UL_V6_FLOW = 28, - GTPU_DL_V4_FLOW = 29, - GTPU_DL_V6_FLOW = 30, - __FLOW_TYPE_COUNT = 31, -}; - -enum { - ETH_RSS_HASH_TOP_BIT = 0, - ETH_RSS_HASH_XOR_BIT = 1, - ETH_RSS_HASH_CRC32_BIT = 2, - ETH_RSS_HASH_FUNCS_COUNT = 3, -}; - -typedef __u16 __virtio16; - -typedef __u32 __virtio32; - -typedef __u64 __virtio64; - -struct virtio_net_config { - __u8 mac[6]; - __virtio16 status; - __virtio16 max_virtqueue_pairs; - __virtio16 mtu; - __le32 speed; - __u8 duplex; - __u8 rss_max_key_size; - __le16 rss_max_indirection_table_length; - __le32 supported_hash_types; -}; - -struct virtio_net_hdr_v1 { - __u8 flags; - __u8 gso_type; - __virtio16 hdr_len; - __virtio16 gso_size; - union { - struct { - __virtio16 csum_start; - __virtio16 csum_offset; - }; - struct { - __virtio16 start; - __virtio16 offset; - } csum; - struct { - __le16 segments; - __le16 dup_acks; - } rsc; - }; - __virtio16 num_buffers; -}; - -struct virtio_net_hdr_v1_hash { - struct virtio_net_hdr_v1 hdr; - __le16 hash_value_lo; - __le16 hash_value_hi; - __le16 hash_report; - __le16 padding; -}; - -struct virtio_net_hdr_v1_hash_tunnel { - struct virtio_net_hdr_v1_hash hash_hdr; - __le16 outer_th_offset; - __le16 inner_nh_offset; -}; - -struct virtio_net_hdr { - __u8 flags; - __u8 gso_type; - __virtio16 hdr_len; - __virtio16 gso_size; - __virtio16 csum_start; - __virtio16 csum_offset; -}; - -struct virtio_net_hdr_mrg_rxbuf { - struct virtio_net_hdr hdr; - __virtio16 num_buffers; -}; - -struct virtio_net_ctrl_hdr { - __u8 class; - __u8 cmd; -}; - -typedef __u8 virtio_net_ctrl_ack; - -struct virtio_net_ctrl_mac { - __virtio32 entries; - __u8 macs[0]; -}; - -struct virtio_net_ctrl_mq { - __virtio16 virtqueue_pairs; -}; - -struct virtio_net_rss_config_hdr { - __le32 hash_types; - __le16 indirection_table_mask; - __le16 unclassified_queue; - __le16 indirection_table[0]; -}; - -struct virtio_net_rss_config_trailer { - __le16 max_tx_vq; - __u8 hash_key_length; - __u8 hash_key_data[0]; -}; - -struct virtio_net_ctrl_coal_tx { - __le32 tx_max_packets; - __le32 tx_usecs; -}; - -struct virtio_net_ctrl_coal_rx { - __le32 rx_max_packets; - __le32 rx_usecs; -}; - -struct virtio_net_ctrl_coal { - __le32 max_packets; - __le32 max_usecs; -}; - -struct virtio_net_ctrl_coal_vq { - __le16 vqn; - __le16 reserved; - struct virtio_net_ctrl_coal coal; -}; - -struct virtio_net_stats_capabilities { - __le64 supported_stats_types[1]; -}; - -struct virtio_net_ctrl_queue_stats { - struct { - __le16 vq_index; - __le16 reserved[3]; - __le64 types_bitmap[1]; - } stats[1]; -}; - -struct virtio_net_stats_reply_hdr { - __u8 type; - __u8 reserved; - __le16 vq_index; - __le16 reserved1; - __le16 size; -}; - -enum xdp_buff_flags { - XDP_FLAGS_HAS_FRAGS = 1, - XDP_FLAGS_FRAGS_PF_MEMALLOC = 2, -}; - -enum dim_cq_period_mode { - DIM_CQ_PERIOD_MODE_START_FROM_EQE = 0, - DIM_CQ_PERIOD_MODE_START_FROM_CQE = 1, - DIM_CQ_PERIOD_NUM_MODES = 2, -}; - -struct failover_ops { - int (*slave_pre_register)(struct net_device *, struct net_device *); - int (*slave_register)(struct net_device *, struct net_device *); - int (*slave_pre_unregister)(struct net_device *, struct net_device *); - int (*slave_unregister)(struct net_device *, struct net_device *); - int (*slave_link_change)(struct net_device *, struct net_device *); - int (*slave_name_change)(struct net_device *, struct net_device *); - rx_handler_result_t (*slave_handle_frame)(struct sk_buff **); -}; - -struct failover { - struct list_head list; - struct net_device *failover_dev; - netdevice_tracker dev_tracker; - struct failover_ops *ops; -}; - -struct rx_queue_attribute { - struct attribute attr; - ssize_t (*show)(struct netdev_rx_queue *, char *); - ssize_t (*store)(struct netdev_rx_queue *, const char *, size_t); -}; - -struct netdev_queue_stats_rx { - u64 bytes; - u64 packets; - u64 alloc_fail; - u64 hw_drops; - u64 hw_drop_overruns; - u64 csum_complete; - u64 csum_unnecessary; - u64 csum_none; - u64 csum_bad; - u64 hw_gro_packets; - u64 hw_gro_bytes; - u64 hw_gro_wire_packets; - u64 hw_gro_wire_bytes; - u64 hw_drop_ratelimits; -}; - -struct netdev_queue_stats_tx { - u64 bytes; - u64 packets; - u64 hw_drops; - u64 hw_drop_errors; - u64 csum_none; - u64 needs_csum; - u64 hw_gso_packets; - u64 hw_gso_bytes; - u64 hw_gso_wire_packets; - u64 hw_gso_wire_bytes; - u64 hw_drop_ratelimits; - u64 stop; - u64 wake; -}; - -struct xdp_desc { - __u64 addr; - __u32 len; - __u32 options; -}; - -struct xdp_umem { - void *addrs; - u64 size; - u32 headroom; - u32 chunk_size; - u32 chunks; - u32 npgs; - struct user_struct *user; - refcount_t users; - u8 flags; - u8 tx_metadata_len; - bool zc; - struct page **pgs; - int id; - struct list_head xsk_dma_list; - struct work_struct work; -}; - -struct xdp_buff_xsk { - struct xdp_buff xdp; - u8 cb[24]; - dma_addr_t dma; - dma_addr_t frame_dma; - struct xsk_buff_pool *pool; - struct list_head list_node; - long: 64; -}; - -struct ewma_pkt_len { - long unsigned int internal; -}; - -struct virtnet_stat_desc { - char desc[32]; - size_t offset; - size_t qstat_offset; -}; - -struct virtnet_sq_free_stats { - u64 packets; - u64 bytes; - u64 napi_packets; - u64 napi_bytes; - u64 xsk; -}; - -struct virtnet_sq_stats { - struct u64_stats_sync syncp; - u64_stats_t packets; - u64_stats_t bytes; - u64_stats_t xdp_tx; - u64_stats_t xdp_tx_drops; - u64_stats_t kicks; - u64_stats_t tx_timeouts; - u64_stats_t stop; - u64_stats_t wake; -}; - -struct virtnet_rq_stats { - struct u64_stats_sync syncp; - u64_stats_t packets; - u64_stats_t bytes; - u64_stats_t drops; - u64_stats_t xdp_packets; - u64_stats_t xdp_tx; - u64_stats_t xdp_redirects; - u64_stats_t xdp_drops; - u64_stats_t kicks; -}; - -struct virtnet_interrupt_coalesce { - u32 max_packets; - u32 max_usecs; -}; - -struct virtnet_rq_dma { - dma_addr_t addr; - u32 ref; - u16 len; - u16 need_sync; -}; - -struct send_queue { - struct virtqueue *vq; - struct scatterlist sg[19]; - char name[16]; - struct virtnet_sq_stats stats; - struct virtnet_interrupt_coalesce intr_coal; - struct napi_struct napi; - bool reset; - struct xsk_buff_pool *xsk_pool; - dma_addr_t xsk_hdr_dma_addr; -}; - -struct receive_queue { - struct virtqueue *vq; - struct napi_struct napi; - struct bpf_prog *xdp_prog; - struct virtnet_rq_stats stats; - u16 calls; - bool dim_enabled; - struct mutex dim_lock; - struct dim dim; - u32 packets_in_napi; - struct virtnet_interrupt_coalesce intr_coal; - struct page *pages; - struct ewma_pkt_len mrg_avg_pkt_len; - struct page_frag alloc_frag; - struct scatterlist sg[19]; - unsigned int min_buf_len; - char name[16]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct xdp_rxq_info xdp_rxq; - struct virtnet_rq_dma *last_dma; - struct xsk_buff_pool *xsk_pool; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct xdp_rxq_info xsk_rxq_info; - struct xdp_buff **xsk_buffs; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct control_buf { - struct virtio_net_ctrl_hdr hdr; - virtio_net_ctrl_ack status; -}; - -struct virtnet_info { - struct virtio_device *vdev; - struct virtqueue *cvq; - struct net_device *dev; - struct send_queue *sq; - struct receive_queue *rq; - unsigned int status; - u16 max_queue_pairs; - u16 curr_queue_pairs; - u16 xdp_queue_pairs; - bool xdp_enabled; - bool big_packets; - unsigned int big_packets_num_skbfrags; - bool mergeable_rx_bufs; - bool has_rss; - bool has_rss_hash_report; - u8 rss_key_size; - u16 rss_indir_table_size; - u32 rss_hash_types_supported; - u32 rss_hash_types_saved; - bool has_cvq; - struct mutex cvq_lock; - bool any_header_sg; - u8 hdr_len; - struct delayed_work refill; - bool tx_tnl; - bool rx_tnl; - bool rx_tnl_csum; - bool refill_enabled; - spinlock_t refill_lock; - struct work_struct config_work; - struct work_struct rx_mode_work; - bool rx_mode_work_enabled; - bool affinity_hint_set; - struct hlist_node node; - struct hlist_node node_dead; - struct control_buf *ctrl; - u8 duplex; - u32 speed; - bool rx_dim_enabled; - struct virtnet_interrupt_coalesce intr_coal_tx; - struct virtnet_interrupt_coalesce intr_coal_rx; - long unsigned int guest_offloads; - long unsigned int guest_offloads_capable; - struct failover *failover; - u64 device_stats_cap; - struct virtio_net_rss_config_hdr *rss_hdr; - union { - struct virtio_net_rss_config_trailer rss_trailer; - struct { - unsigned char __offset_to_hash_key_data[3]; - u8 rss_hash_key_data[40]; - }; - }; -}; - -struct virtio_net_common_hdr { - union { - struct virtio_net_hdr hdr; - struct virtio_net_hdr_mrg_rxbuf mrg_hdr; - struct virtio_net_hdr_v1_hash hash_v1_hdr; - struct virtio_net_hdr_v1_hash_tunnel tnl_hdr; - }; -}; - -enum virtnet_xmit_type { - VIRTNET_XMIT_TYPE_SKB = 0, - VIRTNET_XMIT_TYPE_SKB_ORPHAN = 1, - VIRTNET_XMIT_TYPE_XDP = 2, - VIRTNET_XMIT_TYPE_XSK = 3, -}; - -struct virtnet_stats_ctx { - bool to_qstat; - u32 desc_num[3]; - u64 bitmap[3]; - u32 size[3]; - u64 *data; -}; - -struct shm_channel { - struct device *dev; - void *base; -}; - -union smc_proto_hdr { - u32 as_uint32; - struct { - u8 msg_type: 3; - u8 msg_version: 3; - u8 reserved_1: 1; - u8 direction: 1; - u8 status; - u8 reserved_2; - u8 reset_vf: 1; - u8 reserved_3: 6; - u8 owner_is_pf: 1; - }; -}; - -struct ipv4_devconf { - void *sysctl; - int data[33]; - long unsigned int state[1]; -}; - -struct in_ifaddr; - -struct ip_mc_list; - -struct in_device { - struct net_device *dev; - netdevice_tracker dev_tracker; - refcount_t refcnt; - int dead; - struct in_ifaddr *ifa_list; - struct ip_mc_list *mc_list; - struct ip_mc_list **mc_hash; - int mc_count; - spinlock_t mc_tomb_lock; - struct ip_mc_list *mc_tomb; - long unsigned int mr_v1_seen; - long unsigned int mr_v2_seen; - long unsigned int mr_maxdelay; - long unsigned int mr_qi; - long unsigned int mr_qri; - unsigned char mr_qrv; - unsigned char mr_gq_running; - u32 mr_ifc_count; - struct timer_list mr_gq_timer; - struct timer_list mr_ifc_timer; - struct neigh_parms *arp_parms; - struct ipv4_devconf cnf; - struct callback_head callback_head; -}; - -struct in_ifaddr { - struct hlist_node addr_lst; - struct in_ifaddr *ifa_next; - struct in_device *ifa_dev; - struct callback_head callback_head; - __be32 ifa_local; - __be32 ifa_address; - __be32 ifa_mask; - __u32 ifa_rt_priority; - __be32 ifa_broadcast; - unsigned char ifa_scope; - unsigned char ifa_prefixlen; - unsigned char ifa_proto; - __u32 ifa_flags; - char ifa_label[16]; - __u32 ifa_valid_lft; - __u32 ifa_preferred_lft; - long unsigned int ifa_cstamp; - long unsigned int ifa_tstamp; -}; - -enum net_shaper_metric { - NET_SHAPER_METRIC_BPS = 0, - NET_SHAPER_METRIC_PPS = 1, -}; - -enum net_shaper_binding_type { - NET_SHAPER_BINDING_TYPE_NETDEV = 0, -}; - -struct devlink; - -struct net_shaper_binding { - enum net_shaper_binding_type type; - union { - struct net_device *netdev; - struct devlink *devlink; - }; -}; - -struct net_shaper_handle { - enum net_shaper_scope scope; - u32 id; -}; - -struct net_shaper { - struct net_shaper_handle parent; - struct net_shaper_handle handle; - enum net_shaper_metric metric; - u64 bw_min; - u64 bw_max; - u64 burst; - u32 priority; - u32 weight; - u32 leaves; - struct callback_head rcu; -}; - -enum gdma_queue_type { - GDMA_INVALID_QUEUE = 0, - GDMA_SQ = 1, - GDMA_RQ = 2, - GDMA_CQ = 3, - GDMA_EQ = 4, -}; - -struct gdma_dev_id { - union { - struct { - u16 type; - u16 instance; - }; - u32 as_uint32; - }; -}; - -struct gdma_context; - -struct auxiliary_device; - -struct gdma_dev { - struct gdma_context *gdma_context; - struct gdma_dev_id dev_id; - u32 pdid; - u32 doorbell; - u32 gpa_mkey; - void *driver_data; - struct auxiliary_device *adev; - bool is_suspended; - bool rdma_teardown; -}; - -struct gdma_sge { - u64 address; - u32 mem_key; - u32 size; -}; - -struct gdma_wqe_request { - struct gdma_sge *sgl; - u32 num_sge; - u32 inline_oob_size; - const void *inline_oob_data; - u32 flags; - u32 client_data_unit; -}; - -struct gdma_mem_info { - struct device *dev; - dma_addr_t dma_handle; - void *virt_addr; - u64 length; - u64 dma_region_handle; -}; - -struct gdma_queue; - -struct gdma_context { - struct device *dev; - struct dentry *mana_pci_debugfs; - unsigned int max_num_queues; - unsigned int max_num_msix; - unsigned int num_msix_usable; - struct xarray irq_contexts; - u16 adapter_mtu; - unsigned int max_num_cqs; - struct gdma_queue **cq_table; - struct mutex eq_test_event_mutex; - struct completion eq_test_event; - u32 test_event_eq_id; - bool is_pf; - phys_addr_t bar0_pa; - void *bar0_va; - void *shm_base; - void *db_page_base; - phys_addr_t phys_db_page_base; - u32 db_page_size; - int numa_node; - struct shm_channel shm_channel; - struct gdma_dev hwc; - struct gdma_dev mana; - struct gdma_dev mana_ib; - u64 pf_cap_flags1; - struct workqueue_struct *service_wq; - long unsigned int flags; -}; - -struct gdma_comp { - u32 cqe_data[15]; - u32 wq_num; - bool is_sq; -}; - -struct gdma_event { - u32 details[3]; - u8 type; -}; - -struct mana_eq { - struct gdma_queue *eq; - struct dentry *mana_eq_debugfs; -}; - -typedef void gdma_eq_callback(void *, struct gdma_queue *, struct gdma_event *); - -typedef void gdma_cq_callback(void *, struct gdma_queue *); - -struct gdma_queue { - struct gdma_dev *gdma_dev; - enum gdma_queue_type type; - u32 id; - struct gdma_mem_info mem_info; - void *queue_mem_ptr; - u32 queue_size; - bool monitor_avl_buf; - u32 head; - u32 tail; - struct list_head entry; - union { - struct { - bool disable_needed; - gdma_eq_callback *callback; - void *context; - unsigned int msix_index; - u32 log2_throttle_limit; - } eq; - struct { - gdma_cq_callback *callback; - void *context; - struct gdma_queue *parent; - } cq; - }; -}; - -struct gdma_posted_wqe_info { - u32 wqe_size_in_bu; -}; - -typedef u64 mana_handle_t; - -enum TRI_STATE { - TRI_STATE_UNKNOWN = -1, - TRI_STATE_FALSE = 0, - TRI_STATE_TRUE = 1, -}; - -struct mana_stats_rx { - u64 packets; - u64 bytes; - u64 xdp_drop; - u64 xdp_tx; - u64 xdp_redirect; - struct u64_stats_sync syncp; -}; - -struct mana_stats_tx { - u64 packets; - u64 bytes; - u64 xdp_xmit; - u64 tso_packets; - u64 tso_bytes; - u64 tso_inner_packets; - u64 tso_inner_bytes; - u64 short_pkt_fmt; - u64 long_pkt_fmt; - u64 csum_partial; - u64 mana_map_err; - struct u64_stats_sync syncp; -}; - -struct mana_txq { - struct gdma_queue *gdma_sq; - union { - u32 gdma_txq_id; - struct { - u32 reserved1: 10; - u32 vsq_frame: 14; - u32 reserved2: 8; - }; - }; - u16 vp_offset; - struct net_device *ndev; - struct sk_buff_head pending_skbs; - struct netdev_queue *net_txq; - atomic_t pending_sends; - bool napi_initialized; - struct mana_stats_tx stats; -}; - -enum mana_cq_type { - MANA_CQ_TYPE_RX = 0, - MANA_CQ_TYPE_TX = 1, -}; - -struct mana_rxq; - -struct mana_cq { - struct gdma_queue *gdma_cq; - u32 gdma_id; - enum mana_cq_type type; - struct mana_rxq *rxq; - struct mana_txq *txq; - struct gdma_comp gdma_comp_buf[512]; - struct napi_struct napi; - int work_done; - int work_done_since_doorbell; - int budget; -}; - -struct mana_recv_buf_oob { - struct gdma_wqe_request wqe_req; - void *buf_va; - bool from_pool; - u32 num_sge; - struct gdma_sge sgl[15]; - struct gdma_posted_wqe_info wqe_inf; -}; - -struct mana_rxq { - struct gdma_queue *gdma_rq; - u32 gdma_id; - u32 rxq_idx; - u32 datasize; - u32 alloc_size; - u32 headroom; - u32 frag_count; - mana_handle_t rxobj; - struct mana_cq rx_cq; - struct completion fence_event; - struct net_device *ndev; - u32 num_rx_buf; - u32 buf_index; - struct mana_stats_rx stats; - struct bpf_prog *bpf_prog; - long: 64; - long: 64; - long: 64; - struct xdp_rxq_info xdp_rxq; - void *xdp_save_va; - bool xdp_flush; - int xdp_rc; - struct page_pool *page_pool; - struct dentry *mana_rx_debugfs; - struct mana_recv_buf_oob rx_oobs[0]; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct mana_tx_qp { - struct mana_txq txq; - struct mana_cq tx_cq; - mana_handle_t tx_object; - struct dentry *mana_tx_debugfs; -}; - -struct mana_ethtool_stats { - u64 stop_queue; - u64 wake_queue; - u64 tx_cqe_err; - u64 tx_cqe_unknown_type; - u64 rx_coalesced_err; - u64 rx_cqe_unknown_type; -}; - -struct mana_ethtool_hc_stats { - u64 hc_rx_discards_no_wqe; - u64 hc_rx_err_vport_disabled; - u64 hc_rx_bytes; - u64 hc_rx_ucast_pkts; - u64 hc_rx_ucast_bytes; - u64 hc_rx_bcast_pkts; - u64 hc_rx_bcast_bytes; - u64 hc_rx_mcast_pkts; - u64 hc_rx_mcast_bytes; - u64 hc_tx_err_gf_disabled; - u64 hc_tx_err_vport_disabled; - u64 hc_tx_err_inval_vportoffset_pkt; - u64 hc_tx_err_vlan_enforcement; - u64 hc_tx_err_eth_type_enforcement; - u64 hc_tx_err_sa_enforcement; - u64 hc_tx_err_sqpdid_enforcement; - u64 hc_tx_err_cqpdid_enforcement; - u64 hc_tx_err_mtu_violation; - u64 hc_tx_err_inval_oob; - u64 hc_tx_bytes; - u64 hc_tx_ucast_pkts; - u64 hc_tx_ucast_bytes; - u64 hc_tx_bcast_pkts; - u64 hc_tx_bcast_bytes; - u64 hc_tx_mcast_pkts; - u64 hc_tx_mcast_bytes; - u64 hc_tx_err_gdma; -}; - -struct mana_ethtool_phy_stats { - u64 rx_pkt_drop_phy; - u64 tx_pkt_drop_phy; - u64 rx_pkt_tc0_phy; - u64 tx_pkt_tc0_phy; - u64 rx_pkt_tc1_phy; - u64 tx_pkt_tc1_phy; - u64 rx_pkt_tc2_phy; - u64 tx_pkt_tc2_phy; - u64 rx_pkt_tc3_phy; - u64 tx_pkt_tc3_phy; - u64 rx_pkt_tc4_phy; - u64 tx_pkt_tc4_phy; - u64 rx_pkt_tc5_phy; - u64 tx_pkt_tc5_phy; - u64 rx_pkt_tc6_phy; - u64 tx_pkt_tc6_phy; - u64 rx_pkt_tc7_phy; - u64 tx_pkt_tc7_phy; - u64 rx_byte_tc0_phy; - u64 tx_byte_tc0_phy; - u64 rx_byte_tc1_phy; - u64 tx_byte_tc1_phy; - u64 rx_byte_tc2_phy; - u64 tx_byte_tc2_phy; - u64 rx_byte_tc3_phy; - u64 tx_byte_tc3_phy; - u64 rx_byte_tc4_phy; - u64 tx_byte_tc4_phy; - u64 rx_byte_tc5_phy; - u64 tx_byte_tc5_phy; - u64 rx_byte_tc6_phy; - u64 tx_byte_tc6_phy; - u64 rx_byte_tc7_phy; - u64 tx_byte_tc7_phy; - u64 rx_pause_tc0_phy; - u64 tx_pause_tc0_phy; - u64 rx_pause_tc1_phy; - u64 tx_pause_tc1_phy; - u64 rx_pause_tc2_phy; - u64 tx_pause_tc2_phy; - u64 rx_pause_tc3_phy; - u64 tx_pause_tc3_phy; - u64 rx_pause_tc4_phy; - u64 tx_pause_tc4_phy; - u64 rx_pause_tc5_phy; - u64 tx_pause_tc5_phy; - u64 rx_pause_tc6_phy; - u64 tx_pause_tc6_phy; - u64 rx_pause_tc7_phy; - u64 tx_pause_tc7_phy; -}; - -struct mana_context { - struct gdma_dev *gdma_dev; - u16 num_ports; - u8 bm_hostmode; - struct mana_ethtool_hc_stats hc_stats; - struct mana_eq *eqs; - struct dentry *mana_eqs_debugfs; - struct workqueue_struct *per_port_queue_reset_wq; - struct delayed_work gf_stats_work; - bool hwc_timeout_occurred; - struct net_device *ports[256]; - struct work_struct link_change_work; - u32 link_event; -}; - -struct mana_port_context { - struct mana_context *ac; - struct net_device *ndev; - struct work_struct queue_reset_work; - u8 mac_addr[6]; - enum TRI_STATE rss_state; - mana_handle_t default_rxobj; - bool tx_shortform_allowed; - u16 tx_vp_offset; - struct mana_tx_qp *tx_qp; - u32 *indir_table; - u32 indir_table_sz; - mana_handle_t *rxobj_table; - u8 hashkey[40]; - struct mana_rxq **rxqs; - void **rxbufs_pre; - dma_addr_t *das_pre; - int rxbpre_total; - u32 rxbpre_datasize; - u32 rxbpre_alloc_size; - u32 rxbpre_headroom; - u32 rxbpre_frag_count; - struct bpf_prog *bpf_prog; - unsigned int max_queues; - unsigned int num_queues; - unsigned int rx_queue_size; - unsigned int tx_queue_size; - mana_handle_t port_handle; - mana_handle_t pf_filter_handle; - struct mutex vport_mutex; - int vport_use_count; - struct net_shaper_handle handle; - u16 port_idx; - u32 speed; - u32 max_speed; - bool port_is_up; - bool port_st_save; - struct mana_ethtool_stats eth_stats; - struct mana_ethtool_phy_stats phy_stats; - struct dentry *mana_port_debugfs; -}; - -struct usb_endpoint_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bEndpointAddress; - __u8 bmAttributes; - __le16 wMaxPacketSize; - __u8 bInterval; - __u8 bRefresh; - __u8 bSynchAddress; -} __attribute__((packed)); - -enum usb_device_speed { - USB_SPEED_UNKNOWN = 0, - USB_SPEED_LOW = 1, - USB_SPEED_FULL = 2, - USB_SPEED_HIGH = 3, - USB_SPEED_WIRELESS = 4, - USB_SPEED_SUPER = 5, - USB_SPEED_SUPER_PLUS = 6, -}; - -enum usb_device_state { - USB_STATE_NOTATTACHED = 0, - USB_STATE_ATTACHED = 1, - USB_STATE_POWERED = 2, - USB_STATE_RECONNECTING = 3, - USB_STATE_UNAUTHENTICATED = 4, - USB_STATE_DEFAULT = 5, - USB_STATE_ADDRESS = 6, - USB_STATE_CONFIGURED = 7, - USB_STATE_SUSPENDED = 8, -}; - -enum usb_ssp_rate { - USB_SSP_GEN_UNKNOWN = 0, - USB_SSP_GEN_2x1 = 1, - USB_SSP_GEN_1x2 = 2, - USB_SSP_GEN_2x2 = 3, -}; - -enum usb_otg_state { - OTG_STATE_UNDEFINED = 0, - OTG_STATE_B_IDLE = 1, - OTG_STATE_B_SRP_INIT = 2, - OTG_STATE_B_PERIPHERAL = 3, - OTG_STATE_B_WAIT_ACON = 4, - OTG_STATE_B_HOST = 5, - OTG_STATE_A_IDLE = 6, - OTG_STATE_A_WAIT_VRISE = 7, - OTG_STATE_A_WAIT_BCON = 8, - OTG_STATE_A_HOST = 9, - OTG_STATE_A_SUSPEND = 10, - OTG_STATE_A_PERIPHERAL = 11, - OTG_STATE_A_WAIT_VFALL = 12, - OTG_STATE_A_VBUS_ERR = 13, -}; - -enum usb_dr_mode { - USB_DR_MODE_UNKNOWN = 0, - USB_DR_MODE_HOST = 1, - USB_DR_MODE_PERIPHERAL = 2, - USB_DR_MODE_OTG = 3, -}; - -struct usb_ctrlrequest { - __u8 bRequestType; - __u8 bRequest; - __le16 wValue; - __le16 wIndex; - __le16 wLength; -}; - -struct usb_device_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __le16 bcdUSB; - __u8 bDeviceClass; - __u8 bDeviceSubClass; - __u8 bDeviceProtocol; - __u8 bMaxPacketSize0; - __le16 idVendor; - __le16 idProduct; - __le16 bcdDevice; - __u8 iManufacturer; - __u8 iProduct; - __u8 iSerialNumber; - __u8 bNumConfigurations; -}; - -struct usb_config_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __le16 wTotalLength; - __u8 bNumInterfaces; - __u8 bConfigurationValue; - __u8 iConfiguration; - __u8 bmAttributes; - __u8 bMaxPower; -} __attribute__((packed)); - -struct usb_interface_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bInterfaceNumber; - __u8 bAlternateSetting; - __u8 bNumEndpoints; - __u8 bInterfaceClass; - __u8 bInterfaceSubClass; - __u8 bInterfaceProtocol; - __u8 iInterface; -}; - -struct usb_eusb2_isoc_ep_comp_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __le16 wMaxPacketSize; - __le32 dwBytesPerInterval; -}; - -struct usb_ssp_isoc_ep_comp_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __le16 wReseved; - __le32 dwBytesPerInterval; -}; - -struct usb_ss_ep_comp_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bMaxBurst; - __u8 bmAttributes; - __le16 wBytesPerInterval; -}; - -struct usb_interface_assoc_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bFirstInterface; - __u8 bInterfaceCount; - __u8 bFunctionClass; - __u8 bFunctionSubClass; - __u8 bFunctionProtocol; - __u8 iFunction; -}; - -struct usb_bos_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __le16 wTotalLength; - __u8 bNumDeviceCaps; -} __attribute__((packed)); - -struct usb_ext_cap_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDevCapabilityType; - __le32 bmAttributes; -} __attribute__((packed)); - -struct usb_ss_cap_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDevCapabilityType; - __u8 bmAttributes; - __le16 wSpeedSupported; - __u8 bFunctionalitySupport; - __u8 bU1devExitLat; - __le16 bU2DevExitLat; -}; - -struct usb_ss_container_id_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDevCapabilityType; - __u8 bReserved; - __u8 ContainerID[16]; -}; - -struct usb_ssp_cap_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDevCapabilityType; - __u8 bReserved; - __le32 bmAttributes; - __le16 wFunctionalitySupport; - __le16 wReserved; - union { - __le32 legacy_padding; - struct { - struct {} __empty_bmSublinkSpeedAttr; - __le32 bmSublinkSpeedAttr[0]; - }; - }; -}; - -struct usb_ptm_cap_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDevCapabilityType; -}; - -struct ep_device; - -struct usb_host_endpoint { - struct usb_endpoint_descriptor desc; - struct usb_ss_ep_comp_descriptor ss_ep_comp; - struct usb_ssp_isoc_ep_comp_descriptor ssp_isoc_ep_comp; - struct usb_eusb2_isoc_ep_comp_descriptor eusb2_isoc_ep_comp; - long: 0; - struct list_head urb_list; - void *hcpriv; - struct ep_device *ep_dev; - unsigned char *extra; - int extralen; - int enabled; - int streams; - long: 0; -} __attribute__((packed)); - -struct usb_host_interface { - struct usb_interface_descriptor desc; - int extralen; - unsigned char *extra; - struct usb_host_endpoint *endpoint; - char *string; -}; - -enum usb_interface_condition { - USB_INTERFACE_UNBOUND = 0, - USB_INTERFACE_BINDING = 1, - USB_INTERFACE_BOUND = 2, - USB_INTERFACE_UNBINDING = 3, -}; - -enum usb_wireless_status { - USB_WIRELESS_STATUS_NA = 0, - USB_WIRELESS_STATUS_DISCONNECTED = 1, - USB_WIRELESS_STATUS_CONNECTED = 2, -}; - -struct usb_interface { - struct usb_host_interface *altsetting; - struct usb_host_interface *cur_altsetting; - unsigned int num_altsetting; - struct usb_interface_assoc_descriptor *intf_assoc; - int minor; - enum usb_interface_condition condition; - unsigned int sysfs_files_created: 1; - unsigned int ep_devs_created: 1; - unsigned int unregistering: 1; - unsigned int needs_remote_wakeup: 1; - unsigned int needs_altsetting0: 1; - unsigned int needs_binding: 1; - unsigned int resetting_device: 1; - unsigned int authorized: 1; - enum usb_wireless_status wireless_status; - struct work_struct wireless_status_work; - struct device dev; - struct device *usb_dev; - struct work_struct reset_ws; -}; - -struct usb_interface_cache { - unsigned int num_altsetting; - struct kref ref; - struct usb_host_interface altsetting[0]; -}; - -struct usb_host_config { - struct usb_config_descriptor desc; - char *string; - struct usb_interface_assoc_descriptor *intf_assoc[16]; - struct usb_interface *interface[32]; - struct usb_interface_cache *intf_cache[32]; - unsigned char *extra; - int extralen; -}; - -struct usb_host_bos { - struct usb_bos_descriptor *desc; - struct usb_ext_cap_descriptor *ext_cap; - struct usb_ss_cap_descriptor *ss_cap; - struct usb_ssp_cap_descriptor *ssp_cap; - struct usb_ss_container_id_descriptor *ss_id; - struct usb_ptm_cap_descriptor *ptm_cap; -}; - -struct usb_device; - -struct usb_bus { - struct device *controller; - struct device *sysdev; - int busnum; - const char *bus_name; - u8 uses_pio_for_control; - u8 otg_port; - unsigned int is_b_host: 1; - unsigned int b_hnp_enable: 1; - unsigned int no_stop_on_short: 1; - unsigned int no_sg_constraint: 1; - unsigned int sg_tablesize; - int devnum_next; - struct mutex devnum_next_mutex; - long unsigned int devmap[2]; - struct usb_device *root_hub; - struct usb_bus *hs_companion; - int bandwidth_allocated; - int bandwidth_int_reqs; - int bandwidth_isoc_reqs; - unsigned int resuming_ports; -}; - -enum usb_link_tunnel_mode { - USB_LINK_UNKNOWN = 0, - USB_LINK_NATIVE = 1, - USB_LINK_TUNNELED = 2, -}; - -struct usb2_lpm_parameters { - unsigned int besl; - int timeout; -}; - -struct usb3_lpm_parameters { - unsigned int mel; - unsigned int pel; - unsigned int sel; - int timeout; -}; - -struct usb_tt; - -struct usb_device { - int devnum; - char devpath[16]; - u32 route; - enum usb_device_state state; - enum usb_device_speed speed; - unsigned int rx_lanes; - unsigned int tx_lanes; - enum usb_ssp_rate ssp_rate; - struct usb_tt *tt; - int ttport; - unsigned int toggle[2]; - struct usb_device *parent; - struct usb_bus *bus; - struct usb_host_endpoint ep0; - struct device dev; - struct usb_device_descriptor descriptor; - struct usb_host_bos *bos; - struct usb_host_config *config; - struct usb_host_config *actconfig; - struct usb_host_endpoint *ep_in[16]; - struct usb_host_endpoint *ep_out[16]; - char **rawdescriptors; - short unsigned int bus_mA; - u8 portnum; - u8 level; - u8 devaddr; - unsigned int can_submit: 1; - unsigned int persist_enabled: 1; - unsigned int reset_in_progress: 1; - unsigned int have_langid: 1; - unsigned int authorized: 1; - unsigned int authenticated: 1; - unsigned int lpm_capable: 1; - unsigned int lpm_devinit_allow: 1; - unsigned int usb2_hw_lpm_capable: 1; - unsigned int usb2_hw_lpm_besl_capable: 1; - unsigned int usb2_hw_lpm_enabled: 1; - unsigned int usb2_hw_lpm_allowed: 1; - unsigned int usb3_lpm_u1_enabled: 1; - unsigned int usb3_lpm_u2_enabled: 1; - int string_langid; - char *product; - char *manufacturer; - char *serial; - struct list_head filelist; - int maxchild; - u32 quirks; - atomic_t urbnum; - long unsigned int active_duration; - long unsigned int connect_time; - unsigned int do_remote_wakeup: 1; - unsigned int reset_resume: 1; - unsigned int port_is_suspended: 1; - enum usb_link_tunnel_mode tunnel_mode; - struct device_link *usb4_link; - int slot_id; - struct usb2_lpm_parameters l1_params; - struct usb3_lpm_parameters u1_params; - struct usb3_lpm_parameters u2_params; - unsigned int lpm_disable_count; - u16 hub_delay; - unsigned int use_generic_driver: 1; -}; - -struct usb_tt { - struct usb_device *hub; - int multi; - unsigned int think_time; - void *hcpriv; - spinlock_t lock; - struct list_head clear_list; - struct work_struct clear_work; -}; - -struct usb_iso_packet_descriptor { - unsigned int offset; - unsigned int length; - unsigned int actual_length; - int status; -}; - -struct usb_anchor { - struct list_head urb_list; - wait_queue_head_t wait; - spinlock_t lock; - atomic_t suspend_wakeups; - unsigned int poisoned: 1; -}; - -struct urb; - -typedef void (*usb_complete_t)(struct urb *); - -struct urb { - struct kref kref; - int unlinked; - void *hcpriv; - atomic_t use_count; - atomic_t reject; - struct list_head urb_list; - struct list_head anchor_list; - struct usb_anchor *anchor; - struct usb_device *dev; - struct usb_host_endpoint *ep; - unsigned int pipe; - unsigned int stream_id; - int status; - unsigned int transfer_flags; - void *transfer_buffer; - dma_addr_t transfer_dma; - struct scatterlist *sg; - struct sg_table *sgt; - int num_mapped_sgs; - int num_sgs; - u32 transfer_buffer_length; - u32 actual_length; - unsigned char *setup_packet; - dma_addr_t setup_dma; - int start_frame; - int number_of_packets; - int interval; - int error_count; - void *context; - usb_complete_t complete; - struct usb_iso_packet_descriptor iso_frame_desc[0]; -}; - -struct usb_descriptor_header { - __u8 bLength; - __u8 bDescriptorType; -}; - -struct usb_dev_cap_header { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDevCapabilityType; -}; - -struct usb_device_id { - __u16 match_flags; - __u16 idVendor; - __u16 idProduct; - __u16 bcdDevice_lo; - __u16 bcdDevice_hi; - __u8 bDeviceClass; - __u8 bDeviceSubClass; - __u8 bDeviceProtocol; - __u8 bInterfaceClass; - __u8 bInterfaceSubClass; - __u8 bInterfaceProtocol; - __u8 bInterfaceNumber; - kernel_ulong_t driver_info; -}; - -enum usb3_link_state { - USB3_LPM_U0 = 0, - USB3_LPM_U1 = 1, - USB3_LPM_U2 = 2, - USB3_LPM_U3 = 3, -}; - -struct usb_dynids { - struct list_head list; -}; - -struct usb_driver { - const char *name; - int (*probe)(struct usb_interface *, const struct usb_device_id *); - void (*disconnect)(struct usb_interface *); - int (*unlocked_ioctl)(struct usb_interface *, unsigned int, void *); - int (*suspend)(struct usb_interface *, pm_message_t); - int (*resume)(struct usb_interface *); - int (*reset_resume)(struct usb_interface *); - int (*pre_reset)(struct usb_interface *); - int (*post_reset)(struct usb_interface *); - void (*shutdown)(struct usb_interface *); - const struct usb_device_id *id_table; - const struct attribute_group **dev_groups; - struct usb_dynids dynids; - struct device_driver driver; - unsigned int no_dynamic_id: 1; - unsigned int supports_autosuspend: 1; - unsigned int disable_hub_initiated_lpm: 1; - unsigned int soft_unbind: 1; -}; - -struct giveback_urb_bh { - bool running; - bool high_prio; - spinlock_t lock; - struct list_head head; - struct work_struct bh; - struct usb_host_endpoint *completing_ep; -}; - -enum usb_dev_authorize_policy { - USB_DEVICE_AUTHORIZE_NONE = 0, - USB_DEVICE_AUTHORIZE_ALL = 1, - USB_DEVICE_AUTHORIZE_INTERNAL = 2, -}; - -struct hc_driver; - -struct usb_phy; - -struct usb_phy_roothub; - -struct usb_hcd { - struct usb_bus self; - struct kref kref; - const char *product_desc; - int speed; - char irq_descr[24]; - struct timer_list rh_timer; - struct urb *status_urb; - struct work_struct wakeup_work; - struct work_struct died_work; - const struct hc_driver *driver; - struct usb_phy *usb_phy; - struct usb_phy_roothub *phy_roothub; - long unsigned int flags; - enum usb_dev_authorize_policy dev_policy; - unsigned int rh_registered: 1; - unsigned int rh_pollable: 1; - unsigned int msix_enabled: 1; - unsigned int msi_enabled: 1; - unsigned int skip_phy_initialization: 1; - unsigned int uses_new_polling: 1; - unsigned int has_tt: 1; - unsigned int amd_resume_bug: 1; - unsigned int can_do_streams: 1; - unsigned int tpl_support: 1; - unsigned int cant_recv_wakeups: 1; - unsigned int irq; - void *regs; - resource_size_t rsrc_start; - resource_size_t rsrc_len; - unsigned int power_budget; - struct giveback_urb_bh high_prio_bh; - struct giveback_urb_bh low_prio_bh; - struct mutex *address0_mutex; - struct mutex *bandwidth_mutex; - struct usb_hcd *shared_hcd; - struct usb_hcd *primary_hcd; - struct dma_pool *pool[4]; - int state; - struct gen_pool *localmem_pool; - long unsigned int hcd_priv[0]; -}; - -struct hc_driver { - const char *description; - const char *product_desc; - size_t hcd_priv_size; - irqreturn_t (*irq)(struct usb_hcd *); - int flags; - int (*reset)(struct usb_hcd *); - int (*start)(struct usb_hcd *); - int (*pci_suspend)(struct usb_hcd *, bool); - int (*pci_resume)(struct usb_hcd *, pm_message_t); - int (*pci_poweroff_late)(struct usb_hcd *, bool); - void (*stop)(struct usb_hcd *); - void (*shutdown)(struct usb_hcd *); - int (*get_frame_number)(struct usb_hcd *); - int (*urb_enqueue)(struct usb_hcd *, struct urb *, gfp_t); - int (*urb_dequeue)(struct usb_hcd *, struct urb *, int); - int (*map_urb_for_dma)(struct usb_hcd *, struct urb *, gfp_t); - void (*unmap_urb_for_dma)(struct usb_hcd *, struct urb *); - void (*endpoint_disable)(struct usb_hcd *, struct usb_host_endpoint *); - void (*endpoint_reset)(struct usb_hcd *, struct usb_host_endpoint *); - int (*hub_status_data)(struct usb_hcd *, char *); - int (*hub_control)(struct usb_hcd *, u16, u16, u16, char *, u16); - int (*bus_suspend)(struct usb_hcd *); - int (*bus_resume)(struct usb_hcd *); - int (*start_port_reset)(struct usb_hcd *, unsigned int); - long unsigned int (*get_resuming_ports)(struct usb_hcd *); - void (*relinquish_port)(struct usb_hcd *, int); - int (*port_handed_over)(struct usb_hcd *, int); - void (*clear_tt_buffer_complete)(struct usb_hcd *, struct usb_host_endpoint *); - int (*alloc_dev)(struct usb_hcd *, struct usb_device *); - void (*free_dev)(struct usb_hcd *, struct usb_device *); - int (*alloc_streams)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint **, unsigned int, unsigned int, gfp_t); - int (*free_streams)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint **, unsigned int, gfp_t); - int (*add_endpoint)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint *); - int (*drop_endpoint)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint *); - int (*check_bandwidth)(struct usb_hcd *, struct usb_device *); - void (*reset_bandwidth)(struct usb_hcd *, struct usb_device *); - int (*address_device)(struct usb_hcd *, struct usb_device *, unsigned int); - int (*enable_device)(struct usb_hcd *, struct usb_device *); - int (*update_hub_device)(struct usb_hcd *, struct usb_device *, struct usb_tt *, gfp_t); - int (*reset_device)(struct usb_hcd *, struct usb_device *); - int (*update_device)(struct usb_hcd *, struct usb_device *); - int (*set_usb2_hw_lpm)(struct usb_hcd *, struct usb_device *, int); - int (*enable_usb3_lpm_timeout)(struct usb_hcd *, struct usb_device *, enum usb3_link_state); - int (*disable_usb3_lpm_timeout)(struct usb_hcd *, struct usb_device *, enum usb3_link_state); - int (*find_raw_port_number)(struct usb_hcd *, int); - int (*port_power)(struct usb_hcd *, int, bool); - int (*submit_single_step_set_feature)(struct usb_hcd *, struct urb *, int); -}; - -struct quirk_entry { - u16 vid; - u16 pid; - u32 flags; -}; - -typedef void (*companion_fn)(struct pci_dev *, struct usb_hcd *, struct pci_dev *, struct usb_hcd *); - -enum xhci_sideband_type { - XHCI_SIDEBAND_AUDIO = 0, - XHCI_SIDEBAND_VENDOR = 1, -}; - -enum xhci_sideband_notify_type { - XHCI_SIDEBAND_XFER_RING_FREE = 0, -}; - -struct xhci_sideband_event { - enum xhci_sideband_notify_type type; - void *evt_data; -}; - -struct xhci_hcd; - -struct xhci_virt_device; - -struct xhci_virt_ep; - -struct xhci_interrupter; - -struct xhci_sideband { - struct xhci_hcd *xhci; - struct xhci_virt_device *vdev; - struct xhci_virt_ep *eps[31]; - struct xhci_interrupter *ir; - enum xhci_sideband_type type; - struct mutex mutex; - struct usb_interface *intf; - int (*notify_client)(struct usb_interface *, struct xhci_sideband_event *); -}; - -struct s3_save { - u32 command; - u32 dev_nt; - u64 dcbaa_ptr; - u32 config_reg; -}; - -struct xhci_bus_state { - long unsigned int bus_suspended; - long unsigned int next_statechange; - u32 port_c_suspend; - u32 suspended_ports; - u32 port_remote_wakeup; - long unsigned int resuming_ports; -}; - -struct xhci_port; - -struct xhci_hub { - struct xhci_port **ports; - unsigned int num_ports; - struct usb_hcd *hcd; - struct xhci_bus_state bus_state; - u8 maj_rev; - u8 min_rev; -}; - -struct xhci_cap_regs; - -struct xhci_op_regs; - -struct xhci_run_regs; - -struct xhci_doorbell_array; - -struct xhci_device_context_array; - -struct xhci_ring; - -struct xhci_command; - -struct xhci_scratchpad; - -struct xhci_root_port_bw_info; - -struct xhci_port_cap; - -struct xhci_hcd { - struct usb_hcd *main_hcd; - struct usb_hcd *shared_hcd; - struct xhci_cap_regs *cap_regs; - struct xhci_op_regs *op_regs; - struct xhci_run_regs *run_regs; - struct xhci_doorbell_array *dba; - __u32 hcs_params1; - __u32 hcs_params2; - __u32 hcs_params3; - __u32 hcc_params; - __u32 hcc_params2; - spinlock_t lock; - u16 hci_version; - u16 max_interrupters; - u32 imod_interval; - u32 page_size; - int nvecs; - struct clk *clk; - struct clk *reg_clk; - struct reset_control *reset; - struct xhci_device_context_array *dcbaa; - struct xhci_interrupter **interrupters; - struct xhci_ring *cmd_ring; - unsigned int cmd_ring_state; - struct list_head cmd_list; - unsigned int cmd_ring_reserved_trbs; - struct delayed_work cmd_timer; - struct completion cmd_ring_stop_completion; - struct xhci_command *current_cmd; - struct xhci_scratchpad *scratchpad; - struct mutex mutex; - struct xhci_virt_device *devs[256]; - struct xhci_root_port_bw_info *rh_bw; - struct dma_pool *device_pool; - struct dma_pool *segment_pool; - struct dma_pool *small_streams_pool; - struct dma_pool *port_bw_pool; - struct dma_pool *medium_streams_pool; - unsigned int xhc_state; - long unsigned int run_graceperiod; - struct s3_save s3; - long long unsigned int quirks; - unsigned int num_active_eps; - unsigned int limit_active_eps; - struct xhci_port *hw_ports; - struct xhci_hub usb2_rhub; - struct xhci_hub usb3_rhub; - unsigned int hw_lpm_support: 1; - unsigned int broken_suspend: 1; - unsigned int allow_single_roothub: 1; - struct xhci_port_cap *port_caps; - unsigned int num_port_caps; - struct timer_list comp_mode_recovery_timer; - u32 port_status_u0; - u16 test_mode; - struct dentry *debugfs_root; - struct dentry *debugfs_slots; - struct list_head regset_list; - void *dbc; - long unsigned int priv[0]; -}; - -struct xhci_bw_info { - unsigned int ep_interval; - unsigned int mult; - unsigned int num_packets; - unsigned int max_packet_size; - unsigned int max_esit_payload; - unsigned int type; -}; - -struct xhci_stream_info; - -struct xhci_segment; - -union xhci_trb; - -struct xhci_virt_ep { - struct xhci_virt_device *vdev; - unsigned int ep_index; - struct xhci_ring *ring; - struct xhci_stream_info *stream_info; - struct xhci_ring *new_ring; - unsigned int err_count; - unsigned int ep_state; - struct list_head cancelled_td_list; - struct xhci_hcd *xhci; - struct xhci_segment *queued_deq_seg; - union xhci_trb *queued_deq_ptr; - bool skip; - struct xhci_bw_info bw_info; - struct list_head bw_endpoint_list; - long unsigned int stop_time; - int next_frame_id; - bool use_extended_tbc; - struct xhci_sideband *sideband; -}; - -struct xhci_container_ctx; - -struct xhci_interval_bw_table; - -struct xhci_tt_bw_info; - -struct xhci_virt_device { - int slot_id; - struct usb_device *udev; - struct xhci_container_ctx *out_ctx; - struct xhci_container_ctx *in_ctx; - struct xhci_virt_ep eps[31]; - struct xhci_port *rhub_port; - struct xhci_interval_bw_table *bw_table; - struct xhci_tt_bw_info *tt_info; - long unsigned int flags; - u16 current_mel; - void *debugfs_private; - struct xhci_sideband *sideband; -}; - -struct xhci_erst_entry; - -struct xhci_erst { - struct xhci_erst_entry *entries; - unsigned int num_entries; - dma_addr_t erst_dma_addr; -}; - -struct xhci_intr_reg; - -struct xhci_interrupter { - struct xhci_ring *event_ring; - struct xhci_erst erst; - struct xhci_intr_reg *ir_set; - unsigned int intr_num; - bool ip_autoclear; - u32 isoc_bei_interval; - u32 s3_iman; - u32 s3_imod; - u32 s3_erst_size; - u64 s3_erst_base; - u64 s3_erst_dequeue; -}; - -struct xhci_cap_regs { - __le32 hc_capbase; - __le32 hcs_params1; - __le32 hcs_params2; - __le32 hcs_params3; - __le32 hcc_params; - __le32 db_off; - __le32 run_regs_off; - __le32 hcc_params2; -}; - -struct xhci_op_regs { - __le32 command; - __le32 status; - __le32 page_size; - __le32 reserved1; - __le32 reserved2; - __le32 dev_notification; - __le64 cmd_ring; - __le32 reserved3[4]; - __le64 dcbaa_ptr; - __le32 config_reg; - __le32 reserved4[241]; - __le32 port_status_base; - __le32 port_power_base; - __le32 port_link_base; - __le32 reserved5; - __le32 reserved6[1016]; -}; - -struct xhci_intr_reg { - __le32 iman; - __le32 imod; - __le32 erst_size; - __le32 rsvd; - __le64 erst_base; - __le64 erst_dequeue; -}; - -struct xhci_run_regs { - __le32 microframe_index; - __le32 rsvd[7]; - struct xhci_intr_reg ir_set[128]; -}; - -struct xhci_doorbell_array { - __le32 doorbell[256]; -}; - -struct xhci_container_ctx { - unsigned int type; - int size; - u8 *bytes; - dma_addr_t dma; -}; - -struct xhci_slot_ctx { - __le32 dev_info; - __le32 dev_info2; - __le32 tt_info; - __le32 dev_state; - __le32 reserved[4]; -}; - -struct xhci_ep_ctx { - __le32 ep_info; - __le32 ep_info2; - __le64 deq; - __le32 tx_info; - __le32 reserved[3]; -}; - -struct xhci_input_control_ctx { - __le32 drop_flags; - __le32 add_flags; - __le32 rsvd2[6]; -}; - -struct xhci_command { - struct xhci_container_ctx *in_ctx; - u32 status; - u32 comp_param; - int slot_id; - struct completion *completion; - union xhci_trb *command_trb; - struct list_head cmd_list; - unsigned int timeout_ms; -}; - -struct xhci_link_trb { - __le64 segment_ptr; - __le32 intr_target; - __le32 control; -}; - -struct xhci_transfer_event { - __le64 buffer; - __le32 transfer_len; - __le32 flags; -}; - -struct xhci_event_cmd { - __le64 cmd_trb; - __le32 status; - __le32 flags; -}; - -struct xhci_generic_trb { - __le32 field[4]; -}; - -union xhci_trb { - struct xhci_link_trb link; - struct xhci_transfer_event trans_event; - struct xhci_event_cmd event_cmd; - struct xhci_generic_trb generic; -}; - -struct xhci_stream_ctx { - __le64 stream_ring; - __le32 reserved[2]; -}; - -struct xhci_stream_info { - struct xhci_ring **stream_rings; - unsigned int num_streams; - struct xhci_stream_ctx *stream_ctx_array; - unsigned int num_stream_ctxs; - dma_addr_t ctx_array_dma; - struct xarray trb_address_map; - struct xhci_command *free_streams_command; -}; - -enum xhci_ring_type { - TYPE_CTRL = 0, - TYPE_ISOC = 1, - TYPE_BULK = 2, - TYPE_INTR = 3, - TYPE_STREAM = 4, - TYPE_COMMAND = 5, - TYPE_EVENT = 6, -}; - -struct xhci_ring { - struct xhci_segment *first_seg; - struct xhci_segment *last_seg; - union xhci_trb *enqueue; - struct xhci_segment *enq_seg; - union xhci_trb *dequeue; - struct xhci_segment *deq_seg; - struct list_head td_list; - u32 cycle_state; - unsigned int stream_id; - unsigned int num_segs; - unsigned int num_trbs_free; - unsigned int bounce_buf_len; - enum xhci_ring_type type; - u32 old_trb_comp_code; - struct xarray *trb_address_map; -}; - -struct xhci_segment { - union xhci_trb *trbs; - struct xhci_segment *next; - unsigned int num; - dma_addr_t dma; - dma_addr_t bounce_dma; - void *bounce_buf; - unsigned int bounce_offs; - unsigned int bounce_len; -}; - -enum xhci_overhead_type { - LS_OVERHEAD_TYPE = 0, - FS_OVERHEAD_TYPE = 1, - HS_OVERHEAD_TYPE = 2, -}; - -struct xhci_interval_bw { - unsigned int num_packets; - struct list_head endpoints; - unsigned int overhead[3]; -}; - -struct xhci_interval_bw_table { - unsigned int interval0_esit_payload; - struct xhci_interval_bw interval_bw[16]; - unsigned int bw_used; - unsigned int ss_bw_in; - unsigned int ss_bw_out; -}; - -struct xhci_port { - __le32 *addr; - int hw_portnum; - int hcd_portnum; - struct xhci_hub *rhub; - struct xhci_port_cap *port_cap; - unsigned int lpm_incapable: 1; - long unsigned int resume_timestamp; - bool rexit_active; - int slot_id; - struct completion rexit_done; - struct completion u3exit_done; -}; - -struct xhci_tt_bw_info { - struct list_head tt_list; - int slot_id; - int ttport; - struct xhci_interval_bw_table bw_table; - int active_eps; -}; - -struct xhci_root_port_bw_info { - struct list_head tts; - unsigned int num_active_tts; - struct xhci_interval_bw_table bw_table; -}; - -struct xhci_device_context_array { - __le64 dev_context_ptrs[256]; - dma_addr_t dma; -}; - -enum xhci_setup_dev { - SETUP_CONTEXT_ONLY = 0, - SETUP_CONTEXT_ADDRESS = 1, -}; - -enum xhci_cancelled_td_status { - TD_DIRTY = 0, - TD_HALTED = 1, - TD_CLEARING_CACHE = 2, - TD_CLEARING_CACHE_DEFERRED = 3, - TD_CLEARED = 4, -}; - -struct xhci_td { - struct list_head td_list; - struct list_head cancelled_td_list; - int status; - enum xhci_cancelled_td_status cancel_status; - struct urb *urb; - struct xhci_segment *start_seg; - union xhci_trb *start_trb; - struct xhci_segment *end_seg; - union xhci_trb *end_trb; - struct xhci_segment *bounce_seg; - bool urb_length_set; - bool error_mid_td; -}; - -struct xhci_erst_entry { - __le64 seg_addr; - __le32 seg_size; - __le32 rsvd; -}; - -struct xhci_scratchpad { - u64 *sp_array; - dma_addr_t sp_dma; - void **sp_buffers; -}; - -struct urb_priv { - int num_tds; - int num_tds_done; - struct xhci_td td[0]; -}; - -struct xhci_port_cap { - u32 *psi; - u8 psi_count; - u8 psi_uid_count; - u8 maj_rev; - u8 min_rev; - u32 protocol_caps; -}; - -struct xhci_driver_overrides { - size_t extra_priv_size; - int (*reset)(struct usb_hcd *); - int (*start)(struct usb_hcd *); - int (*add_endpoint)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint *); - int (*drop_endpoint)(struct usb_hcd *, struct usb_device *, struct usb_host_endpoint *); - int (*check_bandwidth)(struct usb_hcd *, struct usb_device *); - void (*reset_bandwidth)(struct usb_hcd *, struct usb_device *); - int (*update_hub_device)(struct usb_hcd *, struct usb_device *, struct usb_tt *, gfp_t); - int (*hub_control)(struct usb_hcd *, u16, u16, u16, char *, u16); -}; - -typedef void (*xhci_get_quirks_t)(struct device *, struct xhci_hcd *); - -struct xhci_regset { - char name[32]; - struct debugfs_regset32 regset; - size_t nregs; - struct list_head list; -}; - -struct xhci_file_map { - const char *name; - int (*show)(struct seq_file *, void *); -}; - -struct xhci_ep_priv { - char name[32]; - struct dentry *root; - struct xhci_stream_info *stream_info; - struct xhci_ring *show_ring; - unsigned int stream_id; -}; - -struct xhci_slot_priv { - char name[32]; - struct dentry *root; - struct xhci_ep_priv *eps[31]; - struct xhci_virt_device *dev; -}; - -struct usb_string_descriptor { - __u8 bLength; - __u8 bDescriptorType; - union { - __le16 legacy_padding; - struct { - struct {} __empty_wData; - __le16 wData[0]; - }; - }; -}; - -struct xdbc_regs { - __le32 capability; - __le32 doorbell; - __le32 ersts; - __le32 __reserved_0; - __le64 erstba; - __le64 erdp; - __le32 control; - __le32 status; - __le32 portsc; - __le32 __reserved_1; - __le64 dccp; - __le32 devinfo1; - __le32 devinfo2; -}; - -struct xdbc_trb { - __le32 field[4]; -}; - -struct xdbc_erst_entry { - __le64 seg_addr; - __le32 seg_size; - __le32 __reserved_0; -}; - -struct xdbc_info_context { - __le64 string0; - __le64 manufacturer; - __le64 product; - __le64 serial; - __le32 length; - __le32 __reserved_0[7]; -}; - -struct xdbc_ep_context { - __le32 ep_info1; - __le32 ep_info2; - __le64 deq; - __le32 tx_info; - __le32 __reserved_0[11]; -}; - -struct xdbc_context { - struct xdbc_info_context info; - struct xdbc_ep_context out; - struct xdbc_ep_context in; -}; - -struct xdbc_strings { - char string0[64]; - char manufacturer[64]; - char product[64]; - char serial[64]; -}; - -struct xdbc_segment { - struct xdbc_trb *trbs; - dma_addr_t dma; -}; - -struct xdbc_ring { - struct xdbc_segment *segment; - struct xdbc_trb *enqueue; - struct xdbc_trb *dequeue; - u32 cycle_state; -}; - -struct xdbc_state { - u16 vendor; - u16 device; - u32 bus; - u32 dev; - u32 func; - void *xhci_base; - u64 xhci_start; - size_t xhci_length; - int port_number; - struct xdbc_regs *xdbc_reg; - dma_addr_t table_dma; - void *table_base; - dma_addr_t erst_dma; - size_t erst_size; - void *erst_base; - struct xdbc_ring evt_ring; - struct xdbc_segment evt_seg; - dma_addr_t dbcc_dma; - size_t dbcc_size; - void *dbcc_base; - dma_addr_t string_dma; - size_t string_size; - void *string_base; - struct xdbc_ring out_ring; - struct xdbc_segment out_seg; - void *out_buf; - dma_addr_t out_dma; - struct xdbc_ring in_ring; - struct xdbc_segment in_seg; - void *in_buf; - dma_addr_t in_dma; - u32 flags; - raw_spinlock_t lock; -}; - -struct serio_device_id { - __u8 type; - __u8 extra; - __u8 id; - __u8 proto; -}; - -struct serio_driver; - -struct serio { - void *port_data; - char name[32]; - char phys[32]; - char firmware_id[128]; - bool manual_bind; - struct serio_device_id id; - spinlock_t lock; - int (*write)(struct serio *, unsigned char); - int (*open)(struct serio *); - void (*close)(struct serio *); - int (*start)(struct serio *); - void (*stop)(struct serio *); - struct serio *parent; - struct list_head child_node; - struct list_head children; - unsigned int depth; - struct serio_driver *drv; - struct mutex drv_mutex; - struct device dev; - struct list_head node; - struct mutex *ps2_cmd_mutex; -}; - -struct serio_driver { - const char *description; - const struct serio_device_id *id_table; - bool manual_bind; - void (*write_wakeup)(struct serio *); - irqreturn_t (*interrupt)(struct serio *, unsigned char, unsigned int); - int (*connect)(struct serio *, struct serio_driver *); - int (*reconnect)(struct serio *); - int (*fast_reconnect)(struct serio *); - void (*disconnect)(struct serio *); - void (*cleanup)(struct serio *); - struct device_driver driver; -}; - -typedef struct serio *class_serio_pause_rx_t; - -enum ps2_disposition { - PS2_PROCESS = 0, - PS2_IGNORE = 1, - PS2_ERROR = 2, -}; - -struct ps2dev; - -typedef enum ps2_disposition (*ps2_pre_receive_handler_t)(struct ps2dev *, u8, unsigned int); - -typedef void (*ps2_receive_handler_t)(struct ps2dev *, u8); - -struct ps2dev { - struct serio *serio; - struct mutex cmd_mutex; - wait_queue_head_t wait; - long unsigned int flags; - u8 cmdbuf[8]; - u8 cmdcnt; - u8 nak; - ps2_pre_receive_handler_t pre_receive_handler; - ps2_receive_handler_t receive_handler; -}; - -struct input_id { - __u16 bustype; - __u16 vendor; - __u16 product; - __u16 version; -}; - -struct input_absinfo { - __s32 value; - __s32 minimum; - __s32 maximum; - __s32 fuzz; - __s32 flat; - __s32 resolution; -}; - -struct input_keymap_entry { - __u8 flags; - __u8 len; - __u16 index; - __u32 keycode; - __u8 scancode[32]; -}; - -struct ff_replay { - __u16 length; - __u16 delay; -}; - -struct ff_trigger { - __u16 button; - __u16 interval; -}; - -struct ff_envelope { - __u16 attack_length; - __u16 attack_level; - __u16 fade_length; - __u16 fade_level; -}; - -struct ff_constant_effect { - __s16 level; - struct ff_envelope envelope; -}; - -struct ff_ramp_effect { - __s16 start_level; - __s16 end_level; - struct ff_envelope envelope; -}; - -struct ff_condition_effect { - __u16 right_saturation; - __u16 left_saturation; - __s16 right_coeff; - __s16 left_coeff; - __u16 deadband; - __s16 center; -}; - -struct ff_periodic_effect { - __u16 waveform; - __u16 period; - __s16 magnitude; - __s16 offset; - __u16 phase; - struct ff_envelope envelope; - __u32 custom_len; - __s16 *custom_data; -}; - -struct ff_rumble_effect { - __u16 strong_magnitude; - __u16 weak_magnitude; -}; - -struct ff_effect { - __u16 type; - __s16 id; - __u16 direction; - struct ff_trigger trigger; - struct ff_replay replay; - union { - struct ff_constant_effect constant; - struct ff_ramp_effect ramp; - struct ff_periodic_effect periodic; - struct ff_condition_effect condition[2]; - struct ff_rumble_effect rumble; - } u; -}; - -struct input_device_id { - kernel_ulong_t flags; - __u16 bustype; - __u16 vendor; - __u16 product; - __u16 version; - kernel_ulong_t evbit[1]; - kernel_ulong_t keybit[12]; - kernel_ulong_t relbit[1]; - kernel_ulong_t absbit[1]; - kernel_ulong_t mscbit[1]; - kernel_ulong_t ledbit[1]; - kernel_ulong_t sndbit[1]; - kernel_ulong_t ffbit[2]; - kernel_ulong_t swbit[1]; - kernel_ulong_t propbit[1]; - kernel_ulong_t driver_info; -}; - -struct input_value { - __u16 type; - __u16 code; - __s32 value; -}; - -enum input_clock_type { - INPUT_CLK_REAL = 0, - INPUT_CLK_MONO = 1, - INPUT_CLK_BOOT = 2, - INPUT_CLK_MAX = 3, -}; - -struct ff_device; - -struct input_dev_poller; - -struct input_mt; - -struct input_handle; - -struct input_dev { - const char *name; - const char *phys; - const char *uniq; - struct input_id id; - long unsigned int propbit[1]; - long unsigned int evbit[1]; - long unsigned int keybit[12]; - long unsigned int relbit[1]; - long unsigned int absbit[1]; - long unsigned int mscbit[1]; - long unsigned int ledbit[1]; - long unsigned int sndbit[1]; - long unsigned int ffbit[2]; - long unsigned int swbit[1]; - unsigned int hint_events_per_packet; - unsigned int keycodemax; - unsigned int keycodesize; - void *keycode; - int (*setkeycode)(struct input_dev *, const struct input_keymap_entry *, unsigned int *); - int (*getkeycode)(struct input_dev *, struct input_keymap_entry *); - struct ff_device *ff; - struct input_dev_poller *poller; - unsigned int repeat_key; - struct timer_list timer; - int rep[2]; - struct input_mt *mt; - struct input_absinfo *absinfo; - long unsigned int key[12]; - long unsigned int led[1]; - long unsigned int snd[1]; - long unsigned int sw[1]; - int (*open)(struct input_dev *); - void (*close)(struct input_dev *); - int (*flush)(struct input_dev *, struct file *); - int (*event)(struct input_dev *, unsigned int, unsigned int, int); - struct input_handle *grab; - spinlock_t event_lock; - struct mutex mutex; - unsigned int users; - bool going_away; - struct device dev; - struct list_head h_list; - struct list_head node; - unsigned int num_vals; - unsigned int max_vals; - struct input_value *vals; - bool devres_managed; - ktime_t timestamp[3]; - bool inhibited; -}; - -struct ff_device { - int (*upload)(struct input_dev *, struct ff_effect *, struct ff_effect *); - int (*erase)(struct input_dev *, int); - int (*playback)(struct input_dev *, int, int); - void (*set_gain)(struct input_dev *, u16); - void (*set_autocenter)(struct input_dev *, u16); - void (*destroy)(struct ff_device *); - void *private; - long unsigned int ffbit[2]; - struct mutex mutex; - int max_effects; - struct ff_effect *effects; - struct file *effect_owners[0]; -}; - -struct input_handler; - -struct input_handle { - void *private; - int open; - const char *name; - struct input_dev *dev; - struct input_handler *handler; - unsigned int (*handle_events)(struct input_handle *, struct input_value *, unsigned int); - struct list_head d_node; - struct list_head h_node; -}; - -struct input_handler { - void *private; - void (*event)(struct input_handle *, unsigned int, unsigned int, int); - unsigned int (*events)(struct input_handle *, struct input_value *, unsigned int); - bool (*filter)(struct input_handle *, unsigned int, unsigned int, int); - bool (*match)(struct input_handler *, struct input_dev *); - int (*connect)(struct input_handler *, struct input_dev *, const struct input_device_id *); - void (*disconnect)(struct input_handle *); - void (*start)(struct input_handle *); - bool passive_observer; - bool legacy_minors; - int minor; - const char *name; - const struct input_device_id *id_table; - struct list_head h_list; - struct list_head node; -}; - -typedef __u64 timeu64_t; - -typedef int (*nvmem_reg_read_t)(void *, unsigned int, void *, size_t); - -typedef int (*nvmem_reg_write_t)(void *, unsigned int, void *, size_t); - -typedef int (*nvmem_cell_post_process_t)(void *, const char *, int, unsigned int, void *, size_t); - -enum nvmem_type { - NVMEM_TYPE_UNKNOWN = 0, - NVMEM_TYPE_EEPROM = 1, - NVMEM_TYPE_OTP = 2, - NVMEM_TYPE_BATTERY_BACKED = 3, - NVMEM_TYPE_FRAM = 4, -}; - -struct nvmem_keepout { - unsigned int start; - unsigned int end; - unsigned char value; -}; - -struct nvmem_cell_info { - const char *name; - unsigned int offset; - size_t raw_len; - unsigned int bytes; - unsigned int bit_offset; - unsigned int nbits; - struct device_node *np; - nvmem_cell_post_process_t read_post_process; - void *priv; -}; - -struct nvmem_device; - -struct nvmem_layout; - -struct nvmem_config { - struct device *dev; - const char *name; - int id; - struct module *owner; - const struct nvmem_cell_info *cells; - int ncells; - bool add_legacy_fixed_of_cells; - void (*fixup_dt_cell_info)(struct nvmem_device *, struct nvmem_cell_info *); - const struct nvmem_keepout *keepout; - unsigned int nkeepout; - enum nvmem_type type; - bool read_only; - bool root_only; - bool ignore_wp; - struct nvmem_layout *layout; - struct device_node *of_node; - nvmem_reg_read_t reg_read; - nvmem_reg_write_t reg_write; - int size; - int word_size; - int stride; - void *priv; - bool compat; - struct device *base_dev; -}; - -struct nvmem_layout { - struct device dev; - struct nvmem_device *nvmem; - int (*add_cells)(struct nvmem_layout *); -}; - -struct rtc_wkalrm { - unsigned char enabled; - unsigned char pending; - struct rtc_time time; -}; - -struct rtc_param { - __u64 param; - union { - __u64 uvalue; - __s64 svalue; - __u64 ptr; - }; - __u32 index; - __u32 __pad; -}; - -struct rtc_class_ops { - int (*ioctl)(struct device *, unsigned int, long unsigned int); - int (*read_time)(struct device *, struct rtc_time *); - int (*set_time)(struct device *, struct rtc_time *); - int (*read_alarm)(struct device *, struct rtc_wkalrm *); - int (*set_alarm)(struct device *, struct rtc_wkalrm *); - int (*proc)(struct device *, struct seq_file *); - int (*alarm_irq_enable)(struct device *, unsigned int); - int (*read_offset)(struct device *, long int *); - int (*set_offset)(struct device *, long int); - int (*param_get)(struct device *, struct rtc_param *); - int (*param_set)(struct device *, struct rtc_param *); -}; - -struct rtc_timer { - struct timerqueue_node node; - ktime_t period; - void (*func)(struct rtc_device *); - struct rtc_device *rtc; - int enabled; -}; - -struct rtc_device { - struct device dev; - struct module *owner; - int id; - const struct rtc_class_ops *ops; - struct mutex ops_lock; - struct cdev char_dev; - long unsigned int flags; - long unsigned int irq_data; - spinlock_t irq_lock; - wait_queue_head_t irq_queue; - struct fasync_struct *async_queue; - int irq_freq; - int max_user_freq; - struct timerqueue_head timerqueue; - struct rtc_timer aie_timer; - struct rtc_timer uie_rtctimer; - struct hrtimer pie_timer; - int pie_enabled; - struct work_struct irqwork; - long unsigned int set_offset_nsec; - long unsigned int features[1]; - time64_t range_min; - timeu64_t range_max; - timeu64_t alarm_offset_max; - time64_t start_secs; - time64_t offset_secs; - bool set_start_time; -}; - -struct trace_event_raw_i2c_slave { - struct trace_entry ent; - int adapter_nr; - int ret; - __u16 addr; - __u16 len; - enum i2c_slave_event event; - __u8 buf[1]; - char __data[0]; -}; - -struct trace_event_data_offsets_i2c_slave {}; - -typedef void (*btf_trace_i2c_slave)(void *, const struct i2c_client *, enum i2c_slave_event, __u8 *, int); - -enum { - POWER_SUPPLY_STATUS_UNKNOWN = 0, - POWER_SUPPLY_STATUS_CHARGING = 1, - POWER_SUPPLY_STATUS_DISCHARGING = 2, - POWER_SUPPLY_STATUS_NOT_CHARGING = 3, - POWER_SUPPLY_STATUS_FULL = 4, -}; - -struct power_supply_led_trigger { - struct led_trigger trig; - struct power_supply *psy; -}; - -enum thermal_device_mode { - THERMAL_DEVICE_DISABLED = 0, - THERMAL_DEVICE_ENABLED = 1, -}; - -enum thermal_trip_type { - THERMAL_TRIP_ACTIVE = 0, - THERMAL_TRIP_PASSIVE = 1, - THERMAL_TRIP_HOT = 2, - THERMAL_TRIP_CRITICAL = 3, -}; - -enum thermal_trend { - THERMAL_TREND_STABLE = 0, - THERMAL_TREND_RAISING = 1, - THERMAL_TREND_DROPPING = 2, -}; - -enum thermal_notify_event { - THERMAL_EVENT_UNSPECIFIED = 0, - THERMAL_EVENT_TEMP_SAMPLE = 1, - THERMAL_TRIP_VIOLATED = 2, - THERMAL_TRIP_CHANGED = 3, - THERMAL_DEVICE_DOWN = 4, - THERMAL_DEVICE_UP = 5, - THERMAL_DEVICE_POWER_CAPABILITY_CHANGED = 6, - THERMAL_TABLE_CHANGED = 7, - THERMAL_EVENT_KEEP_ALIVE = 8, - THERMAL_TZ_BIND_CDEV = 9, - THERMAL_TZ_UNBIND_CDEV = 10, - THERMAL_INSTANCE_WEIGHT_CHANGED = 11, - THERMAL_TZ_RESUME = 12, - THERMAL_TZ_ADD_THRESHOLD = 13, - THERMAL_TZ_DEL_THRESHOLD = 14, - THERMAL_TZ_FLUSH_THRESHOLDS = 15, -}; - -struct thermal_trip { - int temperature; - int hysteresis; - enum thermal_trip_type type; - u8 flags; - void *priv; -}; - -struct cooling_spec { - long unsigned int upper; - long unsigned int lower; - unsigned int weight; -}; - -struct thermal_zone_device_ops { - bool (*should_bind)(struct thermal_zone_device *, const struct thermal_trip *, struct thermal_cooling_device *, struct cooling_spec *); - int (*get_temp)(struct thermal_zone_device *, int *); - int (*set_trips)(struct thermal_zone_device *, int, int); - int (*change_mode)(struct thermal_zone_device *, enum thermal_device_mode); - int (*set_trip_temp)(struct thermal_zone_device *, const struct thermal_trip *, int); - int (*get_crit_temp)(struct thermal_zone_device *, int *); - int (*set_emul_temp)(struct thermal_zone_device *, int); - int (*get_trend)(struct thermal_zone_device *, const struct thermal_trip *, enum thermal_trend *); - void (*hot)(struct thermal_zone_device *); - void (*critical)(struct thermal_zone_device *); -}; - -struct thermal_attr { - struct device_attribute attr; - char name[20]; -}; - -struct thermal_trip_attrs { - struct thermal_attr type; - struct thermal_attr temp; - struct thermal_attr hyst; -}; - -struct thermal_trip_desc { - struct thermal_trip trip; - struct thermal_trip_attrs trip_attrs; - struct list_head list_node; - struct list_head thermal_instances; - int threshold; -}; - -struct thermal_zone_params; - -struct thermal_governor; - -struct thermal_zone_device { - int id; - char type[20]; - struct device device; - struct completion removal; - struct completion resume; - struct attribute_group trips_attribute_group; - struct list_head trips_high; - struct list_head trips_reached; - struct list_head trips_invalid; - enum thermal_device_mode mode; - void *devdata; - int num_trips; - long unsigned int passive_delay_jiffies; - long unsigned int polling_delay_jiffies; - long unsigned int recheck_delay_jiffies; - int temperature; - int last_temperature; - int emul_temperature; - int passive; - int prev_low_trip; - int prev_high_trip; - struct thermal_zone_device_ops ops; - struct thermal_zone_params *tzp; - struct thermal_governor *governor; - void *governor_data; - struct ida ida; - struct mutex lock; - struct list_head node; - struct delayed_work poll_queue; - enum thermal_notify_event notify_event; - u8 state; - struct list_head user_thresholds; - struct thermal_trip_desc trips[0]; -}; - -typedef struct thermal_cooling_device *class_cooling_dev_t; - -struct thermal_zone_params { - const char *governor_name; - bool no_hwmon; - u32 sustainable_power; - s32 k_po; - s32 k_pu; - s32 k_i; - s32 k_d; - s32 integral_cutoff; - int slope; - int offset; -}; - -struct thermal_governor { - const char *name; - int (*bind_to_tz)(struct thermal_zone_device *); - void (*unbind_from_tz)(struct thermal_zone_device *); - void (*trip_crossed)(struct thermal_zone_device *, const struct thermal_trip *, bool); - void (*manage)(struct thermal_zone_device *); - void (*update_tz)(struct thermal_zone_device *, enum thermal_notify_event); - struct list_head governor_list; -}; - -typedef struct thermal_zone_device *class_thermal_zone_t; - -struct thermal_instance { - int id; - char name[20]; - struct thermal_cooling_device *cdev; - const struct thermal_trip *trip; - bool initialized; - long unsigned int upper; - long unsigned int lower; - long unsigned int target; - char attr_name[20]; - struct device_attribute attr; - char weight_attr_name[20]; - struct device_attribute weight_attr; - struct list_head trip_node; - struct list_head cdev_node; - unsigned int weight; - bool upper_no_limit; -}; - -struct cooling_dev_stats { - spinlock_t lock; - unsigned int total_trans; - long unsigned int state; - ktime_t last_time; - ktime_t *time_in_state; - unsigned int *trans_table; -}; - -struct user_threshold { - struct list_head list_node; - int temperature; - int direction; -}; - -struct thermal_hwmon_device { - char type[20]; - struct device *device; - int count; - struct list_head tz_list; - struct list_head node; -}; - -struct thermal_hwmon_attr { - struct device_attribute attr; - char name[16]; -}; - -struct thermal_hwmon_temp { - struct list_head hwmon_node; - struct thermal_zone_device *tz; - struct thermal_hwmon_attr temp_input; - struct thermal_hwmon_attr temp_crit; -}; - -struct watchdog_info { - __u32 options; - __u32 firmware_version; - __u8 identity[32]; -}; - -struct watchdog_device; - -struct watchdog_ops { - struct module *owner; - int (*start)(struct watchdog_device *); - int (*stop)(struct watchdog_device *); - int (*ping)(struct watchdog_device *); - unsigned int (*status)(struct watchdog_device *); - int (*set_timeout)(struct watchdog_device *, unsigned int); - int (*set_pretimeout)(struct watchdog_device *, unsigned int); - unsigned int (*get_timeleft)(struct watchdog_device *); - int (*restart)(struct watchdog_device *, long unsigned int, void *); - long int (*ioctl)(struct watchdog_device *, unsigned int, long unsigned int); -}; - -struct watchdog_governor; - -struct watchdog_core_data; - -struct watchdog_device { - int id; - struct device *parent; - const struct attribute_group **groups; - const struct watchdog_info *info; - const struct watchdog_ops *ops; - const struct watchdog_governor *gov; - unsigned int bootstatus; - unsigned int timeout; - unsigned int pretimeout; - unsigned int min_timeout; - unsigned int max_timeout; - unsigned int min_hw_heartbeat_ms; - unsigned int max_hw_heartbeat_ms; - struct notifier_block reboot_nb; - struct notifier_block restart_nb; - struct notifier_block pm_nb; - void *driver_data; - struct watchdog_core_data *wd_data; - long unsigned int status; - struct list_head deferred; -}; - -struct watchdog_governor { - const char name[20]; - void (*pretimeout)(struct watchdog_device *); -}; - -struct watchdog_core_data { - struct device dev; - struct cdev cdev; - struct watchdog_device *wdd; - struct mutex lock; - ktime_t last_keepalive; - ktime_t last_hw_keepalive; - ktime_t open_deadline; - struct hrtimer timer; - struct kthread_work work; - long unsigned int status; -}; - -struct trace_event_raw_watchdog_template { - struct trace_entry ent; - int id; - int err; - char __data[0]; -}; - -struct trace_event_raw_watchdog_set_timeout { - struct trace_entry ent; - int id; - unsigned int timeout; - int err; - char __data[0]; -}; - -struct trace_event_data_offsets_watchdog_template {}; - -struct trace_event_data_offsets_watchdog_set_timeout {}; - -typedef void (*btf_trace_watchdog_start)(void *, struct watchdog_device *, int); - -typedef void (*btf_trace_watchdog_ping)(void *, struct watchdog_device *, int); - -typedef void (*btf_trace_watchdog_stop)(void *, struct watchdog_device *, int); - -typedef void (*btf_trace_watchdog_set_timeout)(void *, struct watchdog_device *, unsigned int, int); - -enum { - PERCPU_REF_INIT_ATOMIC = 1, - PERCPU_REF_INIT_DEAD = 2, - PERCPU_REF_ALLOW_REINIT = 4, -}; - -struct mdp_device_descriptor_s { - __u32 number; - __u32 major; - __u32 minor; - __u32 raid_disk; - __u32 state; - __u32 reserved[27]; -}; - -typedef struct mdp_device_descriptor_s mdp_disk_t; - -struct mdp_superblock_s { - __u32 md_magic; - __u32 major_version; - __u32 minor_version; - __u32 patch_version; - __u32 gvalid_words; - __u32 set_uuid0; - __u32 ctime; - __u32 level; - __u32 size; - __u32 nr_disks; - __u32 raid_disks; - __u32 md_minor; - __u32 not_persistent; - __u32 set_uuid1; - __u32 set_uuid2; - __u32 set_uuid3; - __u32 gstate_creserved[16]; - __u32 utime; - __u32 state; - __u32 active_disks; - __u32 working_disks; - __u32 failed_disks; - __u32 spare_disks; - __u32 sb_csum; - __u32 events_lo; - __u32 events_hi; - __u32 cp_events_lo; - __u32 cp_events_hi; - __u32 recovery_cp; - __u64 reshape_position; - __u32 new_level; - __u32 delta_disks; - __u32 new_layout; - __u32 new_chunk; - __u32 gstate_sreserved[14]; - __u32 layout; - __u32 chunk_size; - __u32 root_pv; - __u32 root_block; - __u32 pstate_reserved[60]; - mdp_disk_t disks[27]; - __u32 reserved[0]; - mdp_disk_t this_disk; -}; - -typedef struct mdp_superblock_s mdp_super_t; - -struct mdp_superblock_1 { - __le32 magic; - __le32 major_version; - __le32 feature_map; - __le32 pad0; - __u8 set_uuid[16]; - char set_name[32]; - __le64 ctime; - __le32 level; - __le32 layout; - __le64 size; - __le32 chunksize; - __le32 raid_disks; - union { - __le32 bitmap_offset; - struct { - __le16 offset; - __le16 size; - } ppl; - }; - __le32 new_level; - __le64 reshape_position; - __le32 delta_disks; - __le32 new_layout; - __le32 new_chunk; - __le32 new_offset; - __le64 data_offset; - __le64 data_size; - __le64 super_offset; - union { - __le64 recovery_offset; - __le64 journal_tail; - }; - __le32 dev_number; - __le32 cnt_corrected_read; - __u8 device_uuid[16]; - __u8 devflags; - __u8 bblog_shift; - __le16 bblog_size; - __le32 bblog_offset; - __le64 utime; - __le64 events; - __le64 resync_offset; - __le32 sb_csum; - __le32 max_dev; - __u8 pad3[32]; - __le16 dev_roles[0]; -}; - -struct mdu_version_s { - int major; - int minor; - int patchlevel; -}; - -typedef struct mdu_version_s mdu_version_t; - -struct mdu_array_info_s { - int major_version; - int minor_version; - int patch_version; - unsigned int ctime; - int level; - int size; - int nr_disks; - int raid_disks; - int md_minor; - int not_persistent; - unsigned int utime; - int state; - int active_disks; - int working_disks; - int failed_disks; - int spare_disks; - int layout; - int chunk_size; -}; - -typedef struct mdu_array_info_s mdu_array_info_t; - -struct mdu_disk_info_s { - int number; - int major; - int minor; - int raid_disk; - int state; -}; - -typedef struct mdu_disk_info_s mdu_disk_info_t; - -struct mdu_bitmap_file_s { - char pathname[4096]; -}; - -typedef struct mdu_bitmap_file_s mdu_bitmap_file_t; - -enum md_submodule_type { - MD_PERSONALITY = 0, - MD_CLUSTER = 1, - MD_BITMAP = 2, -}; - -enum md_submodule_id { - ID_LINEAR = -1, - ID_RAID0 = 0, - ID_RAID1 = 1, - ID_RAID4 = 4, - ID_RAID5 = 5, - ID_RAID6 = 6, - ID_RAID10 = 10, - ID_CLUSTER = 11, - ID_BITMAP = 12, - ID_LLBITMAP = 13, -}; - -struct md_submodule_head { - enum md_submodule_type type; - enum md_submodule_id id; - const char *name; - struct module *owner; -}; - -enum sync_action { - ACTION_RESYNC = 0, - ACTION_RECOVER = 1, - ACTION_CHECK = 2, - ACTION_REPAIR = 3, - ACTION_RESHAPE = 4, - ACTION_FROZEN = 5, - ACTION_IDLE = 6, - NR_SYNC_ACTIONS = 7, -}; - -struct serial_in_rdev { - struct rb_root_cached serial_rb; - spinlock_t serial_lock; - wait_queue_head_t serial_io_wait; -}; - -struct mddev; - -struct md_rdev { - struct list_head same_set; - sector_t sectors; - struct mddev *mddev; - long unsigned int last_events; - struct block_device *meta_bdev; - struct block_device *bdev; - struct file *bdev_file; - struct page *sb_page; - struct page *bb_page; - int sb_loaded; - __u64 sb_events; - sector_t data_offset; - sector_t new_data_offset; - sector_t sb_start; - int sb_size; - int preferred_minor; - struct kobject kobj; - long unsigned int flags; - wait_queue_head_t blocked_wait; - int desc_nr; - int raid_disk; - int new_raid_disk; - int saved_raid_disk; - union { - sector_t recovery_offset; - sector_t journal_tail; - }; - atomic_t nr_pending; - atomic_t read_errors; - time64_t last_read_error; - atomic_t corrected_errors; - struct serial_in_rdev *serial; - struct kernfs_node *sysfs_state; - struct kernfs_node *sysfs_unack_badblocks; - struct kernfs_node *sysfs_badblocks; - struct badblocks badblocks; - struct { - short int offset; - unsigned int size; - sector_t sector; - } ppl; -}; - -struct md_cluster_info; - -struct md_personality; - -struct md_thread; - -struct bitmap_operations; - -struct md_cluster_operations; - -struct mddev { - void *private; - struct md_personality *pers; - dev_t unit; - int md_minor; - struct list_head disks; - long unsigned int flags; - long unsigned int sb_flags; - int suspended; - struct mutex suspend_mutex; - struct percpu_ref active_io; - int ro; - int sysfs_active; - struct gendisk *gendisk; - struct gendisk *dm_gendisk; - struct kobject kobj; - int hold_active; - int major_version; - int minor_version; - int patch_version; - int persistent; - int external; - char metadata_type[17]; - int chunk_sectors; - time64_t ctime; - time64_t utime; - int level; - int layout; - char clevel[16]; - int raid_disks; - int max_disks; - sector_t dev_sectors; - sector_t array_sectors; - int external_size; - __u64 events; - int can_decrease_events; - char uuid[16]; - sector_t reshape_position; - int delta_disks; - int new_level; - int new_layout; - int new_chunk_sectors; - int reshape_backwards; - struct md_thread *thread; - struct md_thread *sync_thread; - enum sync_action last_sync_action; - sector_t curr_resync; - sector_t curr_resync_completed; - long unsigned int resync_mark; - sector_t resync_mark_cnt; - sector_t curr_mark_cnt; - sector_t resync_max_sectors; - atomic64_t resync_mismatches; - sector_t suspend_lo; - sector_t suspend_hi; - int sync_speed_min; - int sync_speed_max; - int sync_io_depth; - int parallel_resync; - int ok_start_degraded; - long unsigned int recovery; - int recovery_disabled; - int in_sync; - struct mutex open_mutex; - struct mutex reconfig_mutex; - atomic_t active; - atomic_t openers; - int changed; - int degraded; - long unsigned int normal_io_events; - atomic_t recovery_active; - wait_queue_head_t recovery_wait; - sector_t resync_offset; - sector_t resync_min; - sector_t resync_max; - struct kernfs_node *sysfs_state; - struct kernfs_node *sysfs_action; - struct kernfs_node *sysfs_completed; - struct kernfs_node *sysfs_degraded; - struct kernfs_node *sysfs_level; - struct work_struct del_work; - struct work_struct sync_work; - spinlock_t lock; - wait_queue_head_t sb_wait; - atomic_t pending_writes; - unsigned int safemode; - unsigned int safemode_delay; - struct timer_list safemode_timer; - struct percpu_ref writes_pending; - int sync_checkers; - void *bitmap; - struct bitmap_operations *bitmap_ops; - struct { - struct file *file; - loff_t offset; - long unsigned int space; - loff_t default_offset; - long unsigned int default_space; - struct mutex mutex; - long unsigned int chunksize; - long unsigned int daemon_sleep; - long unsigned int max_write_behind; - int external; - int nodes; - char cluster_name[64]; - } bitmap_info; - atomic_t max_corr_read_errors; - struct list_head all_mddevs; - const struct attribute_group *to_remove; - struct bio_set bio_set; - struct bio_set sync_set; - struct bio_set io_clone_set; - struct work_struct event_work; - mempool_t *serial_info_pool; - void (*sync_super)(struct mddev *, struct md_rdev *); - struct md_cluster_info *cluster_info; - struct md_cluster_operations *cluster_ops; - unsigned int good_device_nr; - unsigned int noio_flag; - struct list_head deleting; - atomic_t sync_seq; - bool has_superblocks: 1; - bool fail_last_dev: 1; - bool serialize_policy: 1; -}; - -enum flag_bits { - Faulty = 0, - In_sync = 1, - Bitmap_sync = 2, - WriteMostly = 3, - AutoDetected = 4, - Blocked = 5, - WriteErrorSeen = 6, - FaultRecorded = 7, - BlockedBadBlocks = 8, - WantReplacement = 9, - Replacement = 10, - Candidate = 11, - Journal = 12, - ClusterRemove = 13, - ExternalBbl = 14, - FailFast = 15, - LastDev = 16, - CollisionCheck = 17, - Nonrot = 18, -}; - -enum mddev_flags { - MD_ARRAY_FIRST_USE = 0, - MD_CLOSING = 1, - MD_JOURNAL_CLEAN = 2, - MD_HAS_JOURNAL = 3, - MD_CLUSTER_RESYNC_LOCKED = 4, - MD_FAILFAST_SUPPORTED = 5, - MD_HAS_PPL = 6, - MD_HAS_MULTIPLE_PPLS = 7, - MD_NOT_READY = 8, - MD_BROKEN = 9, - MD_DO_DELETE = 10, - MD_DELETED = 11, -}; - -enum mddev_sb_flags { - MD_SB_CHANGE_DEVS = 0, - MD_SB_CHANGE_CLEAN = 1, - MD_SB_CHANGE_PENDING = 2, - MD_SB_NEED_REWRITE = 3, -}; - -enum { - MD_RESYNC_NONE = 0, - MD_RESYNC_YIELDED = 1, - MD_RESYNC_DELAYED = 2, - MD_RESYNC_ACTIVE = 3, -}; - -struct md_personality { - struct md_submodule_head head; - bool (*make_request)(struct mddev *, struct bio *); - int (*run)(struct mddev *); - int (*start)(struct mddev *); - void (*free)(struct mddev *, void *); - void (*status)(struct seq_file *, struct mddev *); - void (*error_handler)(struct mddev *, struct md_rdev *); - int (*hot_add_disk)(struct mddev *, struct md_rdev *); - int (*hot_remove_disk)(struct mddev *, struct md_rdev *); - int (*spare_active)(struct mddev *); - sector_t (*sync_request)(struct mddev *, sector_t, sector_t, int *); - int (*resize)(struct mddev *, sector_t); - sector_t (*size)(struct mddev *, sector_t, int); - int (*check_reshape)(struct mddev *); - int (*start_reshape)(struct mddev *); - void (*finish_reshape)(struct mddev *); - void (*update_reshape_pos)(struct mddev *); - void (*prepare_suspend)(struct mddev *); - void (*quiesce)(struct mddev *, int); - void * (*takeover)(struct mddev *); - int (*change_consistency_policy)(struct mddev *, const char *); - void (*bitmap_sector)(struct mddev *, sector_t *, long unsigned int *); -}; - -struct md_thread { - void (*run)(struct md_thread *); - struct mddev *mddev; - wait_queue_head_t wqueue; - long unsigned int flags; - struct task_struct *tsk; - long unsigned int timeout; - void *private; -}; - -struct md_bitmap_stats; - -struct bitmap_operations { - bool (*enabled)(struct mddev *); - int (*create)(struct mddev *); - int (*resize)(struct mddev *, sector_t, int, bool); - int (*load)(struct mddev *); - void (*destroy)(struct mddev *); - void (*flush)(struct mddev *); - void (*write_all)(struct mddev *); - void (*dirty_bits)(struct mddev *, long unsigned int, long unsigned int); - void (*unplug)(struct mddev *, bool); - void (*daemon_work)(struct mddev *); - void (*start_behind_write)(struct mddev *); - void (*end_behind_write)(struct mddev *); - void (*wait_behind_writes)(struct mddev *); - void (*start_write)(struct mddev *, sector_t, long unsigned int); - void (*end_write)(struct mddev *, sector_t, long unsigned int); - bool (*start_sync)(struct mddev *, sector_t, sector_t *, bool); - void (*end_sync)(struct mddev *, sector_t, sector_t *); - void (*cond_end_sync)(struct mddev *, sector_t, bool); - void (*close_sync)(struct mddev *); - void (*update_sb)(void *); - int (*get_stats)(void *, struct md_bitmap_stats *); - void (*sync_with_cluster)(struct mddev *, sector_t, sector_t, sector_t, sector_t); - void * (*get_from_slot)(struct mddev *, int); - int (*copy_from_slot)(struct mddev *, int, sector_t *, sector_t *, bool); - void (*set_pages)(void *, long unsigned int); - void (*free)(void *); -}; - -struct md_cluster_operations { - struct md_submodule_head head; - int (*join)(struct mddev *, int); - int (*leave)(struct mddev *); - int (*slot_number)(struct mddev *); - int (*resync_info_update)(struct mddev *, sector_t, sector_t); - int (*resync_start_notify)(struct mddev *); - int (*resync_status_get)(struct mddev *); - void (*resync_info_get)(struct mddev *, sector_t *, sector_t *); - int (*metadata_update_start)(struct mddev *); - int (*metadata_update_finish)(struct mddev *); - void (*metadata_update_cancel)(struct mddev *); - int (*resync_start)(struct mddev *); - int (*resync_finish)(struct mddev *); - int (*area_resyncing)(struct mddev *, int, sector_t, sector_t); - int (*add_new_disk)(struct mddev *, struct md_rdev *); - void (*add_new_disk_cancel)(struct mddev *); - int (*new_disk_ack)(struct mddev *, bool); - int (*remove_disk)(struct mddev *, struct md_rdev *); - void (*load_bitmaps)(struct mddev *, int); - int (*gather_bitmaps)(struct md_rdev *); - int (*resize_bitmaps)(struct mddev *, sector_t, sector_t); - int (*lock_all_bitmaps)(struct mddev *); - void (*unlock_all_bitmaps)(struct mddev *); - void (*update_size)(struct mddev *, sector_t); -}; - -enum recovery_flags { - MD_RECOVERY_NEEDED = 0, - MD_RECOVERY_RUNNING = 1, - MD_RECOVERY_INTR = 2, - MD_RECOVERY_DONE = 3, - MD_RECOVERY_FROZEN = 4, - MD_RECOVERY_WAIT = 5, - MD_RECOVERY_ERROR = 6, - MD_RECOVERY_SYNC = 7, - MD_RECOVERY_REQUESTED = 8, - MD_RECOVERY_CHECK = 9, - MD_RECOVERY_RECOVER = 10, - MD_RECOVERY_RESHAPE = 11, - MD_RESYNCING_REMOTE = 12, -}; - -enum md_ro_state { - MD_RDWR = 0, - MD_RDONLY = 1, - MD_AUTO_READ = 2, - MD_MAX_STATE = 3, -}; - -struct md_sysfs_entry { - struct attribute attr; - ssize_t (*show)(struct mddev *, char *); - ssize_t (*store)(struct mddev *, const char *, size_t); -}; - -struct md_io_clone { - struct mddev *mddev; - struct bio *orig_bio; - long unsigned int start_time; - sector_t offset; - long unsigned int sectors; - struct bio bio_clone; -}; - -struct md_bitmap_stats { - u64 events_cleared; - int behind_writes; - bool behind_wait; - long unsigned int missing_pages; - long unsigned int file_pages; - long unsigned int sync_size; - long unsigned int pages; - struct file *file; -}; - -struct super_type { - char *name; - struct module *owner; - int (*load_super)(struct md_rdev *, struct md_rdev *, int); - int (*validate_super)(struct mddev *, struct md_rdev *, struct md_rdev *); - void (*sync_super)(struct mddev *, struct md_rdev *); - long long unsigned int (*rdev_size_change)(struct md_rdev *, sector_t); - int (*allow_new_offset)(struct md_rdev *, long long unsigned int); -}; - -struct rdev_sysfs_entry { - struct attribute attr; - ssize_t (*show)(struct md_rdev *, char *); - ssize_t (*store)(struct md_rdev *, const char *, size_t); -}; - -enum array_state { - clear = 0, - inactive = 1, - suspended = 2, - readonly = 3, - read_auto = 4, - clean = 5, - active = 6, - write_pending = 7, - active_idle = 8, - broken = 9, - bad_word = 10, -}; - -struct detected_devices_node { - struct list_head list; - dev_t dev; -}; - -typedef u16 blk_short_t; - -enum dm_queue_mode { - DM_TYPE_NONE = 0, - DM_TYPE_BIO_BASED = 1, - DM_TYPE_REQUEST_BASED = 2, - DM_TYPE_DAX_BIO_BASED = 3, -}; - -typedef enum { - STATUSTYPE_INFO = 0, - STATUSTYPE_TABLE = 1, - STATUSTYPE_IMA = 2, -} status_type_t; - -union map_info { - void *ptr; -}; - -struct dm_target; - -typedef int (*dm_ctr_fn)(struct dm_target *, unsigned int, char **); - -struct dm_table; - -struct target_type; - -struct dm_target { - struct dm_table *table; - struct target_type *type; - sector_t begin; - sector_t len; - uint32_t max_io_len; - unsigned int num_flush_bios; - unsigned int num_discard_bios; - unsigned int num_secure_erase_bios; - unsigned int num_write_zeroes_bios; - unsigned int per_io_data_size; - void *private; - char *error; - bool flush_supported: 1; - bool discards_supported: 1; - bool zone_reset_all_supported: 1; - bool max_discard_granularity: 1; - bool limit_swap_bios: 1; - bool emulate_zone_append: 1; - bool accounts_remapped_io: 1; - bool needs_bio_set_dev: 1; - bool flush_bypasses_map: 1; - bool mempool_needs_integrity: 1; -}; - -typedef void (*dm_dtr_fn)(struct dm_target *); - -typedef int (*dm_map_fn)(struct dm_target *, struct bio *); - -typedef int (*dm_clone_and_map_request_fn)(struct dm_target *, struct request *, union map_info *, struct request **); - -typedef void (*dm_release_clone_request_fn)(struct request *, union map_info *); - -typedef int (*dm_endio_fn)(struct dm_target *, struct bio *, blk_status_t *); - -typedef int (*dm_request_endio_fn)(struct dm_target *, struct request *, blk_status_t, union map_info *); - -typedef void (*dm_presuspend_fn)(struct dm_target *); - -typedef void (*dm_presuspend_undo_fn)(struct dm_target *); - -typedef void (*dm_postsuspend_fn)(struct dm_target *); - -typedef int (*dm_preresume_fn)(struct dm_target *); - -typedef void (*dm_resume_fn)(struct dm_target *); - -typedef void (*dm_status_fn)(struct dm_target *, status_type_t, unsigned int, char *, unsigned int); - -typedef int (*dm_message_fn)(struct dm_target *, unsigned int, char **, char *, unsigned int); - -typedef int (*dm_prepare_ioctl_fn)(struct dm_target *, struct block_device **, unsigned int, long unsigned int, bool *); - -struct dm_report_zones_args; - -typedef int (*dm_report_zones_fn)(struct dm_target *, struct dm_report_zones_args *, unsigned int); - -struct dm_report_zones_args { - struct dm_target *tgt; - sector_t next_sector; - void *orig_data; - report_zones_cb orig_cb; - unsigned int zone_idx; - sector_t start; -}; - -struct dm_dev; - -typedef int (*iterate_devices_callout_fn)(struct dm_target *, struct dm_dev *, sector_t, sector_t, void *); - -struct dm_dev { - struct block_device *bdev; - struct file *bdev_file; - struct dax_device *dax_dev; - blk_mode_t mode; - char name[16]; -}; - -typedef int (*dm_iterate_devices_fn)(struct dm_target *, iterate_devices_callout_fn, void *); - -typedef void (*dm_io_hints_fn)(struct dm_target *, struct queue_limits *); - -typedef int (*dm_busy_fn)(struct dm_target *); - -typedef long int (*dm_dax_direct_access_fn)(struct dm_target *, long unsigned int, long int, enum dax_access_mode, void **, long unsigned int *); - -typedef int (*dm_dax_zero_page_range_fn)(struct dm_target *, long unsigned int, size_t); - -typedef size_t (*dm_dax_recovery_write_fn)(struct dm_target *, long unsigned int, void *, size_t, struct iov_iter *); - -struct target_type { - uint64_t features; - const char *name; - struct module *module; - unsigned int version[3]; - dm_ctr_fn ctr; - dm_dtr_fn dtr; - dm_map_fn map; - dm_clone_and_map_request_fn clone_and_map_rq; - dm_release_clone_request_fn release_clone_rq; - dm_endio_fn end_io; - dm_request_endio_fn rq_end_io; - dm_presuspend_fn presuspend; - dm_presuspend_undo_fn presuspend_undo; - dm_postsuspend_fn postsuspend; - dm_preresume_fn preresume; - dm_resume_fn resume; - dm_status_fn status; - dm_message_fn message; - dm_prepare_ioctl_fn prepare_ioctl; - dm_report_zones_fn report_zones; - dm_busy_fn busy; - dm_iterate_devices_fn iterate_devices; - dm_io_hints_fn io_hints; - dm_dax_direct_access_fn direct_access; - dm_dax_zero_page_range_fn dax_zero_page_range; - dm_dax_recovery_write_fn dax_recovery_write; - struct list_head list; -}; - -struct mapped_device; - -struct dm_md_mempools; - -struct dm_table { - struct mapped_device *md; - enum dm_queue_mode type; - unsigned int depth; - unsigned int counts[16]; - sector_t *index[16]; - unsigned int num_targets; - unsigned int num_allocated; - sector_t *highs; - struct dm_target *targets; - struct target_type *immutable_target_type; - bool integrity_supported: 1; - bool singleton: 1; - bool flush_bypasses_map: 1; - blk_mode_t mode; - struct list_head devices; - struct rw_semaphore devices_lock; - void (*event_fn)(void *); - void *event_context; - struct dm_md_mempools *mempools; - struct blk_crypto_profile *crypto_profile; -}; - -struct dm_arg_set { - unsigned int argc; - char **argv; -}; - -struct dm_arg { - unsigned int min; - unsigned int max; - char *error; -}; - -struct dm_stats_last_position; - -struct dm_stats { - struct mutex mutex; - struct list_head list; - struct dm_stats_last_position *last; - bool precise_timestamps; -}; - -struct dm_stats_aux { - bool merged; - long long unsigned int duration_ns; -}; - -struct dm_dev_internal { - struct list_head list; - refcount_t count; - struct dm_dev *dm_dev; -}; - -struct dm_ima_device_table_metadata { - char *device_metadata; - unsigned int device_metadata_len; - unsigned int num_targets; - char *hash; - unsigned int hash_len; -}; - -struct dm_ima_measurements { - struct dm_ima_device_table_metadata active_table; - struct dm_ima_device_table_metadata inactive_table; - unsigned int dm_version_str_len; -}; - -struct dm_kobject_holder { - struct kobject kobj; - struct completion completion; -}; - -struct dm_md_mempools { - struct bio_set bs; - struct bio_set io_bs; -}; - -struct dm_io; - -struct mapped_device { - struct mutex suspend_lock; - struct mutex table_devices_lock; - struct list_head table_devices; - void *map; - long unsigned int flags; - struct mutex type_lock; - enum dm_queue_mode type; - int numa_node_id; - struct request_queue *queue; - atomic_t holders; - atomic_t open_count; - struct dm_target *immutable_target; - struct target_type *immutable_target_type; - char name[16]; - struct gendisk *disk; - struct dax_device *dax_dev; - wait_queue_head_t wait; - long unsigned int *pending_io; - struct hd_geometry geometry; - struct workqueue_struct *wq; - struct work_struct work; - spinlock_t deferred_lock; - struct bio_list deferred; - struct work_struct requeue_work; - struct dm_io *requeue_list; - void *interface_ptr; - wait_queue_head_t eventq; - atomic_t event_nr; - atomic_t uevent_seq; - struct list_head uevent_list; - spinlock_t uevent_lock; - bool init_tio_pdu: 1; - struct blk_mq_tag_set *tag_set; - struct dm_stats stats; - unsigned int internal_suspend_count; - int swap_bios; - struct semaphore swap_bios_semaphore; - struct mutex swap_bios_lock; - struct dm_md_mempools *mempools; - struct dm_kobject_holder kobj_holder; - struct srcu_struct io_barrier; - unsigned int nr_zones; - void *zone_revalidate_map; - struct task_struct *revalidate_map_task; - struct dm_ima_measurements ima; -}; - -struct dm_target_io { - short unsigned int magic; - blk_short_t flags; - unsigned int target_bio_nr; - struct dm_io *io; - struct dm_target *ti; - unsigned int *len_ptr; - sector_t old_sector; - struct bio clone; -}; - -struct dm_io { - short unsigned int magic; - blk_short_t flags; - spinlock_t lock; - long unsigned int start_time; - void *data; - struct dm_io *next; - struct dm_stats_aux stats_aux; - blk_status_t status; - atomic_t io_count; - struct mapped_device *md; - struct bio *orig_bio; - unsigned int sector_offset; - unsigned int sectors; - struct dm_target_io tio; -}; - -struct dm_crypto_profile { - struct blk_crypto_profile profile; - struct mapped_device *md; -}; - -enum dm_wrappedkey_op { - DERIVE_SW_SECRET = 0, - IMPORT_KEY = 1, - GENERATE_KEY = 2, - PREPARE_KEY = 3, -}; - -struct dm_wrappedkey_op_args { - enum dm_wrappedkey_op op; - int err; - union { - struct { - const u8 *eph_key; - size_t eph_key_size; - u8 *sw_secret; - } derive_sw_secret; - struct { - const u8 *raw_key; - size_t raw_key_size; - u8 *lt_key; - } import_key; - struct { - u8 *lt_key; - } generate_key; - struct { - const u8 *lt_key; - size_t lt_key_size; - u8 *eph_key; - } prepare_key; - }; -}; - -enum suspend_mode { - PRESUSPEND = 0, - PRESUSPEND_UNDO = 1, - POSTSUSPEND = 2, -}; - -enum edac_dev_feat { - RAS_FEAT_SCRUB = 0, - RAS_FEAT_ECS = 1, - RAS_FEAT_MEM_REPAIR = 2, - RAS_FEAT_MAX = 3, -}; - -struct edac_scrub_ops { - int (*read_addr)(struct device *, void *, u64 *); - int (*read_size)(struct device *, void *, u64 *); - int (*write_addr)(struct device *, void *, u64); - int (*write_size)(struct device *, void *, u64); - int (*get_enabled_bg)(struct device *, void *, bool *); - int (*set_enabled_bg)(struct device *, void *, bool); - int (*get_min_cycle)(struct device *, void *, u32 *); - int (*get_max_cycle)(struct device *, void *, u32 *); - int (*get_cycle_duration)(struct device *, void *, u32 *); - int (*set_cycle_duration)(struct device *, void *, u32); -}; - -struct edac_ecs_ops { - int (*get_log_entry_type)(struct device *, void *, int, u32 *); - int (*set_log_entry_type)(struct device *, void *, int, u32); - int (*get_mode)(struct device *, void *, int, u32 *); - int (*set_mode)(struct device *, void *, int, u32); - int (*reset)(struct device *, void *, int, u32); - int (*get_threshold)(struct device *, void *, int, u32 *); - int (*set_threshold)(struct device *, void *, int, u32); -}; - -struct edac_ecs_ex_info { - u16 num_media_frus; -}; - -struct edac_mem_repair_ops { - int (*get_repair_type)(struct device *, void *, const char **); - int (*get_persist_mode)(struct device *, void *, bool *); - int (*set_persist_mode)(struct device *, void *, bool); - int (*get_repair_safe_when_in_use)(struct device *, void *, bool *); - int (*get_hpa)(struct device *, void *, u64 *); - int (*set_hpa)(struct device *, void *, u64); - int (*get_min_hpa)(struct device *, void *, u64 *); - int (*get_max_hpa)(struct device *, void *, u64 *); - int (*get_dpa)(struct device *, void *, u64 *); - int (*set_dpa)(struct device *, void *, u64); - int (*get_min_dpa)(struct device *, void *, u64 *); - int (*get_max_dpa)(struct device *, void *, u64 *); - int (*get_nibble_mask)(struct device *, void *, u32 *); - int (*set_nibble_mask)(struct device *, void *, u32); - int (*get_bank_group)(struct device *, void *, u32 *); - int (*set_bank_group)(struct device *, void *, u32); - int (*get_bank)(struct device *, void *, u32 *); - int (*set_bank)(struct device *, void *, u32); - int (*get_rank)(struct device *, void *, u32 *); - int (*set_rank)(struct device *, void *, u32); - int (*get_row)(struct device *, void *, u32 *); - int (*set_row)(struct device *, void *, u32); - int (*get_column)(struct device *, void *, u32 *); - int (*set_column)(struct device *, void *, u32); - int (*get_channel)(struct device *, void *, u32 *); - int (*set_channel)(struct device *, void *, u32); - int (*get_sub_channel)(struct device *, void *, u32 *); - int (*set_sub_channel)(struct device *, void *, u32); - int (*do_repair)(struct device *, void *, u32); -}; - -struct edac_dev_data { - union { - const struct edac_scrub_ops *scrub_ops; - const struct edac_ecs_ops *ecs_ops; - const struct edac_mem_repair_ops *mem_repair_ops; - }; - u8 instance; - void *private; -}; - -struct edac_dev_feat_ctx { - struct device dev; - void *private; - struct edac_dev_data *scrub; - struct edac_dev_data ecs; - struct edac_dev_data *mem_repair; -}; - -struct edac_dev_feature { - enum edac_dev_feat ft_type; - u8 instance; - union { - const struct edac_scrub_ops *scrub_ops; - const struct edac_ecs_ops *ecs_ops; - const struct edac_mem_repair_ops *mem_repair_ops; - }; - void *ctx; - struct edac_ecs_ex_info ecs_info; -}; - -struct edac_device_counter { - u32 ue_count; - u32 ce_count; -}; - -struct edac_device_ctl_info; - -struct edac_dev_sysfs_attribute { - struct attribute attr; - ssize_t (*show)(struct edac_device_ctl_info *, char *); - ssize_t (*store)(struct edac_device_ctl_info *, const char *, size_t); -}; - -struct edac_device_instance; - -struct edac_device_block; - -struct edac_device_ctl_info { - struct list_head link; - struct module *owner; - int dev_idx; - int log_ue; - int log_ce; - int panic_on_ue; - unsigned int poll_msec; - long unsigned int delay; - struct edac_dev_sysfs_attribute *sysfs_attributes; - const struct bus_type *edac_subsys; - int op_state; - struct delayed_work work; - void (*edac_check)(struct edac_device_ctl_info *); - struct device *dev; - const char *mod_name; - const char *ctl_name; - const char *dev_name; - void *pvt_info; - long unsigned int start_time; - char name[32]; - u32 nr_instances; - struct edac_device_instance *instances; - struct edac_device_block *blocks; - struct edac_device_counter counters; - struct kobject kobj; -}; - -struct edac_dev_sysfs_block_attribute { - struct attribute attr; - ssize_t (*show)(struct kobject *, struct attribute *, char *); -}; - -struct edac_device_block { - struct edac_device_instance *instance; - char name[32]; - struct edac_device_counter counters; - int nr_attribs; - struct edac_dev_sysfs_block_attribute *block_attributes; - struct kobject kobj; -}; - -struct edac_device_instance { - struct edac_device_ctl_info *ctl; - char name[35]; - struct edac_device_counter counters; - u32 nr_blocks; - struct edac_device_block *blocks; - struct kobject kobj; -}; - -struct gov_attr_set { - struct kobject kobj; - struct list_head policy_list; - struct mutex update_lock; - int usage_count; -}; - -struct governor_attr { - struct attribute attr; - ssize_t (*show)(struct gov_attr_set *, char *); - ssize_t (*store)(struct gov_attr_set *, const char *, size_t); -}; - -enum { - OD_NORMAL_SAMPLE = 0, - OD_SUB_SAMPLE = 1, -}; - -struct dbs_governor; - -struct dbs_data { - struct gov_attr_set attr_set; - struct dbs_governor *gov; - void *tuners; - unsigned int ignore_nice_load; - unsigned int sampling_rate; - unsigned int sampling_down_factor; - unsigned int up_threshold; - unsigned int io_is_busy; -}; - -struct policy_dbs_info; - -struct dbs_governor { - struct cpufreq_governor gov; - struct kobj_type kobj_type; - struct dbs_data *gdbs_data; - unsigned int (*gov_dbs_update)(struct cpufreq_policy *); - struct policy_dbs_info * (*alloc)(void); - void (*free)(struct policy_dbs_info *); - int (*init)(struct dbs_data *); - void (*exit)(struct dbs_data *); - void (*start)(struct cpufreq_policy *); -}; - -struct policy_dbs_info { - struct cpufreq_policy *policy; - struct mutex update_mutex; - u64 last_sample_time; - s64 sample_delay_ns; - atomic_t work_count; - struct irq_work irq_work; - struct work_struct work; - struct dbs_data *dbs_data; - struct list_head list; - unsigned int rate_mult; - unsigned int idle_periods; - bool is_shared; - bool work_in_progress; -}; - -struct od_ops { - unsigned int (*powersave_bias_target)(struct cpufreq_policy *, unsigned int, unsigned int); -}; - -struct od_policy_dbs_info { - struct policy_dbs_info policy_dbs; - unsigned int freq_lo; - unsigned int freq_lo_delay_us; - unsigned int freq_hi_delay_us; - unsigned int sample_type: 1; -}; - -struct od_dbs_tuners { - unsigned int powersave_bias; -}; - -struct cpufreq_policy_data { - struct cpufreq_cpuinfo cpuinfo; - struct cpufreq_frequency_table *freq_table; - unsigned int cpu; - unsigned int min; - unsigned int max; -}; - -struct freq_attr { - struct attribute attr; - ssize_t (*show)(struct cpufreq_policy *, char *); - ssize_t (*store)(struct cpufreq_policy *, const char *, size_t); -}; - -struct cpufreq_driver { - char name[16]; - u16 flags; - void *driver_data; - int (*init)(struct cpufreq_policy *); - int (*verify)(struct cpufreq_policy_data *); - int (*setpolicy)(struct cpufreq_policy *); - int (*target)(struct cpufreq_policy *, unsigned int, unsigned int); - int (*target_index)(struct cpufreq_policy *, unsigned int); - unsigned int (*fast_switch)(struct cpufreq_policy *, unsigned int); - void (*adjust_perf)(unsigned int, long unsigned int, long unsigned int, long unsigned int); - unsigned int (*get_intermediate)(struct cpufreq_policy *, unsigned int); - int (*target_intermediate)(struct cpufreq_policy *, unsigned int); - unsigned int (*get)(unsigned int); - void (*update_limits)(struct cpufreq_policy *); - int (*bios_limit)(int, unsigned int *); - int (*online)(struct cpufreq_policy *); - int (*offline)(struct cpufreq_policy *); - void (*exit)(struct cpufreq_policy *); - int (*suspend)(struct cpufreq_policy *); - int (*resume)(struct cpufreq_policy *); - void (*ready)(struct cpufreq_policy *); - struct freq_attr **attr; - bool boost_enabled; - int (*set_boost)(struct cpufreq_policy *, int); - void (*register_em)(struct cpufreq_policy *); -}; - -enum { - UNDEFINED_CAPABLE = 0, - SYSTEM_INTEL_MSR_CAPABLE = 1, - SYSTEM_AMD_MSR_CAPABLE = 2, - SYSTEM_IO_CAPABLE = 3, -}; - -struct acpi_cpufreq_data { - unsigned int resume; - unsigned int cpu_feature; - unsigned int acpi_perf_cpu; - cpumask_var_t freqdomain_cpus; - void (*cpu_freq_write)(struct acpi_pct_register *, u32); - u32 (*cpu_freq_read)(struct acpi_pct_register *); -}; - -struct drv_cmd { - struct acpi_pct_register *reg; - u32 val; - union { - void (*write)(struct acpi_pct_register *, u32); - u32 (*read)(struct acpi_pct_register *); - } func; -}; - -struct cpufreq_freqs { - struct cpufreq_policy *policy; - unsigned int old; - unsigned int new; - u8 flags; -}; - -struct pcc_register_resource { - u8 descriptor; - u16 length; - u8 space_id; - u8 bit_width; - u8 bit_offset; - u8 access_size; - u64 address; -} __attribute__((packed)); - -struct pcc_memory_resource { - u8 descriptor; - u16 length; - u8 space_id; - u8 resource_usage; - u8 type_specific; - u64 granularity; - u64 minimum; - u64 maximum; - u64 translation_offset; - u64 address_length; -} __attribute__((packed)); - -struct pcc_header { - u32 signature; - u16 length; - u8 major; - u8 minor; - u32 features; - u16 command; - u16 status; - u32 latency; - u32 minimum_time; - u32 maximum_time; - u32 nominal; - u32 throttled_frequency; - u32 minimum_frequency; -}; - -struct pcc_cpu { - u32 input_offset; - u32 output_offset; -}; - -struct cpuidle_governor { - char name[16]; - struct list_head governor_list; - unsigned int rating; - int (*enable)(struct cpuidle_driver *, struct cpuidle_device *); - void (*disable)(struct cpuidle_driver *, struct cpuidle_device *); - int (*select)(struct cpuidle_driver *, struct cpuidle_device *, bool *); - void (*reflect)(struct cpuidle_device *, int); -}; - -struct cpuidle_state_kobj { - struct cpuidle_state *state; - struct cpuidle_state_usage *state_usage; - struct completion kobj_unregister; - struct kobject kobj; - struct cpuidle_device *device; -}; - -struct cpuidle_device_kobj { - struct cpuidle_device *dev; - struct completion kobj_unregister; - struct kobject kobj; -}; - -struct cpuidle_attr { - struct attribute attr; - ssize_t (*show)(struct cpuidle_device *, char *); - ssize_t (*store)(struct cpuidle_device *, const char *, size_t); -}; - -struct cpuidle_state_attr { - struct attribute attr; - ssize_t (*show)(struct cpuidle_state *, struct cpuidle_state_usage *, char *); - ssize_t (*store)(struct cpuidle_state *, struct cpuidle_state_usage *, const char *, size_t); -}; - -enum dmi_device_type { - DMI_DEV_TYPE_ANY = 0, - DMI_DEV_TYPE_OTHER = 1, - DMI_DEV_TYPE_UNKNOWN = 2, - DMI_DEV_TYPE_VIDEO = 3, - DMI_DEV_TYPE_SCSI = 4, - DMI_DEV_TYPE_ETHERNET = 5, - DMI_DEV_TYPE_TOKENRING = 6, - DMI_DEV_TYPE_SOUND = 7, - DMI_DEV_TYPE_PATA = 8, - DMI_DEV_TYPE_SATA = 9, - DMI_DEV_TYPE_SAS = 10, - DMI_DEV_TYPE_IPMI = -1, - DMI_DEV_TYPE_OEM_STRING = -2, - DMI_DEV_TYPE_DEV_ONBOARD = -3, - DMI_DEV_TYPE_DEV_SLOT = -4, -}; - -enum dmi_entry_type { - DMI_ENTRY_BIOS = 0, - DMI_ENTRY_SYSTEM = 1, - DMI_ENTRY_BASEBOARD = 2, - DMI_ENTRY_CHASSIS = 3, - DMI_ENTRY_PROCESSOR = 4, - DMI_ENTRY_MEM_CONTROLLER = 5, - DMI_ENTRY_MEM_MODULE = 6, - DMI_ENTRY_CACHE = 7, - DMI_ENTRY_PORT_CONNECTOR = 8, - DMI_ENTRY_SYSTEM_SLOT = 9, - DMI_ENTRY_ONBOARD_DEVICE = 10, - DMI_ENTRY_OEMSTRINGS = 11, - DMI_ENTRY_SYSCONF = 12, - DMI_ENTRY_BIOS_LANG = 13, - DMI_ENTRY_GROUP_ASSOC = 14, - DMI_ENTRY_SYSTEM_EVENT_LOG = 15, - DMI_ENTRY_PHYS_MEM_ARRAY = 16, - DMI_ENTRY_MEM_DEVICE = 17, - DMI_ENTRY_32_MEM_ERROR = 18, - DMI_ENTRY_MEM_ARRAY_MAPPED_ADDR = 19, - DMI_ENTRY_MEM_DEV_MAPPED_ADDR = 20, - DMI_ENTRY_BUILTIN_POINTING_DEV = 21, - DMI_ENTRY_PORTABLE_BATTERY = 22, - DMI_ENTRY_SYSTEM_RESET = 23, - DMI_ENTRY_HW_SECURITY = 24, - DMI_ENTRY_SYSTEM_POWER_CONTROLS = 25, - DMI_ENTRY_VOLTAGE_PROBE = 26, - DMI_ENTRY_COOLING_DEV = 27, - DMI_ENTRY_TEMP_PROBE = 28, - DMI_ENTRY_ELECTRICAL_CURRENT_PROBE = 29, - DMI_ENTRY_OOB_REMOTE_ACCESS = 30, - DMI_ENTRY_BIS_ENTRY = 31, - DMI_ENTRY_SYSTEM_BOOT = 32, - DMI_ENTRY_MGMT_DEV = 33, - DMI_ENTRY_MGMT_DEV_COMPONENT = 34, - DMI_ENTRY_MGMT_DEV_THRES = 35, - DMI_ENTRY_MEM_CHANNEL = 36, - DMI_ENTRY_IPMI_DEV = 37, - DMI_ENTRY_SYS_POWER_SUPPLY = 38, - DMI_ENTRY_ADDITIONAL = 39, - DMI_ENTRY_ONBOARD_DEV_EXT = 40, - DMI_ENTRY_MGMT_CONTROLLER_HOST = 41, - DMI_ENTRY_INACTIVE = 126, - DMI_ENTRY_END_OF_TABLE = 127, -}; - -struct dmi_header { - u8 type; - u8 length; - u16 handle; -}; - -struct dmi_device { - struct list_head list; - int type; - const char *name; - void *device_data; -}; - -struct dmi_dev_onboard { - struct dmi_device dev; - int instance; - int segment; - int bus; - int devfn; -}; - -struct dmi_memdev_info { - const char *device; - const char *bank; - u64 size; - u16 handle; - u8 type; -}; - -struct firmware_map_entry { - u64 start; - u64 end; - const char *type; - struct list_head list; - struct kobject kobj; -}; - -struct memmap_attribute { - struct attribute attr; - ssize_t (*show)(struct firmware_map_entry *, char *); -}; - -typedef efi_status_t efi_query_variable_store_t(u32, long unsigned int, bool); - -struct efivar_operations { - efi_get_variable_t *get_variable; - efi_get_next_variable_t *get_next_variable; - efi_set_variable_t *set_variable; - efi_set_variable_t *set_variable_nonblocking; - efi_query_variable_store_t *query_variable_store; - efi_query_variable_info_t *query_variable_info; -}; - -struct efivars { - struct kset *kset; - const struct efivar_operations *ops; -}; - -typedef u16 ucs2_char_t; - -struct linux_efi_tpm_eventlog { - u32 size; - u32 final_events_preboot_size; - u8 version; - u8 log[0]; -}; - -struct efi_tcg2_final_events_table { - u64 version; - u64 nr_events; - u8 events[0]; -}; - -enum tcpa_event_types { - PREBOOT = 0, - POST_CODE = 1, - UNUSED = 2, - NO_ACTION = 3, - SEPARATOR = 4, - ACTION = 5, - EVENT_TAG = 6, - SCRTM_CONTENTS = 7, - SCRTM_VERSION = 8, - CPU_MICROCODE = 9, - PLATFORM_CONFIG_FLAGS = 10, - TABLE_OF_DEVICES = 11, - COMPACT_HASH = 12, - IPL = 13, - IPL_PARTITION_DATA = 14, - NONHOST_CODE = 15, - NONHOST_CONFIG = 16, - NONHOST_INFO = 17, -}; - -struct tcg_event_field { - u32 event_size; - u8 event[0]; -}; - -struct tcg_pcr_event2_head { - u32 pcr_idx; - u32 event_type; - u32 count; - struct tpm_digest digests[0]; -}; - -typedef u64 efi_physical_addr_t; - -typedef struct { - u64 length; - u64 data; -} efi_capsule_block_desc_t; - -struct ovmf_debug_log_header { - u64 magic1; - u64 magic2; - u64 hdr_size; - u64 log_size; - u64 lock; - u64 head_off; - u64 tail_off; - u64 truncated; - u8 fw_version[128]; -}; - -struct cper_sec_proc_ia { - u64 validation_bits; - u64 lapic_id; - u8 cpuid[48]; -}; - -struct cper_ia_err_info { - guid_t err_type; - u64 validation_bits; - u64 check_info; - u64 target_id; - u64 requestor_id; - u64 responder_id; - u64 ip; -}; - -enum err_types { - ERR_TYPE_CACHE = 0, - ERR_TYPE_TLB = 1, - ERR_TYPE_BUS = 2, - ERR_TYPE_MS = 3, - N_ERR_TYPES = 4, -}; - -struct hid_device_id { - __u16 bus; - __u16 group; - __u32 vendor; - __u32 product; - kernel_ulong_t driver_data; -}; - -enum hid_report_type { - HID_INPUT_REPORT = 0, - HID_OUTPUT_REPORT = 1, - HID_FEATURE_REPORT = 2, - HID_REPORT_TYPES = 3, -}; - -enum hid_class_request { - HID_REQ_GET_REPORT = 1, - HID_REQ_GET_IDLE = 2, - HID_REQ_GET_PROTOCOL = 3, - HID_REQ_SET_REPORT = 9, - HID_REQ_SET_IDLE = 10, - HID_REQ_SET_PROTOCOL = 11, -}; - -struct hid_device; - -struct hid_bpf_ctx { - struct hid_device *hid; - __u32 allocated_size; - union { - __s32 retval; - __s32 size; - }; -}; - -enum hid_type { - HID_TYPE_OTHER = 0, - HID_TYPE_USBMOUSE = 1, - HID_TYPE_USBNONE = 2, -}; - -struct hid_report; - -struct hid_report_enum { - unsigned int numbered; - struct list_head report_list; - struct hid_report *report_id_hash[256]; -}; - -struct hid_bpf_ops; - -struct hid_bpf { - u8 *device_data; - u32 allocated_data; - bool destroyed; - struct hid_bpf_ops *rdesc_ops; - struct list_head prog_list; - struct mutex prog_list_lock; - struct srcu_struct srcu; -}; - -struct hid_collection; - -struct hid_driver; - -struct hid_ll_driver; - -struct hid_field; - -struct hid_usage; - -struct hid_device { - const __u8 *dev_rdesc; - const __u8 *bpf_rdesc; - const __u8 *rdesc; - unsigned int dev_rsize; - unsigned int bpf_rsize; - unsigned int rsize; - unsigned int collection_size; - struct hid_collection *collection; - unsigned int maxcollection; - unsigned int maxapplication; - __u16 bus; - __u16 group; - __u32 vendor; - __u32 product; - __u32 version; - enum hid_type type; - unsigned int country; - struct hid_report_enum report_enum[3]; - struct work_struct led_work; - struct semaphore driver_input_lock; - struct device dev; - struct hid_driver *driver; - void *devres_group_id; - const struct hid_ll_driver *ll_driver; - struct mutex ll_open_lock; - unsigned int ll_open_count; - long unsigned int status; - unsigned int claimed; - unsigned int quirks; - unsigned int initial_quirks; - bool io_started; - struct list_head inputs; - void *hiddev; - void *hidraw; - char name[128]; - char phys[64]; - char uniq[64]; - void *driver_data; - int (*ff_init)(struct hid_device *); - int (*hiddev_connect)(struct hid_device *, unsigned int); - void (*hiddev_disconnect)(struct hid_device *); - void (*hiddev_hid_event)(struct hid_device *, struct hid_field *, struct hid_usage *, __s32); - void (*hiddev_report_event)(struct hid_device *, struct hid_report *); - short unsigned int debug; - struct dentry *debug_dir; - struct dentry *debug_rdesc; - struct dentry *debug_events; - struct list_head debug_list; - spinlock_t debug_list_lock; - wait_queue_head_t debug_wait; - struct kref ref; - unsigned int id; - struct hid_bpf bpf; -}; - -struct hid_ops { - struct hid_report * (*hid_get_report)(struct hid_report_enum *, const u8 *); - int (*hid_hw_raw_request)(struct hid_device *, unsigned char, __u8 *, size_t, enum hid_report_type, enum hid_class_request, u64, bool); - int (*hid_hw_output_report)(struct hid_device *, __u8 *, size_t, u64, bool); - int (*hid_input_report)(struct hid_device *, enum hid_report_type, u8 *, u32, int, u64, bool, bool); - struct module *owner; - const struct bus_type *bus_type; -}; - -struct hid_field_entry; - -struct hid_report { - struct list_head list; - struct list_head hidinput_list; - struct list_head field_entry_list; - unsigned int id; - enum hid_report_type type; - unsigned int application; - struct hid_field *field[256]; - struct hid_field_entry *field_entries; - unsigned int maxfield; - unsigned int size; - struct hid_device *device; - bool tool_active; - unsigned int tool; -}; - -struct hid_bpf_ops { - int hid_id; - u32 flags; - struct list_head list; - int (*hid_device_event)(struct hid_bpf_ctx *, enum hid_report_type, u64); - int (*hid_rdesc_fixup)(struct hid_bpf_ctx *); - int (*hid_hw_request)(struct hid_bpf_ctx *, unsigned char, enum hid_report_type, enum hid_class_request, u64); - int (*hid_hw_output_report)(struct hid_bpf_ctx *, u64); - struct hid_device *hdev; -}; - -struct hid_collection { - int parent_idx; - unsigned int type; - unsigned int usage; - unsigned int level; -}; - -struct hid_usage { - unsigned int hid; - unsigned int collection_index; - unsigned int usage_index; - __s8 resolution_multiplier; - __s8 wheel_factor; - __u16 code; - __u8 type; - __s16 hat_min; - __s16 hat_max; - __s16 hat_dir; - __s16 wheel_accumulated; -}; - -struct hid_input; - -struct hid_field { - unsigned int physical; - unsigned int logical; - unsigned int application; - struct hid_usage *usage; - unsigned int maxusage; - unsigned int flags; - unsigned int report_offset; - unsigned int report_size; - unsigned int report_count; - unsigned int report_type; - __s32 *value; - __s32 *new_value; - __s32 *usages_priorities; - __s32 logical_minimum; - __s32 logical_maximum; - __s32 physical_minimum; - __s32 physical_maximum; - __s32 unit_exponent; - unsigned int unit; - bool ignored; - struct hid_report *report; - unsigned int index; - struct hid_input *hidinput; - __u16 dpad; - unsigned int slot_idx; -}; - -struct hid_input { - struct list_head list; - struct hid_report *report; - struct input_dev *input; - const char *name; - struct list_head reports; - unsigned int application; - bool registered; -}; - -struct hid_field_entry { - struct list_head list; - struct hid_field *field; - unsigned int index; - __s32 priority; -}; - -struct hid_report_id; - -struct hid_usage_id; - -struct hid_driver { - char *name; - const struct hid_device_id *id_table; - struct list_head dyn_list; - spinlock_t dyn_lock; - bool (*match)(struct hid_device *, bool); - int (*probe)(struct hid_device *, const struct hid_device_id *); - void (*remove)(struct hid_device *); - const struct hid_report_id *report_table; - int (*raw_event)(struct hid_device *, struct hid_report *, u8 *, int); - const struct hid_usage_id *usage_table; - int (*event)(struct hid_device *, struct hid_field *, struct hid_usage *, __s32); - void (*report)(struct hid_device *, struct hid_report *); - const __u8 * (*report_fixup)(struct hid_device *, __u8 *, unsigned int *); - int (*input_mapping)(struct hid_device *, struct hid_input *, struct hid_field *, struct hid_usage *, long unsigned int **, int *); - int (*input_mapped)(struct hid_device *, struct hid_input *, struct hid_field *, struct hid_usage *, long unsigned int **, int *); - int (*input_configured)(struct hid_device *, struct hid_input *); - void (*feature_mapping)(struct hid_device *, struct hid_field *, struct hid_usage *); - int (*suspend)(struct hid_device *, pm_message_t); - int (*resume)(struct hid_device *); - int (*reset_resume)(struct hid_device *); - void (*on_hid_hw_open)(struct hid_device *); - void (*on_hid_hw_close)(struct hid_device *); - struct device_driver driver; -}; - -struct hid_ll_driver { - int (*start)(struct hid_device *); - void (*stop)(struct hid_device *); - int (*open)(struct hid_device *); - void (*close)(struct hid_device *); - int (*power)(struct hid_device *, int); - int (*parse)(struct hid_device *); - void (*request)(struct hid_device *, struct hid_report *, int); - int (*wait)(struct hid_device *); - int (*raw_request)(struct hid_device *, unsigned char, __u8 *, size_t, unsigned char, int); - int (*output_report)(struct hid_device *, __u8 *, size_t); - int (*idle)(struct hid_device *, int, int, int); - bool (*may_wakeup)(struct hid_device *); - unsigned int max_buffer_size; -}; - -struct hid_report_id { - __u32 report_type; -}; - -struct hid_usage_id { - __u32 usage_hid; - __u32 usage_type; - __u32 usage_code; -}; - -struct hid_bpf_ctx_kern { - struct hid_bpf_ctx ctx; - u8 *data; - bool from_bpf; -}; - -struct hv_ring_buffer_debug_info { - u32 current_interrupt_mask; - u32 current_read_index; - u32 current_write_index; - u32 bytes_avail_toread; - u32 bytes_avail_towrite; -}; - -enum delay { - INTERRUPT_DELAY = 0, - MESSAGE_DELAY = 1, -}; - -enum hv_vss_op { - VSS_OP_CREATE = 0, - VSS_OP_DELETE = 1, - VSS_OP_HOT_BACKUP = 2, - VSS_OP_GET_DM_INFO = 3, - VSS_OP_BU_COMPLETE = 4, - VSS_OP_FREEZE = 5, - VSS_OP_THAW = 6, - VSS_OP_AUTO_RECOVER = 7, - VSS_OP_COUNT = 8, -}; - -struct hv_vss_hdr { - __u8 operation; - __u8 reserved[7]; -}; - -struct hv_vss_check_feature { - __u32 flags; -}; - -struct hv_vss_check_dm_info { - __u32 flags; -}; - -struct hv_vss_msg { - union { - struct hv_vss_hdr vss_hdr; - int error; - }; - union { - struct hv_vss_check_feature vss_cf; - struct hv_vss_check_dm_info dm_info; - }; -}; - -struct hv_util_service { - u8 *recv_buffer; - void *channel; - void (*util_cb)(void *); - int (*util_init)(struct hv_util_service *); - int (*util_init_transport)(void); - void (*util_deinit)(void); - int (*util_pre_suspend)(void); - int (*util_pre_resume)(void); -}; - -struct ic_version { - u16 major; - u16 minor; -}; - -struct icmsg_hdr { - struct ic_version icverframe; - u16 icmsgtype; - struct ic_version icvermsg; - u16 icmsgsize; - u32 status; - u8 ictransaction_id; - u8 icflags; - u8 reserved[2]; -}; - -enum hvutil_device_state { - HVUTIL_DEVICE_INIT = 0, - HVUTIL_READY = 1, - HVUTIL_HOSTMSG_RECEIVED = 2, - HVUTIL_USERSPACE_REQ = 3, - HVUTIL_USERSPACE_RECV = 4, - HVUTIL_DEVICE_DYING = 5, -}; - -struct hvutil_transport { - int mode; - struct file_operations fops; - struct miscdevice mdev; - struct cb_id cn_id; - struct list_head list; - int (*on_msg)(void *, int); - void (*on_reset)(void); - void (*on_read)(void); - u8 *outmsg; - int outmsg_len; - wait_queue_head_t outmsg_q; - struct mutex lock; - struct completion release; -}; - -typedef long unsigned int ulong; - -struct hv_u128 { - u64 low_part; - u64 high_part; -}; - -union hv_explicit_suspend_register { - u64 as_uint64; - struct { - u64 suspended: 1; - u64 reserved: 63; - }; -}; - -union hv_intercept_suspend_register { - u64 as_uint64; - struct { - u64 suspended: 1; - u64 reserved: 63; - }; -}; - -union hv_dispatch_suspend_register { - u64 as_uint64; - struct { - u64 suspended: 1; - u64 reserved: 63; - }; -}; - -union hv_arm64_pending_synthetic_exception_event { - u64 as_uint64[2]; - struct { - u8 event_pending: 1; - u8 event_type: 3; - u8 reserved: 4; - u8 rsvd[3]; - u32 exception_type; - u64 context; - }; -}; - -union hv_x64_interrupt_state_register { - u64 as_uint64; - struct { - u64 interrupt_shadow: 1; - u64 nmi_masked: 1; - u64 reserved: 62; - }; -}; - -union hv_x64_pending_interruption_register { - u64 as_uint64; - struct { - u32 interruption_pending: 1; - u32 interruption_type: 3; - u32 deliver_error_code: 1; - u32 instruction_length: 4; - u32 nested_event: 1; - u32 reserved: 6; - u32 interruption_vector: 16; - u32 error_code; - }; -}; - -union hv_register_value { - struct hv_u128 reg128; - u64 reg64; - u32 reg32; - u16 reg16; - u8 reg8; - struct hv_x64_segment_register segment; - struct hv_x64_table_register table; - union hv_explicit_suspend_register explicit_suspend; - union hv_intercept_suspend_register intercept_suspend; - union hv_dispatch_suspend_register dispatch_suspend; - union hv_x64_interrupt_state_register interrupt_state; - union hv_x64_pending_interruption_register pending_interruption; - union hv_arm64_pending_synthetic_exception_event pending_synthetic_exception_event; -}; - -struct hv_register_assoc { - u32 name; - u32 reserved1; - u64 reserved2; - union hv_register_value value; -}; - -struct hv_input_get_vp_registers { - u64 partition_id; - u32 vp_index; - union hv_input_vtl input_vtl; - u8 rsvd_z8; - u16 rsvd_z16; - u32 names[0]; -}; - -struct hv_input_set_vp_registers { - u64 partition_id; - u32 vp_index; - union hv_input_vtl input_vtl; - u8 rsvd_z8; - u16 rsvd_z16; - struct hv_register_assoc elements[0]; -}; - -struct hv_input_get_partition_property { - u64 partition_id; - u32 property_code; - u32 padding; -}; - -struct hv_output_get_partition_property { - u64 property_value; -}; - -struct srcu_notifier_head { - struct mutex mutex; - struct srcu_usage srcuu; - struct srcu_struct srcu; - struct notifier_block *head; -}; - -enum devfreq_timer { - DEVFREQ_TIMER_DEFERRABLE = 0, - DEVFREQ_TIMER_DELAYED = 1, - DEVFREQ_TIMER_NUM = 2, -}; - -struct devfreq_dev_status { - long unsigned int total_time; - long unsigned int busy_time; - long unsigned int current_frequency; - void *private_data; -}; - -struct devfreq_dev_profile { - long unsigned int initial_freq; - unsigned int polling_ms; - enum devfreq_timer timer; - int (*target)(struct device *, long unsigned int *, u32); - int (*get_dev_status)(struct device *, struct devfreq_dev_status *); - int (*get_cur_freq)(struct device *, long unsigned int *); - void (*exit)(struct device *); - long unsigned int *freq_table; - unsigned int max_state; - bool is_cooling_device; - const struct attribute_group **dev_groups; -}; - -struct devfreq_stats { - unsigned int total_trans; - unsigned int *trans_table; - u64 *time_in_state; - u64 last_update; -}; - -struct devfreq_governor; - -struct opp_table; - -struct devfreq { - struct list_head node; - struct mutex lock; - struct device dev; - struct devfreq_dev_profile *profile; - const struct devfreq_governor *governor; - struct opp_table *opp_table; - struct notifier_block nb; - struct delayed_work work; - long unsigned int *freq_table; - unsigned int max_state; - long unsigned int previous_freq; - struct devfreq_dev_status last_status; - void *data; - void *governor_data; - struct dev_pm_qos_request user_min_freq_req; - struct dev_pm_qos_request user_max_freq_req; - long unsigned int scaling_min_freq; - long unsigned int scaling_max_freq; - bool stop_polling; - long unsigned int suspend_freq; - long unsigned int resume_freq; - atomic_t suspend_count; - struct devfreq_stats stats; - struct srcu_notifier_head transition_notifier_list; - struct thermal_cooling_device *cdev; - struct notifier_block nb_min; - struct notifier_block nb_max; -}; - -struct devfreq_governor { - struct list_head node; - const char name[16]; - const u64 attrs; - const u64 flags; - int (*get_target_freq)(struct devfreq *, long unsigned int *); - int (*event_handler)(struct devfreq *, unsigned int, void *); -}; - -struct devfreq_freqs { - long unsigned int old; - long unsigned int new; -}; - -enum devfreq_parent_dev_type { - DEVFREQ_PARENT_DEV = 0, - CPUFREQ_PARENT_DEV = 1, -}; - -struct devfreq_passive_data { - struct devfreq *parent; - int (*get_target_freq)(struct devfreq *, long unsigned int *); - enum devfreq_parent_dev_type parent_type; - struct devfreq *this; - struct notifier_block nb; - struct list_head cpu_data_list; -}; - -struct devfreq_cpu_data { - struct list_head node; - struct device *dev; - unsigned int first_cpu; - struct opp_table *opp_table; - unsigned int cur_freq; - unsigned int min_freq; - unsigned int max_freq; -}; - -struct idle_inject_thread { - struct task_struct *tsk; - int should_run; -}; - -struct idle_inject_device { - struct hrtimer timer; - unsigned int idle_duration_us; - unsigned int run_duration_us; - unsigned int latency_us; - bool (*update)(void); - long unsigned int cpumask[0]; -}; - -struct nvmem_cell_lookup { - const char *nvmem_name; - const char *cell_name; - const char *dev_id; - const char *con_id; - struct list_head node; -}; - -enum { - NVMEM_ADD = 1, - NVMEM_REMOVE = 2, - NVMEM_CELL_ADD = 3, - NVMEM_CELL_REMOVE = 4, - NVMEM_LAYOUT_ADD = 5, - NVMEM_LAYOUT_REMOVE = 6, -}; - -struct nvmem_device { - struct module *owner; - struct device dev; - struct list_head node; - int stride; - int word_size; - int id; - struct kref refcnt; - size_t size; - bool read_only; - bool root_only; - int flags; - enum nvmem_type type; - struct bin_attribute eeprom; - struct device *base_dev; - struct list_head cells; - void (*fixup_dt_cell_info)(struct nvmem_device *, struct nvmem_cell_info *); - const struct nvmem_keepout *keepout; - unsigned int nkeepout; - nvmem_reg_read_t reg_read; - nvmem_reg_write_t reg_write; - struct gpio_desc *wp_gpio; - struct nvmem_layout *layout; - void *priv; - bool sysfs_cells_populated; -}; - -struct nvmem_cell_entry { - const char *name; - int offset; - size_t raw_len; - int bytes; - int bit_offset; - int nbits; - nvmem_cell_post_process_t read_post_process; - void *priv; - struct device_node *np; - struct nvmem_device *nvmem; - struct list_head node; -}; - -struct nvmem_cell { - struct nvmem_cell_entry *entry; - const char *id; - int index; -}; - -enum dpll_pin_type { - DPLL_PIN_TYPE_MUX = 1, - DPLL_PIN_TYPE_EXT = 2, - DPLL_PIN_TYPE_SYNCE_ETH_PORT = 3, - DPLL_PIN_TYPE_INT_OSCILLATOR = 4, - DPLL_PIN_TYPE_GNSS = 5, - __DPLL_PIN_TYPE_MAX = 6, - DPLL_PIN_TYPE_MAX = 5, -}; - -struct dpll_pin_phase_adjust_range { - s32 min; - s32 max; -}; - -struct dpll_pin_frequency; - -struct dpll_pin_properties { - const char *board_label; - const char *panel_label; - const char *package_label; - enum dpll_pin_type type; - long unsigned int capabilities; - u32 freq_supported_num; - struct dpll_pin_frequency *freq_supported; - struct dpll_pin_phase_adjust_range phase_range; -}; - -struct dpll_pin { - u32 id; - u32 pin_idx; - u64 clock_id; - struct module *module; - struct xarray dpll_refs; - struct xarray parent_refs; - struct xarray ref_sync_pins; - struct dpll_pin_properties prop; - refcount_t refcount; - struct callback_head rcu; -}; - -enum netlink_validation { - NL_VALIDATE_LIBERAL = 0, - NL_VALIDATE_TRAILING = 1, - NL_VALIDATE_MAXTYPE = 2, - NL_VALIDATE_UNSPEC = 4, - NL_VALIDATE_STRICT_ATTRS = 8, - NL_VALIDATE_NESTED = 16, -}; - -enum dpll_mode { - DPLL_MODE_MANUAL = 1, - DPLL_MODE_AUTOMATIC = 2, - __DPLL_MODE_MAX = 3, - DPLL_MODE_MAX = 2, -}; - -enum dpll_lock_status { - DPLL_LOCK_STATUS_UNLOCKED = 1, - DPLL_LOCK_STATUS_LOCKED = 2, - DPLL_LOCK_STATUS_LOCKED_HO_ACQ = 3, - DPLL_LOCK_STATUS_HOLDOVER = 4, - __DPLL_LOCK_STATUS_MAX = 5, - DPLL_LOCK_STATUS_MAX = 4, -}; - -enum dpll_lock_status_error { - DPLL_LOCK_STATUS_ERROR_NONE = 1, - DPLL_LOCK_STATUS_ERROR_UNDEFINED = 2, - DPLL_LOCK_STATUS_ERROR_MEDIA_DOWN = 3, - DPLL_LOCK_STATUS_ERROR_FRACTIONAL_FREQUENCY_OFFSET_TOO_HIGH = 4, - __DPLL_LOCK_STATUS_ERROR_MAX = 5, - DPLL_LOCK_STATUS_ERROR_MAX = 4, -}; - -enum dpll_clock_quality_level { - DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_PRC = 1, - DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_SSU_A = 2, - DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_SSU_B = 3, - DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_EEC1 = 4, - DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_PRTC = 5, - DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_EPRTC = 6, - DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_EEEC = 7, - DPLL_CLOCK_QUALITY_LEVEL_ITU_OPT1_EPRC = 8, - __DPLL_CLOCK_QUALITY_LEVEL_MAX = 9, - DPLL_CLOCK_QUALITY_LEVEL_MAX = 8, -}; - -enum dpll_type { - DPLL_TYPE_PPS = 1, - DPLL_TYPE_EEC = 2, - __DPLL_TYPE_MAX = 3, - DPLL_TYPE_MAX = 2, -}; - -enum dpll_pin_direction { - DPLL_PIN_DIRECTION_INPUT = 1, - DPLL_PIN_DIRECTION_OUTPUT = 2, - __DPLL_PIN_DIRECTION_MAX = 3, - DPLL_PIN_DIRECTION_MAX = 2, -}; - -enum dpll_pin_state { - DPLL_PIN_STATE_CONNECTED = 1, - DPLL_PIN_STATE_DISCONNECTED = 2, - DPLL_PIN_STATE_SELECTABLE = 3, - __DPLL_PIN_STATE_MAX = 4, - DPLL_PIN_STATE_MAX = 3, -}; - -enum dpll_pin_capabilities { - DPLL_PIN_CAPABILITIES_DIRECTION_CAN_CHANGE = 1, - DPLL_PIN_CAPABILITIES_PRIORITY_CAN_CHANGE = 2, - DPLL_PIN_CAPABILITIES_STATE_CAN_CHANGE = 4, -}; - -enum dpll_feature_state { - DPLL_FEATURE_STATE_DISABLE = 0, - DPLL_FEATURE_STATE_ENABLE = 1, -}; - -enum dpll_a { - DPLL_A_ID = 1, - DPLL_A_MODULE_NAME = 2, - DPLL_A_PAD = 3, - DPLL_A_CLOCK_ID = 4, - DPLL_A_MODE = 5, - DPLL_A_MODE_SUPPORTED = 6, - DPLL_A_LOCK_STATUS = 7, - DPLL_A_TEMP = 8, - DPLL_A_TYPE = 9, - DPLL_A_LOCK_STATUS_ERROR = 10, - DPLL_A_CLOCK_QUALITY_LEVEL = 11, - DPLL_A_PHASE_OFFSET_MONITOR = 12, - __DPLL_A_MAX = 13, - DPLL_A_MAX = 12, -}; - -enum dpll_a_pin { - DPLL_A_PIN_ID = 1, - DPLL_A_PIN_PARENT_ID = 2, - DPLL_A_PIN_MODULE_NAME = 3, - DPLL_A_PIN_PAD = 4, - DPLL_A_PIN_CLOCK_ID = 5, - DPLL_A_PIN_BOARD_LABEL = 6, - DPLL_A_PIN_PANEL_LABEL = 7, - DPLL_A_PIN_PACKAGE_LABEL = 8, - DPLL_A_PIN_TYPE = 9, - DPLL_A_PIN_DIRECTION = 10, - DPLL_A_PIN_FREQUENCY = 11, - DPLL_A_PIN_FREQUENCY_SUPPORTED = 12, - DPLL_A_PIN_FREQUENCY_MIN = 13, - DPLL_A_PIN_FREQUENCY_MAX = 14, - DPLL_A_PIN_PRIO = 15, - DPLL_A_PIN_STATE = 16, - DPLL_A_PIN_CAPABILITIES = 17, - DPLL_A_PIN_PARENT_DEVICE = 18, - DPLL_A_PIN_PARENT_PIN = 19, - DPLL_A_PIN_PHASE_ADJUST_MIN = 20, - DPLL_A_PIN_PHASE_ADJUST_MAX = 21, - DPLL_A_PIN_PHASE_ADJUST = 22, - DPLL_A_PIN_PHASE_OFFSET = 23, - DPLL_A_PIN_FRACTIONAL_FREQUENCY_OFFSET = 24, - DPLL_A_PIN_ESYNC_FREQUENCY = 25, - DPLL_A_PIN_ESYNC_FREQUENCY_SUPPORTED = 26, - DPLL_A_PIN_ESYNC_PULSE = 27, - DPLL_A_PIN_REFERENCE_SYNC = 28, - __DPLL_A_PIN_MAX = 29, - DPLL_A_PIN_MAX = 28, -}; - -enum dpll_cmd { - DPLL_CMD_DEVICE_ID_GET = 1, - DPLL_CMD_DEVICE_GET = 2, - DPLL_CMD_DEVICE_SET = 3, - DPLL_CMD_DEVICE_CREATE_NTF = 4, - DPLL_CMD_DEVICE_DELETE_NTF = 5, - DPLL_CMD_DEVICE_CHANGE_NTF = 6, - DPLL_CMD_PIN_ID_GET = 7, - DPLL_CMD_PIN_GET = 8, - DPLL_CMD_PIN_SET = 9, - DPLL_CMD_PIN_CREATE_NTF = 10, - DPLL_CMD_PIN_DELETE_NTF = 11, - DPLL_CMD_PIN_CHANGE_NTF = 12, - __DPLL_CMD_MAX = 13, - DPLL_CMD_MAX = 12, -}; - -struct dpll_device; - -struct dpll_device_ops { - int (*mode_get)(const struct dpll_device *, void *, enum dpll_mode *, struct netlink_ext_ack *); - int (*lock_status_get)(const struct dpll_device *, void *, enum dpll_lock_status *, enum dpll_lock_status_error *, struct netlink_ext_ack *); - int (*temp_get)(const struct dpll_device *, void *, s32 *, struct netlink_ext_ack *); - int (*clock_quality_level_get)(const struct dpll_device *, void *, long unsigned int *, struct netlink_ext_ack *); - int (*phase_offset_monitor_set)(const struct dpll_device *, void *, enum dpll_feature_state, struct netlink_ext_ack *); - int (*phase_offset_monitor_get)(const struct dpll_device *, void *, enum dpll_feature_state *, struct netlink_ext_ack *); -}; - -struct dpll_device { - u32 id; - u32 device_idx; - u64 clock_id; - struct module *module; - enum dpll_type type; - struct xarray pin_refs; - refcount_t refcount; - struct list_head registration_list; -}; - -struct dpll_pin_esync; - -struct dpll_pin_ops { - int (*frequency_set)(const struct dpll_pin *, void *, const struct dpll_device *, void *, const u64, struct netlink_ext_ack *); - int (*frequency_get)(const struct dpll_pin *, void *, const struct dpll_device *, void *, u64 *, struct netlink_ext_ack *); - int (*direction_set)(const struct dpll_pin *, void *, const struct dpll_device *, void *, const enum dpll_pin_direction, struct netlink_ext_ack *); - int (*direction_get)(const struct dpll_pin *, void *, const struct dpll_device *, void *, enum dpll_pin_direction *, struct netlink_ext_ack *); - int (*state_on_pin_get)(const struct dpll_pin *, void *, const struct dpll_pin *, void *, enum dpll_pin_state *, struct netlink_ext_ack *); - int (*state_on_dpll_get)(const struct dpll_pin *, void *, const struct dpll_device *, void *, enum dpll_pin_state *, struct netlink_ext_ack *); - int (*state_on_pin_set)(const struct dpll_pin *, void *, const struct dpll_pin *, void *, const enum dpll_pin_state, struct netlink_ext_ack *); - int (*state_on_dpll_set)(const struct dpll_pin *, void *, const struct dpll_device *, void *, const enum dpll_pin_state, struct netlink_ext_ack *); - int (*prio_get)(const struct dpll_pin *, void *, const struct dpll_device *, void *, u32 *, struct netlink_ext_ack *); - int (*prio_set)(const struct dpll_pin *, void *, const struct dpll_device *, void *, const u32, struct netlink_ext_ack *); - int (*phase_offset_get)(const struct dpll_pin *, void *, const struct dpll_device *, void *, s64 *, struct netlink_ext_ack *); - int (*phase_adjust_get)(const struct dpll_pin *, void *, const struct dpll_device *, void *, s32 *, struct netlink_ext_ack *); - int (*phase_adjust_set)(const struct dpll_pin *, void *, const struct dpll_device *, void *, const s32, struct netlink_ext_ack *); - int (*ffo_get)(const struct dpll_pin *, void *, const struct dpll_device *, void *, s64 *, struct netlink_ext_ack *); - int (*esync_set)(const struct dpll_pin *, void *, const struct dpll_device *, void *, u64, struct netlink_ext_ack *); - int (*esync_get)(const struct dpll_pin *, void *, const struct dpll_device *, void *, struct dpll_pin_esync *, struct netlink_ext_ack *); - int (*ref_sync_set)(const struct dpll_pin *, void *, const struct dpll_pin *, void *, const enum dpll_pin_state, struct netlink_ext_ack *); - int (*ref_sync_get)(const struct dpll_pin *, void *, const struct dpll_pin *, void *, enum dpll_pin_state *, struct netlink_ext_ack *); -}; - -struct dpll_pin_esync { - u64 freq; - const struct dpll_pin_frequency *range; - u8 range_num; - u8 pulse; -}; - -struct dpll_pin_frequency { - u64 min; - u64 max; -}; - -struct dpll_pin_ref { - union { - struct dpll_device *dpll; - struct dpll_pin *pin; - }; - struct list_head registration_list; - refcount_t refcount; -}; - -struct dpll_dump_ctx { - long unsigned int idx; -}; - -struct minmax_sample { - u32 t; - u32 v; -}; - -struct minmax { - struct minmax_sample s[3]; -}; - -struct fastopen_queue { - struct request_sock *rskq_rst_head; - struct request_sock *rskq_rst_tail; - spinlock_t lock; - int qlen; - int max_qlen; - struct tcp_fastopen_context *ctx; -}; - -struct request_sock_queue { - spinlock_t rskq_lock; - u8 rskq_defer_accept; - u32 synflood_warned; - atomic_t qlen; - atomic_t young; - struct request_sock *rskq_accept_head; - struct request_sock *rskq_accept_tail; - struct fastopen_queue fastopenq; -}; - -struct inet_request_sock { - struct request_sock req; - u16 snd_wscale: 4; - u16 rcv_wscale: 4; - u16 tstamp_ok: 1; - u16 sack_ok: 1; - u16 wscale_ok: 1; - u16 ecn_ok: 1; - u16 acked: 1; - u16 no_srccheck: 1; - u16 smc_ok: 1; - u32 ir_mark; - union { - struct ip_options_rcu *ireq_opt; - struct { - struct ipv6_txoptions *ipv6_opt; - struct sk_buff *pktopts; - }; - }; -}; - -struct inet_connection_sock_af_ops { - int (*queue_xmit)(struct sock *, struct sk_buff *, struct flowi *); - void (*send_check)(struct sock *, struct sk_buff *); - int (*rebuild_header)(struct sock *); - void (*sk_rx_dst_set)(struct sock *, const struct sk_buff *); - int (*conn_request)(struct sock *, struct sk_buff *); - struct sock * (*syn_recv_sock)(const struct sock *, struct sk_buff *, struct request_sock *, struct dst_entry *, struct request_sock *, bool *, void (*)(struct sock *, const struct sock *)); - u16 net_header_len; - int (*setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); - int (*getsockopt)(struct sock *, int, int, char *, int *); - void (*mtu_reduced)(struct sock *); -}; - -struct inet_bind_bucket; - -struct inet_bind2_bucket; - -struct tcp_ulp_ops; - -struct inet_connection_sock { - struct inet_sock icsk_inet; - struct request_sock_queue icsk_accept_queue; - struct inet_bind_bucket *icsk_bind_hash; - struct inet_bind2_bucket *icsk_bind2_hash; - struct timer_list icsk_retransmit_timer; - struct timer_list icsk_delack_timer; - __u32 icsk_rto; - __u32 icsk_rto_min; - u32 icsk_rto_max; - __u32 icsk_delack_max; - __u32 icsk_pmtu_cookie; - const struct tcp_congestion_ops *icsk_ca_ops; - const struct inet_connection_sock_af_ops *icsk_af_ops; - const struct tcp_ulp_ops *icsk_ulp_ops; - void *icsk_ulp_data; - unsigned int (*icsk_sync_mss)(struct sock *, u32); - __u8 icsk_ca_state: 5; - __u8 icsk_ca_initialized: 1; - __u8 icsk_ca_setsockopt: 1; - __u8 icsk_ca_dst_locked: 1; - __u8 icsk_retransmits; - __u8 icsk_pending; - __u8 icsk_backoff; - __u8 icsk_syn_retries; - __u8 icsk_probes_out; - __u16 icsk_ext_hdr_len; - struct { - __u8 pending; - __u8 quick; - __u8 pingpong; - __u8 retry; - __u32 ato: 8; - __u32 lrcv_flowlabel: 20; - __u32 dst_quick_ack: 1; - __u32 unused: 3; - __u32 lrcvtime; - __u16 last_seg_size; - __u16 rcv_mss; - } icsk_ack; - struct { - int search_high; - int search_low; - u32 probe_size: 31; - u32 enabled: 1; - u32 probe_timestamp; - } icsk_mtup; - u32 icsk_probes_tstamp; - u32 icsk_user_timeout; - u64 icsk_ca_priv[13]; -}; - -struct tcp_ulp_ops { - struct list_head list; - int (*init)(struct sock *); - void (*update)(struct sock *, struct proto *, void (*)(struct sock *)); - void (*release)(struct sock *); - int (*get_info)(struct sock *, struct sk_buff *, bool); - size_t (*get_info_size)(const struct sock *, bool); - void (*clone)(const struct request_sock *, struct sock *, const gfp_t); - char name[16]; - struct module *owner; -}; - -struct tcp_sack_block { - u32 start_seq; - u32 end_seq; -}; - -struct tcp_options_received { - int ts_recent_stamp; - u32 ts_recent; - u32 rcv_tsval; - u32 rcv_tsecr; - u16 saw_tstamp: 1; - u16 tstamp_ok: 1; - u16 dsack: 1; - u16 wscale_ok: 1; - u16 sack_ok: 3; - u16 smc_ok: 1; - u16 snd_wscale: 4; - u16 rcv_wscale: 4; - u8 saw_unknown: 1; - u8 unused: 7; - u8 num_sacks; - u16 user_mss; - u16 mss_clamp; -}; - -struct tcp_request_sock_ops; - -struct tcp_request_sock { - struct inet_request_sock req; - const struct tcp_request_sock_ops *af_specific; - u64 snt_synack; - bool tfo_listener; - bool is_mptcp; - bool req_usec_ts; - bool drop_req; - u32 txhash; - u32 rcv_isn; - u32 snt_isn; - u32 ts_off; - u32 snt_tsval_first; - u32 snt_tsval_last; - u32 last_oow_ack_time; - u32 rcv_nxt; - u8 syn_tos; - u8 ao_keyid; - u8 ao_rcv_next; - bool used_tcp_ao; -}; - -enum tcp_synack_type { - TCP_SYNACK_NORMAL = 0, - TCP_SYNACK_FASTOPEN = 1, - TCP_SYNACK_COOKIE = 2, -}; - -struct tcp_md5sig_key; - -struct tcp_ao_key; - -struct tcp_fastopen_cookie; - -struct tcp_request_sock_ops { - u16 mss_clamp; - struct tcp_md5sig_key * (*req_md5_lookup)(const struct sock *, const struct sock *); - int (*calc_md5_hash)(char *, const struct tcp_md5sig_key *, const struct sock *, const struct sk_buff *); - struct tcp_ao_key * (*ao_lookup)(const struct sock *, struct request_sock *, int, int); - int (*ao_calc_key)(struct tcp_ao_key *, u8 *, struct request_sock *); - int (*ao_synack_hash)(char *, struct tcp_ao_key *, struct request_sock *, const struct sk_buff *, int, u32); - __u32 (*cookie_init_seq)(const struct sk_buff *, __u16 *); - struct dst_entry * (*route_req)(const struct sock *, struct sk_buff *, struct flowi *, struct request_sock *, u32); - u32 (*init_seq)(const struct sk_buff *); - u32 (*init_ts_off)(const struct net *, const struct sk_buff *); - int (*send_synack)(const struct sock *, struct dst_entry *, struct flowi *, struct request_sock *, struct tcp_fastopen_cookie *, enum tcp_synack_type, struct sk_buff *); -}; - -struct tcp_rack { - u64 mstamp; - u32 rtt_us; - u32 end_seq; - u32 last_delivered; - u8 reo_wnd_steps; - u8 reo_wnd_persist: 5; - u8 dsack_seen: 1; - u8 advanced: 1; -}; - -struct tcp_sock_af_ops; - -struct tcp_md5sig_info; - -struct tcp_ao_info; - -struct tcp_fastopen_request; - -struct tcp_sock { - struct inet_connection_sock inet_conn; - __u8 __cacheline_group_begin__tcp_sock_read_tx[0]; - u32 max_window; - u32 rcv_ssthresh; - u32 reordering; - u32 notsent_lowat; - u16 gso_segs; - struct sk_buff *retransmit_skb_hint; - __u8 __cacheline_group_end__tcp_sock_read_tx[0]; - __u8 __cacheline_group_begin__tcp_sock_read_txrx[0]; - u32 tsoffset; - u32 snd_wnd; - u32 mss_cache; - u32 snd_cwnd; - u32 prr_out; - u32 lost_out; - u32 sacked_out; - u16 tcp_header_len; - u8 scaling_ratio; - u8 chrono_type: 2; - u8 repair: 1; - u8 tcp_usec_ts: 1; - u8 is_sack_reneg: 1; - u8 is_cwnd_limited: 1; - __u8 __cacheline_group_end__tcp_sock_read_txrx[0]; - __u8 __cacheline_group_begin__tcp_sock_read_rx[0]; - u32 copied_seq; - u32 rcv_tstamp; - u32 snd_wl1; - u32 tlp_high_seq; - u32 rttvar_us; - u32 retrans_out; - u16 advmss; - u16 urg_data; - u32 lost; - struct minmax rtt_min; - struct rb_root out_of_order_queue; - void (*tcp_clean_acked)(struct sock *, u32); - u32 snd_ssthresh; - u8 recvmsg_inq: 1; - __u8 __cacheline_group_end__tcp_sock_read_rx[0]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - __u8 __cacheline_group_begin__tcp_sock_write_tx[0]; - u32 segs_out; - u32 data_segs_out; - u64 bytes_sent; - u32 snd_sml; - u32 chrono_start; - u32 chrono_stat[3]; - u32 write_seq; - u32 pushed_seq; - u32 lsndtime; - u32 mdev_us; - u32 rtt_seq; - u64 tcp_wstamp_ns; - struct list_head tsorted_sent_queue; - struct sk_buff *highest_sack; - u8 ecn_flags; - __u8 __cacheline_group_end__tcp_sock_write_tx[0]; - __u8 __cacheline_group_begin__tcp_sock_write_txrx[0]; - __be32 pred_flags; - u64 tcp_clock_cache; - u64 tcp_mstamp; - u32 rcv_nxt; - u32 snd_nxt; - u32 snd_una; - u32 window_clamp; - u32 srtt_us; - u32 packets_out; - u32 snd_up; - u32 delivered; - u32 delivered_ce; - u32 app_limited; - u32 rcv_wnd; - struct tcp_options_received rx_opt; - u8 nonagle: 4; - u8 rate_app_limited: 1; - __u8 __cacheline_group_end__tcp_sock_write_txrx[0]; - long: 0; - __u8 __cacheline_group_begin__tcp_sock_write_rx[0]; - u64 bytes_received; - u32 segs_in; - u32 data_segs_in; - u32 rcv_wup; - u32 max_packets_out; - u32 cwnd_usage_seq; - u32 rate_delivered; - u32 rate_interval_us; - u32 rcv_rtt_last_tsecr; - u64 first_tx_mstamp; - u64 delivered_mstamp; - u64 bytes_acked; - struct { - u32 rtt_us; - u32 seq; - u64 time; - } rcv_rtt_est; - struct { - int space; - u32 seq; - u64 time; - } rcvq_space; - __u8 __cacheline_group_end__tcp_sock_write_rx[0]; - u32 dsack_dups; - u32 compressed_ack_rcv_nxt; - struct list_head tsq_node; - struct tcp_rack rack; - u8 compressed_ack; - u8 dup_ack_counter: 2; - u8 tlp_retrans: 1; - u8 unused: 5; - u8 thin_lto: 1; - u8 fastopen_connect: 1; - u8 fastopen_no_cookie: 1; - u8 fastopen_client_fail: 2; - u8 frto: 1; - u8 repair_queue; - u8 save_syn: 2; - u8 syn_data: 1; - u8 syn_fastopen: 1; - u8 syn_fastopen_exp: 1; - u8 syn_fastopen_ch: 1; - u8 syn_data_acked: 1; - u8 syn_fastopen_child: 1; - u8 keepalive_probes; - u32 tcp_tx_delay; - u32 mdev_max_us; - u32 reord_seen; - u32 snd_cwnd_cnt; - u32 snd_cwnd_clamp; - u32 snd_cwnd_used; - u32 snd_cwnd_stamp; - u32 prior_cwnd; - u32 prr_delivered; - u32 last_oow_ack_time; - struct hrtimer pacing_timer; - struct hrtimer compressed_ack_timer; - struct sk_buff *ooo_last_skb; - struct tcp_sack_block duplicate_sack[1]; - struct tcp_sack_block selective_acks[4]; - struct tcp_sack_block recv_sack_cache[4]; - u32 prior_ssthresh; - u32 high_seq; - u32 retrans_stamp; - u32 undo_marker; - int undo_retrans; - u64 bytes_retrans; - u32 total_retrans; - u32 rto_stamp; - u16 total_rto; - u16 total_rto_recoveries; - u32 total_rto_time; - u32 urg_seq; - unsigned int keepalive_time; - unsigned int keepalive_intvl; - int linger2; - u8 bpf_sock_ops_cb_flags; - u8 bpf_chg_cc_inprogress: 1; - u16 timeout_rehash; - u32 rcv_ooopack; - struct { - u32 probe_seq_start; - u32 probe_seq_end; - } mtu_probe; - u32 plb_rehash; - u32 mtu_info; - bool is_mptcp; - bool syn_smc; - bool (*smc_hs_congested)(const struct sock *); - const struct tcp_sock_af_ops *af_specific; - struct tcp_md5sig_info *md5sig_info; - struct tcp_ao_info *ao_info; - struct tcp_fastopen_request *fastopen_req; - struct request_sock *fastopen_rsk; - struct saved_syn *saved_syn; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct tcp_sock_af_ops { - struct tcp_md5sig_key * (*md5_lookup)(const struct sock *, const struct sock *); - int (*calc_md5_hash)(char *, const struct tcp_md5sig_key *, const struct sock *, const struct sk_buff *); - int (*md5_parse)(struct sock *, int, sockptr_t, int); - int (*ao_parse)(struct sock *, int, sockptr_t, int); - struct tcp_ao_key * (*ao_lookup)(const struct sock *, struct sock *, int, int); - int (*ao_calc_key_sk)(struct tcp_ao_key *, u8 *, const struct sock *, __be32, __be32, bool); - int (*calc_ao_hash)(char *, struct tcp_ao_key *, const struct sock *, const struct sk_buff *, const u8 *, int, u32); -}; - -struct iov_iter_state { - size_t iov_offset; - size_t count; - long unsigned int nr_segs; -}; - -struct netmem_desc { - long unsigned int _flags; - long unsigned int pp_magic; - struct page_pool *pp; - long unsigned int _pp_mapping_pad; - long unsigned int dma_addr; - atomic_long_t pp_ref_count; -}; - -enum net_iov_type { - NET_IOV_DMABUF = 0ULL, - NET_IOV_IOURING = 1ULL, - NET_IOV_MAX = 18446744073709551615ULL, -}; - -struct net_iov_area; - -struct net_iov { - union { - struct netmem_desc desc; - struct { - long unsigned int _flags; - long unsigned int pp_magic; - struct page_pool *pp; - long unsigned int _pp_mapping_pad; - long unsigned int dma_addr; - atomic_long_t pp_ref_count; - }; - }; - struct net_iov_area *owner; - enum net_iov_type type; -}; - -struct net_iov_area { - struct net_iov *niovs; - size_t num_niovs; - long unsigned int base_virtual; -}; - -enum socket_flags { - SOCKWQ_ASYNC_NOSPACE = 0, - SOCKWQ_ASYNC_WAITDATA = 1, - SOCK_NOSPACE = 2, - SOCK_SUPPORT_ZC = 3, - SOCK_CUSTOM_SOCKOPT = 4, -}; - -typedef size_t (*iov_step_f)(void *, size_t, size_t, void *, void *); - -typedef size_t (*iov_ustep_f)(void *, size_t, size_t, void *, void *); - -struct net_devmem_dmabuf_binding { - struct dma_buf *dmabuf; - struct dma_buf_attachment *attachment; - struct sg_table *sgt; - struct net_device *dev; - struct gen_pool *chunk_pool; - struct mutex lock; - refcount_t ref; - struct list_head list; - struct xarray bound_rxqs; - u32 id; - enum dma_data_direction direction; - struct net_iov **tx_vec; - struct work_struct unbind_w; -}; - -struct csum_state { - __wsum csum; - size_t off; -}; - -struct netdev_name_node { - struct hlist_node hlist; - struct list_head list; - struct net_device *dev; - const char *name; - struct callback_head rcu; -}; - -enum netdev_cmd { - NETDEV_UP = 1, - NETDEV_DOWN = 2, - NETDEV_REBOOT = 3, - NETDEV_CHANGE = 4, - NETDEV_REGISTER = 5, - NETDEV_UNREGISTER = 6, - NETDEV_CHANGEMTU = 7, - NETDEV_CHANGEADDR = 8, - NETDEV_PRE_CHANGEADDR = 9, - NETDEV_GOING_DOWN = 10, - NETDEV_CHANGENAME = 11, - NETDEV_FEAT_CHANGE = 12, - NETDEV_BONDING_FAILOVER = 13, - NETDEV_PRE_UP = 14, - NETDEV_PRE_TYPE_CHANGE = 15, - NETDEV_POST_TYPE_CHANGE = 16, - NETDEV_POST_INIT = 17, - NETDEV_PRE_UNINIT = 18, - NETDEV_RELEASE = 19, - NETDEV_NOTIFY_PEERS = 20, - NETDEV_JOIN = 21, - NETDEV_CHANGEUPPER = 22, - NETDEV_RESEND_IGMP = 23, - NETDEV_PRECHANGEMTU = 24, - NETDEV_CHANGEINFODATA = 25, - NETDEV_BONDING_INFO = 26, - NETDEV_PRECHANGEUPPER = 27, - NETDEV_CHANGELOWERSTATE = 28, - NETDEV_UDP_TUNNEL_PUSH_INFO = 29, - NETDEV_UDP_TUNNEL_DROP_INFO = 30, - NETDEV_CHANGE_TX_QUEUE_LEN = 31, - NETDEV_CVLAN_FILTER_PUSH_INFO = 32, - NETDEV_CVLAN_FILTER_DROP_INFO = 33, - NETDEV_SVLAN_FILTER_PUSH_INFO = 34, - NETDEV_SVLAN_FILTER_DROP_INFO = 35, - NETDEV_OFFLOAD_XSTATS_ENABLE = 36, - NETDEV_OFFLOAD_XSTATS_DISABLE = 37, - NETDEV_OFFLOAD_XSTATS_REPORT_USED = 38, - NETDEV_OFFLOAD_XSTATS_REPORT_DELTA = 39, - NETDEV_XDP_FEAT_CHANGE = 40, -}; - -enum { - IF_OPER_UNKNOWN = 0, - IF_OPER_NOTPRESENT = 1, - IF_OPER_DOWN = 2, - IF_OPER_LOWERLAYERDOWN = 3, - IF_OPER_TESTING = 4, - IF_OPER_DORMANT = 5, - IF_OPER_UP = 6, -}; - -struct netlink_dump_control { - int (*start)(struct netlink_callback *); - int (*dump)(struct sk_buff *, struct netlink_callback *); - int (*done)(struct netlink_callback *); - struct netlink_ext_ack *extack; - void *data; - struct module *module; - u32 min_dump_alloc; - int flags; -}; - -struct inet_ehash_bucket; - -struct inet_bind_hashbucket; - -struct inet_listen_hashbucket; - -struct inet_hashinfo { - struct inet_ehash_bucket *ehash; - spinlock_t *ehash_locks; - unsigned int ehash_mask; - unsigned int ehash_locks_mask; - struct kmem_cache *bind_bucket_cachep; - struct inet_bind_hashbucket *bhash; - struct kmem_cache *bind2_bucket_cachep; - struct inet_bind_hashbucket *bhash2; - unsigned int bhash_size; - unsigned int lhash2_mask; - struct inet_listen_hashbucket *lhash2; - bool pernet; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct tcp_fastopen_context { - siphash_key_t key[2]; - int num; - struct callback_head rcu; -}; - -struct rt6key { - struct in6_addr addr; - int plen; -}; - -struct rtable; - -struct fnhe_hash_bucket; - -struct fib_nh_common { - struct net_device *nhc_dev; - netdevice_tracker nhc_dev_tracker; - int nhc_oif; - unsigned char nhc_scope; - u8 nhc_family; - u8 nhc_gw_family; - unsigned char nhc_flags; - struct lwtunnel_state *nhc_lwtstate; - union { - __be32 ipv4; - struct in6_addr ipv6; - } nhc_gw; - int nhc_weight; - atomic_t nhc_upper_bound; - struct rtable **nhc_pcpu_rth_output; - struct rtable *nhc_rth_input; - struct fnhe_hash_bucket *nhc_exceptions; -}; - -struct rt6_exception_bucket; - -struct fib6_nh { - struct fib_nh_common nh_common; - long unsigned int last_probe; - struct rt6_info **rt6i_pcpu; - struct rt6_exception_bucket *rt6i_exception_bucket; -}; - -struct fib6_node; - -struct dst_metrics; - -struct nexthop; - -struct fib6_info { - struct fib6_table *fib6_table; - struct fib6_info *fib6_next; - struct fib6_node *fib6_node; - union { - struct list_head fib6_siblings; - struct list_head nh_list; - }; - unsigned int fib6_nsiblings; - refcount_t fib6_ref; - long unsigned int expires; - struct hlist_node gc_link; - struct dst_metrics *fib6_metrics; - struct rt6key fib6_dst; - u32 fib6_flags; - struct rt6key fib6_src; - struct rt6key fib6_prefsrc; - u32 fib6_metric; - u8 fib6_protocol; - u8 fib6_type; - u8 offload; - u8 trap; - u8 offload_failed; - u8 should_flush: 1; - u8 dst_nocount: 1; - u8 dst_nopolicy: 1; - u8 fib6_destroying: 1; - u8 unused: 4; - struct list_head purge_link; - struct callback_head rcu; - struct nexthop *nh; - struct fib6_nh fib6_nh[0]; -}; - -struct rt6_info { - struct dst_entry dst; - struct fib6_info *from; - int sernum; - struct rt6key rt6i_dst; - struct rt6key rt6i_src; - struct in6_addr rt6i_gateway; - struct inet6_dev *rt6i_idev; - u32 rt6i_flags; - short unsigned int rt6i_nfheader_len; -}; - -struct rt6_statistics { - __u32 fib_nodes; - __u32 fib_route_nodes; - __u32 fib_rt_entries; - __u32 fib_rt_cache; - __u32 fib_discarded_routes; - atomic_t fib_rt_alloc; -}; - -struct fib6_node { - struct fib6_node *parent; - struct fib6_node *left; - struct fib6_node *right; - struct fib6_node *subtree; - struct fib6_info *leaf; - __u16 fn_bit; - __u16 fn_flags; - int fn_sernum; - struct fib6_info *rr_ptr; - struct callback_head rcu; -}; - -struct fib6_table { - struct hlist_node tb6_hlist; - u32 tb6_id; - spinlock_t tb6_lock; - struct fib6_node tb6_root; - struct inet_peer_base tb6_peers; - unsigned int flags; - unsigned int fib_seq; - struct hlist_head tb6_gc_hlist; -}; - -typedef union { - __be32 a4; - __be32 a6[4]; - struct in6_addr in6; -} xfrm_address_t; - -struct xfrm_id { - xfrm_address_t daddr; - __be32 spi; - __u8 proto; -}; - -struct xfrm_selector { - xfrm_address_t daddr; - xfrm_address_t saddr; - __be16 dport; - __be16 dport_mask; - __be16 sport; - __be16 sport_mask; - __u16 family; - __u8 prefixlen_d; - __u8 prefixlen_s; - __u8 proto; - int ifindex; - __kernel_uid32_t user; -}; - -struct xfrm_lifetime_cfg { - __u64 soft_byte_limit; - __u64 hard_byte_limit; - __u64 soft_packet_limit; - __u64 hard_packet_limit; - __u64 soft_add_expires_seconds; - __u64 hard_add_expires_seconds; - __u64 soft_use_expires_seconds; - __u64 hard_use_expires_seconds; -}; - -struct xfrm_lifetime_cur { - __u64 bytes; - __u64 packets; - __u64 add_time; - __u64 use_time; -}; - -struct xfrm_replay_state { - __u32 oseq; - __u32 seq; - __u32 bitmap; -}; - -struct xfrm_replay_state_esn { - unsigned int bmp_len; - __u32 oseq; - __u32 seq; - __u32 oseq_hi; - __u32 seq_hi; - __u32 replay_window; - __u32 bmp[0]; -}; - -struct xfrm_algo { - char alg_name[64]; - unsigned int alg_key_len; - char alg_key[0]; -}; - -struct xfrm_algo_auth { - char alg_name[64]; - unsigned int alg_key_len; - unsigned int alg_trunc_len; - char alg_key[0]; -}; - -struct xfrm_algo_aead { - char alg_name[64]; - unsigned int alg_key_len; - unsigned int alg_icv_len; - char alg_key[0]; -}; - -struct xfrm_stats { - __u32 replay_window; - __u32 replay; - __u32 integrity_failed; -}; - -struct xfrm_encap_tmpl { - __u16 encap_type; - __be16 encap_sport; - __be16 encap_dport; - xfrm_address_t encap_oa; -}; - -struct xfrm_mark { - __u32 v; - __u32 m; -}; - -struct xfrm_address_filter { - xfrm_address_t saddr; - xfrm_address_t daddr; - __u16 family; - __u8 splen; - __u8 dplen; -}; - -enum { - NDA_UNSPEC = 0, - NDA_DST = 1, - NDA_LLADDR = 2, - NDA_CACHEINFO = 3, - NDA_PROBES = 4, - NDA_VLAN = 5, - NDA_PORT = 6, - NDA_VNI = 7, - NDA_IFINDEX = 8, - NDA_MASTER = 9, - NDA_LINK_NETNSID = 10, - NDA_SRC_VNI = 11, - NDA_PROTOCOL = 12, - NDA_NH_ID = 13, - NDA_FDB_EXT_ATTRS = 14, - NDA_FLAGS_EXT = 15, - NDA_NDM_STATE_MASK = 16, - NDA_NDM_FLAGS_MASK = 17, - __NDA_MAX = 18, -}; - -struct rtnl_link_stats { - __u32 rx_packets; - __u32 tx_packets; - __u32 rx_bytes; - __u32 tx_bytes; - __u32 rx_errors; - __u32 tx_errors; - __u32 rx_dropped; - __u32 tx_dropped; - __u32 multicast; - __u32 collisions; - __u32 rx_length_errors; - __u32 rx_over_errors; - __u32 rx_crc_errors; - __u32 rx_frame_errors; - __u32 rx_fifo_errors; - __u32 rx_missed_errors; - __u32 tx_aborted_errors; - __u32 tx_carrier_errors; - __u32 tx_fifo_errors; - __u32 tx_heartbeat_errors; - __u32 tx_window_errors; - __u32 rx_compressed; - __u32 tx_compressed; - __u32 rx_nohandler; -}; - -struct rtnl_link_ifmap { - __u64 mem_start; - __u64 mem_end; - __u64 base_addr; - __u16 irq; - __u8 dma; - __u8 port; -}; - -enum { - IFLA_UNSPEC = 0, - IFLA_ADDRESS = 1, - IFLA_BROADCAST = 2, - IFLA_IFNAME = 3, - IFLA_MTU = 4, - IFLA_LINK = 5, - IFLA_QDISC = 6, - IFLA_STATS = 7, - IFLA_COST = 8, - IFLA_PRIORITY = 9, - IFLA_MASTER = 10, - IFLA_WIRELESS = 11, - IFLA_PROTINFO = 12, - IFLA_TXQLEN = 13, - IFLA_MAP = 14, - IFLA_WEIGHT = 15, - IFLA_OPERSTATE = 16, - IFLA_LINKMODE = 17, - IFLA_LINKINFO = 18, - IFLA_NET_NS_PID = 19, - IFLA_IFALIAS = 20, - IFLA_NUM_VF = 21, - IFLA_VFINFO_LIST = 22, - IFLA_STATS64 = 23, - IFLA_VF_PORTS = 24, - IFLA_PORT_SELF = 25, - IFLA_AF_SPEC = 26, - IFLA_GROUP = 27, - IFLA_NET_NS_FD = 28, - IFLA_EXT_MASK = 29, - IFLA_PROMISCUITY = 30, - IFLA_NUM_TX_QUEUES = 31, - IFLA_NUM_RX_QUEUES = 32, - IFLA_CARRIER = 33, - IFLA_PHYS_PORT_ID = 34, - IFLA_CARRIER_CHANGES = 35, - IFLA_PHYS_SWITCH_ID = 36, - IFLA_LINK_NETNSID = 37, - IFLA_PHYS_PORT_NAME = 38, - IFLA_PROTO_DOWN = 39, - IFLA_GSO_MAX_SEGS = 40, - IFLA_GSO_MAX_SIZE = 41, - IFLA_PAD = 42, - IFLA_XDP = 43, - IFLA_EVENT = 44, - IFLA_NEW_NETNSID = 45, - IFLA_IF_NETNSID = 46, - IFLA_TARGET_NETNSID = 46, - IFLA_CARRIER_UP_COUNT = 47, - IFLA_CARRIER_DOWN_COUNT = 48, - IFLA_NEW_IFINDEX = 49, - IFLA_MIN_MTU = 50, - IFLA_MAX_MTU = 51, - IFLA_PROP_LIST = 52, - IFLA_ALT_IFNAME = 53, - IFLA_PERM_ADDRESS = 54, - IFLA_PROTO_DOWN_REASON = 55, - IFLA_PARENT_DEV_NAME = 56, - IFLA_PARENT_DEV_BUS_NAME = 57, - IFLA_GRO_MAX_SIZE = 58, - IFLA_TSO_MAX_SIZE = 59, - IFLA_TSO_MAX_SEGS = 60, - IFLA_ALLMULTI = 61, - IFLA_DEVLINK_PORT = 62, - IFLA_GSO_IPV4_MAX_SIZE = 63, - IFLA_GRO_IPV4_MAX_SIZE = 64, - IFLA_DPLL_PIN = 65, - IFLA_MAX_PACING_OFFLOAD_HORIZON = 66, - IFLA_NETNS_IMMUTABLE = 67, - __IFLA_MAX = 68, -}; - -enum { - IFLA_PROTO_DOWN_REASON_UNSPEC = 0, - IFLA_PROTO_DOWN_REASON_MASK = 1, - IFLA_PROTO_DOWN_REASON_VALUE = 2, - __IFLA_PROTO_DOWN_REASON_CNT = 3, - IFLA_PROTO_DOWN_REASON_MAX = 2, -}; - -enum { - IFLA_BRPORT_UNSPEC = 0, - IFLA_BRPORT_STATE = 1, - IFLA_BRPORT_PRIORITY = 2, - IFLA_BRPORT_COST = 3, - IFLA_BRPORT_MODE = 4, - IFLA_BRPORT_GUARD = 5, - IFLA_BRPORT_PROTECT = 6, - IFLA_BRPORT_FAST_LEAVE = 7, - IFLA_BRPORT_LEARNING = 8, - IFLA_BRPORT_UNICAST_FLOOD = 9, - IFLA_BRPORT_PROXYARP = 10, - IFLA_BRPORT_LEARNING_SYNC = 11, - IFLA_BRPORT_PROXYARP_WIFI = 12, - IFLA_BRPORT_ROOT_ID = 13, - IFLA_BRPORT_BRIDGE_ID = 14, - IFLA_BRPORT_DESIGNATED_PORT = 15, - IFLA_BRPORT_DESIGNATED_COST = 16, - IFLA_BRPORT_ID = 17, - IFLA_BRPORT_NO = 18, - IFLA_BRPORT_TOPOLOGY_CHANGE_ACK = 19, - IFLA_BRPORT_CONFIG_PENDING = 20, - IFLA_BRPORT_MESSAGE_AGE_TIMER = 21, - IFLA_BRPORT_FORWARD_DELAY_TIMER = 22, - IFLA_BRPORT_HOLD_TIMER = 23, - IFLA_BRPORT_FLUSH = 24, - IFLA_BRPORT_MULTICAST_ROUTER = 25, - IFLA_BRPORT_PAD = 26, - IFLA_BRPORT_MCAST_FLOOD = 27, - IFLA_BRPORT_MCAST_TO_UCAST = 28, - IFLA_BRPORT_VLAN_TUNNEL = 29, - IFLA_BRPORT_BCAST_FLOOD = 30, - IFLA_BRPORT_GROUP_FWD_MASK = 31, - IFLA_BRPORT_NEIGH_SUPPRESS = 32, - IFLA_BRPORT_ISOLATED = 33, - IFLA_BRPORT_BACKUP_PORT = 34, - IFLA_BRPORT_MRP_RING_OPEN = 35, - IFLA_BRPORT_MRP_IN_OPEN = 36, - IFLA_BRPORT_MCAST_EHT_HOSTS_LIMIT = 37, - IFLA_BRPORT_MCAST_EHT_HOSTS_CNT = 38, - IFLA_BRPORT_LOCKED = 39, - IFLA_BRPORT_MAB = 40, - IFLA_BRPORT_MCAST_N_GROUPS = 41, - IFLA_BRPORT_MCAST_MAX_GROUPS = 42, - IFLA_BRPORT_NEIGH_VLAN_SUPPRESS = 43, - IFLA_BRPORT_BACKUP_NHID = 44, - __IFLA_BRPORT_MAX = 45, -}; - -enum { - IFLA_INFO_UNSPEC = 0, - IFLA_INFO_KIND = 1, - IFLA_INFO_DATA = 2, - IFLA_INFO_XSTATS = 3, - IFLA_INFO_SLAVE_KIND = 4, - IFLA_INFO_SLAVE_DATA = 5, - __IFLA_INFO_MAX = 6, -}; - -enum { - IFLA_VF_INFO_UNSPEC = 0, - IFLA_VF_INFO = 1, - __IFLA_VF_INFO_MAX = 2, -}; - -enum { - IFLA_VF_UNSPEC = 0, - IFLA_VF_MAC = 1, - IFLA_VF_VLAN = 2, - IFLA_VF_TX_RATE = 3, - IFLA_VF_SPOOFCHK = 4, - IFLA_VF_LINK_STATE = 5, - IFLA_VF_RATE = 6, - IFLA_VF_RSS_QUERY_EN = 7, - IFLA_VF_STATS = 8, - IFLA_VF_TRUST = 9, - IFLA_VF_IB_NODE_GUID = 10, - IFLA_VF_IB_PORT_GUID = 11, - IFLA_VF_VLAN_LIST = 12, - IFLA_VF_BROADCAST = 13, - __IFLA_VF_MAX = 14, -}; - -struct ifla_vf_mac { - __u32 vf; - __u8 mac[32]; -}; - -struct ifla_vf_broadcast { - __u8 broadcast[32]; -}; - -struct ifla_vf_vlan { - __u32 vf; - __u32 vlan; - __u32 qos; -}; - -enum { - IFLA_VF_VLAN_INFO_UNSPEC = 0, - IFLA_VF_VLAN_INFO = 1, - __IFLA_VF_VLAN_INFO_MAX = 2, -}; - -struct ifla_vf_vlan_info { - __u32 vf; - __u32 vlan; - __u32 qos; - __be16 vlan_proto; -}; - -struct ifla_vf_tx_rate { - __u32 vf; - __u32 rate; -}; - -struct ifla_vf_rate { - __u32 vf; - __u32 min_tx_rate; - __u32 max_tx_rate; -}; - -struct ifla_vf_spoofchk { - __u32 vf; - __u32 setting; -}; - -struct ifla_vf_link_state { - __u32 vf; - __u32 link_state; -}; - -struct ifla_vf_rss_query_en { - __u32 vf; - __u32 setting; -}; - -enum { - IFLA_VF_STATS_RX_PACKETS = 0, - IFLA_VF_STATS_TX_PACKETS = 1, - IFLA_VF_STATS_RX_BYTES = 2, - IFLA_VF_STATS_TX_BYTES = 3, - IFLA_VF_STATS_BROADCAST = 4, - IFLA_VF_STATS_MULTICAST = 5, - IFLA_VF_STATS_PAD = 6, - IFLA_VF_STATS_RX_DROPPED = 7, - IFLA_VF_STATS_TX_DROPPED = 8, - __IFLA_VF_STATS_MAX = 9, -}; - -struct ifla_vf_trust { - __u32 vf; - __u32 setting; -}; - -enum { - IFLA_VF_PORT_UNSPEC = 0, - IFLA_VF_PORT = 1, - __IFLA_VF_PORT_MAX = 2, -}; - -enum { - IFLA_PORT_UNSPEC = 0, - IFLA_PORT_VF = 1, - IFLA_PORT_PROFILE = 2, - IFLA_PORT_VSI_TYPE = 3, - IFLA_PORT_INSTANCE_UUID = 4, - IFLA_PORT_HOST_UUID = 5, - IFLA_PORT_REQUEST = 6, - IFLA_PORT_RESPONSE = 7, - __IFLA_PORT_MAX = 8, -}; - -struct if_stats_msg { - __u8 family; - __u8 pad1; - __u16 pad2; - __u32 ifindex; - __u32 filter_mask; -}; - -enum { - IFLA_STATS_UNSPEC = 0, - IFLA_STATS_LINK_64 = 1, - IFLA_STATS_LINK_XSTATS = 2, - IFLA_STATS_LINK_XSTATS_SLAVE = 3, - IFLA_STATS_LINK_OFFLOAD_XSTATS = 4, - IFLA_STATS_AF_SPEC = 5, - __IFLA_STATS_MAX = 6, -}; - -enum { - IFLA_STATS_GETSET_UNSPEC = 0, - IFLA_STATS_GET_FILTERS = 1, - IFLA_STATS_SET_OFFLOAD_XSTATS_L3_STATS = 2, - __IFLA_STATS_GETSET_MAX = 3, -}; - -enum { - IFLA_OFFLOAD_XSTATS_UNSPEC = 0, - IFLA_OFFLOAD_XSTATS_CPU_HIT = 1, - IFLA_OFFLOAD_XSTATS_HW_S_INFO = 2, - IFLA_OFFLOAD_XSTATS_L3_STATS = 3, - __IFLA_OFFLOAD_XSTATS_MAX = 4, -}; - -enum { - IFLA_OFFLOAD_XSTATS_HW_S_INFO_UNSPEC = 0, - IFLA_OFFLOAD_XSTATS_HW_S_INFO_REQUEST = 1, - IFLA_OFFLOAD_XSTATS_HW_S_INFO_USED = 2, - __IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX = 3, -}; - -enum { - XDP_ATTACHED_NONE = 0, - XDP_ATTACHED_DRV = 1, - XDP_ATTACHED_SKB = 2, - XDP_ATTACHED_HW = 3, - XDP_ATTACHED_MULTI = 4, -}; - -enum { - IFLA_XDP_UNSPEC = 0, - IFLA_XDP_FD = 1, - IFLA_XDP_ATTACHED = 2, - IFLA_XDP_FLAGS = 3, - IFLA_XDP_PROG_ID = 4, - IFLA_XDP_DRV_PROG_ID = 5, - IFLA_XDP_SKB_PROG_ID = 6, - IFLA_XDP_HW_PROG_ID = 7, - IFLA_XDP_EXPECTED_FD = 8, - __IFLA_XDP_MAX = 9, -}; - -enum { - IFLA_EVENT_NONE = 0, - IFLA_EVENT_REBOOT = 1, - IFLA_EVENT_FEATURES = 2, - IFLA_EVENT_BONDING_FAILOVER = 3, - IFLA_EVENT_NOTIFY_PEERS = 4, - IFLA_EVENT_IGMP_RESEND = 5, - IFLA_EVENT_BONDING_OPTIONS = 6, -}; - -struct xfrm_state_walk { - struct list_head all; - u8 state; - u8 dying; - u8 proto; - u32 seq; - struct xfrm_address_filter *filter; -}; - -enum xfrm_replay_mode { - XFRM_REPLAY_MODE_LEGACY = 0, - XFRM_REPLAY_MODE_BMP = 1, - XFRM_REPLAY_MODE_ESN = 2, -}; - -struct xfrm_dev_offload { - struct net_device *dev; - netdevice_tracker dev_tracker; - struct net_device *real_dev; - long unsigned int offload_handle; - u8 dir: 2; - u8 type: 2; - u8 flags: 2; -}; - -struct xfrm_mode { - u8 encap; - u8 family; - u8 flags; -}; - -struct xfrm_type; - -struct xfrm_type_offload; - -struct xfrm_mode_cbs; - -struct xfrm_state { - possible_net_t xs_net; - union { - struct hlist_node gclist; - struct hlist_node bydst; - }; - union { - struct hlist_node dev_gclist; - struct hlist_node bysrc; - }; - struct hlist_node byspi; - struct hlist_node byseq; - struct hlist_node state_cache; - struct hlist_node state_cache_input; - refcount_t refcnt; - spinlock_t lock; - u32 pcpu_num; - struct xfrm_id id; - struct xfrm_selector sel; - struct xfrm_mark mark; - u32 if_id; - u32 tfcpad; - u32 genid; - struct xfrm_state_walk km; - struct { - u32 reqid; - u8 mode; - u8 replay_window; - u8 aalgo; - u8 ealgo; - u8 calgo; - u8 flags; - u16 family; - xfrm_address_t saddr; - int header_len; - int enc_hdr_len; - int trailer_len; - u32 extra_flags; - struct xfrm_mark smark; - } props; - struct xfrm_lifetime_cfg lft; - struct xfrm_algo_auth *aalg; - struct xfrm_algo *ealg; - struct xfrm_algo *calg; - struct xfrm_algo_aead *aead; - const char *geniv; - __be16 new_mapping_sport; - u32 new_mapping; - u32 mapping_maxage; - struct xfrm_encap_tmpl *encap; - u32 nat_keepalive_interval; - time64_t nat_keepalive_expiration; - xfrm_address_t *coaddr; - struct xfrm_state *tunnel; - atomic_t tunnel_users; - struct xfrm_replay_state replay; - struct xfrm_replay_state_esn *replay_esn; - struct xfrm_replay_state preplay; - struct xfrm_replay_state_esn *preplay_esn; - enum xfrm_replay_mode repl_mode; - u32 xflags; - u32 replay_maxage; - u32 replay_maxdiff; - struct timer_list rtimer; - struct xfrm_stats stats; - struct xfrm_lifetime_cur curlft; - struct hrtimer mtimer; - struct xfrm_dev_offload xso; - long int saved_tmo; - time64_t lastused; - struct page_frag xfrag; - const struct xfrm_type *type; - struct xfrm_mode inner_mode; - struct xfrm_mode inner_mode_iaf; - struct xfrm_mode outer_mode; - const struct xfrm_type_offload *type_offload; - struct xfrm_sec_ctx *security; - void *data; - u8 dir; - const struct xfrm_mode_cbs *mode_cbs; - void *mode_data; -}; - -struct xfrm_policy_walk_entry { - struct list_head all; - u8 dead; -}; - -struct xfrm_policy_queue { - struct sk_buff_head hold_queue; - struct timer_list hold_timer; - long unsigned int timeout; -}; - -struct xfrm_tmpl { - struct xfrm_id id; - xfrm_address_t saddr; - short unsigned int encap_family; - u32 reqid; - u8 mode; - u8 share; - u8 optional; - u8 allalgs; - u32 aalgos; - u32 ealgos; - u32 calgos; -}; - -struct xfrm_policy { - possible_net_t xp_net; - struct hlist_node bydst; - struct hlist_node byidx; - struct hlist_head state_cache_list; - rwlock_t lock; - refcount_t refcnt; - u32 pos; - struct timer_list timer; - atomic_t genid; - u32 priority; - u32 index; - u32 if_id; - struct xfrm_mark mark; - struct xfrm_selector selector; - struct xfrm_lifetime_cfg lft; - struct xfrm_lifetime_cur curlft; - struct xfrm_policy_walk_entry walk; - struct xfrm_policy_queue polq; - bool bydst_reinsert; - u8 type; - u8 action; - u8 flags; - u8 xfrm_nr; - u16 family; - struct xfrm_sec_ctx *security; - struct xfrm_tmpl xfrm_vec[6]; - struct callback_head rcu; - struct xfrm_dev_offload xdo; -}; - -enum devlink_port_type { - DEVLINK_PORT_TYPE_NOTSET = 0, - DEVLINK_PORT_TYPE_AUTO = 1, - DEVLINK_PORT_TYPE_ETH = 2, - DEVLINK_PORT_TYPE_IB = 3, -}; - -enum devlink_port_flavour { - DEVLINK_PORT_FLAVOUR_PHYSICAL = 0, - DEVLINK_PORT_FLAVOUR_CPU = 1, - DEVLINK_PORT_FLAVOUR_DSA = 2, - DEVLINK_PORT_FLAVOUR_PCI_PF = 3, - DEVLINK_PORT_FLAVOUR_PCI_VF = 4, - DEVLINK_PORT_FLAVOUR_VIRTUAL = 5, - DEVLINK_PORT_FLAVOUR_UNUSED = 6, - DEVLINK_PORT_FLAVOUR_PCI_SF = 7, -}; - -struct devlink_port_phys_attrs { - u32 port_number; - u32 split_subport_number; -}; - -struct devlink_port_pci_pf_attrs { - u32 controller; - u16 pf; - u8 external: 1; -}; - -struct devlink_port_pci_vf_attrs { - u32 controller; - u16 pf; - u16 vf; - u8 external: 1; -}; - -struct devlink_port_pci_sf_attrs { - u32 controller; - u32 sf; - u16 pf; - u8 external: 1; -}; - -struct devlink_port_attrs { - u8 split: 1; - u8 splittable: 1; - u8 no_phys_port_name: 1; - u32 lanes; - enum devlink_port_flavour flavour; - struct netdev_phys_item_id switch_id; - union { - struct devlink_port_phys_attrs phys; - struct devlink_port_pci_pf_attrs pci_pf; - struct devlink_port_pci_vf_attrs pci_vf; - struct devlink_port_pci_sf_attrs pci_sf; - }; -}; - -struct devlink_port_ops; - -struct devlink_rate; - -struct devlink_linecard; - -struct devlink_port { - struct list_head list; - struct list_head region_list; - struct devlink *devlink; - const struct devlink_port_ops *ops; - unsigned int index; - spinlock_t type_lock; - enum devlink_port_type type; - enum devlink_port_type desired_type; - union { - struct { - struct net_device *netdev; - int ifindex; - char ifname[16]; - } type_eth; - struct { - struct ib_device *ibdev; - } type_ib; - }; - struct devlink_port_attrs attrs; - u8 attrs_set: 1; - u8 switch_port: 1; - u8 registered: 1; - u8 initialized: 1; - struct delayed_work type_warn_dw; - struct list_head reporter_list; - struct devlink_rate *devlink_rate; - struct devlink_linecard *linecard; - u32 rel_index; -}; - -struct netdev_notifier_info { - struct net_device *dev; - struct netlink_ext_ack *extack; -}; - -enum netdev_offload_xstats_type { - NETDEV_OFFLOAD_XSTATS_TYPE_L3 = 1, -}; - -enum { - IFLA_BRIDGE_FLAGS = 0, - IFLA_BRIDGE_MODE = 1, - IFLA_BRIDGE_VLAN_INFO = 2, - IFLA_BRIDGE_VLAN_TUNNEL_INFO = 3, - IFLA_BRIDGE_MRP = 4, - IFLA_BRIDGE_CFM = 5, - IFLA_BRIDGE_MST = 6, - __IFLA_BRIDGE_MAX = 7, -}; - -struct br_port_msg { - __u8 family; - __u32 ifindex; -}; - -struct br_mdb_entry { - __u32 ifindex; - __u8 state; - __u8 flags; - __u16 vid; - struct { - union { - __be32 ip4; - struct in6_addr ip6; - unsigned char mac_addr[6]; - } u; - __be16 proto; - } addr; -}; - -enum { - MDBA_SET_ENTRY_UNSPEC = 0, - MDBA_SET_ENTRY = 1, - MDBA_SET_ENTRY_ATTRS = 2, - __MDBA_SET_ENTRY_MAX = 3, -}; - -enum { - MDBA_GET_ENTRY_UNSPEC = 0, - MDBA_GET_ENTRY = 1, - MDBA_GET_ENTRY_ATTRS = 2, - __MDBA_GET_ENTRY_MAX = 3, -}; - -enum { - BR_MCAST_DIR_RX = 0, - BR_MCAST_DIR_TX = 1, - BR_MCAST_DIR_SIZE = 2, -}; - -enum { - RTM_BASE = 16, - RTM_NEWLINK = 16, - RTM_DELLINK = 17, - RTM_GETLINK = 18, - RTM_SETLINK = 19, - RTM_NEWADDR = 20, - RTM_DELADDR = 21, - RTM_GETADDR = 22, - RTM_NEWROUTE = 24, - RTM_DELROUTE = 25, - RTM_GETROUTE = 26, - RTM_NEWNEIGH = 28, - RTM_DELNEIGH = 29, - RTM_GETNEIGH = 30, - RTM_NEWRULE = 32, - RTM_DELRULE = 33, - RTM_GETRULE = 34, - RTM_NEWQDISC = 36, - RTM_DELQDISC = 37, - RTM_GETQDISC = 38, - RTM_NEWTCLASS = 40, - RTM_DELTCLASS = 41, - RTM_GETTCLASS = 42, - RTM_NEWTFILTER = 44, - RTM_DELTFILTER = 45, - RTM_GETTFILTER = 46, - RTM_NEWACTION = 48, - RTM_DELACTION = 49, - RTM_GETACTION = 50, - RTM_NEWPREFIX = 52, - RTM_NEWMULTICAST = 56, - RTM_DELMULTICAST = 57, - RTM_GETMULTICAST = 58, - RTM_NEWANYCAST = 60, - RTM_DELANYCAST = 61, - RTM_GETANYCAST = 62, - RTM_NEWNEIGHTBL = 64, - RTM_GETNEIGHTBL = 66, - RTM_SETNEIGHTBL = 67, - RTM_NEWNDUSEROPT = 68, - RTM_NEWADDRLABEL = 72, - RTM_DELADDRLABEL = 73, - RTM_GETADDRLABEL = 74, - RTM_GETDCB = 78, - RTM_SETDCB = 79, - RTM_NEWNETCONF = 80, - RTM_DELNETCONF = 81, - RTM_GETNETCONF = 82, - RTM_NEWMDB = 84, - RTM_DELMDB = 85, - RTM_GETMDB = 86, - RTM_NEWNSID = 88, - RTM_DELNSID = 89, - RTM_GETNSID = 90, - RTM_NEWSTATS = 92, - RTM_GETSTATS = 94, - RTM_SETSTATS = 95, - RTM_NEWCACHEREPORT = 96, - RTM_NEWCHAIN = 100, - RTM_DELCHAIN = 101, - RTM_GETCHAIN = 102, - RTM_NEWNEXTHOP = 104, - RTM_DELNEXTHOP = 105, - RTM_GETNEXTHOP = 106, - RTM_NEWLINKPROP = 108, - RTM_DELLINKPROP = 109, - RTM_GETLINKPROP = 110, - RTM_NEWVLAN = 112, - RTM_DELVLAN = 113, - RTM_GETVLAN = 114, - RTM_NEWNEXTHOPBUCKET = 116, - RTM_DELNEXTHOPBUCKET = 117, - RTM_GETNEXTHOPBUCKET = 118, - RTM_NEWTUNNEL = 120, - RTM_DELTUNNEL = 121, - RTM_GETTUNNEL = 122, - __RTM_MAX = 123, -}; - -enum rtattr_type_t { - RTA_UNSPEC = 0, - RTA_DST = 1, - RTA_SRC = 2, - RTA_IIF = 3, - RTA_OIF = 4, - RTA_GATEWAY = 5, - RTA_PRIORITY = 6, - RTA_PREFSRC = 7, - RTA_METRICS = 8, - RTA_MULTIPATH = 9, - RTA_PROTOINFO = 10, - RTA_FLOW = 11, - RTA_CACHEINFO = 12, - RTA_SESSION = 13, - RTA_MP_ALGO = 14, - RTA_TABLE = 15, - RTA_MARK = 16, - RTA_MFC_STATS = 17, - RTA_VIA = 18, - RTA_NEWDST = 19, - RTA_PREF = 20, - RTA_ENCAP_TYPE = 21, - RTA_ENCAP = 22, - RTA_EXPIRES = 23, - RTA_PAD = 24, - RTA_UID = 25, - RTA_TTL_PROPAGATE = 26, - RTA_IP_PROTO = 27, - RTA_SPORT = 28, - RTA_DPORT = 29, - RTA_NH_ID = 30, - RTA_FLOWLABEL = 31, - __RTA_MAX = 32, -}; - -struct rta_cacheinfo { - __u32 rta_clntref; - __u32 rta_lastuse; - __s32 rta_expires; - __u32 rta_error; - __u32 rta_used; - __u32 rta_id; - __u32 rta_ts; - __u32 rta_tsage; -}; - -struct rtgenmsg { - unsigned char rtgen_family; -}; - -struct ifinfomsg { - unsigned char ifi_family; - unsigned char __ifi_pad; - short unsigned int ifi_type; - int ifi_index; - unsigned int ifi_flags; - unsigned int ifi_change; -}; - -enum rtnetlink_groups { - RTNLGRP_NONE = 0, - RTNLGRP_LINK = 1, - RTNLGRP_NOTIFY = 2, - RTNLGRP_NEIGH = 3, - RTNLGRP_TC = 4, - RTNLGRP_IPV4_IFADDR = 5, - RTNLGRP_IPV4_MROUTE = 6, - RTNLGRP_IPV4_ROUTE = 7, - RTNLGRP_IPV4_RULE = 8, - RTNLGRP_IPV6_IFADDR = 9, - RTNLGRP_IPV6_MROUTE = 10, - RTNLGRP_IPV6_ROUTE = 11, - RTNLGRP_IPV6_IFINFO = 12, - RTNLGRP_DECnet_IFADDR = 13, - RTNLGRP_NOP2 = 14, - RTNLGRP_DECnet_ROUTE = 15, - RTNLGRP_DECnet_RULE = 16, - RTNLGRP_NOP4 = 17, - RTNLGRP_IPV6_PREFIX = 18, - RTNLGRP_IPV6_RULE = 19, - RTNLGRP_ND_USEROPT = 20, - RTNLGRP_PHONET_IFADDR = 21, - RTNLGRP_PHONET_ROUTE = 22, - RTNLGRP_DCB = 23, - RTNLGRP_IPV4_NETCONF = 24, - RTNLGRP_IPV6_NETCONF = 25, - RTNLGRP_MDB = 26, - RTNLGRP_MPLS_ROUTE = 27, - RTNLGRP_NSID = 28, - RTNLGRP_MPLS_NETCONF = 29, - RTNLGRP_IPV4_MROUTE_R = 30, - RTNLGRP_IPV6_MROUTE_R = 31, - RTNLGRP_NEXTHOP = 32, - RTNLGRP_BRVLAN = 33, - RTNLGRP_MCTP_IFADDR = 34, - RTNLGRP_TUNNEL = 35, - RTNLGRP_STATS = 36, - RTNLGRP_IPV4_MCADDR = 37, - RTNLGRP_IPV6_MCADDR = 38, - RTNLGRP_IPV6_ACADDR = 39, - __RTNLGRP_MAX = 40, -}; - -struct ndo_fdb_dump_context { - long unsigned int ifindex; - long unsigned int fdb_idx; -}; - -enum { - NLA_UNSPEC = 0, - NLA_U8 = 1, - NLA_U16 = 2, - NLA_U32 = 3, - NLA_U64 = 4, - NLA_STRING = 5, - NLA_FLAG = 6, - NLA_MSECS = 7, - NLA_NESTED = 8, - NLA_NESTED_ARRAY = 9, - NLA_NUL_STRING = 10, - NLA_BINARY = 11, - NLA_S8 = 12, - NLA_S16 = 13, - NLA_S32 = 14, - NLA_S64 = 15, - NLA_BITFIELD32 = 16, - NLA_REJECT = 17, - NLA_BE16 = 18, - NLA_BE32 = 19, - NLA_SINT = 20, - NLA_UINT = 21, - __NLA_TYPE_MAX = 22, -}; - -enum nla_policy_validation { - NLA_VALIDATE_NONE = 0, - NLA_VALIDATE_RANGE = 1, - NLA_VALIDATE_RANGE_WARN_TOO_LONG = 2, - NLA_VALIDATE_MIN = 3, - NLA_VALIDATE_MAX = 4, - NLA_VALIDATE_MASK = 5, - NLA_VALIDATE_RANGE_PTR = 6, - NLA_VALIDATE_FUNCTION = 7, -}; - -typedef int (*rtnl_doit_func)(struct sk_buff *, struct nlmsghdr *, struct netlink_ext_ack *); - -typedef int (*rtnl_dumpit_func)(struct sk_buff *, struct netlink_callback *); - -enum rtnl_link_flags { - RTNL_FLAG_DOIT_UNLOCKED = 1, - RTNL_FLAG_BULK_DEL_SUPPORTED = 2, - RTNL_FLAG_DUMP_UNLOCKED = 4, - RTNL_FLAG_DUMP_SPLIT_NLM_DONE = 8, -}; - -enum rtnl_kinds { - RTNL_KIND_NEW = 0, - RTNL_KIND_DEL = 1, - RTNL_KIND_GET = 2, - RTNL_KIND_SET = 3, -}; - -struct rtnl_msg_handler { - struct module *owner; - int protocol; - int msgtype; - rtnl_doit_func doit; - rtnl_dumpit_func dumpit; - int flags; -}; - -struct rtnl_af_ops { - struct list_head list; - struct srcu_struct srcu; - int family; - int (*fill_link_af)(struct sk_buff *, const struct net_device *, u32); - size_t (*get_link_af_size)(const struct net_device *, u32); - int (*validate_link_af)(const struct net_device *, const struct nlattr *, struct netlink_ext_ack *); - int (*set_link_af)(struct net_device *, const struct nlattr *, struct netlink_ext_ack *); - int (*fill_stats_af)(struct sk_buff *, const struct net_device *); - size_t (*get_stats_af_size)(const struct net_device *); -}; - -struct dst_metrics { - u32 metrics[17]; - refcount_t refcnt; -}; - -struct fib_nh_exception { - struct fib_nh_exception *fnhe_next; - int fnhe_genid; - __be32 fnhe_daddr; - u32 fnhe_pmtu; - bool fnhe_mtu_locked; - __be32 fnhe_gw; - long unsigned int fnhe_expires; - struct rtable *fnhe_rth_input; - struct rtable *fnhe_rth_output; - long unsigned int fnhe_stamp; - struct callback_head rcu; -}; - -struct rtable { - struct dst_entry dst; - int rt_genid; - unsigned int rt_flags; - __u16 rt_type; - __u8 rt_is_input; - __u8 rt_uses_gateway; - int rt_iif; - u8 rt_gw_family; - union { - __be32 rt_gw4; - struct in6_addr rt_gw6; - }; - u32 rt_mtu_locked: 1; - u32 rt_pmtu: 31; -}; - -struct fnhe_hash_bucket { - struct fib_nh_exception *chain; -}; - -struct inet_ehash_bucket { - struct hlist_nulls_head chain; -}; - -struct inet_bind_hashbucket { - spinlock_t lock; - struct hlist_head chain; -}; - -struct inet_listen_hashbucket { - spinlock_t lock; - struct hlist_nulls_head nulls_head; -}; - -struct qdisc_walker { - int stop; - int skip; - int count; - int (*fn)(struct Qdisc *, long unsigned int, struct qdisc_walker *); -}; - -struct rt6_exception_bucket { - struct hlist_head chain; - int depth; -}; - -struct xfrm_type { - struct module *owner; - u8 proto; - u8 flags; - int (*init_state)(struct xfrm_state *, struct netlink_ext_ack *); - void (*destructor)(struct xfrm_state *); - int (*input)(struct xfrm_state *, struct sk_buff *); - int (*output)(struct xfrm_state *, struct sk_buff *); - int (*reject)(struct xfrm_state *, struct sk_buff *, const struct flowi *); -}; - -struct xfrm_type_offload { - struct module *owner; - u8 proto; - void (*encap)(struct xfrm_state *, struct sk_buff *); - int (*input_tail)(struct xfrm_state *, struct sk_buff *); - int (*xmit)(struct xfrm_state *, struct sk_buff *, netdev_features_t); -}; - -struct xfrm_mode_cbs { - struct module *owner; - int (*init_state)(struct xfrm_state *); - int (*clone_state)(struct xfrm_state *, struct xfrm_state *); - void (*destroy_state)(struct xfrm_state *); - int (*user_init)(struct net *, struct xfrm_state *, struct nlattr **, struct netlink_ext_ack *); - int (*copy_to_user)(struct xfrm_state *, struct sk_buff *); - unsigned int (*sa_len)(const struct xfrm_state *); - u32 (*get_inner_mtu)(struct xfrm_state *, int); - int (*input)(struct xfrm_state *, struct sk_buff *); - int (*output)(struct net *, struct sock *, struct sk_buff *); - int (*prepare_output)(struct xfrm_state *, struct sk_buff *); -}; - -struct ack_sample { - u32 pkts_acked; - s32 rtt_us; - u32 in_flight; -}; - -struct rate_sample { - u64 prior_mstamp; - u32 prior_delivered; - u32 prior_delivered_ce; - s32 delivered; - s32 delivered_ce; - long int interval_us; - u32 snd_interval_us; - u32 rcv_interval_us; - long int rtt_us; - int losses; - u32 acked_sacked; - u32 prior_in_flight; - u32 last_end_seq; - bool is_app_limited; - bool is_retrans; - bool is_ack_delayed; -}; - -enum devlink_rate_type { - DEVLINK_RATE_TYPE_LEAF = 0, - DEVLINK_RATE_TYPE_NODE = 1, -}; - -enum devlink_port_fn_state { - DEVLINK_PORT_FN_STATE_INACTIVE = 0, - DEVLINK_PORT_FN_STATE_ACTIVE = 1, -}; - -enum devlink_port_fn_opstate { - DEVLINK_PORT_FN_OPSTATE_DETACHED = 0, - DEVLINK_PORT_FN_OPSTATE_ATTACHED = 1, -}; - -struct devlink_rate { - struct list_head list; - enum devlink_rate_type type; - struct devlink *devlink; - void *priv; - u64 tx_share; - u64 tx_max; - struct devlink_rate *parent; - union { - struct devlink_port *devlink_port; - struct { - char *name; - refcount_t refcnt; - }; - }; - u32 tx_priority; - u32 tx_weight; - u32 tc_bw[8]; -}; - -struct devlink_port_ops { - int (*port_split)(struct devlink *, struct devlink_port *, unsigned int, struct netlink_ext_ack *); - int (*port_unsplit)(struct devlink *, struct devlink_port *, struct netlink_ext_ack *); - int (*port_type_set)(struct devlink_port *, enum devlink_port_type); - int (*port_del)(struct devlink *, struct devlink_port *, struct netlink_ext_ack *); - int (*port_fn_hw_addr_get)(struct devlink_port *, u8 *, int *, struct netlink_ext_ack *); - int (*port_fn_hw_addr_set)(struct devlink_port *, const u8 *, int, struct netlink_ext_ack *); - int (*port_fn_roce_get)(struct devlink_port *, bool *, struct netlink_ext_ack *); - int (*port_fn_roce_set)(struct devlink_port *, bool, struct netlink_ext_ack *); - int (*port_fn_migratable_get)(struct devlink_port *, bool *, struct netlink_ext_ack *); - int (*port_fn_migratable_set)(struct devlink_port *, bool, struct netlink_ext_ack *); - int (*port_fn_state_get)(struct devlink_port *, enum devlink_port_fn_state *, enum devlink_port_fn_opstate *, struct netlink_ext_ack *); - int (*port_fn_state_set)(struct devlink_port *, enum devlink_port_fn_state, struct netlink_ext_ack *); - int (*port_fn_ipsec_crypto_get)(struct devlink_port *, bool *, struct netlink_ext_ack *); - int (*port_fn_ipsec_crypto_set)(struct devlink_port *, bool, struct netlink_ext_ack *); - int (*port_fn_ipsec_packet_get)(struct devlink_port *, bool *, struct netlink_ext_ack *); - int (*port_fn_ipsec_packet_set)(struct devlink_port *, bool, struct netlink_ext_ack *); - int (*port_fn_max_io_eqs_get)(struct devlink_port *, u32 *, struct netlink_ext_ack *); - int (*port_fn_max_io_eqs_set)(struct devlink_port *, u32, struct netlink_ext_ack *); -}; - -struct rtnl_link { - rtnl_doit_func doit; - rtnl_dumpit_func dumpit; - struct module *owner; - unsigned int flags; - struct callback_head rcu; -}; - -struct rtnl_nets { - struct net *net[3]; - unsigned char len; -}; - -struct rtnl_newlink_tbs { - struct nlattr *tb[68]; - struct nlattr *linkinfo[6]; - struct nlattr *attr[51]; - struct nlattr *slave_attr[45]; -}; - -struct rtnl_offload_xstats_request_used { - bool request; - bool used; -}; - -struct rtnl_stats_dump_filters { - u32 mask[6]; -}; - -struct rtnl_mdb_dump_ctx { - long int idx; -}; - -struct ifconf { - int ifc_len; - union { - char *ifcu_buf; - struct ifreq *ifcu_req; - } ifc_ifcu; -}; - -typedef u32 compat_caddr_t; - -struct compat_ifmap { - compat_ulong_t mem_start; - compat_ulong_t mem_end; - short unsigned int base_addr; - unsigned char irq; - unsigned char dma; - unsigned char port; -}; - -struct compat_ifconf { - compat_int_t ifc_len; - compat_caddr_t ifcbuf; -}; - -enum phylink_op_type { - PHYLINK_NETDEV = 0, - PHYLINK_DEV = 1, -}; - -struct phylink_link_state; - -struct phylink_config { - struct device *dev; - enum phylink_op_type type; - bool poll_fixed_state; - bool mac_managed_pm; - bool mac_requires_rxc; - bool default_an_inband; - bool eee_rx_clk_stop_enable; - void (*get_fixed_state)(struct phylink_config *, struct phylink_link_state *); - long unsigned int supported_interfaces[1]; - long unsigned int lpi_interfaces[1]; - long unsigned int mac_capabilities; - long unsigned int lpi_capabilities; - u32 lpi_timer_default; - bool eee_enabled_default; -}; - -struct dsa_device_ops; - -struct dsa_switch_tree; - -struct dsa_switch; - -struct dsa_bridge; - -struct dsa_lag; - -struct dsa_port { - union { - struct net_device *conduit; - struct net_device *user; - }; - const struct dsa_device_ops *tag_ops; - struct dsa_switch_tree *dst; - struct sk_buff * (*rcv)(struct sk_buff *, struct net_device *); - struct dsa_switch *ds; - unsigned int index; - enum { - DSA_PORT_TYPE_UNUSED = 0, - DSA_PORT_TYPE_CPU = 1, - DSA_PORT_TYPE_DSA = 2, - DSA_PORT_TYPE_USER = 3, - } type; - const char *name; - struct dsa_port *cpu_dp; - u8 mac[6]; - u8 stp_state; - u8 vlan_filtering: 1; - u8 learning: 1; - u8 lag_tx_enabled: 1; - u8 conduit_admin_up: 1; - u8 conduit_oper_up: 1; - u8 cpu_port_in_lag: 1; - u8 setup: 1; - struct device_node *dn; - unsigned int ageing_time; - struct dsa_bridge *bridge; - struct devlink_port devlink_port; - struct phylink *pl; - struct phylink_config pl_config; - netdevice_tracker conduit_tracker; - struct dsa_lag *lag; - struct net_device *hsr_dev; - struct list_head list; - const struct ethtool_ops *orig_ethtool_ops; - struct mutex addr_lists_lock; - struct list_head fdbs; - struct list_head mdbs; - struct mutex vlans_lock; - union { - struct list_head vlans; - struct list_head user_vlans; - }; -}; - -enum netdev_lag_tx_type { - NETDEV_LAG_TX_TYPE_UNKNOWN = 0, - NETDEV_LAG_TX_TYPE_RANDOM = 1, - NETDEV_LAG_TX_TYPE_BROADCAST = 2, - NETDEV_LAG_TX_TYPE_ROUNDROBIN = 3, - NETDEV_LAG_TX_TYPE_ACTIVEBACKUP = 4, - NETDEV_LAG_TX_TYPE_HASH = 5, -}; - -enum netdev_lag_hash { - NETDEV_LAG_HASH_NONE = 0, - NETDEV_LAG_HASH_L2 = 1, - NETDEV_LAG_HASH_L34 = 2, - NETDEV_LAG_HASH_L23 = 3, - NETDEV_LAG_HASH_E23 = 4, - NETDEV_LAG_HASH_E34 = 5, - NETDEV_LAG_HASH_VLAN_SRCMAC = 6, - NETDEV_LAG_HASH_UNKNOWN = 7, -}; - -struct netdev_lag_upper_info { - enum netdev_lag_tx_type tx_type; - enum netdev_lag_hash hash_type; -}; - -struct netdev_notifier_changeupper_info { - struct netdev_notifier_info info; - struct net_device *upper_dev; - bool master; - bool linking; - void *upper_info; -}; - -struct hwtstamp_config { - int flags; - int tx_type; - int rx_filter; -}; - -enum hwtstamp_flags { - HWTSTAMP_FLAG_BONDED_PHC_INDEX = 1, - HWTSTAMP_FLAG_LAST = 1, - HWTSTAMP_FLAG_MASK = 1, -}; - -enum hwtstamp_tx_types { - HWTSTAMP_TX_OFF = 0, - HWTSTAMP_TX_ON = 1, - HWTSTAMP_TX_ONESTEP_SYNC = 2, - HWTSTAMP_TX_ONESTEP_P2P = 3, - __HWTSTAMP_TX_CNT = 4, -}; - -enum hwtstamp_rx_filters { - HWTSTAMP_FILTER_NONE = 0, - HWTSTAMP_FILTER_ALL = 1, - HWTSTAMP_FILTER_SOME = 2, - HWTSTAMP_FILTER_PTP_V1_L4_EVENT = 3, - HWTSTAMP_FILTER_PTP_V1_L4_SYNC = 4, - HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ = 5, - HWTSTAMP_FILTER_PTP_V2_L4_EVENT = 6, - HWTSTAMP_FILTER_PTP_V2_L4_SYNC = 7, - HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ = 8, - HWTSTAMP_FILTER_PTP_V2_L2_EVENT = 9, - HWTSTAMP_FILTER_PTP_V2_L2_SYNC = 10, - HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ = 11, - HWTSTAMP_FILTER_PTP_V2_EVENT = 12, - HWTSTAMP_FILTER_PTP_V2_SYNC = 13, - HWTSTAMP_FILTER_PTP_V2_DELAY_REQ = 14, - HWTSTAMP_FILTER_NTP_ALL = 15, - __HWTSTAMP_FILTER_CNT = 16, -}; - -struct phylib_stubs { - int (*hwtstamp_get)(struct phy_device *, struct kernel_hwtstamp_config *); - int (*hwtstamp_set)(struct phy_device *, struct kernel_hwtstamp_config *, struct netlink_ext_ack *); - void (*get_phy_stats)(struct phy_device *, struct ethtool_eth_phy_stats *, struct ethtool_phy_stats *); - void (*get_link_ext_stats)(struct phy_device *, struct ethtool_link_ext_stats *); -}; - -struct flow_match { - struct flow_dissector *dissector; - void *mask; - void *key; -}; - -enum flow_action_id { - FLOW_ACTION_ACCEPT = 0, - FLOW_ACTION_DROP = 1, - FLOW_ACTION_TRAP = 2, - FLOW_ACTION_GOTO = 3, - FLOW_ACTION_REDIRECT = 4, - FLOW_ACTION_MIRRED = 5, - FLOW_ACTION_REDIRECT_INGRESS = 6, - FLOW_ACTION_MIRRED_INGRESS = 7, - FLOW_ACTION_VLAN_PUSH = 8, - FLOW_ACTION_VLAN_POP = 9, - FLOW_ACTION_VLAN_MANGLE = 10, - FLOW_ACTION_TUNNEL_ENCAP = 11, - FLOW_ACTION_TUNNEL_DECAP = 12, - FLOW_ACTION_MANGLE = 13, - FLOW_ACTION_ADD = 14, - FLOW_ACTION_CSUM = 15, - FLOW_ACTION_MARK = 16, - FLOW_ACTION_PTYPE = 17, - FLOW_ACTION_PRIORITY = 18, - FLOW_ACTION_RX_QUEUE_MAPPING = 19, - FLOW_ACTION_WAKE = 20, - FLOW_ACTION_QUEUE = 21, - FLOW_ACTION_SAMPLE = 22, - FLOW_ACTION_POLICE = 23, - FLOW_ACTION_CT = 24, - FLOW_ACTION_CT_METADATA = 25, - FLOW_ACTION_MPLS_PUSH = 26, - FLOW_ACTION_MPLS_POP = 27, - FLOW_ACTION_MPLS_MANGLE = 28, - FLOW_ACTION_GATE = 29, - FLOW_ACTION_PPPOE_PUSH = 30, - FLOW_ACTION_JUMP = 31, - FLOW_ACTION_PIPE = 32, - FLOW_ACTION_VLAN_PUSH_ETH = 33, - FLOW_ACTION_VLAN_POP_ETH = 34, - FLOW_ACTION_CONTINUE = 35, - NUM_FLOW_ACTIONS = 36, -}; - -enum flow_action_hw_stats { - FLOW_ACTION_HW_STATS_IMMEDIATE = 1, - FLOW_ACTION_HW_STATS_DELAYED = 2, - FLOW_ACTION_HW_STATS_ANY = 3, - FLOW_ACTION_HW_STATS_DISABLED = 4, - FLOW_ACTION_HW_STATS_DONT_CARE = 7, -}; - -typedef void (*action_destr)(void *); - -enum flow_action_mangle_base { - FLOW_ACT_MANGLE_UNSPEC = 0, - FLOW_ACT_MANGLE_HDR_TYPE_ETH = 1, - FLOW_ACT_MANGLE_HDR_TYPE_IP4 = 2, - FLOW_ACT_MANGLE_HDR_TYPE_IP6 = 3, - FLOW_ACT_MANGLE_HDR_TYPE_TCP = 4, - FLOW_ACT_MANGLE_HDR_TYPE_UDP = 5, -}; - -struct nf_flowtable; - -struct ip_tunnel_info; - -struct psample_group; - -struct action_gate_entry; - -struct flow_action_cookie; - -struct flow_action_entry { - enum flow_action_id id; - u32 hw_index; - long unsigned int cookie; - u64 miss_cookie; - enum flow_action_hw_stats hw_stats; - action_destr destructor; - void *destructor_priv; - union { - u32 chain_index; - struct net_device *dev; - struct { - u16 vid; - __be16 proto; - u8 prio; - } vlan; - struct { - unsigned char dst[6]; - unsigned char src[6]; - } vlan_push_eth; - struct { - enum flow_action_mangle_base htype; - u32 offset; - u32 mask; - u32 val; - } mangle; - struct ip_tunnel_info *tunnel; - u32 csum_flags; - u32 mark; - u16 ptype; - u16 rx_queue; - u32 priority; - struct { - u32 ctx; - u32 index; - u8 vf; - } queue; - struct { - struct psample_group *psample_group; - u32 rate; - u32 trunc_size; - bool truncate; - } sample; - struct { - u32 burst; - u64 rate_bytes_ps; - u64 peakrate_bytes_ps; - u32 avrate; - u16 overhead; - u64 burst_pkt; - u64 rate_pkt_ps; - u32 mtu; - struct { - enum flow_action_id act_id; - u32 extval; - } exceed; - struct { - enum flow_action_id act_id; - u32 extval; - } notexceed; - } police; - struct { - int action; - u16 zone; - struct nf_flowtable *flow_table; - } ct; - struct { - long unsigned int cookie; - u32 mark; - u32 labels[4]; - bool orig_dir; - } ct_metadata; - struct { - u32 label; - __be16 proto; - u8 tc; - u8 bos; - u8 ttl; - } mpls_push; - struct { - __be16 proto; - } mpls_pop; - struct { - u32 label; - u8 tc; - u8 bos; - u8 ttl; - } mpls_mangle; - struct { - s32 prio; - u64 basetime; - u64 cycletime; - u64 cycletimeext; - u32 num_entries; - struct action_gate_entry *entries; - } gate; - struct { - u16 sid; - } pppoe; - }; - struct flow_action_cookie *user_cookie; -}; - -struct flow_action { - unsigned int num_entries; - struct flow_action_entry entries[0]; -}; - -struct flow_rule { - struct flow_match match; - struct flow_action action; -}; - -struct dsa_chip_data { - struct device *host_dev; - int sw_addr; - struct device *netdev[12]; - int eeprom_len; - struct device_node *of_node; - char *port_names[12]; - struct device_node *port_dn[12]; - s8 rtable[4]; -}; - -struct dsa_platform_data { - struct device *netdev; - struct net_device *of_netdev; - int nr_chips; - struct dsa_chip_data *chip; -}; - -struct phylink_link_state { - long unsigned int advertising[2]; - long unsigned int lp_advertising[2]; - phy_interface_t interface; - int speed; - int duplex; - int pause; - int rate_matching; - unsigned int link: 1; - unsigned int an_complete: 1; -}; - -struct phylink_pcs; - -struct phylink_mac_ops { - long unsigned int (*mac_get_caps)(struct phylink_config *, phy_interface_t); - struct phylink_pcs * (*mac_select_pcs)(struct phylink_config *, phy_interface_t); - int (*mac_prepare)(struct phylink_config *, unsigned int, phy_interface_t); - void (*mac_config)(struct phylink_config *, unsigned int, const struct phylink_link_state *); - int (*mac_finish)(struct phylink_config *, unsigned int, phy_interface_t); - void (*mac_link_down)(struct phylink_config *, unsigned int, phy_interface_t); - void (*mac_link_up)(struct phylink_config *, struct phy_device *, unsigned int, phy_interface_t, int, int, bool, bool); - void (*mac_disable_tx_lpi)(struct phylink_config *); - int (*mac_enable_tx_lpi)(struct phylink_config *, u32, bool); -}; - -struct phylink_pcs_ops; - -struct phylink_pcs { - long unsigned int supported_interfaces[1]; - const struct phylink_pcs_ops *ops; - struct phylink *phylink; - bool poll; - bool rxc_always_on; -}; - -struct phylink_pcs_ops { - int (*pcs_validate)(struct phylink_pcs *, long unsigned int *, const struct phylink_link_state *); - unsigned int (*pcs_inband_caps)(struct phylink_pcs *, phy_interface_t); - int (*pcs_enable)(struct phylink_pcs *); - void (*pcs_disable)(struct phylink_pcs *); - void (*pcs_pre_config)(struct phylink_pcs *, phy_interface_t); - int (*pcs_post_config)(struct phylink_pcs *, phy_interface_t); - void (*pcs_get_state)(struct phylink_pcs *, unsigned int, struct phylink_link_state *); - int (*pcs_config)(struct phylink_pcs *, unsigned int, phy_interface_t, const long unsigned int *, bool); - void (*pcs_an_restart)(struct phylink_pcs *); - void (*pcs_link_up)(struct phylink_pcs *, unsigned int, phy_interface_t, int, int); - void (*pcs_disable_eee)(struct phylink_pcs *); - void (*pcs_enable_eee)(struct phylink_pcs *); - int (*pcs_pre_init)(struct phylink_pcs *); -}; - -struct flow_action_cookie { - u32 cookie_len; - u8 cookie[0]; -}; - -struct flow_stats { - u64 pkts; - u64 bytes; - u64 drops; - u64 lastused; - enum flow_action_hw_stats used_hw_stats; - bool used_hw_stats_valid; -}; - -enum flow_cls_command { - FLOW_CLS_REPLACE = 0, - FLOW_CLS_DESTROY = 1, - FLOW_CLS_STATS = 2, - FLOW_CLS_TMPLT_CREATE = 3, - FLOW_CLS_TMPLT_DESTROY = 4, -}; - -struct flow_cls_common_offload { - u32 chain_index; - __be16 protocol; - u32 prio; - bool skip_sw; - struct netlink_ext_ack *extack; -}; - -struct flow_cls_offload { - struct flow_cls_common_offload common; - enum flow_cls_command command; - bool use_act_stats; - long unsigned int cookie; - struct flow_rule *rule; - struct flow_stats stats; - u32 classid; -}; - -enum devlink_sb_pool_type { - DEVLINK_SB_POOL_TYPE_INGRESS = 0, - DEVLINK_SB_POOL_TYPE_EGRESS = 1, -}; - -enum devlink_sb_threshold_type { - DEVLINK_SB_THRESHOLD_TYPE_STATIC = 0, - DEVLINK_SB_THRESHOLD_TYPE_DYNAMIC = 1, -}; - -enum devlink_param_cmode { - DEVLINK_PARAM_CMODE_RUNTIME = 0, - DEVLINK_PARAM_CMODE_DRIVERINIT = 1, - DEVLINK_PARAM_CMODE_PERMANENT = 2, - __DEVLINK_PARAM_CMODE_MAX = 3, - DEVLINK_PARAM_CMODE_MAX = 2, -}; - -struct devlink_sb_pool_info { - enum devlink_sb_pool_type pool_type; - u32 size; - enum devlink_sb_threshold_type threshold_type; - u32 cell_size; -}; - -union devlink_param_value { - u8 vu8; - u16 vu16; - u32 vu32; - u64 vu64; - char vstr[32]; - bool vbool; -}; - -struct devlink_param_gset_ctx { - union devlink_param_value val; - enum devlink_param_cmode cmode; -}; - -struct switchdev_mst_state { - u16 msti; - u8 state; -}; - -struct switchdev_brport_flags { - long unsigned int val; - long unsigned int mask; -}; - -struct switchdev_vlan_msti { - u16 vid; - u16 msti; -}; - -enum switchdev_obj_id { - SWITCHDEV_OBJ_ID_UNDEFINED = 0, - SWITCHDEV_OBJ_ID_PORT_VLAN = 1, - SWITCHDEV_OBJ_ID_PORT_MDB = 2, - SWITCHDEV_OBJ_ID_HOST_MDB = 3, - SWITCHDEV_OBJ_ID_MRP = 4, - SWITCHDEV_OBJ_ID_RING_TEST_MRP = 5, - SWITCHDEV_OBJ_ID_RING_ROLE_MRP = 6, - SWITCHDEV_OBJ_ID_RING_STATE_MRP = 7, - SWITCHDEV_OBJ_ID_IN_TEST_MRP = 8, - SWITCHDEV_OBJ_ID_IN_ROLE_MRP = 9, - SWITCHDEV_OBJ_ID_IN_STATE_MRP = 10, -}; - -struct switchdev_obj { - struct list_head list; - struct net_device *orig_dev; - enum switchdev_obj_id id; - u32 flags; - void *complete_priv; - void (*complete)(struct net_device *, int, void *); -}; - -struct switchdev_obj_port_vlan { - struct switchdev_obj obj; - u16 flags; - u16 vid; - bool changed; -}; - -struct switchdev_obj_port_mdb { - struct switchdev_obj obj; - unsigned char addr[6]; - u16 vid; -}; - -struct switchdev_obj_mrp { - struct switchdev_obj obj; - struct net_device *p_port; - struct net_device *s_port; - u32 ring_id; - u16 prio; -}; - -struct switchdev_obj_ring_role_mrp { - struct switchdev_obj obj; - u8 ring_role; - u32 ring_id; - u8 sw_backup; -}; - -enum dsa_tag_protocol { - DSA_TAG_PROTO_NONE = 0, - DSA_TAG_PROTO_BRCM = 1, - DSA_TAG_PROTO_BRCM_LEGACY = 22, - DSA_TAG_PROTO_BRCM_LEGACY_FCS = 29, - DSA_TAG_PROTO_BRCM_PREPEND = 2, - DSA_TAG_PROTO_DSA = 3, - DSA_TAG_PROTO_EDSA = 4, - DSA_TAG_PROTO_GSWIP = 5, - DSA_TAG_PROTO_KSZ9477 = 6, - DSA_TAG_PROTO_KSZ9893 = 7, - DSA_TAG_PROTO_LAN9303 = 8, - DSA_TAG_PROTO_MTK = 9, - DSA_TAG_PROTO_QCA = 10, - DSA_TAG_PROTO_TRAILER = 11, - DSA_TAG_PROTO_8021Q = 12, - DSA_TAG_PROTO_SJA1105 = 13, - DSA_TAG_PROTO_KSZ8795 = 14, - DSA_TAG_PROTO_OCELOT = 15, - DSA_TAG_PROTO_AR9331 = 16, - DSA_TAG_PROTO_RTL4_A = 17, - DSA_TAG_PROTO_HELLCREEK = 18, - DSA_TAG_PROTO_XRS700X = 19, - DSA_TAG_PROTO_OCELOT_8021Q = 20, - DSA_TAG_PROTO_SEVILLE = 21, - DSA_TAG_PROTO_SJA1110 = 23, - DSA_TAG_PROTO_RTL8_4 = 24, - DSA_TAG_PROTO_RTL8_4T = 25, - DSA_TAG_PROTO_RZN1_A5PSW = 26, - DSA_TAG_PROTO_LAN937X = 27, - DSA_TAG_PROTO_VSC73XX_8021Q = 28, -}; - -struct dsa_device_ops { - struct sk_buff * (*xmit)(struct sk_buff *, struct net_device *); - struct sk_buff * (*rcv)(struct sk_buff *, struct net_device *); - void (*flow_dissect)(const struct sk_buff *, __be16 *, int *); - int (*connect)(struct dsa_switch *); - void (*disconnect)(struct dsa_switch *); - unsigned int needed_headroom; - unsigned int needed_tailroom; - const char *name; - enum dsa_tag_protocol proto; - bool promisc_on_conduit; -}; - -struct dsa_8021q_context; - -struct dsa_switch_ops; - -struct dsa_switch { - struct device *dev; - struct dsa_switch_tree *dst; - unsigned int index; - u32 setup: 1; - u32 vlan_filtering_is_global: 1; - u32 needs_standalone_vlan_filtering: 1; - u32 configure_vlan_while_not_filtering: 1; - u32 untag_bridge_pvid: 1; - u32 untag_vlan_aware_bridge_pvid: 1; - u32 assisted_learning_on_cpu_port: 1; - u32 vlan_filtering: 1; - u32 mtu_enforcement_ingress: 1; - u32 fdb_isolation: 1; - u32 dscp_prio_mapping_is_global: 1; - struct notifier_block nb; - void *priv; - void *tagger_data; - struct dsa_chip_data *cd; - const struct dsa_switch_ops *ops; - const struct phylink_mac_ops *phylink_mac_ops; - u32 phys_mii_mask; - struct mii_bus *user_mii_bus; - unsigned int ageing_time_min; - unsigned int ageing_time_max; - struct dsa_8021q_context *tag_8021q_ctx; - struct devlink *devlink; - unsigned int num_tx_queues; - unsigned int num_lag_ids; - unsigned int max_num_bridges; - unsigned int num_ports; -}; - -struct dsa_lag { - struct net_device *dev; - unsigned int id; - struct mutex fdb_lock; - struct list_head fdbs; - refcount_t refcount; -}; - -struct dsa_switch_tree { - struct list_head list; - struct list_head ports; - struct raw_notifier_head nh; - unsigned int index; - struct kref refcount; - struct dsa_lag **lags; - const struct dsa_device_ops *tag_ops; - enum dsa_tag_protocol default_proto; - bool setup; - struct dsa_platform_data *pd; - struct list_head rtable; - unsigned int lags_len; - unsigned int last_switch; -}; - -struct dsa_mall_mirror_tc_entry { - u8 to_local_port; - bool ingress; -}; - -struct dsa_mall_policer_tc_entry { - u32 burst; - u64 rate_bytes_per_sec; -}; - -struct dsa_bridge { - struct net_device *dev; - unsigned int num; - bool tx_fwd_offload; - refcount_t refcount; -}; - -enum dsa_db_type { - DSA_DB_PORT = 0, - DSA_DB_LAG = 1, - DSA_DB_BRIDGE = 2, -}; - -struct dsa_db { - enum dsa_db_type type; - union { - const struct dsa_port *dp; - struct dsa_lag lag; - struct dsa_bridge bridge; - }; -}; - -typedef int dsa_fdb_dump_cb_t(const unsigned char *, u16, bool, void *); - -struct devlink_info_req; - -struct dsa_switch_ops { - enum dsa_tag_protocol (*get_tag_protocol)(struct dsa_switch *, int, enum dsa_tag_protocol); - int (*change_tag_protocol)(struct dsa_switch *, enum dsa_tag_protocol); - int (*connect_tag_protocol)(struct dsa_switch *, enum dsa_tag_protocol); - int (*port_change_conduit)(struct dsa_switch *, int, struct net_device *, struct netlink_ext_ack *); - int (*setup)(struct dsa_switch *); - void (*teardown)(struct dsa_switch *); - int (*port_setup)(struct dsa_switch *, int); - void (*port_teardown)(struct dsa_switch *, int); - u32 (*get_phy_flags)(struct dsa_switch *, int); - int (*phy_read)(struct dsa_switch *, int, int); - int (*phy_write)(struct dsa_switch *, int, int, u16); - void (*phylink_get_caps)(struct dsa_switch *, int, struct phylink_config *); - void (*phylink_fixed_state)(struct dsa_switch *, int, struct phylink_link_state *); - void (*get_strings)(struct dsa_switch *, int, u32, uint8_t *); - void (*get_ethtool_stats)(struct dsa_switch *, int, uint64_t *); - int (*get_sset_count)(struct dsa_switch *, int, int); - void (*get_ethtool_phy_stats)(struct dsa_switch *, int, uint64_t *); - void (*get_eth_phy_stats)(struct dsa_switch *, int, struct ethtool_eth_phy_stats *); - void (*get_eth_mac_stats)(struct dsa_switch *, int, struct ethtool_eth_mac_stats *); - void (*get_eth_ctrl_stats)(struct dsa_switch *, int, struct ethtool_eth_ctrl_stats *); - void (*get_rmon_stats)(struct dsa_switch *, int, struct ethtool_rmon_stats *, const struct ethtool_rmon_hist_range **); - void (*get_ts_stats)(struct dsa_switch *, int, struct ethtool_ts_stats *); - void (*get_stats64)(struct dsa_switch *, int, struct rtnl_link_stats64 *); - void (*get_pause_stats)(struct dsa_switch *, int, struct ethtool_pause_stats *); - void (*self_test)(struct dsa_switch *, int, struct ethtool_test *, u64 *); - void (*get_wol)(struct dsa_switch *, int, struct ethtool_wolinfo *); - int (*set_wol)(struct dsa_switch *, int, struct ethtool_wolinfo *); - int (*get_ts_info)(struct dsa_switch *, int, struct kernel_ethtool_ts_info *); - int (*get_mm)(struct dsa_switch *, int, struct ethtool_mm_state *); - int (*set_mm)(struct dsa_switch *, int, struct ethtool_mm_cfg *, struct netlink_ext_ack *); - void (*get_mm_stats)(struct dsa_switch *, int, struct ethtool_mm_stats *); - int (*port_get_default_prio)(struct dsa_switch *, int); - int (*port_set_default_prio)(struct dsa_switch *, int, u8); - int (*port_get_dscp_prio)(struct dsa_switch *, int, u8); - int (*port_add_dscp_prio)(struct dsa_switch *, int, u8, u8); - int (*port_del_dscp_prio)(struct dsa_switch *, int, u8, u8); - int (*port_set_apptrust)(struct dsa_switch *, int, const u8 *, int); - int (*port_get_apptrust)(struct dsa_switch *, int, u8 *, int *); - int (*suspend)(struct dsa_switch *); - int (*resume)(struct dsa_switch *); - int (*port_enable)(struct dsa_switch *, int, struct phy_device *); - void (*port_disable)(struct dsa_switch *, int); - int (*port_set_mac_address)(struct dsa_switch *, int, const unsigned char *); - struct dsa_port * (*preferred_default_local_cpu_port)(struct dsa_switch *); - bool (*support_eee)(struct dsa_switch *, int); - int (*set_mac_eee)(struct dsa_switch *, int, struct ethtool_keee *); - int (*get_eeprom_len)(struct dsa_switch *); - int (*get_eeprom)(struct dsa_switch *, struct ethtool_eeprom *, u8 *); - int (*set_eeprom)(struct dsa_switch *, struct ethtool_eeprom *, u8 *); - int (*get_regs_len)(struct dsa_switch *, int); - void (*get_regs)(struct dsa_switch *, int, struct ethtool_regs *, void *); - int (*port_prechangeupper)(struct dsa_switch *, int, struct netdev_notifier_changeupper_info *); - int (*set_ageing_time)(struct dsa_switch *, unsigned int); - int (*port_bridge_join)(struct dsa_switch *, int, struct dsa_bridge, bool *, struct netlink_ext_ack *); - void (*port_bridge_leave)(struct dsa_switch *, int, struct dsa_bridge); - void (*port_stp_state_set)(struct dsa_switch *, int, u8); - int (*port_mst_state_set)(struct dsa_switch *, int, const struct switchdev_mst_state *); - void (*port_fast_age)(struct dsa_switch *, int); - int (*port_vlan_fast_age)(struct dsa_switch *, int, u16); - int (*port_pre_bridge_flags)(struct dsa_switch *, int, struct switchdev_brport_flags, struct netlink_ext_ack *); - int (*port_bridge_flags)(struct dsa_switch *, int, struct switchdev_brport_flags, struct netlink_ext_ack *); - void (*port_set_host_flood)(struct dsa_switch *, int, bool, bool); - int (*port_vlan_filtering)(struct dsa_switch *, int, bool, struct netlink_ext_ack *); - int (*port_vlan_add)(struct dsa_switch *, int, const struct switchdev_obj_port_vlan *, struct netlink_ext_ack *); - int (*port_vlan_del)(struct dsa_switch *, int, const struct switchdev_obj_port_vlan *); - int (*vlan_msti_set)(struct dsa_switch *, struct dsa_bridge, const struct switchdev_vlan_msti *); - int (*port_fdb_add)(struct dsa_switch *, int, const unsigned char *, u16, struct dsa_db); - int (*port_fdb_del)(struct dsa_switch *, int, const unsigned char *, u16, struct dsa_db); - int (*port_fdb_dump)(struct dsa_switch *, int, dsa_fdb_dump_cb_t *, void *); - int (*lag_fdb_add)(struct dsa_switch *, struct dsa_lag, const unsigned char *, u16, struct dsa_db); - int (*lag_fdb_del)(struct dsa_switch *, struct dsa_lag, const unsigned char *, u16, struct dsa_db); - int (*port_mdb_add)(struct dsa_switch *, int, const struct switchdev_obj_port_mdb *, struct dsa_db); - int (*port_mdb_del)(struct dsa_switch *, int, const struct switchdev_obj_port_mdb *, struct dsa_db); - int (*get_rxnfc)(struct dsa_switch *, int, struct ethtool_rxnfc *, u32 *); - int (*set_rxnfc)(struct dsa_switch *, int, struct ethtool_rxnfc *); - int (*cls_flower_add)(struct dsa_switch *, int, struct flow_cls_offload *, bool); - int (*cls_flower_del)(struct dsa_switch *, int, struct flow_cls_offload *, bool); - int (*cls_flower_stats)(struct dsa_switch *, int, struct flow_cls_offload *, bool); - int (*port_mirror_add)(struct dsa_switch *, int, struct dsa_mall_mirror_tc_entry *, bool, struct netlink_ext_ack *); - void (*port_mirror_del)(struct dsa_switch *, int, struct dsa_mall_mirror_tc_entry *); - int (*port_policer_add)(struct dsa_switch *, int, struct dsa_mall_policer_tc_entry *); - void (*port_policer_del)(struct dsa_switch *, int); - int (*port_setup_tc)(struct dsa_switch *, int, enum tc_setup_type, void *); - int (*crosschip_bridge_join)(struct dsa_switch *, int, int, int, struct dsa_bridge, struct netlink_ext_ack *); - void (*crosschip_bridge_leave)(struct dsa_switch *, int, int, int, struct dsa_bridge); - int (*crosschip_lag_change)(struct dsa_switch *, int, int); - int (*crosschip_lag_join)(struct dsa_switch *, int, int, struct dsa_lag, struct netdev_lag_upper_info *, struct netlink_ext_ack *); - int (*crosschip_lag_leave)(struct dsa_switch *, int, int, struct dsa_lag); - int (*port_hwtstamp_get)(struct dsa_switch *, int, struct kernel_hwtstamp_config *); - int (*port_hwtstamp_set)(struct dsa_switch *, int, struct kernel_hwtstamp_config *, struct netlink_ext_ack *); - void (*port_txtstamp)(struct dsa_switch *, int, struct sk_buff *); - bool (*port_rxtstamp)(struct dsa_switch *, int, struct sk_buff *, unsigned int); - int (*devlink_param_get)(struct dsa_switch *, u32, struct devlink_param_gset_ctx *); - int (*devlink_param_set)(struct dsa_switch *, u32, struct devlink_param_gset_ctx *); - int (*devlink_info_get)(struct dsa_switch *, struct devlink_info_req *, struct netlink_ext_ack *); - int (*devlink_sb_pool_get)(struct dsa_switch *, unsigned int, u16, struct devlink_sb_pool_info *); - int (*devlink_sb_pool_set)(struct dsa_switch *, unsigned int, u16, u32, enum devlink_sb_threshold_type, struct netlink_ext_ack *); - int (*devlink_sb_port_pool_get)(struct dsa_switch *, int, unsigned int, u16, u32 *); - int (*devlink_sb_port_pool_set)(struct dsa_switch *, int, unsigned int, u16, u32, struct netlink_ext_ack *); - int (*devlink_sb_tc_pool_bind_get)(struct dsa_switch *, int, unsigned int, u16, enum devlink_sb_pool_type, u16 *, u32 *); - int (*devlink_sb_tc_pool_bind_set)(struct dsa_switch *, int, unsigned int, u16, enum devlink_sb_pool_type, u16, u32, struct netlink_ext_ack *); - int (*devlink_sb_occ_snapshot)(struct dsa_switch *, unsigned int); - int (*devlink_sb_occ_max_clear)(struct dsa_switch *, unsigned int); - int (*devlink_sb_occ_port_pool_get)(struct dsa_switch *, int, unsigned int, u16, u32 *, u32 *); - int (*devlink_sb_occ_tc_port_bind_get)(struct dsa_switch *, int, unsigned int, u16, enum devlink_sb_pool_type, u32 *, u32 *); - int (*port_change_mtu)(struct dsa_switch *, int, int); - int (*port_max_mtu)(struct dsa_switch *, int); - int (*port_lag_change)(struct dsa_switch *, int); - int (*port_lag_join)(struct dsa_switch *, int, struct dsa_lag, struct netdev_lag_upper_info *, struct netlink_ext_ack *); - int (*port_lag_leave)(struct dsa_switch *, int, struct dsa_lag); - int (*port_hsr_join)(struct dsa_switch *, int, struct net_device *, struct netlink_ext_ack *); - int (*port_hsr_leave)(struct dsa_switch *, int, struct net_device *); - int (*port_mrp_add)(struct dsa_switch *, int, const struct switchdev_obj_mrp *); - int (*port_mrp_del)(struct dsa_switch *, int, const struct switchdev_obj_mrp *); - int (*port_mrp_add_ring_role)(struct dsa_switch *, int, const struct switchdev_obj_ring_role_mrp *); - int (*port_mrp_del_ring_role)(struct dsa_switch *, int, const struct switchdev_obj_ring_role_mrp *); - int (*tag_8021q_vlan_add)(struct dsa_switch *, int, u16, u16); - int (*tag_8021q_vlan_del)(struct dsa_switch *, int, u16); - void (*conduit_state_change)(struct dsa_switch *, const struct net_device *, bool); -}; - -struct dsa_stubs { - int (*conduit_hwtstamp_validate)(struct net_device *, const struct kernel_hwtstamp_config *, struct netlink_ext_ack *); -}; - -struct net_generic { - union { - struct { - unsigned int len; - struct callback_head rcu; - } s; - struct { - struct {} __empty_ptr; - void *ptr[0]; - }; - }; -}; - -struct fib_notifier_info { - int family; - struct netlink_ext_ack *extack; -}; - -enum fib_event_type { - FIB_EVENT_ENTRY_REPLACE = 0, - FIB_EVENT_ENTRY_APPEND = 1, - FIB_EVENT_ENTRY_ADD = 2, - FIB_EVENT_ENTRY_DEL = 3, - FIB_EVENT_RULE_ADD = 4, - FIB_EVENT_RULE_DEL = 5, - FIB_EVENT_NH_ADD = 6, - FIB_EVENT_NH_DEL = 7, - FIB_EVENT_VIF_ADD = 8, - FIB_EVENT_VIF_DEL = 9, -}; - -struct fib_notifier_net { - struct list_head fib_notifier_ops; - struct atomic_notifier_head fib_chain; -}; - -struct flow_dissector_key_vlan { - union { - struct { - u16 vlan_id: 12; - u16 vlan_dei: 1; - u16 vlan_priority: 3; - }; - __be16 vlan_tci; - }; - __be16 vlan_tpid; - __be16 vlan_eth_type; - u16 padding; -}; - -struct flow_dissector_mpls_lse { - u32 mpls_ttl: 8; - u32 mpls_bos: 1; - u32 mpls_tc: 3; - u32 mpls_label: 20; -}; - -struct flow_dissector_key_mpls { - struct flow_dissector_mpls_lse ls[7]; - u8 used_lses; -}; - -struct flow_dissector_key_enc_opts { - u8 data[255]; - u8 len; - u32 dst_opt_type; -}; - -struct flow_dissector_key_keyid { - __be32 keyid; -}; - -struct flow_dissector_key_ipv4_addrs { - __be32 src; - __be32 dst; -}; - -struct flow_dissector_key_ipv6_addrs { - struct in6_addr src; - struct in6_addr dst; -}; - -struct flow_dissector_key_arp { - __u32 sip; - __u32 tip; - __u8 op; - unsigned char sha[6]; - unsigned char tha[6]; -}; - -struct flow_dissector_key_ports { - union { - __be32 ports; - struct { - __be16 src; - __be16 dst; - }; - }; -}; - -struct flow_dissector_key_ports_range { - union { - struct flow_dissector_key_ports tp; - struct { - struct flow_dissector_key_ports tp_min; - struct flow_dissector_key_ports tp_max; - }; - }; -}; - -struct flow_dissector_key_icmp { - struct { - u8 type; - u8 code; - }; - u16 id; -}; - -struct flow_dissector_key_eth_addrs { - unsigned char dst[6]; - unsigned char src[6]; -}; - -struct flow_dissector_key_tcp { - __be16 flags; -}; - -struct flow_dissector_key_ip { - __u8 tos; - __u8 ttl; -}; - -struct flow_dissector_key_meta { - int ingress_ifindex; - u16 ingress_iftype; - u8 l2_miss; -}; - -struct flow_dissector_key_ct { - u16 ct_state; - u16 ct_zone; - u32 ct_mark; - u32 ct_labels[4]; -}; - -struct flow_dissector_key_pppoe { - __be16 session_id; - __be16 ppp_proto; - __be16 type; -}; - -struct flow_dissector_key_l2tpv3 { - __be32 session_id; -}; - -struct flow_dissector_key_ipsec { - __be32 spi; -}; - -struct flow_match_meta { - struct flow_dissector_key_meta *key; - struct flow_dissector_key_meta *mask; -}; - -struct flow_match_basic { - struct flow_dissector_key_basic *key; - struct flow_dissector_key_basic *mask; -}; - -struct flow_match_control { - struct flow_dissector_key_control *key; - struct flow_dissector_key_control *mask; -}; - -struct flow_match_eth_addrs { - struct flow_dissector_key_eth_addrs *key; - struct flow_dissector_key_eth_addrs *mask; -}; - -struct flow_match_vlan { - struct flow_dissector_key_vlan *key; - struct flow_dissector_key_vlan *mask; -}; - -struct flow_match_arp { - struct flow_dissector_key_arp *key; - struct flow_dissector_key_arp *mask; -}; - -struct flow_match_ipv4_addrs { - struct flow_dissector_key_ipv4_addrs *key; - struct flow_dissector_key_ipv4_addrs *mask; -}; - -struct flow_match_ipv6_addrs { - struct flow_dissector_key_ipv6_addrs *key; - struct flow_dissector_key_ipv6_addrs *mask; -}; - -struct flow_match_ip { - struct flow_dissector_key_ip *key; - struct flow_dissector_key_ip *mask; -}; - -struct flow_match_ports { - struct flow_dissector_key_ports *key; - struct flow_dissector_key_ports *mask; -}; - -struct flow_match_ports_range { - struct flow_dissector_key_ports_range *key; - struct flow_dissector_key_ports_range *mask; -}; - -struct flow_match_icmp { - struct flow_dissector_key_icmp *key; - struct flow_dissector_key_icmp *mask; -}; - -struct flow_match_tcp { - struct flow_dissector_key_tcp *key; - struct flow_dissector_key_tcp *mask; -}; - -struct flow_match_ipsec { - struct flow_dissector_key_ipsec *key; - struct flow_dissector_key_ipsec *mask; -}; - -struct flow_match_mpls { - struct flow_dissector_key_mpls *key; - struct flow_dissector_key_mpls *mask; -}; - -struct flow_match_enc_keyid { - struct flow_dissector_key_keyid *key; - struct flow_dissector_key_keyid *mask; -}; - -struct flow_match_enc_opts { - struct flow_dissector_key_enc_opts *key; - struct flow_dissector_key_enc_opts *mask; -}; - -struct flow_match_ct { - struct flow_dissector_key_ct *key; - struct flow_dissector_key_ct *mask; -}; - -struct flow_match_pppoe { - struct flow_dissector_key_pppoe *key; - struct flow_dissector_key_pppoe *mask; -}; - -struct flow_match_l2tpv3 { - struct flow_dissector_key_l2tpv3 *key; - struct flow_dissector_key_l2tpv3 *mask; -}; - -enum flow_block_command { - FLOW_BLOCK_BIND = 0, - FLOW_BLOCK_UNBIND = 1, -}; - -enum flow_block_binder_type { - FLOW_BLOCK_BINDER_TYPE_UNSPEC = 0, - FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS = 1, - FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS = 2, - FLOW_BLOCK_BINDER_TYPE_RED_EARLY_DROP = 3, - FLOW_BLOCK_BINDER_TYPE_RED_MARK = 4, -}; - -struct flow_block_offload { - enum flow_block_command command; - enum flow_block_binder_type binder_type; - bool block_shared; - bool unlocked_driver_cb; - struct net *net; - struct flow_block *block; - struct list_head cb_list; - struct list_head *driver_block_list; - struct netlink_ext_ack *extack; - struct Qdisc *sch; - struct list_head *cb_list_head; -}; - -struct flow_block_cb; - -struct flow_block_indr { - struct list_head list; - struct net_device *dev; - struct Qdisc *sch; - enum flow_block_binder_type binder_type; - void *data; - void *cb_priv; - void (*cleanup)(struct flow_block_cb *); -}; - -struct flow_block_cb { - struct list_head driver_list; - struct list_head list; - flow_setup_cb_t *cb; - void *cb_ident; - void *cb_priv; - void (*release)(void *); - struct flow_block_indr indr; - unsigned int refcnt; -}; - -enum offload_act_command { - FLOW_ACT_REPLACE = 0, - FLOW_ACT_DESTROY = 1, - FLOW_ACT_STATS = 2, -}; - -struct flow_offload_action { - struct netlink_ext_ack *extack; - enum offload_act_command command; - enum flow_action_id id; - u32 index; - long unsigned int cookie; - struct flow_stats stats; - struct flow_action action; -}; - -typedef int flow_indr_block_bind_cb_t(struct net_device *, struct Qdisc *, void *, enum tc_setup_type, void *, void *, void (*)(struct flow_block_cb *)); - -enum { - TCA_UNSPEC = 0, - TCA_KIND = 1, - TCA_OPTIONS = 2, - TCA_STATS = 3, - TCA_XSTATS = 4, - TCA_RATE = 5, - TCA_FCNT = 6, - TCA_STATS2 = 7, - TCA_STAB = 8, - TCA_PAD = 9, - TCA_DUMP_INVISIBLE = 10, - TCA_CHAIN = 11, - TCA_HW_OFFLOAD = 12, - TCA_INGRESS_BLOCK = 13, - TCA_EGRESS_BLOCK = 14, - TCA_DUMP_FLAGS = 15, - TCA_EXT_WARN_MSG = 16, - __TCA_MAX = 17, -}; - -struct flow_indr_dev { - struct list_head list; - flow_indr_block_bind_cb_t *cb; - void *cb_priv; - refcount_t refcnt; -}; - -struct flow_indir_dev_info { - void *data; - struct net_device *dev; - struct Qdisc *sch; - enum tc_setup_type type; - void (*cleanup)(struct flow_block_cb *); - struct list_head list; - enum flow_block_command command; - enum flow_block_binder_type binder_type; - struct list_head *cb_list; -}; - -struct skb_gso_cb { - union { - int mac_offset; - int data_offset; - }; - int encap_level; - __wsum csum; - __u16 csum_start; -}; - -struct offload_callbacks { - struct sk_buff * (*gso_segment)(struct sk_buff *, netdev_features_t); - struct sk_buff * (*gro_receive)(struct list_head *, struct sk_buff *); - int (*gro_complete)(struct sk_buff *, int); -}; - -struct packet_offload { - __be16 type; - u16 priority; - struct offload_callbacks callbacks; - struct list_head list; -}; - -struct inet6_skb_parm { - int iif; - __be16 ra; - __u16 dst0; - __u16 srcrt; - __u16 dst1; - __u16 lastopt; - __u16 nhoff; - __u16 flags; - __u16 dsthao; - __u16 frag_max_size; - __u16 srhoff; -}; - -struct net_protocol { - int (*handler)(struct sk_buff *); - int (*err_handler)(struct sk_buff *, u32); - unsigned int no_policy: 1; - unsigned int icmp_strict_tag_validation: 1; - u32 secret; -}; - -struct inet6_protocol { - int (*handler)(struct sk_buff *); - int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); - unsigned int flags; - u32 secret; -}; - -struct net_offload { - struct offload_callbacks callbacks; - unsigned int flags; - u32 secret; -}; - -struct rps_sock_flow_table; - -struct net_hotdata { - struct packet_offload ip_packet_offload; - struct net_offload tcpv4_offload; - struct net_protocol tcp_protocol; - struct net_offload udpv4_offload; - struct net_protocol udp_protocol; - struct packet_offload ipv6_packet_offload; - struct net_offload tcpv6_offload; - struct inet6_protocol tcpv6_protocol; - struct inet6_protocol udpv6_protocol; - struct net_offload udpv6_offload; - struct list_head offload_base; - struct kmem_cache *skbuff_cache; - struct kmem_cache *skbuff_fclone_cache; - struct kmem_cache *skb_small_head_cache; - struct rps_sock_flow_table *rps_sock_flow_table; - u32 rps_cpu_mask; - int gro_normal_batch; - int netdev_budget; - int netdev_budget_usecs; - int tstamp_prequeue; - int max_backlog; - int dev_tx_weight; - int dev_rx_weight; - int sysctl_max_skb_frags; - int sysctl_skb_defer_max; - int sysctl_mem_pcpu_rsv; -}; - -struct page_pool_params { - union { - struct { - unsigned int order; - unsigned int pool_size; - int nid; - struct device *dev; - struct napi_struct *napi; - enum dma_data_direction dma_dir; - unsigned int max_len; - unsigned int offset; - }; - struct page_pool_params_fast fast; - }; - union { - struct { - struct net_device *netdev; - unsigned int queue_idx; - unsigned int flags; - void (*init_callback)(netmem_ref, void *); - void *init_arg; - }; - struct page_pool_params_slow slow; - }; -}; - -struct page_pool_stats { - struct page_pool_alloc_stats alloc_stats; - struct page_pool_recycle_stats recycle_stats; -}; - -struct sd_flow_limit { - struct callback_head rcu; - unsigned int count; - u8 log_buckets; - unsigned int history_head; - u16 history[128]; - u8 buckets[0]; -}; - -enum lwtunnel_encap_types { - LWTUNNEL_ENCAP_NONE = 0, - LWTUNNEL_ENCAP_MPLS = 1, - LWTUNNEL_ENCAP_IP = 2, - LWTUNNEL_ENCAP_ILA = 3, - LWTUNNEL_ENCAP_IP6 = 4, - LWTUNNEL_ENCAP_SEG6 = 5, - LWTUNNEL_ENCAP_BPF = 6, - LWTUNNEL_ENCAP_SEG6_LOCAL = 7, - LWTUNNEL_ENCAP_RPL = 8, - LWTUNNEL_ENCAP_IOAM6 = 9, - LWTUNNEL_ENCAP_XFRM = 10, - __LWTUNNEL_ENCAP_MAX = 11, -}; - -struct rtnexthop { - short unsigned int rtnh_len; - unsigned char rtnh_flags; - unsigned char rtnh_hops; - int rtnh_ifindex; -}; - -struct lwtunnel_encap_ops { - int (*build_state)(struct net *, struct nlattr *, unsigned int, const void *, struct lwtunnel_state **, struct netlink_ext_ack *); - void (*destroy_state)(struct lwtunnel_state *); - int (*output)(struct net *, struct sock *, struct sk_buff *); - int (*input)(struct sk_buff *); - int (*fill_encap)(struct sk_buff *, struct lwtunnel_state *); - int (*get_encap_size)(struct lwtunnel_state *); - int (*cmp_encap)(struct lwtunnel_state *, struct lwtunnel_state *); - int (*xmit)(struct sk_buff *); - struct module *owner; -}; - -struct gen_pool_chunk { - struct list_head next_chunk; - atomic_long_t avail; - phys_addr_t phys_addr; - void *owner; - long unsigned int start_addr; - long unsigned int end_addr; - long unsigned int bits[0]; -}; - -enum { - NETDEV_A_PAGE_POOL_ID = 1, - NETDEV_A_PAGE_POOL_IFINDEX = 2, - NETDEV_A_PAGE_POOL_NAPI_ID = 3, - NETDEV_A_PAGE_POOL_INFLIGHT = 4, - NETDEV_A_PAGE_POOL_INFLIGHT_MEM = 5, - NETDEV_A_PAGE_POOL_DETACH_TIME = 6, - NETDEV_A_PAGE_POOL_DMABUF = 7, - NETDEV_A_PAGE_POOL_IO_URING = 8, - __NETDEV_A_PAGE_POOL_MAX = 9, - NETDEV_A_PAGE_POOL_MAX = 8, -}; - -enum { - NETDEV_A_QUEUE_ID = 1, - NETDEV_A_QUEUE_IFINDEX = 2, - NETDEV_A_QUEUE_TYPE = 3, - NETDEV_A_QUEUE_NAPI_ID = 4, - NETDEV_A_QUEUE_DMABUF = 5, - NETDEV_A_QUEUE_IO_URING = 6, - NETDEV_A_QUEUE_XSK = 7, - __NETDEV_A_QUEUE_MAX = 8, - NETDEV_A_QUEUE_MAX = 7, -}; - -struct netdev_nl_sock { - struct mutex lock; - struct list_head bindings; -}; - -struct dmabuf_genpool_chunk_owner { - struct net_iov_area area; - struct net_devmem_dmabuf_binding *binding; - dma_addr_t base_dma_addr; -}; - -enum { - XFRM_POLICY_TYPE_MAIN = 0, - XFRM_POLICY_TYPE_SUB = 1, - XFRM_POLICY_TYPE_MAX = 2, - XFRM_POLICY_TYPE_ANY = 255, -}; - -enum { - XFRM_MSG_BASE = 16, - XFRM_MSG_NEWSA = 16, - XFRM_MSG_DELSA = 17, - XFRM_MSG_GETSA = 18, - XFRM_MSG_NEWPOLICY = 19, - XFRM_MSG_DELPOLICY = 20, - XFRM_MSG_GETPOLICY = 21, - XFRM_MSG_ALLOCSPI = 22, - XFRM_MSG_ACQUIRE = 23, - XFRM_MSG_EXPIRE = 24, - XFRM_MSG_UPDPOLICY = 25, - XFRM_MSG_UPDSA = 26, - XFRM_MSG_POLEXPIRE = 27, - XFRM_MSG_FLUSHSA = 28, - XFRM_MSG_FLUSHPOLICY = 29, - XFRM_MSG_NEWAE = 30, - XFRM_MSG_GETAE = 31, - XFRM_MSG_REPORT = 32, - XFRM_MSG_MIGRATE = 33, - XFRM_MSG_NEWSADINFO = 34, - XFRM_MSG_GETSADINFO = 35, - XFRM_MSG_NEWSPDINFO = 36, - XFRM_MSG_GETSPDINFO = 37, - XFRM_MSG_MAPPING = 38, - XFRM_MSG_SETDEFAULT = 39, - XFRM_MSG_GETDEFAULT = 40, - __XFRM_MSG_MAX = 41, -}; - -enum xfrm_attr_type_t { - XFRMA_UNSPEC = 0, - XFRMA_ALG_AUTH = 1, - XFRMA_ALG_CRYPT = 2, - XFRMA_ALG_COMP = 3, - XFRMA_ENCAP = 4, - XFRMA_TMPL = 5, - XFRMA_SA = 6, - XFRMA_POLICY = 7, - XFRMA_SEC_CTX = 8, - XFRMA_LTIME_VAL = 9, - XFRMA_REPLAY_VAL = 10, - XFRMA_REPLAY_THRESH = 11, - XFRMA_ETIMER_THRESH = 12, - XFRMA_SRCADDR = 13, - XFRMA_COADDR = 14, - XFRMA_LASTUSED = 15, - XFRMA_POLICY_TYPE = 16, - XFRMA_MIGRATE = 17, - XFRMA_ALG_AEAD = 18, - XFRMA_KMADDRESS = 19, - XFRMA_ALG_AUTH_TRUNC = 20, - XFRMA_MARK = 21, - XFRMA_TFCPAD = 22, - XFRMA_REPLAY_ESN_VAL = 23, - XFRMA_SA_EXTRA_FLAGS = 24, - XFRMA_PROTO = 25, - XFRMA_ADDRESS_FILTER = 26, - XFRMA_PAD = 27, - XFRMA_OFFLOAD_DEV = 28, - XFRMA_SET_MARK = 29, - XFRMA_SET_MARK_MASK = 30, - XFRMA_IF_ID = 31, - XFRMA_MTIMER_THRESH = 32, - XFRMA_SA_DIR = 33, - XFRMA_NAT_KEEPALIVE_INTERVAL = 34, - XFRMA_SA_PCPU = 35, - XFRMA_IPTFS_DROP_TIME = 36, - XFRMA_IPTFS_REORDER_WINDOW = 37, - XFRMA_IPTFS_DONT_FRAG = 38, - XFRMA_IPTFS_INIT_DELAY = 39, - XFRMA_IPTFS_MAX_QSIZE = 40, - XFRMA_IPTFS_PKT_SIZE = 41, - __XFRMA_MAX = 42, -}; - -struct tc_ratespec { - unsigned char cell_log; - __u8 linklayer; - short unsigned int overhead; - short int cell_align; - short unsigned int mpu; - __u32 rate; -}; - -struct tc_prio_qopt { - int bands; - __u8 priomap[16]; -}; - -struct skb_array { - struct ptr_ring ring; -}; - -enum qdisc_state_t { - __QDISC_STATE_SCHED = 0, - __QDISC_STATE_DEACTIVATED = 1, - __QDISC_STATE_MISSED = 2, - __QDISC_STATE_DRAINING = 3, -}; - -enum qdisc_state2_t { - __QDISC_STATE2_RUNNING = 0, -}; - -struct qdisc_skb_cb { - struct { - unsigned int pkt_len; - u16 slave_dev_queue_mapping; - u16 tc_classid; - }; - unsigned char data[20]; -}; - -struct tc_skb_cb { - struct qdisc_skb_cb qdisc_cb; - u32 drop_reason; - u16 zone; - u16 mru; - u8 post_ct: 1; - u8 post_ct_snat: 1; - u8 post_ct_dnat: 1; -}; - -struct psched_ratecfg { - u64 rate_bytes_ps; - u32 mult; - u16 overhead; - u16 mpu; - u8 linklayer; - u8 shift; -}; - -struct psched_pktrate { - u64 rate_pkts_ps; - u32 mult; - u8 shift; -}; - -struct mini_Qdisc { - struct tcf_proto *filter_list; - struct tcf_block *block; - struct gnet_stats_basic_sync *cpu_bstats; - struct gnet_stats_queue *cpu_qstats; - long unsigned int rcu_state; -}; - -struct mini_Qdisc_pair { - struct mini_Qdisc miniq1; - struct mini_Qdisc miniq2; - struct mini_Qdisc **p_miniq; -}; - -struct xfrm_offload { - struct { - __u32 low; - __u32 hi; - } seq; - __u32 flags; - __u32 status; - __u32 orig_mac_len; - __u8 proto; - __u8 inner_ipproto; -}; - -struct sec_path { - int len; - int olen; - int verified_cnt; - struct xfrm_state *xvec[6]; - struct xfrm_offload ovec[1]; -}; - -struct pfifo_fast_priv { - struct skb_array q[3]; -}; - -enum net_xmit_qdisc_t { - __NET_XMIT_STOLEN = 65536, - __NET_XMIT_BYPASS = 131072, -}; - -struct tc_fifo_qopt { - __u32 limit; -}; - -enum tca_id { - TCA_ID_UNSPEC = 0, - TCA_ID_POLICE = 1, - TCA_ID_GACT = 5, - TCA_ID_IPT = 6, - TCA_ID_PEDIT = 7, - TCA_ID_MIRRED = 8, - TCA_ID_NAT = 9, - TCA_ID_XT = 10, - TCA_ID_SKBEDIT = 11, - TCA_ID_VLAN = 12, - TCA_ID_BPF = 13, - TCA_ID_CONNMARK = 14, - TCA_ID_SKBMOD = 15, - TCA_ID_CSUM = 16, - TCA_ID_TUNNEL_KEY = 17, - TCA_ID_SIMP = 22, - TCA_ID_IFE = 25, - TCA_ID_SAMPLE = 26, - TCA_ID_CTINFO = 27, - TCA_ID_MPLS = 28, - TCA_ID_CT = 29, - TCA_ID_GATE = 30, - __TCA_ID_MAX = 255, -}; - -struct tcf_t { - __u64 install; - __u64 lastuse; - __u64 expires; - __u64 firstuse; -}; - -struct tcf_walker { - int stop; - int skip; - int count; - bool nonempty; - long unsigned int cookie; - int (*fn)(struct tcf_proto *, void *, struct tcf_walker *); -}; - -struct tc_action; - -struct tcf_exts_miss_cookie_node; - -struct tcf_exts { - __u32 type; - int nr_actions; - struct tc_action **actions; - struct net *net; - netns_tracker ns_tracker; - struct tcf_exts_miss_cookie_node *miss_cookie_node; - int action; - int police; -}; - -struct tcf_idrinfo { - struct mutex lock; - struct idr action_idr; - struct net *net; -}; - -struct tc_action_ops; - -struct tc_cookie; - -struct tc_action { - const struct tc_action_ops *ops; - __u32 type; - struct tcf_idrinfo *idrinfo; - u32 tcfa_index; - refcount_t tcfa_refcnt; - atomic_t tcfa_bindcnt; - int tcfa_action; - struct tcf_t tcfa_tm; - long: 64; - struct gnet_stats_basic_sync tcfa_bstats; - struct gnet_stats_basic_sync tcfa_bstats_hw; - struct gnet_stats_queue tcfa_qstats; - struct net_rate_estimator *tcfa_rate_est; - spinlock_t tcfa_lock; - struct gnet_stats_basic_sync *cpu_bstats; - struct gnet_stats_basic_sync *cpu_bstats_hw; - struct gnet_stats_queue *cpu_qstats; - struct tc_cookie *user_cookie; - struct tcf_chain *goto_chain; - u32 tcfa_flags; - u8 hw_stats; - u8 used_hw_stats; - bool used_hw_stats_valid; - u32 in_hw_count; -}; - -typedef void (*tc_action_priv_destructor)(void *); - -struct tc_action_ops { - struct list_head head; - char kind[16]; - enum tca_id id; - unsigned int net_id; - size_t size; - struct module *owner; - int (*act)(struct sk_buff *, const struct tc_action *, struct tcf_result *); - int (*dump)(struct sk_buff *, struct tc_action *, int, int); - void (*cleanup)(struct tc_action *); - int (*lookup)(struct net *, struct tc_action **, u32); - int (*init)(struct net *, struct nlattr *, struct nlattr *, struct tc_action **, struct tcf_proto *, u32, struct netlink_ext_ack *); - int (*walk)(struct net *, struct sk_buff *, struct netlink_callback *, int, const struct tc_action_ops *, struct netlink_ext_ack *); - void (*stats_update)(struct tc_action *, u64, u64, u64, u64, bool); - size_t (*get_fill_size)(const struct tc_action *); - struct net_device * (*get_dev)(const struct tc_action *, tc_action_priv_destructor *); - struct psample_group * (*get_psample_group)(const struct tc_action *, tc_action_priv_destructor *); - int (*offload_act_setup)(struct tc_action *, void *, u32 *, bool, struct netlink_ext_ack *); -}; - -struct tc_cookie { - u8 *data; - u32 len; - struct callback_head rcu; -}; - -struct tc_qopt_offload_stats { - struct gnet_stats_basic_sync *bstats; - struct gnet_stats_queue *qstats; -}; - -enum tc_fifo_command { - TC_FIFO_REPLACE = 0, - TC_FIFO_DESTROY = 1, - TC_FIFO_STATS = 2, -}; - -struct tc_fifo_qopt_offload { - enum tc_fifo_command command; - u32 handle; - u32 parent; - union { - struct tc_qopt_offload_stats stats; - }; -}; - -struct tcf_ematch_tree_hdr { - __u16 nmatches; - __u16 progid; -}; - -enum { - TCA_EMATCH_TREE_UNSPEC = 0, - TCA_EMATCH_TREE_HDR = 1, - TCA_EMATCH_TREE_LIST = 2, - __TCA_EMATCH_TREE_MAX = 3, -}; - -struct tcf_ematch_hdr { - __u16 matchid; - __u16 kind; - __u16 flags; - __u16 pad; -}; - -struct tcf_pkt_info { - unsigned char *ptr; - int nexthdr; -}; - -struct tcf_ematch_ops; - -struct tcf_ematch { - struct tcf_ematch_ops *ops; - long unsigned int data; - unsigned int datalen; - u16 matchid; - u16 flags; - struct net *net; -}; - -struct tcf_ematch_ops { - int kind; - int datalen; - int (*change)(struct net *, void *, int, struct tcf_ematch *); - int (*match)(struct sk_buff *, struct tcf_ematch *, struct tcf_pkt_info *); - void (*destroy)(struct tcf_ematch *); - int (*dump)(struct sk_buff *, struct tcf_ematch *); - struct module *owner; - struct list_head link; -}; - -struct tcf_ematch_tree { - struct tcf_ematch_tree_hdr hdr; - struct tcf_ematch *matches; -}; - -struct bpf_tramp_link; - -struct bpf_tramp_links { - struct bpf_tramp_link *links[38]; - int nr_links; -}; - -struct bpf_tramp_link { - struct bpf_link link; - struct hlist_node tramp_hlist; - u64 cookie; -}; - -enum bpf_struct_ops_state { - BPF_STRUCT_OPS_STATE_INIT = 0, - BPF_STRUCT_OPS_STATE_INUSE = 1, - BPF_STRUCT_OPS_STATE_TOBEFREE = 2, - BPF_STRUCT_OPS_STATE_READY = 3, -}; - -struct bpf_struct_ops_common_value { - refcount_t refcnt; - enum bpf_struct_ops_state state; -}; - -struct bpf_dummy_ops_state { - int val; -}; - -struct bpf_dummy_ops { - int (*test_1)(struct bpf_dummy_ops_state *); - int (*test_2)(struct bpf_dummy_ops_state *, int, short unsigned int, char, long unsigned int); - int (*test_sleepable)(struct bpf_dummy_ops_state *); -}; - -typedef int (*dummy_ops_test_ret_fn)(struct bpf_dummy_ops_state *, ...); - -struct bpf_dummy_ops_test_args { - u64 args[12]; - struct bpf_dummy_ops_state state; -}; - -struct bpf_struct_ops_bpf_dummy_ops { - struct bpf_struct_ops_common_value common; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct bpf_dummy_ops data; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct phy_link_topology { - struct xarray phys; - u32 next_phy_index; -}; - -enum ethtool_header_flags { - ETHTOOL_FLAG_COMPACT_BITSETS = 1, - ETHTOOL_FLAG_OMIT_REPLY = 2, - ETHTOOL_FLAG_STATS = 4, -}; - -enum { - ETHTOOL_A_HEADER_UNSPEC = 0, - ETHTOOL_A_HEADER_DEV_INDEX = 1, - ETHTOOL_A_HEADER_DEV_NAME = 2, - ETHTOOL_A_HEADER_FLAGS = 3, - ETHTOOL_A_HEADER_PHY_INDEX = 4, - __ETHTOOL_A_HEADER_CNT = 5, - ETHTOOL_A_HEADER_MAX = 4, -}; - -enum { - ETHTOOL_A_STRSET_UNSPEC = 0, - ETHTOOL_A_STRSET_HEADER = 1, - ETHTOOL_A_STRSET_STRINGSETS = 2, - ETHTOOL_A_STRSET_COUNTS_ONLY = 3, - __ETHTOOL_A_STRSET_CNT = 4, - ETHTOOL_A_STRSET_MAX = 3, -}; - -enum { - ETHTOOL_A_PRIVFLAGS_UNSPEC = 0, - ETHTOOL_A_PRIVFLAGS_HEADER = 1, - ETHTOOL_A_PRIVFLAGS_FLAGS = 2, - __ETHTOOL_A_PRIVFLAGS_CNT = 3, - ETHTOOL_A_PRIVFLAGS_MAX = 2, -}; - -enum { - ETHTOOL_A_RINGS_UNSPEC = 0, - ETHTOOL_A_RINGS_HEADER = 1, - ETHTOOL_A_RINGS_RX_MAX = 2, - ETHTOOL_A_RINGS_RX_MINI_MAX = 3, - ETHTOOL_A_RINGS_RX_JUMBO_MAX = 4, - ETHTOOL_A_RINGS_TX_MAX = 5, - ETHTOOL_A_RINGS_RX = 6, - ETHTOOL_A_RINGS_RX_MINI = 7, - ETHTOOL_A_RINGS_RX_JUMBO = 8, - ETHTOOL_A_RINGS_TX = 9, - ETHTOOL_A_RINGS_RX_BUF_LEN = 10, - ETHTOOL_A_RINGS_TCP_DATA_SPLIT = 11, - ETHTOOL_A_RINGS_CQE_SIZE = 12, - ETHTOOL_A_RINGS_TX_PUSH = 13, - ETHTOOL_A_RINGS_RX_PUSH = 14, - ETHTOOL_A_RINGS_TX_PUSH_BUF_LEN = 15, - ETHTOOL_A_RINGS_TX_PUSH_BUF_LEN_MAX = 16, - ETHTOOL_A_RINGS_HDS_THRESH = 17, - ETHTOOL_A_RINGS_HDS_THRESH_MAX = 18, - __ETHTOOL_A_RINGS_CNT = 19, - ETHTOOL_A_RINGS_MAX = 18, -}; - -enum { - ETHTOOL_A_MM_UNSPEC = 0, - ETHTOOL_A_MM_HEADER = 1, - ETHTOOL_A_MM_PMAC_ENABLED = 2, - ETHTOOL_A_MM_TX_ENABLED = 3, - ETHTOOL_A_MM_TX_ACTIVE = 4, - ETHTOOL_A_MM_TX_MIN_FRAG_SIZE = 5, - ETHTOOL_A_MM_RX_MIN_FRAG_SIZE = 6, - ETHTOOL_A_MM_VERIFY_ENABLED = 7, - ETHTOOL_A_MM_VERIFY_STATUS = 8, - ETHTOOL_A_MM_VERIFY_TIME = 9, - ETHTOOL_A_MM_MAX_VERIFY_TIME = 10, - ETHTOOL_A_MM_STATS = 11, - __ETHTOOL_A_MM_CNT = 12, - ETHTOOL_A_MM_MAX = 11, -}; - -enum { - ETHTOOL_A_LINKINFO_UNSPEC = 0, - ETHTOOL_A_LINKINFO_HEADER = 1, - ETHTOOL_A_LINKINFO_PORT = 2, - ETHTOOL_A_LINKINFO_PHYADDR = 3, - ETHTOOL_A_LINKINFO_TP_MDIX = 4, - ETHTOOL_A_LINKINFO_TP_MDIX_CTRL = 5, - ETHTOOL_A_LINKINFO_TRANSCEIVER = 6, - __ETHTOOL_A_LINKINFO_CNT = 7, - ETHTOOL_A_LINKINFO_MAX = 6, -}; - -enum { - ETHTOOL_A_LINKMODES_UNSPEC = 0, - ETHTOOL_A_LINKMODES_HEADER = 1, - ETHTOOL_A_LINKMODES_AUTONEG = 2, - ETHTOOL_A_LINKMODES_OURS = 3, - ETHTOOL_A_LINKMODES_PEER = 4, - ETHTOOL_A_LINKMODES_SPEED = 5, - ETHTOOL_A_LINKMODES_DUPLEX = 6, - ETHTOOL_A_LINKMODES_MASTER_SLAVE_CFG = 7, - ETHTOOL_A_LINKMODES_MASTER_SLAVE_STATE = 8, - ETHTOOL_A_LINKMODES_LANES = 9, - ETHTOOL_A_LINKMODES_RATE_MATCHING = 10, - __ETHTOOL_A_LINKMODES_CNT = 11, - ETHTOOL_A_LINKMODES_MAX = 10, -}; - -enum { - ETHTOOL_A_LINKSTATE_UNSPEC = 0, - ETHTOOL_A_LINKSTATE_HEADER = 1, - ETHTOOL_A_LINKSTATE_LINK = 2, - ETHTOOL_A_LINKSTATE_SQI = 3, - ETHTOOL_A_LINKSTATE_SQI_MAX = 4, - ETHTOOL_A_LINKSTATE_EXT_STATE = 5, - ETHTOOL_A_LINKSTATE_EXT_SUBSTATE = 6, - ETHTOOL_A_LINKSTATE_EXT_DOWN_CNT = 7, - __ETHTOOL_A_LINKSTATE_CNT = 8, - ETHTOOL_A_LINKSTATE_MAX = 7, -}; - -enum { - ETHTOOL_A_DEBUG_UNSPEC = 0, - ETHTOOL_A_DEBUG_HEADER = 1, - ETHTOOL_A_DEBUG_MSGMASK = 2, - __ETHTOOL_A_DEBUG_CNT = 3, - ETHTOOL_A_DEBUG_MAX = 2, -}; - -enum { - ETHTOOL_A_WOL_UNSPEC = 0, - ETHTOOL_A_WOL_HEADER = 1, - ETHTOOL_A_WOL_MODES = 2, - ETHTOOL_A_WOL_SOPASS = 3, - __ETHTOOL_A_WOL_CNT = 4, - ETHTOOL_A_WOL_MAX = 3, -}; - -enum { - ETHTOOL_A_FEATURES_UNSPEC = 0, - ETHTOOL_A_FEATURES_HEADER = 1, - ETHTOOL_A_FEATURES_HW = 2, - ETHTOOL_A_FEATURES_WANTED = 3, - ETHTOOL_A_FEATURES_ACTIVE = 4, - ETHTOOL_A_FEATURES_NOCHANGE = 5, - __ETHTOOL_A_FEATURES_CNT = 6, - ETHTOOL_A_FEATURES_MAX = 5, -}; - -enum { - ETHTOOL_A_CHANNELS_UNSPEC = 0, - ETHTOOL_A_CHANNELS_HEADER = 1, - ETHTOOL_A_CHANNELS_RX_MAX = 2, - ETHTOOL_A_CHANNELS_TX_MAX = 3, - ETHTOOL_A_CHANNELS_OTHER_MAX = 4, - ETHTOOL_A_CHANNELS_COMBINED_MAX = 5, - ETHTOOL_A_CHANNELS_RX_COUNT = 6, - ETHTOOL_A_CHANNELS_TX_COUNT = 7, - ETHTOOL_A_CHANNELS_OTHER_COUNT = 8, - ETHTOOL_A_CHANNELS_COMBINED_COUNT = 9, - __ETHTOOL_A_CHANNELS_CNT = 10, - ETHTOOL_A_CHANNELS_MAX = 9, -}; - -enum { - ETHTOOL_A_COALESCE_UNSPEC = 0, - ETHTOOL_A_COALESCE_HEADER = 1, - ETHTOOL_A_COALESCE_RX_USECS = 2, - ETHTOOL_A_COALESCE_RX_MAX_FRAMES = 3, - ETHTOOL_A_COALESCE_RX_USECS_IRQ = 4, - ETHTOOL_A_COALESCE_RX_MAX_FRAMES_IRQ = 5, - ETHTOOL_A_COALESCE_TX_USECS = 6, - ETHTOOL_A_COALESCE_TX_MAX_FRAMES = 7, - ETHTOOL_A_COALESCE_TX_USECS_IRQ = 8, - ETHTOOL_A_COALESCE_TX_MAX_FRAMES_IRQ = 9, - ETHTOOL_A_COALESCE_STATS_BLOCK_USECS = 10, - ETHTOOL_A_COALESCE_USE_ADAPTIVE_RX = 11, - ETHTOOL_A_COALESCE_USE_ADAPTIVE_TX = 12, - ETHTOOL_A_COALESCE_PKT_RATE_LOW = 13, - ETHTOOL_A_COALESCE_RX_USECS_LOW = 14, - ETHTOOL_A_COALESCE_RX_MAX_FRAMES_LOW = 15, - ETHTOOL_A_COALESCE_TX_USECS_LOW = 16, - ETHTOOL_A_COALESCE_TX_MAX_FRAMES_LOW = 17, - ETHTOOL_A_COALESCE_PKT_RATE_HIGH = 18, - ETHTOOL_A_COALESCE_RX_USECS_HIGH = 19, - ETHTOOL_A_COALESCE_RX_MAX_FRAMES_HIGH = 20, - ETHTOOL_A_COALESCE_TX_USECS_HIGH = 21, - ETHTOOL_A_COALESCE_TX_MAX_FRAMES_HIGH = 22, - ETHTOOL_A_COALESCE_RATE_SAMPLE_INTERVAL = 23, - ETHTOOL_A_COALESCE_USE_CQE_MODE_TX = 24, - ETHTOOL_A_COALESCE_USE_CQE_MODE_RX = 25, - ETHTOOL_A_COALESCE_TX_AGGR_MAX_BYTES = 26, - ETHTOOL_A_COALESCE_TX_AGGR_MAX_FRAMES = 27, - ETHTOOL_A_COALESCE_TX_AGGR_TIME_USECS = 28, - ETHTOOL_A_COALESCE_RX_PROFILE = 29, - ETHTOOL_A_COALESCE_TX_PROFILE = 30, - __ETHTOOL_A_COALESCE_CNT = 31, - ETHTOOL_A_COALESCE_MAX = 30, -}; - -enum { - ETHTOOL_A_PAUSE_UNSPEC = 0, - ETHTOOL_A_PAUSE_HEADER = 1, - ETHTOOL_A_PAUSE_AUTONEG = 2, - ETHTOOL_A_PAUSE_RX = 3, - ETHTOOL_A_PAUSE_TX = 4, - ETHTOOL_A_PAUSE_STATS = 5, - ETHTOOL_A_PAUSE_STATS_SRC = 6, - __ETHTOOL_A_PAUSE_CNT = 7, - ETHTOOL_A_PAUSE_MAX = 6, -}; - -enum { - ETHTOOL_A_EEE_UNSPEC = 0, - ETHTOOL_A_EEE_HEADER = 1, - ETHTOOL_A_EEE_MODES_OURS = 2, - ETHTOOL_A_EEE_MODES_PEER = 3, - ETHTOOL_A_EEE_ACTIVE = 4, - ETHTOOL_A_EEE_ENABLED = 5, - ETHTOOL_A_EEE_TX_LPI_ENABLED = 6, - ETHTOOL_A_EEE_TX_LPI_TIMER = 7, - __ETHTOOL_A_EEE_CNT = 8, - ETHTOOL_A_EEE_MAX = 7, -}; - -enum { - ETHTOOL_A_TSINFO_UNSPEC = 0, - ETHTOOL_A_TSINFO_HEADER = 1, - ETHTOOL_A_TSINFO_TIMESTAMPING = 2, - ETHTOOL_A_TSINFO_TX_TYPES = 3, - ETHTOOL_A_TSINFO_RX_FILTERS = 4, - ETHTOOL_A_TSINFO_PHC_INDEX = 5, - ETHTOOL_A_TSINFO_STATS = 6, - ETHTOOL_A_TSINFO_HWTSTAMP_PROVIDER = 7, - ETHTOOL_A_TSINFO_HWTSTAMP_SOURCE = 8, - ETHTOOL_A_TSINFO_HWTSTAMP_PHYINDEX = 9, - __ETHTOOL_A_TSINFO_CNT = 10, - ETHTOOL_A_TSINFO_MAX = 9, -}; - -enum { - ETHTOOL_A_CABLE_TEST_UNSPEC = 0, - ETHTOOL_A_CABLE_TEST_HEADER = 1, - __ETHTOOL_A_CABLE_TEST_CNT = 2, - ETHTOOL_A_CABLE_TEST_MAX = 1, -}; - -enum { - ETHTOOL_A_CABLE_TEST_TDR_UNSPEC = 0, - ETHTOOL_A_CABLE_TEST_TDR_HEADER = 1, - ETHTOOL_A_CABLE_TEST_TDR_CFG = 2, - __ETHTOOL_A_CABLE_TEST_TDR_CNT = 3, - ETHTOOL_A_CABLE_TEST_TDR_MAX = 2, -}; - -enum { - ETHTOOL_A_TUNNEL_INFO_UNSPEC = 0, - ETHTOOL_A_TUNNEL_INFO_HEADER = 1, - ETHTOOL_A_TUNNEL_INFO_UDP_PORTS = 2, - __ETHTOOL_A_TUNNEL_INFO_CNT = 3, - ETHTOOL_A_TUNNEL_INFO_MAX = 2, -}; - -enum { - ETHTOOL_A_FEC_UNSPEC = 0, - ETHTOOL_A_FEC_HEADER = 1, - ETHTOOL_A_FEC_MODES = 2, - ETHTOOL_A_FEC_AUTO = 3, - ETHTOOL_A_FEC_ACTIVE = 4, - ETHTOOL_A_FEC_STATS = 5, - __ETHTOOL_A_FEC_CNT = 6, - ETHTOOL_A_FEC_MAX = 5, -}; - -enum { - ETHTOOL_A_MODULE_EEPROM_UNSPEC = 0, - ETHTOOL_A_MODULE_EEPROM_HEADER = 1, - ETHTOOL_A_MODULE_EEPROM_OFFSET = 2, - ETHTOOL_A_MODULE_EEPROM_LENGTH = 3, - ETHTOOL_A_MODULE_EEPROM_PAGE = 4, - ETHTOOL_A_MODULE_EEPROM_BANK = 5, - ETHTOOL_A_MODULE_EEPROM_I2C_ADDRESS = 6, - ETHTOOL_A_MODULE_EEPROM_DATA = 7, - __ETHTOOL_A_MODULE_EEPROM_CNT = 8, - ETHTOOL_A_MODULE_EEPROM_MAX = 7, -}; - -enum { - ETHTOOL_A_STATS_UNSPEC = 0, - ETHTOOL_A_STATS_PAD = 1, - ETHTOOL_A_STATS_HEADER = 2, - ETHTOOL_A_STATS_GROUPS = 3, - ETHTOOL_A_STATS_GRP = 4, - ETHTOOL_A_STATS_SRC = 5, - __ETHTOOL_A_STATS_CNT = 6, - ETHTOOL_A_STATS_MAX = 5, -}; - -enum { - ETHTOOL_A_PHC_VCLOCKS_UNSPEC = 0, - ETHTOOL_A_PHC_VCLOCKS_HEADER = 1, - ETHTOOL_A_PHC_VCLOCKS_NUM = 2, - ETHTOOL_A_PHC_VCLOCKS_INDEX = 3, - __ETHTOOL_A_PHC_VCLOCKS_CNT = 4, - ETHTOOL_A_PHC_VCLOCKS_MAX = 3, -}; - -enum { - ETHTOOL_A_MODULE_UNSPEC = 0, - ETHTOOL_A_MODULE_HEADER = 1, - ETHTOOL_A_MODULE_POWER_MODE_POLICY = 2, - ETHTOOL_A_MODULE_POWER_MODE = 3, - __ETHTOOL_A_MODULE_CNT = 4, - ETHTOOL_A_MODULE_MAX = 3, -}; - -enum { - ETHTOOL_A_PSE_UNSPEC = 0, - ETHTOOL_A_PSE_HEADER = 1, - ETHTOOL_A_PODL_PSE_ADMIN_STATE = 2, - ETHTOOL_A_PODL_PSE_ADMIN_CONTROL = 3, - ETHTOOL_A_PODL_PSE_PW_D_STATUS = 4, - ETHTOOL_A_C33_PSE_ADMIN_STATE = 5, - ETHTOOL_A_C33_PSE_ADMIN_CONTROL = 6, - ETHTOOL_A_C33_PSE_PW_D_STATUS = 7, - ETHTOOL_A_C33_PSE_PW_CLASS = 8, - ETHTOOL_A_C33_PSE_ACTUAL_PW = 9, - ETHTOOL_A_C33_PSE_EXT_STATE = 10, - ETHTOOL_A_C33_PSE_EXT_SUBSTATE = 11, - ETHTOOL_A_C33_PSE_AVAIL_PW_LIMIT = 12, - ETHTOOL_A_C33_PSE_PW_LIMIT_RANGES = 13, - ETHTOOL_A_PSE_PW_D_ID = 14, - ETHTOOL_A_PSE_PRIO_MAX = 15, - ETHTOOL_A_PSE_PRIO = 16, - __ETHTOOL_A_PSE_CNT = 17, - ETHTOOL_A_PSE_MAX = 16, -}; - -enum { - ETHTOOL_A_RSS_UNSPEC = 0, - ETHTOOL_A_RSS_HEADER = 1, - ETHTOOL_A_RSS_CONTEXT = 2, - ETHTOOL_A_RSS_HFUNC = 3, - ETHTOOL_A_RSS_INDIR = 4, - ETHTOOL_A_RSS_HKEY = 5, - ETHTOOL_A_RSS_INPUT_XFRM = 6, - ETHTOOL_A_RSS_START_CONTEXT = 7, - ETHTOOL_A_RSS_FLOW_HASH = 8, - __ETHTOOL_A_RSS_CNT = 9, - ETHTOOL_A_RSS_MAX = 8, -}; - -enum { - ETHTOOL_A_PLCA_UNSPEC = 0, - ETHTOOL_A_PLCA_HEADER = 1, - ETHTOOL_A_PLCA_VERSION = 2, - ETHTOOL_A_PLCA_ENABLED = 3, - ETHTOOL_A_PLCA_STATUS = 4, - ETHTOOL_A_PLCA_NODE_CNT = 5, - ETHTOOL_A_PLCA_NODE_ID = 6, - ETHTOOL_A_PLCA_TO_TMR = 7, - ETHTOOL_A_PLCA_BURST_CNT = 8, - ETHTOOL_A_PLCA_BURST_TMR = 9, - __ETHTOOL_A_PLCA_CNT = 10, - ETHTOOL_A_PLCA_MAX = 9, -}; - -enum { - ETHTOOL_A_MODULE_FW_FLASH_UNSPEC = 0, - ETHTOOL_A_MODULE_FW_FLASH_HEADER = 1, - ETHTOOL_A_MODULE_FW_FLASH_FILE_NAME = 2, - ETHTOOL_A_MODULE_FW_FLASH_PASSWORD = 3, - ETHTOOL_A_MODULE_FW_FLASH_STATUS = 4, - ETHTOOL_A_MODULE_FW_FLASH_STATUS_MSG = 5, - ETHTOOL_A_MODULE_FW_FLASH_DONE = 6, - ETHTOOL_A_MODULE_FW_FLASH_TOTAL = 7, - __ETHTOOL_A_MODULE_FW_FLASH_CNT = 8, - ETHTOOL_A_MODULE_FW_FLASH_MAX = 7, -}; - -enum { - ETHTOOL_A_PHY_UNSPEC = 0, - ETHTOOL_A_PHY_HEADER = 1, - ETHTOOL_A_PHY_INDEX = 2, - ETHTOOL_A_PHY_DRVNAME = 3, - ETHTOOL_A_PHY_NAME = 4, - ETHTOOL_A_PHY_UPSTREAM_TYPE = 5, - ETHTOOL_A_PHY_UPSTREAM_INDEX = 6, - ETHTOOL_A_PHY_UPSTREAM_SFP_NAME = 7, - ETHTOOL_A_PHY_DOWNSTREAM_SFP_NAME = 8, - __ETHTOOL_A_PHY_CNT = 9, - ETHTOOL_A_PHY_MAX = 8, -}; - -enum { - ETHTOOL_A_TSCONFIG_UNSPEC = 0, - ETHTOOL_A_TSCONFIG_HEADER = 1, - ETHTOOL_A_TSCONFIG_HWTSTAMP_PROVIDER = 2, - ETHTOOL_A_TSCONFIG_TX_TYPES = 3, - ETHTOOL_A_TSCONFIG_RX_FILTERS = 4, - ETHTOOL_A_TSCONFIG_HWTSTAMP_FLAGS = 5, - __ETHTOOL_A_TSCONFIG_CNT = 6, - ETHTOOL_A_TSCONFIG_MAX = 5, -}; - -enum { - ETHTOOL_MSG_USER_NONE = 0, - ETHTOOL_MSG_STRSET_GET = 1, - ETHTOOL_MSG_LINKINFO_GET = 2, - ETHTOOL_MSG_LINKINFO_SET = 3, - ETHTOOL_MSG_LINKMODES_GET = 4, - ETHTOOL_MSG_LINKMODES_SET = 5, - ETHTOOL_MSG_LINKSTATE_GET = 6, - ETHTOOL_MSG_DEBUG_GET = 7, - ETHTOOL_MSG_DEBUG_SET = 8, - ETHTOOL_MSG_WOL_GET = 9, - ETHTOOL_MSG_WOL_SET = 10, - ETHTOOL_MSG_FEATURES_GET = 11, - ETHTOOL_MSG_FEATURES_SET = 12, - ETHTOOL_MSG_PRIVFLAGS_GET = 13, - ETHTOOL_MSG_PRIVFLAGS_SET = 14, - ETHTOOL_MSG_RINGS_GET = 15, - ETHTOOL_MSG_RINGS_SET = 16, - ETHTOOL_MSG_CHANNELS_GET = 17, - ETHTOOL_MSG_CHANNELS_SET = 18, - ETHTOOL_MSG_COALESCE_GET = 19, - ETHTOOL_MSG_COALESCE_SET = 20, - ETHTOOL_MSG_PAUSE_GET = 21, - ETHTOOL_MSG_PAUSE_SET = 22, - ETHTOOL_MSG_EEE_GET = 23, - ETHTOOL_MSG_EEE_SET = 24, - ETHTOOL_MSG_TSINFO_GET = 25, - ETHTOOL_MSG_CABLE_TEST_ACT = 26, - ETHTOOL_MSG_CABLE_TEST_TDR_ACT = 27, - ETHTOOL_MSG_TUNNEL_INFO_GET = 28, - ETHTOOL_MSG_FEC_GET = 29, - ETHTOOL_MSG_FEC_SET = 30, - ETHTOOL_MSG_MODULE_EEPROM_GET = 31, - ETHTOOL_MSG_STATS_GET = 32, - ETHTOOL_MSG_PHC_VCLOCKS_GET = 33, - ETHTOOL_MSG_MODULE_GET = 34, - ETHTOOL_MSG_MODULE_SET = 35, - ETHTOOL_MSG_PSE_GET = 36, - ETHTOOL_MSG_PSE_SET = 37, - ETHTOOL_MSG_RSS_GET = 38, - ETHTOOL_MSG_PLCA_GET_CFG = 39, - ETHTOOL_MSG_PLCA_SET_CFG = 40, - ETHTOOL_MSG_PLCA_GET_STATUS = 41, - ETHTOOL_MSG_MM_GET = 42, - ETHTOOL_MSG_MM_SET = 43, - ETHTOOL_MSG_MODULE_FW_FLASH_ACT = 44, - ETHTOOL_MSG_PHY_GET = 45, - ETHTOOL_MSG_TSCONFIG_GET = 46, - ETHTOOL_MSG_TSCONFIG_SET = 47, - ETHTOOL_MSG_RSS_SET = 48, - ETHTOOL_MSG_RSS_CREATE_ACT = 49, - ETHTOOL_MSG_RSS_DELETE_ACT = 50, - __ETHTOOL_MSG_USER_CNT = 51, - ETHTOOL_MSG_USER_MAX = 50, -}; - -enum { - ETHTOOL_MSG_KERNEL_NONE = 0, - ETHTOOL_MSG_STRSET_GET_REPLY = 1, - ETHTOOL_MSG_LINKINFO_GET_REPLY = 2, - ETHTOOL_MSG_LINKINFO_NTF = 3, - ETHTOOL_MSG_LINKMODES_GET_REPLY = 4, - ETHTOOL_MSG_LINKMODES_NTF = 5, - ETHTOOL_MSG_LINKSTATE_GET_REPLY = 6, - ETHTOOL_MSG_DEBUG_GET_REPLY = 7, - ETHTOOL_MSG_DEBUG_NTF = 8, - ETHTOOL_MSG_WOL_GET_REPLY = 9, - ETHTOOL_MSG_WOL_NTF = 10, - ETHTOOL_MSG_FEATURES_GET_REPLY = 11, - ETHTOOL_MSG_FEATURES_SET_REPLY = 12, - ETHTOOL_MSG_FEATURES_NTF = 13, - ETHTOOL_MSG_PRIVFLAGS_GET_REPLY = 14, - ETHTOOL_MSG_PRIVFLAGS_NTF = 15, - ETHTOOL_MSG_RINGS_GET_REPLY = 16, - ETHTOOL_MSG_RINGS_NTF = 17, - ETHTOOL_MSG_CHANNELS_GET_REPLY = 18, - ETHTOOL_MSG_CHANNELS_NTF = 19, - ETHTOOL_MSG_COALESCE_GET_REPLY = 20, - ETHTOOL_MSG_COALESCE_NTF = 21, - ETHTOOL_MSG_PAUSE_GET_REPLY = 22, - ETHTOOL_MSG_PAUSE_NTF = 23, - ETHTOOL_MSG_EEE_GET_REPLY = 24, - ETHTOOL_MSG_EEE_NTF = 25, - ETHTOOL_MSG_TSINFO_GET_REPLY = 26, - ETHTOOL_MSG_CABLE_TEST_NTF = 27, - ETHTOOL_MSG_CABLE_TEST_TDR_NTF = 28, - ETHTOOL_MSG_TUNNEL_INFO_GET_REPLY = 29, - ETHTOOL_MSG_FEC_GET_REPLY = 30, - ETHTOOL_MSG_FEC_NTF = 31, - ETHTOOL_MSG_MODULE_EEPROM_GET_REPLY = 32, - ETHTOOL_MSG_STATS_GET_REPLY = 33, - ETHTOOL_MSG_PHC_VCLOCKS_GET_REPLY = 34, - ETHTOOL_MSG_MODULE_GET_REPLY = 35, - ETHTOOL_MSG_MODULE_NTF = 36, - ETHTOOL_MSG_PSE_GET_REPLY = 37, - ETHTOOL_MSG_RSS_GET_REPLY = 38, - ETHTOOL_MSG_PLCA_GET_CFG_REPLY = 39, - ETHTOOL_MSG_PLCA_GET_STATUS_REPLY = 40, - ETHTOOL_MSG_PLCA_NTF = 41, - ETHTOOL_MSG_MM_GET_REPLY = 42, - ETHTOOL_MSG_MM_NTF = 43, - ETHTOOL_MSG_MODULE_FW_FLASH_NTF = 44, - ETHTOOL_MSG_PHY_GET_REPLY = 45, - ETHTOOL_MSG_PHY_NTF = 46, - ETHTOOL_MSG_TSCONFIG_GET_REPLY = 47, - ETHTOOL_MSG_TSCONFIG_SET_REPLY = 48, - ETHTOOL_MSG_PSE_NTF = 49, - ETHTOOL_MSG_RSS_NTF = 50, - ETHTOOL_MSG_RSS_CREATE_ACT_REPLY = 51, - ETHTOOL_MSG_RSS_CREATE_NTF = 52, - ETHTOOL_MSG_RSS_DELETE_NTF = 53, - __ETHTOOL_MSG_KERNEL_CNT = 54, - ETHTOOL_MSG_KERNEL_MAX = 53, -}; - -enum phy_upstream { - PHY_UPSTREAM_MAC = 0, - PHY_UPSTREAM_PHY = 1, -}; - -enum { - ETHTOOL_STATS_ETH_PHY = 0, - ETHTOOL_STATS_ETH_MAC = 1, - ETHTOOL_STATS_ETH_CTRL = 2, - ETHTOOL_STATS_RMON = 3, - ETHTOOL_STATS_PHY = 4, - __ETHTOOL_STATS_CNT = 5, -}; - -enum { - ETHTOOL_A_STATS_ETH_PHY_5_SYM_ERR = 0, - __ETHTOOL_A_STATS_ETH_PHY_CNT = 1, - ETHTOOL_A_STATS_ETH_PHY_MAX = 0, -}; - -enum { - ETHTOOL_A_STATS_ETH_MAC_2_TX_PKT = 0, - ETHTOOL_A_STATS_ETH_MAC_3_SINGLE_COL = 1, - ETHTOOL_A_STATS_ETH_MAC_4_MULTI_COL = 2, - ETHTOOL_A_STATS_ETH_MAC_5_RX_PKT = 3, - ETHTOOL_A_STATS_ETH_MAC_6_FCS_ERR = 4, - ETHTOOL_A_STATS_ETH_MAC_7_ALIGN_ERR = 5, - ETHTOOL_A_STATS_ETH_MAC_8_TX_BYTES = 6, - ETHTOOL_A_STATS_ETH_MAC_9_TX_DEFER = 7, - ETHTOOL_A_STATS_ETH_MAC_10_LATE_COL = 8, - ETHTOOL_A_STATS_ETH_MAC_11_XS_COL = 9, - ETHTOOL_A_STATS_ETH_MAC_12_TX_INT_ERR = 10, - ETHTOOL_A_STATS_ETH_MAC_13_CS_ERR = 11, - ETHTOOL_A_STATS_ETH_MAC_14_RX_BYTES = 12, - ETHTOOL_A_STATS_ETH_MAC_15_RX_INT_ERR = 13, - ETHTOOL_A_STATS_ETH_MAC_18_TX_MCAST = 14, - ETHTOOL_A_STATS_ETH_MAC_19_TX_BCAST = 15, - ETHTOOL_A_STATS_ETH_MAC_20_XS_DEFER = 16, - ETHTOOL_A_STATS_ETH_MAC_21_RX_MCAST = 17, - ETHTOOL_A_STATS_ETH_MAC_22_RX_BCAST = 18, - ETHTOOL_A_STATS_ETH_MAC_23_IR_LEN_ERR = 19, - ETHTOOL_A_STATS_ETH_MAC_24_OOR_LEN = 20, - ETHTOOL_A_STATS_ETH_MAC_25_TOO_LONG_ERR = 21, - __ETHTOOL_A_STATS_ETH_MAC_CNT = 22, - ETHTOOL_A_STATS_ETH_MAC_MAX = 21, -}; - -enum { - ETHTOOL_A_STATS_ETH_CTRL_3_TX = 0, - ETHTOOL_A_STATS_ETH_CTRL_4_RX = 1, - ETHTOOL_A_STATS_ETH_CTRL_5_RX_UNSUP = 2, - __ETHTOOL_A_STATS_ETH_CTRL_CNT = 3, - ETHTOOL_A_STATS_ETH_CTRL_MAX = 2, -}; - -enum { - ETHTOOL_A_STATS_RMON_UNDERSIZE = 0, - ETHTOOL_A_STATS_RMON_OVERSIZE = 1, - ETHTOOL_A_STATS_RMON_FRAG = 2, - ETHTOOL_A_STATS_RMON_JABBER = 3, - __ETHTOOL_A_STATS_RMON_CNT = 4, - ETHTOOL_A_STATS_RMON_MAX = 3, -}; - -enum { - ETHTOOL_A_STATS_PHY_RX_PKTS = 0, - ETHTOOL_A_STATS_PHY_RX_BYTES = 1, - ETHTOOL_A_STATS_PHY_RX_ERRORS = 2, - ETHTOOL_A_STATS_PHY_TX_PKTS = 3, - ETHTOOL_A_STATS_PHY_TX_BYTES = 4, - ETHTOOL_A_STATS_PHY_TX_ERRORS = 5, - __ETHTOOL_A_STATS_PHY_CNT = 6, - ETHTOOL_A_STATS_PHY_MAX = 5, -}; - -enum ethtool_multicast_groups { - ETHNL_MCGRP_MONITOR = 0, -}; - -struct phy_device_node { - enum phy_upstream upstream_type; - union { - struct net_device *netdev; - struct phy_device *phydev; - } upstream; - struct sfp_bus *parent_sfp_bus; - struct phy_device *phy; -}; - -struct genl_dumpit_info { - struct genl_split_ops op; - struct genl_info info; -}; - -struct ethnl_req_info { - struct net_device *dev; - netdevice_tracker dev_tracker; - u32 flags; - u32 phy_index; -}; - -struct ethnl_reply_data { - struct net_device *dev; -}; - -enum ethnl_sock_type { - ETHTOOL_SOCK_TYPE_MODULE_FW_FLASH = 0, -}; - -struct ethnl_sock_priv { - struct net_device *dev; - u32 portid; - enum ethnl_sock_type type; -}; - -struct ethnl_request_ops { - u8 request_cmd; - u8 reply_cmd; - u16 hdr_attr; - unsigned int req_info_size; - unsigned int reply_data_size; - bool allow_nodev_do; - u8 set_ntf_cmd; - int (*parse_request)(struct ethnl_req_info *, struct nlattr **, struct netlink_ext_ack *); - int (*prepare_data)(const struct ethnl_req_info *, struct ethnl_reply_data *, const struct genl_info *); - int (*reply_size)(const struct ethnl_req_info *, const struct ethnl_reply_data *); - int (*fill_reply)(struct sk_buff *, const struct ethnl_req_info *, const struct ethnl_reply_data *); - void (*cleanup_data)(struct ethnl_reply_data *); - int (*set_validate)(struct ethnl_req_info *, struct genl_info *); - int (*set)(struct ethnl_req_info *, struct genl_info *); -}; - -struct ethnl_dump_ctx { - const struct ethnl_request_ops *ops; - struct ethnl_req_info *req_info; - struct ethnl_reply_data *reply_data; - long unsigned int pos_ifindex; -}; - -struct ethnl_perphy_dump_ctx { - struct ethnl_dump_ctx ethnl_ctx; - unsigned int ifindex; - long unsigned int pos_phyindex; -}; - -typedef void (*ethnl_notify_handler_t)(struct net_device *, unsigned int, const struct ethnl_req_info *); - -enum tunable_id { - ETHTOOL_ID_UNSPEC = 0, - ETHTOOL_RX_COPYBREAK = 1, - ETHTOOL_TX_COPYBREAK = 2, - ETHTOOL_PFC_PREVENTION_TOUT = 3, - ETHTOOL_TX_COPYBREAK_BUF_SIZE = 4, - __ETHTOOL_TUNABLE_COUNT = 5, -}; - -enum phy_tunable_id { - ETHTOOL_PHY_ID_UNSPEC = 0, - ETHTOOL_PHY_DOWNSHIFT = 1, - ETHTOOL_PHY_FAST_LINK_DOWN = 2, - ETHTOOL_PHY_EDPD = 3, - __ETHTOOL_PHY_TUNABLE_COUNT = 4, -}; - -typedef const char (* const ethnl_string_array_t)[32]; - -struct features_reply_data { - struct ethnl_reply_data base; - u32 hw[2]; - u32 wanted[2]; - u32 active[2]; - u32 nochange[2]; - u32 all[2]; -}; - -enum { - ETHTOOL_A_IRQ_MODERATION_UNSPEC = 0, - ETHTOOL_A_IRQ_MODERATION_USEC = 1, - ETHTOOL_A_IRQ_MODERATION_PKTS = 2, - ETHTOOL_A_IRQ_MODERATION_COMPS = 3, - __ETHTOOL_A_IRQ_MODERATION_CNT = 4, - ETHTOOL_A_IRQ_MODERATION_MAX = 3, -}; - -enum { - ETHTOOL_A_PROFILE_UNSPEC = 0, - ETHTOOL_A_PROFILE_IRQ_MODERATION = 1, - __ETHTOOL_A_PROFILE_CNT = 2, - ETHTOOL_A_PROFILE_MAX = 1, -}; - -struct coalesce_reply_data { - struct ethnl_reply_data base; - struct ethtool_coalesce coalesce; - struct kernel_ethtool_coalesce kernel_coalesce; - u32 supported_params; -}; - -enum { - ETHTOOL_A_CABLE_RESULT_UNSPEC = 0, - ETHTOOL_A_CABLE_RESULT_PAIR = 1, - ETHTOOL_A_CABLE_RESULT_CODE = 2, - ETHTOOL_A_CABLE_RESULT_SRC = 3, - __ETHTOOL_A_CABLE_RESULT_CNT = 4, - ETHTOOL_A_CABLE_RESULT_MAX = 3, -}; - -enum { - ETHTOOL_A_CABLE_FAULT_LENGTH_UNSPEC = 0, - ETHTOOL_A_CABLE_FAULT_LENGTH_PAIR = 1, - ETHTOOL_A_CABLE_FAULT_LENGTH_CM = 2, - ETHTOOL_A_CABLE_FAULT_LENGTH_SRC = 3, - __ETHTOOL_A_CABLE_FAULT_LENGTH_CNT = 4, - ETHTOOL_A_CABLE_FAULT_LENGTH_MAX = 3, -}; - -enum { - ETHTOOL_A_CABLE_NEST_UNSPEC = 0, - ETHTOOL_A_CABLE_NEST_RESULT = 1, - ETHTOOL_A_CABLE_NEST_FAULT_LENGTH = 2, - __ETHTOOL_A_CABLE_NEST_CNT = 3, - ETHTOOL_A_CABLE_NEST_MAX = 2, -}; - -enum { - ETHTOOL_A_CABLE_TEST_NTF_UNSPEC = 0, - ETHTOOL_A_CABLE_TEST_NTF_HEADER = 1, - ETHTOOL_A_CABLE_TEST_NTF_STATUS = 2, - ETHTOOL_A_CABLE_TEST_NTF_NEST = 3, - __ETHTOOL_A_CABLE_TEST_NTF_CNT = 4, - ETHTOOL_A_CABLE_TEST_NTF_MAX = 3, -}; - -enum { - ETHTOOL_A_CABLE_TEST_TDR_CFG_UNSPEC = 0, - ETHTOOL_A_CABLE_TEST_TDR_CFG_FIRST = 1, - ETHTOOL_A_CABLE_TEST_TDR_CFG_LAST = 2, - ETHTOOL_A_CABLE_TEST_TDR_CFG_STEP = 3, - ETHTOOL_A_CABLE_TEST_TDR_CFG_PAIR = 4, - __ETHTOOL_A_CABLE_TEST_TDR_CFG_CNT = 5, - ETHTOOL_A_CABLE_TEST_TDR_CFG_MAX = 4, -}; - -struct ethtool_phy_ops { - int (*get_sset_count)(struct phy_device *); - int (*get_strings)(struct phy_device *, u8 *); - int (*get_stats)(struct phy_device *, struct ethtool_stats *, u64 *); - int (*get_plca_cfg)(struct phy_device *, struct phy_plca_cfg *); - int (*set_plca_cfg)(struct phy_device *, const struct phy_plca_cfg *, struct netlink_ext_ack *); - int (*get_plca_status)(struct phy_device *, struct phy_plca_status *); - int (*start_cable_test)(struct phy_device *, struct netlink_ext_ack *); - int (*start_cable_test_tdr)(struct phy_device *, struct netlink_ext_ack *, const struct phy_tdr_config *); -}; - -enum { - ETHTOOL_A_CABLE_PAIR_A = 0, - ETHTOOL_A_CABLE_PAIR_B = 1, - ETHTOOL_A_CABLE_PAIR_C = 2, - ETHTOOL_A_CABLE_PAIR_D = 3, -}; - -enum { - ETHTOOL_A_CABLE_INF_SRC_UNSPEC = 0, - ETHTOOL_A_CABLE_INF_SRC_TDR = 1, - ETHTOOL_A_CABLE_INF_SRC_ALCD = 2, -}; - -enum { - ETHTOOL_A_CABLE_TEST_NTF_STATUS_UNSPEC = 0, - ETHTOOL_A_CABLE_TEST_NTF_STATUS_STARTED = 1, - ETHTOOL_A_CABLE_TEST_NTF_STATUS_COMPLETED = 2, -}; - -enum { - ETHTOOL_A_CABLE_AMPLITUDE_UNSPEC = 0, - ETHTOOL_A_CABLE_AMPLITUDE_PAIR = 1, - ETHTOOL_A_CABLE_AMPLITUDE_mV = 2, - __ETHTOOL_A_CABLE_AMPLITUDE_CNT = 3, - ETHTOOL_A_CABLE_AMPLITUDE_MAX = 2, -}; - -enum { - ETHTOOL_A_CABLE_PULSE_UNSPEC = 0, - ETHTOOL_A_CABLE_PULSE_mV = 1, - __ETHTOOL_A_CABLE_PULSE_CNT = 2, - ETHTOOL_A_CABLE_PULSE_MAX = 1, -}; - -enum { - ETHTOOL_A_CABLE_STEP_UNSPEC = 0, - ETHTOOL_A_CABLE_STEP_FIRST_DISTANCE = 1, - ETHTOOL_A_CABLE_STEP_LAST_DISTANCE = 2, - ETHTOOL_A_CABLE_STEP_STEP_DISTANCE = 3, - __ETHTOOL_A_CABLE_STEP_CNT = 4, - ETHTOOL_A_CABLE_STEP_MAX = 3, -}; - -enum { - ETHTOOL_A_CABLE_TDR_NEST_UNSPEC = 0, - ETHTOOL_A_CABLE_TDR_NEST_STEP = 1, - ETHTOOL_A_CABLE_TDR_NEST_AMPLITUDE = 2, - ETHTOOL_A_CABLE_TDR_NEST_PULSE = 3, - __ETHTOOL_A_CABLE_TDR_NEST_CNT = 4, - ETHTOOL_A_CABLE_TDR_NEST_MAX = 3, -}; - -enum { - ETHTOOL_A_STATS_GRP_UNSPEC = 0, - ETHTOOL_A_STATS_GRP_PAD = 1, - ETHTOOL_A_STATS_GRP_ID = 2, - ETHTOOL_A_STATS_GRP_SS_ID = 3, - ETHTOOL_A_STATS_GRP_STAT = 4, - ETHTOOL_A_STATS_GRP_HIST_RX = 5, - ETHTOOL_A_STATS_GRP_HIST_TX = 6, - ETHTOOL_A_STATS_GRP_HIST_BKT_LOW = 7, - ETHTOOL_A_STATS_GRP_HIST_BKT_HI = 8, - ETHTOOL_A_STATS_GRP_HIST_VAL = 9, - __ETHTOOL_A_STATS_GRP_CNT = 10, - ETHTOOL_A_STATS_GRP_MAX = 9, -}; - -struct stats_req_info { - struct ethnl_req_info base; - long unsigned int stat_mask[1]; - enum ethtool_mac_stats_src src; -}; - -struct stats_reply_data { - struct ethnl_reply_data base; - union { - struct { - struct ethtool_eth_phy_stats phy_stats; - struct ethtool_eth_mac_stats mac_stats; - struct ethtool_eth_ctrl_stats ctrl_stats; - struct ethtool_rmon_stats rmon_stats; - struct ethtool_phy_stats phydev_stats; - }; - struct { - struct ethtool_eth_phy_stats phy_stats; - struct ethtool_eth_mac_stats mac_stats; - struct ethtool_eth_ctrl_stats ctrl_stats; - struct ethtool_rmon_stats rmon_stats; - struct ethtool_phy_stats phydev_stats; - } stats; - }; - const struct ethtool_rmon_hist_range *rmon_ranges; -}; - -enum ethtool_reset_flags { - ETH_RESET_MGMT = 1, - ETH_RESET_IRQ = 2, - ETH_RESET_DMA = 4, - ETH_RESET_FILTER = 8, - ETH_RESET_OFFLOAD = 16, - ETH_RESET_MAC = 32, - ETH_RESET_PHY = 64, - ETH_RESET_RAM = 128, - ETH_RESET_AP = 256, - ETH_RESET_DEDICATED = 65535, - ETH_RESET_ALL = 4294967295, -}; - -struct ethnl_module_fw_flash_ntf_params { - u32 portid; - u32 seq; - bool closed_sock; -}; - -struct ethtool_module_fw_flash_params { - __be32 password; - u8 password_valid: 1; -}; - -struct ethtool_cmis_fw_update_params { - struct net_device *dev; - struct ethtool_module_fw_flash_params params; - struct ethnl_module_fw_flash_ntf_params ntf_params; - const struct firmware *fw; -}; - -struct ethtool_cmis_cdb { - u8 cmis_rev; - u8 read_write_len_ext; - u16 max_completion_time; -}; - -enum ethtool_cmis_cdb_cmd_id { - ETHTOOL_CMIS_CDB_CMD_QUERY_STATUS = 0, - ETHTOOL_CMIS_CDB_CMD_MODULE_FEATURES = 64, - ETHTOOL_CMIS_CDB_CMD_FW_MANAGMENT_FEATURES = 65, - ETHTOOL_CMIS_CDB_CMD_START_FW_DOWNLOAD = 257, - ETHTOOL_CMIS_CDB_CMD_WRITE_FW_BLOCK_LPL = 259, - ETHTOOL_CMIS_CDB_CMD_WRITE_FW_BLOCK_EPL = 260, - ETHTOOL_CMIS_CDB_CMD_COMPLETE_FW_DOWNLOAD = 263, - ETHTOOL_CMIS_CDB_CMD_RUN_FW_IMAGE = 265, - ETHTOOL_CMIS_CDB_CMD_COMMIT_FW_IMAGE = 266, -}; - -struct ethtool_cmis_cdb_request { - __be16 id; - union { - struct { - __be16 epl_len; - u8 lpl_len; - u8 chk_code; - u8 resv1; - u8 resv2; - u8 payload[120]; - }; - struct { - __be16 epl_len; - u8 lpl_len; - u8 chk_code; - u8 resv1; - u8 resv2; - u8 payload[120]; - } body; - }; - u8 *epl; -}; - -struct ethtool_cmis_cdb_cmd_args { - struct ethtool_cmis_cdb_request req; - u16 max_duration; - u8 read_write_len_ext; - u8 msleep_pre_rpl; - u8 rpl_exp_len; - u8 flags; - char *err_msg; -}; - -struct cmis_fw_update_fw_mng_features { - u8 start_cmd_payload_size; - u8 write_mechanism; - u16 max_duration_start; - u16 max_duration_write; - u16 max_duration_complete; -}; - -struct cmis_cdb_fw_mng_features_rpl { - u8 resv1; - u8 resv2; - u8 start_cmd_payload_size; - u8 resv3; - u8 read_write_len_ext; - u8 write_mechanism; - u8 resv4; - u8 resv5; - __be16 max_duration_start; - __be16 resv6; - __be16 max_duration_write; - __be16 max_duration_complete; - __be16 resv7; -}; - -enum cmis_cdb_fw_write_mechanism { - CMIS_CDB_FW_WRITE_MECHANISM_NONE = 0, - CMIS_CDB_FW_WRITE_MECHANISM_LPL = 1, - CMIS_CDB_FW_WRITE_MECHANISM_EPL = 16, - CMIS_CDB_FW_WRITE_MECHANISM_BOTH = 17, -}; - -struct cmis_cdb_start_fw_download_pl_h { - __be32 image_size; - __be32 resv1; -}; - -struct cmis_cdb_start_fw_download_pl { - union { - struct { - __be32 image_size; - __be32 resv1; - }; - struct cmis_cdb_start_fw_download_pl_h head; - }; - u8 vendor_data[112]; -}; - -struct cmis_cdb_write_fw_block_lpl_pl { - __be32 block_address; - u8 fw_block[116]; -}; - -struct cmis_cdb_write_fw_block_epl_pl { - u8 fw_block[2048]; -}; - -enum { - CMIS_MODULE_LOW_PWR = 1, - CMIS_MODULE_READY = 3, -}; - -struct cmis_cdb_run_fw_image_pl { - u8 resv1; - u8 image_to_run; - u16 delay_to_reset; -}; - -struct plca_reply_data { - struct ethnl_reply_data base; - struct phy_plca_cfg plca_cfg; - struct phy_plca_status plca_st; -}; - -typedef u32 u_int32_t; - -struct nf_bridge_info { - enum { - BRNF_PROTO_UNCHANGED = 0, - BRNF_PROTO_8021Q = 1, - BRNF_PROTO_PPPOE = 2, - } orig_proto: 8; - u8 pkt_otherhost: 1; - u8 in_prerouting: 1; - u8 bridged_dnat: 1; - u8 sabotage_in_done: 1; - __u16 frag_max_size; - int physinif; - struct net_device *physoutdev; - union { - __be32 ipv4_daddr; - struct in6_addr ipv6_daddr; - char neigh_header[8]; - }; -}; - -struct nf_hook_state; - -typedef unsigned int nf_hookfn(void *, struct sk_buff *, const struct nf_hook_state *); - -struct nf_hook_entry { - nf_hookfn *hook; - void *priv; -}; - -struct nf_hook_entries { - u16 num_hook_entries; - struct nf_hook_entry hooks[0]; -}; - -struct nf_hook_state { - u8 hook; - u8 pf; - struct net_device *in; - struct net_device *out; - struct sock *sk; - struct net *net; - int (*okfn)(struct net *, struct sock *, struct sk_buff *); -}; - -struct ip_rt_info { - __be32 daddr; - __be32 saddr; - u_int8_t tos; - u_int32_t mark; -}; - -enum { - TCPF_ESTABLISHED = 2, - TCPF_SYN_SENT = 4, - TCPF_SYN_RECV = 8, - TCPF_FIN_WAIT1 = 16, - TCPF_FIN_WAIT2 = 32, - TCPF_TIME_WAIT = 64, - TCPF_CLOSE = 128, - TCPF_CLOSE_WAIT = 256, - TCPF_LAST_ACK = 512, - TCPF_LISTEN = 1024, - TCPF_CLOSING = 2048, - TCPF_NEW_SYN_RECV = 4096, - TCPF_BOUND_INACTIVE = 8192, -}; - -struct ip6_rt_info { - struct in6_addr daddr; - struct in6_addr saddr; - u_int32_t mark; -}; - -struct nf_queue_entry { - struct list_head list; - struct sk_buff *skb; - unsigned int id; - unsigned int hook_index; - struct net_device *physin; - struct net_device *physout; - struct nf_hook_state state; - u16 size; -}; - -enum l2tp_debug_flags { - L2TP_MSG_DEBUG = 1, - L2TP_MSG_CONTROL = 2, - L2TP_MSG_SEQ = 4, - L2TP_MSG_DATA = 8, -}; - -struct nf_queue_handler { - int (*outfn)(struct nf_queue_entry *, unsigned int); - void (*nf_hook_drop)(struct net *); -}; - -struct ipv4_addr_key { - __be32 addr; - int vif; -}; - -struct inetpeer_addr { - union { - struct ipv4_addr_key a4; - struct in6_addr a6; - u32 key[4]; - }; - __u16 family; -}; - -struct inet_peer { - struct rb_node rb_node; - struct inetpeer_addr daddr; - u32 metrics[17]; - u32 rate_tokens; - u32 n_redirects; - long unsigned int rate_last; - union { - struct { - atomic_t rid; - }; - struct callback_head rcu; - }; - __u32 dtime; - refcount_t refcnt; -}; - -struct rhltable { - struct rhashtable ht; -}; - -struct mr_table_ops { - const struct rhashtable_params *rht_params; - void *cmparg_any; -}; - -struct vif_device { - struct net_device *dev; - netdevice_tracker dev_tracker; - long unsigned int bytes_in; - long unsigned int bytes_out; - long unsigned int pkt_in; - long unsigned int pkt_out; - long unsigned int rate_limit; - unsigned char threshold; - short unsigned int flags; - int link; - struct netdev_phys_item_id dev_parent_id; - __be32 local; - __be32 remote; -}; - -struct mr_table { - struct list_head list; - possible_net_t net; - struct mr_table_ops ops; - u32 id; - struct sock *mroute_sk; - struct timer_list ipmr_expire_timer; - struct list_head mfc_unres_queue; - struct vif_device vif_table[32]; - struct rhltable mfc_hash; - struct list_head mfc_cache_list; - int maxvif; - atomic_t cache_resolve_queue_len; - bool mroute_do_assert; - bool mroute_do_pim; - bool mroute_do_wrvifwhole; - int mroute_reg_vif_num; -}; - -enum skb_tstamp_type { - SKB_CLOCK_REALTIME = 0, - SKB_CLOCK_MONOTONIC = 1, - SKB_CLOCK_TAI = 2, - __SKB_CLOCK_MAX = 2, -}; - -enum { - IPV4_DEVCONF_FORWARDING = 1, - IPV4_DEVCONF_MC_FORWARDING = 2, - IPV4_DEVCONF_PROXY_ARP = 3, - IPV4_DEVCONF_ACCEPT_REDIRECTS = 4, - IPV4_DEVCONF_SECURE_REDIRECTS = 5, - IPV4_DEVCONF_SEND_REDIRECTS = 6, - IPV4_DEVCONF_SHARED_MEDIA = 7, - IPV4_DEVCONF_RP_FILTER = 8, - IPV4_DEVCONF_ACCEPT_SOURCE_ROUTE = 9, - IPV4_DEVCONF_BOOTP_RELAY = 10, - IPV4_DEVCONF_LOG_MARTIANS = 11, - IPV4_DEVCONF_TAG = 12, - IPV4_DEVCONF_ARPFILTER = 13, - IPV4_DEVCONF_MEDIUM_ID = 14, - IPV4_DEVCONF_NOXFRM = 15, - IPV4_DEVCONF_NOPOLICY = 16, - IPV4_DEVCONF_FORCE_IGMP_VERSION = 17, - IPV4_DEVCONF_ARP_ANNOUNCE = 18, - IPV4_DEVCONF_ARP_IGNORE = 19, - IPV4_DEVCONF_PROMOTE_SECONDARIES = 20, - IPV4_DEVCONF_ARP_ACCEPT = 21, - IPV4_DEVCONF_ARP_NOTIFY = 22, - IPV4_DEVCONF_ACCEPT_LOCAL = 23, - IPV4_DEVCONF_SRC_VMARK = 24, - IPV4_DEVCONF_PROXY_ARP_PVLAN = 25, - IPV4_DEVCONF_ROUTE_LOCALNET = 26, - IPV4_DEVCONF_IGMPV2_UNSOLICITED_REPORT_INTERVAL = 27, - IPV4_DEVCONF_IGMPV3_UNSOLICITED_REPORT_INTERVAL = 28, - IPV4_DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN = 29, - IPV4_DEVCONF_DROP_UNICAST_IN_L2_MULTICAST = 30, - IPV4_DEVCONF_DROP_GRATUITOUS_ARP = 31, - IPV4_DEVCONF_BC_FORWARDING = 32, - IPV4_DEVCONF_ARP_EVICT_NOCARRIER = 33, - __IPV4_DEVCONF_MAX = 34, -}; - -enum macsec_validation_type { - MACSEC_VALIDATE_DISABLED = 0, - MACSEC_VALIDATE_CHECK = 1, - MACSEC_VALIDATE_STRICT = 2, - __MACSEC_VALIDATE_END = 3, - MACSEC_VALIDATE_MAX = 2, -}; - -enum macsec_offload { - MACSEC_OFFLOAD_OFF = 0, - MACSEC_OFFLOAD_PHY = 1, - MACSEC_OFFLOAD_MAC = 2, - __MACSEC_OFFLOAD_END = 3, - MACSEC_OFFLOAD_MAX = 2, -}; - -struct ip_tunnel_parm_kern { - char name[16]; - long unsigned int i_flags[1]; - long unsigned int o_flags[1]; - __be32 i_key; - __be32 o_key; - int link; - struct iphdr iph; -}; - -struct packet_type { - __be16 type; - bool ignore_outgoing; - struct net_device *dev; - netdevice_tracker dev_tracker; - int (*func)(struct sk_buff *, struct net_device *, struct packet_type *, struct net_device *); - void (*list_func)(struct list_head *, struct packet_type *, struct net_device *); - bool (*id_match)(struct packet_type *, struct sock *); - struct net *af_packet_net; - void *af_packet_priv; - struct list_head list; -}; - -enum { - RTN_UNSPEC = 0, - RTN_UNICAST = 1, - RTN_LOCAL = 2, - RTN_BROADCAST = 3, - RTN_ANYCAST = 4, - RTN_MULTICAST = 5, - RTN_BLACKHOLE = 6, - RTN_UNREACHABLE = 7, - RTN_PROHIBIT = 8, - RTN_THROW = 9, - RTN_NAT = 10, - RTN_XRESOLVE = 11, - __RTN_MAX = 12, -}; - -typedef u8 dscp_t; - -struct raw_hashinfo { - spinlock_t lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct hlist_head ht[256]; -}; - -struct fib_info; - -struct fib_nh { - struct fib_nh_common nh_common; - struct hlist_node nh_hash; - struct fib_info *nh_parent; - __u32 nh_tclassid; - __be32 nh_saddr; - int nh_saddr_genid; -}; - -struct fib_info { - struct hlist_node fib_hash; - struct hlist_node fib_lhash; - struct list_head nh_list; - struct net *fib_net; - refcount_t fib_treeref; - refcount_t fib_clntref; - unsigned int fib_flags; - unsigned char fib_dead; - unsigned char fib_protocol; - unsigned char fib_scope; - unsigned char fib_type; - __be32 fib_prefsrc; - u32 fib_tb_id; - u32 fib_priority; - struct dst_metrics *fib_metrics; - int fib_nhs; - bool fib_nh_is_v6; - bool nh_updated; - bool pfsrc_removed; - struct nexthop *nh; - struct callback_head rcu; - struct fib_nh fib_nh[0]; -}; - -struct nh_info; - -struct nh_group; - -struct nexthop { - struct rb_node rb_node; - struct list_head fi_list; - struct list_head f6i_list; - struct list_head fdb_list; - struct list_head grp_list; - struct net *net; - u32 id; - u8 protocol; - u8 nh_flags; - bool is_group; - bool dead; - spinlock_t lock; - refcount_t refcnt; - struct callback_head rcu; - union { - struct nh_info *nh_info; - struct nh_group *nh_grp; - }; -}; - -struct ip_rt_acct { - __u32 o_bytes; - __u32 o_packets; - __u32 i_bytes; - __u32 i_packets; -}; - -struct inet_skb_parm { - int iif; - struct ip_options opt; - u16 flags; - u16 frag_max_size; -}; - -enum ip_defrag_users { - IP_DEFRAG_LOCAL_DELIVER = 0, - IP_DEFRAG_CALL_RA_CHAIN = 1, - IP_DEFRAG_CONNTRACK_IN = 2, - __IP_DEFRAG_CONNTRACK_IN_END = 65537, - IP_DEFRAG_CONNTRACK_OUT = 65538, - __IP_DEFRAG_CONNTRACK_OUT_END = 131073, - IP_DEFRAG_CONNTRACK_BRIDGE_IN = 131074, - __IP_DEFRAG_CONNTRACK_BRIDGE_IN = 196609, - IP_DEFRAG_VS_IN = 196610, - IP_DEFRAG_VS_OUT = 196611, - IP_DEFRAG_VS_FWD = 196612, - IP_DEFRAG_AF_PACKET = 196613, - IP_DEFRAG_MACVLAN = 196614, -}; - -enum { - INET_ECN_NOT_ECT = 0, - INET_ECN_ECT_1 = 1, - INET_ECN_ECT_0 = 2, - INET_ECN_CE = 3, - INET_ECN_MASK = 3, -}; - -enum { - XFRM_DEV_OFFLOAD_UNSPECIFIED = 0, - XFRM_DEV_OFFLOAD_CRYPTO = 1, - XFRM_DEV_OFFLOAD_PACKET = 2, -}; - -enum metadata_type { - METADATA_IP_TUNNEL = 0, - METADATA_HW_PORT_MUX = 1, - METADATA_MACSEC = 2, - METADATA_XFRM = 3, -}; - -struct ip_tunnel_key { - __be64 tun_id; - union { - struct { - __be32 src; - __be32 dst; - } ipv4; - struct { - struct in6_addr src; - struct in6_addr dst; - } ipv6; - } u; - long unsigned int tun_flags[1]; - __be32 label; - u32 nhid; - u8 tos; - u8 ttl; - __be16 tp_src; - __be16 tp_dst; - __u8 flow_flags; -}; - -struct ip_tunnel_encap { - u16 type; - u16 flags; - __be16 sport; - __be16 dport; -}; - -struct dst_cache_pcpu; - -struct dst_cache { - struct dst_cache_pcpu *cache; - long unsigned int reset_ts; -}; - -struct ip_tunnel_info { - struct ip_tunnel_key key; - struct ip_tunnel_encap encap; - struct dst_cache dst_cache; - u8 options_len; - u8 mode; - long: 0; - u8 options[0]; -}; - -struct hw_port_info { - struct net_device *lower_dev; - u32 port_id; -}; - -typedef u64 sci_t; - -struct macsec_info { - sci_t sci; -}; - -struct xfrm_md_info { - u32 if_id; - int link; - struct dst_entry *dst_orig; -}; - -struct metadata_dst { - struct dst_entry dst; - enum metadata_type type; - union { - struct ip_tunnel_info tun_info; - struct hw_port_info port_info; - struct macsec_info macsec_info; - struct xfrm_md_info xfrm_info; - } u; -}; - -enum { - IP_TUNNEL_CSUM_BIT = 0, - IP_TUNNEL_ROUTING_BIT = 1, - IP_TUNNEL_KEY_BIT = 2, - IP_TUNNEL_SEQ_BIT = 3, - IP_TUNNEL_STRICT_BIT = 4, - IP_TUNNEL_REC_BIT = 5, - IP_TUNNEL_VERSION_BIT = 6, - IP_TUNNEL_NO_KEY_BIT = 7, - IP_TUNNEL_DONT_FRAGMENT_BIT = 8, - IP_TUNNEL_OAM_BIT = 9, - IP_TUNNEL_CRIT_OPT_BIT = 10, - IP_TUNNEL_GENEVE_OPT_BIT = 11, - IP_TUNNEL_VXLAN_OPT_BIT = 12, - IP_TUNNEL_NOCACHE_BIT = 13, - IP_TUNNEL_ERSPAN_OPT_BIT = 14, - IP_TUNNEL_GTP_OPT_BIT = 15, - IP_TUNNEL_VTI_BIT = 16, - IP_TUNNEL_SIT_ISATAP_BIT = 16, - IP_TUNNEL_PFCP_OPT_BIT = 17, - __IP_TUNNEL_FLAG_NUM = 18, -}; - -struct nh_info { - struct hlist_node dev_hash; - struct nexthop *nh_parent; - u8 family; - bool reject_nh; - bool fdb_nh; - union { - struct fib_nh_common fib_nhc; - struct fib_nh fib_nh; - struct fib6_nh fib6_nh; - }; -}; - -struct nh_grp_entry; - -struct nh_res_bucket { - struct nh_grp_entry *nh_entry; - atomic_long_t used_time; - long unsigned int migrated_time; - bool occupied; - u8 nh_flags; -}; - -struct nh_grp_entry_stats; - -struct nh_grp_entry { - struct nexthop *nh; - struct nh_grp_entry_stats *stats; - u16 weight; - union { - struct { - atomic_t upper_bound; - } hthr; - struct { - struct list_head uw_nh_entry; - u16 count_buckets; - u16 wants_buckets; - } res; - }; - struct list_head nh_list; - struct nexthop *nh_parent; - u64 packets_hw; -}; - -struct nh_res_table { - struct net *net; - u32 nhg_id; - struct delayed_work upkeep_dw; - struct list_head uw_nh_entries; - long unsigned int unbalanced_since; - u32 idle_timer; - u32 unbalanced_timer; - u16 num_nh_buckets; - struct nh_res_bucket nh_buckets[0]; -}; - -struct nh_grp_entry_stats { - u64_stats_t packets; - struct u64_stats_sync syncp; -}; - -struct nh_group { - struct nh_group *spare; - u16 num_nh; - bool is_multipath; - bool hash_threshold; - bool resilient; - bool fdb_nh; - bool has_v4; - bool hw_stats; - struct nh_res_table *res_table; - struct nh_grp_entry nh_entries[0]; -}; - -typedef u32 ssci_t; - -union salt { - struct { - ssci_t ssci; - __be64 pn; - } __attribute__((packed)); - u8 bytes[12]; -}; - -typedef union salt salt_t; - -union pn { - struct { - u32 lower; - u32 upper; - }; - u64 full64; -}; - -typedef union pn pn_t; - -struct macsec_key { - u8 id[16]; - struct crypto_aead *tfm; - salt_t salt; -}; - -struct macsec_rx_sc_stats { - __u64 InOctetsValidated; - __u64 InOctetsDecrypted; - __u64 InPktsUnchecked; - __u64 InPktsDelayed; - __u64 InPktsOK; - __u64 InPktsInvalid; - __u64 InPktsLate; - __u64 InPktsNotValid; - __u64 InPktsNotUsingSA; - __u64 InPktsUnusedSA; -}; - -struct macsec_rx_sa_stats { - __u32 InPktsOK; - __u32 InPktsInvalid; - __u32 InPktsNotValid; - __u32 InPktsNotUsingSA; - __u32 InPktsUnusedSA; -}; - -struct macsec_tx_sa_stats { - __u32 OutPktsProtected; - __u32 OutPktsEncrypted; -}; - -struct macsec_tx_sc_stats { - __u64 OutPktsProtected; - __u64 OutPktsEncrypted; - __u64 OutOctetsProtected; - __u64 OutOctetsEncrypted; -}; - -struct macsec_dev_stats { - __u64 OutPktsUntagged; - __u64 InPktsUntagged; - __u64 OutPktsTooLong; - __u64 InPktsNoTag; - __u64 InPktsBadTag; - __u64 InPktsUnknownSCI; - __u64 InPktsNoSCI; - __u64 InPktsOverrun; -}; - -struct macsec_rx_sc; - -struct macsec_rx_sa { - struct macsec_key key; - ssci_t ssci; - spinlock_t lock; - union { - pn_t next_pn_halves; - u64 next_pn; - }; - refcount_t refcnt; - bool active; - struct macsec_rx_sa_stats *stats; - struct macsec_rx_sc *sc; - struct callback_head rcu; -}; - -struct pcpu_rx_sc_stats; - -struct macsec_rx_sc { - struct macsec_rx_sc *next; - sci_t sci; - bool active; - struct macsec_rx_sa *sa[4]; - struct pcpu_rx_sc_stats *stats; - refcount_t refcnt; - struct callback_head callback_head; -}; - -struct pcpu_rx_sc_stats { - struct macsec_rx_sc_stats stats; - struct u64_stats_sync syncp; -}; - -struct pcpu_tx_sc_stats { - struct macsec_tx_sc_stats stats; - struct u64_stats_sync syncp; -}; - -struct macsec_tx_sa { - struct macsec_key key; - ssci_t ssci; - spinlock_t lock; - union { - pn_t next_pn_halves; - u64 next_pn; - }; - refcount_t refcnt; - bool active; - struct macsec_tx_sa_stats *stats; - struct callback_head rcu; -}; - -struct macsec_tx_sc { - bool active; - u8 encoding_sa; - bool encrypt; - bool send_sci; - bool end_station; - bool scb; - struct macsec_tx_sa *sa[4]; - struct pcpu_tx_sc_stats *stats; - struct metadata_dst *md_dst; -}; - -struct macsec_secy { - struct net_device *netdev; - unsigned int n_rx_sc; - sci_t sci; - u16 key_len; - u16 icv_len; - enum macsec_validation_type validate_frames; - bool xpn; - bool operational; - bool protect_frames; - bool replay_protect; - u32 replay_window; - struct macsec_tx_sc tx_sc; - struct macsec_rx_sc *rx_sc; -}; - -struct macsec_context { - union { - struct net_device *netdev; - struct phy_device *phydev; - }; - enum macsec_offload offload; - struct macsec_secy *secy; - struct macsec_rx_sc *rx_sc; - struct { - bool update_pn; - unsigned char assoc_num; - u8 key[128]; - union { - struct macsec_rx_sa *rx_sa; - struct macsec_tx_sa *tx_sa; - }; - } sa; - union { - struct macsec_tx_sc_stats *tx_sc_stats; - struct macsec_tx_sa_stats *tx_sa_stats; - struct macsec_rx_sc_stats *rx_sc_stats; - struct macsec_rx_sa_stats *rx_sa_stats; - struct macsec_dev_stats *dev_stats; - } stats; -}; - -enum sk_action { - SK_DROP = 0, - SK_PASS = 1, -}; - -struct inet_bind_bucket { - possible_net_t ib_net; - int l3mdev; - short unsigned int port; - signed char fastreuse; - signed char fastreuseport; - kuid_t fastuid; - struct in6_addr fast_v6_rcv_saddr; - __be32 fast_rcv_saddr; - short unsigned int fast_sk_family; - bool fast_ipv6_only; - struct hlist_node node; - struct hlist_head bhash2; - struct callback_head rcu; -}; - -struct inet_bind2_bucket { - possible_net_t ib_net; - int l3mdev; - short unsigned int port; - short unsigned int addr_type; - struct in6_addr v6_rcv_saddr; - struct hlist_node node; - struct hlist_node bhash_node; - struct hlist_head owners; - signed char fastreuse; - signed char fastreuseport; -}; - -struct inet_timewait_sock { - struct sock_common __tw_common; - __u32 tw_mark; - unsigned char tw_substate; - unsigned char tw_rcv_wscale; - __be16 tw_sport; - unsigned int tw_transparent: 1; - unsigned int tw_flowlabel: 20; - unsigned int tw_usec_ts: 1; - unsigned int tw_connect_bind: 1; - unsigned int tw_pad: 1; - unsigned int tw_tos: 8; - u32 tw_txhash; - u32 tw_priority; - u32 tw_entry_stamp; - struct timer_list tw_timer; - struct inet_bind_bucket *tw_tb; - struct inet_bind2_bucket *tw_tb2; -}; - -typedef u32 inet_ehashfn_t(const struct net *, const __be32, const __u16, const __be32, const __be16); - -struct rps_sock_flow_table { - struct callback_head rcu; - u32 mask; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - u32 ents[0]; -}; - -struct bpf_sk_lookup_kern { - u16 family; - u16 protocol; - __be16 sport; - u16 dport; - struct { - __be32 saddr; - __be32 daddr; - } v4; - struct { - const struct in6_addr *saddr; - const struct in6_addr *daddr; - } v6; - struct sock *selected_sk; - u32 ingress_ifindex; - bool no_reuseport; -}; - -enum { - SOCK_WAKE_IO = 0, - SOCK_WAKE_WAITD = 1, - SOCK_WAKE_SPACE = 2, - SOCK_WAKE_URG = 3, -}; - -enum { - BPF_SOCK_OPS_RTO_CB_FLAG = 1, - BPF_SOCK_OPS_RETRANS_CB_FLAG = 2, - BPF_SOCK_OPS_STATE_CB_FLAG = 4, - BPF_SOCK_OPS_RTT_CB_FLAG = 8, - BPF_SOCK_OPS_PARSE_ALL_HDR_OPT_CB_FLAG = 16, - BPF_SOCK_OPS_PARSE_UNKNOWN_HDR_OPT_CB_FLAG = 32, - BPF_SOCK_OPS_WRITE_HDR_OPT_CB_FLAG = 64, - BPF_SOCK_OPS_ALL_CB_FLAGS = 127, -}; - -enum { - BPF_SOCK_OPS_VOID = 0, - BPF_SOCK_OPS_TIMEOUT_INIT = 1, - BPF_SOCK_OPS_RWND_INIT = 2, - BPF_SOCK_OPS_TCP_CONNECT_CB = 3, - BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 4, - BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 5, - BPF_SOCK_OPS_NEEDS_ECN = 6, - BPF_SOCK_OPS_BASE_RTT = 7, - BPF_SOCK_OPS_RTO_CB = 8, - BPF_SOCK_OPS_RETRANS_CB = 9, - BPF_SOCK_OPS_STATE_CB = 10, - BPF_SOCK_OPS_TCP_LISTEN_CB = 11, - BPF_SOCK_OPS_RTT_CB = 12, - BPF_SOCK_OPS_PARSE_HDR_OPT_CB = 13, - BPF_SOCK_OPS_HDR_OPT_LEN_CB = 14, - BPF_SOCK_OPS_WRITE_HDR_OPT_CB = 15, - BPF_SOCK_OPS_TSTAMP_SCHED_CB = 16, - BPF_SOCK_OPS_TSTAMP_SND_SW_CB = 17, - BPF_SOCK_OPS_TSTAMP_SND_HW_CB = 18, - BPF_SOCK_OPS_TSTAMP_ACK_CB = 19, - BPF_SOCK_OPS_TSTAMP_SENDMSG_CB = 20, -}; - -enum { - INET_FLAGS_PKTINFO = 0, - INET_FLAGS_TTL = 1, - INET_FLAGS_TOS = 2, - INET_FLAGS_RECVOPTS = 3, - INET_FLAGS_RETOPTS = 4, - INET_FLAGS_PASSSEC = 5, - INET_FLAGS_ORIGDSTADDR = 6, - INET_FLAGS_CHECKSUM = 7, - INET_FLAGS_RECVFRAGSIZE = 8, - INET_FLAGS_RECVERR = 9, - INET_FLAGS_RECVERR_RFC4884 = 10, - INET_FLAGS_FREEBIND = 11, - INET_FLAGS_HDRINCL = 12, - INET_FLAGS_MC_LOOP = 13, - INET_FLAGS_MC_ALL = 14, - INET_FLAGS_TRANSPARENT = 15, - INET_FLAGS_IS_ICSK = 16, - INET_FLAGS_NODEFRAG = 17, - INET_FLAGS_BIND_ADDRESS_NO_PORT = 18, - INET_FLAGS_DEFER_CONNECT = 19, - INET_FLAGS_MC6_LOOP = 20, - INET_FLAGS_RECVERR6_RFC4884 = 21, - INET_FLAGS_MC6_ALL = 22, - INET_FLAGS_AUTOFLOWLABEL_SET = 23, - INET_FLAGS_AUTOFLOWLABEL = 24, - INET_FLAGS_DONTFRAG = 25, - INET_FLAGS_RECVERR6 = 26, - INET_FLAGS_REPFLOW = 27, - INET_FLAGS_RTALERT_ISOLATE = 28, - INET_FLAGS_SNDFLOW = 29, - INET_FLAGS_RTALERT = 30, -}; - -enum inet_csk_ack_state_t { - ICSK_ACK_SCHED = 1, - ICSK_ACK_TIMER = 2, - ICSK_ACK_PUSHED = 4, - ICSK_ACK_PUSHED2 = 8, - ICSK_ACK_NOW = 16, - ICSK_ACK_NOMEM = 32, -}; - -union tcp_word_hdr { - struct tcphdr hdr; - __be32 words[5]; -}; - -enum { - TCP_FLAG_AE = 1, - TCP_FLAG_CWR = 32768, - TCP_FLAG_ECE = 16384, - TCP_FLAG_URG = 8192, - TCP_FLAG_ACK = 4096, - TCP_FLAG_PSH = 2048, - TCP_FLAG_RST = 1024, - TCP_FLAG_SYN = 512, - TCP_FLAG_FIN = 256, - TCP_RESERVED_BITS = 14, - TCP_DATA_OFFSET = 240, -}; - -enum tcp_fastopen_client_fail { - TFO_STATUS_UNSPEC = 0, - TFO_COOKIE_UNAVAILABLE = 1, - TFO_DATA_NOT_ACKED = 2, - TFO_SYN_RETRANSMITTED = 3, -}; - -enum tcp_ca_state { - TCP_CA_Open = 0, - TCP_CA_Disorder = 1, - TCP_CA_CWR = 2, - TCP_CA_Recovery = 3, - TCP_CA_Loss = 4, -}; - -struct tcp_fastopen_cookie { - __le64 val[2]; - s8 len; - bool exp; -}; - -struct tcp_sack_block_wire { - __be32 start_seq; - __be32 end_seq; -}; - -struct tcp_md5sig_info { - struct hlist_head head; - struct callback_head rcu; -}; - -struct tcp_ao_counters { - atomic64_t pkt_good; - atomic64_t pkt_bad; - atomic64_t key_not_found; - atomic64_t ao_required; - atomic64_t dropped_icmp; -}; - -struct tcp_ao_info { - struct hlist_head head; - struct tcp_ao_key *current_key; - struct tcp_ao_key *rnext_key; - struct tcp_ao_counters counters; - u32 ao_required: 1; - u32 accept_icmps: 1; - u32 __unused: 30; - __be32 lisn; - __be32 risn; - u32 snd_sne; - u32 rcv_sne; - refcount_t refcnt; - struct callback_head rcu; -}; - -struct tcp_fastopen_request { - struct tcp_fastopen_cookie cookie; - struct msghdr *data; - size_t size; - int copied; - struct ubuf_info *uarg; -}; - -union tcp_ao_addr { - struct in_addr a4; - struct in6_addr a6; -}; - -struct tcp_md5sig_key { - struct hlist_node node; - u8 keylen; - u8 family; - u8 prefixlen; - u8 flags; - union tcp_ao_addr addr; - int l3index; - u8 key[80]; - struct callback_head rcu; -}; - -struct static_key_false_deferred { - struct static_key_false key; - long unsigned int timeout; - struct delayed_work work; -}; - -struct bpf_sock_ops_kern { - struct sock *sk; - union { - u32 args[4]; - u32 reply; - u32 replylong[4]; - }; - struct sk_buff *syn_skb; - struct sk_buff *skb; - void *skb_data_end; - u8 op; - u8 is_fullsock; - u8 is_locked_tcp_sock; - u8 remaining_opt_len; - u64 temp; -}; - -struct tcp_ao_hdr { - u8 kind; - u8 length; - u8 keyid; - u8 rnext_keyid; -}; - -struct tcp_ao_key { - struct hlist_node node; - union tcp_ao_addr addr; - u8 key[80]; - unsigned int tcp_sigpool_id; - unsigned int digest_size; - int l3index; - u8 prefixlen; - u8 family; - u8 keylen; - u8 keyflags; - u8 sndid; - u8 rcvid; - u8 maclen; - struct callback_head rcu; - atomic64_t pkt_good; - atomic64_t pkt_bad; - u8 traffic_keys[0]; -}; - -struct mptcp_ext { - union { - u64 data_ack; - u32 data_ack32; - }; - u64 data_seq; - u32 subflow_seq; - u16 data_len; - __sum16 csum; - u8 use_map: 1; - u8 dsn64: 1; - u8 data_fin: 1; - u8 use_ack: 1; - u8 ack64: 1; - u8 mpc_map: 1; - u8 frozen: 1; - u8 reset_transient: 1; - u8 reset_reason: 4; - u8 csum_reqd: 1; - u8 infinite_map: 1; -}; - -enum tcp_queue { - TCP_FRAG_IN_WRITE_QUEUE = 0, - TCP_FRAG_IN_RTX_QUEUE = 1, -}; - -enum tcp_skb_cb_sacked_flags { - TCPCB_SACKED_ACKED = 1, - TCPCB_SACKED_RETRANS = 2, - TCPCB_LOST = 4, - TCPCB_TAGBITS = 7, - TCPCB_REPAIRED = 16, - TCPCB_EVER_RETRANS = 128, - TCPCB_RETRANS = 146, -}; - -struct tcp_skb_cb { - __u32 seq; - __u32 end_seq; - union { - struct { - u16 tcp_gso_segs; - u16 tcp_gso_size; - }; - }; - __u16 tcp_flags; - __u8 sacked; - __u8 ip_dsfield; - __u8 txstamp_ack: 2; - __u8 eor: 1; - __u8 has_rxtstamp: 1; - __u8 unused: 4; - __u32 ack_seq; - union { - struct { - __u32 is_app_limited: 1; - __u32 delivered_ce: 20; - __u32 unused: 11; - __u32 delivered; - u64 first_tx_mstamp; - u64 delivered_mstamp; - } tx; - union { - struct inet_skb_parm h4; - struct inet6_skb_parm h6; - } header; - }; -}; - -enum tcp_ca_ack_event_flags { - CA_ACK_SLOWPATH = 1, - CA_ACK_WIN_UPDATE = 2, - CA_ACK_ECE = 4, -}; - -enum tcp_chrono { - TCP_CHRONO_UNSPEC = 0, - TCP_CHRONO_BUSY = 1, - TCP_CHRONO_RWND_LIMITED = 2, - TCP_CHRONO_SNDBUF_LIMITED = 3, - __TCP_CHRONO_MAX = 4, -}; - -enum { - SCM_TSTAMP_SND = 0, - SCM_TSTAMP_SCHED = 1, - SCM_TSTAMP_ACK = 2, - SCM_TSTAMP_COMPLETION = 3, -}; - -struct tcp_sacktag_state { - u64 first_sackt; - u64 last_sackt; - u32 reord; - u32 sack_delivered; - int flag; - unsigned int mss_now; - struct rate_sample *rate; -}; - -enum rt_scope_t { - RT_SCOPE_UNIVERSE = 0, - RT_SCOPE_SITE = 200, - RT_SCOPE_LINK = 253, - RT_SCOPE_HOST = 254, - RT_SCOPE_NOWHERE = 255, -}; - -enum { - UDP_FLAGS_CORK = 0, - UDP_FLAGS_NO_CHECK6_TX = 1, - UDP_FLAGS_NO_CHECK6_RX = 2, - UDP_FLAGS_GRO_ENABLED = 3, - UDP_FLAGS_ACCEPT_FRAGLIST = 4, - UDP_FLAGS_ACCEPT_L4 = 5, - UDP_FLAGS_ENCAP_ENABLED = 6, - UDP_FLAGS_UDPLITE_SEND_CC = 7, - UDP_FLAGS_UDPLITE_RECV_CC = 8, -}; - -struct udp_sock { - struct inet_sock inet; - long unsigned int udp_flags; - int pending; - __u8 encap_type; - __u16 udp_lrpa_hash; - struct hlist_nulls_node udp_lrpa_node; - __u16 len; - __u16 gso_size; - __u16 pcslen; - __u16 pcrlen; - int (*encap_rcv)(struct sock *, struct sk_buff *); - void (*encap_err_rcv)(struct sock *, struct sk_buff *, int, __be16, u32, u8 *); - int (*encap_err_lookup)(struct sock *, struct sk_buff *); - void (*encap_destroy)(struct sock *); - struct sk_buff * (*gro_receive)(struct sock *, struct list_head *, struct sk_buff *); - int (*gro_complete)(struct sock *, struct sk_buff *, int); - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct sk_buff_head reader_queue; - int forward_deficit; - int forward_threshold; - bool peeking_with_offset; - struct hlist_node tunnel_list; - long: 64; -}; - -typedef struct sock * (*udp_lookup_t)(const struct sk_buff *, __be16, __be16); - -struct napi_gro_cb { - union { - struct { - void *frag0; - unsigned int frag0_len; - }; - struct { - struct sk_buff *last; - long unsigned int age; - }; - }; - int data_offset; - u16 flush; - u16 count; - u16 proto; - u16 pad; - union { - struct { - u16 gro_remcsum_start; - u8 same_flow: 1; - u8 encap_mark: 1; - u8 csum_valid: 1; - u8 csum_cnt: 3; - u8 free: 2; - u8 is_ipv6: 1; - u8 is_fou: 1; - u8 ip_fixedid: 1; - u8 recursion_counter: 4; - u8 is_flist: 1; - }; - struct { - u16 gro_remcsum_start; - u8 same_flow: 1; - u8 encap_mark: 1; - u8 csum_valid: 1; - u8 csum_cnt: 3; - u8 free: 2; - u8 is_ipv6: 1; - u8 is_fou: 1; - u8 ip_fixedid: 1; - u8 recursion_counter: 4; - u8 is_flist: 1; - } zeroed; - }; - __wsum csum; - union { - struct { - u16 network_offset; - u16 inner_network_offset; - }; - u16 network_offsets[2]; - }; -}; - -typedef struct sk_buff * (*gro_receive_t)(struct list_head *, struct sk_buff *); - -typedef struct sk_buff * (*gro_receive_sk_t)(struct sock *, struct list_head *, struct sk_buff *); - -struct udp_tunnel_info { - short unsigned int type; - sa_family_t sa_family; - __be16 port; - u8 hw_priv; -}; - -struct udp_tunnel_nic_shared { - struct udp_tunnel_nic *udp_tunnel_nic_info; - struct list_head devices; -}; - -typedef struct sk_buff * (*udp_tunnel_gro_rcv_t)(struct sock *, struct list_head *, struct sk_buff *); - -struct udp_tunnel_type_entry { - udp_tunnel_gro_rcv_t gro_receive; - refcount_t count; -}; - -struct ip_mreqn { - struct in_addr imr_multiaddr; - struct in_addr imr_address; - int imr_ifindex; -}; - -struct ifaddrmsg { - __u8 ifa_family; - __u8 ifa_prefixlen; - __u8 ifa_flags; - __u8 ifa_scope; - __u32 ifa_index; -}; - -enum { - IFA_UNSPEC = 0, - IFA_ADDRESS = 1, - IFA_LOCAL = 2, - IFA_LABEL = 3, - IFA_BROADCAST = 4, - IFA_ANYCAST = 5, - IFA_CACHEINFO = 6, - IFA_MULTICAST = 7, - IFA_FLAGS = 8, - IFA_RT_PRIORITY = 9, - IFA_TARGET_NETNSID = 10, - IFA_PROTO = 11, - __IFA_MAX = 12, -}; - -struct ifa_cacheinfo { - __u32 ifa_prefered; - __u32 ifa_valid; - __u32 cstamp; - __u32 tstamp; -}; - -enum { - IFLA_INET_UNSPEC = 0, - IFLA_INET_CONF = 1, - __IFLA_INET_MAX = 2, -}; - -enum rt_class_t { - RT_TABLE_UNSPEC = 0, - RT_TABLE_COMPAT = 252, - RT_TABLE_DEFAULT = 253, - RT_TABLE_MAIN = 254, - RT_TABLE_LOCAL = 255, - RT_TABLE_MAX = 4294967295, -}; - -struct ip_sf_list; - -struct ip_mc_list { - struct in_device *interface; - __be32 multiaddr; - unsigned int sfmode; - struct ip_sf_list *sources; - struct ip_sf_list *tomb; - long unsigned int sfcount[2]; - union { - struct ip_mc_list *next; - struct ip_mc_list *next_rcu; - }; - struct ip_mc_list *next_hash; - struct timer_list timer; - int users; - refcount_t refcnt; - spinlock_t lock; - char tm_running; - char reporter; - char unsolicit_count; - char loaded; - unsigned char gsquery; - unsigned char crcount; - long unsigned int mca_cstamp; - long unsigned int mca_tstamp; - struct callback_head rcu; -}; - -struct in_validator_info { - __be32 ivi_addr; - struct in_device *ivi_dev; - struct netlink_ext_ack *extack; -}; - -struct ip_sf_list { - struct ip_sf_list *sf_next; - long unsigned int sf_count[2]; - __be32 sf_inaddr; - unsigned char sf_gsresp; - unsigned char sf_oldin; - unsigned char sf_crcount; -}; - -struct inet_fill_args { - u32 portid; - u32 seq; - int event; - unsigned int flags; - int netnsid; - int ifindex; -}; - -struct netconfmsg { - __u8 ncm_family; -}; - -enum { - NETCONFA_UNSPEC = 0, - NETCONFA_IFINDEX = 1, - NETCONFA_FORWARDING = 2, - NETCONFA_RP_FILTER = 3, - NETCONFA_MC_FORWARDING = 4, - NETCONFA_PROXY_NEIGH = 5, - NETCONFA_IGNORE_ROUTES_WITH_LINKDOWN = 6, - NETCONFA_INPUT = 7, - NETCONFA_BC_FORWARDING = 8, - NETCONFA_FORCE_FORWARDING = 9, - __NETCONFA_MAX = 10, -}; - -struct fib_result { - __be32 prefix; - unsigned char prefixlen; - unsigned char nh_sel; - unsigned char type; - unsigned char scope; - u32 tclassid; - dscp_t dscp; - struct fib_nh_common *nhc; - struct fib_info *fi; - struct fib_table *table; - struct hlist_head *fa_head; -}; - -struct devinet_sysctl_table { - struct ctl_table_header *sysctl_header; - struct ctl_table devinet_vars[33]; -}; - -struct seq_net_private { - struct net *net; - netns_tracker ns_tracker; -}; - -struct nl_info { - struct nlmsghdr *nlh; - struct net *nl_net; - u32 portid; - u8 skip_notify: 1; - u8 skip_notify_kernel: 1; -}; - -struct fib_config { - u8 fc_dst_len; - dscp_t fc_dscp; - u8 fc_protocol; - u8 fc_scope; - u8 fc_type; - u8 fc_gw_family; - u32 fc_table; - __be32 fc_dst; - union { - __be32 fc_gw4; - struct in6_addr fc_gw6; - }; - int fc_oif; - u32 fc_flags; - u32 fc_priority; - __be32 fc_prefsrc; - u32 fc_nh_id; - struct nlattr *fc_mx; - struct rtnexthop *fc_mp; - int fc_mx_len; - int fc_mp_len; - u32 fc_flow; - u32 fc_nlflags; - struct nl_info fc_nlinfo; - struct nlattr *fc_encap; - u16 fc_encap_type; -}; - -struct fib_rt_info { - struct fib_info *fi; - u32 tb_id; - __be32 dst; - int dst_len; - dscp_t dscp; - u8 type; - u8 offload: 1; - u8 trap: 1; - u8 offload_failed: 1; - u8 unused: 5; -}; - -struct fib_entry_notifier_info { - struct fib_notifier_info info; - u32 dst; - int dst_len; - struct fib_info *fi; - dscp_t dscp; - u8 type; - u32 tb_id; -}; - -struct fib_dump_filter { - u32 table_id; - bool filter_set; - bool dump_routes; - bool dump_exceptions; - bool rtnl_held; - unsigned char protocol; - unsigned char rt_type; - unsigned int flags; - struct net_device *dev; -}; - -struct fib_alias { - struct hlist_node fa_list; - struct fib_info *fa_info; - dscp_t fa_dscp; - u8 fa_type; - u8 fa_state; - u8 fa_slen; - u32 tb_id; - s16 fa_default; - u8 offload; - u8 trap; - u8 offload_failed; - struct callback_head rcu; -}; - -struct fib_prop { - int error; - u8 scope; -}; - -typedef unsigned int t_key; - -struct key_vector { - t_key key; - unsigned char pos; - unsigned char bits; - unsigned char slen; - union { - struct hlist_head leaf; - struct { - struct {} __empty_tnode; - struct key_vector *tnode[0]; - }; - }; -}; - -struct tnode { - struct callback_head rcu; - t_key empty_children; - t_key full_children; - struct key_vector *parent; - struct key_vector kv[1]; -}; - -struct trie_use_stats { - unsigned int gets; - unsigned int backtrack; - unsigned int semantic_match_passed; - unsigned int semantic_match_miss; - unsigned int null_node_hit; - unsigned int resize_node_skipped; -}; - -struct trie_stat { - unsigned int totdepth; - unsigned int maxdepth; - unsigned int tnodes; - unsigned int leaves; - unsigned int nullpointers; - unsigned int prefixes; - unsigned int nodesizes[32]; -}; - -struct trie { - struct key_vector kv[1]; - struct trie_use_stats *stats; -}; - -struct fib_trie_iter { - struct seq_net_private p; - struct fib_table *tb; - struct key_vector *tnode; - unsigned int index; - unsigned int depth; -}; - -struct fib_route_iter { - struct seq_net_private p; - struct fib_table *main_tb; - struct key_vector *tnode; - loff_t pos; - t_key key; -}; - -struct icmpv6_echo { - __be16 identifier; - __be16 sequence; -}; - -struct icmpv6_nd_advt { - __u32 reserved: 5; - __u32 override: 1; - __u32 solicited: 1; - __u32 router: 1; - __u32 reserved2: 24; -}; - -struct icmpv6_nd_ra { - __u8 hop_limit; - __u8 reserved: 3; - __u8 router_pref: 2; - __u8 home_agent: 1; - __u8 other: 1; - __u8 managed: 1; - __be16 rt_lifetime; -}; - -struct icmp6hdr { - __u8 icmp6_type; - __u8 icmp6_code; - __sum16 icmp6_cksum; - union { - __be32 un_data32[1]; - __be16 un_data16[2]; - __u8 un_data8[4]; - struct icmpv6_echo u_echo; - struct icmpv6_nd_advt u_nd_advt; - struct icmpv6_nd_ra u_nd_ra; - } icmp6_dataun; -}; - -enum lwtunnel_ip_t { - LWTUNNEL_IP_UNSPEC = 0, - LWTUNNEL_IP_ID = 1, - LWTUNNEL_IP_DST = 2, - LWTUNNEL_IP_SRC = 3, - LWTUNNEL_IP_TTL = 4, - LWTUNNEL_IP_TOS = 5, - LWTUNNEL_IP_FLAGS = 6, - LWTUNNEL_IP_PAD = 7, - LWTUNNEL_IP_OPTS = 8, - __LWTUNNEL_IP_MAX = 9, -}; - -enum lwtunnel_ip6_t { - LWTUNNEL_IP6_UNSPEC = 0, - LWTUNNEL_IP6_ID = 1, - LWTUNNEL_IP6_DST = 2, - LWTUNNEL_IP6_SRC = 3, - LWTUNNEL_IP6_HOPLIMIT = 4, - LWTUNNEL_IP6_TC = 5, - LWTUNNEL_IP6_FLAGS = 6, - LWTUNNEL_IP6_PAD = 7, - LWTUNNEL_IP6_OPTS = 8, - __LWTUNNEL_IP6_MAX = 9, -}; - -enum { - LWTUNNEL_IP_OPTS_UNSPEC = 0, - LWTUNNEL_IP_OPTS_GENEVE = 1, - LWTUNNEL_IP_OPTS_VXLAN = 2, - LWTUNNEL_IP_OPTS_ERSPAN = 3, - __LWTUNNEL_IP_OPTS_MAX = 4, -}; - -enum { - LWTUNNEL_IP_OPT_GENEVE_UNSPEC = 0, - LWTUNNEL_IP_OPT_GENEVE_CLASS = 1, - LWTUNNEL_IP_OPT_GENEVE_TYPE = 2, - LWTUNNEL_IP_OPT_GENEVE_DATA = 3, - __LWTUNNEL_IP_OPT_GENEVE_MAX = 4, -}; - -enum { - LWTUNNEL_IP_OPT_VXLAN_UNSPEC = 0, - LWTUNNEL_IP_OPT_VXLAN_GBP = 1, - __LWTUNNEL_IP_OPT_VXLAN_MAX = 2, -}; - -enum { - LWTUNNEL_IP_OPT_ERSPAN_UNSPEC = 0, - LWTUNNEL_IP_OPT_ERSPAN_VER = 1, - LWTUNNEL_IP_OPT_ERSPAN_INDEX = 2, - LWTUNNEL_IP_OPT_ERSPAN_DIR = 3, - LWTUNNEL_IP_OPT_ERSPAN_HWID = 4, - __LWTUNNEL_IP_OPT_ERSPAN_MAX = 5, -}; - -struct icmphdr { - __u8 type; - __u8 code; - __sum16 checksum; - union { - struct { - __be16 id; - __be16 sequence; - } echo; - __be32 gateway; - struct { - __be16 __unused; - __be16 mtu; - } frag; - __u8 reserved[4]; - } un; -}; - -enum { - IFLA_IPTUN_UNSPEC = 0, - IFLA_IPTUN_LINK = 1, - IFLA_IPTUN_LOCAL = 2, - IFLA_IPTUN_REMOTE = 3, - IFLA_IPTUN_TTL = 4, - IFLA_IPTUN_TOS = 5, - IFLA_IPTUN_ENCAP_LIMIT = 6, - IFLA_IPTUN_FLOWINFO = 7, - IFLA_IPTUN_FLAGS = 8, - IFLA_IPTUN_PROTO = 9, - IFLA_IPTUN_PMTUDISC = 10, - IFLA_IPTUN_6RD_PREFIX = 11, - IFLA_IPTUN_6RD_RELAY_PREFIX = 12, - IFLA_IPTUN_6RD_PREFIXLEN = 13, - IFLA_IPTUN_6RD_RELAY_PREFIXLEN = 14, - IFLA_IPTUN_ENCAP_TYPE = 15, - IFLA_IPTUN_ENCAP_FLAGS = 16, - IFLA_IPTUN_ENCAP_SPORT = 17, - IFLA_IPTUN_ENCAP_DPORT = 18, - IFLA_IPTUN_COLLECT_METADATA = 19, - IFLA_IPTUN_FWMARK = 20, - __IFLA_IPTUN_VENDOR_BREAK = 21, - IFLA_IPTUN_FAN_MAP = 33, - __IFLA_IPTUN_MAX = 34, -}; - -struct ip_tunnel_encap_ops { - size_t (*encap_hlen)(struct ip_tunnel_encap *); - int (*build_header)(struct sk_buff *, struct ip_tunnel_encap *, u8 *, struct flowi4 *); - int (*err_handler)(struct sk_buff *, u32); -}; - -struct ip6_tnl_encap_ops { - size_t (*encap_hlen)(struct ip_tunnel_encap *); - int (*build_header)(struct sk_buff *, struct ip_tunnel_encap *, u8 *, struct flowi6 *); - int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); -}; - -struct geneve_opt { - __be16 opt_class; - u8 type; - u8 length: 5; - u8 r3: 1; - u8 r2: 1; - u8 r1: 1; - u8 opt_data[0]; -}; - -struct vxlan_metadata { - u32 gbp; -}; - -struct erspan_md2 { - __be32 timestamp; - __be16 sgt; - __u8 hwid_upper: 2; - __u8 ft: 5; - __u8 p: 1; - __u8 o: 1; - __u8 gra: 2; - __u8 dir: 1; - __u8 hwid: 4; -}; - -struct erspan_metadata { - int version; - union { - __be32 index; - struct erspan_md2 md2; - } u; -}; - -struct vlan_hdr { - __be16 h_vlan_TCI; - __be16 h_vlan_encapsulated_proto; -}; - -struct ip_tunnel_parm { - char name[16]; - int link; - __be16 i_flags; - __be16 o_flags; - __be32 i_key; - __be32 o_key; - struct iphdr iph; -}; - -enum tunnel_encap_types { - TUNNEL_ENCAP_NONE = 0, - TUNNEL_ENCAP_FOU = 1, - TUNNEL_ENCAP_GUE = 2, - TUNNEL_ENCAP_MPLS = 3, -}; - -struct gro_cell; - -struct gro_cells { - struct gro_cell *cells; -}; - -struct ip_tunnel_6rd_parm { - struct in6_addr prefix; - __be32 relay_prefix; - u16 prefixlen; - u16 relay_prefixlen; -}; - -struct ip_tunnel_prl_entry { - struct ip_tunnel_prl_entry *next; - __be32 addr; - u16 flags; - struct callback_head callback_head; -}; - -struct ip_tunnel_fan { - struct list_head fan_maps; -}; - -struct ip_tunnel { - struct ip_tunnel *next; - struct hlist_node hash_node; - struct net_device *dev; - netdevice_tracker dev_tracker; - struct net *net; - long unsigned int err_time; - int err_count; - u32 i_seqno; - atomic_t o_seqno; - int tun_hlen; - u32 index; - u8 erspan_ver; - u8 dir; - u16 hwid; - struct dst_cache dst_cache; - struct ip_tunnel_parm_kern parms; - int mlink; - int encap_hlen; - int hlen; - struct ip_tunnel_encap encap; - struct ip_tunnel_6rd_parm ip6rd; - struct ip_tunnel_prl_entry *prl; - unsigned int prl_count; - struct ip_tunnel_fan fan; - unsigned int ip_tnl_net_id; - struct gro_cells gro_cells; - __u32 fwmark; - bool collect_md; - bool ignore_df; -}; - -struct tnl_ptk_info { - long unsigned int flags[1]; - __be16 proto; - __be32 key; - __be32 seq; - int hdr_len; -}; - -struct ip_tunnel_net { - struct net_device *fb_tunnel_dev; - struct rtnl_link_ops *rtnl_link_ops; - struct hlist_head tunnels[128]; - struct ip_tunnel *collect_md_tun; - int type; -}; - -struct nlmsgerr { - int error; - struct nlmsghdr msg; -}; - -struct rtmsg { - unsigned char rtm_family; - unsigned char rtm_dst_len; - unsigned char rtm_src_len; - unsigned char rtm_tos; - unsigned char rtm_table; - unsigned char rtm_protocol; - unsigned char rtm_scope; - unsigned char rtm_type; - unsigned int rtm_flags; -}; - -struct igmphdr { - __u8 type; - __u8 code; - __sum16 csum; - __be32 group; -}; - -struct ip_sf_socklist { - unsigned int sl_max; - unsigned int sl_count; - struct callback_head rcu; - __be32 sl_addr[0]; -}; - -struct ip_mc_socklist { - struct ip_mc_socklist *next_rcu; - struct ip_mreqn multi; - unsigned int sfmode; - struct ip_sf_socklist *sflist; - struct callback_head rcu; -}; - -enum { - PIM_TYPE_HELLO = 0, - PIM_TYPE_REGISTER = 1, - PIM_TYPE_REGISTER_STOP = 2, - PIM_TYPE_JOIN_PRUNE = 3, - PIM_TYPE_BOOTSTRAP = 4, - PIM_TYPE_ASSERT = 5, - PIM_TYPE_GRAFT = 6, - PIM_TYPE_GRAFT_ACK = 7, - PIM_TYPE_CANDIDATE_RP_ADV = 8, -}; - -struct pimreghdr { - __u8 type; - __u8 reserved; - __be16 csum; - __be32 flags; -}; - -typedef short unsigned int vifi_t; - -struct vifctl { - vifi_t vifc_vifi; - unsigned char vifc_flags; - unsigned char vifc_threshold; - unsigned int vifc_rate_limit; - union { - struct in_addr vifc_lcl_addr; - int vifc_lcl_ifindex; - }; - struct in_addr vifc_rmt_addr; -}; - -struct mfcctl { - struct in_addr mfcc_origin; - struct in_addr mfcc_mcastgrp; - vifi_t mfcc_parent; - unsigned char mfcc_ttls[32]; - unsigned int mfcc_pkt_cnt; - unsigned int mfcc_byte_cnt; - unsigned int mfcc_wrong_if; - int mfcc_expire; -}; - -struct sioc_sg_req { - struct in_addr src; - struct in_addr grp; - long unsigned int pktcnt; - long unsigned int bytecnt; - long unsigned int wrong_if; -}; - -struct sioc_vif_req { - vifi_t vifi; - long unsigned int icount; - long unsigned int ocount; - long unsigned int ibytes; - long unsigned int obytes; -}; - -struct igmpmsg { - __u32 unused1; - __u32 unused2; - unsigned char im_msgtype; - unsigned char im_mbz; - unsigned char im_vif; - unsigned char im_vif_hi; - struct in_addr im_src; - struct in_addr im_dst; -}; - -enum { - IPMRA_TABLE_UNSPEC = 0, - IPMRA_TABLE_ID = 1, - IPMRA_TABLE_CACHE_RES_QUEUE_LEN = 2, - IPMRA_TABLE_MROUTE_REG_VIF_NUM = 3, - IPMRA_TABLE_MROUTE_DO_ASSERT = 4, - IPMRA_TABLE_MROUTE_DO_PIM = 5, - IPMRA_TABLE_VIFS = 6, - IPMRA_TABLE_MROUTE_DO_WRVIFWHOLE = 7, - __IPMRA_TABLE_MAX = 8, -}; - -enum { - IPMRA_VIF_UNSPEC = 0, - IPMRA_VIF = 1, - __IPMRA_VIF_MAX = 2, -}; - -enum { - IPMRA_VIFA_UNSPEC = 0, - IPMRA_VIFA_IFINDEX = 1, - IPMRA_VIFA_VIF_ID = 2, - IPMRA_VIFA_FLAGS = 3, - IPMRA_VIFA_BYTES_IN = 4, - IPMRA_VIFA_BYTES_OUT = 5, - IPMRA_VIFA_PACKETS_IN = 6, - IPMRA_VIFA_PACKETS_OUT = 7, - IPMRA_VIFA_LOCAL_ADDR = 8, - IPMRA_VIFA_REMOTE_ADDR = 9, - IPMRA_VIFA_PAD = 10, - __IPMRA_VIFA_MAX = 11, -}; - -enum { - IPMRA_CREPORT_UNSPEC = 0, - IPMRA_CREPORT_MSGTYPE = 1, - IPMRA_CREPORT_VIF_ID = 2, - IPMRA_CREPORT_SRC_ADDR = 3, - IPMRA_CREPORT_DST_ADDR = 4, - IPMRA_CREPORT_PKT = 5, - IPMRA_CREPORT_TABLE = 6, - __IPMRA_CREPORT_MAX = 7, -}; - -struct vif_entry_notifier_info { - struct fib_notifier_info info; - struct net_device *dev; - short unsigned int vif_index; - short unsigned int vif_flags; - u32 tb_id; -}; - -enum { - MFC_STATIC = 1, - MFC_OFFLOAD = 2, -}; - -struct mr_mfc { - struct rhlist_head mnode; - short unsigned int mfc_parent; - int mfc_flags; - union { - struct { - long unsigned int expires; - struct sk_buff_head unresolved; - } unres; - struct { - long unsigned int last_assert; - int minvif; - int maxvif; - atomic_long_t bytes; - atomic_long_t pkt; - atomic_long_t wrong_if; - long unsigned int lastuse; - unsigned char ttls[32]; - refcount_t refcount; - } res; - } mfc_un; - struct list_head list; - struct callback_head rcu; - void (*free)(struct callback_head *); -}; - -struct mfc_entry_notifier_info { - struct fib_notifier_info info; - struct mr_mfc *mfc; - u32 tb_id; -}; - -struct mr_vif_iter { - struct seq_net_private p; - struct mr_table *mrt; - int ct; -}; - -struct mr_mfc_iter { - struct seq_net_private p; - struct mr_table *mrt; - struct list_head *cache; - spinlock_t *lock; -}; - -struct mfc_cache_cmp_arg { - __be32 mfc_mcastgrp; - __be32 mfc_origin; -}; - -struct mfc_cache { - struct mr_mfc _c; - union { - struct { - __be32 mfc_mcastgrp; - __be32 mfc_origin; - }; - struct mfc_cache_cmp_arg cmparg; - }; -}; - -struct icmp_filter { - __u32 data; -}; - -struct raw_sock { - struct inet_sock inet; - struct icmp_filter filter; - u32 ipmr_table; -}; - -struct compat_sioc_sg_req { - struct in_addr src; - struct in_addr grp; - compat_ulong_t pktcnt; - compat_ulong_t bytecnt; - compat_ulong_t wrong_if; -}; - -struct compat_sioc_vif_req { - vifi_t vifi; - compat_ulong_t icount; - compat_ulong_t ocount; - compat_ulong_t ibytes; - compat_ulong_t obytes; -}; - -struct flow_dissector_key_tags { - u32 flow_label; -}; - -struct flow_dissector_key_tipc { - __be32 key; -}; - -struct flow_dissector_key_addrs { - union { - struct flow_dissector_key_ipv4_addrs v4addrs; - struct flow_dissector_key_ipv6_addrs v6addrs; - struct flow_dissector_key_tipc tipckey; - }; -}; - -struct flow_keys { - struct flow_dissector_key_control control; - struct flow_dissector_key_basic basic; - struct flow_dissector_key_tags tags; - struct flow_dissector_key_vlan vlan; - struct flow_dissector_key_vlan cvlan; - struct flow_dissector_key_keyid keyid; - struct flow_dissector_key_ports ports; - struct flow_dissector_key_icmp icmp; - struct flow_dissector_key_addrs addrs; - long: 0; -}; - -struct sk_psock_progs { - struct bpf_prog *msg_parser; - struct bpf_prog *stream_parser; - struct bpf_prog *stream_verdict; - struct bpf_prog *skb_verdict; - struct bpf_link *msg_parser_link; - struct bpf_link *stream_parser_link; - struct bpf_link *stream_verdict_link; - struct bpf_link *skb_verdict_link; -}; - -struct strp_stats { - long long unsigned int msgs; - long long unsigned int bytes; - unsigned int mem_fail; - unsigned int need_more_hdr; - unsigned int msg_too_big; - unsigned int msg_timeouts; - unsigned int bad_hdr_len; -}; - -struct strparser; - -struct strp_callbacks { - int (*parse_msg)(struct strparser *, struct sk_buff *); - void (*rcv_msg)(struct strparser *, struct sk_buff *); - int (*read_sock)(struct strparser *, read_descriptor_t *, sk_read_actor_t); - int (*read_sock_done)(struct strparser *, int); - void (*abort_parser)(struct strparser *, int); - void (*lock)(struct strparser *); - void (*unlock)(struct strparser *); -}; - -struct strparser { - struct sock *sk; - u32 stopped: 1; - u32 paused: 1; - u32 aborted: 1; - u32 interrupted: 1; - u32 unrecov_intr: 1; - struct sk_buff **skb_nextp; - struct sk_buff *skb_head; - unsigned int need_bytes; - struct delayed_work msg_timer_work; - struct work_struct work; - struct strp_stats stats; - struct strp_callbacks cb; -}; - -struct sk_psock_work_state { - u32 len; - u32 off; -}; - -struct sk_msg; - -struct sk_psock { - struct sock *sk; - struct sock *sk_redir; - u32 apply_bytes; - u32 cork_bytes; - u32 eval; - bool redir_ingress; - struct sk_msg *cork; - struct sk_psock_progs progs; - struct strparser strp; - u32 copied_seq; - u32 ingress_bytes; - struct sk_buff_head ingress_skb; - struct list_head ingress_msg; - spinlock_t ingress_lock; - long unsigned int state; - struct list_head link; - spinlock_t link_lock; - refcount_t refcnt; - void (*saved_unhash)(struct sock *); - void (*saved_destroy)(struct sock *); - void (*saved_close)(struct sock *, long int); - void (*saved_write_space)(struct sock *); - void (*saved_data_ready)(struct sock *); - int (*psock_update_sk_prot)(struct sock *, struct sk_psock *, bool); - struct proto *sk_proto; - struct mutex work_mutex; - struct sk_psock_work_state work_state; - struct delayed_work work; - struct sock *sk_pair; - struct rcu_work rwork; -}; - -enum __sk_action { - __SK_DROP = 0, - __SK_PASS = 1, - __SK_REDIRECT = 2, - __SK_NONE = 3, -}; - -struct sk_msg_sg { - u32 start; - u32 curr; - u32 end; - u32 size; - u32 copybreak; - long unsigned int copy[1]; - struct scatterlist data[19]; -}; - -struct sk_msg { - struct sk_msg_sg sg; - void *data; - void *data_end; - u32 apply_bytes; - u32 cork_bytes; - u32 flags; - struct sk_buff *skb; - struct sock *sk_redir; - struct sock *sk; - struct list_head list; -}; - -enum sk_psock_state_bits { - SK_PSOCK_TX_ENABLED = 0, - SK_PSOCK_RX_STRP_ENABLED = 1, -}; - -struct tls_crypto_info { - __u16 version; - __u16 cipher_type; -}; - -struct tls12_crypto_info_aes_gcm_128 { - struct tls_crypto_info info; - unsigned char iv[8]; - unsigned char key[16]; - unsigned char salt[4]; - unsigned char rec_seq[8]; -}; - -struct tls12_crypto_info_aes_gcm_256 { - struct tls_crypto_info info; - unsigned char iv[8]; - unsigned char key[32]; - unsigned char salt[4]; - unsigned char rec_seq[8]; -}; - -struct tls12_crypto_info_chacha20_poly1305 { - struct tls_crypto_info info; - unsigned char iv[12]; - unsigned char key[32]; - unsigned char salt[0]; - unsigned char rec_seq[8]; -}; - -struct tls12_crypto_info_sm4_gcm { - struct tls_crypto_info info; - unsigned char iv[8]; - unsigned char key[16]; - unsigned char salt[4]; - unsigned char rec_seq[8]; -}; - -struct tls12_crypto_info_sm4_ccm { - struct tls_crypto_info info; - unsigned char iv[8]; - unsigned char key[16]; - unsigned char salt[4]; - unsigned char rec_seq[8]; -}; - -struct tx_work { - struct delayed_work work; - struct sock *sk; -}; - -struct tls_rec; - -struct tls_sw_context_tx { - struct crypto_aead *aead_send; - struct crypto_wait async_wait; - struct tx_work tx_work; - struct tls_rec *open_rec; - struct list_head tx_list; - atomic_t encrypt_pending; - u8 async_capable: 1; - long unsigned int tx_bitmask; -}; - -struct tls_prot_info { - u16 version; - u16 cipher_type; - u16 prepend_size; - u16 tag_size; - u16 overhead_size; - u16 iv_size; - u16 salt_size; - u16 rec_seq_size; - u16 aad_size; - u16 tail_size; -}; - -struct cipher_context { - char iv[20]; - char rec_seq[8]; -}; - -union tls_crypto_context { - struct tls_crypto_info info; - union { - struct tls12_crypto_info_aes_gcm_128 aes_gcm_128; - struct tls12_crypto_info_aes_gcm_256 aes_gcm_256; - struct tls12_crypto_info_chacha20_poly1305 chacha20_poly1305; - struct tls12_crypto_info_sm4_gcm sm4_gcm; - struct tls12_crypto_info_sm4_ccm sm4_ccm; - }; -}; - -struct tls_context { - struct tls_prot_info prot_info; - u8 tx_conf: 3; - u8 rx_conf: 3; - u8 zerocopy_sendfile: 1; - u8 rx_no_pad: 1; - int (*push_pending_record)(struct sock *, int); - void (*sk_write_space)(struct sock *); - void *priv_ctx_tx; - void *priv_ctx_rx; - struct net_device *netdev; - struct cipher_context tx; - struct cipher_context rx; - struct scatterlist *partially_sent_record; - u16 partially_sent_offset; - bool splicing_pages; - bool pending_open_record_frags; - struct mutex tx_lock; - long unsigned int flags; - struct proto *sk_proto; - struct sock *sk; - void (*sk_destruct)(struct sock *); - union tls_crypto_context crypto_send; - union tls_crypto_context crypto_recv; - struct list_head list; - refcount_t refcount; - struct callback_head rcu; -}; - -enum { - TCP_BPF_IPV4 = 0, - TCP_BPF_IPV6 = 1, - TCP_BPF_NUM_PROTS = 2, -}; - -enum { - TCP_BPF_BASE = 0, - TCP_BPF_TX = 1, - TCP_BPF_RX = 2, - TCP_BPF_TXRX = 3, - TCP_BPF_NUM_CFGS = 4, -}; - -struct ip6_tnl; - -struct xfrm_tunnel_skb_cb { - union { - struct inet_skb_parm h4; - struct inet6_skb_parm h6; - } header; - union { - struct ip_tunnel *ip4; - struct ip6_tnl *ip6; - } tunnel; -}; - -struct xfrm_mode_skb_cb { - struct xfrm_tunnel_skb_cb header; - __be16 id; - __be16 frag_off; - u8 ihl; - u8 tos; - u8 ttl; - u8 protocol; - u8 optlen; - u8 flow_lbl[3]; -}; - -struct xfrm_spi_skb_cb { - struct xfrm_tunnel_skb_cb header; - unsigned int daddroff; - unsigned int family; - __be32 seq; -}; - -struct tcp_ao_add { - struct __kernel_sockaddr_storage addr; - char alg_name[64]; - __s32 ifindex; - __u32 set_current: 1; - __u32 set_rnext: 1; - __u32 reserved: 30; - __u16 reserved2; - __u8 prefix; - __u8 sndid; - __u8 rcvid; - __u8 maclen; - __u8 keyflags; - __u8 keylen; - __u8 key[80]; -}; - -struct tcp_ao_del { - struct __kernel_sockaddr_storage addr; - __s32 ifindex; - __u32 set_current: 1; - __u32 set_rnext: 1; - __u32 del_async: 1; - __u32 reserved: 29; - __u16 reserved2; - __u8 prefix; - __u8 sndid; - __u8 rcvid; - __u8 current_key; - __u8 rnext; - __u8 keyflags; -}; - -struct tcp_ao_info_opt { - __u32 set_current: 1; - __u32 set_rnext: 1; - __u32 ao_required: 1; - __u32 set_counters: 1; - __u32 accept_icmps: 1; - __u32 reserved: 27; - __u16 reserved2; - __u8 current_key; - __u8 rnext; - __u64 pkt_good; - __u64 pkt_bad; - __u64 pkt_key_not_found; - __u64 pkt_ao_required; - __u64 pkt_dropped_icmp; -}; - -struct tcp_ao_getsockopt { - struct __kernel_sockaddr_storage addr; - char alg_name[64]; - __u8 key[80]; - __u32 nkeys; - __u16 is_current: 1; - __u16 is_rnext: 1; - __u16 get_all: 1; - __u16 reserved: 13; - __u8 sndid; - __u8 rcvid; - __u8 prefix; - __u8 maclen; - __u8 keyflags; - __u8 keylen; - __s32 ifindex; - __u64 pkt_good; - __u64 pkt_bad; -}; - -struct tcp_ao_repair { - __be32 snt_isn; - __be32 rcv_isn; - __u32 snd_sne; - __u32 rcv_sne; -}; - -struct tcp_timewait_sock { - struct inet_timewait_sock tw_sk; - u32 tw_rcv_wnd; - u32 tw_ts_offset; - u32 tw_ts_recent; - u32 tw_last_oow_ack_time; - int tw_ts_recent_stamp; - u32 tw_tx_delay; - struct tcp_md5sig_key *tw_md5_key; - struct tcp_ao_info *ao_info; -}; - -struct tcp4_ao_context { - __be32 saddr; - __be32 daddr; - __be16 sport; - __be16 dport; - __be32 sisn; - __be32 disn; -}; - -struct tcp4_pseudohdr { - __be32 saddr; - __be32 daddr; - __u8 pad; - __u8 protocol; - __be16 len; -}; - -struct tcp_sigpool { - void *scratch; - struct ahash_request *req; -}; - -struct kdf_input_block { - u8 counter; - u8 label[6]; - struct tcp4_ao_context ctx; - __be16 outlen; -} __attribute__((packed)); - -enum xfrm_sa_dir { - XFRM_SA_DIR_IN = 1, - XFRM_SA_DIR_OUT = 2, -}; - -enum xfrm_ae_ftype_t { - XFRM_AE_UNSPEC = 0, - XFRM_AE_RTHR = 1, - XFRM_AE_RVAL = 2, - XFRM_AE_LVAL = 4, - XFRM_AE_ETHR = 8, - XFRM_AE_CR = 16, - XFRM_AE_CE = 32, - XFRM_AE_CU = 64, - __XFRM_AE_MAX = 65, -}; - -enum xfrm_nlgroups { - XFRMNLGRP_NONE = 0, - XFRMNLGRP_ACQUIRE = 1, - XFRMNLGRP_EXPIRE = 2, - XFRMNLGRP_SA = 3, - XFRMNLGRP_POLICY = 4, - XFRMNLGRP_AEVENTS = 5, - XFRMNLGRP_REPORT = 6, - XFRMNLGRP_MIGRATE = 7, - XFRMNLGRP_MAPPING = 8, - __XFRMNLGRP_MAX = 9, -}; - -enum { - XFRM_DEV_OFFLOAD_FLAG_ACQ = 1, -}; - -enum { - XFRM_MODE_FLAG_TUNNEL = 1, -}; - -enum { - XFRM_STATE_VOID = 0, - XFRM_STATE_ACQ = 1, - XFRM_STATE_VALID = 2, - XFRM_STATE_ERROR = 3, - XFRM_STATE_EXPIRED = 4, - XFRM_STATE_DEAD = 5, -}; - -struct km_event { - union { - u32 hard; - u32 proto; - u32 byid; - u32 aevent; - u32 type; - } data; - u32 seq; - u32 portid; - u32 event; - struct net *net; -}; - -struct xfrm_state_afinfo { - u8 family; - u8 proto; - const struct xfrm_type_offload *type_offload_esp; - const struct xfrm_type *type_esp; - const struct xfrm_type *type_ipip; - const struct xfrm_type *type_ipip6; - const struct xfrm_type *type_comp; - const struct xfrm_type *type_ah; - const struct xfrm_type *type_routing; - const struct xfrm_type *type_dstopts; - int (*output)(struct net *, struct sock *, struct sk_buff *); - int (*transport_finish)(struct sk_buff *, int); - void (*local_error)(struct sk_buff *, u32); -}; - -struct xfrm_kmaddress { - xfrm_address_t local; - xfrm_address_t remote; - u32 reserved; - u16 family; -}; - -struct xfrm_migrate { - xfrm_address_t old_daddr; - xfrm_address_t old_saddr; - xfrm_address_t new_daddr; - xfrm_address_t new_saddr; - u8 proto; - u8 mode; - u16 reserved; - u32 reqid; - u16 old_family; - u16 new_family; -}; - -struct xfrm_mgr { - struct list_head list; - int (*notify)(struct xfrm_state *, const struct km_event *); - int (*acquire)(struct xfrm_state *, struct xfrm_tmpl *, struct xfrm_policy *); - struct xfrm_policy * (*compile_policy)(struct sock *, int, u8 *, int, int *); - int (*new_mapping)(struct xfrm_state *, xfrm_address_t *, __be16); - int (*notify_policy)(struct xfrm_policy *, int, const struct km_event *); - int (*report)(struct net *, u8, struct xfrm_selector *, xfrm_address_t *); - int (*migrate)(const struct xfrm_selector *, u8, u8, const struct xfrm_migrate *, int, const struct xfrm_kmaddress *, const struct xfrm_encap_tmpl *); - bool (*is_alive)(const struct km_event *); -}; - -struct xfrmk_sadinfo { - u32 sadhcnt; - u32 sadhmcnt; - u32 sadcnt; -}; - -struct xfrm_translator { - int (*alloc_compat)(struct sk_buff *, const struct nlmsghdr *); - struct nlmsghdr * (*rcv_msg_compat)(const struct nlmsghdr *, int, const struct nla_policy *, struct netlink_ext_ack *); - int (*xlate_user_policy_sockptr)(u8 **, int); - struct module *owner; -}; - -struct xfrm_hash_state_ptrs { - const struct hlist_head *bydst; - const struct hlist_head *bysrc; - const struct hlist_head *byspi; - unsigned int hmask; -}; - -struct xfrm_skb_cb { - struct xfrm_tunnel_skb_cb header; - union { - struct { - __u32 low; - __u32 hi; - } output; - struct { - __be32 low; - __be32 hi; - } input; - } seq; -}; - -struct fib6_result; - -struct fib6_config; - -struct ipv6_stub { - int (*ipv6_sock_mc_join)(struct sock *, int, const struct in6_addr *); - int (*ipv6_sock_mc_drop)(struct sock *, int, const struct in6_addr *); - struct dst_entry * (*ipv6_dst_lookup_flow)(struct net *, const struct sock *, struct flowi6 *, const struct in6_addr *); - int (*ipv6_route_input)(struct sk_buff *); - struct fib6_table * (*fib6_get_table)(struct net *, u32); - int (*fib6_lookup)(struct net *, int, struct flowi6 *, struct fib6_result *, int); - int (*fib6_table_lookup)(struct net *, struct fib6_table *, int, struct flowi6 *, struct fib6_result *, int); - void (*fib6_select_path)(const struct net *, struct fib6_result *, struct flowi6 *, int, bool, const struct sk_buff *, int); - u32 (*ip6_mtu_from_fib6)(const struct fib6_result *, const struct in6_addr *, const struct in6_addr *); - int (*fib6_nh_init)(struct net *, struct fib6_nh *, struct fib6_config *, gfp_t, struct netlink_ext_ack *); - void (*fib6_nh_release)(struct fib6_nh *); - void (*fib6_nh_release_dsts)(struct fib6_nh *); - void (*fib6_update_sernum)(struct net *, struct fib6_info *); - int (*ip6_del_rt)(struct net *, struct fib6_info *, bool); - void (*fib6_rt_update)(struct net *, struct fib6_info *, struct nl_info *); - void (*udpv6_encap_enable)(void); - void (*ndisc_send_na)(struct net_device *, const struct in6_addr *, const struct in6_addr *, bool, bool, bool, bool); - void (*xfrm6_local_rxpmtu)(struct sk_buff *, u32); - int (*xfrm6_udp_encap_rcv)(struct sock *, struct sk_buff *); - struct sk_buff * (*xfrm6_gro_udp_encap_rcv)(struct sock *, struct list_head *, struct sk_buff *); - int (*xfrm6_rcv_encap)(struct sk_buff *, int, __be32, int); - struct neigh_table *nd_tbl; - int (*ipv6_fragment)(struct net *, struct sock *, struct sk_buff *, int (*)(struct net *, struct sock *, struct sk_buff *)); - struct net_device * (*ipv6_dev_find)(struct net *, const struct in6_addr *, struct net_device *); - int (*ip6_xmit)(const struct sock *, struct sk_buff *, struct flowi6 *, __u32, struct ipv6_txoptions *, int, u32); -}; - -struct fib6_result { - struct fib6_nh *nh; - struct fib6_info *f6i; - u32 fib6_flags; - u8 fib6_type; - struct rt6_info *rt6; -}; - -struct fib6_config { - u32 fc_table; - u32 fc_metric; - int fc_dst_len; - int fc_src_len; - int fc_ifindex; - u32 fc_flags; - u32 fc_protocol; - u16 fc_type; - u16 fc_delete_all_nh: 1; - u16 fc_ignore_dev_down: 1; - u16 __unused: 14; - u32 fc_nh_id; - struct in6_addr fc_dst; - struct in6_addr fc_src; - struct in6_addr fc_prefsrc; - struct in6_addr fc_gateway; - long unsigned int fc_expires; - struct nlattr *fc_mx; - int fc_mx_len; - int fc_mp_len; - struct nlattr *fc_mp; - struct nl_info fc_nlinfo; - struct nlattr *fc_encap; - u16 fc_encap_type; - bool fc_is_fdb; -}; - -struct strp_msg { - int full_len; - int offset; -}; - -struct espintcp_msg { - struct sk_buff *skb; - struct sk_msg skmsg; - int offset; - int len; -}; - -struct espintcp_ctx { - struct strparser strp; - struct sk_buff_head ike_queue; - struct sk_buff_head out_queue; - struct espintcp_msg partial; - void (*saved_data_ready)(struct sock *); - void (*saved_write_space)(struct sock *); - void (*saved_destruct)(struct sock *); - struct work_struct work; - bool tx_running; -}; - -struct mmpin { - struct user_struct *user; - unsigned int num_pg; -}; - -struct ubuf_info_msgzc { - struct ubuf_info ubuf; - union { - struct { - long unsigned int desc; - void *ctx; - }; - struct { - u32 id; - u16 len; - u16 zerocopy: 1; - u32 bytelen; - }; - }; - struct mmpin mmp; -}; - -struct bpf_empty_prog_array { - struct bpf_prog_array hdr; - struct bpf_prog *null_prog; -}; - -enum { - SOF_TIMESTAMPING_TX_HARDWARE = 1, - SOF_TIMESTAMPING_TX_SOFTWARE = 2, - SOF_TIMESTAMPING_RX_HARDWARE = 4, - SOF_TIMESTAMPING_RX_SOFTWARE = 8, - SOF_TIMESTAMPING_SOFTWARE = 16, - SOF_TIMESTAMPING_SYS_HARDWARE = 32, - SOF_TIMESTAMPING_RAW_HARDWARE = 64, - SOF_TIMESTAMPING_OPT_ID = 128, - SOF_TIMESTAMPING_TX_SCHED = 256, - SOF_TIMESTAMPING_TX_ACK = 512, - SOF_TIMESTAMPING_OPT_CMSG = 1024, - SOF_TIMESTAMPING_OPT_TSONLY = 2048, - SOF_TIMESTAMPING_OPT_STATS = 4096, - SOF_TIMESTAMPING_OPT_PKTINFO = 8192, - SOF_TIMESTAMPING_OPT_TX_SWHW = 16384, - SOF_TIMESTAMPING_BIND_PHC = 32768, - SOF_TIMESTAMPING_OPT_ID_TCP = 65536, - SOF_TIMESTAMPING_OPT_RX_FILTER = 131072, - SOF_TIMESTAMPING_TX_COMPLETION = 262144, - SOF_TIMESTAMPING_LAST = 262144, - SOF_TIMESTAMPING_MASK = 524287, -}; - -struct sockcm_cookie { - u64 transmit_time; - u32 mark; - u32 tsflags; - u32 ts_opt_id; - u32 priority; - u32 dmabuf_id; -}; - -struct inet6_ifaddr { - struct in6_addr addr; - __u32 prefix_len; - __u32 rt_priority; - __u32 valid_lft; - __u32 prefered_lft; - refcount_t refcnt; - spinlock_t lock; - int state; - __u32 flags; - __u8 dad_probes; - __u8 stable_privacy_retry; - __u16 scope; - __u64 dad_nonce; - long unsigned int cstamp; - long unsigned int tstamp; - struct delayed_work dad_work; - struct inet6_dev *idev; - struct fib6_info *rt; - struct hlist_node addr_lst; - struct list_head if_list; - struct list_head if_list_aux; - struct list_head tmp_list; - struct inet6_ifaddr *ifpub; - int regen_count; - bool tokenized; - u8 ifa_proto; - struct callback_head rcu; - struct in6_addr peer_addr; -}; - -struct frag_hdr { - __u8 nexthdr; - __u8 reserved; - __be16 frag_off; - __be32 identification; -}; - -struct hop_jumbo_hdr { - u8 nexthdr; - u8 hdrlen; - u8 tlv_type; - u8 tlv_len; - __be32 jumbo_payload_len; -}; - -struct ip6_fraglist_iter { - struct ipv6hdr *tmp_hdr; - struct sk_buff *frag; - int offset; - unsigned int hlen; - __be32 frag_id; - u8 nexthdr; -}; - -struct ip6_frag_state { - u8 *prevhdr; - unsigned int hlen; - unsigned int mtu; - unsigned int left; - int offset; - int ptr; - int hroom; - int troom; - __be32 frag_id; - u8 nexthdr; -}; - -struct ip6_ra_chain { - struct ip6_ra_chain *next; - struct sock *sk; - int sel; - void (*destructor)(struct sock *); -}; - -struct ipcm6_cookie { - struct sockcm_cookie sockc; - __s16 hlimit; - __s16 tclass; - __u16 gso_size; - __s8 dontfrag; - struct ipv6_txoptions *opt; -}; - -enum { - LWTUNNEL_XMIT_DONE = 0, - LWTUNNEL_XMIT_CONTINUE = 256, -}; - -struct xfrm_dst { - union { - struct dst_entry dst; - struct rtable rt; - struct rt6_info rt6; - } u; - struct dst_entry *route; - struct dst_entry *child; - struct dst_entry *path; - struct xfrm_policy *pols[2]; - int num_pols; - int num_xfrms; - u32 xfrm_genid; - u32 policy_genid; - u32 route_mtu_cached; - u32 child_mtu_cached; - u32 route_cookie; - u32 path_cookie; -}; - -enum flow_dissector_ctrl_flags { - FLOW_DIS_IS_FRAGMENT = 1, - FLOW_DIS_FIRST_FRAG = 2, - FLOW_DIS_F_TUNNEL_CSUM = 4, - FLOW_DIS_F_TUNNEL_DONT_FRAGMENT = 8, - FLOW_DIS_F_TUNNEL_OAM = 16, - FLOW_DIS_F_TUNNEL_CRIT_OPT = 32, - FLOW_DIS_ENCAPSULATION = 64, -}; - -struct uncached_list { - spinlock_t lock; - struct list_head head; -}; - -struct in6_rtmsg { - struct in6_addr rtmsg_dst; - struct in6_addr rtmsg_src; - struct in6_addr rtmsg_gateway; - __u32 rtmsg_type; - __u16 rtmsg_dst_len; - __u16 rtmsg_src_len; - __u32 rtmsg_metric; - long unsigned int rtmsg_info; - __u32 rtmsg_flags; - int rtmsg_ifindex; -}; - -struct fib6_gc_args { - int timeout; - int more; -}; - -struct rt6_exception { - struct hlist_node hlist; - struct rt6_info *rt6i; - long unsigned int stamp; - struct callback_head rcu; -}; - -typedef struct rt6_info * (*pol_lookup_t)(struct net *, struct fib6_table *, struct flowi6 *, const struct sk_buff *, int); - -struct rd_msg { - struct icmp6hdr icmph; - struct in6_addr target; - struct in6_addr dest; - __u8 opt[0]; -}; - -struct route_info { - __u8 type; - __u8 length; - __u8 prefix_len; - __u8 reserved_l: 3; - __u8 route_pref: 2; - __u8 reserved_h: 3; - __be32 lifetime; - __u8 prefix[0]; -}; - -struct rt6_rtnl_dump_arg { - struct sk_buff *skb; - struct netlink_callback *cb; - struct net *net; - struct fib_dump_filter filter; -}; - -struct netevent_redirect { - struct dst_entry *old; - struct dst_entry *new; - struct neighbour *neigh; - const void *daddr; -}; - -enum netevent_notif_type { - NETEVENT_NEIGH_UPDATE = 1, - NETEVENT_REDIRECT = 2, - NETEVENT_DELAY_PROBE_TIME_UPDATE = 3, - NETEVENT_IPV4_MPATH_HASH_UPDATE = 4, - NETEVENT_IPV6_MPATH_HASH_UPDATE = 5, - NETEVENT_IPV4_FWD_UPDATE_PRIORITY_UPDATE = 6, -}; - -struct trace_event_raw_fib6_table_lookup { - struct trace_entry ent; - u32 tb_id; - int err; - int oif; - int iif; - u32 flowlabel; - __u8 tos; - __u8 scope; - __u8 flags; - __u8 src[16]; - __u8 dst[16]; - u16 sport; - u16 dport; - u8 proto; - u8 rt_type; - char name[16]; - __u8 gw[16]; - char __data[0]; -}; - -struct trace_event_data_offsets_fib6_table_lookup {}; - -typedef void (*btf_trace_fib6_table_lookup)(void *, const struct net *, const struct fib6_result *, struct fib6_table *, const struct flowi6 *); - -enum rt6_nud_state { - RT6_NUD_FAIL_HARD = -3, - RT6_NUD_FAIL_PROBE = -2, - RT6_NUD_FAIL_DO_RR = -1, - RT6_NUD_SUCCEED = 1, -}; - -struct fib6_nh_dm_arg { - struct net *net; - const struct in6_addr *saddr; - int oif; - int flags; - struct fib6_nh *nh; -}; - -struct __rt6_probe_work { - struct work_struct work; - struct in6_addr target; - struct net_device *dev; - netdevice_tracker dev_tracker; -}; - -struct fib6_nh_frl_arg { - u32 flags; - int oif; - int strict; - int *mpri; - bool *do_rr; - struct fib6_nh *nh; -}; - -struct fib6_nh_excptn_arg { - struct rt6_info *rt; - int plen; -}; - -struct fib6_nh_match_arg { - const struct net_device *dev; - const struct in6_addr *gw; - struct fib6_nh *match; -}; - -struct fib6_nh_age_excptn_arg { - struct fib6_gc_args *gc_args; - long unsigned int now; -}; - -struct fib6_nh_rd_arg { - struct fib6_result *res; - struct flowi6 *fl6; - const struct in6_addr *gw; - struct rt6_info **ret; -}; - -struct ip6rd_flowi { - struct flowi6 fl6; - struct in6_addr gateway; -}; - -struct fib6_nh_del_cached_rt_arg { - struct fib6_config *cfg; - struct fib6_info *f6i; -}; - -struct arg_dev_net_ip { - struct net *net; - struct in6_addr *addr; -}; - -struct arg_netdev_event { - const struct net_device *dev; - union { - unsigned char nh_flags; - long unsigned int event; - }; -}; - -struct rt6_mtu_change_arg { - struct net_device *dev; - unsigned int mtu; - struct fib6_info *f6i; -}; - -struct rt6_nh { - struct fib6_info *fib6_info; - struct fib6_config r_cfg; - struct list_head list; -}; - -struct fib6_nh_exception_dump_walker { - struct rt6_rtnl_dump_arg *dump; - struct fib6_info *rt; - unsigned int flags; - unsigned int skip; - unsigned int count; -}; - -struct icmp6_filter { - __u32 data[8]; -}; - -struct raw6_sock { - struct inet_sock inet; - __u32 checksum; - __u32 offset; - struct icmp6_filter filter; - __u32 ip6mr_table; - struct ipv6_pinfo inet6; -}; - -struct inet_protosw { - struct list_head list; - short unsigned int type; - short unsigned int protocol; - struct proto *prot; - const struct proto_ops *ops; - unsigned char flags; -}; - -struct raw_iter_state { - struct seq_net_private p; - int bucket; -}; - -typedef int mh_filter_t(struct sock *, struct sk_buff *); - -struct raw6_frag_vec { - struct msghdr *msg; - int hlen; - char c[4]; -}; - -struct tcp_md5sig { - struct __kernel_sockaddr_storage tcpm_addr; - __u8 tcpm_flags; - __u8 tcpm_prefixlen; - __u16 tcpm_keylen; - int tcpm_ifindex; - __u8 tcpm_key[80]; -}; - -struct tcp6_sock { - struct tcp_sock tcp; - struct ipv6_pinfo inet6; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct net_aligned_data { - atomic64_t net_cookie; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - atomic_long_t tcp_memory_allocated; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - atomic_long_t udp_memory_allocated; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum flowlabel_reflect { - FLOWLABEL_REFLECT_ESTABLISHED = 1, - FLOWLABEL_REFLECT_TCP_RESET = 2, - FLOWLABEL_REFLECT_ICMPV6_ECHO_REPLIES = 4, -}; - -enum tcp_tw_status { - TCP_TW_SUCCESS = 0, - TCP_TW_RST = 1, - TCP_TW_ACK = 2, - TCP_TW_SYN = 3, - TCP_TW_ACK_OOW = 4, -}; - -struct tcp6_pseudohdr { - struct in6_addr saddr; - struct in6_addr daddr; - __be32 len; - __be32 protocol; -}; - -enum tcp_seq_states { - TCP_SEQ_STATE_LISTENING = 0, - TCP_SEQ_STATE_ESTABLISHED = 1, -}; - -struct tcp_seq_afinfo { - sa_family_t family; -}; - -struct tcp_iter_state { - struct seq_net_private p; - enum tcp_seq_states state; - struct sock *syn_wait_sk; - int bucket; - int offset; - int sbucket; - int num; - loff_t last_pos; -}; - -struct tcp_key { - union { - struct { - struct tcp_ao_key *ao_key; - char *traffic_key; - u32 sne; - u8 rcv_next; - }; - struct tcp_md5sig_key *md5_key; - }; - enum { - TCP_KEY_NONE = 0, - TCP_KEY_MD5 = 1, - TCP_KEY_AO = 2, - } type; -}; - -typedef u32 inet6_ehashfn_t(const struct net *, const struct in6_addr *, const u16, const struct in6_addr *, const __be16); - -struct cmsghdr { - __kernel_size_t cmsg_len; - int cmsg_level; - int cmsg_type; -}; - -struct ip6_mtuinfo { - struct sockaddr_in6 ip6m_addr; - __u32 ip6m_mtu; -}; - -struct in_pktinfo { - int ipi_ifindex; - struct in_addr ipi_spec_dst; - struct in_addr ipi_addr; -}; - -struct sock_ee_data_rfc4884 { - __u16 len; - __u8 flags; - __u8 reserved; -}; - -struct sock_extended_err { - __u32 ee_errno; - __u8 ee_origin; - __u8 ee_type; - __u8 ee_code; - __u8 ee_pad; - __u32 ee_info; - union { - __u32 ee_data; - struct sock_ee_data_rfc4884 ee_rfc4884; - }; -}; - -struct sock_exterr_skb { - union { - struct inet_skb_parm h4; - struct inet6_skb_parm h6; - } header; - struct sock_extended_err ee; - u16 addr_offset; - __be16 port; - u8 opt_stats: 1; - u8 unused: 7; -}; - -struct xfrm_dst_lookup_params { - struct net *net; - dscp_t dscp; - int oif; - xfrm_address_t *saddr; - xfrm_address_t *daddr; - u32 mark; - __u8 ipproto; - union flowi_uli uli; -}; - -struct xfrm_policy_afinfo { - struct dst_ops *dst_ops; - struct dst_entry * (*dst_lookup)(const struct xfrm_dst_lookup_params *); - int (*get_saddr)(xfrm_address_t *, const struct xfrm_dst_lookup_params *); - int (*fill_dst)(struct xfrm_dst *, struct net_device *, const struct flowi *); - struct dst_entry * (*blackhole_route)(struct net *, struct dst_entry *); -}; - -enum { - FRA_UNSPEC = 0, - FRA_DST = 1, - FRA_SRC = 2, - FRA_IIFNAME = 3, - FRA_GOTO = 4, - FRA_UNUSED2 = 5, - FRA_PRIORITY = 6, - FRA_UNUSED3 = 7, - FRA_UNUSED4 = 8, - FRA_UNUSED5 = 9, - FRA_FWMARK = 10, - FRA_FLOW = 11, - FRA_TUN_ID = 12, - FRA_SUPPRESS_IFGROUP = 13, - FRA_SUPPRESS_PREFIXLEN = 14, - FRA_TABLE = 15, - FRA_FWMASK = 16, - FRA_OIFNAME = 17, - FRA_PAD = 18, - FRA_L3MDEV = 19, - FRA_UID_RANGE = 20, - FRA_PROTOCOL = 21, - FRA_IP_PROTO = 22, - FRA_SPORT_RANGE = 23, - FRA_DPORT_RANGE = 24, - FRA_DSCP = 25, - FRA_FLOWLABEL = 26, - FRA_FLOWLABEL_MASK = 27, - FRA_SPORT_MASK = 28, - FRA_DPORT_MASK = 29, - FRA_DSCP_MASK = 30, - __FRA_MAX = 31, -}; - -enum { - FR_ACT_UNSPEC = 0, - FR_ACT_TO_TBL = 1, - FR_ACT_GOTO = 2, - FR_ACT_NOP = 3, - FR_ACT_RES3 = 4, - FR_ACT_RES4 = 5, - FR_ACT_BLACKHOLE = 6, - FR_ACT_UNREACHABLE = 7, - FR_ACT_PROHIBIT = 8, - __FR_ACT_MAX = 9, -}; - -struct fib6_rule { - struct fib_rule common; - struct rt6key src; - struct rt6key dst; - __be32 flowlabel; - __be32 flowlabel_mask; - dscp_t dscp; - dscp_t dscp_mask; - u8 dscp_full: 1; -}; - -struct seg6_pernet_data { - struct mutex lock; - struct in6_addr *tun_src; - struct rhashtable hmac_infos; -}; - -struct ipv6_sr_hdr { - __u8 nexthdr; - __u8 hdrlen; - __u8 type; - __u8 segments_left; - __u8 first_segment; - __u8 flags; - __u16 tag; - struct in6_addr segments[0]; -}; - -enum { - SEG6_IPTUNNEL_UNSPEC = 0, - SEG6_IPTUNNEL_SRH = 1, - __SEG6_IPTUNNEL_MAX = 2, -}; - -struct seg6_iptunnel_encap { - int mode; - struct ipv6_sr_hdr srh[0]; -}; - -enum { - SEG6_IPTUN_MODE_INLINE = 0, - SEG6_IPTUN_MODE_ENCAP = 1, - SEG6_IPTUN_MODE_L2ENCAP = 2, - SEG6_IPTUN_MODE_ENCAP_RED = 3, - SEG6_IPTUN_MODE_L2ENCAP_RED = 4, -}; - -struct seg6_lwt { - struct dst_cache cache_input; - struct dst_cache cache_output; - struct seg6_iptunnel_encap tuninfo[0]; -}; - -struct mld_msg { - struct icmp6hdr mld_hdr; - struct in6_addr mld_mca; -}; - -enum genl_validate_flags { - GENL_DONT_VALIDATE_STRICT = 1, - GENL_DONT_VALIDATE_DUMP = 2, - GENL_DONT_VALIDATE_DUMP_STRICT = 4, -}; - -enum devlink_command { - DEVLINK_CMD_UNSPEC = 0, - DEVLINK_CMD_GET = 1, - DEVLINK_CMD_SET = 2, - DEVLINK_CMD_NEW = 3, - DEVLINK_CMD_DEL = 4, - DEVLINK_CMD_PORT_GET = 5, - DEVLINK_CMD_PORT_SET = 6, - DEVLINK_CMD_PORT_NEW = 7, - DEVLINK_CMD_PORT_DEL = 8, - DEVLINK_CMD_PORT_SPLIT = 9, - DEVLINK_CMD_PORT_UNSPLIT = 10, - DEVLINK_CMD_SB_GET = 11, - DEVLINK_CMD_SB_SET = 12, - DEVLINK_CMD_SB_NEW = 13, - DEVLINK_CMD_SB_DEL = 14, - DEVLINK_CMD_SB_POOL_GET = 15, - DEVLINK_CMD_SB_POOL_SET = 16, - DEVLINK_CMD_SB_POOL_NEW = 17, - DEVLINK_CMD_SB_POOL_DEL = 18, - DEVLINK_CMD_SB_PORT_POOL_GET = 19, - DEVLINK_CMD_SB_PORT_POOL_SET = 20, - DEVLINK_CMD_SB_PORT_POOL_NEW = 21, - DEVLINK_CMD_SB_PORT_POOL_DEL = 22, - DEVLINK_CMD_SB_TC_POOL_BIND_GET = 23, - DEVLINK_CMD_SB_TC_POOL_BIND_SET = 24, - DEVLINK_CMD_SB_TC_POOL_BIND_NEW = 25, - DEVLINK_CMD_SB_TC_POOL_BIND_DEL = 26, - DEVLINK_CMD_SB_OCC_SNAPSHOT = 27, - DEVLINK_CMD_SB_OCC_MAX_CLEAR = 28, - DEVLINK_CMD_ESWITCH_GET = 29, - DEVLINK_CMD_ESWITCH_SET = 30, - DEVLINK_CMD_DPIPE_TABLE_GET = 31, - DEVLINK_CMD_DPIPE_ENTRIES_GET = 32, - DEVLINK_CMD_DPIPE_HEADERS_GET = 33, - DEVLINK_CMD_DPIPE_TABLE_COUNTERS_SET = 34, - DEVLINK_CMD_RESOURCE_SET = 35, - DEVLINK_CMD_RESOURCE_DUMP = 36, - DEVLINK_CMD_RELOAD = 37, - DEVLINK_CMD_PARAM_GET = 38, - DEVLINK_CMD_PARAM_SET = 39, - DEVLINK_CMD_PARAM_NEW = 40, - DEVLINK_CMD_PARAM_DEL = 41, - DEVLINK_CMD_REGION_GET = 42, - DEVLINK_CMD_REGION_SET = 43, - DEVLINK_CMD_REGION_NEW = 44, - DEVLINK_CMD_REGION_DEL = 45, - DEVLINK_CMD_REGION_READ = 46, - DEVLINK_CMD_PORT_PARAM_GET = 47, - DEVLINK_CMD_PORT_PARAM_SET = 48, - DEVLINK_CMD_PORT_PARAM_NEW = 49, - DEVLINK_CMD_PORT_PARAM_DEL = 50, - DEVLINK_CMD_INFO_GET = 51, - DEVLINK_CMD_HEALTH_REPORTER_GET = 52, - DEVLINK_CMD_HEALTH_REPORTER_SET = 53, - DEVLINK_CMD_HEALTH_REPORTER_RECOVER = 54, - DEVLINK_CMD_HEALTH_REPORTER_DIAGNOSE = 55, - DEVLINK_CMD_HEALTH_REPORTER_DUMP_GET = 56, - DEVLINK_CMD_HEALTH_REPORTER_DUMP_CLEAR = 57, - DEVLINK_CMD_FLASH_UPDATE = 58, - DEVLINK_CMD_FLASH_UPDATE_END = 59, - DEVLINK_CMD_FLASH_UPDATE_STATUS = 60, - DEVLINK_CMD_TRAP_GET = 61, - DEVLINK_CMD_TRAP_SET = 62, - DEVLINK_CMD_TRAP_NEW = 63, - DEVLINK_CMD_TRAP_DEL = 64, - DEVLINK_CMD_TRAP_GROUP_GET = 65, - DEVLINK_CMD_TRAP_GROUP_SET = 66, - DEVLINK_CMD_TRAP_GROUP_NEW = 67, - DEVLINK_CMD_TRAP_GROUP_DEL = 68, - DEVLINK_CMD_TRAP_POLICER_GET = 69, - DEVLINK_CMD_TRAP_POLICER_SET = 70, - DEVLINK_CMD_TRAP_POLICER_NEW = 71, - DEVLINK_CMD_TRAP_POLICER_DEL = 72, - DEVLINK_CMD_HEALTH_REPORTER_TEST = 73, - DEVLINK_CMD_RATE_GET = 74, - DEVLINK_CMD_RATE_SET = 75, - DEVLINK_CMD_RATE_NEW = 76, - DEVLINK_CMD_RATE_DEL = 77, - DEVLINK_CMD_LINECARD_GET = 78, - DEVLINK_CMD_LINECARD_SET = 79, - DEVLINK_CMD_LINECARD_NEW = 80, - DEVLINK_CMD_LINECARD_DEL = 81, - DEVLINK_CMD_SELFTESTS_GET = 82, - DEVLINK_CMD_SELFTESTS_RUN = 83, - DEVLINK_CMD_NOTIFY_FILTER_SET = 84, - __DEVLINK_CMD_MAX = 85, - DEVLINK_CMD_MAX = 84, -}; - -enum devlink_attr_selftest_id { - DEVLINK_ATTR_SELFTEST_ID_UNSPEC = 0, - DEVLINK_ATTR_SELFTEST_ID_FLASH = 1, - __DEVLINK_ATTR_SELFTEST_ID_MAX = 2, - DEVLINK_ATTR_SELFTEST_ID_MAX = 1, -}; - -enum devlink_var_attr_type { - DEVLINK_VAR_ATTR_TYPE_U8 = 1, - DEVLINK_VAR_ATTR_TYPE_U16 = 2, - DEVLINK_VAR_ATTR_TYPE_U32 = 3, - DEVLINK_VAR_ATTR_TYPE_U64 = 4, - DEVLINK_VAR_ATTR_TYPE_STRING = 5, - DEVLINK_VAR_ATTR_TYPE_FLAG = 6, - DEVLINK_VAR_ATTR_TYPE_NUL_STRING = 10, - DEVLINK_VAR_ATTR_TYPE_BINARY = 11, - __DEVLINK_VAR_ATTR_TYPE_CUSTOM_BASE = 128, -}; - -enum devlink_attr { - DEVLINK_ATTR_UNSPEC = 0, - DEVLINK_ATTR_BUS_NAME = 1, - DEVLINK_ATTR_DEV_NAME = 2, - DEVLINK_ATTR_PORT_INDEX = 3, - DEVLINK_ATTR_PORT_TYPE = 4, - DEVLINK_ATTR_PORT_DESIRED_TYPE = 5, - DEVLINK_ATTR_PORT_NETDEV_IFINDEX = 6, - DEVLINK_ATTR_PORT_NETDEV_NAME = 7, - DEVLINK_ATTR_PORT_IBDEV_NAME = 8, - DEVLINK_ATTR_PORT_SPLIT_COUNT = 9, - DEVLINK_ATTR_PORT_SPLIT_GROUP = 10, - DEVLINK_ATTR_SB_INDEX = 11, - DEVLINK_ATTR_SB_SIZE = 12, - DEVLINK_ATTR_SB_INGRESS_POOL_COUNT = 13, - DEVLINK_ATTR_SB_EGRESS_POOL_COUNT = 14, - DEVLINK_ATTR_SB_INGRESS_TC_COUNT = 15, - DEVLINK_ATTR_SB_EGRESS_TC_COUNT = 16, - DEVLINK_ATTR_SB_POOL_INDEX = 17, - DEVLINK_ATTR_SB_POOL_TYPE = 18, - DEVLINK_ATTR_SB_POOL_SIZE = 19, - DEVLINK_ATTR_SB_POOL_THRESHOLD_TYPE = 20, - DEVLINK_ATTR_SB_THRESHOLD = 21, - DEVLINK_ATTR_SB_TC_INDEX = 22, - DEVLINK_ATTR_SB_OCC_CUR = 23, - DEVLINK_ATTR_SB_OCC_MAX = 24, - DEVLINK_ATTR_ESWITCH_MODE = 25, - DEVLINK_ATTR_ESWITCH_INLINE_MODE = 26, - DEVLINK_ATTR_DPIPE_TABLES = 27, - DEVLINK_ATTR_DPIPE_TABLE = 28, - DEVLINK_ATTR_DPIPE_TABLE_NAME = 29, - DEVLINK_ATTR_DPIPE_TABLE_SIZE = 30, - DEVLINK_ATTR_DPIPE_TABLE_MATCHES = 31, - DEVLINK_ATTR_DPIPE_TABLE_ACTIONS = 32, - DEVLINK_ATTR_DPIPE_TABLE_COUNTERS_ENABLED = 33, - DEVLINK_ATTR_DPIPE_ENTRIES = 34, - DEVLINK_ATTR_DPIPE_ENTRY = 35, - DEVLINK_ATTR_DPIPE_ENTRY_INDEX = 36, - DEVLINK_ATTR_DPIPE_ENTRY_MATCH_VALUES = 37, - DEVLINK_ATTR_DPIPE_ENTRY_ACTION_VALUES = 38, - DEVLINK_ATTR_DPIPE_ENTRY_COUNTER = 39, - DEVLINK_ATTR_DPIPE_MATCH = 40, - DEVLINK_ATTR_DPIPE_MATCH_VALUE = 41, - DEVLINK_ATTR_DPIPE_MATCH_TYPE = 42, - DEVLINK_ATTR_DPIPE_ACTION = 43, - DEVLINK_ATTR_DPIPE_ACTION_VALUE = 44, - DEVLINK_ATTR_DPIPE_ACTION_TYPE = 45, - DEVLINK_ATTR_DPIPE_VALUE = 46, - DEVLINK_ATTR_DPIPE_VALUE_MASK = 47, - DEVLINK_ATTR_DPIPE_VALUE_MAPPING = 48, - DEVLINK_ATTR_DPIPE_HEADERS = 49, - DEVLINK_ATTR_DPIPE_HEADER = 50, - DEVLINK_ATTR_DPIPE_HEADER_NAME = 51, - DEVLINK_ATTR_DPIPE_HEADER_ID = 52, - DEVLINK_ATTR_DPIPE_HEADER_FIELDS = 53, - DEVLINK_ATTR_DPIPE_HEADER_GLOBAL = 54, - DEVLINK_ATTR_DPIPE_HEADER_INDEX = 55, - DEVLINK_ATTR_DPIPE_FIELD = 56, - DEVLINK_ATTR_DPIPE_FIELD_NAME = 57, - DEVLINK_ATTR_DPIPE_FIELD_ID = 58, - DEVLINK_ATTR_DPIPE_FIELD_BITWIDTH = 59, - DEVLINK_ATTR_DPIPE_FIELD_MAPPING_TYPE = 60, - DEVLINK_ATTR_PAD = 61, - DEVLINK_ATTR_ESWITCH_ENCAP_MODE = 62, - DEVLINK_ATTR_RESOURCE_LIST = 63, - DEVLINK_ATTR_RESOURCE = 64, - DEVLINK_ATTR_RESOURCE_NAME = 65, - DEVLINK_ATTR_RESOURCE_ID = 66, - DEVLINK_ATTR_RESOURCE_SIZE = 67, - DEVLINK_ATTR_RESOURCE_SIZE_NEW = 68, - DEVLINK_ATTR_RESOURCE_SIZE_VALID = 69, - DEVLINK_ATTR_RESOURCE_SIZE_MIN = 70, - DEVLINK_ATTR_RESOURCE_SIZE_MAX = 71, - DEVLINK_ATTR_RESOURCE_SIZE_GRAN = 72, - DEVLINK_ATTR_RESOURCE_UNIT = 73, - DEVLINK_ATTR_RESOURCE_OCC = 74, - DEVLINK_ATTR_DPIPE_TABLE_RESOURCE_ID = 75, - DEVLINK_ATTR_DPIPE_TABLE_RESOURCE_UNITS = 76, - DEVLINK_ATTR_PORT_FLAVOUR = 77, - DEVLINK_ATTR_PORT_NUMBER = 78, - DEVLINK_ATTR_PORT_SPLIT_SUBPORT_NUMBER = 79, - DEVLINK_ATTR_PARAM = 80, - DEVLINK_ATTR_PARAM_NAME = 81, - DEVLINK_ATTR_PARAM_GENERIC = 82, - DEVLINK_ATTR_PARAM_TYPE = 83, - DEVLINK_ATTR_PARAM_VALUES_LIST = 84, - DEVLINK_ATTR_PARAM_VALUE = 85, - DEVLINK_ATTR_PARAM_VALUE_DATA = 86, - DEVLINK_ATTR_PARAM_VALUE_CMODE = 87, - DEVLINK_ATTR_REGION_NAME = 88, - DEVLINK_ATTR_REGION_SIZE = 89, - DEVLINK_ATTR_REGION_SNAPSHOTS = 90, - DEVLINK_ATTR_REGION_SNAPSHOT = 91, - DEVLINK_ATTR_REGION_SNAPSHOT_ID = 92, - DEVLINK_ATTR_REGION_CHUNKS = 93, - DEVLINK_ATTR_REGION_CHUNK = 94, - DEVLINK_ATTR_REGION_CHUNK_DATA = 95, - DEVLINK_ATTR_REGION_CHUNK_ADDR = 96, - DEVLINK_ATTR_REGION_CHUNK_LEN = 97, - DEVLINK_ATTR_INFO_DRIVER_NAME = 98, - DEVLINK_ATTR_INFO_SERIAL_NUMBER = 99, - DEVLINK_ATTR_INFO_VERSION_FIXED = 100, - DEVLINK_ATTR_INFO_VERSION_RUNNING = 101, - DEVLINK_ATTR_INFO_VERSION_STORED = 102, - DEVLINK_ATTR_INFO_VERSION_NAME = 103, - DEVLINK_ATTR_INFO_VERSION_VALUE = 104, - DEVLINK_ATTR_SB_POOL_CELL_SIZE = 105, - DEVLINK_ATTR_FMSG = 106, - DEVLINK_ATTR_FMSG_OBJ_NEST_START = 107, - DEVLINK_ATTR_FMSG_PAIR_NEST_START = 108, - DEVLINK_ATTR_FMSG_ARR_NEST_START = 109, - DEVLINK_ATTR_FMSG_NEST_END = 110, - DEVLINK_ATTR_FMSG_OBJ_NAME = 111, - DEVLINK_ATTR_FMSG_OBJ_VALUE_TYPE = 112, - DEVLINK_ATTR_FMSG_OBJ_VALUE_DATA = 113, - DEVLINK_ATTR_HEALTH_REPORTER = 114, - DEVLINK_ATTR_HEALTH_REPORTER_NAME = 115, - DEVLINK_ATTR_HEALTH_REPORTER_STATE = 116, - DEVLINK_ATTR_HEALTH_REPORTER_ERR_COUNT = 117, - DEVLINK_ATTR_HEALTH_REPORTER_RECOVER_COUNT = 118, - DEVLINK_ATTR_HEALTH_REPORTER_DUMP_TS = 119, - DEVLINK_ATTR_HEALTH_REPORTER_GRACEFUL_PERIOD = 120, - DEVLINK_ATTR_HEALTH_REPORTER_AUTO_RECOVER = 121, - DEVLINK_ATTR_FLASH_UPDATE_FILE_NAME = 122, - DEVLINK_ATTR_FLASH_UPDATE_COMPONENT = 123, - DEVLINK_ATTR_FLASH_UPDATE_STATUS_MSG = 124, - DEVLINK_ATTR_FLASH_UPDATE_STATUS_DONE = 125, - DEVLINK_ATTR_FLASH_UPDATE_STATUS_TOTAL = 126, - DEVLINK_ATTR_PORT_PCI_PF_NUMBER = 127, - DEVLINK_ATTR_PORT_PCI_VF_NUMBER = 128, - DEVLINK_ATTR_STATS = 129, - DEVLINK_ATTR_TRAP_NAME = 130, - DEVLINK_ATTR_TRAP_ACTION = 131, - DEVLINK_ATTR_TRAP_TYPE = 132, - DEVLINK_ATTR_TRAP_GENERIC = 133, - DEVLINK_ATTR_TRAP_METADATA = 134, - DEVLINK_ATTR_TRAP_GROUP_NAME = 135, - DEVLINK_ATTR_RELOAD_FAILED = 136, - DEVLINK_ATTR_HEALTH_REPORTER_DUMP_TS_NS = 137, - DEVLINK_ATTR_NETNS_FD = 138, - DEVLINK_ATTR_NETNS_PID = 139, - DEVLINK_ATTR_NETNS_ID = 140, - DEVLINK_ATTR_HEALTH_REPORTER_AUTO_DUMP = 141, - DEVLINK_ATTR_TRAP_POLICER_ID = 142, - DEVLINK_ATTR_TRAP_POLICER_RATE = 143, - DEVLINK_ATTR_TRAP_POLICER_BURST = 144, - DEVLINK_ATTR_PORT_FUNCTION = 145, - DEVLINK_ATTR_INFO_BOARD_SERIAL_NUMBER = 146, - DEVLINK_ATTR_PORT_LANES = 147, - DEVLINK_ATTR_PORT_SPLITTABLE = 148, - DEVLINK_ATTR_PORT_EXTERNAL = 149, - DEVLINK_ATTR_PORT_CONTROLLER_NUMBER = 150, - DEVLINK_ATTR_FLASH_UPDATE_STATUS_TIMEOUT = 151, - DEVLINK_ATTR_FLASH_UPDATE_OVERWRITE_MASK = 152, - DEVLINK_ATTR_RELOAD_ACTION = 153, - DEVLINK_ATTR_RELOAD_ACTIONS_PERFORMED = 154, - DEVLINK_ATTR_RELOAD_LIMITS = 155, - DEVLINK_ATTR_DEV_STATS = 156, - DEVLINK_ATTR_RELOAD_STATS = 157, - DEVLINK_ATTR_RELOAD_STATS_ENTRY = 158, - DEVLINK_ATTR_RELOAD_STATS_LIMIT = 159, - DEVLINK_ATTR_RELOAD_STATS_VALUE = 160, - DEVLINK_ATTR_REMOTE_RELOAD_STATS = 161, - DEVLINK_ATTR_RELOAD_ACTION_INFO = 162, - DEVLINK_ATTR_RELOAD_ACTION_STATS = 163, - DEVLINK_ATTR_PORT_PCI_SF_NUMBER = 164, - DEVLINK_ATTR_RATE_TYPE = 165, - DEVLINK_ATTR_RATE_TX_SHARE = 166, - DEVLINK_ATTR_RATE_TX_MAX = 167, - DEVLINK_ATTR_RATE_NODE_NAME = 168, - DEVLINK_ATTR_RATE_PARENT_NODE_NAME = 169, - DEVLINK_ATTR_REGION_MAX_SNAPSHOTS = 170, - DEVLINK_ATTR_LINECARD_INDEX = 171, - DEVLINK_ATTR_LINECARD_STATE = 172, - DEVLINK_ATTR_LINECARD_TYPE = 173, - DEVLINK_ATTR_LINECARD_SUPPORTED_TYPES = 174, - DEVLINK_ATTR_NESTED_DEVLINK = 175, - DEVLINK_ATTR_SELFTESTS = 176, - DEVLINK_ATTR_RATE_TX_PRIORITY = 177, - DEVLINK_ATTR_RATE_TX_WEIGHT = 178, - DEVLINK_ATTR_REGION_DIRECT = 179, - DEVLINK_ATTR_RATE_TC_BWS = 180, - __DEVLINK_ATTR_MAX = 181, - DEVLINK_ATTR_MAX = 180, -}; - -enum devlink_rate_tc_attr { - DEVLINK_RATE_TC_ATTR_UNSPEC = 0, - DEVLINK_RATE_TC_ATTR_INDEX = 1, - DEVLINK_RATE_TC_ATTR_BW = 2, - __DEVLINK_RATE_TC_ATTR_MAX = 3, - DEVLINK_RATE_TC_ATTR_MAX = 2, -}; - -enum devlink_port_function_attr { - DEVLINK_PORT_FUNCTION_ATTR_UNSPEC = 0, - DEVLINK_PORT_FUNCTION_ATTR_HW_ADDR = 1, - DEVLINK_PORT_FN_ATTR_STATE = 2, - DEVLINK_PORT_FN_ATTR_OPSTATE = 3, - DEVLINK_PORT_FN_ATTR_CAPS = 4, - DEVLINK_PORT_FN_ATTR_DEVLINK = 5, - DEVLINK_PORT_FN_ATTR_MAX_IO_EQS = 6, - __DEVLINK_PORT_FUNCTION_ATTR_MAX = 7, - DEVLINK_PORT_FUNCTION_ATTR_MAX = 6, -}; - -enum devlink_eswitch_encap_mode { - DEVLINK_ESWITCH_ENCAP_MODE_NONE = 0, - DEVLINK_ESWITCH_ENCAP_MODE_BASIC = 1, -}; - -enum devlink_selftest_status { - DEVLINK_SELFTEST_STATUS_SKIP = 0, - DEVLINK_SELFTEST_STATUS_PASS = 1, - DEVLINK_SELFTEST_STATUS_FAIL = 2, -}; - -enum devlink_trap_action { - DEVLINK_TRAP_ACTION_DROP = 0, - DEVLINK_TRAP_ACTION_TRAP = 1, - DEVLINK_TRAP_ACTION_MIRROR = 2, -}; - -enum devlink_trap_type { - DEVLINK_TRAP_TYPE_DROP = 0, - DEVLINK_TRAP_TYPE_EXCEPTION = 1, - DEVLINK_TRAP_TYPE_CONTROL = 2, -}; - -enum devlink_reload_action { - DEVLINK_RELOAD_ACTION_UNSPEC = 0, - DEVLINK_RELOAD_ACTION_DRIVER_REINIT = 1, - DEVLINK_RELOAD_ACTION_FW_ACTIVATE = 2, - __DEVLINK_RELOAD_ACTION_MAX = 3, - DEVLINK_RELOAD_ACTION_MAX = 2, -}; - -enum devlink_reload_limit { - DEVLINK_RELOAD_LIMIT_UNSPEC = 0, - DEVLINK_RELOAD_LIMIT_NO_RESET = 1, - __DEVLINK_RELOAD_LIMIT_MAX = 2, - DEVLINK_RELOAD_LIMIT_MAX = 1, -}; - -enum devlink_dpipe_field_mapping_type { - DEVLINK_DPIPE_FIELD_MAPPING_TYPE_NONE = 0, - DEVLINK_DPIPE_FIELD_MAPPING_TYPE_IFINDEX = 1, -}; - -struct devlink_dev_stats { - u32 reload_stats[6]; - u32 remote_reload_stats[6]; -}; - -struct devlink_dpipe_headers; - -struct devlink_ops; - -struct devlink_rel; - -struct devlink { - u32 index; - struct xarray ports; - struct list_head rate_list; - struct list_head sb_list; - struct list_head dpipe_table_list; - struct list_head resource_list; - struct xarray params; - struct list_head region_list; - struct list_head reporter_list; - struct devlink_dpipe_headers *dpipe_headers; - struct list_head trap_list; - struct list_head trap_group_list; - struct list_head trap_policer_list; - struct list_head linecard_list; - const struct devlink_ops *ops; - struct xarray snapshot_ids; - struct devlink_dev_stats stats; - struct device *dev; - possible_net_t _net; - struct mutex lock; - struct lock_class_key lock_key; - u8 reload_failed: 1; - refcount_t refcount; - struct rcu_work rwork; - struct devlink_rel *rel; - struct xarray nested_rels; - char priv[0]; -}; - -struct devlink_port_new_attrs { - enum devlink_port_flavour flavour; - unsigned int port_index; - u32 controller; - u32 sfnum; - u16 pfnum; - u8 port_index_valid: 1; - u8 controller_valid: 1; - u8 sfnum_valid: 1; -}; - -struct devlink_dpipe_field { - const char *name; - unsigned int id; - unsigned int bitwidth; - enum devlink_dpipe_field_mapping_type mapping_type; -}; - -struct devlink_dpipe_header { - const char *name; - unsigned int id; - struct devlink_dpipe_field *fields; - unsigned int fields_count; - bool global; -}; - -struct devlink_dpipe_headers { - struct devlink_dpipe_header **headers; - unsigned int headers_count; -}; - -struct devlink_flash_update_params { - const struct firmware *fw; - const char *component; - u32 overwrite_mask; -}; - -struct devlink_trap_policer { - u32 id; - u64 init_rate; - u64 init_burst; - u64 max_rate; - u64 min_rate; - u64 max_burst; - u64 min_burst; -}; - -struct devlink_trap_group { - const char *name; - u16 id; - bool generic; - u32 init_policer_id; -}; - -struct devlink_trap { - enum devlink_trap_type type; - enum devlink_trap_action init_action; - bool generic; - u16 id; - const char *name; - u16 init_group_id; - u32 metadata_cap; -}; - -struct devlink_ops { - u32 supported_flash_update_params; - long unsigned int reload_actions; - long unsigned int reload_limits; - int (*reload_down)(struct devlink *, bool, enum devlink_reload_action, enum devlink_reload_limit, struct netlink_ext_ack *); - int (*reload_up)(struct devlink *, enum devlink_reload_action, enum devlink_reload_limit, u32 *, struct netlink_ext_ack *); - int (*sb_pool_get)(struct devlink *, unsigned int, u16, struct devlink_sb_pool_info *); - int (*sb_pool_set)(struct devlink *, unsigned int, u16, u32, enum devlink_sb_threshold_type, struct netlink_ext_ack *); - int (*sb_port_pool_get)(struct devlink_port *, unsigned int, u16, u32 *); - int (*sb_port_pool_set)(struct devlink_port *, unsigned int, u16, u32, struct netlink_ext_ack *); - int (*sb_tc_pool_bind_get)(struct devlink_port *, unsigned int, u16, enum devlink_sb_pool_type, u16 *, u32 *); - int (*sb_tc_pool_bind_set)(struct devlink_port *, unsigned int, u16, enum devlink_sb_pool_type, u16, u32, struct netlink_ext_ack *); - int (*sb_occ_snapshot)(struct devlink *, unsigned int); - int (*sb_occ_max_clear)(struct devlink *, unsigned int); - int (*sb_occ_port_pool_get)(struct devlink_port *, unsigned int, u16, u32 *, u32 *); - int (*sb_occ_tc_port_bind_get)(struct devlink_port *, unsigned int, u16, enum devlink_sb_pool_type, u32 *, u32 *); - int (*eswitch_mode_get)(struct devlink *, u16 *); - int (*eswitch_mode_set)(struct devlink *, u16, struct netlink_ext_ack *); - int (*eswitch_inline_mode_get)(struct devlink *, u8 *); - int (*eswitch_inline_mode_set)(struct devlink *, u8, struct netlink_ext_ack *); - int (*eswitch_encap_mode_get)(struct devlink *, enum devlink_eswitch_encap_mode *); - int (*eswitch_encap_mode_set)(struct devlink *, enum devlink_eswitch_encap_mode, struct netlink_ext_ack *); - int (*info_get)(struct devlink *, struct devlink_info_req *, struct netlink_ext_ack *); - int (*flash_update)(struct devlink *, struct devlink_flash_update_params *, struct netlink_ext_ack *); - int (*trap_init)(struct devlink *, const struct devlink_trap *, void *); - void (*trap_fini)(struct devlink *, const struct devlink_trap *, void *); - int (*trap_action_set)(struct devlink *, const struct devlink_trap *, enum devlink_trap_action, struct netlink_ext_ack *); - int (*trap_group_init)(struct devlink *, const struct devlink_trap_group *); - int (*trap_group_set)(struct devlink *, const struct devlink_trap_group *, const struct devlink_trap_policer *, struct netlink_ext_ack *); - int (*trap_group_action_set)(struct devlink *, const struct devlink_trap_group *, enum devlink_trap_action, struct netlink_ext_ack *); - int (*trap_drop_counter_get)(struct devlink *, const struct devlink_trap *, u64 *); - int (*trap_policer_init)(struct devlink *, const struct devlink_trap_policer *); - void (*trap_policer_fini)(struct devlink *, const struct devlink_trap_policer *); - int (*trap_policer_set)(struct devlink *, const struct devlink_trap_policer *, u64, u64, struct netlink_ext_ack *); - int (*trap_policer_counter_get)(struct devlink *, const struct devlink_trap_policer *, u64 *); - int (*port_new)(struct devlink *, const struct devlink_port_new_attrs *, struct netlink_ext_ack *, struct devlink_port **); - int (*rate_leaf_tx_share_set)(struct devlink_rate *, void *, u64, struct netlink_ext_ack *); - int (*rate_leaf_tx_max_set)(struct devlink_rate *, void *, u64, struct netlink_ext_ack *); - int (*rate_leaf_tx_priority_set)(struct devlink_rate *, void *, u32, struct netlink_ext_ack *); - int (*rate_leaf_tx_weight_set)(struct devlink_rate *, void *, u32, struct netlink_ext_ack *); - int (*rate_leaf_tc_bw_set)(struct devlink_rate *, void *, u32 *, struct netlink_ext_ack *); - int (*rate_node_tx_share_set)(struct devlink_rate *, void *, u64, struct netlink_ext_ack *); - int (*rate_node_tx_max_set)(struct devlink_rate *, void *, u64, struct netlink_ext_ack *); - int (*rate_node_tx_priority_set)(struct devlink_rate *, void *, u32, struct netlink_ext_ack *); - int (*rate_node_tx_weight_set)(struct devlink_rate *, void *, u32, struct netlink_ext_ack *); - int (*rate_node_tc_bw_set)(struct devlink_rate *, void *, u32 *, struct netlink_ext_ack *); - int (*rate_node_new)(struct devlink_rate *, void **, struct netlink_ext_ack *); - int (*rate_node_del)(struct devlink_rate *, void *, struct netlink_ext_ack *); - int (*rate_leaf_parent_set)(struct devlink_rate *, struct devlink_rate *, void *, void *, struct netlink_ext_ack *); - int (*rate_node_parent_set)(struct devlink_rate *, struct devlink_rate *, void *, void *, struct netlink_ext_ack *); - bool (*selftest_check)(struct devlink *, unsigned int, struct netlink_ext_ack *); - enum devlink_selftest_status (*selftest_run)(struct devlink *, unsigned int, struct netlink_ext_ack *); -}; - -struct devlink_nl_dump_state { - long unsigned int instance; - int idx; - union { - struct { - u64 start_offset; - }; - struct { - u64 dump_ts; - }; - }; -}; - -typedef int devlink_nl_dump_one_func_t(struct sk_buff *, struct devlink *, struct netlink_callback *, int); - -struct devlink_sb { - struct list_head list; - unsigned int index; - u32 size; - u16 ingress_pools_count; - u16 egress_pools_count; - u16 ingress_tc_count; - u16 egress_tc_count; -}; - -enum devlink_param_type { - DEVLINK_PARAM_TYPE_U8 = 1, - DEVLINK_PARAM_TYPE_U16 = 2, - DEVLINK_PARAM_TYPE_U32 = 3, - DEVLINK_PARAM_TYPE_U64 = 4, - DEVLINK_PARAM_TYPE_STRING = 5, - DEVLINK_PARAM_TYPE_BOOL = 6, -}; - -struct devlink_param { - u32 id; - const char *name; - bool generic; - enum devlink_param_type type; - long unsigned int supported_cmodes; - int (*get)(struct devlink *, u32, struct devlink_param_gset_ctx *); - int (*set)(struct devlink *, u32, struct devlink_param_gset_ctx *, struct netlink_ext_ack *); - int (*validate)(struct devlink *, u32, union devlink_param_value, struct netlink_ext_ack *); -}; - -struct devlink_param_item { - struct list_head list; - const struct devlink_param *param; - union devlink_param_value driverinit_value; - bool driverinit_value_valid; - union devlink_param_value driverinit_value_new; - bool driverinit_value_new_valid; -}; - -enum devlink_param_generic_id { - DEVLINK_PARAM_GENERIC_ID_INT_ERR_RESET = 0, - DEVLINK_PARAM_GENERIC_ID_MAX_MACS = 1, - DEVLINK_PARAM_GENERIC_ID_ENABLE_SRIOV = 2, - DEVLINK_PARAM_GENERIC_ID_REGION_SNAPSHOT = 3, - DEVLINK_PARAM_GENERIC_ID_IGNORE_ARI = 4, - DEVLINK_PARAM_GENERIC_ID_MSIX_VEC_PER_PF_MAX = 5, - DEVLINK_PARAM_GENERIC_ID_MSIX_VEC_PER_PF_MIN = 6, - DEVLINK_PARAM_GENERIC_ID_FW_LOAD_POLICY = 7, - DEVLINK_PARAM_GENERIC_ID_RESET_DEV_ON_DRV_PROBE = 8, - DEVLINK_PARAM_GENERIC_ID_ENABLE_ROCE = 9, - DEVLINK_PARAM_GENERIC_ID_ENABLE_REMOTE_DEV_RESET = 10, - DEVLINK_PARAM_GENERIC_ID_ENABLE_ETH = 11, - DEVLINK_PARAM_GENERIC_ID_ENABLE_RDMA = 12, - DEVLINK_PARAM_GENERIC_ID_ENABLE_VNET = 13, - DEVLINK_PARAM_GENERIC_ID_ENABLE_IWARP = 14, - DEVLINK_PARAM_GENERIC_ID_IO_EQ_SIZE = 15, - DEVLINK_PARAM_GENERIC_ID_EVENT_EQ_SIZE = 16, - DEVLINK_PARAM_GENERIC_ID_ENABLE_PHC = 17, - DEVLINK_PARAM_GENERIC_ID_CLOCK_ID = 18, - __DEVLINK_PARAM_GENERIC_ID_MAX = 19, - DEVLINK_PARAM_GENERIC_ID_MAX = 18, -}; - -enum devlink_multicast_groups { - DEVLINK_MCGRP_CONFIG = 0, -}; - -struct devlink_obj_desc { - struct callback_head rcu; - const char *bus_name; - const char *dev_name; - unsigned int port_index; - bool port_index_valid; - long int data[0]; -}; - -enum devlink_health_reporter_state { - DEVLINK_HEALTH_REPORTER_STATE_HEALTHY = 0, - DEVLINK_HEALTH_REPORTER_STATE_ERROR = 1, -}; - -struct devlink_health_reporter; - -struct devlink_fmsg; - -struct devlink_health_reporter_ops { - char *name; - int (*recover)(struct devlink_health_reporter *, void *, struct netlink_ext_ack *); - int (*dump)(struct devlink_health_reporter *, struct devlink_fmsg *, void *, struct netlink_ext_ack *); - int (*diagnose)(struct devlink_health_reporter *, struct devlink_fmsg *, struct netlink_ext_ack *); - int (*test)(struct devlink_health_reporter *, struct netlink_ext_ack *); -}; - -struct devlink_health_reporter { - struct list_head list; - void *priv; - const struct devlink_health_reporter_ops *ops; - struct devlink *devlink; - struct devlink_port *devlink_port; - struct devlink_fmsg *dump_fmsg; - u64 graceful_period; - bool auto_recover; - bool auto_dump; - u8 health_state; - u64 dump_ts; - u64 dump_real_ts; - u64 error_count; - u64 recovery_count; - u64 last_recovery_ts; -}; - -struct devlink_fmsg { - struct list_head item_list; - int err; - bool putting_binary; -}; - -struct devlink_fmsg_item { - struct list_head list; - int attrtype; - u8 nla_type; - u16 len; - int value[0]; -}; - -enum nl80211_iftype { - NL80211_IFTYPE_UNSPECIFIED = 0, - NL80211_IFTYPE_ADHOC = 1, - NL80211_IFTYPE_STATION = 2, - NL80211_IFTYPE_AP = 3, - NL80211_IFTYPE_AP_VLAN = 4, - NL80211_IFTYPE_WDS = 5, - NL80211_IFTYPE_MONITOR = 6, - NL80211_IFTYPE_MESH_POINT = 7, - NL80211_IFTYPE_P2P_CLIENT = 8, - NL80211_IFTYPE_P2P_GO = 9, - NL80211_IFTYPE_P2P_DEVICE = 10, - NL80211_IFTYPE_OCB = 11, - NL80211_IFTYPE_NAN = 12, - NUM_NL80211_IFTYPES = 13, - NL80211_IFTYPE_MAX = 12, -}; - -struct cfg80211_conn; - -struct cfg80211_cached_keys; - -enum ieee80211_bss_type { - IEEE80211_BSS_TYPE_ESS = 0, - IEEE80211_BSS_TYPE_PBSS = 1, - IEEE80211_BSS_TYPE_IBSS = 2, - IEEE80211_BSS_TYPE_MBSS = 3, - IEEE80211_BSS_TYPE_ANY = 4, -}; - -enum nl80211_chan_width { - NL80211_CHAN_WIDTH_20_NOHT = 0, - NL80211_CHAN_WIDTH_20 = 1, - NL80211_CHAN_WIDTH_40 = 2, - NL80211_CHAN_WIDTH_80 = 3, - NL80211_CHAN_WIDTH_80P80 = 4, - NL80211_CHAN_WIDTH_160 = 5, - NL80211_CHAN_WIDTH_5 = 6, - NL80211_CHAN_WIDTH_10 = 7, - NL80211_CHAN_WIDTH_1 = 8, - NL80211_CHAN_WIDTH_2 = 9, - NL80211_CHAN_WIDTH_4 = 10, - NL80211_CHAN_WIDTH_8 = 11, - NL80211_CHAN_WIDTH_16 = 12, - NL80211_CHAN_WIDTH_320 = 13, -}; - -enum ieee80211_edmg_bw_config { - IEEE80211_EDMG_BW_CONFIG_4 = 4, - IEEE80211_EDMG_BW_CONFIG_5 = 5, - IEEE80211_EDMG_BW_CONFIG_6 = 6, - IEEE80211_EDMG_BW_CONFIG_7 = 7, - IEEE80211_EDMG_BW_CONFIG_8 = 8, - IEEE80211_EDMG_BW_CONFIG_9 = 9, - IEEE80211_EDMG_BW_CONFIG_10 = 10, - IEEE80211_EDMG_BW_CONFIG_11 = 11, - IEEE80211_EDMG_BW_CONFIG_12 = 12, - IEEE80211_EDMG_BW_CONFIG_13 = 13, - IEEE80211_EDMG_BW_CONFIG_14 = 14, - IEEE80211_EDMG_BW_CONFIG_15 = 15, -}; - -struct ieee80211_edmg { - u8 channels; - enum ieee80211_edmg_bw_config bw_config; -}; - -struct ieee80211_channel; - -struct cfg80211_chan_def { - struct ieee80211_channel *chan; - enum nl80211_chan_width width; - u32 center_freq1; - u32 center_freq2; - struct ieee80211_edmg edmg; - u16 freq1_offset; - u16 punctured; -}; - -struct ieee80211_mcs_info { - u8 rx_mask[10]; - __le16 rx_highest; - u8 tx_params; - u8 reserved[3]; -}; - -struct ieee80211_ht_cap { - __le16 cap_info; - u8 ampdu_params_info; - struct ieee80211_mcs_info mcs; - __le16 extended_ht_cap_info; - __le32 tx_BF_cap_info; - u8 antenna_selection_info; -} __attribute__((packed)); - -struct key_params; - -struct cfg80211_ibss_params { - const u8 *ssid; - const u8 *bssid; - struct cfg80211_chan_def chandef; - const u8 *ie; - u8 ssid_len; - u8 ie_len; - u16 beacon_interval; - u32 basic_rates; - bool channel_fixed; - bool privacy; - bool control_port; - bool control_port_over_nl80211; - bool userspace_handles_dfs; - int mcast_rate[6]; - struct ieee80211_ht_cap ht_capa; - struct ieee80211_ht_cap ht_capa_mask; - struct key_params *wep_keys; - int wep_tx_key; -}; - -enum nl80211_auth_type { - NL80211_AUTHTYPE_OPEN_SYSTEM = 0, - NL80211_AUTHTYPE_SHARED_KEY = 1, - NL80211_AUTHTYPE_FT = 2, - NL80211_AUTHTYPE_NETWORK_EAP = 3, - NL80211_AUTHTYPE_SAE = 4, - NL80211_AUTHTYPE_FILS_SK = 5, - NL80211_AUTHTYPE_FILS_SK_PFS = 6, - NL80211_AUTHTYPE_FILS_PK = 7, - __NL80211_AUTHTYPE_NUM = 8, - NL80211_AUTHTYPE_MAX = 7, - NL80211_AUTHTYPE_AUTOMATIC = 8, -}; - -enum nl80211_mfp { - NL80211_MFP_NO = 0, - NL80211_MFP_REQUIRED = 1, - NL80211_MFP_OPTIONAL = 2, -}; - -enum nl80211_sae_pwe_mechanism { - NL80211_SAE_PWE_UNSPECIFIED = 0, - NL80211_SAE_PWE_HUNT_AND_PECK = 1, - NL80211_SAE_PWE_HASH_TO_ELEMENT = 2, - NL80211_SAE_PWE_BOTH = 3, -}; - -struct cfg80211_crypto_settings { - u32 wpa_versions; - u32 cipher_group; - int n_ciphers_pairwise; - u32 ciphers_pairwise[5]; - int n_akm_suites; - u32 akm_suites[10]; - bool control_port; - __be16 control_port_ethertype; - bool control_port_no_encrypt; - bool control_port_over_nl80211; - bool control_port_no_preauth; - const u8 *psk; - const u8 *sae_pwd; - u8 sae_pwd_len; - enum nl80211_sae_pwe_mechanism sae_pwe; -}; - -struct ieee80211_vht_mcs_info { - __le16 rx_mcs_map; - __le16 rx_highest; - __le16 tx_mcs_map; - __le16 tx_highest; -}; - -struct ieee80211_vht_cap { - __le32 vht_cap_info; - struct ieee80211_vht_mcs_info supp_mcs; -}; - -enum nl80211_bss_select_attr { - __NL80211_BSS_SELECT_ATTR_INVALID = 0, - NL80211_BSS_SELECT_ATTR_RSSI = 1, - NL80211_BSS_SELECT_ATTR_BAND_PREF = 2, - NL80211_BSS_SELECT_ATTR_RSSI_ADJUST = 3, - __NL80211_BSS_SELECT_ATTR_AFTER_LAST = 4, - NL80211_BSS_SELECT_ATTR_MAX = 3, -}; - -enum nl80211_band { - NL80211_BAND_2GHZ = 0, - NL80211_BAND_5GHZ = 1, - NL80211_BAND_60GHZ = 2, - NL80211_BAND_6GHZ = 3, - NL80211_BAND_S1GHZ = 4, - NL80211_BAND_LC = 5, - NUM_NL80211_BANDS = 6, -}; - -struct cfg80211_bss_select_adjust { - enum nl80211_band band; - s8 delta; -}; - -struct cfg80211_bss_selection { - enum nl80211_bss_select_attr behaviour; - union { - enum nl80211_band band_pref; - struct cfg80211_bss_select_adjust adjust; - } param; -}; - -struct cfg80211_connect_params { - struct ieee80211_channel *channel; - struct ieee80211_channel *channel_hint; - const u8 *bssid; - const u8 *bssid_hint; - const u8 *ssid; - size_t ssid_len; - enum nl80211_auth_type auth_type; - const u8 *ie; - size_t ie_len; - bool privacy; - enum nl80211_mfp mfp; - struct cfg80211_crypto_settings crypto; - const u8 *key; - u8 key_len; - u8 key_idx; - u32 flags; - int bg_scan_period; - struct ieee80211_ht_cap ht_capa; - struct ieee80211_ht_cap ht_capa_mask; - struct ieee80211_vht_cap vht_capa; - struct ieee80211_vht_cap vht_capa_mask; - bool pbss; - struct cfg80211_bss_selection bss_select; - const u8 *prev_bssid; - const u8 *fils_erp_username; - size_t fils_erp_username_len; - const u8 *fils_erp_realm; - size_t fils_erp_realm_len; - u16 fils_erp_next_seq_num; - const u8 *fils_erp_rrk; - size_t fils_erp_rrk_len; - bool want_1x; - struct ieee80211_edmg edmg; -}; - -struct wiphy; - -struct wiphy_work; - -typedef void (*wiphy_work_func_t)(struct wiphy *, struct wiphy_work *); - -struct wiphy_work { - struct list_head entry; - wiphy_work_func_t func; -}; - -struct cfg80211_cqm_config; - -struct cfg80211_internal_bss; - -struct wireless_dev { - struct wiphy *wiphy; - enum nl80211_iftype iftype; - struct list_head list; - struct net_device *netdev; - u32 identifier; - struct list_head mgmt_registrations; - u8 mgmt_registrations_need_update: 1; - bool use_4addr; - bool is_running; - bool registered; - bool registering; - short: 0; - u8 address[6]; - struct cfg80211_conn *conn; - struct cfg80211_cached_keys *connect_keys; - enum ieee80211_bss_type conn_bss_type; - u32 conn_owner_nlportid; - struct work_struct disconnect_wk; - u8 disconnect_bssid[6]; - struct list_head event_list; - spinlock_t event_lock; - u8 connected: 1; - bool ps; - int ps_timeout; - u32 ap_unexpected_nlportid; - u32 owner_nlportid; - bool nl_owner_dead; - struct { - struct cfg80211_ibss_params ibss; - struct cfg80211_connect_params connect; - struct cfg80211_cached_keys *keys; - const u8 *ie; - size_t ie_len; - u8 bssid[6]; - u8 prev_bssid[6]; - u8 ssid[32]; - s8 default_key; - s8 default_mgmt_key; - bool prev_bssid_valid; - } wext; - struct wiphy_work cqm_rssi_work; - struct cfg80211_cqm_config *cqm_config; - struct list_head pmsr_list; - spinlock_t pmsr_lock; - struct work_struct pmsr_free_wk; - long unsigned int unprot_beacon_reported; - union { - struct { - u8 connected_addr[6]; - u8 ssid[32]; - u8 ssid_len; - long: 0; - } client; - struct { - int beacon_interval; - struct cfg80211_chan_def preset_chandef; - struct cfg80211_chan_def chandef; - u8 id[32]; - u8 id_len; - u8 id_up_len; - } mesh; - struct { - struct cfg80211_chan_def preset_chandef; - u8 ssid[32]; - u8 ssid_len; - } ap; - struct { - struct cfg80211_internal_bss *current_bss; - struct cfg80211_chan_def chandef; - int beacon_interval; - u8 ssid[32]; - u8 ssid_len; - } ibss; - struct { - struct cfg80211_chan_def chandef; - } ocb; - } u; - struct { - u8 addr[6]; - union { - struct { - unsigned int beacon_interval; - struct cfg80211_chan_def chandef; - } ap; - struct { - struct cfg80211_internal_bss *current_bss; - } client; - }; - bool cac_started; - long unsigned int cac_start_time; - unsigned int cac_time_ms; - } links[15]; - u16 valid_links; - u32 radio_mask; -}; - -struct iw_param { - __s32 value; - __u8 fixed; - __u8 disabled; - __u16 flags; -}; - -struct iw_point { - void *pointer; - __u16 length; - __u16 flags; -}; - -struct iw_freq { - __s32 m; - __s16 e; - __u8 i; - __u8 flags; -}; - -struct iw_quality { - __u8 qual; - __u8 level; - __u8 noise; - __u8 updated; -}; - -struct iw_discarded { - __u32 nwid; - __u32 code; - __u32 fragment; - __u32 retries; - __u32 misc; -}; - -struct iw_missed { - __u32 beacon; -}; - -struct iw_encode_ext { - __u32 ext_flags; - __u8 tx_seq[8]; - __u8 rx_seq[8]; - struct sockaddr addr; - __u16 alg; - __u16 key_len; - __u8 key[0]; -}; - -struct iw_statistics { - __u16 status; - struct iw_quality qual; - struct iw_discarded discard; - struct iw_missed miss; -}; - -union iwreq_data { - char name[16]; - struct iw_point essid; - struct iw_param nwid; - struct iw_freq freq; - struct iw_param sens; - struct iw_param bitrate; - struct iw_param txpower; - struct iw_param rts; - struct iw_param frag; - __u32 mode; - struct iw_param retry; - struct iw_point encoding; - struct iw_param power; - struct iw_quality qual; - struct sockaddr ap_addr; - struct sockaddr addr; - struct iw_param param; - struct iw_point data; -}; - -struct iwreq { - union { - char ifrn_name[16]; - } ifr_ifrn; - union iwreq_data u; -}; - -struct iw_event { - __u16 len; - __u16 cmd; - union iwreq_data u; -}; - -struct compat_iw_point { - compat_caddr_t pointer; - __u16 length; - __u16 flags; -}; - -struct __compat_iw_event { - __u16 len; - __u16 cmd; - union { - compat_caddr_t pointer; - struct { - struct {} __empty_ptr_bytes; - __u8 ptr_bytes[0]; - }; - }; -}; - -enum nl80211_reg_initiator { - NL80211_REGDOM_SET_BY_CORE = 0, - NL80211_REGDOM_SET_BY_USER = 1, - NL80211_REGDOM_SET_BY_DRIVER = 2, - NL80211_REGDOM_SET_BY_COUNTRY_IE = 3, -}; - -enum nl80211_dfs_regions { - NL80211_DFS_UNSET = 0, - NL80211_DFS_FCC = 1, - NL80211_DFS_ETSI = 2, - NL80211_DFS_JP = 3, -}; - -enum nl80211_user_reg_hint_type { - NL80211_USER_REG_HINT_USER = 0, - NL80211_USER_REG_HINT_CELL_BASE = 1, - NL80211_USER_REG_HINT_INDOOR = 2, -}; - -enum nl80211_key_mode { - NL80211_KEY_RX_TX = 0, - NL80211_KEY_NO_TX = 1, - NL80211_KEY_SET_TX = 2, -}; - -struct nl80211_wowlan_tcp_data_seq { - __u32 start; - __u32 offset; - __u32 len; -}; - -struct nl80211_wowlan_tcp_data_token { - __u32 offset; - __u32 len; - __u8 token_stream[0]; -}; - -struct nl80211_wowlan_tcp_data_token_feature { - __u32 min_len; - __u32 max_len; - __u32 bufsize; -}; - -enum nl80211_dfs_state { - NL80211_DFS_USABLE = 0, - NL80211_DFS_UNAVAILABLE = 1, - NL80211_DFS_AVAILABLE = 2, -}; - -struct nl80211_vendor_cmd_info { - __u32 vendor_id; - __u32 subcmd; -}; - -enum nl80211_sar_type { - NL80211_SAR_TYPE_POWER = 0, - NUM_NL80211_SAR_TYPE = 1, -}; - -struct ieee80211_he_cap_elem { - u8 mac_cap_info[6]; - u8 phy_cap_info[11]; -}; - -struct ieee80211_he_mcs_nss_supp { - __le16 rx_mcs_80; - __le16 tx_mcs_80; - __le16 rx_mcs_160; - __le16 tx_mcs_160; - __le16 rx_mcs_80p80; - __le16 tx_mcs_80p80; -}; - -struct ieee80211_eht_mcs_nss_supp_20mhz_only { - union { - struct { - u8 rx_tx_mcs7_max_nss; - u8 rx_tx_mcs9_max_nss; - u8 rx_tx_mcs11_max_nss; - u8 rx_tx_mcs13_max_nss; - }; - u8 rx_tx_max_nss[4]; - }; -}; - -struct ieee80211_eht_mcs_nss_supp_bw { - union { - struct { - u8 rx_tx_mcs9_max_nss; - u8 rx_tx_mcs11_max_nss; - u8 rx_tx_mcs13_max_nss; - }; - u8 rx_tx_max_nss[3]; - }; -}; - -struct ieee80211_eht_cap_elem_fixed { - u8 mac_cap_info[2]; - u8 phy_cap_info[9]; -}; - -struct ieee80211_he_6ghz_capa { - __le16 capa; -}; - -enum environment_cap { - ENVIRON_ANY = 0, - ENVIRON_INDOOR = 1, - ENVIRON_OUTDOOR = 2, -}; - -struct regulatory_request { - struct callback_head callback_head; - int wiphy_idx; - enum nl80211_reg_initiator initiator; - enum nl80211_user_reg_hint_type user_reg_hint_type; - char alpha2[3]; - enum nl80211_dfs_regions dfs_region; - bool intersect; - bool processed; - enum environment_cap country_ie_env; - struct list_head list; -}; - -struct ieee80211_freq_range { - u32 start_freq_khz; - u32 end_freq_khz; - u32 max_bandwidth_khz; -}; - -struct ieee80211_power_rule { - u32 max_antenna_gain; - u32 max_eirp; -}; - -struct ieee80211_wmm_ac { - u16 cw_min; - u16 cw_max; - u16 cot; - u8 aifsn; -}; - -struct ieee80211_wmm_rule { - struct ieee80211_wmm_ac client[4]; - struct ieee80211_wmm_ac ap[4]; -}; - -struct ieee80211_reg_rule { - struct ieee80211_freq_range freq_range; - struct ieee80211_power_rule power_rule; - struct ieee80211_wmm_rule wmm_rule; - u32 flags; - u32 dfs_cac_ms; - bool has_wmm; - s8 psd; -}; - -struct ieee80211_regdomain { - struct callback_head callback_head; - u32 n_reg_rules; - char alpha2[3]; - enum nl80211_dfs_regions dfs_region; - struct ieee80211_reg_rule reg_rules[0]; -}; - -struct ieee80211_channel { - enum nl80211_band band; - u32 center_freq; - u16 freq_offset; - u16 hw_value; - u32 flags; - int max_antenna_gain; - int max_power; - int max_reg_power; - bool beacon_found; - u32 orig_flags; - int orig_mag; - int orig_mpwr; - enum nl80211_dfs_state dfs_state; - long unsigned int dfs_state_entered; - unsigned int dfs_cac_ms; - s8 psd; -}; - -struct ieee80211_rate { - u32 flags; - u16 bitrate; - u16 hw_value; - u16 hw_value_short; -}; - -struct ieee80211_sta_ht_cap { - u16 cap; - bool ht_supported; - u8 ampdu_factor; - u8 ampdu_density; - struct ieee80211_mcs_info mcs; - short: 0; -} __attribute__((packed)); - -struct ieee80211_sta_vht_cap { - bool vht_supported; - u32 cap; - struct ieee80211_vht_mcs_info vht_mcs; -}; - -struct ieee80211_sta_he_cap { - bool has_he; - struct ieee80211_he_cap_elem he_cap_elem; - struct ieee80211_he_mcs_nss_supp he_mcs_nss_supp; - u8 ppe_thres[25]; -} __attribute__((packed)); - -struct ieee80211_eht_mcs_nss_supp { - union { - struct ieee80211_eht_mcs_nss_supp_20mhz_only only_20mhz; - struct { - struct ieee80211_eht_mcs_nss_supp_bw _80; - struct ieee80211_eht_mcs_nss_supp_bw _160; - struct ieee80211_eht_mcs_nss_supp_bw _320; - } bw; - }; -}; - -struct ieee80211_sta_eht_cap { - bool has_eht; - struct ieee80211_eht_cap_elem_fixed eht_cap_elem; - struct ieee80211_eht_mcs_nss_supp eht_mcs_nss_supp; - u8 eht_ppe_thres[32]; -}; - -struct ieee80211_sband_iftype_data { - u16 types_mask; - struct ieee80211_sta_he_cap he_cap; - struct ieee80211_he_6ghz_capa he_6ghz_capa; - struct ieee80211_sta_eht_cap eht_cap; - struct { - const u8 *data; - unsigned int len; - } vendor_elems; -} __attribute__((packed)); - -struct ieee80211_sta_s1g_cap { - bool s1g; - u8 cap[10]; - u8 nss_mcs[5]; -}; - -struct ieee80211_supported_band { - struct ieee80211_channel *channels; - struct ieee80211_rate *bitrates; - enum nl80211_band band; - int n_channels; - int n_bitrates; - struct ieee80211_sta_ht_cap ht_cap; - struct ieee80211_sta_vht_cap vht_cap; - struct ieee80211_sta_s1g_cap s1g_cap; - struct ieee80211_edmg edmg_cap; - u16 n_iftype_data; - const struct ieee80211_sband_iftype_data *iftype_data; -}; - -struct key_params { - const u8 *key; - const u8 *seq; - int key_len; - int seq_len; - u16 vlan_id; - u32 cipher; - enum nl80211_key_mode mode; -}; - -struct mac_address { - u8 addr[6]; -}; - -struct cfg80211_sar_freq_ranges { - u32 start_freq; - u32 end_freq; -}; - -struct cfg80211_sar_capa { - enum nl80211_sar_type type; - u32 num_freq_ranges; - const struct cfg80211_sar_freq_ranges *freq_ranges; -}; - -struct cfg80211_ssid { - u8 ssid[32]; - u8 ssid_len; -}; - -enum cfg80211_signal_type { - CFG80211_SIGNAL_TYPE_NONE = 0, - CFG80211_SIGNAL_TYPE_MBM = 1, - CFG80211_SIGNAL_TYPE_UNSPEC = 2, -}; - -struct ieee80211_txrx_stypes; - -struct ieee80211_iface_combination; - -struct wiphy_iftype_akm_suites; - -struct wiphy_wowlan_support; - -struct cfg80211_wowlan; - -struct wiphy_iftype_ext_capab; - -struct wiphy_radio_cfg; - -struct iw_handler_def; - -struct wiphy_coalesce_support; - -struct wiphy_vendor_command; - -struct cfg80211_pmsr_capabilities; - -struct rfkill; - -struct wiphy_radio; - -struct wiphy { - struct mutex mtx; - u8 perm_addr[6]; - u8 addr_mask[6]; - struct mac_address *addresses; - const struct ieee80211_txrx_stypes *mgmt_stypes; - const struct ieee80211_iface_combination *iface_combinations; - int n_iface_combinations; - u16 software_iftypes; - u16 n_addresses; - u16 interface_modes; - u16 max_acl_mac_addrs; - u32 flags; - u32 regulatory_flags; - u32 features; - u8 ext_features[9]; - u32 ap_sme_capa; - enum cfg80211_signal_type signal_type; - int bss_priv_size; - u8 max_scan_ssids; - u8 max_sched_scan_reqs; - u8 max_sched_scan_ssids; - u8 max_match_sets; - u16 max_scan_ie_len; - u16 max_sched_scan_ie_len; - u32 max_sched_scan_plans; - u32 max_sched_scan_plan_interval; - u32 max_sched_scan_plan_iterations; - int n_cipher_suites; - const u32 *cipher_suites; - int n_akm_suites; - const u32 *akm_suites; - const struct wiphy_iftype_akm_suites *iftype_akm_suites; - unsigned int num_iftype_akm_suites; - u8 retry_short; - u8 retry_long; - u32 frag_threshold; - u32 rts_threshold; - u8 coverage_class; - char fw_version[32]; - u32 hw_version; - const struct wiphy_wowlan_support *wowlan; - struct cfg80211_wowlan *wowlan_config; - u16 max_remain_on_channel_duration; - u8 max_num_pmkids; - u32 available_antennas_tx; - u32 available_antennas_rx; - u32 probe_resp_offload; - const u8 *extended_capabilities; - const u8 *extended_capabilities_mask; - u8 extended_capabilities_len; - const struct wiphy_iftype_ext_capab *iftype_ext_capab; - unsigned int num_iftype_ext_capab; - const void *privid; - struct ieee80211_supported_band *bands[6]; - void (*reg_notifier)(struct wiphy *, struct regulatory_request *); - struct wiphy_radio_cfg *radio_cfg; - const struct ieee80211_regdomain *regd; - struct device dev; - bool registered; - struct dentry *debugfsdir; - const struct ieee80211_ht_cap *ht_capa_mod_mask; - const struct ieee80211_vht_cap *vht_capa_mod_mask; - struct list_head wdev_list; - possible_net_t _net; - const struct iw_handler_def *wext; - const struct wiphy_coalesce_support *coalesce; - const struct wiphy_vendor_command *vendor_commands; - const struct nl80211_vendor_cmd_info *vendor_events; - int n_vendor_commands; - int n_vendor_events; - u16 max_ap_assoc_sta; - u8 max_num_csa_counters; - u32 bss_select_support; - u8 nan_supported_bands; - u32 txq_limit; - u32 txq_memory_limit; - u32 txq_quantum; - long unsigned int tx_queue_len; - u8 support_mbssid: 1; - u8 support_only_he_mbssid: 1; - const struct cfg80211_pmsr_capabilities *pmsr_capa; - struct { - u64 peer; - u64 vif; - u8 max_retry; - } tid_config_support; - u8 max_data_retry_count; - const struct cfg80211_sar_capa *sar_capa; - struct rfkill *rfkill; - u8 mbssid_max_interfaces; - u8 ema_max_profile_periodicity; - u16 max_num_akm_suites; - u16 hw_timestamp_max_peers; - int n_radio; - const struct wiphy_radio *radio; - long: 64; - long: 64; - long: 64; - char priv[0]; -}; - -struct cfg80211_match_set { - struct cfg80211_ssid ssid; - u8 bssid[6]; - s32 rssi_thold; -}; - -struct cfg80211_sched_scan_plan { - u32 interval; - u32 iterations; -}; - -struct cfg80211_sched_scan_request { - u64 reqid; - struct cfg80211_ssid *ssids; - int n_ssids; - u32 n_channels; - const u8 *ie; - size_t ie_len; - u32 flags; - struct cfg80211_match_set *match_sets; - int n_match_sets; - s32 min_rssi_thold; - u32 delay; - struct cfg80211_sched_scan_plan *scan_plans; - int n_scan_plans; - u8 mac_addr[6]; - u8 mac_addr_mask[6]; - bool relative_rssi_set; - s8 relative_rssi; - struct cfg80211_bss_select_adjust rssi_adjust; - struct wiphy *wiphy; - struct net_device *dev; - long unsigned int scan_start; - bool report_results; - struct callback_head callback_head; - u32 owner_nlportid; - bool nl_owner_dead; - struct list_head list; - struct ieee80211_channel *channels[0]; -}; - -struct cfg80211_pkt_pattern { - const u8 *mask; - const u8 *pattern; - int pattern_len; - int pkt_offset; -}; - -struct cfg80211_wowlan_tcp { - struct socket *sock; - __be32 src; - __be32 dst; - u16 src_port; - u16 dst_port; - u8 dst_mac[6]; - int payload_len; - const u8 *payload; - struct nl80211_wowlan_tcp_data_seq payload_seq; - u32 data_interval; - u32 wake_len; - const u8 *wake_data; - const u8 *wake_mask; - u32 tokens_size; - struct nl80211_wowlan_tcp_data_token payload_tok; -}; - -struct cfg80211_wowlan { - bool any; - bool disconnect; - bool magic_pkt; - bool gtk_rekey_failure; - bool eap_identity_req; - bool four_way_handshake; - bool rfkill_release; - struct cfg80211_pkt_pattern *patterns; - struct cfg80211_wowlan_tcp *tcp; - int n_patterns; - struct cfg80211_sched_scan_request *nd_config; -}; - -enum wiphy_flags { - WIPHY_FLAG_SUPPORTS_EXT_KEK_KCK = 1, - WIPHY_FLAG_SUPPORTS_MLO = 2, - WIPHY_FLAG_SPLIT_SCAN_6GHZ = 4, - WIPHY_FLAG_NETNS_OK = 8, - WIPHY_FLAG_PS_ON_BY_DEFAULT = 16, - WIPHY_FLAG_4ADDR_AP = 32, - WIPHY_FLAG_4ADDR_STATION = 64, - WIPHY_FLAG_CONTROL_PORT_PROTOCOL = 128, - WIPHY_FLAG_IBSS_RSN = 256, - WIPHY_FLAG_DISABLE_WEXT = 512, - WIPHY_FLAG_MESH_AUTH = 1024, - WIPHY_FLAG_SUPPORTS_EXT_KCK_32 = 2048, - WIPHY_FLAG_SUPPORTS_NSTR_NONPRIMARY = 4096, - WIPHY_FLAG_SUPPORTS_FW_ROAM = 8192, - WIPHY_FLAG_AP_UAPSD = 16384, - WIPHY_FLAG_SUPPORTS_TDLS = 32768, - WIPHY_FLAG_TDLS_EXTERNAL_SETUP = 65536, - WIPHY_FLAG_HAVE_AP_SME = 131072, - WIPHY_FLAG_REPORTS_OBSS = 262144, - WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD = 524288, - WIPHY_FLAG_OFFCHAN_TX = 1048576, - WIPHY_FLAG_HAS_REMAIN_ON_CHANNEL = 2097152, - WIPHY_FLAG_SUPPORTS_5_10_MHZ = 4194304, - WIPHY_FLAG_HAS_CHANNEL_SWITCH = 8388608, - WIPHY_FLAG_NOTIFY_REGDOM_BY_DRIVER = 16777216, - WIPHY_FLAG_CHANNEL_CHANGE_ON_BEACON = 33554432, -}; - -struct ieee80211_iface_limit { - u16 max; - u16 types; -}; - -struct ieee80211_iface_combination { - const struct ieee80211_iface_limit *limits; - u32 num_different_channels; - u16 max_interfaces; - u8 n_limits; - bool beacon_int_infra_match; - u8 radar_detect_widths; - u8 radar_detect_regions; - u32 beacon_int_min_gcd; -}; - -struct ieee80211_txrx_stypes { - u16 tx; - u16 rx; -}; - -struct wiphy_wowlan_tcp_support { - const struct nl80211_wowlan_tcp_data_token_feature *tok; - u32 data_payload_max; - u32 data_interval_max; - u32 wake_payload_max; - bool seq; -}; - -struct wiphy_wowlan_support { - u32 flags; - int n_patterns; - int pattern_max_len; - int pattern_min_len; - int max_pkt_offset; - int max_nd_match_sets; - const struct wiphy_wowlan_tcp_support *tcp; -}; - -struct wiphy_coalesce_support { - int n_rules; - int max_delay; - int n_patterns; - int pattern_max_len; - int pattern_min_len; - int max_pkt_offset; -}; - -struct wiphy_vendor_command { - struct nl80211_vendor_cmd_info info; - u32 flags; - int (*doit)(struct wiphy *, struct wireless_dev *, const void *, int); - int (*dumpit)(struct wiphy *, struct wireless_dev *, struct sk_buff *, const void *, int, long unsigned int *); - const struct nla_policy *policy; - unsigned int maxattr; -}; - -struct wiphy_iftype_ext_capab { - enum nl80211_iftype iftype; - const u8 *extended_capabilities; - const u8 *extended_capabilities_mask; - u8 extended_capabilities_len; - u16 eml_capabilities; - u16 mld_capa_and_ops; -}; - -struct cfg80211_pmsr_capabilities { - unsigned int max_peers; - u8 report_ap_tsf: 1; - u8 randomize_mac_addr: 1; - struct { - u32 preambles; - u32 bandwidths; - s8 max_bursts_exponent; - u8 max_ftms_per_burst; - u8 supported: 1; - u8 asap: 1; - u8 non_asap: 1; - u8 request_lci: 1; - u8 request_civicloc: 1; - u8 trigger_based: 1; - u8 non_trigger_based: 1; - } ftm; -}; - -struct wiphy_iftype_akm_suites { - u16 iftypes_mask; - const u32 *akm_suites; - int n_akm_suites; -}; - -struct wiphy_radio_cfg { - u32 rts_threshold; -}; - -struct wiphy_radio_freq_range { - u32 start_freq; - u32 end_freq; -}; - -struct wiphy_radio { - const struct wiphy_radio_freq_range *freq_range; - int n_freq_range; - const struct ieee80211_iface_combination *iface_combinations; - int n_iface_combinations; - u32 antenna_mask; -}; - -struct iw_request_info; - -typedef int (*iw_handler)(struct net_device *, struct iw_request_info *, union iwreq_data *, char *); - -struct iw_handler_def { - const iw_handler *standard; - __u16 num_standard; - struct iw_statistics * (*get_wireless_stats)(struct net_device *); -}; - -struct iw_request_info { - __u16 cmd; - __u16 flags; -}; - -struct iw_ioctl_description { - __u8 header_type; - __u8 flags; - __u16 token_size; - __u16 min_tokens; - __u16 max_tokens; -}; - -typedef int (*wext_ioctl_func)(struct net_device *, struct iwreq *, unsigned int, struct iw_request_info *, iw_handler); - -struct netlbl_audit { - struct lsm_prop prop; - kuid_t loginuid; - unsigned int sessionid; -}; - -struct calipso_doi { - u32 doi; - u32 type; - refcount_t refcount; - struct list_head list; - struct callback_head rcu; -}; - -struct cipso_v4_std_map_tbl { - struct { - u32 *cipso; - u32 *local; - u32 cipso_size; - u32 local_size; - } lvl; - struct { - u32 *cipso; - u32 *local; - u32 cipso_size; - u32 local_size; - } cat; -}; - -struct cipso_v4_doi { - u32 doi; - u32 type; - union { - struct cipso_v4_std_map_tbl *std; - } map; - u8 tags[5]; - refcount_t refcount; - struct list_head list; - struct callback_head rcu; -}; - -struct netlbl_af4list { - __be32 addr; - __be32 mask; - u32 valid; - struct list_head list; -}; - -struct netlbl_af6list { - struct in6_addr addr; - struct in6_addr mask; - u32 valid; - struct list_head list; -}; - -struct netlbl_domaddr_map { - struct list_head list4; - struct list_head list6; -}; - -struct netlbl_dommap_def { - u32 type; - union { - struct netlbl_domaddr_map *addrsel; - struct cipso_v4_doi *cipso; - struct calipso_doi *calipso; - }; -}; - -struct netlbl_domaddr4_map { - struct netlbl_dommap_def def; - struct netlbl_af4list list; -}; - -struct netlbl_domaddr6_map { - struct netlbl_dommap_def def; - struct netlbl_af6list list; -}; - -struct netlbl_dom_map { - char *domain; - struct netlbl_dommap_def def; - u16 family; - u32 valid; - struct list_head list; - struct callback_head rcu; -}; - -struct netlbl_domhsh_tbl { - struct list_head *tbl; - u32 size; -}; - -struct netlbl_calipso_ops { - int (*doi_add)(struct calipso_doi *, struct netlbl_audit *); - void (*doi_free)(struct calipso_doi *); - int (*doi_remove)(u32, struct netlbl_audit *); - struct calipso_doi * (*doi_getdef)(u32); - void (*doi_putdef)(struct calipso_doi *); - int (*doi_walk)(u32 *, int (*)(struct calipso_doi *, void *), void *); - int (*sock_getattr)(struct sock *, struct netlbl_lsm_secattr *); - int (*sock_setattr)(struct sock *, const struct calipso_doi *, const struct netlbl_lsm_secattr *); - void (*sock_delattr)(struct sock *); - int (*req_setattr)(struct request_sock *, const struct calipso_doi *, const struct netlbl_lsm_secattr *); - void (*req_delattr)(struct request_sock *); - int (*opt_getattr)(const unsigned char *, struct netlbl_lsm_secattr *); - unsigned char * (*skbuff_optptr)(const struct sk_buff *); - int (*skbuff_setattr)(struct sk_buff *, const struct calipso_doi *, const struct netlbl_lsm_secattr *); - int (*skbuff_delattr)(struct sk_buff *); - void (*cache_invalidate)(void); - int (*cache_add)(const unsigned char *, const struct netlbl_lsm_secattr *); -}; - -enum { - NLBL_CALIPSO_C_UNSPEC = 0, - NLBL_CALIPSO_C_ADD = 1, - NLBL_CALIPSO_C_REMOVE = 2, - NLBL_CALIPSO_C_LIST = 3, - NLBL_CALIPSO_C_LISTALL = 4, - __NLBL_CALIPSO_C_MAX = 5, -}; - -enum { - NLBL_CALIPSO_A_UNSPEC = 0, - NLBL_CALIPSO_A_DOI = 1, - NLBL_CALIPSO_A_MTYPE = 2, - __NLBL_CALIPSO_A_MAX = 3, -}; - -struct netlbl_calipso_doiwalk_arg { - struct netlink_callback *nl_cb; - struct sk_buff *skb; - u32 seq; -}; - -struct netlbl_domhsh_walk_arg { - struct netlbl_audit *audit_info; - u32 doi; -}; - -struct ncsi_dev { - int state; - int link_up; - struct net_device *dev; - void (*handler)(struct ncsi_dev *); -}; - -struct ncsi_channel_version { - u8 major; - u8 minor; - u8 update; - char alpha1; - char alpha2; - u8 fw_name[13]; - u32 fw_version; - u16 pci_ids[4]; - u32 mf_id; -}; - -struct ncsi_channel_cap { - u32 index; - u32 cap; -}; - -struct ncsi_channel_mode { - u32 index; - u32 enable; - u32 size; - u32 data[8]; -}; - -struct ncsi_channel_mac_filter { - u8 n_uc; - u8 n_mc; - u8 n_mixed; - u64 bitmap; - unsigned char *addrs; -}; - -struct ncsi_channel_vlan_filter { - u8 n_vids; - u64 bitmap; - u16 *vids; -}; - -struct ncsi_channel_stats { - u64 hnc_cnt; - u64 hnc_rx_bytes; - u64 hnc_tx_bytes; - u64 hnc_rx_uc_pkts; - u64 hnc_rx_mc_pkts; - u64 hnc_rx_bc_pkts; - u64 hnc_tx_uc_pkts; - u64 hnc_tx_mc_pkts; - u64 hnc_tx_bc_pkts; - u32 hnc_fcs_err; - u32 hnc_align_err; - u32 hnc_false_carrier; - u32 hnc_runt_pkts; - u32 hnc_jabber_pkts; - u32 hnc_rx_pause_xon; - u32 hnc_rx_pause_xoff; - u32 hnc_tx_pause_xon; - u32 hnc_tx_pause_xoff; - u32 hnc_tx_s_collision; - u32 hnc_tx_m_collision; - u32 hnc_l_collision; - u32 hnc_e_collision; - u32 hnc_rx_ctl_frames; - u32 hnc_rx_64_frames; - u32 hnc_rx_127_frames; - u32 hnc_rx_255_frames; - u32 hnc_rx_511_frames; - u32 hnc_rx_1023_frames; - u32 hnc_rx_1522_frames; - u32 hnc_rx_9022_frames; - u32 hnc_tx_64_frames; - u32 hnc_tx_127_frames; - u32 hnc_tx_255_frames; - u32 hnc_tx_511_frames; - u32 hnc_tx_1023_frames; - u32 hnc_tx_1522_frames; - u32 hnc_tx_9022_frames; - u64 hnc_rx_valid_bytes; - u32 hnc_rx_runt_pkts; - u32 hnc_rx_jabber_pkts; - u32 ncsi_rx_cmds; - u32 ncsi_dropped_cmds; - u32 ncsi_cmd_type_errs; - u32 ncsi_cmd_csum_errs; - u32 ncsi_rx_pkts; - u32 ncsi_tx_pkts; - u32 ncsi_tx_aen_pkts; - u32 pt_tx_pkts; - u32 pt_tx_dropped; - u32 pt_tx_channel_err; - u32 pt_tx_us_err; - u32 pt_rx_pkts; - u32 pt_rx_dropped; - u32 pt_rx_channel_err; - u32 pt_rx_us_err; - u32 pt_rx_os_err; -}; - -struct ncsi_package; - -struct ncsi_channel { - unsigned char id; - int state; - bool reconfigure_needed; - spinlock_t lock; - struct ncsi_package *package; - struct ncsi_channel_version version; - struct ncsi_channel_cap caps[6]; - struct ncsi_channel_mode modes[8]; - struct ncsi_channel_mac_filter mac_filter; - struct ncsi_channel_vlan_filter vlan_filter; - struct ncsi_channel_stats stats; - struct { - struct timer_list timer; - bool enabled; - unsigned int state; - } monitor; - struct list_head node; - struct list_head link; -}; - -struct ncsi_dev_priv; - -struct ncsi_package { - unsigned char id; - unsigned char uuid[16]; - struct ncsi_dev_priv *ndp; - spinlock_t lock; - unsigned int channel_num; - struct list_head channels; - struct list_head node; - bool multi_channel; - u32 channel_whitelist; - struct ncsi_channel *preferred_channel; -}; - -struct ncsi_request { - unsigned char id; - bool used; - unsigned int flags; - struct ncsi_dev_priv *ndp; - struct sk_buff *cmd; - struct sk_buff *rsp; - struct timer_list timer; - bool enabled; - u32 snd_seq; - u32 snd_portid; - struct nlmsghdr nlhdr; -}; - -struct ncsi_dev_priv { - struct ncsi_dev ndev; - unsigned int flags; - unsigned int gma_flag; - struct __kernel_sockaddr_storage pending_mac; - spinlock_t lock; - unsigned int package_probe_id; - unsigned int package_num; - unsigned int channel_probe_id; - struct list_head packages; - struct ncsi_channel *hot_channel; - struct ncsi_request requests[256]; - unsigned int request_id; - unsigned int pending_req_num; - struct ncsi_package *active_package; - struct ncsi_channel *active_channel; - struct list_head channel_queue; - struct work_struct work; - struct packet_type ptype; - struct list_head node; - struct list_head vlan_vids; - bool multi_package; - bool mlx_multi_host; - u32 package_whitelist; - unsigned char channel_count; -}; - -struct ncsi_cmd_arg { - struct ncsi_dev_priv *ndp; - unsigned char type; - unsigned char id; - unsigned char package; - unsigned char channel; - short unsigned int payload; - unsigned int req_flags; - union { - unsigned char bytes[16]; - short unsigned int words[8]; - unsigned int dwords[4]; - }; - unsigned char *data; - struct genl_info *info; -}; - -struct ncsi_pkt_hdr { - unsigned char mc_id; - unsigned char revision; - unsigned char reserved; - unsigned char id; - unsigned char type; - unsigned char channel; - __be16 length; - __be32 reserved1[2]; -}; - -struct ncsi_cmd_pkt_hdr { - struct ncsi_pkt_hdr common; -}; - -struct ncsi_cmd_pkt { - struct ncsi_cmd_pkt_hdr cmd; - __be32 checksum; - unsigned char pad[26]; -}; - -struct ncsi_cmd_sp_pkt { - struct ncsi_cmd_pkt_hdr cmd; - unsigned char reserved[3]; - unsigned char hw_arbitration; - __be32 checksum; - unsigned char pad[22]; -}; - -struct ncsi_cmd_dc_pkt { - struct ncsi_cmd_pkt_hdr cmd; - unsigned char reserved[3]; - unsigned char ald; - __be32 checksum; - unsigned char pad[22]; -}; - -struct ncsi_cmd_rc_pkt { - struct ncsi_cmd_pkt_hdr cmd; - __be32 reserved; - __be32 checksum; - unsigned char pad[22]; -}; - -struct ncsi_cmd_ae_pkt { - struct ncsi_cmd_pkt_hdr cmd; - unsigned char reserved[3]; - unsigned char mc_id; - __be32 mode; - __be32 checksum; - unsigned char pad[18]; -}; - -struct ncsi_cmd_sl_pkt { - struct ncsi_cmd_pkt_hdr cmd; - __be32 mode; - __be32 oem_mode; - __be32 checksum; - unsigned char pad[18]; -}; - -struct ncsi_cmd_svf_pkt { - struct ncsi_cmd_pkt_hdr cmd; - __be16 reserved; - __be16 vlan; - __be16 reserved1; - unsigned char index; - unsigned char enable; - __be32 checksum; - unsigned char pad[18]; -}; - -struct ncsi_cmd_ev_pkt { - struct ncsi_cmd_pkt_hdr cmd; - unsigned char reserved[3]; - unsigned char mode; - __be32 checksum; - unsigned char pad[22]; -}; - -struct ncsi_cmd_sma_pkt { - struct ncsi_cmd_pkt_hdr cmd; - unsigned char mac[6]; - unsigned char index; - unsigned char at_e; - __be32 checksum; - unsigned char pad[18]; -}; - -struct ncsi_cmd_ebf_pkt { - struct ncsi_cmd_pkt_hdr cmd; - __be32 mode; - __be32 checksum; - unsigned char pad[22]; -}; - -struct ncsi_cmd_egmf_pkt { - struct ncsi_cmd_pkt_hdr cmd; - __be32 mode; - __be32 checksum; - unsigned char pad[22]; -}; - -struct ncsi_cmd_snfc_pkt { - struct ncsi_cmd_pkt_hdr cmd; - unsigned char reserved[3]; - unsigned char mode; - __be32 checksum; - unsigned char pad[22]; -}; - -struct ncsi_cmd_oem_pkt { - struct ncsi_cmd_pkt_hdr cmd; - __be32 mfr_id; - unsigned char data[0]; -}; - -struct ncsi_cmd_handler { - unsigned char type; - int payload; - int (*handler)(struct sk_buff *, struct ncsi_cmd_arg *); -}; - -enum ncsi_nl_commands { - NCSI_CMD_UNSPEC = 0, - NCSI_CMD_PKG_INFO = 1, - NCSI_CMD_SET_INTERFACE = 2, - NCSI_CMD_CLEAR_INTERFACE = 3, - NCSI_CMD_SEND_CMD = 4, - NCSI_CMD_SET_PACKAGE_MASK = 5, - NCSI_CMD_SET_CHANNEL_MASK = 6, - __NCSI_CMD_AFTER_LAST = 7, - NCSI_CMD_MAX = 6, -}; - -enum ncsi_nl_attrs { - NCSI_ATTR_UNSPEC = 0, - NCSI_ATTR_IFINDEX = 1, - NCSI_ATTR_PACKAGE_LIST = 2, - NCSI_ATTR_PACKAGE_ID = 3, - NCSI_ATTR_CHANNEL_ID = 4, - NCSI_ATTR_DATA = 5, - NCSI_ATTR_MULTI_FLAG = 6, - NCSI_ATTR_PACKAGE_MASK = 7, - NCSI_ATTR_CHANNEL_MASK = 8, - __NCSI_ATTR_AFTER_LAST = 9, - NCSI_ATTR_MAX = 8, -}; - -enum ncsi_nl_pkg_attrs { - NCSI_PKG_ATTR_UNSPEC = 0, - NCSI_PKG_ATTR = 1, - NCSI_PKG_ATTR_ID = 2, - NCSI_PKG_ATTR_FORCED = 3, - NCSI_PKG_ATTR_CHANNEL_LIST = 4, - __NCSI_PKG_ATTR_AFTER_LAST = 5, - NCSI_PKG_ATTR_MAX = 4, -}; - -enum ncsi_nl_channel_attrs { - NCSI_CHANNEL_ATTR_UNSPEC = 0, - NCSI_CHANNEL_ATTR = 1, - NCSI_CHANNEL_ATTR_ID = 2, - NCSI_CHANNEL_ATTR_VERSION_MAJOR = 3, - NCSI_CHANNEL_ATTR_VERSION_MINOR = 4, - NCSI_CHANNEL_ATTR_VERSION_STR = 5, - NCSI_CHANNEL_ATTR_LINK_STATE = 6, - NCSI_CHANNEL_ATTR_ACTIVE = 7, - NCSI_CHANNEL_ATTR_FORCED = 8, - NCSI_CHANNEL_ATTR_VLAN_LIST = 9, - NCSI_CHANNEL_ATTR_VLAN_ID = 10, - __NCSI_CHANNEL_ATTR_AFTER_LAST = 11, - NCSI_CHANNEL_ATTR_MAX = 10, -}; - -enum { - NCSI_CAP_BASE = 0, - NCSI_CAP_GENERIC = 0, - NCSI_CAP_BC = 1, - NCSI_CAP_MC = 2, - NCSI_CAP_BUFFER = 3, - NCSI_CAP_AEN = 4, - NCSI_CAP_VLAN = 5, - NCSI_CAP_MAX = 6, -}; - -enum { - NCSI_MODE_BASE = 0, - NCSI_MODE_ENABLE = 0, - NCSI_MODE_TX_ENABLE = 1, - NCSI_MODE_LINK = 2, - NCSI_MODE_VLAN = 3, - NCSI_MODE_BC = 4, - NCSI_MODE_MC = 5, - NCSI_MODE_AEN = 6, - NCSI_MODE_FC = 7, - NCSI_MODE_MAX = 8, -}; - -struct xdp_ring; - -struct xsk_queue { - u32 ring_mask; - u32 nentries; - u32 cached_prod; - u32 cached_cons; - struct xdp_ring *ring; - u64 invalid_descs; - u64 queue_empty_descs; - size_t ring_vmalloc_size; -}; - -struct xdp_ring { - u32 producer; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - u32 pad1; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - u32 consumer; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - u32 pad2; - u32 flags; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - u32 pad3; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct xdp_rxtx_ring { - struct xdp_ring ptrs; - struct xdp_desc desc[0]; -}; - -struct xdp_umem_ring { - struct xdp_ring ptrs; - u64 desc[0]; -}; - -struct xdp_sock; - -struct xsk_map { - struct bpf_map map; - spinlock_t lock; - atomic_t count; - struct xdp_sock *xsk_map[0]; -}; - -struct xdp_sock { - struct sock sk; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct xsk_queue *rx; - struct net_device *dev; - struct xdp_umem *umem; - struct list_head flush_node; - struct xsk_buff_pool *pool; - u16 queue_id; - bool zc; - bool sg; - enum { - XSK_READY = 0, - XSK_BOUND = 1, - XSK_UNBOUND = 2, - } state; - long: 64; - struct xsk_queue *tx; - struct list_head tx_list; - u32 tx_budget_spent; - u64 rx_dropped; - u64 rx_queue_full; - struct sk_buff *skb; - struct list_head map_list; - spinlock_t map_list_lock; - u32 max_tx_budget; - struct mutex mutex; - struct xsk_queue *fq_tmp; - struct xsk_queue *cq_tmp; -}; - -struct xsk_map_node { - struct list_head node; - struct xsk_map *map; - struct xdp_sock **map_entry; -}; - -struct mptcp_mib { - long unsigned int mibs[77]; -}; - -struct socket_alloc { - struct socket socket; - struct inode vfs_inode; - long: 64; - long: 64; -}; - -struct mptcp_rm_list { - u8 ids[8]; - u8 nr; -}; - -struct mptcp_addr_info { - u8 id; - sa_family_t family; - __be16 port; - union { - struct in_addr addr; - struct in6_addr addr6; - }; -}; - -struct mptcp_sock; - -struct mptcp_sched_ops { - int (*get_send)(struct mptcp_sock *); - int (*get_retrans)(struct mptcp_sock *); - char name[16]; - struct module *owner; - struct list_head list; - void (*init)(struct mptcp_sock *); - void (*release)(struct mptcp_sock *); - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct mptcp_pm_data { - struct mptcp_addr_info local; - struct mptcp_addr_info remote; - struct list_head anno_list; - struct list_head userspace_pm_local_addr_list; - spinlock_t lock; - union { - struct { - u8 addr_signal; - bool server_side; - bool work_pending; - bool accept_addr; - bool accept_subflow; - bool remote_deny_join_id0; - u8 add_addr_signaled; - u8 add_addr_accepted; - u8 local_addr_used; - u8 pm_type; - u8 subflows; - u8 status; - }; - struct { - u8 addr_signal; - bool server_side; - bool work_pending; - bool accept_addr; - bool accept_subflow; - bool remote_deny_join_id0; - u8 add_addr_signaled; - u8 add_addr_accepted; - u8 local_addr_used; - u8 pm_type; - u8 subflows; - u8 status; - } reset; - }; - long unsigned int id_avail_bitmap[4]; - struct mptcp_rm_list rm_list_tx; - struct mptcp_rm_list rm_list_rx; -}; - -struct mptcp_data_frag; - -struct mptcp_sock { - struct inet_connection_sock sk; - u64 local_key; - u64 remote_key; - u64 write_seq; - u64 bytes_sent; - u64 snd_nxt; - u64 bytes_received; - u64 ack_seq; - atomic64_t rcv_wnd_sent; - u64 rcv_data_fin_seq; - u64 bytes_retrans; - u64 bytes_consumed; - int snd_burst; - int old_wspace; - u64 recovery_snd_nxt; - u64 bytes_acked; - u64 snd_una; - u64 wnd_end; - u32 last_data_sent; - u32 last_data_recv; - u32 last_ack_recv; - long unsigned int timer_ival; - u32 token; - long unsigned int flags; - long unsigned int cb_flags; - bool recovery; - bool can_ack; - bool fully_established; - bool rcv_data_fin; - bool snd_data_fin_enable; - bool rcv_fastclose; - bool use_64bit_ack; - bool csum_enabled; - bool allow_infinite_fallback; - u8 pending_state; - u8 mpc_endpoint_id; - u8 recvmsg_inq: 1; - u8 cork: 1; - u8 nodelay: 1; - u8 fastopening: 1; - u8 in_accept_queue: 1; - u8 free_first: 1; - u8 rcvspace_init: 1; - u8 fastclosing: 1; - u32 notsent_lowat; - int keepalive_cnt; - int keepalive_idle; - int keepalive_intvl; - int maxseg; - struct work_struct work; - struct sk_buff *ooo_last_skb; - struct rb_root out_of_order_queue; - struct list_head conn_list; - struct list_head rtx_queue; - struct mptcp_data_frag *first_pending; - struct list_head join_list; - struct sock *first; - struct mptcp_pm_data pm; - struct mptcp_sched_ops *sched; - struct { - u32 space; - u32 copied; - u64 time; - u64 rtt_us; - } rcvq_space; - u8 scaling_ratio; - bool allow_subflows; - u32 subflow_id; - u32 setsockopt_seq; - char ca_name[16]; - spinlock_t fallback_lock; -}; - -struct mptcp_options_received { - u64 sndr_key; - u64 rcvr_key; - u64 data_ack; - u64 data_seq; - u32 subflow_seq; - u16 data_len; - __sum16 csum; - union { - struct { - u16 suboptions; - u16 use_map: 1; - u16 dsn64: 1; - u16 data_fin: 1; - u16 use_ack: 1; - u16 ack64: 1; - u16 mpc_map: 1; - u16 reset_reason: 4; - u16 reset_transient: 1; - u16 echo: 1; - u16 backup: 1; - u16 deny_join_id0: 1; - u16 __unused: 2; - }; - struct { - u16 suboptions; - u16 use_map: 1; - u16 dsn64: 1; - u16 data_fin: 1; - u16 use_ack: 1; - u16 ack64: 1; - u16 mpc_map: 1; - u16 reset_reason: 4; - u16 reset_transient: 1; - u16 echo: 1; - u16 backup: 1; - u16 deny_join_id0: 1; - u16 __unused: 2; - } status; - }; - u8 join_id; - u32 token; - u32 nonce; - u64 thmac; - u8 hmac[20]; - struct mptcp_addr_info addr; - struct mptcp_rm_list rm_list; - u64 ahmac; - u64 fail_seq; -}; - -enum mptcp_pm_type { - MPTCP_PM_TYPE_KERNEL = 0, - MPTCP_PM_TYPE_USERSPACE = 1, - __MPTCP_PM_TYPE_NR = 2, - __MPTCP_PM_TYPE_MAX = 1, -}; - -struct mptcp_pm_local { - struct mptcp_addr_info addr; - u8 flags; - int ifindex; -}; - -struct mptcp_data_frag { - struct list_head list; - u64 data_seq; - u16 data_len; - u16 offset; - u16 overhead; - u16 already_sent; - struct page *page; -}; - -struct mptcp_subflow_request_sock { - struct tcp_request_sock sk; - u16 mp_capable: 1; - u16 mp_join: 1; - u16 backup: 1; - u16 request_bkup: 1; - u16 csum_reqd: 1; - u16 allow_join_id0: 1; - u8 local_id; - u8 remote_id; - u64 local_key; - u64 idsn; - u32 token; - u32 ssn_offset; - u64 thmac; - u32 local_nonce; - u32 remote_nonce; - struct mptcp_sock *msk; - struct hlist_nulls_node token_node; -}; - -struct mptcp_delegated_action { - struct napi_struct napi; - local_lock_t bh_lock; - struct list_head head; -}; - -struct mptcp_subflow_context { - struct list_head node; - union { - struct { - long unsigned int avg_pacing_rate; - u64 local_key; - u64 remote_key; - u64 idsn; - u64 map_seq; - u64 rcv_wnd_sent; - u32 snd_isn; - u32 token; - u32 rel_write_seq; - u32 map_subflow_seq; - u32 ssn_offset; - u32 map_data_len; - __wsum map_data_csum; - u32 map_csum_len; - u32 request_mptcp: 1; - u32 request_join: 1; - u32 request_bkup: 1; - u32 mp_capable: 1; - u32 mp_join: 1; - u32 pm_notified: 1; - u32 conn_finished: 1; - u32 map_valid: 1; - u32 map_csum_reqd: 1; - u32 map_data_fin: 1; - u32 mpc_map: 1; - u32 backup: 1; - u32 send_mp_prio: 1; - u32 send_mp_fail: 1; - u32 send_fastclose: 1; - u32 send_infinite_map: 1; - u32 remote_key_valid: 1; - u32 disposable: 1; - u32 stale: 1; - u32 valid_csum_seen: 1; - u32 is_mptfo: 1; - u32 close_event_done: 1; - u32 mpc_drop: 1; - u32 __unused: 9; - bool data_avail; - bool scheduled; - bool pm_listener; - bool fully_established; - u32 remote_nonce; - u64 thmac; - u32 local_nonce; - u32 remote_token; - union { - u8 hmac[20]; - u64 iasn; - }; - s16 local_id; - u8 remote_id; - u8 reset_seen: 1; - u8 reset_transient: 1; - u8 reset_reason: 4; - u8 stale_count; - u32 subflow_id; - long int delegated_status; - long unsigned int fail_tout; - }; - struct { - long unsigned int avg_pacing_rate; - u64 local_key; - u64 remote_key; - u64 idsn; - u64 map_seq; - u64 rcv_wnd_sent; - u32 snd_isn; - u32 token; - u32 rel_write_seq; - u32 map_subflow_seq; - u32 ssn_offset; - u32 map_data_len; - __wsum map_data_csum; - u32 map_csum_len; - u32 request_mptcp: 1; - u32 request_join: 1; - u32 request_bkup: 1; - u32 mp_capable: 1; - u32 mp_join: 1; - u32 pm_notified: 1; - u32 conn_finished: 1; - u32 map_valid: 1; - u32 map_csum_reqd: 1; - u32 map_data_fin: 1; - u32 mpc_map: 1; - u32 backup: 1; - u32 send_mp_prio: 1; - u32 send_mp_fail: 1; - u32 send_fastclose: 1; - u32 send_infinite_map: 1; - u32 remote_key_valid: 1; - u32 disposable: 1; - u32 stale: 1; - u32 valid_csum_seen: 1; - u32 is_mptfo: 1; - u32 close_event_done: 1; - u32 mpc_drop: 1; - u32 __unused: 9; - bool data_avail; - bool scheduled; - bool pm_listener; - bool fully_established; - u32 remote_nonce; - u64 thmac; - u32 local_nonce; - u32 remote_token; - union { - u8 hmac[20]; - u64 iasn; - }; - s16 local_id; - u8 remote_id; - u8 reset_seen: 1; - u8 reset_transient: 1; - u8 reset_reason: 4; - u8 stale_count; - u32 subflow_id; - long int delegated_status; - long unsigned int fail_tout; - } reset; - }; - struct list_head delegated_node; - u32 setsockopt_seq; - u32 stale_rcv_tstamp; - int cached_sndbuf; - struct sock *tcp_sock; - struct sock *conn; - const struct inet_connection_sock_af_ops *icsk_af_ops; - void (*tcp_state_change)(struct sock *); - void (*tcp_error_report)(struct sock *); - struct callback_head rcu; -}; - -enum linux_mptcp_mib_field { - MPTCP_MIB_NUM = 0, - MPTCP_MIB_MPCAPABLEPASSIVE = 1, - MPTCP_MIB_MPCAPABLEACTIVE = 2, - MPTCP_MIB_MPCAPABLEACTIVEACK = 3, - MPTCP_MIB_MPCAPABLEPASSIVEACK = 4, - MPTCP_MIB_MPCAPABLEPASSIVEFALLBACK = 5, - MPTCP_MIB_MPCAPABLEACTIVEFALLBACK = 6, - MPTCP_MIB_MPCAPABLEACTIVEDROP = 7, - MPTCP_MIB_MPCAPABLEACTIVEDISABLED = 8, - MPTCP_MIB_MPCAPABLEENDPATTEMPT = 9, - MPTCP_MIB_TOKENFALLBACKINIT = 10, - MPTCP_MIB_RETRANSSEGS = 11, - MPTCP_MIB_JOINNOTOKEN = 12, - MPTCP_MIB_JOINSYNRX = 13, - MPTCP_MIB_JOINSYNBACKUPRX = 14, - MPTCP_MIB_JOINSYNACKRX = 15, - MPTCP_MIB_JOINSYNACKBACKUPRX = 16, - MPTCP_MIB_JOINSYNACKMAC = 17, - MPTCP_MIB_JOINACKRX = 18, - MPTCP_MIB_JOINACKMAC = 19, - MPTCP_MIB_JOINREJECTED = 20, - MPTCP_MIB_JOINSYNTX = 21, - MPTCP_MIB_JOINSYNTXCREATSKERR = 22, - MPTCP_MIB_JOINSYNTXBINDERR = 23, - MPTCP_MIB_JOINSYNTXCONNECTERR = 24, - MPTCP_MIB_DSSNOMATCH = 25, - MPTCP_MIB_DSSCORRUPTIONFALLBACK = 26, - MPTCP_MIB_DSSCORRUPTIONRESET = 27, - MPTCP_MIB_INFINITEMAPTX = 28, - MPTCP_MIB_INFINITEMAPRX = 29, - MPTCP_MIB_DSSTCPMISMATCH = 30, - MPTCP_MIB_DATACSUMERR = 31, - MPTCP_MIB_OFOQUEUETAIL = 32, - MPTCP_MIB_OFOQUEUE = 33, - MPTCP_MIB_OFOMERGE = 34, - MPTCP_MIB_NODSSWINDOW = 35, - MPTCP_MIB_DUPDATA = 36, - MPTCP_MIB_ADDADDR = 37, - MPTCP_MIB_ADDADDRTX = 38, - MPTCP_MIB_ADDADDRTXDROP = 39, - MPTCP_MIB_ECHOADD = 40, - MPTCP_MIB_ECHOADDTX = 41, - MPTCP_MIB_ECHOADDTXDROP = 42, - MPTCP_MIB_PORTADD = 43, - MPTCP_MIB_ADDADDRDROP = 44, - MPTCP_MIB_JOINPORTSYNRX = 45, - MPTCP_MIB_JOINPORTSYNACKRX = 46, - MPTCP_MIB_JOINPORTACKRX = 47, - MPTCP_MIB_MISMATCHPORTSYNRX = 48, - MPTCP_MIB_MISMATCHPORTACKRX = 49, - MPTCP_MIB_RMADDR = 50, - MPTCP_MIB_RMADDRDROP = 51, - MPTCP_MIB_RMADDRTX = 52, - MPTCP_MIB_RMADDRTXDROP = 53, - MPTCP_MIB_RMSUBFLOW = 54, - MPTCP_MIB_MPPRIOTX = 55, - MPTCP_MIB_MPPRIORX = 56, - MPTCP_MIB_MPFAILTX = 57, - MPTCP_MIB_MPFAILRX = 58, - MPTCP_MIB_MPFASTCLOSETX = 59, - MPTCP_MIB_MPFASTCLOSERX = 60, - MPTCP_MIB_MPRSTTX = 61, - MPTCP_MIB_MPRSTRX = 62, - MPTCP_MIB_RCVPRUNED = 63, - MPTCP_MIB_SUBFLOWSTALE = 64, - MPTCP_MIB_SUBFLOWRECOVER = 65, - MPTCP_MIB_SNDWNDSHARED = 66, - MPTCP_MIB_RCVWNDSHARED = 67, - MPTCP_MIB_RCVWNDCONFLICTUPDATE = 68, - MPTCP_MIB_RCVWNDCONFLICT = 69, - MPTCP_MIB_CURRESTAB = 70, - MPTCP_MIB_BLACKHOLE = 71, - MPTCP_MIB_MPCAPABLEDATAFALLBACK = 72, - MPTCP_MIB_MD5SIGFALLBACK = 73, - MPTCP_MIB_DSSFALLBACK = 74, - MPTCP_MIB_SIMULTCONNFALLBACK = 75, - MPTCP_MIB_FALLBACKFAILED = 76, - __MPTCP_MIB_MAX = 77, -}; - -enum mapping_status { - MAPPING_OK = 0, - MAPPING_INVALID = 1, - MAPPING_EMPTY = 2, - MAPPING_DATA_FIN = 3, - MAPPING_DUMMY = 4, - MAPPING_BAD_CSUM = 5, - MAPPING_NODSS = 6, -}; - -struct mptcp_pm_ops { - char name[16]; - struct module *owner; - struct list_head list; - void (*init)(struct mptcp_sock *); - void (*release)(struct mptcp_sock *); - long: 64; -}; - -struct mptcp_pernet { - struct ctl_table_header *ctl_table_hdr; - unsigned int add_addr_timeout; - unsigned int blackhole_timeout; - unsigned int close_timeout; - unsigned int stale_loss_cnt; - atomic_t active_disable_times; - u8 syn_retrans_before_tcp_fallback; - long unsigned int active_disable_stamp; - u8 mptcp_enabled; - u8 checksum_enabled; - u8 allow_join_initial_addr_port; - u8 pm_type; - char scheduler[16]; - char path_manager[16]; -}; - -struct mptcp_skb_cb { - u64 map_seq; - u64 end_seq; - u32 offset; - u8 has_rxtstamp; - u8 cant_coalesce; -}; - -struct join_entry { - u32 token; - u32 remote_nonce; - u32 local_nonce; - u8 join_id; - u8 local_id; - u8 backup; - u8 valid; -}; - -enum mctp_phys_binding { - MCTP_PHYS_BINDING_UNSPEC = 0, - MCTP_PHYS_BINDING_SMBUS = 1, - MCTP_PHYS_BINDING_PCIE_VDM = 2, - MCTP_PHYS_BINDING_USB = 3, - MCTP_PHYS_BINDING_KCS = 4, - MCTP_PHYS_BINDING_SERIAL = 5, - MCTP_PHYS_BINDING_I3C = 6, - MCTP_PHYS_BINDING_MMBI = 7, - MCTP_PHYS_BINDING_PCC = 8, - MCTP_PHYS_BINDING_UCIE = 9, - MCTP_PHYS_BINDING_VENDOR = 255, -}; - -struct mctp_netdev_ops; - -struct mctp_dev { - struct net_device *dev; - refcount_t refs; - unsigned int net; - enum mctp_phys_binding binding; - const struct mctp_netdev_ops *ops; - u8 *addrs; - size_t num_addrs; - spinlock_t addrs_lock; - struct callback_head rcu; -}; - -typedef __u8 mctp_eid_t; - -struct mctp_sk_key { - unsigned int net; - mctp_eid_t peer_addr; - mctp_eid_t local_addr; - __u8 tag; - struct sock *sk; - struct hlist_node hlist; - struct hlist_node sklist; - spinlock_t lock; - refcount_t refs; - struct sk_buff *reasm_head; - struct sk_buff **reasm_tailp; - bool reasm_dead; - u8 last_seq; - bool valid; - long unsigned int expiry; - long unsigned int dev_flow_state; - struct mctp_dev *dev; - bool manual_alloc; -}; - -enum mctp_neigh_source { - MCTP_NEIGH_STATIC = 0, - MCTP_NEIGH_DISCOVER = 1, -}; - -struct mctp_neigh { - struct mctp_dev *dev; - mctp_eid_t eid; - enum mctp_neigh_source source; - unsigned char ha[32]; - struct list_head list; - struct callback_head rcu; -}; - -struct mctp_netdev_ops { - void (*release_flow)(struct mctp_dev *, struct mctp_sk_key *); -}; - -enum { - TLS_NO_KEYRING = 0, - TLS_NO_PEERID = 0, - TLS_NO_CERT = 0, - TLS_NO_PRIVKEY = 0, -}; - -typedef void (*tls_done_func_t)(void *, int, key_serial_t); - -struct tls_handshake_args { - struct socket *ta_sock; - tls_done_func_t ta_done; - void *ta_data; - const char *ta_peername; - unsigned int ta_timeout_ms; - key_serial_t ta_keyring; - key_serial_t ta_my_cert; - key_serial_t ta_my_privkey; - unsigned int ta_num_peerids; - key_serial_t ta_my_peerids[5]; -}; - -enum { - TLS_ALERT_LEVEL_WARNING = 1, - TLS_ALERT_LEVEL_FATAL = 2, -}; - -enum { - TLS_ALERT_DESC_CLOSE_NOTIFY = 0, - TLS_ALERT_DESC_UNEXPECTED_MESSAGE = 10, - TLS_ALERT_DESC_BAD_RECORD_MAC = 20, - TLS_ALERT_DESC_RECORD_OVERFLOW = 22, - TLS_ALERT_DESC_HANDSHAKE_FAILURE = 40, - TLS_ALERT_DESC_BAD_CERTIFICATE = 42, - TLS_ALERT_DESC_UNSUPPORTED_CERTIFICATE = 43, - TLS_ALERT_DESC_CERTIFICATE_REVOKED = 44, - TLS_ALERT_DESC_CERTIFICATE_EXPIRED = 45, - TLS_ALERT_DESC_CERTIFICATE_UNKNOWN = 46, - TLS_ALERT_DESC_ILLEGAL_PARAMETER = 47, - TLS_ALERT_DESC_UNKNOWN_CA = 48, - TLS_ALERT_DESC_ACCESS_DENIED = 49, - TLS_ALERT_DESC_DECODE_ERROR = 50, - TLS_ALERT_DESC_DECRYPT_ERROR = 51, - TLS_ALERT_DESC_TOO_MANY_CIDS_REQUESTED = 52, - TLS_ALERT_DESC_PROTOCOL_VERSION = 70, - TLS_ALERT_DESC_INSUFFICIENT_SECURITY = 71, - TLS_ALERT_DESC_INTERNAL_ERROR = 80, - TLS_ALERT_DESC_INAPPROPRIATE_FALLBACK = 86, - TLS_ALERT_DESC_USER_CANCELED = 90, - TLS_ALERT_DESC_MISSING_EXTENSION = 109, - TLS_ALERT_DESC_UNSUPPORTED_EXTENSION = 110, - TLS_ALERT_DESC_UNRECOGNIZED_NAME = 112, - TLS_ALERT_DESC_BAD_CERTIFICATE_STATUS_RESPONSE = 113, - TLS_ALERT_DESC_UNKNOWN_PSK_IDENTITY = 115, - TLS_ALERT_DESC_CERTIFICATE_REQUIRED = 116, - TLS_ALERT_DESC_NO_APPLICATION_PROTOCOL = 120, -}; - -enum handshake_handler_class { - HANDSHAKE_HANDLER_CLASS_NONE = 0, - HANDSHAKE_HANDLER_CLASS_TLSHD = 1, - HANDSHAKE_HANDLER_CLASS_MAX = 2, -}; - -enum handshake_msg_type { - HANDSHAKE_MSG_TYPE_UNSPEC = 0, - HANDSHAKE_MSG_TYPE_CLIENTHELLO = 1, - HANDSHAKE_MSG_TYPE_SERVERHELLO = 2, -}; - -enum handshake_auth { - HANDSHAKE_AUTH_UNSPEC = 0, - HANDSHAKE_AUTH_UNAUTH = 1, - HANDSHAKE_AUTH_PSK = 2, - HANDSHAKE_AUTH_X509 = 3, -}; - -enum { - HANDSHAKE_A_X509_CERT = 1, - HANDSHAKE_A_X509_PRIVKEY = 2, - __HANDSHAKE_A_X509_MAX = 3, - HANDSHAKE_A_X509_MAX = 2, -}; - -enum { - HANDSHAKE_A_ACCEPT_SOCKFD = 1, - HANDSHAKE_A_ACCEPT_HANDLER_CLASS = 2, - HANDSHAKE_A_ACCEPT_MESSAGE_TYPE = 3, - HANDSHAKE_A_ACCEPT_TIMEOUT = 4, - HANDSHAKE_A_ACCEPT_AUTH_MODE = 5, - HANDSHAKE_A_ACCEPT_PEER_IDENTITY = 6, - HANDSHAKE_A_ACCEPT_CERTIFICATE = 7, - HANDSHAKE_A_ACCEPT_PEERNAME = 8, - HANDSHAKE_A_ACCEPT_KEYRING = 9, - __HANDSHAKE_A_ACCEPT_MAX = 10, - HANDSHAKE_A_ACCEPT_MAX = 9, -}; - -enum { - HANDSHAKE_A_DONE_STATUS = 1, - HANDSHAKE_A_DONE_SOCKFD = 2, - HANDSHAKE_A_DONE_REMOTE_AUTH = 3, - __HANDSHAKE_A_DONE_MAX = 4, - HANDSHAKE_A_DONE_MAX = 3, -}; - -struct handshake_proto; - -struct handshake_req { - struct list_head hr_list; - struct rhash_head hr_rhash; - long unsigned int hr_flags; - const struct handshake_proto *hr_proto; - struct sock *hr_sk; - void (*hr_odestruct)(struct sock *); - char hr_priv[0]; -}; - -struct handshake_proto { - int hp_handler_class; - size_t hp_privsize; - long unsigned int hp_flags; - int (*hp_accept)(struct handshake_req *, struct genl_info *, int); - void (*hp_done)(struct handshake_req *, unsigned int, struct genl_info *); - void (*hp_destroy)(struct handshake_req *); -}; - -enum hr_flags_bits { - HANDSHAKE_F_REQ_COMPLETED = 0, - HANDSHAKE_F_REQ_SESSION = 1, -}; - -enum hp_flags_bits { - HANDSHAKE_F_PROTO_NOTIFY = 0, -}; - -struct tls_handshake_req { - void (*th_consumer_done)(void *, int, key_serial_t); - void *th_consumer_data; - int th_type; - unsigned int th_timeout_ms; - int th_auth_mode; - const char *th_peername; - key_serial_t th_keyring; - key_serial_t th_certificate; - key_serial_t th_privkey; - unsigned int th_num_peerids; - key_serial_t th_peerid[5]; -}; - -struct pcibios_fwaddrmap { - struct list_head list; - struct pci_dev *dev; - resource_size_t fw_addr[17]; -}; - -struct pci_check_idx_range { - int start; - int end; -}; - -struct pci_root_res { - struct list_head list; - struct resource res; -}; - -struct pci_root_info { - struct list_head list; - char name[12]; - struct list_head resources; - struct resource busn; - int node; - int link; -}; - -struct amd_nb_bus_dev_range { - u8 bus; - u8 dev_base; - u8 dev_limit; -}; - -struct amd_hostbridge { - u32 bus; - u32 slot; - u32 device; -}; - -struct saved_msr { - bool valid; - struct msr_info info; -}; - -struct saved_msrs { - unsigned int num; - struct saved_msr *array; -}; - -struct saved_context { - struct pt_regs regs; - u16 ds; - u16 es; - u16 fs; - u16 gs; - long unsigned int kernelmode_gs_base; - long unsigned int usermode_gs_base; - long unsigned int fs_base; - long unsigned int cr0; - long unsigned int cr2; - long unsigned int cr3; - long unsigned int cr4; - u64 misc_enable; - struct saved_msrs saved_msrs; - long unsigned int efer; - u16 gdt_pad; - struct desc_ptr gdt_desc; - u16 idt_pad; - struct desc_ptr idt; - u16 ldt; - u16 tss; - long unsigned int tr; - long unsigned int safety; - long unsigned int return_address; - bool misc_enable_saved; -} __attribute__((packed)); - -typedef int (*pm_cpu_match_t)(const struct x86_cpu_id *); - -struct msr_enumeration { - u32 msr_no; - u32 feature; -}; - -enum cpio_fields { - C_MAGIC = 0, - C_INO = 1, - C_MODE = 2, - C_UID = 3, - C_GID = 4, - C_NLINK = 5, - C_MTIME = 6, - C_FILESIZE = 7, - C_MAJ = 8, - C_MIN = 9, - C_RMAJ = 10, - C_RMIN = 11, - C_NAMESIZE = 12, - C_CHKSUM = 13, - C_NFIELDS = 14, -}; - -typedef __be32 fdt32_t; - -typedef __be64 fdt64_t; - -struct fdt_header { - fdt32_t magic; - fdt32_t totalsize; - fdt32_t off_dt_struct; - fdt32_t off_dt_strings; - fdt32_t off_mem_rsvmap; - fdt32_t version; - fdt32_t last_comp_version; - fdt32_t boot_cpuid_phys; - fdt32_t size_dt_strings; - fdt32_t size_dt_struct; -}; - -struct fdt_reserve_entry { - fdt64_t address; - fdt64_t size; -}; - -struct fdt_node_header { - fdt32_t tag; - char name[0]; -}; - -struct fdt_property { - fdt32_t tag; - fdt32_t len; - fdt32_t nameoff; - char data[0]; -}; - -enum { - ASSUME_PERFECT = 255, - ASSUME_VALID_DTB = 1, - ASSUME_VALID_INPUT = 2, - ASSUME_LATEST = 4, - ASSUME_NO_ROLLBACK = 8, - ASSUME_LIBFDT_ORDER = 16, - ASSUME_LIBFDT_FLAWLESS = 32, -}; - -struct subprocess_info { - struct work_struct work; - struct completion *complete; - const char *path; - char **argv; - char **envp; - int wait; - int retval; - int (*init)(struct subprocess_info *, struct cred *); - void (*cleanup)(struct subprocess_info *); - void *data; -}; - -struct uevent_sock { - struct list_head list; - struct sock *sk; -}; - -typedef struct { - long unsigned int key[2]; -} hsiphash_key_t; - -struct word_at_a_time { - const long unsigned int one_bits; - const long unsigned int high_bits; -}; - -struct tm { - int tm_sec; - int tm_min; - int tm_hour; - int tm_mday; - int tm_mon; - long int tm_year; - int tm_wday; - int tm_yday; -}; - -struct clk { - struct clk_core *core; - struct device *dev; - const char *dev_id; - const char *con_id; - long unsigned int min_rate; - long unsigned int max_rate; - unsigned int exclusive_count; - struct hlist_node clks_node; -}; - -enum hash_pointers_policy { - HASH_PTR_AUTO = 0, - HASH_PTR_ALWAYS = 1, - HASH_PTR_NEVER = 2, -}; - -enum format_state { - FORMAT_STATE_NONE = 0, - FORMAT_STATE_NUM = 1, - FORMAT_STATE_WIDTH = 2, - FORMAT_STATE_PRECISION = 3, - FORMAT_STATE_CHAR = 4, - FORMAT_STATE_STR = 5, - FORMAT_STATE_PTR = 6, - FORMAT_STATE_PERCENT_CHAR = 7, - FORMAT_STATE_INVALID = 8, -}; - -struct printf_spec { - unsigned char flags; - unsigned char base; - short int precision; - int field_width; -}; - -struct page_flags_fields { - int width; - int shift; - int mask; - const struct printf_spec *spec; - const char *name; -}; - -struct fmt { - const char *str; - unsigned char state; - unsigned char size; -}; - -struct format_state___2 { - unsigned char state; - unsigned char size; - unsigned char flags_or_double_size; - unsigned char base; -}; - -typedef int (*initcall_t)(void); - -typedef int initcall_entry_t; - -struct trace_event_raw_initcall_level { - struct trace_entry ent; - u32 __data_loc_level; - char __data[0]; -}; - -struct trace_event_raw_initcall_start { - struct trace_entry ent; - initcall_t func; - char __data[0]; -}; - -struct trace_event_raw_initcall_finish { - struct trace_entry ent; - initcall_t func; - int ret; - char __data[0]; -}; - -struct trace_event_data_offsets_initcall_level { - u32 level; - const void *level_ptr_; -}; - -struct trace_event_data_offsets_initcall_start {}; - -struct trace_event_data_offsets_initcall_finish {}; - -typedef void (*btf_trace_initcall_level)(void *, const char *); - -typedef void (*btf_trace_initcall_start)(void *, initcall_t); - -typedef void (*btf_trace_initcall_finish)(void *, initcall_t, int); - -struct blacklist_entry { - struct list_head next; - char *buf; -}; - -struct perf_amd_iommu { - struct list_head list; - struct pmu pmu; - struct amd_iommu *iommu; - char name[24]; - u8 max_banks; - u8 max_counters; - u64 cntr_assign_mask; - raw_spinlock_t lock; -}; - -struct amd_iommu_event_desc { - struct device_attribute attr; - const char *event; -}; - -enum P4_EVENTS { - P4_EVENT_TC_DELIVER_MODE = 0, - P4_EVENT_BPU_FETCH_REQUEST = 1, - P4_EVENT_ITLB_REFERENCE = 2, - P4_EVENT_MEMORY_CANCEL = 3, - P4_EVENT_MEMORY_COMPLETE = 4, - P4_EVENT_LOAD_PORT_REPLAY = 5, - P4_EVENT_STORE_PORT_REPLAY = 6, - P4_EVENT_MOB_LOAD_REPLAY = 7, - P4_EVENT_PAGE_WALK_TYPE = 8, - P4_EVENT_BSQ_CACHE_REFERENCE = 9, - P4_EVENT_IOQ_ALLOCATION = 10, - P4_EVENT_IOQ_ACTIVE_ENTRIES = 11, - P4_EVENT_FSB_DATA_ACTIVITY = 12, - P4_EVENT_BSQ_ALLOCATION = 13, - P4_EVENT_BSQ_ACTIVE_ENTRIES = 14, - P4_EVENT_SSE_INPUT_ASSIST = 15, - P4_EVENT_PACKED_SP_UOP = 16, - P4_EVENT_PACKED_DP_UOP = 17, - P4_EVENT_SCALAR_SP_UOP = 18, - P4_EVENT_SCALAR_DP_UOP = 19, - P4_EVENT_64BIT_MMX_UOP = 20, - P4_EVENT_128BIT_MMX_UOP = 21, - P4_EVENT_X87_FP_UOP = 22, - P4_EVENT_TC_MISC = 23, - P4_EVENT_GLOBAL_POWER_EVENTS = 24, - P4_EVENT_TC_MS_XFER = 25, - P4_EVENT_UOP_QUEUE_WRITES = 26, - P4_EVENT_RETIRED_MISPRED_BRANCH_TYPE = 27, - P4_EVENT_RETIRED_BRANCH_TYPE = 28, - P4_EVENT_RESOURCE_STALL = 29, - P4_EVENT_WC_BUFFER = 30, - P4_EVENT_B2B_CYCLES = 31, - P4_EVENT_BNR = 32, - P4_EVENT_SNOOP = 33, - P4_EVENT_RESPONSE = 34, - P4_EVENT_FRONT_END_EVENT = 35, - P4_EVENT_EXECUTION_EVENT = 36, - P4_EVENT_REPLAY_EVENT = 37, - P4_EVENT_INSTR_RETIRED = 38, - P4_EVENT_UOPS_RETIRED = 39, - P4_EVENT_UOP_TYPE = 40, - P4_EVENT_BRANCH_RETIRED = 41, - P4_EVENT_MISPRED_BRANCH_RETIRED = 42, - P4_EVENT_X87_ASSIST = 43, - P4_EVENT_MACHINE_CLEAR = 44, - P4_EVENT_INSTR_COMPLETED = 45, -}; - -enum P4_EVENT_OPCODES { - P4_EVENT_TC_DELIVER_MODE_OPCODE = 257, - P4_EVENT_BPU_FETCH_REQUEST_OPCODE = 768, - P4_EVENT_ITLB_REFERENCE_OPCODE = 6147, - P4_EVENT_MEMORY_CANCEL_OPCODE = 517, - P4_EVENT_MEMORY_COMPLETE_OPCODE = 2050, - P4_EVENT_LOAD_PORT_REPLAY_OPCODE = 1026, - P4_EVENT_STORE_PORT_REPLAY_OPCODE = 1282, - P4_EVENT_MOB_LOAD_REPLAY_OPCODE = 770, - P4_EVENT_PAGE_WALK_TYPE_OPCODE = 260, - P4_EVENT_BSQ_CACHE_REFERENCE_OPCODE = 3079, - P4_EVENT_IOQ_ALLOCATION_OPCODE = 774, - P4_EVENT_IOQ_ACTIVE_ENTRIES_OPCODE = 6662, - P4_EVENT_FSB_DATA_ACTIVITY_OPCODE = 5894, - P4_EVENT_BSQ_ALLOCATION_OPCODE = 1287, - P4_EVENT_BSQ_ACTIVE_ENTRIES_OPCODE = 1543, - P4_EVENT_SSE_INPUT_ASSIST_OPCODE = 13313, - P4_EVENT_PACKED_SP_UOP_OPCODE = 2049, - P4_EVENT_PACKED_DP_UOP_OPCODE = 3073, - P4_EVENT_SCALAR_SP_UOP_OPCODE = 2561, - P4_EVENT_SCALAR_DP_UOP_OPCODE = 3585, - P4_EVENT_64BIT_MMX_UOP_OPCODE = 513, - P4_EVENT_128BIT_MMX_UOP_OPCODE = 6657, - P4_EVENT_X87_FP_UOP_OPCODE = 1025, - P4_EVENT_TC_MISC_OPCODE = 1537, - P4_EVENT_GLOBAL_POWER_EVENTS_OPCODE = 4870, - P4_EVENT_TC_MS_XFER_OPCODE = 1280, - P4_EVENT_UOP_QUEUE_WRITES_OPCODE = 2304, - P4_EVENT_RETIRED_MISPRED_BRANCH_TYPE_OPCODE = 1282, - P4_EVENT_RETIRED_BRANCH_TYPE_OPCODE = 1026, - P4_EVENT_RESOURCE_STALL_OPCODE = 257, - P4_EVENT_WC_BUFFER_OPCODE = 1285, - P4_EVENT_B2B_CYCLES_OPCODE = 5635, - P4_EVENT_BNR_OPCODE = 2051, - P4_EVENT_SNOOP_OPCODE = 1539, - P4_EVENT_RESPONSE_OPCODE = 1027, - P4_EVENT_FRONT_END_EVENT_OPCODE = 2053, - P4_EVENT_EXECUTION_EVENT_OPCODE = 3077, - P4_EVENT_REPLAY_EVENT_OPCODE = 2309, - P4_EVENT_INSTR_RETIRED_OPCODE = 516, - P4_EVENT_UOPS_RETIRED_OPCODE = 260, - P4_EVENT_UOP_TYPE_OPCODE = 514, - P4_EVENT_BRANCH_RETIRED_OPCODE = 1541, - P4_EVENT_MISPRED_BRANCH_RETIRED_OPCODE = 772, - P4_EVENT_X87_ASSIST_OPCODE = 773, - P4_EVENT_MACHINE_CLEAR_OPCODE = 517, - P4_EVENT_INSTR_COMPLETED_OPCODE = 1796, -}; - -enum P4_ESCR_EMASKS { - P4_EVENT_TC_DELIVER_MODE__DD = 512, - P4_EVENT_TC_DELIVER_MODE__DB = 1024, - P4_EVENT_TC_DELIVER_MODE__DI = 2048, - P4_EVENT_TC_DELIVER_MODE__BD = 4096, - P4_EVENT_TC_DELIVER_MODE__BB = 8192, - P4_EVENT_TC_DELIVER_MODE__BI = 16384, - P4_EVENT_TC_DELIVER_MODE__ID = 32768, - P4_EVENT_BPU_FETCH_REQUEST__TCMISS = 512, - P4_EVENT_ITLB_REFERENCE__HIT = 512, - P4_EVENT_ITLB_REFERENCE__MISS = 1024, - P4_EVENT_ITLB_REFERENCE__HIT_UK = 2048, - P4_EVENT_MEMORY_CANCEL__ST_RB_FULL = 2048, - P4_EVENT_MEMORY_CANCEL__64K_CONF = 4096, - P4_EVENT_MEMORY_COMPLETE__LSC = 512, - P4_EVENT_MEMORY_COMPLETE__SSC = 1024, - P4_EVENT_LOAD_PORT_REPLAY__SPLIT_LD = 1024, - P4_EVENT_STORE_PORT_REPLAY__SPLIT_ST = 1024, - P4_EVENT_MOB_LOAD_REPLAY__NO_STA = 1024, - P4_EVENT_MOB_LOAD_REPLAY__NO_STD = 4096, - P4_EVENT_MOB_LOAD_REPLAY__PARTIAL_DATA = 8192, - P4_EVENT_MOB_LOAD_REPLAY__UNALGN_ADDR = 16384, - P4_EVENT_PAGE_WALK_TYPE__DTMISS = 512, - P4_EVENT_PAGE_WALK_TYPE__ITMISS = 1024, - P4_EVENT_BSQ_CACHE_REFERENCE__RD_2ndL_HITS = 512, - P4_EVENT_BSQ_CACHE_REFERENCE__RD_2ndL_HITE = 1024, - P4_EVENT_BSQ_CACHE_REFERENCE__RD_2ndL_HITM = 2048, - P4_EVENT_BSQ_CACHE_REFERENCE__RD_3rdL_HITS = 4096, - P4_EVENT_BSQ_CACHE_REFERENCE__RD_3rdL_HITE = 8192, - P4_EVENT_BSQ_CACHE_REFERENCE__RD_3rdL_HITM = 16384, - P4_EVENT_BSQ_CACHE_REFERENCE__RD_2ndL_MISS = 131072, - P4_EVENT_BSQ_CACHE_REFERENCE__RD_3rdL_MISS = 262144, - P4_EVENT_BSQ_CACHE_REFERENCE__WR_2ndL_MISS = 524288, - P4_EVENT_IOQ_ALLOCATION__DEFAULT = 512, - P4_EVENT_IOQ_ALLOCATION__ALL_READ = 16384, - P4_EVENT_IOQ_ALLOCATION__ALL_WRITE = 32768, - P4_EVENT_IOQ_ALLOCATION__MEM_UC = 65536, - P4_EVENT_IOQ_ALLOCATION__MEM_WC = 131072, - P4_EVENT_IOQ_ALLOCATION__MEM_WT = 262144, - P4_EVENT_IOQ_ALLOCATION__MEM_WP = 524288, - P4_EVENT_IOQ_ALLOCATION__MEM_WB = 1048576, - P4_EVENT_IOQ_ALLOCATION__OWN = 4194304, - P4_EVENT_IOQ_ALLOCATION__OTHER = 8388608, - P4_EVENT_IOQ_ALLOCATION__PREFETCH = 16777216, - P4_EVENT_IOQ_ACTIVE_ENTRIES__DEFAULT = 512, - P4_EVENT_IOQ_ACTIVE_ENTRIES__ALL_READ = 16384, - P4_EVENT_IOQ_ACTIVE_ENTRIES__ALL_WRITE = 32768, - P4_EVENT_IOQ_ACTIVE_ENTRIES__MEM_UC = 65536, - P4_EVENT_IOQ_ACTIVE_ENTRIES__MEM_WC = 131072, - P4_EVENT_IOQ_ACTIVE_ENTRIES__MEM_WT = 262144, - P4_EVENT_IOQ_ACTIVE_ENTRIES__MEM_WP = 524288, - P4_EVENT_IOQ_ACTIVE_ENTRIES__MEM_WB = 1048576, - P4_EVENT_IOQ_ACTIVE_ENTRIES__OWN = 4194304, - P4_EVENT_IOQ_ACTIVE_ENTRIES__OTHER = 8388608, - P4_EVENT_IOQ_ACTIVE_ENTRIES__PREFETCH = 16777216, - P4_EVENT_FSB_DATA_ACTIVITY__DRDY_DRV = 512, - P4_EVENT_FSB_DATA_ACTIVITY__DRDY_OWN = 1024, - P4_EVENT_FSB_DATA_ACTIVITY__DRDY_OTHER = 2048, - P4_EVENT_FSB_DATA_ACTIVITY__DBSY_DRV = 4096, - P4_EVENT_FSB_DATA_ACTIVITY__DBSY_OWN = 8192, - P4_EVENT_FSB_DATA_ACTIVITY__DBSY_OTHER = 16384, - P4_EVENT_BSQ_ALLOCATION__REQ_TYPE0 = 512, - P4_EVENT_BSQ_ALLOCATION__REQ_TYPE1 = 1024, - P4_EVENT_BSQ_ALLOCATION__REQ_LEN0 = 2048, - P4_EVENT_BSQ_ALLOCATION__REQ_LEN1 = 4096, - P4_EVENT_BSQ_ALLOCATION__REQ_IO_TYPE = 16384, - P4_EVENT_BSQ_ALLOCATION__REQ_LOCK_TYPE = 32768, - P4_EVENT_BSQ_ALLOCATION__REQ_CACHE_TYPE = 65536, - P4_EVENT_BSQ_ALLOCATION__REQ_SPLIT_TYPE = 131072, - P4_EVENT_BSQ_ALLOCATION__REQ_DEM_TYPE = 262144, - P4_EVENT_BSQ_ALLOCATION__REQ_ORD_TYPE = 524288, - P4_EVENT_BSQ_ALLOCATION__MEM_TYPE0 = 1048576, - P4_EVENT_BSQ_ALLOCATION__MEM_TYPE1 = 2097152, - P4_EVENT_BSQ_ALLOCATION__MEM_TYPE2 = 4194304, - P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_TYPE0 = 512, - P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_TYPE1 = 1024, - P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_LEN0 = 2048, - P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_LEN1 = 4096, - P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_IO_TYPE = 16384, - P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_LOCK_TYPE = 32768, - P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_CACHE_TYPE = 65536, - P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_SPLIT_TYPE = 131072, - P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_DEM_TYPE = 262144, - P4_EVENT_BSQ_ACTIVE_ENTRIES__REQ_ORD_TYPE = 524288, - P4_EVENT_BSQ_ACTIVE_ENTRIES__MEM_TYPE0 = 1048576, - P4_EVENT_BSQ_ACTIVE_ENTRIES__MEM_TYPE1 = 2097152, - P4_EVENT_BSQ_ACTIVE_ENTRIES__MEM_TYPE2 = 4194304, - P4_EVENT_SSE_INPUT_ASSIST__ALL = 16777216, - P4_EVENT_PACKED_SP_UOP__ALL = 16777216, - P4_EVENT_PACKED_DP_UOP__ALL = 16777216, - P4_EVENT_SCALAR_SP_UOP__ALL = 16777216, - P4_EVENT_SCALAR_DP_UOP__ALL = 16777216, - P4_EVENT_64BIT_MMX_UOP__ALL = 16777216, - P4_EVENT_128BIT_MMX_UOP__ALL = 16777216, - P4_EVENT_X87_FP_UOP__ALL = 16777216, - P4_EVENT_TC_MISC__FLUSH = 8192, - P4_EVENT_GLOBAL_POWER_EVENTS__RUNNING = 512, - P4_EVENT_TC_MS_XFER__CISC = 512, - P4_EVENT_UOP_QUEUE_WRITES__FROM_TC_BUILD = 512, - P4_EVENT_UOP_QUEUE_WRITES__FROM_TC_DELIVER = 1024, - P4_EVENT_UOP_QUEUE_WRITES__FROM_ROM = 2048, - P4_EVENT_RETIRED_MISPRED_BRANCH_TYPE__CONDITIONAL = 1024, - P4_EVENT_RETIRED_MISPRED_BRANCH_TYPE__CALL = 2048, - P4_EVENT_RETIRED_MISPRED_BRANCH_TYPE__RETURN = 4096, - P4_EVENT_RETIRED_MISPRED_BRANCH_TYPE__INDIRECT = 8192, - P4_EVENT_RETIRED_BRANCH_TYPE__CONDITIONAL = 1024, - P4_EVENT_RETIRED_BRANCH_TYPE__CALL = 2048, - P4_EVENT_RETIRED_BRANCH_TYPE__RETURN = 4096, - P4_EVENT_RETIRED_BRANCH_TYPE__INDIRECT = 8192, - P4_EVENT_RESOURCE_STALL__SBFULL = 16384, - P4_EVENT_WC_BUFFER__WCB_EVICTS = 512, - P4_EVENT_WC_BUFFER__WCB_FULL_EVICTS = 1024, - P4_EVENT_FRONT_END_EVENT__NBOGUS = 512, - P4_EVENT_FRONT_END_EVENT__BOGUS = 1024, - P4_EVENT_EXECUTION_EVENT__NBOGUS0 = 512, - P4_EVENT_EXECUTION_EVENT__NBOGUS1 = 1024, - P4_EVENT_EXECUTION_EVENT__NBOGUS2 = 2048, - P4_EVENT_EXECUTION_EVENT__NBOGUS3 = 4096, - P4_EVENT_EXECUTION_EVENT__BOGUS0 = 8192, - P4_EVENT_EXECUTION_EVENT__BOGUS1 = 16384, - P4_EVENT_EXECUTION_EVENT__BOGUS2 = 32768, - P4_EVENT_EXECUTION_EVENT__BOGUS3 = 65536, - P4_EVENT_REPLAY_EVENT__NBOGUS = 512, - P4_EVENT_REPLAY_EVENT__BOGUS = 1024, - P4_EVENT_INSTR_RETIRED__NBOGUSNTAG = 512, - P4_EVENT_INSTR_RETIRED__NBOGUSTAG = 1024, - P4_EVENT_INSTR_RETIRED__BOGUSNTAG = 2048, - P4_EVENT_INSTR_RETIRED__BOGUSTAG = 4096, - P4_EVENT_UOPS_RETIRED__NBOGUS = 512, - P4_EVENT_UOPS_RETIRED__BOGUS = 1024, - P4_EVENT_UOP_TYPE__TAGLOADS = 1024, - P4_EVENT_UOP_TYPE__TAGSTORES = 2048, - P4_EVENT_BRANCH_RETIRED__MMNP = 512, - P4_EVENT_BRANCH_RETIRED__MMNM = 1024, - P4_EVENT_BRANCH_RETIRED__MMTP = 2048, - P4_EVENT_BRANCH_RETIRED__MMTM = 4096, - P4_EVENT_MISPRED_BRANCH_RETIRED__NBOGUS = 512, - P4_EVENT_X87_ASSIST__FPSU = 512, - P4_EVENT_X87_ASSIST__FPSO = 1024, - P4_EVENT_X87_ASSIST__POAO = 2048, - P4_EVENT_X87_ASSIST__POAU = 4096, - P4_EVENT_X87_ASSIST__PREA = 8192, - P4_EVENT_MACHINE_CLEAR__CLEAR = 512, - P4_EVENT_MACHINE_CLEAR__MOCLEAR = 1024, - P4_EVENT_MACHINE_CLEAR__SMCLEAR = 2048, - P4_EVENT_INSTR_COMPLETED__NBOGUS = 512, - P4_EVENT_INSTR_COMPLETED__BOGUS = 1024, -}; - -enum P4_PEBS_METRIC { - P4_PEBS_METRIC__none = 0, - P4_PEBS_METRIC__1stl_cache_load_miss_retired = 1, - P4_PEBS_METRIC__2ndl_cache_load_miss_retired = 2, - P4_PEBS_METRIC__dtlb_load_miss_retired = 3, - P4_PEBS_METRIC__dtlb_store_miss_retired = 4, - P4_PEBS_METRIC__dtlb_all_miss_retired = 5, - P4_PEBS_METRIC__tagged_mispred_branch = 6, - P4_PEBS_METRIC__mob_load_replay_retired = 7, - P4_PEBS_METRIC__split_load_retired = 8, - P4_PEBS_METRIC__split_store_retired = 9, - P4_PEBS_METRIC__max = 10, -}; - -struct p4_event_bind { - unsigned int opcode; - unsigned int escr_msr[2]; - unsigned int escr_emask; - unsigned int shared; - signed char cntr[6]; -}; - -struct p4_pebs_bind { - unsigned int metric_pebs; - unsigned int metric_vert; -}; - -struct p4_event_alias { - u64 original; - u64 alternative; -}; - -enum { - EXTRA_REG_NHMEX_M_FILTER = 0, - EXTRA_REG_NHMEX_M_DSP = 1, - EXTRA_REG_NHMEX_M_ISS = 2, - EXTRA_REG_NHMEX_M_MAP = 3, - EXTRA_REG_NHMEX_M_MSC_THR = 4, - EXTRA_REG_NHMEX_M_PGT = 5, - EXTRA_REG_NHMEX_M_PLD = 6, - EXTRA_REG_NHMEX_M_ZDP_CTL_FVC = 7, -}; - -enum uncore_access_type { - UNCORE_ACCESS_MSR = 0, - UNCORE_ACCESS_MMIO = 1, - UNCORE_ACCESS_PCI = 2, - UNCORE_ACCESS_MAX = 3, -}; - -struct uncore_global_discovery { - union { - u64 table1; - struct { - u64 type: 8; - u64 stride: 8; - u64 max_units: 10; - u64 __reserved_1: 36; - u64 access_type: 2; - }; - }; - u64 ctl; - union { - u64 table3; - struct { - u64 status_offset: 8; - u64 num_status: 16; - u64 __reserved_2: 40; - }; - }; -}; - -struct uncore_unit_discovery { - union { - u64 table1; - struct { - u64 num_regs: 8; - u64 ctl_offset: 8; - u64 bit_width: 8; - u64 ctr_offset: 8; - u64 status_offset: 8; - u64 __reserved_1: 22; - u64 access_type: 2; - }; - }; - u64 ctl; - union { - u64 table3; - struct { - u64 box_type: 16; - u64 box_id: 16; - u64 __reserved_2: 32; - }; - }; -}; - -struct intel_uncore_discovery_type { - struct rb_node node; - enum uncore_access_type access_type; - struct rb_root units; - u16 type; - u8 num_counters; - u8 counter_width; - u8 ctl_offset; - u8 ctr_offset; - u16 num_units; -}; - -struct hv_guest_mapping_flush { - u64 address_space; - u64 flags; -}; - -union hv_gpa_page_range { - u64 address_space; - struct { - u64 additional_pages: 11; - u64 largepage: 1; - u64 basepfn: 52; - } page; - struct { - u64 reserved: 12; - u64 page_size: 1; - u64 reserved1: 8; - u64 base_large_pfn: 43; - }; -}; - -struct hv_guest_mapping_flush_list { - u64 address_space; - u64 flags; - union hv_gpa_page_range gpa_list[510]; -}; - -typedef int (*hyperv_fill_flush_list_func)(struct hv_guest_mapping_flush_list *, void *); - -enum x86_hardware_subarch { - X86_SUBARCH_PC = 0, - X86_SUBARCH_LGUEST = 1, - X86_SUBARCH_XEN = 2, - X86_SUBARCH_INTEL_MID = 3, - X86_SUBARCH_CE4100 = 4, - X86_NR_SUBARCHS = 5, -}; - -struct kernel_vm86_regs { - struct pt_regs pt; - short unsigned int es; - short unsigned int __esh; - short unsigned int ds; - short unsigned int __dsh; - short unsigned int fs; - short unsigned int __fsh; - short unsigned int gs; - short unsigned int __gsh; -}; - -struct trace_event_raw_x86_irq_vector { - struct trace_entry ent; - int vector; - char __data[0]; -}; - -struct trace_event_raw_vector_config { - struct trace_entry ent; - unsigned int irq; - unsigned int vector; - unsigned int cpu; - unsigned int apicdest; - char __data[0]; -}; - -struct trace_event_raw_vector_mod { - struct trace_entry ent; - unsigned int irq; - unsigned int vector; - unsigned int cpu; - unsigned int prev_vector; - unsigned int prev_cpu; - char __data[0]; -}; - -struct trace_event_raw_vector_reserve { - struct trace_entry ent; - unsigned int irq; - int ret; - char __data[0]; -}; - -struct trace_event_raw_vector_alloc { - struct trace_entry ent; - unsigned int irq; - unsigned int vector; - bool reserved; - int ret; - char __data[0]; -}; - -struct trace_event_raw_vector_alloc_managed { - struct trace_entry ent; - unsigned int irq; - unsigned int vector; - int ret; - char __data[0]; -}; - -struct trace_event_raw_vector_activate { - struct trace_entry ent; - unsigned int irq; - bool is_managed; - bool can_reserve; - bool reserve; - char __data[0]; -}; - -struct trace_event_raw_vector_teardown { - struct trace_entry ent; - unsigned int irq; - bool is_managed; - bool has_reserved; - char __data[0]; -}; - -struct trace_event_raw_vector_setup { - struct trace_entry ent; - unsigned int irq; - bool is_legacy; - int ret; - char __data[0]; -}; - -struct trace_event_raw_vector_free_moved { - struct trace_entry ent; - unsigned int irq; - unsigned int cpu; - unsigned int vector; - bool is_managed; - char __data[0]; -}; - -struct trace_event_data_offsets_x86_irq_vector {}; - -struct trace_event_data_offsets_vector_config {}; - -struct trace_event_data_offsets_vector_mod {}; - -struct trace_event_data_offsets_vector_reserve {}; - -struct trace_event_data_offsets_vector_alloc {}; - -struct trace_event_data_offsets_vector_alloc_managed {}; - -struct trace_event_data_offsets_vector_activate {}; - -struct trace_event_data_offsets_vector_teardown {}; - -struct trace_event_data_offsets_vector_setup {}; - -struct trace_event_data_offsets_vector_free_moved {}; - -typedef void (*btf_trace_local_timer_entry)(void *, int); - -typedef void (*btf_trace_local_timer_exit)(void *, int); - -typedef void (*btf_trace_spurious_apic_entry)(void *, int); - -typedef void (*btf_trace_spurious_apic_exit)(void *, int); - -typedef void (*btf_trace_error_apic_entry)(void *, int); - -typedef void (*btf_trace_error_apic_exit)(void *, int); - -typedef void (*btf_trace_x86_platform_ipi_entry)(void *, int); - -typedef void (*btf_trace_x86_platform_ipi_exit)(void *, int); - -typedef void (*btf_trace_irq_work_entry)(void *, int); - -typedef void (*btf_trace_irq_work_exit)(void *, int); - -typedef void (*btf_trace_reschedule_entry)(void *, int); - -typedef void (*btf_trace_reschedule_exit)(void *, int); - -typedef void (*btf_trace_call_function_entry)(void *, int); - -typedef void (*btf_trace_call_function_exit)(void *, int); - -typedef void (*btf_trace_call_function_single_entry)(void *, int); - -typedef void (*btf_trace_call_function_single_exit)(void *, int); - -typedef void (*btf_trace_threshold_apic_entry)(void *, int); - -typedef void (*btf_trace_threshold_apic_exit)(void *, int); - -typedef void (*btf_trace_deferred_error_apic_entry)(void *, int); - -typedef void (*btf_trace_deferred_error_apic_exit)(void *, int); - -typedef void (*btf_trace_thermal_apic_entry)(void *, int); - -typedef void (*btf_trace_thermal_apic_exit)(void *, int); - -typedef void (*btf_trace_vector_config)(void *, unsigned int, unsigned int, unsigned int, unsigned int); - -typedef void (*btf_trace_vector_update)(void *, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int); - -typedef void (*btf_trace_vector_clear)(void *, unsigned int, unsigned int, unsigned int, unsigned int, unsigned int); - -typedef void (*btf_trace_vector_reserve_managed)(void *, unsigned int, int); - -typedef void (*btf_trace_vector_reserve)(void *, unsigned int, int); - -typedef void (*btf_trace_vector_alloc)(void *, unsigned int, unsigned int, bool, int); - -typedef void (*btf_trace_vector_alloc_managed)(void *, unsigned int, unsigned int, int); - -typedef void (*btf_trace_vector_activate)(void *, unsigned int, bool, bool, bool); - -typedef void (*btf_trace_vector_deactivate)(void *, unsigned int, bool, bool, bool); - -typedef void (*btf_trace_vector_teardown)(void *, unsigned int, bool, bool); - -typedef void (*btf_trace_vector_setup)(void *, unsigned int, bool, int); - -typedef void (*btf_trace_vector_free_moved)(void *, unsigned int, unsigned int, unsigned int, bool); - -struct ima_setup_data { - __u64 addr; - __u64 size; -}; - -struct kho_data { - __u64 fdt_addr; - __u64 fdt_size; - __u64 scratch_addr; - __u64 scratch_size; -}; - -struct edd { - unsigned int mbr_signature[16]; - struct edd_info edd_info[6]; - unsigned char mbr_signature_nr; - unsigned char edd_info_nr; -}; - -enum jump_label_type { - JUMP_LABEL_NOP = 0, - JUMP_LABEL_JMP = 1, -}; - -struct jump_label_patch { - const void *code; - int size; -}; - -enum { - NONE_FORCE_HPET_RESUME = 0, - OLD_ICH_FORCE_HPET_RESUME = 1, - ICH_FORCE_HPET_RESUME = 2, - VT8237_FORCE_HPET_RESUME = 3, - NVIDIA_FORCE_HPET_RESUME = 4, - ATI_FORCE_HPET_RESUME = 5, -}; - -struct user_desc { - unsigned int entry_number; - unsigned int base_addr; - unsigned int limit; - unsigned int seg_32bit: 1; - unsigned int contents: 2; - unsigned int read_exec_only: 1; - unsigned int limit_in_pages: 1; - unsigned int seg_not_present: 1; - unsigned int useable: 1; - unsigned int lm: 1; -}; - -struct fork_frame { - struct inactive_task_frame frame; - struct pt_regs regs; -}; - -struct ssb_state { - struct ssb_state *shared_state; - raw_spinlock_t lock; - unsigned int disable_state; - long unsigned int local_state; -}; - -struct stack_frame_user { - const void *next_fp; - long unsigned int ret_addr; -}; - -struct cpuid_bit { - u16 feature; - u8 reg; - u8 bit; - u32 level; - u32 sub_leaf; -}; - -struct x86_topology_system { - unsigned int dom_shifts[7]; - unsigned int dom_size[7]; -}; - -struct aperfmperf { - seqcount_t seq; - long unsigned int last_update; - u64 acnt; - u64 mcnt; - u64 aperf; - u64 mperf; -}; - -struct arch_hybrid_cpu_scale { - long unsigned int capacity; - long unsigned int freq_ratio; -}; - -struct leaf_0x2_reg { - int: 31; - u32 invalid: 1; -}; - -union leaf_0x2_regs { - struct leaf_0x2_reg reg[4]; - u32 regv[4]; - u8 desc[16]; -}; - -enum _cache_table_type { - CACHE_L1_INST = 1, - CACHE_L1_DATA = 2, - CACHE_L2 = 3, - CACHE_L3 = 4, -} __attribute__((mode(byte))); - -enum _tlb_table_type { - TLB_INST_4K = 5, - TLB_INST_4M = 6, - TLB_INST_2M_4M = 7, - TLB_INST_ALL = 8, - TLB_DATA_4K = 9, - TLB_DATA_4M = 10, - TLB_DATA_2M_4M = 11, - TLB_DATA_4K_4M = 12, - TLB_DATA_1G = 13, - TLB_DATA_1G_2M_4M = 14, - TLB_DATA0_4K = 15, - TLB_DATA0_4M = 16, - TLB_DATA0_2M_4M = 17, - STLB_4K = 18, - STLB_4K_2M = 19, -} __attribute__((mode(byte))); - -struct leaf_0x2_table { - union { - enum _cache_table_type c_type; - enum _tlb_table_type t_type; - }; - union { - short int c_size; - short int entries; - }; -}; - -struct sku_microcode { - u32 vfm; - u8 stepping; - u32 microcode; -}; - -enum smca_bank_types { - SMCA_LS = 0, - SMCA_LS_V2 = 1, - SMCA_IF = 2, - SMCA_L2_CACHE = 3, - SMCA_DE = 4, - SMCA_RESERVED = 5, - SMCA_EX = 6, - SMCA_FP = 7, - SMCA_L3_CACHE = 8, - SMCA_CS = 9, - SMCA_CS_V2 = 10, - SMCA_PIE = 11, - SMCA_UMC = 12, - SMCA_UMC_V2 = 13, - SMCA_MA_LLC = 14, - SMCA_PB = 15, - SMCA_PSP = 16, - SMCA_PSP_V2 = 17, - SMCA_SMU = 18, - SMCA_SMU_V2 = 19, - SMCA_MP5 = 20, - SMCA_MPDMA = 21, - SMCA_NBIO = 22, - SMCA_PCIE = 23, - SMCA_PCIE_V2 = 24, - SMCA_XGMI_PCS = 25, - SMCA_NBIF = 26, - SMCA_SHUB = 27, - SMCA_SATA = 28, - SMCA_USB = 29, - SMCA_USR_DP = 30, - SMCA_USR_CP = 31, - SMCA_GMI_PCS = 32, - SMCA_XGMI_PHY = 33, - SMCA_WAFL_PHY = 34, - SMCA_GMI_PHY = 35, - N_SMCA_BANK_TYPES = 36, -}; - -struct mce_bank { - u64 ctl; - __u64 init: 1; - __u64 lsb_in_status: 1; - __u64 __reserved_1: 62; -}; - -enum mca_msr { - MCA_CTL = 0, - MCA_STATUS = 1, - MCA_ADDR = 2, - MCA_MISC = 3, -}; - -struct smca_hwid { - unsigned int bank_type; - u32 hwid_mcatype; -}; - -struct smca_bank { - const struct smca_hwid *hwid; - u32 id; - u8 sysfs_id; -}; - -struct threshold_block { - unsigned int block; - unsigned int bank; - unsigned int cpu; - u32 address; - bool interrupt_enable; - bool interrupt_capable; - u16 threshold_limit; - struct kobject kobj; - struct list_head miscj; -}; - -struct threshold_bank { - struct kobject *kobj; - struct threshold_block *blocks; -}; - -struct thresh_restart { - struct threshold_block *b; - int set_lvt_off; - int lvt_off; - u16 old_limit; -}; - -struct threshold_attr { - struct attribute attr; - ssize_t (*show)(struct threshold_block *, char *); - ssize_t (*store)(struct threshold_block *, const char *, size_t); -}; - -struct mce_log_buffer { - char signature[12]; - unsigned int len; - unsigned int next; - unsigned int flags; - unsigned int recordlen; - struct mce entry[0]; -}; - -enum mce_notifier_prios { - MCE_PRIO_LOWEST = 0, - MCE_PRIO_MCELOG = 1, - MCE_PRIO_EDAC = 2, - MCE_PRIO_NFIT = 3, - MCE_PRIO_EXTLOG = 4, - MCE_PRIO_UC = 5, - MCE_PRIO_EARLY = 6, - MCE_PRIO_CEC = 7, - MCE_PRIO_HIGHEST = 7, -}; - -struct mtrr_state_type { - struct mtrr_var_range var_ranges[256]; - mtrr_type fixed_ranges[88]; - unsigned char enabled; - bool have_fixed; - mtrr_type def_type; -}; - -struct mtrr_ops { - u32 var_regs; - void (*set)(unsigned int, long unsigned int, long unsigned int, mtrr_type); - void (*get)(unsigned int, long unsigned int *, long unsigned int *, mtrr_type *); - int (*get_free_region)(long unsigned int, long unsigned int, int); - int (*validate_add_page)(long unsigned int, long unsigned int, unsigned int); - int (*have_wrcomb)(void); -}; - -struct var_mtrr_range_state { - long unsigned int base_pfn; - long unsigned int size_pfn; - mtrr_type type; -}; - -struct var_mtrr_state { - long unsigned int range_startk; - long unsigned int range_sizek; - long unsigned int chunk_sizek; - long unsigned int gran_sizek; - unsigned int reg; -}; - -struct mtrr_cleanup_result { - long unsigned int gran_sizek; - long unsigned int chunk_sizek; - long unsigned int lose_cover_sizek; - unsigned int num_reg; - int bad; -}; - -struct cpu_cacheinfo { - struct cacheinfo *info_list; - unsigned int per_cpu_data_slice_size; - unsigned int num_levels; - unsigned int num_leaves; - bool cpu_map_populated; - bool early_ci_levels; -}; - -struct arch_mbm_state { - u64 chunks; - u64 prev_msr; -}; - -struct rdt_hw_mon_domain { - struct rdt_mon_domain d_resctrl; - struct arch_mbm_state *arch_mbm_total; - struct arch_mbm_state *arch_mbm_local; -}; - -union cpuid_0x10_1_eax { - struct { - unsigned int cbm_len: 5; - } split; - unsigned int full; -}; - -union cpuid_0x10_3_eax { - struct { - unsigned int max_delay: 12; - } split; - unsigned int full; -}; - -union cpuid_0x10_x_ecx { - struct { - unsigned int reserved: 3; - unsigned int noncont: 1; - } split; - unsigned int full; -}; - -union cpuid_0x10_x_edx { - struct { - unsigned int cos_max: 16; - } split; - unsigned int full; -}; - -enum { - RDT_FLAG_CMT = 0, - RDT_FLAG_MBM_TOTAL = 1, - RDT_FLAG_MBM_LOCAL = 2, - RDT_FLAG_L3_CAT = 3, - RDT_FLAG_L3_CDP = 4, - RDT_FLAG_L2_CAT = 5, - RDT_FLAG_L2_CDP = 6, - RDT_FLAG_MBA = 7, - RDT_FLAG_SMBA = 8, - RDT_FLAG_BMEC = 9, -}; - -struct rdt_options { - char *name; - int flag; - bool force_off; - bool force_on; -}; - -struct mbm_correction_factor_table { - u32 rmidthreshold; - u64 cf; -}; - -struct sgx_encl_mm { - struct sgx_encl *encl; - struct mm_struct *mm; - struct list_head list; - struct mmu_notifier mmu_notifier; -}; - -struct sgx_backing { - struct page *contents; - struct page *pcmd; - long unsigned int pcmd_offset; -}; - -struct vmware_steal_time { - union { - u64 clock; - struct { - u32 clock_low; - u32 clock_high; - }; - }; - u64 reserved[7]; -}; - -struct mpc_intsrc { - unsigned char type; - unsigned char irqtype; - short unsigned int irqflag; - unsigned char srcbus; - unsigned char srcbusirq; - unsigned char dstapic; - unsigned char dstirq; -}; - -enum mp_irq_source_types { - mp_INT = 0, - mp_NMI = 1, - mp_SMI = 2, - mp_ExtINT = 3, -}; - -struct acpi_table_boot { - struct acpi_table_header header; - u8 cmos_index; - u8 reserved[3]; -}; - -struct acpi_table_hpet { - struct acpi_table_header header; - u32 id; - struct acpi_generic_address address; - u8 sequence; - u16 minimum_tick; - u8 flags; -} __attribute__((packed)); - -struct acpi_table_madt { - struct acpi_table_header header; - u32 address; - u32 flags; -}; - -enum acpi_madt_type { - ACPI_MADT_TYPE_LOCAL_APIC = 0, - ACPI_MADT_TYPE_IO_APIC = 1, - ACPI_MADT_TYPE_INTERRUPT_OVERRIDE = 2, - ACPI_MADT_TYPE_NMI_SOURCE = 3, - ACPI_MADT_TYPE_LOCAL_APIC_NMI = 4, - ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE = 5, - ACPI_MADT_TYPE_IO_SAPIC = 6, - ACPI_MADT_TYPE_LOCAL_SAPIC = 7, - ACPI_MADT_TYPE_INTERRUPT_SOURCE = 8, - ACPI_MADT_TYPE_LOCAL_X2APIC = 9, - ACPI_MADT_TYPE_LOCAL_X2APIC_NMI = 10, - ACPI_MADT_TYPE_GENERIC_INTERRUPT = 11, - ACPI_MADT_TYPE_GENERIC_DISTRIBUTOR = 12, - ACPI_MADT_TYPE_GENERIC_MSI_FRAME = 13, - ACPI_MADT_TYPE_GENERIC_REDISTRIBUTOR = 14, - ACPI_MADT_TYPE_GENERIC_TRANSLATOR = 15, - ACPI_MADT_TYPE_MULTIPROC_WAKEUP = 16, - ACPI_MADT_TYPE_CORE_PIC = 17, - ACPI_MADT_TYPE_LIO_PIC = 18, - ACPI_MADT_TYPE_HT_PIC = 19, - ACPI_MADT_TYPE_EIO_PIC = 20, - ACPI_MADT_TYPE_MSI_PIC = 21, - ACPI_MADT_TYPE_BIO_PIC = 22, - ACPI_MADT_TYPE_LPC_PIC = 23, - ACPI_MADT_TYPE_RINTC = 24, - ACPI_MADT_TYPE_IMSIC = 25, - ACPI_MADT_TYPE_APLIC = 26, - ACPI_MADT_TYPE_PLIC = 27, - ACPI_MADT_TYPE_RESERVED = 28, - ACPI_MADT_TYPE_OEM_RESERVED = 128, -}; - -struct acpi_madt_local_apic { - struct acpi_subtable_header header; - u8 processor_id; - u8 id; - u32 lapic_flags; -}; - -struct acpi_madt_io_apic { - struct acpi_subtable_header header; - u8 id; - u8 reserved; - u32 address; - u32 global_irq_base; -}; - -struct acpi_madt_interrupt_override { - struct acpi_subtable_header header; - u8 bus; - u8 source_irq; - u32 global_irq; - u16 inti_flags; -} __attribute__((packed)); - -struct acpi_madt_nmi_source { - struct acpi_subtable_header header; - u16 inti_flags; - u32 global_irq; -}; - -struct acpi_madt_local_apic_nmi { - struct acpi_subtable_header header; - u8 processor_id; - u16 inti_flags; - u8 lint; -} __attribute__((packed)); - -struct acpi_madt_local_apic_override { - struct acpi_subtable_header header; - u16 reserved; - u64 address; -} __attribute__((packed)); - -struct acpi_madt_local_sapic { - struct acpi_subtable_header header; - u8 processor_id; - u8 id; - u8 eid; - u8 reserved[3]; - u32 lapic_flags; - u32 uid; - char uid_string[0]; -}; - -struct acpi_madt_local_x2apic { - struct acpi_subtable_header header; - u16 reserved; - u32 local_apic_id; - u32 lapic_flags; - u32 uid; -}; - -struct acpi_madt_local_x2apic_nmi { - struct acpi_subtable_header header; - u16 inti_flags; - u32 uid; - u8 lint; - u8 reserved[3]; -}; - -typedef int (*acpi_tbl_table_handler)(struct acpi_table_header *); - -enum ioapic_domain_type { - IOAPIC_DOMAIN_INVALID = 0, - IOAPIC_DOMAIN_LEGACY = 1, - IOAPIC_DOMAIN_STRICT = 2, - IOAPIC_DOMAIN_DYNAMIC = 3, -}; - -struct ioapic_domain_cfg { - enum ioapic_domain_type type; - const struct irq_domain_ops *ops; - struct device_node *dev; -}; - -struct intel_early_ops { - resource_size_t (*stolen_size)(int, int, int); - resource_size_t (*stolen_base)(int, int, int, resource_size_t); -}; - -struct chipset { - u32 vendor; - u32 device; - u32 class; - u32 class_mask; - u32 flags; - void (*f)(int, int, int); -}; - -enum cpuhp_smt_control { - CPU_SMT_ENABLED = 0, - CPU_SMT_DISABLED = 1, - CPU_SMT_FORCE_DISABLED = 2, - CPU_SMT_NOT_SUPPORTED = 3, - CPU_SMT_NOT_IMPLEMENTED = 4, -}; - -enum { - X86_IRQ_ALLOC_LEGACY = 1, -}; - -struct apic_chip_data { - struct irq_cfg hw_irq_cfg; - unsigned int vector; - unsigned int prev_vector; - unsigned int cpu; - unsigned int prev_cpu; - unsigned int irq; - struct hlist_node clist; - unsigned int move_in_progress: 1; - unsigned int is_managed: 1; - unsigned int can_reserve: 1; - unsigned int has_reserved: 1; -}; - -struct vector_cleanup { - struct hlist_head head; - struct timer_list timer; -}; - -typedef int (*arch_set_vga_state_t)(struct pci_dev *, bool, unsigned int, u32); - -struct uvyh_gr0_gam_gr_config_s { - long unsigned int rsvd_0_9: 10; - long unsigned int subspace: 1; - long unsigned int rsvd_11_63: 53; -}; - -struct uv5h_gr0_gam_gr_config_s { - long unsigned int rsvd_0_9: 10; - long unsigned int subspace: 1; - long unsigned int rsvd_11_63: 53; -}; - -struct uv4h_gr0_gam_gr_config_s { - long unsigned int rsvd_0_9: 10; - long unsigned int subspace: 1; - long unsigned int rsvd_11_63: 53; -}; - -struct uv3h_gr0_gam_gr_config_s { - long unsigned int m_skt: 6; - long unsigned int undef_6_9: 4; - long unsigned int subspace: 1; - long unsigned int reserved: 53; -}; - -struct uv2h_gr0_gam_gr_config_s { - long unsigned int n_gr: 4; - long unsigned int reserved: 60; -}; - -union uvyh_gr0_gam_gr_config_u { - long unsigned int v; - struct uvyh_gr0_gam_gr_config_s sy; - struct uv5h_gr0_gam_gr_config_s s5; - struct uv4h_gr0_gam_gr_config_s s4; - struct uv3h_gr0_gam_gr_config_s s3; - struct uv2h_gr0_gam_gr_config_s s2; -}; - -struct uvh_node_id_s { - long unsigned int force1: 1; - long unsigned int manufacturer: 11; - long unsigned int part_number: 16; - long unsigned int revision: 4; - long unsigned int rsvd_32_63: 32; -}; - -struct uvxh_node_id_s { - long unsigned int force1: 1; - long unsigned int manufacturer: 11; - long unsigned int part_number: 16; - long unsigned int revision: 4; - long unsigned int node_id: 15; - long unsigned int rsvd_47_49: 3; - long unsigned int nodes_per_bit: 7; - long unsigned int ni_port: 5; - long unsigned int rsvd_62_63: 2; -}; - -struct uvyh_node_id_s { - long unsigned int force1: 1; - long unsigned int manufacturer: 11; - long unsigned int part_number: 16; - long unsigned int revision: 4; - long unsigned int node_id: 7; - long unsigned int rsvd_39_56: 18; - long unsigned int ni_port: 6; - long unsigned int rsvd_63: 1; -}; - -struct uv5h_node_id_s { - long unsigned int force1: 1; - long unsigned int manufacturer: 11; - long unsigned int part_number: 16; - long unsigned int revision: 4; - long unsigned int node_id: 7; - long unsigned int rsvd_39_56: 18; - long unsigned int ni_port: 6; - long unsigned int rsvd_63: 1; -}; - -struct uv4h_node_id_s { - long unsigned int force1: 1; - long unsigned int manufacturer: 11; - long unsigned int part_number: 16; - long unsigned int revision: 4; - long unsigned int node_id: 15; - long unsigned int rsvd_47: 1; - long unsigned int router_select: 1; - long unsigned int rsvd_49: 1; - long unsigned int nodes_per_bit: 7; - long unsigned int ni_port: 5; - long unsigned int rsvd_62_63: 2; -}; - -struct uv3h_node_id_s { - long unsigned int force1: 1; - long unsigned int manufacturer: 11; - long unsigned int part_number: 16; - long unsigned int revision: 4; - long unsigned int node_id: 15; - long unsigned int rsvd_47: 1; - long unsigned int router_select: 1; - long unsigned int rsvd_49: 1; - long unsigned int nodes_per_bit: 7; - long unsigned int ni_port: 5; - long unsigned int rsvd_62_63: 2; -}; - -struct uv2h_node_id_s { - long unsigned int force1: 1; - long unsigned int manufacturer: 11; - long unsigned int part_number: 16; - long unsigned int revision: 4; - long unsigned int node_id: 15; - long unsigned int rsvd_47_49: 3; - long unsigned int nodes_per_bit: 7; - long unsigned int ni_port: 5; - long unsigned int rsvd_62_63: 2; -}; - -union uvh_node_id_u { - long unsigned int v; - struct uvh_node_id_s s; - struct uvxh_node_id_s sx; - struct uvyh_node_id_s sy; - struct uv5h_node_id_s s5; - struct uv4h_node_id_s s4; - struct uv3h_node_id_s s3; - struct uv2h_node_id_s s2; -}; - -struct uvh_rh10_gam_addr_map_config_s { - long unsigned int undef_0_5: 6; - long unsigned int n_skt: 3; - long unsigned int undef_9_11: 3; - long unsigned int ls_enable: 1; - long unsigned int undef_13_15: 3; - long unsigned int mk_tme_keyid_bits: 4; - long unsigned int rsvd_20_63: 44; -}; - -struct uvyh_rh10_gam_addr_map_config_s { - long unsigned int undef_0_5: 6; - long unsigned int n_skt: 3; - long unsigned int undef_9_11: 3; - long unsigned int ls_enable: 1; - long unsigned int undef_13_15: 3; - long unsigned int mk_tme_keyid_bits: 4; - long unsigned int rsvd_20_63: 44; -}; - -struct uv5h_rh10_gam_addr_map_config_s { - long unsigned int undef_0_5: 6; - long unsigned int n_skt: 3; - long unsigned int undef_9_11: 3; - long unsigned int ls_enable: 1; - long unsigned int undef_13_15: 3; - long unsigned int mk_tme_keyid_bits: 4; -}; - -union uvh_rh10_gam_addr_map_config_u { - long unsigned int v; - struct uvh_rh10_gam_addr_map_config_s s; - struct uvyh_rh10_gam_addr_map_config_s sy; - struct uv5h_rh10_gam_addr_map_config_s s5; -}; - -struct uvh_rh10_gam_mmioh_overlay_config0_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 26; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int undef_62: 1; - long unsigned int enable: 1; -}; - -struct uvyh_rh10_gam_mmioh_overlay_config0_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 26; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int undef_62: 1; - long unsigned int enable: 1; -}; - -struct uv5h_rh10_gam_mmioh_overlay_config0_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 26; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int undef_62: 1; - long unsigned int enable: 1; -}; - -union uvh_rh10_gam_mmioh_overlay_config0_u { - long unsigned int v; - struct uvh_rh10_gam_mmioh_overlay_config0_s s; - struct uvyh_rh10_gam_mmioh_overlay_config0_s sy; - struct uv5h_rh10_gam_mmioh_overlay_config0_s s5; -}; - -struct uvh_rh10_gam_mmioh_overlay_config1_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 26; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int undef_62: 1; - long unsigned int enable: 1; -}; - -struct uvyh_rh10_gam_mmioh_overlay_config1_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 26; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int undef_62: 1; - long unsigned int enable: 1; -}; - -struct uv5h_rh10_gam_mmioh_overlay_config1_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 26; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int undef_62: 1; - long unsigned int enable: 1; -}; - -union uvh_rh10_gam_mmioh_overlay_config1_u { - long unsigned int v; - struct uvh_rh10_gam_mmioh_overlay_config1_s s; - struct uvyh_rh10_gam_mmioh_overlay_config1_s sy; - struct uv5h_rh10_gam_mmioh_overlay_config1_s s5; -}; - -struct uvh_rh10_gam_mmr_overlay_config_s { - long unsigned int undef_0_24: 25; - long unsigned int base: 27; - long unsigned int undef_52_62: 11; - long unsigned int enable: 1; -}; - -struct uvyh_rh10_gam_mmr_overlay_config_s { - long unsigned int undef_0_24: 25; - long unsigned int base: 27; - long unsigned int undef_52_62: 11; - long unsigned int enable: 1; -}; - -struct uv5h_rh10_gam_mmr_overlay_config_s { - long unsigned int undef_0_24: 25; - long unsigned int base: 27; - long unsigned int undef_52_62: 11; - long unsigned int enable: 1; -}; - -union uvh_rh10_gam_mmr_overlay_config_u { - long unsigned int v; - struct uvh_rh10_gam_mmr_overlay_config_s s; - struct uvyh_rh10_gam_mmr_overlay_config_s sy; - struct uv5h_rh10_gam_mmr_overlay_config_s s5; -}; - -struct uvh_rh_gam_addr_map_config_s { - long unsigned int rsvd_0_5: 6; - long unsigned int n_skt: 4; - long unsigned int rsvd_10_63: 54; -}; - -struct uvxh_rh_gam_addr_map_config_s { - long unsigned int rsvd_0_5: 6; - long unsigned int n_skt: 4; - long unsigned int rsvd_10_63: 54; -}; - -struct uv4h_rh_gam_addr_map_config_s { - long unsigned int rsvd_0_5: 6; - long unsigned int n_skt: 4; - long unsigned int rsvd_10_63: 54; -}; - -struct uv3h_rh_gam_addr_map_config_s { - long unsigned int m_skt: 6; - long unsigned int n_skt: 4; - long unsigned int rsvd_10_63: 54; -}; - -struct uv2h_rh_gam_addr_map_config_s { - long unsigned int m_skt: 6; - long unsigned int n_skt: 4; - long unsigned int rsvd_10_63: 54; -}; - -union uvh_rh_gam_addr_map_config_u { - long unsigned int v; - struct uvh_rh_gam_addr_map_config_s s; - struct uvxh_rh_gam_addr_map_config_s sx; - struct uv4h_rh_gam_addr_map_config_s s4; - struct uv3h_rh_gam_addr_map_config_s s3; - struct uv2h_rh_gam_addr_map_config_s s2; -}; - -struct uvh_rh_gam_alias_2_overlay_config_s { - long unsigned int rsvd_0_23: 24; - long unsigned int base: 8; - long unsigned int rsvd_32_47: 16; - long unsigned int m_alias: 5; - long unsigned int rsvd_53_62: 10; - long unsigned int enable: 1; -}; - -struct uvxh_rh_gam_alias_2_overlay_config_s { - long unsigned int rsvd_0_23: 24; - long unsigned int base: 8; - long unsigned int rsvd_32_47: 16; - long unsigned int m_alias: 5; - long unsigned int rsvd_53_62: 10; - long unsigned int enable: 1; -}; - -struct uv4h_rh_gam_alias_2_overlay_config_s { - long unsigned int rsvd_0_23: 24; - long unsigned int base: 8; - long unsigned int rsvd_32_47: 16; - long unsigned int m_alias: 5; - long unsigned int rsvd_53_62: 10; - long unsigned int enable: 1; -}; - -struct uv3h_rh_gam_alias_2_overlay_config_s { - long unsigned int rsvd_0_23: 24; - long unsigned int base: 8; - long unsigned int rsvd_32_47: 16; - long unsigned int m_alias: 5; - long unsigned int rsvd_53_62: 10; - long unsigned int enable: 1; -}; - -struct uv2h_rh_gam_alias_2_overlay_config_s { - long unsigned int rsvd_0_23: 24; - long unsigned int base: 8; - long unsigned int rsvd_32_47: 16; - long unsigned int m_alias: 5; - long unsigned int rsvd_53_62: 10; - long unsigned int enable: 1; -}; - -union uvh_rh_gam_alias_2_overlay_config_u { - long unsigned int v; - struct uvh_rh_gam_alias_2_overlay_config_s s; - struct uvxh_rh_gam_alias_2_overlay_config_s sx; - struct uv4h_rh_gam_alias_2_overlay_config_s s4; - struct uv3h_rh_gam_alias_2_overlay_config_s s3; - struct uv2h_rh_gam_alias_2_overlay_config_s s2; -}; - -struct uvh_rh_gam_alias_2_redirect_config_s { - long unsigned int rsvd_0_23: 24; - long unsigned int dest_base: 22; - long unsigned int rsvd_46_63: 18; -}; - -struct uvxh_rh_gam_alias_2_redirect_config_s { - long unsigned int rsvd_0_23: 24; - long unsigned int dest_base: 22; - long unsigned int rsvd_46_63: 18; -}; - -struct uv4h_rh_gam_alias_2_redirect_config_s { - long unsigned int rsvd_0_23: 24; - long unsigned int dest_base: 22; - long unsigned int rsvd_46_63: 18; -}; - -struct uv3h_rh_gam_alias_2_redirect_config_s { - long unsigned int rsvd_0_23: 24; - long unsigned int dest_base: 22; - long unsigned int rsvd_46_63: 18; -}; - -struct uv2h_rh_gam_alias_2_redirect_config_s { - long unsigned int rsvd_0_23: 24; - long unsigned int dest_base: 22; - long unsigned int rsvd_46_63: 18; -}; - -union uvh_rh_gam_alias_2_redirect_config_u { - long unsigned int v; - struct uvh_rh_gam_alias_2_redirect_config_s s; - struct uvxh_rh_gam_alias_2_redirect_config_s sx; - struct uv4h_rh_gam_alias_2_redirect_config_s s4; - struct uv3h_rh_gam_alias_2_redirect_config_s s3; - struct uv2h_rh_gam_alias_2_redirect_config_s s2; -}; - -struct uvh_rh_gam_gru_overlay_config_s { - long unsigned int rsvd_0_45: 46; - long unsigned int rsvd_46_51: 6; - long unsigned int n_gru: 4; - long unsigned int rsvd_56_62: 7; - long unsigned int enable: 1; -}; - -struct uvxh_rh_gam_gru_overlay_config_s { - long unsigned int rsvd_0_45: 46; - long unsigned int rsvd_46_51: 6; - long unsigned int n_gru: 4; - long unsigned int rsvd_56_62: 7; - long unsigned int enable: 1; -}; - -struct uv4ah_rh_gam_gru_overlay_config_s { - long unsigned int rsvd_0_24: 25; - long unsigned int undef_25: 1; - long unsigned int base: 26; - long unsigned int n_gru: 4; - long unsigned int rsvd_56_62: 7; - long unsigned int enable: 1; -}; - -struct uv4h_rh_gam_gru_overlay_config_s { - long unsigned int rsvd_0_24: 25; - long unsigned int undef_25: 1; - long unsigned int base: 20; - long unsigned int rsvd_46_51: 6; - long unsigned int n_gru: 4; - long unsigned int rsvd_56_62: 7; - long unsigned int enable: 1; -}; - -struct uv3h_rh_gam_gru_overlay_config_s { - long unsigned int rsvd_0_27: 28; - long unsigned int base: 18; - long unsigned int rsvd_46_51: 6; - long unsigned int n_gru: 4; - long unsigned int rsvd_56_61: 6; - long unsigned int mode: 1; - long unsigned int enable: 1; -}; - -struct uv2h_rh_gam_gru_overlay_config_s { - long unsigned int rsvd_0_27: 28; - long unsigned int base: 18; - long unsigned int rsvd_46_51: 6; - long unsigned int n_gru: 4; - long unsigned int rsvd_56_62: 7; - long unsigned int enable: 1; -}; - -union uvh_rh_gam_gru_overlay_config_u { - long unsigned int v; - struct uvh_rh_gam_gru_overlay_config_s s; - struct uvxh_rh_gam_gru_overlay_config_s sx; - struct uv4ah_rh_gam_gru_overlay_config_s s4a; - struct uv4h_rh_gam_gru_overlay_config_s s4; - struct uv3h_rh_gam_gru_overlay_config_s s3; - struct uv2h_rh_gam_gru_overlay_config_s s2; -}; - -struct uvh_rh_gam_mmioh_overlay_config_s { - long unsigned int rsvd_0_26: 27; - long unsigned int base: 19; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int rsvd_56_62: 7; - long unsigned int enable: 1; -}; - -struct uvxh_rh_gam_mmioh_overlay_config_s { - long unsigned int rsvd_0_26: 27; - long unsigned int base: 19; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int rsvd_56_62: 7; - long unsigned int enable: 1; -}; - -struct uv2h_rh_gam_mmioh_overlay_config_s { - long unsigned int rsvd_0_26: 27; - long unsigned int base: 19; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int rsvd_56_62: 7; - long unsigned int enable: 1; -}; - -union uvh_rh_gam_mmioh_overlay_config_u { - long unsigned int v; - struct uvh_rh_gam_mmioh_overlay_config_s s; - struct uvxh_rh_gam_mmioh_overlay_config_s sx; - struct uv2h_rh_gam_mmioh_overlay_config_s s2; -}; - -struct uvh_rh_gam_mmioh_overlay_config0_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 20; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int rsvd_56_62: 7; - long unsigned int enable: 1; -}; - -struct uvxh_rh_gam_mmioh_overlay_config0_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 20; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int rsvd_56_62: 7; - long unsigned int enable: 1; -}; - -struct uv4ah_rh_gam_mmioh_overlay_config0_mmr_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 26; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int undef_62: 1; - long unsigned int enable: 1; -}; - -struct uv4h_rh_gam_mmioh_overlay_config0_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 20; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int rsvd_56_62: 7; - long unsigned int enable: 1; -}; - -struct uv3h_rh_gam_mmioh_overlay_config0_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 20; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int rsvd_56_62: 7; - long unsigned int enable: 1; -}; - -union uvh_rh_gam_mmioh_overlay_config0_u { - long unsigned int v; - struct uvh_rh_gam_mmioh_overlay_config0_s s; - struct uvxh_rh_gam_mmioh_overlay_config0_s sx; - struct uv4ah_rh_gam_mmioh_overlay_config0_mmr_s s4a; - struct uv4h_rh_gam_mmioh_overlay_config0_s s4; - struct uv3h_rh_gam_mmioh_overlay_config0_s s3; -}; - -struct uvh_rh_gam_mmioh_overlay_config1_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 20; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int rsvd_56_62: 7; - long unsigned int enable: 1; -}; - -struct uvxh_rh_gam_mmioh_overlay_config1_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 20; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int rsvd_56_62: 7; - long unsigned int enable: 1; -}; - -struct uv4ah_rh_gam_mmioh_overlay_config1_mmr_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 26; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int undef_62: 1; - long unsigned int enable: 1; -}; - -struct uv4h_rh_gam_mmioh_overlay_config1_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 20; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int rsvd_56_62: 7; - long unsigned int enable: 1; -}; - -struct uv3h_rh_gam_mmioh_overlay_config1_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 20; - long unsigned int m_io: 6; - long unsigned int n_io: 4; - long unsigned int rsvd_56_62: 7; - long unsigned int enable: 1; -}; - -union uvh_rh_gam_mmioh_overlay_config1_u { - long unsigned int v; - struct uvh_rh_gam_mmioh_overlay_config1_s s; - struct uvxh_rh_gam_mmioh_overlay_config1_s sx; - struct uv4ah_rh_gam_mmioh_overlay_config1_mmr_s s4a; - struct uv4h_rh_gam_mmioh_overlay_config1_s s4; - struct uv3h_rh_gam_mmioh_overlay_config1_s s3; -}; - -struct uvh_rh_gam_mmr_overlay_config_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 20; - long unsigned int rsvd_46_62: 17; - long unsigned int enable: 1; -}; - -struct uvxh_rh_gam_mmr_overlay_config_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 20; - long unsigned int rsvd_46_62: 17; - long unsigned int enable: 1; -}; - -struct uv4h_rh_gam_mmr_overlay_config_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 20; - long unsigned int rsvd_46_62: 17; - long unsigned int enable: 1; -}; - -struct uv3h_rh_gam_mmr_overlay_config_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 20; - long unsigned int rsvd_46_62: 17; - long unsigned int enable: 1; -}; - -struct uv2h_rh_gam_mmr_overlay_config_s { - long unsigned int rsvd_0_25: 26; - long unsigned int base: 20; - long unsigned int rsvd_46_62: 17; - long unsigned int enable: 1; -}; - -union uvh_rh_gam_mmr_overlay_config_u { - long unsigned int v; - struct uvh_rh_gam_mmr_overlay_config_s s; - struct uvxh_rh_gam_mmr_overlay_config_s sx; - struct uv4h_rh_gam_mmr_overlay_config_s s4; - struct uv3h_rh_gam_mmr_overlay_config_s s3; - struct uv2h_rh_gam_mmr_overlay_config_s s2; -}; - -enum uv_system_type { - UV_NONE = 0, - UV_LEGACY_APIC = 1, - UV_X2APIC = 2, -}; - -struct uv_gam_parameters { - u64 mmr_base; - u64 gru_base; - u8 mmr_shift; - u8 gru_shift; - u8 gpa_shift; - u8 unused1; -}; - -struct uv_gam_range_entry { - char type; - char unused1; - u16 nasid; - u16 sockid; - u16 pnode; - u32 unused2; - u32 limit; -}; - -struct uv_arch_type_entry { - char archtype[8]; -}; - -enum { - BIOS_FREQ_BASE_PLATFORM = 0, - BIOS_FREQ_BASE_INTERVAL_TIMER = 1, - BIOS_FREQ_BASE_REALTIME_CLOCK = 2, -}; - -struct uvh_apicid_s { - long unsigned int local_apic_mask: 24; - long unsigned int local_apic_shift: 5; - long unsigned int unused1: 3; - long unsigned int pnode_mask: 24; - long unsigned int pnode_shift: 5; - long unsigned int unused2: 3; -}; - -union uvh_apicid { - long unsigned int v; - struct uvh_apicid_s s; -}; - -enum map_type { - map_wb = 0, - map_uc = 1, -}; - -enum mmioh_arch { - UV2_MMIOH = -1, - UVY_MMIOH0 = 0, - UVY_MMIOH1 = 1, - UVX_MMIOH0 = 2, - UVX_MMIOH1 = 3, -}; - -struct mn { - unsigned char m_val; - unsigned char n_val; - unsigned char m_shift; - unsigned char n_lshift; -}; - -typedef __s64 Elf64_Sxword; - -struct elf64_rela { - Elf64_Addr r_offset; - Elf64_Xword r_info; - Elf64_Sxword r_addend; -}; - -typedef struct elf64_rela Elf64_Rela; - -typedef long unsigned int relocate_kernel_fn(long unsigned int, long unsigned int, long unsigned int, unsigned int); - -struct init_pgtable_data { - struct x86_mapping_info *info; - pgd_t *level4p; -}; - -struct callthunk_sites { - s32 *call_start; - s32 *call_end; -}; - -struct amd_northbridge_info { - u16 num; - u64 flags; - struct amd_northbridge *nb; -}; - -struct pvclock_wall_clock { - u32 version; - u32 sec; - u32 nsec; -}; - -struct pci_mmcfg_region { - struct list_head list; - struct resource res; - u64 address; - char *virt; - u16 segment; - u8 start_bus; - u8 end_bus; - char name[30]; -}; - -struct jailhouse_setup_data { - struct { - __u16 version; - __u16 compatible_version; - } hdr; - struct { - __u16 pm_timer_address; - __u16 num_cpus; - __u64 pci_mmconfig_base; - __u32 tsc_khz; - __u32 apic_khz; - __u8 standard_ioapic; - __u8 cpu_ids[255]; - } __attribute__((packed)) v1; - struct { - __u32 flags; - } v2; -}; - -enum auditsc_class_t { - AUDITSC_NATIVE = 0, - AUDITSC_COMPAT = 1, - AUDITSC_OPEN = 2, - AUDITSC_OPENAT = 3, - AUDITSC_SOCKETCALL = 4, - AUDITSC_EXECVE = 5, - AUDITSC_OPENAT2 = 6, - AUDITSC_NVALS = 7, -}; - -struct agp_kern_info { - struct agp_version version; - struct pci_dev *device; - enum chipset_type chipset; - long unsigned int mode; - long unsigned int aper_base; - size_t aper_size; - int max_memory; - int current_memory; - bool cant_use_aperture; - long unsigned int page_mask; - const struct vm_operations_struct *vm_ops; -}; - -enum kcore_type { - KCORE_TEXT = 0, - KCORE_VMALLOC = 1, - KCORE_RAM = 2, - KCORE_VMEMMAP = 3, - KCORE_USER = 4, -}; - -struct kcore_list { - struct list_head list; - long unsigned int addr; - size_t size; - int type; -}; - -enum bootmem_type { - MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE = 1, - SECTION_INFO = 1, - MIX_SECTION_INFO = 2, - NODE_INFO = 3, - MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE = 3, -}; - -struct exception_stacks { - char DF_stack_guard[0]; - char DF_stack[8192]; - char NMI_stack_guard[0]; - char NMI_stack[8192]; - char DB_stack_guard[0]; - char DB_stack[8192]; - char MCE_stack_guard[0]; - char MCE_stack[8192]; - char VC_stack_guard[0]; - char VC_stack[8192]; - char VC2_stack_guard[0]; - char VC2_stack[8192]; - char IST_top_guard[0]; -}; - -struct pagerange_state { - long unsigned int cur_pfn; - int ram; - int not_ram; -}; - -struct kmmio_fault_page { - struct list_head list; - struct kmmio_fault_page *release_next; - long unsigned int addr; - pteval_t old_presence; - bool armed; - int count; - bool scheduled_for_release; -}; - -struct kmmio_delayed_release { - struct callback_head rcu; - struct kmmio_fault_page *release_list; -}; - -struct kmmio_context { - struct kmmio_fault_page *fpage; - struct kmmio_probe *probe; - long unsigned int saved_flags; - long unsigned int addr; - int active; -}; - -enum cpu_attack_vectors { - CPU_MITIGATE_USER_KERNEL = 0, - CPU_MITIGATE_USER_USER = 1, - CPU_MITIGATE_GUEST_HOST = 2, - CPU_MITIGATE_GUEST_GUEST = 3, - NR_CPU_ATTACK_VECTORS = 4, -}; - -enum pti_mode { - PTI_AUTO = 0, - PTI_FORCE_OFF = 1, - PTI_FORCE_ON = 2, -}; - -enum pti_clone_level { - PTI_CLONE_PMD = 0, - PTI_CLONE_PTE = 1, -}; - -typedef struct { - efi_guid_t guid; - u64 table; -} efi_config_table_64_t; - -struct efi_mem_range { - struct range range; - u64 attribute; -}; - -enum efi_rts_ids { - EFI_NONE = 0, - EFI_GET_TIME = 1, - EFI_SET_TIME = 2, - EFI_GET_WAKEUP_TIME = 3, - EFI_SET_WAKEUP_TIME = 4, - EFI_GET_VARIABLE = 5, - EFI_GET_NEXT_VARIABLE = 6, - EFI_SET_VARIABLE = 7, - EFI_QUERY_VARIABLE_INFO = 8, - EFI_GET_NEXT_HIGH_MONO_COUNT = 9, - EFI_RESET_SYSTEM = 10, - EFI_UPDATE_CAPSULE = 11, - EFI_QUERY_CAPSULE_CAPS = 12, - EFI_ACPI_PRM_HANDLER = 13, -}; - -union efi_rts_args; - -struct efi_runtime_work { - union efi_rts_args *args; - efi_status_t status; - struct work_struct work; - enum efi_rts_ids efi_rts_id; - struct completion efi_rts_comp; - const void *caller; -}; - -struct pm_qos_request { - struct plist_node node; - struct pm_qos_constraints *qos; -}; - -struct uv_hub_nmi_s { - raw_spinlock_t nmi_lock; - atomic_t in_nmi; - atomic_t cpu_owner; - atomic_t read_mmr_count; - atomic_t nmi_count; - long unsigned int nmi_value; - bool hub_present; - bool pch_owner; -}; - -struct uv_cpu_nmi_s { - struct uv_hub_nmi_s *hub; - int state; - int pinging; - int queries; - int pings; -}; - -enum action_t { - nmi_act_kdump = 0, - nmi_act_dump = 1, - nmi_act_ips = 2, - nmi_act_kdb = 3, - nmi_act_kgdb = 4, - nmi_act_health = 5, - nmi_act_max = 6, -}; - -struct init_nmi { - unsigned int offset; - unsigned int mask; - unsigned int data; -}; - -struct softirq_action { - void (*action)(void); -}; - -typedef int wait_bit_action_f(struct wait_bit_key *, int); - -struct trace_event_raw_irq_handler_entry { - struct trace_entry ent; - int irq; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_irq_handler_exit { - struct trace_entry ent; - int irq; - int ret; - char __data[0]; -}; - -struct trace_event_raw_softirq { - struct trace_entry ent; - unsigned int vec; - char __data[0]; -}; - -struct trace_event_raw_tasklet { - struct trace_entry ent; - void *tasklet; - void *func; - char __data[0]; -}; - -struct trace_event_data_offsets_irq_handler_entry { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_irq_handler_exit {}; - -struct trace_event_data_offsets_softirq {}; - -struct trace_event_data_offsets_tasklet {}; - -typedef void (*btf_trace_irq_handler_entry)(void *, int, struct irqaction *); - -typedef void (*btf_trace_irq_handler_exit)(void *, int, struct irqaction *, int); - -typedef void (*btf_trace_softirq_entry)(void *, unsigned int); - -typedef void (*btf_trace_softirq_exit)(void *, unsigned int); - -typedef void (*btf_trace_softirq_raise)(void *, unsigned int); - -typedef void (*btf_trace_tasklet_entry)(void *, struct tasklet_struct *, void *); - -typedef void (*btf_trace_tasklet_exit)(void *, struct tasklet_struct *, void *); - -struct tasklet_head { - struct tasklet_struct *head; - struct tasklet_struct **tail; -}; - -struct __user_cap_header_struct { - __u32 version; - int pid; -}; - -typedef struct __user_cap_header_struct *cap_user_header_t; - -struct __user_cap_data_struct { - __u32 effective; - __u32 permitted; - __u32 inheritable; -}; - -typedef struct __user_cap_data_struct *cap_user_data_t; - -struct wq_flusher; - -struct wq_device; - -struct wq_node_nr_active; - -struct workqueue_struct { - struct list_head pwqs; - struct list_head list; - struct mutex mutex; - int work_color; - int flush_color; - atomic_t nr_pwqs_to_flush; - struct wq_flusher *first_flusher; - struct list_head flusher_queue; - struct list_head flusher_overflow; - struct list_head maydays; - struct worker *rescuer; - int nr_drainers; - int max_active; - int min_active; - int saved_max_active; - int saved_min_active; - struct workqueue_attrs *unbound_attrs; - struct pool_workqueue *dfl_pwq; - struct wq_device *wq_dev; - char name[32]; - struct callback_head rcu; - long: 64; - long: 64; - unsigned int flags; - struct pool_workqueue **cpu_pwq; - struct wq_node_nr_active *node_nr_active[0]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct execute_work { - struct work_struct work; -}; - -struct pool_workqueue { - struct worker_pool *pool; - struct workqueue_struct *wq; - int work_color; - int flush_color; - int refcnt; - int nr_in_flight[16]; - bool plugged; - int nr_active; - struct list_head inactive_works; - struct list_head pending_node; - struct list_head pwqs_node; - struct list_head mayday_node; - u64 stats[8]; - struct kthread_work release_work; - struct callback_head rcu; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct worker_pool { - raw_spinlock_t lock; - int cpu; - int node; - int id; - unsigned int flags; - long unsigned int watchdog_ts; - bool cpu_stall; - int nr_running; - struct list_head worklist; - int nr_workers; - int nr_idle; - struct list_head idle_list; - struct timer_list idle_timer; - struct work_struct idle_cull_work; - struct timer_list mayday_timer; - struct hlist_head busy_hash[64]; - struct worker *manager; - struct list_head workers; - struct ida worker_ida; - struct workqueue_attrs *attrs; - struct hlist_node hash_node; - int refcnt; - struct callback_head rcu; -}; - -enum worker_pool_flags { - POOL_BH = 1, - POOL_MANAGER_ACTIVE = 2, - POOL_DISASSOCIATED = 4, - POOL_BH_DRAINING = 8, -}; - -enum worker_flags { - WORKER_DIE = 2, - WORKER_IDLE = 4, - WORKER_PREP = 8, - WORKER_CPU_INTENSIVE = 64, - WORKER_UNBOUND = 128, - WORKER_REBOUND = 256, - WORKER_NOT_RUNNING = 456, -}; - -enum work_cancel_flags { - WORK_CANCEL_DELAYED = 1, - WORK_CANCEL_DISABLE = 2, -}; - -enum wq_internal_consts { - NR_STD_WORKER_POOLS = 2, - UNBOUND_POOL_HASH_ORDER = 6, - BUSY_WORKER_HASH_ORDER = 6, - MAX_IDLE_WORKERS_RATIO = 4, - IDLE_WORKER_TIMEOUT = 300000, - MAYDAY_INITIAL_TIMEOUT = 10, - MAYDAY_INTERVAL = 100, - CREATE_COOLDOWN = 1000, - RESCUER_NICE_LEVEL = -20, - HIGHPRI_NICE_LEVEL = -20, - WQ_NAME_LEN = 32, - WORKER_ID_LEN = 42, -}; - -enum pool_workqueue_stats { - PWQ_STAT_STARTED = 0, - PWQ_STAT_COMPLETED = 1, - PWQ_STAT_CPU_TIME = 2, - PWQ_STAT_CPU_INTENSIVE = 3, - PWQ_STAT_CM_WAKEUP = 4, - PWQ_STAT_REPATRIATED = 5, - PWQ_STAT_MAYDAY = 6, - PWQ_STAT_RESCUED = 7, - PWQ_NR_STATS = 8, -}; - -struct wq_flusher { - struct list_head list; - int flush_color; - struct completion done; -}; - -struct wq_node_nr_active { - int max; - atomic_t nr; - raw_spinlock_t lock; - struct list_head pending_pwqs; -}; - -struct wq_device { - struct workqueue_struct *wq; - struct device dev; -}; - -struct wq_pod_type { - int nr_pods; - cpumask_var_t *pod_cpus; - int *pod_node; - int *cpu_pod; -}; - -struct work_offq_data { - u32 pool_id; - u32 disable; - u32 flags; -}; - -struct trace_event_raw_workqueue_queue_work { - struct trace_entry ent; - void *work; - void *function; - u32 __data_loc_workqueue; - int req_cpu; - int cpu; - char __data[0]; -}; - -struct trace_event_raw_workqueue_activate_work { - struct trace_entry ent; - void *work; - void *function; - char __data[0]; -}; - -struct trace_event_raw_workqueue_execute_start { - struct trace_entry ent; - void *work; - void *function; - char __data[0]; -}; - -struct trace_event_raw_workqueue_execute_end { - struct trace_entry ent; - void *work; - void *function; - char __data[0]; -}; - -struct trace_event_data_offsets_workqueue_queue_work { - u32 workqueue; - const void *workqueue_ptr_; -}; - -struct trace_event_data_offsets_workqueue_activate_work {}; - -struct trace_event_data_offsets_workqueue_execute_start {}; - -struct trace_event_data_offsets_workqueue_execute_end {}; - -typedef void (*btf_trace_workqueue_queue_work)(void *, int, struct pool_workqueue *, struct work_struct *); - -typedef void (*btf_trace_workqueue_activate_work)(void *, struct work_struct *); - -typedef void (*btf_trace_workqueue_execute_start)(void *, struct work_struct *); - -typedef void (*btf_trace_workqueue_execute_end)(void *, struct work_struct *, work_func_t); - -struct wci_ent { - work_func_t func; - atomic64_t cnt; - struct hlist_node hash_node; -}; - -struct wq_drain_dead_softirq_work { - struct work_struct work; - struct worker_pool *pool; - struct completion done; -}; - -struct wq_barrier { - struct work_struct work; - struct completion done; - struct task_struct *task; -}; - -struct apply_wqattrs_ctx { - struct workqueue_struct *wq; - struct workqueue_attrs *attrs; - struct list_head list; - struct pool_workqueue *dfl_pwq; - struct pool_workqueue *pwq_tbl[0]; -}; - -struct pr_cont_work_struct { - bool comma; - work_func_t func; - long int ctr; -}; - -struct work_for_cpu { - struct work_struct work; - long int (*fn)(void *); - void *arg; - long int ret; -}; - -struct sched_param { - int sched_priority; -}; - -enum { - KTW_FREEZABLE = 1, -}; - -struct kthread_delayed_work { - struct kthread_work work; - struct timer_list timer; -}; - -struct kthread_create_info { - char *full_name; - int (*threadfn)(void *); - void *data; - int node; - struct task_struct *result; - struct completion *done; - struct list_head list; -}; - -struct kthread { - long unsigned int flags; - unsigned int cpu; - unsigned int node; - int started; - int result; - int (*threadfn)(void *); - void *data; - struct completion parked; - struct completion exited; - struct cgroup_subsys_state *blkcg_css; - char *full_name; - struct task_struct *task; - struct list_head hotplug_node; - struct cpumask *preferred_affinity; -}; - -enum KTHREAD_BITS { - KTHREAD_IS_PER_CPU = 0, - KTHREAD_SHOULD_STOP = 1, - KTHREAD_SHOULD_PARK = 2, -}; - -struct kthread_flush_work { - struct kthread_work work; - struct completion done; -}; - -enum proc_cn_event { - PROC_EVENT_NONE = 0, - PROC_EVENT_FORK = 1, - PROC_EVENT_EXEC = 2, - PROC_EVENT_UID = 4, - PROC_EVENT_GID = 64, - PROC_EVENT_SID = 128, - PROC_EVENT_PTRACE = 256, - PROC_EVENT_COMM = 512, - PROC_EVENT_NONZERO_EXIT = 536870912, - PROC_EVENT_COREDUMP = 1073741824, - PROC_EVENT_EXIT = 2147483648, -}; - -struct rhashtable_walker { - struct list_head list; - struct bucket_table *tbl; -}; - -struct rhashtable_iter { - struct rhashtable *ht; - struct rhash_head *p; - struct rhlist_head *list; - struct rhashtable_walker walker; - unsigned int slot; - unsigned int skip; - bool end_of_table; -}; - -enum scx_ent_flags { - SCX_TASK_QUEUED = 1, - SCX_TASK_RESET_RUNNABLE_AT = 4, - SCX_TASK_DEQD_FOR_SLEEP = 8, - SCX_TASK_STATE_SHIFT = 8, - SCX_TASK_STATE_BITS = 2, - SCX_TASK_STATE_MASK = 768, - SCX_TASK_CURSOR = -2147483648, -}; - -enum scx_task_state { - SCX_TASK_NONE = 0, - SCX_TASK_INIT = 1, - SCX_TASK_READY = 2, - SCX_TASK_ENABLED = 3, - SCX_TASK_NR_STATES = 4, -}; - -enum scx_ent_dsq_flags { - SCX_TASK_DSQ_ON_PRIQ = 1, -}; - -enum scx_kf_mask { - SCX_KF_UNLOCKED = 0, - SCX_KF_CPU_RELEASE = 1, - SCX_KF_DISPATCH = 2, - SCX_KF_ENQUEUE = 4, - SCX_KF_SELECT_CPU = 8, - SCX_KF_REST = 16, - __SCX_KF_RQ_LOCKED = 31, - __SCX_KF_TERMINAL = 28, -}; - -enum scx_dsq_lnode_flags { - SCX_DSQ_LNODE_ITER_CURSOR = 1, - __SCX_DSQ_LNODE_PRIV_SHIFT = 16, -}; - -enum tick_broadcast_state { - TICK_BROADCAST_EXIT = 0, - TICK_BROADCAST_ENTER = 1, -}; - -enum s2idle_states { - S2IDLE_STATE_NONE = 0, - S2IDLE_STATE_ENTER = 1, - S2IDLE_STATE_WAKE = 2, -}; - -typedef struct { - struct task_struct *lock; - struct rq *rq; - struct rq_flags rf; -} class_task_rq_lock_t; - -typedef struct { - struct rq *lock; - struct rq_flags rf; -} class_rq_lock_t; - -typedef struct { - struct rq *lock; - struct rq_flags rf; -} class_rq_lock_irq_t; - -typedef struct { - struct rq *lock; - struct rq *lock2; -} class_double_rq_lock_t; - -struct sched_enq_and_set_ctx { - struct task_struct *p; - int queue_flags; - bool queued; - bool running; -}; - -struct idle_timer { - struct hrtimer timer; - int done; -}; - -typedef struct rt_rq *rt_rq_iter_t; - -enum dl_bw_request { - dl_bw_req_deactivate = 0, - dl_bw_req_alloc = 1, - dl_bw_req_free = 2, -}; - -enum scx_consts { - SCX_DSP_DFL_MAX_BATCH = 32, - SCX_DSP_MAX_LOOPS = 32, - SCX_WATCHDOG_MAX_TIMEOUT = 30000, - SCX_EXIT_BT_LEN = 64, - SCX_EXIT_MSG_LEN = 1024, - SCX_EXIT_DUMP_DFL_LEN = 32768, - SCX_CPUPERF_ONE = 1024, - SCX_TASK_ITER_BATCH = 32, -}; - -enum scx_exit_kind { - SCX_EXIT_NONE = 0, - SCX_EXIT_DONE = 1, - SCX_EXIT_UNREG = 64, - SCX_EXIT_UNREG_BPF = 65, - SCX_EXIT_UNREG_KERN = 66, - SCX_EXIT_SYSRQ = 67, - SCX_EXIT_ERROR = 1024, - SCX_EXIT_ERROR_BPF = 1025, - SCX_EXIT_ERROR_STALL = 1026, -}; - -enum scx_exit_code { - SCX_ECODE_RSN_HOTPLUG = 4294967296ULL, - SCX_ECODE_ACT_RESTART = 281474976710656ULL, -}; - -struct scx_exit_info { - enum scx_exit_kind kind; - s64 exit_code; - const char *reason; - long unsigned int *bt; - u32 bt_len; - char *msg; - char *dump; -}; - -enum scx_ops_flags { - SCX_OPS_KEEP_BUILTIN_IDLE = 1ULL, - SCX_OPS_ENQ_LAST = 2ULL, - SCX_OPS_ENQ_EXITING = 4ULL, - SCX_OPS_SWITCH_PARTIAL = 8ULL, - SCX_OPS_ENQ_MIGRATION_DISABLED = 16ULL, - SCX_OPS_ALLOW_QUEUED_WAKEUP = 32ULL, - SCX_OPS_BUILTIN_IDLE_PER_NODE = 64ULL, - SCX_OPS_HAS_CGROUP_WEIGHT = 65536ULL, - SCX_OPS_ALL_FLAGS = 65663ULL, - __SCX_OPS_INTERNAL_MASK = 18374686479671623680ULL, - SCX_OPS_HAS_CPU_PREEMPT = 72057594037927936ULL, -}; - -struct scx_init_task_args { - bool fork; - struct cgroup *cgroup; -}; - -struct scx_exit_task_args { - bool cancelled; -}; - -struct scx_cgroup_init_args { - u32 weight; - u64 bw_period_us; - u64 bw_quota_us; - u64 bw_burst_us; -}; - -enum scx_cpu_preempt_reason { - SCX_CPU_PREEMPT_RT = 0, - SCX_CPU_PREEMPT_DL = 1, - SCX_CPU_PREEMPT_STOP = 2, - SCX_CPU_PREEMPT_UNKNOWN = 3, -}; - -struct scx_cpu_acquire_args {}; - -struct scx_cpu_release_args { - enum scx_cpu_preempt_reason reason; - struct task_struct *task; -}; - -struct scx_dump_ctx { - enum scx_exit_kind kind; - s64 exit_code; - const char *reason; - u64 at_ns; - u64 at_jiffies; -}; - -struct sched_ext_ops { - s32 (*select_cpu)(struct task_struct *, s32, u64); - void (*enqueue)(struct task_struct *, u64); - void (*dequeue)(struct task_struct *, u64); - void (*dispatch)(s32, struct task_struct *); - void (*tick)(struct task_struct *); - void (*runnable)(struct task_struct *, u64); - void (*running)(struct task_struct *); - void (*stopping)(struct task_struct *, bool); - void (*quiescent)(struct task_struct *, u64); - bool (*yield)(struct task_struct *, struct task_struct *); - bool (*core_sched_before)(struct task_struct *, struct task_struct *); - void (*set_weight)(struct task_struct *, u32); - void (*set_cpumask)(struct task_struct *, const struct cpumask *); - void (*update_idle)(s32, bool); - void (*cpu_acquire)(s32, struct scx_cpu_acquire_args *); - void (*cpu_release)(s32, struct scx_cpu_release_args *); - s32 (*init_task)(struct task_struct *, struct scx_init_task_args *); - void (*exit_task)(struct task_struct *, struct scx_exit_task_args *); - void (*enable)(struct task_struct *); - void (*disable)(struct task_struct *); - void (*dump)(struct scx_dump_ctx *); - void (*dump_cpu)(struct scx_dump_ctx *, s32, bool); - void (*dump_task)(struct scx_dump_ctx *, struct task_struct *); - s32 (*cgroup_init)(struct cgroup *, struct scx_cgroup_init_args *); - void (*cgroup_exit)(struct cgroup *); - s32 (*cgroup_prep_move)(struct task_struct *, struct cgroup *, struct cgroup *); - void (*cgroup_move)(struct task_struct *, struct cgroup *, struct cgroup *); - void (*cgroup_cancel_move)(struct task_struct *, struct cgroup *, struct cgroup *); - void (*cgroup_set_weight)(struct cgroup *, u32); - void (*cgroup_set_bandwidth)(struct cgroup *, u64, u64, u64); - void (*cpu_online)(s32); - void (*cpu_offline)(s32); - s32 (*init)(void); - void (*exit)(struct scx_exit_info *); - u32 dispatch_max_batch; - u64 flags; - u32 timeout_ms; - u32 exit_dump_len; - u64 hotplug_seq; - char name[128]; - void *priv; -}; - -enum scx_opi { - SCX_OPI_BEGIN = 0, - SCX_OPI_NORMAL_BEGIN = 0, - SCX_OPI_NORMAL_END = 30, - SCX_OPI_CPU_HOTPLUG_BEGIN = 30, - SCX_OPI_CPU_HOTPLUG_END = 32, - SCX_OPI_END = 32, -}; - -struct scx_event_stats { - s64 SCX_EV_SELECT_CPU_FALLBACK; - s64 SCX_EV_DISPATCH_LOCAL_DSQ_OFFLINE; - s64 SCX_EV_DISPATCH_KEEP_LAST; - s64 SCX_EV_ENQ_SKIP_EXITING; - s64 SCX_EV_ENQ_SKIP_MIGRATION_DISABLED; - s64 SCX_EV_REFILL_SLICE_DFL; - s64 SCX_EV_BYPASS_DURATION; - s64 SCX_EV_BYPASS_DISPATCH; - s64 SCX_EV_BYPASS_ACTIVATE; -}; - -struct scx_sched_pcpu { - struct scx_event_stats event_stats; -}; - -struct scx_sched { - struct sched_ext_ops ops; - long unsigned int has_op[1]; - struct rhashtable dsq_hash; - struct scx_dispatch_q **global_dsqs; - struct scx_sched_pcpu *pcpu; - bool warned_zero_slice; - atomic_t exit_kind; - struct scx_exit_info *exit_info; - struct kobject kobj; - struct kthread_worker *helper; - struct irq_work error_irq_work; - struct kthread_work disable_work; - struct rcu_work rcu_work; -}; - -enum scx_wake_flags { - SCX_WAKE_FORK = 4, - SCX_WAKE_TTWU = 8, - SCX_WAKE_SYNC = 16, -}; - -enum scx_enq_flags { - SCX_ENQ_WAKEUP = 1ULL, - SCX_ENQ_HEAD = 16ULL, - SCX_ENQ_CPU_SELECTED = 1024ULL, - SCX_ENQ_PREEMPT = 4294967296ULL, - SCX_ENQ_REENQ = 1099511627776ULL, - SCX_ENQ_LAST = 2199023255552ULL, - __SCX_ENQ_INTERNAL_MASK = 18374686479671623680ULL, - SCX_ENQ_CLEAR_OPSS = 72057594037927936ULL, - SCX_ENQ_DSQ_PRIQ = 144115188075855872ULL, -}; - -enum scx_deq_flags { - SCX_DEQ_SLEEP = 1ULL, - SCX_DEQ_CORE_SCHED_EXEC = 4294967296ULL, -}; - -enum scx_pick_idle_cpu_flags { - SCX_PICK_IDLE_CORE = 1, - SCX_PICK_IDLE_IN_NODE = 2, -}; - -enum scx_kick_flags { - SCX_KICK_IDLE = 1, - SCX_KICK_PREEMPT = 2, - SCX_KICK_WAIT = 4, -}; - -enum scx_tg_flags { - SCX_TG_ONLINE = 1, - SCX_TG_INITED = 2, -}; - -enum scx_enable_state { - SCX_ENABLING = 0, - SCX_ENABLED = 1, - SCX_DISABLING = 2, - SCX_DISABLED = 3, -}; - -enum scx_ops_state { - SCX_OPSS_NONE = 0, - SCX_OPSS_QUEUEING = 1, - SCX_OPSS_QUEUED = 2, - SCX_OPSS_DISPATCHING = 3, - SCX_OPSS_QSEQ_SHIFT = 2, -}; - -struct scx_kick_pseqs { - struct callback_head rcu; - long unsigned int seqs[0]; -}; - -struct scx_dsp_buf_ent { - struct task_struct *task; - long unsigned int qseq; - u64 dsq_id; - u64 enq_flags; -}; - -struct scx_dsp_ctx { - struct rq *rq; - u32 cursor; - u32 nr_tasks; - struct scx_dsp_buf_ent buf[0]; -}; - -struct scx_bstr_buf { - u64 data[12]; - char line[1024]; -}; - -struct scx_dump_data { - s32 cpu; - bool first; - s32 cursor; - struct seq_buf *s; - const char *prefix; - struct scx_bstr_buf buf; -}; - -struct trace_event_raw_sched_ext_dump { - struct trace_entry ent; - u32 __data_loc_line; - char __data[0]; -}; - -struct trace_event_raw_sched_ext_event { - struct trace_entry ent; - u32 __data_loc_name; - __s64 delta; - char __data[0]; -}; - -struct trace_event_data_offsets_sched_ext_dump { - u32 line; - const void *line_ptr_; -}; - -struct trace_event_data_offsets_sched_ext_event { - u32 name; - const void *name_ptr_; -}; - -typedef void (*btf_trace_sched_ext_dump)(void *, const char *); - -typedef void (*btf_trace_sched_ext_event)(void *, const char *, __s64); - -enum scx_dsq_iter_flags { - SCX_DSQ_ITER_REV = 65536, - __SCX_DSQ_ITER_HAS_SLICE = 1073741824, - __SCX_DSQ_ITER_HAS_VTIME = 2147483648, - __SCX_DSQ_ITER_USER_FLAGS = 65536, - __SCX_DSQ_ITER_ALL_FLAGS = 3221291008, -}; - -struct bpf_iter_scx_dsq_kern { - struct scx_dsq_list_node cursor; - struct scx_dispatch_q *dsq; - u64 slice; - u64 vtime; -}; - -struct bpf_iter_scx_dsq { - u64 __opaque[6]; -}; - -struct scx_task_iter { - struct sched_ext_entity cursor; - struct task_struct *locked; - struct rq *rq; - struct rq_flags rf; - u32 cnt; -}; - -struct scx_idle_cpus { - cpumask_var_t cpu; - cpumask_var_t smt; -}; - -typedef struct task_struct *class_find_get_task_t; - -struct bpf_struct_ops_sched_ext_ops { - struct bpf_struct_ops_common_value common; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct sched_ext_ops data; - long: 64; -}; - -enum suspend_stat_step { - SUSPEND_WORKING = 0, - SUSPEND_FREEZE = 1, - SUSPEND_PREPARE = 2, - SUSPEND_SUSPEND = 3, - SUSPEND_SUSPEND_LATE = 4, - SUSPEND_SUSPEND_NOIRQ = 5, - SUSPEND_RESUME_NOIRQ = 6, - SUSPEND_RESUME_EARLY = 7, - SUSPEND_RESUME = 8, -}; - -struct resume_swap_area { - __kernel_loff_t offset; - __u32 dev; -} __attribute__((packed)); - -struct snapshot_handle { - unsigned int cur; - void *buffer; - int sync_read; -}; - -struct snapshot_data { - struct snapshot_handle handle; - int swap; - int mode; - bool frozen; - bool ready; - bool platform_support; - bool free_bitmaps; - dev_t dev; -}; - -struct compat_resume_swap_area { - compat_loff_t offset; - u32 dev; -} __attribute__((packed)); - -enum kdb_msgsrc { - KDB_MSGSRC_INTERNAL = 0, - KDB_MSGSRC_PRINTK = 1, -}; - -struct nbcon_state { - union { - unsigned int atom; - struct { - unsigned int prio: 2; - unsigned int req_prio: 2; - unsigned int unsafe: 1; - unsigned int unsafe_takeover: 1; - unsigned int cpu: 24; - }; - }; -}; - -struct printk_buffers { - char outbuf[2048]; - char scratchbuf[1024]; -}; - -struct prb_desc; - -struct printk_info; - -struct prb_desc_ring { - unsigned int count_bits; - struct prb_desc *descs; - struct printk_info *infos; - atomic_long_t head_id; - atomic_long_t tail_id; - atomic_long_t last_finalized_seq; -}; - -struct prb_data_ring { - unsigned int size_bits; - char *data; - atomic_long_t head_lpos; - atomic_long_t tail_lpos; -}; - -struct printk_ringbuffer { - struct prb_desc_ring desc_ring; - struct prb_data_ring text_data_ring; - atomic_long_t fail; -}; - -struct console_flush_type { - bool nbcon_atomic; - bool nbcon_offload; - bool legacy_direct; - bool legacy_offload; -}; - -struct printk_message { - struct printk_buffers *pbufs; - unsigned int outbuf_len; - u64 seq; - long unsigned int dropped; -}; - -struct dev_printk_info { - char subsystem[16]; - char device[48]; -}; - -struct printk_info { - u64 seq; - u64 ts_nsec; - u16 text_len; - u8 facility; - u8 flags: 5; - u8 level: 3; - u32 caller_id; - struct dev_printk_info dev_info; -}; - -struct printk_record { - struct printk_info *info; - char *text_buf; - unsigned int text_buf_size; -}; - -struct prb_data_blk_lpos { - long unsigned int begin; - long unsigned int next; -}; - -struct prb_desc { - atomic_long_t state_var; - struct prb_data_blk_lpos text_blk_lpos; -}; - -struct prb_reserved_entry { - struct printk_ringbuffer *rb; - long unsigned int irqflags; - long unsigned int id; - unsigned int text_space; -}; - -enum desc_state { - desc_miss = -1, - desc_reserved = 0, - desc_committed = 1, - desc_finalized = 2, - desc_reusable = 3, -}; - -struct prb_data_block { - long unsigned int id; - char data[0]; -}; - -enum { - IRQC_IS_HARDIRQ = 0, - IRQC_IS_NESTED = 1, -}; - -enum { - IRQTF_RUNTHREAD = 0, - IRQTF_WARNED = 1, - IRQTF_AFFINITY = 2, - IRQTF_FORCED_THREAD = 3, - IRQTF_READY = 4, -}; - -typedef struct { - struct irq_desc *lock; - long unsigned int flags; - bool bus; -} class_irqdesc_lock_t; - -enum { - AFFINITY = 0, - AFFINITY_LIST = 1, - EFFECTIVE = 2, - EFFECTIVE_LIST = 3, -}; - -struct cpumap { - unsigned int available; - unsigned int allocated; - unsigned int managed; - unsigned int managed_allocated; - bool initialized; - bool online; - long unsigned int *managed_map; - long unsigned int alloc_map[0]; -}; - -struct irq_matrix { - unsigned int matrix_bits; - unsigned int alloc_start; - unsigned int alloc_end; - unsigned int alloc_size; - unsigned int global_available; - unsigned int global_reserved; - unsigned int systembits_inalloc; - unsigned int total_allocated; - unsigned int online_maps; - struct cpumap *maps; - long unsigned int *system_map; - long unsigned int scratch_map[0]; -}; - -struct trace_event_raw_irq_matrix_global { - struct trace_entry ent; - unsigned int online_maps; - unsigned int global_available; - unsigned int global_reserved; - unsigned int total_allocated; - char __data[0]; -}; - -struct trace_event_raw_irq_matrix_global_update { - struct trace_entry ent; - int bit; - unsigned int online_maps; - unsigned int global_available; - unsigned int global_reserved; - unsigned int total_allocated; - char __data[0]; -}; - -struct trace_event_raw_irq_matrix_cpu { - struct trace_entry ent; - int bit; - unsigned int cpu; - bool online; - unsigned int available; - unsigned int allocated; - unsigned int managed; - unsigned int online_maps; - unsigned int global_available; - unsigned int global_reserved; - unsigned int total_allocated; - char __data[0]; -}; - -struct trace_event_data_offsets_irq_matrix_global {}; - -struct trace_event_data_offsets_irq_matrix_global_update {}; - -struct trace_event_data_offsets_irq_matrix_cpu {}; - -typedef void (*btf_trace_irq_matrix_online)(void *, struct irq_matrix *); - -typedef void (*btf_trace_irq_matrix_offline)(void *, struct irq_matrix *); - -typedef void (*btf_trace_irq_matrix_reserve)(void *, struct irq_matrix *); - -typedef void (*btf_trace_irq_matrix_remove_reserved)(void *, struct irq_matrix *); - -typedef void (*btf_trace_irq_matrix_assign_system)(void *, int, struct irq_matrix *); - -typedef void (*btf_trace_irq_matrix_reserve_managed)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); - -typedef void (*btf_trace_irq_matrix_remove_managed)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); - -typedef void (*btf_trace_irq_matrix_alloc_managed)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); - -typedef void (*btf_trace_irq_matrix_assign)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); - -typedef void (*btf_trace_irq_matrix_alloc)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); - -typedef void (*btf_trace_irq_matrix_free)(void *, int, unsigned int, struct irq_matrix *, struct cpumap *); - -struct klp_ops { - struct list_head node; - struct list_head func_stack; - struct ftrace_ops fops; -}; - -struct trace_event_raw_dma_map { - struct trace_entry ent; - u32 __data_loc_device; - u64 phys_addr; - u64 dma_addr; - size_t size; - enum dma_data_direction dir; - long unsigned int attrs; - char __data[0]; -}; - -struct trace_event_raw_dma_unmap { - struct trace_entry ent; - u32 __data_loc_device; - u64 addr; - size_t size; - enum dma_data_direction dir; - long unsigned int attrs; - char __data[0]; -}; - -struct trace_event_raw_dma_alloc_class { - struct trace_entry ent; - u32 __data_loc_device; - void *virt_addr; - u64 dma_addr; - size_t size; - gfp_t flags; - enum dma_data_direction dir; - long unsigned int attrs; - char __data[0]; -}; - -struct trace_event_raw_dma_alloc_sgt { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_phys_addrs; - u64 dma_addr; - size_t size; - enum dma_data_direction dir; - gfp_t flags; - long unsigned int attrs; - char __data[0]; -}; - -struct trace_event_raw_dma_free_class { - struct trace_entry ent; - u32 __data_loc_device; - void *virt_addr; - u64 dma_addr; - size_t size; - enum dma_data_direction dir; - long unsigned int attrs; - char __data[0]; -}; - -struct trace_event_raw_dma_free_sgt { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_phys_addrs; - u64 dma_addr; - size_t size; - enum dma_data_direction dir; - char __data[0]; -}; - -struct trace_event_raw_dma_map_sg { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_phys_addrs; - u32 __data_loc_dma_addrs; - u32 __data_loc_lengths; - enum dma_data_direction dir; - long unsigned int attrs; - char __data[0]; -}; - -struct trace_event_raw_dma_map_sg_err { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_phys_addrs; - int err; - enum dma_data_direction dir; - long unsigned int attrs; - char __data[0]; -}; - -struct trace_event_raw_dma_unmap_sg { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_addrs; - enum dma_data_direction dir; - long unsigned int attrs; - char __data[0]; -}; - -struct trace_event_raw_dma_sync_single { - struct trace_entry ent; - u32 __data_loc_device; - u64 dma_addr; - size_t size; - enum dma_data_direction dir; - char __data[0]; -}; - -struct trace_event_raw_dma_sync_sg { - struct trace_entry ent; - u32 __data_loc_device; - u32 __data_loc_dma_addrs; - u32 __data_loc_lengths; - enum dma_data_direction dir; - char __data[0]; -}; - -struct trace_event_data_offsets_dma_map { - u32 device; - const void *device_ptr_; -}; - -struct trace_event_data_offsets_dma_unmap { - u32 device; - const void *device_ptr_; -}; - -struct trace_event_data_offsets_dma_alloc_class { - u32 device; - const void *device_ptr_; -}; - -struct trace_event_data_offsets_dma_alloc_sgt { - u32 device; - const void *device_ptr_; - u32 phys_addrs; - const void *phys_addrs_ptr_; -}; - -struct trace_event_data_offsets_dma_free_class { - u32 device; - const void *device_ptr_; -}; - -struct trace_event_data_offsets_dma_free_sgt { - u32 device; - const void *device_ptr_; - u32 phys_addrs; - const void *phys_addrs_ptr_; -}; - -struct trace_event_data_offsets_dma_map_sg { - u32 device; - const void *device_ptr_; - u32 phys_addrs; - const void *phys_addrs_ptr_; - u32 dma_addrs; - const void *dma_addrs_ptr_; - u32 lengths; - const void *lengths_ptr_; -}; - -struct trace_event_data_offsets_dma_map_sg_err { - u32 device; - const void *device_ptr_; - u32 phys_addrs; - const void *phys_addrs_ptr_; -}; - -struct trace_event_data_offsets_dma_unmap_sg { - u32 device; - const void *device_ptr_; - u32 addrs; - const void *addrs_ptr_; -}; - -struct trace_event_data_offsets_dma_sync_single { - u32 device; - const void *device_ptr_; -}; - -struct trace_event_data_offsets_dma_sync_sg { - u32 device; - const void *device_ptr_; - u32 dma_addrs; - const void *dma_addrs_ptr_; - u32 lengths; - const void *lengths_ptr_; -}; - -typedef void (*btf_trace_dma_map_page)(void *, struct device *, phys_addr_t, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_map_resource)(void *, struct device *, phys_addr_t, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_unmap_page)(void *, struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_unmap_resource)(void *, struct device *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_alloc)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, gfp_t, long unsigned int); - -typedef void (*btf_trace_dma_alloc_pages)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, gfp_t, long unsigned int); - -typedef void (*btf_trace_dma_alloc_sgt_err)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, gfp_t, long unsigned int); - -typedef void (*btf_trace_dma_alloc_sgt)(void *, struct device *, struct sg_table *, size_t, enum dma_data_direction, gfp_t, long unsigned int); - -typedef void (*btf_trace_dma_free)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_free_pages)(void *, struct device *, void *, dma_addr_t, size_t, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_free_sgt)(void *, struct device *, struct sg_table *, size_t, enum dma_data_direction); - -typedef void (*btf_trace_dma_map_sg)(void *, struct device *, struct scatterlist *, int, int, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_map_sg_err)(void *, struct device *, struct scatterlist *, int, int, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_unmap_sg)(void *, struct device *, struct scatterlist *, int, enum dma_data_direction, long unsigned int); - -typedef void (*btf_trace_dma_sync_single_for_cpu)(void *, struct device *, dma_addr_t, size_t, enum dma_data_direction); - -typedef void (*btf_trace_dma_sync_single_for_device)(void *, struct device *, dma_addr_t, size_t, enum dma_data_direction); - -typedef void (*btf_trace_dma_sync_sg_for_cpu)(void *, struct device *, struct scatterlist *, int, enum dma_data_direction); - -typedef void (*btf_trace_dma_sync_sg_for_device)(void *, struct device *, struct scatterlist *, int, enum dma_data_direction); - -struct dma_devres { - size_t size; - void *vaddr; - dma_addr_t dma_handle; - long unsigned int attrs; -}; - -struct taint_flag { - char c_true; - char c_false; - bool module; - const char *desc; -}; - -typedef struct { - seqcount_t seqcount; -} seqcount_latch_t; - -struct latch_tree_root { - seqcount_latch_t seq; - struct rb_root tree[2]; -}; - -enum fail_dup_mod_reason { - FAIL_DUP_MOD_BECOMING = 0, - FAIL_DUP_MOD_LOAD = 1, -}; - -struct mod_tree_root { - struct latch_tree_root root; - long unsigned int addr_min; - long unsigned int addr_max; -}; - -struct trace_event_raw_module_load { - struct trace_entry ent; - unsigned int taints; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_module_free { - struct trace_entry ent; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_module_refcnt { - struct trace_entry ent; - long unsigned int ip; - int refcnt; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_module_request { - struct trace_entry ent; - long unsigned int ip; - bool wait; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_data_offsets_module_load { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_module_free { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_module_refcnt { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_module_request { - u32 name; - const void *name_ptr_; -}; - -typedef void (*btf_trace_module_load)(void *, struct module *); - -typedef void (*btf_trace_module_free)(void *, struct module *); - -typedef void (*btf_trace_module_get)(void *, struct module *, long unsigned int); - -typedef void (*btf_trace_module_put)(void *, struct module *, long unsigned int); - -typedef void (*btf_trace_module_request)(void *, char *, bool, long unsigned int); - -struct symsearch { - const struct kernel_symbol *start; - const struct kernel_symbol *stop; - const u32 *crcs; - enum mod_license license; -}; - -struct mod_initfree { - struct llist_node node; - void *init_text; - void *init_data; - void *init_rodata; -}; - -struct idempotent { - const void *cookie; - struct hlist_node entry; - struct completion complete; - int ret; -}; - -enum kcmp_type { - KCMP_FILE = 0, - KCMP_VM = 1, - KCMP_FILES = 2, - KCMP_FS = 3, - KCMP_SIGHAND = 4, - KCMP_IO = 5, - KCMP_SYSVSEM = 6, - KCMP_EPOLL_TFD = 7, - KCMP_TYPES = 8, -}; - -struct kcmp_epoll_slot { - __u32 efd; - __u32 tfd; - __u32 toff; -}; - -struct timer_events { - u64 local; - u64 global; -}; - -struct trace_event_raw_timer_class { - struct trace_entry ent; - void *timer; - char __data[0]; -}; - -struct trace_event_raw_timer_start { - struct trace_entry ent; - void *timer; - void *function; - long unsigned int expires; - long unsigned int bucket_expiry; - long unsigned int now; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_timer_expire_entry { - struct trace_entry ent; - void *timer; - long unsigned int now; - void *function; - long unsigned int baseclk; - char __data[0]; -}; - -struct trace_event_raw_timer_base_idle { - struct trace_entry ent; - bool is_idle; - unsigned int cpu; - char __data[0]; -}; - -struct trace_event_raw_hrtimer_setup { - struct trace_entry ent; - void *hrtimer; - clockid_t clockid; - enum hrtimer_mode mode; - char __data[0]; -}; - -struct trace_event_raw_hrtimer_start { - struct trace_entry ent; - void *hrtimer; - void *function; - s64 expires; - s64 softexpires; - enum hrtimer_mode mode; - char __data[0]; -}; - -struct trace_event_raw_hrtimer_expire_entry { - struct trace_entry ent; - void *hrtimer; - s64 now; - void *function; - char __data[0]; -}; - -struct trace_event_raw_hrtimer_class { - struct trace_entry ent; - void *hrtimer; - char __data[0]; -}; - -struct trace_event_raw_itimer_state { - struct trace_entry ent; - int which; - long long unsigned int expires; - long int value_sec; - long int value_nsec; - long int interval_sec; - long int interval_nsec; - char __data[0]; -}; - -struct trace_event_raw_itimer_expire { - struct trace_entry ent; - int which; - pid_t pid; - long long unsigned int now; - char __data[0]; -}; - -struct trace_event_raw_tick_stop { - struct trace_entry ent; - int success; - int dependency; - char __data[0]; -}; - -struct trace_event_data_offsets_timer_class {}; - -struct trace_event_data_offsets_timer_start {}; - -struct trace_event_data_offsets_timer_expire_entry {}; - -struct trace_event_data_offsets_timer_base_idle {}; - -struct trace_event_data_offsets_hrtimer_setup {}; - -struct trace_event_data_offsets_hrtimer_start {}; - -struct trace_event_data_offsets_hrtimer_expire_entry {}; - -struct trace_event_data_offsets_hrtimer_class {}; - -struct trace_event_data_offsets_itimer_state {}; - -struct trace_event_data_offsets_itimer_expire {}; - -struct trace_event_data_offsets_tick_stop {}; - -typedef void (*btf_trace_timer_init)(void *, struct timer_list *); - -typedef void (*btf_trace_timer_start)(void *, struct timer_list *, long unsigned int); - -typedef void (*btf_trace_timer_expire_entry)(void *, struct timer_list *, long unsigned int); - -typedef void (*btf_trace_timer_expire_exit)(void *, struct timer_list *); - -typedef void (*btf_trace_timer_cancel)(void *, struct timer_list *); - -typedef void (*btf_trace_timer_base_idle)(void *, bool, unsigned int); - -typedef void (*btf_trace_hrtimer_setup)(void *, struct hrtimer *, clockid_t, enum hrtimer_mode); - -typedef void (*btf_trace_hrtimer_start)(void *, struct hrtimer *, enum hrtimer_mode); - -typedef void (*btf_trace_hrtimer_expire_entry)(void *, struct hrtimer *, ktime_t *); - -typedef void (*btf_trace_hrtimer_expire_exit)(void *, struct hrtimer *); - -typedef void (*btf_trace_hrtimer_cancel)(void *, struct hrtimer *); - -typedef void (*btf_trace_itimer_state)(void *, int, const struct itimerspec64 * const, long long unsigned int); - -typedef void (*btf_trace_itimer_expire)(void *, int, struct pid *, long long unsigned int); - -typedef void (*btf_trace_tick_stop)(void *, int, int); - -struct timer_base { - raw_spinlock_t lock; - struct timer_list *running_timer; - long unsigned int clk; - long unsigned int next_expiry; - unsigned int cpu; - bool next_expiry_recalc; - bool is_idle; - bool timers_pending; - long unsigned int pending_map[9]; - struct hlist_head vectors[576]; - long: 64; - long: 64; -}; - -typedef struct sigevent sigevent_t; - -struct old_timex32 { - u32 modes; - s32 offset; - s32 freq; - s32 maxerror; - s32 esterror; - s32 status; - s32 constant; - s32 precision; - s32 tolerance; - struct old_timeval32 time; - s32 tick; - s32 ppsfreq; - s32 jitter; - s32 shift; - s32 stabil; - s32 jitcnt; - s32 calcnt; - s32 errcnt; - s32 stbcnt; - s32 tai; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct timer_hash_bucket { - spinlock_t lock; - struct hlist_head head; -}; - -typedef struct k_itimer *class_lock_timer_t; - -struct tick_sched { - long unsigned int flags; - unsigned int stalled_jiffies; - long unsigned int last_tick_jiffies; - struct hrtimer sched_timer; - ktime_t last_tick; - ktime_t next_tick; - long unsigned int idle_jiffies; - ktime_t idle_waketime; - unsigned int got_idle_tick; - seqcount_t idle_sleeptime_seq; - ktime_t idle_entrytime; - long unsigned int last_jiffies; - u64 timer_expires_base; - u64 timer_expires; - u64 next_timer; - ktime_t idle_expires; - long unsigned int idle_calls; - long unsigned int idle_sleeps; - ktime_t idle_exittime; - ktime_t idle_sleeptime; - ktime_t iowait_sleeptime; - atomic_t tick_dep_mask; - long unsigned int check_clocks; -}; - -struct rt_waiter_node { - struct rb_node entry; - int prio; - u64 deadline; -}; - -struct rt_mutex_waiter { - struct rt_waiter_node tree; - struct rt_waiter_node pi_tree; - struct task_struct *task; - struct rt_mutex_base *lock; - unsigned int wake_state; - struct ww_acquire_ctx *ww_ctx; -}; - -struct futex_hash_bucket { - atomic_t waiters; - spinlock_t lock; - struct plist_head chain; - struct futex_private_hash *priv; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct futex_private_hash { - int state; - unsigned int hash_mask; - struct callback_head rcu; - void *mm; - bool custom; - long: 64; - long: 64; - long: 64; - struct futex_hash_bucket queues[0]; -}; - -typedef struct mm_struct *class_mmap_read_lock_t; - -enum futex_access { - FUTEX_READ = 0, - FUTEX_WRITE = 1, -}; - -typedef struct futex_hash_bucket *class_hb_t; - -typedef struct futex_private_hash *class_private_hash_t; - -enum { - FR_PERCPU = 0, - FR_ATOMIC = 1, -}; - -struct dma_chan___2 { - int lock; - const char *device_id; -}; - -enum pkey_id_type { - PKEY_ID_PGP = 0, - PKEY_ID_X509 = 1, - PKEY_ID_PKCS7 = 2, -}; - -struct module_signature { - u8 algo; - u8 hash; - u8 id_type; - u8 signer_len; - u8 key_id_len; - u8 __pad[3]; - __be32 sig_len; -}; - -struct kallsym_iter { - loff_t pos; - loff_t pos_mod_end; - loff_t pos_ftrace_mod_end; - loff_t pos_bpf_end; - long unsigned int value; - unsigned int nameoff; - char type; - char name[512]; - char module_name[56]; - int exported; - int show_value; -}; - -struct bpf_iter__ksym { - union { - struct bpf_iter_meta *meta; - }; - union { - struct kallsym_iter *ksym; - }; -}; - -typedef long unsigned int elf_greg_t; - -typedef elf_greg_t elf_gregset_t[27]; - -struct elf64_phdr { - Elf64_Word p_type; - Elf64_Word p_flags; - Elf64_Off p_offset; - Elf64_Addr p_vaddr; - Elf64_Addr p_paddr; - Elf64_Xword p_filesz; - Elf64_Xword p_memsz; - Elf64_Xword p_align; -}; - -typedef struct elf64_phdr Elf64_Phdr; - -struct elf_siginfo { - int si_signo; - int si_code; - int si_errno; -}; - -struct elf_prstatus_common { - struct elf_siginfo pr_info; - short int pr_cursig; - long unsigned int pr_sigpend; - long unsigned int pr_sighold; - pid_t pr_pid; - pid_t pr_ppid; - pid_t pr_pgrp; - pid_t pr_sid; - struct __kernel_old_timeval pr_utime; - struct __kernel_old_timeval pr_stime; - struct __kernel_old_timeval pr_cutime; - struct __kernel_old_timeval pr_cstime; -}; - -struct elf_prstatus { - struct elf_prstatus_common common; - elf_gregset_t pr_reg; - int pr_fpvalid; -}; - -struct debugfs_blob_wrapper { - void *data; - long unsigned int size; -}; - -struct kho_scratch { - phys_addr_t addr; - phys_addr_t size; -}; - -enum kho_event { - KEXEC_KHO_FINALIZE = 0, - KEXEC_KHO_ABORT = 1, -}; - -struct kho_mem_phys_bits { - long unsigned int preserve[64]; -}; - -struct kho_mem_phys { - struct xarray phys_bits; -}; - -struct kho_mem_track { - struct xarray orders; -}; - -struct khoser_mem_chunk; - -struct kho_serialization { - struct page *fdt; - struct list_head fdt_list; - struct dentry *sub_fdt_dir; - struct kho_mem_track track; - struct khoser_mem_chunk *preserved_mem_map; -}; - -struct khoser_mem_chunk_hdr { - union { - phys_addr_t phys; - struct khoser_mem_chunk *ptr; - } next; - unsigned int order; - unsigned int num_elms; -}; - -struct khoser_mem_bitmap_ptr { - phys_addr_t phys_start; - union { - phys_addr_t phys; - struct kho_mem_phys_bits *ptr; - } bitmap; -}; - -struct khoser_mem_chunk { - struct khoser_mem_chunk_hdr hdr; - struct khoser_mem_bitmap_ptr bitmaps[255]; -}; - -struct fdt_debugfs { - struct list_head list; - struct debugfs_blob_wrapper wrapper; - struct dentry *file; -}; - -struct kho_out { - struct blocking_notifier_head chain_head; - struct dentry *dir; - struct mutex lock; - struct kho_serialization ser; - bool finalized; -}; - -struct kho_in { - struct dentry *dir; - phys_addr_t fdt_phys; - phys_addr_t scratch_phys; - struct list_head fdt_list; -}; - -enum { - CGRP_NOTIFY_ON_RELEASE = 0, - CGRP_CPUSET_CLONE_CHILDREN = 1, - CGRP_FREEZE = 2, - CGRP_FROZEN = 3, -}; - -struct sched_domain_attr { - int relax_domain_level; -}; - -struct uf_node { - struct uf_node *parent; - unsigned int rank; -}; - -struct fmeter { - int cnt; - int val; - time64_t time; - spinlock_t lock; -}; - -enum prs_errcode { - PERR_NONE = 0, - PERR_INVCPUS = 1, - PERR_INVPARENT = 2, - PERR_NOTPART = 3, - PERR_NOTEXCL = 4, - PERR_NOCPUS = 5, - PERR_HOTPLUG = 6, - PERR_CPUSEMPTY = 7, - PERR_HKEEPING = 8, - PERR_ACCESS = 9, - PERR_REMOTE = 10, -}; - -typedef enum { - CS_ONLINE = 0, - CS_CPU_EXCLUSIVE = 1, - CS_MEM_EXCLUSIVE = 2, - CS_MEM_HARDWALL = 3, - CS_MEMORY_MIGRATE = 4, - CS_SCHED_LOAD_BALANCE = 5, - CS_SPREAD_PAGE = 6, - CS_SPREAD_SLAB = 7, -} cpuset_flagbits_t; - -typedef enum { - FILE_MEMORY_MIGRATE = 0, - FILE_CPULIST = 1, - FILE_MEMLIST = 2, - FILE_EFFECTIVE_CPULIST = 3, - FILE_EFFECTIVE_MEMLIST = 4, - FILE_SUBPARTS_CPULIST = 5, - FILE_EXCLUSIVE_CPULIST = 6, - FILE_EFFECTIVE_XCPULIST = 7, - FILE_ISOLATED_CPULIST = 8, - FILE_CPU_EXCLUSIVE = 9, - FILE_MEM_EXCLUSIVE = 10, - FILE_MEM_HARDWALL = 11, - FILE_SCHED_LOAD_BALANCE = 12, - FILE_PARTITION_ROOT = 13, - FILE_SCHED_RELAX_DOMAIN_LEVEL = 14, - FILE_MEMORY_PRESSURE_ENABLED = 15, - FILE_MEMORY_PRESSURE = 16, - FILE_SPREAD_PAGE = 17, - FILE_SPREAD_SLAB = 18, -} cpuset_filetype_t; - -struct cpuset { - struct cgroup_subsys_state css; - long unsigned int flags; - cpumask_var_t cpus_allowed; - nodemask_t mems_allowed; - cpumask_var_t effective_cpus; - nodemask_t effective_mems; - cpumask_var_t effective_xcpus; - cpumask_var_t exclusive_cpus; - nodemask_t old_mems_allowed; - struct fmeter fmeter; - int attach_in_progress; - int relax_domain_level; - int nr_subparts; - int partition_root_state; - int nr_deadline_tasks; - int nr_migrate_dl_tasks; - u64 sum_migrate_dl_bw; - enum prs_errcode prs_err; - struct cgroup_file partition_file; - struct list_head remote_sibling; - struct uf_node node; -}; - -struct tmpmasks { - cpumask_var_t addmask; - cpumask_var_t delmask; - cpumask_var_t new_cpus; -}; - -enum partition_cmd { - partcmd_enable = 0, - partcmd_enablei = 1, - partcmd_disable = 2, - partcmd_update = 3, - partcmd_invalidate = 4, -}; - -struct cpuset_migrate_mm_work { - struct work_struct work; - struct mm_struct *mm; - nodemask_t from; - nodemask_t to; -}; - -enum audit_nlgrps { - AUDIT_NLGRP_NONE = 0, - AUDIT_NLGRP_READLOG = 1, - __AUDIT_NLGRP_MAX = 2, -}; - -struct audit_status { - __u32 mask; - __u32 enabled; - __u32 failure; - __u32 pid; - __u32 rate_limit; - __u32 backlog_limit; - __u32 lost; - __u32 backlog; - union { - __u32 version; - __u32 feature_bitmap; - }; - __u32 backlog_wait_time; - __u32 backlog_wait_time_actual; -}; - -struct audit_features { - __u32 vers; - __u32 mask; - __u32 features; - __u32 lock; -}; - -struct audit_tty_status { - __u32 enabled; - __u32 log_passwd; -}; - -struct audit_sig_info { - uid_t uid; - pid_t pid; - char ctx[0]; -}; - -struct audit_netlink_list { - __u32 portid; - struct net *net; - struct sk_buff_head q; -}; - -struct audit_net { - struct sock *sk; -}; - -struct auditd_connection { - struct pid *pid; - u32 portid; - struct net *net; - struct callback_head rcu; -}; - -struct audit_ctl_mutex { - struct mutex lock; - void *owner; -}; - -struct audit_buffer { - struct sk_buff *skb; - struct sk_buff_head skb_list; - struct audit_context *ctx; - struct audit_stamp stamp; - gfp_t gfp_mask; -}; - -struct audit_reply { - __u32 portid; - struct net *net; - struct sk_buff *skb; -}; - -enum con_flush_mode { - CONSOLE_FLUSH_PENDING = 0, - CONSOLE_REPLAY_ALL = 1, -}; - -struct kgdb_io { - const char *name; - int (*read_char)(void); - void (*write_char)(u8); - void (*flush)(void); - int (*init)(void); - void (*deinit)(void); - void (*pre_exception)(void); - void (*post_exception)(void); - struct console *cons; -}; - -enum { - KDB_NOT_INITIALIZED = 0, - KDB_INIT_EARLY = 1, - KDB_INIT_FULL = 2, -}; - -struct kgdb_state { - int ex_vector; - int signo; - int err_code; - int cpu; - int pass_exception; - long unsigned int thr_query; - long unsigned int threadid; - long int kgdb_usethreadid; - struct pt_regs *linux_regs; - atomic_t *send_ready; -}; - -typedef int (*get_char_func)(void); - -struct tp_module { - struct list_head list; - struct module *mod; -}; - -enum tp_func_state { - TP_FUNC_0 = 0, - TP_FUNC_1 = 1, - TP_FUNC_2 = 2, - TP_FUNC_N = 3, -}; - -enum tp_transition_sync { - TP_TRANSITION_SYNC_1_0_1 = 0, - TP_TRANSITION_SYNC_N_2_1 = 1, - _NR_TP_TRANSITION_SYNC = 2, -}; - -struct tp_transition_snapshot { - long unsigned int rcu; - bool ongoing; -}; - -struct tp_probes { - struct callback_head rcu; - struct tracepoint_func probes[0]; -}; - -typedef void (*swap_r_func_t)(void *, void *, int, const void *); - -typedef int (*cmp_r_func_t)(const void *, const void *, const void *); - -enum ftrace_dump_mode { - DUMP_NONE = 0, - DUMP_ALL = 1, - DUMP_ORIG = 2, - DUMP_PARAM = 3, -}; - -typedef struct trace_buffer *class_ring_buffer_nest_t; - -struct partial_page { - unsigned int offset; - unsigned int len; - long unsigned int private; -}; - -struct splice_pipe_desc { - struct page **pages; - struct partial_page *partial; - int nr_pages; - unsigned int nr_pages_max; - const struct pipe_buf_operations *ops; - void (*spd_release)(struct splice_pipe_desc *, unsigned int); -}; - -struct trace_export { - struct trace_export *next; - void (*write)(struct trace_export *, const void *, unsigned int); - int flags; -}; - -enum trace_iter_flags { - TRACE_FILE_LAT_FMT = 1, - TRACE_FILE_ANNOTATE = 2, - TRACE_FILE_TIME_IN_NS = 4, -}; - -enum event_trigger_type { - ETT_NONE = 0, - ETT_TRACE_ONOFF = 1, - ETT_SNAPSHOT = 2, - ETT_STACKTRACE = 4, - ETT_EVENT_ENABLE = 8, - ETT_EVENT_HIST = 16, - ETT_HIST_ENABLE = 32, - ETT_EVENT_EPROBE = 64, -}; - -struct stack_entry { - struct trace_entry ent; - int size; - long unsigned int caller[0]; -}; - -struct userstack_entry { - struct trace_entry ent; - unsigned int tgid; - long unsigned int caller[8]; -}; - -struct bprint_entry { - struct trace_entry ent; - long unsigned int ip; - const char *fmt; - u32 buf[0]; -}; - -struct raw_data_entry { - struct trace_entry ent; - unsigned int id; - char buf[0]; -}; - -struct bputs_entry { - struct trace_entry ent; - long unsigned int ip; - const char *str; -}; - -struct func_repeats_entry { - struct trace_entry ent; - long unsigned int ip; - long unsigned int parent_ip; - u16 count; - u16 top_delta_ts; - u32 bottom_delta_ts; -}; - -enum { - TRACE_ARRAY_FL_GLOBAL = 1, - TRACE_ARRAY_FL_BOOT = 2, - TRACE_ARRAY_FL_LAST_BOOT = 4, - TRACE_ARRAY_FL_MOD_INIT = 8, - TRACE_ARRAY_FL_MEMMAP = 16, -}; - -struct ftrace_func_command { - struct list_head list; - char *name; - int (*func)(struct trace_array *, struct ftrace_hash *, char *, char *, char *, int); -}; - -struct ftrace_probe_ops { - void (*func)(long unsigned int, long unsigned int, struct trace_array *, struct ftrace_probe_ops *, void *); - int (*init)(struct ftrace_probe_ops *, struct trace_array *, long unsigned int, void *, void **); - void (*free)(struct ftrace_probe_ops *, struct trace_array *, long unsigned int, void *); - int (*print)(struct seq_file *, long unsigned int, struct ftrace_probe_ops *, void *); -}; - -typedef int (*ftrace_mapper_func)(void *); - -struct trace_parser { - bool cont; - bool fail; - char *buffer; - unsigned int idx; - unsigned int size; -}; - -enum trace_iterator_flags { - TRACE_ITER_PRINT_PARENT = 1, - TRACE_ITER_SYM_OFFSET = 2, - TRACE_ITER_SYM_ADDR = 4, - TRACE_ITER_VERBOSE = 8, - TRACE_ITER_RAW = 16, - TRACE_ITER_HEX = 32, - TRACE_ITER_BIN = 64, - TRACE_ITER_BLOCK = 128, - TRACE_ITER_FIELDS = 256, - TRACE_ITER_PRINTK = 512, - TRACE_ITER_ANNOTATE = 1024, - TRACE_ITER_USERSTACKTRACE = 2048, - TRACE_ITER_SYM_USEROBJ = 4096, - TRACE_ITER_PRINTK_MSGONLY = 8192, - TRACE_ITER_CONTEXT_INFO = 16384, - TRACE_ITER_LATENCY_FMT = 32768, - TRACE_ITER_RECORD_CMD = 65536, - TRACE_ITER_RECORD_TGID = 131072, - TRACE_ITER_OVERWRITE = 262144, - TRACE_ITER_STOP_ON_FREE = 524288, - TRACE_ITER_IRQ_INFO = 1048576, - TRACE_ITER_MARKERS = 2097152, - TRACE_ITER_EVENT_FORK = 4194304, - TRACE_ITER_TRACE_PRINTK = 8388608, - TRACE_ITER_COPY_MARKER = 16777216, - TRACE_ITER_PAUSE_ON_TRACE = 33554432, - TRACE_ITER_HASH_PTR = 67108864, - TRACE_ITER_FUNCTION = 134217728, - TRACE_ITER_FUNC_FORK = 268435456, - TRACE_ITER_DISPLAY_GRAPH = 536870912, - TRACE_ITER_STACKTRACE = 1073741824, -}; - -struct pipe_wait { - struct trace_iterator *iter; - int wait_index; -}; - -struct ftrace_stack { - long unsigned int calls[1024]; -}; - -struct ftrace_stacks { - struct ftrace_stack stacks[4]; -}; - -struct trace_buffer_struct { - int nesting; - char buffer[4096]; -}; - -struct trace_mod_entry { - long unsigned int mod_addr; - char mod_name[56]; -}; - -struct trace_scratch { - unsigned int clock_id; - long unsigned int text_addr; - long unsigned int nr_entries; - struct trace_mod_entry entries[0]; -}; - -struct trace_user_buf { - char *buf; -}; - -struct trace_user_buf_info { - struct trace_user_buf *tbuf; - int ref; -}; - -struct ftrace_buffer_info { - struct trace_iterator iter; - void *spare; - unsigned int spare_cpu; - unsigned int spare_size; - unsigned int read; -}; - -struct err_info { - const char **errs; - u8 type; - u16 pos; - u64 ts; -}; - -struct tracing_log_err { - struct list_head list; - struct err_info info; - char loc[128]; - char *cmd; -}; - -struct buffer_ref { - struct trace_buffer *buffer; - void *page; - int cpu; - refcount_t refcount; -}; - -typedef int (*tracing_map_cmp_fn_t)(void *, void *); - -struct tracing_map_field { - tracing_map_cmp_fn_t cmp_fn; - union { - atomic64_t sum; - unsigned int offset; - }; -}; - -struct tracing_map; - -struct tracing_map_elt { - struct tracing_map *map; - struct tracing_map_field *fields; - atomic64_t *vars; - bool *var_set; - void *key; - void *private_data; -}; - -struct tracing_map_sort_key { - unsigned int field_idx; - bool descending; -}; - -struct tracing_map_array; - -struct tracing_map_ops; - -struct tracing_map { - unsigned int key_size; - unsigned int map_bits; - unsigned int map_size; - unsigned int max_elts; - atomic_t next_elt; - struct tracing_map_array *elts; - struct tracing_map_array *map; - const struct tracing_map_ops *ops; - void *private_data; - struct tracing_map_field fields[6]; - unsigned int n_fields; - int key_idx[3]; - unsigned int n_keys; - struct tracing_map_sort_key sort_key; - unsigned int n_vars; - atomic64_t hits; - atomic64_t drops; -}; - -struct tracing_map_entry { - u32 key; - struct tracing_map_elt *val; -}; - -struct tracing_map_sort_entry { - void *key; - struct tracing_map_elt *elt; - bool elt_copied; - bool dup; -}; - -struct tracing_map_array { - unsigned int entries_per_page; - unsigned int entry_size_shift; - unsigned int entry_shift; - unsigned int entry_mask; - unsigned int n_pages; - void **pages; -}; - -struct tracing_map_ops { - int (*elt_alloc)(struct tracing_map_elt *); - void (*elt_free)(struct tracing_map_elt *); - void (*elt_clear)(struct tracing_map_elt *); - void (*elt_init)(struct tracing_map_elt *); -}; - -struct saved_cmdlines_buffer { - unsigned int map_pid_to_cmdline[32769]; - unsigned int *map_cmdline_to_pid; - unsigned int cmdline_num; - int cmdline_idx; - char saved_cmdlines[0]; -}; - -struct osnoise_entry { - struct trace_entry ent; - u64 noise; - u64 runtime; - u64 max_sample; - unsigned int hw_count; - unsigned int nmi_count; - unsigned int irq_count; - unsigned int softirq_count; - unsigned int thread_count; -}; - -struct timerlat_entry { - struct trace_entry ent; - unsigned int seqnum; - int context; - u64 timer_latency; -}; - -struct osnoise_sample { - u64 runtime; - u64 noise; - u64 max_sample; - int hw_count; - int nmi_count; - int irq_count; - int softirq_count; - int thread_count; -}; - -struct timerlat_sample { - u64 timer_latency; - unsigned int seqnum; - int context; -}; - -struct trace_event_raw_osnoise_sample { - struct trace_entry ent; - u64 runtime; - u64 noise; - u64 max_sample; - int hw_count; - int irq_count; - int nmi_count; - int softirq_count; - int thread_count; - char __data[0]; -}; - -struct trace_event_raw_timerlat_sample { - struct trace_entry ent; - u64 timer_latency; - unsigned int seqnum; - int context; - char __data[0]; -}; - -struct trace_event_raw_thread_noise { - struct trace_entry ent; - char comm[16]; - u64 start; - u64 duration; - pid_t pid; - char __data[0]; -}; - -struct trace_event_raw_softirq_noise { - struct trace_entry ent; - u64 start; - u64 duration; - int vector; - char __data[0]; -}; - -struct trace_event_raw_irq_noise { - struct trace_entry ent; - u64 start; - u64 duration; - u32 __data_loc_desc; - int vector; - char __data[0]; -}; - -struct trace_event_raw_nmi_noise { - struct trace_entry ent; - u64 start; - u64 duration; - char __data[0]; -}; - -struct trace_event_raw_sample_threshold { - struct trace_entry ent; - u64 start; - u64 duration; - u64 interference; - char __data[0]; -}; - -struct trace_event_data_offsets_osnoise_sample {}; - -struct trace_event_data_offsets_timerlat_sample {}; - -struct trace_event_data_offsets_thread_noise {}; - -struct trace_event_data_offsets_softirq_noise {}; - -struct trace_event_data_offsets_irq_noise { - u32 desc; - const void *desc_ptr_; -}; - -struct trace_event_data_offsets_nmi_noise {}; - -struct trace_event_data_offsets_sample_threshold {}; - -typedef void (*btf_trace_osnoise_sample)(void *, struct osnoise_sample *); - -typedef void (*btf_trace_timerlat_sample)(void *, struct timerlat_sample *); - -typedef void (*btf_trace_thread_noise)(void *, struct task_struct *, u64, u64); - -typedef void (*btf_trace_softirq_noise)(void *, int, u64, u64); - -typedef void (*btf_trace_irq_noise)(void *, int, const char *, u64, u64); - -typedef void (*btf_trace_nmi_noise)(void *, u64, u64); - -typedef void (*btf_trace_sample_threshold)(void *, u64, u64, u64); - -enum osnoise_options_index { - OSN_DEFAULTS = 0, - OSN_WORKLOAD = 1, - OSN_PANIC_ON_STOP = 2, - OSN_PREEMPT_DISABLE = 3, - OSN_IRQ_DISABLE = 4, - OSN_MAX = 5, -}; - -struct osnoise_instance { - struct list_head list; - struct trace_array *tr; -}; - -struct osn_nmi { - u64 count; - u64 delta_start; -}; - -struct osn_irq { - u64 count; - u64 arrival_time; - u64 delta_start; -}; - -struct osn_softirq { - u64 count; - u64 arrival_time; - u64 delta_start; -}; - -struct osn_thread { - u64 count; - u64 arrival_time; - u64 delta_start; -}; - -struct osnoise_variables { - struct task_struct *kthread; - bool sampling; - pid_t pid; - struct osn_nmi nmi; - struct osn_irq irq; - struct osn_softirq softirq; - struct osn_thread thread; - local_t int_counter; -}; - -struct timerlat_variables { - struct task_struct *kthread; - struct hrtimer timer; - u64 rel_period; - u64 abs_period; - bool tracing_thread; - u64 count; - bool uthread_migrate; -}; - -struct osnoise_data { - u64 sample_period; - u64 sample_runtime; - u64 stop_tracing; - u64 stop_tracing_total; - u64 timerlat_period; - u64 print_stack; - int timerlat_tracer; - bool tainted; -}; - -struct trace_stack { - int stack_size; - int nr_entries; - long unsigned int calls[256]; -}; - -typedef u64 compat_u64; - -enum blktrace_notify { - __BLK_TN_PROCESS = 0, - __BLK_TN_TIMESTAMP = 1, - __BLK_TN_MESSAGE = 2, - __BLK_TN_CGROUP = 256, -}; - -struct blk_io_trace { - __u32 magic; - __u32 sequence; - __u64 time; - __u64 sector; - __u32 bytes; - __u32 action; - __u32 pid; - __u32 device; - __u32 cpu; - __u16 error; - __u16 pdu_len; -}; - -struct blk_io_trace_remap { - __be32 device_from; - __be32 device_to; - __be64 sector_from; -}; - -enum { - Blktrace_setup = 1, - Blktrace_running = 2, - Blktrace_stopped = 3, -}; - -struct blk_user_trace_setup { - char name[32]; - __u16 act_mask; - __u32 buf_size; - __u32 buf_nr; - __u64 start_lba; - __u64 end_lba; - __u32 pid; -}; - -struct compat_blk_user_trace_setup { - char name[32]; - u16 act_mask; - int: 0; - u32 buf_size; - u32 buf_nr; - compat_u64 start_lba; - compat_u64 end_lba; - u32 pid; -} __attribute__((packed)); - -typedef void blk_log_action_t(struct trace_iterator *, const char *, bool); - -struct syscall_trace_enter { - struct trace_entry ent; - int nr; - long unsigned int args[0]; -}; - -struct syscall_trace_exit { - struct trace_entry ent; - int nr; - long int ret; -}; - -struct syscall_tp_t { - struct trace_entry ent; - int syscall_nr; - long unsigned int ret; -}; - -struct syscall_tp_t___2 { - struct trace_entry ent; - int syscall_nr; - long unsigned int args[6]; -}; - -struct eprobe_trace_entry_head { - struct trace_entry ent; -}; - -enum { - EVENT_TRIGGER_FL_PROBE = 1, -}; - -struct event_trigger_ops; - -struct event_command; - -struct event_trigger_data { - long unsigned int count; - int ref; - int flags; - const struct event_trigger_ops *ops; - struct event_command *cmd_ops; - struct event_filter *filter; - char *filter_str; - void *private_data; - bool paused; - bool paused_tmp; - struct list_head list; - char *name; - struct list_head named_list; - struct event_trigger_data *named_data; -}; - -struct event_trigger_ops { - void (*trigger)(struct event_trigger_data *, struct trace_buffer *, void *, struct ring_buffer_event *); - int (*init)(struct event_trigger_data *); - void (*free)(struct event_trigger_data *); - int (*print)(struct seq_file *, struct event_trigger_data *); -}; - -struct event_command { - struct list_head list; - char *name; - enum event_trigger_type trigger_type; - int flags; - int (*parse)(struct event_command *, struct trace_event_file *, char *, char *, char *); - int (*reg)(char *, struct event_trigger_data *, struct trace_event_file *); - void (*unreg)(char *, struct event_trigger_data *, struct trace_event_file *); - void (*unreg_all)(struct trace_event_file *); - int (*set_filter)(char *, struct event_trigger_data *, struct trace_event_file *); - const struct event_trigger_ops * (*get_trigger_ops)(char *, char *); -}; - -enum event_command_flags { - EVENT_CMD_FL_POST_TRIGGER = 1, - EVENT_CMD_FL_NEEDS_REC = 2, -}; - -struct trace_eprobe { - const char *event_system; - const char *event_name; - char *filter_str; - struct trace_event_call *event; - struct dyn_event devent; - struct trace_probe tp; -}; - -struct eprobe_data { - struct trace_event_file *file; - struct trace_eprobe *ep; -}; - -struct uprobe_consumer { - int (*handler)(struct uprobe_consumer *, struct pt_regs *, __u64 *); - int (*ret_handler)(struct uprobe_consumer *, long unsigned int, struct pt_regs *, __u64 *); - bool (*filter)(struct uprobe_consumer *, struct mm_struct *); - struct list_head cons_node; - __u64 id; -}; - -enum { - BPF_F_UPROBE_MULTI_RETURN = 1, -}; - -enum { - BPF_F_GET_BRANCH_RECORDS_SIZE = 1, -}; - -struct bpf_perf_event_value { - __u64 counter; - __u64 enabled; - __u64 running; -}; - -struct bpf_raw_tracepoint_args { - __u64 args[0]; -}; - -enum bpf_task_fd_type { - BPF_FD_TYPE_RAW_TRACEPOINT = 0, - BPF_FD_TYPE_TRACEPOINT = 1, - BPF_FD_TYPE_KPROBE = 2, - BPF_FD_TYPE_KRETPROBE = 3, - BPF_FD_TYPE_UPROBE = 4, - BPF_FD_TYPE_URETPROBE = 5, -}; - -struct btf_ptr { - void *ptr; - __u32 type_id; - __u32 flags; -}; - -enum { - BTF_F_COMPACT = 1, - BTF_F_NONAME = 2, - BTF_F_PTR_RAW = 4, - BTF_F_ZERO = 8, -}; - -struct bpf_link_primer { - struct bpf_link *link; - struct file *file; - int fd; - u32 id; -}; - -struct bpf_event_entry { - struct perf_event *event; - struct file *perf_file; - struct file *map_file; - struct callback_head rcu; -}; - -typedef u32 (*bpf_prog_run_fn)(const struct bpf_prog *, const void *); - -struct bpf_key { - struct key *key; - bool has_ref; -}; - -typedef struct pt_regs bpf_user_pt_regs_t; - -struct bpf_perf_event_data { - bpf_user_pt_regs_t regs; - __u64 sample_period; - __u64 addr; -}; - -struct perf_event_query_bpf { - __u32 ids_len; - __u32 prog_cnt; - __u32 ids[0]; -}; - -struct bpf_perf_event_data_kern { - bpf_user_pt_regs_t *regs; - struct perf_sample_data *data; - struct perf_event *event; -}; - -struct trace_uprobe; - -struct uprobe_dispatch_data { - struct trace_uprobe *tu; - long unsigned int bp_addr; -}; - -struct trace_event_raw_bpf_trace_printk { - struct trace_entry ent; - u32 __data_loc_bpf_string; - char __data[0]; -}; - -struct trace_event_data_offsets_bpf_trace_printk { - u32 bpf_string; - const void *bpf_string_ptr_; -}; - -typedef void (*btf_trace_bpf_trace_printk)(void *, const char *); - -struct bpf_trace_module { - struct module *module; - struct list_head list; -}; - -typedef u64 (*btf_bpf_override_return)(struct pt_regs *, long unsigned int); - -typedef u64 (*btf_bpf_probe_read_user)(void *, u32, const void *); - -typedef u64 (*btf_bpf_probe_read_user_str)(void *, u32, const void *); - -typedef u64 (*btf_bpf_probe_read_kernel)(void *, u32, const void *); - -typedef u64 (*btf_bpf_probe_read_kernel_str)(void *, u32, const void *); - -typedef u64 (*btf_bpf_probe_read_compat)(void *, u32, const void *); - -typedef u64 (*btf_bpf_probe_read_compat_str)(void *, u32, const void *); - -typedef u64 (*btf_bpf_probe_write_user)(void *, const void *, u32); - -typedef u64 (*btf_bpf_trace_printk)(char *, u32, u64, u64, u64); - -typedef u64 (*btf_bpf_trace_vprintk)(char *, u32, const void *, u32); - -typedef u64 (*btf_bpf_seq_printf)(struct seq_file *, char *, u32, const void *, u32); - -typedef u64 (*btf_bpf_seq_write)(struct seq_file *, const void *, u32); - -typedef u64 (*btf_bpf_seq_printf_btf)(struct seq_file *, struct btf_ptr *, u32, u64); - -typedef u64 (*btf_bpf_perf_event_read)(struct bpf_map *, u64); - -typedef u64 (*btf_bpf_perf_event_read_value)(struct bpf_map *, u64, struct bpf_perf_event_value *, u32); - -struct bpf_trace_sample_data { - struct perf_sample_data sds[3]; -}; - -typedef u64 (*btf_bpf_perf_event_output)(struct pt_regs *, struct bpf_map *, u64, void *, u64); - -struct bpf_nested_pt_regs { - struct pt_regs regs[3]; -}; - -typedef u64 (*btf_bpf_get_current_task)(void); - -typedef u64 (*btf_bpf_get_current_task_btf)(void); - -typedef u64 (*btf_bpf_task_pt_regs)(struct task_struct *); - -struct send_signal_irq_work { - struct irq_work irq_work; - struct task_struct *task; - u32 sig; - enum pid_type type; - bool has_siginfo; - struct kernel_siginfo info; -}; - -typedef u64 (*btf_bpf_send_signal)(u32); - -typedef u64 (*btf_bpf_send_signal_thread)(u32); - -typedef u64 (*btf_bpf_d_path)(struct path *, char *, u32); - -typedef u64 (*btf_bpf_snprintf_btf)(char *, u32, struct btf_ptr *, u32, u64); - -typedef u64 (*btf_bpf_get_func_ip_tracing)(void *); - -typedef u64 (*btf_bpf_get_func_ip_kprobe)(struct pt_regs *); - -typedef u64 (*btf_bpf_get_func_ip_kprobe_multi)(struct pt_regs *); - -typedef u64 (*btf_bpf_get_attach_cookie_kprobe_multi)(struct pt_regs *); - -typedef u64 (*btf_bpf_get_func_ip_uprobe_multi)(struct pt_regs *); - -typedef u64 (*btf_bpf_get_attach_cookie_uprobe_multi)(struct pt_regs *); - -typedef u64 (*btf_bpf_get_attach_cookie_trace)(void *); - -typedef u64 (*btf_bpf_get_attach_cookie_pe)(struct bpf_perf_event_data_kern *); - -typedef u64 (*btf_bpf_get_attach_cookie_tracing)(void *); - -typedef u64 (*btf_bpf_get_branch_snapshot)(void *, u32, u64); - -typedef u64 (*btf_get_func_arg)(void *, u32, u64 *); - -typedef u64 (*btf_get_func_ret)(void *, u64 *); - -typedef u64 (*btf_get_func_arg_cnt)(void *); - -typedef u64 (*btf_bpf_perf_event_output_tp)(void *, struct bpf_map *, u64, void *, u64); - -typedef u64 (*btf_bpf_get_stackid_tp)(void *, struct bpf_map *, u64); - -typedef u64 (*btf_bpf_get_stack_tp)(void *, void *, u32, u64); - -typedef u64 (*btf_bpf_perf_prog_read_value)(struct bpf_perf_event_data_kern *, struct bpf_perf_event_value *, u32); - -typedef u64 (*btf_bpf_read_branch_records)(struct bpf_perf_event_data_kern *, void *, u32, u64); - -struct bpf_raw_tp_regs { - struct pt_regs regs[3]; -}; - -typedef u64 (*btf_bpf_perf_event_output_raw_tp)(struct bpf_raw_tracepoint_args *, struct bpf_map *, u64, void *, u64); - -typedef u64 (*btf_bpf_get_stackid_raw_tp)(struct bpf_raw_tracepoint_args *, struct bpf_map *, u64); - -typedef u64 (*btf_bpf_get_stack_raw_tp)(struct bpf_raw_tracepoint_args *, void *, u32, u64); - -struct bpf_session_run_ctx { - struct bpf_run_ctx run_ctx; - bool is_return; - void *data; -}; - -struct bpf_uprobe_multi_link; - -struct bpf_uprobe { - struct bpf_uprobe_multi_link *link; - loff_t offset; - long unsigned int ref_ctr_offset; - u64 cookie; - struct uprobe *uprobe; - struct uprobe_consumer consumer; - bool session; -}; - -struct bpf_uprobe_multi_link { - struct path path; - struct bpf_link link; - u32 cnt; - struct bpf_uprobe *uprobes; - struct task_struct *task; -}; - -struct bpf_uprobe_multi_run_ctx { - struct bpf_session_run_ctx session_ctx; - long unsigned int entry_ip; - struct bpf_uprobe *uprobe; -}; - -typedef int (*copy_fn_t)(void *, const void *, u32, struct task_struct *); - -struct trace_event_raw_rpm_internal { - struct trace_entry ent; - u32 __data_loc_name; - int flags; - int usage_count; - int disable_depth; - int runtime_auto; - int request_pending; - int irq_safe; - int child_count; - char __data[0]; -}; - -struct trace_event_raw_rpm_return_int { - struct trace_entry ent; - u32 __data_loc_name; - long unsigned int ip; - int ret; - char __data[0]; -}; - -struct trace_event_raw_rpm_status { - struct trace_entry ent; - u32 __data_loc_name; - int status; - char __data[0]; -}; - -struct trace_event_data_offsets_rpm_internal { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_rpm_return_int { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_rpm_status { - u32 name; - const void *name_ptr_; -}; - -typedef void (*btf_trace_rpm_suspend)(void *, struct device *, int); - -typedef void (*btf_trace_rpm_resume)(void *, struct device *, int); - -typedef void (*btf_trace_rpm_idle)(void *, struct device *, int); - -typedef void (*btf_trace_rpm_usage)(void *, struct device *, int); - -typedef void (*btf_trace_rpm_return_int)(void *, struct device *, long unsigned int, int); - -typedef void (*btf_trace_rpm_status)(void *, struct device *, enum rpm_status); - -struct btf_anon_stack { - u32 tid; - u32 offset; -}; - -enum dynevent_type { - DYNEVENT_TYPE_SYNTH = 1, - DYNEVENT_TYPE_KPROBE = 2, - DYNEVENT_TYPE_NONE = 3, -}; - -struct dynevent_cmd; - -typedef int (*dynevent_create_fn_t)(struct dynevent_cmd *); - -struct dynevent_cmd { - struct seq_buf seq; - const char *event_name; - unsigned int n_fields; - enum dynevent_type type; - dynevent_create_fn_t run_command; - void *private_data; -}; - -enum btf_func_linkage { - BTF_FUNC_STATIC = 0, - BTF_FUNC_GLOBAL = 1, - BTF_FUNC_EXTERN = 2, -}; - -struct btf_var_secinfo { - __u32 type; - __u32 offset; - __u32 size; -}; - -enum bpf_cond_pseudo_jmp { - BPF_MAY_GOTO = 0, -}; - -enum bpf_addr_space_cast { - BPF_ADDR_SPACE_CAST = 1, -}; - -struct bpf_flow_keys { - __u16 nhoff; - __u16 thoff; - __u16 addr_proto; - __u8 is_frag; - __u8 is_first_frag; - __u8 is_encap; - __u8 ip_proto; - __be16 n_proto; - __be16 sport; - __be16 dport; - union { - struct { - __be32 ipv4_src; - __be32 ipv4_dst; - }; - struct { - __u32 ipv6_src[4]; - __u32 ipv6_dst[4]; - }; - }; - __u32 flags; - __be32 flow_label; -}; - -struct bpf_sock { - __u32 bound_dev_if; - __u32 family; - __u32 type; - __u32 protocol; - __u32 mark; - __u32 priority; - __u32 src_ip4; - __u32 src_ip6[4]; - __u32 src_port; - __be16 dst_port; - __u32 dst_ip4; - __u32 dst_ip6[4]; - __u32 state; - __s32 rx_queue_mapping; -}; - -struct __sk_buff { - __u32 len; - __u32 pkt_type; - __u32 mark; - __u32 queue_mapping; - __u32 protocol; - __u32 vlan_present; - __u32 vlan_tci; - __u32 vlan_proto; - __u32 priority; - __u32 ingress_ifindex; - __u32 ifindex; - __u32 tc_index; - __u32 cb[5]; - __u32 hash; - __u32 tc_classid; - __u32 data; - __u32 data_end; - __u32 napi_id; - __u32 family; - __u32 remote_ip4; - __u32 local_ip4; - __u32 remote_ip6[4]; - __u32 local_ip6[4]; - __u32 remote_port; - __u32 local_port; - __u32 data_meta; - union { - struct bpf_flow_keys *flow_keys; - }; - __u64 tstamp; - __u32 wire_len; - __u32 gso_segs; - union { - struct bpf_sock *sk; - }; - __u32 gso_size; - __u8 tstamp_type; - __u64 hwtstamp; -}; - -enum bpf_core_relo_kind { - BPF_CORE_FIELD_BYTE_OFFSET = 0, - BPF_CORE_FIELD_BYTE_SIZE = 1, - BPF_CORE_FIELD_EXISTS = 2, - BPF_CORE_FIELD_SIGNED = 3, - BPF_CORE_FIELD_LSHIFT_U64 = 4, - BPF_CORE_FIELD_RSHIFT_U64 = 5, - BPF_CORE_TYPE_ID_LOCAL = 6, - BPF_CORE_TYPE_ID_TARGET = 7, - BPF_CORE_TYPE_EXISTS = 8, - BPF_CORE_TYPE_SIZE = 9, - BPF_CORE_ENUMVAL_EXISTS = 10, - BPF_CORE_ENUMVAL_VALUE = 11, - BPF_CORE_TYPE_MATCHES = 12, -}; - -struct bpf_core_relo { - __u32 insn_off; - __u32 type_id; - __u32 access_str_off; - enum bpf_core_relo_kind kind; -}; - -struct bpf_attach_target_info { - struct btf_func_model fmodel; - long int tgt_addr; - struct module *tgt_mod; - const char *tgt_name; - const struct btf_type *tgt_type; -}; - -enum bpf_jit_poke_reason { - BPF_POKE_REASON_TAIL_CALL = 0, -}; - -struct bpf_kfunc_desc { - struct btf_func_model func_model; - u32 func_id; - s32 imm; - u16 offset; - long unsigned int addr; -}; - -struct bpf_kfunc_desc_tab { - struct bpf_kfunc_desc descs[256]; - u32 nr_descs; -}; - -struct bpf_kfunc_btf { - struct btf *btf; - struct module *module; - u16 offset; -}; - -struct bpf_kfunc_btf_tab { - struct bpf_kfunc_btf descs[256]; - u32 nr_descs; -}; - -struct bpf_struct_ops_arg_info { - struct bpf_ctx_arg_aux *info; - u32 cnt; -}; - -struct bpf_struct_ops_desc { - struct bpf_struct_ops *st_ops; - const struct btf_type *type; - const struct btf_type *value_type; - u32 type_id; - u32 value_id; - struct bpf_struct_ops_arg_info *arg_info; -}; - -enum { - BPF_MAX_LOOPS = 8388608, - BPF_MAX_TIMED_LOOPS = 65535, -}; - -typedef u32 (*bpf_convert_ctx_access_t)(enum bpf_access_type, const struct bpf_insn *, struct bpf_insn *, struct bpf_prog *, u32 *); - -struct bpf_core_ctx { - struct bpf_verifier_log *log; - const struct btf *btf; -}; - -enum bpf_stack_slot_type { - STACK_INVALID = 0, - STACK_SPILL = 1, - STACK_MISC = 2, - STACK_ZERO = 3, - STACK_DYNPTR = 4, - STACK_ITER = 5, - STACK_IRQ_FLAG = 6, -}; - -struct bpf_verifier_state_list { - struct bpf_verifier_state state; - struct list_head node; - u32 miss_cnt; - u32 hit_cnt: 31; - u32 in_free_list: 1; -}; - -struct bpf_verifier_stack_elem { - struct bpf_verifier_state st; - int insn_idx; - int prev_insn_idx; - struct bpf_verifier_stack_elem *next; - u32 log_pos; -}; - -typedef void (*bpf_insn_print_t)(void *, const char *, ...); - -typedef const char * (*bpf_insn_revmap_call_t)(void *, const struct bpf_insn *); - -typedef const char * (*bpf_insn_print_imm_t)(void *, const struct bpf_insn *, __u64); - -struct bpf_insn_cbs { - bpf_insn_print_t cb_print; - bpf_insn_revmap_call_t cb_call; - bpf_insn_print_imm_t cb_imm; - void *private_data; -}; - -enum bpf_features { - BPF_FEAT_RDONLY_CAST_TO_VOID = 0, - BPF_FEAT_STREAMS = 1, - __MAX_BPF_FEAT = 2, -}; - -struct bpf_call_arg_meta { - struct bpf_map *map_ptr; - bool raw_mode; - bool pkt_access; - u8 release_regno; - int regno; - int access_size; - int mem_size; - u64 msize_max_value; - int ref_obj_id; - int dynptr_id; - int map_uid; - int func_id; - struct btf *btf; - u32 btf_id; - struct btf *ret_btf; - u32 ret_btf_id; - u32 subprogno; - struct btf_field *kptr_field; - s64 const_map_key; -}; - -struct bpf_kfunc_call_arg_meta { - struct btf *btf; - u32 func_id; - u32 kfunc_flags; - const struct btf_type *func_proto; - const char *func_name; - u32 ref_obj_id; - u8 release_regno; - bool r0_rdonly; - u32 ret_btf_id; - u64 r0_size; - u32 subprogno; - struct { - u64 value; - bool found; - } arg_constant; - struct btf *arg_btf; - u32 arg_btf_id; - bool arg_owning_ref; - bool arg_prog; - struct { - struct btf_field *field; - } arg_list_head; - struct { - struct btf_field *field; - } arg_rbtree_root; - struct { - enum bpf_dynptr_type type; - u32 id; - u32 ref_obj_id; - } initialized_dynptr; - struct { - u8 spi; - u8 frameno; - } iter; - struct { - struct bpf_map *ptr; - int uid; - } map; - u64 mem_size; -}; - -enum reg_arg_type { - SRC_OP = 0, - DST_OP = 1, - DST_OP_NO_MARK = 2, -}; - -struct linked_reg { - u8 frameno; - union { - u8 spi; - u8 regno; - }; - bool is_reg; -}; - -struct linked_regs { - int cnt; - struct linked_reg entries[6]; -}; - -enum bpf_access_src { - ACCESS_DIRECT = 1, - ACCESS_HELPER = 2, -}; - -struct task_struct__safe_rcu { - const cpumask_t *cpus_ptr; - struct css_set *cgroups; - struct task_struct *real_parent; - struct task_struct *group_leader; -}; - -struct cgroup__safe_rcu { - struct kernfs_node *kn; -}; - -struct css_set__safe_rcu { - struct cgroup *dfl_cgrp; -}; - -struct cgroup_subsys_state__safe_rcu { - struct cgroup *cgroup; -}; - -struct mm_struct__safe_rcu_or_null { - struct file *exe_file; -}; - -struct sk_buff__safe_rcu_or_null { - struct sock *sk; -}; - -struct request_sock__safe_rcu_or_null { - struct sock *sk; -}; - -struct bpf_iter_meta__safe_trusted { - struct seq_file *seq; -}; - -struct bpf_iter__task__safe_trusted { - struct bpf_iter_meta *meta; - struct task_struct *task; -}; - -struct linux_binprm__safe_trusted { - struct file *file; -}; - -struct file__safe_trusted { - struct inode *f_inode; -}; - -struct dentry__safe_trusted_or_null { - struct inode *d_inode; -}; - -struct socket__safe_trusted_or_null { - struct sock *sk; -}; - -enum { - PROCESS_SPIN_LOCK = 1, - PROCESS_RES_LOCK = 2, - PROCESS_LOCK_IRQ = 4, -}; - -struct bpf_reg_types { - const enum bpf_reg_type types[10]; - u32 *btf_id; -}; - -enum { - AT_PKT_END = -1, - BEYOND_PKT_END = -2, -}; - -typedef int (*set_callee_state_fn)(struct bpf_verifier_env *, struct bpf_func_state *, struct bpf_func_state *, int); - -enum { - KF_ARG_DYNPTR_ID = 0, - KF_ARG_LIST_HEAD_ID = 1, - KF_ARG_LIST_NODE_ID = 2, - KF_ARG_RB_ROOT_ID = 3, - KF_ARG_RB_NODE_ID = 4, - KF_ARG_WORKQUEUE_ID = 5, - KF_ARG_RES_SPIN_LOCK_ID = 6, -}; - -enum kfunc_ptr_arg_type { - KF_ARG_PTR_TO_CTX = 0, - KF_ARG_PTR_TO_ALLOC_BTF_ID = 1, - KF_ARG_PTR_TO_REFCOUNTED_KPTR = 2, - KF_ARG_PTR_TO_DYNPTR = 3, - KF_ARG_PTR_TO_ITER = 4, - KF_ARG_PTR_TO_LIST_HEAD = 5, - KF_ARG_PTR_TO_LIST_NODE = 6, - KF_ARG_PTR_TO_BTF_ID = 7, - KF_ARG_PTR_TO_MEM = 8, - KF_ARG_PTR_TO_MEM_SIZE = 9, - KF_ARG_PTR_TO_CALLBACK = 10, - KF_ARG_PTR_TO_RB_ROOT = 11, - KF_ARG_PTR_TO_RB_NODE = 12, - KF_ARG_PTR_TO_NULL = 13, - KF_ARG_PTR_TO_CONST_STR = 14, - KF_ARG_PTR_TO_MAP = 15, - KF_ARG_PTR_TO_WORKQUEUE = 16, - KF_ARG_PTR_TO_IRQ_FLAG = 17, - KF_ARG_PTR_TO_RES_SPIN_LOCK = 18, -}; - -enum special_kfunc_type { - KF_bpf_obj_new_impl = 0, - KF_bpf_obj_drop_impl = 1, - KF_bpf_refcount_acquire_impl = 2, - KF_bpf_list_push_front_impl = 3, - KF_bpf_list_push_back_impl = 4, - KF_bpf_list_pop_front = 5, - KF_bpf_list_pop_back = 6, - KF_bpf_list_front = 7, - KF_bpf_list_back = 8, - KF_bpf_cast_to_kern_ctx = 9, - KF_bpf_rdonly_cast = 10, - KF_bpf_rcu_read_lock = 11, - KF_bpf_rcu_read_unlock = 12, - KF_bpf_rbtree_remove = 13, - KF_bpf_rbtree_add_impl = 14, - KF_bpf_rbtree_first = 15, - KF_bpf_rbtree_root = 16, - KF_bpf_rbtree_left = 17, - KF_bpf_rbtree_right = 18, - KF_bpf_dynptr_from_skb = 19, - KF_bpf_dynptr_from_xdp = 20, - KF_bpf_dynptr_slice = 21, - KF_bpf_dynptr_slice_rdwr = 22, - KF_bpf_dynptr_clone = 23, - KF_bpf_percpu_obj_new_impl = 24, - KF_bpf_percpu_obj_drop_impl = 25, - KF_bpf_throw = 26, - KF_bpf_wq_set_callback_impl = 27, - KF_bpf_preempt_disable = 28, - KF_bpf_preempt_enable = 29, - KF_bpf_iter_css_task_new = 30, - KF_bpf_session_cookie = 31, - KF_bpf_get_kmem_cache = 32, - KF_bpf_local_irq_save = 33, - KF_bpf_local_irq_restore = 34, - KF_bpf_iter_num_new = 35, - KF_bpf_iter_num_next = 36, - KF_bpf_iter_num_destroy = 37, - KF_bpf_set_dentry_xattr = 38, - KF_bpf_remove_dentry_xattr = 39, - KF_bpf_res_spin_lock = 40, - KF_bpf_res_spin_unlock = 41, - KF_bpf_res_spin_lock_irqsave = 42, - KF_bpf_res_spin_unlock_irqrestore = 43, - KF___bpf_trap = 44, -}; - -enum { - REASON_BOUNDS = -1, - REASON_TYPE = -2, - REASON_PATHS = -3, - REASON_LIMIT = -4, - REASON_STACK = -5, -}; - -struct bpf_sanitize_info { - struct bpf_insn_aux_data aux; - bool mask_to_left; -}; - -enum { - DISCOVERED = 16, - EXPLORED = 32, - FALLTHROUGH = 1, - BRANCH = 2, -}; - -enum { - DONE_EXPLORING = 0, - KEEP_EXPLORING = 1, -}; - -struct call_summary { - u8 num_params; - bool is_void; - bool fastcall; -}; - -enum exact_level { - NOT_EXACT = 0, - EXACT = 1, - RANGE_WITHIN = 2, -}; - -enum { - PROCESS_BPF_EXIT = 1, -}; - -struct insn_live_regs { - u16 use; - u16 def; - u16 in; - u16 out; -}; - -struct bpf_iter; - -struct bpf_iter_num { - __u64 __opaque[1]; -}; - -struct bpf_iter_target_info { - struct list_head list; - const struct bpf_iter_reg *reg_info; - u32 btf_id; -}; - -struct bpf_iter_link { - struct bpf_link link; - struct bpf_iter_aux_info aux; - struct bpf_iter_target_info *tinfo; -}; - -struct bpf_iter_priv_data { - struct bpf_iter_target_info *tinfo; - const struct bpf_iter_seq_info *seq_info; - struct bpf_prog *prog; - u64 session_id; - u64 seq_num; - bool done_stop; - long: 0; - u8 target_private[0]; -}; - -typedef u64 (*btf_bpf_for_each_map_elem)(struct bpf_map *, void *, void *, u64); - -typedef u64 (*btf_bpf_loop)(u32, void *, void *, u64); - -struct bpf_iter_num_kern { - int cur; - int end; -}; - -struct bpf_iter_seq_link_info { - u32 link_id; -}; - -struct bpf_iter__bpf_link { - union { - struct bpf_iter_meta *meta; - }; - union { - struct bpf_link *link; - }; -}; - -struct pcpu_freelist_node; - -struct pcpu_freelist_head { - struct pcpu_freelist_node *first; - rqspinlock_t lock; -}; - -struct pcpu_freelist_node { - struct pcpu_freelist_node *next; -}; - -struct pcpu_freelist { - struct pcpu_freelist_head *freelist; -}; - -struct bpf_lpm_trie_key_hdr { - __u32 prefixlen; -}; - -struct bpf_lpm_trie_key_u8 { - union { - struct bpf_lpm_trie_key_hdr hdr; - __u32 prefixlen; - }; - __u8 data[0]; -}; - -struct lpm_trie_node { - struct lpm_trie_node *child[2]; - u32 prefixlen; - u32 flags; - u8 data[0]; -}; - -struct lpm_trie { - struct bpf_map map; - struct lpm_trie_node *root; - struct bpf_mem_alloc ma; - size_t n_entries; - size_t max_prefixlen; - size_t data_size; - rqspinlock_t lock; -}; - -struct bpf_tramp_run_ctx; - -typedef u64 (*bpf_trampoline_enter_t)(struct bpf_prog *, struct bpf_tramp_run_ctx *); - -struct bpf_tramp_run_ctx { - struct bpf_run_ctx run_ctx; - u64 bpf_cookie; - struct bpf_run_ctx *saved_run_ctx; -}; - -typedef void (*bpf_trampoline_exit_t)(struct bpf_prog *, u64, struct bpf_tramp_run_ctx *); - -struct bpf_shim_tramp_link { - struct bpf_tramp_link link; - struct bpf_trampoline *trampoline; -}; - -enum bpf_text_poke_type { - BPF_MOD_CALL = 0, - BPF_MOD_JUMP = 1, -}; - -struct bpf_stream_elem { - struct llist_node node; - int total_len; - int consumed_len; - char str[0]; -}; - -enum { - BPF_STREAM_MAX_CAPACITY = 100000, -}; - -struct bpf_stream_page { - refcount_t ref; - u32 consumed; - char buf[0]; -}; - -struct dump_stack_ctx { - struct bpf_stream_stage *ss; - int err; -}; - -struct bpf_devmap_val { - __u32 ifindex; - union { - int fd; - __u32 id; - } bpf_prog; -}; - -struct xdp_dev_bulk_queue { - struct xdp_frame *q[16]; - struct list_head flush_node; - struct net_device *dev; - struct net_device *dev_rx; - struct bpf_prog *xdp_prog; - unsigned int count; -}; - -struct bpf_dtab_netdev { - struct net_device *dev; - struct hlist_node index_hlist; - struct bpf_prog *xdp_prog; - struct callback_head rcu; - unsigned int idx; - struct bpf_devmap_val val; -}; - -struct bpf_dtab { - struct bpf_map map; - struct bpf_dtab_netdev **netdev_map; - struct list_head list; - struct hlist_head *dev_index_head; - spinlock_t index_lock; - unsigned int items; - u32 n_buckets; -}; - -struct bpf_mprog_fp { - struct bpf_prog *prog; -}; - -struct bpf_mprog_cp { - struct bpf_link *link; -}; - -struct bpf_mprog_bundle; - -struct bpf_mprog_entry { - struct bpf_mprog_fp fp_items[64]; - struct bpf_mprog_bundle *parent; -}; - -struct bpf_mprog_bundle { - struct bpf_mprog_entry a; - struct bpf_mprog_entry b; - struct bpf_mprog_cp cp_items[64]; - struct bpf_prog *ref; - atomic64_t revision; - u32 count; -}; - -struct bpf_tuple { - struct bpf_prog *prog; - struct bpf_link *link; -}; - -struct tcx_entry { - struct mini_Qdisc *miniq; - struct bpf_mprog_bundle bundle; - u32 miniq_active; - struct callback_head rcu; -}; - -struct tcx_link { - struct bpf_link link; - struct net_device *dev; -}; - -enum cgroup_lifetime_events { - CGROUP_LIFETIME_ONLINE = 0, - CGROUP_LIFETIME_OFFLINE = 1, -}; - -enum { - BPF_F_SYSCTL_BASE_NAME = 1, -}; - -struct bpf_cgroup_dev_ctx { - __u32 access_type; - __u32 major; - __u32 minor; -}; - -struct bpf_sysctl { - __u32 write; - __u32 file_pos; -}; - -struct bpf_sockopt { - union { - struct bpf_sock *sk; - }; - union { - void *optval; - }; - union { - void *optval_end; - }; - __s32 level; - __s32 optname; - __s32 optlen; - __s32 retval; -}; - -struct bpf_cg_run_ctx { - struct bpf_run_ctx run_ctx; - const struct bpf_prog_array_item *prog_item; - int retval; -}; - -struct bpf_skb_data_end { - struct qdisc_skb_cb qdisc_cb; - void *data_meta; - void *data_end; -}; - -struct bpf_sock_addr_kern { - struct sock *sk; - struct sockaddr *uaddr; - u64 tmp_reg; - void *t_ctx; - u32 uaddrlen; -}; - -struct bpf_sysctl_kern { - struct ctl_table_header *head; - const struct ctl_table *table; - void *cur_val; - size_t cur_len; - void *new_val; - size_t new_len; - int new_updated; - int write; - loff_t *ppos; - u64 tmp_reg; -}; - -struct bpf_sockopt_buf { - u8 data[32]; -}; - -struct bpf_sockopt_kern { - struct sock *sk; - u8 *optval; - u8 *optval_end; - s32 level; - s32 optname; - s32 optlen; - struct task_struct *current_task; - u64 tmp_reg; -}; - -struct bpf_cgroup_link { - struct bpf_link link; - struct cgroup *cgroup; -}; - -struct bpf_prog_list { - struct hlist_node node; - struct bpf_prog *prog; - struct bpf_cgroup_link *link; - struct bpf_cgroup_storage *storage[2]; - u32 flags; -}; - -struct cgroup_lsm_atype { - u32 attach_btf_id; - int refcnt; -}; - -typedef u64 (*btf_bpf_get_local_storage)(struct bpf_map *, u64); - -typedef u64 (*btf_bpf_get_retval)(void); - -typedef u64 (*btf_bpf_set_retval)(int); - -typedef u64 (*btf_bpf_sysctl_get_name)(struct bpf_sysctl_kern *, char *, size_t, u64); - -typedef u64 (*btf_bpf_sysctl_get_current_value)(struct bpf_sysctl_kern *, char *, size_t); - -typedef u64 (*btf_bpf_sysctl_get_new_value)(struct bpf_sysctl_kern *, char *, size_t); - -typedef u64 (*btf_bpf_sysctl_set_new_value)(struct bpf_sysctl_kern *, const char *, size_t); - -typedef u64 (*btf_bpf_get_netns_cookie_sockopt)(struct bpf_sockopt_kern *); - -struct bpf_crypto_type { - void * (*alloc_tfm)(const char *); - void (*free_tfm)(void *); - int (*has_algo)(const char *); - int (*setkey)(void *, const u8 *, unsigned int); - int (*setauthsize)(void *, unsigned int); - int (*encrypt)(void *, const u8 *, u8 *, unsigned int, u8 *); - int (*decrypt)(void *, const u8 *, u8 *, unsigned int, u8 *); - unsigned int (*ivsize)(void *); - unsigned int (*statesize)(void *); - u32 (*get_flags)(void *); - struct module *owner; - char name[14]; -}; - -struct bpf_crypto_type_list { - const struct bpf_crypto_type *type; - struct list_head list; -}; - -struct bpf_crypto_params { - char type[14]; - u8 reserved[2]; - char algo[128]; - u8 key[256]; - u32 key_len; - u32 authsize; -}; - -struct bpf_crypto_ctx { - const struct bpf_crypto_type *type; - void *tfm; - u32 siv_len; - struct callback_head rcu; - refcount_t usage; -}; - -typedef struct percpu_rw_semaphore *class_percpu_read_t; - -typedef struct percpu_rw_semaphore *class_percpu_write_t; - -struct __class_idr { - struct idr *idr; - int id; -}; - -typedef struct __class_idr class_idr_alloc_t; - -enum perf_sample_regs_abi { - PERF_SAMPLE_REGS_ABI_NONE = 0, - PERF_SAMPLE_REGS_ABI_32 = 1, - PERF_SAMPLE_REGS_ABI_64 = 2, -}; - -enum perf_event_read_format { - PERF_FORMAT_TOTAL_TIME_ENABLED = 1, - PERF_FORMAT_TOTAL_TIME_RUNNING = 2, - PERF_FORMAT_ID = 4, - PERF_FORMAT_GROUP = 8, - PERF_FORMAT_LOST = 16, - PERF_FORMAT_MAX = 32, -}; - -enum perf_event_ioc_flags { - PERF_IOC_FLAG_GROUP = 1, -}; - -struct perf_ns_link_info { - __u64 dev; - __u64 ino; -}; - -enum { - NET_NS_INDEX = 0, - UTS_NS_INDEX = 1, - IPC_NS_INDEX = 2, - PID_NS_INDEX = 3, - USER_NS_INDEX = 4, - MNT_NS_INDEX = 5, - CGROUP_NS_INDEX = 6, - NR_NAMESPACES = 7, -}; - -enum perf_bpf_event_type { - PERF_BPF_EVENT_UNKNOWN = 0, - PERF_BPF_EVENT_PROG_LOAD = 1, - PERF_BPF_EVENT_PROG_UNLOAD = 2, - PERF_BPF_EVENT_MAX = 3, -}; - -enum perf_pmu_scope { - PERF_PMU_SCOPE_NONE = 0, - PERF_PMU_SCOPE_CORE = 1, - PERF_PMU_SCOPE_DIE = 2, - PERF_PMU_SCOPE_CLUSTER = 3, - PERF_PMU_SCOPE_PKG = 4, - PERF_PMU_SCOPE_SYS_WIDE = 5, - PERF_PMU_MAX_SCOPE = 6, -}; - -enum perf_addr_filter_action_t { - PERF_ADDR_FILTER_ACTION_STOP = 0, - PERF_ADDR_FILTER_ACTION_START = 1, - PERF_ADDR_FILTER_ACTION_FILTER = 2, -}; - -struct perf_addr_filter { - struct list_head entry; - struct path path; - long unsigned int offset; - long unsigned int size; - enum perf_addr_filter_action_t action; -}; - -struct swevent_hlist { - struct hlist_head heads[256]; - struct callback_head callback_head; -}; - -struct pmu_event_list { - raw_spinlock_t lock; - struct list_head list; -}; - -struct perf_cpu_context { - struct perf_event_context ctx; - struct perf_event_context *task_ctx; - int online; - struct perf_cgroup *cgrp; - int heap_size; - struct perf_event **heap; - struct perf_event *heap_default[2]; -}; - -struct perf_guest_info_callbacks { - unsigned int (*state)(void); - long unsigned int (*get_ip)(void); - unsigned int (*handle_intel_pt_intr)(void); -}; - -struct min_heap_char { - size_t nr; - size_t size; - char *data; - char preallocated[0]; -}; - -typedef struct min_heap_char min_heap_char; - -struct min_heap_callbacks { - bool (*less)(const void *, const void *, void *); - void (*swp)(void *, void *, void *); -}; - -typedef int (*remote_function_f)(void *); - -struct remote_function_call { - struct task_struct *p; - remote_function_f func; - void *info; - int ret; -}; - -enum event_type_t { - EVENT_FLEXIBLE = 1, - EVENT_PINNED = 2, - EVENT_TIME = 4, - EVENT_FROZEN = 8, - EVENT_CPU = 16, - EVENT_CGROUP = 32, - EVENT_ALL = 3, - EVENT_TIME_FROZEN = 12, -}; - -typedef struct { - struct perf_cpu_context *cpuctx; - struct perf_event_context *ctx; -} class_perf_ctx_lock_t; - -typedef void (*event_f)(struct perf_event *, struct perf_cpu_context *, struct perf_event_context *, void *); - -struct event_function_struct { - struct perf_event *event; - event_f func; - void *data; -}; - -struct __group_key { - int cpu; - struct pmu *pmu; - struct cgroup *cgroup; -}; - -struct stop_event_data { - struct perf_event *event; - unsigned int restart; -}; - -struct perf_event_min_heap { - size_t nr; - size_t size; - struct perf_event **data; - struct perf_event *preallocated[0]; -}; - -struct perf_read_data { - struct perf_event *event; - bool group; - int ret; -}; - -typedef void (*mapped_f)(struct perf_event *, struct mm_struct *); - -struct perf_read_event { - struct perf_event_header header; - u32 pid; - u32 tid; -}; - -typedef void perf_iterate_f(struct perf_event *, void *); - -struct remote_output { - struct perf_buffer *rb; - int err; -}; - -struct perf_task_event { - struct task_struct *task; - struct perf_event_context *task_ctx; - struct { - struct perf_event_header header; - u32 pid; - u32 ppid; - u32 tid; - u32 ptid; - u64 time; - } event_id; -}; - -struct perf_comm_event { - struct task_struct *task; - char *comm; - int comm_size; - struct { - struct perf_event_header header; - u32 pid; - u32 tid; - } event_id; -}; - -struct perf_namespaces_event { - struct task_struct *task; - struct { - struct perf_event_header header; - u32 pid; - u32 tid; - u64 nr_namespaces; - struct perf_ns_link_info link_info[7]; - } event_id; -}; - -struct perf_cgroup_event { - char *path; - int path_size; - struct { - struct perf_event_header header; - u64 id; - char path[0]; - } event_id; -}; - -struct perf_mmap_event { - struct vm_area_struct *vma; - const char *file_name; - int file_size; - int maj; - int min; - u64 ino; - u64 ino_generation; - u32 prot; - u32 flags; - u8 build_id[20]; - u32 build_id_size; - struct { - struct perf_event_header header; - u32 pid; - u32 tid; - u64 start; - u64 len; - u64 pgoff; - } event_id; -}; - -struct perf_switch_event { - struct task_struct *task; - struct task_struct *next_prev; - struct { - struct perf_event_header header; - u32 next_prev_pid; - u32 next_prev_tid; - } event_id; -}; - -struct perf_ksymbol_event { - const char *name; - int name_len; - struct { - struct perf_event_header header; - u64 addr; - u32 len; - u16 ksym_type; - u16 flags; - } event_id; -}; - -struct perf_bpf_event { - struct bpf_prog *prog; - struct { - struct perf_event_header header; - u16 type; - u16 flags; - u32 id; - u8 tag[8]; - } event_id; -}; - -struct perf_text_poke_event { - const void *old_bytes; - const void *new_bytes; - size_t pad; - u16 old_len; - u16 new_len; - struct { - struct perf_event_header header; - u64 addr; - } event_id; -}; - -struct swevent_htable { - struct swevent_hlist *swevent_hlist; - struct mutex hlist_mutex; - int hlist_refcount; -}; - -enum perf_probe_config { - PERF_PROBE_CONFIG_IS_RETPROBE = 1, - PERF_UPROBE_REF_CTR_OFFSET_BITS = 32, - PERF_UPROBE_REF_CTR_OFFSET_SHIFT = 32, -}; - -enum { - IF_ACT_NONE = -1, - IF_ACT_FILTER = 0, - IF_ACT_START = 1, - IF_ACT_STOP = 2, - IF_SRC_FILE = 3, - IF_SRC_KERNEL = 4, - IF_SRC_FILEADDR = 5, - IF_SRC_KERNELADDR = 6, -}; - -enum { - IF_STATE_ACTION = 0, - IF_STATE_SOURCE = 1, - IF_STATE_END = 2, -}; - -struct perf_aux_event { - struct perf_event_header header; - u64 hw_id; -}; - -struct perf_aux_event___2 { - struct perf_event_header header; - u32 pid; - u32 tid; -}; - -struct perf_aux_event___3 { - struct perf_event_header header; - u64 offset; - u64 size; - u64 flags; -}; - -struct wait_page_key { - struct folio *folio; - int bit_nr; - int page_match; -}; - -struct cachestat_range { - __u64 off; - __u64 len; -}; - -struct cachestat { - __u64 nr_cache; - __u64 nr_dirty; - __u64 nr_writeback; - __u64 nr_evicted; - __u64 nr_recently_evicted; -}; - -struct trace_event_raw_mm_filemap_op_page_cache { - struct trace_entry ent; - long unsigned int pfn; - long unsigned int i_ino; - long unsigned int index; - dev_t s_dev; - unsigned char order; - char __data[0]; -}; - -struct trace_event_raw_mm_filemap_op_page_cache_range { - struct trace_entry ent; - long unsigned int i_ino; - dev_t s_dev; - long unsigned int index; - long unsigned int last_index; - char __data[0]; -}; - -struct trace_event_raw_mm_filemap_fault { - struct trace_entry ent; - long unsigned int i_ino; - dev_t s_dev; - long unsigned int index; - char __data[0]; -}; - -struct trace_event_raw_filemap_set_wb_err { - struct trace_entry ent; - long unsigned int i_ino; - dev_t s_dev; - errseq_t errseq; - char __data[0]; -}; - -struct trace_event_raw_file_check_and_advance_wb_err { - struct trace_entry ent; - struct file *file; - long unsigned int i_ino; - dev_t s_dev; - errseq_t old; - errseq_t new; - char __data[0]; -}; - -struct trace_event_data_offsets_mm_filemap_op_page_cache {}; - -struct trace_event_data_offsets_mm_filemap_op_page_cache_range {}; - -struct trace_event_data_offsets_mm_filemap_fault {}; - -struct trace_event_data_offsets_filemap_set_wb_err {}; - -struct trace_event_data_offsets_file_check_and_advance_wb_err {}; - -typedef void (*btf_trace_mm_filemap_delete_from_page_cache)(void *, struct folio *); - -typedef void (*btf_trace_mm_filemap_add_to_page_cache)(void *, struct folio *); - -typedef void (*btf_trace_mm_filemap_get_pages)(void *, struct address_space *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_mm_filemap_map_pages)(void *, struct address_space *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_mm_filemap_fault)(void *, struct address_space *, long unsigned int); - -typedef void (*btf_trace_filemap_set_wb_err)(void *, struct address_space *, errseq_t); - -typedef void (*btf_trace_file_check_and_advance_wb_err)(void *, struct file *, errseq_t); - -enum behavior { - EXCLUSIVE = 0, - SHARED = 1, - DROP = 2, -}; - -struct trace_event_raw_mm_lru_insertion { - struct trace_entry ent; - struct folio *folio; - long unsigned int pfn; - enum lru_list lru; - long unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_mm_lru_activate { - struct trace_entry ent; - struct folio *folio; - long unsigned int pfn; - char __data[0]; -}; - -struct trace_event_data_offsets_mm_lru_insertion {}; - -struct trace_event_data_offsets_mm_lru_activate {}; - -typedef void (*btf_trace_mm_lru_insertion)(void *, struct folio *); - -typedef void (*btf_trace_mm_lru_activate)(void *, struct folio *); - -struct cpu_fbatches { - local_lock_t lock; - struct folio_batch lru_add; - struct folio_batch lru_deactivate_file; - struct folio_batch lru_deactivate; - struct folio_batch lru_lazyfree; - struct folio_batch lru_activate; - local_lock_t lock_irq; - struct folio_batch lru_move_tail; -}; - -typedef void (*move_fn_t)(struct lruvec *, struct folio *); - -struct file_kattr { - u32 flags; - u32 fsx_xflags; - u32 fsx_extsize; - u32 fsx_nextents; - u32 fsx_projid; - u32 fsx_cowextsize; - bool flags_valid: 1; - bool fsx_valid: 1; -}; - -struct thpsize { - struct kobject kobj; - struct list_head node; - int order; -}; - -struct shared_policy { - struct rb_root root; - rwlock_t lock; -}; - -struct shmem_inode_info { - spinlock_t lock; - unsigned int seals; - long unsigned int flags; - long unsigned int alloced; - long unsigned int swapped; - union { - struct offset_ctx dir_offsets; - struct { - struct list_head shrinklist; - struct list_head swaplist; - }; - }; - struct timespec64 i_crtime; - struct shared_policy policy; - struct simple_xattrs xattrs; - long unsigned int fallocend; - unsigned int fsflags; - atomic_t stop_eviction; - struct dquot *i_dquot[3]; - struct inode vfs_inode; -}; - -struct shmem_quota_limits { - qsize_t usrquota_bhardlimit; - qsize_t usrquota_ihardlimit; - qsize_t grpquota_bhardlimit; - qsize_t grpquota_ihardlimit; -}; - -struct shmem_sb_info { - long unsigned int max_blocks; - struct percpu_counter used_blocks; - long unsigned int max_inodes; - long unsigned int free_ispace; - raw_spinlock_t stat_lock; - umode_t mode; - unsigned char huge; - kuid_t uid; - kgid_t gid; - bool full_inums; - bool noswap; - ino_t next_ino; - ino_t *ino_batch; - struct mempolicy *mpol; - spinlock_t shrinklist_lock; - struct list_head shrinklist; - long unsigned int shrinklist_len; - struct shmem_quota_limits qlimits; -}; - -enum sgp_type { - SGP_READ = 0, - SGP_NOALLOC = 1, - SGP_CACHE = 2, - SGP_WRITE = 3, - SGP_FALLOC = 4, -}; - -struct shmem_falloc { - wait_queue_head_t *waitq; - long unsigned int start; - long unsigned int next; - long unsigned int nr_falloced; - long unsigned int nr_unswapped; -}; - -struct shmem_options { - long long unsigned int blocks; - long long unsigned int inodes; - struct mempolicy *mpol; - kuid_t uid; - kgid_t gid; - umode_t mode; - bool full_inums; - int huge; - int seen; - bool noswap; - short unsigned int quota_types; - struct shmem_quota_limits qlimits; - struct unicode_map *encoding; - bool strict_encoding; -}; - -enum shmem_param { - Opt_gid___5 = 0, - Opt_huge = 1, - Opt_mode___3 = 2, - Opt_mpol = 3, - Opt_nr_blocks = 4, - Opt_nr_inodes___2 = 5, - Opt_size___2 = 6, - Opt_uid___4 = 7, - Opt_inode32 = 8, - Opt_inode64 = 9, - Opt_noswap = 10, - Opt_quota = 11, - Opt_usrquota = 12, - Opt_grpquota = 13, - Opt_usrquota_block_hardlimit = 14, - Opt_usrquota_inode_hardlimit = 15, - Opt_grpquota_block_hardlimit = 16, - Opt_grpquota_inode_hardlimit = 17, - Opt_casefold_version = 18, - Opt_casefold = 19, - Opt_strict_encoding = 20, -}; - -enum mminit_level { - MMINIT_WARNING = 0, - MMINIT_VERIFY = 1, - MMINIT_TRACE = 2, -}; - -struct mminit_pfnnid_cache { - long unsigned int last_start; - long unsigned int last_end; - int last_nid; -}; - -struct list_lru_memcg { - struct callback_head rcu; - struct list_lru_one node[0]; -}; - -struct trace_event_raw_mmap_lock { - struct trace_entry ent; - struct mm_struct *mm; - u64 memcg_id; - bool write; - char __data[0]; -}; - -struct trace_event_raw_mmap_lock_acquire_returned { - struct trace_entry ent; - struct mm_struct *mm; - u64 memcg_id; - bool write; - bool success; - char __data[0]; -}; - -struct trace_event_data_offsets_mmap_lock {}; - -struct trace_event_data_offsets_mmap_lock_acquire_returned {}; - -typedef void (*btf_trace_mmap_lock_start_locking)(void *, struct mm_struct *, bool); - -typedef void (*btf_trace_mmap_lock_released)(void *, struct mm_struct *, bool); - -typedef void (*btf_trace_mmap_lock_acquire_returned)(void *, struct mm_struct *, bool, bool); - -struct trace_event_raw_vm_unmapped_area { - struct trace_entry ent; - long unsigned int addr; - long unsigned int total_vm; - long unsigned int flags; - long unsigned int length; - long unsigned int low_limit; - long unsigned int high_limit; - long unsigned int align_mask; - long unsigned int align_offset; - char __data[0]; -}; - -struct trace_event_raw_exit_mmap { - struct trace_entry ent; - struct mm_struct *mm; - struct maple_tree *mt; - char __data[0]; -}; - -struct trace_event_data_offsets_vm_unmapped_area {}; - -struct trace_event_data_offsets_exit_mmap {}; - -typedef void (*btf_trace_vm_unmapped_area)(void *, long unsigned int, struct vm_unmapped_area_info *); - -typedef void (*btf_trace_exit_mmap)(void *, struct mm_struct *); - -struct pagetable_move_control { - struct vm_area_struct *old; - struct vm_area_struct *new; - long unsigned int old_addr; - long unsigned int old_end; - long unsigned int new_addr; - long unsigned int len_in; - bool need_rmap_locks; - bool for_stack; -}; - -enum mremap_type { - MREMAP_INVALID = 0, - MREMAP_NO_RESIZE = 1, - MREMAP_SHRINK = 2, - MREMAP_EXPAND = 3, -}; - -struct vma_remap_struct { - long unsigned int addr; - long unsigned int old_len; - long unsigned int new_len; - const long unsigned int flags; - long unsigned int new_addr; - struct vm_userfaultfd_ctx *uf; - struct list_head *uf_unmap_early; - struct list_head *uf_unmap; - struct vm_area_struct *vma; - long unsigned int delta; - bool populate_expand; - enum mremap_type remap_type; - bool mmap_locked; - long unsigned int charged; - bool vmi_needs_invalidate; -}; - -enum pgt_entry { - NORMAL_PMD = 0, - HPAGE_PMD = 1, - NORMAL_PUD = 2, - HPAGE_PUD = 3, -}; - -struct vma_prepare { - struct vm_area_struct *vma; - struct vm_area_struct *adj_next; - struct file *file; - struct address_space *mapping; - struct anon_vma *anon_vma; - struct vm_area_struct *insert; - struct vm_area_struct *remove; - struct vm_area_struct *remove2; - bool skip_vma_uprobe: 1; -}; - -struct vma_munmap_struct { - struct vma_iterator *vmi; - struct vm_area_struct *vma; - struct vm_area_struct *prev; - struct vm_area_struct *next; - struct list_head *uf; - long unsigned int start; - long unsigned int end; - long unsigned int unmap_start; - long unsigned int unmap_end; - int vma_count; - bool unlock; - bool clear_ptes; - long unsigned int nr_pages; - long unsigned int locked_vm; - long unsigned int nr_accounted; - long unsigned int exec_vm; - long unsigned int stack_vm; - long unsigned int data_vm; -}; - -enum vma_merge_state { - VMA_MERGE_START = 0, - VMA_MERGE_ERROR_NOMEM = 1, - VMA_MERGE_NOMERGE = 2, - VMA_MERGE_SUCCESS = 3, -}; - -struct vma_merge_struct { - struct mm_struct *mm; - struct vma_iterator *vmi; - struct vm_area_struct *prev; - struct vm_area_struct *middle; - struct vm_area_struct *next; - struct vm_area_struct *target; - long unsigned int start; - long unsigned int end; - long unsigned int pgoff; - vm_flags_t vm_flags; - struct file *file; - struct anon_vma *anon_vma; - struct mempolicy *policy; - struct vm_userfaultfd_ctx uffd_ctx; - struct anon_vma_name *anon_name; - enum vma_merge_state state; - struct vm_area_struct *copied_from; - bool just_expand: 1; - bool give_up_on_oom: 1; - bool skip_vma_uprobe: 1; - bool __adjust_middle_start: 1; - bool __adjust_next_start: 1; - bool __remove_middle: 1; - bool __remove_next: 1; -}; - -struct mmap_state { - struct mm_struct *mm; - struct vma_iterator *vmi; - long unsigned int addr; - long unsigned int end; - long unsigned int pgoff; - long unsigned int pglen; - vm_flags_t vm_flags; - struct file *file; - pgprot_t page_prot; - const struct vm_operations_struct *vm_ops; - void *vm_private_data; - long unsigned int charged; - struct vm_area_struct *prev; - struct vm_area_struct *next; - struct vma_munmap_struct vms; - struct ma_state mas_detach; - struct maple_tree mt_detach; - bool check_ksm_early; -}; - -struct reserve_mem_table { - char name[16]; - phys_addr_t start; - phys_addr_t size; -}; - -typedef int cydp_t; - -struct madvise_walk_private { - struct mmu_gather *tlb; - bool pageout; -}; - -enum madvise_lock_mode { - MADVISE_NO_LOCK = 0, - MADVISE_MMAP_READ_LOCK = 1, - MADVISE_MMAP_WRITE_LOCK = 2, - MADVISE_VMA_READ_LOCK = 3, -}; - -struct madvise_behavior_range { - long unsigned int start; - long unsigned int end; -}; - -struct madvise_behavior { - struct mm_struct *mm; - int behavior; - struct mmu_gather *tlb; - enum madvise_lock_mode lock_mode; - struct anon_vma_name *anon_name; - struct madvise_behavior_range range; - struct vm_area_struct *prev; - struct vm_area_struct *vma; - bool lock_dropped; -}; - -union swap_header { - struct { - char reserved[4086]; - char magic[10]; - } magic; - struct { - char bootbits[1024]; - __u32 version; - __u32 last_page; - __u32 nr_badpages; - unsigned char sws_uuid[16]; - unsigned char sws_volume[16]; - __u32 padding[117]; - __u32 badpages[1]; - } info; -}; - -struct swap_extent { - struct rb_node rb_node; - long unsigned int start_page; - long unsigned int nr_pages; - sector_t start_block; -}; - -enum swap_cluster_flags { - CLUSTER_FLAG_NONE = 0, - CLUSTER_FLAG_FREE = 1, - CLUSTER_FLAG_NONFULL = 2, - CLUSTER_FLAG_FRAG = 3, - CLUSTER_FLAG_USABLE = 3, - CLUSTER_FLAG_FULL = 4, - CLUSTER_FLAG_DISCARD = 5, - CLUSTER_FLAG_MAX = 6, -}; - -struct percpu_swap_cluster { - struct swap_info_struct *si[10]; - long unsigned int offset[10]; - local_lock_t lock; -}; - -enum pageblock_bits { - PB_migrate = 0, - PB_migrate_end = 2, - PB_compact_skip = 3, - PB_migrate_isolate = 4, - __NR_PAGEBLOCK_BITS = 5, -}; - -struct mm_slot { - struct hlist_node hash; - struct list_head mm_node; - struct mm_struct *mm; -}; - -struct trace_event_raw_ksm_scan_template { - struct trace_entry ent; - int seq; - u32 rmap_entries; - char __data[0]; -}; - -struct trace_event_raw_ksm_enter_exit_template { - struct trace_entry ent; - void *mm; - char __data[0]; -}; - -struct trace_event_raw_ksm_merge_one_page { - struct trace_entry ent; - long unsigned int pfn; - void *rmap_item; - void *mm; - int err; - char __data[0]; -}; - -struct trace_event_raw_ksm_merge_with_ksm_page { - struct trace_entry ent; - void *ksm_page; - long unsigned int pfn; - void *rmap_item; - void *mm; - int err; - char __data[0]; -}; - -struct trace_event_raw_ksm_remove_ksm_page { - struct trace_entry ent; - long unsigned int pfn; - char __data[0]; -}; - -struct trace_event_raw_ksm_remove_rmap_item { - struct trace_entry ent; - long unsigned int pfn; - void *rmap_item; - void *mm; - char __data[0]; -}; - -struct trace_event_raw_ksm_advisor { - struct trace_entry ent; - s64 scan_time; - long unsigned int pages_to_scan; - unsigned int cpu_percent; - char __data[0]; -}; - -struct trace_event_data_offsets_ksm_scan_template {}; - -struct trace_event_data_offsets_ksm_enter_exit_template {}; - -struct trace_event_data_offsets_ksm_merge_one_page {}; - -struct trace_event_data_offsets_ksm_merge_with_ksm_page {}; - -struct trace_event_data_offsets_ksm_remove_ksm_page {}; - -struct trace_event_data_offsets_ksm_remove_rmap_item {}; - -struct trace_event_data_offsets_ksm_advisor {}; - -typedef void (*btf_trace_ksm_start_scan)(void *, int, u32); - -typedef void (*btf_trace_ksm_stop_scan)(void *, int, u32); - -typedef void (*btf_trace_ksm_enter)(void *, void *); - -typedef void (*btf_trace_ksm_exit)(void *, void *); - -typedef void (*btf_trace_ksm_merge_one_page)(void *, long unsigned int, void *, void *, int); - -typedef void (*btf_trace_ksm_merge_with_ksm_page)(void *, void *, long unsigned int, void *, void *, int); - -typedef void (*btf_trace_ksm_remove_ksm_page)(void *, long unsigned int); - -typedef void (*btf_trace_ksm_remove_rmap_item)(void *, long unsigned int, void *, void *); - -typedef void (*btf_trace_ksm_advisor)(void *, s64, long unsigned int, unsigned int); - -typedef u8 rmap_age_t; - -struct ksm_rmap_item; - -struct ksm_mm_slot { - struct mm_slot slot; - struct ksm_rmap_item *rmap_list; -}; - -struct ksm_stable_node; - -struct ksm_rmap_item { - struct ksm_rmap_item *rmap_list; - union { - struct anon_vma *anon_vma; - int nid; - }; - struct mm_struct *mm; - long unsigned int address; - unsigned int oldchecksum; - rmap_age_t age; - rmap_age_t remaining_skips; - union { - struct rb_node node; - struct { - struct ksm_stable_node *head; - struct hlist_node hlist; - }; - }; -}; - -struct ksm_scan { - struct ksm_mm_slot *mm_slot; - long unsigned int address; - struct ksm_rmap_item **rmap_list; - long unsigned int seqnr; -}; - -struct ksm_stable_node { - union { - struct rb_node node; - struct { - struct list_head *head; - struct { - struct hlist_node hlist_dup; - struct list_head list; - }; - }; - }; - struct hlist_head hlist; - union { - long unsigned int kpfn; - long unsigned int chain_prune_time; - }; - int rmap_hlist_len; - int nid; -}; - -struct advisor_ctx { - ktime_t start_scan; - long unsigned int scan_time; - long unsigned int change; - long long unsigned int cpu_time; -}; - -enum ksm_advisor_type { - KSM_ADVISOR_NONE = 0, - KSM_ADVISOR_SCAN_TIME = 1, -}; - -enum ksm_get_folio_flags { - KSM_GET_FOLIO_NOLOCK = 0, - KSM_GET_FOLIO_LOCK = 1, - KSM_GET_FOLIO_TRYLOCK = 2, -}; - -struct ksm_next_page_arg { - struct folio *folio; - struct page *page; - long unsigned int addr; -}; - -enum migrate_vma_direction { - MIGRATE_VMA_SELECT_SYSTEM = 1, - MIGRATE_VMA_SELECT_DEVICE_PRIVATE = 2, - MIGRATE_VMA_SELECT_DEVICE_COHERENT = 4, -}; - -struct migrate_vma { - struct vm_area_struct *vma; - long unsigned int *dst; - long unsigned int *src; - long unsigned int cpages; - long unsigned int npages; - long unsigned int start; - long unsigned int end; - void *pgmap_owner; - long unsigned int flags; - struct page *fault_page; -}; - -struct cgroup_of_peak { - long unsigned int value; - struct list_head list; -}; - -enum css_task_iter_flags { - CSS_TASK_ITER_PROCS = 1, - CSS_TASK_ITER_THREADED = 2, - CSS_TASK_ITER_SKIPPED = 65536, -}; - -enum vm_stat_item { - NR_DIRTY_THRESHOLD = 0, - NR_DIRTY_BG_THRESHOLD = 1, - NR_MEMMAP_PAGES = 2, - NR_MEMMAP_BOOT_PAGES = 3, - NR_VM_STAT_ITEMS = 4, -}; - -struct lruvec_stats_percpu { - long int state[33]; - long int state_prev[33]; -}; - -struct lruvec_stats { - long int state[33]; - long int state_local[33]; - long int state_pending[33]; -}; - -struct memcg_vmstats { - long int state[40]; - long unsigned int events[29]; - long int state_local[40]; - long unsigned int events_local[29]; - long int state_pending[40]; - long unsigned int events_pending[29]; - atomic_t stats_updates; -}; - -struct memcg_vmstats_percpu { - unsigned int stats_updates; - struct memcg_vmstats_percpu *parent_pcpu; - struct memcg_vmstats *vmstats; - long int state[40]; - long unsigned int events[29]; - long int state_prev[40]; - long unsigned int events_prev[29]; - long: 64; - long: 64; - long: 64; -}; - -struct slabobj_ext { - struct obj_cgroup *objcg; -}; - -struct trace_event_raw_memcg_rstat_stats { - struct trace_entry ent; - u64 id; - int item; - int val; - char __data[0]; -}; - -struct trace_event_raw_memcg_rstat_events { - struct trace_entry ent; - u64 id; - int item; - long unsigned int val; - char __data[0]; -}; - -struct trace_event_raw_memcg_flush_stats { - struct trace_entry ent; - u64 id; - s64 stats_updates; - bool force; - bool needs_flush; - char __data[0]; -}; - -struct trace_event_data_offsets_memcg_rstat_stats {}; - -struct trace_event_data_offsets_memcg_rstat_events {}; - -struct trace_event_data_offsets_memcg_flush_stats {}; - -typedef void (*btf_trace_mod_memcg_state)(void *, struct mem_cgroup *, int, int); - -typedef void (*btf_trace_mod_memcg_lruvec_state)(void *, struct mem_cgroup *, int, int); - -typedef void (*btf_trace_count_memcg_events)(void *, struct mem_cgroup *, int, long unsigned int); - -typedef void (*btf_trace_memcg_flush_stats)(void *, struct mem_cgroup *, s64, bool, bool); - -struct memory_stat { - const char *name; - unsigned int idx; -}; - -struct memcg_stock_pcp { - local_trylock_t lock; - uint8_t nr_pages[7]; - struct mem_cgroup *cached[7]; - struct work_struct work; - long unsigned int flags; -}; - -struct obj_stock_pcp { - local_trylock_t lock; - unsigned int nr_bytes; - struct obj_cgroup *cached_objcg; - struct pglist_data *cached_pgdat; - int nr_slab_reclaimable_b; - int nr_slab_unreclaimable_b; - struct work_struct work; - long unsigned int flags; -}; - -struct aggregate_control { - long int *aggregate; - long int *local; - long int *pending; - long int *ppending; - long int *cstat; - long int *cstat_prev; - int size; -}; - -struct uncharge_gather { - struct mem_cgroup *memcg; - long unsigned int nr_memory; - long unsigned int pgpgout; - long unsigned int nr_kmem; - int nid; -}; - -struct zpool { - struct zpool_driver *driver; - void *pool; -}; - -struct numa_memblk { - u64 start; - u64 end; - int nid; -}; - -struct numa_meminfo { - int nr_blks; - struct numa_memblk blk[2048]; -}; - -struct balloon_dev_info { - long unsigned int isolated_pages; - spinlock_t pages_lock; - struct list_head pages; - int (*migratepage)(struct balloon_dev_info *, struct page *, struct page *, enum migrate_mode); -}; - -struct quota_id { - struct rb_node node; - qid_t id; - qsize_t bhardlimit; - qsize_t bsoftlimit; - qsize_t ihardlimit; - qsize_t isoftlimit; -}; - -struct files_stat_struct { - long unsigned int nr_files; - long unsigned int nr_free_files; - long unsigned int max_files; -}; - -struct backing_file { - struct file file; - union { - struct path user_path; - freeptr_t bf_freeptr; - }; -}; - -typedef struct kobject *kobj_probe_t(dev_t, int *, void *); - -struct char_device_struct { - struct char_device_struct *next; - unsigned int major; - unsigned int baseminor; - int minorct; - char name[64]; - struct cdev *cdev; -}; - -struct saved { - struct path link; - struct delayed_call done; - const char *name; - unsigned int seq; -}; - -struct nameidata { - struct path path; - struct qstr last; - struct path root; - struct inode *inode; - unsigned int flags; - unsigned int state; - unsigned int seq; - unsigned int next_seq; - unsigned int m_seq; - unsigned int r_seq; - int last_type; - unsigned int depth; - int total_link_count; - struct saved *stack; - struct saved internal[2]; - struct filename *name; - const char *pathname; - struct nameidata *saved; - unsigned int root_seq; - int dfd; - vfsuid_t dir_vfsuid; - umode_t dir_mode; -}; - -struct renamedata { - struct mnt_idmap *old_mnt_idmap; - struct dentry *old_parent; - struct dentry *old_dentry; - struct mnt_idmap *new_mnt_idmap; - struct dentry *new_parent; - struct dentry *new_dentry; - struct inode **delegated_inode; - unsigned int flags; -}; - -enum { - LAST_NORM = 0, - LAST_ROOT = 1, - LAST_DOT = 2, - LAST_DOTDOT = 3, -}; - -struct open_flags { - int open_flag; - umode_t mode; - int acc_mode; - int intent; - int lookup_flags; -}; - -enum { - WALK_TRAILING = 1, - WALK_MORE = 2, - WALK_NOFOLLOW = 4, -}; - -struct wb_writeback_work { - long int nr_pages; - struct super_block *sb; - enum writeback_sync_modes sync_mode; - unsigned int tagged_writepages: 1; - unsigned int for_kupdate: 1; - unsigned int range_cyclic: 1; - unsigned int for_background: 1; - unsigned int for_sync: 1; - unsigned int auto_free: 1; - enum wb_reason reason; - struct list_head list; - struct wb_completion *done; -}; - -struct trace_event_raw_writeback_folio_template { - struct trace_entry ent; - char name[32]; - ino_t ino; - long unsigned int index; - char __data[0]; -}; - -struct trace_event_raw_writeback_dirty_inode_template { - struct trace_entry ent; - char name[32]; - ino_t ino; - long unsigned int state; - long unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_inode_foreign_history { - struct trace_entry ent; - char name[32]; - ino_t ino; - ino_t cgroup_ino; - unsigned int history; - char __data[0]; -}; - -struct trace_event_raw_inode_switch_wbs { - struct trace_entry ent; - char name[32]; - ino_t ino; - ino_t old_cgroup_ino; - ino_t new_cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_track_foreign_dirty { - struct trace_entry ent; - char name[32]; - u64 bdi_id; - ino_t ino; - unsigned int memcg_id; - ino_t cgroup_ino; - ino_t page_cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_flush_foreign { - struct trace_entry ent; - char name[32]; - ino_t cgroup_ino; - unsigned int frn_bdi_id; - unsigned int frn_memcg_id; - char __data[0]; -}; - -struct trace_event_raw_writeback_write_inode_template { - struct trace_entry ent; - char name[32]; - ino_t ino; - int sync_mode; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_writeback_work_class { - struct trace_entry ent; - char name[32]; - long int nr_pages; - dev_t sb_dev; - int sync_mode; - int for_kupdate; - int range_cyclic; - int for_background; - int reason; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_writeback_pages_written { - struct trace_entry ent; - long int pages; - char __data[0]; -}; - -struct trace_event_raw_writeback_class { - struct trace_entry ent; - char name[32]; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_writeback_bdi_register { - struct trace_entry ent; - char name[32]; - char __data[0]; -}; - -struct trace_event_raw_wbc_class { - struct trace_entry ent; - char name[32]; - long int nr_to_write; - long int pages_skipped; - int sync_mode; - int for_kupdate; - int for_background; - int range_cyclic; - long int range_start; - long int range_end; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_writeback_queue_io { - struct trace_entry ent; - char name[32]; - long unsigned int older; - long int age; - int moved; - int reason; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_global_dirty_state { - struct trace_entry ent; - long unsigned int nr_dirty; - long unsigned int nr_writeback; - long unsigned int background_thresh; - long unsigned int dirty_thresh; - long unsigned int dirty_limit; - long unsigned int nr_dirtied; - long unsigned int nr_written; - char __data[0]; -}; - -struct trace_event_raw_bdi_dirty_ratelimit { - struct trace_entry ent; - char bdi[32]; - long unsigned int write_bw; - long unsigned int avg_write_bw; - long unsigned int dirty_rate; - long unsigned int dirty_ratelimit; - long unsigned int task_ratelimit; - long unsigned int balanced_dirty_ratelimit; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_balance_dirty_pages { - struct trace_entry ent; - char bdi[32]; - long unsigned int limit; - long unsigned int setpoint; - long unsigned int dirty; - long unsigned int wb_setpoint; - long unsigned int wb_dirty; - long unsigned int dirty_ratelimit; - long unsigned int task_ratelimit; - unsigned int dirtied; - unsigned int dirtied_pause; - long unsigned int paused; - long int pause; - long unsigned int period; - long int think; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_writeback_sb_inodes_requeue { - struct trace_entry ent; - char name[32]; - ino_t ino; - long unsigned int state; - long unsigned int dirtied_when; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_writeback_single_inode_template { - struct trace_entry ent; - char name[32]; - ino_t ino; - long unsigned int state; - long unsigned int dirtied_when; - long unsigned int writeback_index; - long int nr_to_write; - long unsigned int wrote; - ino_t cgroup_ino; - char __data[0]; -}; - -struct trace_event_raw_writeback_inode_template { - struct trace_entry ent; - dev_t dev; - ino_t ino; - long unsigned int state; - __u16 mode; - long unsigned int dirtied_when; - char __data[0]; -}; - -struct trace_event_data_offsets_writeback_folio_template {}; - -struct trace_event_data_offsets_writeback_dirty_inode_template {}; - -struct trace_event_data_offsets_inode_foreign_history {}; - -struct trace_event_data_offsets_inode_switch_wbs {}; - -struct trace_event_data_offsets_track_foreign_dirty {}; - -struct trace_event_data_offsets_flush_foreign {}; - -struct trace_event_data_offsets_writeback_write_inode_template {}; - -struct trace_event_data_offsets_writeback_work_class {}; - -struct trace_event_data_offsets_writeback_pages_written {}; - -struct trace_event_data_offsets_writeback_class {}; - -struct trace_event_data_offsets_writeback_bdi_register {}; - -struct trace_event_data_offsets_wbc_class {}; - -struct trace_event_data_offsets_writeback_queue_io {}; - -struct trace_event_data_offsets_global_dirty_state {}; - -struct trace_event_data_offsets_bdi_dirty_ratelimit {}; - -struct trace_event_data_offsets_balance_dirty_pages {}; - -struct trace_event_data_offsets_writeback_sb_inodes_requeue {}; - -struct trace_event_data_offsets_writeback_single_inode_template {}; - -struct trace_event_data_offsets_writeback_inode_template {}; - -typedef void (*btf_trace_writeback_dirty_folio)(void *, struct folio *, struct address_space *); - -typedef void (*btf_trace_folio_wait_writeback)(void *, struct folio *, struct address_space *); - -typedef void (*btf_trace_writeback_mark_inode_dirty)(void *, struct inode *, int); - -typedef void (*btf_trace_writeback_dirty_inode_start)(void *, struct inode *, int); - -typedef void (*btf_trace_writeback_dirty_inode)(void *, struct inode *, int); - -typedef void (*btf_trace_inode_foreign_history)(void *, struct inode *, struct writeback_control *, unsigned int); - -typedef void (*btf_trace_inode_switch_wbs)(void *, struct inode *, struct bdi_writeback *, struct bdi_writeback *); - -typedef void (*btf_trace_track_foreign_dirty)(void *, struct folio *, struct bdi_writeback *); - -typedef void (*btf_trace_flush_foreign)(void *, struct bdi_writeback *, unsigned int, unsigned int); - -typedef void (*btf_trace_writeback_write_inode_start)(void *, struct inode *, struct writeback_control *); - -typedef void (*btf_trace_writeback_write_inode)(void *, struct inode *, struct writeback_control *); - -typedef void (*btf_trace_writeback_queue)(void *, struct bdi_writeback *, struct wb_writeback_work *); - -typedef void (*btf_trace_writeback_exec)(void *, struct bdi_writeback *, struct wb_writeback_work *); - -typedef void (*btf_trace_writeback_start)(void *, struct bdi_writeback *, struct wb_writeback_work *); - -typedef void (*btf_trace_writeback_written)(void *, struct bdi_writeback *, struct wb_writeback_work *); - -typedef void (*btf_trace_writeback_wait)(void *, struct bdi_writeback *, struct wb_writeback_work *); - -typedef void (*btf_trace_writeback_pages_written)(void *, long int); - -typedef void (*btf_trace_writeback_wake_background)(void *, struct bdi_writeback *); - -typedef void (*btf_trace_writeback_bdi_register)(void *, struct backing_dev_info *); - -typedef void (*btf_trace_wbc_writepage)(void *, struct writeback_control *, struct backing_dev_info *); - -typedef void (*btf_trace_writeback_queue_io)(void *, struct bdi_writeback *, struct wb_writeback_work *, long unsigned int, int); - -typedef void (*btf_trace_global_dirty_state)(void *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_bdi_dirty_ratelimit)(void *, struct bdi_writeback *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_balance_dirty_pages)(void *, struct bdi_writeback *, struct dirty_throttle_control *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long int, long unsigned int); - -typedef void (*btf_trace_writeback_sb_inodes_requeue)(void *, struct inode *); - -typedef void (*btf_trace_writeback_single_inode_start)(void *, struct inode *, struct writeback_control *, long unsigned int); - -typedef void (*btf_trace_writeback_single_inode)(void *, struct inode *, struct writeback_control *, long unsigned int); - -typedef void (*btf_trace_writeback_lazytime)(void *, struct inode *); - -typedef void (*btf_trace_writeback_lazytime_iput)(void *, struct inode *); - -typedef void (*btf_trace_writeback_dirty_inode_enqueue)(void *, struct inode *); - -typedef void (*btf_trace_sb_mark_inode_writeback)(void *, struct inode *); - -typedef void (*btf_trace_sb_clear_inode_writeback)(void *, struct inode *); - -struct inode_switch_wbs_context { - struct rcu_work work; - struct bdi_writeback *new_wb; - struct inode *inodes[0]; -}; - -typedef int __kernel_daddr_t; - -struct ustat { - __kernel_daddr_t f_tfree; - long unsigned int f_tinode; - char f_fname[6]; - char f_fpack[6]; -}; - -typedef s32 compat_daddr_t; - -typedef __kernel_fsid_t compat_fsid_t; - -struct compat_statfs { - int f_type; - int f_bsize; - int f_blocks; - int f_bfree; - int f_bavail; - int f_files; - int f_ffree; - compat_fsid_t f_fsid; - int f_namelen; - int f_frsize; - int f_flags; - int f_spare[4]; -}; - -struct compat_ustat { - compat_daddr_t f_tfree; - compat_ino_t f_tinode; - char f_fname[6]; - char f_fpack[6]; -}; - -struct statfs { - __kernel_long_t f_type; - __kernel_long_t f_bsize; - __kernel_long_t f_blocks; - __kernel_long_t f_bfree; - __kernel_long_t f_bavail; - __kernel_long_t f_files; - __kernel_long_t f_ffree; - __kernel_fsid_t f_fsid; - __kernel_long_t f_namelen; - __kernel_long_t f_frsize; - __kernel_long_t f_flags; - __kernel_long_t f_spare[4]; -}; - -struct statfs64 { - __kernel_long_t f_type; - __kernel_long_t f_bsize; - __u64 f_blocks; - __u64 f_bfree; - __u64 f_bavail; - __u64 f_files; - __u64 f_ffree; - __kernel_fsid_t f_fsid; - __kernel_long_t f_namelen; - __kernel_long_t f_frsize; - __kernel_long_t f_flags; - __kernel_long_t f_spare[4]; -}; - -struct compat_statfs64 { - __u32 f_type; - __u32 f_bsize; - __u64 f_blocks; - __u64 f_bfree; - __u64 f_bavail; - __u64 f_files; - __u64 f_ffree; - __kernel_fsid_t f_fsid; - __u32 f_namelen; - __u32 f_frsize; - __u32 f_flags; - __u32 f_spare[4]; -} __attribute__((packed)); - -enum fsconfig_command { - FSCONFIG_SET_FLAG = 0, - FSCONFIG_SET_STRING = 1, - FSCONFIG_SET_BINARY = 2, - FSCONFIG_SET_PATH = 3, - FSCONFIG_SET_PATH_EMPTY = 4, - FSCONFIG_SET_FD = 5, - FSCONFIG_CMD_CREATE = 6, - FSCONFIG_CMD_RECONFIGURE = 7, - FSCONFIG_CMD_CREATE_EXCL = 8, -}; - -struct file_dedupe_range_info { - __s64 dest_fd; - __u64 dest_offset; - __u64 bytes_deduped; - __s32 status; - __u32 reserved; -}; - -struct file_dedupe_range { - __u64 src_offset; - __u64 src_length; - __u16 dest_count; - __u16 reserved1; - __u32 reserved2; - struct file_dedupe_range_info info[0]; -}; - -struct postprocess_bh_ctx { - struct work_struct work; - struct buffer_head *bh; -}; - -struct bh_lru { - struct buffer_head *bhs[16]; -}; - -struct bh_accounting { - int nr; - int ratelimit; -}; - -struct dnotify_struct { - struct dnotify_struct *dn_next; - __u32 dn_mask; - int dn_fd; - struct file *dn_filp; - fl_owner_t dn_owner; -}; - -struct dnotify_mark { - struct fsnotify_mark fsn_mark; - struct dnotify_struct *dn; -}; - -struct uffd_msg { - __u8 event; - __u8 reserved1; - __u16 reserved2; - __u32 reserved3; - union { - struct { - __u64 flags; - __u64 address; - union { - __u32 ptid; - } feat; - } pagefault; - struct { - __u32 ufd; - } fork; - struct { - __u64 from; - __u64 to; - __u64 len; - } remap; - struct { - __u64 start; - __u64 end; - } remove; - struct { - __u64 reserved1; - __u64 reserved2; - __u64 reserved3; - } reserved; - } arg; -}; - -struct uffdio_api { - __u64 api; - __u64 features; - __u64 ioctls; -}; - -struct uffdio_range { - __u64 start; - __u64 len; -}; - -struct uffdio_register { - struct uffdio_range range; - __u64 mode; - __u64 ioctls; -}; - -struct uffdio_copy { - __u64 dst; - __u64 src; - __u64 len; - __u64 mode; - __s64 copy; -}; - -struct uffdio_zeropage { - struct uffdio_range range; - __u64 mode; - __s64 zeropage; -}; - -struct uffdio_writeprotect { - struct uffdio_range range; - __u64 mode; -}; - -struct uffdio_continue { - struct uffdio_range range; - __u64 mode; - __s64 mapped; -}; - -struct uffdio_poison { - struct uffdio_range range; - __u64 mode; - __s64 updated; -}; - -struct uffdio_move { - __u64 dst; - __u64 src; - __u64 len; - __u64 mode; - __s64 move; -}; - -struct userfaultfd_fork_ctx { - struct userfaultfd_ctx *orig; - struct userfaultfd_ctx *new; - struct list_head list; -}; - -struct userfaultfd_unmap_ctx { - struct userfaultfd_ctx *ctx; - long unsigned int start; - long unsigned int end; - struct list_head list; -}; - -struct userfaultfd_wait_queue { - struct uffd_msg msg; - wait_queue_entry_t wq; - struct userfaultfd_ctx *ctx; - bool waken; -}; - -struct userfaultfd_wake_range { - long unsigned int start; - long unsigned int len; -}; - -union fscrypt_iv { - struct { - __le64 index; - u8 nonce[16]; - }; - u8 raw[32]; - __le64 dun[4]; -}; - -struct fscrypt_nokey_name { - u32 dirhash[2]; - u8 bytes[149]; - u8 sha256[32]; -}; - -struct fscrypt_keyring { - spinlock_t lock; - struct hlist_head key_hashtable[128]; -}; - -struct fscrypt_provisioning_key_payload { - __u32 type; - __u32 flags; - __u8 raw[0]; -}; - -struct fscrypt_add_key_arg { - struct fscrypt_key_specifier key_spec; - __u32 raw_size; - __u32 key_id; - __u32 flags; - __u32 __reserved[7]; - __u8 raw[0]; -}; - -struct fscrypt_remove_key_arg { - struct fscrypt_key_specifier key_spec; - __u32 removal_status_flags; - __u32 __reserved[5]; -}; - -struct fscrypt_get_key_status_arg { - struct fscrypt_key_specifier key_spec; - __u32 __reserved[6]; - __u32 status; - __u32 status_flags; - __u32 user_count; - __u32 __out_reserved[13]; -}; - -struct folio_iter { - struct folio *folio; - size_t offset; - size_t length; - struct folio *_next; - size_t _seg_count; - int _i; -}; - -typedef enum { - FS_DECRYPT = 0, - FS_ENCRYPT = 1, -} fscrypt_direction_t; - -struct fsverity_read_metadata_arg { - __u64 metadata_type; - __u64 offset; - __u64 length; - __u64 buf_ptr; - __u64 __reserved; -}; - -struct flock64 { - short int l_type; - short int l_whence; - __kernel_loff_t l_start; - __kernel_loff_t l_len; - __kernel_pid_t l_pid; -}; - -struct trace_event_raw_locks_get_lock_context { - struct trace_entry ent; - long unsigned int i_ino; - dev_t s_dev; - unsigned char type; - struct file_lock_context *ctx; - char __data[0]; -}; - -struct trace_event_raw_filelock_lock { - struct trace_entry ent; - struct file_lock *fl; - long unsigned int i_ino; - dev_t s_dev; - struct file_lock_core *blocker; - fl_owner_t owner; - unsigned int pid; - unsigned int flags; - unsigned char type; - loff_t fl_start; - loff_t fl_end; - int ret; - char __data[0]; -}; - -struct trace_event_raw_filelock_lease { - struct trace_entry ent; - struct file_lease *fl; - long unsigned int i_ino; - dev_t s_dev; - struct file_lock_core *blocker; - fl_owner_t owner; - unsigned int flags; - unsigned char type; - long unsigned int break_time; - long unsigned int downgrade_time; - char __data[0]; -}; - -struct trace_event_raw_generic_add_lease { - struct trace_entry ent; - long unsigned int i_ino; - int wcount; - int rcount; - int icount; - dev_t s_dev; - fl_owner_t owner; - unsigned int flags; - unsigned char type; - char __data[0]; -}; - -struct trace_event_raw_leases_conflict { - struct trace_entry ent; - void *lease; - void *breaker; - unsigned int l_fl_flags; - unsigned int b_fl_flags; - unsigned char l_fl_type; - unsigned char b_fl_type; - bool conflict; - char __data[0]; -}; - -struct trace_event_data_offsets_locks_get_lock_context {}; - -struct trace_event_data_offsets_filelock_lock {}; - -struct trace_event_data_offsets_filelock_lease {}; - -struct trace_event_data_offsets_generic_add_lease {}; - -struct trace_event_data_offsets_leases_conflict {}; - -typedef void (*btf_trace_locks_get_lock_context)(void *, struct inode *, int, struct file_lock_context *); - -typedef void (*btf_trace_posix_lock_inode)(void *, struct inode *, struct file_lock *, int); - -typedef void (*btf_trace_fcntl_setlk)(void *, struct inode *, struct file_lock *, int); - -typedef void (*btf_trace_locks_remove_posix)(void *, struct inode *, struct file_lock *, int); - -typedef void (*btf_trace_flock_lock_inode)(void *, struct inode *, struct file_lock *, int); - -typedef void (*btf_trace_break_lease_noblock)(void *, struct inode *, struct file_lease *); - -typedef void (*btf_trace_break_lease_block)(void *, struct inode *, struct file_lease *); - -typedef void (*btf_trace_break_lease_unblock)(void *, struct inode *, struct file_lease *); - -typedef void (*btf_trace_generic_delete_lease)(void *, struct inode *, struct file_lease *); - -typedef void (*btf_trace_time_out_leases)(void *, struct inode *, struct file_lease *); - -typedef void (*btf_trace_generic_add_lease)(void *, struct inode *, struct file_lease *); - -typedef void (*btf_trace_leases_conflict)(void *, bool, struct file_lease *, struct file_lease *); - -struct file_lock_list_struct { - spinlock_t lock; - struct hlist_head hlist; -}; - -struct locks_iterator { - int li_cpu; - loff_t li_pos; -}; - -struct xdr_netobj { - unsigned int len; - u8 *data; -}; - -struct xdr_buf { - struct kvec head[1]; - struct kvec tail[1]; - struct bio_vec *bvec; - struct page **pages; - unsigned int page_base; - unsigned int page_len; - unsigned int flags; - unsigned int buflen; - unsigned int len; -}; - -struct rpc_rqst; - -struct xdr_stream { - __be32 *p; - struct xdr_buf *buf; - __be32 *end; - struct kvec *iov; - struct kvec scratch; - struct page **page_ptr; - void *page_kaddr; - unsigned int nwords; - struct rpc_rqst *rqst; -}; - -struct lwq_node { - struct llist_node node; -}; - -struct rpc_xprt; - -struct rpc_task; - -struct rpc_cred; - -struct rpc_rqst { - struct rpc_xprt *rq_xprt; - struct xdr_buf rq_snd_buf; - struct xdr_buf rq_rcv_buf; - struct rpc_task *rq_task; - struct rpc_cred *rq_cred; - __be32 rq_xid; - int rq_cong; - u32 rq_seqnos[3]; - unsigned int rq_seqno_count; - int rq_enc_pages_num; - struct page **rq_enc_pages; - void (*rq_release_snd_buf)(struct rpc_rqst *); - union { - struct list_head rq_list; - struct rb_node rq_recv; - }; - struct list_head rq_xmit; - struct list_head rq_xmit2; - void *rq_buffer; - size_t rq_callsize; - void *rq_rbuffer; - size_t rq_rcvsize; - size_t rq_xmit_bytes_sent; - size_t rq_reply_bytes_recvd; - struct xdr_buf rq_private_buf; - long unsigned int rq_majortimeo; - long unsigned int rq_minortimeo; - long unsigned int rq_timeout; - ktime_t rq_rtt; - unsigned int rq_retries; - unsigned int rq_connect_cookie; - atomic_t rq_pin; - u32 rq_bytes_sent; - ktime_t rq_xtime; - int rq_ntrans; - struct lwq_node rq_bc_list; - long unsigned int rq_bc_pa_state; - struct list_head rq_bc_pa_list; -}; - -typedef void (*kxdreproc_t)(struct rpc_rqst *, struct xdr_stream *, const void *); - -typedef int (*kxdrdproc_t)(struct rpc_rqst *, struct xdr_stream *, void *); - -struct rpc_procinfo; - -struct rpc_message { - const struct rpc_procinfo *rpc_proc; - void *rpc_argp; - void *rpc_resp; - const struct cred *rpc_cred; -}; - -struct rpc_procinfo { - u32 p_proc; - kxdreproc_t p_encode; - kxdrdproc_t p_decode; - unsigned int p_arglen; - unsigned int p_replen; - unsigned int p_timer; - u32 p_statidx; - const char *p_name; -}; - -struct rpc_wait { - struct list_head list; - struct list_head links; - struct list_head timer_list; -}; - -struct rpc_timeout { - long unsigned int to_initval; - long unsigned int to_maxval; - long unsigned int to_increment; - unsigned int to_retries; - unsigned char to_exponential; -}; - -struct rpc_wait_queue; - -struct rpc_call_ops; - -struct rpc_clnt; - -struct rpc_task { - atomic_t tk_count; - int tk_status; - struct list_head tk_task; - void (*tk_callback)(struct rpc_task *); - void (*tk_action)(struct rpc_task *); - long unsigned int tk_timeout; - long unsigned int tk_runstate; - struct rpc_wait_queue *tk_waitqueue; - union { - struct work_struct tk_work; - struct rpc_wait tk_wait; - } u; - struct rpc_message tk_msg; - void *tk_calldata; - const struct rpc_call_ops *tk_ops; - struct rpc_clnt *tk_client; - struct rpc_xprt *tk_xprt; - struct rpc_cred *tk_op_cred; - struct rpc_rqst *tk_rqstp; - struct workqueue_struct *tk_workqueue; - ktime_t tk_start; - pid_t tk_owner; - int tk_rpc_status; - short unsigned int tk_flags; - short unsigned int tk_timeouts; - short unsigned int tk_pid; - unsigned char tk_priority: 2; - unsigned char tk_garb_retry: 2; - unsigned char tk_cred_retry: 2; -}; - -struct rpc_timer { - struct list_head list; - long unsigned int expires; - struct delayed_work dwork; -}; - -struct rpc_wait_queue { - spinlock_t lock; - struct list_head tasks[4]; - unsigned char maxpriority; - unsigned char priority; - unsigned char nr; - unsigned int qlen; - struct rpc_timer timer_list; - const char *name; -}; - -struct rpc_call_ops { - void (*rpc_call_prepare)(struct rpc_task *, void *); - void (*rpc_call_done)(struct rpc_task *, void *); - void (*rpc_count_stats)(struct rpc_task *, void *); - void (*rpc_release)(void *); -}; - -struct rpc_iostats; - -enum xprtsec_policies { - RPC_XPRTSEC_NONE = 0, - RPC_XPRTSEC_TLS_ANON = 1, - RPC_XPRTSEC_TLS_X509 = 2, -}; - -struct xprtsec_parms { - enum xprtsec_policies policy; - key_serial_t cert_serial; - key_serial_t privkey_serial; -}; - -struct rpc_pipe_dir_head { - struct list_head pdh_entries; - struct dentry *pdh_dentry; -}; - -struct rpc_rtt { - long unsigned int timeo; - long unsigned int srtt[5]; - long unsigned int sdrtt[5]; - int ntimeouts[5]; -}; - -struct rpc_xprt_switch; - -struct rpc_xprt_iter_ops; - -struct rpc_xprt_iter { - struct rpc_xprt_switch *xpi_xpswitch; - struct rpc_xprt *xpi_cursor; - const struct rpc_xprt_iter_ops *xpi_ops; -}; - -struct rpc_auth; - -struct rpc_stat; - -struct rpc_program; - -struct rpc_sysfs_client; - -struct rpc_clnt { - refcount_t cl_count; - unsigned int cl_clid; - struct list_head cl_clients; - struct list_head cl_tasks; - atomic_t cl_pid; - spinlock_t cl_lock; - struct rpc_xprt *cl_xprt; - const struct rpc_procinfo *cl_procinfo; - u32 cl_prog; - u32 cl_vers; - u32 cl_maxproc; - struct rpc_auth *cl_auth; - struct rpc_stat *cl_stats; - struct rpc_iostats *cl_metrics; - unsigned int cl_softrtry: 1; - unsigned int cl_softerr: 1; - unsigned int cl_discrtry: 1; - unsigned int cl_noretranstimeo: 1; - unsigned int cl_autobind: 1; - unsigned int cl_chatty: 1; - unsigned int cl_shutdown: 1; - unsigned int cl_netunreach_fatal: 1; - struct xprtsec_parms cl_xprtsec; - struct rpc_rtt *cl_rtt; - const struct rpc_timeout *cl_timeout; - atomic_t cl_swapper; - int cl_nodelen; - char cl_nodename[65]; - struct rpc_pipe_dir_head cl_pipedir_objects; - struct rpc_clnt *cl_parent; - struct rpc_rtt cl_rtt_default; - struct rpc_timeout cl_timeout_default; - const struct rpc_program *cl_program; - const char *cl_principal; - struct dentry *cl_debugfs; - struct rpc_sysfs_client *cl_sysfs; - union { - struct rpc_xprt_iter cl_xpi; - struct work_struct cl_work; - }; - const struct cred *cl_cred; - unsigned int cl_max_connect; - struct super_block *pipefs_sb; - atomic_t cl_task_count; -}; - -struct svc_xprt; - -struct rpc_sysfs_xprt; - -struct rpc_xprt_ops; - -struct svc_serv; - -struct xprt_class; - -struct rpc_xprt { - struct kref kref; - const struct rpc_xprt_ops *ops; - unsigned int id; - const struct rpc_timeout *timeout; - struct __kernel_sockaddr_storage addr; - size_t addrlen; - int prot; - long unsigned int cong; - long unsigned int cwnd; - size_t max_payload; - struct rpc_wait_queue binding; - struct rpc_wait_queue sending; - struct rpc_wait_queue pending; - struct rpc_wait_queue backlog; - struct list_head free; - unsigned int max_reqs; - unsigned int min_reqs; - unsigned int num_reqs; - long unsigned int state; - unsigned char resvport: 1; - unsigned char reuseport: 1; - atomic_t swapper; - unsigned int bind_index; - struct list_head xprt_switch; - long unsigned int bind_timeout; - long unsigned int reestablish_timeout; - struct xprtsec_parms xprtsec; - unsigned int connect_cookie; - struct work_struct task_cleanup; - struct timer_list timer; - long unsigned int last_used; - long unsigned int idle_timeout; - long unsigned int connect_timeout; - long unsigned int max_reconnect_timeout; - atomic_long_t queuelen; - spinlock_t transport_lock; - spinlock_t reserve_lock; - spinlock_t queue_lock; - u32 xid; - struct rpc_task *snd_task; - struct list_head xmit_queue; - atomic_long_t xmit_queuelen; - struct svc_xprt *bc_xprt; - struct svc_serv *bc_serv; - unsigned int bc_alloc_max; - unsigned int bc_alloc_count; - atomic_t bc_slot_count; - spinlock_t bc_pa_lock; - struct list_head bc_pa_list; - struct rb_root recv_queue; - struct { - long unsigned int bind_count; - long unsigned int connect_count; - long unsigned int connect_start; - long unsigned int connect_time; - long unsigned int sends; - long unsigned int recvs; - long unsigned int bad_xids; - long unsigned int max_slots; - long long unsigned int req_u; - long long unsigned int bklog_u; - long long unsigned int sending_u; - long long unsigned int pending_u; - } stat; - struct net *xprt_net; - netns_tracker ns_tracker; - const char *servername; - const char *address_strings[6]; - struct dentry *debugfs; - struct callback_head rcu; - const struct xprt_class *xprt_class; - struct rpc_sysfs_xprt *xprt_sysfs; - bool main; -}; - -struct rpc_credops; - -struct rpc_cred { - struct hlist_node cr_hash; - struct list_head cr_lru; - struct callback_head cr_rcu; - struct rpc_auth *cr_auth; - const struct rpc_credops *cr_ops; - long unsigned int cr_expire; - long unsigned int cr_flags; - refcount_t cr_count; - const struct cred *cr_cred; -}; - -typedef u32 rpc_authflavor_t; - -struct auth_cred { - const struct cred *cred; - const char *principal; -}; - -struct rpc_cred_cache; - -struct rpc_authops; - -struct rpc_auth { - unsigned int au_cslack; - unsigned int au_rslack; - unsigned int au_verfsize; - unsigned int au_ralign; - long unsigned int au_flags; - const struct rpc_authops *au_ops; - rpc_authflavor_t au_flavor; - refcount_t au_count; - struct rpc_cred_cache *au_credcache; -}; - -struct rpc_credops { - const char *cr_name; - int (*cr_init)(struct rpc_auth *, struct rpc_cred *); - void (*crdestroy)(struct rpc_cred *); - int (*crmatch)(struct auth_cred *, struct rpc_cred *, int); - int (*crmarshal)(struct rpc_task *, struct xdr_stream *); - int (*crrefresh)(struct rpc_task *); - int (*crvalidate)(struct rpc_task *, struct xdr_stream *); - int (*crwrap_req)(struct rpc_task *, struct xdr_stream *); - int (*crunwrap_resp)(struct rpc_task *, struct xdr_stream *); - int (*crkey_timeout)(struct rpc_cred *); - char * (*crstringify_acceptor)(struct rpc_cred *); - bool (*crneed_reencode)(struct rpc_task *); -}; - -struct rpc_auth_create_args; - -struct rpcsec_gss_info; - -struct rpc_authops { - struct module *owner; - rpc_authflavor_t au_flavor; - char *au_name; - struct rpc_auth * (*create)(const struct rpc_auth_create_args *, struct rpc_clnt *); - void (*destroy)(struct rpc_auth *); - int (*hash_cred)(struct auth_cred *, unsigned int); - struct rpc_cred * (*lookup_cred)(struct rpc_auth *, struct auth_cred *, int); - struct rpc_cred * (*crcreate)(struct rpc_auth *, struct auth_cred *, int, gfp_t); - rpc_authflavor_t (*info2flavor)(struct rpcsec_gss_info *); - int (*flavor2info)(rpc_authflavor_t, struct rpcsec_gss_info *); - int (*key_timeout)(struct rpc_auth *, struct rpc_cred *); - int (*ping)(struct rpc_clnt *); -}; - -struct rpc_auth_create_args { - rpc_authflavor_t pseudoflavor; - const char *target_name; -}; - -struct rpcsec_gss_oid { - unsigned int len; - u8 data[32]; -}; - -struct rpcsec_gss_info { - struct rpcsec_gss_oid oid; - u32 qop; - u32 service; -}; - -struct rpc_xprt_ops { - void (*set_buffer_size)(struct rpc_xprt *, size_t, size_t); - int (*reserve_xprt)(struct rpc_xprt *, struct rpc_task *); - void (*release_xprt)(struct rpc_xprt *, struct rpc_task *); - void (*alloc_slot)(struct rpc_xprt *, struct rpc_task *); - void (*free_slot)(struct rpc_xprt *, struct rpc_rqst *); - void (*rpcbind)(struct rpc_task *); - void (*set_port)(struct rpc_xprt *, short unsigned int); - void (*connect)(struct rpc_xprt *, struct rpc_task *); - int (*get_srcaddr)(struct rpc_xprt *, char *, size_t); - short unsigned int (*get_srcport)(struct rpc_xprt *); - int (*buf_alloc)(struct rpc_task *); - void (*buf_free)(struct rpc_task *); - int (*prepare_request)(struct rpc_rqst *, struct xdr_buf *); - int (*send_request)(struct rpc_rqst *); - void (*abort_send_request)(struct rpc_rqst *); - void (*wait_for_reply_request)(struct rpc_task *); - void (*timer)(struct rpc_xprt *, struct rpc_task *); - void (*release_request)(struct rpc_task *); - void (*close)(struct rpc_xprt *); - void (*destroy)(struct rpc_xprt *); - void (*set_connect_timeout)(struct rpc_xprt *, long unsigned int, long unsigned int); - void (*print_stats)(struct rpc_xprt *, struct seq_file *); - int (*enable_swap)(struct rpc_xprt *); - void (*disable_swap)(struct rpc_xprt *); - void (*inject_disconnect)(struct rpc_xprt *); - int (*bc_setup)(struct rpc_xprt *, unsigned int); - size_t (*bc_maxpayload)(struct rpc_xprt *); - unsigned int (*bc_num_slots)(struct rpc_xprt *); - void (*bc_free_rqst)(struct rpc_rqst *); - void (*bc_destroy)(struct rpc_xprt *, unsigned int); -}; - -struct svc_program; - -struct svc_stat; - -struct svc_pool; - -struct svc_serv { - struct svc_program *sv_programs; - struct svc_stat *sv_stats; - spinlock_t sv_lock; - unsigned int sv_nprogs; - unsigned int sv_nrthreads; - unsigned int sv_max_payload; - unsigned int sv_max_mesg; - unsigned int sv_xdrsize; - struct list_head sv_permsocks; - struct list_head sv_tempsocks; - int sv_tmpcnt; - struct timer_list sv_temptimer; - char *sv_name; - unsigned int sv_nrpools; - bool sv_is_pooled; - struct svc_pool *sv_pools; - int (*sv_threadfn)(void *); - struct lwq sv_cb_list; - bool sv_bc_enabled; -}; - -struct xprt_create; - -struct xprt_class { - struct list_head list; - int ident; - struct rpc_xprt * (*setup)(struct xprt_create *); - struct module *owner; - char name[32]; - const char *netid[0]; -}; - -struct xprt_create { - int ident; - struct net *net; - struct sockaddr *srcaddr; - struct sockaddr *dstaddr; - size_t addrlen; - const char *servername; - struct svc_xprt *bc_xprt; - struct rpc_xprt_switch *bc_xps; - unsigned int flags; - struct xprtsec_parms xprtsec; - long unsigned int connect_timeout; - long unsigned int reconnect_timeout; -}; - -struct rpc_sysfs_xprt_switch; - -struct rpc_xprt_switch { - spinlock_t xps_lock; - struct kref xps_kref; - unsigned int xps_id; - unsigned int xps_nxprts; - unsigned int xps_nactive; - unsigned int xps_nunique_destaddr_xprts; - atomic_long_t xps_queuelen; - struct list_head xps_xprt_list; - struct net *xps_net; - const struct rpc_xprt_iter_ops *xps_iter_ops; - struct rpc_sysfs_xprt_switch *xps_sysfs; - struct callback_head xps_rcu; -}; - -struct rpc_stat { - const struct rpc_program *program; - unsigned int netcnt; - unsigned int netudpcnt; - unsigned int nettcpcnt; - unsigned int nettcpconn; - unsigned int netreconn; - unsigned int rpccnt; - unsigned int rpcretrans; - unsigned int rpcauthrefresh; - unsigned int rpcgarbage; -}; - -struct rpc_version; - -struct rpc_program { - const char *name; - u32 number; - unsigned int nrvers; - const struct rpc_version **version; - struct rpc_stat *stats; - const char *pipe_dir_name; -}; - -struct svc_stat { - struct svc_program *program; - unsigned int netcnt; - unsigned int netudpcnt; - unsigned int nettcpcnt; - unsigned int nettcpconn; - unsigned int rpccnt; - unsigned int rpcbadfmt; - unsigned int rpcbadauth; - unsigned int rpcbadclnt; -}; - -enum svc_auth_status { - SVC_GARBAGE = 1, - SVC_VALID = 2, - SVC_NEGATIVE = 3, - SVC_OK = 4, - SVC_DROP = 5, - SVC_CLOSE = 6, - SVC_DENIED = 7, - SVC_PENDING = 8, - SVC_COMPLETE = 9, -}; - -struct svc_version; - -struct svc_rqst; - -struct svc_process_info; - -struct svc_program { - u32 pg_prog; - unsigned int pg_lovers; - unsigned int pg_hivers; - unsigned int pg_nvers; - const struct svc_version **pg_vers; - char *pg_name; - char *pg_class; - enum svc_auth_status (*pg_authenticate)(struct svc_rqst *); - __be32 (*pg_init_request)(struct svc_rqst *, const struct svc_program *, struct svc_process_info *); - int (*pg_rpcbind_set)(struct net *, const struct svc_program *, u32, int, short unsigned int, short unsigned int); -}; - -struct rpc_xprt_iter_ops { - void (*xpi_rewind)(struct rpc_xprt_iter *); - struct rpc_xprt * (*xpi_xprt)(struct rpc_xprt_iter *); - struct rpc_xprt * (*xpi_next)(struct rpc_xprt_iter *); -}; - -struct rpc_sysfs_client { - struct kobject kobject; - struct net *net; - struct rpc_clnt *clnt; - struct rpc_xprt_switch *xprt_switch; -}; - -struct rpc_version { - u32 number; - unsigned int nrprocs; - const struct rpc_procinfo *procs; - unsigned int *counts; -}; - -struct nfs_fh { - short unsigned int size; - unsigned char data[128]; -}; - -enum nfs3_stable_how { - NFS_UNSTABLE = 0, - NFS_DATA_SYNC = 1, - NFS_FILE_SYNC = 2, - NFS_INVALID_STABLE_HOW = -1, -}; - -struct nfstime4 { - int64_t seconds; - uint32_t nseconds; -}; - -struct nfs4_label { - uint32_t lfs; - uint32_t pi; - u32 lsmid; - u32 len; - char *label; -}; - -typedef struct { - char data[8]; -} nfs4_verifier; - -struct nfs4_stateid_struct { - union { - char data[16]; - struct { - __be32 seqid; - char other[12]; - }; - }; - enum { - NFS4_INVALID_STATEID_TYPE = 0, - NFS4_SPECIAL_STATEID_TYPE = 1, - NFS4_OPEN_STATEID_TYPE = 2, - NFS4_LOCK_STATEID_TYPE = 3, - NFS4_DELEGATION_STATEID_TYPE = 4, - NFS4_LAYOUT_STATEID_TYPE = 5, - NFS4_PNFS_DS_STATEID_TYPE = 6, - NFS4_REVOKED_STATEID_TYPE = 7, - NFS4_FREED_STATEID_TYPE = 8, - } type; -}; - -typedef struct nfs4_stateid_struct nfs4_stateid; - -enum nfs_opnum4 { - OP_ACCESS = 3, - OP_CLOSE = 4, - OP_COMMIT = 5, - OP_CREATE = 6, - OP_DELEGPURGE = 7, - OP_DELEGRETURN = 8, - OP_GETATTR = 9, - OP_GETFH = 10, - OP_LINK = 11, - OP_LOCK = 12, - OP_LOCKT = 13, - OP_LOCKU = 14, - OP_LOOKUP = 15, - OP_LOOKUPP = 16, - OP_NVERIFY = 17, - OP_OPEN = 18, - OP_OPENATTR = 19, - OP_OPEN_CONFIRM = 20, - OP_OPEN_DOWNGRADE = 21, - OP_PUTFH = 22, - OP_PUTPUBFH = 23, - OP_PUTROOTFH = 24, - OP_READ = 25, - OP_READDIR = 26, - OP_READLINK = 27, - OP_REMOVE = 28, - OP_RENAME = 29, - OP_RENEW = 30, - OP_RESTOREFH = 31, - OP_SAVEFH = 32, - OP_SECINFO = 33, - OP_SETATTR = 34, - OP_SETCLIENTID = 35, - OP_SETCLIENTID_CONFIRM = 36, - OP_VERIFY = 37, - OP_WRITE = 38, - OP_RELEASE_LOCKOWNER = 39, - OP_BACKCHANNEL_CTL = 40, - OP_BIND_CONN_TO_SESSION = 41, - OP_EXCHANGE_ID = 42, - OP_CREATE_SESSION = 43, - OP_DESTROY_SESSION = 44, - OP_FREE_STATEID = 45, - OP_GET_DIR_DELEGATION = 46, - OP_GETDEVICEINFO = 47, - OP_GETDEVICELIST = 48, - OP_LAYOUTCOMMIT = 49, - OP_LAYOUTGET = 50, - OP_LAYOUTRETURN = 51, - OP_SECINFO_NO_NAME = 52, - OP_SEQUENCE = 53, - OP_SET_SSV = 54, - OP_TEST_STATEID = 55, - OP_WANT_DELEGATION = 56, - OP_DESTROY_CLIENTID = 57, - OP_RECLAIM_COMPLETE = 58, - OP_ALLOCATE = 59, - OP_COPY = 60, - OP_COPY_NOTIFY = 61, - OP_DEALLOCATE = 62, - OP_IO_ADVISE = 63, - OP_LAYOUTERROR = 64, - OP_LAYOUTSTATS = 65, - OP_OFFLOAD_CANCEL = 66, - OP_OFFLOAD_STATUS = 67, - OP_READ_PLUS = 68, - OP_SEEK = 69, - OP_WRITE_SAME = 70, - OP_CLONE = 71, - OP_GETXATTR = 72, - OP_SETXATTR = 73, - OP_LISTXATTRS = 74, - OP_REMOVEXATTR = 75, - OP_ILLEGAL = 10044, -}; - -enum nfs4_change_attr_type { - NFS4_CHANGE_TYPE_IS_MONOTONIC_INCR = 0, - NFS4_CHANGE_TYPE_IS_VERSION_COUNTER = 1, - NFS4_CHANGE_TYPE_IS_VERSION_COUNTER_NOPNFS = 2, - NFS4_CHANGE_TYPE_IS_TIME_METADATA = 3, - NFS4_CHANGE_TYPE_IS_UNDEFINED = 4, -}; - -struct gss_api_mech; - -struct gss_ctx { - struct gss_api_mech *mech_type; - void *internal_ctx_id; - unsigned int slack; - unsigned int align; -}; - -struct gss_api_ops; - -struct pf_desc; - -struct gss_api_mech { - struct list_head gm_list; - struct module *gm_owner; - struct rpcsec_gss_oid gm_oid; - char *gm_name; - const struct gss_api_ops *gm_ops; - int gm_pf_num; - struct pf_desc *gm_pfs; - const char *gm_upcall_enctypes; -}; - -struct auth_domain; - -struct pf_desc { - u32 pseudoflavor; - u32 qop; - u32 service; - char *name; - char *auth_domain_name; - struct auth_domain *domain; - bool datatouch; -}; - -struct auth_ops; - -struct auth_domain { - struct kref ref; - struct hlist_node hash; - char *name; - struct auth_ops *flavour; - struct callback_head callback_head; -}; - -struct gss_api_ops { - int (*gss_import_sec_context)(const void *, size_t, struct gss_ctx *, time64_t *, gfp_t); - u32 (*gss_get_mic)(struct gss_ctx *, struct xdr_buf *, struct xdr_netobj *); - u32 (*gss_verify_mic)(struct gss_ctx *, struct xdr_buf *, struct xdr_netobj *); - u32 (*gss_wrap)(struct gss_ctx *, int, struct xdr_buf *, struct page **); - u32 (*gss_unwrap)(struct gss_ctx *, int, int, struct xdr_buf *); - void (*gss_delete_sec_context)(void *); -}; - -struct nfs4_string { - unsigned int len; - char *data; -}; - -struct nfs_fsid { - uint64_t major; - uint64_t minor; -}; - -struct nfs4_threshold { - __u32 bm; - __u32 l_type; - __u64 rd_sz; - __u64 wr_sz; - __u64 rd_io_sz; - __u64 wr_io_sz; -}; - -struct nfs_fattr { - __u64 valid; - umode_t mode; - __u32 nlink; - kuid_t uid; - kgid_t gid; - dev_t rdev; - __u64 size; - union { - struct { - __u32 blocksize; - __u32 blocks; - } nfs2; - struct { - __u64 used; - } nfs3; - } du; - struct nfs_fsid fsid; - __u64 fileid; - __u64 mounted_on_fileid; - struct timespec64 atime; - struct timespec64 mtime; - struct timespec64 ctime; - struct timespec64 btime; - __u64 change_attr; - __u64 pre_change_attr; - __u64 pre_size; - struct timespec64 pre_mtime; - struct timespec64 pre_ctime; - long unsigned int time_start; - long unsigned int gencount; - struct nfs4_string *owner_name; - struct nfs4_string *group_name; - struct nfs4_threshold *mdsthreshold; - struct nfs4_label *label; -}; - -struct nfs_fsinfo { - struct nfs_fattr *fattr; - __u32 rtmax; - __u32 rtpref; - __u32 rtmult; - __u32 wtmax; - __u32 wtpref; - __u32 wtmult; - __u32 dtpref; - __u64 maxfilesize; - struct timespec64 time_delta; - __u32 lease_time; - __u32 nlayouttypes; - __u32 layouttype[8]; - __u32 blksize; - __u32 clone_blksize; - enum nfs4_change_attr_type change_attr_type; - __u32 xattr_support; -}; - -struct nfs_fsstat { - struct nfs_fattr *fattr; - __u64 tbytes; - __u64 fbytes; - __u64 abytes; - __u64 tfiles; - __u64 ffiles; - __u64 afiles; -}; - -struct nfs_pathconf { - struct nfs_fattr *fattr; - __u32 max_link; - __u32 max_namelen; -}; - -struct nfs4_change_info { - u32 atomic; - u64 before; - u64 after; -}; - -struct nfs4_slot; - -struct nfs4_sequence_args { - struct nfs4_slot *sa_slot; - u8 sa_cache_this: 1; - u8 sa_privileged: 1; -}; - -struct nfs4_sequence_res { - struct nfs4_slot *sr_slot; - long unsigned int sr_timestamp; - int sr_status; - u32 sr_status_flags; - u32 sr_highest_slotid; - u32 sr_target_highest_slotid; -}; - -struct nfs_open_context; - -struct nfs_lock_context { - refcount_t count; - struct list_head list; - struct nfs_open_context *open_context; - fl_owner_t lockowner; - atomic_t io_count; - struct callback_head callback_head; -}; - -struct nfsd_file; - -struct nfs_file_localio { - struct nfsd_file *ro_file; - struct nfsd_file *rw_file; - struct list_head list; - void *nfs_uuid; -}; - -struct nfs4_state; - -struct nfs_open_context { - struct nfs_lock_context lock_context; - fl_owner_t flock_owner; - struct dentry *dentry; - const struct cred *cred; - struct rpc_cred *ll_cred; - struct nfs4_state *state; - fmode_t mode; - int error; - long unsigned int flags; - struct nfs4_threshold *mdsthreshold; - struct list_head list; - struct callback_head callback_head; - struct nfs_file_localio nfl; -}; - -struct nlm_host; - -struct nfs_iostats; - -struct nfs_auth_info { - unsigned int flavor_len; - rpc_authflavor_t flavors[12]; -}; - -struct fscache_volume; - -struct pnfs_layoutdriver_type; - -struct nfs_client; - -struct nfs_server { - struct nfs_client *nfs_client; - struct list_head client_link; - struct list_head master_link; - struct rpc_clnt *client; - struct rpc_clnt *client_acl; - struct nlm_host *nlm_host; - struct nfs_iostats *io_stats; - wait_queue_head_t write_congestion_wait; - atomic_long_t writeback; - unsigned int write_congested; - unsigned int flags; - unsigned int automount_inherit; - unsigned int caps; - __u64 fattr_valid; - unsigned int rsize; - unsigned int rpages; - unsigned int wsize; - unsigned int wtmult; - unsigned int dtsize; - short unsigned int port; - unsigned int bsize; - unsigned int gxasize; - unsigned int sxasize; - unsigned int lxasize; - unsigned int acregmin; - unsigned int acregmax; - unsigned int acdirmin; - unsigned int acdirmax; - unsigned int namelen; - unsigned int options; - unsigned int clone_blksize; - enum nfs4_change_attr_type change_attr_type; - struct nfs_fsid fsid; - int s_sysfs_id; - __u64 maxfilesize; - long unsigned int mount_time; - struct super_block *super; - dev_t s_dev; - struct nfs_auth_info auth_info; - struct fscache_volume *fscache; - char *fscache_uniq; - u32 fh_expire_type; - u32 pnfs_blksize; - u32 attr_bitmask[3]; - u32 attr_bitmask_nl[3]; - u32 exclcreat_bitmask[3]; - u32 cache_consistency_bitmask[3]; - u32 acl_bitmask; - struct pnfs_layoutdriver_type *pnfs_curr_ld; - struct rpc_wait_queue roc_rpcwaitq; - struct rb_root state_owners; - atomic64_t owner_ctr; - struct list_head state_owners_lru; - struct list_head layouts; - struct list_head delegations; - atomic_long_t nr_active_delegations; - unsigned int delegation_hash_mask; - struct hlist_head *delegation_hash_table; - struct list_head ss_copies; - struct list_head ss_src_copies; - long unsigned int delegation_flags; - long unsigned int delegation_gen; - long unsigned int mig_gen; - long unsigned int mig_status; - void (*destroy)(struct nfs_server *); - atomic_t active; - struct __kernel_sockaddr_storage mountd_address; - size_t mountd_addrlen; - u32 mountd_version; - short unsigned int mountd_port; - short unsigned int mountd_protocol; - struct rpc_wait_queue uoc_rpcwaitq; - unsigned int read_hdrsize; - const struct cred *cred; - bool has_sec_mnt_opts; - struct kobject kobj; - struct callback_head rcu; -}; - -struct nfs_subversion; - -struct idmap; - -struct nfs4_slot_table; - -struct nfs4_session; - -struct nfs_rpc_ops; - -struct nfs4_minor_version_ops; - -struct nfs41_server_owner; - -struct nfs41_server_scope; - -struct nfs41_impl_id; - -struct nfs_client { - refcount_t cl_count; - atomic_t cl_mds_count; - int cl_cons_state; - long unsigned int cl_res_state; - long unsigned int cl_flags; - struct __kernel_sockaddr_storage cl_addr; - size_t cl_addrlen; - char *cl_hostname; - char *cl_acceptor; - struct list_head cl_share_link; - struct list_head cl_superblocks; - struct rpc_clnt *cl_rpcclient; - const struct nfs_rpc_ops *rpc_ops; - int cl_proto; - struct nfs_subversion *cl_nfs_mod; - u32 cl_minorversion; - unsigned int cl_nconnect; - unsigned int cl_max_connect; - const char *cl_principal; - struct xprtsec_parms cl_xprtsec; - struct list_head cl_ds_clients; - u64 cl_clientid; - nfs4_verifier cl_confirm; - long unsigned int cl_state; - spinlock_t cl_lock; - long unsigned int cl_lease_time; - long unsigned int cl_last_renewal; - struct delayed_work cl_renewd; - struct rpc_wait_queue cl_rpcwaitq; - struct idmap *cl_idmap; - const char *cl_owner_id; - u32 cl_cb_ident; - const struct nfs4_minor_version_ops *cl_mvops; - long unsigned int cl_mig_gen; - struct nfs4_slot_table *cl_slot_tbl; - u32 cl_seqid; - u32 cl_exchange_flags; - struct nfs4_session *cl_session; - bool cl_preserve_clid; - struct nfs41_server_owner *cl_serverowner; - struct nfs41_server_scope *cl_serverscope; - struct nfs41_impl_id *cl_implid; - long unsigned int cl_sp4_flags; - wait_queue_head_t cl_lock_waitq; - char cl_ipaddr[48]; - struct net *cl_net; - netns_tracker cl_ns_tracker; - struct list_head pending_cb_stateids; - struct callback_head rcu; -}; - -struct pnfs_layout_segment; - -struct nfs_seqid_counter; - -struct nfs_seqid { - struct nfs_seqid_counter *sequence; - struct list_head list; - struct rpc_task *task; -}; - -struct nfs_write_verifier { - char data[8]; -}; - -struct nfs_writeverf { - struct nfs_write_verifier verifier; - enum nfs3_stable_how committed; -}; - -struct nfs_pgio_args { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fh; - struct nfs_open_context *context; - struct nfs_lock_context *lock_context; - nfs4_stateid stateid; - __u64 offset; - __u32 count; - unsigned int pgbase; - struct page **pages; - union { - unsigned int replen; - struct { - const u32 *bitmask; - u32 bitmask_store[3]; - enum nfs3_stable_how stable; - }; - }; -}; - -struct nfs_pgio_res { - struct nfs4_sequence_res seq_res; - struct nfs_fattr *fattr; - __u64 count; - __u32 op_status; - union { - struct { - unsigned int replen; - int eof; - void *scratch; - }; - struct { - struct nfs_writeverf *verf; - const struct nfs_server *server; - }; - }; -}; - -struct nfs_commitargs { - struct nfs4_sequence_args seq_args; - struct nfs_fh *fh; - __u64 offset; - __u32 count; - const u32 *bitmask; -}; - -struct nfs_commitres { - struct nfs4_sequence_res seq_res; - __u32 op_status; - struct nfs_fattr *fattr; - struct nfs_writeverf *verf; - const struct nfs_server *server; -}; - -struct nfs_removeargs { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *fh; - struct qstr name; -}; - -struct nfs_removeres { - struct nfs4_sequence_res seq_res; - struct nfs_server *server; - struct nfs_fattr *dir_attr; - struct nfs4_change_info cinfo; -}; - -struct nfs_renameargs { - struct nfs4_sequence_args seq_args; - const struct nfs_fh *old_dir; - const struct nfs_fh *new_dir; - const struct qstr *old_name; - const struct qstr *new_name; -}; - -struct nfs_renameres { - struct nfs4_sequence_res seq_res; - struct nfs_server *server; - struct nfs4_change_info old_cinfo; - struct nfs_fattr *old_fattr; - struct nfs4_change_info new_cinfo; - struct nfs_fattr *new_fattr; -}; - -struct nfs_entry { - __u64 ino; - __u64 cookie; - const char *name; - unsigned int len; - int eof; - struct nfs_fh *fh; - struct nfs_fattr *fattr; - unsigned char d_type; - struct nfs_server *server; -}; - -struct nfs_readdir_arg { - struct dentry *dentry; - const struct cred *cred; - __be32 *verf; - u64 cookie; - struct page **pages; - unsigned int page_len; - bool plus; -}; - -struct nfs_readdir_res { - __be32 *verf; -}; - -struct nfs4_pathname { - unsigned int ncomponents; - struct nfs4_string components[512]; -}; - -struct nfs4_fs_location { - unsigned int nservers; - struct nfs4_string servers[10]; - struct nfs4_pathname rootpath; -}; - -struct nfs4_fs_locations { - struct nfs_fattr *fattr; - const struct nfs_server *server; - struct nfs4_pathname fs_path; - int nlocations; - struct nfs4_fs_location locations[10]; -}; - -struct pnfs_commit_ops; - -struct pnfs_ds_commit_info { - struct list_head commits; - unsigned int nwritten; - unsigned int ncommitting; - const struct pnfs_commit_ops *ops; -}; - -struct nfs41_server_owner { - uint64_t minor_id; - uint32_t major_id_sz; - char major_id[1024]; -}; - -struct nfs41_server_scope { - uint32_t server_scope_sz; - char server_scope[1024]; -}; - -struct nfs41_impl_id { - char domain[1025]; - char name[1025]; - struct nfstime4 date; -}; - -struct nfs_page_array { - struct page **pagevec; - unsigned int npages; - struct page *page_array[8]; -}; - -struct nfs_page; - -struct nfs_rw_ops; - -struct nfs_io_completion; - -struct nfs_direct_req; - -struct nfs_pgio_completion_ops; - -struct nfs_pgio_header { - struct inode *inode; - const struct cred *cred; - struct list_head pages; - struct nfs_page *req; - struct nfs_writeverf verf; - fmode_t rw_mode; - struct pnfs_layout_segment *lseg; - loff_t io_start; - const struct rpc_call_ops *mds_ops; - void (*release)(struct nfs_pgio_header *); - const struct nfs_pgio_completion_ops *completion_ops; - const struct nfs_rw_ops *rw_ops; - struct nfs_io_completion *io_completion; - struct nfs_direct_req *dreq; - void *netfs; - short unsigned int retrans; - int pnfs_error; - int error; - unsigned int good_bytes; - long unsigned int flags; - struct rpc_task task; - struct nfs_fattr fattr; - struct nfs_pgio_args args; - struct nfs_pgio_res res; - long unsigned int timestamp; - int (*pgio_done_cb)(struct rpc_task *, struct nfs_pgio_header *); - __u64 mds_offset; - struct nfs_page_array page_array; - struct nfs_client *ds_clp; - u32 ds_commit_idx; - u32 pgio_mirror_idx; -}; - -struct nfs_pgio_completion_ops { - void (*error_cleanup)(struct list_head *, int); - void (*init_hdr)(struct nfs_pgio_header *); - void (*completion)(struct nfs_pgio_header *); - void (*reschedule_io)(struct nfs_pgio_header *); -}; - -struct nfs_mds_commit_info { - atomic_t rpcs_out; - atomic_long_t ncommit; - struct list_head list; -}; - -struct nfs_commit_data; - -struct nfs_commit_info; - -struct nfs_commit_completion_ops { - void (*completion)(struct nfs_commit_data *); - void (*resched_write)(struct nfs_commit_info *, struct nfs_page *); -}; - -struct nfs_commit_data { - struct rpc_task task; - struct inode *inode; - const struct cred *cred; - struct nfs_fattr fattr; - struct nfs_writeverf verf; - struct list_head pages; - struct list_head list; - struct nfs_direct_req *dreq; - struct nfs_commitargs args; - struct nfs_commitres res; - struct nfs_open_context *context; - struct pnfs_layout_segment *lseg; - struct nfs_client *ds_clp; - int ds_commit_index; - loff_t lwb; - const struct rpc_call_ops *mds_ops; - const struct nfs_commit_completion_ops *completion_ops; - int (*commit_done_cb)(struct rpc_task *, struct nfs_commit_data *); - long unsigned int flags; -}; - -struct nfs_commit_info { - struct inode *inode; - struct nfs_mds_commit_info *mds; - struct pnfs_ds_commit_info *ds; - struct nfs_direct_req *dreq; - const struct nfs_commit_completion_ops *completion_ops; -}; - -struct nfs_unlinkdata { - struct nfs_removeargs args; - struct nfs_removeres res; - struct dentry *dentry; - wait_queue_head_t wq; - const struct cred *cred; - struct nfs_fattr dir_attr; - long int timeout; -}; - -struct nfs_renamedata { - struct nfs_renameargs args; - struct nfs_renameres res; - struct rpc_task task; - const struct cred *cred; - struct inode *old_dir; - struct dentry *old_dentry; - struct nfs_fattr old_fattr; - struct inode *new_dir; - struct dentry *new_dentry; - struct nfs_fattr new_fattr; - void (*complete)(struct rpc_task *, struct nfs_renamedata *); - long int timeout; - bool cancelled; -}; - -struct nlmclnt_operations; - -struct nfs_client_initdata; - -struct nfs_access_entry; - -struct nfs_rpc_ops { - u32 version; - const struct dentry_operations *dentry_ops; - const struct inode_operations *dir_inode_ops; - const struct inode_operations *file_inode_ops; - const struct file_operations *file_ops; - const struct nlmclnt_operations *nlmclnt_ops; - int (*getroot)(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); - int (*submount)(struct fs_context *, struct nfs_server *); - int (*try_get_tree)(struct fs_context *); - int (*getattr)(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *, struct inode *); - int (*setattr)(struct dentry *, struct nfs_fattr *, struct iattr *); - int (*lookup)(struct inode *, struct dentry *, const struct qstr *, struct nfs_fh *, struct nfs_fattr *); - int (*lookupp)(struct inode *, struct nfs_fh *, struct nfs_fattr *); - int (*access)(struct inode *, struct nfs_access_entry *, const struct cred *); - int (*readlink)(struct inode *, struct page *, unsigned int, unsigned int); - int (*create)(struct inode *, struct dentry *, struct iattr *, int); - int (*remove)(struct inode *, struct dentry *); - void (*unlink_setup)(struct rpc_message *, struct dentry *, struct inode *); - void (*unlink_rpc_prepare)(struct rpc_task *, struct nfs_unlinkdata *); - int (*unlink_done)(struct rpc_task *, struct inode *); - void (*rename_setup)(struct rpc_message *, struct dentry *, struct dentry *); - void (*rename_rpc_prepare)(struct rpc_task *, struct nfs_renamedata *); - int (*rename_done)(struct rpc_task *, struct inode *, struct inode *); - int (*link)(struct inode *, struct inode *, const struct qstr *); - int (*symlink)(struct inode *, struct dentry *, struct folio *, unsigned int, struct iattr *); - struct dentry * (*mkdir)(struct inode *, struct dentry *, struct iattr *); - int (*rmdir)(struct inode *, const struct qstr *); - int (*readdir)(struct nfs_readdir_arg *, struct nfs_readdir_res *); - int (*mknod)(struct inode *, struct dentry *, struct iattr *, dev_t); - int (*statfs)(struct nfs_server *, struct nfs_fh *, struct nfs_fsstat *); - int (*fsinfo)(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); - int (*pathconf)(struct nfs_server *, struct nfs_fh *, struct nfs_pathconf *); - int (*set_capabilities)(struct nfs_server *, struct nfs_fh *); - int (*decode_dirent)(struct xdr_stream *, struct nfs_entry *, bool); - int (*pgio_rpc_prepare)(struct rpc_task *, struct nfs_pgio_header *); - void (*read_setup)(struct nfs_pgio_header *, struct rpc_message *); - int (*read_done)(struct rpc_task *, struct nfs_pgio_header *); - void (*write_setup)(struct nfs_pgio_header *, struct rpc_message *, struct rpc_clnt **); - int (*write_done)(struct rpc_task *, struct nfs_pgio_header *); - void (*commit_setup)(struct nfs_commit_data *, struct rpc_message *, struct rpc_clnt **); - void (*commit_rpc_prepare)(struct rpc_task *, struct nfs_commit_data *); - int (*commit_done)(struct rpc_task *, struct nfs_commit_data *); - int (*lock)(struct file *, int, struct file_lock *); - int (*lock_check_bounds)(const struct file_lock *); - void (*clear_acl_cache)(struct inode *); - void (*close_context)(struct nfs_open_context *, int); - struct inode * (*open_context)(struct inode *, struct nfs_open_context *, int, struct iattr *, int *); - int (*have_delegation)(struct inode *, fmode_t, int); - int (*return_delegation)(struct inode *); - struct nfs_client * (*alloc_client)(const struct nfs_client_initdata *); - struct nfs_client * (*init_client)(struct nfs_client *, const struct nfs_client_initdata *); - void (*free_client)(struct nfs_client *); - struct nfs_server * (*create_server)(struct fs_context *); - struct nfs_server * (*clone_server)(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *, rpc_authflavor_t); - int (*discover_trunking)(struct nfs_server *, struct nfs_fh *); - void (*enable_swap)(struct inode *); - void (*disable_swap)(struct inode *); -}; - -struct nfs_access_entry { - struct rb_node rb_node; - struct list_head lru; - kuid_t fsuid; - kgid_t fsgid; - struct group_info *group_info; - u64 timestamp; - __u32 mask; - struct callback_head callback_head; -}; - -struct nfs4_state_recovery_ops; - -struct nfs4_state_maintenance_ops; - -struct nfs4_mig_recovery_ops; - -struct nfs4_minor_version_ops { - u32 minor_version; - unsigned int init_caps; - int (*init_client)(struct nfs_client *); - void (*shutdown_client)(struct nfs_client *); - bool (*match_stateid)(const nfs4_stateid *, const nfs4_stateid *); - int (*find_root_sec)(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *); - void (*free_lock_state)(struct nfs_server *, struct nfs4_lock_state *); - int (*test_and_free_expired)(struct nfs_server *, nfs4_stateid *, const struct cred *); - struct nfs_seqid * (*alloc_seqid)(struct nfs_seqid_counter *, gfp_t); - void (*session_trunk)(struct rpc_clnt *, struct rpc_xprt *, void *); - const struct rpc_call_ops *call_sync_ops; - const struct nfs4_state_recovery_ops *reboot_recovery_ops; - const struct nfs4_state_recovery_ops *nograce_recovery_ops; - const struct nfs4_state_maintenance_ops *state_renewal_ops; - const struct nfs4_mig_recovery_ops *mig_recovery_ops; -}; - -struct nfs4_state_owner; - -struct nfs4_state { - struct list_head open_states; - struct list_head inode_states; - struct list_head lock_states; - struct nfs4_state_owner *owner; - struct inode *inode; - long unsigned int flags; - spinlock_t state_lock; - seqlock_t seqlock; - nfs4_stateid stateid; - nfs4_stateid open_stateid; - unsigned int n_rdonly; - unsigned int n_wronly; - unsigned int n_rdwr; - fmode_t state; - refcount_t count; - wait_queue_head_t waitq; - struct callback_head callback_head; -}; - -struct cache_head { - struct hlist_node cache_list; - time64_t expiry_time; - time64_t last_refresh; - struct kref ref; - long unsigned int flags; -}; - -struct cache_deferred_req; - -struct cache_req { - struct cache_deferred_req * (*defer)(struct cache_req *); - long unsigned int thread_wait; -}; - -struct cache_deferred_req { - struct hlist_node hash; - struct list_head recent; - struct cache_head *item; - void *owner; - void (*revisit)(struct cache_deferred_req *, int); -}; - -struct svc_cred { - kuid_t cr_uid; - kgid_t cr_gid; - struct group_info *cr_group_info; - u32 cr_flavor; - char *cr_raw_principal; - char *cr_principal; - char *cr_targ_princ; - struct gss_api_mech *cr_gss_mech; -}; - -struct auth_ops { - char *name; - struct module *owner; - int flavour; - enum svc_auth_status (*accept)(struct svc_rqst *); - int (*release)(struct svc_rqst *); - void (*domain_release)(struct auth_domain *); - enum svc_auth_status (*set_client)(struct svc_rqst *); - rpc_authflavor_t (*pseudoflavor)(struct svc_rqst *); -}; - -struct svc_procedure; - -struct svc_deferred_req; - -struct svc_rqst { - struct list_head rq_all; - struct llist_node rq_idle; - struct callback_head rq_rcu_head; - struct svc_xprt *rq_xprt; - struct __kernel_sockaddr_storage rq_addr; - size_t rq_addrlen; - struct __kernel_sockaddr_storage rq_daddr; - size_t rq_daddrlen; - struct svc_serv *rq_server; - struct svc_pool *rq_pool; - const struct svc_procedure *rq_procinfo; - struct auth_ops *rq_authop; - struct svc_cred rq_cred; - void *rq_xprt_ctxt; - struct svc_deferred_req *rq_deferred; - struct xdr_buf rq_arg; - struct xdr_stream rq_arg_stream; - struct xdr_stream rq_res_stream; - struct page *rq_scratch_page; - struct xdr_buf rq_res; - long unsigned int rq_maxpages; - struct page **rq_pages; - struct page **rq_respages; - struct page **rq_next_page; - struct page **rq_page_end; - struct folio_batch rq_fbatch; - struct bio_vec *rq_bvec; - __be32 rq_xid; - u32 rq_prog; - u32 rq_vers; - u32 rq_proc; - u32 rq_prot; - int rq_cachetype; - long unsigned int rq_flags; - ktime_t rq_qtime; - void *rq_argp; - void *rq_resp; - __be32 *rq_accept_statp; - void *rq_auth_data; - __be32 rq_auth_stat; - int rq_auth_slack; - int rq_reserved; - ktime_t rq_stime; - struct cache_req rq_chandle; - struct auth_domain *rq_client; - struct auth_domain *rq_gssclient; - struct task_struct *rq_task; - struct net *rq_bc_net; - int rq_err; - long unsigned int bc_to_initval; - unsigned int bc_to_retries; - unsigned int rq_status_counter; - void **rq_lease_breaker; -}; - -struct svc_pool { - unsigned int sp_id; - struct lwq sp_xprts; - unsigned int sp_nrthreads; - struct list_head sp_all_threads; - struct llist_head sp_idle_threads; - struct percpu_counter sp_messages_arrived; - struct percpu_counter sp_sockets_queued; - struct percpu_counter sp_threads_woken; - long unsigned int sp_flags; -}; - -struct svc_procedure { - __be32 (*pc_func)(struct svc_rqst *); - bool (*pc_decode)(struct svc_rqst *, struct xdr_stream *); - bool (*pc_encode)(struct svc_rqst *, struct xdr_stream *); - void (*pc_release)(struct svc_rqst *); - unsigned int pc_argsize; - unsigned int pc_argzero; - unsigned int pc_ressize; - unsigned int pc_cachetype; - unsigned int pc_xdrressize; - const char *pc_name; -}; - -struct svc_deferred_req { - u32 prot; - struct svc_xprt *xprt; - struct __kernel_sockaddr_storage addr; - size_t addrlen; - struct __kernel_sockaddr_storage daddr; - size_t daddrlen; - void *xprt_ctxt; - struct cache_deferred_req handle; - int argslen; - __be32 args[0]; -}; - -struct svc_process_info { - union { - int (*dispatch)(struct svc_rqst *); - struct { - unsigned int lovers; - unsigned int hivers; - } mismatch; - }; -}; - -struct svc_version { - u32 vs_vers; - u32 vs_nproc; - const struct svc_procedure *vs_proc; - long unsigned int *vs_count; - u32 vs_xdrsize; - bool vs_hidden; - bool vs_rpcb_optnl; - bool vs_need_cong_ctrl; - int (*vs_dispatch)(struct svc_rqst *); -}; - -struct nfs4_ssc_client_ops; - -struct nfs_ssc_client_ops; - -struct nfs_ssc_client_ops_tbl { - const struct nfs4_ssc_client_ops *ssc_nfs4_ops; - const struct nfs_ssc_client_ops *ssc_nfs_ops; -}; - -struct nfs4_ssc_client_ops { - struct file * (*sco_open)(struct vfsmount *, struct nfs_fh *, nfs4_stateid *); - void (*sco_close)(struct file *); -}; - -struct nfs_ssc_client_ops { - void (*sco_sb_deactive)(struct super_block *); -}; - -struct nfs_seqid_counter { - ktime_t create_time; - u64 owner_id; - int flags; - u32 counter; - spinlock_t lock; - struct list_head list; - struct rpc_wait_queue wait; -}; - -struct nfs4_lock_state { - struct list_head ls_locks; - struct nfs4_state *ls_state; - long unsigned int ls_flags; - struct nfs_seqid_counter ls_seqid; - nfs4_stateid ls_stateid; - refcount_t ls_count; - fl_owner_t ls_owner; -}; - -struct nfs4_state_recovery_ops { - int owner_flag_bit; - int state_flag_bit; - int (*recover_open)(struct nfs4_state_owner *, struct nfs4_state *); - int (*recover_lock)(struct nfs4_state *, struct file_lock *); - int (*establish_clid)(struct nfs_client *, const struct cred *); - int (*reclaim_complete)(struct nfs_client *, const struct cred *); - int (*detect_trunking)(struct nfs_client *, struct nfs_client **, const struct cred *); -}; - -struct nfs4_state_maintenance_ops { - int (*sched_state_renewal)(struct nfs_client *, const struct cred *, unsigned int); - const struct cred * (*get_state_renewal_cred)(struct nfs_client *); - int (*renew_lease)(struct nfs_client *, const struct cred *); -}; - -struct nfs4_mig_recovery_ops { - int (*get_locations)(struct nfs_server *, struct nfs_fh *, struct nfs4_fs_locations *, struct page *, const struct cred *); - int (*fsid_present)(struct inode *, const struct cred *); -}; - -struct nfs4_state_owner { - struct nfs_server *so_server; - struct list_head so_lru; - long unsigned int so_expires; - struct rb_node so_server_node; - const struct cred *so_cred; - spinlock_t so_lock; - atomic_t so_count; - long unsigned int so_flags; - struct list_head so_states; - struct nfs_seqid_counter so_seqid; - struct mutex so_delegreturn_mutex; -}; - -struct page_region { - __u64 start; - __u64 end; - __u64 categories; -}; - -struct pm_scan_arg { - __u64 size; - __u64 flags; - __u64 start; - __u64 end; - __u64 walk_end; - __u64 vec; - __u64 vec_len; - __u64 max_pages; - __u64 category_inverted; - __u64 category_mask; - __u64 category_anyof_mask; - __u64 return_mask; -}; - -enum procmap_query_flags { - PROCMAP_QUERY_VMA_READABLE = 1, - PROCMAP_QUERY_VMA_WRITABLE = 2, - PROCMAP_QUERY_VMA_EXECUTABLE = 4, - PROCMAP_QUERY_VMA_SHARED = 8, - PROCMAP_QUERY_COVERING_OR_NEXT_VMA = 16, - PROCMAP_QUERY_FILE_BACKED_VMA = 32, -}; - -struct procmap_query { - __u64 size; - __u64 query_flags; - __u64 query_addr; - __u64 vma_start; - __u64 vma_end; - __u64 vma_flags; - __u64 vma_page_size; - __u64 vma_offset; - __u64 inode; - __u32 dev_major; - __u32 dev_minor; - __u32 vma_name_size; - __u32 build_id_size; - __u64 vma_name_addr; - __u64 build_id_addr; -}; - -struct proc_maps_private { - struct inode *inode; - struct task_struct *task; - struct mm_struct *mm; - struct vma_iterator iter; - loff_t last_pos; - bool mmap_locked; - struct vm_area_struct *locked_vma; - struct mempolicy *task_mempolicy; -}; - -struct mem_size_stats { - long unsigned int resident; - long unsigned int shared_clean; - long unsigned int shared_dirty; - long unsigned int private_clean; - long unsigned int private_dirty; - long unsigned int referenced; - long unsigned int anonymous; - long unsigned int lazyfree; - long unsigned int anonymous_thp; - long unsigned int shmem_thp; - long unsigned int file_thp; - long unsigned int swap; - long unsigned int shared_hugetlb; - long unsigned int private_hugetlb; - long unsigned int ksm; - u64 pss; - u64 pss_anon; - u64 pss_file; - u64 pss_shmem; - u64 pss_dirty; - u64 pss_locked; - u64 swap_pss; -}; - -enum clear_refs_types { - CLEAR_REFS_ALL = 1, - CLEAR_REFS_ANON = 2, - CLEAR_REFS_MAPPED = 3, - CLEAR_REFS_SOFT_DIRTY = 4, - CLEAR_REFS_MM_HIWATER_RSS = 5, - CLEAR_REFS_LAST = 6, -}; - -struct clear_refs_private { - enum clear_refs_types type; -}; - -typedef struct { - u64 pme; -} pagemap_entry_t; - -struct pagemapread { - int pos; - int len; - pagemap_entry_t *buffer; - bool show_pfn; -}; - -struct pagemap_scan_private { - struct pm_scan_arg arg; - long unsigned int masks_of_interest; - long unsigned int cur_vma_category; - struct page_region *vec_buf; - long unsigned int vec_buf_len; - long unsigned int vec_buf_index; - long unsigned int found_pages; - struct page_region *vec_out; -}; - -struct numa_maps { - long unsigned int pages; - long unsigned int anon; - long unsigned int active; - long unsigned int writeback; - long unsigned int mapcount_max; - long unsigned int dirty; - long unsigned int swapcache; - long unsigned int node[1024]; -}; - -struct numa_maps_private { - struct proc_maps_private proc_maps; - struct numa_maps md; -}; - -struct kernfs_global_locks { - struct mutex open_file_mutex[1024]; -}; - -struct kernfs_super_info { - struct super_block *sb; - struct kernfs_root *root; - const void *ns; - struct list_head node; -}; - -struct pts_mount_opts { - int setuid; - int setgid; - kuid_t uid; - kgid_t gid; - umode_t mode; - umode_t ptmxmode; - int reserve; - int max; -}; - -enum { - Opt_uid___5 = 0, - Opt_gid___6 = 1, - Opt_mode___4 = 2, - Opt_ptmxmode = 3, - Opt_newinstance = 4, - Opt_max = 5, - Opt_err___4 = 6, -}; - -struct pts_fs_info { - struct ida allocated_ptys; - struct pts_mount_opts mount_opts; - struct super_block *sb; - struct dentry *ptmx_dentry; -}; - -struct fname { - __u32 hash; - __u32 minor_hash; - struct rb_node rb_hash; - struct fname *next; - __u32 inode; - __u8 name_len; - __u8 file_type; - char name[0]; -}; - -typedef __kernel_mode_t mode_t; - -struct orlov_stats { - __u64 free_clusters; - __u32 free_inodes; - __u32 used_dirs; -}; - -enum blk_default_limits { - BLK_MAX_SEGMENTS = 128, - BLK_SAFE_MAX_SECTORS = 255, - BLK_MAX_SEGMENT_SIZE = 65536, - BLK_SEG_BOUNDARY_MASK = 4294967295, -}; - -struct ext4_allocation_request { - struct inode *inode; - unsigned int len; - ext4_lblk_t logical; - ext4_lblk_t lleft; - ext4_lblk_t lright; - ext4_fsblk_t goal; - ext4_fsblk_t pleft; - ext4_fsblk_t pright; - unsigned int flags; -}; - -struct ext4_free_data { - struct list_head efd_list; - struct rb_node efd_node; - ext4_group_t efd_group; - ext4_grpblk_t efd_start_cluster; - ext4_grpblk_t efd_count; - tid_t efd_tid; -}; - -struct ext4_prealloc_space { - union { - struct rb_node inode_node; - struct list_head lg_list; - } pa_node; - struct list_head pa_group_list; - union { - struct list_head pa_tmp_list; - struct callback_head pa_rcu; - } u; - spinlock_t pa_lock; - atomic_t pa_count; - unsigned int pa_deleted; - ext4_fsblk_t pa_pstart; - ext4_lblk_t pa_lstart; - ext4_grpblk_t pa_len; - ext4_grpblk_t pa_free; - short unsigned int pa_type; - union { - rwlock_t *inode_lock; - spinlock_t *lg_lock; - } pa_node_lock; - struct inode *pa_inode; -}; - -enum { - MB_INODE_PA = 0, - MB_GROUP_PA = 1, -}; - -struct ext4_free_extent { - ext4_lblk_t fe_logical; - ext4_grpblk_t fe_start; - ext4_group_t fe_group; - ext4_grpblk_t fe_len; -}; - -struct ext4_buddy; - -struct ext4_allocation_context { - struct inode *ac_inode; - struct super_block *ac_sb; - struct ext4_free_extent ac_o_ex; - struct ext4_free_extent ac_g_ex; - struct ext4_free_extent ac_b_ex; - struct ext4_free_extent ac_f_ex; - ext4_grpblk_t ac_orig_goal_len; - ext4_group_t ac_prefetch_grp; - unsigned int ac_prefetch_ios; - unsigned int ac_prefetch_nr; - int ac_first_err; - __u32 ac_flags; - __u16 ac_groups_scanned; - __u16 ac_found; - __u16 ac_cX_found[5]; - __u16 ac_tail; - __u16 ac_buddy; - __u8 ac_status; - __u8 ac_criteria; - __u8 ac_2order; - __u8 ac_op; - struct ext4_buddy *ac_e4b; - struct folio *ac_bitmap_folio; - struct folio *ac_buddy_folio; - struct ext4_prealloc_space *ac_pa; - struct ext4_locality_group *ac_lg; -}; - -struct ext4_buddy { - struct folio *bd_buddy_folio; - void *bd_buddy; - struct folio *bd_bitmap_folio; - void *bd_bitmap; - struct ext4_group_info *bd_info; - struct super_block *bd_sb; - __u16 bd_blkbits; - ext4_group_t bd_group; -}; - -typedef int (*ext4_mballoc_query_range_fn)(struct super_block *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t, void *); - -enum bio_post_read_step { - STEP_INITIAL = 0, - STEP_DECRYPT = 1, - STEP_VERITY = 2, - STEP_MAX = 3, -}; - -struct bio_post_read_ctx { - struct bio *bio; - struct work_struct work; - unsigned int cur_step; - unsigned int enabled_steps; -}; - -typedef struct { - __le16 e_tag; - __le16 e_perm; - __le32 e_id; -} ext4_acl_entry; - -typedef struct { - __le32 a_version; -} ext4_acl_header; - -struct commit_header { - __be32 h_magic; - __be32 h_blocktype; - __be32 h_sequence; - unsigned char h_chksum_type; - unsigned char h_chksum_size; - unsigned char h_padding[2]; - __be32 h_chksum[8]; - __be64 h_commit_sec; - __be32 h_commit_nsec; -}; - -struct journal_block_tag3_s { - __be32 t_blocknr; - __be32 t_flags; - __be32 t_blocknr_high; - __be32 t_checksum; -}; - -typedef struct journal_block_tag3_s journal_block_tag3_t; - -struct journal_block_tag_s { - __be32 t_blocknr; - __be16 t_checksum; - __be16 t_flags; - __be32 t_blocknr_high; -}; - -typedef struct journal_block_tag_s journal_block_tag_t; - -struct jbd2_journal_revoke_header_s { - journal_header_t r_header; - __be32 r_count; -}; - -typedef struct jbd2_journal_revoke_header_s jbd2_journal_revoke_header_t; - -struct recovery_info { - tid_t start_transaction; - tid_t end_transaction; - long unsigned int head_block; - int nr_replays; - int nr_revokes; - int nr_revoke_hits; -}; - -struct squashfs_dir_index { - __le32 index; - __le32 start_block; - __le32 size; - unsigned char name[0]; -}; - -struct squashfs_dir_entry { - __le16 offset; - __le16 inode_number; - __le16 type; - __le16 size; - char name[0]; -}; - -struct squashfs_dir_header { - __le32 count; - __le32 start_block; - __le32 inode_number; -}; - -struct squashfs_inode_info { - u64 start; - int offset; - u64 xattr; - unsigned int xattr_size; - int xattr_count; - int parent; - union { - struct { - u64 fragment_block; - int fragment_size; - int fragment_offset; - u64 block_list_start; - }; - struct { - u64 dir_idx_start; - int dir_idx_offset; - int dir_idx_cnt; - }; - }; - struct inode vfs_inode; -}; - -struct squashfs_fragment_entry { - __le64 start_block; - __le32 size; - unsigned int unused; -}; - -struct squashfs_base_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; -}; - -struct squashfs_ipc_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le32 nlink; -}; - -struct squashfs_lipc_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le32 nlink; - __le32 xattr; -}; - -struct squashfs_dev_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le32 nlink; - __le32 rdev; -}; - -struct squashfs_ldev_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le32 nlink; - __le32 rdev; - __le32 xattr; -}; - -struct squashfs_symlink_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le32 nlink; - __le32 symlink_size; - char symlink[0]; -}; - -struct squashfs_reg_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le32 start_block; - __le32 fragment; - __le32 offset; - __le32 file_size; - __le16 block_list[0]; -}; - -struct squashfs_lreg_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le64 start_block; - __le64 file_size; - __le64 sparse; - __le32 nlink; - __le32 fragment; - __le32 offset; - __le32 xattr; - __le16 block_list[0]; -}; - -struct squashfs_dir_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le32 start_block; - __le32 nlink; - __le16 file_size; - __le16 offset; - __le32 parent_inode; -}; - -struct squashfs_ldir_inode { - __le16 inode_type; - __le16 mode; - __le16 uid; - __le16 guid; - __le32 mtime; - __le32 inode_number; - __le32 nlink; - __le32 file_size; - __le32 start_block; - __le32 parent_inode; - __le16 i_count; - __le16 offset; - __le32 xattr; - struct squashfs_dir_index index[0]; -}; - -union squashfs_inode { - struct squashfs_base_inode base; - struct squashfs_dev_inode dev; - struct squashfs_ldev_inode ldev; - struct squashfs_symlink_inode symlink; - struct squashfs_reg_inode reg; - struct squashfs_lreg_inode lreg; - struct squashfs_dir_inode dir; - struct squashfs_ldir_inode ldir; - struct squashfs_ipc_inode ipc; - struct squashfs_lipc_inode lipc; -}; - -struct squashfs_xattr_entry { - __le16 type; - __le16 size; - char data[0]; -}; - -struct squashfs_xattr_val { - __le32 vsize; - char value[0]; -}; - -struct xz_dec; - -struct squashfs_xz { - struct xz_dec *state; - struct xz_buf buf; -}; - -struct disk_comp_opts { - __le32 dictionary_size; - __le32 flags; -}; - -struct comp_opts { - int dict_size; -}; - -typedef long long unsigned int llu; - -struct fatent_ra { - sector_t cur; - sector_t limit; - unsigned int ra_blocks; - sector_t ra_advance; - sector_t ra_next; - sector_t ra_limit; -}; - -struct fat_fid { - u32 i_gen; - u32 i_pos_low; - u16 i_pos_hi; - u16 parent_i_pos_hi; - u32 parent_i_pos_low; - u32 parent_i_gen; -}; - -struct ecryptfs_file_info { - struct file *wfi_file; - struct ecryptfs_crypt_stat *crypt_stat; -}; - -struct fuse_kstatfs { - uint64_t blocks; - uint64_t bfree; - uint64_t bavail; - uint64_t files; - uint64_t ffree; - uint32_t bsize; - uint32_t namelen; - uint32_t frsize; - uint32_t padding; - uint32_t spare[6]; -}; - -struct fuse_statfs_out { - struct fuse_kstatfs st; -}; - -struct fuse_init_in { - uint32_t major; - uint32_t minor; - uint32_t max_readahead; - uint32_t flags; - uint32_t flags2; - uint32_t unused[11]; -}; - -struct fuse_init_out { - uint32_t major; - uint32_t minor; - uint32_t max_readahead; - uint32_t flags; - uint16_t max_background; - uint16_t congestion_threshold; - uint32_t max_write; - uint32_t time_gran; - uint16_t max_pages; - uint16_t map_alignment; - uint32_t flags2; - uint32_t max_stack_depth; - uint16_t request_timeout; - uint16_t unused[11]; -}; - -struct fuse_syncfs_in { - uint64_t padding; -}; - -struct fuse_fs_context { - int fd; - struct file *file; - unsigned int rootmode; - kuid_t user_id; - kgid_t group_id; - bool is_bdev: 1; - bool fd_present: 1; - bool rootmode_present: 1; - bool user_id_present: 1; - bool group_id_present: 1; - bool default_permissions: 1; - bool allow_other: 1; - bool destroy: 1; - bool no_control: 1; - bool no_force_umount: 1; - bool legacy_opts_show: 1; - enum fuse_dax_mode dax_mode; - unsigned int max_read; - unsigned int blksize; - const char *subtype; - struct dax_device *dax_dev; - void **fudptr; -}; - -enum { - OPT_SOURCE = 0, - OPT_SUBTYPE = 1, - OPT_FD = 2, - OPT_ROOTMODE = 3, - OPT_USER_ID = 4, - OPT_GROUP_ID = 5, - OPT_DEFAULT_PERMISSIONS = 6, - OPT_ALLOW_OTHER = 7, - OPT_MAX_READ = 8, - OPT_BLKSIZE = 9, - OPT_ERR = 10, -}; - -struct fuse_inode_handle { - u64 nodeid; - u32 generation; -}; - -struct fuse_init_args { - struct fuse_args args; - struct fuse_init_in in; - struct fuse_init_out out; -}; - -typedef int (*eventfs_callback)(const char *, umode_t *, void **, const struct file_operations **); - -typedef void (*eventfs_release)(const char *, void *); - -struct eventfs_entry { - const char *name; - eventfs_callback callback; - eventfs_release release; -}; - -enum { - TRACEFS_EVENT_INODE = 2, - TRACEFS_GID_PERM_SET = 4, - TRACEFS_UID_PERM_SET = 8, - TRACEFS_INSTANCE_INODE = 16, -}; - -struct tracefs_inode { - struct inode vfs_inode; - struct list_head list; - long unsigned int flags; - void *private; -}; - -struct eventfs_attr { - int mode; - kuid_t uid; - kgid_t gid; -}; - -struct eventfs_inode { - union { - struct list_head list; - struct callback_head rcu; - }; - struct list_head children; - const struct eventfs_entry *entries; - const char *name; - struct eventfs_attr *entry_attrs; - void *data; - struct eventfs_attr attr; - struct kref kref; - unsigned int is_freed: 1; - unsigned int is_events: 1; - unsigned int nr_entries: 30; - unsigned int ino; -}; - -struct eventfs_root_inode { - struct eventfs_inode ei; - struct dentry *events_dir; -}; - -enum { - EVENTFS_SAVE_MODE = 65536, - EVENTFS_SAVE_UID = 131072, - EVENTFS_SAVE_GID = 262144, -}; - -struct efi_generic_dev_path { - u8 type; - u8 sub_type; - u16 length; -}; - -struct variable_validate { - efi_guid_t vendor; - char *name; - bool (*validate)(efi_char16_t *, int, u8 *, long unsigned int); -}; - -struct mon_data { - struct list_head list; - enum resctrl_res_level rid; - enum resctrl_event_id evtid; - int domid; - bool sum; -}; - -struct rdt_parse_data { - struct rdtgroup *rdtgrp; - char *buf; -}; - -typedef int ctrlval_parser_t(struct rdt_parse_data *, struct resctrl_schema *, struct rdt_ctrl_domain *); - -struct ipc_proc_iface { - const char *path; - const char *header; - int ids; - int (*show)(struct seq_file *, void *); -}; - -struct ipc_proc_iter { - struct ipc_namespace *ns; - struct pid_namespace *pid_ns; - struct ipc_proc_iface *iface; -}; - -struct compat_ipc_kludge { - compat_uptr_t msgp; - compat_long_t msgtyp; -}; - -struct keyctl_dh_params { - union { - __s32 private; - __s32 priv; - }; - __s32 prime; - __s32 base; -}; - -struct keyctl_kdf_params { - char *hashname; - char *otherinfo; - __u32 otherinfolen; - __u32 __spare[8]; -}; - -struct keyctl_pkey_query { - __u32 supported_ops; - __u32 key_size; - __u16 max_data_size; - __u16 max_sig_size; - __u16 max_enc_size; - __u16 max_dec_size; - __u32 __spare[10]; -}; - -struct keyctl_pkey_params { - __s32 key_id; - __u32 in_len; - union { - __u32 out_len; - __u32 in2_len; - }; - __u32 __spare[7]; -}; - -enum key_notification_subtype { - NOTIFY_KEY_INSTANTIATED = 0, - NOTIFY_KEY_UPDATED = 1, - NOTIFY_KEY_LINKED = 2, - NOTIFY_KEY_UNLINKED = 3, - NOTIFY_KEY_CLEARED = 4, - NOTIFY_KEY_REVOKED = 5, - NOTIFY_KEY_INVALIDATED = 6, - NOTIFY_KEY_SETATTR = 7, -}; - -struct key_notification { - struct watch_notification watch; - __u32 key_id; - __u32 aux; -}; - -struct compat_keyctl_kdf_params { - compat_uptr_t hashname; - compat_uptr_t otherinfo; - __u32 otherinfolen; - __u32 __spare[8]; -}; - -enum chacha20poly1305_lengths { - XCHACHA20POLY1305_NONCE_SIZE = 24, - CHACHA20POLY1305_KEY_SIZE = 32, - CHACHA20POLY1305_AUTHTAG_SIZE = 16, -}; - -struct big_key_payload { - u8 *data; - struct path path; - size_t length; -}; - -enum ecryptfs_token_types { - ECRYPTFS_PASSWORD = 0, - ECRYPTFS_PRIVATE_KEY = 1, -}; - -struct extended_perms_decision { - u8 used; - u8 driver; - u8 base_perm; - struct extended_perms_data *allowed; - struct extended_perms_data *auditallow; - struct extended_perms_data *dontaudit; -}; - -struct extended_perms { - u16 len; - u8 base_perms; - struct extended_perms_data drivers; -}; - -struct security_class_mapping { - const char *name; - const char *perms[33]; -}; - -struct trace_event_raw_selinux_audited { - struct trace_entry ent; - u32 requested; - u32 denied; - u32 audited; - int result; - u32 __data_loc_scontext; - u32 __data_loc_tcontext; - u32 __data_loc_tclass; - char __data[0]; -}; - -struct trace_event_data_offsets_selinux_audited { - u32 scontext; - const void *scontext_ptr_; - u32 tcontext; - const void *tcontext_ptr_; - u32 tclass; - const void *tclass_ptr_; -}; - -typedef void (*btf_trace_selinux_audited)(void *, struct selinux_audit_data *, char *, char *, const char *); - -struct avc_xperms_node; - -struct avc_entry { - u32 ssid; - u32 tsid; - u16 tclass; - struct av_decision avd; - struct avc_xperms_node *xp_node; -}; - -struct avc_xperms_node { - struct extended_perms xp; - struct list_head xpd_head; -}; - -struct avc_node { - struct avc_entry ae; - struct hlist_node list; - struct callback_head rhead; -}; - -struct avc_xperms_decision_node { - struct extended_perms_decision xpd; - struct list_head xpd_list; -}; - -struct avc_cache { - struct hlist_head slots[512]; - spinlock_t slots_lock[512]; - atomic_t lru_hint; - atomic_t active_nodes; - u32 latest_notif; -}; - -struct avc_callback_node { - int (*callback)(u32); - u32 events; - struct avc_callback_node *next; -}; - -struct selinux_avc { - unsigned int avc_cache_threshold; - struct avc_cache avc_cache; -}; - -enum { - INET_DIAG_REQ_NONE = 0, - INET_DIAG_REQ_BYTECODE = 1, - INET_DIAG_REQ_SK_BPF_STORAGES = 2, - INET_DIAG_REQ_PROTOCOL = 3, - __INET_DIAG_REQ_MAX = 4, -}; - -struct nlmsg_perm { - u16 nlmsg_type; - u32 perm; -}; - -struct smk_net4addr { - struct list_head list; - struct in_addr smk_host; - struct in_addr smk_mask; - int smk_masks; - struct smack_known *smk_label; -}; - -struct smk_net6addr { - struct list_head list; - struct in6_addr smk_host; - struct in6_addr smk_mask; - int smk_masks; - struct smack_known *smk_label; -}; - -enum smk_inos { - SMK_ROOT_INO = 2, - SMK_LOAD = 3, - SMK_CIPSO = 4, - SMK_DOI = 5, - SMK_DIRECT = 6, - SMK_AMBIENT = 7, - SMK_NET4ADDR = 8, - SMK_ONLYCAP = 9, - SMK_LOGGING = 10, - SMK_LOAD_SELF = 11, - SMK_ACCESSES = 12, - SMK_MAPPED = 13, - SMK_LOAD2 = 14, - SMK_LOAD_SELF2 = 15, - SMK_ACCESS2 = 16, - SMK_CIPSO2 = 17, - SMK_REVOKE_SUBJ = 18, - SMK_CHANGE_RULE = 19, - SMK_SYSLOG = 20, - SMK_PTRACE = 21, - SMK_NET6ADDR = 23, - SMK_RELABEL_SELF = 24, -}; - -struct smack_parsed_rule { - struct smack_known *smk_subject; - struct smack_known *smk_object; - int smk_access1; - int smk_access2; -}; - -enum tomoyo_grant_log { - TOMOYO_GRANTLOG_AUTO = 0, - TOMOYO_GRANTLOG_NO = 1, - TOMOYO_GRANTLOG_YES = 2, -}; - -enum tomoyo_value_type { - TOMOYO_VALUE_TYPE_INVALID = 0, - TOMOYO_VALUE_TYPE_DECIMAL = 1, - TOMOYO_VALUE_TYPE_OCTAL = 2, - TOMOYO_VALUE_TYPE_HEXADECIMAL = 3, -}; - -struct tomoyo_argv { - long unsigned int index; - const struct tomoyo_path_info *value; - bool is_not; -}; - -struct tomoyo_envp { - const struct tomoyo_path_info *name; - const struct tomoyo_path_info *value; - bool is_not; -}; - -struct tomoyo_condition_element { - u8 left; - u8 right; - bool equals; -}; - -struct tomoyo_env_acl { - struct tomoyo_acl_info head; - const struct tomoyo_path_info *env; -}; - -struct apparmor_notif_common { - __u16 len; - __u16 version; -}; - -struct apparmor_notif_register_v5 { - struct apparmor_notif_common base; - __u64 listener_id; -} __attribute__((packed)); - -struct apparmor_notif_resend_v5 { - struct apparmor_notif_common base; - __u64 listener_id; - __u32 ready; - __u32 pending; -} __attribute__((packed)); - -struct apparmor_notif_filter { - struct apparmor_notif_common base; - __u32 modeset; - __u32 ns; - __u32 filter; - __u8 data[0]; -}; - -struct apparmor_notif { - struct apparmor_notif_common base; - __u16 ntype; - __u8 signalled; - __u8 flags; - __u64 id; - __s32 error; -} __attribute__((packed)); - -struct apparmor_notif_resp_perm { - struct apparmor_notif base; - __s32 error; - __u32 allow; - __u32 deny; -}; - -struct apparmor_notif_resp_name { - union { - struct apparmor_notif base; - struct apparmor_notif_resp_perm perm; - }; - __u32 name; - __u8 data[0]; -}; - -union apparmor_notif_filters { - struct { - struct apparmor_notif_common base; - __u32 modeset; - __u32 ns; - __u32 filter; - __u8 data[0]; - }; - struct apparmor_notif_filter v3; - struct apparmor_notif_filter v5; -}; - -union apparmor_notif_resp { - struct apparmor_notif base; - struct apparmor_notif_resp_perm perm; - struct apparmor_notif_resp_name name; - union { - struct apparmor_notif_resp_perm perm; - struct apparmor_notif_resp_name name; - } v3; - union { - struct apparmor_notif_resp_perm perm; - struct apparmor_notif_resp_name name; - } v5; -}; - -struct aa_listener { - struct kref count; - spinlock_t lock; - wait_queue_head_t wait; - struct list_head ns_proxies; - struct list_head notifications; - struct list_head pending; - struct aa_ns *ns; - struct aa_dfa *filter; - struct aa_label *label; - u64 listener_id; - u64 last_id; - u32 mask; - u32 flags; - u16 version; -}; - -struct aa_listener_proxy { - struct aa_ns *ns; - struct aa_listener *listener; - struct list_head llist; - struct list_head nslist; - struct delayed_work work; -}; - -struct rawdata_f_data { - struct aa_loaddata *loaddata; -}; - -struct aa_revision { - struct aa_ns *ns; - long int last_read; -}; - -struct multi_transaction { - struct kref count; - ssize_t size; - char data[0]; -}; - -enum { - KERNEL_PARAM_OPS_FL_NOARG = 1, -}; - -enum nf_hook_ops_type { - NF_HOOK_OP_UNDEFINED = 0, - NF_HOOK_OP_NF_TABLES = 1, - NF_HOOK_OP_BPF = 2, - NF_HOOK_OP_NFT_FT = 3, -}; - -struct nf_hook_ops { - struct list_head list; - struct callback_head rcu; - nf_hookfn *hook; - struct net_device *dev; - void *priv; - u8 pf; - enum nf_hook_ops_type hook_ops_type: 8; - unsigned int hooknum; - int priority; -}; - -enum nf_ip_hook_priorities { - NF_IP_PRI_FIRST = -2147483648, - NF_IP_PRI_RAW_BEFORE_DEFRAG = -450, - NF_IP_PRI_CONNTRACK_DEFRAG = -400, - NF_IP_PRI_RAW = -300, - NF_IP_PRI_SELINUX_FIRST = -225, - NF_IP_PRI_CONNTRACK = -200, - NF_IP_PRI_MANGLE = -150, - NF_IP_PRI_NAT_DST = -100, - NF_IP_PRI_FILTER = 0, - NF_IP_PRI_SECURITY = 50, - NF_IP_PRI_NAT_SRC = 100, - NF_IP_PRI_SELINUX_LAST = 225, - NF_IP_PRI_CONNTRACK_HELPER = 300, - NF_IP_PRI_CONNTRACK_CONFIRM = 2147483647, - NF_IP_PRI_LAST = 2147483647, -}; - -enum nf_ip6_hook_priorities { - NF_IP6_PRI_FIRST = -2147483648, - NF_IP6_PRI_RAW_BEFORE_DEFRAG = -450, - NF_IP6_PRI_CONNTRACK_DEFRAG = -400, - NF_IP6_PRI_RAW = -300, - NF_IP6_PRI_SELINUX_FIRST = -225, - NF_IP6_PRI_CONNTRACK = -200, - NF_IP6_PRI_MANGLE = -150, - NF_IP6_PRI_NAT_DST = -100, - NF_IP6_PRI_FILTER = 0, - NF_IP6_PRI_SECURITY = 50, - NF_IP6_PRI_NAT_SRC = 100, - NF_IP6_PRI_SELINUX_LAST = 225, - NF_IP6_PRI_CONNTRACK_HELPER = 300, - NF_IP6_PRI_LAST = 2147483647, -}; - -struct aa_task_ctx { - struct aa_label *nnp; - struct aa_label *onexec; - struct aa_label *previous; - u64 token; -}; - -union aa_buffer { - struct list_head list; - struct { - struct {} __empty_buffer; - char buffer[0]; - }; -}; - -struct aa_local_cache { - unsigned int hold; - unsigned int count; - struct list_head head; -}; - -enum addr_type { - ADDR_LOCAL = 0, - ADDR_LOCAL_PRIV = 1, - ADDR_REMOTE = 2, -}; - -struct match_addr { - const char *addrp; - enum addr_type addrtype; - int len; - __be16 port; -}; - -struct stored_match_addr { - union { - struct sockaddr addr; - struct sockaddr_in addr4; - struct sockaddr_in6 addr6; - }; - int addrlen; - struct match_addr maddr; -}; - -enum cmd_type { - CMD_ADDR = 1, - CMD_LISTEN = 2, - CMD_OPT = 4, -}; - -struct ptrace_relation { - struct task_struct *tracer; - struct task_struct *tracee; - bool invalid; - struct list_head node; - struct callback_head rcu; -}; - -struct access_report_info { - struct callback_head work; - const char *access; - struct task_struct *target; - struct task_struct *agent; -}; - -enum devcg_behavior { - DEVCG_DEFAULT_NONE = 0, - DEVCG_DEFAULT_ALLOW = 1, - DEVCG_DEFAULT_DENY = 2, -}; - -struct dev_exception_item { - u32 major; - u32 minor; - short int type; - short int access; - struct list_head list; - struct callback_head rcu; -}; - -struct dev_cgroup { - struct cgroup_subsys_state css; - struct list_head exceptions; - enum devcg_behavior behavior; -}; - -struct ipefs_file { - const char *name; - umode_t access; - const struct file_operations *fops; -}; - -enum ipe_prop_type { - IPE_PROP_BOOT_VERIFIED_FALSE = 0, - IPE_PROP_BOOT_VERIFIED_TRUE = 1, - IPE_PROP_DMV_ROOTHASH = 2, - IPE_PROP_DMV_SIG_FALSE = 3, - IPE_PROP_DMV_SIG_TRUE = 4, - IPE_PROP_FSV_DIGEST = 5, - IPE_PROP_FSV_SIG_FALSE = 6, - IPE_PROP_FSV_SIG_TRUE = 7, - __IPE_PROP_MAX = 8, -}; - -struct ipe_prop { - struct list_head next; - enum ipe_prop_type type; - void *value; -}; - -struct ipe_rule { - enum ipe_op_type op; - enum ipe_action_type action; - struct list_head props; - struct list_head next; -}; - -enum ipe_match { - IPE_MATCH_RULE = 0, - IPE_MATCH_TABLE = 1, - IPE_MATCH_GLOBAL = 2, - __IPE_MATCH_MAX = 3, -}; - -struct efi_mokvar_table_entry { - char name[256]; - u64 data_size; - u8 data[0]; -}; - -typedef void (*efi_element_handler_t)(const char *, const void *, size_t); - -enum blacklist_hash_type { - BLACKLIST_HASH_X509_TBS = 1, - BLACKLIST_HASH_BINARY = 2, -}; - -struct ima_algo_desc { - struct crypto_shash *tfm; - enum hash_algo algo; -}; - -struct ima_queue_entry { - struct hlist_node hnext; - struct list_head later; - struct ima_template_entry *entry; -}; - -struct ima_h_table { - atomic_long_t len; - atomic_long_t violations; - struct hlist_head queue[1024]; -}; - -enum ima_fs_flags { - IMA_FS_BUSY = 0, -}; - -enum data_formats { - DATA_FMT_DIGEST = 0, - DATA_FMT_DIGEST_WITH_ALGO = 1, - DATA_FMT_DIGEST_WITH_TYPE_AND_ALGO = 2, - DATA_FMT_STRING = 3, - DATA_FMT_HEX = 4, - DATA_FMT_UINT = 5, -}; - -enum digest_type { - DIGEST_TYPE_IMA = 0, - DIGEST_TYPE_VERITY = 1, - DIGEST_TYPE__LAST = 2, -}; - -struct evm_xattr { - struct evm_ima_xattr_data_hdr data; - u8 digest[20]; -}; - -struct evm_iint_cache { - long unsigned int flags; - enum integrity_status evm_status: 4; - struct integrity_inode_attributes metadata_inode; -}; - -struct evm_digest { - struct ima_digest_data_hdr hdr; - char digest[64]; -}; - -struct crypto_report_aead { - char type[64]; - char geniv[64]; - unsigned int blocksize; - unsigned int maxauthsize; - unsigned int ivsize; -}; - -struct crypto_cipher { - struct crypto_tfm base; -}; - -struct crypto_cipher_spawn { - struct crypto_spawn base; -}; - -struct skcipher_alg { - int (*setkey)(struct crypto_skcipher *, const u8 *, unsigned int); - int (*encrypt)(struct skcipher_request *); - int (*decrypt)(struct skcipher_request *); - int (*export)(struct skcipher_request *, void *); - int (*import)(struct skcipher_request *, const void *); - int (*init)(struct crypto_skcipher *); - void (*exit)(struct crypto_skcipher *); - unsigned int walksize; - union { - struct { - unsigned int min_keysize; - unsigned int max_keysize; - unsigned int ivsize; - unsigned int chunksize; - unsigned int statesize; - struct crypto_alg base; - }; - struct skcipher_alg_common co; - }; -}; - -struct skcipher_instance { - void (*free)(struct skcipher_instance *); - union { - struct { - char head[88]; - struct crypto_instance base; - } s; - struct skcipher_alg alg; - }; -}; - -struct skcipher_ctx_simple { - struct crypto_cipher *cipher; -}; - -struct crypto_sig_spawn { - struct crypto_spawn base; -}; - -struct crypto_report_sig { - char type[64]; -}; - -struct dh { - const void *key; - const void *p; - const void *g; - unsigned int key_size; - unsigned int p_size; - unsigned int g_size; -}; - -struct dh_ctx { - MPI p; - MPI g; - MPI xa; -}; - -struct dh_safe_prime { - unsigned int max_strength; - unsigned int p_size; - const char *p; -}; - -struct dh_safe_prime_instance_ctx { - struct crypto_kpp_spawn dh_spawn; - const struct dh_safe_prime *safe_prime; -}; - -struct dh_safe_prime_tfm_ctx { - struct crypto_kpp *dh_tfm; -}; - -struct acomp_req_chain { - crypto_completion_t compl; - void *data; - struct scatterlist ssg; - struct scatterlist dsg; - union { - const u8 *src; - struct folio *sfolio; - }; - union { - u8 *dst; - struct folio *dfolio; - }; - u32 flags; -}; - -struct acomp_req { - struct crypto_async_request base; - union { - struct scatterlist *src; - const u8 *svirt; - }; - union { - struct scatterlist *dst; - u8 *dvirt; - }; - unsigned int slen; - unsigned int dlen; - struct acomp_req_chain chain; - void *__ctx[0]; -}; - -struct crypto_acomp { - int (*compress)(struct acomp_req *); - int (*decompress)(struct acomp_req *); - unsigned int reqsize; - struct crypto_tfm base; -}; - -struct acomp_alg { - int (*compress)(struct acomp_req *); - int (*decompress)(struct acomp_req *); - int (*init)(struct crypto_acomp *); - void (*exit)(struct crypto_acomp *); - union { - struct { - struct crypto_alg base; - }; - struct comp_alg_common calg; - }; -}; - -struct acomp_walk { - union { - struct { - struct { - const void * const addr; - } virt; - } src; - struct scatter_walk in; - }; - union { - struct { - struct { - void * const addr; - } virt; - } dst; - struct scatter_walk out; - }; - unsigned int slen; - unsigned int dlen; - int flags; -}; - -struct crypto_report_acomp { - char type[64]; -}; - -enum { - ACOMP_WALK_SLEEP = 1, - ACOMP_WALK_SRC_LINEAR = 2, - ACOMP_WALK_DST_LINEAR = 4, -}; - -struct crypto_rfc3686_ctx { - struct crypto_skcipher *child; - u8 nonce[4]; -}; - -struct crypto_rfc3686_req_ctx { - u8 iv[16]; - struct skcipher_request subreq; -}; - -struct deflate_stream { - struct z_stream_s stream; - u8 workspace[0]; -}; - -struct crypto_report_rng { - char type[64]; - unsigned int seedsize; -}; - -enum x509_actions { - ACT_x509_extract_key_data = 0, - ACT_x509_extract_name_segment = 1, - ACT_x509_note_OID = 2, - ACT_x509_note_issuer = 3, - ACT_x509_note_not_after = 4, - ACT_x509_note_not_before = 5, - ACT_x509_note_params = 6, - ACT_x509_note_serial = 7, - ACT_x509_note_sig_algo = 8, - ACT_x509_note_signature = 9, - ACT_x509_note_subject = 10, - ACT_x509_note_tbs_certificate = 11, - ACT_x509_process_extension = 12, - NR__x509_actions = 13, -}; - -enum x509_akid_actions { - ACT_x509_akid_note_kid = 0, - ACT_x509_akid_note_name = 1, - ACT_x509_akid_note_serial = 2, - ACT_x509_extract_name_segment___2 = 3, - ACT_x509_note_OID___2 = 4, - NR__x509_akid_actions = 5, -}; - -struct x509_parse_context { - struct x509_certificate *cert; - long unsigned int data; - const void *key; - size_t key_size; - const void *params; - size_t params_size; - enum OID key_algo; - enum OID last_oid; - enum OID sig_algo; - u8 o_size; - u8 cn_size; - u8 email_size; - u16 o_offset; - u16 cn_offset; - u16 email_offset; - unsigned int raw_akid_size; - const void *raw_akid; - const void *akid_raw_issuer; - unsigned int akid_raw_issuer_size; -}; - -enum pkcs7_actions { - ACT_pkcs7_check_content_type = 0, - ACT_pkcs7_extract_cert = 1, - ACT_pkcs7_note_OID = 2, - ACT_pkcs7_note_certificate_list = 3, - ACT_pkcs7_note_content = 4, - ACT_pkcs7_note_data = 5, - ACT_pkcs7_note_signed_info = 6, - ACT_pkcs7_note_signeddata_version = 7, - ACT_pkcs7_note_signerinfo_version = 8, - ACT_pkcs7_sig_note_authenticated_attr = 9, - ACT_pkcs7_sig_note_digest_algo = 10, - ACT_pkcs7_sig_note_issuer = 11, - ACT_pkcs7_sig_note_pkey_algo = 12, - ACT_pkcs7_sig_note_serial = 13, - ACT_pkcs7_sig_note_set_of_authattrs = 14, - ACT_pkcs7_sig_note_signature = 15, - ACT_pkcs7_sig_note_skid = 16, - NR__pkcs7_actions = 17, -}; - -enum mscode_actions { - ACT_mscode_note_content_type = 0, - ACT_mscode_note_digest = 1, - ACT_mscode_note_digest_algo = 2, - NR__mscode_actions = 3, -}; - -struct kdf_testvec { - unsigned char *key; - size_t keylen; - unsigned char *ikm; - size_t ikmlen; - struct kvec info; - unsigned char *expected; - size_t expectedlen; -}; - -struct bio_alloc_cache { - struct bio *free_list; - struct bio *free_list_irq; - unsigned int nr; - unsigned int nr_irq; -}; - -struct biovec_slab { - int nr_vecs; - char *name; - struct kmem_cache *slab; -}; - -struct bio_slab { - struct kmem_cache *slab; - unsigned int slab_ref; - unsigned int slab_size; - char name[12]; -}; - -struct blk_plug_cb; - -typedef void (*blk_plug_cb_fn)(struct blk_plug_cb *, bool); - -struct blk_plug_cb { - struct list_head list; - blk_plug_cb_fn callback; - void *data; -}; - -struct trace_event_raw_block_buffer { - struct trace_entry ent; - dev_t dev; - sector_t sector; - size_t size; - char __data[0]; -}; - -struct trace_event_raw_block_rq_requeue { - struct trace_entry ent; - dev_t dev; - sector_t sector; - unsigned int nr_sector; - short unsigned int ioprio; - char rwbs[10]; - u32 __data_loc_cmd; - char __data[0]; -}; - -struct trace_event_raw_block_rq_completion { - struct trace_entry ent; - dev_t dev; - sector_t sector; - unsigned int nr_sector; - int error; - short unsigned int ioprio; - char rwbs[10]; - u32 __data_loc_cmd; - char __data[0]; -}; - -struct trace_event_raw_block_rq { - struct trace_entry ent; - dev_t dev; - sector_t sector; - unsigned int nr_sector; - unsigned int bytes; - short unsigned int ioprio; - char rwbs[10]; - char comm[16]; - u32 __data_loc_cmd; - char __data[0]; -}; - -struct trace_event_raw_block_bio_complete { - struct trace_entry ent; - dev_t dev; - sector_t sector; - unsigned int nr_sector; - int error; - char rwbs[10]; - char __data[0]; -}; - -struct trace_event_raw_block_bio { - struct trace_entry ent; - dev_t dev; - sector_t sector; - unsigned int nr_sector; - char rwbs[10]; - char comm[16]; - char __data[0]; -}; - -struct trace_event_raw_block_plug { - struct trace_entry ent; - char comm[16]; - char __data[0]; -}; - -struct trace_event_raw_block_unplug { - struct trace_entry ent; - int nr_rq; - char comm[16]; - char __data[0]; -}; - -struct trace_event_raw_block_split { - struct trace_entry ent; - dev_t dev; - sector_t sector; - sector_t new_sector; - char rwbs[10]; - char comm[16]; - char __data[0]; -}; - -struct trace_event_raw_block_bio_remap { - struct trace_entry ent; - dev_t dev; - sector_t sector; - unsigned int nr_sector; - dev_t old_dev; - sector_t old_sector; - char rwbs[10]; - char __data[0]; -}; - -struct trace_event_raw_block_rq_remap { - struct trace_entry ent; - dev_t dev; - sector_t sector; - unsigned int nr_sector; - dev_t old_dev; - sector_t old_sector; - unsigned int nr_bios; - char rwbs[10]; - char __data[0]; -}; - -struct trace_event_raw_blkdev_zone_mgmt { - struct trace_entry ent; - dev_t dev; - sector_t sector; - sector_t nr_sectors; - char rwbs[10]; - char __data[0]; -}; - -struct trace_event_raw_block_zwplug { - struct trace_entry ent; - dev_t dev; - unsigned int zno; - sector_t sector; - unsigned int nr_sectors; - char __data[0]; -}; - -struct trace_event_data_offsets_block_buffer {}; - -struct trace_event_data_offsets_block_rq_requeue { - u32 cmd; - const void *cmd_ptr_; -}; - -struct trace_event_data_offsets_block_rq_completion { - u32 cmd; - const void *cmd_ptr_; -}; - -struct trace_event_data_offsets_block_rq { - u32 cmd; - const void *cmd_ptr_; -}; - -struct trace_event_data_offsets_block_bio_complete {}; - -struct trace_event_data_offsets_block_bio {}; - -struct trace_event_data_offsets_block_plug {}; - -struct trace_event_data_offsets_block_unplug {}; - -struct trace_event_data_offsets_block_split {}; - -struct trace_event_data_offsets_block_bio_remap {}; - -struct trace_event_data_offsets_block_rq_remap {}; - -struct trace_event_data_offsets_blkdev_zone_mgmt {}; - -struct trace_event_data_offsets_block_zwplug {}; - -typedef void (*btf_trace_block_touch_buffer)(void *, struct buffer_head *); - -typedef void (*btf_trace_block_dirty_buffer)(void *, struct buffer_head *); - -typedef void (*btf_trace_block_rq_requeue)(void *, struct request *); - -typedef void (*btf_trace_block_rq_complete)(void *, struct request *, blk_status_t, unsigned int); - -typedef void (*btf_trace_block_rq_error)(void *, struct request *, blk_status_t, unsigned int); - -typedef void (*btf_trace_block_rq_insert)(void *, struct request *); - -typedef void (*btf_trace_block_rq_issue)(void *, struct request *); - -typedef void (*btf_trace_block_rq_merge)(void *, struct request *); - -typedef void (*btf_trace_block_io_start)(void *, struct request *); - -typedef void (*btf_trace_block_io_done)(void *, struct request *); - -typedef void (*btf_trace_block_bio_complete)(void *, struct request_queue *, struct bio *); - -typedef void (*btf_trace_block_bio_backmerge)(void *, struct bio *); - -typedef void (*btf_trace_block_bio_frontmerge)(void *, struct bio *); - -typedef void (*btf_trace_block_bio_queue)(void *, struct bio *); - -typedef void (*btf_trace_block_getrq)(void *, struct bio *); - -typedef void (*btf_trace_blk_zone_append_update_request_bio)(void *, struct request *); - -typedef void (*btf_trace_block_plug)(void *, struct request_queue *); - -typedef void (*btf_trace_block_unplug)(void *, struct request_queue *, unsigned int, bool); - -typedef void (*btf_trace_block_split)(void *, struct bio *, unsigned int); - -typedef void (*btf_trace_block_bio_remap)(void *, struct bio *, dev_t, sector_t); - -typedef void (*btf_trace_block_rq_remap)(void *, struct request *, dev_t, sector_t); - -typedef void (*btf_trace_blkdev_zone_mgmt)(void *, struct bio *, sector_t); - -typedef void (*btf_trace_disk_zone_wplug_add_bio)(void *, struct request_queue *, unsigned int, sector_t, unsigned int); - -typedef void (*btf_trace_blk_zone_wplug_bio)(void *, struct request_queue *, unsigned int, sector_t, unsigned int); - -struct req_iterator { - struct bvec_iter iter; - struct bio *bio; -}; - -enum bio_merge_status { - BIO_MERGE_OK = 0, - BIO_MERGE_NONE = 1, - BIO_MERGE_FAILED = 2, -}; - -struct dma_iova_state { - dma_addr_t addr; - u64 __size; -}; - -struct blk_dma_iter { - dma_addr_t addr; - u32 len; - blk_status_t status; - struct req_iterator iter; - struct pci_p2pdma_map_state p2pdma; -}; - -struct phys_vec { - phys_addr_t paddr; - u32 len; -}; - -struct logical_block_metadata_cap { - __u32 lbmd_flags; - __u16 lbmd_interval; - __u8 lbmd_size; - __u8 lbmd_opaque_size; - __u8 lbmd_opaque_offset; - __u8 lbmd_pi_size; - __u8 lbmd_pi_offset; - __u8 lbmd_guard_tag_type; - __u8 lbmd_app_tag_size; - __u8 lbmd_ref_tag_size; - __u8 lbmd_storage_tag_size; - __u8 pad; -}; - -struct blkpg_ioctl_arg { - int op; - int flags; - int datalen; - void *data; -}; - -struct blkpg_partition { - long long int start; - long long int length; - int pno; - char devname[64]; - char volname[64]; -}; - -struct pr_reservation { - __u64 key; - __u32 type; - __u32 flags; -}; - -struct pr_registration { - __u64 old_key; - __u64 new_key; - __u32 flags; - __u32 __pad; -}; - -struct pr_preempt { - __u64 old_key; - __u64 new_key; - __u32 type; - __u32 flags; -}; - -struct pr_clear { - __u64 key; - __u32 flags; - __u32 __pad; -}; - -enum { - IOU_F_TWQ_LAZY_WAKE = 1, -}; - -struct compat_blkpg_ioctl_arg { - compat_int_t op; - compat_int_t flags; - compat_int_t datalen; - compat_caddr_t data; -}; - -struct compat_hd_geometry { - unsigned char heads; - unsigned char sectors; - short unsigned int cylinders; - u32 start; -}; - -struct blk_iou_cmd { - int res; - bool nowait; -}; - -struct badblocks_context { - sector_t start; - sector_t len; - int ack; -}; - -struct lvm_rec { - char lvm_id[4]; - char reserved4[16]; - __be32 lvmarea_len; - __be32 vgda_len; - __be32 vgda_psn[2]; - char reserved36[10]; - __be16 pp_size; - char reserved46[12]; - __be16 version; -}; - -struct vgda { - __be32 secs; - __be32 usec; - char reserved8[16]; - __be16 numlvs; - __be16 maxlvs; - __be16 pp_size; - __be16 numpvs; - __be16 total_vgdas; - __be16 vgda_size; -}; - -struct lvd { - __be16 lv_ix; - __be16 res2; - __be16 res4; - __be16 maxsize; - __be16 lv_state; - __be16 mirror; - __be16 mirror_policy; - __be16 num_lps; - __be16 res10[8]; -}; - -struct lvname { - char name[64]; -}; - -struct ppe { - __be16 lv_ix; - short unsigned int res2; - short unsigned int res4; - __be16 lp_ix; - short unsigned int res8[12]; -}; - -struct pvd { - char reserved0[16]; - __be16 pp_count; - char reserved18[2]; - __be32 psn_part1; - char reserved24[8]; - struct ppe ppe[1016]; -}; - -struct lv_info { - short unsigned int pps_per_lv; - short unsigned int pps_found; - unsigned char lv_is_contiguous; -}; - -struct fat_boot_sector { - __u8 ignored[3]; - __u8 system_id[8]; - __u8 sector_size[2]; - __u8 sec_per_clus; - __le16 reserved; - __u8 fats; - __u8 dir_entries[2]; - __u8 sectors[2]; - __u8 media; - __le16 fat_length; - __le16 secs_track; - __le16 heads; - __le32 hidden; - __le32 total_sect; - union { - struct { - __u8 drive_number; - __u8 state; - __u8 signature; - __u8 vol_id[4]; - __u8 vol_label[11]; - __u8 fs_type[8]; - } fat16; - struct { - __le32 length; - __le16 flags; - __u8 version[2]; - __le32 root_cluster; - __le16 info_sector; - __le16 backup_boot; - __le16 reserved2[6]; - __u8 drive_number; - __u8 state; - __u8 signature; - __u8 vol_id[4]; - __u8 vol_label[11]; - __u8 fs_type[8]; - } fat32; - }; -}; - -struct msdos_partition { - u8 boot_ind; - u8 head; - u8 sector; - u8 cyl; - u8 sys_ind; - u8 end_head; - u8 end_sector; - u8 end_cyl; - __le32 start_sect; - __le32 nr_sects; -}; - -enum msdos_sys_ind { - DOS_EXTENDED_PARTITION = 5, - LINUX_EXTENDED_PARTITION = 133, - WIN98_EXTENDED_PARTITION = 15, - LINUX_DATA_PARTITION = 131, - LINUX_LVM_PARTITION = 142, - LINUX_RAID_PARTITION___2 = 253, - SOLARIS_X86_PARTITION = 130, - NEW_SOLARIS_X86_PARTITION = 191, - DM6_AUX1PARTITION = 81, - DM6_AUX3PARTITION = 83, - DM6_PARTITION = 84, - EZD_PARTITION = 85, - FREEBSD_PARTITION = 165, - OPENBSD_PARTITION = 166, - NETBSD_PARTITION = 169, - BSDI_PARTITION = 183, - MINIX_PARTITION = 129, - UNIXWARE_PARTITION = 99, -}; - -struct solaris_x86_slice { - __le16 s_tag; - __le16 s_flag; - __le32 s_start; - __le32 s_size; -}; - -struct solaris_x86_vtoc { - unsigned int v_bootinfo[3]; - __le32 v_sanity; - __le32 v_version; - char v_volume[8]; - __le16 v_sectorsz; - __le16 v_nparts; - unsigned int v_reserved[10]; - struct solaris_x86_slice v_slice[16]; - unsigned int timestamp[16]; - char v_asciilabel[128]; -}; - -struct bsd_partition { - __le32 p_size; - __le32 p_offset; - __le32 p_fsize; - __u8 p_fstype; - __u8 p_frag; - __le16 p_cpg; -}; - -struct bsd_disklabel { - __le32 d_magic; - __s16 d_type; - __s16 d_subtype; - char d_typename[16]; - char d_packname[16]; - __u32 d_secsize; - __u32 d_nsectors; - __u32 d_ntracks; - __u32 d_ncylinders; - __u32 d_secpercyl; - __u32 d_secperunit; - __u16 d_sparespertrack; - __u16 d_sparespercyl; - __u32 d_acylinders; - __u16 d_rpm; - __u16 d_interleave; - __u16 d_trackskew; - __u16 d_cylskew; - __u32 d_headswitch; - __u32 d_trkseek; - __u32 d_flags; - __u32 d_drivedata[5]; - __u32 d_spare[5]; - __le32 d_magic2; - __le16 d_checksum; - __le16 d_npartitions; - __le32 d_bbsize; - __le32 d_sbsize; - struct bsd_partition d_partitions[16]; -}; - -struct unixware_slice { - __le16 s_label; - __le16 s_flags; - __le32 start_sect; - __le32 nr_sects; -}; - -struct unixware_vtoc { - __le32 v_magic; - __le32 v_version; - char v_name[8]; - __le16 v_nslices; - __le16 v_unknown1; - __le32 v_reserved[10]; - struct unixware_slice v_slice[16]; -}; - -struct unixware_disklabel { - __le32 d_type; - __le32 d_magic; - __le32 d_version; - char d_serial[12]; - __le32 d_ncylinders; - __le32 d_ntracks; - __le32 d_nsectors; - __le32 d_secsize; - __le32 d_part_start; - __le32 d_unknown1[12]; - __le32 d_alt_tbl; - __le32 d_alt_len; - __le32 d_phys_cyl; - __le32 d_phys_trk; - __le32 d_phys_sec; - __le32 d_phys_bytes; - __le32 d_unknown2; - __le32 d_unknown3; - __le32 d_pad[8]; - struct unixware_vtoc vtoc; -}; - -struct pt_info { - s32 pi_nblocks; - u32 pi_blkoff; -}; - -struct ultrix_disklabel { - s32 pt_magic; - s32 pt_valid; - struct pt_info pt_part[8]; -}; - -struct volumeid { - u8 vid_unused[248]; - u8 vid_mac[8]; -}; - -struct dkconfig { - u8 ios_unused0[128]; - __be32 ios_slcblk; - __be16 ios_slccnt; - u8 ios_unused1[122]; -}; - -struct dkblk0 { - struct volumeid dk_vid; - struct dkconfig dk_ios; -}; - -struct slice { - __be32 nblocks; - __be32 blkoff; -}; - -struct class_dev_iter { - struct klist_iter ki; - const struct device_type *type; - struct subsys_private *sp; -}; - -struct uuidcmp { - const char *uuid; - int len; -}; - -enum prio_policy { - POLICY_NO_CHANGE = 0, - POLICY_PROMOTE_TO_RT = 1, - POLICY_RESTRICT_TO_BE = 2, - POLICY_ALL_TO_IDLE = 3, - POLICY_NONE_TO_RT = 4, -}; - -struct ioprio_blkcg { - struct blkcg_policy_data cpd; - enum prio_policy prio_policy; -}; - -struct t10_pi_tuple { - __be16 guard_tag; - __be16 app_tag; - __be32 ref_tag; -}; - -struct crc64_pi_tuple { - __be64 guard_tag; - __be16 app_tag; - __u8 ref_tag[6]; -}; - -enum blk_zone_type { - BLK_ZONE_TYPE_CONVENTIONAL = 1, - BLK_ZONE_TYPE_SEQWRITE_REQ = 2, - BLK_ZONE_TYPE_SEQWRITE_PREF = 3, -}; - -enum blk_zone_cond { - BLK_ZONE_COND_NOT_WP = 0, - BLK_ZONE_COND_EMPTY = 1, - BLK_ZONE_COND_IMP_OPEN = 2, - BLK_ZONE_COND_EXP_OPEN = 3, - BLK_ZONE_COND_CLOSED = 4, - BLK_ZONE_COND_READONLY = 13, - BLK_ZONE_COND_FULL = 14, - BLK_ZONE_COND_OFFLINE = 15, -}; - -enum blk_zone_report_flags { - BLK_ZONE_REP_CAPACITY = 1, -}; - -struct blk_zone_report { - __u64 sector; - __u32 nr_zones; - __u32 flags; - struct blk_zone zones[0]; -}; - -struct blk_zone_range { - __u64 sector; - __u64 nr_sectors; -}; - -struct blk_zone_wplug { - struct hlist_node node; - refcount_t ref; - spinlock_t lock; - unsigned int flags; - unsigned int zone_no; - unsigned int wp_offset; - struct bio_list bio_list; - struct work_struct bio_work; - struct callback_head callback_head; - struct gendisk *disk; -}; - -struct disk_report_zones_cb_args { - struct gendisk *disk; - report_zones_cb user_cb; - void *user_data; -}; - -struct zone_report_args { - struct blk_zone *zones; -}; - -struct blk_revalidate_zone_args { - struct gendisk *disk; - long unsigned int *conv_zones_bitmap; - unsigned int nr_zones; - unsigned int zone_capacity; - unsigned int last_zone_capacity; - sector_t sector; -}; - -struct blk_crypto_keyslot { - atomic_t slot_refs; - struct list_head idle_slot_node; - struct hlist_node hash_node; - const struct blk_crypto_key *key; - struct blk_crypto_profile *profile; -}; - -typedef u32 compat_sigset_word; - -typedef struct { - compat_sigset_word sig[2]; -} compat_sigset_t; - -struct io_sqring_offsets { - __u32 head; - __u32 tail; - __u32 ring_mask; - __u32 ring_entries; - __u32 flags; - __u32 dropped; - __u32 array; - __u32 resv1; - __u64 user_addr; -}; - -struct io_cqring_offsets { - __u32 head; - __u32 tail; - __u32 ring_mask; - __u32 ring_entries; - __u32 overflow; - __u32 cqes; - __u32 flags; - __u32 resv1; - __u64 user_addr; -}; - -struct io_uring_params { - __u32 sq_entries; - __u32 cq_entries; - __u32 flags; - __u32 sq_thread_cpu; - __u32 sq_thread_idle; - __u32 features; - __u32 wq_fd; - __u32 resv[3]; - struct io_sqring_offsets sq_off; - struct io_cqring_offsets cq_off; -}; - -enum { - IORING_REG_WAIT_TS = 1, -}; - -struct io_uring_reg_wait { - struct __kernel_timespec ts; - __u32 min_wait_usec; - __u32 flags; - __u64 sigmask; - __u32 sigmask_sz; - __u32 pad[3]; - __u64 pad2[2]; -}; - -struct io_uring_getevents_arg { - __u64 sigmask; - __u32 sigmask_sz; - __u32 min_wait_usec; - __u64 ts; -}; - -struct io_sq_data { - refcount_t refs; - atomic_t park_pending; - struct mutex lock; - struct list_head ctx_list; - struct task_struct *thread; - struct wait_queue_head wait; - unsigned int sq_thread_idle; - int sq_cpu; - pid_t task_pid; - pid_t task_tgid; - u64 work_time; - long unsigned int state; - struct completion exited; -}; - -struct io_overflow_cqe { - struct list_head list; - struct io_uring_cqe cqe; -}; - -struct trace_event_raw_io_uring_create { - struct trace_entry ent; - int fd; - void *ctx; - u32 sq_entries; - u32 cq_entries; - u32 flags; - char __data[0]; -}; - -struct trace_event_raw_io_uring_register { - struct trace_entry ent; - void *ctx; - unsigned int opcode; - unsigned int nr_files; - unsigned int nr_bufs; - long int ret; - char __data[0]; -}; - -struct trace_event_raw_io_uring_file_get { - struct trace_entry ent; - void *ctx; - void *req; - u64 user_data; - int fd; - char __data[0]; -}; - -struct trace_event_raw_io_uring_queue_async_work { - struct trace_entry ent; - void *ctx; - void *req; - u64 user_data; - u8 opcode; - long long unsigned int flags; - struct io_wq_work *work; - int rw; - u32 __data_loc_op_str; - char __data[0]; -}; - -struct trace_event_raw_io_uring_defer { - struct trace_entry ent; - void *ctx; - void *req; - long long unsigned int data; - u8 opcode; - u32 __data_loc_op_str; - char __data[0]; -}; - -struct trace_event_raw_io_uring_link { - struct trace_entry ent; - void *ctx; - void *req; - void *target_req; - char __data[0]; -}; - -struct trace_event_raw_io_uring_cqring_wait { - struct trace_entry ent; - void *ctx; - int min_events; - char __data[0]; -}; - -struct trace_event_raw_io_uring_fail_link { - struct trace_entry ent; - void *ctx; - void *req; - long long unsigned int user_data; - u8 opcode; - void *link; - u32 __data_loc_op_str; - char __data[0]; -}; - -struct trace_event_raw_io_uring_complete { - struct trace_entry ent; - void *ctx; - void *req; - u64 user_data; - int res; - unsigned int cflags; - u64 extra1; - u64 extra2; - char __data[0]; -}; - -struct trace_event_raw_io_uring_submit_req { - struct trace_entry ent; - void *ctx; - void *req; - long long unsigned int user_data; - u8 opcode; - long long unsigned int flags; - bool sq_thread; - u32 __data_loc_op_str; - char __data[0]; -}; - -struct trace_event_raw_io_uring_poll_arm { - struct trace_entry ent; - void *ctx; - void *req; - long long unsigned int user_data; - u8 opcode; - int mask; - int events; - u32 __data_loc_op_str; - char __data[0]; -}; - -struct trace_event_raw_io_uring_task_add { - struct trace_entry ent; - void *ctx; - void *req; - long long unsigned int user_data; - u8 opcode; - int mask; - u32 __data_loc_op_str; - char __data[0]; -}; - -struct trace_event_raw_io_uring_req_failed { - struct trace_entry ent; - void *ctx; - void *req; - long long unsigned int user_data; - u8 opcode; - u8 flags; - u8 ioprio; - u64 off; - u64 addr; - u32 len; - u32 op_flags; - u16 buf_index; - u16 personality; - u32 file_index; - u64 pad1; - u64 addr3; - int error; - u32 __data_loc_op_str; - char __data[0]; -}; - -struct trace_event_raw_io_uring_cqe_overflow { - struct trace_entry ent; - void *ctx; - long long unsigned int user_data; - s32 res; - u32 cflags; - void *ocqe; - char __data[0]; -}; - -struct trace_event_raw_io_uring_task_work_run { - struct trace_entry ent; - void *tctx; - unsigned int count; - char __data[0]; -}; - -struct trace_event_raw_io_uring_short_write { - struct trace_entry ent; - void *ctx; - u64 fpos; - u64 wanted; - u64 got; - char __data[0]; -}; - -struct trace_event_raw_io_uring_local_work_run { - struct trace_entry ent; - void *ctx; - int count; - unsigned int loops; - char __data[0]; -}; - -struct trace_event_data_offsets_io_uring_create {}; - -struct trace_event_data_offsets_io_uring_register {}; - -struct trace_event_data_offsets_io_uring_file_get {}; - -struct trace_event_data_offsets_io_uring_queue_async_work { - u32 op_str; - const void *op_str_ptr_; -}; - -struct trace_event_data_offsets_io_uring_defer { - u32 op_str; - const void *op_str_ptr_; -}; - -struct trace_event_data_offsets_io_uring_link {}; - -struct trace_event_data_offsets_io_uring_cqring_wait {}; - -struct trace_event_data_offsets_io_uring_fail_link { - u32 op_str; - const void *op_str_ptr_; -}; - -struct trace_event_data_offsets_io_uring_complete {}; - -struct trace_event_data_offsets_io_uring_submit_req { - u32 op_str; - const void *op_str_ptr_; -}; - -struct trace_event_data_offsets_io_uring_poll_arm { - u32 op_str; - const void *op_str_ptr_; -}; - -struct trace_event_data_offsets_io_uring_task_add { - u32 op_str; - const void *op_str_ptr_; -}; - -struct trace_event_data_offsets_io_uring_req_failed { - u32 op_str; - const void *op_str_ptr_; -}; - -struct trace_event_data_offsets_io_uring_cqe_overflow {}; - -struct trace_event_data_offsets_io_uring_task_work_run {}; - -struct trace_event_data_offsets_io_uring_short_write {}; - -struct trace_event_data_offsets_io_uring_local_work_run {}; - -typedef void (*btf_trace_io_uring_create)(void *, int, void *, u32, u32, u32); - -typedef void (*btf_trace_io_uring_register)(void *, void *, unsigned int, unsigned int, unsigned int, long int); - -typedef void (*btf_trace_io_uring_file_get)(void *, struct io_kiocb *, int); - -typedef void (*btf_trace_io_uring_queue_async_work)(void *, struct io_kiocb *, int); - -typedef void (*btf_trace_io_uring_defer)(void *, struct io_kiocb *); - -typedef void (*btf_trace_io_uring_link)(void *, struct io_kiocb *, struct io_kiocb *); - -typedef void (*btf_trace_io_uring_cqring_wait)(void *, void *, int); - -typedef void (*btf_trace_io_uring_fail_link)(void *, struct io_kiocb *, struct io_kiocb *); - -typedef void (*btf_trace_io_uring_complete)(void *, struct io_ring_ctx *, void *, struct io_uring_cqe *); - -typedef void (*btf_trace_io_uring_submit_req)(void *, struct io_kiocb *); - -typedef void (*btf_trace_io_uring_poll_arm)(void *, struct io_kiocb *, int, int); - -typedef void (*btf_trace_io_uring_task_add)(void *, struct io_kiocb *, int); - -typedef void (*btf_trace_io_uring_req_failed)(void *, const struct io_uring_sqe *, struct io_kiocb *, int); - -typedef void (*btf_trace_io_uring_cqe_overflow)(void *, void *, long long unsigned int, s32, u32, void *); - -typedef void (*btf_trace_io_uring_task_work_run)(void *, void *, unsigned int); - -typedef void (*btf_trace_io_uring_short_write)(void *, void *, u64, u64, u64); - -typedef void (*btf_trace_io_uring_local_work_run)(void *, void *, int, unsigned int); - -enum { - IO_IMU_DEST = 1, - IO_IMU_SOURCE = 2, -}; - -struct io_cold_def { - const char *name; - void (*sqe_copy)(struct io_kiocb *); - void (*cleanup)(struct io_kiocb *); - void (*fail)(struct io_kiocb *); -}; - -struct io_defer_entry { - struct list_head list; - struct io_kiocb *req; -}; - -struct ext_arg { - size_t argsz; - struct timespec64 ts; - const sigset_t *sig; - ktime_t min_time; - bool ts_set; - bool iowait; -}; - -struct io_tctx_exit { - struct callback_head task_work; - struct completion completion; - struct io_ring_ctx *ctx; -}; - -struct io_task_cancel { - struct io_uring_task *tctx; - bool all; -}; - -struct creds; - -struct io_poll_update { - struct file *file; - u64 old_user_data; - u64 new_user_data; - __poll_t events; - bool update_events; - bool update_user_data; -}; - -struct io_poll_table { - struct poll_table_struct pt; - struct io_kiocb *req; - int nr_entries; - int error; - bool owning; - __poll_t result_mask; -}; - -enum { - IOU_POLL_DONE = 0, - IOU_POLL_NO_ACTION = 1, - IOU_POLL_REMOVE_POLL_USE_RES = 2, - IOU_POLL_REISSUE = 3, - IOU_POLL_REQUEUE = 4, -}; - -enum { - IO_SQ_THREAD_SHOULD_STOP = 0, - IO_SQ_THREAD_SHOULD_PARK = 1, -}; - -struct io_sq_time { - bool started; - u64 usec; -}; - -struct io_sync { - struct file *file; - loff_t len; - loff_t off; - int flags; - int mode; -}; - -struct io_timeout_data { - struct io_kiocb *req; - struct hrtimer timer; - struct timespec64 ts; - enum hrtimer_mode mode; - u32 flags; -}; - -struct io_timeout { - struct file *file; - u32 off; - u32 target_seq; - u32 repeats; - struct list_head list; - struct io_kiocb *head; - struct io_kiocb *prev; -}; - -struct io_timeout_rem { - struct file *file; - u64 addr; - struct timespec64 ts; - u32 flags; - bool ltimeout; -}; - -struct io_ftrunc { - struct file *file; - loff_t len; -}; - -struct io_uring_zcrx_rqe { - __u64 off; - __u32 len; - __u32 __pad; -}; - -struct io_uring_zcrx_cqe { - __u64 off; - __u64 __pad; -}; - -struct io_uring_zcrx_offsets { - __u32 head; - __u32 tail; - __u32 rqes; - __u32 __resv2; - __u64 __resv[2]; -}; - -enum io_uring_zcrx_area_flags { - IORING_ZCRX_AREA_DMABUF = 1, -}; - -struct io_uring_zcrx_area_reg { - __u64 addr; - __u64 len; - __u64 rq_area_token; - __u32 flags; - __u32 dmabuf_fd; - __u64 __resv2[2]; -}; - -struct io_uring_zcrx_ifq_reg { - __u32 if_idx; - __u32 if_rxq; - __u32 rq_entries; - __u32 flags; - __u64 area_ptr; - __u64 region_ptr; - struct io_uring_zcrx_offsets offsets; - __u32 zcrx_id; - __u32 __resv2; - __u64 __resv[3]; -}; - -struct rps_map { - unsigned int len; - struct callback_head rcu; - u16 cpus[0]; -}; - -struct rps_dev_flow { - u16 cpu; - u16 filter; - unsigned int last_qtail; - u32 hash; -}; - -struct rps_dev_flow_table { - u8 log; - struct callback_head rcu; - struct rps_dev_flow flows[0]; -}; - -struct io_zcrx_mem { - long unsigned int size; - bool is_dmabuf; - struct page **pages; - long unsigned int nr_folios; - struct sg_table page_sg_table; - long unsigned int account_pages; - struct dma_buf_attachment *attach; - struct dma_buf *dmabuf; - struct sg_table *sgt; - long unsigned int dmabuf_offset; -}; - -struct io_zcrx_ifq; - -struct io_zcrx_area { - struct net_iov_area nia; - struct io_zcrx_ifq *ifq; - atomic_t *user_refs; - bool is_mapped; - u16 area_id; - long: 64; - long: 64; - spinlock_t freelist_lock; - u32 free_count; - u32 *freelist; - struct io_zcrx_mem mem; - long: 64; - long: 64; - long: 64; -}; - -struct io_zcrx_ifq { - struct io_ring_ctx *ctx; - struct io_zcrx_area *area; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - spinlock_t rq_lock; - struct io_uring *rq_ring; - struct io_uring_zcrx_rqe *rqes; - u32 cached_rq_head; - u32 rq_entries; - u32 if_rxq; - struct device *dev; - struct net_device *netdev; - netdevice_tracker netdev_tracker; - spinlock_t lock; - struct mutex dma_lock; - struct io_mapped_region region; - long: 64; -}; - -struct io_zcrx_args { - struct io_kiocb *req; - struct io_zcrx_ifq *ifq; - struct socket *sock; - unsigned int nr_skbs; -}; - -struct io_copy_cache { - struct page *page; - long unsigned int offset; - size_t size; -}; - -struct once_work { - struct work_struct work; - struct static_key_true *key; - struct module *module; -}; - -struct reciprocal_value_adv { - u32 m; - u8 sh; - u8 exp; - bool is_wide_m; -}; - -struct chacha_state { - u32 x[16]; -}; - -enum chacha_constants { - CHACHA_CONSTANT_EXPA = 1634760805, - CHACHA_CONSTANT_ND_3 = 857760878, - CHACHA_CONSTANT_2_BY = 2036477234, - CHACHA_CONSTANT_TE_K = 1797285236, -}; - -struct karatsuba_ctx { - struct karatsuba_ctx *next; - mpi_ptr_t tspace; - mpi_size_t tspace_size; - mpi_ptr_t tp; - mpi_size_t tp_size; -}; - -enum blake2s_lengths { - BLAKE2S_BLOCK_SIZE = 64, - BLAKE2S_HASH_SIZE = 32, - BLAKE2S_KEY_SIZE = 32, - BLAKE2S_128_HASH_SIZE = 16, - BLAKE2S_160_HASH_SIZE = 20, - BLAKE2S_224_HASH_SIZE = 28, - BLAKE2S_256_HASH_SIZE = 32, -}; - -struct blake2s_state { - u32 h[8]; - u32 t[2]; - u32 f[2]; - u8 buf[64]; - unsigned int buflen; - unsigned int outlen; -}; - -struct vdso_rng_data { - u64 generation; - u8 is_ready; -}; - -struct interval_tree_span_iter { - struct interval_tree_node *nodes[2]; - long unsigned int first_index; - long unsigned int last_index; - union { - long unsigned int start_hole; - long unsigned int start_used; - }; - union { - long unsigned int last_hole; - long unsigned int last_used; - }; - int is_hole; -}; - -struct packed_field_u8 { - u8 startbit; - u8 endbit; - u8 offset; - u8 size; -}; - -struct packed_field_u16 { - u16 startbit; - u16 endbit; - u16 offset; - u16 size; -}; - -enum packing_op { - PACK = 0, - UNPACK = 1, -}; - -struct genpool_data_align { - int align; -}; - -struct genpool_data_fixed { - long unsigned int offset; -}; - -typedef enum { - ZSTD_noDict = 0, - ZSTD_extDict = 1, - ZSTD_dictMatchState = 2, - ZSTD_dedicatedDictSearch = 3, -} ZSTD_dictMode_e; - -typedef U64 ZSTD_VecMask; - -typedef enum { - search_hashChain = 0, - search_binaryTree = 1, - search_rowHash = 2, -} searchMethod_e; - -struct cpu_rmap { - struct kref refcount; - u16 size; - void **obj; - struct { - u16 index; - u16 dist; - } near[0]; -}; - -struct irq_glue { - struct irq_affinity_notify notify; - struct cpu_rmap *rmap; - u16 index; -}; - -union handle_parts { - depot_stack_handle_t handle; - struct { - u32 pool_index_plus_1: 17; - u32 offset: 10; - u32 extra: 5; - }; -}; - -struct stack_record { - struct list_head hash_list; - u32 hash; - u32 size; - union handle_parts handle; - refcount_t count; - union { - long unsigned int entries[64]; - struct { - struct list_head free_list; - long unsigned int rcu_state; - }; - }; -}; - -typedef u32 depot_flags_t; - -enum depot_counter_id { - DEPOT_COUNTER_REFD_ALLOCS = 0, - DEPOT_COUNTER_REFD_FREES = 1, - DEPOT_COUNTER_REFD_INUSE = 2, - DEPOT_COUNTER_FREELIST_SIZE = 3, - DEPOT_COUNTER_PERSIST_COUNT = 4, - DEPOT_COUNTER_PERSIST_BYTES = 5, - DEPOT_COUNTER_COUNT = 6, -}; - -struct node_groups { - unsigned int id; - union { - unsigned int ngroups; - unsigned int ncpus; - }; -}; - -struct pldmfw_record { - struct list_head entry; - struct list_head descs; - const u8 *version_string; - u8 version_type; - u8 version_len; - u16 package_data_len; - u32 device_update_flags; - const u8 *package_data; - long unsigned int *component_bitmap; - u16 component_bitmap_len; -}; - -struct pldmfw_desc_tlv { - struct list_head entry; - const u8 *data; - u16 type; - u16 size; -}; - -struct pldmfw_component { - struct list_head entry; - u16 classification; - u16 identifier; - u16 options; - u16 activation_method; - u32 comparison_stamp; - u32 component_size; - const u8 *component_data; - const u8 *version_string; - u8 version_type; - u8 version_len; - u8 index; -}; - -enum pldmfw_update_mode { - PLDMFW_UPDATE_MODE_FULL = 0, - PLDMFW_UPDATE_MODE_SINGLE_COMPONENT = 1, -}; - -struct pldmfw_ops; - -struct pldmfw { - const struct pldmfw_ops *ops; - struct device *dev; - u16 component_identifier; - enum pldmfw_update_mode mode; -}; - -struct pldmfw_ops { - bool (*match_record)(struct pldmfw *, struct pldmfw_record *); - int (*send_package_data)(struct pldmfw *, const u8 *, u16); - int (*send_component_table)(struct pldmfw *, struct pldmfw_component *, u8); - int (*flash_component)(struct pldmfw *, struct pldmfw_component *); - int (*finalize_update)(struct pldmfw *); -}; - -struct __pldm_timestamp { - u8 b[13]; -}; - -struct __pldm_header { - uuid_t id; - u8 revision; - __le16 size; - struct __pldm_timestamp release_date; - __le16 component_bitmap_len; - u8 version_type; - u8 version_len; - u8 version_string[0]; -} __attribute__((packed)); - -struct __pldmfw_record_info { - __le16 record_len; - u8 descriptor_count; - __le32 device_update_flags; - u8 version_type; - u8 version_len; - __le16 package_data_len; - u8 variable_record_data[0]; -} __attribute__((packed)); - -struct __pldmfw_desc_tlv { - __le16 type; - __le16 size; - u8 data[0]; -}; - -struct __pldmfw_record_area { - u8 record_count; - u8 records[0]; -}; - -struct __pldmfw_component_info { - __le16 classification; - __le16 identifier; - __le32 comparison_stamp; - __le16 options; - __le16 activation_method; - __le32 location_offset; - __le32 size; - u8 version_type; - u8 version_len; - u8 version_string[0]; -} __attribute__((packed)); - -struct __pldmfw_component_area { - __le16 component_image_count; - u8 components[0]; -}; - -struct pldmfw_priv { - struct pldmfw *context; - const struct firmware *fw; - size_t offset; - struct list_head records; - struct list_head components; - const struct __pldm_header *header; - u16 total_header_size; - u16 component_bitmap_len; - u16 bitmap_size; - u16 component_count; - const u8 *component_start; - const u8 *record_start; - u8 record_count; - u32 header_crc; - struct pldmfw_record *matching_record; -}; - -struct pldm_pci_record_id { - int vendor; - int device; - int subsystem_vendor; - int subsystem_device; -}; - -struct phy_configure_opts_mipi_dphy { - unsigned int clk_miss; - unsigned int clk_post; - unsigned int clk_pre; - unsigned int clk_prepare; - unsigned int clk_settle; - unsigned int clk_term_en; - unsigned int clk_trail; - unsigned int clk_zero; - unsigned int d_term_en; - unsigned int eot; - unsigned int hs_exit; - unsigned int hs_prepare; - unsigned int hs_settle; - unsigned int hs_skip; - unsigned int hs_trail; - unsigned int hs_zero; - unsigned int init; - unsigned int lpx; - unsigned int ta_get; - unsigned int ta_go; - unsigned int ta_sure; - unsigned int wakeup; - long unsigned int hs_clk_rate; - long unsigned int lp_clk_rate; - unsigned char lanes; -}; - -struct dev_pin_info { - struct pinctrl *p; - struct pinctrl_state *default_state; - struct pinctrl_state *init_state; - struct pinctrl_state *sleep_state; - struct pinctrl_state *idle_state; -}; - -struct pinctrl_maps { - struct list_head node; - const struct pinctrl_map *maps; - unsigned int num_maps; -}; - -struct pctldev; - -struct _gpiochip_for_each_data { - const char **label; - unsigned int *i; -}; - -typedef struct _gpiochip_for_each_data class__gpiochip_for_each_data_t; - -enum { - INTEL_GPIO_BASE_ZERO = -2, - INTEL_GPIO_BASE_NOMAP = -1, - INTEL_GPIO_BASE_MATCH = 0, -}; - -struct intel_pad_context___2; - -struct intel_community_context___2; - -struct intel_pinctrl_context___2 { - struct intel_pad_context___2 *pads; - struct intel_community_context___2 *communities; -}; - -struct intel_pad_context___2 { - u32 padcfg0; - u32 padcfg1; - u32 padcfg2; -}; - -struct intel_community_context___2 { - u32 *intmask; - u32 *hostown; -}; - -struct intel_pinctrl___2 { - struct device *dev; - raw_spinlock_t lock; - struct pinctrl_desc pctldesc; - struct pinctrl_dev *pctldev; - struct gpio_chip chip; - const struct intel_pinctrl_soc_data *soc; - struct intel_community *communities; - size_t ncommunities; - struct intel_pinctrl_context___2 context; - int irq; -}; - -enum { - PAD_UNLOCKED = 0, - PAD_LOCKED = 1, - PAD_LOCKED_TX = 2, - PAD_LOCKED_FULL = 3, -}; - -enum { - PAD_CONNECT_NONE = 0, - PAD_CONNECT_INPUT = 1, - PAD_CONNECT_OUTPUT = 2, - PAD_CONNECT_FULL = 3, -}; - -enum { - GPIO_SYSFS_LINE_CLASS_ATTR_DIRECTION = 0, - GPIO_SYSFS_LINE_CLASS_ATTR_VALUE = 1, - GPIO_SYSFS_LINE_CLASS_ATTR_EDGE = 2, - GPIO_SYSFS_LINE_CLASS_ATTR_ACTIVE_LOW = 3, - GPIO_SYSFS_LINE_CLASS_ATTR_SENTINEL = 4, - GPIO_SYSFS_LINE_CLASS_ATTR_SIZE = 5, -}; - -enum { - GPIO_SYSFS_LINE_CHIP_ATTR_DIRECTION = 0, - GPIO_SYSFS_LINE_CHIP_ATTR_VALUE = 1, - GPIO_SYSFS_LINE_CHIP_ATTR_SENTINEL = 2, - GPIO_SYSFS_LINE_CHIP_ATTR_SIZE = 3, -}; - -struct gpiod_data { - struct list_head list; - struct gpio_desc *desc; - struct device *dev; - struct mutex mutex; - struct kernfs_node *value_kn; - int irq; - unsigned char irq_flags; - bool direction_can_change; - struct kobject *parent; - struct device_attribute dir_attr; - struct device_attribute val_attr; - struct device_attribute edge_attr; - struct device_attribute active_low_attr; - struct attribute *class_attrs[5]; - struct attribute_group class_attr_group; - const struct attribute_group *class_attr_groups[2]; - struct attribute *chip_attrs[3]; - struct attribute_group chip_attr_group; - const struct attribute_group *chip_attr_groups[2]; -}; - -struct gpiodev_data { - struct list_head exported_lines; - struct gpio_device *gdev; - struct device *cdev_id; - struct device *cdev_base; -}; - -struct acpi_gpiolib_dmi_quirk { - bool no_edge_events_on_boot; - char *ignore_wake; - char *ignore_interrupt; -}; - -struct tps65910_sleep_keepon_data { - unsigned int therm_keepon: 1; - unsigned int clkout32k_keepon: 1; - unsigned int i2chs_keepon: 1; -}; - -struct tps65910_board { - int gpio_base; - int irq; - int irq_base; - int vmbch_threshold; - int vmbch2_threshold; - bool en_ck32k_xtal; - bool en_dev_slp; - bool pm_off; - struct tps65910_sleep_keepon_data slp_keepon; - bool en_gpio_sleep[9]; - long unsigned int regulator_ext_sleep_control[14]; - struct regulator_init_data *tps65910_pmic_init_data[14]; -}; - -struct tps65910 { - struct device *dev; - struct i2c_client *i2c_client; - struct regmap *regmap; - long unsigned int id; - struct tps65910_board *of_plat_data; - int chip_irq; - struct regmap_irq_chip_data *irq_data; -}; - -struct tps65910_gpio { - struct gpio_chip gpio_chip; - struct tps65910 *tps65910; -}; - -enum led_default_state { - LEDS_DEFSTATE_OFF = 0, - LEDS_DEFSTATE_ON = 1, - LEDS_DEFSTATE_KEEP = 2, -}; - -struct led_init_data { - struct fwnode_handle *fwnode; - const char *default_label; - const char *devicename; - bool devname_mandatory; -}; - -struct led_properties { - u32 color; - bool color_present; - const char *function; - u32 func_enum; - bool func_enum_present; - const char *label; -}; - -struct mc_subled { - unsigned int color_index; - unsigned int brightness; - unsigned int intensity; - unsigned int channel; -}; - -struct led_classdev_mc { - struct led_classdev led_cdev; - unsigned int num_colors; - struct mc_subled *subled_info; -}; - -struct pci_dynid { - struct list_head node; - struct pci_device_id id; -}; - -struct drv_dev_and_id { - struct pci_driver *drv; - struct pci_dev *dev; - const struct pci_device_id *id; -}; - -struct pcim_iomap_devres { - void *table[17]; -}; - -struct pcim_intx_devres { - int orig_intx; -}; - -enum pcim_addr_devres_type { - PCIM_ADDR_DEVRES_TYPE_INVALID = 0, - PCIM_ADDR_DEVRES_TYPE_REGION = 1, - PCIM_ADDR_DEVRES_TYPE_REGION_MAPPING = 2, - PCIM_ADDR_DEVRES_TYPE_MAPPING = 3, -}; - -struct pcim_addr_devres { - enum pcim_addr_devres_type type; - void *baseaddr; - long unsigned int offset; - long unsigned int len; - int bar; -}; - -struct msix_entry { - u32 vector; - u16 entry; -}; - -struct walk_rcec_data { - struct pci_dev *rcec; - int (*user_callback)(struct pci_dev *, void *); - void *user_data; -}; - -enum { - CPER_SEV_RECOVERABLE = 0, - CPER_SEV_FATAL = 1, - CPER_SEV_CORRECTED = 2, - CPER_SEV_INFORMATIONAL = 3, -}; - -struct aer_info { - u64 dev_cor_errs[16]; - u64 dev_fatal_errs[32]; - u64 dev_nonfatal_errs[32]; - u64 dev_total_cor_errs; - u64 dev_total_fatal_errs; - u64 dev_total_nonfatal_errs; - u64 rootport_total_cor_errs; - u64 rootport_total_fatal_errs; - u64 rootport_total_nonfatal_errs; - struct ratelimit_state correctable_ratelimit; - struct ratelimit_state nonfatal_ratelimit; -}; - -struct pcie_tlp_log { - union { - u32 dw[14]; - struct { - u32 _do_not_use[4]; - u32 prefix[4]; - }; - }; - u8 header_len; - bool flit; -}; - -struct aer_capability_regs { - u32 header; - u32 uncor_status; - u32 uncor_mask; - u32 uncor_severity; - u32 cor_status; - u32 cor_mask; - u32 cap_control; - struct pcie_tlp_log header_log; - u32 root_command; - u32 root_status; - u16 cor_err_source; - u16 uncor_err_source; -}; - -struct aer_err_info { - struct pci_dev *dev[5]; - int ratelimit_print[5]; - int error_dev_num; - const char *level; - unsigned int id: 16; - unsigned int severity: 2; - unsigned int root_ratelimit_print: 1; - unsigned int __pad1: 4; - unsigned int multi_error_valid: 1; - unsigned int first_error: 5; - unsigned int __pad2: 2; - unsigned int tlp_header_valid: 1; - unsigned int status; - unsigned int mask; - struct pcie_tlp_log tlp; -}; - -struct aer_err_source { - u32 status; - u32 id; -}; - -struct aer_rpc { - struct pci_dev *rpd; - struct { - union { - struct __kfifo kfifo; - struct aer_err_source *type; - const struct aer_err_source *const_type; - char (*rectype)[0]; - struct aer_err_source *ptr; - const struct aer_err_source *ptr_const; - }; - struct aer_err_source buf[128]; - } aer_fifo; -}; - -struct aer_recover_entry { - u8 bus; - u8 devfn; - u16 domain; - int severity; - struct aer_capability_regs *regs; -}; - -struct pci_filp_private { - enum pci_mmap_state mmap_state; - int write_combine; -}; - -enum pci_irq_reroute_variant { - INTEL_IRQ_REROUTE_VARIANT = 1, - MAX_IRQ_REROUTE_VARIANTS = 3, -}; - -struct pci_fixup { - u16 vendor; - u16 device; - u32 class; - unsigned int class_shift; - int hook_offset; -}; - -enum { - NVME_AEN_BIT_NS_ATTR = 8, - NVME_AEN_BIT_FW_ACT = 9, - NVME_AEN_BIT_ANA_CHANGE = 11, - NVME_AEN_BIT_DISC_CHANGE = 31, -}; - -enum { - SWITCHTEC_GAS_MRPC_OFFSET = 0, - SWITCHTEC_GAS_TOP_CFG_OFFSET = 4096, - SWITCHTEC_GAS_SW_EVENT_OFFSET = 6144, - SWITCHTEC_GAS_SYS_INFO_OFFSET = 8192, - SWITCHTEC_GAS_FLASH_INFO_OFFSET = 8704, - SWITCHTEC_GAS_PART_CFG_OFFSET = 16384, - SWITCHTEC_GAS_NTB_OFFSET = 65536, - SWITCHTEC_GAS_PFF_CSR_OFFSET = 1261568, -}; - -enum { - SWITCHTEC_NTB_REG_INFO_OFFSET = 0, - SWITCHTEC_NTB_REG_CTRL_OFFSET = 16384, - SWITCHTEC_NTB_REG_DBMSG_OFFSET = 409600, -}; - -struct nt_partition_info { - u32 xlink_enabled; - u32 target_part_low; - u32 target_part_high; - u32 reserved; -}; - -struct ntb_info_regs { - u8 partition_count; - u8 partition_id; - u16 reserved1; - u64 ep_map; - u16 requester_id; - u16 reserved2; - u32 reserved3[4]; - struct nt_partition_info ntp_info[48]; -} __attribute__((packed)); - -struct ntb_ctrl_regs { - u32 partition_status; - u32 partition_op; - u32 partition_ctrl; - u32 bar_setup; - u32 bar_error; - u16 lut_table_entries; - u16 lut_table_offset; - u32 lut_error; - u16 req_id_table_size; - u16 req_id_table_offset; - u32 req_id_error; - u32 reserved1[7]; - struct { - u32 ctl; - u32 win_size; - u64 xlate_addr; - } bar_entry[6]; - struct { - u32 win_size; - u32 reserved[3]; - } bar_ext_entry[6]; - u32 reserved2[192]; - u32 req_id_table[512]; - u32 reserved3[256]; - u64 lut_entry[512]; -}; - -struct pci_dev_reset_methods { - u16 vendor; - u16 device; - int (*reset)(struct pci_dev *, bool); -}; - -struct pci_dev_acs_enabled { - u16 vendor; - u16 device; - int (*acs_enabled)(struct pci_dev *, u16); -}; - -struct pci_dev_acs_ops { - u16 vendor; - u16 device; - int (*enable_acs)(struct pci_dev *); - int (*disable_acs_redir)(struct pci_dev *); -}; - -struct acpi_pci_root { - struct acpi_device *device; - struct pci_bus *bus; - u16 segment; - int bridge_type; - struct resource secondary; - u32 osc_support_set; - u32 osc_control_set; - u32 osc_ext_support_set; - u32 osc_ext_control_set; - phys_addr_t mcfg_addr; -}; - -struct acpiphp_slot; - -struct slot___3 { - struct hotplug_slot hotplug_slot; - struct acpiphp_slot *acpi_slot; - unsigned int sun; -}; - -struct acpiphp_slot { - struct list_head node; - struct pci_bus *bus; - struct list_head funcs; - struct slot___3 *slot; - u8 device; - u32 flags; -}; - -struct acpiphp_context; - -struct acpiphp_bridge { - struct list_head list; - struct list_head slots; - struct kref ref; - struct acpiphp_context *context; - int nr_slots; - struct pci_bus *pci_bus; - struct pci_dev *pci_dev; - bool is_going_away; -}; - -struct acpiphp_func { - struct acpiphp_bridge *parent; - struct acpiphp_slot *slot; - struct list_head sibling; - u8 function; - u32 flags; -}; - -struct acpiphp_context { - struct acpi_hotplug_context hp; - struct acpiphp_func func; - struct acpiphp_bridge *bridge; - unsigned int refcount; -}; - -struct acpiphp_root_context { - struct acpi_hotplug_context hp; - struct acpiphp_bridge *root_bridge; -}; - -struct vga_device { - struct list_head list; - struct pci_dev *pdev; - unsigned int decodes; - unsigned int owns; - unsigned int locks; - unsigned int io_lock_cnt; - unsigned int mem_lock_cnt; - unsigned int io_norm_cnt; - unsigned int mem_norm_cnt; - bool bridge_has_one_vga; - bool is_firmware_default; - unsigned int (*set_decode)(struct pci_dev *, bool); -}; - -struct vga_arb_user_card { - struct pci_dev *pdev; - unsigned int mem_cnt; - unsigned int io_cnt; -}; - -struct vga_arb_private { - struct list_head list; - struct pci_dev *target; - struct vga_arb_user_card cards[16]; - spinlock_t lock; -}; - -struct dw_pcie_ob_atu_cfg { - int index; - int type; - u8 func_no; - u8 code; - u8 routing; - u64 parent_bus_addr; - u64 pci_addr; - u64 size; -}; - -enum rio_device_state { - RIO_DEVICE_INITIALIZING = 0, - RIO_DEVICE_RUNNING = 1, - RIO_DEVICE_GONE = 2, - RIO_DEVICE_SHUTDOWN = 3, -}; - -struct rio_dbell { - struct list_head node; - struct resource *res; - void (*dinb)(struct rio_mport *, void *, u16, u16, u16); - void *dev_id; -}; - -enum rio_write_type { - RDW_DEFAULT = 0, - RDW_ALL_NWRITE = 1, - RDW_ALL_NWRITE_R = 2, - RDW_LAST_NWRITE_R = 3, -}; - -struct rio_dma_ext { - u16 destid; - u64 rio_addr; - u8 rio_addr_u; - enum rio_write_type wr_type; -}; - -struct rio_dma_data { - struct scatterlist *sg; - unsigned int sg_len; - u64 rio_addr; - u8 rio_addr_u; - enum rio_write_type wr_type; -}; - -struct rio_scan_node { - int mport_id; - struct list_head node; - struct rio_scan *ops; -}; - -struct rio_pwrite { - struct list_head node; - int (*pwcback)(struct rio_mport *, void *, union rio_pw_msg *, int); - void *context; -}; - -struct rio_disc_work { - struct work_struct work; - struct rio_mport *mport; -}; - -struct vgastate { - void *vgabase; - long unsigned int membase; - __u32 memsize; - __u32 flags; - __u32 depth; - __u32 num_attr; - __u32 num_crtc; - __u32 num_gfx; - __u32 num_seq; - void *vidstate; -}; - -struct fb_cmap_user { - __u32 start; - __u32 len; - __u16 *red; - __u16 *green; - __u16 *blue; - __u16 *transp; -}; - -struct fb_fix_screeninfo32 { - char id[16]; - compat_caddr_t smem_start; - u32 smem_len; - u32 type; - u32 type_aux; - u32 visual; - u16 xpanstep; - u16 ypanstep; - u16 ywrapstep; - u32 line_length; - compat_caddr_t mmio_start; - u32 mmio_len; - u32 accel; - u16 reserved[3]; -}; - -struct fb_cmap32 { - u32 start; - u32 len; - compat_caddr_t red; - compat_caddr_t green; - compat_caddr_t blue; - compat_caddr_t transp; -}; - -typedef unsigned int u_int; - -struct fb_con2fbmap { - __u32 console; - __u32 framebuffer; -}; - -enum { - FBCON_LOGO_CANSHOW = -1, - FBCON_LOGO_DRAW = -2, - FBCON_LOGO_DONTSHOW = -3, -}; - -enum ipmi_addr_src { - SI_INVALID = 0, - SI_HOTMOD = 1, - SI_HARDCODED = 2, - SI_SPMI = 3, - SI_ACPI = 4, - SI_SMBIOS = 5, - SI_PCI = 6, - SI_DEVICETREE = 7, - SI_PLATFORM = 8, - SI_LAST = 9, -}; - -enum ipmi_plat_interface_type { - IPMI_PLAT_IF_SI = 0, - IPMI_PLAT_IF_SSIF = 1, -}; - -struct ipmi_plat_data { - enum ipmi_plat_interface_type iftype; - unsigned int type; - unsigned int space; - long unsigned int addr; - unsigned int regspacing; - unsigned int regsize; - unsigned int regshift; - unsigned int irq; - unsigned int slave_addr; - enum ipmi_addr_src addr_source; -}; - -enum si_type { - SI_TYPE_INVALID = 0, - SI_KCS = 1, - SI_SMIC = 2, - SI_BT = 3, - SI_TYPE_MAX = 4, -}; - -enum ipmi_addr_space { - IPMI_IO_ADDR_SPACE = 0, - IPMI_MEM_ADDR_SPACE = 1, -}; - -struct acpi_handle_list { - u32 count; - acpi_handle *handles; -}; - -enum acpi_predicate { - all_versions = 0, - less_than_or_equal = 1, - equal = 2, - greater_than_or_equal = 3, -}; - -struct acpi_platform_list { - char oem_id[7]; - char oem_table_id[9]; - u32 oem_revision; - char *table; - enum acpi_predicate pred; - char *reason; - u32 data; -}; - -struct acpi_device_bus_id { - const char *bus_id; - struct ida instance_ida; - struct list_head node; -}; - -struct acpi_dev_match_info { - struct acpi_device_id hid[2]; - const char *uid; - s64 hrv; -}; - -struct acpi_data_node { - struct list_head sibling; - const char *name; - acpi_handle handle; - struct fwnode_handle fwnode; - struct fwnode_handle *parent; - struct acpi_device_data data; - struct kobject kobj; - struct completion kobj_done; -}; - -struct acpi_data_node_attr { - struct attribute attr; - ssize_t (*show)(struct acpi_data_node *, char *); - ssize_t (*store)(struct acpi_data_node *, const char *, size_t); -}; - -struct find_child_walk_data { - struct acpi_device *adev; - u64 address; - int score; - bool check_sta; - bool check_children; -}; - -struct acpi_power_register { - u8 descriptor; - u16 length; - u8 space_id; - u8 bit_width; - u8 bit_offset; - u8 access_size; - u64 address; -} __attribute__((packed)); - -struct acpi_processor_errata { - u8 smp; - struct { - u8 throttle: 1; - u8 fdma: 1; - u8 reserved: 6; - u32 bmisx; - } piix4; -}; - -struct acpi_pci_routing_table { - u32 length; - u32 pin; - u64 address; - u32 source_index; - union { - char pad[4]; - struct { - struct {} __Empty_source; - char source[0]; - }; - }; -}; - -struct acpi_prt_entry { - struct acpi_pci_id id; - u8 pin; - acpi_handle link; - u32 index; -}; - -struct prt_quirk { - const struct dmi_system_id *system; - unsigned int segment; - unsigned int bus; - unsigned int device; - unsigned char pin; - const char *source; - const char *actual_source; -}; - -struct acpi_ged_device { - struct device *dev; - struct list_head event_list; -}; - -struct acpi_ged_event { - struct list_head node; - struct device *dev; - unsigned int gsi; - unsigned int irq; - acpi_handle handle; -}; - -typedef u64 acpi_integer; - -struct acpi_prmt_module_info { - u16 revision; - u16 length; - u8 module_guid[16]; - u16 major_rev; - u16 minor_rev; - u16 handler_info_count; - u32 handler_info_offset; - u64 mmio_list_pointer; -} __attribute__((packed)); - -struct acpi_prmt_handler_info { - u16 revision; - u16 length; - u8 handler_guid[16]; - u64 handler_address; - u64 static_data_buffer_address; - u64 acpi_param_buffer_address; -} __attribute__((packed)); - -struct prm_mmio_addr_range { - u64 phys_addr; - u64 virt_addr; - u32 length; -} __attribute__((packed)); - -struct prm_mmio_info { - u64 mmio_count; - struct prm_mmio_addr_range addr_ranges[0]; -}; - -struct prm_buffer { - u8 prm_status; - u64 efi_status; - u8 prm_cmd; - guid_t handler_guid; -} __attribute__((packed)); - -struct prm_context_buffer { - char signature[4]; - u16 revision; - u16 reserved; - guid_t identifier; - u64 static_data_buffer; - struct prm_mmio_info *mmio_ranges; -}; - -struct prm_handler_info { - efi_guid_t guid; - efi_status_t (*handler_addr)(u64, void *); - u64 static_data_buffer_addr; - u64 acpi_param_buffer_addr; - struct list_head handler_list; -}; - -struct prm_module_info { - guid_t guid; - u16 major_rev; - u16 minor_rev; - u16 handler_count; - struct prm_mmio_info *mmio_info; - bool updatable; - struct list_head module_list; - struct prm_handler_info handlers[0]; -}; - -struct acpi_subtbl_hdr_16 { - u16 type; - u16 length; -}; - -struct acpi_table_mrrm { - struct acpi_table_header header; - u8 max_mem_region; - u8 flags; - u8 reserved[26]; - u8 memory_range_entry[0]; -}; - -struct acpi_mrrm_mem_range_entry { - struct acpi_subtbl_hdr_16 header; - u32 reserved0; - u64 addr_base; - u64 addr_len; - u16 region_id_flags; - u8 local_region_id; - u8 remote_region_id; - u32 reserved1; -}; - -struct mrrm_mem_range_entry { - u64 base; - u64 length; - int node; - u8 local_region_id; - u8 remote_region_id; -}; - -typedef acpi_status (*acpi_execute_op)(struct acpi_walk_state *); - -typedef u32 (*acpi_sci_handler)(void *); - -struct acpi_sci_handler_info { - struct acpi_sci_handler_info *next; - acpi_sci_handler address; - void *context; -}; - -struct acpi_mem_mapping { - acpi_physical_address physical_address; - u8 *logical_address; - acpi_size length; - struct acpi_mem_mapping *next_mm; -}; - -struct acpi_mem_space_context { - u32 length; - acpi_physical_address address; - struct acpi_mem_mapping *cur_mm; - struct acpi_mem_mapping *first_mm; -}; - -struct acpi_data_table_mapping { - void *pointer; -}; - -struct acpi_gpe_block_status_context { - struct acpi_gpe_register_info *gpe_skip_register_info; - u8 gpe_skip_mask; - u8 retval; -}; - -struct acpi_predefined_names { - const char *name; - u8 type; - char *val; -}; - -struct acpi_walk_info { - u32 debug_level; - u32 count; - acpi_owner_id owner_id; - u8 display_type; -}; - -enum acpi_return_package_types { - ACPI_PTYPE1_FIXED = 1, - ACPI_PTYPE1_VAR = 2, - ACPI_PTYPE1_OPTION = 3, - ACPI_PTYPE2 = 4, - ACPI_PTYPE2_COUNT = 5, - ACPI_PTYPE2_PKG_COUNT = 6, - ACPI_PTYPE2_FIXED = 7, - ACPI_PTYPE2_MIN = 8, - ACPI_PTYPE2_REV_FIXED = 9, - ACPI_PTYPE2_FIX_VAR = 10, - ACPI_PTYPE2_VAR_VAR = 11, - ACPI_PTYPE2_UUID_PAIR = 12, - ACPI_PTYPE_CUSTOM = 13, -}; - -struct acpi_rw_lock { - void *writer_mutex; - void *reader_mutex; - u32 num_readers; -}; - -struct acpi_get_devices_info { - acpi_walk_callback user_function; - void *context; - const char *hid; -}; - -typedef u16 acpi_rs_length; - -typedef u32 acpi_rsdesc_size; - -typedef enum { - ACPI_TRACE_AML_METHOD = 0, - ACPI_TRACE_AML_OPCODE = 1, - ACPI_TRACE_AML_REGION = 2, -} acpi_trace_event_type; - -typedef acpi_status (*acpi_init_handler)(acpi_handle, u32); - -struct acpi_address_range { - struct acpi_address_range *next; - struct acpi_namespace_node *region_node; - acpi_physical_address start_address; - acpi_physical_address end_address; -}; - -typedef acpi_status (*acpi_walk_aml_callback)(u8 *, u32, u32, u8, void **); - -struct acpi_ged_handler_info { - struct acpi_ged_handler_info *next; - u32 int_id; - struct acpi_namespace_node *evt_method; -}; - -struct history_info { - char *command; - u32 cmd_num; -}; - -typedef struct history_info HISTORY_INFO; - -struct acpi_db_command_info { - const char *name; - u8 min_args; -}; - -struct acpi_db_command_help { - u8 line_count; - char *invocation; - char *description; -}; - -enum acpi_ex_debugger_commands { - CMD_NOT_FOUND = 0, - CMD_NULL = 1, - CMD_ALL = 2, - CMD_ALLOCATIONS = 3, - CMD_ARGS = 4, - CMD_ARGUMENTS = 5, - CMD_BREAKPOINT = 6, - CMD_BUSINFO = 7, - CMD_CALL = 8, - CMD_DEBUG = 9, - CMD_DISASSEMBLE = 10, - CMD_DISASM = 11, - CMD_DUMP = 12, - CMD_EVALUATE = 13, - CMD_EXECUTE = 14, - CMD_EXIT = 15, - CMD_FIELDS = 16, - CMD_FIND = 17, - CMD_GO = 18, - CMD_HANDLERS = 19, - CMD_HELP = 20, - CMD_HELP2 = 21, - CMD_HISTORY = 22, - CMD_HISTORY_EXE = 23, - CMD_HISTORY_LAST = 24, - CMD_INFORMATION = 25, - CMD_INTEGRITY = 26, - CMD_INTO = 27, - CMD_LEVEL = 28, - CMD_LIST = 29, - CMD_LOCALS = 30, - CMD_LOCKS = 31, - CMD_METHODS = 32, - CMD_NAMESPACE = 33, - CMD_NOTIFY = 34, - CMD_OBJECTS = 35, - CMD_OSI = 36, - CMD_OWNER = 37, - CMD_PATHS = 38, - CMD_PREDEFINED = 39, - CMD_PREFIX = 40, - CMD_QUIT = 41, - CMD_REFERENCES = 42, - CMD_RESOURCES = 43, - CMD_RESULTS = 44, - CMD_SET = 45, - CMD_STATS = 46, - CMD_STOP = 47, - CMD_TABLES = 48, - CMD_TEMPLATE = 49, - CMD_TRACE = 50, - CMD_TREE = 51, - CMD_TYPE = 52, -}; - -struct throttling_tstate { - unsigned int cpu; - int target_state; -}; - -struct acpi_processor_throttling_arg { - struct acpi_processor *pr; - int target_state; - bool force; -}; - -struct resource_win { - struct resource res; - resource_size_t offset; -}; - -struct acpi_pci_ioapic { - acpi_handle root_handle; - acpi_handle handle; - u32 gsi_base; - struct resource res; - struct pci_dev *pdev; - struct list_head list; -}; - -struct circ_buf { - char *buf; - int head; - int tail; -}; - -struct acpi_debugger_ops { - int (*create_thread)(acpi_osd_exec_callback, void *); - ssize_t (*write_log)(const char *); - ssize_t (*read_cmd)(char *, size_t); - int (*wait_command_ready)(bool, char *, size_t); - int (*notify_command_complete)(void); -}; - -struct acpi_aml_io { - wait_queue_head_t wait; - long unsigned int flags; - long unsigned int users; - struct mutex lock; - struct task_struct *thread; - char out_buf[4096]; - struct circ_buf out_crc; - char in_buf[4096]; - struct circ_buf in_crc; - acpi_osd_exec_callback function; - void *context; - long unsigned int usages; -}; - -struct acpi_table_bert { - struct acpi_table_header header; - u32 region_length; - u64 address; -}; - -struct acpi_bert_region { - u32 block_status; - u32 raw_data_offset; - u32 raw_data_length; - u32 data_length; - u32 error_severity; -}; - -struct acpi_hest_generic_status { - u32 block_status; - u32 raw_data_offset; - u32 raw_data_length; - u32 data_length; - u32 error_severity; -}; - -enum axp20x_variants { - AXP152_ID = 0, - AXP192_ID = 1, - AXP202_ID = 2, - AXP209_ID = 3, - AXP221_ID = 4, - AXP223_ID = 5, - AXP288_ID = 6, - AXP313A_ID = 7, - AXP323_ID = 8, - AXP717_ID = 9, - AXP803_ID = 10, - AXP806_ID = 11, - AXP809_ID = 12, - AXP813_ID = 13, - AXP15060_ID = 14, - NR_AXP20X_VARIANTS = 15, -}; - -struct axp20x_dev { - struct device *dev; - int irq; - long unsigned int irq_flags; - struct regmap *regmap; - struct regmap_irq_chip_data *regmap_irqc; - enum axp20x_variants variant; - int nr_cells; - const struct mfd_cell *cells; - const struct regmap_config *regmap_cfg; - const struct regmap_irq_chip *regmap_irq_chip; -}; - -struct acpi_table_viot { - struct acpi_table_header header; - u16 node_count; - u16 node_offset; - u8 reserved[8]; -}; - -struct acpi_viot_header { - u8 type; - u8 reserved; - u16 length; -}; - -enum acpi_viot_node_type { - ACPI_VIOT_NODE_PCI_RANGE = 1, - ACPI_VIOT_NODE_MMIO = 2, - ACPI_VIOT_NODE_VIRTIO_IOMMU_PCI = 3, - ACPI_VIOT_NODE_VIRTIO_IOMMU_MMIO = 4, - ACPI_VIOT_RESERVED = 5, -}; - -struct acpi_viot_pci_range { - struct acpi_viot_header header; - u32 endpoint_start; - u16 segment_start; - u16 segment_end; - u16 bdf_start; - u16 bdf_end; - u16 output_node; - u8 reserved[6]; -}; - -struct acpi_viot_mmio { - struct acpi_viot_header header; - u32 endpoint; - u64 base_address; - u16 output_node; - u8 reserved[6]; -}; - -struct acpi_viot_virtio_iommu_pci { - struct acpi_viot_header header; - u16 segment; - u16 bdf; - u8 reserved[8]; -}; - -struct acpi_viot_virtio_iommu_mmio { - struct acpi_viot_header header; - u8 reserved[4]; - u64 base_address; -}; - -struct viot_iommu { - unsigned int offset; - struct fwnode_handle *fwnode; - struct list_head list; -}; - -struct viot_endpoint { - union { - struct { - u16 segment_start; - u16 segment_end; - u16 bdf_start; - u16 bdf_end; - }; - u64 address; - }; - u32 endpoint_id; - struct viot_iommu *viommu; - struct list_head list; -}; - -struct lpss_clk_data { - const char *name; - struct clk *clk; -}; - -enum pwm_polarity { - PWM_POLARITY_NORMAL = 0, - PWM_POLARITY_INVERSED = 1, -}; - -struct pwm_lookup { - struct list_head list; - const char *provider; - unsigned int index; - const char *dev_id; - const char *con_id; - unsigned int period; - enum pwm_polarity polarity; - const char *module; -}; - -enum pxa_ssp_type { - SSP_UNDEFINED = 0, - PXA25x_SSP = 1, - PXA25x_NSSP = 2, - PXA27x_SSP = 3, - PXA3xx_SSP = 4, - PXA168_SSP = 5, - PXA910_SSP = 6, - CE4100_SSP = 7, - MMP2_SSP = 8, - MRFLD_SSP = 9, - QUARK_X1000_SSP = 10, - LPSS_LPT_SSP = 11, - LPSS_BYT_SSP = 12, - LPSS_BSW_SSP = 13, - LPSS_SPT_SSP = 14, - LPSS_BXT_SSP = 15, - LPSS_CNL_SSP = 16, - SSP_MAX = 17, -}; - -struct lpss_private_data; - -struct lpss_device_desc { - unsigned int flags; - const char *clk_con_id; - unsigned int prv_offset; - size_t prv_size_override; - const struct property_entry *properties; - void (*setup)(struct lpss_private_data *); - bool resume_from_noirq; -}; - -struct lpss_private_data { - struct acpi_device *adev; - void *mmio_base; - resource_size_t mmio_size; - unsigned int fixed_clk_rate; - struct clk *clk; - const struct lpss_device_desc *dev_desc; - u32 prv_reg_ctx[9]; -}; - -struct lpss_device_links { - const char *supplier_hid; - const char *supplier_uid; - const char *consumer_hid; - const char *consumer_uid; - u32 flags; - const struct dmi_system_id *dep_missing_ids; -}; - -struct hid_uid { - const char *hid; - const char *uid; -}; - -struct pnp_info_buffer { - char *buffer; - char *curr; - long unsigned int size; - long unsigned int len; - int stop; - int error; -}; - -typedef struct pnp_info_buffer pnp_info_buffer_t; - -struct acpi_vendor_uuid { - u8 subtype; - u8 data[16]; -}; - -struct acpipnp_parse_option_s { - struct pnp_dev *dev; - unsigned int option_flags; -}; - -struct clk_div_table { - unsigned int val; - unsigned int div; -}; - -struct clk_divider { - struct clk_hw hw; - void *reg; - u8 shift; - u8 width; - u16 flags; - const struct clk_div_table *table; - spinlock_t *lock; -}; - -struct clk_multiplier { - struct clk_hw hw; - void *reg; - u8 shift; - u8 width; - u8 flags; - spinlock_t *lock; -}; - -struct clk_mux { - struct clk_hw hw; - void *reg; - const u32 *table; - u32 mask; - u8 shift; - u8 flags; - spinlock_t *lock; -}; - -struct clk_gpio { - struct clk_hw hw; - struct gpio_desc *gpiod; -}; - -struct clk_gated_fixed { - struct clk_gpio clk_gpio; - struct regulator *supply; - long unsigned int rate; -}; - -struct dma_chan_tbl_ent { - struct dma_chan *chan; -}; - -struct dmaengine_unmap_pool { - struct kmem_cache *cache; - const char *name; - mempool_t *pool; - size_t size; -}; - -enum gpd_status { - GENPD_STATE_ON = 0, - GENPD_STATE_OFF = 1, -}; - -enum genpd_notication { - GENPD_NOTIFY_PRE_OFF = 0, - GENPD_NOTIFY_OFF = 1, - GENPD_NOTIFY_PRE_ON = 2, - GENPD_NOTIFY_ON = 3, -}; - -enum genpd_sync_state { - GENPD_SYNC_STATE_OFF = 0, - GENPD_SYNC_STATE_SIMPLE = 1, - GENPD_SYNC_STATE_ONECELL = 2, -}; - -struct dev_power_governor { - bool (*power_down_ok)(struct dev_pm_domain *); - bool (*suspend_ok)(struct device *); -}; - -struct gpd_dev_ops { - int (*start)(struct device *); - int (*stop)(struct device *); -}; - -struct genpd_governor_data { - s64 max_off_time_ns; - bool max_off_time_changed; - ktime_t next_wakeup; - ktime_t next_hrtimer; - ktime_t last_enter; - bool reflect_residency; - bool cached_power_down_ok; - bool cached_power_down_state_idx; -}; - -struct genpd_power_state { - const char *name; - s64 power_off_latency_ns; - s64 power_on_latency_ns; - s64 residency_ns; - u64 usage; - u64 rejected; - u64 above; - u64 below; - struct fwnode_handle *fwnode; - u64 idle_time; - void *data; -}; - -struct genpd_lock_ops; - -struct generic_pm_domain { - struct device dev; - struct dev_pm_domain domain; - struct list_head gpd_list_node; - struct list_head parent_links; - struct list_head child_links; - struct list_head dev_list; - struct dev_power_governor *gov; - struct genpd_governor_data *gd; - struct work_struct power_off_work; - struct fwnode_handle *provider; - bool has_provider; - const char *name; - atomic_t sd_count; - enum gpd_status status; - unsigned int device_count; - unsigned int device_id; - unsigned int suspended_count; - unsigned int prepared_count; - unsigned int performance_state; - cpumask_var_t cpus; - bool synced_poweroff; - bool stay_on; - enum genpd_sync_state sync_state; - int (*power_off)(struct generic_pm_domain *); - int (*power_on)(struct generic_pm_domain *); - struct raw_notifier_head power_notifiers; - struct opp_table *opp_table; - int (*set_performance_state)(struct generic_pm_domain *, unsigned int); - struct gpd_dev_ops dev_ops; - int (*set_hwmode_dev)(struct generic_pm_domain *, struct device *, bool); - bool (*get_hwmode_dev)(struct generic_pm_domain *, struct device *); - int (*attach_dev)(struct generic_pm_domain *, struct device *); - void (*detach_dev)(struct generic_pm_domain *, struct device *); - unsigned int flags; - struct genpd_power_state *states; - void (*free_states)(struct genpd_power_state *, unsigned int); - unsigned int state_count; - unsigned int state_idx; - u64 on_time; - u64 accounting_time; - const struct genpd_lock_ops *lock_ops; - union { - struct mutex mlock; - struct { - spinlock_t slock; - long unsigned int lock_flags; - }; - struct { - raw_spinlock_t raw_slock; - long unsigned int raw_lock_flags; - }; - }; -}; - -struct genpd_lock_ops { - void (*lock)(struct generic_pm_domain *); - void (*lock_nested)(struct generic_pm_domain *, int); - int (*lock_interruptible)(struct generic_pm_domain *); - void (*unlock)(struct generic_pm_domain *); -}; - -struct gpd_link { - struct generic_pm_domain *parent; - struct list_head parent_node; - struct generic_pm_domain *child; - struct list_head child_node; - unsigned int performance_state; - unsigned int prev_performance_state; -}; - -struct gpd_timing_data { - s64 suspend_latency_ns; - s64 resume_latency_ns; - s64 effective_constraint_ns; - ktime_t next_wakeup; - bool constraint_changed; - bool cached_suspend_ok; -}; - -struct generic_pm_domain_data { - struct pm_domain_data base; - struct gpd_timing_data *td; - struct notifier_block nb; - struct notifier_block *power_nb; - int cpu; - unsigned int performance_state; - unsigned int default_pstate; - unsigned int rpm_pstate; - unsigned int opp_token; - bool hw_mode; - bool rpm_always_on; - void *data; -}; - -enum { - VP_MSIX_CONFIG_VECTOR = 0, - VP_MSIX_VQ_VECTOR = 1, -}; - -enum vp_vq_vector_policy { - VP_VQ_VECTOR_POLICY_EACH = 0, - VP_VQ_VECTOR_POLICY_SHARED_SLOW = 1, - VP_VQ_VECTOR_POLICY_SHARED = 2, -}; - -enum hw_protection_action { - HWPROT_ACT_DEFAULT = 0, - HWPROT_ACT_SHUTDOWN = 1, - HWPROT_ACT_REBOOT = 2, -}; - -struct pre_voltage_change_data { - long unsigned int old_uV; - long unsigned int min_uV; - long unsigned int max_uV; -}; - -struct regulator_coupler { - struct list_head list; - int (*attach_regulator)(struct regulator_coupler *, struct regulator_dev *); - int (*detach_regulator)(struct regulator_coupler *, struct regulator_dev *); - int (*balance_voltage)(struct regulator_coupler *, struct regulator_dev *, suspend_state_t); -}; - -struct ww_class { - atomic_long_t stamp; - struct lock_class_key acquire_key; - struct lock_class_key mutex_key; - const char *acquire_name; - const char *mutex_name; - unsigned int is_wait_die; -}; - -enum regulator_status { - REGULATOR_STATUS_OFF = 0, - REGULATOR_STATUS_ON = 1, - REGULATOR_STATUS_ERROR = 2, - REGULATOR_STATUS_FAST = 3, - REGULATOR_STATUS_NORMAL = 4, - REGULATOR_STATUS_IDLE = 5, - REGULATOR_STATUS_STANDBY = 6, - REGULATOR_STATUS_BYPASS = 7, - REGULATOR_STATUS_UNDEFINED = 8, -}; - -enum regulator_detection_severity { - REGULATOR_SEVERITY_PROT = 0, - REGULATOR_SEVERITY_ERR = 1, - REGULATOR_SEVERITY_WARN = 2, -}; - -struct regulator_enable_gpio { - struct list_head list; - struct gpio_desc *gpiod; - u32 enable_count; - u32 request_count; -}; - -enum regulator_active_discharge { - REGULATOR_ACTIVE_DISCHARGE_DEFAULT = 0, - REGULATOR_ACTIVE_DISCHARGE_DISABLE = 1, - REGULATOR_ACTIVE_DISCHARGE_ENABLE = 2, -}; - -struct trace_event_raw_regulator_basic { - struct trace_entry ent; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_regulator_range { - struct trace_entry ent; - u32 __data_loc_name; - int min; - int max; - char __data[0]; -}; - -struct trace_event_raw_regulator_value { - struct trace_entry ent; - u32 __data_loc_name; - unsigned int val; - char __data[0]; -}; - -struct trace_event_data_offsets_regulator_basic { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_regulator_range { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_regulator_value { - u32 name; - const void *name_ptr_; -}; - -typedef void (*btf_trace_regulator_enable)(void *, const char *); - -typedef void (*btf_trace_regulator_enable_delay)(void *, const char *); - -typedef void (*btf_trace_regulator_enable_complete)(void *, const char *); - -typedef void (*btf_trace_regulator_disable)(void *, const char *); - -typedef void (*btf_trace_regulator_disable_complete)(void *, const char *); - -typedef void (*btf_trace_regulator_bypass_enable)(void *, const char *); - -typedef void (*btf_trace_regulator_bypass_enable_complete)(void *, const char *); - -typedef void (*btf_trace_regulator_bypass_disable)(void *, const char *); - -typedef void (*btf_trace_regulator_bypass_disable_complete)(void *, const char *); - -typedef void (*btf_trace_regulator_set_voltage)(void *, const char *, int, int); - -typedef void (*btf_trace_regulator_set_voltage_complete)(void *, const char *, unsigned int); - -struct regulator_map { - struct list_head list; - const char *dev_name; - const char *supply; - struct regulator_dev *regulator; -}; - -struct regulator_supply_alias { - struct list_head list; - struct device *src_dev; - const char *src_supply; - struct device *alias_dev; - const char *alias_supply; -}; - -struct summary_data { - struct seq_file *s; - struct regulator_dev *parent; - int level; -}; - -struct summary_lock_data { - struct ww_acquire_ctx *ww_ctx; - struct regulator_dev **new_contended_rdev; - struct regulator_dev **old_contended_rdev; -}; - -struct reg_genl_event { - char reg_name[32]; - uint64_t event; -}; - -enum { - REG_GENL_ATTR_UNSPEC = 0, - REG_GENL_ATTR_EVENT = 1, - __REG_GENL_ATTR_MAX = 2, -}; - -enum { - REG_GENL_CMD_UNSPEC = 0, - REG_GENL_CMD_EVENT = 1, - __REG_GENL_CMD_MAX = 2, -}; - -enum tty_flow_change { - TTY_FLOW_NO_CHANGE = 0, - TTY_THROTTLE_SAFE = 1, - TTY_UNTHROTTLE_SAFE = 2, -}; - -struct n_tty_data { - size_t read_head; - size_t commit_head; - size_t canon_head; - size_t echo_head; - size_t echo_commit; - size_t echo_mark; - long unsigned int char_map[4]; - long unsigned int overrun_time; - unsigned int num_overrun; - bool no_room; - unsigned char lnext: 1; - unsigned char erasing: 1; - unsigned char raw: 1; - unsigned char real_raw: 1; - unsigned char icanon: 1; - unsigned char push: 1; - u8 read_buf[4096]; - long unsigned int read_flags[64]; - u8 echo_buf[4096]; - size_t read_tail; - size_t line_start; - size_t lookahead_count; - unsigned int column; - unsigned int canon_column; - size_t echo_tail; - struct mutex atomic_read_lock; - struct mutex output_lock; -}; - -enum { - ERASE = 0, - WERASE = 1, - KILL = 2, -}; - -struct sysrq_state { - struct input_handle handle; - struct work_struct reinject_work; - long unsigned int key_down[12]; - unsigned int alt; - unsigned int alt_use; - unsigned int shift; - unsigned int shift_use; - bool active; - bool need_reinject; - bool reinjecting; - bool reset_canceled; - bool reset_requested; - long unsigned int reset_keybit[12]; - int reset_seq_len; - int reset_seq_cnt; - int reset_seq_version; - struct timer_list keyreset_timer; -}; - -typedef short unsigned int ushort; - -struct console_font_op { - unsigned int op; - unsigned int flags; - unsigned int width; - unsigned int height; - unsigned int charcount; - unsigned char *data; -}; - -enum translation_map { - LAT1_MAP = 0, - GRAF_MAP = 1, - IBMPC_MAP = 2, - USER_MAP = 3, - FIRST_MAP = 0, - LAST_MAP = 3, -}; - -struct con_driver { - const struct consw *con; - const char *desc; - struct device *dev; - int node; - int first; - int last; - int flag; -}; - -enum { - blank_off = 0, - blank_normal_wait = 1, - blank_vesa_wait = 2, -}; - -enum { - EPecma = 0, - EPdec = 1, - EPeq = 2, - EPgt = 3, - EPlt = 4, -}; - -enum CSI_J { - CSI_J_CURSOR_TO_END = 0, - CSI_J_START_TO_CURSOR = 1, - CSI_J_VISIBLE = 2, - CSI_J_FULL = 3, -}; - -enum { - CSI_K_CURSOR_TO_LINEEND = 0, - CSI_K_LINESTART_TO_CURSOR = 1, - CSI_K_LINE = 2, -}; - -struct rgb { - u8 r; - u8 g; - u8 b; -}; - -enum { - CSI_m_DEFAULT = 0, - CSI_m_BOLD = 1, - CSI_m_HALF_BRIGHT = 2, - CSI_m_ITALIC = 3, - CSI_m_UNDERLINE = 4, - CSI_m_BLINK = 5, - CSI_m_REVERSE = 7, - CSI_m_PRI_FONT = 10, - CSI_m_ALT_FONT1 = 11, - CSI_m_ALT_FONT2 = 12, - CSI_m_DOUBLE_UNDERLINE = 21, - CSI_m_NORMAL_INTENSITY = 22, - CSI_m_NO_ITALIC = 23, - CSI_m_NO_UNDERLINE = 24, - CSI_m_NO_BLINK = 25, - CSI_m_NO_REVERSE = 27, - CSI_m_FG_COLOR_BEG = 30, - CSI_m_FG_COLOR_END = 37, - CSI_m_FG_COLOR = 38, - CSI_m_DEFAULT_FG_COLOR = 39, - CSI_m_BG_COLOR_BEG = 40, - CSI_m_BG_COLOR_END = 47, - CSI_m_BG_COLOR = 48, - CSI_m_DEFAULT_BG_COLOR = 49, - CSI_m_BRIGHT_FG_COLOR_BEG = 90, - CSI_m_BRIGHT_FG_COLOR_END = 97, - CSI_m_BRIGHT_FG_COLOR_OFF = 60, - CSI_m_BRIGHT_BG_COLOR_BEG = 100, - CSI_m_BRIGHT_BG_COLOR_END = 107, - CSI_m_BRIGHT_BG_COLOR_OFF = 60, -}; - -enum { - CSI_DEC_hl_CURSOR_KEYS = 1, - CSI_DEC_hl_132_COLUMNS = 3, - CSI_DEC_hl_REVERSE_VIDEO = 5, - CSI_DEC_hl_ORIGIN_MODE = 6, - CSI_DEC_hl_AUTOWRAP = 7, - CSI_DEC_hl_AUTOREPEAT = 8, - CSI_DEC_hl_MOUSE_X10 = 9, - CSI_DEC_hl_SHOW_CURSOR = 25, - CSI_DEC_hl_MOUSE_VT200 = 1000, - CSI_DEC_hl_BRACKETED_PASTE = 2004, -}; - -enum { - CSI_hl_DISPLAY_CTRL = 3, - CSI_hl_INSERT = 4, - CSI_hl_AUTO_NL = 20, -}; - -enum CSI_right_square_bracket { - CSI_RSB_COLOR_FOR_UNDERLINE = 1, - CSI_RSB_COLOR_FOR_HALF_BRIGHT = 2, - CSI_RSB_MAKE_CUR_COLOR_DEFAULT = 8, - CSI_RSB_BLANKING_INTERVAL = 9, - CSI_RSB_BELL_FREQUENCY = 10, - CSI_RSB_BELL_DURATION = 11, - CSI_RSB_BRING_CONSOLE_TO_FRONT = 12, - CSI_RSB_UNBLANK = 13, - CSI_RSB_VESA_OFF_INTERVAL = 14, - CSI_RSB_BRING_PREV_CONSOLE_TO_FRONT = 15, - CSI_RSB_CURSOR_BLINK_INTERVAL = 16, -}; - -enum vc_ctl_state { - ESnormal = 0, - ESesc = 1, - ESsquare = 2, - ESgetpars = 3, - ESfunckey = 4, - EShash = 5, - ESsetG0 = 6, - ESsetG1 = 7, - ESpercent = 8, - EScsiignore = 9, - ESnonstd = 10, - ESpalette = 11, - ESosc = 12, - ESANSI_first = 12, - ESapc = 13, - ESpm = 14, - ESdcs = 15, - ESANSI_last = 15, -}; - -enum { - ASCII_NULL = 0, - ASCII_BELL = 7, - ASCII_BACKSPACE = 8, - ASCII_IGNORE_FIRST = 8, - ASCII_HTAB = 9, - ASCII_LINEFEED = 10, - ASCII_VTAB = 11, - ASCII_FORMFEED = 12, - ASCII_CAR_RET = 13, - ASCII_IGNORE_LAST = 13, - ASCII_SHIFTOUT = 14, - ASCII_SHIFTIN = 15, - ASCII_CANCEL = 24, - ASCII_SUBSTITUTE = 26, - ASCII_ESCAPE = 27, - ASCII_CSI_IGNORE_FIRST = 32, - ASCII_CSI_IGNORE_LAST = 63, - ASCII_DEL = 127, - ASCII_EXT_CSI = 155, -}; - -struct vc_draw_region { - long unsigned int from; - long unsigned int to; - int x; -}; - -struct serial_ctrl_device { - struct device dev; - struct ida port_ida; -}; - -struct earlycon_device { - struct console *con; - struct uart_port port; - char options[32]; - unsigned int baud; -}; - -struct earlycon_id { - char name[15]; - char name_term; - char compatible[128]; - int (*setup)(struct earlycon_device *, const char *); -}; - -struct dw8250_port_data { - int line; - struct uart_8250_dma dma; - u32 cpr_value; - u8 dlf_size; - bool hw_rs485_support; -}; - -struct max310x_if_cfg { - int (*extended_reg_enable)(struct device *, bool); - u8 rev_id_offset; -}; - -struct max310x_devtype { - struct { - short unsigned int min; - short unsigned int max; - } slave_addr; - int nr; - char name[9]; - u8 mode1; - u8 rev_id_val; - u8 rev_id_reg; - u8 power_reg; - u8 power_bit; -}; - -struct max310x_one { - struct uart_port port; - struct work_struct tx_work; - struct work_struct md_work; - struct work_struct rs_work; - struct regmap *regmap; - u8 rx_buf[128]; -}; - -struct max310x_port { - const struct max310x_devtype *devtype; - const struct max310x_if_cfg *if_cfg; - struct regmap *regmap; - struct clk *clk; - struct gpio_chip gpio; - struct max310x_one p[0]; -}; - -struct timer_rand_state { - long unsigned int last_time; - long int last_delta; - long int last_delta2; -}; - -enum blake2s_iv { - BLAKE2S_IV0 = 1779033703, - BLAKE2S_IV1 = 3144134277, - BLAKE2S_IV2 = 1013904242, - BLAKE2S_IV3 = 2773480762, - BLAKE2S_IV4 = 1359893119, - BLAKE2S_IV5 = 2600822924, - BLAKE2S_IV6 = 528734635, - BLAKE2S_IV7 = 1541459225, -}; - -enum { - CRNG_EMPTY = 0, - CRNG_EARLY = 1, - CRNG_READY = 2, -}; - -enum { - CRNG_RESEED_START_INTERVAL = 1000, - CRNG_RESEED_INTERVAL = 60000, -}; - -struct crng { - u8 key[32]; - long unsigned int generation; - local_lock_t lock; -}; - -struct batch_u8 { - u8 entropy[96]; - local_lock_t lock; - long unsigned int generation; - unsigned int position; -}; - -struct batch_u16 { - u16 entropy[48]; - local_lock_t lock; - long unsigned int generation; - unsigned int position; -}; - -struct batch_u32 { - u32 entropy[24]; - local_lock_t lock; - long unsigned int generation; - unsigned int position; -}; - -struct batch_u64 { - u64 entropy[12]; - local_lock_t lock; - long unsigned int generation; - unsigned int position; -}; - -enum { - POOL_BITS = 256, - POOL_READY_BITS = 256, - POOL_EARLY_BITS = 128, -}; - -struct fast_pool { - long unsigned int pool[4]; - long unsigned int last; - unsigned int count; - struct timer_list mix; -}; - -struct entropy_timer_state { - long unsigned int entropy; - struct timer_list timer; - atomic_t samples; - unsigned int samples_per_bit; -}; - -enum { - NUM_TRIAL_SAMPLES = 8192, - MAX_SAMPLES_PER_BIT = 66, -}; - -enum { - MIX_INFLIGHT = 2147483648, -}; - -struct intel_agp_driver_description { - unsigned int chip_id; - char *name; - const struct agp_bridge_driver *driver; -}; - -enum tpm2_startup_types { - TPM2_SU_CLEAR = 0, - TPM2_SU_STATE = 1, -}; - -enum TPM_OPS_FLAGS { - TPM_OPS_AUTO_STARTUP = 1, -}; - -enum tpm2_timeouts { - TPM2_TIMEOUT_A = 750, - TPM2_TIMEOUT_B = 4000, - TPM2_TIMEOUT_C = 200, - TPM2_TIMEOUT_D = 30, - TPM2_DURATION_SHORT = 20, - TPM2_DURATION_MEDIUM = 750, - TPM2_DURATION_LONG = 2000, - TPM2_DURATION_LONG_LONG = 300000, - TPM2_DURATION_DEFAULT = 120000, -}; - -enum tpm2_return_codes { - TPM2_RC_SUCCESS = 0, - TPM2_RC_HASH = 131, - TPM2_RC_HANDLE = 139, - TPM2_RC_INTEGRITY = 159, - TPM2_RC_INITIALIZE = 256, - TPM2_RC_FAILURE = 257, - TPM2_RC_DISABLED = 288, - TPM2_RC_UPGRADE = 301, - TPM2_RC_COMMAND_CODE = 323, - TPM2_RC_TESTING = 2314, - TPM2_RC_REFERENCE_H0 = 2320, - TPM2_RC_RETRY = 2338, - TPM2_RC_SESSION_MEMORY = 2307, -}; - -enum tpm2_command_codes { - TPM2_CC_FIRST = 287, - TPM2_CC_HIERARCHY_CONTROL = 289, - TPM2_CC_HIERARCHY_CHANGE_AUTH = 297, - TPM2_CC_CREATE_PRIMARY = 305, - TPM2_CC_SEQUENCE_COMPLETE = 318, - TPM2_CC_SELF_TEST = 323, - TPM2_CC_STARTUP = 324, - TPM2_CC_SHUTDOWN = 325, - TPM2_CC_NV_READ = 334, - TPM2_CC_CREATE = 339, - TPM2_CC_LOAD = 343, - TPM2_CC_SEQUENCE_UPDATE = 348, - TPM2_CC_UNSEAL = 350, - TPM2_CC_CONTEXT_LOAD = 353, - TPM2_CC_CONTEXT_SAVE = 354, - TPM2_CC_FLUSH_CONTEXT = 357, - TPM2_CC_READ_PUBLIC = 371, - TPM2_CC_START_AUTH_SESS = 374, - TPM2_CC_VERIFY_SIGNATURE = 375, - TPM2_CC_GET_CAPABILITY = 378, - TPM2_CC_GET_RANDOM = 379, - TPM2_CC_PCR_READ = 382, - TPM2_CC_PCR_EXTEND = 386, - TPM2_CC_EVENT_SEQUENCE_COMPLETE = 389, - TPM2_CC_HASH_SEQUENCE_START = 390, - TPM2_CC_CREATE_LOADED = 401, - TPM2_CC_LAST = 403, -}; - -enum tpm_timeout { - TPM_TIMEOUT = 5, - TPM_TIMEOUT_RETRY = 100, - TPM_TIMEOUT_RANGE_US = 300, - TPM_TIMEOUT_POLL = 1, - TPM_TIMEOUT_USECS_MIN = 100, - TPM_TIMEOUT_USECS_MAX = 500, -}; - -enum tpm2_capabilities { - TPM2_CAP_HANDLES = 1, - TPM2_CAP_COMMANDS = 2, - TPM2_CAP_PCRS = 5, - TPM2_CAP_TPM_PROPERTIES = 6, -}; - -enum tpm2_cc_attrs { - TPM2_CC_ATTR_CHANDLES = 25, - TPM2_CC_ATTR_RHANDLE = 28, - TPM2_CC_ATTR_VENDOR = 29, -}; - -enum tpm2_handle_types { - TPM2_HT_HMAC_SESSION = 33554432, - TPM2_HT_POLICY_SESSION = 50331648, - TPM2_HT_TRANSIENT = 2147483648, -}; - -struct tpm2_context { - __be64 sequence; - __be32 saved_handle; - __be32 hierarchy; - __be16 blob_size; -} __attribute__((packed)); - -struct tpm2_cap_handles { - u8 more_data; - __be32 capability; - __be32 count; - __be32 handles[0]; -} __attribute__((packed)); - -struct tcpa_event { - u32 pcr_index; - u32 event_type; - u8 pcr_value[20]; - u32 event_size; - u8 event_data[0]; -}; - -struct tcpa_pc_event { - u32 event_id; - u32 event_size; - u8 event_data[0]; -}; - -enum tcpa_pc_event_ids { - SMBIOS = 1, - BIS_CERT = 2, - POST_BIOS_ROM = 3, - ESCD = 4, - CMOS = 5, - NVRAM = 6, - OPTION_ROM_EXEC = 7, - OPTION_ROM_CONFIG = 8, - OPTION_ROM_MICROCODE = 10, - S_CRTM_VERSION = 11, - S_CRTM_CONTENTS = 12, - POST_CONTENTS = 13, - HOST_TABLE_OF_DEVICES = 14, -}; - -enum tpm2_permanent_handles { - TPM2_RH_NULL = 1073741831, - TPM2_RS_PW = 1073741833, -}; - -struct tpm2_auth { - u32 handle; - u32 session; - u8 our_nonce[32]; - u8 tpm_nonce[32]; - union { - u8 salt[32]; - u8 scratch[32]; - }; - u8 session_key[32]; - u8 passphrase[32]; - int passphrase_len; - struct crypto_aes_ctx aes_ctx; - u8 attrs; - __be32 ordinal; - u32 name_h[3]; - u8 name[198]; -}; - -enum tis_defaults { - TIS_MEM_LEN = 20480, - TIS_SHORT_TIMEOUT = 750, - TIS_LONG_TIMEOUT = 4000, - TIS_TIMEOUT_MIN_ATML = 14700, - TIS_TIMEOUT_MAX_ATML = 15000, -}; - -enum tpm_tis_flags { - TPM_TIS_ITPM_WORKAROUND = 0, - TPM_TIS_INVALID_STATUS = 1, - TPM_TIS_DEFAULT_CANCELLATION = 2, - TPM_TIS_IRQ_TESTED = 3, - TPM_TIS_STATUS_VALID_RETRY = 4, -}; - -struct tpm_tis_phy_ops; - -struct tpm_tis_data { - struct tpm_chip *chip; - u16 manufacturer_id; - struct mutex locality_count_mutex; - unsigned int locality_count; - int locality; - int irq; - struct work_struct free_irq_work; - long unsigned int last_unhandled_irq; - unsigned int unhandled_irqs; - unsigned int int_mask; - long unsigned int flags; - void *ilb_base_addr; - u16 clkrun_enabled; - wait_queue_head_t int_queue; - wait_queue_head_t read_queue; - const struct tpm_tis_phy_ops *phy_ops; - short unsigned int rng_quality; - unsigned int timeout_min; - unsigned int timeout_max; -}; - -enum tpm_tis_io_mode { - TPM_TIS_PHYS_8 = 0, - TPM_TIS_PHYS_16 = 1, - TPM_TIS_PHYS_32 = 2, -}; - -struct tpm_tis_phy_ops { - int (*read_bytes)(struct tpm_tis_data *, u32, u16, u8 *, enum tpm_tis_io_mode); - int (*write_bytes)(struct tpm_tis_data *, u32, u16, const u8 *, enum tpm_tis_io_mode); - int (*verify_crc)(struct tpm_tis_data *, size_t, const u8 *); -}; - -struct tpm_info { - struct resource res; - int irq; -}; - -struct tpm_tis_tcg_phy { - struct tpm_tis_data priv; - void *iobase; -}; - -enum iommufd_hwpt_alloc_flags { - IOMMU_HWPT_ALLOC_NEST_PARENT = 1, - IOMMU_HWPT_ALLOC_DIRTY_TRACKING = 2, - IOMMU_HWPT_FAULT_ID_VALID = 4, - IOMMU_HWPT_ALLOC_PASID = 8, -}; - -struct amd_iommu_pi_data { - u64 vapic_addr; - u32 ga_tag; - u32 vector; - int cpu; - bool ga_log_intr; - bool is_guest_mode; - void *ir_data; -}; - -struct pdom_iommu_info { - struct amd_iommu *iommu; - u32 refcnt; -}; - -struct iommu_cmd { - u32 data[4]; -}; - -union irte___2 { - u32 val; - struct { - u32 valid: 1; - u32 no_fault: 1; - u32 int_type: 3; - u32 rq_eoi: 1; - u32 dm: 1; - u32 rsvd_1: 1; - u32 destination: 8; - u32 vector: 8; - u32 rsvd_2: 8; - } fields; -}; - -union irte_ga_lo { - u64 val; - struct { - u64 valid: 1; - u64 no_fault: 1; - u64 int_type: 3; - u64 rq_eoi: 1; - u64 dm: 1; - u64 guest_mode: 1; - u64 destination: 24; - u64 ga_tag: 32; - } fields_remap; - struct { - u64 valid: 1; - u64 no_fault: 1; - u64 ga_log_intr: 1; - u64 rsvd1: 3; - u64 is_run: 1; - u64 guest_mode: 1; - u64 destination: 24; - u64 ga_tag: 32; - } fields_vapic; -}; - -union irte_ga_hi { - u64 val; - struct { - u64 vector: 8; - u64 rsvd_1: 4; - u64 ga_root_ptr: 40; - u64 rsvd_2: 4; - u64 destination: 8; - } fields; -}; - -struct irte_ga { - union { - struct { - union irte_ga_lo lo; - union irte_ga_hi hi; - }; - u128 irte; - }; -}; - -struct irq_2_irte { - u16 devid; - u16 index; -}; - -struct amd_ir_data { - struct amd_iommu *iommu; - struct irq_2_irte irq_2_irte; - struct msi_msg msi_entry; - void *entry; - struct irq_cfg *cfg; - int ga_vector; - u64 ga_root_ptr; - u32 ga_tag; -}; - -enum iommu_page_response_code { - IOMMU_PAGE_RESP_SUCCESS = 0, - IOMMU_PAGE_RESP_INVALID = 1, - IOMMU_PAGE_RESP_FAILURE = 2, -}; - -enum iommu_hwpt_data_type { - IOMMU_HWPT_DATA_NONE = 0, - IOMMU_HWPT_DATA_VTD_S1 = 1, - IOMMU_HWPT_DATA_ARM_SMMUV3 = 2, -}; - -enum iommu_hwpt_invalidate_data_type { - IOMMU_HWPT_INVALIDATE_DATA_VTD_S1 = 0, - IOMMU_VIOMMU_INVALIDATE_DATA_ARM_SMMUV3 = 1, -}; - -enum iommu_hwpt_vtd_s1_invalidate_flags { - IOMMU_VTD_INV_FLAGS_LEAF = 1, -}; - -struct iommu_hwpt_vtd_s1_invalidate { - __u64 addr; - __u64 npages; - __u32 flags; - __u32 __reserved; -}; - -struct dev_pasid_info { - struct list_head link_domain; - struct device *dev; - ioasid_t pasid; -}; - -enum cache_tag_type { - CACHE_TAG_IOTLB = 0, - CACHE_TAG_DEVTLB = 1, - CACHE_TAG_NESTING_IOTLB = 2, - CACHE_TAG_NESTING_DEVTLB = 3, -}; - -struct cache_tag { - struct list_head node; - enum cache_tag_type type; - struct intel_iommu *iommu; - struct device *dev; - u16 domain_id; - ioasid_t pasid; - unsigned int users; -}; - -struct trace_event_raw_qi_submit { - struct trace_entry ent; - u64 qw0; - u64 qw1; - u64 qw2; - u64 qw3; - u32 __data_loc_iommu; - char __data[0]; -}; - -struct trace_event_raw_prq_report { - struct trace_entry ent; - u64 dw0; - u64 dw1; - u64 dw2; - u64 dw3; - long unsigned int seq; - u32 __data_loc_iommu; - u32 __data_loc_dev; - u32 __data_loc_buff; - char __data[0]; -}; - -struct trace_event_raw_cache_tag_log { - struct trace_entry ent; - u32 __data_loc_iommu; - u32 __data_loc_dev; - u16 type; - u16 domain_id; - u32 pasid; - u32 users; - char __data[0]; -}; - -struct trace_event_raw_cache_tag_flush { - struct trace_entry ent; - u32 __data_loc_iommu; - u32 __data_loc_dev; - u16 type; - u16 domain_id; - u32 pasid; - long unsigned int start; - long unsigned int end; - long unsigned int addr; - long unsigned int pages; - long unsigned int mask; - char __data[0]; -}; - -struct trace_event_data_offsets_qi_submit { - u32 iommu; - const void *iommu_ptr_; -}; - -struct trace_event_data_offsets_prq_report { - u32 iommu; - const void *iommu_ptr_; - u32 dev; - const void *dev_ptr_; - u32 buff; - const void *buff_ptr_; -}; - -struct trace_event_data_offsets_cache_tag_log { - u32 iommu; - const void *iommu_ptr_; - u32 dev; - const void *dev_ptr_; -}; - -struct trace_event_data_offsets_cache_tag_flush { - u32 iommu; - const void *iommu_ptr_; - u32 dev; - const void *dev_ptr_; -}; - -typedef void (*btf_trace_qi_submit)(void *, struct intel_iommu *, u64, u64, u64, u64); - -typedef void (*btf_trace_prq_report)(void *, struct intel_iommu *, struct device *, u64, u64, u64, u64, long unsigned int); - -typedef void (*btf_trace_cache_tag_assign)(void *, struct cache_tag *); - -typedef void (*btf_trace_cache_tag_unassign)(void *, struct cache_tag *); - -typedef void (*btf_trace_cache_tag_flush_range)(void *, struct cache_tag *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - -typedef void (*btf_trace_cache_tag_flush_range_np)(void *, struct cache_tag *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - -struct iova { - struct rb_node node; - long unsigned int pfn_hi; - long unsigned int pfn_lo; -}; - -struct iova_rcache; - -struct iova_domain { - spinlock_t iova_rbtree_lock; - struct rb_root rbroot; - struct rb_node *cached_node; - struct rb_node *cached32_node; - long unsigned int granule; - long unsigned int start_pfn; - long unsigned int dma_32bit_pfn; - long unsigned int max32_alloc_size; - struct iova anchor; - struct iova_rcache *rcaches; - struct hlist_node cpuhp_dead; -}; - -enum iommu_dma_queue_type { - IOMMU_DMA_OPTS_PER_CPU_QUEUE = 0, - IOMMU_DMA_OPTS_SINGLE_QUEUE = 1, -}; - -struct iommu_dma_options { - enum iommu_dma_queue_type qt; - size_t fq_size; - unsigned int fq_timeout; -}; - -struct iova_fq; - -struct iommu_dma_cookie { - struct iova_domain iovad; - struct list_head msi_page_list; - union { - struct iova_fq *single_fq; - struct iova_fq *percpu_fq; - }; - atomic64_t fq_flush_start_cnt; - atomic64_t fq_flush_finish_cnt; - struct timer_list fq_timer; - atomic_t fq_timer_on; - struct iommu_domain *fq_domain; - struct iommu_dma_options options; -}; - -struct iommu_dma_msi_cookie { - dma_addr_t msi_iova; - struct list_head msi_page_list; -}; - -struct iommu_dma_msi_page { - struct list_head list; - dma_addr_t iova; - phys_addr_t phys; -}; - -struct iova_fq_entry { - long unsigned int iova_pfn; - long unsigned int pages; - struct iommu_pages_list freelist; - u64 counter; -}; - -struct iova_fq { - spinlock_t lock; - unsigned int head; - unsigned int tail; - unsigned int mod_mask; - struct iova_fq_entry entries[0]; -}; - -struct dma_sgt_handle { - struct sg_table sgt; - struct page **pages; -}; - -struct iommu_sva { - struct iommu_attach_handle handle; - struct device *dev; - refcount_t users; -}; - -enum proc_cn_mcast_op { - PROC_CN_MCAST_LISTEN = 1, - PROC_CN_MCAST_IGNORE = 2, -}; - -struct proc_input { - enum proc_cn_mcast_op mcast_op; - enum proc_cn_event event_type; -}; - -struct fork_proc_event { - __kernel_pid_t parent_pid; - __kernel_pid_t parent_tgid; - __kernel_pid_t child_pid; - __kernel_pid_t child_tgid; -}; - -struct exec_proc_event { - __kernel_pid_t process_pid; - __kernel_pid_t process_tgid; -}; - -struct id_proc_event { - __kernel_pid_t process_pid; - __kernel_pid_t process_tgid; - union { - __u32 ruid; - __u32 rgid; - } r; - union { - __u32 euid; - __u32 egid; - } e; -}; - -struct sid_proc_event { - __kernel_pid_t process_pid; - __kernel_pid_t process_tgid; -}; - -struct ptrace_proc_event { - __kernel_pid_t process_pid; - __kernel_pid_t process_tgid; - __kernel_pid_t tracer_pid; - __kernel_pid_t tracer_tgid; -}; - -struct comm_proc_event { - __kernel_pid_t process_pid; - __kernel_pid_t process_tgid; - char comm[16]; -}; - -struct coredump_proc_event { - __kernel_pid_t process_pid; - __kernel_pid_t process_tgid; - __kernel_pid_t parent_pid; - __kernel_pid_t parent_tgid; -}; - -struct exit_proc_event { - __kernel_pid_t process_pid; - __kernel_pid_t process_tgid; - __u32 exit_code; - __u32 exit_signal; - __kernel_pid_t parent_pid; - __kernel_pid_t parent_tgid; -}; - -struct proc_event { - enum proc_cn_event what; - __u32 cpu; - __u64 timestamp_ns; - union { - struct { - __u32 err; - } ack; - struct fork_proc_event fork; - struct exec_proc_event exec; - struct id_proc_event id; - struct sid_proc_event sid; - struct ptrace_proc_event ptrace; - struct comm_proc_event comm; - struct coredump_proc_event coredump; - struct exit_proc_event exit; - } event_data; -}; - -struct local_event { - local_lock_t lock; - __u32 count; -}; - -struct device_attach_data { - struct device *dev; - bool check_async; - bool want_async; - bool have_async; -}; - -struct class_interface { - struct list_head node; - const struct class *class; - int (*add_dev)(struct device *); - void (*remove_dev)(struct device *); -}; - -struct class_compat { - struct kobject *kobj; -}; - -struct probe { - struct probe *next; - dev_t dev; - long unsigned int range; - struct module *owner; - kobj_probe_t *get; - int (*lock)(dev_t, void *); - void *data; -}; - -struct kobj_map { - struct probe *probes[255]; - struct mutex *lock; -}; - -struct internal_container { - struct klist_node node; - struct attribute_container *cont; - struct device classdev; -}; - -typedef void * (*devcon_match_fn_t)(const struct fwnode_handle *, const char *, void *); - -struct faux_object { - struct faux_device faux_dev; - const struct faux_device_ops *faux_ops; - const struct attribute_group **groups; -}; - -struct dev_pm_domain_attach_data { - const char * const *pd_names; - const u32 num_pd_names; - const u32 pd_flags; -}; - -struct dev_pm_domain_list { - struct device **pd_devs; - struct device_link **pd_links; - u32 *opp_tokens; - u32 num_pds; -}; - -struct dev_pm_opp; - -typedef int (*config_regulators_t)(struct device *, struct dev_pm_opp *, struct dev_pm_opp *, struct regulator **, unsigned int); - -typedef int (*config_clks_t)(struct device *, struct opp_table *, struct dev_pm_opp *, void *, bool); - -struct dev_pm_opp_config { - const char * const *clk_names; - config_clks_t config_clks; - const char *prop_name; - config_regulators_t config_regulators; - const unsigned int *supported_hw; - unsigned int supported_hw_count; - const char * const *regulator_names; - struct device *required_dev; - unsigned int required_dev_index; -}; - -struct pm_clk_notifier_block { - struct notifier_block nb; - struct dev_pm_domain *pm_domain; - char *con_ids[0]; -}; - -enum pce_status { - PCE_STATUS_NONE = 0, - PCE_STATUS_ACQUIRED = 1, - PCE_STATUS_PREPARED = 2, - PCE_STATUS_ENABLED = 3, - PCE_STATUS_ERROR = 4, -}; - -struct pm_clock_entry { - struct list_head node; - char *con_id; - struct clk *clk; - enum pce_status status; - bool enabled_when_prepared; -}; - -struct firmware_fallback_config { - unsigned int force_sysfs_fallback; - unsigned int ignore_sysfs_fallback; - int old_timeout; - int loading_timeout; -}; - -struct auxiliary_device { - struct device dev; - const char *name; - u32 id; - struct { - struct xarray irqs; - struct mutex lock; - bool irq_dir_exists; - } sysfs; -}; - -struct auxiliary_irq_info { - struct device_attribute sysfs_attr; - char name[11]; -}; - -struct soc_device_attribute { - const char *machine; - const char *family; - const char *revision; - const char *serial_number; - const char *soc_id; - const void *data; - const struct attribute_group *custom_attr_group; -}; - -struct soc_device { - struct device dev; - struct soc_device_attribute *attr; - int soc_dev_num; -}; - -typedef void (*irq_write_msi_msg_t)(struct msi_desc *, struct msi_msg *); - -struct virtio_blk_geometry { - __virtio16 cylinders; - __u8 heads; - __u8 sectors; -}; - -struct virtio_blk_zoned_characteristics { - __virtio32 zone_sectors; - __virtio32 max_open_zones; - __virtio32 max_active_zones; - __virtio32 max_append_sectors; - __virtio32 write_granularity; - __u8 model; - __u8 unused2[3]; -}; - -struct virtio_blk_config { - __virtio64 capacity; - __virtio32 size_max; - __virtio32 seg_max; - struct virtio_blk_geometry geometry; - __virtio32 blk_size; - __u8 physical_block_exp; - __u8 alignment_offset; - __virtio16 min_io_size; - __virtio32 opt_io_size; - __u8 wce; - __u8 unused; - __virtio16 num_queues; - __virtio32 max_discard_sectors; - __virtio32 max_discard_seg; - __virtio32 discard_sector_alignment; - __virtio32 max_write_zeroes_sectors; - __virtio32 max_write_zeroes_seg; - __u8 write_zeroes_may_unmap; - __u8 unused1[3]; - __virtio32 max_secure_erase_sectors; - __virtio32 max_secure_erase_seg; - __virtio32 secure_erase_sector_alignment; - struct virtio_blk_zoned_characteristics zoned; -}; - -struct virtio_blk_outhdr { - __virtio32 type; - __virtio32 ioprio; - __virtio64 sector; -}; - -struct virtio_blk_zone_descriptor { - __virtio64 z_cap; - __virtio64 z_start; - __virtio64 z_wp; - __u8 z_type; - __u8 z_state; - __u8 reserved[38]; -}; - -struct virtio_blk_zone_report { - __virtio64 nr_zones; - __u8 reserved[56]; - struct virtio_blk_zone_descriptor zones[0]; -}; - -struct virtio_blk_discard_write_zeroes { - __le64 sector; - __le32 num_sectors; - __le32 flags; -}; - -struct virtio_blk_vq { - struct virtqueue *vq; - spinlock_t lock; - char name[16]; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct virtio_blk { - struct mutex vdev_mutex; - struct virtio_device *vdev; - struct gendisk *disk; - struct blk_mq_tag_set tag_set; - struct work_struct config_work; - int index; - int num_vqs; - int io_queues[3]; - struct virtio_blk_vq *vqs; - unsigned int zone_sectors; -}; - -struct virtblk_req { - struct virtio_blk_outhdr out_hdr; - union { - u8 status; - struct { - __virtio64 sector; - u8 status; - } zone_append; - } in_hdr; - size_t in_hdr_len; - struct sg_table sg_table; - struct scatterlist sg[0]; -}; - -struct wm8400_platform_data { - int (*platform_init)(struct device *); -}; - -struct wm8400 { - struct device *dev; - struct regmap *regmap; - struct platform_device regulators[6]; -}; - -enum tps65912_irqs { - TPS65912_IRQ_PWRHOLD_F = 0, - TPS65912_IRQ_VMON = 1, - TPS65912_IRQ_PWRON = 2, - TPS65912_IRQ_PWRON_LP = 3, - TPS65912_IRQ_PWRHOLD_R = 4, - TPS65912_IRQ_HOTDIE = 5, - TPS65912_IRQ_GPIO1_R = 6, - TPS65912_IRQ_GPIO1_F = 7, - TPS65912_IRQ_GPIO2_R = 8, - TPS65912_IRQ_GPIO2_F = 9, - TPS65912_IRQ_GPIO3_R = 10, - TPS65912_IRQ_GPIO3_F = 11, - TPS65912_IRQ_GPIO4_R = 12, - TPS65912_IRQ_GPIO4_F = 13, - TPS65912_IRQ_GPIO5_R = 14, - TPS65912_IRQ_GPIO5_F = 15, - TPS65912_IRQ_PGOOD_DCDC1 = 16, - TPS65912_IRQ_PGOOD_DCDC2 = 17, - TPS65912_IRQ_PGOOD_DCDC3 = 18, - TPS65912_IRQ_PGOOD_DCDC4 = 19, - TPS65912_IRQ_PGOOD_LDO1 = 20, - TPS65912_IRQ_PGOOD_LDO2 = 21, - TPS65912_IRQ_PGOOD_LDO3 = 22, - TPS65912_IRQ_PGOOD_LDO4 = 23, - TPS65912_IRQ_PGOOD_LDO5 = 24, - TPS65912_IRQ_PGOOD_LDO6 = 25, - TPS65912_IRQ_PGOOD_LDO7 = 26, - TPS65912_IRQ_PGOOD_LDO8 = 27, - TPS65912_IRQ_PGOOD_LDO9 = 28, - TPS65912_IRQ_PGOOD_LDO10 = 29, -}; - -struct of_dev_auxdata { - char *compatible; - resource_size_t phys_addr; - char *name; - void *platform_data; -}; - -enum twl4030_module_ids { - TWL4030_MODULE_AUDIO_VOICE = 9, - TWL4030_MODULE_GPIO = 10, - TWL4030_MODULE_INTBR = 11, - TWL4030_MODULE_TEST = 12, - TWL4030_MODULE_KEYPAD = 13, - TWL4030_MODULE_MADC = 14, - TWL4030_MODULE_INTERRUPTS = 15, - TWL4030_MODULE_PRECHARGE = 16, - TWL4030_MODULE_BACKUP = 17, - TWL4030_MODULE_INT = 18, - TWL5031_MODULE_ACCESSORY = 19, - TWL5031_MODULE_INTERRUPTS = 20, - TWL4030_MODULE_LAST = 21, -}; - -enum twl6030_module_ids { - TWL6030_MODULE_ID0 = 9, - TWL6030_MODULE_ID1 = 10, - TWL6030_MODULE_ID2 = 11, - TWL6030_MODULE_GPADC = 12, - TWL6030_MODULE_GASGAUGE = 13, - TWL6032_MODULE_CHARGE = 14, - TWL6030_MODULE_LAST = 15, -}; - -struct twl_client { - struct i2c_client *client; - struct regmap *regmap; -}; - -struct twl_mapping { - unsigned char sid; - unsigned char base; -}; - -struct twl_private { - bool ready; - u32 twl_idcode; - unsigned int twl_id; - struct twl_mapping *twl_map; - struct twl_client *twl_modules; -}; - -struct twl4030_codec_data { - unsigned int digimic_delay; - unsigned int ramp_delay_value; - unsigned int offset_cncl_path; - unsigned int hs_extmute: 1; - int hs_extmute_gpio; -}; - -struct twl4030_vibra_data { - unsigned int coexist; -}; - -struct twl4030_audio_data { - unsigned int audio_mclk; - struct twl4030_codec_data *codec; - struct twl4030_vibra_data *vibra; - int audpwron_gpio; - int naudint_irq; - unsigned int irq_base; -}; - -enum twl4030_audio_res { - TWL4030_AUDIO_RES_POWER = 0, - TWL4030_AUDIO_RES_APLL = 1, - TWL4030_AUDIO_RES_MAX = 2, -}; - -struct twl4030_audio_resource { - int request_count; - u8 reg; - u8 mask; -}; - -struct twl4030_audio { - unsigned int audio_mclk; - struct mutex mutex; - struct twl4030_audio_resource resource[2]; - struct mfd_cell cells[2]; -}; - -struct da903x_subdev_info { - int id; - const char *name; - void *platform_data; -}; - -struct da903x_platform_data { - int num_subdevs; - struct da903x_subdev_info *subdevs; -}; - -struct da903x_chip; - -struct da903x_chip_ops { - int (*init_chip)(struct da903x_chip *); - int (*unmask_events)(struct da903x_chip *, unsigned int); - int (*mask_events)(struct da903x_chip *, unsigned int); - int (*read_events)(struct da903x_chip *, unsigned int *); - int (*read_status)(struct da903x_chip *, unsigned int *); -}; - -struct da903x_chip { - struct i2c_client *client; - struct device *dev; - const struct da903x_chip_ops *ops; - int type; - uint32_t events_mask; - struct mutex lock; - struct work_struct irq_work; - struct blocking_notifier_head notifier_list; -}; - -enum da9052_chip_id { - DA9052 = 0, - DA9053_AA = 1, - DA9053_BA = 2, - DA9053_BB = 3, - DA9053_BC = 4, -}; - -struct lp8788_irq_data { - struct lp8788 *lp; - struct mutex irq_lock; - struct irq_domain *domain; - int enabled[24]; -}; - -enum { - MAX8925_IRQ_VCHG_DC_OVP = 0, - MAX8925_IRQ_VCHG_DC_F = 1, - MAX8925_IRQ_VCHG_DC_R = 2, - MAX8925_IRQ_VCHG_THM_OK_R = 3, - MAX8925_IRQ_VCHG_THM_OK_F = 4, - MAX8925_IRQ_VCHG_SYSLOW_F = 5, - MAX8925_IRQ_VCHG_SYSLOW_R = 6, - MAX8925_IRQ_VCHG_RST = 7, - MAX8925_IRQ_VCHG_DONE = 8, - MAX8925_IRQ_VCHG_TOPOFF = 9, - MAX8925_IRQ_VCHG_TMR_FAULT = 10, - MAX8925_IRQ_GPM_RSTIN = 11, - MAX8925_IRQ_GPM_MPL = 12, - MAX8925_IRQ_GPM_SW_3SEC = 13, - MAX8925_IRQ_GPM_EXTON_F = 14, - MAX8925_IRQ_GPM_EXTON_R = 15, - MAX8925_IRQ_GPM_SW_1SEC = 16, - MAX8925_IRQ_GPM_SW_F = 17, - MAX8925_IRQ_GPM_SW_R = 18, - MAX8925_IRQ_GPM_SYSCKEN_F = 19, - MAX8925_IRQ_GPM_SYSCKEN_R = 20, - MAX8925_IRQ_RTC_ALARM1 = 21, - MAX8925_IRQ_RTC_ALARM0 = 22, - MAX8925_IRQ_TSC_STICK = 23, - MAX8925_IRQ_TSC_NSTICK = 24, - MAX8925_NR_IRQS = 25, -}; - -enum { - FLAGS_ADC = 1, - FLAGS_RTC = 2, -}; - -struct max8925_irq_data { - int reg; - int mask_reg; - int enable; - int offs; - int flags; - int tsc_irq; -}; - -struct max8997_regulator_data { - int id; - struct regulator_init_data *initdata; - struct device_node *reg_node; -}; - -struct max8997_muic_reg_data { - u8 addr; - u8 data; -}; - -struct max8997_muic_platform_data { - struct max8997_muic_reg_data *init_data; - int num_init_data; - int detcable_delay_ms; - int path_usb; - int path_uart; -}; - -enum max8997_haptic_motor_type { - MAX8997_HAPTIC_ERM = 0, - MAX8997_HAPTIC_LRA = 1, -}; - -enum max8997_haptic_pulse_mode { - MAX8997_EXTERNAL_MODE = 0, - MAX8997_INTERNAL_MODE = 1, -}; - -enum max8997_haptic_pwm_divisor { - MAX8997_PWM_DIVISOR_32 = 0, - MAX8997_PWM_DIVISOR_64 = 1, - MAX8997_PWM_DIVISOR_128 = 2, - MAX8997_PWM_DIVISOR_256 = 3, -}; - -struct max8997_haptic_platform_data { - unsigned int pwm_period; - enum max8997_haptic_motor_type type; - enum max8997_haptic_pulse_mode mode; - enum max8997_haptic_pwm_divisor pwm_divisor; - unsigned int internal_mode_pattern; - unsigned int pattern_cycle; - unsigned int pattern_signal_period; -}; - -enum max8997_led_mode { - MAX8997_NONE = 0, - MAX8997_FLASH_MODE = 1, - MAX8997_MOVIE_MODE = 2, - MAX8997_FLASH_PIN_CONTROL_MODE = 3, - MAX8997_MOVIE_PIN_CONTROL_MODE = 4, -}; - -struct max8997_led_platform_data { - enum max8997_led_mode mode[2]; - u8 brightness[2]; -}; - -struct max8997_platform_data { - int ono; - struct max8997_regulator_data *regulators; - int num_regulators; - bool ignore_gpiodvs_side_effect; - int buck125_default_idx; - unsigned int buck1_voltage[8]; - bool buck1_gpiodvs; - unsigned int buck2_voltage[8]; - bool buck2_gpiodvs; - unsigned int buck5_voltage[8]; - bool buck5_gpiodvs; - int eoc_mA; - int timeout; - struct max8997_muic_platform_data *muic_pdata; - struct max8997_haptic_platform_data *haptic_pdata; - struct max8997_led_platform_data *led_pdata; -}; - -enum max8997_pmic_reg { - MAX8997_REG_PMIC_ID0 = 0, - MAX8997_REG_PMIC_ID1 = 1, - MAX8997_REG_INTSRC = 2, - MAX8997_REG_INT1 = 3, - MAX8997_REG_INT2 = 4, - MAX8997_REG_INT3 = 5, - MAX8997_REG_INT4 = 6, - MAX8997_REG_INT1MSK = 8, - MAX8997_REG_INT2MSK = 9, - MAX8997_REG_INT3MSK = 10, - MAX8997_REG_INT4MSK = 11, - MAX8997_REG_STATUS1 = 13, - MAX8997_REG_STATUS2 = 14, - MAX8997_REG_STATUS3 = 15, - MAX8997_REG_STATUS4 = 16, - MAX8997_REG_MAINCON1 = 19, - MAX8997_REG_MAINCON2 = 20, - MAX8997_REG_BUCKRAMP = 21, - MAX8997_REG_BUCK1CTRL = 24, - MAX8997_REG_BUCK1DVS1 = 25, - MAX8997_REG_BUCK1DVS2 = 26, - MAX8997_REG_BUCK1DVS3 = 27, - MAX8997_REG_BUCK1DVS4 = 28, - MAX8997_REG_BUCK1DVS5 = 29, - MAX8997_REG_BUCK1DVS6 = 30, - MAX8997_REG_BUCK1DVS7 = 31, - MAX8997_REG_BUCK1DVS8 = 32, - MAX8997_REG_BUCK2CTRL = 33, - MAX8997_REG_BUCK2DVS1 = 34, - MAX8997_REG_BUCK2DVS2 = 35, - MAX8997_REG_BUCK2DVS3 = 36, - MAX8997_REG_BUCK2DVS4 = 37, - MAX8997_REG_BUCK2DVS5 = 38, - MAX8997_REG_BUCK2DVS6 = 39, - MAX8997_REG_BUCK2DVS7 = 40, - MAX8997_REG_BUCK2DVS8 = 41, - MAX8997_REG_BUCK3CTRL = 42, - MAX8997_REG_BUCK3DVS = 43, - MAX8997_REG_BUCK4CTRL = 44, - MAX8997_REG_BUCK4DVS = 45, - MAX8997_REG_BUCK5CTRL = 46, - MAX8997_REG_BUCK5DVS1 = 47, - MAX8997_REG_BUCK5DVS2 = 48, - MAX8997_REG_BUCK5DVS3 = 49, - MAX8997_REG_BUCK5DVS4 = 50, - MAX8997_REG_BUCK5DVS5 = 51, - MAX8997_REG_BUCK5DVS6 = 52, - MAX8997_REG_BUCK5DVS7 = 53, - MAX8997_REG_BUCK5DVS8 = 54, - MAX8997_REG_BUCK6CTRL = 55, - MAX8997_REG_BUCK6BPSKIPCTRL = 56, - MAX8997_REG_BUCK7CTRL = 57, - MAX8997_REG_BUCK7DVS = 58, - MAX8997_REG_LDO1CTRL = 59, - MAX8997_REG_LDO2CTRL = 60, - MAX8997_REG_LDO3CTRL = 61, - MAX8997_REG_LDO4CTRL = 62, - MAX8997_REG_LDO5CTRL = 63, - MAX8997_REG_LDO6CTRL = 64, - MAX8997_REG_LDO7CTRL = 65, - MAX8997_REG_LDO8CTRL = 66, - MAX8997_REG_LDO9CTRL = 67, - MAX8997_REG_LDO10CTRL = 68, - MAX8997_REG_LDO11CTRL = 69, - MAX8997_REG_LDO12CTRL = 70, - MAX8997_REG_LDO13CTRL = 71, - MAX8997_REG_LDO14CTRL = 72, - MAX8997_REG_LDO15CTRL = 73, - MAX8997_REG_LDO16CTRL = 74, - MAX8997_REG_LDO17CTRL = 75, - MAX8997_REG_LDO18CTRL = 76, - MAX8997_REG_LDO21CTRL = 77, - MAX8997_REG_MBCCTRL1 = 80, - MAX8997_REG_MBCCTRL2 = 81, - MAX8997_REG_MBCCTRL3 = 82, - MAX8997_REG_MBCCTRL4 = 83, - MAX8997_REG_MBCCTRL5 = 84, - MAX8997_REG_MBCCTRL6 = 85, - MAX8997_REG_OTPCGHCVS = 86, - MAX8997_REG_SAFEOUTCTRL = 90, - MAX8997_REG_LBCNFG1 = 94, - MAX8997_REG_LBCNFG2 = 95, - MAX8997_REG_BBCCTRL = 96, - MAX8997_REG_FLASH1_CUR = 99, - MAX8997_REG_FLASH2_CUR = 100, - MAX8997_REG_MOVIE_CUR = 101, - MAX8997_REG_GSMB_CUR = 102, - MAX8997_REG_BOOST_CNTL = 103, - MAX8997_REG_LEN_CNTL = 104, - MAX8997_REG_FLASH_CNTL = 105, - MAX8997_REG_WDT_CNTL = 106, - MAX8997_REG_MAXFLASH1 = 107, - MAX8997_REG_MAXFLASH2 = 108, - MAX8997_REG_FLASHSTATUS = 109, - MAX8997_REG_FLASHSTATUSMASK = 110, - MAX8997_REG_GPIOCNTL1 = 112, - MAX8997_REG_GPIOCNTL2 = 113, - MAX8997_REG_GPIOCNTL3 = 114, - MAX8997_REG_GPIOCNTL4 = 115, - MAX8997_REG_GPIOCNTL5 = 116, - MAX8997_REG_GPIOCNTL6 = 117, - MAX8997_REG_GPIOCNTL7 = 118, - MAX8997_REG_GPIOCNTL8 = 119, - MAX8997_REG_GPIOCNTL9 = 120, - MAX8997_REG_GPIOCNTL10 = 121, - MAX8997_REG_GPIOCNTL11 = 122, - MAX8997_REG_GPIOCNTL12 = 123, - MAX8997_REG_LDO1CONFIG = 128, - MAX8997_REG_LDO2CONFIG = 129, - MAX8997_REG_LDO3CONFIG = 130, - MAX8997_REG_LDO4CONFIG = 131, - MAX8997_REG_LDO5CONFIG = 132, - MAX8997_REG_LDO6CONFIG = 133, - MAX8997_REG_LDO7CONFIG = 134, - MAX8997_REG_LDO8CONFIG = 135, - MAX8997_REG_LDO9CONFIG = 136, - MAX8997_REG_LDO10CONFIG = 137, - MAX8997_REG_LDO11CONFIG = 138, - MAX8997_REG_LDO12CONFIG = 139, - MAX8997_REG_LDO13CONFIG = 140, - MAX8997_REG_LDO14CONFIG = 141, - MAX8997_REG_LDO15CONFIG = 142, - MAX8997_REG_LDO16CONFIG = 143, - MAX8997_REG_LDO17CONFIG = 144, - MAX8997_REG_LDO18CONFIG = 145, - MAX8997_REG_LDO21CONFIG = 146, - MAX8997_REG_DVSOKTIMER1 = 151, - MAX8997_REG_DVSOKTIMER2 = 152, - MAX8997_REG_DVSOKTIMER4 = 153, - MAX8997_REG_DVSOKTIMER5 = 154, - MAX8997_REG_PMIC_END = 155, -}; - -enum max8997_muic_reg { - MAX8997_MUIC_REG_ID = 0, - MAX8997_MUIC_REG_INT1 = 1, - MAX8997_MUIC_REG_INT2 = 2, - MAX8997_MUIC_REG_INT3 = 3, - MAX8997_MUIC_REG_STATUS1 = 4, - MAX8997_MUIC_REG_STATUS2 = 5, - MAX8997_MUIC_REG_STATUS3 = 6, - MAX8997_MUIC_REG_INTMASK1 = 7, - MAX8997_MUIC_REG_INTMASK2 = 8, - MAX8997_MUIC_REG_INTMASK3 = 9, - MAX8997_MUIC_REG_CDETCTRL = 10, - MAX8997_MUIC_REG_CONTROL1 = 12, - MAX8997_MUIC_REG_CONTROL2 = 13, - MAX8997_MUIC_REG_CONTROL3 = 14, - MAX8997_MUIC_REG_END = 15, -}; - -enum max8997_haptic_reg { - MAX8997_HAPTIC_REG_GENERAL = 0, - MAX8997_HAPTIC_REG_CONF1 = 1, - MAX8997_HAPTIC_REG_CONF2 = 2, - MAX8997_HAPTIC_REG_DRVCONF = 3, - MAX8997_HAPTIC_REG_CYCLECONF1 = 4, - MAX8997_HAPTIC_REG_CYCLECONF2 = 5, - MAX8997_HAPTIC_REG_SIGCONF1 = 6, - MAX8997_HAPTIC_REG_SIGCONF2 = 7, - MAX8997_HAPTIC_REG_SIGCONF3 = 8, - MAX8997_HAPTIC_REG_SIGCONF4 = 9, - MAX8997_HAPTIC_REG_SIGDC1 = 10, - MAX8997_HAPTIC_REG_SIGDC2 = 11, - MAX8997_HAPTIC_REG_SIGPWMDC1 = 12, - MAX8997_HAPTIC_REG_SIGPWMDC2 = 13, - MAX8997_HAPTIC_REG_SIGPWMDC3 = 14, - MAX8997_HAPTIC_REG_SIGPWMDC4 = 15, - MAX8997_HAPTIC_REG_MTR_REV = 16, - MAX8997_HAPTIC_REG_END = 17, -}; - -enum max8997_irq_source { - PMIC_INT1 = 0, - PMIC_INT2 = 1, - PMIC_INT3 = 2, - PMIC_INT4 = 3, - FUEL_GAUGE = 4, - MUIC_INT1 = 5, - MUIC_INT2 = 6, - MUIC_INT3 = 7, - GPIO_LOW = 8, - GPIO_HI = 9, - FLASH_STATUS = 10, - MAX8997_IRQ_GROUP_NR = 11, -}; - -enum max8997_irq { - MAX8997_PMICIRQ_PWRONR = 0, - MAX8997_PMICIRQ_PWRONF = 1, - MAX8997_PMICIRQ_PWRON1SEC = 2, - MAX8997_PMICIRQ_JIGONR = 3, - MAX8997_PMICIRQ_JIGONF = 4, - MAX8997_PMICIRQ_LOWBAT2 = 5, - MAX8997_PMICIRQ_LOWBAT1 = 6, - MAX8997_PMICIRQ_JIGR = 7, - MAX8997_PMICIRQ_JIGF = 8, - MAX8997_PMICIRQ_MR = 9, - MAX8997_PMICIRQ_DVS1OK = 10, - MAX8997_PMICIRQ_DVS2OK = 11, - MAX8997_PMICIRQ_DVS3OK = 12, - MAX8997_PMICIRQ_DVS4OK = 13, - MAX8997_PMICIRQ_CHGINS = 14, - MAX8997_PMICIRQ_CHGRM = 15, - MAX8997_PMICIRQ_DCINOVP = 16, - MAX8997_PMICIRQ_TOPOFFR = 17, - MAX8997_PMICIRQ_CHGRSTF = 18, - MAX8997_PMICIRQ_MBCHGTMEXPD = 19, - MAX8997_PMICIRQ_RTC60S = 20, - MAX8997_PMICIRQ_RTCA1 = 21, - MAX8997_PMICIRQ_RTCA2 = 22, - MAX8997_PMICIRQ_SMPL_INT = 23, - MAX8997_PMICIRQ_RTC1S = 24, - MAX8997_PMICIRQ_WTSR = 25, - MAX8997_MUICIRQ_ADCError = 26, - MAX8997_MUICIRQ_ADCLow = 27, - MAX8997_MUICIRQ_ADC = 28, - MAX8997_MUICIRQ_VBVolt = 29, - MAX8997_MUICIRQ_DBChg = 30, - MAX8997_MUICIRQ_DCDTmr = 31, - MAX8997_MUICIRQ_ChgDetRun = 32, - MAX8997_MUICIRQ_ChgTyp = 33, - MAX8997_MUICIRQ_OVP = 34, - MAX8997_IRQ_NR = 35, -}; - -struct max8997_dev { - struct device *dev; - struct max8997_platform_data *pdata; - struct i2c_client *i2c; - struct i2c_client *rtc; - struct i2c_client *haptic; - struct i2c_client *muic; - struct mutex iolock; - long unsigned int type; - struct platform_device *battery; - int irq; - int ono; - struct irq_domain *irq_domain; - struct mutex irqlock; - int irq_masks_cur[11]; - int irq_masks_cache[11]; - u8 reg_dump[187]; - bool gpio_status[12]; -}; - -struct max8997_irq_data { - int mask; - enum max8997_irq_source group; -}; - -enum { - TPS6586X_ID_SYS = 0, - TPS6586X_ID_SM_0 = 1, - TPS6586X_ID_SM_1 = 2, - TPS6586X_ID_SM_2 = 3, - TPS6586X_ID_LDO_0 = 4, - TPS6586X_ID_LDO_1 = 5, - TPS6586X_ID_LDO_2 = 6, - TPS6586X_ID_LDO_3 = 7, - TPS6586X_ID_LDO_4 = 8, - TPS6586X_ID_LDO_5 = 9, - TPS6586X_ID_LDO_6 = 10, - TPS6586X_ID_LDO_7 = 11, - TPS6586X_ID_LDO_8 = 12, - TPS6586X_ID_LDO_9 = 13, - TPS6586X_ID_LDO_RTC = 14, - TPS6586X_ID_MAX_REGULATOR = 15, -}; - -struct tps6586x_irq_data { - u8 mask_reg; - u8 mask_mask; -}; - -struct tps6586x { - struct device *dev; - struct i2c_client *client; - struct regmap *regmap; - int version; - int irq; - struct irq_chip irq_chip; - struct mutex irq_lock; - int irq_base; - u32 irq_en; - u8 mask_reg[5]; - struct irq_domain *irq_domain; -}; - -enum { - RC5T583_DS_NONE = 0, - RC5T583_DS_DC0 = 1, - RC5T583_DS_DC1 = 2, - RC5T583_DS_DC2 = 3, - RC5T583_DS_DC3 = 4, - RC5T583_DS_LDO0 = 5, - RC5T583_DS_LDO1 = 6, - RC5T583_DS_LDO2 = 7, - RC5T583_DS_LDO3 = 8, - RC5T583_DS_LDO4 = 9, - RC5T583_DS_LDO5 = 10, - RC5T583_DS_LDO6 = 11, - RC5T583_DS_LDO7 = 12, - RC5T583_DS_LDO8 = 13, - RC5T583_DS_LDO9 = 14, - RC5T583_DS_PSO0 = 15, - RC5T583_DS_PSO1 = 16, - RC5T583_DS_PSO2 = 17, - RC5T583_DS_PSO3 = 18, - RC5T583_DS_PSO4 = 19, - RC5T583_DS_PSO5 = 20, - RC5T583_DS_PSO6 = 21, - RC5T583_DS_PSO7 = 22, - RC5T583_DS_MAX = 23, -}; - -enum { - RC5T583_EXT_PWRREQ1_CONTROL = 1, - RC5T583_EXT_PWRREQ2_CONTROL = 2, -}; - -struct rc5t583_platform_data { - int irq_base; - int gpio_base; - bool enable_shutdown; - int regulator_deepsleep_slot[14]; - long unsigned int regulator_ext_pwr_control[14]; - struct regulator_init_data *reg_init_data[14]; -}; - -struct deepsleep_control_data { - u8 reg_add; - u8 ds_pos_bit; -}; - -struct nd_label_id { - char id[50]; -}; - -enum nd_driver_flags { - ND_DRIVER_DIMM = 2, - ND_DRIVER_REGION_PMEM = 4, - ND_DRIVER_REGION_BLK = 8, - ND_DRIVER_NAMESPACE_IO = 16, - ND_DRIVER_NAMESPACE_PMEM = 32, - ND_DRIVER_DAX_PMEM = 128, -}; - -struct dax_region { - int id; - int target_node; - struct kref kref; - struct device *dev; - unsigned int align; - struct ida ida; - struct resource res; - struct device *seed; - struct device *youngest; -}; - -struct dax_mapping { - struct device dev; - int range_id; - int id; -}; - -struct dev_dax_range { - long unsigned int pgoff; - struct range range; - struct dax_mapping *mapping; -}; - -struct dev_dax { - struct dax_region *region; - struct dax_device *dax_dev; - unsigned int align; - int target_node; - bool dyn_id; - int id; - struct ida ida; - struct device dev; - struct dev_pagemap *pgmap; - bool memmap_on_memory; - int nr_range; - struct dev_dax_range *ranges; -}; - -struct dev_dax_data { - struct dax_region *dax_region; - struct dev_pagemap *pgmap; - resource_size_t size; - int id; - bool memmap_on_memory; -}; - -enum dax_driver_type { - DAXDRV_KMEM_TYPE = 0, - DAXDRV_DEVICE_TYPE = 1, -}; - -struct dax_device_driver { - struct device_driver drv; - struct list_head ids; - enum dax_driver_type type; - int (*probe)(struct dev_dax *); - void (*remove)(struct dev_dax *); -}; - -struct dax_id { - struct list_head list; - char dev_name[30]; -}; - -enum id_action { - ID_REMOVE = 0, - ID_ADD = 1, -}; - -struct dma_buf_export_info { - const char *exp_name; - struct module *owner; - const struct dma_buf_ops *ops; - size_t size; - int flags; - struct dma_resv *resv; - void *priv; -}; - -struct dma_resv_iter { - struct dma_resv *obj; - enum dma_resv_usage usage; - struct dma_fence *fence; - enum dma_resv_usage fence_usage; - unsigned int index; - struct dma_resv_list *fences; - unsigned int num_fences; - bool is_restarted; -}; - -struct dma_buf_sync { - __u64 flags; -}; - -struct dma_buf_export_sync_file { - __u32 flags; - __s32 fd; -}; - -struct dma_buf_import_sync_file { - __u32 flags; - __s32 fd; -}; - -struct dma_heap; - -struct dma_heap_ops { - struct dma_buf * (*allocate)(struct dma_heap *, long unsigned int, u32, u64); -}; - -struct dma_heap_export_info { - const char *name; - const struct dma_heap_ops *ops; - void *priv; -}; - -struct system_heap_buffer { - struct dma_heap *heap; - struct list_head attachments; - struct mutex lock; - long unsigned int len; - struct sg_table sg_table; - int vmap_cnt; - void *vaddr; -}; - -struct dma_heap_attachment { - struct device *dev; - struct sg_table table; - struct list_head list; - bool mapped; -}; - -struct sync_timeline { - struct kref kref; - char name[32]; - u64 context; - int value; - struct rb_root pt_tree; - struct list_head pt_list; - spinlock_t lock; - struct list_head sync_timeline_list; -}; - -struct sync_pt { - struct dma_fence base; - struct list_head link; - struct rb_node node; - ktime_t deadline; -}; - -struct trace_event_raw_sync_timeline { - struct trace_entry ent; - u32 __data_loc_name; - u32 value; - char __data[0]; -}; - -struct trace_event_data_offsets_sync_timeline { - u32 name; - const void *name_ptr_; -}; - -typedef void (*btf_trace_sync_timeline)(void *, struct sync_timeline *); - -struct sw_sync_create_fence_data { - __u32 value; - char name[32]; - __s32 fence; -}; - -struct sw_sync_get_deadline { - __u64 deadline_ns; - __u32 pad; - __s32 fence_fd; -}; - -struct value_name_pair; - -struct sa_name_list { - int opcode; - const struct value_name_pair *arr; - int arr_sz; -}; - -struct value_name_pair { - int value; - const char *name; -}; - -struct error_info { - short unsigned int code12; - short unsigned int size; -}; - -struct error_info2 { - unsigned char code1; - unsigned char code2_min; - unsigned char code2_max; - const char *str; - const char *fmt; -}; - -struct scsi_proc_entry { - struct list_head entry; - const struct scsi_host_template *sht; - struct proc_dir_entry *proc_dir; - unsigned int present; -}; - -struct virtio_scsi_cmd_req { - __u8 lun[8]; - __virtio64 tag; - __u8 task_attr; - __u8 prio; - __u8 crn; - __u8 cdb[32]; -} __attribute__((packed)); - -struct virtio_scsi_cmd_req_pi { - __u8 lun[8]; - __virtio64 tag; - __u8 task_attr; - __u8 prio; - __u8 crn; - __virtio32 pi_bytesout; - __virtio32 pi_bytesin; - __u8 cdb[32]; -} __attribute__((packed)); - -struct virtio_scsi_cmd_resp { - __virtio32 sense_len; - __virtio32 resid; - __virtio16 status_qualifier; - __u8 status; - __u8 response; - __u8 sense[96]; -}; - -struct virtio_scsi_ctrl_tmf_req { - __virtio32 type; - __virtio32 subtype; - __u8 lun[8]; - __virtio64 tag; -}; - -struct virtio_scsi_ctrl_tmf_resp { - __u8 response; -}; - -struct virtio_scsi_ctrl_an_req { - __virtio32 type; - __u8 lun[8]; - __virtio32 event_requested; -}; - -struct virtio_scsi_ctrl_an_resp { - __virtio32 event_actual; - __u8 response; -} __attribute__((packed)); - -struct virtio_scsi_event { - __virtio32 event; - __u8 lun[8]; - __virtio32 reason; -}; - -struct virtio_scsi_config { - __virtio32 num_queues; - __virtio32 seg_max; - __virtio32 max_sectors; - __virtio32 cmd_per_lun; - __virtio32 event_info_size; - __virtio32 sense_size; - __virtio32 cdb_size; - __virtio16 max_channel; - __virtio16 max_target; - __virtio32 max_lun; -}; - -enum scsi_host_guard_type { - SHOST_DIX_GUARD_CRC = 1, - SHOST_DIX_GUARD_IP = 2, -}; - -struct virtio_scsi_cmd { - struct scsi_cmnd *sc; - struct completion *comp; - union { - struct virtio_scsi_cmd_req cmd; - struct virtio_scsi_cmd_req_pi cmd_pi; - struct virtio_scsi_ctrl_tmf_req tmf; - struct virtio_scsi_ctrl_an_req an; - } req; - union { - struct virtio_scsi_cmd_resp cmd; - struct virtio_scsi_ctrl_tmf_resp tmf; - struct virtio_scsi_ctrl_an_resp an; - struct virtio_scsi_event evt; - } resp; - long: 64; -} __attribute__((packed)); - -struct virtio_scsi; - -struct virtio_scsi_event_node { - struct virtio_scsi *vscsi; - struct virtio_scsi_event event; - struct work_struct work; -}; - -struct virtio_scsi_vq { - spinlock_t vq_lock; - struct virtqueue *vq; -}; - -struct virtio_scsi { - struct virtio_device *vdev; - struct virtio_scsi_event_node event_list[8]; - u32 num_queues; - int io_queues[3]; - struct hlist_node node; - bool stop_events; - struct virtio_scsi_vq ctrl_vq; - struct virtio_scsi_vq event_vq; - struct virtio_scsi_vq req_vqs[0]; -}; - -enum t10_dif_type { - T10_PI_TYPE0_PROTECTION = 0, - T10_PI_TYPE1_PROTECTION = 1, - T10_PI_TYPE2_PROTECTION = 2, - T10_PI_TYPE3_PROTECTION = 3, -}; - -struct cdrom_ti { - __u8 cdti_trk0; - __u8 cdti_ind0; - __u8 cdti_trk1; - __u8 cdti_ind1; -}; - -struct cdrom_tochdr { - __u8 cdth_trk0; - __u8 cdth_trk1; -}; - -struct cdrom_tocentry { - __u8 cdte_track; - __u8 cdte_adr: 4; - __u8 cdte_ctrl: 4; - __u8 cdte_format; - union cdrom_addr cdte_addr; - __u8 cdte_datamode; -}; - -struct media_event_desc { - __u8 media_event_code: 4; - __u8 reserved1: 4; - __u8 door_open: 1; - __u8 media_present: 1; - __u8 reserved2: 6; - __u8 start_slot; - __u8 end_slot; -}; - -struct scsi_cd { - unsigned int capacity; - struct scsi_device *device; - unsigned int vendor; - long unsigned int ms_offset; - unsigned int writeable: 1; - unsigned int use: 1; - unsigned int xa_flag: 1; - unsigned int readcd_known: 1; - unsigned int readcd_cdda: 1; - unsigned int media_present: 1; - int tur_mismatch; - bool tur_changed: 1; - bool get_event_changed: 1; - bool ignore_get_event: 1; - struct cdrom_device_info cdi; - struct mutex lock; - struct gendisk *disk; -}; - -typedef struct scsi_cd Scsi_CD; - -enum { - NVME_AUTH_HASH_SHA256 = 1, - NVME_AUTH_HASH_SHA384 = 2, - NVME_AUTH_HASH_SHA512 = 3, - NVME_AUTH_HASH_INVALID = 255, -}; - -enum { - NVME_AUTH_DHGROUP_NULL = 0, - NVME_AUTH_DHGROUP_2048 = 1, - NVME_AUTH_DHGROUP_3072 = 2, - NVME_AUTH_DHGROUP_4096 = 3, - NVME_AUTH_DHGROUP_6144 = 4, - NVME_AUTH_DHGROUP_8192 = 5, - NVME_AUTH_DHGROUP_INVALID = 255, -}; - -struct nvme_auth_dhgroup_map { - const char name[16]; - const char kpp[16]; -}; - -struct nvme_dhchap_hash_map { - int len; - const char hmac[15]; - const char digest[8]; -}; - -struct nvme_zns_lbafe { - __le64 zsze; - __u8 zdes; - __u8 rsvd9[7]; -}; - -struct nvme_id_ns_zns { - __le16 zoc; - __le16 ozcs; - __le32 mar; - __le32 mor; - __le32 rrl; - __le32 frl; - __u8 rsvd20[2796]; - struct nvme_zns_lbafe lbafe[64]; - __u8 vs[256]; -}; - -struct nvme_id_ctrl_zns { - __u8 zasl; - __u8 rsvd1[4095]; -}; - -struct nvme_zone_descriptor { - __u8 zt; - __u8 zs; - __u8 za; - __u8 rsvd3[5]; - __le64 zcap; - __le64 zslba; - __le64 wp; - __u8 rsvd32[32]; -}; - -enum { - NVME_ZONE_TYPE_SEQWRITE_REQ = 2, -}; - -struct nvme_zone_report { - __le64 nr_zones; - __u8 resv8[56]; - struct nvme_zone_descriptor entries[0]; -}; - -enum { - NVME_ZRA_ZONE_REPORT = 0, - NVME_ZRASF_ZONE_REPORT_ALL = 0, - NVME_ZRASF_ZONE_STATE_EMPTY = 1, - NVME_ZRASF_ZONE_STATE_IMP_OPEN = 2, - NVME_ZRASF_ZONE_STATE_EXP_OPEN = 3, - NVME_ZRASF_ZONE_STATE_CLOSED = 4, - NVME_ZRASF_ZONE_STATE_READONLY = 5, - NVME_ZRASF_ZONE_STATE_FULL = 6, - NVME_ZRASF_ZONE_STATE_OFFLINE = 7, - NVME_REPORT_ZONE_PARTIAL = 1, -}; - -enum { - NVME_AUTH_DHCHAP_PROTOCOL_IDENTIFIER = 233, -}; - -enum { - NVME_AUTH_COMMON_MESSAGES = 0, - NVME_AUTH_DHCHAP_MESSAGES = 1, -}; - -enum { - NVME_AUTH_DHCHAP_MESSAGE_NEGOTIATE = 0, - NVME_AUTH_DHCHAP_MESSAGE_CHALLENGE = 1, - NVME_AUTH_DHCHAP_MESSAGE_REPLY = 2, - NVME_AUTH_DHCHAP_MESSAGE_SUCCESS1 = 3, - NVME_AUTH_DHCHAP_MESSAGE_SUCCESS2 = 4, - NVME_AUTH_DHCHAP_MESSAGE_FAILURE2 = 240, - NVME_AUTH_DHCHAP_MESSAGE_FAILURE1 = 241, -}; - -struct nvmf_auth_dhchap_protocol_descriptor { - __u8 authid; - __u8 rsvd; - __u8 halen; - __u8 dhlen; - __u8 idlist[60]; -}; - -enum { - NVME_AUTH_DHCHAP_AUTH_ID = 1, -}; - -enum { - NVME_AUTH_SECP_NOSC = 0, - NVME_AUTH_SECP_SC = 1, - NVME_AUTH_SECP_NEWTLSPSK = 2, - NVME_AUTH_SECP_REPLACETLSPSK = 3, -}; - -union nvmf_auth_protocol { - struct nvmf_auth_dhchap_protocol_descriptor dhchap; -}; - -struct nvmf_auth_dhchap_negotiate_data { - __u8 auth_type; - __u8 auth_id; - __le16 rsvd; - __le16 t_id; - __u8 sc_c; - __u8 napd; - union nvmf_auth_protocol auth_protocol[0]; -}; - -struct nvmf_auth_dhchap_challenge_data { - __u8 auth_type; - __u8 auth_id; - __u16 rsvd1; - __le16 t_id; - __u8 hl; - __u8 rsvd2; - __u8 hashid; - __u8 dhgid; - __le16 dhvlen; - __le32 seqnum; - __u8 cval[0]; -}; - -struct nvmf_auth_dhchap_reply_data { - __u8 auth_type; - __u8 auth_id; - __le16 rsvd1; - __le16 t_id; - __u8 hl; - __u8 rsvd2; - __u8 cvalid; - __u8 rsvd3; - __le16 dhvlen; - __le32 seqnum; - __u8 rval[0]; -}; - -struct nvmf_auth_dhchap_success1_data { - __u8 auth_type; - __u8 auth_id; - __le16 rsvd1; - __le16 t_id; - __u8 hl; - __u8 rsvd2; - __u8 rvalid; - __u8 rsvd3[7]; - __u8 rval[0]; -}; - -struct nvmf_auth_dhchap_success2_data { - __u8 auth_type; - __u8 auth_id; - __le16 rsvd1; - __le16 t_id; - __u8 rsvd2[10]; -}; - -struct nvmf_auth_dhchap_failure_data { - __u8 auth_type; - __u8 auth_id; - __le16 rsvd1; - __le16 t_id; - __u8 rescode; - __u8 rescode_exp; -}; - -enum { - NVME_AUTH_DHCHAP_FAILURE_REASON_FAILED = 1, -}; - -enum { - NVME_AUTH_DHCHAP_FAILURE_FAILED = 1, - NVME_AUTH_DHCHAP_FAILURE_NOT_USABLE = 2, - NVME_AUTH_DHCHAP_FAILURE_CONCAT_MISMATCH = 3, - NVME_AUTH_DHCHAP_FAILURE_HASH_UNUSABLE = 4, - NVME_AUTH_DHCHAP_FAILURE_DHGROUP_UNUSABLE = 5, - NVME_AUTH_DHCHAP_FAILURE_INCORRECT_PAYLOAD = 6, - NVME_AUTH_DHCHAP_FAILURE_INCORRECT_MESSAGE = 7, -}; - -struct nvme_dhchap_queue_context { - struct list_head entry; - struct work_struct auth_work; - struct nvme_ctrl *ctrl; - struct crypto_shash *shash_tfm; - struct crypto_kpp *dh_tfm; - struct nvme_dhchap_key *transformed_key; - void *buf; - int qid; - int error; - u32 s1; - u32 s2; - bool bi_directional; - bool authenticated; - u16 transaction; - u8 status; - u8 dhgroup_id; - u8 hash_id; - u8 sc_c; - size_t hash_len; - u8 c1[64]; - u8 c2[64]; - u8 response[64]; - u8 *ctrl_key; - u8 *host_key; - u8 *sess_key; - int ctrl_key_len; - int host_key_len; - int sess_key_len; -}; - -enum ata_lpm_hints { - ATA_LPM_EMPTY = 1, - ATA_LPM_HIPM = 2, - ATA_LPM_WAKE_ONLY = 4, -}; - -enum { - ATA_EH_SPDN_NCQ_OFF = 1, - ATA_EH_SPDN_SPEED_DOWN = 2, - ATA_EH_SPDN_FALLBACK_TO_PIO = 4, - ATA_EH_SPDN_KEEP_ERRORS = 8, - ATA_EFLAG_IS_IO = 1, - ATA_EFLAG_DUBIOUS_XFER = 2, - ATA_EFLAG_OLD_ER = -2147483648, - ATA_ECAT_NONE = 0, - ATA_ECAT_ATA_BUS = 1, - ATA_ECAT_TOUT_HSM = 2, - ATA_ECAT_UNK_DEV = 3, - ATA_ECAT_DUBIOUS_NONE = 4, - ATA_ECAT_DUBIOUS_ATA_BUS = 5, - ATA_ECAT_DUBIOUS_TOUT_HSM = 6, - ATA_ECAT_DUBIOUS_UNK_DEV = 7, - ATA_ECAT_NR = 8, - ATA_EH_CMD_DFL_TIMEOUT = 5000, - ATA_EH_RESET_COOL_DOWN = 5000, - ATA_EH_PRERESET_TIMEOUT = 10000, - ATA_EH_FASTDRAIN_INTERVAL = 3000, - ATA_EH_UA_TRIES = 5, - ATA_EH_PROBE_TRIAL_INTERVAL = 60000, - ATA_EH_PROBE_TRIALS = 2, -}; - -struct ata_eh_cmd_timeout_ent { - const u8 *commands; - const unsigned int *timeouts; -}; - -struct speed_down_verdict_arg { - u64 since; - int xfer_ok; - int nr_errors[8]; -}; - -struct sis_chipset { - u16 device; - const struct ata_port_info *info; -}; - -struct sis_laptop { - u16 device; - u16 subvendor; - u16 subdevice; -}; - -struct drm_mode_map_dumb { - __u32 handle; - __u32 pad; - __u64 offset; -}; - -struct drm_mode_destroy_dumb { - __u32 handle; -}; - -struct drm_mm_scan { - struct drm_mm *mm; - u64 size; - u64 alignment; - u64 remainder_mask; - u64 range_start; - u64 range_end; - u64 hit_start; - u64 hit_end; - long unsigned int color; - enum drm_mm_insert_mode mode; -}; - -struct drm_mode_card_res { - __u64 fb_id_ptr; - __u64 crtc_id_ptr; - __u64 connector_id_ptr; - __u64 encoder_id_ptr; - __u32 count_fbs; - __u32 count_crtcs; - __u32 count_connectors; - __u32 count_encoders; - __u32 min_width; - __u32 max_width; - __u32 min_height; - __u32 max_height; -}; - -struct drm_connector_list_iter { - struct drm_device *dev; - struct drm_connector *conn; -}; - -struct drm_prime_handle { - __u32 handle; - __u32 flags; - __s32 fd; -}; - -struct drm_prime_member { - struct dma_buf *dma_buf; - uint32_t handle; - struct rb_node dmabuf_rb; - struct rb_node handle_rb; -}; - -struct drm_crtc_get_sequence { - __u32 crtc_id; - __u32 active; - __u64 sequence; - __s64 sequence_ns; -}; - -struct drm_crtc_queue_sequence { - __u32 crtc_id; - __u32 flags; - __u64 sequence; - __u64 user_data; -}; - -typedef bool (*drm_vblank_get_scanout_position_func)(struct drm_crtc *, bool, int *, int *, ktime_t *, ktime_t *, const struct drm_display_mode *); - -struct drm_client_dev; - -struct drm_client_funcs { - struct module *owner; - void (*unregister)(struct drm_client_dev *); - int (*restore)(struct drm_client_dev *); - int (*hotplug)(struct drm_client_dev *); - int (*suspend)(struct drm_client_dev *, bool); - int (*resume)(struct drm_client_dev *, bool); -}; - -struct drm_client_dev { - struct drm_device *dev; - const char *name; - struct list_head list; - const struct drm_client_funcs *funcs; - struct drm_file *file; - struct mutex modeset_mutex; - struct drm_mode_set *modesets; - bool suspended; - bool hotplug_pending; - bool hotplug_failed; -}; - -struct drm_client_offset { - int x; - int y; -}; - -struct drm_mode_rect { - __s32 x1; - __s32 y1; - __s32 x2; - __s32 y2; -}; - -enum acpi_reconfig_event { - ACPI_RECONFIG_DEVICE_ADD = 0, - ACPI_RECONFIG_DEVICE_REMOVE = 1, -}; - -struct ptp_system_timestamp { - struct timespec64 pre_ts; - struct timespec64 post_ts; - clockid_t clockid; -}; - -struct spi_offload_ops; - -struct spi_offload { - struct device *provider_dev; - void *priv; - const struct spi_offload_ops *ops; - u32 xfer_flags; -}; - -struct spi_offload_ops { - int (*trigger_enable)(struct spi_offload *); - void (*trigger_disable)(struct spi_offload *); - struct dma_chan * (*tx_stream_request_dma_chan)(struct spi_offload *); - struct dma_chan * (*rx_stream_request_dma_chan)(struct spi_offload *); -}; - -typedef void (*spi_res_release_t)(struct spi_controller *, struct spi_message *, void *); - -struct spi_res { - struct list_head entry; - spi_res_release_t release; - long long unsigned int data[0]; -}; - -struct spi_replaced_transfers; - -typedef void (*spi_replaced_release_t)(struct spi_controller *, struct spi_message *, struct spi_replaced_transfers *); - -struct spi_replaced_transfers { - spi_replaced_release_t release; - void *extradata; - struct list_head replaced_transfers; - struct list_head *replaced_after; - size_t inserted; - struct spi_transfer inserted_transfers[0]; -}; - -struct spi_board_info { - char modalias[32]; - const void *platform_data; - const struct software_node *swnode; - void *controller_data; - int irq; - u32 max_speed_hz; - u16 bus_num; - u16 chip_select; - u32 mode; -}; - -enum spi_mem_data_dir { - SPI_MEM_NO_DATA = 0, - SPI_MEM_DATA_IN = 1, - SPI_MEM_DATA_OUT = 2, -}; - -struct spi_mem_op { - struct { - u8 nbytes; - u8 buswidth; - u8 dtr: 1; - u8 __pad: 7; - u16 opcode; - } cmd; - struct { - u8 nbytes; - u8 buswidth; - u8 dtr: 1; - u8 __pad: 7; - u64 val; - } addr; - struct { - u8 nbytes; - u8 buswidth; - u8 dtr: 1; - u8 __pad: 7; - } dummy; - struct { - u8 buswidth; - u8 dtr: 1; - u8 ecc: 1; - u8 swap16: 1; - u8 __pad: 5; - enum spi_mem_data_dir dir; - unsigned int nbytes; - union { - void *in; - const void *out; - } buf; - } data; - unsigned int max_freq; -}; - -struct spi_mem_dirmap_info { - struct spi_mem_op op_tmpl; - u64 offset; - u64 length; -}; - -struct spi_mem_dirmap_desc { - struct spi_mem *mem; - struct spi_mem_dirmap_info info; - unsigned int nodirmap; - void *priv; -}; - -struct spi_mem { - struct spi_device *spi; - void *drvpriv; - const char *name; -}; - -struct trace_event_raw_spi_controller { - struct trace_entry ent; - int bus_num; - char __data[0]; -}; - -struct trace_event_raw_spi_setup { - struct trace_entry ent; - int bus_num; - int chip_select; - long unsigned int mode; - unsigned int bits_per_word; - unsigned int max_speed_hz; - int status; - char __data[0]; -}; - -struct trace_event_raw_spi_set_cs { - struct trace_entry ent; - int bus_num; - int chip_select; - long unsigned int mode; - bool enable; - char __data[0]; -}; - -struct trace_event_raw_spi_message { - struct trace_entry ent; - int bus_num; - int chip_select; - struct spi_message *msg; - char __data[0]; -}; - -struct trace_event_raw_spi_message_done { - struct trace_entry ent; - int bus_num; - int chip_select; - struct spi_message *msg; - unsigned int frame; - unsigned int actual; - char __data[0]; -}; - -struct trace_event_raw_spi_transfer { - struct trace_entry ent; - int bus_num; - int chip_select; - struct spi_transfer *xfer; - int len; - u32 __data_loc_rx_buf; - u32 __data_loc_tx_buf; - char __data[0]; -}; - -struct trace_event_data_offsets_spi_controller {}; - -struct trace_event_data_offsets_spi_setup {}; - -struct trace_event_data_offsets_spi_set_cs {}; - -struct trace_event_data_offsets_spi_message {}; - -struct trace_event_data_offsets_spi_message_done {}; - -struct trace_event_data_offsets_spi_transfer { - u32 rx_buf; - const void *rx_buf_ptr_; - u32 tx_buf; - const void *tx_buf_ptr_; -}; - -typedef void (*btf_trace_spi_controller_idle)(void *, struct spi_controller *); - -typedef void (*btf_trace_spi_controller_busy)(void *, struct spi_controller *); - -typedef void (*btf_trace_spi_setup)(void *, struct spi_device *, int); - -typedef void (*btf_trace_spi_set_cs)(void *, struct spi_device *, bool); - -typedef void (*btf_trace_spi_message_submit)(void *, struct spi_message *); - -typedef void (*btf_trace_spi_message_start)(void *, struct spi_message *); - -typedef void (*btf_trace_spi_message_done)(void *, struct spi_message *); - -typedef void (*btf_trace_spi_transfer_start)(void *, struct spi_message *, struct spi_transfer *); - -typedef void (*btf_trace_spi_transfer_stop)(void *, struct spi_message *, struct spi_transfer *); - -struct boardinfo { - struct list_head list; - struct spi_board_info board_info; -}; - -struct acpi_spi_lookup { - struct spi_controller *ctlr; - u32 max_speed_hz; - u32 mode; - int irq; - u8 bits_per_word; - u8 chip_select; - int n; - int index; -}; - -struct swmii_regs { - u16 bmsr; - u16 lpa; - u16 lpagb; - u16 estat; -}; - -enum { - SWMII_SPEED_10 = 0, - SWMII_SPEED_100 = 1, - SWMII_SPEED_1000 = 2, - SWMII_DUPLEX_HALF = 0, - SWMII_DUPLEX_FULL = 1, -}; - -enum { - ETHTOOL_A_CABLE_RESULT_CODE_UNSPEC = 0, - ETHTOOL_A_CABLE_RESULT_CODE_OK = 1, - ETHTOOL_A_CABLE_RESULT_CODE_OPEN = 2, - ETHTOOL_A_CABLE_RESULT_CODE_SAME_SHORT = 3, - ETHTOOL_A_CABLE_RESULT_CODE_CROSS_SHORT = 4, - ETHTOOL_A_CABLE_RESULT_CODE_IMPEDANCE_MISMATCH = 5, - ETHTOOL_A_CABLE_RESULT_CODE_NOISE = 6, - ETHTOOL_A_CABLE_RESULT_CODE_RESOLUTION_NOT_POSSIBLE = 7, -}; - -struct mdiobus_devres { - struct mii_bus *mii; -}; - -enum ethtool_c33_pse_ext_state { - ETHTOOL_C33_PSE_EXT_STATE_ERROR_CONDITION = 1, - ETHTOOL_C33_PSE_EXT_STATE_MR_MPS_VALID = 2, - ETHTOOL_C33_PSE_EXT_STATE_MR_PSE_ENABLE = 3, - ETHTOOL_C33_PSE_EXT_STATE_OPTION_DETECT_TED = 4, - ETHTOOL_C33_PSE_EXT_STATE_OPTION_VPORT_LIM = 5, - ETHTOOL_C33_PSE_EXT_STATE_OVLD_DETECTED = 6, - ETHTOOL_C33_PSE_EXT_STATE_PD_DLL_POWER_TYPE = 7, - ETHTOOL_C33_PSE_EXT_STATE_POWER_NOT_AVAILABLE = 8, - ETHTOOL_C33_PSE_EXT_STATE_SHORT_DETECTED = 9, -}; - -enum ethtool_c33_pse_ext_substate_error_condition { - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_NON_EXISTING_PORT = 1, - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_UNDEFINED_PORT = 2, - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_INTERNAL_HW_FAULT = 3, - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_COMM_ERROR_AFTER_FORCE_ON = 4, - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_UNKNOWN_PORT_STATUS = 5, - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_HOST_CRASH_TURN_OFF = 6, - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_HOST_CRASH_FORCE_SHUTDOWN = 7, - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_CONFIG_CHANGE = 8, - ETHTOOL_C33_PSE_EXT_SUBSTATE_ERROR_CONDITION_DETECTED_OVER_TEMP = 9, -}; - -enum ethtool_c33_pse_ext_substate_mr_pse_enable { - ETHTOOL_C33_PSE_EXT_SUBSTATE_MR_PSE_ENABLE_DISABLE_PIN_ACTIVE = 1, -}; - -enum ethtool_c33_pse_ext_substate_option_detect_ted { - ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_DETECT_TED_DET_IN_PROCESS = 1, - ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_DETECT_TED_CONNECTION_CHECK_ERROR = 2, -}; - -enum ethtool_c33_pse_ext_substate_option_vport_lim { - ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_VPORT_LIM_HIGH_VOLTAGE = 1, - ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_VPORT_LIM_LOW_VOLTAGE = 2, - ETHTOOL_C33_PSE_EXT_SUBSTATE_OPTION_VPORT_LIM_VOLTAGE_INJECTION = 3, -}; - -enum ethtool_c33_pse_ext_substate_ovld_detected { - ETHTOOL_C33_PSE_EXT_SUBSTATE_OVLD_DETECTED_OVERLOAD = 1, -}; - -enum ethtool_c33_pse_ext_substate_power_not_available { - ETHTOOL_C33_PSE_EXT_SUBSTATE_POWER_NOT_AVAILABLE_BUDGET_EXCEEDED = 1, - ETHTOOL_C33_PSE_EXT_SUBSTATE_POWER_NOT_AVAILABLE_PORT_PW_LIMIT_EXCEEDS_CONTROLLER_BUDGET = 2, - ETHTOOL_C33_PSE_EXT_SUBSTATE_POWER_NOT_AVAILABLE_PD_REQUEST_EXCEEDS_PORT_LIMIT = 3, - ETHTOOL_C33_PSE_EXT_SUBSTATE_POWER_NOT_AVAILABLE_HW_PW_LIMIT = 4, -}; - -enum ethtool_c33_pse_ext_substate_short_detected { - ETHTOOL_C33_PSE_EXT_SUBSTATE_SHORT_DETECTED_SHORT_CONDITION = 1, -}; - -enum ethtool_pse_types { - ETHTOOL_PSE_UNKNOWN = 1, - ETHTOOL_PSE_PODL = 2, - ETHTOOL_PSE_C33 = 4, -}; - -enum ethtool_c33_pse_admin_state { - ETHTOOL_C33_PSE_ADMIN_STATE_UNKNOWN = 1, - ETHTOOL_C33_PSE_ADMIN_STATE_DISABLED = 2, - ETHTOOL_C33_PSE_ADMIN_STATE_ENABLED = 3, -}; - -enum ethtool_c33_pse_pw_d_status { - ETHTOOL_C33_PSE_PW_D_STATUS_UNKNOWN = 1, - ETHTOOL_C33_PSE_PW_D_STATUS_DISABLED = 2, - ETHTOOL_C33_PSE_PW_D_STATUS_SEARCHING = 3, - ETHTOOL_C33_PSE_PW_D_STATUS_DELIVERING = 4, - ETHTOOL_C33_PSE_PW_D_STATUS_TEST = 5, - ETHTOOL_C33_PSE_PW_D_STATUS_FAULT = 6, - ETHTOOL_C33_PSE_PW_D_STATUS_OTHERFAULT = 7, -}; - -enum ethtool_podl_pse_admin_state { - ETHTOOL_PODL_PSE_ADMIN_STATE_UNKNOWN = 1, - ETHTOOL_PODL_PSE_ADMIN_STATE_DISABLED = 2, - ETHTOOL_PODL_PSE_ADMIN_STATE_ENABLED = 3, -}; - -enum ethtool_podl_pse_pw_d_status { - ETHTOOL_PODL_PSE_PW_D_STATUS_UNKNOWN = 1, - ETHTOOL_PODL_PSE_PW_D_STATUS_DISABLED = 2, - ETHTOOL_PODL_PSE_PW_D_STATUS_SEARCHING = 3, - ETHTOOL_PODL_PSE_PW_D_STATUS_DELIVERING = 4, - ETHTOOL_PODL_PSE_PW_D_STATUS_SLEEP = 5, - ETHTOOL_PODL_PSE_PW_D_STATUS_IDLE = 6, - ETHTOOL_PODL_PSE_PW_D_STATUS_ERROR = 7, -}; - -enum ethtool_pse_event { - ETHTOOL_PSE_EVENT_OVER_CURRENT = 1, - ETHTOOL_PSE_EVENT_OVER_TEMP = 2, - ETHTOOL_C33_PSE_EVENT_DETECTION = 4, - ETHTOOL_C33_PSE_EVENT_CLASSIFICATION = 8, - ETHTOOL_C33_PSE_EVENT_DISCONNECTION = 16, - ETHTOOL_PSE_EVENT_OVER_BUDGET = 32, - ETHTOOL_PSE_EVENT_SW_PW_CONTROL_ERROR = 64, -}; - -struct pse_controller_dev; - -struct pse_control { - struct pse_controller_dev *pcdev; - struct regulator *ps; - struct list_head list; - unsigned int id; - struct kref refcnt; - struct phy_device *attached_phydev; -}; - -struct ethtool_c33_pse_ext_state_info { - enum ethtool_c33_pse_ext_state c33_pse_ext_state; - union { - enum ethtool_c33_pse_ext_substate_error_condition error_condition; - enum ethtool_c33_pse_ext_substate_mr_pse_enable mr_pse_enable; - enum ethtool_c33_pse_ext_substate_option_detect_ted option_detect_ted; - enum ethtool_c33_pse_ext_substate_option_vport_lim option_vport_lim; - enum ethtool_c33_pse_ext_substate_ovld_detected ovld_detected; - enum ethtool_c33_pse_ext_substate_power_not_available power_not_available; - enum ethtool_c33_pse_ext_substate_short_detected short_detected; - u32 __c33_pse_ext_substate; - }; -}; - -struct ethtool_c33_pse_pw_limit_range { - u32 min; - u32 max; -}; - -struct pse_irq_desc { - const char *name; - int (*map_event)(int, struct pse_controller_dev *, long unsigned int *, long unsigned int *); -}; - -struct pse_ntf { - int id; - long unsigned int notifs; -}; - -struct pse_controller_ops; - -struct pse_pi; - -struct pse_controller_dev { - const struct pse_controller_ops *ops; - struct module *owner; - struct list_head list; - struct list_head pse_control_head; - struct device *dev; - int of_pse_n_cells; - unsigned int nr_lines; - struct mutex lock; - enum ethtool_pse_types types; - struct pse_pi *pi; - bool no_of_pse_pi; - int irq; - unsigned int pis_prio_max; - u32 supp_budget_eval_strategies; - struct work_struct ntf_work; - struct { - union { - struct __kfifo kfifo; - struct pse_ntf *type; - const struct pse_ntf *const_type; - char (*rectype)[0]; - struct pse_ntf *ptr; - const struct pse_ntf *ptr_const; - }; - struct pse_ntf buf[0]; - } ntf_fifo; - spinlock_t ntf_fifo_lock; -}; - -struct pse_control_config { - enum ethtool_podl_pse_admin_state podl_admin_control; - enum ethtool_c33_pse_admin_state c33_admin_control; -}; - -struct pse_admin_state { - enum ethtool_podl_pse_admin_state podl_admin_state; - enum ethtool_c33_pse_admin_state c33_admin_state; -}; - -struct pse_pw_status { - enum ethtool_podl_pse_pw_d_status podl_pw_status; - enum ethtool_c33_pse_pw_d_status c33_pw_status; -}; - -struct pse_ext_state_info { - struct ethtool_c33_pse_ext_state_info c33_ext_state_info; -}; - -struct pse_pw_limit_ranges { - struct ethtool_c33_pse_pw_limit_range *c33_pw_limit_ranges; -}; - -struct ethtool_pse_control_status { - u32 pw_d_id; - enum ethtool_podl_pse_admin_state podl_admin_state; - enum ethtool_podl_pse_pw_d_status podl_pw_status; - enum ethtool_c33_pse_admin_state c33_admin_state; - enum ethtool_c33_pse_pw_d_status c33_pw_status; - u32 c33_pw_class; - u32 c33_actual_pw; - struct ethtool_c33_pse_ext_state_info c33_ext_state_info; - u32 c33_avail_pw_limit; - struct ethtool_c33_pse_pw_limit_range *c33_pw_limit_ranges; - u32 c33_pw_limit_nb_ranges; - u32 prio_max; - u32 prio; -}; - -struct pse_controller_ops { - int (*setup_pi_matrix)(struct pse_controller_dev *); - int (*pi_get_admin_state)(struct pse_controller_dev *, int, struct pse_admin_state *); - int (*pi_get_pw_status)(struct pse_controller_dev *, int, struct pse_pw_status *); - int (*pi_get_ext_state)(struct pse_controller_dev *, int, struct pse_ext_state_info *); - int (*pi_get_pw_class)(struct pse_controller_dev *, int); - int (*pi_get_actual_pw)(struct pse_controller_dev *, int); - int (*pi_enable)(struct pse_controller_dev *, int); - int (*pi_disable)(struct pse_controller_dev *, int); - int (*pi_get_voltage)(struct pse_controller_dev *, int); - int (*pi_get_pw_limit)(struct pse_controller_dev *, int); - int (*pi_set_pw_limit)(struct pse_controller_dev *, int, int); - int (*pi_get_pw_limit_ranges)(struct pse_controller_dev *, int, struct pse_pw_limit_ranges *); - int (*pi_get_prio)(struct pse_controller_dev *, int); - int (*pi_set_prio)(struct pse_controller_dev *, int, unsigned int); - int (*pi_get_pw_req)(struct pse_controller_dev *, int); -}; - -enum pse_pi_pairset_pinout { - ALTERNATIVE_A = 0, - ALTERNATIVE_B = 1, -}; - -struct pse_pi_pairset { - enum pse_pi_pairset_pinout pinout; - struct device_node *np; -}; - -struct pse_power_domain; - -struct pse_pi { - struct pse_pi_pairset pairset[2]; - struct device_node *np; - struct regulator_dev *rdev; - bool admin_state_enabled; - struct pse_power_domain *pw_d; - int prio; - bool isr_pd_detected; - int pw_allocated_mW; -}; - -struct pse_power_domain { - int id; - struct regulator *supply; - struct kref refcnt; - u32 budget_eval_strategy; -}; - -enum pse_budget_eval_strategies { - PSE_BUDGET_EVAL_STRAT_DISABLED = 1, - PSE_BUDGET_EVAL_STRAT_STATIC = 2, - PSE_BUDGET_EVAL_STRAT_DYNAMIC = 4, -}; - -struct pse_irq { - struct pse_controller_dev *pcdev; - struct pse_irq_desc desc; - long unsigned int *notifs; -}; - -enum ifla_vxlan_df { - VXLAN_DF_UNSET = 0, - VXLAN_DF_SET = 1, - VXLAN_DF_INHERIT = 2, - __VXLAN_DF_END = 3, - VXLAN_DF_MAX = 2, -}; - -enum ifla_vxlan_label_policy { - VXLAN_LABEL_FIXED = 0, - VXLAN_LABEL_INHERIT = 1, - __VXLAN_LABEL_END = 2, - VXLAN_LABEL_MAX = 1, -}; - -struct vxlanhdr { - __be32 vx_flags; - __be32 vx_vni; -}; - -struct vxlan_sock { - struct hlist_node hlist; - struct socket *sock; - struct hlist_head vni_list[1024]; - refcount_t refcnt; - u32 flags; -}; - -union vxlan_addr { - struct sockaddr_in sin; - struct sockaddr_in6 sin6; - struct sockaddr sa; -}; - -struct vxlan_rdst { - union vxlan_addr remote_ip; - __be16 remote_port; - u8 offloaded: 1; - __be32 remote_vni; - u32 remote_ifindex; - struct net_device *remote_dev; - struct list_head list; - struct callback_head rcu; - struct dst_cache dst_cache; -}; - -struct vxlan_config { - union vxlan_addr remote_ip; - union vxlan_addr saddr; - __be32 vni; - int remote_ifindex; - int mtu; - __be16 dst_port; - u16 port_min; - u16 port_max; - u8 tos; - u8 ttl; - __be32 label; - enum ifla_vxlan_label_policy label_policy; - u32 flags; - long unsigned int age_interval; - unsigned int addrmax; - bool no_share; - enum ifla_vxlan_df df; - struct vxlanhdr reserved_bits; -}; - -struct vxlan_vni_stats { - u64 rx_packets; - u64 rx_bytes; - u64 rx_drops; - u64 rx_errors; - u64 tx_packets; - u64 tx_bytes; - u64 tx_drops; - u64 tx_errors; -}; - -struct vxlan_vni_stats_pcpu { - struct vxlan_vni_stats stats; - struct u64_stats_sync syncp; -}; - -struct vxlan_dev; - -struct vxlan_dev_node { - struct hlist_node hlist; - struct vxlan_dev *vxlan; -}; - -struct vxlan_vni_group; - -struct vxlan_dev { - struct vxlan_dev_node hlist4; - struct vxlan_dev_node hlist6; - struct list_head next; - struct vxlan_sock *vn4_sock; - struct vxlan_sock *vn6_sock; - struct net_device *dev; - struct net *net; - struct vxlan_rdst default_dst; - struct ip_tunnel_fan fan; - struct timer_list age_timer; - spinlock_t hash_lock; - unsigned int addrcnt; - struct gro_cells gro_cells; - struct vxlan_config cfg; - struct vxlan_vni_group *vnigrp; - struct rhashtable fdb_hash_tbl; - struct rhashtable mdb_tbl; - struct hlist_head fdb_list; - struct hlist_head mdb_list; - unsigned int mdb_seq; -}; - -struct vxlan_vni_node { - struct rhash_head vnode; - struct vxlan_dev_node hlist4; - struct vxlan_dev_node hlist6; - struct list_head vlist; - __be32 vni; - union vxlan_addr remote_ip; - struct vxlan_vni_stats_pcpu *stats; - struct callback_head rcu; -}; - -struct vxlan_vni_group { - struct rhashtable vni_hash; - struct list_head vni_list; - u32 num_vnis; -}; - -struct vxlan_net { - struct list_head vxlan_list; - struct hlist_head sock_list[256]; - struct notifier_block nexthop_notifier_block; -}; - -struct tunnel_msg { - __u8 family; - __u8 flags; - __u16 reserved2; - __u32 ifindex; -}; - -enum { - VNIFILTER_ENTRY_STATS_UNSPEC = 0, - VNIFILTER_ENTRY_STATS_RX_BYTES = 1, - VNIFILTER_ENTRY_STATS_RX_PKTS = 2, - VNIFILTER_ENTRY_STATS_RX_DROPS = 3, - VNIFILTER_ENTRY_STATS_RX_ERRORS = 4, - VNIFILTER_ENTRY_STATS_TX_BYTES = 5, - VNIFILTER_ENTRY_STATS_TX_PKTS = 6, - VNIFILTER_ENTRY_STATS_TX_DROPS = 7, - VNIFILTER_ENTRY_STATS_TX_ERRORS = 8, - VNIFILTER_ENTRY_STATS_PAD = 9, - __VNIFILTER_ENTRY_STATS_MAX = 10, -}; - -enum { - VXLAN_VNIFILTER_ENTRY_UNSPEC = 0, - VXLAN_VNIFILTER_ENTRY_START = 1, - VXLAN_VNIFILTER_ENTRY_END = 2, - VXLAN_VNIFILTER_ENTRY_GROUP = 3, - VXLAN_VNIFILTER_ENTRY_GROUP6 = 4, - VXLAN_VNIFILTER_ENTRY_STATS = 5, - __VXLAN_VNIFILTER_ENTRY_MAX = 6, -}; - -enum { - VXLAN_VNIFILTER_UNSPEC = 0, - VXLAN_VNIFILTER_ENTRY = 1, - __VXLAN_VNIFILTER_MAX = 2, -}; - -enum { - VXLAN_VNI_STATS_RX = 0, - VXLAN_VNI_STATS_RX_DROPS = 1, - VXLAN_VNI_STATS_RX_ERRORS = 2, - VXLAN_VNI_STATS_TX = 3, - VXLAN_VNI_STATS_TX_DROPS = 4, - VXLAN_VNI_STATS_TX_ERRORS = 5, -}; - -enum { - NET_SHAPER_A_CAPS_IFINDEX = 1, - NET_SHAPER_A_CAPS_SCOPE = 2, - NET_SHAPER_A_CAPS_SUPPORT_METRIC_BPS = 3, - NET_SHAPER_A_CAPS_SUPPORT_METRIC_PPS = 4, - NET_SHAPER_A_CAPS_SUPPORT_NESTING = 5, - NET_SHAPER_A_CAPS_SUPPORT_BW_MIN = 6, - NET_SHAPER_A_CAPS_SUPPORT_BW_MAX = 7, - NET_SHAPER_A_CAPS_SUPPORT_BURST = 8, - NET_SHAPER_A_CAPS_SUPPORT_PRIORITY = 9, - NET_SHAPER_A_CAPS_SUPPORT_WEIGHT = 10, - __NET_SHAPER_A_CAPS_MAX = 11, - NET_SHAPER_A_CAPS_MAX = 10, -}; - -enum gdma_work_request_flags { - GDMA_WR_NONE = 0, - GDMA_WR_OOB_IN_SGL = 1, - GDMA_WR_PAD_BY_SGE0 = 2, -}; - -enum gdma_eqe_type { - GDMA_EQE_COMPLETION = 3, - GDMA_EQE_TEST_EVENT = 64, - GDMA_EQE_HWC_INIT_EQ_ID_DB = 129, - GDMA_EQE_HWC_INIT_DATA = 130, - GDMA_EQE_HWC_INIT_DONE = 131, - GDMA_EQE_HWC_FPGA_RECONFIG = 132, - GDMA_EQE_HWC_SOC_RECONFIG_DATA = 133, - GDMA_EQE_HWC_SOC_SERVICE = 134, - GDMA_EQE_HWC_RESET_REQUEST = 135, - GDMA_EQE_RNIC_QP_FATAL = 176, -}; - -enum { - GDMA_DEVICE_NONE = 0, - GDMA_DEVICE_HWC = 1, - GDMA_DEVICE_MANA = 2, - GDMA_DEVICE_MANA_IB = 3, -}; - -enum gdma_service_type { - GDMA_SERVICE_TYPE_NONE = 0, - GDMA_SERVICE_TYPE_RDMA_SUSPEND = 1, - GDMA_SERVICE_TYPE_RDMA_RESUME = 2, -}; - -struct mana_service_work { - struct work_struct work; - struct gdma_dev *gdma_dev; - enum gdma_service_type event; -}; - -struct gdma_msg_hdr { - u32 hdr_type; - u32 msg_type; - u16 msg_version; - u16 hwc_msg_id; - u32 msg_size; -}; - -struct gdma_req_hdr { - struct gdma_msg_hdr req; - struct gdma_msg_hdr resp; - struct gdma_dev_id dev_id; - u32 activity_id; -}; - -struct gdma_resp_hdr { - struct gdma_msg_hdr response; - struct gdma_dev_id dev_id; - u32 activity_id; - u32 status; - u32 reserved; -}; - -struct gdma_queue_spec { - enum gdma_queue_type type; - bool monitor_avl_buf; - unsigned int queue_size; - union { - struct { - gdma_eq_callback *callback; - void *context; - long unsigned int log2_throttle_limit; - unsigned int msix_index; - } eq; - struct { - gdma_cq_callback *callback; - void *context; - struct gdma_queue *parent_eq; - } cq; - }; -}; - -enum gdma_context_flags { - GC_PROBE_SUCCEEDED = 0, - GC_IN_SERVICE = 1, -}; - -struct mana_skb_head { - dma_addr_t dma_handle[19]; - u32 size[19]; -}; - -enum mana_tx_pkt_format { - MANA_SHORT_PKT_FMT = 0, - MANA_LONG_PKT_FMT = 1, -}; - -struct mana_tx_short_oob { - u32 pkt_fmt: 2; - u32 is_outer_ipv4: 1; - u32 is_outer_ipv6: 1; - u32 comp_iphdr_csum: 1; - u32 comp_tcp_csum: 1; - u32 comp_udp_csum: 1; - u32 supress_txcqe_gen: 1; - u32 vcq_num: 24; - u32 trans_off: 10; - u32 vsq_frame: 14; - u32 short_vp_offset: 8; -}; - -struct mana_tx_long_oob { - u32 is_encap: 1; - u32 inner_is_ipv6: 1; - u32 inner_tcp_opt: 1; - u32 inject_vlan_pri_tag: 1; - u32 reserved1: 12; - u32 pcp: 3; - u32 dei: 1; - u32 vlan_id: 12; - u32 inner_frame_offset: 10; - u32 inner_ip_rel_offset: 6; - u32 long_vp_offset: 12; - u32 reserved2: 4; - u32 reserved3; - u32 reserved4; -}; - -struct mana_tx_oob { - struct mana_tx_short_oob s_oob; - struct mana_tx_long_oob l_oob; -}; - -enum mana_cqe_type { - CQE_INVALID = 0, - CQE_RX_OKAY = 1, - CQE_RX_COALESCED_4 = 2, - CQE_RX_OBJECT_FENCE = 3, - CQE_RX_TRUNCATED = 4, - CQE_TX_OKAY = 32, - CQE_TX_SA_DROP = 33, - CQE_TX_MTU_DROP = 34, - CQE_TX_INVALID_OOB = 35, - CQE_TX_INVALID_ETH_TYPE = 36, - CQE_TX_HDR_PROCESSING_ERROR = 37, - CQE_TX_VF_DISABLED = 38, - CQE_TX_VPORT_IDX_OUT_OF_RANGE = 39, - CQE_TX_VPORT_DISABLED = 40, - CQE_TX_VLAN_TAGGING_VIOLATION = 41, -}; - -struct mana_cqe_header { - u32 cqe_type: 6; - u32 client_type: 2; - u32 vendor_err: 24; -}; - -struct mana_rxcomp_perpkt_info { - u32 pkt_len: 16; - u32 reserved1: 16; - u32 reserved2; - u32 pkt_hash; -}; - -struct mana_rxcomp_oob { - struct mana_cqe_header cqe_hdr; - u32 rx_vlan_id: 12; - u32 rx_vlantag_present: 1; - u32 rx_outer_iphdr_csum_succeed: 1; - u32 rx_outer_iphdr_csum_fail: 1; - u32 reserved1: 1; - u32 rx_hashtype: 9; - u32 rx_iphdr_csum_succeed: 1; - u32 rx_iphdr_csum_fail: 1; - u32 rx_tcp_csum_succeed: 1; - u32 rx_tcp_csum_fail: 1; - u32 rx_udp_csum_succeed: 1; - u32 rx_udp_csum_fail: 1; - u32 reserved2: 1; - struct mana_rxcomp_perpkt_info ppi[4]; - u32 rx_wqe_offset; -}; - -struct mana_tx_comp_oob { - struct mana_cqe_header cqe_hdr; - u32 tx_data_offset; - u32 tx_sgl_offset: 5; - u32 tx_wqe_offset: 27; - u32 reserved[12]; -}; - -struct mana_obj_spec { - u32 queue_index; - u64 gdma_region; - u32 queue_size; - u32 attached_eq; - u32 modr_ctx_id; -}; - -enum mana_command_code { - MANA_QUERY_DEV_CONFIG = 131073, - MANA_QUERY_GF_STAT = 131074, - MANA_CONFIG_VPORT_TX = 131075, - MANA_CREATE_WQ_OBJ = 131076, - MANA_DESTROY_WQ_OBJ = 131077, - MANA_FENCE_RQ = 131078, - MANA_CONFIG_VPORT_RX = 131079, - MANA_QUERY_VPORT_CONFIG = 131080, - MANA_QUERY_LINK_CONFIG = 131082, - MANA_SET_BW_CLAMP = 131083, - MANA_QUERY_PHY_STAT = 131084, - MANA_REGISTER_FILTER = 163840, - MANA_DEREGISTER_FILTER = 163841, - MANA_REGISTER_HW_PORT = 163843, - MANA_DEREGISTER_HW_PORT = 163844, -}; - -struct mana_query_link_config_req { - struct gdma_req_hdr hdr; - mana_handle_t vport; -}; - -struct mana_query_link_config_resp { - struct gdma_resp_hdr hdr; - u32 qos_speed_mbps; - u8 qos_unconfigured; - u8 reserved1[3]; - u32 link_speed_mbps; - u8 reserved2[4]; -}; - -struct mana_set_bw_clamp_req { - struct gdma_req_hdr hdr; - mana_handle_t vport; - enum TRI_STATE enable_clamping; - u32 link_speed_mbps; -}; - -struct mana_set_bw_clamp_resp { - struct gdma_resp_hdr hdr; - u8 qos_unconfigured; - u8 reserved[7]; -}; - -struct mana_query_device_cfg_req { - struct gdma_req_hdr hdr; - u64 mn_drv_cap_flags1; - u64 mn_drv_cap_flags2; - u64 mn_drv_cap_flags3; - u64 mn_drv_cap_flags4; - u32 proto_major_ver; - u32 proto_minor_ver; - u32 proto_micro_ver; - u32 reserved; -}; - -struct mana_query_device_cfg_resp { - struct gdma_resp_hdr hdr; - u64 pf_cap_flags1; - u64 pf_cap_flags2; - u64 pf_cap_flags3; - u64 pf_cap_flags4; - u16 max_num_vports; - u8 bm_hostmode; - u8 reserved; - u32 max_num_eqs; - u16 adapter_mtu; - u16 reserved2; - u32 reserved3; -}; - -struct mana_query_vport_cfg_req { - struct gdma_req_hdr hdr; - u32 vport_index; -}; - -struct mana_query_vport_cfg_resp { - struct gdma_resp_hdr hdr; - u32 max_num_sq; - u32 max_num_rq; - u32 num_indirection_ent; - u32 reserved1; - u8 mac_addr[6]; - u8 reserved2[2]; - mana_handle_t vport; -}; - -struct mana_config_vport_req { - struct gdma_req_hdr hdr; - mana_handle_t vport; - u32 pdid; - u32 doorbell_pageid; -}; - -struct mana_config_vport_resp { - struct gdma_resp_hdr hdr; - u16 tx_vport_offset; - u8 short_form_allowed; - u8 reserved; -}; - -struct mana_create_wqobj_req { - struct gdma_req_hdr hdr; - mana_handle_t vport; - u32 wq_type; - u32 reserved; - u64 wq_gdma_region; - u64 cq_gdma_region; - u32 wq_size; - u32 cq_size; - u32 cq_moderation_ctx_id; - u32 cq_parent_qid; -}; - -struct mana_create_wqobj_resp { - struct gdma_resp_hdr hdr; - u32 wq_id; - u32 cq_id; - mana_handle_t wq_obj; -}; - -struct mana_destroy_wqobj_req { - struct gdma_req_hdr hdr; - u32 wq_type; - u32 reserved; - mana_handle_t wq_obj_handle; -}; - -struct mana_destroy_wqobj_resp { - struct gdma_resp_hdr hdr; -}; - -struct mana_fence_rq_req { - struct gdma_req_hdr hdr; - mana_handle_t wq_obj_handle; -}; - -struct mana_fence_rq_resp { - struct gdma_resp_hdr hdr; -}; - -struct mana_query_gf_stat_req { - struct gdma_req_hdr hdr; - u64 req_stats; -}; - -struct mana_query_gf_stat_resp { - struct gdma_resp_hdr hdr; - u64 reported_stats; - u64 rx_discards_nowqe; - u64 rx_err_vport_disabled; - u64 hc_rx_bytes; - u64 hc_rx_ucast_pkts; - u64 hc_rx_ucast_bytes; - u64 hc_rx_bcast_pkts; - u64 hc_rx_bcast_bytes; - u64 hc_rx_mcast_pkts; - u64 hc_rx_mcast_bytes; - u64 tx_err_gf_disabled; - u64 tx_err_vport_disabled; - u64 tx_err_inval_vport_offset_pkt; - u64 tx_err_vlan_enforcement; - u64 tx_err_ethtype_enforcement; - u64 tx_err_SA_enforcement; - u64 tx_err_SQPDID_enforcement; - u64 tx_err_CQPDID_enforcement; - u64 tx_err_mtu_violation; - u64 tx_err_inval_oob; - u64 hc_tx_bytes; - u64 hc_tx_ucast_pkts; - u64 hc_tx_ucast_bytes; - u64 hc_tx_bcast_pkts; - u64 hc_tx_bcast_bytes; - u64 hc_tx_mcast_pkts; - u64 hc_tx_mcast_bytes; - u64 tx_err_gdma; -}; - -struct mana_query_phy_stat_req { - struct gdma_req_hdr hdr; - u64 req_stats; -}; - -struct mana_query_phy_stat_resp { - struct gdma_resp_hdr hdr; - u64 reported_stats; - u64 rx_pkt_drop_phy; - u64 tx_pkt_drop_phy; - u64 rx_pkt_tc0_phy; - u64 tx_pkt_tc0_phy; - u64 rx_pkt_tc1_phy; - u64 tx_pkt_tc1_phy; - u64 rx_pkt_tc2_phy; - u64 tx_pkt_tc2_phy; - u64 rx_pkt_tc3_phy; - u64 tx_pkt_tc3_phy; - u64 rx_pkt_tc4_phy; - u64 tx_pkt_tc4_phy; - u64 rx_pkt_tc5_phy; - u64 tx_pkt_tc5_phy; - u64 rx_pkt_tc6_phy; - u64 tx_pkt_tc6_phy; - u64 rx_pkt_tc7_phy; - u64 tx_pkt_tc7_phy; - u64 rx_byte_tc0_phy; - u64 tx_byte_tc0_phy; - u64 rx_byte_tc1_phy; - u64 tx_byte_tc1_phy; - u64 rx_byte_tc2_phy; - u64 tx_byte_tc2_phy; - u64 rx_byte_tc3_phy; - u64 tx_byte_tc3_phy; - u64 rx_byte_tc4_phy; - u64 tx_byte_tc4_phy; - u64 rx_byte_tc5_phy; - u64 tx_byte_tc5_phy; - u64 rx_byte_tc6_phy; - u64 tx_byte_tc6_phy; - u64 rx_byte_tc7_phy; - u64 tx_byte_tc7_phy; - u64 rx_pause_tc0_phy; - u64 tx_pause_tc0_phy; - u64 rx_pause_tc1_phy; - u64 tx_pause_tc1_phy; - u64 rx_pause_tc2_phy; - u64 tx_pause_tc2_phy; - u64 rx_pause_tc3_phy; - u64 tx_pause_tc3_phy; - u64 rx_pause_tc4_phy; - u64 tx_pause_tc4_phy; - u64 rx_pause_tc5_phy; - u64 tx_pause_tc5_phy; - u64 rx_pause_tc6_phy; - u64 tx_pause_tc6_phy; - u64 rx_pause_tc7_phy; - u64 tx_pause_tc7_phy; -}; - -struct mana_cfg_rx_steer_req_v2 { - struct gdma_req_hdr hdr; - mana_handle_t vport; - u16 num_indir_entries; - u16 indir_tab_offset; - u32 rx_enable; - u32 rss_enable; - u8 update_default_rxobj; - u8 update_hashkey; - u8 update_indir_tab; - u8 reserved; - mana_handle_t default_rxobj; - u8 hashkey[40]; - u8 cqe_coalescing_enable; - u8 reserved2[7]; - mana_handle_t indir_tab[0]; -}; - -struct mana_cfg_rx_steer_resp { - struct gdma_resp_hdr hdr; -}; - -struct mana_register_hw_vport_req { - struct gdma_req_hdr hdr; - u16 attached_gfid; - u8 is_pf_default_vport; - u8 reserved1; - u8 allow_all_ether_types; - u8 reserved2; - u8 reserved3; - u8 reserved4; -}; - -struct mana_register_hw_vport_resp { - struct gdma_resp_hdr hdr; - mana_handle_t hw_vport_handle; -}; - -struct mana_deregister_hw_vport_req { - struct gdma_req_hdr hdr; - mana_handle_t hw_vport_handle; -}; - -struct mana_deregister_hw_vport_resp { - struct gdma_resp_hdr hdr; -}; - -struct mana_register_filter_req { - struct gdma_req_hdr hdr; - mana_handle_t vport; - u8 mac_addr[6]; - u8 reserved1; - u8 reserved2; - u8 reserved3; - u8 reserved4; - u16 reserved5; - u32 reserved6; - u32 reserved7; - u32 reserved8; -}; - -struct mana_register_filter_resp { - struct gdma_resp_hdr hdr; - mana_handle_t filter_handle; -}; - -struct mana_deregister_filter_req { - struct gdma_req_hdr hdr; - mana_handle_t filter_handle; -}; - -struct mana_deregister_filter_resp { - struct gdma_resp_hdr hdr; -}; - -struct mana_tx_package { - struct gdma_wqe_request wqe_req; - struct gdma_sge sgl_array[5]; - struct gdma_sge *sgl_ptr; - struct mana_tx_oob tx_oob; - struct gdma_posted_wqe_info wqe_info; -}; - -struct mana_adev { - struct auxiliary_device adev; - struct gdma_dev *mdev; -}; - -struct cdrom_msf { - __u8 cdmsf_min0; - __u8 cdmsf_sec0; - __u8 cdmsf_frame0; - __u8 cdmsf_min1; - __u8 cdmsf_sec1; - __u8 cdmsf_frame1; -}; - -struct cdrom_volctrl { - __u8 channel0; - __u8 channel1; - __u8 channel2; - __u8 channel3; -}; - -struct cdrom_subchnl { - __u8 cdsc_format; - __u8 cdsc_audiostatus; - __u8 cdsc_adr: 4; - __u8 cdsc_ctrl: 4; - __u8 cdsc_trk; - __u8 cdsc_ind; - union cdrom_addr cdsc_absaddr; - union cdrom_addr cdsc_reladdr; -}; - -struct cdrom_read_audio { - union cdrom_addr addr; - __u8 addr_format; - int nframes; - __u8 *buf; -}; - -struct cdrom_blk { - unsigned int from; - short unsigned int len; -}; - -struct cdrom_timed_media_change_info { - __s64 last_media_change; - __u64 media_flags; -}; - -struct dvd_layer { - __u8 book_version: 4; - __u8 book_type: 4; - __u8 min_rate: 4; - __u8 disc_size: 4; - __u8 layer_type: 4; - __u8 track_path: 1; - __u8 nlayers: 2; - char: 1; - __u8 track_density: 4; - __u8 linear_density: 4; - __u8 bca: 1; - __u32 start_sector; - __u32 end_sector; - __u32 end_sector_l0; -}; - -struct dvd_physical { - __u8 type; - __u8 layer_num; - struct dvd_layer layer[4]; -}; - -struct dvd_copyright { - __u8 type; - __u8 layer_num; - __u8 cpst; - __u8 rmi; -}; - -struct dvd_disckey { - __u8 type; - unsigned int agid: 2; - __u8 value[2048]; -}; - -struct dvd_bca { - __u8 type; - int len; - __u8 value[188]; -}; - -struct dvd_manufact { - __u8 type; - __u8 layer_num; - int len; - __u8 value[2048]; -}; - -typedef union { - __u8 type; - struct dvd_physical physical; - struct dvd_copyright copyright; - struct dvd_disckey disckey; - struct dvd_bca bca; - struct dvd_manufact manufact; -} dvd_struct; - -typedef __u8 dvd_key[5]; - -typedef __u8 dvd_challenge[10]; - -struct dvd_lu_send_agid { - __u8 type; - unsigned int agid: 2; -}; - -struct dvd_host_send_challenge { - __u8 type; - unsigned int agid: 2; - dvd_challenge chal; -}; - -struct dvd_send_key { - __u8 type; - unsigned int agid: 2; - dvd_key key; -}; - -struct dvd_lu_send_challenge { - __u8 type; - unsigned int agid: 2; - dvd_challenge chal; -}; - -struct dvd_lu_send_title_key { - __u8 type; - unsigned int agid: 2; - dvd_key title_key; - int lba; - unsigned int cpm: 1; - unsigned int cp_sec: 1; - unsigned int cgms: 2; -}; - -struct dvd_lu_send_asf { - __u8 type; - unsigned int agid: 2; - unsigned int asf: 1; -}; - -struct dvd_host_send_rpcstate { - __u8 type; - __u8 pdrc; -}; - -struct dvd_lu_send_rpcstate { - __u8 type: 2; - __u8 vra: 3; - __u8 ucca: 3; - __u8 region_mask; - __u8 rpc_scheme; -}; - -typedef union { - __u8 type; - struct dvd_lu_send_agid lsa; - struct dvd_host_send_challenge hsc; - struct dvd_send_key lsk; - struct dvd_lu_send_challenge lsc; - struct dvd_send_key hsk; - struct dvd_lu_send_title_key lstk; - struct dvd_lu_send_asf lsasf; - struct dvd_host_send_rpcstate hrpcs; - struct dvd_lu_send_rpcstate lrpcs; -} dvd_authinfo; - -struct mrw_feature_desc { - __be16 feature_code; - __u8 curr: 1; - __u8 persistent: 1; - __u8 feature_version: 4; - __u8 reserved1: 2; - __u8 add_len; - __u8 write: 1; - __u8 reserved2: 7; - __u8 reserved3; - __u8 reserved4; - __u8 reserved5; -}; - -struct rwrt_feature_desc { - __be16 feature_code; - __u8 curr: 1; - __u8 persistent: 1; - __u8 feature_version: 4; - __u8 reserved1: 2; - __u8 add_len; - __u32 last_lba; - __u32 block_size; - __u16 blocking; - __u8 page_present: 1; - __u8 reserved2: 7; - __u8 reserved3; -}; - -typedef struct { - __be16 disc_information_length; - __u8 disc_status: 2; - __u8 border_status: 2; - __u8 erasable: 1; - __u8 reserved1: 3; - __u8 n_first_track; - __u8 n_sessions_lsb; - __u8 first_track_lsb; - __u8 last_track_lsb; - __u8 mrw_status: 2; - __u8 dbit: 1; - __u8 reserved2: 2; - __u8 uru: 1; - __u8 dbc_v: 1; - __u8 did_v: 1; - __u8 disc_type; - __u8 n_sessions_msb; - __u8 first_track_msb; - __u8 last_track_msb; - __u32 disc_id; - __u32 lead_in; - __u32 lead_out; - __u8 disc_bar_code[8]; - __u8 reserved3; - __u8 n_opc; -} disc_information; - -typedef struct { - __be16 track_information_length; - __u8 track_lsb; - __u8 session_lsb; - __u8 reserved1; - __u8 track_mode: 4; - __u8 copy: 1; - __u8 damage: 1; - __u8 reserved2: 2; - __u8 data_mode: 4; - __u8 fp: 1; - __u8 packet: 1; - __u8 blank: 1; - __u8 rt: 1; - __u8 nwa_v: 1; - __u8 lra_v: 1; - __u8 reserved3: 6; - __be32 track_start; - __be32 next_writable; - __be32 free_blocks; - __be32 fixed_packet_size; - __be32 track_size; - __be32 last_rec_address; -} track_information; - -struct mode_page_header { - __be16 mode_data_length; - __u8 medium_type; - __u8 reserved1; - __u8 reserved2; - __u8 reserved3; - __be16 desc_length; -}; - -typedef struct { - int data; - int audio; - int cdi; - int xa; - long int error; -} tracktype; - -struct cdrom_mechstat_header { - __u8 curslot: 5; - __u8 changer_state: 2; - __u8 fault: 1; - __u8 reserved1: 4; - __u8 door_open: 1; - __u8 mech_state: 3; - __u8 curlba[3]; - __u8 nslots; - __u16 slot_tablelen; -}; - -struct cdrom_slot { - __u8 change: 1; - __u8 reserved1: 6; - __u8 disc_present: 1; - __u8 reserved2[3]; -}; - -struct cdrom_changer_info { - struct cdrom_mechstat_header hdr; - struct cdrom_slot slots[256]; -}; - -struct modesel_head { - __u8 reserved1; - __u8 medium; - __u8 reserved2; - __u8 block_desc_length; - __u8 density; - __u8 number_of_blocks_hi; - __u8 number_of_blocks_med; - __u8 number_of_blocks_lo; - __u8 reserved3; - __u8 block_length_hi; - __u8 block_length_med; - __u8 block_length_lo; -}; - -typedef struct { - __u16 report_key_length; - __u8 reserved1; - __u8 reserved2; - __u8 ucca: 3; - __u8 vra: 3; - __u8 type_code: 2; - __u8 region_mask; - __u8 rpc_scheme; - __u8 reserved3; -} rpc_state_t; - -struct event_header { - __be16 data_len; - __u8 notification_class: 3; - __u8 reserved1: 4; - __u8 nea: 1; - __u8 supp_event_class; -}; - -struct cdrom_sysctl_settings { - char info[1000]; - int autoclose; - int autoeject; - int debug; - int lock; - int check; -}; - -enum cdrom_print_option { - CTL_NAME = 0, - CTL_SPEED = 1, - CTL_SLOTS = 2, - CTL_CAPABILITY = 3, -}; - -struct compat_cdrom_read_audio { - union cdrom_addr addr; - u8 addr_format; - compat_int_t nframes; - compat_caddr_t buf; -}; - -struct usb_dynid { - struct list_head node; - struct usb_device_id id; -}; - -struct usb_device_driver { - const char *name; - bool (*match)(struct usb_device *); - int (*probe)(struct usb_device *); - void (*disconnect)(struct usb_device *); - int (*suspend)(struct usb_device *, pm_message_t); - int (*resume)(struct usb_device *, pm_message_t); - int (*choose_configuration)(struct usb_device *); - const struct attribute_group **dev_groups; - struct device_driver driver; - const struct usb_device_id *id_table; - unsigned int supports_autosuspend: 1; - unsigned int generic_subclass: 1; -}; - -struct usbdevfs_ctrltransfer { - __u8 bRequestType; - __u8 bRequest; - __u16 wValue; - __u16 wIndex; - __u16 wLength; - __u32 timeout; - void *data; -}; - -struct usbdevfs_bulktransfer { - unsigned int ep; - unsigned int len; - unsigned int timeout; - void *data; -}; - -struct usbdevfs_setinterface { - unsigned int interface; - unsigned int altsetting; -}; - -struct usbdevfs_disconnectsignal { - unsigned int signr; - void *context; -}; - -struct usbdevfs_getdriver { - unsigned int interface; - char driver[256]; -}; - -struct usbdevfs_connectinfo { - unsigned int devnum; - unsigned char slow; -}; - -struct usbdevfs_conninfo_ex { - __u32 size; - __u32 busnum; - __u32 devnum; - __u32 speed; - __u8 num_ports; - __u8 ports[7]; -}; - -struct usbdevfs_iso_packet_desc { - unsigned int length; - unsigned int actual_length; - unsigned int status; -}; - -struct usbdevfs_urb { - unsigned char type; - unsigned char endpoint; - int status; - unsigned int flags; - void *buffer; - int buffer_length; - int actual_length; - int start_frame; - union { - int number_of_packets; - unsigned int stream_id; - }; - int error_count; - unsigned int signr; - void *usercontext; - struct usbdevfs_iso_packet_desc iso_frame_desc[0]; -}; - -struct usbdevfs_ioctl { - int ifno; - int ioctl_code; - void *data; -}; - -struct usbdevfs_disconnect_claim { - unsigned int interface; - unsigned int flags; - char driver[256]; -}; - -struct usbdevfs_streams { - unsigned int num_streams; - unsigned int num_eps; - unsigned char eps[0]; -}; - -struct usbdevfs_ctrltransfer32 { - u8 bRequestType; - u8 bRequest; - u16 wValue; - u16 wIndex; - u16 wLength; - u32 timeout; - compat_caddr_t data; -}; - -struct usbdevfs_bulktransfer32 { - compat_uint_t ep; - compat_uint_t len; - compat_uint_t timeout; - compat_caddr_t data; -}; - -struct usbdevfs_disconnectsignal32 { - compat_int_t signr; - compat_caddr_t context; -}; - -struct usbdevfs_urb32 { - unsigned char type; - unsigned char endpoint; - compat_int_t status; - compat_uint_t flags; - compat_caddr_t buffer; - compat_int_t buffer_length; - compat_int_t actual_length; - compat_int_t start_frame; - compat_int_t number_of_packets; - compat_int_t error_count; - compat_uint_t signr; - compat_caddr_t usercontext; - struct usbdevfs_iso_packet_desc iso_frame_desc[0]; -}; - -struct usbdevfs_ioctl32 { - s32 ifno; - s32 ioctl_code; - compat_caddr_t data; -}; - -struct usb_dev_state { - struct list_head list; - struct usb_device *dev; - struct file *file; - spinlock_t lock; - struct list_head async_pending; - struct list_head async_completed; - struct list_head memory_list; - wait_queue_head_t wait; - wait_queue_head_t wait_for_resume; - unsigned int discsignr; - struct pid *disc_pid; - const struct cred *cred; - sigval_t disccontext; - long unsigned int ifclaimed; - u32 disabled_bulk_eps; - long unsigned int interface_allowed_mask; - int not_yet_resumed; - bool suspend_allowed; - bool privileges_dropped; -}; - -struct usb_memory { - struct list_head memlist; - int vma_use_count; - int urb_use_count; - u32 size; - void *mem; - dma_addr_t dma_handle; - long unsigned int vm_start; - struct usb_dev_state *ps; -}; - -struct async { - struct list_head asynclist; - struct usb_dev_state *ps; - struct pid *pid; - const struct cred *cred; - unsigned int signr; - unsigned int ifnum; - void *userbuffer; - void *userurb; - sigval_t userurb_sigval; - struct urb *urb; - struct usb_memory *usbm; - unsigned int mem_usage; - int status; - u8 bulk_addr; - u8 bulk_status; -}; - -enum snoop_when { - SUBMIT = 0, - COMPLETE___2 = 1, -}; - -enum usb_port_connect_type { - USB_PORT_CONNECT_TYPE_UNKNOWN = 0, - USB_PORT_CONNECT_TYPE_HOT_PLUG = 1, - USB_PORT_CONNECT_TYPE_HARD_WIRED = 2, - USB_PORT_NOT_USED = 3, -}; - -struct usb_port_status { - __le16 wPortStatus; - __le16 wPortChange; - __le32 dwExtPortStatus; -}; - -struct usb_hub_status { - __le16 wHubStatus; - __le16 wHubChange; -}; - -struct usb_hub_descriptor { - __u8 bDescLength; - __u8 bDescriptorType; - __u8 bNbrPorts; - __le16 wHubCharacteristics; - __u8 bPwrOn2PwrGood; - __u8 bHubContrCurrent; - union { - struct { - __u8 DeviceRemovable[4]; - __u8 PortPwrCtrlMask[4]; - } hs; - struct { - __u8 bHubHdrDecLat; - __le16 wHubDelay; - __le16 DeviceRemovable; - } __attribute__((packed)) ss; - } u; -} __attribute__((packed)); - -struct typec_connector { - void (*attach)(struct typec_connector *, struct device *); - void (*deattach)(struct typec_connector *, struct device *); -}; - -typedef u32 usb_port_location_t; - -struct usb_port; - -struct usb_hub { - struct device *intfdev; - struct usb_device *hdev; - struct kref kref; - struct urb *urb; - u8 (*buffer)[8]; - union { - struct usb_hub_status hub; - struct usb_port_status port; - } *status; - struct mutex status_mutex; - int error; - int nerrors; - long unsigned int event_bits[1]; - long unsigned int change_bits[1]; - long unsigned int removed_bits[1]; - long unsigned int wakeup_bits[1]; - long unsigned int power_bits[1]; - long unsigned int child_usage_bits[1]; - long unsigned int warm_reset_bits[1]; - struct usb_hub_descriptor *descriptor; - struct usb_tt tt; - unsigned int mA_per_port; - unsigned int wakeup_enabled_descendants; - unsigned int limited_power: 1; - unsigned int quiescing: 1; - unsigned int disconnected: 1; - unsigned int in_reset: 1; - unsigned int quirk_disable_autosuspend: 1; - unsigned int quirk_check_port_auto_suspend: 1; - unsigned int has_indicators: 1; - u8 indicator[31]; - struct delayed_work leds; - struct delayed_work init_work; - struct delayed_work post_resume_work; - struct work_struct events; - spinlock_t irq_urb_lock; - struct timer_list irq_urb_retry; - struct usb_port **ports; - struct list_head onboard_devs; -}; - -struct usb_port { - struct usb_device *child; - struct device dev; - struct usb_dev_state *port_owner; - struct usb_port *peer; - struct typec_connector *connector; - struct dev_pm_qos_request *req; - enum usb_port_connect_type connect_type; - enum usb_device_state state; - struct kernfs_node *state_kn; - usb_port_location_t location; - struct mutex status_lock; - u32 over_current_count; - u8 portnum; - u32 quirks; - unsigned int early_stop: 1; - unsigned int ignore_event: 1; - unsigned int is_superspeed: 1; - unsigned int usb3_lpm_u1_permit: 1; - unsigned int usb3_lpm_u2_permit: 1; -}; - -struct dbc_regs { - __le32 capability; - __le32 doorbell; - __le32 ersts; - __le32 __reserved_0; - __le64 erstba; - __le64 erdp; - __le32 control; - __le32 status; - __le32 portsc; - __le32 __reserved_1; - __le64 dccp; - __le32 devinfo1; - __le32 devinfo2; -}; - -struct dbc_info_context { - __le64 string0; - __le64 manufacturer; - __le64 product; - __le64 serial; - __le32 length; - __le32 __reserved_0[7]; -}; - -struct dbc_str_descs { - char string0[64]; - char manufacturer[64]; - char product[64]; - char serial[64]; -}; - -enum dbc_state { - DS_DISABLED = 0, - DS_INITIALIZED = 1, - DS_ENABLED = 2, - DS_CONNECTED = 3, - DS_CONFIGURED = 4, - DS_MAX = 5, -}; - -struct xhci_dbc; - -struct dbc_ep { - struct xhci_dbc *dbc; - struct list_head list_pending; - struct xhci_ring *ring; - unsigned int direction: 1; - unsigned int halted: 1; -}; - -struct dbc_driver; - -struct xhci_dbc { - spinlock_t lock; - struct device *dev; - struct xhci_hcd *xhci; - struct dbc_regs *regs; - struct xhci_ring *ring_evt; - struct xhci_ring *ring_in; - struct xhci_ring *ring_out; - struct xhci_erst erst; - struct xhci_container_ctx *ctx; - struct dbc_str_descs *string; - dma_addr_t string_dma; - size_t string_size; - u16 idVendor; - u16 idProduct; - u16 bcdDevice; - u8 bInterfaceProtocol; - enum dbc_state state; - struct delayed_work event_work; - unsigned int poll_interval; - long unsigned int xfer_timestamp; - unsigned int resume_required: 1; - struct dbc_ep eps[2]; - const struct dbc_driver *driver; - void *priv; -}; - -struct dbc_driver { - int (*configure)(struct xhci_dbc *); - void (*disconnect)(struct xhci_dbc *); -}; - -struct dbc_request { - void *buf; - unsigned int length; - dma_addr_t dma; - void (*complete)(struct xhci_dbc *, struct dbc_request *); - struct list_head list_pool; - int status; - unsigned int actual; - struct xhci_dbc *dbc; - struct list_head list_pending; - dma_addr_t trb_dma; - union xhci_trb *trb; - unsigned int direction: 1; -}; - -enum evtreturn { - EVT_ERR = -1, - EVT_DONE = 0, - EVT_XFER_DONE = 1, - EVT_GSER = 2, - EVT_DISC = 3, -}; - -typedef class_mutex_t class_mutex_intr_t; - -enum serio_event_type { - SERIO_RESCAN_PORT = 0, - SERIO_RECONNECT_PORT = 1, - SERIO_RECONNECT_SUBTREE = 2, - SERIO_REGISTER_PORT = 3, - SERIO_ATTACH_DRIVER = 4, -}; - -struct serio_event { - enum serio_event_type type; - void *object; - struct module *owner; - struct list_head node; -}; - -struct input_event { - __kernel_ulong_t __sec; - __kernel_ulong_t __usec; - __u16 type; - __u16 code; - __s32 value; -}; - -struct input_event_compat { - compat_ulong_t sec; - compat_ulong_t usec; - __u16 type; - __u16 code; - __s32 value; -}; - -struct ff_periodic_effect_compat { - __u16 waveform; - __u16 period; - __s16 magnitude; - __s16 offset; - __u16 phase; - struct ff_envelope envelope; - __u32 custom_len; - compat_uptr_t custom_data; -}; - -struct ff_effect_compat { - __u16 type; - __s16 id; - __u16 direction; - struct ff_trigger trigger; - struct ff_replay replay; - union { - struct ff_constant_effect constant; - struct ff_ramp_effect ramp; - struct ff_periodic_effect_compat periodic; - struct ff_condition_effect condition[2]; - struct ff_rumble_effect rumble; - } u; -}; - -struct input_dev_poller { - void (*poll)(struct input_dev *); - unsigned int poll_interval; - unsigned int poll_interval_max; - unsigned int poll_interval_min; - struct input_dev *input; - struct delayed_work work; -}; - -struct vivaldi_data { - u32 function_row_physmap[24]; - unsigned int num_function_row_keys; -}; - -struct mousedev_hw_data { - int dx; - int dy; - int dz; - int x; - int y; - int abs_event; - long unsigned int buttons; -}; - -struct mousedev { - int open; - struct input_handle handle; - wait_queue_head_t wait; - struct list_head client_list; - spinlock_t client_lock; - struct mutex mutex; - struct device dev; - struct cdev cdev; - bool exist; - struct list_head mixdev_node; - bool opened_by_mixdev; - struct mousedev_hw_data packet; - unsigned int pkt_count; - int old_x[4]; - int old_y[4]; - int frac_dx; - int frac_dy; - long unsigned int touch; - int (*open_device)(struct mousedev *); - void (*close_device)(struct mousedev *); -}; - -enum mousedev_emul { - MOUSEDEV_EMUL_PS2 = 0, - MOUSEDEV_EMUL_IMPS = 1, - MOUSEDEV_EMUL_EXPS = 2, -}; - -struct mousedev_motion { - int dx; - int dy; - int dz; - long unsigned int buttons; -}; - -struct mousedev_client { - struct fasync_struct *fasync; - struct mousedev *mousedev; - struct list_head node; - struct mousedev_motion packets[16]; - unsigned int head; - unsigned int tail; - spinlock_t packet_lock; - int pos_x; - int pos_y; - u8 ps2[6]; - unsigned char ready; - unsigned char buffer; - unsigned char bufsiz; - unsigned char imexseq; - unsigned char impsseq; - enum mousedev_emul mode; - long unsigned int last_buttons; -}; - -enum { - FRACTION_DENOM = 128, -}; - -struct input_mt_slot { - int abs[14]; - unsigned int frame; - unsigned int key; -}; - -struct input_mt { - int trkid; - int num_slots; - int slot; - unsigned int flags; - unsigned int frame; - int *red; - struct input_mt_slot slots[0]; -}; - -struct uinput_ff_upload { - __u32 request_id; - __s32 retval; - struct ff_effect effect; - struct ff_effect old; -}; - -struct uinput_ff_erase { - __u32 request_id; - __s32 retval; - __u32 effect_id; -}; - -struct uinput_setup { - struct input_id id; - char name[80]; - __u32 ff_effects_max; -}; - -struct uinput_abs_setup { - __u16 code; - struct input_absinfo absinfo; -}; - -struct uinput_user_dev { - char name[80]; - struct input_id id; - __u32 ff_effects_max; - __s32 absmax[64]; - __s32 absmin[64]; - __s32 absfuzz[64]; - __s32 absflat[64]; -}; - -enum uinput_state { - UIST_NEW_DEVICE = 0, - UIST_SETUP_COMPLETE = 1, - UIST_CREATED = 2, -}; - -struct uinput_request { - unsigned int id; - unsigned int code; - int retval; - struct completion done; - union { - unsigned int effect_id; - struct { - struct ff_effect *effect; - struct ff_effect *old; - } upload; - } u; -}; - -struct uinput_device { - struct input_dev *dev; - struct mutex mutex; - enum uinput_state state; - wait_queue_head_t waitq; - unsigned char ready; - unsigned char head; - unsigned char tail; - struct input_event buff[16]; - unsigned int ff_effects_max; - struct uinput_request *requests[16]; - wait_queue_head_t requests_waitq; - spinlock_t requests_lock; -}; - -struct uinput_ff_upload_compat { - __u32 request_id; - __s32 retval; - struct ff_effect_compat effect; - struct ff_effect_compat old; -}; - -struct i2c_devinfo { - struct list_head list; - int busnum; - struct i2c_board_info board_info; -}; - -enum i2c_driver_flags { - I2C_DRV_ACPI_WAIVE_D0_PROBE = 1, -}; - -struct i2c_acpi_handler_data { - struct acpi_connection_info info; - struct i2c_adapter *adapter; -}; - -struct gsb_buffer { - u8 status; - u8 len; - union { - u16 wdata; - u8 bdata; - struct { - struct {} __empty_data; - u8 data[0]; - }; - }; -}; - -struct i2c_acpi_lookup { - struct i2c_board_info *info; - acpi_handle adapter_handle; - acpi_handle device_handle; - acpi_handle search_handle; - int n; - int index; - u32 speed; - u32 min_speed; - u32 force_speed; -}; - -struct i2c_acpi_irq_context { - int irq; - bool wake_capable; -}; - -struct pps_ktime { - __s64 sec; - __s32 nsec; - __u32 flags; -}; - -struct pps_ktime_compat { - __s64 sec; - __s32 nsec; - __u32 flags; -}; - -struct pps_kinfo { - __u32 assert_sequence; - __u32 clear_sequence; - struct pps_ktime assert_tu; - struct pps_ktime clear_tu; - int current_mode; -}; - -struct pps_kinfo_compat { - __u32 assert_sequence; - __u32 clear_sequence; - struct pps_ktime_compat assert_tu; - struct pps_ktime_compat clear_tu; - int current_mode; -} __attribute__((packed)); - -struct pps_kparams { - int api_version; - int mode; - struct pps_ktime assert_off_tu; - struct pps_ktime clear_off_tu; -}; - -struct pps_fdata { - struct pps_kinfo info; - struct pps_ktime timeout; -}; - -struct pps_fdata_compat { - struct pps_kinfo_compat info; - struct pps_ktime_compat timeout; -} __attribute__((packed)); - -struct pps_bind_args { - int tsformat; - int edge; - int consumer; -}; - -struct pps_device; - -struct pps_source_info { - char name[32]; - char path[32]; - int mode; - void (*echo)(struct pps_device *, int, void *); - struct module *owner; - struct device *dev; -}; - -struct pps_device { - struct pps_source_info info; - struct pps_kparams params; - __u32 assert_sequence; - __u32 clear_sequence; - struct pps_ktime assert_tu; - struct pps_ktime clear_tu; - int current_mode; - unsigned int last_ev; - unsigned int last_fetched_ev; - wait_queue_head_t queue; - unsigned int id; - const void *lookup_cookie; - struct device dev; - struct fasync_struct *async_queue; - spinlock_t lock; -}; - -struct system_time_snapshot { - u64 cycles; - ktime_t real; - ktime_t boot; - ktime_t raw; - enum clocksource_ids cs_id; - unsigned int clock_was_set_seq; - u8 cs_was_changed_seq; -}; - -struct system_device_crosststamp { - ktime_t device; - ktime_t sys_realtime; - ktime_t sys_monoraw; -}; - -struct posix_clock; - -struct posix_clock_context; - -struct posix_clock_operations { - struct module *owner; - int (*clock_adjtime)(struct posix_clock *, struct __kernel_timex *); - int (*clock_gettime)(struct posix_clock *, struct timespec64 *); - int (*clock_getres)(struct posix_clock *, struct timespec64 *); - int (*clock_settime)(struct posix_clock *, const struct timespec64 *); - long int (*ioctl)(struct posix_clock_context *, unsigned int, long unsigned int); - int (*open)(struct posix_clock_context *, fmode_t); - __poll_t (*poll)(struct posix_clock_context *, struct file *, poll_table *); - int (*release)(struct posix_clock_context *); - ssize_t (*read)(struct posix_clock_context *, uint, char *, size_t); -}; - -struct posix_clock { - struct posix_clock_operations ops; - struct cdev cdev; - struct device *dev; - struct rw_semaphore rwsem; - bool zombie; -}; - -struct posix_clock_context { - struct posix_clock *clk; - struct file *fp; - void *private_clkdata; -}; - -struct pps_event_time { - struct timespec64 ts_real; -}; - -struct ptp_clock_time { - __s64 sec; - __u32 nsec; - __u32 reserved; -}; - -struct ptp_extts_request { - unsigned int index; - unsigned int flags; - unsigned int rsv[2]; -}; - -struct ptp_perout_request { - union { - struct ptp_clock_time start; - struct ptp_clock_time phase; - }; - struct ptp_clock_time period; - unsigned int index; - unsigned int flags; - union { - struct ptp_clock_time on; - unsigned int rsv[4]; - }; -}; - -enum ptp_pin_function { - PTP_PF_NONE = 0, - PTP_PF_EXTTS = 1, - PTP_PF_PEROUT = 2, - PTP_PF_PHYSYNC = 3, -}; - -struct ptp_pin_desc { - char name[64]; - unsigned int index; - unsigned int func; - unsigned int chan; - unsigned int rsv[5]; -}; - -struct ptp_extts_event { - struct ptp_clock_time t; - unsigned int index; - unsigned int flags; - unsigned int rsv[2]; -}; - -struct cyclecounter { - u64 (*read)(struct cyclecounter *); - u64 mask; - u32 mult; - u32 shift; -}; - -struct timecounter { - struct cyclecounter *cc; - u64 cycle_last; - u64 nsec; - u64 mask; - u64 frac; -}; - -struct ptp_clock_request { - enum { - PTP_CLK_REQ_EXTTS = 0, - PTP_CLK_REQ_PEROUT = 1, - PTP_CLK_REQ_PPS = 2, - } type; - union { - struct ptp_extts_request extts; - struct ptp_perout_request perout; - }; -}; - -struct ptp_clock_info { - struct module *owner; - char name[32]; - s32 max_adj; - int n_alarm; - int n_ext_ts; - int n_per_out; - int n_pins; - int pps; - unsigned int supported_perout_flags; - unsigned int supported_extts_flags; - struct ptp_pin_desc *pin_config; - int (*adjfine)(struct ptp_clock_info *, long int); - int (*adjphase)(struct ptp_clock_info *, s32); - s32 (*getmaxphase)(struct ptp_clock_info *); - int (*adjtime)(struct ptp_clock_info *, s64); - int (*gettime64)(struct ptp_clock_info *, struct timespec64 *); - int (*gettimex64)(struct ptp_clock_info *, struct timespec64 *, struct ptp_system_timestamp *); - int (*getcrosststamp)(struct ptp_clock_info *, struct system_device_crosststamp *); - int (*settime64)(struct ptp_clock_info *, const struct timespec64 *); - int (*getcycles64)(struct ptp_clock_info *, struct timespec64 *); - int (*getcyclesx64)(struct ptp_clock_info *, struct timespec64 *, struct ptp_system_timestamp *); - int (*getcrosscycles)(struct ptp_clock_info *, struct system_device_crosststamp *); - int (*enable)(struct ptp_clock_info *, struct ptp_clock_request *, int); - int (*verify)(struct ptp_clock_info *, unsigned int, enum ptp_pin_function, unsigned int); - long int (*do_aux_work)(struct ptp_clock_info *); -}; - -enum ptp_clock_events { - PTP_CLOCK_ALARM = 0, - PTP_CLOCK_EXTTS = 1, - PTP_CLOCK_EXTOFF = 2, - PTP_CLOCK_PPS = 3, - PTP_CLOCK_PPSUSR = 4, -}; - -struct ptp_clock_event { - int type; - int index; - union { - u64 timestamp; - s64 offset; - struct pps_event_time pps_times; - }; -}; - -struct timestamp_event_queue { - struct ptp_extts_event buf[128]; - int head; - int tail; - spinlock_t lock; - struct list_head qlist; - long unsigned int *mask; - struct dentry *debugfs_instance; - struct debugfs_u32_array dfs_bitmap; -}; - -struct ptp_clock { - struct posix_clock clock; - struct device dev; - struct ptp_clock_info *info; - dev_t devid; - int index; - struct pps_device *pps_source; - long int dialed_frequency; - struct list_head tsevqs; - spinlock_t tsevqs_lock; - struct mutex pincfg_mux; - wait_queue_head_t tsev_wq; - int defunct; - struct device_attribute *pin_dev_attr; - struct attribute **pin_attr; - struct attribute_group pin_attr_group; - const struct attribute_group *pin_attr_groups[2]; - struct kthread_worker *kworker; - struct kthread_delayed_work aux_work; - unsigned int max_vclocks; - unsigned int n_vclocks; - int *vclock_index; - struct mutex n_vclocks_mux; - bool is_virtual_clock; - bool has_cycles; - struct dentry *debugfs_root; -}; - -struct ptp_vclock { - struct ptp_clock *pclock; - struct ptp_clock_info info; - struct ptp_clock *clock; - struct hlist_node vclock_hash_node; - struct cyclecounter cc; - struct timecounter tc; - struct mutex lock; -}; - -enum hwmon_sensor_types { - hwmon_chip = 0, - hwmon_temp = 1, - hwmon_in = 2, - hwmon_curr = 3, - hwmon_power = 4, - hwmon_energy = 5, - hwmon_humidity = 6, - hwmon_fan = 7, - hwmon_pwm = 8, - hwmon_intrusion = 9, - hwmon_max = 10, -}; - -enum hwmon_temp_attributes { - hwmon_temp_enable = 0, - hwmon_temp_input = 1, - hwmon_temp_type = 2, - hwmon_temp_lcrit = 3, - hwmon_temp_lcrit_hyst = 4, - hwmon_temp_min = 5, - hwmon_temp_min_hyst = 6, - hwmon_temp_max = 7, - hwmon_temp_max_hyst = 8, - hwmon_temp_crit = 9, - hwmon_temp_crit_hyst = 10, - hwmon_temp_emergency = 11, - hwmon_temp_emergency_hyst = 12, - hwmon_temp_alarm = 13, - hwmon_temp_lcrit_alarm = 14, - hwmon_temp_min_alarm = 15, - hwmon_temp_max_alarm = 16, - hwmon_temp_crit_alarm = 17, - hwmon_temp_emergency_alarm = 18, - hwmon_temp_fault = 19, - hwmon_temp_offset = 20, - hwmon_temp_label = 21, - hwmon_temp_lowest = 22, - hwmon_temp_highest = 23, - hwmon_temp_reset_history = 24, - hwmon_temp_rated_min = 25, - hwmon_temp_rated_max = 26, - hwmon_temp_beep = 27, -}; - -enum hwmon_in_attributes { - hwmon_in_enable = 0, - hwmon_in_input = 1, - hwmon_in_min = 2, - hwmon_in_max = 3, - hwmon_in_lcrit = 4, - hwmon_in_crit = 5, - hwmon_in_average = 6, - hwmon_in_lowest = 7, - hwmon_in_highest = 8, - hwmon_in_reset_history = 9, - hwmon_in_label = 10, - hwmon_in_alarm = 11, - hwmon_in_min_alarm = 12, - hwmon_in_max_alarm = 13, - hwmon_in_lcrit_alarm = 14, - hwmon_in_crit_alarm = 15, - hwmon_in_rated_min = 16, - hwmon_in_rated_max = 17, - hwmon_in_beep = 18, - hwmon_in_fault = 19, -}; - -enum hwmon_curr_attributes { - hwmon_curr_enable = 0, - hwmon_curr_input = 1, - hwmon_curr_min = 2, - hwmon_curr_max = 3, - hwmon_curr_lcrit = 4, - hwmon_curr_crit = 5, - hwmon_curr_average = 6, - hwmon_curr_lowest = 7, - hwmon_curr_highest = 8, - hwmon_curr_reset_history = 9, - hwmon_curr_label = 10, - hwmon_curr_alarm = 11, - hwmon_curr_min_alarm = 12, - hwmon_curr_max_alarm = 13, - hwmon_curr_lcrit_alarm = 14, - hwmon_curr_crit_alarm = 15, - hwmon_curr_rated_min = 16, - hwmon_curr_rated_max = 17, - hwmon_curr_beep = 18, -}; - -enum hwmon_power_attributes { - hwmon_power_enable = 0, - hwmon_power_average = 1, - hwmon_power_average_interval = 2, - hwmon_power_average_interval_max = 3, - hwmon_power_average_interval_min = 4, - hwmon_power_average_highest = 5, - hwmon_power_average_lowest = 6, - hwmon_power_average_max = 7, - hwmon_power_average_min = 8, - hwmon_power_input = 9, - hwmon_power_input_highest = 10, - hwmon_power_input_lowest = 11, - hwmon_power_reset_history = 12, - hwmon_power_accuracy = 13, - hwmon_power_cap = 14, - hwmon_power_cap_hyst = 15, - hwmon_power_cap_max = 16, - hwmon_power_cap_min = 17, - hwmon_power_min = 18, - hwmon_power_max = 19, - hwmon_power_crit = 20, - hwmon_power_lcrit = 21, - hwmon_power_label = 22, - hwmon_power_alarm = 23, - hwmon_power_cap_alarm = 24, - hwmon_power_min_alarm = 25, - hwmon_power_max_alarm = 26, - hwmon_power_lcrit_alarm = 27, - hwmon_power_crit_alarm = 28, - hwmon_power_rated_min = 29, - hwmon_power_rated_max = 30, -}; - -struct hwmon_ops { - umode_t visible; - umode_t (*is_visible)(const void *, enum hwmon_sensor_types, u32, int); - int (*read)(struct device *, enum hwmon_sensor_types, u32, int, long int *); - int (*read_string)(struct device *, enum hwmon_sensor_types, u32, int, const char **); - int (*write)(struct device *, enum hwmon_sensor_types, u32, int, long int); -}; - -struct hwmon_channel_info { - enum hwmon_sensor_types type; - const u32 *config; -}; - -struct hwmon_chip_info { - const struct hwmon_ops *ops; - const struct hwmon_channel_info * const *info; -}; - -struct power_supply_hwmon { - struct power_supply *psy; - long unsigned int *props; -}; - -struct hwmon_type_attr_list { - const u32 *attrs; - size_t n_attrs; -}; - -enum thermal_genl_attr { - THERMAL_GENL_ATTR_UNSPEC = 0, - THERMAL_GENL_ATTR_TZ = 1, - THERMAL_GENL_ATTR_TZ_ID = 2, - THERMAL_GENL_ATTR_TZ_TEMP = 3, - THERMAL_GENL_ATTR_TZ_TRIP = 4, - THERMAL_GENL_ATTR_TZ_TRIP_ID = 5, - THERMAL_GENL_ATTR_TZ_TRIP_TYPE = 6, - THERMAL_GENL_ATTR_TZ_TRIP_TEMP = 7, - THERMAL_GENL_ATTR_TZ_TRIP_HYST = 8, - THERMAL_GENL_ATTR_TZ_MODE = 9, - THERMAL_GENL_ATTR_TZ_NAME = 10, - THERMAL_GENL_ATTR_TZ_CDEV_WEIGHT = 11, - THERMAL_GENL_ATTR_TZ_GOV = 12, - THERMAL_GENL_ATTR_TZ_GOV_NAME = 13, - THERMAL_GENL_ATTR_CDEV = 14, - THERMAL_GENL_ATTR_CDEV_ID = 15, - THERMAL_GENL_ATTR_CDEV_CUR_STATE = 16, - THERMAL_GENL_ATTR_CDEV_MAX_STATE = 17, - THERMAL_GENL_ATTR_CDEV_NAME = 18, - THERMAL_GENL_ATTR_GOV_NAME = 19, - THERMAL_GENL_ATTR_CPU_CAPABILITY = 20, - THERMAL_GENL_ATTR_CPU_CAPABILITY_ID = 21, - THERMAL_GENL_ATTR_CPU_CAPABILITY_PERFORMANCE = 22, - THERMAL_GENL_ATTR_CPU_CAPABILITY_EFFICIENCY = 23, - THERMAL_GENL_ATTR_THRESHOLD = 24, - THERMAL_GENL_ATTR_THRESHOLD_TEMP = 25, - THERMAL_GENL_ATTR_THRESHOLD_DIRECTION = 26, - THERMAL_GENL_ATTR_TZ_PREV_TEMP = 27, - __THERMAL_GENL_ATTR_MAX = 28, -}; - -enum thermal_genl_sampling { - THERMAL_GENL_SAMPLING_TEMP = 0, - __THERMAL_GENL_SAMPLING_MAX = 1, -}; - -enum thermal_genl_event { - THERMAL_GENL_EVENT_UNSPEC = 0, - THERMAL_GENL_EVENT_TZ_CREATE = 1, - THERMAL_GENL_EVENT_TZ_DELETE = 2, - THERMAL_GENL_EVENT_TZ_DISABLE = 3, - THERMAL_GENL_EVENT_TZ_ENABLE = 4, - THERMAL_GENL_EVENT_TZ_TRIP_UP = 5, - THERMAL_GENL_EVENT_TZ_TRIP_DOWN = 6, - THERMAL_GENL_EVENT_TZ_TRIP_CHANGE = 7, - THERMAL_GENL_EVENT_TZ_TRIP_ADD = 8, - THERMAL_GENL_EVENT_TZ_TRIP_DELETE = 9, - THERMAL_GENL_EVENT_CDEV_ADD = 10, - THERMAL_GENL_EVENT_CDEV_DELETE = 11, - THERMAL_GENL_EVENT_CDEV_STATE_UPDATE = 12, - THERMAL_GENL_EVENT_TZ_GOV_CHANGE = 13, - THERMAL_GENL_EVENT_CPU_CAPABILITY_CHANGE = 14, - THERMAL_GENL_EVENT_THRESHOLD_ADD = 15, - THERMAL_GENL_EVENT_THRESHOLD_DELETE = 16, - THERMAL_GENL_EVENT_THRESHOLD_FLUSH = 17, - THERMAL_GENL_EVENT_THRESHOLD_UP = 18, - THERMAL_GENL_EVENT_THRESHOLD_DOWN = 19, - __THERMAL_GENL_EVENT_MAX = 20, -}; - -enum thermal_genl_cmd { - THERMAL_GENL_CMD_UNSPEC = 0, - THERMAL_GENL_CMD_TZ_GET_ID = 1, - THERMAL_GENL_CMD_TZ_GET_TRIP = 2, - THERMAL_GENL_CMD_TZ_GET_TEMP = 3, - THERMAL_GENL_CMD_TZ_GET_GOV = 4, - THERMAL_GENL_CMD_TZ_GET_MODE = 5, - THERMAL_GENL_CMD_CDEV_GET = 6, - THERMAL_GENL_CMD_THRESHOLD_GET = 7, - THERMAL_GENL_CMD_THRESHOLD_ADD = 8, - THERMAL_GENL_CMD_THRESHOLD_DELETE = 9, - THERMAL_GENL_CMD_THRESHOLD_FLUSH = 10, - __THERMAL_GENL_CMD_MAX = 11, -}; - -struct thermal_genl_cpu_caps { - int cpu; - int performance; - int efficiency; -}; - -enum thermal_genl_multicast_groups { - THERMAL_GENL_SAMPLING_GROUP = 0, - THERMAL_GENL_EVENT_GROUP = 1, - THERMAL_GENL_MAX_GROUP = 1, -}; - -struct thermal_genl_notify { - int mcgrp; -}; - -typedef struct thermal_zone_device *class_thermal_zone_get_by_id_t; - -struct param { - struct nlattr **attrs; - struct sk_buff *msg; - const char *name; - int tz_id; - int cdev_id; - int trip_id; - int trip_temp; - int trip_type; - int trip_hyst; - int temp; - int prev_temp; - int direction; - int cdev_state; - int cdev_max_state; - struct thermal_genl_cpu_caps *cpu_capabilities; - int cpu_capabilities_count; -}; - -typedef int (*cb_t)(struct param *); - -struct temp_masks { - u32 tcc_offset; - u32 digital_readout; - u32 pkg_digital_readout; -}; - -struct _thermal_state { - u64 next_check; - u64 last_interrupt_time; - struct delayed_work therm_work; - long unsigned int count; - long unsigned int last_count; - long unsigned int max_time_ms; - long unsigned int total_time_ms; - bool rate_control_active; - bool new_event; - u8 level; - u8 sample_index; - u8 sample_count; - u8 average; - u8 baseline_temp; - u8 temp_samples[3]; -}; - -struct thermal_state { - struct _thermal_state core_throttle; - struct _thermal_state core_power_limit; - struct _thermal_state package_throttle; - struct _thermal_state package_power_limit; - struct _thermal_state core_thresh0; - struct _thermal_state core_thresh1; - struct _thermal_state pkg_thresh0; - struct _thermal_state pkg_thresh1; -}; - -enum bitmap_state { - BITMAP_STALE = 1, - BITMAP_WRITE_ERROR = 2, - BITMAP_HOSTENDIAN = 15, -}; - -struct bitmap_super_s { - __le32 magic; - __le32 version; - __u8 uuid[16]; - __le64 events; - __le64 events_cleared; - __le64 sync_size; - __le32 state; - __le32 chunksize; - __le32 daemon_sleep; - __le32 write_behind; - __le32 sectors_reserved; - __le32 nodes; - __u8 cluster_name[64]; - __u8 pad[120]; -}; - -typedef struct bitmap_super_s bitmap_super_t; - -typedef __u16 bitmap_counter_t; - -struct bitmap_page { - char *map; - unsigned int hijacked: 1; - unsigned int pending: 1; - unsigned int count: 30; -}; - -struct bitmap_counts { - spinlock_t lock; - struct bitmap_page *bp; - long unsigned int pages; - long unsigned int missing_pages; - long unsigned int chunkshift; - long unsigned int chunks; -}; - -struct bitmap_storage { - struct file *file; - struct page *sb_page; - long unsigned int sb_index; - struct page **filemap; - long unsigned int *filemap_attr; - long unsigned int file_pages; - long unsigned int bytes; -}; - -struct bitmap { - struct bitmap_counts counts; - struct mddev *mddev; - __u64 events_cleared; - int need_sync; - struct bitmap_storage storage; - long unsigned int flags; - int allclean; - atomic_t behind_writes; - long unsigned int behind_writes_used; - long unsigned int daemon_lastrun; - long unsigned int last_end_sync; - atomic_t pending_writes; - wait_queue_head_t write_wait; - wait_queue_head_t overflow_wait; - wait_queue_head_t behind_wait; - struct kernfs_node *sysfs_can_clear; - int cluster_slot; -}; - -enum bitmap_page_attr { - BITMAP_PAGE_DIRTY = 0, - BITMAP_PAGE_PENDING = 1, - BITMAP_PAGE_NEEDWRITE = 2, -}; - -struct bitmap_unplug_work { - struct work_struct work; - struct bitmap *bitmap; - struct completion *done; -}; - -struct linear_c { - struct dm_dev *dev; - sector_t start; -}; - -struct dm_ioctl { - __u32 version[3]; - __u32 data_size; - __u32 data_start; - __u32 target_count; - __s32 open_count; - __u32 flags; - __u32 event_nr; - __u32 padding; - __u64 dev; - char name[128]; - char uuid[129]; - char data[7]; -}; - -struct dm_target_spec { - __u64 sector_start; - __u64 length; - __s32 status; - __u32 next; - char target_type[16]; -}; - -struct dm_target_deps { - __u32 count; - __u32 padding; - __u64 dev[0]; -}; - -struct dm_name_list { - __u64 dev; - __u32 next; - char name[0]; -}; - -struct dm_target_versions { - __u32 next; - __u32 version[3]; - char name[0]; -}; - -struct dm_target_msg { - __u64 sector; - char message[0]; -}; - -enum { - DM_VERSION_CMD = 0, - DM_REMOVE_ALL_CMD = 1, - DM_LIST_DEVICES_CMD = 2, - DM_DEV_CREATE_CMD = 3, - DM_DEV_REMOVE_CMD = 4, - DM_DEV_RENAME_CMD = 5, - DM_DEV_SUSPEND_CMD = 6, - DM_DEV_STATUS_CMD = 7, - DM_DEV_WAIT_CMD = 8, - DM_TABLE_LOAD_CMD = 9, - DM_TABLE_CLEAR_CMD = 10, - DM_TABLE_DEPS_CMD = 11, - DM_TABLE_STATUS_CMD = 12, - DM_LIST_VERSIONS_CMD = 13, - DM_TARGET_MSG_CMD = 14, - DM_DEV_SET_GEOMETRY_CMD = 15, - DM_DEV_ARM_POLL_CMD = 16, - DM_GET_TARGET_VERSION_CMD = 17, - DM_MPATH_PROBE_PATHS_CMD = 18, -}; - -struct dm_file { - volatile unsigned int global_event_nr; -}; - -struct hash_cell { - struct rb_node name_node; - struct rb_node uuid_node; - bool name_set; - bool uuid_set; - char *name; - char *uuid; - struct mapped_device *md; - struct dm_table *new_map; -}; - -struct vers_iter { - size_t param_size; - struct dm_target_versions *vers; - struct dm_target_versions *old_vers; - char *end; - uint32_t flags; -}; - -typedef int (*ioctl_fn)(struct file *, struct dm_ioctl *, size_t); - -struct dm_stats_last_position { - sector_t last_sector; - unsigned int last_rw; -}; - -struct dm_stat_percpu { - long long unsigned int sectors[2]; - long long unsigned int ios[2]; - long long unsigned int merges[2]; - long long unsigned int ticks[2]; - long long unsigned int io_ticks[2]; - long long unsigned int io_ticks_total; - long long unsigned int time_in_queue; - long long unsigned int *histogram; -}; - -struct dm_stat_shared { - atomic_t in_flight[2]; - long long unsigned int stamp; - struct dm_stat_percpu tmp; -}; - -struct dm_stat { - struct list_head list_entry; - int id; - unsigned int stat_flags; - size_t n_entries; - sector_t start; - sector_t end; - sector_t step; - unsigned int n_histogram_entries; - long long unsigned int *histogram_boundaries; - const char *program_id; - const char *aux_data; - struct callback_head callback_head; - size_t shared_alloc_size; - size_t percpu_alloc_size; - size_t histogram_alloc_size; - struct dm_stat_percpu *stat_percpu[8192]; - struct dm_stat_shared stat_shared[0]; -}; - -struct ctl_info_attribute { - struct attribute attr; - ssize_t (*show)(struct edac_device_ctl_info *, char *); - ssize_t (*store)(struct edac_device_ctl_info *, const char *, size_t); -}; - -struct instance_attribute { - struct attribute attr; - ssize_t (*show)(struct edac_device_instance *, char *); - ssize_t (*store)(struct edac_device_instance *, const char *, size_t); -}; - -enum edac_ecs_attributes { - ECS_LOG_ENTRY_TYPE = 0, - ECS_MODE = 1, - ECS_RESET = 2, - ECS_THRESHOLD = 3, - ECS_MAX_ATTRS = 4, -}; - -struct edac_ecs_dev_attr { - struct device_attribute dev_attr; - int fru_id; -}; - -struct edac_ecs_fru_context { - char name[128]; - struct edac_ecs_dev_attr dev_attr[4]; - struct attribute *ecs_attrs[5]; - struct attribute_group group; -}; - -struct edac_ecs_context { - u16 num_media_frus; - struct edac_ecs_fru_context *fru_ctxs; -}; - -struct edac_pci_counter { - atomic_t pe_count; - atomic_t npe_count; -}; - -struct edac_pci_ctl_info { - struct list_head link; - int pci_idx; - int op_state; - struct delayed_work work; - void (*edac_check)(struct edac_pci_ctl_info *); - struct device *dev; - const char *mod_name; - const char *ctl_name; - const char *dev_name; - void *pvt_info; - long unsigned int start_time; - char name[32]; - struct edac_pci_counter counters; - struct kobject kobj; -}; - -struct instance_attribute___2 { - struct attribute attr; - ssize_t (*show)(struct edac_pci_ctl_info *, char *); - ssize_t (*store)(struct edac_pci_ctl_info *, const char *, size_t); -}; - -struct edac_pci_dev_attribute { - struct attribute attr; - void *value; - ssize_t (*show)(void *, char *); - ssize_t (*store)(void *, const char *, size_t); -}; - -typedef void (*pci_parity_check_fn_t)(struct pci_dev *); - -struct dev_pm_opp_supply { - long unsigned int u_volt; - long unsigned int u_volt_min; - long unsigned int u_volt_max; - long unsigned int u_amp; - long unsigned int u_watt; -}; - -struct dev_pm_opp_icc_bw; - -struct dev_pm_opp { - struct list_head node; - struct kref kref; - bool available; - bool dynamic; - bool turbo; - bool suspend; - bool removed; - long unsigned int *rates; - unsigned int level; - struct dev_pm_opp_supply *supplies; - struct dev_pm_opp_icc_bw *bandwidth; - long unsigned int clock_latency_ns; - struct dev_pm_opp **required_opps; - struct opp_table *opp_table; - struct device_node *np; - struct dentry *dentry; - const char *of_name; -}; - -enum opp_table_access { - OPP_TABLE_ACCESS_UNKNOWN = 0, - OPP_TABLE_ACCESS_EXCLUSIVE = 1, - OPP_TABLE_ACCESS_SHARED = 2, -}; - -struct icc_path; - -struct opp_table { - struct list_head node; - struct list_head lazy; - struct blocking_notifier_head head; - struct list_head dev_list; - struct list_head opp_list; - struct kref kref; - struct mutex lock; - struct device_node *np; - long unsigned int clock_latency_ns_max; - unsigned int voltage_tolerance_v1; - unsigned int parsed_static_opps; - enum opp_table_access shared_opp; - long unsigned int current_rate_single_clk; - struct dev_pm_opp *current_opp; - struct dev_pm_opp *suspend_opp; - struct opp_table **required_opp_tables; - struct device **required_devs; - unsigned int required_opp_count; - unsigned int *supported_hw; - unsigned int supported_hw_count; - const char *prop_name; - config_clks_t config_clks; - struct clk **clks; - struct clk *clk; - int clk_count; - config_regulators_t config_regulators; - struct regulator **regulators; - int regulator_count; - struct icc_path **paths; - unsigned int path_count; - bool enabled; - bool is_genpd; - struct dentry *dentry; - char dentry_name[255]; -}; - -struct dev_pm_opp_icc_bw { - u32 avg; - u32 peak; -}; - -struct opp_device { - struct list_head node; - const struct device *dev; - struct dentry *dentry; -}; - -typedef struct cpufreq_policy *class_cpufreq_policy_write_t; - -typedef struct cpufreq_policy *class_cpufreq_policy_read_t; - -struct cpu_dbs_info { - u64 prev_cpu_idle; - u64 prev_update_time; - u64 prev_cpu_nice; - unsigned int prev_load; - struct update_util_data update_util; - struct policy_dbs_info *policy_dbs; -}; - -struct trace_event_raw_amd_pstate_perf { - struct trace_entry ent; - u8 min_perf; - u8 target_perf; - u8 capacity; - long long unsigned int freq; - long long unsigned int mperf; - long long unsigned int aperf; - long long unsigned int tsc; - unsigned int cpu_id; - bool fast_switch; - char __data[0]; -}; - -struct trace_event_raw_amd_pstate_epp_perf { - struct trace_entry ent; - unsigned int cpu_id; - u8 highest_perf; - u8 epp; - u8 min_perf; - u8 max_perf; - bool boost; - bool changed; - char __data[0]; -}; - -struct trace_event_data_offsets_amd_pstate_perf {}; - -struct trace_event_data_offsets_amd_pstate_epp_perf {}; - -typedef void (*btf_trace_amd_pstate_perf)(void *, u8, u8, u8, u64, u64, u64, u64, unsigned int, bool); - -typedef void (*btf_trace_amd_pstate_epp_perf)(void *, unsigned int, u8, u8, u8, u8, bool, bool); - -struct ladder_device_state { - struct { - u32 promotion_count; - u32 demotion_count; - u64 promotion_time_ns; - u64 demotion_time_ns; - } threshold; - struct { - int promotion_count; - int demotion_count; - } stats; -}; - -struct ladder_device { - struct ladder_device_state states[10]; -}; - -struct menu_device { - int needs_update; - int tick_wakeup; - u64 next_timer_ns; - unsigned int bucket; - unsigned int correction_factor[6]; - unsigned int intervals[8]; - int interval_ptr; -}; - -struct teo_bin { - unsigned int intercepts; - unsigned int hits; -}; - -struct teo_cpu { - s64 sleep_length_ns; - struct teo_bin state_bins[10]; - unsigned int total; - unsigned int tick_intercepts; - unsigned int short_idles; - bool artificial_wakeup; -}; - -struct efi_unaccepted_memory { - u32 version; - u32 unit_size; - u64 phys_base; - u64 size; - long unsigned int bitmap[0]; -}; - -typedef struct { - u16 version; - u16 length; - u32 runtime_services_supported; -} efi_rt_properties_table_t; - -struct linux_efi_random_seed { - u32 size; - u8 bits[0]; -}; - -struct linux_efi_memreserve { - int size; - atomic_t count; - phys_addr_t next; - struct { - phys_addr_t base; - phys_addr_t size; - } entry[0]; -}; - -struct linux_efi_initrd { - long unsigned int base; - long unsigned int size; -}; - -struct efi_error_code { - efi_status_t status; - int errno; - const char *description; -}; - -enum { - RCD = 0, - RCH_DP = 1, - DEVICE = 2, - LD = 3, - FMLD = 4, - RP = 5, - DSP = 6, - USP = 7, -}; - -struct cxl_cper_sec_prot_err { - u64 valid_bits; - u8 agent_type; - u8 reserved[7]; - union { - u64 rcrb_base_addr; - struct { - u8 function; - u8 device; - u8 bus; - u16 segment; - u8 reserved_1[3]; - } __attribute__((packed)); - } agent_addr; - struct { - u16 vendor_id; - u16 device_id; - u16 subsystem_vendor_id; - u16 subsystem_id; - u8 class_code[2]; - u16 slot; - u8 reserved_1[4]; - } device_id; - struct { - u32 lower_dw; - u32 upper_dw; - } dev_serial_num; - u8 capability[60]; - u16 dvsec_len; - u16 err_len; - u8 reserved_2[4]; -} __attribute__((packed)); - -struct cxl_ras_capability_regs { - u32 uncor_status; - u32 uncor_mask; - u32 uncor_severity; - u32 cor_status; - u32 cor_mask; - u32 cap_control; - u32 header_log[16]; -}; - -union efi_rts_args { - struct { - efi_time_t *time; - efi_time_cap_t *capabilities; - } GET_TIME; - struct { - efi_time_t *time; - } SET_TIME; - struct { - efi_bool_t *enabled; - efi_bool_t *pending; - efi_time_t *time; - } GET_WAKEUP_TIME; - struct { - efi_bool_t enable; - efi_time_t *time; - } SET_WAKEUP_TIME; - struct { - efi_char16_t *name; - efi_guid_t *vendor; - u32 *attr; - long unsigned int *data_size; - void *data; - } GET_VARIABLE; - struct { - long unsigned int *name_size; - efi_char16_t *name; - efi_guid_t *vendor; - } GET_NEXT_VARIABLE; - struct { - efi_char16_t *name; - efi_guid_t *vendor; - u32 attr; - long unsigned int data_size; - void *data; - } SET_VARIABLE; - struct { - u32 attr; - u64 *storage_space; - u64 *remaining_space; - u64 *max_variable_size; - } QUERY_VARIABLE_INFO; - struct { - u32 *high_count; - } GET_NEXT_HIGH_MONO_COUNT; - struct { - efi_capsule_header_t **capsules; - long unsigned int count; - long unsigned int sg_list; - } UPDATE_CAPSULE; - struct { - efi_capsule_header_t **capsules; - long unsigned int count; - u64 *max_size; - int *reset_type; - } QUERY_CAPSULE_CAPS; - struct { - efi_status_t (*acpi_prm_handler)(u64, void *); - u64 param_buffer_addr; - void *context; - } ACPI_PRM_HANDLER; -}; - -struct efi_acpi_dev_path { - struct efi_generic_dev_path header; - u32 hid; - u32 uid; -}; - -struct efi_pci_dev_path { - struct efi_generic_dev_path header; - u8 fn; - u8 dev; -}; - -struct efi_vendor_dev_path { - struct efi_generic_dev_path header; - efi_guid_t vendorguid; - u8 vendordata[0]; -}; - -struct efi_rel_offset_dev_path { - struct efi_generic_dev_path header; - u32 reserved; - u64 starting_offset; - u64 ending_offset; -}; - -struct efi_dev_path { - union { - struct efi_generic_dev_path header; - struct efi_acpi_dev_path acpi; - struct efi_pci_dev_path pci; - struct efi_vendor_dev_path vendor; - struct efi_rel_offset_dev_path rel_offset; - }; -}; - -struct dev_header { - u32 len; - u32 prop_count; - struct efi_dev_path path[0]; -}; - -struct properties_header { - u32 len; - u32 version; - u32 dev_count; - struct dev_header dev_header[0]; -} __attribute__((packed)); - -struct of_bus; - -struct of_pci_range_parser { - struct device_node *node; - const struct of_bus *bus; - const __be32 *range; - const __be32 *end; - int na; - int ns; - int pna; - bool dma; -}; - -struct of_pci_range { - union { - u64 pci_addr; - u64 bus_addr; - }; - u64 cpu_addr; - u64 parent_bus_addr; - u64 size; - u32 flags; -}; - -enum { - M_I17 = 0, - M_I20 = 1, - M_I20_SR = 2, - M_I24 = 3, - M_I24_8_1 = 4, - M_I24_10_1 = 5, - M_I27_11_1 = 6, - M_MINI = 7, - M_MINI_3_1 = 8, - M_MINI_4_1 = 9, - M_MB = 10, - M_MB_2 = 11, - M_MB_3 = 12, - M_MB_5_1 = 13, - M_MB_6_1 = 14, - M_MB_7_1 = 15, - M_MB_SR = 16, - M_MBA = 17, - M_MBA_3 = 18, - M_MBP = 19, - M_MBP_2 = 20, - M_MBP_2_2 = 21, - M_MBP_SR = 22, - M_MBP_4 = 23, - M_MBP_5_1 = 24, - M_MBP_5_2 = 25, - M_MBP_5_3 = 26, - M_MBP_6_1 = 27, - M_MBP_6_2 = 28, - M_MBP_7_1 = 29, - M_MBP_8_2 = 30, - M_UNKNOWN = 31, -}; - -struct efifb_dmi_info { - char *optname; - long unsigned int base; - int stride; - int width; - int height; - int flags; -}; - -enum { - OVERRIDE_NONE = 0, - OVERRIDE_BASE = 1, - OVERRIDE_STRIDE = 2, - OVERRIDE_HEIGHT = 4, - OVERRIDE_WIDTH = 8, -}; - -struct freq_band_range { - u64 start; - u64 end; -}; - -struct wbrf_ranges_in_out { - u64 num_of_ranges; - struct freq_band_range band_list[11]; -}; - -enum wbrf_notifier_actions { - WBRF_CHANGED = 0, -}; - -struct amd_wbrf_ranges_out { - u32 num_of_ranges; - struct freq_band_range band_list[11]; -} __attribute__((packed)); - -struct acpi_pcct_ext_pcc_slave { - struct acpi_subtable_header header; - u32 platform_interrupt; - u8 flags; - u8 reserved1; - u64 base_address; - u32 length; - struct acpi_generic_address doorbell_register; - u64 preserve_mask; - u64 write_mask; - u32 latency; - u32 max_access_rate; - u32 min_turnaround_time; - struct acpi_generic_address platform_ack_register; - u64 ack_preserve_mask; - u64 ack_set_mask; - u64 reserved2; - struct acpi_generic_address cmd_complete_register; - u64 cmd_complete_mask; - struct acpi_generic_address cmd_update_register; - u64 cmd_update_preserve_mask; - u64 cmd_update_set_mask; - struct acpi_generic_address error_status_register; - u64 error_status_mask; -} __attribute__((packed)); - -struct acpi_pcct_ext_pcc_shared_memory { - u32 signature; - u32 flags; - u32 length; - u32 command; -}; - -struct mbox_client { - struct device *dev; - bool tx_block; - long unsigned int tx_tout; - bool knows_txdone; - void (*rx_callback)(struct mbox_client *, void *); - void (*tx_prepare)(struct mbox_client *, void *); - void (*tx_done)(struct mbox_client *, void *, int); -}; - -struct mbox_chan; - -struct mbox_chan_ops { - int (*send_data)(struct mbox_chan *, void *); - int (*flush)(struct mbox_chan *, long unsigned int); - int (*startup)(struct mbox_chan *); - void (*shutdown)(struct mbox_chan *); - bool (*last_tx_done)(struct mbox_chan *); - bool (*peek_data)(struct mbox_chan *); -}; - -struct mbox_controller; - -struct mbox_chan { - struct mbox_controller *mbox; - unsigned int txdone_method; - struct mbox_client *cl; - struct completion tx_complete; - void *active_req; - unsigned int msg_count; - unsigned int msg_free; - void *msg_data[20]; - spinlock_t lock; - void *con_priv; -}; - -struct mbox_controller { - struct device *dev; - const struct mbox_chan_ops *ops; - struct mbox_chan *chans; - int num_chans; - bool txdone_irq; - bool txdone_poll; - unsigned int txpoll_period; - struct mbox_chan * (*of_xlate)(struct mbox_controller *, const struct of_phandle_args *); - struct hrtimer poll_hrt; - spinlock_t poll_hrt_lock; - struct list_head node; -}; - -struct pcc_mbox_chan { - struct mbox_chan *mchan; - u64 shmem_base_addr; - void *shmem; - u64 shmem_size; - u32 latency; - u32 max_access_rate; - u16 min_turnaround_time; - bool manage_writes; - void * (*rx_alloc)(struct mbox_client *, int); -}; - -struct amd_shmem_info { - struct acpi_pcct_ext_pcc_shared_memory header; - u32 version_number: 8; - u32 n_logical_processors: 8; - u32 n_capabilities: 8; - u32 table_update_context: 8; - u32 n_bitmaps: 8; - u32 reserved: 24; - u32 table_data[0]; -}; - -struct amd_hfi_data { - const char *name; - struct device *dev; - struct pcc_mbox_chan *pcc_chan; - void *pcc_comm_addr; - struct acpi_subtable_header *pcct_entry; - struct amd_shmem_info *shmem; - struct dentry *dbgfs_dir; -}; - -struct amd_hfi_classes { - u32 perf; - u32 eff; -}; - -struct amd_hfi_cpuinfo { - int cpu; - u32 apic_id; - cpumask_var_t cpus; - s16 class_index; - u8 nr_class; - int *ipcc_scores; - struct amd_hfi_classes *amd_hfi_classes; -}; - -struct intel_scu_ipc_data { - struct resource mem; - int irq; -}; - -struct acpi_table_pcct { - struct acpi_table_header header; - u32 flags; - u64 reserved; -}; - -enum acpi_pcct_type { - ACPI_PCCT_TYPE_GENERIC_SUBSPACE = 0, - ACPI_PCCT_TYPE_HW_REDUCED_SUBSPACE = 1, - ACPI_PCCT_TYPE_HW_REDUCED_SUBSPACE_TYPE2 = 2, - ACPI_PCCT_TYPE_EXT_PCC_MASTER_SUBSPACE = 3, - ACPI_PCCT_TYPE_EXT_PCC_SLAVE_SUBSPACE = 4, - ACPI_PCCT_TYPE_HW_REG_COMM_SUBSPACE = 5, - ACPI_PCCT_TYPE_RESERVED = 6, -}; - -struct acpi_pcct_subspace { - struct acpi_subtable_header header; - u8 reserved[6]; - u64 base_address; - u64 length; - struct acpi_generic_address doorbell_register; - u64 preserve_mask; - u64 write_mask; - u32 latency; - u32 max_access_rate; - u16 min_turnaround_time; -} __attribute__((packed)); - -struct acpi_pcct_hw_reduced { - struct acpi_subtable_header header; - u32 platform_interrupt; - u8 flags; - u8 reserved; - u64 base_address; - u64 length; - struct acpi_generic_address doorbell_register; - u64 preserve_mask; - u64 write_mask; - u32 latency; - u32 max_access_rate; - u16 min_turnaround_time; -} __attribute__((packed)); - -struct acpi_pcct_hw_reduced_type2 { - struct acpi_subtable_header header; - u32 platform_interrupt; - u8 flags; - u8 reserved; - u64 base_address; - u64 length; - struct acpi_generic_address doorbell_register; - u64 preserve_mask; - u64 write_mask; - u32 latency; - u32 max_access_rate; - u16 min_turnaround_time; - struct acpi_generic_address platform_ack_register; - u64 ack_preserve_mask; - u64 ack_write_mask; -} __attribute__((packed)); - -struct acpi_pcct_ext_pcc_master { - struct acpi_subtable_header header; - u32 platform_interrupt; - u8 flags; - u8 reserved1; - u64 base_address; - u32 length; - struct acpi_generic_address doorbell_register; - u64 preserve_mask; - u64 write_mask; - u32 latency; - u32 max_access_rate; - u32 min_turnaround_time; - struct acpi_generic_address platform_ack_register; - u64 ack_preserve_mask; - u64 ack_set_mask; - u64 reserved2; - struct acpi_generic_address cmd_complete_register; - u64 cmd_complete_mask; - struct acpi_generic_address cmd_update_register; - u64 cmd_update_preserve_mask; - u64 cmd_update_set_mask; - struct acpi_generic_address error_status_register; - u64 error_status_mask; -} __attribute__((packed)); - -struct pcc_header___2 { - u32 signature; - u32 flags; - u32 length; - u32 command; -}; - -struct pcc_chan_reg { - void *vaddr; - struct acpi_generic_address *gas; - u64 preserve_mask; - u64 set_mask; - u64 status_mask; -}; - -struct pcc_chan_info { - struct pcc_mbox_chan chan; - struct pcc_chan_reg db; - struct pcc_chan_reg plat_irq_ack; - struct pcc_chan_reg cmd_complete; - struct pcc_chan_reg cmd_update; - struct pcc_chan_reg error; - int plat_irq; - u8 type; - unsigned int plat_irq_flags; - bool chan_in_use; -}; - -struct tsm_report_desc { - unsigned int privlevel; - size_t inblob_len; - u8 inblob[64]; - char *service_provider; - guid_t service_guid; - unsigned int service_manifest_version; -}; - -struct tsm_report { - struct tsm_report_desc desc; - size_t outblob_len; - u8 *outblob; - size_t auxblob_len; - u8 *auxblob; - size_t manifestblob_len; - u8 *manifestblob; -}; - -enum tsm_attr_index { - TSM_REPORT_GENERATION = 0, - TSM_REPORT_PROVIDER = 1, - TSM_REPORT_PRIVLEVEL = 2, - TSM_REPORT_PRIVLEVEL_FLOOR = 3, - TSM_REPORT_SERVICE_PROVIDER = 4, - TSM_REPORT_SERVICE_GUID = 5, - TSM_REPORT_SERVICE_MANIFEST_VER = 6, -}; - -enum tsm_bin_attr_index { - TSM_REPORT_INBLOB = 0, - TSM_REPORT_OUTBLOB = 1, - TSM_REPORT_AUXBLOB = 2, - TSM_REPORT_MANIFESTBLOB = 3, -}; - -struct tsm_report_ops { - const char *name; - unsigned int privlevel_floor; - int (*report_new)(struct tsm_report *, void *); - bool (*report_attr_visible)(int); - bool (*report_bin_attr_visible)(int); -}; - -struct tsm_provider { - const struct tsm_report_ops *ops; - void *data; - atomic_t count; -}; - -struct tsm_report_state { - struct tsm_report report; - long unsigned int write_generation; - long unsigned int read_generation; - struct config_item cfg; -}; - -enum tsm_data_select { - TSM_REPORT = 0, - TSM_CERTS = 1, - TSM_MANIFEST = 2, -}; - -union hv_synic_sint { - u64 as_uint64; - struct { - u64 vector: 8; - u64 reserved1: 8; - u64 masked: 1; - u64 auto_eoi: 1; - u64 polling: 1; - u64 as_intercept: 1; - u64 proxy: 1; - u64 reserved2: 43; - }; -}; - -enum hv_message_type { - HVMSG_NONE = 0, - HVMSG_UNMAPPED_GPA = 2147483648, - HVMSG_GPA_INTERCEPT = 2147483649, - HVMSG_TIMER_EXPIRED = 2147483664, - HVMSG_INVALID_VP_REGISTER_VALUE = 2147483680, - HVMSG_UNRECOVERABLE_EXCEPTION = 2147483681, - HVMSG_UNSUPPORTED_FEATURE = 2147483682, - HVMSG_OPAQUE_INTERCEPT = 2147483711, - HVMSG_EVENTLOG_BUFFERCOMPLETE = 2147483712, - HVMSG_HYPERCALL_INTERCEPT = 2147483728, - HVMSG_SYNIC_EVENT_INTERCEPT = 2147483744, - HVMSG_SYNIC_SINT_INTERCEPT = 2147483745, - HVMSG_SYNIC_SINT_DELIVERABLE = 2147483746, - HVMSG_ASYNC_CALL_COMPLETION = 2147483760, - HVMSG_SCHEDULER_VP_SIGNAL_BITSET = 2147483904, - HVMSG_SCHEDULER_VP_SIGNAL_PAIR = 2147483905, - HVMSG_X64_IO_PORT_INTERCEPT = 2147549184, - HVMSG_X64_MSR_INTERCEPT = 2147549185, - HVMSG_X64_CPUID_INTERCEPT = 2147549186, - HVMSG_X64_EXCEPTION_INTERCEPT = 2147549187, - HVMSG_X64_APIC_EOI = 2147549188, - HVMSG_X64_LEGACY_FP_ERROR = 2147549189, - HVMSG_X64_IOMMU_PRQ = 2147549190, - HVMSG_X64_HALT = 2147549191, - HVMSG_X64_INTERRUPTION_DELIVERABLE = 2147549192, - HVMSG_X64_SIPI_INTERCEPT = 2147549193, -}; - -union hv_synic_simp { - u64 as_uint64; - struct { - u64 simp_enabled: 1; - u64 preserved: 11; - u64 base_simp_gpa: 52; - }; -}; - -union hv_connection_id { - u32 asu32; - struct { - u32 id: 24; - u32 reserved: 8; - } u; -}; - -union hv_synic_event_flags { - unsigned char flags8[256]; - u32 flags32[64]; - ulong flags[32]; -}; - -union hv_synic_scontrol { - u64 as_uint64; - struct { - u64 enable: 1; - u64 reserved: 63; - }; -}; - -union hv_synic_siefp { - u64 as_uint64; - struct { - u64 siefp_enabled: 1; - u64 preserved: 11; - u64 base_siefp_gpa: 52; - }; -}; - -union hv_monitor_trigger_group { - u64 as_uint64; - struct { - u32 pending; - u32 armed; - }; -}; - -struct hv_monitor_parameter { - union hv_connection_id connectionid; - u16 flagnumber; - u16 rsvdz; -}; - -union hv_monitor_trigger_state { - u32 asu32; - struct { - u32 group_enable: 4; - u32 rsvdz: 28; - }; -}; - -struct hv_monitor_page { - union hv_monitor_trigger_state trigger_state; - u32 rsvdz1; - union hv_monitor_trigger_group trigger_group[4]; - u64 rsvdz2[3]; - s32 next_checktime[128]; - u16 latency[128]; - u64 rsvdz3[32]; - struct hv_monitor_parameter parameter[128]; - u8 rsvdz4[1984]; -}; - -struct hv_input_post_message { - union hv_connection_id connectionid; - u32 reserved; - u32 message_type; - u32 payload_size; - u64 payload[30]; -}; - -enum { - VMBUS_MESSAGE_CONNECTION_ID = 1, - VMBUS_MESSAGE_CONNECTION_ID_4 = 4, - VMBUS_MESSAGE_PORT_ID = 1, - VMBUS_EVENT_CONNECTION_ID = 2, - VMBUS_EVENT_PORT_ID = 2, - VMBUS_MONITOR_CONNECTION_ID = 3, - VMBUS_MONITOR_PORT_ID = 3, - VMBUS_MESSAGE_SINT = 2, -}; - -struct hv_per_cpu_context { - void *synic_message_page; - void *synic_event_page; - void *post_msg_page; - struct tasklet_struct msg_dpc; -}; - -struct hv_context { - u64 guestid; - struct hv_per_cpu_context *cpu_context; - struct cpumask *hv_numa_map; -}; - -enum vmbus_connect_state { - DISCONNECTED = 0, - CONNECTING = 1, - CONNECTED = 2, - DISCONNECTING = 3, -}; - -struct vmbus_connection { - u32 msg_conn_id; - atomic_t offer_in_progress; - enum vmbus_connect_state conn_state; - atomic_t next_gpadl_handle; - struct completion unload_event; - void *int_page; - void *send_int_page; - void *recv_int_page; - struct hv_monitor_page *monitor_pages[2]; - struct list_head chn_msg_list; - spinlock_t channelmsg_lock; - struct list_head chn_list; - struct mutex channel_mutex; - struct vmbus_channel **channels; - struct workqueue_struct *work_queue; - struct workqueue_struct *handle_primary_chan_wq; - struct workqueue_struct *handle_sub_chan_wq; - struct workqueue_struct *rescind_work_queue; - bool ignore_any_offer_msg; - atomic_t nr_chan_close_on_suspend; - struct completion ready_for_suspend_event; - struct completion all_offers_delivered_event; -}; - -struct vmbus_channel_initiate_contact { - struct vmbus_channel_message_header header; - u32 vmbus_version_requested; - u32 target_vcpu; - union { - u64 interrupt_page; - struct { - u8 msg_sint; - u8 msg_vtl; - u8 reserved[6]; - }; - }; - u64 monitor_page1; - u64 monitor_page2; -}; - -struct gpa_range { - u32 byte_count; - u32 byte_offset; - u64 pfn_array[0]; -}; - -struct vmbus_channel_rescind_offer { - struct vmbus_channel_message_header header; - u32 child_relid; -}; - -struct vmbus_channel_open_channel { - struct vmbus_channel_message_header header; - u32 child_relid; - u32 openid; - u32 ringbuffer_gpadlhandle; - u32 target_vp; - u32 downstream_ringbuffer_pageoffset; - unsigned char userdata[120]; -}; - -struct vmbus_channel_gpadl_header { - struct vmbus_channel_message_header header; - u32 child_relid; - u32 gpadl; - u16 range_buflen; - u16 rangecount; - struct gpa_range range[0]; -} __attribute__((packed)); - -struct vmbus_channel_gpadl_body { - struct vmbus_channel_message_header header; - u32 msgnumber; - u32 gpadl; - u64 pfn[0]; -}; - -struct vmbus_channel_gpadl_teardown { - struct vmbus_channel_message_header header; - u32 child_relid; - u32 gpadl; -}; - -struct vmbus_channel_relid_released { - struct vmbus_channel_message_header header; - u32 child_relid; -}; - -struct vmbus_channel_tl_connect_request { - struct vmbus_channel_message_header header; - guid_t guest_endpoint_id; - guid_t host_service_id; -}; - -struct vmbus_channel_modifychannel { - struct vmbus_channel_message_header header; - u32 child_relid; - u32 target_vp; -}; - -struct trace_event_raw_vmbus_hdr_msg { - struct trace_entry ent; - unsigned int msgtype; - char __data[0]; -}; - -struct trace_event_raw_vmbus_onoffer { - struct trace_entry ent; - u32 child_relid; - u8 monitorid; - u16 is_ddc_int; - u32 connection_id; - char if_type[16]; - char if_instance[16]; - u16 chn_flags; - u16 mmio_mb; - u16 sub_idx; - char __data[0]; -}; - -struct trace_event_raw_vmbus_onoffer_rescind { - struct trace_entry ent; - u32 child_relid; - char __data[0]; -}; - -struct trace_event_raw_vmbus_onopen_result { - struct trace_entry ent; - u32 child_relid; - u32 openid; - u32 status; - char __data[0]; -}; - -struct trace_event_raw_vmbus_ongpadl_created { - struct trace_entry ent; - u32 child_relid; - u32 gpadl; - u32 status; - char __data[0]; -}; - -struct trace_event_raw_vmbus_onmodifychannel_response { - struct trace_entry ent; - u32 child_relid; - u32 status; - char __data[0]; -}; - -struct trace_event_raw_vmbus_ongpadl_torndown { - struct trace_entry ent; - u32 gpadl; - char __data[0]; -}; - -struct trace_event_raw_vmbus_onversion_response { - struct trace_entry ent; - u8 ver; - char __data[0]; -}; - -struct trace_event_raw_vmbus_request_offers { - struct trace_entry ent; - int ret; - char __data[0]; -}; - -struct trace_event_raw_vmbus_open { - struct trace_entry ent; - u32 child_relid; - u32 openid; - u32 gpadlhandle; - u32 target_vp; - u32 offset; - int ret; - char __data[0]; -}; - -struct trace_event_raw_vmbus_close_internal { - struct trace_entry ent; - u32 child_relid; - int ret; - char __data[0]; -}; - -struct trace_event_raw_vmbus_establish_gpadl_header { - struct trace_entry ent; - u32 child_relid; - u32 gpadl; - u16 range_buflen; - u16 rangecount; - int ret; - char __data[0]; -}; - -struct trace_event_raw_vmbus_establish_gpadl_body { - struct trace_entry ent; - u32 msgnumber; - u32 gpadl; - int ret; - char __data[0]; -}; - -struct trace_event_raw_vmbus_teardown_gpadl { - struct trace_entry ent; - u32 child_relid; - u32 gpadl; - int ret; - char __data[0]; -}; - -struct trace_event_raw_vmbus_negotiate_version { - struct trace_entry ent; - u32 ver; - u32 target_vcpu; - int ret; - u64 int_page; - u64 mon_page1; - u64 mon_page2; - char __data[0]; -}; - -struct trace_event_raw_vmbus_release_relid { - struct trace_entry ent; - u32 child_relid; - int ret; - char __data[0]; -}; - -struct trace_event_raw_vmbus_send_tl_connect_request { - struct trace_entry ent; - char guest_id[16]; - char host_id[16]; - int ret; - char __data[0]; -}; - -struct trace_event_raw_vmbus_send_modifychannel { - struct trace_entry ent; - u32 child_relid; - u32 target_vp; - int ret; - char __data[0]; -}; - -struct trace_event_raw_vmbus_channel { - struct trace_entry ent; - u32 relid; - char __data[0]; -}; - -struct trace_event_data_offsets_vmbus_hdr_msg {}; - -struct trace_event_data_offsets_vmbus_onoffer {}; - -struct trace_event_data_offsets_vmbus_onoffer_rescind {}; - -struct trace_event_data_offsets_vmbus_onopen_result {}; - -struct trace_event_data_offsets_vmbus_ongpadl_created {}; - -struct trace_event_data_offsets_vmbus_onmodifychannel_response {}; - -struct trace_event_data_offsets_vmbus_ongpadl_torndown {}; - -struct trace_event_data_offsets_vmbus_onversion_response {}; - -struct trace_event_data_offsets_vmbus_request_offers {}; - -struct trace_event_data_offsets_vmbus_open {}; - -struct trace_event_data_offsets_vmbus_close_internal {}; - -struct trace_event_data_offsets_vmbus_establish_gpadl_header {}; - -struct trace_event_data_offsets_vmbus_establish_gpadl_body {}; - -struct trace_event_data_offsets_vmbus_teardown_gpadl {}; - -struct trace_event_data_offsets_vmbus_negotiate_version {}; - -struct trace_event_data_offsets_vmbus_release_relid {}; - -struct trace_event_data_offsets_vmbus_send_tl_connect_request {}; - -struct trace_event_data_offsets_vmbus_send_modifychannel {}; - -struct trace_event_data_offsets_vmbus_channel {}; - -typedef void (*btf_trace_vmbus_on_msg_dpc)(void *, const struct vmbus_channel_message_header *); - -typedef void (*btf_trace_vmbus_on_message)(void *, const struct vmbus_channel_message_header *); - -typedef void (*btf_trace_vmbus_onoffer)(void *, const struct vmbus_channel_offer_channel *); - -typedef void (*btf_trace_vmbus_onoffer_rescind)(void *, const struct vmbus_channel_rescind_offer *); - -typedef void (*btf_trace_vmbus_onopen_result)(void *, const struct vmbus_channel_open_result *); - -typedef void (*btf_trace_vmbus_ongpadl_created)(void *, const struct vmbus_channel_gpadl_created *); - -typedef void (*btf_trace_vmbus_onmodifychannel_response)(void *, const struct vmbus_channel_modifychannel_response *); - -typedef void (*btf_trace_vmbus_ongpadl_torndown)(void *, const struct vmbus_channel_gpadl_torndown *); - -typedef void (*btf_trace_vmbus_onversion_response)(void *, const struct vmbus_channel_version_response *); - -typedef void (*btf_trace_vmbus_request_offers)(void *, int); - -typedef void (*btf_trace_vmbus_open)(void *, const struct vmbus_channel_open_channel *, int); - -typedef void (*btf_trace_vmbus_close_internal)(void *, const struct vmbus_channel_close_channel *, int); - -typedef void (*btf_trace_vmbus_establish_gpadl_header)(void *, const struct vmbus_channel_gpadl_header *, int); - -typedef void (*btf_trace_vmbus_establish_gpadl_body)(void *, const struct vmbus_channel_gpadl_body *, int); - -typedef void (*btf_trace_vmbus_teardown_gpadl)(void *, const struct vmbus_channel_gpadl_teardown *, int); - -typedef void (*btf_trace_vmbus_negotiate_version)(void *, const struct vmbus_channel_initiate_contact *, int); - -typedef void (*btf_trace_vmbus_release_relid)(void *, const struct vmbus_channel_relid_released *, int); - -typedef void (*btf_trace_vmbus_send_tl_connect_request)(void *, const struct vmbus_channel_tl_connect_request *, int); - -typedef void (*btf_trace_vmbus_send_modifychannel)(void *, const struct vmbus_channel_modifychannel *, int); - -typedef void (*btf_trace_vmbus_chan_sched)(void *, const struct vmbus_channel *); - -typedef void (*btf_trace_vmbus_setevent)(void *, const struct vmbus_channel *); - -typedef void (*btf_trace_vmbus_on_event)(void *, const struct vmbus_channel *); - -struct page_reporting_dev_info { - int (*report)(struct page_reporting_dev_info *, struct scatterlist *, unsigned int); - struct delayed_work work; - atomic_t state; - unsigned int order; -}; - -enum { - HV_EXTMEM_HEAT_HINT_COLD = 0, - HV_EXTMEM_HEAT_HINT_HOT = 1, - HV_EXTMEM_HEAT_HINT_COLD_DISCARD = 2, - HV_EXTMEM_HEAT_HINT_MAX = 3, -}; - -struct hv_memory_hint { - u64 heat_type: 2; - u64 reserved: 62; - union hv_gpa_page_range ranges[0]; -}; - -struct trace_event_raw_balloon_status { - struct trace_entry ent; - u64 available; - u64 committed; - long unsigned int vm_memory_committed; - long unsigned int pages_ballooned; - long unsigned int pages_added; - long unsigned int pages_onlined; - char __data[0]; -}; - -struct trace_event_data_offsets_balloon_status {}; - -typedef void (*btf_trace_balloon_status)(void *, u64, u64, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - -enum { - DYNMEM_PROTOCOL_VERSION_1 = 3, - DYNMEM_PROTOCOL_VERSION_2 = 65536, - DYNMEM_PROTOCOL_VERSION_3 = 131072, - DYNMEM_PROTOCOL_VERSION_WIN7 = 3, - DYNMEM_PROTOCOL_VERSION_WIN8 = 65536, - DYNMEM_PROTOCOL_VERSION_WIN10 = 131072, - DYNMEM_PROTOCOL_VERSION_CURRENT = 131072, -}; - -enum dm_message_type { - DM_ERROR = 0, - DM_VERSION_REQUEST = 1, - DM_VERSION_RESPONSE = 2, - DM_CAPABILITIES_REPORT = 3, - DM_CAPABILITIES_RESPONSE = 4, - DM_STATUS_REPORT = 5, - DM_BALLOON_REQUEST = 6, - DM_BALLOON_RESPONSE = 7, - DM_UNBALLOON_REQUEST = 8, - DM_UNBALLOON_RESPONSE = 9, - DM_MEM_HOT_ADD_REQUEST = 10, - DM_MEM_HOT_ADD_RESPONSE = 11, - DM_VERSION_03_MAX = 11, - DM_INFO_MESSAGE = 12, - DM_VERSION_1_MAX = 12, -}; - -union dm_version { - struct { - __u16 minor_version; - __u16 major_version; - }; - __u32 version; -}; - -union dm_caps { - struct { - __u64 balloon: 1; - __u64 hot_add: 1; - __u64 hot_add_alignment: 4; - __u64 reservedz: 58; - } cap_bits; - __u64 caps; -}; - -union dm_mem_page_range { - struct { - __u64 start_page: 40; - __u64 page_cnt: 24; - } finfo; - __u64 page_range; -}; - -struct dm_header { - __u16 type; - __u16 size; - __u32 trans_id; -}; - -struct dm_message { - struct dm_header hdr; - __u8 data[0]; -}; - -struct dm_version_request { - struct dm_header hdr; - union dm_version version; - __u32 is_last_attempt: 1; - __u32 reservedz: 31; -}; - -struct dm_version_response { - struct dm_header hdr; - __u64 is_accepted: 1; - __u64 reservedz: 63; -}; - -struct dm_capabilities { - struct dm_header hdr; - union dm_caps caps; - __u64 min_page_cnt; - __u64 max_page_number; -}; - -struct dm_capabilities_resp_msg { - struct dm_header hdr; - __u64 is_accepted: 1; - __u64 reservedz: 63; -}; - -struct dm_status { - struct dm_header hdr; - __u64 num_avail; - __u64 num_committed; - __u64 page_file_size; - __u64 zero_free; - __u32 page_file_writes; - __u32 io_diff; -}; - -struct dm_balloon { - struct dm_header hdr; - __u32 num_pages; - __u32 reservedz; -}; - -struct dm_balloon_response { - struct dm_header hdr; - __u32 reservedz; - __u32 more_pages: 1; - __u32 range_count: 31; - union dm_mem_page_range range_array[0]; -}; - -struct dm_unballoon_request { - struct dm_header hdr; - __u32 more_pages: 1; - __u32 reservedz: 31; - __u32 range_count; - union dm_mem_page_range range_array[0]; -}; - -struct dm_unballoon_response { - struct dm_header hdr; -}; - -struct dm_hot_add { - struct dm_header hdr; - union dm_mem_page_range range; -}; - -struct dm_hot_add_response { - struct dm_header hdr; - __u32 page_count; - __u32 result; -}; - -enum dm_info_type { - INFO_TYPE_MAX_PAGE_CNT = 0, - MAX_INFO_TYPE = 1, -}; - -struct dm_info_header { - enum dm_info_type type; - __u32 data_size; -}; - -struct dm_info_msg { - struct dm_header hdr; - __u32 reserved; - __u32 info_size; - __u8 info[0]; -}; - -struct hv_hotadd_state { - struct list_head list; - long unsigned int start_pfn; - long unsigned int covered_start_pfn; - long unsigned int covered_end_pfn; - long unsigned int ha_end_pfn; - long unsigned int end_pfn; - struct list_head gap_list; -}; - -struct hv_hotadd_gap { - struct list_head list; - long unsigned int start_pfn; - long unsigned int end_pfn; -}; - -struct balloon_state { - __u32 num_pages; - struct work_struct wrk; -}; - -struct hot_add_wrk { - union dm_mem_page_range ha_page_range; - union dm_mem_page_range ha_region_range; - struct work_struct wrk; -}; - -enum hv_dm_state { - DM_INITIALIZING = 0, - DM_INITIALIZED = 1, - DM_BALLOON_UP = 2, - DM_BALLOON_DOWN = 3, - DM_HOT_ADD = 4, - DM_INIT_ERROR = 5, -}; - -struct hv_dynmem_device { - struct hv_device *dev; - enum hv_dm_state state; - struct completion host_event; - struct completion config_event; - unsigned int num_pages_ballooned; - unsigned int num_pages_onlined; - unsigned int num_pages_added; - struct balloon_state balloon_wrk; - struct hot_add_wrk ha_wrk; - bool host_specified_ha_region; - struct completion ol_waitevent; - struct task_struct *thread; - spinlock_t ha_lock; - struct list_head ha_region_list; - __u32 next_version; - __u32 version; - struct page_reporting_dev_info pr_dev_info; - __u64 max_dynamic_page_count; -}; - -struct devfreq_cooling_power { - int (*get_real_power)(struct devfreq *, u32 *, long unsigned int, long unsigned int); -}; - -struct trace_event_raw_devfreq_frequency { - struct trace_entry ent; - u32 __data_loc_dev_name; - long unsigned int freq; - long unsigned int prev_freq; - long unsigned int busy_time; - long unsigned int total_time; - char __data[0]; -}; - -struct trace_event_raw_devfreq_monitor { - struct trace_entry ent; - long unsigned int freq; - long unsigned int busy_time; - long unsigned int total_time; - unsigned int polling_ms; - u32 __data_loc_dev_name; - char __data[0]; -}; - -struct trace_event_data_offsets_devfreq_frequency { - u32 dev_name; - const void *dev_name_ptr_; -}; - -struct trace_event_data_offsets_devfreq_monitor { - u32 dev_name; - const void *dev_name_ptr_; -}; - -typedef void (*btf_trace_devfreq_frequency)(void *, struct devfreq *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_devfreq_monitor)(void *, struct devfreq *); - -struct devfreq_notifier_devres { - struct devfreq *devfreq; - struct notifier_block *nb; - unsigned int list; -}; - -struct powercap_control_type; - -struct powercap_control_type_ops { - int (*set_enable)(struct powercap_control_type *, bool); - int (*get_enable)(struct powercap_control_type *, bool *); - int (*release)(struct powercap_control_type *); -}; - -struct powercap_control_type { - struct device dev; - struct idr idr; - int nr_zones; - const struct powercap_control_type_ops *ops; - struct mutex lock; - bool allocated; - struct list_head node; -}; - -struct powercap_zone; - -struct powercap_zone_ops { - int (*get_max_energy_range_uj)(struct powercap_zone *, u64 *); - int (*get_energy_uj)(struct powercap_zone *, u64 *); - int (*reset_energy_uj)(struct powercap_zone *); - int (*get_max_power_range_uw)(struct powercap_zone *, u64 *); - int (*get_power_uw)(struct powercap_zone *, u64 *); - int (*set_enable)(struct powercap_zone *, bool); - int (*get_enable)(struct powercap_zone *, bool *); - int (*release)(struct powercap_zone *); -}; - -struct powercap_zone_constraint; - -struct powercap_zone { - int id; - char *name; - void *control_type_inst; - const struct powercap_zone_ops *ops; - struct device dev; - int const_id_cnt; - struct idr idr; - struct idr *parent_idr; - void *private_data; - struct attribute **zone_dev_attrs; - int zone_attr_count; - struct attribute_group dev_zone_attr_group; - const struct attribute_group *dev_attr_groups[2]; - bool allocated; - struct powercap_zone_constraint *constraints; -}; - -struct powercap_zone_constraint_ops; - -struct powercap_zone_constraint { - int id; - struct powercap_zone *power_zone; - const struct powercap_zone_constraint_ops *ops; -}; - -struct powercap_zone_constraint_ops { - int (*set_power_limit_uw)(struct powercap_zone *, int, u64); - int (*get_power_limit_uw)(struct powercap_zone *, int, u64 *); - int (*set_time_window_us)(struct powercap_zone *, int, u64); - int (*get_time_window_us)(struct powercap_zone *, int, u64 *); - int (*get_max_power_uw)(struct powercap_zone *, int, u64 *); - int (*get_min_power_uw)(struct powercap_zone *, int, u64 *); - int (*get_max_time_window_us)(struct powercap_zone *, int, u64 *); - int (*get_min_time_window_us)(struct powercap_zone *, int, u64 *); - const char * (*get_name)(struct powercap_zone *, int); -}; - -struct powercap_constraint_attr { - struct device_attribute power_limit_attr; - struct device_attribute time_window_attr; - struct device_attribute max_power_attr; - struct device_attribute min_power_attr; - struct device_attribute max_time_window_attr; - struct device_attribute min_time_window_attr; - struct device_attribute name_attr; -}; - -struct ce_array { - u64 *array; - unsigned int n; - unsigned int decay_count; - u64 pfns_poisoned; - u64 ces_entered; - u64 decays_done; - union { - struct { - __u32 disabled: 1; - __u32 __resv: 31; - }; - __u32 flags; - }; -}; - -struct icc_bulk_data { - struct icc_path *path; - const char *name; - u32 avg_bw; - u32 peak_bw; -}; - -struct icc_bulk_devres { - struct icc_bulk_data *paths; - int num_paths; -}; - -struct dpll_device_registration { - struct list_head list; - const struct dpll_device_ops *ops; - void *priv; -}; - -struct dpll_pin_registration { - struct list_head list; - const struct dpll_pin_ops *ops; - void *priv; - void *cookie; -}; - -struct __kernel_sock_timeval { - __s64 tv_sec; - __s64 tv_usec; -}; - -struct dmabuf_token { - __u32 token_start; - __u32 token_count; -}; - -struct linger { - int l_onoff; - int l_linger; -}; - -struct ucred { - __u32 pid; - __u32 uid; - __u32 gid; -}; - -struct sock_fprog { - short unsigned int len; - struct sock_filter *filter; -}; - -struct so_timestamping { - int flags; - int bind_phc; -}; - -enum txtime_flags { - SOF_TXTIME_DEADLINE_MODE = 1, - SOF_TXTIME_REPORT_ERRORS = 2, - SOF_TXTIME_FLAGS_LAST = 2, - SOF_TXTIME_FLAGS_MASK = 3, -}; - -struct sock_txtime { - __kernel_clockid_t clockid; - __u32 flags; -}; - -enum sk_pacing { - SK_PACING_NONE = 0, - SK_PACING_NEEDED = 1, - SK_PACING_FQ = 2, -}; - -struct sock_skb_cb { - u32 dropcount; -}; - -typedef short unsigned int mifi_t; - -struct sioc_sg_req6 { - struct sockaddr_in6 src; - struct sockaddr_in6 grp; - long unsigned int pktcnt; - long unsigned int bytecnt; - long unsigned int wrong_if; -}; - -struct sioc_mif_req6 { - mifi_t mifi; - long unsigned int icount; - long unsigned int ocount; - long unsigned int ibytes; - long unsigned int obytes; -}; - -struct cgroup_cls_state { - struct cgroup_subsys_state css; - u32 classid; -}; - -enum { - SK_MEMINFO_RMEM_ALLOC = 0, - SK_MEMINFO_RCVBUF = 1, - SK_MEMINFO_WMEM_ALLOC = 2, - SK_MEMINFO_SNDBUF = 3, - SK_MEMINFO_FWD_ALLOC = 4, - SK_MEMINFO_WMEM_QUEUED = 5, - SK_MEMINFO_OPTMEM = 6, - SK_MEMINFO_BACKLOG = 7, - SK_MEMINFO_DROPS = 8, - SK_MEMINFO_VARS = 9, -}; - -enum sknetlink_groups { - SKNLGRP_NONE = 0, - SKNLGRP_INET_TCP_DESTROY = 1, - SKNLGRP_INET_UDP_DESTROY = 2, - SKNLGRP_INET6_TCP_DESTROY = 3, - SKNLGRP_INET6_UDP_DESTROY = 4, - __SKNLGRP_MAX = 5, -}; - -struct __kernel_old_timespec { - __kernel_old_time_t tv_sec; - long int tv_nsec; -}; - -struct scm_timestamping_internal { - struct timespec64 ts[3]; -}; - -struct unix_edge; - -struct scm_fp_list { - short int count; - short int count_unix; - short int max; - bool inflight; - bool dead; - struct list_head vertices; - struct unix_edge *edges; - struct user_struct *user; - struct file *fp[253]; -}; - -struct scm_cookie { - struct pid *pid; - struct scm_fp_list *fp; - struct scm_creds creds; - u32 secid; -}; - -struct scm_timestamping { - struct __kernel_old_timespec ts[3]; -}; - -struct scm_timestamping64 { - struct __kernel_timespec ts[3]; -}; - -enum { - NETNSA_NONE = 0, - NETNSA_NSID = 1, - NETNSA_PID = 2, - NETNSA_FD = 3, - NETNSA_TARGET_NSID = 4, - NETNSA_CURRENT_NSID = 5, - __NETNSA_MAX = 6, -}; - -struct net_fill_args { - u32 portid; - u32 seq; - int flags; - int cmd; - int nsid; - bool add_ref; - int ref_nsid; -}; - -struct rtnl_net_dump_cb { - struct net *tgt_net; - struct net *ref_net; - struct sk_buff *skb; - struct net_fill_args fillargs; - int idx; - int s_idx; -}; - -typedef u16 u_int16_t; - -enum { - BPF_F_RECOMPUTE_CSUM = 1, - BPF_F_INVALIDATE_HASH = 2, -}; - -enum { - BPF_F_HDR_FIELD_MASK = 15, -}; - -enum { - BPF_F_PSEUDO_HDR = 16, - BPF_F_MARK_MANGLED_0 = 32, - BPF_F_MARK_ENFORCE = 64, - BPF_F_IPV6 = 128, -}; - -enum { - BPF_F_TUNINFO_IPV6 = 1, -}; - -enum { - BPF_F_ZERO_CSUM_TX = 2, - BPF_F_DONT_FRAGMENT = 4, - BPF_F_SEQ_NUMBER = 8, - BPF_F_NO_TUNNEL_KEY = 16, -}; - -enum { - BPF_F_TUNINFO_FLAGS = 16, -}; - -enum { - BPF_CSUM_LEVEL_QUERY = 0, - BPF_CSUM_LEVEL_INC = 1, - BPF_CSUM_LEVEL_DEC = 2, - BPF_CSUM_LEVEL_RESET = 3, -}; - -enum { - BPF_F_ADJ_ROOM_FIXED_GSO = 1, - BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 2, - BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 4, - BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 8, - BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 16, - BPF_F_ADJ_ROOM_NO_CSUM_RESET = 32, - BPF_F_ADJ_ROOM_ENCAP_L2_ETH = 64, - BPF_F_ADJ_ROOM_DECAP_L3_IPV4 = 128, - BPF_F_ADJ_ROOM_DECAP_L3_IPV6 = 256, -}; - -enum { - BPF_ADJ_ROOM_ENCAP_L2_MASK = 255, - BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 56, -}; - -enum { - BPF_SK_LOOKUP_F_REPLACE = 1, - BPF_SK_LOOKUP_F_NO_REUSEPORT = 2, -}; - -enum bpf_adj_room_mode { - BPF_ADJ_ROOM_NET = 0, - BPF_ADJ_ROOM_MAC = 1, -}; - -enum bpf_hdr_start_off { - BPF_HDR_START_MAC = 0, - BPF_HDR_START_NET = 1, -}; - -enum bpf_lwt_encap_mode { - BPF_LWT_ENCAP_SEG6 = 0, - BPF_LWT_ENCAP_SEG6_INLINE = 1, - BPF_LWT_ENCAP_IP = 2, -}; - -enum { - BPF_SKB_TSTAMP_UNSPEC = 0, - BPF_SKB_TSTAMP_DELIVERY_MONO = 1, - BPF_SKB_CLOCK_REALTIME = 0, - BPF_SKB_CLOCK_MONOTONIC = 1, - BPF_SKB_CLOCK_TAI = 2, -}; - -struct bpf_tunnel_key { - __u32 tunnel_id; - union { - __u32 remote_ipv4; - __u32 remote_ipv6[4]; - }; - __u8 tunnel_tos; - __u8 tunnel_ttl; - union { - __u16 tunnel_ext; - __be16 tunnel_flags; - }; - __u32 tunnel_label; - union { - __u32 local_ipv4; - __u32 local_ipv6[4]; - }; -}; - -struct bpf_xfrm_state { - __u32 reqid; - __u32 spi; - __u16 family; - __u16 ext; - union { - __u32 remote_ipv4; - __u32 remote_ipv6[4]; - }; -}; - -struct bpf_tcp_sock { - __u32 snd_cwnd; - __u32 srtt_us; - __u32 rtt_min; - __u32 snd_ssthresh; - __u32 rcv_nxt; - __u32 snd_nxt; - __u32 snd_una; - __u32 mss_cache; - __u32 ecn_flags; - __u32 rate_delivered; - __u32 rate_interval_us; - __u32 packets_out; - __u32 retrans_out; - __u32 total_retrans; - __u32 segs_in; - __u32 data_segs_in; - __u32 segs_out; - __u32 data_segs_out; - __u32 lost_out; - __u32 sacked_out; - __u64 bytes_received; - __u64 bytes_acked; - __u32 dsack_dups; - __u32 delivered; - __u32 delivered_ce; - __u32 icsk_retransmits; -}; - -struct bpf_sock_tuple { - union { - struct { - __be32 saddr; - __be32 daddr; - __be16 sport; - __be16 dport; - } ipv4; - struct { - __be32 saddr[4]; - __be32 daddr[4]; - __be16 sport; - __be16 dport; - } ipv6; - }; -}; - -struct bpf_xdp_sock { - __u32 queue_id; -}; - -struct sk_msg_md { - union { - void *data; - }; - union { - void *data_end; - }; - __u32 family; - __u32 remote_ip4; - __u32 local_ip4; - __u32 remote_ip6[4]; - __u32 local_ip6[4]; - __u32 remote_port; - __u32 local_port; - __u32 size; - union { - struct bpf_sock *sk; - }; -}; - -struct sk_reuseport_md { - union { - void *data; - }; - union { - void *data_end; - }; - __u32 len; - __u32 eth_protocol; - __u32 ip_protocol; - __u32 bind_inany; - __u32 hash; - union { - struct bpf_sock *sk; - }; - union { - struct bpf_sock *migrating_sk; - }; -}; - -struct bpf_sock_addr { - __u32 user_family; - __u32 user_ip4; - __u32 user_ip6[4]; - __u32 user_port; - __u32 family; - __u32 type; - __u32 protocol; - __u32 msg_src_ip4; - __u32 msg_src_ip6[4]; - union { - struct bpf_sock *sk; - }; -}; - -struct bpf_sock_ops { - __u32 op; - union { - __u32 args[4]; - __u32 reply; - __u32 replylong[4]; - }; - __u32 family; - __u32 remote_ip4; - __u32 local_ip4; - __u32 remote_ip6[4]; - __u32 local_ip6[4]; - __u32 remote_port; - __u32 local_port; - __u32 is_fullsock; - __u32 snd_cwnd; - __u32 srtt_us; - __u32 bpf_sock_ops_cb_flags; - __u32 state; - __u32 rtt_min; - __u32 snd_ssthresh; - __u32 rcv_nxt; - __u32 snd_nxt; - __u32 snd_una; - __u32 mss_cache; - __u32 ecn_flags; - __u32 rate_delivered; - __u32 rate_interval_us; - __u32 packets_out; - __u32 retrans_out; - __u32 total_retrans; - __u32 segs_in; - __u32 data_segs_in; - __u32 segs_out; - __u32 data_segs_out; - __u32 lost_out; - __u32 sacked_out; - __u32 sk_txhash; - __u64 bytes_received; - __u64 bytes_acked; - union { - struct bpf_sock *sk; - }; - union { - void *skb_data; - }; - union { - void *skb_data_end; - }; - __u32 skb_len; - __u32 skb_tcp_flags; - __u64 skb_hwtstamp; -}; - -enum { - SK_BPF_CB_TX_TIMESTAMPING = 1, - SK_BPF_CB_MASK = 1, -}; - -enum { - TCP_BPF_IW = 1001, - TCP_BPF_SNDCWND_CLAMP = 1002, - TCP_BPF_DELACK_MAX = 1003, - TCP_BPF_RTO_MIN = 1004, - TCP_BPF_SYN = 1005, - TCP_BPF_SYN_IP = 1006, - TCP_BPF_SYN_MAC = 1007, - TCP_BPF_SOCK_OPS_CB_FLAGS = 1008, - SK_BPF_CB_FLAGS = 1009, -}; - -enum { - BPF_LOAD_HDR_OPT_TCP_SYN = 1, -}; - -enum { - BPF_FIB_LOOKUP_DIRECT = 1, - BPF_FIB_LOOKUP_OUTPUT = 2, - BPF_FIB_LOOKUP_SKIP_NEIGH = 4, - BPF_FIB_LOOKUP_TBID = 8, - BPF_FIB_LOOKUP_SRC = 16, - BPF_FIB_LOOKUP_MARK = 32, -}; - -enum { - BPF_FIB_LKUP_RET_SUCCESS = 0, - BPF_FIB_LKUP_RET_BLACKHOLE = 1, - BPF_FIB_LKUP_RET_UNREACHABLE = 2, - BPF_FIB_LKUP_RET_PROHIBIT = 3, - BPF_FIB_LKUP_RET_NOT_FWDED = 4, - BPF_FIB_LKUP_RET_FWD_DISABLED = 5, - BPF_FIB_LKUP_RET_UNSUPP_LWT = 6, - BPF_FIB_LKUP_RET_NO_NEIGH = 7, - BPF_FIB_LKUP_RET_FRAG_NEEDED = 8, - BPF_FIB_LKUP_RET_NO_SRC_ADDR = 9, -}; - -struct bpf_fib_lookup { - __u8 family; - __u8 l4_protocol; - __be16 sport; - __be16 dport; - union { - __u16 tot_len; - __u16 mtu_result; - }; - __u32 ifindex; - union { - __u8 tos; - __be32 flowinfo; - __u32 rt_metric; - }; - union { - __be32 ipv4_src; - __u32 ipv6_src[4]; - }; - union { - __be32 ipv4_dst; - __u32 ipv6_dst[4]; - }; - union { - struct { - __be16 h_vlan_proto; - __be16 h_vlan_TCI; - }; - __u32 tbid; - }; - union { - struct { - __u32 mark; - }; - struct { - __u8 smac[6]; - __u8 dmac[6]; - }; - }; -}; - -struct bpf_redir_neigh { - __u32 nh_family; - union { - __be32 ipv4_nh; - __u32 ipv6_nh[4]; - }; -}; - -enum bpf_check_mtu_flags { - BPF_MTU_CHK_SEGS = 1, -}; - -enum bpf_check_mtu_ret { - BPF_MTU_CHK_RET_SUCCESS = 0, - BPF_MTU_CHK_RET_FRAG_NEEDED = 1, - BPF_MTU_CHK_RET_SEGS_TOOBIG = 2, -}; - -struct bpf_sk_lookup { - union { - union { - struct bpf_sock *sk; - }; - __u64 cookie; - }; - __u32 family; - __u32 protocol; - __u32 remote_ip4; - __u32 remote_ip6[4]; - __be16 remote_port; - __u32 local_ip4; - __u32 local_ip6[4]; - __u32 local_port; - __u32 ingress_ifindex; -}; - -struct bpf_dispatcher_prog { - struct bpf_prog *prog; - refcount_t users; -}; - -struct bpf_dispatcher { - struct mutex mutex; - void *func; - struct bpf_dispatcher_prog progs[48]; - int num_progs; - void *image; - void *rw_image; - u32 image_off; - struct bpf_ksym ksym; - struct static_call_key *sc_key; - void *sc_tramp; -}; - -struct sk_reuseport_kern { - struct sk_buff *skb; - struct sock *sk; - struct sock *selected_sk; - struct sock *migrating_sk; - void *data_end; - u32 hash; - u32 reuseport_id; - bool bind_inany; -}; - -struct bpf_flow_dissector { - struct bpf_flow_keys *flow_keys; - const struct sk_buff *skb; - const void *data; - const void *data_end; -}; - -union nf_inet_addr { - __u32 all[4]; - __be32 ip; - __be32 ip6[4]; - struct in_addr in; - struct in6_addr in6; -}; - -struct ip_ct_tcp_state { - u_int32_t td_end; - u_int32_t td_maxend; - u_int32_t td_maxwin; - u_int32_t td_maxack; - u_int8_t td_scale; - u_int8_t flags; -}; - -struct ip_ct_tcp { - struct ip_ct_tcp_state seen[2]; - u_int8_t state; - u_int8_t last_dir; - u_int8_t retrans; - u_int8_t last_index; - u_int32_t last_seq; - u_int32_t last_ack; - u_int32_t last_end; - u_int16_t last_win; - u_int8_t last_wscale; - u_int8_t last_flags; -}; - -union nf_conntrack_man_proto { - __be16 all; - struct { - __be16 port; - } tcp; - struct { - __be16 port; - } udp; - struct { - __be16 id; - } icmp; - struct { - __be16 port; - } dccp; - struct { - __be16 port; - } sctp; - struct { - __be16 key; - } gre; -}; - -struct ip_ct_sctp { - enum sctp_conntrack state; - __be32 vtag[2]; - u8 init[2]; - u8 last_dir; - u8 flags; -}; - -struct compat_sock_fprog { - u16 len; - compat_uptr_t filter; -}; - -typedef int (*bpf_aux_classic_check_t)(struct sock_filter *, unsigned int); - -struct udp6_sock { - struct udp_sock udp; - struct ipv6_pinfo inet6; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct ipv6_bpf_stub { - int (*inet6_bind)(struct sock *, struct sockaddr *, int, u32); - struct sock * (*udp6_lib_lookup)(const struct net *, const struct in6_addr *, __be16, const struct in6_addr *, __be16, int, int, struct udp_table *, struct sk_buff *); - int (*ipv6_setsockopt)(struct sock *, int, int, sockptr_t, unsigned int); - int (*ipv6_getsockopt)(struct sock *, int, int, sockptr_t, sockptr_t); - int (*ipv6_dev_get_saddr)(struct net *, const struct net_device *, const struct in6_addr *, unsigned int, struct in6_addr *); -}; - -struct bpf_tcp_req_attrs { - u32 rcv_tsval; - u32 rcv_tsecr; - u16 mss; - u8 rcv_wscale; - u8 snd_wscale; - u8 ecn_ok; - u8 wscale_ok; - u8 sack_ok; - u8 tstamp_ok; - u8 usec_ts_ok; - u8 reserved[3]; -}; - -struct _strp_msg { - struct strp_msg strp; - int accum_len; -}; - -struct tls_msg { - u8 control; -}; - -struct sk_skb_cb { - unsigned char data[20]; - unsigned char pad[4]; - struct _strp_msg strp; - struct tls_msg tls; - u64 temp_reg; -}; - -enum { - SEG6_LOCAL_ACTION_UNSPEC = 0, - SEG6_LOCAL_ACTION_END = 1, - SEG6_LOCAL_ACTION_END_X = 2, - SEG6_LOCAL_ACTION_END_T = 3, - SEG6_LOCAL_ACTION_END_DX2 = 4, - SEG6_LOCAL_ACTION_END_DX6 = 5, - SEG6_LOCAL_ACTION_END_DX4 = 6, - SEG6_LOCAL_ACTION_END_DT6 = 7, - SEG6_LOCAL_ACTION_END_DT4 = 8, - SEG6_LOCAL_ACTION_END_B6 = 9, - SEG6_LOCAL_ACTION_END_B6_ENCAP = 10, - SEG6_LOCAL_ACTION_END_BM = 11, - SEG6_LOCAL_ACTION_END_S = 12, - SEG6_LOCAL_ACTION_END_AS = 13, - SEG6_LOCAL_ACTION_END_AM = 14, - SEG6_LOCAL_ACTION_END_BPF = 15, - SEG6_LOCAL_ACTION_END_DT46 = 16, - __SEG6_LOCAL_ACTION_MAX = 17, -}; - -struct seg6_bpf_srh_state { - local_lock_t bh_lock; - struct ipv6_sr_hdr *srh; - u16 hdrlen; - bool valid; -}; - -struct tls_strparser { - struct sock *sk; - u32 mark: 8; - u32 stopped: 1; - u32 copy_mode: 1; - u32 mixed_decrypted: 1; - bool msg_ready; - struct strp_msg stm; - struct sk_buff *anchor; - struct work_struct work; -}; - -struct tls_sw_context_rx { - struct crypto_aead *aead_recv; - struct crypto_wait async_wait; - struct sk_buff_head rx_list; - void (*saved_data_ready)(struct sock *); - u8 reader_present; - u8 async_capable: 1; - u8 zc_capable: 1; - u8 reader_contended: 1; - bool key_update_pending; - struct tls_strparser strp; - atomic_t decrypt_pending; - struct sk_buff_head async_hold; - struct wait_queue_head wq; -}; - -struct nf_ct_gre { - unsigned int stream_timeout; - unsigned int timeout; -}; - -struct nf_conntrack_zone { - u16 id; - u8 flags; - u8 dir; -}; - -struct nf_conntrack_man { - union nf_inet_addr u3; - union nf_conntrack_man_proto u; - u_int16_t l3num; -}; - -struct nf_conntrack_tuple { - struct nf_conntrack_man src; - struct { - union nf_inet_addr u3; - union { - __be16 all; - struct { - __be16 port; - } tcp; - struct { - __be16 port; - } udp; - struct { - u_int8_t type; - u_int8_t code; - } icmp; - struct { - __be16 port; - } dccp; - struct { - __be16 port; - } sctp; - struct { - __be16 key; - } gre; - } u; - u_int8_t protonum; - struct {} __nfct_hash_offsetend; - u_int8_t dir; - } dst; -}; - -struct nf_conntrack_tuple_hash { - struct hlist_nulls_node hnnode; - struct nf_conntrack_tuple tuple; -}; - -struct nf_ct_udp { - long unsigned int stream_ts; -}; - -union nf_conntrack_proto { - struct ip_ct_sctp sctp; - struct ip_ct_tcp tcp; - struct nf_ct_udp udp; - struct nf_ct_gre gre; - unsigned int tmpl_padto; -}; - -struct nf_ct_ext; - -struct nf_conn { - struct nf_conntrack ct_general; - spinlock_t lock; - u32 timeout; - struct nf_conntrack_zone zone; - struct nf_conntrack_tuple_hash tuplehash[2]; - long unsigned int status; - possible_net_t ct_net; - struct hlist_node nat_bysource; - struct {} __nfct_init_offset; - struct nf_conn *master; - u_int32_t mark; - u_int32_t secmark; - struct nf_ct_ext *ext; - union nf_conntrack_proto proto; -}; - -struct nf_conn___init { - struct nf_conn ct; -}; - -typedef u64 (*btf_bpf_skb_get_pay_offset)(struct sk_buff *); - -typedef u64 (*btf_bpf_skb_get_nlattr)(struct sk_buff *, u32, u32); - -typedef u64 (*btf_bpf_skb_get_nlattr_nest)(struct sk_buff *, u32, u32); - -typedef u64 (*btf_bpf_skb_load_helper_8)(const struct sk_buff *, const void *, int, int); - -typedef u64 (*btf_bpf_skb_load_helper_8_no_cache)(const struct sk_buff *, int); - -typedef u64 (*btf_bpf_skb_load_helper_16)(const struct sk_buff *, const void *, int, int); - -typedef u64 (*btf_bpf_skb_load_helper_16_no_cache)(const struct sk_buff *, int); - -typedef u64 (*btf_bpf_skb_load_helper_32)(const struct sk_buff *, const void *, int, int); - -typedef u64 (*btf_bpf_skb_load_helper_32_no_cache)(const struct sk_buff *, int); - -typedef u64 (*btf_bpf_skb_store_bytes)(struct sk_buff *, u32, const void *, u32, u64); - -typedef u64 (*btf_bpf_skb_load_bytes)(const struct sk_buff *, u32, void *, u32); - -typedef u64 (*btf_bpf_flow_dissector_load_bytes)(const struct bpf_flow_dissector *, u32, void *, u32); - -typedef u64 (*btf_bpf_skb_load_bytes_relative)(const struct sk_buff *, u32, void *, u32, u32); - -typedef u64 (*btf_bpf_skb_pull_data)(struct sk_buff *, u32); - -typedef u64 (*btf_bpf_sk_fullsock)(struct sock *); - -typedef u64 (*btf_sk_skb_pull_data)(struct sk_buff *, u32); - -typedef u64 (*btf_bpf_l3_csum_replace)(struct sk_buff *, u32, u64, u64, u64); - -typedef u64 (*btf_bpf_l4_csum_replace)(struct sk_buff *, u32, u64, u64, u64); - -typedef u64 (*btf_bpf_csum_diff)(__be32 *, u32, __be32 *, u32, __wsum); - -typedef u64 (*btf_bpf_csum_update)(struct sk_buff *, __wsum); - -typedef u64 (*btf_bpf_csum_level)(struct sk_buff *, u64); - -enum { - BPF_F_NEIGH = 65536, - BPF_F_PEER = 131072, - BPF_F_NEXTHOP = 262144, -}; - -typedef u64 (*btf_bpf_clone_redirect)(struct sk_buff *, u32, u64); - -typedef u64 (*btf_bpf_redirect)(u32, u64); - -typedef u64 (*btf_bpf_redirect_peer)(u32, u64); - -typedef u64 (*btf_bpf_redirect_neigh)(u32, struct bpf_redir_neigh *, int, u64); - -typedef u64 (*btf_bpf_msg_apply_bytes)(struct sk_msg *, u32); - -typedef u64 (*btf_bpf_msg_cork_bytes)(struct sk_msg *, u32); - -typedef u64 (*btf_bpf_msg_pull_data)(struct sk_msg *, u32, u32, u64); - -typedef u64 (*btf_bpf_msg_push_data)(struct sk_msg *, u32, u32, u64); - -typedef u64 (*btf_bpf_msg_pop_data)(struct sk_msg *, u32, u32, u64); - -typedef u64 (*btf_bpf_get_cgroup_classid_curr)(void); - -typedef u64 (*btf_bpf_skb_cgroup_classid)(const struct sk_buff *); - -typedef u64 (*btf_bpf_get_cgroup_classid)(const struct sk_buff *); - -typedef u64 (*btf_bpf_get_route_realm)(const struct sk_buff *); - -typedef u64 (*btf_bpf_get_hash_recalc)(struct sk_buff *); - -typedef u64 (*btf_bpf_set_hash_invalid)(struct sk_buff *); - -typedef u64 (*btf_bpf_set_hash)(struct sk_buff *, u32); - -typedef u64 (*btf_bpf_skb_vlan_push)(struct sk_buff *, __be16, u16); - -typedef u64 (*btf_bpf_skb_vlan_pop)(struct sk_buff *); - -typedef u64 (*btf_bpf_skb_change_proto)(struct sk_buff *, __be16, u64); - -typedef u64 (*btf_bpf_skb_change_type)(struct sk_buff *, u32); - -typedef u64 (*btf_sk_skb_adjust_room)(struct sk_buff *, s32, u32, u64); - -typedef u64 (*btf_bpf_skb_adjust_room)(struct sk_buff *, s32, u32, u64); - -typedef u64 (*btf_bpf_skb_change_tail)(struct sk_buff *, u32, u64); - -typedef u64 (*btf_sk_skb_change_tail)(struct sk_buff *, u32, u64); - -typedef u64 (*btf_bpf_skb_change_head)(struct sk_buff *, u32, u64); - -typedef u64 (*btf_sk_skb_change_head)(struct sk_buff *, u32, u64); - -typedef u64 (*btf_bpf_xdp_get_buff_len)(struct xdp_buff *); - -typedef u64 (*btf_bpf_xdp_adjust_head)(struct xdp_buff *, int); - -typedef u64 (*btf_bpf_xdp_load_bytes)(struct xdp_buff *, u32, void *, u32); - -typedef u64 (*btf_bpf_xdp_store_bytes)(struct xdp_buff *, u32, void *, u32); - -typedef u64 (*btf_bpf_xdp_adjust_tail)(struct xdp_buff *, int); - -typedef u64 (*btf_bpf_xdp_adjust_meta)(struct xdp_buff *, int); - -typedef u64 (*btf_bpf_xdp_redirect)(u32, u64); - -typedef u64 (*btf_bpf_xdp_redirect_map)(struct bpf_map *, u64, u64); - -typedef u64 (*btf_bpf_skb_event_output)(struct sk_buff *, struct bpf_map *, u64, void *, u64); - -typedef u64 (*btf_bpf_skb_get_tunnel_key)(struct sk_buff *, struct bpf_tunnel_key *, u32, u64); - -typedef u64 (*btf_bpf_skb_get_tunnel_opt)(struct sk_buff *, u8 *, u32); - -typedef u64 (*btf_bpf_skb_set_tunnel_key)(struct sk_buff *, const struct bpf_tunnel_key *, u32, u64); - -typedef u64 (*btf_bpf_skb_set_tunnel_opt)(struct sk_buff *, const u8 *, u32); - -typedef u64 (*btf_bpf_skb_under_cgroup)(struct sk_buff *, struct bpf_map *, u32); - -typedef u64 (*btf_bpf_skb_cgroup_id)(const struct sk_buff *); - -typedef u64 (*btf_bpf_skb_ancestor_cgroup_id)(const struct sk_buff *, int); - -typedef u64 (*btf_bpf_sk_cgroup_id)(struct sock *); - -typedef u64 (*btf_bpf_sk_ancestor_cgroup_id)(struct sock *, int); - -typedef u64 (*btf_bpf_xdp_event_output)(struct xdp_buff *, struct bpf_map *, u64, void *, u64); - -typedef u64 (*btf_bpf_get_socket_cookie)(struct sk_buff *); - -typedef u64 (*btf_bpf_get_socket_cookie_sock_addr)(struct bpf_sock_addr_kern *); - -typedef u64 (*btf_bpf_get_socket_cookie_sock)(struct sock *); - -typedef u64 (*btf_bpf_get_socket_ptr_cookie)(struct sock *); - -typedef u64 (*btf_bpf_get_socket_cookie_sock_ops)(struct bpf_sock_ops_kern *); - -typedef u64 (*btf_bpf_get_netns_cookie)(struct sk_buff *); - -typedef u64 (*btf_bpf_get_netns_cookie_sock)(struct sock *); - -typedef u64 (*btf_bpf_get_netns_cookie_sock_addr)(struct bpf_sock_addr_kern *); - -typedef u64 (*btf_bpf_get_netns_cookie_sock_ops)(struct bpf_sock_ops_kern *); - -typedef u64 (*btf_bpf_get_netns_cookie_sk_msg)(struct sk_msg *); - -typedef u64 (*btf_bpf_get_socket_uid)(struct sk_buff *); - -typedef u64 (*btf_bpf_sk_setsockopt)(struct sock *, int, int, char *, int); - -typedef u64 (*btf_bpf_sk_getsockopt)(struct sock *, int, int, char *, int); - -typedef u64 (*btf_bpf_unlocked_sk_setsockopt)(struct sock *, int, int, char *, int); - -typedef u64 (*btf_bpf_unlocked_sk_getsockopt)(struct sock *, int, int, char *, int); - -typedef u64 (*btf_bpf_sock_addr_setsockopt)(struct bpf_sock_addr_kern *, int, int, char *, int); - -typedef u64 (*btf_bpf_sock_addr_getsockopt)(struct bpf_sock_addr_kern *, int, int, char *, int); - -typedef u64 (*btf_bpf_sock_ops_setsockopt)(struct bpf_sock_ops_kern *, int, int, char *, int); - -typedef u64 (*btf_bpf_sock_ops_getsockopt)(struct bpf_sock_ops_kern *, int, int, char *, int); - -typedef u64 (*btf_bpf_sock_ops_cb_flags_set)(struct bpf_sock_ops_kern *, int); - -typedef u64 (*btf_bpf_bind)(struct bpf_sock_addr_kern *, struct sockaddr *, int); - -typedef u64 (*btf_bpf_skb_get_xfrm_state)(struct sk_buff *, u32, struct bpf_xfrm_state *, u32, u64); - -typedef u64 (*btf_bpf_xdp_fib_lookup)(struct xdp_buff *, struct bpf_fib_lookup *, int, u32); - -typedef u64 (*btf_bpf_skb_fib_lookup)(struct sk_buff *, struct bpf_fib_lookup *, int, u32); - -typedef u64 (*btf_bpf_skb_check_mtu)(struct sk_buff *, u32, u32 *, s32, u64); - -typedef u64 (*btf_bpf_xdp_check_mtu)(struct xdp_buff *, u32, u32 *, s32, u64); - -typedef u64 (*btf_bpf_lwt_in_push_encap)(struct sk_buff *, u32, void *, u32); - -typedef u64 (*btf_bpf_lwt_xmit_push_encap)(struct sk_buff *, u32, void *, u32); - -typedef u64 (*btf_bpf_lwt_seg6_store_bytes)(struct sk_buff *, u32, const void *, u32); - -typedef u64 (*btf_bpf_lwt_seg6_action)(struct sk_buff *, u32, void *, u32); - -typedef u64 (*btf_bpf_lwt_seg6_adjust_srh)(struct sk_buff *, u32, s32); - -typedef u64 (*btf_bpf_skc_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_sk_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_sk_lookup_udp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_tc_skc_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_tc_sk_lookup_tcp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_tc_sk_lookup_udp)(struct sk_buff *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_sk_release)(struct sock *); - -typedef u64 (*btf_bpf_xdp_sk_lookup_udp)(struct xdp_buff *, struct bpf_sock_tuple *, u32, u32, u64); - -typedef u64 (*btf_bpf_xdp_skc_lookup_tcp)(struct xdp_buff *, struct bpf_sock_tuple *, u32, u32, u64); - -typedef u64 (*btf_bpf_xdp_sk_lookup_tcp)(struct xdp_buff *, struct bpf_sock_tuple *, u32, u32, u64); - -typedef u64 (*btf_bpf_sock_addr_skc_lookup_tcp)(struct bpf_sock_addr_kern *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_sock_addr_sk_lookup_tcp)(struct bpf_sock_addr_kern *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_sock_addr_sk_lookup_udp)(struct bpf_sock_addr_kern *, struct bpf_sock_tuple *, u32, u64, u64); - -typedef u64 (*btf_bpf_tcp_sock)(struct sock *); - -typedef u64 (*btf_bpf_get_listener_sock)(struct sock *); - -typedef u64 (*btf_bpf_skb_ecn_set_ce)(struct sk_buff *); - -typedef u64 (*btf_bpf_tcp_check_syncookie)(struct sock *, void *, u32, struct tcphdr *, u32); - -typedef u64 (*btf_bpf_tcp_gen_syncookie)(struct sock *, void *, u32, struct tcphdr *, u32); - -typedef u64 (*btf_bpf_sk_assign)(struct sk_buff *, struct sock *, u64); - -typedef u64 (*btf_bpf_sock_ops_load_hdr_opt)(struct bpf_sock_ops_kern *, void *, u32, u64); - -typedef u64 (*btf_bpf_sock_ops_store_hdr_opt)(struct bpf_sock_ops_kern *, const void *, u32, u64); - -typedef u64 (*btf_bpf_sock_ops_reserve_hdr_opt)(struct bpf_sock_ops_kern *, u32, u64); - -typedef u64 (*btf_bpf_skb_set_tstamp)(struct sk_buff *, u64, u32); - -typedef u64 (*btf_bpf_tcp_raw_gen_syncookie_ipv4)(struct iphdr *, struct tcphdr *, u32); - -typedef u64 (*btf_bpf_tcp_raw_gen_syncookie_ipv6)(struct ipv6hdr *, struct tcphdr *, u32); - -typedef u64 (*btf_bpf_tcp_raw_check_syncookie_ipv4)(struct iphdr *, struct tcphdr *); - -typedef u64 (*btf_bpf_tcp_raw_check_syncookie_ipv6)(struct ipv6hdr *, struct tcphdr *); - -typedef u64 (*btf_sk_select_reuseport)(struct sk_reuseport_kern *, struct bpf_map *, void *, u32); - -typedef u64 (*btf_sk_reuseport_load_bytes)(const struct sk_reuseport_kern *, u32, void *, u32); - -typedef u64 (*btf_sk_reuseport_load_bytes_relative)(const struct sk_reuseport_kern *, u32, void *, u32, u32); - -typedef u64 (*btf_bpf_sk_lookup_assign)(struct bpf_sk_lookup_kern *, struct sock *, u64); - -typedef u64 (*btf_bpf_skc_to_tcp6_sock)(struct sock *); - -typedef u64 (*btf_bpf_skc_to_tcp_sock)(struct sock *); - -typedef u64 (*btf_bpf_skc_to_tcp_timewait_sock)(struct sock *); - -typedef u64 (*btf_bpf_skc_to_tcp_request_sock)(struct sock *); - -typedef u64 (*btf_bpf_skc_to_udp6_sock)(struct sock *); - -typedef u64 (*btf_bpf_skc_to_unix_sock)(struct sock *); - -typedef u64 (*btf_bpf_skc_to_mptcp_sock)(struct sock *); - -typedef u64 (*btf_bpf_sock_from_file)(struct file *); - -enum netdev_xdp_rx_metadata { - NETDEV_XDP_RX_METADATA_TIMESTAMP = 1, - NETDEV_XDP_RX_METADATA_HASH = 2, - NETDEV_XDP_RX_METADATA_VLAN_TAG = 4, -}; - -enum netdev_xsk_flags { - NETDEV_XSK_FLAGS_TX_TIMESTAMP = 1, - NETDEV_XSK_FLAGS_TX_CHECKSUM = 2, - NETDEV_XSK_FLAGS_TX_LAUNCH_TIME_FIFO = 4, -}; - -enum netdev_qstats_scope { - NETDEV_QSTATS_SCOPE_QUEUE = 1, -}; - -enum netdev_napi_threaded { - NETDEV_NAPI_THREADED_DISABLED = 0, - NETDEV_NAPI_THREADED_ENABLED = 1, -}; - -enum { - NETDEV_A_DEV_IFINDEX = 1, - NETDEV_A_DEV_PAD = 2, - NETDEV_A_DEV_XDP_FEATURES = 3, - NETDEV_A_DEV_XDP_ZC_MAX_SEGS = 4, - NETDEV_A_DEV_XDP_RX_METADATA_FEATURES = 5, - NETDEV_A_DEV_XSK_FEATURES = 6, - __NETDEV_A_DEV_MAX = 7, - NETDEV_A_DEV_MAX = 6, -}; - -enum { - NETDEV_A_NAPI_IFINDEX = 1, - NETDEV_A_NAPI_ID = 2, - NETDEV_A_NAPI_IRQ = 3, - NETDEV_A_NAPI_PID = 4, - NETDEV_A_NAPI_DEFER_HARD_IRQS = 5, - NETDEV_A_NAPI_GRO_FLUSH_TIMEOUT = 6, - NETDEV_A_NAPI_IRQ_SUSPEND_TIMEOUT = 7, - NETDEV_A_NAPI_THREADED = 8, - __NETDEV_A_NAPI_MAX = 9, - NETDEV_A_NAPI_MAX = 8, -}; - -enum { - NETDEV_A_QSTATS_IFINDEX = 1, - NETDEV_A_QSTATS_QUEUE_TYPE = 2, - NETDEV_A_QSTATS_QUEUE_ID = 3, - NETDEV_A_QSTATS_SCOPE = 4, - NETDEV_A_QSTATS_RX_PACKETS = 8, - NETDEV_A_QSTATS_RX_BYTES = 9, - NETDEV_A_QSTATS_TX_PACKETS = 10, - NETDEV_A_QSTATS_TX_BYTES = 11, - NETDEV_A_QSTATS_RX_ALLOC_FAIL = 12, - NETDEV_A_QSTATS_RX_HW_DROPS = 13, - NETDEV_A_QSTATS_RX_HW_DROP_OVERRUNS = 14, - NETDEV_A_QSTATS_RX_CSUM_COMPLETE = 15, - NETDEV_A_QSTATS_RX_CSUM_UNNECESSARY = 16, - NETDEV_A_QSTATS_RX_CSUM_NONE = 17, - NETDEV_A_QSTATS_RX_CSUM_BAD = 18, - NETDEV_A_QSTATS_RX_HW_GRO_PACKETS = 19, - NETDEV_A_QSTATS_RX_HW_GRO_BYTES = 20, - NETDEV_A_QSTATS_RX_HW_GRO_WIRE_PACKETS = 21, - NETDEV_A_QSTATS_RX_HW_GRO_WIRE_BYTES = 22, - NETDEV_A_QSTATS_RX_HW_DROP_RATELIMITS = 23, - NETDEV_A_QSTATS_TX_HW_DROPS = 24, - NETDEV_A_QSTATS_TX_HW_DROP_ERRORS = 25, - NETDEV_A_QSTATS_TX_CSUM_NONE = 26, - NETDEV_A_QSTATS_TX_NEEDS_CSUM = 27, - NETDEV_A_QSTATS_TX_HW_GSO_PACKETS = 28, - NETDEV_A_QSTATS_TX_HW_GSO_BYTES = 29, - NETDEV_A_QSTATS_TX_HW_GSO_WIRE_PACKETS = 30, - NETDEV_A_QSTATS_TX_HW_GSO_WIRE_BYTES = 31, - NETDEV_A_QSTATS_TX_HW_DROP_RATELIMITS = 32, - NETDEV_A_QSTATS_TX_STOP = 33, - NETDEV_A_QSTATS_TX_WAKE = 34, - __NETDEV_A_QSTATS_MAX = 35, - NETDEV_A_QSTATS_MAX = 34, -}; - -enum { - NETDEV_A_DMABUF_IFINDEX = 1, - NETDEV_A_DMABUF_QUEUES = 2, - NETDEV_A_DMABUF_FD = 3, - NETDEV_A_DMABUF_ID = 4, - __NETDEV_A_DMABUF_MAX = 5, - NETDEV_A_DMABUF_MAX = 4, -}; - -enum { - NETDEV_CMD_DEV_GET = 1, - NETDEV_CMD_DEV_ADD_NTF = 2, - NETDEV_CMD_DEV_DEL_NTF = 3, - NETDEV_CMD_DEV_CHANGE_NTF = 4, - NETDEV_CMD_PAGE_POOL_GET = 5, - NETDEV_CMD_PAGE_POOL_ADD_NTF = 6, - NETDEV_CMD_PAGE_POOL_DEL_NTF = 7, - NETDEV_CMD_PAGE_POOL_CHANGE_NTF = 8, - NETDEV_CMD_PAGE_POOL_STATS_GET = 9, - NETDEV_CMD_QUEUE_GET = 10, - NETDEV_CMD_NAPI_GET = 11, - NETDEV_CMD_QSTATS_GET = 12, - NETDEV_CMD_BIND_RX = 13, - NETDEV_CMD_NAPI_SET = 14, - NETDEV_CMD_BIND_TX = 15, - __NETDEV_CMD_MAX = 16, - NETDEV_CMD_MAX = 15, -}; - -enum { - NETDEV_NLGRP_MGMT = 0, - NETDEV_NLGRP_PAGE_POOL = 1, -}; - -struct netdev_nl_dump_ctx { - long unsigned int ifindex; - unsigned int rxq_idx; - unsigned int txq_idx; - unsigned int napi_id; -}; - -enum ethtool_tcp_data_split { - ETHTOOL_TCP_DATA_SPLIT_UNKNOWN = 0, - ETHTOOL_TCP_DATA_SPLIT_DISABLED = 1, - ETHTOOL_TCP_DATA_SPLIT_ENABLED = 2, -}; - -struct netpoll; - -struct netpoll_info { - refcount_t refcnt; - struct semaphore dev_lock; - struct sk_buff_head txq; - struct delayed_work tx_work; - struct netpoll *netpoll; - struct callback_head rcu; -}; - -union inet_addr { - __be32 ip; - struct in6_addr in6; -}; - -struct netpoll { - struct net_device *dev; - netdevice_tracker dev_tracker; - char dev_name[16]; - u8 dev_mac[6]; - const char *name; - union inet_addr local_ip; - union inet_addr remote_ip; - bool ipv6; - u16 local_port; - u16 remote_port; - u8 remote_mac[6]; - struct sk_buff_head skb_pool; - struct work_struct refill_wq; -}; - -struct vlan_ethhdr { - union { - struct { - unsigned char h_dest[6]; - unsigned char h_source[6]; - }; - struct { - unsigned char h_dest[6]; - unsigned char h_source[6]; - } addrs; - }; - __be16 h_vlan_proto; - __be16 h_vlan_TCI; - __be16 h_vlan_encapsulated_proto; -}; - -struct dm_hw_stat_delta { - long unsigned int last_rx; - long unsigned int last_drop_val; - struct callback_head rcu; -}; - -struct net_dm_drop_point { - __u8 pc[8]; - __u32 count; -}; - -struct net_dm_alert_msg { - __u32 entries; - struct net_dm_drop_point points[0]; -}; - -enum { - NET_DM_CMD_UNSPEC = 0, - NET_DM_CMD_ALERT = 1, - NET_DM_CMD_CONFIG = 2, - NET_DM_CMD_START = 3, - NET_DM_CMD_STOP = 4, - NET_DM_CMD_PACKET_ALERT = 5, - NET_DM_CMD_CONFIG_GET = 6, - NET_DM_CMD_CONFIG_NEW = 7, - NET_DM_CMD_STATS_GET = 8, - NET_DM_CMD_STATS_NEW = 9, - _NET_DM_CMD_MAX = 10, -}; - -enum net_dm_attr { - NET_DM_ATTR_UNSPEC = 0, - NET_DM_ATTR_ALERT_MODE = 1, - NET_DM_ATTR_PC = 2, - NET_DM_ATTR_SYMBOL = 3, - NET_DM_ATTR_IN_PORT = 4, - NET_DM_ATTR_TIMESTAMP = 5, - NET_DM_ATTR_PROTO = 6, - NET_DM_ATTR_PAYLOAD = 7, - NET_DM_ATTR_PAD = 8, - NET_DM_ATTR_TRUNC_LEN = 9, - NET_DM_ATTR_ORIG_LEN = 10, - NET_DM_ATTR_QUEUE_LEN = 11, - NET_DM_ATTR_STATS = 12, - NET_DM_ATTR_HW_STATS = 13, - NET_DM_ATTR_ORIGIN = 14, - NET_DM_ATTR_HW_TRAP_GROUP_NAME = 15, - NET_DM_ATTR_HW_TRAP_NAME = 16, - NET_DM_ATTR_HW_ENTRIES = 17, - NET_DM_ATTR_HW_ENTRY = 18, - NET_DM_ATTR_HW_TRAP_COUNT = 19, - NET_DM_ATTR_SW_DROPS = 20, - NET_DM_ATTR_HW_DROPS = 21, - NET_DM_ATTR_FLOW_ACTION_COOKIE = 22, - NET_DM_ATTR_REASON = 23, - __NET_DM_ATTR_MAX = 24, - NET_DM_ATTR_MAX = 23, -}; - -enum net_dm_alert_mode { - NET_DM_ALERT_MODE_SUMMARY = 0, - NET_DM_ALERT_MODE_PACKET = 1, -}; - -enum { - NET_DM_ATTR_PORT_NETDEV_IFINDEX = 0, - NET_DM_ATTR_PORT_NETDEV_NAME = 1, - __NET_DM_ATTR_PORT_MAX = 2, - NET_DM_ATTR_PORT_MAX = 1, -}; - -enum { - NET_DM_ATTR_STATS_DROPPED = 0, - __NET_DM_ATTR_STATS_MAX = 1, - NET_DM_ATTR_STATS_MAX = 0, -}; - -enum net_dm_origin { - NET_DM_ORIGIN_SW = 0, - NET_DM_ORIGIN_HW = 1, -}; - -enum skb_drop_reason_subsys { - SKB_DROP_REASON_SUBSYS_CORE = 0, - SKB_DROP_REASON_SUBSYS_MAC80211_UNUSABLE = 1, - SKB_DROP_REASON_SUBSYS_OPENVSWITCH = 2, - SKB_DROP_REASON_SUBSYS_NUM = 3, -}; - -struct drop_reason_list { - const char * const *reasons; - size_t n_reasons; -}; - -struct devlink_trap_metadata { - const char *trap_name; - const char *trap_group_name; - struct net_device *input_dev; - netdevice_tracker dev_tracker; - const struct flow_action_cookie *fa_cookie; - enum devlink_trap_type trap_type; -}; - -struct net_dm_stats { - u64_stats_t dropped; - struct u64_stats_sync syncp; -}; - -struct net_dm_hw_entry { - char trap_name[40]; - u32 count; -}; - -struct net_dm_hw_entries { - u32 num_entries; - struct net_dm_hw_entry entries[0]; -}; - -struct per_cpu_dm_data { - raw_spinlock_t lock; - union { - struct sk_buff *skb; - struct net_dm_hw_entries *hw_entries; - }; - struct sk_buff_head drop_queue; - struct work_struct dm_alert_work; - struct timer_list send_timer; - struct net_dm_stats stats; -}; - -struct net_dm_alert_ops { - void (*kfree_skb_probe)(void *, struct sk_buff *, void *, enum skb_drop_reason, struct sock *); - void (*napi_poll_probe)(void *, struct napi_struct *, int, int); - void (*work_item_func)(struct work_struct *); - void (*hw_work_item_func)(struct work_struct *); - void (*hw_trap_probe)(void *, const struct devlink *, struct sk_buff *, const struct devlink_trap_metadata *); -}; - -struct net_dm_skb_cb { - union { - struct devlink_trap_metadata *hw_metadata; - void *pc; - }; - enum skb_drop_reason reason; -}; - -struct clock_identity { - u8 id[8]; -}; - -struct port_identity { - struct clock_identity clock_identity; - __be16 port_number; -}; - -struct ptp_header { - u8 tsmt; - u8 ver; - __be16 message_length; - u8 domain_number; - u8 reserved1; - u8 flag_field[2]; - __be64 correction; - __be32 reserved2; - struct port_identity source_port_identity; - __be16 sequence_id; - u8 control; - u8 log_message_interval; -} __attribute__((packed)); - -enum bpf_ret_code { - BPF_OK = 0, - BPF_DROP = 2, - BPF_REDIRECT = 7, - BPF_LWT_REROUTE = 128, - BPF_FLOW_DISSECTOR_CONTINUE = 129, -}; - -enum { - LWT_BPF_PROG_UNSPEC = 0, - LWT_BPF_PROG_FD = 1, - LWT_BPF_PROG_NAME = 2, - __LWT_BPF_PROG_MAX = 3, -}; - -enum { - LWT_BPF_UNSPEC = 0, - LWT_BPF_IN = 1, - LWT_BPF_OUT = 2, - LWT_BPF_XMIT = 3, - LWT_BPF_XMIT_HEADROOM = 4, - __LWT_BPF_MAX = 5, -}; - -struct gre_base_hdr { - __be16 flags; - __be16 protocol; -}; - -struct bpf_lwt_prog { - struct bpf_prog *prog; - char *name; -}; - -struct bpf_lwt { - struct bpf_lwt_prog in; - struct bpf_lwt_prog out; - struct bpf_lwt_prog xmit; - int family; -}; - -enum { - SK_DIAG_BPF_STORAGE_REQ_NONE = 0, - SK_DIAG_BPF_STORAGE_REQ_MAP_FD = 1, - __SK_DIAG_BPF_STORAGE_REQ_MAX = 2, -}; - -enum { - SK_DIAG_BPF_STORAGE_REP_NONE = 0, - SK_DIAG_BPF_STORAGE = 1, - __SK_DIAG_BPF_STORAGE_REP_MAX = 2, -}; - -enum { - SK_DIAG_BPF_STORAGE_NONE = 0, - SK_DIAG_BPF_STORAGE_PAD = 1, - SK_DIAG_BPF_STORAGE_MAP_ID = 2, - SK_DIAG_BPF_STORAGE_MAP_VALUE = 3, - __SK_DIAG_BPF_STORAGE_MAX = 4, -}; - -typedef u64 (*btf_bpf_sk_storage_get)(struct bpf_map *, struct sock *, void *, u64, gfp_t); - -typedef u64 (*btf_bpf_sk_storage_delete)(struct bpf_map *, struct sock *); - -typedef u64 (*btf_bpf_sk_storage_get_tracing)(struct bpf_map *, struct sock *, void *, u64, gfp_t); - -typedef u64 (*btf_bpf_sk_storage_delete_tracing)(struct bpf_map *, struct sock *); - -struct bpf_sk_storage_diag { - u32 nr_maps; - struct bpf_map *maps[0]; -}; - -struct bpf_iter_seq_sk_storage_map_info { - struct bpf_map *map; - unsigned int bucket_id; - unsigned int skip_elems; -}; - -struct bpf_iter__bpf_sk_storage_map { - union { - struct bpf_iter_meta *meta; - }; - union { - struct bpf_map *map; - }; - union { - struct sock *sk; - }; - union { - void *value; - }; -}; - -enum tc_link_layer { - TC_LINKLAYER_UNAWARE = 0, - TC_LINKLAYER_ETHERNET = 1, - TC_LINKLAYER_ATM = 2, -}; - -enum { - TCA_STAB_UNSPEC = 0, - TCA_STAB_BASE = 1, - TCA_STAB_DATA = 2, - __TCA_STAB_MAX = 3, -}; - -struct qdisc_rate_table { - struct tc_ratespec rate; - u32 data[256]; - struct qdisc_rate_table *next; - int refcnt; -}; - -struct Qdisc_class_common { - u32 classid; - unsigned int filter_cnt; - struct hlist_node hnode; -}; - -struct Qdisc_class_hash { - struct hlist_head *hash; - unsigned int hashsize; - unsigned int hashmask; - unsigned int hashelems; -}; - -struct qdisc_watchdog { - struct hrtimer timer; - struct Qdisc *qdisc; -}; - -struct tc_query_caps_base { - enum tc_setup_type type; - void *caps; -}; - -enum tc_root_command { - TC_ROOT_GRAFT = 0, -}; - -struct tc_root_qopt_offload { - enum tc_root_command command; - u32 handle; - bool ingress; -}; - -struct check_loop_arg { - struct qdisc_walker w; - struct Qdisc *p; - int depth; -}; - -struct tcf_bind_args { - struct tcf_walker w; - long unsigned int base; - long unsigned int cl; - u32 classid; -}; - -struct tc_bind_class_args { - struct qdisc_walker w; - long unsigned int new_cl; - u32 portid; - u32 clid; -}; - -struct qdisc_dump_args { - struct qdisc_walker w; - struct sk_buff *skb; - struct netlink_callback *cb; -}; - -struct bpf_sched_data { - struct qdisc_watchdog watchdog; -}; - -struct bpf_sk_buff_ptr { - struct sk_buff *skb; -}; - -enum qdisc_ops_kf_flags { - QDISC_OPS_KF_COMMON = 0, - QDISC_OPS_KF_ENQUEUE = 1, - QDISC_OPS_KF_DEQUEUE = 2, -}; - -struct bpf_struct_ops_Qdisc_ops { - struct bpf_struct_ops_common_value common; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct Qdisc_ops data; - long: 64; - long: 64; -}; - -enum netlink_attribute_type { - NL_ATTR_TYPE_INVALID = 0, - NL_ATTR_TYPE_FLAG = 1, - NL_ATTR_TYPE_U8 = 2, - NL_ATTR_TYPE_U16 = 3, - NL_ATTR_TYPE_U32 = 4, - NL_ATTR_TYPE_U64 = 5, - NL_ATTR_TYPE_S8 = 6, - NL_ATTR_TYPE_S16 = 7, - NL_ATTR_TYPE_S32 = 8, - NL_ATTR_TYPE_S64 = 9, - NL_ATTR_TYPE_BINARY = 10, - NL_ATTR_TYPE_STRING = 11, - NL_ATTR_TYPE_NUL_STRING = 12, - NL_ATTR_TYPE_NESTED = 13, - NL_ATTR_TYPE_NESTED_ARRAY = 14, - NL_ATTR_TYPE_BITFIELD32 = 15, - NL_ATTR_TYPE_SINT = 16, - NL_ATTR_TYPE_UINT = 17, -}; - -enum netlink_policy_type_attr { - NL_POLICY_TYPE_ATTR_UNSPEC = 0, - NL_POLICY_TYPE_ATTR_TYPE = 1, - NL_POLICY_TYPE_ATTR_MIN_VALUE_S = 2, - NL_POLICY_TYPE_ATTR_MAX_VALUE_S = 3, - NL_POLICY_TYPE_ATTR_MIN_VALUE_U = 4, - NL_POLICY_TYPE_ATTR_MAX_VALUE_U = 5, - NL_POLICY_TYPE_ATTR_MIN_LENGTH = 6, - NL_POLICY_TYPE_ATTR_MAX_LENGTH = 7, - NL_POLICY_TYPE_ATTR_POLICY_IDX = 8, - NL_POLICY_TYPE_ATTR_POLICY_MAXTYPE = 9, - NL_POLICY_TYPE_ATTR_BITFIELD32_MASK = 10, - NL_POLICY_TYPE_ATTR_PAD = 11, - NL_POLICY_TYPE_ATTR_MASK = 12, - __NL_POLICY_TYPE_ATTR_MAX = 13, - NL_POLICY_TYPE_ATTR_MAX = 12, -}; - -struct netlink_policy_dump_state { - unsigned int policy_idx; - unsigned int attr_idx; - unsigned int n_alloc; - struct { - const struct nla_policy *policy; - unsigned int maxtype; - } policies[0]; -}; - -struct bpf_nf_ctx { - const struct nf_hook_state *state; - struct sk_buff *skb; -}; - -struct trace_event_raw_bpf_trigger_tp { - struct trace_entry ent; - int nonce; - char __data[0]; -}; - -struct trace_event_raw_bpf_test_finish { - struct trace_entry ent; - int err; - char __data[0]; -}; - -struct trace_event_data_offsets_bpf_trigger_tp {}; - -struct trace_event_data_offsets_bpf_test_finish {}; - -typedef void (*btf_trace_bpf_trigger_tp)(void *, int); - -typedef void (*btf_trace_bpf_test_finish)(void *, int *); - -struct bpf_test_timer { - enum { - NO_PREEMPT = 0, - NO_MIGRATE = 1, - } mode; - u32 i; - u64 time_start; - u64 time_spent; -}; - -struct xdp_page_head { - struct xdp_buff orig_ctx; - struct xdp_buff ctx; - union { - struct { - struct {} __empty_frame; - struct xdp_frame frame[0]; - }; - struct { - struct {} __empty_data; - u8 data[0]; - }; - }; -}; - -struct xdp_test_data { - struct xdp_buff *orig_ctx; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct xdp_rxq_info rxq; - struct net_device *dev; - struct page_pool *pp; - struct xdp_frame **frames; - struct sk_buff **skbs; - struct xdp_mem_info mem; - u32 batch_size; - u32 frame_cnt; - long: 64; - long: 64; -}; - -struct bpf_fentry_test_t { - struct bpf_fentry_test_t *a; -}; - -struct prog_test_member1 { - int a; -}; - -struct prog_test_member { - struct prog_test_member1 m; - int c; -}; - -struct prog_test_ref_kfunc { - int a; - int b; - struct prog_test_member memb; - struct prog_test_ref_kfunc *next; - refcount_t cnt; -}; - -struct bpf_raw_tp_test_run_info { - struct bpf_prog *prog; - void *ctx; - u32 retval; -}; - -enum { - ETHTOOL_A_BITSET_BIT_UNSPEC = 0, - ETHTOOL_A_BITSET_BIT_INDEX = 1, - ETHTOOL_A_BITSET_BIT_NAME = 2, - ETHTOOL_A_BITSET_BIT_VALUE = 3, - __ETHTOOL_A_BITSET_BIT_CNT = 4, - ETHTOOL_A_BITSET_BIT_MAX = 3, -}; - -enum { - ETHTOOL_A_BITSET_BITS_UNSPEC = 0, - ETHTOOL_A_BITSET_BITS_BIT = 1, - __ETHTOOL_A_BITSET_BITS_CNT = 2, - ETHTOOL_A_BITSET_BITS_MAX = 1, -}; - -enum { - ETHTOOL_A_BITSET_UNSPEC = 0, - ETHTOOL_A_BITSET_NOMASK = 1, - ETHTOOL_A_BITSET_SIZE = 2, - ETHTOOL_A_BITSET_BITS = 3, - ETHTOOL_A_BITSET_VALUE = 4, - ETHTOOL_A_BITSET_MASK = 5, - __ETHTOOL_A_BITSET_CNT = 6, - ETHTOOL_A_BITSET_MAX = 5, -}; - -struct linkmodes_reply_data { - struct ethnl_reply_data base; - struct ethtool_link_ksettings ksettings; - struct ethtool_link_settings *lsettings; - bool peer_empty; -}; - -struct debug_reply_data { - struct ethnl_reply_data base; - u32 msg_mask; -}; - -enum ethtool_supported_ring_param { - ETHTOOL_RING_USE_RX_BUF_LEN = 1, - ETHTOOL_RING_USE_CQE_SIZE = 2, - ETHTOOL_RING_USE_TX_PUSH = 4, - ETHTOOL_RING_USE_RX_PUSH = 8, - ETHTOOL_RING_USE_TX_PUSH_BUF_LEN = 16, - ETHTOOL_RING_USE_TCP_DATA_SPLIT = 32, - ETHTOOL_RING_USE_HDS_THRS = 64, -}; - -struct rings_reply_data { - struct ethnl_reply_data base; - struct ethtool_ringparam ringparam; - struct kernel_ethtool_ringparam kernel_ringparam; - u32 supported_ring_params; -}; - -struct eee_reply_data { - struct ethnl_reply_data base; - struct ethtool_keee eee; -}; - -enum ethtool_fec_config_bits { - ETHTOOL_FEC_NONE_BIT = 0, - ETHTOOL_FEC_AUTO_BIT = 1, - ETHTOOL_FEC_OFF_BIT = 2, - ETHTOOL_FEC_RS_BIT = 3, - ETHTOOL_FEC_BASER_BIT = 4, - ETHTOOL_FEC_LLRS_BIT = 5, -}; - -enum { - ETHTOOL_A_FEC_STAT_UNSPEC = 0, - ETHTOOL_A_FEC_STAT_PAD = 1, - ETHTOOL_A_FEC_STAT_CORRECTED = 2, - ETHTOOL_A_FEC_STAT_UNCORR = 3, - ETHTOOL_A_FEC_STAT_CORR_BITS = 4, - __ETHTOOL_A_FEC_STAT_CNT = 5, - ETHTOOL_A_FEC_STAT_MAX = 4, -}; - -struct fec_stat_grp { - u64 stats[9]; - u8 cnt; -}; - -struct fec_reply_data { - struct ethnl_reply_data base; - long unsigned int fec_link_modes[2]; - u32 active_fec; - u8 fec_auto; - struct fec_stat_grp corr; - struct fec_stat_grp uncorr; - struct fec_stat_grp corr_bits; -}; - -enum { - ETHTOOL_A_MM_STAT_UNSPEC = 0, - ETHTOOL_A_MM_STAT_PAD = 1, - ETHTOOL_A_MM_STAT_REASSEMBLY_ERRORS = 2, - ETHTOOL_A_MM_STAT_SMD_ERRORS = 3, - ETHTOOL_A_MM_STAT_REASSEMBLY_OK = 4, - ETHTOOL_A_MM_STAT_RX_FRAG_COUNT = 5, - ETHTOOL_A_MM_STAT_TX_FRAG_COUNT = 6, - ETHTOOL_A_MM_STAT_HOLD_COUNT = 7, - __ETHTOOL_A_MM_STAT_CNT = 8, - ETHTOOL_A_MM_STAT_MAX = 7, -}; - -enum ethtool_mmsv_event { - ETHTOOL_MMSV_LP_SENT_VERIFY_MPACKET = 0, - ETHTOOL_MMSV_LD_SENT_VERIFY_MPACKET = 1, - ETHTOOL_MMSV_LP_SENT_RESPONSE_MPACKET = 2, -}; - -enum ethtool_mpacket { - ETHTOOL_MPACKET_VERIFY = 0, - ETHTOOL_MPACKET_RESPONSE = 1, -}; - -struct ethtool_mmsv; - -struct ethtool_mmsv_ops { - void (*configure_tx)(struct ethtool_mmsv *, bool); - void (*configure_pmac)(struct ethtool_mmsv *, bool); - void (*send_mpacket)(struct ethtool_mmsv *, enum ethtool_mpacket); -}; - -struct ethtool_mmsv { - const struct ethtool_mmsv_ops *ops; - struct net_device *dev; - spinlock_t lock; - enum ethtool_mm_verify_status status; - struct timer_list verify_timer; - bool verify_enabled; - int verify_retries; - bool pmac_enabled; - u32 verify_time; - bool tx_enabled; -}; - -struct mm_reply_data { - struct ethnl_reply_data base; - struct ethtool_mm_state state; - struct ethtool_mm_stats stats; -}; - -enum { - ETHTOOL_A_C33_PSE_PW_LIMIT_UNSPEC = 0, - ETHTOOL_A_C33_PSE_PW_LIMIT_MIN = 1, - ETHTOOL_A_C33_PSE_PW_LIMIT_MAX = 2, - __ETHTOOL_A_C33_PSE_PW_LIMIT_CNT = 3, - __ETHTOOL_A_C33_PSE_PW_LIMIT_MAX = 2, -}; - -enum { - ETHTOOL_A_PSE_NTF_HEADER = 1, - ETHTOOL_A_PSE_NTF_EVENTS = 2, - __ETHTOOL_A_PSE_NTF_CNT = 3, - ETHTOOL_A_PSE_NTF_MAX = 2, -}; - -struct pse_reply_data { - struct ethnl_reply_data base; - struct ethtool_pse_control_status status; -}; - -enum ip_conntrack_info { - IP_CT_ESTABLISHED = 0, - IP_CT_RELATED = 1, - IP_CT_NEW = 2, - IP_CT_IS_REPLY = 3, - IP_CT_ESTABLISHED_REPLY = 3, - IP_CT_RELATED_REPLY = 4, - IP_CT_NUMBER = 5, - IP_CT_UNTRACKED = 7, -}; - -enum nf_dev_hooks { - NF_NETDEV_INGRESS = 0, - NF_NETDEV_EGRESS = 1, - NF_NETDEV_NUMHOOKS = 2, -}; - -struct nf_hook_entries_rcu_head { - struct callback_head head; - void *allocation; -}; - -enum nf_nat_manip_type; - -struct nf_nat_hook { - int (*parse_nat_setup)(struct nf_conn *, enum nf_nat_manip_type, const struct nlattr *); - void (*decode_session)(struct sk_buff *, struct flowi *); - void (*remove_nat_bysrc)(struct nf_conn *); -}; - -struct nf_ct_hook { - int (*update)(struct net *, struct sk_buff *); - void (*destroy)(struct nf_conntrack *); - bool (*get_tuple_skb)(struct nf_conntrack_tuple *, const struct sk_buff *); - void (*attach)(struct sk_buff *, const struct sk_buff *); - void (*set_closing)(struct nf_conntrack *); - int (*confirm)(struct sk_buff *); - u32 (*get_id)(const struct nf_conntrack *); -}; - -struct nfnl_ct_hook { - size_t (*build_size)(const struct nf_conn *); - int (*build)(struct sk_buff *, struct nf_conn *, enum ip_conntrack_info, u_int16_t, u_int16_t); - int (*parse)(const struct nlattr *, struct nf_conn *); - int (*attach_expect)(const struct nlattr *, struct nf_conn *, u32, u32); - void (*seq_adjust)(struct sk_buff *, struct nf_conn *, enum ip_conntrack_info, s32); -}; - -struct nf_defrag_hook { - struct module *owner; - int (*enable)(struct net *); - void (*disable)(struct net *); -}; - -struct nf_ipv6_ops { - void (*route_input)(struct sk_buff *); - int (*fragment)(struct net *, struct sock *, struct sk_buff *, int (*)(struct net *, struct sock *, struct sk_buff *)); - int (*reroute)(struct sk_buff *, const struct nf_queue_entry *); -}; - -struct rtvia { - __kernel_sa_family_t rtvia_family; - __u8 rtvia_addr[0]; -}; - -struct rt_cache_stat { - unsigned int in_slow_tot; - unsigned int in_slow_mc; - unsigned int in_no_route; - unsigned int in_brd; - unsigned int in_martian_dst; - unsigned int in_martian_src; - unsigned int out_slow_tot; - unsigned int out_slow_mc; -}; - -struct tcp_plb_state { - u8 consec_cong_rounds: 5; - u8 unused: 3; - u32 pause_until; -}; - -struct ip_options_data { - struct ip_options_rcu opt; - char data[40]; -}; - -struct ipcm_cookie { - struct sockcm_cookie sockc; - __be32 addr; - int oif; - struct ip_options_rcu *opt; - __u8 protocol; - __u8 ttl; - __s16 tos; - __u16 gso_size; -}; - -struct icmp_err { - int errno; - unsigned int fatal: 1; -}; - -struct udp_skb_cb { - union { - struct inet_skb_parm h4; - struct inet6_skb_parm h6; - } header; - __u16 cscov; - __u8 partial_cov; -}; - -struct udp_dev_scratch { - u32 _tsize_state; - u16 len; - bool is_linear; - bool csum_unnecessary; -}; - -struct udp_seq_afinfo { - sa_family_t family; - struct udp_table *udp_table; -}; - -struct udp_iter_state { - struct seq_net_private p; - int bucket; -}; - -typedef struct sk_buff * (*udp_gro_receive_t)(struct sock *, struct list_head *, struct sk_buff *); - -struct bpf_iter__udp { - union { - struct bpf_iter_meta *meta; - }; - union { - struct udp_sock *udp_sk; - }; - uid_t uid; - long: 0; - int bucket; -}; - -union bpf_udp_iter_batch_item { - struct sock *sk; - __u64 cookie; -}; - -struct bpf_udp_iter_state { - struct udp_iter_state state; - unsigned int cur_sk; - unsigned int end_sk; - unsigned int max_sk; - union bpf_udp_iter_batch_item *batch; -}; - -enum ip_conntrack_status { - IPS_EXPECTED_BIT = 0, - IPS_EXPECTED = 1, - IPS_SEEN_REPLY_BIT = 1, - IPS_SEEN_REPLY = 2, - IPS_ASSURED_BIT = 2, - IPS_ASSURED = 4, - IPS_CONFIRMED_BIT = 3, - IPS_CONFIRMED = 8, - IPS_SRC_NAT_BIT = 4, - IPS_SRC_NAT = 16, - IPS_DST_NAT_BIT = 5, - IPS_DST_NAT = 32, - IPS_NAT_MASK = 48, - IPS_SEQ_ADJUST_BIT = 6, - IPS_SEQ_ADJUST = 64, - IPS_SRC_NAT_DONE_BIT = 7, - IPS_SRC_NAT_DONE = 128, - IPS_DST_NAT_DONE_BIT = 8, - IPS_DST_NAT_DONE = 256, - IPS_NAT_DONE_MASK = 384, - IPS_DYING_BIT = 9, - IPS_DYING = 512, - IPS_FIXED_TIMEOUT_BIT = 10, - IPS_FIXED_TIMEOUT = 1024, - IPS_TEMPLATE_BIT = 11, - IPS_TEMPLATE = 2048, - IPS_UNTRACKED_BIT = 12, - IPS_UNTRACKED = 4096, - IPS_NAT_CLASH_BIT = 12, - IPS_NAT_CLASH = 4096, - IPS_HELPER_BIT = 13, - IPS_HELPER = 8192, - IPS_OFFLOAD_BIT = 14, - IPS_OFFLOAD = 16384, - IPS_HW_OFFLOAD_BIT = 15, - IPS_HW_OFFLOAD = 32768, - IPS_UNCHANGEABLE_MASK = 56313, - __IPS_MAX_BIT = 16, -}; - -enum { - XFRM_LOOKUP_ICMP = 1, - XFRM_LOOKUP_QUEUE = 2, - XFRM_LOOKUP_KEEP_DST_REF = 4, -}; - -struct icmp_ext_hdr { - __u8 reserved1: 4; - __u8 version: 4; - __u8 reserved2; - __sum16 checksum; -}; - -struct icmp_extobj_hdr { - __be16 length; - __u8 class_num; - __u8 class_type; -}; - -struct icmp_ext_echo_ctype3_hdr { - __be16 afi; - __u8 addrlen; - __u8 reserved; -}; - -struct icmp_ext_echo_iio { - struct icmp_extobj_hdr extobj_hdr; - union { - char name[16]; - __be32 ifindex; - struct { - struct icmp_ext_echo_ctype3_hdr ctype3_hdr; - union { - __be32 ipv4_addr; - struct in6_addr ipv6_addr; - } ip_addr; - } addr; - } ident; -}; - -struct trace_event_raw_icmp_send { - struct trace_entry ent; - const void *skbaddr; - int type; - int code; - __u8 saddr[4]; - __u8 daddr[4]; - __u16 sport; - __u16 dport; - short unsigned int ulen; - char __data[0]; -}; - -struct trace_event_data_offsets_icmp_send {}; - -typedef void (*btf_trace_icmp_send)(void *, const struct sk_buff *, int, int); - -struct icmp_bxm { - struct sk_buff *skb; - int offset; - int data_len; - struct { - struct icmphdr icmph; - __be32 times[3]; - } data; - int head_len; - struct ip_options_data replyopts; -}; - -struct icmp_control { - enum skb_drop_reason (*handler)(struct sk_buff *); - short int error; -}; - -struct netdev_notifier_info_ext { - struct netdev_notifier_info info; - union { - u32 mtu; - } ext; -}; - -struct fib_result_nl { - __be32 fl_addr; - u32 fl_mark; - unsigned char fl_tos; - unsigned char fl_scope; - unsigned char tb_id_in; - unsigned char tb_id; - unsigned char prefixlen; - unsigned char nh_sel; - unsigned char type; - unsigned char scope; - int err; -}; - -struct rtentry { - long unsigned int rt_pad1; - struct sockaddr rt_dst; - struct sockaddr rt_gateway; - struct sockaddr rt_genmask; - short unsigned int rt_flags; - short int rt_pad2; - long unsigned int rt_pad3; - void *rt_pad4; - short int rt_metric; - char *rt_dev; - long unsigned int rt_mtu; - long unsigned int rt_window; - short unsigned int rt_irtt; -}; - -struct pingv6_ops { - int (*ipv6_recv_error)(struct sock *, struct msghdr *, int, int *); - void (*ip6_datagram_recv_common_ctl)(struct sock *, struct msghdr *, struct sk_buff *); - void (*ip6_datagram_recv_specific_ctl)(struct sock *, struct msghdr *, struct sk_buff *); - int (*icmpv6_err_convert)(u8, u8, int *); - void (*ipv6_icmp_error)(struct sock *, struct sk_buff *, int, __be16, u32, u8 *); - int (*ipv6_chk_addr)(struct net *, const struct in6_addr *, const struct net_device *, int); -}; - -struct ping_iter_state { - struct seq_net_private p; - int bucket; - sa_family_t family; -}; - -struct pingfakehdr { - struct icmphdr icmph; - struct msghdr *msg; - sa_family_t family; - __wsum wcheck; -}; - -struct ping_table { - struct hlist_head hash[64]; - spinlock_t lock; -}; - -struct nhmsg { - unsigned char nh_family; - unsigned char nh_scope; - unsigned char nh_protocol; - unsigned char resvd; - unsigned int nh_flags; -}; - -struct nexthop_grp { - __u32 id; - __u8 weight; - __u8 weight_high; - __u16 resvd2; -}; - -enum { - NEXTHOP_GRP_TYPE_MPATH = 0, - NEXTHOP_GRP_TYPE_RES = 1, - __NEXTHOP_GRP_TYPE_MAX = 2, -}; - -enum { - NHA_UNSPEC = 0, - NHA_ID = 1, - NHA_GROUP = 2, - NHA_GROUP_TYPE = 3, - NHA_BLACKHOLE = 4, - NHA_OIF = 5, - NHA_GATEWAY = 6, - NHA_ENCAP_TYPE = 7, - NHA_ENCAP = 8, - NHA_GROUPS = 9, - NHA_MASTER = 10, - NHA_FDB = 11, - NHA_RES_GROUP = 12, - NHA_RES_BUCKET = 13, - NHA_OP_FLAGS = 14, - NHA_GROUP_STATS = 15, - NHA_HW_STATS_ENABLE = 16, - NHA_HW_STATS_USED = 17, - __NHA_MAX = 18, -}; - -enum { - NHA_RES_GROUP_UNSPEC = 0, - NHA_RES_GROUP_PAD = 0, - NHA_RES_GROUP_BUCKETS = 1, - NHA_RES_GROUP_IDLE_TIMER = 2, - NHA_RES_GROUP_UNBALANCED_TIMER = 3, - NHA_RES_GROUP_UNBALANCED_TIME = 4, - __NHA_RES_GROUP_MAX = 5, -}; - -enum { - NHA_RES_BUCKET_UNSPEC = 0, - NHA_RES_BUCKET_PAD = 0, - NHA_RES_BUCKET_INDEX = 1, - NHA_RES_BUCKET_IDLE_TIME = 2, - NHA_RES_BUCKET_NH_ID = 3, - __NHA_RES_BUCKET_MAX = 4, -}; - -enum { - NHA_GROUP_STATS_UNSPEC = 0, - NHA_GROUP_STATS_ENTRY = 1, - __NHA_GROUP_STATS_MAX = 2, -}; - -enum { - NHA_GROUP_STATS_ENTRY_UNSPEC = 0, - NHA_GROUP_STATS_ENTRY_ID = 1, - NHA_GROUP_STATS_ENTRY_PACKETS = 2, - NHA_GROUP_STATS_ENTRY_PACKETS_HW = 3, - __NHA_GROUP_STATS_ENTRY_MAX = 4, -}; - -struct nh_config { - u32 nh_id; - u8 nh_family; - u8 nh_protocol; - u8 nh_blackhole; - u8 nh_fdb; - u32 nh_flags; - int nh_ifindex; - struct net_device *dev; - union { - __be32 ipv4; - struct in6_addr ipv6; - } gw; - struct nlattr *nh_grp; - u16 nh_grp_type; - u16 nh_grp_res_num_buckets; - long unsigned int nh_grp_res_idle_timer; - long unsigned int nh_grp_res_unbalanced_timer; - bool nh_grp_res_has_num_buckets; - bool nh_grp_res_has_idle_timer; - bool nh_grp_res_has_unbalanced_timer; - bool nh_hw_stats; - struct nlattr *nh_encap; - u16 nh_encap_type; - u32 nlflags; - struct nl_info nlinfo; -}; - -enum nexthop_event_type { - NEXTHOP_EVENT_DEL = 0, - NEXTHOP_EVENT_REPLACE = 1, - NEXTHOP_EVENT_RES_TABLE_PRE_REPLACE = 2, - NEXTHOP_EVENT_BUCKET_REPLACE = 3, - NEXTHOP_EVENT_HW_STATS_REPORT_DELTA = 4, -}; - -enum nh_notifier_info_type { - NH_NOTIFIER_INFO_TYPE_SINGLE = 0, - NH_NOTIFIER_INFO_TYPE_GRP = 1, - NH_NOTIFIER_INFO_TYPE_RES_TABLE = 2, - NH_NOTIFIER_INFO_TYPE_RES_BUCKET = 3, - NH_NOTIFIER_INFO_TYPE_GRP_HW_STATS = 4, -}; - -struct nh_notifier_single_info { - struct net_device *dev; - u8 gw_family; - union { - __be32 ipv4; - struct in6_addr ipv6; - }; - u32 id; - u8 is_reject: 1; - u8 is_fdb: 1; - u8 has_encap: 1; -}; - -struct nh_notifier_grp_entry_info { - u16 weight; - struct nh_notifier_single_info nh; -}; - -struct nh_notifier_grp_info { - u16 num_nh; - bool is_fdb; - bool hw_stats; - struct nh_notifier_grp_entry_info nh_entries[0]; -}; - -struct nh_notifier_res_bucket_info { - u16 bucket_index; - unsigned int idle_timer_ms; - bool force; - struct nh_notifier_single_info old_nh; - struct nh_notifier_single_info new_nh; -}; - -struct nh_notifier_res_table_info { - u16 num_nh_buckets; - bool hw_stats; - struct nh_notifier_single_info nhs[0]; -}; - -struct nh_notifier_grp_hw_stats_entry_info { - u32 id; - u64 packets; -}; - -struct nh_notifier_grp_hw_stats_info { - u16 num_nh; - bool hw_stats_used; - struct nh_notifier_grp_hw_stats_entry_info stats[0]; -}; - -struct nh_notifier_info { - struct net *net; - struct netlink_ext_ack *extack; - u32 id; - enum nh_notifier_info_type type; - union { - struct nh_notifier_single_info *nh; - struct nh_notifier_grp_info *nh_grp; - struct nh_notifier_res_table_info *nh_res_table; - struct nh_notifier_res_bucket_info *nh_res_bucket; - struct nh_notifier_grp_hw_stats_info *nh_grp_hw_stats; - }; -}; - -struct nh_dump_filter { - u32 nh_id; - int dev_idx; - int master_idx; - bool group_filter; - bool fdb_filter; - u32 res_bucket_nh_id; - u32 op_flags; -}; - -struct rtm_dump_nh_ctx { - u32 idx; -}; - -struct rtm_dump_res_bucket_ctx { - struct rtm_dump_nh_ctx nh; - u16 bucket_index; -}; - -struct rtm_dump_nexthop_bucket_data { - struct rtm_dump_res_bucket_ctx *ctx; - struct nh_dump_filter filter; -}; - -struct snmp_mib { - const char *name; - int entry; -}; - -enum sock_shutdown_cmd { - SHUT_RD = 0, - SHUT_WR = 1, - SHUT_RDWR = 2, -}; - -struct udp_port_cfg { - u8 family; - union { - struct in_addr local_ip; - struct in6_addr local_ip6; - }; - union { - struct in_addr peer_ip; - struct in6_addr peer_ip6; - }; - __be16 local_udp_port; - __be16 peer_udp_port; - int bind_ifindex; - unsigned int use_udp_checksums: 1; - unsigned int use_udp6_tx_checksums: 1; - unsigned int use_udp6_rx_checksums: 1; - unsigned int ipv6_v6only: 1; -}; - -typedef int (*udp_tunnel_encap_rcv_t)(struct sock *, struct sk_buff *); - -typedef int (*udp_tunnel_encap_err_lookup_t)(struct sock *, struct sk_buff *); - -typedef void (*udp_tunnel_encap_err_rcv_t)(struct sock *, struct sk_buff *, int, __be16, u32, u8 *); - -typedef void (*udp_tunnel_encap_destroy_t)(struct sock *); - -typedef struct sk_buff * (*udp_tunnel_gro_receive_t)(struct sock *, struct list_head *, struct sk_buff *); - -typedef int (*udp_tunnel_gro_complete_t)(struct sock *, struct sk_buff *, int); - -struct udp_tunnel_sock_cfg { - void *sk_user_data; - __u8 encap_type; - udp_tunnel_encap_rcv_t encap_rcv; - udp_tunnel_encap_err_lookup_t encap_err_lookup; - udp_tunnel_encap_err_rcv_t encap_err_rcv; - udp_tunnel_encap_destroy_t encap_destroy; - udp_tunnel_gro_receive_t gro_receive; - udp_tunnel_gro_complete_t gro_complete; -}; - -struct udp_tunnel_nic_ops { - void (*get_port)(struct net_device *, unsigned int, unsigned int, struct udp_tunnel_info *); - void (*set_port_priv)(struct net_device *, unsigned int, unsigned int, u8); - void (*add_port)(struct net_device *, struct udp_tunnel_info *); - void (*del_port)(struct net_device *, struct udp_tunnel_info *); - void (*reset_ntf)(struct net_device *); - size_t (*dump_size)(struct net_device *, unsigned int); - int (*dump_write)(struct net_device *, unsigned int, struct sk_buff *); - void (*assert_locked)(struct net_device *); - void (*lock)(struct net_device *); - void (*unlock)(struct net_device *); -}; - -struct bictcp { - u32 cnt; - u32 last_max_cwnd; - u32 last_cwnd; - u32 last_time; - u32 bic_origin_point; - u32 bic_K; - u32 delay_min; - u32 epoch_start; - u32 ack_cnt; - u32 tcp_cwnd; - u16 unused; - u8 sample_cnt; - u8 found; - u32 round_start; - u32 end_seq; - u32 last_ack; - u32 curr_rtt; -}; - -struct cipso_v4_map_cache_bkt { - spinlock_t lock; - u32 size; - struct list_head list; -}; - -struct cipso_v4_map_cache_entry { - u32 hash; - unsigned char *key; - size_t key_len; - struct netlbl_lsm_cache *lsm_data; - u32 activity; - struct list_head list; -}; - -typedef u64 (*btf_bpf_tcp_send_ack)(struct tcp_sock *, u32); - -struct bpf_struct_ops_tcp_congestion_ops { - struct bpf_struct_ops_common_value common; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct tcp_congestion_ops data; -}; - -struct ip_beet_phdr { - __u8 nexthdr; - __u8 hdrlen; - __u8 padlen; - __u8 reserved; -}; - -struct xfrm_user_offload { - int ifindex; - __u8 flags; -}; - -enum { - XFRM_DEV_OFFLOAD_IN = 1, - XFRM_DEV_OFFLOAD_OUT = 2, - XFRM_DEV_OFFLOAD_FWD = 3, -}; - -enum { - BPF_F_CURRENT_NETNS = -1, -}; - -struct bpf_xfrm_state_opts { - s32 error; - s32 netns_id; - u32 mark; - xfrm_address_t daddr; - __be32 spi; - u8 proto; - u16 family; -}; - -enum { - BPF_XFRM_STATE_OPTS_SZ = 36, -}; - -enum fib6_walk_state { - FWS_S = 0, - FWS_L = 1, - FWS_R = 2, - FWS_C = 3, - FWS_U = 4, -}; - -struct fib6_walker { - struct list_head lh; - struct fib6_node *root; - struct fib6_node *node; - struct fib6_info *leaf; - enum fib6_walk_state state; - unsigned int skip; - unsigned int count; - unsigned int skip_in_node; - int (*func)(struct fib6_walker *); - void *args; -}; - -struct fib6_entry_notifier_info { - struct fib_notifier_info info; - struct fib6_info *rt; - unsigned int nsiblings; -}; - -struct ipv6_route_iter { - struct seq_net_private p; - struct fib6_walker w; - loff_t skip; - struct fib6_table *tbl; - int sernum; -}; - -struct bpf_iter__ipv6_route { - union { - struct bpf_iter_meta *meta; - }; - union { - struct fib6_info *rt; - }; -}; - -struct fib6_cleaner { - struct fib6_walker w; - struct net *net; - int (*func)(struct fib6_info *, void *); - int sernum; - void *arg; - bool skip_notify; -}; - -enum { - FIB6_NO_SERNUM_CHANGE = 0, -}; - -struct fib6_dump_arg { - struct net *net; - struct notifier_block *nb; - struct netlink_ext_ack *extack; -}; - -struct lookup_args { - int offset; - const struct in6_addr *addr; -}; - -enum { - INET_FRAG_FIRST_IN = 1, - INET_FRAG_LAST_IN = 2, - INET_FRAG_COMPLETE = 4, - INET_FRAG_HASH_DEAD = 8, - INET_FRAG_DROP = 16, -}; - -enum ip6_defrag_users { - IP6_DEFRAG_LOCAL_DELIVER = 0, - IP6_DEFRAG_CONNTRACK_IN = 1, - __IP6_DEFRAG_CONNTRACK_IN = 65536, - IP6_DEFRAG_CONNTRACK_OUT = 65537, - __IP6_DEFRAG_CONNTRACK_OUT = 131072, - IP6_DEFRAG_CONNTRACK_BRIDGE_IN = 131073, - __IP6_DEFRAG_CONNTRACK_BRIDGE_IN = 196608, -}; - -struct frag_queue { - struct inet_frag_queue q; - int iif; - __u16 nhoffset; - u8 ecn; -}; - -struct ioam6_pernet_data { - struct mutex lock; - struct rhashtable namespaces; - struct rhashtable schemas; -}; - -struct rt0_hdr { - struct ipv6_rt_hdr rt_hdr; - __u32 reserved; - struct in6_addr addr[0]; -}; - -struct ipv6_destopt_hao { - __u8 type; - __u8 length; - struct in6_addr addr; -} __attribute__((packed)); - -struct ipv6_rpl_sr_hdr { - __u8 nexthdr; - __u8 hdrlen; - __u8 type; - __u8 segments_left; - __u32 cmpre: 4; - __u32 cmpri: 4; - __u32 reserved: 4; - __u32 pad: 4; - __u32 reserved1: 16; - union { - struct { - struct {} __empty_addr; - struct in6_addr addr[0]; - }; - struct { - struct {} __empty_data; - __u8 data[0]; - }; - } segments; -}; - -struct ioam6_hdr { - __u8 opt_type; - __u8 opt_len; - char: 8; - __u8 type; -}; - -struct ioam6_trace_hdr { - __be16 namespace_id; - char: 2; - __u8 overflow: 1; - __u8 nodelen: 5; - __u8 remlen: 7; - union { - __be32 type_be32; - struct { - __u32 bit7: 1; - __u32 bit6: 1; - __u32 bit5: 1; - __u32 bit4: 1; - __u32 bit3: 1; - __u32 bit2: 1; - __u32 bit1: 1; - __u32 bit0: 1; - __u32 bit15: 1; - __u32 bit14: 1; - __u32 bit13: 1; - __u32 bit12: 1; - __u32 bit11: 1; - __u32 bit10: 1; - __u32 bit9: 1; - __u32 bit8: 1; - __u32 bit23: 1; - __u32 bit22: 1; - __u32 bit21: 1; - __u32 bit20: 1; - __u32 bit19: 1; - __u32 bit18: 1; - __u32 bit17: 1; - __u32 bit16: 1; - } type; - }; - __u8 data[0]; -}; - -enum ioam6_event_type { - IOAM6_EVENT_UNSPEC = 0, - IOAM6_EVENT_TRACE = 1, -}; - -struct ioam6_schema; - -struct ioam6_namespace { - struct rhash_head head; - struct callback_head rcu; - struct ioam6_schema *schema; - __be16 id; - __be32 data; - __be64 data_wide; -}; - -struct ioam6_schema { - struct rhash_head head; - struct callback_head rcu; - struct ioam6_namespace *ns; - u32 id; - int len; - __be32 hdr; - u8 data[0]; -}; - -struct sr6_tlv { - __u8 type; - __u8 len; - __u8 data[0]; -}; - -struct sr6_tlv_hmac { - struct sr6_tlv tlvhdr; - __u16 reserved; - __be32 hmackeyid; - __u8 hmac[32]; -}; - -enum { - SEG6_HMAC_ALGO_SHA1 = 1, - SEG6_HMAC_ALGO_SHA256 = 2, -}; - -struct seg6_hmac_info { - struct rhash_head node; - struct callback_head rcu; - u32 hmackeyid; - char secret[64]; - u8 slen; - u8 alg_id; -}; - -struct seg6_hmac_algo { - u8 alg_id; - char name[64]; - struct crypto_shash **tfms; - struct shash_desc **shashs; -}; - -struct hmac_storage { - local_lock_t bh_lock; - char hmac_ring[256]; -}; - -struct tcp6_ao_context { - struct in6_addr saddr; - struct in6_addr daddr; - __be16 sport; - __be16 dport; - __be32 sisn; - __be32 disn; -}; - -struct kdf_input_block___2 { - u8 counter; - u8 label[6]; - struct tcp6_ao_context ctx; - __be16 outlen; -} __attribute__((packed)); - -struct devlink_nl_sock_priv { - struct devlink_obj_desc *flt; - spinlock_t flt_lock; -}; - -enum devlink_dpipe_match_type { - DEVLINK_DPIPE_MATCH_TYPE_FIELD_EXACT = 0, -}; - -enum devlink_dpipe_action_type { - DEVLINK_DPIPE_ACTION_TYPE_FIELD_MODIFY = 0, -}; - -enum devlink_dpipe_field_ethernet_id { - DEVLINK_DPIPE_FIELD_ETHERNET_DST_MAC = 0, -}; - -enum devlink_dpipe_field_ipv4_id { - DEVLINK_DPIPE_FIELD_IPV4_DST_IP = 0, -}; - -enum devlink_dpipe_field_ipv6_id { - DEVLINK_DPIPE_FIELD_IPV6_DST_IP = 0, -}; - -enum devlink_dpipe_header_id { - DEVLINK_DPIPE_HEADER_ETHERNET = 0, - DEVLINK_DPIPE_HEADER_IPV4 = 1, - DEVLINK_DPIPE_HEADER_IPV6 = 2, -}; - -struct devlink_dpipe_match { - enum devlink_dpipe_match_type type; - unsigned int header_index; - struct devlink_dpipe_header *header; - unsigned int field_id; -}; - -struct devlink_dpipe_action { - enum devlink_dpipe_action_type type; - unsigned int header_index; - struct devlink_dpipe_header *header; - unsigned int field_id; -}; - -struct devlink_dpipe_value { - union { - struct devlink_dpipe_action *action; - struct devlink_dpipe_match *match; - }; - unsigned int mapping_value; - bool mapping_valid; - unsigned int value_size; - void *value; - void *mask; -}; - -struct devlink_dpipe_entry { - u64 index; - struct devlink_dpipe_value *match_values; - unsigned int match_values_count; - struct devlink_dpipe_value *action_values; - unsigned int action_values_count; - u64 counter; - bool counter_valid; -}; - -struct devlink_dpipe_dump_ctx { - struct genl_info *info; - enum devlink_command cmd; - struct sk_buff *skb; - struct nlattr *nest; - void *hdr; -}; - -struct devlink_dpipe_table_ops; - -struct devlink_dpipe_table { - void *priv; - struct list_head list; - const char *name; - bool counters_enabled; - bool counter_control_extern; - bool resource_valid; - u64 resource_id; - u64 resource_units; - const struct devlink_dpipe_table_ops *table_ops; - struct callback_head rcu; -}; - -struct devlink_dpipe_table_ops { - int (*actions_dump)(void *, struct sk_buff *); - int (*matches_dump)(void *, struct sk_buff *); - int (*entries_dump)(void *, bool, struct devlink_dpipe_dump_ctx *); - int (*counters_set_update)(void *, bool); - u64 (*size_get)(void *); -}; - -struct devlink_region_ops { - const char *name; - void (*destructor)(const void *); - int (*snapshot)(struct devlink *, const struct devlink_region_ops *, struct netlink_ext_ack *, u8 **); - int (*read)(struct devlink *, const struct devlink_region_ops *, struct netlink_ext_ack *, u64, u32, u8 *); - void *priv; -}; - -struct devlink_port_region_ops { - const char *name; - void (*destructor)(const void *); - int (*snapshot)(struct devlink_port *, const struct devlink_port_region_ops *, struct netlink_ext_ack *, u8 **); - int (*read)(struct devlink_port *, const struct devlink_port_region_ops *, struct netlink_ext_ack *, u64, u32, u8 *); - void *priv; -}; - -struct devlink_region { - struct devlink *devlink; - struct devlink_port *port; - struct list_head list; - union { - const struct devlink_region_ops *ops; - const struct devlink_port_region_ops *port_ops; - }; - struct mutex snapshot_lock; - struct list_head snapshot_list; - u32 max_snapshots; - u32 cur_snapshots; - u64 size; -}; - -struct devlink_snapshot { - struct list_head list; - struct devlink_region *region; - u8 *data; - u32 id; -}; - -typedef int devlink_chunk_fill_t(void *, u8 *, u32, u64, struct netlink_ext_ack *); - -struct vlan_group { - unsigned int nr_vlan_devs; - struct hlist_node hlist; - struct net_device **vlan_devices_arrays[16]; -}; - -struct vlan_info { - struct net_device *real_dev; - struct vlan_group grp; - struct list_head vid_list; - unsigned int nr_vids; - bool auto_vid0; - struct callback_head rcu; -}; - -enum vlan_flags { - VLAN_FLAG_REORDER_HDR = 1, - VLAN_FLAG_GVRP = 2, - VLAN_FLAG_LOOSE_BINDING = 4, - VLAN_FLAG_MVRP = 8, - VLAN_FLAG_BRIDGE_BINDING = 16, -}; - -struct vlan_pcpu_stats { - u64_stats_t rx_packets; - u64_stats_t rx_bytes; - u64_stats_t rx_multicast; - u64_stats_t tx_packets; - u64_stats_t tx_bytes; - struct u64_stats_sync syncp; - u32 rx_errors; - u32 tx_dropped; -}; - -struct vlan_priority_tci_mapping { - u32 priority; - u16 vlan_qos; - struct vlan_priority_tci_mapping *next; -}; - -struct vlan_dev_priv { - unsigned int nr_ingress_mappings; - u32 ingress_priority_map[8]; - unsigned int nr_egress_mappings; - struct vlan_priority_tci_mapping *egress_priority_map[16]; - __be16 vlan_proto; - u16 vlan_id; - u16 flags; - struct net_device *real_dev; - netdevice_tracker dev_tracker; - unsigned char real_dev_addr[6]; - struct proc_dir_entry *dent; - struct vlan_pcpu_stats *vlan_pcpu_stats; - struct netpoll *netpoll; -}; - -enum vlan_protos { - VLAN_PROTO_8021Q = 0, - VLAN_PROTO_8021AD = 1, - VLAN_PROTO_NUM = 2, -}; - -struct vlan_vid_info { - struct list_head list; - __be16 proto; - u16 vid; - int refcount; -}; - -enum { - NLBL_CIPSOV4_C_UNSPEC = 0, - NLBL_CIPSOV4_C_ADD = 1, - NLBL_CIPSOV4_C_REMOVE = 2, - NLBL_CIPSOV4_C_LIST = 3, - NLBL_CIPSOV4_C_LISTALL = 4, - __NLBL_CIPSOV4_C_MAX = 5, -}; - -enum { - NLBL_CIPSOV4_A_UNSPEC = 0, - NLBL_CIPSOV4_A_DOI = 1, - NLBL_CIPSOV4_A_MTYPE = 2, - NLBL_CIPSOV4_A_TAG = 3, - NLBL_CIPSOV4_A_TAGLST = 4, - NLBL_CIPSOV4_A_MLSLVLLOC = 5, - NLBL_CIPSOV4_A_MLSLVLREM = 6, - NLBL_CIPSOV4_A_MLSLVL = 7, - NLBL_CIPSOV4_A_MLSLVLLST = 8, - NLBL_CIPSOV4_A_MLSCATLOC = 9, - NLBL_CIPSOV4_A_MLSCATREM = 10, - NLBL_CIPSOV4_A_MLSCAT = 11, - NLBL_CIPSOV4_A_MLSCATLST = 12, - __NLBL_CIPSOV4_A_MAX = 13, -}; - -struct netlbl_cipsov4_doiwalk_arg { - struct netlink_callback *nl_cb; - struct sk_buff *skb; - u32 seq; -}; - -enum { - dns_key_data = 0, - dns_key_error = 1, -}; - -enum l3mdev_type { - L3MDEV_TYPE_UNSPEC = 0, - L3MDEV_TYPE_VRF = 1, - __L3MDEV_TYPE_MAX = 2, -}; - -typedef int (*lookup_by_table_id_t)(struct net *, u32); - -struct l3mdev_handler { - lookup_by_table_id_t dev_lookup; -}; - -struct ncsi_aen_pkt_hdr { - struct ncsi_pkt_hdr common; - unsigned char reserved2[3]; - unsigned char type; -}; - -struct ncsi_aen_lsc_pkt { - struct ncsi_aen_pkt_hdr aen; - __be32 status; - __be32 oem_status; - __be32 checksum; - unsigned char pad[14]; -}; - -struct ncsi_aen_hncdsc_pkt { - struct ncsi_aen_pkt_hdr aen; - __be32 status; - __be32 checksum; - unsigned char pad[18]; -}; - -struct ncsi_aen_handler { - unsigned char type; - int payload; - int (*handler)(struct ncsi_dev_priv *, struct ncsi_aen_pkt_hdr *); -}; - -struct xdp_umem_reg { - __u64 addr; - __u64 len; - __u32 chunk_size; - __u32 headroom; - __u32 flags; - __u32 tx_metadata_len; -}; - -struct xsk_tx_metadata { - __u64 flags; - union { - struct { - __u16 csum_start; - __u16 csum_offset; - __u64 launch_time; - } request; - struct { - __u64 tx_timestamp; - } completion; - }; -}; - -struct xsk_dma_map { - dma_addr_t *dma_pages; - struct device *dev; - struct net_device *netdev; - refcount_t users; - struct list_head list; - u32 dma_pages_cnt; -}; - -struct xdp_desc_ctx { - dma_addr_t dma; - struct xsk_tx_metadata *meta; -}; - -struct xsk_cb_desc { - void *src; - u8 off; - u8 bytes; -}; - -struct mptcp_out_options { - u16 suboptions; - struct mptcp_rm_list rm_list; - u8 join_id; - u8 backup; - u8 reset_reason: 4; - u8 reset_transient: 1; - u8 csum_reqd: 1; - u8 allow_join_id0: 1; - union { - struct { - u64 sndr_key; - u64 rcvr_key; - u64 data_seq; - u32 subflow_seq; - u16 data_len; - __sum16 csum; - }; - struct { - struct mptcp_addr_info addr; - u64 ahmac; - }; - struct { - struct mptcp_ext ext_copy; - u64 fail_seq; - }; - struct { - u32 nonce; - u32 token; - u64 thmac; - u8 hmac[20]; - }; - }; -}; - -enum mptcp_addr_signal_status { - MPTCP_ADD_ADDR_SIGNAL = 0, - MPTCP_ADD_ADDR_ECHO = 1, - MPTCP_RM_ADDR_SIGNAL = 2, -}; - -struct csum_pseudo_header { - __be64 data_seq; - __be32 subflow_seq; - __be16 data_len; - __sum16 csum; -}; - -enum mptcp_event_type { - MPTCP_EVENT_UNSPEC = 0, - MPTCP_EVENT_CREATED = 1, - MPTCP_EVENT_ESTABLISHED = 2, - MPTCP_EVENT_CLOSED = 3, - MPTCP_EVENT_ANNOUNCED = 6, - MPTCP_EVENT_REMOVED = 7, - MPTCP_EVENT_SUB_ESTABLISHED = 10, - MPTCP_EVENT_SUB_CLOSED = 11, - MPTCP_EVENT_SUB_PRIORITY = 13, - MPTCP_EVENT_LISTENER_CREATED = 15, - MPTCP_EVENT_LISTENER_CLOSED = 16, -}; - -enum mptcp_pm_status { - MPTCP_PM_ADD_ADDR_RECEIVED = 0, - MPTCP_PM_ADD_ADDR_SEND_ACK = 1, - MPTCP_PM_RM_ADDR_RECEIVED = 2, - MPTCP_PM_ESTABLISHED = 3, - MPTCP_PM_SUBFLOW_ESTABLISHED = 4, - MPTCP_PM_ALREADY_ESTABLISHED = 5, - MPTCP_PM_MPC_ENDPOINT_ACCOUNTED = 6, -}; - -struct mptcp_pm_addr_entry { - struct list_head list; - struct mptcp_addr_info addr; - u8 flags; - int ifindex; - struct socket *lsk; -}; - -struct mptcp_pm_add_entry { - struct list_head list; - struct mptcp_addr_info addr; - u8 retrans_times; - struct timer_list add_timer; - struct mptcp_sock *sock; - struct callback_head rcu; -}; - -enum { - MPTCP_PM_ADDR_ATTR_UNSPEC = 0, - MPTCP_PM_ADDR_ATTR_FAMILY = 1, - MPTCP_PM_ADDR_ATTR_ID = 2, - MPTCP_PM_ADDR_ATTR_ADDR4 = 3, - MPTCP_PM_ADDR_ATTR_ADDR6 = 4, - MPTCP_PM_ADDR_ATTR_PORT = 5, - MPTCP_PM_ADDR_ATTR_FLAGS = 6, - MPTCP_PM_ADDR_ATTR_IF_IDX = 7, - __MPTCP_PM_ADDR_ATTR_MAX = 8, -}; - -enum { - MPTCP_PM_ENDPOINT_ADDR = 1, - __MPTCP_PM_ENDPOINT_MAX = 2, -}; - -enum { - MPTCP_PM_ATTR_UNSPEC = 0, - MPTCP_PM_ATTR_ADDR = 1, - MPTCP_PM_ATTR_RCV_ADD_ADDRS = 2, - MPTCP_PM_ATTR_SUBFLOWS = 3, - MPTCP_PM_ATTR_TOKEN = 4, - MPTCP_PM_ATTR_LOC_ID = 5, - MPTCP_PM_ATTR_ADDR_REMOTE = 6, - __MPTCP_ATTR_AFTER_LAST = 7, -}; - -enum mptcp_event_attr { - MPTCP_ATTR_UNSPEC = 0, - MPTCP_ATTR_TOKEN = 1, - MPTCP_ATTR_FAMILY = 2, - MPTCP_ATTR_LOC_ID = 3, - MPTCP_ATTR_REM_ID = 4, - MPTCP_ATTR_SADDR4 = 5, - MPTCP_ATTR_SADDR6 = 6, - MPTCP_ATTR_DADDR4 = 7, - MPTCP_ATTR_DADDR6 = 8, - MPTCP_ATTR_SPORT = 9, - MPTCP_ATTR_DPORT = 10, - MPTCP_ATTR_BACKUP = 11, - MPTCP_ATTR_ERROR = 12, - MPTCP_ATTR_FLAGS = 13, - MPTCP_ATTR_TIMEOUT = 14, - MPTCP_ATTR_IF_IDX = 15, - MPTCP_ATTR_RESET_REASON = 16, - MPTCP_ATTR_RESET_FLAGS = 17, - MPTCP_ATTR_SERVER_SIDE = 18, - __MPTCP_ATTR_MAX = 19, -}; - -enum { - MPTCP_PM_CMD_UNSPEC = 0, - MPTCP_PM_CMD_ADD_ADDR = 1, - MPTCP_PM_CMD_DEL_ADDR = 2, - MPTCP_PM_CMD_GET_ADDR = 3, - MPTCP_PM_CMD_FLUSH_ADDRS = 4, - MPTCP_PM_CMD_SET_LIMITS = 5, - MPTCP_PM_CMD_GET_LIMITS = 6, - MPTCP_PM_CMD_SET_FLAGS = 7, - MPTCP_PM_CMD_ANNOUNCE = 8, - MPTCP_PM_CMD_REMOVE = 9, - MPTCP_PM_CMD_SUBFLOW_CREATE = 10, - MPTCP_PM_CMD_SUBFLOW_DESTROY = 11, - __MPTCP_PM_CMD_AFTER_LAST = 12, -}; - -struct net_proto_family { - int family; - int (*create)(struct net *, struct socket *, int, int); - struct module *owner; -}; - -struct mctp_addr { - mctp_eid_t s_addr; -}; - -struct sockaddr_mctp { - __kernel_sa_family_t smctp_family; - __u16 __smctp_pad0; - unsigned int smctp_network; - struct mctp_addr smctp_addr; - __u8 smctp_type; - __u8 smctp_tag; - __u8 __smctp_pad1; -}; - -struct sockaddr_mctp_ext { - struct sockaddr_mctp smctp_base; - int smctp_ifindex; - __u8 smctp_halen; - __u8 __smctp_pad0[3]; - __u8 smctp_haddr[32]; -}; - -struct mctp_ioc_tag_ctl { - mctp_eid_t peer_addr; - __u8 tag; - __u16 flags; -}; - -struct mctp_ioc_tag_ctl2 { - unsigned int net; - mctp_eid_t peer_addr; - mctp_eid_t local_addr; - __u16 flags; - __u8 tag; -}; - -struct mctp_hdr { - u8 ver; - u8 dest; - u8 src; - u8 flags_seq_tag; -}; - -struct mctp_sock { - struct sock sk; - unsigned int bind_net; - mctp_eid_t bind_local_addr; - mctp_eid_t bind_peer_addr; - unsigned int bind_peer_net; - bool bind_peer_set; - __u8 bind_type; - bool addr_ext; - struct hlist_head keys; - struct timer_list key_expiry; -}; - -struct mctp_skb_cb { - unsigned int magic; - unsigned int net; - int ifindex; - unsigned char halen; - unsigned char haddr[32]; -}; - -struct mctp_dst { - struct mctp_dev *dev; - unsigned int mtu; - mctp_eid_t nexthop; - unsigned char halen; - unsigned char haddr[32]; - int (*output)(struct mctp_dst *, struct sk_buff *); -}; - -enum { - MCTP_TRACE_KEY_TIMEOUT = 0, - MCTP_TRACE_KEY_REPLIED = 1, - MCTP_TRACE_KEY_INVALIDATED = 2, - MCTP_TRACE_KEY_CLOSED = 3, - MCTP_TRACE_KEY_DROPPED = 4, -}; - -struct trace_event_raw_mctp_key_acquire { - struct trace_entry ent; - __u8 paddr; - __u8 laddr; - __u8 tag; - char __data[0]; -}; - -struct trace_event_raw_mctp_key_release { - struct trace_entry ent; - __u8 paddr; - __u8 laddr; - __u8 tag; - int reason; - char __data[0]; -}; - -struct trace_event_data_offsets_mctp_key_acquire {}; - -struct trace_event_data_offsets_mctp_key_release {}; - -typedef void (*btf_trace_mctp_key_acquire)(void *, const struct mctp_sk_key *); - -typedef void (*btf_trace_mctp_key_release)(void *, const struct mctp_sk_key *, int); - -enum { - TLS_RECORD_TYPE_CHANGE_CIPHER_SPEC = 20, - TLS_RECORD_TYPE_ALERT = 21, - TLS_RECORD_TYPE_HANDSHAKE = 22, - TLS_RECORD_TYPE_DATA = 23, - TLS_RECORD_TYPE_HEARTBEAT = 24, - TLS_RECORD_TYPE_TLS12_CID = 25, - TLS_RECORD_TYPE_ACK = 26, -}; - -struct handshake_net { - spinlock_t hn_lock; - int hn_pending; - int hn_pending_max; - struct list_head hn_requests; - long unsigned int hn_flags; -}; - -enum hn_flags_bits { - HANDSHAKE_F_NET_DRAINING = 0, -}; - -enum { - NET_SHAPER_A_HANDLE = 1, - NET_SHAPER_A_METRIC = 2, - NET_SHAPER_A_BW_MIN = 3, - NET_SHAPER_A_BW_MAX = 4, - NET_SHAPER_A_BURST = 5, - NET_SHAPER_A_PRIORITY = 6, - NET_SHAPER_A_WEIGHT = 7, - NET_SHAPER_A_IFINDEX = 8, - NET_SHAPER_A_PARENT = 9, - NET_SHAPER_A_LEAVES = 10, - __NET_SHAPER_A_MAX = 11, - NET_SHAPER_A_MAX = 10, -}; - -enum { - NET_SHAPER_A_HANDLE_SCOPE = 1, - NET_SHAPER_A_HANDLE_ID = 2, - __NET_SHAPER_A_HANDLE_MAX = 3, - NET_SHAPER_A_HANDLE_MAX = 2, -}; - -enum { - NET_SHAPER_CMD_GET = 1, - NET_SHAPER_CMD_SET = 2, - NET_SHAPER_CMD_DELETE = 3, - NET_SHAPER_CMD_GROUP = 4, - NET_SHAPER_CMD_CAP_GET = 5, - __NET_SHAPER_CMD_MAX = 6, - NET_SHAPER_CMD_MAX = 5, -}; - -struct pci_raw_ops { - int (*read)(unsigned int, unsigned int, unsigned int, int, int, u32 *); - int (*write)(unsigned int, unsigned int, unsigned int, int, int, u32); -}; - -struct acpi_pci_root_ops; - -struct acpi_pci_root_info { - struct acpi_pci_root *root; - struct acpi_device *bridge; - struct acpi_pci_root_ops *ops; - struct list_head resources; - char name[16]; -}; - -struct acpi_pci_root_ops { - struct pci_ops *pci_ops; - int (*init_info)(struct acpi_pci_root_info *); - void (*release_info)(struct acpi_pci_root_info *); - int (*prepare_resources)(struct acpi_pci_root_info *); -}; - -struct pci_root_info___2 { - struct acpi_pci_root_info common; - struct pci_sysdata sd; - bool mcfg_added; - u8 start_bus; - u8 end_bus; -}; - -struct irq_info { - u8 bus; - u8 devfn; - struct { - u8 link; - u16 bitmap; - } __attribute__((packed)) irq[4]; - u8 slot; - u8 rfu; -}; - -struct irq_routing_table { - u32 signature; - u16 version; - u16 size; - u8 rtr_bus; - u8 rtr_devfn; - u16 exclusive_irqs; - u16 rtr_vendor; - u16 rtr_device; - u32 miniport_data; - u8 rfu[11]; - u8 checksum; - struct irq_info slots[0]; -}; - -struct irt_routing_table { - u32 signature; - u8 size; - u8 used; - u16 exclusive_irqs; - struct irq_info slots[0]; -}; - -struct irq_router { - char *name; - u16 vendor; - u16 device; - int (*get)(struct pci_dev *, struct pci_dev *, int); - int (*set)(struct pci_dev *, struct pci_dev *, int, int); - int (*lvl)(struct pci_dev *, struct pci_dev *, int, int); -}; - -struct irq_router_handler { - u16 vendor; - int (*probe)(struct irq_router *, struct pci_dev *, u16); -}; - -struct restore_data_record { - long unsigned int jump_address; - long unsigned int jump_address_phys; - long unsigned int cr3; - long unsigned int magic; - long unsigned int e820_checksum; -}; - -typedef __u32 Elf32_Addr; - -typedef __u16 Elf32_Half; - -typedef __u32 Elf32_Off; - -struct elf32_hdr { - unsigned char e_ident[16]; - Elf32_Half e_type; - Elf32_Half e_machine; - Elf32_Word e_version; - Elf32_Addr e_entry; - Elf32_Off e_phoff; - Elf32_Off e_shoff; - Elf32_Word e_flags; - Elf32_Half e_ehsize; - Elf32_Half e_phentsize; - Elf32_Half e_phnum; - Elf32_Half e_shentsize; - Elf32_Half e_shnum; - Elf32_Half e_shstrndx; -}; - -typedef struct elf32_hdr Elf32_Ehdr; - -struct elf32_phdr { - Elf32_Word p_type; - Elf32_Off p_offset; - Elf32_Addr p_vaddr; - Elf32_Addr p_paddr; - Elf32_Word p_filesz; - Elf32_Word p_memsz; - Elf32_Word p_flags; - Elf32_Word p_align; -}; - -typedef struct elf32_phdr Elf32_Phdr; - -typedef struct elf32_note Elf32_Nhdr; - -struct freader { - void *buf; - u32 buf_sz; - int err; - union { - struct { - struct file *file; - struct folio *folio; - void *addr; - loff_t folio_off; - bool may_fault; - }; - struct { - const char *data; - u64 data_sz; - }; - }; -}; - -struct compress_format { - unsigned char magic[2]; - const char *name; - decompress_fn decompressor; -}; - -struct fdt_errtabent { - const char *str; -}; - -struct radix_tree_iter { - long unsigned int index; - long unsigned int next_index; - long unsigned int tags; - struct xa_node *node; -}; - -enum { - RADIX_TREE_ITER_TAG_MASK = 15, - RADIX_TREE_ITER_TAGGED = 16, - RADIX_TREE_ITER_CONTIG = 32, -}; - -struct ida_bitmap { - long unsigned int bitmap[16]; -}; - -struct klist_waiter { - struct list_head list; - struct klist_node *node; - struct task_struct *process; - int woken; -}; - -enum { - LOGIC_PIO_INDIRECT = 0, - LOGIC_PIO_CPU_MMIO = 1, -}; - -struct logic_pio_host_ops; - -struct logic_pio_hwaddr { - struct list_head list; - const struct fwnode_handle *fwnode; - resource_size_t hw_start; - resource_size_t io_start; - resource_size_t size; - long unsigned int flags; - void *hostdata; - const struct logic_pio_host_ops *ops; -}; - -struct logic_pio_host_ops { - u32 (*in)(void *, long unsigned int, size_t); - void (*out)(void *, long unsigned int, u32, size_t); - u32 (*ins)(void *, long unsigned int, void *, size_t, unsigned int); - void (*outs)(void *, long unsigned int, const void *, size_t, unsigned int); -}; - -struct maple_metadata { - unsigned char end; - unsigned char gap; -}; - -struct maple_pnode; - -struct maple_range_64 { - struct maple_pnode *parent; - long unsigned int pivot[15]; - union { - void *slot[16]; - struct { - void *pad[15]; - struct maple_metadata meta; - }; - }; -}; - -struct maple_arange_64 { - struct maple_pnode *parent; - long unsigned int pivot[9]; - void *slot[10]; - long unsigned int gap[10]; - struct maple_metadata meta; -}; - -struct maple_topiary { - struct maple_pnode *parent; - struct maple_enode *next; -}; - -enum maple_type { - maple_dense = 0, - maple_leaf_64 = 1, - maple_range_64 = 2, - maple_arange_64 = 3, -}; - -struct maple_node { - union { - struct { - struct maple_pnode *parent; - void *slot[31]; - }; - struct { - void *pad; - struct callback_head rcu; - struct maple_enode *piv_parent; - unsigned char parent_slot; - enum maple_type type; - unsigned char slot_len; - unsigned int ma_flags; - }; - struct maple_range_64 mr64; - struct maple_arange_64 ma64; - struct maple_alloc alloc; - }; -}; - -struct ma_topiary { - struct maple_enode *head; - struct maple_enode *tail; - struct maple_tree *mtree; -}; - -struct ma_wr_state { - struct ma_state *mas; - struct maple_node *node; - long unsigned int r_min; - long unsigned int r_max; - enum maple_type type; - unsigned char offset_end; - long unsigned int *pivots; - long unsigned int end_piv; - void **slots; - void *entry; - void *content; - unsigned char vacant_height; - unsigned char sufficient_height; -}; - -struct trace_event_raw_ma_op { - struct trace_entry ent; - const char *fn; - long unsigned int min; - long unsigned int max; - long unsigned int index; - long unsigned int last; - void *node; - char __data[0]; -}; - -struct trace_event_raw_ma_read { - struct trace_entry ent; - const char *fn; - long unsigned int min; - long unsigned int max; - long unsigned int index; - long unsigned int last; - void *node; - char __data[0]; -}; - -struct trace_event_raw_ma_write { - struct trace_entry ent; - const char *fn; - long unsigned int min; - long unsigned int max; - long unsigned int index; - long unsigned int last; - long unsigned int piv; - void *val; - void *node; - char __data[0]; -}; - -struct trace_event_data_offsets_ma_op {}; - -struct trace_event_data_offsets_ma_read {}; - -struct trace_event_data_offsets_ma_write {}; - -typedef void (*btf_trace_ma_op)(void *, const char *, struct ma_state *); - -typedef void (*btf_trace_ma_read)(void *, const char *, struct ma_state *); - -typedef void (*btf_trace_ma_write)(void *, const char *, struct ma_state *, long unsigned int, void *); - -struct maple_big_node { - long unsigned int pivot[33]; - union { - struct maple_enode *slot[34]; - struct { - long unsigned int padding[21]; - long unsigned int gap[21]; - }; - }; - unsigned char b_end; - enum maple_type type; -}; - -struct maple_subtree_state { - struct ma_state *orig_l; - struct ma_state *orig_r; - struct ma_state *l; - struct ma_state *m; - struct ma_state *r; - struct ma_topiary *free; - struct ma_topiary *destroy; - struct maple_big_node *bn; -}; - -enum { - Root_NFS = 255, - Root_CIFS = 254, - Root_Generic = 253, - Root_RAM0 = 1048576, -}; - -enum perf_msr_id { - PERF_MSR_TSC = 0, - PERF_MSR_APERF = 1, - PERF_MSR_MPERF = 2, - PERF_MSR_PPERF = 3, - PERF_MSR_SMI = 4, - PERF_MSR_PTSC = 5, - PERF_MSR_IRPERF = 6, - PERF_MSR_THERM = 7, - PERF_MSR_EVENT_MAX = 8, -}; - -struct pebs_basic { - u64 format_group: 32; - u64 retire_latency: 16; - u64 format_size: 16; - u64 ip; - u64 applicable_counters; - u64 tsc; -}; - -struct pebs_meminfo { - u64 address; - u64 aux; - union { - u64 mem_latency; - struct { - u64 instr_latency: 16; - u64 pad2: 16; - u64 cache_latency: 16; - u64 pad3: 16; - }; - }; - u64 tsx_tuning; -}; - -struct pebs_gprs { - u64 flags; - u64 ip; - u64 ax; - u64 cx; - u64 dx; - u64 bx; - u64 sp; - u64 bp; - u64 si; - u64 di; - u64 r8; - u64 r9; - u64 r10; - u64 r11; - u64 r12; - u64 r13; - u64 r14; - u64 r15; -}; - -struct pebs_xmm { - u64 xmm[32]; -}; - -struct pebs_cntr_header { - u32 cntr; - u32 fixed; - u32 metrics; - u32 reserved; -}; - -struct x86_perf_regs { - struct pt_regs regs; - u64 *xmm_regs; -}; - -enum { - PERF_TXN_ELISION = 1ULL, - PERF_TXN_TRANSACTION = 2ULL, - PERF_TXN_SYNC = 4ULL, - PERF_TXN_ASYNC = 8ULL, - PERF_TXN_RETRY = 16ULL, - PERF_TXN_CONFLICT = 32ULL, - PERF_TXN_CAPACITY_WRITE = 64ULL, - PERF_TXN_CAPACITY_READ = 128ULL, - PERF_TXN_MAX = 256ULL, - PERF_TXN_ABORT_MASK = 18446744069414584320ULL, - PERF_TXN_ABORT_SHIFT = 32ULL, -}; - -union intel_x86_pebs_dse { - u64 val; - struct { - unsigned int ld_dse: 4; - unsigned int ld_stlb_miss: 1; - unsigned int ld_locked: 1; - unsigned int ld_data_blk: 1; - unsigned int ld_addr_blk: 1; - unsigned int ld_reserved: 24; - }; - struct { - unsigned int st_l1d_hit: 1; - unsigned int st_reserved1: 3; - unsigned int st_stlb_miss: 1; - unsigned int st_locked: 1; - unsigned int st_reserved2: 26; - }; - struct { - unsigned int st_lat_dse: 4; - unsigned int st_lat_stlb_miss: 1; - unsigned int st_lat_locked: 1; - unsigned int ld_reserved3: 26; - }; - struct { - unsigned int mtl_dse: 5; - unsigned int mtl_locked: 1; - unsigned int mtl_stlb_miss: 1; - unsigned int mtl_fwd_blk: 1; - unsigned int ld_reserved4: 24; - }; - struct { - unsigned int lnc_dse: 8; - unsigned int ld_reserved5: 2; - unsigned int lnc_stlb_miss: 1; - unsigned int lnc_locked: 1; - unsigned int lnc_data_blk: 1; - unsigned int lnc_addr_blk: 1; - unsigned int ld_reserved6: 18; - }; -}; - -struct pebs_record_core { - u64 flags; - u64 ip; - u64 ax; - u64 bx; - u64 cx; - u64 dx; - u64 si; - u64 di; - u64 bp; - u64 sp; - u64 r8; - u64 r9; - u64 r10; - u64 r11; - u64 r12; - u64 r13; - u64 r14; - u64 r15; -}; - -struct pebs_record_nhm { - u64 flags; - u64 ip; - u64 ax; - u64 bx; - u64 cx; - u64 dx; - u64 si; - u64 di; - u64 bp; - u64 sp; - u64 r8; - u64 r9; - u64 r10; - u64 r11; - u64 r12; - u64 r13; - u64 r14; - u64 r15; - u64 status; - u64 dla; - u64 dse; - u64 lat; -}; - -union hsw_tsx_tuning { - struct { - u32 cycles_last_block: 32; - u32 hle_abort: 1; - u32 rtm_abort: 1; - u32 instruction_abort: 1; - u32 non_instruction_abort: 1; - u32 retry: 1; - u32 data_conflict: 1; - u32 capacity_writes: 1; - u32 capacity_reads: 1; - }; - u64 value; -}; - -struct pebs_record_skl { - u64 flags; - u64 ip; - u64 ax; - u64 bx; - u64 cx; - u64 dx; - u64 si; - u64 di; - u64 bp; - u64 sp; - u64 r8; - u64 r9; - u64 r10; - u64 r11; - u64 r12; - u64 r13; - u64 r14; - u64 r15; - u64 status; - u64 dla; - u64 dse; - u64 lat; - u64 real_ip; - u64 tsx_tuning; - u64 tsc; -}; - -typedef void (*setup_fn)(struct perf_event *, struct pt_regs *, void *, struct perf_sample_data *, struct pt_regs *); - -struct bts_record { - u64 from; - u64 to; - u64 flags; -}; - -enum { - SNB_PCI_UNCORE_IMC = 0, -}; - -enum perf_snb_uncore_imc_freerunning_types { - SNB_PCI_UNCORE_IMC_DATA_READS = 0, - SNB_PCI_UNCORE_IMC_DATA_WRITES = 1, - SNB_PCI_UNCORE_IMC_GT_REQUESTS = 2, - SNB_PCI_UNCORE_IMC_IA_REQUESTS = 3, - SNB_PCI_UNCORE_IMC_IO_REQUESTS = 4, - SNB_PCI_UNCORE_IMC_FREERUNNING_TYPE_MAX = 5, -}; - -struct imc_uncore_pci_dev { - __u32 pci_id; - struct pci_driver *driver; -}; - -enum perf_tgl_uncore_imc_freerunning_types { - TGL_MMIO_UNCORE_IMC_DATA_TOTAL = 0, - TGL_MMIO_UNCORE_IMC_DATA_READ = 1, - TGL_MMIO_UNCORE_IMC_DATA_WRITE = 2, - TGL_MMIO_UNCORE_IMC_FREERUNNING_TYPE_MAX = 3, -}; - -enum perf_adl_uncore_imc_freerunning_types { - ADL_MMIO_UNCORE_IMC_DATA_TOTAL = 0, - ADL_MMIO_UNCORE_IMC_DATA_READ = 1, - ADL_MMIO_UNCORE_IMC_DATA_WRITE = 2, - ADL_MMIO_UNCORE_IMC_FREERUNNING_TYPE_MAX = 3, -}; - -union cpuid10_eax { - struct { - unsigned int version_id: 8; - unsigned int num_counters: 8; - unsigned int bit_width: 8; - unsigned int mask_length: 8; - } split; - unsigned int full; -}; - -union cpuid10_ebx { - struct { - unsigned int no_unhalted_core_cycles: 1; - unsigned int no_instructions_retired: 1; - unsigned int no_unhalted_reference_cycles: 1; - unsigned int no_llc_reference: 1; - unsigned int no_llc_misses: 1; - unsigned int no_branch_instruction_retired: 1; - unsigned int no_branch_misses_retired: 1; - } split; - unsigned int full; -}; - -union cpuid10_edx { - struct { - unsigned int num_counters_fixed: 5; - unsigned int bit_width_fixed: 8; - unsigned int reserved1: 2; - unsigned int anythread_deprecated: 1; - unsigned int reserved2: 16; - } split; - unsigned int full; -}; - -union x86_pmu_config { - struct { - u64 event: 8; - u64 umask: 8; - u64 usr: 1; - u64 os: 1; - u64 edge: 1; - u64 pc: 1; - u64 interrupt: 1; - u64 __reserved1: 1; - u64 en: 1; - u64 inv: 1; - u64 cmask: 8; - u64 event2: 4; - u64 __reserved2: 4; - u64 go: 1; - u64 ho: 1; - } bits; - u64 value; -}; - -enum hv_interrupt_type { - HV_X64_INTERRUPT_TYPE_FIXED = 0, - HV_X64_INTERRUPT_TYPE_LOWESTPRIORITY = 1, - HV_X64_INTERRUPT_TYPE_SMI = 2, - HV_X64_INTERRUPT_TYPE_REMOTEREAD = 3, - HV_X64_INTERRUPT_TYPE_NMI = 4, - HV_X64_INTERRUPT_TYPE_INIT = 5, - HV_X64_INTERRUPT_TYPE_SIPI = 6, - HV_X64_INTERRUPT_TYPE_EXTINT = 7, - HV_X64_INTERRUPT_TYPE_LOCALINT0 = 8, - HV_X64_INTERRUPT_TYPE_LOCALINT1 = 9, - HV_X64_INTERRUPT_TYPE_MAXIMUM = 10, -}; - -enum hv_interrupt_trigger_mode { - HV_INTERRUPT_TRIGGER_MODE_EDGE = 0, - HV_INTERRUPT_TRIGGER_MODE_LEVEL = 1, -}; - -struct hv_device_interrupt_descriptor { - u32 interrupt_type; - u32 trigger_mode; - u32 vector_count; - u32 reserved; - struct hv_device_interrupt_target target; -}; - -struct hv_input_map_device_interrupt { - u64 partition_id; - u64 device_id; - u32 flags; - u32 base_irt_idx; - struct hv_interrupt_entry logical_interrupt_entry; - struct hv_device_interrupt_descriptor interrupt_descriptor; -}; - -struct hv_output_map_device_interrupt { - struct hv_interrupt_entry interrupt_entry; - u64 ext_status_deprecated[5]; -}; - -struct hv_input_unmap_device_interrupt { - u64 partition_id; - u64 device_id; - struct hv_interrupt_entry interrupt_entry; - u32 flags; -} __attribute__((packed)); - -typedef u16 hv_pci_rid; - -typedef u16 hv_pci_segment; - -union hv_pci_bdf { - u16 as_uint16; - struct { - u8 function: 3; - u8 device: 5; - u8 bus; - }; -}; - -union hv_pci_bus_range { - u16 as_uint16; - struct { - u8 subordinate_bus; - u8 secondary_bus; - }; -}; - -enum hv_device_type { - HV_DEVICE_TYPE_LOGICAL = 0, - HV_DEVICE_TYPE_PCI = 1, - HV_DEVICE_TYPE_IOAPIC = 2, - HV_DEVICE_TYPE_ACPI = 3, -}; - -union hv_device_id { - u64 as_uint64; - struct { - u64 reserved0: 62; - u64 device_type: 2; - }; - struct { - u64 id: 62; - u64 device_type: 2; - } logical; - struct { - union { - hv_pci_rid rid; - union hv_pci_bdf bdf; - }; - hv_pci_segment segment; - union hv_pci_bus_range shadow_bus_range; - u16 phantom_function_bits: 2; - u16 source_shadow: 1; - u16 rsvdz0: 11; - u16 device_type: 2; - } pci; - struct { - u8 ioapic_id; - u8 rsvdz0; - u16 rsvdz1; - u16 rsvdz2; - u16 rsvdz3: 14; - u16 device_type: 2; - } ioapic; - struct { - u32 input_mapping_base; - u32 input_mapping_count: 30; - u32 device_type: 2; - } acpi; -}; - -struct rid_data { - struct pci_dev *bridge; - u32 rid; -}; - -struct trampoline_header { - u64 start; - u64 efer; - u32 cr4; - u32 flags; - u32 lock; -}; - -struct boot_params_to_save { - unsigned int start; - unsigned int len; -}; - -enum bug_trap_type { - BUG_TRAP_TYPE_NONE = 0, - BUG_TRAP_TYPE_WARN = 1, - BUG_TRAP_TYPE_BUG = 2, -}; - -enum kernel_gp_hint { - GP_NO_HINT = 0, - GP_NON_CANONICAL = 1, - GP_CANONICAL = 2, -}; - -struct trace_event_raw_nmi_handler { - struct trace_entry ent; - void *handler; - s64 delta_ns; - int handled; - char __data[0]; -}; - -struct trace_event_data_offsets_nmi_handler {}; - -typedef void (*btf_trace_nmi_handler)(void *, void *, s64, int); - -struct nmi_desc { - raw_spinlock_t lock; - nmi_handler_t emerg_handler; - struct list_head head; -}; - -struct nmi_stats { - unsigned int normal; - unsigned int unknown; - unsigned int external; - unsigned int swallow; - long unsigned int recv_jiffies; - long unsigned int idt_seq; - long unsigned int idt_nmi_seq; - long unsigned int idt_ignored; - atomic_long_t idt_calls; - long unsigned int idt_seq_snap; - long unsigned int idt_nmi_seq_snap; - long unsigned int idt_ignored_snap; - long int idt_calls_snap; -}; - -enum nmi_states { - NMI_NOT_RUNNING = 0, - NMI_EXECUTING = 1, - NMI_LATCHED = 2, -}; - -struct x86_apic_ops { - unsigned int (*io_apic_read)(unsigned int, unsigned int); - void (*restore)(void); -}; - -struct _fpx_sw_bytes { - __u32 magic1; - __u32 extended_size; - __u64 xfeatures; - __u32 xstate_size; - __u32 padding[7]; -}; - -struct _xmmreg { - __u32 element[4]; -}; - -struct _fpstate_32 { - __u32 cw; - __u32 sw; - __u32 tag; - __u32 ipoff; - __u32 cssel; - __u32 dataoff; - __u32 datasel; - struct _fpreg _st[8]; - __u16 status; - __u16 magic; - __u32 _fxsr_env[6]; - __u32 mxcsr; - __u32 reserved; - struct _fpxreg _fxsr_st[8]; - struct _xmmreg _xmm[8]; - union { - __u32 padding1[44]; - __u32 padding[44]; - }; - union { - __u32 padding2[12]; - struct _fpx_sw_bytes sw_reserved; - }; -}; - -struct sigcontext_32 { - __u16 gs; - __u16 __gsh; - __u16 fs; - __u16 __fsh; - __u16 es; - __u16 __esh; - __u16 ds; - __u16 __dsh; - __u32 di; - __u32 si; - __u32 bp; - __u32 sp; - __u32 bx; - __u32 dx; - __u32 cx; - __u32 ax; - __u32 trapno; - __u32 err; - __u32 ip; - __u16 cs; - __u16 __csh; - __u32 flags; - __u32 sp_at_signal; - __u16 ss; - __u16 __ssh; - __u32 fpstate; - __u32 oldmask; - __u32 cr2; -}; - -struct compat_sigaltstack { - compat_uptr_t ss_sp; - int ss_flags; - compat_size_t ss_size; -}; - -typedef struct compat_sigaltstack compat_stack_t; - -typedef struct compat_siginfo compat_siginfo_t; - -struct ucontext_ia32 { - unsigned int uc_flags; - unsigned int uc_link; - compat_stack_t uc_stack; - struct sigcontext_32 uc_mcontext; - compat_sigset_t uc_sigmask; -}; - -struct sigframe_ia32 { - u32 pretcode; - int sig; - struct sigcontext_32 sc; - struct _fpstate_32 fpstate_unused; - unsigned int extramask[1]; - char retcode[8]; -}; - -struct rt_sigframe_ia32 { - u32 pretcode; - int sig; - u32 pinfo; - u32 puc; - compat_siginfo_t info; - struct ucontext_ia32 uc; - char retcode[8]; -}; - -struct change_member { - struct e820_entry *entry; - long long unsigned int addr; -}; - -typedef u8 retpoline_thunk_t[32]; - -enum cfi_mode { - CFI_AUTO = 0, - CFI_OFF = 1, - CFI_KCFI = 2, - CFI_FINEIBT = 3, -}; - -struct smp_alt_module { - struct module *mod; - char *name; - const s32 *locks; - const s32 *locks_end; - u8 *text; - u8 *text_end; - struct list_head next; -}; - -typedef void text_poke_f(void *, const void *, size_t); - -struct smp_text_poke_loc { - s32 rel_addr; - s32 disp; - u8 len; - u8 opcode; - const u8 text[5]; - u8 old; -}; - -struct smp_text_poke_array { - struct smp_text_poke_loc vec[256]; - int nr_entries; -}; - -struct user_regset_view { - const char *name; - const struct user_regset *regsets; - unsigned int n; - u32 e_flags; - u16 e_machine; - u8 ei_osabi; -}; - -enum x86_regset_32 { - REGSET32_GENERAL = 0, - REGSET32_FP = 1, - REGSET32_XFP = 2, - REGSET32_XSTATE = 3, - REGSET32_TLS = 4, - REGSET32_IOPERM = 5, -}; - -enum x86_regset_64 { - REGSET64_GENERAL = 0, - REGSET64_FP = 1, - REGSET64_IOPERM = 2, - REGSET64_XSTATE = 3, - REGSET64_SSP = 4, -}; - -struct pt_regs_offset { - const char *name; - int offset; -}; - -enum _cache_type { - CTYPE_NULL = 0, - CTYPE_DATA = 1, - CTYPE_INST = 2, - CTYPE_UNIFIED = 3, -}; - -union _cpuid4_leaf_eax { - struct { - enum _cache_type type: 5; - unsigned int level: 3; - unsigned int is_self_initializing: 1; - unsigned int is_fully_associative: 1; - unsigned int reserved: 4; - unsigned int num_threads_sharing: 12; - unsigned int num_cores_on_die: 6; - } split; - u32 full; -}; - -union _cpuid4_leaf_ebx { - struct { - unsigned int coherency_line_size: 12; - unsigned int physical_line_partition: 10; - unsigned int ways_of_associativity: 10; - } split; - u32 full; -}; - -union _cpuid4_leaf_ecx { - struct { - unsigned int number_of_sets: 32; - } split; - u32 full; -}; - -struct _cpuid4_info { - union _cpuid4_leaf_eax eax; - union _cpuid4_leaf_ebx ebx; - union _cpuid4_leaf_ecx ecx; - unsigned int id; - long unsigned int size; -}; - -union l1_cache { - struct { - unsigned int line_size: 8; - unsigned int lines_per_tag: 8; - unsigned int assoc: 8; - unsigned int size_in_kb: 8; - }; - unsigned int val; -}; - -union l2_cache { - struct { - unsigned int line_size: 8; - unsigned int lines_per_tag: 4; - unsigned int assoc: 4; - unsigned int size_in_kb: 16; - }; - unsigned int val; -}; - -union l3_cache { - struct { - unsigned int line_size: 8; - unsigned int lines_per_tag: 4; - unsigned int assoc: 4; - unsigned int res: 2; - unsigned int size_encoded: 14; - }; - unsigned int val; -}; - -enum { - SAMPLES = 8, - MIN_CHANGE = 5, -}; - -enum spectre_v2_user_mitigation { - SPECTRE_V2_USER_NONE = 0, - SPECTRE_V2_USER_STRICT = 1, - SPECTRE_V2_USER_STRICT_PREFERRED = 2, - SPECTRE_V2_USER_PRCTL = 3, - SPECTRE_V2_USER_SECCOMP = 4, -}; - -enum ssb_mitigation { - SPEC_STORE_BYPASS_NONE = 0, - SPEC_STORE_BYPASS_DISABLE = 1, - SPEC_STORE_BYPASS_PRCTL = 2, - SPEC_STORE_BYPASS_SECCOMP = 3, -}; - -enum l1tf_mitigations { - L1TF_MITIGATION_OFF = 0, - L1TF_MITIGATION_AUTO = 1, - L1TF_MITIGATION_FLUSH_NOWARN = 2, - L1TF_MITIGATION_FLUSH = 3, - L1TF_MITIGATION_FLUSH_NOSMT = 4, - L1TF_MITIGATION_FULL = 5, - L1TF_MITIGATION_FULL_FORCE = 6, -}; - -enum mds_mitigations { - MDS_MITIGATION_OFF = 0, - MDS_MITIGATION_AUTO = 1, - MDS_MITIGATION_FULL = 2, - MDS_MITIGATION_VMWERV = 3, -}; - -enum smt_mitigations { - SMT_MITIGATIONS_OFF = 0, - SMT_MITIGATIONS_AUTO = 1, - SMT_MITIGATIONS_ON = 2, -}; - -enum vmx_l1d_flush_state { - VMENTER_L1D_FLUSH_AUTO = 0, - VMENTER_L1D_FLUSH_NEVER = 1, - VMENTER_L1D_FLUSH_COND = 2, - VMENTER_L1D_FLUSH_ALWAYS = 3, - VMENTER_L1D_FLUSH_EPT_DISABLED = 4, - VMENTER_L1D_FLUSH_NOT_REQUIRED = 5, -}; - -enum taa_mitigations { - TAA_MITIGATION_OFF = 0, - TAA_MITIGATION_AUTO = 1, - TAA_MITIGATION_UCODE_NEEDED = 2, - TAA_MITIGATION_VERW = 3, - TAA_MITIGATION_TSX_DISABLED = 4, -}; - -enum mmio_mitigations { - MMIO_MITIGATION_OFF = 0, - MMIO_MITIGATION_AUTO = 1, - MMIO_MITIGATION_UCODE_NEEDED = 2, - MMIO_MITIGATION_VERW = 3, -}; - -enum rfds_mitigations { - RFDS_MITIGATION_OFF = 0, - RFDS_MITIGATION_AUTO = 1, - RFDS_MITIGATION_VERW = 2, - RFDS_MITIGATION_UCODE_NEEDED = 3, -}; - -enum srbds_mitigations { - SRBDS_MITIGATION_OFF = 0, - SRBDS_MITIGATION_AUTO = 1, - SRBDS_MITIGATION_UCODE_NEEDED = 2, - SRBDS_MITIGATION_FULL = 3, - SRBDS_MITIGATION_TSX_OFF = 4, - SRBDS_MITIGATION_HYPERVISOR = 5, -}; - -enum l1d_flush_mitigations { - L1D_FLUSH_OFF = 0, - L1D_FLUSH_ON = 1, -}; - -enum gds_mitigations { - GDS_MITIGATION_OFF = 0, - GDS_MITIGATION_AUTO = 1, - GDS_MITIGATION_UCODE_NEEDED = 2, - GDS_MITIGATION_FORCE = 3, - GDS_MITIGATION_FULL = 4, - GDS_MITIGATION_FULL_LOCKED = 5, - GDS_MITIGATION_HYPERVISOR = 6, -}; - -enum spectre_v1_mitigation { - SPECTRE_V1_MITIGATION_NONE = 0, - SPECTRE_V1_MITIGATION_AUTO = 1, -}; - -enum its_mitigation { - ITS_MITIGATION_OFF = 0, - ITS_MITIGATION_AUTO = 1, - ITS_MITIGATION_VMEXIT_ONLY = 2, - ITS_MITIGATION_ALIGNED_THUNKS = 3, - ITS_MITIGATION_RETPOLINE_STUFF = 4, -}; - -enum retbleed_mitigation { - RETBLEED_MITIGATION_NONE = 0, - RETBLEED_MITIGATION_AUTO = 1, - RETBLEED_MITIGATION_UNRET = 2, - RETBLEED_MITIGATION_IBPB = 3, - RETBLEED_MITIGATION_IBRS = 4, - RETBLEED_MITIGATION_EIBRS = 5, - RETBLEED_MITIGATION_STUFF = 6, -}; - -enum srso_mitigation { - SRSO_MITIGATION_NONE = 0, - SRSO_MITIGATION_AUTO = 1, - SRSO_MITIGATION_UCODE_NEEDED = 2, - SRSO_MITIGATION_SAFE_RET_UCODE_NEEDED = 3, - SRSO_MITIGATION_MICROCODE = 4, - SRSO_MITIGATION_NOSMT = 5, - SRSO_MITIGATION_SAFE_RET = 6, - SRSO_MITIGATION_IBPB = 7, - SRSO_MITIGATION_IBPB_ON_VMEXIT = 8, - SRSO_MITIGATION_BP_SPEC_REDUCE = 9, -}; - -enum tsa_mitigations { - TSA_MITIGATION_NONE = 0, - TSA_MITIGATION_AUTO = 1, - TSA_MITIGATION_UCODE_NEEDED = 2, - TSA_MITIGATION_USER_KERNEL = 3, - TSA_MITIGATION_VM = 4, - TSA_MITIGATION_FULL = 5, -}; - -enum spectre_v2_mitigation_cmd { - SPECTRE_V2_CMD_NONE = 0, - SPECTRE_V2_CMD_AUTO = 1, - SPECTRE_V2_CMD_FORCE = 2, - SPECTRE_V2_CMD_RETPOLINE = 3, - SPECTRE_V2_CMD_RETPOLINE_GENERIC = 4, - SPECTRE_V2_CMD_RETPOLINE_LFENCE = 5, - SPECTRE_V2_CMD_EIBRS = 6, - SPECTRE_V2_CMD_EIBRS_RETPOLINE = 7, - SPECTRE_V2_CMD_EIBRS_LFENCE = 8, - SPECTRE_V2_CMD_IBRS = 9, -}; - -enum spectre_v2_user_cmd { - SPECTRE_V2_USER_CMD_NONE = 0, - SPECTRE_V2_USER_CMD_AUTO = 1, - SPECTRE_V2_USER_CMD_FORCE = 2, - SPECTRE_V2_USER_CMD_PRCTL = 3, - SPECTRE_V2_USER_CMD_PRCTL_IBPB = 4, - SPECTRE_V2_USER_CMD_SECCOMP = 5, - SPECTRE_V2_USER_CMD_SECCOMP_IBPB = 6, -}; - -enum bhi_mitigations { - BHI_MITIGATION_OFF = 0, - BHI_MITIGATION_AUTO = 1, - BHI_MITIGATION_ON = 2, - BHI_MITIGATION_VMEXIT_ONLY = 3, -}; - -enum ssb_mitigation_cmd { - SPEC_STORE_BYPASS_CMD_NONE = 0, - SPEC_STORE_BYPASS_CMD_AUTO = 1, - SPEC_STORE_BYPASS_CMD_ON = 2, - SPEC_STORE_BYPASS_CMD_PRCTL = 3, - SPEC_STORE_BYPASS_CMD_SECCOMP = 4, -}; - -enum vmscape_mitigations { - VMSCAPE_MITIGATION_NONE = 0, - VMSCAPE_MITIGATION_AUTO = 1, - VMSCAPE_MITIGATION_IBPB_EXIT_TO_USER = 2, - VMSCAPE_MITIGATION_IBPB_ON_VMEXIT = 3, -}; - -enum energy_perf_value_index { - EPB_INDEX_PERFORMANCE = 0, - EPB_INDEX_BALANCE_PERFORMANCE = 1, - EPB_INDEX_NORMAL = 2, - EPB_INDEX_BALANCE_POWERSAVE = 3, - EPB_INDEX_POWERSAVE = 4, -}; - -enum severity_level { - MCE_NO_SEVERITY = 0, - MCE_DEFERRED_SEVERITY = 1, - MCE_UCNA_SEVERITY = 1, - MCE_KEEP_SEVERITY = 2, - MCE_SOME_SEVERITY = 3, - MCE_AO_SEVERITY = 4, - MCE_UC_SEVERITY = 5, - MCE_AR_SEVERITY = 6, - MCE_PANIC_SEVERITY = 7, -}; - -struct trace_event_raw_mce_record { - struct trace_entry ent; - u64 mcgcap; - u64 mcgstatus; - u64 status; - u64 addr; - u64 misc; - u64 synd; - u64 ipid; - u64 ip; - u64 tsc; - u64 ppin; - u64 walltime; - u32 cpu; - u32 cpuid; - u32 apicid; - u32 socketid; - u8 cs; - u8 bank; - u8 cpuvendor; - u32 microcode; - u32 __data_loc_v_data; - char __data[0]; -}; - -struct trace_event_data_offsets_mce_record { - u32 v_data; - const void *v_data_ptr_; -}; - -typedef void (*btf_trace_mce_record)(void *, struct mce_hw_err *); - -struct mce_bank_dev { - struct device_attribute attr; - char attrname[16]; - u8 bank; -}; - -struct mtrr_sentry { - __u64 base; - __u32 size; - __u32 type; -}; - -struct mtrr_gentry { - __u64 base; - __u32 size; - __u32 regnum; - __u32 type; - __u32 _pad; -}; - -struct mtrr_sentry32 { - compat_ulong_t base; - compat_uint_t size; - compat_uint_t type; -}; - -struct mtrr_gentry32 { - compat_ulong_t regnum; - compat_uint_t base; - compat_uint_t size; - compat_uint_t type; -}; - -struct fixed_range_block { - int base_msr; - int ranges; -}; - -struct cache_map { - u64 start; - u64 end; - u64 flags; - u64 type: 8; - u64 fixed: 1; -}; - -struct ucode_patch { - struct list_head plist; - void *data; - unsigned int size; - u32 patch_id; - u16 equiv_cpu; -}; - -struct equiv_cpu_entry { - u32 installed_cpu; - u32 fixed_errata_mask; - u32 fixed_errata_compare; - u16 equiv_cpu; - u16 res; -}; - -struct microcode_header_amd { - u32 data_code; - u32 patch_id; - u16 mc_patch_data_id; - u8 mc_patch_data_len; - u8 init_flag; - u32 mc_patch_data_checksum; - u32 nb_dev_id; - u32 sb_dev_id; - u16 processor_rev_id; - u8 nb_rev_id; - u8 sb_rev_id; - u8 bios_api_rev; - u8 reserved1[3]; - u32 match_reg[8]; -}; - -struct microcode_amd { - struct microcode_header_amd hdr; - unsigned int mpb[0]; -}; - -struct equiv_cpu_table { - unsigned int num_entries; - struct equiv_cpu_entry *entry; -}; - -union zen_patch_rev { - struct { - __u32 rev: 8; - __u32 stepping: 4; - __u32 model: 4; - __u32 __reserved: 4; - __u32 ext_model: 4; - __u32 ext_fam: 8; - }; - __u32 ucode_rev; -}; - -union cpuid_1_eax { - struct { - __u32 stepping: 4; - __u32 model: 4; - __u32 family: 4; - __u32 __reserved0: 4; - __u32 ext_model: 4; - __u32 ext_fam: 8; - __u32 __reserved1: 4; - }; - __u32 full; -}; - -struct cont_desc { - struct microcode_amd *mc; - u32 psize; - u8 *data; - size_t size; -}; - -struct patch_digest { - u32 patch_id; - u8 sha256[32]; -}; - -struct trace_event_raw_pseudo_lock_mem_latency { - struct trace_entry ent; - u32 latency; - char __data[0]; -}; - -struct trace_event_raw_pseudo_lock_l2 { - struct trace_entry ent; - u64 l2_hits; - u64 l2_miss; - char __data[0]; -}; - -struct trace_event_raw_pseudo_lock_l3 { - struct trace_entry ent; - u64 l3_hits; - u64 l3_miss; - char __data[0]; -}; - -struct trace_event_data_offsets_pseudo_lock_mem_latency {}; - -struct trace_event_data_offsets_pseudo_lock_l2 {}; - -struct trace_event_data_offsets_pseudo_lock_l3 {}; - -typedef void (*btf_trace_pseudo_lock_mem_latency)(void *, u32); - -typedef void (*btf_trace_pseudo_lock_l2)(void *, u64, u64); - -typedef void (*btf_trace_pseudo_lock_l3)(void *, u64, u64); - -struct residency_counts { - u64 miss_before; - u64 hits_before; - u64 miss_after; - u64 hits_after; -}; - -enum split_lock_detect_state { - sld_off = 0, - sld_warn = 1, - sld_fatal = 2, - sld_ratelimit = 3, -}; - -struct cstate_entry { - struct { - unsigned int eax; - unsigned int ecx; - } states[8]; -}; - -struct sched_domain_topology_level; - -typedef const struct cpumask * (*sched_domain_mask_f)(struct sched_domain_topology_level *, int); - -typedef int (*sched_domain_flags_f)(void); - -struct sd_data { - struct sched_domain **sd; - struct sched_domain_shared **sds; - struct sched_group **sg; - struct sched_group_capacity **sgc; -}; - -struct sched_domain_topology_level { - sched_domain_mask_f mask; - sched_domain_flags_f sd_flags; - int numa_level; - struct sd_data data; - char *name; -}; - -enum apic_intr_mode_id { - APIC_PIC = 0, - APIC_VIRTUAL_WIRE = 1, - APIC_VIRTUAL_WIRE_NO_CONFIG = 2, - APIC_SYMMETRIC_IO = 3, - APIC_SYMMETRIC_IO_NO_ROUTING = 4, -}; - -struct mwait_cpu_dead { - unsigned int control; - unsigned int status; -}; - -struct mpc_ioapic { - unsigned char type; - unsigned char apicid; - unsigned char apicver; - unsigned char flags; - unsigned int apicaddr; -}; - -union IO_APIC_reg_00 { - u32 raw; - struct { - u32 __reserved_2: 14; - u32 LTS: 1; - u32 delivery_type: 1; - u32 __reserved_1: 8; - u32 ID: 8; - } bits; -}; - -union IO_APIC_reg_01 { - u32 raw; - struct { - u32 version: 8; - u32 __reserved_2: 7; - u32 PRQ: 1; - u32 entries: 8; - u32 __reserved_1: 8; - } bits; -}; - -union IO_APIC_reg_02 { - u32 raw; - struct { - u32 __reserved_2: 24; - u32 arbitration: 4; - u32 __reserved_1: 4; - } bits; -}; - -union IO_APIC_reg_03 { - u32 raw; - struct { - u32 boot_DT: 1; - u32 __reserved_1: 31; - } bits; -}; - -struct IO_APIC_route_entry { - union { - struct { - u64 vector: 8; - u64 delivery_mode: 3; - u64 dest_mode_logical: 1; - u64 delivery_status: 1; - u64 active_low: 1; - u64 irr: 1; - u64 is_level: 1; - u64 masked: 1; - u64 reserved_0: 15; - u64 reserved_1: 17; - u64 virt_destid_8_14: 7; - u64 destid_0_7: 8; - }; - struct { - u64 ir_shared_0: 8; - u64 ir_zero: 3; - u64 ir_index_15: 1; - u64 ir_shared_1: 5; - u64 ir_reserved_0: 31; - u64 ir_format: 1; - u64 ir_index_0_14: 15; - }; - struct { - u64 w1: 32; - u64 w2: 32; - }; - }; -}; - -struct irq_pin_list { - struct list_head list; - int apic; - int pin; -}; - -struct mp_chip_data { - struct list_head irq_2_pin; - struct IO_APIC_route_entry entry; - bool is_level; - bool active_low; - bool isa_irq; - u32 count; -}; - -struct mp_ioapic_gsi { - u32 gsi_base; - u32 gsi_end; -}; - -struct ioapic { - int nr_registers; - struct IO_APIC_route_entry *saved_registers; - struct mpc_ioapic mp_config; - struct mp_ioapic_gsi gsi_config; - struct ioapic_domain_cfg irqdomain_cfg; - struct irq_domain *irqdomain; - struct resource *iomem_res; -}; - -struct io_apic { - unsigned int index; - unsigned int unused[3]; - unsigned int data; - unsigned int unused2[11]; - unsigned int eoi; -}; - -struct dyn_arch_ftrace {}; - -enum { - FTRACE_FL_ENABLED = 2147483648, - FTRACE_FL_REGS = 1073741824, - FTRACE_FL_REGS_EN = 536870912, - FTRACE_FL_TRAMP = 268435456, - FTRACE_FL_TRAMP_EN = 134217728, - FTRACE_FL_IPMODIFY = 67108864, - FTRACE_FL_DISABLED = 33554432, - FTRACE_FL_DIRECT = 16777216, - FTRACE_FL_DIRECT_EN = 8388608, - FTRACE_FL_CALL_OPS = 4194304, - FTRACE_FL_CALL_OPS_EN = 2097152, - FTRACE_FL_TOUCHED = 1048576, - FTRACE_FL_MODIFIED = 524288, -}; - -struct dyn_ftrace { - long unsigned int ip; - long unsigned int flags; - struct dyn_arch_ftrace arch; -}; - -enum { - FTRACE_UPDATE_IGNORE = 0, - FTRACE_UPDATE_MAKE_CALL = 1, - FTRACE_UPDATE_MODIFY_CALL = 2, - FTRACE_UPDATE_MAKE_NOP = 3, -}; - -union ftrace_op_code_union { - char code[7]; - struct { - char op[3]; - int offset; - } __attribute__((packed)); -}; - -struct __arch_relative_insn { - u8 op; - s32 raddr; -} __attribute__((packed)); - -struct hpet_data { - long unsigned int hd_phys_address; - void *hd_address; - short unsigned int hd_nirqs; - unsigned int hd_state; - unsigned int hd_irq[32]; -}; - -typedef irqreturn_t (*rtc_irq_handler)(int, void *); - -enum hpet_mode { - HPET_MODE_UNUSED = 0, - HPET_MODE_LEGACY = 1, - HPET_MODE_CLOCKEVT = 2, - HPET_MODE_DEVICE = 3, -}; - -struct hpet_channel { - struct clock_event_device evt; - unsigned int num; - unsigned int cpu; - unsigned int irq; - unsigned int in_use; - enum hpet_mode mode; - unsigned int boot_cfg; - char name[10]; - long: 64; - long: 64; - long: 64; -}; - -struct hpet_base { - unsigned int nr_channels; - unsigned int nr_clockevents; - unsigned int boot_cfg; - struct hpet_channel *channels; -}; - -union hpet_lock { - struct { - arch_spinlock_t lock; - u32 value; - }; - u64 lockval; -}; - -enum cp_error_code { - CP_EC = 32767, - CP_RET = 1, - CP_IRET = 2, - CP_ENDBR = 3, - CP_RSTRORSSP = 4, - CP_SETSSBSY = 5, - CP_ENCL = 32768, -}; - -struct trace_event_raw_exceptions { - struct trace_entry ent; - long unsigned int address; - long unsigned int ip; - long unsigned int error_code; - char __data[0]; -}; - -struct trace_event_data_offsets_exceptions {}; - -typedef void (*btf_trace_page_fault_user)(void *, long unsigned int, struct pt_regs *, long unsigned int); - -typedef void (*btf_trace_page_fault_kernel)(void *, long unsigned int, struct pt_regs *, long unsigned int); - -enum tlb_flush_reason { - TLB_FLUSH_ON_TASK_SWITCH = 0, - TLB_REMOTE_SHOOTDOWN = 1, - TLB_LOCAL_SHOOTDOWN = 2, - TLB_LOCAL_MM_SHOOTDOWN = 3, - TLB_REMOTE_SEND_IPI = 4, - TLB_REMOTE_WRONG_CPU = 5, - NR_TLB_FLUSH_REASONS = 6, -}; - -struct tlb_state_shared { - bool is_lazy; -}; - -enum addr_stride { - PTE_STRIDE = 0, - PMD_STRIDE = 1, -}; - -struct new_asid { - unsigned int asid: 16; - unsigned int need_flush: 1; -}; - -struct addr_marker; - -struct pg_state { - struct ptdump_state ptdump; - int level; - pgprotval_t current_prot; - pgprotval_t effective_prot; - pgprotval_t prot_levels[5]; - long unsigned int start_address; - const struct addr_marker *marker; - long unsigned int lines; - bool to_dmesg; - bool check_wx; - long unsigned int wx_pages; - struct seq_file *seq; -}; - -struct addr_marker { - long unsigned int start_address; - const char *name; - long unsigned int max_lines; -}; - -enum address_markers_idx { - USER_SPACE_NR = 0, - KERNEL_SPACE_NR = 1, - LDT_NR = 2, - LOW_KERNEL_NR = 3, - VMALLOC_START_NR = 4, - VMEMMAP_START_NR = 5, - CPU_ENTRY_AREA_NR = 6, - ESPFIX_START_NR = 7, - EFI_END_NR = 8, - HIGH_KERNEL_NR = 9, - MODULES_VADDR_NR = 10, - MODULES_END_NR = 11, - FIXADDR_START_NR = 12, - END_OF_SPACE_NR = 13, -}; - -struct kaslr_memory_region { - long unsigned int *base; - long unsigned int *end; - long unsigned int size_tb; -}; - -struct efi_runtime_map_entry { - efi_memory_desc_t md; - struct kobject kobj; -}; - -struct map_attribute { - struct attribute attr; - ssize_t (*show)(struct efi_runtime_map_entry *, char *); -}; - -struct bpf_binary_header { - u32 size; - long: 0; - u8 image[0]; -}; - -typedef void (*bpf_jit_fill_hole_t)(void *, unsigned int); - -struct jit_context { - int cleanup_addr; - int tail_call_direct_label; - int tail_call_indirect_label; -}; - -struct x64_jit_data { - struct bpf_binary_header *rw_header; - struct bpf_binary_header *header; - int *addrs; - u8 *image; - int proglen; - struct jit_context ctx; -}; - -struct trace_event_raw_cpuhp_enter { - struct trace_entry ent; - unsigned int cpu; - int target; - int idx; - void *fun; - char __data[0]; -}; - -struct trace_event_raw_cpuhp_multi_enter { - struct trace_entry ent; - unsigned int cpu; - int target; - int idx; - void *fun; - char __data[0]; -}; - -struct trace_event_raw_cpuhp_exit { - struct trace_entry ent; - unsigned int cpu; - int state; - int idx; - int ret; - char __data[0]; -}; - -struct trace_event_data_offsets_cpuhp_enter {}; - -struct trace_event_data_offsets_cpuhp_multi_enter {}; - -struct trace_event_data_offsets_cpuhp_exit {}; - -typedef void (*btf_trace_cpuhp_enter)(void *, unsigned int, int, int, int (*)(unsigned int)); - -typedef void (*btf_trace_cpuhp_multi_enter)(void *, unsigned int, int, int, int (*)(unsigned int, struct hlist_node *), struct hlist_node *); - -typedef void (*btf_trace_cpuhp_exit)(void *, unsigned int, int, int, int); - -struct cpuhp_cpu_state { - enum cpuhp_state state; - enum cpuhp_state target; - enum cpuhp_state fail; - struct task_struct *thread; - bool should_run; - bool rollback; - bool single; - bool bringup; - struct hlist_node *node; - struct hlist_node *last; - enum cpuhp_state cb_state; - int result; - atomic_t ap_sync_state; - struct completion done_up; - struct completion done_down; -}; - -struct cpuhp_step { - const char *name; - union { - int (*single)(unsigned int); - int (*multi)(unsigned int, struct hlist_node *); - } startup; - union { - int (*single)(unsigned int); - int (*multi)(unsigned int, struct hlist_node *); - } teardown; - struct hlist_head list; - bool cant_stop; - bool multi_instance; -}; - -enum cpuhp_sync_state { - SYNC_STATE_DEAD = 0, - SYNC_STATE_KICKED = 1, - SYNC_STATE_SHOULD_DIE = 2, - SYNC_STATE_ALIVE = 3, - SYNC_STATE_SHOULD_ONLINE = 4, - SYNC_STATE_ONLINE = 5, -}; - -struct cpu_down_work { - unsigned int cpu; - enum cpuhp_state target; -}; - -enum cpu_mitigations { - CPU_MITIGATIONS_OFF = 0, - CPU_MITIGATIONS_AUTO = 1, - CPU_MITIGATIONS_AUTO_NOSMT = 2, -}; - -enum { - NO_USER_KERNEL = 0, - NO_USER_USER = 1, - NO_GUEST_HOST = 2, - NO_GUEST_GUEST = 3, - NO_CROSS_THREAD = 4, - NR_VECTOR_PARAMS = 5, -}; - -enum sysctl_writes_mode { - SYSCTL_WRITES_LEGACY = -1, - SYSCTL_WRITES_WARN = 0, - SYSCTL_WRITES_STRICT = 1, -}; - -struct do_proc_dointvec_minmax_conv_param { - int *min; - int *max; -}; - -struct do_proc_douintvec_minmax_conv_param { - unsigned int *min; - unsigned int *max; -}; - -typedef long unsigned int old_sigset_t; - -struct sigaltstack { - void *ss_sp; - int ss_flags; - __kernel_size_t ss_size; -}; - -typedef struct sigaltstack stack_t; - -typedef struct siginfo siginfo_t; - -enum siginfo_layout { - SIL_KILL = 0, - SIL_TIMER = 1, - SIL_POLL = 2, - SIL_FAULT = 3, - SIL_FAULT_TRAPNO = 4, - SIL_FAULT_MCEERR = 5, - SIL_FAULT_BNDERR = 6, - SIL_FAULT_PKUERR = 7, - SIL_FAULT_PERF_EVENT = 8, - SIL_CHLD = 9, - SIL_RT = 10, - SIL_SYS = 11, -}; - -typedef u32 compat_old_sigset_t; - -struct compat_sigaction { - compat_uptr_t sa_handler; - compat_ulong_t sa_flags; - compat_uptr_t sa_restorer; - compat_sigset_t sa_mask; -}; - -struct compat_old_sigaction { - compat_uptr_t sa_handler; - compat_old_sigset_t sa_mask; - compat_ulong_t sa_flags; - compat_uptr_t sa_restorer; -}; - -enum { - TRACE_SIGNAL_DELIVERED = 0, - TRACE_SIGNAL_IGNORED = 1, - TRACE_SIGNAL_ALREADY_PENDING = 2, - TRACE_SIGNAL_OVERFLOW_FAIL = 3, - TRACE_SIGNAL_LOSE_INFO = 4, -}; - -struct trace_event_raw_signal_generate { - struct trace_entry ent; - int sig; - int errno; - int code; - char comm[16]; - pid_t pid; - int group; - int result; - char __data[0]; -}; - -struct trace_event_raw_signal_deliver { - struct trace_entry ent; - int sig; - int errno; - int code; - long unsigned int sa_handler; - long unsigned int sa_flags; - char __data[0]; -}; - -struct trace_event_data_offsets_signal_generate {}; - -struct trace_event_data_offsets_signal_deliver {}; - -typedef void (*btf_trace_signal_generate)(void *, int, struct kernel_siginfo *, struct task_struct *, int, int); - -typedef void (*btf_trace_signal_deliver)(void *, int, struct kernel_siginfo *, struct k_sigaction *); - -enum sig_handler { - HANDLER_CURRENT = 0, - HANDLER_SIG_DFL = 1, - HANDLER_EXIT = 2, -}; - -struct param_attribute { - struct module_attribute mattr; - const struct kernel_param *param; -}; - -struct module_param_attrs { - unsigned int num; - struct attribute_group grp; - struct param_attribute attrs[0]; -}; - -struct kmalloced_param { - struct list_head list; - char val[0]; -}; - -struct trace_event_raw_notifier_info { - struct trace_entry ent; - void *cb; - char __data[0]; -}; - -struct trace_event_data_offsets_notifier_info {}; - -typedef void (*btf_trace_notifier_register)(void *, void *); - -typedef void (*btf_trace_notifier_unregister)(void *, void *); - -typedef void (*btf_trace_notifier_run)(void *, void *); - -struct smpboot_thread_data { - unsigned int cpu; - unsigned int status; - struct smp_hotplug_thread *ht; -}; - -enum { - HP_THREAD_NONE = 0, - HP_THREAD_ACTIVE = 1, - HP_THREAD_PARKED = 2, -}; - -enum { - MEMBARRIER_STATE_PRIVATE_EXPEDITED_READY = 1, - MEMBARRIER_STATE_PRIVATE_EXPEDITED = 2, - MEMBARRIER_STATE_GLOBAL_EXPEDITED_READY = 4, - MEMBARRIER_STATE_GLOBAL_EXPEDITED = 8, - MEMBARRIER_STATE_PRIVATE_EXPEDITED_SYNC_CORE_READY = 16, - MEMBARRIER_STATE_PRIVATE_EXPEDITED_SYNC_CORE = 32, - MEMBARRIER_STATE_PRIVATE_EXPEDITED_RSEQ_READY = 64, - MEMBARRIER_STATE_PRIVATE_EXPEDITED_RSEQ = 128, -}; - -enum { - MEMBARRIER_FLAG_SYNC_CORE = 1, - MEMBARRIER_FLAG_RSEQ = 2, -}; - -enum { - __SD_BALANCE_NEWIDLE = 0, - __SD_BALANCE_EXEC = 1, - __SD_BALANCE_FORK = 2, - __SD_BALANCE_WAKE = 3, - __SD_WAKE_AFFINE = 4, - __SD_ASYM_CPUCAPACITY = 5, - __SD_ASYM_CPUCAPACITY_FULL = 6, - __SD_SHARE_CPUCAPACITY = 7, - __SD_CLUSTER = 8, - __SD_SHARE_LLC = 9, - __SD_SERIALIZE = 10, - __SD_ASYM_PACKING = 11, - __SD_PREFER_SIBLING = 12, - __SD_NUMA = 13, - __SD_FLAG_CNT = 14, -}; - -struct sd_flag_debug { - unsigned int meta_flags; - char *name; -}; - -enum membarrier_cmd { - MEMBARRIER_CMD_QUERY = 0, - MEMBARRIER_CMD_GLOBAL = 1, - MEMBARRIER_CMD_GLOBAL_EXPEDITED = 2, - MEMBARRIER_CMD_REGISTER_GLOBAL_EXPEDITED = 4, - MEMBARRIER_CMD_PRIVATE_EXPEDITED = 8, - MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED = 16, - MEMBARRIER_CMD_PRIVATE_EXPEDITED_SYNC_CORE = 32, - MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_SYNC_CORE = 64, - MEMBARRIER_CMD_PRIVATE_EXPEDITED_RSEQ = 128, - MEMBARRIER_CMD_REGISTER_PRIVATE_EXPEDITED_RSEQ = 256, - MEMBARRIER_CMD_GET_REGISTRATIONS = 512, - MEMBARRIER_CMD_SHARED = 1, -}; - -enum membarrier_cmd_flag { - MEMBARRIER_CMD_FLAG_CPU = 1, -}; - -struct psi_window { - u64 size; - u64 start_time; - u64 start_value; - u64 prev_growth; -}; - -struct psi_trigger { - enum psi_states state; - u64 threshold; - struct list_head node; - struct psi_group *group; - wait_queue_head_t event_wait; - struct kernfs_open_file *of; - int event; - struct psi_window win; - u64 last_event_time; - bool pending_event; - enum psi_aggregators aggregator; -}; - -struct sched_clock_data { - u64 tick_raw; - u64 tick_gtod; - u64 clock; -}; - -enum cpuacct_stat_index { - CPUACCT_STAT_USER = 0, - CPUACCT_STAT_SYSTEM = 1, - CPUACCT_STAT_NSTATS = 2, -}; - -struct cpuacct { - struct cgroup_subsys_state css; - u64 *cpuusage; - struct kernel_cpustat *cpustat; -}; - -struct sugov_tunables { - struct gov_attr_set attr_set; - unsigned int rate_limit_us; -}; - -struct sugov_policy { - struct cpufreq_policy *policy; - struct sugov_tunables *tunables; - struct list_head tunables_hook; - raw_spinlock_t update_lock; - u64 last_freq_update_time; - s64 freq_update_delay_ns; - unsigned int next_freq; - unsigned int cached_raw_freq; - struct irq_work irq_work; - struct kthread_work work; - struct mutex work_lock; - struct kthread_worker worker; - struct task_struct *thread; - bool work_in_progress; - bool limits_changed; - bool need_freq_update; -}; - -struct sugov_cpu { - struct update_util_data update_util; - struct sugov_policy *sg_policy; - unsigned int cpu; - bool iowait_boost_pending; - unsigned int iowait_boost; - u64 last_update; - long unsigned int util; - long unsigned int bw_min; - long unsigned int saved_idle_calls; -}; - -enum dl_param { - DL_RUNTIME = 0, - DL_PERIOD = 1, -}; - -struct s_data { - struct sched_domain **sd; - struct root_domain *rd; -}; - -enum s_alloc { - sa_rootdomain = 0, - sa_sd = 1, - sa_sd_storage = 2, - sa_none = 3, -}; - -struct __cmp_key { - const struct cpumask *cpus; - struct cpumask ***masks; - int node; - int cpu; - int w; -}; - -struct sched_core_cookie { - refcount_t refcnt; -}; - -enum hk_flags { - HK_FLAG_DOMAIN = 1, - HK_FLAG_MANAGED_IRQ = 2, - HK_FLAG_KERNEL_NOISE = 4, -}; - -struct housekeeping { - cpumask_var_t cpumasks[3]; - long unsigned int flags; -}; - -struct semaphore_waiter { - struct list_head list; - struct task_struct *task; - bool up; -}; - -enum vcpu_state { - VCPU_RUNNING = 0, - VCPU_HALTED = 1, - VCPU_HASHED = 2, -}; - -struct pv_node { - struct mcs_spinlock mcs; - int cpu; - u8 state; -}; - -struct pv_hash_entry { - struct qspinlock *lock; - struct pv_node *node; -}; - -struct suspend_stats { - unsigned int step_failures[8]; - unsigned int success; - unsigned int fail; - int last_failed_dev; - char failed_devs[80]; - int last_failed_errno; - int errno[2]; - int last_failed_step; - u64 last_hw_sleep; - u64 total_hw_sleep; - u64 max_hw_sleep; - enum suspend_stat_step failed_steps[2]; -}; - -struct pbe { - void *address; - void *orig_address; - struct pbe *next; -}; - -struct swsusp_info { - struct new_utsname uts; - u32 version_code; - long unsigned int num_physpages; - int cpus; - long unsigned int image_pages; - long unsigned int pages; - long unsigned int size; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct linked_page { - struct linked_page *next; - char data[4088]; -}; - -struct chain_allocator { - struct linked_page *chain; - unsigned int used_space; - gfp_t gfp_mask; - int safe_needed; -}; - -struct rtree_node { - struct list_head list; - long unsigned int *data; -}; - -struct mem_zone_bm_rtree { - struct list_head list; - struct list_head nodes; - struct list_head leaves; - long unsigned int start_pfn; - long unsigned int end_pfn; - struct rtree_node *rtree; - int levels; - unsigned int blocks; -}; - -struct bm_position { - struct mem_zone_bm_rtree *zone; - struct rtree_node *node; - long unsigned int node_pfn; - long unsigned int cur_pfn; - int node_bit; -}; - -struct memory_bitmap { - struct list_head zones; - struct linked_page *p_list; - struct bm_position cur; -}; - -struct mem_extent { - struct list_head hook; - long unsigned int start; - long unsigned int end; -}; - -struct nosave_region { - struct list_head list; - long unsigned int start_pfn; - long unsigned int end_pfn; -}; - -struct trace_event_raw_console { - struct trace_entry ent; - u32 __data_loc_msg; - char __data[0]; -}; - -struct trace_event_data_offsets_console { - u32 msg; - const void *msg_ptr_; -}; - -typedef void (*btf_trace_console)(void *, const char *, size_t); - -struct console_cmdline { - char name[16]; - int index; - char devname[32]; - bool user_specified; - char *options; -}; - -enum printk_info_flags { - LOG_FORCE_CON = 1, - LOG_NEWLINE = 2, - LOG_CONT = 8, -}; - -enum devkmsg_log_bits { - __DEVKMSG_LOG_BIT_ON = 0, - __DEVKMSG_LOG_BIT_OFF = 1, - __DEVKMSG_LOG_BIT_LOCK = 2, -}; - -enum devkmsg_log_masks { - DEVKMSG_LOG_MASK_ON = 1, - DEVKMSG_LOG_MASK_OFF = 2, - DEVKMSG_LOG_MASK_LOCK = 4, -}; - -enum con_msg_format_flags { - MSG_FORMAT_DEFAULT = 0, - MSG_FORMAT_SYSLOG = 1, -}; - -struct latched_seq { - seqcount_latch_t latch; - u64 val[2]; -}; - -struct devkmsg_user { - atomic64_t seq; - struct ratelimit_state rs; - struct mutex lock; - struct printk_buffers pbufs; -}; - -enum { - IRQ_STARTUP_NORMAL = 0, - IRQ_STARTUP_MANAGED = 1, - IRQ_STARTUP_ABORT = 2, -}; - -struct irqchip_fwid { - struct fwnode_handle fwnode; - unsigned int type; - char *name; - phys_addr_t *pa; -}; - -enum { - GP_IDLE = 0, - GP_ENTER = 1, - GP_PASSED = 2, - GP_EXIT = 3, - GP_REPLAY = 4, -}; - -struct klp_find_arg { - const char *name; - long unsigned int addr; - long unsigned int count; - long unsigned int pos; -}; - -struct ptrace_sud_config { - __u64 mode; - __u64 selector; - __u64 offset; - __u64 len; -}; - -struct latch_tree_ops { - bool (*less)(struct latch_tree_node *, struct latch_tree_node *); - int (*comp)(void *, struct latch_tree_node *); -}; - -typedef __kernel_long_t __kernel_suseconds_t; - -typedef __kernel_suseconds_t suseconds_t; - -enum timekeeper_ids { - TIMEKEEPER_CORE = 0, - TIMEKEEPER_AUX_FIRST = 1, - TIMEKEEPER_AUX_LAST = 8, - TIMEKEEPERS_MAX = 9, -}; - -struct ntp_data { - long unsigned int tick_usec; - u64 tick_length; - u64 tick_length_base; - int time_state; - int time_status; - s64 time_offset; - long int time_constant; - long int time_maxerror; - long int time_esterror; - s64 time_freq; - time64_t time_reftime; - long int time_adjust; - s64 ntp_tick_adj; - time64_t ntp_next_leap_sec; -}; - -struct trace_event_raw_alarmtimer_suspend { - struct trace_entry ent; - s64 expires; - unsigned char alarm_type; - char __data[0]; -}; - -struct trace_event_raw_alarm_class { - struct trace_entry ent; - void *alarm; - unsigned char alarm_type; - s64 expires; - s64 now; - char __data[0]; -}; - -struct trace_event_data_offsets_alarmtimer_suspend {}; - -struct trace_event_data_offsets_alarm_class {}; - -typedef void (*btf_trace_alarmtimer_suspend)(void *, ktime_t, int); - -typedef void (*btf_trace_alarmtimer_fired)(void *, struct alarm *, ktime_t); - -typedef void (*btf_trace_alarmtimer_start)(void *, struct alarm *, ktime_t); - -typedef void (*btf_trace_alarmtimer_cancel)(void *, struct alarm *, ktime_t); - -struct alarm_base { - spinlock_t lock; - struct timerqueue_head timerqueue; - ktime_t (*get_ktime)(void); - void (*get_timespec)(struct timespec64 *); - clockid_t base_clockid; -}; - -struct ce_unbind { - struct clock_event_device *ce; - int res; -}; - -struct tmigr_event { - struct timerqueue_node nextevt; - unsigned int cpu; - bool ignore; -}; - -struct tmigr_group { - raw_spinlock_t lock; - struct tmigr_group *parent; - struct tmigr_event groupevt; - u64 next_expiry; - struct timerqueue_head events; - atomic_t migr_state; - unsigned int level; - int numa_node; - unsigned int num_children; - u8 groupmask; - struct list_head list; -}; - -struct tmigr_cpu { - raw_spinlock_t lock; - bool online; - bool idle; - bool remote; - struct tmigr_group *tmgroup; - u8 groupmask; - u64 wakeup; - struct tmigr_event cpuevt; -}; - -union tmigr_state { - u32 state; - struct { - u8 active; - u8 migrator; - u16 seq; - }; -}; - -struct trace_event_raw_tmigr_group_set { - struct trace_entry ent; - void *group; - unsigned int lvl; - unsigned int numa_node; - char __data[0]; -}; - -struct trace_event_raw_tmigr_connect_child_parent { - struct trace_entry ent; - void *child; - void *parent; - unsigned int lvl; - unsigned int numa_node; - unsigned int num_children; - u32 groupmask; - char __data[0]; -}; - -struct trace_event_raw_tmigr_connect_cpu_parent { - struct trace_entry ent; - void *parent; - unsigned int cpu; - unsigned int lvl; - unsigned int numa_node; - unsigned int num_children; - u32 groupmask; - char __data[0]; -}; - -struct trace_event_raw_tmigr_group_and_cpu { - struct trace_entry ent; - void *group; - void *parent; - unsigned int lvl; - unsigned int numa_node; - u32 childmask; - u8 active; - u8 migrator; - char __data[0]; -}; - -struct trace_event_raw_tmigr_cpugroup { - struct trace_entry ent; - u64 wakeup; - void *parent; - unsigned int cpu; - char __data[0]; -}; - -struct trace_event_raw_tmigr_idle { - struct trace_entry ent; - u64 nextevt; - u64 wakeup; - void *parent; - unsigned int cpu; - char __data[0]; -}; - -struct trace_event_raw_tmigr_update_events { - struct trace_entry ent; - void *child; - void *group; - u64 nextevt; - u64 group_next_expiry; - u64 child_evt_expiry; - unsigned int group_lvl; - unsigned int child_evtcpu; - u8 child_active; - u8 group_active; - char __data[0]; -}; - -struct trace_event_raw_tmigr_handle_remote { - struct trace_entry ent; - void *group; - unsigned int lvl; - char __data[0]; -}; - -struct trace_event_data_offsets_tmigr_group_set {}; - -struct trace_event_data_offsets_tmigr_connect_child_parent {}; - -struct trace_event_data_offsets_tmigr_connect_cpu_parent {}; - -struct trace_event_data_offsets_tmigr_group_and_cpu {}; - -struct trace_event_data_offsets_tmigr_cpugroup {}; - -struct trace_event_data_offsets_tmigr_idle {}; - -struct trace_event_data_offsets_tmigr_update_events {}; - -struct trace_event_data_offsets_tmigr_handle_remote {}; - -typedef void (*btf_trace_tmigr_group_set)(void *, struct tmigr_group *); - -typedef void (*btf_trace_tmigr_connect_child_parent)(void *, struct tmigr_group *); - -typedef void (*btf_trace_tmigr_connect_cpu_parent)(void *, struct tmigr_cpu *); - -typedef void (*btf_trace_tmigr_group_set_cpu_inactive)(void *, struct tmigr_group *, union tmigr_state, u32); - -typedef void (*btf_trace_tmigr_group_set_cpu_active)(void *, struct tmigr_group *, union tmigr_state, u32); - -typedef void (*btf_trace_tmigr_cpu_new_timer)(void *, struct tmigr_cpu *); - -typedef void (*btf_trace_tmigr_cpu_active)(void *, struct tmigr_cpu *); - -typedef void (*btf_trace_tmigr_cpu_online)(void *, struct tmigr_cpu *); - -typedef void (*btf_trace_tmigr_cpu_offline)(void *, struct tmigr_cpu *); - -typedef void (*btf_trace_tmigr_handle_remote_cpu)(void *, struct tmigr_cpu *); - -typedef void (*btf_trace_tmigr_cpu_idle)(void *, struct tmigr_cpu *, u64); - -typedef void (*btf_trace_tmigr_cpu_new_timer_idle)(void *, struct tmigr_cpu *, u64); - -typedef void (*btf_trace_tmigr_update_events)(void *, struct tmigr_group *, struct tmigr_group *, union tmigr_state, union tmigr_state, u64); - -typedef void (*btf_trace_tmigr_handle_remote)(void *, struct tmigr_group *); - -struct tmigr_walk { - u64 nextexp; - u64 firstexp; - struct tmigr_event *evt; - u8 childmask; - bool remote; - long unsigned int basej; - u64 now; - bool check; - bool tmc_active; -}; - -typedef bool (*up_f)(struct tmigr_group *, struct tmigr_group *, struct tmigr_walk *); - -enum { - Q_REQUEUE_PI_NONE = 0, - Q_REQUEUE_PI_IGNORE = 1, - Q_REQUEUE_PI_IN_PROGRESS = 2, - Q_REQUEUE_PI_WAIT = 3, - Q_REQUEUE_PI_DONE = 4, - Q_REQUEUE_PI_LOCKED = 5, -}; - -struct compat_kexec_segment { - compat_uptr_t buf; - compat_size_t bufsz; - compat_ulong_t mem; - compat_size_t memsz; -}; - -struct cgroup_fs_context { - struct kernfs_fs_context kfc; - struct cgroup_root *root; - struct cgroup_namespace *ns; - unsigned int flags; - bool cpuset_clone_children; - bool none; - bool all_ss; - u16 subsys_mask; - char *name; - char *release_agent; -}; - -struct cgroup_pidlist; - -struct cgroup_file_ctx { - struct cgroup_namespace *ns; - struct { - void *trigger; - } psi; - struct { - bool started; - struct css_task_iter iter; - } procs; - struct { - struct cgroup_pidlist *pidlist; - } procs1; - struct cgroup_of_peak peak; -}; - -struct cgrp_cset_link { - struct cgroup *cgrp; - struct css_set *cset; - struct list_head cset_link; - struct list_head cgrp_link; -}; - -struct cgroup_mgctx { - struct list_head preloaded_src_csets; - struct list_head preloaded_dst_csets; - struct cgroup_taskset tset; - u16 ss_mask; -}; - -struct trace_event_raw_cgroup_root { - struct trace_entry ent; - int root; - u16 ss_mask; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_cgroup { - struct trace_entry ent; - int root; - int level; - u64 id; - u32 __data_loc_path; - char __data[0]; -}; - -struct trace_event_raw_cgroup_migrate { - struct trace_entry ent; - int dst_root; - int dst_level; - u64 dst_id; - int pid; - u32 __data_loc_dst_path; - u32 __data_loc_comm; - char __data[0]; -}; - -struct trace_event_raw_cgroup_event { - struct trace_entry ent; - int root; - int level; - u64 id; - u32 __data_loc_path; - int val; - char __data[0]; -}; - -struct trace_event_raw_cgroup_rstat { - struct trace_entry ent; - int root; - int level; - u64 id; - int cpu; - bool contended; - char __data[0]; -}; - -struct trace_event_data_offsets_cgroup_root { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_cgroup { - u32 path; - const void *path_ptr_; -}; - -struct trace_event_data_offsets_cgroup_migrate { - u32 dst_path; - const void *dst_path_ptr_; - u32 comm; - const void *comm_ptr_; -}; - -struct trace_event_data_offsets_cgroup_event { - u32 path; - const void *path_ptr_; -}; - -struct trace_event_data_offsets_cgroup_rstat {}; - -typedef void (*btf_trace_cgroup_setup_root)(void *, struct cgroup_root *); - -typedef void (*btf_trace_cgroup_destroy_root)(void *, struct cgroup_root *); - -typedef void (*btf_trace_cgroup_remount)(void *, struct cgroup_root *); - -typedef void (*btf_trace_cgroup_mkdir)(void *, struct cgroup *, const char *); - -typedef void (*btf_trace_cgroup_rmdir)(void *, struct cgroup *, const char *); - -typedef void (*btf_trace_cgroup_release)(void *, struct cgroup *, const char *); - -typedef void (*btf_trace_cgroup_rename)(void *, struct cgroup *, const char *); - -typedef void (*btf_trace_cgroup_freeze)(void *, struct cgroup *, const char *); - -typedef void (*btf_trace_cgroup_unfreeze)(void *, struct cgroup *, const char *); - -typedef void (*btf_trace_cgroup_attach_task)(void *, struct cgroup *, const char *, struct task_struct *, bool); - -typedef void (*btf_trace_cgroup_transfer_tasks)(void *, struct cgroup *, const char *, struct task_struct *, bool); - -typedef void (*btf_trace_cgroup_notify_populated)(void *, struct cgroup *, const char *, int); - -typedef void (*btf_trace_cgroup_notify_frozen)(void *, struct cgroup *, const char *, int); - -typedef void (*btf_trace_cgroup_rstat_lock_contended)(void *, struct cgroup *, int, bool); - -typedef void (*btf_trace_cgroup_rstat_locked)(void *, struct cgroup *, int, bool); - -typedef void (*btf_trace_cgroup_rstat_unlock)(void *, struct cgroup *, int, bool); - -enum cgroup_opt_features { - OPT_FEATURE_PRESSURE = 0, - OPT_FEATURE_COUNT = 1, -}; - -enum cgroup2_param { - Opt_nsdelegate = 0, - Opt_favordynmods = 1, - Opt_memory_localevents = 2, - Opt_memory_recursiveprot = 3, - Opt_memory_hugetlb_accounting = 4, - Opt_pids_localevents = 5, - nr__cgroup2_params = 6, -}; - -struct idmap_key { - bool map_up; - u32 id; - u32 count; -}; - -struct cpu_vfs_cap_data { - __u32 magic_etc; - kuid_t rootid; - kernel_cap_t permitted; - kernel_cap_t inheritable; -}; - -enum audit_nfcfgop { - AUDIT_XT_OP_REGISTER = 0, - AUDIT_XT_OP_REPLACE = 1, - AUDIT_XT_OP_UNREGISTER = 2, - AUDIT_NFT_OP_TABLE_REGISTER = 3, - AUDIT_NFT_OP_TABLE_UNREGISTER = 4, - AUDIT_NFT_OP_CHAIN_REGISTER = 5, - AUDIT_NFT_OP_CHAIN_UNREGISTER = 6, - AUDIT_NFT_OP_RULE_REGISTER = 7, - AUDIT_NFT_OP_RULE_UNREGISTER = 8, - AUDIT_NFT_OP_SET_REGISTER = 9, - AUDIT_NFT_OP_SET_UNREGISTER = 10, - AUDIT_NFT_OP_SETELEM_REGISTER = 11, - AUDIT_NFT_OP_SETELEM_UNREGISTER = 12, - AUDIT_NFT_OP_GEN_REGISTER = 13, - AUDIT_NFT_OP_OBJ_REGISTER = 14, - AUDIT_NFT_OP_OBJ_UNREGISTER = 15, - AUDIT_NFT_OP_OBJ_RESET = 16, - AUDIT_NFT_OP_FLOWTABLE_REGISTER = 17, - AUDIT_NFT_OP_FLOWTABLE_UNREGISTER = 18, - AUDIT_NFT_OP_SETELEM_RESET = 19, - AUDIT_NFT_OP_RULE_RESET = 20, - AUDIT_NFT_OP_INVALID = 21, -}; - -struct audit_aux_data { - struct audit_aux_data *next; - int type; -}; - -struct audit_chunk; - -struct audit_tree_refs { - struct audit_tree_refs *next; - struct audit_chunk *c[31]; -}; - -struct audit_aux_data_pids { - struct audit_aux_data d; - pid_t target_pid[16]; - kuid_t target_auid[16]; - kuid_t target_uid[16]; - unsigned int target_sessionid[16]; - struct lsm_prop target_ref[16]; - char target_comm[256]; - int pid_count; -}; - -struct audit_aux_data_bprm_fcaps { - struct audit_aux_data d; - struct audit_cap_data fcap; - unsigned int fcap_ver; - struct audit_cap_data old_pcap; - struct audit_cap_data new_pcap; -}; - -struct audit_nfcfgop_tab { - enum audit_nfcfgop op; - const char *s; -}; - -struct audit_fsnotify_mark { - dev_t dev; - long unsigned int ino; - char *path; - struct fsnotify_mark mark; - struct audit_krule *rule; -}; - -typedef enum { - KDB_ENABLE_ALL = 1, - KDB_ENABLE_MEM_READ = 2, - KDB_ENABLE_MEM_WRITE = 4, - KDB_ENABLE_REG_READ = 8, - KDB_ENABLE_REG_WRITE = 16, - KDB_ENABLE_INSPECT = 32, - KDB_ENABLE_FLOW_CTRL = 64, - KDB_ENABLE_SIGNAL = 128, - KDB_ENABLE_REBOOT = 256, - KDB_ENABLE_ALWAYS_SAFE = 512, - KDB_ENABLE_MASK = 1023, - KDB_ENABLE_ALL_NO_ARGS = 1024, - KDB_ENABLE_MEM_READ_NO_ARGS = 2048, - KDB_ENABLE_MEM_WRITE_NO_ARGS = 4096, - KDB_ENABLE_REG_READ_NO_ARGS = 8192, - KDB_ENABLE_REG_WRITE_NO_ARGS = 16384, - KDB_ENABLE_INSPECT_NO_ARGS = 32768, - KDB_ENABLE_FLOW_CTRL_NO_ARGS = 65536, - KDB_ENABLE_SIGNAL_NO_ARGS = 131072, - KDB_ENABLE_REBOOT_NO_ARGS = 262144, - KDB_ENABLE_ALWAYS_SAFE_NO_ARGS = 524288, - KDB_ENABLE_MASK_NO_ARGS = 1047552, - KDB_REPEAT_NO_ARGS = 1073741824, - KDB_REPEAT_WITH_ARGS = 2147483648, -} kdb_cmdflags_t; - -typedef int (*kdb_func_t)(int, const char **); - -struct _kdbtab { - char *name; - kdb_func_t func; - char *usage; - char *help; - short int minlen; - kdb_cmdflags_t flags; - struct list_head list_node; -}; - -typedef struct _kdbtab kdbtab_t; - -struct _kdb_bp { - long unsigned int bp_addr; - unsigned int bp_free: 1; - unsigned int bp_enabled: 1; - unsigned int bp_type: 4; - unsigned int bp_installed: 1; - unsigned int bp_delay: 1; - unsigned int bp_delayed: 1; - unsigned int bph_length; -}; - -typedef struct _kdb_bp kdb_bp_t; - -typedef enum { - KDB_REASON_ENTER = 1, - KDB_REASON_ENTER_SLAVE = 2, - KDB_REASON_BREAK = 3, - KDB_REASON_DEBUG = 4, - KDB_REASON_OOPS = 5, - KDB_REASON_SWITCH = 6, - KDB_REASON_KEYBOARD = 7, - KDB_REASON_NMI = 8, - KDB_REASON_RECURSE = 9, - KDB_REASON_SSTEP = 10, - KDB_REASON_SYSTEM_NMI = 11, -} kdb_reason_t; - -typedef enum { - KDB_DB_BPT = 0, - KDB_DB_SS = 1, - KDB_DB_SSBPT = 2, - KDB_DB_NOBPT = 3, -} kdb_dbtrap_t; - -enum { - TASKSTATS_TYPE_UNSPEC = 0, - TASKSTATS_TYPE_PID = 1, - TASKSTATS_TYPE_TGID = 2, - TASKSTATS_TYPE_STATS = 3, - TASKSTATS_TYPE_AGGR_PID = 4, - TASKSTATS_TYPE_AGGR_TGID = 5, - TASKSTATS_TYPE_NULL = 6, - __TASKSTATS_TYPE_MAX = 7, -}; - -enum { - TASKSTATS_CMD_ATTR_UNSPEC = 0, - TASKSTATS_CMD_ATTR_PID = 1, - TASKSTATS_CMD_ATTR_TGID = 2, - TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 3, - TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 4, - __TASKSTATS_CMD_ATTR_MAX = 5, -}; - -struct cgroupstats { - __u64 nr_sleeping; - __u64 nr_running; - __u64 nr_stopped; - __u64 nr_uninterruptible; - __u64 nr_io_wait; -}; - -enum { - CGROUPSTATS_CMD_UNSPEC = 3, - CGROUPSTATS_CMD_GET = 4, - CGROUPSTATS_CMD_NEW = 5, - __CGROUPSTATS_CMD_MAX = 6, -}; - -enum { - CGROUPSTATS_TYPE_UNSPEC = 0, - CGROUPSTATS_TYPE_CGROUP_STATS = 1, - __CGROUPSTATS_TYPE_MAX = 2, -}; - -enum { - CGROUPSTATS_CMD_ATTR_UNSPEC = 0, - CGROUPSTATS_CMD_ATTR_FD = 1, - __CGROUPSTATS_CMD_ATTR_MAX = 2, -}; - -struct listener { - struct list_head list; - pid_t pid; - char valid; -}; - -struct listener_list { - struct rw_semaphore sem; - struct list_head list; -}; - -enum actions { - REGISTER = 0, - DEREGISTER = 1, - CPU_DONT_CARE = 2, -}; - -struct ctx_switch_entry { - struct trace_entry ent; - unsigned int prev_pid; - unsigned int next_pid; - unsigned int next_cpu; - unsigned char prev_prio; - unsigned char prev_state; - unsigned char next_prio; - unsigned char next_state; -}; - -struct trace_mark { - long long unsigned int val; - char sym; -}; - -struct tracer_stat { - const char *name; - void * (*stat_start)(struct tracer_stat *); - void * (*stat_next)(void *, int); - cmp_func_t stat_cmp; - int (*stat_show)(struct seq_file *, void *); - void (*stat_release)(void *); - int (*stat_headers)(struct seq_file *); -}; - -struct stat_node { - struct rb_node node; - void *stat; -}; - -struct stat_session { - struct list_head session_list; - struct tracer_stat *ts; - struct rb_root stat_root; - struct mutex stat_mutex; - struct dentry *file; -}; - -enum { - TRACE_FUNC_NO_OPTS = 0, - TRACE_FUNC_OPT_STACK = 1, - TRACE_FUNC_OPT_NO_REPEATS = 2, - TRACE_FUNC_OPT_ARGS = 4, - TRACE_FUNC_OPT_HIGHEST_BIT = 8, -}; - -enum { - FTRACE_ITER_FILTER = 1, - FTRACE_ITER_NOTRACE = 2, - FTRACE_ITER_PRINTALL = 4, - FTRACE_ITER_DO_PROBES = 8, - FTRACE_ITER_PROBE = 16, - FTRACE_ITER_MOD = 32, - FTRACE_ITER_ENABLED = 64, - FTRACE_ITER_TOUCHED = 128, - FTRACE_ITER_ADDRS = 256, -}; - -enum { - TRACE_PIDS = 1, - TRACE_NO_PIDS = 2, -}; - -struct module_string { - struct list_head next; - struct module *module; - char *str; -}; - -struct event_mod_load { - struct list_head list; - char *module; - char *match; - char *system; - char *event; -}; - -enum set_event_iter_type { - SET_EVENT_FILE = 0, - SET_EVENT_MOD = 1, -}; - -struct set_event_iter { - enum set_event_iter_type type; - union { - struct trace_event_file *file; - struct event_mod_load *event_mod; - }; -}; - -enum { - FORMAT_HEADER = 1, - FORMAT_FIELD_SEPERATOR = 2, - FORMAT_PRINTFMT = 3, -}; - -struct boot_triggers { - const char *event; - char *trigger; -}; - -struct event_probe_data { - struct trace_event_file *file; - long unsigned int count; - int ref; - bool enable; -}; - -struct filter_pred; - -struct prog_entry { - int target; - int when_to_branch; - struct filter_pred *pred; -}; - -struct regex; - -typedef int (*regex_match_func)(char *, struct regex *, int); - -struct regex { - char pattern[256]; - int len; - int field_len; - regex_match_func match; -}; - -enum regex_type { - MATCH_FULL = 0, - MATCH_FRONT_ONLY = 1, - MATCH_MIDDLE_ONLY = 2, - MATCH_END_ONLY = 3, - MATCH_GLOB = 4, - MATCH_INDEX = 5, -}; - -enum filter_op_ids { - OP_GLOB = 0, - OP_NE = 1, - OP_EQ = 2, - OP_LE = 3, - OP_LT = 4, - OP_GE = 5, - OP_GT = 6, - OP_BAND = 7, - OP_MAX = 8, -}; - -enum filter_pred_fn { - FILTER_PRED_FN_NOP = 0, - FILTER_PRED_FN_64 = 1, - FILTER_PRED_FN_64_CPUMASK = 2, - FILTER_PRED_FN_S64 = 3, - FILTER_PRED_FN_U64 = 4, - FILTER_PRED_FN_32 = 5, - FILTER_PRED_FN_32_CPUMASK = 6, - FILTER_PRED_FN_S32 = 7, - FILTER_PRED_FN_U32 = 8, - FILTER_PRED_FN_16 = 9, - FILTER_PRED_FN_16_CPUMASK = 10, - FILTER_PRED_FN_S16 = 11, - FILTER_PRED_FN_U16 = 12, - FILTER_PRED_FN_8 = 13, - FILTER_PRED_FN_8_CPUMASK = 14, - FILTER_PRED_FN_S8 = 15, - FILTER_PRED_FN_U8 = 16, - FILTER_PRED_FN_COMM = 17, - FILTER_PRED_FN_STRING = 18, - FILTER_PRED_FN_STRLOC = 19, - FILTER_PRED_FN_STRRELLOC = 20, - FILTER_PRED_FN_PCHAR_USER = 21, - FILTER_PRED_FN_PCHAR = 22, - FILTER_PRED_FN_CPU = 23, - FILTER_PRED_FN_CPU_CPUMASK = 24, - FILTER_PRED_FN_CPUMASK = 25, - FILTER_PRED_FN_CPUMASK_CPU = 26, - FILTER_PRED_FN_FUNCTION = 27, - FILTER_PRED_FN_ = 28, - FILTER_PRED_TEST_VISITED = 29, -}; - -struct filter_pred { - struct regex *regex; - struct cpumask *mask; - short unsigned int *ops; - struct ftrace_event_field *field; - u64 val; - u64 val2; - enum filter_pred_fn fn_num; - int offset; - int not; - int op; -}; - -enum { - FILT_ERR_NONE = 0, - FILT_ERR_INVALID_OP = 1, - FILT_ERR_TOO_MANY_OPEN = 2, - FILT_ERR_TOO_MANY_CLOSE = 3, - FILT_ERR_MISSING_QUOTE = 4, - FILT_ERR_MISSING_BRACE_OPEN = 5, - FILT_ERR_MISSING_BRACE_CLOSE = 6, - FILT_ERR_OPERAND_TOO_LONG = 7, - FILT_ERR_EXPECT_STRING = 8, - FILT_ERR_EXPECT_DIGIT = 9, - FILT_ERR_ILLEGAL_FIELD_OP = 10, - FILT_ERR_FIELD_NOT_FOUND = 11, - FILT_ERR_ILLEGAL_INTVAL = 12, - FILT_ERR_BAD_SUBSYS_FILTER = 13, - FILT_ERR_TOO_MANY_PREDS = 14, - FILT_ERR_INVALID_FILTER = 15, - FILT_ERR_INVALID_CPULIST = 16, - FILT_ERR_IP_FIELD_ONLY = 17, - FILT_ERR_INVALID_VALUE = 18, - FILT_ERR_NO_FUNCTION = 19, - FILT_ERR_ERRNO = 20, - FILT_ERR_NO_FILTER = 21, -}; - -struct filter_parse_error { - int lasterr; - int lasterr_pos; -}; - -typedef int (*parse_pred_fn)(const char *, void *, int, struct filter_parse_error *, struct filter_pred **); - -enum { - INVERT = 1, - PROCESS_AND = 2, - PROCESS_OR = 4, -}; - -struct ustring_buffer { - char buffer[1024]; -}; - -struct filter_list { - struct list_head list; - struct event_filter *filter; -}; - -struct filter_head { - struct list_head list; - union { - struct callback_head rcu; - struct rcu_work rwork; - }; -}; - -enum { - TOO_MANY_CLOSE = -1, - TOO_MANY_OPEN = -2, - MISSING_QUOTE = -3, -}; - -struct function_filter_data { - struct ftrace_ops *ops; - int first_filter; - int first_notrace; -}; - -struct trace_dynamic_info { - u16 offset; - u16 len; -}; - -struct synth_field_desc { - const char *type; - const char *name; -}; - -struct synth_trace_event; - -struct synth_event; - -struct synth_event_trace_state { - struct trace_event_buffer fbuffer; - struct synth_trace_event *entry; - struct trace_buffer *buffer; - struct synth_event *event; - unsigned int cur_field; - unsigned int n_u64; - bool disabled; - bool add_next; - bool add_name; -}; - -union trace_synth_field { - u8 as_u8; - u16 as_u16; - u32 as_u32; - u64 as_u64; - struct trace_dynamic_info as_dynamic; -}; - -struct synth_trace_event { - struct trace_entry ent; - union trace_synth_field fields[0]; -}; - -struct synth_field; - -struct synth_event { - struct dyn_event devent; - int ref; - char *name; - struct synth_field **fields; - unsigned int n_fields; - struct synth_field **dynamic_fields; - unsigned int n_dynamic_fields; - unsigned int n_u64; - struct trace_event_class class; - struct trace_event_call call; - struct tracepoint *tp; - struct module *mod; -}; - -typedef int (*dynevent_check_arg_fn_t)(void *); - -struct dynevent_arg { - const char *str; - char separator; -}; - -struct dynevent_arg_pair { - const char *lhs; - const char *rhs; - char operator; - char separator; -}; - -struct synth_field { - char *type; - char *name; - size_t size; - unsigned int offset; - unsigned int field_pos; - bool is_signed; - bool is_string; - bool is_dynamic; - bool is_stack; -}; - -enum { - SYNTH_ERR_BAD_NAME = 0, - SYNTH_ERR_INVALID_CMD = 1, - SYNTH_ERR_INVALID_DYN_CMD = 2, - SYNTH_ERR_EVENT_EXISTS = 3, - SYNTH_ERR_TOO_MANY_FIELDS = 4, - SYNTH_ERR_INCOMPLETE_TYPE = 5, - SYNTH_ERR_INVALID_TYPE = 6, - SYNTH_ERR_INVALID_FIELD = 7, - SYNTH_ERR_INVALID_ARRAY_SPEC = 8, -}; - -struct kprobe_trace_entry_head { - struct trace_entry ent; - long unsigned int ip; -}; - -struct kretprobe_trace_entry_head { - struct trace_entry ent; - long unsigned int func; - long unsigned int ret_ip; -}; - -struct trace_kprobe { - struct dyn_event devent; - struct kretprobe rp; - long unsigned int *nhit; - const char *symbol; - struct trace_probe tp; -}; - -struct sym_count_ctx { - unsigned int count; - const char *name; -}; - -typedef int (*objpool_init_obj_cb)(void *, void *); - -struct trace_event_raw_event_da_monitor_id { - struct trace_entry ent; - int id; - u32 __data_loc_state; - u32 __data_loc_event; - u32 __data_loc_next_state; - bool final_state; - char __data[0]; -}; - -struct trace_event_raw_error_da_monitor_id { - struct trace_entry ent; - int id; - u32 __data_loc_state; - u32 __data_loc_event; - char __data[0]; -}; - -struct trace_event_raw_rv_retries_error { - struct trace_entry ent; - u32 __data_loc_name; - u32 __data_loc_event; - char __data[0]; -}; - -struct trace_event_data_offsets_event_da_monitor_id { - u32 state; - const void *state_ptr_; - u32 event; - const void *event_ptr_; - u32 next_state; - const void *next_state_ptr_; -}; - -struct trace_event_data_offsets_error_da_monitor_id { - u32 state; - const void *state_ptr_; - u32 event; - const void *event_ptr_; -}; - -struct trace_event_data_offsets_rv_retries_error { - u32 name; - const void *name_ptr_; - u32 event; - const void *event_ptr_; -}; - -typedef void (*btf_trace_event_wwnr)(void *, int, char *, char *, char *, bool); - -typedef void (*btf_trace_error_wwnr)(void *, int, char *, char *); - -typedef void (*btf_trace_rv_retries_error)(void *, char *, char *); - -struct rv_interface { - struct dentry *root_dir; - struct dentry *monitors_dir; -}; - -struct bpf_timed_may_goto { - u64 count; - u64 timestamp; -}; - -enum page_size_enum { - __PAGE_SIZE = 4096, -}; - -struct bpf_prog_pack { - struct list_head list; - void *ptr; - long unsigned int bitmap[0]; -}; - -struct bpf_prog_dummy { - struct bpf_prog prog; -}; - -typedef u64 (*btf_bpf_user_rnd_u32)(void); - -typedef u64 (*btf_bpf_get_raw_cpu_id)(void); - -struct _bpf_dtab_netdev { - struct net_device *dev; -}; - -struct xdp_mem_allocator { - struct xdp_mem_info mem; - union { - void *allocator; - struct page_pool *page_pool; - }; - struct rhash_head node; - struct callback_head rcu; -}; - -struct trace_event_raw_xdp_exception { - struct trace_entry ent; - int prog_id; - u32 act; - int ifindex; - char __data[0]; -}; - -struct trace_event_raw_xdp_bulk_tx { - struct trace_entry ent; - int ifindex; - u32 act; - int drops; - int sent; - int err; - char __data[0]; -}; - -struct trace_event_raw_xdp_redirect_template { - struct trace_entry ent; - int prog_id; - u32 act; - int ifindex; - int err; - int to_ifindex; - u32 map_id; - int map_index; - char __data[0]; -}; - -struct trace_event_raw_xdp_cpumap_kthread { - struct trace_entry ent; - int map_id; - u32 act; - int cpu; - unsigned int drops; - unsigned int processed; - int sched; - unsigned int xdp_pass; - unsigned int xdp_drop; - unsigned int xdp_redirect; - char __data[0]; -}; - -struct trace_event_raw_xdp_cpumap_enqueue { - struct trace_entry ent; - int map_id; - u32 act; - int cpu; - unsigned int drops; - unsigned int processed; - int to_cpu; - char __data[0]; -}; - -struct trace_event_raw_xdp_devmap_xmit { - struct trace_entry ent; - int from_ifindex; - u32 act; - int to_ifindex; - int drops; - int sent; - int err; - char __data[0]; -}; - -struct trace_event_raw_mem_disconnect { - struct trace_entry ent; - const struct xdp_mem_allocator *xa; - u32 mem_id; - u32 mem_type; - const void *allocator; - char __data[0]; -}; - -struct trace_event_raw_mem_connect { - struct trace_entry ent; - const struct xdp_mem_allocator *xa; - u32 mem_id; - u32 mem_type; - const void *allocator; - const struct xdp_rxq_info *rxq; - int ifindex; - char __data[0]; -}; - -struct trace_event_raw_bpf_xdp_link_attach_failed { - struct trace_entry ent; - u32 __data_loc_msg; - char __data[0]; -}; - -struct trace_event_data_offsets_xdp_exception {}; - -struct trace_event_data_offsets_xdp_bulk_tx {}; - -struct trace_event_data_offsets_xdp_redirect_template {}; - -struct trace_event_data_offsets_xdp_cpumap_kthread {}; - -struct trace_event_data_offsets_xdp_cpumap_enqueue {}; - -struct trace_event_data_offsets_xdp_devmap_xmit {}; - -struct trace_event_data_offsets_mem_disconnect {}; - -struct trace_event_data_offsets_mem_connect {}; - -struct trace_event_data_offsets_bpf_xdp_link_attach_failed { - u32 msg; - const void *msg_ptr_; -}; - -typedef void (*btf_trace_xdp_exception)(void *, const struct net_device *, const struct bpf_prog *, u32); - -typedef void (*btf_trace_xdp_bulk_tx)(void *, const struct net_device *, int, int, int); - -typedef void (*btf_trace_xdp_redirect)(void *, const struct net_device *, const struct bpf_prog *, const void *, int, enum bpf_map_type, u32, u32); - -typedef void (*btf_trace_xdp_redirect_err)(void *, const struct net_device *, const struct bpf_prog *, const void *, int, enum bpf_map_type, u32, u32); - -typedef void (*btf_trace_xdp_cpumap_kthread)(void *, int, unsigned int, unsigned int, int, struct xdp_cpumap_stats *); - -typedef void (*btf_trace_xdp_cpumap_enqueue)(void *, int, unsigned int, unsigned int, int); - -typedef void (*btf_trace_xdp_devmap_xmit)(void *, const struct net_device *, const struct net_device *, int, int, int); - -typedef void (*btf_trace_mem_disconnect)(void *, const struct xdp_mem_allocator *); - -typedef void (*btf_trace_mem_connect)(void *, const struct xdp_mem_allocator *, const struct xdp_rxq_info *); - -typedef void (*btf_trace_bpf_xdp_link_attach_failed)(void *, const char *); - -struct walk_stack_ctx { - struct bpf_prog *prog; -}; - -struct mmap_unlock_irq_work { - struct irq_work irq_work; - struct mm_struct *mm; -}; - -struct bpf_iter_seq_task_common { - struct pid_namespace *ns; - enum bpf_iter_task_type type; - u32 pid; - u32 pid_visiting; -}; - -struct bpf_iter_seq_task_info { - struct bpf_iter_seq_task_common common; - u32 tid; -}; - -struct bpf_iter__task { - union { - struct bpf_iter_meta *meta; - }; - union { - struct task_struct *task; - }; -}; - -struct bpf_iter_seq_task_file_info { - struct bpf_iter_seq_task_common common; - struct task_struct *task; - u32 tid; - u32 fd; -}; - -struct bpf_iter__task_file { - union { - struct bpf_iter_meta *meta; - }; - union { - struct task_struct *task; - }; - u32 fd; - union { - struct file *file; - }; -}; - -struct bpf_iter_seq_task_vma_info { - struct bpf_iter_seq_task_common common; - struct task_struct *task; - struct mm_struct *mm; - struct vm_area_struct *vma; - u32 tid; - long unsigned int prev_vm_start; - long unsigned int prev_vm_end; -}; - -enum bpf_task_vma_iter_find_op { - task_vma_iter_first_vma = 0, - task_vma_iter_next_vma = 1, - task_vma_iter_find_vma = 2, -}; - -struct bpf_iter__task_vma { - union { - struct bpf_iter_meta *meta; - }; - union { - struct task_struct *task; - }; - union { - struct vm_area_struct *vma; - }; -}; - -typedef u64 (*btf_bpf_find_vma)(struct task_struct *, u64, bpf_callback_t, void *, u64); - -struct bpf_iter_task_vma_kern_data { - struct task_struct *task; - struct mm_struct *mm; - struct mmap_unlock_irq_work *work; - struct vma_iterator vmi; -}; - -struct bpf_iter_task_vma { - __u64 __opaque[1]; -}; - -struct bpf_iter_task_vma_kern { - struct bpf_iter_task_vma_kern_data *data; -}; - -struct bpf_iter_css_task { - __u64 __opaque[1]; -}; - -struct bpf_iter_css_task_kern { - struct css_task_iter *css_it; -}; - -struct bpf_iter_task { - __u64 __opaque[3]; -}; - -struct bpf_iter_task_kern { - struct task_struct *task; - struct task_struct *pos; - unsigned int flags; -}; - -enum { - BPF_TASK_ITER_ALL_PROCS = 0, - BPF_TASK_ITER_ALL_THREADS = 1, - BPF_TASK_ITER_PROC_THREADS = 2, -}; - -struct bpf_iter__bpf_map_elem { - union { - struct bpf_iter_meta *meta; - }; - union { - struct bpf_map *map; - }; - union { - void *key; - }; - union { - void *value; - }; -}; - -struct bpf_iter_seq_array_map_info { - struct bpf_map *map; - void *percpu_value_buf; - u32 index; -}; - -struct prog_poke_elem { - struct list_head list; - struct bpf_prog_aux *aux; -}; - -struct bpf_cgroup_storage_map { - struct bpf_map map; - spinlock_t lock; - struct rb_root root; - struct list_head list; -}; - -typedef u64 (*btf_bpf_task_storage_get_recur)(struct bpf_map *, struct task_struct *, void *, u64, gfp_t); - -typedef u64 (*btf_bpf_task_storage_get)(struct bpf_map *, struct task_struct *, void *, u64, gfp_t); - -typedef u64 (*btf_bpf_task_storage_delete_recur)(struct bpf_map *, struct task_struct *); - -typedef u64 (*btf_bpf_task_storage_delete)(struct bpf_map *, struct task_struct *); - -enum { - BTF_VAR_STATIC = 0, - BTF_VAR_GLOBAL_ALLOCATED = 1, - BTF_VAR_GLOBAL_EXTERN = 2, -}; - -struct btf_var { - __u32 linkage; -}; - -struct btf_decl_tag { - __s32 component_idx; -}; - -struct btf_enum64 { - __u32 name_off; - __u32 val_lo32; - __u32 val_hi32; -}; - -struct bpf_btf_info { - __u64 btf; - __u32 btf_size; - __u32 id; - __u64 name; - __u32 name_len; - __u32 kernel_btf; -}; - -struct btf_struct_metas { - u32 cnt; - struct btf_struct_meta types[0]; -}; - -enum { - BTF_FIELDS_MAX = 11, -}; - -struct bpf_core_cand { - const struct btf *btf; - __u32 id; -}; - -struct bpf_core_cand_list { - struct bpf_core_cand *cands; - int len; -}; - -struct bpf_core_accessor { - __u32 type_id; - __u32 idx; - const char *name; -}; - -struct bpf_core_spec { - const struct btf *btf; - struct bpf_core_accessor spec[64]; - __u32 root_type_id; - enum bpf_core_relo_kind relo_kind; - int len; - int raw_spec[64]; - int raw_len; - __u32 bit_offset; -}; - -struct bpf_core_relo_res { - __u64 orig_val; - __u64 new_val; - bool poison; - bool validate; - bool fail_memsz_adjust; - __u32 orig_sz; - __u32 orig_type_id; - __u32 new_sz; - __u32 new_type_id; -}; - -enum btf_kfunc_hook { - BTF_KFUNC_HOOK_COMMON = 0, - BTF_KFUNC_HOOK_XDP = 1, - BTF_KFUNC_HOOK_TC = 2, - BTF_KFUNC_HOOK_STRUCT_OPS = 3, - BTF_KFUNC_HOOK_TRACING = 4, - BTF_KFUNC_HOOK_SYSCALL = 5, - BTF_KFUNC_HOOK_FMODRET = 6, - BTF_KFUNC_HOOK_CGROUP = 7, - BTF_KFUNC_HOOK_SCHED_ACT = 8, - BTF_KFUNC_HOOK_SK_SKB = 9, - BTF_KFUNC_HOOK_SOCKET_FILTER = 10, - BTF_KFUNC_HOOK_LWT = 11, - BTF_KFUNC_HOOK_NETFILTER = 12, - BTF_KFUNC_HOOK_KPROBE = 13, - BTF_KFUNC_HOOK_MAX = 14, -}; - -enum { - BTF_KFUNC_SET_MAX_CNT = 256, - BTF_DTOR_KFUNC_MAX_CNT = 256, - BTF_KFUNC_FILTER_MAX_CNT = 16, -}; - -struct btf_kfunc_hook_filter { - btf_kfunc_filter_t filters[16]; - u32 nr_filters; -}; - -struct btf_kfunc_set_tab { - struct btf_id_set8 *sets[14]; - struct btf_kfunc_hook_filter hook_filters[14]; -}; - -struct btf_id_dtor_kfunc_tab { - u32 cnt; - struct btf_id_dtor_kfunc dtors[0]; -}; - -struct btf_struct_ops_tab { - u32 cnt; - u32 capacity; - struct bpf_struct_ops_desc ops[0]; -}; - -enum verifier_phase { - CHECK_META = 0, - CHECK_TYPE = 1, -}; - -struct resolve_vertex { - const struct btf_type *t; - u32 type_id; - u16 next_member; -}; - -enum visit_state { - NOT_VISITED = 0, - VISITED = 1, - RESOLVED = 2, -}; - -enum resolve_mode { - RESOLVE_TBD = 0, - RESOLVE_PTR = 1, - RESOLVE_STRUCT_OR_ARRAY = 2, -}; - -struct btf_sec_info { - u32 off; - u32 len; -}; - -struct btf_verifier_env { - struct btf *btf; - u8 *visit_states; - struct resolve_vertex stack[32]; - struct bpf_verifier_log log; - u32 log_type_id; - u32 top_stack; - enum verifier_phase phase; - enum resolve_mode resolve_mode; -}; - -struct btf_show { - u64 flags; - void *target; - void (*showfn)(struct btf_show *, const char *, struct __va_list_tag *); - const struct btf *btf; - struct { - u8 depth; - u8 depth_to_show; - u8 depth_check; - u8 array_member: 1; - u8 array_terminated: 1; - u16 array_encoding; - u32 type_id; - int status; - const struct btf_type *type; - const struct btf_member *member; - char name[80]; - } state; - struct { - u32 size; - void *head; - void *data; - u8 safe[32]; - } obj; -}; - -struct btf_kind_operations { - s32 (*check_meta)(struct btf_verifier_env *, const struct btf_type *, u32); - int (*resolve)(struct btf_verifier_env *, const struct resolve_vertex *); - int (*check_member)(struct btf_verifier_env *, const struct btf_type *, const struct btf_member *, const struct btf_type *); - int (*check_kflag_member)(struct btf_verifier_env *, const struct btf_type *, const struct btf_member *, const struct btf_type *); - void (*log_details)(struct btf_verifier_env *, const struct btf_type *); - void (*show)(const struct btf *, const struct btf_type *, u32, void *, u8, struct btf_show *); -}; - -enum { - BTF_FIELD_IGNORE = 0, - BTF_FIELD_FOUND = 1, -}; - -struct btf_field_info { - enum btf_field_type type; - u32 off; - union { - struct { - u32 type_id; - } kptr; - struct { - const char *node_name; - u32 value_btf_id; - } graph_root; - }; -}; - -struct bpf_ctx_convert { - struct __sk_buff BPF_PROG_TYPE_SOCKET_FILTER_prog; - struct sk_buff BPF_PROG_TYPE_SOCKET_FILTER_kern; - struct __sk_buff BPF_PROG_TYPE_SCHED_CLS_prog; - struct sk_buff BPF_PROG_TYPE_SCHED_CLS_kern; - struct __sk_buff BPF_PROG_TYPE_SCHED_ACT_prog; - struct sk_buff BPF_PROG_TYPE_SCHED_ACT_kern; - struct xdp_md BPF_PROG_TYPE_XDP_prog; - struct xdp_buff BPF_PROG_TYPE_XDP_kern; - struct __sk_buff BPF_PROG_TYPE_CGROUP_SKB_prog; - struct sk_buff BPF_PROG_TYPE_CGROUP_SKB_kern; - struct bpf_sock BPF_PROG_TYPE_CGROUP_SOCK_prog; - struct sock BPF_PROG_TYPE_CGROUP_SOCK_kern; - struct bpf_sock_addr BPF_PROG_TYPE_CGROUP_SOCK_ADDR_prog; - struct bpf_sock_addr_kern BPF_PROG_TYPE_CGROUP_SOCK_ADDR_kern; - struct __sk_buff BPF_PROG_TYPE_LWT_IN_prog; - struct sk_buff BPF_PROG_TYPE_LWT_IN_kern; - struct __sk_buff BPF_PROG_TYPE_LWT_OUT_prog; - struct sk_buff BPF_PROG_TYPE_LWT_OUT_kern; - struct __sk_buff BPF_PROG_TYPE_LWT_XMIT_prog; - struct sk_buff BPF_PROG_TYPE_LWT_XMIT_kern; - struct __sk_buff BPF_PROG_TYPE_LWT_SEG6LOCAL_prog; - struct sk_buff BPF_PROG_TYPE_LWT_SEG6LOCAL_kern; - struct bpf_sock_ops BPF_PROG_TYPE_SOCK_OPS_prog; - struct bpf_sock_ops_kern BPF_PROG_TYPE_SOCK_OPS_kern; - struct __sk_buff BPF_PROG_TYPE_SK_SKB_prog; - struct sk_buff BPF_PROG_TYPE_SK_SKB_kern; - struct sk_msg_md BPF_PROG_TYPE_SK_MSG_prog; - struct sk_msg BPF_PROG_TYPE_SK_MSG_kern; - struct __sk_buff BPF_PROG_TYPE_FLOW_DISSECTOR_prog; - struct bpf_flow_dissector BPF_PROG_TYPE_FLOW_DISSECTOR_kern; - bpf_user_pt_regs_t BPF_PROG_TYPE_KPROBE_prog; - struct pt_regs BPF_PROG_TYPE_KPROBE_kern; - __u64 BPF_PROG_TYPE_TRACEPOINT_prog; - u64 BPF_PROG_TYPE_TRACEPOINT_kern; - struct bpf_perf_event_data BPF_PROG_TYPE_PERF_EVENT_prog; - struct bpf_perf_event_data_kern BPF_PROG_TYPE_PERF_EVENT_kern; - struct bpf_raw_tracepoint_args BPF_PROG_TYPE_RAW_TRACEPOINT_prog; - u64 BPF_PROG_TYPE_RAW_TRACEPOINT_kern; - struct bpf_raw_tracepoint_args BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE_prog; - u64 BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE_kern; - void *BPF_PROG_TYPE_TRACING_prog; - void *BPF_PROG_TYPE_TRACING_kern; - struct bpf_cgroup_dev_ctx BPF_PROG_TYPE_CGROUP_DEVICE_prog; - struct bpf_cgroup_dev_ctx BPF_PROG_TYPE_CGROUP_DEVICE_kern; - struct bpf_sysctl BPF_PROG_TYPE_CGROUP_SYSCTL_prog; - struct bpf_sysctl_kern BPF_PROG_TYPE_CGROUP_SYSCTL_kern; - struct bpf_sockopt BPF_PROG_TYPE_CGROUP_SOCKOPT_prog; - struct bpf_sockopt_kern BPF_PROG_TYPE_CGROUP_SOCKOPT_kern; - struct sk_reuseport_md BPF_PROG_TYPE_SK_REUSEPORT_prog; - struct sk_reuseport_kern BPF_PROG_TYPE_SK_REUSEPORT_kern; - struct bpf_sk_lookup BPF_PROG_TYPE_SK_LOOKUP_prog; - struct bpf_sk_lookup_kern BPF_PROG_TYPE_SK_LOOKUP_kern; - void *BPF_PROG_TYPE_STRUCT_OPS_prog; - void *BPF_PROG_TYPE_STRUCT_OPS_kern; - void *BPF_PROG_TYPE_EXT_prog; - void *BPF_PROG_TYPE_EXT_kern; - void *BPF_PROG_TYPE_LSM_prog; - void *BPF_PROG_TYPE_LSM_kern; - void *BPF_PROG_TYPE_SYSCALL_prog; - void *BPF_PROG_TYPE_SYSCALL_kern; - struct bpf_nf_ctx BPF_PROG_TYPE_NETFILTER_prog; - struct bpf_nf_ctx BPF_PROG_TYPE_NETFILTER_kern; -}; - -enum { - __ctx_convertBPF_PROG_TYPE_SOCKET_FILTER = 0, - __ctx_convertBPF_PROG_TYPE_SCHED_CLS = 1, - __ctx_convertBPF_PROG_TYPE_SCHED_ACT = 2, - __ctx_convertBPF_PROG_TYPE_XDP = 3, - __ctx_convertBPF_PROG_TYPE_CGROUP_SKB = 4, - __ctx_convertBPF_PROG_TYPE_CGROUP_SOCK = 5, - __ctx_convertBPF_PROG_TYPE_CGROUP_SOCK_ADDR = 6, - __ctx_convertBPF_PROG_TYPE_LWT_IN = 7, - __ctx_convertBPF_PROG_TYPE_LWT_OUT = 8, - __ctx_convertBPF_PROG_TYPE_LWT_XMIT = 9, - __ctx_convertBPF_PROG_TYPE_LWT_SEG6LOCAL = 10, - __ctx_convertBPF_PROG_TYPE_SOCK_OPS = 11, - __ctx_convertBPF_PROG_TYPE_SK_SKB = 12, - __ctx_convertBPF_PROG_TYPE_SK_MSG = 13, - __ctx_convertBPF_PROG_TYPE_FLOW_DISSECTOR = 14, - __ctx_convertBPF_PROG_TYPE_KPROBE = 15, - __ctx_convertBPF_PROG_TYPE_TRACEPOINT = 16, - __ctx_convertBPF_PROG_TYPE_PERF_EVENT = 17, - __ctx_convertBPF_PROG_TYPE_RAW_TRACEPOINT = 18, - __ctx_convertBPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE = 19, - __ctx_convertBPF_PROG_TYPE_TRACING = 20, - __ctx_convertBPF_PROG_TYPE_CGROUP_DEVICE = 21, - __ctx_convertBPF_PROG_TYPE_CGROUP_SYSCTL = 22, - __ctx_convertBPF_PROG_TYPE_CGROUP_SOCKOPT = 23, - __ctx_convertBPF_PROG_TYPE_SK_REUSEPORT = 24, - __ctx_convertBPF_PROG_TYPE_SK_LOOKUP = 25, - __ctx_convertBPF_PROG_TYPE_STRUCT_OPS = 26, - __ctx_convertBPF_PROG_TYPE_EXT = 27, - __ctx_convertBPF_PROG_TYPE_LSM = 28, - __ctx_convertBPF_PROG_TYPE_SYSCALL = 29, - __ctx_convertBPF_PROG_TYPE_NETFILTER = 30, - __ctx_convert_unused = 31, -}; - -struct bpf_raw_tp_null_args { - const char *func; - u64 mask; -}; - -enum bpf_struct_walk_result { - WALK_SCALAR = 0, - WALK_PTR = 1, - WALK_PTR_UNTRUSTED = 2, - WALK_STRUCT = 3, -}; - -struct bpf_cand_cache { - const char *name; - u32 name_len; - u16 kind; - u16 cnt; - struct { - const struct btf *btf; - u32 id; - } cands[0]; -}; - -enum btf_arg_tag { - ARG_TAG_CTX = 1, - ARG_TAG_NONNULL = 2, - ARG_TAG_TRUSTED = 4, - ARG_TAG_UNTRUSTED = 8, - ARG_TAG_NULLABLE = 16, - ARG_TAG_ARENA = 32, -}; - -struct btf_show_snprintf { - struct btf_show show; - int len_left; - int len; -}; - -enum { - BTF_MODULE_F_LIVE = 1, -}; - -struct btf_module { - struct list_head list; - struct module *module; - struct btf *btf; - struct bin_attribute *sysfs_attr; - int flags; -}; - -typedef u64 (*btf_bpf_btf_find_by_name_kind)(char *, int, u32, int); - -struct bpf_prog_info { - __u32 type; - __u32 id; - __u8 tag[8]; - __u32 jited_prog_len; - __u32 xlated_prog_len; - __u64 jited_prog_insns; - __u64 xlated_prog_insns; - __u64 load_time; - __u32 created_by_uid; - __u32 nr_map_ids; - __u64 map_ids; - char name[16]; - __u32 ifindex; - __u32 gpl_compatible: 1; - __u64 netns_dev; - __u64 netns_ino; - __u32 nr_jited_ksyms; - __u32 nr_jited_func_lens; - __u64 jited_ksyms; - __u64 jited_func_lens; - __u32 btf_id; - __u32 func_info_rec_size; - __u64 func_info; - __u32 nr_func_info; - __u32 nr_line_info; - __u64 line_info; - __u64 jited_line_info; - __u32 nr_jited_line_info; - __u32 line_info_rec_size; - __u32 jited_line_info_rec_size; - __u32 nr_prog_tags; - __u64 prog_tags; - __u64 run_time_ns; - __u64 run_cnt; - __u64 recursion_misses; - __u32 verified_insns; - __u32 attach_btf_obj_id; - __u32 attach_btf_id; -}; - -struct bpf_map_info { - __u32 type; - __u32 id; - __u32 key_size; - __u32 value_size; - __u32 max_entries; - __u32 map_flags; - char name[16]; - __u32 ifindex; - __u32 btf_vmlinux_value_type_id; - __u64 netns_dev; - __u64 netns_ino; - __u32 btf_id; - __u32 btf_key_type_id; - __u32 btf_value_type_id; - __u32 btf_vmlinux_id; - __u64 map_extra; -}; - -struct bpf_prog_offload_ops { - int (*insn_hook)(struct bpf_verifier_env *, int, int); - int (*finalize)(struct bpf_verifier_env *); - int (*replace_insn)(struct bpf_verifier_env *, u32, struct bpf_insn *); - int (*remove_insns)(struct bpf_verifier_env *, u32, u32); - int (*prepare)(struct bpf_prog *); - int (*translate)(struct bpf_prog *); - void (*destroy)(struct bpf_prog *); -}; - -struct bpf_offload_dev { - const struct bpf_prog_offload_ops *ops; - struct list_head netdevs; - void *priv; -}; - -typedef struct ns_common *ns_get_path_helper_t(void *); - -enum xdp_rx_metadata { - XDP_METADATA_KFUNC_RX_TIMESTAMP = 0, - XDP_METADATA_KFUNC_RX_HASH = 1, - XDP_METADATA_KFUNC_RX_VLAN_TAG = 2, - MAX_XDP_METADATA_KFUNC = 3, -}; - -struct bpf_offload_netdev { - struct rhash_head l; - struct net_device *netdev; - struct bpf_offload_dev *offdev; - struct list_head progs; - struct list_head maps; - struct list_head offdev_netdevs; -}; - -struct ns_get_path_bpf_prog_args { - struct bpf_prog *prog; - struct bpf_prog_info *info; -}; - -struct ns_get_path_bpf_map_args { - struct bpf_offloaded_map *offmap; - struct bpf_map_info *info; -}; - -enum bpf_stack_build_id_status { - BPF_STACK_BUILD_ID_EMPTY = 0, - BPF_STACK_BUILD_ID_VALID = 1, - BPF_STACK_BUILD_ID_IP = 2, -}; - -struct bpf_stack_build_id { - __s32 status; - unsigned char build_id[20]; - union { - __u64 offset; - __u64 ip; - }; -}; - -enum { - BPF_F_SKIP_FIELD_MASK = 255, - BPF_F_USER_STACK = 256, - BPF_F_FAST_STACK_CMP = 512, - BPF_F_REUSE_STACKID = 1024, - BPF_F_USER_BUILD_ID = 2048, -}; - -enum perf_callchain_context { - PERF_CONTEXT_HV = 18446744073709551584ULL, - PERF_CONTEXT_KERNEL = 18446744073709551488ULL, - PERF_CONTEXT_USER = 18446744073709551104ULL, - PERF_CONTEXT_GUEST = 18446744073709549568ULL, - PERF_CONTEXT_GUEST_KERNEL = 18446744073709549440ULL, - PERF_CONTEXT_GUEST_USER = 18446744073709549056ULL, - PERF_CONTEXT_MAX = 18446744073709547521ULL, -}; - -struct stack_map_bucket { - struct pcpu_freelist_node fnode; - u32 hash; - u32 nr; - u64 data[0]; -}; - -struct bpf_stack_map { - struct bpf_map map; - void *elems; - struct pcpu_freelist freelist; - u32 n_buckets; - struct stack_map_bucket *buckets[0]; -}; - -typedef u64 (*btf_bpf_get_stackid)(struct pt_regs *, struct bpf_map *, u64); - -typedef u64 (*btf_bpf_get_stackid_pe)(struct bpf_perf_event_data_kern *, struct bpf_map *, u64); - -typedef u64 (*btf_bpf_get_stack)(struct pt_regs *, void *, u32, u64); - -typedef u64 (*btf_bpf_get_stack_sleepable)(struct pt_regs *, void *, u32, u64); - -typedef u64 (*btf_bpf_get_task_stack)(struct task_struct *, void *, u32, u64); - -typedef u64 (*btf_bpf_get_task_stack_sleepable)(struct task_struct *, void *, u32, u64); - -typedef u64 (*btf_bpf_get_stack_pe)(struct bpf_perf_event_data_kern *, void *, u32, u64); - -struct bpf_struct_ops_value { - struct bpf_struct_ops_common_value common; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - char data[0]; -}; - -struct bpf_struct_ops_map { - struct bpf_map map; - const struct bpf_struct_ops_desc *st_ops_desc; - struct mutex lock; - struct bpf_link **links; - struct bpf_ksym **ksyms; - u32 funcs_cnt; - u32 image_pages_cnt; - void *image_pages[8]; - struct btf *btf; - struct bpf_struct_ops_value *uvalue; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct bpf_struct_ops_value kvalue; -}; - -struct bpf_struct_ops_link { - struct bpf_link link; - struct bpf_map *map; - wait_queue_head_t wait_hup; -}; - -enum { - IDX_MODULE_ID = 0, - IDX_ST_OPS_COMMON_VALUE_ID = 1, -}; - -struct dmabuf_iter_priv { - struct dma_buf *dmabuf; -}; - -struct bpf_iter__dmabuf { - union { - struct bpf_iter_meta *meta; - }; - union { - struct dma_buf *dmabuf; - }; -}; - -struct bpf_iter_dmabuf { - __u64 __opaque[1]; -}; - -struct bpf_iter_dmabuf_kern { - struct dma_buf *dmabuf; -}; - -enum bp_type_idx { - TYPE_INST = 0, - TYPE_DATA = 0, - TYPE_MAX = 1, -}; - -struct bp_slots_histogram { - atomic_t count[4]; -}; - -struct bp_cpuinfo { - unsigned int cpu_pinned; - struct bp_slots_histogram tsk_pinned; -}; - -struct user_return_notifier { - void (*on_user_return)(struct user_return_notifier *); - struct hlist_node link; -}; - -struct static_key_mod { - struct static_key_mod *next; - struct jump_entry *entries; - struct module *mod; -}; - -struct static_key_deferred { - struct static_key key; - long unsigned int timeout; - struct delayed_work work; -}; - -struct trace_event_raw_context_tracking_user { - struct trace_entry ent; - int dummy; - char __data[0]; -}; - -struct trace_event_data_offsets_context_tracking_user {}; - -typedef void (*btf_trace_user_enter)(void *, int); - -typedef void (*btf_trace_user_exit)(void *, int); - -struct trace_event_raw_oom_score_adj_update { - struct trace_entry ent; - pid_t pid; - char comm[16]; - short int oom_score_adj; - char __data[0]; -}; - -struct trace_event_raw_reclaim_retry_zone { - struct trace_entry ent; - int node; - int zone_idx; - int order; - long unsigned int reclaimable; - long unsigned int available; - long unsigned int min_wmark; - int no_progress_loops; - bool wmark_check; - char __data[0]; -}; - -struct trace_event_raw_mark_victim { - struct trace_entry ent; - int pid; - u32 __data_loc_comm; - long unsigned int total_vm; - long unsigned int anon_rss; - long unsigned int file_rss; - long unsigned int shmem_rss; - uid_t uid; - long unsigned int pgtables; - short int oom_score_adj; - char __data[0]; -}; - -struct trace_event_raw_wake_reaper { - struct trace_entry ent; - int pid; - char __data[0]; -}; - -struct trace_event_raw_start_task_reaping { - struct trace_entry ent; - int pid; - char __data[0]; -}; - -struct trace_event_raw_finish_task_reaping { - struct trace_entry ent; - int pid; - char __data[0]; -}; - -struct trace_event_raw_skip_task_reaping { - struct trace_entry ent; - int pid; - char __data[0]; -}; - -struct trace_event_raw_compact_retry { - struct trace_entry ent; - int order; - int priority; - int result; - int retries; - int max_retries; - bool ret; - char __data[0]; -}; - -struct trace_event_data_offsets_oom_score_adj_update {}; - -struct trace_event_data_offsets_reclaim_retry_zone {}; - -struct trace_event_data_offsets_mark_victim { - u32 comm; - const void *comm_ptr_; -}; - -struct trace_event_data_offsets_wake_reaper {}; - -struct trace_event_data_offsets_start_task_reaping {}; - -struct trace_event_data_offsets_finish_task_reaping {}; - -struct trace_event_data_offsets_skip_task_reaping {}; - -struct trace_event_data_offsets_compact_retry {}; - -typedef void (*btf_trace_oom_score_adj_update)(void *, struct task_struct *); - -typedef void (*btf_trace_reclaim_retry_zone)(void *, struct zoneref *, int, long unsigned int, long unsigned int, long unsigned int, int, bool); - -typedef void (*btf_trace_mark_victim)(void *, struct task_struct *, uid_t); - -typedef void (*btf_trace_wake_reaper)(void *, int); - -typedef void (*btf_trace_start_task_reaping)(void *, int); - -typedef void (*btf_trace_finish_task_reaping)(void *, int); - -typedef void (*btf_trace_skip_task_reaping)(void *, int); - -typedef void (*btf_trace_compact_retry)(void *, int, enum compact_priority, enum compact_result, int, int, bool); - -struct contig_page_info { - long unsigned int free_pages; - long unsigned int free_blocks_total; - long unsigned int free_blocks_suitable; -}; - -struct pcpu_group_info { - int nr_units; - long unsigned int base_offset; - unsigned int *cpu_map; -}; - -struct pcpu_alloc_info { - size_t static_size; - size_t reserved_size; - size_t dyn_size; - size_t unit_size; - size_t atom_size; - size_t alloc_size; - size_t __ai_size; - int nr_groups; - struct pcpu_group_info groups[0]; -}; - -typedef int pcpu_fc_cpu_to_node_fn_t(int); - -typedef int pcpu_fc_cpu_distance_fn_t(unsigned int, unsigned int); - -struct trace_event_raw_percpu_alloc_percpu { - struct trace_entry ent; - long unsigned int call_site; - bool reserved; - bool is_atomic; - size_t size; - size_t align; - void *base_addr; - int off; - void *ptr; - size_t bytes_alloc; - long unsigned int gfp_flags; - char __data[0]; -}; - -struct trace_event_raw_percpu_free_percpu { - struct trace_entry ent; - void *base_addr; - int off; - void *ptr; - char __data[0]; -}; - -struct trace_event_raw_percpu_alloc_percpu_fail { - struct trace_entry ent; - bool reserved; - bool is_atomic; - size_t size; - size_t align; - char __data[0]; -}; - -struct trace_event_raw_percpu_create_chunk { - struct trace_entry ent; - void *base_addr; - char __data[0]; -}; - -struct trace_event_raw_percpu_destroy_chunk { - struct trace_entry ent; - void *base_addr; - char __data[0]; -}; - -struct trace_event_data_offsets_percpu_alloc_percpu {}; - -struct trace_event_data_offsets_percpu_free_percpu {}; - -struct trace_event_data_offsets_percpu_alloc_percpu_fail {}; - -struct trace_event_data_offsets_percpu_create_chunk {}; - -struct trace_event_data_offsets_percpu_destroy_chunk {}; - -typedef void (*btf_trace_percpu_alloc_percpu)(void *, long unsigned int, bool, bool, size_t, size_t, void *, int, void *, size_t, gfp_t); - -typedef void (*btf_trace_percpu_free_percpu)(void *, void *, int, void *); - -typedef void (*btf_trace_percpu_alloc_percpu_fail)(void *, bool, bool, size_t, size_t); - -typedef void (*btf_trace_percpu_create_chunk)(void *, void *); - -typedef void (*btf_trace_percpu_destroy_chunk)(void *, void *); - -struct pcpu_block_md { - int scan_hint; - int scan_hint_start; - int contig_hint; - int contig_hint_start; - int left_free; - int right_free; - int first_free; - int nr_bits; -}; - -struct pcpuobj_ext { - struct obj_cgroup *cgroup; -}; - -struct pcpu_chunk { - struct list_head list; - int free_bytes; - struct pcpu_block_md chunk_md; - long unsigned int *bound_map; - void *base_addr; - long unsigned int *alloc_map; - struct pcpu_block_md *md_blocks; - void *data; - bool immutable; - bool isolated; - int start_offset; - int end_offset; - struct pcpuobj_ext *obj_exts; - int nr_pages; - int nr_populated; - int nr_empty_pop_pages; - long unsigned int populated[0]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct page_snapshot { - struct folio folio_snapshot; - struct page page_snapshot; - long unsigned int pfn; - long unsigned int idx; - long unsigned int flags; - long: 64; -}; - -struct mlock_fbatch { - local_lock_t lock; - struct folio_batch fbatch; -}; - -struct page_frag_cache { - long unsigned int encoded_page; - __u32 offset; - __u32 pagecnt_bias; -}; - -struct kmem_cache_cpu { - union { - struct { - void **freelist; - long unsigned int tid; - }; - freelist_aba_t freelist_tid; - }; - struct slab *slab; - struct slab *partial; - local_lock_t lock; -}; - -struct kmem_cache_node { - spinlock_t list_lock; - long unsigned int nr_partial; - struct list_head partial; - atomic_long_t nr_slabs; - atomic_long_t total_objects; - struct list_head full; -}; - -enum slab_flags { - SL_locked = 0, - SL_partial = 9, - SL_pfmemalloc = 8, -}; - -struct partial_context { - gfp_t flags; - unsigned int orig_size; - void *object; -}; - -struct track { - long unsigned int addr; - depot_stack_handle_t handle; - int cpu; - int pid; - long unsigned int when; -}; - -enum track_item { - TRACK_ALLOC = 0, - TRACK_FREE = 1, -}; - -enum stat_item { - ALLOC_FASTPATH = 0, - ALLOC_SLOWPATH = 1, - FREE_FASTPATH = 2, - FREE_SLOWPATH = 3, - FREE_FROZEN = 4, - FREE_ADD_PARTIAL = 5, - FREE_REMOVE_PARTIAL = 6, - ALLOC_FROM_PARTIAL = 7, - ALLOC_SLAB = 8, - ALLOC_REFILL = 9, - ALLOC_NODE_MISMATCH = 10, - FREE_SLAB = 11, - CPUSLAB_FLUSH = 12, - DEACTIVATE_FULL = 13, - DEACTIVATE_EMPTY = 14, - DEACTIVATE_TO_HEAD = 15, - DEACTIVATE_TO_TAIL = 16, - DEACTIVATE_REMOTE_FREES = 17, - DEACTIVATE_BYPASS = 18, - ORDER_FALLBACK = 19, - CMPXCHG_DOUBLE_CPU_FAIL = 20, - CMPXCHG_DOUBLE_FAIL = 21, - CPU_PARTIAL_ALLOC = 22, - CPU_PARTIAL_FREE = 23, - CPU_PARTIAL_NODE = 24, - CPU_PARTIAL_DRAIN = 25, - NR_SLUB_STAT_ITEMS = 26, -}; - -struct slub_flush_work { - struct work_struct work; - struct kmem_cache *s; - bool skip; -}; - -struct detached_freelist { - struct slab *slab; - void *tail; - void *freelist; - int cnt; - struct kmem_cache *s; -}; - -struct location { - depot_stack_handle_t handle; - long unsigned int count; - long unsigned int addr; - long unsigned int waste; - long long int sum_time; - long int min_time; - long int max_time; - long int min_pid; - long int max_pid; - long unsigned int cpus[128]; - nodemask_t nodes; -}; - -struct loc_track { - long unsigned int max; - long unsigned int count; - struct location *loc; - loff_t idx; -}; - -enum slab_stat_type { - SL_ALL = 0, - SL_PARTIAL = 1, - SL_CPU = 2, - SL_OBJECTS = 3, - SL_TOTAL = 4, -}; - -struct slab_attribute { - struct attribute attr; - ssize_t (*show)(struct kmem_cache *, char *); - ssize_t (*store)(struct kmem_cache *, const char *, size_t); -}; - -struct saved_alias { - struct kmem_cache *s; - const char *name; - struct saved_alias *next; -}; - -struct crypto_acomp_ctx { - struct crypto_acomp *acomp; - struct acomp_req *req; - struct crypto_wait wait; - u8 *buffer; - struct mutex mutex; - bool is_sleepable; -}; - -struct zswap_pool { - struct zpool *zpool; - struct crypto_acomp_ctx *acomp_ctx; - struct percpu_ref ref; - struct list_head list; - struct work_struct release_work; - struct hlist_node node; - char tfm_name[128]; -}; - -struct zswap_entry { - swp_entry_t swpentry; - unsigned int length; - bool referenced; - struct zswap_pool *pool; - long unsigned int handle; - struct obj_cgroup *objcg; - struct list_head lru; -}; - -enum zswap_init_type { - ZSWAP_UNINIT = 0, - ZSWAP_INIT_SUCCEED = 1, - ZSWAP_INIT_FAILED = 2, -}; - -struct vmemmap_remap_walk { - void (*remap_pte)(pte_t *, long unsigned int, struct vmemmap_remap_walk *); - long unsigned int nr_walked; - struct page *reuse_page; - long unsigned int reuse_addr; - struct list_head *vmemmap_pages; - long unsigned int flags; -}; - -struct kcsan_scoped_access {}; - -enum kfence_object_state { - KFENCE_OBJECT_UNUSED = 0, - KFENCE_OBJECT_ALLOCATED = 1, - KFENCE_OBJECT_RCU_FREEING = 2, - KFENCE_OBJECT_FREED = 3, -}; - -struct kfence_track { - pid_t pid; - int cpu; - u64 ts_nsec; - int num_stack_entries; - long unsigned int stack_entries[64]; -}; - -struct kfence_metadata { - struct list_head list; - struct callback_head callback_head; - raw_spinlock_t lock; - enum kfence_object_state state; - long unsigned int addr; - size_t size; - struct kmem_cache *cache; - long unsigned int unprotected_page; - struct kfence_track alloc_track; - struct kfence_track free_track; - u32 alloc_stack_hash; - struct slabobj_ext obj_exts; -}; - -enum kfence_error_type { - KFENCE_ERROR_OOB = 0, - KFENCE_ERROR_UAF = 1, - KFENCE_ERROR_CORRUPTION = 2, - KFENCE_ERROR_INVALID = 3, - KFENCE_ERROR_INVALID_FREE = 4, -}; - -enum kfence_counter_id { - KFENCE_COUNTER_ALLOCATED = 0, - KFENCE_COUNTER_ALLOCS = 1, - KFENCE_COUNTER_FREES = 2, - KFENCE_COUNTER_ZOMBIES = 3, - KFENCE_COUNTER_BUGS = 4, - KFENCE_COUNTER_SKIP_INCOMPAT = 5, - KFENCE_COUNTER_SKIP_CAPACITY = 6, - KFENCE_COUNTER_SKIP_COVERED = 7, - KFENCE_COUNTER_COUNT = 8, -}; - -struct trace_event_raw_migration_pmd { - struct trace_entry ent; - long unsigned int addr; - long unsigned int pmd; - char __data[0]; -}; - -struct trace_event_data_offsets_migration_pmd {}; - -typedef void (*btf_trace_set_migration_pmd)(void *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_remove_migration_pmd)(void *, long unsigned int, long unsigned int); - -struct folio_or_pfn { - union { - struct folio *folio; - long unsigned int pfn; - }; - bool is_folio; -}; - -struct wp_walk { - struct mmu_notifier_range range; - long unsigned int tlbflush_start; - long unsigned int tlbflush_end; - long unsigned int total; -}; - -struct clean_walk { - struct wp_walk base; - long unsigned int bitmap_pgoff; - long unsigned int *bitmap; - long unsigned int start; - long unsigned int end; -}; - -struct user_arg_ptr { - bool is_compat; - union { - const char * const *native; - const compat_uptr_t *compat; - } ptr; -}; - -struct linux_dirent64 { - u64 d_ino; - s64 d_off; - short unsigned int d_reclen; - unsigned char d_type; - char d_name[0]; -}; - -struct old_linux_dirent { - long unsigned int d_ino; - long unsigned int d_offset; - short unsigned int d_namlen; - char d_name[0]; -}; - -struct readdir_callback { - struct dir_context ctx; - struct old_linux_dirent *dirent; - int result; -}; - -struct linux_dirent { - long unsigned int d_ino; - long unsigned int d_off; - short unsigned int d_reclen; - char d_name[0]; -}; - -struct getdents_callback { - struct dir_context ctx; - struct linux_dirent *current_dir; - int prev_reclen; - int error; -}; - -struct getdents_callback64 { - struct dir_context ctx; - struct linux_dirent64 *current_dir; - int prev_reclen; - int error; -}; - -struct compat_old_linux_dirent { - compat_ulong_t d_ino; - compat_ulong_t d_offset; - short unsigned int d_namlen; - char d_name[0]; -}; - -struct compat_readdir_callback { - struct dir_context ctx; - struct compat_old_linux_dirent *dirent; - int result; -}; - -struct compat_linux_dirent { - compat_ulong_t d_ino; - compat_ulong_t d_off; - short unsigned int d_reclen; - char d_name[0]; -}; - -struct compat_getdents_callback { - struct dir_context ctx; - struct compat_linux_dirent *current_dir; - int prev_reclen; - int error; -}; - -struct inodes_stat_t { - long int nr_inodes; - long int nr_unused; - long int dummy[5]; -}; - -struct trace_event_raw_ctime { - struct trace_entry ent; - dev_t dev; - ino_t ino; - time64_t ctime_s; - u32 ctime_ns; - u32 gen; - char __data[0]; -}; - -struct trace_event_raw_ctime_ns_xchg { - struct trace_entry ent; - dev_t dev; - ino_t ino; - u32 gen; - u32 old; - u32 new; - u32 cur; - char __data[0]; -}; - -struct trace_event_raw_fill_mg_cmtime { - struct trace_entry ent; - dev_t dev; - ino_t ino; - time64_t ctime_s; - time64_t mtime_s; - u32 ctime_ns; - u32 mtime_ns; - u32 gen; - char __data[0]; -}; - -struct trace_event_data_offsets_ctime {}; - -struct trace_event_data_offsets_ctime_ns_xchg {}; - -struct trace_event_data_offsets_fill_mg_cmtime {}; - -typedef void (*btf_trace_inode_set_ctime_to_ts)(void *, struct inode *, struct timespec64 *); - -typedef void (*btf_trace_ctime_xchg_skip)(void *, struct inode *, struct timespec64 *); - -typedef void (*btf_trace_ctime_ns_xchg)(void *, struct inode *, u32, u32, u32); - -typedef void (*btf_trace_fill_mg_cmtime)(void *, struct inode *, struct timespec64 *, struct timespec64 *); - -struct mnt_idmap { - struct uid_gid_map uid_map; - struct uid_gid_map gid_map; - refcount_t count; -}; - -struct mount_attr { - __u64 attr_set; - __u64 attr_clr; - __u64 propagation; - __u64 userns_fd; -}; - -struct statmount { - __u32 size; - __u32 mnt_opts; - __u64 mask; - __u32 sb_dev_major; - __u32 sb_dev_minor; - __u64 sb_magic; - __u32 sb_flags; - __u32 fs_type; - __u64 mnt_id; - __u64 mnt_parent_id; - __u32 mnt_id_old; - __u32 mnt_parent_id_old; - __u64 mnt_attr; - __u64 mnt_propagation; - __u64 mnt_peer_group; - __u64 mnt_master; - __u64 propagate_from; - __u32 mnt_root; - __u32 mnt_point; - __u64 mnt_ns_id; - __u32 fs_subtype; - __u32 sb_source; - __u32 opt_num; - __u32 opt_array; - __u32 opt_sec_num; - __u32 opt_sec_array; - __u64 supported_mask; - __u32 mnt_uidmap_num; - __u32 mnt_uidmap; - __u32 mnt_gidmap_num; - __u32 mnt_gidmap; - __u64 __spare2[43]; - char str[0]; -}; - -struct mnt_id_req { - __u32 size; - __u32 mnt_ns_fd; - __u64 mnt_id; - __u64 param; - __u64 mnt_ns_id; -}; - -enum mount_kattr_flags_t { - MOUNT_KATTR_RECURSE = 1, - MOUNT_KATTR_IDMAP_REPLACE = 2, -}; - -struct mount_kattr { - unsigned int attr_set; - unsigned int attr_clr; - unsigned int propagation; - unsigned int lookup_flags; - enum mount_kattr_flags_t kflags; - struct user_namespace *mnt_userns; - struct mnt_idmap *mnt_idmap; -}; - -struct pinned_mountpoint { - struct hlist_node node; - struct mountpoint *mp; -}; - -typedef struct rw_semaphore *class_namespace_lock_t; - -enum umount_tree_flags { - UMOUNT_SYNC = 1, - UMOUNT_PROPAGATE = 2, - UMOUNT_CONNECTED = 4, -}; - -enum mnt_tree_flags_t { - MNT_TREE_BENEATH = 1, - MNT_TREE_PROPAGATION = 2, -}; - -struct kstatmount { - struct statmount *buf; - size_t bufsize; - struct vfsmount *mnt; - struct mnt_idmap *idmap; - u64 mask; - struct path root; - struct seq_file seq; - struct statmount sm; -}; - -struct klistmount { - u64 last_mnt_id; - u64 mnt_parent_id; - u64 *kmnt_ids; - u32 nr_mnt_ids; - struct mnt_namespace *ns; - struct path root; -}; - -typedef int splice_direct_actor(struct pipe_inode_info *, struct splice_desc *); - -enum legacy_fs_param { - LEGACY_FS_UNSET_PARAMS = 0, - LEGACY_FS_MONOLITHIC_PARAMS = 1, - LEGACY_FS_INDIVIDUAL_PARAMS = 2, -}; - -struct legacy_fs_context { - char *legacy_data; - size_t data_size; - enum legacy_fs_param param_type; -}; - -typedef int dio_iodone_t(struct kiocb *, loff_t, ssize_t, void *); - -enum { - DIO_LOCKING = 1, - DIO_SKIP_HOLES = 2, -}; - -struct dio_submit { - struct bio *bio; - unsigned int blkbits; - unsigned int blkfactor; - unsigned int start_zero_done; - int pages_in_io; - sector_t block_in_file; - unsigned int blocks_available; - int reap_counter; - sector_t final_block_in_request; - int boundary; - get_block_t *get_block; - loff_t logical_offset_in_bio; - sector_t final_block_in_bio; - sector_t next_block_for_io; - struct page *cur_page; - unsigned int cur_page_offset; - unsigned int cur_page_len; - sector_t cur_page_block; - loff_t cur_page_fs_offset; - struct iov_iter *iter; - unsigned int head; - unsigned int tail; - size_t from; - size_t to; -}; - -struct dio { - int flags; - blk_opf_t opf; - struct gendisk *bio_disk; - struct inode *inode; - loff_t i_size; - dio_iodone_t *end_io; - bool is_pinned; - void *private; - spinlock_t bio_lock; - int page_errors; - int is_async; - bool defer_completion; - bool should_dirty; - int io_error; - long unsigned int refcount; - struct bio *bio_list; - struct task_struct *waiter; - struct kiocb *iocb; - ssize_t result; - union { - struct page *pages[64]; - struct work_struct complete_work; - }; - long: 64; -}; - -struct inotify_event_info { - struct fsnotify_event fse; - u32 mask; - int wd; - u32 sync_cookie; - int name_len; - char name[0]; -}; - -struct fanotify_event_metadata { - __u32 event_len; - __u8 vers; - __u8 reserved; - __u16 metadata_len; - __u64 mask; - __s32 fd; - __s32 pid; -}; - -struct fanotify_event_info_header { - __u8 info_type; - __u8 pad; - __u16 len; -}; - -struct fanotify_event_info_fid { - struct fanotify_event_info_header hdr; - __kernel_fsid_t fsid; - unsigned char handle[0]; -}; - -struct fanotify_event_info_pidfd { - struct fanotify_event_info_header hdr; - __s32 pidfd; -}; - -struct fanotify_event_info_error { - struct fanotify_event_info_header hdr; - __s32 error; - __u32 error_count; -}; - -struct fanotify_event_info_range { - struct fanotify_event_info_header hdr; - __u32 pad; - __u64 offset; - __u64 count; -}; - -struct fanotify_event_info_mnt { - struct fanotify_event_info_header hdr; - __u64 mnt_id; -}; - -struct fanotify_response { - __s32 fd; - __u32 response; -}; - -struct fan_fsid { - struct super_block *sb; - __kernel_fsid_t id; - bool weak; -}; - -struct signalfd_siginfo { - __u32 ssi_signo; - __s32 ssi_errno; - __s32 ssi_code; - __u32 ssi_pid; - __u32 ssi_uid; - __s32 ssi_fd; - __u32 ssi_tid; - __u32 ssi_band; - __u32 ssi_overrun; - __u32 ssi_trapno; - __s32 ssi_status; - __s32 ssi_int; - __u64 ssi_ptr; - __u64 ssi_utime; - __u64 ssi_stime; - __u64 ssi_addr; - __u16 ssi_addr_lsb; - __u16 __pad2; - __s32 ssi_syscall; - __u64 ssi_call_addr; - __u32 ssi_arch; - __u8 __pad[28]; -}; - -struct signalfd_ctx { - sigset_t sigmask; -}; - -struct eventfd_ctx { - struct kref kref; - wait_queue_head_t wqh; - __u64 count; - unsigned int flags; - int id; -}; - -struct fscrypt_context_v1 { - u8 version; - u8 contents_encryption_mode; - u8 filenames_encryption_mode; - u8 flags; - u8 master_key_descriptor[8]; - u8 nonce[16]; -}; - -struct fscrypt_context_v2 { - u8 version; - u8 contents_encryption_mode; - u8 filenames_encryption_mode; - u8 flags; - u8 log2_data_unit_size; - u8 __reserved[3]; - u8 master_key_identifier[16]; - u8 nonce[16]; -}; - -union fscrypt_context { - u8 version; - struct fscrypt_context_v1 v1; - struct fscrypt_context_v2 v2; -}; - -struct fsverity_digest { - __u16 digest_algorithm; - __u16 digest_size; - __u8 digest[0]; -}; - -struct user_regs_struct32 { - __u32 ebx; - __u32 ecx; - __u32 edx; - __u32 esi; - __u32 edi; - __u32 ebp; - __u32 eax; - short unsigned int ds; - short unsigned int __ds; - short unsigned int es; - short unsigned int __es; - short unsigned int fs; - short unsigned int __fs; - short unsigned int gs; - short unsigned int __gs; - __u32 orig_eax; - __u32 eip; - short unsigned int cs; - short unsigned int __cs; - __u32 eflags; - __u32 esp; - short unsigned int ss; - short unsigned int __ss; -}; - -struct user_regs_struct { - long unsigned int r15; - long unsigned int r14; - long unsigned int r13; - long unsigned int r12; - long unsigned int bp; - long unsigned int bx; - long unsigned int r11; - long unsigned int r10; - long unsigned int r9; - long unsigned int r8; - long unsigned int ax; - long unsigned int cx; - long unsigned int dx; - long unsigned int si; - long unsigned int di; - long unsigned int orig_ax; - long unsigned int ip; - long unsigned int cs; - long unsigned int flags; - long unsigned int sp; - long unsigned int ss; - long unsigned int fs_base; - long unsigned int gs_base; - long unsigned int ds; - long unsigned int es; - long unsigned int fs; - long unsigned int gs; -}; - -struct elf32_shdr { - Elf32_Word sh_name; - Elf32_Word sh_type; - Elf32_Word sh_flags; - Elf32_Addr sh_addr; - Elf32_Off sh_offset; - Elf32_Word sh_size; - Elf32_Word sh_link; - Elf32_Word sh_info; - Elf32_Word sh_addralign; - Elf32_Word sh_entsize; -}; - -struct compat_elf_siginfo { - compat_int_t si_signo; - compat_int_t si_code; - compat_int_t si_errno; -}; - -struct compat_elf_prstatus_common { - struct compat_elf_siginfo pr_info; - short int pr_cursig; - compat_ulong_t pr_sigpend; - compat_ulong_t pr_sighold; - compat_pid_t pr_pid; - compat_pid_t pr_ppid; - compat_pid_t pr_pgrp; - compat_pid_t pr_sid; - struct old_timeval32 pr_utime; - struct old_timeval32 pr_stime; - struct old_timeval32 pr_cutime; - struct old_timeval32 pr_cstime; -}; - -struct compat_elf_prpsinfo { - char pr_state; - char pr_sname; - char pr_zomb; - char pr_nice; - compat_ulong_t pr_flag; - __compat_uid_t pr_uid; - __compat_gid_t pr_gid; - compat_pid_t pr_pid; - compat_pid_t pr_ppid; - compat_pid_t pr_pgrp; - compat_pid_t pr_sid; - char pr_fname[16]; - char pr_psargs[80]; -}; - -typedef struct user_regs_struct compat_elf_gregset_t; - -struct i386_elf_prstatus { - struct compat_elf_prstatus_common common; - struct user_regs_struct32 pr_reg; - compat_int_t pr_fpvalid; -}; - -struct compat_elf_prstatus { - struct compat_elf_prstatus_common common; - compat_elf_gregset_t pr_reg; - compat_int_t pr_fpvalid; -}; - -struct arch_elf_state {}; - -struct memelfnote { - const char *name; - int type; - unsigned int datasz; - void *data; -}; - -struct elf_thread_core_info { - struct elf_thread_core_info *next; - struct task_struct *task; - struct compat_elf_prstatus prstatus; - struct memelfnote notes[0]; -}; - -struct elf_note_info { - struct elf_thread_core_info *thread; - struct memelfnote psinfo; - struct memelfnote signote; - struct memelfnote auxv; - struct memelfnote files; - compat_siginfo_t csigdata; - size_t size; - int thread_notes; -}; - -enum nfs_stat { - NFS_OK = 0, - NFSERR_PERM = 1, - NFSERR_NOENT = 2, - NFSERR_IO = 5, - NFSERR_NXIO = 6, - NFSERR_ACCES = 13, - NFSERR_EXIST = 17, - NFSERR_XDEV = 18, - NFSERR_NODEV = 19, - NFSERR_NOTDIR = 20, - NFSERR_ISDIR = 21, - NFSERR_INVAL = 22, - NFSERR_FBIG = 27, - NFSERR_NOSPC = 28, - NFSERR_ROFS = 30, - NFSERR_MLINK = 31, - NFSERR_NAMETOOLONG = 63, - NFSERR_NOTEMPTY = 66, - NFSERR_DQUOT = 69, - NFSERR_STALE = 70, - NFSERR_REMOTE = 71, - NFSERR_WFLUSH = 99, - NFSERR_BADHANDLE = 10001, - NFSERR_NOT_SYNC = 10002, - NFSERR_BAD_COOKIE = 10003, - NFSERR_NOTSUPP = 10004, - NFSERR_TOOSMALL = 10005, - NFSERR_SERVERFAULT = 10006, - NFSERR_BADTYPE = 10007, - NFSERR_JUKEBOX = 10008, - NFSERR_SAME = 10009, - NFSERR_DENIED = 10010, - NFSERR_EXPIRED = 10011, - NFSERR_LOCKED = 10012, - NFSERR_GRACE = 10013, - NFSERR_FHEXPIRED = 10014, - NFSERR_SHARE_DENIED = 10015, - NFSERR_WRONGSEC = 10016, - NFSERR_CLID_INUSE = 10017, - NFSERR_RESOURCE = 10018, - NFSERR_MOVED = 10019, - NFSERR_NOFILEHANDLE = 10020, - NFSERR_MINOR_VERS_MISMATCH = 10021, - NFSERR_STALE_CLIENTID = 10022, - NFSERR_STALE_STATEID = 10023, - NFSERR_OLD_STATEID = 10024, - NFSERR_BAD_STATEID = 10025, - NFSERR_BAD_SEQID = 10026, - NFSERR_NOT_SAME = 10027, - NFSERR_LOCK_RANGE = 10028, - NFSERR_SYMLINK = 10029, - NFSERR_RESTOREFH = 10030, - NFSERR_LEASE_MOVED = 10031, - NFSERR_ATTRNOTSUPP = 10032, - NFSERR_NO_GRACE = 10033, - NFSERR_RECLAIM_BAD = 10034, - NFSERR_RECLAIM_CONFLICT = 10035, - NFSERR_BAD_XDR = 10036, - NFSERR_LOCKS_HELD = 10037, - NFSERR_OPENMODE = 10038, - NFSERR_BADOWNER = 10039, - NFSERR_BADCHAR = 10040, - NFSERR_BADNAME = 10041, - NFSERR_BAD_RANGE = 10042, - NFSERR_LOCK_NOTSUPP = 10043, - NFSERR_OP_ILLEGAL = 10044, - NFSERR_DEADLOCK = 10045, - NFSERR_FILE_OPEN = 10046, - NFSERR_ADMIN_REVOKED = 10047, - NFSERR_CB_PATH_DOWN = 10048, -}; - -enum nfsstat4 { - NFS4_OK = 0, - NFS4ERR_PERM = 1, - NFS4ERR_NOENT = 2, - NFS4ERR_IO = 5, - NFS4ERR_NXIO = 6, - NFS4ERR_ACCESS = 13, - NFS4ERR_EXIST = 17, - NFS4ERR_XDEV = 18, - NFS4ERR_NOTDIR = 20, - NFS4ERR_ISDIR = 21, - NFS4ERR_INVAL = 22, - NFS4ERR_FBIG = 27, - NFS4ERR_NOSPC = 28, - NFS4ERR_ROFS = 30, - NFS4ERR_MLINK = 31, - NFS4ERR_NAMETOOLONG = 63, - NFS4ERR_NOTEMPTY = 66, - NFS4ERR_DQUOT = 69, - NFS4ERR_STALE = 70, - NFS4ERR_BADHANDLE = 10001, - NFS4ERR_BAD_COOKIE = 10003, - NFS4ERR_NOTSUPP = 10004, - NFS4ERR_TOOSMALL = 10005, - NFS4ERR_SERVERFAULT = 10006, - NFS4ERR_BADTYPE = 10007, - NFS4ERR_DELAY = 10008, - NFS4ERR_SAME = 10009, - NFS4ERR_DENIED = 10010, - NFS4ERR_EXPIRED = 10011, - NFS4ERR_LOCKED = 10012, - NFS4ERR_GRACE = 10013, - NFS4ERR_FHEXPIRED = 10014, - NFS4ERR_SHARE_DENIED = 10015, - NFS4ERR_WRONGSEC = 10016, - NFS4ERR_CLID_INUSE = 10017, - NFS4ERR_RESOURCE = 10018, - NFS4ERR_MOVED = 10019, - NFS4ERR_NOFILEHANDLE = 10020, - NFS4ERR_MINOR_VERS_MISMATCH = 10021, - NFS4ERR_STALE_CLIENTID = 10022, - NFS4ERR_STALE_STATEID = 10023, - NFS4ERR_OLD_STATEID = 10024, - NFS4ERR_BAD_STATEID = 10025, - NFS4ERR_BAD_SEQID = 10026, - NFS4ERR_NOT_SAME = 10027, - NFS4ERR_LOCK_RANGE = 10028, - NFS4ERR_SYMLINK = 10029, - NFS4ERR_RESTOREFH = 10030, - NFS4ERR_LEASE_MOVED = 10031, - NFS4ERR_ATTRNOTSUPP = 10032, - NFS4ERR_NO_GRACE = 10033, - NFS4ERR_RECLAIM_BAD = 10034, - NFS4ERR_RECLAIM_CONFLICT = 10035, - NFS4ERR_BADXDR = 10036, - NFS4ERR_LOCKS_HELD = 10037, - NFS4ERR_OPENMODE = 10038, - NFS4ERR_BADOWNER = 10039, - NFS4ERR_BADCHAR = 10040, - NFS4ERR_BADNAME = 10041, - NFS4ERR_BAD_RANGE = 10042, - NFS4ERR_LOCK_NOTSUPP = 10043, - NFS4ERR_OP_ILLEGAL = 10044, - NFS4ERR_DEADLOCK = 10045, - NFS4ERR_FILE_OPEN = 10046, - NFS4ERR_ADMIN_REVOKED = 10047, - NFS4ERR_CB_PATH_DOWN = 10048, - NFS4ERR_BADIOMODE = 10049, - NFS4ERR_BADLAYOUT = 10050, - NFS4ERR_BAD_SESSION_DIGEST = 10051, - NFS4ERR_BADSESSION = 10052, - NFS4ERR_BADSLOT = 10053, - NFS4ERR_COMPLETE_ALREADY = 10054, - NFS4ERR_CONN_NOT_BOUND_TO_SESSION = 10055, - NFS4ERR_DELEG_ALREADY_WANTED = 10056, - NFS4ERR_BACK_CHAN_BUSY = 10057, - NFS4ERR_LAYOUTTRYLATER = 10058, - NFS4ERR_LAYOUTUNAVAILABLE = 10059, - NFS4ERR_NOMATCHING_LAYOUT = 10060, - NFS4ERR_RECALLCONFLICT = 10061, - NFS4ERR_UNKNOWN_LAYOUTTYPE = 10062, - NFS4ERR_SEQ_MISORDERED = 10063, - NFS4ERR_SEQUENCE_POS = 10064, - NFS4ERR_REQ_TOO_BIG = 10065, - NFS4ERR_REP_TOO_BIG = 10066, - NFS4ERR_REP_TOO_BIG_TO_CACHE = 10067, - NFS4ERR_RETRY_UNCACHED_REP = 10068, - NFS4ERR_UNSAFE_COMPOUND = 10069, - NFS4ERR_TOO_MANY_OPS = 10070, - NFS4ERR_OP_NOT_IN_SESSION = 10071, - NFS4ERR_HASH_ALG_UNSUPP = 10072, - NFS4ERR_CLIENTID_BUSY = 10074, - NFS4ERR_PNFS_IO_HOLE = 10075, - NFS4ERR_SEQ_FALSE_RETRY = 10076, - NFS4ERR_BAD_HIGH_SLOT = 10077, - NFS4ERR_DEADSESSION = 10078, - NFS4ERR_ENCR_ALG_UNSUPP = 10079, - NFS4ERR_PNFS_NO_LAYOUT = 10080, - NFS4ERR_NOT_ONLY_OP = 10081, - NFS4ERR_WRONG_CRED = 10082, - NFS4ERR_WRONG_TYPE = 10083, - NFS4ERR_DIRDELEG_UNAVAIL = 10084, - NFS4ERR_REJECT_DELEG = 10085, - NFS4ERR_RETURNCONFLICT = 10086, - NFS4ERR_DELEG_REVOKED = 10087, - NFS4ERR_PARTNER_NOTSUPP = 10088, - NFS4ERR_PARTNER_NO_AUTH = 10089, - NFS4ERR_UNION_NOTSUPP = 10090, - NFS4ERR_OFFLOAD_DENIED = 10091, - NFS4ERR_WRONG_LFS = 10092, - NFS4ERR_BADLABEL = 10093, - NFS4ERR_OFFLOAD_NO_REQS = 10094, - NFS4ERR_NOXATTR = 10095, - NFS4ERR_XATTR2BIG = 10096, - NFS4ERR_FIRST_FREE = 10097, -}; - -enum { - COREDUMP_KERNEL = 1, - COREDUMP_USERSPACE = 2, - COREDUMP_REJECT = 4, - COREDUMP_WAIT = 8, -}; - -struct coredump_req { - __u32 size; - __u32 size_ack; - __u64 mask; -}; - -struct coredump_ack { - __u32 size; - __u32 spare; - __u64 mask; -}; - -enum { - COREDUMP_ACK_SIZE_VER0 = 16, -}; - -enum coredump_mark { - COREDUMP_MARK_REQACK = 0, - COREDUMP_MARK_MINSIZE = 1, - COREDUMP_MARK_MAXSIZE = 2, - COREDUMP_MARK_UNSUPPORTED = 3, - COREDUMP_MARK_CONFLICTING = 4, - __COREDUMP_MARK_MAX = 2147483648, -}; - -enum coredump_type_t { - COREDUMP_FILE = 1, - COREDUMP_PIPE = 2, - COREDUMP_SOCK = 3, - COREDUMP_SOCK_REQ = 4, -}; - -struct core_name { - char *corename; - int used; - int size; - unsigned int core_pipe_limit; - bool core_dumped; - enum coredump_type_t core_type; - u64 mask; -}; - -typedef void (*iomap_punch_t)(struct inode *, loff_t, loff_t, struct iomap *); - -struct iomap_writepage_ctx; - -struct iomap_writeback_ops { - ssize_t (*writeback_range)(struct iomap_writepage_ctx *, struct folio *, u64, unsigned int, u64); - int (*writeback_submit)(struct iomap_writepage_ctx *, int); -}; - -struct iomap_writepage_ctx { - struct iomap iomap; - struct inode *inode; - struct writeback_control *wbc; - const struct iomap_writeback_ops *ops; - u32 nr_folios; - void *wb_ctx; -}; - -struct iomap_folio_state { - spinlock_t state_lock; - unsigned int read_bytes_pending; - atomic_t write_bytes_pending; - long unsigned int state[0]; -}; - -struct iomap_readpage_ctx { - struct folio *cur_folio; - bool cur_folio_in_bio; - struct bio *bio; - struct readahead_control *rac; -}; - -struct fs_disk_quota { - __s8 d_version; - __s8 d_flags; - __u16 d_fieldmask; - __u32 d_id; - __u64 d_blk_hardlimit; - __u64 d_blk_softlimit; - __u64 d_ino_hardlimit; - __u64 d_ino_softlimit; - __u64 d_bcount; - __u64 d_icount; - __s32 d_itimer; - __s32 d_btimer; - __u16 d_iwarns; - __u16 d_bwarns; - __s8 d_itimer_hi; - __s8 d_btimer_hi; - __s8 d_rtbtimer_hi; - __s8 d_padding2; - __u64 d_rtb_hardlimit; - __u64 d_rtb_softlimit; - __u64 d_rtbcount; - __s32 d_rtbtimer; - __u16 d_rtbwarns; - __s16 d_padding3; - char d_padding4[8]; -}; - -struct fs_qfilestat { - __u64 qfs_ino; - __u64 qfs_nblks; - __u32 qfs_nextents; -}; - -typedef struct fs_qfilestat fs_qfilestat_t; - -struct fs_quota_stat { - __s8 qs_version; - __u16 qs_flags; - __s8 qs_pad; - fs_qfilestat_t qs_uquota; - fs_qfilestat_t qs_gquota; - __u32 qs_incoredqs; - __s32 qs_btimelimit; - __s32 qs_itimelimit; - __s32 qs_rtbtimelimit; - __u16 qs_bwarnlimit; - __u16 qs_iwarnlimit; -}; - -struct fs_qfilestatv { - __u64 qfs_ino; - __u64 qfs_nblks; - __u32 qfs_nextents; - __u32 qfs_pad; -}; - -struct fs_quota_statv { - __s8 qs_version; - __u8 qs_pad1; - __u16 qs_flags; - __u32 qs_incoredqs; - struct fs_qfilestatv qs_uquota; - struct fs_qfilestatv qs_gquota; - struct fs_qfilestatv qs_pquota; - __s32 qs_btimelimit; - __s32 qs_itimelimit; - __s32 qs_rtbtimelimit; - __u16 qs_bwarnlimit; - __u16 qs_iwarnlimit; - __u16 qs_rtbwarnlimit; - __u16 qs_pad3; - __u32 qs_pad4; - __u64 qs_pad2[7]; -}; - -struct if_dqblk { - __u64 dqb_bhardlimit; - __u64 dqb_bsoftlimit; - __u64 dqb_curspace; - __u64 dqb_ihardlimit; - __u64 dqb_isoftlimit; - __u64 dqb_curinodes; - __u64 dqb_btime; - __u64 dqb_itime; - __u32 dqb_valid; -}; - -struct if_nextdqblk { - __u64 dqb_bhardlimit; - __u64 dqb_bsoftlimit; - __u64 dqb_curspace; - __u64 dqb_ihardlimit; - __u64 dqb_isoftlimit; - __u64 dqb_curinodes; - __u64 dqb_btime; - __u64 dqb_itime; - __u32 dqb_valid; - __u32 dqb_id; -}; - -struct if_dqinfo { - __u64 dqi_bgrace; - __u64 dqi_igrace; - __u32 dqi_flags; - __u32 dqi_valid; -}; - -struct compat_if_dqblk { - compat_u64 dqb_bhardlimit; - compat_u64 dqb_bsoftlimit; - compat_u64 dqb_curspace; - compat_u64 dqb_ihardlimit; - compat_u64 dqb_isoftlimit; - compat_u64 dqb_curinodes; - compat_u64 dqb_btime; - compat_u64 dqb_itime; - compat_uint_t dqb_valid; -} __attribute__((packed)); - -struct compat_fs_qfilestat { - compat_u64 dqb_bhardlimit; - compat_u64 qfs_nblks; - compat_uint_t qfs_nextents; -} __attribute__((packed)); - -struct compat_fs_quota_stat { - __s8 qs_version; - __u16 qs_flags; - __s8 qs_pad; - long: 0; - struct compat_fs_qfilestat qs_uquota; - struct compat_fs_qfilestat qs_gquota; - compat_uint_t qs_incoredqs; - compat_int_t qs_btimelimit; - compat_int_t qs_itimelimit; - compat_int_t qs_rtbtimelimit; - __u16 qs_bwarnlimit; - __u16 qs_iwarnlimit; -}; - -struct pde_opener { - struct list_head lh; - struct file *file; - bool closing; - struct completion *c; -}; - -enum { - BIAS = 2147483648, -}; - -typedef struct dentry *instantiate_t(struct dentry *, struct task_struct *, const void *); - -struct fd_data { - fmode_t mode; - unsigned int fd; -}; - -struct elf_prpsinfo { - char pr_state; - char pr_sname; - char pr_zomb; - char pr_nice; - long unsigned int pr_flag; - __kernel_uid_t pr_uid; - __kernel_gid_t pr_gid; - pid_t pr_pid; - pid_t pr_ppid; - pid_t pr_pgrp; - pid_t pr_sid; - char pr_fname[16]; - char pr_psargs[80]; -}; - -struct kernfs_open_node { - struct callback_head callback_head; - atomic_t event; - wait_queue_head_t poll; - struct list_head files; - unsigned int nr_mmapped; - unsigned int nr_to_release; -}; - -enum SHIFT_DIRECTION { - SHIFT_LEFT = 0, - SHIFT_RIGHT = 1, -}; - -struct ext4_io_end_vec { - struct list_head list; - loff_t offset; - ssize_t size; -}; - -struct ext4_io_end { - struct list_head list; - handle_t *handle; - struct inode *inode; - struct bio *bio; - unsigned int flag; - refcount_t count; - struct list_head list_vec; -}; - -typedef struct ext4_io_end ext4_io_end_t; - -struct ext4_extent_tail { - __le32 et_checksum; -}; - -struct partial_cluster { - ext4_fsblk_t pclu; - ext4_lblk_t lblk; - enum { - initial = 0, - tofree = 1, - nofree = 2, - } state; -}; - -typedef short unsigned int __kernel_uid16_t; - -typedef short unsigned int __kernel_gid16_t; - -typedef __kernel_uid16_t uid16_t; - -typedef __kernel_gid16_t gid16_t; - -struct ext4_io_submit { - struct writeback_control *io_wbc; - struct bio *io_bio; - ext4_io_end_t *io_end; - sector_t io_next_block; -}; - -struct ext4_xattr_inode_array { - unsigned int count; - struct inode *inodes[0]; -}; - -struct mpage_da_data { - struct inode *inode; - struct writeback_control *wbc; - unsigned int can_map: 1; - loff_t start_pos; - loff_t next_pos; - loff_t end_pos; - struct ext4_map_blocks map; - struct ext4_io_submit io_submit; - unsigned int do_map: 1; - unsigned int scanned_until_end: 1; - unsigned int journalled_more_data: 1; -}; - -struct ext4_dir_entry { - __le32 inode; - __le16 rec_len; - __le16 name_len; - char name[255]; -}; - -struct ext4_dir_entry_tail { - __le32 det_reserved_zero1; - __le16 det_rec_len; - __u8 det_reserved_zero2; - __u8 det_reserved_ft; - __le32 det_checksum; -}; - -typedef enum { - EITHER = 0, - INDEX = 1, - DIRENT = 2, - DIRENT_HTREE = 3, -} dirblock_type_t; - -struct fake_dirent { - __le32 inode; - __le16 rec_len; - u8 name_len; - u8 file_type; -}; - -struct dx_countlimit { - __le16 limit; - __le16 count; -}; - -struct dx_entry { - __le32 hash; - __le32 block; -}; - -struct dx_root_info { - __le32 reserved_zero; - u8 hash_version; - u8 info_length; - u8 indirect_levels; - u8 unused_flags; -}; - -struct dx_root { - struct fake_dirent dot; - char dot_name[4]; - struct fake_dirent dotdot; - char dotdot_name[4]; - struct dx_root_info info; - struct dx_entry entries[0]; -}; - -struct dx_node { - struct fake_dirent fake; - struct dx_entry entries[0]; -}; - -struct dx_frame { - struct buffer_head *bh; - struct dx_entry *entries; - struct dx_entry *at; -}; - -struct dx_map_entry { - u32 hash; - u16 offs; - u16 size; -}; - -struct dx_tail { - u32 dt_reserved; - __le32 dt_checksum; -}; - -struct ext4_renament { - struct inode *dir; - struct dentry *dentry; - struct inode *inode; - bool is_dir; - int dir_nlink_delta; - struct buffer_head *bh; - struct ext4_dir_entry_2 *de; - int inlined; - struct buffer_head *dir_bh; - struct ext4_dir_entry_2 *parent_de; - int dir_inlined; -}; - -enum { - MBE_REFERENCED_B = 0, - MBE_REUSABLE_B = 1, -}; - -struct mb_cache_entry { - struct list_head e_list; - struct hlist_bl_node e_hash_list; - atomic_t e_refcnt; - u32 e_key; - long unsigned int e_flags; - u64 e_value; -}; - -struct ext4_xattr_header { - __le32 h_magic; - __le32 h_refcount; - __le32 h_blocks; - __le32 h_hash; - __le32 h_checksum; - __u32 h_reserved[3]; -}; - -struct ext4_xattr_block_find { - struct ext4_xattr_search s; - struct buffer_head *bh; -}; - -struct ext4_orphan_block_tail { - __le32 ob_magic; - __le32 ob_checksum; -}; - -struct squashfs_stream___2 { - void *comp_opts; - struct list_head strm_list; - struct mutex mutex; - int avail_decomp; - wait_queue_head_t wait; -}; - -struct decomp_stream { - void *stream; - struct list_head list; -}; - -struct lz4_comp_opts { - __le32 version; - __le32 flags; -}; - -struct squashfs_lz4 { - void *input; - void *output; -}; - -struct workspace { - void *mem; - size_t mem_size; - size_t window_size; -}; - -struct fat_cache { - struct list_head cache_list; - int nr_contig; - int fcluster; - int dcluster; -}; - -struct fat_cache_id { - unsigned int id; - int nr_contig; - int fcluster; - int dcluster; -}; - -struct fat_boot_fsinfo { - __le32 signature1; - __le32 reserved1[120]; - __le32 signature2; - __le32 free_clusters; - __le32 next_cluster; - __le32 reserved2[4]; -}; - -struct fat_bios_param_block { - u16 fat_sector_size; - u8 fat_sec_per_clus; - u16 fat_reserved; - u8 fat_fats; - u16 fat_dir_entries; - u16 fat_sectors; - u16 fat_fat_length; - u32 fat_total_sect; - u8 fat16_state; - u32 fat16_vol_id; - u32 fat32_length; - u32 fat32_root_cluster; - u16 fat32_info_sector; - u8 fat32_state; - u32 fat32_vol_id; -}; - -struct fat_floppy_defaults { - unsigned int nr_sectors; - unsigned int sec_per_clus; - unsigned int dir_entries; - unsigned int media; - unsigned int fat_length; -}; - -enum { - Opt_check = 0, - Opt_uid___6 = 1, - Opt_gid___7 = 2, - Opt_umask = 3, - Opt_dmask = 4, - Opt_fmask = 5, - Opt_allow_utime = 6, - Opt_codepage = 7, - Opt_usefree = 8, - Opt_nocase = 9, - Opt_quiet = 10, - Opt_showexec = 11, - Opt_debug = 12, - Opt_immutable = 13, - Opt_dots = 14, - Opt_dotsOK = 15, - Opt_charset = 16, - Opt_shortname = 17, - Opt_utf8 = 18, - Opt_utf8_bool = 19, - Opt_uni_xl = 20, - Opt_uni_xl_bool = 21, - Opt_nonumtail = 22, - Opt_nonumtail_bool = 23, - Opt_obsolete = 24, - Opt_flush = 25, - Opt_tz = 26, - Opt_rodir = 27, - Opt_errors = 28, - Opt_discard = 29, - Opt_nfs = 30, - Opt_nfs_enum = 31, - Opt_time_offset = 32, - Opt_dos1xfloppy = 33, -}; - -struct ecryptfs_getdents_callback { - struct dir_context ctx; - struct dir_context *caller; - struct super_block *sb; - int filldir_called; - int entries_written; -}; - -struct ecryptfs_key_sig { - struct list_head crypt_stat_list; - char keysig[17]; -}; - -struct ecryptfs_filename { - struct list_head crypt_stat_list; - u32 flags; - u32 seq_no; - char *filename; - char *encrypted_filename; - size_t filename_size; - size_t encrypted_filename_size; - char fnek_sig[16]; - char dentry_name[57]; -}; - -struct ecryptfs_key_tfm { - struct crypto_skcipher *key_tfm; - size_t key_size; - struct mutex key_tfm_mutex; - struct list_head key_tfm_list; - unsigned char cipher_name[32]; -}; - -struct ecryptfs_flag_map_elem { - u32 file_flag; - u32 local_flag; -}; - -struct ecryptfs_cipher_code_str_map_elem { - char cipher_str[16]; - u8 cipher_code; -}; - -typedef u32 unicode_t; - -struct utf8_table { - int cmask; - int cval; - int shift; - long int lmask; - long int lval; -}; - -enum fuse_ext_type { - FUSE_MAX_NR_SECCTX = 31, - FUSE_EXT_GROUPS = 32, -}; - -struct fuse_getattr_in { - uint32_t getattr_flags; - uint32_t dummy; - uint64_t fh; -}; - -struct fuse_attr_out { - uint64_t attr_valid; - uint32_t attr_valid_nsec; - uint32_t dummy; - struct fuse_attr attr; -}; - -struct fuse_statx_in { - uint32_t getattr_flags; - uint32_t reserved; - uint64_t fh; - uint32_t sx_flags; - uint32_t sx_mask; -}; - -struct fuse_statx_out { - uint64_t attr_valid; - uint32_t attr_valid_nsec; - uint32_t flags; - uint64_t spare[2]; - struct fuse_statx stat; -}; - -struct fuse_mknod_in { - uint32_t mode; - uint32_t rdev; - uint32_t umask; - uint32_t padding; -}; - -struct fuse_mkdir_in { - uint32_t mode; - uint32_t umask; -}; - -struct fuse_rename2_in { - uint64_t newdir; - uint32_t flags; - uint32_t padding; -}; - -struct fuse_link_in { - uint64_t oldnodeid; -}; - -struct fuse_setattr_in { - uint32_t valid; - uint32_t padding; - uint64_t fh; - uint64_t size; - uint64_t lock_owner; - uint64_t atime; - uint64_t mtime; - uint64_t ctime; - uint32_t atimensec; - uint32_t mtimensec; - uint32_t ctimensec; - uint32_t mode; - uint32_t unused4; - uint32_t uid; - uint32_t gid; - uint32_t unused5; -}; - -struct fuse_create_in { - uint32_t flags; - uint32_t mode; - uint32_t umask; - uint32_t open_flags; -}; - -struct fuse_access_in { - uint32_t mask; - uint32_t padding; -}; - -struct fuse_secctx { - uint32_t size; - uint32_t padding; -}; - -struct fuse_secctx_header { - uint32_t size; - uint32_t nr_secctx; -}; - -struct fuse_ext_header { - uint32_t size; - uint32_t type; -}; - -struct fuse_supp_groups { - uint32_t nr_groups; - uint32_t groups[0]; -}; - -struct fuse_setupmapping_in { - uint64_t fh; - uint64_t foffset; - uint64_t len; - uint64_t flags; - uint64_t moffset; -}; - -struct fuse_removemapping_in { - uint32_t count; -}; - -struct fuse_removemapping_one { - uint64_t moffset; - uint64_t len; -}; - -struct fuse_inode_dax { - struct rw_semaphore sem; - struct rb_root_cached tree; - long unsigned int nr; -}; - -struct fuse_conn_dax { - struct dax_device *dev; - spinlock_t lock; - long unsigned int nr_busy_ranges; - struct list_head busy_ranges; - struct delayed_work free_work; - wait_queue_head_t range_waitq; - long int nr_free_ranges; - struct list_head free_ranges; - long unsigned int nr_ranges; -}; - -struct fuse_dax_mapping { - struct inode *inode; - struct list_head list; - struct interval_tree_node itn; - struct list_head busy_list; - u64 window_offset; - loff_t length; - bool writable; - refcount_t refcnt; -}; - -enum { - HAS_READ = 1, - HAS_WRITE = 2, - HAS_LSEEK = 4, - HAS_POLL = 8, - HAS_IOCTL = 16, -}; - -enum dbgfs_get_mode { - DBGFS_GET_ALREADY = 0, - DBGFS_GET_REGULAR = 1, - DBGFS_GET_SHORT = 2, -}; - -struct debugfs_devm_entry { - int (*read)(struct seq_file *, void *); - struct device *dev; -}; - -struct rdt_fs_context { - struct kernfs_fs_context kfc; - bool enable_cdpl2; - bool enable_cdpl3; - bool enable_mba_mbps; - bool enable_debug; -}; - -struct rftype { - char *name; - umode_t mode; - const struct kernfs_ops *kf_ops; - long unsigned int flags; - long unsigned int fflags; - int (*seq_show)(struct kernfs_open_file *, struct seq_file *, void *); - ssize_t (*write)(struct kernfs_open_file *, char *, size_t, loff_t); -}; - -enum rdt_param { - Opt_cdp = 0, - Opt_cdpl2 = 1, - Opt_mba_mbps = 2, - Opt_debug___2 = 3, - nr__rdt_params = 4, -}; - -struct msg_msgseg { - struct msg_msgseg *next; -}; - -struct compat_shmid64_ds { - struct compat_ipc64_perm shm_perm; - compat_size_t shm_segsz; - compat_ulong_t shm_atime; - compat_ulong_t shm_atime_high; - compat_ulong_t shm_dtime; - compat_ulong_t shm_dtime_high; - compat_ulong_t shm_ctime; - compat_ulong_t shm_ctime_high; - compat_pid_t shm_cpid; - compat_pid_t shm_lpid; - compat_ulong_t shm_nattch; - compat_ulong_t __unused4; - compat_ulong_t __unused5; -}; - -struct shmid_ds { - struct ipc_perm shm_perm; - int shm_segsz; - __kernel_old_time_t shm_atime; - __kernel_old_time_t shm_dtime; - __kernel_old_time_t shm_ctime; - __kernel_ipc_pid_t shm_cpid; - __kernel_ipc_pid_t shm_lpid; - short unsigned int shm_nattch; - short unsigned int shm_unused; - void *shm_unused2; - void *shm_unused3; -}; - -struct shmid64_ds { - struct ipc64_perm shm_perm; - __kernel_size_t shm_segsz; - long int shm_atime; - long int shm_dtime; - long int shm_ctime; - __kernel_pid_t shm_cpid; - __kernel_pid_t shm_lpid; - long unsigned int shm_nattch; - long unsigned int __unused4; - long unsigned int __unused5; -}; - -struct shminfo64 { - long unsigned int shmmax; - long unsigned int shmmin; - long unsigned int shmmni; - long unsigned int shmseg; - long unsigned int shmall; - long unsigned int __unused1; - long unsigned int __unused2; - long unsigned int __unused3; - long unsigned int __unused4; -}; - -struct shminfo { - int shmmax; - int shmmin; - int shmmni; - int shmseg; - int shmall; -}; - -struct shm_info { - int used_ids; - __kernel_ulong_t shm_tot; - __kernel_ulong_t shm_rss; - __kernel_ulong_t shm_swp; - __kernel_ulong_t swap_attempts; - __kernel_ulong_t swap_successes; -}; - -struct shmid_kernel { - struct kern_ipc_perm shm_perm; - struct file *shm_file; - long unsigned int shm_nattch; - long unsigned int shm_segsz; - time64_t shm_atim; - time64_t shm_dtim; - time64_t shm_ctim; - struct pid *shm_cprid; - struct pid *shm_lprid; - struct ucounts *mlock_ucounts; - struct task_struct *shm_creator; - struct list_head shm_clist; - struct ipc_namespace *ns; - long: 64; - long: 64; - long: 64; -}; - -struct shm_file_data { - int id; - struct ipc_namespace *ns; - struct file *file; - const struct vm_operations_struct *vm_ops; -}; - -struct compat_shmid_ds { - struct compat_ipc_perm shm_perm; - int shm_segsz; - old_time32_t shm_atime; - old_time32_t shm_dtime; - old_time32_t shm_ctime; - compat_ipc_pid_t shm_cpid; - compat_ipc_pid_t shm_lpid; - short unsigned int shm_nattch; - short unsigned int shm_unused; - compat_uptr_t shm_unused2; - compat_uptr_t shm_unused3; -}; - -struct compat_shminfo64 { - compat_ulong_t shmmax; - compat_ulong_t shmmin; - compat_ulong_t shmmni; - compat_ulong_t shmseg; - compat_ulong_t shmall; - compat_ulong_t __unused1; - compat_ulong_t __unused2; - compat_ulong_t __unused3; - compat_ulong_t __unused4; -}; - -struct compat_shm_info { - compat_int_t used_ids; - compat_ulong_t shm_tot; - compat_ulong_t shm_rss; - compat_ulong_t shm_swp; - compat_ulong_t swap_attempts; - compat_ulong_t swap_successes; -}; - -enum { - Opt_err___5 = 0, - Opt_enc = 1, - Opt_hash___2 = 2, -}; - -enum tpm_algorithms { - TPM_ALG_ERROR = 0, - TPM_ALG_SHA1 = 4, - TPM_ALG_AES = 6, - TPM_ALG_KEYEDHASH = 8, - TPM_ALG_SHA256 = 11, - TPM_ALG_SHA384 = 12, - TPM_ALG_SHA512 = 13, - TPM_ALG_NULL = 16, - TPM_ALG_SM3_256 = 18, - TPM_ALG_ECC = 35, - TPM_ALG_CFB = 67, -}; - -enum tpm2_object_attributes { - TPM2_OA_FIXED_TPM = 2, - TPM2_OA_ST_CLEAR = 4, - TPM2_OA_FIXED_PARENT = 16, - TPM2_OA_SENSITIVE_DATA_ORIGIN = 32, - TPM2_OA_USER_WITH_AUTH = 64, - TPM2_OA_ADMIN_WITH_POLICY = 128, - TPM2_OA_NO_DA = 1024, - TPM2_OA_ENCRYPTED_DUPLICATION = 2048, - TPM2_OA_RESTRICTED = 65536, - TPM2_OA_DECRYPT = 131072, - TPM2_OA_SIGN = 262144, -}; - -enum tpm2_session_attributes { - TPM2_SA_CONTINUE_SESSION = 1, - TPM2_SA_AUDIT_EXCLUSIVE = 2, - TPM2_SA_AUDIT_RESET = 8, - TPM2_SA_DECRYPT = 32, - TPM2_SA_ENCRYPT = 64, - TPM2_SA_AUDIT = 128, -}; - -struct tpm2_hash { - unsigned int crypto_id; - unsigned int tpm_id; -}; - -struct trusted_key_options { - uint16_t keytype; - uint32_t keyhandle; - unsigned char keyauth[20]; - uint32_t blobauth_len; - unsigned char blobauth[20]; - uint32_t pcrinfo_len; - unsigned char pcrinfo[64]; - int pcrlock; - uint32_t hash; - uint32_t policydigest_len; - unsigned char policydigest[64]; - uint32_t policyhandle; -}; - -struct tpm2_key_context { - u32 parent; - const u8 *pub; - u32 pub_len; - const u8 *priv; - u32 priv_len; -}; - -enum { - SELNL_MSG_SETENFORCE = 16, - SELNL_MSG_POLICYLOAD = 17, - SELNL_MSG_MAX = 18, -}; - -enum selinux_nlgroups { - SELNLGRP_NONE = 0, - SELNLGRP_AVC = 1, - __SELNLGRP_MAX = 2, -}; - -struct selnl_msg_setenforce { - __s32 val; -}; - -struct selnl_msg_policyload { - __u32 seqno; -}; - -struct netif_security_struct { - const struct net *ns; - int ifindex; - u32 sid; -}; - -struct sel_netif { - struct list_head list; - struct netif_security_struct nsec; - struct callback_head callback_head; -}; - -struct sidtab_str_cache { - struct callback_head rcu_member; - struct list_head lru_member; - struct sidtab_entry *parent; - u32 len; - char str[0]; -}; - -struct selinux_mapping; - -struct selinux_map { - struct selinux_mapping *mapping; - u16 size; -}; - -struct selinux_policy { - struct sidtab *sidtab; - struct policydb policydb; - struct selinux_map map; - u32 latest_granting; -}; - -struct selinux_policy_convert_data { - struct convert_context_args args; - struct sidtab_convert_params sidtab_params; -}; - -struct selinux_mapping { - u16 value; - u16 num_perms; - u32 perms[32]; -}; - -struct superblock_security_struct { - u32 sid; - u32 def_sid; - u32 mntpoint_sid; - short unsigned int behavior; - short unsigned int flags; - struct mutex lock; - struct list_head isec_head; - spinlock_t isec_lock; -}; - -enum sctp_msg_flags { - MSG_NOTIFICATION = 32768, -}; - -enum sctp_cid { - SCTP_CID_DATA = 0, - SCTP_CID_INIT = 1, - SCTP_CID_INIT_ACK = 2, - SCTP_CID_SACK = 3, - SCTP_CID_HEARTBEAT = 4, - SCTP_CID_HEARTBEAT_ACK = 5, - SCTP_CID_ABORT = 6, - SCTP_CID_SHUTDOWN = 7, - SCTP_CID_SHUTDOWN_ACK = 8, - SCTP_CID_ERROR = 9, - SCTP_CID_COOKIE_ECHO = 10, - SCTP_CID_COOKIE_ACK = 11, - SCTP_CID_ECN_ECNE = 12, - SCTP_CID_ECN_CWR = 13, - SCTP_CID_SHUTDOWN_COMPLETE = 14, - SCTP_CID_AUTH = 15, - SCTP_CID_I_DATA = 64, - SCTP_CID_FWD_TSN = 192, - SCTP_CID_ASCONF = 193, - SCTP_CID_I_FWD_TSN = 194, - SCTP_CID_ASCONF_ACK = 128, - SCTP_CID_RECONF = 130, - SCTP_CID_PAD = 132, -}; - -enum { - SCTP_MAX_STREAM = 65535, -}; - -enum sctp_event_timeout { - SCTP_EVENT_TIMEOUT_NONE = 0, - SCTP_EVENT_TIMEOUT_T1_COOKIE = 1, - SCTP_EVENT_TIMEOUT_T1_INIT = 2, - SCTP_EVENT_TIMEOUT_T2_SHUTDOWN = 3, - SCTP_EVENT_TIMEOUT_T3_RTX = 4, - SCTP_EVENT_TIMEOUT_T4_RTO = 5, - SCTP_EVENT_TIMEOUT_T5_SHUTDOWN_GUARD = 6, - SCTP_EVENT_TIMEOUT_HEARTBEAT = 7, - SCTP_EVENT_TIMEOUT_RECONF = 8, - SCTP_EVENT_TIMEOUT_PROBE = 9, - SCTP_EVENT_TIMEOUT_SACK = 10, - SCTP_EVENT_TIMEOUT_AUTOCLOSE = 11, -}; - -enum { - SCTP_MAX_DUP_TSNS = 16, -}; - -enum { - SCTP_AUTH_HMAC_ID_RESERVED_0 = 0, - SCTP_AUTH_HMAC_ID_SHA1 = 1, - SCTP_AUTH_HMAC_ID_RESERVED_2 = 2, - SCTP_AUTH_HMAC_ID_SHA256 = 3, - __SCTP_AUTH_HMAC_MAX = 4, -}; - -struct selinux_audit_rule { - u32 au_seqno; - struct context au_ctxt; -}; - -struct pkey_security_struct { - u64 subnet_prefix; - u16 pkey; - u32 sid; -}; - -struct sel_ib_pkey_bkt { - int size; - struct list_head list; -}; - -struct sel_ib_pkey { - struct pkey_security_struct psec; - struct list_head list; - struct callback_head rcu; -}; - -struct socket_smack { - struct smack_known *smk_out; - struct smack_known *smk_in; - struct smack_known *smk_packet; - int smk_state; -}; - -enum tomoyo_securityfs_interface_index { - TOMOYO_DOMAINPOLICY = 0, - TOMOYO_EXCEPTIONPOLICY = 1, - TOMOYO_PROCESS_STATUS = 2, - TOMOYO_STAT = 3, - TOMOYO_AUDIT = 4, - TOMOYO_VERSION = 5, - TOMOYO_PROFILE = 6, - TOMOYO_QUERY = 7, - TOMOYO_MANAGER = 8, -}; - -struct tomoyo_task_acl { - struct tomoyo_acl_info head; - const struct tomoyo_path_info *domainname; -}; - -struct tomoyo_path_number_acl { - struct tomoyo_acl_info head; - u8 perm; - struct tomoyo_name_union name; - struct tomoyo_number_union number; -}; - -struct tomoyo_mkdev_acl { - struct tomoyo_acl_info head; - u8 perm; - struct tomoyo_name_union name; - struct tomoyo_number_union mode; - struct tomoyo_number_union major; - struct tomoyo_number_union minor; -}; - -struct tomoyo_path2_acl { - struct tomoyo_acl_info head; - u8 perm; - struct tomoyo_name_union name1; - struct tomoyo_name_union name2; -}; - -struct tomoyo_mount_acl { - struct tomoyo_acl_info head; - struct tomoyo_name_union dev_name; - struct tomoyo_name_union dir_name; - struct tomoyo_name_union fs_type; - struct tomoyo_number_union flags; -}; - -struct tomoyo_inet_acl { - struct tomoyo_acl_info head; - u8 protocol; - u8 perm; - struct tomoyo_ipaddr_union address; - struct tomoyo_number_union port; -}; - -struct tomoyo_unix_acl { - struct tomoyo_acl_info head; - u8 protocol; - u8 perm; - struct tomoyo_name_union name; -}; - -struct tomoyo_io_buffer { - void (*read)(struct tomoyo_io_buffer *); - int (*write)(struct tomoyo_io_buffer *); - __poll_t (*poll)(struct file *, poll_table *); - struct mutex io_sem; - char *read_user_buf; - size_t read_user_buf_avail; - struct { - struct list_head *ns; - struct list_head *domain; - struct list_head *group; - struct list_head *acl; - size_t avail; - unsigned int step; - unsigned int query_index; - u16 index; - u16 cond_index; - u8 acl_group_index; - u8 cond_step; - u8 bit; - u8 w_pos; - bool eof; - bool print_this_domain_only; - bool print_transition_related_only; - bool print_cond_part; - const char *w[64]; - } r; - struct { - struct tomoyo_policy_namespace *ns; - struct tomoyo_domain_info *domain; - size_t avail; - bool is_delete; - } w; - char *read_buf; - size_t readbuf_size; - char *write_buf; - size_t writebuf_size; - enum tomoyo_securityfs_interface_index type; - u8 users; - struct list_head list; -}; - -struct tomoyo_manager { - struct tomoyo_acl_head head; - const struct tomoyo_path_info *manager; -}; - -struct tomoyo_time { - u16 year; - u8 month; - u8 day; - u8 hour; - u8 min; - u8 sec; -}; - -struct tomoyo_query { - struct list_head list; - struct tomoyo_domain_info *domain; - char *query; - size_t query_len; - unsigned int serial; - u8 timer; - u8 answer; - u8 retry; -}; - -enum tomoyo_special_mount { - TOMOYO_MOUNT_BIND = 0, - TOMOYO_MOUNT_MOVE = 1, - TOMOYO_MOUNT_REMOUNT = 2, - TOMOYO_MOUNT_MAKE_UNBINDABLE = 3, - TOMOYO_MOUNT_MAKE_PRIVATE = 4, - TOMOYO_MOUNT_MAKE_SLAVE = 5, - TOMOYO_MOUNT_MAKE_SHARED = 6, - TOMOYO_MAX_SPECIAL_MOUNT = 7, -}; - -struct aa_audit_rule { - struct aa_label *label; -}; - -struct apparmor_notif_op { - struct apparmor_notif base; - __u32 allow; - __u32 deny; - pid_t pid; - __u32 label; - __u16 class; - __u16 op; -}; - -struct apparmor_tags_header_v5 { - __u32 mask; - __u32 count; - __u32 tagset; -}; - -struct apparmor_notif_file { - struct apparmor_notif_op base; - uid_t subj_uid; - uid_t obj_uid; - __u32 name; - __u8 data[0]; -}; - -struct apparmor_notif_file_v5 { - struct apparmor_notif_op base; - uid_t subj_uid; - uid_t obj_uid; - __u32 name; - __u32 tags; - __u16 tags_count; - __u8 data[0]; -} __attribute__((packed)); - -union apparmor_notif_recv { - struct { - struct apparmor_notif_op base; - uid_t subj_uid; - uid_t obj_uid; - __u32 name; - __u8 data[0]; - }; - struct { - struct apparmor_notif_file file; - } v3; - struct { - struct apparmor_notif_file_v5 file; - } v5; -}; - -union apparmor_notif_register { - struct { - struct apparmor_notif_register_v5 registration; - struct apparmor_notif_resend_v5 resend; - } v5; -}; - -union apparmor_notif_all { - struct apparmor_notif_common common; - struct apparmor_notif base; - struct apparmor_notif_op op; - struct apparmor_notif_file filev3; - struct apparmor_notif_file_v5 file; - union apparmor_notif_filters filter; - union apparmor_notif_recv recv; - union apparmor_notif_resp respnse; - union apparmor_notif_register registration; -}; - -struct landlock_object; - -struct landlock_object_underops { - void (*release)(struct landlock_object * const); -}; - -struct landlock_object { - refcount_t usage; - spinlock_t lock; - void *underobj; - union { - struct callback_head rcu_free; - const struct landlock_object_underops *underops; - }; -}; - -struct landlock_layer { - u16 level; - access_mask_t access; -}; - -union landlock_key { - struct landlock_object *object; - uintptr_t data; -}; - -enum landlock_key_type { - LANDLOCK_KEY_INODE = 1, - LANDLOCK_KEY_NET_PORT = 2, -}; - -struct landlock_id { - union landlock_key key; - const enum landlock_key_type type; -}; - -struct landlock_rule { - struct rb_node node; - union landlock_key key; - u32 num_layers; - struct landlock_layer layers[0]; -}; - -typedef access_mask_t get_access_mask_t(const struct landlock_ruleset * const, const u16); - -typedef struct { - efi_guid_t signature_owner; - u8 signature_data[0]; -} efi_signature_data_t; - -typedef struct { - efi_guid_t signature_type; - u32 signature_list_size; - u32 signature_header_size; - u32 signature_size; - u8 signature_header[0]; -} efi_signature_list_t; - -enum tpm_pcrs { - TPM_PCR0 = 0, - TPM_PCR8 = 8, - TPM_PCR10 = 10, -}; - -struct ima_kexec_hdr { - u16 version; - u16 _reserved0; - u32 _reserved1; - u64 buffer_size; - u64 count; -}; - -enum header_fields { - HDR_PCR = 0, - HDR_DIGEST = 1, - HDR_TEMPLATE_NAME = 2, - HDR_TEMPLATE_DATA = 3, - HDR__LAST = 4, -}; - -struct ima_key_entry { - struct list_head list; - void *payload; - size_t payload_len; - char *keyring_name; -}; - -struct h_misc { - long unsigned int ino; - __u32 generation; - uid_t uid; - gid_t gid; - umode_t mode; -}; - -enum { - SKCIPHER_WALK_SLOW = 1, - SKCIPHER_WALK_COPY = 2, - SKCIPHER_WALK_DIFF = 4, - SKCIPHER_WALK_SLEEP = 8, -}; - -struct aead_geniv_ctx { - spinlock_t lock; - struct crypto_aead *child; - u8 salt[0]; -}; - -struct shash_instance { - void (*free)(struct shash_instance *); - union { - struct { - char head[120]; - struct crypto_instance base; - } s; - struct shash_alg alg; - }; -}; - -struct crypto_shash_spawn { - struct crypto_spawn base; -}; - -struct hkdf_testvec { - const char *test; - const u8 *ikm; - const u8 *salt; - const u8 *info; - const u8 *prk; - const u8 *okm; - u16 ikm_size; - u16 salt_size; - u16 info_size; - u16 prk_size; - u16 okm_size; -}; - -enum rsaprivkey_actions { - ACT_rsa_get_d = 0, - ACT_rsa_get_dp = 1, - ACT_rsa_get_dq = 2, - ACT_rsa_get_e = 3, - ACT_rsa_get_n = 4, - ACT_rsa_get_p = 5, - ACT_rsa_get_q = 6, - ACT_rsa_get_qinv = 7, - NR__rsaprivkey_actions = 8, -}; - -struct rsa_key { - const u8 *n; - const u8 *e; - const u8 *d; - const u8 *p; - const u8 *q; - const u8 *dp; - const u8 *dq; - const u8 *qinv; - size_t n_sz; - size_t e_sz; - size_t d_sz; - size_t p_sz; - size_t q_sz; - size_t dp_sz; - size_t dq_sz; - size_t qinv_sz; -}; - -struct rsa_mpi_key { - MPI n; - MPI e; - MPI d; - MPI p; - MPI q; - MPI dp; - MPI dq; - MPI qinv; -}; - -struct crypto_report_comp { - char type[64]; -}; - -struct scomp_scratch { - spinlock_t lock; - union { - void *src; - long unsigned int saddr; - }; -}; - -struct md5_state { - u32 hash[4]; - u64 byte_count; - u32 block[16]; -}; - -struct sha3_state { - u64 st[25]; -}; - -struct crypto_cts_ctx { - struct crypto_skcipher *child; -}; - -struct crypto_cts_reqctx { - struct scatterlist sg[2]; - unsigned int offset; - struct skcipher_request subreq; -}; - -struct drbg_string { - const unsigned char *buf; - size_t len; - struct list_head list; -}; - -typedef uint32_t drbg_flag_t; - -struct drbg_core { - drbg_flag_t flags; - __u8 statelen; - __u8 blocklen_bytes; - char cra_name[128]; - char backend_cra_name[128]; -}; - -struct drbg_state; - -struct drbg_state_ops { - int (*update)(struct drbg_state *, struct list_head *, int); - int (*generate)(struct drbg_state *, unsigned char *, unsigned int, struct list_head *); - int (*crypto_init)(struct drbg_state *); - int (*crypto_fini)(struct drbg_state *); -}; - -enum drbg_seed_state { - DRBG_SEED_STATE_UNSEEDED = 0, - DRBG_SEED_STATE_PARTIAL = 1, - DRBG_SEED_STATE_FULL = 2, -}; - -struct drbg_state { - struct mutex drbg_mutex; - unsigned char *V; - unsigned char *Vbuf; - unsigned char *C; - unsigned char *Cbuf; - size_t reseed_ctr; - size_t reseed_threshold; - unsigned char *scratchpad; - unsigned char *scratchpadbuf; - void *priv_data; - struct crypto_skcipher *ctr_handle; - struct skcipher_request *ctr_req; - __u8 *outscratchpadbuf; - __u8 *outscratchpad; - struct crypto_wait ctr_wait; - struct scatterlist sg_in; - struct scatterlist sg_out; - enum drbg_seed_state seeded; - long unsigned int last_seed_time; - bool pr; - bool fips_primed; - unsigned char *prev; - struct crypto_rng *jent; - const struct drbg_state_ops *d_ops; - const struct drbg_core *core; - struct drbg_string test_data; -}; - -enum drbg_prefixes { - DRBG_PREFIX0 = 0, - DRBG_PREFIX1 = 1, - DRBG_PREFIX2 = 2, - DRBG_PREFIX3 = 3, -}; - -struct sdesc { - struct shash_desc shash; - char ctx[0]; -}; - -struct s { - __be32 conv; -}; - -struct ecdh_ctx { - unsigned int curve_id; - unsigned int ndigits; - u64 private_key[9]; -}; - -struct bdev_inode { - struct block_device bdev; - struct inode vfs_inode; -}; - -struct bio_map_data { - bool is_our_pages: 1; - bool is_null_mapped: 1; - struct iov_iter iter; - struct iovec iov[0]; -}; - -struct blk_rq_stat { - u64 mean; - u64 min; - u64 max; - u32 nr_samples; - u64 batch; -}; - -struct blk_queue_stats { - struct list_head callbacks; - spinlock_t lock; - int accounting; -}; - -struct blk_stat_callback { - struct list_head list; - struct timer_list timer; - struct blk_rq_stat *cpu_stat; - int (*bucket_fn)(const struct request *); - unsigned int buckets; - struct blk_rq_stat *stat; - void (*timer_fn)(struct blk_stat_callback *); - void *data; - struct callback_head rcu; -}; - -struct blk_mq_hw_ctx_sysfs_entry { - struct attribute attr; - ssize_t (*show)(struct blk_mq_hw_ctx *, char *); -}; - -struct blk_major_name { - struct blk_major_name *next; - int major; - char name[16]; - void (*probe)(dev_t); -}; - -struct mac_partition { - __be16 signature; - __be16 res1; - __be32 map_count; - __be32 start_block; - __be32 block_count; - char name[32]; - char type[32]; - __be32 data_start; - __be32 data_count; - __be32 status; - __be32 boot_start; - __be32 boot_size; - __be32 boot_load; - __be32 boot_load2; - __be32 boot_entry; - __be32 boot_entry2; - __be32 boot_cksum; - char processor[16]; -}; - -struct mac_driver_desc { - __be16 signature; - __be16 block_size; - __be32 block_count; -}; - -struct d_partition___2 { - __le32 p_size; - __le32 p_offset; - __le32 p_fsize; - u8 p_fstype; - u8 p_frag; - __le16 p_cpg; -}; - -struct disklabel___2 { - __le32 d_magic; - __le16 d_type; - __le16 d_subtype; - u8 d_typename[16]; - u8 d_packname[16]; - __le32 d_secsize; - __le32 d_nsectors; - __le32 d_ntracks; - __le32 d_ncylinders; - __le32 d_secpercyl; - __le32 d_secprtunit; - __le16 d_sparespertrack; - __le16 d_sparespercyl; - __le32 d_acylinders; - __le16 d_rpm; - __le16 d_interleave; - __le16 d_trackskew; - __le16 d_cylskew; - __le32 d_headswitch; - __le32 d_trkseek; - __le32 d_flags; - __le32 d_drivedata[5]; - __le32 d_spare[5]; - __le32 d_magic2; - __le16 d_checksum; - __le16 d_npartitions; - __le32 d_bbsize; - __le32 d_sbsize; - struct d_partition___2 d_partitions[18]; -}; - -struct _gpt_header { - __le64 signature; - __le32 revision; - __le32 header_size; - __le32 header_crc32; - __le32 reserved1; - __le64 my_lba; - __le64 alternate_lba; - __le64 first_usable_lba; - __le64 last_usable_lba; - efi_guid_t disk_guid; - __le64 partition_entry_lba; - __le32 num_partition_entries; - __le32 sizeof_partition_entry; - __le32 partition_entry_array_crc32; -} __attribute__((packed)); - -typedef struct _gpt_header gpt_header; - -struct _gpt_entry_attributes { - u64 required_to_function: 1; - u64 reserved: 47; - u64 type_guid_specific: 16; -}; - -typedef struct _gpt_entry_attributes gpt_entry_attributes; - -struct _gpt_entry { - efi_guid_t partition_type_guid; - efi_guid_t unique_partition_guid; - __le64 starting_lba; - __le64 ending_lba; - gpt_entry_attributes attributes; - __le16 partition_name[36]; -}; - -typedef struct _gpt_entry gpt_entry; - -struct _gpt_mbr_record { - u8 boot_indicator; - u8 start_head; - u8 start_sector; - u8 start_track; - u8 os_type; - u8 end_head; - u8 end_sector; - u8 end_track; - __le32 starting_lba; - __le32 size_in_lba; -}; - -typedef struct _gpt_mbr_record gpt_mbr_record; - -struct _legacy_mbr { - u8 boot_code[440]; - __le32 unique_mbr_signature; - __le16 unknown; - gpt_mbr_record partition_record[4]; - __le16 signature; -} __attribute__((packed)); - -typedef struct _legacy_mbr legacy_mbr; - -struct blk_ia_range_sysfs_entry { - struct attribute attr; - ssize_t (*show)(struct blk_independent_access_range *, char *); -}; - -struct bsg_device { - struct request_queue *queue; - struct device device; - struct cdev cdev; - int max_queue; - unsigned int timeout; - unsigned int reserved_size; - bsg_sg_io_fn *sg_io_fn; -}; - -enum dd_data_dir { - DD_READ = 0, - DD_WRITE = 1, -}; - -enum { - DD_DIR_COUNT = 2, -}; - -enum dd_prio { - DD_RT_PRIO = 0, - DD_BE_PRIO = 1, - DD_IDLE_PRIO = 2, - DD_PRIO_MAX = 2, -}; - -enum { - DD_PRIO_COUNT = 3, -}; - -struct io_stats_per_prio { - uint32_t inserted; - uint32_t merged; - uint32_t dispatched; - atomic_t completed; -}; - -struct dd_per_prio { - struct rb_root sort_list[2]; - struct list_head fifo_list[2]; - sector_t latest_pos[2]; - struct io_stats_per_prio stats; -}; - -struct deadline_data { - struct list_head dispatch; - struct dd_per_prio per_prio[3]; - enum dd_data_dir last_dir; - unsigned int batching; - unsigned int starved; - int fifo_expire[2]; - int fifo_batch; - int writes_starved; - int front_merges; - u32 async_depth; - int prio_aging_expire; - spinlock_t lock; -}; - -struct blk_integrity_iter { - void *prot_buf; - void *data_buf; - sector_t seed; - unsigned int data_size; - short unsigned int interval; - const char *disk_name; -}; - -struct rq_wait { - wait_queue_head_t wait; - atomic_t inflight; -}; - -struct rq_depth { - unsigned int max_depth; - int scale_step; - bool scaled_max; - unsigned int queue_depth; - unsigned int default_depth; -}; - -typedef bool acquire_inflight_cb_t(struct rq_wait *, void *); - -typedef void cleanup_cb_t(struct rq_wait *, void *); - -struct trace_event_raw_wbt_stat { - struct trace_entry ent; - char name[32]; - s64 rmean; - u64 rmin; - u64 rmax; - s64 rnr_samples; - s64 rtime; - s64 wmean; - u64 wmin; - u64 wmax; - s64 wnr_samples; - s64 wtime; - char __data[0]; -}; - -struct trace_event_raw_wbt_lat { - struct trace_entry ent; - char name[32]; - long unsigned int lat; - char __data[0]; -}; - -struct trace_event_raw_wbt_step { - struct trace_entry ent; - char name[32]; - const char *msg; - int step; - long unsigned int window; - unsigned int bg; - unsigned int normal; - unsigned int max; - char __data[0]; -}; - -struct trace_event_raw_wbt_timer { - struct trace_entry ent; - char name[32]; - unsigned int status; - int step; - unsigned int inflight; - char __data[0]; -}; - -struct trace_event_data_offsets_wbt_stat {}; - -struct trace_event_data_offsets_wbt_lat {}; - -struct trace_event_data_offsets_wbt_step {}; - -struct trace_event_data_offsets_wbt_timer {}; - -typedef void (*btf_trace_wbt_stat)(void *, struct backing_dev_info *, struct blk_rq_stat *); - -typedef void (*btf_trace_wbt_lat)(void *, struct backing_dev_info *, long unsigned int); - -typedef void (*btf_trace_wbt_step)(void *, struct backing_dev_info *, const char *, int, long unsigned int, unsigned int, unsigned int, unsigned int); - -typedef void (*btf_trace_wbt_timer)(void *, struct backing_dev_info *, unsigned int, int, unsigned int); - -enum wbt_flags { - WBT_TRACKED = 1, - WBT_READ = 2, - WBT_SWAP = 4, - WBT_DISCARD = 8, - WBT_NR_BITS = 4, -}; - -enum { - WBT_RWQ_BG = 0, - WBT_RWQ_SWAP = 1, - WBT_RWQ_DISCARD = 2, - WBT_NUM_RWQ = 3, -}; - -enum { - WBT_STATE_ON_DEFAULT = 1, - WBT_STATE_ON_MANUAL = 2, - WBT_STATE_OFF_DEFAULT = 3, - WBT_STATE_OFF_MANUAL = 4, -}; - -struct rq_wb { - unsigned int wb_background; - unsigned int wb_normal; - short int enable_state; - unsigned int unknown_cnt; - u64 win_nsec; - u64 cur_win_nsec; - struct blk_stat_callback *cb; - u64 sync_issue; - void *sync_cookie; - long unsigned int last_issue; - long unsigned int last_comp; - long unsigned int min_lat_nsec; - struct rq_qos rqos; - struct rq_wait rq_wait[3]; - struct rq_depth rq_depth; -}; - -enum { - RWB_DEF_DEPTH = 16, - RWB_WINDOW_NSEC = 100000000, - RWB_MIN_WRITE_SAMPLES = 3, - RWB_UNKNOWN_BUMP = 5, -}; - -enum { - LAT_OK = 1, - LAT_UNKNOWN = 2, - LAT_UNKNOWN_WRITES = 3, - LAT_EXCEEDED = 4, -}; - -struct wbt_wait_data { - struct rq_wb *rwb; - enum wbt_flags wb_acct; - blk_opf_t opf; -}; - -struct blk_crypto_kobj { - struct kobject kobj; - struct blk_crypto_profile *profile; -}; - -struct blk_crypto_attr { - struct attribute attr; - ssize_t (*show)(struct blk_crypto_profile *, struct blk_crypto_attr *, char *); -}; - -struct io_notif_data { - struct file *file; - struct ubuf_info uarg; - struct io_notif_data *next; - struct io_notif_data *head; - unsigned int account_pages; - bool zc_report; - bool zc_used; - bool zc_copied; -}; - -struct compat_iovec { - compat_uptr_t iov_base; - compat_size_t iov_len; -}; - -struct io_uring_attr_pi { - __u16 flags; - __u16 app_tag; - __u32 len; - __u64 addr; - __u64 seed; - __u64 rsvd; -}; - -struct io_meta_state { - u32 seed; - struct iov_iter_state iter_meta; -}; - -struct io_async_rw { - struct iou_vec vec; - size_t bytes_done; - union { - struct { - struct iov_iter iter; - struct iov_iter_state iter_state; - struct iovec fast_iov; - unsigned int buf_group; - union { - struct wait_page_queue wpq; - struct { - struct uio_meta meta; - struct io_meta_state meta_state; - }; - }; - }; - struct { - struct iov_iter iter; - struct iov_iter_state iter_state; - struct iovec fast_iov; - unsigned int buf_group; - union { - struct wait_page_queue wpq; - struct { - struct uio_meta meta; - struct io_meta_state meta_state; - }; - }; - } clear; - }; -}; - -struct io_rw { - struct kiocb kiocb; - u64 addr; - u32 len; - rwf_t flags; -}; - -struct io_open { - struct file *file; - int dfd; - u32 file_slot; - struct filename *filename; - struct open_how how; - long unsigned int nofile; -}; - -struct io_close { - struct file *file; - int fd; - u32 file_slot; -}; - -struct io_fixed_install { - struct file *file; - unsigned int o_flags; -}; - -struct io_pipe { - struct file *file; - int *fds; - int flags; - int file_slot; - long unsigned int nofile; -}; - -struct xattr_name { - char name[256]; -}; - -struct kernel_xattr_ctx { - union { - const void *cvalue; - void *value; - }; - void *kvalue; - size_t size; - struct xattr_name *kname; - unsigned int flags; -}; - -struct io_xattr { - struct file *file; - struct kernel_xattr_ctx ctx; - struct filename *filename; -}; - -struct io_rename { - struct file *file; - int old_dfd; - int new_dfd; - struct filename *oldpath; - struct filename *newpath; - int flags; -}; - -struct io_unlink { - struct file *file; - int dfd; - int flags; - struct filename *filename; -}; - -struct io_mkdir { - struct file *file; - int dfd; - umode_t mode; - struct filename *filename; -}; - -struct io_link { - struct file *file; - int old_dfd; - int new_dfd; - struct filename *oldpath; - struct filename *newpath; - int flags; -}; - -struct io_fadvise { - struct file *file; - u64 offset; - u64 len; - u32 advice; -}; - -struct io_madvise { - struct file *file; - u64 addr; - u64 len; - u32 advice; -}; - -struct io_uring_sync_cancel_reg { - __u64 addr; - __s32 fd; - __u32 flags; - struct __kernel_timespec timeout; - __u8 opcode; - __u8 pad[7]; - __u64 pad2[3]; -}; - -struct io_cancel { - struct file *file; - u64 addr; - u32 flags; - s32 fd; - u8 opcode; -}; - -enum { - IORING_MEM_REGION_REG_WAIT_ARG = 1, -}; - -struct io_uring_mem_region_reg { - __u64 region_uptr; - __u64 flags; - __u64 __resv[2]; -}; - -struct io_uring_probe_op { - __u8 op; - __u8 resv; - __u16 flags; - __u32 resv2; -}; - -struct io_uring_probe { - __u8 last_op; - __u8 ops_len; - __u16 resv; - __u32 resv2[3]; - struct io_uring_probe_op ops[0]; -}; - -struct io_uring_restriction { - __u16 opcode; - union { - __u8 register_op; - __u8 sqe_op; - __u8 sqe_flags; - }; - __u8 resv; - __u32 resv2[3]; -}; - -struct io_uring_clock_register { - __u32 clockid; - __u32 __resv[3]; -}; - -enum io_uring_register_restriction_op { - IORING_RESTRICTION_REGISTER_OP = 0, - IORING_RESTRICTION_SQE_OP = 1, - IORING_RESTRICTION_SQE_FLAGS_ALLOWED = 2, - IORING_RESTRICTION_SQE_FLAGS_REQUIRED = 3, - IORING_RESTRICTION_LAST = 4, -}; - -struct io_ring_ctx_rings { - struct io_rings *rings; - struct io_uring_sqe *sq_sqes; - struct io_mapped_region sq_region; - struct io_mapped_region ring_region; -}; - -struct io_futex { - struct file *file; - void *uaddr; - long unsigned int futex_val; - long unsigned int futex_mask; - long unsigned int futexv_owned; - u32 futex_flags; - unsigned int futex_nr; - bool futexv_unqueued; -}; - -struct io_futex_data { - struct futex_q q; - struct io_kiocb *req; -}; - -struct user_msghdr { - void *msg_name; - int msg_namelen; - struct iovec *msg_iov; - __kernel_size_t msg_iovlen; - void *msg_control; - __kernel_size_t msg_controllen; - unsigned int msg_flags; -}; - -struct compat_msghdr { - compat_uptr_t msg_name; - compat_int_t msg_namelen; - compat_uptr_t msg_iov; - compat_size_t msg_iovlen; - compat_uptr_t msg_control; - compat_size_t msg_controllen; - compat_uint_t msg_flags; -}; - -struct io_uring_recvmsg_out { - __u32 namelen; - __u32 controllen; - __u32 payloadlen; - __u32 flags; -}; - -struct io_async_msghdr { - struct iou_vec vec; - union { - struct { - int namelen; - struct iovec fast_iov; - __kernel_size_t controllen; - __kernel_size_t payloadlen; - struct sockaddr *uaddr; - struct msghdr msg; - struct __kernel_sockaddr_storage addr; - }; - struct { - int namelen; - struct iovec fast_iov; - __kernel_size_t controllen; - __kernel_size_t payloadlen; - struct sockaddr *uaddr; - struct msghdr msg; - struct __kernel_sockaddr_storage addr; - } clear; - }; -}; - -struct io_shutdown { - struct file *file; - int how; -}; - -struct io_accept { - struct file *file; - struct sockaddr *addr; - int *addr_len; - int flags; - int iou_flags; - u32 file_slot; - long unsigned int nofile; -}; - -struct io_socket { - struct file *file; - int domain; - int type; - int protocol; - int flags; - u32 file_slot; - long unsigned int nofile; -}; - -struct io_connect { - struct file *file; - struct sockaddr *addr; - int addr_len; - bool in_progress; - bool seen_econnaborted; -}; - -struct io_bind { - struct file *file; - int addr_len; -}; - -struct io_listen { - struct file *file; - int backlog; -}; - -struct io_sr_msg { - struct file *file; - union { - struct compat_msghdr *umsg_compat; - struct user_msghdr *umsg; - void *buf; - }; - int len; - unsigned int done_io; - unsigned int msg_flags; - unsigned int nr_multishot_loops; - u16 flags; - u16 buf_group; - unsigned int mshot_len; - unsigned int mshot_total_len; - void *msg_control; - struct io_kiocb *notif; -}; - -enum sr_retry_flags { - IORING_RECV_RETRY = 32768, - IORING_RECV_PARTIAL_MAP = 16384, - IORING_RECV_MSHOT_CAP = 8192, - IORING_RECV_MSHOT_LIM = 4096, - IORING_RECV_MSHOT_DONE = 2048, - IORING_RECV_RETRY_CLEAR = 49152, - IORING_RECV_NO_RETRY = 59392, -}; - -struct io_recvzc { - struct file *file; - unsigned int msg_flags; - u16 flags; - u32 len; - struct io_zcrx_ifq *ifq; -}; - -struct io_recvmsg_multishot_hdr { - struct io_uring_recvmsg_out msg; - struct __kernel_sockaddr_storage addr; -}; - -struct wrapper { - cmp_func_t cmp; - swap_func_t swap; -}; - -struct genradix_node { - union { - struct genradix_node *children[64]; - u8 data[512]; - }; -}; - -struct genradix_iter { - size_t offset; - size_t pos; -}; - -struct strarray { - char **array; - size_t n; -}; - -struct poly1305_arch_internal { - union { - struct { - u32 h[5]; - u32 is_base2_26; - }; - u64 hs[3]; - }; - u64 r[2]; - u64 pad; - struct { - u32 r2; - u32 r1; - u32 r4; - u32 r3; - } rn[9]; -}; - -struct btree_head { - long unsigned int *node; - mempool_t *mempool; - int height; -}; - -struct btree_geo { - int keylen; - int no_pairs; - int no_longs; -}; - -typedef void (*visitor128_t)(void *, long unsigned int, u64, u64, size_t); - -typedef void (*visitorl_t)(void *, long unsigned int, long unsigned int, size_t); - -typedef void (*visitor32_t)(void *, long unsigned int, u32, size_t); - -typedef void (*visitor64_t)(void *, long unsigned int, u64, size_t); - -struct assoc_array_ops { - long unsigned int (*get_key_chunk)(const void *, int); - long unsigned int (*get_object_key_chunk)(const void *, int); - bool (*compare_object)(const void *, const void *); - int (*diff_objects)(const void *, const void *); - void (*free_object)(void *); -}; - -struct assoc_array_node { - struct assoc_array_ptr *back_pointer; - u8 parent_slot; - struct assoc_array_ptr *slots[16]; - long unsigned int nr_leaves_on_branch; -}; - -struct assoc_array_shortcut { - struct assoc_array_ptr *back_pointer; - int parent_slot; - int skip_to_level; - struct assoc_array_ptr *next_node; - long unsigned int index_key[0]; -}; - -struct assoc_array_edit { - struct callback_head rcu; - struct assoc_array *array; - const struct assoc_array_ops *ops; - const struct assoc_array_ops *ops_for_excised_subtree; - struct assoc_array_ptr *leaf; - struct assoc_array_ptr **leaf_p; - struct assoc_array_ptr *dead_leaf; - struct assoc_array_ptr *new_meta[3]; - struct assoc_array_ptr *excised_meta[1]; - struct assoc_array_ptr *excised_subtree; - struct assoc_array_ptr **set_backpointers[16]; - struct assoc_array_ptr *set_backpointers_to; - struct assoc_array_node *adjust_count_on; - long int adjust_count_by; - struct { - struct assoc_array_ptr **ptr; - struct assoc_array_ptr *to; - } set[2]; - struct { - u8 *p; - u8 to; - } set_parent_slot[1]; - u8 segment_cache[17]; -}; - -enum assoc_array_walk_status { - assoc_array_walk_tree_empty = 0, - assoc_array_walk_found_terminal_node = 1, - assoc_array_walk_found_wrong_shortcut = 2, -}; - -struct assoc_array_walk_result { - struct { - struct assoc_array_node *node; - int level; - int slot; - } terminal_node; - struct { - struct assoc_array_shortcut *shortcut; - int level; - int sc_level; - long unsigned int sc_segments; - long unsigned int dissimilarity; - } wrong_shortcut; -}; - -struct assoc_array_delete_collapse_context { - struct assoc_array_node *node; - const void *skip_leaf; - int slot; -}; - -struct xxh32_state { - uint32_t total_len_32; - uint32_t large_len; - uint32_t v1; - uint32_t v2; - uint32_t v3; - uint32_t v4; - uint32_t mem32[4]; - uint32_t memsize; -}; - -union uu { - short unsigned int us; - unsigned char b[2]; -}; - -typedef enum { - need_more = 0, - block_done = 1, - finish_started = 2, - finish_done = 3, -} block_state; - -typedef block_state (*compress_func)(deflate_state *, int); - -struct deflate_workspace { - deflate_state deflate_memory; - Byte *window_memory; - Pos *prev_memory; - Pos *head_memory; - char *overlay_memory; -}; - -typedef struct deflate_workspace deflate_workspace; - -struct config_s { - ush good_length; - ush max_lazy; - ush nice_length; - ush max_chain; - compress_func func; -}; - -typedef struct config_s config; - -typedef struct { - const uint8_t *externalDict; - size_t extDictSize; - const uint8_t *prefixEnd; - size_t prefixSize; -} LZ4_streamDecode_t_internal; - -typedef union { - long long unsigned int table[4]; - LZ4_streamDecode_t_internal internal_donotuse; -} LZ4_streamDecode_t; - -typedef uintptr_t uptrval; - -typedef enum { - noDict = 0, - withPrefix64k = 1, - usingExtDict = 2, -} dict_directive; - -typedef enum { - endOnOutputSize = 0, - endOnInputSize = 1, -} endCondition_directive; - -typedef enum { - decode_full_block = 0, - partial_decode = 1, -} earlyEnd_directive; - -typedef enum { - trustInput = 0, - checkMaxSymbolValue = 1, -} HIST_checkInput_e; - -typedef enum { - ZSTDcs_created = 0, - ZSTDcs_init = 1, - ZSTDcs_ongoing = 2, - ZSTDcs_ending = 3, -} ZSTD_compressionStage_e; - -typedef struct { - int contentSizeFlag; - int checksumFlag; - int noDictIDFlag; -} ZSTD_frameParameters; - -typedef enum { - ZSTD_dictDefaultAttach = 0, - ZSTD_dictForceAttach = 1, - ZSTD_dictForceCopy = 2, - ZSTD_dictForceLoad = 3, -} ZSTD_dictAttachPref_e; - -typedef struct { - ZSTD_ParamSwitch_e enableLdm; - U32 hashLog; - U32 bucketSizeLog; - U32 minMatchLength; - U32 hashRateLog; - U32 windowLog; -} ldmParams_t; - -typedef enum { - ZSTD_sf_noBlockDelimiters = 0, - ZSTD_sf_explicitBlockDelimiters = 1, -} ZSTD_SequenceFormat_e; - -typedef struct { - unsigned int offset; - unsigned int litLength; - unsigned int matchLength; - unsigned int rep; -} ZSTD_Sequence; - -typedef size_t (*ZSTD_sequenceProducer_F)(void *, ZSTD_Sequence *, size_t, const void *, size_t, const void *, size_t, int, size_t); - -struct ZSTD_CCtx_params_s { - ZSTD_format_e format; - ZSTD_compressionParameters cParams; - ZSTD_frameParameters fParams; - int compressionLevel; - int forceWindow; - size_t targetCBlockSize; - int srcSizeHint; - ZSTD_dictAttachPref_e attachDictPref; - ZSTD_ParamSwitch_e literalCompressionMode; - int nbWorkers; - size_t jobSize; - int overlapLog; - int rsyncable; - ldmParams_t ldmParams; - int enableDedicatedDictSearch; - ZSTD_bufferMode_e inBufferMode; - ZSTD_bufferMode_e outBufferMode; - ZSTD_SequenceFormat_e blockDelimiters; - int validateSequences; - ZSTD_ParamSwitch_e postBlockSplitter; - int preBlockSplitter_level; - size_t maxBlockSize; - ZSTD_ParamSwitch_e useRowMatchFinder; - int deterministicRefPrefix; - ZSTD_customMem customMem; - ZSTD_ParamSwitch_e prefetchCDictTables; - int enableMatchFinderFallback; - void *extSeqProdState; - ZSTD_sequenceProducer_F extSeqProdFunc; - ZSTD_ParamSwitch_e searchForExternalRepcodes; -}; - -typedef struct ZSTD_CCtx_params_s ZSTD_CCtx_params; - -typedef enum { - ZSTD_cwksp_alloc_objects = 0, - ZSTD_cwksp_alloc_aligned_init_once = 1, - ZSTD_cwksp_alloc_aligned = 2, - ZSTD_cwksp_alloc_buffers = 3, -} ZSTD_cwksp_alloc_phase_e; - -typedef enum { - ZSTD_cwksp_dynamic_alloc = 0, - ZSTD_cwksp_static_alloc = 1, -} ZSTD_cwksp_static_alloc_e; - -typedef struct { - void *workspace; - void *workspaceEnd; - void *objectEnd; - void *tableEnd; - void *tableValidEnd; - void *allocStart; - void *initOnceStart; - BYTE allocFailed; - int workspaceOversizedDuration; - ZSTD_cwksp_alloc_phase_e phase; - ZSTD_cwksp_static_alloc_e isStatic; -} ZSTD_cwksp; - -struct POOL_ctx_s; - -typedef struct POOL_ctx_s ZSTD_threadPool; - -typedef struct { - int collectSequences; - ZSTD_Sequence *seqStart; - size_t seqIndex; - size_t maxSequences; -} SeqCollector; - -typedef struct { - U32 offset; - U32 checksum; -} ldmEntry_t; - -typedef struct { - const BYTE *split; - U32 hash; - U32 checksum; - ldmEntry_t *bucket; -} ldmMatchCandidate_t; - -typedef struct { - ZSTD_window_t window; - ldmEntry_t *hashTable; - U32 loadedDictEnd; - BYTE *bucketOffsets; - size_t splitIndices[64]; - ldmMatchCandidate_t matchCandidates[64]; -} ldmState_t; - -typedef struct { - ZSTD_entropyCTables_t entropy; - U32 rep[3]; -} ZSTD_compressedBlockState_t; - -typedef struct { - ZSTD_compressedBlockState_t *prevCBlock; - ZSTD_compressedBlockState_t *nextCBlock; - ZSTD_MatchState_t matchState; -} ZSTD_blockState_t; - -typedef enum { - ZSTDb_not_buffered = 0, - ZSTDb_buffered = 1, -} ZSTD_buffered_policy_e; - -typedef enum { - zcss_init = 0, - zcss_load = 1, - zcss_flush = 2, -} ZSTD_cStreamStage; - -struct ZSTD_CDict_s; - -typedef struct ZSTD_CDict_s ZSTD_CDict; - -typedef struct { - void *dictBuffer; - const void *dict; - size_t dictSize; - ZSTD_dictContentType_e dictContentType; - ZSTD_CDict *cdict; -} ZSTD_localDict; - -struct ZSTD_prefixDict_s { - const void *dict; - size_t dictSize; - ZSTD_dictContentType_e dictContentType; -}; - -typedef struct ZSTD_prefixDict_s ZSTD_prefixDict; - -typedef enum { - set_basic = 0, - set_rle = 1, - set_compressed = 2, - set_repeat = 3, -} SymbolEncodingType_e; - -typedef struct { - SymbolEncodingType_e hType; - BYTE hufDesBuffer[128]; - size_t hufDesSize; -} ZSTD_hufCTablesMetadata_t; - -typedef struct { - SymbolEncodingType_e llType; - SymbolEncodingType_e ofType; - SymbolEncodingType_e mlType; - BYTE fseTablesBuffer[133]; - size_t fseTablesSize; - size_t lastCountSize; -} ZSTD_fseCTablesMetadata_t; - -typedef struct { - ZSTD_hufCTablesMetadata_t hufMetadata; - ZSTD_fseCTablesMetadata_t fseMetadata; -} ZSTD_entropyCTablesMetadata_t; - -typedef struct { - SeqStore_t fullSeqStoreChunk; - SeqStore_t firstHalfSeqStore; - SeqStore_t secondHalfSeqStore; - SeqStore_t currSeqStore; - SeqStore_t nextSeqStore; - U32 partitions[196]; - ZSTD_entropyCTablesMetadata_t entropyMetadata; -} ZSTD_blockSplitCtx; - -struct ZSTD_CCtx_s { - ZSTD_compressionStage_e stage; - int cParamsChanged; - int bmi2; - ZSTD_CCtx_params requestedParams; - ZSTD_CCtx_params appliedParams; - ZSTD_CCtx_params simpleApiParams; - U32 dictID; - size_t dictContentSize; - ZSTD_cwksp workspace; - size_t blockSizeMax; - long long unsigned int pledgedSrcSizePlusOne; - long long unsigned int consumedSrcSize; - long long unsigned int producedCSize; - struct xxh64_state xxhState; - ZSTD_customMem customMem; - ZSTD_threadPool *pool; - size_t staticSize; - SeqCollector seqCollector; - int isFirstBlock; - int initialized; - SeqStore_t seqStore; - ldmState_t ldmState; - rawSeq *ldmSequences; - size_t maxNbLdmSequences; - RawSeqStore_t externSeqStore; - ZSTD_blockState_t blockState; - void *tmpWorkspace; - size_t tmpWkspSize; - ZSTD_buffered_policy_e bufferedPolicy; - char *inBuff; - size_t inBuffSize; - size_t inToCompress; - size_t inBuffPos; - size_t inBuffTarget; - char *outBuff; - size_t outBuffSize; - size_t outBuffContentSize; - size_t outBuffFlushedSize; - ZSTD_cStreamStage streamStage; - U32 frameEnded; - ZSTD_inBuffer expectedInBuffer; - size_t stableIn_notConsumed; - size_t expectedOutBufferSize; - ZSTD_localDict localDict; - const ZSTD_CDict *cdict; - ZSTD_prefixDict prefixDict; - ZSTD_blockSplitCtx blockSplitCtx; - ZSTD_Sequence *extSeqBuf; - size_t extSeqBufCapacity; -}; - -typedef struct ZSTD_CCtx_s ZSTD_CCtx; - -typedef enum { - ZSTD_c_compressionLevel = 100, - ZSTD_c_windowLog = 101, - ZSTD_c_hashLog = 102, - ZSTD_c_chainLog = 103, - ZSTD_c_searchLog = 104, - ZSTD_c_minMatch = 105, - ZSTD_c_targetLength = 106, - ZSTD_c_strategy = 107, - ZSTD_c_targetCBlockSize = 130, - ZSTD_c_enableLongDistanceMatching = 160, - ZSTD_c_ldmHashLog = 161, - ZSTD_c_ldmMinMatch = 162, - ZSTD_c_ldmBucketSizeLog = 163, - ZSTD_c_ldmHashRateLog = 164, - ZSTD_c_contentSizeFlag = 200, - ZSTD_c_checksumFlag = 201, - ZSTD_c_dictIDFlag = 202, - ZSTD_c_nbWorkers = 400, - ZSTD_c_jobSize = 401, - ZSTD_c_overlapLog = 402, - ZSTD_c_experimentalParam1 = 500, - ZSTD_c_experimentalParam2 = 10, - ZSTD_c_experimentalParam3 = 1000, - ZSTD_c_experimentalParam4 = 1001, - ZSTD_c_experimentalParam5 = 1002, - ZSTD_c_experimentalParam7 = 1004, - ZSTD_c_experimentalParam8 = 1005, - ZSTD_c_experimentalParam9 = 1006, - ZSTD_c_experimentalParam10 = 1007, - ZSTD_c_experimentalParam11 = 1008, - ZSTD_c_experimentalParam12 = 1009, - ZSTD_c_experimentalParam13 = 1010, - ZSTD_c_experimentalParam14 = 1011, - ZSTD_c_experimentalParam15 = 1012, - ZSTD_c_experimentalParam16 = 1013, - ZSTD_c_experimentalParam17 = 1014, - ZSTD_c_experimentalParam18 = 1015, - ZSTD_c_experimentalParam19 = 1016, - ZSTD_c_experimentalParam20 = 1017, -} ZSTD_cParameter; - -typedef struct { - size_t error; - int lowerBound; - int upperBound; -} ZSTD_bounds; - -typedef ZSTD_CCtx ZSTD_CStream; - -typedef enum { - ZSTD_e_continue = 0, - ZSTD_e_flush = 1, - ZSTD_e_end = 2, -} ZSTD_EndDirective; - -struct ZSTD_CDict_s { - const void *dictContent; - size_t dictContentSize; - ZSTD_dictContentType_e dictContentType; - U32 *entropyWorkspace; - ZSTD_cwksp workspace; - ZSTD_MatchState_t matchState; - ZSTD_compressedBlockState_t cBlockState; - ZSTD_customMem customMem; - U32 dictID; - int compressionLevel; - ZSTD_ParamSwitch_e useRowMatchFinder; -}; - -typedef struct { - ZSTD_compressionParameters cParams; - ZSTD_frameParameters fParams; -} ZSTD_parameters; - -typedef struct { - long long unsigned int ingested; - long long unsigned int consumed; - long long unsigned int produced; - long long unsigned int flushed; - unsigned int currentJobID; - unsigned int nbActiveWorkers; -} ZSTD_frameProgression; - -typedef struct { - U32 f1c; - U32 f1d; - U32 f7b; - U32 f7c; -} ZSTD_cpuid_t; - -typedef enum { - ZSTD_cpm_noAttachDict = 0, - ZSTD_cpm_attachDict = 1, - ZSTD_cpm_createCDict = 2, - ZSTD_cpm_unknown = 3, -} ZSTD_CParamMode_e; - -typedef size_t (*ZSTD_BlockCompressor_f)(ZSTD_MatchState_t *, SeqStore_t *, U32 *, const void *, size_t); - -struct repcodes_s { - U32 rep[3]; -}; - -typedef struct repcodes_s Repcodes_t; - -typedef struct { - U32 idx; - U32 posInSequence; - size_t posInSrc; -} ZSTD_SequencePosition; - -typedef struct { - size_t nbSequences; - size_t blockSize; - size_t litSize; -} BlockSummary; - -typedef enum { - ZSTD_defaultDisallowed = 0, - ZSTD_defaultAllowed = 1, -} ZSTD_DefaultPolicy_e; - -typedef enum { - ZSTDcrp_makeClean = 0, - ZSTDcrp_leaveDirty = 1, -} ZSTD_compResetPolicy_e; - -typedef enum { - ZSTDirp_continue = 0, - ZSTDirp_reset = 1, -} ZSTD_indexResetPolicy_e; - -typedef enum { - ZSTD_resetTarget_CDict = 0, - ZSTD_resetTarget_CCtx = 1, -} ZSTD_resetTarget_e; - -typedef struct { - U32 LLtype; - U32 Offtype; - U32 MLtype; - size_t size; - size_t lastCountSize; - int longOffsets; -} ZSTD_symbolEncodingTypeStats_t; - -enum { - ZSTDbss_compress = 0, - ZSTDbss_noCompress = 1, -}; - -typedef struct { - U32 *splitLocations; - size_t idx; -} seqStoreSplits; - -typedef size_t (*ZSTD_SequenceCopier_f)(ZSTD_CCtx *, ZSTD_SequencePosition *, const ZSTD_Sequence * const, size_t, const void *, size_t, ZSTD_ParamSwitch_e); - -typedef struct { - U64 rolling; - U64 stopMask; -} ldmRollingHashState_t; - -typedef enum { - base_0possible = 0, - base_1guaranteed = 1, -} base_directive_e; - -typedef U32 (*ZSTD_getAllMatchesFn)(ZSTD_match_t *, ZSTD_MatchState_t *, U32 *, const BYTE *, const BYTE *, const U32 *, const U32, const U32); - -typedef struct { - RawSeqStore_t seqStore; - U32 startPosInBlock; - U32 endPosInBlock; - U32 offset; -} ZSTD_optLdm_t; - -typedef struct { - blockType_e blockType; - U32 lastBlock; - U32 origSize; -} blockProperties_t; - -typedef struct { - U32 fastMode; - U32 tableLog; -} ZSTD_seqSymbol_header; - -typedef enum { - not_streaming = 0, - is_streaming = 1, -} streaming_operation; - -typedef struct { - size_t litLength; - size_t matchLength; - size_t offset; -} seq_t; - -typedef struct { - size_t state; - const ZSTD_seqSymbol *table; -} ZSTD_fseState; - -typedef struct { - BIT_DStream_t DStream; - ZSTD_fseState stateLL; - ZSTD_fseState stateOffb; - ZSTD_fseState stateML; - size_t prevOffset[3]; -} seqState_t; - -typedef enum { - ZSTD_lo_isRegularOffset = 0, - ZSTD_lo_isLongOffset = 1, -} ZSTD_longOffset_e; - -typedef struct { - unsigned int longOffsetShare; - unsigned int maxNbAdditionalBits; -} ZSTD_OffsetInfo; - -typedef uint64_t vli_type; - -enum xz_check { - XZ_CHECK_NONE = 0, - XZ_CHECK_CRC32 = 1, - XZ_CHECK_CRC64 = 4, - XZ_CHECK_SHA256 = 10, -}; - -struct xz_dec_hash { - vli_type unpadded; - vli_type uncompressed; - uint32_t crc32; -}; - -struct xz_dec_lzma2; - -struct xz_dec_bcj; - -struct xz_dec { - enum { - SEQ_STREAM_HEADER = 0, - SEQ_BLOCK_START = 1, - SEQ_BLOCK_HEADER = 2, - SEQ_BLOCK_UNCOMPRESS = 3, - SEQ_BLOCK_PADDING = 4, - SEQ_BLOCK_CHECK = 5, - SEQ_INDEX = 6, - SEQ_INDEX_PADDING = 7, - SEQ_INDEX_CRC32 = 8, - SEQ_STREAM_FOOTER = 9, - } sequence; - uint32_t pos; - vli_type vli; - size_t in_start; - size_t out_start; - uint32_t crc32; - enum xz_check check_type; - enum xz_mode mode; - bool allow_buf_error; - struct { - vli_type compressed; - vli_type uncompressed; - uint32_t size; - } block_header; - struct { - vli_type compressed; - vli_type uncompressed; - vli_type count; - struct xz_dec_hash hash; - } block; - struct { - enum { - SEQ_INDEX_COUNT = 0, - SEQ_INDEX_UNPADDED = 1, - SEQ_INDEX_UNCOMPRESSED = 2, - } sequence; - vli_type size; - vli_type count; - struct xz_dec_hash hash; - } index; - struct { - size_t pos; - size_t size; - uint8_t buf[1024]; - } temp; - struct xz_dec_lzma2 *lzma2; - struct xz_dec_bcj *bcj; - bool bcj_active; -}; - -enum lzma_state { - STATE_LIT_LIT = 0, - STATE_MATCH_LIT_LIT = 1, - STATE_REP_LIT_LIT = 2, - STATE_SHORTREP_LIT_LIT = 3, - STATE_MATCH_LIT = 4, - STATE_REP_LIT = 5, - STATE_SHORTREP_LIT = 6, - STATE_LIT_MATCH = 7, - STATE_LIT_LONGREP = 8, - STATE_LIT_SHORTREP = 9, - STATE_NONLIT_MATCH = 10, - STATE_NONLIT_REP = 11, -}; - -struct dictionary { - uint8_t *buf; - size_t start; - size_t pos; - size_t full; - size_t limit; - size_t end; - uint32_t size; - uint32_t size_max; - uint32_t allocated; - enum xz_mode mode; -}; - -struct rc_dec { - uint32_t range; - uint32_t code; - uint32_t init_bytes_left; - const uint8_t *in; - size_t in_pos; - size_t in_limit; -}; - -struct lzma_len_dec { - uint16_t choice; - uint16_t choice2; - uint16_t low[128]; - uint16_t mid[128]; - uint16_t high[256]; -}; - -struct lzma_dec { - uint32_t rep0; - uint32_t rep1; - uint32_t rep2; - uint32_t rep3; - enum lzma_state state; - uint32_t len; - uint32_t lc; - uint32_t literal_pos_mask; - uint32_t pos_mask; - uint16_t is_match[192]; - uint16_t is_rep[12]; - uint16_t is_rep0[12]; - uint16_t is_rep1[12]; - uint16_t is_rep2[12]; - uint16_t is_rep0_long[192]; - uint16_t dist_slot[256]; - uint16_t dist_special[114]; - uint16_t dist_align[16]; - struct lzma_len_dec match_len_dec; - struct lzma_len_dec rep_len_dec; - uint16_t literal[12288]; -}; - -enum lzma2_seq { - SEQ_CONTROL = 0, - SEQ_UNCOMPRESSED_1 = 1, - SEQ_UNCOMPRESSED_2 = 2, - SEQ_COMPRESSED_0 = 3, - SEQ_COMPRESSED_1 = 4, - SEQ_PROPERTIES = 5, - SEQ_LZMA_PREPARE = 6, - SEQ_LZMA_RUN = 7, - SEQ_COPY = 8, -}; - -struct lzma2_dec { - enum lzma2_seq sequence; - enum lzma2_seq next_sequence; - uint32_t uncompressed; - uint32_t compressed; - bool need_dict_reset; - bool need_props; - bool pedantic_microlzma; -}; - -struct xz_dec_lzma2 { - struct rc_dec rc; - struct dictionary dict; - struct lzma2_dec lzma2; - struct lzma_dec lzma; - struct { - uint32_t size; - uint8_t buf[63]; - } temp; -}; - -struct xz_dec_microlzma { - struct xz_dec_lzma2 s; -}; - -struct seccomp_data { - int nr; - __u32 arch; - __u64 instruction_pointer; - __u64 args[6]; -}; - -struct syscall_info { - __u64 sp; - struct seccomp_data data; -}; - -struct nla_bitfield32 { - __u32 value; - __u32 selector; -}; - -typedef void closure_fn(struct work_struct *); - -struct closure_waitlist { - struct llist_head list; -}; - -enum closure_state { - CLOSURE_BITS_START = 67108864, - CLOSURE_DESTRUCTOR = 67108864, - CLOSURE_WAITING = 268435456, - CLOSURE_RUNNING = 1073741824, -}; - -struct closure_syncer { - struct task_struct *task; - int done; -}; - -struct closure { - union { - struct { - struct workqueue_struct *wq; - struct closure_syncer *s; - struct llist_node list; - closure_fn *fn; - }; - struct work_struct work; - }; - struct closure *parent; - atomic_t remaining; - bool closure_get_happened; -}; - -enum { - type_kind_int = 0, - type_kind_float = 1, - type_unknown = 65535, -}; - -struct type_descriptor { - u16 type_kind; - u16 type_info; - char type_name[0]; -}; - -struct source_location { - const char *file_name; - union { - long unsigned int reported; - struct { - u32 line; - u32 column; - }; - }; -}; - -struct overflow_data { - struct source_location location; - struct type_descriptor *type; -}; - -struct implicit_conversion_data { - struct source_location location; - struct type_descriptor *from_type; - struct type_descriptor *to_type; - unsigned char type_check_kind; -}; - -struct type_mismatch_data { - struct source_location location; - struct type_descriptor *type; - long unsigned int alignment; - unsigned char type_check_kind; -}; - -struct type_mismatch_data_v1 { - struct source_location location; - struct type_descriptor *type; - unsigned char log_alignment; - unsigned char type_check_kind; -}; - -struct type_mismatch_data_common { - struct source_location *location; - struct type_descriptor *type; - long unsigned int alignment; - unsigned char type_check_kind; -}; - -struct out_of_bounds_data { - struct source_location location; - struct type_descriptor *array_type; - struct type_descriptor *index_type; -}; - -struct shift_out_of_bounds_data { - struct source_location location; - struct type_descriptor *lhs_type; - struct type_descriptor *rhs_type; -}; - -struct unreachable_data { - struct source_location location; -}; - -struct invalid_value_data { - struct source_location location; - struct type_descriptor *type; -}; - -struct alignment_assumption_data { - struct source_location location; - struct source_location assumption_location; - struct type_descriptor *type; -}; - -typedef __int128 s_max; - -typedef __int128 unsigned u_max; - -struct phy_configure_opts_dp { - unsigned int link_rate; - unsigned int lanes; - unsigned int voltage[4]; - unsigned int pre[4]; - u8 ssc: 1; - u8 set_rate: 1; - u8 set_lanes: 1; - u8 set_voltages: 1; -}; - -struct phy_configure_opts_hdmi { - long long unsigned int tmds_char_rate; - unsigned int bpc; -}; - -struct phy_configure_opts_lvds { - unsigned int bits_per_lane_and_dclk_cycle; - long unsigned int differential_clk_rate; - unsigned int lanes; - bool is_slave; -}; - -enum phy_mode { - PHY_MODE_INVALID = 0, - PHY_MODE_USB_HOST = 1, - PHY_MODE_USB_HOST_LS = 2, - PHY_MODE_USB_HOST_FS = 3, - PHY_MODE_USB_HOST_HS = 4, - PHY_MODE_USB_HOST_SS = 5, - PHY_MODE_USB_DEVICE = 6, - PHY_MODE_USB_DEVICE_LS = 7, - PHY_MODE_USB_DEVICE_FS = 8, - PHY_MODE_USB_DEVICE_HS = 9, - PHY_MODE_USB_DEVICE_SS = 10, - PHY_MODE_USB_OTG = 11, - PHY_MODE_UFS_HS_A = 12, - PHY_MODE_UFS_HS_B = 13, - PHY_MODE_PCIE = 14, - PHY_MODE_ETHERNET = 15, - PHY_MODE_MIPI_DPHY = 16, - PHY_MODE_SATA = 17, - PHY_MODE_LVDS = 18, - PHY_MODE_DP = 19, - PHY_MODE_HDMI = 20, -}; - -enum phy_media { - PHY_MEDIA_DEFAULT = 0, - PHY_MEDIA_SR = 1, - PHY_MEDIA_DAC = 2, -}; - -union phy_configure_opts { - struct phy_configure_opts_mipi_dphy mipi_dphy; - struct phy_configure_opts_dp dp; - struct phy_configure_opts_lvds lvds; - struct phy_configure_opts_hdmi hdmi; -}; - -struct phy; - -struct phy_ops { - int (*init)(struct phy *); - int (*exit)(struct phy *); - int (*power_on)(struct phy *); - int (*power_off)(struct phy *); - int (*set_mode)(struct phy *, enum phy_mode, int); - int (*set_media)(struct phy *, enum phy_media); - int (*set_speed)(struct phy *, int); - int (*configure)(struct phy *, union phy_configure_opts *); - int (*validate)(struct phy *, enum phy_mode, int, union phy_configure_opts *); - int (*reset)(struct phy *); - int (*calibrate)(struct phy *); - int (*connect)(struct phy *, int); - int (*disconnect)(struct phy *, int); - void (*release)(struct phy *); - struct module *owner; -}; - -struct phy_attrs { - u32 bus_width; - u32 max_link_rate; - enum phy_mode mode; -}; - -struct phy { - struct device dev; - int id; - const struct phy_ops *ops; - struct mutex mutex; - struct lock_class_key lockdep_key; - int init_count; - int power_count; - struct phy_attrs attrs; - struct regulator *pwr; - struct dentry *debugfs; -}; - -struct phy_provider { - struct device *dev; - struct device_node *children; - struct module *owner; - struct list_head list; - struct phy * (*of_xlate)(struct device *, const struct of_phandle_args *); -}; - -struct phy_lookup { - struct list_head node; - const char *dev_id; - const char *con_id; - struct phy *phy; -}; - -struct intel_community_context; - -struct intel_pad_context___3; - -struct intel_pinctrl_context___3 { - struct intel_pad_context___3 *pads; - struct intel_community_context *communities; -}; - -struct intel_pad_context___3 { - u32 conf0; - u32 val; -}; - -struct intel_pinctrl___3 { - struct device *dev; - raw_spinlock_t lock; - struct pinctrl_desc pctldesc; - struct pinctrl_dev *pctldev; - struct gpio_chip chip; - const struct intel_pinctrl_soc_data *soc; - struct intel_community *communities; - size_t ncommunities; - struct intel_pinctrl_context___3 context; - int irq; -}; - -typedef struct { - rwlock_t *lock; - long unsigned int flags; -} class_read_lock_irqsave_t; - -struct gpio_pin_range { - struct list_head node; - struct pinctrl_dev *pctldev; - struct pinctrl_gpio_range range; -}; - -struct gpiod_hog { - struct list_head list; - const char *chip_label; - u16 chip_hwnum; - const char *line_name; - long unsigned int lflags; - int dflags; -}; - -struct trace_event_raw_gpio_direction { - struct trace_entry ent; - unsigned int gpio; - int in; - int err; - char __data[0]; -}; - -struct trace_event_raw_gpio_value { - struct trace_entry ent; - unsigned int gpio; - int get; - int value; - char __data[0]; -}; - -struct trace_event_data_offsets_gpio_direction {}; - -struct trace_event_data_offsets_gpio_value {}; - -typedef void (*btf_trace_gpio_direction)(void *, unsigned int, int, int); - -typedef void (*btf_trace_gpio_value)(void *, unsigned int, int, int); - -struct gpiolib_seq_priv { - bool newline; - int idx; -}; - -enum { - RC5T583_GPIO0 = 0, - RC5T583_GPIO1 = 1, - RC5T583_GPIO2 = 2, - RC5T583_GPIO3 = 3, - RC5T583_GPIO4 = 4, - RC5T583_GPIO5 = 5, - RC5T583_GPIO6 = 6, - RC5T583_GPIO7 = 7, - RC5T583_MAX_GPIO = 8, -}; - -struct rc5t583_gpio { - struct gpio_chip gpio_chip; - struct rc5t583 *rc5t583; -}; - -struct pwm_args { - u64 period; - enum pwm_polarity polarity; -}; - -enum { - PWMF_REQUESTED = 0, - PWMF_EXPORTED = 1, -}; - -struct pwm_waveform { - u64 period_length_ns; - u64 duty_length_ns; - u64 duty_offset_ns; -}; - -struct pwm_state { - u64 period; - u64 duty_cycle; - enum pwm_polarity polarity; - bool enabled; - bool usage_power; -}; - -struct pwm_chip; - -struct pwm_device { - const char *label; - long unsigned int flags; - unsigned int hwpwm; - struct pwm_chip *chip; - struct pwm_args args; - struct pwm_state state; - struct pwm_state last; -}; - -struct pwm_ops; - -struct pwm_chip { - struct device dev; - struct cdev cdev; - const struct pwm_ops *ops; - struct module *owner; - unsigned int id; - unsigned int npwm; - struct pwm_device * (*of_xlate)(struct pwm_chip *, const struct of_phandle_args *); - bool atomic; - bool uses_pwmchip_alloc; - bool operational; - union { - struct mutex nonatomic_lock; - spinlock_t atomic_lock; - }; - struct pwm_device pwms[0]; -}; - -struct pwm_capture { - unsigned int period; - unsigned int duty_cycle; -}; - -struct pwm_ops { - int (*request)(struct pwm_chip *, struct pwm_device *); - void (*free)(struct pwm_chip *, struct pwm_device *); - int (*capture)(struct pwm_chip *, struct pwm_device *, struct pwm_capture *, long unsigned int); - size_t sizeof_wfhw; - int (*round_waveform_tohw)(struct pwm_chip *, struct pwm_device *, const struct pwm_waveform *, void *); - int (*round_waveform_fromhw)(struct pwm_chip *, struct pwm_device *, const void *, struct pwm_waveform *); - int (*read_waveform)(struct pwm_chip *, struct pwm_device *, void *); - int (*write_waveform)(struct pwm_chip *, struct pwm_device *, const void *); - int (*apply)(struct pwm_chip *, struct pwm_device *, const struct pwm_state *); - int (*get_state)(struct pwm_chip *, struct pwm_device *, struct pwm_state *); -}; - -struct pwmchip_waveform { - __u32 hwpwm; - __u32 __pad; - __u64 period_length_ns; - __u64 duty_length_ns; - __u64 duty_offset_ns; -}; - -struct trace_event_raw_pwm_round_waveform_tohw { - struct trace_entry ent; - unsigned int chipid; - unsigned int hwpwm; - u64 wf_period_length_ns; - u64 wf_duty_length_ns; - u64 wf_duty_offset_ns; - void *wfhw; - int err; - char __data[0]; -}; - -struct trace_event_raw_pwm_round_waveform_fromhw { - struct trace_entry ent; - unsigned int chipid; - unsigned int hwpwm; - const void *wfhw; - u64 wf_period_length_ns; - u64 wf_duty_length_ns; - u64 wf_duty_offset_ns; - int err; - char __data[0]; -}; - -struct trace_event_raw_pwm_read_waveform { - struct trace_entry ent; - unsigned int chipid; - unsigned int hwpwm; - void *wfhw; - int err; - char __data[0]; -}; - -struct trace_event_raw_pwm_write_waveform { - struct trace_entry ent; - unsigned int chipid; - unsigned int hwpwm; - const void *wfhw; - int err; - char __data[0]; -}; - -struct trace_event_raw_pwm { - struct trace_entry ent; - unsigned int chipid; - unsigned int hwpwm; - u64 period; - u64 duty_cycle; - enum pwm_polarity polarity; - bool enabled; - int err; - char __data[0]; -}; - -struct trace_event_data_offsets_pwm_round_waveform_tohw {}; - -struct trace_event_data_offsets_pwm_round_waveform_fromhw {}; - -struct trace_event_data_offsets_pwm_read_waveform {}; - -struct trace_event_data_offsets_pwm_write_waveform {}; - -struct trace_event_data_offsets_pwm {}; - -typedef void (*btf_trace_pwm_round_waveform_tohw)(void *, struct pwm_device *, const struct pwm_waveform *, void *, int); - -typedef void (*btf_trace_pwm_round_waveform_fromhw)(void *, struct pwm_device *, const void *, struct pwm_waveform *, int); - -typedef void (*btf_trace_pwm_read_waveform)(void *, struct pwm_device *, void *, int); - -typedef void (*btf_trace_pwm_write_waveform)(void *, struct pwm_device *, const void *, int); - -typedef void (*btf_trace_pwm_apply)(void *, struct pwm_device *, const struct pwm_state *, int); - -typedef void (*btf_trace_pwm_get)(void *, struct pwm_device *, const struct pwm_state *, int); - -typedef struct pwm_chip *class_pwmchip_t; - -struct pwm_export { - struct device pwm_dev; - struct pwm_device *pwm; - struct mutex lock; - struct pwm_state suspend; -}; - -struct pwm_cdev_data { - struct pwm_chip *chip; - struct pwm_device *pwm[0]; -}; - -struct pci_bus_resource { - struct list_head list; - struct resource *res; -}; - -struct msi_map { - int index; - int virq; -}; - -struct portdrv_service_data { - struct pcie_port_service_driver *drv; - struct device *dev; - u32 service; -}; - -typedef int (*pcie_callback_t)(struct pcie_device *); - -struct pcie_link_state { - struct pci_dev *pdev; - struct pci_dev *downstream; - struct pcie_link_state *root; - struct pcie_link_state *parent; - struct list_head sibling; - u32 aspm_support: 7; - u32 aspm_enabled: 7; - u32 aspm_capable: 7; - u32 aspm_default: 7; - int: 4; - u32 aspm_disable: 7; - u32 clkpm_capable: 1; - u32 clkpm_enabled: 1; - u32 clkpm_default: 1; - u32 clkpm_disable: 1; -}; - -struct pcie_pme_service_data { - spinlock_t lock; - struct pcie_device *srv; - struct work_struct work; - bool noirq; -}; - -struct cpci_hp_controller_ops { - int (*query_enum)(void); - int (*enable_irq)(void); - int (*disable_irq)(void); - int (*check_irq)(void *); -}; - -struct cpci_hp_controller { - unsigned int irq; - long unsigned int irq_flags; - char *devname; - void *dev_id; - char *name; - struct cpci_hp_controller_ops *ops; -}; - -struct event_info { - u32 event_type; - struct slot___2 *p_slot; - struct work_struct work; -}; - -struct pushbutton_work_info { - struct slot___2 *p_slot; - struct work_struct work; -}; - -struct acpiphp_attention_info { - int (*set_attn)(struct hotplug_slot *, u8); - int (*get_attn)(struct hotplug_slot *, u8 *); - struct module *owner; -}; - -struct pci_p2pdma { - struct gen_pool *pool; - bool p2pmem_published; - struct xarray map_types; -}; - -struct pci_p2pdma_pagemap { - struct pci_dev *provider; - u64 bus_offset; - struct dev_pagemap pgmap; -}; - -struct pci_p2pdma_whitelist_entry { - short unsigned int vendor; - short unsigned int device; - enum { - REQ_SAME_HOST_BRIDGE = 1, - } flags; -}; - -struct pci_epf_group { - struct config_group group; - struct config_group primary_epc_group; - struct config_group secondary_epc_group; - struct delayed_work cfs_work; - struct pci_epf *epf; - int index; -}; - -struct pci_epc_group { - struct config_group group; - struct pci_epc *epc; - bool start; -}; - -struct pci_epf_msix_tbl { - u64 msg_addr; - u32 msg_data; - u32 vector_ctrl; -}; - -struct dw_pcie_ep_func { - struct list_head list; - u8 func_no; - u8 msi_cap; - u8 msix_cap; -}; - -struct dp_sdp_header { - u8 HB0; - u8 HB1; - u8 HB2; - u8 HB3; -}; - -struct dp_sdp { - struct dp_sdp_header sdp_header; - u8 db[32]; -}; - -struct fb_cvt_data { - u32 xres; - u32 yres; - u32 refresh; - u32 f_refresh; - u32 pixclock; - u32 hperiod; - u32 hblank; - u32 hfreq; - u32 htotal; - u32 vtotal; - u32 vsync; - u32 hsync; - u32 h_front_porch; - u32 h_back_porch; - u32 v_front_porch; - u32 v_back_porch; - u32 h_margin; - u32 v_margin; - u32 interlace; - u32 aspect_ratio; - u32 active_pixels; - u32 flags; - u32 status; -}; - -enum backlight_type { - BACKLIGHT_RAW = 1, - BACKLIGHT_PLATFORM = 2, - BACKLIGHT_FIRMWARE = 3, - BACKLIGHT_TYPE_MAX = 4, -}; - -enum backlight_scale { - BACKLIGHT_SCALE_UNKNOWN = 0, - BACKLIGHT_SCALE_LINEAR = 1, - BACKLIGHT_SCALE_NON_LINEAR = 2, -}; - -struct backlight_properties { - int brightness; - int max_brightness; - int power; - enum backlight_type type; - unsigned int state; - enum backlight_scale scale; -}; - -struct backlight_ops; - -struct backlight_device { - struct backlight_properties props; - struct mutex update_lock; - struct mutex ops_lock; - const struct backlight_ops *ops; - struct list_head entry; - struct device dev; - int use_count; -}; - -struct backlight_ops { - unsigned int options; - int (*update_status)(struct backlight_device *); - int (*get_brightness)(struct backlight_device *); - bool (*controls_device)(struct backlight_device *, struct device *); -}; - -struct ipmi_dmi_info { - enum si_type si_type; - unsigned int space; - long unsigned int addr; - u8 slave_addr; - struct ipmi_dmi_info *next; -}; - -struct acpi_wakeup_handler { - struct list_head list_node; - bool (*wakeup)(void *); - void *context; -}; - -struct acpi_table_stao { - struct acpi_table_header header; - u8 ignore_uart; -} __attribute__((packed)); - -enum acpi_bus_device_type { - ACPI_BUS_TYPE_DEVICE = 0, - ACPI_BUS_TYPE_POWER = 1, - ACPI_BUS_TYPE_PROCESSOR = 2, - ACPI_BUS_TYPE_THERMAL = 3, - ACPI_BUS_TYPE_POWER_BUTTON = 4, - ACPI_BUS_TYPE_SLEEP_BUTTON = 5, - ACPI_BUS_TYPE_ECDT_EC = 6, - ACPI_BUS_DEVICE_TYPE_COUNT = 7, -}; - -struct acpi_dep_data { - struct list_head node; - acpi_handle supplier; - acpi_handle consumer; - bool honor_dep; - bool met; - bool free_when_met; -}; - -struct acpi_probe_entry; - -typedef bool (*acpi_probe_entry_validate_subtbl)(struct acpi_subtable_header *, struct acpi_probe_entry *); - -struct acpi_probe_entry { - __u8 id[5]; - __u8 type; - acpi_probe_entry_validate_subtbl subtable_valid; - union { - acpi_tbl_table_handler probe_table; - acpi_tbl_entry_handler probe_subtbl; - }; - kernel_ulong_t driver_data; -}; - -struct acpi_scan_clear_dep_work { - struct work_struct work; - struct acpi_device *adev; -}; - -struct acpi_madt_generic_interrupt { - struct acpi_subtable_header header; - u16 reserved; - u32 cpu_interface_number; - u32 uid; - u32 flags; - u32 parking_version; - u32 performance_interrupt; - u64 parked_address; - u64 base_address; - u64 gicv_base_address; - u64 gich_base_address; - u32 vgic_interrupt; - u64 gicr_base_address; - u64 arm_mpidr; - u8 efficiency_class; - u8 reserved2[1]; - u16 spe_interrupt; - u16 trbe_interrupt; -} __attribute__((packed)); - -struct acpi_madt_core_pic { - struct acpi_subtable_header header; - u8 version; - u32 processor_id; - u32 core_id; - u32 flags; -} __attribute__((packed)); - -struct acpi_madt_rintc { - struct acpi_subtable_header header; - u8 version; - u8 reserved; - u32 flags; - u64 hart_id; - u32 uid; - u32 ext_intc_id; - u64 imsic_addr; - u32 imsic_size; -} __attribute__((packed)); - -struct acpi_table_ecdt { - struct acpi_table_header header; - struct acpi_generic_address control; - struct acpi_generic_address data; - u32 uid; - u8 gpe; - u8 id[0]; -} __attribute__((packed)); - -enum acpi_ec_event_state { - EC_EVENT_READY = 0, - EC_EVENT_IN_PROGRESS = 1, - EC_EVENT_COMPLETE = 2, -}; - -struct transaction; - -struct acpi_ec { - acpi_handle handle; - int gpe; - int irq; - long unsigned int command_addr; - long unsigned int data_addr; - bool global_lock; - long unsigned int flags; - long unsigned int reference_count; - struct mutex mutex; - wait_queue_head_t wait; - struct list_head list; - struct transaction *curr; - spinlock_t lock; - struct work_struct work; - long unsigned int timestamp; - enum acpi_ec_event_state event_state; - unsigned int events_to_process; - unsigned int events_in_progress; - unsigned int queries_in_progress; - bool busy_polling; - unsigned int polling_guard; -}; - -struct transaction { - const u8 *wdata; - u8 *rdata; - short unsigned int irq_count; - u8 command; - u8 wi; - u8 ri; - u8 wlen; - u8 rlen; - u8 flags; -}; - -typedef int (*acpi_ec_query_func)(void *); - -enum ec_command { - ACPI_EC_COMMAND_READ = 128, - ACPI_EC_COMMAND_WRITE = 129, - ACPI_EC_BURST_ENABLE = 130, - ACPI_EC_BURST_DISABLE = 131, - ACPI_EC_COMMAND_QUERY = 132, -}; - -enum { - EC_FLAGS_QUERY_ENABLED = 0, - EC_FLAGS_EVENT_HANDLER_INSTALLED = 1, - EC_FLAGS_EC_HANDLER_INSTALLED = 2, - EC_FLAGS_EC_REG_CALLED = 3, - EC_FLAGS_QUERY_METHODS_INSTALLED = 4, - EC_FLAGS_STARTED = 5, - EC_FLAGS_STOPPED = 6, - EC_FLAGS_EVENTS_MASKED = 7, -}; - -struct acpi_ec_query_handler { - struct list_head node; - acpi_ec_query_func func; - acpi_handle handle; - void *data; - u8 query_bit; - struct kref kref; -}; - -struct acpi_ec_query { - struct transaction transaction; - struct work_struct work; - struct acpi_ec_query_handler *handler; - struct acpi_ec *ec; -}; - -struct acpi_power_dependent_device { - struct device *dev; - struct list_head node; -}; - -struct acpi_power_resource { - struct acpi_device device; - struct list_head list_node; - u32 system_level; - u32 order; - unsigned int ref_count; - u8 state; - struct mutex resource_lock; - struct list_head dependents; -}; - -struct acpi_power_resource_entry { - struct list_head node; - struct acpi_power_resource *resource; -}; - -struct acpi_device_properties { - struct list_head list; - const guid_t *guid; - union acpi_object *properties; - void **bufs; -}; - -struct acpi_table_lpit { - struct acpi_table_header header; -}; - -struct acpi_lpit_header { - u32 type; - u32 length; - u16 unique_id; - u16 reserved; - u32 flags; -}; - -struct acpi_lpit_native { - struct acpi_lpit_header header; - struct acpi_generic_address entry_trigger; - u32 residency; - u32 latency; - struct acpi_generic_address residency_counter; - u64 counter_frequency; -}; - -struct lpit_residency_info { - struct acpi_generic_address gaddr; - u64 frequency; - void *iomem_addr; -}; - -struct acpi_gpe_walk_info { - struct acpi_namespace_node *gpe_device; - struct acpi_gpe_block_info *gpe_block; - u16 count; - acpi_owner_id owner_id; - u8 execute_by_owner_id; -}; - -struct acpi_exdump_info { - u8 opcode; - u8 offset; - const char *name; -} __attribute__((packed)); - -enum { - MATCH_MTR = 0, - MATCH_MEQ = 1, - MATCH_MLE = 2, - MATCH_MLT = 3, - MATCH_MGE = 4, - MATCH_MGT = 5, -}; - -struct acpi_port_info { - char *name; - u16 start; - u16 end; - u8 osi_dependency; -}; - -struct acpi_init_walk_info { - u32 table_index; - u32 object_count; - u32 method_count; - u32 serial_method_count; - u32 non_serial_method_count; - u32 serialized_method_count; - u32 device_count; - u32 op_region_count; - u32 field_count; - u32 buffer_count; - u32 package_count; - u32 op_region_init; - u32 field_init; - u32 buffer_init; - u32 package_init; - acpi_owner_id owner_id; -}; - -struct acpi_device_walk_info { - struct acpi_table_desc *table_desc; - struct acpi_evaluate_info *evaluate_info; - u32 device_count; - u32 num_STA; - u32 num_INI; -}; - -typedef acpi_status (*acpi_object_converter)(struct acpi_namespace_node *, union acpi_operand_object *, union acpi_operand_object **); - -struct acpi_simple_repair_info { - char name[4]; - u32 unexpected_btypes; - u32 package_index; - acpi_object_converter object_converter; -}; - -struct acpi_namestring_info { - const char *external_name; - const char *next_external_char; - char *internal_name; - u32 length; - u32 num_segments; - u32 num_carats; - u8 fully_qualified; -}; - -struct acpi_vendor_walk_info { - struct acpi_vendor_uuid *uuid; - struct acpi_buffer *buffer; - acpi_status status; -}; - -struct acpi_comment_node { - char *comment; - struct acpi_comment_node *next; -}; - -struct acpi_db_method_info { - acpi_handle method; - acpi_handle main_thread_gate; - acpi_handle thread_complete_gate; - acpi_handle info_gate; - u64 *threads; - u32 num_threads; - u32 num_created; - u32 num_completed; - char *name; - u32 flags; - u32 num_loops; - char pathname[512]; - char **args; - acpi_object_type *types; - char init_args; - acpi_object_type arg_types[7]; - char *arguments[7]; - char num_threads_str[11]; - char id_of_thread_str[11]; - char index_of_thread_str[11]; -}; - -struct acpi_integrity_info { - u32 nodes; - u32 objects; -}; - -struct acpi_object_info { - u32 types[28]; -}; - -struct acpi_region_walk_info { - u32 debug_level; - u32 count; - acpi_owner_id owner_id; - u8 display_type; - u32 address_space_id; -}; - -enum { - ACPI_BUTTON_LID_INIT_IGNORE = 0, - ACPI_BUTTON_LID_INIT_OPEN = 1, - ACPI_BUTTON_LID_INIT_METHOD = 2, - ACPI_BUTTON_LID_INIT_DISABLED = 3, -}; - -struct acpi_button { - unsigned int type; - struct input_dev *input; - char phys[32]; - long unsigned int pushed; - int last_state; - ktime_t last_time; - bool suspended; - bool lid_state_initialized; -}; - -struct acpi_lpi_states_array { - unsigned int size; - unsigned int composite_states_size; - struct acpi_lpi_state *entries; - struct acpi_lpi_state *composite_states[8]; -}; - -struct nd_intel_get_security_state { - u32 status; - u8 extended_state; - u8 reserved[3]; - u8 state; - u8 reserved1[3]; -}; - -struct nd_intel_set_passphrase { - u8 old_pass[32]; - u8 new_pass[32]; - u32 status; -}; - -struct nd_intel_unlock_unit { - u8 passphrase[32]; - u32 status; -}; - -struct nd_intel_disable_passphrase { - u8 passphrase[32]; - u32 status; -}; - -struct nd_intel_freeze_lock { - u32 status; -}; - -struct nd_intel_secure_erase { - u8 passphrase[32]; - u32 status; -}; - -struct nd_intel_overwrite { - u8 passphrase[32]; - u32 status; -}; - -struct nd_intel_query_overwrite { - u32 status; -}; - -struct nd_intel_fw_activate_dimminfo { - u32 status; - u16 result; - u8 state; - u8 reserved[7]; -} __attribute__((packed)); - -struct nd_intel_fw_activate_arm { - u8 activate_arm; - u32 status; -} __attribute__((packed)); - -struct nd_intel_bus_fw_activate_businfo { - u32 status; - u16 reserved; - u8 state; - u8 capability; - u64 activate_tmo; - u64 cpu_quiesce_tmo; - u64 io_quiesce_tmo; - u64 max_quiesce_tmo; -}; - -struct nd_intel_bus_fw_activate { - u8 iodev_state; - u32 status; -} __attribute__((packed)); - -enum acpi_cedt_type { - ACPI_CEDT_TYPE_CHBS = 0, - ACPI_CEDT_TYPE_CFMWS = 1, - ACPI_CEDT_TYPE_CXIMS = 2, - ACPI_CEDT_TYPE_RDPAS = 3, - ACPI_CEDT_TYPE_RESERVED = 4, -}; - -struct acpi_cedt_cfmws { - struct acpi_cedt_header header; - u32 reserved1; - u64 base_hpa; - u64 window_size; - u8 interleave_ways; - u8 interleave_arithmetic; - u16 reserved2; - u32 granularity; - u16 restrictions; - u16 qtg_id; - u32 interleave_targets[0]; -} __attribute__((packed)); - -struct acpi_table_slit { - struct acpi_table_header header; - u64 locality_count; - u8 entry[0]; -} __attribute__((packed)); - -struct acpi_table_srat { - struct acpi_table_header header; - u32 table_revision; - u64 reserved; -}; - -enum acpi_srat_type { - ACPI_SRAT_TYPE_CPU_AFFINITY = 0, - ACPI_SRAT_TYPE_MEMORY_AFFINITY = 1, - ACPI_SRAT_TYPE_X2APIC_CPU_AFFINITY = 2, - ACPI_SRAT_TYPE_GICC_AFFINITY = 3, - ACPI_SRAT_TYPE_GIC_ITS_AFFINITY = 4, - ACPI_SRAT_TYPE_GENERIC_AFFINITY = 5, - ACPI_SRAT_TYPE_GENERIC_PORT_AFFINITY = 6, - ACPI_SRAT_TYPE_RINTC_AFFINITY = 7, - ACPI_SRAT_TYPE_RESERVED = 8, -}; - -struct acpi_srat_cpu_affinity { - struct acpi_subtable_header header; - u8 proximity_domain_lo; - u8 apic_id; - u32 flags; - u8 local_sapic_eid; - u8 proximity_domain_hi[3]; - u32 clock_domain; -}; - -struct acpi_srat_mem_affinity { - struct acpi_subtable_header header; - u32 proximity_domain; - u16 reserved; - u64 base_address; - u64 length; - u32 reserved1; - u32 flags; - u64 reserved2; -} __attribute__((packed)); - -struct acpi_srat_x2apic_cpu_affinity { - struct acpi_subtable_header header; - u16 reserved; - u32 proximity_domain; - u32 apic_id; - u32 flags; - u32 clock_domain; - u32 reserved2; -}; - -struct acpi_srat_gicc_affinity { - struct acpi_subtable_header header; - u32 proximity_domain; - u32 acpi_processor_uid; - u32 flags; - u32 clock_domain; -} __attribute__((packed)); - -struct acpi_srat_generic_affinity { - struct acpi_subtable_header header; - u8 reserved; - u8 device_handle_type; - u32 proximity_domain; - u8 device_handle[16]; - u32 flags; - u32 reserved1; -}; - -struct acpi_srat_rintc_affinity { - struct acpi_subtable_header header; - u16 reserved; - u32 proximity_domain; - u32 acpi_processor_uid; - u32 flags; - u32 clock_domain; -}; - -struct access_coordinate { - unsigned int read_bandwidth; - unsigned int write_bandwidth; - unsigned int read_latency; - unsigned int write_latency; -}; - -enum cache_indexing { - NODE_CACHE_DIRECT_MAP = 0, - NODE_CACHE_INDEXED = 1, - NODE_CACHE_OTHER = 2, -}; - -enum cache_write_policy { - NODE_CACHE_WRITE_BACK = 0, - NODE_CACHE_WRITE_THROUGH = 1, - NODE_CACHE_WRITE_OTHER = 2, -}; - -enum cache_mode { - NODE_CACHE_ADDR_MODE_RESERVED = 0, - NODE_CACHE_ADDR_MODE_EXTENDED_LINEAR = 1, -}; - -struct node_cache_attrs { - enum cache_indexing indexing; - enum cache_write_policy write_policy; - u64 size; - u16 line_size; - u8 level; - u16 address_mode; -}; - -enum acpi_hmat_type { - ACPI_HMAT_TYPE_PROXIMITY = 0, - ACPI_HMAT_TYPE_LOCALITY = 1, - ACPI_HMAT_TYPE_CACHE = 2, - ACPI_HMAT_TYPE_RESERVED = 3, -}; - -struct acpi_hmat_proximity_domain { - struct acpi_hmat_structure header; - u16 flags; - u16 reserved1; - u32 processor_PD; - u32 memory_PD; - u32 reserved2; - u64 reserved3; - u64 reserved4; -}; - -struct acpi_hmat_locality { - struct acpi_hmat_structure header; - u8 flags; - u8 data_type; - u8 min_transfer_size; - u8 reserved1; - u32 number_of_initiator_Pds; - u32 number_of_target_Pds; - u32 reserved2; - u64 entry_base_unit; -}; - -struct acpi_hmat_cache { - struct acpi_hmat_structure header; - u32 memory_PD; - u32 reserved1; - u64 cache_size; - u32 cache_attributes; - u16 address_mode; - u16 number_of_SMBIOShandles; -}; - -enum locality_types { - WRITE_LATENCY = 0, - READ_LATENCY = 1, - WRITE_BANDWIDTH = 2, - READ_BANDWIDTH = 3, -}; - -struct memory_locality { - struct list_head node; - struct acpi_hmat_locality *hmat_loc; -}; - -struct target_cache { - struct list_head node; - struct node_cache_attrs cache_attrs; -}; - -enum { - NODE_ACCESS_CLASS_GENPORT_SINK_LOCAL = 2, - NODE_ACCESS_CLASS_GENPORT_SINK_CPU = 3, - NODE_ACCESS_CLASS_MAX = 4, -}; - -struct memory_target { - struct list_head node; - unsigned int memory_pxm; - unsigned int processor_pxm; - struct resource memregions; - struct access_coordinate coord[4]; - struct list_head caches; - struct node_cache_attrs cache_attrs; - u8 gen_port_device_handle[16]; - bool registered; - bool ext_updated; -}; - -struct memory_initiator { - struct list_head node; - unsigned int processor_pxm; - bool has_cpu; -}; - -struct acpi_pcct_shared_memory { - u32 signature; - u16 command; - u16 status; -}; - -struct cpc_register_resource { - acpi_object_type type; - u64 *sys_mem_vaddr; - union { - struct cpc_reg reg; - u64 int_value; - } cpc_entry; -}; - -struct cpc_desc { - int num_entries; - int version; - int cpu_id; - int write_cmd_status; - int write_cmd_id; - raw_spinlock_t rmw_lock; - struct cpc_register_resource cpc_regs[21]; - struct acpi_psd_package domain_info; - struct kobject kobj; -}; - -enum cppc_regs { - HIGHEST_PERF = 0, - NOMINAL_PERF = 1, - LOW_NON_LINEAR_PERF = 2, - LOWEST_PERF = 3, - GUARANTEED_PERF = 4, - DESIRED_PERF = 5, - MIN_PERF = 6, - MAX_PERF = 7, - PERF_REDUC_TOLERANCE = 8, - TIME_WINDOW = 9, - CTR_WRAP_TIME = 10, - REFERENCE_CTR = 11, - DELIVERED_CTR = 12, - PERF_LIMITED = 13, - ENABLE = 14, - AUTO_SEL_ENABLE = 15, - AUTO_ACT_WINDOW = 16, - ENERGY_PERF = 17, - REFERENCE_PERF = 18, - LOWEST_FREQ = 19, - NOMINAL_FREQ = 20, -}; - -struct cppc_perf_ctrls { - u32 max_perf; - u32 min_perf; - u32 desired_perf; - u32 energy_perf; -}; - -struct cppc_perf_fb_ctrs { - u64 reference; - u64 delivered; - u64 reference_perf; - u64 wraparound_time; -}; - -struct cppc_cpudata { - struct cppc_perf_caps perf_caps; - struct cppc_perf_ctrls perf_ctrls; - struct cppc_perf_fb_ctrs perf_fb_ctrs; - unsigned int shared_type; - cpumask_var_t shared_cpu_map; -}; - -struct cppc_pcc_data { - struct pcc_mbox_chan *pcc_channel; - bool pcc_channel_acquired; - unsigned int deadline_us; - unsigned int pcc_mpar; - unsigned int pcc_mrtt; - unsigned int pcc_nominal; - bool pending_pcc_write_cmd; - bool platform_owns_pcc; - unsigned int pcc_write_cnt; - struct rw_semaphore pcc_lock; - wait_queue_head_t pcc_write_wait_q; - ktime_t last_cmd_cmpl_time; - ktime_t last_mpar_reset; - int mpar_count; - int refcount; -}; - -struct acpi_table_hest { - struct acpi_table_header header; - u32 error_source_count; -}; - -enum acpi_hest_types { - ACPI_HEST_TYPE_IA32_CHECK = 0, - ACPI_HEST_TYPE_IA32_CORRECTED_CHECK = 1, - ACPI_HEST_TYPE_IA32_NMI = 2, - ACPI_HEST_TYPE_NOT_USED3 = 3, - ACPI_HEST_TYPE_NOT_USED4 = 4, - ACPI_HEST_TYPE_NOT_USED5 = 5, - ACPI_HEST_TYPE_AER_ROOT_PORT = 6, - ACPI_HEST_TYPE_AER_ENDPOINT = 7, - ACPI_HEST_TYPE_AER_BRIDGE = 8, - ACPI_HEST_TYPE_GENERIC_ERROR = 9, - ACPI_HEST_TYPE_GENERIC_ERROR_V2 = 10, - ACPI_HEST_TYPE_IA32_DEFERRED_CHECK = 11, - ACPI_HEST_TYPE_RESERVED = 12, -}; - -struct acpi_hest_ia_machine_check { - struct acpi_hest_header header; - u16 reserved1; - u8 flags; - u8 enabled; - u32 records_to_preallocate; - u32 max_sections_per_record; - u64 global_capability_data; - u64 global_control_data; - u8 num_hardware_banks; - u8 reserved3[7]; -}; - -struct acpi_hest_generic { - struct acpi_hest_header header; - u16 related_source_id; - u8 reserved; - u8 enabled; - u32 records_to_preallocate; - u32 max_sections_per_record; - u32 max_raw_data_length; - struct acpi_generic_address error_status_address; - struct acpi_hest_notify notify; - u32 error_block_length; -}; - -struct acpi_hest_ia_deferred_check { - struct acpi_hest_header header; - u16 reserved1; - u8 flags; - u8 enabled; - u32 records_to_preallocate; - u32 max_sections_per_record; - struct acpi_hest_notify notify; - u8 num_hardware_banks; - u8 reserved2[3]; -}; - -enum hest_status { - HEST_ENABLED = 0, - HEST_DISABLED = 1, - HEST_NOT_FOUND = 2, -}; - -typedef int (*apei_hest_func_t)(struct acpi_hest_header *, void *); - -struct acpi_table_erst { - struct acpi_table_header header; - u32 header_length; - u32 reserved; - u32 entries; -}; - -enum acpi_erst_actions { - ACPI_ERST_BEGIN_WRITE = 0, - ACPI_ERST_BEGIN_READ = 1, - ACPI_ERST_BEGIN_CLEAR = 2, - ACPI_ERST_END = 3, - ACPI_ERST_SET_RECORD_OFFSET = 4, - ACPI_ERST_EXECUTE_OPERATION = 5, - ACPI_ERST_CHECK_BUSY_STATUS = 6, - ACPI_ERST_GET_COMMAND_STATUS = 7, - ACPI_ERST_GET_RECORD_ID = 8, - ACPI_ERST_SET_RECORD_ID = 9, - ACPI_ERST_GET_RECORD_COUNT = 10, - ACPI_ERST_BEGIN_DUMMY_WRIITE = 11, - ACPI_ERST_NOT_USED = 12, - ACPI_ERST_GET_ERROR_RANGE = 13, - ACPI_ERST_GET_ERROR_LENGTH = 14, - ACPI_ERST_GET_ERROR_ATTRIBUTES = 15, - ACPI_ERST_EXECUTE_TIMINGS = 16, - ACPI_ERST_ACTION_RESERVED = 17, -}; - -enum acpi_erst_instructions { - ACPI_ERST_READ_REGISTER = 0, - ACPI_ERST_READ_REGISTER_VALUE = 1, - ACPI_ERST_WRITE_REGISTER = 2, - ACPI_ERST_WRITE_REGISTER_VALUE = 3, - ACPI_ERST_NOOP = 4, - ACPI_ERST_LOAD_VAR1 = 5, - ACPI_ERST_LOAD_VAR2 = 6, - ACPI_ERST_STORE_VAR1 = 7, - ACPI_ERST_ADD = 8, - ACPI_ERST_SUBTRACT = 9, - ACPI_ERST_ADD_VALUE = 10, - ACPI_ERST_SUBTRACT_VALUE = 11, - ACPI_ERST_STALL = 12, - ACPI_ERST_STALL_WHILE_TRUE = 13, - ACPI_ERST_SKIP_NEXT_IF_TRUE = 14, - ACPI_ERST_GOTO = 15, - ACPI_ERST_SET_SRC_ADDRESS_BASE = 16, - ACPI_ERST_SET_DST_ADDRESS_BASE = 17, - ACPI_ERST_MOVE_DATA = 18, - ACPI_ERST_INSTRUCTION_RESERVED = 19, -}; - -struct cper_record_header { - char signature[4]; - u16 revision; - u32 signature_end; - u16 section_count; - u32 error_severity; - u32 validation_bits; - u32 record_length; - u64 timestamp; - guid_t platform_id; - guid_t partition_id; - guid_t creator_id; - guid_t notification_type; - u64 record_id; - u32 flags; - u64 persistence_information; - u8 reserved[12]; -} __attribute__((packed)); - -struct cper_section_descriptor { - u32 section_offset; - u32 section_length; - u16 revision; - u8 validation_bits; - u8 reserved; - u32 flags; - guid_t section_type; - guid_t fru_id; - u32 section_severity; - u8 fru_text[20]; -}; - -struct erst_erange { - u64 base; - u64 size; - void *vaddr; - u32 attr; - u64 timings; -}; - -struct erst_record_id_cache { - struct mutex lock; - u64 *entries; - int len; - int size; - int refcount; -}; - -struct cper_pstore_record { - struct cper_record_header hdr; - struct cper_section_descriptor sec_hdr; - char data[0]; -}; - -struct pnp_fixup { - char id[8]; - void (*quirk_function)(struct pnp_dev *); -}; - -struct devm_clk_state { - struct clk *clk; - void (*exit)(struct clk *); -}; - -struct clk_bulk_devres { - struct clk_bulk_data *clks; - int num_clks; -}; - -struct clk_notifier { - struct clk *clk; - struct srcu_notifier_head notifier_head; - struct list_head node; -}; - -struct clk_notifier_data { - struct clk *clk; - long unsigned int old_rate; - long unsigned int new_rate; -}; - -struct clk_parent_map; - -struct clk_core { - const char *name; - const struct clk_ops *ops; - struct clk_hw *hw; - struct module *owner; - struct device *dev; - struct hlist_node rpm_node; - struct device_node *of_node; - struct clk_core *parent; - struct clk_parent_map *parents; - u8 num_parents; - u8 new_parent_index; - long unsigned int rate; - long unsigned int req_rate; - long unsigned int new_rate; - struct clk_core *new_parent; - struct clk_core *new_child; - long unsigned int flags; - bool orphan; - bool rpm_enabled; - unsigned int enable_count; - unsigned int prepare_count; - unsigned int protect_count; - long unsigned int min_rate; - long unsigned int max_rate; - long unsigned int accuracy; - int phase; - struct clk_duty duty; - struct hlist_head children; - struct hlist_node child_node; - struct hlist_head clks; - unsigned int notifier_count; - struct dentry *dentry; - struct hlist_node debug_node; - struct kref ref; -}; - -struct clk_parent_map { - const struct clk_hw *hw; - struct clk_core *core; - const char *fw_name; - const char *name; - int index; -}; - -struct trace_event_raw_clk { - struct trace_entry ent; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_clk_rate { - struct trace_entry ent; - u32 __data_loc_name; - long unsigned int rate; - char __data[0]; -}; - -struct trace_event_raw_clk_rate_range { - struct trace_entry ent; - u32 __data_loc_name; - long unsigned int min; - long unsigned int max; - char __data[0]; -}; - -struct trace_event_raw_clk_parent { - struct trace_entry ent; - u32 __data_loc_name; - u32 __data_loc_pname; - char __data[0]; -}; - -struct trace_event_raw_clk_phase { - struct trace_entry ent; - u32 __data_loc_name; - int phase; - char __data[0]; -}; - -struct trace_event_raw_clk_duty_cycle { - struct trace_entry ent; - u32 __data_loc_name; - unsigned int num; - unsigned int den; - char __data[0]; -}; - -struct trace_event_raw_clk_rate_request { - struct trace_entry ent; - u32 __data_loc_name; - u32 __data_loc_pname; - long unsigned int min; - long unsigned int max; - long unsigned int prate; - char __data[0]; -}; - -struct trace_event_data_offsets_clk { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_clk_rate { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_clk_rate_range { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_clk_parent { - u32 name; - const void *name_ptr_; - u32 pname; - const void *pname_ptr_; -}; - -struct trace_event_data_offsets_clk_phase { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_clk_duty_cycle { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_clk_rate_request { - u32 name; - const void *name_ptr_; - u32 pname; - const void *pname_ptr_; -}; - -typedef void (*btf_trace_clk_enable)(void *, struct clk_core *); - -typedef void (*btf_trace_clk_enable_complete)(void *, struct clk_core *); - -typedef void (*btf_trace_clk_disable)(void *, struct clk_core *); - -typedef void (*btf_trace_clk_disable_complete)(void *, struct clk_core *); - -typedef void (*btf_trace_clk_prepare)(void *, struct clk_core *); - -typedef void (*btf_trace_clk_prepare_complete)(void *, struct clk_core *); - -typedef void (*btf_trace_clk_unprepare)(void *, struct clk_core *); - -typedef void (*btf_trace_clk_unprepare_complete)(void *, struct clk_core *); - -typedef void (*btf_trace_clk_set_rate)(void *, struct clk_core *, long unsigned int); - -typedef void (*btf_trace_clk_set_rate_complete)(void *, struct clk_core *, long unsigned int); - -typedef void (*btf_trace_clk_set_min_rate)(void *, struct clk_core *, long unsigned int); - -typedef void (*btf_trace_clk_set_max_rate)(void *, struct clk_core *, long unsigned int); - -typedef void (*btf_trace_clk_set_rate_range)(void *, struct clk_core *, long unsigned int, long unsigned int); - -typedef void (*btf_trace_clk_set_parent)(void *, struct clk_core *, struct clk_core *); - -typedef void (*btf_trace_clk_set_parent_complete)(void *, struct clk_core *, struct clk_core *); - -typedef void (*btf_trace_clk_set_phase)(void *, struct clk_core *, int); - -typedef void (*btf_trace_clk_set_phase_complete)(void *, struct clk_core *, int); - -typedef void (*btf_trace_clk_set_duty_cycle)(void *, struct clk_core *, struct clk_duty *); - -typedef void (*btf_trace_clk_set_duty_cycle_complete)(void *, struct clk_core *, struct clk_duty *); - -typedef void (*btf_trace_clk_rate_request_start)(void *, struct clk_rate_request *); - -typedef void (*btf_trace_clk_rate_request_done)(void *, struct clk_rate_request *); - -struct clk_notifier_devres { - struct clk *clk; - struct notifier_block *nb; -}; - -struct pmc_clk { - const char *name; - long unsigned int freq; - const char *parent_name; -}; - -struct pmc_clk_data { - void *base; - const struct pmc_clk *clks; - bool critical; -}; - -struct clk_plt_fixed { - struct clk_hw *clk; - struct clk_lookup *lookup; -}; - -struct clk_plt { - struct clk_hw hw; - void *reg; - struct clk_lookup *lookup; - spinlock_t lock; -}; - -struct clk_plt_data { - struct clk_plt_fixed **parents; - u8 nparents; - struct clk_plt *clks[6]; - struct clk_lookup *mclk_lookup; - struct clk_lookup *ether_clk_lookup; -}; - -struct hsu_dma_chan; - -struct hsu_dma { - struct dma_device dma; - struct hsu_dma_chan *chan; - short unsigned int nr_channels; -}; - -struct hsu_dma_sg { - dma_addr_t addr; - unsigned int len; -}; - -struct hsu_dma_desc { - struct virt_dma_desc vdesc; - enum dma_transfer_direction direction; - struct hsu_dma_sg *sg; - unsigned int nents; - size_t length; - unsigned int active; - enum dma_status status; -}; - -struct hsu_dma_chan { - struct virt_dma_chan vchan; - void *reg; - enum dma_transfer_direction direction; - struct dma_slave_config config; - struct hsu_dma_desc *desc; -}; - -struct virtio_admin_cmd_hdr { - __le16 opcode; - __le16 group_type; - __u8 reserved1[12]; - __le64 group_member_id; -}; - -struct virtio_admin_cmd_status { - __le16 status; - __le16 status_qualifier; - __u8 reserved2[4]; -}; - -struct virtio_dev_parts_cap { - __u8 get_parts_resource_objects_limit; - __u8 set_parts_resource_objects_limit; -}; - -struct virtio_admin_cmd_query_cap_id_result { - __le64 supported_caps[1]; -}; - -struct virtio_admin_cmd_cap_get_data { - __le16 id; - __u8 reserved[6]; -}; - -struct virtio_admin_cmd_cap_set_data { - __le16 id; - __u8 reserved[6]; - __u8 cap_specific_data[0]; -}; - -struct virtio_admin_cmd_resource_obj_cmd_hdr { - __le16 type; - __u8 reserved[2]; - __le32 id; -}; - -struct virtio_admin_cmd_resource_obj_create_data { - struct virtio_admin_cmd_resource_obj_cmd_hdr hdr; - __le64 flags; - __u8 resource_obj_specific_data[0]; -}; - -struct virtio_resource_obj_dev_parts { - __u8 type; - __u8 reserved[7]; -}; - -struct virtio_admin_cmd_dev_parts_metadata_data { - struct virtio_admin_cmd_resource_obj_cmd_hdr hdr; - __u8 type; - __u8 reserved[7]; -}; - -struct virtio_dev_part_hdr { - __le16 part_type; - __u8 flags; - __u8 reserved; - union { - struct { - __le32 offset; - __le32 reserved; - } pci_common_cfg; - struct { - __le16 index; - __u8 reserved[6]; - } vq_index; - } selector; - __le32 length; -}; - -struct virtio_admin_cmd_dev_parts_metadata_result { - union { - struct { - __le32 size; - __le32 reserved; - } parts_size; - struct { - __le32 count; - __le32 reserved; - } hdr_list_count; - struct { - __le32 count; - __le32 reserved; - struct virtio_dev_part_hdr hdrs[0]; - } hdr_list; - }; -}; - -struct virtio_admin_cmd_dev_parts_get_data { - struct virtio_admin_cmd_resource_obj_cmd_hdr hdr; - __u8 type; - __u8 reserved[7]; - struct virtio_dev_part_hdr hdr_list[0]; -}; - -struct virtio_admin_cmd_dev_mode_set_data { - __u8 flags; -}; - -enum { - REGULATOR_ERROR_CLEARED = 0, - REGULATOR_FAILED_RETRY = 1, - REGULATOR_ERROR_ON = 2, -}; - -struct regulator_irq { - struct regulator_irq_data rdata; - struct regulator_irq_desc desc; - int irq; - int retry_cnt; - struct delayed_work isr_work; -}; - -struct reset_simple_data { - spinlock_t lock; - void *membase; - struct reset_controller_dev rcdev; - bool active_low; - bool status_active_low; - unsigned int reset_us; -}; - -struct reset_simple_devdata { - u32 reg_offset; - u32 nr_resets; - bool active_low; - bool status_active_low; -}; - -struct termios { - tcflag_t c_iflag; - tcflag_t c_oflag; - tcflag_t c_cflag; - tcflag_t c_lflag; - cc_t c_line; - cc_t c_cc[19]; -}; - -struct termios2 { - tcflag_t c_iflag; - tcflag_t c_oflag; - tcflag_t c_cflag; - tcflag_t c_lflag; - cc_t c_line; - cc_t c_cc[19]; - speed_t c_ispeed; - speed_t c_ospeed; -}; - -struct termio { - short unsigned int c_iflag; - short unsigned int c_oflag; - short unsigned int c_cflag; - short unsigned int c_lflag; - unsigned char c_line; - unsigned char c_cc[8]; -}; - -struct ldsem_waiter { - struct list_head list; - struct task_struct *task; -}; - -struct unipair { - short unsigned int unicode; - short unsigned int fontpos; -}; - -struct unimapdesc { - short unsigned int entry_ct; - struct unipair *entries; -}; - -struct kbentry { - unsigned char kb_table; - unsigned char kb_index; - short unsigned int kb_value; -}; - -struct kbsentry { - unsigned char kb_func; - unsigned char kb_string[512]; -}; - -struct kbkeycode { - unsigned int scancode; - unsigned int keycode; -}; - -struct kbd_repeat { - int delay; - int period; -}; - -struct vt_stat { - __u16 v_active; - __u16 v_signal; - __u16 v_state; -}; - -struct vt_sizes { - __u16 v_rows; - __u16 v_cols; - __u16 v_scrollsize; -}; - -struct vt_consize { - __u16 v_rows; - __u16 v_cols; - __u16 v_vlin; - __u16 v_clin; - __u16 v_vcol; - __u16 v_ccol; -}; - -struct vt_event { - __u32 event; - __u32 oldev; - __u32 newev; - __u32 pad[4]; -}; - -struct vt_setactivate { - __u32 console; - struct vt_mode mode; -}; - -struct vt_consizecsrpos { - __u16 con_rows; - __u16 con_cols; - __u16 csr_row; - __u16 csr_col; -}; - -struct vt_spawn_console { - spinlock_t lock; - struct pid *pid; - int sig; -}; - -struct vt_event_wait { - struct list_head list; - struct vt_event event; - int done; -}; - -struct compat_console_font_op { - compat_uint_t op; - compat_uint_t flags; - compat_uint_t width; - compat_uint_t height; - compat_uint_t charcount; - compat_caddr_t data; -}; - -struct compat_unimapdesc { - short unsigned int entry_ct; - compat_caddr_t entries; -}; - -struct kbdiacr { - unsigned char diacr; - unsigned char base; - unsigned char result; -}; - -struct kbdiacrs { - unsigned int kb_cnt; - struct kbdiacr kbdiacr[256]; -}; - -struct kbdiacruc { - unsigned int diacr; - unsigned int base; - unsigned int result; -}; - -struct kbdiacrsuc { - unsigned int kb_cnt; - struct kbdiacruc kbdiacruc[256]; -}; - -struct keyboard_notifier_param { - struct vc_data *vc; - int down; - int shift; - int ledstate; - unsigned int value; -}; - -struct kbd_struct { - unsigned char lockstate; - unsigned char slockstate; - unsigned char ledmode: 1; - unsigned char ledflagstate: 4; - char: 3; - unsigned char default_ledflagstate: 4; - unsigned char kbdmode: 3; - int: 1; - unsigned char modeflags: 5; -}; - -typedef void k_handler_fn(struct vc_data *, unsigned char, char); - -typedef void fn_handler_fn(struct vc_data *); - -struct getset_keycode_data { - struct input_keymap_entry ke; - int error; -}; - -struct uart_match { - struct uart_port *port; - struct uart_driver *driver; -}; - -struct serial8250_config { - const char *name; - short unsigned int fifo_size; - short unsigned int tx_loadsz; - unsigned char fcr; - unsigned char rxtrig_bytes[4]; - unsigned int flags; -}; - -enum mctrl_gpio_idx { - UART_GPIO_CTS = 0, - UART_GPIO_DSR = 1, - UART_GPIO_DCD = 2, - UART_GPIO_RNG = 3, - UART_GPIO_RI = 3, - UART_GPIO_RTS = 4, - UART_GPIO_DTR = 5, - UART_GPIO_MAX = 6, -}; - -struct mctrl_gpios { - struct uart_port *port; - struct gpio_desc *gpio[6]; - int irq[6]; - unsigned int mctrl_prev; - bool mctrl_on; -}; - -struct ttyprintk_port { - struct tty_port port; - spinlock_t spinlock; -}; - -struct virtio_console_config { - __virtio16 cols; - __virtio16 rows; - __virtio32 max_nr_ports; - __virtio32 emerg_wr; -}; - -struct virtio_console_control { - __virtio32 id; - __virtio16 event; - __virtio16 value; -}; - -struct ports_driver_data { - struct dentry *debugfs_dir; - struct list_head portdevs; - struct list_head consoles; -}; - -struct console___2 { - struct list_head list; - struct hvc_struct *hvc; - struct winsize ws; - u32 vtermno; -}; - -struct port_buffer { - char *buf; - size_t size; - size_t len; - size_t offset; - dma_addr_t dma; - struct device *dev; - struct list_head list; - unsigned int sgpages; - struct scatterlist sg[0]; -}; - -struct ports_device { - struct list_head list; - struct work_struct control_work; - struct work_struct config_work; - struct list_head ports; - spinlock_t ports_lock; - spinlock_t c_ivq_lock; - spinlock_t c_ovq_lock; - u32 max_nr_ports; - struct virtio_device *vdev; - struct virtqueue *c_ivq; - struct virtqueue *c_ovq; - struct virtio_console_control cpkt; - struct virtqueue **in_vqs; - struct virtqueue **out_vqs; - int chr_major; -}; - -struct port_stats { - long unsigned int bytes_sent; - long unsigned int bytes_received; - long unsigned int bytes_discarded; -}; - -struct port { - struct list_head list; - struct ports_device *portdev; - struct port_buffer *inbuf; - spinlock_t inbuf_lock; - spinlock_t outvq_lock; - struct virtqueue *in_vq; - struct virtqueue *out_vq; - struct dentry *debugfs_file; - struct port_stats stats; - struct console___2 cons; - struct cdev *cdev; - struct device *dev; - struct kref kref; - wait_queue_head_t waitqueue; - char *name; - struct fasync_struct *async_queue; - u32 id; - bool outvq_full; - bool host_connected; - bool guest_connected; -}; - -struct sg_list { - unsigned int n; - unsigned int size; - size_t len; - struct scatterlist *sg; -}; - -struct agp_3_5_dev { - struct list_head list; - u8 capndx; - u32 maxbw; - struct pci_dev *dev; -}; - -struct isoch_data { - u32 maxbw; - u32 n; - u32 y; - u32 l; - u32 rq; - struct agp_3_5_dev *dev; -}; - -enum tpm2_const { - TPM2_PLATFORM_PCR = 24, - TPM2_PCR_SELECT_MIN = 3, -}; - -enum tpm2_properties { - TPM_PT_TOTAL_COMMANDS = 297, -}; - -struct tpm2_pcr_read_out { - __be32 update_cnt; - __be32 pcr_selects_cnt; - __be16 hash_alg; - u8 pcr_select_size; - u8 pcr_select[3]; - __be32 digests_cnt; - __be16 digest_size; - u8 digest[0]; -} __attribute__((packed)); - -struct tpm2_get_random_out { - __be16 size; - u8 buffer[128]; -}; - -struct tpm2_get_cap_out { - u8 more_data; - __be32 subcap_id; - __be32 property_cnt; - __be32 property_id; - __be32 value; -} __attribute__((packed)); - -struct tpm2_pcr_selection { - __be16 hash_alg; - u8 size_of_select; - u8 pcr_select[3]; -}; - -struct stclear_flags_t { - __be16 tag; - u8 deactivated; - u8 disableForceClear; - u8 physicalPresence; - u8 physicalPresenceLock; - u8 bGlobalLock; -} __attribute__((packed)); - -struct tpm1_version { - u8 major; - u8 minor; - u8 rev_major; - u8 rev_minor; -}; - -struct tpm1_version2 { - __be16 tag; - struct tpm1_version version; -}; - -struct timeout_t { - __be32 a; - __be32 b; - __be32 c; - __be32 d; -}; - -struct duration_t { - __be32 tpm_short; - __be32 tpm_medium; - __be32 tpm_long; -}; - -struct permanent_flags_t { - __be16 tag; - u8 disable; - u8 ownership; - u8 deactivated; - u8 readPubek; - u8 disableOwnerClear; - u8 allowMaintenance; - u8 physicalPresenceLifetimeLock; - u8 physicalPresenceHWEnable; - u8 physicalPresenceCMDEnable; - u8 CEKPUsed; - u8 TPMpost; - u8 TPMpostLock; - u8 FIPS; - u8 operator; - u8 enableRevokeEK; - u8 nvLocked; - u8 readSRKPub; - u8 tpmEstablished; - u8 maintenanceDone; - u8 disableFullDALogicInfo; -}; - -typedef union { - struct permanent_flags_t perm_flags; - struct stclear_flags_t stclear_flags; - __u8 owned; - __be32 num_pcrs; - struct tpm1_version version1; - struct tpm1_version2 version2; - __be32 manufacturer_id; - struct timeout_t timeout; - struct duration_t duration; -} cap_t; - -enum tpm_capabilities { - TPM_CAP_FLAG = 4, - TPM_CAP_PROP = 5, - TPM_CAP_VERSION_1_1 = 6, - TPM_CAP_VERSION_1_2 = 26, -}; - -enum tpm_sub_capabilities { - TPM_CAP_PROP_PCR = 257, - TPM_CAP_PROP_MANUFACTURER = 259, - TPM_CAP_FLAG_PERM = 264, - TPM_CAP_FLAG_VOL = 265, - TPM_CAP_PROP_OWNER = 273, - TPM_CAP_PROP_TIS_TIMEOUT = 277, - TPM_CAP_PROP_TIS_DURATION = 288, -}; - -struct tpm_readpubek_out { - u8 algorithm[4]; - u8 encscheme[2]; - u8 sigscheme[2]; - __be32 paramsize; - u8 parameters[12]; - __be32 keysize; - u8 modulus[256]; - u8 checksum[20]; -}; - -struct tpm_pcr_attr { - int alg_id; - int pcr; - struct device_attribute attr; -}; - -enum tis_access { - TPM_ACCESS_VALID = 128, - TPM_ACCESS_ACTIVE_LOCALITY = 32, - TPM_ACCESS_REQUEST_PENDING = 4, - TPM_ACCESS_REQUEST_USE = 2, -}; - -enum tis_status { - TPM_STS_VALID = 128, - TPM_STS_COMMAND_READY = 64, - TPM_STS_GO = 32, - TPM_STS_DATA_AVAIL = 16, - TPM_STS_DATA_EXPECT = 8, - TPM_STS_RESPONSE_RETRY = 2, - TPM_STS_READ_ZERO = 35, -}; - -enum tis_int_flags { - TPM_GLOBAL_INT_ENABLE = 2147483648, - TPM_INTF_BURST_COUNT_STATIC = 256, - TPM_INTF_CMD_READY_INT = 128, - TPM_INTF_INT_EDGE_FALLING = 64, - TPM_INTF_INT_EDGE_RISING = 32, - TPM_INTF_INT_LEVEL_LOW = 16, - TPM_INTF_INT_LEVEL_HIGH = 8, - TPM_INTF_LOCALITY_CHANGE_INT = 4, - TPM_INTF_STS_VALID_INT = 2, - TPM_INTF_DATA_AVAIL_INT = 1, -}; - -struct tis_vendor_durations_override { - u32 did_vid; - struct tpm1_version version; - long unsigned int durations[3]; -}; - -struct tis_vendor_timeout_override { - u32 did_vid; - long unsigned int timeout_us[4]; -}; - -enum crb_defaults { - CRB_ACPI_START_REVISION_ID = 1, - CRB_ACPI_START_INDEX = 1, -}; - -enum crb_loc_ctrl { - CRB_LOC_CTRL_REQUEST_ACCESS = 1, - CRB_LOC_CTRL_RELINQUISH = 2, -}; - -enum crb_loc_state { - CRB_LOC_STATE_LOC_ASSIGNED = 2, - CRB_LOC_STATE_TPM_REG_VALID_STS = 128, -}; - -enum crb_ctrl_req { - CRB_CTRL_REQ_CMD_READY = 1, - CRB_CTRL_REQ_GO_IDLE = 2, -}; - -enum crb_ctrl_sts { - CRB_CTRL_STS_ERROR = 1, - CRB_CTRL_STS_TPM_IDLE = 2, -}; - -enum crb_start { - CRB_START_INVOKE = 1, -}; - -enum crb_cancel { - CRB_CANCEL_INVOKE = 1, -}; - -struct crb_regs_head { - u32 loc_state; - u32 reserved1; - u32 loc_ctrl; - u32 loc_sts; - u8 reserved2[32]; - u64 intf_id; - u64 ctrl_ext; -}; - -struct crb_regs_tail { - u32 ctrl_req; - u32 ctrl_sts; - u32 ctrl_cancel; - u32 ctrl_start; - u32 ctrl_int_enable; - u32 ctrl_int_sts; - u32 ctrl_cmd_size; - u32 ctrl_cmd_pa_low; - u32 ctrl_cmd_pa_high; - u32 ctrl_rsp_size; - u64 ctrl_rsp_pa; -}; - -enum crb_status { - CRB_DRV_STS_COMPLETE = 1, -}; - -struct crb_priv { - u32 sm; - const char *hid; - struct crb_regs_head *regs_h; - struct crb_regs_tail *regs_t; - u8 *cmd; - u8 *rsp; - u32 cmd_size; - u32 smc_func_id; - u32 *pluton_start_addr; - u32 *pluton_reply_addr; - u8 ffa_flags; - u8 ffa_attributes; -}; - -struct tpm2_crb_smc { - u32 interrupt; - u8 interrupt_flags; - u8 op_flags; - u16 reserved2; - u32 smc_func_id; -}; - -struct tpm2_crb_ffa { - u8 flags; - u8 attributes; - u16 partition_id; - u8 reserved[8]; -}; - -struct tpm2_crb_pluton { - u64 start_addr; - u64 reply_addr; -}; - -struct io_pgtable_init_fns { - struct io_pgtable * (*alloc)(struct io_pgtable_cfg *, void *); - void (*free)(struct io_pgtable *); - u32 caps; -}; - -struct acpi_dmar_reserved_memory { - struct acpi_dmar_header header; - u16 reserved; - u16 segment; - u64 base_address; - u64 end_address; -}; - -struct acpi_dmar_atsr { - struct acpi_dmar_header header; - u8 flags; - u8 reserved; - u16 segment; -}; - -struct acpi_dmar_satc { - struct acpi_dmar_header header; - u8 flags; - u8 reserved; - u16 segment; -}; - -enum iommu_hw_info_vtd_flags { - IOMMU_HW_INFO_VTD_ERRATA_772415_SPR17 = 1, -}; - -struct iommu_hw_info_vtd { - __u32 flags; - __u32 __reserved; - __u64 cap_reg; - __u64 ecap_reg; -}; - -struct context_entry { - u64 lo; - u64 hi; -}; - -struct ioptdesc { - long unsigned int __page_flags; - struct list_head iopt_freelist_elm; - long unsigned int __page_mapping; - long unsigned int __index; - void *_private; - unsigned int __page_type; - atomic_t __page_refcount; - long unsigned int memcg_data; -}; - -struct dmar_rmrr_unit { - struct list_head list; - struct acpi_dmar_header *hdr; - u64 base_address; - u64 end_address; - struct dmar_dev_scope *devices; - int devices_cnt; -}; - -struct dmar_atsr_unit { - struct list_head list; - struct acpi_dmar_header *hdr; - struct dmar_dev_scope *devices; - int devices_cnt; - u8 include_all: 1; -}; - -struct dmar_satc_unit { - struct list_head list; - struct acpi_dmar_header *hdr; - struct dmar_dev_scope *devices; - struct intel_iommu *iommu; - int devices_cnt; - u8 atc_required: 1; -}; - -enum acpi_dmar_type { - ACPI_DMAR_TYPE_HARDWARE_UNIT = 0, - ACPI_DMAR_TYPE_RESERVED_MEMORY = 1, - ACPI_DMAR_TYPE_ROOT_ATS = 2, - ACPI_DMAR_TYPE_HARDWARE_AFFINITY = 3, - ACPI_DMAR_TYPE_NAMESPACE = 4, - ACPI_DMAR_TYPE_SATC = 5, - ACPI_DMAR_TYPE_SIDP = 6, - ACPI_DMAR_TYPE_RESERVED = 7, -}; - -struct acpi_dmar_rhsa { - struct acpi_dmar_header header; - u32 reserved; - u64 base_address; - u32 proximity_domain; -} __attribute__((packed)); - -struct acpi_dmar_andd { - struct acpi_dmar_header header; - u8 reserved[3]; - u8 device_number; - union { - char __pad; - struct { - struct {} __Empty_device_name; - char device_name[0]; - }; - }; -} __attribute__((packed)); - -enum latency_type { - DMAR_LATENCY_INV_IOTLB = 0, - DMAR_LATENCY_INV_DEVTLB = 1, - DMAR_LATENCY_INV_IEC = 2, - DMAR_LATENCY_NUM = 3, -}; - -enum latency_count { - COUNTS_10e2 = 0, - COUNTS_10e3 = 1, - COUNTS_10e4 = 2, - COUNTS_10e5 = 3, - COUNTS_10e6 = 4, - COUNTS_10e7 = 5, - COUNTS_10e8_plus = 6, - COUNTS_MIN = 7, - COUNTS_MAX = 8, - COUNTS_SUM = 9, - COUNTS_NUM = 10, -}; - -typedef int (*dmar_res_handler_t)(struct acpi_dmar_header *, void *); - -struct dmar_res_callback { - dmar_res_handler_t cb[7]; - void *arg[7]; - bool ignore_unhandled; - bool print_entry; -}; - -enum faulttype { - DMA_REMAP = 0, - INTR_REMAP = 1, - UNKNOWN = 2, -}; - -struct iommu_group { - struct kobject kobj; - struct kobject *devices_kobj; - struct list_head devices; - struct xarray pasid_array; - struct mutex mutex; - void *iommu_data; - void (*iommu_data_release)(void *); - char *name; - int id; - struct iommu_domain *default_domain; - struct iommu_domain *blocking_domain; - struct iommu_domain *domain; - struct list_head entry; - unsigned int owner_cnt; - void *owner; -}; - -enum iommu_hw_queue_type { - IOMMU_HW_QUEUE_TYPE_DEFAULT = 0, - IOMMU_HW_QUEUE_TYPE_TEGRA241_CMDQV = 1, -}; - -enum iommufd_object_type { - IOMMUFD_OBJ_NONE = 0, - IOMMUFD_OBJ_ANY = 0, - IOMMUFD_OBJ_DEVICE = 1, - IOMMUFD_OBJ_HWPT_PAGING = 2, - IOMMUFD_OBJ_HWPT_NESTED = 3, - IOMMUFD_OBJ_IOAS = 4, - IOMMUFD_OBJ_ACCESS = 5, - IOMMUFD_OBJ_FAULT = 6, - IOMMUFD_OBJ_VIOMMU = 7, - IOMMUFD_OBJ_VDEVICE = 8, - IOMMUFD_OBJ_VEVENTQ = 9, - IOMMUFD_OBJ_HW_QUEUE = 10, - IOMMUFD_OBJ_MAX = 11, -}; - -struct iommufd_object { - refcount_t wait_cnt; - refcount_t users; - enum iommufd_object_type type; - unsigned int id; -}; - -struct iommufd_ctx; - -struct iommufd_hwpt_paging; - -struct iommufd_viommu_ops; - -struct iommufd_viommu { - struct iommufd_object obj; - struct iommufd_ctx *ictx; - struct iommu_device *iommu_dev; - struct iommufd_hwpt_paging *hwpt; - const struct iommufd_viommu_ops *ops; - struct xarray vdevs; - struct list_head veventqs; - struct rw_semaphore veventqs_rwsem; - enum iommu_viommu_type type; -}; - -struct iommufd_vdevice; - -struct iommufd_hw_queue; - -struct iommufd_viommu_ops { - void (*destroy)(struct iommufd_viommu *); - struct iommu_domain * (*alloc_domain_nested)(struct iommufd_viommu *, u32, const struct iommu_user_data *); - int (*cache_invalidate)(struct iommufd_viommu *, struct iommu_user_data_array *); - const size_t vdevice_size; - int (*vdevice_init)(struct iommufd_vdevice *); - size_t (*get_hw_queue_size)(struct iommufd_viommu *, enum iommu_hw_queue_type); - int (*hw_queue_init_phys)(struct iommufd_hw_queue *, u32, phys_addr_t); -}; - -struct iommufd_device; - -struct iommufd_vdevice { - struct iommufd_object obj; - struct iommufd_viommu *viommu; - struct iommufd_device *idev; - u64 virt_id; - void (*destroy)(struct iommufd_vdevice *); -}; - -struct iommufd_access; - -struct iommufd_hw_queue { - struct iommufd_object obj; - struct iommufd_viommu *viommu; - struct iommufd_access *access; - u64 base_addr; - size_t length; - enum iommu_hw_queue_type type; - void (*destroy)(struct iommufd_hw_queue *); -}; - -struct fsl_mc_obj_desc { - char type[16]; - int id; - u16 vendor; - u16 ver_major; - u16 ver_minor; - u8 irq_count; - u8 region_count; - u32 state; - char label[16]; - u16 flags; -}; - -struct fsl_mc_io; - -struct fsl_mc_device_irq; - -struct fsl_mc_resource; - -struct fsl_mc_device { - struct device dev; - u64 dma_mask; - u16 flags; - u32 icid; - u16 mc_handle; - struct fsl_mc_io *mc_io; - struct fsl_mc_obj_desc obj_desc; - struct resource *regions; - struct fsl_mc_device_irq **irqs; - struct fsl_mc_resource *resource; - struct device_link *consumer_link; - const char *driver_override; -}; - -enum fsl_mc_pool_type { - FSL_MC_POOL_DPMCP = 0, - FSL_MC_POOL_DPBP = 1, - FSL_MC_POOL_DPCON = 2, - FSL_MC_POOL_IRQ = 3, - FSL_MC_NUM_POOL_TYPES = 4, -}; - -struct fsl_mc_resource_pool; - -struct fsl_mc_resource { - enum fsl_mc_pool_type type; - s32 id; - void *data; - struct fsl_mc_resource_pool *parent_pool; - struct list_head node; -}; - -struct fsl_mc_device_irq { - unsigned int virq; - struct fsl_mc_device *mc_dev; - u8 dev_irq_index; - struct fsl_mc_resource resource; -}; - -struct fsl_mc_io { - struct device *dev; - u16 flags; - u32 portal_size; - phys_addr_t portal_phys_addr; - void *portal_virt_addr; - struct fsl_mc_device *dpmcp_dev; - union { - struct mutex mutex; - raw_spinlock_t spinlock; - }; -}; - -enum { - IOMMU_PASID_ARRAY_DOMAIN = 0, - IOMMU_PASID_ARRAY_HANDLE = 1, -}; - -struct group_device { - struct list_head list; - struct device *dev; - char *name; -}; - -struct iommu_group_attribute { - struct attribute attr; - ssize_t (*show)(struct iommu_group *, char *); - ssize_t (*store)(struct iommu_group *, const char *, size_t); -}; - -enum { - IOMMU_SET_DOMAIN_MUST_SUCCEED = 1, -}; - -struct group_for_pci_data { - struct pci_dev *pdev; - struct iommu_group *group; -}; - -enum io_pgtable_caps { - IO_PGTABLE_CAP_CUSTOM_ALLOCATOR = 1, -}; - -struct hyperv_root_ir_data { - u8 ioapic_id; - bool is_level; - struct hv_interrupt_entry entry; -} __attribute__((packed)); - -typedef int (*pm_callback_t)(struct device *); - -struct firmware_cache { - spinlock_t lock; - struct list_head head; - int state; - spinlock_t name_lock; - struct list_head fw_names; - struct delayed_work work; - struct notifier_block pm_notify; -}; - -struct fw_cache_entry { - struct list_head list; - const char *name; -}; - -struct fw_name_devm { - long unsigned int magic; - const char *name; -}; - -struct firmware_work { - struct work_struct work; - struct module *module; - const char *name; - struct device *device; - void *context; - void (*cont)(const struct firmware *, void *); - u32 opt_flags; -}; - -struct regcache_rbtree_node { - void *block; - long unsigned int *cache_present; - unsigned int base_reg; - unsigned int blklen; - struct rb_node node; -}; - -struct regcache_rbtree_ctx { - struct rb_root root; - struct regcache_rbtree_node *cached_rbnode; -}; - -struct regmap_debugfs_off_cache { - struct list_head list; - off_t min; - off_t max; - unsigned int base_reg; - unsigned int max_reg; -}; - -struct regmap_debugfs_node { - struct regmap *map; - struct list_head link; -}; - -struct regmap_mmio_context { - void *regs; - unsigned int val_bytes; - bool big_endian; - bool attached_clk; - struct clk *clk; - void (*reg_write)(struct regmap_mmio_context *, unsigned int, unsigned int); - unsigned int (*reg_read)(struct regmap_mmio_context *, unsigned int); -}; - -struct devcd_entry { - struct device devcd_dev; - void *data; - size_t datalen; - struct mutex mutex; - bool init_completed; - bool deleted; - struct module *owner; - ssize_t (*read)(char *, loff_t, size_t, void *, size_t); - void (*free)(void *); - struct delayed_work del_wk; - struct device *failing_dev; -}; - -typedef long unsigned int __kernel_old_dev_t; - -typedef u16 compat_dev_t; - -enum { - LO_FLAGS_READ_ONLY = 1, - LO_FLAGS_AUTOCLEAR = 4, - LO_FLAGS_PARTSCAN = 8, - LO_FLAGS_DIRECT_IO = 16, -}; - -struct loop_info { - int lo_number; - __kernel_old_dev_t lo_device; - long unsigned int lo_inode; - __kernel_old_dev_t lo_rdevice; - int lo_offset; - int lo_encrypt_type; - int lo_encrypt_key_size; - int lo_flags; - char lo_name[64]; - unsigned char lo_encrypt_key[32]; - long unsigned int lo_init[2]; - char reserved[4]; -}; - -struct loop_info64 { - __u64 lo_device; - __u64 lo_inode; - __u64 lo_rdevice; - __u64 lo_offset; - __u64 lo_sizelimit; - __u32 lo_number; - __u32 lo_encrypt_type; - __u32 lo_encrypt_key_size; - __u32 lo_flags; - __u8 lo_file_name[64]; - __u8 lo_crypt_name[64]; - __u8 lo_encrypt_key[32]; - __u64 lo_init[2]; -}; - -struct loop_config { - __u32 fd; - __u32 block_size; - struct loop_info64 info; - __u64 __reserved[8]; -}; - -enum { - Lo_unbound = 0, - Lo_bound = 1, - Lo_rundown = 2, - Lo_deleting = 3, -}; - -struct loop_device { - int lo_number; - loff_t lo_offset; - loff_t lo_sizelimit; - int lo_flags; - char lo_file_name[64]; - struct file *lo_backing_file; - unsigned int lo_min_dio_size; - struct block_device *lo_device; - gfp_t old_gfp_mask; - spinlock_t lo_lock; - int lo_state; - spinlock_t lo_work_lock; - struct workqueue_struct *workqueue; - struct work_struct rootcg_work; - struct list_head rootcg_cmd_list; - struct list_head idle_worker_list; - struct rb_root worker_tree; - struct timer_list timer; - bool sysfs_inited; - struct request_queue *lo_queue; - struct blk_mq_tag_set tag_set; - struct gendisk *lo_disk; - struct mutex lo_mutex; - bool idr_visible; -}; - -struct loop_cmd { - struct list_head list_entry; - bool use_aio; - atomic_t ref; - long int ret; - struct kiocb iocb; - struct bio_vec *bvec; - struct cgroup_subsys_state *blkcg_css; - struct cgroup_subsys_state *memcg_css; -}; - -struct loop_worker { - struct rb_node rb_node; - struct work_struct work; - struct list_head cmd_list; - struct list_head idle_list; - struct loop_device *lo; - struct cgroup_subsys_state *blkcg_css; - long unsigned int last_ran_at; -}; - -struct compat_loop_info { - compat_int_t lo_number; - compat_dev_t lo_device; - compat_ulong_t lo_inode; - compat_dev_t lo_rdevice; - compat_int_t lo_offset; - compat_int_t lo_encrypt_type; - compat_int_t lo_encrypt_key_size; - compat_int_t lo_flags; - char lo_name[64]; - unsigned char lo_encrypt_key[32]; - compat_ulong_t lo_init[2]; - char reserved[4]; -}; - -struct wm831x_irq_data { - int primary; - int reg; - int mask; -}; - -struct wm8350_reg_access { - u16 readable; - u16 writable; - u16 vol; -}; - -struct pcap_subdev { - int id; - const char *name; - void *platform_data; -}; - -struct pcap_platform_data { - unsigned int irq_base; - unsigned int config; - int gpio; - void (*init)(void *); - int num_subdevs; - struct pcap_subdev *subdevs; -}; - -struct pcap_adc_request { - u8 bank; - u8 ch[2]; - u32 flags; - void (*callback)(void *, u16 *); - void *data; -}; - -struct pcap_chip { - struct spi_device *spi; - u32 buf; - spinlock_t io_lock; - unsigned int irq_base; - u32 msr; - struct work_struct isr_work; - struct work_struct msr_work; - struct workqueue_struct *workqueue; - struct pcap_adc_request *adc_queue[8]; - u8 adc_head; - u8 adc_tail; - spinlock_t adc_lock; -}; - -enum { - MAX8998_IRQ_DCINF = 0, - MAX8998_IRQ_DCINR = 1, - MAX8998_IRQ_JIGF = 2, - MAX8998_IRQ_JIGR = 3, - MAX8998_IRQ_PWRONF = 4, - MAX8998_IRQ_PWRONR = 5, - MAX8998_IRQ_WTSREVNT = 6, - MAX8998_IRQ_SMPLEVNT = 7, - MAX8998_IRQ_ALARM1 = 8, - MAX8998_IRQ_ALARM0 = 9, - MAX8998_IRQ_ONKEY1S = 10, - MAX8998_IRQ_TOPOFFR = 11, - MAX8998_IRQ_DCINOVPR = 12, - MAX8998_IRQ_CHGRSTF = 13, - MAX8998_IRQ_DONER = 14, - MAX8998_IRQ_CHGFAULT = 15, - MAX8998_IRQ_LOBAT1 = 16, - MAX8998_IRQ_LOBAT2 = 17, - MAX8998_IRQ_NR = 18, -}; - -struct max8998_irq_data { - int reg; - int mask; -}; - -struct syscon { - struct device_node *np; - struct regmap *regmap; - struct reset_control *reset; - struct list_head list; -}; - -struct nvdimm_map { - struct nvdimm_bus *nvdimm_bus; - struct list_head list; - resource_size_t offset; - long unsigned int flags; - size_t size; - union { - void *mem; - void *iomem; - }; - struct kref kref; -}; - -struct nd_namespace_pmem { - struct nd_namespace_io nsio; - long unsigned int lbasize; - char *alt_name; - uuid_t *uuid; - int id; -}; - -enum nd_label_flags { - ND_LABEL_REAP = 0, -}; - -struct pmem_device { - phys_addr_t phys_addr; - phys_addr_t data_offset; - void *virt_addr; - size_t size; - u32 pfn_pad; - struct kernfs_node *bb_state; - struct badblocks bb; - struct dax_device *dax_dev; - struct gendisk *disk; - struct dev_pagemap pgmap; -}; - -struct dma_fence_array; - -struct dma_fence_array_cb { - struct dma_fence_cb cb; - struct dma_fence_array *array; -}; - -struct dma_fence_array { - struct dma_fence base; - spinlock_t lock; - unsigned int num_fences; - atomic_t num_pending; - struct dma_fence **fences; - struct irq_work work; - struct dma_fence_array_cb callbacks[0]; -}; - -struct dma_heap { - const char *name; - const struct dma_heap_ops *ops; - void *priv; - dev_t heap_devt; - struct list_head list; - struct cdev heap_cdev; -}; - -struct dma_heap_allocation_data { - __u64 len; - __u32 fd; - __u32 fd_flags; - __u64 heap_flags; -}; - -struct scsi_host_busy_iter_data { - bool (*fn)(struct scsi_cmnd *, void *); - void *priv; -}; - -struct scsi_eh_save { - int result; - unsigned int resid_len; - int eh_eflags; - enum dma_data_direction data_direction; - unsigned int underflow; - unsigned char cmd_len; - unsigned char prot_op; - unsigned char cmnd[32]; - struct scsi_data_buffer sdb; - struct scatterlist sense_sgl; - struct bio_crypt_ctx *rq_crypt_ctx; - struct blk_crypto_keyslot *rq_crypt_keyslot; -}; - -enum { - SCSI_DH_OK = 0, - SCSI_DH_DEV_FAILED = 1, - SCSI_DH_DEV_TEMP_BUSY = 2, - SCSI_DH_DEV_UNSUPP = 3, - SCSI_DH_DEVICE_MAX = 4, - SCSI_DH_NOTCONN = 5, - SCSI_DH_CONN_FAILURE = 6, - SCSI_DH_TRANSPORT_MAX = 7, - SCSI_DH_IO = 8, - SCSI_DH_INVALID_IO = 9, - SCSI_DH_RETRY = 10, - SCSI_DH_IMM_RETRY = 11, - SCSI_DH_TIMED_OUT = 12, - SCSI_DH_RES_TEMP_UNAVAIL = 13, - SCSI_DH_DEV_OFFLINED = 14, - SCSI_DH_NOMEM = 15, - SCSI_DH_NOSYS = 16, - SCSI_DH_DRIVER_MAX = 17, -}; - -struct scsi_dh_blist { - const char *vendor; - const char *model; - const char *driver; -}; - -struct hv_multipage_buffer { - u32 len; - u32 offset; - u64 pfn_array[32]; -}; - -struct hv_mpb_array { - u32 len; - u32 offset; - u64 pfn_array[0]; -}; - -struct vmbus_channel_packet_multipage_buffer { - u16 type; - u16 dataoffset8; - u16 length8; - u16 flags; - u64 transactionid; - u32 reserved; - u32 rangecount; - struct hv_multipage_buffer range; -}; - -struct vmbus_packet_mpb_array { - u16 type; - u16 dataoffset8; - u16 length8; - u16 flags; - u64 transactionid; - u32 reserved; - u32 rangecount; - struct hv_mpb_array range; -}; - -enum vstor_packet_operation { - VSTOR_OPERATION_COMPLETE_IO = 1, - VSTOR_OPERATION_REMOVE_DEVICE = 2, - VSTOR_OPERATION_EXECUTE_SRB = 3, - VSTOR_OPERATION_RESET_LUN = 4, - VSTOR_OPERATION_RESET_ADAPTER = 5, - VSTOR_OPERATION_RESET_BUS = 6, - VSTOR_OPERATION_BEGIN_INITIALIZATION = 7, - VSTOR_OPERATION_END_INITIALIZATION = 8, - VSTOR_OPERATION_QUERY_PROTOCOL_VERSION = 9, - VSTOR_OPERATION_QUERY_PROPERTIES = 10, - VSTOR_OPERATION_ENUMERATE_BUS = 11, - VSTOR_OPERATION_FCHBA_DATA = 12, - VSTOR_OPERATION_CREATE_SUB_CHANNELS = 13, - VSTOR_OPERATION_MAXIMUM = 13, -}; - -struct hv_fc_wwn_packet { - u8 primary_active; - u8 reserved1[3]; - u8 primary_port_wwn[8]; - u8 primary_node_wwn[8]; - u8 secondary_port_wwn[8]; - u8 secondary_node_wwn[8]; -}; - -struct vmscsi_request { - u16 length; - u8 srb_status; - u8 scsi_status; - u8 port_number; - u8 path_id; - u8 target_id; - u8 lun; - u8 cdb_length; - u8 sense_info_length; - u8 data_in; - u8 reserved; - u32 data_transfer_length; - union { - u8 cdb[16]; - u8 sense_data[20]; - u8 reserved_array[20]; - }; - u16 reserve; - u8 queue_tag; - u8 queue_action; - u32 srb_flags; - u32 time_out_value; - u32 queue_sort_ey; -}; - -struct vmstorage_channel_properties { - u32 reserved; - u16 max_channel_cnt; - u16 reserved1; - u32 flags; - u32 max_transfer_bytes; - u64 reserved2; -}; - -struct vmstorage_protocol_version { - u16 major_minor; - u16 revision; -}; - -struct vstor_packet { - enum vstor_packet_operation operation; - u32 flags; - u32 status; - union { - struct vmscsi_request vm_srb; - struct vmstorage_channel_properties storage_channel_properties; - struct vmstorage_protocol_version version; - struct hv_fc_wwn_packet wwn_packet; - u16 sub_channel_count; - u8 buffer[52]; - }; -}; - -enum storvsc_request_type { - WRITE_TYPE = 0, - READ_TYPE = 1, - UNKNOWN_TYPE = 2, -}; - -struct storvsc_cmd_request { - struct scsi_cmnd *cmd; - struct hv_device *device; - struct completion wait_event; - struct vmbus_channel_packet_multipage_buffer mpb; - struct vmbus_packet_mpb_array *payload; - u32 payload_sz; - struct vstor_packet vstor_packet; -}; - -struct storvsc_device { - struct hv_device *device; - bool destroy; - bool drain_notify; - atomic_t num_outstanding_req; - struct Scsi_Host *host; - wait_queue_head_t waiting_to_drain; - unsigned int port_number; - unsigned char path_id; - unsigned char target_id; - u32 max_transfer_bytes; - u16 num_sc; - struct vmbus_channel **stor_chns; - struct cpumask alloced_cpus; - spinlock_t lock; - struct storvsc_cmd_request init_request; - struct storvsc_cmd_request reset_request; - u64 node_name; - u64 port_name; - struct fc_rport *rport; -}; - -struct hv_host_device { - struct hv_device *dev; - unsigned int port; - unsigned char path; - unsigned char target; - struct workqueue_struct *handle_error_wq; - struct work_struct host_scan_work; - struct Scsi_Host *host; -}; - -struct storvsc_scan_work { - struct work_struct work; - struct Scsi_Host *host; - u8 lun; - u8 tgt_id; -}; - -enum { - SCSI_GUID = 0, - IDE_GUID = 1, - SFC_GUID = 2, -}; - -enum { - mechtype_caddy = 0, - mechtype_tray = 1, - mechtype_popup = 2, - mechtype_individual_changer = 4, - mechtype_cartridge_changer = 5, -}; - -enum scsi_msg_byte { - COMMAND_COMPLETE = 0, - EXTENDED_MESSAGE = 1, - SAVE_POINTERS = 2, - RESTORE_POINTERS = 3, - DISCONNECT = 4, - INITIATOR_ERROR = 5, - ABORT_TASK_SET = 6, - MESSAGE_REJECT = 7, - NOP___2 = 8, - MSG_PARITY_ERROR = 9, - LINKED_CMD_COMPLETE = 10, - LINKED_FLG_CMD_COMPLETE = 11, - TARGET_RESET = 12, - ABORT_TASK = 13, - CLEAR_TASK_SET = 14, - INITIATE_RECOVERY = 15, - RELEASE_RECOVERY = 16, - TERMINATE_IO_PROC = 17, - CLEAR_ACA = 22, - LOGICAL_UNIT_RESET = 23, - SIMPLE_QUEUE_TAG = 32, - HEAD_OF_QUEUE_TAG = 33, - ORDERED_QUEUE_TAG = 34, - IGNORE_WIDE_RESIDUE = 35, - ACA = 36, - QAS_REQUEST = 85, - BUS_DEVICE_RESET = 12, - ABORT = 6, -}; - -struct sg_io_hdr { - int interface_id; - int dxfer_direction; - unsigned char cmd_len; - unsigned char mx_sb_len; - short unsigned int iovec_count; - unsigned int dxfer_len; - void *dxferp; - unsigned char *cmdp; - void *sbp; - unsigned int timeout; - unsigned int flags; - int pack_id; - void *usr_ptr; - unsigned char status; - unsigned char masked_status; - unsigned char msg_status; - unsigned char sb_len_wr; - short unsigned int host_status; - short unsigned int driver_status; - int resid; - unsigned int duration; - unsigned int info; -}; - -typedef struct sg_io_hdr sg_io_hdr_t; - -struct compat_sg_io_hdr { - compat_int_t interface_id; - compat_int_t dxfer_direction; - unsigned char cmd_len; - unsigned char mx_sb_len; - short unsigned int iovec_count; - compat_uint_t dxfer_len; - compat_uint_t dxferp; - compat_uptr_t cmdp; - compat_uptr_t sbp; - compat_uint_t timeout; - compat_uint_t flags; - compat_int_t pack_id; - compat_uptr_t usr_ptr; - unsigned char status; - unsigned char masked_status; - unsigned char msg_status; - unsigned char sb_len_wr; - short unsigned int host_status; - short unsigned int driver_status; - compat_int_t resid; - compat_uint_t duration; - compat_uint_t info; -}; - -struct sg_scsi_id { - int host_no; - int channel; - int scsi_id; - int lun; - int scsi_type; - short int h_cmd_per_lun; - short int d_queue_depth; - int unused[2]; -}; - -typedef struct sg_scsi_id sg_scsi_id_t; - -struct sg_req_info { - char req_state; - char orphan; - char sg_io_owned; - char problem; - int pack_id; - void *usr_ptr; - unsigned int duration; - int unused; -}; - -typedef struct sg_req_info sg_req_info_t; - -struct sg_header { - int pack_len; - int reply_len; - int pack_id; - int result; - unsigned int twelve_byte: 1; - unsigned int target_status: 5; - unsigned int host_status: 8; - unsigned int driver_status: 8; - unsigned int other_flags: 10; - unsigned char sense_buffer[16]; -}; - -struct sg_scatter_hold { - short unsigned int k_use_sg; - unsigned int sglist_len; - unsigned int bufflen; - struct page **pages; - int page_order; - char dio_in_use; - unsigned char cmd_opcode; -}; - -typedef struct sg_scatter_hold Sg_scatter_hold; - -struct sg_fd; - -struct sg_request { - struct list_head entry; - struct sg_fd *parentfp; - Sg_scatter_hold data; - sg_io_hdr_t header; - unsigned char sense_b[96]; - char res_used; - char orphan; - char sg_io_owned; - char done; - struct request *rq; - struct bio *bio; - struct execute_work ew; -}; - -typedef struct sg_request Sg_request; - -struct sg_device; - -struct sg_fd { - struct list_head sfd_siblings; - struct sg_device *parentdp; - wait_queue_head_t read_wait; - rwlock_t rq_list_lock; - struct mutex f_mutex; - int timeout; - int timeout_user; - Sg_scatter_hold reserve; - struct list_head rq_list; - struct fasync_struct *async_qp; - Sg_request req_arr[16]; - char force_packid; - char cmd_q; - unsigned char next_cmd_len; - char keep_orphan; - char mmap_called; - char res_in_use; - struct kref f_ref; - struct execute_work ew; -}; - -struct sg_device { - struct scsi_device *device; - wait_queue_head_t open_wait; - struct mutex open_rel_lock; - int sg_tablesize; - u32 index; - struct list_head sfds; - rwlock_t sfd_lock; - atomic_t detaching; - bool exclude; - int open_cnt; - char sgdebug; - char name[32]; - struct cdev *cdev; - struct kref d_ref; -}; - -typedef struct sg_fd Sg_fd; - -typedef struct sg_device Sg_device; - -struct compat_sg_req_info { - char req_state; - char orphan; - char sg_io_owned; - char problem; - int pack_id; - compat_uptr_t usr_ptr; - unsigned int duration; - int unused; -}; - -struct sg_proc_deviter { - loff_t index; - size_t max; -}; - -enum pr_status { - PR_STS_SUCCESS = 0, - PR_STS_IOERR = 2, - PR_STS_RESERVATION_CONFLICT = 24, - PR_STS_RETRY_PATH_FAILURE = 917504, - PR_STS_PATH_FAST_FAILED = 983040, - PR_STS_PATH_FAILED = 65536, -}; - -enum nvme_pr_type { - NVME_PR_WRITE_EXCLUSIVE = 1, - NVME_PR_EXCLUSIVE_ACCESS = 2, - NVME_PR_WRITE_EXCLUSIVE_REG_ONLY = 3, - NVME_PR_EXCLUSIVE_ACCESS_REG_ONLY = 4, - NVME_PR_WRITE_EXCLUSIVE_ALL_REGS = 5, - NVME_PR_EXCLUSIVE_ACCESS_ALL_REGS = 6, -}; - -enum nvme_eds { - NVME_EXTENDED_DATA_STRUCT = 1, -}; - -struct nvme_registered_ctrl { - __le16 cntlid; - __u8 rcsts; - __u8 rsvd3[5]; - __le64 hostid; - __le64 rkey; -}; - -struct nvme_reservation_status { - __le32 gen; - __u8 rtype; - __u8 regctl[2]; - __u8 resv5[2]; - __u8 ptpls; - __u8 resv10[14]; - struct nvme_registered_ctrl regctl_ds[0]; -}; - -struct nvme_registered_ctrl_ext { - __le16 cntlid; - __u8 rcsts; - __u8 rsvd3[5]; - __le64 rkey; - __u8 hostid[16]; - __u8 rsvd32[32]; -}; - -struct nvme_reservation_status_ext { - __le32 gen; - __u8 rtype; - __u8 regctl[2]; - __u8 resv5[2]; - __u8 ptpls; - __u8 resv10[14]; - __u8 rsvd24[40]; - struct nvme_registered_ctrl_ext regctl_eds[0]; -}; - -struct nvmet_pr_register_data { - __le64 crkey; - __le64 nrkey; -}; - -struct nvmet_pr_acquire_data { - __le64 crkey; - __le64 prkey; -}; - -struct nvmet_pr_release_data { - __le64 crkey; -}; - -enum nvme_pr_register_action { - NVME_PR_REGISTER_ACT_REG = 0, - NVME_PR_REGISTER_ACT_UNREG = 1, - NVME_PR_REGISTER_ACT_REPLACE = 2, -}; - -enum nvme_pr_acquire_action { - NVME_PR_ACQUIRE_ACT_ACQUIRE = 0, - NVME_PR_ACQUIRE_ACT_PREEMPT = 1, - NVME_PR_ACQUIRE_ACT_PREEMPT_AND_ABORT = 2, -}; - -enum nvme_pr_release_action { - NVME_PR_RELEASE_ACT_RELEASE = 0, - NVME_PR_RELEASE_ACT_CLEAR = 1, -}; - -enum nvme_pr_change_ptpl { - NVME_PR_CPTPL_NO_CHANGE = 0, - NVME_PR_CPTPL_RESV = 1073741824, - NVME_PR_CPTPL_CLEARED = -2147483648, - NVME_PR_CPTPL_PERSIST = -1073741824, -}; - -struct nvme_ana_group_desc { - __le32 grpid; - __le32 nnsids; - __le64 chgcnt; - __u8 state; - __u8 rsvd17[15]; - __le32 nsids[0]; -}; - -enum { - NVME_CMBSZ_SQS = 1, - NVME_CMBSZ_CQS = 2, - NVME_CMBSZ_LISTS = 4, - NVME_CMBSZ_RDS = 8, - NVME_CMBSZ_WDS = 16, - NVME_CMBSZ_SZ_SHIFT = 12, - NVME_CMBSZ_SZ_MASK = 1048575, - NVME_CMBSZ_SZU_SHIFT = 8, - NVME_CMBSZ_SZU_MASK = 15, -}; - -enum { - NVME_CMBMSC_CRE = 1, - NVME_CMBMSC_CMSE = 2, -}; - -enum { - NVME_SGL_FMT_DATA_DESC = 0, - NVME_SGL_FMT_SEG_DESC = 2, - NVME_SGL_FMT_LAST_SEG_DESC = 3, - NVME_KEY_SGL_FMT_DATA_DESC = 4, - NVME_TRANSPORT_SGL_DATA_DESC = 5, -}; - -enum { - NVME_HOST_MEM_ENABLE = 1, - NVME_HOST_MEM_RETURN = 2, -}; - -struct nvme_host_mem_buf_desc { - __le64 addr; - __le32 size; - __u32 rsvd; -}; - -struct nvme_completion { - union nvme_result result; - __le16 sq_head; - __le16 sq_id; - __u16 command_id; - __le16 status; -}; - -struct nvme_descriptor_pools { - struct dma_pool *large; - struct dma_pool *small; -}; - -struct nvme_queue; - -struct nvme_dev { - struct nvme_queue *queues; - struct blk_mq_tag_set tagset; - struct blk_mq_tag_set admin_tagset; - u32 *dbs; - struct device *dev; - unsigned int online_queues; - unsigned int max_qid; - unsigned int io_queues[3]; - unsigned int num_vecs; - u32 q_depth; - int io_sqes; - u32 db_stride; - void *bar; - long unsigned int bar_mapped_size; - struct mutex shutdown_lock; - bool subsystem; - u64 cmb_size; - bool cmb_use_sqes; - u32 cmbsz; - u32 cmbloc; - struct nvme_ctrl ctrl; - u32 last_ps; - bool hmb; - struct sg_table *hmb_sgt; - mempool_t *dmavec_mempool; - mempool_t *iod_meta_mempool; - __le32 *dbbuf_dbs; - dma_addr_t dbbuf_dbs_dma_addr; - __le32 *dbbuf_eis; - dma_addr_t dbbuf_eis_dma_addr; - u64 host_mem_size; - u32 nr_host_mem_descs; - u32 host_mem_descs_size; - dma_addr_t host_mem_descs_dma; - struct nvme_host_mem_buf_desc *host_mem_descs; - void **host_mem_desc_bufs; - unsigned int nr_allocated_queues; - unsigned int nr_write_queues; - unsigned int nr_poll_queues; - struct nvme_descriptor_pools descriptor_pools[0]; -}; - -struct nvme_queue { - struct nvme_dev *dev; - struct nvme_descriptor_pools descriptor_pools; - spinlock_t sq_lock; - void *sq_cmds; - long: 64; - long: 64; - long: 64; - spinlock_t cq_poll_lock; - struct nvme_completion *cqes; - dma_addr_t sq_dma_addr; - dma_addr_t cq_dma_addr; - u32 *q_db; - u32 q_depth; - u16 cq_vector; - u16 sq_tail; - u16 last_sq_tail; - u16 cq_head; - u16 qid; - u8 cq_phase; - u8 sqes; - long unsigned int flags; - __le32 *dbbuf_sq_db; - __le32 *dbbuf_cq_db; - __le32 *dbbuf_sq_ei; - __le32 *dbbuf_cq_ei; - struct completion delete_done; -}; - -enum nvme_iod_flags { - IOD_ABORTED = 1, - IOD_SMALL_DESCRIPTOR = 2, - IOD_SINGLE_SEGMENT = 4, -}; - -struct nvme_dma_vec { - dma_addr_t addr; - unsigned int len; -}; - -struct nvme_iod { - struct nvme_request req; - struct nvme_command cmd; - u8 flags; - u8 nr_descriptors; - unsigned int total_len; - struct dma_iova_state dma_state; - void *descriptors[5]; - struct nvme_dma_vec *dma_vecs; - unsigned int nr_dma_vecs; - dma_addr_t meta_dma; - struct sg_table meta_sgt; - struct nvme_sgl_desc *meta_descriptor; -}; - -enum nvme_use_sgl { - SGL_UNSUPPORTED = 0, - SGL_SUPPORTED = 1, - SGL_FORCED = 2, -}; - -struct ata_internal { - struct scsi_transport_template t; - struct device_attribute private_port_attrs[3]; - struct device_attribute private_link_attrs[3]; - struct device_attribute private_dev_attrs[9]; - struct transport_container link_attr_cont; - struct transport_container dev_attr_cont; - struct device_attribute *link_attrs[4]; - struct device_attribute *port_attrs[4]; - struct device_attribute *dev_attrs[10]; -}; - -struct ata_show_ering_arg { - char *buf; - int written; -}; - -enum { - PIIX_IOCFG = 84, - ICH5_PMR = 144, - ICH5_PCS = 146, - PIIX_SIDPR_BAR = 5, - PIIX_SIDPR_LEN = 16, - PIIX_SIDPR_IDX = 0, - PIIX_SIDPR_DATA = 4, - PIIX_FLAG_CHECKINTR = 268435456, - PIIX_FLAG_SIDPR = 536870912, - PIIX_PATA_FLAGS = 1, - PIIX_SATA_FLAGS = 268435458, - PIIX_FLAG_PIO16 = 1073741824, - PIIX_80C_PRI = 48, - PIIX_80C_SEC = 192, - P0 = 0, - P1 = 1, - P2 = 2, - P3 = 3, - IDE = -1, - NA = -2, - RV = -3, - PIIX_AHCI_DEVICE = 6, - PIIX_HOST_BROKEN_SUSPEND = 16777216, -}; - -enum piix_controller_ids { - piix_pata_mwdma = 0, - piix_pata_33 = 1, - ich_pata_33 = 2, - ich_pata_66 = 3, - ich_pata_100 = 4, - ich_pata_100_nomwdma1 = 5, - ich5_sata = 6, - ich6_sata = 7, - ich6m_sata = 8, - ich8_sata = 9, - ich8_2port_sata = 10, - ich8m_apple_sata = 11, - tolapai_sata = 12, - piix_pata_vmw = 13, - ich8_sata_snb = 14, - ich8_2port_sata_snb = 15, - ich8_2port_sata_byt = 16, -}; - -struct piix_map_db { - const u32 mask; - const u16 port_enable; - const int map[0]; -}; - -struct piix_host_priv { - const int *map; - u32 saved_iocfg; - void *sidpr; -}; - -struct ich_laptop { - u16 device; - u16 subvendor; - u16 subdevice; -}; - -struct drm_mode_atomic { - __u32 flags; - __u32 count_objs; - __u64 objs_ptr; - __u64 count_props_ptr; - __u64 props_ptr; - __u64 prop_values_ptr; - __u64 reserved; - __u64 user_data; -}; - -struct drm_out_fence_state { - s32 *out_fence_ptr; - struct sync_file *sync_file; - int fd; -}; - -struct drm_mode_get_connector { - __u64 encoders_ptr; - __u64 modes_ptr; - __u64 props_ptr; - __u64 prop_values_ptr; - __u32 count_modes; - __u32 count_props; - __u32 count_encoders; - __u32 encoder_id; - __u32 connector_id; - __u32 connector_type; - __u32 connector_type_id; - __u32 connection; - __u32 mm_width; - __u32 mm_height; - __u32 subpixel; - __u32 pad; -}; - -struct drm_mode_connector_set_property { - __u64 value; - __u32 prop_id; - __u32 connector_id; -}; - -struct drm_mode_obj_set_property { - __u64 value; - __u32 prop_id; - __u32 obj_id; - __u32 obj_type; -}; - -struct drm_panel; - -struct drm_panel_funcs { - int (*prepare)(struct drm_panel *); - int (*enable)(struct drm_panel *); - int (*disable)(struct drm_panel *); - int (*unprepare)(struct drm_panel *); - int (*get_modes)(struct drm_panel *, struct drm_connector *); - enum drm_panel_orientation (*get_orientation)(struct drm_panel *); - int (*get_timings)(struct drm_panel *, unsigned int, struct display_timing *); - void (*debugfs_init)(struct drm_panel *, struct dentry *); -}; - -struct drm_panel { - struct device *dev; - struct backlight_device *backlight; - const struct drm_panel_funcs *funcs; - int connector_type; - struct list_head list; - struct list_head followers; - struct mutex follower_lock; - bool prepare_prev_first; - bool prepared; - bool enabled; - void *container; - struct kref refcount; -}; - -struct drm_conn_prop_enum_list { - int type; - const char *name; - struct ida ida; -}; - -struct cea_sad { - u8 format; - u8 channels; - u8 freq; - u8 byte2; -}; - -struct drm_mode_get_encoder { - __u32 encoder_id; - __u32 encoder_type; - __u32 crtc_id; - __u32 possible_crtcs; - __u32 possible_clones; -}; - -struct drm_memory_stats { - u64 shared; - u64 private; - u64 resident; - u64 purgeable; - u64 active; -}; - -struct drm_stats { - long unsigned int count; - struct { - long unsigned int value; - enum drm_stat_type type; - } data[15]; -}; - -struct drm_set_version { - int drm_di_major; - int drm_di_minor; - int drm_dd_major; - int drm_dd_minor; -}; - -struct drm_get_cap { - __u64 capability; - __u64 value; -}; - -struct drm_set_client_cap { - __u64 capability; - __u64 value; -}; - -struct drm_set_client_name { - __u64 name_len; - __u64 name; -}; - -struct drmres_node { - struct list_head entry; - drmres_release_t release; - const char *name; - size_t size; -}; - -struct drmres { - struct drmres_node node; - u8 data[0]; -}; - -struct drm_mode_obj_get_properties { - __u64 props_ptr; - __u64 prop_values_ptr; - __u32 count_props; - __u32 obj_id; - __u32 obj_type; -}; - -struct drm_mode_set_plane { - __u32 plane_id; - __u32 crtc_id; - __u32 fb_id; - __u32 flags; - __s32 crtc_x; - __s32 crtc_y; - __u32 crtc_w; - __u32 crtc_h; - __u32 src_x; - __u32 src_y; - __u32 src_h; - __u32 src_w; -}; - -struct drm_mode_get_plane { - __u32 plane_id; - __u32 crtc_id; - __u32 fb_id; - __u32 possible_crtcs; - __u32 gamma_size; - __u32 count_format_types; - __u64 format_type_ptr; -}; - -struct drm_mode_get_plane_res { - __u64 plane_id_ptr; - __u32 count_planes; -}; - -struct drm_mode_cursor { - __u32 flags; - __u32 crtc_id; - __s32 x; - __s32 y; - __u32 width; - __u32 height; - __u32 handle; -}; - -struct drm_mode_cursor2 { - __u32 flags; - __u32 crtc_id; - __s32 x; - __s32 y; - __u32 width; - __u32 height; - __u32 handle; - __s32 hot_x; - __s32 hot_y; -}; - -struct drm_plane_size_hint { - __u16 width; - __u16 height; -}; - -struct drm_mode_crtc_page_flip_target { - __u32 crtc_id; - __u32 fb_id; - __u32 flags; - __u32 sequence; - __u64 user_data; -}; - -struct drm_format_modifier_blob { - __u32 version; - __u32 flags; - __u32 count_formats; - __u32 formats_offset; - __u32 count_modifiers; - __u32 modifiers_offset; -}; - -struct drm_format_modifier { - __u64 formats; - __u32 offset; - __u32 pad; - __u64 modifier; -}; - -struct drm_mode_property_enum { - __u64 value; - char name[32]; -}; - -struct drm_mode_get_property { - __u64 values_ptr; - __u64 enum_blob_ptr; - __u32 prop_id; - __u32 flags; - char name[32]; - __u32 count_values; - __u32 count_enum_blobs; -}; - -struct drm_mode_get_blob { - __u32 blob_id; - __u32 length; - __u64 data; -}; - -struct drm_mode_create_blob { - __u64 data; - __u32 length; - __u32 blob_id; -}; - -struct drm_mode_destroy_blob { - __u32 blob_id; -}; - -struct drm_property_enum { - uint64_t value; - struct list_head head; - char name[32]; -}; - -struct trace_event_raw_drm_vblank_event { - struct trace_entry ent; - int crtc; - unsigned int seq; - ktime_t time; - bool high_prec; - char __data[0]; -}; - -struct trace_event_raw_drm_vblank_event_queued { - struct trace_entry ent; - struct drm_file *file; - int crtc; - unsigned int seq; - char __data[0]; -}; - -struct trace_event_raw_drm_vblank_event_delivered { - struct trace_entry ent; - struct drm_file *file; - int crtc; - unsigned int seq; - char __data[0]; -}; - -struct trace_event_data_offsets_drm_vblank_event {}; - -struct trace_event_data_offsets_drm_vblank_event_queued {}; - -struct trace_event_data_offsets_drm_vblank_event_delivered {}; - -typedef void (*btf_trace_drm_vblank_event)(void *, int, unsigned int, ktime_t, bool); - -typedef void (*btf_trace_drm_vblank_event_queued)(void *, struct drm_file *, int, unsigned int); - -typedef void (*btf_trace_drm_vblank_event_delivered)(void *, struct drm_file *, int, unsigned int); - -struct drm_client_buffer { - struct drm_client_dev *client; - u32 pitch; - struct drm_gem_object *gem; - struct iosys_map map; - struct drm_framebuffer *fb; -}; - -struct drm_panel_follower; - -struct drm_panel_follower_funcs { - int (*panel_prepared)(struct drm_panel_follower *); - int (*panel_unpreparing)(struct drm_panel_follower *); - int (*panel_enabled)(struct drm_panel_follower *); - int (*panel_disabling)(struct drm_panel_follower *); -}; - -struct drm_panel_follower { - const struct drm_panel_follower_funcs *funcs; - struct list_head list; - struct drm_panel *panel; -}; - -struct drm_dmi_panel_orientation_data { - int width; - int height; - const char * const *bios_dates; - int orientation; -}; - -struct drm_fb_helper_funcs; - -struct drm_fb_helper { - struct drm_client_dev client; - struct drm_client_buffer *buffer; - struct drm_framebuffer *fb; - struct drm_device *dev; - const struct drm_fb_helper_funcs *funcs; - struct fb_info *info; - u32 pseudo_palette[17]; - struct drm_clip_rect damage_clip; - spinlock_t damage_lock; - struct work_struct damage_work; - struct work_struct resume_work; - struct mutex lock; - struct list_head kernel_fb_list; - bool delayed_hotplug; - bool deferred_setup; - int preferred_bpp; - struct fb_deferred_io fbdefio; -}; - -struct drm_fb_helper_surface_size { - u32 fb_width; - u32 fb_height; - u32 surface_width; - u32 surface_height; - u32 surface_bpp; - u32 surface_depth; -}; - -struct drm_fb_helper_funcs { - int (*fb_dirty)(struct drm_fb_helper *, struct drm_clip_rect *); - void (*fb_restore)(struct drm_fb_helper *); - void (*fb_set_suspend)(struct drm_fb_helper *, bool); -}; - -struct drm_gem_shmem_object { - struct drm_gem_object base; - struct page **pages; - refcount_t pages_use_count; - refcount_t pages_pin_count; - int madv; - struct list_head madv_list; - struct sg_table *sgt; - void *vaddr; - refcount_t vmap_use_count; - bool pages_mark_dirty_on_put: 1; - bool pages_mark_accessed_on_put: 1; - bool map_wc: 1; -}; - -struct panel_bridge { - struct drm_bridge bridge; - struct drm_connector connector; - struct drm_panel *panel; - u32 connector_type; -}; - -struct drm_log_scanout { - struct drm_client_buffer *buffer; - const struct font_desc *font; - u32 rows; - u32 columns; - u32 scaled_font_h; - u32 scaled_font_w; - u32 line; - u32 format; - u32 px_width; - u32 front_color; - u32 prefix_color; -}; - -struct drm_log { - struct mutex lock; - struct drm_client_dev client; - struct console con; - bool probed; - u32 n_scanout; - struct drm_log_scanout *scanout; -}; - -struct pixel_format { - unsigned char bits_per_pixel; - bool indexed; - union { - struct { - struct { - unsigned char offset; - unsigned char length; - } alpha; - struct { - unsigned char offset; - unsigned char length; - } red; - struct { - unsigned char offset; - unsigned char length; - } green; - struct { - unsigned char offset; - unsigned char length; - } blue; - }; - struct { - unsigned char offset; - unsigned char length; - } index; - }; -}; - -struct drm_sysfb_format { - struct pixel_format pixel; - u32 fourcc; -}; - -struct spi_mem_driver { - struct spi_driver spidrv; - int (*probe)(struct spi_mem *); - int (*remove)(struct spi_mem *); - void (*shutdown)(struct spi_mem *); -}; - -enum tcx_action_base { - TCX_NEXT = -1, - TCX_PASS = 0, - TCX_DROP = 2, - TCX_REDIRECT = 7, -}; - -enum netkit_action { - NETKIT_NEXT = -1, - NETKIT_PASS = 0, - NETKIT_DROP = 2, - NETKIT_REDIRECT = 7, -}; - -enum netkit_mode { - NETKIT_L2 = 0, - NETKIT_L3 = 1, -}; - -enum netkit_scrub { - NETKIT_SCRUB_NONE = 0, - NETKIT_SCRUB_DEFAULT = 1, -}; - -enum { - IFLA_NETKIT_UNSPEC = 0, - IFLA_NETKIT_PEER_INFO = 1, - IFLA_NETKIT_PRIMARY = 2, - IFLA_NETKIT_POLICY = 3, - IFLA_NETKIT_PEER_POLICY = 4, - IFLA_NETKIT_MODE = 5, - IFLA_NETKIT_SCRUB = 6, - IFLA_NETKIT_PEER_SCRUB = 7, - IFLA_NETKIT_HEADROOM = 8, - IFLA_NETKIT_TAILROOM = 9, - __IFLA_NETKIT_MAX = 10, -}; - -struct netkit { - struct net_device *peer; - struct bpf_mprog_entry *active; - enum netkit_action policy; - enum netkit_scrub scrub; - struct bpf_mprog_bundle bundle; - enum netkit_mode mode; - bool primary; - u32 headroom; -}; - -struct netkit_link { - struct bpf_link link; - struct net_device *dev; -}; - -struct mii_ioctl_data { - __u16 phy_id; - __u16 reg_num; - __u16 val_in; - __u16 val_out; -}; - -enum link_inband_signalling { - LINK_INBAND_DISABLE = 1, - LINK_INBAND_ENABLE = 2, - LINK_INBAND_BYPASS = 4, -}; - -enum phy_state_work { - PHY_STATE_WORK_NONE = 0, - PHY_STATE_WORK_ANEG = 1, - PHY_STATE_WORK_SUSPEND = 2, -}; - -struct sfp; - -struct sfp_socket_ops; - -struct sfp_quirk; - -struct sfp_upstream_ops; - -struct sfp_bus { - struct kref kref; - struct list_head node; - const struct fwnode_handle *fwnode; - const struct sfp_socket_ops *socket_ops; - struct device *sfp_dev; - struct sfp *sfp; - const struct sfp_quirk *sfp_quirk; - const struct sfp_upstream_ops *upstream_ops; - void *upstream; - struct phy_device *phydev; - bool registered; - bool started; -}; - -struct sfp_eeprom_base { - u8 phys_id; - u8 phys_ext_id; - u8 connector; - u8 if_1x_copper_passive: 1; - u8 if_1x_copper_active: 1; - u8 if_1x_lx: 1; - u8 if_1x_sx: 1; - u8 e10g_base_sr: 1; - u8 e10g_base_lr: 1; - u8 e10g_base_lrm: 1; - u8 e10g_base_er: 1; - u8 sonet_oc3_short_reach: 1; - u8 sonet_oc3_smf_intermediate_reach: 1; - u8 sonet_oc3_smf_long_reach: 1; - u8 unallocated_5_3: 1; - u8 sonet_oc12_short_reach: 1; - u8 sonet_oc12_smf_intermediate_reach: 1; - u8 sonet_oc12_smf_long_reach: 1; - u8 unallocated_5_7: 1; - u8 sonet_oc48_short_reach: 1; - u8 sonet_oc48_intermediate_reach: 1; - u8 sonet_oc48_long_reach: 1; - u8 sonet_reach_bit2: 1; - u8 sonet_reach_bit1: 1; - u8 sonet_oc192_short_reach: 1; - u8 escon_smf_1310_laser: 1; - u8 escon_mmf_1310_led: 1; - u8 e1000_base_sx: 1; - u8 e1000_base_lx: 1; - u8 e1000_base_cx: 1; - u8 e1000_base_t: 1; - u8 e100_base_lx: 1; - u8 e100_base_fx: 1; - u8 e_base_bx10: 1; - u8 e_base_px: 1; - u8 fc_tech_electrical_inter_enclosure: 1; - u8 fc_tech_lc: 1; - u8 fc_tech_sa: 1; - u8 fc_ll_m: 1; - u8 fc_ll_l: 1; - u8 fc_ll_i: 1; - u8 fc_ll_s: 1; - u8 fc_ll_v: 1; - u8 unallocated_8_0: 1; - u8 unallocated_8_1: 1; - u8 sfp_ct_passive: 1; - u8 sfp_ct_active: 1; - u8 fc_tech_ll: 1; - u8 fc_tech_sl: 1; - u8 fc_tech_sn: 1; - u8 fc_tech_electrical_intra_enclosure: 1; - u8 fc_media_sm: 1; - u8 unallocated_9_1: 1; - u8 fc_media_m5: 1; - u8 fc_media_m6: 1; - u8 fc_media_tv: 1; - u8 fc_media_mi: 1; - u8 fc_media_tp: 1; - u8 fc_media_tw: 1; - u8 fc_speed_100: 1; - u8 unallocated_10_1: 1; - u8 fc_speed_200: 1; - u8 fc_speed_3200: 1; - u8 fc_speed_400: 1; - u8 fc_speed_1600: 1; - u8 fc_speed_800: 1; - u8 fc_speed_1200: 1; - u8 encoding; - u8 br_nominal; - u8 rate_id; - u8 link_len[6]; - char vendor_name[16]; - u8 extended_cc; - char vendor_oui[3]; - char vendor_pn[16]; - char vendor_rev[4]; - union { - __be16 optical_wavelength; - __be16 cable_compliance; - struct { - u8 sff8431_app_e: 1; - u8 fc_pi_4_app_h: 1; - u8 reserved60_2: 6; - u8 reserved61: 8; - } passive; - struct { - u8 sff8431_app_e: 1; - u8 fc_pi_4_app_h: 1; - u8 sff8431_lim: 1; - u8 fc_pi_4_lim: 1; - u8 reserved60_4: 4; - u8 reserved61: 8; - } active; - }; - u8 reserved62; - u8 cc_base; -}; - -struct sfp_eeprom_ext { - __be16 options; - u8 br_max; - u8 br_min; - char vendor_sn[16]; - char datecode[8]; - u8 diagmon; - u8 enhopts; - u8 sff8472_compliance; - u8 cc_ext; -}; - -struct sfp_eeprom_id { - struct sfp_eeprom_base base; - struct sfp_eeprom_ext ext; -}; - -enum { - SFF8024_ID_UNK = 0, - SFF8024_ID_SFF_8472 = 2, - SFF8024_ID_SFP = 3, - SFF8024_ID_DWDM_SFP = 11, - SFF8024_ID_QSFP_8438 = 12, - SFF8024_ID_QSFP_8436_8636 = 13, - SFF8024_ID_QSFP28_8636 = 17, - SFF8024_ID_QSFP_DD = 24, - SFF8024_ID_OSFP = 25, - SFF8024_ID_DSFP = 27, - SFF8024_ID_QSFP_PLUS_CMIS = 30, - SFF8024_ID_SFP_DD_CMIS = 31, - SFF8024_ID_SFP_PLUS_CMIS = 32, - SFF8024_ENCODING_UNSPEC = 0, - SFF8024_ENCODING_8B10B = 1, - SFF8024_ENCODING_4B5B = 2, - SFF8024_ENCODING_NRZ = 3, - SFF8024_ENCODING_8472_MANCHESTER = 4, - SFF8024_ENCODING_8472_SONET = 5, - SFF8024_ENCODING_8472_64B66B = 6, - SFF8024_ENCODING_8436_MANCHESTER = 6, - SFF8024_ENCODING_8436_SONET = 4, - SFF8024_ENCODING_8436_64B66B = 5, - SFF8024_ENCODING_256B257B = 7, - SFF8024_ENCODING_PAM4 = 8, - SFF8024_CONNECTOR_UNSPEC = 0, - SFF8024_CONNECTOR_SC = 1, - SFF8024_CONNECTOR_FIBERJACK = 6, - SFF8024_CONNECTOR_LC = 7, - SFF8024_CONNECTOR_MT_RJ = 8, - SFF8024_CONNECTOR_MU = 9, - SFF8024_CONNECTOR_SG = 10, - SFF8024_CONNECTOR_OPTICAL_PIGTAIL = 11, - SFF8024_CONNECTOR_MPO_1X12 = 12, - SFF8024_CONNECTOR_MPO_2X16 = 13, - SFF8024_CONNECTOR_HSSDC_II = 32, - SFF8024_CONNECTOR_COPPER_PIGTAIL = 33, - SFF8024_CONNECTOR_RJ45 = 34, - SFF8024_CONNECTOR_NOSEPARATE = 35, - SFF8024_CONNECTOR_MXC_2X16 = 36, - SFF8024_ECC_UNSPEC = 0, - SFF8024_ECC_100G_25GAUI_C2M_AOC = 1, - SFF8024_ECC_100GBASE_SR4_25GBASE_SR = 2, - SFF8024_ECC_100GBASE_LR4_25GBASE_LR = 3, - SFF8024_ECC_100GBASE_ER4_25GBASE_ER = 4, - SFF8024_ECC_100GBASE_SR10 = 5, - SFF8024_ECC_100GBASE_CR4 = 11, - SFF8024_ECC_25GBASE_CR_S = 12, - SFF8024_ECC_25GBASE_CR_N = 13, - SFF8024_ECC_10GBASE_T_SFI = 22, - SFF8024_ECC_10GBASE_T_SR = 28, - SFF8024_ECC_5GBASE_T = 29, - SFF8024_ECC_2_5GBASE_T = 30, -}; - -struct sfp_upstream_ops { - void (*attach)(void *, struct sfp_bus *); - void (*detach)(void *, struct sfp_bus *); - int (*module_insert)(void *, const struct sfp_eeprom_id *); - void (*module_remove)(void *); - int (*module_start)(void *); - void (*module_stop)(void *); - void (*link_down)(void *); - void (*link_up)(void *); - int (*connect_phy)(void *, struct phy_device *); - void (*disconnect_phy)(void *, struct phy_device *); -}; - -struct sfp_quirk { - const char *vendor; - const char *part; - void (*modes)(const struct sfp_eeprom_id *, long unsigned int *, long unsigned int *); - void (*fixup)(struct sfp *); -}; - -struct sfp_socket_ops { - void (*attach)(struct sfp *); - void (*detach)(struct sfp *); - void (*start)(struct sfp *); - void (*stop)(struct sfp *); - void (*set_signal_rate)(struct sfp *, unsigned int); - int (*module_info)(struct sfp *, struct ethtool_modinfo *); - int (*module_eeprom)(struct sfp *, struct ethtool_eeprom *, u8 *); - int (*module_eeprom_by_page)(struct sfp *, const struct ethtool_module_eeprom *, struct netlink_ext_ack *); -}; - -struct nda_cacheinfo { - __u32 ndm_confirmed; - __u32 ndm_used; - __u32 ndm_updated; - __u32 ndm_refcnt; -}; - -enum { - IFLA_VXLAN_UNSPEC = 0, - IFLA_VXLAN_ID = 1, - IFLA_VXLAN_GROUP = 2, - IFLA_VXLAN_LINK = 3, - IFLA_VXLAN_LOCAL = 4, - IFLA_VXLAN_TTL = 5, - IFLA_VXLAN_TOS = 6, - IFLA_VXLAN_LEARNING = 7, - IFLA_VXLAN_AGEING = 8, - IFLA_VXLAN_LIMIT = 9, - IFLA_VXLAN_PORT_RANGE = 10, - IFLA_VXLAN_PROXY = 11, - IFLA_VXLAN_RSC = 12, - IFLA_VXLAN_L2MISS = 13, - IFLA_VXLAN_L3MISS = 14, - IFLA_VXLAN_PORT = 15, - IFLA_VXLAN_GROUP6 = 16, - IFLA_VXLAN_LOCAL6 = 17, - IFLA_VXLAN_UDP_CSUM = 18, - IFLA_VXLAN_UDP_ZERO_CSUM6_TX = 19, - IFLA_VXLAN_UDP_ZERO_CSUM6_RX = 20, - IFLA_VXLAN_REMCSUM_TX = 21, - IFLA_VXLAN_REMCSUM_RX = 22, - IFLA_VXLAN_GBP = 23, - IFLA_VXLAN_REMCSUM_NOPARTIAL = 24, - IFLA_VXLAN_COLLECT_METADATA = 25, - IFLA_VXLAN_LABEL = 26, - IFLA_VXLAN_GPE = 27, - IFLA_VXLAN_TTL_INHERIT = 28, - IFLA_VXLAN_DF = 29, - IFLA_VXLAN_VNIFILTER = 30, - IFLA_VXLAN_LOCALBYPASS = 31, - IFLA_VXLAN_LABEL_POLICY = 32, - IFLA_VXLAN_RESERVED_BITS = 33, - IFLA_VXLAN_MC_ROUTE = 34, - IFLA_VXLAN_FAN_MAP = 35, - __IFLA_VXLAN_MAX = 36, -}; - -struct ifla_vxlan_port_range { - __be16 low; - __be16 high; -}; - -struct arphdr { - __be16 ar_hrd; - __be16 ar_pro; - unsigned char ar_hln; - unsigned char ar_pln; - __be16 ar_op; -}; - -struct nd_msg { - struct icmp6hdr icmph; - struct in6_addr target; - __u8 opt[0]; -}; - -struct gro_remcsum { - int offset; - __wsum delta; -}; - -enum { - IFLA_FAN_UNSPEC = 0, - IFLA_FAN_MAPPING = 1, - __IFLA_FAN_MAX = 2, -}; - -struct ifla_fan_map { - __be32 underlay; - __be32 overlay; - __u16 underlay_prefix; - __u16 overlay_prefix; -}; - -struct ip_fan_map { - __be32 underlay; - __be32 overlay; - u16 underlay_prefix; - u16 overlay_prefix; - u32 overlay_mask; - struct list_head list; - struct callback_head rcu; -}; - -enum udp_parsable_tunnel_type { - UDP_TUNNEL_TYPE_VXLAN = 1, - UDP_TUNNEL_TYPE_GENEVE = 2, - UDP_TUNNEL_TYPE_VXLAN_GPE = 4, -}; - -enum switchdev_notifier_type { - SWITCHDEV_FDB_ADD_TO_BRIDGE = 1, - SWITCHDEV_FDB_DEL_TO_BRIDGE = 2, - SWITCHDEV_FDB_ADD_TO_DEVICE = 3, - SWITCHDEV_FDB_DEL_TO_DEVICE = 4, - SWITCHDEV_FDB_OFFLOADED = 5, - SWITCHDEV_FDB_FLUSH_TO_BRIDGE = 6, - SWITCHDEV_PORT_OBJ_ADD = 7, - SWITCHDEV_PORT_OBJ_DEL = 8, - SWITCHDEV_PORT_ATTR_SET = 9, - SWITCHDEV_VXLAN_FDB_ADD_TO_BRIDGE = 10, - SWITCHDEV_VXLAN_FDB_DEL_TO_BRIDGE = 11, - SWITCHDEV_VXLAN_FDB_ADD_TO_DEVICE = 12, - SWITCHDEV_VXLAN_FDB_DEL_TO_DEVICE = 13, - SWITCHDEV_VXLAN_FDB_OFFLOADED = 14, - SWITCHDEV_BRPORT_OFFLOADED = 15, - SWITCHDEV_BRPORT_UNOFFLOADED = 16, - SWITCHDEV_BRPORT_REPLAY = 17, -}; - -struct switchdev_notifier_info { - struct net_device *dev; - struct netlink_ext_ack *extack; - const void *ctx; -}; - -struct vxlanhdr_gbp { - u8 vx_flags; - u8 reserved_flags1: 3; - u8 policy_applied: 1; - u8 reserved_flags2: 2; - u8 dont_learn: 1; - u8 reserved_flags3: 1; - __be16 policy_id; - __be32 vx_vni; -}; - -struct vxlanhdr_gpe { - u8 oam_flag: 1; - u8 reserved_flags1: 1; - u8 np_applied: 1; - u8 instance_applied: 1; - u8 version: 2; - u8 reserved_flags2: 2; - u8 reserved_flags3; - u8 reserved_flags4; - u8 next_protocol; - __be32 vx_vni; -}; - -struct switchdev_notifier_vxlan_fdb_info { - struct switchdev_notifier_info info; - union vxlan_addr remote_ip; - __be16 remote_port; - __be32 remote_vni; - u32 remote_ifindex; - u8 eth_addr[6]; - __be32 vni; - bool offloaded; - bool added_by_user; -}; - -struct vxlan_fdb_key { - u8 eth_addr[6]; - __be32 vni; -}; - -struct vxlan_fdb { - struct rhash_head rhnode; - struct callback_head rcu; - long unsigned int updated; - long unsigned int used; - struct list_head remotes; - struct vxlan_fdb_key key; - u16 state; - u16 flags; - struct list_head nh_list; - struct hlist_node fdb_node; - struct nexthop *nh; - struct vxlan_dev *vdev; -}; - -struct vxlan_fdb_flush_desc { - bool ignore_default_entry; - long unsigned int state; - long unsigned int state_mask; - long unsigned int flags; - long unsigned int flags_mask; - __be32 src_vni; - u32 nhid; - __be32 vni; - __be16 port; - union vxlan_addr dst_ip; -}; - -struct vxlan_mdb_entry_key { - union vxlan_addr src; - union vxlan_addr dst; - __be32 vni; -}; - -struct vxlan_mdb_entry { - struct rhash_head rhnode; - struct list_head remotes; - struct vxlan_mdb_entry_key key; - struct hlist_node mdb_node; - struct callback_head rcu; -}; - -enum gdma_request_type { - GDMA_VERIFY_VF_DRIVER_VERSION = 1, - GDMA_QUERY_MAX_RESOURCES = 2, - GDMA_LIST_DEVICES = 3, - GDMA_REGISTER_DEVICE = 4, - GDMA_DEREGISTER_DEVICE = 5, - GDMA_GENERATE_TEST_EQE = 10, - GDMA_CREATE_QUEUE = 12, - GDMA_DISABLE_QUEUE = 13, - GDMA_ALLOCATE_RESOURCE_RANGE = 22, - GDMA_DESTROY_RESOURCE_RANGE = 24, - GDMA_CREATE_DMA_REGION = 25, - GDMA_DMA_REGION_ADD_PAGES = 26, - GDMA_DESTROY_DMA_REGION = 27, - GDMA_CREATE_PD = 29, - GDMA_DESTROY_PD = 30, - GDMA_CREATE_MR = 31, - GDMA_DESTROY_MR = 32, - GDMA_QUERY_HWC_TIMEOUT = 84, -}; - -struct gdma_resource { - spinlock_t lock; - u32 size; - long unsigned int *map; -}; - -union gdma_doorbell_entry { - u64 as_uint64; - struct { - u64 id: 24; - u64 reserved: 8; - u64 tail_ptr: 31; - u64 arm: 1; - } cq; - struct { - u64 id: 24; - u64 wqe_cnt: 8; - u64 tail_ptr: 32; - } rq; - struct { - u64 id: 24; - u64 reserved: 8; - u64 tail_ptr: 32; - } sq; - struct { - u64 id: 16; - u64 reserved: 16; - u64 tail_ptr: 31; - u64 arm: 1; - } eq; -}; - -struct gdma_general_req { - struct gdma_req_hdr hdr; -}; - -struct gdma_general_resp { - struct gdma_resp_hdr hdr; -}; - -enum gdma_page_type { - GDMA_PAGE_TYPE_4K = 0, -}; - -struct mana_serv_work { - struct work_struct serv_work; - struct pci_dev *pdev; - enum gdma_eqe_type type; -}; - -struct gdma_irq_context { - void (*handler)(void *); - spinlock_t lock; - struct list_head eq_list; - char name[32]; -}; - -struct gdma_wqe { - u32 reserved: 24; - u32 last_vbytes: 8; - union { - u32 flags; - struct { - u32 num_sge: 8; - u32 inline_oob_size_div4: 3; - u32 client_oob_in_sgl: 1; - u32 reserved1: 4; - u32 client_data_unit: 14; - u32 reserved2: 2; - }; - }; -}; - -struct gdma_cqe { - u32 cqe_data[15]; - union { - u32 as_uint32; - struct { - u32 wq_num: 24; - u32 is_sq: 1; - u32 reserved: 4; - u32 owner_bits: 3; - }; - } cqe_info; -}; - -union gdma_eqe_info { - u32 as_uint32; - struct { - u32 type: 8; - u32 reserved1: 8; - u32 client_id: 2; - u32 reserved2: 11; - u32 owner_bits: 3; - }; -}; - -struct gdma_eqe { - u32 details[3]; - u32 eqe_info; -}; - -struct gdma_generate_test_event_req { - struct gdma_req_hdr hdr; - u32 queue_index; -}; - -enum { - GDMA_PROTOCOL_V1 = 1, - GDMA_PROTOCOL_FIRST = 1, - GDMA_PROTOCOL_LAST = 1, -}; - -struct gdma_verify_ver_req { - struct gdma_req_hdr hdr; - u64 protocol_ver_min; - u64 protocol_ver_max; - u64 gd_drv_cap_flags1; - u64 gd_drv_cap_flags2; - u64 gd_drv_cap_flags3; - u64 gd_drv_cap_flags4; - u64 drv_ver; - u32 os_type; - u32 reserved; - u32 os_ver_major; - u32 os_ver_minor; - u32 os_ver_build; - u32 os_ver_platform; - u64 reserved_2; - u8 os_ver_str1[128]; - u8 os_ver_str2[128]; - u8 os_ver_str3[128]; - u8 os_ver_str4[128]; -}; - -struct gdma_verify_ver_resp { - struct gdma_resp_hdr hdr; - u64 gdma_protocol_ver; - u64 pf_cap_flags1; - u64 pf_cap_flags2; - u64 pf_cap_flags3; - u64 pf_cap_flags4; -}; - -struct gdma_query_max_resources_resp { - struct gdma_resp_hdr hdr; - u32 status; - u32 max_sq; - u32 max_rq; - u32 max_cq; - u32 max_eq; - u32 max_db; - u32 max_mst; - u32 max_cq_mod_ctx; - u32 max_mod_cq; - u32 max_msix; -}; - -struct gdma_list_devices_resp { - struct gdma_resp_hdr hdr; - u32 num_of_devs; - u32 reserved; - struct gdma_dev_id devs[64]; -}; - -struct gdma_register_device_resp { - struct gdma_resp_hdr hdr; - u32 pdid; - u32 gpa_mkey; - u32 db_id; -}; - -struct gdma_create_queue_req { - struct gdma_req_hdr hdr; - u32 type; - u32 reserved1; - u32 pdid; - u32 doolbell_id; - u64 gdma_region; - u32 reserved2; - u32 queue_size; - u32 log2_throttle_limit; - u32 eq_pci_msix_index; - u32 cq_mod_ctx_id; - u32 cq_parent_eq_id; - u8 rq_drop_on_overrun; - u8 rq_err_on_wqe_overflow; - u8 rq_chain_rec_wqes; - u8 sq_hw_db; - u32 reserved3; -}; - -struct gdma_create_queue_resp { - struct gdma_resp_hdr hdr; - u32 queue_index; -}; - -struct gdma_disable_queue_req { - struct gdma_req_hdr hdr; - u32 type; - u32 queue_index; - u32 alloc_res_id_on_creation; -}; - -struct gdma_query_hwc_timeout_req { - struct gdma_req_hdr hdr; - u32 timeout_ms; - u32 reserved; -}; - -struct gdma_query_hwc_timeout_resp { - struct gdma_resp_hdr hdr; - u32 timeout_ms; - u32 reserved; -}; - -struct gdma_create_dma_region_req { - struct gdma_req_hdr hdr; - u64 length; - u32 offset_in_page; - u32 gdma_page_type; - u32 page_count; - u32 page_addr_list_len; - u64 page_addr_list[0]; -}; - -struct gdma_create_dma_region_resp { - struct gdma_resp_hdr hdr; - u64 dma_region_handle; -}; - -struct gdma_destroy_dma_region_req { - struct gdma_req_hdr hdr; - u64 dma_region_handle; -}; - -struct hwc_rx_oob { - u32 type: 6; - u32 eom: 1; - u32 som: 1; - u32 vendor_err: 8; - u32 reserved1: 16; - u32 src_virt_wq: 24; - u32 src_vfid: 8; - u32 reserved2; - union { - u32 wqe_addr_low; - u32 wqe_offset; - }; - u32 wqe_addr_high; - u32 client_data_unit: 14; - u32 reserved3: 18; - u32 tx_oob_data_size; - u32 chunk_offset: 21; - u32 reserved4: 11; -}; - -struct hwc_tx_oob { - u32 reserved1; - u32 reserved2; - u32 vrq_id: 24; - u32 dest_vfid: 8; - u32 vrcq_id: 24; - u32 reserved3: 8; - u32 vscq_id: 24; - u32 loopback: 1; - u32 lso_override: 1; - u32 dest_pf: 1; - u32 reserved4: 5; - u32 vsq_id: 24; - u32 reserved5: 8; -}; - -struct hwc_work_request { - void *buf_va; - void *buf_sge_addr; - u32 buf_len; - u32 msg_size; - struct gdma_wqe_request wqe_req; - struct hwc_tx_oob tx_oob; - struct gdma_sge sge; -}; - -struct hwc_dma_buf { - struct gdma_mem_info mem_info; - u32 gpa_mkey; - u32 num_reqs; - struct hwc_work_request reqs[0]; -}; - -typedef void hwc_rx_event_handler_t(void *, u32, const struct hwc_rx_oob *); - -typedef void hwc_tx_event_handler_t(void *, u32, const struct hwc_rx_oob *); - -struct hw_channel_context; - -struct hwc_cq { - struct hw_channel_context *hwc; - struct gdma_queue *gdma_cq; - struct gdma_queue *gdma_eq; - struct gdma_comp *comp_buf; - u16 queue_depth; - hwc_rx_event_handler_t *rx_event_handler; - void *rx_event_ctx; - hwc_tx_event_handler_t *tx_event_handler; - void *tx_event_ctx; -}; - -struct hwc_wq; - -struct hwc_caller_ctx; - -struct hw_channel_context { - struct gdma_dev *gdma_dev; - struct device *dev; - u16 num_inflight_msg; - u32 max_req_msg_size; - u16 hwc_init_q_depth_max; - u32 hwc_init_max_req_msg_size; - u32 hwc_init_max_resp_msg_size; - struct completion hwc_init_eqe_comp; - struct hwc_wq *rxq; - struct hwc_wq *txq; - struct hwc_cq *cq; - struct semaphore sema; - struct gdma_resource inflight_msg_res; - u32 pf_dest_vrq_id; - u32 pf_dest_vrcq_id; - u32 hwc_timeout; - struct hwc_caller_ctx *caller_ctx; -}; - -struct hwc_wq { - struct hw_channel_context *hwc; - struct gdma_queue *gdma_wq; - struct hwc_dma_buf *msg_buf; - u16 queue_depth; - struct hwc_cq *hwc_cq; -}; - -struct hwc_caller_ctx { - struct completion comp_event; - void *output_buf; - u32 output_buflen; - u32 error; - u32 status_code; -}; - -struct mana_dev_recovery { - struct list_head list; - struct pci_dev *pdev; - enum gdma_eqe_type type; -}; - -struct mana_dev_recovery_work { - struct list_head dev_list; - struct delayed_work work; - spinlock_t lock; -}; - -struct mana_stats_desc { - char name[32]; - u16 offset; -}; - -enum vcap_type { - VCAP_TYPE_ES0 = 0, - VCAP_TYPE_ES2 = 1, - VCAP_TYPE_IS0 = 2, - VCAP_TYPE_IS1 = 3, - VCAP_TYPE_IS2 = 4, - VCAP_TYPE_MAX = 5, -}; - -enum vcap_keyfield_set { - VCAP_KFS_NO_VALUE = 0, - VCAP_KFS_5TUPLE_IP4 = 1, - VCAP_KFS_5TUPLE_IP6 = 2, - VCAP_KFS_7TUPLE = 3, - VCAP_KFS_ARP = 4, - VCAP_KFS_DBL_VID = 5, - VCAP_KFS_DMAC_VID = 6, - VCAP_KFS_ETAG = 7, - VCAP_KFS_IP4_OTHER = 8, - VCAP_KFS_IP4_TCP_UDP = 9, - VCAP_KFS_IP4_VID = 10, - VCAP_KFS_IP6_OTHER = 11, - VCAP_KFS_IP6_STD = 12, - VCAP_KFS_IP6_TCP_UDP = 13, - VCAP_KFS_IP6_VID = 14, - VCAP_KFS_IP_7TUPLE = 15, - VCAP_KFS_ISDX = 16, - VCAP_KFS_LL_FULL = 17, - VCAP_KFS_MAC_ETYPE = 18, - VCAP_KFS_MAC_LLC = 19, - VCAP_KFS_MAC_SNAP = 20, - VCAP_KFS_NORMAL = 21, - VCAP_KFS_NORMAL_5TUPLE_IP4 = 22, - VCAP_KFS_NORMAL_7TUPLE = 23, - VCAP_KFS_NORMAL_IP6 = 24, - VCAP_KFS_OAM = 25, - VCAP_KFS_PURE_5TUPLE_IP4 = 26, - VCAP_KFS_RT = 27, - VCAP_KFS_SMAC_SIP4 = 28, - VCAP_KFS_SMAC_SIP6 = 29, - VCAP_KFS_VID = 30, -}; - -enum vcap_key_field { - VCAP_KF_NO_VALUE = 0, - VCAP_KF_8021BR_ECID_BASE = 1, - VCAP_KF_8021BR_ECID_EXT = 2, - VCAP_KF_8021BR_E_TAGGED = 3, - VCAP_KF_8021BR_GRP = 4, - VCAP_KF_8021BR_IGR_ECID_BASE = 5, - VCAP_KF_8021BR_IGR_ECID_EXT = 6, - VCAP_KF_8021CB_R_TAGGED_IS = 7, - VCAP_KF_8021Q_DEI0 = 8, - VCAP_KF_8021Q_DEI1 = 9, - VCAP_KF_8021Q_DEI2 = 10, - VCAP_KF_8021Q_DEI_CLS = 11, - VCAP_KF_8021Q_PCP0 = 12, - VCAP_KF_8021Q_PCP1 = 13, - VCAP_KF_8021Q_PCP2 = 14, - VCAP_KF_8021Q_PCP_CLS = 15, - VCAP_KF_8021Q_TPID = 16, - VCAP_KF_8021Q_TPID0 = 17, - VCAP_KF_8021Q_TPID1 = 18, - VCAP_KF_8021Q_TPID2 = 19, - VCAP_KF_8021Q_VID0 = 20, - VCAP_KF_8021Q_VID1 = 21, - VCAP_KF_8021Q_VID2 = 22, - VCAP_KF_8021Q_VID_CLS = 23, - VCAP_KF_8021Q_VLAN_DBL_TAGGED_IS = 24, - VCAP_KF_8021Q_VLAN_TAGGED_IS = 25, - VCAP_KF_8021Q_VLAN_TAGS = 26, - VCAP_KF_ACL_GRP_ID = 27, - VCAP_KF_ARP_ADDR_SPACE_OK_IS = 28, - VCAP_KF_ARP_LEN_OK_IS = 29, - VCAP_KF_ARP_OPCODE = 30, - VCAP_KF_ARP_OPCODE_UNKNOWN_IS = 31, - VCAP_KF_ARP_PROTO_SPACE_OK_IS = 32, - VCAP_KF_ARP_SENDER_MATCH_IS = 33, - VCAP_KF_ARP_TGT_MATCH_IS = 34, - VCAP_KF_COSID_CLS = 35, - VCAP_KF_ES0_ISDX_KEY_ENA = 36, - VCAP_KF_ETYPE = 37, - VCAP_KF_ETYPE_LEN_IS = 38, - VCAP_KF_HOST_MATCH = 39, - VCAP_KF_IF_EGR_PORT_MASK = 40, - VCAP_KF_IF_EGR_PORT_MASK_RNG = 41, - VCAP_KF_IF_EGR_PORT_NO = 42, - VCAP_KF_IF_IGR_PORT = 43, - VCAP_KF_IF_IGR_PORT_MASK = 44, - VCAP_KF_IF_IGR_PORT_MASK_L3 = 45, - VCAP_KF_IF_IGR_PORT_MASK_RNG = 46, - VCAP_KF_IF_IGR_PORT_MASK_SEL = 47, - VCAP_KF_IF_IGR_PORT_SEL = 48, - VCAP_KF_IP4_IS = 49, - VCAP_KF_IP_MC_IS = 50, - VCAP_KF_IP_PAYLOAD_5TUPLE = 51, - VCAP_KF_IP_PAYLOAD_S1_IP6 = 52, - VCAP_KF_IP_SNAP_IS = 53, - VCAP_KF_ISDX_CLS = 54, - VCAP_KF_ISDX_GT0_IS = 55, - VCAP_KF_L2_BC_IS = 56, - VCAP_KF_L2_DMAC = 57, - VCAP_KF_L2_FRM_TYPE = 58, - VCAP_KF_L2_FWD_IS = 59, - VCAP_KF_L2_LLC = 60, - VCAP_KF_L2_MAC = 61, - VCAP_KF_L2_MC_IS = 62, - VCAP_KF_L2_PAYLOAD0 = 63, - VCAP_KF_L2_PAYLOAD1 = 64, - VCAP_KF_L2_PAYLOAD2 = 65, - VCAP_KF_L2_PAYLOAD_ETYPE = 66, - VCAP_KF_L2_SMAC = 67, - VCAP_KF_L2_SNAP = 68, - VCAP_KF_L3_DIP_EQ_SIP_IS = 69, - VCAP_KF_L3_DPL_CLS = 70, - VCAP_KF_L3_DSCP = 71, - VCAP_KF_L3_DST_IS = 72, - VCAP_KF_L3_FRAGMENT = 73, - VCAP_KF_L3_FRAGMENT_TYPE = 74, - VCAP_KF_L3_FRAG_INVLD_L4_LEN = 75, - VCAP_KF_L3_FRAG_OFS_GT0 = 76, - VCAP_KF_L3_IP4_DIP = 77, - VCAP_KF_L3_IP4_SIP = 78, - VCAP_KF_L3_IP6_DIP = 79, - VCAP_KF_L3_IP6_DIP_MSB = 80, - VCAP_KF_L3_IP6_SIP = 81, - VCAP_KF_L3_IP6_SIP_MSB = 82, - VCAP_KF_L3_IP_PROTO = 83, - VCAP_KF_L3_OPTIONS_IS = 84, - VCAP_KF_L3_PAYLOAD = 85, - VCAP_KF_L3_RT_IS = 86, - VCAP_KF_L3_TOS = 87, - VCAP_KF_L3_TTL_GT0 = 88, - VCAP_KF_L4_1588_DOM = 89, - VCAP_KF_L4_1588_VER = 90, - VCAP_KF_L4_ACK = 91, - VCAP_KF_L4_DPORT = 92, - VCAP_KF_L4_FIN = 93, - VCAP_KF_L4_PAYLOAD = 94, - VCAP_KF_L4_PSH = 95, - VCAP_KF_L4_RNG = 96, - VCAP_KF_L4_RST = 97, - VCAP_KF_L4_SEQUENCE_EQ0_IS = 98, - VCAP_KF_L4_SPORT = 99, - VCAP_KF_L4_SPORT_EQ_DPORT_IS = 100, - VCAP_KF_L4_SYN = 101, - VCAP_KF_L4_URG = 102, - VCAP_KF_LOOKUP_FIRST_IS = 103, - VCAP_KF_LOOKUP_GEN_IDX = 104, - VCAP_KF_LOOKUP_GEN_IDX_SEL = 105, - VCAP_KF_LOOKUP_INDEX = 106, - VCAP_KF_LOOKUP_PAG = 107, - VCAP_KF_MIRROR_PROBE = 108, - VCAP_KF_OAM_CCM_CNTS_EQ0 = 109, - VCAP_KF_OAM_DETECTED = 110, - VCAP_KF_OAM_FLAGS = 111, - VCAP_KF_OAM_MEL_FLAGS = 112, - VCAP_KF_OAM_MEPID = 113, - VCAP_KF_OAM_OPCODE = 114, - VCAP_KF_OAM_VER = 115, - VCAP_KF_OAM_Y1731_IS = 116, - VCAP_KF_PDU_TYPE = 117, - VCAP_KF_PROT_ACTIVE = 118, - VCAP_KF_RTP_ID = 119, - VCAP_KF_RT_FRMID = 120, - VCAP_KF_RT_TYPE = 121, - VCAP_KF_RT_VLAN_IDX = 122, - VCAP_KF_TCP_IS = 123, - VCAP_KF_TCP_UDP_IS = 124, - VCAP_KF_TYPE = 125, -}; - -enum vcap_actionfield_set { - VCAP_AFS_NO_VALUE = 0, - VCAP_AFS_BASE_TYPE = 1, - VCAP_AFS_CLASSIFICATION = 2, - VCAP_AFS_CLASS_REDUCED = 3, - VCAP_AFS_ES0 = 4, - VCAP_AFS_FULL = 5, - VCAP_AFS_S1 = 6, - VCAP_AFS_SMAC_SIP = 7, - VCAP_AFS_VID = 8, -}; - -enum vcap_action_field { - VCAP_AF_NO_VALUE = 0, - VCAP_AF_ACL_ID = 1, - VCAP_AF_CLS_VID_SEL = 2, - VCAP_AF_CNT_ID = 3, - VCAP_AF_COPY_PORT_NUM = 4, - VCAP_AF_COPY_QUEUE_NUM = 5, - VCAP_AF_CPU_COPY_ENA = 6, - VCAP_AF_CPU_QU = 7, - VCAP_AF_CPU_QUEUE_NUM = 8, - VCAP_AF_CUSTOM_ACE_TYPE_ENA = 9, - VCAP_AF_DEI_A_VAL = 10, - VCAP_AF_DEI_B_VAL = 11, - VCAP_AF_DEI_C_VAL = 12, - VCAP_AF_DEI_ENA = 13, - VCAP_AF_DEI_VAL = 14, - VCAP_AF_DLR_SEL = 15, - VCAP_AF_DP_ENA = 16, - VCAP_AF_DP_VAL = 17, - VCAP_AF_DSCP_ENA = 18, - VCAP_AF_DSCP_SEL = 19, - VCAP_AF_DSCP_VAL = 20, - VCAP_AF_ES2_REW_CMD = 21, - VCAP_AF_ESDX = 22, - VCAP_AF_FWD_KILL_ENA = 23, - VCAP_AF_FWD_MODE = 24, - VCAP_AF_FWD_SEL = 25, - VCAP_AF_HIT_ME_ONCE = 26, - VCAP_AF_HOST_MATCH = 27, - VCAP_AF_IGNORE_PIPELINE_CTRL = 28, - VCAP_AF_INTR_ENA = 29, - VCAP_AF_ISDX_ADD_REPLACE_SEL = 30, - VCAP_AF_ISDX_ADD_VAL = 31, - VCAP_AF_ISDX_ENA = 32, - VCAP_AF_ISDX_REPLACE_ENA = 33, - VCAP_AF_ISDX_VAL = 34, - VCAP_AF_LOOP_ENA = 35, - VCAP_AF_LRN_DIS = 36, - VCAP_AF_MAP_IDX = 37, - VCAP_AF_MAP_KEY = 38, - VCAP_AF_MAP_LOOKUP_SEL = 39, - VCAP_AF_MASK_MODE = 40, - VCAP_AF_MATCH_ID = 41, - VCAP_AF_MATCH_ID_MASK = 42, - VCAP_AF_MIRROR_ENA = 43, - VCAP_AF_MIRROR_PROBE = 44, - VCAP_AF_MIRROR_PROBE_ID = 45, - VCAP_AF_MRP_SEL = 46, - VCAP_AF_NXT_IDX = 47, - VCAP_AF_NXT_IDX_CTRL = 48, - VCAP_AF_OAM_SEL = 49, - VCAP_AF_PAG_OVERRIDE_MASK = 50, - VCAP_AF_PAG_VAL = 51, - VCAP_AF_PCP_A_VAL = 52, - VCAP_AF_PCP_B_VAL = 53, - VCAP_AF_PCP_C_VAL = 54, - VCAP_AF_PCP_ENA = 55, - VCAP_AF_PCP_VAL = 56, - VCAP_AF_PIPELINE_ACT = 57, - VCAP_AF_PIPELINE_FORCE_ENA = 58, - VCAP_AF_PIPELINE_PT = 59, - VCAP_AF_POLICE_ENA = 60, - VCAP_AF_POLICE_IDX = 61, - VCAP_AF_POLICE_REMARK = 62, - VCAP_AF_POLICE_VCAP_ONLY = 63, - VCAP_AF_POP_VAL = 64, - VCAP_AF_PORT_MASK = 65, - VCAP_AF_PUSH_CUSTOMER_TAG = 66, - VCAP_AF_PUSH_INNER_TAG = 67, - VCAP_AF_PUSH_OUTER_TAG = 68, - VCAP_AF_QOS_ENA = 69, - VCAP_AF_QOS_VAL = 70, - VCAP_AF_REW_OP = 71, - VCAP_AF_RT_DIS = 72, - VCAP_AF_SFID_ENA = 73, - VCAP_AF_SFID_VAL = 74, - VCAP_AF_SGID_ENA = 75, - VCAP_AF_SGID_VAL = 76, - VCAP_AF_SWAP_MACS_ENA = 77, - VCAP_AF_TAG_A_DEI_SEL = 78, - VCAP_AF_TAG_A_PCP_SEL = 79, - VCAP_AF_TAG_A_TPID_SEL = 80, - VCAP_AF_TAG_A_VID_SEL = 81, - VCAP_AF_TAG_B_DEI_SEL = 82, - VCAP_AF_TAG_B_PCP_SEL = 83, - VCAP_AF_TAG_B_TPID_SEL = 84, - VCAP_AF_TAG_B_VID_SEL = 85, - VCAP_AF_TAG_C_DEI_SEL = 86, - VCAP_AF_TAG_C_PCP_SEL = 87, - VCAP_AF_TAG_C_TPID_SEL = 88, - VCAP_AF_TAG_C_VID_SEL = 89, - VCAP_AF_TYPE = 90, - VCAP_AF_UNTAG_VID_ENA = 91, - VCAP_AF_VID_A_VAL = 92, - VCAP_AF_VID_B_VAL = 93, - VCAP_AF_VID_C_VAL = 94, - VCAP_AF_VID_REPLACE_ENA = 95, - VCAP_AF_VID_VAL = 96, - VCAP_AF_VLAN_POP_CNT = 97, - VCAP_AF_VLAN_POP_CNT_ENA = 98, -}; - -enum vcap_user { - VCAP_USER_PTP = 0, - VCAP_USER_MRP = 1, - VCAP_USER_CFM = 2, - VCAP_USER_VLAN = 3, - VCAP_USER_QOS = 4, - VCAP_USER_VCAP_UTIL = 5, - VCAP_USER_TC = 6, - VCAP_USER_TC_EXTRA = 7, - __VCAP_USER_AFTER_LAST = 8, - VCAP_USER_MAX = 7, -}; - -struct vcap_statistics { - char *name; - int count; - const char * const *keyfield_set_names; - const char * const *actionfield_set_names; - const char * const *keyfield_names; - const char * const *actionfield_names; -}; - -struct vcap_field { - u16 type; - u16 width; - u16 offset; -}; - -struct vcap_set { - u8 type_id; - u8 sw_per_item; - u8 sw_cnt; -}; - -struct vcap_typegroup { - u16 offset; - u16 width; - u16 value; -}; - -struct vcap_info { - char *name; - u16 rows; - u16 sw_count; - u16 sw_width; - u16 sticky_width; - u16 act_width; - u16 default_cnt; - u16 require_cnt_dis; - u16 version; - const struct vcap_set *keyfield_set; - int keyfield_set_size; - const struct vcap_set *actionfield_set; - int actionfield_set_size; - const struct vcap_field **keyfield_set_map; - int *keyfield_set_map_size; - const struct vcap_field **actionfield_set_map; - int *actionfield_set_map_size; - const struct vcap_typegroup **keyfield_set_typegroups; - const struct vcap_typegroup **actionfield_set_typegroups; -}; - -enum vcap_field_type { - VCAP_FIELD_BIT = 0, - VCAP_FIELD_U32 = 1, - VCAP_FIELD_U48 = 2, - VCAP_FIELD_U56 = 3, - VCAP_FIELD_U64 = 4, - VCAP_FIELD_U72 = 5, - VCAP_FIELD_U112 = 6, - VCAP_FIELD_U128 = 7, -}; - -struct vcap_cache_data { - u32 *keystream; - u32 *maskstream; - u32 *actionstream; - u32 counter; - bool sticky; -}; - -enum vcap_selection { - VCAP_SEL_ENTRY = 1, - VCAP_SEL_ACTION = 2, - VCAP_SEL_COUNTER = 4, - VCAP_SEL_ALL = 255, -}; - -enum vcap_command { - VCAP_CMD_WRITE = 0, - VCAP_CMD_READ = 1, - VCAP_CMD_MOVE_DOWN = 2, - VCAP_CMD_MOVE_UP = 3, - VCAP_CMD_INITIALIZE = 4, -}; - -enum vcap_rule_error { - VCAP_ERR_NONE = 0, - VCAP_ERR_NO_ADMIN = 1, - VCAP_ERR_NO_NETDEV = 2, - VCAP_ERR_NO_KEYSET_MATCH = 3, - VCAP_ERR_NO_ACTIONSET_MATCH = 4, - VCAP_ERR_NO_PORT_KEYSET_MATCH = 5, -}; - -struct vcap_admin { - struct list_head list; - struct list_head rules; - struct list_head enabled; - struct mutex lock; - enum vcap_type vtype; - int vinst; - int first_cid; - int last_cid; - int tgt_inst; - int lookups; - int lookups_per_instance; - int last_valid_addr; - int first_valid_addr; - int last_used_addr; - bool w32be; - bool ingress; - struct vcap_cache_data cache; -}; - -struct vcap_rule { - int vcap_chain_id; - enum vcap_user user; - u16 priority; - u32 id; - u64 cookie; - struct list_head keyfields; - struct list_head actionfields; - enum vcap_keyfield_set keyset; - enum vcap_actionfield_set actionset; - enum vcap_rule_error exterr; - u64 client; -}; - -struct vcap_keyset_list { - int max; - int cnt; - enum vcap_keyfield_set *keysets; -}; - -struct vcap_actionset_list { - int max; - int cnt; - enum vcap_actionfield_set *actionsets; -}; - -struct vcap_output_print { - void (*prf)(void *, const char *, ...); - void *dst; -}; - -struct vcap_operations { - enum vcap_keyfield_set (*validate_keyset)(struct net_device *, struct vcap_admin *, struct vcap_rule *, struct vcap_keyset_list *, u16); - void (*add_default_fields)(struct net_device *, struct vcap_admin *, struct vcap_rule *); - void (*cache_erase)(struct vcap_admin *); - void (*cache_write)(struct net_device *, struct vcap_admin *, enum vcap_selection, u32, u32); - void (*cache_read)(struct net_device *, struct vcap_admin *, enum vcap_selection, u32, u32); - void (*init)(struct net_device *, struct vcap_admin *, u32, u32); - void (*update)(struct net_device *, struct vcap_admin *, enum vcap_command, enum vcap_selection, u32); - void (*move)(struct net_device *, struct vcap_admin *, u32, int, int); - int (*port_info)(struct net_device *, struct vcap_admin *, struct vcap_output_print *); -}; - -struct vcap_control { - const struct vcap_operations *ops; - const struct vcap_info *vcaps; - const struct vcap_statistics *stats; - struct list_head list; -}; - -struct vcap_client_keyfield_ctrl { - struct list_head list; - enum vcap_key_field key; - enum vcap_field_type type; -}; - -struct vcap_u1_key { - u8 value; - u8 mask; -}; - -struct vcap_u32_key { - u32 value; - u32 mask; -}; - -struct vcap_u48_key { - u8 value[6]; - u8 mask[6]; -}; - -struct vcap_u56_key { - u8 value[7]; - u8 mask[7]; -}; - -struct vcap_u64_key { - u8 value[8]; - u8 mask[8]; -}; - -struct vcap_u72_key { - u8 value[9]; - u8 mask[9]; -}; - -struct vcap_u112_key { - u8 value[14]; - u8 mask[14]; -}; - -struct vcap_u128_key { - u8 value[16]; - u8 mask[16]; -}; - -struct vcap_client_keyfield_data { - union { - struct vcap_u1_key u1; - struct vcap_u32_key u32; - struct vcap_u48_key u48; - struct vcap_u56_key u56; - struct vcap_u64_key u64; - struct vcap_u72_key u72; - struct vcap_u112_key u112; - struct vcap_u128_key u128; - }; -}; - -struct vcap_client_keyfield { - struct vcap_client_keyfield_ctrl ctrl; - struct vcap_client_keyfield_data data; -}; - -struct vcap_client_actionfield_ctrl { - struct list_head list; - enum vcap_action_field action; - enum vcap_field_type type; -}; - -struct vcap_u1_action { - u8 value; -}; - -struct vcap_u32_action { - u32 value; -}; - -struct vcap_u48_action { - u8 value[6]; -}; - -struct vcap_u56_action { - u8 value[7]; -}; - -struct vcap_u64_action { - u8 value[8]; -}; - -struct vcap_u72_action { - u8 value[9]; -}; - -struct vcap_u112_action { - u8 value[14]; -}; - -struct vcap_u128_action { - u8 value[16]; -}; - -struct vcap_client_actionfield_data { - union { - struct vcap_u1_action u1; - struct vcap_u32_action u32; - struct vcap_u48_action u48; - struct vcap_u56_action u56; - struct vcap_u64_action u64; - struct vcap_u72_action u72; - struct vcap_u112_action u112; - struct vcap_u128_action u128; - }; -}; - -struct vcap_client_actionfield { - struct vcap_client_actionfield_ctrl ctrl; - struct vcap_client_actionfield_data data; -}; - -enum vcap_bit { - VCAP_BIT_ANY = 0, - VCAP_BIT_0 = 1, - VCAP_BIT_1 = 2, -}; - -struct vcap_counter { - u32 value; - bool sticky; -}; - -enum vcap_rule_state { - VCAP_RS_PERMANENT = 0, - VCAP_RS_ENABLED = 1, - VCAP_RS_DISABLED = 2, -}; - -struct vcap_rule_internal { - struct vcap_rule data; - struct list_head list; - struct vcap_admin *admin; - struct net_device *ndev; - struct vcap_control *vctrl; - u32 sort_key; - int keyset_sw; - int actionset_sw; - int keyset_sw_regs; - int actionset_sw_regs; - int size; - u32 addr; - u32 counter_id; - struct vcap_counter counter; - enum vcap_rule_state state; -}; - -struct vcap_stream_iter { - u32 offset; - u32 sw_width; - u32 regs_per_sw; - u32 reg_idx; - u32 reg_bitpos; - const struct vcap_typegroup *tg; -}; - -struct vcap_rule_move { - int addr; - int offset; - int count; -}; - -struct vcap_enabled_port { - struct list_head list; - struct net_device *ndev; - long unsigned int cookie; - int src_cid; - int dst_cid; -}; - -enum { - IFLA_PPP_UNSPEC = 0, - IFLA_PPP_DEV_FD = 1, - __IFLA_PPP_MAX = 2, -}; - -enum NPmode { - NPMODE_PASS = 0, - NPMODE_DROP = 1, - NPMODE_ERROR = 2, - NPMODE_QUEUE = 3, -}; - -struct pppstat { - __u32 ppp_discards; - __u32 ppp_ibytes; - __u32 ppp_ioctects; - __u32 ppp_ipackets; - __u32 ppp_ierrors; - __u32 ppp_ilqrs; - __u32 ppp_obytes; - __u32 ppp_ooctects; - __u32 ppp_opackets; - __u32 ppp_oerrors; - __u32 ppp_olqrs; -}; - -struct vjstat { - __u32 vjs_packets; - __u32 vjs_compressed; - __u32 vjs_searches; - __u32 vjs_misses; - __u32 vjs_uncompressedin; - __u32 vjs_compressedin; - __u32 vjs_errorin; - __u32 vjs_tossed; -}; - -struct compstat { - __u32 unc_bytes; - __u32 unc_packets; - __u32 comp_bytes; - __u32 comp_packets; - __u32 inc_bytes; - __u32 inc_packets; - __u32 in_count; - __u32 bytes_out; - double ratio; -}; - -struct ppp_stats { - struct pppstat p; - struct vjstat vj; -}; - -struct ppp_comp_stats { - struct compstat c; - struct compstat d; -}; - -struct ppp_idle32 { - __s32 xmit_idle; - __s32 recv_idle; -}; - -struct ppp_idle64 { - __s64 xmit_idle; - __s64 recv_idle; -}; - -struct npioctl { - int protocol; - enum NPmode mode; -}; - -struct ppp_option_data { - __u8 *ptr; - __u32 length; - int transmit; -}; - -struct ppp_channel; - -struct ppp_channel_ops { - int (*start_xmit)(struct ppp_channel *, struct sk_buff *); - int (*ioctl)(struct ppp_channel *, unsigned int, long unsigned int); - int (*fill_forward_path)(struct net_device_path_ctx *, struct net_device_path *, const struct ppp_channel *); -}; - -struct ppp_channel { - void *private; - const struct ppp_channel_ops *ops; - int mtu; - int hdrlen; - void *ppp; - int speed; - bool direct_xmit; -}; - -struct compressor { - int compress_proto; - void * (*comp_alloc)(unsigned char *, int); - void (*comp_free)(void *); - int (*comp_init)(void *, unsigned char *, int, int, int, int); - void (*comp_reset)(void *); - int (*compress)(void *, unsigned char *, unsigned char *, int, int); - void (*comp_stat)(void *, struct compstat *); - void * (*decomp_alloc)(unsigned char *, int); - void (*decomp_free)(void *); - int (*decomp_init)(void *, unsigned char *, int, int, int, int, int); - void (*decomp_reset)(void *); - int (*decompress)(void *, unsigned char *, int, unsigned char *, int); - void (*incomp)(void *, unsigned char *, int); - void (*decomp_stat)(void *, struct compstat *); - struct module *owner; - unsigned int comp_extra; -}; - -typedef __u8 byte_t; - -typedef __u32 int32; - -struct cstate { - byte_t cs_this; - bool initialized; - struct cstate *next; - struct iphdr cs_ip; - struct tcphdr cs_tcp; - unsigned char cs_ipopt[64]; - unsigned char cs_tcpopt[64]; - int cs_hsize; -}; - -struct slcompress { - struct cstate *tstate; - struct cstate *rstate; - byte_t tslot_limit; - byte_t rslot_limit; - byte_t xmit_oldest; - byte_t xmit_current; - byte_t recv_current; - byte_t flags; - int32 sls_o_nontcp; - int32 sls_o_tcp; - int32 sls_o_uncompressed; - int32 sls_o_compressed; - int32 sls_o_searches; - int32 sls_o_misses; - int32 sls_i_uncompressed; - int32 sls_i_compressed; - int32 sls_i_error; - int32 sls_i_tossed; - int32 sls_i_runt; - int32 sls_i_badcheck; -}; - -struct ppp_file { - enum { - INTERFACE = 1, - CHANNEL = 2, - } kind; - struct sk_buff_head xq; - struct sk_buff_head rq; - wait_queue_head_t rwait; - refcount_t refcnt; - int hdrlen; - int index; - int dead; -}; - -struct ppp_xmit_recursion { - struct task_struct *owner; - local_lock_t bh_lock; -}; - -struct ppp { - struct ppp_file file; - struct file *owner; - struct list_head channels; - int n_channels; - spinlock_t rlock; - spinlock_t wlock; - struct ppp_xmit_recursion *xmit_recursion; - int mru; - unsigned int flags; - unsigned int xstate; - unsigned int rstate; - int debug; - struct slcompress *vj; - enum NPmode npmode[6]; - struct sk_buff *xmit_pending; - struct compressor *xcomp; - void *xc_state; - struct compressor *rcomp; - void *rc_state; - long unsigned int last_xmit; - long unsigned int last_recv; - struct net_device *dev; - int closing; - int nxchan; - u32 nxseq; - int mrru; - u32 nextseq; - u32 minseq; - struct sk_buff_head mrq; - struct bpf_prog *pass_filter; - struct bpf_prog *active_filter; - struct net *ppp_net; -}; - -struct channel { - struct ppp_file file; - struct list_head list; - struct ppp_channel *chan; - struct rw_semaphore chan_sem; - spinlock_t downl; - struct ppp *ppp; - struct net *chan_net; - netns_tracker ns_tracker; - struct list_head clist; - rwlock_t upl; - struct channel *bridge; - u8 avail; - u8 had_frag; - u32 lastseq; - int speed; -}; - -struct ppp_config { - struct file *file; - s32 unit; - bool ifname_is_set; -}; - -struct ppp_net { - struct idr units_idr; - struct mutex all_ppp_mutex; - struct list_head all_channels; - struct list_head new_channels; - int last_channel_index; - spinlock_t all_channels_lock; -}; - -struct sock_fprog32 { - short unsigned int len; - compat_caddr_t filter; -}; - -struct ppp_option_data32 { - compat_uptr_t ptr; - u32 length; - compat_int_t transmit; -}; - -struct ppp_mp_skb_parm { - u32 sequence; - u8 BEbits; -}; - -struct compressor_entry { - struct list_head list; - struct compressor *comp; -}; - -enum usb_phy_type { - USB_PHY_TYPE_UNDEFINED = 0, - USB_PHY_TYPE_USB2 = 1, - USB_PHY_TYPE_USB3 = 2, -}; - -enum usb_phy_events { - USB_EVENT_NONE = 0, - USB_EVENT_VBUS = 1, - USB_EVENT_ID = 2, - USB_EVENT_CHARGER = 3, - USB_EVENT_ENUMERATED = 4, -}; - -enum usb_charger_type { - UNKNOWN_TYPE___2 = 0, - SDP_TYPE = 1, - DCP_TYPE = 2, - CDP_TYPE = 3, - ACA_TYPE = 4, -}; - -enum usb_charger_state { - USB_CHARGER_DEFAULT = 0, - USB_CHARGER_PRESENT = 1, - USB_CHARGER_ABSENT = 2, -}; - -struct usb_charger_current { - unsigned int sdp_min; - unsigned int sdp_max; - unsigned int dcp_min; - unsigned int dcp_max; - unsigned int cdp_min; - unsigned int cdp_max; - unsigned int aca_min; - unsigned int aca_max; -}; - -struct usb_otg; - -struct usb_phy_io_ops; - -struct usb_phy { - struct device *dev; - const char *label; - unsigned int flags; - enum usb_phy_type type; - enum usb_phy_events last_event; - struct usb_otg *otg; - struct device *io_dev; - struct usb_phy_io_ops *io_ops; - void *io_priv; - struct extcon_dev *edev; - struct extcon_dev *id_edev; - struct notifier_block vbus_nb; - struct notifier_block id_nb; - struct notifier_block type_nb; - enum usb_charger_type chg_type; - enum usb_charger_state chg_state; - struct usb_charger_current chg_cur; - struct work_struct chg_work; - struct atomic_notifier_head notifier; - u16 port_status; - u16 port_change; - struct list_head head; - int (*init)(struct usb_phy *); - void (*shutdown)(struct usb_phy *); - int (*set_vbus)(struct usb_phy *, int); - int (*set_power)(struct usb_phy *, unsigned int); - int (*set_suspend)(struct usb_phy *, int); - int (*set_wakeup)(struct usb_phy *, bool); - int (*notify_connect)(struct usb_phy *, enum usb_device_speed); - int (*notify_disconnect)(struct usb_phy *, enum usb_device_speed); - enum usb_charger_type (*charger_detect)(struct usb_phy *); -}; - -struct usb_phy_io_ops { - int (*read)(struct usb_phy *, u32); - int (*write)(struct usb_phy *, u32, u32); -}; - -struct usb_gadget; - -struct usb_otg { - u8 default_a; - struct phy *phy; - struct usb_phy *usb_phy; - struct usb_bus *host; - struct usb_gadget *gadget; - enum usb_otg_state state; - int (*set_host)(struct usb_otg *, struct usb_bus *); - int (*set_peripheral)(struct usb_otg *, struct usb_gadget *); - int (*set_vbus)(struct usb_otg *, bool); - int (*start_srp)(struct usb_otg *); - int (*start_hnp)(struct usb_otg *); -}; - -struct find_interface_arg { - int minor; - struct device_driver *drv; -}; - -struct each_dev_arg { - void *data; - int (*fn)(struct usb_device *, void *); -}; - -enum usb_led_event { - USB_LED_EVENT_HOST = 0, - USB_LED_EVENT_GADGET = 1, -}; - -struct usb_class_driver { - char *name; - char * (*devnode)(const struct device *, umode_t *); - const struct file_operations *fops; - int minor_base; -}; - -struct ep_device { - struct usb_endpoint_descriptor *desc; - struct usb_device *udev; - struct device dev; -}; - -struct usb_phy_roothub { - struct phy *phy; - struct list_head list; -}; - -struct phy_devm { - struct usb_phy *phy; - struct notifier_block *nb; -}; - -struct dbc_port { - struct tty_port port; - spinlock_t port_lock; - int minor; - struct list_head read_pool; - struct list_head read_queue; - unsigned int n_read; - struct tasklet_struct push; - struct list_head write_pool; - unsigned int tx_boundary; - bool registered; - bool tx_running; -}; - -struct input_seq_state { - short unsigned int pos; - bool mutex_acquired; - int input_devices_state; -}; - -struct input_devres { - struct input_dev *input; -}; - -struct input_mt_pos { - s16 x; - s16 y; -}; - -struct touchscreen_properties { - unsigned int max_x; - unsigned int max_y; - bool invert_x; - bool invert_y; - bool swap_x_y; -}; - -struct atkbd { - struct ps2dev ps2dev; - struct input_dev *dev; - char name[64]; - char phys[32]; - short unsigned int id; - short unsigned int keycode[512]; - long unsigned int force_release_mask[8]; - unsigned char set; - bool translated; - bool extra; - bool write; - bool softrepeat; - bool softraw; - bool scroll; - bool enabled; - unsigned char emul; - bool resend; - bool release; - long unsigned int xl_bit; - unsigned int last; - long unsigned int time; - long unsigned int err_count; - struct delayed_work event_work; - long unsigned int event_jiffies; - long unsigned int event_mask; - struct mutex mutex; - struct vivaldi_data vdata; -}; - -struct trace_event_raw_rtc_time_alarm_class { - struct trace_entry ent; - time64_t secs; - int err; - char __data[0]; -}; - -struct trace_event_raw_rtc_irq_set_freq { - struct trace_entry ent; - int freq; - int err; - char __data[0]; -}; - -struct trace_event_raw_rtc_irq_set_state { - struct trace_entry ent; - int enabled; - int err; - char __data[0]; -}; - -struct trace_event_raw_rtc_alarm_irq_enable { - struct trace_entry ent; - unsigned int enabled; - int err; - char __data[0]; -}; - -struct trace_event_raw_rtc_offset_class { - struct trace_entry ent; - long int offset; - int err; - char __data[0]; -}; - -struct trace_event_raw_rtc_timer_class { - struct trace_entry ent; - struct rtc_timer *timer; - ktime_t expires; - ktime_t period; - char __data[0]; -}; - -struct trace_event_data_offsets_rtc_time_alarm_class {}; - -struct trace_event_data_offsets_rtc_irq_set_freq {}; - -struct trace_event_data_offsets_rtc_irq_set_state {}; - -struct trace_event_data_offsets_rtc_alarm_irq_enable {}; - -struct trace_event_data_offsets_rtc_offset_class {}; - -struct trace_event_data_offsets_rtc_timer_class {}; - -typedef void (*btf_trace_rtc_set_time)(void *, time64_t, int); - -typedef void (*btf_trace_rtc_read_time)(void *, time64_t, int); - -typedef void (*btf_trace_rtc_set_alarm)(void *, time64_t, int); - -typedef void (*btf_trace_rtc_read_alarm)(void *, time64_t, int); - -typedef void (*btf_trace_rtc_irq_set_freq)(void *, int, int); - -typedef void (*btf_trace_rtc_irq_set_state)(void *, int, int); - -typedef void (*btf_trace_rtc_alarm_irq_enable)(void *, unsigned int, int); - -typedef void (*btf_trace_rtc_set_offset)(void *, long int, int); - -typedef void (*btf_trace_rtc_read_offset)(void *, long int, int); - -typedef void (*btf_trace_rtc_timer_enqueue)(void *, struct rtc_timer *); - -typedef void (*btf_trace_rtc_timer_dequeue)(void *, struct rtc_timer *); - -typedef void (*btf_trace_rtc_timer_fired)(void *, struct rtc_timer *); - -enum { - none = 0, - day = 1, - month = 2, - year = 3, -}; - -struct i2c_device_identity { - u16 manufacturer_id; - u16 part_id; - u8 die_revision; -}; - -struct i2c_timings { - u32 bus_freq_hz; - u32 scl_rise_ns; - u32 scl_fall_ns; - u32 scl_int_delay_ns; - u32 sda_fall_ns; - u32 sda_hold_ns; - u32 digital_filter_width_ns; - u32 analog_filter_cutoff_freq_hz; -}; - -struct trace_event_raw_i2c_write { - struct trace_entry ent; - int adapter_nr; - __u16 msg_nr; - __u16 addr; - __u16 flags; - __u16 len; - u32 __data_loc_buf; - char __data[0]; -}; - -struct trace_event_raw_i2c_read { - struct trace_entry ent; - int adapter_nr; - __u16 msg_nr; - __u16 addr; - __u16 flags; - __u16 len; - char __data[0]; -}; - -struct trace_event_raw_i2c_reply { - struct trace_entry ent; - int adapter_nr; - __u16 msg_nr; - __u16 addr; - __u16 flags; - __u16 len; - u32 __data_loc_buf; - char __data[0]; -}; - -struct trace_event_raw_i2c_result { - struct trace_entry ent; - int adapter_nr; - __u16 nr_msgs; - __s16 ret; - char __data[0]; -}; - -struct trace_event_data_offsets_i2c_write { - u32 buf; - const void *buf_ptr_; -}; - -struct trace_event_data_offsets_i2c_read {}; - -struct trace_event_data_offsets_i2c_reply { - u32 buf; - const void *buf_ptr_; -}; - -struct trace_event_data_offsets_i2c_result {}; - -typedef void (*btf_trace_i2c_write)(void *, const struct i2c_adapter *, const struct i2c_msg *, int); - -typedef void (*btf_trace_i2c_read)(void *, const struct i2c_adapter *, const struct i2c_msg *, int); - -typedef void (*btf_trace_i2c_reply)(void *, const struct i2c_adapter *, const struct i2c_msg *, int); - -typedef void (*btf_trace_i2c_result)(void *, const struct i2c_adapter *, int, int); - -struct i2c_cmd_arg { - unsigned int cmd; - void *arg; -}; - -struct ptp_clock_caps { - int max_adj; - int n_alarm; - int n_ext_ts; - int n_per_out; - int pps; - int n_pins; - int cross_timestamping; - int adjust_phase; - int max_phase_adj; - int rsv[11]; -}; - -struct ptp_sys_offset { - unsigned int n_samples; - unsigned int rsv[3]; - struct ptp_clock_time ts[51]; -}; - -struct ptp_sys_offset_extended { - unsigned int n_samples; - __kernel_clockid_t clockid; - unsigned int rsv[2]; - struct ptp_clock_time ts[75]; -}; - -struct ptp_sys_offset_precise { - struct ptp_clock_time device; - struct ptp_clock_time sys_realtime; - struct ptp_clock_time sys_monoraw; - unsigned int rsv[4]; -}; - -struct tps65086_regulator_config; - -struct tps65086 { - struct device *dev; - struct regmap *regmap; - unsigned int chip_id; - const struct tps65086_regulator_config *reg_config; - int irq; - struct regmap_irq_chip_data *irq_data; -}; - -enum power_supply_charge_type { - POWER_SUPPLY_CHARGE_TYPE_UNKNOWN = 0, - POWER_SUPPLY_CHARGE_TYPE_NONE = 1, - POWER_SUPPLY_CHARGE_TYPE_TRICKLE = 2, - POWER_SUPPLY_CHARGE_TYPE_FAST = 3, - POWER_SUPPLY_CHARGE_TYPE_STANDARD = 4, - POWER_SUPPLY_CHARGE_TYPE_ADAPTIVE = 5, - POWER_SUPPLY_CHARGE_TYPE_CUSTOM = 6, - POWER_SUPPLY_CHARGE_TYPE_LONGLIFE = 7, - POWER_SUPPLY_CHARGE_TYPE_BYPASS = 8, -}; - -enum { - POWER_SUPPLY_HEALTH_UNKNOWN = 0, - POWER_SUPPLY_HEALTH_GOOD = 1, - POWER_SUPPLY_HEALTH_OVERHEAT = 2, - POWER_SUPPLY_HEALTH_DEAD = 3, - POWER_SUPPLY_HEALTH_OVERVOLTAGE = 4, - POWER_SUPPLY_HEALTH_UNDERVOLTAGE = 5, - POWER_SUPPLY_HEALTH_UNSPEC_FAILURE = 6, - POWER_SUPPLY_HEALTH_COLD = 7, - POWER_SUPPLY_HEALTH_WATCHDOG_TIMER_EXPIRE = 8, - POWER_SUPPLY_HEALTH_SAFETY_TIMER_EXPIRE = 9, - POWER_SUPPLY_HEALTH_OVERCURRENT = 10, - POWER_SUPPLY_HEALTH_CALIBRATION_REQUIRED = 11, - POWER_SUPPLY_HEALTH_WARM = 12, - POWER_SUPPLY_HEALTH_COOL = 13, - POWER_SUPPLY_HEALTH_HOT = 14, - POWER_SUPPLY_HEALTH_NO_BATTERY = 15, - POWER_SUPPLY_HEALTH_BLOWN_FUSE = 16, - POWER_SUPPLY_HEALTH_CELL_IMBALANCE = 17, -}; - -enum { - POWER_SUPPLY_TECHNOLOGY_UNKNOWN = 0, - POWER_SUPPLY_TECHNOLOGY_NiMH = 1, - POWER_SUPPLY_TECHNOLOGY_LION = 2, - POWER_SUPPLY_TECHNOLOGY_LIPO = 3, - POWER_SUPPLY_TECHNOLOGY_LiFe = 4, - POWER_SUPPLY_TECHNOLOGY_NiCd = 5, - POWER_SUPPLY_TECHNOLOGY_LiMn = 6, -}; - -enum { - POWER_SUPPLY_CAPACITY_LEVEL_UNKNOWN = 0, - POWER_SUPPLY_CAPACITY_LEVEL_CRITICAL = 1, - POWER_SUPPLY_CAPACITY_LEVEL_LOW = 2, - POWER_SUPPLY_CAPACITY_LEVEL_NORMAL = 3, - POWER_SUPPLY_CAPACITY_LEVEL_HIGH = 4, - POWER_SUPPLY_CAPACITY_LEVEL_FULL = 5, -}; - -enum { - POWER_SUPPLY_SCOPE_UNKNOWN = 0, - POWER_SUPPLY_SCOPE_SYSTEM = 1, - POWER_SUPPLY_SCOPE_DEVICE = 2, -}; - -enum power_supply_usb_type { - POWER_SUPPLY_USB_TYPE_UNKNOWN = 0, - POWER_SUPPLY_USB_TYPE_SDP = 1, - POWER_SUPPLY_USB_TYPE_DCP = 2, - POWER_SUPPLY_USB_TYPE_CDP = 3, - POWER_SUPPLY_USB_TYPE_ACA = 4, - POWER_SUPPLY_USB_TYPE_C = 5, - POWER_SUPPLY_USB_TYPE_PD = 6, - POWER_SUPPLY_USB_TYPE_PD_DRP = 7, - POWER_SUPPLY_USB_TYPE_PD_PPS = 8, - POWER_SUPPLY_USB_TYPE_APPLE_BRICK_ID = 9, -}; - -enum power_supply_charge_behaviour { - POWER_SUPPLY_CHARGE_BEHAVIOUR_AUTO = 0, - POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE = 1, - POWER_SUPPLY_CHARGE_BEHAVIOUR_INHIBIT_CHARGE_AWAKE = 2, - POWER_SUPPLY_CHARGE_BEHAVIOUR_FORCE_DISCHARGE = 3, -}; - -struct power_supply_ext { - const char * const name; - u8 charge_behaviours; - u32 charge_types; - const enum power_supply_property *properties; - size_t num_properties; - int (*get_property)(struct power_supply *, const struct power_supply_ext *, void *, enum power_supply_property, union power_supply_propval *); - int (*set_property)(struct power_supply *, const struct power_supply_ext *, void *, enum power_supply_property, const union power_supply_propval *); - int (*property_is_writeable)(struct power_supply *, const struct power_supply_ext *, void *, enum power_supply_property); -}; - -struct power_supply_ext_registration { - struct list_head list_head; - const struct power_supply_ext *ext; - struct device *dev; - void *data; -}; - -struct power_supply_attr { - const char *prop_name; - char attr_name[31]; - struct device_attribute dev_attr; - const char * const *text_values; - int text_values_len; -}; - -enum hwmon_chip_attributes { - hwmon_chip_temp_reset_history = 0, - hwmon_chip_in_reset_history = 1, - hwmon_chip_curr_reset_history = 2, - hwmon_chip_power_reset_history = 3, - hwmon_chip_register_tz = 4, - hwmon_chip_update_interval = 5, - hwmon_chip_alarms = 6, - hwmon_chip_samples = 7, - hwmon_chip_curr_samples = 8, - hwmon_chip_in_samples = 9, - hwmon_chip_power_samples = 10, - hwmon_chip_temp_samples = 11, - hwmon_chip_beep_enable = 12, - hwmon_chip_pec = 13, -}; - -enum hwmon_energy_attributes { - hwmon_energy_enable = 0, - hwmon_energy_input = 1, - hwmon_energy_label = 2, -}; - -enum hwmon_humidity_attributes { - hwmon_humidity_enable = 0, - hwmon_humidity_input = 1, - hwmon_humidity_label = 2, - hwmon_humidity_min = 3, - hwmon_humidity_min_hyst = 4, - hwmon_humidity_max = 5, - hwmon_humidity_max_hyst = 6, - hwmon_humidity_alarm = 7, - hwmon_humidity_fault = 8, - hwmon_humidity_rated_min = 9, - hwmon_humidity_rated_max = 10, - hwmon_humidity_min_alarm = 11, - hwmon_humidity_max_alarm = 12, -}; - -enum hwmon_fan_attributes { - hwmon_fan_enable = 0, - hwmon_fan_input = 1, - hwmon_fan_label = 2, - hwmon_fan_min = 3, - hwmon_fan_max = 4, - hwmon_fan_div = 5, - hwmon_fan_pulses = 6, - hwmon_fan_target = 7, - hwmon_fan_alarm = 8, - hwmon_fan_min_alarm = 9, - hwmon_fan_max_alarm = 10, - hwmon_fan_fault = 11, - hwmon_fan_beep = 12, -}; - -enum hwmon_pwm_attributes { - hwmon_pwm_input = 0, - hwmon_pwm_enable = 1, - hwmon_pwm_mode = 2, - hwmon_pwm_freq = 3, - hwmon_pwm_auto_channels_temp = 4, -}; - -enum hwmon_intrusion_attributes { - hwmon_intrusion_alarm = 0, - hwmon_intrusion_beep = 1, -}; - -struct trace_event_raw_hwmon_attr_class { - struct trace_entry ent; - int index; - u32 __data_loc_attr_name; - long int val; - char __data[0]; -}; - -struct trace_event_raw_hwmon_attr_show_string { - struct trace_entry ent; - int index; - u32 __data_loc_attr_name; - u32 __data_loc_label; - char __data[0]; -}; - -struct trace_event_data_offsets_hwmon_attr_class { - u32 attr_name; - const void *attr_name_ptr_; -}; - -struct trace_event_data_offsets_hwmon_attr_show_string { - u32 attr_name; - const void *attr_name_ptr_; - u32 label; - const void *label_ptr_; -}; - -typedef void (*btf_trace_hwmon_attr_show)(void *, int, const char *, long int); - -typedef void (*btf_trace_hwmon_attr_store)(void *, int, const char *, long int); - -typedef void (*btf_trace_hwmon_attr_show_string)(void *, int, const char *, const char *); - -struct hwmon_device { - const char *name; - const char *label; - struct device dev; - const struct hwmon_chip_info *chip; - struct list_head tzdata; - struct attribute_group group; - const struct attribute_group **groups; -}; - -struct hwmon_device_attribute { - struct device_attribute dev_attr; - const struct hwmon_ops *ops; - enum hwmon_sensor_types type; - u32 attr; - int index; - char name[32]; -}; - -struct hwmon_thermal_data { - struct list_head node; - struct device *dev; - int index; - struct thermal_zone_device *tzd; -}; - -struct trace_event_raw_thermal_power_allocator { - struct trace_entry ent; - int tz_id; - u32 total_req_power; - u32 total_granted_power; - size_t num_actors; - u32 power_range; - u32 max_allocatable_power; - int current_temp; - s32 delta_temp; - char __data[0]; -}; - -struct trace_event_raw_thermal_power_actor { - struct trace_entry ent; - int tz_id; - int actor_id; - u32 req_power; - u32 granted_power; - char __data[0]; -}; - -struct trace_event_raw_thermal_power_allocator_pid { - struct trace_entry ent; - int tz_id; - s32 err; - s32 err_integral; - s64 p; - s64 i; - s64 d; - s32 output; - char __data[0]; -}; - -struct trace_event_data_offsets_thermal_power_allocator {}; - -struct trace_event_data_offsets_thermal_power_actor {}; - -struct trace_event_data_offsets_thermal_power_allocator_pid {}; - -typedef void (*btf_trace_thermal_power_allocator)(void *, struct thermal_zone_device *, u32, u32, int, u32, u32, int, s32); - -typedef void (*btf_trace_thermal_power_actor)(void *, struct thermal_zone_device *, int, u32, u32); - -typedef void (*btf_trace_thermal_power_allocator_pid)(void *, struct thermal_zone_device *, s32, s32, s64, s64, s64, s32); - -struct power_actor { - u32 req_power; - u32 max_power; - u32 granted_power; - u32 extra_actor_power; - u32 weighted_req_power; -}; - -struct power_allocator_params { - bool allocated_tzp; - bool update_cdevs; - s64 err_integral; - s32 prev_err; - u32 sustainable_power; - const struct thermal_trip *trip_switch_on; - const struct thermal_trip *trip_max; - int total_weight; - unsigned int num_actors; - unsigned int buffer_size; - struct power_actor *power; -}; - -struct watchdog_pretimeout { - struct watchdog_device *wdd; - struct list_head entry; -}; - -struct governor_priv { - struct watchdog_governor *gov; - struct list_head entry; -}; - -struct dm_device { - struct dm_ioctl dmi; - struct dm_target_spec *table[256]; - char *target_args_array[256]; - struct list_head list; -}; - -enum dm_uevent_type { - DM_UEVENT_PATH_FAILED = 0, - DM_UEVENT_PATH_REINSTATED = 1, -}; - -struct dm_uevent { - struct mapped_device *md; - enum kobject_action action; - struct kobj_uevent_env ku_env; - struct list_head elist; - char name[128]; - char uuid[129]; -}; - -struct io_err_c { - struct dm_dev *dev; - sector_t start; -}; - -struct stripe { - struct dm_dev *dev; - sector_t physical_start; - atomic_t error_count; -}; - -struct stripe_c { - uint32_t stripes; - int stripes_shift; - sector_t stripe_width; - uint32_t chunk_size; - int chunk_size_shift; - struct dm_target *ti; - struct work_struct trigger_event; - struct stripe stripe[0]; -}; - -struct dm_io_region { - struct block_device *bdev; - sector_t sector; - sector_t count; -}; - -struct page_list { - struct page_list *next; - struct page *page; -}; - -typedef void (*io_notify_fn)(long unsigned int, void *); - -enum dm_io_mem_type { - DM_IO_PAGE_LIST = 0, - DM_IO_BIO = 1, - DM_IO_VMA = 2, - DM_IO_KMEM = 3, -}; - -struct dm_io_memory { - enum dm_io_mem_type type; - unsigned int offset; - union { - struct page_list *pl; - struct bio *bio; - void *vma; - void *addr; - } ptr; -}; - -struct dm_io_notify { - io_notify_fn fn; - void *context; -}; - -struct dm_io_client; - -struct dm_io_request { - blk_opf_t bi_opf; - struct dm_io_memory mem; - struct dm_io_notify notify; - struct dm_io_client *client; -}; - -struct dm_kcopyd_throttle { - unsigned int throttle; - unsigned int num_io_jobs; - unsigned int io_period; - unsigned int total_period; - unsigned int last_jiffies; -}; - -typedef void (*dm_kcopyd_notify_fn)(int, long unsigned int, void *); - -struct dm_kcopyd_client { - struct page_list *pages; - unsigned int nr_reserved_pages; - unsigned int nr_free_pages; - unsigned int sub_job_size; - struct dm_io_client *io_client; - wait_queue_head_t destroyq; - mempool_t job_pool; - struct workqueue_struct *kcopyd_wq; - struct work_struct kcopyd_work; - struct dm_kcopyd_throttle *throttle; - atomic_t nr_jobs; - spinlock_t job_lock; - struct list_head callback_jobs; - struct list_head complete_jobs; - struct list_head io_jobs; - struct list_head pages_jobs; -}; - -struct kcopyd_job { - struct dm_kcopyd_client *kc; - struct list_head list; - unsigned int flags; - int read_err; - long unsigned int write_err; - enum req_op op; - struct dm_io_region source; - unsigned int num_dests; - struct dm_io_region dests[8]; - struct page_list *pages; - dm_kcopyd_notify_fn fn; - void *context; - struct mutex lock; - atomic_t sub_jobs; - sector_t progress; - sector_t write_offset; - struct kcopyd_job *master_job; -}; - -struct dm_rq_target_io; - -struct dm_rq_clone_bio_info { - struct bio *orig; - struct dm_rq_target_io *tio; - struct bio clone; -}; - -struct dm_rq_target_io { - struct mapped_device *md; - struct dm_target *ti; - struct request *orig; - struct request *clone; - struct kthread_work work; - blk_status_t error; - union map_info info; - struct dm_stats_aux stats_aux; - long unsigned int duration_jiffies; - unsigned int n_sectors; - unsigned int completed; -}; - -enum dev_type { - DEV_UNKNOWN = 0, - DEV_X1 = 1, - DEV_X2 = 2, - DEV_X4 = 3, - DEV_X8 = 4, - DEV_X16 = 5, - DEV_X32 = 6, - DEV_X64 = 7, -}; - -enum hw_event_mc_err_type { - HW_EVENT_ERR_CORRECTED = 0, - HW_EVENT_ERR_UNCORRECTED = 1, - HW_EVENT_ERR_DEFERRED = 2, - HW_EVENT_ERR_FATAL = 3, - HW_EVENT_ERR_INFO = 4, -}; - -enum mem_type { - MEM_EMPTY = 0, - MEM_RESERVED = 1, - MEM_UNKNOWN = 2, - MEM_FPM = 3, - MEM_EDO = 4, - MEM_BEDO = 5, - MEM_SDR = 6, - MEM_RDR = 7, - MEM_DDR = 8, - MEM_RDDR = 9, - MEM_RMBS = 10, - MEM_DDR2 = 11, - MEM_FB_DDR2 = 12, - MEM_RDDR2 = 13, - MEM_XDR = 14, - MEM_DDR3 = 15, - MEM_RDDR3 = 16, - MEM_LRDDR3 = 17, - MEM_LPDDR3 = 18, - MEM_DDR4 = 19, - MEM_RDDR4 = 20, - MEM_LRDDR4 = 21, - MEM_LPDDR4 = 22, - MEM_DDR5 = 23, - MEM_RDDR5 = 24, - MEM_LRDDR5 = 25, - MEM_NVDIMM = 26, - MEM_WIO2 = 27, - MEM_HBM2 = 28, - MEM_HBM3 = 29, -}; - -enum edac_type { - EDAC_UNKNOWN = 0, - EDAC_NONE = 1, - EDAC_RESERVED = 2, - EDAC_PARITY = 3, - EDAC_EC = 4, - EDAC_SECDED = 5, - EDAC_S2ECD2ED = 6, - EDAC_S4ECD4ED = 7, - EDAC_S8ECD8ED = 8, - EDAC_S16ECD16ED = 9, -}; - -enum scrub_type { - SCRUB_UNKNOWN = 0, - SCRUB_NONE = 1, - SCRUB_SW_PROG = 2, - SCRUB_SW_SRC = 3, - SCRUB_SW_PROG_SRC = 4, - SCRUB_SW_TUNABLE = 5, - SCRUB_HW_PROG = 6, - SCRUB_HW_SRC = 7, - SCRUB_HW_PROG_SRC = 8, - SCRUB_HW_TUNABLE = 9, -}; - -enum edac_mc_layer_type { - EDAC_MC_LAYER_BRANCH = 0, - EDAC_MC_LAYER_CHANNEL = 1, - EDAC_MC_LAYER_SLOT = 2, - EDAC_MC_LAYER_CHIP_SELECT = 3, - EDAC_MC_LAYER_ALL_MEM = 4, -}; - -struct edac_mc_layer { - enum edac_mc_layer_type type; - unsigned int size; - bool is_virt_csrow; -}; - -struct mem_ctl_info; - -struct dimm_info { - struct device dev; - char label[32]; - unsigned int location[3]; - struct mem_ctl_info *mci; - unsigned int idx; - u32 grain; - enum dev_type dtype; - enum mem_type mtype; - enum edac_type edac_mode; - u32 nr_pages; - unsigned int csrow; - unsigned int cschannel; - u16 smbios_handle; - u32 ce_count; - u32 ue_count; -}; - -struct mcidev_sysfs_attribute; - -struct edac_raw_error_desc { - char location[256]; - char label[296]; - long int grain; - u16 error_count; - enum hw_event_mc_err_type type; - int top_layer; - int mid_layer; - int low_layer; - long unsigned int page_frame_number; - long unsigned int offset_in_page; - long unsigned int syndrome; - const char *msg; - const char *other_detail; -}; - -struct csrow_info; - -struct mem_ctl_info { - struct device dev; - const struct bus_type *bus; - struct list_head link; - struct module *owner; - long unsigned int mtype_cap; - long unsigned int edac_ctl_cap; - long unsigned int edac_cap; - long unsigned int scrub_cap; - enum scrub_type scrub_mode; - int (*set_sdram_scrub_rate)(struct mem_ctl_info *, u32); - int (*get_sdram_scrub_rate)(struct mem_ctl_info *); - void (*edac_check)(struct mem_ctl_info *); - long unsigned int (*ctl_page_to_phys)(struct mem_ctl_info *, long unsigned int); - int mc_idx; - struct csrow_info **csrows; - unsigned int nr_csrows; - unsigned int num_cschannel; - unsigned int n_layers; - struct edac_mc_layer *layers; - bool csbased; - unsigned int tot_dimms; - struct dimm_info **dimms; - struct device *pdev; - const char *mod_name; - const char *ctl_name; - const char *dev_name; - void *pvt_info; - long unsigned int start_time; - u32 ce_noinfo_count; - u32 ue_noinfo_count; - u32 ue_mc; - u32 ce_mc; - struct completion complete; - const struct mcidev_sysfs_attribute *mc_driver_sysfs_attributes; - struct delayed_work work; - struct edac_raw_error_desc error_desc; - int op_state; - struct dentry *debugfs; - u8 fake_inject_layer[3]; - bool fake_inject_ue; - u16 fake_inject_count; -}; - -struct rank_info { - int chan_idx; - struct csrow_info *csrow; - struct dimm_info *dimm; - u32 ce_count; -}; - -struct csrow_info { - struct device dev; - long unsigned int first_page; - long unsigned int last_page; - long unsigned int page_mask; - int csrow_idx; - u32 ue_count; - u32 ce_count; - struct mem_ctl_info *mci; - u32 nr_channels; - struct rank_info **channels; -}; - -enum edac_scrub_attributes { - SCRUB_ADDRESS = 0, - SCRUB_SIZE = 1, - SCRUB_ENABLE_BACKGROUND = 2, - SCRUB_MIN_CYCLE_DURATION = 3, - SCRUB_MAX_CYCLE_DURATION = 4, - SCRUB_CUR_CYCLE_DURATION = 5, - SCRUB_MAX_ATTRS = 6, -}; - -struct edac_scrub_dev_attr { - struct device_attribute dev_attr; - u8 instance; -}; - -struct edac_scrub_context { - char name[128]; - struct edac_scrub_dev_attr scrub_dev_attr[6]; - struct attribute *scrub_attrs[7]; - struct attribute_group group; -}; - -struct edac_pci_gen_data { - int edac_idx; -}; - -struct userspace_policy { - unsigned int is_managed; - unsigned int setspeed; - struct mutex mutex; -}; - -struct cs_policy_dbs_info { - struct policy_dbs_info policy_dbs; - unsigned int down_skip; - unsigned int requested_freq; -}; - -struct cs_dbs_tuners { - unsigned int down_threshold; - unsigned int freq_step; -}; - -enum acpi_preferred_pm_profiles { - PM_UNSPECIFIED = 0, - PM_DESKTOP = 1, - PM_MOBILE = 2, - PM_WORKSTATION = 3, - PM_ENTERPRISE_SERVER = 4, - PM_SOHO_SERVER = 5, - PM_APPLIANCE_PC = 6, - PM_PERFORMANCE_SERVER = 7, - PM_TABLET = 8, - NR_PM_PROFILES = 9, -}; - -union perf_cached { - struct { - u8 highest_perf; - u8 nominal_perf; - u8 lowest_nonlinear_perf; - u8 lowest_perf; - u8 min_limit_perf; - u8 max_limit_perf; - u8 bios_min_perf; - }; - u64 val; -}; - -struct amd_aperf_mperf { - u64 aperf; - u64 mperf; - u64 tsc; -}; - -struct amd_cpudata { - int cpu; - struct freq_qos_request req[2]; - u64 cppc_req_cached; - union perf_cached perf; - u8 prefcore_ranking; - u32 min_limit_freq; - u32 max_limit_freq; - u32 nominal_freq; - u32 lowest_nonlinear_freq; - struct amd_aperf_mperf cur; - struct amd_aperf_mperf prev; - u64 freq; - bool boost_supported; - bool hw_prefcore; - u32 policy; - bool suspended; - u8 epp_default; -}; - -enum amd_pstate_mode { - AMD_PSTATE_UNDEFINED = 0, - AMD_PSTATE_DISABLE = 1, - AMD_PSTATE_PASSIVE = 2, - AMD_PSTATE_ACTIVE = 3, - AMD_PSTATE_GUIDED = 4, - AMD_PSTATE_MAX = 5, -}; - -struct quirk_entry___2 { - u32 nominal_freq; - u32 lowest_freq; -}; - -enum energy_perf_value_index___2 { - EPP_INDEX_DEFAULT = 0, - EPP_INDEX_PERFORMANCE = 1, - EPP_INDEX_BALANCE_PERFORMANCE = 2, - EPP_INDEX_BALANCE_POWERSAVE = 3, - EPP_INDEX_POWERSAVE = 4, -}; - -typedef int (*cppc_mode_transition_fn)(int); - -struct sample { - int32_t core_avg_perf; - int32_t busy_scaled; - u64 aperf; - u64 mperf; - u64 tsc; - u64 time; -}; - -struct pstate_data { - int current_pstate; - int min_pstate; - int max_pstate; - int max_pstate_physical; - int perf_ctl_scaling; - int scaling; - int turbo_pstate; - unsigned int min_freq; - unsigned int max_freq; - unsigned int turbo_freq; -}; - -struct vid_data { - int min; - int max; - int turbo; - int32_t ratio; -}; - -struct global_params { - bool no_turbo; - bool turbo_disabled; - int max_perf_pct; - int min_perf_pct; -}; - -struct cpudata { - int cpu; - unsigned int policy; - struct update_util_data update_util; - bool update_util_set; - struct pstate_data pstate; - struct vid_data vid; - u64 last_update; - u64 last_sample_time; - u64 aperf_mperf_shift; - u64 prev_aperf; - u64 prev_mperf; - u64 prev_tsc; - struct sample sample; - int32_t min_perf_ratio; - int32_t max_perf_ratio; - struct acpi_processor_performance acpi_perf_data; - bool valid_pss_table; - unsigned int iowait_boost; - s16 epp_powersave; - s16 epp_policy; - s16 epp_default; - s16 epp_cached; - u64 hwp_req_cached; - u64 hwp_cap_cached; - u64 last_io_update; - unsigned int capacity_perf; - unsigned int sched_flags; - u32 hwp_boost_min; - bool suspended; - bool pd_registered; - struct delayed_work hwp_notify_work; -}; - -struct pstate_funcs { - int (*get_max)(int); - int (*get_max_physical)(int); - int (*get_min)(int); - int (*get_turbo)(int); - int (*get_scaling)(void); - int (*get_cpu_scaling)(int); - int (*get_aperf_mperf_shift)(void); - u64 (*get_val)(struct cpudata *, int); - void (*get_vid)(struct cpudata *); -}; - -enum { - PSS = 0, - PPC = 1, -}; - -struct dmi_device_attribute { - struct device_attribute dev_attr; - int field; -}; - -struct mafield { - const char *prefix; - int field; -}; - -struct simplefb_platform_data { - u32 width; - u32 height; - u32 stride; - const char *format; -}; - -struct efi_system_resource_entry_v1 { - efi_guid_t fw_class; - u32 fw_type; - u32 fw_version; - u32 lowest_supported_fw_version; - u32 capsule_flags; - u32 last_attempt_version; - u32 last_attempt_status; -}; - -struct efi_system_resource_table { - u32 fw_resource_count; - u32 fw_resource_count_max; - u64 fw_resource_version; - u8 entries[0]; -}; - -struct esre_entry { - union { - struct efi_system_resource_entry_v1 *esre1; - } esre; - struct kobject kobj; - struct list_head list; -}; - -struct esre_attribute { - struct attribute attr; - ssize_t (*show)(struct esre_entry *, char *); -}; - -struct hid_bpf_offset_write_range { - const char *struct_name; - u32 struct_length; - u32 start; - u32 end; -}; - -struct bpf_struct_ops_hid_bpf_ops { - struct bpf_struct_ops_common_value common; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct hid_bpf_ops data; -}; - -struct p2sb_res_cache { - u32 bus_dev_id; - struct resource res; -}; - -struct acpi_s2idle_dev_ops { - struct list_head list_node; - void (*prepare)(void); - void (*check)(void); - void (*restore)(void); -}; - -enum simatic_ipc_station_ids { - SIMATIC_IPC_INVALID_STATION_ID = 0, - SIMATIC_IPC_IPC227D = 1281, - SIMATIC_IPC_IPC427D = 1793, - SIMATIC_IPC_IPC227E = 2305, - SIMATIC_IPC_IPC277E = 2306, - SIMATIC_IPC_IPC427E = 2561, - SIMATIC_IPC_IPC477E = 2562, - SIMATIC_IPC_IPC127E = 3329, - SIMATIC_IPC_IPC227G = 3841, - SIMATIC_IPC_IPC277G = 3842, - SIMATIC_IPC_IPCBX_39A = 4097, - SIMATIC_IPC_IPCPX_39A = 4098, - SIMATIC_IPC_IPCBX_21A = 4353, - SIMATIC_IPC_IPCBX_56A = 4609, - SIMATIC_IPC_IPCBX_59A = 4610, -}; - -struct pmc_bit_map { - const char *name; - u32 bit_mask; -}; - -struct pmc_reg_map { - const struct pmc_bit_map *d3_sts_0; - const struct pmc_bit_map *d3_sts_1; - const struct pmc_bit_map *func_dis; - const struct pmc_bit_map *func_dis_2; - const struct pmc_bit_map *pss; -}; - -struct pmc_data { - const struct pmc_reg_map *map; - const struct pmc_clk *clks; -}; - -struct pmc_dev { - u32 base_addr; - void *regmap; - const struct pmc_reg_map *map; - struct dentry *dbgfs_dir; - bool init; -}; - -struct hwspinlock_ops { - int (*trylock)(struct hwspinlock *); - void (*unlock)(struct hwspinlock *); - int (*bust)(struct hwspinlock *, unsigned int); - void (*relax)(struct hwspinlock *); -}; - -struct hwspinlock_device; - -struct hwspinlock { - struct hwspinlock_device *bank; - spinlock_t lock; - void *priv; -}; - -struct hwspinlock_device { - struct device *dev; - const struct hwspinlock_ops *ops; - int base_id; - int num_locks; - struct hwspinlock lock[0]; -}; - -struct tsm_measurement_register { - const char *mr_name; - void *mr_value; - u32 mr_size; - u32 mr_flags; - enum hash_algo mr_hash; -}; - -struct tsm_measurements { - const struct tsm_measurement_register *mrs; - size_t nr_mrs; - int (*refresh)(const struct tsm_measurements *); - int (*write)(const struct tsm_measurements *, const struct tsm_measurement_register *, const u8 *); -}; - -struct trace_event_raw_tsm_mr_read { - struct trace_entry ent; - u32 __data_loc_mr; - u32 __data_loc_hash; - u32 __data_loc_d; - char __data[0]; -}; - -struct trace_event_raw_tsm_mr_refresh { - struct trace_entry ent; - u32 __data_loc_mr; - int rc; - char __data[0]; -}; - -struct trace_event_raw_tsm_mr_write { - struct trace_entry ent; - u32 __data_loc_mr; - u32 __data_loc_hash; - u32 __data_loc_d; - char __data[0]; -}; - -struct trace_event_data_offsets_tsm_mr_read { - u32 mr; - const void *mr_ptr_; - u32 hash; - const void *hash_ptr_; - u32 d; - const void *d_ptr_; -}; - -struct trace_event_data_offsets_tsm_mr_refresh { - u32 mr; - const void *mr_ptr_; -}; - -struct trace_event_data_offsets_tsm_mr_write { - u32 mr; - const void *mr_ptr_; - u32 hash; - const void *hash_ptr_; - u32 d; - const void *d_ptr_; -}; - -typedef void (*btf_trace_tsm_mr_read)(void *, const struct tsm_measurement_register *); - -typedef void (*btf_trace_tsm_mr_refresh)(void *, const struct tsm_measurement_register *, int); - -typedef void (*btf_trace_tsm_mr_write)(void *, const struct tsm_measurement_register *, const u8 *); - -struct tm_context { - struct rw_semaphore rwsem; - struct attribute_group agrp; - const struct tsm_measurements *tm; - bool in_sync; - struct bin_attribute mrs[0]; -}; - -enum hv_gpadl_type { - HV_GPADL_BUFFER = 0, - HV_GPADL_RING = 1, -}; - -struct shutdown_msg_data { - u32 reason_code; - u32 timeout_seconds; - u32 flags; - u8 display_message[2048]; -}; - -struct heartbeat_msg_data { - u64 seq_num; - u32 reserved[8]; -}; - -struct ictimesync_data { - u64 parenttime; - u64 childtime; - u64 roundtriptime; - u8 flags; -} __attribute__((packed)); - -struct ictimesync_ref_data { - u64 parenttime; - u64 vmreferencetime; - u8 flags; - char leapflags; - char stratum; - u8 reserved[3]; -} __attribute__((packed)); - -struct hibernate_work_context { - struct work_struct work; - struct hv_device *dev; -}; - -enum hvutil_transport_mode { - HVUTIL_TRANSPORT_INIT = 0, - HVUTIL_TRANSPORT_NETLINK = 1, - HVUTIL_TRANSPORT_CHARDEV = 2, - HVUTIL_TRANSPORT_DESTROY = 3, -}; - -struct hv_proximity_domain_flags { - u32 proximity_preferred: 1; - u32 reserved: 30; - u32 proximity_info_valid: 1; -}; - -struct hv_proximity_domain_info { - u32 domain_id; - struct hv_proximity_domain_flags flags; -}; - -struct hv_deposit_memory { - u64 partition_id; - u64 gpa_page_list[0]; -}; - -struct hv_lp_startup_status { - u64 hv_status; - u64 substatus1; - u64 substatus2; - u64 substatus3; - u64 substatus4; - u64 substatus5; - u64 substatus6; -}; - -struct hv_input_add_logical_processor { - u32 lp_index; - u32 apic_id; - struct hv_proximity_domain_info proximity_domain_info; -}; - -struct hv_output_add_logical_processor { - struct hv_lp_startup_status startup_status; -}; - -enum { - HV_SUBNODE_ANY = 0, - HV_SUBNODE_SOCKET = 1, - HV_SUBNODE_CLUSTER = 2, - HV_SUBNODE_L3 = 3, - HV_SUBNODE_COUNT = 4, - HV_SUBNODE_INVALID = -1, -}; - -struct hv_create_vp { - u64 partition_id; - u32 vp_index; - u8 padding[3]; - u8 subnode_type; - u64 subnode_id; - struct hv_proximity_domain_info proximity_domain_info; - u64 flags; -}; - -struct devfreq_simple_ondemand_data { - unsigned int upthreshold; - unsigned int downdifferential; -}; - -struct userspace_data { - long unsigned int user_frequency; - bool valid; -}; - -struct extcon_cable; - -struct extcon_dev { - const char *name; - const unsigned int *supported_cable; - const u32 *mutually_exclusive; - struct device dev; - unsigned int id; - struct raw_notifier_head nh_all; - struct raw_notifier_head *nh; - struct list_head entry; - int max_supported; - spinlock_t lock; - u32 state; - struct device_type extcon_dev_type; - struct extcon_cable *cables; - struct attribute_group attr_g_muex; - struct attribute **attrs_muex; - struct device_attribute *d_attrs_muex; -}; - -struct extcon_dev_notifier_devres { - struct extcon_dev *edev; - unsigned int id; - struct notifier_block *nb; -}; - -struct cper_sec_proc_arm { - u32 validation_bits; - u16 err_info_num; - u16 context_info_num; - u32 section_length; - u8 affinity_level; - u8 reserved[3]; - u64 mpidr; - u64 midr; - u32 running_state; - u32 psci_state; -}; - -struct cper_arm_err_info { - u8 version; - u8 length; - u16 validation_bits; - u8 type; - u16 multiple_error; - u8 flags; - u64 error_info; - u64 virt_fault_addr; - u64 physical_fault_addr; -} __attribute__((packed)); - -struct cper_arm_ctx_info { - u16 version; - u16 type; - u32 size; -}; - -struct cper_mem_err_compact { - u64 validation_bits; - u16 node; - u16 card; - u16 module; - u16 bank; - u16 device; - u16 row; - u16 column; - u16 bit_pos; - u64 requestor_id; - u64 responder_id; - u64 target_id; - u16 rank; - u16 mem_array_handle; - u16 mem_dev_handle; - u8 extended; -} __attribute__((packed)); - -struct atl_err { - u64 addr; - u64 ipid; - u32 cpu; -}; - -struct trace_event_raw_extlog_mem_event { - struct trace_entry ent; - u32 err_seq; - u8 etype; - u8 sev; - u64 pa; - u8 pa_mask_lsb; - guid_t fru_id; - u32 __data_loc_fru_text; - struct cper_mem_err_compact data; - char __data[0]; -}; - -struct trace_event_raw_mc_event { - struct trace_entry ent; - unsigned int error_type; - u32 __data_loc_msg; - u32 __data_loc_label; - u16 error_count; - u8 mc_index; - s8 top_layer; - s8 middle_layer; - s8 lower_layer; - long int address; - u8 grain_bits; - long int syndrome; - u32 __data_loc_driver_detail; - char __data[0]; -}; - -struct trace_event_raw_arm_event { - struct trace_entry ent; - u64 mpidr; - u64 midr; - u32 running_state; - u32 psci_state; - u8 affinity; - u32 pei_len; - u32 __data_loc_pei_buf; - u32 ctx_len; - u32 __data_loc_ctx_buf; - u32 oem_len; - u32 __data_loc_oem_buf; - u8 sev; - int cpu; - char __data[0]; -}; - -struct trace_event_raw_non_standard_event { - struct trace_entry ent; - char sec_type[16]; - char fru_id[16]; - u32 __data_loc_fru_text; - u8 sev; - u32 len; - u32 __data_loc_buf; - char __data[0]; -}; - -struct trace_event_raw_aer_event { - struct trace_entry ent; - u32 __data_loc_dev_name; - u32 status; - u8 severity; - u8 tlp_header_valid; - u32 tlp_header[14]; - char __data[0]; -}; - -struct trace_event_raw_memory_failure_event { - struct trace_entry ent; - long unsigned int pfn; - int type; - int result; - char __data[0]; -}; - -struct trace_event_data_offsets_extlog_mem_event { - u32 fru_text; - const void *fru_text_ptr_; -}; - -struct trace_event_data_offsets_mc_event { - u32 msg; - const void *msg_ptr_; - u32 label; - const void *label_ptr_; - u32 driver_detail; - const void *driver_detail_ptr_; -}; - -struct trace_event_data_offsets_arm_event { - u32 pei_buf; - const void *pei_buf_ptr_; - u32 ctx_buf; - const void *ctx_buf_ptr_; - u32 oem_buf; - const void *oem_buf_ptr_; -}; - -struct trace_event_data_offsets_non_standard_event { - u32 fru_text; - const void *fru_text_ptr_; - u32 buf; - const void *buf_ptr_; -}; - -struct trace_event_data_offsets_aer_event { - u32 dev_name; - const void *dev_name_ptr_; -}; - -struct trace_event_data_offsets_memory_failure_event {}; - -typedef void (*btf_trace_extlog_mem_event)(void *, struct cper_sec_mem_err *, u32, const guid_t *, const char *, u8); - -typedef void (*btf_trace_mc_event)(void *, const unsigned int, const char *, const char *, const int, const u8, const s8, const s8, const s8, long unsigned int, const u8, long unsigned int, const char *); - -typedef void (*btf_trace_arm_event)(void *, const struct cper_sec_proc_arm *, const u8 *, const u32, const u8 *, const u32, const u8 *, const u32, u8, int); - -typedef void (*btf_trace_non_standard_event)(void *, const guid_t *, const guid_t *, const char *, const u8, const u8 *, const u32); - -typedef void (*btf_trace_aer_event)(void *, const char *, const u32, const u8, const u8, struct pcie_tlp_log *); - -typedef void (*btf_trace_memory_failure_event)(void *, long unsigned int, int, int); - -struct hte_clk_info { - u64 hz; - clockid_t type; -}; - -struct hte_chip; - -struct hte_ops { - int (*request)(struct hte_chip *, struct hte_ts_desc *, u32); - int (*release)(struct hte_chip *, struct hte_ts_desc *, u32); - int (*enable)(struct hte_chip *, u32); - int (*disable)(struct hte_chip *, u32); - int (*get_clk_src_info)(struct hte_chip *, struct hte_clk_info *); -}; - -struct hte_device; - -struct hte_chip { - const char *name; - struct device *dev; - const struct hte_ops *ops; - u32 nlines; - int (*xlate_of)(struct hte_chip *, const struct of_phandle_args *, struct hte_ts_desc *, u32 *); - int (*xlate_plat)(struct hte_chip *, struct hte_ts_desc *, u32 *); - bool (*match_from_linedata)(const struct hte_chip *, const struct hte_ts_desc *); - u8 of_hte_n_cells; - struct hte_device *gdev; - void *data; -}; - -struct hte_ts_info { - u32 xlated_id; - long unsigned int flags; - long unsigned int hte_cb_flags; - u64 seq; - char *line_name; - bool free_attr_name; - hte_ts_cb_t cb; - hte_ts_sec_cb_t tcb; - atomic_t dropped_ts; - spinlock_t slock; - struct work_struct cb_work; - struct mutex req_mlock; - struct dentry *ts_dbg_root; - struct hte_device *gdev; - void *cl_data; -}; - -struct hte_device { - u32 nlines; - atomic_t ts_req; - struct device *sdev; - struct dentry *dbg_root; - struct list_head list; - struct hte_chip *chip; - struct module *owner; - struct hte_ts_info ei[0]; -}; - -enum { - HTE_TS_REGISTERED = 0, - HTE_TS_REQ = 1, - HTE_TS_DISABLE = 2, - HTE_TS_QUEUE_WK = 3, -}; - -struct net_device_devres { - struct net_device *ndev; -}; - -enum { - SKB_FCLONE_UNAVAILABLE = 0, - SKB_FCLONE_ORIG = 1, - SKB_FCLONE_CLONE = 2, -}; - -struct sk_buff_fclones { - struct sk_buff skb1; - struct sk_buff skb2; - refcount_t fclone_ref; -}; - -struct skb_seq_state { - __u32 lower_offset; - __u32 upper_offset; - __u32 frag_idx; - __u32 stepped_offset; - struct sk_buff *root_skb; - struct sk_buff *cur_skb; - __u8 *frag_data; - __u32 frag_off; -}; - -struct ip_auth_hdr { - __u8 nexthdr; - __u8 hdrlen; - __be16 reserved; - __be32 spi; - __be32 seq_no; - __u8 auth_data[0]; -}; - -struct mpls_shim_hdr { - __be32 label_stack_entry; -}; - -struct mctp_flow { - struct mctp_sk_key *key; -}; - -struct ts_state { - unsigned int offset; - char cb[48]; -}; - -struct ts_config; - -struct ts_ops { - const char *name; - struct ts_config * (*init)(const void *, unsigned int, gfp_t, int); - unsigned int (*find)(struct ts_config *, struct ts_state *); - void (*destroy)(struct ts_config *); - void * (*get_pattern)(struct ts_config *); - unsigned int (*get_pattern_len)(struct ts_config *); - struct module *owner; - struct list_head list; -}; - -struct ts_config { - struct ts_ops *ops; - int flags; - unsigned int (*get_next_block)(unsigned int, const u8 **, struct ts_config *, struct ts_state *); - void (*finish)(struct ts_config *, struct ts_state *); -}; - -struct napi_alloc_cache { - local_lock_t bh_lock; - struct page_frag_cache page; - unsigned int skb_count; - void *skb_cache[64]; -}; - -struct skb_free_array { - unsigned int skb_count; - void *skb_array[16]; -}; - -typedef int (*sendmsg_func)(struct sock *, struct msghdr *); - -struct gnet_stats_rate_est64 { - __u64 bps; - __u64 pps; -}; - -struct gnet_estimator { - signed char interval; - unsigned char ewma_log; -}; - -struct net_rate_estimator { - struct gnet_stats_basic_sync *bstats; - spinlock_t *stats_lock; - bool running; - struct gnet_stats_basic_sync *cpu_bstats; - u8 ewma_log; - u8 intvl_log; - seqcount_t seq; - u64 last_packets; - u64 last_bytes; - u64 avpps; - u64 avbps; - long unsigned int next_jiffies; - struct timer_list timer; - struct callback_head rcu; -}; - -enum { - TCA_FLOWER_KEY_CT_FLAGS_NEW = 1, - TCA_FLOWER_KEY_CT_FLAGS_ESTABLISHED = 2, - TCA_FLOWER_KEY_CT_FLAGS_RELATED = 4, - TCA_FLOWER_KEY_CT_FLAGS_TRACKED = 8, - TCA_FLOWER_KEY_CT_FLAGS_INVALID = 16, - TCA_FLOWER_KEY_CT_FLAGS_REPLY = 32, - __TCA_FLOWER_KEY_CT_FLAGS_MAX = 33, -}; - -enum flow_dissect_ret { - FLOW_DISSECT_RET_OUT_GOOD = 0, - FLOW_DISSECT_RET_OUT_BAD = 1, - FLOW_DISSECT_RET_PROTO_AGAIN = 2, - FLOW_DISSECT_RET_IPPROTO_AGAIN = 3, - FLOW_DISSECT_RET_CONTINUE = 4, -}; - -struct flow_dissector_key_hash { - u32 hash; -}; - -struct flow_dissector_key_num_of_vlans { - u8 num_of_vlans; -}; - -struct flow_dissector_key_cfm { - u8 mdl_ver; - u8 opcode; -}; - -struct flow_dissector_key { - enum flow_dissector_key_id key_id; - size_t offset; -}; - -struct flow_keys_digest { - u8 data[16]; -}; - -struct tc_skb_ext { - union { - u64 act_miss_cookie; - __u32 chain; - }; - __u16 mru; - __u16 zone; - u8 post_ct: 1; - u8 post_ct_snat: 1; - u8 post_ct_dnat: 1; - u8 act_miss: 1; - u8 l2_miss: 1; -}; - -struct ip_esp_hdr { - __be32 spi; - __be32 seq_no; - __u8 enc_data[0]; -}; - -struct nf_ct_event; - -struct nf_exp_event; - -struct nf_ct_event_notifier { - int (*ct_event)(unsigned int, const struct nf_ct_event *); - int (*exp_event)(unsigned int, const struct nf_exp_event *); -}; - -enum { - BPF_FLOW_DISSECTOR_F_PARSE_1ST_FRAG = 1, - BPF_FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL = 2, - BPF_FLOW_DISSECTOR_F_STOP_AT_ENCAP = 4, -}; - -struct gre_full_hdr { - struct gre_base_hdr fixed_header; - __be16 csum; - __be16 reserved1; - __be32 key; - __be32 seq; -}; - -struct pptp_gre_header { - struct gre_base_hdr gre_hd; - __be16 payload_len; - __be16 call_id; - __be32 seq; - __be32 ack; -}; - -struct tipc_basic_hdr { - __be32 w[4]; -}; - -struct pppoe_tag { - __be16 tag_type; - __be16 tag_len; - char tag_data[0]; -}; - -struct pppoe_hdr { - __u8 type: 4; - __u8 ver: 4; - __u8 code; - __be16 sid; - __be16 length; - struct pppoe_tag tag[0]; -}; - -struct hsr_tag { - __be16 path_and_LSDU_size; - __be16 sequence_nr; - __be16 encap_proto; -}; - -struct mpls_label { - __be32 entry; -}; - -enum batadv_packettype { - BATADV_IV_OGM = 0, - BATADV_BCAST = 1, - BATADV_CODED = 2, - BATADV_ELP = 3, - BATADV_OGM2 = 4, - BATADV_MCAST = 5, - BATADV_UNICAST = 64, - BATADV_UNICAST_FRAG = 65, - BATADV_UNICAST_4ADDR = 66, - BATADV_ICMP = 67, - BATADV_UNICAST_TVLV = 68, -}; - -struct batadv_unicast_packet { - __u8 packet_type; - __u8 version; - __u8 ttl; - __u8 ttvn; - __u8 dest[6]; -}; - -struct nf_conntrack_tuple_mask { - struct { - union nf_inet_addr u3; - union nf_conntrack_man_proto u; - } src; -}; - -struct nf_ct_ext { - u8 offset[10]; - u8 len; - unsigned int gen_id; - char data[0]; -}; - -struct nf_conntrack_helper; - -struct nf_conntrack_expect { - struct hlist_node lnode; - struct hlist_node hnode; - struct nf_conntrack_tuple tuple; - struct nf_conntrack_tuple_mask mask; - refcount_t use; - unsigned int flags; - unsigned int class; - void (*expectfn)(struct nf_conn *, struct nf_conntrack_expect *); - struct nf_conntrack_helper *helper; - struct nf_conn *master; - struct timer_list timeout; - union nf_inet_addr saved_addr; - union nf_conntrack_man_proto saved_proto; - enum ip_conntrack_dir dir; - struct callback_head rcu; -}; - -enum nf_ct_ext_id { - NF_CT_EXT_HELPER = 0, - NF_CT_EXT_NAT = 1, - NF_CT_EXT_SEQADJ = 2, - NF_CT_EXT_ACCT = 3, - NF_CT_EXT_ECACHE = 4, - NF_CT_EXT_TSTAMP = 5, - NF_CT_EXT_TIMEOUT = 6, - NF_CT_EXT_LABELS = 7, - NF_CT_EXT_SYNPROXY = 8, - NF_CT_EXT_ACT_CT = 9, - NF_CT_EXT_NUM = 10, -}; - -struct nf_ct_event { - struct nf_conn *ct; - u32 portid; - int report; -}; - -struct nf_exp_event { - struct nf_conntrack_expect *exp; - u32 portid; - int report; -}; - -struct nf_conn_labels { - long unsigned int bits[2]; -}; - -struct _flow_keys_digest_data { - __be16 n_proto; - u8 ip_proto; - u8 padding; - __be32 ports; - __be32 src; - __be32 dst; -}; - -struct ndt_stats { - __u64 ndts_allocs; - __u64 ndts_destroys; - __u64 ndts_hash_grows; - __u64 ndts_res_failed; - __u64 ndts_lookups; - __u64 ndts_hits; - __u64 ndts_rcv_probes_mcast; - __u64 ndts_rcv_probes_ucast; - __u64 ndts_periodic_gc_runs; - __u64 ndts_forced_gc_runs; - __u64 ndts_table_fulls; -}; - -enum { - NDTPA_UNSPEC = 0, - NDTPA_IFINDEX = 1, - NDTPA_REFCNT = 2, - NDTPA_REACHABLE_TIME = 3, - NDTPA_BASE_REACHABLE_TIME = 4, - NDTPA_RETRANS_TIME = 5, - NDTPA_GC_STALETIME = 6, - NDTPA_DELAY_PROBE_TIME = 7, - NDTPA_QUEUE_LEN = 8, - NDTPA_APP_PROBES = 9, - NDTPA_UCAST_PROBES = 10, - NDTPA_MCAST_PROBES = 11, - NDTPA_ANYCAST_DELAY = 12, - NDTPA_PROXY_DELAY = 13, - NDTPA_PROXY_QLEN = 14, - NDTPA_LOCKTIME = 15, - NDTPA_QUEUE_LENBYTES = 16, - NDTPA_MCAST_REPROBES = 17, - NDTPA_PAD = 18, - NDTPA_INTERVAL_PROBE_TIME_MS = 19, - __NDTPA_MAX = 20, -}; - -struct ndtmsg { - __u8 ndtm_family; - __u8 ndtm_pad1; - __u16 ndtm_pad2; -}; - -struct ndt_config { - __u16 ndtc_key_len; - __u16 ndtc_entry_size; - __u32 ndtc_entries; - __u32 ndtc_last_flush; - __u32 ndtc_last_rand; - __u32 ndtc_hash_rnd; - __u32 ndtc_hash_mask; - __u32 ndtc_hash_chain_gc; - __u32 ndtc_proxy_qlen; -}; - -enum { - NDTA_UNSPEC = 0, - NDTA_NAME = 1, - NDTA_THRESH1 = 2, - NDTA_THRESH2 = 3, - NDTA_THRESH3 = 4, - NDTA_CONFIG = 5, - NDTA_PARMS = 6, - NDTA_STATS = 7, - NDTA_GC_INTERVAL = 8, - NDTA_PAD = 9, - __NDTA_MAX = 10, -}; - -struct neigh_seq_state { - struct seq_net_private p; - struct neigh_table *tbl; - struct neigh_hash_table *nht; - void * (*neigh_sub_iter)(struct neigh_seq_state *, struct neighbour *, loff_t *); - unsigned int bucket; - unsigned int flags; -}; - -struct neighbour_cb { - long unsigned int sched_next; - unsigned int flags; -}; - -struct neigh_dump_filter { - int master_idx; - int dev_idx; -}; - -struct neigh_sysctl_table { - struct ctl_table_header *sysctl_header; - struct ctl_table neigh_vars[21]; -}; - -enum { - IF_LINK_MODE_DEFAULT = 0, - IF_LINK_MODE_DORMANT = 1, - IF_LINK_MODE_TESTING = 2, -}; - -enum lw_bits { - LW_URGENT = 0, -}; - -struct tso_t { - int next_frag_idx; - int size; - void *data; - u16 ip_id; - u8 tlen; - bool ipv6; - u32 tcp_seq; -}; - -struct page_pool_bh { - struct page_pool *pool; - local_lock_t bh_lock; -}; - -struct xdp_frame_bulk { - int count; - netmem_ref q[16]; -}; - -struct xdp_attachment_info { - struct bpf_prog *prog; - u32 flags; -}; - -enum { - NETDEV_A_PAGE_POOL_STATS_INFO = 1, - NETDEV_A_PAGE_POOL_STATS_ALLOC_FAST = 8, - NETDEV_A_PAGE_POOL_STATS_ALLOC_SLOW = 9, - NETDEV_A_PAGE_POOL_STATS_ALLOC_SLOW_HIGH_ORDER = 10, - NETDEV_A_PAGE_POOL_STATS_ALLOC_EMPTY = 11, - NETDEV_A_PAGE_POOL_STATS_ALLOC_REFILL = 12, - NETDEV_A_PAGE_POOL_STATS_ALLOC_WAIVE = 13, - NETDEV_A_PAGE_POOL_STATS_RECYCLE_CACHED = 14, - NETDEV_A_PAGE_POOL_STATS_RECYCLE_CACHE_FULL = 15, - NETDEV_A_PAGE_POOL_STATS_RECYCLE_RING = 16, - NETDEV_A_PAGE_POOL_STATS_RECYCLE_RING_FULL = 17, - NETDEV_A_PAGE_POOL_STATS_RECYCLE_RELEASED_REFCNT = 18, - __NETDEV_A_PAGE_POOL_STATS_MAX = 19, - NETDEV_A_PAGE_POOL_STATS_MAX = 18, -}; - -typedef int (*pp_nl_fill_cb)(struct sk_buff *, const struct page_pool *, const struct genl_info *); - -struct page_pool_dump_cb { - long unsigned int ifindex; - u32 pp_id; -}; - -struct fib_rule_uid_range { - __u32 start; - __u32 end; -}; - -struct fib_rule_notifier_info { - struct fib_notifier_info info; - struct fib_rule *rule; -}; - -enum ieee8021q_traffic_type { - IEEE8021Q_TT_BK = 0, - IEEE8021Q_TT_BE = 1, - IEEE8021Q_TT_EE = 2, - IEEE8021Q_TT_CA = 3, - IEEE8021Q_TT_VI = 4, - IEEE8021Q_TT_VO = 5, - IEEE8021Q_TT_IC = 6, - IEEE8021Q_TT_NC = 7, - IEEE8021Q_TT_MAX = 8, -}; - -enum ethtool_test_flags { - ETH_TEST_FL_OFFLINE = 1, - ETH_TEST_FL_FAILED = 2, - ETH_TEST_FL_EXTERNAL_LB = 4, - ETH_TEST_FL_EXTERNAL_LB_DONE = 8, -}; - -struct net_packet_attrs { - const unsigned char *src; - const unsigned char *dst; - u32 ip_src; - u32 ip_dst; - bool tcp; - u16 sport; - u16 dport; - int timeout; - int size; - int max_size; - u8 id; - u16 queue_mapping; - bool bad_csum; -}; - -struct net_test_priv { - struct net_packet_attrs *packet; - struct packet_type pt; - struct completion comp; - int double_vlan; - int vlan_id; - int ok; -}; - -struct netsfhdr { - __be32 version; - __be64 magic; - u8 id; -} __attribute__((packed)); - -struct net_test { - char name[32]; - int (*fn)(struct net_device *); -}; - -struct dst_cache_pcpu { - long unsigned int refresh_ts; - struct dst_entry *dst; - local_lock_t bh_lock; - u32 cookie; - union { - struct in_addr in_saddr; - struct in6_addr in6_saddr; - }; -}; - -struct sk_psock_link { - struct list_head list; - struct bpf_map *map; - void *link_raw; -}; - -struct bpf_stab { - struct bpf_map map; - struct sock **sks; - struct sk_psock_progs progs; - spinlock_t lock; -}; - -typedef u64 (*btf_bpf_sock_map_update)(struct bpf_sock_ops_kern *, struct bpf_map *, void *, u64); - -typedef u64 (*btf_bpf_sk_redirect_map)(struct sk_buff *, struct bpf_map *, u32, u64); - -typedef u64 (*btf_bpf_msg_redirect_map)(struct sk_msg *, struct bpf_map *, u32, u64); - -struct sock_map_seq_info { - struct bpf_map *map; - struct sock *sk; - u32 index; -}; - -struct bpf_iter__sockmap { - union { - struct bpf_iter_meta *meta; - }; - union { - struct bpf_map *map; - }; - union { - void *key; - }; - union { - struct sock *sk; - }; -}; - -struct bpf_shtab_elem { - struct callback_head rcu; - u32 hash; - struct sock *sk; - struct hlist_node node; - u8 key[0]; -}; - -struct bpf_shtab_bucket { - struct hlist_head head; - spinlock_t lock; -}; - -struct bpf_shtab { - struct bpf_map map; - struct bpf_shtab_bucket *buckets; - u32 buckets_num; - u32 elem_size; - struct sk_psock_progs progs; - atomic_t count; -}; - -typedef u64 (*btf_bpf_sock_hash_update)(struct bpf_sock_ops_kern *, struct bpf_map *, void *, u64); - -typedef u64 (*btf_bpf_sk_redirect_hash)(struct sk_buff *, struct bpf_map *, void *, u64); - -typedef u64 (*btf_bpf_msg_redirect_hash)(struct sk_msg *, struct bpf_map *, void *, u64); - -struct sock_hash_seq_info { - struct bpf_map *map; - struct bpf_shtab *htab; - u32 bucket_id; -}; - -struct sockmap_link { - struct bpf_link link; - struct bpf_map *map; -}; - -struct fddi_8022_1_hdr { - __u8 dsap; - __u8 ssap; - __u8 ctrl; -}; - -struct fddi_8022_2_hdr { - __u8 dsap; - __u8 ssap; - __u8 ctrl_1; - __u8 ctrl_2; -}; - -struct fddi_snap_hdr { - __u8 dsap; - __u8 ssap; - __u8 ctrl; - __u8 oui[3]; - __be16 ethertype; -}; - -struct fddihdr { - __u8 fc; - __u8 daddr[6]; - __u8 saddr[6]; - union { - struct fddi_8022_1_hdr llc_8022_1; - struct fddi_8022_2_hdr llc_8022_2; - struct fddi_snap_hdr llc_snap; - } hdr; -} __attribute__((packed)); - -struct sch_frag_data { - long unsigned int dst; - struct qdisc_skb_cb cb; - __be16 inner_protocol; - u16 vlan_tci; - __be16 vlan_proto; - unsigned int l2_len; - u8 l2_data[18]; - int (*xmit)(struct sk_buff *); - local_lock_t bh_lock; -}; - -enum { - TCA_ACT_UNSPEC = 0, - TCA_ACT_KIND = 1, - TCA_ACT_OPTIONS = 2, - TCA_ACT_INDEX = 3, - TCA_ACT_STATS = 4, - TCA_ACT_PAD = 5, - TCA_ACT_COOKIE = 6, - TCA_ACT_FLAGS = 7, - TCA_ACT_HW_STATS = 8, - TCA_ACT_USED_HW_STATS = 9, - TCA_ACT_IN_HW_COUNT = 10, - __TCA_ACT_MAX = 11, -}; - -struct tcamsg { - unsigned char tca_family; - unsigned char tca__pad1; - short unsigned int tca__pad2; -}; - -enum { - TCA_ROOT_UNSPEC = 0, - TCA_ROOT_TAB = 1, - TCA_ROOT_FLAGS = 2, - TCA_ROOT_COUNT = 3, - TCA_ROOT_TIME_DELTA = 4, - TCA_ROOT_EXT_WARN_MSG = 5, - __TCA_ROOT_MAX = 6, -}; - -struct tc_action_net { - struct tcf_idrinfo *idrinfo; - const struct tc_action_ops *ops; -}; - -enum pedit_header_type { - TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK = 0, - TCA_PEDIT_KEY_EX_HDR_TYPE_ETH = 1, - TCA_PEDIT_KEY_EX_HDR_TYPE_IP4 = 2, - TCA_PEDIT_KEY_EX_HDR_TYPE_IP6 = 3, - TCA_PEDIT_KEY_EX_HDR_TYPE_TCP = 4, - TCA_PEDIT_KEY_EX_HDR_TYPE_UDP = 5, - __PEDIT_HDR_TYPE_MAX = 6, -}; - -enum pedit_cmd { - TCA_PEDIT_KEY_EX_CMD_SET = 0, - TCA_PEDIT_KEY_EX_CMD_ADD = 1, - __PEDIT_CMD_MAX = 2, -}; - -struct tc_pedit_key { - __u32 mask; - __u32 val; - __u32 off; - __u32 at; - __u32 offmask; - __u32 shift; -}; - -struct tcf_pedit_key_ex { - enum pedit_header_type htype; - enum pedit_cmd cmd; -}; - -struct tcf_pedit_parms { - struct tc_pedit_key *tcfp_keys; - struct tcf_pedit_key_ex *tcfp_keys_ex; - int action; - unsigned char tcfp_nkeys; - unsigned char tcfp_flags; - struct callback_head rcu; -}; - -struct tcf_pedit { - struct tc_action common; - struct tcf_pedit_parms *parms; - long: 64; -}; - -struct tc_act_pernet_id { - struct list_head list; - unsigned int id; -}; - -enum { - CTRL_CMD_UNSPEC = 0, - CTRL_CMD_NEWFAMILY = 1, - CTRL_CMD_DELFAMILY = 2, - CTRL_CMD_GETFAMILY = 3, - CTRL_CMD_NEWOPS = 4, - CTRL_CMD_DELOPS = 5, - CTRL_CMD_GETOPS = 6, - CTRL_CMD_NEWMCAST_GRP = 7, - CTRL_CMD_DELMCAST_GRP = 8, - CTRL_CMD_GETMCAST_GRP = 9, - CTRL_CMD_GETPOLICY = 10, - __CTRL_CMD_MAX = 11, -}; - -enum { - CTRL_ATTR_UNSPEC = 0, - CTRL_ATTR_FAMILY_ID = 1, - CTRL_ATTR_FAMILY_NAME = 2, - CTRL_ATTR_VERSION = 3, - CTRL_ATTR_HDRSIZE = 4, - CTRL_ATTR_MAXATTR = 5, - CTRL_ATTR_OPS = 6, - CTRL_ATTR_MCAST_GROUPS = 7, - CTRL_ATTR_POLICY = 8, - CTRL_ATTR_OP_POLICY = 9, - CTRL_ATTR_OP = 10, - __CTRL_ATTR_MAX = 11, -}; - -enum { - CTRL_ATTR_OP_UNSPEC = 0, - CTRL_ATTR_OP_ID = 1, - CTRL_ATTR_OP_FLAGS = 2, - __CTRL_ATTR_OP_MAX = 3, -}; - -enum { - CTRL_ATTR_MCAST_GRP_UNSPEC = 0, - CTRL_ATTR_MCAST_GRP_NAME = 1, - CTRL_ATTR_MCAST_GRP_ID = 2, - __CTRL_ATTR_MCAST_GRP_MAX = 3, -}; - -enum { - CTRL_ATTR_POLICY_UNSPEC = 0, - CTRL_ATTR_POLICY_DO = 1, - CTRL_ATTR_POLICY_DUMP = 2, - __CTRL_ATTR_POLICY_DUMP_MAX = 3, - CTRL_ATTR_POLICY_DUMP_MAX = 2, -}; - -struct genl_op_iter { - const struct genl_family *family; - struct genl_split_ops doit; - struct genl_split_ops dumpit; - int cmd_idx; - int entry_idx; - u32 cmd; - u8 flags; -}; - -struct genl_start_context { - const struct genl_family *family; - struct nlmsghdr *nlh; - struct netlink_ext_ack *extack; - const struct genl_split_ops *ops; - int hdrlen; -}; - -struct ctrl_dump_policy_ctx { - struct netlink_policy_dump_state *state; - const struct genl_family *rt; - struct genl_op_iter *op_iter; - u32 op; - u16 fam_id; - u8 dump_map: 1; - u8 single_op: 1; -}; - -struct ethtool_cmd { - __u32 cmd; - __u32 supported; - __u32 advertising; - __u16 speed; - __u8 duplex; - __u8 port; - __u8 phy_address; - __u8 transceiver; - __u8 autoneg; - __u8 mdio_support; - __u32 maxtxpkt; - __u32 maxrxpkt; - __u16 speed_hi; - __u8 eth_tp_mdix; - __u8 eth_tp_mdix_ctrl; - __u32 lp_advertising; - __u32 reserved[2]; -}; - -struct ethtool_value { - __u32 cmd; - __u32 data; -}; - -enum tunable_type_id { - ETHTOOL_TUNABLE_UNSPEC = 0, - ETHTOOL_TUNABLE_U8 = 1, - ETHTOOL_TUNABLE_U16 = 2, - ETHTOOL_TUNABLE_U32 = 3, - ETHTOOL_TUNABLE_U64 = 4, - ETHTOOL_TUNABLE_STRING = 5, - ETHTOOL_TUNABLE_S8 = 6, - ETHTOOL_TUNABLE_S16 = 7, - ETHTOOL_TUNABLE_S32 = 8, - ETHTOOL_TUNABLE_S64 = 9, -}; - -struct ethtool_eee { - __u32 cmd; - __u32 supported; - __u32 advertised; - __u32 lp_advertised; - __u32 eee_active; - __u32 eee_enabled; - __u32 tx_lpi_enabled; - __u32 tx_lpi_timer; - __u32 reserved[2]; -}; - -struct ethtool_gstrings { - __u32 cmd; - __u32 string_set; - __u32 len; - __u8 data[0]; -}; - -struct ethtool_sset_info { - __u32 cmd; - __u32 reserved; - __u64 sset_mask; - __u32 data[0]; -}; - -struct ethtool_perm_addr { - __u32 cmd; - __u32 size; - __u8 data[0]; -}; - -enum ethtool_flags { - ETH_FLAG_TXVLAN = 128, - ETH_FLAG_RXVLAN = 256, - ETH_FLAG_LRO = 32768, - ETH_FLAG_NTUPLE = 134217728, - ETH_FLAG_RXHASH = 268435456, -}; - -struct ethtool_rxfh { - __u32 cmd; - __u32 rss_context; - __u32 indir_size; - __u32 key_size; - __u8 hfunc; - __u8 input_xfrm; - __u8 rsvd8[2]; - __u32 rsvd32; - __u32 rss_config[0]; -}; - -struct ethtool_get_features_block { - __u32 available; - __u32 requested; - __u32 active; - __u32 never_changed; -}; - -struct ethtool_gfeatures { - __u32 cmd; - __u32 size; - struct ethtool_get_features_block features[0]; -}; - -struct ethtool_set_features_block { - __u32 valid; - __u32 requested; -}; - -struct ethtool_sfeatures { - __u32 cmd; - __u32 size; - struct ethtool_set_features_block features[0]; -}; - -struct ethtool_ts_info { - __u32 cmd; - __u32 so_timestamping; - __s32 phc_index; - __u32 tx_types; - __u32 tx_reserved[3]; - __u32 rx_filters; - __u32 rx_reserved[3]; -}; - -enum ethtool_sfeatures_retval_bits { - ETHTOOL_F_UNSUPPORTED__BIT = 0, - ETHTOOL_F_WISH__BIT = 1, - ETHTOOL_F_COMPAT__BIT = 2, -}; - -struct ethtool_per_queue_op { - __u32 cmd; - __u32 sub_command; - __u32 queue_mask[128]; - char data[0]; -}; - -struct compat_ethtool_rx_flow_spec { - u32 flow_type; - union ethtool_flow_union h_u; - struct ethtool_flow_ext h_ext; - union ethtool_flow_union m_u; - struct ethtool_flow_ext m_ext; - compat_u64 ring_cookie; - u32 location; -} __attribute__((packed)); - -struct compat_ethtool_rxnfc { - u32 cmd; - u32 flow_type; - compat_u64 data; - struct compat_ethtool_rx_flow_spec fs; - u32 rule_cnt; - u32 rule_locs[0]; -} __attribute__((packed)); - -struct ethtool_rx_flow_rule { - struct flow_rule *rule; - long unsigned int priv[0]; -}; - -struct ethtool_rx_flow_spec_input { - const struct ethtool_rx_flow_spec *fs; - u32 rss_ctx; -}; - -struct ethtool_devlink_compat { - struct devlink *devlink; - union { - struct ethtool_flash efl; - struct ethtool_drvinfo info; - }; -}; - -struct ethtool_link_usettings { - struct ethtool_link_settings base; - struct { - __u32 supported[4]; - __u32 advertising[4]; - __u32 lp_advertising[4]; - } link_modes; -}; - -struct ethtool_rx_flow_key { - struct flow_dissector_key_basic basic; - union { - struct flow_dissector_key_ipv4_addrs ipv4; - struct flow_dissector_key_ipv6_addrs ipv6; - }; - struct flow_dissector_key_ports tp; - struct flow_dissector_key_ip ip; - struct flow_dissector_key_vlan vlan; - struct flow_dissector_key_eth_addrs eth_addrs; -}; - -struct ethtool_rx_flow_match { - struct flow_dissector dissector; - struct ethtool_rx_flow_key key; - struct ethtool_rx_flow_key mask; -}; - -struct linkinfo_reply_data { - struct ethnl_reply_data base; - struct ethtool_link_ksettings ksettings; - struct ethtool_link_settings *lsettings; -}; - -struct linkstate_reply_data { - struct ethnl_reply_data base; - int link; - int sqi; - int sqi_max; - struct ethtool_link_ext_stats link_stats; - bool link_ext_state_provided; - struct ethtool_link_ext_state_info ethtool_link_ext_state_info; -}; - -struct wol_reply_data { - struct ethnl_reply_data base; - struct ethtool_wolinfo wol; - bool show_sopass; -}; - -struct channels_reply_data { - struct ethnl_reply_data base; - struct ethtool_channels channels; -}; - -enum { - ETHTOOL_A_TS_STAT_UNSPEC = 0, - ETHTOOL_A_TS_STAT_TX_PKTS = 1, - ETHTOOL_A_TS_STAT_TX_LOST = 2, - ETHTOOL_A_TS_STAT_TX_ERR = 3, - ETHTOOL_A_TS_STAT_TX_ONESTEP_PKTS_UNCONFIRMED = 4, - __ETHTOOL_A_TS_STAT_CNT = 5, - ETHTOOL_A_TS_STAT_MAX = 4, -}; - -enum { - ETHTOOL_A_TS_HWTSTAMP_PROVIDER_UNSPEC = 0, - ETHTOOL_A_TS_HWTSTAMP_PROVIDER_INDEX = 1, - ETHTOOL_A_TS_HWTSTAMP_PROVIDER_QUALIFIER = 2, - __ETHTOOL_A_TS_HWTSTAMP_PROVIDER_CNT = 3, - ETHTOOL_A_TS_HWTSTAMP_PROVIDER_MAX = 2, -}; - -struct tsinfo_req_info { - struct ethnl_req_info base; - struct hwtstamp_provider_desc hwprov_desc; -}; - -struct tsinfo_reply_data { - struct ethnl_reply_data base; - struct kernel_ethtool_ts_info ts_info; - struct ethtool_ts_stats stats; -}; - -struct ethnl_tsinfo_dump_ctx { - struct tsinfo_req_info *req_info; - struct tsinfo_reply_data *reply_data; - long unsigned int pos_ifindex; - bool netdev_dump_done; - long unsigned int pos_phyindex; - enum hwtstamp_provider_qualifier pos_phcqualifier; -}; - -struct eeprom_req_info { - struct ethnl_req_info base; - u32 offset; - u32 length; - u8 page; - u8 bank; - u8 i2c_address; -}; - -struct eeprom_reply_data { - struct ethnl_reply_data base; - u32 length; - u8 *data; -}; - -enum ethtool_module_fw_flash_status { - ETHTOOL_MODULE_FW_FLASH_STATUS_STARTED = 1, - ETHTOOL_MODULE_FW_FLASH_STATUS_IN_PROGRESS = 2, - ETHTOOL_MODULE_FW_FLASH_STATUS_COMPLETED = 3, - ETHTOOL_MODULE_FW_FLASH_STATUS_ERROR = 4, -}; - -enum { - SFP_PHYS_ID = 0, - SFP_PHYS_EXT_ID = 1, - SFP_PHYS_EXT_ID_SFP = 4, - SFP_CONNECTOR = 2, - SFP_COMPLIANCE = 3, - SFP_ENCODING = 11, - SFP_BR_NOMINAL = 12, - SFP_RATE_ID = 13, - SFF_RID_8079 = 1, - SFF_RID_8431_RX_ONLY = 2, - SFF_RID_8431_TX_ONLY = 4, - SFF_RID_8431 = 6, - SFF_RID_10G8G = 14, - SFP_LINK_LEN_SM_KM = 14, - SFP_LINK_LEN_SM_100M = 15, - SFP_LINK_LEN_50UM_OM2_10M = 16, - SFP_LINK_LEN_62_5UM_OM1_10M = 17, - SFP_LINK_LEN_COPPER_1M = 18, - SFP_LINK_LEN_50UM_OM4_10M = 18, - SFP_LINK_LEN_50UM_OM3_10M = 19, - SFP_VENDOR_NAME = 20, - SFP_VENDOR_OUI = 37, - SFP_VENDOR_PN = 40, - SFP_VENDOR_REV = 56, - SFP_OPTICAL_WAVELENGTH_MSB = 60, - SFP_OPTICAL_WAVELENGTH_LSB = 61, - SFP_CABLE_SPEC = 60, - SFP_CC_BASE = 63, - SFP_OPTIONS = 64, - SFP_OPTIONS_HIGH_POWER_LEVEL = 8192, - SFP_OPTIONS_PAGING_A2 = 4096, - SFP_OPTIONS_RETIMER = 2048, - SFP_OPTIONS_COOLED_XCVR = 1024, - SFP_OPTIONS_POWER_DECL = 512, - SFP_OPTIONS_RX_LINEAR_OUT = 256, - SFP_OPTIONS_RX_DECISION_THRESH = 128, - SFP_OPTIONS_TUNABLE_TX = 64, - SFP_OPTIONS_RATE_SELECT = 32, - SFP_OPTIONS_TX_DISABLE = 16, - SFP_OPTIONS_TX_FAULT = 8, - SFP_OPTIONS_LOS_INVERTED = 4, - SFP_OPTIONS_LOS_NORMAL = 2, - SFP_BR_MAX = 66, - SFP_BR_MIN = 67, - SFP_VENDOR_SN = 68, - SFP_DATECODE = 84, - SFP_DIAGMON = 92, - SFP_DIAGMON_DDM = 64, - SFP_DIAGMON_INT_CAL = 32, - SFP_DIAGMON_EXT_CAL = 16, - SFP_DIAGMON_RXPWR_AVG = 8, - SFP_DIAGMON_ADDRMODE = 4, - SFP_ENHOPTS = 93, - SFP_ENHOPTS_ALARMWARN = 128, - SFP_ENHOPTS_SOFT_TX_DISABLE = 64, - SFP_ENHOPTS_SOFT_TX_FAULT = 32, - SFP_ENHOPTS_SOFT_RX_LOS = 16, - SFP_ENHOPTS_SOFT_RATE_SELECT = 8, - SFP_ENHOPTS_APP_SELECT_SFF8079 = 4, - SFP_ENHOPTS_SOFT_RATE_SFF8431 = 2, - SFP_SFF8472_COMPLIANCE = 94, - SFP_SFF8472_COMPLIANCE_NONE = 0, - SFP_SFF8472_COMPLIANCE_REV9_3 = 1, - SFP_SFF8472_COMPLIANCE_REV9_5 = 2, - SFP_SFF8472_COMPLIANCE_REV10_2 = 3, - SFP_SFF8472_COMPLIANCE_REV10_4 = 4, - SFP_SFF8472_COMPLIANCE_REV11_0 = 5, - SFP_SFF8472_COMPLIANCE_REV11_3 = 6, - SFP_SFF8472_COMPLIANCE_REV11_4 = 7, - SFP_SFF8472_COMPLIANCE_REV12_0 = 8, - SFP_CC_EXT = 95, -}; - -struct ethtool_module_fw_flash { - struct list_head list; - netdevice_tracker dev_tracker; - struct work_struct work; - struct ethtool_cmis_fw_update_params fw_update; -}; - -struct module_reply_data { - struct ethnl_reply_data base; - struct ethtool_module_power_mode_params power; -}; - -struct tsconfig_req_info { - struct ethnl_req_info base; -}; - -struct tsconfig_reply_data { - struct ethnl_reply_data base; - struct hwtstamp_provider_desc hwprov_desc; - struct { - u32 tx_type; - u32 rx_filter; - u32 flags; - } hwtst_config; -}; - -struct nf_sockopt_ops { - struct list_head list; - u_int8_t pf; - int set_optmin; - int set_optmax; - int (*set)(struct sock *, int, sockptr_t, unsigned int); - int get_optmin; - int get_optmax; - int (*get)(struct sock *, int, void *, int *); - struct module *owner; -}; - -struct bpf_nf_link { - struct bpf_link link; - struct nf_hook_ops hook_ops; - netns_tracker ns_tracker; - struct net *net; - u32 dead; - const struct nf_defrag_hook *defrag_hook; -}; - -struct ipq { - struct inet_frag_queue q; - u8 ecn; - u16 max_df_size; - int iif; - unsigned int rid; - struct inet_peer *peer; -}; - -struct ip_mreq_source { - __be32 imr_multiaddr; - __be32 imr_interface; - __be32 imr_sourceaddr; -}; - -struct ip_msfilter { - __be32 imsf_multiaddr; - __be32 imsf_interface; - __u32 imsf_fmode; - __u32 imsf_numsrc; - union { - __be32 imsf_slist[1]; - struct { - struct {} __empty_imsf_slist_flex; - __be32 imsf_slist_flex[0]; - }; - }; -}; - -struct group_req { - __u32 gr_interface; - struct __kernel_sockaddr_storage gr_group; -}; - -struct group_source_req { - __u32 gsr_interface; - struct __kernel_sockaddr_storage gsr_group; - struct __kernel_sockaddr_storage gsr_source; -}; - -struct group_filter { - union { - struct { - __u32 gf_interface_aux; - struct __kernel_sockaddr_storage gf_group_aux; - __u32 gf_fmode_aux; - __u32 gf_numsrc_aux; - struct __kernel_sockaddr_storage gf_slist[1]; - }; - struct { - __u32 gf_interface; - struct __kernel_sockaddr_storage gf_group; - __u32 gf_fmode; - __u32 gf_numsrc; - struct __kernel_sockaddr_storage gf_slist_flex[0]; - }; - }; -}; - -struct compat_group_req { - __u32 gr_interface; - struct __kernel_sockaddr_storage gr_group; -} __attribute__((packed)); - -struct compat_group_source_req { - __u32 gsr_interface; - struct __kernel_sockaddr_storage gsr_group; - struct __kernel_sockaddr_storage gsr_source; -} __attribute__((packed)); - -struct compat_group_filter { - union { - struct { - __u32 gf_interface_aux; - struct __kernel_sockaddr_storage gf_group_aux; - __u32 gf_fmode_aux; - __u32 gf_numsrc_aux; - struct __kernel_sockaddr_storage gf_slist[1]; - } __attribute__((packed)); - struct { - __u32 gf_interface; - struct __kernel_sockaddr_storage gf_group; - __u32 gf_fmode; - __u32 gf_numsrc; - struct __kernel_sockaddr_storage gf_slist_flex[0]; - } __attribute__((packed)); - }; -}; - -enum { - BPF_WRITE_HDR_TCP_CURRENT_MSS = 1, - BPF_WRITE_HDR_TCP_SYNACK_COOKIE = 2, -}; - -enum { - TCP_NO_QUEUE = 0, - TCP_RECV_QUEUE = 1, - TCP_SEND_QUEUE = 2, - TCP_QUEUES_NR = 3, -}; - -enum tsq_flags { - TSQF_THROTTLED = 1, - TSQF_QUEUED = 2, - TCPF_TSQ_DEFERRED = 4, - TCPF_WRITE_TIMER_DEFERRED = 8, - TCPF_DELACK_TIMER_DEFERRED = 16, - TCPF_MTU_REDUCED_DEFERRED = 32, - TCPF_ACK_DEFERRED = 64, -}; - -struct tcp_out_options { - u16 options; - u16 mss; - u8 ws; - u8 num_sack_blocks; - u8 hash_size; - u8 bpf_opt_len; - __u8 *hash_location; - __u32 tsval; - __u32 tsecr; - struct tcp_fastopen_cookie *fastopen_cookie; - struct mptcp_out_options mptcp; -}; - -struct tsq_work { - struct work_struct work; - struct list_head head; -}; - -enum tcp_metric_index { - TCP_METRIC_RTT = 0, - TCP_METRIC_RTTVAR = 1, - TCP_METRIC_SSTHRESH = 2, - TCP_METRIC_CWND = 3, - TCP_METRIC_REORDERING = 4, - TCP_METRIC_RTT_US = 5, - TCP_METRIC_RTTVAR_US = 6, - __TCP_METRIC_MAX = 7, -}; - -enum { - TCP_METRICS_ATTR_UNSPEC = 0, - TCP_METRICS_ATTR_ADDR_IPV4 = 1, - TCP_METRICS_ATTR_ADDR_IPV6 = 2, - TCP_METRICS_ATTR_AGE = 3, - TCP_METRICS_ATTR_TW_TSVAL = 4, - TCP_METRICS_ATTR_TW_TS_STAMP = 5, - TCP_METRICS_ATTR_VALS = 6, - TCP_METRICS_ATTR_FOPEN_MSS = 7, - TCP_METRICS_ATTR_FOPEN_SYN_DROPS = 8, - TCP_METRICS_ATTR_FOPEN_SYN_DROP_TS = 9, - TCP_METRICS_ATTR_FOPEN_COOKIE = 10, - TCP_METRICS_ATTR_SADDR_IPV4 = 11, - TCP_METRICS_ATTR_SADDR_IPV6 = 12, - TCP_METRICS_ATTR_PAD = 13, - __TCP_METRICS_ATTR_MAX = 14, -}; - -enum { - TCP_METRICS_CMD_UNSPEC = 0, - TCP_METRICS_CMD_GET = 1, - TCP_METRICS_CMD_DEL = 2, - __TCP_METRICS_CMD_MAX = 3, -}; - -struct tcp_fastopen_metrics { - u16 mss; - u16 syn_loss: 10; - u16 try_exp: 2; - long unsigned int last_syn_loss; - struct tcp_fastopen_cookie cookie; -}; - -struct tcp_metrics_block { - struct tcp_metrics_block *tcpm_next; - struct net *tcpm_net; - struct inetpeer_addr tcpm_saddr; - struct inetpeer_addr tcpm_daddr; - long unsigned int tcpm_stamp; - u32 tcpm_lock; - u32 tcpm_vals[5]; - struct tcp_fastopen_metrics tcpm_fastopen; - struct callback_head callback_head; -}; - -struct tcpm_hash_bucket { - struct tcp_metrics_block *chain; -}; - -struct igmpv3_grec { - __u8 grec_type; - __u8 grec_auxwords; - __be16 grec_nsrcs; - __be32 grec_mca; - __be32 grec_src[0]; -}; - -struct igmpv3_report { - __u8 type; - __u8 resv1; - __sum16 csum; - __be16 resv2; - __be16 ngrec; - struct igmpv3_grec grec[0]; -}; - -struct igmpv3_query { - __u8 type; - __u8 code; - __sum16 csum; - __be32 group; - __u8 qrv: 3; - __u8 suppress: 1; - __u8 resv: 4; - __u8 qqic; - __be16 nsrcs; - __be32 srcs[0]; -}; - -struct igmp_mc_iter_state { - struct seq_net_private p; - struct net_device *dev; - struct in_device *in_dev; -}; - -struct igmp_mcf_iter_state { - struct seq_net_private p; - struct net_device *dev; - struct in_device *idev; - struct ip_mc_list *im; -}; - -struct rta_mfc_stats { - __u64 mfcs_packets; - __u64 mfcs_bytes; - __u64 mfcs_wrong_if; -}; - -enum { - ETHTOOL_A_TUNNEL_UDP_ENTRY_UNSPEC = 0, - ETHTOOL_A_TUNNEL_UDP_ENTRY_PORT = 1, - ETHTOOL_A_TUNNEL_UDP_ENTRY_TYPE = 2, - __ETHTOOL_A_TUNNEL_UDP_ENTRY_CNT = 3, - ETHTOOL_A_TUNNEL_UDP_ENTRY_MAX = 2, -}; - -enum { - ETHTOOL_A_TUNNEL_UDP_TABLE_UNSPEC = 0, - ETHTOOL_A_TUNNEL_UDP_TABLE_SIZE = 1, - ETHTOOL_A_TUNNEL_UDP_TABLE_TYPES = 2, - ETHTOOL_A_TUNNEL_UDP_TABLE_ENTRY = 3, - __ETHTOOL_A_TUNNEL_UDP_TABLE_CNT = 4, - ETHTOOL_A_TUNNEL_UDP_TABLE_MAX = 3, -}; - -struct udp_tunnel_nic_table_entry; - -struct udp_tunnel_nic { - struct work_struct work; - struct net_device *dev; - struct mutex lock; - u8 need_sync: 1; - u8 need_replay: 1; - u8 work_pending: 1; - unsigned int n_tables; - long unsigned int missed; - struct udp_tunnel_nic_table_entry *entries[0]; -}; - -enum udp_tunnel_nic_info_flags { - UDP_TUNNEL_NIC_INFO_OPEN_ONLY = 1, - UDP_TUNNEL_NIC_INFO_IPV4_ONLY = 2, - UDP_TUNNEL_NIC_INFO_STATIC_IANA_VXLAN = 4, -}; - -struct udp_tunnel_nic_shared_node { - struct net_device *dev; - struct list_head list; -}; - -enum udp_tunnel_nic_table_entry_flags { - UDP_TUNNEL_NIC_ENTRY_ADD = 1, - UDP_TUNNEL_NIC_ENTRY_DEL = 2, - UDP_TUNNEL_NIC_ENTRY_OP_FAIL = 4, - UDP_TUNNEL_NIC_ENTRY_FROZEN = 8, -}; - -struct udp_tunnel_nic_table_entry { - __be16 port; - u8 type; - u8 flags; - u16 use_cnt; - u8 hw_priv; -}; - -struct sigpool_scratch { - local_lock_t bh_lock; - void *pad; -}; - -struct sigpool_entry { - struct crypto_ahash *hash; - const char *alg; - struct kref kref; - uint16_t needs_key: 1; - uint16_t reserved: 15; -}; - -struct scratches_to_free { - struct callback_head rcu; - unsigned int cnt; - void *scratches[0]; -}; - -struct xfrm_input_afinfo { - u8 family; - bool is_ipip; - int (*callback)(struct sk_buff *, u8, int); -}; - -struct __ip6_tnl_parm { - char name[16]; - int link; - __u8 proto; - __u8 encap_limit; - __u8 hop_limit; - bool collect_md; - __be32 flowinfo; - __u32 flags; - struct in6_addr laddr; - struct in6_addr raddr; - long unsigned int i_flags[1]; - long unsigned int o_flags[1]; - __be32 i_key; - __be32 o_key; - __u32 fwmark; - __u32 index; - __u8 erspan_ver; - __u8 dir; - __u16 hwid; -}; - -struct ip6_tnl { - struct ip6_tnl *next; - struct net_device *dev; - netdevice_tracker dev_tracker; - struct net *net; - struct __ip6_tnl_parm parms; - struct flowi fl; - struct dst_cache dst_cache; - struct gro_cells gro_cells; - int err_count; - long unsigned int err_time; - __u32 i_seqno; - atomic_t o_seqno; - int hlen; - int tun_hlen; - int encap_hlen; - struct ip_tunnel_encap encap; - int mlink; -}; - -struct xfrm_trans_tasklet { - struct work_struct work; - spinlock_t queue_lock; - struct sk_buff_head queue; -}; - -struct xfrm_trans_cb { - union { - struct inet_skb_parm h4; - struct inet6_skb_parm h6; - } header; - int (*finish)(struct net *, struct sock *, struct sk_buff *); - struct net *net; -}; - -struct unix_edge { - struct unix_sock *predecessor; - struct unix_sock *successor; - struct list_head vertex_entry; - struct list_head stack_entry; -}; - -struct unix_vertex { - struct list_head edges; - struct list_head entry; - struct list_head scc_entry; - long unsigned int out_degree; - long unsigned int index; - long unsigned int scc_index; -}; - -struct unix_skb_parms { - struct pid *pid; - kuid_t uid; - kgid_t gid; - struct scm_fp_list *fp; - u32 secid; - u32 consumed; -}; - -enum unix_vertex_index { - UNIX_VERTEX_INDEX_MARK1 = 0, - UNIX_VERTEX_INDEX_MARK2 = 1, - UNIX_VERTEX_INDEX_START = 2, -}; - -struct ipv6_params { - __s32 disable_ipv6; - __s32 autoconf; -}; - -struct compat_in6_rtmsg { - struct in6_addr rtmsg_dst; - struct in6_addr rtmsg_src; - struct in6_addr rtmsg_gateway; - u32 rtmsg_type; - u16 rtmsg_dst_len; - u16 rtmsg_src_len; - u32 rtmsg_metric; - u32 rtmsg_info; - u32 rtmsg_flags; - s32 rtmsg_ifindex; -}; - -enum { - IFLA_INET6_UNSPEC = 0, - IFLA_INET6_FLAGS = 1, - IFLA_INET6_CONF = 2, - IFLA_INET6_STATS = 3, - IFLA_INET6_MCAST = 4, - IFLA_INET6_CACHEINFO = 5, - IFLA_INET6_ICMP6STATS = 6, - IFLA_INET6_TOKEN = 7, - IFLA_INET6_ADDR_GEN_MODE = 8, - IFLA_INET6_RA_MTU = 9, - __IFLA_INET6_MAX = 10, -}; - -enum in6_addr_gen_mode { - IN6_ADDR_GEN_MODE_EUI64 = 0, - IN6_ADDR_GEN_MODE_NONE = 1, - IN6_ADDR_GEN_MODE_STABLE_PRIVACY = 2, - IN6_ADDR_GEN_MODE_RANDOM = 3, -}; - -struct ifla_cacheinfo { - __u32 max_reasm_len; - __u32 tstamp; - __u32 reachable_time; - __u32 retrans_time; -}; - -struct wpan_phy; - -struct wpan_dev_header_ops; - -struct ieee802154_pan_device; - -struct wpan_dev { - struct wpan_phy *wpan_phy; - int iftype; - struct list_head list; - struct net_device *netdev; - const struct wpan_dev_header_ops *header_ops; - struct net_device *lowpan_dev; - u32 identifier; - __le16 pan_id; - __le16 short_addr; - __le64 extended_addr; - atomic_t bsn; - atomic_t dsn; - u8 min_be; - u8 max_be; - u8 csma_retries; - s8 frame_retries; - bool lbt; - bool ackreq; - struct mutex association_lock; - struct ieee802154_pan_device *parent; - struct list_head children; - unsigned int max_associations; - unsigned int nchildren; -}; - -struct netdev_notifier_change_info { - struct netdev_notifier_info info; - unsigned int flags_changed; -}; - -struct prefixmsg { - unsigned char prefix_family; - unsigned char prefix_pad1; - short unsigned int prefix_pad2; - int prefix_ifindex; - unsigned char prefix_type; - unsigned char prefix_len; - unsigned char prefix_flags; - unsigned char prefix_pad3; -}; - -enum { - PREFIX_UNSPEC = 0, - PREFIX_ADDRESS = 1, - PREFIX_CACHEINFO = 2, - __PREFIX_MAX = 3, -}; - -struct prefix_cacheinfo { - __u32 preferred_time; - __u32 valid_time; -}; - -struct in6_ifreq { - struct in6_addr ifr6_addr; - __u32 ifr6_prefixlen; - int ifr6_ifindex; -}; - -enum { - DEVCONF_FORWARDING = 0, - DEVCONF_HOPLIMIT = 1, - DEVCONF_MTU6 = 2, - DEVCONF_ACCEPT_RA = 3, - DEVCONF_ACCEPT_REDIRECTS = 4, - DEVCONF_AUTOCONF = 5, - DEVCONF_DAD_TRANSMITS = 6, - DEVCONF_RTR_SOLICITS = 7, - DEVCONF_RTR_SOLICIT_INTERVAL = 8, - DEVCONF_RTR_SOLICIT_DELAY = 9, - DEVCONF_USE_TEMPADDR = 10, - DEVCONF_TEMP_VALID_LFT = 11, - DEVCONF_TEMP_PREFERED_LFT = 12, - DEVCONF_REGEN_MAX_RETRY = 13, - DEVCONF_MAX_DESYNC_FACTOR = 14, - DEVCONF_MAX_ADDRESSES = 15, - DEVCONF_FORCE_MLD_VERSION = 16, - DEVCONF_ACCEPT_RA_DEFRTR = 17, - DEVCONF_ACCEPT_RA_PINFO = 18, - DEVCONF_ACCEPT_RA_RTR_PREF = 19, - DEVCONF_RTR_PROBE_INTERVAL = 20, - DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN = 21, - DEVCONF_PROXY_NDP = 22, - DEVCONF_OPTIMISTIC_DAD = 23, - DEVCONF_ACCEPT_SOURCE_ROUTE = 24, - DEVCONF_MC_FORWARDING = 25, - DEVCONF_DISABLE_IPV6 = 26, - DEVCONF_ACCEPT_DAD = 27, - DEVCONF_FORCE_TLLAO = 28, - DEVCONF_NDISC_NOTIFY = 29, - DEVCONF_MLDV1_UNSOLICITED_REPORT_INTERVAL = 30, - DEVCONF_MLDV2_UNSOLICITED_REPORT_INTERVAL = 31, - DEVCONF_SUPPRESS_FRAG_NDISC = 32, - DEVCONF_ACCEPT_RA_FROM_LOCAL = 33, - DEVCONF_USE_OPTIMISTIC = 34, - DEVCONF_ACCEPT_RA_MTU = 35, - DEVCONF_STABLE_SECRET = 36, - DEVCONF_USE_OIF_ADDRS_ONLY = 37, - DEVCONF_ACCEPT_RA_MIN_HOP_LIMIT = 38, - DEVCONF_IGNORE_ROUTES_WITH_LINKDOWN = 39, - DEVCONF_DROP_UNICAST_IN_L2_MULTICAST = 40, - DEVCONF_DROP_UNSOLICITED_NA = 41, - DEVCONF_KEEP_ADDR_ON_DOWN = 42, - DEVCONF_RTR_SOLICIT_MAX_INTERVAL = 43, - DEVCONF_SEG6_ENABLED = 44, - DEVCONF_SEG6_REQUIRE_HMAC = 45, - DEVCONF_ENHANCED_DAD = 46, - DEVCONF_ADDR_GEN_MODE = 47, - DEVCONF_DISABLE_POLICY = 48, - DEVCONF_ACCEPT_RA_RT_INFO_MIN_PLEN = 49, - DEVCONF_NDISC_TCLASS = 50, - DEVCONF_RPL_SEG_ENABLED = 51, - DEVCONF_RA_DEFRTR_METRIC = 52, - DEVCONF_IOAM6_ENABLED = 53, - DEVCONF_IOAM6_ID = 54, - DEVCONF_IOAM6_ID_WIDE = 55, - DEVCONF_NDISC_EVICT_NOCARRIER = 56, - DEVCONF_ACCEPT_UNTRACKED_NA = 57, - DEVCONF_ACCEPT_RA_MIN_LFT = 58, - DEVCONF_FORCE_FORWARDING = 59, - DEVCONF_MAX = 60, -}; - -enum { - INET6_IFADDR_STATE_PREDAD = 0, - INET6_IFADDR_STATE_DAD = 1, - INET6_IFADDR_STATE_POSTDAD = 2, - INET6_IFADDR_STATE_ERRDAD = 3, - INET6_IFADDR_STATE_DEAD = 4, -}; - -struct in6_validator_info { - struct in6_addr i6vi_addr; - struct inet6_dev *i6vi_dev; - struct netlink_ext_ack *extack; -}; - -struct ifa6_config { - const struct in6_addr *pfx; - unsigned int plen; - u8 ifa_proto; - const struct in6_addr *peer_pfx; - u32 rt_priority; - u32 ifa_flags; - u32 preferred_lft; - u32 valid_lft; - u16 scope; -}; - -enum addr_type_t { - UNICAST_ADDR = 0, - MULTICAST_ADDR = 1, - ANYCAST_ADDR = 2, -}; - -struct inet6_fill_args { - u32 portid; - u32 seq; - int event; - unsigned int flags; - int netnsid; - int ifindex; - enum addr_type_t type; - bool force_rt_scope_universe; -}; - -enum ieee802154_filtering_level { - IEEE802154_FILTERING_NONE = 0, - IEEE802154_FILTERING_1_FCS = 1, - IEEE802154_FILTERING_2_PROMISCUOUS = 2, - IEEE802154_FILTERING_3_SCAN = 3, - IEEE802154_FILTERING_4_FRAME_FIELDS = 4, -}; - -enum nl802154_cca_modes { - __NL802154_CCA_INVALID = 0, - NL802154_CCA_ENERGY = 1, - NL802154_CCA_CARRIER = 2, - NL802154_CCA_ENERGY_CARRIER = 3, - NL802154_CCA_ALOHA = 4, - NL802154_CCA_UWB_SHR = 5, - NL802154_CCA_UWB_MULTIPLEXED = 6, - __NL802154_CCA_ATTR_AFTER_LAST = 7, - NL802154_CCA_ATTR_MAX = 6, -}; - -enum nl802154_cca_opts { - NL802154_CCA_OPT_ENERGY_CARRIER_AND = 0, - NL802154_CCA_OPT_ENERGY_CARRIER_OR = 1, - __NL802154_CCA_OPT_ATTR_AFTER_LAST = 2, - NL802154_CCA_OPT_ATTR_MAX = 1, -}; - -enum nl802154_supported_bool_states { - NL802154_SUPPORTED_BOOL_FALSE = 0, - NL802154_SUPPORTED_BOOL_TRUE = 1, - __NL802154_SUPPORTED_BOOL_INVALD = 2, - NL802154_SUPPORTED_BOOL_BOTH = 3, - __NL802154_SUPPORTED_BOOL_AFTER_LAST = 4, - NL802154_SUPPORTED_BOOL_MAX = 3, -}; - -struct wpan_phy_supported { - u32 channels[32]; - u32 cca_modes; - u32 cca_opts; - u32 iftypes; - enum nl802154_supported_bool_states lbt; - u8 min_minbe; - u8 max_minbe; - u8 min_maxbe; - u8 max_maxbe; - u8 min_csma_backoffs; - u8 max_csma_backoffs; - s8 min_frame_retries; - s8 max_frame_retries; - size_t tx_powers_size; - size_t cca_ed_levels_size; - const s32 *tx_powers; - const s32 *cca_ed_levels; -}; - -struct wpan_phy_cca { - enum nl802154_cca_modes mode; - enum nl802154_cca_opts opt; -}; - -struct wpan_phy { - const void *privid; - long unsigned int flags; - u8 current_channel; - u8 current_page; - struct wpan_phy_supported supported; - s32 transmit_power; - struct wpan_phy_cca cca; - __le64 perm_extended_addr; - s32 cca_ed_level; - u32 symbol_duration; - u16 lifs_period; - u16 sifs_period; - struct device dev; - possible_net_t _net; - spinlock_t queue_lock; - atomic_t ongoing_txs; - atomic_t hold_txs; - wait_queue_head_t sync_txq; - enum ieee802154_filtering_level filtering; - long: 0; - char priv[0]; -}; - -struct ieee802154_addr { - u8 mode; - __le16 pan_id; - union { - __le16 short_addr; - __le64 extended_addr; - }; -}; - -struct ieee802154_pan_device { - __le16 pan_id; - u8 mode; - __le16 short_addr; - __le64 extended_addr; - struct list_head node; -}; - -struct wpan_dev_header_ops { - int (*create)(struct sk_buff *, struct net_device *, const struct ieee802154_addr *, const struct ieee802154_addr *, unsigned int); -}; - -union fwnet_hwaddr { - u8 u[16]; - struct { - __be64 uniq_id; - u8 max_rec; - u8 sspd; - u8 fifo[6]; - } uc; -}; - -enum cleanup_prefix_rt_t { - CLEANUP_PREFIX_RT_NOP = 0, - CLEANUP_PREFIX_RT_DEL = 1, - CLEANUP_PREFIX_RT_EXPIRE = 2, -}; - -enum { - IPV6_SADDR_RULE_INIT = 0, - IPV6_SADDR_RULE_LOCAL = 1, - IPV6_SADDR_RULE_SCOPE = 2, - IPV6_SADDR_RULE_PREFERRED = 3, - IPV6_SADDR_RULE_OIF = 4, - IPV6_SADDR_RULE_LABEL = 5, - IPV6_SADDR_RULE_PRIVACY = 6, - IPV6_SADDR_RULE_ORCHID = 7, - IPV6_SADDR_RULE_PREFIX = 8, - IPV6_SADDR_RULE_NOT_OPTIMISTIC = 9, - IPV6_SADDR_RULE_MAX = 10, -}; - -struct ipv6_saddr_score { - int rule; - int addr_type; - struct inet6_ifaddr *ifa; - long unsigned int scorebits[1]; - int scopedist; - int matchlen; -}; - -struct ipv6_saddr_dst { - const struct in6_addr *addr; - int ifindex; - int scope; - int label; - unsigned int prefs; -}; - -struct if6_iter_state { - struct seq_net_private p; - int bucket; - int offset; -}; - -enum { - DAD_PROCESS = 0, - DAD_BEGIN = 1, - DAD_ABORT = 2, -}; - -struct nduseroptmsg { - unsigned char nduseropt_family; - unsigned char nduseropt_pad1; - short unsigned int nduseropt_opts_len; - int nduseropt_ifindex; - __u8 nduseropt_icmp_type; - __u8 nduseropt_icmp_code; - short unsigned int nduseropt_pad2; - unsigned int nduseropt_pad3; -}; - -enum { - NDUSEROPT_UNSPEC = 0, - NDUSEROPT_SRCADDR = 1, - __NDUSEROPT_MAX = 2, -}; - -struct rs_msg { - struct icmp6hdr icmph; - __u8 opt[0]; -}; - -struct ra_msg { - struct icmp6hdr icmph; - __be32 reachable_time; - __be32 retrans_timer; -}; - -typedef void ip6_icmp_send_t(struct sk_buff *, u8, u8, __u32, const struct in6_addr *, const struct inet6_skb_parm *); - -struct icmpv6_msg { - struct sk_buff *skb; - int offset; - uint8_t type; -}; - -struct icmp6_err { - int err; - int fatal; -}; - -typedef __u32 if_mask; - -struct if_set { - if_mask ifs_bits[8]; -}; - -struct mif6ctl { - mifi_t mif6c_mifi; - unsigned char mif6c_flags; - unsigned char vifc_threshold; - __u16 mif6c_pifi; - unsigned int vifc_rate_limit; -}; - -struct mf6cctl { - struct sockaddr_in6 mf6cc_origin; - struct sockaddr_in6 mf6cc_mcastgrp; - mifi_t mf6cc_parent; - struct if_set mf6cc_ifset; -}; - -struct mrt6msg { - __u8 im6_mbz; - __u8 im6_msgtype; - __u16 im6_mif; - __u32 im6_pad; - struct in6_addr im6_src; - struct in6_addr im6_dst; -}; - -enum { - IP6MRA_CREPORT_UNSPEC = 0, - IP6MRA_CREPORT_MSGTYPE = 1, - IP6MRA_CREPORT_MIF_ID = 2, - IP6MRA_CREPORT_SRC_ADDR = 3, - IP6MRA_CREPORT_DST_ADDR = 4, - IP6MRA_CREPORT_PKT = 5, - __IP6MRA_CREPORT_MAX = 6, -}; - -struct mfc6_cache_cmp_arg { - struct in6_addr mf6c_mcastgrp; - struct in6_addr mf6c_origin; -}; - -struct mfc6_cache { - struct mr_mfc _c; - union { - struct { - struct in6_addr mf6c_mcastgrp; - struct in6_addr mf6c_origin; - }; - struct mfc6_cache_cmp_arg cmparg; - }; -}; - -struct ip6mr_result { - struct mr_table *mrt; -}; - -struct compat_sioc_sg_req6 { - struct sockaddr_in6 src; - struct sockaddr_in6 grp; - compat_ulong_t pktcnt; - compat_ulong_t bytecnt; - compat_ulong_t wrong_if; -}; - -struct compat_sioc_mif_req6 { - mifi_t mifi; - compat_ulong_t icount; - compat_ulong_t ocount; - compat_ulong_t ibytes; - compat_ulong_t obytes; -}; - -struct br_input_skb_cb { - struct net_device *brdev; - u16 frag_max_size; - u8 igmp; - u8 mrouters_only: 1; - u8 proxyarp_replied: 1; - u8 src_port_isolated: 1; - u8 vlan_filtered: 1; - u8 br_netfilter_broute: 1; - u8 tx_fwd_offload: 1; - int src_hwdom; - long unsigned int fwd_hwdoms; - u32 backup_nhid; -}; - -struct nf_bridge_frag_data; - -struct calipso_map_cache_bkt { - spinlock_t lock; - u32 size; - struct list_head list; -}; - -struct calipso_map_cache_entry { - u32 hash; - unsigned char *key; - size_t key_len; - struct netlbl_lsm_cache *lsm_data; - u32 activity; - struct list_head list; -}; - -enum { - __IOAM6_IPTUNNEL_MODE_MIN = 0, - IOAM6_IPTUNNEL_MODE_INLINE = 1, - IOAM6_IPTUNNEL_MODE_ENCAP = 2, - IOAM6_IPTUNNEL_MODE_AUTO = 3, - __IOAM6_IPTUNNEL_MODE_MAX = 4, -}; - -enum { - IOAM6_IPTUNNEL_UNSPEC = 0, - IOAM6_IPTUNNEL_MODE = 1, - IOAM6_IPTUNNEL_DST = 2, - IOAM6_IPTUNNEL_TRACE = 3, - IOAM6_IPTUNNEL_FREQ_K = 4, - IOAM6_IPTUNNEL_FREQ_N = 5, - IOAM6_IPTUNNEL_SRC = 6, - __IOAM6_IPTUNNEL_MAX = 7, -}; - -struct ioam6_lwt_encap { - struct ipv6_opt_hdr eh; - u8 pad[2]; - struct ioam6_hdr ioamh; - struct ioam6_trace_hdr traceh; -}; - -struct ioam6_lwt_freq { - u32 k; - u32 n; -}; - -struct ioam6_lwt { - struct dst_entry null_dst; - struct dst_cache cache; - struct ioam6_lwt_freq freq; - atomic_t pkt_cnt; - u8 mode; - bool has_tunsrc; - struct in6_addr tunsrc; - struct in6_addr tundst; - struct ioam6_lwt_encap tuninfo; -}; - -struct trace_event_raw_devlink_hwmsg { - struct trace_entry ent; - u32 __data_loc_bus_name; - u32 __data_loc_dev_name; - u32 __data_loc_driver_name; - bool incoming; - long unsigned int type; - u32 __data_loc_buf; - size_t len; - char __data[0]; -}; - -struct trace_event_raw_devlink_hwerr { - struct trace_entry ent; - u32 __data_loc_bus_name; - u32 __data_loc_dev_name; - u32 __data_loc_driver_name; - int err; - u32 __data_loc_msg; - char __data[0]; -}; - -struct trace_event_raw_devlink_health_report { - struct trace_entry ent; - u32 __data_loc_bus_name; - u32 __data_loc_dev_name; - u32 __data_loc_driver_name; - u32 __data_loc_reporter_name; - u32 __data_loc_msg; - char __data[0]; -}; - -struct trace_event_raw_devlink_health_recover_aborted { - struct trace_entry ent; - u32 __data_loc_bus_name; - u32 __data_loc_dev_name; - u32 __data_loc_driver_name; - u32 __data_loc_reporter_name; - bool health_state; - u64 time_since_last_recover; - char __data[0]; -}; - -struct trace_event_raw_devlink_health_reporter_state_update { - struct trace_entry ent; - u32 __data_loc_bus_name; - u32 __data_loc_dev_name; - u32 __data_loc_driver_name; - u32 __data_loc_reporter_name; - u8 new_state; - char __data[0]; -}; - -struct trace_event_raw_devlink_trap_report { - struct trace_entry ent; - u32 __data_loc_bus_name; - u32 __data_loc_dev_name; - u32 __data_loc_driver_name; - u32 __data_loc_trap_name; - u32 __data_loc_trap_group_name; - char input_dev_name[16]; - char __data[0]; -}; - -struct trace_event_data_offsets_devlink_hwmsg { - u32 bus_name; - const void *bus_name_ptr_; - u32 dev_name; - const void *dev_name_ptr_; - u32 driver_name; - const void *driver_name_ptr_; - u32 buf; - const void *buf_ptr_; -}; - -struct trace_event_data_offsets_devlink_hwerr { - u32 bus_name; - const void *bus_name_ptr_; - u32 dev_name; - const void *dev_name_ptr_; - u32 driver_name; - const void *driver_name_ptr_; - u32 msg; - const void *msg_ptr_; -}; - -struct trace_event_data_offsets_devlink_health_report { - u32 bus_name; - const void *bus_name_ptr_; - u32 dev_name; - const void *dev_name_ptr_; - u32 driver_name; - const void *driver_name_ptr_; - u32 reporter_name; - const void *reporter_name_ptr_; - u32 msg; - const void *msg_ptr_; -}; - -struct trace_event_data_offsets_devlink_health_recover_aborted { - u32 bus_name; - const void *bus_name_ptr_; - u32 dev_name; - const void *dev_name_ptr_; - u32 driver_name; - const void *driver_name_ptr_; - u32 reporter_name; - const void *reporter_name_ptr_; -}; - -struct trace_event_data_offsets_devlink_health_reporter_state_update { - u32 bus_name; - const void *bus_name_ptr_; - u32 dev_name; - const void *dev_name_ptr_; - u32 driver_name; - const void *driver_name_ptr_; - u32 reporter_name; - const void *reporter_name_ptr_; -}; - -struct trace_event_data_offsets_devlink_trap_report { - u32 bus_name; - const void *bus_name_ptr_; - u32 dev_name; - const void *dev_name_ptr_; - u32 driver_name; - const void *driver_name_ptr_; - u32 trap_name; - const void *trap_name_ptr_; - u32 trap_group_name; - const void *trap_group_name_ptr_; -}; - -typedef void (*btf_trace_devlink_hwmsg)(void *, const struct devlink *, bool, long unsigned int, const u8 *, size_t); - -typedef void (*btf_trace_devlink_hwerr)(void *, const struct devlink *, int, const char *); - -typedef void (*btf_trace_devlink_health_report)(void *, const struct devlink *, const char *, const char *); - -typedef void (*btf_trace_devlink_health_recover_aborted)(void *, const struct devlink *, const char *, bool, u64); - -typedef void (*btf_trace_devlink_health_reporter_state_update)(void *, const struct devlink *, const char *, bool); - -typedef void (*btf_trace_devlink_trap_report)(void *, const struct devlink *, struct sk_buff *, const struct devlink_trap_metadata *); - -typedef void devlink_rel_notify_cb_t(struct devlink *, u32); - -typedef void devlink_rel_cleanup_cb_t(struct devlink *, u32, u32); - -struct devlink_rel { - u32 index; - refcount_t refcount; - u32 devlink_index; - struct { - u32 devlink_index; - u32 obj_index; - devlink_rel_notify_cb_t *notify_cb; - devlink_rel_cleanup_cb_t *cleanup_cb; - struct delayed_work notify_work; - } nested_in; -}; - -enum devlink_port_fn_attr_cap { - DEVLINK_PORT_FN_ATTR_CAP_ROCE_BIT = 0, - DEVLINK_PORT_FN_ATTR_CAP_MIGRATABLE_BIT = 1, - DEVLINK_PORT_FN_ATTR_CAP_IPSEC_CRYPTO_BIT = 2, - DEVLINK_PORT_FN_ATTR_CAP_IPSEC_PACKET_BIT = 3, - __DEVLINK_PORT_FN_ATTR_CAPS_MAX = 4, -}; - -enum devlink_linecard_state { - DEVLINK_LINECARD_STATE_UNSPEC = 0, - DEVLINK_LINECARD_STATE_UNPROVISIONED = 1, - DEVLINK_LINECARD_STATE_UNPROVISIONING = 2, - DEVLINK_LINECARD_STATE_PROVISIONING = 3, - DEVLINK_LINECARD_STATE_PROVISIONING_FAILED = 4, - DEVLINK_LINECARD_STATE_PROVISIONED = 5, - DEVLINK_LINECARD_STATE_ACTIVE = 6, - __DEVLINK_LINECARD_STATE_MAX = 7, - DEVLINK_LINECARD_STATE_MAX = 6, -}; - -struct devlink_linecard_ops; - -struct devlink_linecard_type; - -struct devlink_linecard { - struct list_head list; - struct devlink *devlink; - unsigned int index; - const struct devlink_linecard_ops *ops; - void *priv; - enum devlink_linecard_state state; - struct mutex state_lock; - const char *type; - struct devlink_linecard_type *types; - unsigned int types_count; - u32 rel_index; -}; - -struct devlink_linecard_ops { - int (*provision)(struct devlink_linecard *, void *, const char *, const void *, struct netlink_ext_ack *); - int (*unprovision)(struct devlink_linecard *, void *, struct netlink_ext_ack *); - bool (*same_provision)(struct devlink_linecard *, void *, const char *, const void *); - unsigned int (*types_count)(struct devlink_linecard *, void *); - void (*types_get)(struct devlink_linecard *, void *, unsigned int, const char **, const void **); -}; - -struct devlink_linecard_type { - const char *type; - const void *priv; -}; - -enum { - NLBL_MGMT_C_UNSPEC = 0, - NLBL_MGMT_C_ADD = 1, - NLBL_MGMT_C_REMOVE = 2, - NLBL_MGMT_C_LISTALL = 3, - NLBL_MGMT_C_ADDDEF = 4, - NLBL_MGMT_C_REMOVEDEF = 5, - NLBL_MGMT_C_LISTDEF = 6, - NLBL_MGMT_C_PROTOCOLS = 7, - NLBL_MGMT_C_VERSION = 8, - __NLBL_MGMT_C_MAX = 9, -}; - -enum { - NLBL_MGMT_A_UNSPEC = 0, - NLBL_MGMT_A_DOMAIN = 1, - NLBL_MGMT_A_PROTOCOL = 2, - NLBL_MGMT_A_VERSION = 3, - NLBL_MGMT_A_CV4DOI = 4, - NLBL_MGMT_A_IPV6ADDR = 5, - NLBL_MGMT_A_IPV6MASK = 6, - NLBL_MGMT_A_IPV4ADDR = 7, - NLBL_MGMT_A_IPV4MASK = 8, - NLBL_MGMT_A_ADDRSELECTOR = 9, - NLBL_MGMT_A_SELECTORLIST = 10, - NLBL_MGMT_A_FAMILY = 11, - NLBL_MGMT_A_CLPDOI = 12, - __NLBL_MGMT_A_MAX = 13, -}; - -struct netlbl_domhsh_walk_arg___2 { - struct netlink_callback *nl_cb; - struct sk_buff *skb; - u32 seq; -}; - -enum rfkill_type { - RFKILL_TYPE_ALL = 0, - RFKILL_TYPE_WLAN = 1, - RFKILL_TYPE_BLUETOOTH = 2, - RFKILL_TYPE_UWB = 3, - RFKILL_TYPE_WIMAX = 4, - RFKILL_TYPE_WWAN = 5, - RFKILL_TYPE_GPS = 6, - RFKILL_TYPE_FM = 7, - RFKILL_TYPE_NFC = 8, - NUM_RFKILL_TYPES = 9, -}; - -enum rfkill_operation { - RFKILL_OP_ADD = 0, - RFKILL_OP_DEL = 1, - RFKILL_OP_CHANGE = 2, - RFKILL_OP_CHANGE_ALL = 3, -}; - -enum rfkill_hard_block_reasons { - RFKILL_HARD_BLOCK_SIGNAL = 1, - RFKILL_HARD_BLOCK_NOT_OWNER = 2, -}; - -struct rfkill_event_ext { - __u32 idx; - __u8 type; - __u8 op; - __u8 soft; - __u8 hard; - __u8 hard_block_reasons; -} __attribute__((packed)); - -enum rfkill_user_states { - RFKILL_USER_STATE_SOFT_BLOCKED = 0, - RFKILL_USER_STATE_UNBLOCKED = 1, - RFKILL_USER_STATE_HARD_BLOCKED = 2, -}; - -struct rfkill_ops { - void (*poll)(struct rfkill *, void *); - void (*query)(struct rfkill *, void *); - int (*set_block)(void *, bool); -}; - -struct rfkill { - spinlock_t lock; - enum rfkill_type type; - long unsigned int state; - long unsigned int hard_block_reasons; - u32 idx; - bool registered; - bool persistent; - bool polling_paused; - bool suspended; - bool need_sync; - const struct rfkill_ops *ops; - void *data; - struct led_trigger led_trigger; - const char *ledtrigname; - struct device dev; - struct list_head node; - struct delayed_work poll_work; - struct work_struct uevent_work; - struct work_struct sync_work; - char name[0]; -}; - -struct rfkill_int_event { - struct list_head list; - struct rfkill_event_ext ev; -}; - -struct rfkill_data { - struct list_head list; - struct list_head events; - struct mutex mtx; - wait_queue_head_t read_wait; - bool input_handler; -}; - -struct dcbmsg { - __u8 dcb_family; - __u8 cmd; - __u16 dcb_pad; -}; - -enum dcbnl_commands { - DCB_CMD_UNDEFINED = 0, - DCB_CMD_GSTATE = 1, - DCB_CMD_SSTATE = 2, - DCB_CMD_PGTX_GCFG = 3, - DCB_CMD_PGTX_SCFG = 4, - DCB_CMD_PGRX_GCFG = 5, - DCB_CMD_PGRX_SCFG = 6, - DCB_CMD_PFC_GCFG = 7, - DCB_CMD_PFC_SCFG = 8, - DCB_CMD_SET_ALL = 9, - DCB_CMD_GPERM_HWADDR = 10, - DCB_CMD_GCAP = 11, - DCB_CMD_GNUMTCS = 12, - DCB_CMD_SNUMTCS = 13, - DCB_CMD_PFC_GSTATE = 14, - DCB_CMD_PFC_SSTATE = 15, - DCB_CMD_BCN_GCFG = 16, - DCB_CMD_BCN_SCFG = 17, - DCB_CMD_GAPP = 18, - DCB_CMD_SAPP = 19, - DCB_CMD_IEEE_SET = 20, - DCB_CMD_IEEE_GET = 21, - DCB_CMD_GDCBX = 22, - DCB_CMD_SDCBX = 23, - DCB_CMD_GFEATCFG = 24, - DCB_CMD_SFEATCFG = 25, - DCB_CMD_CEE_GET = 26, - DCB_CMD_IEEE_DEL = 27, - __DCB_CMD_ENUM_MAX = 28, - DCB_CMD_MAX = 27, -}; - -enum dcbnl_attrs { - DCB_ATTR_UNDEFINED = 0, - DCB_ATTR_IFNAME = 1, - DCB_ATTR_STATE = 2, - DCB_ATTR_PFC_STATE = 3, - DCB_ATTR_PFC_CFG = 4, - DCB_ATTR_NUM_TC = 5, - DCB_ATTR_PG_CFG = 6, - DCB_ATTR_SET_ALL = 7, - DCB_ATTR_PERM_HWADDR = 8, - DCB_ATTR_CAP = 9, - DCB_ATTR_NUMTCS = 10, - DCB_ATTR_BCN = 11, - DCB_ATTR_APP = 12, - DCB_ATTR_IEEE = 13, - DCB_ATTR_DCBX = 14, - DCB_ATTR_FEATCFG = 15, - DCB_ATTR_CEE = 16, - __DCB_ATTR_ENUM_MAX = 17, - DCB_ATTR_MAX = 16, -}; - -enum ieee_attrs { - DCB_ATTR_IEEE_UNSPEC = 0, - DCB_ATTR_IEEE_ETS = 1, - DCB_ATTR_IEEE_PFC = 2, - DCB_ATTR_IEEE_APP_TABLE = 3, - DCB_ATTR_IEEE_PEER_ETS = 4, - DCB_ATTR_IEEE_PEER_PFC = 5, - DCB_ATTR_IEEE_PEER_APP = 6, - DCB_ATTR_IEEE_MAXRATE = 7, - DCB_ATTR_IEEE_QCN = 8, - DCB_ATTR_IEEE_QCN_STATS = 9, - DCB_ATTR_DCB_BUFFER = 10, - DCB_ATTR_DCB_APP_TRUST_TABLE = 11, - DCB_ATTR_DCB_REWR_TABLE = 12, - __DCB_ATTR_IEEE_MAX = 13, -}; - -enum ieee_attrs_app { - DCB_ATTR_IEEE_APP_UNSPEC = 0, - DCB_ATTR_IEEE_APP = 1, - DCB_ATTR_DCB_APP = 2, - __DCB_ATTR_IEEE_APP_MAX = 3, -}; - -enum cee_attrs { - DCB_ATTR_CEE_UNSPEC = 0, - DCB_ATTR_CEE_PEER_PG = 1, - DCB_ATTR_CEE_PEER_PFC = 2, - DCB_ATTR_CEE_PEER_APP_TABLE = 3, - DCB_ATTR_CEE_TX_PG = 4, - DCB_ATTR_CEE_RX_PG = 5, - DCB_ATTR_CEE_PFC = 6, - DCB_ATTR_CEE_APP_TABLE = 7, - DCB_ATTR_CEE_FEAT = 8, - __DCB_ATTR_CEE_MAX = 9, -}; - -enum peer_app_attr { - DCB_ATTR_CEE_PEER_APP_UNSPEC = 0, - DCB_ATTR_CEE_PEER_APP_INFO = 1, - DCB_ATTR_CEE_PEER_APP = 2, - __DCB_ATTR_CEE_PEER_APP_MAX = 3, -}; - -enum dcbnl_pfc_up_attrs { - DCB_PFC_UP_ATTR_UNDEFINED = 0, - DCB_PFC_UP_ATTR_0 = 1, - DCB_PFC_UP_ATTR_1 = 2, - DCB_PFC_UP_ATTR_2 = 3, - DCB_PFC_UP_ATTR_3 = 4, - DCB_PFC_UP_ATTR_4 = 5, - DCB_PFC_UP_ATTR_5 = 6, - DCB_PFC_UP_ATTR_6 = 7, - DCB_PFC_UP_ATTR_7 = 8, - DCB_PFC_UP_ATTR_ALL = 9, - __DCB_PFC_UP_ATTR_ENUM_MAX = 10, - DCB_PFC_UP_ATTR_MAX = 9, -}; - -enum dcbnl_pg_attrs { - DCB_PG_ATTR_UNDEFINED = 0, - DCB_PG_ATTR_TC_0 = 1, - DCB_PG_ATTR_TC_1 = 2, - DCB_PG_ATTR_TC_2 = 3, - DCB_PG_ATTR_TC_3 = 4, - DCB_PG_ATTR_TC_4 = 5, - DCB_PG_ATTR_TC_5 = 6, - DCB_PG_ATTR_TC_6 = 7, - DCB_PG_ATTR_TC_7 = 8, - DCB_PG_ATTR_TC_MAX = 9, - DCB_PG_ATTR_TC_ALL = 10, - DCB_PG_ATTR_BW_ID_0 = 11, - DCB_PG_ATTR_BW_ID_1 = 12, - DCB_PG_ATTR_BW_ID_2 = 13, - DCB_PG_ATTR_BW_ID_3 = 14, - DCB_PG_ATTR_BW_ID_4 = 15, - DCB_PG_ATTR_BW_ID_5 = 16, - DCB_PG_ATTR_BW_ID_6 = 17, - DCB_PG_ATTR_BW_ID_7 = 18, - DCB_PG_ATTR_BW_ID_MAX = 19, - DCB_PG_ATTR_BW_ID_ALL = 20, - __DCB_PG_ATTR_ENUM_MAX = 21, - DCB_PG_ATTR_MAX = 20, -}; - -enum dcbnl_tc_attrs { - DCB_TC_ATTR_PARAM_UNDEFINED = 0, - DCB_TC_ATTR_PARAM_PGID = 1, - DCB_TC_ATTR_PARAM_UP_MAPPING = 2, - DCB_TC_ATTR_PARAM_STRICT_PRIO = 3, - DCB_TC_ATTR_PARAM_BW_PCT = 4, - DCB_TC_ATTR_PARAM_ALL = 5, - __DCB_TC_ATTR_PARAM_ENUM_MAX = 6, - DCB_TC_ATTR_PARAM_MAX = 5, -}; - -enum dcbnl_cap_attrs { - DCB_CAP_ATTR_UNDEFINED = 0, - DCB_CAP_ATTR_ALL = 1, - DCB_CAP_ATTR_PG = 2, - DCB_CAP_ATTR_PFC = 3, - DCB_CAP_ATTR_UP2TC = 4, - DCB_CAP_ATTR_PG_TCS = 5, - DCB_CAP_ATTR_PFC_TCS = 6, - DCB_CAP_ATTR_GSP = 7, - DCB_CAP_ATTR_BCN = 8, - DCB_CAP_ATTR_DCBX = 9, - __DCB_CAP_ATTR_ENUM_MAX = 10, - DCB_CAP_ATTR_MAX = 9, -}; - -enum dcbnl_numtcs_attrs { - DCB_NUMTCS_ATTR_UNDEFINED = 0, - DCB_NUMTCS_ATTR_ALL = 1, - DCB_NUMTCS_ATTR_PG = 2, - DCB_NUMTCS_ATTR_PFC = 3, - __DCB_NUMTCS_ATTR_ENUM_MAX = 4, - DCB_NUMTCS_ATTR_MAX = 3, -}; - -enum dcbnl_bcn_attrs { - DCB_BCN_ATTR_UNDEFINED = 0, - DCB_BCN_ATTR_RP_0 = 1, - DCB_BCN_ATTR_RP_1 = 2, - DCB_BCN_ATTR_RP_2 = 3, - DCB_BCN_ATTR_RP_3 = 4, - DCB_BCN_ATTR_RP_4 = 5, - DCB_BCN_ATTR_RP_5 = 6, - DCB_BCN_ATTR_RP_6 = 7, - DCB_BCN_ATTR_RP_7 = 8, - DCB_BCN_ATTR_RP_ALL = 9, - DCB_BCN_ATTR_BCNA_0 = 10, - DCB_BCN_ATTR_BCNA_1 = 11, - DCB_BCN_ATTR_ALPHA = 12, - DCB_BCN_ATTR_BETA = 13, - DCB_BCN_ATTR_GD = 14, - DCB_BCN_ATTR_GI = 15, - DCB_BCN_ATTR_TMAX = 16, - DCB_BCN_ATTR_TD = 17, - DCB_BCN_ATTR_RMIN = 18, - DCB_BCN_ATTR_W = 19, - DCB_BCN_ATTR_RD = 20, - DCB_BCN_ATTR_RU = 21, - DCB_BCN_ATTR_WRTT = 22, - DCB_BCN_ATTR_RI = 23, - DCB_BCN_ATTR_C = 24, - DCB_BCN_ATTR_ALL = 25, - __DCB_BCN_ATTR_ENUM_MAX = 26, - DCB_BCN_ATTR_MAX = 25, -}; - -enum dcb_general_attr_values { - DCB_ATTR_VALUE_UNDEFINED = 255, -}; - -enum dcbnl_app_attrs { - DCB_APP_ATTR_UNDEFINED = 0, - DCB_APP_ATTR_IDTYPE = 1, - DCB_APP_ATTR_ID = 2, - DCB_APP_ATTR_PRIORITY = 3, - __DCB_APP_ATTR_ENUM_MAX = 4, - DCB_APP_ATTR_MAX = 3, -}; - -enum dcbnl_featcfg_attrs { - DCB_FEATCFG_ATTR_UNDEFINED = 0, - DCB_FEATCFG_ATTR_ALL = 1, - DCB_FEATCFG_ATTR_PG = 2, - DCB_FEATCFG_ATTR_PFC = 3, - DCB_FEATCFG_ATTR_APP = 4, - __DCB_FEATCFG_ATTR_ENUM_MAX = 5, - DCB_FEATCFG_ATTR_MAX = 4, -}; - -struct dcb_app_type { - int ifindex; - struct dcb_app app; - struct list_head list; - u8 dcbx; -}; - -struct dcb_rewr_prio_pcp_map { - u16 map[8]; -}; - -struct dcb_ieee_app_prio_map { - u64 map[8]; -}; - -struct dcb_ieee_app_dscp_map { - u8 map[64]; -}; - -enum dcbevent_notif_type { - DCB_APP_EVENT = 1, -}; - -struct reply_func { - int type; - int (*cb)(struct net_device *, struct nlmsghdr *, u32, struct nlattr **, struct sk_buff *); -}; - -enum { - ncsi_dev_state_registered = 0, - ncsi_dev_state_functional = 256, - ncsi_dev_state_probe = 512, - ncsi_dev_state_config = 768, - ncsi_dev_state_suspend = 1024, -}; - -enum { - NCSI_CAP_GENERIC_HWA = 1, - NCSI_CAP_GENERIC_HDS = 2, - NCSI_CAP_GENERIC_FC = 4, - NCSI_CAP_GENERIC_FC1 = 8, - NCSI_CAP_GENERIC_MC = 16, - NCSI_CAP_GENERIC_HWA_UNKNOWN = 0, - NCSI_CAP_GENERIC_HWA_SUPPORT = 32, - NCSI_CAP_GENERIC_HWA_NOT_SUPPORT = 64, - NCSI_CAP_GENERIC_HWA_RESERVED = 96, - NCSI_CAP_GENERIC_HWA_MASK = 96, - NCSI_CAP_GENERIC_MASK = 127, - NCSI_CAP_BC_ARP = 1, - NCSI_CAP_BC_DHCPC = 2, - NCSI_CAP_BC_DHCPS = 4, - NCSI_CAP_BC_NETBIOS = 8, - NCSI_CAP_BC_MASK = 15, - NCSI_CAP_MC_IPV6_NEIGHBOR = 1, - NCSI_CAP_MC_IPV6_ROUTER = 2, - NCSI_CAP_MC_DHCPV6_RELAY = 4, - NCSI_CAP_MC_DHCPV6_WELL_KNOWN = 8, - NCSI_CAP_MC_IPV6_MLD = 16, - NCSI_CAP_MC_IPV6_NEIGHBOR_S = 32, - NCSI_CAP_MC_MASK = 63, - NCSI_CAP_AEN_LSC = 1, - NCSI_CAP_AEN_CR = 2, - NCSI_CAP_AEN_HDS = 4, - NCSI_CAP_AEN_MASK = 7, - NCSI_CAP_VLAN_ONLY = 1, - NCSI_CAP_VLAN_NO = 2, - NCSI_CAP_VLAN_ANY = 4, - NCSI_CAP_VLAN_MASK = 7, -}; - -enum { - MLX_MC_RBT_SUPPORT = 1, - MLX_MC_RBT_AVL = 8, -}; - -enum { - ncsi_dev_state_major = 65280, - ncsi_dev_state_minor = 255, - ncsi_dev_state_probe_deselect = 513, - ncsi_dev_state_probe_package = 514, - ncsi_dev_state_probe_channel = 515, - ncsi_dev_state_probe_mlx_gma = 516, - ncsi_dev_state_probe_mlx_smaf = 517, - ncsi_dev_state_probe_cis = 518, - ncsi_dev_state_probe_keep_phy = 519, - ncsi_dev_state_probe_gvi = 520, - ncsi_dev_state_probe_gc = 521, - ncsi_dev_state_probe_gls = 522, - ncsi_dev_state_probe_dp = 523, - ncsi_dev_state_config_sp = 769, - ncsi_dev_state_config_cis = 770, - ncsi_dev_state_config_oem_gma = 771, - ncsi_dev_state_config_apply_mac = 772, - ncsi_dev_state_config_clear_vids = 773, - ncsi_dev_state_config_svf = 774, - ncsi_dev_state_config_ev = 775, - ncsi_dev_state_config_sma = 776, - ncsi_dev_state_config_ebf = 777, - ncsi_dev_state_config_dgmf = 778, - ncsi_dev_state_config_ecnt = 779, - ncsi_dev_state_config_ec = 780, - ncsi_dev_state_config_ae = 781, - ncsi_dev_state_config_gls = 782, - ncsi_dev_state_config_done = 783, - ncsi_dev_state_suspend_select = 1025, - ncsi_dev_state_suspend_gls = 1026, - ncsi_dev_state_suspend_dcnt = 1027, - ncsi_dev_state_suspend_dc = 1028, - ncsi_dev_state_suspend_deselect = 1029, - ncsi_dev_state_suspend_done = 1030, -}; - -struct vlan_vid { - struct list_head list; - __be16 proto; - u16 vid; -}; - -struct ncsi_oem_gma_handler { - unsigned int mfr_id; - int (*handler)(struct ncsi_cmd_arg *); -}; - -struct mptcp_info { - __u8 mptcpi_subflows; - __u8 mptcpi_add_addr_signal; - __u8 mptcpi_add_addr_accepted; - __u8 mptcpi_subflows_max; - __u8 mptcpi_add_addr_signal_max; - __u8 mptcpi_add_addr_accepted_max; - __u32 mptcpi_flags; - __u32 mptcpi_token; - __u64 mptcpi_write_seq; - __u64 mptcpi_snd_una; - __u64 mptcpi_rcv_nxt; - __u8 mptcpi_local_addr_used; - __u8 mptcpi_local_addr_max; - __u8 mptcpi_csum_enabled; - __u32 mptcpi_retransmits; - __u64 mptcpi_bytes_retrans; - __u64 mptcpi_bytes_sent; - __u64 mptcpi_bytes_received; - __u64 mptcpi_bytes_acked; - __u8 mptcpi_subflows_total; - __u8 reserved[3]; - __u32 mptcpi_last_data_sent; - __u32 mptcpi_last_data_recv; - __u32 mptcpi_last_ack_recv; -}; - -struct mptcp_subflow_data { - __u32 size_subflow_data; - __u32 num_subflows; - __u32 size_kernel; - __u32 size_user; -}; - -struct mptcp_subflow_addrs { - union { - __kernel_sa_family_t sa_family; - struct sockaddr sa_local; - struct sockaddr_in sin_local; - struct sockaddr_in6 sin6_local; - struct __kernel_sockaddr_storage ss_local; - }; - union { - struct sockaddr sa_remote; - struct sockaddr_in sin_remote; - struct sockaddr_in6 sin6_remote; - struct __kernel_sockaddr_storage ss_remote; - }; -}; - -struct mptcp_subflow_info { - __u32 id; - struct mptcp_subflow_addrs addrs; -}; - -struct mptcp_full_info { - __u32 size_tcpinfo_kernel; - __u32 size_tcpinfo_user; - __u32 size_sfinfo_kernel; - __u32 size_sfinfo_user; - __u32 num_subflows; - __u32 size_arrays_user; - __u64 subflow_info; - __u64 tcp_info; - struct mptcp_info mptcp_info; -}; - -struct tcp_info { - __u8 tcpi_state; - __u8 tcpi_ca_state; - __u8 tcpi_retransmits; - __u8 tcpi_probes; - __u8 tcpi_backoff; - __u8 tcpi_options; - __u8 tcpi_snd_wscale: 4; - __u8 tcpi_rcv_wscale: 4; - __u8 tcpi_delivery_rate_app_limited: 1; - __u8 tcpi_fastopen_client_fail: 2; - __u32 tcpi_rto; - __u32 tcpi_ato; - __u32 tcpi_snd_mss; - __u32 tcpi_rcv_mss; - __u32 tcpi_unacked; - __u32 tcpi_sacked; - __u32 tcpi_lost; - __u32 tcpi_retrans; - __u32 tcpi_fackets; - __u32 tcpi_last_data_sent; - __u32 tcpi_last_ack_sent; - __u32 tcpi_last_data_recv; - __u32 tcpi_last_ack_recv; - __u32 tcpi_pmtu; - __u32 tcpi_rcv_ssthresh; - __u32 tcpi_rtt; - __u32 tcpi_rttvar; - __u32 tcpi_snd_ssthresh; - __u32 tcpi_snd_cwnd; - __u32 tcpi_advmss; - __u32 tcpi_reordering; - __u32 tcpi_rcv_rtt; - __u32 tcpi_rcv_space; - __u32 tcpi_total_retrans; - __u64 tcpi_pacing_rate; - __u64 tcpi_max_pacing_rate; - __u64 tcpi_bytes_acked; - __u64 tcpi_bytes_received; - __u32 tcpi_segs_out; - __u32 tcpi_segs_in; - __u32 tcpi_notsent_bytes; - __u32 tcpi_min_rtt; - __u32 tcpi_data_segs_in; - __u32 tcpi_data_segs_out; - __u64 tcpi_delivery_rate; - __u64 tcpi_busy_time; - __u64 tcpi_rwnd_limited; - __u64 tcpi_sndbuf_limited; - __u32 tcpi_delivered; - __u32 tcpi_delivered_ce; - __u64 tcpi_bytes_sent; - __u64 tcpi_bytes_retrans; - __u32 tcpi_dsack_dups; - __u32 tcpi_reord_seen; - __u32 tcpi_rcv_ooopack; - __u32 tcpi_snd_wnd; - __u32 tcpi_rcv_wnd; - __u32 tcpi_rehash; - __u16 tcpi_total_rto; - __u16 tcpi_total_rto_recoveries; - __u32 tcpi_total_rto_time; -}; - -struct pm_nl_pernet { - spinlock_t lock; - struct list_head local_addr_list; - unsigned int addrs; - unsigned int stale_loss_cnt; - unsigned int add_addr_signal_max; - unsigned int add_addr_accept_max; - unsigned int local_addr_max; - unsigned int subflows_max; - unsigned int next_id; - long unsigned int id_bitmap[4]; -}; - -enum { - IFLA_MCTP_UNSPEC = 0, - IFLA_MCTP_NET = 1, - IFLA_MCTP_PHYS_BINDING = 2, - __IFLA_MCTP_MAX = 3, -}; - -struct mctp_dump_cb { - long unsigned int ifindex; - size_t a_idx; -}; - -enum { - HANDSHAKE_CMD_READY = 1, - HANDSHAKE_CMD_ACCEPT = 2, - HANDSHAKE_CMD_DONE = 3, - __HANDSHAKE_CMD_MAX = 4, - HANDSHAKE_CMD_MAX = 3, -}; - -enum { - HANDSHAKE_NLGRP_NONE = 0, - HANDSHAKE_NLGRP_TLSHD = 1, -}; - -struct trace_event_raw_handshake_event_class { - struct trace_entry ent; - const void *req; - const void *sk; - unsigned int netns_ino; - char __data[0]; -}; - -struct trace_event_raw_handshake_fd_class { - struct trace_entry ent; - const void *req; - const void *sk; - int fd; - unsigned int netns_ino; - char __data[0]; -}; - -struct trace_event_raw_handshake_error_class { - struct trace_entry ent; - const void *req; - const void *sk; - int err; - unsigned int netns_ino; - char __data[0]; -}; - -struct trace_event_raw_handshake_alert_class { - struct trace_entry ent; - __u8 saddr[28]; - __u8 daddr[28]; - unsigned int netns_ino; - long unsigned int level; - long unsigned int description; - char __data[0]; -}; - -struct trace_event_raw_handshake_complete { - struct trace_entry ent; - const void *req; - const void *sk; - int status; - unsigned int netns_ino; - char __data[0]; -}; - -struct trace_event_raw_tls_contenttype { - struct trace_entry ent; - __u8 saddr[28]; - __u8 daddr[28]; - unsigned int netns_ino; - long unsigned int type; - char __data[0]; -}; - -struct trace_event_data_offsets_handshake_event_class {}; - -struct trace_event_data_offsets_handshake_fd_class {}; - -struct trace_event_data_offsets_handshake_error_class {}; - -struct trace_event_data_offsets_handshake_alert_class {}; - -struct trace_event_data_offsets_handshake_complete {}; - -struct trace_event_data_offsets_tls_contenttype {}; - -typedef void (*btf_trace_handshake_submit)(void *, const struct net *, const struct handshake_req *, const struct sock *); - -typedef void (*btf_trace_handshake_submit_err)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); - -typedef void (*btf_trace_handshake_cancel)(void *, const struct net *, const struct handshake_req *, const struct sock *); - -typedef void (*btf_trace_handshake_cancel_none)(void *, const struct net *, const struct handshake_req *, const struct sock *); - -typedef void (*btf_trace_handshake_cancel_busy)(void *, const struct net *, const struct handshake_req *, const struct sock *); - -typedef void (*btf_trace_handshake_destruct)(void *, const struct net *, const struct handshake_req *, const struct sock *); - -typedef void (*btf_trace_handshake_complete)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); - -typedef void (*btf_trace_handshake_notify_err)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); - -typedef void (*btf_trace_handshake_cmd_accept)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); - -typedef void (*btf_trace_handshake_cmd_accept_err)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); - -typedef void (*btf_trace_handshake_cmd_done)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); - -typedef void (*btf_trace_handshake_cmd_done_err)(void *, const struct net *, const struct handshake_req *, const struct sock *, int); - -typedef void (*btf_trace_tls_contenttype)(void *, const struct sock *, unsigned char); - -typedef void (*btf_trace_tls_alert_send)(void *, const struct sock *, unsigned char, unsigned char); - -typedef void (*btf_trace_tls_alert_recv)(void *, const struct sock *, unsigned char, unsigned char); - -struct sys_info_name { - long unsigned int bit; - const char *name; -}; - -enum { - st_wordstart = 0, - st_wordcmp = 1, - st_wordskip = 2, - st_bufcpy = 3, -}; - -enum { - st_wordstart___2 = 0, - st_wordcmp___2 = 1, - st_wordskip___2 = 2, -}; - -enum reg_type { - REG_TYPE_RM = 0, - REG_TYPE_REG = 1, - REG_TYPE_INDEX = 2, - REG_TYPE_BASE = 3, -}; - -struct preempt_notifier; - -struct preempt_ops { - void (*sched_in)(struct preempt_notifier *, int); - void (*sched_out)(struct preempt_notifier *, struct task_struct *); -}; - -struct preempt_notifier { - struct hlist_node link; - struct preempt_ops *ops; -}; - -struct kvm_regs { - __u64 rax; - __u64 rbx; - __u64 rcx; - __u64 rdx; - __u64 rsi; - __u64 rdi; - __u64 rsp; - __u64 rbp; - __u64 r8; - __u64 r9; - __u64 r10; - __u64 r11; - __u64 r12; - __u64 r13; - __u64 r14; - __u64 r15; - __u64 rip; - __u64 rflags; -}; - -struct kvm_segment { - __u64 base; - __u32 limit; - __u16 selector; - __u8 type; - __u8 present; - __u8 dpl; - __u8 db; - __u8 s; - __u8 l; - __u8 g; - __u8 avl; - __u8 unusable; - __u8 padding; -}; - -struct kvm_dtable { - __u64 base; - __u16 limit; - __u16 padding[3]; -}; - -struct kvm_sregs { - struct kvm_segment cs; - struct kvm_segment ds; - struct kvm_segment es; - struct kvm_segment fs; - struct kvm_segment gs; - struct kvm_segment ss; - struct kvm_segment tr; - struct kvm_segment ldt; - struct kvm_dtable gdt; - struct kvm_dtable idt; - __u64 cr0; - __u64 cr2; - __u64 cr3; - __u64 cr4; - __u64 cr8; - __u64 efer; - __u64 apic_base; - __u64 interrupt_bitmap[4]; -}; - -struct kvm_cpuid_entry2 { - __u32 function; - __u32 index; - __u32 flags; - __u32 eax; - __u32 ebx; - __u32 ecx; - __u32 edx; - __u32 padding[3]; -}; - -struct kvm_debug_exit_arch { - __u32 exception; - __u32 pad; - __u64 pc; - __u64 dr6; - __u64 dr7; -}; - -struct kvm_vcpu_events { - struct { - __u8 injected; - __u8 nr; - __u8 has_error_code; - __u8 pending; - __u32 error_code; - } exception; - struct { - __u8 injected; - __u8 nr; - __u8 soft; - __u8 shadow; - } interrupt; - struct { - __u8 injected; - __u8 pending; - __u8 masked; - __u8 pad; - } nmi; - __u32 sipi_vector; - __u32 flags; - struct { - __u8 smm; - __u8 pending; - __u8 smm_inside_nmi; - __u8 latched_init; - } smi; - struct { - __u8 pending; - } triple_fault; - __u8 reserved[26]; - __u8 exception_has_payload; - __u64 exception_payload; -}; - -struct kvm_sync_regs { - struct kvm_regs regs; - struct kvm_sregs sregs; - struct kvm_vcpu_events events; -}; - -struct kvm_vmx_nested_state_data { - __u8 vmcs12[4096]; - __u8 shadow_vmcs12[4096]; -}; - -struct kvm_vmx_nested_state_hdr { - __u64 vmxon_pa; - __u64 vmcs12_pa; - struct { - __u16 flags; - } smm; - __u16 pad; - __u32 flags; - __u64 preemption_timer_deadline; -}; - -struct kvm_svm_nested_state_data { - __u8 vmcb12[4096]; -}; - -struct kvm_svm_nested_state_hdr { - __u64 vmcb_pa; -}; - -struct kvm_nested_state { - __u16 flags; - __u16 format; - __u32 size; - union { - struct kvm_vmx_nested_state_hdr vmx; - struct kvm_svm_nested_state_hdr svm; - __u8 pad[120]; - } hdr; - union { - struct { - struct {} __empty_vmx; - struct kvm_vmx_nested_state_data vmx[0]; - }; - struct { - struct {} __empty_svm; - struct kvm_svm_nested_state_data svm[0]; - }; - } data; -}; - -struct kvm_xen_hvm_config { - __u32 flags; - __u32 msr; - __u64 blob_addr_32; - __u64 blob_addr_64; - __u8 blob_size_32; - __u8 blob_size_64; - __u8 pad2[30]; -}; - -struct kvm_hyperv_exit { - __u32 type; - __u32 pad1; - union { - struct { - __u32 msr; - __u32 pad2; - __u64 control; - __u64 evt_page; - __u64 msg_page; - } synic; - struct { - __u64 input; - __u64 result; - __u64 params[2]; - } hcall; - struct { - __u32 msr; - __u32 pad2; - __u64 control; - __u64 status; - __u64 send_page; - __u64 recv_page; - __u64 pending_page; - } syndbg; - } u; -}; - -struct kvm_xen_exit { - __u32 type; - union { - struct { - __u32 longmode; - __u32 cpl; - __u64 input; - __u64 result; - __u64 params[6]; - } hcall; - } u; -}; - -struct kvm_run { - __u8 request_interrupt_window; - __u8 immediate_exit__unsafe; - __u8 padding1[6]; - __u32 exit_reason; - __u8 ready_for_interrupt_injection; - __u8 if_flag; - __u16 flags; - __u64 cr8; - __u64 apic_base; - union { - struct { - __u64 hardware_exit_reason; - } hw; - struct { - __u64 hardware_entry_failure_reason; - __u32 cpu; - } fail_entry; - struct { - __u32 exception; - __u32 error_code; - } ex; - struct { - __u8 direction; - __u8 size; - __u16 port; - __u32 count; - __u64 data_offset; - } io; - struct { - struct kvm_debug_exit_arch arch; - } debug; - struct { - __u64 phys_addr; - __u8 data[8]; - __u32 len; - __u8 is_write; - } mmio; - struct { - __u64 phys_addr; - __u8 data[8]; - __u32 len; - __u8 is_write; - } iocsr_io; - struct { - __u64 nr; - __u64 args[6]; - __u64 ret; - union { - __u64 flags; - }; - } hypercall; - struct { - __u64 rip; - __u32 is_write; - __u32 pad; - } tpr_access; - struct { - __u8 icptcode; - __u16 ipa; - __u32 ipb; - } s390_sieic; - __u64 s390_reset_flags; - struct { - __u64 trans_exc_code; - __u32 pgm_code; - } s390_ucontrol; - struct { - __u32 dcrn; - __u32 data; - __u8 is_write; - } dcr; - struct { - __u32 suberror; - __u32 ndata; - __u64 data[16]; - } internal; - struct { - __u32 suberror; - __u32 ndata; - __u64 flags; - union { - struct { - __u8 insn_size; - __u8 insn_bytes[15]; - }; - }; - } emulation_failure; - struct { - __u64 gprs[32]; - } osi; - struct { - __u64 nr; - __u64 ret; - __u64 args[9]; - } papr_hcall; - struct { - __u16 subchannel_id; - __u16 subchannel_nr; - __u32 io_int_parm; - __u32 io_int_word; - __u32 ipb; - __u8 dequeued; - } s390_tsch; - struct { - __u32 epr; - } epr; - struct { - __u32 type; - __u32 ndata; - union { - __u64 data[16]; - }; - } system_event; - struct { - __u64 addr; - __u8 ar; - __u8 reserved; - __u8 fc; - __u8 sel1; - __u16 sel2; - } s390_stsi; - struct { - __u8 vector; - } eoi; - struct kvm_hyperv_exit hyperv; - struct { - __u64 esr_iss; - __u64 fault_ipa; - } arm_nisv; - struct { - __u8 error; - __u8 pad[7]; - __u32 reason; - __u32 index; - __u64 data; - } msr; - struct kvm_xen_exit xen; - struct { - long unsigned int extension_id; - long unsigned int function_id; - long unsigned int args[6]; - long unsigned int ret[2]; - } riscv_sbi; - struct { - long unsigned int csr_num; - long unsigned int new_value; - long unsigned int write_mask; - long unsigned int ret_value; - } riscv_csr; - struct { - __u32 flags; - } notify; - struct { - __u64 flags; - __u64 gpa; - __u64 size; - } memory_fault; - struct { - __u64 flags; - __u64 nr; - union { - struct { - __u64 ret; - __u64 data[5]; - } unknown; - struct { - __u64 ret; - __u64 gpa; - __u64 size; - } get_quote; - struct { - __u64 ret; - __u64 leaf; - __u64 r11; - __u64 r12; - __u64 r13; - __u64 r14; - } get_tdvmcall_info; - struct { - __u64 ret; - __u64 vector; - } setup_event_notify; - }; - } tdx; - char padding[256]; - }; - __u64 kvm_valid_regs; - __u64 kvm_dirty_regs; - union { - struct kvm_sync_regs regs; - char padding[2048]; - } s; -}; - -struct kvm_coalesced_mmio { - __u64 phys_addr; - __u32 len; - union { - __u32 pad; - __u32 pio; - }; - __u8 data[8]; -}; - -struct kvm_coalesced_mmio_ring { - __u32 first; - __u32 last; - struct kvm_coalesced_mmio coalesced_mmio[0]; -}; - -struct kvm_enc_region { - __u64 addr; - __u64 size; -}; - -struct kvm_dirty_gfn { - __u32 flags; - __u32 slot; - __u64 offset; -}; - -struct kvm_stats_desc { - __u32 flags; - __s16 exponent; - __u16 size; - __u32 offset; - __u32 bucket_size; - char name[0]; -}; - -typedef long unsigned int gva_t; - -typedef u64 gpa_t; - -typedef u64 gfn_t; - -typedef u64 hpa_t; - -typedef u64 hfn_t; - -typedef hfn_t kvm_pfn_t; - -struct kvm_memory_slot; - -struct gfn_to_hva_cache { - u64 generation; - gpa_t gpa; - long unsigned int hva; - long unsigned int len; - struct kvm_memory_slot *memslot; -}; - -struct kvm_rmap_head; - -struct kvm_lpage_info; - -struct kvm_arch_memory_slot { - struct kvm_rmap_head *rmap[3]; - struct kvm_lpage_info *lpage_info[2]; - short unsigned int *gfn_write_track; -}; - -struct kvm_memory_slot { - struct hlist_node id_node[2]; - struct interval_tree_node hva_node[2]; - struct rb_node gfn_node[2]; - gfn_t base_gfn; - long unsigned int npages; - long unsigned int *dirty_bitmap; - struct kvm_arch_memory_slot arch; - long unsigned int userspace_addr; - u32 flags; - short int id; - u16 as_id; - struct { - struct file *file; - long unsigned int pgoff; - } gmem; -}; - -struct kvm; - -struct gfn_to_pfn_cache { - u64 generation; - gpa_t gpa; - long unsigned int uhva; - struct kvm_memory_slot *memslot; - struct kvm *kvm; - struct list_head list; - rwlock_t lock; - struct mutex refresh_lock; - void *khva; - kvm_pfn_t pfn; - bool active; - bool valid; -}; - -struct kvm_memslots { - u64 generation; - atomic_long_t last_used_slot; - struct rb_root_cached hva_tree; - struct rb_root gfn_tree; - struct hlist_head id_hash[128]; - int node_idx; -}; - -struct kvm_vm_stat_generic { - u64 remote_tlb_flush; - u64 remote_tlb_flush_requests; -}; - -struct kvm_vm_stat { - struct kvm_vm_stat_generic generic; - u64 mmu_shadow_zapped; - u64 mmu_pte_write; - u64 mmu_pde_zapped; - u64 mmu_flooded; - u64 mmu_recycled; - u64 mmu_cache_miss; - u64 mmu_unsync; - union { - struct { - atomic64_t pages_4k; - atomic64_t pages_2m; - atomic64_t pages_1g; - }; - atomic64_t pages[3]; - }; - u64 nx_lpage_splits; - u64 max_mmu_page_hash_collisions; - u64 max_mmu_rmap_size; -}; - -struct kvm_page_track_notifier_head { - struct srcu_struct track_srcu; - struct hlist_head track_notifier_list; -}; - -struct kvm_pic; - -struct kvm_ioapic; - -struct kvm_pit; - -enum hv_tsc_page_status { - HV_TSC_PAGE_UNSET = 0, - HV_TSC_PAGE_GUEST_CHANGED = 1, - HV_TSC_PAGE_HOST_CHANGED = 2, - HV_TSC_PAGE_SET = 3, - HV_TSC_PAGE_BROKEN = 4, -}; - -struct ms_hyperv_tsc_page { - volatile u32 tsc_sequence; - u32 reserved1; - volatile u64 tsc_scale; - volatile s64 tsc_offset; -}; - -struct kvm_hv_syndbg { - struct { - u64 control; - u64 status; - u64 send_page; - u64 recv_page; - u64 pending_page; - } control; - u64 options; -}; - -struct kvm_hv { - struct mutex hv_lock; - u64 hv_guest_os_id; - u64 hv_hypercall; - u64 hv_tsc_page; - enum hv_tsc_page_status hv_tsc_page_status; - u64 hv_crash_param[5]; - u64 hv_crash_ctl; - struct ms_hyperv_tsc_page tsc_ref; - struct idr conn_to_evt; - u64 hv_reenlightenment_control; - u64 hv_tsc_emulation_control; - u64 hv_tsc_emulation_status; - u64 hv_invtsc_control; - atomic_t num_mismatched_vp_indexes; - unsigned int synic_auto_eoi_used; - struct kvm_hv_syndbg hv_syndbg; - bool xsaves_xsavec_checked; -}; - -struct kvm_xen { - struct mutex xen_lock; - u32 xen_version; - bool long_mode; - bool runstate_update_flag; - u8 upcall_vector; - struct gfn_to_pfn_cache shinfo_cache; - struct idr evtchn_ports; - long unsigned int poll_mask[64]; - struct kvm_xen_hvm_config hvm_config; -}; - -enum kvm_irqchip_mode { - KVM_IRQCHIP_NONE = 0, - KVM_IRQCHIP_KERNEL = 1, - KVM_IRQCHIP_SPLIT = 2, -}; - -struct once { - atomic_t state; - struct mutex lock; -}; - -struct kvm_mmu_memory_cache { - gfp_t gfp_zero; - gfp_t gfp_custom; - u64 init_value; - struct kmem_cache *kmem_cache; - int capacity; - int nobjs; - void **objects; -}; - -struct kvm_apic_map; - -struct kvm_x86_msr_filter; - -struct kvm_x86_pmu_event_filter; - -struct vhost_task; - -struct hv_partition_assist_pg; - -struct kvm_arch { - long unsigned int n_used_mmu_pages; - long unsigned int n_requested_mmu_pages; - long unsigned int n_max_mmu_pages; - unsigned int indirect_shadow_pages; - u8 mmu_valid_gen; - u8 vm_type; - bool has_private_mem; - bool has_protected_state; - bool pre_fault_allowed; - struct hlist_head *mmu_page_hash; - struct list_head active_mmu_pages; - struct list_head possible_nx_huge_pages; - struct kvm_page_track_notifier_head track_notifier_head; - spinlock_t mmu_unsync_pages_lock; - u64 shadow_mmio_value; - atomic_t noncoherent_dma_count; - long unsigned int nr_possible_bypass_irqs; - struct kvm_pic *vpic; - struct kvm_ioapic *vioapic; - struct kvm_pit *vpit; - atomic_t vapics_in_nmi_mode; - struct mutex apic_map_lock; - struct kvm_apic_map *apic_map; - atomic_t apic_map_dirty; - bool apic_access_memslot_enabled; - bool apic_access_memslot_inhibited; - struct rw_semaphore apicv_update_lock; - long unsigned int apicv_inhibit_reasons; - gpa_t wall_clock; - u64 disabled_exits; - s64 kvmclock_offset; - raw_spinlock_t tsc_write_lock; - u64 last_tsc_nsec; - u64 last_tsc_write; - u32 last_tsc_khz; - u64 last_tsc_offset; - u64 cur_tsc_nsec; - u64 cur_tsc_write; - u64 cur_tsc_offset; - u64 cur_tsc_generation; - int nr_vcpus_matched_tsc; - u32 default_tsc_khz; - bool user_set_tsc; - u64 apic_bus_cycle_ns; - seqcount_raw_spinlock_t pvclock_sc; - bool use_master_clock; - u64 master_kernel_ns; - u64 master_cycle_now; - struct delayed_work kvmclock_update_work; - struct delayed_work kvmclock_sync_work; - struct kvm_hv hyperv; - struct kvm_xen xen; - bool backwards_tsc_observed; - bool boot_vcpu_runs_old_kvmclock; - u32 bsp_vcpu_id; - u64 disabled_quirks; - enum kvm_irqchip_mode irqchip_mode; - u8 nr_reserved_ioapic_pins; - bool disabled_lapic_found; - bool x2apic_format; - bool x2apic_broadcast_quirk_disabled; - bool has_mapped_host_mmio; - bool guest_can_read_msr_platform_info; - bool exception_payload_enabled; - bool triple_fault_event; - bool bus_lock_detection_enabled; - bool enable_pmu; - u32 notify_window; - u32 notify_vmexit_flags; - bool exit_on_emulation_error; - u32 user_space_msr_mask; - struct kvm_x86_msr_filter *msr_filter; - u32 hypercall_exit_enabled; - bool sgx_provisioning_allowed; - struct kvm_x86_pmu_event_filter *pmu_event_filter; - struct vhost_task *nx_huge_page_recovery_thread; - u64 nx_huge_page_last; - struct once nx_once; - struct list_head tdp_mmu_roots; - spinlock_t tdp_mmu_pages_lock; - bool shadow_root_allocated; - bool external_write_tracking_enabled; - hpa_t hv_root_tdp; - spinlock_t hv_root_tdp_lock; - struct hv_partition_assist_pg *hv_pa_pg; - u32 max_vcpu_ids; - bool disable_nx_huge_pages; - struct kvm_mmu_memory_cache split_shadow_page_cache; - struct kvm_mmu_memory_cache split_page_header_cache; - struct kvm_mmu_memory_cache split_desc_cache; - gfn_t gfn_direct_bits; - int cpu_dirty_log_size; -}; - -struct kvm_io_bus; - -struct kvm_irq_routing_table; - -struct kvm_stat_data; - -struct kvm { - rwlock_t mmu_lock; - struct mutex slots_lock; - struct mutex slots_arch_lock; - struct mm_struct *mm; - long unsigned int nr_memslot_pages; - struct kvm_memslots __memslots[4]; - struct kvm_memslots *memslots[2]; - struct xarray vcpu_array; - atomic_t nr_memslots_dirty_logging; - spinlock_t mn_invalidate_lock; - long unsigned int mn_active_invalidate_count; - struct rcuwait mn_memslots_update_rcuwait; - spinlock_t gpc_lock; - struct list_head gpc_list; - atomic_t online_vcpus; - int max_vcpus; - int created_vcpus; - int last_boosted_vcpu; - struct list_head vm_list; - struct mutex lock; - struct kvm_io_bus *buses[5]; - struct { - spinlock_t lock; - struct list_head items; - struct list_head resampler_list; - struct mutex resampler_lock; - } irqfds; - struct list_head ioeventfds; - struct kvm_vm_stat stat; - struct kvm_arch arch; - refcount_t users_count; - struct kvm_coalesced_mmio_ring *coalesced_mmio_ring; - spinlock_t ring_lock; - struct list_head coalesced_zones; - struct mutex irq_lock; - struct kvm_irq_routing_table *irq_routing; - struct hlist_head irq_ack_notifier_list; - struct mmu_notifier mmu_notifier; - long unsigned int mmu_invalidate_seq; - long int mmu_invalidate_in_progress; - gfn_t mmu_invalidate_range_start; - gfn_t mmu_invalidate_range_end; - struct list_head devices; - u64 manual_dirty_log_protect; - struct dentry *debugfs_dentry; - struct kvm_stat_data **debugfs_stat_data; - struct srcu_struct srcu; - struct srcu_struct irq_srcu; - pid_t userspace_pid; - bool override_halt_poll_ns; - unsigned int max_halt_poll_ns; - u32 dirty_ring_size; - bool dirty_ring_with_bitmap; - bool vm_bugged; - bool vm_dead; - struct notifier_block pm_notifier; - struct xarray mem_attr_array; - char stats_id[48]; -}; - -struct kvm_vcpu_stat_generic { - u64 halt_successful_poll; - u64 halt_attempted_poll; - u64 halt_poll_invalid; - u64 halt_wakeup; - u64 halt_poll_success_ns; - u64 halt_poll_fail_ns; - u64 halt_wait_ns; - u64 halt_poll_success_hist[32]; - u64 halt_poll_fail_hist[32]; - u64 halt_wait_hist[32]; - u64 blocking; -}; - -union cpuid35_eax { - struct { - unsigned int leaf0: 1; - unsigned int cntr_subleaf: 1; - unsigned int acr_subleaf: 1; - unsigned int events_subleaf: 1; - unsigned int reserved: 28; - } split; - unsigned int full; -}; - -union cpuid35_ebx { - struct { - unsigned int umask2: 1; - unsigned int eq: 1; - unsigned int reserved: 30; - } split; - unsigned int full; -}; - -struct perf_pmu_format_hybrid_attr { - struct device_attribute attr; - u64 pmu_type; -}; - -union hv_stimer_config { - u64 as_uint64; - struct { - u64 enable: 1; - u64 periodic: 1; - u64 lazy: 1; - u64 auto_enable: 1; - u64 apic_vector: 8; - u64 direct_mode: 1; - u64 reserved_z0: 3; - u64 sintx: 4; - u64 reserved_z1: 44; - }; -}; - -union hv_port_id { - u32 asu32; - struct { - u32 id: 24; - u32 reserved: 8; - } u; -}; - -union hv_message_flags { - u8 asu8; - struct { - u8 msg_pending: 1; - u8 reserved: 7; - }; -}; - -struct hv_message_header { - u32 message_type; - u8 payload_size; - union hv_message_flags message_flags; - u8 reserved[2]; - union { - u64 sender; - union hv_port_id port; - }; -}; - -struct hv_message { - struct hv_message_header header; - union { - u64 payload[30]; - } u; -}; - -struct hv_partition_assist_pg { - u32 tlb_lock_count; -}; - -enum kvm_reg { - VCPU_REGS_RAX = 0, - VCPU_REGS_RCX = 1, - VCPU_REGS_RDX = 2, - VCPU_REGS_RBX = 3, - VCPU_REGS_RSP = 4, - VCPU_REGS_RBP = 5, - VCPU_REGS_RSI = 6, - VCPU_REGS_RDI = 7, - VCPU_REGS_R8 = 8, - VCPU_REGS_R9 = 9, - VCPU_REGS_R10 = 10, - VCPU_REGS_R11 = 11, - VCPU_REGS_R12 = 12, - VCPU_REGS_R13 = 13, - VCPU_REGS_R14 = 14, - VCPU_REGS_R15 = 15, - VCPU_REGS_RIP = 16, - NR_VCPU_REGS = 17, - VCPU_EXREG_PDPTR = 17, - VCPU_EXREG_CR0 = 18, - VCPU_EXREG_CR3 = 19, - VCPU_EXREG_CR4 = 20, - VCPU_EXREG_RFLAGS = 21, - VCPU_EXREG_SEGMENTS = 22, - VCPU_EXREG_EXIT_INFO_1 = 23, - VCPU_EXREG_EXIT_INFO_2 = 24, -}; - -enum exit_fastpath_completion { - EXIT_FASTPATH_NONE = 0, - EXIT_FASTPATH_REENTER_GUEST = 1, - EXIT_FASTPATH_EXIT_HANDLED = 2, - EXIT_FASTPATH_EXIT_USERSPACE = 3, -}; - -union kvm_mmu_page_role { - u32 word; - struct { - unsigned int level: 4; - unsigned int has_4_byte_gpte: 1; - unsigned int quadrant: 2; - unsigned int direct: 1; - unsigned int access: 3; - unsigned int invalid: 1; - unsigned int efer_nx: 1; - unsigned int cr0_wp: 1; - unsigned int smep_andnot_wp: 1; - unsigned int smap_andnot_wp: 1; - unsigned int ad_disabled: 1; - unsigned int guest_mode: 1; - unsigned int passthrough: 1; - unsigned int is_mirror: 1; - char: 4; - unsigned int smm: 8; - }; -}; - -union kvm_mmu_extended_role { - u32 word; - struct { - unsigned int valid: 1; - unsigned int execonly: 1; - unsigned int cr4_pse: 1; - unsigned int cr4_pke: 1; - unsigned int cr4_smap: 1; - unsigned int cr4_smep: 1; - unsigned int cr4_la57: 1; - unsigned int efer_lma: 1; - }; -}; - -union kvm_cpu_role { - u64 as_u64; - struct { - union kvm_mmu_page_role base; - union kvm_mmu_extended_role ext; - }; -}; - -struct kvm_rmap_head { - atomic_long_t val; -}; - -struct kvm_pio_request { - long unsigned int count; - int in; - int port; - int size; -}; - -struct rsvd_bits_validate { - u64 rsvd_bits_mask[10]; - u64 bad_mt_xwr; -}; - -struct kvm_mmu_root_info { - gpa_t pgd; - hpa_t hpa; -}; - -struct kvm_page_fault; - -struct x86_exception; - -struct kvm_mmu_page; - -struct kvm_vcpu; - -struct kvm_mmu { - long unsigned int (*get_guest_pgd)(struct kvm_vcpu *); - u64 (*get_pdptr)(struct kvm_vcpu *, int); - int (*page_fault)(struct kvm_vcpu *, struct kvm_page_fault *); - void (*inject_page_fault)(struct kvm_vcpu *, struct x86_exception *); - gpa_t (*gva_to_gpa)(struct kvm_vcpu *, struct kvm_mmu *, gpa_t, u64, struct x86_exception *); - int (*sync_spte)(struct kvm_vcpu *, struct kvm_mmu_page *, int); - struct kvm_mmu_root_info root; - hpa_t mirror_root_hpa; - union kvm_cpu_role cpu_role; - union kvm_mmu_page_role root_role; - u32 pkru_mask; - struct kvm_mmu_root_info prev_roots[3]; - u8 permissions[16]; - u64 *pae_root; - u64 *pml4_root; - u64 *pml5_root; - struct rsvd_bits_validate shadow_zero_check; - struct rsvd_bits_validate guest_rsvd_check; - u64 pdptrs[4]; -}; - -struct kvm_mmio_fragment { - gpa_t gpa; - void *data; - unsigned int len; -}; - -struct kvm_lapic; - -struct kvm_queued_exception { - bool pending; - bool injected; - bool has_error_code; - u8 vector; - u32 error_code; - long unsigned int payload; - bool has_payload; -}; - -struct kvm_queued_interrupt { - bool injected; - bool soft; - u8 nr; -}; - -struct x86_emulate_ctxt; - -struct kvm_mtrr { - u64 var[16]; - u64 fixed_64k; - u64 fixed_16k[2]; - u64 fixed_4k[8]; - u64 deftype; -}; - -enum pmc_type { - KVM_PMC_GP = 0, - KVM_PMC_FIXED = 1, -}; - -struct kvm_pmc { - enum pmc_type type; - u8 idx; - bool is_paused; - bool intr; - u64 counter; - u64 emulated_counter; - u64 eventsel; - struct perf_event *perf_event; - struct kvm_vcpu *vcpu; - u64 current_config; -}; - -struct kvm_pmu { - u8 version; - unsigned int nr_arch_gp_counters; - unsigned int nr_arch_fixed_counters; - unsigned int available_event_types; - u64 fixed_ctr_ctrl; - u64 fixed_ctr_ctrl_rsvd; - u64 global_ctrl; - u64 global_status; - u64 counter_bitmask[2]; - u64 global_ctrl_rsvd; - u64 global_status_rsvd; - u64 reserved_bits; - u64 raw_event_mask; - struct kvm_pmc gp_counters[8]; - struct kvm_pmc fixed_counters[3]; - union { - long unsigned int reprogram_pmi[1]; - atomic64_t __reprogram_pmi; - }; - long unsigned int all_valid_pmc_idx[1]; - long unsigned int pmc_in_use[1]; - u64 ds_area; - u64 pebs_enable; - u64 pebs_enable_rsvd; - u64 pebs_data_cfg; - u64 pebs_data_cfg_rsvd; - u64 host_cross_mapped_mask; - bool need_cleanup; - u8 event_count; -}; - -struct kvm_hypervisor_cpuid { - u32 base; - u32 limit; -}; - -struct kvm_vcpu_xen { - u64 hypercall_rip; - u32 current_runstate; - u8 upcall_vector; - struct gfn_to_pfn_cache vcpu_info_cache; - struct gfn_to_pfn_cache vcpu_time_info_cache; - struct gfn_to_pfn_cache runstate_cache; - struct gfn_to_pfn_cache runstate2_cache; - u64 last_steal; - u64 runstate_entry_time; - u64 runstate_times[4]; - long unsigned int evtchn_pending_sel; - u32 vcpu_id; - u32 timer_virq; - u64 timer_expires; - atomic_t timer_pending; - struct hrtimer timer; - int poll_evtchn; - struct timer_list poll_timer; - struct kvm_hypervisor_cpuid cpuid; -}; - -struct kvm_vcpu_hv; - -struct kvm_vcpu_arch { - long unsigned int regs[17]; - u32 regs_avail; - u32 regs_dirty; - long unsigned int cr0; - long unsigned int cr0_guest_owned_bits; - long unsigned int cr2; - long unsigned int cr3; - long unsigned int cr4; - long unsigned int cr4_guest_owned_bits; - long unsigned int cr4_guest_rsvd_bits; - long unsigned int cr8; - u32 host_pkru; - u32 pkru; - u32 hflags; - u64 efer; - u64 host_debugctl; - u64 apic_base; - struct kvm_lapic *apic; - bool load_eoi_exitmap_pending; - long unsigned int ioapic_handled_vectors[4]; - long unsigned int apic_attention; - int32_t apic_arb_prio; - int mp_state; - u64 ia32_misc_enable_msr; - u64 smbase; - u64 smi_count; - bool at_instruction_boundary; - bool tpr_access_reporting; - bool xfd_no_write_intercept; - u64 ia32_xss; - u64 microcode_version; - u64 arch_capabilities; - u64 perf_capabilities; - struct kvm_mmu *mmu; - struct kvm_mmu root_mmu; - struct kvm_mmu guest_mmu; - struct kvm_mmu nested_mmu; - struct kvm_mmu *walk_mmu; - struct kvm_mmu_memory_cache mmu_pte_list_desc_cache; - struct kvm_mmu_memory_cache mmu_shadow_page_cache; - struct kvm_mmu_memory_cache mmu_shadowed_info_cache; - struct kvm_mmu_memory_cache mmu_page_header_cache; - struct kvm_mmu_memory_cache mmu_external_spt_cache; - struct fpu_guest guest_fpu; - u64 xcr0; - u64 guest_supported_xcr0; - struct kvm_pio_request pio; - void *pio_data; - void *sev_pio_data; - unsigned int sev_pio_count; - u8 event_exit_inst_len; - bool exception_from_userspace; - struct kvm_queued_exception exception; - struct kvm_queued_exception exception_vmexit; - struct kvm_queued_interrupt interrupt; - int halt_request; - int cpuid_nent; - struct kvm_cpuid_entry2 *cpuid_entries; - bool cpuid_dynamic_bits_dirty; - bool is_amd_compatible; - u32 cpu_caps[29]; - u64 reserved_gpa_bits; - int maxphyaddr; - struct x86_emulate_ctxt *emulate_ctxt; - bool emulate_regs_need_sync_to_vcpu; - bool emulate_regs_need_sync_from_vcpu; - int (*complete_userspace_io)(struct kvm_vcpu *); - long unsigned int cui_linear_rip; - int cui_rdmsr_imm_reg; - gpa_t time; - s8 pvclock_tsc_shift; - u32 pvclock_tsc_mul; - unsigned int hw_tsc_khz; - struct gfn_to_pfn_cache pv_time; - bool pvclock_set_guest_stopped_request; - struct { - u8 preempted; - u64 msr_val; - u64 last_steal; - struct gfn_to_hva_cache cache; - } st; - u64 l1_tsc_offset; - u64 tsc_offset; - u64 last_guest_tsc; - u64 last_host_tsc; - u64 tsc_offset_adjustment; - u64 this_tsc_nsec; - u64 this_tsc_write; - u64 this_tsc_generation; - bool tsc_catchup; - bool tsc_always_catchup; - s8 virtual_tsc_shift; - u32 virtual_tsc_mult; - u32 virtual_tsc_khz; - s64 ia32_tsc_adjust_msr; - u64 msr_ia32_power_ctl; - u64 l1_tsc_scaling_ratio; - u64 tsc_scaling_ratio; - atomic_t nmi_queued; - unsigned int nmi_pending; - bool nmi_injected; - bool smi_pending; - u8 handling_intr_from_guest; - struct kvm_mtrr mtrr_state; - u64 pat; - unsigned int switch_db_regs; - long unsigned int db[4]; - long unsigned int dr6; - long unsigned int dr7; - long unsigned int eff_db[4]; - long unsigned int guest_debug_dr7; - u64 msr_platform_info; - u64 msr_misc_features_enables; - u64 mcg_cap; - u64 mcg_status; - u64 mcg_ctl; - u64 mcg_ext_ctl; - u64 *mce_banks; - u64 *mci_ctl2_banks; - u64 mmio_gva; - unsigned int mmio_access; - gfn_t mmio_gfn; - u64 mmio_gen; - struct kvm_pmu pmu; - long unsigned int singlestep_rip; - bool hyperv_enabled; - struct kvm_vcpu_hv *hyperv; - struct kvm_vcpu_xen xen; - cpumask_var_t wbinvd_dirty_mask; - long unsigned int last_retry_eip; - long unsigned int last_retry_addr; - struct { - bool halted; - gfn_t gfns[64]; - struct gfn_to_hva_cache data; - u64 msr_en_val; - u64 msr_int_val; - u16 vec; - u32 id; - u32 host_apf_flags; - bool send_always; - bool delivery_as_pf_vmexit; - bool pageready_pending; - } apf; - struct { - u64 length; - u64 status; - } osvw; - struct { - u64 msr_val; - struct gfn_to_hva_cache data; - } pv_eoi; - u64 msr_kvm_poll_control; - struct { - bool pv_unhalted; - } pv; - int pending_ioapic_eoi; - int pending_external_vector; - int highest_stale_pending_ioapic_eoi; - bool preempted_in_kernel; - bool l1tf_flush_l1d; - int last_vmentry_cpu; - u64 msr_hwcr; - struct { - u32 features; - bool enforce; - } pv_cpuid; - bool guest_state_protected; - bool guest_tsc_protected; - bool pdptrs_from_userspace; - hpa_t hv_root_tdp; -}; - -struct kvm_vcpu_stat { - struct kvm_vcpu_stat_generic generic; - u64 pf_taken; - u64 pf_fixed; - u64 pf_emulate; - u64 pf_spurious; - u64 pf_fast; - u64 pf_mmio_spte_created; - u64 pf_guest; - u64 tlb_flush; - u64 invlpg; - u64 exits; - u64 io_exits; - u64 mmio_exits; - u64 signal_exits; - u64 irq_window_exits; - u64 nmi_window_exits; - u64 l1d_flush; - u64 halt_exits; - u64 request_irq_exits; - u64 irq_exits; - u64 host_state_reload; - u64 fpu_reload; - u64 insn_emulation; - u64 insn_emulation_fail; - u64 hypercalls; - u64 irq_injections; - u64 nmi_injections; - u64 req_event; - u64 nested_run; - u64 directed_yield_attempted; - u64 directed_yield_successful; - u64 preemption_reported; - u64 preemption_other; - u64 guest_mode; - u64 notify_window_exits; -}; - -struct kvm_dirty_ring { - u32 dirty_index; - u32 reset_index; - u32 size; - u32 soft_limit; - struct kvm_dirty_gfn *dirty_gfns; - int index; -}; - -struct kvm_vcpu { - struct kvm *kvm; - struct preempt_notifier preempt_notifier; - int cpu; - int vcpu_id; - int vcpu_idx; - int ____srcu_idx; - int mode; - u64 requests; - long unsigned int guest_debug; - struct mutex mutex; - struct kvm_run *run; - struct rcuwait wait; - struct pid *pid; - rwlock_t pid_lock; - int sigset_active; - sigset_t sigset; - unsigned int halt_poll_ns; - bool valid_wakeup; - int mmio_needed; - int mmio_read_completed; - int mmio_is_write; - int mmio_cur_fragment; - int mmio_nr_fragments; - struct kvm_mmio_fragment mmio_fragments[2]; - struct { - u32 queued; - struct list_head queue; - struct list_head done; - spinlock_t lock; - } async_pf; - struct { - bool in_spin_loop; - bool dy_eligible; - } spin_loop; - bool wants_to_run; - bool preempted; - bool ready; - bool scheduled_out; - struct kvm_vcpu_arch arch; - struct kvm_vcpu_stat stat; - char stats_id[48]; - struct kvm_dirty_ring dirty_ring; - struct kvm_memory_slot *last_used_slot; - u64 last_used_slot_gen; -}; - -struct kvm_vcpu_hv_stimer { - struct hrtimer timer; - int index; - union hv_stimer_config config; - u64 count; - u64 exp_time; - struct hv_message msg; - bool msg_pending; -}; - -struct kvm_vcpu_hv_synic { - u64 version; - u64 control; - u64 msg_page; - u64 evt_page; - atomic64_t sint[16]; - atomic_t sint_to_gsi[16]; - long unsigned int auto_eoi_bitmap[4]; - long unsigned int vec_bitmap[4]; - bool active; - bool dont_zero_synic_pages; -}; - -enum hv_tlb_flush_fifos { - HV_L1_TLB_FLUSH_FIFO = 0, - HV_L2_TLB_FLUSH_FIFO = 1, - HV_NR_TLB_FLUSH_FIFOS = 2, -}; - -struct kvm_vcpu_hv_tlb_flush_fifo { - spinlock_t write_lock; - struct { - union { - struct __kfifo kfifo; - u64 *type; - const u64 *const_type; - char (*rectype)[0]; - u64 *ptr; - const u64 *ptr_const; - }; - u64 buf[16]; - } entries; -}; - -struct kvm_vcpu_hv { - struct kvm_vcpu *vcpu; - u32 vp_index; - u64 hv_vapic; - s64 runtime_offset; - struct kvm_vcpu_hv_synic synic; - struct kvm_hyperv_exit exit; - struct kvm_vcpu_hv_stimer stimer[4]; - long unsigned int stimer_pending_bitmap[1]; - bool enforce_cpuid; - struct { - u32 features_eax; - u32 features_ebx; - u32 features_edx; - u32 enlightenments_eax; - u32 enlightenments_ebx; - u32 syndbg_cap_eax; - u32 nested_eax; - u32 nested_ebx; - } cpuid_cache; - struct kvm_vcpu_hv_tlb_flush_fifo tlb_flush_fifo[2]; - u64 sparse_banks[64]; - long unsigned int vcpu_mask[64]; - struct hv_vp_assist_page vp_assist_page; - struct { - u64 pa_page_gpa; - u64 vm_id; - u32 vp_id; - } nested; -}; - -enum kvm_only_cpuid_leafs { - CPUID_12_EAX = 22, - CPUID_7_1_EDX = 23, - CPUID_8000_0007_EDX = 24, - CPUID_8000_0022_EAX = 25, - CPUID_7_2_EDX = 26, - CPUID_24_0_EBX = 27, - CPUID_8000_0021_ECX = 28, - NR_KVM_CPU_CAPS = 29, - NKVMCAPINTS = 7, -}; - -struct kvm_lpage_info { - int disallow_lpage; -}; - -enum kvm_apic_logical_mode { - KVM_APIC_MODE_SW_DISABLED = 0, - KVM_APIC_MODE_XAPIC_CLUSTER = 1, - KVM_APIC_MODE_XAPIC_FLAT = 2, - KVM_APIC_MODE_X2APIC = 3, - KVM_APIC_MODE_MAP_DISABLED = 4, -}; - -struct kvm_apic_map { - struct callback_head rcu; - enum kvm_apic_logical_mode logical_mode; - u32 max_apic_id; - union { - struct kvm_lapic *xapic_flat_map[8]; - struct kvm_lapic *xapic_cluster_map[64]; - }; - struct kvm_lapic *phys_map[0]; -}; - -struct msr_bitmap_range { - u32 flags; - u32 nmsrs; - u32 base; - long unsigned int *bitmap; -}; - -struct kvm_x86_msr_filter { - u8 count; - bool default_allow: 1; - struct msr_bitmap_range ranges[16]; -}; - -struct kvm_x86_pmu_event_filter { - __u32 action; - __u32 nevents; - __u32 fixed_counter_bitmap; - __u32 flags; - __u32 nr_includes; - __u32 nr_excludes; - __u64 *includes; - __u64 *excludes; - __u64 events[0]; -}; - -struct msr_data { - bool host_initiated; - u32 index; - u64 data; -}; - -struct x86_instruction_info; - -enum x86_intercept_stage; - -struct kvm_kernel_irqfd; - -union kvm_smram; - -struct kvm_x86_nested_ops; - -struct kvm_x86_ops { - const char *name; - int (*check_processor_compatibility)(void); - int (*enable_virtualization_cpu)(void); - void (*disable_virtualization_cpu)(void); - cpu_emergency_virt_cb *emergency_disable_virtualization_cpu; - void (*hardware_unsetup)(void); - bool (*has_emulated_msr)(struct kvm *, u32); - void (*vcpu_after_set_cpuid)(struct kvm_vcpu *); - unsigned int vm_size; - int (*vm_init)(struct kvm *); - void (*vm_destroy)(struct kvm *); - void (*vm_pre_destroy)(struct kvm *); - int (*vcpu_precreate)(struct kvm *); - int (*vcpu_create)(struct kvm_vcpu *); - void (*vcpu_free)(struct kvm_vcpu *); - void (*vcpu_reset)(struct kvm_vcpu *, bool); - void (*prepare_switch_to_guest)(struct kvm_vcpu *); - void (*vcpu_load)(struct kvm_vcpu *, int); - void (*vcpu_put)(struct kvm_vcpu *); - const u64 HOST_OWNED_DEBUGCTL; - void (*update_exception_bitmap)(struct kvm_vcpu *); - int (*get_msr)(struct kvm_vcpu *, struct msr_data *); - int (*set_msr)(struct kvm_vcpu *, struct msr_data *); - u64 (*get_segment_base)(struct kvm_vcpu *, int); - void (*get_segment)(struct kvm_vcpu *, struct kvm_segment *, int); - int (*get_cpl)(struct kvm_vcpu *); - int (*get_cpl_no_cache)(struct kvm_vcpu *); - void (*set_segment)(struct kvm_vcpu *, struct kvm_segment *, int); - void (*get_cs_db_l_bits)(struct kvm_vcpu *, int *, int *); - bool (*is_valid_cr0)(struct kvm_vcpu *, long unsigned int); - void (*set_cr0)(struct kvm_vcpu *, long unsigned int); - void (*post_set_cr3)(struct kvm_vcpu *, long unsigned int); - bool (*is_valid_cr4)(struct kvm_vcpu *, long unsigned int); - void (*set_cr4)(struct kvm_vcpu *, long unsigned int); - int (*set_efer)(struct kvm_vcpu *, u64); - void (*get_idt)(struct kvm_vcpu *, struct desc_ptr *); - void (*set_idt)(struct kvm_vcpu *, struct desc_ptr *); - void (*get_gdt)(struct kvm_vcpu *, struct desc_ptr *); - void (*set_gdt)(struct kvm_vcpu *, struct desc_ptr *); - void (*sync_dirty_debug_regs)(struct kvm_vcpu *); - void (*set_dr7)(struct kvm_vcpu *, long unsigned int); - void (*cache_reg)(struct kvm_vcpu *, enum kvm_reg); - long unsigned int (*get_rflags)(struct kvm_vcpu *); - void (*set_rflags)(struct kvm_vcpu *, long unsigned int); - bool (*get_if_flag)(struct kvm_vcpu *); - void (*flush_tlb_all)(struct kvm_vcpu *); - void (*flush_tlb_current)(struct kvm_vcpu *); - int (*flush_remote_tlbs)(struct kvm *); - int (*flush_remote_tlbs_range)(struct kvm *, gfn_t, gfn_t); - void (*flush_tlb_gva)(struct kvm_vcpu *, gva_t); - void (*flush_tlb_guest)(struct kvm_vcpu *); - int (*vcpu_pre_run)(struct kvm_vcpu *); - enum exit_fastpath_completion (*vcpu_run)(struct kvm_vcpu *, u64); - int (*handle_exit)(struct kvm_vcpu *, enum exit_fastpath_completion); - int (*skip_emulated_instruction)(struct kvm_vcpu *); - void (*update_emulated_instruction)(struct kvm_vcpu *); - void (*set_interrupt_shadow)(struct kvm_vcpu *, int); - u32 (*get_interrupt_shadow)(struct kvm_vcpu *); - void (*patch_hypercall)(struct kvm_vcpu *, unsigned char *); - void (*inject_irq)(struct kvm_vcpu *, bool); - void (*inject_nmi)(struct kvm_vcpu *); - void (*inject_exception)(struct kvm_vcpu *); - void (*cancel_injection)(struct kvm_vcpu *); - int (*interrupt_allowed)(struct kvm_vcpu *, bool); - int (*nmi_allowed)(struct kvm_vcpu *, bool); - bool (*get_nmi_mask)(struct kvm_vcpu *); - void (*set_nmi_mask)(struct kvm_vcpu *, bool); - bool (*is_vnmi_pending)(struct kvm_vcpu *); - bool (*set_vnmi_pending)(struct kvm_vcpu *); - void (*enable_nmi_window)(struct kvm_vcpu *); - void (*enable_irq_window)(struct kvm_vcpu *); - void (*update_cr8_intercept)(struct kvm_vcpu *, int, int); - const bool x2apic_icr_is_split; - const long unsigned int required_apicv_inhibits; - bool allow_apicv_in_x2apic_without_x2apic_virtualization; - void (*refresh_apicv_exec_ctrl)(struct kvm_vcpu *); - void (*hwapic_isr_update)(struct kvm_vcpu *, int); - void (*load_eoi_exitmap)(struct kvm_vcpu *, u64 *); - void (*set_virtual_apic_mode)(struct kvm_vcpu *); - void (*set_apic_access_page_addr)(struct kvm_vcpu *); - void (*deliver_interrupt)(struct kvm_lapic *, int, int, int); - int (*sync_pir_to_irr)(struct kvm_vcpu *); - int (*set_tss_addr)(struct kvm *, unsigned int); - int (*set_identity_map_addr)(struct kvm *, u64); - u8 (*get_mt_mask)(struct kvm_vcpu *, gfn_t, bool); - void (*load_mmu_pgd)(struct kvm_vcpu *, hpa_t, int); - int (*link_external_spt)(struct kvm *, gfn_t, enum pg_level, void *); - int (*set_external_spte)(struct kvm *, gfn_t, enum pg_level, kvm_pfn_t); - int (*free_external_spt)(struct kvm *, gfn_t, enum pg_level, void *); - int (*remove_external_spte)(struct kvm *, gfn_t, enum pg_level, kvm_pfn_t); - bool (*has_wbinvd_exit)(void); - u64 (*get_l2_tsc_offset)(struct kvm_vcpu *); - u64 (*get_l2_tsc_multiplier)(struct kvm_vcpu *); - void (*write_tsc_offset)(struct kvm_vcpu *); - void (*write_tsc_multiplier)(struct kvm_vcpu *); - void (*get_exit_info)(struct kvm_vcpu *, u32 *, u64 *, u64 *, u32 *, u32 *); - void (*get_entry_info)(struct kvm_vcpu *, u32 *, u32 *); - int (*check_intercept)(struct kvm_vcpu *, struct x86_instruction_info *, enum x86_intercept_stage, struct x86_exception *); - void (*handle_exit_irqoff)(struct kvm_vcpu *); - void (*update_cpu_dirty_logging)(struct kvm_vcpu *); - const struct kvm_x86_nested_ops *nested_ops; - void (*vcpu_blocking)(struct kvm_vcpu *); - void (*vcpu_unblocking)(struct kvm_vcpu *); - int (*pi_update_irte)(struct kvm_kernel_irqfd *, struct kvm *, unsigned int, uint32_t, struct kvm_vcpu *, u32); - void (*pi_start_bypass)(struct kvm *); - void (*apicv_pre_state_restore)(struct kvm_vcpu *); - void (*apicv_post_state_restore)(struct kvm_vcpu *); - bool (*dy_apicv_has_pending_interrupt)(struct kvm_vcpu *); - bool (*protected_apic_has_interrupt)(struct kvm_vcpu *); - int (*set_hv_timer)(struct kvm_vcpu *, u64, bool *); - void (*cancel_hv_timer)(struct kvm_vcpu *); - void (*setup_mce)(struct kvm_vcpu *); - int (*smi_allowed)(struct kvm_vcpu *, bool); - int (*enter_smm)(struct kvm_vcpu *, union kvm_smram *); - int (*leave_smm)(struct kvm_vcpu *, const union kvm_smram *); - void (*enable_smi_window)(struct kvm_vcpu *); - int (*dev_get_attr)(u32, u64, u64 *); - int (*mem_enc_ioctl)(struct kvm *, void *); - int (*vcpu_mem_enc_ioctl)(struct kvm_vcpu *, void *); - int (*mem_enc_register_region)(struct kvm *, struct kvm_enc_region *); - int (*mem_enc_unregister_region)(struct kvm *, struct kvm_enc_region *); - int (*vm_copy_enc_context_from)(struct kvm *, unsigned int); - int (*vm_move_enc_context_from)(struct kvm *, unsigned int); - void (*guest_memory_reclaimed)(struct kvm *); - int (*get_feature_msr)(u32, u64 *); - int (*check_emulate_instruction)(struct kvm_vcpu *, int, void *, int); - bool (*apic_init_signal_blocked)(struct kvm_vcpu *); - int (*enable_l2_tlb_flush)(struct kvm_vcpu *); - void (*migrate_timers)(struct kvm_vcpu *); - void (*recalc_msr_intercepts)(struct kvm_vcpu *); - int (*complete_emulated_msr)(struct kvm_vcpu *, int); - void (*vcpu_deliver_sipi_vector)(struct kvm_vcpu *, u8); - long unsigned int (*vcpu_get_apicv_inhibit_reasons)(struct kvm_vcpu *); - gva_t (*get_untagged_addr)(struct kvm_vcpu *, gva_t, unsigned int); - void * (*alloc_apic_backing_page)(struct kvm_vcpu *); - int (*gmem_prepare)(struct kvm *, kvm_pfn_t, gfn_t, int); - void (*gmem_invalidate)(kvm_pfn_t, kvm_pfn_t); - int (*private_max_mapping_level)(struct kvm *, kvm_pfn_t); -}; - -struct kvm_x86_nested_ops { - void (*leave_nested)(struct kvm_vcpu *); - bool (*is_exception_vmexit)(struct kvm_vcpu *, u8, u32); - int (*check_events)(struct kvm_vcpu *); - bool (*has_events)(struct kvm_vcpu *, bool); - void (*triple_fault)(struct kvm_vcpu *); - int (*get_state)(struct kvm_vcpu *, struct kvm_nested_state *, unsigned int); - int (*set_state)(struct kvm_vcpu *, struct kvm_nested_state *, struct kvm_nested_state *); - bool (*get_nested_state_pages)(struct kvm_vcpu *); - int (*write_log_dirty)(struct kvm_vcpu *, gpa_t); - int (*enable_evmcs)(struct kvm_vcpu *, uint16_t *); - uint16_t (*get_evmcs_version)(struct kvm_vcpu *); - void (*hv_inject_synthetic_vmexit_post_tlb_flush)(struct kvm_vcpu *); -}; - -struct kvm_io_device; - -struct kvm_io_range { - gpa_t addr; - int len; - struct kvm_io_device *dev; -}; - -struct kvm_io_bus { - int dev_count; - int ioeventfd_count; - struct kvm_io_range range[0]; -}; - -enum kvm_bus { - KVM_MMIO_BUS = 0, - KVM_PIO_BUS = 1, - KVM_VIRTIO_CCW_NOTIFY_BUS = 2, - KVM_FAST_MMIO_BUS = 3, - KVM_IOCSR_BUS = 4, - KVM_NR_BUSES = 5, -}; - -struct kvm_irq_routing_table { - int chip[72]; - u32 nr_rt_entries; - struct hlist_head map[0]; -}; - -enum kvm_stat_kind { - KVM_STAT_VM = 0, - KVM_STAT_VCPU = 1, -}; - -struct _kvm_stats_desc; - -struct kvm_stat_data { - struct kvm *kvm; - const struct _kvm_stats_desc *desc; - enum kvm_stat_kind kind; -}; - -struct _kvm_stats_desc { - struct kvm_stats_desc desc; - char name[48]; -}; - -enum intel_native_id { - INTEL_ATOM_CMT_NATIVE_ID = 2, - INTEL_ATOM_SKT_NATIVE_ID = 3, -}; - -enum pt_capabilities { - PT_CAP_max_subleaf = 0, - PT_CAP_cr3_filtering = 1, - PT_CAP_psb_cyc = 2, - PT_CAP_ip_filtering = 3, - PT_CAP_mtc = 4, - PT_CAP_ptwrite = 5, - PT_CAP_power_event_trace = 6, - PT_CAP_event_trace = 7, - PT_CAP_tnt_disable = 8, - PT_CAP_topa_output = 9, - PT_CAP_topa_multiple_entries = 10, - PT_CAP_single_range_output = 11, - PT_CAP_output_subsys = 12, - PT_CAP_payloads_lip = 13, - PT_CAP_num_address_ranges = 14, - PT_CAP_mtc_periods = 15, - PT_CAP_cycle_thresholds = 16, - PT_CAP_psb_periods = 17, -}; - -struct topa_entry { - u64 end: 1; - u64 rsvd0: 1; - u64 intr: 1; - u64 rsvd1: 1; - u64 stop: 1; - u64 rsvd2: 1; - u64 size: 4; - u64 rsvd3: 2; - u64 base: 40; - u64 rsvd4: 12; -}; - -struct pt_pmu { - struct pmu pmu; - u32 caps[8]; - bool vmx; - bool branch_en_always_on; - long unsigned int max_nonturbo_ratio; - unsigned int tsc_art_num; - unsigned int tsc_art_den; -}; - -struct topa; - -struct pt_buffer { - struct list_head tables; - struct topa *first; - struct topa *last; - struct topa *cur; - unsigned int cur_idx; - size_t output_off; - long unsigned int nr_pages; - local_t data_size; - local64_t head; - bool snapshot; - bool single; - bool wrapped; - long int stop_pos; - long int intr_pos; - struct topa_entry *stop_te; - struct topa_entry *intr_te; - void **data_pages; -}; - -struct topa { - struct list_head list; - u64 offset; - size_t size; - int last; - unsigned int z_count; -}; - -struct pt_filter { - long unsigned int msr_a; - long unsigned int msr_b; - long unsigned int config; -}; - -struct pt_filters { - struct pt_filter filter[4]; - unsigned int nr_filters; -}; - -struct pt { - struct perf_output_handle handle; - struct pt_filters filters; - int handle_nmi; - int vmx_on; - int pause_allowed; - int resume_allowed; - u64 output_base; - u64 output_mask; -}; - -struct pt_cap_desc { - const char *name; - u32 leaf; - u8 reg; - u32 mask; -}; - -struct pt_address_range { - long unsigned int msr_a; - long unsigned int msr_b; - unsigned int reg_off; -}; - -struct topa_page { - struct topa_entry table[507]; - struct topa topa; -}; - -enum { - SNBEP_PCI_QPI_PORT0_FILTER = 0, - SNBEP_PCI_QPI_PORT1_FILTER = 1, - BDX_PCI_QPI_PORT2_FILTER = 2, -}; - -enum { - SNBEP_PCI_UNCORE_HA = 0, - SNBEP_PCI_UNCORE_IMC = 1, - SNBEP_PCI_UNCORE_QPI = 2, - SNBEP_PCI_UNCORE_R2PCIE = 3, - SNBEP_PCI_UNCORE_R3QPI = 4, -}; - -enum { - IVBEP_PCI_UNCORE_HA = 0, - IVBEP_PCI_UNCORE_IMC = 1, - IVBEP_PCI_UNCORE_IRP = 2, - IVBEP_PCI_UNCORE_QPI = 3, - IVBEP_PCI_UNCORE_R2PCIE = 4, - IVBEP_PCI_UNCORE_R3QPI = 5, -}; - -enum { - KNL_PCI_UNCORE_MC_UCLK = 0, - KNL_PCI_UNCORE_MC_DCLK = 1, - KNL_PCI_UNCORE_EDC_UCLK = 2, - KNL_PCI_UNCORE_EDC_ECLK = 3, - KNL_PCI_UNCORE_M2PCIE = 4, - KNL_PCI_UNCORE_IRP = 5, -}; - -enum { - HSWEP_PCI_UNCORE_HA = 0, - HSWEP_PCI_UNCORE_IMC = 1, - HSWEP_PCI_UNCORE_IRP = 2, - HSWEP_PCI_UNCORE_QPI = 3, - HSWEP_PCI_UNCORE_R2PCIE = 4, - HSWEP_PCI_UNCORE_R3QPI = 5, -}; - -enum { - BDX_PCI_UNCORE_HA = 0, - BDX_PCI_UNCORE_IMC = 1, - BDX_PCI_UNCORE_IRP = 2, - BDX_PCI_UNCORE_QPI = 3, - BDX_PCI_UNCORE_R2PCIE = 4, - BDX_PCI_UNCORE_R3QPI = 5, -}; - -enum { - IIO_TOPOLOGY_TYPE = 0, - UPI_TOPOLOGY_TYPE = 1, - TOPOLOGY_MAX = 2, -}; - -enum perf_uncore_iio_freerunning_type_id { - SKX_IIO_MSR_IOCLK = 0, - SKX_IIO_MSR_BW = 1, - SKX_IIO_MSR_UTIL = 2, - SKX_IIO_FREERUNNING_TYPE_MAX = 3, -}; - -enum { - SKX_PCI_UNCORE_IMC = 0, - SKX_PCI_UNCORE_M2M = 1, - SKX_PCI_UNCORE_UPI = 2, - SKX_PCI_UNCORE_M2PCIE = 3, - SKX_PCI_UNCORE_M3UPI = 4, -}; - -enum { - SNR_QAT_PMON_ID = 0, - SNR_CBDMA_DMI_PMON_ID = 1, - SNR_NIS_PMON_ID = 2, - SNR_DLB_PMON_ID = 3, - SNR_PCIE_GEN3_PMON_ID = 4, -}; - -enum perf_uncore_snr_iio_freerunning_type_id { - SNR_IIO_MSR_IOCLK = 0, - SNR_IIO_MSR_BW_IN = 1, - SNR_IIO_FREERUNNING_TYPE_MAX = 2, -}; - -enum { - SNR_PCI_UNCORE_M2M = 0, - SNR_PCI_UNCORE_PCIE3 = 1, -}; - -enum perf_uncore_snr_imc_freerunning_type_id { - SNR_IMC_DCLK = 0, - SNR_IMC_DDR = 1, - SNR_IMC_FREERUNNING_TYPE_MAX = 2, -}; - -enum { - ICX_PCIE1_PMON_ID = 0, - ICX_PCIE2_PMON_ID = 1, - ICX_PCIE3_PMON_ID = 2, - ICX_PCIE4_PMON_ID = 3, - ICX_PCIE5_PMON_ID = 4, - ICX_CBDMA_DMI_PMON_ID = 5, -}; - -enum perf_uncore_icx_iio_freerunning_type_id { - ICX_IIO_MSR_IOCLK = 0, - ICX_IIO_MSR_BW_IN = 1, - ICX_IIO_FREERUNNING_TYPE_MAX = 2, -}; - -enum { - ICX_PCI_UNCORE_M2M = 0, - ICX_PCI_UNCORE_UPI = 1, - ICX_PCI_UNCORE_M3UPI = 2, -}; - -enum perf_uncore_icx_imc_freerunning_type_id { - ICX_IMC_DCLK = 0, - ICX_IMC_DDR = 1, - ICX_IMC_DDRT = 2, - ICX_IMC_FREERUNNING_TYPE_MAX = 3, -}; - -enum perf_uncore_spr_iio_freerunning_type_id { - SPR_IIO_MSR_IOCLK = 0, - SPR_IIO_MSR_BW_IN = 1, - SPR_IIO_MSR_BW_OUT = 2, - SPR_IIO_FREERUNNING_TYPE_MAX = 3, -}; - -enum perf_uncore_spr_imc_freerunning_type_id { - SPR_IMC_DCLK = 0, - SPR_IMC_PQ_CYCLES = 1, - SPR_IMC_FREERUNNING_TYPE_MAX = 2, -}; - -struct hv_tlb_flush { - u64 address_space; - u64 flags; - u64 processor_mask; - u64 gva_list[0]; -}; - -struct hv_tlb_flush_ex { - u64 address_space; - u64 flags; - struct hv_vpset hv_vp_set; - u64 gva_list[0]; -}; - -struct trace_event_raw_hyperv_mmu_flush_tlb_multi { - struct trace_entry ent; - unsigned int ncpus; - struct mm_struct *mm; - long unsigned int addr; - long unsigned int end; - char __data[0]; -}; - -struct trace_event_raw_hyperv_nested_flush_guest_mapping { - struct trace_entry ent; - u64 as; - int ret; - char __data[0]; -}; - -struct trace_event_raw_hyperv_nested_flush_guest_mapping_range { - struct trace_entry ent; - u64 as; - int ret; - char __data[0]; -}; - -struct trace_event_raw_hyperv_send_ipi_mask { - struct trace_entry ent; - unsigned int ncpus; - int vector; - char __data[0]; -}; - -struct trace_event_raw_hyperv_send_ipi_one { - struct trace_entry ent; - int cpu; - int vector; - char __data[0]; -}; - -struct trace_event_data_offsets_hyperv_mmu_flush_tlb_multi {}; - -struct trace_event_data_offsets_hyperv_nested_flush_guest_mapping {}; - -struct trace_event_data_offsets_hyperv_nested_flush_guest_mapping_range {}; - -struct trace_event_data_offsets_hyperv_send_ipi_mask {}; - -struct trace_event_data_offsets_hyperv_send_ipi_one {}; - -typedef void (*btf_trace_hyperv_mmu_flush_tlb_multi)(void *, const struct cpumask *, const struct flush_tlb_info *); - -typedef void (*btf_trace_hyperv_nested_flush_guest_mapping)(void *, u64, int); - -typedef void (*btf_trace_hyperv_nested_flush_guest_mapping_range)(void *, u64, int); - -typedef void (*btf_trace_hyperv_send_ipi_mask)(void *, const struct cpumask *, int); - -typedef void (*btf_trace_hyperv_send_ipi_one)(void *, int, int); - -struct sigcontext_64 { - __u64 r8; - __u64 r9; - __u64 r10; - __u64 r11; - __u64 r12; - __u64 r13; - __u64 r14; - __u64 r15; - __u64 di; - __u64 si; - __u64 bp; - __u64 bx; - __u64 dx; - __u64 ax; - __u64 cx; - __u64 sp; - __u64 ip; - __u64 flags; - __u16 cs; - __u16 gs; - __u16 fs; - __u16 ss; - __u64 err; - __u64 trapno; - __u64 oldmask; - __u64 cr2; - __u64 fpstate; - __u64 reserved1[8]; -}; - -struct ucontext { - long unsigned int uc_flags; - struct ucontext *uc_link; - stack_t uc_stack; - struct sigcontext_64 uc_mcontext; - sigset_t uc_sigmask; -}; - -struct rt_sigframe { - char *pretcode; - struct ucontext uc; - struct siginfo info; -}; - -typedef struct ldttss_desc ldt_desc; - -struct stat64 { - long long unsigned int st_dev; - unsigned char __pad0[4]; - unsigned int __st_ino; - unsigned int st_mode; - unsigned int st_nlink; - unsigned int st_uid; - unsigned int st_gid; - long long unsigned int st_rdev; - unsigned char __pad3[4]; - long long int st_size; - unsigned int st_blksize; - long long int st_blocks; - unsigned int st_atime; - unsigned int st_atime_nsec; - unsigned int st_mtime; - unsigned int st_mtime_nsec; - unsigned int st_ctime; - unsigned int st_ctime_nsec; - long long unsigned int st_ino; -} __attribute__((packed)); - -struct mmap_arg_struct32 { - unsigned int addr; - unsigned int len; - unsigned int prot; - unsigned int flags; - unsigned int fd; - unsigned int offset; -}; - -struct cyc2ns { - struct cyc2ns_data data[2]; - seqcount_latch_t seq; -}; - -struct trace_event_raw_x86_fpu { - struct trace_entry ent; - struct fpu *fpu; - bool load_fpu; - u64 xfeatures; - u64 xcomp_bv; - char __data[0]; -}; - -struct trace_event_data_offsets_x86_fpu {}; - -typedef void (*btf_trace_x86_fpu_before_save)(void *, struct fpu *); - -typedef void (*btf_trace_x86_fpu_after_save)(void *, struct fpu *); - -typedef void (*btf_trace_x86_fpu_regs_activated)(void *, struct fpu *); - -typedef void (*btf_trace_x86_fpu_regs_deactivated)(void *, struct fpu *); - -typedef void (*btf_trace_x86_fpu_dropped)(void *, struct fpu *); - -typedef void (*btf_trace_x86_fpu_copy_dst)(void *, struct fpu *); - -typedef void (*btf_trace_x86_fpu_xstate_check_failed)(void *, struct fpu *); - -struct cpuid_dep { - unsigned int feature; - unsigned int depends; -}; - -enum context___2 { - IN_KERNEL = 1, - IN_USER = 2, - IN_KERNEL_RECOV = 3, -}; - -enum ser { - SER_REQUIRED = 1, - NO_SER = 2, -}; - -enum exception { - EXCP_CONTEXT = 1, - NO_EXCP = 2, -}; - -struct severity { - u64 mask; - u64 result; - unsigned char sev; - short unsigned int mcgmask; - short unsigned int mcgres; - unsigned char ser; - unsigned char context; - unsigned char excp; - unsigned char covered; - unsigned int cpu_vfm; - unsigned char cpu_minstepping; - unsigned char bank_lo; - unsigned char bank_hi; - char *msg; -}; - -enum { - GHES_SEV_NO = 0, - GHES_SEV_CORRECTED = 1, - GHES_SEV_RECOVERABLE = 2, - GHES_SEV_PANIC = 3, -}; - -struct cper_mce_record { - struct cper_record_header hdr; - struct cper_section_descriptor sec_hdr; - struct mce mce; -}; - -struct set_mtrr_data { - long unsigned int smp_base; - long unsigned int smp_size; - unsigned int smp_reg; - mtrr_type smp_type; -}; - -struct sgx_vepc { - struct xarray page_array; - struct mutex lock; -}; - -struct wakeup_header { - u16 video_mode; - u32 pmode_entry; - u16 pmode_cs; - u32 pmode_cr0; - u32 pmode_cr3; - u32 pmode_cr4; - u32 pmode_efer_low; - u32 pmode_efer_high; - u64 pmode_gdt; - u32 pmode_misc_en_low; - u32 pmode_misc_en_high; - u32 pmode_behavior; - u32 realmode_flags; - u32 real_magic; - u32 signature; -} __attribute__((packed)); - -struct tsc_adjust { - s64 bootval; - s64 adjusted; - long unsigned int nextcheck; - bool warned; -}; - -struct mpf_intel { - char signature[4]; - unsigned int physptr; - unsigned char length; - unsigned char specification; - unsigned char checksum; - unsigned char feature1; - unsigned char feature2; - unsigned char feature3; - unsigned char feature4; - unsigned char feature5; -}; - -struct mpc_table { - char signature[4]; - short unsigned int length; - char spec; - char checksum; - char oem[8]; - char productid[12]; - unsigned int oemptr; - short unsigned int oemsize; - short unsigned int oemcount; - unsigned int lapic; - unsigned int reserved; -}; - -struct mpc_cpu { - unsigned char type; - unsigned char apicid; - unsigned char apicver; - unsigned char cpuflag; - unsigned int cpufeature; - unsigned int featureflag; - unsigned int reserved[2]; -}; - -struct mpc_bus { - unsigned char type; - unsigned char busid; - unsigned char bustype[6]; -}; - -struct mpc_lintsrc { - unsigned char type; - unsigned char irqtype; - short unsigned int irqflag; - unsigned char srcbusid; - unsigned char srcbusirq; - unsigned char destapic; - unsigned char destapiclint; -}; - -union apic_ir { - long unsigned int map[4]; - u32 regs[8]; -}; - -enum { - X2APIC_OFF = 0, - X2APIC_DISABLED = 1, - X2APIC_ON = 2, - X2APIC_ON_LOCKED = 3, -}; - -struct kexec_entry64_regs { - uint64_t rax; - uint64_t rcx; - uint64_t rdx; - uint64_t rbx; - uint64_t rsp; - uint64_t rbp; - uint64_t rsi; - uint64_t rdi; - uint64_t r8; - uint64_t r9; - uint64_t r10; - uint64_t r11; - uint64_t r12; - uint64_t r13; - uint64_t r14; - uint64_t r15; - uint64_t rip; -}; - -struct bzimage64_data { - void *bootparams_buf; -}; - -enum { - RNG_SEED_LENGTH = 32, -}; - -struct scan_area { - u64 addr; - u64 size; -}; - -typedef u8 uprobe_opcode_t; - -enum rp_check { - RP_CHECK_CALL = 0, - RP_CHECK_CHAIN_CALL = 1, - RP_CHECK_RET = 2, -}; - -struct core_text { - long unsigned int base; - long unsigned int end; - const char *name; -}; - -struct vmcore_cb { - bool (*pfn_is_ram)(struct vmcore_cb *, long unsigned int); - int (*get_device_ram)(struct vmcore_cb *, struct list_head *); - struct list_head next; -}; - -struct pci_hostbridge_probe { - u32 bus; - u32 slot; - u32 vendor; - u32 device; -}; - -struct map_range { - long unsigned int start; - long unsigned int end; - unsigned int page_size_mask; -}; - -struct cpa_data { - long unsigned int *vaddr; - pgd_t *pgd; - pgprot_t mask_set; - pgprot_t mask_clr; - long unsigned int numpages; - long unsigned int curpage; - long unsigned int pfn; - unsigned int flags; - unsigned int force_split: 1; - unsigned int force_static_prot: 1; - unsigned int force_flush_all: 1; - struct page **pages; -}; - -enum cpa_warn { - CPA_CONFLICT = 0, - CPA_PROTECT = 1, - CPA_DETECT = 2, -}; - -union efi_boot_services; - -typedef union efi_boot_services efi_boot_services_t; - -union efi_simple_text_input_protocol; - -typedef union efi_simple_text_input_protocol efi_simple_text_input_protocol_t; - -union efi_simple_text_output_protocol; - -typedef union efi_simple_text_output_protocol efi_simple_text_output_protocol_t; - -typedef union { - struct { - efi_table_hdr_t hdr; - long unsigned int fw_vendor; - u32 fw_revision; - long unsigned int con_in_handle; - efi_simple_text_input_protocol_t *con_in; - long unsigned int con_out_handle; - efi_simple_text_output_protocol_t *con_out; - long unsigned int stderr_handle; - long unsigned int stderr; - efi_runtime_services_t *runtime; - efi_boot_services_t *boottime; - long unsigned int nr_tables; - long unsigned int tables; - }; - efi_system_table_32_t mixed_mode; -} efi_system_table_t; - -typedef int (*efi_memattr_perm_setter)(struct mm_struct *, efi_memory_desc_t *, bool); - -struct uv_rtc_timer_head { - spinlock_t lock; - int next_cpu; - int ncpus; - struct { - int lcpu; - u64 expires; - } cpu[0]; -}; - -struct tdx_sys_info_features { - u64 tdx_features0; -}; - -struct tdx_sys_info_tdmr { - u16 max_tdmrs; - u16 max_reserved_per_tdmr; - u16 pamt_4k_entry_size; - u16 pamt_2m_entry_size; - u16 pamt_1g_entry_size; -}; - -struct tdx_sys_info_td_ctrl { - u16 tdr_base_size; - u16 tdcs_base_size; - u16 tdvps_base_size; -}; - -struct tdx_sys_info_td_conf { - u64 attributes_fixed0; - u64 attributes_fixed1; - u64 xfam_fixed0; - u64 xfam_fixed1; - u16 num_cpuid_config; - u16 max_vcpus_per_td; - u64 cpuid_config_leaves[128]; - u64 cpuid_config_values[256]; -}; - -struct tdx_sys_info { - struct tdx_sys_info_features features; - struct tdx_sys_info_tdmr tdmr; - struct tdx_sys_info_td_ctrl td_ctrl; - struct tdx_sys_info_td_conf td_conf; -}; - -typedef u64 (*sc_func_t)(u64, struct tdx_module_args *); - -struct tdx_td { - struct page *tdr_page; - int tdcs_nr_pages; - struct page **tdcs_pages; - int tdcx_nr_pages; -}; - -struct tdx_vp { - struct page *tdvpr_page; - phys_addr_t tdvpr_pa; - struct page **tdcx_pages; -}; - -struct tdmr_reserved_area { - u64 offset; - u64 size; -}; - -struct tdmr_info { - u64 base; - u64 size; - u64 pamt_1g_base; - u64 pamt_1g_size; - u64 pamt_2m_base; - u64 pamt_2m_size; - u64 pamt_4k_base; - u64 pamt_4k_size; - struct { - struct {} __empty_reserved_areas; - struct tdmr_reserved_area reserved_areas[0]; - }; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum tdx_module_status_t { - TDX_MODULE_UNINITIALIZED = 0, - TDX_MODULE_INITIALIZED = 1, - TDX_MODULE_ERROR = 2, -}; - -struct tdx_memblock { - struct list_head list; - long unsigned int start_pfn; - long unsigned int end_pfn; - int nid; -}; - -struct tdmr_info_list { - void *tdmrs; - int nr_consumed_tdmrs; - int tdmr_sz; - int max_tdmrs; -}; - -typedef void (*sc_err_func_t)(u64, u64, struct tdx_module_args *); - -enum error_detector { - ERROR_DETECTOR_KFENCE = 0, - ERROR_DETECTOR_KASAN = 1, - ERROR_DETECTOR_WARN = 2, -}; - -struct warn_args { - const char *fmt; - va_list args; -}; - -struct release_task_post { - struct pid *pids[4]; -}; - -typedef struct { - rwlock_t *lock; -} class_write_lock_irq_t; - -struct ptrace_peeksiginfo_args { - __u64 off; - __u32 flags; - __s32 nr; -}; - -struct ptrace_syscall_info { - __u8 op; - __u8 reserved; - __u16 flags; - __u32 arch; - __u64 instruction_pointer; - __u64 stack_pointer; - union { - struct { - __u64 nr; - __u64 args[6]; - } entry; - struct { - __s64 rval; - __u8 is_error; - } exit; - struct { - __u64 nr; - __u64 args[6]; - __u32 ret_data; - __u32 reserved2; - } seccomp; - }; -}; - -struct ptrace_rseq_configuration { - __u64 rseq_abi_pointer; - __u32 rseq_abi_size; - __u32 signature; - __u32 flags; - __u32 pad; -}; - -struct sys_off_handler { - struct notifier_block nb; - int (*sys_off_cb)(struct sys_off_data *); - void *cb_data; - enum sys_off_mode mode; - bool blocking; - void *list; - struct device *dev; -}; - -enum vhost_task_flags { - VHOST_TASK_FLAGS_STOP = 0, - VHOST_TASK_FLAGS_KILLED = 1, -}; - -struct vhost_task { - bool (*fn)(void *); - void (*handle_sigkill)(void *); - void *data; - struct completion exited; - long unsigned int flags; - struct task_struct *task; - struct mutex exit_mutex; -}; - -struct trace_event_raw_sched_kthread_stop { - struct trace_entry ent; - u32 __data_loc_comm; - pid_t pid; - char __data[0]; -}; - -struct trace_event_raw_sched_kthread_stop_ret { - struct trace_entry ent; - int ret; - char __data[0]; -}; - -struct trace_event_raw_sched_kthread_work_queue_work { - struct trace_entry ent; - void *work; - void *function; - void *worker; - char __data[0]; -}; - -struct trace_event_raw_sched_kthread_work_execute_start { - struct trace_entry ent; - void *work; - void *function; - char __data[0]; -}; - -struct trace_event_raw_sched_kthread_work_execute_end { - struct trace_entry ent; - void *work; - void *function; - char __data[0]; -}; - -struct trace_event_raw_sched_wakeup_template { - struct trace_entry ent; - char comm[16]; - pid_t pid; - int prio; - int target_cpu; - char __data[0]; -}; - -struct trace_event_raw_sched_switch { - struct trace_entry ent; - char prev_comm[16]; - pid_t prev_pid; - int prev_prio; - long int prev_state; - char next_comm[16]; - pid_t next_pid; - int next_prio; - char __data[0]; -}; - -struct trace_event_raw_sched_migrate_task { - struct trace_entry ent; - u32 __data_loc_comm; - pid_t pid; - int prio; - int orig_cpu; - int dest_cpu; - char __data[0]; -}; - -struct trace_event_raw_sched_process_template { - struct trace_entry ent; - u32 __data_loc_comm; - pid_t pid; - int prio; - char __data[0]; -}; - -struct trace_event_raw_sched_process_exit { - struct trace_entry ent; - char comm[16]; - pid_t pid; - int prio; - bool group_dead; - char __data[0]; -}; - -struct trace_event_raw_sched_process_wait { - struct trace_entry ent; - u32 __data_loc_comm; - pid_t pid; - int prio; - char __data[0]; -}; - -struct trace_event_raw_sched_process_fork { - struct trace_entry ent; - u32 __data_loc_parent_comm; - pid_t parent_pid; - u32 __data_loc_child_comm; - pid_t child_pid; - char __data[0]; -}; - -struct trace_event_raw_sched_process_exec { - struct trace_entry ent; - u32 __data_loc_filename; - pid_t pid; - pid_t old_pid; - char __data[0]; -}; - -struct trace_event_raw_sched_prepare_exec { - struct trace_entry ent; - u32 __data_loc_interp; - u32 __data_loc_filename; - pid_t pid; - u32 __data_loc_comm; - char __data[0]; -}; - -struct trace_event_raw_sched_stat_template { - struct trace_entry ent; - u32 __data_loc_comm; - pid_t pid; - u64 delay; - char __data[0]; -}; - -struct trace_event_raw_sched_stat_runtime { - struct trace_entry ent; - u32 __data_loc_comm; - pid_t pid; - u64 runtime; - char __data[0]; -}; - -struct trace_event_raw_sched_pi_setprio { - struct trace_entry ent; - u32 __data_loc_comm; - pid_t pid; - int oldprio; - int newprio; - char __data[0]; -}; - -struct trace_event_raw_sched_process_hang { - struct trace_entry ent; - u32 __data_loc_comm; - pid_t pid; - char __data[0]; -}; - -struct trace_event_raw_sched_move_numa { - struct trace_entry ent; - pid_t pid; - pid_t tgid; - pid_t ngid; - int src_cpu; - int src_nid; - int dst_cpu; - int dst_nid; - char __data[0]; -}; - -struct trace_event_raw_sched_numa_pair_template { - struct trace_entry ent; - pid_t src_pid; - pid_t src_tgid; - pid_t src_ngid; - int src_cpu; - int src_nid; - pid_t dst_pid; - pid_t dst_tgid; - pid_t dst_ngid; - int dst_cpu; - int dst_nid; - char __data[0]; -}; - -struct trace_event_raw_sched_skip_vma_numa { - struct trace_entry ent; - long unsigned int numa_scan_offset; - long unsigned int vm_start; - long unsigned int vm_end; - enum numa_vmaskip_reason reason; - char __data[0]; -}; - -struct trace_event_raw_sched_skip_cpuset_numa { - struct trace_entry ent; - char comm[16]; - pid_t pid; - pid_t tgid; - pid_t ngid; - long unsigned int mem_allowed[16]; - char __data[0]; -}; - -struct trace_event_raw_sched_wake_idle_without_ipi { - struct trace_entry ent; - int cpu; - char __data[0]; -}; - -struct trace_event_data_offsets_sched_kthread_stop { - u32 comm; - const void *comm_ptr_; -}; - -struct trace_event_data_offsets_sched_kthread_stop_ret {}; - -struct trace_event_data_offsets_sched_kthread_work_queue_work {}; - -struct trace_event_data_offsets_sched_kthread_work_execute_start {}; - -struct trace_event_data_offsets_sched_kthread_work_execute_end {}; - -struct trace_event_data_offsets_sched_wakeup_template {}; - -struct trace_event_data_offsets_sched_switch {}; - -struct trace_event_data_offsets_sched_migrate_task { - u32 comm; - const void *comm_ptr_; -}; - -struct trace_event_data_offsets_sched_process_template { - u32 comm; - const void *comm_ptr_; -}; - -struct trace_event_data_offsets_sched_process_exit {}; - -struct trace_event_data_offsets_sched_process_wait { - u32 comm; - const void *comm_ptr_; -}; - -struct trace_event_data_offsets_sched_process_fork { - u32 parent_comm; - const void *parent_comm_ptr_; - u32 child_comm; - const void *child_comm_ptr_; -}; - -struct trace_event_data_offsets_sched_process_exec { - u32 filename; - const void *filename_ptr_; -}; - -struct trace_event_data_offsets_sched_prepare_exec { - u32 interp; - const void *interp_ptr_; - u32 filename; - const void *filename_ptr_; - u32 comm; - const void *comm_ptr_; -}; - -struct trace_event_data_offsets_sched_stat_template { - u32 comm; - const void *comm_ptr_; -}; - -struct trace_event_data_offsets_sched_stat_runtime { - u32 comm; - const void *comm_ptr_; -}; - -struct trace_event_data_offsets_sched_pi_setprio { - u32 comm; - const void *comm_ptr_; -}; - -struct trace_event_data_offsets_sched_process_hang { - u32 comm; - const void *comm_ptr_; -}; - -struct trace_event_data_offsets_sched_move_numa {}; - -struct trace_event_data_offsets_sched_numa_pair_template {}; - -struct trace_event_data_offsets_sched_skip_vma_numa {}; - -struct trace_event_data_offsets_sched_skip_cpuset_numa {}; - -struct trace_event_data_offsets_sched_wake_idle_without_ipi {}; - -typedef void (*btf_trace_sched_kthread_stop)(void *, struct task_struct *); - -typedef void (*btf_trace_sched_kthread_stop_ret)(void *, int); - -typedef void (*btf_trace_sched_kthread_work_queue_work)(void *, struct kthread_worker *, struct kthread_work *); - -typedef void (*btf_trace_sched_kthread_work_execute_start)(void *, struct kthread_work *); - -typedef void (*btf_trace_sched_kthread_work_execute_end)(void *, struct kthread_work *, kthread_work_func_t); - -typedef void (*btf_trace_sched_waking)(void *, struct task_struct *); - -typedef void (*btf_trace_sched_wakeup)(void *, struct task_struct *); - -typedef void (*btf_trace_sched_wakeup_new)(void *, struct task_struct *); - -typedef void (*btf_trace_sched_switch)(void *, bool, struct task_struct *, struct task_struct *, unsigned int); - -typedef void (*btf_trace_sched_migrate_task)(void *, struct task_struct *, int); - -typedef void (*btf_trace_sched_process_free)(void *, struct task_struct *); - -typedef void (*btf_trace_sched_process_exit)(void *, struct task_struct *, bool); - -typedef void (*btf_trace_sched_wait_task)(void *, struct task_struct *); - -typedef void (*btf_trace_sched_process_wait)(void *, struct pid *); - -typedef void (*btf_trace_sched_process_fork)(void *, struct task_struct *, struct task_struct *); - -typedef void (*btf_trace_sched_process_exec)(void *, struct task_struct *, pid_t, struct linux_binprm *); - -typedef void (*btf_trace_sched_prepare_exec)(void *, struct task_struct *, struct linux_binprm *); - -typedef void (*btf_trace_sched_stat_wait)(void *, struct task_struct *, u64); - -typedef void (*btf_trace_sched_stat_sleep)(void *, struct task_struct *, u64); - -typedef void (*btf_trace_sched_stat_iowait)(void *, struct task_struct *, u64); - -typedef void (*btf_trace_sched_stat_blocked)(void *, struct task_struct *, u64); - -typedef void (*btf_trace_sched_stat_runtime)(void *, struct task_struct *, u64); - -typedef void (*btf_trace_sched_pi_setprio)(void *, struct task_struct *, struct task_struct *); - -typedef void (*btf_trace_sched_process_hang)(void *, struct task_struct *); - -typedef void (*btf_trace_sched_move_numa)(void *, struct task_struct *, int, int); - -typedef void (*btf_trace_sched_stick_numa)(void *, struct task_struct *, int, struct task_struct *, int); - -typedef void (*btf_trace_sched_swap_numa)(void *, struct task_struct *, int, struct task_struct *, int); - -typedef void (*btf_trace_sched_skip_vma_numa)(void *, struct mm_struct *, struct vm_area_struct *, enum numa_vmaskip_reason); - -typedef void (*btf_trace_sched_skip_cpuset_numa)(void *, struct task_struct *, nodemask_t *); - -typedef void (*btf_trace_sched_wake_idle_without_ipi)(void *, int); - -typedef void (*btf_trace_pelt_cfs_tp)(void *, struct cfs_rq *); - -typedef void (*btf_trace_pelt_rt_tp)(void *, struct rq *); - -typedef void (*btf_trace_pelt_dl_tp)(void *, struct rq *); - -typedef void (*btf_trace_pelt_hw_tp)(void *, struct rq *); - -typedef void (*btf_trace_pelt_irq_tp)(void *, struct rq *); - -typedef void (*btf_trace_pelt_se_tp)(void *, struct sched_entity *); - -typedef void (*btf_trace_sched_cpu_capacity_tp)(void *, struct rq *); - -typedef void (*btf_trace_sched_overutilized_tp)(void *, struct root_domain *, bool); - -typedef void (*btf_trace_sched_util_est_cfs_tp)(void *, struct cfs_rq *); - -typedef void (*btf_trace_sched_util_est_se_tp)(void *, struct sched_entity *); - -typedef void (*btf_trace_sched_update_nr_running_tp)(void *, struct rq *, int); - -typedef void (*btf_trace_sched_compute_energy_tp)(void *, struct task_struct *, int, long unsigned int, long unsigned int, long unsigned int); - -typedef void (*btf_trace_sched_entry_tp)(void *, bool); - -typedef void (*btf_trace_sched_exit_tp)(void *, bool); - -typedef void (*btf_trace_sched_set_need_resched_tp)(void *, struct task_struct *, int, int); - -struct trace_event_raw_ipi_send_cpu { - struct trace_entry ent; - unsigned int cpu; - void *callsite; - void *callback; - char __data[0]; -}; - -struct trace_event_raw_ipi_send_cpumask { - struct trace_entry ent; - u32 __data_loc_cpumask; - void *callsite; - void *callback; - char __data[0]; -}; - -struct trace_event_data_offsets_ipi_send_cpu {}; - -struct trace_event_data_offsets_ipi_send_cpumask { - u32 cpumask; - const void *cpumask_ptr_; -}; - -typedef void (*btf_trace_ipi_send_cpu)(void *, const unsigned int, long unsigned int, void *); - -typedef void (*btf_trace_ipi_send_cpumask)(void *, const struct cpumask *, long unsigned int, void *); - -typedef struct { - raw_spinlock_t *lock; - raw_spinlock_t *lock2; -} class_double_raw_spinlock_t; - -struct set_affinity_pending; - -struct migration_arg { - struct task_struct *task; - int dest_cpu; - struct set_affinity_pending *pending; -}; - -struct set_affinity_pending { - refcount_t refs; - unsigned int stop_pending; - struct completion done; - struct cpu_stop_work stop_work; - struct migration_arg arg; -}; - -struct migration_swap_arg { - struct task_struct *src_task; - struct task_struct *dst_task; - int src_cpu; - int dst_cpu; -}; - -struct tick_work { - int cpu; - atomic_t state; - struct delayed_work work; -}; - -typedef struct { - int *lock; - long unsigned int flags; -} class_core_lock_t; - -struct uclamp_request { - s64 percent; - u64 util; - int ret; -}; - -struct cfs_schedulable_data { - struct task_group *tg; - u64 period; - u64 quota; -}; - -enum { - cpuset = 0, - possible = 1, - fail = 2, -}; - -union cpumask_rcuhead { - cpumask_t cpumask; - struct callback_head rcu; -}; - -enum rwsem_waiter_type { - RWSEM_WAITING_FOR_WRITE = 0, - RWSEM_WAITING_FOR_READ = 1, -}; - -struct rwsem_waiter { - struct list_head list; - struct task_struct *task; - enum rwsem_waiter_type type; - long unsigned int timeout; - bool handoff_set; -}; - -enum rwsem_wake_type { - RWSEM_WAKE_ANY = 0, - RWSEM_WAKE_READERS = 1, - RWSEM_WAKE_READ_OWNED = 2, -}; - -enum owner_state { - OWNER_NULL = 1, - OWNER_WRITER = 2, - OWNER_READER = 4, - OWNER_NONSPINNABLE = 8, -}; - -struct optimistic_spin_node { - struct optimistic_spin_node *next; - struct optimistic_spin_node *prev; - int locked; - int cpu; -}; - -struct rt_wake_q_head { - struct wake_q_head head; - struct task_struct *rtlock_task; -}; - -enum rtmutex_chainwalk { - RT_MUTEX_MIN_CHAINWALK = 0, - RT_MUTEX_FULL_CHAINWALK = 1, -}; - -struct swap_map_page { - sector_t entries[511]; - sector_t next_swap; -}; - -struct swap_map_page_list { - struct swap_map_page *map; - struct swap_map_page_list *next; -}; - -struct swap_map_handle { - struct swap_map_page *cur; - struct swap_map_page_list *maps; - sector_t cur_swap; - sector_t first_sector; - unsigned int k; - long unsigned int reqd_free_pages; - u32 crc32; -}; - -struct swsusp_header { - char reserved[4056]; - u32 hw_sig; - u32 crc32; - sector_t image; - unsigned int flags; - char orig_sig[10]; - char sig[10]; -}; - -struct swsusp_extent { - struct rb_node node; - long unsigned int start; - long unsigned int end; -}; - -struct hib_bio_batch { - atomic_t count; - wait_queue_head_t wait; - blk_status_t error; - struct blk_plug plug; -}; - -struct crc_data { - struct task_struct *thr; - atomic_t ready; - atomic_t stop; - unsigned int run_threads; - wait_queue_head_t go; - wait_queue_head_t done; - u32 *crc32; - size_t *unc_len[3]; - unsigned char *unc[3]; -}; - -struct cmp_data { - struct task_struct *thr; - struct crypto_acomp *cc; - struct acomp_req *cr; - atomic_t ready; - atomic_t stop; - int ret; - wait_queue_head_t go; - wait_queue_head_t done; - size_t unc_len; - size_t cmp_len; - unsigned char unc[131072]; - unsigned char cmp[143360]; -}; - -struct dec_data { - struct task_struct *thr; - struct crypto_acomp *cc; - struct acomp_req *cr; - atomic_t ready; - atomic_t stop; - int ret; - wait_queue_head_t go; - wait_queue_head_t done; - size_t unc_len; - size_t cmp_len; - unsigned char unc[131072]; - unsigned char cmp[143360]; -}; - -struct wakelock { - char *name; - struct rb_node node; - struct wakeup_source *ws; - struct list_head lru; -}; - -struct irq_devres { - unsigned int irq; - void *dev_id; -}; - -struct irq_desc_devres { - unsigned int from; - unsigned int cnt; -}; - -struct irq_generic_chip_devres { - struct irq_chip_generic *gc; - u32 msk; - unsigned int clr; - unsigned int set; -}; - -struct msi_dev_domain { - struct xarray store; - struct irq_domain *domain; -}; - -struct msi_device_data { - long unsigned int properties; - struct mutex mutex; - struct msi_dev_domain __domains[1]; - long unsigned int __iter_idx; -}; - -struct msi_ctrl { - unsigned int domid; - unsigned int first; - unsigned int last; - unsigned int nirqs; -}; - -struct rcu_exp_work { - long unsigned int rew_s; - struct kthread_work rew_work; -}; - -struct rcu_node { - raw_spinlock_t lock; - long unsigned int gp_seq; - long unsigned int gp_seq_needed; - long unsigned int completedqs; - long unsigned int qsmask; - long unsigned int rcu_gp_init_mask; - long unsigned int qsmaskinit; - long unsigned int qsmaskinitnext; - long unsigned int expmask; - long unsigned int expmaskinit; - long unsigned int expmaskinitnext; - struct kthread_worker *exp_kworker; - long unsigned int cbovldmask; - long unsigned int ffmask; - long unsigned int grpmask; - int grplo; - int grphi; - u8 grpnum; - u8 level; - bool wait_blkd_tasks; - struct rcu_node *parent; - struct list_head blkd_tasks; - struct list_head *gp_tasks; - struct list_head *exp_tasks; - struct list_head *boost_tasks; - struct rt_mutex boost_mtx; - long unsigned int boost_time; - struct mutex kthread_mutex; - struct task_struct *boost_kthread_task; - unsigned int boost_kthread_status; - long unsigned int n_boosts; - struct swait_queue_head nocb_gp_wq[2]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - raw_spinlock_t fqslock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - spinlock_t exp_lock; - long unsigned int exp_seq_rq; - wait_queue_head_t exp_wq[4]; - struct rcu_exp_work rew; - bool exp_need_flush; - raw_spinlock_t exp_poll_lock; - long unsigned int exp_seq_poll_rq; - struct work_struct exp_poll_wq; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -union rcu_noqs { - struct { - u8 norm; - u8 exp; - } b; - u16 s; -}; - -struct rcu_snap_record { - long unsigned int gp_seq; - u64 cputime_irq; - u64 cputime_softirq; - u64 cputime_system; - u64 nr_hardirqs; - unsigned int nr_softirqs; - long long unsigned int nr_csw; - long unsigned int jiffies; -}; - -struct rcu_data { - long unsigned int gp_seq; - long unsigned int gp_seq_needed; - union rcu_noqs cpu_no_qs; - bool core_needs_qs; - bool beenonline; - bool gpwrap; - unsigned int gpwrap_count; - bool cpu_started; - struct rcu_node *mynode; - long unsigned int grpmask; - long unsigned int ticks_this_gp; - struct irq_work defer_qs_iw; - int defer_qs_iw_pending; - struct work_struct strict_work; - struct rcu_segcblist cblist; - long int qlen_last_fqs_check; - long unsigned int n_cbs_invoked; - long unsigned int n_force_qs_snap; - long int blimit; - int watching_snap; - bool rcu_need_heavy_qs; - bool rcu_urgent_qs; - bool rcu_forced_tick; - bool rcu_forced_tick_exp; - long unsigned int barrier_seq_snap; - struct callback_head barrier_head; - int exp_watching_snap; - struct swait_queue_head nocb_cb_wq; - struct swait_queue_head nocb_state_wq; - struct task_struct *nocb_gp_kthread; - raw_spinlock_t nocb_lock; - int nocb_defer_wakeup; - struct timer_list nocb_timer; - long unsigned int nocb_gp_adv_time; - struct mutex nocb_gp_kthread_mutex; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - raw_spinlock_t nocb_bypass_lock; - struct rcu_cblist nocb_bypass; - long unsigned int nocb_bypass_first; - long unsigned int nocb_nobypass_last; - int nocb_nobypass_count; - long: 64; - raw_spinlock_t nocb_gp_lock; - u8 nocb_gp_sleep; - u8 nocb_gp_bypass; - u8 nocb_gp_gp; - long unsigned int nocb_gp_seq; - long unsigned int nocb_gp_loops; - struct swait_queue_head nocb_gp_wq; - bool nocb_cb_sleep; - struct task_struct *nocb_cb_kthread; - struct list_head nocb_head_rdp; - struct list_head nocb_entry_rdp; - struct rcu_data *nocb_toggling_rdp; - long: 64; - long: 64; - long: 64; - struct rcu_data *nocb_gp_rdp; - struct task_struct *rcu_cpu_kthread_task; - unsigned int rcu_cpu_kthread_status; - char rcu_cpu_has_work; - long unsigned int rcuc_activity; - unsigned int softirq_snap; - struct irq_work rcu_iw; - bool rcu_iw_pending; - long unsigned int rcu_iw_gp_seq; - long unsigned int rcu_ofl_gp_seq; - short int rcu_ofl_gp_state; - long unsigned int rcu_onl_gp_seq; - short int rcu_onl_gp_state; - long unsigned int last_fqs_resched; - long unsigned int last_sched_clock; - struct rcu_snap_record snap_record; - long int lazy_len; - int cpu; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct sr_wait_node { - atomic_t inuse; - struct llist_node node; -}; - -struct rcu_state { - struct rcu_node node[521]; - struct rcu_node *level[4]; - int ncpus; - int n_online_cpus; - long: 64; - long: 64; - long: 64; - long unsigned int gp_seq; - long unsigned int gp_max; - struct task_struct *gp_kthread; - struct swait_queue_head gp_wq; - short int gp_flags; - short int gp_state; - long unsigned int gp_wake_time; - long unsigned int gp_wake_seq; - long unsigned int gp_seq_polled; - long unsigned int gp_seq_polled_snap; - long unsigned int gp_seq_polled_exp_snap; - struct mutex barrier_mutex; - atomic_t barrier_cpu_count; - struct completion barrier_completion; - long unsigned int barrier_sequence; - raw_spinlock_t barrier_lock; - struct mutex exp_mutex; - struct mutex exp_wake_mutex; - long unsigned int expedited_sequence; - atomic_t expedited_need_qs; - struct swait_queue_head expedited_wq; - int ncpus_snap; - u8 cbovld; - u8 cbovldnext; - long unsigned int jiffies_force_qs; - long unsigned int jiffies_kick_kthreads; - long unsigned int n_force_qs; - long unsigned int gp_start; - long unsigned int gp_end; - long unsigned int gp_activity; - long unsigned int gp_req_activity; - long unsigned int jiffies_stall; - int nr_fqs_jiffies_stall; - long unsigned int jiffies_resched; - long unsigned int n_force_qs_gpstart; - const char *name; - char abbr; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - arch_spinlock_t ofl_lock; - struct llist_head srs_next; - struct llist_node *srs_wait_tail; - struct llist_node *srs_done_tail; - struct sr_wait_node srs_wait_nodes[5]; - struct work_struct srs_cleanup_work; - atomic_t srs_cleanups_pending; - struct mutex nocb_mutex; - int nocb_is_setup; -}; - -struct io_tlb_area { - long unsigned int used; - unsigned int index; - spinlock_t lock; -}; - -struct io_tlb_slot { - phys_addr_t orig_addr; - size_t alloc_size; - short unsigned int list; - short unsigned int pad_slots; -}; - -struct trace_event_raw_swiotlb_bounced { - struct trace_entry ent; - u32 __data_loc_dev_name; - u64 dma_mask; - dma_addr_t dev_addr; - size_t size; - bool force; - char __data[0]; -}; - -struct trace_event_data_offsets_swiotlb_bounced { - u32 dev_name; - const void *dev_name_ptr_; -}; - -typedef void (*btf_trace_swiotlb_bounced)(void *, struct device *, dma_addr_t, size_t); - -struct module_sect_attrs { - struct attribute_group grp; - struct bin_attribute attrs[0]; -}; - -struct module_notes_attrs { - struct attribute_group grp; - struct bin_attribute attrs[0]; -}; - -struct process_timer { - struct timer_list timer; - struct task_struct *task; -}; - -typedef struct { - raw_spinlock_t *lock; -} class_raw_spinlock_nested_t; - -struct system_counterval_t { - u64 cycles; - enum clocksource_ids cs_id; - bool use_nsecs; -}; - -struct tk_read_base { - struct clocksource *clock; - u64 mask; - u64 cycle_last; - u32 mult; - u32 shift; - u64 xtime_nsec; - ktime_t base; - u64 base_real; -}; - -struct timekeeper { - struct tk_read_base tkr_mono; - u64 xtime_sec; - long unsigned int ktime_sec; - struct timespec64 wall_to_monotonic; - ktime_t offs_real; - ktime_t offs_boot; - union { - ktime_t offs_tai; - ktime_t offs_aux; - }; - u32 coarse_nsec; - enum timekeeper_ids id; - struct tk_read_base tkr_raw; - u64 raw_sec; - unsigned int clock_was_set_seq; - u8 cs_was_changed_seq; - u8 clock_valid; - union { - struct timespec64 monotonic_to_boot; - struct timespec64 monotonic_to_aux; - }; - u64 cycle_interval; - u64 xtime_interval; - s64 xtime_remainder; - u64 raw_interval; - ktime_t next_leap_ktime; - u64 ntp_tick; - s64 ntp_error; - u32 ntp_error_shift; - u32 ntp_err_mult; - u32 skip_second_overflow; - s32 tai_offset; -}; - -enum timekeeping_adv_mode { - TK_ADV_TICK = 0, - TK_ADV_FREQ = 1, -}; - -struct tk_data { - seqcount_raw_spinlock_t seq; - struct timekeeper timekeeper; - struct timekeeper shadow_timekeeper; - raw_spinlock_t lock; -}; - -struct tk_fast { - seqcount_latch_t seq; - struct tk_read_base base[2]; -}; - -struct adjtimex_result { - struct audit_ntp_data ad; - struct timespec64 delta; - bool clock_set; -}; - -struct timer_list_iter { - int cpu; - bool second_pass; - u64 now; -}; - -struct posix_clock_desc { - struct file *fp; - struct posix_clock *clk; -}; - -typedef __u16 comp_t; - -struct acct_v3 { - char ac_flag; - char ac_version; - __u16 ac_tty; - __u32 ac_exitcode; - __u32 ac_uid; - __u32 ac_gid; - __u32 ac_pid; - __u32 ac_ppid; - __u32 ac_btime; - __u32 ac_etime; - comp_t ac_utime; - comp_t ac_stime; - comp_t ac_mem; - comp_t ac_io; - comp_t ac_rw; - comp_t ac_minflt; - comp_t ac_majflt; - comp_t ac_swaps; - char ac_comm[16]; -}; - -typedef struct acct_v3 acct_t; - -struct bsd_acct_struct { - struct fs_pin pin; - atomic_long_t count; - struct callback_head rcu; - struct mutex lock; - bool active; - bool check_space; - long unsigned int needcheck; - struct file *file; - struct pid_namespace *ns; - struct work_struct work; - struct completion done; - acct_t ac; -}; - -struct kexec_load_limit { - struct mutex mutex; - int limit; -}; - -enum cgroup_filetype { - CGROUP_FILE_PROCS = 0, - CGROUP_FILE_TASKS = 1, -}; - -struct cgroup_pidlist { - struct { - enum cgroup_filetype type; - struct pid_namespace *ns; - } key; - pid_t *list; - int length; - struct list_head links; - struct cgroup *owner; - struct delayed_work destroy_dwork; -}; - -enum cgroup1_param { - Opt_all = 0, - Opt_clone_children = 1, - Opt_cpuset_v2_mode = 2, - Opt_name = 3, - Opt_none = 4, - Opt_noprefix = 5, - Opt_release_agent = 6, - Opt_xattr = 7, - Opt_favordynmods___2 = 8, - Opt_nofavordynmods = 9, -}; - -enum rdmacg_resource_type { - RDMACG_RESOURCE_HCA_HANDLE = 0, - RDMACG_RESOURCE_HCA_OBJECT = 1, - RDMACG_RESOURCE_MAX = 2, -}; - -enum rdmacg_file_type { - RDMACG_RESOURCE_TYPE_MAX = 0, - RDMACG_RESOURCE_TYPE_STAT = 1, -}; - -struct rdmacg_resource { - int max; - int usage; -}; - -struct rdmacg_resource_pool { - struct rdmacg_device *device; - struct rdmacg_resource resources[2]; - struct list_head cg_node; - struct list_head dev_node; - u64 usage_sum; - int num_max_cnt; -}; - -struct dmem_cgroup_region { - struct kref ref; - struct callback_head rcu; - struct list_head region_node; - struct list_head pools; - u64 size; - char *name; - bool unregistered; -}; - -struct dmemcg_state { - struct cgroup_subsys_state css; - struct list_head pools; -}; - -struct dmem_cgroup_pool_state { - struct dmem_cgroup_region *region; - struct dmemcg_state *cs; - struct list_head css_node; - struct list_head region_node; - struct callback_head rcu; - struct page_counter cnt; - bool inited; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct cpu_stop_done { - atomic_t nr_todo; - int ret; - struct completion completion; -}; - -struct cpu_stopper { - struct task_struct *thread; - raw_spinlock_t lock; - bool enabled; - struct list_head works; - struct cpu_stop_work stop_work; - long unsigned int caller; - cpu_stop_fn_t fn; -}; - -enum multi_stop_state { - MULTI_STOP_NONE = 0, - MULTI_STOP_PREPARE = 1, - MULTI_STOP_DISABLE_IRQ = 2, - MULTI_STOP_RUN = 3, - MULTI_STOP_EXIT = 4, -}; - -struct multi_stop_data { - cpu_stop_fn_t fn; - void *data; - unsigned int num_threads; - const struct cpumask *active_cpus; - enum multi_stop_state state; - atomic_t thread_ack; -}; - -struct audit_rule_data { - __u32 flags; - __u32 action; - __u32 field_count; - __u32 mask[64]; - __u32 fields[64]; - __u32 values[64]; - __u32 fieldflags[64]; - __u32 buflen; - char buf[0]; -}; - -struct audit_tree { - refcount_t count; - int goner; - struct audit_chunk *root; - struct list_head chunks; - struct list_head rules; - struct list_head list; - struct list_head same_root; - struct callback_head head; - char pathname[0]; -}; - -struct audit_node { - struct list_head list; - struct audit_tree *owner; - unsigned int index; -}; - -struct audit_chunk { - struct list_head hash; - long unsigned int key; - struct fsnotify_mark *mark; - struct list_head trees; - int count; - atomic_long_t refs; - struct callback_head head; - struct audit_node owners[0]; -}; - -struct audit_tree_mark { - struct fsnotify_mark mark; - struct audit_chunk *chunk; -}; - -enum { - HASH_SIZE = 128, -}; - -struct _kdbmsg { - int km_diag; - char *km_msg; -}; - -typedef struct _kdbmsg kdbmsg_t; - -struct kdb_macro { - kdbtab_t cmd; - struct list_head statements; -}; - -struct kdb_macro_statement { - char *statement; - struct list_head list_node; -}; - -struct action_cache { - long unsigned int allow_native[8]; - long unsigned int allow_compat[8]; -}; - -struct notification; - -struct seccomp_filter { - refcount_t refs; - refcount_t users; - bool log; - bool wait_killable_recv; - struct action_cache cache; - struct seccomp_filter *prev; - struct bpf_prog *prog; - struct notification *notif; - struct mutex notify_lock; - wait_queue_head_t wqh; -}; - -struct seccomp_metadata { - __u64 filter_off; - __u64 flags; -}; - -struct seccomp_notif_sizes { - __u16 seccomp_notif; - __u16 seccomp_notif_resp; - __u16 seccomp_data; -}; - -struct seccomp_notif { - __u64 id; - __u32 pid; - __u32 flags; - struct seccomp_data data; -}; - -struct seccomp_notif_resp { - __u64 id; - __s64 val; - __s32 error; - __u32 flags; -}; - -struct seccomp_notif_addfd { - __u64 id; - __u32 flags; - __u32 srcfd; - __u32 newfd; - __u32 newfd_flags; -}; - -enum notify_state { - SECCOMP_NOTIFY_INIT = 0, - SECCOMP_NOTIFY_SENT = 1, - SECCOMP_NOTIFY_REPLIED = 2, -}; - -struct seccomp_knotif { - struct task_struct *task; - u64 id; - const struct seccomp_data *data; - enum notify_state state; - int error; - long int val; - u32 flags; - struct completion ready; - struct list_head list; - struct list_head addfd; -}; - -struct seccomp_kaddfd { - struct file *file; - int fd; - unsigned int flags; - __u32 ioctl_flags; - union { - bool setfd; - int ret; - }; - struct completion completion; - struct list_head list; -}; - -struct notification { - atomic_t requests; - u32 flags; - u64 next_id; - struct list_head notifications; -}; - -struct seccomp_log_name { - u32 log; - const char *name; -}; - -struct ftrace_func_entry { - struct hlist_node hlist; - long unsigned int ip; - long unsigned int direct; -}; - -enum ftrace_bug_type { - FTRACE_BUG_UNKNOWN = 0, - FTRACE_BUG_INIT = 1, - FTRACE_BUG_NOP = 2, - FTRACE_BUG_CALL = 3, - FTRACE_BUG_UPDATE = 4, -}; - -struct ftrace_mod_load { - struct list_head list; - char *func; - char *module; - int enable; -}; - -enum { - FTRACE_HASH_FL_MOD = 1, -}; - -enum { - FTRACE_MODIFY_ENABLE_FL = 1, - FTRACE_MODIFY_MAY_SLEEP_FL = 2, -}; - -struct ftrace_profile { - struct hlist_node node; - long unsigned int ip; - long unsigned int counter; - long long unsigned int time; - long long unsigned int time_squared; -}; - -struct ftrace_profile_page { - struct ftrace_profile_page *next; - long unsigned int index; - struct ftrace_profile records[0]; -}; - -struct ftrace_profile_stat { - atomic_t disabled; - struct hlist_head *hash; - struct ftrace_profile_page *pages; - struct ftrace_profile_page *start; - struct tracer_stat stat; -}; - -struct profile_fgraph_data { - long long unsigned int calltime; - long long unsigned int subtime; - long long unsigned int sleeptime; -}; - -struct ftrace_func_probe { - struct ftrace_probe_ops *probe_ops; - struct ftrace_ops ops; - struct trace_array *tr; - struct list_head list; - void *data; - int ref; -}; - -struct ftrace_page { - struct ftrace_page *next; - struct dyn_ftrace *records; - int index; - int order; -}; - -struct ftrace_rec_iter { - struct ftrace_page *pg; - int index; -}; - -struct ftrace_iterator { - loff_t pos; - loff_t func_pos; - loff_t mod_pos; - struct ftrace_page *pg; - struct dyn_ftrace *func; - struct ftrace_func_probe *probe; - struct ftrace_func_entry *probe_entry; - struct trace_parser parser; - struct ftrace_hash *hash; - struct ftrace_ops *ops; - struct trace_array *tr; - struct list_head *mod_list; - int pidx; - int idx; - unsigned int flags; -}; - -struct ftrace_glob { - char *search; - unsigned int len; - int type; -}; - -struct ftrace_func_map { - struct ftrace_func_entry entry; - void *data; -}; - -struct ftrace_func_mapper { - struct ftrace_hash hash; -}; - -enum graph_filter_type { - GRAPH_FILTER_NOTRACE = 0, - GRAPH_FILTER_FUNCTION = 1, -}; - -struct ftrace_graph_data { - struct ftrace_hash *hash; - struct ftrace_func_entry *entry; - int idx; - enum graph_filter_type type; - struct ftrace_hash *new_hash; - const struct seq_operations *seq_ops; - struct trace_parser parser; -}; - -struct ftrace_mod_func { - struct list_head list; - char *name; - long unsigned int ip; - unsigned int size; -}; - -struct ftrace_mod_map { - struct callback_head rcu; - struct list_head list; - struct module *mod; - long unsigned int start_addr; - long unsigned int end_addr; - struct list_head funcs; - unsigned int num_funcs; -}; - -struct ftrace_init_func { - struct list_head list; - long unsigned int ip; -}; - -struct kallsyms_data { - long unsigned int *addrs; - const char **syms; - size_t cnt; - size_t found; -}; - -struct trace_bprintk_fmt { - struct list_head list; - const char *fmt; -}; - -enum { - TRACE_GRAPH_FL = 1, - TRACE_GRAPH_DEPTH_START_BIT = 2, - TRACE_GRAPH_DEPTH_END_BIT = 3, - TRACE_GRAPH_NOTRACE_BIT = 4, -}; - -enum { - TRACE_NOP_OPT_ACCEPT = 1, - TRACE_NOP_OPT_REFUSE = 2, -}; - -struct fgraph_retaddr_ent { - long unsigned int func; - int depth; - long unsigned int retaddr; -} __attribute__((packed)); - -struct ftrace_graph_ent_entry { - struct trace_entry ent; - struct ftrace_graph_ent graph_ent; - long unsigned int args[0]; -}; - -struct fgraph_retaddr_ent_entry { - struct trace_entry ent; - struct fgraph_retaddr_ent graph_ent; -}; - -struct ftrace_graph_ret_entry { - struct trace_entry ent; - struct ftrace_graph_ret ret; - long long unsigned int calltime; - long long unsigned int rettime; -}; - -struct fgraph_cpu_data { - pid_t last_pid; - int depth; - int depth_irq; - int ignore; - long unsigned int enter_funcs[50]; -}; - -struct fgraph_ent_args { - struct ftrace_graph_ent_entry ent; - long unsigned int args[6]; -}; - -struct fgraph_data { - struct fgraph_cpu_data *cpu_data; - union { - struct fgraph_ent_args ent; - struct fgraph_retaddr_ent_entry rent; - }; - struct ftrace_graph_ret_entry ret; - int failed; - int cpu; -}; - -enum { - FLAGS_FILL_FULL = 268435456, - FLAGS_FILL_START = 536870912, - FLAGS_FILL_END = 805306368, -}; - -struct fgraph_times { - long long unsigned int calltime; - long long unsigned int sleeptime; -}; - -struct enable_trigger_data { - struct trace_event_file *file; - bool enable; - bool hist; -}; - -enum { - HIST_ERR_NONE = 0, - HIST_ERR_DUPLICATE_VAR = 1, - HIST_ERR_VAR_NOT_UNIQUE = 2, - HIST_ERR_TOO_MANY_VARS = 3, - HIST_ERR_MALFORMED_ASSIGNMENT = 4, - HIST_ERR_NAMED_MISMATCH = 5, - HIST_ERR_TRIGGER_EEXIST = 6, - HIST_ERR_TRIGGER_ENOENT_CLEAR = 7, - HIST_ERR_SET_CLOCK_FAIL = 8, - HIST_ERR_BAD_FIELD_MODIFIER = 9, - HIST_ERR_TOO_MANY_SUBEXPR = 10, - HIST_ERR_TIMESTAMP_MISMATCH = 11, - HIST_ERR_TOO_MANY_FIELD_VARS = 12, - HIST_ERR_EVENT_FILE_NOT_FOUND = 13, - HIST_ERR_HIST_NOT_FOUND = 14, - HIST_ERR_HIST_CREATE_FAIL = 15, - HIST_ERR_SYNTH_VAR_NOT_FOUND = 16, - HIST_ERR_SYNTH_EVENT_NOT_FOUND = 17, - HIST_ERR_SYNTH_TYPE_MISMATCH = 18, - HIST_ERR_SYNTH_COUNT_MISMATCH = 19, - HIST_ERR_FIELD_VAR_PARSE_FAIL = 20, - HIST_ERR_VAR_CREATE_FIND_FAIL = 21, - HIST_ERR_ONX_NOT_VAR = 22, - HIST_ERR_ONX_VAR_NOT_FOUND = 23, - HIST_ERR_ONX_VAR_CREATE_FAIL = 24, - HIST_ERR_FIELD_VAR_CREATE_FAIL = 25, - HIST_ERR_TOO_MANY_PARAMS = 26, - HIST_ERR_PARAM_NOT_FOUND = 27, - HIST_ERR_INVALID_PARAM = 28, - HIST_ERR_ACTION_NOT_FOUND = 29, - HIST_ERR_NO_SAVE_PARAMS = 30, - HIST_ERR_TOO_MANY_SAVE_ACTIONS = 31, - HIST_ERR_ACTION_MISMATCH = 32, - HIST_ERR_NO_CLOSING_PAREN = 33, - HIST_ERR_SUBSYS_NOT_FOUND = 34, - HIST_ERR_INVALID_SUBSYS_EVENT = 35, - HIST_ERR_INVALID_REF_KEY = 36, - HIST_ERR_VAR_NOT_FOUND = 37, - HIST_ERR_FIELD_NOT_FOUND = 38, - HIST_ERR_EMPTY_ASSIGNMENT = 39, - HIST_ERR_INVALID_SORT_MODIFIER = 40, - HIST_ERR_EMPTY_SORT_FIELD = 41, - HIST_ERR_TOO_MANY_SORT_FIELDS = 42, - HIST_ERR_INVALID_SORT_FIELD = 43, - HIST_ERR_INVALID_STR_OPERAND = 44, - HIST_ERR_EXPECT_NUMBER = 45, - HIST_ERR_UNARY_MINUS_SUBEXPR = 46, - HIST_ERR_DIVISION_BY_ZERO = 47, - HIST_ERR_NEED_NOHC_VAL = 48, -}; - -enum hist_field_fn { - HIST_FIELD_FN_NOP = 0, - HIST_FIELD_FN_VAR_REF = 1, - HIST_FIELD_FN_COUNTER = 2, - HIST_FIELD_FN_CONST = 3, - HIST_FIELD_FN_LOG2 = 4, - HIST_FIELD_FN_BUCKET = 5, - HIST_FIELD_FN_TIMESTAMP = 6, - HIST_FIELD_FN_CPU = 7, - HIST_FIELD_FN_COMM = 8, - HIST_FIELD_FN_STRING = 9, - HIST_FIELD_FN_DYNSTRING = 10, - HIST_FIELD_FN_RELDYNSTRING = 11, - HIST_FIELD_FN_PSTRING = 12, - HIST_FIELD_FN_S64 = 13, - HIST_FIELD_FN_U64 = 14, - HIST_FIELD_FN_S32 = 15, - HIST_FIELD_FN_U32 = 16, - HIST_FIELD_FN_S16 = 17, - HIST_FIELD_FN_U16 = 18, - HIST_FIELD_FN_S8 = 19, - HIST_FIELD_FN_U8 = 20, - HIST_FIELD_FN_UMINUS = 21, - HIST_FIELD_FN_MINUS = 22, - HIST_FIELD_FN_PLUS = 23, - HIST_FIELD_FN_DIV = 24, - HIST_FIELD_FN_MULT = 25, - HIST_FIELD_FN_DIV_POWER2 = 26, - HIST_FIELD_FN_DIV_NOT_POWER2 = 27, - HIST_FIELD_FN_DIV_MULT_SHIFT = 28, - HIST_FIELD_FN_EXECNAME = 29, - HIST_FIELD_FN_STACK = 30, -}; - -struct hist_trigger_data; - -struct hist_var { - char *name; - struct hist_trigger_data *hist_data; - unsigned int idx; -}; - -enum field_op_id { - FIELD_OP_NONE = 0, - FIELD_OP_PLUS = 1, - FIELD_OP_MINUS = 2, - FIELD_OP_UNARY_MINUS = 3, - FIELD_OP_DIV = 4, - FIELD_OP_MULT = 5, -}; - -struct hist_field { - struct ftrace_event_field *field; - long unsigned int flags; - long unsigned int buckets; - const char *type; - struct hist_field *operands[2]; - struct hist_trigger_data *hist_data; - enum hist_field_fn fn_num; - unsigned int ref; - unsigned int size; - unsigned int offset; - unsigned int is_signed; - struct hist_var var; - enum field_op_id operator; - char *system; - char *event_name; - char *name; - unsigned int var_ref_idx; - bool read_once; - unsigned int var_str_idx; - u64 constant; - u64 div_multiplier; -}; - -struct hist_trigger_attrs; - -struct action_data; - -struct field_var; - -struct field_var_hist; - -struct hist_trigger_data { - struct hist_field *fields[22]; - unsigned int n_vals; - unsigned int n_keys; - unsigned int n_fields; - unsigned int n_vars; - unsigned int n_var_str; - unsigned int key_size; - struct tracing_map_sort_key sort_keys[2]; - unsigned int n_sort_keys; - struct trace_event_file *event_file; - struct hist_trigger_attrs *attrs; - struct tracing_map *map; - bool enable_timestamps; - bool remove; - struct hist_field *var_refs[16]; - unsigned int n_var_refs; - struct action_data *actions[8]; - unsigned int n_actions; - struct field_var *field_vars[64]; - unsigned int n_field_vars; - unsigned int n_field_var_str; - struct field_var_hist *field_var_hists[64]; - unsigned int n_field_var_hists; - struct field_var *save_vars[64]; - unsigned int n_save_vars; - unsigned int n_save_var_str; -}; - -enum hist_field_flags { - HIST_FIELD_FL_HITCOUNT = 1, - HIST_FIELD_FL_KEY = 2, - HIST_FIELD_FL_STRING = 4, - HIST_FIELD_FL_HEX = 8, - HIST_FIELD_FL_SYM = 16, - HIST_FIELD_FL_SYM_OFFSET = 32, - HIST_FIELD_FL_EXECNAME = 64, - HIST_FIELD_FL_SYSCALL = 128, - HIST_FIELD_FL_STACKTRACE = 256, - HIST_FIELD_FL_LOG2 = 512, - HIST_FIELD_FL_TIMESTAMP = 1024, - HIST_FIELD_FL_TIMESTAMP_USECS = 2048, - HIST_FIELD_FL_VAR = 4096, - HIST_FIELD_FL_EXPR = 8192, - HIST_FIELD_FL_VAR_REF = 16384, - HIST_FIELD_FL_CPU = 32768, - HIST_FIELD_FL_ALIAS = 65536, - HIST_FIELD_FL_BUCKET = 131072, - HIST_FIELD_FL_CONST = 262144, - HIST_FIELD_FL_PERCENT = 524288, - HIST_FIELD_FL_GRAPH = 1048576, - HIST_FIELD_FL_COMM = 2097152, -}; - -struct var_defs { - unsigned int n_vars; - char *name[16]; - char *expr[16]; -}; - -struct hist_trigger_attrs { - char *keys_str; - char *vals_str; - char *sort_key_str; - char *name; - char *clock; - bool pause; - bool cont; - bool clear; - bool ts_in_usecs; - bool no_hitcount; - unsigned int map_bits; - char *assignment_str[16]; - unsigned int n_assignments; - char *action_str[8]; - unsigned int n_actions; - struct var_defs var_defs; -}; - -struct field_var { - struct hist_field *var; - struct hist_field *val; -}; - -struct field_var_hist { - struct hist_trigger_data *hist_data; - char *cmd; -}; - -enum handler_id { - HANDLER_ONMATCH = 1, - HANDLER_ONMAX = 2, - HANDLER_ONCHANGE = 3, -}; - -enum action_id { - ACTION_SAVE = 1, - ACTION_TRACE = 2, - ACTION_SNAPSHOT = 3, -}; - -typedef void (*action_fn_t)(struct hist_trigger_data *, struct tracing_map_elt *, struct trace_buffer *, void *, struct ring_buffer_event *, void *, struct action_data *, u64 *); - -typedef bool (*check_track_val_fn_t)(u64, u64); - -struct action_data { - enum handler_id handler; - enum action_id action; - char *action_name; - action_fn_t fn; - unsigned int n_params; - char *params[64]; - unsigned int var_ref_idx[64]; - struct synth_event *synth_event; - bool use_trace_keyword; - char *synth_event_name; - union { - struct { - char *event; - char *event_system; - } match_data; - struct { - char *var_str; - struct hist_field *var_ref; - struct hist_field *track_var; - check_track_val_fn_t check_val; - action_fn_t save_data; - } track_data; - }; -}; - -struct track_data { - u64 track_val; - bool updated; - unsigned int key_len; - void *key; - struct tracing_map_elt elt; - struct action_data *action_data; - struct hist_trigger_data *hist_data; -}; - -struct hist_elt_data { - char *comm; - u64 *var_ref_vals; - char **field_var_str; - int n_field_var_str; -}; - -struct snapshot_context { - struct tracing_map_elt *elt; - void *key; -}; - -typedef void (*synth_probe_func_t)(void *, u64 *, unsigned int *); - -struct hist_var_data { - struct list_head list; - struct hist_trigger_data *hist_data; -}; - -struct hist_pad { - long unsigned int entries[16]; - u64 var_ref_vals[16]; - char compound_key[384]; -}; - -struct hist_val_stat { - u64 max; - u64 total; -}; - -struct hist_file_data { - struct file *file; - u64 last_read; - u64 last_act; -}; - -struct trace_event_raw_error_report_template { - struct trace_entry ent; - enum error_detector error_detector; - long unsigned int id; - char __data[0]; -}; - -struct trace_event_data_offsets_error_report_template {}; - -typedef void (*btf_trace_error_report_end)(void *, enum error_detector, long unsigned int); - -struct trace_uprobe { - struct dyn_event devent; - struct uprobe_consumer consumer; - struct path path; - char *filename; - struct uprobe *uprobe; - long unsigned int offset; - long unsigned int ref_ctr_offset; - long unsigned int *nhits; - struct trace_probe tp; -}; - -struct uprobe_trace_entry_head { - struct trace_entry ent; - long unsigned int vaddr[0]; -}; - -struct uprobe_cpu_buffer { - struct mutex mutex; - void *buf; - int dsize; -}; - -typedef bool (*filter_func_t)(struct uprobe_consumer *, struct mm_struct *); - -enum bpf_perf_event_type { - BPF_PERF_EVENT_UNSPEC = 0, - BPF_PERF_EVENT_UPROBE = 1, - BPF_PERF_EVENT_URETPROBE = 2, - BPF_PERF_EVENT_KPROBE = 3, - BPF_PERF_EVENT_KRETPROBE = 4, - BPF_PERF_EVENT_TRACEPOINT = 5, - BPF_PERF_EVENT_EVENT = 6, -}; - -enum { - BPF_F_KPROBE_MULTI_RETURN = 1, -}; - -enum bpf_stats_type { - BPF_STATS_RUN_TIME = 0, -}; - -struct bpf_token_info { - __u64 allowed_cmds; - __u64 allowed_maps; - __u64 allowed_progs; - __u64 allowed_attachs; -}; - -struct bpf_tracing_link { - struct bpf_tramp_link link; - struct bpf_trampoline *trampoline; - struct bpf_prog *tgt_prog; -}; - -struct pcpu_gen_cookie { - local_t nesting; - u64 last; -}; - -struct gen_cookie { - struct pcpu_gen_cookie *local; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - atomic64_t forward_last; - atomic64_t reverse_last; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum bpf_audit { - BPF_AUDIT_LOAD = 0, - BPF_AUDIT_UNLOAD = 1, - BPF_AUDIT_MAX = 2, -}; - -struct bpf_prog_kstats { - u64 nsecs; - u64 cnt; - u64 misses; -}; - -struct bpf_perf_link { - struct bpf_link link; - struct file *perf_file; -}; - -typedef u64 (*btf_bpf_sys_bpf)(int, union bpf_attr *, u32); - -typedef u64 (*btf_bpf_sys_close)(u32); - -typedef u64 (*btf_bpf_kallsyms_lookup_name)(const char *, int, int, u64 *); - -struct bpf_iter_seq_map_info { - u32 map_id; -}; - -struct bpf_iter__bpf_map { - union { - struct bpf_iter_meta *meta; - }; - union { - struct bpf_map *map; - }; -}; - -struct bucket { - struct hlist_nulls_head head; - rqspinlock_t raw_lock; -}; - -struct htab_elem; - -struct bpf_htab { - struct bpf_map map; - struct bpf_mem_alloc ma; - struct bpf_mem_alloc pcpu_ma; - struct bucket *buckets; - void *elems; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - union { - struct pcpu_freelist freelist; - struct bpf_lru lru; - }; - struct htab_elem **extra_elems; - struct percpu_counter pcount; - atomic_t count; - bool use_percpu_counter; - u32 n_buckets; - u32 elem_size; - u32 hashrnd; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct htab_elem { - union { - struct hlist_nulls_node hash_node; - struct { - void *padding; - union { - struct pcpu_freelist_node fnode; - struct htab_elem *batch_flink; - }; - }; - }; - union { - void *ptr_to_pptr; - struct bpf_lru_node lru_node; - }; - u32 hash; - long: 0; - char key[0]; -}; - -struct bpf_iter_seq_hash_map_info { - struct bpf_map *map; - struct bpf_htab *htab; - void *percpu_value_buf; - u32 bucket_id; - u32 skip_elems; -}; - -struct bpf_bloom_filter { - struct bpf_map map; - u32 bitset_mask; - u32 hash_seed; - u32 nr_hash_funcs; - long unsigned int bitset[0]; -}; - -enum { - BPF_RB_NO_WAKEUP = 1, - BPF_RB_FORCE_WAKEUP = 2, -}; - -enum { - BPF_RB_AVAIL_DATA = 0, - BPF_RB_RING_SIZE = 1, - BPF_RB_CONS_POS = 2, - BPF_RB_PROD_POS = 3, -}; - -enum { - BPF_RINGBUF_BUSY_BIT = 2147483648, - BPF_RINGBUF_DISCARD_BIT = 1073741824, - BPF_RINGBUF_HDR_SZ = 8, -}; - -struct bpf_ringbuf { - wait_queue_head_t waitq; - struct irq_work work; - u64 mask; - struct page **pages; - int nr_pages; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - rqspinlock_t spinlock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - atomic_t busy; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long unsigned int consumer_pos; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long unsigned int producer_pos; - long unsigned int pending_pos; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - char data[0]; -}; - -struct bpf_ringbuf_map { - struct bpf_map map; - struct bpf_ringbuf *rb; -}; - -struct bpf_ringbuf_hdr { - u32 len; - u32 pg_off; -}; - -typedef u64 (*btf_bpf_ringbuf_reserve)(struct bpf_map *, u64, u64); - -typedef u64 (*btf_bpf_ringbuf_submit)(void *, u64); - -typedef u64 (*btf_bpf_ringbuf_discard)(void *, u64); - -typedef u64 (*btf_bpf_ringbuf_output)(struct bpf_map *, void *, u64, u64); - -typedef u64 (*btf_bpf_ringbuf_query)(struct bpf_map *, u64); - -typedef u64 (*btf_bpf_ringbuf_reserve_dynptr)(struct bpf_map *, u32, u64, struct bpf_dynptr_kern *); - -typedef u64 (*btf_bpf_ringbuf_submit_dynptr)(struct bpf_dynptr_kern *, u64); - -typedef u64 (*btf_bpf_ringbuf_discard_dynptr)(struct bpf_dynptr_kern *, u64); - -typedef u64 (*btf_bpf_user_ringbuf_drain)(struct bpf_map *, void *, void *, u64); - -struct bpf_mem_cache { - struct llist_head free_llist; - local_t active; - struct llist_head free_llist_extra; - struct irq_work refill_work; - struct obj_cgroup *objcg; - int unit_size; - int free_cnt; - int low_watermark; - int high_watermark; - int batch; - int percpu_size; - bool draining; - struct bpf_mem_cache *tgt; - struct llist_head free_by_rcu; - struct llist_node *free_by_rcu_tail; - struct llist_head waiting_for_gp; - struct llist_node *waiting_for_gp_tail; - struct callback_head rcu; - atomic_t call_rcu_in_progress; - struct llist_head free_llist_extra_rcu; - struct llist_head free_by_rcu_ttrace; - struct llist_head waiting_for_gp_ttrace; - struct callback_head rcu_ttrace; - atomic_t call_rcu_ttrace_in_progress; -}; - -struct bpf_mem_caches { - struct bpf_mem_cache cache[11]; -}; - -struct range_node { - struct rb_node rn_rbnode; - struct rb_node rb_range_size; - u32 rn_start; - u32 rn_last; - u32 __rn_subtree_last; -}; - -struct bpf_netns_link { - struct bpf_link link; - struct net *net; - struct list_head node; - enum netns_bpf_attach_type netns_type; -}; - -typedef u64 (*btf_bpf_cgrp_storage_get)(struct bpf_map *, struct cgroup *, void *, u64, gfp_t); - -typedef u64 (*btf_bpf_cgrp_storage_delete)(struct bpf_map *, struct cgroup *); - -struct bpf_cpumask { - cpumask_t cpumask; - refcount_t usage; -}; - -enum btf_field_iter_kind { - BTF_FIELD_ITER_IDS = 0, - BTF_FIELD_ITER_STRS = 1, -}; - -struct btf_field_desc { - int t_off_cnt; - int t_offs[2]; - int m_sz; - int m_off_cnt; - int m_offs[1]; -}; - -struct btf_field_iter { - struct btf_field_desc desc; - void *p; - int m_idx; - int off_idx; - int vlen; -}; - -struct btf_relocate { - struct btf *btf; - const struct btf *base_btf; - const struct btf *dist_base_btf; - unsigned int nr_base_types; - unsigned int nr_split_types; - unsigned int nr_dist_base_types; - int dist_str_len; - int base_str_len; - __u32 *id_map; - __u32 *str_map; -}; - -struct btf_name_info { - const char *name; - bool needs_size: 1; - unsigned int size: 31; - __u32 id; -}; - -struct bpf_iter_kmem_cache { - __u64 __opaque[1]; -}; - -struct bpf_iter_kmem_cache_kern { - struct kmem_cache *pos; -}; - -struct bpf_iter__kmem_cache { - union { - struct bpf_iter_meta *meta; - }; - union { - struct kmem_cache *s; - }; -}; - -union kmem_cache_iter_priv { - struct bpf_iter_kmem_cache it; - struct bpf_iter_kmem_cache_kern kit; -}; - -struct callchain_cpus_entries { - struct callback_head callback_head; - struct perf_callchain_entry *cpu_entries[0]; -}; - -struct seqcount_rwlock { - seqcount_t seqcount; -}; - -typedef struct seqcount_rwlock seqcount_rwlock_t; - -struct uprobe { - struct rb_node rb_node; - refcount_t ref; - struct rw_semaphore register_rwsem; - struct rw_semaphore consumer_rwsem; - struct list_head pending_list; - struct list_head consumers; - struct inode *inode; - union { - struct callback_head rcu; - struct work_struct work; - }; - loff_t offset; - loff_t ref_ctr_offset; - long unsigned int flags; - struct arch_uprobe arch; -}; - -struct xol_area { - wait_queue_head_t wq; - long unsigned int *bitmap; - struct page *page; - long unsigned int vaddr; -}; - -struct delayed_uprobe { - struct list_head list; - struct uprobe *uprobe; - struct mm_struct *mm; -}; - -struct __uprobe_key { - struct inode *inode; - loff_t offset; -}; - -struct map_info___2 { - struct map_info___2 *next; - struct mm_struct *mm; - long unsigned int vaddr; -}; - -enum rseq_cpu_id_state { - RSEQ_CPU_ID_UNINITIALIZED = -1, - RSEQ_CPU_ID_REGISTRATION_FAILED = -2, -}; - -enum rseq_flags { - RSEQ_FLAG_UNREGISTER = 1, -}; - -enum rseq_cs_flags { - RSEQ_CS_FLAG_NO_RESTART_ON_PREEMPT = 1, - RSEQ_CS_FLAG_NO_RESTART_ON_SIGNAL = 2, - RSEQ_CS_FLAG_NO_RESTART_ON_MIGRATE = 4, -}; - -struct rseq_cs { - __u32 version; - __u32 flags; - __u64 start_ip; - __u64 post_commit_offset; - __u64 abort_ip; -}; - -struct trace_event_raw_rseq_update { - struct trace_entry ent; - s32 cpu_id; - s32 node_id; - s32 mm_cid; - char __data[0]; -}; - -struct trace_event_raw_rseq_ip_fixup { - struct trace_entry ent; - long unsigned int regs_ip; - long unsigned int start_ip; - long unsigned int post_commit_offset; - long unsigned int abort_ip; - char __data[0]; -}; - -struct trace_event_data_offsets_rseq_update {}; - -struct trace_event_data_offsets_rseq_ip_fixup {}; - -typedef void (*btf_trace_rseq_update)(void *, struct task_struct *); - -typedef void (*btf_trace_rseq_ip_fixup)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - -struct wb_stats { - long unsigned int nr_dirty; - long unsigned int nr_io; - long unsigned int nr_more_io; - long unsigned int nr_dirty_time; - long unsigned int nr_writeback; - long unsigned int nr_reclaimable; - long unsigned int nr_dirtied; - long unsigned int nr_written; - long unsigned int dirty_thresh; - long unsigned int wb_thresh; -}; - -struct alloc_context { - struct zonelist *zonelist; - nodemask_t *nodemask; - struct zoneref *preferred_zoneref; - int migratetype; - enum zone_type highest_zoneidx; - bool spread_dirty_pages; -}; - -struct trace_event_raw_mm_compaction_isolate_template { - struct trace_entry ent; - long unsigned int start_pfn; - long unsigned int end_pfn; - long unsigned int nr_scanned; - long unsigned int nr_taken; - char __data[0]; -}; - -struct trace_event_raw_mm_compaction_migratepages { - struct trace_entry ent; - long unsigned int nr_migrated; - long unsigned int nr_failed; - char __data[0]; -}; - -struct trace_event_raw_mm_compaction_begin { - struct trace_entry ent; - long unsigned int zone_start; - long unsigned int migrate_pfn; - long unsigned int free_pfn; - long unsigned int zone_end; - bool sync; - char __data[0]; -}; - -struct trace_event_raw_mm_compaction_end { - struct trace_entry ent; - long unsigned int zone_start; - long unsigned int migrate_pfn; - long unsigned int free_pfn; - long unsigned int zone_end; - bool sync; - int status; - char __data[0]; -}; - -struct trace_event_raw_mm_compaction_try_to_compact_pages { - struct trace_entry ent; - int order; - long unsigned int gfp_mask; - int prio; - char __data[0]; -}; - -struct trace_event_raw_mm_compaction_suitable_template { - struct trace_entry ent; - int nid; - enum zone_type idx; - int order; - int ret; - char __data[0]; -}; - -struct trace_event_raw_mm_compaction_defer_template { - struct trace_entry ent; - int nid; - enum zone_type idx; - int order; - unsigned int considered; - unsigned int defer_shift; - int order_failed; - char __data[0]; -}; - -struct trace_event_raw_mm_compaction_kcompactd_sleep { - struct trace_entry ent; - int nid; - char __data[0]; -}; - -struct trace_event_raw_kcompactd_wake_template { - struct trace_entry ent; - int nid; - int order; - enum zone_type highest_zoneidx; - char __data[0]; -}; - -struct trace_event_data_offsets_mm_compaction_isolate_template {}; - -struct trace_event_data_offsets_mm_compaction_migratepages {}; - -struct trace_event_data_offsets_mm_compaction_begin {}; - -struct trace_event_data_offsets_mm_compaction_end {}; - -struct trace_event_data_offsets_mm_compaction_try_to_compact_pages {}; - -struct trace_event_data_offsets_mm_compaction_suitable_template {}; - -struct trace_event_data_offsets_mm_compaction_defer_template {}; - -struct trace_event_data_offsets_mm_compaction_kcompactd_sleep {}; - -struct trace_event_data_offsets_kcompactd_wake_template {}; - -typedef void (*btf_trace_mm_compaction_isolate_migratepages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - -typedef void (*btf_trace_mm_compaction_isolate_freepages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - -typedef void (*btf_trace_mm_compaction_fast_isolate_freepages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int); - -typedef void (*btf_trace_mm_compaction_migratepages)(void *, unsigned int, unsigned int); - -typedef void (*btf_trace_mm_compaction_begin)(void *, struct compact_control *, long unsigned int, long unsigned int, bool); - -typedef void (*btf_trace_mm_compaction_end)(void *, struct compact_control *, long unsigned int, long unsigned int, bool, int); - -typedef void (*btf_trace_mm_compaction_try_to_compact_pages)(void *, int, gfp_t, int); - -typedef void (*btf_trace_mm_compaction_finished)(void *, struct zone *, int, int); - -typedef void (*btf_trace_mm_compaction_suitable)(void *, struct zone *, int, int); - -typedef void (*btf_trace_mm_compaction_deferred)(void *, struct zone *, int); - -typedef void (*btf_trace_mm_compaction_defer_compaction)(void *, struct zone *, int); - -typedef void (*btf_trace_mm_compaction_defer_reset)(void *, struct zone *, int); - -typedef void (*btf_trace_mm_compaction_kcompactd_sleep)(void *, int); - -typedef void (*btf_trace_mm_compaction_wakeup_kcompactd)(void *, int, int, enum zone_type); - -typedef void (*btf_trace_mm_compaction_kcompactd_wake)(void *, int, int, enum zone_type); - -typedef enum { - ISOLATE_ABORT = 0, - ISOLATE_NONE = 1, - ISOLATE_SUCCESS = 2, -} isolate_migrate_t; - -enum { - FOLL_TOUCH = 65536, - FOLL_TRIED = 131072, - FOLL_REMOTE = 262144, - FOLL_PIN = 524288, - FOLL_FAST_ONLY = 1048576, - FOLL_UNLOCKABLE = 2097152, - FOLL_MADV_POPULATE = 4194304, -}; - -struct follow_page_context { - struct dev_pagemap *pgmap; - unsigned int page_mask; -}; - -struct pages_or_folios { - union { - struct page **pages; - struct folio **folios; - void **entries; - }; - bool has_folios; - long int nr_entries; -}; - -struct trace_event_raw_tlb_flush { - struct trace_entry ent; - int reason; - long unsigned int pages; - char __data[0]; -}; - -struct trace_event_data_offsets_tlb_flush {}; - -typedef void (*btf_trace_tlb_flush)(void *, int, long unsigned int); - -struct trace_event_raw_mm_migrate_pages { - struct trace_entry ent; - long unsigned int succeeded; - long unsigned int failed; - long unsigned int thp_succeeded; - long unsigned int thp_failed; - long unsigned int thp_split; - long unsigned int large_folio_split; - enum migrate_mode mode; - int reason; - char __data[0]; -}; - -struct trace_event_raw_mm_migrate_pages_start { - struct trace_entry ent; - enum migrate_mode mode; - int reason; - char __data[0]; -}; - -struct trace_event_raw_migration_pte { - struct trace_entry ent; - long unsigned int addr; - long unsigned int pte; - int order; - char __data[0]; -}; - -struct trace_event_data_offsets_mm_migrate_pages {}; - -struct trace_event_data_offsets_mm_migrate_pages_start {}; - -struct trace_event_data_offsets_migration_pte {}; - -typedef void (*btf_trace_mm_migrate_pages)(void *, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int, enum migrate_mode, int); - -typedef void (*btf_trace_mm_migrate_pages_start)(void *, enum migrate_mode, int); - -typedef void (*btf_trace_set_migration_pte)(void *, long unsigned int, long unsigned int, int); - -typedef void (*btf_trace_remove_migration_pte)(void *, long unsigned int, long unsigned int, int); - -struct folio_referenced_arg { - int mapcount; - int referenced; - vm_flags_t vm_flags; - struct mem_cgroup *memcg; -}; - -struct wrprotect_file_state { - int cleaned; - long unsigned int pgoff; - long unsigned int pfn; - long unsigned int nr_pages; -}; - -typedef unsigned int acr_flags_t; - -typedef int fpi_t; - -enum rmqueue_mode { - RMQUEUE_NORMAL = 0, - RMQUEUE_CMA = 1, - RMQUEUE_CLAIM = 2, - RMQUEUE_STEAL = 3, -}; - -struct swap_iocb { - struct kiocb iocb; - struct bio_vec bvec[32]; - int pages; - int len; -}; - -struct dma_block { - struct dma_block *next_block; - dma_addr_t dma; -}; - -struct dma_pool { - struct list_head page_list; - spinlock_t lock; - struct dma_block *next_block; - size_t nr_blocks; - size_t nr_active; - size_t nr_pages; - struct device *dev; - unsigned int size; - unsigned int allocation; - unsigned int boundary; - int node; - char name[32]; - struct list_head pools; -}; - -struct dma_page { - struct list_head page_list; - void *vaddr; - dma_addr_t dma; -}; - -struct nodemask_scratch { - nodemask_t mask1; - nodemask_t mask2; -}; - -struct sp_node { - struct rb_node nd; - long unsigned int start; - long unsigned int end; - struct mempolicy *policy; -}; - -struct weighted_interleave_state { - bool mode_auto; - u8 iw_table[0]; -}; - -struct mempolicy_operations { - int (*create)(struct mempolicy *, const nodemask_t *); - void (*rebind)(struct mempolicy *, const nodemask_t *); -}; - -struct migration_mpol { - struct mempolicy *pol; - long unsigned int ilx; -}; - -struct queue_pages { - struct list_head *pagelist; - long unsigned int flags; - nodemask_t *nmask; - long unsigned int start; - long unsigned int end; - struct vm_area_struct *first; - struct folio *large; - long int nr_failed; -}; - -struct iw_node_attr { - struct kobj_attribute kobj_attr; - int nid; -}; - -struct sysfs_wi_group { - struct kobject wi_kobj; - struct mutex kobj_lock; - struct iw_node_attr *nattrs[0]; -}; - -struct memory_tier { - struct list_head list; - struct list_head memory_types; - int adistance_start; - struct device dev; - nodemask_t lower_tier_mask; -}; - -struct memory_dev_type { - struct list_head tier_sibling; - struct list_head list; - int adistance; - nodemask_t nodes; - struct kref kref; -}; - -struct demotion_nodes { - nodemask_t preferred; -}; - -struct node_memory_type_map { - struct memory_dev_type *memtype; - int map_count; -}; - -enum scan_result { - SCAN_FAIL = 0, - SCAN_SUCCEED = 1, - SCAN_PMD_NULL = 2, - SCAN_PMD_NONE = 3, - SCAN_PMD_MAPPED = 4, - SCAN_EXCEED_NONE_PTE = 5, - SCAN_EXCEED_SWAP_PTE = 6, - SCAN_EXCEED_SHARED_PTE = 7, - SCAN_PTE_NON_PRESENT = 8, - SCAN_PTE_UFFD_WP = 9, - SCAN_PTE_MAPPED_HUGEPAGE = 10, - SCAN_PAGE_RO = 11, - SCAN_LACK_REFERENCED_PAGE = 12, - SCAN_PAGE_NULL = 13, - SCAN_SCAN_ABORT = 14, - SCAN_PAGE_COUNT = 15, - SCAN_PAGE_LRU = 16, - SCAN_PAGE_LOCK = 17, - SCAN_PAGE_ANON = 18, - SCAN_PAGE_COMPOUND = 19, - SCAN_ANY_PROCESS = 20, - SCAN_VMA_NULL = 21, - SCAN_VMA_CHECK = 22, - SCAN_ADDRESS_RANGE = 23, - SCAN_DEL_PAGE_LRU = 24, - SCAN_ALLOC_HUGE_PAGE_FAIL = 25, - SCAN_CGROUP_CHARGE_FAIL = 26, - SCAN_TRUNCATED = 27, - SCAN_PAGE_HAS_PRIVATE = 28, - SCAN_STORE_FAILED = 29, - SCAN_COPY_MC = 30, - SCAN_PAGE_FILLED = 31, -}; - -struct trace_event_raw_mm_khugepaged_scan_pmd { - struct trace_entry ent; - struct mm_struct *mm; - long unsigned int pfn; - bool writable; - int referenced; - int none_or_zero; - int status; - int unmapped; - char __data[0]; -}; - -struct trace_event_raw_mm_collapse_huge_page { - struct trace_entry ent; - struct mm_struct *mm; - int isolated; - int status; - char __data[0]; -}; - -struct trace_event_raw_mm_collapse_huge_page_isolate { - struct trace_entry ent; - long unsigned int pfn; - int none_or_zero; - int referenced; - bool writable; - int status; - char __data[0]; -}; - -struct trace_event_raw_mm_collapse_huge_page_swapin { - struct trace_entry ent; - struct mm_struct *mm; - int swapped_in; - int referenced; - int ret; - char __data[0]; -}; - -struct trace_event_raw_mm_khugepaged_scan_file { - struct trace_entry ent; - struct mm_struct *mm; - long unsigned int pfn; - u32 __data_loc_filename; - int present; - int swap; - int result; - char __data[0]; -}; - -struct trace_event_raw_mm_khugepaged_collapse_file { - struct trace_entry ent; - struct mm_struct *mm; - long unsigned int hpfn; - long unsigned int index; - long unsigned int addr; - bool is_shmem; - u32 __data_loc_filename; - int nr; - int result; - char __data[0]; -}; - -struct trace_event_data_offsets_mm_khugepaged_scan_pmd {}; - -struct trace_event_data_offsets_mm_collapse_huge_page {}; - -struct trace_event_data_offsets_mm_collapse_huge_page_isolate {}; - -struct trace_event_data_offsets_mm_collapse_huge_page_swapin {}; - -struct trace_event_data_offsets_mm_khugepaged_scan_file { - u32 filename; - const void *filename_ptr_; -}; - -struct trace_event_data_offsets_mm_khugepaged_collapse_file { - u32 filename; - const void *filename_ptr_; -}; - -typedef void (*btf_trace_mm_khugepaged_scan_pmd)(void *, struct mm_struct *, struct folio *, bool, int, int, int, int); - -typedef void (*btf_trace_mm_collapse_huge_page)(void *, struct mm_struct *, int, int); - -typedef void (*btf_trace_mm_collapse_huge_page_isolate)(void *, struct folio *, int, int, bool, int); - -typedef void (*btf_trace_mm_collapse_huge_page_swapin)(void *, struct mm_struct *, int, int, int); - -typedef void (*btf_trace_mm_khugepaged_scan_file)(void *, struct mm_struct *, struct folio *, struct file *, int, int, int); - -typedef void (*btf_trace_mm_khugepaged_collapse_file)(void *, struct mm_struct *, struct folio *, long unsigned int, long unsigned int, bool, struct file *, int, int); - -struct collapse_control { - bool is_khugepaged; - u32 node_load[1024]; - nodemask_t alloc_nmask; -}; - -struct khugepaged_mm_slot { - struct mm_slot slot; -}; - -struct khugepaged_scan { - struct list_head mm_head; - struct khugepaged_mm_slot *mm_slot; - long unsigned int address; -}; - -enum { - RES_USAGE = 0, - RES_RSVD_USAGE = 1, - RES_LIMIT = 2, - RES_RSVD_LIMIT = 3, - RES_MAX_USAGE = 4, - RES_RSVD_MAX_USAGE = 5, - RES_FAILCNT = 6, - RES_RSVD_FAILCNT = 7, -}; - -struct trace_event_raw_test_pages_isolated { - struct trace_entry ent; - long unsigned int start_pfn; - long unsigned int end_pfn; - long unsigned int fin_pfn; - char __data[0]; -}; - -struct trace_event_data_offsets_test_pages_isolated {}; - -typedef void (*btf_trace_test_pages_isolated)(void *, long unsigned int, long unsigned int, long unsigned int); - -struct trace_event_raw_cma_release { - struct trace_entry ent; - u32 __data_loc_name; - long unsigned int pfn; - const struct page *page; - long unsigned int count; - char __data[0]; -}; - -struct trace_event_raw_cma_alloc_start { - struct trace_entry ent; - u32 __data_loc_name; - long unsigned int count; - unsigned int align; - char __data[0]; -}; - -struct trace_event_raw_cma_alloc_finish { - struct trace_entry ent; - u32 __data_loc_name; - long unsigned int pfn; - const struct page *page; - long unsigned int count; - unsigned int align; - int errorno; - char __data[0]; -}; - -struct trace_event_raw_cma_alloc_busy_retry { - struct trace_entry ent; - u32 __data_loc_name; - long unsigned int pfn; - const struct page *page; - long unsigned int count; - unsigned int align; - char __data[0]; -}; - -struct trace_event_data_offsets_cma_release { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_cma_alloc_start { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_cma_alloc_finish { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_cma_alloc_busy_retry { - u32 name; - const void *name_ptr_; -}; - -typedef void (*btf_trace_cma_release)(void *, const char *, long unsigned int, const struct page *, long unsigned int); - -typedef void (*btf_trace_cma_alloc_start)(void *, const char *, long unsigned int, unsigned int); - -typedef void (*btf_trace_cma_alloc_finish)(void *, const char *, long unsigned int, const struct page *, long unsigned int, unsigned int, int); - -typedef void (*btf_trace_cma_alloc_busy_retry)(void *, const char *, long unsigned int, const struct page *, long unsigned int, unsigned int); - -enum cma_flags { - CMA_RESERVE_PAGES_ON_ERROR = 0, - CMA_ZONES_VALID = 1, - CMA_ZONES_INVALID = 2, - CMA_ACTIVATED = 3, -}; - -struct cma_init_memrange { - phys_addr_t base; - phys_addr_t size; - struct list_head list; -}; - -enum { - BAD_STACK = -1, - NOT_STACK = 0, - GOOD_FRAME = 1, - GOOD_STACK = 2, -}; - -enum hmm_pfn_flags { - HMM_PFN_VALID = 9223372036854775808ULL, - HMM_PFN_WRITE = 4611686018427387904ULL, - HMM_PFN_ERROR = 2305843009213693952ULL, - HMM_PFN_DMA_MAPPED = 1152921504606846976ULL, - HMM_PFN_P2PDMA = 576460752303423488ULL, - HMM_PFN_P2PDMA_BUS = 288230376151711744ULL, - HMM_PFN_ORDER_SHIFT = 53ULL, - HMM_PFN_REQ_FAULT = 9223372036854775808ULL, - HMM_PFN_REQ_WRITE = 4611686018427387904ULL, - HMM_PFN_FLAGS = 18437736874454810624ULL, -}; - -struct hmm_range { - struct mmu_interval_notifier *notifier; - long unsigned int notifier_seq; - long unsigned int start; - long unsigned int end; - long unsigned int *hmm_pfns; - long unsigned int default_flags; - long unsigned int pfn_flags_mask; - void *dev_private_owner; -}; - -struct hmm_dma_map { - struct dma_iova_state state; - long unsigned int *pfn_list; - dma_addr_t *dma_list; - size_t dma_entry_size; -}; - -struct hmm_vma_walk { - struct hmm_range *range; - long unsigned int last; -}; - -enum { - HMM_NEED_FAULT = 1, - HMM_NEED_WRITE_FAULT = 2, - HMM_NEED_ALL_BITS = 3, -}; - -enum { - HMM_PFN_INOUT_FLAGS = 2017612633061982208ULL, -}; - -enum { - PAGE_REPORTING_IDLE = 0, - PAGE_REPORTING_REQUESTED = 1, - PAGE_REPORTING_ACTIVE = 2, -}; - -enum super_iter_flags_t { - SUPER_ITER_EXCL = 1, - SUPER_ITER_UNLOCKED = 2, - SUPER_ITER_REVERSE = 4, -}; - -union pipe_index { - long unsigned int head_tail; - struct { - pipe_index_t head; - pipe_index_t tail; - }; -}; - -struct file_clone_range { - __s64 src_fd; - __u64 src_offset; - __u64 src_length; - __u64 dest_offset; -}; - -struct fsuuid2 { - __u8 len; - __u8 uuid[16]; -}; - -struct fs_sysfs_path { - __u8 len; - __u8 name[128]; -}; - -struct space_resv { - __s16 l_type; - __s16 l_whence; - __s64 l_start; - __s64 l_len; - __s32 l_sysid; - __u32 l_pid; - __s32 l_pad[4]; -}; - -struct space_resv_32 { - __s16 l_type; - __s16 l_whence; - __s64 l_start; - __s64 l_len; - __s32 l_sysid; - __u32 l_pid; - __s32 l_pad[4]; -} __attribute__((packed)); - -struct fiemap { - __u64 fm_start; - __u64 fm_length; - __u32 fm_flags; - __u32 fm_mapped_extents; - __u32 fm_extent_count; - __u32 fm_reserved; - struct fiemap_extent fm_extents[0]; -}; - -typedef struct { - long unsigned int fds_bits[16]; -} __kernel_fd_set; - -typedef __kernel_fd_set fd_set; - -struct poll_table_entry { - struct file *filp; - __poll_t key; - wait_queue_entry_t wait; - wait_queue_head_t *wait_address; -}; - -struct poll_table_page; - -struct poll_wqueues { - poll_table pt; - struct poll_table_page *table; - struct task_struct *polling_task; - int triggered; - int error; - int inline_index; - struct poll_table_entry inline_entries[9]; -}; - -struct poll_table_page { - struct poll_table_page *next; - struct poll_table_entry *entry; - struct poll_table_entry entries[0]; -}; - -enum poll_time_type { - PT_TIMEVAL = 0, - PT_OLD_TIMEVAL = 1, - PT_TIMESPEC = 2, - PT_OLD_TIMESPEC = 3, -}; - -typedef struct { - long unsigned int *in; - long unsigned int *out; - long unsigned int *ex; - long unsigned int *res_in; - long unsigned int *res_out; - long unsigned int *res_ex; -} fd_set_bits; - -struct sigset_argpack { - sigset_t *p; - size_t size; -}; - -struct poll_list { - struct poll_list *next; - unsigned int len; - struct pollfd entries[0]; -}; - -struct compat_sel_arg_struct { - compat_ulong_t n; - compat_uptr_t inp; - compat_uptr_t outp; - compat_uptr_t exp; - compat_uptr_t tvp; -}; - -struct compat_sigset_argpack { - compat_uptr_t p; - compat_size_t size; -}; - -struct xattr_args { - __u64 value; - __u32 size; - __u32 flags; -}; - -struct mnt_ns_info { - __u32 size; - __u32 nr_mounts; - __u64 mnt_ns_id; -}; - -struct ns_get_path_task_args { - const struct proc_ns_operations *ns_ops; - struct task_struct *task; -}; - -struct fsxattr { - __u32 fsx_xflags; - __u32 fsx_extsize; - __u32 fsx_nextents; - __u32 fsx_projid; - __u32 fsx_cowextsize; - unsigned char fsx_pad[8]; -}; - -struct file_attr { - __u64 fa_xflags; - __u32 fa_extsize; - __u32 fa_nextents; - __u32 fa_projid; - __u32 fa_cowextsize; -}; - -struct mpage_readpage_args { - struct bio *bio; - struct folio *folio; - unsigned int nr_pages; - bool is_readahead; - sector_t last_block_in_bio; - struct buffer_head map_bh; - long unsigned int first_logical_block; - get_block_t *get_block; -}; - -struct mpage_data { - struct bio *bio; - sector_t last_block_in_bio; - get_block_t *get_block; -}; - -typedef struct fsnotify_mark_connector *fsnotify_connp_t; - -struct inotify_event { - __s32 wd; - __u32 mask; - __u32 cookie; - __u32 len; - char name[0]; -}; - -struct epoll_event { - __poll_t events; - __u64 data; -} __attribute__((packed)); - -struct epoll_params { - __u32 busy_poll_usecs; - __u16 busy_poll_budget; - __u8 prefer_busy_poll; - __u8 __pad; -}; - -struct epoll_filefd { - struct file *file; - int fd; -} __attribute__((packed)); - -struct epitem; - -struct eppoll_entry { - struct eppoll_entry *next; - struct epitem *base; - wait_queue_entry_t wait; - wait_queue_head_t *whead; -}; - -struct eventpoll; - -struct epitem { - union { - struct rb_node rbn; - struct callback_head rcu; - }; - struct list_head rdllink; - struct epitem *next; - struct epoll_filefd ffd; - bool dying; - struct eppoll_entry *pwqlist; - struct eventpoll *ep; - struct hlist_node fllink; - struct wakeup_source *ws; - struct epoll_event event; -}; - -struct eventpoll { - struct mutex mtx; - wait_queue_head_t wq; - wait_queue_head_t poll_wait; - struct list_head rdllist; - spinlock_t lock; - struct rb_root_cached rbr; - struct epitem *ovflist; - struct wakeup_source *ws; - struct user_struct *user; - struct file *file; - u64 gen; - struct hlist_head refs; - u8 loop_check_depth; - refcount_t refcount; - unsigned int napi_id; - u32 busy_poll_usecs; - u16 busy_poll_budget; - bool prefer_busy_poll; -}; - -struct ep_pqueue { - poll_table pt; - struct epitem *epi; -}; - -struct epitems_head { - struct hlist_head epitems; - struct epitems_head *next; -}; - -struct kioctx; - -struct kioctx_table { - struct callback_head rcu; - unsigned int nr; - struct kioctx *table[0]; -}; - -typedef __kernel_ulong_t aio_context_t; - -enum { - IOCB_CMD_PREAD = 0, - IOCB_CMD_PWRITE = 1, - IOCB_CMD_FSYNC = 2, - IOCB_CMD_FDSYNC = 3, - IOCB_CMD_POLL = 5, - IOCB_CMD_NOOP = 6, - IOCB_CMD_PREADV = 7, - IOCB_CMD_PWRITEV = 8, -}; - -struct io_event { - __u64 data; - __u64 obj; - __s64 res; - __s64 res2; -}; - -struct iocb { - __u64 aio_data; - __u32 aio_key; - __kernel_rwf_t aio_rw_flags; - __u16 aio_lio_opcode; - __s16 aio_reqprio; - __u32 aio_fildes; - __u64 aio_buf; - __u64 aio_nbytes; - __s64 aio_offset; - __u64 aio_reserved2; - __u32 aio_flags; - __u32 aio_resfd; -}; - -typedef u32 compat_aio_context_t; - -typedef int kiocb_cancel_fn(struct kiocb *); - -struct aio_ring { - unsigned int id; - unsigned int nr; - unsigned int head; - unsigned int tail; - unsigned int magic; - unsigned int compat_features; - unsigned int incompat_features; - unsigned int header_length; - struct io_event io_events[0]; -}; - -struct kioctx_cpu; - -struct ctx_rq_wait; - -struct kioctx { - struct percpu_ref users; - atomic_t dead; - struct percpu_ref reqs; - long unsigned int user_id; - struct kioctx_cpu *cpu; - unsigned int req_batch; - unsigned int max_reqs; - unsigned int nr_events; - long unsigned int mmap_base; - long unsigned int mmap_size; - struct folio **ring_folios; - long int nr_pages; - struct rcu_work free_rwork; - struct ctx_rq_wait *rq_wait; - long: 64; - long: 64; - long: 64; - struct { - atomic_t reqs_available; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - }; - struct { - spinlock_t ctx_lock; - struct list_head active_reqs; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - }; - struct { - struct mutex ring_lock; - wait_queue_head_t wait; - long: 64; - }; - struct { - unsigned int tail; - unsigned int completed_events; - spinlock_t completion_lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - }; - struct folio *internal_folios[8]; - struct file *aio_ring_file; - unsigned int id; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct kioctx_cpu { - unsigned int reqs_available; -}; - -struct ctx_rq_wait { - struct completion comp; - atomic_t count; -}; - -struct fsync_iocb { - struct file *file; - struct work_struct work; - bool datasync; - struct cred *creds; -}; - -struct poll_iocb { - struct file *file; - struct wait_queue_head *head; - __poll_t events; - bool cancelled; - bool work_scheduled; - bool work_need_resched; - struct wait_queue_entry wait; - struct work_struct work; -}; - -struct aio_kiocb { - union { - struct file *ki_filp; - struct kiocb rw; - struct fsync_iocb fsync; - struct poll_iocb poll; - }; - struct kioctx *ki_ctx; - kiocb_cancel_fn *ki_cancel; - struct io_event ki_res; - struct list_head ki_list; - refcount_t ki_refcnt; - struct eventfd_ctx *ki_eventfd; -}; - -struct aio_waiter { - struct wait_queue_entry w; - size_t min_nr; -}; - -struct aio_poll_table { - struct poll_table_struct pt; - struct aio_kiocb *iocb; - bool queued; - int error; -}; - -struct __aio_sigset { - const sigset_t *sigmask; - size_t sigsetsize; -}; - -struct __compat_aio_sigset { - compat_uptr_t sigmask; - compat_size_t sigsetsize; -}; - -struct fscrypt_symlink_data { - __le16 len; - char encrypted_path[0]; -}; - -struct fscrypt_get_policy_ex_arg { - __u64 policy_size; - union { - __u8 version; - struct fscrypt_policy_v1 v1; - struct fscrypt_policy_v2 v2; - } policy; -}; - -struct elf_thread_core_info___2 { - struct elf_thread_core_info___2 *next; - struct task_struct *task; - struct elf_prstatus prstatus; - struct memelfnote notes[0]; -}; - -struct elf_note_info___2 { - struct elf_thread_core_info___2 *thread; - struct memelfnote psinfo; - struct memelfnote signote; - struct memelfnote auxv; - struct memelfnote files; - siginfo_t csigdata; - size_t size; - int thread_notes; -}; - -struct mb_cache { - struct hlist_bl_head *c_hash; - int c_bucket_bits; - long unsigned int c_max_entries; - spinlock_t c_list_lock; - struct list_head c_list; - long unsigned int c_entry_count; - struct shrinker *c_shrink; - struct work_struct c_shrink_work; -}; - -struct trace_event_raw_iomap_readpage_class { - struct trace_entry ent; - dev_t dev; - u64 ino; - int nr_pages; - char __data[0]; -}; - -struct trace_event_raw_iomap_range_class { - struct trace_entry ent; - dev_t dev; - u64 ino; - loff_t size; - loff_t offset; - u64 length; - char __data[0]; -}; - -struct trace_event_raw_iomap_class { - struct trace_entry ent; - dev_t dev; - u64 ino; - u64 addr; - loff_t offset; - u64 length; - u16 type; - u16 flags; - dev_t bdev; - char __data[0]; -}; - -struct trace_event_raw_iomap_add_to_ioend { - struct trace_entry ent; - dev_t dev; - u64 ino; - u64 pos; - u64 dirty_len; - u64 addr; - loff_t offset; - u64 length; - u16 type; - u16 flags; - dev_t bdev; - char __data[0]; -}; - -struct trace_event_raw_iomap_iter { - struct trace_entry ent; - dev_t dev; - u64 ino; - loff_t pos; - u64 length; - int status; - unsigned int flags; - const void *ops; - long unsigned int caller; - char __data[0]; -}; - -struct trace_event_raw_iomap_dio_rw_begin { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t isize; - loff_t pos; - size_t count; - size_t done_before; - int ki_flags; - unsigned int dio_flags; - bool aio; - char __data[0]; -}; - -struct trace_event_raw_iomap_dio_complete { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t isize; - loff_t pos; - int ki_flags; - bool aio; - int error; - ssize_t ret; - char __data[0]; -}; - -struct trace_event_data_offsets_iomap_readpage_class {}; - -struct trace_event_data_offsets_iomap_range_class {}; - -struct trace_event_data_offsets_iomap_class {}; - -struct trace_event_data_offsets_iomap_add_to_ioend {}; - -struct trace_event_data_offsets_iomap_iter {}; - -struct trace_event_data_offsets_iomap_dio_rw_begin {}; - -struct trace_event_data_offsets_iomap_dio_complete {}; - -typedef void (*btf_trace_iomap_readpage)(void *, struct inode *, int); - -typedef void (*btf_trace_iomap_readahead)(void *, struct inode *, int); - -typedef void (*btf_trace_iomap_writeback_folio)(void *, struct inode *, loff_t, u64); - -typedef void (*btf_trace_iomap_release_folio)(void *, struct inode *, loff_t, u64); - -typedef void (*btf_trace_iomap_invalidate_folio)(void *, struct inode *, loff_t, u64); - -typedef void (*btf_trace_iomap_dio_invalidate_fail)(void *, struct inode *, loff_t, u64); - -typedef void (*btf_trace_iomap_dio_rw_queued)(void *, struct inode *, loff_t, u64); - -typedef void (*btf_trace_iomap_iter_dstmap)(void *, struct inode *, struct iomap *); - -typedef void (*btf_trace_iomap_iter_srcmap)(void *, struct inode *, struct iomap *); - -typedef void (*btf_trace_iomap_add_to_ioend)(void *, struct inode *, u64, unsigned int, struct iomap *); - -typedef void (*btf_trace_iomap_iter)(void *, struct iomap_iter *, const void *, long unsigned int); - -typedef void (*btf_trace_iomap_dio_rw_begin)(void *, struct kiocb *, struct iov_iter *, unsigned int, size_t); - -typedef void (*btf_trace_iomap_dio_complete)(void *, struct kiocb *, int, ssize_t); - -struct iomap_swapfile_info { - struct iomap iomap; - struct swap_info_struct *sis; - uint64_t lowest_ppage; - uint64_t highest_ppage; - long unsigned int nr_pages; - int nr_extents; - struct file *file; -}; - -enum { - QUOTA_NL_C_UNSPEC = 0, - QUOTA_NL_C_WARNING = 1, - __QUOTA_NL_C_MAX = 2, -}; - -enum { - QUOTA_NL_A_UNSPEC = 0, - QUOTA_NL_A_QTYPE = 1, - QUOTA_NL_A_EXCESS_ID = 2, - QUOTA_NL_A_WARNING = 3, - QUOTA_NL_A_DEV_MAJOR = 4, - QUOTA_NL_A_DEV_MINOR = 5, - QUOTA_NL_A_CAUSED_ID = 6, - QUOTA_NL_A_PAD = 7, - __QUOTA_NL_A_MAX = 8, -}; - -typedef long int intptr_t; - -enum proc_mem_force { - PROC_MEM_FORCE_ALWAYS = 0, - PROC_MEM_FORCE_PTRACE = 1, - PROC_MEM_FORCE_NEVER = 2, -}; - -struct pid_entry { - const char *name; - unsigned int len; - umode_t mode; - const struct inode_operations *iop; - const struct file_operations *fop; - union proc_op op; -}; - -struct limit_names { - const char *name; - const char *unit; -}; - -struct map_files_info { - long unsigned int start; - long unsigned int end; - fmode_t mode; -}; - -struct timers_private { - struct pid *pid; - struct task_struct *task; - struct pid_namespace *ns; -}; - -struct tgid_iter { - unsigned int tgid; - struct task_struct *task; -}; - -typedef struct elf64_note Elf64_Nhdr; - -struct vmcoredd_header { - __u32 n_namesz; - __u32 n_descsz; - __u32 n_type; - __u8 name[8]; - __u8 dump_name[44]; -}; - -struct vmcore_range { - struct list_head list; - long long unsigned int paddr; - long long unsigned int size; - loff_t offset; -}; - -struct vmcoredd_data { - char dump_name[44]; - unsigned int size; - int (*vmcoredd_callback)(struct vmcoredd_data *, void *); -}; - -struct vmcoredd_node { - struct list_head list; - void *buf; - unsigned int size; -}; - -enum kpage_operation { - KPAGE_FLAGS = 0, - KPAGE_COUNT = 1, - KPAGE_CGROUP = 2, -}; - -struct configfs_buffer { - size_t count; - loff_t pos; - char *page; - struct configfs_item_operations *ops; - struct mutex mutex; - int needs_read_fill; - bool read_in_progress; - bool write_in_progress; - char *bin_buffer; - int bin_buffer_size; - int cb_max_size; - struct config_item *item; - struct module *owner; - union { - struct configfs_attribute *attr; - struct configfs_bin_attribute *bin_attr; - }; -}; - -struct fsmap { - __u32 fmr_device; - __u32 fmr_flags; - __u64 fmr_physical; - __u64 fmr_owner; - __u64 fmr_offset; - __u64 fmr_length; - __u64 fmr_reserved[3]; -}; - -struct ext4_fsmap { - struct list_head fmr_list; - dev_t fmr_device; - uint32_t fmr_flags; - uint64_t fmr_physical; - uint64_t fmr_owner; - uint64_t fmr_length; -}; - -struct ext4_fsmap_head { - uint32_t fmh_iflags; - uint32_t fmh_oflags; - unsigned int fmh_count; - unsigned int fmh_entries; - struct ext4_fsmap fmh_keys[2]; -}; - -typedef int (*ext4_fsmap_format_t)(struct ext4_fsmap *, void *); - -struct ext4_getfsmap_info { - struct ext4_fsmap_head *gfi_head; - ext4_fsmap_format_t gfi_formatter; - void *gfi_format_arg; - ext4_fsblk_t gfi_next_fsblk; - u32 gfi_dev; - ext4_group_t gfi_agno; - struct ext4_fsmap gfi_low; - struct ext4_fsmap gfi_high; - struct ext4_fsmap gfi_lastfree; - struct list_head gfi_meta_list; - bool gfi_last; -}; - -struct ext4_getfsmap_dev { - int (*gfd_fn)(struct super_block *, struct ext4_fsmap *, struct ext4_getfsmap_info *); - u32 gfd_dev; -}; - -typedef struct { - __le32 *p; - __le32 key; - struct buffer_head *bh; -} Indirect; - -struct fsuuid { - __u32 fsu_len; - __u32 fsu_flags; - __u8 fsu_uuid[0]; -}; - -struct move_extent { - __u32 reserved; - __u32 donor_fd; - __u64 orig_start; - __u64 donor_start; - __u64 len; - __u64 moved_len; -}; - -struct ext4_new_group_input { - __u32 group; - __u64 block_bitmap; - __u64 inode_bitmap; - __u64 inode_table; - __u32 blocks_count; - __u16 reserved_blocks; - __u16 unused; -}; - -struct compat_ext4_new_group_input { - u32 group; - compat_u64 block_bitmap; - compat_u64 inode_bitmap; - compat_u64 inode_table; - u32 blocks_count; - u16 reserved_blocks; - u16 unused; -} __attribute__((packed)); - -struct fsmap_head { - __u32 fmh_iflags; - __u32 fmh_oflags; - __u32 fmh_count; - __u32 fmh_entries; - __u64 fmh_reserved[6]; - struct fsmap fmh_keys[2]; - struct fsmap fmh_recs[0]; -}; - -typedef void ext4_update_sb_callback(struct ext4_super_block *, const void *); - -struct getfsmap_info { - struct super_block *gi_sb; - struct fsmap_head *gi_data; - unsigned int gi_idx; - __u32 gi_last_flags; -}; - -struct mmp_struct { - __le32 mmp_magic; - __le32 mmp_seq; - __le64 mmp_time; - char mmp_nodename[64]; - char mmp_bdevname[32]; - __le16 mmp_check_interval; - __le16 mmp_pad1; - __le32 mmp_pad2[226]; - __le32 mmp_checksum; -}; - -enum { - I_DATA_SEM_NORMAL = 0, - I_DATA_SEM_OTHER = 1, - I_DATA_SEM_QUOTA = 2, - I_DATA_SEM_EA = 3, -}; - -struct ext4_lazy_init { - long unsigned int li_state; - struct list_head li_request_list; - struct mutex li_list_mtx; -}; - -struct trace_event_raw_ext4_other_inode_update_time { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ino_t orig_ino; - uid_t uid; - gid_t gid; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_free_inode { - struct trace_entry ent; - dev_t dev; - ino_t ino; - uid_t uid; - gid_t gid; - __u64 blocks; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_request_inode { - struct trace_entry ent; - dev_t dev; - ino_t dir; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_allocate_inode { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ino_t dir; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_evict_inode { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int nlink; - char __data[0]; -}; - -struct trace_event_raw_ext4_drop_inode { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int drop; - char __data[0]; -}; - -struct trace_event_raw_ext4_nfs_commit_metadata { - struct trace_entry ent; - dev_t dev; - ino_t ino; - char __data[0]; -}; - -struct trace_event_raw_ext4_mark_inode_dirty { - struct trace_entry ent; - dev_t dev; - ino_t ino; - long unsigned int ip; - char __data[0]; -}; - -struct trace_event_raw_ext4_begin_ordered_truncate { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t new_size; - char __data[0]; -}; - -struct trace_event_raw_ext4__write_begin { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t pos; - unsigned int len; - char __data[0]; -}; - -struct trace_event_raw_ext4__write_end { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t pos; - unsigned int len; - unsigned int copied; - char __data[0]; -}; - -struct trace_event_raw_ext4_writepages { - struct trace_entry ent; - dev_t dev; - ino_t ino; - long int nr_to_write; - long int pages_skipped; - loff_t range_start; - loff_t range_end; - long unsigned int writeback_index; - int sync_mode; - char for_kupdate; - char range_cyclic; - char __data[0]; -}; - -struct trace_event_raw_ext4_da_write_folios_start { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t start_pos; - loff_t next_pos; - long int nr_to_write; - int sync_mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_da_write_folios_end { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t start_pos; - loff_t next_pos; - long int nr_to_write; - int ret; - char __data[0]; -}; - -struct trace_event_raw_ext4_da_write_pages_extent { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 lblk; - __u32 len; - __u32 flags; - char __data[0]; -}; - -struct trace_event_raw_ext4_writepages_result { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int ret; - int pages_written; - long int pages_skipped; - long unsigned int writeback_index; - int sync_mode; - char __data[0]; -}; - -struct trace_event_raw_ext4__folio_op { - struct trace_entry ent; - dev_t dev; - ino_t ino; - long unsigned int index; - char __data[0]; -}; - -struct trace_event_raw_ext4_invalidate_folio_op { - struct trace_entry ent; - dev_t dev; - ino_t ino; - long unsigned int index; - size_t offset; - size_t length; - char __data[0]; -}; - -struct trace_event_raw_ext4_discard_blocks { - struct trace_entry ent; - dev_t dev; - __u64 blk; - __u64 count; - char __data[0]; -}; - -struct trace_event_raw_ext4__mb_new_pa { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 pa_pstart; - __u64 pa_lstart; - __u32 pa_len; - char __data[0]; -}; - -struct trace_event_raw_ext4_mb_release_inode_pa { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 block; - __u32 count; - char __data[0]; -}; - -struct trace_event_raw_ext4_mb_release_group_pa { - struct trace_entry ent; - dev_t dev; - __u64 pa_pstart; - __u32 pa_len; - char __data[0]; -}; - -struct trace_event_raw_ext4_discard_preallocations { - struct trace_entry ent; - dev_t dev; - ino_t ino; - unsigned int len; - char __data[0]; -}; - -struct trace_event_raw_ext4_mb_discard_preallocations { - struct trace_entry ent; - dev_t dev; - int needed; - char __data[0]; -}; - -struct trace_event_raw_ext4_request_blocks { - struct trace_entry ent; - dev_t dev; - ino_t ino; - unsigned int len; - __u32 logical; - __u32 lleft; - __u32 lright; - __u64 goal; - __u64 pleft; - __u64 pright; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_ext4_allocate_blocks { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 block; - unsigned int len; - __u32 logical; - __u32 lleft; - __u32 lright; - __u64 goal; - __u64 pleft; - __u64 pright; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_ext4_free_blocks { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 block; - long unsigned int count; - int flags; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_sync_file_enter { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ino_t parent; - int datasync; - char __data[0]; -}; - -struct trace_event_raw_ext4_sync_file_exit { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int ret; - char __data[0]; -}; - -struct trace_event_raw_ext4_sync_fs { - struct trace_entry ent; - dev_t dev; - int wait; - char __data[0]; -}; - -struct trace_event_raw_ext4_alloc_da_blocks { - struct trace_entry ent; - dev_t dev; - ino_t ino; - unsigned int data_blocks; - char __data[0]; -}; - -struct trace_event_raw_ext4_mballoc_alloc { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u32 orig_logical; - int orig_start; - __u32 orig_group; - int orig_len; - __u32 goal_logical; - int goal_start; - __u32 goal_group; - int goal_len; - __u32 result_logical; - int result_start; - __u32 result_group; - int result_len; - __u16 found; - __u16 groups; - __u16 buddy; - __u16 flags; - __u16 tail; - __u8 cr; - char __data[0]; -}; - -struct trace_event_raw_ext4_mballoc_prealloc { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u32 orig_logical; - int orig_start; - __u32 orig_group; - int orig_len; - __u32 result_logical; - int result_start; - __u32 result_group; - int result_len; - char __data[0]; -}; - -struct trace_event_raw_ext4__mballoc { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int result_start; - __u32 result_group; - int result_len; - char __data[0]; -}; - -struct trace_event_raw_ext4_forget { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 block; - int is_metadata; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_da_update_reserve_space { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 i_blocks; - int used_blocks; - int reserved_data_blocks; - int quota_claim; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_da_reserve_space { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 i_blocks; - int reserve_blocks; - int reserved_data_blocks; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_da_release_space { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 i_blocks; - int freed_blocks; - int reserved_data_blocks; - __u16 mode; - char __data[0]; -}; - -struct trace_event_raw_ext4__bitmap_load { - struct trace_entry ent; - dev_t dev; - __u32 group; - char __data[0]; -}; - -struct trace_event_raw_ext4_read_block_bitmap_load { - struct trace_entry ent; - dev_t dev; - __u32 group; - bool prefetch; - char __data[0]; -}; - -struct trace_event_raw_ext4__fallocate_mode { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t offset; - loff_t len; - int mode; - char __data[0]; -}; - -struct trace_event_raw_ext4_fallocate_exit { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t pos; - unsigned int blocks; - int ret; - char __data[0]; -}; - -struct trace_event_raw_ext4_unlink_enter { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ino_t parent; - loff_t size; - char __data[0]; -}; - -struct trace_event_raw_ext4_unlink_exit { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int ret; - char __data[0]; -}; - -struct trace_event_raw_ext4__truncate { - struct trace_entry ent; - dev_t dev; - ino_t ino; - __u64 blocks; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_convert_to_initialized_enter { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t m_lblk; - unsigned int m_len; - ext4_lblk_t u_lblk; - unsigned int u_len; - ext4_fsblk_t u_pblk; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_convert_to_initialized_fastpath { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t m_lblk; - unsigned int m_len; - ext4_lblk_t u_lblk; - unsigned int u_len; - ext4_fsblk_t u_pblk; - ext4_lblk_t i_lblk; - unsigned int i_len; - ext4_fsblk_t i_pblk; - char __data[0]; -}; - -struct trace_event_raw_ext4__map_blocks_enter { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t lblk; - unsigned int len; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_ext4__map_blocks_exit { - struct trace_entry ent; - dev_t dev; - ino_t ino; - unsigned int flags; - ext4_fsblk_t pblk; - ext4_lblk_t lblk; - unsigned int len; - unsigned int mflags; - int ret; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_load_extent { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_fsblk_t pblk; - ext4_lblk_t lblk; - char __data[0]; -}; - -struct trace_event_raw_ext4_load_inode { - struct trace_entry ent; - dev_t dev; - ino_t ino; - char __data[0]; -}; - -struct trace_event_raw_ext4_journal_start_sb { - struct trace_entry ent; - dev_t dev; - long unsigned int ip; - int blocks; - int rsv_blocks; - int revoke_creds; - int type; - char __data[0]; -}; - -struct trace_event_raw_ext4_journal_start_inode { - struct trace_entry ent; - long unsigned int ino; - dev_t dev; - long unsigned int ip; - int blocks; - int rsv_blocks; - int revoke_creds; - int type; - char __data[0]; -}; - -struct trace_event_raw_ext4_journal_start_reserved { - struct trace_entry ent; - dev_t dev; - long unsigned int ip; - int blocks; - char __data[0]; -}; - -struct trace_event_raw_ext4__trim { - struct trace_entry ent; - int dev_major; - int dev_minor; - __u32 group; - int start; - int len; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_handle_unwritten_extents { - struct trace_entry ent; - dev_t dev; - ino_t ino; - int flags; - ext4_lblk_t lblk; - ext4_fsblk_t pblk; - unsigned int len; - unsigned int allocated; - ext4_fsblk_t newblk; - char __data[0]; -}; - -struct trace_event_raw_ext4_get_implied_cluster_alloc_exit { - struct trace_entry ent; - dev_t dev; - unsigned int flags; - ext4_lblk_t lblk; - ext4_fsblk_t pblk; - unsigned int len; - int ret; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_show_extent { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_fsblk_t pblk; - ext4_lblk_t lblk; - short unsigned int len; - char __data[0]; -}; - -struct trace_event_raw_ext4_remove_blocks { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t from; - ext4_lblk_t to; - ext4_fsblk_t ee_pblk; - ext4_lblk_t ee_lblk; - short unsigned int ee_len; - ext4_fsblk_t pc_pclu; - ext4_lblk_t pc_lblk; - int pc_state; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_rm_leaf { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t start; - ext4_lblk_t ee_lblk; - ext4_fsblk_t ee_pblk; - short int ee_len; - ext4_fsblk_t pc_pclu; - ext4_lblk_t pc_lblk; - int pc_state; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_rm_idx { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_fsblk_t pblk; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_remove_space { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t start; - ext4_lblk_t end; - int depth; - char __data[0]; -}; - -struct trace_event_raw_ext4_ext_remove_space_done { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t start; - ext4_lblk_t end; - int depth; - ext4_fsblk_t pc_pclu; - ext4_lblk_t pc_lblk; - int pc_state; - short unsigned int eh_entries; - char __data[0]; -}; - -struct trace_event_raw_ext4__es_extent { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t lblk; - ext4_lblk_t len; - ext4_fsblk_t pblk; - char status; - char __data[0]; -}; - -struct trace_event_raw_ext4_es_remove_extent { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t lblk; - loff_t len; - char __data[0]; -}; - -struct trace_event_raw_ext4_es_find_extent_range_enter { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t lblk; - char __data[0]; -}; - -struct trace_event_raw_ext4_es_find_extent_range_exit { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t lblk; - ext4_lblk_t len; - ext4_fsblk_t pblk; - char status; - char __data[0]; -}; - -struct trace_event_raw_ext4_es_lookup_extent_enter { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t lblk; - char __data[0]; -}; - -struct trace_event_raw_ext4_es_lookup_extent_exit { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t lblk; - ext4_lblk_t len; - ext4_fsblk_t pblk; - char status; - int found; - char __data[0]; -}; - -struct trace_event_raw_ext4__es_shrink_enter { - struct trace_entry ent; - dev_t dev; - int nr_to_scan; - int cache_cnt; - char __data[0]; -}; - -struct trace_event_raw_ext4_es_shrink_scan_exit { - struct trace_entry ent; - dev_t dev; - int nr_shrunk; - int cache_cnt; - char __data[0]; -}; - -struct trace_event_raw_ext4_collapse_range { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t offset; - loff_t len; - char __data[0]; -}; - -struct trace_event_raw_ext4_insert_range { - struct trace_entry ent; - dev_t dev; - ino_t ino; - loff_t offset; - loff_t len; - char __data[0]; -}; - -struct trace_event_raw_ext4_es_shrink { - struct trace_entry ent; - dev_t dev; - int nr_shrunk; - long long unsigned int scan_time; - int nr_skipped; - int retried; - char __data[0]; -}; - -struct trace_event_raw_ext4_es_insert_delayed_extent { - struct trace_entry ent; - dev_t dev; - ino_t ino; - ext4_lblk_t lblk; - ext4_lblk_t len; - ext4_fsblk_t pblk; - char status; - bool lclu_allocated; - bool end_allocated; - char __data[0]; -}; - -struct trace_event_raw_ext4_fsmap_class { - struct trace_entry ent; - dev_t dev; - dev_t keydev; - u32 agno; - u64 bno; - u64 len; - u64 owner; - char __data[0]; -}; - -struct trace_event_raw_ext4_getfsmap_class { - struct trace_entry ent; - dev_t dev; - dev_t keydev; - u64 block; - u64 len; - u64 owner; - u64 flags; - char __data[0]; -}; - -struct trace_event_raw_ext4_shutdown { - struct trace_entry ent; - dev_t dev; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_ext4_error { - struct trace_entry ent; - dev_t dev; - const char *function; - unsigned int line; - char __data[0]; -}; - -struct trace_event_raw_ext4_prefetch_bitmaps { - struct trace_entry ent; - dev_t dev; - __u32 group; - __u32 next; - __u32 ios; - char __data[0]; -}; - -struct trace_event_raw_ext4_lazy_itable_init { - struct trace_entry ent; - dev_t dev; - __u32 group; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_replay_scan { - struct trace_entry ent; - dev_t dev; - int error; - int off; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_replay { - struct trace_entry ent; - dev_t dev; - int tag; - int ino; - int priv1; - int priv2; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_commit_start { - struct trace_entry ent; - dev_t dev; - tid_t tid; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_commit_stop { - struct trace_entry ent; - dev_t dev; - int nblks; - int reason; - int num_fc; - int num_fc_ineligible; - int nblks_agg; - tid_t tid; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_stats { - struct trace_entry ent; - dev_t dev; - unsigned int fc_ineligible_rc[10]; - long unsigned int fc_commits; - long unsigned int fc_ineligible_commits; - long unsigned int fc_numblks; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_track_dentry { - struct trace_entry ent; - dev_t dev; - tid_t t_tid; - ino_t i_ino; - tid_t i_sync_tid; - int error; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_track_inode { - struct trace_entry ent; - dev_t dev; - tid_t t_tid; - ino_t i_ino; - tid_t i_sync_tid; - int error; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_track_range { - struct trace_entry ent; - dev_t dev; - tid_t t_tid; - ino_t i_ino; - tid_t i_sync_tid; - long int start; - long int end; - int error; - char __data[0]; -}; - -struct trace_event_raw_ext4_fc_cleanup { - struct trace_entry ent; - dev_t dev; - int j_fc_off; - int full; - tid_t tid; - char __data[0]; -}; - -struct trace_event_raw_ext4_update_sb { - struct trace_entry ent; - dev_t dev; - ext4_fsblk_t fsblk; - unsigned int flags; - char __data[0]; -}; - -struct trace_event_data_offsets_ext4_other_inode_update_time {}; - -struct trace_event_data_offsets_ext4_free_inode {}; - -struct trace_event_data_offsets_ext4_request_inode {}; - -struct trace_event_data_offsets_ext4_allocate_inode {}; - -struct trace_event_data_offsets_ext4_evict_inode {}; - -struct trace_event_data_offsets_ext4_drop_inode {}; - -struct trace_event_data_offsets_ext4_nfs_commit_metadata {}; - -struct trace_event_data_offsets_ext4_mark_inode_dirty {}; - -struct trace_event_data_offsets_ext4_begin_ordered_truncate {}; - -struct trace_event_data_offsets_ext4__write_begin {}; - -struct trace_event_data_offsets_ext4__write_end {}; - -struct trace_event_data_offsets_ext4_writepages {}; - -struct trace_event_data_offsets_ext4_da_write_folios_start {}; - -struct trace_event_data_offsets_ext4_da_write_folios_end {}; - -struct trace_event_data_offsets_ext4_da_write_pages_extent {}; - -struct trace_event_data_offsets_ext4_writepages_result {}; - -struct trace_event_data_offsets_ext4__folio_op {}; - -struct trace_event_data_offsets_ext4_invalidate_folio_op {}; - -struct trace_event_data_offsets_ext4_discard_blocks {}; - -struct trace_event_data_offsets_ext4__mb_new_pa {}; - -struct trace_event_data_offsets_ext4_mb_release_inode_pa {}; - -struct trace_event_data_offsets_ext4_mb_release_group_pa {}; - -struct trace_event_data_offsets_ext4_discard_preallocations {}; - -struct trace_event_data_offsets_ext4_mb_discard_preallocations {}; - -struct trace_event_data_offsets_ext4_request_blocks {}; - -struct trace_event_data_offsets_ext4_allocate_blocks {}; - -struct trace_event_data_offsets_ext4_free_blocks {}; - -struct trace_event_data_offsets_ext4_sync_file_enter {}; - -struct trace_event_data_offsets_ext4_sync_file_exit {}; - -struct trace_event_data_offsets_ext4_sync_fs {}; - -struct trace_event_data_offsets_ext4_alloc_da_blocks {}; - -struct trace_event_data_offsets_ext4_mballoc_alloc {}; - -struct trace_event_data_offsets_ext4_mballoc_prealloc {}; - -struct trace_event_data_offsets_ext4__mballoc {}; - -struct trace_event_data_offsets_ext4_forget {}; - -struct trace_event_data_offsets_ext4_da_update_reserve_space {}; - -struct trace_event_data_offsets_ext4_da_reserve_space {}; - -struct trace_event_data_offsets_ext4_da_release_space {}; - -struct trace_event_data_offsets_ext4__bitmap_load {}; - -struct trace_event_data_offsets_ext4_read_block_bitmap_load {}; - -struct trace_event_data_offsets_ext4__fallocate_mode {}; - -struct trace_event_data_offsets_ext4_fallocate_exit {}; - -struct trace_event_data_offsets_ext4_unlink_enter {}; - -struct trace_event_data_offsets_ext4_unlink_exit {}; - -struct trace_event_data_offsets_ext4__truncate {}; - -struct trace_event_data_offsets_ext4_ext_convert_to_initialized_enter {}; - -struct trace_event_data_offsets_ext4_ext_convert_to_initialized_fastpath {}; - -struct trace_event_data_offsets_ext4__map_blocks_enter {}; - -struct trace_event_data_offsets_ext4__map_blocks_exit {}; - -struct trace_event_data_offsets_ext4_ext_load_extent {}; - -struct trace_event_data_offsets_ext4_load_inode {}; - -struct trace_event_data_offsets_ext4_journal_start_sb {}; - -struct trace_event_data_offsets_ext4_journal_start_inode {}; - -struct trace_event_data_offsets_ext4_journal_start_reserved {}; - -struct trace_event_data_offsets_ext4__trim {}; - -struct trace_event_data_offsets_ext4_ext_handle_unwritten_extents {}; - -struct trace_event_data_offsets_ext4_get_implied_cluster_alloc_exit {}; - -struct trace_event_data_offsets_ext4_ext_show_extent {}; - -struct trace_event_data_offsets_ext4_remove_blocks {}; - -struct trace_event_data_offsets_ext4_ext_rm_leaf {}; - -struct trace_event_data_offsets_ext4_ext_rm_idx {}; - -struct trace_event_data_offsets_ext4_ext_remove_space {}; - -struct trace_event_data_offsets_ext4_ext_remove_space_done {}; - -struct trace_event_data_offsets_ext4__es_extent {}; - -struct trace_event_data_offsets_ext4_es_remove_extent {}; - -struct trace_event_data_offsets_ext4_es_find_extent_range_enter {}; - -struct trace_event_data_offsets_ext4_es_find_extent_range_exit {}; - -struct trace_event_data_offsets_ext4_es_lookup_extent_enter {}; - -struct trace_event_data_offsets_ext4_es_lookup_extent_exit {}; - -struct trace_event_data_offsets_ext4__es_shrink_enter {}; - -struct trace_event_data_offsets_ext4_es_shrink_scan_exit {}; - -struct trace_event_data_offsets_ext4_collapse_range {}; - -struct trace_event_data_offsets_ext4_insert_range {}; - -struct trace_event_data_offsets_ext4_es_shrink {}; - -struct trace_event_data_offsets_ext4_es_insert_delayed_extent {}; - -struct trace_event_data_offsets_ext4_fsmap_class {}; - -struct trace_event_data_offsets_ext4_getfsmap_class {}; - -struct trace_event_data_offsets_ext4_shutdown {}; - -struct trace_event_data_offsets_ext4_error {}; - -struct trace_event_data_offsets_ext4_prefetch_bitmaps {}; - -struct trace_event_data_offsets_ext4_lazy_itable_init {}; - -struct trace_event_data_offsets_ext4_fc_replay_scan {}; - -struct trace_event_data_offsets_ext4_fc_replay {}; - -struct trace_event_data_offsets_ext4_fc_commit_start {}; - -struct trace_event_data_offsets_ext4_fc_commit_stop {}; - -struct trace_event_data_offsets_ext4_fc_stats {}; - -struct trace_event_data_offsets_ext4_fc_track_dentry {}; - -struct trace_event_data_offsets_ext4_fc_track_inode {}; - -struct trace_event_data_offsets_ext4_fc_track_range {}; - -struct trace_event_data_offsets_ext4_fc_cleanup {}; - -struct trace_event_data_offsets_ext4_update_sb {}; - -typedef void (*btf_trace_ext4_other_inode_update_time)(void *, struct inode *, ino_t); - -typedef void (*btf_trace_ext4_free_inode)(void *, struct inode *); - -typedef void (*btf_trace_ext4_request_inode)(void *, struct inode *, int); - -typedef void (*btf_trace_ext4_allocate_inode)(void *, struct inode *, struct inode *, int); - -typedef void (*btf_trace_ext4_evict_inode)(void *, struct inode *); - -typedef void (*btf_trace_ext4_drop_inode)(void *, struct inode *, int); - -typedef void (*btf_trace_ext4_nfs_commit_metadata)(void *, struct inode *); - -typedef void (*btf_trace_ext4_mark_inode_dirty)(void *, struct inode *, long unsigned int); - -typedef void (*btf_trace_ext4_begin_ordered_truncate)(void *, struct inode *, loff_t); - -typedef void (*btf_trace_ext4_write_begin)(void *, struct inode *, loff_t, unsigned int); - -typedef void (*btf_trace_ext4_da_write_begin)(void *, struct inode *, loff_t, unsigned int); - -typedef void (*btf_trace_ext4_write_end)(void *, struct inode *, loff_t, unsigned int, unsigned int); - -typedef void (*btf_trace_ext4_journalled_write_end)(void *, struct inode *, loff_t, unsigned int, unsigned int); - -typedef void (*btf_trace_ext4_da_write_end)(void *, struct inode *, loff_t, unsigned int, unsigned int); - -typedef void (*btf_trace_ext4_writepages)(void *, struct inode *, struct writeback_control *); - -typedef void (*btf_trace_ext4_da_write_folios_start)(void *, struct inode *, loff_t, loff_t, struct writeback_control *); - -typedef void (*btf_trace_ext4_da_write_folios_end)(void *, struct inode *, loff_t, loff_t, struct writeback_control *, int); - -typedef void (*btf_trace_ext4_da_write_pages_extent)(void *, struct inode *, struct ext4_map_blocks *); - -typedef void (*btf_trace_ext4_writepages_result)(void *, struct inode *, struct writeback_control *, int, int); - -typedef void (*btf_trace_ext4_read_folio)(void *, struct inode *, struct folio *); - -typedef void (*btf_trace_ext4_release_folio)(void *, struct inode *, struct folio *); - -typedef void (*btf_trace_ext4_invalidate_folio)(void *, struct folio *, size_t, size_t); - -typedef void (*btf_trace_ext4_journalled_invalidate_folio)(void *, struct folio *, size_t, size_t); - -typedef void (*btf_trace_ext4_discard_blocks)(void *, struct super_block *, long long unsigned int, long long unsigned int); - -typedef void (*btf_trace_ext4_mb_new_inode_pa)(void *, struct ext4_allocation_context *, struct ext4_prealloc_space *); - -typedef void (*btf_trace_ext4_mb_new_group_pa)(void *, struct ext4_allocation_context *, struct ext4_prealloc_space *); - -typedef void (*btf_trace_ext4_mb_release_inode_pa)(void *, struct ext4_prealloc_space *, long long unsigned int, unsigned int); - -typedef void (*btf_trace_ext4_mb_release_group_pa)(void *, struct super_block *, struct ext4_prealloc_space *); - -typedef void (*btf_trace_ext4_discard_preallocations)(void *, struct inode *, unsigned int); - -typedef void (*btf_trace_ext4_mb_discard_preallocations)(void *, struct super_block *, int); - -typedef void (*btf_trace_ext4_request_blocks)(void *, struct ext4_allocation_request *); - -typedef void (*btf_trace_ext4_allocate_blocks)(void *, struct ext4_allocation_request *, long long unsigned int); - -typedef void (*btf_trace_ext4_free_blocks)(void *, struct inode *, __u64, long unsigned int, int); - -typedef void (*btf_trace_ext4_sync_file_enter)(void *, struct file *, int); - -typedef void (*btf_trace_ext4_sync_file_exit)(void *, struct inode *, int); - -typedef void (*btf_trace_ext4_sync_fs)(void *, struct super_block *, int); - -typedef void (*btf_trace_ext4_alloc_da_blocks)(void *, struct inode *); - -typedef void (*btf_trace_ext4_mballoc_alloc)(void *, struct ext4_allocation_context *); - -typedef void (*btf_trace_ext4_mballoc_prealloc)(void *, struct ext4_allocation_context *); - -typedef void (*btf_trace_ext4_mballoc_discard)(void *, struct super_block *, struct inode *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t); - -typedef void (*btf_trace_ext4_mballoc_free)(void *, struct super_block *, struct inode *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t); - -typedef void (*btf_trace_ext4_forget)(void *, struct inode *, int, __u64); - -typedef void (*btf_trace_ext4_da_update_reserve_space)(void *, struct inode *, int, int); - -typedef void (*btf_trace_ext4_da_reserve_space)(void *, struct inode *, int); - -typedef void (*btf_trace_ext4_da_release_space)(void *, struct inode *, int); - -typedef void (*btf_trace_ext4_mb_bitmap_load)(void *, struct super_block *, long unsigned int); - -typedef void (*btf_trace_ext4_mb_buddy_bitmap_load)(void *, struct super_block *, long unsigned int); - -typedef void (*btf_trace_ext4_load_inode_bitmap)(void *, struct super_block *, long unsigned int); - -typedef void (*btf_trace_ext4_read_block_bitmap_load)(void *, struct super_block *, long unsigned int, bool); - -typedef void (*btf_trace_ext4_fallocate_enter)(void *, struct inode *, loff_t, loff_t, int); - -typedef void (*btf_trace_ext4_punch_hole)(void *, struct inode *, loff_t, loff_t, int); - -typedef void (*btf_trace_ext4_zero_range)(void *, struct inode *, loff_t, loff_t, int); - -typedef void (*btf_trace_ext4_fallocate_exit)(void *, struct inode *, loff_t, unsigned int, int); - -typedef void (*btf_trace_ext4_unlink_enter)(void *, struct inode *, struct dentry *); - -typedef void (*btf_trace_ext4_unlink_exit)(void *, struct dentry *, int); - -typedef void (*btf_trace_ext4_truncate_enter)(void *, struct inode *); - -typedef void (*btf_trace_ext4_truncate_exit)(void *, struct inode *); - -typedef void (*btf_trace_ext4_ext_convert_to_initialized_enter)(void *, struct inode *, struct ext4_map_blocks *, struct ext4_extent *); - -typedef void (*btf_trace_ext4_ext_convert_to_initialized_fastpath)(void *, struct inode *, struct ext4_map_blocks *, struct ext4_extent *, struct ext4_extent *); - -typedef void (*btf_trace_ext4_ext_map_blocks_enter)(void *, struct inode *, ext4_lblk_t, unsigned int, unsigned int); - -typedef void (*btf_trace_ext4_ind_map_blocks_enter)(void *, struct inode *, ext4_lblk_t, unsigned int, unsigned int); - -typedef void (*btf_trace_ext4_ext_map_blocks_exit)(void *, struct inode *, unsigned int, struct ext4_map_blocks *, int); - -typedef void (*btf_trace_ext4_ind_map_blocks_exit)(void *, struct inode *, unsigned int, struct ext4_map_blocks *, int); - -typedef void (*btf_trace_ext4_ext_load_extent)(void *, struct inode *, ext4_lblk_t, ext4_fsblk_t); - -typedef void (*btf_trace_ext4_load_inode)(void *, struct super_block *, long unsigned int); - -typedef void (*btf_trace_ext4_journal_start_sb)(void *, struct super_block *, int, int, int, int, long unsigned int); - -typedef void (*btf_trace_ext4_journal_start_inode)(void *, struct inode *, int, int, int, int, long unsigned int); - -typedef void (*btf_trace_ext4_journal_start_reserved)(void *, struct super_block *, int, long unsigned int); - -typedef void (*btf_trace_ext4_trim_extent)(void *, struct super_block *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t); - -typedef void (*btf_trace_ext4_trim_all_free)(void *, struct super_block *, ext4_group_t, ext4_grpblk_t, ext4_grpblk_t); - -typedef void (*btf_trace_ext4_ext_handle_unwritten_extents)(void *, struct inode *, struct ext4_map_blocks *, int, unsigned int, ext4_fsblk_t); - -typedef void (*btf_trace_ext4_get_implied_cluster_alloc_exit)(void *, struct super_block *, struct ext4_map_blocks *, int); - -typedef void (*btf_trace_ext4_ext_show_extent)(void *, struct inode *, ext4_lblk_t, ext4_fsblk_t, short unsigned int); - -typedef void (*btf_trace_ext4_remove_blocks)(void *, struct inode *, struct ext4_extent *, ext4_lblk_t, ext4_fsblk_t, struct partial_cluster *); - -typedef void (*btf_trace_ext4_ext_rm_leaf)(void *, struct inode *, ext4_lblk_t, struct ext4_extent *, struct partial_cluster *); - -typedef void (*btf_trace_ext4_ext_rm_idx)(void *, struct inode *, ext4_fsblk_t); - -typedef void (*btf_trace_ext4_ext_remove_space)(void *, struct inode *, ext4_lblk_t, ext4_lblk_t, int); - -typedef void (*btf_trace_ext4_ext_remove_space_done)(void *, struct inode *, ext4_lblk_t, ext4_lblk_t, int, struct partial_cluster *, __le16); - -typedef void (*btf_trace_ext4_es_insert_extent)(void *, struct inode *, struct extent_status *); - -typedef void (*btf_trace_ext4_es_cache_extent)(void *, struct inode *, struct extent_status *); - -typedef void (*btf_trace_ext4_es_remove_extent)(void *, struct inode *, ext4_lblk_t, ext4_lblk_t); - -typedef void (*btf_trace_ext4_es_find_extent_range_enter)(void *, struct inode *, ext4_lblk_t); - -typedef void (*btf_trace_ext4_es_find_extent_range_exit)(void *, struct inode *, struct extent_status *); - -typedef void (*btf_trace_ext4_es_lookup_extent_enter)(void *, struct inode *, ext4_lblk_t); - -typedef void (*btf_trace_ext4_es_lookup_extent_exit)(void *, struct inode *, struct extent_status *, int); - -typedef void (*btf_trace_ext4_es_shrink_count)(void *, struct super_block *, int, int); - -typedef void (*btf_trace_ext4_es_shrink_scan_enter)(void *, struct super_block *, int, int); - -typedef void (*btf_trace_ext4_es_shrink_scan_exit)(void *, struct super_block *, int, int); - -typedef void (*btf_trace_ext4_collapse_range)(void *, struct inode *, loff_t, loff_t); - -typedef void (*btf_trace_ext4_insert_range)(void *, struct inode *, loff_t, loff_t); - -typedef void (*btf_trace_ext4_es_shrink)(void *, struct super_block *, int, u64, int, int); - -typedef void (*btf_trace_ext4_es_insert_delayed_extent)(void *, struct inode *, struct extent_status *, bool, bool); - -typedef void (*btf_trace_ext4_fsmap_low_key)(void *, struct super_block *, u32, u32, u64, u64, u64); - -typedef void (*btf_trace_ext4_fsmap_high_key)(void *, struct super_block *, u32, u32, u64, u64, u64); - -typedef void (*btf_trace_ext4_fsmap_mapping)(void *, struct super_block *, u32, u32, u64, u64, u64); - -typedef void (*btf_trace_ext4_getfsmap_low_key)(void *, struct super_block *, struct ext4_fsmap *); - -typedef void (*btf_trace_ext4_getfsmap_high_key)(void *, struct super_block *, struct ext4_fsmap *); - -typedef void (*btf_trace_ext4_getfsmap_mapping)(void *, struct super_block *, struct ext4_fsmap *); - -typedef void (*btf_trace_ext4_shutdown)(void *, struct super_block *, long unsigned int); - -typedef void (*btf_trace_ext4_error)(void *, struct super_block *, const char *, unsigned int); - -typedef void (*btf_trace_ext4_prefetch_bitmaps)(void *, struct super_block *, ext4_group_t, ext4_group_t, unsigned int); - -typedef void (*btf_trace_ext4_lazy_itable_init)(void *, struct super_block *, ext4_group_t); - -typedef void (*btf_trace_ext4_fc_replay_scan)(void *, struct super_block *, int, int); - -typedef void (*btf_trace_ext4_fc_replay)(void *, struct super_block *, int, int, int, int); - -typedef void (*btf_trace_ext4_fc_commit_start)(void *, struct super_block *, tid_t); - -typedef void (*btf_trace_ext4_fc_commit_stop)(void *, struct super_block *, int, int, tid_t); - -typedef void (*btf_trace_ext4_fc_stats)(void *, struct super_block *); - -typedef void (*btf_trace_ext4_fc_track_create)(void *, handle_t *, struct inode *, struct dentry *, int); - -typedef void (*btf_trace_ext4_fc_track_link)(void *, handle_t *, struct inode *, struct dentry *, int); - -typedef void (*btf_trace_ext4_fc_track_unlink)(void *, handle_t *, struct inode *, struct dentry *, int); - -typedef void (*btf_trace_ext4_fc_track_inode)(void *, handle_t *, struct inode *, int); - -typedef void (*btf_trace_ext4_fc_track_range)(void *, handle_t *, struct inode *, long int, long int, int); - -typedef void (*btf_trace_ext4_fc_cleanup)(void *, journal_t *, int, tid_t); - -typedef void (*btf_trace_ext4_update_sb)(void *, struct super_block *, ext4_fsblk_t, unsigned int); - -struct ext4_err_translation { - int code; - int errno; -}; - -enum { - Opt_bsd_df = 0, - Opt_minix_df = 1, - Opt_grpid = 2, - Opt_nogrpid = 3, - Opt_resgid = 4, - Opt_resuid = 5, - Opt_sb = 6, - Opt_nouid32 = 7, - Opt_debug___3 = 8, - Opt_removed = 9, - Opt_user_xattr = 10, - Opt_acl = 11, - Opt_auto_da_alloc = 12, - Opt_noauto_da_alloc = 13, - Opt_noload = 14, - Opt_commit = 15, - Opt_min_batch_time = 16, - Opt_max_batch_time = 17, - Opt_journal_dev = 18, - Opt_journal_path = 19, - Opt_journal_checksum = 20, - Opt_journal_async_commit = 21, - Opt_abort = 22, - Opt_data_journal = 23, - Opt_data_ordered = 24, - Opt_data_writeback = 25, - Opt_data_err_abort = 26, - Opt_data_err_ignore = 27, - Opt_test_dummy_encryption = 28, - Opt_inlinecrypt = 29, - Opt_usrjquota = 30, - Opt_grpjquota = 31, - Opt_quota___2 = 32, - Opt_noquota = 33, - Opt_barrier = 34, - Opt_nobarrier = 35, - Opt_err___6 = 36, - Opt_usrquota___2 = 37, - Opt_grpquota___2 = 38, - Opt_prjquota = 39, - Opt_dax = 40, - Opt_dax_always = 41, - Opt_dax_inode = 42, - Opt_dax_never = 43, - Opt_stripe = 44, - Opt_delalloc = 45, - Opt_nodelalloc = 46, - Opt_warn_on_error = 47, - Opt_nowarn_on_error = 48, - Opt_mblk_io_submit = 49, - Opt_debug_want_extra_isize = 50, - Opt_nomblk_io_submit = 51, - Opt_block_validity = 52, - Opt_noblock_validity = 53, - Opt_inode_readahead_blks = 54, - Opt_journal_ioprio = 55, - Opt_dioread_nolock = 56, - Opt_dioread_lock = 57, - Opt_discard___2 = 58, - Opt_nodiscard = 59, - Opt_init_itable = 60, - Opt_noinit_itable = 61, - Opt_max_dir_size_kb = 62, - Opt_nojournal_checksum = 63, - Opt_nombcache = 64, - Opt_no_prefetch_block_bitmaps = 65, - Opt_mb_optimize_scan = 66, - Opt_errors___2 = 67, - Opt_data = 68, - Opt_data_err = 69, - Opt_jqfmt = 70, - Opt_dax_type = 71, -}; - -struct mount_opts { - int token; - int mount_opt; - int flags; -}; - -struct ext4_sb_encodings { - __u16 magic; - char *name; - unsigned int version; -}; - -struct ext4_fs_context { - char *s_qf_names[3]; - struct fscrypt_dummy_policy dummy_enc_policy; - int s_jquota_fmt; - short unsigned int qname_spec; - long unsigned int vals_s_flags; - long unsigned int mask_s_flags; - long unsigned int journal_devnum; - long unsigned int s_commit_interval; - long unsigned int s_stripe; - unsigned int s_inode_readahead_blks; - unsigned int s_want_extra_isize; - unsigned int s_li_wait_mult; - unsigned int s_max_dir_size_kb; - unsigned int journal_ioprio; - unsigned int vals_s_mount_opt; - unsigned int mask_s_mount_opt; - unsigned int vals_s_mount_opt2; - unsigned int mask_s_mount_opt2; - unsigned int opt_flags; - unsigned int spec; - u32 s_max_batch_time; - u32 s_min_batch_time; - kuid_t s_resuid; - kgid_t s_resgid; - ext4_fsblk_t s_sb_block; -}; - -struct ext4_mount_options { - long unsigned int s_mount_opt; - long unsigned int s_mount_opt2; - kuid_t s_resuid; - kgid_t s_resgid; - long unsigned int s_commit_interval; - u32 s_min_batch_time; - u32 s_max_batch_time; - int s_jquota_fmt; - char *s_qf_names[3]; -}; - -struct jbd2_revoke_table_s { - int hash_size; - int hash_shift; - struct list_head *hash_table; -}; - -struct jbd2_revoke_record_s { - struct list_head hash; - tid_t sequence; - long long unsigned int blocknr; -}; - -struct squashfs_super_block { - __le32 s_magic; - __le32 inodes; - __le32 mkfs_time; - __le32 block_size; - __le32 fragments; - __le16 compression; - __le16 block_log; - __le16 flags; - __le16 no_ids; - __le16 s_major; - __le16 s_minor; - __le64 root_inode; - __le64 bytes_used; - __le64 id_table_start; - __le64 xattr_id_table_start; - __le64 inode_table_start; - __le64 directory_table_start; - __le64 fragment_table_start; - __le64 lookup_table_start; -}; - -enum Opt_errors { - Opt_errors_continue = 0, - Opt_errors_panic = 1, -}; - -enum squashfs_param { - Opt_errors___3 = 0, - Opt_threads = 1, -}; - -struct squashfs_mount_opts { - enum Opt_errors errors; - const struct squashfs_decompressor_thread_ops *thread_ops; - int thread_num; -}; - -struct squashfs_stream___3 { - void *stream; - local_lock_t lock; -}; - -struct squashfs_lzo { - void *input; - void *output; -}; - -struct ramfs_mount_opts { - umode_t mode; -}; - -struct ramfs_fs_info { - struct ramfs_mount_opts mount_opts; -}; - -enum ramfs_param { - Opt_mode___5 = 0, -}; - -struct compat_dirent { - u32 d_ino; - compat_off_t d_off; - u16 d_reclen; - char d_name[256]; -}; - -struct __fat_dirent { - long int d_ino; - __kernel_off_t d_off; - short unsigned int d_reclen; - char d_name[256]; -}; - -enum { - PARSE_INVALID = 1, - PARSE_NOT_LONGNAME = 2, - PARSE_EOF = 3, -}; - -struct fat_ioctl_filldir_callback { - struct dir_context ctx; - void *dirent; - int result; - const char *longname; - int long_len; - const char *shortname; - int short_len; -}; - -enum { - Opt_sig = 0, - Opt_ecryptfs_sig = 1, - Opt_cipher = 2, - Opt_ecryptfs_cipher = 3, - Opt_ecryptfs_key_bytes = 4, - Opt_passthrough = 5, - Opt_xattr_metadata = 6, - Opt_encrypted_view = 7, - Opt_fnek_sig = 8, - Opt_fn_cipher = 9, - Opt_fn_cipher_key_bytes = 10, - Opt_unlink_sigs = 11, - Opt_mount_auth_tok_only = 12, - Opt_check_dev_ruid = 13, -}; - -struct ecryptfs_fs_context { - bool check_ruid; - bool sig_set; - bool cipher_name_set; - bool cipher_key_bytes_set; - bool fn_cipher_name_set; - bool fn_cipher_key_bytes_set; -}; - -struct ecryptfs_cache_info { - struct kmem_cache **cache; - const char *name; - size_t size; - slab_flags_t flags; - void (*ctor)(void *); -}; - -struct ecryptfs_key_record { - unsigned char type; - size_t enc_key_size; - unsigned char sig[8]; - unsigned char enc_key[512]; -}; - -struct ecryptfs_auth_tok_list_item { - unsigned char encrypted_session_key[64]; - struct list_head list; - struct ecryptfs_auth_tok auth_tok; -}; - -struct ecryptfs_write_tag_70_packet_silly_stack { - u8 cipher_code; - size_t max_packet_size; - size_t packet_size_len; - size_t block_aligned_filename_size; - size_t block_size; - size_t i; - size_t j; - size_t num_rand_bytes; - struct mutex *tfm_mutex; - char *block_aligned_filename; - struct ecryptfs_auth_tok *auth_tok; - struct scatterlist src_sg[2]; - struct scatterlist dst_sg[2]; - struct crypto_skcipher *skcipher_tfm; - struct skcipher_request *skcipher_req; - char iv[16]; - char hash[16]; - char tmp_hash[16]; - struct crypto_shash *hash_tfm; - struct shash_desc *hash_desc; -}; - -struct ecryptfs_parse_tag_70_packet_silly_stack { - u8 cipher_code; - size_t max_packet_size; - size_t packet_size_len; - size_t parsed_tag_70_packet_size; - size_t block_aligned_filename_size; - size_t block_size; - size_t i; - struct mutex *tfm_mutex; - char *decrypted_filename; - struct ecryptfs_auth_tok *auth_tok; - struct scatterlist src_sg[2]; - struct scatterlist dst_sg[2]; - struct crypto_skcipher *skcipher_tfm; - struct skcipher_request *skcipher_req; - char fnek_sig_hex[17]; - char iv[16]; - char cipher_string[32]; -}; - -struct getdents_callback___2 { - struct dir_context ctx; - char *name; - u64 ino; - int found; - int sequence; -}; - -struct fuse_file_lock { - uint64_t start; - uint64_t end; - uint32_t type; - uint32_t pid; -}; - -struct fuse_open_in { - uint32_t flags; - uint32_t open_flags; -}; - -struct fuse_flush_in { - uint64_t fh; - uint32_t unused; - uint32_t padding; - uint64_t lock_owner; -}; - -struct fuse_fsync_in { - uint64_t fh; - uint32_t fsync_flags; - uint32_t padding; -}; - -struct fuse_lk_in { - uint64_t fh; - uint64_t owner; - struct fuse_file_lock lk; - uint32_t lk_flags; - uint32_t padding; -}; - -struct fuse_lk_out { - struct fuse_file_lock lk; -}; - -struct fuse_bmap_in { - uint64_t block; - uint32_t blocksize; - uint32_t padding; -}; - -struct fuse_bmap_out { - uint64_t block; -}; - -struct fuse_poll_in { - uint64_t fh; - uint64_t kh; - uint32_t flags; - uint32_t events; -}; - -struct fuse_poll_out { - uint32_t revents; - uint32_t padding; -}; - -struct fuse_fallocate_in { - uint64_t fh; - uint64_t offset; - uint64_t length; - uint32_t mode; - uint32_t padding; -}; - -struct fuse_lseek_in { - uint64_t fh; - uint64_t offset; - uint32_t whence; - uint32_t padding; -}; - -struct fuse_lseek_out { - uint64_t offset; -}; - -struct fuse_copy_file_range_in { - uint64_t fh_in; - uint64_t off_in; - uint64_t nodeid_out; - uint64_t fh_out; - uint64_t off_out; - uint64_t len; - uint64_t flags; -}; - -struct fuse_writepage_args { - struct fuse_io_args ia; - struct list_head queue_entry; - struct inode *inode; - struct fuse_sync_bucket *bucket; -}; - -struct fuse_fill_wb_data { - struct fuse_writepage_args *wpa; - struct fuse_file *ff; - unsigned int max_folios; - unsigned int nr_bytes; -}; - -struct fuse_setxattr_in { - uint32_t size; - uint32_t flags; - uint32_t setxattr_flags; - uint32_t padding; -}; - -struct fuse_getxattr_in { - uint32_t size; - uint32_t padding; -}; - -struct fuse_getxattr_out { - uint32_t size; - uint32_t padding; -}; - -struct fuse_ioctl_in { - uint64_t fh; - uint32_t flags; - uint32_t cmd; - uint64_t arg; - uint32_t in_size; - uint32_t out_size; -}; - -struct fuse_ioctl_iovec { - uint64_t base; - uint64_t len; -}; - -struct fuse_ioctl_out { - int32_t result; - uint32_t flags; - uint32_t in_iovs; - uint32_t out_iovs; -}; - -struct fuse_uring_ent_in_out { - uint64_t flags; - uint64_t commit_id; - uint32_t payload_sz; - uint32_t padding; - uint64_t reserved; -}; - -struct fuse_uring_req_header { - char in_out[128]; - char op_in[128]; - struct fuse_uring_ent_in_out ring_ent_in_out; -}; - -enum fuse_uring_cmd { - FUSE_IO_URING_CMD_INVALID = 0, - FUSE_IO_URING_CMD_REGISTER = 1, - FUSE_IO_URING_CMD_COMMIT_AND_FETCH = 2, -}; - -struct fuse_uring_cmd_req { - uint64_t flags; - uint64_t commit_id; - uint16_t qid; - uint8_t padding[6]; -}; - -enum fuse_ring_req_state { - FRRS_INVALID = 0, - FRRS_COMMIT = 1, - FRRS_AVAILABLE = 2, - FRRS_FUSE_REQ = 3, - FRRS_USERSPACE = 4, - FRRS_TEARDOWN = 5, - FRRS_RELEASED = 6, -}; - -struct fuse_ring_ent { - struct fuse_uring_req_header *headers; - void *payload; - struct fuse_ring_queue *queue; - struct io_uring_cmd *cmd; - struct list_head list; - enum fuse_ring_req_state state; - struct fuse_req *fuse_req; -}; - -struct fuse_uring_pdu { - struct fuse_ring_ent *ent; -}; - -struct tracefs_dir_ops { - int (*mkdir)(const char *); - int (*rmdir)(const char *); -}; - -struct tracefs_fs_info { - kuid_t uid; - kgid_t gid; - umode_t mode; - unsigned int opts; -}; - -enum { - Opt_uid___7 = 0, - Opt_gid___8 = 1, - Opt_mode___6 = 2, -}; - -struct pseudo_lock_pm_req { - struct list_head list; - struct dev_pm_qos_request req; -}; - -struct sem_undo_list { - refcount_t refcnt; - spinlock_t lock; - struct list_head list_proc; -}; - -struct sem; - -struct sem_queue; - -struct sem_undo; - -struct semid_ds { - struct ipc_perm sem_perm; - __kernel_old_time_t sem_otime; - __kernel_old_time_t sem_ctime; - struct sem *sem_base; - struct sem_queue *sem_pending; - struct sem_queue **sem_pending_last; - struct sem_undo *undo; - short unsigned int sem_nsems; -}; - -struct sem { - int semval; - struct pid *sempid; - spinlock_t lock; - struct list_head pending_alter; - struct list_head pending_const; - time64_t sem_otime; -}; - -struct sem_queue { - struct list_head list; - struct task_struct *sleeper; - struct sem_undo *undo; - struct pid *pid; - int status; - struct sembuf *sops; - struct sembuf *blocking; - int nsops; - bool alter; - bool dupsop; -}; - -struct sem_undo { - struct list_head list_proc; - struct callback_head rcu; - struct sem_undo_list *ulp; - struct list_head list_id; - int semid; - short int semadj[0]; -}; - -struct semid64_ds { - struct ipc64_perm sem_perm; - __kernel_long_t sem_otime; - __kernel_ulong_t __unused1; - __kernel_long_t sem_ctime; - __kernel_ulong_t __unused2; - __kernel_ulong_t sem_nsems; - __kernel_ulong_t __unused3; - __kernel_ulong_t __unused4; -}; - -struct seminfo { - int semmap; - int semmni; - int semmns; - int semmnu; - int semmsl; - int semopm; - int semume; - int semusz; - int semvmx; - int semaem; -}; - -struct compat_semid64_ds { - struct compat_ipc64_perm sem_perm; - compat_ulong_t sem_otime; - compat_ulong_t sem_otime_high; - compat_ulong_t sem_ctime; - compat_ulong_t sem_ctime_high; - compat_ulong_t sem_nsems; - compat_ulong_t __unused3; - compat_ulong_t __unused4; -}; - -struct sem_array { - struct kern_ipc_perm sem_perm; - time64_t sem_ctime; - struct list_head pending_alter; - struct list_head pending_const; - struct list_head list_id; - int sem_nsems; - int complex_count; - unsigned int use_global_lock; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct sem sems[0]; -}; - -struct compat_semid_ds { - struct compat_ipc_perm sem_perm; - old_time32_t sem_otime; - old_time32_t sem_ctime; - compat_uptr_t sem_base; - compat_uptr_t sem_pending; - compat_uptr_t sem_pending_last; - compat_uptr_t undo; - short unsigned int sem_nsems; -}; - -struct keyring_read_iterator_context { - size_t buflen; - size_t count; - key_serial_t *buffer; -}; - -struct osapsess { - uint32_t handle; - unsigned char secret[20]; - unsigned char enonce[20]; -}; - -enum { - SEAL_keytype = 1, - SRK_keytype = 4, -}; - -struct tpm_digests { - unsigned char encauth[20]; - unsigned char pubauth[20]; - unsigned char xorwork[40]; - unsigned char xorhash[20]; - unsigned char nonceodd[20]; -}; - -enum { - Opt_err___7 = 0, - Opt_keyhandle = 1, - Opt_keyauth = 2, - Opt_blobauth = 3, - Opt_pcrinfo = 4, - Opt_pcrlock = 5, - Opt_migratable = 6, - Opt_hash___3 = 7, - Opt_policydigest = 8, - Opt_policyhandle = 9, -}; - -struct vfs_cap_data { - __le32 magic_etc; - struct { - __le32 permitted; - __le32 inheritable; - } data[2]; -}; - -struct vfs_ns_cap_data { - __le32 magic_etc; - struct { - __le32 permitted; - __le32 inheritable; - } data[2]; - __le32 rootid; -}; - -struct trace_event_raw_cap_capable { - struct trace_entry ent; - const struct cred *cred; - struct user_namespace *target_ns; - const struct user_namespace *capable_ns; - int cap; - int ret; - char __data[0]; -}; - -struct trace_event_data_offsets_cap_capable {}; - -typedef void (*btf_trace_cap_capable)(void *, const struct cred *, struct user_namespace *, const struct user_namespace *, int, int); - -enum sctp_param { - SCTP_PARAM_HEARTBEAT_INFO = 256, - SCTP_PARAM_IPV4_ADDRESS = 1280, - SCTP_PARAM_IPV6_ADDRESS = 1536, - SCTP_PARAM_STATE_COOKIE = 1792, - SCTP_PARAM_UNRECOGNIZED_PARAMETERS = 2048, - SCTP_PARAM_COOKIE_PRESERVATIVE = 2304, - SCTP_PARAM_HOST_NAME_ADDRESS = 2816, - SCTP_PARAM_SUPPORTED_ADDRESS_TYPES = 3072, - SCTP_PARAM_ECN_CAPABLE = 128, - SCTP_PARAM_RANDOM = 640, - SCTP_PARAM_CHUNKS = 896, - SCTP_PARAM_HMAC_ALGO = 1152, - SCTP_PARAM_SUPPORTED_EXT = 2176, - SCTP_PARAM_FWD_TSN_SUPPORT = 192, - SCTP_PARAM_ADD_IP = 448, - SCTP_PARAM_DEL_IP = 704, - SCTP_PARAM_ERR_CAUSE = 960, - SCTP_PARAM_SET_PRIMARY = 1216, - SCTP_PARAM_SUCCESS_REPORT = 1472, - SCTP_PARAM_ADAPTATION_LAYER_IND = 1728, - SCTP_PARAM_RESET_OUT_REQUEST = 3328, - SCTP_PARAM_RESET_IN_REQUEST = 3584, - SCTP_PARAM_RESET_TSN_REQUEST = 3840, - SCTP_PARAM_RESET_RESPONSE = 4096, - SCTP_PARAM_RESET_ADD_OUT_STREAMS = 4352, - SCTP_PARAM_RESET_ADD_IN_STREAMS = 4608, -}; - -struct avdc_entry { - u32 isid; - u32 allowed; - u32 audited; - bool permissive; -}; - -struct task_security_struct { - struct { - u32 sid; - u32 seqno; - unsigned int dir_spot; - struct avdc_entry dir[4]; - bool permissive_neveraudit; - } avdcache; -}; - -struct file_security_struct { - u32 sid; - u32 fown_sid; - u32 isid; - u32 pseqno; -}; - -struct msg_security_struct { - u32 sid; -}; - -struct ipc_security_struct { - u16 sclass; - u32 sid; -}; - -struct tun_security_struct { - u32 sid; -}; - -struct key_security_struct { - u32 sid; -}; - -struct ib_security_struct { - u32 sid; -}; - -struct bpf_security_struct { - u32 sid; -}; - -struct perf_event_security_struct { - u32 sid; -}; - -struct selinux_mnt_opts { - u32 fscontext_sid; - u32 context_sid; - u32 rootcontext_sid; - u32 defcontext_sid; -}; - -enum { - Opt_error___2 = -1, - Opt_context = 0, - Opt_defcontext = 1, - Opt_fscontext = 2, - Opt_rootcontext = 3, - Opt_seclabel = 4, -}; - -struct cond_insertf_data { - struct policydb *p; - struct avtab_node **dst; - struct cond_av_list *other; -}; - -struct superblock_smack { - struct smack_known *smk_root; - struct smack_known *smk_floor; - struct smack_known *smk_hat; - struct smack_known *smk_default; - int smk_flags; -}; - -struct inode_smack { - struct smack_known *smk_inode; - struct smack_known *smk_task; - struct smack_known *smk_mmap; - int smk_flags; -}; - -enum { - Opt_error___3 = -1, - Opt_fsdefault = 0, - Opt_fsfloor = 1, - Opt_fshat = 2, - Opt_fsroot = 3, - Opt_fstransmute = 4, -}; - -struct smack_mnt_opts { - const char *fsdefault; - const char *fsfloor; - const char *fshat; - const char *fsroot; - const char *fstransmute; -}; - -struct tomoyo_log { - struct list_head list; - char *log; - int size; -}; - -struct tomoyo_inet_addr_info { - __be16 port; - const __be32 *address; - bool is_ipv6; -}; - -struct tomoyo_unix_addr_info { - u8 *addr; - unsigned int addr_len; -}; - -struct tomoyo_addr_info { - u8 protocol; - u8 operation; - struct tomoyo_inet_addr_info inet; - struct tomoyo_unix_addr_info unix0; -}; - -struct match_workbuf { - unsigned int pos; - unsigned int len; - unsigned int history[32]; -}; - -typedef ZSTD_compressionParameters zstd_compression_parameters; - -typedef ZSTD_parameters zstd_parameters; - -typedef ZSTD_CCtx zstd_cctx; - -enum aa_code { - AA_U8 = 0, - AA_U16 = 1, - AA_U32 = 2, - AA_U64 = 3, - AA_NAME = 4, - AA_STRING = 5, - AA_BLOB = 6, - AA_STRUCT = 7, - AA_STRUCTEND = 8, - AA_LIST = 9, - AA_LISTEND = 10, - AA_ARRAY = 11, - AA_ARRAYEND = 12, -}; - -struct aa_ext { - void *start; - void *end; - void *pos; - u32 version; -}; - -struct landlock_inode_security { - struct landlock_object *object; -}; - -struct landlock_superblock_security { - atomic_long_t inode_refs; -}; - -enum header_opt { - IPE_HEADER_POLICY_NAME = 0, - IPE_HEADER_POLICY_VERSION = 1, - __IPE_HEADER_MAX = 2, -}; - -struct akcipher_instance { - void (*free)(struct akcipher_instance *); - union { - struct { - char head[56]; - struct crypto_instance base; - } s; - struct akcipher_alg alg; - }; -}; - -struct crypto_report_akcipher { - char type[64]; -}; - -struct crypto_akcipher_sync_data { - struct crypto_akcipher *tfm; - const void *src; - void *dst; - unsigned int slen; - unsigned int dlen; - struct akcipher_request *req; - struct crypto_wait cwait; - struct scatterlist sg; - u8 *buf; -}; - -enum rsapubkey_actions { - ACT_rsa_get_e___2 = 0, - ACT_rsa_get_n___2 = 1, - NR__rsapubkey_actions = 2, -}; - -struct pkcs1pad_ctx { - struct crypto_akcipher *child; - unsigned int key_size; -}; - -struct pkcs1pad_inst_ctx { - struct crypto_akcipher_spawn spawn; -}; - -struct pkcs1pad_request { - struct scatterlist in_sg[2]; - struct scatterlist out_sg[1]; - uint8_t *in_buf; - uint8_t *out_buf; - struct akcipher_request child_req; -}; - -struct hmac_ctx { - struct crypto_shash *hash; - u8 pads[0]; -}; - -struct ahash_hmac_ctx { - struct crypto_ahash *hash; - u8 pads[0]; -}; - -struct __hmac_sha512_key { - struct sha512_block_state istate; - struct sha512_block_state ostate; -}; - -struct __hmac_sha512_ctx { - struct __sha512_ctx sha_ctx; - struct sha512_block_state ostate; -}; - -struct sha384_ctx { - struct __sha512_ctx ctx; -}; - -struct hmac_sha384_key { - struct __hmac_sha512_key key; -}; - -struct hmac_sha384_ctx { - struct __hmac_sha512_ctx ctx; -}; - -struct hmac_sha512_key { - struct __hmac_sha512_key key; -}; - -struct hmac_sha512_ctx { - struct __hmac_sha512_ctx ctx; -}; - -struct xts_tfm_ctx { - struct crypto_skcipher *child; - struct crypto_cipher *tweak; -}; - -struct xts_instance_ctx { - struct crypto_skcipher_spawn spawn; - struct crypto_cipher_spawn tweak_spawn; -}; - -struct xts_request_ctx { - le128 t; - struct scatterlist *tail; - struct scatterlist sg[2]; - struct skcipher_request subreq; -}; - -struct chksum_ctx { - u32 key; -}; - -struct chksum_desc_ctx { - u32 crc; -}; - -struct ghash_ctx { - struct gf128mul_4k *gf128; -}; - -struct ghash_desc_ctx { - u8 buffer[16]; -}; - -struct ecc_point { - u64 *x; - u64 *y; - u8 ndigits; -}; - -struct ecc_curve { - char *name; - u32 nbits; - struct ecc_point g; - u64 *p; - u64 *n; - u64 *a; - u64 *b; -}; - -typedef struct { - u64 m_low; - u64 m_high; -} uint128_t; - -enum { - REQ_FSEQ_PREFLUSH = 1, - REQ_FSEQ_DATA = 2, - REQ_FSEQ_POSTFLUSH = 4, - REQ_FSEQ_DONE = 8, - REQ_FSEQ_ACTIONS = 7, - FLUSH_PENDING_TIMEOUT = 5000, -}; - -struct mq_inflight { - struct block_device *part; - unsigned int inflight[2]; -}; - -struct blk_rq_wait { - struct completion done; - blk_status_t ret; -}; - -struct blk_expired_data { - bool has_timedout_rq; - long unsigned int next; - long unsigned int timeout_start; -}; - -struct flush_busy_ctx_data { - struct blk_mq_hw_ctx *hctx; - struct list_head *list; -}; - -struct dispatch_rq_data { - struct blk_mq_hw_ctx *hctx; - struct request *rq; -}; - -enum prep_dispatch { - PREP_DISPATCH_OK = 0, - PREP_DISPATCH_NO_TAG = 1, - PREP_DISPATCH_NO_BUDGET = 2, -}; - -struct rq_iter_data { - struct blk_mq_hw_ctx *hctx; - bool has_rq; -}; - -struct frag { - struct list_head list; - u32 group; - u8 num; - u8 rec; - u8 map; - u8 data[0]; -}; - -struct privhead { - u16 ver_major; - u16 ver_minor; - u64 logical_disk_start; - u64 logical_disk_size; - u64 config_start; - u64 config_size; - uuid_t disk_id; -}; - -struct tocblock { - u8 bitmap1_name[16]; - u64 bitmap1_start; - u64 bitmap1_size; - u8 bitmap2_name[16]; - u64 bitmap2_start; - u64 bitmap2_size; -}; - -struct vmdb { - u16 ver_major; - u16 ver_minor; - u32 vblk_size; - u32 vblk_offset; - u32 last_vblk_seq; -}; - -struct vblk_comp { - u8 state[16]; - u64 parent_id; - u8 type; - u8 children; - u16 chunksize; -}; - -struct vblk_dgrp { - u8 disk_id[64]; -}; - -struct vblk_disk { - uuid_t disk_id; - u8 alt_name[128]; -}; - -struct vblk_part { - u64 start; - u64 size; - u64 volume_offset; - u64 parent_id; - u64 disk_id; - u8 partnum; -}; - -struct vblk_volu { - u8 volume_type[16]; - u8 volume_state[16]; - u8 guid[16]; - u8 drive_hint[4]; - u64 size; - u8 partition_type; -}; - -struct vblk { - u8 name[64]; - u64 obj_id; - u32 sequence; - u8 flags; - u8 type; - union { - struct vblk_comp comp; - struct vblk_dgrp dgrp; - struct vblk_disk disk; - struct vblk_part part; - struct vblk_volu volu; - } vblk; - struct list_head list; -}; - -struct ldmdb { - struct privhead ph; - struct tocblock toc; - struct vmdb vm; - struct list_head v_dgrp; - struct list_head v_disk; - struct list_head v_volu; - struct list_head v_comp; - struct list_head v_part; -}; - -enum { - SUN_WHOLE_DISK = 5, - LINUX_RAID_PARTITION___3 = 253, -}; - -struct sun_info { - __be16 id; - __be16 flags; -}; - -struct sun_vtoc { - __be32 version; - char volume[8]; - __be16 nparts; - struct sun_info infos[8]; - __be16 padding; - __be32 bootinfo[3]; - __be32 sanity; - __be32 reserved[10]; - __be32 timestamp[8]; -}; - -struct sun_partition { - __be32 start_cylinder; - __be32 num_sectors; -}; - -struct sun_disklabel { - unsigned char info[128]; - struct sun_vtoc vtoc; - __be32 write_reinstruct; - __be32 read_reinstruct; - unsigned char spare[148]; - __be16 rspeed; - __be16 pcylcount; - __be16 sparecyl; - __be16 obs1; - __be16 obs2; - __be16 ilfact; - __be16 ncyl; - __be16 nacyl; - __be16 ntrks; - __be16 nsect; - __be16 obs3; - __be16 obs4; - struct sun_partition partitions[8]; - __be16 magic; - __be16 csum; -}; - -struct rq_qos_wait_data { - struct wait_queue_entry wq; - struct rq_wait *rqw; - acquire_inflight_cb_t *cb; - void *private_data; - bool got_token; -}; - -enum { - MILLION = 1000000, - MIN_PERIOD = 1000, - MAX_PERIOD = 1000000, - MARGIN_MIN_PCT = 10, - MARGIN_LOW_PCT = 20, - MARGIN_TARGET_PCT = 50, - INUSE_ADJ_STEP_PCT = 25, - TIMER_SLACK_PCT = 1, - WEIGHT_ONE = 65536, -}; - -enum { - VTIME_PER_SEC_SHIFT = 37ULL, - VTIME_PER_SEC = 137438953472ULL, - VTIME_PER_USEC = 137438ULL, - VTIME_PER_NSEC = 137ULL, - VRATE_MIN_PPM = 10000ULL, - VRATE_MAX_PPM = 100000000ULL, - VRATE_MIN = 1374ULL, - VRATE_CLAMP_ADJ_PCT = 4ULL, - AUTOP_CYCLE_NSEC = 10000000000ULL, -}; - -enum { - RQ_WAIT_BUSY_PCT = 5, - UNBUSY_THR_PCT = 75, - MIN_DELAY_THR_PCT = 500, - MAX_DELAY_THR_PCT = 25000, - MIN_DELAY = 250, - MAX_DELAY = 250000, - DFGV_USAGE_PCT = 50, - DFGV_PERIOD = 100000, - MAX_LAGGING_PERIODS = 10, - IOC_PAGE_SHIFT = 12, - IOC_PAGE_SIZE = 4096, - IOC_SECT_TO_PAGE_SHIFT = 3, - LCOEF_RANDIO_PAGES = 4096, -}; - -enum ioc_running { - IOC_IDLE = 0, - IOC_RUNNING = 1, - IOC_STOP = 2, -}; - -enum { - QOS_ENABLE = 0, - QOS_CTRL = 1, - NR_QOS_CTRL_PARAMS = 2, -}; - -enum { - QOS_RPPM = 0, - QOS_RLAT = 1, - QOS_WPPM = 2, - QOS_WLAT = 3, - QOS_MIN = 4, - QOS_MAX = 5, - NR_QOS_PARAMS = 6, -}; - -enum { - COST_CTRL = 0, - COST_MODEL = 1, - NR_COST_CTRL_PARAMS = 2, -}; - -enum { - I_LCOEF_RBPS = 0, - I_LCOEF_RSEQIOPS = 1, - I_LCOEF_RRANDIOPS = 2, - I_LCOEF_WBPS = 3, - I_LCOEF_WSEQIOPS = 4, - I_LCOEF_WRANDIOPS = 5, - NR_I_LCOEFS = 6, -}; - -enum { - LCOEF_RPAGE = 0, - LCOEF_RSEQIO = 1, - LCOEF_RRANDIO = 2, - LCOEF_WPAGE = 3, - LCOEF_WSEQIO = 4, - LCOEF_WRANDIO = 5, - NR_LCOEFS = 6, -}; - -enum { - AUTOP_INVALID = 0, - AUTOP_HDD = 1, - AUTOP_SSD_QD1 = 2, - AUTOP_SSD_DFL = 3, - AUTOP_SSD_FAST = 4, -}; - -struct ioc_params { - u32 qos[6]; - u64 i_lcoefs[6]; - u64 lcoefs[6]; - u32 too_fast_vrate_pct; - u32 too_slow_vrate_pct; -}; - -struct ioc_margins { - s64 min; - s64 low; - s64 target; -}; - -struct ioc_missed { - local_t nr_met; - local_t nr_missed; - u32 last_met; - u32 last_missed; -}; - -struct ioc_pcpu_stat { - struct ioc_missed missed[2]; - local64_t rq_wait_ns; - u64 last_rq_wait_ns; -}; - -struct ioc { - struct rq_qos rqos; - bool enabled; - struct ioc_params params; - struct ioc_margins margins; - u32 period_us; - u32 timer_slack_ns; - u64 vrate_min; - u64 vrate_max; - spinlock_t lock; - struct timer_list timer; - struct list_head active_iocgs; - struct ioc_pcpu_stat *pcpu_stat; - enum ioc_running running; - atomic64_t vtime_rate; - u64 vtime_base_rate; - s64 vtime_err; - seqcount_spinlock_t period_seqcount; - u64 period_at; - u64 period_at_vtime; - atomic64_t cur_period; - int busy_level; - bool weights_updated; - atomic_t hweight_gen; - u64 dfgv_period_at; - u64 dfgv_period_rem; - u64 dfgv_usage_us_sum; - u64 autop_too_fast_at; - u64 autop_too_slow_at; - int autop_idx; - bool user_qos_params: 1; - bool user_cost_model: 1; -}; - -struct iocg_pcpu_stat { - local64_t abs_vusage; -}; - -struct iocg_stat { - u64 usage_us; - u64 wait_us; - u64 indebt_us; - u64 indelay_us; -}; - -struct ioc_gq { - struct blkg_policy_data pd; - struct ioc *ioc; - u32 cfg_weight; - u32 weight; - u32 active; - u32 inuse; - u32 last_inuse; - s64 saved_margin; - sector_t cursor; - atomic64_t vtime; - atomic64_t done_vtime; - u64 abs_vdebt; - u64 delay; - u64 delay_at; - atomic64_t active_period; - struct list_head active_list; - u64 child_active_sum; - u64 child_inuse_sum; - u64 child_adjusted_sum; - int hweight_gen; - u32 hweight_active; - u32 hweight_inuse; - u32 hweight_donating; - u32 hweight_after_donation; - struct list_head walk_list; - struct list_head surplus_list; - struct wait_queue_head waitq; - struct hrtimer waitq_timer; - u64 activated_at; - struct iocg_pcpu_stat *pcpu_stat; - struct iocg_stat stat; - struct iocg_stat last_stat; - u64 last_stat_abs_vusage; - u64 usage_delta_us; - u64 wait_since; - u64 indebt_since; - u64 indelay_since; - int level; - struct ioc_gq *ancestors[0]; -}; - -struct ioc_cgrp { - struct blkcg_policy_data cpd; - unsigned int dfl_weight; -}; - -struct ioc_now { - u64 now_ns; - u64 now; - u64 vnow; -}; - -struct iocg_wait { - struct wait_queue_entry wait; - struct bio *bio; - u64 abs_cost; - bool committed; -}; - -struct iocg_wake_ctx { - struct ioc_gq *iocg; - u32 hw_inuse; - s64 vbudget; -}; - -struct trace_event_raw_iocost_iocg_state { - struct trace_entry ent; - u32 __data_loc_devname; - u32 __data_loc_cgroup; - u64 now; - u64 vnow; - u64 vrate; - u64 last_period; - u64 cur_period; - u64 vtime; - u32 weight; - u32 inuse; - u64 hweight_active; - u64 hweight_inuse; - char __data[0]; -}; - -struct trace_event_raw_iocg_inuse_update { - struct trace_entry ent; - u32 __data_loc_devname; - u32 __data_loc_cgroup; - u64 now; - u32 old_inuse; - u32 new_inuse; - u64 old_hweight_inuse; - u64 new_hweight_inuse; - char __data[0]; -}; - -struct trace_event_raw_iocost_ioc_vrate_adj { - struct trace_entry ent; - u32 __data_loc_devname; - u64 old_vrate; - u64 new_vrate; - int busy_level; - u32 read_missed_ppm; - u32 write_missed_ppm; - u32 rq_wait_pct; - int nr_lagging; - int nr_shortages; - char __data[0]; -}; - -struct trace_event_raw_iocost_iocg_forgive_debt { - struct trace_entry ent; - u32 __data_loc_devname; - u32 __data_loc_cgroup; - u64 now; - u64 vnow; - u32 usage_pct; - u64 old_debt; - u64 new_debt; - u64 old_delay; - u64 new_delay; - char __data[0]; -}; - -struct trace_event_data_offsets_iocost_iocg_state { - u32 devname; - const void *devname_ptr_; - u32 cgroup; - const void *cgroup_ptr_; -}; - -struct trace_event_data_offsets_iocg_inuse_update { - u32 devname; - const void *devname_ptr_; - u32 cgroup; - const void *cgroup_ptr_; -}; - -struct trace_event_data_offsets_iocost_ioc_vrate_adj { - u32 devname; - const void *devname_ptr_; -}; - -struct trace_event_data_offsets_iocost_iocg_forgive_debt { - u32 devname; - const void *devname_ptr_; - u32 cgroup; - const void *cgroup_ptr_; -}; - -typedef void (*btf_trace_iocost_iocg_activate)(void *, struct ioc_gq *, const char *, struct ioc_now *, u64, u64, u64); - -typedef void (*btf_trace_iocost_iocg_idle)(void *, struct ioc_gq *, const char *, struct ioc_now *, u64, u64, u64); - -typedef void (*btf_trace_iocost_inuse_shortage)(void *, struct ioc_gq *, const char *, struct ioc_now *, u32, u32, u64, u64); - -typedef void (*btf_trace_iocost_inuse_transfer)(void *, struct ioc_gq *, const char *, struct ioc_now *, u32, u32, u64, u64); - -typedef void (*btf_trace_iocost_inuse_adjust)(void *, struct ioc_gq *, const char *, struct ioc_now *, u32, u32, u64, u64); - -typedef void (*btf_trace_iocost_ioc_vrate_adj)(void *, struct ioc *, u64, u32 *, u32, int, int); - -typedef void (*btf_trace_iocost_iocg_forgive_debt)(void *, struct ioc_gq *, const char *, struct ioc_now *, u32, u64, u64, u64, u64); - -enum opal_mbr { - OPAL_MBR_ENABLE = 0, - OPAL_MBR_DISABLE = 1, -}; - -enum opal_mbr_done_flag { - OPAL_MBR_NOT_DONE = 0, - OPAL_MBR_DONE = 1, -}; - -enum opal_user { - OPAL_ADMIN1 = 0, - OPAL_USER1 = 1, - OPAL_USER2 = 2, - OPAL_USER3 = 3, - OPAL_USER4 = 4, - OPAL_USER5 = 5, - OPAL_USER6 = 6, - OPAL_USER7 = 7, - OPAL_USER8 = 8, - OPAL_USER9 = 9, -}; - -enum opal_lock_state { - OPAL_RO = 1, - OPAL_RW = 2, - OPAL_LK = 4, -}; - -enum opal_lock_flags { - OPAL_SAVE_FOR_LOCK = 1, -}; - -enum opal_key_type { - OPAL_INCLUDED = 0, - OPAL_KEYRING = 1, -}; - -struct opal_key { - __u8 lr; - __u8 key_len; - __u8 key_type; - __u8 __align[5]; - __u8 key[256]; -}; - -enum opal_revert_lsp_opts { - OPAL_PRESERVE = 1, -}; - -struct opal_lr_act { - struct opal_key key; - __u32 sum; - __u8 num_lrs; - __u8 lr[9]; - __u8 align[2]; -}; - -struct opal_session_info { - __u32 sum; - __u32 who; - struct opal_key opal_key; -}; - -struct opal_user_lr_setup { - __u64 range_start; - __u64 range_length; - __u32 RLE; - __u32 WLE; - struct opal_session_info session; -}; - -struct opal_lr_status { - struct opal_session_info session; - __u64 range_start; - __u64 range_length; - __u32 RLE; - __u32 WLE; - __u32 l_state; - __u8 align[4]; -}; - -struct opal_lock_unlock { - struct opal_session_info session; - __u32 l_state; - __u16 flags; - __u8 __align[2]; -}; - -struct opal_new_pw { - struct opal_session_info session; - struct opal_session_info new_user_pw; -}; - -struct opal_mbr_data { - struct opal_key key; - __u8 enable_disable; - __u8 __align[7]; -}; - -struct opal_mbr_done { - struct opal_key key; - __u8 done_flag; - __u8 __align[7]; -}; - -struct opal_shadow_mbr { - struct opal_key key; - const __u64 data; - __u64 offset; - __u64 size; -}; - -enum opal_table_ops { - OPAL_READ_TABLE = 0, - OPAL_WRITE_TABLE = 1, -}; - -struct opal_read_write_table { - struct opal_key key; - const __u64 data; - const __u8 table_uid[8]; - __u64 offset; - __u64 size; - __u64 flags; - __u64 priv; -}; - -struct opal_status { - __u32 flags; - __u32 reserved; -}; - -struct opal_geometry { - __u8 align; - __u32 logical_block_size; - __u64 alignment_granularity; - __u64 lowest_aligned_lba; - __u8 __align[3]; -}; - -struct opal_discovery { - __u64 data; - __u64 size; -}; - -struct opal_revert_lsp { - struct opal_key key; - __u32 options; - __u32 __pad; -}; - -enum { - TCG_SECP_00 = 0, - TCG_SECP_01 = 1, -}; - -enum opal_response_token { - OPAL_DTA_TOKENID_BYTESTRING = 224, - OPAL_DTA_TOKENID_SINT = 225, - OPAL_DTA_TOKENID_UINT = 226, - OPAL_DTA_TOKENID_TOKEN = 227, - OPAL_DTA_TOKENID_INVALID = 0, -}; - -enum opal_uid { - OPAL_SMUID_UID = 0, - OPAL_THISSP_UID = 1, - OPAL_ADMINSP_UID = 2, - OPAL_LOCKINGSP_UID = 3, - OPAL_ENTERPRISE_LOCKINGSP_UID = 4, - OPAL_ANYBODY_UID = 5, - OPAL_SID_UID = 6, - OPAL_ADMIN1_UID = 7, - OPAL_USER1_UID = 8, - OPAL_USER2_UID = 9, - OPAL_PSID_UID = 10, - OPAL_ENTERPRISE_BANDMASTER0_UID = 11, - OPAL_ENTERPRISE_ERASEMASTER_UID = 12, - OPAL_TABLE_TABLE = 13, - OPAL_LOCKINGRANGE_GLOBAL = 14, - OPAL_LOCKINGRANGE_ACE_START_TO_KEY = 15, - OPAL_LOCKINGRANGE_ACE_RDLOCKED = 16, - OPAL_LOCKINGRANGE_ACE_WRLOCKED = 17, - OPAL_MBRCONTROL = 18, - OPAL_MBR = 19, - OPAL_AUTHORITY_TABLE = 20, - OPAL_C_PIN_TABLE = 21, - OPAL_LOCKING_INFO_TABLE = 22, - OPAL_ENTERPRISE_LOCKING_INFO_TABLE = 23, - OPAL_DATASTORE = 24, - OPAL_C_PIN_MSID = 25, - OPAL_C_PIN_SID = 26, - OPAL_C_PIN_ADMIN1 = 27, - OPAL_HALF_UID_AUTHORITY_OBJ_REF = 28, - OPAL_HALF_UID_BOOLEAN_ACE = 29, - OPAL_UID_HEXFF = 30, -}; - -enum opal_method { - OPAL_PROPERTIES = 0, - OPAL_STARTSESSION = 1, - OPAL_REVERT = 2, - OPAL_ACTIVATE = 3, - OPAL_EGET = 4, - OPAL_ESET = 5, - OPAL_NEXT = 6, - OPAL_EAUTHENTICATE = 7, - OPAL_GETACL = 8, - OPAL_GENKEY = 9, - OPAL_REVERTSP = 10, - OPAL_GET = 11, - OPAL_SET = 12, - OPAL_AUTHENTICATE = 13, - OPAL_RANDOM = 14, - OPAL_ERASE = 15, -}; - -enum opal_token { - OPAL_TRUE = 1, - OPAL_FALSE = 0, - OPAL_BOOLEAN_EXPR = 3, - OPAL_TABLE = 0, - OPAL_STARTROW = 1, - OPAL_ENDROW = 2, - OPAL_STARTCOLUMN = 3, - OPAL_ENDCOLUMN = 4, - OPAL_VALUES = 1, - OPAL_TABLE_UID = 0, - OPAL_TABLE_NAME = 1, - OPAL_TABLE_COMMON = 2, - OPAL_TABLE_TEMPLATE = 3, - OPAL_TABLE_KIND = 4, - OPAL_TABLE_COLUMN = 5, - OPAL_TABLE_COLUMNS = 6, - OPAL_TABLE_ROWS = 7, - OPAL_TABLE_ROWS_FREE = 8, - OPAL_TABLE_ROW_BYTES = 9, - OPAL_TABLE_LASTID = 10, - OPAL_TABLE_MIN = 11, - OPAL_TABLE_MAX = 12, - OPAL_PIN = 3, - OPAL_RANGESTART = 3, - OPAL_RANGELENGTH = 4, - OPAL_READLOCKENABLED = 5, - OPAL_WRITELOCKENABLED = 6, - OPAL_READLOCKED = 7, - OPAL_WRITELOCKED = 8, - OPAL_ACTIVEKEY = 10, - OPAL_LIFECYCLE = 6, - OPAL_MAXRANGES = 4, - OPAL_MBRENABLE = 1, - OPAL_MBRDONE = 2, - OPAL_HOSTPROPERTIES = 0, - OPAL_STARTLIST = 240, - OPAL_ENDLIST = 241, - OPAL_STARTNAME = 242, - OPAL_ENDNAME = 243, - OPAL_CALL = 248, - OPAL_ENDOFDATA = 249, - OPAL_ENDOFSESSION = 250, - OPAL_STARTTRANSACTON = 251, - OPAL_ENDTRANSACTON = 252, - OPAL_EMPTYATOM = 255, - OPAL_WHERE = 0, -}; - -enum opal_parameter { - OPAL_SUM_SET_LIST = 393216, -}; - -enum opal_revertlsp { - OPAL_KEEP_GLOBAL_RANGE_KEY = 393216, -}; - -struct opal_compacket { - __be32 reserved0; - u8 extendedComID[4]; - __be32 outstandingData; - __be32 minTransfer; - __be32 length; -}; - -struct opal_packet { - __be32 tsn; - __be32 hsn; - __be32 seq_number; - __be16 reserved0; - __be16 ack_type; - __be32 acknowledgment; - __be32 length; -}; - -struct opal_data_subpacket { - u8 reserved0[6]; - __be16 kind; - __be32 length; -}; - -struct opal_header { - struct opal_compacket cp; - struct opal_packet pkt; - struct opal_data_subpacket subpkt; -}; - -struct d0_header { - __be32 length; - __be32 revision; - __be32 reserved01; - __be32 reserved02; - u8 ignored[32]; -}; - -struct d0_tper_features { - u8 supported_features; - u8 reserved01[3]; - __be32 reserved02; - __be32 reserved03; -}; - -struct d0_locking_features { - u8 supported_features; - u8 reserved01[3]; - __be32 reserved02; - __be32 reserved03; -}; - -struct d0_geometry_features { - u8 header[4]; - u8 reserved01; - u8 reserved02[7]; - __be32 logical_block_size; - __be64 alignment_granularity; - __be64 lowest_aligned_lba; -}; - -struct d0_opal_v100 { - __be16 baseComID; - __be16 numComIDs; -}; - -struct d0_single_user_mode { - __be32 num_locking_objects; - u8 reserved01; - u8 reserved02; - __be16 reserved03; - __be32 reserved04; -}; - -struct d0_opal_v200 { - __be16 baseComID; - __be16 numComIDs; - u8 range_crossing; - u8 num_locking_admin_auth[2]; - u8 num_locking_user_auth[2]; - u8 initialPIN; - u8 revertedPIN; - u8 reserved01; - __be32 reserved02; -}; - -struct d0_features { - __be16 code; - u8 r_version; - u8 length; - u8 features[0]; -}; - -struct opal_step { - int (*fn)(struct opal_dev *, void *); - void *data; -}; - -enum opal_atom_width { - OPAL_WIDTH_TINY = 0, - OPAL_WIDTH_SHORT = 1, - OPAL_WIDTH_MEDIUM = 2, - OPAL_WIDTH_LONG = 3, - OPAL_WIDTH_TOKEN = 4, -}; - -struct opal_resp_tok { - const u8 *pos; - size_t len; - enum opal_response_token type; - enum opal_atom_width width; - union { - u64 u; - s64 s; - } stored; -}; - -struct parsed_resp { - int num; - struct opal_resp_tok toks[64]; -}; - -struct opal_dev { - u32 flags; - void *data; - sec_send_recv *send_recv; - struct mutex dev_lock; - u16 comid; - u32 hsn; - u32 tsn; - u64 align; - u64 lowest_lba; - u32 logical_block_size; - u8 align_required; - size_t pos; - u8 *cmd; - u8 *resp; - struct parsed_resp parsed; - size_t prev_d_len; - void *prev_data; - struct list_head unlk_lst; -}; - -typedef int cont_fn(struct opal_dev *); - -struct opal_suspend_data { - struct opal_lock_unlock unlk; - u8 lr; - struct list_head node; -}; - -struct bio_fallback_crypt_ctx { - struct bio_crypt_ctx crypt_ctx; - struct bvec_iter crypt_iter; - union { - struct { - struct work_struct work; - struct bio *bio; - }; - struct { - void *bi_private_orig; - bio_end_io_t *bi_end_io_orig; - }; - }; -}; - -struct blk_crypto_fallback_keyslot { - enum blk_crypto_mode_num crypto_mode; - struct crypto_skcipher *tfms[5]; -}; - -union blk_crypto_iv { - __le64 dun[4]; - u8 bytes[32]; -}; - -struct io_uring_rsrc_register { - __u32 nr; - __u32 flags; - __u64 resv2; - __u64 data; - __u64 tags; -}; - -struct io_uring_rsrc_update2 { - __u32 offset; - __u32 resv; - __u64 data; - __u64 tags; - __u32 nr; - __u32 resv2; -}; - -enum { - IORING_REGISTER_SRC_REGISTERED = 1, - IORING_REGISTER_DST_REPLACE = 2, -}; - -struct io_uring_clone_buffers { - __u32 src_fd; - __u32 flags; - __u32 src_off; - __u32 dst_off; - __u32 nr; - __u32 pad[3]; -}; - -struct io_rsrc_update { - struct file *file; - u64 arg; - u32 nr_args; - u32 offset; -}; - -enum io_uring_msg_ring_flags { - IORING_MSG_DATA = 0, - IORING_MSG_SEND_FD = 1, -}; - -struct io_msg { - struct file *file; - struct file *src_file; - struct callback_head tw; - u64 user_data; - u32 len; - u32 cmd; - u32 src_fd; - union { - u32 dst_fd; - u32 cqe_flags; - }; - u32 flags; -}; - -struct io_epoll { - struct file *file; - int epfd; - int op; - int fd; - struct epoll_event event; -}; - -struct io_epoll_wait { - struct file *file; - int maxevents; - struct epoll_event *events; -}; - -enum io_uring_socket_op { - SOCKET_URING_OP_SIOCINQ = 0, - SOCKET_URING_OP_SIOCOUTQ = 1, - SOCKET_URING_OP_GETSOCKOPT = 2, - SOCKET_URING_OP_SETSOCKOPT = 3, - SOCKET_URING_OP_TX_TIMESTAMP = 4, -}; - -struct io_timespec { - __u64 tv_sec; - __u64 tv_nsec; -}; - -union nested_table { - union nested_table *table; - struct rhash_lock_head *bucket; -}; - -typedef long int mpi_limb_signed_t; - -typedef ZSTD_cParameter zstd_cparameter; - -typedef ZSTD_CDict zstd_cdict; - -typedef ZSTD_CStream zstd_cstream; - -typedef ZSTD_sequenceProducer_F zstd_sequence_producer_f; - -typedef ZSTD_Sequence zstd_sequence; - -typedef size_t (*huf_compress_f)(void *, size_t, const void *, size_t, unsigned int, unsigned int, void *, size_t, HUF_CElt *, HUF_repeat *, int); - -typedef struct { - S16 norm[53]; - U32 wksp[285]; -} ZSTD_BuildCTableWksp; - -typedef struct { - U32 litLength; - U32 matchLength; -} ZSTD_SequenceLength; - -typedef struct { - size_t estLitSize; - size_t estBlockSize; -} EstimatedBlockSize; - -typedef int (*ZSTD_match4Found)(const BYTE *, const BYTE *, U32, U32); - -typedef enum { - ZSTD_d_windowLogMax = 100, - ZSTD_d_experimentalParam1 = 1000, - ZSTD_d_experimentalParam2 = 1001, - ZSTD_d_experimentalParam3 = 1002, - ZSTD_d_experimentalParam4 = 1003, - ZSTD_d_experimentalParam5 = 1004, - ZSTD_d_experimentalParam6 = 1005, -} ZSTD_dParameter; - -typedef enum { - ZSTDnit_frameHeader = 0, - ZSTDnit_blockHeader = 1, - ZSTDnit_block = 2, - ZSTDnit_lastBlock = 3, - ZSTDnit_checksum = 4, - ZSTDnit_skippableFrame = 5, -} ZSTD_nextInputType_e; - -typedef struct { - size_t nbBlocks; - size_t compressedSize; - long long unsigned int decompressedBound; -} ZSTD_frameSizeInfo; - -typedef unsigned int FSE_DTable; - -typedef struct { - size_t state; - const void *table; -} FSE_DState_t; - -typedef struct { - U16 tableLog; - U16 fastMode; -} FSE_DTableHeader; - -typedef struct { - short unsigned int newState; - unsigned char symbol; - unsigned char nbBits; -} FSE_decode_t; - -typedef struct { - short int ncount[256]; -} FSE_DecompressWksp; - -struct xz_dec_bcj { - enum { - BCJ_X86 = 4, - BCJ_POWERPC = 5, - BCJ_IA64 = 6, - BCJ_ARM = 7, - BCJ_ARMTHUMB = 8, - BCJ_SPARC = 9, - BCJ_ARM64 = 10, - BCJ_RISCV = 11, - } type; - enum xz_ret ret; - bool single_call; - uint32_t pos; - uint32_t x86_prev_mask; - uint8_t *out; - size_t out_pos; - size_t out_size; - struct { - size_t filtered; - size_t size; - uint8_t buf[16]; - } temp; -}; - -struct ts_linear_state { - unsigned int len; - const void *data; -}; - -struct sg_pool { - size_t size; - char *name; - struct kmem_cache *slab; - mempool_t *pool; -}; - -enum { - SX150X_123 = 0, - SX150X_456 = 1, - SX150X_789 = 2, -}; - -enum { - SX150X_789_REG_MISC_AUTOCLEAR_OFF = 1, - SX150X_MAX_REGISTER = 173, - SX150X_IRQ_TYPE_EDGE_RISING = 1, - SX150X_IRQ_TYPE_EDGE_FALLING = 2, - SX150X_789_RESET_KEY1 = 18, - SX150X_789_RESET_KEY2 = 52, -}; - -struct sx150x_123_pri { - u8 reg_pld_mode; - u8 reg_pld_table0; - u8 reg_pld_table1; - u8 reg_pld_table2; - u8 reg_pld_table3; - u8 reg_pld_table4; - u8 reg_advanced; -}; - -struct sx150x_456_pri { - u8 reg_pld_mode; - u8 reg_pld_table0; - u8 reg_pld_table1; - u8 reg_pld_table2; - u8 reg_pld_table3; - u8 reg_pld_table4; - u8 reg_advanced; -}; - -struct sx150x_789_pri { - u8 reg_drain; - u8 reg_polarity; - u8 reg_clock; - u8 reg_misc; - u8 reg_reset; - u8 ngpios; -}; - -struct sx150x_device_data { - u8 model; - u8 reg_pullup; - u8 reg_pulldn; - u8 reg_dir; - u8 reg_data; - u8 reg_irq_mask; - u8 reg_irq_src; - u8 reg_sense; - u8 ngpios; - union { - struct sx150x_123_pri x123; - struct sx150x_456_pri x456; - struct sx150x_789_pri x789; - } pri; - const struct pinctrl_pin_desc *pins; - unsigned int npins; -}; - -struct sx150x_pinctrl { - struct device *dev; - struct i2c_client *client; - struct pinctrl_dev *pctldev; - struct pinctrl_desc pinctrl_desc; - struct gpio_chip gpio; - struct regmap *regmap; - struct { - u32 sense; - u32 masked; - } irq; - struct mutex lock; - const struct sx150x_device_data *data; -}; - -struct pwm_lpss_chip { - void *regs; - const struct pwm_lpss_boardinfo *info; -}; - -struct expresswire_timing { - long unsigned int poweroff_us; - long unsigned int detect_delay_us; - long unsigned int detect_us; - long unsigned int data_start_us; - long unsigned int end_of_data_low_us; - long unsigned int end_of_data_high_us; - long unsigned int short_bitset_us; - long unsigned int long_bitset_us; -}; - -struct expresswire_common_props { - struct gpio_desc *ctrl_gpio; - struct expresswire_timing timing; -}; - -enum pcie_reset_state { - pcie_deassert_reset = 1, - pcie_warm_reset = 2, - pcie_hot_reset = 3, -}; - -struct pci_pme_device { - struct list_head list; - struct pci_dev *dev; -}; - -struct pci_acs { - u16 cap; - u16 ctrl; - u16 fw_ctrl; -}; - -struct pci_saved_state { - u32 config_space[16]; - struct pci_cap_saved_data cap[0]; -}; - -struct hpx_type0 { - u32 revision; - u8 cache_line_size; - u8 latency_timer; - u8 enable_serr; - u8 enable_perr; -}; - -struct hpx_type1 { - u32 revision; - u8 max_mem_read; - u8 avg_max_split; - u16 tot_max_split; -}; - -struct hpx_type2 { - u32 revision; - u32 unc_err_mask_and; - u32 unc_err_mask_or; - u32 unc_err_sever_and; - u32 unc_err_sever_or; - u32 cor_err_mask_and; - u32 cor_err_mask_or; - u32 adv_err_cap_and; - u32 adv_err_cap_or; - u16 pci_exp_devctl_and; - u16 pci_exp_devctl_or; - u16 pci_exp_lnkctl_and; - u16 pci_exp_lnkctl_or; - u32 sec_unc_err_sever_and; - u32 sec_unc_err_sever_or; - u32 sec_unc_err_mask_and; - u32 sec_unc_err_mask_or; -}; - -struct hpx_type3 { - u16 device_type; - u16 function_type; - u16 config_space_location; - u16 pci_exp_cap_id; - u16 pci_exp_cap_ver; - u16 pci_exp_vendor_id; - u16 dvsec_id; - u16 dvsec_rev; - u16 match_offset; - u32 match_mask_and; - u32 match_value; - u16 reg_offset; - u32 reg_mask_and; - u32 reg_mask_or; -}; - -enum hpx_type3_dev_type { - HPX_TYPE_ENDPOINT = 1, - HPX_TYPE_LEG_END = 2, - HPX_TYPE_RC_END = 4, - HPX_TYPE_RC_EC = 8, - HPX_TYPE_ROOT_PORT = 16, - HPX_TYPE_UPSTREAM = 32, - HPX_TYPE_DOWNSTREAM = 64, - HPX_TYPE_PCI_BRIDGE = 128, - HPX_TYPE_PCIE_BRIDGE = 256, -}; - -enum hpx_type3_fn_type { - HPX_FN_NORMAL = 1, - HPX_FN_SRIOV_PHYS = 2, - HPX_FN_SRIOV_VIRT = 4, -}; - -enum hpx_type3_cfg_loc { - HPX_CFG_PCICFG = 0, - HPX_CFG_PCIE_CAP = 1, - HPX_CFG_PCIE_CAP_EXT = 2, - HPX_CFG_VEND_CAP = 3, - HPX_CFG_DVSEC = 4, - HPX_CFG_MAX = 5, -}; - -enum octep_hp_intr_type { - OCTEP_HP_INTR_INVALID = -1, - OCTEP_HP_INTR_ENA = 0, - OCTEP_HP_INTR_DIS = 1, - OCTEP_HP_INTR_MAX = 2, -}; - -struct octep_hp_cmd { - struct list_head list; - enum octep_hp_intr_type intr_type; - u64 intr_val; -}; - -struct octep_hp_controller; - -struct octep_hp_slot { - struct list_head list; - struct hotplug_slot slot; - u16 slot_number; - struct pci_dev *hp_pdev; - unsigned int hp_devfn; - struct octep_hp_controller *ctrl; -}; - -struct octep_hp_intr_info { - enum octep_hp_intr_type type; - int number; - char name[16]; -}; - -struct octep_hp_controller { - void *base; - struct pci_dev *pdev; - struct octep_hp_intr_info intr[2]; - struct work_struct work; - struct list_head slot_list; - struct mutex slot_lock; - struct list_head hp_cmd_list; - spinlock_t hp_cmd_lock; -}; - -enum smbios_attr_enum { - SMBIOS_ATTR_NONE = 0, - SMBIOS_ATTR_LABEL_SHOW = 1, - SMBIOS_ATTR_INSTANCE_SHOW = 2, -}; - -enum acpi_attr_enum { - ACPI_ATTR_LABEL_SHOW = 0, - ACPI_ATTR_INDEX_SHOW = 1, -}; - -union st_info { - struct { - u64 vm_st_valid: 1; - u64 vm_xst_valid: 1; - u64 vm_ph_ignore: 1; - u64 rsvd1: 5; - u64 vm_st: 8; - u64 vm_xst: 16; - u64 pm_st_valid: 1; - u64 pm_xst_valid: 1; - u64 pm_ph_ignore: 1; - u64 rsvd2: 5; - u64 pm_st: 8; - u64 pm_xst: 16; - }; - u64 value; -}; - -enum dw_edma_chip_flags { - DW_EDMA_CHIP_LOCAL = 1, -}; - -struct dwc_pcie_vsec_id { - u16 vendor_id; - u16 vsec_id; - u8 vsec_rev; -}; - -struct meson_pcie_clk_res { - struct clk *clk; - struct clk *port_clk; - struct clk *general_clk; -}; - -struct meson_pcie_rc_reset { - struct reset_control *port; - struct reset_control *apb; -}; - -struct meson_pcie { - struct dw_pcie pci; - void *cfg_base; - struct meson_pcie_clk_res clk_res; - struct meson_pcie_rc_reset mrst; - struct gpio_desc *reset_gpio; - struct phy *phy; -}; - -struct aperture_range { - struct device *dev; - resource_size_t base; - resource_size_t size; - struct list_head lh; - void (*detach)(struct device *); -}; - -enum backlight_update_reason { - BACKLIGHT_UPDATE_HOTKEY = 0, - BACKLIGHT_UPDATE_SYSFS = 1, -}; - -struct acpi_madt_io_sapic { - struct acpi_subtable_header header; - u8 id; - u8 reserved; - u32 global_irq_base; - u64 address; -}; - -struct acpi_madt_interrupt_source { - struct acpi_subtable_header header; - u16 inti_flags; - u8 type; - u8 id; - u8 eid; - u8 io_sapic_vector; - u32 global_irq; - u32 flags; -}; - -struct acpi_madt_generic_distributor { - struct acpi_subtable_header header; - u16 reserved; - u32 gic_id; - u64 base_address; - u32 global_irq_base; - u8 version; - u8 reserved2[3]; -}; - -struct acpi_osi_entry { - char string[64]; - bool enable; -}; - -struct acpi_osi_config { - u8 default_disabling; - unsigned int linux_enable: 1; - unsigned int linux_dmi: 1; - unsigned int linux_cmdline: 1; - unsigned int darwin_enable: 1; - unsigned int darwin_dmi: 1; - unsigned int darwin_cmdline: 1; -}; - -struct acpi_debugger { - const struct acpi_debugger_ops *ops; - struct module *owner; - struct mutex lock; -}; - -struct acpi_os_dpc { - acpi_osd_exec_callback function; - void *context; - struct work_struct work; -}; - -struct acpi_ioremap { - struct list_head list; - void *virt; - acpi_physical_address phys; - acpi_size size; - union { - long unsigned int refcount; - struct rcu_work rwork; - } track; -}; - -struct acpi_hp_work { - struct work_struct work; - struct acpi_device *adev; - u32 src; -}; - -struct irq_override_cmp { - const struct dmi_system_id *system; - unsigned char irq; - unsigned char triggering; - unsigned char polarity; - unsigned char shareable; - bool override; -}; - -struct res_proc_context { - struct list_head *list; - int (*preproc)(struct acpi_resource *, void *); - void *preproc_data; - int count; - int error; -}; - -enum acpi_bridge_type { - ACPI_BRIDGE_TYPE_PCIE = 1, - ACPI_BRIDGE_TYPE_CXL = 2, -}; - -struct pci_osc_bit_struct { - u32 bit; - char *desc; -}; - -struct acpi_table_ccel { - struct acpi_table_header header; - u8 CCtype; - u8 Ccsub_type; - u16 reserved; - u64 log_area_minimum_length; - u64 log_area_start_address; -}; - -struct acpi_dlayer { - const char *name; - long unsigned int value; -}; - -struct acpi_dlevel { - const char *name; - long unsigned int value; -}; - -struct acpi_table_attr { - struct bin_attribute attr; - char name[4]; - int instance; - char filename[8]; - struct list_head node; -}; - -struct acpi_data_attr { - struct bin_attribute attr; - u64 addr; -}; - -struct acpi_data_obj { - char *name; - int (*fn)(void *, struct acpi_data_attr *); -}; - -struct event_counter { - u32 count; - u32 flags; -}; - -enum fpdt_subtable_type { - SUBTABLE_FBPT = 0, - SUBTABLE_S3PT = 1, -}; - -struct fpdt_subtable_entry { - u16 type; - u8 length; - u8 revision; - u32 reserved; - u64 address; -}; - -struct fpdt_subtable_header { - u32 signature; - u32 length; -}; - -enum fpdt_record_type { - RECORD_S3_RESUME = 0, - RECORD_S3_SUSPEND = 1, - RECORD_BOOT = 2, -}; - -struct fpdt_record_header { - u16 type; - u8 length; - u8 revision; -}; - -struct resume_performance_record { - struct fpdt_record_header header; - u32 resume_count; - u64 resume_prev; - u64 resume_avg; -}; - -struct boot_performance_record { - struct fpdt_record_header header; - u32 reserved; - u64 firmware_start; - u64 bootloader_load; - u64 bootloader_launch; - u64 exitbootservice_start; - u64 exitbootservice_end; -}; - -struct suspend_performance_record { - struct fpdt_record_header header; - u64 suspend_start; - u64 suspend_end; -} __attribute__((packed)); - -struct pcc_data { - struct pcc_mbox_chan *pcc_chan; - struct completion done; - struct mbox_client cl; - struct acpi_pcc_info ctx; -}; - -struct acpi_signal_fatal_info { - u32 type; - u32 code; - u32 argument; -}; - -struct acpi_exception_info { - char *name; -}; - -enum intel_cht_wc_models { - INTEL_CHT_WC_UNKNOWN = 0, - INTEL_CHT_WC_GPD_WIN_POCKET = 1, - INTEL_CHT_WC_XIAOMI_MIPAD2 = 2, - INTEL_CHT_WC_LENOVO_YOGABOOK1 = 3, - INTEL_CHT_WC_LENOVO_YT3_X90 = 4, -}; - -struct intel_scu_ipc_dev; - -struct intel_soc_pmic { - int irq; - struct regmap *regmap; - struct regmap_irq_chip_data *irq_chip_data; - struct regmap_irq_chip_data *irq_chip_data_pwrbtn; - struct regmap_irq_chip_data *irq_chip_data_tmu; - struct regmap_irq_chip_data *irq_chip_data_bcu; - struct regmap_irq_chip_data *irq_chip_data_adc; - struct regmap_irq_chip_data *irq_chip_data_chgr; - struct regmap_irq_chip_data *irq_chip_data_crit; - struct device *dev; - struct intel_scu_ipc_dev *scu; - enum intel_cht_wc_models cht_wc_model; -}; - -struct lpi_device_info { - char *name; - int enabled; - union acpi_object *package; -}; - -struct lpi_device_constraint { - int uid; - int min_dstate; - int function_states; -}; - -struct lpi_constraints { - acpi_handle handle; - int min_dstate; -}; - -struct lpi_device_constraint_amd { - char *name; - int enabled; - int function_states; - int min_dstate; -}; - -struct amd_lps0_hid_device_data { - const bool check_off_by_one; -}; - -struct clk_fixed_factor { - struct clk_hw hw; - unsigned int mult; - unsigned int div; - long unsigned int acc; - unsigned int flags; -}; - -struct clk_gate { - struct clk_hw hw; - void *reg; - u8 bit_idx; - u8 flags; - spinlock_t *lock; -}; - -struct u32_fract { - __u32 numerator; - __u32 denominator; -}; - -struct clk_fractional_divider { - struct clk_hw hw; - void *reg; - u8 mshift; - u8 mwidth; - u8 nshift; - u8 nwidth; - u8 flags; - void (*approximation)(struct clk_hw *, long unsigned int, long unsigned int *, long unsigned int *, long unsigned int *); - spinlock_t *lock; -}; - -struct acpi_table_csrt { - struct acpi_table_header header; -}; - -struct acpi_csrt_group { - u32 length; - u32 vendor_id; - u32 subvendor_id; - u16 device_id; - u16 subdevice_id; - u16 revision; - u16 reserved; - u32 shared_info_length; -}; - -struct acpi_csrt_shared_info { - u16 major_version; - u16 minor_version; - u32 mmio_base_low; - u32 mmio_base_high; - u32 gsi_interrupt; - u8 interrupt_polarity; - u8 interrupt_mode; - u8 num_channels; - u8 dma_address_width; - u16 base_request_line; - u16 num_handshake_signals; - u32 max_block_size; -}; - -struct acpi_dma_spec { - int chan_id; - int slave_id; - struct device *dev; -}; - -struct acpi_dma { - struct list_head dma_controllers; - struct device *dev; - struct dma_chan * (*acpi_dma_xlate)(struct acpi_dma_spec *, struct acpi_dma *); - void *data; - short unsigned int base_request_line; - short unsigned int end_request_line; -}; - -struct acpi_dma_filter_info { - dma_cap_mask_t dma_cap; - dma_filter_fn filter_fn; -}; - -struct acpi_dma_parser_data { - struct acpi_dma_spec dma_spec; - size_t index; - size_t n; -}; - -struct vring_desc { - __virtio64 addr; - __virtio32 len; - __virtio16 flags; - __virtio16 next; -}; - -struct vring_avail { - __virtio16 flags; - __virtio16 idx; - __virtio16 ring[0]; -}; - -struct vring_used_elem { - __virtio32 id; - __virtio32 len; -}; - -typedef struct vring_used_elem vring_used_elem_t; - -struct vring_used { - __virtio16 flags; - __virtio16 idx; - vring_used_elem_t ring[0]; -}; - -typedef struct vring_desc vring_desc_t; - -typedef struct vring_avail vring_avail_t; - -typedef struct vring_used vring_used_t; - -struct vring { - unsigned int num; - vring_desc_t *desc; - vring_avail_t *avail; - vring_used_t *used; -}; - -struct vring_packed_desc_event { - __le16 off_wrap; - __le16 flags; -}; - -struct vring_packed_desc { - __le64 addr; - __le32 len; - __le16 id; - __le16 flags; -}; - -struct vring_desc_state_split { - void *data; - struct vring_desc *indir_desc; -}; - -struct vring_desc_state_packed { - void *data; - struct vring_packed_desc *indir_desc; - u16 num; - u16 last; -}; - -struct vring_desc_extra { - dma_addr_t addr; - u32 len; - u16 flags; - u16 next; -}; - -struct vring_virtqueue_split { - struct vring vring; - u16 avail_flags_shadow; - u16 avail_idx_shadow; - struct vring_desc_state_split *desc_state; - struct vring_desc_extra *desc_extra; - dma_addr_t queue_dma_addr; - size_t queue_size_in_bytes; - u32 vring_align; - bool may_reduce_num; -}; - -struct vring_virtqueue_packed { - struct { - unsigned int num; - struct vring_packed_desc *desc; - struct vring_packed_desc_event *driver; - struct vring_packed_desc_event *device; - } vring; - bool avail_wrap_counter; - u16 avail_used_flags; - u16 next_avail_idx; - u16 event_flags_shadow; - struct vring_desc_state_packed *desc_state; - struct vring_desc_extra *desc_extra; - dma_addr_t ring_dma_addr; - dma_addr_t driver_event_dma_addr; - dma_addr_t device_event_dma_addr; - size_t ring_size_in_bytes; - size_t event_size_in_bytes; -}; - -struct vring_virtqueue { - struct virtqueue vq; - bool packed_ring; - bool use_dma_api; - bool weak_barriers; - bool broken; - bool indirect; - bool event; - unsigned int free_head; - unsigned int num_added; - u16 last_used_idx; - bool event_triggered; - union { - struct vring_virtqueue_split split; - struct vring_virtqueue_packed packed; - }; - bool (*notify)(struct virtqueue *); - bool we_own_ring; - struct device *dma_dev; -}; - -struct virtio_balloon_config { - __le32 num_pages; - __le32 actual; - union { - __le32 free_page_hint_cmd_id; - __le32 free_page_report_cmd_id; - }; - __le32 poison_val; -}; - -struct virtio_balloon_stat { - __virtio16 tag; - __virtio64 val; -} __attribute__((packed)); - -enum virtio_balloon_vq { - VIRTIO_BALLOON_VQ_INFLATE = 0, - VIRTIO_BALLOON_VQ_DEFLATE = 1, - VIRTIO_BALLOON_VQ_STATS = 2, - VIRTIO_BALLOON_VQ_FREE_PAGE = 3, - VIRTIO_BALLOON_VQ_REPORTING = 4, - VIRTIO_BALLOON_VQ_MAX = 5, -}; - -enum virtio_balloon_config_read { - VIRTIO_BALLOON_CONFIG_READ_CMD_ID = 0, -}; - -struct virtio_balloon { - struct virtio_device *vdev; - struct virtqueue *inflate_vq; - struct virtqueue *deflate_vq; - struct virtqueue *stats_vq; - struct virtqueue *free_page_vq; - struct workqueue_struct *balloon_wq; - struct work_struct report_free_page_work; - struct work_struct update_balloon_stats_work; - struct work_struct update_balloon_size_work; - spinlock_t stop_update_lock; - bool stop_update; - long unsigned int config_read_bitmap; - struct list_head free_page_list; - spinlock_t free_page_list_lock; - long unsigned int num_free_page_blocks; - u32 cmd_id_received_cache; - __virtio32 cmd_id_active; - __virtio32 cmd_id_stop; - wait_queue_head_t acked; - unsigned int num_pages; - struct balloon_dev_info vb_dev_info; - struct mutex balloon_lock; - unsigned int num_pfns; - __virtio32 pfns[256]; - struct virtio_balloon_stat stats[16]; - struct shrinker *shrinker; - struct notifier_block oom_nb; - struct virtqueue *reporting_vq; - struct page_reporting_dev_info pr_dev_info; - spinlock_t wakeup_lock; - bool processing_wakeup_event; - u32 wakeup_signal_mask; -}; - -struct uni_pagedict { - u16 **uni_pgdir[32]; - long unsigned int refcount; - long unsigned int sum; - unsigned char *inverse_translations[4]; - u16 *inverse_trans_unicode; -}; - -struct irq_info___2 { - struct hlist_node node; - int irq; - spinlock_t lock; - struct list_head *head; -}; - -struct pciserial_board { - unsigned int flags; - unsigned int num_ports; - unsigned int base_baud; - unsigned int uart_offset; - unsigned int reg_shift; - unsigned int first_offset; -}; - -struct serial_private; - -struct pci_serial_quirk { - u32 vendor; - u32 device; - u32 subvendor; - u32 subdevice; - int (*probe)(struct pci_dev *); - int (*init)(struct pci_dev *); - int (*setup)(struct serial_private *, const struct pciserial_board *, struct uart_8250_port *, int); - void (*exit)(struct pci_dev *); -}; - -struct serial_private { - struct pci_dev *dev; - unsigned int nr; - struct pci_serial_quirk *quirk; - const struct pciserial_board *board; - int line[0]; -}; - -struct f815xxa_data { - spinlock_t lock; - int idx; -}; - -struct timedia_struct { - int num; - const short unsigned int *ids; -}; - -enum { - MOXA_SUPP_RS232 = 1, - MOXA_SUPP_RS422 = 2, - MOXA_SUPP_RS485 = 4, -}; - -enum pci_board_num_t { - pbn_default = 0, - pbn_b0_1_115200 = 1, - pbn_b0_2_115200 = 2, - pbn_b0_4_115200 = 3, - pbn_b0_5_115200 = 4, - pbn_b0_8_115200 = 5, - pbn_b0_1_921600 = 6, - pbn_b0_2_921600 = 7, - pbn_b0_4_921600 = 8, - pbn_b0_2_1130000 = 9, - pbn_b0_4_1152000 = 10, - pbn_b0_4_1250000 = 11, - pbn_b0_2_1843200 = 12, - pbn_b0_4_1843200 = 13, - pbn_b0_1_15625000 = 14, - pbn_b0_bt_1_115200 = 15, - pbn_b0_bt_2_115200 = 16, - pbn_b0_bt_4_115200 = 17, - pbn_b0_bt_8_115200 = 18, - pbn_b0_bt_1_460800 = 19, - pbn_b0_bt_2_460800 = 20, - pbn_b0_bt_4_460800 = 21, - pbn_b0_bt_1_921600 = 22, - pbn_b0_bt_2_921600 = 23, - pbn_b0_bt_4_921600 = 24, - pbn_b0_bt_8_921600 = 25, - pbn_b1_1_115200 = 26, - pbn_b1_2_115200 = 27, - pbn_b1_4_115200 = 28, - pbn_b1_8_115200 = 29, - pbn_b1_16_115200 = 30, - pbn_b1_1_921600 = 31, - pbn_b1_2_921600 = 32, - pbn_b1_4_921600 = 33, - pbn_b1_8_921600 = 34, - pbn_b1_2_1250000 = 35, - pbn_b1_bt_1_115200 = 36, - pbn_b1_bt_2_115200 = 37, - pbn_b1_bt_4_115200 = 38, - pbn_b1_bt_2_921600 = 39, - pbn_b1_1_1382400 = 40, - pbn_b1_2_1382400 = 41, - pbn_b1_4_1382400 = 42, - pbn_b1_8_1382400 = 43, - pbn_b2_1_115200 = 44, - pbn_b2_2_115200 = 45, - pbn_b2_4_115200 = 46, - pbn_b2_8_115200 = 47, - pbn_b2_1_460800 = 48, - pbn_b2_4_460800 = 49, - pbn_b2_8_460800 = 50, - pbn_b2_16_460800 = 51, - pbn_b2_1_921600 = 52, - pbn_b2_4_921600 = 53, - pbn_b2_8_921600 = 54, - pbn_b2_8_1152000 = 55, - pbn_b2_bt_1_115200 = 56, - pbn_b2_bt_2_115200 = 57, - pbn_b2_bt_4_115200 = 58, - pbn_b2_bt_2_921600 = 59, - pbn_b2_bt_4_921600 = 60, - pbn_b3_2_115200 = 61, - pbn_b3_4_115200 = 62, - pbn_b3_8_115200 = 63, - pbn_b4_bt_2_921600 = 64, - pbn_b4_bt_4_921600 = 65, - pbn_b4_bt_8_921600 = 66, - pbn_panacom = 67, - pbn_panacom2 = 68, - pbn_panacom4 = 69, - pbn_plx_romulus = 70, - pbn_oxsemi = 71, - pbn_oxsemi_1_15625000 = 72, - pbn_oxsemi_2_15625000 = 73, - pbn_oxsemi_4_15625000 = 74, - pbn_oxsemi_8_15625000 = 75, - pbn_intel_i960 = 76, - pbn_sgi_ioc3 = 77, - pbn_computone_4 = 78, - pbn_computone_6 = 79, - pbn_computone_8 = 80, - pbn_sbsxrsio = 81, - pbn_pasemi_1682M = 82, - pbn_ni8430_2 = 83, - pbn_ni8430_4 = 84, - pbn_ni8430_8 = 85, - pbn_ni8430_16 = 86, - pbn_ADDIDATA_PCIe_1_3906250 = 87, - pbn_ADDIDATA_PCIe_2_3906250 = 88, - pbn_ADDIDATA_PCIe_4_3906250 = 89, - pbn_ADDIDATA_PCIe_8_3906250 = 90, - pbn_ce4100_1_115200 = 91, - pbn_omegapci = 92, - pbn_NETMOS9900_2s_115200 = 93, - pbn_brcm_trumanage = 94, - pbn_fintek_4 = 95, - pbn_fintek_8 = 96, - pbn_fintek_12 = 97, - pbn_fintek_F81504A = 98, - pbn_fintek_F81508A = 99, - pbn_fintek_F81512A = 100, - pbn_wch382_2 = 101, - pbn_wch384_4 = 102, - pbn_wch384_8 = 103, - pbn_sunix_pci_1s = 104, - pbn_sunix_pci_2s = 105, - pbn_sunix_pci_4s = 106, - pbn_sunix_pci_8s = 107, - pbn_sunix_pci_16s = 108, - pbn_titan_1_4000000 = 109, - pbn_titan_2_4000000 = 110, - pbn_titan_4_4000000 = 111, - pbn_titan_8_4000000 = 112, - pbn_moxa_2 = 113, - pbn_moxa_4 = 114, - pbn_moxa_8 = 115, -}; - -struct hpet_info { - long unsigned int hi_ireqfreq; - long unsigned int hi_flags; - short unsigned int hi_hpet; - short unsigned int hi_timer; -}; - -struct hpet_timer { - u64 hpet_config; - union { - u64 _hpet_hc64; - u32 _hpet_hc32; - long unsigned int _hpet_compare; - } _u1; - u64 hpet_fsb[2]; -}; - -struct hpet { - u64 hpet_cap; - u64 res0; - u64 hpet_config; - u64 res1; - u64 hpet_isr; - u64 res2[25]; - union { - u64 _hpet_mc64; - u32 _hpet_mc32; - long unsigned int _hpet_mc; - } _u0; - u64 res3; - struct hpet_timer hpet_timers[0]; -}; - -struct hpets; - -struct hpet_dev { - struct hpets *hd_hpets; - struct hpet *hd_hpet; - struct hpet_timer *hd_timer; - long unsigned int hd_ireqfreq; - long unsigned int hd_irqdata; - wait_queue_head_t hd_waitqueue; - struct fasync_struct *hd_async_queue; - unsigned int hd_flags; - unsigned int hd_irq; - unsigned int hd_hdwirq; - char hd_name[7]; -}; - -struct hpets { - struct hpets *hp_next; - struct hpet *hp_hpet; - long unsigned int hp_hpet_phys; - long long unsigned int hp_tick_freq; - long unsigned int hp_delta; - unsigned int hp_ntimer; - unsigned int hp_which; - struct hpet_dev hp_dev[0]; -}; - -struct compat_hpet_info { - compat_ulong_t hi_ireqfreq; - compat_ulong_t hi_flags; - short unsigned int hi_hpet; - short unsigned int hi_timer; -}; - -struct aper_size_info_lvl2 { - int size; - int num_entries; - u32 size_value; -}; - -struct aper_size_info_fixed { - int size; - int num_entries; - int page_order; -}; - -struct intel_gtt_driver { - unsigned int gen: 8; - unsigned int is_g33: 1; - unsigned int is_pineview: 1; - unsigned int is_ironlake: 1; - unsigned int has_pgtbl_enable: 1; - unsigned int dma_mask_size: 8; - int (*setup)(void); - void (*cleanup)(void); - void (*write_entry)(dma_addr_t, unsigned int, unsigned int); - dma_addr_t (*read_entry)(unsigned int, bool *, bool *); - bool (*check_flags)(unsigned int); - void (*chipset_flush)(void); -}; - -struct _intel_private { - const struct intel_gtt_driver *driver; - struct pci_dev *pcidev; - struct pci_dev *bridge_dev; - u8 *registers; - phys_addr_t gtt_phys_addr; - u32 PGETBL_save; - u32 *gtt; - bool clear_fake_agp; - int num_dcache_entries; - void *i9xx_flush_page; - char *i81x_gtt_table; - struct resource ifp_resource; - int resource_valid; - struct page *scratch_page; - phys_addr_t scratch_page_dma; - int refcount; - unsigned int needs_dmar: 1; - phys_addr_t gma_bus_addr; - resource_size_t stolen_size; - unsigned int gtt_total_entries; - unsigned int gtt_mappable_entries; -}; - -struct intel_gtt_driver_description { - unsigned int gmch_chip_id; - char *name; - const struct intel_gtt_driver *gtt_driver; -}; - -struct tpm1_get_random_out { - __be32 rng_data_len; - u8 rng_data[128]; -}; - -struct iommufd_vevent_header { - __u32 flags; - __u32 sequence; -}; - -enum iommu_veventq_type { - IOMMU_VEVENTQ_TYPE_DEFAULT = 0, - IOMMU_VEVENTQ_TYPE_ARM_SMMUV3 = 1, - IOMMU_VEVENTQ_TYPE_TEGRA241_CMDQV = 2, -}; - -struct iommufd_fault; - -struct iommufd_hw_pagetable { - struct iommufd_object obj; - struct iommu_domain *domain; - struct iommufd_fault *fault; - bool pasid_compat: 1; -}; - -struct iommufd_access_ops { - u8 needs_pin_pages: 1; - void (*unmap)(void *, long unsigned int, long unsigned int); -}; - -struct iommufd_ioas; - -struct iommufd_ctx { - struct file *file; - struct xarray objects; - struct xarray groups; - wait_queue_head_t destroy_wait; - struct rw_semaphore ioas_creation_lock; - struct maple_tree mt_mmap; - struct mutex sw_msi_lock; - struct list_head sw_msi_list; - unsigned int sw_msi_id; - u8 account_mode; - u8 no_iommu_mode; - struct iommufd_ioas *vfio_ioas; -}; - -struct iommufd_sw_msi_maps { - long unsigned int bitmap[1]; -}; - -struct iommufd_hwpt_paging { - struct iommufd_hw_pagetable common; - struct iommufd_ioas *ioas; - bool auto_domain: 1; - bool enforce_cache_coherency: 1; - bool nest_parent: 1; - struct list_head hwpt_item; - struct iommufd_sw_msi_maps present_sw_msi; -}; - -struct iommufd_group; - -struct iommufd_device { - struct iommufd_object obj; - struct iommufd_ctx *ictx; - struct iommufd_group *igroup; - struct list_head group_item; - struct device *dev; - bool enforce_cache_coherency; - struct iommufd_vdevice *vdev; - bool destroying; -}; - -struct iommufd_access { - struct iommufd_object obj; - struct iommufd_ctx *ictx; - struct iommufd_ioas *ioas; - struct iommufd_ioas *ioas_unpin; - struct mutex ioas_lock; - const struct iommufd_access_ops *ops; - void *data; - long unsigned int iova_alignment; - u32 iopt_access_list_id; -}; - -struct io_pagetable { - struct rw_semaphore domains_rwsem; - struct xarray domains; - struct xarray access_list; - unsigned int next_domain_id; - struct rw_semaphore iova_rwsem; - struct rb_root_cached area_itree; - struct rb_root_cached allowed_itree; - struct rb_root_cached reserved_itree; - u8 disable_large_pages; - long unsigned int iova_alignment; -}; - -struct iommufd_ioas { - struct iommufd_object obj; - struct io_pagetable iopt; - struct mutex mutex; - struct list_head hwpt_list; -}; - -struct iommufd_mmap { - struct iommufd_object *owner; - long unsigned int vm_pgoff; - phys_addr_t mmio_addr; - size_t length; -}; - -struct iommufd_eventq { - struct iommufd_object obj; - struct iommufd_ctx *ictx; - struct file *filep; - spinlock_t lock; - struct list_head deliver; - struct wait_queue_head wait_queue; -}; - -struct iommufd_fault { - struct iommufd_eventq common; - struct mutex mutex; - struct xarray response; -}; - -struct iommufd_group { - struct kref ref; - struct mutex lock; - struct iommufd_ctx *ictx; - struct iommu_group *group; - struct xarray pasid_attach; - struct iommufd_sw_msi_maps required_sw_msi; - phys_addr_t sw_msi_start; -}; - -struct iommufd_vevent { - struct iommufd_vevent_header header; - struct list_head node; - ssize_t data_len; - u64 event_data[0]; -}; - -struct iommufd_veventq { - struct iommufd_eventq common; - struct iommufd_viommu *viommu; - struct list_head node; - struct iommufd_vevent lost_events_header; - enum iommu_veventq_type type; - unsigned int depth; - u32 num_events; - u32 sequence; -}; - -struct ivrs_quirk_entry { - u8 id; - u32 devid; -}; - -enum { - DELL_INSPIRON_7375 = 0, - DELL_LATITUDE_5495 = 1, - LENOVO_IDEAPAD_330S_15ARR = 2, -}; - -enum iommu_hwpt_vtd_s1_flags { - IOMMU_VTD_S1_SRE = 1, - IOMMU_VTD_S1_EAFE = 2, - IOMMU_VTD_S1_WPE = 4, -}; - -struct pasid_dir_entry { - u64 val; -}; - -struct pasid_entry { - u64 val[8]; -}; - -struct iova_magazine; - -struct iova_cpu_rcache; - -struct iova_rcache { - spinlock_t lock; - unsigned int depot_size; - struct iova_magazine *depot; - struct iova_cpu_rcache *cpu_rcaches; - struct iova_domain *iovad; - struct delayed_work work; -}; - -struct iova_magazine { - union { - long unsigned int size; - struct iova_magazine *next; - }; - long unsigned int pfns[127]; -}; - -struct iova_cpu_rcache { - spinlock_t lock; - struct iova_magazine *loaded; - struct iova_magazine *prev; -}; - -struct component_master_ops { - int (*bind)(struct device *); - void (*unbind)(struct device *); -}; - -struct component; - -struct component_match_array { - void *data; - int (*compare)(struct device *, void *); - int (*compare_typed)(struct device *, int, void *); - void (*release)(struct device *, void *); - struct component *component; - bool duplicate; -}; - -struct aggregate_device; - -struct component { - struct list_head node; - struct aggregate_device *adev; - bool bound; - const struct component_ops *ops; - int subcomponent; - struct device *dev; -}; - -struct component_match { - size_t alloc; - size_t num; - struct component_match_array *compare; -}; - -struct aggregate_device { - struct list_head node; - bool bound; - const struct component_master_ops *ops; - struct device *parent; - struct component_match *match; -}; - -enum dpm_order { - DPM_ORDER_NONE = 0, - DPM_ORDER_DEV_AFTER_PARENT = 1, - DPM_ORDER_PARENT_BEFORE_DEV = 2, - DPM_ORDER_DEV_LAST = 3, -}; - -struct fwnode_link { - struct fwnode_handle *supplier; - struct list_head s_hook; - struct fwnode_handle *consumer; - struct list_head c_hook; - u8 flags; -}; - -union device_attr_group_devres { - const struct attribute_group *group; - const struct attribute_group **groups; -}; - -struct class_dir { - struct kobject kobj; - const struct class *class; -}; - -struct root_device { - struct device dev; - struct module *owner; -}; - -struct irq_affinity_devres { - unsigned int count; - unsigned int irq[0]; -}; - -struct platform_object { - struct platform_device pdev; - char name[0]; -}; - -struct devres_node { - struct list_head entry; - dr_release_t release; - const char *name; - size_t size; -}; - -struct devres { - struct devres_node node; - u8 data[0]; -}; - -struct devres_group { - struct devres_node node[2]; - void *id; - int color; -}; - -struct action_devres { - void *data; - void (*action)(void *); -}; - -struct pages_devres { - long unsigned int addr; - unsigned int order; -}; - -struct auxiliary_device_id { - char name[32]; - kernel_ulong_t driver_data; -}; - -struct auxiliary_driver { - int (*probe)(struct auxiliary_device *, const struct auxiliary_device_id *); - void (*remove)(struct auxiliary_device *); - void (*shutdown)(struct auxiliary_device *); - int (*suspend)(struct auxiliary_device *, pm_message_t); - int (*resume)(struct auxiliary_device *); - const char *name; - struct device_driver driver; - const struct auxiliary_device_id *id_table; -}; - -struct node_access_nodes { - struct device dev; - struct list_head list_node; - unsigned int access; - struct access_coordinate coord; -}; - -struct node_cache_info { - struct device dev; - struct list_head node; - struct node_cache_attrs cache_attrs; -}; - -struct node_attr { - struct device_attribute attr; - enum node_states state; -}; - -struct regmap_async_spi { - struct regmap_async core; - struct spi_message m; - struct spi_transfer t[2]; -}; - -struct trace_event_raw_devres { - struct trace_entry ent; - u32 __data_loc_devname; - struct device *dev; - const char *op; - void *node; - u32 __data_loc_name; - size_t size; - char __data[0]; -}; - -struct trace_event_data_offsets_devres { - u32 devname; - const void *devname_ptr_; - u32 name; - const void *name_ptr_; -}; - -typedef void (*btf_trace_devres_log)(void *, struct device *, const char *, void *, const char *, size_t); - -struct tps65910_platform_data { - int irq; - int irq_base; -}; - -struct sih_irq_data { - u8 isr_offset; - u8 imr_offset; -}; - -struct sih { - char name[8]; - u8 module; - u8 control_offset; - bool set_cor; - u8 bits; - u8 bytes_ixr; - u8 edr_offset; - u8 bytes_edr; - u8 irq_lines; - struct sih_irq_data mask[2]; -}; - -struct sih_agent { - int irq_base; - const struct sih *sih; - u32 imr; - bool imr_change_pending; - u32 edge_change; - struct mutex irq_lock; - char *irq_name; -}; - -struct twl6040 { - struct device *dev; - struct regmap *regmap; - struct regmap_irq_chip_data *irq_data; - struct regulator_bulk_data supplies[2]; - struct clk *clk32k; - struct clk *mclk; - struct mutex mutex; - struct mutex irq_mutex; - struct mfd_cell cells[4]; - struct completion ready; - struct gpio_desc *audpwron; - int power_count; - int rev; - int pll; - unsigned int sysclk_rate; - unsigned int mclk_rate; - unsigned int irq; - unsigned int irq_ready; - unsigned int irq_th; -}; - -enum gpio_select { - NO_GPIO = 0, - GPIO_1 = 1, - GPIO_2 = 2, -}; - -struct da9055_pdata { - int (*init)(struct da9055 *); - int irq_base; - int gpio_base; - struct regulator_init_data *regulators[8]; - bool reset_enable; - enum gpio_select *reg_ren; - enum gpio_select *reg_rsel; -}; - -enum max77693_types { - TYPE_MAX77693_UNKNOWN = 0, - TYPE_MAX77693 = 1, - TYPE_MAX77705 = 2, - TYPE_MAX77843 = 3, - TYPE_MAX77693_NUM = 4, -}; - -struct max77693_dev { - struct device *dev; - struct i2c_client *i2c; - struct i2c_client *i2c_muic; - struct i2c_client *i2c_haptic; - struct i2c_client *i2c_chg; - enum max77693_types type; - struct regmap *regmap; - struct regmap *regmap_muic; - struct regmap *regmap_haptic; - struct regmap *regmap_chg; - struct regmap *regmap_leds; - struct regmap_irq_chip_data *irq_data_led; - struct regmap_irq_chip_data *irq_data_topsys; - struct regmap_irq_chip_data *irq_data_chg; - struct regmap_irq_chip_data *irq_data_muic; - int irq; -}; - -enum max77843_sys_reg { - MAX77843_SYS_REG_PMICID = 0, - MAX77843_SYS_REG_PMICREV = 1, - MAX77843_SYS_REG_MAINCTRL1 = 2, - MAX77843_SYS_REG_INTSRC = 34, - MAX77843_SYS_REG_INTSRCMASK = 35, - MAX77843_SYS_REG_SYSINTSRC = 36, - MAX77843_SYS_REG_SYSINTMASK = 38, - MAX77843_SYS_REG_TOPSYS_STAT = 40, - MAX77843_SYS_REG_SAFEOUTCTRL = 198, - MAX77843_SYS_REG_END = 199, -}; - -enum max77843_charger_reg { - MAX77843_CHG_REG_CHG_INT = 176, - MAX77843_CHG_REG_CHG_INT_MASK = 177, - MAX77843_CHG_REG_CHG_INT_OK = 178, - MAX77843_CHG_REG_CHG_DTLS_00 = 179, - MAX77843_CHG_REG_CHG_DTLS_01 = 180, - MAX77843_CHG_REG_CHG_DTLS_02 = 181, - MAX77843_CHG_REG_CHG_CNFG_00 = 183, - MAX77843_CHG_REG_CHG_CNFG_01 = 184, - MAX77843_CHG_REG_CHG_CNFG_02 = 185, - MAX77843_CHG_REG_CHG_CNFG_03 = 186, - MAX77843_CHG_REG_CHG_CNFG_04 = 187, - MAX77843_CHG_REG_CHG_CNFG_06 = 189, - MAX77843_CHG_REG_CHG_CNFG_07 = 190, - MAX77843_CHG_REG_CHG_CNFG_09 = 192, - MAX77843_CHG_REG_CHG_CNFG_10 = 193, - MAX77843_CHG_REG_CHG_CNFG_11 = 194, - MAX77843_CHG_REG_CHG_CNFG_12 = 195, - MAX77843_CHG_REG_END = 196, -}; - -enum max8997_types { - TYPE_MAX8997 = 0, - TYPE_MAX8966 = 1, -}; - -struct adp5520_gpio_platform_data { - unsigned int gpio_start; - u8 gpio_en_mask; - u8 gpio_pullup_mask; -}; - -struct adp5520_keys_platform_data { - int rows_en_mask; - int cols_en_mask; - const short unsigned int *keymap; - short unsigned int keymapsize; - unsigned int repeat: 1; -}; - -struct led_info; - -struct adp5520_leds_platform_data { - int num_leds; - struct led_info *leds; - u8 fade_in; - u8 fade_out; - u8 led_on_time; -}; - -struct adp5520_backlight_platform_data { - u8 fade_in; - u8 fade_out; - u8 fade_led_law; - u8 en_ambl_sens; - u8 abml_filt; - u8 l1_daylight_max; - u8 l1_daylight_dim; - u8 l2_office_max; - u8 l2_office_dim; - u8 l3_dark_max; - u8 l3_dark_dim; - u8 l2_trip; - u8 l2_hyst; - u8 l3_trip; - u8 l3_hyst; -}; - -struct adp5520_platform_data { - struct adp5520_keys_platform_data *keys; - struct adp5520_gpio_platform_data *gpio; - struct adp5520_leds_platform_data *leds; - struct adp5520_backlight_platform_data *backlight; -}; - -struct adp5520_chip { - struct i2c_client *client; - struct device *dev; - struct mutex lock; - struct blocking_notifier_head notifier_list; - int irq; - long unsigned int id; - uint8_t mode; -}; - -enum aat2870_id { - AAT2870_ID_BL = 0, - AAT2870_ID_LDOA = 1, - AAT2870_ID_LDOB = 2, - AAT2870_ID_LDOC = 3, - AAT2870_ID_LDOD = 4, -}; - -struct aat2870_register { - bool readable; - bool writeable; - u8 value; -}; - -struct aat2870_data { - struct device *dev; - struct i2c_client *client; - struct mutex io_lock; - struct aat2870_register *reg_cache; - int en_pin; - bool is_enable; - int (*init)(struct aat2870_data *); - void (*uninit)(struct aat2870_data *); - int (*read)(struct aat2870_data *, u8, u8 *); - int (*write)(struct aat2870_data *, u8, u8); - int (*update)(struct aat2870_data *, u8, u8, u8); -}; - -struct aat2870_subdev_info { - int id; - const char *name; - void *platform_data; -}; - -struct aat2870_platform_data { - int en_pin; - struct aat2870_subdev_info *subdevs; - int num_subdevs; - int (*init)(struct aat2870_data *); - void (*uninit)(struct aat2870_data *); -}; - -struct as3711 { - struct device *dev; - struct regmap *regmap; -}; - -enum as3711_su2_feedback { - AS3711_SU2_VOLTAGE = 0, - AS3711_SU2_CURR1 = 1, - AS3711_SU2_CURR2 = 2, - AS3711_SU2_CURR3 = 3, - AS3711_SU2_CURR_AUTO = 4, -}; - -enum as3711_su2_fbprot { - AS3711_SU2_LX_SD4 = 0, - AS3711_SU2_GPIO2 = 1, - AS3711_SU2_GPIO3 = 2, - AS3711_SU2_GPIO4 = 3, -}; - -struct as3711_regulator_pdata { - struct regulator_init_data *init_data[12]; -}; - -struct as3711_bl_pdata { - bool su1_fb; - int su1_max_uA; - bool su2_fb; - int su2_max_uA; - enum as3711_su2_feedback su2_feedback; - enum as3711_su2_fbprot su2_fbprot; - bool su2_auto_curr1; - bool su2_auto_curr2; - bool su2_auto_curr3; -}; - -struct as3711_platform_data { - struct as3711_regulator_pdata regulator; - struct as3711_bl_pdata backlight; -}; - -enum { - AS3711_REGULATOR = 0, - AS3711_BACKLIGHT = 1, -}; - -struct nvdimm_pmu { - struct pmu pmu; - struct device *dev; - int cpu; - struct hlist_node node; - enum cpuhp_state cpuhp_state; - struct cpumask arch_cpumask; -}; - -enum { - CTL_RES_CNT = 1, -}; - -enum { - CTL_RES_TM = 2, -}; - -enum { - POWERON_SECS = 3, -}; - -enum { - MEM_LIFE = 4, -}; - -enum { - CRI_RES_UTIL = 5, -}; - -enum { - HOST_L_CNT = 6, -}; - -enum { - HOST_S_CNT = 7, -}; - -enum { - HOST_S_DUR = 8, -}; - -enum { - HOST_L_DUR = 9, -}; - -enum { - MED_R_CNT = 10, -}; - -enum { - MED_W_CNT = 11, -}; - -enum { - MED_R_DUR = 12, -}; - -enum { - MED_W_DUR = 13, -}; - -enum { - CACHE_RH_CNT = 14, -}; - -enum { - CACHE_WH_CNT = 15, -}; - -enum { - FAST_W_CNT = 16, -}; - -enum { - ND_MIN_NAMESPACE_SIZE = 4096, -}; - -enum alloc_loc { - ALLOC_ERR = 0, - ALLOC_BEFORE = 1, - ALLOC_MID = 2, - ALLOC_AFTER = 3, -}; - -struct btt_sb { - u8 signature[16]; - u8 uuid[16]; - u8 parent_uuid[16]; - __le32 flags; - __le16 version_major; - __le16 version_minor; - __le32 external_lbasize; - __le32 external_nlba; - __le32 internal_lbasize; - __le32 internal_nlba; - __le32 nfree; - __le32 infosize; - __le64 nextoff; - __le64 dataoff; - __le64 mapoff; - __le64 logoff; - __le64 info2off; - u8 padding[3968]; - __le64 checksum; -}; - -enum btt_init_state { - INIT_UNCHECKED = 0, - INIT_NOTFOUND = 1, - INIT_READY = 2, -}; - -struct log_entry { - __le32 lba; - __le32 old_map; - __le32 new_map; - __le32 seq; -}; - -struct log_group { - struct log_entry ent[4]; -}; - -struct free_entry { - u32 block; - u8 sub; - u8 seq; - u8 has_err; -}; - -struct aligned_lock { - union { - spinlock_t lock; - u8 cacheline_padding[64]; - }; -}; - -struct arena_info { - u64 size; - u64 external_lba_start; - u32 internal_nlba; - u32 internal_lbasize; - u32 external_nlba; - u32 external_lbasize; - u32 nfree; - u16 version_major; - u16 version_minor; - u32 sector_size; - u64 nextoff; - u64 infooff; - u64 dataoff; - u64 mapoff; - u64 logoff; - u64 info2off; - struct free_entry *freelist; - u32 *rtt; - struct aligned_lock *map_locks; - struct nd_btt *nd_btt; - struct list_head list; - struct dentry *debugfs_dir; - u32 flags; - struct mutex err_lock; - int log_index[2]; -}; - -enum log_ent_request { - LOG_NEW_ENT = 0, - LOG_OLD_ENT = 1, -}; - -typedef int (*walk_hmem_fn)(struct device *, int, const struct resource *); - -struct dma_resv_list { - struct callback_head rcu; - u32 num_fences; - u32 max_fences; - struct dma_fence *table[0]; -}; - -struct cma_heap { - struct dma_heap *heap; - struct cma *cma; -}; - -struct cma_heap_buffer { - struct cma_heap *heap; - struct list_head attachments; - struct mutex lock; - long unsigned int len; - struct page *cma_pages; - struct page **pages; - long unsigned int pagecount; - int vmap_cnt; - void *vaddr; -}; - -struct udmabuf_create { - __u32 memfd; - __u32 flags; - __u64 offset; - __u64 size; -}; - -struct udmabuf_create_item { - __u32 memfd; - __u32 __pad; - __u64 offset; - __u64 size; -}; - -struct udmabuf_create_list { - __u32 flags; - __u32 count; - struct udmabuf_create_item list[0]; -}; - -struct udmabuf { - long unsigned int pagecount; - struct folio **folios; - long unsigned int nr_pinned; - struct folio **pinned_folios; - struct sg_table *sg; - struct miscdevice *device; - long unsigned int *offsets; -}; - -struct request_sense; - -struct cdrom_generic_command { - unsigned char cmd[12]; - unsigned char *buffer; - unsigned int buflen; - int stat; - struct request_sense *sense; - unsigned char data_direction; - int quiet; - int timeout; - union { - void *reserved[1]; - void *unused; - }; -}; - -struct request_sense { - __u8 error_code: 7; - __u8 valid: 1; - __u8 segment_number; - __u8 sense_key: 4; - __u8 reserved2: 1; - __u8 ili: 1; - __u8 reserved1: 2; - __u8 information[4]; - __u8 add_sense_len; - __u8 command_info[4]; - __u8 asc; - __u8 ascq; - __u8 fruc; - __u8 sks[3]; - __u8 asb[46]; -}; - -struct scsi_ioctl_command { - unsigned int inlen; - unsigned int outlen; - unsigned char data[0]; -}; - -struct scsi_idlun { - __u32 dev_id; - __u32 host_unique_id; -}; - -struct compat_cdrom_generic_command { - unsigned char cmd[12]; - compat_caddr_t buffer; - compat_uint_t buflen; - compat_int_t stat; - compat_caddr_t sense; - unsigned char data_direction; - unsigned char pad[3]; - compat_int_t quiet; - compat_int_t timeout; - compat_caddr_t unused; -}; - -enum scsi_timeouts { - SCSI_DEFAULT_EH_TIMEOUT = 10000, -}; - -struct async_scan_data { - struct list_head list; - struct Scsi_Host *shost; - struct completion prev_finished; -}; - -struct scsi_varlen_cdb_hdr { - __u8 opcode; - __u8 control; - __u8 misc[5]; - __u8 additional_cdb_length; - __be16 service_action; -}; - -struct scsi_io_group_descriptor { - u8 ic_enable: 1; - u8 cs_enble: 1; - u8 st_enble: 1; - u8 reserved1: 3; - u8 io_advice_hints_mode: 2; - u8 reserved2[3]; - u8 lbm_descriptor_type: 4; - u8 rlbsr: 2; - u8 reserved3: 1; - u8 acdlu: 1; - u8 params[2]; - u8 reserved4; - u8 reserved5[8]; -}; - -struct scsi_stream_status { - u8 reserved1: 7; - u8 perm: 1; - u8 reserved2; - __be16 stream_identifier; - u8 rel_lifetime: 6; - u8 reserved3: 2; - u8 reserved4[3]; -}; - -struct scsi_stream_status_header { - __be32 len; - u16 reserved; - __be16 number_of_open_streams; -}; - -enum scsi_prot_flags { - SCSI_PROT_TRANSFER_PI = 1, - SCSI_PROT_GUARD_CHECK = 2, - SCSI_PROT_REF_CHECK = 4, - SCSI_PROT_REF_INCREMENT = 8, - SCSI_PROT_IP_CHECKSUM = 16, -}; - -enum { - SD_EXT_CDB_SIZE = 32, - SD_MEMPOOL_SIZE = 2, -}; - -enum { - SD_DEF_XFER_BLOCKS = 65535, - SD_MAX_XFER_BLOCKS = 4294967295, - SD_MAX_WS10_BLOCKS = 65535, - SD_MAX_WS16_BLOCKS = 8388607, -}; - -enum { - SD_LBP_FULL = 0, - SD_LBP_UNMAP = 1, - SD_LBP_WS16 = 2, - SD_LBP_WS10 = 3, - SD_LBP_ZERO = 4, - SD_LBP_DISABLE = 5, -}; - -enum { - SD_ZERO_WRITE = 0, - SD_ZERO_WS = 1, - SD_ZERO_WS16_UNMAP = 2, - SD_ZERO_WS10_UNMAP = 3, -}; - -struct ccs_modesel_head { - __u8 _r1; - __u8 medium; - __u8 _r2; - __u8 block_desc_length; - __u8 density; - __u8 number_blocks_hi; - __u8 number_blocks_med; - __u8 number_blocks_lo; - __u8 _r3; - __u8 block_length_hi; - __u8 block_length_med; - __u8 block_length_lo; -}; - -enum nvme_tcp_tls_cipher { - NVME_TCP_TLS_CIPHER_INVALID = 0, - NVME_TCP_TLS_CIPHER_SHA256 = 1, - NVME_TCP_TLS_CIPHER_SHA384 = 2, -}; - -struct nvme_tls_psk_priority_list { - bool generated; - u8 psk_ver; - enum nvme_tcp_tls_cipher cipher; -}; - -struct nvme_user_io { - __u8 opcode; - __u8 flags; - __u16 control; - __u16 nblocks; - __u16 rsvd; - __u64 metadata; - __u64 addr; - __u64 slba; - __u32 dsmgmt; - __u32 reftag; - __u16 apptag; - __u16 appmask; -}; - -struct nvme_passthru_cmd { - __u8 opcode; - __u8 flags; - __u16 rsvd1; - __u32 nsid; - __u32 cdw2; - __u32 cdw3; - __u64 metadata; - __u64 addr; - __u32 metadata_len; - __u32 data_len; - __u32 cdw10; - __u32 cdw11; - __u32 cdw12; - __u32 cdw13; - __u32 cdw14; - __u32 cdw15; - __u32 timeout_ms; - __u32 result; -}; - -struct nvme_passthru_cmd64 { - __u8 opcode; - __u8 flags; - __u16 rsvd1; - __u32 nsid; - __u32 cdw2; - __u32 cdw3; - __u64 metadata; - __u64 addr; - __u32 metadata_len; - union { - __u32 data_len; - __u32 vec_cnt; - }; - __u32 cdw10; - __u32 cdw11; - __u32 cdw12; - __u32 cdw13; - __u32 cdw14; - __u32 cdw15; - __u32 timeout_ms; - __u32 rsvd2; - __u64 result; -}; - -struct nvme_uring_cmd { - __u8 opcode; - __u8 flags; - __u16 rsvd1; - __u32 nsid; - __u32 cdw2; - __u32 cdw3; - __u64 metadata; - __u64 addr; - __u32 metadata_len; - __u32 data_len; - __u32 cdw10; - __u32 cdw11; - __u32 cdw12; - __u32 cdw13; - __u32 cdw14; - __u32 cdw15; - __u32 timeout_ms; - __u32 rsvd2; -}; - -enum { - NVME_IOCTL_VEC = 1, - NVME_IOCTL_PARTITION = 2, -}; - -struct nvme_uring_data { - __u64 metadata; - __u64 addr; - __u32 data_len; - __u32 metadata_len; - __u32 timeout_ms; -}; - -struct nvme_uring_cmd_pdu { - struct request *req; - struct bio *bio; - u64 result; - int status; -}; - -struct nvme_smart_log { - __u8 critical_warning; - __u8 temperature[2]; - __u8 avail_spare; - __u8 spare_thresh; - __u8 percent_used; - __u8 endu_grp_crit_warn_sumry; - __u8 rsvd7[25]; - __u8 data_units_read[16]; - __u8 data_units_written[16]; - __u8 host_reads[16]; - __u8 host_writes[16]; - __u8 ctrl_busy_time[16]; - __u8 power_cycles[16]; - __u8 power_on_hours[16]; - __u8 unsafe_shutdowns[16]; - __u8 media_errors[16]; - __u8 num_err_log_entries[16]; - __le32 warning_temp_time; - __le32 critical_comp_time; - __le16 temp_sensor[8]; - __le32 thm_temp1_trans_count; - __le32 thm_temp2_trans_count; - __le32 thm_temp1_total_time; - __le32 thm_temp2_total_time; - __u8 rsvd232[280]; -}; - -enum { - NVME_SMART_CRIT_SPARE = 1, - NVME_SMART_CRIT_TEMPERATURE = 2, - NVME_SMART_CRIT_RELIABILITY = 4, - NVME_SMART_CRIT_MEDIA = 8, - NVME_SMART_CRIT_VOLATILE_MEMORY = 16, -}; - -enum { - NVME_TEMP_THRESH_MASK = 65535, - NVME_TEMP_THRESH_SELECT_SHIFT = 16, - NVME_TEMP_THRESH_TYPE_UNDER = 1048576, -}; - -struct nvme_hwmon_data { - struct nvme_ctrl *ctrl; - struct nvme_smart_log *log; - struct mutex read_lock; -}; - -typedef unsigned int (*ata_xlat_func_t)(struct ata_queued_cmd *); - -struct drm_mode_crtc { - __u64 set_connectors_ptr; - __u32 count_connectors; - __u32 crtc_id; - __u32 fb_id; - __u32 x; - __u32 y; - __u32 gamma_size; - __u32 mode_valid; - struct drm_mode_modeinfo mode; -}; - -struct est_timings { - u8 t1; - u8 t2; - u8 mfg_rsvd; -}; - -struct std_timing { - u8 hsize; - u8 vfreq_aspect; -}; - -struct detailed_pixel_timing { - u8 hactive_lo; - u8 hblank_lo; - u8 hactive_hblank_hi; - u8 vactive_lo; - u8 vblank_lo; - u8 vactive_vblank_hi; - u8 hsync_offset_lo; - u8 hsync_pulse_width_lo; - u8 vsync_offset_pulse_width_lo; - u8 hsync_vsync_offset_pulse_width_hi; - u8 width_mm_lo; - u8 height_mm_lo; - u8 width_height_mm_hi; - u8 hborder; - u8 vborder; - u8 misc; -}; - -struct detailed_data_string { - u8 str[13]; -}; - -enum drm_edid_quirk { - DRM_EDID_QUIRK_DP_DPCD_PROBE = 0, - DRM_EDID_QUIRK_NUM = 1, -}; - -struct detailed_data_monitor_range { - u8 min_vfreq; - u8 max_vfreq; - u8 min_hfreq_khz; - u8 max_hfreq_khz; - u8 pixel_clock_mhz; - u8 flags; - union { - struct { - u8 reserved; - u8 hfreq_start_khz; - u8 c; - __le16 m; - u8 k; - u8 j; - } __attribute__((packed)) gtf2; - struct { - u8 version; - u8 data1; - u8 data2; - u8 supported_aspects; - u8 flags; - u8 supported_scalings; - u8 preferred_refresh; - } cvt; - } formula; -}; - -struct detailed_data_wpindex { - u8 white_yx_lo; - u8 white_x_hi; - u8 white_y_hi; - u8 gamma; -}; - -struct cvt_timing { - u8 code[3]; -}; - -struct detailed_non_pixel { - u8 pad1; - u8 type; - u8 pad2; - union { - struct detailed_data_string str; - struct detailed_data_monitor_range range; - struct detailed_data_wpindex color; - struct std_timing timings[6]; - struct cvt_timing cvt[4]; - } data; -}; - -struct detailed_timing { - __le16 pixel_clock; - union { - struct detailed_pixel_timing pixel_data; - struct detailed_non_pixel other_data; - } data; -}; - -struct drm_edid_product_id { - __be16 manufacturer_name; - __le16 product_code; - __le32 serial_number; - u8 week_of_manufacture; - u8 year_of_manufacture; -} __attribute__((packed)); - -struct edid { - u8 header[8]; - union { - struct drm_edid_product_id product_id; - struct { - u8 mfg_id[2]; - u8 prod_code[2]; - u32 serial; - u8 mfg_week; - u8 mfg_year; - } __attribute__((packed)); - }; - u8 version; - u8 revision; - u8 input; - u8 width_cm; - u8 height_cm; - u8 gamma; - u8 features; - u8 red_green_lo; - u8 blue_white_lo; - u8 red_x; - u8 red_y; - u8 green_x; - u8 green_y; - u8 blue_x; - u8 blue_y; - u8 white_x; - u8 white_y; - struct est_timings established_timings; - struct std_timing standard_timings[8]; - struct detailed_timing detailed_timings[4]; - u8 extensions; - u8 checksum; -}; - -struct displayid_tiled_block { - struct displayid_block base; - u8 tile_cap; - u8 topo[3]; - u8 tile_size[4]; - u8 tile_pixel_bezel[5]; - u8 topology_id[8]; -}; - -struct displayid_detailed_timings_1 { - u8 pixel_clock[3]; - u8 flags; - __le16 hactive; - __le16 hblank; - __le16 hsync; - __le16 hsw; - __le16 vactive; - __le16 vblank; - __le16 vsync; - __le16 vsw; -}; - -struct displayid_detailed_timing_block { - struct displayid_block base; - struct displayid_detailed_timings_1 timings[0]; -} __attribute__((packed)); - -struct displayid_formula_timings_9 { - u8 flags; - __le16 hactive; - __le16 vactive; - u8 vrefresh; -} __attribute__((packed)); - -struct displayid_formula_timing_block { - struct displayid_block base; - struct displayid_formula_timings_9 timings[0]; -}; - -struct displayid_vesa_vendor_specific_block { - struct displayid_block base; - u8 oui[3]; - u8 data_structure_type; - u8 mso; -}; - -enum drm_edid_internal_quirk { - EDID_QUIRK_PREFER_LARGE_60 = 1, - EDID_QUIRK_135_CLOCK_TOO_HIGH = 2, - EDID_QUIRK_PREFER_LARGE_75 = 3, - EDID_QUIRK_DETAILED_IN_CM = 4, - EDID_QUIRK_DETAILED_USE_MAXIMUM_SIZE = 5, - EDID_QUIRK_DETAILED_SYNC_PP = 6, - EDID_QUIRK_FORCE_REDUCED_BLANKING = 7, - EDID_QUIRK_FORCE_8BPC = 8, - EDID_QUIRK_FORCE_12BPC = 9, - EDID_QUIRK_FORCE_6BPC = 10, - EDID_QUIRK_FORCE_10BPC = 11, - EDID_QUIRK_NON_DESKTOP = 12, - EDID_QUIRK_CAP_DSC_15BPP = 13, -}; - -struct detailed_mode_closure { - struct drm_connector *connector; - const struct drm_edid *drm_edid; - bool preferred; - int modes; -}; - -struct drm_edid_match_closure { - const struct drm_edid_ident *ident; - bool matched; -}; - -struct edid_quirk { - const struct drm_edid_ident ident; - u32 quirks; -}; - -struct minimode { - short int w; - short int h; - short int r; - short int rb; -}; - -struct drm_edid_iter { - const struct drm_edid *drm_edid; - int index; -}; - -enum edid_block_status { - EDID_BLOCK_OK = 0, - EDID_BLOCK_READ_FAIL = 1, - EDID_BLOCK_NULL = 2, - EDID_BLOCK_ZERO = 3, - EDID_BLOCK_HEADER_CORRUPT = 4, - EDID_BLOCK_HEADER_REPAIR = 5, - EDID_BLOCK_HEADER_FIXED = 6, - EDID_BLOCK_CHECKSUM = 7, - EDID_BLOCK_VERSION = 8, -}; - -typedef int read_block_fn(void *, u8 *, unsigned int, size_t); - -typedef void detailed_cb(const struct detailed_timing *, void *); - -struct stereo_mandatory_mode { - int width; - int height; - int vrefresh; - unsigned int flags; -}; - -struct cea_db_iter { - struct drm_edid_iter edid_iter; - struct displayid_iter displayid_iter; - const u8 *collection; - int index; - int end; -}; - -struct cea_db { - u8 tag_length; - u8 data[0]; -}; - -struct drm_gem_close { - __u32 handle; - __u32 pad; -}; - -struct drm_gem_flink { - __u32 handle; - __u32 name; -}; - -struct drm_gem_open { - __u32 name; - __u32 handle; - __u64 size; -}; - -struct drm_syncobj_create { - __u32 handle; - __u32 flags; -}; - -struct drm_syncobj_destroy { - __u32 handle; - __u32 pad; -}; - -struct drm_syncobj_handle { - __u32 handle; - __u32 flags; - __s32 fd; - __u32 pad; - __u64 point; -}; - -struct drm_syncobj_transfer { - __u32 src_handle; - __u32 dst_handle; - __u64 src_point; - __u64 dst_point; - __u32 flags; - __u32 pad; -}; - -struct drm_syncobj_wait { - __u64 handles; - __s64 timeout_nsec; - __u32 count_handles; - __u32 flags; - __u32 first_signaled; - __u32 pad; - __u64 deadline_nsec; -}; - -struct drm_syncobj_timeline_wait { - __u64 handles; - __u64 points; - __s64 timeout_nsec; - __u32 count_handles; - __u32 flags; - __u32 first_signaled; - __u32 pad; - __u64 deadline_nsec; -}; - -struct drm_syncobj_eventfd { - __u32 handle; - __u32 flags; - __u64 point; - __s32 fd; - __u32 pad; -}; - -struct drm_syncobj_array { - __u64 handles; - __u32 count_handles; - __u32 pad; -}; - -struct drm_syncobj_timeline_array { - __u64 handles; - __u64 points; - __u32 count_handles; - __u32 flags; -}; - -struct drm_syncobj { - struct kref refcount; - struct dma_fence *fence; - struct list_head cb_list; - struct list_head ev_fd_list; - spinlock_t lock; - struct file *file; -}; - -struct syncobj_wait_entry { - struct list_head node; - struct task_struct *task; - struct dma_fence *fence; - struct dma_fence_cb fence_cb; - u64 point; -}; - -struct syncobj_eventfd_entry { - struct list_head node; - struct dma_fence *fence; - struct dma_fence_cb fence_cb; - struct drm_syncobj *syncobj; - struct eventfd_ctx *ev_fd_ctx; - u64 point; - u32 flags; -}; - -struct drm_vblank_work { - struct kthread_work base; - struct drm_vblank_crtc *vblank; - u64 count; - int cancelling; - struct list_head node; -}; - -struct drm_afbc_framebuffer { - struct drm_framebuffer base; - u32 block_width; - u32 block_height; - u32 aligned_width; - u32 aligned_height; - u32 offset; - u32 afbc_size; -}; - -struct simplefb_format { - const char *name; - u32 bits_per_pixel; - struct fb_bitfield red; - struct fb_bitfield green; - struct fb_bitfield blue; - struct fb_bitfield transp; - u32 fourcc; -}; - -struct simpledrm_device { - struct drm_sysfb_device sysfb; - u32 formats[2]; - struct drm_plane primary_plane; - struct drm_crtc crtc; - struct drm_encoder encoder; - struct drm_connector connector; -}; - -enum spi_offload_trigger_type { - SPI_OFFLOAD_TRIGGER_DATA_READY = 0, - SPI_OFFLOAD_TRIGGER_PERIODIC = 1, -}; - -struct spi_offload_trigger_periodic { - u64 frequency_hz; -}; - -struct spi_offload_trigger_config { - enum spi_offload_trigger_type type; - union { - struct spi_offload_trigger_periodic periodic; - }; -}; - -struct spi_offload_trigger; - -struct spi_offload_trigger_ops { - bool (*match)(struct spi_offload_trigger *, enum spi_offload_trigger_type, u64 *, u32); - int (*request)(struct spi_offload_trigger *, enum spi_offload_trigger_type, u64 *, u32); - void (*release)(struct spi_offload_trigger *); - int (*validate)(struct spi_offload_trigger *, struct spi_offload_trigger_config *); - int (*enable)(struct spi_offload_trigger *, struct spi_offload_trigger_config *); - void (*disable)(struct spi_offload_trigger *); -}; - -struct spi_offload_trigger { - struct list_head list; - struct kref ref; - struct fwnode_handle *fwnode; - struct mutex lock; - const struct spi_offload_trigger_ops *ops; - void *priv; -}; - -struct spi_offload_trigger_info { - struct fwnode_handle *fwnode; - const struct spi_offload_trigger_ops *ops; - void *priv; -}; - -struct spi_controller_and_offload { - struct spi_controller *controller; - struct spi_offload *offload; -}; - -struct mdio_board_entry { - struct list_head list; - struct mdio_board_info board_info; -}; - -struct phy_fixup { - struct list_head list; - char bus_id[64]; - u32 phy_uid; - u32 phy_uid_mask; - int (*run)(struct phy_device *); -}; - -struct mdio_device_id { - __u32 phy_id; - __u32 phy_id_mask; -}; - -enum { - MDIO_AN_C22 = 65504, -}; - -enum { - IFLA_TUN_UNSPEC = 0, - IFLA_TUN_OWNER = 1, - IFLA_TUN_GROUP = 2, - IFLA_TUN_TYPE = 3, - IFLA_TUN_PI = 4, - IFLA_TUN_VNET_HDR = 5, - IFLA_TUN_PERSIST = 6, - IFLA_TUN_MULTI_QUEUE = 7, - IFLA_TUN_NUM_QUEUES = 8, - IFLA_TUN_NUM_DISABLED_QUEUES = 9, - __IFLA_TUN_MAX = 10, -}; - -typedef struct { - char slave; - struct timer_list slave_timer; - short unsigned int slave_timeout; -} ax25_dama_info; - -struct ax25_dev { - struct list_head list; - struct net_device *dev; - netdevice_tracker dev_tracker; - struct net_device *forward; - struct ctl_table_header *sysheader; - int values[14]; - ax25_dama_info dama; - refcount_t refcount; - bool device_up; - struct callback_head rcu; -}; - -struct tun_pi { - __u16 flags; - __be16 proto; -}; - -struct tun_filter { - __u16 flags; - __u16 count; - __u8 addr[0]; -}; - -struct tun_msg_ctl { - short unsigned int type; - short unsigned int num; - void *ptr; -}; - -enum { - AX25_VALUES_IPDEFMODE = 0, - AX25_VALUES_AXDEFMODE = 1, - AX25_VALUES_BACKOFF = 2, - AX25_VALUES_CONMODE = 3, - AX25_VALUES_WINDOW = 4, - AX25_VALUES_EWINDOW = 5, - AX25_VALUES_T1 = 6, - AX25_VALUES_T2 = 7, - AX25_VALUES_T3 = 8, - AX25_VALUES_IDLE = 9, - AX25_VALUES_N2 = 10, - AX25_VALUES_PACLEN = 11, - AX25_VALUES_PROTOCOL = 12, - AX25_VALUES_DS_TIMEOUT = 13, - AX25_MAX_VALUES = 14, -}; - -struct tap_filter { - unsigned int count; - u32 mask[2]; - unsigned char addr[48]; -}; - -struct tun_struct; - -struct tun_file { - struct sock sk; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct socket socket; - struct tun_struct *tun; - struct fasync_struct *fasync; - unsigned int flags; - union { - u16 queue_index; - unsigned int ifindex; - }; - struct napi_struct napi; - bool napi_enabled; - bool napi_frags_enabled; - struct mutex napi_mutex; - struct list_head next; - struct tun_struct *detached; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - struct ptr_ring tx_ring; - struct xdp_rxq_info xdp_rxq; -}; - -struct tun_prog; - -struct tun_struct { - struct tun_file *tfiles[256]; - unsigned int numqueues; - unsigned int flags; - kuid_t owner; - kgid_t group; - struct net_device *dev; - netdev_features_t set_features; - int align; - int vnet_hdr_sz; - int sndbuf; - struct tap_filter txflt; - struct sock_fprog fprog; - bool filter_attached; - u32 msg_enable; - spinlock_t lock; - struct hlist_head flows[1024]; - struct timer_list flow_gc_timer; - long unsigned int ageing_time; - unsigned int numdisabled; - struct list_head disabled; - void *security; - u32 flow_count; - u32 rx_batched; - atomic_long_t rx_frame_errors; - struct bpf_prog *xdp_prog; - struct tun_prog *steering_prog; - struct tun_prog *filter_prog; - struct ethtool_link_ksettings link_ksettings; - struct file *file; - struct ifreq *ifr; -}; - -struct tun_page { - struct page *page; - int count; -}; - -struct tun_flow_entry { - struct hlist_node hash_link; - struct callback_head rcu; - struct tun_struct *tun; - u32 rxhash; - u32 rps_rxhash; - int queue_index; - long: 64; - long unsigned int updated; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct tun_prog { - struct callback_head rcu; - struct bpf_prog *prog; -}; - -struct veth { - __be16 h_vlan_proto; - __be16 h_vlan_TCI; -}; - -enum { - MDBA_UNSPEC = 0, - MDBA_MDB = 1, - MDBA_ROUTER = 2, - __MDBA_MAX = 3, -}; - -enum { - MDBA_MDB_UNSPEC = 0, - MDBA_MDB_ENTRY = 1, - __MDBA_MDB_MAX = 2, -}; - -enum { - MDBA_MDB_ENTRY_UNSPEC = 0, - MDBA_MDB_ENTRY_INFO = 1, - __MDBA_MDB_ENTRY_MAX = 2, -}; - -enum { - MDBA_MDB_EATTR_UNSPEC = 0, - MDBA_MDB_EATTR_TIMER = 1, - MDBA_MDB_EATTR_SRC_LIST = 2, - MDBA_MDB_EATTR_GROUP_MODE = 3, - MDBA_MDB_EATTR_SOURCE = 4, - MDBA_MDB_EATTR_RTPROT = 5, - MDBA_MDB_EATTR_DST = 6, - MDBA_MDB_EATTR_DST_PORT = 7, - MDBA_MDB_EATTR_VNI = 8, - MDBA_MDB_EATTR_IFINDEX = 9, - MDBA_MDB_EATTR_SRC_VNI = 10, - __MDBA_MDB_EATTR_MAX = 11, -}; - -enum { - MDBA_MDB_SRCLIST_UNSPEC = 0, - MDBA_MDB_SRCLIST_ENTRY = 1, - __MDBA_MDB_SRCLIST_MAX = 2, -}; - -enum { - MDBA_MDB_SRCATTR_UNSPEC = 0, - MDBA_MDB_SRCATTR_ADDRESS = 1, - MDBA_MDB_SRCATTR_TIMER = 2, - __MDBA_MDB_SRCATTR_MAX = 3, -}; - -enum { - MDBE_ATTR_UNSPEC = 0, - MDBE_ATTR_SOURCE = 1, - MDBE_ATTR_SRC_LIST = 2, - MDBE_ATTR_GROUP_MODE = 3, - MDBE_ATTR_RTPROT = 4, - MDBE_ATTR_DST = 5, - MDBE_ATTR_DST_PORT = 6, - MDBE_ATTR_VNI = 7, - MDBE_ATTR_IFINDEX = 8, - MDBE_ATTR_SRC_VNI = 9, - MDBE_ATTR_STATE_MASK = 10, - __MDBE_ATTR_MAX = 11, -}; - -enum { - MDBE_SRC_LIST_UNSPEC = 0, - MDBE_SRC_LIST_ENTRY = 1, - __MDBE_SRC_LIST_MAX = 2, -}; - -enum { - MDBE_SRCATTR_UNSPEC = 0, - MDBE_SRCATTR_ADDRESS = 1, - __MDBE_SRCATTR_MAX = 2, -}; - -struct vxlan_mdb_remote { - struct list_head list; - struct vxlan_rdst *rd; - u8 flags; - u8 filter_mode; - u8 rt_protocol; - struct hlist_head src_list; - struct callback_head rcu; -}; - -struct vxlan_mdb_src_entry { - struct hlist_node node; - union vxlan_addr addr; - u8 flags; -}; - -struct vxlan_mdb_dump_ctx { - long int reserved; - long int entry_idx; - long int remote_idx; -}; - -struct vxlan_mdb_config_src_entry { - union vxlan_addr addr; - struct list_head node; -}; - -struct vxlan_mdb_config { - struct vxlan_dev *vxlan; - struct vxlan_mdb_entry_key group; - struct list_head src_list; - union vxlan_addr remote_ip; - u32 remote_ifindex; - __be32 remote_vni; - __be16 remote_port; - u16 nlflags; - u8 flags; - u8 filter_mode; - u8 rt_protocol; -}; - -struct vxlan_mdb_flush_desc { - union vxlan_addr remote_ip; - __be32 src_vni; - __be32 remote_vni; - __be16 remote_port; - u8 rt_protocol; -}; - -union hwc_init_eq_id_db { - u32 as_uint32; - struct { - u32 eq_id: 16; - u32 doorbell: 16; - }; -}; - -union hwc_init_type_data { - u32 as_uint32; - struct { - u32 value: 24; - u32 type: 8; - }; -}; - -union hwc_init_soc_service_type { - u32 as_uint32; - struct { - u32 value: 28; - u32 type: 4; - }; -}; - -struct vcap_admin_debugfs_info { - struct vcap_control *vctrl; - struct vcap_admin *admin; -}; - -struct vcap_port_debugfs_info { - struct vcap_control *vctrl; - struct net_device *ndev; -}; - -struct vcap_tc_flower_parse_usage { - struct flow_cls_offload *fco; - struct flow_rule *frule; - struct vcap_rule *vrule; - struct vcap_admin *admin; - u16 l3_proto; - u8 l4_proto; - u16 tpid; - long long unsigned int used_keys; -}; - -enum vcap_is2_arp_opcode { - VCAP_IS2_ARP_REQUEST = 0, - VCAP_IS2_ARP_REPLY = 1, - VCAP_IS2_RARP_REQUEST = 2, - VCAP_IS2_RARP_REPLY = 3, -}; - -enum vcap_arp_opcode { - VCAP_ARP_OP_RESERVED = 0, - VCAP_ARP_OP_REQUEST = 1, - VCAP_ARP_OP_REPLY = 2, -}; - -struct netdev_lag_lower_state_info { - u8 link_up: 1; - u8 tx_enabled: 1; -}; - -struct net_failover_info { - struct net_device *primary_dev; - struct net_device *standby_dev; - struct rtnl_link_stats64 primary_stats; - struct rtnl_link_stats64 standby_stats; - struct rtnl_link_stats64 failover_stats; - spinlock_t stats_lock; -}; - -struct usb_qualifier_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __le16 bcdUSB; - __u8 bDeviceClass; - __u8 bDeviceSubClass; - __u8 bDeviceProtocol; - __u8 bMaxPacketSize0; - __u8 bNumConfigurations; - __u8 bRESERVED; -}; - -struct usb_set_sel_req { - __u8 u1_sel; - __u8 u1_pel; - __le16 u2_sel; - __le16 u2_pel; -}; - -struct usbdevfs_hub_portinfo { - char nports; - char port[127]; -}; - -enum hub_led_mode { - INDICATOR_AUTO = 0, - INDICATOR_CYCLE = 1, - INDICATOR_GREEN_BLINK = 2, - INDICATOR_GREEN_BLINK_OFF = 3, - INDICATOR_AMBER_BLINK = 4, - INDICATOR_AMBER_BLINK_OFF = 5, - INDICATOR_ALT_BLINK = 6, - INDICATOR_ALT_BLINK_OFF = 7, -} __attribute__((mode(byte))); - -struct usb_tt_clear { - struct list_head clear_list; - unsigned int tt; - u16 devinfo; - struct usb_hcd *hcd; - struct usb_host_endpoint *ep; -}; - -enum hub_activation_type { - HUB_INIT = 0, - HUB_INIT2 = 1, - HUB_INIT3 = 2, - HUB_POST_RESET = 3, - HUB_RESUME = 4, - HUB_RESET_RESUME = 5, -}; - -enum hub_quiescing_type { - HUB_DISCONNECT = 0, - HUB_PRE_RESET = 1, - HUB_SUSPEND = 2, -}; - -struct usb_sg_request { - int status; - size_t bytes; - spinlock_t lock; - struct usb_device *dev; - int pipe; - int entries; - struct urb **urbs; - int count; - struct completion complete; -}; - -struct usb_cdc_header_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __le16 bcdCDC; -} __attribute__((packed)); - -struct usb_cdc_call_mgmt_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __u8 bmCapabilities; - __u8 bDataInterface; -}; - -struct usb_cdc_acm_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __u8 bmCapabilities; -}; - -struct usb_cdc_union_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __u8 bMasterInterface0; - __u8 bSlaveInterface0; -}; - -struct usb_cdc_country_functional_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __u8 iCountryCodeRelDate; - __le16 wCountyCode0; -}; - -struct usb_cdc_network_terminal_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __u8 bEntityId; - __u8 iName; - __u8 bChannelIndex; - __u8 bPhysicalInterface; -}; - -struct usb_cdc_ether_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __u8 iMACAddress; - __le32 bmEthernetStatistics; - __le16 wMaxSegmentSize; - __le16 wNumberMCFilters; - __u8 bNumberPowerFilters; -} __attribute__((packed)); - -struct usb_cdc_dmm_desc { - __u8 bFunctionLength; - __u8 bDescriptorType; - __u8 bDescriptorSubtype; - __u16 bcdVersion; - __le16 wMaxCommand; -} __attribute__((packed)); - -struct usb_cdc_mdlm_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __le16 bcdVersion; - __u8 bGUID[16]; -} __attribute__((packed)); - -struct usb_cdc_mdlm_detail_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __u8 bGuidDescriptorType; - __u8 bDetailData[0]; -}; - -struct usb_cdc_obex_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __le16 bcdVersion; -} __attribute__((packed)); - -struct usb_cdc_ncm_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __le16 bcdNcmVersion; - __u8 bmNetworkCapabilities; -} __attribute__((packed)); - -struct usb_cdc_mbim_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __le16 bcdMBIMVersion; - __le16 wMaxControlMessage; - __u8 bNumberFilters; - __u8 bMaxFilterSize; - __le16 wMaxSegmentSize; - __u8 bmNetworkCapabilities; -} __attribute__((packed)); - -struct usb_cdc_mbim_extended_desc { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDescriptorSubType; - __le16 bcdMBIMExtendedVersion; - __u8 bMaxOutstandingCommandMessages; - __le16 wMTU; -} __attribute__((packed)); - -struct usb_cdc_parsed_header { - struct usb_cdc_union_desc *usb_cdc_union_desc; - struct usb_cdc_header_desc *usb_cdc_header_desc; - struct usb_cdc_call_mgmt_descriptor *usb_cdc_call_mgmt_descriptor; - struct usb_cdc_acm_descriptor *usb_cdc_acm_descriptor; - struct usb_cdc_country_functional_desc *usb_cdc_country_functional_desc; - struct usb_cdc_network_terminal_desc *usb_cdc_network_terminal_desc; - struct usb_cdc_ether_desc *usb_cdc_ether_desc; - struct usb_cdc_dmm_desc *usb_cdc_dmm_desc; - struct usb_cdc_mdlm_desc *usb_cdc_mdlm_desc; - struct usb_cdc_mdlm_detail_desc *usb_cdc_mdlm_detail_desc; - struct usb_cdc_obex_desc *usb_cdc_obex_desc; - struct usb_cdc_ncm_desc *usb_cdc_ncm_desc; - struct usb_cdc_mbim_desc *usb_cdc_mbim_desc; - struct usb_cdc_mbim_extended_desc *usb_cdc_mbim_extended_desc; - bool phonet_magic_present; -}; - -struct api_context { - struct completion done; - int status; -}; - -struct set_config_request { - struct usb_device *udev; - int config; - struct work_struct work; - struct list_head node; -}; - -struct class_info { - int class; - char *class_name; -}; - -enum amd_chipset_gen { - NOT_AMD_CHIPSET = 0, - AMD_CHIPSET_SB600 = 1, - AMD_CHIPSET_SB700 = 2, - AMD_CHIPSET_SB800 = 3, - AMD_CHIPSET_HUDSON2 = 4, - AMD_CHIPSET_BOLTON = 5, - AMD_CHIPSET_YANGTZE = 6, - AMD_CHIPSET_TAISHAN = 7, - AMD_CHIPSET_UNKNOWN = 8, -}; - -struct amd_chipset_type { - enum amd_chipset_gen gen; - u8 rev; -}; - -struct amd_chipset_info { - struct pci_dev *nb_dev; - struct pci_dev *smbus_dev; - int nb_type; - struct amd_chipset_type sb_type; - int isoc_reqs; - int probe_count; - bool need_pll_quirk; -}; - -enum xhci_ep_reset_type { - EP_HARD_RESET = 0, - EP_SOFT_RESET = 1, -}; - -struct trace_event_raw_xhci_log_msg { - struct trace_entry ent; - u32 __data_loc_msg; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_ctx { - struct trace_entry ent; - int ctx_64; - unsigned int ctx_type; - dma_addr_t ctx_dma; - u8 *ctx_va; - unsigned int ctx_ep_num; - u32 __data_loc_ctx_data; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_trb { - struct trace_entry ent; - dma_addr_t dma; - u32 type; - u32 field0; - u32 field1; - u32 field2; - u32 field3; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_free_virt_dev { - struct trace_entry ent; - void *vdev; - long long unsigned int out_ctx; - long long unsigned int in_ctx; - int slot_id; - u16 current_mel; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_virt_dev { - struct trace_entry ent; - void *vdev; - long long unsigned int out_ctx; - long long unsigned int in_ctx; - int devnum; - int state; - int speed; - u8 portnum; - u8 level; - int slot_id; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_urb { - struct trace_entry ent; - u32 __data_loc_devname; - void *urb; - unsigned int pipe; - unsigned int stream; - int status; - unsigned int flags; - int num_mapped_sgs; - int num_sgs; - int length; - int actual; - int epnum; - int dir_in; - int type; - int slot_id; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_stream_ctx { - struct trace_entry ent; - unsigned int stream_id; - u64 stream_ring; - dma_addr_t ctx_array_dma; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_ep_ctx { - struct trace_entry ent; - u32 info; - u32 info2; - u64 deq; - u32 tx_info; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_slot_ctx { - struct trace_entry ent; - u32 info; - u32 info2; - u32 tt_info; - u32 state; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_ctrl_ctx { - struct trace_entry ent; - u32 drop; - u32 add; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_ring { - struct trace_entry ent; - u32 type; - void *ring; - dma_addr_t enq; - dma_addr_t deq; - unsigned int num_segs; - unsigned int stream_id; - unsigned int cycle_state; - unsigned int bounce_buf_len; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_portsc { - struct trace_entry ent; - u32 busnum; - u32 portnum; - u32 portsc; - char __data[0]; -}; - -struct trace_event_raw_xhci_log_doorbell { - struct trace_entry ent; - u32 slot; - u32 doorbell; - char __data[0]; -}; - -struct trace_event_raw_xhci_dbc_log_request { - struct trace_entry ent; - struct dbc_request *req; - bool dir; - unsigned int actual; - unsigned int length; - int status; - char __data[0]; -}; - -struct trace_event_data_offsets_xhci_log_msg { - u32 msg; - const void *msg_ptr_; -}; - -struct trace_event_data_offsets_xhci_log_ctx { - u32 ctx_data; - const void *ctx_data_ptr_; -}; - -struct trace_event_data_offsets_xhci_log_trb {}; - -struct trace_event_data_offsets_xhci_log_free_virt_dev {}; - -struct trace_event_data_offsets_xhci_log_virt_dev {}; - -struct trace_event_data_offsets_xhci_log_urb { - u32 devname; - const void *devname_ptr_; -}; - -struct trace_event_data_offsets_xhci_log_stream_ctx {}; - -struct trace_event_data_offsets_xhci_log_ep_ctx {}; - -struct trace_event_data_offsets_xhci_log_slot_ctx {}; - -struct trace_event_data_offsets_xhci_log_ctrl_ctx {}; - -struct trace_event_data_offsets_xhci_log_ring {}; - -struct trace_event_data_offsets_xhci_log_portsc {}; - -struct trace_event_data_offsets_xhci_log_doorbell {}; - -struct trace_event_data_offsets_xhci_dbc_log_request {}; - -typedef void (*btf_trace_xhci_dbg_address)(void *, struct va_format *); - -typedef void (*btf_trace_xhci_dbg_context_change)(void *, struct va_format *); - -typedef void (*btf_trace_xhci_dbg_quirks)(void *, struct va_format *); - -typedef void (*btf_trace_xhci_dbg_reset_ep)(void *, struct va_format *); - -typedef void (*btf_trace_xhci_dbg_cancel_urb)(void *, struct va_format *); - -typedef void (*btf_trace_xhci_dbg_init)(void *, struct va_format *); - -typedef void (*btf_trace_xhci_dbg_ring_expansion)(void *, struct va_format *); - -typedef void (*btf_trace_xhci_address_ctx)(void *, struct xhci_hcd *, struct xhci_container_ctx *, unsigned int); - -typedef void (*btf_trace_xhci_handle_event)(void *, struct xhci_ring *, struct xhci_generic_trb *, dma_addr_t); - -typedef void (*btf_trace_xhci_handle_command)(void *, struct xhci_ring *, struct xhci_generic_trb *, dma_addr_t); - -typedef void (*btf_trace_xhci_handle_transfer)(void *, struct xhci_ring *, struct xhci_generic_trb *, dma_addr_t); - -typedef void (*btf_trace_xhci_queue_trb)(void *, struct xhci_ring *, struct xhci_generic_trb *, dma_addr_t); - -typedef void (*btf_trace_xhci_dbc_handle_event)(void *, struct xhci_ring *, struct xhci_generic_trb *, dma_addr_t); - -typedef void (*btf_trace_xhci_dbc_handle_transfer)(void *, struct xhci_ring *, struct xhci_generic_trb *, dma_addr_t); - -typedef void (*btf_trace_xhci_dbc_gadget_ep_queue)(void *, struct xhci_ring *, struct xhci_generic_trb *, dma_addr_t); - -typedef void (*btf_trace_xhci_free_virt_device)(void *, struct xhci_virt_device *); - -typedef void (*btf_trace_xhci_alloc_virt_device)(void *, struct xhci_virt_device *); - -typedef void (*btf_trace_xhci_setup_device)(void *, struct xhci_virt_device *); - -typedef void (*btf_trace_xhci_setup_addressable_virt_device)(void *, struct xhci_virt_device *); - -typedef void (*btf_trace_xhci_stop_device)(void *, struct xhci_virt_device *); - -typedef void (*btf_trace_xhci_urb_enqueue)(void *, struct urb *); - -typedef void (*btf_trace_xhci_urb_giveback)(void *, struct urb *); - -typedef void (*btf_trace_xhci_urb_dequeue)(void *, struct urb *); - -typedef void (*btf_trace_xhci_alloc_stream_info_ctx)(void *, struct xhci_stream_info *, unsigned int); - -typedef void (*btf_trace_xhci_handle_cmd_set_deq_stream)(void *, struct xhci_stream_info *, unsigned int); - -typedef void (*btf_trace_xhci_handle_cmd_stop_ep)(void *, struct xhci_ep_ctx *); - -typedef void (*btf_trace_xhci_handle_cmd_set_deq_ep)(void *, struct xhci_ep_ctx *); - -typedef void (*btf_trace_xhci_handle_cmd_reset_ep)(void *, struct xhci_ep_ctx *); - -typedef void (*btf_trace_xhci_handle_cmd_config_ep)(void *, struct xhci_ep_ctx *); - -typedef void (*btf_trace_xhci_add_endpoint)(void *, struct xhci_ep_ctx *); - -typedef void (*btf_trace_xhci_alloc_dev)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_free_dev)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_handle_cmd_disable_slot)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_discover_or_reset_device)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_setup_device_slot)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_handle_cmd_addr_dev)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_handle_cmd_reset_dev)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_handle_cmd_set_deq)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_configure_endpoint)(void *, struct xhci_slot_ctx *); - -typedef void (*btf_trace_xhci_address_ctrl_ctx)(void *, struct xhci_input_control_ctx *); - -typedef void (*btf_trace_xhci_configure_endpoint_ctrl_ctx)(void *, struct xhci_input_control_ctx *); - -typedef void (*btf_trace_xhci_ring_alloc)(void *, struct xhci_ring *); - -typedef void (*btf_trace_xhci_ring_free)(void *, struct xhci_ring *); - -typedef void (*btf_trace_xhci_ring_expansion)(void *, struct xhci_ring *); - -typedef void (*btf_trace_xhci_inc_enq)(void *, struct xhci_ring *); - -typedef void (*btf_trace_xhci_inc_deq)(void *, struct xhci_ring *); - -typedef void (*btf_trace_xhci_handle_port_status)(void *, struct xhci_port *, u32); - -typedef void (*btf_trace_xhci_get_port_status)(void *, struct xhci_port *, u32); - -typedef void (*btf_trace_xhci_hub_status_data)(void *, struct xhci_port *, u32); - -typedef void (*btf_trace_xhci_ring_ep_doorbell)(void *, u32, u32); - -typedef void (*btf_trace_xhci_ring_host_doorbell)(void *, u32, u32); - -typedef void (*btf_trace_xhci_dbc_alloc_request)(void *, struct dbc_request *); - -typedef void (*btf_trace_xhci_dbc_free_request)(void *, struct dbc_request *); - -typedef void (*btf_trace_xhci_dbc_queue_request)(void *, struct dbc_request *); - -typedef void (*btf_trace_xhci_dbc_giveback_request)(void *, struct dbc_request *); - -struct usb_debug_descriptor { - __u8 bLength; - __u8 bDescriptorType; - __u8 bDebugInEndpoint; - __u8 bDebugOutEndpoint; -}; - -struct ehci_dbg_port { - u32 control; - u32 pids; - u32 data03; - u32 data47; - u32 address; -}; - -struct ehci_caps { - u32 hc_capbase; - u32 hcs_params; - u32 hcc_params; - u8 portroute[8]; -}; - -struct ehci_regs { - u32 command; - u32 status; - u32 intr_enable; - u32 frame_index; - u32 segment; - u32 frame_list; - u32 async_next; - u32 reserved1[2]; - u32 txfill_tuning; - u32 reserved2[6]; - u32 configured_flag; - union { - u32 port_status[15]; - struct { - u32 reserved3[9]; - u32 usbmode; - }; - }; - union { - struct { - u32 reserved4; - u32 hostpc[15]; - }; - u32 brcm_insnreg[4]; - }; - u32 reserved5[2]; - u32 usbmode_ex; -}; - -struct ehci_dev { - u32 bus; - u32 slot; - u32 func; -}; - -typedef void (*set_debug_port_t)(int); - -typedef bool (*i8042_filter_t)(unsigned char, unsigned char, struct serio *, void *); - -enum i8042_controller_reset_mode { - I8042_RESET_NEVER = 0, - I8042_RESET_ALWAYS = 1, - I8042_RESET_ON_S2RAM = 2, -}; - -struct i8042_port { - struct serio *serio; - int irq; - bool exists; - bool driver_bound; - signed char mux; -}; - -struct touch_overlay_segment { - struct list_head list; - u32 x_origin; - u32 y_origin; - u32 x_size; - u32 y_size; - u32 key; - bool pressed; - int slot; -}; - -struct input_mask { - __u32 type; - __u32 codes_size; - __u64 codes_ptr; -}; - -struct evdev_client; - -struct evdev { - int open; - struct input_handle handle; - struct evdev_client *grab; - struct list_head client_list; - spinlock_t client_lock; - struct mutex mutex; - struct device dev; - struct cdev cdev; - bool exist; -}; - -struct evdev_client { - unsigned int head; - unsigned int tail; - unsigned int packet_head; - spinlock_t buffer_lock; - wait_queue_head_t wait; - struct fasync_struct *fasync; - struct evdev *evdev; - struct list_head node; - enum input_clock_type clk_type; - bool revoked; - long unsigned int *evmasks[32]; - unsigned int bufsize; - struct input_event buffer[0]; -}; - -struct mc146818_get_time_callback_param { - struct rtc_time *time; - unsigned char ctrl; - unsigned char century; -}; - -struct cmos_rtc_board_info { - void (*wake_on)(struct device *); - void (*wake_off)(struct device *); - u32 flags; - int address_space; - u8 rtc_day_alarm; - u8 rtc_mon_alarm; - u8 rtc_century; -}; - -struct cmos_rtc { - struct rtc_device *rtc; - struct device *dev; - int irq; - struct resource *iomem; - time64_t alarm_expires; - void (*wake_on)(struct device *); - void (*wake_off)(struct device *); - u8 enabled_wake; - u8 suspend_ctrl; - u8 day_alrm; - u8 mon_alrm; - u8 century; - struct rtc_wkalrm saved_wkalrm; -}; - -struct cmos_read_alarm_callback_param { - struct cmos_rtc *cmos; - struct rtc_time *time; - unsigned char rtc_control; -}; - -struct cmos_set_alarm_callback_param { - struct cmos_rtc *cmos; - unsigned char mon; - unsigned char mday; - unsigned char hrs; - unsigned char min; - unsigned char sec; - struct rtc_wkalrm *t; -}; - -struct i2c_smbus_alert_setup { - int irq; -}; - -struct trace_event_raw_smbus_write { - struct trace_entry ent; - int adapter_nr; - __u16 addr; - __u16 flags; - __u8 command; - __u8 len; - __u32 protocol; - __u8 buf[34]; - char __data[0]; -}; - -struct trace_event_raw_smbus_read { - struct trace_entry ent; - int adapter_nr; - __u16 flags; - __u16 addr; - __u8 command; - __u32 protocol; - __u8 buf[34]; - char __data[0]; -}; - -struct trace_event_raw_smbus_reply { - struct trace_entry ent; - int adapter_nr; - __u16 addr; - __u16 flags; - __u8 command; - __u8 len; - __u32 protocol; - __u8 buf[34]; - char __data[0]; -}; - -struct trace_event_raw_smbus_result { - struct trace_entry ent; - int adapter_nr; - __u16 addr; - __u16 flags; - __u8 read_write; - __u8 command; - __s16 res; - __u32 protocol; - char __data[0]; -}; - -struct trace_event_data_offsets_smbus_write {}; - -struct trace_event_data_offsets_smbus_read {}; - -struct trace_event_data_offsets_smbus_reply {}; - -struct trace_event_data_offsets_smbus_result {}; - -typedef void (*btf_trace_smbus_write)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int, const union i2c_smbus_data *); - -typedef void (*btf_trace_smbus_read)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int); - -typedef void (*btf_trace_smbus_reply)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int, const union i2c_smbus_data *, int); - -typedef void (*btf_trace_smbus_result)(void *, const struct i2c_adapter *, u16, short unsigned int, char, u8, int, int); - -enum power_supply_notifier_events { - PSY_EVENT_PROP_CHANGED = 0, -}; - -struct power_supply_config { - struct fwnode_handle *fwnode; - void *drv_data; - const struct attribute_group **attr_grp; - char **supplied_to; - size_t num_supplicants; - bool no_wakeup_source; -}; - -struct psy_for_each_psy_cb_data { - int (*fn)(struct power_supply *, void *); - void *data; -}; - -struct psy_am_i_supplied_data { - struct power_supply *psy; - unsigned int count; -}; - -struct psy_get_supplier_prop_data { - struct power_supply *psy; - enum power_supply_property psp; - union power_supply_propval *val; -}; - -typedef struct thermal_zone_device *class_thermal_zone_reverse_t; - -struct trace_event_raw_thermal_temperature { - struct trace_entry ent; - u32 __data_loc_thermal_zone; - int id; - int temp_prev; - int temp; - char __data[0]; -}; - -struct trace_event_raw_cdev_update { - struct trace_entry ent; - u32 __data_loc_type; - long unsigned int target; - char __data[0]; -}; - -struct trace_event_raw_thermal_zone_trip { - struct trace_entry ent; - u32 __data_loc_thermal_zone; - int id; - int trip; - enum thermal_trip_type trip_type; - char __data[0]; -}; - -struct trace_event_raw_thermal_power_devfreq_get_power { - struct trace_entry ent; - u32 __data_loc_type; - long unsigned int freq; - u32 busy_time; - u32 total_time; - u32 power; - char __data[0]; -}; - -struct trace_event_raw_thermal_power_devfreq_limit { - struct trace_entry ent; - u32 __data_loc_type; - unsigned int freq; - long unsigned int cdev_state; - u32 power; - char __data[0]; -}; - -struct trace_event_data_offsets_thermal_temperature { - u32 thermal_zone; - const void *thermal_zone_ptr_; -}; - -struct trace_event_data_offsets_cdev_update { - u32 type; - const void *type_ptr_; -}; - -struct trace_event_data_offsets_thermal_zone_trip { - u32 thermal_zone; - const void *thermal_zone_ptr_; -}; - -struct trace_event_data_offsets_thermal_power_devfreq_get_power { - u32 type; - const void *type_ptr_; -}; - -struct trace_event_data_offsets_thermal_power_devfreq_limit { - u32 type; - const void *type_ptr_; -}; - -typedef void (*btf_trace_thermal_temperature)(void *, struct thermal_zone_device *); - -typedef void (*btf_trace_cdev_update)(void *, struct thermal_cooling_device *, long unsigned int); - -typedef void (*btf_trace_thermal_zone_trip)(void *, struct thermal_zone_device *, int, enum thermal_trip_type); - -typedef void (*btf_trace_thermal_power_devfreq_get_power)(void *, struct thermal_cooling_device *, struct devfreq_dev_status *, long unsigned int, u32); - -typedef void (*btf_trace_thermal_power_devfreq_limit)(void *, struct thermal_cooling_device *, long unsigned int, long unsigned int, u32); - -struct devfreq_cooling_device { - struct thermal_cooling_device *cdev; - struct thermal_cooling_device_ops cooling_ops; - struct devfreq *devfreq; - long unsigned int cooling_state; - u32 *freq_table; - size_t max_state; - struct devfreq_cooling_power *power_ops; - u32 res_util; - int capped_state; - struct dev_pm_qos_request req_max_freq; - struct em_perf_domain *em_pd; -}; - -union hfi_capabilities { - struct { - u8 performance: 1; - u8 energy_efficiency: 1; - u8 __reserved: 6; - } split; - u8 bits; -}; - -union cpuid6_edx { - struct { - union hfi_capabilities capabilities; - u32 table_pages: 4; - u32 __reserved: 4; - s32 index: 16; - } split; - u32 full; -}; - -struct hfi_cpu_data { - u8 perf_cap; - u8 ee_cap; -}; - -struct hfi_instance { - union { - void *local_table; - u64 *timestamp; - }; - void *hdr; - void *data; - cpumask_var_t cpus; - void *hw_table; - struct delayed_work update_work; - raw_spinlock_t table_lock; - raw_spinlock_t event_lock; -}; - -struct hfi_features { - size_t nr_table_pages; - unsigned int cpu_stride; - unsigned int hdr_size; -}; - -struct hfi_cpu_info { - s16 index; - struct hfi_instance *hfi_instance; -}; - -struct md_setup_args { - int minor; - int partitioned; - int level; - int chunk; - char *device_names; -}; - -struct dm_device_zone_count { - sector_t start; - sector_t len; - unsigned int total_nr_seq_zones; - unsigned int target_nr_seq_zones; -}; - -struct dm_zone_resource_limits { - unsigned int mapped_nr_seq_zones; - struct queue_limits *lim; - bool reliable_limits; -}; - -enum { - DM_TIO_INSIDE_DM_IO = 0, - DM_TIO_IS_DUPLICATE_BIO = 1, -}; - -enum { - DM_IO_ACCOUNTED = 0, - DM_IO_WAS_SPLIT = 1, - DM_IO_BLK_STAT = 2, -}; - -struct clone_info { - struct dm_table *map; - struct bio *bio; - struct dm_io *io; - sector_t sector; - unsigned int sector_count; - bool is_abnormal_io: 1; - bool submit_as_polled: 1; -}; - -struct table_device { - struct list_head list; - refcount_t count; - struct dm_dev dm_dev; -}; - -struct dm_blkdev_id { - u8 *id; - enum blk_unique_id type; -}; - -struct dm_pr { - u64 old_key; - u64 new_key; - u32 flags; - bool abort; - bool fail_early; - int ret; - enum pr_type type; - struct pr_keys *read_keys; - struct pr_held_reservation *rsv; -}; - -struct dm_io_client { - mempool_t pool; - struct bio_set bios; -}; - -struct io { - long unsigned int error_bits; - atomic_t count; - struct dm_io_client *client; - io_notify_fn callback; - void *context; - void *vma_invalidate_address; - long unsigned int vma_invalidate_size; - long: 64; -}; - -struct dpages { - void (*get_page)(struct dpages *, struct page **, long unsigned int *, unsigned int *); - void (*next_page)(struct dpages *); - union { - unsigned int context_u; - struct bvec_iter context_bi; - }; - void *context_ptr; - void *vma_invalidate_address; - long unsigned int vma_invalidate_size; -}; - -struct sync_io { - long unsigned int error_bits; - struct completion wait; -}; - -struct dm_sysfs_attr { - struct attribute attr; - ssize_t (*show)(struct mapped_device *, char *); - ssize_t (*store)(struct mapped_device *, const char *, size_t); -}; - -enum edac_mem_repair_type { - EDAC_REPAIR_PPR = 0, - EDAC_REPAIR_CACHELINE_SPARING = 1, - EDAC_REPAIR_ROW_SPARING = 2, - EDAC_REPAIR_BANK_SPARING = 3, - EDAC_REPAIR_RANK_SPARING = 4, - EDAC_REPAIR_MAX = 5, -}; - -enum edac_mem_repair_attributes { - MR_TYPE = 0, - MR_PERSIST_MODE = 1, - MR_SAFE_IN_USE = 2, - MR_HPA = 3, - MR_MIN_HPA = 4, - MR_MAX_HPA = 5, - MR_DPA = 6, - MR_MIN_DPA = 7, - MR_MAX_DPA = 8, - MR_NIBBLE_MASK = 9, - MR_BANK_GROUP = 10, - MR_BANK = 11, - MR_RANK = 12, - MR_ROW = 13, - MR_COLUMN = 14, - MR_CHANNEL = 15, - MR_SUB_CHANNEL = 16, - MEM_DO_REPAIR = 17, - MR_MAX_ATTRS = 18, -}; - -struct edac_mem_repair_dev_attr { - struct device_attribute dev_attr; - u8 instance; -}; - -struct edac_mem_repair_context { - char name[128]; - struct edac_mem_repair_dev_attr mem_repair_dev_attr[18]; - struct attribute *mem_repair_attrs[19]; - struct attribute_group group; -}; - -enum tt_ids { - TT_INSTR = 0, - TT_DATA = 1, - TT_GEN = 2, - TT_RESV = 3, -}; - -enum ll_ids { - LL_RESV = 0, - LL_L1 = 1, - LL_L2 = 2, - LL_LG = 3, -}; - -enum ii_ids { - II_MEM = 0, - II_RESV = 1, - II_IO = 2, - II_GEN = 3, -}; - -enum rrrr_ids { - R4_GEN = 0, - R4_RD = 1, - R4_WR = 2, - R4_DRD = 3, - R4_DWR = 4, - R4_IRD = 5, - R4_PREF = 6, - R4_EVICT = 7, - R4_SNOOP = 8, -}; - -struct amd_decoder_ops { - bool (*mc0_mce)(u16, u8); - bool (*mc1_mce)(u16, u8); - bool (*mc2_mce)(u16, u8); -}; - -enum dev_pm_opp_event { - OPP_EVENT_ADD = 0, - OPP_EVENT_REMOVE = 1, - OPP_EVENT_ENABLE = 2, - OPP_EVENT_DISABLE = 3, - OPP_EVENT_ADJUST_VOLTAGE = 4, -}; - -struct dev_pm_opp_data { - bool turbo; - unsigned int level; - long unsigned int freq; - long unsigned int u_volt; -}; - -struct opp_config_data { - struct opp_table *opp_table; - unsigned int flags; - unsigned int required_dev_index; -}; - -struct cpufreq_stats { - unsigned int total_trans; - long long unsigned int last_time; - unsigned int max_state; - unsigned int state_num; - unsigned int last_index; - u64 *time_in_state; - unsigned int *freq_table; - unsigned int *trans_table; - unsigned int reset_pending; - long long unsigned int reset_time; -}; - -struct powernow_k8_data { - unsigned int cpu; - u32 numps; - u32 batps; - u32 rvo; - u32 irt; - u32 vidmvs; - u32 vstable; - u32 plllock; - u32 exttype; - u32 currvid; - u32 currfid; - struct cpufreq_frequency_table *powernow_table; - struct acpi_processor_performance acpi_data; - struct cpumask *available_cores; -}; - -struct psb_s { - u8 signature[10]; - u8 tableversion; - u8 flags1; - u16 vstable; - u8 flags2; - u8 num_tables; - u32 cpuid; - u8 plllocktime; - u8 maxfid; - u8 maxvid; - u8 numps; -}; - -struct pst_s { - u8 fid; - u8 vid; -}; - -struct powernowk8_target_arg { - struct cpufreq_policy *pol; - unsigned int newstate; -}; - -struct init_on_cpu { - struct powernow_k8_data *data; - int rc; -}; - -struct cpu_id { - __u8 x86; - __u8 x86_model; - __u8 x86_stepping; -}; - -enum { - CPU_BANIAS = 0, - CPU_DOTHAN_A1 = 1, - CPU_DOTHAN_A2 = 2, - CPU_DOTHAN_B0 = 3, - CPU_MP4HT_D0 = 4, - CPU_MP4HT_E0 = 5, -}; - -struct cpu_model { - const struct cpu_id *cpu_id; - const char *model_name; - unsigned int max_freq; - struct cpufreq_frequency_table *op_points; -}; - -struct edd_device { - unsigned int index; - unsigned int mbr_signature; - struct edd_info *info; - struct kobject kobj; -}; - -struct edd_attribute { - struct attribute attr; - ssize_t (*show)(struct edd_device *, char *); - int (*test)(struct edd_device *); -}; - -typedef struct { - u32 version; - u32 num_entries; - u32 desc_size; - u32 flags; - efi_memory_desc_t entry[0]; -} efi_memory_attributes_table_t; - -struct cper_sec_proc_generic { - u64 validation_bits; - u8 proc_type; - u8 proc_isa; - u8 proc_error_type; - u8 operation; - u8 flags; - u8 level; - u16 reserved; - u64 cpu_version; - char cpu_brand[128]; - u64 proc_id; - u64 target_addr; - u64 requestor_id; - u64 responder_id; - u64 ip; -}; - -struct cper_sec_pcie { - u64 validation_bits; - u32 port_type; - struct { - u8 minor; - u8 major; - u8 reserved[2]; - } version; - u16 command; - u16 status; - u32 reserved; - struct { - u16 vendor_id; - u16 device_id; - u8 class_code[3]; - u8 function; - u8 device; - u16 segment; - u8 bus; - u8 secondary_bus; - u16 slot; - u8 reserved; - } __attribute__((packed)) device_id; - struct { - u32 lower; - u32 upper; - } serial_number; - struct { - u16 secondary_status; - u16 control; - } bridge; - u8 capability[60]; - u8 aer_info[96]; -}; - -struct cper_sec_fw_err_rec_ref { - u8 record_type; - u8 revision; - u8 reserved[6]; - u64 record_identifier; - guid_t record_identifier_guid; -}; - -struct acpi_hest_generic_data { - u8 section_type[16]; - u32 error_severity; - u16 revision; - u8 validation_bits; - u8 flags; - u32 error_data_length; - u8 fru_id[16]; - u8 fru_text[20]; -}; - -struct acpi_hest_generic_data_v300 { - u8 section_type[16]; - u32 error_severity; - u16 revision; - u8 validation_bits; - u8 flags; - u32 error_data_length; - u8 fru_id[16]; - u8 fru_text[20]; - u64 time_stamp; -}; - -struct ignore_section { - guid_t guid; - const char *name; -}; - -struct efi_mokvar_sysfs_attr { - struct bin_attribute bin_attr; - struct list_head node; -}; - -struct accept_range { - struct list_head list; - long unsigned int start; - long unsigned int end; -}; - -enum vme_resource_type { - VME_MASTER = 0, - VME_SLAVE = 1, - VME_DMA = 2, - VME_LM = 3, -}; - -struct vme_dma_attr { - u32 type; - void *private; -}; - -struct vme_resource { - enum vme_resource_type type; - struct list_head *entry; -}; - -struct vme_bridge; - -struct vme_dev { - int num; - struct vme_bridge *bridge; - struct device dev; - struct list_head drv_list; - struct list_head bridge_list; -}; - -struct vme_callback { - void (*func)(int, int, void *); - void *priv_data; -}; - -struct vme_irq { - int count; - struct vme_callback callback[256]; -}; - -struct vme_slave_resource; - -struct vme_master_resource; - -struct vme_dma_list; - -struct vme_lm_resource; - -struct vme_bridge { - char name[16]; - int num; - struct list_head master_resources; - struct list_head slave_resources; - struct list_head dma_resources; - struct list_head lm_resources; - struct list_head vme_error_handlers; - struct list_head devices; - struct device *parent; - void *driver_priv; - struct list_head bus_list; - struct vme_irq irq[7]; - struct mutex irq_mtx; - int (*slave_get)(struct vme_slave_resource *, int *, long long unsigned int *, long long unsigned int *, dma_addr_t *, u32 *, u32 *); - int (*slave_set)(struct vme_slave_resource *, int, long long unsigned int, long long unsigned int, dma_addr_t, u32, u32); - int (*master_get)(struct vme_master_resource *, int *, long long unsigned int *, long long unsigned int *, u32 *, u32 *, u32 *); - int (*master_set)(struct vme_master_resource *, int, long long unsigned int, long long unsigned int, u32, u32, u32); - ssize_t (*master_read)(struct vme_master_resource *, void *, size_t, loff_t); - ssize_t (*master_write)(struct vme_master_resource *, void *, size_t, loff_t); - unsigned int (*master_rmw)(struct vme_master_resource *, unsigned int, unsigned int, unsigned int, loff_t); - int (*dma_list_add)(struct vme_dma_list *, struct vme_dma_attr *, struct vme_dma_attr *, size_t); - int (*dma_list_exec)(struct vme_dma_list *); - int (*dma_list_empty)(struct vme_dma_list *); - void (*irq_set)(struct vme_bridge *, int, int, int); - int (*irq_generate)(struct vme_bridge *, int, int); - int (*lm_set)(struct vme_lm_resource *, long long unsigned int, u32, u32); - int (*lm_get)(struct vme_lm_resource *, long long unsigned int *, u32 *, u32 *); - int (*lm_attach)(struct vme_lm_resource *, int, void (*)(void *), void *); - int (*lm_detach)(struct vme_lm_resource *, int); - int (*slot_get)(struct vme_bridge *); - void * (*alloc_consistent)(struct device *, size_t, dma_addr_t *); - void (*free_consistent)(struct device *, size_t, void *, dma_addr_t); -}; - -struct vme_driver { - const char *name; - int (*match)(struct vme_dev *); - int (*probe)(struct vme_dev *); - void (*remove)(struct vme_dev *); - struct device_driver driver; - struct list_head devices; -}; - -struct vme_master_resource { - struct list_head list; - struct vme_bridge *parent; - spinlock_t lock; - int locked; - int number; - u32 address_attr; - u32 cycle_attr; - u32 width_attr; - struct resource bus_resource; - void *kern_base; -}; - -struct vme_slave_resource { - struct list_head list; - struct vme_bridge *parent; - struct mutex mtx; - int locked; - int number; - u32 address_attr; - u32 cycle_attr; -}; - -struct vme_dma_pattern { - u32 pattern; - u32 type; -}; - -struct vme_dma_pci { - dma_addr_t address; -}; - -struct vme_dma_vme { - long long unsigned int address; - u32 aspace; - u32 cycle; - u32 dwidth; -}; - -struct vme_dma_resource; - -struct vme_dma_list { - struct list_head list; - struct vme_dma_resource *parent; - struct list_head entries; - struct mutex mtx; -}; - -struct vme_dma_resource { - struct list_head list; - struct vme_bridge *parent; - struct mutex mtx; - int locked; - int number; - struct list_head pending; - struct list_head running; - u32 route_attr; -}; - -struct vme_lm_resource { - struct list_head list; - struct vme_bridge *parent; - struct mutex mtx; - int locked; - int number; - int monitors; -}; - -struct vme_error_handler { - struct list_head list; - long long unsigned int start; - long long unsigned int end; - long long unsigned int first_error; - u32 aspace; - unsigned int num_errors; -}; - -struct intel_scu_ipc_dev { - struct device dev; - struct module *owner; - void *ipc_base; - struct completion cmd_complete; - struct intel_scu_ipc_data data; -}; - -struct intel_scu_ipc_devres { - struct intel_scu_ipc_dev *scu; -}; - -struct tdx_report_req { - __u8 reportdata[64]; - __u8 tdreport[1024]; -}; - -enum { - TDREPORT_reportdata = 128, - TDREPORT_tee_tcb_info = 256, - TDREPORT_tdinfo = 512, - TDREPORT_attributes = 512, - TDREPORT_xfam = 520, - TDREPORT_mrtd = 528, - TDREPORT_mrconfigid = 576, - TDREPORT_mrowner = 624, - TDREPORT_mrownerconfig = 672, - TDREPORT_rtmr0 = 720, - TDREPORT_rtmr1 = 768, - TDREPORT_rtmr2 = 816, - TDREPORT_rtmr3 = 864, - TDREPORT_servtd_hash = 912, -}; - -struct tdx_quote_buf { - u64 version; - u64 status; - u32 in_len; - u32 out_len; - u8 data[0]; -}; - -struct vmbus_device { - size_t pref_ring_size; - u16 dev_type; - guid_t guid; - bool perf_device; - bool allowed_in_isolated; -}; - -enum vmbus_message_handler_type { - VMHT_BLOCKING = 0, - VMHT_NON_BLOCKING = 1, -}; - -struct vmbus_channel_message_table_entry { - enum vmbus_channel_message_type message_type; - enum vmbus_message_handler_type handler_type; - void (*message_handler)(struct vmbus_channel_message_header *); - u32 min_payload_len; -}; - -struct vmbus_dynid { - struct list_head node; - struct hv_vmbus_device_id id; -}; - -struct onmessage_work_context { - struct work_struct work; - struct { - struct hv_message_header header; - u8 payload[0]; - } msg; -}; - -struct vmbus_chan_attribute { - struct attribute attr; - ssize_t (*show)(struct vmbus_channel *, char *); - ssize_t (*store)(struct vmbus_channel *, const char *, size_t); -}; - -enum vmbus_device_type { - HV_IDE = 0, - HV_SCSI = 1, - HV_FC = 2, - HV_NIC = 3, - HV_ND = 4, - HV_PCIE = 5, - HV_FB = 6, - HV_KBD = 7, - HV_MOUSE = 8, - HV_KVP = 9, - HV_TS = 10, - HV_HB = 11, - HV_SHUTDOWN = 12, - HV_FCOPY = 13, - HV_BACKUP = 14, - HV_DM = 15, - HV_AZURE_BLOB = 16, - HV_UNKNOWN = 17, -}; - -struct icmsg_negotiate { - u16 icframe_vercnt; - u16 icmsg_vercnt; - u32 reserved; - struct ic_version icversion_data[0]; -}; - -enum hv_kvp_exchg_op { - KVP_OP_GET = 0, - KVP_OP_SET = 1, - KVP_OP_DELETE = 2, - KVP_OP_ENUMERATE = 3, - KVP_OP_GET_IP_INFO = 4, - KVP_OP_SET_IP_INFO = 5, - KVP_OP_COUNT = 6, -}; - -struct hv_kvp_ipaddr_value { - __u16 adapter_id[128]; - __u8 addr_family; - __u8 dhcp_enabled; - __u16 ip_addr[1024]; - __u16 sub_net[1024]; - __u16 gate_way[512]; - __u16 dns_addr[1024]; -}; - -struct hv_kvp_hdr { - __u8 operation; - __u8 pool; - __u16 pad; -}; - -struct hv_kvp_exchg_msg_value { - __u32 value_type; - __u32 key_size; - __u32 value_size; - __u8 key[512]; - union { - __u8 value[2048]; - __u32 value_u32; - __u64 value_u64; - }; -} __attribute__((packed)); - -struct hv_kvp_msg_enumerate { - __u32 index; - struct hv_kvp_exchg_msg_value data; -}; - -struct hv_kvp_msg_get { - struct hv_kvp_exchg_msg_value data; -}; - -struct hv_kvp_msg_set { - struct hv_kvp_exchg_msg_value data; -}; - -struct hv_kvp_msg_delete { - __u32 key_size; - __u8 key[512]; -}; - -struct hv_kvp_register { - __u8 version[512]; -}; - -struct hv_kvp_msg { - union { - struct hv_kvp_hdr kvp_hdr; - int error; - }; - union { - struct hv_kvp_msg_get kvp_get; - struct hv_kvp_msg_set kvp_set; - struct hv_kvp_msg_delete kvp_delete; - struct hv_kvp_msg_enumerate kvp_enum_data; - struct hv_kvp_ipaddr_value kvp_ip_val; - struct hv_kvp_register kvp_register; - } body; -}; - -struct hv_kvp_ip_msg { - __u8 operation; - __u8 pool; - struct hv_kvp_ipaddr_value kvp_ip_val; -}; - -enum { - NEGO_NOT_STARTED = 0, - NEGO_IN_PROGRESS = 1, - NEGO_FINISHED = 2, -}; - -struct hv_output_get_partition_id { - u64 partition_id; -}; - -struct hv_status_info { - char *string; - int errno; - u16 code; -}; - -struct devfreq_event_desc; - -struct devfreq_event_dev { - struct list_head node; - struct device dev; - struct mutex lock; - u32 enable_count; - const struct devfreq_event_desc *desc; -}; - -struct devfreq_event_ops; - -struct devfreq_event_desc { - const char *name; - u32 event_type; - void *driver_data; - const struct devfreq_event_ops *ops; -}; - -struct devfreq_event_data { - long unsigned int load_count; - long unsigned int total_count; -}; - -struct devfreq_event_ops { - int (*enable)(struct devfreq_event_dev *); - int (*disable)(struct devfreq_event_dev *); - int (*reset)(struct devfreq_event_dev *); - int (*set_event)(struct devfreq_event_dev *); - int (*get_event)(struct devfreq_event_dev *, struct devfreq_event_data *); -}; - -union extcon_property_value { - int intval; -}; - -struct extcon_cable { - struct extcon_dev *edev; - int cable_index; - struct attribute_group attr_g; - struct device_attribute attr_name; - struct device_attribute attr_state; - struct attribute *attrs[3]; - union extcon_property_value usb_propval[3]; - union extcon_property_value chg_propval[1]; - union extcon_property_value jack_propval[1]; - union extcon_property_value disp_propval[2]; - long unsigned int usb_bits[1]; - long unsigned int chg_bits[1]; - long unsigned int jack_bits[1]; - long unsigned int disp_bits[1]; -}; - -struct __extcon_info { - unsigned int type; - unsigned int id; - const char *name; -}; - -struct icc_node; - -struct icc_req { - struct hlist_node req_node; - struct icc_node *node; - struct device *dev; - bool enabled; - u32 tag; - u32 avg_bw; - u32 peak_bw; -}; - -struct icc_path { - const char *name; - size_t num_nodes; - struct icc_req reqs[0]; -}; - -struct icc_node_data { - struct icc_node *node; - u32 tag; -}; - -struct icc_provider; - -struct icc_node { - int id; - const char *name; - struct icc_node **links; - size_t num_links; - struct icc_provider *provider; - struct list_head node_list; - struct list_head search_list; - struct icc_node *reverse; - u8 is_traversed: 1; - struct hlist_head req_list; - u32 avg_bw; - u32 peak_bw; - u32 init_avg; - u32 init_peak; - void *data; -}; - -struct icc_onecell_data { - unsigned int num_nodes; - struct icc_node *nodes[0]; -}; - -struct icc_provider { - struct list_head provider_list; - struct list_head nodes; - int (*set)(struct icc_node *, struct icc_node *); - int (*aggregate)(struct icc_node *, u32, u32, u32, u32 *, u32 *); - void (*pre_aggregate)(struct icc_node *); - int (*get_bw)(struct icc_node *, u32 *, u32 *); - struct icc_node * (*xlate)(const struct of_phandle_args *, void *); - struct icc_node_data * (*xlate_extended)(const struct of_phandle_args *, void *); - struct device *dev; - int users; - bool inter_set; - void *data; -}; - -struct trace_event_raw_icc_set_bw { - struct trace_entry ent; - u32 __data_loc_path_name; - u32 __data_loc_dev; - u32 __data_loc_node_name; - u32 avg_bw; - u32 peak_bw; - u32 node_avg_bw; - u32 node_peak_bw; - char __data[0]; -}; - -struct trace_event_raw_icc_set_bw_end { - struct trace_entry ent; - u32 __data_loc_path_name; - u32 __data_loc_dev; - int ret; - char __data[0]; -}; - -struct trace_event_data_offsets_icc_set_bw { - u32 path_name; - const void *path_name_ptr_; - u32 dev; - const void *dev_ptr_; - u32 node_name; - const void *node_name_ptr_; -}; - -struct trace_event_data_offsets_icc_set_bw_end { - u32 path_name; - const void *path_name_ptr_; - u32 dev; - const void *dev_ptr_; -}; - -typedef void (*btf_trace_icc_set_bw)(void *, struct icc_path *, struct icc_node *, int, u32, u32); - -typedef void (*btf_trace_icc_set_bw_end)(void *, struct icc_path *, int); - -enum { - DPLL_NLGRP_MONITOR = 0, -}; - -struct mmsghdr { - struct user_msghdr msg_hdr; - unsigned int msg_len; -}; - -struct compat_if_settings { - unsigned int type; - unsigned int size; - compat_uptr_t ifs_ifsu; -}; - -struct compat_ifreq { - union { - char ifrn_name[16]; - } ifr_ifrn; - union { - struct sockaddr ifru_addr; - struct sockaddr ifru_dstaddr; - struct sockaddr ifru_broadaddr; - struct sockaddr ifru_netmask; - struct sockaddr ifru_hwaddr; - short int ifru_flags; - compat_int_t ifru_ivalue; - compat_int_t ifru_mtu; - struct compat_ifmap ifru_map; - char ifru_slave[16]; - char ifru_newname[16]; - compat_caddr_t ifru_data; - struct compat_if_settings ifru_settings; - } ifr_ifru; -}; - -struct compat_mmsghdr { - struct compat_msghdr msg_hdr; - compat_uint_t msg_len; -}; - -struct scm_ts_pktinfo { - __u32 if_index; - __u32 pkt_length; - __u32 reserved[2]; -}; - -struct used_address { - struct __kernel_sockaddr_storage name; - unsigned int name_len; -}; - -enum { - TCA_STATS_UNSPEC = 0, - TCA_STATS_BASIC = 1, - TCA_STATS_RATE_EST = 2, - TCA_STATS_QUEUE = 3, - TCA_STATS_APP = 4, - TCA_STATS_RATE_EST64 = 5, - TCA_STATS_PAD = 6, - TCA_STATS_BASIC_HW = 7, - TCA_STATS_PKT64 = 8, - __TCA_STATS_MAX = 9, -}; - -struct gnet_stats_basic { - __u64 bytes; - __u32 packets; -}; - -struct gnet_stats_rate_est { - __u32 bps; - __u32 pps; -}; - -struct ifbond { - __s32 bond_mode; - __s32 num_slaves; - __s32 miimon; -}; - -typedef struct ifbond ifbond; - -struct ifslave { - __s32 slave_id; - char slave_name[16]; - __s8 link; - __s8 state; - __u32 link_failure_count; -}; - -typedef struct ifslave ifslave; - -struct net_device_path_stack { - int num_paths; - struct net_device_path path[5]; -}; - -struct bpf_xdp_link { - struct bpf_link link; - struct net_device *dev; - int flags; -}; - -struct netdev_net_notifier { - struct list_head list; - struct notifier_block *nb; -}; - -struct netdev_notifier_changelowerstate_info { - struct netdev_notifier_info info; - void *lower_state_info; -}; - -struct netdev_notifier_pre_changeaddr_info { - struct netdev_notifier_info info; - const unsigned char *dev_addr; -}; - -struct netdev_notifier_offload_xstats_rd { - struct rtnl_hw_stats64 stats; - bool used; -}; - -struct netdev_notifier_offload_xstats_ru { - bool used; -}; - -struct netdev_notifier_offload_xstats_info { - struct netdev_notifier_info info; - enum netdev_offload_xstats_type type; - union { - struct netdev_notifier_offload_xstats_rd *report_delta; - struct netdev_notifier_offload_xstats_ru *report_used; - }; -}; - -enum { - NESTED_SYNC_IMM_BIT = 0, - NESTED_SYNC_TODO_BIT = 1, -}; - -struct netdev_nested_priv { - unsigned char flags; - void *data; -}; - -struct netdev_bonding_info { - ifslave slave; - ifbond master; -}; - -struct netdev_notifier_bonding_info { - struct netdev_notifier_info info; - struct netdev_bonding_info bonding_info; -}; - -typedef int (*bpf_op_t)(struct net_device *, struct netdev_bpf *); - -struct dev_kfree_skb_cb { - enum skb_drop_reason reason; -}; - -struct flush_backlogs { - cpumask_t flush_cpus; - struct work_struct w[0]; -}; - -enum { - NAPI_F_PREFER_BUSY_POLL = 1, - NAPI_F_END_ON_RESCHED = 2, -}; - -struct netdev_adjacent { - struct net_device *dev; - netdevice_tracker dev_tracker; - bool master; - bool ignore; - u16 ref_nr; - void *private; - struct list_head list; - struct callback_head rcu; -}; - -struct sock_diag_req { - __u8 sdiag_family; - __u8 sdiag_protocol; -}; - -struct sock_diag_handler { - struct module *owner; - __u8 family; - int (*dump)(struct sk_buff *, struct nlmsghdr *); - int (*get_info)(struct sk_buff *, struct sock *); - int (*destroy)(struct sk_buff *, struct nlmsghdr *); -}; - -struct sock_diag_inet_compat { - struct module *owner; - int (*fn)(struct sk_buff *, struct nlmsghdr *); -}; - -struct broadcast_sk { - struct sock *sk; - struct work_struct work; -}; - -struct netdev_queue_attribute { - struct attribute attr; - ssize_t (*show)(struct kobject *, struct attribute *, struct netdev_queue *, char *); - ssize_t (*store)(struct kobject *, struct attribute *, struct netdev_queue *, const char *, size_t); -}; - -struct trace_event_raw_kfree_skb { - struct trace_entry ent; - void *skbaddr; - void *location; - void *rx_sk; - short unsigned int protocol; - enum skb_drop_reason reason; - char __data[0]; -}; - -struct trace_event_raw_consume_skb { - struct trace_entry ent; - void *skbaddr; - void *location; - char __data[0]; -}; - -struct trace_event_raw_skb_copy_datagram_iovec { - struct trace_entry ent; - const void *skbaddr; - int len; - char __data[0]; -}; - -struct trace_event_data_offsets_kfree_skb {}; - -struct trace_event_data_offsets_consume_skb {}; - -struct trace_event_data_offsets_skb_copy_datagram_iovec {}; - -typedef void (*btf_trace_kfree_skb)(void *, struct sk_buff *, void *, enum skb_drop_reason, struct sock *); - -typedef void (*btf_trace_consume_skb)(void *, struct sk_buff *, void *); - -typedef void (*btf_trace_skb_copy_datagram_iovec)(void *, const struct sk_buff *, int); - -struct trace_event_raw_net_dev_start_xmit { - struct trace_entry ent; - u32 __data_loc_name; - u16 queue_mapping; - const void *skbaddr; - bool vlan_tagged; - u16 vlan_proto; - u16 vlan_tci; - u16 protocol; - u8 ip_summed; - unsigned int len; - unsigned int data_len; - int network_offset; - bool transport_offset_valid; - int transport_offset; - u8 tx_flags; - u16 gso_size; - u16 gso_segs; - u16 gso_type; - char __data[0]; -}; - -struct trace_event_raw_net_dev_xmit { - struct trace_entry ent; - void *skbaddr; - unsigned int len; - int rc; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_net_dev_xmit_timeout { - struct trace_entry ent; - u32 __data_loc_name; - u32 __data_loc_driver; - int queue_index; - char __data[0]; -}; - -struct trace_event_raw_net_dev_template { - struct trace_entry ent; - void *skbaddr; - unsigned int len; - u32 __data_loc_name; - char __data[0]; -}; - -struct trace_event_raw_net_dev_rx_verbose_template { - struct trace_entry ent; - u32 __data_loc_name; - unsigned int napi_id; - u16 queue_mapping; - const void *skbaddr; - bool vlan_tagged; - u16 vlan_proto; - u16 vlan_tci; - u16 protocol; - u8 ip_summed; - u32 hash; - bool l4_hash; - unsigned int len; - unsigned int data_len; - unsigned int truesize; - bool mac_header_valid; - int mac_header; - unsigned char nr_frags; - u16 gso_size; - u16 gso_type; - char __data[0]; -}; - -struct trace_event_raw_net_dev_rx_exit_template { - struct trace_entry ent; - int ret; - char __data[0]; -}; - -struct trace_event_data_offsets_net_dev_start_xmit { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_net_dev_xmit { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_net_dev_xmit_timeout { - u32 name; - const void *name_ptr_; - u32 driver; - const void *driver_ptr_; -}; - -struct trace_event_data_offsets_net_dev_template { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_net_dev_rx_verbose_template { - u32 name; - const void *name_ptr_; -}; - -struct trace_event_data_offsets_net_dev_rx_exit_template {}; - -typedef void (*btf_trace_net_dev_start_xmit)(void *, const struct sk_buff *, const struct net_device *); - -typedef void (*btf_trace_net_dev_xmit)(void *, struct sk_buff *, int, struct net_device *, unsigned int); - -typedef void (*btf_trace_net_dev_xmit_timeout)(void *, struct net_device *, int); - -typedef void (*btf_trace_net_dev_queue)(void *, struct sk_buff *); - -typedef void (*btf_trace_netif_receive_skb)(void *, struct sk_buff *); - -typedef void (*btf_trace_netif_rx)(void *, struct sk_buff *); - -typedef void (*btf_trace_napi_gro_frags_entry)(void *, const struct sk_buff *); - -typedef void (*btf_trace_napi_gro_receive_entry)(void *, const struct sk_buff *); - -typedef void (*btf_trace_netif_receive_skb_entry)(void *, const struct sk_buff *); - -typedef void (*btf_trace_netif_receive_skb_list_entry)(void *, const struct sk_buff *); - -typedef void (*btf_trace_netif_rx_entry)(void *, const struct sk_buff *); - -typedef void (*btf_trace_napi_gro_frags_exit)(void *, int); - -typedef void (*btf_trace_napi_gro_receive_exit)(void *, int); - -typedef void (*btf_trace_netif_receive_skb_exit)(void *, int); - -typedef void (*btf_trace_netif_rx_exit)(void *, int); - -typedef void (*btf_trace_netif_receive_skb_list_exit)(void *, int); - -struct trace_event_raw_napi_poll { - struct trace_entry ent; - struct napi_struct *napi; - u32 __data_loc_dev_name; - int work; - int budget; - char __data[0]; -}; - -struct trace_event_raw_dql_stall_detected { - struct trace_entry ent; - short unsigned int thrs; - unsigned int len; - long unsigned int last_reap; - long unsigned int hist_head; - long unsigned int now; - long unsigned int hist[4]; - char __data[0]; -}; - -struct trace_event_data_offsets_napi_poll { - u32 dev_name; - const void *dev_name_ptr_; -}; - -struct trace_event_data_offsets_dql_stall_detected {}; - -typedef void (*btf_trace_napi_poll)(void *, struct napi_struct *, int, int); - -typedef void (*btf_trace_dql_stall_detected)(void *, short unsigned int, unsigned int, long unsigned int, long unsigned int, long unsigned int, long unsigned int *); - -struct trace_event_raw_sock_rcvqueue_full { - struct trace_entry ent; - int rmem_alloc; - unsigned int truesize; - int sk_rcvbuf; - char __data[0]; -}; - -struct trace_event_raw_sock_exceed_buf_limit { - struct trace_entry ent; - char name[32]; - long int sysctl_mem[3]; - long int allocated; - int sysctl_rmem; - int rmem_alloc; - int sysctl_wmem; - int wmem_alloc; - int wmem_queued; - int kind; - char __data[0]; -}; - -struct trace_event_raw_inet_sock_set_state { - struct trace_entry ent; - const void *skaddr; - int oldstate; - int newstate; - __u16 sport; - __u16 dport; - __u16 family; - __u16 protocol; - __u8 saddr[4]; - __u8 daddr[4]; - __u8 saddr_v6[16]; - __u8 daddr_v6[16]; - char __data[0]; -}; - -struct trace_event_raw_inet_sk_error_report { - struct trace_entry ent; - int error; - __u16 sport; - __u16 dport; - __u16 family; - __u16 protocol; - __u8 saddr[4]; - __u8 daddr[4]; - __u8 saddr_v6[16]; - __u8 daddr_v6[16]; - char __data[0]; -}; - -struct trace_event_raw_sk_data_ready { - struct trace_entry ent; - const void *skaddr; - __u16 family; - __u16 protocol; - long unsigned int ip; - char __data[0]; -}; - -struct trace_event_raw_sock_msg_length { - struct trace_entry ent; - void *sk; - __u16 family; - __u16 protocol; - int ret; - int flags; - char __data[0]; -}; - -struct trace_event_data_offsets_sock_rcvqueue_full {}; - -struct trace_event_data_offsets_sock_exceed_buf_limit {}; - -struct trace_event_data_offsets_inet_sock_set_state {}; - -struct trace_event_data_offsets_inet_sk_error_report {}; - -struct trace_event_data_offsets_sk_data_ready {}; - -struct trace_event_data_offsets_sock_msg_length {}; - -typedef void (*btf_trace_sock_rcvqueue_full)(void *, struct sock *, struct sk_buff *); - -typedef void (*btf_trace_sock_exceed_buf_limit)(void *, struct sock *, struct proto *, long int, int); - -typedef void (*btf_trace_inet_sock_set_state)(void *, const struct sock *, const int, const int); - -typedef void (*btf_trace_inet_sk_error_report)(void *, const struct sock *); - -typedef void (*btf_trace_sk_data_ready)(void *, const struct sock *); - -typedef void (*btf_trace_sock_send_length)(void *, struct sock *, int, int); - -typedef void (*btf_trace_sock_recv_length)(void *, struct sock *, int, int); - -struct trace_event_raw_udp_fail_queue_rcv_skb { - struct trace_entry ent; - int rc; - __u16 sport; - __u16 dport; - __u16 family; - __u8 saddr[28]; - __u8 daddr[28]; - char __data[0]; -}; - -struct trace_event_data_offsets_udp_fail_queue_rcv_skb {}; - -typedef void (*btf_trace_udp_fail_queue_rcv_skb)(void *, int, struct sock *, struct sk_buff *); - -struct trace_event_raw_tcp_retransmit_skb { - struct trace_entry ent; - const void *skbaddr; - const void *skaddr; - int state; - __u16 sport; - __u16 dport; - __u16 family; - __u8 saddr[4]; - __u8 daddr[4]; - __u8 saddr_v6[16]; - __u8 daddr_v6[16]; - int err; - char __data[0]; -}; - -struct trace_event_raw_tcp_send_reset { - struct trace_entry ent; - const void *skbaddr; - const void *skaddr; - int state; - enum sk_rst_reason reason; - __u8 saddr[28]; - __u8 daddr[28]; - char __data[0]; -}; - -struct trace_event_raw_tcp_event_sk { - struct trace_entry ent; - const void *skaddr; - __u16 sport; - __u16 dport; - __u16 family; - __u8 saddr[4]; - __u8 daddr[4]; - __u8 saddr_v6[16]; - __u8 daddr_v6[16]; - __u64 sock_cookie; - char __data[0]; -}; - -struct trace_event_raw_tcp_rcvbuf_grow { - struct trace_entry ent; - int time; - __u32 rtt_us; - __u32 copied; - __u32 inq; - __u32 space; - __u32 ooo_space; - __u32 rcvbuf; - __u8 scaling_ratio; - __u16 sport; - __u16 dport; - __u16 family; - __u8 saddr[4]; - __u8 daddr[4]; - __u8 saddr_v6[16]; - __u8 daddr_v6[16]; - const void *skaddr; - __u64 sock_cookie; - char __data[0]; -}; - -struct trace_event_raw_tcp_retransmit_synack { - struct trace_entry ent; - const void *skaddr; - const void *req; - __u16 sport; - __u16 dport; - __u16 family; - __u8 saddr[4]; - __u8 daddr[4]; - __u8 saddr_v6[16]; - __u8 daddr_v6[16]; - char __data[0]; -}; - -struct trace_event_raw_tcp_sendmsg_locked { - struct trace_entry ent; - const void *skb_addr; - int skb_len; - int msg_left; - int size_goal; - char __data[0]; -}; - -struct trace_event_raw_tcp_probe { - struct trace_entry ent; - __u8 saddr[28]; - __u8 daddr[28]; - __u16 sport; - __u16 dport; - __u16 family; - __u32 mark; - __u16 data_len; - __u32 snd_nxt; - __u32 snd_una; - __u32 snd_cwnd; - __u32 ssthresh; - __u32 snd_wnd; - __u32 srtt; - __u32 rcv_wnd; - __u64 sock_cookie; - const void *skbaddr; - const void *skaddr; - char __data[0]; -}; - -struct trace_event_raw_tcp_event_skb { - struct trace_entry ent; - const void *skbaddr; - __u8 saddr[28]; - __u8 daddr[28]; - char __data[0]; -}; - -struct trace_event_raw_tcp_cong_state_set { - struct trace_entry ent; - const void *skaddr; - __u16 sport; - __u16 dport; - __u16 family; - __u8 saddr[4]; - __u8 daddr[4]; - __u8 saddr_v6[16]; - __u8 daddr_v6[16]; - __u8 cong_state; - char __data[0]; -}; - -struct trace_event_raw_tcp_hash_event { - struct trace_entry ent; - __u64 net_cookie; - const void *skbaddr; - const void *skaddr; - int state; - __u8 saddr[28]; - __u8 daddr[28]; - int l3index; - __u16 sport; - __u16 dport; - __u16 family; - bool fin; - bool syn; - bool rst; - bool psh; - bool ack; - char __data[0]; -}; - -struct trace_event_raw_tcp_ao_event { - struct trace_entry ent; - __u64 net_cookie; - const void *skbaddr; - const void *skaddr; - int state; - __u8 saddr[28]; - __u8 daddr[28]; - int l3index; - __u16 sport; - __u16 dport; - __u16 family; - bool fin; - bool syn; - bool rst; - bool psh; - bool ack; - __u8 keyid; - __u8 rnext; - __u8 maclen; - char __data[0]; -}; - -struct trace_event_raw_tcp_ao_event_sk { - struct trace_entry ent; - __u64 net_cookie; - const void *skaddr; - int state; - __u8 saddr[28]; - __u8 daddr[28]; - __u16 sport; - __u16 dport; - __u16 family; - __u8 keyid; - __u8 rnext; - char __data[0]; -}; - -struct trace_event_raw_tcp_ao_event_sne { - struct trace_entry ent; - __u64 net_cookie; - const void *skaddr; - int state; - __u8 saddr[28]; - __u8 daddr[28]; - __u16 sport; - __u16 dport; - __u16 family; - __u32 new_sne; - char __data[0]; -}; - -struct trace_event_data_offsets_tcp_retransmit_skb {}; - -struct trace_event_data_offsets_tcp_send_reset {}; - -struct trace_event_data_offsets_tcp_event_sk {}; - -struct trace_event_data_offsets_tcp_rcvbuf_grow {}; - -struct trace_event_data_offsets_tcp_retransmit_synack {}; - -struct trace_event_data_offsets_tcp_sendmsg_locked {}; - -struct trace_event_data_offsets_tcp_probe {}; - -struct trace_event_data_offsets_tcp_event_skb {}; - -struct trace_event_data_offsets_tcp_cong_state_set {}; - -struct trace_event_data_offsets_tcp_hash_event {}; - -struct trace_event_data_offsets_tcp_ao_event {}; - -struct trace_event_data_offsets_tcp_ao_event_sk {}; - -struct trace_event_data_offsets_tcp_ao_event_sne {}; - -typedef void (*btf_trace_tcp_retransmit_skb)(void *, const struct sock *, const struct sk_buff *, int); - -typedef void (*btf_trace_tcp_send_reset)(void *, const struct sock *, const struct sk_buff *, const enum sk_rst_reason); - -typedef void (*btf_trace_tcp_receive_reset)(void *, struct sock *); - -typedef void (*btf_trace_tcp_destroy_sock)(void *, struct sock *); - -typedef void (*btf_trace_tcp_rcv_space_adjust)(void *, struct sock *); - -typedef void (*btf_trace_tcp_rcvbuf_grow)(void *, struct sock *, int); - -typedef void (*btf_trace_tcp_retransmit_synack)(void *, const struct sock *, const struct request_sock *); - -typedef void (*btf_trace_tcp_sendmsg_locked)(void *, const struct sock *, const struct msghdr *, const struct sk_buff *, int); - -typedef void (*btf_trace_tcp_cwnd_reduction_tp)(void *, const struct sock *, int, int, int); - -typedef void (*btf_trace_tcp_probe)(void *, struct sock *, const struct sk_buff *); - -typedef void (*btf_trace_tcp_bad_csum)(void *, const struct sk_buff *); - -typedef void (*btf_trace_tcp_cong_state_set)(void *, struct sock *, const u8); - -typedef void (*btf_trace_tcp_hash_bad_header)(void *, const struct sock *, const struct sk_buff *); - -typedef void (*btf_trace_tcp_hash_md5_required)(void *, const struct sock *, const struct sk_buff *); - -typedef void (*btf_trace_tcp_hash_md5_unexpected)(void *, const struct sock *, const struct sk_buff *); - -typedef void (*btf_trace_tcp_hash_md5_mismatch)(void *, const struct sock *, const struct sk_buff *); - -typedef void (*btf_trace_tcp_hash_ao_required)(void *, const struct sock *, const struct sk_buff *); - -typedef void (*btf_trace_tcp_ao_handshake_failure)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); - -typedef void (*btf_trace_tcp_ao_wrong_maclen)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); - -typedef void (*btf_trace_tcp_ao_mismatch)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); - -typedef void (*btf_trace_tcp_ao_key_not_found)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); - -typedef void (*btf_trace_tcp_ao_rnext_request)(void *, const struct sock *, const struct sk_buff *, const __u8, const __u8, const __u8); - -typedef void (*btf_trace_tcp_ao_synack_no_key)(void *, const struct sock *, const __u8, const __u8); - -typedef void (*btf_trace_tcp_ao_snd_sne_update)(void *, const struct sock *, __u32); - -typedef void (*btf_trace_tcp_ao_rcv_sne_update)(void *, const struct sock *, __u32); - -struct trace_event_raw_fib_table_lookup { - struct trace_entry ent; - u32 tb_id; - int err; - int oif; - int iif; - u8 proto; - __u8 tos; - __u8 scope; - __u8 flags; - __u8 src[4]; - __u8 dst[4]; - __u8 gw4[4]; - __u8 gw6[16]; - u16 sport; - u16 dport; - char name[16]; - char __data[0]; -}; - -struct trace_event_data_offsets_fib_table_lookup {}; - -typedef void (*btf_trace_fib_table_lookup)(void *, u32, const struct flowi4 *, const struct fib_nh_common *, int); - -struct trace_event_raw_qdisc_dequeue { - struct trace_entry ent; - struct Qdisc *qdisc; - const struct netdev_queue *txq; - int packets; - void *skbaddr; - int ifindex; - u32 handle; - u32 parent; - long unsigned int txq_state; - char __data[0]; -}; - -struct trace_event_raw_qdisc_enqueue { - struct trace_entry ent; - struct Qdisc *qdisc; - const struct netdev_queue *txq; - void *skbaddr; - int ifindex; - u32 handle; - u32 parent; - char __data[0]; -}; - -struct trace_event_raw_qdisc_reset { - struct trace_entry ent; - u32 __data_loc_dev; - u32 __data_loc_kind; - u32 parent; - u32 handle; - char __data[0]; -}; - -struct trace_event_raw_qdisc_destroy { - struct trace_entry ent; - u32 __data_loc_dev; - u32 __data_loc_kind; - u32 parent; - u32 handle; - char __data[0]; -}; - -struct trace_event_raw_qdisc_create { - struct trace_entry ent; - u32 __data_loc_dev; - u32 __data_loc_kind; - u32 parent; - char __data[0]; -}; - -struct trace_event_data_offsets_qdisc_dequeue {}; - -struct trace_event_data_offsets_qdisc_enqueue {}; - -struct trace_event_data_offsets_qdisc_reset { - u32 dev; - const void *dev_ptr_; - u32 kind; - const void *kind_ptr_; -}; - -struct trace_event_data_offsets_qdisc_destroy { - u32 dev; - const void *dev_ptr_; - u32 kind; - const void *kind_ptr_; -}; - -struct trace_event_data_offsets_qdisc_create { - u32 dev; - const void *dev_ptr_; - u32 kind; - const void *kind_ptr_; -}; - -typedef void (*btf_trace_qdisc_dequeue)(void *, struct Qdisc *, const struct netdev_queue *, int, struct sk_buff *); - -typedef void (*btf_trace_qdisc_enqueue)(void *, struct Qdisc *, const struct netdev_queue *, struct sk_buff *); - -typedef void (*btf_trace_qdisc_reset)(void *, struct Qdisc *); - -typedef void (*btf_trace_qdisc_destroy)(void *, struct Qdisc *); - -typedef void (*btf_trace_qdisc_create)(void *, const struct Qdisc_ops *, struct net_device *, u32); - -struct bridge_stp_xstats { - __u64 transition_blk; - __u64 transition_fwd; - __u64 rx_bpdu; - __u64 tx_bpdu; - __u64 rx_tcn; - __u64 tx_tcn; -}; - -struct br_mcast_stats { - __u64 igmp_v1queries[2]; - __u64 igmp_v2queries[2]; - __u64 igmp_v3queries[2]; - __u64 igmp_leaves[2]; - __u64 igmp_v1reports[2]; - __u64 igmp_v2reports[2]; - __u64 igmp_v3reports[2]; - __u64 igmp_parse_errors; - __u64 mld_v1queries[2]; - __u64 mld_v2queries[2]; - __u64 mld_leaves[2]; - __u64 mld_v1reports[2]; - __u64 mld_v2reports[2]; - __u64 mld_parse_errors; - __u64 mcast_bytes[2]; - __u64 mcast_packets[2]; -}; - -struct br_ip { - union { - __be32 ip4; - struct in6_addr ip6; - } src; - union { - __be32 ip4; - struct in6_addr ip6; - unsigned char mac_addr[6]; - } dst; - __be16 proto; - __u16 vid; -}; - -struct bridge_id { - unsigned char prio[2]; - unsigned char addr[6]; -}; - -typedef struct bridge_id bridge_id; - -struct mac_addr { - unsigned char addr[6]; -}; - -typedef struct mac_addr mac_addr; - -typedef __u16 port_id; - -struct bridge_mcast_own_query { - struct timer_list timer; - u32 startup_sent; -}; - -struct bridge_mcast_other_query { - struct timer_list timer; - struct timer_list delay_timer; -}; - -struct bridge_mcast_querier { - struct br_ip addr; - int port_ifidx; - seqcount_spinlock_t seq; -}; - -struct bridge_mcast_stats { - struct br_mcast_stats mstats; - struct u64_stats_sync syncp; -}; - -struct net_bridge; - -struct net_bridge_vlan; - -struct net_bridge_mcast { - struct net_bridge *br; - struct net_bridge_vlan *vlan; - u32 multicast_last_member_count; - u32 multicast_startup_query_count; - u8 multicast_querier; - u8 multicast_igmp_version; - u8 multicast_router; - u8 multicast_mld_version; - long unsigned int multicast_last_member_interval; - long unsigned int multicast_membership_interval; - long unsigned int multicast_querier_interval; - long unsigned int multicast_query_interval; - long unsigned int multicast_query_response_interval; - long unsigned int multicast_startup_query_interval; - struct hlist_head ip4_mc_router_list; - struct timer_list ip4_mc_router_timer; - struct bridge_mcast_other_query ip4_other_query; - struct bridge_mcast_own_query ip4_own_query; - struct bridge_mcast_querier ip4_querier; - struct hlist_head ip6_mc_router_list; - struct timer_list ip6_mc_router_timer; - struct bridge_mcast_other_query ip6_other_query; - struct bridge_mcast_own_query ip6_own_query; - struct bridge_mcast_querier ip6_querier; -}; - -struct net_bridge_vlan_group; - -struct net_bridge { - spinlock_t lock; - spinlock_t hash_lock; - struct hlist_head frame_type_list; - struct net_device *dev; - long unsigned int options; - __be16 vlan_proto; - u16 default_pvid; - struct net_bridge_vlan_group *vlgrp; - struct rhashtable fdb_hash_tbl; - struct list_head port_list; - union { - struct rtable fake_rtable; - struct rt6_info fake_rt6_info; - }; - u32 metrics[17]; - u16 group_fwd_mask; - u16 group_fwd_mask_required; - bridge_id designated_root; - bridge_id bridge_id; - unsigned char topology_change; - unsigned char topology_change_detected; - u16 root_port; - long unsigned int max_age; - long unsigned int hello_time; - long unsigned int forward_delay; - long unsigned int ageing_time; - long unsigned int bridge_max_age; - long unsigned int bridge_hello_time; - long unsigned int bridge_forward_delay; - long unsigned int bridge_ageing_time; - u32 root_path_cost; - u8 group_addr[6]; - enum { - BR_NO_STP = 0, - BR_KERNEL_STP = 1, - BR_USER_STP = 2, - } stp_enabled; - struct net_bridge_mcast multicast_ctx; - struct bridge_mcast_stats *mcast_stats; - u32 hash_max; - spinlock_t multicast_lock; - struct rhashtable mdb_hash_tbl; - struct rhashtable sg_port_tbl; - struct hlist_head mcast_gc_list; - struct hlist_head mdb_list; - struct work_struct mcast_gc_work; - struct timer_list hello_timer; - struct timer_list tcn_timer; - struct timer_list topology_change_timer; - struct delayed_work gc_work; - struct kobject *ifobj; - u32 auto_cnt; - atomic_t fdb_n_learned; - u32 fdb_max_learned; - int last_hwdom; - long unsigned int busy_hwdoms; - struct hlist_head fdb_list; - struct hlist_head mrp_list; - struct hlist_head mep_list; -}; - -struct net_bridge_port; - -struct net_bridge_mcast_port { - struct net_bridge_port *port; - struct net_bridge_vlan *vlan; - struct bridge_mcast_own_query ip4_own_query; - struct timer_list ip4_mc_router_timer; - struct hlist_node ip4_rlist; - struct bridge_mcast_own_query ip6_own_query; - struct timer_list ip6_mc_router_timer; - struct hlist_node ip6_rlist; - unsigned char multicast_router; - u32 mdb_n_entries; - u32 mdb_max_entries; -}; - -struct net_bridge_port { - struct net_bridge *br; - struct net_device *dev; - netdevice_tracker dev_tracker; - struct list_head list; - long unsigned int flags; - struct net_bridge_vlan_group *vlgrp; - struct net_bridge_port *backup_port; - u32 backup_nhid; - u8 priority; - u8 state; - u16 port_no; - unsigned char topology_change_ack; - unsigned char config_pending; - port_id port_id; - port_id designated_port; - bridge_id designated_root; - bridge_id designated_bridge; - u32 path_cost; - u32 designated_cost; - long unsigned int designated_age; - struct timer_list forward_delay_timer; - struct timer_list hold_timer; - struct timer_list message_age_timer; - struct kobject kobj; - struct callback_head rcu; - struct net_bridge_mcast_port multicast_ctx; - struct bridge_mcast_stats *mcast_stats; - u32 multicast_eht_hosts_limit; - u32 multicast_eht_hosts_cnt; - struct hlist_head mglist; - char sysfs_name[16]; - struct netpoll *np; - int hwdom; - int offload_count; - struct netdev_phys_item_id ppid; - u16 group_fwd_mask; - u16 backup_redirected_cnt; - struct bridge_stp_xstats stp_xstats; -}; - -struct br_tunnel_info { - __be64 tunnel_id; - struct metadata_dst *tunnel_dst; -}; - -struct net_bridge_vlan { - struct rhash_head vnode; - struct rhash_head tnode; - u16 vid; - u16 flags; - u16 priv_flags; - u8 state; - struct pcpu_sw_netstats *stats; - union { - struct net_bridge *br; - struct net_bridge_port *port; - }; - union { - refcount_t refcnt; - struct net_bridge_vlan *brvlan; - }; - struct br_tunnel_info tinfo; - union { - struct net_bridge_mcast br_mcast_ctx; - struct net_bridge_mcast_port port_mcast_ctx; - }; - u16 msti; - struct list_head vlist; - struct callback_head rcu; -}; - -struct net_bridge_vlan_group { - struct rhashtable vlan_hash; - struct rhashtable tunnel_hash; - struct list_head vlan_list; - u16 num_vlans; - u16 pvid; - u8 pvid_state; -}; - -struct net_bridge_fdb_key { - mac_addr addr; - u16 vlan_id; -}; - -struct net_bridge_fdb_entry { - struct rhash_head rhnode; - struct net_bridge_port *dst; - struct net_bridge_fdb_key key; - struct hlist_node fdb_node; - long unsigned int flags; - long: 64; - long: 64; - long unsigned int updated; - long unsigned int used; - struct callback_head rcu; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct trace_event_raw_br_fdb_add { - struct trace_entry ent; - u8 ndm_flags; - u32 __data_loc_dev; - unsigned char addr[6]; - u16 vid; - u16 nlh_flags; - char __data[0]; -}; - -struct trace_event_raw_br_fdb_external_learn_add { - struct trace_entry ent; - u32 __data_loc_br_dev; - u32 __data_loc_dev; - unsigned char addr[6]; - u16 vid; - char __data[0]; -}; - -struct trace_event_raw_fdb_delete { - struct trace_entry ent; - u32 __data_loc_br_dev; - u32 __data_loc_dev; - unsigned char addr[6]; - u16 vid; - char __data[0]; -}; - -struct trace_event_raw_br_fdb_update { - struct trace_entry ent; - u32 __data_loc_br_dev; - u32 __data_loc_dev; - unsigned char addr[6]; - u16 vid; - long unsigned int flags; - char __data[0]; -}; - -struct trace_event_raw_br_mdb_full { - struct trace_entry ent; - u32 __data_loc_dev; - int af; - u16 vid; - __u8 src[16]; - __u8 grp[16]; - __u8 grpmac[6]; - char __data[0]; -}; - -struct trace_event_data_offsets_br_fdb_add { - u32 dev; - const void *dev_ptr_; -}; - -struct trace_event_data_offsets_br_fdb_external_learn_add { - u32 br_dev; - const void *br_dev_ptr_; - u32 dev; - const void *dev_ptr_; -}; - -struct trace_event_data_offsets_fdb_delete { - u32 br_dev; - const void *br_dev_ptr_; - u32 dev; - const void *dev_ptr_; -}; - -struct trace_event_data_offsets_br_fdb_update { - u32 br_dev; - const void *br_dev_ptr_; - u32 dev; - const void *dev_ptr_; -}; - -struct trace_event_data_offsets_br_mdb_full { - u32 dev; - const void *dev_ptr_; -}; - -typedef void (*btf_trace_br_fdb_add)(void *, struct ndmsg *, struct net_device *, const unsigned char *, u16, u16); - -typedef void (*btf_trace_br_fdb_external_learn_add)(void *, struct net_bridge *, struct net_bridge_port *, const unsigned char *, u16); - -typedef void (*btf_trace_fdb_delete)(void *, struct net_bridge *, struct net_bridge_fdb_entry *); - -typedef void (*btf_trace_br_fdb_update)(void *, struct net_bridge *, struct net_bridge_port *, const unsigned char *, u16, long unsigned int); - -typedef void (*btf_trace_br_mdb_full)(void *, const struct net_device *, const struct br_ip *); - -struct trace_event_raw_page_pool_release { - struct trace_entry ent; - const struct page_pool *pool; - s32 inflight; - u32 hold; - u32 release; - u64 cnt; - char __data[0]; -}; - -struct trace_event_raw_page_pool_state_release { - struct trace_entry ent; - const struct page_pool *pool; - long unsigned int netmem; - u32 release; - long unsigned int pfn; - char __data[0]; -}; - -struct trace_event_raw_page_pool_state_hold { - struct trace_entry ent; - const struct page_pool *pool; - long unsigned int netmem; - u32 hold; - long unsigned int pfn; - char __data[0]; -}; - -struct trace_event_raw_page_pool_update_nid { - struct trace_entry ent; - const struct page_pool *pool; - int pool_nid; - int new_nid; - char __data[0]; -}; - -struct trace_event_data_offsets_page_pool_release {}; - -struct trace_event_data_offsets_page_pool_state_release {}; - -struct trace_event_data_offsets_page_pool_state_hold {}; - -struct trace_event_data_offsets_page_pool_update_nid {}; - -typedef void (*btf_trace_page_pool_release)(void *, const struct page_pool *, s32, u32, u32); - -typedef void (*btf_trace_page_pool_state_release)(void *, const struct page_pool *, netmem_ref, u32); - -typedef void (*btf_trace_page_pool_state_hold)(void *, const struct page_pool *, netmem_ref, u32); - -typedef void (*btf_trace_page_pool_update_nid)(void *, const struct page_pool *, int); - -struct trace_event_raw_neigh_create { - struct trace_entry ent; - u32 family; - u32 __data_loc_dev; - int entries; - u8 created; - u8 gc_exempt; - u8 primary_key4[4]; - u8 primary_key6[16]; - char __data[0]; -}; - -struct trace_event_raw_neigh_update { - struct trace_entry ent; - u32 family; - u32 __data_loc_dev; - u8 lladdr[32]; - u8 lladdr_len; - u8 flags; - u8 nud_state; - u8 type; - u8 dead; - int refcnt; - __u8 primary_key4[4]; - __u8 primary_key6[16]; - long unsigned int confirmed; - long unsigned int updated; - long unsigned int used; - u8 new_lladdr[32]; - u8 new_state; - u32 update_flags; - u32 pid; - char __data[0]; -}; - -struct trace_event_raw_neigh__update { - struct trace_entry ent; - u32 family; - u32 __data_loc_dev; - u8 lladdr[32]; - u8 lladdr_len; - u8 flags; - u8 nud_state; - u8 type; - u8 dead; - int refcnt; - __u8 primary_key4[4]; - __u8 primary_key6[16]; - long unsigned int confirmed; - long unsigned int updated; - long unsigned int used; - u32 err; - char __data[0]; -}; - -struct trace_event_data_offsets_neigh_create { - u32 dev; - const void *dev_ptr_; -}; - -struct trace_event_data_offsets_neigh_update { - u32 dev; - const void *dev_ptr_; -}; - -struct trace_event_data_offsets_neigh__update { - u32 dev; - const void *dev_ptr_; -}; - -typedef void (*btf_trace_neigh_create)(void *, struct neigh_table *, struct net_device *, const void *, const struct neighbour *, bool); - -typedef void (*btf_trace_neigh_update)(void *, struct neighbour *, const u8 *, u8, u32, u32); - -typedef void (*btf_trace_neigh_update_done)(void *, struct neighbour *, int); - -typedef void (*btf_trace_neigh_timer_handler)(void *, struct neighbour *, int); - -typedef void (*btf_trace_neigh_event_send_done)(void *, struct neighbour *, int); - -typedef void (*btf_trace_neigh_event_send_dead)(void *, struct neighbour *, int); - -typedef void (*btf_trace_neigh_cleanup_and_release)(void *, struct neighbour *, int); - -struct update_classid_context { - u32 classid; - unsigned int batch; -}; - -struct gro_cell { - struct sk_buff_head napi_skbs; - struct napi_struct napi; -}; - -struct percpu_free_defer { - struct callback_head rcu; - void *ptr; -}; - -struct compat_cmsghdr { - compat_size_t cmsg_len; - compat_int_t cmsg_level; - compat_int_t cmsg_type; -}; - -enum tc_mq_command { - TC_MQ_CREATE = 0, - TC_MQ_DESTROY = 1, - TC_MQ_STATS = 2, - TC_MQ_GRAFT = 3, -}; - -struct tc_mq_opt_offload_graft_params { - long unsigned int queue; - u32 child_handle; -}; - -struct tc_mq_qopt_offload { - enum tc_mq_command command; - u32 handle; - union { - struct tc_qopt_offload_stats stats; - struct tc_mq_opt_offload_graft_params graft_params; - }; -}; - -struct mq_sched { - struct Qdisc **qdiscs; -}; - -struct psample_group { - struct list_head list; - struct net *net; - u32 group_num; - u32 refcount; - u32 seq; - struct callback_head rcu; -}; - -struct action_gate_entry { - u8 gate_state; - u32 interval; - s32 ipv; - s32 maxoctets; -}; - -enum qdisc_class_ops_flags { - QDISC_CLASS_OPS_DOIT_UNLOCKED = 1, -}; - -enum tcf_proto_ops_flags { - TCF_PROTO_OPS_DOIT_UNLOCKED = 1, -}; - -typedef void tcf_chain_head_change_t(struct tcf_proto *, void *); - -struct tcf_block_ext_info { - enum flow_block_binder_type binder_type; - tcf_chain_head_change_t *chain_head_change; - void *chain_head_change_priv; - u32 block_index; -}; - -struct tcf_qevent { - struct tcf_block *block; - struct tcf_block_ext_info info; - struct tcf_proto *filter_chain; -}; - -struct tcf_exts_miss_cookie_node { - const struct tcf_chain *chain; - const struct tcf_proto *tp; - const struct tcf_exts *exts; - u32 chain_index; - u32 tp_prio; - u32 handle; - u32 miss_cookie_base; - struct callback_head rcu; -}; - -union tcf_exts_miss_cookie { - struct { - u32 miss_cookie_base; - u32 act_index; - }; - u64 miss_cookie; -}; - -struct tcf_filter_chain_list_item { - struct list_head list; - tcf_chain_head_change_t *chain_head_change; - void *chain_head_change_priv; -}; - -struct tcf_net { - spinlock_t idr_lock; - struct idr idr; -}; - -struct tcf_block_owner_item { - struct list_head list; - struct Qdisc *q; - enum flow_block_binder_type binder_type; -}; - -struct tcf_chain_info { - struct tcf_proto **pprev; - struct tcf_proto *next; -}; - -struct tcf_dump_args { - struct tcf_walker w; - struct sk_buff *skb; - struct netlink_callback *cb; - struct tcf_block *block; - struct Qdisc *q; - u32 parent; - bool terse_dump; -}; - -struct sockaddr_nl { - __kernel_sa_family_t nl_family; - short unsigned int nl_pad; - __u32 nl_pid; - __u32 nl_groups; -}; - -enum nlmsgerr_attrs { - NLMSGERR_ATTR_UNUSED = 0, - NLMSGERR_ATTR_MSG = 1, - NLMSGERR_ATTR_OFFS = 2, - NLMSGERR_ATTR_COOKIE = 3, - NLMSGERR_ATTR_POLICY = 4, - NLMSGERR_ATTR_MISS_TYPE = 5, - NLMSGERR_ATTR_MISS_NEST = 6, - __NLMSGERR_ATTR_MAX = 7, - NLMSGERR_ATTR_MAX = 6, -}; - -struct nl_pktinfo { - __u32 group; -}; - -enum { - NETLINK_UNCONNECTED = 0, - NETLINK_CONNECTED = 1, -}; - -enum netlink_skb_flags { - NETLINK_SKB_DST = 8, -}; - -struct netlink_notify { - struct net *net; - u32 portid; - int protocol; -}; - -struct netlink_tap { - struct net_device *dev; - struct module *module; - struct list_head list; -}; - -struct trace_event_raw_netlink_extack { - struct trace_entry ent; - u32 __data_loc_msg; - char __data[0]; -}; - -struct trace_event_data_offsets_netlink_extack { - u32 msg; - const void *msg_ptr_; -}; - -typedef void (*btf_trace_netlink_extack)(void *, const char *); - -enum { - NETLINK_F_KERNEL_SOCKET = 0, - NETLINK_F_RECV_PKTINFO = 1, - NETLINK_F_BROADCAST_SEND_ERROR = 2, - NETLINK_F_RECV_NO_ENOBUFS = 3, - NETLINK_F_LISTEN_ALL_NSID = 4, - NETLINK_F_CAP_ACK = 5, - NETLINK_F_EXT_ACK = 6, - NETLINK_F_STRICT_CHK = 7, -}; - -struct netlink_sock { - struct sock sk; - long unsigned int flags; - u32 portid; - u32 dst_portid; - u32 dst_group; - u32 subscriptions; - u32 ngroups; - long unsigned int *groups; - long unsigned int state; - size_t max_recvmsg_len; - wait_queue_head_t wait; - bool bound; - bool cb_running; - int dump_done_errno; - struct netlink_callback cb; - struct mutex nl_cb_mutex; - void (*netlink_rcv)(struct sk_buff *); - int (*netlink_bind)(struct net *, int); - void (*netlink_unbind)(struct net *, int); - void (*netlink_release)(struct sock *, long unsigned int *); - struct module *module; - struct rhash_head node; - struct callback_head rcu; -}; - -struct listeners; - -struct netlink_table { - struct rhashtable hash; - struct hlist_head mc_list; - struct listeners *listeners; - unsigned int flags; - unsigned int groups; - struct mutex *cb_mutex; - struct module *module; - int (*bind)(struct net *, int); - void (*unbind)(struct net *, int); - void (*release)(struct sock *, long unsigned int *); - int registered; -}; - -struct listeners { - struct callback_head rcu; - long unsigned int masks[0]; -}; - -struct netlink_tap_net { - struct list_head netlink_tap_all; - struct mutex netlink_tap_lock; -}; - -struct netlink_compare_arg { - possible_net_t pnet; - u32 portid; -}; - -struct netlink_broadcast_data { - struct sock *exclude_sk; - struct net *net; - u32 portid; - u32 group; - int failure; - int delivery_failure; - int congested; - int delivered; - gfp_t allocation; - struct sk_buff *skb; - struct sk_buff *skb2; - int (*tx_filter)(struct sock *, struct sk_buff *, void *); - void *tx_data; -}; - -struct netlink_set_err_data { - struct sock *exclude_sk; - u32 portid; - u32 group; - int code; -}; - -struct nl_seq_iter { - struct seq_net_private p; - struct rhashtable_iter hti; - int link; -}; - -struct bpf_iter__netlink { - union { - struct bpf_iter_meta *meta; - }; - union { - struct netlink_sock *sk; - }; -}; - -enum { - ETHTOOL_UDP_TUNNEL_TYPE_VXLAN = 0, - ETHTOOL_UDP_TUNNEL_TYPE_GENEVE = 1, - ETHTOOL_UDP_TUNNEL_TYPE_VXLAN_GPE = 2, - __ETHTOOL_UDP_TUNNEL_TYPE_CNT = 3, - ETHTOOL_UDP_TUNNEL_TYPE_MAX = 2, -}; - -struct ethtool_forced_speed_map { - u32 speed; - long unsigned int caps[2]; - const u32 *cap_arr; - u32 arr_size; -}; - -enum { - ETHTOOL_A_STRING_UNSPEC = 0, - ETHTOOL_A_STRING_INDEX = 1, - ETHTOOL_A_STRING_VALUE = 2, - __ETHTOOL_A_STRING_CNT = 3, - ETHTOOL_A_STRING_MAX = 2, -}; - -enum { - ETHTOOL_A_STRINGS_UNSPEC = 0, - ETHTOOL_A_STRINGS_STRING = 1, - __ETHTOOL_A_STRINGS_CNT = 2, - ETHTOOL_A_STRINGS_MAX = 1, -}; - -enum { - ETHTOOL_A_STRINGSET_UNSPEC = 0, - ETHTOOL_A_STRINGSET_ID = 1, - ETHTOOL_A_STRINGSET_COUNT = 2, - ETHTOOL_A_STRINGSET_STRINGS = 3, - __ETHTOOL_A_STRINGSET_CNT = 4, - ETHTOOL_A_STRINGSET_MAX = 3, -}; - -enum { - ETHTOOL_A_STRINGSETS_UNSPEC = 0, - ETHTOOL_A_STRINGSETS_STRINGSET = 1, - __ETHTOOL_A_STRINGSETS_CNT = 2, - ETHTOOL_A_STRINGSETS_MAX = 1, -}; - -struct strset_info { - bool per_dev; - bool free_strings; - unsigned int count; - const char (*strings)[32]; -}; - -struct strset_req_info { - struct ethnl_req_info base; - u32 req_ids; - bool counts_only; -}; - -struct strset_reply_data { - struct ethnl_reply_data base; - struct strset_info sets[23]; -}; - -enum { - ETHTOOL_A_FLOW_ETHER = 1, - ETHTOOL_A_FLOW_IP4 = 2, - ETHTOOL_A_FLOW_IP6 = 3, - ETHTOOL_A_FLOW_TCP4 = 4, - ETHTOOL_A_FLOW_TCP6 = 5, - ETHTOOL_A_FLOW_UDP4 = 6, - ETHTOOL_A_FLOW_UDP6 = 7, - ETHTOOL_A_FLOW_SCTP4 = 8, - ETHTOOL_A_FLOW_SCTP6 = 9, - ETHTOOL_A_FLOW_AH4 = 10, - ETHTOOL_A_FLOW_AH6 = 11, - ETHTOOL_A_FLOW_ESP4 = 12, - ETHTOOL_A_FLOW_ESP6 = 13, - ETHTOOL_A_FLOW_AH_ESP4 = 14, - ETHTOOL_A_FLOW_AH_ESP6 = 15, - ETHTOOL_A_FLOW_GTPU4 = 16, - ETHTOOL_A_FLOW_GTPU6 = 17, - ETHTOOL_A_FLOW_GTPC4 = 18, - ETHTOOL_A_FLOW_GTPC6 = 19, - ETHTOOL_A_FLOW_GTPC_TEID4 = 20, - ETHTOOL_A_FLOW_GTPC_TEID6 = 21, - ETHTOOL_A_FLOW_GTPU_EH4 = 22, - ETHTOOL_A_FLOW_GTPU_EH6 = 23, - ETHTOOL_A_FLOW_GTPU_UL4 = 24, - ETHTOOL_A_FLOW_GTPU_UL6 = 25, - ETHTOOL_A_FLOW_GTPU_DL4 = 26, - ETHTOOL_A_FLOW_GTPU_DL6 = 27, - __ETHTOOL_A_FLOW_CNT = 28, - ETHTOOL_A_FLOW_MAX = 27, -}; - -struct rss_req_info { - struct ethnl_req_info base; - u32 rss_context; -}; - -struct rss_reply_data { - struct ethnl_reply_data base; - bool has_flow_hash; - bool no_key_fields; - u32 indir_size; - u32 hkey_size; - u32 hfunc; - u32 input_xfrm; - u32 *indir_table; - u8 *hkey; - int flow_hash[28]; -}; - -struct rss_nl_dump_ctx { - long unsigned int ifindex; - long unsigned int ctx_idx; - unsigned int match_ifindex; - unsigned int start_ctx; -}; - -struct privflags_reply_data { - struct ethnl_reply_data base; - const char (*priv_flag_names)[32]; - unsigned int n_priv_flags; - u32 priv_flags; -}; - -enum { - ETHTOOL_A_PAUSE_STAT_UNSPEC = 0, - ETHTOOL_A_PAUSE_STAT_PAD = 1, - ETHTOOL_A_PAUSE_STAT_TX_FRAMES = 2, - ETHTOOL_A_PAUSE_STAT_RX_FRAMES = 3, - __ETHTOOL_A_PAUSE_STAT_CNT = 4, - ETHTOOL_A_PAUSE_STAT_MAX = 3, -}; - -struct pause_req_info { - struct ethnl_req_info base; - enum ethtool_mac_stats_src src; -}; - -struct pause_reply_data { - struct ethnl_reply_data base; - struct ethtool_pauseparam pauseparam; - struct ethtool_pause_stats pausestat; -}; - -enum { - ETHTOOL_A_TUNNEL_UDP_UNSPEC = 0, - ETHTOOL_A_TUNNEL_UDP_TABLE = 1, - __ETHTOOL_A_TUNNEL_UDP_CNT = 2, - ETHTOOL_A_TUNNEL_UDP_MAX = 1, -}; - -struct ethnl_tunnel_info_dump_ctx { - struct ethnl_req_info req_info; - long unsigned int ifindex; -}; - -struct phc_vclocks_reply_data { - struct ethnl_reply_data base; - int num; - int *index; -}; - -struct ethtool_cmis_cdb_rpl_hdr { - u8 rpl_len; - u8 rpl_chk_code; -}; - -struct ethtool_cmis_cdb_rpl { - struct ethtool_cmis_cdb_rpl_hdr hdr; - u8 payload[120]; -}; - -struct cmis_rev_rpl { - u8 rev; -}; - -struct cmis_cdb_advert_rpl { - u8 inst_supported; - u8 read_write_len_ext; - u8 resv1; - u8 resv2; -}; - -struct cmis_password_entry_pl { - __be32 password; -}; - -struct cmis_cdb_query_status_pl { - u16 response_delay; -}; - -struct cmis_cdb_query_status_rpl { - u8 length; - u8 status; -}; - -struct cmis_cdb_module_features_rpl { - u8 resv1[34]; - __be16 max_completion_time; -}; - -struct cmis_wait_for_cond_rpl { - u8 state; -}; - -struct phy_reply_data { - struct ethnl_reply_data base; - u32 phyindex; - char *drvname; - char *name; - unsigned int upstream_type; - char *upstream_sfp_name; - unsigned int upstream_index; - char *downstream_sfp_name; -}; - -struct nf_loginfo { - u_int8_t type; - union { - struct { - u_int32_t copy_len; - u_int16_t group; - u_int16_t qthreshold; - u_int16_t flags; - } ulog; - struct { - u_int8_t level; - u_int8_t logflags; - } log; - } u; -}; - -struct nf_log_buf { - unsigned int count; - char buf[1020]; -}; - -struct ip_fraglist_iter { - struct sk_buff *frag; - struct iphdr *iph; - int offset; - unsigned int hlen; -}; - -struct ip_frag_state { - bool DF; - unsigned int hlen; - unsigned int ll_rs; - unsigned int mtu; - unsigned int left; - int offset; - int ptr; - __be16 not_last_frag; -}; - -struct ip_reply_arg { - struct kvec iov[1]; - int flags; - __wsum csum; - int csumoffset; - int bound_dev_if; - u8 tos; - kuid_t uid; -}; - -struct dmabuf_cmsg { - __u64 frag_offset; - __u32 frag_size; - __u32 frag_token; - __u32 dmabuf_id; - __u32 flags; -}; - -enum { - BPF_TCP_ESTABLISHED = 1, - BPF_TCP_SYN_SENT = 2, - BPF_TCP_SYN_RECV = 3, - BPF_TCP_FIN_WAIT1 = 4, - BPF_TCP_FIN_WAIT2 = 5, - BPF_TCP_TIME_WAIT = 6, - BPF_TCP_CLOSE = 7, - BPF_TCP_CLOSE_WAIT = 8, - BPF_TCP_LAST_ACK = 9, - BPF_TCP_LISTEN = 10, - BPF_TCP_CLOSING = 11, - BPF_TCP_NEW_SYN_RECV = 12, - BPF_TCP_BOUND_INACTIVE = 13, - BPF_TCP_MAX_STATES = 14, -}; - -struct tcpvegas_info { - __u32 tcpv_enabled; - __u32 tcpv_rttcnt; - __u32 tcpv_rtt; - __u32 tcpv_minrtt; -}; - -struct tcp_dctcp_info { - __u16 dctcp_enabled; - __u16 dctcp_ce_state; - __u32 dctcp_alpha; - __u32 dctcp_ab_ecn; - __u32 dctcp_ab_tot; -}; - -struct tcp_bbr_info { - __u32 bbr_bw_lo; - __u32 bbr_bw_hi; - __u32 bbr_min_rtt; - __u32 bbr_pacing_gain; - __u32 bbr_cwnd_gain; -}; - -union tcp_cc_info { - struct tcpvegas_info vegas; - struct tcp_dctcp_info dctcp; - struct tcp_bbr_info bbr; -}; - -struct tcp_repair_opt { - __u32 opt_code; - __u32 opt_val; -}; - -struct tcp_repair_window { - __u32 snd_wl1; - __u32 snd_wnd; - __u32 max_window; - __u32 rcv_wnd; - __u32 rcv_wup; -}; - -enum { - TCP_NLA_PAD = 0, - TCP_NLA_BUSY = 1, - TCP_NLA_RWND_LIMITED = 2, - TCP_NLA_SNDBUF_LIMITED = 3, - TCP_NLA_DATA_SEGS_OUT = 4, - TCP_NLA_TOTAL_RETRANS = 5, - TCP_NLA_PACING_RATE = 6, - TCP_NLA_DELIVERY_RATE = 7, - TCP_NLA_SND_CWND = 8, - TCP_NLA_REORDERING = 9, - TCP_NLA_MIN_RTT = 10, - TCP_NLA_RECUR_RETRANS = 11, - TCP_NLA_DELIVERY_RATE_APP_LMT = 12, - TCP_NLA_SNDQ_SIZE = 13, - TCP_NLA_CA_STATE = 14, - TCP_NLA_SND_SSTHRESH = 15, - TCP_NLA_DELIVERED = 16, - TCP_NLA_DELIVERED_CE = 17, - TCP_NLA_BYTES_SENT = 18, - TCP_NLA_BYTES_RETRANS = 19, - TCP_NLA_DSACK_DUPS = 20, - TCP_NLA_REORD_SEEN = 21, - TCP_NLA_SRTT = 22, - TCP_NLA_TIMEOUT_REHASH = 23, - TCP_NLA_BYTES_NOTSENT = 24, - TCP_NLA_EDT = 25, - TCP_NLA_TTL = 26, - TCP_NLA_REHASH = 27, -}; - -struct tcp_zerocopy_receive { - __u64 address; - __u32 length; - __u32 recv_skip_hint; - __u32 inq; - __s32 err; - __u64 copybuf_address; - __s32 copybuf_len; - __u32 flags; - __u64 msg_control; - __u64 msg_controllen; - __u32 msg_flags; - __u32 reserved; -}; - -enum { - TCP_CMSG_INQ = 1, - TCP_CMSG_TS = 2, -}; - -struct tcp_splice_state { - struct pipe_inode_info *pipe; - size_t len; - unsigned int flags; -}; - -struct tcp_xa_pool { - u8 max; - u8 idx; - __u32 tokens[17]; - netmem_ref netmems[17]; -}; - -struct sock_bh_locked { - struct sock *sock; - local_lock_t bh_lock; -}; - -union bpf_tcp_iter_batch_item { - struct sock *sk; - __u64 cookie; -}; - -struct bpf_tcp_iter_state { - struct tcp_iter_state state; - unsigned int cur_sk; - unsigned int end_sk; - unsigned int max_sk; - union bpf_tcp_iter_batch_item *batch; -}; - -struct bpf_iter__tcp { - union { - struct bpf_iter_meta *meta; - }; - union { - struct sock_common *sk_common; - }; - uid_t uid; -}; - -struct raw_frag_vec { - struct msghdr *msg; - union { - struct icmphdr icmph; - char c[1]; - } hdr; - int hlen; -}; - -struct arpreq { - struct sockaddr arp_pa; - struct sockaddr arp_ha; - int arp_flags; - struct sockaddr arp_netmask; - char arp_dev[16]; -}; - -typedef struct { - char ax25_call[7]; -} ax25_address; - -struct compat_rtentry { - u32 rt_pad1; - struct sockaddr rt_dst; - struct sockaddr rt_gateway; - struct sockaddr rt_genmask; - short unsigned int rt_flags; - short int rt_pad2; - u32 rt_pad3; - unsigned char rt_tos; - unsigned char rt_class; - short int rt_pad4; - short int rt_metric; - compat_uptr_t rt_dev; - u32 rt_mtu; - u32 rt_window; - short unsigned int rt_irtt; -}; - -struct fib_nh_notifier_info { - struct fib_notifier_info info; - struct fib_nh *fib_nh; -}; - -struct ipfrag_skb_cb { - union { - struct inet_skb_parm h4; - struct inet6_skb_parm h6; - }; - struct sk_buff *next_frag; - int frag_run_len; - int ip_defrag_offset; -}; - -struct fib4_rule { - struct fib_rule common; - u8 dst_len; - u8 src_len; - dscp_t dscp; - dscp_t dscp_mask; - u8 dscp_full: 1; - __be32 src; - __be32 srcmask; - __be32 dst; - __be32 dstmask; - u32 tclassid; -}; - -enum { - UDP_BPF_IPV4 = 0, - UDP_BPF_IPV6 = 1, - UDP_BPF_NUM_PROTS = 2, -}; - -struct xfrm4_protocol { - int (*handler)(struct sk_buff *); - int (*input_handler)(struct sk_buff *, int, __be32, int); - int (*cb_handler)(struct sk_buff *, int); - int (*err_handler)(struct sk_buff *, u32); - struct xfrm4_protocol *next; - int priority; -}; - -struct xfrm_if_decode_session_result { - struct net *net; - u32 if_id; -}; - -struct xfrm_if_cb { - bool (*decode_session)(struct sk_buff *, short unsigned int, struct xfrm_if_decode_session_result *); -}; - -struct xfrm_policy_walk { - struct xfrm_policy_walk_entry walk; - u8 type; - u32 seq; -}; - -struct xfrmk_spdinfo { - u32 incnt; - u32 outcnt; - u32 fwdcnt; - u32 inscnt; - u32 outscnt; - u32 fwdscnt; - u32 spdhcnt; - u32 spdhmcnt; -}; - -struct xfrm_flo { - struct dst_entry *dst_orig; - u8 flags; -}; - -struct xfrm_pol_inexact_node { - struct rb_node node; - union { - xfrm_address_t addr; - struct callback_head rcu; - }; - u8 prefixlen; - struct rb_root root; - struct hlist_head hhead; -}; - -struct xfrm_pol_inexact_key { - possible_net_t net; - u32 if_id; - u16 family; - u8 dir; - u8 type; -}; - -struct xfrm_pol_inexact_bin { - struct xfrm_pol_inexact_key k; - struct rhash_head head; - struct hlist_head hhead; - seqcount_spinlock_t count; - struct rb_root root_d; - struct rb_root root_s; - struct list_head inexact_bins; - struct callback_head rcu; -}; - -enum xfrm_pol_inexact_candidate_type { - XFRM_POL_CAND_BOTH = 0, - XFRM_POL_CAND_SADDR = 1, - XFRM_POL_CAND_DADDR = 2, - XFRM_POL_CAND_ANY = 3, - XFRM_POL_CAND_MAX = 4, -}; - -struct xfrm_pol_inexact_candidates { - struct hlist_head *res[4]; -}; - -struct xfrm_flow_keys { - struct flow_dissector_key_basic basic; - struct flow_dissector_key_control control; - union { - struct flow_dissector_key_ipv4_addrs ipv4; - struct flow_dissector_key_ipv6_addrs ipv6; - } addrs; - struct flow_dissector_key_ip ip; - struct flow_dissector_key_icmp icmp; - struct flow_dissector_key_ports ports; - struct flow_dissector_key_keyid gre; -}; - -struct nat_keepalive { - struct net *net; - u16 family; - xfrm_address_t saddr; - xfrm_address_t daddr; - __be16 encap_sport; - __be16 encap_dport; - __u32 smark; -}; - -struct nat_keepalive_work_ctx { - time64_t next_run; - time64_t now; -}; - -struct unix_peercred { - struct pid *peer_pid; - const struct cred *peer_cred; -}; - -struct unix_stream_read_state { - int (*recv_actor)(struct sk_buff *, int, int, struct unix_stream_read_state *); - struct socket *socket; - struct msghdr *msg; - struct pipe_inode_info *pipe; - size_t size; - int flags; - unsigned int splice_flags; -}; - -struct bpf_unix_iter_state { - struct seq_net_private p; - unsigned int cur_sk; - unsigned int end_sk; - unsigned int max_sk; - struct sock **batch; - bool st_bucket_done; -}; - -struct bpf_iter__unix { - union { - struct bpf_iter_meta *meta; - }; - union { - struct unix_sock *unix_sk; - }; - uid_t uid; -}; - -struct ac6_iter_state { - struct seq_net_private p; - struct net_device *dev; -}; - -struct ifaddrlblmsg { - __u8 ifal_family; - __u8 __ifal_reserved; - __u8 ifal_prefixlen; - __u8 ifal_flags; - __u32 ifal_index; - __u32 ifal_seq; -}; - -enum { - IFAL_ADDRESS = 1, - IFAL_LABEL = 2, - __IFAL_MAX = 3, -}; - -struct ip6addrlbl_entry { - struct in6_addr prefix; - int prefixlen; - int ifindex; - int addrtype; - u32 label; - struct hlist_node list; - struct callback_head rcu; -}; - -struct ip6addrlbl_init_table { - const struct in6_addr *prefix; - int prefixlen; - u32 label; -}; - -struct ipv6_mreq { - struct in6_addr ipv6mr_multiaddr; - int ipv6mr_ifindex; -}; - -struct in6_flowlabel_req { - struct in6_addr flr_dst; - __be32 flr_label; - __u8 flr_action; - __u8 flr_share; - __u16 flr_flags; - __u16 flr_expires; - __u16 flr_linger; - __u32 __flr_pad; -}; - -struct mld2_grec { - __u8 grec_type; - __u8 grec_auxwords; - __be16 grec_nsrcs; - struct in6_addr grec_mca; - struct in6_addr grec_src[0]; -}; - -struct mld2_report { - struct icmp6hdr mld2r_hdr; - struct mld2_grec mld2r_grec[0]; -}; - -struct mld2_query { - struct icmp6hdr mld2q_hdr; - struct in6_addr mld2q_mca; - __u8 mld2q_qrv: 3; - __u8 mld2q_suppress: 1; - __u8 mld2q_resv2: 4; - __u8 mld2q_qqic; - __be16 mld2q_nsrcs; - struct in6_addr mld2q_srcs[0]; -}; - -struct igmp6_mc_iter_state { - struct seq_net_private p; - struct net_device *dev; - struct inet6_dev *idev; -}; - -struct igmp6_mcf_iter_state { - struct seq_net_private p; - struct net_device *dev; - struct inet6_dev *idev; - struct ifmcaddr6 *im; -}; - -struct ip6fl_iter_state { - struct seq_net_private p; - struct pid_namespace *pid_ns; - int bucket; -}; - -enum { - SEG6_ATTR_UNSPEC = 0, - SEG6_ATTR_DST = 1, - SEG6_ATTR_DSTLEN = 2, - SEG6_ATTR_HMACKEYID = 3, - SEG6_ATTR_SECRET = 4, - SEG6_ATTR_SECRETLEN = 5, - SEG6_ATTR_ALGID = 6, - SEG6_ATTR_HMACINFO = 7, - __SEG6_ATTR_MAX = 8, -}; - -enum { - SEG6_CMD_UNSPEC = 0, - SEG6_CMD_SETHMAC = 1, - SEG6_CMD_DUMPHMAC = 2, - SEG6_CMD_SET_TUNSRC = 3, - SEG6_CMD_GET_TUNSRC = 4, - __SEG6_CMD_MAX = 5, -}; - -enum { - IOAM6_ATTR_UNSPEC = 0, - IOAM6_ATTR_NS_ID = 1, - IOAM6_ATTR_NS_DATA = 2, - IOAM6_ATTR_NS_DATA_WIDE = 3, - IOAM6_ATTR_SC_ID = 4, - IOAM6_ATTR_SC_DATA = 5, - IOAM6_ATTR_SC_NONE = 6, - IOAM6_ATTR_PAD = 7, - __IOAM6_ATTR_MAX = 8, -}; - -enum { - IOAM6_CMD_UNSPEC = 0, - IOAM6_CMD_ADD_NAMESPACE = 1, - IOAM6_CMD_DEL_NAMESPACE = 2, - IOAM6_CMD_DUMP_NAMESPACES = 3, - IOAM6_CMD_ADD_SCHEMA = 4, - IOAM6_CMD_DEL_SCHEMA = 5, - IOAM6_CMD_DUMP_SCHEMAS = 6, - IOAM6_CMD_NS_SET_SCHEMA = 7, - __IOAM6_CMD_MAX = 8, -}; - -enum ioam6_event_attr { - IOAM6_EVENT_ATTR_UNSPEC = 0, - IOAM6_EVENT_ATTR_TRACE_NAMESPACE = 1, - IOAM6_EVENT_ATTR_TRACE_NODELEN = 2, - IOAM6_EVENT_ATTR_TRACE_TYPE = 3, - IOAM6_EVENT_ATTR_TRACE_DATA = 4, - __IOAM6_EVENT_ATTR_MAX = 5, -}; - -struct xfrm6_protocol { - int (*handler)(struct sk_buff *); - int (*input_handler)(struct sk_buff *, int, __be32, int); - int (*cb_handler)(struct sk_buff *, int); - int (*err_handler)(struct sk_buff *, struct inet6_skb_parm *, u8, u8, int, __be32); - struct xfrm6_protocol *next; - int priority; -}; - -enum { - IP6_FH_F_FRAG = 1, - IP6_FH_F_AUTH = 2, - IP6_FH_F_SKIP_RH = 4, -}; - -enum { - SEG6_LOCAL_UNSPEC = 0, - SEG6_LOCAL_ACTION = 1, - SEG6_LOCAL_SRH = 2, - SEG6_LOCAL_TABLE = 3, - SEG6_LOCAL_NH4 = 4, - SEG6_LOCAL_NH6 = 5, - SEG6_LOCAL_IIF = 6, - SEG6_LOCAL_OIF = 7, - SEG6_LOCAL_BPF = 8, - SEG6_LOCAL_VRFTABLE = 9, - SEG6_LOCAL_COUNTERS = 10, - SEG6_LOCAL_FLAVORS = 11, - __SEG6_LOCAL_MAX = 12, -}; - -enum { - SEG6_LOCAL_BPF_PROG_UNSPEC = 0, - SEG6_LOCAL_BPF_PROG = 1, - SEG6_LOCAL_BPF_PROG_NAME = 2, - __SEG6_LOCAL_BPF_PROG_MAX = 3, -}; - -enum { - SEG6_LOCAL_CNT_UNSPEC = 0, - SEG6_LOCAL_CNT_PAD = 1, - SEG6_LOCAL_CNT_PACKETS = 2, - SEG6_LOCAL_CNT_BYTES = 3, - SEG6_LOCAL_CNT_ERRORS = 4, - __SEG6_LOCAL_CNT_MAX = 5, -}; - -enum { - SEG6_LOCAL_FLV_UNSPEC = 0, - SEG6_LOCAL_FLV_OPERATION = 1, - SEG6_LOCAL_FLV_LCBLOCK_BITS = 2, - SEG6_LOCAL_FLV_LCNODE_FN_BITS = 3, - __SEG6_LOCAL_FLV_MAX = 4, -}; - -enum { - SEG6_LOCAL_FLV_OP_UNSPEC = 0, - SEG6_LOCAL_FLV_OP_PSP = 1, - SEG6_LOCAL_FLV_OP_USP = 2, - SEG6_LOCAL_FLV_OP_USD = 3, - SEG6_LOCAL_FLV_OP_NEXT_CSID = 4, - __SEG6_LOCAL_FLV_OP_MAX = 5, -}; - -struct seg6_local_lwt; - -struct seg6_local_lwtunnel_ops { - int (*build_state)(struct seg6_local_lwt *, const void *, struct netlink_ext_ack *); - void (*destroy_state)(struct seg6_local_lwt *); -}; - -enum seg6_end_dt_mode { - DT_INVALID_MODE = -22, - DT_LEGACY_MODE = 0, - DT_VRF_MODE = 1, -}; - -struct seg6_end_dt_info { - enum seg6_end_dt_mode mode; - struct net *net; - int vrf_ifindex; - int vrf_table; - u16 family; -}; - -struct seg6_flavors_info { - __u32 flv_ops; - __u8 lcblock_bits; - __u8 lcnode_func_bits; -}; - -struct pcpu_seg6_local_counters; - -struct seg6_action_desc; - -struct seg6_local_lwt { - int action; - struct ipv6_sr_hdr *srh; - int table; - struct in_addr nh4; - struct in6_addr nh6; - int iif; - int oif; - struct bpf_lwt_prog bpf; - struct seg6_end_dt_info dt_info; - struct seg6_flavors_info flv_info; - struct pcpu_seg6_local_counters *pcpu_counters; - int headroom; - struct seg6_action_desc *desc; - long unsigned int parsed_optattrs; -}; - -struct seg6_action_desc { - int action; - long unsigned int attrs; - long unsigned int optattrs; - int (*input)(struct sk_buff *, struct seg6_local_lwt *); - int static_headroom; - struct seg6_local_lwtunnel_ops slwt_ops; -}; - -struct pcpu_seg6_local_counters { - u64_stats_t packets; - u64_stats_t bytes; - u64_stats_t errors; - struct u64_stats_sync syncp; -}; - -struct seg6_local_counters { - __u64 packets; - __u64 bytes; - __u64 errors; -}; - -enum seg6_local_pktinfo { - SEG6_LOCAL_PKTINFO_NOHDR = 0, - SEG6_LOCAL_PKTINFO_SL_ZERO = 1, - SEG6_LOCAL_PKTINFO_SL_ONE = 2, - SEG6_LOCAL_PKTINFO_SL_MORE = 3, - __SEG6_LOCAL_PKTINFO_MAX = 4, -}; - -enum seg6_local_flv_action { - SEG6_LOCAL_FLV_ACT_UNSPEC = 0, - SEG6_LOCAL_FLV_ACT_END = 1, - SEG6_LOCAL_FLV_ACT_PSP = 2, - SEG6_LOCAL_FLV_ACT_USP = 3, - SEG6_LOCAL_FLV_ACT_USD = 4, - __SEG6_LOCAL_FLV_ACT_MAX = 5, -}; - -struct seg6_action_param { - int (*parse)(struct nlattr **, struct seg6_local_lwt *, struct netlink_ext_ack *); - int (*put)(struct sk_buff *, struct seg6_local_lwt *); - int (*cmp)(struct seg6_local_lwt *, struct seg6_local_lwt *); - void (*destroy)(struct seg6_local_lwt *); -}; - -struct sockaddr_pkt { - short unsigned int spkt_family; - unsigned char spkt_device[14]; - __be16 spkt_protocol; -}; - -struct sockaddr_ll { - short unsigned int sll_family; - __be16 sll_protocol; - int sll_ifindex; - short unsigned int sll_hatype; - unsigned char sll_pkttype; - unsigned char sll_halen; - unsigned char sll_addr[8]; -}; - -struct tpacket_stats { - unsigned int tp_packets; - unsigned int tp_drops; -}; - -struct tpacket_stats_v3 { - unsigned int tp_packets; - unsigned int tp_drops; - unsigned int tp_freeze_q_cnt; -}; - -struct tpacket_rollover_stats { - __u64 tp_all; - __u64 tp_huge; - __u64 tp_failed; -}; - -union tpacket_stats_u { - struct tpacket_stats stats1; - struct tpacket_stats_v3 stats3; -}; - -struct tpacket_auxdata { - __u32 tp_status; - __u32 tp_len; - __u32 tp_snaplen; - __u16 tp_mac; - __u16 tp_net; - __u16 tp_vlan_tci; - __u16 tp_vlan_tpid; -}; - -struct tpacket_hdr { - long unsigned int tp_status; - unsigned int tp_len; - unsigned int tp_snaplen; - short unsigned int tp_mac; - short unsigned int tp_net; - unsigned int tp_sec; - unsigned int tp_usec; -}; - -struct tpacket2_hdr { - __u32 tp_status; - __u32 tp_len; - __u32 tp_snaplen; - __u16 tp_mac; - __u16 tp_net; - __u32 tp_sec; - __u32 tp_nsec; - __u16 tp_vlan_tci; - __u16 tp_vlan_tpid; - __u8 tp_padding[4]; -}; - -struct tpacket_hdr_variant1 { - __u32 tp_rxhash; - __u32 tp_vlan_tci; - __u16 tp_vlan_tpid; - __u16 tp_padding; -}; - -struct tpacket3_hdr { - __u32 tp_next_offset; - __u32 tp_sec; - __u32 tp_nsec; - __u32 tp_snaplen; - __u32 tp_len; - __u32 tp_status; - __u16 tp_mac; - __u16 tp_net; - union { - struct tpacket_hdr_variant1 hv1; - }; - __u8 tp_padding[8]; -}; - -struct tpacket_bd_ts { - unsigned int ts_sec; - union { - unsigned int ts_usec; - unsigned int ts_nsec; - }; -}; - -struct tpacket_hdr_v1 { - __u32 block_status; - __u32 num_pkts; - __u32 offset_to_first_pkt; - __u32 blk_len; - __u64 seq_num; - struct tpacket_bd_ts ts_first_pkt; - struct tpacket_bd_ts ts_last_pkt; -}; - -union tpacket_bd_header_u { - struct tpacket_hdr_v1 bh1; -}; - -struct tpacket_block_desc { - __u32 version; - __u32 offset_to_priv; - union tpacket_bd_header_u hdr; -}; - -enum tpacket_versions { - TPACKET_V1 = 0, - TPACKET_V2 = 1, - TPACKET_V3 = 2, -}; - -struct tpacket_req { - unsigned int tp_block_size; - unsigned int tp_block_nr; - unsigned int tp_frame_size; - unsigned int tp_frame_nr; -}; - -struct tpacket_req3 { - unsigned int tp_block_size; - unsigned int tp_block_nr; - unsigned int tp_frame_size; - unsigned int tp_frame_nr; - unsigned int tp_retire_blk_tov; - unsigned int tp_sizeof_priv; - unsigned int tp_feature_req_word; -}; - -union tpacket_req_u { - struct tpacket_req req; - struct tpacket_req3 req3; -}; - -struct fanout_args { - __u16 id; - __u16 type_flags; - __u32 max_num_members; -}; - -struct packet_mclist { - struct packet_mclist *next; - int ifindex; - int count; - short unsigned int type; - short unsigned int alen; - unsigned char addr[32]; - struct list_head remove_list; -}; - -struct pgv; - -struct tpacket_kbdq_core { - struct pgv *pkbdq; - unsigned int feature_req_word; - unsigned int hdrlen; - unsigned char reset_pending_on_curr_blk; - unsigned char delete_blk_timer; - short unsigned int kactive_blk_num; - short unsigned int blk_sizeof_priv; - short unsigned int last_kactive_blk_num; - char *pkblk_start; - char *pkblk_end; - int kblk_size; - unsigned int max_frame_len; - unsigned int knum_blocks; - uint64_t knxt_seq_num; - char *prev; - char *nxt_offset; - struct sk_buff *skb; - rwlock_t blk_fill_in_prog_lock; - short unsigned int retire_blk_tov; - short unsigned int version; - long unsigned int tov_in_jiffies; - struct timer_list retire_blk_timer; -}; - -struct pgv { - char *buffer; -}; - -struct packet_ring_buffer { - struct pgv *pg_vec; - unsigned int head; - unsigned int frames_per_block; - unsigned int frame_size; - unsigned int frame_max; - unsigned int pg_vec_order; - unsigned int pg_vec_pages; - unsigned int pg_vec_len; - unsigned int *pending_refcnt; - union { - long unsigned int *rx_owner_map; - struct tpacket_kbdq_core prb_bdqc; - }; -}; - -struct packet_fanout { - possible_net_t net; - unsigned int num_members; - u32 max_num_members; - u16 id; - u8 type; - u8 flags; - union { - atomic_t rr_cur; - struct bpf_prog *bpf_prog; - }; - struct list_head list; - spinlock_t lock; - refcount_t sk_ref; - long: 64; - struct packet_type prot_hook; - struct sock *arr[0]; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -struct packet_rollover { - int sock; - atomic_long_t num; - atomic_long_t num_huge; - atomic_long_t num_failed; - long: 64; - long: 64; - long: 64; - long: 64; - u32 history[16]; -}; - -struct packet_sock { - struct sock sk; - struct packet_fanout *fanout; - union tpacket_stats_u stats; - struct packet_ring_buffer rx_ring; - struct packet_ring_buffer tx_ring; - int copy_thresh; - spinlock_t bind_lock; - struct mutex pg_vec_lock; - long unsigned int flags; - int ifindex; - u8 vnet_hdr_sz; - __be16 num; - struct packet_rollover *rollover; - struct packet_mclist *mclist; - atomic_long_t mapped; - enum tpacket_versions tp_version; - unsigned int tp_hdrlen; - unsigned int tp_reserve; - unsigned int tp_tstamp; - struct completion skb_completion; - struct net_device *cached_dev; - struct packet_type prot_hook; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - atomic_t tp_drops; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; - long: 64; -}; - -enum packet_sock_flags { - PACKET_SOCK_ORIGDEV = 0, - PACKET_SOCK_AUXDATA = 1, - PACKET_SOCK_TX_HAS_OFF = 2, - PACKET_SOCK_TP_LOSS = 3, - PACKET_SOCK_RUNNING = 4, - PACKET_SOCK_PRESSURE = 5, - PACKET_SOCK_QDISC_BYPASS = 6, -}; - -struct packet_mreq_max { - int mr_ifindex; - short unsigned int mr_type; - short unsigned int mr_alen; - unsigned char mr_address[32]; -}; - -union tpacket_uhdr { - struct tpacket_hdr *h1; - struct tpacket2_hdr *h2; - struct tpacket3_hdr *h3; - void *raw; -}; - -struct packet_skb_cb { - union { - struct sockaddr_pkt pkt; - union { - unsigned int origlen; - struct sockaddr_ll ll; - }; - } sa; -}; - -enum devlink_attr_selftest_result { - DEVLINK_ATTR_SELFTEST_RESULT_UNSPEC = 0, - DEVLINK_ATTR_SELFTEST_RESULT = 1, - DEVLINK_ATTR_SELFTEST_RESULT_ID = 2, - DEVLINK_ATTR_SELFTEST_RESULT_STATUS = 3, - __DEVLINK_ATTR_SELFTEST_RESULT_MAX = 4, - DEVLINK_ATTR_SELFTEST_RESULT_MAX = 3, -}; - -struct devlink_flash_notify { - const char *status_msg; - const char *component; - long unsigned int done; - long unsigned int total; - long unsigned int timeout; -}; - -enum devlink_info_version_type { - DEVLINK_INFO_VERSION_TYPE_NONE = 0, - DEVLINK_INFO_VERSION_TYPE_COMPONENT = 1, -}; - -struct devlink_info_req { - struct sk_buff *msg; - void (*version_cb)(const char *, enum devlink_info_version_type, void *); - void *version_cb_priv; -}; - -struct devlink_reload_combination { - enum devlink_reload_action action; - enum devlink_reload_limit limit; -}; - -struct devlink_flash_component_lookup_ctx { - const char *lookup_name; - bool lookup_name_found; -}; - -enum devlink_resource_unit { - DEVLINK_RESOURCE_UNIT_ENTRY = 0, -}; - -struct devlink_resource_size_params { - u64 size_min; - u64 size_max; - u64 size_granularity; - enum devlink_resource_unit unit; -}; - -typedef u64 devlink_resource_occ_get_t(void *); - -struct devlink_resource { - const char *name; - u64 id; - u64 size; - u64 size_new; - bool size_valid; - struct devlink_resource *parent; - struct devlink_resource_size_params size_params; - struct list_head list; - struct list_head resource_list; - devlink_resource_occ_get_t *occ_get; - void *occ_get_priv; -}; - -enum { - DEVLINK_ATTR_STATS_RX_PACKETS = 0, - DEVLINK_ATTR_STATS_RX_BYTES = 1, - DEVLINK_ATTR_STATS_RX_DROPPED = 2, - __DEVLINK_ATTR_STATS_MAX = 3, - DEVLINK_ATTR_STATS_MAX = 2, -}; - -enum { - DEVLINK_ATTR_TRAP_METADATA_TYPE_IN_PORT = 0, - DEVLINK_ATTR_TRAP_METADATA_TYPE_FA_COOKIE = 1, -}; - -enum devlink_trap_generic_id { - DEVLINK_TRAP_GENERIC_ID_SMAC_MC = 0, - DEVLINK_TRAP_GENERIC_ID_VLAN_TAG_MISMATCH = 1, - DEVLINK_TRAP_GENERIC_ID_INGRESS_VLAN_FILTER = 2, - DEVLINK_TRAP_GENERIC_ID_INGRESS_STP_FILTER = 3, - DEVLINK_TRAP_GENERIC_ID_EMPTY_TX_LIST = 4, - DEVLINK_TRAP_GENERIC_ID_PORT_LOOPBACK_FILTER = 5, - DEVLINK_TRAP_GENERIC_ID_BLACKHOLE_ROUTE = 6, - DEVLINK_TRAP_GENERIC_ID_TTL_ERROR = 7, - DEVLINK_TRAP_GENERIC_ID_TAIL_DROP = 8, - DEVLINK_TRAP_GENERIC_ID_NON_IP_PACKET = 9, - DEVLINK_TRAP_GENERIC_ID_UC_DIP_MC_DMAC = 10, - DEVLINK_TRAP_GENERIC_ID_DIP_LB = 11, - DEVLINK_TRAP_GENERIC_ID_SIP_MC = 12, - DEVLINK_TRAP_GENERIC_ID_SIP_LB = 13, - DEVLINK_TRAP_GENERIC_ID_CORRUPTED_IP_HDR = 14, - DEVLINK_TRAP_GENERIC_ID_IPV4_SIP_BC = 15, - DEVLINK_TRAP_GENERIC_ID_IPV6_MC_DIP_RESERVED_SCOPE = 16, - DEVLINK_TRAP_GENERIC_ID_IPV6_MC_DIP_INTERFACE_LOCAL_SCOPE = 17, - DEVLINK_TRAP_GENERIC_ID_MTU_ERROR = 18, - DEVLINK_TRAP_GENERIC_ID_UNRESOLVED_NEIGH = 19, - DEVLINK_TRAP_GENERIC_ID_RPF = 20, - DEVLINK_TRAP_GENERIC_ID_REJECT_ROUTE = 21, - DEVLINK_TRAP_GENERIC_ID_IPV4_LPM_UNICAST_MISS = 22, - DEVLINK_TRAP_GENERIC_ID_IPV6_LPM_UNICAST_MISS = 23, - DEVLINK_TRAP_GENERIC_ID_NON_ROUTABLE = 24, - DEVLINK_TRAP_GENERIC_ID_DECAP_ERROR = 25, - DEVLINK_TRAP_GENERIC_ID_OVERLAY_SMAC_MC = 26, - DEVLINK_TRAP_GENERIC_ID_INGRESS_FLOW_ACTION_DROP = 27, - DEVLINK_TRAP_GENERIC_ID_EGRESS_FLOW_ACTION_DROP = 28, - DEVLINK_TRAP_GENERIC_ID_STP = 29, - DEVLINK_TRAP_GENERIC_ID_LACP = 30, - DEVLINK_TRAP_GENERIC_ID_LLDP = 31, - DEVLINK_TRAP_GENERIC_ID_IGMP_QUERY = 32, - DEVLINK_TRAP_GENERIC_ID_IGMP_V1_REPORT = 33, - DEVLINK_TRAP_GENERIC_ID_IGMP_V2_REPORT = 34, - DEVLINK_TRAP_GENERIC_ID_IGMP_V3_REPORT = 35, - DEVLINK_TRAP_GENERIC_ID_IGMP_V2_LEAVE = 36, - DEVLINK_TRAP_GENERIC_ID_MLD_QUERY = 37, - DEVLINK_TRAP_GENERIC_ID_MLD_V1_REPORT = 38, - DEVLINK_TRAP_GENERIC_ID_MLD_V2_REPORT = 39, - DEVLINK_TRAP_GENERIC_ID_MLD_V1_DONE = 40, - DEVLINK_TRAP_GENERIC_ID_IPV4_DHCP = 41, - DEVLINK_TRAP_GENERIC_ID_IPV6_DHCP = 42, - DEVLINK_TRAP_GENERIC_ID_ARP_REQUEST = 43, - DEVLINK_TRAP_GENERIC_ID_ARP_RESPONSE = 44, - DEVLINK_TRAP_GENERIC_ID_ARP_OVERLAY = 45, - DEVLINK_TRAP_GENERIC_ID_IPV6_NEIGH_SOLICIT = 46, - DEVLINK_TRAP_GENERIC_ID_IPV6_NEIGH_ADVERT = 47, - DEVLINK_TRAP_GENERIC_ID_IPV4_BFD = 48, - DEVLINK_TRAP_GENERIC_ID_IPV6_BFD = 49, - DEVLINK_TRAP_GENERIC_ID_IPV4_OSPF = 50, - DEVLINK_TRAP_GENERIC_ID_IPV6_OSPF = 51, - DEVLINK_TRAP_GENERIC_ID_IPV4_BGP = 52, - DEVLINK_TRAP_GENERIC_ID_IPV6_BGP = 53, - DEVLINK_TRAP_GENERIC_ID_IPV4_VRRP = 54, - DEVLINK_TRAP_GENERIC_ID_IPV6_VRRP = 55, - DEVLINK_TRAP_GENERIC_ID_IPV4_PIM = 56, - DEVLINK_TRAP_GENERIC_ID_IPV6_PIM = 57, - DEVLINK_TRAP_GENERIC_ID_UC_LB = 58, - DEVLINK_TRAP_GENERIC_ID_LOCAL_ROUTE = 59, - DEVLINK_TRAP_GENERIC_ID_EXTERNAL_ROUTE = 60, - DEVLINK_TRAP_GENERIC_ID_IPV6_UC_DIP_LINK_LOCAL_SCOPE = 61, - DEVLINK_TRAP_GENERIC_ID_IPV6_DIP_ALL_NODES = 62, - DEVLINK_TRAP_GENERIC_ID_IPV6_DIP_ALL_ROUTERS = 63, - DEVLINK_TRAP_GENERIC_ID_IPV6_ROUTER_SOLICIT = 64, - DEVLINK_TRAP_GENERIC_ID_IPV6_ROUTER_ADVERT = 65, - DEVLINK_TRAP_GENERIC_ID_IPV6_REDIRECT = 66, - DEVLINK_TRAP_GENERIC_ID_IPV4_ROUTER_ALERT = 67, - DEVLINK_TRAP_GENERIC_ID_IPV6_ROUTER_ALERT = 68, - DEVLINK_TRAP_GENERIC_ID_PTP_EVENT = 69, - DEVLINK_TRAP_GENERIC_ID_PTP_GENERAL = 70, - DEVLINK_TRAP_GENERIC_ID_FLOW_ACTION_SAMPLE = 71, - DEVLINK_TRAP_GENERIC_ID_FLOW_ACTION_TRAP = 72, - DEVLINK_TRAP_GENERIC_ID_EARLY_DROP = 73, - DEVLINK_TRAP_GENERIC_ID_VXLAN_PARSING = 74, - DEVLINK_TRAP_GENERIC_ID_LLC_SNAP_PARSING = 75, - DEVLINK_TRAP_GENERIC_ID_VLAN_PARSING = 76, - DEVLINK_TRAP_GENERIC_ID_PPPOE_PPP_PARSING = 77, - DEVLINK_TRAP_GENERIC_ID_MPLS_PARSING = 78, - DEVLINK_TRAP_GENERIC_ID_ARP_PARSING = 79, - DEVLINK_TRAP_GENERIC_ID_IP_1_PARSING = 80, - DEVLINK_TRAP_GENERIC_ID_IP_N_PARSING = 81, - DEVLINK_TRAP_GENERIC_ID_GRE_PARSING = 82, - DEVLINK_TRAP_GENERIC_ID_UDP_PARSING = 83, - DEVLINK_TRAP_GENERIC_ID_TCP_PARSING = 84, - DEVLINK_TRAP_GENERIC_ID_IPSEC_PARSING = 85, - DEVLINK_TRAP_GENERIC_ID_SCTP_PARSING = 86, - DEVLINK_TRAP_GENERIC_ID_DCCP_PARSING = 87, - DEVLINK_TRAP_GENERIC_ID_GTP_PARSING = 88, - DEVLINK_TRAP_GENERIC_ID_ESP_PARSING = 89, - DEVLINK_TRAP_GENERIC_ID_BLACKHOLE_NEXTHOP = 90, - DEVLINK_TRAP_GENERIC_ID_DMAC_FILTER = 91, - DEVLINK_TRAP_GENERIC_ID_EAPOL = 92, - DEVLINK_TRAP_GENERIC_ID_LOCKED_PORT = 93, - __DEVLINK_TRAP_GENERIC_ID_MAX = 94, - DEVLINK_TRAP_GENERIC_ID_MAX = 93, -}; - -enum devlink_trap_group_generic_id { - DEVLINK_TRAP_GROUP_GENERIC_ID_L2_DROPS = 0, - DEVLINK_TRAP_GROUP_GENERIC_ID_L3_DROPS = 1, - DEVLINK_TRAP_GROUP_GENERIC_ID_L3_EXCEPTIONS = 2, - DEVLINK_TRAP_GROUP_GENERIC_ID_BUFFER_DROPS = 3, - DEVLINK_TRAP_GROUP_GENERIC_ID_TUNNEL_DROPS = 4, - DEVLINK_TRAP_GROUP_GENERIC_ID_ACL_DROPS = 5, - DEVLINK_TRAP_GROUP_GENERIC_ID_STP = 6, - DEVLINK_TRAP_GROUP_GENERIC_ID_LACP = 7, - DEVLINK_TRAP_GROUP_GENERIC_ID_LLDP = 8, - DEVLINK_TRAP_GROUP_GENERIC_ID_MC_SNOOPING = 9, - DEVLINK_TRAP_GROUP_GENERIC_ID_DHCP = 10, - DEVLINK_TRAP_GROUP_GENERIC_ID_NEIGH_DISCOVERY = 11, - DEVLINK_TRAP_GROUP_GENERIC_ID_BFD = 12, - DEVLINK_TRAP_GROUP_GENERIC_ID_OSPF = 13, - DEVLINK_TRAP_GROUP_GENERIC_ID_BGP = 14, - DEVLINK_TRAP_GROUP_GENERIC_ID_VRRP = 15, - DEVLINK_TRAP_GROUP_GENERIC_ID_PIM = 16, - DEVLINK_TRAP_GROUP_GENERIC_ID_UC_LB = 17, - DEVLINK_TRAP_GROUP_GENERIC_ID_LOCAL_DELIVERY = 18, - DEVLINK_TRAP_GROUP_GENERIC_ID_EXTERNAL_DELIVERY = 19, - DEVLINK_TRAP_GROUP_GENERIC_ID_IPV6 = 20, - DEVLINK_TRAP_GROUP_GENERIC_ID_PTP_EVENT = 21, - DEVLINK_TRAP_GROUP_GENERIC_ID_PTP_GENERAL = 22, - DEVLINK_TRAP_GROUP_GENERIC_ID_ACL_SAMPLE = 23, - DEVLINK_TRAP_GROUP_GENERIC_ID_ACL_TRAP = 24, - DEVLINK_TRAP_GROUP_GENERIC_ID_PARSER_ERROR_DROPS = 25, - DEVLINK_TRAP_GROUP_GENERIC_ID_EAPOL = 26, - __DEVLINK_TRAP_GROUP_GENERIC_ID_MAX = 27, - DEVLINK_TRAP_GROUP_GENERIC_ID_MAX = 26, -}; - -struct devlink_stats { - u64_stats_t rx_bytes; - u64_stats_t rx_packets; - struct u64_stats_sync syncp; -}; - -struct devlink_trap_policer_item { - const struct devlink_trap_policer *policer; - u64 rate; - u64 burst; - struct list_head list; -}; - -struct devlink_trap_group_item { - const struct devlink_trap_group *group; - struct devlink_trap_policer_item *policer_item; - struct list_head list; - struct devlink_stats *stats; -}; - -struct devlink_trap_item { - const struct devlink_trap *trap; - struct devlink_trap_group_item *group_item; - struct list_head list; - enum devlink_trap_action action; - struct devlink_stats *stats; - void *priv; -}; - -enum { - NLBL_UNLABEL_C_UNSPEC = 0, - NLBL_UNLABEL_C_ACCEPT = 1, - NLBL_UNLABEL_C_LIST = 2, - NLBL_UNLABEL_C_STATICADD = 3, - NLBL_UNLABEL_C_STATICREMOVE = 4, - NLBL_UNLABEL_C_STATICLIST = 5, - NLBL_UNLABEL_C_STATICADDDEF = 6, - NLBL_UNLABEL_C_STATICREMOVEDEF = 7, - NLBL_UNLABEL_C_STATICLISTDEF = 8, - __NLBL_UNLABEL_C_MAX = 9, -}; - -enum { - NLBL_UNLABEL_A_UNSPEC = 0, - NLBL_UNLABEL_A_ACPTFLG = 1, - NLBL_UNLABEL_A_IPV6ADDR = 2, - NLBL_UNLABEL_A_IPV6MASK = 3, - NLBL_UNLABEL_A_IPV4ADDR = 4, - NLBL_UNLABEL_A_IPV4MASK = 5, - NLBL_UNLABEL_A_IFACE = 6, - NLBL_UNLABEL_A_SECCTX = 7, - __NLBL_UNLABEL_A_MAX = 8, -}; - -struct netlbl_unlhsh_tbl { - struct list_head *tbl; - u32 size; -}; - -struct netlbl_unlhsh_addr4 { - u32 secid; - struct netlbl_af4list list; - struct callback_head rcu; -}; - -struct netlbl_unlhsh_addr6 { - u32 secid; - struct netlbl_af6list list; - struct callback_head rcu; -}; - -struct netlbl_unlhsh_iface { - int ifindex; - struct list_head addr4_list; - struct list_head addr6_list; - u32 valid; - struct list_head list; - struct callback_head rcu; -}; - -struct netlbl_unlhsh_walk_arg { - struct netlink_callback *nl_cb; - struct sk_buff *skb; - u32 seq; -}; - -enum rfkill_input_master_mode { - RFKILL_INPUT_MASTER_UNLOCK = 0, - RFKILL_INPUT_MASTER_RESTORE = 1, - RFKILL_INPUT_MASTER_UNBLOCKALL = 2, - NUM_RFKILL_INPUT_MASTER_MODES = 3, -}; - -enum rfkill_sched_op { - RFKILL_GLOBAL_OP_EPO = 0, - RFKILL_GLOBAL_OP_RESTORE = 1, - RFKILL_GLOBAL_OP_UNLOCK = 2, - RFKILL_GLOBAL_OP_UNBLOCK = 3, -}; - -enum dns_payload_content_type { - DNS_PAYLOAD_IS_SERVER_LIST = 0, -}; - -enum dns_lookup_status { - DNS_LOOKUP_NOT_DONE = 0, - DNS_LOOKUP_GOOD = 1, - DNS_LOOKUP_GOOD_WITH_BAD = 2, - DNS_LOOKUP_BAD = 3, - DNS_LOOKUP_GOT_NOT_FOUND = 4, - DNS_LOOKUP_GOT_LOCAL_FAILURE = 5, - DNS_LOOKUP_GOT_TEMP_FAILURE = 6, - DNS_LOOKUP_GOT_NS_FAILURE = 7, - NR__dns_lookup_status = 8, -}; - -struct dns_payload_header { - __u8 zero; - __u8 content; - __u8 version; -}; - -struct dns_server_list_v1_header { - struct dns_payload_header hdr; - __u8 source; - __u8 status; - __u8 nr_servers; -}; - -enum switchdev_attr_id { - SWITCHDEV_ATTR_ID_UNDEFINED = 0, - SWITCHDEV_ATTR_ID_PORT_STP_STATE = 1, - SWITCHDEV_ATTR_ID_PORT_MST_STATE = 2, - SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS = 3, - SWITCHDEV_ATTR_ID_PORT_PRE_BRIDGE_FLAGS = 4, - SWITCHDEV_ATTR_ID_PORT_MROUTER = 5, - SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME = 6, - SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING = 7, - SWITCHDEV_ATTR_ID_BRIDGE_VLAN_PROTOCOL = 8, - SWITCHDEV_ATTR_ID_BRIDGE_MC_DISABLED = 9, - SWITCHDEV_ATTR_ID_BRIDGE_MROUTER = 10, - SWITCHDEV_ATTR_ID_BRIDGE_MST = 11, - SWITCHDEV_ATTR_ID_MRP_PORT_ROLE = 12, - SWITCHDEV_ATTR_ID_VLAN_MSTI = 13, -}; - -struct switchdev_attr { - struct net_device *orig_dev; - enum switchdev_attr_id id; - u32 flags; - void *complete_priv; - void (*complete)(struct net_device *, int, void *); - union { - u8 stp_state; - struct switchdev_mst_state mst_state; - struct switchdev_brport_flags brport_flags; - bool mrouter; - clock_t ageing_time; - bool vlan_filtering; - u16 vlan_protocol; - bool mst; - bool mc_disabled; - u8 mrp_port_role; - struct switchdev_vlan_msti vlan_msti; - } u; -}; - -struct switchdev_brport { - struct net_device *dev; - const void *ctx; - struct notifier_block *atomic_nb; - struct notifier_block *blocking_nb; - bool tx_fwd_offload; -}; - -struct switchdev_notifier_fdb_info { - struct switchdev_notifier_info info; - const unsigned char *addr; - u16 vid; - u8 added_by_user: 1; - u8 is_local: 1; - u8 locked: 1; - u8 offloaded: 1; -}; - -struct switchdev_notifier_port_obj_info { - struct switchdev_notifier_info info; - const struct switchdev_obj *obj; - bool handled; -}; - -struct switchdev_notifier_port_attr_info { - struct switchdev_notifier_info info; - const struct switchdev_attr *attr; - bool handled; -}; - -struct switchdev_notifier_brport_info { - struct switchdev_notifier_info info; - const struct switchdev_brport brport; -}; - -typedef void switchdev_deferred_func_t(struct net_device *, const void *); - -struct switchdev_deferred_item { - struct list_head list; - struct net_device *dev; - netdevice_tracker dev_tracker; - switchdev_deferred_func_t *func; - long unsigned int data[0]; -}; - -struct switchdev_nested_priv { - bool (*check_cb)(const struct net_device *); - bool (*foreign_dev_check_cb)(const struct net_device *, const struct net_device *); - const struct net_device *dev; - struct net_device *lower_dev; -}; - -struct ncsi_rsp_pkt_hdr { - struct ncsi_pkt_hdr common; - __be16 code; - __be16 reason; -}; - -struct ncsi_rsp_pkt { - struct ncsi_rsp_pkt_hdr rsp; - __be32 checksum; - unsigned char pad[22]; -}; - -struct ncsi_rsp_oem_pkt { - struct ncsi_rsp_pkt_hdr rsp; - __be32 mfr_id; - unsigned char data[0]; -}; - -struct ncsi_rsp_oem_mlx_pkt { - unsigned char cmd_rev; - unsigned char cmd; - unsigned char param; - unsigned char optional; - unsigned char data[0]; -}; - -struct ncsi_rsp_oem_bcm_pkt { - unsigned char ver; - unsigned char type; - __be16 len; - unsigned char data[0]; -}; - -struct ncsi_rsp_oem_intel_pkt { - unsigned char cmd; - unsigned char data[0]; -}; - -struct ncsi_rsp_gls_pkt { - struct ncsi_rsp_pkt_hdr rsp; - __be32 status; - __be32 other; - __be32 oem_status; - __be32 checksum; - unsigned char pad[10]; -}; - -struct ncsi_rsp_gvi_pkt { - struct ncsi_rsp_pkt_hdr rsp; - unsigned char major; - unsigned char minor; - unsigned char update; - unsigned char alpha1; - unsigned char reserved[3]; - unsigned char alpha2; - unsigned char fw_name[12]; - __be32 fw_version; - __be16 pci_ids[4]; - __be32 mf_id; - __be32 checksum; -}; - -struct ncsi_rsp_gc_pkt { - struct ncsi_rsp_pkt_hdr rsp; - __be32 cap; - __be32 bc_cap; - __be32 mc_cap; - __be32 buf_cap; - __be32 aen_cap; - unsigned char vlan_cnt; - unsigned char mixed_cnt; - unsigned char mc_cnt; - unsigned char uc_cnt; - unsigned char reserved[2]; - unsigned char vlan_mode; - unsigned char channel_cnt; - __be32 checksum; -}; - -struct ncsi_rsp_gp_pkt { - struct ncsi_rsp_pkt_hdr rsp; - unsigned char mac_cnt; - unsigned char reserved[2]; - unsigned char mac_enable; - unsigned char vlan_cnt; - unsigned char reserved1; - __be16 vlan_enable; - __be32 link_mode; - __be32 bc_mode; - __be32 valid_modes; - unsigned char vlan_mode; - unsigned char fc_mode; - unsigned char reserved2[2]; - __be32 aen_mode; - unsigned char mac[6]; - __be16 vlan; - __be32 checksum; -}; - -struct ncsi_rsp_gcps_pkt { - struct ncsi_rsp_pkt_hdr rsp; - __be64 cnt; - __be64 rx_bytes; - __be64 tx_bytes; - __be64 rx_uc_pkts; - __be64 rx_mc_pkts; - __be64 rx_bc_pkts; - __be64 tx_uc_pkts; - __be64 tx_mc_pkts; - __be64 tx_bc_pkts; - __be32 fcs_err; - __be32 align_err; - __be32 false_carrier; - __be32 runt_pkts; - __be32 jabber_pkts; - __be32 rx_pause_xon; - __be32 rx_pause_xoff; - __be32 tx_pause_xon; - __be32 tx_pause_xoff; - __be32 tx_s_collision; - __be32 tx_m_collision; - __be32 l_collision; - __be32 e_collision; - __be32 rx_ctl_frames; - __be32 rx_64_frames; - __be32 rx_127_frames; - __be32 rx_255_frames; - __be32 rx_511_frames; - __be32 rx_1023_frames; - __be32 rx_1522_frames; - __be32 rx_9022_frames; - __be32 tx_64_frames; - __be32 tx_127_frames; - __be32 tx_255_frames; - __be32 tx_511_frames; - __be32 tx_1023_frames; - __be32 tx_1522_frames; - __be32 tx_9022_frames; - __be64 rx_valid_bytes; - __be32 rx_runt_pkts; - __be32 rx_jabber_pkts; - __be32 checksum; -} __attribute__((packed)); - -struct ncsi_rsp_gns_pkt { - struct ncsi_rsp_pkt_hdr rsp; - __be32 rx_cmds; - __be32 dropped_cmds; - __be32 cmd_type_errs; - __be32 cmd_csum_errs; - __be32 rx_pkts; - __be32 tx_pkts; - __be32 tx_aen_pkts; - __be32 checksum; -}; - -struct ncsi_rsp_gnpts_pkt { - struct ncsi_rsp_pkt_hdr rsp; - __be32 tx_pkts; - __be32 tx_dropped; - __be32 tx_channel_err; - __be32 tx_us_err; - __be32 rx_pkts; - __be32 rx_dropped; - __be32 rx_channel_err; - __be32 rx_us_err; - __be32 rx_os_err; - __be32 checksum; -}; - -struct ncsi_rsp_gps_pkt { - struct ncsi_rsp_pkt_hdr rsp; - __be32 status; - __be32 checksum; -}; - -struct ncsi_rsp_gpuuid_pkt { - struct ncsi_rsp_pkt_hdr rsp; - unsigned char uuid[16]; - __be32 checksum; -}; - -struct ncsi_rsp_gmcma_pkt { - struct ncsi_rsp_pkt_hdr rsp; - unsigned char address_count; - unsigned char reserved[3]; - unsigned char addresses[0]; -}; - -struct ncsi_rsp_oem_handler { - unsigned int mfr_id; - int (*handler)(struct ncsi_request *); -}; - -struct ncsi_rsp_handler { - unsigned char type; - int payload; - int (*handler)(struct ncsi_request *); -}; - -struct sockaddr_xdp { - __u16 sxdp_family; - __u16 sxdp_flags; - __u32 sxdp_ifindex; - __u32 sxdp_queue_id; - __u32 sxdp_shared_umem_fd; -}; - -struct xdp_ring_offset { - __u64 producer; - __u64 consumer; - __u64 desc; - __u64 flags; -}; - -struct xdp_mmap_offsets { - struct xdp_ring_offset rx; - struct xdp_ring_offset tx; - struct xdp_ring_offset fr; - struct xdp_ring_offset cr; -}; - -struct xdp_statistics { - __u64 rx_dropped; - __u64 rx_invalid_descs; - __u64 tx_invalid_descs; - __u64 rx_ring_full; - __u64 rx_fill_ring_empty_descs; - __u64 tx_ring_empty_descs; -}; - -struct xdp_options { - __u32 flags; -}; - -struct xdp_ring_offset_v1 { - __u64 producer; - __u64 consumer; - __u64 desc; -}; - -struct xdp_mmap_offsets_v1 { - struct xdp_ring_offset_v1 rx; - struct xdp_ring_offset_v1 tx; - struct xdp_ring_offset_v1 fr; - struct xdp_ring_offset_v1 cr; -}; - -struct parsed_desc { - u32 mb; - u32 valid; -}; - -struct xsk_addrs { - u32 num_descs; - u64 addrs[18]; -}; - -struct trace_event_raw_mptcp_subflow_get_send { - struct trace_entry ent; - bool active; - bool free; - u32 snd_wnd; - u32 pace; - u8 backup; - u64 ratio; - char __data[0]; -}; - -struct trace_event_raw_mptcp_dump_mpext { - struct trace_entry ent; - u64 data_ack; - u64 data_seq; - u32 subflow_seq; - u16 data_len; - u16 csum; - u8 use_map; - u8 dsn64; - u8 data_fin; - u8 use_ack; - u8 ack64; - u8 mpc_map; - u8 frozen; - u8 reset_transient; - u8 reset_reason; - u8 csum_reqd; - u8 infinite_map; - char __data[0]; -}; - -struct trace_event_raw_ack_update_msk { - struct trace_entry ent; - u64 data_ack; - u64 old_snd_una; - u64 new_snd_una; - u64 new_wnd_end; - u64 msk_wnd_end; - char __data[0]; -}; - -struct trace_event_raw_subflow_check_data_avail { - struct trace_entry ent; - u8 status; - const void *skb; - char __data[0]; -}; - -struct trace_event_data_offsets_mptcp_subflow_get_send {}; - -struct trace_event_data_offsets_mptcp_dump_mpext {}; - -struct trace_event_data_offsets_ack_update_msk {}; - -struct trace_event_data_offsets_subflow_check_data_avail {}; - -typedef void (*btf_trace_mptcp_subflow_get_send)(void *, struct mptcp_subflow_context *); - -typedef void (*btf_trace_mptcp_sendmsg_frag)(void *, struct mptcp_ext *); - -typedef void (*btf_trace_get_mapping_status)(void *, struct mptcp_ext *); - -typedef void (*btf_trace_ack_update_msk)(void *, u64, u64, u64, u64, u64); - -typedef void (*btf_trace_subflow_check_data_avail)(void *, __u8, struct sk_buff *); - -struct mptcp6_sock { - struct mptcp_sock msk; - struct ipv6_pinfo np; -}; - -enum { - MPTCP_CMSG_TS = 1, - MPTCP_CMSG_INQ = 2, -}; - -struct mptcp_sendmsg_info { - int mss_now; - int size_goal; - u16 limit; - u16 sent; - unsigned int flags; - bool data_lock_held; -}; - -struct subflow_send_info { - struct sock *ssk; - u64 linger_time; -}; - -struct token_bucket { - spinlock_t lock; - int chain_len; - struct hlist_nulls_head req_chain; - struct hlist_nulls_head msk_chain; -}; - -enum { - INET_ULP_INFO_UNSPEC = 0, - INET_ULP_INFO_NAME = 1, - INET_ULP_INFO_TLS = 2, - INET_ULP_INFO_MPTCP = 3, - __INET_ULP_INFO_MAX = 4, -}; - -enum { - MPTCP_SUBFLOW_ATTR_UNSPEC = 0, - MPTCP_SUBFLOW_ATTR_TOKEN_REM = 1, - MPTCP_SUBFLOW_ATTR_TOKEN_LOC = 2, - MPTCP_SUBFLOW_ATTR_RELWRITE_SEQ = 3, - MPTCP_SUBFLOW_ATTR_MAP_SEQ = 4, - MPTCP_SUBFLOW_ATTR_MAP_SFSEQ = 5, - MPTCP_SUBFLOW_ATTR_SSN_OFFSET = 6, - MPTCP_SUBFLOW_ATTR_MAP_DATALEN = 7, - MPTCP_SUBFLOW_ATTR_FLAGS = 8, - MPTCP_SUBFLOW_ATTR_ID_REM = 9, - MPTCP_SUBFLOW_ATTR_ID_LOC = 10, - MPTCP_SUBFLOW_ATTR_PAD = 11, - __MPTCP_SUBFLOW_ATTR_MAX = 12, -}; - -struct id_bitmap { - long unsigned int map[4]; -}; - -struct mctp_fq_addr { - unsigned int net; - mctp_eid_t eid; -}; - -struct mctp_route { - mctp_eid_t min; - mctp_eid_t max; - unsigned char type; - unsigned int mtu; - enum { - MCTP_ROUTE_DIRECT = 0, - MCTP_ROUTE_GATEWAY = 1, - } dst_type; - union { - struct mctp_dev *dev; - struct mctp_fq_addr gateway; - }; - int (*output)(struct mctp_dst *, struct sk_buff *); - struct list_head list; - refcount_t refs; - struct callback_head rcu; -}; - -struct net_shaper_hierarchy { - struct xarray shapers; -}; - -struct net_shaper_nl_ctx { - struct net_shaper_binding binding; - netdevice_tracker dev_tracker; - long unsigned int start_index; -}; - -struct acpi_table_mcfg { - struct acpi_table_header header; - u8 reserved[8]; -}; - -struct acpi_mcfg_allocation { - u64 address; - u16 pci_segment; - u8 start_bus_number; - u8 end_bus_number; - u32 reserved; -}; - -struct pci_mmcfg_hostbridge_probe { - u32 bus; - u32 devfn; - u32 vendor; - u32 device; - const char * (*probe)(void); -}; - -typedef bool (*check_reserved_t)(u64, u64, enum e820_type); - -enum pci_bf_sort_state { - pci_bf_sort_default = 0, - pci_force_nobf = 1, - pci_force_bf = 2, - pci_dmi_bf = 3, -}; - -struct pci_setup_rom { - struct setup_data data; - uint16_t vendor; - uint16_t devid; - uint64_t pcilen; - long unsigned int segment; - long unsigned int bus; - long unsigned int device; - long unsigned int function; - uint8_t romdata[0]; -}; - -struct group_data { - int limit[21]; - int base[20]; - int permute[258]; - int minLen; - int maxLen; -}; - -struct bunzip_data { - int writeCopies; - int writePos; - int writeRunCountdown; - int writeCount; - int writeCurrent; - long int (*fill)(void *, long unsigned int); - long int inbufCount; - long int inbufPos; - unsigned char *inbuf; - unsigned int inbufBitCount; - unsigned int inbufBits; - unsigned int crc32Table[256]; - unsigned int headerCRC; - unsigned int totalCRC; - unsigned int writeCRC; - unsigned int *dbuf; - unsigned int dbufSize; - unsigned char selectors[32768]; - struct group_data groups[6]; - int io_error; - int byteCount[256]; - unsigned char symToByte[256]; - unsigned char mtfSymbol[256]; -}; - -struct rc { - long int (*fill)(void *, long unsigned int); - uint8_t *ptr; - uint8_t *buffer; - uint8_t *buffer_end; - long int buffer_size; - uint32_t code; - uint32_t range; - uint32_t bound; - void (*error)(char *); -}; - -struct lzma_header { - uint8_t pos; - uint32_t dict_size; - uint64_t dst_size; -} __attribute__((packed)); - -struct writer { - uint8_t *buffer; - uint8_t previous_byte; - size_t buffer_pos; - int bufsize; - size_t global_pos; - long int (*flush)(void *, long unsigned int); - struct lzma_header *header; -}; - -struct cstate___2 { - int state; - uint32_t rep0; - uint32_t rep1; - uint32_t rep2; - uint32_t rep3; -}; - -#ifndef BPF_NO_PRESERVE_ACCESS_INDEX -#pragma clang attribute pop -#endif - -#endif /* __VMLINUX_H__ */ From 19867b803e47a50d6dda6eb67956b72caf29cb5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 13:27:00 +0800 Subject: [PATCH 26/33] chore: remove accidentally committed execd launcher debug binary --- components/execd/launcher | Bin 3152153 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100755 components/execd/launcher diff --git a/components/execd/launcher b/components/execd/launcher deleted file mode 100755 index f3cec947ed2a6b0f8a51698d308ca47651ef80e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3152153 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≥L@H0^aC1QN@~~oT*3D^^&wdZ{kS=6oSo19K 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

q#rQ%(k{feQsxBm}*H2p3pa;GxFZ_gvA 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⋐&ZyGd?J0Dq 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

Tf76GY%_O+G|w*@p#G_g7 zecV&o4qwkKVc#5kSa-|%`{~1Je{s9%XD}%Yu5$u?!KSBJ#eE(_=X)< z;DmY(WBWe2yQr?f8Q!ykJ(W}N;osg%E|Gf-Wr+tLo>iOQ`^0g@5fxfnFH%4C?^svl zP1_Chb8oD#bkTFKw$A2E={%l)()4}zhy736n4IzO=1P=w=~Kh{X_baPe%3Iii)D`%%K^4()Sg_HEh<|7|zd?a~4YP zteoPr0y_C$#8y~2MQ&s9KfRYf{s+`A1owv`i+rDm%jevCR!=exHpCOHMbH!U5FBH% z6X}@?%wFeD@TnL%q*gh4X1ufPcD+&(d5G^P@8(?M>+XBi&*A=d)p;AZ>=jH{+d}Od(Z@{s_yldWt4(z4YUU{U zj1Q!Y%JycQ7*o> zTzGw{F}rigmo6DD*=2d|2xx^h&|I{>hBYfTre`?3vK2heUtDsgeEq#{J|OT-In>zu z8I{`CYiT~;b!GWUXsl%M{4-zRj=m&#IaauE4Y&YaC{9OkLa(#=uUURo5$tm^f2((KPq1);dD&c>>NA8MlzrCW zjIZzGxiN9}Go0t(4hogc3mcdBQ#Su8Qz!l}y~B?+nyIxw_s|@42a*Qqk1zFnqCd76 z=M=;6Sn(ZyoWHo_BI5*B7aQj>#`&Y*I4Ro^7^mz$ol6Oh_v*lSQ{!6?!Jkv%>5uQb zf$=$lBkLAIS51Z8w;9uVjfwYy-G8e83}DDw{(iZOw-?I~wDto13ue-1v_5UnoMif= zlBvMXK4ZS}9luYG_|&sGzJB-{^~)M{rmWAO?oaoTh3n^e{YeKX(^%;9vx?mW-a%c? z@2}}1{nc6f;{5ozXW=*D7<^@jnIamL|C&9AKH*1*=jy+E0sI=dV13Nsr1Ywa$whr* zzx>p(nccfi&;R6aPLJ*FIgOszvf!GP$5vgr`}DY9|LpXF*0ZNqoAkro*yO91Wo+&; znTIPThx_`+n8&sM9EJzf(AH|&I!WCfls&L)|K=Ub(lviNcOW}=gJ(VoVU zybai+x9IGG_*^^sjp~$Rdv{=aR~zn;rM(*Lh)QhaYW!mD=r<~(bt~uY!V+{GU$5S> z(6t5W-|Dxy8Qh!7nDg-SJeO`>4l!o!F|>t4EyW|9o-p{LeHh7cjX56UEGupAVa)F^ z=2^r%E?~U6j~AV%Xsc#Ra)qfb?a)|olobb96)DKbr5cSuMOs}n7^x&BrsJ~{>#50^f zwRh~vW*I}B0^$YkW-NB#66Xc7>+0XI$_!^H-_yT8Oy@_K9+BXq!YRo0v1C8Hz zJ2bX^IBN}D+`XT)mOaBFJ=&L%eUqHd+CkSHtcmDcyjl9}N$?)IoJdZ00i73&HIF;!Uup1!RkU?TZ8;e&-IUG3ZH&nnI-Vkp9Z^f@QuQw}zHMnGH5#GQW zP7z;d=iU3@T#4lkp`H%Tpo=&7@0MELKwK60R^ssnmGSim7gt<6Pd-!K`|_urHQwuN ze3d^RA4Kb)@Ni*;hX?1c|KR=#zC4?oA|f1M-(d$hunHVlh5ah~HUk>c`QcOHjFuCe zV}60XIgP8+qx9iE{N_v^g6(YEGeh<*n@YXn&tc|L@U0<0+4XYfGvE^p8ww zXPtfee^&I*97O+l8Rq3Y>ck_V+6Z%S_c0?a!pFNjJ|G{GV)fi;nnB!f=K<%@aZ5g$P+Kf zOmC?hmen%JiSH_+ik$M{X6o3Wb@f18)CE@BXOMH$0*A<-!)CQB?>tM{h#a&+j)BW zZQL9Cn}M+h?EyDlVo?8+9*0fIx$tn0^ebXU`p&{f@eds-A3wvslTHvmvf)_x@~x*M z}&rpWuBSdJpFiy)bs9|L!oo#2f@CA^C%m++|Hqp zIfNK5{Qq|8ypPNNW$mTwvY%Hg9bYn1wsvrA`Np)k`{UvIU?1(+vp%e3lRpAab%31% z>{8)j;bmzmyM9^W)Ga;Qi-Wf-s4eU?97?0{@|*xl>_sSI?v zrhvN@TFE0A9QS{By)H``m%m=WWsg?tl?s!w%0p1(;adr?i7!L-B) z+L>=UUfqrlRJ3D%!yoi}K0M+zc!brf!MTWNi#46kI@)s18F-6y8}t`=-Ahlw2N-|r zANpT0v>W7Y@|y&I2kHM1d&V0)s8^*cR2^kc{7<9>;Atg??z!=K<;yG)fEv%153eg~hH=RSE$qL7$}t$IE_ z)-Z+7H0ped_HqTXsjKinEe~nEtY$)(fz5g;*{;4eb+IcYstf962 z-+#iT?OxVvK>pREW9Y^fsSGKHnz&sj6+7>(Ar+ z+2Tz0BQwS4^SLWP`nKrsepfymDG#q`j36s3Bj&Mo&LoyMVH?4t#1rMelJB^Szi$4t zzh3QR$_IKx`=G#|wXbXl-I|;xywP{{S7w}g^(nk@*T>a6Wv}Us`STIZCo-0`XTG#y zVp^n_ABO6BVJ@)U{@D!(ZAz`&?Ge zcF0djJbD+pe<$Y~_HrI`2Y(MDUnVZUftc~E9`yZr-Nd)|!;5>M{|A9hKhG!ee71P! zRL;;dHml!5w_V~1#I~Qj3jaE1CAyc!qTF?QRV!yLTe)LqhhjJWj5=GWQ!~O$S;Krg zpcmogTj+e^`8K~m20T5+-NNv7;g-o6k~qE+KLLIFW3l_Mj6q|vd$9Do=FKl|SY*u0 z+9Qx$Vy^2aE+3!J+7>&RJ>sdEx#Sh%4Afn;o%KmAOey#qTJ@ZZy4} zlo71ti3_I=_}jbYpU2rex$8fzv7@_PONi&v7vUaTRPCg;D~I0 z?GqEzGwF}n?F+HnS7W!2$8KMU-QI+Q#|G|@fuG9Xr}fuaI-jR12O9d$lyFu5G|4^jwrr1gsH}Vy+ahMlHj_!7 zG}i`EOwPUVdBx`zfj3LR8~G7en&pk;?|ckiFt4U{ZdAOf1blfH+Vaa*P^JdIQ3ZTm zb<6pk@0^*s4gEa!Mm!1)P04w_YC~+m-W$+I-!;=hR^E;F*Z0PVy$@&yOmCmE=VzH7|8nI{vccsTSZ&wO1fs4tx2{8&(5&>StC z@y(3G&oc`@&jS2B2wjw~Q2Vv!TGcbm?K zZ*M0bST-@lTbXN6=kQ^hgMJc@+%C zcfJ|*8mD|xtLabv*Cxh(@D8VMe5|nV05VbKG-tQG^dix`3#U%%DOZI)6*qE#wsz8v z^k&J~cJ>bQX{QKZ^c#G>PJ5EGaT94FHmo*&HqKw+Q@)Na-cYzKZS&|F^ikw&J9}u7 zyX!m}NwVMR@3TF$)RRZ-d1|k1YJg^11uyag=3wvWOn~g?rQsnq-Yy&6<3;A!WaF@| zu`#;ZKM3P9E+QT?KGM_{;%|{&Z(|*-+<>p3Cl35>x*Xp?Y~W6CUtZK*eLlZOpWjt> z_kBxw&n>3bRTd0Dq>1aymta;35vNxG>n`mf(I6x@Y~CY^S9-018&~4z3dMZ zn@{vU$hh^c@-|04o?T^>S)tq<;GOkvuuj^amF@60zT37-boMkqQM9OJnsnVc)EAAk z^Sm6Jq5_*@i^=RQWq&oPGxX4hF+&nBm6?s@BklgMHEV6+&FY7*3Z$N0`eda+fRFhIo=)v{NrejbLN%ov!?f} zjBPpfa&y9o9@esu_?g_C%M;2SE8I8c-3|8r)@g|xVp3eXcV&UKRel*xln$vn_6_-) zB>P_)W^I=QzvVl#@S5tuZE7Jl2!4>9*QIamnhzX{*(0f8k7NtGvbggNL%8 zI$XK(sU03nD8G5T_il~*?jGL#wO_u<)iWNa?}r&ddlXo9= z+gNXIyxit)Dy5ClDQ!#+w6TOXnD2UX>+OkW@t@tqyVmgM8(!o&{jT@@RpWU+E~V|c zwC$v{eO;jKGQaI6*Ee^iZTpdijVW!93yyYQd_0#k@RmaA07iYRjukBhG zYv{sHq;``V7i>`6LNPIAk{!zB^?mR)eXd&`K35y6+IkFqY*%^f9f>zs=Nj|}<*0c$ z6Brs|Y2ZO^3*kc#$!~_OUu^v&qx8J>li+j#whqsm&;G;lF5W3V=^!|+{H0k-#-Hgf zLf0p@$DG@8Z~}QX6jPEcK<}n(CpJMhbtjn2+D!6BoLF>M&t2>XbWS&Y@5f?^MI#FP zUI?3)O>FD2y^Jk)&D2Dk7{mGGAKN~1A?sEu~+r)+ukUD0jG1I^o^{EZ(n8zYRx z|9uy~J1Lt{RCR1Tuu?2k_dUcaK}Y_WIvKOZb&XRMJpr%DBX%!q$$~Qv!e6?J@Gs8v z;g(VBgjO8OwfCPs(E$87R~r@lj?{E#C$=-jYk{9Z-!hcTp`6Y^te{++ayMm|jWJ^C zJAvtet+Bdnhgd>%H2FHi#P=YtUKUN3Lm%zh-+&JX>t9EGbUIsqFMEuvBl{r0`CQTQ zgYcGv@NTu))wE`ld~j8)eH*sQYGNVPr}Vu8YshB?Pk`ooim*fX;#cqId;aO*Ih4E4 zxckZ(^}26zJb#wXcDv_Cma<>U?<3~;`-7w6pyURR0 z#K!bJ%sb`1pUv2>DTyT(UNhT%E(*`?V^6+C>*hYsaNm!Z-G|;_zb_b(0WN0M&jQbO z2#)wRv_En%Cl)=$S%_@MJU;%?)te@;#{J~FkjxP7UkN^BfoBuX{loDB=M%la**;f{ zT^Dg?-QaR7a-5he)@dmD@0KXtVVRoCdj`nfBXb|Q!p1L70N&Za z8~U6#0shRpcjx}(!-*{B+Kv3n^xk)qM<+9P%O?B&ik!q;z8{2!3g*X7W4o|Vm|owG zed@}3->2x|sN~C=f0f9k{eNX2?-cfW7wh@c=Zj$i}MLj z<{Xv$gOv@>=s9aUS)VF@-w55W-tf=*J)8O7M*auBpQXL0__O%`u@5Eo;zN9eeucN% zGxGP$Ld2KLH{8aaS?vY#X{5%dX-_lBcoo;c`G;Da8FkNlMC$Ja7sZ2TM9gl*<4HHd z&V8HMsd?>;Yb9qCXA;9KAIM79U$F>^RfwCkb=n^(MCXiCMt3r6oO@b{_k(Xp&nz^i zr4$=L&l`EJI2Fy+)iK;y1L-fp-{-G`7mwi0U3>bHYp*XJoWEk(UiW0&dh}K0*LD5B zgZ_BwQnJGhHc8Q=Zaj^JDRo~VC%(pY4g9_oexJ*^J?VVz?@a46ZhPMwJM<$PN_F-3 z8=kvkclY&FuRy*B@G68%5Y2>unPU3$*lSiSjpWEC-786-?=kLReQ?9h@8&hkFC*6X zA+AAjg(rq^uk#(T zfyooy`7~>v(L&x(vl*6BUs&qynSzQ>-B*sVaX6>wRiPv5W z?XkbmNN(vywHc=EnY3GJ(jF?q4{v`@CZ{oNYp?wP@9*MF#nzng=2=Z*Pw#tCo3taq7jrCGnm|5gl@=ykW7Gx68_Zl|v{`ue(GHs+Rn zQEkzO?TbEtM|;7(wt0P>;&~>2Td42S^OQs`KL35{OL%Z;)v^1Cb+UNKy2}Q${(s>% zYoEmas=3JeA0mfMaQ$WHdHx=oGgdwyJ+pg~-KMdkLhrdhnR`6K;O}PifQqLI`&N>J zFgw%T``CUhaYpYxu|cu6*%9yAFrMMNk^jF+erMKC8|o$h;B|SBWI=Hj4YRKAXu$7=)lOG zRaH)%+Shl{XdC-;+SAx`r;Yd9wSbtORf0S7-Lc3lQJ<3IivJOPn5BccEqmR0@iJd zw{F#}8*`bG&$?B!ZY%JS`+Qrl*_4kC!TaE|Q#{i?q}q1-b$y({_4eZ;=6(qpK)%hm z2>!3N{<^{atiKfhvs*{>-UZJ|1NXO{EjpeZ3H8SD9W-B}T!c3#_79tB&v{CxNQ+!@ zbnDsK$Fn=ay=~+=?*yLBRiQ-lwKHq?n^<%!{8#>g*YP>n`uG9%YHtyGQ5;g|_f2#& ze7f`dvFQFtTD>g~zYdY#X%#%WnRxF5;CeT>o_T50ud^K&*AKDwS=`ky37l;K*M-x< z^-17*v4`s);~n=hSX|fMgK!<&C($+L;HHVZQ(Il&`T=nLFt~mIT-W~D0dV~QIB*c0 z?8?cqxUTx`*bE)Wj)ma5)^ND+uHA`}yI_eM@0C{nkL-oCqw_01NqH~j#}Z#dUtH4G zUKnkC#YBbEUFb~0kNxWlqcib?b|QnM4-Z$I=PTTa1y1Z|TbaDTgTTBz5zAH08ywVXeI_h~&jR_EhxXvV9y7KYDn zM{W4HztY3~`F{lWt5R_Pt-KH7{v;3g)wbsD;=H?$DLL?S;yknu{3f5d+3xS$k?!wo z@W<+Y7=w}z)n9aJqpds^z2hSEF~|DL2I<4!GmtM)?X6@!dZsgKE1~n1$OnAHySER@ zhxPN359!dw0qCM1y2wN38~~PG&_(C4S+&jJyxQvjE;)U`>#pyzhZjk&?-m{8x^#pQ znV7I-(V494h!Jy|emxhwF81(xXlZQ8-OkY3hr!R`^J7c4IKwSoKMdY(@$mXC?GQ(d2_3KUW@Om#=2j?>N{0wC>6{32uvCPl4Yyuj^Fg@^ola`ZM^QktmGH zCRhz#=c203D(4Oe(4}2Hy`ts&G zUvO#a){D^7+7x>F3*^mu>04>6^B!O3+%YI~L|Ye>IUU0XWX|izrHjd&=g2+i%beFe znbUtUd4ufw@5q}{cTZ_$;02kGjUpLgl%W{<9X`*k8X`2T3XSbDNPjcpFP zuThTn-D52;GQHY2mR>FSCZB44(ofv zuunNV|MFo#`An$z{a#|G_xdxZoTE8XeSOFpTi%r!lRu(*Dh=Y zjvw$7$tUFLM0a|4CY@+ufQS3|b}A(v(60HtYa7GdvzKJ-vVlvXv3C6F;ybc`-QQnn zkiREvVjC1w(vB}rHg&nFvG^rluFgK-gFh0_i6%bA+PSpi?ggu#((t{}QebVrcg6cw z+@td*PS0NYv(I|s_6)fD9iJ(BO0W%IMx}XkWRGwlhQXiTTAL4GFy2{hRnTvR*KY;= zuB2c5Is^Sy{7yM&oLXDgQy;yg~Ny%3F&pe|;7`VEL`##u0)! zymz@7rv1eA!F~9A({?7f51&u$lYZxWu}{m zdiKU=+rNKp;|g$|_b;2@F5B?wh5owDIAixFgj*w!N$A@<$s=Wbts}tm0PGF_eE82n zJ_gShEN70n4{)}e_RrEcd)j?@Z-W2EwB)^M`pU>>FW!3JZGOM5{}3OP?Q@;_%s|h) zNPp;~^f#DqBM)DU#w#6`oG~_LJKq#0bndm-6oR*(X(+8)v1u2)O?&!D=vsLh;@Cpg zmgjte_LuQfaen#3iMPo&rZOr!ct^b#D-3J|mr@Td#DabhA89u@KIq5e!7+QT^w)oX z{y7DI-XHVk{qJ6zK78v^=r@eLg8yN6dB9#NN59&~{*~-K@zo0Uo(8_N4iWabF9kkZ zBF5&B5iZNFRZNBWy3R5SUc%K6!2_LTv8Tk3ZJZ*oQ2r_LbMfzImiX)D!UVYOG9$0V z7x_d(OUa-N^l|9Q01gG|*J<5)EE`_%2)w}XT|Bpyy(i&M9^iB+p6RxO`cwQ^$BpoPOTIR99rSTu4`lrNjb86?9#Q+QH|DSIYNj;{)GeASTS zYyOWvdwjvG_a84m`|$Ddkxy)pJy=DVz2soYBVK7Qu*`De|9vg^yp z^Oc)fcKvkn{FWV`buP!m*>+iYy_r^O^M7ULlwALDtDle)jJ9mKjM?W@$7GgX@0i8c z6OUl?(~Gx>zC=6v7t{fC7f~3JDmNJxZ`;e6Lp66<)rJS|v8n(sTfs?}KhCtY>bB(m zKY%YO_*Yn4SXWdXtJC^IBOBXU&l1)#$Y+JqPtyMHg7{2d+D}+({jG!cbjcNFcM|*? z1K-(VoVQES%?mPPHjd<5tfBT*v&o6U`ObN=Iok@rG4zLv+2I}FUkB~U4&TnF?CJD4 zxx?6dxAF+yn9W}ad%cDjnRV~=KW%MH@T9E(+ypP@^KN_V<%yHv@eXA2IO^hWKT2Ft zi;W#N>FY9ih7Xs0+``^Ptl19eaus=$THz0Fj7T)WKIN|XsOuB?#8gZpmy+z)Dqz*b zSyf^YnOjJEnFD2Rp^OVh*PpSCyOIvTk9N|}YIw8u;xzVh`d$Nn?)Ug}4g48enlc9d zTmz3(j*bfEP{SM~r*c_C)eFwM>i@X&)|}gsH8uFLYmmFel#fx~wZTL6KVOaxBO9E3 zDjPFHnWH>Y9qG}*@h+v$vgw6=)xe^RdFoTo6swqq{Iqaw%HnR{Q2jO=TNdi+M8A|T z%76D-;JoCvKn&hEV({8oqjLNxo$wN1u&x@oXzeryd)|+=(_IB+^ciRFTj0xEMNitF zc+=e{{6VqHQ-ZMgD6mj2NXi{C9hW6a*`s`ka{PYROup5gKX`%PP5M1ya-xv<+~>V^ zq*M63=_&c)w3i63U)0~4a(|X`hNJ_h40O6?WU=t98(611>FXx2&e|U@2lvqxEG!oi zbC3m2%4eUMC7jG?VLyJI_I95m)-kgr7QKtuSNYRB;m2LlwM|xw__FMJf3LCw9sVui zr%v9&{t@j79$G8KM|Ofs;?EY2B_HKHLlV8gsg=HR-gB!zIJHHd{;(SSm7iYg)5Th4 zXnpXb1bNJ$PUi9)3qQ^;c03)jvhW$@67u$AJD!f$HKfR|EUO<3%4;iYtX|~iHIxpi z^StJb{->pf%Cn{kLgb>uTk*rEAyr()%`I7~5G>t(#=3joo9fYA$-yQh00VY|&H2ncOGD z?=q8~h_LS!A67-aEAr!p&b$)Gw<+84`J6X45mUJ?j!(1gT>s=UeDoD2lCU_3kAS_E z$*XwQzGS`f!Od=U~5X`-5kw?Vj*$$RgyC?Ab7O?HKflv<|yC;6!2~3-*+XesXXAkLF_*9Ti^n4Zi=Sj|bbwER}(nj!o zaK4c>h0%^QGc}F&_7E${nU#4p*A^as1DHzJ8q3_4<69BUM_9uMc4Q6v=rh2RmE^se zZ*r!tWM576-GN+BqCZG?D=0*Fg*G~n@j6fPoChQ2?+n66xZ(N*0tOlN&%Q`Ok9yR_t<2{7Im zJUYJM9Nc$q|ARb7@>Mh^9ViW$$seM9N*909>#@mSE+_71tjSC)0RNhi;d@wP{JrxQ zFpegE3ts4G=m4shMtqX#(OKd7-g?YuPV#x#wLqpz*1i>U*F!p22l!*p_+SsEgC`mE zwSDv~?XiJl8TS65bZD@d=h}DZh6b~84{Umyyc@HI&uY=0?RfnC>|Gu0%4yzog5RC& zYi&2<)+ts()Z{1xG0X7@sGUgglv1Z=-G$iJN<%v^bN(toScqKW6p2E@1#$y zWgVL>K1J&D=_eIF?%Z7acOmUBr2U1oe+gwfS<7zv5S_JJIt$m&_xlo^sV~;Fn|`$y zC>{L}>o}3v!M9nHyK@h1>Kc7lZ5RC)uxGP~HS7*&wsfKctY)o={pe`}Mk`HP3%=FF zPH*iqS^HD0=h)#h?b>Gyto{B?dszFEtbMZ?yG}X1+6H8{JBJ$D(7x*dcsQ}3=vCx1 zr9Al=TV}x1;W;)h;n+Z*%{d1c*Owd8y#5p)Al;^!T#@Q;Kfi0}PqJ;0XSn_SF?hyn z-I$|4jJSFr-gc}p^~6=x?@{~(``NxM+>ieyjkworc<>(LMax+?or#cbKOH~Qf_vh9 zTGRdH_>!%Ves=Eh=3BAl$mt?kr?T^jZ<}e)WNa#j9B8q8^~EqTY_n^ zlhqRIvSf~>g$ZH4f&%nDb8BsQry-z zH7;n|#(n0;c<+siwsbaIHowk){scNYNWRIe2eoEdJw==;81jg|59w(m{yvOe9l5ly z?>hsr?gP`#WjB`%$%-Y1=>bdABdO{mhn*(S?0i zq_iLG%i1ijUYT%+Z>)U4wQXE}I!GU5pbzM@ehc)Gi+>aPI3oRsIHD=CqlIh2vp+&B zyZ#(nX$|18a5oiiN3dq%fj-{8$lkDITyQ=E_{y17;j6_{@HL31*U?T*3Z4?5^FchN z4IfYAx<3M(6s~rH50c^16|NL6fQwfDMOTnrYw;7D@bOcAx!@RsFwgT~?)ytzf8wCM z;GnDEv!0rVK2{7rSPl=k4qZ;MJ@TRPd#Z!pRv^8Nch1H_o5y+-WlF)JT;jsNK^&Xg zzpIagIX4+5@37*+M)ytH}0GME>>myeUrPPRzUpBP5|RN}95z-j5Lk$0<)l^`bt zpCrC_?KO)JRUG`>@ig9-9b9&N+hp?ZjGkd*z2&P2`kPeG>b~m>>sC^S{Oc{_&dxbL zK8F~0#&v2~ytaHYxp7C&Y^fNQUYm;yQJwN(nZzMGz4G(6As;w*)-u*{j!HjUK4vd6 zMft##PguIFd)}o6xk0Y5b>*CeDdt%jvLn}oY}{C!cI9U%AE@h=SwR`#bF`3p(#wKl zcj;qrjVe4nvH}>1fBNTzgdcu<|FSy=^~rX4hIAaoL5gn5$sa2_Yb)!gd32&bbRpN~ z(3ZxhJu;o+(b)ZQMOgE6;GApHTLiQ2VKeMnOr(4+aLfiq!X@QNs{uwCz-R(+9m3kr z9s9r_XX=fe*7~3*ToT_v4bi zPGnt;$*PAp^zEfiDR&VFrhECV*a^w}a@lP3qxREje=k0Oag^0Msx7q(FFRUJnSCaI zT^aTBs4smsh_8!i>r~D`)-)acG`&`Ho4`0CPNbgmWIdVSuV5ry;9sCMtxqV2b0feu z_m0@{!bPRz>dviqh`I9D(WkdLcE4s&HxFqKk=QQ9;`;HoIpF*v{4TNq6^p7^+%){% z+daKh^Oarcj@k7?$2-2fp^bav3hyX7{%^|n0dELVCr+K2${kPKs*Tg-PPsk6qL4n= zFG$QB^W_cLcn|5mfH3=_gFZ5^U6WQji#csE=?_h0eZv|D>smf$|0eWf^fwo-Vdi>b zlzAN9F>fE`D^27f!*}$9C7q0GFXMW}8&})x7|&u$(rtg|&*MU4Xp%o{*zNXC^V9#} z`Pe<)ai?;cz&l>>)?V6d~W8Bzl_+%^VRqeL3%Pe!xnQfu|GpfHQ7Hx%(s~rb@ zO0wNROOowh8{O5JWIUt2K9}Mo4}`ieq&@x{4>5UjeI!+drMl+;F*7ak5YS)^G6jOS1!F~bOObEyaf$v zeY&8}lkny0(M9+pTs@`+T}%GrQ>@ia^j-G5Z(kVUE)Vc{A>V6SO+tRvlhnn2i*|9& zp^I|kGw@3cg%+`cP8OKxYV5Es>>-Dt{UuWH{u3OEd76v|639cX^6y*9h+Zzo7lHRcGZ23^{y|(ZJKma&6X``U2KT>nA<6d0FA{X7)380=F0NO>g$rCKYxeWVvFk(fJ$gIW2T6 z$;~~>STDvjFh=Og`oUN?^nc2t|Ff2B1F&3o0az*rUU2N~cbmQ&nY+bXXg^6Gxxh~T zpD%ucK1DnCU1fFR4bZX08EF0Me78JcSj3)XsMR}g{isV%+=t|ze_g5PcgOl#c>Xr+ zEqB}8Wm{&5r1v&$u{Py=7af!U zbMdbvv_cHT`grTK#L&L}r>}wjc` z)2wa{Tt`dCgi>>Tlk+2D}w!BMQB;uwqgod$lX-5sN28`vKp*JN7# z8Z&Jwcckr>-Tw>9tTM))7Z>in%x^u{cg_Qi+P^Go^N9}Adk|eq?VuBJ?_SuR#rr$n zlf$*;Ah12fIC6*G)uLF_=FHfJRrr7>(RUB~i4QyJEpx~Ic+=e6eVZI&Tx-mbdbPFB zgr%Rf2=`TP2Wu1M`*!NDq&_$nl^^6Fd{F0M9S5C>+_mJ0t*u0E=Sr_4$I?FVRpoRR zr-|?ASa#0kIp%21*}IPCGH>aNarB-a@?Pf~h~;Uae2e-j85XL2jy8eAD4iwIzD+lM zXI&lJFfn((e0J8Zk*;84cG2Sw{-I!MBW+EfTqg6z?rJ z3j7_tvTyP;s*XjP`Zp*hK8U9 zmD99|vbEWaTfU=lPP)xMvz>L2uDC#J0FM<6A!c=5d1dx$Ar0|0V8S zz^kgx{QrH_8j#WD&7Bqnn0aI&E zp<^pEO#nfIZOtH7&)6A)QNX5`2%XxFo#C8ZxER}lwZGvAHvi9et-X_-!(n9R|9hTa zo+r=Qd+oi~yVkqj^{)4}-c?0grqI{3hPOXC_o2`R!MV$|rGA?CiLa(jXFaNO3f4d3 zthZyCyX_!jv={o%O&d$W$Q2C6QhTqVj{(|=k&320q|W zmXY73#h3K6&Wjy7ZR{&9gO*nZS`x$~z&}%Es*8D@3oR(FXSU@1HgbsS+z}@jE5rw6 z{7vlb7y-VCL1~N4u%-^;7=@PG9`5g^{Ai~35Xi|}iCo|V7F z%j$u9x_p-yY~W{ux?w4@aFRXzA@Ehr z{=s_op*(`#a{%3=lzlT=XS4=Ohn)mIw}4Oip7PO`>Te6j)y6w$<8Jn)VP{`bfSq0Y z92IX?#Ivf}^J3BbAbyIhZ69Y}hl!V{4a9=qaMr60vgefnv;1f5Ib=WMR_q(tMb{BG z({X^fdCt9>A3z@}K=;Sq)T*3@s}!T)bRQ>|uF1VM5&yBSC%XP)t%J(jQZg31De_pL z8J`tvS^ZcON6;$YG(2&}#ZK>W@&uVWE~XA$U+mV=#6CH%trKXg*3Lq7ZOMw2oC&9~ zPa9wa)`86<$o$xO>7)7r46E~fily+U_-TAcgfG#$H>}S0DcO-bbbexWxf*f;H%s=pA~IQi#Xb@m&u*; zGP!cl1HE}B8|{DGf=+dovqL!b#x_danCLJ7{cAi2;vB)zkT^%(n>dBRILAQ3ej^&# z3=N2HdvrO>tV`Ud(WVFY5#V|>q+E+heGiOk+OP^bs)xQM4~VA?DW^V_*L$?icyjJh zsscQCV=kNEzFCaB^jp@|Jm&Z-$asa&Q3QHp4QTLaDiRHlf4_8p73au>IS)y6Ui5&K zXM^a%-RRrcV;X|9oYZf%FPrCn*)Krsc>^(8etP*M=kxgQ`?xoBpcof7K6r-cK=B#G z2iIiaS2iAf(Dp37CIDS0;YWGUvf5wCoFHx^?#YRgBcyXEcB_Uy|CC%p*^H~sdYTOH zIt1@JfS!_I?UKyg3tdS!-Nk%TZ0#<1&;jOEa`GU3{AQ`857CcouMv2YY`coV5|3Ko z@+k3~Ecnz)WG>N>$EV7De5%}~g>rZ7JX#1r3+entb^LF5OCda&y?b$DEu~X0kXAJmVm=R{q^=vk$9>YvIhJ5Alg`eyCv=JV|`22;33V7?aMWbLxyP z22W8ev4>aHLEJ~YnX%NlC|=*zxcCzfR(w^N%Y!}qc=JViW%^uM;N!vnOg$cbOBa#e zem*qr*XLw=6OTGX42{Qkv?gva`FX-AWUT>ybEna#2JL<6>unkNZ)=>u5@KNHPvnef z@#BE>BxDvrQhMKdU^CHJ0Bme%o1p%=_*NYhyakn^&&QP5G0=TP1^^vi?ue`aga^ zzambhIO5W?Xt;7ReVd1`MftLvqF5!mUigCh%~^DluXolHcg}pfQ#okK#h};=YrA=M zYG6Gv<2w?}r7vG%@!kcUlo3x3Pn=$XJY7mWxp<=&Q(j6;xkuk;$~Q}iTU2bP#rkL^-@Xi7^rd&Kg*ZttR|9)pchQePHmwf}?7bAxN@%^Ry#!=(3J{56Yr>gjuz>?QDm70T5CZxRhY;Nbxp6&~uqgY4U7 zzPS1_7YCXLPtkt)E6C9d&$l_6&As9ECP%Z$DOv^&nAZb1zz>sg&%W9dWX@}TW-;%Z zSVu+2p{TWI6VJG$7QRr4ZCZBend0mEMzPzx6PeilWDvWtrQK_fOE-WnTb=Rbg5#Wo z2R?7d8NSe2b<@?cYUTiQEm3@?WTIu{?9+V(W2fBH z%KfKjj}Vusc_cX}#CzVg=1Y?kxKH^fx*5-jBg|RaajjYGPm9-%L`UR($u+g$M!YXS z>-dYF4MhGV&Pbl7aqgN8U&9B{_qU8QF-ykoqwzzJ2$nO~;DNhn2Yw!M#DuqhevaYG z@vi&B#rgErp|8J*P$v2ZUrU*1S`P&?y$#`Pw+-`<^H^h(&|DXFDqfsiEz=^o!G?U+ zioLWYfe+H(mIGy)_fBes+S09aE5h5aq%E>D{|Z}95FW1esE9FM;DnZF9;k0xm%_*f zS5YUvhH?4W@mW`fwEr1j`>*Al^ykeyPp5ZpuD?D7J0a_wneQ{5)W1w~=ljh6_wzjg zo{4!^j)NVtS1oXyV@Yz*8=aH!^3$@nPJH=mL)VFO7FquJe1`lzQ`6RqLgrOhmNR_< zF@lmqidc8cq5nyYwblxFlF4(pne{+CX%oM-%t4LWM81{mP(vF(!aUU46M`>AplQ*C z>^84_-B~XmqIpK0{%0@qOzWlgha~DmA9>qw%)4u$)lZqPN1d+~8arbH-e9vHx;D5s z$zLSdOEFoV{B8Bs!Szt0qRL6_h>L0dj| zy#ER9lk=~6q8Jp+}ED#((o-jFKZtYs~CaIh#qbFPTj`OI!d{8 zqQ_6r=ZYosQt$Ko#j@G4e5d5siaX3_T#~d)x_q7!>?1$Zd{bZ1*#B$wC77ej;9t@9 zVa5LbO8!_z|I+Q9>GlC^6`hgV^UYbq5qv|lxnH(9UwJ&I*1)gj(-#c!8E-!7zK!)* zaBBwOT3Z0}#ZhOxW6rP`;f}xBavN>QWFNTGE_iYw{yQ(em-?<&-=vdOvPKqOVe`DBhvilhheEDxlY>5;#)KFD7^FW> zhVI^82@Og&QqH;sx`y8(BOt>%sRtf+*8d&<3CUt#|5&U5+uXO2y~KZ~@cUmp`xgIS z<)3-h=q$DC;#$3fY?{Y!t?=*q=;~C?dU3v2?)vB+;(j@GFjkGuH8$^R7vHmyiHaPh9-ltuqA>z8A zi6CdV<8e1DKqoW1D$p_Am@pI+d7WDx> zv7dH3?w|PAvG()cC<%`4d!785@3oJ6;~(EIX=w^Nu@8!zH;z`Z_I8hn`2 z@8{V6`d0^2{Rha+-w;&3yvBmI%VWv6f~jQL*jN`l;Y9aG;S209KY*;r_a}u(vqlD2eWJ(V(ESG| zYFhf+$C-Ut-G7RtDx>&v+9N5+%!!>A#?L2W|7Z`U5|0N{U4IIu$~fn^XJ;_g{c z-0ECwbARn=_n^wxymv8AiJ$vag=Ew5w+j!RE*5z=9#Uu84r?Y%gY$Nk`6VErg z&!fTI8OVP#62J=puf&D-pjYS7F|m#KnRhw`@H(D`FJcjF1-C)JbR3?yZQeU z|Bvc9^(CGQrWSE+`uru^=Q`d^{1SYui==9~_Tyu@o;?>yoy%{M@0O|_;TS!+<;$XX zXGii`#^&i@s)usr@scie)>nA;CiveFOqC;N_iX0*(-HKL+IZsGNb1}D)YHLpcv=~C z)`}nH+w+_j2xbTEf!BP=YfrW1Gq-VnEAN}SoUo~Dw(4R%5d2lZ@1c*E@s91|N5Fs0 z_D`$MH>q<&BsGs~Xa`$;p^;t7^lWn^wTtmK?U-WQ@hQrC=zA}6Yb~~kH+bGmy)*eY zu{16ogwu09c&#&IrO@?ds*`VD_3Auo^EytUd@}D2v+uV$tE`S)NO=Ke2Di+En=|2- za^d!QJ=+iNp2&<_gO5Ethey8i*ihW&s$F})1AH-?Yl9;fw*l@Q+Th1+&tG_-HOJr< z_`>a*)al3VpXg&^KXpD4Ngd_dkK1?j4BX!3;lai2LGBH1Sxbc5Z*YH|`cK`x%B?Bf ziXQ;)We=W<+c#AwxE230@Y;%e%N*MG_rd{s&7~d=uCO%Q$o=EIn?&D|Jq!7z5fi4_AKSG$X!gZkLR_g} zQ~;v{7?07mO1?S5e=YwLd~#GbFruz3m4_@<3D1on%cjdx)yPupbLyx?ma0dVl5g!b ze3z1?R+9fbGQQl%QnF3R$6ZKVRK&zS$z?% zBRbOo8BDgkTHeiL&3cqIh4{z$0II4F0y80pWelMIoRYBYj1+!%b(j%tU(an=`iD> zJwUHJ!ylb`VR--4{{HEQm{&*8TU(aidHe`6=d{vrN`Cu3bn&|a@EPbO2@M+g7W<(5 zalO#V!6xFlpexmR1ex@wC;NB2jg27$U6p5ZR{BS@ryvXeq4u1fwe5Y`Ymi~0$d~ya zBpzG`{7gAJwLhyGSyw*I4dAtY>CLHy z=xCC8v-5-6&ykDIa{nXP`9zEQ--!&Hjm`Y8z`>^R;rKypaR-h%$GXsKx7MQTFMnwN z?Tq1~y7KsHzT2}H-z%{(1$j=(uEmAN^^M{s&BzN$VAYrV9K|7SvNU-Y43ui z=MKo}(i^JsotWzN?24L06`WI4Kn#R@Qsy4JqV6j^9}@Do&O5GMesjtJX6^EG@r|#D z2V7etF}?9T*Vb5zy)}w1mXD3Kc7$gmbm<)*VRF>N+jGD_IN7@!Ub5%pZTk=X<^dD4 zt$rM)TINJ%{8O+9(^Lp52K(%+MkOND;Kt%uc2)P^O%>!r6s_dXw&S61E+`h zZZ&xACEh3o&3G{jYbz~ZxyQ#-jQ&w)^Y_1Qa*};?z{Z}qmHbrHw-sCxLu1;o6=dzdKhq|79`GPyo&UejQ&!?qx*`yLC ze(*Z6f72ekIW>*nk_XRCtz=INXI&ZEDLIDjK|X{eJmzh1Cj0mG(BM0a)nkF-9hV(* z-uT4_HS2!yk>QWtcz!tEK@Pxva{L{E-u@68we64Ox;#J~hnX{fobttZJu4t9-7BLs)+mo-t@L%|F7vJ8_ybCj* zl^6C#)xkTm_a)(D@{y`8(VV^&tlsOXw@hOiCcZPkxIts^z;8i2FoxLM%(n*L^%|}t z*iY>I4sM&_Yp3c{y{b#~w7c(#ri1Q$S8jxQ=H(pMZ!Eq)$MqG@apyTUlZFU*7X4L? zn~RRedD6%~g6Y7=R9_N)5rB6keDgo~q4WRK$K@kny=!%T7L2W6o&K8}nJdsvGIaK~ z3Gg-jb}@drTq_PueBwN=1=Cw6|EYp!IpNeLY4c0@KCFFeD8E*_1MC%-El_ySzOi6* zSWG$4O}*g#Dfp!67xRnQ@V#B*uvO!)(D`FpPqi<)6)XVKLUvHBHD@hrnS^=PJcRbpT_@ zirN)VCdq%Nc0AQM%09YS251z ze5YJdYAb%_HM+*HY|cSatd#s;lE1V!NO1KpyUY3>FJ{Q{Y-1DUS>a6p@^8%ADB! zKgui@UG0wdYTtOL+n{8Jlugd^Y@1J@{cARMLimtvunT<1Hdn@d6?rDAS?|D+iJcfy zZv5}gKpajI+;%blug7m-VDO`8Xb=ZR)@3R6i95REBMwGL-HTxJ!U-kR!|D+ChfbF||NB!~ext2IHKR&fjTlA$oDagKW z^gF}e-bKt?Ke>fg@Vk}sYj<;o*B<7)-dj9wZG16n$2|TIab|}%7W42C^^bP$#oja@ z`T5=z*vf_T1Udyi%J@li;6zbvyq0|q-dGhuD+%h@2#f+?U=Lm6J+t3ZKi~d7!?$Dk z)@$1V-*;wg;LG0FyuXKYGacuJHtc(%4|K?*k*|Lw){QNv{XYijMt!^Es9w9^U@& zseNd4=8rVz;XLp4VeAaE7wWmRKAcbvAoR;O=)*w!js7|4Z&CXzuPRLikwb`gY>*ut z-fPbF2s@7U)IBP^V0Z32LjS}MDeExwzblcGF<6$2B>(cap zBkO6ck-R4w_wljIp%d&8J2LVZ_^R1MgbeuS-<`^1)E4iI7!t)>y9B)TKhx;>b@X>X zZOYkMS5wa)SQmG~_6Zs)gF_C5FfoL{J%`p5DM9W*+#>|U6?Du>T*O?&?p zmBZ7+{7zo$tp8Wwz|--a;d{Y;-*tn_2i!UIpWJ(Vz{B5EAO8ILoQ~BEGyb3J{uTdE zUG5P74}I>e+B3H}#F?M9!{9s4MKSrHH}T(szpRemr}&?M?`hfQOR&8-E#@2a^3C8$ ze^!Sf#Fhjuuh3){-hY<&J|3-3h7g$H)R$G)D7UV<>{Oe#6 z3mn!v`pmb-I74=R@|W!29e~YQn}U_gIbO`!T4412l6~neoND?YdKa9jemMD8eK?$s z3~+vTMXU_p&>e!)kr~b?Kb+d>9}Z{FDR5dNuU;M7On+_=oIRQ0{25>V0NxT;e>j}> zQ{Xg4Zo4X01e_}cr#&;AxBPIzGd~>8&J1vVXW@(&oSm8B>>2`R)`!D+c_c^Kxc5Py69S&j8MgL*W>D`|kKy2s-EyoEJ00dCU)oSo{yA>*r5_gU$IP zu{z-VRB)cp4Cj77oaQrt^V}(LIwPFzr}@(=IL~E<^94Vg#2L)fXNSTu<8#9`v2M=D z{CmN9HZzRnYadg42{4&N1R62KYhr4B%`y1x{zAaeAx_IF|{|hRkr@^uwvm z1P9&5kGCgIfzukfdq%9Ce5PXs=ZVa4{>2Zc`3&H!%K)d9oCv^q|0Uq8%M53;A5PmD zzwo&j3!{DR5dNYYJnV!P~b5r!F&`*?u_DGk{Zb3Y^Z!@$6VP zaFz;AO=dU+emJ#f0B6}LaE?ZPcV4WUb1}anILk7_$??N!J_9%poC1gWW9gt=a307E z=lA&32lzqT8Nj(e1DsdwJe?*u_h*K)-w!8|2~HXxy(a^llXjkt7My!B!-@OhI99Im z%Ym#ft&yKty!_?GL0Qu;13u%gBR^vujghcD6ZZF~spAQM9pOy!UE2IwlA*uXvhNCd z{1q^ImSpblLw-2XGk~+`6gZucS!0b1{?CH5C^MWYKb+<>fKzn}oTHH&K5FQ`S#YW{ z!@156r|neSBUd#>=%?h-Z=DABv;1`=POSqPXpBrjMhCYKou-b-{yH2hH>c6j(MYZ3 ze|Mjzj*t55$j>Bur_sQIp*S;r{n=>ZM#9@~5zZE5#@R`H*8_7ndbJ4A_I3|r4{7xH9%8SE89UaFo#y5MaqF{BX;WjQu_#u@9Qcab zG&^&fa{O(oJ%hf_916$Gfosn(yrW!jW@d)-d*T&b-oYF=12|Wm0;e;w-0B_E1m~*E zaQ6G*w4DK*%ZI`-b09p@=%1qn=km;O;(j;@Z!AA%$MUVAW9h}m6_C%>KbAe4hsEj{ z%dL#%0e38a$Joo(${OJ3Go6vcw(or}(56c=w`sk+9ar)N!A`j%da@S|i`JvcQX{siVSQM{UMBjz-?GJaOx3>bS{Y zNAsz5FxHKc{E23ceCITEl=$mtJGBnzzcX^pr;Ht8)oJRu%wI<$V;x5$Uz=h0`~9b> z<3fKOjE+^A59K$?uC@wR6$aWvN_jkfW({O2|p+*_0-ypiUhLxYRbF*H=Z~0kSiVktS>Cn?z7xfl%{pkmi(Vg)9lN#a z)>6d)+iSkDW$v@kmx`<8*X8@KKnHqO$vb7>&cbltqYcC(nX<}xwyct}Fm1|PA2{|3 zzM;}6xj%B9hKb~8h=fgyU#nt%u=UT-zN)!SFL5N|oEBdd(hq_yJ4QWFa-SQR%0PQm$~!MVo3Jg4ou6t{sNyp;C~@^fN^S0rB2eDRmD z*K18Bd578SWnx?We%+1i{e6eFKEK0ecnnPV%oC{)`7w6A1eBZ(E@?QV^ zP2c<8zLnpLzq|5#zvVymZrSoMXEQksRVO3sl>0*a)M~~$$2Kd!FZ;qaa(=kz8{ZbW zO~&G*dT4v`+@U_Ho^dv2qV6{6Snof5Kn}W{OW_-YjVp+Nv z&l91%X@zF*blwu}eKzqUl+OkqHK9DSe_A+EY^0vo377B^r}>kyOIkgDd*rz0jpoxA zY2$zR{LgFC+T+a+<+yFgFiuH);LL&62;)?CMbeCuzf3Vmb>uAL3>Py_nzweWY#ThE z>?{{o>Hg2DY5s7pJ>Go1^55P03XLU4*|}123)f>#o!ht5etgzE^Wr_MKU{bi5Bzk0 z@UgNS<3C(W4utp0h7a){p2VM(-j-2bTbNH3nosa@#ny_4RyOhOxsW=I z&v#TQ@u9@-FgGvNd=gzm$w?@hgZFijr@4$hG?Iazngi|fZjx^_CS4O)FOWAC&yz$R zTme5wX5gQ{@Y=^1DBlCI2n}jy#VwY9Rlw)WJ^+ue!7tPCcnmzMy^{C3kzuzzovMX+2OeARG!nW zywX&Cs(-q2x*a55?*P1%*ueSZ3XQLZpB^d-q;}^HYdDB*ahUv4hsOj`?}dUf4uKf` z!5{ys<%25cjVbT|?IY|D1yaL@<3lVZCm>^0Lmu}o{JAEUk#W?V9j@HY>JNBVdk&(L z94cZx98;P)0*<>)3_J1bv{C0^pEZWKD14eG{!nIb^&XhVne&~7zgx=5xjTz zm&3*1JSY6^rq2-rj=%r*KyC5JbI2LZuWx@cAIY}s z%-`_*TRi_P_wVrh9;<89=G1aZ1aVl?H;eU!YIs$1u< zY7I-Wu1iPKZy~Yy92#!?%K6%-;o@BQ7T!95F(~uq(%o=4kUUVlvp@ z`K_|R`g^HY&kLzrd#p^oUuRz`y2qo`E4fQ+W*+=WeHTCc6***frsX?0Ru>r9Py3fq z=MKiRuRfbKZd6O+0pd6=C0E&($niRwd|bCV_m)m0zsPv<15HJi^6d?WcIGRVUAY@i z5MNMzW5n#Cs6*b^%v_(ySsAN1E2C<0wK*$8@AA!#D)QHFzL?xA^u3C6VK(RxUCT_oCAsE?v9~4E7tMF(vp)=7?vhwGdU_GL^SjxfHgUSnw8=fT zmNr$9+n@}ZbMo19%l9?JRfRR5%ZRt7AMF=9JE|G4RTpvw5A)f^`V8f&5*HhOP>e>lDE0FV7lBXBhXQt+(zFC1Kq-dMmM zoo9%x3J}{-K#rN&|mP{s~kzrYH*Xy|4t{^r3yTaqH;m(dq@FjX&Fw41b1vplJ_3aqyw&xfP#oI#g3P0Z#nMI$Gc_YNy=v=u2 zwCOPXaTjrM1?)p0XW*j|VzAl2(jdB0Oe!1436T_SEZt`DW4887|Po7I?;TiTDNFVdg%j;C*Q&$$WeL{LTF$00 z@WL0y64yh&z)W@v?(mib>t+&MBvzl*B3z&oaXo@-cogkK|O2HN2lIiun-O`Tt%PObT`Qcoea#BTbaGsx&y z=a$+Lv4hAk`eqlrvtZT5v97nB^`GOLHl91Pu8tKD)Abqd{bT6lBa>+FSP0$~1y8KA z;um$$T&P-mBe`b$LW|vNmEUcz+tCX`U-OlJ-Cl=OzSMWU++J@wNt_Zq*tCZjQtgSD z>a}nBmFy$o3?=SsrC+>cW9kH)o(v%S^oH)+ zz9o0plN*-@HW<9HPH$md$^LG*<$LTSFC=ELXhNVR_)VupYj$2%_SC%bMt?DDI{a>W zfV^9e@a{zPg)H)J!3VYz1MKFJvHDZ9=z2XoE3|C;6E4oYarX4kBz^J5TCw}&x)_Kz zzLR~${`k@m<5QL6?8sujZF$hyv6B1XNcPV#hI(dlKGM#hQ(F8AvXNi}DA(T05d25= z>)PVejk$+jvZjQ|*A?okWGxL{8jdTcn3di0wjD|KKcW42QRMb&o>fngd>`5tKqmSa z^UEOcyJ6{;RpN`LI(kGr!~W)pW$YH z4ce#jG%xEawg*O`gONu}G5w#JL=5a?Cw@P_$;q{G+1}9Q8kM*8@AG&D{c0@^AeW+h zlgpib^qySKZ z1ANb1X)JI)5!0M8bCvHaeBZy4_Wk?M(tqmH9A30b?XlO@Tx)(TqYV{xL3fS}&gXpk zoGJg|ozSD-{?bT&S0Fov8Q%p{JpN?on#TSQ#MK@HcjpArsWv;YrrOXP$srCQ*e^~!oLr;VJNc6N2IbOJo*3C;L=|{ffbl_h&_5;?fbo&3AACz(?xb`=ejlGWih}TJ%H!@Qp?}o=mFUsdU@x-l7 zPulr3h@;o&!|C|-b%x&zwpZg-RTq&QK7+kcjaAJ#u_|m|$ldpLlaBzpVy|6zJ8Q9( z`LX40hBs;s_~GVfJ3I35+XUdnW==3y$aAnJNd7@%qiriTIkdXqCF;ip_U%_bU20;d zlTTYXqNzdtVEdB}ClB9WDKx`;?JPhKWAEUaQYXNEK5|aHITRP^xc27ozmN|An@eLs z{wMYQUd4DPR;PWt8XGHnD@1emf=|Q0Cxqiaa_6n+>sVRP=wriY$Uc=d#6HzuhaIHf zDL&oa^^>>5YvGekp{za!okIKDrIY*sdRmCAvM|eeVU_lKKu^`|^V|jP)Un5#ahOrW z9`CvlS_9CbxL(z6*NT(3+BvLP^Loapp7MRS2i8ww?)Tn`ZqVk)9!6~YgxJ9<%GQl+ z;Y@;9FKv}=x|jC$EO1g?^Wgu;#7X4XbAgd*&$-%@xILT-yc#KnUzj|f0rX$vPbkZ> zXV_m4ZXTsYBp*pH{Bw)Lx9EYj z?B8;tofLiLvcXI-WUUaQC(Pp#PJ<5Iu;rbk&Wg3HXe-6JtVe-h# z5Iw(N$NDch02#nP);51dpzkip7wERt$QK*nU8~5E&v}_^P8b}OA%hHC(hR?5EXVc@ zbJu?MS|nK8XWkrGuf9jw%PZV2TQ@O=PB7KrBeXKk9A9!5{nE3F$;0FMyz4NB9ptk%Msfu_ai^|_h+|g>2<;%izSQ5|CNIc zrQPbBV`+=@Km%(}IWktD!Cq(CvW{|aV9TN%S*bS3fo--Q*?il2mZc@rAI37lILP;% zL%R;aw+=f8U&;*(Gkal&lw-$I`C-?Nm7K}B3G}lPoS6Q?SGyTM#fflcVtmtu$kDuG zo;epn)8XwKM=)mKfU)19`S$yNw)YxeJujrb$Q3!}>;h9aJbi&XXSxi%Vee$lbV1|h zdFb3?LmS9D28UPW#?5b8ZoKep@;A{2@!A6FEePir8LF0bEdX5>pnvOI@E2EE;ua_M zkIIpSZQ0=SlC^R6Kq6B*9S*X(#qo#Z+l*V=xLD#I2i=`qa%TL_=IjYOeov9-NO05V z@>iI{iCb*j3SIt+?ZxB+V!jz3Tg6z3uZqVCkImpwb(t~F|3vJoZr$npYM$yogSmoy zKF!+9hH<8oLr#y{IQQ|AWsdaDMyJ~D*}DB9>MN^_|CV!>qOv>w#^%`iyeVgXQEuLU z$L7+yQRUbzzC-yA>bl<6*XfKrFSY_cdJlFv^<(YdAos}c>+xydTK8l6=B;(}((I4g z?{DSj!Sev-NFPNn?JaUruY5Dyvdak)od^l(R0R%#>H9z9QkmaUvI=eXo}t;fRu>E!1lY4W7eM>US{{|)SK z(|Kadi{cf?!YfAxTKqDM>i%o$)_!?UejIM}+rjgX!uS)F-@wcZ*4dS;v%$7->Lh;g z0{pT8)>vC-=|Fo+sq>u-^8T?po1bKAT7Hr|#>mhXd1BMosGt7SSuej!$x;XY1FbmI zct^Y|2i~P$#^R>TwBOWWa-tuVKVEAjGL+$^3(KxG^ZAaeu4O+l=ZlcLBpW`pg&ZL| z>vj(ExaOtuo{}47s@}PixuQ9*^;Ki7wMF;Qk&ao*)90P+d|Jz&r2Sf#Ro}wyB7?`8 zH(9gjbAK5;xhPniO~1CFlk{@mi(cJJ*=w>dIakD#lZA61W4-kAS^BAQSomgX{I%gW zk3%}#O8VRm?p1${^2cc{fL;YZx;ZPg0-m%9pK{@Hb9TW|`BjjyrWav5s$)!xLd;Li zz0t#C`QRLXQ*r-ferw#dLpdtb@Lx~62KXCmM}gy2GvYPO;iu;)^^d6t`_H8j_`AiTe}zyE6a@_x{TRRdTK{G9xvYrOer=#e>`tMzS+iBD;*VI2Q~ zJja>nHV8bm`-ZrsJ*{KHeN}s9v8j{wEJ=M+SVNKx<;26_6JTvvKal&uwo`NSad2^^ zJC6qDr`c~ln13X!@x@k=rLhJ_I-5f9Dp_Z`c~*h0P{27cri`)SOiwd5m3!>EUdg(S z3}wfQu?fP{u&)%$9wR#c13X0ER=~@;s9*Lg_Jnr~j3>Oz;@8?<)b3K+eY*3AY<}0l z_EWc!%PN#l89SQx50}wy@~s>Ak^v15V_j7)2HDWMX-A$D?3)I!O2F%sb6IwRKSseR z`t)r0RpCT*Nb-Y3zz00*g@P&QlU#57pnr$PCrKUj!PVOb+kP%>|2J^%;rsObl|B6I z9sV%>`WN!g`1xzP{jd!Fth`>4B61wlrs$WzyYK-2ewH(~WN(Ny@JqiH=g>v@#(IyY z2ki|#z)80s9%~6}vGX&kvPx$h!ZL=;@nw$>`*J{9+WA~f3Uq3-6l z8{YXP@YCP!6q|S0Q`6J##7#XkIR&RdYavl4v=+MZE} z?6#75p!Vpxi$37LH*&Pc-^;-12p6Xdz@yqw#n@IYcCI$#*LIE3D{g1Mb+jbM%J-Zf zsrB_E;6>xvhi+}w6LjWluVeiu-)k`Zy?v4UpMKZLvOLD{i3QN~bLf0d$k=bhKb93u zidAA)HnAV%smwpww3qA70_-G(TnlbR)o0@c7d*6I?^nTZ%JKWJsx2m-s^GZ)Id+@Q zD%R?#EpLrpKF{zx!IqA~yOiam63<&XTlH1I5B>6XrZvj1-pnMVF~`soDYOEaNFsGKdLol@4$U@@E$mwPBVGo zcy8)pooHiBRY%1l@B!bm*Jm4{hi4-(HhADq~OUm1M# zkI6dz2Iq1aTHR1CKGIpi8HUWAj$Jbz+qdHPFTA_4`OSBeyN|w`zr1Zj;@R*ACvth` zk8?k8ua*p+}rf()jvW^(ZI$|X2h>@(O9-ZG_ zpPSW?ot52D5_OJ6O38^zEWkn9_1fZsS(D(iCG(wQ8>wdxKFB?bC(T+29Ic7E@8wtD z6_#MHah86+dy$h0@qG{9!(V3I4!*0HN8L|5siLU!M$yT-M>%t#p@(?OmGlisz;l29`7Ql#8ackPx~V+X^Go-7GuQjw>!-Qq9m#ED z!S81HZ-V|QW>j%1FJgbvZxa7b;@Lp#IbUDCq_fuCHa-aKrQG+_p*u3~y6;Ec8tEK6 zOY&Bolj^Cmdl!1|2Nro!B}?33anb6XHL#dE7E#vCJm}?n#eA08caA!ZR^MO1J71wp z^lbQK?QF9KVOQxaXr66s)rJSP%{I1l#rEl4QRJ$A8Cww?}R3qb2pHGJBaPxkf09XPBvga-Z-Oc5O0?R zVii8TolW~ayj?WATuNn{si=F z%Gw6(hK2_qwPR+P=N_v_HVRo~(Iy zoFk@uY%!gMv_v_GmN=>3bIz6-gGM_ShHDI#gi|+qxc{a-8v*@keGuHAj$RiLgXz($ zbO{g6U2g*i_=Uh{431V^HP^%_Il%9Nza*By8?c#mcCY2gs?4^k#y%L;H*fSiJ^ zzBF-b;K4TU-8S3i-|=qZ*3t(HZJS%2+w463HTVCX6%rgb7LEcfjV3q5S<@&=Cc+Nm)hgqzcU5u>;?Z5{r>rtw3|AHkwBOY?NoMcbtOoV_ zcdkEGzn6V_Ej-8{Powy$(lX9H9|t|>gi{X>*a`-19KWTmqu|N${dw(w-Po4~{pI41 z6=Sd)QCHUpZ;i;Za$o-%!;^mK&5QgiVrR22sSBHipJyqqT>F(&E}WY69UDW5wJ~&7 zpof;Y{uuddBpa6Ck4ah^LuUmx2E(UsEmutO`Xu$_57=%Z$2~jwX8QFDw_jd=rW*VV z_D485kF#^q?cnSA_D?>Xc;B~}{P=_RD)mb?J;RGetc(+@x8$p=@rrBExrmCtR3FQj z*D52CTaqjZg8iep{RDeOgy`k*mVAi}uJbX|IEE zJuko>kg3g&;deJ{5pC8tYI7lNR+;v)5Ho|0I5KwbZ@ie9zcMj1rY?9e^7_@X2g)A) zXW|8PEjw%wKf}j2TRU7Kb!(kd-9^-`HLl|Qeq*;Nd_QNvZlN*r_e=BaCdQ*F!+6}8 zHlF_Y8TrK{~nc!zUF+SEV)9Sa&Y~fpD>nd@`qmO(Dz7$(4)sgkIn+bSu_L(WP@8=ak^|(|+35^hl22avM3Ix~+UdA@^0~1@8F-_giPgE- z-fevI=gH-+_FSbt(VqZ)F?OyzzAXx4R||G@O?D(lw<;#?=jX$(cZQA3*vfa*z_cZ-GG&!8w>l`|s8^|&HCCxpt4!Ym# z#yaSI<>)@h`|_I~qJM|LN4h_Kpghf=E_^HkA9;bCC3~6kJ1-b+WTl0sEPF}CANuF_ z@{Zs4rEiSyD=$2?|G)8l)xMK6Q~uY0i9NJ)-J9ovk5fL5{~vj6Y_oF2KI%lS=yWa}hdli7_Fr(X`IB(_w37Et zeMha_^L^DvpDy4xM14>4yje14b1=3Gd(OY|y>OPuvGT`R(5h(jS3Y00mT_;ry3VXu zgZ}F9KtERp*vIR{^Rbt! zPx`mE%u8aw>#%!rla~;GiVRakEHJt8x7CmjUTc3<(;Uu$WRC{-k`Gi?xxwTS#U5gR zE6W<k@SyXfMu(d<|3-c}kFP_b>DL-oY$BQcGT%eCLCwF-D(U)D& zZ$9l8ulkm)tJN9(aby43rfv}zj5dztCQ%Gk5|Y)^pL%AKv~gzIlu?$*xPhXSMd(YMwnp*#Q?{ z;_1)V#^n*ocZ;vE$?*lZTl9e99;c}SN;<_9$!#7bor)Nev^Iw7L~(G-tfwQ zV#nz-Djye4b=dM&=N)UmnWu8-={3rKKp)D~4-;QLDu&$DSr8r{tGqfO93OQ$#jhXQ zUI~uHFA^@l{n53S-{!jW+*6qvM}<=+KIpum`j=$n3uokKbm zzKDWce30fkG{B>h%C(P8Ub>OKP4c{;d6e$=>Rs>bVOdYT)>KuR(9=unX*WPU&Usk)w$E9{9nJXo%6&tY!r}ytJ z`j-eT`o7>rLqX#M^Vj$H)aT9j3fXy}FYUF^I2FJPy!x=;pfg<^`)lEg>x#0!Ee-^n z8M>}1ySiAv(WmDcnL_@#PGY~(zg-3_)$7+S6emysKgoxmG#!v_$nw7=bS1q^aRq(Y ze||HO`iR%vg^eQypHw~j`EBdBvAZ5D!+)YVu>gLmLVRTCJLKsPO{>O7R*sKMw&yB* zWL5acs|=WC4?BK|Znx#zz(~KC+CO+O`< zG%-(YA3}ZdmuT%0T#fa@(9Ol!{haeP3R^35Z~b3++m2nr*a%4gyU%OGn{FG}12xbF_C^h91NVO*cHp#appJt) zA85myX>9=BqqM<4e>HyB%?qqwf12@Ii`?YjUy}gOS)JeBmo=vO-5MvWuME0+6+h)F z{FG1Or|iK`S+~5MIeN?fiP$Q7k!|KPj#Vd1_pds%VP8+nKfT+t@8|E9R~~)0YWb_Y zckO=3p*_gC+82yWbnFN+N;hW*F#g5KfjMdIQlkGP{E!J$}u4{F?RnHSbvd z+J<)gn%ehJ(-=4wgx5^OUnO6r%0y4>S0E2k&bFE<)k;Z& zw0!r5L)3LRH-|mIx$Frd7{>aa&!=V^7( zuA%ME+IA8;RQumIzggRk^DEl-_BM*{o+a-Negu{S=LQ7sQEb+@C#vrS_HeR_r zYlG~U*_;Js^e<#b@jtbt0zS(A)MAhS2!}djtCF=cSlj=S?2bX!$2{=#7O^9;Ev|sJ z?YLUrAJuv|5q%zA^_{ESKL5=2`7rn1_^Pkd-Ld_t+efc|M@;_)?Z*?`@$}C760S9# zcI_UTBgsFW{`I?^@nrvIaV2MgXdEXoe(C*ONk5I9n7(GyS948&7r6bcp}(5TemeGF z`}_Vw`dX`X{Uz(uYf0<-pXXS*R^0G_eCw@;W5iDf_h+mB{;_=r{D@~|GoHh0iTxoa zXkh#p$98C-j`ayX)}b+!?Q1oC+vD^eKg4`g-}Yeh()AwK=9LZ4QXM+G^AWy16dGo} zUCg&@`1TpsW~OhSaqVR~pYvttAo~JxR|LW9OlTQhw+DKYo%3mI(K-)B^*)U)nl-%D zoPC)WZaIYALi@|t@ZMo$cG)36M%@;lbC1ggkj?yi4cN8Bcm+n^b&+COvWX)h#-d@N zGpu0+JW+h*<^dbD{q6{QPa)?lN*9%_v+k*kSK|2HNQ1zK(Le zr<_U)Mng03RpG$nN$vD0#QI-F3|ck&u5^B%WY2*z@T;{l@>(KffN^-@^ZsGh-6AzxokQs+D)4!A?$5!4I-*du|#H&Ub0BlJ`V|p~i5_ z94FB6h!g7A$r}4}cs@4WzB+zoZ>)q~BG8>;LS#==+;aeV=nm+G*wUCY+K#o_r8yep zEJ^x&G)jz*(;|&hZ~lWPQ-uxEP$}QHOYo_MIy(M0GOmJGMH`3;sIus88Rg z&zH4n`%OK5@&AYamk+~+25n%wiGPf}e_gX{yFUyI)jKE7Pv5izC_cb}e zz82`DlD1cZi)tS(6vJEZ;-VT{AZNtN!G-KWo9KU~@7)EwC;WNz;_=@~m;Y8uKgq~{ z?V97~LEpU6@ZUz~H|NI!$Qf(6SG{I^b@!d_FL&2h&VBrWO9vi)H7E6c2%b=lPeIr9 z%!zEywJXdm`}RV73!9wawn>a-3H{$hY{DzpTqaSjcelKkCEr4$Z0Wn9`4i05Y;)dk zs84$vU43hBO(@h?0UolUcf};?*#ZNxne&|o^{XN` z<|B)K)YFfx+#kT+SBl=D_IWXrCy+z)O#8C>yqHPW6WW($+Q+(Q+NWm=iEo?(4pz}u z;+?k5VO}hNo`r)==wP4>cxHaN zb6@t~iO5^n;`TRD=e7S`owb8?PW9?kSz4WiJgb2(VN)C6OJ3WI9s*zT+NLoYC`+s7 zO!}tpPuDlU+~B`%mJIO^C9w)(2HyHaU_EHo!IoIa$aoB_TAK}wkOhLuhE(dKH2MZ=f_{io~FNy z8r-jCbkm{&V;{zbg1;)y#MDLMVNRCK<0_d;G^{xl1ShgbXwH0wwZZIV9s3y*H>bK5 zPA*R!oX0s|tZ{1R&TGs25Txg?I(hScJ+Gdem8u&3*%o3YJIwth<=E-%yG_@Y^-V)x zuX5k5x+E*5ILxFbd^^&MN*Z-TjXQE(tWgvxSe;F z8@SQSjcvPiS?J@Y9^3E2Q|eKlI^*^tk_GZI^!zP&s*&bVwh*GueoQEWS&>tW6LVQ13rJPO}6}gx12hMlt18> zUxh8(4`*3!+|uFTzPbkT>a2A6;sAd!`o^HY$Mgd`FSfO*3!K1`#jFFYsMx_3C-y1g zoQMZ)2(=`-o!AKMqZWqsb0o*8U^L{xle0Q3}l~ub=u+1x{+9 zOT|NneiJD!!u}W5+D+~b+iq+3@?Xp58VCoCoF{rEE^ZBTcA9LAfg6y)z=cCy@&h!{ z)~MRL#>U*ftbQSreb4r*(fO6NU%#MoWT+F&-LP!M`4hmyL))KIIe7T9?Qckam5Fk z{7Plg`SP|Mg&+98AE@vC|3Q6{r%P;oZPd2{d36G^*Ftg>Gq=ZT2fJ=G5ge%6v#;5~)#8uZ?2By)l1=54#o`^LNzT2h7Y(tNYb ze$xdk-7gCjnwa1szL$-*#>wv6g#NMu+vIHI?IM?Ms-PLINl{?cAWI{E&o7!US=#vN zTC4KPQ$_R5ej9SpjEQv-OOPxhzNd~{YDG4tAk3H|FG4G`W0I|!#q*tF6N_K0@uuDK z3CaH!;8(ON97)Dn$+{dw7FP^~bR6{Dy}Cw+G&)XVOj$8)n;{>`H?qM2zjh8>f85F^ zArn`>huD{cOL*SSTt*i%IM@%5lMkrGiK8FI|C8s;fuqj&kD7ST_n}wCK!o{aj2fLw zvrT;5dnzZF=qLFNt1s^Pn}4wH$ESPc<89pDVeSvvy2%$s%rrjr5zu|_RZePa)G=q2 zZ$V$&wfv#|LHeznLfzQOl&4F%R=+u%7>cXN;U%Bh0&Ju7dD36{Ul87O=4LPcs;yzS z9@R%ZyU3wx>LTy5zpe*W*X7g&U-9b7cI#@QuI`ymY6~>5^@7i~9CC(rY#Lu`aHTmk z3B9f-lszqp4Ni3`_Z{@SUOLB)C>vdrQ#I(D9J%`bM$_8d?a? zj@1o;_ZbUsvyVf$NST-YLzX$%c(0Ld5 zEMp9-zAdGF8Y4|6$>oWg;d!l_d9s^sm)FCQ1Jc=f6- z;|m0yL)&hpZJu9FGE4Vl^xo^8_(pVmwW*?gPO6l6kR)So?`>Nv8XDqV*Vo3SyO{EZ zQ``P^+U{?waC#Lu6>ssz_gI;muVB2!c-+AHi!9o?ta~hbN5d_XPS&iObaYO`)|2Jy znnu_6UH4J!=H&a;JAS`aA%0@d2R3o!H}+>cEA~yo54I3HMw2u8*k0^x6GuL<|6u6v zw!bp6yyIXf*s+_scaJQ8^flf=mOEC3ZzFLd;}2eY;OAOn1xNeZWE+rNuQ^y?Qp^0f9=UiyV8oJA*5)I~Z23v{|09El7JmB*;|?z? z4CBM1jVepP-*OnU#EsAhyu6EC&)v{e4{Md-wFkn*hoB#|Tk)h3_=NU8k*u>~-PEr+_)ZS7EVMy9NBg%=_a3svz@K_Ih?jDid(p?mYbpx+kYZ)*#zZYQd>>}@17i*yA^dMig^VC0QH6OZI z_mX_CaS93k=nIw8F1Ly~-(Bcjt@43qQO@2%4~RO8zCWa#Jvb`Q`W5pjl-02jJ9mC= z)Y!Q7?pwLUTm9GE4+<$O!|ttbhXHGMbareH-|Y;Ck5%nh_3u5QuWheyt$(tgKKu|I z^|QW-4~3|=i#o%6pUd}EPOiyS9Qu`G^10{oTxGgH1RdZv><}(JoBv*?n>g8!k%#vp z59`{Ck=^X%bW}Oc3ya_t-F!>z;!OFO#QPVrXTRRvvoBp|IPVZhvR*hdzINK{^{rR( z9r#4PdqMaN91a#=!TXY9M4PvS_)g=*JC!^W4rF7mC$|~0;Phtf;I-s7)3+YqswIYA z{qW~E%SN`}f;=z1K<{SLAKlC5C?7^GG=^Q%*wpLsRbZ1gI>_nro7or#VvjTQDFD3{ zwB^RM7AGDb%(F6{+(_zcpge47){A8iavy+Z3!&M(a>uOg=lsF)-5_HW8Gii7%7Isa zF0TGJOBWzVR1aqk_-XOW@Q43GKXdwWX21)_R$#-{c=&TDNZ-^N^ly$k9xncoCtk<{ zzZdhY+m!(?5bkO30vGRHtoi?4PPufP|8H{2ZDgHF-;*UAZ$kGHe|VoY$%_d|pOf^p zwG!GxmoxbyWNVXO;Ysy1t)G)9R~(dCJA!HbM7H~oes=n4>;G0i6ZEtBL;C5CX=|o2 zjsACITBN>)wmqHRSJvA97kxdGFHpXe1LVTp-RoL?YAKCUlQ_bK_fM%j3$ zwZtT+`*(-b4L|q*-?+yQ(62iq;T)6e^p&yBbkEN!UeK-BbYzzR>t;c<8wZRJQ*yX+ z5lv*BSatHD{qi5YicLs9n=MXcU_ZzteExzhA4o5>m(Bi8k=VwJiChaEd!5PCdQq;8_1FS zvm|#woAklc8Fv#q+Kns{W$jWQ_0Jkh{t>%g_V8{!e6fNxQtPF13slk0DrD(8)-v_S z^ZglpllB$RpF$_`QUpC#{TWhDe^jnBmAw8$=?^l&lD+sAlh6aY8~Yf~H+KCn`!3aI zFSfUY_wF?M=c&2M9AquECrXT1E$dY+WBVv$%h`-AtKjwO+kNgBI*g$Mj*^Us4W21ueN>s}gT|JEE$zbC6aR%Tl=>IY4m+Q$ z&pi*k`|pu0C1b~n7P+#tyT_wMc7n^p@p^0!MwWK>coeIge$`O^eZINcen-r;-8b?D z;`I)(Z={zx&-UuPU}kI=_JV2pmVF~%ORICDTjyPrujQM3@4JMxjg?cUa3c9t{D4Dr zjDG)7SI+k2YsGZ=<2Ch-`A#(96vZChY4rKVibds;e;O;_S`#<)QB-7nLb|SbD>qII zFyjhds+`ylA03Q8F||S+Aq#`RyO+?YV>Y1Q;*n$&@Xg znCIyyk*B;iEu0W;(e)zQsc)NZvCkGSDNn6&oE=9(7i=5;IV&R`=34LQ{l$y2Qiqwx z1NTdeFQ;)a^>8MJd@fw)#&dz4TQNJ9`vG~61J1F>tbM$38TeQ@fw*V`J2$=+Sdz89 z_V2>3;9Yw-Sp-hf?K*k~8HoKl#W7;HncGFNO5%;W(J7Tr>krcyNBEAVN9(UhulIAN z-l6XZ-=o0y*0k|IV*GuB`jy(RvBtlb?oE#ue|ouV%G^_AJRKjjIU&RUDvo{TgBMISKlzt8C&TT*zy}TpX~p! z^afK8e_)C$!zPlX;h)j$d@C zbo_ewlO6vR@MqRb@K=V+PyC+2-#{7oQyFK~8T@&8@aV0Bx#P!a!j(DJawe8!j%7X_ zT=Cq;>TG`Q*FR3ax4NPExf4%V-aQPPE&AG;JyW7ae%JM(_o%s&rJS$DW_ zg20g+klcWtxr{xw$ma*SANDhohjZ*_e-8hCf;DRcFc6A!azk+$}aw>~n%cg)$PStcKZ@URO!7~f_cK23a^i5e$$*FtwK8$HJC4|;@k zM)0foWsM{LiZdj!zt^g~27AmM?wWXM(D-P+q4K(Ls*Umk)b)4#N96}fSbO-BQ^n8Z z>k7uYz|p@W%j$mV5$mIvgbdaTyscwt4|omHhl8tijh}Hfd*Q+NZsNjqt@63-rP_l% zXfil#8??n)JpO;gy$gI*)tUFd&N;bpD_E)8V#&z`5HFQh1XHv*$q688Ydg|cr`jPm zE{eU{w?e@tkZ_Hia)cQ=Fe5iXlh!Fsag?z$+$@TzQ;^O~$Id&Pb8-XI3s~EdN}B)o zx7Oat&Jk_r|DX5s&*ziR*?aB1*X4Ph_1xC8o<;qF<1k>TI`#gGd~4sWAMo1^dG`X z)2nx$;`w%XZs%S2wpb(TdKjHoW97XZ_No1lx$#5%kMgq$S1%HarC<3rDzSqNXMz>- zzGB&w!y}*At(pSYW+gC8&qL=zw@WXS--O>9@CLkQdVq#H~y6aCUSu^jmpwG1~rq?NHkOF*GXLewyDPZ68xPv^|<% z+SqG6+CHLkXnPpHS3%bYsIOkMy~)KSwqNCRFxxi%T05thTYtrS)U&~S#p!t8Q$4i% zO@3*2uRo{0?bUzIpEF*&yH$>VcLu-1dA7r^??!Ljq20yd?u|2g?T z7>}Ece-hu*zCGJxC8zLh2l=7OcT;`<9-=rg;nMP#>B!|7=zsVtC*d2Plx?Qx@ZZVW zo9Mg~9w`5$&R@#M*LfW}Q#-nU8htmLeM&jYAKBPF9sY<6NRCw8EBvd}`QlTokA4tb zr>C=4gKpk234da~;#}FoiY?s9ciW?^0a1tIW&Q8Q@Qwd&JMS!@?$ziBqCKtecm3Fu zbheq2T*|veukaV>xor*C>>r1J%0H~!X1P}17%9F>J+kZ4^sTckR?_uj{#lEP@{Rhj zn|^3-hUUB95Bd4}=u47!#jBEhw;lQxFH>F7n9U(NHpz89*FifYc&!-I1FV&PjyaS= z%+ks+rfH$Zv}n(Bv&g}>P;E1J7BG%eCe*W*wTPtrBGmgIV`(3oOK|XEBKtk)+g|%o zMdhbq_B;+rhWFC2}A6?Cs9V|(7kJ+|Ge4S%;9ut34PWMzCe+V?v zjUT@eyYXl2#ga|BXi{u)2foMBP~PG*!aw?F*EsG?-5Y87xVM>-?^9PE|29`ooH5@3 zZm);mLm%Y6ZV??-<8urXH(zDtc&t^qP}1ma<;f4p7m=r2TGdu(;LHJ@X?!c6s+HaR zCAA~k7oO9jpmS(jeNZ2@2U~o0iq1KLPExdQ>6SipLc3k#TwlV>vvTO>R`_Y2=#O*v zZiQ#(|0Z%Sj80yT>?&Wf=)B*~Vd~sG9{vK){@!h_?v32PQ~lN_Nc+U_VuvWsAl$MQ z|7nV{Lhv*%mVb`(BP?&UIDOXb8^mtjTVvj4H@mV7yE)0&Dox(>G~*Jy3#eDu?9*;L zeF58s=W0)IDiUpsF}*H^oHMDx|99X6S@!@F1i z)TdYIljN#kqMW+;m8NBJ-3Uy`8G@fZVs-9;GGOB63$Z%)c9S<*V7N^$+R2djA;oI(bJladqhQbGL=^tnX+@Ip@x*{A%yq+1sE| z(fH!)Z{1%P8ou~UCwaUg!&~nEEw~2O@Hf^u{Ik7;Gi)W{O!UX|9p}-V7^}qrW84K! ztUO)hV*4(iG}LENL(VM8t^cEVlF^=j(eB3^jDOacs^Le4m%vk@l@v4+2L9qrY1X`J z;7?k+k+0n1yGZxY8E}QxrfCgOJV`j$zr`!-U5)Sn8<)&{*Pf~3QKAFR34%_E8|!%* zJ4XAO1dm$gJaqER4a~=6KI5Ye@lmyt1?^TazgIEO*_X6$H}>W#=J|m)Bj*aqt&C0;sk6?2l;L^e%~M14o+X7KaJa? zL-N}UDaRie%x|-U{@5{qQ}$LZUI$Or7&K>p{Tt4;V;tDcP4c-(zUs_4)u;aIH#k<= z8~XMI)@B{g$!ht!)~zY?dCs>3^Gp3c0uKH=JZFH9(65!u#U}bASg+$Z1b$-JzizHM zKa=FI=Gqm^HA`zhb^77*i9>1aLDr~5YYV8y@aN0Fb;SM!{n@^MTDnd+!nhsu(hYu?Dk!xSSY3F&zY~JBn7w6=3!$VIp7OOLSGt}IH+?7x1 zYvh6w+>~RbgE@V%c$a2kSc35`#?&j$WJC3x<-PaH|LdKrtof%s**iH`xSaSo_w2Tl zHJqbdzNqGW9D6^0so7V-I)CGP(WO}1PT}9f@7P;cA3G-)#IZy2O{9mli@A~dSb|(} zW82Y99X*CyzV>4OX2p2ec$YgF8@LfI9|aH9%wge5zMa|T;A`Du4!(9P^P}A4t)Db9 zw<#AH+=cGJo`|LwsHYZNvy(cykxiz_Otl?aM(_C{dbI(=av`ab-x{Q3@ zq8sIZQhp-kD^8>1o{k1^bC-u3>Xxo)_cMZr)b-qh2a6lpQ`^e5bppH)ch{@2s~^P9 zH^te*6lXq2_mOOkBZDljARlubKACSoJCdO_z*1*MS6&(0s2q@ml$RX@7FRy9G0I+Z z>7CI5hD% zwX1&hmM-3Tf&O#}W{ka)u^;nrvXybvfU^qfok_jq|8CMgs>7T)TMSHVp?&dD@lHcO z(ck8-hJPMeGU2?+;jIbr)?ZPNVlXYghiCoGIB1*xq<~SHF-s5D{$!swT*6r34ad!Y zy1Y>TdqT+h?~C(o%-)x{cWdGgv<~N8(W&Nv=>H$d-y{03pg!>p|8IbQ*!};5@sCMp zAO#I!`}7K4IwxEDj%ZN4Ks?|KKJb-{)#oMbS8RC_esW-J?2Rg(?M|A6Z0#q<#!ntC zesRmJKjcp9WDe|sXTW>xxuVdZ8`ert(GTF4CSmpie62O&W-QX?g84(0sq;3l_!s0nZ4E0yl@5| z6K$(MW%3cdL%$`T-s#y>JacsH_9tL#A2(CUkxUHz`QkymrUU$~+{3TW-_}!yaO~sv z3}gPo=t2Bin+SVl88FaVpyr?msfC zWDYSd_PT%V{!(;D@rV04kNkic)>EWw@T%Cn38Q8bbIP7rle=E?U^n>OJ=#n?Oj$W) zvYS?ByBHzW=kM`5Jf-`lY-s$47v|;dG`TH@FO196dSo^9^gMfU<|7N92WGPZvOx8p zLLQW(YwacmQqOb9_aVD-x5;UmRr|@4PcB+;Q~AvwKN&7KyrtWO*Q>mXJ}k(wdj#zM zJo#$(OiAA)yZ=er?_yuy9wrIho_xvmxehkfCi@4ODZ ztGLqoYBrcD&i@&!h9=?7|5oMsaAMA1`caj`yN^>IRs5WnZ+oiBq2ZVPaxc#PLzG`f z-KxvRBQh_m;n6GEgDknZl6hSXZ-~S1>O4M}h6c;vgV7~L=VO$MXUE`!S&Yrey{wjd zKH$d)xN+74_bTR@_72q}D}pcxUW@NZe|kyrJ-|fqe8;%%;QWe8`Kms7waukxyz&2a z#`u5Fy~e-6AE!6|H&xE~*Zbw(_xglw#ocDxVrpd-%vU5E^_7MPIfsD)~Fm= z@rtAUz2=LK##g8u9KGnuH<;zFo@JDOjW#up<%bGkQx!5dpT~Y()-c@0J8NI*%kY=z zmCH|7E~-2){kn2Yn4Hw`dU)7v8Y6Qc1+EuT-@kA_pMTlGcpdr|@$XWohJva34d?8~A{9iLn3fCO0R>Yy2MVjN{tEz?*ZI>lt-?*2mMM zZhl>&a`62m)-52;w@BV)$aDO8D!j|$!<5mvJ9t9uM;!`@TteSEyl3VX7u23aNf?$33!}}{-RtIj&7VEP4w~_xn^Yl`1)8g@DI{TJMt=mER>vxT+6TKrAGtonO|Fq ze>(R)dge!{*67e553X#wKqAJ=!cw3H1lLO_2}Cy@*DVd z)DjO-ZO%Wd`)cCNQqa_=vwiyZ@R18Y)_$qcz>hvZO`oODr7o?f%-L^#|Bu=He}n5W z8S~)yqLH!uT4FC6D6hSudVKbn&yR1sY5w@^`fws=dpMDMkah1Q z>zpQ%7#@uzM#LhCk(H6esO_P|0p-D=ucy429p&`XwdmfSISn43rXIgsar=5tziDh1pAKs|gGDxbF3;AW6TSs}-eRxkvfP-B zM>+~kp2CK@hIJCj62-w{@7i-w<{9F3XhXWV$uXN`=L=tb;7e^0SJ?J@t|f0m+as1v z(#Xd`U_=hDP3mh^WF7lP(E;H#_Pt~zAz3S!UY-Rn)LAFcy-y$7gM^HEDQXrzp1job z5$m#{Am+|Zx96fTHyGRTs(IcyDaac6WTK6+KK4uZt^cg$y=TpL+@9z?;62iOzpbP8Oe+cTgw$FZa*#c)CyTb2uwCXg^7&g`m^$ z!B8RsJ!e7B+0b*22`9uy6mKHCG$+b0x{~0W!#pO}&3;`A*330qUZ!j2Tou17`3JvE zJH6i&{nYyq*(S+4eP?69`PI6?s+;jwqZ?Q8ulKZ$p#2P;%vZ%@vPSfhViwykkJ z-c_D8;wjr!LbDBqGvXLm>Gsj*vL2~_bp`w{%D3p)=QJmx$LqJK{V@H}yp5R!kH?q? zhF^VG$+g4(P+Rq@!a2NcZ9sPW^5tCI+kb9jga`M(4fyfyHoddJhvr#jJhwM>Cv)$M z$OZHf^5?W^{(cVLlDr#V7w0Phx5tt3cArTV*XpOurF0d15*X<{1K%uyp2VjofQxP5 zWezezb&aB~81-nJ(aMO8e+_e8#+V(<7Cs)Lt}ys0zo~M3v_70D+#XI8AA}~UZx;Wu zH&=VVyZE*|uV(yw?kCa~&)RmGn#Zf)+Xe7xeBgZrV@#j?J(BMZe$J;R-_?OJoQXxB zCT^EcYyO2|-miy;5(6{0i0^&}Oeb6sZ=QrLKH*#8=1EtY-h!y6J0) zlX2v2DZEeqrRn?@nLc#bzK8E4{)T@$ueUq?@EG$M-L3C=?Z@%YRD)(l`uySt?!C3T zC)allzcJZnW7)?|T;fXZS5T+)(vS%!!m)5dYu}nH(iP-Wve(S(_UYa={L;=-=C7Tj z%tga|lfLi?)pY~;P2ex|^SEy>FQOgks9hQ5)hdU_CSCbi?ei?4U-zjT{+43i%EnDG zC!^>}kNfYv;NJT)-uo17il&os-lgC0X{%?O#+l7Y#vs4#RReHydUl2Cr=Q}_7M@w} zAwH_E^Mx|Lod1Zfc#qcQxgcDa+&k zoBU7Yzn(FLIP(cz^Mq^{^*zj)Po>_z9^KpVKo=%9GV#hYe%zmJ`&y@(Hi+nnnO>+<3xWt!(<-qzoPj`Tx}E|h4#Cp zv2)AOS$FD}+}W(>?w9^3JIc|&Tc>%aYpY{&?%C_;rD~^!b`-Ozd<)t~zG`Z`cjDJJ zzB=pl-ZvK9^`CD{Jl7-NP}_oWt6p7w*}gX>zV_oc79=ky4&mh|$!WP~dCpdN?#o?~ zoU4!6T)LGfS51u&PZC*t2mF(|6E(!7Ad|6CrzC1~W6gEgLFJ57`)$dGWzSbCBj(A{ z3I35oo56`YIb7lQq)YE>_;bSQ?}6 zNvxu-ABKrxx^U0Qqd$Fk!0sb9RXMNi9zX;cIlHo3*4Ug_**&LODD6gZMwZ_}u59nJ1xDzs=KLn+pSN>b*SbT^49} zVW3?-UqssvBC~wB80@VGa#8rKKx=E&hpTjq5po{yS^W@?;nH~lAaEmxo=DOe&Y@N1X>qH$CA#~F8$V? zOGPZFVngA}+gV4GpEAum^0CO5@WtOcp4`E;_Cu~B7H220T*-b&e=p=p_CnhE@a(LT zUBFf}HPegH5Ps~v7oRcHi-}$tI75hBhL&gT0M|PExSBc&$uGEa1pHt9&45$AZ0W{P zi9^`ZKOgVSVb+0syKXwUiF`gfCNP(S^SRmP^Bas`2;G5Aihhz+FFiNp>^J17=*Z?Q z<+lNP()})UE?q}%cDm~kue_ad-@cVC;p0KLmfuRSP+Y_}!G(5{9ry+WZ=0Kii?1zL(#|peZae>6|onn1{*-SR}plf zYkVsMvGQiSd;enNnIITmWIXwl<2yWe2)?B@O>D4^6}0K+ntLDbW#+0Iqi=O)C-c|# zxAIT#ui_gWjGT|5()zqVU~?hPya;V>@L(r@!}kL4o5R{lP`)1`Ud;MC(ZzzaqB2c^3H{2CGq?UfXi9k1ob>Y!c5=NN|I;4!D;z}+6OSDz0|zQ&Eym)Y9eV7L z?q$~~MTa>puX%hRNQWz+pQ->IR(W)&wI=io;{Ri<#ooRz(V@MkEqrcG#a>%g(4q7v z^_QHM_PjXJVdfb_8kfeYF;yXV%fjYHbb)>TIQ`s$R*quV`}iJ4y8~skE!#8XwJkXk zBQ`9P#(h3AA%LsD_V|de56E^2`nQzt#L;@l?j1?Ny9)4Cq(*=X6Y5#Xm^9~wKl#k% z&xprdehta%a_ki8H?{REwxGX#ub%hIW3j|G6Yh!IZ?kOdpw21|(p%EgU4BnK8|f~Y z`4DWM>a!AI@-0RVW+k$cS+;-D8`bViWEZ)KtZm)Mz3j3YVqjLF8_VVfUTtB|SEp|p zto?_-e9E>hdOnXn6URR{&il3a?B?UMn~%?KH$J;ge0EQeTfGsVU1L^O(>7Cat~2sr z>l0HNw`?c;P#?=UzfU&H-zbMF zG!o~1#h$DKM_G)o@xrW=yYaKG8kxOyPj3CIjU#immh!x2%8D&@jCa?RhAsK{jI|z+ zZ9aKIFc8d@Grqji`6)H_EXIC-@8*-!M{5ez^lu*b)l*jTOU|+Sm9{(%50V^B4(Lm6 ztxshRckUj)Qg0`8W9g0gcJ3a}hN*OGD5Kb$oP`|ZQvcS(u z6DH4Zq^WFqXlns2J&w*1i66=TbqG)J|UCX9X)i6Wn=E1SA|8rlru2XOwFrH>!vJD;wk8|crU-;*=u zcT_g;cig(m!kzt_B`;Qh=dg(_ZGYua?SEYy(tTd6WZt(zb`8tW@8Deh)ED|Uhk=J^ z$MQIMWbk?Y$of}<_p(W{fd9`t*a!Q!&aMv(>Myo`FFE=srGI7E3V&K3&w71y_MdDi z`Re}Vhxii)`sbd_@#*tHM`QCn8cRW=)m$Ird8JQJH+?99t>4;srK2Z}A;n*pz{Bfm=(^H{ot><2yTusMJIJ(=E^;mHo}?%tn|quh8o7ue;#o2>CNRzn~5 zFn27>E8Tipp$7{++s3oieEUKEW1<_**D1qiQ|7@! z5}*Np{OfE!{-NU!Lkn?e;fNh~59TS64I*Cp#b23CW$1U3JuBXHwnZ9Q;^*h6g3ihUI$fF5>1?ipUGM|h za>dwojqq;qetU0qy2yY|SB6ek@%0=6zas88Alx#Z;?;<~Fo9d{c zjylSYQKmjxIGM|o@BSs(QC4R2o}nz{$+gV)B%T9= z=eMl&A3re2H$>Yx*EwGKPUj&tBNv0RQ@HWr+yD2>C&3@wDaY9k^b*BbO!%TZcg2pA zyaqe*&&T;!J_EHMcY0jTO{k!#5bt!nqSZAE69uIOFkCj z)5ZtXS9Vp+c>kGvS>?tw<;P;@Wcylq^|P{G_M=<>yq+UBY`lqlAR+p_6W_gkk2YmP zAAy!M7LDm`eCP*`4}A$7J~-RPyPh>8FSGXQg8{q>*3Xe|M|8g@1D|uOy)@{bl)q*> z`jx3KP0T?55H5Ex)&g=&-~LzqoBd}`@XWtX;9sa8^f?{(bE)hYO)kFJdlH3#Tq*-) z=thDKd7rFr&9Cb<>V2I)`uFR(w|gNx9=6&WN2a|rK%Z7$9*j>)PKRI4fPcW(*fU+y zj~tgAR%}da2J)4;+#V?}=|Fy$5-TS8A>J3hy#Ccf;w5Aor_iPISoc537{jQh<@Fy+ zur`@Ue>2>yeF^CX&KIDrR6|yCa+gUY>FWjM!J+O-^DcW1d4A|E_8ii-!|kl|;t!eY zpK~;3?O}pmwEp?SzWSDW>qyFtbl|h8@tGrjJXhCn_D|E6!&8tN%s4li-KMAHVi#`;0Zf zk>~@NR@C*!Ap3?z_F_th4>=^^EaLPcwOkw!Gj!ztXLX zFX8#a8c$7G$#(Hn)+s7~S65GX-#@4(Y%BkxAeYVN>) zz73fto#_eFxFvZz@4%xtdvESc;w$HKwp3?ivE6&Q`-xAVJivU46EB!ey$AAQ=MJ;a zPBhtd7qQrs9i0+;?5boaahmy=y>!0aKaoe-Y4M;d^O{c4R(sZ(EsC>IjNRyv^}Rf! zcGahin#a&$3LUSVvYICzI9W5*G__yPJ+QWW%~%s(#(eI8E^4mK@^ZDw2N`KO@*(g| zJ&JiyY?W*_o#FWDLe>N+UlxGF6Hl|()GMofv7)4c{U}DJ2Hc959y%#L|BswEs=kzQpMrP!^Q)tTzEYoI9;GIsGr4>C zbSN?Eqr@aJMz!s)G3cEkYhAjxJa_P1g;12dPl0d5%ltJc$uxVqC5>+0PGyOLR7m|G9X0pWhc+e(!wLM_9v3gY$a>bWo^o(KFnovrdNmfkeSN*s1l)YM#zssf5YM!zW_5DHqZS|c&`CCei6|!co)(I=&?OMAF z$$xs*Jl6he(^^gckee;#XASus3tMggPx_{cIR40K^H@iZY1N*t8s4cnt#^uAq*uHC zI{m9O#+tqAj=H)dKjpihnbrn)v;FR;?z<~hH}9^%=NoyBcb*T_{hWK}QoU2})w6_m zmIdBf;@-hWF}Bo%&apN%H*!AqSQdFS2Ksp3<#AR&em%wB{lo7y z`{vR9Y3w3k@r?4UXiZUbfY_T89r!7PTVS=`#x^o%(BYvqL%z>hCpB+6;Wbb2uH_HV zpyJ9DcbXMG|E%WeHsHRJeV1YAw47M{EdJ{mr)cME=u-Ktb0yi6JM??%j0}FSz4`h+ z4ZqH;<9@C8M4~O_><^9*%ilrnbJiBy)UU=XyxjW0m+|eZ<{g4C$7){>J{8UpSt=T9 z+eQEF8X>ekxIW|JTRM@UdM(yuUMo?jft_(q(5QW(O!Mg zuVK%)z7_AOxuMMF%Q=7#XE*CbtI<{JkQMhc2lRX)a;YC4vJ={QacaDYed#CKr^nkC zdi(pfncSWR=Eq9jh^Hibj&nG=5W>tcO!tnW|vk_X!B?B>yQ7L)k%(p2@y{(_523x5htRV%H*=?<)n9Tx58hvrwR~fA-+w&-cmDO(s0DwzCf# zSj>n158P8`_d89v@V{&v)+&62C0Av%sTdlMk1q(|pgVvAzrA5L|HmLd7yQG(zYHI7 z*n^i~C;xp7`V#s^8#cvQ=^Z{^w9aav>1_I$b8BqB-rvpp`dvdmrAJ5xX`euluWN3Q z@2n>e8ptb-HTSbOHVmK18h^0llP_1{y`lLW?{=w7?e-k4CF?iZNK}G(Wn3J7;yILO~LEQ7ZjZJuZr?I_2o2Q{4x9@0J%as}DB1)FE zk#EMQ?L`4vlT7pJ?U=RS2ko=Sm{_yy*pgCc67%Y&b5)7y6=dbZI{Xdw5P5=-o`sX)0fo-BMo9*`*#$YA;SzRK5h$gPu0G z5Mbh^`~ni^v2nIrR*I!Y-x%(_!+UK z<$PNZ3%BgNqVBPRMeGX+z;}?g{55LrGs$VWV*pN(mN@}9X&#ZV)Y8|F1MuC?7L|jgu)swS`sh(%D7FUALNS0X|&NBPMyoY{D+=N+La5H?<I5(=5H^lb*lhJ5GQ2b7X(=&e+mzpR(nwAGtV}yHt)&^*5A1$2WKK zZ*_#93{RAyBRn)VFqg);HPwIi#>(2|{ueJY-sX(>2!Fid8F}#WcNuG&#%jlBoX-AE zLLq)$NH3m~oNutqzQ@EigXD(O1A882Cfqgfa2_ z?d<#8!C3dO@9GDg4uVFNKeR`B-A;gJh28*FoA%Qm*T_z5Bw@ca8TqK))IK9&mv7;5TNR z5v?0>U9Ia%lYk#hi=b0jIz(r$=G{VkniZ^dY&#n{w*vf!$;nfVUX)Kho^0gTXGXBr z01Ya>QNE6OtXJ0ZT?IKAc#pkfX6&bUCx3aUS-!O>WqM!l#;7-+dJBO;yxt_LmPCi- ze;6`1F8_M#-Nf`j-+N6~PNE9@KYwX}zCC|ej*ox*T?YdAAApCI7lZblY_tBlh&@9h z3=A~>cC9Ckjxb(4<*e(0^Fos!S^9*#-yPDV``7CA2 z5hL2Gd=ssVU3Qwru5a5JyL?TZ=%U%caQ8_0TzQ{7wL7URhU{P;xP?nK@ZJerV))Ls zfhWZ_y=m72DRBI=-q8H@X=a?7Sz-cvOB382P z)CFW3{B$8>Iz2Y0>FDWYC%YCccrG_PwqJ7dfXP{W1Q>7Qy%o@e?8d`>TcRDmP4Pd&Xupt)c!#a90aFMfdoY+jcCP^juk1{r*GnXu;wzYx3}{UMmZc zXF-~?HXX58`-wxTlppy=lM)52iG2{dv$;fg*2*&r(?A^ke8JVzS6Vz89Dpx#EqFcv zvSOd~llX=5rgm)X>I-EX$&Ivm26n+b#&Z}LCV@i{W2za;xgpRN{)oi9^Z0b&AqCKn z);in4eJ3_^P1dTmYT!MfPf?fVrf81+0?ite8>7>`l+(w>T>7?xD;G^E4()3f8Q*n* z@nz~`$85f+LHX~m&yADMFJ87Ef5iS>+HXT_7xv~_@rO>%RK_2Y5bfY27}1Y;E^khb$!R(e4WA3+7b7R{{zK91rV9M=1(oIt+@>LW>;c@Tq&KtY)v%9Wk0<;?vEvDk z26(68&!^vE7Qch~_E!A8I&ZPmgcq;C=cN9I>2G{V?6Df?u!H!kI&`B#@D=A?FbeiR zlF|Qhf&NDV{jZ?^sbw)@xkA^-m#KON_OioM)Gof~4ayZ^&@b&icIMLx`d6@hw2Li= zC#%0z{p9#Ip*F)_cdaw2tTIyG$2{x%ua8?D>bQB~63(NKwf_E2_&4(^#&1-zC+5z# ze^cemsgLrDOk$16Vnt4?oVDDqe!{Cqd6$SQPE($uP1ZAy z8{*AhJv4MpCpcGW=d4*f*5(1aaEawfd(BU#CkoilbDnz(1NlFQpG$jZ+m?IyWGs}$ zO8zo~AG!F!L45ufwvPOZhp=5$AF*_M{aCtrOU#$6n2#2Q;5^0rldRF+5W#UJa4fHX zU!pw9d9=*60_Iu=^Kk{RF5o=kg1k@@@}jAnxhmZ_1%A3d;^5oCFZ_n{QPDq`Z~4se z#rQaZ%U-QDPvvZz>p$T8T^x_96h6j|wz)u_^Tsc^md%)7dRO`#D*rDa-z+^fRP5hD zY!&Nvd#j$D)w_oH1I2GizPYlTUcp5FwqNGP#2dR^OoM$Mzp+HJp7rnzS`T0I4Scn{ zOFxN0FG*OQ!Z&H~US#8kVy!LoTQDs2_(`ztpHa8&?RUg8vR1k_&3w{aJA{1HI-A;^ zPrHAtoei|3b#lEIY~#0k`ZvpdIK?x`48=Eo)}w)_WDm3-0w;b-c zujMW1*vKUFqJ?r2WeFsCKg{Ok5> z40dhk%k9Xn_V1IcDs+CD%?HB1Xs!A`zsSz5v`Ze_6V7vBav zr3*xWSqJ&QWNQG^{ps(=O5iCQ3~h0)`)1_;OR~RMZB>nPIa`!p23|s3{EUR=$>KuC z^VLt;jqqynzn5ws$=ZwIDG5x1cuH?IC9ENHZm`)Oy~E0-vu4V)L>ac#&B&?b)>z3( zWK&c$Tau=SKW3=H%Rm^c-8@E0k}f&a3&4S-JUMD^EW$#`RhB zzm@)%XUuPRe%7G=xDwje8M8--k&U0O-`~J*Il8>!Gui9s%cu>KQJVV=;HZ|lAh`Ly z-eus3Sa)y~S*&<=;mFPRh{X}H?iNRSw#vk|erOP%-_tyR2WtOXvcb`9F?5^x-jlo+)X|FMv*J6g5rp7v zmj6??_D$jsY5)(l-~oPkV=Z`SMpQ&~EsNo~<^W>;cWT@%#23{-OKTUW}UHBU@MFT>xL)rm=#j z2KHt{x6_K)o82&icvr@t>lA&J?>sn;1@u|%E`*Q0$Tw?%VK@5g8Pj!sawx~{KOHEe zeU+W@+FuYOzsT*TccBRu(Q@uxkXr`e5wjHzQ_h zZY);PKh}KdAmh_`lZ)l+q0TR$(?MIJ2bH&T-?3P>r+f~v)<`WpCo-a?<9*OS=`FlU`zg&n@r|*>&Z*q#digE)eBbHb zX?P5BC9f7ZX+H0`3SPx~#qh6A=#;hC#RbLqs^CNOfrsv+MfjlL&AL8Vs9d|DL<2Ip zcvD$P1?N5|fp2{QJPkP-4Rfv=v@U;(Y@U@-VillQ-;R>4RD&H=lNV`C+R;&pv4C2sHq>Fs3o=*UTyitKpA{PWwjpP5Z?4Z@4_}*6tcH2 zLBAN$oIDb?dd8=s$c&6O)#r*U%T5-LG*iiyzEpdDC*#%BhENH%IQ4`QpP%Al z&r-Z!$ou72#x~9)PkWk}zzFBQSL2^)=lk~A?ANFN@(s|pX%*gHDfyTyY=0w7+LQJ? z`w{)Rw^Fxop;-I&+4!a5WkDDm5j|>-DG-W@PD7)@qG@NGnO`p$9x;Ts4RnCrgBE9a?K3jtbU}$nRMR} zbFaV*XYLH*tzLQ4Gw>$=TOsji`i*+O;}xF^NZXj_x25mGW^evj0!nl z)S`Tw-+w9hmGGxz+z@L94VRkUDEx`o_Wf6L220fHgDy6C*6r|*c&ztP&R{YDy*;LK z_}Oa8c^^NQi>Lmm%1g=7O!+qIn#RBF%YX8mHO9}-w&k11X~~f8yUfzpr<>l9u3dP5 ztLG|Lzw)HHe%=*Zs(vP++2jm#h1|G}voX8L z$v)eYk!y&9>AHsgAsg2aUwl#7c+H^BBH5_8pRP5?B--jiUdu-!8JTZ#da4g|mc~Qq zNxR}DI%kD-4|}G-o)P9oeX|gm-p_ld(W|=ZcrQ{hn;5z zY;|?v#^TM>!y>$Qlr@Jgbh55x-ZONwF7WcUZ^4)S*3;GMpac6YdfRfYhZnAWtmR*y zf8%A=pt{F!ZjK4})Zk~;8Pci9S6hpS9aDb#0)7qpb7gb?z7go@oK@9x_^JN6Bhb0) zhM6xF@XalKoHYUsRIzS$F*8)CiEv1J!TxAj|_06nrNj_>X_7x2YV zUitW7dH8YHhX-kQO(?fXeKE+zx=|Om1I{w8i}g)()bZXwy?=tw&BT)*^m!a>7vde2 z9*;Z6-X_bl?sGhD6!Tv^?k?s(JnlHt%=+MSRSu8)xZ_P5d>$84IXrGQ<}zo9GrSJi`Tjh&zjM&v z9K+uyzqkD5FP_5hiT-+w-=zFN%-zeFqrj9iTB(bYq;IHF(Jzdxma+r0km2=wolTxa%gX`p|v>s_yZ z<1+d;+Uwt(i}de2`BN^|zh>4Og7KNp%bKe6E>Av3G-^G3AHy;`3n~TXo*6lTWixVr5b=yV^`mTONfB*d= z@VwvpZ-?%unFBo~XQLOuw-sAq;PFXf&Ek~X`ePGp{qvwdz32QDp_bdZhknnR7hEj+ z-Fglk{2erE%g?&Tvta={^u{hZoGIr7-|wY1OBnlf<>Y@-M38H&P4h4H7UYn}=9R3qoqAFI#7kJ@*Yl@u^xt4wHp0rR~S{Vl~g zfT?FqNr-vzTkJH(&bc>kU)FmW<0aH9oBLP(vpd`~$$#7aBw!jZD}kq$M2%T*s23WZ z+U~!9+T~L1r;mT2Om+RI|7_%kY(CcWJo_DG((nAbSVOdR)gx1q&&E{$tG+KHiN8FF z?)tJ{&re+*+Aiwpr0fO$Z>QgB)rs#n#@J-T)BwLad=4GRgNFKsErMMYwwmy9DdR~q z4(&M*zUq)!Dc~pFR%-)_(U5+g2DkE!lpFR#bFDIL8;3`5E*L9@O?7PZop!Dz$D*Rckylv$_kV^D@;~vG$;<`uzS4`#hvrL%#yf0fZfdPHj~FWO zI9GmT?H5F6+3V-s&{*Y%&tVLY{TE|KCux^XBG{vArSb164#LIchg&AV6D|G12bGUw z7x-W-C*t_@wEpP(^y1E^cU(5+6W~VA=9`Z5yG@q$>DhbqeBCRaUACrt&)D_Wr#BOy zUY+ODQ@%xf2Lt&Qh4(^ydVU|(cjuF>IB)lCdVR+p+gpBcw0zat_h@;RW*>SA>TlmL-KkJVc{;V1A&zBDd zn!k9yMGw~A`dR~dbhN(qS;iy!(EkedE*E61rK-N*c#G+a-aUk@C;%_`-Cwft0;a>NvYusQbsK=Ad@VKHV+Xf!h86Soq1O7n^;_x;=fq~zFT1gl{oo<~l^4Z_vwo}k zLzX7$xi-*An0Q;!k1wx>A?yAyI-m3G_%9;P2O3%`y9E5f+j>92p0t=T&wRx%BfiPe zVVR>tbQaCon*|%@?A!M9X2c7Mhf8LK(MPK}7gMrV=Qi!2ABrF3Y>MV;%H~ma2%3@{ z*1Q};KZH-aS8=;3`K0;-FH;{Si%WSwg)Gy&)_R!y`r>O^dlM~?@5koiD571xr}9eL z$>+O5+ODoNi8A5^t0*gg_f-+&l?4y|891vVuTLp-vI4j}d4E%4`59j)a&mnKXF|m% zczn#Gm*0_tNc8eg(2EammtS&lJyv_giNo2aedAg5t(JJW_BcEfeN@lLceq)5nu>X5 zeTm3VyN5i^S_NYm#n>D^W}O#aSJQvRzOAPJUCh&?7wR@19htkn#^kcMjrehX!^|=9 zcJaw}aB(Ab?7=%$Z4rjtR#K4JQe=bE;uuPI}gN4y1|v|R$j#HcY*7~0l2#HD84Kq zTnqQqT?Xz?814lV=!LmO3>qphw(^l&3ut|4|)G3q`YgWG2mcetD}z$5o*erf-GjQe)x zm}s~N8WxROpQt@o($SRYS92i-zp7LWC*wH`4OW4tDC-NsH9C!Lmp?XdPTs9?F(+RM z(BBywuR0j-5Tfr@%tP4^g|tQe&j_AZ_%Odb=JhSqa($poc)%A%-!y0KddxE;crN=w z@}oHOUHC?r@-*{PJ~IQ&+qw1Ztdc{>J7NYO8QeF@Dtx2(mwbmA&aAR-W7~5)4jd}es-Kg zc@h4wn-YJ1+UG@X97F2##`F_%(TEoQ1zIrt`Qy3Y=HnUUM_Z9+)epy&M`YjK^iMQ- zkTaN-$3oAl4#ay8d2ko(>y^9X;0F^g{B8ec|G8q8L(sZ?My~aL8qOG?d3zrnpBOe` z&`$EdKmB*`Io=6H%rokqA&*Cjwe94Ztmb4-`@uHO(q`s6 zKc)?hM>@x#KIQm~wUL;MVG~Wvi^k5~icAnrwa+#MuT$Lx)($aENqA;H^YPbPs1Mv! zYRxKyL7WzGYnxUAw{rZF(%X&z&suV`HwJRE zYrmlI?Z<^Ezn;I3&5sKq=HMk_5PGWM3I0AdJ)5Yw7H}sS*9aa3hn3J{wfYG^RV-#y zF&G!z89IHrjwecv-v*4A^4zBnrymT)PsE`i@iU{?NNi%4yS%RT1^u~xSd-Qm;7E!m};6_*7KxqdnssI?2pwx1U|8uf9!-GljS9$oqL)NJ+5q4X5w z6I-@=e2O#bcW|b>cvjuR5y#tJqzt;t9KzQ$K70$k#FN>2EN=wXmWQ^* z6~8jTGySqc__*bhv}Jz}MC_gxT`wydpQsuUYqrJ=MOCw zzKdcdnfn9QS$Z7whpv>p$b0SRrRDdb6T++2U)k)|_JEh$cER7}!_dimKE`)xa<=Wv zMTdbF(YeTV0Ix%L%_l#@>+o3gl4%t$lxsbCx(}nOzW!%ie+PY||G}6u^MCvJSZDKP z5B7H)zOr%Tie46vC2Bd#O?LS;@?+pvN!?(`>yX{lc%g#-vW@-py}v)wybXJ>6ML}n z;HoVh$f$be5IWA;f@n!1jGQT7@{xpc&^`GqaOE3lW}o~u%h)qf`)%}bWLC%KNb|C& zYqyGa(aHD8rhj5@;}*u-Q_pxcH$P8IslM$17M;R8ldaH1HSs<2W0tWuYX@TqljEtJvuO(!RiBq^)w>~JRv3syB^Kf2JnY0YG^}^h zvRR;&LiC1w6YgnXJcZ;S)HSq(kHGE6lfEt6Eg&8T^s{w#fB#@Sz5H9Ene6)#_Ix$g z!J0y2>tC%#o|jjClzbYd1^>_4Msl}mPsXex{hPDryLY=Lp*vyAg*KCikGAC#v+o|f zDRHyj`~1-NQX?M0CmVPVJbpy)Jv{Wikn;Lvymyt}s~`H_#p)Zc_ts^+m;3g1$LhVu zGTtL!XJ)&@_1@M${+`i$PyF%setVerp8g~6nUciM_1-`Hk@tXKTJIgqc<&R>laP9$uNHu>vIk3c+sdy*f~d^gx|kl zO~TC^&zI%tNXN-zBb{YIKz^R{&Z9dvUOu70^XNoxIUgR}FQs#XI3Dd)Vl8{p?C(q7 z39q^fe*=DtHSp0h_}C_At51=CJ%f);W!>qArEd0>-&;HYEo_`j8;`?V8U?b1MH`vXb^Zm24oPThyVjrJ`ck9_p zru%#zYmL(X?L9iQ?qBl!gR|&62Mk!h+^zKel;@vajemAEbxg!3yBayB`K{}u*T-Q0 z$JGzF{QQ1+o8-@#8O&MuSk1j{3G=?R&Y46g12+F zD9JkZ)rCSm*VZ>}`CMqE;!E~^p7Hz(eR+$x$B*~Dg$*#G=a=aHqK|v~WD|_AHo?dH zTy6_JyV{IwI~6itzU`6~TeMd~^(>~IZ&OcCXaBdxbnN(yLez=k3Pkp#` z0k%;W@>Q`5i{ODrjcF6U@J(xM8wPMyN*n<(s(Hkts!!dzx46n_I_>pIXHNy&^XW(J zzK*}A1AGfF&5T$5dkNp?6O7mI@9pUL`bM(cUn}ta(Gl8Q^HZ})&v(eapN@R<>2A8C zy9U+;DxsB&_@p=dfAvWp0ygqVBZsF&p|g6A=5(z-B?Er!)F1U@51w-;`{)F@ek2Pc z-rSemk$!S65;{>D9@8^9s`)>5z$ctq>|~DM*1)=o_Ae|THhwj+@h`%AgttY|5;A|< z&xnoZJTGG7a~At&h`Id>IW{()v%G9MaPF;qq^7o1O*X_h+p7QsJoHQjlq4U#| z3-L8BgU`^H^cQ63Ws{57@kH@PH<#`>FFD#cazxYakt5nV!P^@0{>__O(KGD*X6~dV z3(spFE*f3dJC69Ae&l|d_0`;^3(vm=k6Sw>elkBa=G#{NAZU~I_lQ-qd3REWcgGJY$ZLudJ;=G3m7F({*xTtap<)7iE{FZ;$nEfXC{2iuqZ{n$}8amo>f< zg@N^yLdP#RDCTn)xNK+s_;Hh(gZ7>|sGReD?4lFXwHT4^PZ!>HxwS<^6Sv0>mM2)J9$HY|I|xIjcU3yd}&kN@Yp$Yq`7C2 zBVF*WUp-IU_>zatCy$uKBX7_j_;d=nl)4w4pZV2s7yg{*$-@HQQC_+b{zm!TSu-MM z$WU092-XpD0Me(!zvdd-BRJl^&B$`DlnryT#wW+S+ps{FQ$Gg8u%J`p;gkIZRAA^Ew&1 z6hGHPt%WvDa1_@gTE^MyJg&dmI@Mn1a{WN-`videW2YTAKPX6~Mt{Baibwzt-q>?lUlQL=Gj`>265sa!eEV`v zhQCR=n|NL=JZ~%46Fi&efc7Z>tHves&ubki3mVt+h9wiv>+Icm*rCn9WY5&HCgn|? zh>xRqYIc+AT1Z{umyOi5jd~6<-#f@DsQ4^59?zeST_*Zkp;#vPwXVM&Jd4fCDRiBW zQ)nyGKfNwvy+UwPUpvqjRxlUKr&hETvVQSy<79o`j#J~y4z09yQ=`dll8<#_ZS1iZ zr-qd)qUZEx_R)pNyb7SXS1#Am)uej{$JP&g&T!^wQ1<FLOV(;3OYOc`f_} zyEdMj)!TrdM|P#+ZN$S0#qY2$3v52>P}7+MzW>YF5c)=X4|eRiFf>vYWzRV4QL$uB zuWVTdC--iO{EmIZb7)OK@1-thZ6HwhtJE#uy4H-N^Vm zkeS8EROKA4hDKHubB;9Yb%Id{J1T|z7Qgt$U&GVkyCc}^p}fD9QPW$sHmh0B^iQmD z?{glH@8Eg82_=fzkEHb}e=o@_d<8E8w_JXeH?Lo?yWY%w37F)ef4s=}B+r!hZY_8b zzlnSIo!InUz*X(!QKtE-_oV-5E(Gtp;B(4v+=>37aj1WvRsW}3zGdsx`u8}#OH*Hr zaV8n37yYctRU!hpAVBPbnTi>1LUG-c2J&KNb6raXX=8WEbk^Am3A53&3 zQ@i1*Yv8Gh!xc=lPiWvBV(oe7rAe%bpMhtbV!m~eOK{SMw{1B_9g{q*i+`E&+Ya5FxJ~vK*Na29Bo=dh8}^X)j+H8Y7Tz!?G>kLYhxJTev2u%YA5Qu( zxud#vW_Tinsc3D#n)S0EXge^`cdDfO7m_<@MJl+J77?xra4Dy(|9Y=f|j$ zkFauRe*A$l^ty8T<>$xOx3lS6TKyu%75R8$8Xh6~&teRfCaWox8*3f^V|Uh{Y`R&% zSMB+G4K0phmnD2VPWI_QS%xhqJPY5cNM1|2y_|VkUeW<=bV5s_l^@7%)QKmLS zQ*&Ioxg{~4a`jJm*$H0k`{bZk{K4fs2eF5F1xYNli$*17sg8N4CvIpKDTb{P<>WBR_g+asce5T zRMH_{4?HAy!I?Bi2?6~g0_WhK>XL)I>Ok-2y)d+@OPZ(PXPFDdG(;@i6W z%zouN&@=PF*v5SA&tvac2)q{5Pm!*$q>A^e=~Dr^$3osEpW!*`nOilIIeo?KwldC4 zP+jV0%Dd+Kvjz3z^!;;HwBhgF43YbwiX2|rkNGO=H{ylSV$&PtzOd5etS(?YvYlV% zxyEf}II*$Syi<#RzHCfrYZd#sG)~Q1>A6)lzZB2dYbhS1e~r<`paGLAz7u>4WGgTa z4`#z7#fK?h1|O(l4PhB|#e(~TRge4*tXoy0GpQ{@TV?DME@wY5aeU@(>L$&9;u-U*O{gX8?F07v8@iUb0#9GlcLO|!{te+dy3gP_2R;`0S4YRro{^ru zi5Qq)UuQPG!N2y7J<7etKVXYN!yT79+whk64yEIc%gdWTnW>MCKtJ>R%X8SP8T2p9 zpW$FW!un0;bAFh{u<-h_-m5O;Ci4E{;m4Y%<~6-;hBe)mZBBGYa@)Gi@b!}AHPFlf zWbggNi=RgJhK?a0m>*eloS!_5oXYxyyN+=EIJ!k8^4RKBce1xv_RJT`@JHtM9HOpl z;IFdzUkEX$@>>)er~AsqWxd#cZO|$)6!|TaDepvvr_gJ#(N!)5VZHrghdk;rDJwET(@dkCs zhZCia8T6})eo0q4o<}*durrR#;<@Oe8(v_?vN+V+85oz^o)2vGY!Tm|K@R2JIIQU@ zlh>37d^;oAZBLrK^;glC?YyfqAPhRm4z3FrpBKN{BtC4PBmeYV`b*&q^j@vQJ?GY_ zKXwbeh&j=CvyHRgVBT~&%5PFRv?%|SXnr}*lfcbPaq;m}cz!)~3D&Yn9DO=JW*2&a z%5@fpj~m%9x?ZTU@;n8u{^wRaFNfBsH*fqxFci|*e6FOLTBl9~ix;N8W- z336B0>|e0+Iyer^CE0PGQ_d#r`ssl= z=h}_%*uZmi56h4AOy&1%@@-V-OBvu(z;{1-tnW9;%%37>D_tgQ zJ#FS`pMv_a4c#sTU)9(u-eYboln<17rn6#vzVMl-^kMKt?zY3|0cmJIH9g$s^Mya- z`9Y8W)p5<-*dJm~x!@|DRqv;HU;UE)-T*9oy>$|O$kbU2DU;4h9roO;Q02SVA>B2z zj!RSrV@sj8+J4l(dmVyBW*z>R{!(Lt?}{I%nCAs+%bFAHOA}q{U-Q2dU17yIp5b#? zf&CxF4sDfDEN}keRW|Qvf1k&z$4<8QZ*gz)kV^jZuFgQx z`eh;XtT;%~bR{&cn35GCp@1OB& z^!^5y|LGr84nMlUeoXuRBDc5Fe$TxAtt-c-B6l^k+@kk^Cvn&13j7 zV~8n6>RaT8!iRR0d&?ty-5Y*z2|1&De((oR=O*^3H~)fZ4y_F}=aUyCA04*T!-m{^j+dbnya~1Jn_JDuEWHR>3K9S)~xGN-YKQePNsP4`^-<-$7$h+`6?Vm z`8El!p8>9b4Y6A8%)Yxlocx^+`&zfp?Ncfj-Rf63T<*$m*FCZU#^`W(CHq;4XPv2X zaB_qH{wDXn{hs-K9pz8Zw%P~xdyN?dE|<5?3*bg_@Z02;5?;QC9Q5Hg$HuP>#=i(o z8e1WLx+2Eaj{Q&sOn31sc)}lmqm6alR|brL>DUmzAjhyYI7J&{&4Q8qlfS;n z((+!j1b-&`Ge>JYz@ZQL)Y5m2@%LO;=^9%89oK)MYhdyw*NeFh^KZu(b7P#CF~%=@ zV|=H4l9S2p5nR6r+Ixymm7RCuxBZ)Aqs>0`JCww(VUCKw_&NPVkAiVbh@8MgWmSkLR+_v*wB za_DWm@OEDIU+)>@WnT#Dk0adrlkB3m(NjaH#HXc?K}*|5K}*p8pF&Gl`?Lhj2WiQt zpTirR-%&pO0UBy>WA4T*MkK@V|gLD%wq3!eJzWIhze z=odMXfaaRYz(I5_2cuQ@n9 zv0y)XIQ%B_oh2F{z9RWi%VMTPFw$A%JJ1QG+jNv-molHFYsQ(k6`RVNPZEcsvWcUy zgLtRt(onPBE5@(TIURrUrciTy1M9@_E_Xgme#<`)Yi_W2EDqQUQ)YdwmdG?%@uWAi&0(tFr!*e>|lk%Va^}qISw&yD{ zj_v4{smLR(Vb+Vwvxc)~&0bjO>=xeXq`p10LHvu26?>94PQ63ygLqyLmzl8p%{Tiu zGoHOwm(K3hZ}nTV26Q}Eo@>jia%cBi_(J>kz1-Zl;o&myAf6g*&)Pz)wJKKF#{ZDF z#_B&>%ZJW_`#p}?cS^O`?uq37mvv7`_cbS-{A@W4{>h-XH{|L{nuT30~8bz zNig<`fSRZyE(9lidtuXL%tSJpF-fm%ViFybr~&PUZe(dqxJbqXk~Fd?-O;>E4@Ntg zcR)b4&VrCPW}D&OUTB~-0W?W>MEm{zs?O;?eFZ1;{^#@g_vh1}b8ek;s-Al4+3KmM zo+^3|*t?-K2e+HU1@9BkwqV~V*rDrR1Z17zZ@^x#>&1iig8Ty39@5$qblwS_r}p8S z^uf}%`DpwHFM>blB=w!0z$RK~XWT{KviXa2egL#7e`3*yuzXgQ<}0B2PV5HBgc5Sw zWzbzjx~MfrBB8ufxYBtJ=UUpw;ha+XnC1OXLF!4%{}3(|8mc=&Jgp*e0Iv1 zziYkN(-*1x1FdZYKDNIJUX0luf_G&{5C>!DAYtqT`K$(M&aM3`mxJ_n39`N#d!f;g z!x@<8Aj@~;xI8Z^%S6sUg>6tN8Bh5v&rXo-p|#GSo#5!fuRq#cO8rsjavAmSpsph7 zdQ|oX^}Iw|j{<8A>*_Je^;~*FSJ@{a+F9zg*~GfLbjcFxEAsS;_+0PnDj!J_dh`7? zArF`5+8=lz<-AAVeyaw5IUW!FHG1}wC!sg^C0F={#)NOJor^AIe;ogMik@XmL~lX9 zm+lmfN*M!(qlg^?A4kUGB{DDuK0f?0=!C96Po2Rr5O17M$5sb)Y$H0hlDUu0ijZEw-`#uVB}btSp9bzPKSVE1V0zGhrjYjPwu6=#zq zh;jSyX9oR2emz$W(1p`=(rrED15$3Ppgv30$2Lab9QIcyX9HNA$8L_l{X=km4qZLc z;+!)gq=%)$WUHaWtY4LNaK)T_9{ko~*E%|NuwiR%Gk4w)e~LNrKlKgHK?L)^1GDJm zeERsnrJ8>X(n}h2NqpHWJ95nFnVc0a{anZS2355e#1}DdE01K`GpU4k`eW_S=jfZ| z#~P0x=cVvtjmMAo!;k3C0e-yS@uOeQ&l$TP!6#|>=pw6&UETobe@=^&rNK5=du`6~ zY_hr7WcX06&J!$iM!PoWV3TQI&C8w)nCsbOew!_{`CZzS-oy`RV^@OheATscsA6Qy z*>ry%(l^Sjt#_y*f*u&`+aY52tS<1|`4;We(T<@V*$=bHho*LdZQbSdsdAIUV^zZp z_IbN=_|&J$O|DOsPtLG8{VKgaRXsTrj}Oz>X9E1Ix*oBH^+`@j| z^miH$E0(c~SW4-nE@)&r`v9Sl8?=rmfBbsv0rf?B9G6kPjC~$jpGf1`GS)tHzsy_r z%&_%k*fZVry==`5Bk+Ht`*snhza++)lP1(qF~&SEU$yd84#9^R8~?74+uxKdk_B85l zG-*R%uN?uuQMQr13%MTbMHiUocN(+Sj_>~ijIvSxCty@P!f!n=3hq4is*VRn&67*X z0U`T83hsE`;PKXgu*Fl@;z{2NhB{!V z!8g7Ue_j|ED#0s0o9*rBwE;Zg8+-~n%7qSdhRRla%wyxX!?W_u25m0QhwS$m&;sA< zzC0uHE}ALTx7ZoMZ{;&hrLB+ZJ$Nu&rr{$l1vA^JSkp8FQH z_cw8`vKzeXWUgwm=Bv%{et@)XS0n7t4BNyWn<;7mmB zZGm1+<+3-jJsqFUn`77~9c%d<`lOcnQ|A4)e_scG8sF^2L)TeMV6X9q8B?{VetnI8 z4at`1Ef z`|XqXS$N0Z?~6`x^x<@o`0v}C&1Lbo*7+}=pDdmrha_WXa$X|GROqz1rg7cXl)s;I z^q%AW$J{rE%uQEXU-(x0&BB(;xn96Kn|Y3%$~kK;{%${hK#hs@eM!&NIlt(|;v?+U zc641wU2IBfzNcAszx4+OW5>Z!`wVc)_>`b$qKr!cb6Aa0CpwuJ+?G1_Lsf3RdyUpe zbGiC*;sM2);m;Hvsu(ZD!6d<-^vaioJMUR4?gY1mop+<0zix3~!deIXyW`H7m6H~? zCA81j>%MXZbyIH{=gXtJX6Jd|RRa4L#;`_DTM_6h-_F0u!)Vu%lpoE-e#lpFhvrwXQ9VL%JG4j0=y`6!rcbxj>lTYCoG@_U)+otdqxu*qwJypE( z0(`KGTkd-XA24yC1NhrlI%PBQ>52!kxFFB8^mmf)z6Wp1wOTR$D#y+jRx#%V-l^bvs>X)?vFC+7 z)Ug)#n{zzK3(?;nZBh=;N+f*v8*gjgB=b z4?^mDHM|$ZL6vL+=5meX?RXs;QBFAdSm$uYw#IPF*{UPj+Z+6*3;kWpSjU*_X*_OV zJTxDj2Av27`BIfL?igbu-};WnX7ubL-`oypB_F?rTN}H-S=h!@ACxiyKggnN8zUp$mvb25k$vMZ<2l4 zc{^*x^ea4KdecPun4J|ny%9UPb2&M^Zv`Icx&01sPe0r5qQ4K$w?44kv$q||z2>1c zG33Z(a$srx-M)}{;hn`j3qHu1AGgu>JMc-7>!NEO>kH(H=!QOz-Z`Tu!v0nE+{ClF zpHKYcrfb*}ac6Pc@mujPf2O#NJmIe#i==z`{>-X!Z0LMq`Hn3wnKBpHwJ)LtnCmV! z+bgigM-a2=x34zUp4w7<4PM`B=z9}(YCe4|X76kbW3Y?$Bdx!yZ^aK*y{ljEDAyO` zmyO)W!8g@Oz00ED&GvJ8&r0HeyXohK2PgE3FCA^TeY@gCY@8O&E5kg4$6v{b^u7>^ zux<)nWzhdjcp@|O!Fbj~<-G?B4y^k=|05`SEcAi+I*|i{MKE_y#SiVZ>9_OxmB>G@jT1AFZIY$X zZDA;*=kCAs&mIPTZ%JeSeuasDDHLsJ&x-Y3&HmO?oPpFZe_`*nTz3G^sK04kmmLoG zY-P`_H_pG3wd*^gKd4!4EE7qu0ei`weR=~zGFqE)qKctdd- zdlJzN8b5NpHoS!GwRwJZ@39-TMjz_QV+@ufS2bV4uQR)r{e9B4+BcP8?>T`VP@C3zQfR@PJ{r`nkQuwFAu?<+Ih^MHh!3ZZ5U$ zbLKJa6I=c+TcmTjvqyeUo*G{_$R6oj9-HzCF-h`Ap5E>Dvt`+M>GuuVBxTSU$sWNc*%JodXwd!w zj_CE%+gPiQ3&tog)ghA>fs-Ndz(+njU-jXcF$j;&9}mLwGVsW5)_fpQ#(P!33C%cL zAkw^m^-!(0-oa`p-#EsaAcQFT43{f$2zI@iKYFMk1{E|M~ zh>blse|K|Q--a^CvcJ2S{SereZrt7Tw=N*R8S|=OnafpkcS~`g53*Cvq&a>+m%se< z?y$|jF{_005_d;m`R-o|n;OF={&qfjnHx=Ca+BkC=4`90*t4K^t2Li{VmRC0DU00@ z@9ZFM>xqllQ}6ONMZvXVW3-lf44RkxBo+z!OKp>>l&oR1d{ zoxYp;+Csxt)tKQnHnIoVb~nFe6X@(2&BwZteXk?eI_@IJMgw{h`c&+S_GI*sOXv5z zryLPq!?T)+f5#GtOFR|vy z@0jkt;rO*`^W8@(jA{EzRWu$mg}+Q9Cxq9}v!~VC17E@?q%+laN8^$W?K~^S4oXm` zY@t~P9pbDFDD1cLUMti&pH{Ck`Qw64#ppv-IDXub?wkp6?>>I4;QUDR)_xkRBX+$ z8q+5`YYVjc6ysS2?Ur+|F|1__+v_ynb>q-cL!FF8Cpv2xIxk6|3h{}~V%*Tz$h6)c zb}=TR$u#<*XIWkSv%99+ScKD^$dO~fvM=Z5b=|blkIkaB#T{ysZ#BO9HUchWn>-3% z?&aORynDz*+ANR4uXaC=$CKUju+ORUM1%5wM4NkV9puH=Y1ikc-^0_QUCDdN-8%Tv zuTN#?trIxjtIksk(Sg+aE$Zyx-D9*_m9ux-_e7IDEOHJ_vrb zGYBvCc8TzNVb4m9`GsctR`{YBzQ_)l)5pQpu!~l$n*-in^YHd8IDZWrMQ3!X+#icA z;Ir#W(`S6T^Z4Xa(IxoQoZ{QiWsq0ir)S{h3Cb<6{96=SeWYci%CF=6FaLdySF%)& zzPv4^JfiX|$^T3FeA@44@7#a#Po11El4Je9e^DF2@u05wAk9n{L;a?HLt`Ix<*Uu8 z_i;8xtmXIm4X*CtdOLNVRDF#x7mE+fiAARGWy*}=0l($^5lMZsDAxCYU)QrP9{acY z&G>zWYmB;HRb9Z6guZgk2eq%VH~9d1#{T|*%`u+1-}F7_>fdIbb-uR)s^@`N-$+;g zDO2yxQQNKG_cI^mI+6N!sD6017&@1(sz6uicTg^hhb243ukEy53D36ErxDm#?X)2t zZKp5A&{xMou9M+K&vzB9M|NwS+6&0WM!`e>KE!orKsIXpHAm2V#V{9tpMD2qWL&=| z#QI*P5B586+#6J$AM1N1rF@ynvxz70%RL!cL-`|uiMC|x$cD^j&VVADoopc90en|O z=X0QQ%RA8aGV=daLC?oLI-d)jC$O`X*P&~I!KQPvL-V#OXnhw~+h+&yR;#kP=T~VQyK< zd@~Ik%7>ygBW%vuu`#Ae_C}O)`G<54$O_6!cvs)8ReDabW*7TosQlmP zi;oDm=%qd2){fC^w?A;A%Hg#yQvNvK6zIEg!t-D}fB#kX8}^R4y2g2R{fl4MYPZ+K zj{oRb-}fp18ueVnzvZW1$4}RT(;&VoJbb+X?g#KS(%GN0QsVbzf6C^mf>(8|h8`R5 zEa_QEY*YgIl|+73GdELiyv^jYDFjy&@drf5OmCXY+-(Q%PP$O}Yvw{Ly+7>q=%U{0 zoM_K}XlV|%{0{7!rPw#36ZzOHnd50br2IbC&cT+iVt!VOE=$8NEj!0x??upq1^jnG z*Hw3tYnK0u8N1ICd$^N5723~S7B#0?JDM#Xw(AGTzD4v!>j&az@uM40x85b+vi!=L ztH>uPSt);k>biya63sRAeKk1IJZcAhmXBFwbEwnuH}C}OJXbr*-T1CH$FX5X##%OM zT%nZ{q6P7@CtJU(a@y{oJk0;M^&K#1Jj#I~0h|VWDYoXHe46={lWAYqxA68aT%GI< zadLcx%7O7RuCMb=z59+eBS&jnPw^a|faWnpiZ{aEPV)O>+y`lCjkkCD-T*C$rffbN zZ@=^jdj{Che4K(^_!GTUf;;_|e_paexj5y2EWj_Iu`|$G9enuT^$*0LL-_}+Z-8@` zUWfPwz}XPrK#AuY0G3qWfXx}gKI!Z6StUxKiK)o_8yOeyoAcX%4}fP~^i4j1 z&qIsy0n|X>vYDg7`9Ez9%>Nm~bIt$#Hpiy6$=F3`Gn@Jg{JAjmM2(H+3LEKraGo$8 z{@DWmTt54DJ0I7YxZXX={8jVxG~iNfqoG_rmptf6emB``nYp{xb(@K+mgBz?4OlYGV`R-- zd;(i8O&^%|?_k|>$KnwGVg4h;JSol)UZgGgcXk0sCvp_}h+99RhxeL0r`sGiLI1;U z{P0@a-zj{7qdfX8UbcP%_}up!?D6~t4)@v3t(*;D#~U8B?ZWe$X?G_yFaCIlKIr;@ z?U$STf0=uqPufQs>*L>t&mY^{uHD^~$}hv6{GDX=)!_VJI;9Z1^n~IF&|4cl87g~G z^DX(HOVPj6kf+7yQ`zkD2_Iy?M+5ueXY&6VWsm3XUZ=Tp4fe<_%uk=={|Dp(YUF&& z>QMc<9pu8zymr~T!cb<<_$4c__b=$#6N6f`8McwVZ^Sce9wWVG_hDqFwLLl_y{#KLa`Zdo%%|>o ztZC1CtAFx7#(Wa-O*z@7=~eLS@HVi9cgVcv;u>%MgQw#&=##gHX1Q>Oy^}17O*vn@ z{H%#X*YEh&t``^1j-5#snAv4qpW>=q3FCk_=u2930ek`P3WxY_#uQonWmxi$5uP$h;13RhUqLI)9dg1lON5(Ih)0@G3VN1cjb+Rw(xvt>% zf!zJ?>Yv|M>Xp7&KR`V+mrcLr!#a*nDlL?@YT5;9t2UC`wG;f-lLy16$9i&()KUJt zHx`n88VBuDRA2mY@bNC3`~8|bA=acEVXNrtE@BK0jLK-3lm_lzTYO~i{JVRF&%5D= zE%b3Xec4;kwr&#moHV{|o&0PXyHk;2mRC~y5(n3QSq*)W4`EWucs?CUU$p@IYdjej z+BUDGUzolsE1b1z2V-!6b-BDSYlh*hf$>@7^;3O3U;nb9iKWnn+8=LBn|vDbH*Pu6 zzg>Gz&-G09mU4Kk$7ZQ~0{hFejdn9ft4d6Xm$IjLXCwL%9o+>_XEU$x>)GhFAwA-k zZSu-o-V0;Tp|te*!gS8MHa9#9ZugQ8Y@g}q?Z*C9UW|b#3Zmv5uSANmWjee$b;Hl<%-4$l-LB7k8ui?v=#$O`O z)$d;)oE!OidW!LM&d69F`}Kyzv#+%KV+PN&Ro>!uY*xw3T=+urGRYiDvNBq3;%T*t zH~ohrj}mt%8heJT#&$lua$@Anw&D>p8;X$u#U^W&&jS-bQ-sV4_w1@&y6zeLaLQ9( z35_a8kL0Yb-K-5}7Q~tg@h@dDztWnPa%mky-gMoFOh)D?o~Iifb{u*&7jSOE1)+v@ z!@-ASHnQ2$2ewR%cu3Jn5!W?5*ZM~XH1K`y&&MBWS!TOpzkIq1@{ZQaT#g$zXK25j z`p|(@+x{lr$+;eV--9=(U$I&LfAGe)#hb{!a>M+P{-+72$Uxm|O;q!HjfL#{JmNBw z;6`|8r(E_v`Ly;YfnRvi`{KvoZ;g@5Nn-|hT>GEGcI>nt%g-@7v)8S=Ir{D(&L*5f z*Ox)J@}F&oc7t?1R^_+F`hGz9!+bL)g|2T3(zRzx)%Ej@>`!c|^X-qBg^xFQzO?3) z!iD%WWHukRwhZH_^I2X6k5Tf=O2%zo?d+Cn?3Q|B{GP&Yd5iOX;I*a=*jD=9@x9xV zk;s4su~U4W`>bHgu=0blSl{oEF-#)|{(OJVEbOv(Mh@D?Vf0OyeMW`M6N|9tOU%yS zRE^sCnI-(SbN1Tqb;abW4x{&VHkZ98mxAo+82-2=#$N|@>tW45EoDlh(EcSy{rm-40~(F6e1`!OOswzABG+({}R2 ziWWkF6xWZ06({4Oij|s(#3=d3~Sx*}`idS~KG9=|}2`AyK=Hx#sjn z>N|<7^Yu~=xL)?)J-rjKtG1X4tCl@@74z40=8l27#i z@SH?{W`eKm(6E!`#Kmm#=J8?H@k@c}a$wr+t=Dhy=GTm|7e}bPRI!%dKuhn{#{Y)S zg}vy1nCOdA>Cvm1X! zrsuENVltdv$2jkTCfTnZZz3-3L}XI)Fxnix?F(zV`TY@Sjd|X-Dtz^w)Vbcm>g11I z>raur)gCO?XTpAgF3(;M`cCF}V=FsHG%w$z`qL3|e#mnCQ)%oe5gqQxF{hV8hl*d? z4~!?#Gq-HHd(DW>udVqheY^Gg5e+9IA8yWgXil&CtT8-^?kWGY^UElnpcorldiw;l z+yf7tgh$B78J`f!STzir>k9ld2hFgClki?nXpql`!RII8y}SF0;#yZ~#-~D#-{vM_ z71D?|6Az?4l+)|%)!_kp!gupWcmaJUT_?RZ`Ipcaa0$lWdbB8=ZR4Qe6UWa%{iWEA zp?Xbp_cxaAUX>+1&`_e1o9=ry0QsS#d@KaoGN935Bc`SzFbY{%Flx5t`ycEQ_WcsiZ9 zgO`x6>|tuw*vTakU2y$}QEe0i}Kysy0_OT4<&htzk{ zy}aRtV@rEB5la$+PL_^|t&yB`a^AI7>9 z2=^9e${pqTpq7%)N4zc_d#?T8O*Wo)aR2BK{6Xi!A3FVA_%q;5w7-jIKK}O7=VEjD zsxUaIl+34p^P%mh#}>6!U5c(E4zO}WnB}B!!)|aWy(oL56Ii=OlcOA8f$|&2MFY@f zCop%7CjRO@@Y7BXWNfWfgZOdw#(Rz15|hjO{`qX~ef7Z~w<4Yo9XHR00XF$V;}+)* z|6dK@|Ne8}KQDlP#(KcU@#*(~#s8pvW9b!r7#xQ@#vzq{%kj|(|Lq?Biwa&^mlLo7 zLdXV;)zp>GvDKM!rK3Vvt!E=XsBBM+V_Q(M?1Vd89DTd_64_cU&n|G`0ocgh2> zM5r^DIjiVfG!cR3!;EPiG>;8K-qBb~J^srY**%_J!~UsNu|OSR>QHRv&^Fx|ye}{Y z7oTGcULxO&&jTC1F_3Nu!}EUbN!jYTz*0y*hhbN$-)Z;(=NR*R6|z`y98Y7P?ZrOZ zOJ77En`Eo8F15=nC6*w)XU{eD>vX2B%JBKkZp7xRpscXhoUR0SnuB9&k~?^)&(!)! z@s$?M4mDQ>e5Te$Bc9X{PilxK)o=Vq@kU_0WdO$NULUS41$);$&2wyulRJq$mv6Wm z8GR*fY7TiC*mM<)y1vf!zXQv0>Jt5TVNc1g{uDIz6tZc&@Mh9Z$`7n_KHNLG&0E0N z7I2h{%{xAD&w63}8T30jluuR=kNO{c!&&cbd+|x+zSF<`D08no%D2*=Ehe*>cw_pM zc``|#QqS91VCM&e@~aSewFEdce%kk`Gph@stF4q}57_yRpKnk3ZRr!-hT$#Ia7QG+ zxvIZ^dlj&2j!`)_+#os;-8g#p*AYGW5RkhC0h;?i^iQxv_)avSI{db{dbC!_o{sU& z#J)eTcY67z20Bt-_R)Sf?RU`rGv0kSzP>_}(Q^P;3y`JVjP)4m?eyjpdkXffBPZvo zJ-lDfw~gSS3Yyu>eNymre(gvM|F+gv++3h`jelQnl&?6Wp@6aIH_@JrjKzL@mV5Cn zUe3Hl>j1UD;=iwXg!(65iqc2LO9uP6%j;u0I6X?AL??PzeQf0SQ~d6ZT+VqluAiOM z-2onU1M4yR1HZM2-(IG?hi`m*9ET5~p`Hccpr8J=Q_s1+QH}!fu;!Ri_k^~dhFNAuZ`Zawi7ngcw$4G+)FTk^16!Vgk8BY>_H_UIxv-AEz?O^Af@4TP|sqHaeE2GaL z`W&L|T=0@hn~IYeqATP({P_FhOK9`;<6hsqHm7)Po(um?=V~t#o07hjjrgnDC6>{( z`}34`$9e5)kEuW22hNkC`E3u?b0)C-jL7`wRi^)1_D7nX!{Q?z zb~y)%l*3+UKl5HY@ewAw@$iQ5hBHg>N#;Tm?OLn4svy1zyzJv#u$*ybyXx`3%fa{6 zj_+IX>Zxr^cqA~NW`5X#FSx6uc#7uKl3_aEL~DXGiCsOeT-}p08!|pH^PqHC4RQsa z)a>8FH=VN0C$e@iw)9}V*3zyjJvif2b%!TZHJ@4j=iO&!eB#e%x)<+R-+lJ)j~wrK z^6*UNLmBam_5Qv5rS0qmP#nqL5g83St8O3tl?>`;KD``&(Q(b|d2b1A9w+BSb|~7D zt9x>eN`}0IZs~@%66nQQ#KgAK7y0^P(AB_v-s@xMC0;+_ZLQ&nZaR3TKK~PK;wu?A zv(X=qt&54X<$aAq2lFml2XjH;XV6#X`AdK~516L|v-|^sc{(s31!sbJIxyEzE|_f` z68v>(0Oka=skY?b47PPL0O#M>cCnu{X2>V4aSRXCQM_}>x+HzdMi-0Li{YzFhy_p5 z_jcfy{HP%JY?3|{dO9}-t(n>n#WSh95Z;jPvSm9z6qi5D-f#F&+{Z&DzKk&VsKiet z+RFF##7DfV%6$Ai20bTe)A6*!ljunCBwDXdgU06af0VVC7&tmt|FzdHm4?5ndI#pW zL+kzNIqDst1@xxqJ(U)!X+v|DAe^G9By?K@-Og1kmgKB=?(@O!K{@N^KkM4<_S%g8 zi>DjBymwu@V^jW=vOaOb&VL8<)%g8`zqjRM{=W_ zXGXbv-AVFka}LZENqEqQ!H%679zU@N978wR&;-8Q*%r3gn0U?z&K2_fhzY$zu5Ii} zt9Mj~#^pj!j_J2wUlwH!zb+mxc%NiH-UZ-T?@Mp(BLC0xjEOH_o0yLV^*6HZ3d!+G z=Cg^ZrnMdYt#7UTgO+ol&m3qs$sARFxzEEZA=Y@>(eL?V!VR5MW39^;FCuSitZ%}6 zd_35&`X0XSOUKVSkAIb=L*wc2^F03TZ**`vJUx&9y@vCB$!kajED1dg!Viy6U=(_!R1> zhXx+aG;#KGUNH|EnE{O)Tb#arFEp|@n$DUuF%!tr{mfPEdoxVy)4-6t136-2@0`y( zfeovD9)Bx&gba^xm0g8Ts+G8l=6=Shm~j&RllbLw$7D1luQq)zfq$({4bm0ySqK~wWQ!>AzSM$x1`MJHygQ(or9l)Sm9eIq0#!dfMK)AV#c#L8g5XYAI+7;?~?QAs@Y-2q*L;nN#hwn#${~%vmpE&q@e*kyt_d)tCyeYoe z@4K#r#+-f*+nH<6hq*4L&XUO`eFa~8;&AElZD*=)|J|8_(>-U{|JOEW+_J;V-oO3K z_}~2e%$&s8GjmPa!Fh}KuAeI!HW>#+*Cmr9eSRJKrkZ!=V3SlYj;<%R?jUC+Tv5L` z{owi$oCEYkXuaN-?o2-8@(Rh{fNZ@%y57w*Vl8go<)HS*%jI(z%wOd5=dugUWaYdq z8*5HKhVMNA-76Ni1KK=`?p{X!l;3qPxD_6sCLf*3y0B?f$K0taTlbPPcK=1DZ@5gCZcxMfumHxa(zEc-->}cEFOFrBS{E~m7ldsr& zw?_Pr+&{!wEvy9}G6n2qB5wGboIfTzWHi?`?%640uC@D_e%LkCo)C|OJRZ?H@LZ2i ze0o!?b}*kq`wVF6R%2~hKUZ}wx=r@_C*ULae*5L{a5gyo2{fegmFSJ>?2DE?_DAZM z9o|KbbkV2m%AMdwa$r3%#c40@!S0tV2@aN*0p=JMa9E&DBT-Qc&Iyzm+;wWBs8Z})HS zG`%+*N2bpw<|6Z{*c9b@);X23Uyn1!<2ZA>7F#LXl%9sJX0Kel_=(H~3vN12{`oA< zcP{)K=X$^^-JGw|KhfN`0etj-(%e_B>&@oABF$4Yu_0hDRpY*wW5y8GWe?++XSH!3&|HLm9t3viM9x|?C@#l`bgj~TlXy@$?c7Kh+j{z9eQ=bPmjiC>ZXeS7dcr|weGILLC zN_&>MF*%$$0`r|R;Sm{u-rZgY%+3nSIg9IxYT)+k&^If1XXWDk>sKt!T%Q@rI(R&ic}2#<83&JN?pl}e z-SGOq=Ka)nmQm-Ui(g*9Y;oFp^1~hEjH)ZPEY3XmG-t!Tyf$R(+=2gY6SNS)Zvnm= z!uVrEgYu!EV;e#P{uzhAA-IL+iThp4o-3E%c$DwUaqph54&R@1Rykmxk?%1U(m?)r zWLbM*@O&Y3$LdP#L+F2UJMt;K(@Y6J7Hg_uJSM>tS|1JJKPy6>>+I}gT`11HoA}ps zY-EF+1it0rrX+bq&n}NNX`foMF4~l+BlZ>>>T7~yBs_^c%Uuy`Vw`)#FIn(MA?ui~ z&u(58yq7*2ZF#}T$x%KpP^VJ}bxT*UN zWXbKOuc#r`^d_;u>x~)p_8&gh^mdhb<#V)Q_cl{5|K&8|{{DR47(hH4%TSKljp~bLAh? zne##Ut@C@OkCZb+-|j;nsZ9Rij6G(G#&aIy>DE8IH4o_UBskC9OnezJpLy8nnGaR; zPQ=$MABxrrGIENWvWdyhX8hUnxO!62aC;7In7+zSGGFtjLU4!7KaP!g0{cYsAKAg~ zEH7+)>^HZkE4}$DXjl88vZ15L8SAH^nZ32w#`lgg@eJsxdt9_hHacs};JSvr2JHLh z`^)rQA>Yv#+36wrDxI&shUshJd+J`NFTSZ59=n#2)x6Zhv1n0vzQLoLtsY;9cJ$}- z$1FSF9<suZ?g0a_2*E3Xw(;Ny*bpI&pVPs;PYMZUiFY~k2{-XK<7N^&Qv_k z{BS_$JXzdyzW8(JPaT|($VS~#O+KZN*)E!N`#i$UQS#N*mrse4x67Mjxw*bk9;-bg z<4cI;T-4#&I^Njr6AbWt(4R_TDEMQrJ=uzar`W@IaK~*>xapGdS8Z5SVtSMQFj0{dVBV=eZ@AX>G;j$xIowLgYI=NA3`m5-(Rpbm`(li zTy^U`)%_#h4dQ8lHh@(;RS~2O;Q2Q1`}{P?`X&bTjUQvy0WZndEt>dS<{aSpM%la? zyAWfid21o~=ZvJ;!mZ8^O@iAb@Z{ue-5#5JEWW#YSu>v&LoB>UYW`_mBi?l zF=u-my_Q6m_4kL#QRecLIh~dt*Zek-!M-GTS8=sAh6Z_*$UvuUaysp0=0U1&(Wb0; zc}A>h1GKI93-PwrFRZS6mRKd=t|EStSii|yZ~Q*70=b;I5PC50ym~LF12qr&)I03` z{5b8SYrk|E^sjY}oU3fk!G;`uk7oaGwpn|MXUqAAe^#5DBJr2Vjs5-hch4361nfQ^ zKgl>5@6R8v19m-RQ2v!ZS=3Zq7i+TpEy;?{qrZjdaM`!h8SBhU)7CK}v(2rs8J%_R z@w1a7dB87P7M;96+sC{%)!ym4kj*c0!1D0L1NnqHmqS-|rf;)h&dR*tn4QmMG^0z# z2&Z$=Zz@;4{iDq3iNMldGrXz4W`y?I*yl$nUjglO?heOC@m=BpXl)TRSHnNwZb-vN z%N}#t8Piy!^1n+ig1>6uuR6_3m_t5*ywTj`4re!XE;M~_c9PigghXleyC)dBy$ADYU6rV`i~N$U3f`MdDv=cD@^J^fv;><;z21N-bh_(r%J z;A3RG=2se{F9ztN6FILr)i(qDJj>F@;Cdiq($l`Yaa|#N)xj10a&Rg6-CVoQR)r=H znP>Bu+dk5g9-v9J_bIQv^Q{N6FJ#F4LG$(!##?K<3y^R6ov!gkjtGyzb}MI9nnXyPUh*W&4X^w_mSjKJgPsJ1@Lz+dv2wj zpAE({`0KsOBboge;~06+qn(FarY>>ox#f(l#$B=4)y&1D+qE8C&b;ZLi9^uu+=ywa zV2)6OpUuHLxE3wAdf#w-pPJ8q61HG)euljV3=#Y&E{>rCnqgm8+m0OeMS(}<9(np~ z5o^=adJZ5*UuM71H2mT-My0b>pJwMf-Pjq5UD$2$pVrese8C><)nnBA8nlGJARff2 z{0fbX%iWAmBlNV9>oTui)fr~JXV53$Xi6{!>(JQiopfm1-KRH40(34Myx`&Br2svj zu=AlodQKq!wNLOx*2-eqZ;p&B1}8Pxv02b!44#v&3ASzDVV{2lJtI2P7*_*-DS7Wo zMnxK=zjxqA$){gc;ARK!>;gB=mK<7__*b@igzsbQqe^Yd(fQDMw{Wpv@hBb-yv)7N z-|F{6UcYyHvR5MCm-h>DHU5M8SvpMoq3=tK+v6a)rWgptB}6`Cwo8YzKU{m2t!>|N zBlC6okFSpYr}Z?kx2}E^d-v&U7qqFqYpqH4mflsF=xZ+DsJ~Z$mv;8nWzgq+^XK&* z$7hpGzMXEq(Q~aWs!Z$6`_jw}n>lZ*m>hIb+S@nEKzI14*pt3zRJ7q3Z9a;9D|qzn zR&uh>WgQ@cHHvP0jNPNmDq=3;R~XZ_++;N1Gi}qHD4%^mw=$QLA7>zM<*2MxOH4XB zq}WsYFRPGo89m6^*-L>_^PV>7%kPiiD`$Qi;`=h%C9mad+2T8p+YbVNlr>{x@nd>c zvY%)taA$hY@8$VEY#YT*8|r>}eon8xyPI;+V8sRNyKcq1Td~KYCd=h)1Q$u8IHUBQ1iG@s<~fS= zl>DDn>nd#@)0@}O#{@hO?B~tEr8s}_iS`CeGvS8nwWcX{e9@6gWRl_pN7N#_7;DKc z!LPLe(Ux>_J32-8*bcL`*E<`y3^b5On_7?hig=j!^`7d`JIdjjWBY4*BJix%*}9?6 zz4`~Q%!l1M?A{n}Fd3Hbw(xv{343E7TBSXdN1@RzJ0B&c&-CnMJU4pn-r=>YHZ^|~ zooZZ}k6BvM{_-NmO=C2TF`DR&pU*EQlxFt?i4QB7H|H4BP(C1!osZ)`i3!o3g*UnO z@PE?&jy9j->iqE0=GVQl4z7p!e?`yqPrj66T)XUjw7HGzLH-Ze-)YVJxRR?+zGU+F zIDc^%n=nB?zV#uqmO0EJPy%Wv8IYy9$iT^_AJ@%xX|ft|^oJ9iH62NHwwq#e6i zGNqclS=Nrk?&UnT0egRe)z^diEdoClFjkW92N`2u-!YFTPKh;E*5%5ZWaV@MzTL6?OE>o(*JSP#>zk z$H7xjK3?nfxYW9(^*h(PxzHkTKKBK;$M`MUns)ZB{WXzD&oT6<)+X*^ zUaa30z%z~g#q06^>Di-aGj3Q4z1D%ZsE23P|MxHD{1m@^U5hB2O8*PME$3m_XVsKR zulw)m_hw>h^}7a~=YtEurL$GGpyT8>n`^pW+>5VNcDwzJPei}x;t$bT@62`XTLK25VY7Wa-^#c2bi_=yJ|_CQ6PczsFRiQj z?+bVS{SJITet-Xt{%Vb_^O8Xx^l{TTK;r|xG;*-r6wl?{@vZ-9eFNLfi1hdpesAV? z2eMo^{>%rhZa8JGayj0ly?aHLlXnOh9UfwqA!I12)Nn}uBy-8d8GbV4-D{^aGpxzX(=>5 zE~hc!Y0{UY(kbFWbcRRgMNp-8~_`c>&q7ugg1sfkWc932Rwbh z)8%%L>n`KI_w#D?aijN3h4zx;UoU@U{iFDMh$ADu&l z9R!YDUo<~W?T6+M?Z8}!{?QtcY`_ul`4aNb#ON>OJ&#cy>}QLEbG4aB{wvmFeg^!a z%`txep2e@ix&eaU+Bxdqhw0xQzkgdJ@e2BP{68FB3U>Vk;a@6!RLws$C)%z1X8mFL z$<;5N!M%xobuccarsKtW$|bk#Z{(JKmwIvw8~?^jc_tf2bZingSUr&YPw0B|qm?Z? zZyQk4=*Rj2hBj%N@1O&)tU2Q!0KkdQ49{7L6v%gP)|10N!AKTo< zS>aqU#$*vii;jp2r=@hb0kHNWe3PE~x{{yE%lNleu`!G6)J)+Qt$G~ZQh#9ZbI zC5*4mQ`yA7Xv2OVd%yi&zvod$clrC{-PDnZEgB{VQyAMdjJ>Ke-ox0cVeD6(F&f6! z)mpdWp~CoTw1!(u8(J3*b1rW&Hd>hTc*B=!Pj^OxeeY7!cNcNDi#o23R}!nE*euI$ z{YzTO;HSYdj z2)&dSjm1Nmrb*9&KA~FZArxKG3V+`BVffWR8yeHlH^L$PLe_#2{cK!D+ zzxVBL@0r)2zaRMk^YftpLG?yIeoJ2(b*F7n)5nPem;XU$v?#A? zHf;+Zb9Yalf~|R@=A`MIrJWA$Wrw=;rtD_zoss|5u8qN;8`%5xXU+nZ-733OYY(!& zmBXTNL}^bCvDcv|mLAqVgI0VUj{n>ou9)}Bc&8cL@EQF2{n6OzDtuI$6DvoujSZwN z`51rmD*jpgNUA>x9yO=++fhEbj!Vdyi|!~WV7-98Ps=1PFtX-la_`oUC~jD8Vyr2p z+5L*$#Gyx1n-b4{mhf2(aj+RVC_YoD{u_uv=NI@YplX7x>&th_QA4a=^{ z0*A!FoCjYU=%ef(&CeT0OzT;S4W<~-9AcE}ys;ekR%-`56Ry|rT@5s}6&iMPZ5OYp zymS9{7&{U;(in5?3%@yK%w62k11;|;_Qr#)$KLDgiMv}~<6gP$&u|s)eEa8P@9;kM zPbqEtyryd?5t|a84SznyJk~tYqB(;pH&zyH`8auosUsadQHHKuvTez_Jo9i%4fjRd z=f=`(-WdO#U8ZIYa<^GHm%iG~nE#fzrm$UqOkddH+5gx^#DJ$Sl>Luwu|oF0p6$jq zN|guVL%~x5EK%Uth|RQY@h6X9^Dd0>z20v$+5gm)(a0XY(7`m$L|JBP4hsf<4zeB? zu+L~Sy3n74I2fW92JABngPw_Z)gQH0Ozf85R)QRVYAY2!e|{$WJ1DCvXg~K}7Z<-V zY_3NTJ zMhCSfE~#xLCMVusXKcRuybW$nT?&pGi6<>*+(m1eS9U?~nn%6`U%EMO)XsTjd#K#a zd!s$-M{wS&IYA@w87i0F&*1$%(0P)!f#a1VctDriIfLf!2f$N)t%IZbzkp+ootF%S zW09SkI5_5{%uRxD2<}ec=m3r?;6SIef`b!nb5P;Twu(10DR z^@#KGE3!9eduzPGG4W)V#oLFYJC}!8dw1*XJ+Jw;!%(`N=FzS8iuy9umj|;_>W@L+ z?ZCQ+wep}1E#4hXJ!iZ+{O^@}D;Q5AIhe+n7eezz&`BC}=*zfc;99!+E&RDVEUwe- znuYMA@*i7Vr(0a_@Nlg)jTyu}st)PrZtCc^AiXiza}wfKYPztz88e)(d~VM{M}G^(-Oi#(l68?M3!5sX}9O0CinPK;@ zewjA-z0JJl_Fmr0Z?z}Ai)?LezuoPz`VllF{hJ(JOId8nqbcLvWY<3j{nh^5O?Cb2 z7YF4kGVA$7%cn45x2 zOjFrSswbmK@B8l+yxl*!^j_Y3ko{HOd!6)Ke5stHzHM^9hnxRRndsl&PqZ>+KT$37 zXMK~1e4!;#6C%!nxS5(r)4UJUFZ7LUFZ?Il%AW|gzLaU67cAx8H^wYEY(g8(^hXB2 z`;5Nho7yz<{M1ZyYEj)-8%HDEmB>hMvbuWbaBOnp)w{H{2wNgqh&@mIX?qE|eW}00 z`j}!ZiIME58tz~!_UcX;#;cHh0^qKEQOLu++sBi@KmVQgS^7C;HY-l^AZGYgq3;EyTf4kW2fj+>u z+GA8hc|!Btvp2?biO*T@eVgPP!~c_h-P;|F|CsNDOUbHC#_C-0I*QSKXXN1eM1Ox; zQ*r-#_UCUq(|(s}mEO*anRo>Jb%0OJi(PDFxOqYY@LcC`T=~S(){ZJ-F@bY4xa|bD zo$z1#=ungPR<)0G_&s@*8#_nKLw)H-mH!8Mt2u}-Pn)3SA@J3tH;Gm%XwLwX9Z%XE z9M77TB;%Rz#`9?hf+y;Tpl%(Htn%zXy= zmOaW`YnUTuUuCXMB5Q-+1@BoaY5n6EODE9YrSTAPkQa$guC8qrjR|LuLn~i~R)#xz z+GaY3$BUq+s{{117~C+&8=@aim*m)ZtCgJX_-0Aokn@~0CUY5+qfv8hEi|PwVbY1y z)n1KqcuD6qzMuQ_nJW$-gP*fay4I&{4ic?tK-P!%erx-gz5nYK_E#nB^I`OR?)pa$ z@BPz{&P+e_+cR^kj-T1PIL5xgPdy=fCO!7;!_)77=1k(YC}+2r)>HYRcy~um+?}7C zVb4#NE|t!)u~W>a-_{vMC3)5+R9u*oJ4;)WeA^y*2pyy|WFKl#%+`)8`=4BbtyxGc zST1YpT~ljYci_YL1atfI)k%zVYyWl8zW#-otsS?OTG=iig7l>1Gcg4VFCbp6fN^Lv z;nQJ!09~}bnb?DR)~Mgg&y81e26E@EGnF^-di+D%x{+lzHw*hB+waP3J$7YjpI?5| zWb_cbGaH-sz9h8Uah9AMQ=^hw+sYTQ_lmuriQTzzu6+q;ihVY%C;sH*0&;SjftIrs z8(LV~nw)`-yK9AoTQK=;9EJ`qkJKN2l)QxXnUAbF3J#`USbKQ?sK#|!{}Ceg#@ttM z(Ta8Sdh&5#%X<6HBa?ppz>%r!kIDR8Y|Rx#gZ9KNZy()XMo#gk{><8A39ytz*~2rl zwI&Dn;Sa4*D<9vzoU4$iV{c_iXG z-%kD6$Y)=lHlE~tNMV8(8ngds_%0~Nv{vW)Bk7Szpl2m*7SPud(Ph#!amQ9T@aTZNDe0s_I7A860-ii zFn!)>mL7hIf8J|#{c+#nu*_f^gYz{XW=U!_`#QA z&I-wWxPtykwn%2khPE~=GE43BS50lO^CBllY!34d>Z+b!ev{U?%izN#x+RBvQ=+2!eQPKGY#1(?|mE4TYN_z6}PTg z@v2!n*0piU++#tJ=ti{SaN*B+Ok41`=y(C`%6xg2Pkb5i-iH=# zV$ET=X|lSA`A4~8Pnqv%{Y%fw--${if;CKho|vcqi0r_e>`vUu6gghZ|S7 z=uI?h=L_uPcRKQ`R!8Qje(~m&yu-Nbz2Pdm68eku+WB|QmFbF8Ib@Ur039KGOa~vr zMH#w%E4J&o@UVe-nBRZJkK{ybyo;^Jl@G;15atfrd6;-3t>G834kUUlG)1S|v6YhW zqShOnY`4D1ZMpl?Eg#PG`V)Jn|9X9^F{!*d)Ti&=eGzAgC@O<%@34TuLtFKlCcpzN!~eI zP3OQwo44(zkI3y}@zU^qLk8IK%Ku1wE;g9n)wvtbc;hv1 z_q4uS7_S1(-q3s1yVIEC;JZNYsQ)!F_G*zA*tS11+@~`ki_R7|UV`_7^2+1E0r@rfTe@(whZoV(XTZnK^T@9Q z(EU3jvj_Hmyq}yP!hd-r+)6%EcYj@|uM~Q6a1`}QhpOHZ>Xin{~ z;x#g2Kn5*9W+$(NZh0pB_Pqg~@JE2B)04nc5?m*5w7k%ol%A9A4UUKVIKB=X-{^4s zCw+^}hNLae;N_ zSKe91j-IN_96Q%e+!br}>;LsR>ko|it&C5^T%r9fvOVxIG%eQHN%m{~^wwBwb}f6$ z=wEid+aCz+Tf4w${}k~9lEJrv$KbfCAO4?DZzt^d49Y{vLdnDzMHk3DlfyV6`(y)X z|ADJ-s6RVSJCYZv{_N8wZhushJ#TIF0FNxu*q33yXNFqyR*#9dSD8Ly5i_f>3mKQm ziQk&moSbFoJ!g+;e2EduEX+x>a^X3_hTUy0HrFS93$2&o->G8H@-Q>GzdsA}W>{00 zIY%*bj^YtJKPaC=gx@9nE+4UzJR9LF>Y1yQGFOQ*SBWxLNn2dHehYJzEoW=nHq=Je z+r5(P;h)GJ{+aCIpU)otiR|HLkAB;H_VBM@5C25=@Xu!tKe^)$o?w6e@xcE4V(yEH zahi#ah(27pzMi`4&#q`&x+1b(>qz_9J{glfgNr79vlT6vT?tYZ}&;9 zy_ny$b1_$JRcyyxdtU3;Reo!%Z-gsfZGPg;hFziZ8Q5m7oIQfX@^L=ZQk9oLhbiwb zR(T=&KQHp?FLm{QRprPt_{ZAcXL$Z=V7r%p;9zgAn;WnF1@9pvZ}H*2b6h+ZyLqm@ zzq+=y)78sdVjQ;B!!6}1m(29){T#j?v+!u5pp3 zjT7*DWRx~B*6z#}^h!JP?RI0H@3=#GR*XGEyyGt2hk6p&!>Tj!0Po+g`e!yJzQp}P z-9sz$xQD+JY73tK{YX0wtIalde)cfo^#S6^9lp1jFT3-5qbk3jT=kUKYL0Y|&ee{! zyu{iFvWUn^MYOQ#thhH!0=ER1R-k<(EI`o&U}6qrh%y z-s|g+U0)8F6^`~^)wkDiJ}y^iZMFHGqwQBzes!$x62E+=i&Je=IX;PtT=_QhNk{W9 zs~nsR_uu#G*`ac9lIE9R<9rFN{C-ieiO)VeCB7uH_V6K{&$tM_Auh|OEBtJk)+ZH- zTK{A4-q#1t{utEP{yv#s5MPOm!9Le{G42eFa8&%DoXg?nJ+)@7)_#VgPqcns@`JA* z-u?Iw&g4J$(=(fX(siZ`eY}BZiO8kR8(14wyjUgI;^VcgO9$rD#l2Q`Nk3$B-p>*G z;N5TK-ttwzPJILav~Q=L&;H259ty?=B+&Eiz_3wmzXuGD1=^FX_A9R~<)}3L`S_A8 z7WCK4CbPC#B-Zy7fQ9_+hddESHNXh5d;@Hqcez?L`&o8)KNe>xIQmWsT$iT6b&m&E>VDDp8m}Ncil5TBq~hmXusoCk zOW!L)$7|MmjMra_pRwDDu>4C3ETR7a z{2cP&ITwF*U^k`WXG982kEOu$yG|!t{$J_m+4JG&9I%|I9LnztQebKIU^y4R|F!h9 z;=S<0p88b$>`8&CGzF%$=fTfk3s3cX!882bXD;QRK>aRYt6-1iert-!icV8D1Nbxpz{3>inj^>YAQZ{es>Yfs>r0!zr99ws|`P3mNBUE=0bt{Hea?}6w<+=P#srn@{su=qXKbQPIQSx2k zOA79%S;88*d~u2!vN{ug&-VS$^E(+gNT1dMN4xw2=$JIVbvC{~_m4D}0AqxBjuP!# zB<5Q&*d_R2Wk)I>NEQ0JYqa(xb9M*MO8I}5^?j9%CznGmYwl^phqKqz^QC%qV{59v zX&S2x@<0Xp9MsWEfw7pJkBt%Hyfnu(<{{}t`qLL$VVag)!j)W4wcx$H922`Cy*EL!r$_sDsP@8;=hVtS{N&t}7P&N0pGNqT-O`5!(u zFeWZOL2b(q*iGBm1k9x-$7ix9Lwgr(Z1B`rUm@pG7m}B^5WMWXbb6EWYwfzp?W3%e zPsrxEB0hk;A@#L?8^4FOzb?MpNc@f8w@0aX<2A9qYw1@Ge)A32Xg?(9Zpy~<+S)f6 zy296{Z-TjD3iu}1%MG)ETt3zx$Gq|>a$Z5B?~!lPi@^ZC-J_;A?E~h<=!~9EU^mp$ z&OH38YRk_VGN0dRv^9~jsUco^H}A8z&F-n*18l{tm&@KA0v}^_mUw~*z?Z=obwPJJ zx3fc6<~fP0o&Qw4lEYpEQ~Qy4^&Iev%`V!&*Lte*)oB(_KK*xK=gVK5Pu+T6&GR1G z$fFHC%ZCT@XiLwkUQM(9S-S-E%rnZ8+`^?2o@A7y-ToJ3LXIi? zrJj)wb!|m|hPRgLVvoeX?-NYtfJgH1gpIu#%*TLlqp!c8a}}Z6;+&7h+xacIgx}K2 zE%~5h5RZe<_}N7BZ9xAJ~Tz|D<&bNoCSO*yPL6S z?L?N>*N(CK8=s~>8Y8`{ygh>B;11u1<<@xT5mV63{^0ItM#I(|6VF;OuQwya*)O4x z&8@F>rxWjR7Ggeh!Wa!h54GoGw}U74DA_fNj(X0jV-2bXAOBOtd*{-g`XxN>MeZ(1 zV;;a7pJZ+ka`i6ud-%Mg{(Ty{$$@TS$Xb2(3t$b_@%&#=M`=nOyQ$*=Y(^&^U0*fV z*Z6HAhmC0J3EoMSk6CtoWN`kc`BI4fuuidEb3N7*U7lphO6rTI$J2-eq-*ZMZZd-VUt*Lkm2da~NhgNa#Po5_0#-ZS9xxjXSe za37-nBI-4@MN@VX|8$h^kn#98-8>n+z4kAZNe}(XJ!8+mi+6jIXKzq;nE%gE_bIMH zU2(p9A4i|{aHQN}!qHB(d#Uo<*4VtrzJ6ZG{*s{XIy>C*7&?eUWl zs7B7IPU*-re6(qd|6Iy4a${?gPS+CW`Oo@Qwa@G!!xn5kbzaAHA zt|z~__D1|tR}ZEl=p{)!RX$@Hg)SrmE08bzo>E1-xg(13+kt1sU2pbI?l``M&FEdj@ z?B9C{-;wSI*Wa8?7-Fb%cj9AxgBaK{eA?t-_p)nfyAe4R6dnxLfIu}As9)iHs6LnhWLKD~aCi=QY4C&k7zbYN#z!o%&C z$X@51F!nwd1Ak|J4B0#=%aI}1cOn~vw+iIZ48_&(y8s%gMke8hy+XE$_Q;A>eA!-! z+_{-|CEF{I?V=S&6AtIs6WdsejiNZD+)Vh}sar^E}Mqr8}MbnqebtEkuAz3=wqgk<$n?6eYWfD&|i3GzCkE3!E|Xxr6>ro^xTtREN}k-u5@ zzCJjRGM|s3Ka%K#1ak1zEKhdzx-}l@|1*?XnF#+M#jf}nzdt>U`8HRF11Ap!cOh{5 z`5lM&3>ZtTiSFPVsU{P<+QsUCYqcwRoe&HqPHw$^ls3WfQTV)e9D4cY`YCzvLN04M zqN(uB(J6&qepCI{e~j@mu@UjF;g<@+MSJ$|uj&7jz-R3vumAr_|63^Y``<|azs~RX z(f?<;2HR2p`+?i<|3G`}S5A$+459bse8mo@OV9Z(@3mFCwnTuqTlLgqYwW@PS%&Q1 z0j-45F^@t=bHi@WrD)yXN2jy>rt^F6>Wuh4^0ct`xIwW5L&}MbSNT3K?}2hRE>)kP zHOYh|IsTRFM)rY!uQmqee#mO^pz>_V2AV@0L;>+S)!00x#yns1JK|Ze&-P@o&j|cH z#okioN6E3a>j&ct?!ktpe|ZH~2leH_%lY6^xf8-s@Cv`?@>_h&Ucv#nU!nLluWeoP zXk$8UYp$MCiu{1q6wA7Tmi*fkzvjaMZ^*lgdLt{&kaQFXh~&hvF8GUSV>u7 zpfke^g5t^9N>P$ATy;=u8X=uy1qdRD=Qu!RrRU||GsDfXa|Eqs2QGc2qF7tZLYd_C=o@cG^`mXP7eb;w=SD$z;!uzt90?>U0$ zG0}DH7jvHvzj*e@*TrktBh%CD5x>t&Ho0OBh>wdFza8$tZktf>w$lM)F_-u!>ZPAc z0_b>tm!<5F3;95MDzDjv$nBXB0XmmzaB?uK?=onm58yf{^- z*IE8GA(B`m@uS%w7SzpK)ETeXjken#ZTcAamn9 zV3Pc)PufzJAB69pgA0Fr@|^Vf3Hku|+p1ohl87Sh1K54x5-C?bc&noMUxaV9=Bc)-KcHt3}k92K^( zZ=4)2%Kf4_ak32jsI179cluWU=$uX`HZ0e>$D!$+3$ao4{&)nzRd*!;3KC7u9 zU!T_Hx%TUh8R)VW^fG%PP2MZ`vAqBo-_3Dtg%6!?_Mi=??`P8Y80!r&;v-6+=N96) zbbU3~DO=2&7uA`1;6ThbIH*EQ{Du-@A<(0o};}3qOa%h}= zyL!LPapmum+|yChu5!$E-GKhMiCkCgrE0o!h;qa%U5wn^fXtkQ?W|nt(uvBOa7cL* zW>;XVXKlQOXVQmD7nbcOa%J8@OCRl->~x@e<~_}PEF1dWg-?ICvG;O&5A!{K zwvC70bVB*$FAX3^x9~0T+~nj9cjy|vm|hKhEz%ER8zX-&FyBL&=vQ$>abT9uyn8A( z1HT6!vi(s%dN}*;(3|1V*}!%q-@L~ESNT_*(XW@EzK-7vQiu4VdjFJA88!zwOeO|x z%z1NJ{rSW`$FC$$ zk@3%9$6uDFUrTe4pIgm*rC0l&WiNQTK)=$rMaZ%;cOF-SEHh>9x=sr=h@O{Y7YpWM zo=c9bX8aq-`Co-hD`~i|~VcIAd?=(z3p9JS;gz`_mUqv_9#71kS&&U*Y5#Yo5Ha_C(768i&q;@J>y* zLV3I!G4$g`gpJS)i2=4=~Y~Gu}dlxY;KsF{CxNp%MyMB0d z5x-^RpzKB_)I=_e9$k#RLf!ZVq8nrnA^+oy)gi9KndAoH*?N7?{>(MlE!*HJ`~b2a^xA3}0G zgWOW%cvttuydRujh%aqM-`{ek_K6SuKHP`jaAgE^vcxANyz!o9;@MNQqxA#_ST3V) z?>E-;ZBv+WMNVwiTthxw|F~E1EQ_)s!0C;9Ib$wcy#P6p;p6{&SFY3}S0c!j0^~|P za%BMRW9Q0#__F$gY&%^%+3xi9c=&*MZR;BGA~vpxBZsesfk#`voioI-3&Y@5b4=Nn zUFVv$ps4h6H~lMNUb_*QlW~^Lr^xJW#IMD|!+8OhuH?%pL$1lU#N0Wti#2rlbLvI2 z^;buC+zt&)?k^j6&%@QTtNUdC>Rsq_Q`z!T%)iDMS~OSOmL}^Ld_fmRGa)yqmUrkeAXS+pxn6?+irq=JC!pY;c}=-#^HA z-nFSKe13EZWq#be_PV8wUxFLa_tEX-i)SC^5fk73fuz5gxfc8z45@zMIkcUzK{v&M z<)N(~aLj%&I~Lbjeu5_gG0xpW7W#Q2$o>S`sDi=MpKMVDaSWbh~GeT zQF<$T43HfLW@N@QUvhIZY3>Uz7ji~w7j}{I{;tg+mQ!+uItpvUcNbh;XM9t??M&GV z;YV0eE%- zPd0Oc)tMHyIBP*(J@MeEjjGGb7kWHcxUu@Iyqi;K+EWgQM#e$ymD8T&bOr4- z(q6gSo(H3J$?PvfBUf4*?C;TmDLcZ_P9s0k_nR0W39_+_GkSvKk%{CI-RsK7aB}{g^3nblT>a7IKgAo& zK?nNRU;XvmLOp&NFZsTc?-e(Y)K6ypHs!w=2@Pk!cfzI1Cz~?ik9znclXZtCayd5X z_nmu8jyt`#n6ekM`<^|>K7kiGQ?W7|zaRd??qG0_;uyAT9~^T<$$pKSg~|F*(7{pV zYaD{CT#J5aB=__I=vnbys{7ch$PRd0aK-a2&wt64*?JBwwuwjK3*$qP{Ld4A@*8Ik zS^$4a&gxz7{Tkj!&LW4%!wO6%e}z8cUG~_xImRt){XcV-|BZir=jn&7O}Gn}h6}e=Fym5GUl+e=-`CJq1mrzq1y3D4e*u7v8FCFAZ}J zEVfHAaFk;^6!AZjdaBS#lYzM#oYx>@BmUfy$}7p-bkzJv-%8$zkV`U)JV6(+Uz+ne zm*qQWnH)%w+E4ATBEMw)u<$b3XjKK<9@Th>mutX(a9rH*ai-l>;O~n+~** zI)B0PKs@-Z_6Fi_l(VspU-eP;m}vWQjScG|kNN2P{z3A;>l^<#XbiCP1|0(j{?Zr} zv&Oy}yjL>@GZ=$uTwl*P)&l2ZY^|BB`L81WrHZ+})}(8x6JK~DBaD53Z7rNugVS5U zS0>-or{S}Uu`UCjdS36tr*Z}epKGwY8o;OWb$Ys`bXe)KE-R1QYQbrfk&i_iN4fIx zBJjG-$#`H?ntb$VruPua1_Izx*!br^fP3cPxjcjpZ-Mg`=_juFGd$zS%h!5A z!sj*2skdVv)u3YpJGp|F)-i{TjKXg>)yf^?BZ1fDBk|T>Xn*l$lBw|VT5nx3CW4hVA4 zDXGd9Rw0@bl^e;W{XARI(4)a-^?+}NtHQrOhXDa{j(tdJtD!-h83pld{ zAHSLIujGdAA3qB{iI1twS+ws3VuvC_oU4ip@FUWP;8{cGkHWss#OBSSodc6~j(2@% z18pdm+`-G8jzjdZ-^uEY(7t?HrhfWNE}OaXYaK#omr}QK!tFf6S&xY&{;QmPi{u`)Ih<;JIh+m<3)LmtjX2lu9)<3xSN5I0(YHz1uszkck)b5AvpqIxg3{Y0v%iFq-H2XE^hMjNylLeZDhqEBu~cNRBAvVg5zd z_J1N6nK*^#g{%p6;p@#}k6Zyhv-hj}EVu2$ysx>hXe}e4e08}Sr!mINgWvc2bUIz{ zIGg9X;}Pg;+IO+zEE7G?^2Uh%YmA6}oE`>F`JfeVBD_q7=bmEU-YwqujA1tG4ihL> zAM&BGAo8uI{>-T2qoqT;z@^peUOcPTuAvW}`O8mWzl&D%ABP^}!N8?)`FgKsY?wb@ zoMC*l?>N7+=ieYZjlZ&h-+E({vCokB_^VYu8lOne^^abbVb;s8QaQHyLdsWC*T?yf zVF!+c2fTAB)7vD5U3I_X6nxyA(SDKY;G1Ato6Mt4n=`#Oe_{Rc=euprp!{Cy`hZs- zz7FLz3GFm%AZ<>YwI?TVul{>B#YKmyH-~r@&f&pUHh-RdmS@&iQudjABZcIMj3I}* z;8XQ0=*m6Ls8~7*zC~ZnZDCw%xgO&@4TC>u$&49xT1Q~un6Vjsc?=$VhF|}fy{hsN;lu~{ZIMsg9kbmkhwg^+ z`!R6$BK2v#^pr94wfQ5jO?S+mQyqNseSZCI;;=VuGLg1zx?}c~%4zc$?sRj(_Ix) zf1OW6?;}@@kxAzMis&NlW6Y)VJ2PDVu|7m^{Er}4{IM8Y1K4}c=x7`JCtkgaZ;7jc zV49t+S45wr>}AU0qse~@zZbIayU+0!)!IO!q<+}ZrO<^PTdR|=wf*jN3UWi%!&^>n`Yvp%KD%)VJ3d;7eC-ksKI~T_yK2gV`jLcPCjn-DM-f5aDwI>Ld6CM zt{UK~b255&(+}Aj#(p=xIlD#~N8ickFdJN;k2l4UDTY^gw|g@FvTri3xy}_a^2v2W zqqU0fqCMf|0P;lk0cRSYS4)hS?l-g$_eh-AA>zCaou@dj+nzhby4X%9XF#0S4(83Q z8*Qpx7Y@~)an?lmw8O0XV&|Lus>bs*nDQ~J4_a@#1zxUa%<`Rz zqg~h#6`WPp$a@XQa=oMe8rq?M%4a_M>vqrSb?~-uRl%Oq9qc(B#h%l3>^ZFi=gJMN zeW|h?)RydS(WdkbakEFY-lXTMU-KmSQRM4rkgw>K!e|k^aQ_EwZihPa9zGr9YXkah zEbYqwRsNF)_icah>0@i}c;#5*zuUd8U9@ZGIr$r35dBks`dD>cUf(g}Jm-q7teuu| zuJ{bbVHb6Zk0bchq>~ljnv3mQ<~Vz1+~^#Ag1Mye!_Wsy$9CLhYqF-}`ZR5s=5(cs zvtb;6fX{32?@onlFj)V;lo@$caHWag`1uaOaYy_0vDDnfTW{+BE&Qx_;6c`#JpO7; zJMT!kQ+iYO(C3-&n>iqBV-9k9D?V+-*~pLG0}j-Ok&JP}Nchlw{-+#SyXi7@g< z_Qli0>w52RadMAx<{oFs=kDEb;=TtCk&E|$leOm>?7`fC6W!_Lns2(HhcS%z5O{vb zi3c8dz!}1Rgsk48pDliLMj*S_p-%Y(6nkaQ0T{CJ<~X>cU+S;?f?l81hF8DxC}x9q zdv52q+k^fwU@k6s_G51hm=mvcWjpdU>HnREP3xES2A9Y(>=a@T$me148Wlc;+YEeX zar8ktP9G!|4Lip8>aiX77Vxd5XDj~&%K~8W$M+h454bs{eRnL?W+`o!oMs%?e!&~Z zR2$W_al|LTkEHwep{)jTJ$ZEYW%fU44?8e#3ZC`Pt=ox9(>!B6>yBF-XWsSTCu=@u zcrvc{F~&8-pb`VSNBgw4Adl9xH9Z=K7Ul1cNrorKF}U%N#)dJ}_ywE)xwVRU!zzb! ziIE9`yS()ZOM}9v_*&!LG0n4G>@$l;d#$+i24aNF`@Z$PQND5ZpC_B{Ph&p^YwrbS zKgTNcVEP!HLp^?f+MwUJC^jP8{?H)bXQX{UCT)DTB0G^E&CbFM>bST4Uh0q!&6G7~ zM_04Had%q1=(~{Ur&sHg#l-UZ$JfL+r`9i=g2;sd#yoIIcZ8upG(<;;9U2G z?mcs^>88zLK?BFF$u=#X&9e*av(KhI>tCDEr#yupL=Qd5xqh=Rn$+M_|2QxSSk-QBb*e7>Mm^7jLp?urLObYV&ofSF-5rbf z^;{X8A0d}l_kJf7BgaZj{Ly_i=l$f^+Ns-)b${o*W5I>xE79G{YEDdfq=p8TWYfay_c!HcF00MV+|$JO zJ+C{Vn%v;BU}n(PM=VMV_!VcUTzbdZzw75E<|`*fSDzJK<%Cbp9Yj7JNuyuZJ5OR$ zoNS{m!%HpW4KKWcu3|25@{5uuBf}?e<~O1_Sex>k)V1&6`SxV{R$k%f`-Q+7bKvM~>S(0yYA3L#xH+)5_(bCa zTb1zC*unxo44ibMYU$ zc=?5ownSo{{gp?1e*H^+z(Mi*pj*!|x1Q5|zveXGFFein_nY=p@>{l_*)z1HtW`0z zXD0h<<+A4+pRM|^Ez|Su9WnMyYP~}1^jeoN>lWk+et|tzRtFM)j1D6ogxO^f`Xb`#0M6vAI_4r4HHjw{dOdiJg1;<0!%|d|lL`cpDF2)0n6IZTR`A zwdE4#*5$xB)k&;Wy}kq7KVtrx7kKDH7w4u6tcu#fX z6EOQcn0LT`nH&EK{S`RuCkDmZW>F946sl|5yG$ z&3`@L{hj+ju(yUq`#$H<%GAE}n48VYi==rHwDK(z0c`}f2>L1?Ma_}ei{-*)P&%`h`M_$VgZIy0{O)~4%6KLP` z=dQ92*$DaAqJg_II#d?NHa7R0oP_S{=fX=9={xyK3+qQK|9o%!L*z@9t&40It|BV} ziLE2d{?_KIo9^!j5a-fxgMC(YD1$mJ996*)hGujxm=~0P(BwfAotS<6*e{B`)cifn zTGH_nWE|s-{IvAN*lIm5AKP2!X*tB-K>8X5R;?($V)-HRz&W}GWLI%cgPFR zxrv+1b#X+ejiNc<~nbm3q);lNMlo#!k! z?eLCZy5u?hcglV3j5X`4PC;oR20vp96Ib^oWFve4ugeE=4LF+2ewI4$Ngd4*U>{XN zJ|FP$-H$oT^{nc@ri9}7ICLH9of4|&`gQbKWLah65Bz?y{IaOvDB!t6Y<__GcB$f% zsK1!{MQ?va9(eFtxo7pyMSQcKIXdT761L}z_k0UFbE2EE)jGy2TU}d#`aU}W*znIk zgWlD<`Hs`^H|SozEzugZiU013=-0>r6^GA7lO9|pEyIsKz#hXK~hE zP2V?M`Y7i87;;Q;EYczJuZcc>%DeTd``7l2*(Jc#qWk)Z(bdF7G;(jAFSLHaI`4kE z^`S1X_wP8Fqoal7xcavJp16up(9weSZ+Op}^P+M5OkeZ9UufH#%f0%y_`f_^VDTp# za1(tEy1eh#&vyQm%10Z9#~ddd3Nw!y!PweyDD9I>Q9X;O$3K6w`Y`pq8Gq*x%}r6^SvT`yhV#WlpOZi||LI_T9{cxv#&%-j8taIkVI}ADQX;t5WdX z3q0D-lGJ}`_J*zR@@V){uP@fFQ(rXx>GsAPldm{sFPwl641K3~x49~3O5#1%&aY-4 zWt{Oh{maQVdBXny%`vYs@<3}jZ{2I-qa1MHIOC#UoZi0z*~a+-NlyUBq zrOO9LL>s6hPP~We7Y;rK4m6+l+h_)7@WQyW1%|zHjCD%Yw;0zdwOf}^_Vhz;fsG)k+_H$Pw`}ryEX=HJDu>y zqCs%07^X{+Co9PlH!~;PDq9#>dgsWGhKv`^lpALWa^!LD?`0fELyKGH7xXQ9qXPfA z)4Ltprv7)Ci5G}F=%TGEU@4MK4bGUKbjV+X93Ld^JlkEnvpTp%I`Eb8(NgBEP2fCE z%-f~V{`vf8&A+&B@>XCR8E)N@Ii>en=3vlK=ge0t69@1gZ6LnIgY}Tr8J)NB>eM}F9s*ny*CLL=cnY%pVfB-?_ZSf zwC;h9gd_cXW3ta3lOo2gi1V+)T9afQbo`g?SPAB8&iNe$yfwhR3SIjGFl*h;#v2j$ zgI(x{ecEYYUkmJK3U=}~2zKpl>{3i6ebAahG4Rudf#1uqQGr|!=o@lfgy$Fc5zD}u zMquNe^u?ofOP{GTrM?ul7=@f>~&c&^_|h&4ak*}Qlv z&(Cr;E4E@Ww7mg((ijO(8=xnZX^gxaPp?B4w-tv?o~H)rOgd7sWE^z;I{4DF7r<8_ zi!}i3BaN}n;PvCk5soIGI=*Yb(Tl{2$nFr1Y`!LN1dJN%ZQuxfXmI512k#=z>^b+F z7_r^|NWLcJlM?JT=Z0Hf0`~NrO`<7(&ZZyGUNUDB?`v%)2#@RlzB1y!CbRaVZ@iox z#f-s2e50IAqv3@f#!oq$)yT zeb|Nl>s&w?bA(qD{VTu+@@kSfzpfWuDj#|Szu~`fjSYCOr*q%4d+NIM4s(Y2{MKuX zZ?@}LZ*c!Q^+~=&@c(NL7?_yTzRMY0v7s)pxe)T5QK2^1!Ur9)7nT)n7&&dH11J!?bQG4{rH4ri75^A9K{B7=Aj z+Fsg~$J~MWtm@OhvH4@eqJR2y{|b1xc|q`_(Fit!<^#H~ezFpKAkdqEe3fi%lJ0aq z9BpMy(mu~J@|FjT)nn3@fBcm=XJydWLf+0@htY^TDj`w1?WMB$bYBvK_Yyk z`%%c2%=txq*epl$uvyej6?K~SUM*)GD8uAM7W`(sh|PTge8-_-V`D}xjDBDfwgz-& zaL;`yak{3S$1635e5cGg!<41t;SloB;&e)%@gXqwvRVEJY|tX|#m-AU?b4#>1AL6J zj=@K(d^G8e$Ng#X7~-q+cE9Jtf7MX=DX>?dNzL7~UI862|BCee6}~EEK3l*%(yRqC zPI2f-ehsaA?_my>UUz%4Pp%IwM|0W>H{R*O{96}h58g4SfwvI66@oWx+g)+s^KdJg z?gCcLlg|LwZeR`Iiz>se5G=}%Cp*T2*~}g3hhm5oSFClt*}(0mWe=}YT^RlTy*#s? zo#I{LNPaP`v1p8Iy2}ks)*f%@$YfuHZ0IIpBx=Zm*iBwK{8$~bCyc)@zrLf2=P}Oz zfZpa_s#t-1r{g%jl4@H|XASkRUu2nhqL6yDCn-jMe=v)95pvjwpL_5ND|TIelG)%d zzrZ=FScgXNaNzL$`xZa(#IedJUOsl&qj? zmpb<}u~y#X-1D&Vgt8{OEGYZ}yJV%lkw3Z%zVzcx^r|y3ZiZ$n@MnBtgR^`Z|C9LF zcxdd8{yX_he6;H6hog<|{+vrCLq3@Fq3XLB^CtMMGjdDN&~Gf~o_2G;Aeg9ZMt^hW z&|+M(|poMg}rd+pDN7QlzZ=dOrdhn~455Qqf>Wn;_9qPmvavgpa**MA>AE2MNu$K6p+0OF78fW=?*WrVyMlQI|C5IJv zFW9B~SmW=|8M)qBX%)zM?_K9=GxzC?tPCVRQ)b8QNA9m_|J5mqskJ#T=%eWQ`}Fg* zslanfX=p2R(TK5QY`(x>miDiJ7?vO6|JdEU6a0Gn@|&#;U(k3CG9SFP3^)9>qr z7uXYdrQQiARu&A6)*#zW9q5Zj^hIN&G||O+w&pAKkyQQ3`j`{=>w8W0VWXS+B12B8 zui=`~#J{UP`cr>RAklqQYHt?00Xt@F^b^pj#-I%wR5DxF%-h=v3&tAyG8>!Ud1SpW9ETE?1O+qoD_3>#lwmRMf26g<3frhlWZ~L6kOEtS77+c zWx&MTPi^VngXKEp{_Ehj>hj7&T>CbOQ`LRsa-&x}BjAZ~9&gIVRwf=%-;us*&Lqh? z13QwK_GDey81iw;w_S$6X+3r6EUyik!$V_9{{-^$bHFSA#1ibeLtBSOA7@WN9DGYB zsE+uI(vWmm;o+Q#s=xa6%H)3EGBYpCGV{V(v)^}k^gGayeb3^@vt3Nt{>sEBg&*dI zx{vJ7N*q9*>bi=Yv<28NtAVu(Sg~ai4tNl}Ue3eSvmOeOpfQUgs#9 zcZ17}PFn_j4$u$8fByc@#0MU6`AvB z&Veqxe$1dBtk)SofoDJL2Iu~{iQx<2FNc<9pdT-TK4mYcyapP5LHYpw=7+IfFg$4E zOaJ_@srJfgFFoH@o;eRO<*(HGrfk6`d2Ekh4(lFG6RR1Gi%3%h@Aj=<<-UX*!d0{ini- z<$TB3w-!BR?MYKFw(uJCLJWF!3i6{ju@_Bnb#Y(Dz3gDY?C$i4YIPrD$58qK_T?&p`bVN@k^4-%5_>dz$y)bhd za-8u|jN$3@!mXsxCGWcHCqVq^CdItErx=TYluX2`8KqeXbr>@0rUBsqztaAP0gXc}KbIKFQ zCbg~qDsXM~MldIIuBYGd$=Cnn`917@mhb)rc|_ZH@N4w`d3Ha`QkBC)|8C`To3}S& zk;<80?V|h;b=}Lq2KKy*Ayw5%W|B-`tSa=3KYUpLuP%dn0DLZ9Yl) z%hXk6>jS2cIoDxvhbt?WIIUeZHrB9nkL95-W`meY+%hloqMd`WF7kqEN{3zAGiF+?*54Y`bc$_oJUMMJcm7=h%c~q zT-6pkcTu~>HjI7Dv>ChtzvaoCiC!DasOxXzu#?=nm!!2RUH^Uh>5s>nGgADQrmt>d zzu@P|d&>TsVqzughB@=@r%%O!MeNN9&JD0%uvmF^bdCMx@vCs4eVjX>+sW9d)n-pz zU~Ug~Y7V%t`{4p}k=xVRW50AI^si?<*st}_PQbUWli^#}8JvEtynOjR;}h(3u4k_j zzSe_`xqN~<_%-x-qs?s?Q~6Edj&FJ8ciHkksQmNcjyw4+flhu)efnN~I)Qx9o-5%! zNvGHfhBxpzJjuJ*2F>1Hua{I8->&!CaCu{!%JDDc@XPy2-gsW+*ct(T3uyaUwLM}G z-te{gUEZNz=u^Abi-hjxo2C3xj<479<2seo=3AEbn;n-oeynoZ?4dl!|D)8`qWa#* zjyABb^;ge1%fD&MI-R?M#vdNlH}vakUK=h>m#G|_7JB6_P8X{joQ~x8E$V9EKZ#Rh z%KPE;bG&Q%=kA~Ty6U3s8@)E%{@tN+`q%FD&)thPOXc+MDa!XySGC%PwoZ{ZKAeWU zHeH;4R(0^rm1%9>;I{cauT2-H)7&;6qWmY+Rms1>>0ReW1C^H<3r2Fe8eYj?D@PYc@yW%M%GI@O0i!`&~>@+Td{LjyLfLkv2Q-!Yx_rdFB9Ht zps)U1UxHP80aga-EY4^iK*40p89cSC;#HjiGW$|r_99;JK^ z_;5TNJ7+N$U)Vls5S)C?hm-X9MgMxVd@%7w@Up~VZ&74oHUId9=T;#%u`O7y_^`<- zLSCvdUOtgNZ0i_4n|NcG@4_9PU10PwJclli`kxE0S@1qGt!)-EZKo^K*0?h5pexg! zH+y`oOk3m1G(9`WeplHdvN1GnabVkku6q-m+`x4Y^tV;AW9vsvOjc()e8AKL9Up-9 z*E-JTCz!9vHVd$qb(G^Q>w%Bfx@C%aK=1TEja==bf3gMSYg&lReG47%L-)PRvqndi z`!cu{d!9ABAh@a_=T3Jpt2I7!*q9i3M`a5>od!z@d(j26a8dK7$zw7xc%m%C9`&zF zmdh6(?8^wLtOh&=PjKB=77DVjyM+FRp;_Ue5PxQHE8mf02tUGf&epcMh9b^9=zF^8 z?yG{8aSBARZ|JXb=oWImhuYR!$P0`EzTUR7t(j5s>h;w)0h22;S%!V3GIFXI`zk+z zUC4OLZ>{<@e>e5#UfxJz8POI)~1 zfV+WrRBzZD3t%sxP0d;I!ASsH&8`ECi>|F829f78Y8?}sqVGPQ_MPQ58?WHMj-hX4 zAK-iMh!eXZ*(ZO9#@-uq#c^*0ud?%*b6VaQU2LX&KuA=dZlZFd-nYt#??PR zE*oAprWCvsKqJrI=GiRPS1-9W3)=9<8_h|JzYXVZu`KKhaZ)C$YUt_0O)~ru;)CqnN+YKk-cizdf9{k_pZ;U0JHRQ5JnD zB5taiaZn!`-98*}``|rW>FYzIFMmQM-)BOfP536_W_=-Z<1lDd{9(t`U0Z_g{rCR9 zHVx9(SILuP#+1I|UrF}WKc2hIe89J#y(SRKg65Q0L%6F~4CjqD&eY4Lwi zej=YetL(L#t}%asb%nC};%FEjo|DOZw5Bvvd%?o}WwUGh3KkmQW1D=g_4r&1=Ht(S z?}<%oEt-!FDm@pzl(iysOt%w?ZAX7Wqo1S?qLl?}KNziI?M~N`#?Q&mgX}JI=jWAu z@~;*G*B_|UjJdn#>bt^0aX7T&H2qKCzY*r$$5`LD?R?O*Q}tSg{HARSwky8Z%UfsZ zO+5Tr+R*+8kCy!Soo4WxiU;t{Y41mu;`eH9+Io4k2c1fP$)|*DAD-D7TWkB?PfiwZ z9#M#FRKEh)F)GV<@#*<3g5a~8b^Buc7K%5>2dAmAvw0t$WX!smcPjSne>$&5{)Ozh z%#06xp5)>+K2&GEFh4m>|L-^QI5i(D8(!L43XUuIMml{1J_<|IcK)Nf1Jtb?`Gexq z_={5Y#fk$V;l=b7-<0O5emZ@iRO4S7s=&YKZ%6%6TiI?ulyiTu_I9V~lLx40u=dyx z?e@dv)iiv)%~*;KJ$#+g9{SJA-*^95$yi_hzV3`rBV!(6-@ewiikKJPg}lcv)Li5G zh173vt@hLR6LX2rCpH;+>MjdKA8_@}WX2v}&pP;T5q_0wd_9Ww^!z>5*5707Zr(Au zU@D!SzV)n)%C6MAmDnS?uXOE^YG|p_=cAFmA%D*z{5^}PqX-|*BG=zzuIWb^-^{?T z@Kmug{ls-v&IqT*u3!zRb(*`b#2ys!T~&WWhioUs&Zy6R|3Ms>u$7w2@FC!T%{|6i zka9;WcX=7M3N}$YzVQy_D=*}JGInqma;vEM9Jj7z+B2}%tJnO3(*}HP9!}xY^G+;f z4;SC5K4Y)LzxXFR<*Te65pF#&5#QTQ%l}7?%L!{IJ*8a@$w=kiEXzYx=4X}k8Z3!~Saz39=mn?I9a|KaA{ z{O9rfN%}lDaY6Jg=uhiIYNv~s@}D27cYVuaLZV@32-M?$0qcvT$72 zot0?j-Fo?y`s~`*MBp^z?dpQjn!8B`yXCm|dS7Dukwan(z# zRddswIVNv?MUXLJypH{WIg{oS=zRG?r0X9$*M);MLgr}W^)2$DxeECJ9bJWAmiR+r zFq{}?DL7_+m@LDlR9X623LXuAj9uI=uJv+_cB}96P6^=*xp)4)Q#Hx%h;9CdiXga)>MD zwHx_03b|at++B5*utv9NHnMrBv$;N;W$c}X*-qkT)Ty{ktKaG${!+HHT>B;^v+5mZ zv%X!UD;XkRF?~$th!#8r=+w8Lp}+9p>3qzmLS$?&1 zarodJ=Ls9{_)Y3kpUj-F9NOmGEZL;8kA6jLkkK9GVaiJ>H~TNy&ykuVDZaBl2=1BF zZ$)-AFb?wfS1~qmVquK$znt@uvH40_*Vp-t$`M?M@2r$~1NBMI!VW$F)@8#^pcVaR zd;rOR^7zyG7gMk-GWLbmr89a1=w895{229&T?`oO;aklu>Y>!@# zKagv*9e@s5$7TL9I;t2*#%=mo!N4=G-0;zL_b2yfyc@LNde2qICvN6UP4sb?wjAOJ z{om`k>fTD-1bl%Anob~dHpwiBcFwAavNV6ZvXjpmbM?DFFY%_o#4UHGE%?8Ey^TXzaXZt=m_# z2CnDQmEL<#6PHjJL@u$$U)JK%s^mR7`a;EI@jmj27^8f%*RV8_g{%ZF_9|j$_BIfI zmcg37`kP$i=lM$NHEaCPVBkjdH2U1|Hu|pU#Hyu69uV*1eb)`I2N#x_n1Nc#A924g z;B4iLg#l9@dELh88-8+O9D@wjI2ZlMg#o#~T|5muj*}M+I$ikvGK^eLmKphwvCNYX z1qDNlJS2~hi7^mN1N?`?0+l;4>aqI4_zzWP>T#0(!waFgD{?Fj{V=|Qj8%Ul#K1^j z+v}`EJMZf~|GR$@&Y4p=(3B~MmgKi90A~Z{SoGNeuaYZwFgNu-GqnA-rR~qQJInhn za+VJr1g;IIf$PCR;CdCfw8o|RvHVPqt3y6r3B1TH#S!K|L2QF!_omx;o2zKs^ue_O z79kU412A74$Y0FQ6hAb^#BQec>S)i+3G|rwz`y38^#+w`&Y}9du4Fz!`{;gR9xa`D z`td7nAFH~Tbu?V;OfYuBz(4 zvP6r7I=59sZV_ZDMTkrS@t~Hj9{D#mmN!N6&+=?C&-0(|MT(8P5%j<)6TT zuC*`YM`LVUSLC5eBd;CwH}Gu=@C`nRWgb0tLDz~skRPnX^@Ay{U-KE2`~7$&t`AJl z8=23@_V_FPC`EQEo>~19P6}N-RDlQCsj4RiOy2YOAh!GU(1KT2jQ+dz8Jx(Eq;pH+ z%-O6>fgJ!|^1;hS$uH!xcJg@jlZ7jyx5@c`Y`J>tXXUl&FygK`i%MB9oQ#|*YM{0J6s#Z zAKS5%*pA#lDz;-OvP1VvT^nTwHp)`hM%e{@uX5-5P1q<+^kWouNfUbiX~ss^PrAQq z_X)1c*>`wQ`WL(1##U?JUH-<$@K*@lo?;t|LaYh7?w!32z^t+MU~X_>mfTz8(pj-9 zJB1IuTkOhBe8k4CY5?Y97iMzP8{NGPdY66FKplm^*#OMq4P9#-8<;yobI}Io&RQ>I zza;q??09Od)i?D?`2RZn>SB&4f5yMSQ>th0CA=@$-;$b-yuw<^fceN@4382AzpSG= zJ2m&KX0PHvnhf^747?T4<4Sn62|7YHjW41d;Y|OY9JvKKCq9%T+q|e=KXre*i8zzXNVOS>wY=r|gPcaH)4Bf3&Yg*VV|M5^&N0PQZDm#`l5p0rMU6 z?MK0<#gVn6{MYLD5n^Od=Px}%o=yM$q8Ktt`l74ENjUUdvEO??G5A?ETHn@wa!>D6 zInHLqHhr(y$nMT6Y?e}YuI18=f%o5_P19GNi}r4WwzevskU3{H@tVT7Xo~tKbRkPM zZ@LDW(l!2j;>qBjn}L)0nBuF<_+WFsfPLT)w?E;-#KQaPh{NZy@ANA>Eks==h7&tX zF-D4?zvRF9<}%+ms^b>uLv48WT{*h8SagrSzLa^Td=@IJftGr}$tow^6m;U9;tcKP+U#2$>FEI|-3hunh#-GKJ5Ax%0L)H~y`v}j9wb44+ zYUG2S7hyyCVJ+sqk5~b0zt#fmNcpFvpLDK7-1QY0`a=gn^AlC4vAGK_Ra~;!=2obJ~47zKA*(d+-1n3so-8Izd*pB^< zm6wu-$aAen%O~UCJF=PmJmQPSYlx3#y+ZUJh-8N1;5l$Ldu6#$JK9yQ$Bt18`OZ zKJoUi5*w&K8hUzmN{BhiRY7>JhdP_WmqizI{^oioXwE1dP>$b7<%_W?6t}51V%QFG z_yFCzN$pg#-XNN~$MtzASB=&WnxKt(cqHQUc|_37hIW7f+A%(l416AC*oM;0ad4i2 zZq|KgHi8B?nU+STqKu2jir0~co95p>8hen>&O}}hw)nB z8!x|3mfu%C-rDOcjNL1|idGb_AYQITPQxQfAENB@I~F-+?KO_f_~7mzQ-e%v##-27jZRZpJ2Pc-h>WF$pf?EE6*(r9L~m+_kfj1E=ILQ9rBR zD>HMts`oNFs_1jciSvzasRD0|qmkM8b2)+U3*l4TD;1BBi zq1z|_vsbXo)K(obqv~p_lQl-?Ott+#%&+Vu`J?)g-43*D{i&33HeJa=&aA7=G-IK9 z{d5+9H#5*T+9%|vvjOF4boLFACXaLyo2R>JWKTvodP;SQ4 z_ykQKRfo}Wz!m_ubXWwBr>~}&{0Aw2yX4tm>tLFTbW7%#wYuQOU92C}#bSzY=0A=BT;`Oy!v?xTABb^j8%BH18+p60{<{ao1k z>qo-l|Hya7KD~fBH0zw_JnhbrwU>kS6zQTbk=x0$rGM<|ByT*%nE0ZU{b2fx9bCp7 zw;wzz-Uyx4TwP3lB>C&GRdv>u{PPU~ts`F=?OKx2YVhHVjDBLGnJYF|@qSk$vT2#q z+VB#4Fu)rdY7w-eIsSIe&ML^O8Mcy_r$#V%IJpmawRTg0Y+5$@RGhT~;|cgwd_NfUW*|}OY9DIv+nh-`=1iO%mw(j%>GXfQ zumAPHqj3z3%M8h;P11|;FQwu=$L0ehtyUhu~Sc(^G6H}c2F8=0Rj zDGhbgrlWjzXKQ^if8$j7L36P^ea}UIwclnhJvfF}H!WsdRW|e6cFkhuyAO1%N9LNc zcZYOnJ->o@0m0CNuF-e?@%fBsgn6mjQ2X*BFJe4j80Jh=EJ4OF;K^}tD>&!<^c~*y z&-Yy(DODYOpU?U8hIb1>QRl2xkIG)t9H>1;UpFSdZ=*#KW_TR702FAMq8mxz|qY+&ZByf7jykofsOCL z1AaKfm!@CMmqoQd;{g3$Uw@gQkyTFi*ap_T1na>0KTrH`@H`38E?A+Cf{|+5t3wd33=) z!RNrEcdMblMV!-%pQ5b{JSv}$GtifB^!=HV$&!aI z{VYnuQ^sRW`^uOT1b@`D4;nG&K&md`PxP@Cx~b;Bj!z)&TD5gXVKbK^x&Kw+YUL$saqdoQL)5rJ*xu4uO+@bpMy{zCjEPdea zaeYSR=+neOcW!!HsA2t zboaP6yKVlK@;_16gSI}RRIKi5Yc;y5*;#7$g+9f-XiK&h2e>X@=(Dw$9w+C=>G|C< zpb5=S;NRXB__v(0s(%7Aj@q~C{9k=ZxVp^uu^r}O7eBm>3w^j~~mw9Dmt-T$3@ zKL$Ld*ZayR$q$Cl!O#2PihRj-@7^SfyLX)0Jbc#dXY!4219-!Kl$=ZW$M=XizdB_< z%Py7;y%?Nn&(!mZ6*+fWXbQT^${O@Jv9;?Mx28xay5U9o>)Ol*;P>aDaU_x82lTH{D6p?Z^n#GS_b+ zp0YLnTY-F9d{$WYc69MsCNE!G=5J z(V{fJ_RkmM*QQN;$eUyn%&N0|qBx27i;tyGZHjMRZEOtua{oYlEZ?3In;=*sF}r_i z*}r=F$hEg!yHdQ7>+(h%oAQ3wo;+HfwYMbWtll}T&h+=nbM`*=*OJy%8BSDZ6KOt0 z+-Tyf|B0O54zGecV^_gD*gv^V_^30_XMMceu9Z|^ThwCbz0CStS2y#_?>Ft^oDR+# zvip-FGpwIQ>wf6rbX&7|Fk3VJHAm-aUlsd?lbAh|{R=lcn`7TVM}7@i2|i^P7VFFd z+S9rrb8d9>q-g6>b zT=uCj=FPR(CF>YlAAdE=udo%K)AOqGWhO2_{W=S}GG%_0itORz2 zu|4ZnnYmtbHQzGt)?AP4p&juj2gnE0&L1Qno@7tL4Zy#`_EoUsXKiaL!2gO)T%URG z!&}DLeW=2NwNBH{bB5ty@I0?^99@x6zOGFA(9`d#hgiSC`RoiaB-YC zs5gx-KeP7`Hm`8_y7A*@8bAJio#tyRsnf>qdp^iQVSr-Rh z<}%HN)X!dvrSUrCZTYEv^ZF#ZGxdS%!|3tZz<3xK6Cs^hS`cBFa^V-pA_y{|oNyQ$yQL%o*< z4nB8nAlt+;C(GEwrm{=fzou9NeQTbrzARdDa@EpLXJW@(?QDi0u8INk+02=9;e*_~aAK+BY@W@W zS=Zocllmuq+yzhNHk>a!?Yahg4O#Gx=FGE4hsTrza?PAs?`qDh7)-&Yd+L~|d&xpi z{;qxiodMh)4GsqTVXc*{kZ<1BcMZ6>E~s^zoQ<2`h8EtWFAq71u16f@qwHJ|yu$2< zCTB<@{*qhP=$4gJ_KYp78apL{58r%KHJR(Fr^?t*O*V7oX8&BdL2<^&vm*3Z#=x~# z!((@e7a1$&Q6r8+Lz=&4dCG^-0ew9JZ@h#LbP2ZT zGR`Z2uj@NBfjwLdPAGQUL${w&#oU(4(xurUUhh5E8k4V$^H@N z5G(6khHUb~^b9bS1JhLYlfnlt0+(>vT~ZqIcv^LNd?B5l#eO-Jv5tdZDc79MR0&P8 zKhDVBWZbgwja=SP-`^)%Gx*m%x`}w{U9W><*Y@Zu(9%uB7kwK(eb?%*9_o!#Z``H5F8WmlOf%e^lIEU%m2&UZ_X4!h z^=*^Wa`O)I`D<)%W(uK(S%b185OezhZ-yO?{=S99`sU2A`NPE_j{wv4nu{Lk^+$!27w%_Ef)3Y(`!FUwB%fISxvy0q$9!(KP zn%D;26=TK( z|5wJ-z-fK@e%xC4gV7!EW>*dQY9(i0Q=bNT*W{$nh9(A%PrZC^SBK2m6&dT{@#mrO zJx*c-F@qlON?!T(tmfWvqoe;ZJ?oeI-S}^Mp2yF1L7x1ygO1r#^MPw6a9z%r?NR^i znEgt&&E>u^<=-{l>KDHX~)RyANIz`%nt{#g_7li*h1T} zS!>*N6TvYUO^H4XjktWR`Fa<6sq5W(GdJ%-KgHGtqwfV>zP@PyUpM>snl+|V_}Z4G z@iq4AJA?6cF*Fh{0k=OL$k!7@BPBi>ftL)8{1kp!;PN%s|5s?_bbJlY9{1sFt8337 z3(dG9L$3;O?cdk`0c2aU44joAAH9A3ibHN;&Z4nuK>nAyHu*MiS%{s$8rQBW>eYV)@DQ> zD}-i04_!FWEYAj`Bja0jWl(&r>pTC!N1_4N8~%fP^ZYq-II$1t_x8Tcxtenf$fNcf z@45T^-n8%k%|7pRhJC{1XxzA| zfjnH$3+}HRgw9tnkN=KK=Uo54MCbCQZr}}yi zYh!+2{bc;!MQ-dtG3)qRW4;KV6mbW;%skS`H0$`Qh&>1p<8y$uQ;oIZAN)G-!_sXo zk9a(#vN*mT!!y{@;u+cMad&PYy4E=BcN;V!dm|e@iVbIch|O&g{ZrPxFNcQ*gFlByvMi0)({Yi0FPz^D&L8)!QF!q^(+U+2k;+%1b&2)h_yBZf z`Bv)@wx5OAiY1)oqBAG%h+;$4(r}4dlFhWZ|xrhZp9qd}(~poR6_!?S$y8{BUb-An#?yxNT0&r#f0M zaK;bG+x_8dR_Bcz&GmJ8FMas-)|`Nr?jIVL}lJ=f{$pS}}%+=&k#zh3Un3&Q(no#{*v{K~^Ki*pc< zkPEgKSy30r?JXj9YUlj9eZ;-=N=Ez|MSo_@-(b<=WTQ561{P382D);N1 zrwU(rv@Vd>yPLBVa`W<*$@i8Y76U0)9&m_Y>Pg&QBa7b+&ygZyZ z^hh}L)~aww{n472;#ahOZ}5V@3g204FZjFz+{^_x!b?eDXs`C{ z?_TMIV#Ttxve*+NyEkX!e`0fmGvLEw`bgc{$I!jf!r*WJZpKCQE;xFCXE6FP{6Ib3 z)X_s7mai>s#mH3@XWV!G(pkO%IrI{;;|bNs<*-Db{}V{&~^gy%KsvIlU-91$ePQ*$)D-XA*plP$#R0|z zeX#T(`e8S}Z$aPJqUY7ln@*n54@bbC`m2A>EW&*NE>Ykh>a>}nGeRemC}U$IgzLvt_SCodxgT=7k1)`#CIAAa@l@EGEB zj1OPBRenK@qv%=pVc&iOZ>*ap*s;!lW*mH~vL&loQ=s1Q+Lxzzde1Ig-^6+=a-c}{ zp;zP3(R&wIT=?m5txJcJLzaf@{xiMffA5Ee>+&2!A}9_-GGPf=z-c3H}7xy zUCK7b-)d}QFE6M6Gu`h#pxn%#&HhK@7hC7_O?gURw7^Q$&*e$>D-bHB;vo4$v8 zwJTh`49vd)SHjQHa(firrw>jr?j62(WB`}QxEvwu-I{-5}Sv?pLD^$1Uu@3Z$mL%7MU z@8~)=v$gvs=Fj9T$j@~;G|pk{Y=?gJ_h+^C&$V-FD}!u2=M~_kd*XmOx1sZ|jJG;D zj&G%FctvY5xR>2qccY8{Rh1^5x0-wD0PLww#Z&0FmRJgNPb`JbE7Nrqu@wDvnXUbT zkN)T%IcD0r4>`7yn6avnQxma?^&KokcYbmEq-cRt@>~Cy>6-(Zo6fCQ{AskC{-Aq^ zLv`j!*LPz#Z3j-T{viFXWsG~!RTYl2S^157=uZ>h^tf=SKRwurP3V&Y^skY7oi}D| zd~DtW=!`DzyRapzwGXTuxk~%-D^Kl5frm4mcRf`3{}0Z5> zZs%-i>`%oM=w19x$-N)mxYkjx;Wz4FK1dy|ErBeEbA1bS;P*4@yK%}&Tz;n?TuCsS`ku@}?qwwJYkq2ZysF0T;WF>kq|Q+C;CTq15UeeXug90(v!(8{ z81tM6IJgxW(YxwzkeJlsWBr@s%-wb}hJO8w9_e)6v-x{^e{B42ZBD(-uYbtizvH}} z7mbs9y_`f4ry zCr@8#UaD9V;lR^b+Apz=@zJxHX*rW;VuLC7_Dt+A#SRRnv+xO=l6zZyE@E9#JgQ&S zt(fE*Vof#A^2T5$@uVvE%4QOOs=4uZ?kG)sC(qeb79{TIPWlW^!srWQ#}Kz#&APna z6CLY!L1d`OiCx~|EFU$(Y1MsQ9eE;hoQWC}zda$olZ`csF;VJn?)bO!WQPSP!xlqtY9HK4WUtPr5I(T&m#$~e zfb!7A$u*+5^KS6G1{#M}@NvrilCP$&eLpsx@SyKf<>B^!qukVOXgl1#7ul@2vE$OV z{4hn(HZpCzY=j~o&Wi@Yc|}?-i3;dixh0efKy-b&y=v(>ZH@mJ8Wv6jv;K>qVU>Gj zMbNPK%#(#@e>@d09tUShxs09lzH%9xYk*vKZ7;>Z%9m>7GPYNGdt=ZO;+3k`ri4nt z`N_wez?flETq?Qb?XjpJcMv+L%{!Yd@;YMx?4RVfKx-lH9*Zxk z9R6q_&ou9Mdgm5SS2=ijl=2Shx{-hR&_pYz+hZ}>Yt!9hQLZ}prZBC|e{$Pw^xAay zSWI-=yod51QP-8WKF+%RU^LFT#h(Wc>a%zv&VE11`87Yad=V!ud-5RqV+?*)e{KZH zb?vVnpfjjXbv@+Pa1#&KiI-}?!0f@igV_G#Mxn%5Wl;pwYW;SaZCj|~d{3_twC-Tb2_|8B~^A7c)s zF-$*Sbd}5R!Ok+1v%)FhyuK%}M}~4v*1B+LZEo&Ft*M&xBshB~7dh+c1kK?*TC8<- zf>%}xKl$a6`tQl`XYOSE7TKabLk-BkYT{5Os}kP;SF}|~J4KXzuNyi-W_a>LGX4F| z5`cF)HD6u>?{p!f|GS)zfA7B8lH}eR>+{XXtnV;!fXKs5(jZ%uJZUDo5k=u zvfvu84)@%^TD1ud%lL)glY6SZta5mAoyV*0o~oNwjxPQ&<-eq^>HKSL@f3ddwK>*n z)8+T6s)KJXN^7&!ZF7m&rpxb>-8LI2Z=tS<{2STi^7}3H+v9if=XJlbygtpxA4kmo zq*OkO81O-FZGM|UvON<$H3E7wHXQww|4s81?T@K}Z@U>c^xG!Wo~z$RiVpRztH<(t z=$}uIb;HlKZhkY(TWfuKtk&wWPQOp#zO=J&??aFMFXr9_yvpjz|9{UVcNA2tR;;;! z2za3*3K3gQ5-wV8?Np{W{ZB3@0W>;FwNqQLIgoHOwsM3H6{bxPL6g=tMX08>B?uxm zw&miqow5CSPA*)UT7^1oPDS(oeD{9eB*R!tLo|-gn;RtS^<01zvZen+cDK(eBw?s=!Zr%qY!Mzi#!v6*DR(xtEw4-$ZN_ z%jc~K$BlsNMZY`a$h*pUoYPq zE3Y+YawhP-#i{=0GH2m83$iOO3Oo0G)5ERi`t#tVkNjIJXUeCWyRXA$e1_7@oHzd5 zMt7a{GJJ?Rqcvz_+WKk*I8eH`zFL7St%gU{+*{VM7yU!?`@>nxUFKPWbYpM9-YA~! z=^eiy=7*gFcFypb(JcpxWs=#Lv+U!D0m@y*=rdXjhb-{U18X3mM1%<%CNF%-WJrTL+=hRvaHe*t!y z=y*Mc`a99pV#u;(=mgD88Li8a^UED)r(ai7T?Ix@wf7evqW*~V*>79lpr5(z@%uDL z=RsdgbDMUPZ8~}{TF1zJmxKHqh76zr0bO1d91reb)MO_dzoyM%)LNIvFm%= zqxJEt!IBry%X)y3t`eFC-BLy`WroIN5wFe0-~4JfdH7y4Et0AQ2fLW#tI-uJ!x7FF zg!_Zw0CcT&oT>4|Lm91!Xu!n7U(GlQuJT%J1dMeRu(KS;z*YgP=ONe#cdGhezv#kh zOu;cRo$w=zOpfEDg1$mO8;J9YO;Tg{FXZ+5E_^(!K2a}gA?~ZZLNP6~9sC|5%suD= zK6|-=t4xDybm1zQ(@u>`lbj71g6q7-z9{rRUe6LxSG|&J>t-(x!K{v(vWo>a_Yk>#q;Jo^{zleDXUi%~?H9^y|sPN#;Jw zVR;zA#w3|{;b~-EC1s`G^CDjJf8!i$x}3X~ejfJCL9hMz9*mGz5$0+Dnlfug;^}J5 zBHd`me;6L|hV#Z{@y(ofJ^)`3zgfU9^N%}`K1{qS?)OqUbXDo4-=Xx#_Pt7nFMZZa zzi*bw|6|^NMA?+_h7+;ty5u94he$r3NxQxMCfS=$+g|2QdV5!U?X9`owD&R9PkXQN z>UZ1wO{LS`XMkEmdHf^CtOthejUN9im@2vFqzd3A+M6lxcnLCQ^ULmfcS8bk?$^Ub;JHxAOiN zbs8S?b$f5i{;v=7nE!5b*6V&k%@gn6U+v$8ZvWst>HWLS_HV5dKGXDXh1x~`#_{`K zd{h6<=lPdLPV(HMXZrkqc=q?LO!?{mue@}( zZ`UfFz8&(?-M(E-`c-Lt`;4z|E9u)$89Q&hu7CIXbnWTZr{~`>ygvOPb^y`8e|`EM zvbx>RNB*~BPP~}stp7D<6w+n(UGz=&Wr`+;`e*!6hS!&xZ)VSfIaU@Wz8QO6EYg5dGz+uYaWv+_}SR+pvte1X$hcBUt_O$J2+`amQ*? zNB5G*cKpohV#GW$X+Ak38-&(*vXSkqbL}wLqvab#O!AI;?2lFSHDqPU&>7iYWXUGv zNWGCG;krIojwpSJks)DoF0I~`A^I*`kJd~<_jhZiWSOK7 z-$eu6(7=&gE0Z+ltO3?*K6-Xi>GpqRpJhaUJzIdcxAi~WXGx^BRrX$g+eJSfeXmKg z&x`&NdB!JXeKL=j436Xa*$&g<3h?yq`yGboh-`qyFX7Fy4r7x?M$5-fYt2)XU8r#w z?GO9tOSJJRQCj^W?K{+>Qr4oyvoFPH*f1>g6cqdqvPnD*_MpMOQ) zTAk%!>a5l1tg~F5HC@*;`u?qvq5Vy@<*)2{nsI-byGRV* z!dGRp*>!7s+@?Ub{Ldx*y zAW1#${_5K5zr4S?w#waK)!7BXoAI}MtZS=ntRU^N@|@QpTVe%vy>8A>bnmjU@6pLk zUw^7OLt9#)@lWPJEGJxdBX@^ron&o0m$TLmwf2@f9f>`brwu$#n~)6w>_&ye_>z4#kR52%J8~m+ zl(xbzI@JD;s{MJfj?>u>02r|!8aXG{QA%GGYdQK4%rkgJBHV^ZJ^C|Q7)8WIE zH_W?D`<)NQ@m0Vk6-k|H80O0_&<8({^lXlWF24IuQ$A<=Xz#GSrVJh|9m=!)osG=& z&O8mxTl{m{p>6Sl+F#BsnFGCF_-|g_!+Qxmv`7Ake*V^aiRv4U_n4UOq>?k?IoKfa z1t{sw3QE53jA(sx>G| z1G|;voYv^N6Xd?%=$-i_I|jeOFlSwhogG2fuLB>r)fMNn7A<058aRC~@5I+qexr5fjfDANrZ`GIXhH2ZPt=ekN~J?9d_+2CS#2PwbKVk)XWd`qOkyn09;cs(CFaAq4 z#P{0^4TTTbJF3+$*+Euduatd%1?T84<{aHz&e1L49Nop7quc6ab}ir>-Ac~UUCcSU z1)QT}uka_2FWt9k+tSQU+>`#36`ZBZJQXa#BKx^2Y{>G{3J(NJ!eb+?k7<8tirrtD z!2S~NP2<@M>SKRNK4C}LU(&fW-~Lj&Z~vlwD|&C0oJgk*uMWt@)fA z+|2wJz8Ryn!}n({-TnmU__702;yHn%1Cs(-ChpGBkT0FHy-LsFT(5kLCVt2{cu9s6 zpV)F2s%0l6j{)G?2Ai#Ju-2~|{55}u%|6}WQCBzE4Sl@V9hPcm5v&iHhVFT5;JoH4>$kIG8$1I(+zmhOX^4;> zDfzDNOqt~6iH1xQU-8A!#8+&{9uZ$r;~AZ}rUTx!Sm)Qn@E-gi?Ri_pdTGcu@m~_> z1yW&nO%1ZWk$EBeqSl6@vA(0w%Il8e6~@_Xt&8qhv9X%9W_Q1nYRQmpa5Zu?*!F=< z&|yD&klc^c!};XIpWum%Q(q|9we?i}x=hZjGhewPH>1ge>v>Ny-$31$qqnq#L?4^kpUvw*Y=@DO-4jE{3GNc<^5I@Df zR$mYMMf;r-bIH4}bH&CaaEeFON&gdna8l2`asS~=`Mv&uIYQpS`ux_nLfOWbaxgED zO1$Ny`ZnaZ_E2vP`0C9Hq@oXkf4&)f!o&7JgI*t!e}Z23WW|q9LodmzFlFI~-P)H| znmWR_-Pum-o-u*e=f^lH+Ic|hk8XVBlHe-P$o+qek#`TI%F?=g-*@o&;khtmbd{8e zZQ_j;^H=!z3Vuw6ZnEID=p&OvD_Qu7o<_d6n)u4Y_bboDHd}JHS#6YR{TNqmm7?pn5sDCv?k^;FZdRGiMvqnyH=Y5 zFNITqmNmwIFVK?HG0O=o?gIZ>PY!Z^c(6XRb?_diLw&XL#NK-VqIQDpwQ(QRO{VU)EqrVpL_F(SrB0y9q&E?#lX`T1v3qo=m3`RZGM;tIfIphN&$?wS zp^S208B2zJB)zsJE*adQJAw_r`IX)CxoO=nzY*PRQfwP|%;(AH>EAD!c)Y{v(3EY!Yg+PfV5nP>Xn&G`B8wMzH`X1cGu_Zs6;trO9iHP+98(_-|o zYL`Z%&?x5(`yFT$-Eytt6k#VqAC5Z4PLx5vWE&Cea@uC{bQX-rbLuhrP99I+4-nH= zJVpL$mM*OxJ8YY=@5L@{mb>&`1Z@^s+Kd;8HhHdqjvx5r;Cv4!!a)&zDF3(}$EZ7w zQN}R}O)FoNF)Vs}a0qwrg4tuoJ_`K|!9Y99-x}Qc2;=AJ`WI_V;RO$pM!$#t4UKQw z`lOV+!t+epPzheIx#GRoD6fOF^z#BQn(~I}rHt~rnL82oH_n?%Sl-aP!t#sB~15x-rC3XvpuMA{${0p5)wH*3rURpi=8|_@Ur0cITCBg8{x5Lf?UVgB{8*+$e1` zFoCPW z!{=51%(~F_xpYA12L$^WVBhrh)nEVL0)PGA319Me!cY1;;otvv!sq;*@HmH`7XK&q zWE=hV_=V`VdvZtUw@1*O_I>;e6G!3&&aLl7)~q7V`YLG4=uCTZt$te(NcGeOQoVNt zQmdfBWB8;Ki#vYonA7oQ&q%#hqoP|o}^X+8G+Idnbj0&BO%{vo~LeX8a{wT2P#d1;ivy z)PXzTGvPto_}#}?EzoaehN(+2L3V+UWAvvFe01WM;5hi&(1vdC&_kPh!BPG>=s1)W zV?0#WKFWB3vi8@ob^sqeV`ApcogQ$nG8NB7c=x~Cb3cl;lHJxr*}dRX`2V=<#L!~^ zdNe!|di2w6k~VacZ#n)xNq*Prm$o)i|MJGUW=~8uI`#iU8gt5B1rL*b4E^K8?cjJK zF)T>ixd?haO5L-ZtbY13zx(Dus*JUe;z~Rxe?-Qz`{q*SNh$NBG_{YjHJV$3Sq%*n zW83KY@}aS3o0e?9mG+3Ao3*RrabQ~&FU@2wn{}(=ahw-Po$2ybj~`Dm_cIUg&!De& zbhFoh{xzwacxvN1FOJveaYwQ}a4-jxsiZ0!2IPbf4wbVqqp&9Nm9)3&a?+{aP5 zbPnl}?a_k0*qfdH9B8X7+cE9d8N?dwF|()kJfreC6Sw*?M|Zi}xSXbZ;`yk21Iu_t zfK7&q+f4g_Uk?0Rp~AM{n72$BA5Jm1$Ofz6M@?$KUiH8()KVXFqeA z`|fU9JG^ehht1fsH$KXENe4V9*5SXOd1$=MdFEkzd?xLuy$8Jg1N)rUF^)6H)ovUR zY>@M{{trGF=m~-o@;uqOZ~hJeoLBsvy0X_t+mi|eQ!4RZ{T|heJ4ZrZT~M*<`Pq8 z{p!qCe|e&F(N`sN;~C1*J9dQDs;Sr?v`*?Ai{EQ#Xg~c~;&7-h_^aA|5r_B|+E<9$ zb<|Vt_k8BT`JC-h-uy8+!eM*W!qQZ5=_gW(kzn5gsr;p9)5b4v4{+~{rN@!`K7%R` zTDy($^yn*n{~^Nn1nY;r%t86f{MQuX!{9sTIJxno#e*9<_1uEpiEq)5a$lzVZR`Y3 zuN&Tf*h78k`w!{oHMCxlyc`4G$_u8)qxV$~fYSptU2{|Vt$k`P@f9+Jv-IXbSf_QmiF8;}({s-W@`A+b}mbVAzpG%n)iOdvheRDsoNB3Tv_s}2pF+e?q z1-bEEj}Gs(dU<|7eq_Ir(3AYLRF?Sd1N6~5uW_OwVC{i7YLDgYq4*=Bk*MxHyMcW( z^q0$SKo96={$sDu9Pn(*#?}TdL_=ev*z~YdnDapWu@2d1yOF_?ZL$aH9<#g1W7=^u z_CxHm=oHh~-#u7~eO7y+-dXHQY_w{F-&g3b`5fx5*dS%8eC^-LPmr~qxt}HmFD$^f zJjOaCNL%%+d`BhA7*F-7YH*HXj9Y#Ynw#pSFN%ke=>)p=jLO)gJke05f!8kC zkTa?Dw|1!$-wLnq3uR2Myks=AxT8@xHqp><^iBKjmIB)vG_~@(ss1GyXBg zRC%k%aW??v$lvF8w7VC(LNhjt>{*WN0&8o|%fvpRz3V_*H+Hs220BQr$k=|-XALTrS-+|I5 zuur43+H*2Z8+-4Hb*w;sDXp6O4NQ5+qv*IuYlV|h_bqgW2EOAX(!XbhZGUuPrpZ@5 zb1v(9(xDMyyC(GeGvU@t`qQ_>o-82cFRPMI7n7b9SYR(kB^{DL1D>H{=k2hZL zV}8k>Ut?})1Y9WAmSXN4sQ`b(hd;6~*0Gm4Zv6hC73J+CpKRiHBIlQ56E`?hj6-5J zR-k8fU(T2>M7Oy?F&V2l=Ykzddz#MW@hbd?dnxmX^u`L=S2Nka3%5NDkM+utE|9nZ ze(MDKt1m?#7-e;dXy_9qkSDqF(fK(Yn2}M?4_1{eoKH zqVQt$<7(^d%FgVUFwD zQ4MdHkVBW!v-XC{y zGY8ykb8#~l-0X7wURHpcTFRIJK30Gm&6WCftOdpU7n;AUe>WH|H{nd^{2whe!4= z8f*DS6@0OWxmD%kM-|M0@^jqpBlu3BKZ<^;I;-G2>GkBpi@mmA3{H+R?ivg2aqZ(h z!I}*JlGMJ8f$95weY$N*guT(+{v!59F8Si3f#cB1q*~fZ%+e}&x$c&ce_eit)3JcE zh(%hr47}Wdt(p1Up>mVVof~rCcP{RZRKz+||FK(`AHa%6ZgcN##>TZ{^7jm1Ja9Yr zHtXB%+}r$-3}YMSIk!W7%Xz=WB|I>7K=qSm`W`)_L%;RUX0i_w;qEtQEOQN65>i~l zx?+6d?76LA+YG*GzHmm~;LVFOEBI>knj~<-H@f!x-a7Rq6I%fL=J4@G`1mK;v$T1Q zE@akZTV3AG{&?yFd`${ilPOQ-(~Kqk@2!g%`VqfN(0_faqOB7dgT41nd`7%$5A+y) zgL}By^PdHsCBU<#mk%I2h{}feXY$b2WrKrP?Weq) z!c21qQ|<>dp+PUue4}FMOL5aLr z$2#tYKrc7{Jbkz|&0kylFIVA%qkR+cq<_2G%$?Knm&ft{DAjoo^yg{t8qvpJ^WlaM z{9iwB<=K@7iD#6^!nOn6{XR$Pqio6^??unsft?q9=vre_jth?d2bhPu8C&9c(XYxaN0FMTxv-!9;}5+0p^mf=h8`oyjkGyop{PkWvUSouZn#z(sF zZk}0-IkW*kp^ksp&l*HyeYZWU^)bb_9v4ZWly8V-X{|Dic^KJ#ozhv4?IYdfZ?XBy zl+N9;t4V*HvOdgTf%@K965oyQQ#G_>>~Y{s`ua1YwJ=tvehV}Q? zdfL$#<~tp`@h>xDa=?zsZx{=W;j?zEh?75>bHMf6f2nlFaHp3(-liW^IyhWt)7cBj zj8|c=?NU1DhR@=6D&zVB^)R*voB?|$E&-;+Cpb4c(cC|Kly@^8jPo?`aJu-dx22t* z!|%<=2Enz+j){-KWd(*uv{(J~06DvgVaApN+5V8OSA*_N}=kg`ANy`P*%N@=Vjb4U@;CXZ?!Sm+YCMd)sa^bf48E zIoMuPKSwgAy>`_c?7xAgee{0;I?_rfvrB9Fd~}m0^x>7G2d2{_*Y;5m@7{vUYzns~ ziUaX$xi3)m6XAqIThEN|#@FP|AK?qE{%|K1biU*Lvz_$;=Z%M@yUX`s z6ML(Qe@;8GN#?g*@AkFwl|bqc=hG{*j9%Ve<>~|Ue@9Wfk(2G!Rv&1uMjt3+PN`qj z=mVSGJy6vv-=}WyDA~V-@9D8mN2Fsn^xrwAZ$-pWO}{Jol8ZcAuzpN-?)>HFbUf{X z4h_9`PKphOU|Sd-j?3z2O|NcNV|O98DC*#1m49V(en*gb830 z`J};X5))$`pCpfC{E^}7?7tim46^CtHvNDTxe$JT|Mr(mS&`I7y!3xRm;90K`;-oE zna%GM_`!3uA-x}qEl%EW)^jF!bp7@uHb3PN|G%6VPle1wPhP#4#vhSMDcQ8d8znc+ z{G{;-osNtdidCbsbaz7$am=cbqZOl^#mB*Q#TaKX{CR%GcxN$mJYVfJ{t=8v0DG68 zfBK(IY%TFqe5Ry(-09)<+FWxN^cwXU{`hl`&%R{&V}sI}V=t0^44C@U;No(Ni+1N; z%Ok((;=xftDtJdB{j|?{9sA$0g+rB9} zFK^<`vz9s#<<1t}>#`-2`{&V>LI)l`6gsEnq+;jDPW>8dLcyA`f7;$9_ZD{D0u!e^ z*snW9(a*-t#J*4;3Yv9q0X7DFLU!t#=EAym`UAg7-t2Tl(2cocqQl|b#D8ErkPMx9 zoL|Q2An&S6{L=~A^De4a_Tb&fEhFo>>#B%5?8+Q_huu&b@=9smy-n(~ft|9Zqe^Rl z$RmeJ?|J;B=9BasPv%YyTl~m=ZRnZrnrF+9#f6Dkh8{Od-{swj&5ED;7urhMA4V@? zFQ`N9PV%mKaMpFm3GP=lu#6FS&Sp>R@N)MKD)r5jLrjvNK~H+upO;^BGl)zXEO$CK zQD0RS_7T^AEJ=E@-1Rf$yY}B-J2qT~SMKki3)64rxOmBH@N4Zig|1tDs3*{JvMM{U zsh9RPGk5A<8JutO=G(l9Up8;VHnF~&?=Ry+EVx7bN}g=QcXubx9>1J)(MWwxe97w% z>+u7!aes|IiYJH$gdgEoGFvi7{gbXEyHGxMq1#!{Mv>tmWVht1?z*T!?`}pvm#k^# zTW0Be4!Z+flc2teQCxAM%mqMOYCUl$$9pg{jgq@(j2|V;N zUVW0&ti^xN_^EB($ZxF&B%8a(!Dpx7&wB-Sh^H-oQ<Vn8?Mj6xrE$hSZ- zDw^FG6-Su&;^|8F$ERp^&lc-@CNU|JT4%x+BqRS^X=RjR{VFDfY(?m<2bW>zlq~Yr znaixLbHo|Hzvjok3|nWhyUtWBS*`itC-3RUuRfN#@hD1(M9j_#;^$bok-uR zT)kRxC&V9+>jwjAZ4LYn+Nv0eURy(dp{*ITp%5FbWQl%-BhjzsmUz;a8At#4Zod#3 zgvJfclkXyE)zgi(;1e&|k>k@BCt;KIucw)>2fVdO_j&LlQ_t|7R+`t+#eWOEj%OaP zVD9b$&!sv~hpyLC@04giKiujn{>#hQ-t zkaN{I;-=RSH(huu|M;0{G#=UhRw#dRt)cP!x?viRxaa5d&H4FSAC1cvZ|sA}{cZRG zsBYoF_OWchtev6#zxbY|`EgO(HSQR7`fwqX2p=c**!v`|XV37R(dQ2B=O%iBrZ3-e z{rVjaH%`6&5@yzW?ujFivb5!T|J-2cvb zT+W9_Iug)REL=88c+z_PKc91HVlQhfe8v8oHjC%oc6?t~I^%Vf*QbwLoE=v> zIJ&}1ue9UXqjdT@$)>lX-I(%!!~3tPGf~d^7yc8#9#eqbS7Y;irGwA;tX58r?D_dn(!MW}H)rn;oNXBTL3&qe(gJLptb%qJvM9Ut{=V+Vgpy z=kwRapXyiNgQ7j?E(zULpabWzA9(}cz~5TOjh(ZQdKW0a<|RB_eX2TIp3AZ3b zywdXT8wSMBX8^a0zfTH&9yIZ7)*ENB7MsW30`_RLFTj|}hxIb@m~s2HrKjtuSL5~q zZ8zzs!q|wuyuFQ2fX&$G%6TKJ)IF9P1wuRh|NDmo4P4mt)tkbP4t zYdmu%Y@8D|c2}**b;c^dT_DN3oDyf+>=JxeN`AN7^!0%Agr(7J$`uY)dN{bw(sWSi zwCOsVe!!V(`Oqoe<^Q1ZOnETRSR2}Z>l?i59xwf6oBq1e;p6I`!Smg=j^j$dD^gNn z``Yd#EWhYcdR?UCGhTXlYP=90`y0}KP5TWFcYp`Ye;0?}S32#zkUWQZ{t`6)J=@nI z9R8GVFOhZ+-zr6aiEH9dVCzb!u`i4pNn`MW66pk25zh&lE*U({{@`ucb^K>BjND}{ zoW$Q}iDbyk*{Q4YynU52L%XI8k!$1quY2{`bk%hMbseXjp8nNp&fg55&p(BHHg({m zBYoJ+nWyKZT3Vd-*Wy>B^TswUBlSM$$vl6dsl&iz1v}FFoOyv=htwBOH9CyGd-}5zzzo@MYZFTt^#JuEyb+4bJ*z#zDHD{(0k(W5#1R z{)5*Jv%ZU+5#R1>o7bKvNi+CIH-jG^yd#@E z7_Xj}$d@d}A8?}eX-mlOiE$`n9JmKBJBmG|XQVyEjMoFSMR1lbhR-Q_V`yw6tUCtr z12=h~ts&cp)+6{|vj&U9e>xKE&ur@*9*dYu6I*GU#j)Mn^FOEeV`Exg;r=t={xKi! z{rJD$;D7jh8}^wJY~qKKuFcTHi!Uol^h8Qx z*pW=WDEh8DHhN!DewqBIN8G!m^eDd2QEYzI*o(9#G-cr@y$L&u?kdx7wfvc#K$CsW z6CU4CdAcJ;&-GD@ckqR+YfAhx8cW9U{gmh7$NTmPzR4ddJ^jWZyxF~4i(~t&eu#Fg zZ9LG%Vc88ml+RlFAbe?B1NBB(bI2Z9kDl6to+?|0>;uK`WKGu{bRO^fBXLB;`&!;( zJS_hkKF_88Y2Pf+Zs)DuE7>zMzpO7DXvaS1b{rn?=%jSOtkJUU8tgw+XBIIveRX>C z@3yr2wg>Au$ISdtnKj_OMl|n)>sEBeHZtedE?~~BcC4WOZEpPws2?Au5%n*ie)&fUW&!o9>|M~`ko&jjS>}|CjrP@4Q&YO<)HA9d! z1A7>&L+-uh8Q9cVL%i$W^3C|;t~k@#xtsoIe_wTWbG`wcJe9x}5!~2#D2R<%Wj%^r zfc~|ca~;gPFuKdP3uM zK4YzX7aP$h-{QQ+Y|dv$uX4|LJm8)25WTAmQzyQ)n(OIxK5pvF>e`!S>l~^N8>;G4 zUAhkdesFd9)ZU@9BwL(tTe*7EIssLbZN(&iC0?XLm37iUKu@Dvd4YDmiJY>7ih0__IdFth`GXJ2n32iIgb3m)8=ZKT> zfL9N;b;J8=eB&+pl+74=dw2!-kd2wxHP0yazU;Xp(kV~r+uU|*9)%fm?qlFQ(wB+n zf)5|#^}CP5F5g|E@na0)zVW+0O}~AB z^SUv3jxF2Lkjju<)W{X=P}TShiZ}Z6B-}cx-8zo>c#U7aPcrt#VfkJLo-P!xMGs7# zV`Z+fubyM~&%^Md<>E!$U9OlJ%}#jn9&FB2v43{HlXbP9?*${7@tO zMdJrTwAG(SXAZ-hZ4ysAf}f*kNpW~yFykC<+idpZ!u?0Ft&6WbYxd*9WDq*H)%SX(saM9e*HQdc2c9Wnfqnk z_$cXh{r)`hL}Huz`Tq#-;mEPALfa~51AysxD_8=@x|`Z<&&5{W=)}T6%*k( zXk>&;g^n}9sq`T;PK?oG_g!qpW<2?O(G_YL-(Ar8a`phc_C3a(!Yj}rCg2w`$8mPD z_mY}0#^@dgCya4Aq|=G+Mei!x@9*j9P$B5Poc)$CwC^8t-IvXt6Z_7gevPZfoc$*A zUd3Evzsc-F>)RYR-kI7Z{P&`xAd7c+_u*y$tFh7d9`qFL@#(n_T}gV1Xs`!eNwinP zyv_h0+njLMO7^K=rO($v6aG1=Si5$wAYA9oNlTA5&aSslpl=JAlhTO|EoKqlMS2ly zm_cYzI8i&Kv-#VhwGOhSE(jmg*~tm;-K~sC^uF2wuaAB75n4wN3$<;b&x*;R{;Ge{ z%@h+gahm$X_q>0eyu3c`Jg)e?_JBC=(b4k%c-BITIQT82) zv(|-g{Z$QF$QQ8Q2eZukZed*!0 zT`u3#eoQ*w+vSeG*>B`5jO-4tGJl_7FIRE#FXo*#8o9g(Ub-K?pnc3$?mp(RVVYW9 zAF?s_SGjyd-xjfsKc6yY()Tj>_xMFc17;33R1Cb6Wo1yhyiwk4#_KrsPWnLP;p{Ko zHgFuCH|YcSAHHPKq=BQ1>mcJQUZ*%Al8+)jd>uXaSU$ajSUqMAj{{HlL`v3c zKKcF)ji2!sAJ%uY?;3`NwI{Cm+{akjJJ>St+j*cFz?-y z&GsGswbuESy<2DUG9UkPWz^@rz9Xadx&1csX;09|r7%fKSYKoPTF4XByxzw_G8|gfV+qNA3f`g-VAHM z|0eI>Apf(R$Ee&u{59HG>^NNs%F|s)I%o0X4V-n>nGE6QsbGBfCDgl)dh59#M|G{E z?D|Nm$(H?w^DA5LD&AM>dmY~?m%ZW<q;^ne=Dt z>hi9wwEKDF&#r9e#1!na8T5yHfK5L))1OTGvzM{m2k&2)z3+ma2Q$Y_qz^~w%OcXV z1DRcq(ziLhzv^W5M_cec`d;J4D6rt8YkanI(DWHUp(@e}oy;!eZhv8WgsQr2j(?{O$<6xBy)vhdwqtIsKPTg5OubgQD=~ zh3G->>0bD>@+p5##EBoj+1i9Aa}MlwosVX0>EWMeW4Z(ay*hEMgv zr;fl=jxrCA-yBK(b_)Ij;(HbRqF3ZrTKbwonWD2B`F)!*DSw*wB6O}HNx7eP zIBZ`#>N&euMjZLu@4x@>6lBDd+a?d>gv(o(o$E}?&Dnjyb(;g@a=}|}Ah+qaPHxjj za-?(S_D_cYFY^lIcbVNaDv;Op z;M?`<9y}xafio!kUx0at@?Ue#z&Fh~@gjZzPg2iEZ@YAWwZe(xoUQE6a8hc=jikRC z7}ei{{jNF3IZ@7U-wlk(EGPB)O-}0gbSL#vj&tyLp;5Muz|w~w42;GO?ltuG=*az-1I3zntfaK(K#HHawF#-{@pF)dcuuPV|PtU5ohMNGzr0qk<1~2k=9s zAC=&<%CsTawp4u1t>0g_>Q#NxNkZVa_lv~?=ve5A!TvLVS3Am?qfyG=%YOJQC)9ro z`BNyma&n9v?ont#`3lJ=zEm#0KpCaXQTgW-t`4OOLVxeNz5Ql$YcTG;+%hsw>fJzE(u&)IHy*=^VI-u!LkM<~yfJ%jg6ylY+*GRKy|lcA#zMv!5} z^i}z{k^WPKa+UHde{1~n3%=#W7fAu)@afJ3r|%Z*4nFZsr^M3 z8o7aOX@B9{&HF2{@A&7U+Tow`O|<9Ew<`}nNo=tv@2@GYnk2Hr`kFkCbUtUkFAhZ5Z9H$Lsd@JW0 z_noU8{(0+)6OdYFOF555h+LLAL zzgP8VF-Lv+zc~-cc&FDFfG-v?2g;p_?IY$+r zb1!wKWy8Po;NOcj=Z>57`N+DD1m3;Zqxd0x{Amxt(&3x|*%0s%V~-Shmv7@3Xr2bJ z^R_ToRaXMumLE|bWLSPAl?|?Pm_L&PSzY@65$gL%wzD%gV(Fc;();_7UD=iP{d(S& zFOOfzquiJi*BR>HvgbZ2nEn09segW0IIn}&y9}-8wB;IF&*|?6uZrC?&dj|WL+iON zt?QfcC|Ll`=1&e(nz4JYa%2N|uX5^ASyw+tS?T*@!#MMFFc)XcA8)TxYrx@rBXOIJ zoWuWoT0dvZ>%I{fSC7nl0=admlh+kQ?%f#(c0GyAd-9CD2R=sH=)f6G709tRcuYm$ z%>HB8QG4Kr8MM6)S$KOO(53g^GLI_)&WSbHUh;0cb07~t@OpH}2Y{=G?9aY$T*e~-y`SSvs?SwfBYTv_LZEj3%>omym8He zy#8a@x$6R>y3V*XlKN`kjIN*2?w_48>Vd7KO$wZejLtLlONYIUc6^X}lki^g8pXDg zY(m~Ou`h_tHr)SF+Q);$a1T0pO_IltBBQjw{1ITf?u|TLw`N|` zQFM)?p{&VASLd~5O?B|o3it1!oL8yy5`OJj{4jmZq25eWubvWKr12`)~8Do4h~ZHvzuYmt8#Pe#<>0_~3Z#r(fQl3yjug?Ixd< zMc?4rlVfcrJLU90d+vam;r+9_V zyvm37XfZm`In=3ojeeNjKS_Knlr#DGeU}U=DXonlIi+Z6`fI%j)UDpdg8nR$tb}^iC=AgUzn3B$9G@n zp=QvJ=%~*B61@DbJls^WH(p=hoap5o?eflsjmaKl5p>o94s?d=TxeD2z4YCKiL!Sq zT3p1un7|rd=?l8%q~@_k<@~pKUs8N|ymp+^I_K0X>@yinYQJJiX1p~xP5Eo-+i&qr zC?E(RY*M8>8i1ruLey{EOX?r^CQ)zm)>i-<|C;jys{0-~d(tii* zgRO)0+@0Xgtt7Gyf4&V#WLS5D6OY_iIH0wifUe#|=J*>B0CNxb&BRb~N7-lGFFc4mnE$U1h|012;WwyuJ4PH!*L7FZq+D{FVcA3%(Tvx~~fzO?B&RsA%$|+{;}l zUBJ!nwM+Y;1+?h`U?bG$P`(`>yHDnS_HgqZ7dJoj;YK*}=qV>{et31&fP==Ci*(M^ ztmkTZ-`aVR@uRB+XIsy=cmIg@$u1fp28-fl9AW>k51#DJfy+b0U1VPML4QYR|9JcZ zHqw40D?=BXy|dZE9do9KITIV|le_kEecYF-AH|W9LvBC({sCqVloO}J;2m2ldpOsw zB!B2awQEO+Gda=lGU6KAyN#p^#A3{1#A`e1?W_%O1VKEqL^Bt1_!;oAFa6f0>Kx$MEwpbvImYd`Ej}3p!8T}N zl%b0IP?2!ixI!`WVz1Tpy=(!ZRV_@j#bMSI6PXqVRDyD{X(xEhLj7n1*SQG3l zQ+bijlPYH!HWRPR&CD;ADcmtfua1&0RM~lQMXYB)JZ$Kl@>CY`dFL+5sA9}bdl`S$ zg075rZI#-~KV{E19=;Er;(PzO_rBkL?@D`r!Fx~G_39q)eZ9@U%X_c1XSAM8dw)9Z z{i(F~@AB@^*(u`qEcDG`kKS%88aaOlnInnN#EY1hKT3oaeiNSaw*2qSS_c2OqJ57X z>b|}8WZA;qCpFK}^A2tf3_KkoE=W0XL23$iZ%jo%$?b~?Qo~`3#w*5EtYmZL% z#(4QFz-beCO}*ULt}==7(@~VQ@=(4LtlQ09B;A^4D>oh@Z(XV0DT8xyk^$`+%aEA| z_1k;bIq_SVztAauM%I5(a;gV;rf<-{Nk^A}CdRGa#Q4gmZNmGB<;A&F`LUFquk!J` zb<0<*uOQ_=3a#`IlkRlod*9x({B!YvQTfDsA`Zg*AogOfe6_y^S}Z0ly=<*pmHuAk z)}DpVK)KD?&IgyV-#5M>c4&M-%SrSIgPWlkzk%4peXBUjGqrby=1s5r{`jei>?5pi z@jcGgyy7{UFZUld?+q<3)pL_gPhvmq<*beJEYov+Wc$17Vr<^RPk-B( zw`OQg$u{NI^T3FDPK6eWFPM5%o}N_?>4kb$Jv{G*KgeIY7oHt+7JkzysJy5J-r(>z zo^++5*S%dpI&*J+guiZN3ikqBZKHvTd{ zweRiDF?&ApMeqBk?f2)s_e<^jZtvZ(??3Y3J1u;N_x^SJzSDcZ#Ga@8p7(w$u{xpU zC%yL@?R%^Deyx4q>b+lT-#2^j7uxr4c<-a^`y=-Kfb+6FYx*_bJwDUDhVzZs@`m^e zW0|gNN+y}P+mmhQ@bnz>yQF-)pB-5Nr{hoXnSG=1sl#{n1@^u*B7$ zRb~q|JhR3_*Vg;LTbo|{lJW_%C*8&#wDxq{Yi?OX>}Y(CT^-l-D+qdZ8YNJ1Y1>Tcz`(JrQ&WLk6o=r3k4rLSlF717nz6Cvxz-JhH1$yZv z_(*F#1>Lo4eU&8k-3zDQ*`PI3DY}ZgVL$rEYBF>KbU-qwtiQ( zgtM?EoXy`kt#1;;YLo9?(m&Bg~eog{r!>#^nB)mfmsSDk`* zlJXAqyn{_BQt}x5AhCtIWhX;7luxkMX^p@)%SY4q?I_=jKU{f+y(7!@MLN$N=be1l zd^yoz{cqMF=)nJ(CG|(zi*c8w$}Gj^ez9GZhn!i{g<4Jzk``aq5ddxX}05Zp`UY)Y`80WYQ+PB z#m?8%dnGsn_kHE8o#ZD%8y?My9nu>0_xs=3P)R-73zwg**6=F(3C@*;P1)i89%NGj zT;d~}N|LX;oVAGTCN5s@2d9cx)Fb>kp)Pbbd^`eOeb{&&JJtAr@+*dB26$)fe6{NO zF?GqN&^w*B@g8HHs&;v0w)9da^9-Do=)3WOR=w2GJ6-F4_5f!%CjyN79OlEeCm%et z?Tqi7ocsHqp4@loYbSTHzgEbaYEE{fV)M|)ts z-~qkjYR!+z4FS`puhB-2_G*b=e}w+`&0{Z!@z6MEPFDA z9r8d{eD|o>p%4A5v)=V*?$0F##1r=|9LSl3&7M6d#RWQwKh?3B;DLQS&E0PHdD>ri zXF~*g=IQ$0HxF9^xIH=r|0>$3GyKBOQ}jV=F^!+%5^}~B-x}xY5HS>0P9?O~JCm4T zv|Ya|;I*=4pi7%G4Wj)<-W#BQ>2ZIp?k?4B_78(?JMc?0bS3{ZcMbYoH|-nzMxlvN zaNz0iqUem~cJu}M-GJU%@8B23IMqOFv(P(x7>^0i&}Ku&fv!gASnE#B9lQ4|`-b)B z&^ZO;bBx_%p4*m(smt0y;PE`?%dX_JGf!Sk`{2#8GoJ&D$Df1P{VRUxECv_z6WW6! z#$6RYq#DcMg-Z{Y!&{@VYvR?5st53MJRCJ^Naiu)r96Hg%4O6mT+6;#z@McH>)+_r z=gHUW)8v8dbITY@-JLBNsrDBU|7ueRyIqU%+ewf4^^Dd|8q;p(OEEgK-izJyXg$ur z)d9?1h0awY;(o7QHPUwD*~_{~Ph>?>zw+TmZT8x`Cat{@@?v8(u~J{jL59Hx1H>Rn zBB!*r2ynJVeb8T4-rxqs09F5Fe+_c>uBhEfDVAp@+_PdY*xI89bVI@Thn1JZd;Ra5Z}K z2V>}`MOvRaPn>Laf>Rvc1MS1(vK$^#L|O9tl&!Ofa`f!QV|)%DADtQTaPn2*>^y@r z6RWZST%1dPmFDH?01q*6rkH3&;8f{BHzwL<=rzV&70}zz9Y2=d?D`fxmzW|puI#wa zyYnFnIe@HR=#I4~zvM4;y}{S8y;yQXICCm3EmqTBZ~PMQ{9qa`dsbC%_v6yMr{S{q zJnT5m6Nm7TZDMc5(8rCGi!B*D&J%}bf!6}~y2|(C_EGxS&An^Hxf`Z=y{FN9)W*7R zFVsE|bS1h;tO~Yr4#336e-XQ-#zy6PIIaZ8{`G-3A1-on^j`L}R(O}+zbXQ6k&RO2 zLij~?N`n~`&C z%VIh4ZpO^qiCu1KB$8&^_H_G=Y6oMS@Quxg_8`Cf?GZhQFQ5MdkG_Wa)KCO>v)Sz~CE+L^yJ*qT4p=`iPxow4z%3z_eX zNe}u8`_8g4uC3u-yc);ZDIHh77KKX6(?*_t0PRhNnh4(7|-p3?3cXEA*X?_X>3IxS@m0I`8b>vxW{b>#C3!+oo^glz(p1pbr zeVA?f5UP`nPj;_cOdmp~50cBC{jZNcbZ8#QKla8e;+x?gmEhBiDY7nE?hs=JpWQ9? ztYE9|024nbkC2YP?v_YN!F$bT?osm3N9mhk=0P9xAcJ|Zm3c6Md9anULo1z(uC3v@ zOs2#;pxkrV3+(t`k>*y(OOSr z;QJqJYCJWYztVNp+2Ku^|5eb0bmy~07w17c(0y4JbB4JRfH!nA{|Xp$)#=sy1?u(F z&U-y~Q$GA6{sruW+FviDZ1yS^C)wYZ?jqe9S#?z*{J$9=_X5&Yhnbg^AB=Bq=US|s`~K(B=#+7i{CE5`3LbBL5Bkjcz({#>3;M+= z#@o;t_M%?KVfNTa>)Z=VTOY!2;ac{!3iAW46UGHwHD0sXduM*8Do#1A6?Zsa3>P?Y z&R3?iuPq+;0yvWIsP!);b`5@u6V4_c4r@jEusX;)`2)YoI_@^+{Wj=TcDikpbAsRE zQI^kF(v}!)iBaDFLpzGNXLUJsw=gyl@X`VuMc~OToS#wKJzG~P@Bc{t0`_1d+^gEc znsvl?-mmw*<43WXw(Gm@bZnr$a^6e%UdaAqDS8a;-QkB1P=1NpL-|3YqyQgFzD=M%a|&qR__X%%UdVUT{_&=M?avLv^IiTV2A=ON%%ce7ptW?*U^BXK zsIC&cI;;hi?!hMLn{c&xb)HVhNZ?T7N z`c1pFSK*bdacbfFAM~AmJ<50QTc^HJUMb&Sx8G9*tgj!Xt_t;^_N(pPrtQI@wztrB zJ72B-)4)8eomQTj_@#A+<{fK4x$x#+pPYE2pE%`NT?_F&TZQl0M10Q{;(Nxq`JX(o z^o322FU{H{U$Uc4WP2^XL-U{;wM%0SFPl~lK2|u9)K6*G#f*2+d4X2(N%m?|bHRz| zEkr-XA7$qfZ6(1=F*G=vKlX>~s-fp%XiEE9^p&$R_E~nKqu3%v($9gAKOT>b zy5}_{yL;iA8b_^>Rxs8E2EOt+mrfRd^OfLy0d2Ysd{4knlsu^h@VG@fAGp=nc=@*R zUO~QM@@-)(8r*q2^qu!ldEc4GA(vjg?+bvx$*V{3;ABMkywCIC!>5Oz<%8cspUSDD zVSHLSykF&&15JDL!s92JYm@Xn#2n*$1N6QH+CIX#yo!tw4~(MAC~Y(ROy$>t^D3S_ zT5SMt4d>5p9p~25yflo`HMU&UWwY$fb6dYt{ECEga*}C`3SF|txEqt_(#CoQuU1K7?*a2zSD+Zc;6Yb zbXj5`4)FZp5aHG7Q+^AH0$SeL@O?_j*O$}{P-euSnM&u=Zt(TWJX-{11 ze&zAxWPm)Ylt*%mJa*izJt1NCGTH0Hp1IM-mxRM3_{j)|?cmVy{d-S*(r$xK>Qntg z_~hN-lkcCW9V75bdkjA5=jrhI88`pw@c9Y8{jK<%r~dzq_`KH3`xo$erSiNNK9`;! zUj{zsrs4D9zktsZA$#ArwXuyI+8^q^%cY~&S9gT7?0qlr_BR^eFmYtEw_* ziG_}de_{O-wbu}8I|JPzu@K%+#~S$->>$)*_N;C}Mvax<1bW01YYy$Xz3pTV@f^Fe zu%+QYe9Inud#6NF`Jcu|2tMJ-kp#N#GTL8A`wNIIYiaSu0ofV+&zi?tmx&H%yLi)j z%(F+H*kj|Dthx5x@k!Rgu&O`E`KX;D=iT zT!V#M?7<~0+*btGz`Wx3B;VHf;qCyg-oiyaIOhY{;_lyGFSzRf(%`L@IlcQZl2)o;`}IZ-{xDnA1(%5orU{=2iIcZ zN(2Wj{~Wk)^6e@=TqAJI0o6C!gX^?#Qv}C6*bUrTzD@MQtp+Y?;Q}69!oqz(a8dT( zfLqSD_xs@<1g^ru{h`gJPe*(7_irC9xC-ohz}*W>o*!;4aLh%uv(JMouy6svF*i2= zw*Z*8`94I~>w)`}h5Mxk7qM`EAb;Xhk<=P~KMmaLez>m#ce90i(SxhBaD9Ti8DCC* zKLT9R5BKlD-DKgO_26O_?w5kQiF2R)UJKk|KU@oNH(0nQJ-8MN_oCo#Kwsqda^Rl# z!#xJvJPX(C!F5`=X9YKp^&-Coz&-7Udjhy}3m5m`5*F@B!Ih&A@_ROLt$w&~12@aU zHF$7Nz8ODr-hLMPB5+~gHu>S&ftzXJKJUR5Sh%?An~Cnh?;rX06+he#;IP4J+!uOq z5ewHKxaq7H`8~$BdOzGVz+GwKKI6evTDZ>(?#f6ikKg~|+hRZ54}rVF!rkD(#Vp)H z!Ck@rC4GB|Z&5#7Cva0N+=o2477O!7fC%0oX$gjzz_E_aICX5et&9p=X=D$og+AO?^fXM17@@z z?pMIEz7pJV53bU}We5(vUGnXAU;=))UjsMV!oA|b#Vp*P$e$P;NlCul3d|q)KEx+J z4cs~l_frq9#ljsI+&cWy`TZDheSA0mFMGn)|0T=Xs6G`#Z^%Oa`259QWIxou|KY8_ zrOVgQ#}yIhU}L4-!&F~uf5lpjZ&C23_bpnZ>mB^-oi$3Tv{CDpk@;jhlszOjQsPeIa4UqbJ3SewT#k4ydse(mYV)*hk#KI-W3&Z8B$ePg{u zS|p`A(tYZ&qqhA$eG;t7sHUxIkDk>g=}4-_e`Yquxv(B|D(TzNKV=%dKl=LI5^yu! zr1e{WXyvo|l|4u5_mRvG2NrkZ^NIa>a!q!qYmV+tb1siRHj3Dd#PB`B`QLr-Oq>oc z=;&cy%h%^I)^d%`n0UjeP*V@QMQ6qa>%->USoa<$-hcER6VtYrxxSUWTgkhHIHmB6 z4s^|F`S{}=Loe)s_eA9vF5hvpp3H9>#~Q}8ojZ*g^Xd7G&SLv5vR!MT9{5g_c14}3 zCMKlzhLnE+{l@NK`n`aDXUccjIe&WoG-q*(bkJL!#g%RyL12>LZFk6-9$I?;;Vt;~ zYfYwhB+-RKOXrvv6ZNBr?ZrN*(YcvBEANXw(~uo%3je>XoeOwX)tUF#x#WUeEm*1A zCL!F#mR1B(I+K%g0%+B0E4}L1Tuu-W+e+J++JYvKAZYBEgS1+3O1SEYc1lwiNpA$O zD8^Qhnd$W#&N)fA7;VAPnH)v){r+q3o$RDIx98(|!r6Q6z1QVk?|r@NUF-u?zK|~R zSd#~;rG~f|*{BB|fj$_cH)g$~w)E@4bvyVXpKrb9%uG*I-#u|(K=^0gpGdghd+$EV zyMyPAJsjkKe3n=h;f3L!XO9itPh<6L`mFP&R-2`Bnzd&w*KDkVCY(AQ8&KtsbH<~; zOnUe2wS&*ISToWKHcmxn@-=Wq zF7eDOs<2^2`&#dt2!5}IPt~vgLQ>=L|NZUbz*6fF8~`0RQxf9iUi{7!?Ku=()Al^t zEQ*Xu2nW11D#6#kMrH4ZtWg=hm91x?M#n13uWQryz;i_%@GMn~zJ9saS-hG9%Uc*j8eOi?hZpcMm(HBJE8t0K zz7?M6j6L}FH4Yv+Y;ALHmF9zgw&Y)b?4l{%AEaOSyS`X4;^f9JmzY&<>gchFS3 zd_GTIY~zUEklcr#&eN~ri)Vc_aRA@NpSk~&=ubBDxZ#N^)=l4Yr^9pnG912mwBhEF z_RP&^;Oi4z*lclO1HD_==)TK^O&7FT18jtU;+b{SVP@w41r2Ilqkz5e&jTNL+0i01 zIWduQ6U$lq4Dp>;COMMPnh5@lO4d`2d2iyge|qN;#XrhVouRxQJkXpO{`vQ``TJi( z|Jmz&w1M+&v=*OwIGFV6OK&G$g}o-q`x>Ec2fpPNKm7FK(TeD%vpATL4}BsyC;xmc zeo%PXqK2@p!#&&Rw_xC(tG?QtB|yZW1ow*T2t(uAKP`T$-vW4WJNYZ|U9~Azy$hIhzsPyx zRc7l7wG{q$>p)*MlN^1s%JJzZMNd;k8kCR>gSpVWaQN_}SHejFzmSjWxH4 z#{_#Kz*YN%(hI>OXx1-_{$&gP8n>jv$+*?5Ta;3_>Ihyjeolru z{AKX3+3NpNWKr{F?1SUmF1Nl0zK6%p+QRom()V~Tj84ru)VYIG?AbC$ccPo_AQ!N7 z!yNQ!K}<1iW2!)>N9TtuK=A#MdB`U;KM#uJoS1(fnN| zJ!1rCPTzHrZCCMlyOx%h==`1~^g($p6eqEbGym#WMUPjYqe+I871nPmWslLT=+p9( zbV1`QuO>#`ou3H}f2j+1UKz=L;e%$Qm3j0_@jS#+t+)}`isoa?xAnK9?^Oa1V+?0TBGap$UQkkm zZkA^5*Ki+YY&t`@%*J;WESFBJ`u)$HSTE-+;W9VYOYhawZ_S_T_0AD0H)&$G12*2e z9Q|L{UfgyWa9Ig&s^Pp|{VwLb-uw9W@b0|CvpgeDPorX#kgv-x0?wTsrsRIcZFy(A z;}6-1j$Gqe z+$;Mdybt`3ga5Hr$OLdE{yB#q#OmDpKRWlSJJx`l1nyhj^5lWT=dS$D;QL=<2TyWo zYCk&Le)Kiu{UZGeKU7u)Ug=(E1?WC3KHfA=c`xibl-5A?OngeTJehfwj?zqjwp{?H zfB&1oeNb)+e{fGmWP?6FmqJLS!6}*_w(kl4t}fHuc3J3 z#}{zaPstn(JbIymw}ycYRk@=Zq>@}mg(Q8>bMm}Q6@S&#;?Wi5%0D3f#kpJhpYMh6z`qkx#+9%#RYcXtT$(u3Z}O}_jid8 z(GIw3!jYr_r{pV@-0^&$8vD~;JEx63=l8hU!T-68U)%msr~Fqchc{jCmEYy;gMC)z z@Y|96K0{sVqw@4rg0lrzaCSYo>h>XPpbyWl{5`MTKaQf^+Sa|Q2cD(+TX~k?Z#?7t zq3UEjfk?THISinuWNuQtPoQTjbqC;a(8Hd!yl3^J)bzw^&ehsVJl-RkH=t@;2C$u7717~wDSoqb;A{Cz{e=)4Y{xpppkrXfEW zYlhvlRUzNk8O6si03GXfKC0BE0)7e_!OU%i_Iq z8n0^o0C<1TcikBOA-Lbc{!>5h$N0{;|NJo<;8q)U+Q#&ivV{XJ;QTq(^%p_IyQBEh zBKf9KzMM4m{{owME&RBFzk2?_qc+9R?AyRt^gZwF<(*YLTgl(I^p4Ae;{En?v{ya= z^r4qtCZ{Ey9=TjoN1VY@MV*O-Xwuk&_^)sPePFNV&Va+}zi6@@UR{80R!3V74tRAtaQO=3H{{6@jBe(dykTeM zpH!PmY0v+S|Jvbc4nO-$|D3Y^>6=dve#`8Bq5=5%ZJi%(w>Z7q^HX$4#?to1{6cTL z&7GWUfQ|A??w{dZ(Xheh6weX8q*?d)zEj6p6Cqa{bnz3_0X%NzceL<%H0%FdLp!_8 z>khy95%;^j`hb_ez6YH8@KsE*XV>p?>-!kLZ|NKAE9tM#;V*x$cYyuX{03?Bd%Q>g z&zg^2ktkxH?a!ACkp;+s{C>DO@eYIVpY@|O{8V#XjSn(|&SS5iTu`#c)qhgr1y4D- zpznEA=Zn;~W|+r+z;3J_P0R-O@Q-W?8U4>s(?9s`H^3)wVUDiT@KyFqKJxNDZ=M|* zFz!Ep%)4-%x)-q?-KO;et2cw=4Xg_&Kh|Q_6DEV>hr#h*j>zdij_y7TogTu6zEeJY zWa%N|(lv(oe=I18=bG8ikXI}X-xAN%K8$o@$olJw!CUBRR;_E3bo+e!1NOALXQk65 zzKgC24eXI`v5Mab@Z$;k#UGhrtVQtltr|0Q>fo^Rt;Syp9UAz28he}dblJ{rmhZtc zwHIh5G$Hu;zZ+T)w#m6l=&K9*!}i7BHTeCBHuq;i%f!)Gy2=D#W2yFkVj!sKi>p@oqjrgH|q-pmm7!=vV2X0=by)4rZIp1y|?H$8*l9Qzn1li zuS@TmLB0XSr8{2_e1F8QcMQba%6}|frmv54YoSA8KCF)}rFki?Yco0dmKL=(u$8lk zJ%6)!i29e|`$#w^*g&!_5%Xc5)elG36S61^*5&W$Xy7jJ=A1q`- zjm7xjyfV#gAwD?o9^EfnF*jTyn=efrh14N=y&O2CfxG%t#&bVh1(Q?c7aF>s?#vK) ztl`_}$IxwniEv-Kj`i6hlQAmglbtRZR}B5fq5o=E#vKgIoujolWR?8hyKC@`Kns=! z)F8vU-p;ddtU-oxrofzvaKTq2`+gdTzYA`?y4t}l!DJgSQH-e{-!*rEx#cCR;k|+N<;lX+NQSV1lVv-!s5dd*mwIJ#t!i$>Tl$9=QtF zZ=z>4$UwEDeeza5n8L)$-gh1escw8$L+2~)&X*kzcoAdXbgq&5t9k1$2c{~I_0Qj6 zc%Y{oHFeI~(#pl~BW&Y~U3!xqDVnqSlZHpyZn^+}zRvRZf&KfbF!h

aVIRCigT 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%0Dog`>$;8gGlzL#{2E)i&z7~kebqPys+cp@o+xw> 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%0DdTHS8Q%W=iTRuJ8;0|P-);Vm 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

OObNNh`E`08g{?VK565*auv`q zqg-9@&QaX;E;`p${yxqrVZY?>@{Mcvj0RrLv?GVB68)vQ&ky0z=hE*-xbH9IJ^NPv zhWHZkKCkRp^R5zKbR;KoPdxMh=SqZ{m-5ZOq`$e)EzeqyN~hrg@&0z||EKi(%iZ_v zi9q{5EZR5j3Y|%=dPY;vhV*wAnD653gTQy?g7b0e!S3>4xy*gf8WG!%M&3V|em}~6 z&;AI&(IPlj@&519??<}tiRtp5`XhUm^ZxGi`%B&T#IM}?BYW=S{etxSE8O?2k&HOR ziP)o4edyquJJa8M(0sF>7>tE+KJV{HzaQhiC+D|nSmeri;38u1;np<`Drvr|^-PB5 zp<_3Ok>8wz?&XV~ncfH7o0|{Ki)meRE_Lr1WKOKQ?L1gGaAOa7&B>t;?iq^S_w!MF zXgDTYeg(P>Kk9Df5o#XomMd&FF(2kF{qmczUyPn&UNHv$gTFq>8rhbLlg0U!-+MnY z#QG~!pG0^;LQ9db!thzC(ULdp$lTkV+H= zQmvx{-I-T3n-HD|f~0c6OF95Z|E=bL$ea`BPp$214( zK%VD~t%~I%&&#QMLWq2qCMPy-Yry2=hmh%kb-~y|&$n?Bf9j+!;IqJ|vWT(kWbceW zEn8^hHZiCdg3!0|QGGTuN36o;=(rbKP4OsVj_}QH`KWIEEq=0ljc=q`uq(ImPpn^E z{^CcY3pguj!KF@Y^-tEEI5_!RXI4M^lQY|1>pZjIZKqehI>B#!9|7d;Ib!iP*YTDR z@fpSTz-<~Hf1afWi|2DOu#6i3mcjBYv)exDYkLZ9%a`>Wc`TE-c6m3a`5bgt%Kb^s zyO{(&KA`;58o8y?8l{iyVPi+JtirQ{xe*DdeH5w!+0 zr@06jF+}Z@I;VH3ow2qYYb{i+D1BdU+U2_~drUnKn065@>9i6-yfBLum z?Mff!GzV$-jiBkTPxs_BFXK7!*iji-p3{6E&*D6jY?fS>e0Jr0PV@7;`%itJ)`L0C z|H`v}=b4{RezLG{Q`HCXsX;gLt1ldaUmcp?jGue1&gDR+h!>0x6@D;w{TMJhE_7U$(D9yZ~WsKdC6nIpx>dYn9nn$d4 z0D~zxF zuzs3&^9#@#bD1B#kMY&G8ru`q@{|AK(H1Xr75FTKm_+|C`h9*m(XfBkLbR)+=uG z9oj7N;zsg!xpjhb+J1=m(E)s?3yI}HH^lnAJZX5Rg7*C}|7`j@PMiNX^!KRX@#xR^ zt5&&sDi1nTyuaWASC^b*AC~#dGrJ5=D&DV{v+VwVQ0&FX@!f*Kr~A5~P35sFrmQ^> z{5rDv$_*!meBqfhr|KrXRPc3|2d!T)4?HafE}K*9r?chEF%O9Y#-&@ z_`iD=dMrfWx3Rv|->%im?AO;USQlQ4>@qa(<`HbVt8Y`ar*G@$IHwQGwwb{hkno`H z_i=w6ZPkC)Ic@Bo1?UcJ-46KWke45!b==}zjq&`fL(E ze(d;t5jUhmt46R-o2K(s8cd)A2g_a zKY#T$HsmHfFKqs~^cH2!xihP(Q%P{uM1I8<;8tCB{nmH+E?qbJ^u%0bNSY>`=I2xo z<2#Ujr*-biT{?t(d@meq^Kg)OzcTW}&`Ul4z@#~dU^?jWnq^X#JEY0s89cJf7 zX-@eG;E{hrHsK4{z>C0%baw~)ahy+gpS%10>uz%3Q_S1WYny#&Ai7)&T~@ogTXvb~ zGduUd5nYNVp%smr_B)nsX7_aOgbrm>3SV)~=hD4&1il=21V6vVhB31;O!F_TEoM!8 zG+#0~5H|U^ZcH)^PbrRSVu(h6IfIOk^!CfNXZ3b=8|nC`H#T8thBlAaK{JP0^CbPG zc>W}8X~i27r?ccQa2xppUG3#v61dk4Vv|)c-%Q?V=+fBO7M6}Xg#+1ct{yvH2QK-p z5PA1w{9^U!!bi|k)@Em}IW28#5@)t~gqkaQvE_}LCw~7ec$a#tt+|@KCt~5tycqay z#Vl7t!&)2kpm5}^4U(_K*s=6O?Wq0)I>f`bse2oB`}lLW)&Ht%v9B(*k4`XajLaT1 ztT7TERd(A)D$5t(L)6(t2Y(+<&qL;U>x&ZLR<@kMFS}YhL;959CFESCZTB?8TqMyE=O@@eAr4 z8c4-Q+!@;%CZ_@TERGK`Cnz-beAvxjc@#X)W{v{B6B` zN+;hX;2Z6+AYE`hHo*WgeD^@}m`lK=UxtGlGv3+b5joFz&MNfNyUq^!S?&3G z=ZpBllD9`vYw7>_^m*s)?A3ujkPl!MF_~=J@&k*oK?jgElGB~kZ}KPUyX1}X68qr2 zXaD%_9M1X1|Maf>O~V`iO>BEG-gsJg@%YU0f7-6~U`Xe20*7GD&g1+x_%o(B)mn7bzk&Pr$eS>2fA&0hFZSWx@}r+W>cF?+ zx^1<{mqq+vMT}N<=W;JDTZ^7t1iogk#P95#120;6ob`CW?XRDd1KGNXm<)UlA4Zec z%8m~7JOWK+PyK>>**$K~p3}Ua`y%|%j>F#UYtC-k zuN=D83Fge!O07GCM&!%X{Grv%9fn4e?dLX$ZYLsVW+BI8oe!gR4z0i?SQ5b1 z2rUjJKlxSild++8+q^I3cRWUJ%p_um%xzQS;GsjldFy#{`VCFKNZSL+CD~*TQg3>m z3Jm?`sUB>ar)qxMO?*uAQ|WQ_B|h}dSX&$N6Wga<{BQbC3>|I;vh8H+tuGJKhGgPjsts>1 z0{Eq$-dcIKZ}j`A|8wW5f80RzlP@p5_<8ELbU*2R()|SJ-j*3-%RF(h;T3bf@c_JX z8D)eUf1YUj7}<_jG%q9v*Tiwy6DMhM%_FI3DzpFaVzWLqv;R?RA-Pq^>D!2Va#p~c z9M0Oii~Nb)y1RN;Bj;biHhRUmG`bgmo8*P$si7O}>J{848Gr4IKOi z!CZms?ZnJ>dU>SV$s^tCI7@TAJW|Emv<6JJi@n~?w>#M%UVZB$4zLbh+)I3*i*{Hm zXynyu+Lyn6HSq%NVYt_e7jXYTp6m2Xn{Va4pIiIKNu!r_~ za#7zYF0j{=i`<)d1iufMc075=eT!+wlZPrNeCW3c`O^L(d#Y`I=t*Of8QicZ_N;X$ zIs%)|JcRui-nj9^q0r_tCy9+NHu%#zxWeXI_{uHg-plXc#y9MK-rk;^vOl3g|M+X% zyU4+`a_uk#pN%s#q zIgPL6=QVEM$NmLlBd>1*KgE>MJVkKb!uaQMmV#v2$$ie!1HgGQ=`39*c)@8KIIX3Q zJaGC7IIV|97n^d9wN{|ktX-^96O zC+~LGHM%yh{6Th4DsO%IXmmXMmn1i%eG31;pSv$uzQze1UBejz5hu5Co|AL*Db{?> z2S<@W?~BT-*ZlAl?X;15p>xhOPHv3Wt+#D7Hr~NtxqaU{#_qx7wd?8JZCKt4<^=oGJmAG_H~M3?QMHNRUv0YMomr0?_j1pE zN8YZ@J^M$-&E|hC{$Grj?ZbBU;l0Oeqkp^>{F&or+gkr;jMsrN?>$~s{_!duc)XO8 zZQK9+K;yOj;S;5co6jtmeB{i*Zg;#&$$4Io$;s|FUgO`#c&!^?yiSMQ{e=sbkuMSI zzrV2YXzH7v0M{d|W70t2aS2h0U$FYN%2edyW+pYjU!*<56r#RS~ z74Cke`N)cHzVE|l-ifbJbF90OFZw1zUHWbN5;BzM)%#sTmN2dhxj+UKmTt5_^ zA9h_N_A&M@E#n-x`oIUw`d@RVEc2K*Ys3%QxBLUZG!#8Bq}k$mBzW#-PNQ>7-^BiW z1NeH7yT5_|bRO()?qvVd`<+w+b*I-%BDdtPP(Hi*5^{ZxW<6j0QJ%wJ$}OuUHr#nX zIX?73vSUBFD!SL4PVd9;QM?h`n=)Ho_$F8`)}^i7el@^J2q@VB&9w7 zo7krw_{=x5=ezIK`bK+}!7$_Fba8ZP^bqT0+v(@i3rrr0;jd0$)4GK|_Fvo~Ump8M zK1~1QW6-nB>>+9UmBi0t`UYM)@t>-1-S<|O>->XL9z6&TL+3hz?fA?Grt}VBt_IOdLIZP=_|-Nx$~**Fow&nE zbwXz*E*k!aJ(ey%56)FbCp4xwXyOj}B*Tqbn^SP(t}|up4xj0s+xF%Lz4pKP19Z6>Rx*= zclz)qoX8gGGr=?U>d2WcFFkuWZrx)W>jo6pQ_K73};r1mr6Yn}%GZ#GB>t_y{(loXDnwQmV?Vd=njK3ZD|J424eP)qEA`D4 z^tr3XX>sjIcm2GTlV7zkX3I%<*e@q51g}p{`eE*>X=oAL^3TXFHLwHUDP-deWaH*# zrM)@8P>75#Mt%sUB(gGztn5QpCXtm%WM!WxEA{^7Yv5Dl(wdP@qC z<*_bdZvpAD1|QFB`~`>bH5^>o_~eEx8nNF9&XDiBOV0CM3V%c1zN+$@!p;qn<-^Gf zF2t7h>p0o*dH9$D<1@CB)mIm~V~~=qVArx)xj9y20KPiV0efXP&~Fo;MLz3%jxOLd zJ{#cZ⋙ex^yq>2+=!wa#!CIxZhtJI0=56If>` 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∈uMB4dx5zn6VO%6W6vnR;?&jZdL=IK6{OgugVzP{a8 z-o4CvuE5G_dCMwjT1Z~t!sF}Lt+z%t)mvwnv(PL*#ZOkzEYFLp}_ zzE~T5Y(dAx=r5UXO`j&;+Voxjv^(yT7w!w*5J8`NU^);j{KpR(abPd;B*1h{xf7uMA4&T)7dyx-y9_ z43{7$k0S>~qpd^ToQ<3N!hH`H_^hT~Rzc5J;^amAoy1?omE+a;kNAqb*OGPou5}Go z7CfF8Uj5^f&5xKmVp%KUXH!RPF@GcYfvSa6#Co<9`7LFfHh6uT6A@zK~M;tlokSy|DbzEG0ymLSDgzTuV4sfOOni1N?kiB-^v7m`v z-;4DZx>{`)tL9jmoawA~I<6y5-#Nf|4|v}D^Y8w7*z(e6_uha1YuoayFP<)bsiAUC zPR^RwiY)3h!D|;dpYaWcaWnBa^(F?wTRM*~2X8v>;Aai64c*^~pEMhM z&899D>mYQ0p3(i{9fK32&+{DJ-^X`<4~(Yf6mt@8G>&kiTzBby;YU1c>we*9SolI0 zKgeV{F8cI*ASvqs#wf*3UXILWFE5>G$Mf7e%{sf16aM99tp^l47#99HpIi7B#m?+= z{_4!~56x#{i@>4p)*n-+XD5W1?|ZrAgJGeQTS z9~tVtm$e1(%=ZIt?x#a-8$TK9*t(GVR-XyAZiEi^at_^RpWo=#xdsosf>SW7X3lV( z-C)kY@qi1T z_*DG`)Yr7sJ_KKc{x!e3@~54%8&ATQW)0!bNuJ$+#^&tCaQ@c#?6Vu)=nBR26=(6b zzp6YCT3A^b`ZTnDpxg?ruk?k2qb=zEY3Tl$(AygWi7PL$;0IsmQ#|iR=4;5K*WR?w zi(N>6HSp3tYTYe3bjRx}^9!0T#Ls(!9~dK_8d&v>3MNG~I}P_&oaI3*gDs4{sYh4eue>V9}MrXJKIyPa}?VJ_27(dt<62 zbsz;-1>mYMe0v65-6~wo=%Z&Gddim&O}poSEAVsxoV|oRgz-V$4cKpg`?=P}WJUQ|Mefx{6#UJdul%q?*&*Z{B zUS0@(dZrbG4$dkJ{RvxQ&f~Bq?067dpjTq`7V>N*TJnY&yo#@Ggs;A<^APCKwkGg} zO-k|*JfOARg)ntkqJC2_DGY*@XoFnR7_ypermgFGL}y_YvuGWP>B3h28q zM9@5uD&Kk7iu_PFHdylAws9^sl^2A1w$8&&Tp7|nXDjezl5cm8np+RNabTMCFS5-% zBk$U07Vd`!1otND-`s$n(z<_wffc?;U-(ypRd5R4ez3~60h?gddd3U)0c?j0 z^JZXv0w2-nm}Gi8DR|}}yzBq3>Vi3+;qA4puAxo-2VTkod(XtkC}1zR>GD7mo<{pKx$J58crSoF#?+ zCY@crU~FY*;wb!`GYdj(=M{!Jn2&f~aWtJDhbOkVuE3`u6$M`}MMp=p2$OY6fzcSPgj8!8n+W2TA8z|lB?oog8sC`br)~6?_ zJ@;PcEPg9v-aV|3M9Y2To(_eUs)?IU%Re3K9gvn6d2!;AEculj4=5MPpLF!pdzImN_!{p=hSOmkP~V(}4BrKQ<=4Dlo_}VXM^+u4 z-@&u@&+~4cMk>!&!t=IFWQ8v?pKYIGmgo6Q&+|(>&p+mQKGpO5LeKLu^V!Z{onSuO zcDR(!1KHtUJ=ot47h#7LJJx?*d%S{L;F;`k8F?c^vB%0EdB65}u9s%$Ch4ha(ahoV zzotD_t)jn{j#^8u$WU}t7km7tqocCD_;7SoFLf|nd?fvnGu8wkjq5)ymng=^L z6hA{cDuVxL$9GcoK!tL$ob|@vn9sINEcZOW)O@yOd7Alb%koF~Jdi9$zt&%tM*)W| z$@c$^Jnymn>wNsPlOsnb{p;5C_`wenV{OK!;}b_4t%TOM^63;SaC6bSP3)H(Jf0Q9 z*H0+_M7ey%9uw;zcUtScD_QT|5B@J=|2EafD#WK55&Fw*_Ij@jAM1YBdl%B~lfLYh z=Q*n^KWia*=LZ*9i5~p-1FUD>vVE2vmZf!{{H?<9_+Age$Em&-zWSW2fRpt)zSjnPFOnw` zZ<1sFGI6XYtl=&7d|vQQujU*4Ech@v(~UJpPv$N({*LMncH<}RVjb+R<1eP2Sr-%E z8F(GfI;MI=NNZkq9Unr^W?sYRO(wJU&_ z92+P8^K0|j*3GYZp8t~1{d91Vg`9ji+z?FD!9~bTKY!}~=1>3sC4agw13mlaPuuo1 zMBdWLk!L3DX%t=H=1$M!oK`q5r@t>UZ8$Njf>1YcO~tm@2V2xyj~&MLwqt`knuud# zmt(hMkLfSn&$fN9T=ailsC%K6817SyXAU}SKKg$_sN<=*p)TThx&!51V&I*Q{#VYk z>f$b-z1FG=e5}{8m(hCVsjx4=ZxKGrhW6Z!y~K_x9;Nl*1K9Mp(2KtqF{0@yZ0Gl} zollM?U!r<==+Hu9aLlFN=j&NZ+*$eeQFO`VJYUnx{q`~X;C>eyt$hp^_KvMu-x61- zL;nK5Y?gAA`@sxc%277(qTiyxs=X7%oD0}HQGB;)L_yO{#K>aMo~aP(ets zRWq`wf>GTHATU(=yT8u{W*j)96h9O&%KC{=Sp{#o99c zemmuTwWC|&E738_pegiyFS*0ldvk}GUzGX9mNDOz%=c#IJB|4wn{Mv#dC2S(_B1bI zPjf1`UjXf|g7yocare}@&|zNaEpRp&+FuCmFXnls9O1d%9N`S(YRtJ#j_^KcuN>iY z9cu3#uzsDDANmtKubkj~_EtKfZ&`l6;S-nsE1|#HyS8J$4(+v9kRLAb(jIwNZt(d$ z)4ppuJ`66PcNgutD*}mshi0j{0CsNhPTk4kzR}6g~`($ z=y&wHo2T2w8pYKg?mqvgn2Wnt^EPv-b@Ot;hxVy@n2Y<4_{^oleBL`%j3v`t%vuE< znz~jgK)!5T!q?`E_YH3we|m$~)-mY+`41UAX1*&PsyN#Uo<-?PIp^NEhWE2{S1x?2 zzd6odzw_6ZiGQ8E+Na4YP0y?SG~*ckRc-U{+CYE*s-rr)Tz-=LCHYNriB~A!Czi}% zb@P0<_r|hzD2KJCksMZN+tvuL;y-j$bFZqC=cAmTd}0^#$Wt&_(( zjXc&__zd`5Ysq8nLH_H>W6ffXet^#-sE7R|d92@CapTNa$YJf^-x)l6g*?`u^X$9i zv7%#49;^FYa`5;}?oK3+wdY>zxk7T8M*0eyK1IIQr;cw}x4{}kF4IVp%X9$y`!>4T z_8F9is=Iv(!|og>Fvreo;Wcc|+vsA=>rZYj6Yu?rdBo|X*vcc9Zj_0oB%n|H-VAxH z^kec^=_{G*MV}_W$@E>H#BCnq4w%P!8vXqDT~0p(<*}YdUvamuQ{}OqMxU=F`y3#T z^)&i=-tFsDd90_==Qg)bPp)0RJXZDBKaX`oN*-$(%~SGNMSJpCU7lOZm_yEE#itL! z|LJllxpQU5n|~+!T8ut0`9kEf_K?fE;)S&jUq~+No9qQOeptDzg*|!vjbDu)Q-e(- z*5gNZ{M`3=r{!;o;ESoBg{3E(_i~qudpB;>$!S$?Yh(_#8rYQ6dLOcEa$3QYa#}mk z6?s-}OWyJO)^(vjxZ|iPhL4iWYprqeT9Kf;;84#*o8y z+LPz$TJm(ZB1S)?Y(km@>@?A`hYhyCU zmGcfxj%%6>By(KTXs}P?X2@~fPL69XIj-B?9M=W-e4+>WO@rYto&RgWpPT3U7`7o7 zyj%f)Uvd1Nb@!0-sBQ|I6`K%j`8wipB?D4vG*`W|2$WB&1>hmp7pQtZS6eQ5Ab<3|CG-)()p|W z+HCXL&U4K-pL4>0B6ld0AIu!e6@%MEj%|uBQ3N0OE6Wc$`L5=C4*tFOe2!l^6V!X( zWpVxn97gb~qou;3YU*Z(v;K0tnf&fctF z7&G7ds_prnA4q)R6!Vp9`Nt?^5-dOI(LOM`v-~vd#)_${O8M!u_U)sTD9Li@hUfJRiB7S>y~C zBR}dZIX-jt;@6CyWj(_=EzDG9r~*1y1EcP29>+O{Z0?L+Z0WAzqVV%2`vDX)eC5$p{OmLM>ARm+@a+dbk#peF^T-=xPLlTk zb+2t$?0aZc6GAxpgJ9s?+5s1atu_ok4~~RC7awagjJJXDd=__K8T_S<*kXcG0{gNugXkMmOC z`-0$O-KjG(bGHXVy6;r?oVEg68!*OzP50}W+++NX>snkGXAcPDr!v6!rVC@84dY@D zjDp|Br2YTD7Cz5@*@bmrd|r?N)}i9lzHj5b)B9icof^Iq>pXVgH0k|*;rrvyP7U9$ z{}%y_8~VqYvbom!))#} zluw|%?h(k(8OYN}=Z?ODaNbW`xUU#chUzoG{RdZuw%RiE0{8W~y7vu_47u`S!~dZq z{H5%xzn}BF;eDsD{|?Lp$#Xh9UVr5UbalGFvhD5T%@+Ph6#HJnxtbXEy^6o`+oI=e zdRTiAswX6y;k8|^z4+v5!t;Ldv*Z-`nS2U(Ld14Yj{IPfUaRx1{Y$tbwu<{=AF-@w z^u6xd>ckSiwZE!%O0c&#C!}Yq{bk(ICclq++Tq#QM0^TtP6Kv7{|nq@iixVSMh0Vz zIibiz)-hASC1($+zHnY}D|gGaqLbUme~@kZuln9*^;yffMdZEbb6&>A?Hrp|!ME&H z1vz*6U3U5KTJm5s@t?6beg07NOl*9%$t~Eignfv+xCbl?o?J!FPYL%r`Bb;Y^zY_o z*uIjngClJ}>GzCf{NjbVR0-3e^OG~)M{oIj^;(K6!rKMle$zRLF;{JQ$2%;>{DeWJC6#hpWsa{ed+ZKDMi`vsiEV(u~M zWvyCr^j&1O(l1}N;x|!fHjep6@cW|BNOc^4j!%_Ic556uyZ*}|XMb;>sn?dezt>w$ z&9*nK^4>T2SDzC?ujnqaopt!hifwAGtbM*lo~_|t!8NtHy6m4KtfCG;RYOIv`uLkKWseGQ$8#WYkCn4-?}0DB zzPH#4E?a*6(d$_U7qJe8#}?^qO>S@RGf`yP_7k(hpUZ`pkYn-hZmk8Fuj@B!T`Ro8 zCiCh7%&E9LS>tFwZ|;GhydiL!S6 zyT?y7Te;j7%GyA@rWk&Se0ON&(n<4-@!Z@a>i+J~OwR-86v>jQJ&C@l249~eAEIQW z6{9?)p z!-Fpj<1V~XANP+!bNFb=KXEs;@S8S1{U!cJeD;vwZQ)-Ui<-i+g()P2_ni=ia_Rn{2BpG(OMTc{hBw z?IZJEUyL3pfrn?Uy8dXbzvwsD^L=kIz6EiuT5OSW{CKv1Z=k|FtK`{ci@OKORV?}W zu;54C-y`<#yBWL0e)jg>2G(Zuvjv?IAR?d=&jciV7o5ubx|e&0~?tBPPDzsKQ~7&`qBUjcn|XS zGh|J=DLIE{hk+Z#W$e3@ZCcnq+2dC3x;*ys@^bQ;_Q8{rS1doOSZNJ8A+^B7Jtx8L zlfBPGkW1}tE<+}bUWYGCpN@QH-yH}&3Qu{*j6+{{{aM7_uv@@su|*EC@Cr;Ne0KX% zETx07dZF#`Kld)0yL{QqqC0Kcc3Qp`)s^aGzFpKiSj&0(c~*W?7jwVC%5AxV-?&@5 zMelbIhn#KYnzeqMbzCcXGE?H^aI z+UEE@%kX;)FXH#ub@vq$bo4j!Hs>q7&Dx)jAhXJOw_&$yO15vx43gn?|F))Dhwrc5* zywEW2F5C;R$scj?^pu0A=XhrOBX<3>GS2fIu1>3ew%$q@J*c>4y`}q2_gf8F!KyLn z+eYE;408u&F}mpMHxXY1k0tnX)P4!!3()psL6aw}J0v5+f?MII)<%EQr(1pp_IW*d z!oo9lFb@6~kKhhuY`*@rHEM4_cF5YPn07JzP3&Zh^rr4x;`wy_eg^qC7o2B>9z&;T z4J6ubBaX6tGkzv};BS(1P=!2q&XG*09F_Vg0RJC(&xPNG zyNtax=35!@ow?$KkP7=Bhbw z9cAWY&al;4)+L>*?R&_#Gp`>4pT1AxUUllD7(5799l{ms9@Rg&5FM=fc0!N)pjR*Z z#G==k_Ix)ihh99NuHPRKo=U9{`?iTr=oEPr+XizKZDc6HE0lMhEw; zw&|lWyMVb9+K3*LStkr;L8MK8^1xz6d1pl3C0g* zfDs$v!nk<=7>A?#7Wme@R*?PZp9_|kJ)1xN&e!JUTVKos^R*tB1*?1KDr>6^Rh!SZ zb%g3gEiDMPF}Ch4z4Y6?#!pszLz6TbJnqczI%se=G-%`ZO3jb^vqgg#G-&%qAT$a8 zuEyEl7w<$_Cqx!VW^$l~FYL}!b!)C;uI=I-N(7USJc_--rxd3kQ; zDR{2c;km8Q?t{Rm@8j`@s87tD>fGI)M?J6;z0E%S)wX)}2*w6Nd$A$g;lWg=SIW6e-4%WC}JrGDA@%gCF^ z?x_Sm>C8ZOb!gs=C!1e{x6S(3)|Wd{^yQ<@8rY*R&;N37^Jw~a`Yldgv;hB-8T;_l;`^w$6uMqI$j$8ca`m?%s$Q$oaJ+)kT zY$AIWxy7?X+bv^vcPz*5E(7KcWBX-S*k49At3EqA7%z}5FCwx8$hv=Yev&Sk^`I?fNg-n-MfrNfDH>0Srf+uX6%47HQ|wJrnCb;uxoL;KCPEp+$# zUgWNss(-r7)?;nQn|Gh7x{a)#v{pp!w0=^2BRbLKf8s-YJUHP4#4whTi;R3p_7)?1 zFJPl$b=a?!=p4x_K2{$1Jrh}UpGzj)-!3@M7gF2ed(a7;;{P;_?cCCi~rTNy*&oPE+_Yt?IN+D_8F<)!e7r zefZE_ukgOUkK;~q&Cly&wv|E;{BErydwX+35nzo1Ygr0^4GX!xb!p1;+>oVp5effr7xZ{?v`o)B4+C`m^Bgsr2~&=-e=O^-n9O1r9Y#u*k9z1aPB$f z{?j5`ckNo^#4tRyjCIDwtH1DhQ}kC9TO5}iM~~TSO0BIFlhb}*PWV5*#CikW@z~he z@}ae+*l|6&?K*VZW72K#kK!C{z@Qq}(ox?`nIrMrB4~>o#p=W(_Btj{Iw@t%=IA8P zyrhrUrOoM;^!b>4g1-I1sBDq^eB^l#F+Rm)BET0x23RLOgx^UFbWCvU=o8KDz%|U# z8?yJ;OLj`_a~Q|(M{f8$&Ts1l(Uf(|4y$%*(3YXJy+r6Bc>hltyuV3t`@s0RiLcBw5Y89747S09+KkM*zzrSVg@%jh% zT3`N}?nuqK-ydqkZ*z5xe4OmD)K>;qrRY=tSn-fz?RE`PW7GH8Ha!O2Bb(SyX8k{h z`h;EdGnrff?l{`nLVTe98S9qa_!9L;tXmrRs~7=wNn2KOpT$a_GyZ0OXpL21#&`YI z9LE1TE^*M7HXpRFtufq>jyuP0N>vhn7{EE7nn+{XMlUUc~mcMDdmEA(j^i_0F z%W~T0oVa_P>I-HAdz|&Z>nn62r{e8a$y>FR@OkY4>%HDT9&c_%rrMCTO&0kn>_chK zAkO;vdg5q`E4L4`cD{gLI)|8U2l1{>VoZC9t>ycOL9iavTDD@8b*Kb56^o3|!B1Vj z#sIy7Ey=Pz_NAhn}C_~JEh8?b+@+Vs2SVcQZg_h> zvOFJICbswL_6`2fPsqdD=-iKO;x)+fBTdLMags-oU)g{0ncM&6!>N}C-*=T-i8}b1 znwZd0d7JrRLo@kSj8ClC_*M(CL+W2Xq4BNw&G=SMn|m3{_*R^+xRZA*#jw~Pi-Es5 z_-jF)<1~n_6O@kijFe!=*XgKCR~wY>#h-e zcH@%DZX=^_b41d-KQSi->QsYpwDu?3HMj+_#0lhC?&$+eYvUeDK)C%n7@9 zseF_ZjQIlgNT2=VSuerE_2{++_`DwbxP=(&dC(r6wqH7}?o4beF>asqosn7jPTApK zcOJLdl|Rf7_tFcj@C7$)kcktfR_;zdD1sEx3z5)6}d9<$jC*Bh*C0VRlc26?6@%n|L%^T$6e#fDSOOF-siZ|bK7QFPO zzf>ppH0?g@90K+6GJPDP5BGgy+$sESkv}_*JwWk=))!CjKAw^jDPB=O&(e?hMEQYY z5%qUykG=n~V!Zl1E1AQg8m%TSyplEhGVokS%nrWj;-7K^V$0BvD~a*0#@9f0+p(i2 z7G4veEj*5&(uNNf#;>XQsCDQU>;blafZDUz(ym$5o~>|d&*GQ3wPzPm+tt*Z#x|I| za{6({G53YxhiJTZd>9M8uX?pLe#_LJEdeK*zjEA(LBA>(^se61I)-yVCa)n@;nba- zl~#8axJ}*J3}d!4=0B59QhPRaXVJmxBhLF-^r^oZV-x!?zrbg`TVpeB1-{n`YNN@| z`01+aj#iMvx{ot}@6uP5AD@HV2*phU*l*S(hho$NQQvNV%5Ts(8bkI3U*XbDU^I1N zJusS_e(*26DA#chwO$pQ(^-m6-j4#`*P*w0_d_;qT%4xAi?EY#0j;5r=49%`(hvJc zEfv1Jo(Gs;C%&iYt0b*2hX-6ZR^X$lwre(Vd)15W!Usy$iKS0dCl-I$?JFDmU~)A* za}!UgzrRyoQ&Rg7d?t>_{Qgn=EZ+)#7zq#A@?+O^mfSYdx9~`Oh&ZcVCpKP<4q=U( z%X4r0vQ?!=C#{-rG|pNydD})T2*(nhM2O}((wvp1btA# zezfMG8i`4|s%}xWjjMQt&5y#n;bYNwSs-!6G1Y4I_sj#o-oB+L%IH)2*4zb4y}ZeM zpTgLS*Pd)Hn`(t7O`#?s^LOv`&P6BLv9zpkw)t$=G4gqypX6QdoZscUc=0HIC$AcR zv~1O+qxfqjXDCjYQV)l{+6v;%DnS>^7%Y@)p7%y&Soz-**kp-zg@_)kE)jN;mcJ{#BCTor2P zO#Ob3FW~Aklh4jMq;!8k@UNiePpN@_SdZeFlN{XYzM*~Sbm4k3zYhnFNmH<06N#AI{S>K(h^<7TSP4J9t`DmAC#DS3H_(@ zN3;~VKNH?S{@X^v8_0|Hbz&3o_fFWgJ~h@Zc;p7B?=hzDoSqOmMljg@U)R5X=@t4^ z|3$p7vCKHq8J=-0#%VHi_V{VU>p0#o1;6&W6t{Mz z>l@j%7Z!>(X=7>r(kBbp!%JZ@{AKWI8RH864IcQFpXSogi)WXH?8p6& z(NO10{#rEL#XN?B_fHRqcQ=PI74L^=Z_|Z4S>JQaT`m(1nQGCmK)pPl4lxbig^e-@4jZbD5r4`)+4d)u$3AQ5Zu8aOn$Nb(f5!8Cq4{j{ z$(81_%_sBtJP@C}tDIP8edOAXF9L_lAM?=9-t|!{_FSz<#2#e3U z7oNKFi?j|Y<=JNF=-vz8!g^HnP|b&BNnatiX9YfR*{WqnZ?Ljk(5L%lH(St!Q+ReE z`shaJT{aDyKGhep{g8=AYp8Lz4&HR{RG-566Z#C!U`!JmGH0LcIJD7UMLHwjcc=OX zX(w1z+sF&cK4juWur0pe;GKQLtXY|JYUYUGr{qA zay}*$`9l9Gn4P(0g5w@DC;NWx@AIAu|6s6p07ozW`~&2?=|0cXf}6Fk7w&rv+}8m& zbGiq(v6B-@eW5>|0`7nIz}*Pku0PmdKHKxT!}I)0eC{VZ@R8PxQ_^JzT78WEU4QFP zqrHCozxPqwcUb>_`9A7r??}^w&@#QAnmM0qa@G6Jhv^)k)=}~+y6~rpkt6xjWqfW$ zKepi?x1%#V(3#4i)0siNljYNzNd9h~kyF(@i=jIdbCIs9R=gA+G>Q&Ud`G`2RvzV9 z9A8+vMr*LO@{d^mZKJPx&d`KdbD7*~^uoL7A+4vktXhm7bM%4kQ%)a;zRZ4w#y~$P z7fEaKGVEHMzL&BdZ$lSUI6i9x*>(F~%zTwAYjh2LN9ki6bEskt<1`1}lU;})zqY<} z&h4?L+KSvh!aqBH=MQf(pJlWB;cq2BXNA9MKHK*0U-{fm9zFHNu1Ke&Q(tU@BbSm* z{pZ@ZOz~0o-r^?Km~rsv-cdZ*{ltB1W!r8~W}R5ZIT6;0eRm79pVftq?gq#G?iOa8 zOm_>Hu|`l`urk(;HPA%s-pSA-X(Q2tQ~0j6e!JWOHoRbN6 zjxIY&E@X-y0RR8UgEJRj`S5jmevj_;P^}2XWsi*6W%2RDYAQ?7MnH;97OKw9c&|e{>(Xp0a9%!L_-Q16*Io_lx*_F1VgD z!wOAi9j|k+HgCJ#}tEf?Xl}eB>fWM5}EYgdHVqVS)Fs|?Ff7d@13{#tnJFEYgG)72`BQ&JCT3+ z8LjYa44jvM6W8Z8HL9SGe1=x|+&gY(sU2gMzm)NJbc9=@iVdSheriySH{<&4I*5#^ zT=Gu*N_*ToqkG)3jjsdWCVd^o^ZE?SsC&B%eI=jacjOAVK7+ac*yAgD{W8}-SOxt= z$A2+2wds4C^X!&Pv~^-L_U1e2{QO7AdkW-IcksVc^Bm-JyhR?S z;@zXOs3+i@Vb{KkduH^{4&S)_uf-mC*LU3Knyk;j`I1E!5Gx+WzcM#^mC+kiW^1iVP ztQ%~6JL?@M9{(%mDSecl&$1R7_2O%{r9DYsP;ubDv>w-f=6>yGJ;K`ITK3i#kGwqb zx6ryc*9z%-?Z|A$4%xXQ!s&C2)j5E?%}b+?-N)sL9UbmILSH}I=_eikE5LEue#VZ~ zjZ=fQxd9s)E*#V3IFI%6oB zEOO`{BR=F8N8P@>6LXugxJzETwx+>4^f)m=<*W7f z=7*x>j_E8>4Eq$n7X4LWCEy=I`#KL$6mGehoF;6JxnoN9hq>CmNl|z<`^SoP%Uq>qr3ezzj60>M++C|1H}hidtg!HMQz;guDq{E+t1X#y4L9b zxs<$#eCwGka$+I-;60Ds_>`!6Nvg797WDr!zXz8^TSc@{t3V1pk5jOTQI(P3z^$d1sAz zhr6cHBg&(5`+0<19QC8|l%JB)4><>OJ^koi=?=rAS>%h)2s~Gs-|$+E<-cLK69X1K zy?PwEJ@y8%7}d+{Zyd2Hx@*-~$NckeLtC0kc*^3X^0aMyojCg$Fk zA1q$k!Wm(c7X-YV-!I?vtaXcpuF>3;YgWQ%o`3PDKfU|4P2?19p`GZoy1LYy3zuxV zc~2(4g+3o;Z@v}X-3Gmj&HnU-!3jE7dM*3L><6P~b~t;qCXZHUs}z$Pp}K?csJ<&t zOt~7Z;5eIml!V7B@KR-6N^YX$!Nse64om#^oP4O{(&sy>MKwG zS8Z=I`@+veBrCi>oiX(u{qCsRJ!U_cmY1?tC9Ll`h@!j)iHr?$x%O9;pFKTVH82^^F(xDN^ zoz`_a^C4Z-Tc69nJlVrTZQ$imYt6$({%bD_ZnYX8j-QzuGJ1hI#?K^gc8_pV|FmT1 zo8(*=xkb)~GyjI;z0U|=lA#DW589)+n>FWSR@#6ylZI zcd8Rl=k_*>&%i&&rvl{_yRBP_(fKYOzmoxvi=8}ctvl~>a5&y?X&ov%M1F+LgV}a2 z!VV|*XZr25y?}N(h3Fh$P2n40^WxBj?*qVR@;>-o`qss_{AO=^7v5V>0q@^sg4dCm zba)qd;XMVPyR!bhFWR!6=aF@b|6KjM79Yy%Z$4lq+$zQ6!be{v4;$L2Pw0`vZAFtJ#oG+sX&?(cQ z!;Zxhs}qIbLOznd*G}~J^BcZE|BAD#Z~f=acZKmU`_3=7jcItTEf+Z;wiY_FF$klUu#+&Cl1Fp0C$>)B%eICyz z)|_lMJciDeZZa_p=qS73p8c|UD6J;TIoN-Ej9CuOV#)_UhkUjS^D8s+>sxQd&Lx+> z(F#R-eUj~m#Jhj(c^&#cL!FlsOLlzbTxUM7G7pzNT?YQX`Xf2#^{3A*ng@KRJkUFp z--Z2<4N9j|9r;|!eXdBOlb(;#^E5i?xz1+G-}o_ea&5iI!NAstUZz$9^fK$zq|B$~ zx;ymx< z}{cKpzsQ%!0&s`nYp^Un#gJ2 zU%$^s`Fx_e%bYW3&YW$|%v|&QCHK7+jEC9-lA9B3LpvY1WZ$jdKk>-F#peU+cTB8+ z9$?&_g$`yBbC6#jgYl$2YZ3k)$A}&0BJcPH=IVUkfAo&?hT9j?`NRWp9`Nk0=tpGl zHNLseV{i6&&UJqL26XByS_gql&btA7^YJ}89lMatT8~&RG^_dJKVaX3n%6xOoTY7+ z=mhC^Gy3J8KfX6i&I42j=BvZwL9fbUtOl`bRi#7z$@##Ev&`PL6RdJ$lEJz_}hcseRhN*tx&#d7DsSy@zuLYcySD z$b->!1xG}EE9krcVhYS5&K=i$%Ug(V-dJLN zT#2)MPk>)Hf?taf!#z20#Ev(ySDNsKaQ21cXq18?dPycZB&@RIPp z3cSN$$6mwyj^<<(ZxjAz;15IoUcY2F_(vbI<3}F+7c2Zp;OCg|NX%R2(Yy%jd$4OH z!?d3qa{R3()sH5$Lwl~W=NGnvSoxU+KK+fRTt70Zo#Uw=u)~n0_x?otDwar}-u)Na zUyuGYBlm^A(U}Fx_kI3(4d%ABx9ECj<4ovd7#rCyUBmn9gP@1z>=Zxnyt55?*XwHw z#tXFVT2MP?$Nt2F*UP};GnvQBL0fjOGw+%P+RAD^zl`Euia{w)pudrpT@U}!4Bmj= zvuah$z7o8LFVQsWIwyK*gfGxMdwV7Lc5NYTuhIB-tMPHsc95dY2io`y$}l-kLva#~ z&DWquS;z|6r)zOdaWvV6qxwF(>=VO&h_CXurE>lTLA!S+Ds zD3*Q=w(uO}y2AL*5c^NeV{Y5=`DG$=6}M>qWzSdbzq|jAiJtaPE7m^7lz2ooU1BDo zOVjc#&|-S8+(E5~n{{YQvY?}Mx49%nPO%+zt15f_tqGzAH*ejCB z+G@xK#&{9tmGq6G#jwp;%v))_kL?X~>kqIA%aH5kZ|6X!Wv)cu1}nRDUz}aeg0J-L zqns?1Q~#f_o;rL-2s+K*GE(;VBhnYnc}r~kI@$_?mUiTJu}AM)yTP@~Y8}7hIuEWl zJ-7zpi(d86_W{{2Gkv?Pg-7jp)r0dH4^CPyz}f%F_wJsyXROvSJ0^PY{Lq8P-OryD z!!=le`S_Rba`Wsq4=!3y>W9pcop}x8L+iC?zz^)EpWCgjc{@U+ll$k+d0y(p$#zTY zVE(*?>{h*!JBoqBu9%JV?Y&_Y{P*c^!5YyA!>WFD^*`s`a&4KlgT8H-eVgp?Ncf6T z_&@rVc>(LauS3^9I4A#Gc-LUx7}fv$63Fb2?7Lov{eB&FUcVOd`wr|me{Z06$7|P@ z?`VS^r<}~|Z$nPsQQzx=Our5tZ^xc{_Km9k;IHJY5c!RBAmfx@LX7vTEbQ1kCD)|a z6xV$auE_g7-91Ckh^3^jq&EbLZRTnftx_8guu_ zBx`A+vugh2mq8=T*N-Is{u8!wxxdevJri~fV?k%V`e|&T3pBPgu1{lc6~!!B#4BYO z8M$k6-mIVH&HdQJ4cklW z1aBOE?Un6;v#%uo5Dq+c<+;A{pS_B94nTPxd=$P<`d<6=Yp=ZCD!Uba_^O^T-SzbCEBQ{yImolhILhBU zeRU<;fY15-^ZYhGKFQMt>{gSCS?PO+s*Ro2QLy!7uUu`M;%S3oPYs(rzgGP1fQo(g z&&B^Id*Jl=xalR|s@H#>&*XFj-@J4389(9tS}xy2JmeS&c8GFJ?IaH>KXbT}2Md1Z zD)gD`k(L2zSM2Ko$XXd>jeJAtPLD&TiXt*wvL!oXB}~1h4lcPOSran{yVhy^1NNAKR2%y=Mu11b`zdg0cIYZ z$)J0z_0x3>vDwYF){e@qj=A%2Zs8Wp^^wTg;p^(cef2wk0-jq(Q(gZ%Ep&~)$wJq( z-}T0Q>AK>bYFt-z#qOteoAK>p*%NNP_f^==*M4AaV||BC3_?~(7qlMi`lpsvy=Ow= z^=oMVj@mQv9lox(^$ITiw_c{oZ*y6F>m^+JZr#CU<*naPq19pjR# zOI%~f_N`g1FJg~_`}?xmR(Zc0`!eveZ)G0`zjVF5_-gDi2;j^n)d`NO;B}n0;AiPRv{%K)6Jd+Xkb6N)`SC>L zUXV-KPHW_^;cv#3b%j2<2=E62p3cgMUdVT3N#5U2e|FgeEmc5DX!JFK!;!YWH8@H}pnWoF?2 zOuK9u?w7`_vTnTVirHlgQFf<*1Gw7pKL)%Rw3|Zx)J&_ab2|Rxc@O@lI<2xk{7+@@ zANBfB_MzN_cNyT!;6AezG)1goo1)vSVeP#g*04}2WetncPfxnj9@dsg*~1p4@Y5Vh z+QXJb?zV;{Gl1xh#_eIp5voK7UaZ*$h_-0P9=3#j=BI$K zC624(L#UjNW~^ZyJ@`q6KtUh6g2sV4y)6we`dQf>v4^dQ_Mu7#uI5MRCysilP#Z+88P?A*7jZpjy$}1A;=JU}Z0wOi|-oLLfX8L6vA6 zl~>Q0gP&P5?P0A{B^g6k+tX?Mgz&bNZqvQ(coD|4PD0QV+KL}~kxYOa@dPMM^-{g) zX7Hf>6x0h7^@+4^SkKBfyojNL;SdmX(N7N%xiGX1{pf86&1;$oHVlHc0)2M^eOuTI zCN2ij@}5vEZkI1hfSU5QzEILCk9J3UtnzRs)oqo>Y4pnRleEiMN2w0jAGOPuq!N90 z`3gc<9uM_It@7?z8rSJeH0djkCn9)~W^55aS>>rjg5E}>xbBF7+2yf#3{PU2XbR7_ z#lu#4A|58FO)=0A31vdK4u?S7(onh!ZE-7*kBz?aj&8_Gd7N8MrlMPb6Hn}N$U@pK zUyw+2+vVt7*e-8DD}W^-DPJ3lqeTcq8huQq@Y|7!qA!aX8)T*#PkJ(|__xg}Pj>gB z&Z*H<0@o?rLQ5v;){; z@eW|?3lUYz5@9^=iW1MeV{y3#hg(CLE~`9)-l0d4NXjl>2yPGuAc5s;sfO2As)+V!)Y>_F&v0qIf=q#|vsagK9?5ZoDIo znjM)?J4TR{s65Hn&>i4UhPxpxi!l~xG1dXO?My&Z@eBJ{9%h-u=%Z#hLvq_4B8hE} zW$>gYltzo0SbQ5x9eR}PO=A?gqtr@Y7Yr0A+yu<25cM>jfodu_kCRH4Lv=wXenDqP zFYyODyBYYmWdsWN!@aOX<%#YH!G=3Yu0kn1$LOO@AL9o-XfZ_!U*5;Ry=l^s6ls5X zAOEJK-RNB;nnXXVBDr!}vyA!BY(cGPYm{qJxL1pa<*zQEit~fr_-HW@$u_$b6 z1<=izZC5Nnj{&ecO18Ly`k%Hcpm2$lRRMvDZuRNAlvIHL^rE3?Jd@gnq9>WzM(vT9 zR;&)iJMj)xFq9Q=BQR?fq;(tZiZ!IUb_Gc(?iOwC4RtdSQNXQDhdM#o3aQc>0{cL2 zEDfVm(E(BGuqt|~3JQ?afsVx@P`ipg>Yr879qZwmJ(&d{9#&z&RxVbBxoE>3EHvyx zMY=1LN}_-)1CDIQ@gO3-FoxcSg=fuOkr+s7?t_ zn*(|n-b6hD&v*dnZgm0#gXP@`*cmjmB8E=4b;qc6hzoIkes`=B;|J#ir(Xddx+Vbv zVVOZLsVMbGigYpt$)JYd&OuTXdRGDMgA1!5^_z>Lm(;LgN;|A7Ivwhafd%OMvSzCy z-T@;^gG1U}5$+{rtVo8rKozJR0Jc&QC3A*??RrILn3T5y7J@{Bo`HiK$zuB|HWE&Z zCJ6(EF-{H>W5h+2h8W$9W(a3TECmH-0RwmkIFIpzq$lt$7KbEL$5@2JA#@GxB{Bq_ zN%2s1g}XvPO_mFzNoGtHo8=)DebFRZ0DEA+Dk3SkN=OL2;S4Ee;$1QXEvG6_+ltP` z@F?_d0o*1DZEG{Qgsuaej2iWJTP)s51d{$&q(K--K`0gK!CkDAI+jj$lkoM%V+phe zi6AjecSobt%?MclkQ<7SB9MdtS$bjH8YY8UbZRSnd{6mmp{4o9&8L5!2|FSQwPS@*{r0LlzB4 zIgAe(2w1U-&Al;F`$#m>n^ZA-)5|q-RT+)58LmucQb1%^A`awoVU(WRm5bzkS2fqS zD_3@Oz=+tDYvX+>1d3F@SHs0St1H3g4j9ME&Ao{X_*fZBp9FVpSGI6zp}oi&80yOI zL}C-jsRW;4Wl#@c0oO;lyw|Q=h?ocZR~g-k;RGHSrrvJUgJqAR!&a{pSl zNNHEDhPciLACqEUE7>rjok%ncRua6FBy+uK8gJ5;?5{;``d^YVsN`tSktb*^k7s)f zel9b7vCx+c`MLeTW+_|0B78`ya=R)aPtgqK9(LsdQBLZ2Y)kZ+H6njjWlwK9vjB40 z9EyX5TmrZCbQWe>NreQ)W9wV#wpRSv3>^&&>{2|Gy!fyaf$F`j5nB)3_W zq_(jh@H^4go#>mc8R3=l2Fyf`kEs=DhtyN06 zqRNdhZ}8uh8xitQ|GGo%Q3T(RPmqN&7GFx!5!lUiFJiw+aI+h;YVbFdCi$h&;Bi6N z%JK!*MtD2mzM|<}o0R?OmNM8Q<#tu>Ql%A_=dG&DsxpvJaH`y{%AKm*rOH53>g`nJ z_RVr1NJ%+em945ARHc=c_uEyORb?O}&x5KQRAp-9tc5C0{hGTpelE%_rnj?^;WW-3EZLYY1)se2>cEt7Ji!M zBGJh7hvhxVH{qSG{Df77=_M36Wmj=WV9BbWiI~sFt*R+xizZFBtC&ZKq^o)`ndpL7 ztdeLZWmUz}9IjebNO)1U0N4SW?DC0>> z8k15az^ayql1LhYuvU!_UYc`5Rk#pvTyVfh#B-X1E-2GsRUuokhEiSB7G*tf0TU07 zSyhzqBKKWIlNz}|O)9C3mhNtk5NgNrqkBB_EzY$2ypgYv?u?|x|W&*NPsMDDMGthcCkxC#O zL@#V2G(B2DmtW$EZj%%Q255^($2+QXb% zKK!tAvV52Wb3c6YEChSuK4r7un$+Xr(ii7L9{tex${^hZ*IJ{VfX z7hI`+gwmum@TfkB2@MfwCOgBn%!fYmq{#LW@5o?+yJE@Hwr{O^%e+FDVB&~txPp!I z!CN4mj9jsga=auJ=s64yTT)*a?%9<3*i1rv0E?jy2^PL$EWI%4AdUKqWE7c5ALYwo zmH^QXIb#FpONI$A!f9{~$SAetL!2ij)JN8p*DieIEueF#N6%VlB|tEf=kU=8ETb$v z_m`xEc;6vOSRa;%Xbu5dC?mawCL6vqC1xRTxXNroJ{mc2A2L?aWG6{%903onUHEto zM3&x{PDaBq%C-{^k_#x)?1M$-aRXJ9L0clQTQfXCA{pNjr3|c(%(L{IGypxO)-Wwv zNZCvu<*r3GD4)i0fUhUCtv!kk3oU8BB93i_!$;2%A<<|?{24O^x;OEHN zgD*X8nBT!JV^lL;(G*|NNH0ks_vdSgbn_VbeBorTI1HA9HrO$=u`R8h<=#S%ke7k0 z@j+J+T~TY~LqnNx7pR9v0m)0~3TcNJJid>t2T3tK3wI&%jo3a&gR*+Gc15dLz{iOX z(*0DQOsZjrl8Nr_#>ERkDM*3cA?qFLKTPcw` zLPA3=V=20iKnv4;#FRc{W5f~Bm1NCXt`O`)UZ#Kvjqw=zMx)Pms2V9M3<7MLT|Ivb z0x-gDR})?_Xw^&(UE6X=maJS>G1$jcQ@F@=t!i>N5*t;ce-Tl<>NIpr`cX|jWgWau z)T-`{>xo8nZ#oK7+KvuXL*LgV)^x?vb~P+1Izf57YBA;HPpT=fW!GX=lSAc})g@5| z4DfAO2Z4R5MhGsD7RX7YV8bxNc#7bYg|QlXAq`vAm~Oyt;LfU6j-?wI;FXjc0SyR- zRwULf05V#%AtPs3uR#ozNQJPlQ$1zWinW% z#3iqvaF|IQN@ZB%s$=PvIKXHKd0|GHAb%mD3wi;sBx6iLG9nZ>t!lblO!*sd2Pzw( zoRqrcbb+D_(*DMY;@i(Ssz98!h!p zk_<#b5Jh>rpjj9T>QG24FCl|N7e0hTy`5bd*jK9>iEdEHts#9zhOFyUC<6sdcn%Dl z#A|0{%qSWni{t@QlSK&C)g@#b$jBvdt`Qg#@Zt=nd;lCxwYr4Qt_IUXNnTcF4C$p< zV*smVs!SEsC4s3+Y|;@?UdEJ>-$dL`>O>PAVgL;mtr)GNrE7?C4=fMa?`j?vcJ3Ge za1oAI1{NNq4X&fQr!(%Q6Ly(H1DR($9Zfio@sRFijD9t&grMqR?aP&ZStBuzbFHPX=7UUa~& zUaW&)7+rK;e1zEFmCOgWeL3!^3R5tvZ>05NyP7XaJk=%7*5zr-nh;2zg86Q`kqv(v z#Z6fI0a!~<4=r<&9@8rMvP3$)&GOU48w*o`(@w|r`Z=@3qS=1wWdu1c+b`XuYs;U; zMvQQj0$a-;g?1#POV=!4X8Xylh*`7!Yvbf1*s-Wk^s70XsutW=Fv{r4|)f)Fsne3+{&yT3D$(B1>|AbM!!JT$@5zUjv@_+s*u|y*eeaiOF zmyiS2j`*->E8G$k!uB_ZFgKMfl3Yt7$xjclEKBa*4{zht!F3C)2XagNTxXXsMzrQZ zthQy0WEtMyLb!Xtk~Fmo9~}!tVl)=y{}2HnqvV&V5Lmjx@^7J8BlwSX4S$;KhQtnj zWZRU(Lc1((Y+TXb4LtFI8^ZMwbF}Osn2CoQ*{k_w{fE33c*4(FO9)m6l>RAU;ezmR zgPsQY$#W_9=|?`Xw;Rb*I19h{E_O10YQJ#m}i|@iKnS0b$V|YU-y= zJ(#86?<;^tLqC|Jbwod7`4)?O}gOhLQS+2r9`YmS{_1mO??j zU)FkHXjmSg44n%xi9-EETdWguLcCJBDs&S(glxlAA>(3!4^en%+=0)OQ3CmtBZHpC zK@#=Gfu)I`pBxFS4z2Zo9#n|))-XR$d}LdKpC*Esx5LK*meAnr0!m?n?A_!^&b`0C-6IQ?OWu zwj}y&r)a{@0U@d&Ddv|ookirs{8Lz%d9#(emhs}@#8{Bd%3cF@Cw`jjq`#C$lRuMf zP-N3EMTlVIh2SAeLv|SY+L`HEP8;0(v}G^TwJh4fbYlD$VtI&kHkw%%%XGn}5&wJI z5kXKo#?SV@jUprH0wl@0@ow^c>kpf*?0gNGmT58|Rt*gCVcHti5c<{- zmKD(D8i3OZ%CT)LSD+eA6edmPxW9&twRk|hIR%13(+RC4w_06p^h2Ejkpr^<}m%nS3`m3 zLPsH>JR)Ui~t4KH5`WM{yAUQo6S;x?;>rv{k#^`?kBWF9RN{`DnTA5gi!GT2DHA|XX zL&#T0kn;5FD$74E_cHtk5Ob<`OWYu8FltL9SbPEDt3<*AxY)QT-t z$(&kkbJ^R~s)cAaW>#(cw#C??9F34&uxharF$(63b*;q+BvRz9$cWZL$H)!wR$Hr< zO`S6Fpi?a+v|&PG*An}|JJQ>DCp=6j{t0H#QKWzh53!EdOVM8*qR^o7;4Xt3x zoLQo;mR8b8LU>uOR!o=duR{OCKSO?zjHDhh9L*z%gYiwI_iVmuC4yEtomyHTrNtGF zc!{6U6a}^rNvl?;**Vfh>qw@fnPy7;*NTec&xaVkt1IN#l!Y>Q*Y-G!yV+8&y@lU-#A zNru_0i}9-^Bg{Dxnn~BD6$}hh5?DAEls=<9nr|fHETqIwva-@E(1|SxJnCeg(c5O; zQAN?KUAv^&-FJ*84PPTieM-kFB-A_C-5lZ>+b@0y9fK){7KCAwB6jUsMCXW!VK`}QA?i_RSobuTGSVX$G*V$$ zQgugOJa^Xu7fO2=r6wefUaLFIGcomsraJZxDg;_&rB*B+MmpIIsS=ZyYaIp-8b_h? zYEX$43f!?Zlf68U9@(tfh>?j{brDXluj&oOGe|AhX~V>Z#;U^%f)^U6Q6y;Bt<@=U zjvVX6rlHQtWF}o+O@hzC2&diaFmA5+QB|fX4ecbX!*+^RT5l!$6t(Ic=21jq)nPF( z0_~D*!FC-*n9i+L2g(sGWt1_kL&5`Cmx-awbpa@mg2>U#fhSSrO1z-IItc>~+jVR} zmSWb`O>uG^I{+2zr@;*}FZyj>Lzw#m72;0(U(D&6I@k%U_lQ|c+wxYN0d=2p+hl%a zp|(z2-4;&IyKkurDqL4)xNeH_7mX}2xm(JsfeihYdS=%FqZn-Ry>^{8%xq$bIg~Te zDU>>R7Gi9St+5MM8sbA0i0?RYV%7112B@Bx^|~n>NHvlW;CQ6I#k7;+aALbF)~uub zt3no1cBl+%z&cL$-Krz21Mjb5kUDLoVW=^m%2lS-I~L&9nCxz#hA@-DEkumXHsmVo zev81({Z>-%QOW`#9Ii`hKwe&eTv3YZB(*=L4k5l9mexu-ah8MayH%(C!+a576?~F( z)+KiXNZrwVB8Lq@aT`oa^od#AN**f-HZFC~A4mo-l zw^p?v0P#*YcP3WK(kED_qT4QnOq*~EOAifNDekf^o={7(oV^D(Ks#Qe4>;F>;ZCM8 z0x={e;l1mKfo)nUF`&v3N*1n8WhO^fK)cV%`hj%%uO-=eY;7%Lr&QxX!+f%BZXw`6o!_-USx2`gn1 zAV^!6%(PAvsJw^XKaJYx> zP&@My@WZio0=YVO2XmqLQng&!;1dt`c|3eez@F&J{9$=c-pxq*}!^n z-aR~0J)&>eA?y}_?qFpoci)o0258-0P@&iNgKB*A{Zh~S0d)_2+KDNC$vF_cW&nEi z`&0%|lg4Msc5sW}wL{^B)q2WN(BwzCl-zqh?MC=ieVB7Z(YgE11jXjLdrla;?}F4@09vEdT3XTt35e1 zm!pTw8RW&OPeyyQRnK{hHbh0_fYNxse#Uf_R-ie9t3IEUt4H@8le;)>)$6T3t7x}p z#0PmqqzPY+%nEI^s&7Zs*b{9dhY34w)razpc0J|%IaR@%J*;|X(No>0DWys5;d@^_ z&x?puM107t*XME_hz=uGy`CRH1u&1Y>(Mpd7PX*r4H%%uzsVzCKF@u?BmaM_5`ok3 zRv`a=xY7^(KKpt8`wKkwr{8lwDAgVP%X;oFuaE~C|8_+$fxU+}|mDdZ;cUhmFqvyly(RgYjpIZ0lJB5P0c6*VWZ z>YaIq%fK)4fHDf=|-M=)oW+M&Wz-3{RY>pL-%*4;)m5RW&L!w zyRjOai3e@?gT-kOi>@MJY{Y4BHUp^;Q`Mj;hdA^GSqLD9C|0BaIS_t@Fqac34GCWV zaO^zjU_0IG7-~Fl8|F0CK!=en*E>Yj13*j;5U)Wgf#}_xP!lS^SEkSdFf_1DfgGe|uklTA9_;MnMm_+G}w3<%Rkdo`yM zTo1@fY|H=zsoVA9b9p~}gRIHmi7c+$4bBWuO-33VODqwY-QZ3Of!odlnhUeAH0W@R zLJC@WZjcrcxWRmqIcdN#P+lC?v!@1a`PBnZsvQ8tmXfH{IY=ZWQ%GyN-4BqmiN(=d zITVK#S!O0`@UpEl4I!k;3&`;-fanJj_`7PzRKfK?o$ShiAYR6>x@xGiWVsrhvS+8E zN4W(Uw*`=PtAWna$yOrr7!W#@gg^z^ikZW~_8&ERB=e122k(=>1Iky?;v3jOOTHvy zG|Wye3S6hVbs?Rc$|3CxbABrKKplr`*n-&=ZIns$5GqjGIUN__O*rO6JFD>k3?q-w zOxqM_t7roZPA3Lc<||0TY!44Rp{L4j3~%;4v4*RpZ;PHJ zTf@ctK|Li>PU$Dm^xP92WYR_w+W9^lhK4P$V`+v%3i6(SLPYtP)=)Gjc5^uNLR$(B z=g<}=19{Vf;ciR8E=Hb^iNo$2dBSQ&2{Gjy&=wtDXl#Q-VipC1h9_E&DX+Q^TQP=9 zs7DDv%r}vUKx)#^w7qc zMoz=vLqSYo?g`R5!)fY{Nz?+IPfGJw9)O2TjY|6B^AFUPG8{w~G8e8ViH;7Ms=1!1 zwJd9R2jU<0ucX(A)vV#MG$yL4`B;C(G6~ist>HLO8jD~LDJ_3n#LG($_R;n-~kb0cX7N}5{3Ar(lai0(@34jz4&1~k)F z0GuWPQ)n5?8ZL*p*)Y(krd@6I(E0?d5wt)n?_%ufr6-_SbCH!8W5GJi(>5iUjzq!5 z(!nE^a6Ol9U7o_Hqe$k}lV#91_}}3=IBA6N^8uIK6I7-r)^PAZ)}>k{$7+udjYF?8 zp{?A!e&o17;8wLbT8XCEDC9j7GpQa)s#QN?Wfh5(@MJ_T_)rQA^h(f~6KfFa;t_>P zdCG`K8=O93Bym1V0Y)idsp66mj{7G(B!u<|ocZgdf!v4`Dy4)X=p#tN;B09`c2&5p zaIt0!E{%S2z*(NLMx@CRG{cHe=9-0t=<@hnB0{-owUX}};rQ$p72^QCmIUfPFHz}MmQUBaKt}NIdK3gS40k))9(bRB6B?jvPO#OVCBIE`+N%+Jp7Mim7s@qp70?a13>nd70a$aLlK$)_MFZwXp9=$hK);~6## z@oI$=z*9Ys183O0XK;Qab4G`!0*kPY&uw^|HfT{#=&NRn;Gl>W{R}iCwIwvK$F3wV zExH~YT#Ca9YovS?V@Znkhos~TKn@>ot>bJ@?pbHJ8|ibJz2%=MiO$UZuYLK|bKio~&|ld?QuXh0XD%dJ0U@_XYAfSfA4$qg zmKJtM*1XTKa|iUvmj>8saK;jP6qZBCG@XJj(d22QcI#~O#rckM>#ufAqr|}A5FYQd z6HQkS#hPd{F)H7jut~D;knBW69flP%sUC8xOFa~yJf&qTjE0!rbR!qAH$swDG^~EdRH_F!mFD*F z25D>>4gowDQ92QVwILa=l$$OheN$5@MuoTJh7+Is-n=Mu^Zk{!3))D$44Nf@YJVcMYei#k$ z3L3_81w6Z)leb5?RE>6K@Kgy5p)Hg726mKJv07mz3m$?FmL*!%Mot-Cu~D{1j+zq2 z4zb>3BlH7eBt04p<%-22oM1X;>#YfR*lqS`(JmMs+9M0Y&6|owiz>)|{kf9^=tm+| zUNAf4tq-a$Z>i0tmz<~Cx3M~mc60=^>o~wFsLKO5+B-L9SDVA2oTb!t@InHx&qRy_ z>MBKH`f1pp=A&Jjl5>6Z)T!>o(>V<7yq8*YXZ?&>b8^)s>>W*MeaGKGHF$V|7u%N{ z%*x5QX~?-5Jf%daQ(0nX?^D&9Q!5EO9#%U`Mt6pF3>oSsXF{$8J=T2aao2VCm~{lX zWotBT;>UU6HC=Gz5tS;jMmx*n?Cz8@j*cOr#$QpOIejl?S#da{Tx*?qt+8=+D532P zlU;R1bM?68g@t03tMZ4OD^Hox3s zcU(pMo`Vd4CWkmd4r7cvdjl%y_zDC)hopxR!Fo#{khoOP5%pZ{ye)sZ$6YuIKzKZz z7g2={&@^OB?x2WkFS3i0WGpALcr3yk$X~G#OG!;pzP8Sm6vNskBN0GbmA&J=PifR@z^Q1f+M+Jw^hixoG2K*&=_Xsw8{WRk1FdqqWj zkGYy2jdO;}6-v=;!x{%a?kE&b_OV%?w)z8Gj?3vhwaQ_`$1iE;IJPAtjfazdfC0Bm z_TB~K+TxAOho;(*RVU#!%y%3Pmp8)-4=46~X}?Xl-H1Kt>HUWJNYSuDwMD%m4kR~5 z<6HK#_9o8d^M{5JsSbN@y++oYz*pC42OUCv8Kb>rj5O~!7E;XH8;s!bQ7?0P4upBi z>5M(3S0O~pPR|;bb9}5{shl>HDwiCjww$rbH@bK=+Y$Tx0omIDal2-oE$3c|cCmuX zbPfoyrf5{89F+RrSk6W=d)K2|bTA-);v}!~AIfJyWKhzLy>SY0cr(7E9eboQ>uMfL9|+8xz?ql`>=o2JAoUKS?)TrVAGksIn9B)SJwd1IY>Nfu|uoFXr0%`EbA z&TRKfFkUl(n1*yDZJgJ8kJNYyH5^Xxj~uccFPRX%D8FcH7!yqWxrlvTVv;v194ort z3UYUZxvxVKe}96KSDd$^QHxsp=E<0cDE(G7>6m+EZNK26O1H~GDFM_M-23?hE$K-j zxtuTzoNnd6mT$=;smPW1bx!%yh0^u~*oGn^ z0Ue&@JVqPq5KmnJPtJAs692{An5dYH#~pJhQBk2!@l;Ec%%?aNH$g^COn@XBQ&R)f zQOpPMYftbR9gRd1D;ul{%mF=WhCJ(pywP)pN9}OK08PM@GuK1I5KVA8DU>h9`5nw- zXx%S?qoX~*z+5D<;qsABR#z;Ab7oH#BGoXUQlT5;UZ@I2XBME9Yc_3xP0?*CS8!wi zXP|nBPv}NKD*$fIgBfs%x!H*YoSyD3q-GrJok7UJIJ9D=!DV^A#Ili>7?Kof!(#q%Dav;-bjtq@xE16zQGP8K62~cM{|lC)6rRy5d4% zEfX6K5P=j1Lw~hvlHge{4ISWUhj+^WyP&0Xt~r%Qy&!br1()GFQ0B$-9saxsW~#f7 z8!S}QY7ah=raRm{GJtO)DBVBMJJ!;$l61KNV-IvOR*_~}nK~%fs7VGTzyi91inf{? zPvE0%F_^KXwiWB_K{5*NPO{`UT~_YeL!TZj3RLneqN`rM+`1v8AH|fwVV@b_YL{Wc zdJp3>rOpEE5fK<@eD*mY;4N zTwHT<19xz~Ah_9|K`jF zvnLf5LXG5fuBq<|{e=V|9PTNcd#0ZSts8iRQO$2XuS4wkFm8(|;}%T~RTEagSd$c$ z25#0&#dcTzXty}E>(P86E=?{j9QjpQuaPi~;aq;Em}T1FYt3ZN<$02uR7){(Gk zf_O{~+*f{}uv><@GE$RsqE}%4SVL7-Oqi8V0H}eBHb_4B%1SI1TrQ?97j0`l<02qW zRGf@3%na@81OZdL9LOgi7gb4J&DbFaVTw?jZ)SF5c0hy2d>UA*hG9yMw|QM-LfzZF zm|k?oU;?C56ocn9p(tKXkhtr5>CI=F6K3YqK(gRguzcQ_#-fNmy69!i%`@jpe7G^- zJ*0rY`Sj)uGAb95NRRj)QfxGY`8l?^Dig`B34|7R{m4jj5oS!yk)fFEczlIg3jz$3 zjoK7VEJadp4gO5Ra-8XLcgqt%O?3>1-+sPJidjvmkVB8>JiK~|? za62-9)0ct#EdadO&$T_{2yBjRFAzQIrREVE!u%Q@fjTs2VfTb7hvtT-P-i`B+MxVU z;o;=mlBbIi1wjz1dq~$(g!HOGuu$E@^P-F?tUd&194_W{RZkHmfR~lvTvxrDfu;t$ zPh`T{= zZ8|sRX(3NP@|jBMAha+&pQJnh!(0UrGxmV1o^H&@HR2j(L_@6jlO-7um4Iw9b|7#o zPKSwAnsz6=HVj_@VR@a=7;!wN~#?S#($k#;HmD$s^6o=R(@@ zfQ!@4vh_d}eH7qzV2~-T!Bb!*6?i;${>4FV{%>*&)X7j8h)@jS2o) z#lQXq#oK@Q!Z~ph{PtrM!&euFKku?BvrX{dI!NFLJ}VA?XWKvKn&9_eEAWGlH7G)) z@Q#0HWO394f4geGKU%!~#GMcR$OIpmtLQ(jxcqJY`lt7r;0G1|1`a9S{+LT2US)#s zUMTGcrWS{v^V3-iP4H)H`iFpj@rN%TWrBZJwLcIj-u~#79T%D4KTz=2kBX1qIh!i$ zOz;(pr2qX_7jOUWi@q?y1V2{651dha{2n;)_rEm3pWmYRZxx3hNIqz^A6pMr^3zzH z{=eUN-Fv3?R|OUPwBqpJX&Ju31pn8tqJMgE_$&YMKeb`B(lKuy;E#CjHzCL9?6MUbtKiTJs!!Ld2 z+2tnq(I>0%vy1otA79*gy$SyBs{aGe7jJ*w@~bDC;P*OK_5X$9@MXU}aRCCy;FmXkc&7>ehDl2Phk#Et z4m-~Te}J+d){l$#|Ao01Jz|2tPSM{q1pJ27gWoj4-=_ON1pF^{O&(@~e@yXza0vJ@ zkG1{61Yf>b_-8#;y#GfIt1^z?c4fb{x^*--u^*}zt1qi|6Io}f#UKr^SYfz`xR&s`U5u? zZ@<3nv2s)U(-pimvv~UtU0?Z_3I0UI|6o~h`1yan`e!EiQJ%(Es4YS1mQs->dRZ)~)9Db$IsK-~BU9@H2N`LxqFW&x- z>M}=~+V71Bhx&)mzg=ri`OpMEvr}>Sq~h&2Ja-?!3-h-ZDES$@qd5Gy*;j2g!OvMD z?FV)Puc)*3>AQLz;0wlorJ{eJyg2`#y5ODFruIi2r}#HS|Npfx_?!v;)HZ=19D@I2 ze2=%8;Q#a`)x-70`FBSuRbhg^Sha6`zc_sS`CEQqg5R#>$NEX}_+#JAHyi!$h?7+R zzgV3AyY8y^lBxZfA%PE86o;R*_f=1s;J>T--!ugM`;S-`Gr_m0@wW~u-u?+wPHr*5 z-=*Y#VE^L$PuH$~(gZ(ggY}xqRTHZwg0u1YW%-cy#Lm1y-%6oE7vLdeZ}SHz_-pjzy$xPqTl*y@%|61 z`_$-v_vw=Mn}&eD`ztpY<>zn(-#-NW>sM?t#&5q@_AA&_y#Mw`CsvyJKcYkN?+3;C zKX?CCUopYIt>_jU8&a3thJZic zw~M!b_^&#?Z)*R&B?3R-FV6pe{N;i#nBf1Uz4FcHnbOruHqhem;0#@%Fboca(Ac`h=-M|KJev-~abZjPYM;j=)<# zE3UuOU;NuV6aD=PzG(>fqleG%o8T{2@WK0w_y7E#Z0Rw<-*TYPpRFy<|KSIu4m82P zbd(zZA?Tm}iwiC=!CyB+@qah)io4d4*S$yc--7u0dlOXq2b%k@;k$2s^-U9elainQ zkQrXjpO%e!<0TXQf6?~;FU8@1_{2WO@oQD>XLm!tZvW}v8J@B^O|hrej=`+sbLub!#k>x#?IQOk~)WP;c0$JW8c+rO?geVGY9sQ70c zUcCJ&JDMIg!6y~`z`Ww^|IWVZTPFBgwf|+{Z~5@!l;G*{8+*aKE6RMnz0_mNQu~Ky zs{JRyhT`z=EcsoZ3I5ZR!q{0H{>kgBer$r@npE&z`S6-dle`OW`*p`%_LQmpj2b`h{vj`X zM0KIzx|b$Oz^c^ z75(vic&)d(yd-h>|C;po8K3-tncxui_qjuoM*F+=zoh-aA>iLy|DU%fbZ0i4xM+835P`v#!KDz8{CioK+ycH?l{)abD zJ=6rhU$yW*`$0auSAH+7JO6K{@vj^d`Uh^wx4)Wiy6m{N=Xg{5%?iH%;Nty%`uLjD zP4JICr`rE8pMKr0E?Z_VH?CitqV%ud!#{8TdtQ6_LsS1hJ6+lj+?L;eFZ@?8{PyD} z_^)XDHw66;-TC0BrvBe{sI;HW=C`l=t;=~Q>^kiFKQJbr|6ckJzWL`1O!WKb zs{Wso-@X_AufKg^sR{m6?Y}blF?O$<9ET-laDa*f1chyIE4Qmzx0uBn&5x0_HPHT&8OeXzsr}7Kh*^Pp3XmR$>*OJ z{+X6b{%(Tbcb4#P@Xg}w@2q~~Qxp8yxWM=K6>on|-}3L6;Lp|cZ_S6-$`3`bU}IPo5<0 zXNQQtkN)W)UpB$NsOS&AP`v-&e)zS2n&AJe;Jy3*y#3$*oF6}Ef}eSY8vj#^w_klu zw%i1NmRdje?%(saAARJLGfeO_f63lpS>F9;Uie$)1&s5j^=ki(cmJ0c{s;RG9&Bp= z#fj2?@BS|@{JMYaGU|U+@Bi`a-}1uWchyd#{=cf)9~=VyoUdQdVWR(!djFee|CG1= zeXT3zo8T`TtNK3#{9k^s??)#1%a#0l_kVfY-_-NWZ%ptzHN0p4lNbJ;_w2n)@V9FI zdG=3w;Xex;{4EpwmgUla@BS$-{FaFw@0;Mq=>1Ps#r5Yyd&A2n_-Xq{``-Pd-uCDH z>*Nzm@FQ0%`aS!Hyzq05J#)GV{zJY0*Ry}g3;)Q%T`3d%UzPnF7%1+4f(svMHNj6f zQRp8Sg8o0A{m@7g{2^-p%fN4n^S|?<#XmH`AEw$5>?ltEBk!+!%mn}NsX~AMX~o+= z^v0VnHNnqQ>*s;l#o<@CFErYp9<~0Oy{NeVO79qUoT>evs{JG0{VU$_-~ZeyWBzMO zoAf{UjpF>9u;}_SQ~T-T6}(-%{~J#qXY~Kq>+$XU8JJtV|6l)7%Ssdc!D|1r2l~ri_`yyTN;ir zwSS#j{|~mL4 zGr=Emrh-4CIDGG`JG)Hqm#O@Pb!Kt+`jP)S-UNSspK8CqIDAvZHy<#;mnr{YomCuu z+IK%Z-vocXTEF$~pZ3bnqdU$s+V6+d`f>2>;_bh4-RZwGwg2Ku>A!dV+uQzgOK*sn z;1lZveyH{DrDq*r%wP2ns`iJ-KYr!o_x{Ty|GO3l{NS_s@~`Kux_rFznN|~gV3N%U z2F4Zlzmwt{erf7|K&^jy*N?sYTRm~vP7{2ETE80btp9o8C!hAfG825iUVqc;XNSAK zLgjqJ!2R`wsm7-pthoXxUs*EN*&XB&@^JzFq>uWFQts2=>MNNA&*kePN78p7_!}Jm zLAyr^r1LqLe~aiN4WFMljy{qhe{`jhzqW8>fQ$Tx_~gY=xsTEO2XvFbX}J{Xh5bJ2 z*i{WaU!`|{b3Nkw{uQA#WkYpsRtd*N??@2)QazRC+fX(8I*1NduK zoz`RG-x1W51>;xFqm=vkXyF@Y zHk6n9mn#12@uTzIf%70QW2CNk+%$&YU;d3NP3_b9-r)I`HD+`^yjVRAZCQW0=kn1F zwmq!N(>|RK4SvX9zx^7>WdK~YcdHzQx`JwZX17FLvqv5>m&mME&L#FoWd}MYH z;J0o0`YC|-dFiL~k%0>f+m}^?-1Fx@dgalEva<4^r~h<5GPnoum;Cywg8*Ocg{Sk8 z0|t2S`2X`qBfo|5ukemPosZ1!0sQNgFO4^`c3nGlRHfML+2xd zdjS92XTOvLe1ZPc`N)AifdA&rU!QG~UpgO|-2?ce-Y@$O;0x>rosSG$qQdK72yAuH2?Mf9y%YH1^ljh>4WB*xBVj@&pv9>e>$HwumkqZWB+u!nltZi z`r)f4`J?kSfo~VWd-;Fl@2)!CqObvI&t6#wug5{tam>|M9c8lrS?tdaey0%LYkz-x_Uo^j z>?iH-4qR0T@8$ojPk;7R6aQ&{chCT@>DJ@_(|MPC-^4%K-#uV}_m1Bg2Ok_XjUVlg z9k|xAB6ITP*GqrX_Va#hvj4O{HoFJ#(Sd06aBP5HMkRfW`lHPH55wetdv1uY_-@ec>hj^sCQmfAzweuobfIf&DC(aTy)Muv_GMM|BbMp@=q}6@0@8kUA}li zX0i!Bf%wx6ug|G#I9+bMxg%zRf7dhq{c4>}!|C#*EiZp&g1`TZy5~~reOek$msc;C z@^cgXu?zF*AGllc3>r?C!SZu&HNmf)n-6d8hW=lt|N6fs`1_aT!w+67c?#XGF5myd zCzqSxmt+1R|D^xfd(7kiuQ&GD&jf$Er~i7LP`9hgnFn0G$pn9~&W~yRRr^#loGw4E z?HP#;1~a|>|DcJAe6_x*roqnqS;Kc8v(NJ;__>P&K3gXJ-W~iur~iubvjy^hN>H`0 z>Hpk3{_~GrMC%g;@aK8tUw`LG)2+++mA|Pm!T+}hzJE9E-?GfU%mm-MJfD8OPeQk= z%lE%=f)W0JNIv|)QD*s>Sb6O|ruKi?k`EtHRl=a#jEBN1NbhhV$X|IR$%OasMZ2t-QRU z`)0$2LIh6w4IdblFQDhU)L7nEb~ji}$o;85jPRfNU|?{X>QJA-Ju;BMU!M(dN^vEw zjtt;$GsGhNY2PCQ$-F;Cf<)f@LK^x2DmaoLi7ylFS{a#KD6`#F}_@?Os+u8q

P}D+^O%m(0Fxu+XHtDBK|Ho zU$b0)-$B`p2}%Kn!tbR&dGmspiGDgi8^HWT?_cuH6Fp?__V&#)$9@I&W5gs+{%D|C zK=k>Pzzt%5c8f^87*yp>RX%XR(HZEsvq&*c@qc+nRp=Cs1QmYGSM|1_7*tO*{`pTm zK^qlEt%5B?7^zoUO%{3=|Kmxf@eito?^orA+xDXUk&gTf zSMurmvZ|oYCk1ZI_rL0GL80l^W#jSF_crn8e&ydZ{ryh~3EE#5AXX0sJ>|r={!H@^ zhyDu`{eS3F71jBq?0-mq)7Ha@KL!5%)>gr<>DTkqq3BmsImPwuzkb(be-7RvRrL9& zz)gE*e;mZ>;_-VnP<&Ki-+rO&k3K&Y+(Z2R3a>6N`SXKpf2P+8efKN=*S#PW2h{nh z0fm1k`=HP}#UG#e^HdZ4)7AV$pTElPA^i?wbrDLXPc-2_P{ptMd{*Fld&qwsV5;)I zTkrn5TRxvs{Q0Tg|Deua4JiCtZ@hHs`$2V~_4nRye)|PCeyzV}D*4gpv$Fpo{yQIg zs>y`^fL=w2I=>aTdC%;FV_y}2LK`mph8zD&ia%TR{uFh-E4YXFHUD&Z?mcV&0Q?2| zd;fZ&U#zobIr{6_&#HR4+v40Szw=)v`FVIyK=k>f;H`ToKc1Gp*gD~hCj3{PAr#sT=G@$SgrN5f*y20S)w@xGab$&p{4?9$T z%^N>x_0jO&(%XLH)I$#?{98To+cmqvugBYqSKkNpg({!l=e~at{_URlfzCf=Z^Ih% zlQOP4{_*CAJ?N}So(I5a^GP2p(g&!b@FdYV$?Vf<=-`4U0(mKHFW->!2YaP`8myhYY*`|X+72b?_L$V zjpEy^M}9syNGf>aTQ9sq;}n{1U0(jRxwL<sQ7Q{^9fT?b}Wzi2D3oR?*+@q0f8keSgm*;}*I3qwVLu z34zq->jK}G_J`t+ey_{e+PZU0@;OJ1ua-}}zM)Gm-TGeR)#c?E{g%!r73kM{Na1Y1V8(-|Y{ZxzWr+5Fuc*P&D{q(|n>G$?; z!_mL4C;oWjlkVN<*HHY|a-++?Zv8&(&o7XlFSiS2T7LBU#h%KK#{b&Q%YJXdf8;6o z_#OYX&@okB*6_W?tINB4R~gqID!cRXXO;aK{5SDm^VbRAH_?AiFdx6BU-L=c7XE6w zb@`9a<~Ez~-{Y)*D2Y+$?EYQ;AG-LE4@~&mReYkyxBoxHU;kg9y=cOJ^zwZEXuJ0B z(*HtWzHxm$<*}dIPW-$0*NlnJHql=l$){hBZ(z#5C!fm$cf14rouTJ1dVj-Xihg~5 zF`(9$hq4b^ZnR|0o$#HlWFIts?Y}0BRW(#xsO5hs{DTV2DIe>29sF@Rt>g1ws`+ET zI)5Bc=cv8(DRfQ|bgtxL@ePs7$$ln1{=I9Gy!YBqFT4kx)vq4t@}B0?X@7!4zxA@j z|1X^;74`YQ;Jth1-xYeNsF{(95&ymM;dxkJpnv*&;DEv}Pj~;Ty6w#Kp1ooF*9gC! z-!=VC=wGo~;ZWZn*77sd{BF9Z=_kJO@M6N>90N?iCx+Z=^@X94YyiB zRQbre$G%1Qb^d>@lAntd{rdc5P~i_0V$6TyQIM;rw?4-F@yP#0>U>sEov$2F_#OK4 zvF7e{2UU6Zz-!%%U*#WszY+O)K+&(yPX_K6{`BWCnXfc{_4eAg;Wfv^P53Mzgi~rV9DJEJOR=@U%T)pM8CBlUq0t;QZVX# z=YYb$Fo()`^~b9G$Fs}lokaMDd+>kbOH$9PU!UfK7v2T(A5FUIX~~ay@YDIyERwul z{FZ0@^0DF06M)vAF=si`?~%`kc0<4A;jb5eR_T>4f7UbgMZ%v{_NPnf*UwKD$e=pk z8hAj)2ip>h|I_-bYLz|r)Jue4>#vs2U(A*YUj77%W4E%O=T~_2E5|=a{;SEu|Bn=Z zy#C7zpO3A8{niUl{Qf4Q-y8prQ2Rsl`P%`-pCQ<9dHZ)}^sG4H_vR-*Q}Mq(pPSu7 z{DYnjeR6E(W*%P;f4Z^1m;UMVy8(5M)ngu|lIyqMGrm`SsrL(nKj^`~Ud=D``QD(y zKNNokTy4?i^HYBLC&EAAk^kEwQc<7(9Z>lF9(eDqmV5pDy>nVxIsWnZ->a3QE|4Ej z|1}<6X7zO8{hrz2gDz*{k%`%*KxVd{|se6_4w=Z z$!+QNrue-4Orgvf&v9b7f~xe=t?xBnU4FLgYX_O|KYEft==qUe-wCR9V2#gP_NxcF zJmaZ5#+%~LcTZIn)%odx2gSZ=y42f(Vo*KN>vt=E_R4BE{>zp9yg~8DQs=9)dx+oC z@}Hnaj|3@pOfL^G8kR zr_OH0`J-CfntQlRDK&myjb(kV{BSr{_9`eZwBxeoS%GUF7S-lJ^t4oMGl^*su`~UUx$bIj>V#0q7%|=dU&4uP6GC_`l;{S@p_Cz+Z6w zeB4UlAFJ`_)2+)NpE&kn_>Y41o9j9Rz_ujf(EB^B|Hs~YfLBp;f54MKAQT~rQpB=SgHnQu z1`%06AtFc+DT>I_u|a4G*0lq+s3<5R*Mfprf(NHZCg<+#>}hkRHyO{ve4t4Icme;M^3Cx!{7*>#Dw|T5ofp^qqr3;5 zs__5OmY<%EALrNuX3Br-tv`Ha!@u_F zbo~B&tslTl@xNVi#{M?^17&?)NH_!{txzv{uSouGUflKW^?&`uS)4VQTji?pLkF6zrFa?f5utopL$Hv=?nbeAM-;| z{3DkGcE0r23gUnF!dbf|5jxU-<@LH8N5mV1-l1)e~icH_f^u*r857W z8ZQ<6zLXD`uS>@s)Gxq)%DWA%>&p|9^_Q?uzoAGhb{eH0;05f|Vd2L%{x6jAS?E8- z_jdCCz+2<_eA7z$nJN84@Q-t@08{o~9JFJ{O`kYAfB*DWYVv99z-c3=jcuFWo^5Ni zXDMd?l4(=hWDVH%#-i;%cxbpfuJVQ{*%_7juBk4>{?zHGPfLDCZSLbOILA(zGHJ^8 zY{g0;O@2vOk?w#imVb6yEzABOZojkh{?hq+TkZH{TV6-6g#Z47ycccw59%u)+^FqV zx8s9$7}_!JfpryoIPeX)^~iR8Z1|s&`Z-nw{(^VvDE4r`3;6i?Z+JHR{bc@8_1iZ8 zc;eZ!#SMR+UHvI34e*7x<_h;8p z?BReH(A&3GEgSxeiuD(9v7c@A)584_;03&Q`3XyG_&=k5B|HC;ZR@|}+q#N99Pk3( z{Pn!Ut@vg9#JMz#KWOuY`w;fh{`c@7nOC;jhW`!GPwa2vzwDfoPPO5`P1dja>;4}9x14uOKO6pb?RENk zTQ&YJ^vErF{iM`pn#c4O2YqoJyK?=%SM`+_*zn)Ir+m>~mk&1l>J>WQXI1T_kHY`q zU!RuR@O$0#7r4KI&q)jS1LyA&@V+hk|8`^DyKMM*e1)B}Ro5?kj#?N$`k6e=!X6I! z7Vywz_YAe+UqJm!c4&{9_)B?x-?~7CWMujWyntUUUwEhuKabzA!?^(_e(=xZIPBqo z7x4Up-)UsSf8tU43$%Al{F(B9DZO+^Wi4# zzp>#j>ZQN%@3!N2$s}3-#mlNCJ@6-)NIej}ALk9D@vTbZ+xreC-mfM5H`XsX@@>?9 zZ|DUiie4Xc1)Z-{X?@+P#J_VrjgiXwXGhkTVt%J8{GikGz_&-(^phOFBqm%bkxl(a zjgtZ|;QL*6-Q9-&h=E!{N6ue2@jsTc?ev9yy5?TGnDAG+U-US^?+>-7?+;{5upNfL z2fhKHTYA*vHvV~hH0fl0l;%HZpQC)^anhuh=)en@|DO|2vEkp6uRrh~*5!k#pQHE5 zjQ`iB%#7La--!0}XgmJHX=pSP{S;LHVXY1Ss=I-iCjf%p#H%HWhS?yZD?O#U2j%3h?eFk8HHz=lKD4aml~inkV470yy9W?DpaC`)&9iIYxis zHq-n^;g7#oOR))4aP}yBAOO=eMmGn{gy+tn^ zVZ)!C-=L3hZW5m(7{-tCjpsSo!=e7c^XzU}C(-=LuAYo9Vt)2pvj14u;QSWM58!+A z+(O_3DZux>`P5p!yoB{>k7@lpNYCN+!}<)%x5KxNm}Jur&(E;)<$RcJ&C~E)4IKCe zT>V1LAvXMXN&ng(rTKq`7A}SLkNj0}Y%RqePR9<~sRKS5SdGVbU1NOLI|W~8Sg^PL zl6Axm@HG1EewhqP{xk7Ew|>fAHvIeWhap!Qf#0Q}6aUp9qKRKEdv2}`{{;sB72Cki z{X9769k5pWt~c1mUvmV1HPHm@Gd1oi?Yh*n5CC4liZ9Q*#fE?K1pNWiNQE(FK0TP7F9BhhERtVI6?T19debnE+R_*N6tK?8_j=K8vj0_ zFO?6zQkWm$@iBJ!8mQQ1x?IJ%EABj4jzkc!srdP?sr;!l|GA#>mv>PR*LCdQgRcE8 zwf|qdv)G2;q49xOJLDqz9f5yiTg^ih{^eVa^QnJPiGRL-J#k6EzuM1^!NiYPu+J^4 zm+xwuf9^AYcrMWEFS1p(^a5x;nM6XJ&Tv-U;JI`*um*fRJNlNmO+T+wiaQ+x{lp{q zH_zQN`LEV!(~~y-Ytj1u*nxU|L70D(n`%f+<$p&yBtF9ZY!m-Ed(S(|hJP*ff1QJ( z@h7O=?|xqye;~2e(YU?Nvz{OQAoYKpLx4Xh&nHm7H#{!0s#&0aPLDwI`q$(W&c4^C z|3^IH?fM|L+Z>VyVf>5x9qjCHm3r~$Yuot0dIH7pG;WTIb|St5Y$0n%qSANp%4_$w;pg^e zY|j9{FYQp^1>|-qyD0oUuPtwD!+-a_#QtsiTmGMjz+X+qsevDQ2b}Wg`nzoUFQ)ks z=XOOUo0j1=qkh3U28`bT0x#gS)j54__rAzvcfpzc>idzfAnl3*h?kg*9#Z;rr`jOM?0x=al9P zfvEZ&asZyt`>IPY+5X_$&YcHDEdfuz_tzl^QSHSC$<+13pCwdsr_QJzmg8S zDE6>FzhD=|KFWbE;O4)^pJb!Y^&dO*+qj<-roTsZN*|iP;WjZlCK-O#UswJQx_}?Y zyA8L|uij68o47^G&-1@w`bQCcMdKQp`qr(-&@+BBtV~&lAl(69eB`DxZ0SFvHQE1V zN}Z#`{yXR|Q0@YrBZOf87#ED954izvnLN0cP5%8we&-EM_XtCN^t0lx*HrA0{?41U zZk&9SgWQ1CHcx-pCjS7B(v#$0zo*DwV3&WrtOJ1jm$W0w+fn{+=vMnA8~yJ_Q~nFl z_cNsbdlmH$^bYv#kU7@%AKX7rI_Wp_{BGF(w$)GHmi>V);P?N1_b*%ebN`*4C-k|W z9;Uyu^51#8{+ey0e`UU=@5ue*ntm`pu!vr>oUwCiD)zJL>E{ai%|6P(?f^TfKdkMa zIN|f=1X%n7?e>Qlus`Grgqsk02b_Fo`zLMk^Y{ikjGJ)(F|7X-9UAB0u?};bLw{ZQ zKj;E37?$7JMxVz&*g4I#+)?y-93<(DaTfh`<^Q0IHy?lW`Kv^~()@0ot7AB4>2W|! zKd8U!@0DKOj-_#u@VE)^n-KH?CrmiWy8dJx^)J}@gSRbz@%6NRfc%c?e^Z~U&b8_P z7)gJ(O<4Y5oGz9ALn-~q?x*=Ju|4UG=1IK=m`{y|U8kihYy=UBEW0 zo?LFD&-)MA#bjj9l>hJMf6&j}QurSm{ng_&eYcxkesg_E)Or?;CHSABD?wYmmzvq= z59qHWB!=4QA9;Z2dw4ZfM*a*M??u_iFrb+JOIvf0k4~7Mv((o9oI~_u3wV59+P_`& zmuU9`a=NfX`(u0if77mN`m;^`<0ojmPH26Gt^HB)HLbBFzoYff)b-y^vC+ST^vTXW z+OGdWu=k6yRT=q4l>c_5|9A6eIX!Lkd&s!C?`ggBI64)%sc~-3f8q4z{I?_YvtQl4 znvH(_;-vUWwb1hOdWo?9<42{_uS<3i=10D+1Wfz?;f?RC<3INhJ$6oAJN;{Gq|5sf z>1T)N-?{KAoBX_fgq_z^>)({0`#;X70ZqC}dxz*>w^DEFl@`XCpGS8Acc0=!2 zoYIRnGw#q-i-{zCwgqxQ&$Z5Lw~FLzTrBIOaQ@6i2a<-4)#qnaQ`J)C`qBpJdi=t$ zYt*lauj{IUE9+EJGw1`JcSEhgHvPU%<5aPWlp0x0+jpXe{({q(9pFf+SJ*kp|4MN= z7yFpjtrKb6I5Xr1{AEGj<+MJjlYE}K|MsY1It1&I64{!*KVHKE(bpRJ5a|oKkpEJ6 zPi^RNDdolF0BwKv~iT1oybT3?_H?vz?b`=c9#C%KJ(mbZS;RXC0%};d*I7`KaiiMag)xG=t%!e zm4Ep7W56{#3Dl(8szw|BRhW|ISlSe$ht1 zXp~kc@?T2-a-R^=KT7|Z=D)H!EBXGDO8P%T^bh(tcfptYP(c6h=Kl{DzIld?{%^(U z@`Ddw?n?pvzbpUmi@x-2^amVm(3kVc)mb|ILI3Z{-(lrmd_G?#{f`EH+1~^ES2M)^ z=IoYaaF%8>RX?FzmEcMM?*Y5kOLVl+Z%zFNcF;TQU(MXP@=rhDwZS&}f1a97-Y5hndt zzB%a)8~x<@3v_-RTw*8Dhu#6_j;i0l*1t-&|CzY7yIIa1?FVpQ01k8k&uen*3pV=o z2FVxCXnk@!KTMy;H{zlGHQN2?^P&BZ=P3HeUS;3^{6(?;!u^NoFP-<=O*Z+j>#OPe z+eyFT=emkL2U!c(;?Q-RO;&NJF6}u^$&i9n^e4yq7B{CqdJ7EWW zj;u%WPL%eNex3SXD8B%!_3hj=Ous_t|HSf7z$gc$MTYcuX{h;Ck7<5Wgyl!B0Y7=F zrnUU9-9blmZ_{{qeMwmV=J@JohW@eM%%Qa=?BPuMn-+~Mwx$11(*Abt2-6S7=MHPA z$DvB+)Ku(y%5&ZoH5L1do9g%Fvue^gtO0#!1$?Yf7hcW!FE+-%_+`F3x2pA`ZyuznQ))M zFFwus&z1ALu|JmAmpBK9U|0o#X?9Amj&JRB@yA{DDJz=?~*`w8UEe zV0}pw%9<>D>5^)Sedk&#IltxKQ%$kQ`57FC9oPWhcz&Ws&*7Z@=KXcNz9E*}|0L-z z>m2YspeaA>&wm0b1xgx1Zb1JC{~}xdOSn3|yDTh!kp4x+{NBk2r>FM-<9#|8!P5ox zU*Dr9%WtGVpI;GAo*yjo%Q+U18_<*=>Fe3Zhm2(VFEQj#(mx?&|H2341~lb=s+Q>MyKT!4 z`lsbQv>We#aisi1{yT6y+4Bv-{JJOi@PIC$N&m59HGS;g0v$k8{y)C!lVhXb;25HR zV?aNVA^p*k|1n+;x_~DAdQG0px6$83>tzxl`ra_DPsj~u%D*{7`rxC}V?SEgmrR(X zIZp6F8|0Wyxc==y^KY;!q4=TxkI7FI z{c$HZwVvOY+&@bn#bsY{6#dfMYAg0TO21&9^Ae?hXVgEKf9CZ?&f!_A#o>~kp4J1> z9gz8Am#=}EAorZa?$h5%a0)>02-xTAP1o4U|MDIbZQS}e# z0{#@gdOEj%3grF~)W2>|YX99vX+BKkkD!nJzmPxG{)yNx48B4Cm(fkWv$a2YeT&nL z=KnoS-;;GN_#Uv()0jYichr9o?N6PG!8+fwpGZ7z>woe2FFu|BkM%8y2>Mvx0{RD4 z*ZfBHzrZ)-Uooh5nN5CPUlMb()NQiA)01^3_#V*QH~o>MV`{z%gapF=0Q)*KeOviE zW19XT)=JkuOefs`GS|~)y50qRgRSq5efe#h{6n9nvTvyhg+Nx##qy&ksF zKlNO)zhwdaLmv=arbda{P*+j(0<$ZN{~^_1MJ!t^2kJrjXR$zS$xVNRGnK`&vpybFBST&r>4^{ zmUUN<8xZnG*+158LEo@{z;$*1(<4mZ7y8{#NvB^PLBA^beYtl8_U{N8nj{V$u4PQN^YepT}O zRmlJRUITdjNs2z?uP8~UUo7k1AU9xD@?+gll>F`Pu(&3alc9w{aPOnU2UV^ z@w{~U<=aUg`OjZxFaKcw>ldBC>t9ppkM`e1X8kYgo>A@rR#pCE-8AfNjfe&K?7NK~ z2-Ei^|GhK;@@xLfBj{IE{;N;Y<#z-v84><5#eM=pD~(iheyNOkauoo6Y`D1pO-YFYDGJFYIomsP~YqvucFtqyKp+&A)4> z?Wb7Qy+dxmD)s+)y8VFP2k*e-7^aW(|BMHgl1_hL9zj1P|7sl%UqSw;_BYc1 z^Q$lC``uIdAL;+aFksSni)GzE&HQKeupk>#+RL|FBg1Pk&!5 z`%WM?AoQ;y%3thTf&9=rVEeqA)AB#`f4f=!MbNKG|A{T>@+03NKP*1+%avjIw}}0Z zNwq&ke%bc|xdBu1%l;JTKV^TiZx-~{NQAh+FL!w>P5-50f4N5cvpj-+Rr0(4O_$#h zx`3muub$TbO^EypjPj>g_T4~kK**1Fo}gEdANzJ7KiYqQ4L={w`(IM^Pr1;)dJ-^c z{>vliS0#TeLVob``$sKK4AY1G|2NhDlJxiW7myne^1BiC@5sI(*gxdnBI4Cubi=h_ z`Y}oW4d(c71pTVySHGpFKja2K7wmiUJz@Gv^#72V|1aFO{K)4>HKaev1<;!%5qyCM zeRlW>Y4k<@)n@*WpkI~zUWEM6!^@)w-y5cn^zU;HB+;<=BD?%i^*`GGI5!^hgD&9j z$NijE{(=6IRQp%cFW*l3X#c2kd-{WZ?vniU@i$5T<}&{dEfin8ee#38TLt~XPtM}| z(^L5$^1qoX|3v=nq@U9Ne>LAx`oHs>=117*m#4;mCH*hiKKWDhzuGqa*Pq=`%yy^h(flRKb$s9r-xpkvT^GTXAkq==$~pP( z5`Udj5rsd#KiCiP=g2+3;0w^??+01G;_qwcPt_pa*he_<1^8J17MIxgd#ae$mxTC> zXUN}2a-Mw@e+7AT?g;rP2fhG*zyHapHvV2G{@i*&`g)gZeL!!3+pE8dJ!pR(`6vgz z0B1c|&gXAeN?*SJI2Phh&DuHql{c!Z*he|=1-S3LdI#CoFMZQaV~D+_?VZ=DaMNFN zsnk8RE(L2x8J_8+KVN7(|CjKE;}a^Y17CnMzC3e|ZGGXwJxPBzW~(mJPjF}3_1A@{ za9ZaJwU6XHns|LkqF-z#dDJTbj}pBS0AGNoKYCnioBnXVRBVB!!{>X4*WuXKe}~t( zVEuP|I-NgF{%&fp?TG$XzA*0%8-Kh$DCx#&{2fYD4bjR&K+tN3=e`iRre%QIfp1!=kD4f1-eJP(Cq^EDxex49($)Dg0@cQ$H zO| z|J)-d=@{Pqnek`tm-?Rg3+IpL4Sqr2gy0YG^X2cnZcE?1Hp1UCcKa*tuF}qHJfOdR z_P?V2ZRC&Rf-#hTPwXV=Pw(=`M>+5Xc>k&KXKeiO`agEQlrP&_2gqvyw|5<&#$Ne9 z_yTNy$^z^8;};yGzjYq8r*D-0U|&)C!~4pd=@9S**lpm-(Kh|@{tIg$0cbNc`PtF-!K8{CTpNG>8(O-=|Cqmf=RNVEl|O2$v5Woq zzt!KTSA1g4zc0P1`SX7I-}3jylxwZ~W4$vpf6mYUTmIbo=dHG-@5;%dzhD2i{9U{B z=jt~8mdW^zv-#iU599wRU;5|Yyq5ZxO*YE71jauP>PvM;?NI;sM$IQx3rPpa{aHcy(IkLezaJI{COfL*3E*>UafS$1mPjc z5hV$sKk)zjvhzw=e~5(jZ4--W{OUr4Qu@u$On*hfAJ+8&Lto)9@sQ>-)AU_^iPMSs z%a!$)NZ)Tqkp76j)c9Y9{N+f0-b~+~m=Bb70?-fm2Xy2I;LK;9IzDNC!e2t{kMEz0 z?Vpvpf6c$iu0QP0aRqNw{-`1LhjGiQ^auVAKcMcb;q=A)Ip0s`91!s5-2C_WyH>_M zVh?XSeW5qN+y3}u0`phAi~bJ!oyc@fcayZMg8|rZuZq zZ{iDom>=iyA%Aw3+9>-?)h+h)#r@Z=AjSSr+#3g4$T#LZ9^M0*{H^?@{Y%W>EQ7xS z8Xt;n3HXcsOZ=Jn=B!Tdt>OKBGmP@NdOu3v_JRGm3+?*jaV>Uk^1o7LVrQtwBv=iQ zeWwUV{fhU1CV$=UI`;+}e>q1{|K?JBMP*@z{5^tt%$SdT+z79VKfHHq5B)sMpOW&= z&I6i|qX2 z{4Q7U?v3$aLw_An{w>$|pda}x1;7_zoxaCD8`dAzSKLhe#V%JV{^A+(_Y>^wl3i0Y z`Nw}H++6RI7Kt8EZ-D=kuexF#>#s=8jY9ffIf(k(q(3+>mYM#_r5rHJ=M~^v?#qIH zfFID2A9$bj{*cqc=?nek^r47{WvhIgcXpedzx;+8p(}WI%@MmhEM0$CFBGdHeW5o& zM`K<6r*QdKD*8kDT)P9sI6h153%iNnkIz+O=O+L2zEaH}?iG|^)eUy}I5dMd=@4%L z-)!E0md*Ye5r47SD#f3ByIp@Ke{Ce6n(H0DF~UtfflEhzfWHw()*BQ~U*zA}R6fU^ z3G|o9kiV;%ivC^)1x;{oNq4V`^uO#q%Z7`&!_W4>Fdimb!Zm=n)+)k z`9M7b3Yx#>!XNt6Rp}3U+_Ko``$3w-gg;OA58dKX`8+2`U*}Fu4}1Zd{PjhCl5_tx zcQnr+_;DUzI`@c0I+34_!1v=l%bCCV27jNB{t_Yki)YB+E&X)*#zo&kMookLeW%}p zKHdYGdfiYsqhEc>zc_yc`F8}BFHUK2{*<@au0I}^X6GjVEA_P4pV^LDD0)S>*^ZLW zQ|Hs*x!0IUyV>|_bsXi75P#~f%=r62_KT~vT2G*Ze2sOanetb+LBFSM{B7j+)wO~C zVj1$cU#{j0dIEpFC4V41ia)J|U>@zExsxwr``eNyb|LM9!$^NVo$rYCrS9FC=@0D# z^?bVi-jH-hyT-IL$l=Nl!0O+X9>DzJePdbwRYdcHi4cE@4Ed`j<%=WzG~hjSFOmOy z4bcw3dqC(9&kxprWdCsef&AgP)IPl~NMCK9`>E;2+TBd%%z$xvW34d?|K`zv~12 z#WUp3b2a@$v-Fh0I!sfq;0rMQE2S=fY|dr2^qo%QFW%gMKTqaaQEvd6<=>}LzPPEC z9-8ut(hdTDrkGLj(R|8S*zs&Tov(O}Dcfr2Ip86n_o`5_p1h!j-H)&(L3=)2V&` zT)>}uZ)W-9?1MF5&X4K*^^$aVHtBHa$6&{>3Pr~h-+WwHf5^X|jiT}|WPgba`MXKV zzxW>M9Q2mqUQ*%Gt!^Ynsy@|gYg8bp%mzn+sNj``h^+#zVt+%T9Gt2GsTekRw z`SZH!@1eh0H2)h5@#n}o1mp`qGk?4-cIJpYNWTvxT)nXE^ra4rb^=ctbo3!?f3w8? zJgMJ!eS~{eV1Mxp`5QM-(~nh8@4p?jw+>f7Yv_P+1EyPrQlE|eakDLbucq}c&b%Of zy$7~0eQ_@|$QSId`SK;*qw?=8qk^m5X_q$4UvUrpJ<>OSIN9I)fIn518Gq}=&fH%` zU&7#IDR+>*zQG6NF!i@`Rn4<(`s>F0-4yT_%aFf^Bps0tKsQU~ZB&-#AWDB`yKu=@ z&z{Ha(;{R1Z^9&M{|%%0El=ygU7nf#W=KB<_fCSpePrFSYvgOZPeJ4l3D`RI$ctEi zs#|*ccBT1M=jK3vi46IBRPu-Od3s8v`bV2J9Vf+5`j0KVj*(n}j7vOs*|Wcd+oxM3 z|ML15ht4NO``MRuFc1&WEME$x9p%ZoBTX$d?jig&7C!JEut0t|05x0w=7U+Ayt5Gr3n{HaH@MBoe1vrEyaz0hANc}5yyU24 z``$f5+s6#aADjA<{%*xr^gDvT7iArpD^Yu(ow6pqelzE-qwLQt|0Z7i(6Lnh)i%q& zpF0u37qS$eYfGp1r`lx|obT2JYnOVpOn<(f2)OHm_o?&vuAy^quc)oolH$YfMXVHn z-2rwU(Cju!-%95nenI>tNPnfZwO$jC>Mv>tCP3z&otylx6!^c8$7P7mH>ezAetI&b zH9zlix%R43T+i})vZ~x(zpq=y^ZWTm{lVw+`Xho$(q93I(lJJzo6BeR`rC1CF0dlq z0hgaW@e$4+E9Kl<%>SyM)PGx~)byjZ{+yMXKjaI*=`;_^&Q1PTD(d`HPsa8A-LzfW zr47z?6?AIBtJnN)8y~v*5aKU}SdZa>B3>V}>(At`jjhs$Rr_1jC- zzKS=^QV$N->8oU302~AIz1-~FTG`T<=RXoJ z2IuF-BKX7kvEUEmf68b_wGq9dePxz&V9*Tzb=vXkZ0)}o8Gyeg)c$+Ip1!>9lbxIV zuT)j-Ka+3yECqrRLkG=0XZ38``M1gSr`HDjC3X^jZWZHKrv7Tp*wwY^kLUNDw%Mun zv;XAI(I3(`r7+`%X@5Tt%<91T!yI4x^ho0G&p?09s-451+3qsfOO4-y&xWU6lAM17 zf5^Y}=zNv>#qs~5BRKg>F9kqea-fjAE)wVl|*LnbY}c*cl+wR* zw7?0%$2sHZw)Xrs&iF~~r%o7IGPeDwNs~_Bq1)TjFgWKCp^nb}!ww!Ugy}N(xgmxs z6DIz~P8m0H^jPN{=cp-DCQTu(rcRr3%Ea-EY|=z}F?Hs|(e3-wuP)A+BTqkNjH8(? zaYElx+$m$HPCtEGAX4aUCCtQ@IM_X4y%XBkv8{i-nAS(KbDQe+1g|5_p=X_nO7YU1 zIJMVG4yv2<+0-r#uV258;(LpOFm;6fU2-tRC*O$Tr@c>73)&~(@2srx%WVApH9&vh zy`wqedD1X{jp!lF5AGvF815s(Gwvh9^Mrco-wS({%8#w@KXj^%Kb{|F=gYi!ru?~= z)l}@kU+Lv^e;Rr4mv<@MpGH1Y{x1Jzc1;_9(~yA+boy%kg8Q>@e`neGH5L0DYOt_w zD$c8^*bi!`pZyEyJ{9tOg%ZEdyO8)Jf3mzUqu=b|kgj-c@$x}@zeT0}C+GCiF=EGS z{?~DYCwT8p%~JQ$_jq4%R#5AMKfq5L zl^$=?-}gzE+O+SX8QhH{1yH1u=Re2yzZJm?_*uQnEc&D`hxwizRdkupBm-QCgU09U&YDQ z6ni+NE8y}g&%VW`zvTD;>rcilcIG%iF^v^OjT3+`z!9VR{AT0tpu@F9u}xZk+|Lf@ z-^RPp`_MRsV?4)u==U+|gR}Q`)Am<(du_$O>Aw0o@6OtaJskJ~Jo@-OCR6*Q()~4! z#!~z9h@gKKdr|X=k^qqVXW8_ZF9fg-1N}tM#rYNSVyYL(Cusd|*gg;sd;uQbd}@|W zf80M~=Sshf`(ZgMxZf(%`#no%QvE@GIq8e}DLa$OWAe|n75$w}(x6D@DKFfb?f` zKO^)9{yuX8-Z?BujQ)Wyz-FWBA8O<8IvQVQmuR8uj}F7q(|0BnS&TQfL@D+q4btho zE$so0!)^w>XZtIlJ_~zap7{doR)U}J@&^e=}81au6V6ZXOyIXQRg4w z{2%9DJw5|{9D{N2Wjb7A4G19~;E?jO-nQwF@25#RxfjNkzFIT-Kc{c_c}LS1dIQ|` zy*_E@CqsXU`sw;BePze=m$+~H^as8G=X7~6&TkFU!(m_HbBDaW z>ZbZ%c>lxQP2;xl$0G((ehb~t>c6Tb0$+gKt_ky(FYEgfeRaMUw$;-zzURxhALu`p zlWw<2SHQN1x?Na*aamu0@$Yjee>hEo`AKK}w)o3R=`Swxf9Cr2JPG$#YdlCl)XT_Q z1tL(szz6^Ot3UI%rH9^lKALf6C@PA`5*~dk}_?G*c#t*&$P5!aIEw)(m2|kM3 zN&XT(8_SD(4@?ht@IeI3m2kkbuYG5Ot^EJ-K#91w&PQG7u?GEVDS~-0*d^w}@Qit} z@)v6>_Lv`w({J{eCqsP9m*F{r{Z##r_lJKo^%T~Bsmvc?{fgU-%8&mB`@`b0ULSe~ z#QrtdKh|fO`_~X2bD#mu0mdWaQm%lnC|Dpb0Na1@@Da>^neabD*4OV(<1bE!pbqih z&~(8!;1PRhgy4TF)_<)|x1V=p{tEdNQkePLiDF#B*9eRYy!eN6()Rx*g#WV!QM>5! zVE>W(rk#K6j{^S=+Anghvyf4X_S5pX&uTod-yA8|Rc~#lkPF|L(3OBfful!`SjqYy zD(h~x2>(A3L*A@_fAv;o{6BY)<};R+UjGydekJ9PBlNMa3gg-N5*`I=7%#?t{pL;e zv$LC2$oc@-f1^HBeiHw1@d*AqQeTA~^nZ=$KW@z9TyKP<{`EvI#5d=6H1^fJp{X4URuU)B+kZ%D^{(qNz8Y@fBze?)mgoHO1)PJ^@cw$!t0ZHpG*caryKYM+$ z{7gj_{-<=NKF&qi>h~IgU&g7yH{kDLkgy+fpBwOEeJt!B{Lhqq4Zf6D4nBy0kPqsj94S0?!g`S(gf6zdr5PxIfk+rP;_>M3)7-y&Hbfb;&qS0l;SuIwK~zQB7EBHa-F zd!w0(+wbQ3;J2v$@=AmCXYPA;{<;0m4*LI4+VAE(=&zD55Dxo&3HBrQuc>I9w*N>U zz?tKQ>202OmU0 z$PGC8*fG}e{Rc?@N!L-=L#$`cs-WAVR(ijO@AviB2VwP%@%ypO=;L+4`rHpsu~!_4fzIr@(eX?q4AXGuE^ z?PQcA=Sev7wSx~LAnX^fyY4ghXXd}a*ncvI^yz#Q^v~lN@{jV<+@FPgGl{Fx+jZDC zgK+2-{F%^vzq#W;K7X>({2}wt&J(`P{M&%+BRoDol+=y%&-;+Z``ZN19R3}*^FsO4 z3&k(rkgYZw`8i44@(<~TS8rXg=nq@@pFH0)w13J?WM)6uUjuspoeO0D0PF{Pyw9*J z(?0Nh3gSZvxM5R^hHO8+VLw^4ZZ>vkU_VOc(a`PzH0!S@``Oq==ZCnl@8uY@>tw%^ zsoxae@*~d>@Q~j+Hemf1^w9Xxe&G2(@A-iLc!vC=onz`hs{T#2_kPm!4fag-Q~h@& z!ws)r(9%}^|3>9c(j9CsKQ~bM$M#?D(s{4se>KYUucUl*yH!){`TSa*4=FpMTGG#; z`Xiiw&S=K`7zRmLIV$v7i1CKK2cVis2X#e0H$MFaa z;xfEp@8H?1TSL{P0VZCLgE*Rc<^SLxux6)OC)w=hf)nN2lkEI&@BBRGyTMj_K= z93!CGs*x)>|CSp4-@C?>J%;v|__E&ymI-KGvOXW}w>1Y){=8MGVKp@Vcm)5$jQ%^$Z$Li<^mC2zEATl&_D|s4KvTc?9uRy3 zmYmt~R$Klp>!H8!yX*3f`K+O`QvDa~3n^nX@@<^k$Z`zD_Ts5q}W^p3qR>!+N( z=$U+WkuGma_NlGde?$7>_+^I@KJrnnKwbbYUeYC-^*>bfkMY|*4yTBr{Tr^VBZ1um zVt>g{!P_6>Y{vL)JINPF7wCU`$8Yf+tfh}f2^-ZKGkoPnkRPRKCkg1{cknG&G8X@4~Xvo^UHrb(`G;Q`|2;8ueHRy52c0* z_91N~d*S-ObU>}7H~WjQFSZGGgAXBmA^UoV?2-5Tlnktu^cTqb6!*AVihY#JmluF9 zy*561eob8LCs)c(=HL4&E49DI7dfDJK*=I1=n&3-+Zg(&^$vF)rbS z2LBKAId=owKR(Nq@$<*YF8oU<6N+=c(GfSu%fzapnTSJ9}R#-(uAk4oK{(Brxu( z?z`%h#o_u3<^Q)ssO@%JfF&Nme}dMBv4j4*NjYP#^T+vl>V@?DyQj225w5kQaoYYP z-{Rd%9}UZ8{TDaTcv1iI`X?u}f5De^P_P@oLQi7?|55vA(5_ak(>cVxYG2AF@D&A3 z{@-2q`j%w*Z}6X-fBYlZf8l;_x1XKGzggZ!@!!~Z;odksc|PuZga5j;E+BD-QqLTz z(?wO-`G4j}jS%|3&FGJV+yQ8Z80CMN%-5s+ke)jDI)Lc^0$w`hvd_Z#xAA+sCnGoK z^=EEYivM_q{126RSmz6oTS%wQ$CGh#G(^yT_KP&;*+1~^H`Fwu& zx`2OI&cO%YfKmLr@BcgePu{}TU;o;xPFKR3_d zpU?OAuMhMe-%kF$4gZe*+bw&%5$oSI_~-Ngow))3{?GRECrbbEe~JIPSM2>c^Y0n_ zH>;JUoO@I%|GK|yAOGs3e@Fkfo)@3X{Le7>e}?jJBE-M?b^G}D{w4lD{rEM$|F21j zl-nqO_fhjh*%WI3-w?9@&D*Dc_4z-;f4)=)fWw;A z8XaE$ivG)yRQ|*s2+jvB*rNHz{4!uJ#-$dg^K153P~UWyb8ygJ(6v3?3n6$^O-;va z=b#n?9>5llJh<7`f8_ng>|8lloXeS-^rx{aW$q6!@9VLx$Jaec{hx;SQe&MQVy=JB zbpOE3b;^IR@z3o~cAl(z`@hQnX{~zZ*!Z8^NAvF-p!-WaPRLWt(Eks{c>k_6{_L+0 zbUN7>kM2!f^05BTX_o$c%wFlw`^fkazR}!N-hVLYi6`3H_6D0iRgXp_IlzO-|1<-iO za?0o~)g^z>Gl#FB=lE;Ec`4N>U2$#-rys^$R6Po(cn3A5bR`Ifd<%HRrkh9F^bh+_ zg!a#DEB{uNUmMcE0&IaH@@s9v>s3_TVIUBm}p4dpy@uc;1!{p16o!0AWdojgC< zGuA(!K>R1J3+C_Q5&UER5&VNsN6woDxeH{Sp2_ExMmYE!A?INuz9We69(ZrqG_hWI z{1*0e^k7QI>jVD%YIgmb{NLRyy_^J{yM#}apRnf#B|gSKkuDEGF0p^4i^+eduV2`Y z?Z-9NKU_@hH)n3Zzbogdf-a!RKgOvlt-q?K<#Og~2)QsX2|a^<%p)VegMSAf3Uuxn z^&s(6u6 z+3dgZXwv^p0snrD%{>=*Qh)KrP@$OfoA zj{1P>07vKm%su@6Y@7YOFoxRejRO8vZf5$wX&;^5anUE}tZR`T4*liG`Uk{^T<;k1 zp?8!2m78~2YvaEL&wnil>?fWf|C1u>uY&q^{?{1mQo#SdHPYjQ|9nvhEE;c zl#BhWl=kQG6UhF%1p4=DWv2fL2WYzH`3@^2T@ViaKVyW0|ChT6|I+>h{~Lw>l>%RG zb5h#=k(F{jX`(mTWoUn_TRSuUFP8ae?;%ZJ$f$Qj&#-^+laTPllR7^1S|)mk|E9wW z1rg)}-bCkzS|sZ)nSV$9`vdXsh1SogI(GiCex^han){4Frxwm{mi8y~Kh9V`gOvkk z7~#~tPr7^qe){N;KFoiav3}rB8eec01?O|dBlySq0q~FcP~00UTrxRAzf-oJ>uPwo-Vx4lbtVc+18Je{8xZ~v7dXWKkamtNF2YeUH@1=0RHDmzDvBV z=_ZNMzl7jd8+EuZFBVFC_Ya9LButP(bXqBwHxbyi{Qup`lT(Y{ESIt z0`4xE@qe1wiBqEE0|WMDoB6k^w2M%$fv+2-UUm{%E~JYi2=RR2utiOi_Am3l*xz1@ z#tRa+gF3-_cK$!1bYchnNA-U@$vVB*)tVph`E*PDjPYFXRVe%*90Lpmnw(0(J~w>A z{5#TrFO&XDj2QA7WUJd`|9Cutf1D3W(Ub0bv}Z==Nr(n_NPisnjl=#oOMQWHXMBZx zgm6c&6&Uc?TsL|D@KA&QYo8|jS*lX}`}OVmkK}(0I5GH_c{G#%xU7r7SKuGv;9orz zIvz0d^9r|hxZgi{Y@p?QLrH)L0KEVf&+W8r_4E0CxS!9@ zW>E#y>^uTHX-}}P5JU^e3t2|v4n|y^@jSnbbPL2zl7SI{2tE9 z*U#RhT*ZDXwOhmO(y9CD_pwuQ75fSr$H2D?kMErRTv;+50=WRa6=zw;=O+~D`074eMM0^KY2%_Kl6S-<_GRRDuD5uVHx2IKVy9@ z!hY$Q{{9#0@ZcT8By*O31ri2Wd+8k?gy$DGO8GvkyRN8l|7Gd!IvsQ5dqB)D`s<{A zm-jnsei7@Ja2`&+MW%2Nl%Mm^669#1poHuvug7Ah`GL>_a`Sd1mg<{*{6(g zDL@{dqN-ZCf)e{PF)t5F%h7L<`TAUW@ptw)`^R8522_+PlAo@?Z(f_yirfE6+Rw#O zKm0b5+Rt@#8N*TId)n<2=P%6?e3*~JJ_`w^^F+1&aV{40Tqx@{eHrg^Q<-PCTd~zN#VXzRhwI=Y>EYkVDv4CGrFKAAj}T=UBcil71LJ?Yt-1=gHY> zlF;$@vZvo9Nn)fQ<|*A-;8YVFvZv-hc8taY`ZJC7>y3rKXQW?^@oPuI6T+wesm7Nt z;Q%Y;2jt%6v|-8fkqTvgcBrHupRW~rEtsG6q@9g)1H}9+4*74 z$ak^K6DA(e-+^x1eEkeNgdBwuj&Z>P`CyLVLHa?CYmIOh1Oy@;@C@r$r!UJlU&d$i zr2Voh?Qe|D3&xk7eeLpLehBitAoD#~*8%ddTmKg=XRf@!d`v>-hw>%->gJ+XDR;nc zLyX%>K0X)(1VV2JzHVL7$t>Rzkq_gaTj;}BX#PbxnaNk9lcbw5{-4ud!bfS#UR{|XMv2bu95NKM`(Q8-7~1)W6kXHVSIj;;M*v6j(S;wQ|oXLj&ynw z^9ZZ8ejWMXznGtr@B#_HQse_3SHc0HH^3(jxUq$;|9)#r{RQ@m@i=!a`U79xNYCN^ z^yMAXpV#b0-_!a##HmgF_we%=V?3j@b^3dAKV%8T2QG#mkm`Be9>O%Y!T186Klyd> zb9}zlMoB-|XMIZO*x^}f%pqE@o}AMRa{$EnKGF~S=*;`M$^}2x{h)k##|Wookx6$2 z#{H!nL3&{Q0mjqoLJ)xkfypI9etP2iF>If+WV{;k@%hu<%UP;}te<@!{F4nb4{RF&U8}nUYtJIhWK)(d%q&iP)edG$F9|eym z>-`-N5IEm}U-#N0xqhXwwCk2g{V-!1$u~NO%ZKrI$QLz#@H^Vw3v>>KeWupi z$vO0pV;1@qG7o`#ze4n%3U*`0iV93`qPWkViV16O7z496J3p*-b z>>izdrhIYPKVr&P1j7)4$9K;v;PRzF^o9I4vxp*e&Q{BNO1{b0=?A?7E~jxyz8|4P z@Z|~~_Z`V+68^-#`Z*@yu7tGEko<~tx;RJc!(F4H zrcO&6set8rK@F{`iod5moU#6-SO~fT$Id?FSC-F}b%5nkzMOaz$+v5e*#7?Z{Kx%= zEc!$Ki<*B#y@7fea+v*kNBF`yx;U4$K*GBk{RcKPc4qylLo5G>Uh$^Q)}xc{H*@_c z?|*Q93)0t@aTRC;kkglj>Qnc7v_<+#yBT!;SNkPE9}w~bK6B`P6Kw4t?7wkB>)&fD zx+_HxZSVe@&9u)wobSy03C#8VgH z&s*1Cd~q^=%lL;c`TK4f--(CTr+e*n{zm%@5aS;)!8=dJC%pbBar6swT%=Iq&yn#5 zNA^!6zb=>YAe7JG_ptW5JVW>Z!Bf;aJ)DM5tq$b`Uamf|+ipDmiu(moKdqv5-p=L0 z`f9I(U4D#@!~|h#U90pvKqqP)Y-(Ic$^+z|JSlH6Zi0H}OIf#rdcY9^-x}fhAZ$Q{ z11{WkMB4etIA4|TZ*!jw&bRgC9yg>rAkMdq2_2m8V4iP#AIfE^kHFU2{dBrP&Rlun zi~QL44!!vK>G7eL>%{KjGLPYafB}IA!L^QEQDhr`=kr;;_k;4?lXF_pz6Ip+ops>~ z!UJSoYV4qNN_$JV8mz-1=f8c{etvII^SX7afI$NBb?0F>RcoA+m)v;;_`2((SGCm?VRUA z=`Z)(!R`S~`PE2mpSX7p0gX>qlR7% z-#=Yn(8~;w6Z(Su7aDr(2*L(Ld;|~rWz(pz{iFOpn#QlZ`N8<3*C{jmA8ptn=%BxE zmUCBBOHVhX%L)Sz?EeWP+z|qp?*V@33-kdIANUSC z8iXD}AJCN_u!EBZz41EBKS937`EVZfJH0#b75zTcF8{D%9VaGHqxv`PF|H!*0`PYz z#tWqWcLdK>sLv!m($f<@VgJa_FSisuN_o*)@R$H{1K*|H^Cq+Wh!>ObmG5Ry`VR=! zXL^Np`7yo{69lE`pUb{{;GK_f8Am}nXNmoLa{dYQvQgwrwA3N6*JnguZYv$`2my@0 zRb~IM7r+J2e>vaQze$cy5N=P#C3qa7PN;t~^uYA~$2fUT9FwcqJ2H+C8%XQr$WN2^ zvE%5O{FavK-{(twbu@8CK1Sywh5I+vTctl&HBPaotpD^%u^u z+U~iYV=S=G^BZY;v9fH%{&IQt9>`Yg&HGv_+;n+xo-(yoY=-QcKL|NQUL# zOoJNX^jt&hDZ|e!AM@hfMR%)`KaJ8aJiqZhW$5JlyXigovpc5CcNop5Ko*AeB|ZHm zbXF+&BIEsZ!#>V4@)zVMwI&_l*QYK_yMM1#+P|%Okv!Lg>i@3V4oK{z14R30rGz(? zei+JU30B`b>E$!Vhs^de?9yy6>r_w*?F(GSd&n)4ipjpb0{6i4~fE=%K6BgBWLWgukZJ zKF0m9EhM~!gq!uimmNeea^3{e|Knci;e~=H3dB)yNrVsP^nHulkA63e2kpnz3GT{ysZ&`rG$eo6T-fbegnSEPu_pHM*3Gu+7}-Vr1r%vLH>%nnc2^3w0|3>+mCsF z1?W$dc^!9zAQ?av6H$mP4UVX;o z&Efp@j?AC)`O415tkn6?2{~sOb_0m{bCf^kI2)K5DeZD+l}=~q;d{}iC*k?>L4`37 z?@D+=>;d{LmhhjjoOggV@K!f6|+D-)A{;1#bqBgUtdb~CVO>V_Wo0+O_@G=nsbhm z`97YVGiLmMW8B)hH)w(+80@a*$9cbm^UoTozZZ}JCh}kfWGhG6%NNW~A^$}6-?n#t z>I12_)P6dr6$sy{^{6js`*S56^Hx|tS0v#b_tWuEzIYNIHJ>$0-unWtJocL@Vf|D{ z`FlZMYTpbG?r(K_Y5nBNcYs)*S}x%orN0(io}PcOe;@tw#u7hXN8*XRj)Wg7cwAW* zn=j#O4%G3T3pJb|;U%pk{6MYG5()2Sw5xmxpCju!ptlPp9O+yp&##YZne6||quMC; z^D&M8d%I<&)<=51?fSv^KlHO++FRI{1-xI1Js`YDUX1RiQ5@{6UF7R3Osh!@3>MVf)!A<8&)GP)CSdMK@~S zTocsaevw^2Xx~6TQTz8XpX+SMOXAN>{#UA+0k1wJ5%vk7rfY{NQ>E~0lZ)6+? zbiOpgp`WjfaIHP14n(_0@H7@g?Tm0o!aH{qJCyiH|6US~d<1>IYpi4KD0n6q@Uwnf zljq+`uqu}P)r1royFOculyV^6N9(7SLuSJ1^iU?@ zs<+mdBZyWS;m`xdX>slu^w6tN?C@C)iv&+x@Wk3{{KXP}OHI+U(Dfu70CMB`*Dbw| zsh^eAr2Gi|9r_nzNPmfoRcigclKa&0Js{TKLw_5k9ECnWr-m`FikkCH;TQ3_xx?-e zq?_0aH(A)dZ^TD;;S(b~M@Lsr7oF9=aPjvN#EmO zjn8=^N3q{R#28oUZ8?hlR{B0XKEn4IffmEpSYfnYwD{JXq`%7Gj~Nfg=V{h3f5k$- z^NV-?>kJ# zhuyQf*nN!p;z#|yKnJJ(Q?^VxN8po>)Jw4bmSCN$lz%O0yvn~LJ9U3cT-HlKZ-BVJ z1^T@A)Cz<#CDU>zjv0sHbC*_Y=EqT8KxyD9^L*6HEPCHy`kKKcnG zjrCa%N&M4{@P{S5fwV8szg-Es1~kVP?>*+jdy@HI>L0X!&Y|(=1g%fP__G>h*DvZH z=okA3%<~IN+GzPvKY*?GWZW3#D)QA<=}-8Q|B-L*mVODskxu6Vzr=Thz$_yi>36Es zGl}mtUj-6>uEcjMba;t0uog>y1>@uxzl9ut;2&_+k+ZXH~ylhPocy= z#|U>NJce;}p<5*3@$TvJ7E5>(F!kS{)~naq^gp0K+4fF9njSO{lceN zPTbd9^NDcizt|WrhyK47eIh>ezr_f5M9`N9rsIeH%SAuH1O1QbpB^9jzf|;(_^#l8 zUdnBRL;uf8`Xan4{ewREd-jkw+l1@KT&W+gr}kT7GJ2ELmOIg|f9x-V{r9gaa!ENV z?5j=EjzYN${YRa@Hdye)U)K1jcuTr>WV{mXw>>2Mtadsc!f81~(hV0pPPR^2Di)J& z48n7CIMO#E_?;^>K1br`p?+Vh!=b-EQvbRVj&`?vRtZ3Ez*X5_zH2Mrd3{&X$+|9X zC-0_eq{?@0@9C0H|3`aHdGriT$KTl{WL|>D*@?xJ{%ahm>A6?dQS6H(J@Rg% zHadAn&Vwp`jn>PMe^uJk&cpPMyg6R+0O=!6?P>KEm2Bi6r;ZoPR{BUC#eO9P^Ku1O}aOnG2bR3TN0ny|7&?~Kz^!w0z4u^Y7+Sl=`>nQeZ2b?sbqt*WT z{0eqxA9FiAtpAm*G=GriIeO;bJ zTd^+(zW3-i`K1!y`I7FxCI5op^Ec6Y7xE9td+%dfFGIe(uEtkJwArtt_^}Ul7}MDx z_}#aO9(mIqrb+%yloNmC=Q;XY^(JKm^8LVXg1#qTCicd-*?lJVQ?j1!=Oqs}Uw#0t z_$|9QT>h8H{L>+ne%^&j6&_kY`9<8* zO7O4NFke3CDdjol4^Th0ka8H~8ATEw>rT;sDVFdy5+CQzOpx$gqu(?`!f%p#3ixMA z_yp7o?`b}L3HKx%@n=c+e;P=e5)N1*&mUZK;_9&ehsyebFFh&;R|owkca&ZK zX#YU}QR{b>)Ytr=zmO~RA5c0xZnWzT$2^3D7fXDs2lZur$506`6Z{A#_LFV_@JM{< zzn!cDg5IEyMb(9$7d51+Bk3-a{ucUqNUyE3z6s&J#9t!oL=cX2!MYrYrbf*^=_77` z#(HRa=)c}LlFI&uf&SyN-UoIMXzJfL+GC(I&}i2||4Z^TU9{iw1y@RUgS ze8C6!%IG7L5T|NoaiT9Z-b59|x@qB*l!|CR2q zT1N(vxGdOT7aynfPu+r~1H}A#A=OvxCX!)uJB07C@;50pgvLMkxndW3N$r6rxxr5G zd4hg^kz4vhuwlqiNlMb-mJ}Wxf+NVDqt>gIv zbxLwN>_LC}DM$z18rZsZ0?C8l3|ar-XQv+Nlk|kJILV3M43Q29>)JH^{U!t7kCM)a zzq_Oho)01Y;Wxvh=$X?EVVr(pesJ#@-XlFrcBT8{$^UN9NBYI+9sAzIZy5i()L!$~ z2lR@GKj3CKfa3cheQ0e5=jY-1qoMVZ^+&0(zVz9CWT)2z>o3%)I{%P4B^@B@51h;J zlB^$brMw26E;&*jKc^v^HM{Occ#aNM<-jBHDLWhxBkNj*{-l{Pb{F!U0O; z#{_|sde3gg?WImh5jsIP{140&{-qJgl3M z^nw2Jq}_t_-%AMOOZp^a9f2d^4TLVvwTE68NP7wVK(DtO;n3?+gfG)6>b$V-a+gU>&KA}^19OeSNE^l-e@b|ZlV1HNhkZoc%13~i{)EsE$UN~k1F5d z^p5@CF5ebZ+kgC|_ERT}EE(HAwXik)*o28A&lu~_J34Wpi*cd?zv?k_+SsYiu;J6` zu=+wi$ydn*y=jL{w6R8?Jblu%v16>S^tlyN z42?=?ujvyGlORvy%=G?LUurW{2|@Fpi=_l^P`L@M3dy z`v>+j%m_#RzE8$o(C$F{;%Bt0qoqn2j5aZJpSfO z`tkkKiO~5`ak+;Y=>}+~pV|HaeKTE=erCHaPd=C?<2G0?fb=Vu^niZRK79K`Z5IgN zTkw?im-e!Zr#TYt3w~e1k>2ZN{Ku8`&;=6zM`M0-f`ot9LgP<-p<#)HKZf-Vxmuzb z5`Lx7#d-F=gwMw~)vFrMED1M3TO+{lbaWw~U#E=qCwVUAKUyS(^(X#WI{#_xdMzoV zLi){+{I?nX8d-M-a!o`Yw966x>K=ko@(225SdXkE9O*qp@*nWj6+|O)G#-S*4hrk1 zhf_B{>BbuIVIOaxe+U6f3kgr%*SA*Fhkal@xG&*tBtF*d#5d~r z`%8F9GvQzI{Q(jl1z=a6L|9bk$wN7RHkS0wm;8A`FRB}_2-4S^nOXYI7QLZd1Rv)5 zEu>d!-|iJUMWE*mqG$Af9YOTDgabeHhJC~cFOc|m$oM<(6iWEr5{~$;gdZ#YF~l#D z@K&;Z7W3A{5P_%Cy@8iQh}=f7ppD;Sa&C z25Wu(Kjgg&oE+C#Ct9+dcrBhoNSb7wXqQLK?*^j4!kT*th`k#Kgi8zrVqjTBfUI+Y#QefSLSRvNgz#F- z!UZqnasU7CQB_?U$qo?q{_eI^(_N>kPMtdEd;Y)goO1g4Goust+kJe-UZeEj^SGUU zth&p-ykGtMy+3|#$NV+s2lI1bS=+(!JGqZAF=!Ihg{@#AN)Ta z58niw3){oC|HKOHXKcTCOpj+!&h3-7A7X&H{YL6}WU%n(od2-z8_E~Hp7!s#X{8g7 zpMBLF#`c>MC%^q>*-`3^^C)_N+wybX^zYB_GWlcluSbL6mr~_UU!O4h*ZI!tA9B97 zdR}G~ebnml^PTTLmMV9>S-GyeJ)zZev+4bdR)3$Bf6Cf(&dM`Z{;HInFk$7dNtNGe zn(d@SNQD^<~1pMt%jh^!hPR z;(FGz|1RX)VEaYizZ?75*3cdvU;caKdtkc}aU<>rH$y^Wd&rJI{U)q;gRNuv6BiC( zJsfNwv--}h-Vkuxu=6$N{)V7#`xm~{8*qEOU4Q}JOAk$aSYq1?EZ}xAYTUCzeE2qe<$m9G|7GlReIh@< z{L1e7e;w`dWBh(3b^NWV{l3?ApMS;mksd|=V*94l^&_}GNId`k)V|Yu<{ZWno3E#I z{u@9a*sipmQs!Udd~Cn;((d-9*E90`yFKVDZWnLuKL3t4cJIqz;*XEJe?MCJi=W(S z{C~y-)ulhv@h3j@wfN`!?{Q%7^Dj64_%DqwegmG}+sf~krpEKR;*}nE_Bx(#{Bn6W z^f$INp5<|9ug~L|=Ws4Jk4yV;#;5%^zrQ0z@BdtQnA3%S@A|s`{j)pKM-?^`KjG6# z5zG^N^}m38SpM@H18)Cckq;-)7HvCi$M{O}!H=iq!+!@oB;()LT;EME z?@H18uchQm3FGH=^ZR>qx_|Pwkzb1K0T>*~<1+X={OL10ugAXs=ue;OOZtBe^Z(wn z1pNo2(D9r7-=g*-nk66qcKqg(R-fY#>G?yEAAjB@l-6@B<$pU}ztQGdUbOYo{i-(` zPL;;xe#PqX^FysZ_;{+k&&ty{VaCcgZ9b^`(@^{J$-YqSG%ugD^6^ypl$B3gx!bvJ zSI$~_+AsWswbSQY-(&UsmiLd@v+uL=g;YIHSox<@^*m|izn7{fnlE7WoV0NXZ5-{g z%f5Vk{QK#L-}i!@pI^wNvxm2O^%9P-x%w?1$E#QdcTpO0z!x$pXm=e4D57JlxXy%JZli_3Hy}o=&gzQ|ZKh7um@9Fz@ z1^*5G%j@`AesEXtv6J!s$p>}?52onpn$`IDh2pN@p;Z0o?HxZ(-~Qcv=RyYf&}Hkx zQ9g(N8=N-#gzr{5ck%DvF1Jbh{M_&Y5*p;}BYM8<;LmgU8~<2&{xsw{H<#zIZyCpv`&+5~FTAq*_^Y80 zlILIls_y;Y8|dEeLwl0v|Ikaj_b&jSNFHyc?!TSdKbdO(XJ6QT{mrTNoV&66_+zR4 zx1;_fUbGGWB)RYQg}3p1>iTo$&s=!Pivn(s<9JdZjN|z!UoUockAOV*y?g)hPjOI{Sb!=A_6@YU9z7ytIgfZK1v z|KjuPdBKZh`!;|6UOYdxy>|YE8?cY<;ned^+Wnv2{i1-|cj9{1w~TYSUFqX=@81vp z?#Bh zhcF)xTN)1x@JPw}za!QEX*}?IQpbbg?(6?3HQw`s-N(NTF`nf8{_dXc{Xa`x|5w;g zKHplZzBGQ|_~CgxE4TNi+MCAD(|Ewz?eG^q6SwK5ss85r;mP*AJ0(95F6!$4SEa7+ zN%i;N;rWvI?9Zm;!;hxg|Akcld~ta|!$0()oWr|HiNPc{slB^KpEi z{wU|=T)cL-Y~O(H;QSdsz7t-`_B8&!M>e0gv;6sAT+m-B>leibRo$Qxn`+Xje-_Pd*`M%E!T7C!GkIm-??Rl&x;O749 zMcj+qW%E(Yf8B$z=N7zJ{nMwv0nd&tvS+>t&xb8-&-^P~LVtG8F1+&?+i#`()qkx2 zdcnxrzi)ZRIR zE3c&T+3vUUbJl*x4c~0#_j`M+{U@#bPrN^G)AqnEmCvmfe?NCj%L`WC^7~pnMJxY7 z?;p!YELnNu&E5UBVdXx5#>a8f%75&7J>Sb4R(^3v%RRs4td+mR+7nt{?Kvy|$cokT zN~O2Qto(26dENhf+{*py7W?7ffAZng7V{%cT7HDDkM|pIfW3u9(vBPc8D7x)K<&xL zzqx*VHh4pnZ~S&U|Dw@_ogTd78f&kW_t=4VT6y?69S8jz1nKvGekU62vWwsC-tPU0 zls^5xN8{uB-?uyXM#%f*_0QsQlKThIpydAdrtVix`426~gNwf!UsHs>PG0}HgnhmI zgS&(8fIYDv=b!r~#LK^bckrsc=zvef*Sv%JE>YhPrtVMul&t@)c>bjS(11MVe(=p$ zYvG38;NS50$Kz|h@ap(C>-kR;IG(uwO#`}r0oPyL(;IxF?T7C`dtZjiUeevZZ%Ot4 zv!It``|%2+uJ-n%uBZRP{puQOs(-&V)&D<@?hQVfpuY=0v^$uCLF&gZ zUDF#pnAku6!rtI!w9k)cUJ4s9QQx_nIGFlzzVYv0o_*(Ack*wzJ}5u_9#yUbIvET_ z_TAY;{k*UHFX8)fZ*1>QjmJ5hA0+7WvDEeFQ~N)WqK}{9BP6bW6UN7%m)|GRzU039 z^A~>z^oZ>jQuRHay5HBN#^ZNW<2#w?U*0F}fA!(|q`jT?x9X|(y)Cu>+0^~6N#&>Q zN$scovy<8G{`qqKwMz%O`|nftcJF_Fse6BLt$Y8w6ZFXb`PS6){aLEM*;IeNnf#U* zU-$o>0WEP`Or8Hdsruia+ApKNoUi@+ z-}m%CvJ-z(Kl5|(`&2Je4^Jof`=3*Pvi<)v^(XJ2)SuL$H=#dICiK@=QlC<%{!{cR zb!t+dQm1|;^(l4gzqCGGnCl*o`ElJ3UqW5h8~lUqUxY2e?JKE&NiVk;{|7gqudyZd zF^?zpG53@DnEOe6%>AT3=6(zOmb5pvv41gPfBYNTD~bKSlsx)yN?+VTdWJk;-TeFt zp(#%^x`VAw7Q5%D>Czt6X?S z%gGN{VJwKn@t><0%VJ&~$%5U`k|!R~v~>c42^x7hjT{*~5qk@^mw1J-Ys zUaI9!>F{7ZTx;jB7Cdd`_gMd*`w=~#b}>IcZvAu4=!*Qr&p$k%^>{h?grAFk{sUT1 z#>)5JYv(_u-xF5;2j+)+J^QVE+5JmWs+?e_xc#mp?N6Cj4%6n4vf6~ftGCuM1FIoAj^@Epx z&dUEdwO-CMR(?yWozGhN2U7D91Cw`um8!?{F8_8{_jB#B^Y`4;UG8~$H>I8{wDZ3z zRqpwnx1{RH*!f|q94b^keW~*OR$dy?_JlvF-}hMgYpfqG{g{@YwDLhKKWXQ?{&>Lp z`GS?Z+`nYw>+4Lu&+3`<`tAHDt^A;shd-tFecH;OO4ai@EAKTqd&%l~*2@$z|x zdrTg@>>91t^E_|1@;|rwFa5wC>91R?e97Bs<$YHE3s!&dMm>MR${j}!?$dIYLq4PetrmZ6XcKP(w3-rKPk3L`cKE1!+_w6>$ z&If+3trv^374*cRhIC%Ga!Z*PH*=%G2*vecZ~Q zcDu{$nG05a!rN(j>U~z8et+r{R-V>(KW63MV0Mes>5p4^{tj)wm;Z#7pLD%!dh>%; ze%hYb&;Lm)|DfqpFaIekznCijkd<$_9=H0RwDN|vCs^MjB|mND-Nn)bswFmEW4G=RaBbdFwal`=7V+Z?k&N*|=P^@^80xdihgU z{tC+zzhrj%(^mc-tH(iJcdYyk_FS&dFIoAh zl{=k3Yvp&R%3UwrZuIZx_n5r-q>r!lgX^V7O@90Nx7hg)8$E|VYkXtnq4kfS-)H6h zsdCp#z8Dmc$R!^8??XI{(gFyRV;rdH40- zgLqW3zV}%^g5UE~h!-V~i$C^jah-<{?@AtjivC*S_;Tug>G_N4_c0OwPvQ@rpYik! zy8~_ypgwOKzt>ay%-2XBXFMzfvw9ixH~crhnXi%DKQ-6A&-{(#aprF%_g8wl_kSJs zL-P1^>bTH(0#Dh4@wu4jufLz@zWxDRpX|?5ss8kM+wzUO18$xV@-%*P^L&uy7vVUz zKfrh<+t*I@-(RGTGk+v`KJ!PC`<^fI4C?0Q^Y0oj#(JaJo^SrgGdP!<=YL$fX?MWw zQMB*e$K!kcTxxuOF}44G@L{rjA59%k=QDnD>iKtJenRs4Po|##BKRYD{D#!|ms02d zYU=#ArTXvj)cGGs(c33e*RQ1b`CX~@KaTw*|C~(G-{(^I^Z4h}dq6MPzCTsp4`V;c zKfeO{X8w`)K{}uF57FM_c-=A?pUZ200`(==tNo97-sJwvQ~mi+>Ulq&8qbg7`iqHp z&u^ys&*%4gd*6%egI|x^^arWypG@`7`xm-9Th z2^N3$%D4S#(!Y7u{F^=f%wLM}my5rk{=vM}<)mEU0f;JEcuR{jOU3%ndGC!ZHt z{a*e_D|fuy?cYmQ{vYhVf%VVlto%P)`!AYb_2*W8((TG$)aQ7{%CGCyeXl0~9r1HR zsvNIUl+OoJ_wBLrU-$c(|8b+0`?^5xPrS&=m&_0F@)ukA&v^ajXWV4vFR}Lc`ED2g zbqbHX+0L)}^ICiGs&x6hEamsS)XG0??RPu$WmbMRRgc@<_nV#Q?Rll0|I5~X_djSC z@pGHq_vBA&e}`87N8WEXj&66q)ab#-Wxt)j*X&kr=Rqs~Mr-G#cWeFkSotfxp5sdY z%U1sHt=}#g9&o>vyWi}7)k!P=yq)jyflVuavyJ1)ztQ`;{r+k12YW7m|G{TdsPw1KLi;7x~FpzXc=8*N<8G=k0v=ODj?%Q)$(VoJRM*98!P`GR=@Y>vsUi@$HiA``va4^FEBqQ7}fF#E5F|TBx}#6 zmA@oa-mvm(&A;?mA}Z^8N61 z^;^Tr`|SJ+f2-qo*2%)xW>i6Am^)6g%=cnfHO_)A%`gHxc|pe zNcxXYKhq=c+i-jA(l7J`UrGNl{A^E<^dB#M7&-Tpryq-L!hcTx@xm|lboq}LJ|52} zpznAQ`(H`_@zN)Hy8Ore*#C0;#|ys^&mW-g*!V9!UH;?#-|PwgIsM1wPxb^!|M7`W z^#n=(@rmE=3BDZvasTgNPD#T5$oy_k@a6cA`~NHEJ0$#{lW)iU;g31J@;m82HZJu9 zN&j*A_j-b)|9IioKyMH*$?LD?Kc4?g&sWrcT>itJ;A;M3_y;{f(tphSc~6k^AHxsy z1pgHOG5q76;A;M3=INf`E9pO;{L!A^f2RK!{C-bxHUIG)1 zADZgD`|i6N1ss}R?bH_QwY5&^SgE+S**Vm#tmfNq%-0T;))({5nMQLlzx~Ee?Twx4 zOsBkBYAhAnN9v~!mI_DLX7i<1t<F~Ji)+1ZQ~8t_!@}9X1>N(Boy-1>M6XaA*`d_XghYx*c#1xy!u}A?bm#Q+{L=jFL-^ea z-w^I==B7hD>{Qs8F63KTY&mSh*ha98VjJt-jecr1xJ`xC=2WmNrVw)|pbN zfwyS1SNP{x>1?TRY?FP+Un{M`W~tcf6zgR+rCDwj^0h7YQoETilp6V3rO>LPf^q?G z=m-}NfEvp6_H+mu>J7K@XQy$&=`h6UA^WWlmo=s;wF(-))!G+s?Y=TrO)vbE1y?MCKA+6LpXB%6fjY6|9oGUasm13ig=h_CrmI|Pn zt#v$#i4Q? zY+9_fW@na999TYtlM3~%hK@jZw3RQHrh0`^hja3UUagdC`D&P*93|IIj*pRCD>cw` zrO18^{w>^+7_-?c=^K_j0`xVh_8J@ThqcGQy_yD|+Akc&at7m=FJ{pcd_ly7ZJ`>6vC*RzLM6H7r@@>3RrqDvakX-AnAyWTFrP0ccWZKo%a1mTz zZBgiO81G#;e3cLD7-0aWY`XLHYkAEDU>LOP@{Aky1!7aL;9c` zLz-W&mMEmjUSXpSQYkg}DGN^@m^m1(%pAEF@9@dDI}qAR7mziTa=Fx;4r>jNBDx%; zhx_20+*O1C)?qqsR0;MxgWd%*73%1%>5#GlBiqat+DowM&@`yR3HQTraV?{WK{ zus^>k6x#wtuEGQ?~iG)|#*K;!~@v;m$G4Scwi-#D}0*;oZfwB~2S zKAJ22TiiVeo+0xI50Sy-hj0#Mp6IIHu>WxBJUr?p zWBy~@e@ys~N&7L9@gG_L;WdwV%_Cm(h}S&gHII1BBVO}}*F5Sqk9y6cUh}BeJnA)% zdd;I=^QhN6>NSsg&0}8knAbe!HII4CVrsjngN3sn{oFNsf%F-{oo574_ysXzBuuuawo=fNBzxqR+%@f4km>D!((# z2Wz~9A{$XvLPr$qZP*zY|6-+7%;s{L@eIwEv212| zR19tr5r=4#n~ccjCfbAd()pO44o~B*e2DrMhN-f#eHfM;IewwmDmCfO6iyw6%qShf zAd)~zO=0nc+R;{Nera*${^gaW+0_!vY} z6X6Ce&Mh8ZSX@{O@2$Ymte?TPqGahfsa0Dpkq78p;8(a0uc3p5N!tjPEZ73Sc!8O_ z%@Ra^4V++>Q|8g$1EBlUdA#_q4aukM)=RQ{q*LmEm)IQ~qG>53ufU|HUN2B{gVyV3 z#J*~wlV}hcZDSZF%oc^qE5C+w_(esvDwTlCFcxhpGMY?Px_J3QyK=fjS~ucHp>YVD zZM+c>^15}TM1F0RsI77`JfP}qCN}~NT4-)J+Vvq6 z*e}pL9-+0p1()a4+0o3T9BPy9LG8=<=FcN@YbRD_j#=p;D_x#jIkdQR#4K`>JbWqG zc-1$qE*-I-YcMOF{Gl5BC+NKceFn8eA|tWT&nUH8^tU0mK)mpr>!&cNjY>mK*uqg- zSn{Oeiw4xuE0JE)lIFEAGgE;COfb>JW#Bhj`<-Q|8$QHyfGZJNp5~=ZDnS5 z?!e6Kz5V2MxK7ROH^8rtm}XztsCLSg+7ua+oJY2aI;sp`Wuu8VcMig9g#v?K#2YHN zr71W<5~~c=WfwF_SP28eVh$S~X*1v2w4Zb#gpmr>3YsB5AyC0!6t*o`__aFhyTT?| zcZkGNZDlihf^is`%1?Mpr9mEASe`v`cxm=t;im^yPaJ?F@4t^M%+C4mwS~pGN)^q5 z3dF5|Ght-u&{ylA@fNgkD=b23WJhzO6XO#CGK`PqCWj|S#Pt=yc#J9rqFWtN;Q*m$ zb+=li2k^%#Bp9fLJ0xQ0N;*nwaQN2p>*c}$c%L)PQZ3&ST*l5R7sOkYQ#bR?BDLTa z#O_wUc)AEHx`ys4cD7J;nNDj%3`W=!C3KeiXM-y+X0>hNS|46Ga`gTaxxul);YlY} zHE>9{B*&7FRis$pHlq~YE{qv?tMF3AWYFJ*Dj47NUAP4m4aPc{Z|9Y>LOg7~X1~R@ znilj+?5v#qE*Dr89;f8?3ZcqrXbY+uQ0MFWz~eEm9SHk=|FLhTs)H7S%i0>EoDg8d z8CJE}5IsNmH-oOf%uk=CU#NPk)!D+u+rnEXins@ewe_g-H=){n3X{CG2}l088EU2C zLu5PK+fMM3^jq0j8pI5$FaQI39MGWvJN*d((8L{~m2rpwqo7f$4b9-MZ)^~h92)_| z2JV6A0kWV5`t$&wPPK4v#F${m{CWkls|BO0uz99g2W6<_5F!d;-vTY9p-B-<-2kAE z=mY2;ObLy))j3HpqdAz!n=Z^JKYO2uT^S?ds|d{f9%> z5KloI_de2}*g4%_1qf6PhcPs`v~-r-0NZ2(D5G=%g*y$ZR&z@z03xQ|9G=LIj7^T` zk{Fg^X=h-mvV&HMjMCCuEN#t*31K^jIxu%=6c$RWWDqd2psnI7!r7o`Tk##3KME6a zfFs_d>{wlxf78*0wW$#19(M@dOogW)mmoX&&|9UgdUIQFlM2i`4xT6=9H1r^&gbuZ z5sarSZMGiiG~#2I(|H)ra7>g2V3@%ohOgl~A~2ciYB0QT_F#>Q3F?(*?O;tQ6s*l> zHr|$-l#0jb7!~Us^cu`ADq3cem)|>9;ltQ$QON%3KvDIc6H_F*Y$_kK^`W-i>B`D;9C^ zRHhjy7-R%g8(DOadY zxF@hV(IZt_wa{hlt?Cc~kt(D+7#Lm|%ut#x&YFu$2ag_(^y2J2gueaQvKR~8J2rFg z+=-dPGb@YSn>l)L0cPvm%t2s^txjPxgd2v?1X`PilLZ0U2Hg_(RFh!6)7lo>AbJ-5 z*vi+oA;xN_5P?wkg@FruLici^?tuc^^+Mf-IJyo_b`#8DRX78SAI>NLQF@ZHXmWzfY0Nim+VUoembx;yPnIR4ElFrE4ahNyt}4a!7{h*?Kd z5_eF0S~PZyT)6BQoCS_QXu@OWzzT#%ejN@Sj0%sc#S?1HC3t{ zyA{-hA#!{qso4+1!}J3Tm!W0q+`s$0=B@C%k_q2Y0%z#QF5QDbpZ~;mNQqagTD34o9hqqnPwEp+<2!V8aym z;`v}1bs!T(Ktt}uzGgHk5O3L7*a_N#;MQ5tg+vZ0P$G8@5)Li^oD>-T!dfQcOgx%U zu;{=R2588Xd9zJp86G5Hj~2qFF&7_OSy-E+N=R_7b2UkszF`rPrCmXkNyMy$VcbOK zLxLwdTWYtRDs6*vTds0P#>Xax$FrjoIl)|z3@yBKNChh_YNK~*LevXyUnRT9F3Hy90ih2T&;>JS?| zS_190$TS$DhS-!Kx=KOyk(-@1*02nm5jwu7^<{UGwR^OOU$nqXrXSoK+lOZUjqkvSnGoYoL@la_n)w8Sfi$_0d`%Y~^1 zv?uyYE!MomX2|R~0+|T2wb53oObnB{DePM>BflmTM>_WXBBnF6h^K;@DZeCABxo%` z-9h#&VpeorWuH{iY^(Ga*B!<=VlpxADael;S9en6d~`noZ%L+?Kz%|8ShN|6hNi^! z9URVDecGKmW&5dKrx*7xlYVCnCM5jCc3m<%Fk%P{us!hoz{V}G2i#;rNl-#lWGCQf z2F*pjVx+;KL4nJOFr##k@dr`J^KEaf!v;g92XLr*ZD1ZU06rV5@3nAl6=bUhhjFf0 zuyEVpwyKmi$)$z^YdxMBn0)B<7GHNVy$!SuEg<9%dlkMa{Gl_d$6y+QIN_@n>h)6< zT3g6gIKB?mRA>)~;~Qoq#z5cnz{=9h!P%KrF=y3eon1Pzwz71X9Djf?(TUZgtIKmo z4kjE>vh?ZRViRb6rATgVBXw)<83#N?Q4PYkLtlaw*-sEc2-8>7YzzEMfMjr*9gVmPj@` znafP(CMHKmGm=R(IysgZ859TMHX0hmnW~V{N`oPiEDF7hgce;rvARXZ0 zm;zLT%BA}6dp%9-ezC2ou1!O#qYa8KwKY+S-aRqeUwrRx75(%pyt*A*))ZOt& z3K)BUC5_JoOoM?S;MITx2({@nB}^IA7M2n=q`q59ghmsi(cmzJlx7aGM@q_fVdpE#LQK7_uWW$e;pZQb zG!e5AiDUru^jndWr=y=Ie5&Sp^!PPk)CfMr78hx|y8t#e3!wZ+CLyc><*V4Jge?Oa zG56(89c#I_o7kC}rq5 znAAuE1i25YNMVKoECM($Vmh9M0DyPstO_rZrY^KLKi)CC)CRP*I< z?;}Fs;K^1vEhP*o!UitE@Y)Oe4?=dxWUbou;JQuZUm#p9W`9XTM(oL?Ey9t7H|GLL zg(N~VO)+0igRa>-n~XSgk<55aQ=C2}Bjs6EW!ERO=gE$6mO>`Dr zw@$2b3hH&c>$%qG`7OrL)+xyOxMU5tiy=N*GRPyuW3h`N7$k>RJ#$HdC~UM&Jkmkb z5rHR;(`y#~F5GI~knZ1Wa8oF6nTs*oqbKvmY@(M%9 zC+?k_V+iV*8n!7XpkZ(Y>1#%p;w?4 z{xn(#?gb}w7xlA9EH2P&M;vs5b+30dC{hAq6S?%XN5mYF2NjFN_J^V~4E-8PufDcAUmolX8@L1Q^0Y5;9dUPE(#r(|8PoVpdUcWB{=> zK+uqTfXsMJT~^ElnH;>Wf;U>^=!j@Ax9}1GWCET*-VXIFZm9U(8#^i-& zhMoWgFho(RopxiAO*Ogo;SX(z+S$_Kl6WU2W3`HMVw+t}ji5&cKwXy$FvZPgjnW05y=6iSWjA6 zbd_N~QWlD9w{V2wapgXQ^c{|A=7~^h*pT&1g-4l`$E+Dq`a6_`S|-+yFrE-9jHf98 ziPZ)O(EvGDkyZeO4^~G{Zh&abXcR9lVZ=~3Ao~G1n+%H3h=L-5H6o`wNV;BvG(~PZ zOyuJ5cy2T|nSqTnGM1gx+|_Q0x6q;m(_OY&YA?Wap>Sv8#o17U3IajnjtLRBLe4tK zyt2dfGO|9<<^2g6M{&d5ei0y29~~=kK%xM!(7 zxFs-3ciB4gLP;mELNs(r5%25^qz$A&X%CM_r%@o00MNP_%w@(6PpLe1XsBHGjwd>! zjGmGnE0r>0PG%Zx!3{iwGgsS)BQl&l<+hNTm1n^H&{xj(5K-V$X|QvIid+#P;Iw8b z3TjG9cQt>Oavh@%*r=?yEc$>mKxjy_cUv*`BKR!PmeajJR<<hwrH!N33*_T~ zI=3Rn&?ZWv}EyM2w=hu6x?0dyTz$12uV?N%XtRm(=f?SjOE5g zMqv@R4FtBU=b2116^Pg%uR{GACh!rVh9%- zA4asV_5;sDrU9CNx>5&JBd2OS6NWqk!~{N$%P&qvi!N7iW1+|hiXlx+_WmYpe6n6k zG(2G&Yn#XnRqUxk^-Scrdc4d~5KWF=>C)vm2i`y9D-iDvWJsY&wa`f!T4cFG9qRR`D;Tf=@IMqzn z1Cnx&=+i-}*;PJ@Wf>~iXov{hS@OC%IFLr@0h#1T;U=04tfw|M#0Kg|@C85&JW?bp z3slldcsxQeOm+yU!!gBe_TJ?s0CmVBSY2CMnTw?WJXh8#VjwORs8p2u>0WRebOIn~ z^&HiTFZ2`3H<3XxvF?jBKgW&H^ih?TKYm69SL|O=$uGc|5k} zlcf>I_@xPf32~PQm?mPmBS<_NL!$ZkaAtgbc+#eQCQM1?aXjP>JT2ZF5hDh2kOK;z zmm|wG2H}}y`u386Zd!f?1HK5f6jRAoVRl)m`Y@DisHV^66ZC6o%)%fs0IPH`;62fs zM!%Dc$+BWSK%z16u**qWUAyL8X&yCi13N1CxiU#9hta8+Jp#hfu4ySmP+a- zf^k_B1ZSn#8f3Y6HE?J=uUM=R&wvN9LtY{`OA-MX;f5C{P7Mk$%fL0cVI)dXk)2|B zRj~zK#{^P4hjh)GB5@K*uv+a zOsb#a#WbSng|rPGIkE&_;n<1gm4*8RB2i=CSYIaW&^O@Ra+M~kLeVf0Zb?RjK%>RZ z@+f1WOL^WEX-er~csejGp{Iogi7umMrhVAoW?A6LA!smd9Ih)za7Ze8tSph}sbyZA_F3&H>?gyQZG9+2En=J#4w zo^nDG?hB9aJ^PRf5plqiQlwi3xY^%-IXWtl4@iN9CB$ctCXR_GAO{3bpw&js6-JGUZPJDncLN>}ig0J3`!S6`41W+TXZq0G zrml%Y%Uys4flg31AZf$zQ>dF_uU#haIp{ zl-UyEG`U($Gm_2H{wUTe#*W9dm;^Dh*uUg?`gwSI%d&|0$&pe}K4T_$-rF&P_`+~O@12n> z!on%z?IUUCrXZRj*pYI@qxw_fTn*7M3W@Lmv@z9w6`4uV`7&?6(5||Ij%PDqYP>E1 z0>$}|@|Bu?3Dnw?QQ*%s234d&r>J4_2uxE3jB%?+B0#pwY((N$pGw*OB$tDnC8vvy zy&)fR;%NXWq^E#w%2*pKl338;aXrRPu&xtwwK^Kgd4eo>~dYjPJ2A`}Lf z&}~4`&fwwniliSb@H6UsZnMya^tENEIZ<_LJB#L^ltwNH4!*%K;WvkKu^ zV4f{t0*0*Ms1PX>)^}$d_dwDTrf`^z5P2d=^WY4Kjyj->`dc|9gbl+)z~r;>;bCA4 zW55--@I&{Lua?@2`G(kxc3>*h90P^$*3guAP+h^;#G-h9t1$-L2$|(holP4a4nPA) zJUx2LIXJTk%+o@{)FUvyL>L&se)vNiWvsS?zp&h)z{J2+P_SE7d)!})R6IFsei#Ul zk*w1eZfODmf+Youfcm5>B66gD4>UhLrKMGq4sjOblw~D&m_P;uof}C6IEzrtd;m}I z(BVljo|y4y0Q9b|-Xrs9k-(A2@)v|b?{@-hi1cT>D;T;AN;0EJZ2WMZ-5W8tjCFp? zVr#NAgWwVk5v4dySKcT?ZPpvgzCbNVSbpqs)WPg~5rB$3fcB6Z0kWooL?#Iq^@t8I z?bi+@SX`&+xI65fs4@n<=(vRptv(k@6FS_lxJ)eMGMTY~Om-lXTg#44Wk#klqYq}r zr!tu?h?!HI1~-b5H*^I>6s_wbS*X$_$RZ)UavQX;8Kstc8k+mq%{VSHBy$6{8Az2t zA2U{&nG~L`pw!7mDiNXLj6bbw{%zygeBP6fqNOI{?XHO_ArQUnLf0MfQ!TY}?HD%^**3(~+k z0V)s(rZzy3Rm@q`Ccpx#lZi8aN4J#la3zx^12J&Ud?xr^7G%K1)SzO}Gn0x|fs9IP zNW%kV7!4dH33dx}Gw+S!Gve?F^d!fLVJ@yY?qPb#he?`!n1Y*gugN3Ev5+{N21Rc< zkqfa5#Zhz~3^x!)Jw=c`x*gUTLV5^AiwJ{=YxM_Z+ZLb-_?O5pS7;lQ`5Sf2J6ukWv(w~dn2z0GmJ~^F3bWNn}(e9V81`2J#iW7$B<8AXi1JR<)56+ zo`XK-k*E(GW`ymKFIO;+Oo(AcBy!5Skvxon`o_REQq{VIV>+99N~jQ|R{`jc-{?xN zG6&;T(S5}TB>*5ZL9pf#eGkdJo?;Ndpdmmy zh5L63=A8i^)GToUGjuO3Y$h{fiplWU@c88T#6)HscJp{PH#wSx2`yRL-LmAUOsq6q zo|v-S51ujB+oDXupbL>wTg`GJHGi}Y1CPV~G>%8Vn)3&JT5}??28Zs)qF0b~jSfZ$ z*hG|!5&PG|D@nC9FMP-m7VH#_iYRC?A+n&P0$)Q~riUQV*T`e1oM4VAL!_tR`Vhi}f^nxM%3nar zy_=c0zUH-iU)R_F`Zo*=4o%&0=k#57??3*~*PnRnzk2j-$!0KV2?hrj41sJ$t|#bB z;~2#zn%q5~8B*@nK-6hWG&_-1Kow+BF1ku9>2TbEjJ*n?l}ru0cHhI z831SSmr5{aYvm4)9m9O{djOJyqQHMLQk3Xrni6!qlk+EK1jz0hrXu+QZHdytA}{L- z<^(1rtM{OpYgm~MU>+8lQIQY<4U$`cdCUWBObX#g&utHh=xC*Yh{&aCO~pU497K5$ z4*_n3F#)~Fbrnd65Mo`TMB{!AFuDai9bJ?Ve4~ZgpNU9p zS&5K&KwMVp3`n$)r6qI*iCdO|FYW3&20>y95{pCSi-#&_OT|@by%h`3(wIPmLDTs4 z;V9VSnN2!jQ;#rY2@ZsIKpX=C&SkSnTL5tJ^p{uychBzRb-16*LO~B#TB~3|Avr;e zTF2{HR7MzyQj{~oqjB#xjD%cNPQY*}C4mUiE?s+?C%j*mbm>aej)7Oshx6PB&yZooKVafe(_3IxS*fIKqy9BhepAkn)^uwvyZWUNOEJ))6JaW)4fl0O^y ztqOoDA!|oBVh|${I>i+NWT1^|ctv(=BL92@IT9n|!=ssri80J_$wDBFj>F%PWm+OY z<6eYsAPpH?;#i9!9aw zs;IeK7zvpV;V)pqS~(%9Fb7uhvYASbMQ0??fJGrr%+CV#k6Me2>_RM;79o|mLQynZ z1wD%tH$(#na>_Ek(Ula*?2Cjzq85?a03afCk@K2Kujopf(E_1<)=aKM(ubshtTGuT z&Il>iS2&ZgIPdFuE$h4^nEY>B5=Yc#z^yOm&QHRz|=Fd zRo##Vn!xTxLzpdRYTIoN?`n4zyX2ZUX8?0?f7YOWS8KBag!W7=x~H5K&*&XwY&PmX zIVg~3EZd?h6R1k$Z&x{ukJJHKCb?PysDYfs$-_{$N-(u(s~_{2V5 z(qBwEEY}zuqBPPcC9xuB6S4#%>FDYTlqW?4kY;FMbdFioSv{KD`DhMD?_1N{&eN4< z8`CUOIi6U+5VMHUEwB@XHsTCWIG^YqXiX}#Vub)TTZpg|O8a9k3^^L6LA2*+D@CNC z<_jK1g@*=ssB@s~fH9R0VbUH00}|=f1ql(hr^gM2BmS}6K0IaNl_YuL0sDi z8oN?R_?sFi(s?wB7Qxi>aM2L823A#om>;4`WN?xT=`u(U*|kGdG#CUfRy44VRnL&q z*7V78Slxl%Tp}c+#*w6&8&yaNht{EsgfrD8W(0O5=KKi6305yVV}U9+k+?ob)X%i( z-AF|5>XdyaGCyE(Hg|$yU~*FM&UR9A$tkcF7O@xn1M754Vzc|IJFz}2ac1xgCd~h& z`{p=MiM_Z>jK$d*!q+1)70;s zR9z~dz?7CW@7`iIJ3KbQRY1mbnDsM;40oiv!5g$?$VbN}Muq`EPmEm!tTTncw}%M3})r)E&4_CH=CCPNuA`Mhe zOOXYvauXxDEKu?h#H;ZygT=Z=CPqdk#{r#lv1YfN?vu&RSG1jMBH%m_zC=U?fAs$G7NYvG zrV_=zXLTt%b0H5|G=-B>U?z)57xNq|-buGc*8}R30{0ITDT+~bJ*WaIk?00!4-*y7 zVE#UG8Q}s70HKBAOLYg>qDgy#R&frrX&y_bG{`2wrIuZxE5Hz@%@?pTN{mw7ro`ZQ zj(Bu5ov`d3$M`lEZ_*g9O+c4VqI3w!G1osron&mGjghe-sGBTwfYpey5D=LOpgo9W zXOISfRmH|fa=DR-QCr1*JewIEf%}Dkb|#z2U`eEj@oY9Xl7lxU3!y}&gfcsD%G8{8 z-c&OM#i4}xElQeie^B)k)gY6PaWq{+bb?xxS3JSw)Z8O*wqmI6UYxIjYULj#sUV2< zZqqE8z31>jMEhhl2l6A(1t2>NsX5jl_x5*%Gx4UdB@CFYM3J4Q00O5SeGP&RboU2xdMAM3)rKwc4Ah7)#l z^Guu}?XT4y(EN@#w78=cB>d%51yk`wF_Sd0$PA?}Uy;!=SR&;vcah;0Ta>|^Ney6{ z#|YCVk(^8^!H}XMiy+5bBpA$>POnbo_@aB2BKADjPu$3;hHjW2i@vBViPwxtuO#Jg zKOam34G0Eyd0i~U6Q?nMUEm}c6p-l^o-07Tf#>EL0l-AXN|awh366M4*J9Z!(I^Sz zG*&-)wFhUS$K<3YaI(x-G8;s^M-AZVEaa%q+2igoL?VdjnN4QWi#C{SP>xf(1Zv;m z7I7Ph8SQX_Oss}(#pZ-KQ$)1sM-O z_8}um0yZiwLC&@SjYyM0B2LR(_4gQOSMfzVE@fcYxf3ZuQ(!O6_ewzgIx)CQ0;X{O z9nJvQAGK6Mm)H}Wn_Pia<|NtYs`eS*Rk-Ok8JDKxdb0@+3ga(+G4OZ1DFbtN0T1Kt zRCrFS-A~5rZ^p;Rh5@K*Iv62Bdv_$l)0iDV>0nsqfK-STsp7D#L>Y!GIYJj?5@`7fQF1q1 z8NRZdWuouQer5(mZ9vw&QJe$7L^RGiKgpAJ!ZVocWLb}CRVi;wQGdcI5bFful^~1` zEsNO}-v{;UJcJGOs%GQDh4gr%^go2Uu5A=YYCPRgSMUTaaF$8CRNdYonRbx)s(du9 zHqtu?6N3Fk^s13BaUSMosG5LvMdt>K(jy*%cqWt^9v|=ZloS+AXpvKRL{saiY)A)i z2jBq!A5|CB)A_nw1@jU#U@Gzo&mjx9;g+)UKoJ1PI)I7ok&%(i1lK^EfJVUldV-E1 z?cCVdcn%49ngX97V5m656OsgsEZNk$uI0_j!>6iPx1#X~X3um^pESQ*r2 z(a}W3f(Q}3Zv)3C;mm;po$9FrnrjC)SaJej`9YeC9ndw8j=8z33>$0ckQ8Av3x=X- z4%J&)4xr!Vr3YQvfIA!GUFJ5UV?Z3C=d?lS3DnM>(O6#spk&snyxlDsx<<##gGA46 zT+Ld@^G5bNrs}~$w;6bJwy=x@9yY3H2Uvlopv)EVepYC~Xcaetj;{{VyKXi9XB3z( z+Kr50iB~Kk0H}1BQ55Rw;bBbpnXoq=M9&t@?1AnAh}+%-CjntuqZp1(x=IJcCoNg( z?gFd~Q|&Z3M4Ux65eGY*-!?alii{;)Cm9rSfGfOtMdDm`{FRKniPN;AM@|6;fX=s9SVkn)j18YD7=7LNA7IngB?6hgXsSYf-XqmmRx>h1&>pHfHM` zyn_|Wi|S>*1z(Tp23*yM$%gO*(1u4Meo7?1+T!vt_KA*;!D8USh@j?m)jG`EfCwab za4Q{bSwfNTPp4M9EaICRe#pY=j8R5;whOhwk$UZ*2H8nCQJX9{>%7_(q}8>e2k(JY z?5Zt_T9AHI77d^p+DswdksbCy9NrE(Mo2_6WZVHZa~mS3J55EGB0>Ni2@t?*_cC)F zVi!?IL^fqa(IT{N+xpOz~HZZ&tik;8(BYG&Z7+(135c- zb1ps1{llWTSl4?LDUVn!ifce*frcaND1&Tk3_J$kRsoMhvde8wTXT8K#O7|HOt)<@ z-#7*hu?p|qPh{iBAqkI4Y*W|Xj9hz+0Po*5(Rw-BAkkvA!%*dp0+s0mt@afWUk^C# zfcxt0B5XLyTf*z5DTxiE=*p+2nIeWAj3nS&mi)$?qlku_(iC5~0;xq&Z8e}HS>M51 zX~8x{MEJQ}*1VcB)Q9kwDO^RdUrydYWNGxA5DScL1Cnn_11s*L0PrcNGa$uR#D}I* zlQ?a03zA*r33f@m%fz*u=CiXzNvbeNP%E*A*l7%X24?Iuh69M#X2QkQHJ=o-Q?{?H zL15DnvRKR+0K_=vNXc3Q2-aX3M66Vg`2@%u!TT3=$^aH4n3%x(7de9fYY#A;1k(-h z0ymgFnBWXQ&r*I9o?Qx>aGaNEWk_eeEENx9Y73ad7E`9=f*Yyj)UIHtxV8~0LjRM( zXT;H#=jR+$>_Lx zO;hgTv50vtXELMr6m$mw91EyKN)m2UY`S=+D%CmdQh}l(w3)_{PG?vJ&do7LLxlA~>kMNc256 zi7d$*ljQ_mp+07G8k$;Ha1!IktRd-Yvam#KaKA@rPP&gAP1^%3j^&9sg|sWS9`U*d zK`3R>ufoQO_)o&(aTQW;4bEYiqrObPi(M|{3HP&B>YF``SF4;@UO0H@V1Htad{PqM zK!No;CgCt(E+RNa=KdlR3rjIiU=5-13A`3@*j8l*C;{F-4c(7STfQlEhRI;Xg<5;) zkfg2P7xEQg9?2RP(mcZosEU~q9#2~m^uw8s*{%+{JP)p$;hPIU;X6!67O%ThO(a%ABMVD`fc_s$)DAe=osH*@6Z^3b7$ zBQu8=9-LbV7gkq~&aL)d5t9(jGDJ#Ngwk%EVkr#(cJWlXAXucEh8RylOlJv5eM`7-KHuyt>&%IvXEPa%31PrtrYzp&D@cdS zVhP?MitS*j^dO?MJXrqAIy#OvR;vR)PZCT$wSf+0=+S3jtdW2 zc|xQc+1hem_5d;d6;nK8MV6*0Dgt-wB6%_1R>3YSaD=G7*iN)Wh(r#$gVn{rdL$ps z_M~|U34&$PFcq&$!#bKwr!~qhg)_@{QbW>UR>S4%+yU1Tp9u@EVbBOa>f1raMsV43 z{Y*CFbEqKPvl&vU-BTrqnqElc!+?mj!_c8ho;677!3AF~E4G#>{BcI2izR{)ub^>d zDA}kvL8Lni?#pcL~ za(5Pda)`^AEUiBbuuGLJxIa&;6zM0_6*R9b+7SSa?($`}ovrvdqSApJ0yl4YqatYsh*a=dJ@Qf^xfKFR2wGSg=Ph$a;OQ%O% zph1}kbC@geG7ZhuGtFhr?B}^rH#@$xL;qe;9wpHP3k)UbMkXiF4{8Xy%KJx_ia1GK znlN&W;zZn}E{y6;a4qy9U&qAB;-pzYawtX11?n#hy;&13k|jyAh#+1a0SHPhZ z=7Kl?3`K0RlSNO8DF}_S953&KH`PnVgRO3%I4f?yUV(9l@S8lo%6aiZV_u_h;k(3q zNjgtp=LkbEW1>6Rfs>HX6pXlY2mKwZSB6i~65Jx4d=SkZbU`jeNIOjez%i(30KQ<7 z)YXDFJs*Xh^v^0_<_#^|CIl z&>z*EOf{sh?FzTsQu5fAjDh7HK992#nUYsLdkv8GVDu^#t|vmiWpK!pWnLE%JDcx zhM@)Fdw-XFSFi+2IdnsJ5pLIwBCIo?QKE=fV~8C%!qn*VRbDorzPzEt!T2DWvQIOG z-4o5H(aaxlL5lwFb*cl)ToPpfS;Q4msBf-}#;N|ui@1yAA7o;swK+e#7L_FZ1?pM3 zjO_z&-5oKgM(>_ez~zzkqal}k@nPhQaB`eSt;yqBFO4CFlA^g1$yGMQ$!Vzpg7vhP zXQ2X_(HjwgGO+5k9sHL_%YiI+0?y#(V3?su@bGlvMMYT33$Yvj=}>DtC(Sf&w;3Y|T5I?^GNZ7+y8-bW_6GPxlGA-rZhnCRTaRd`! znx`E<59MbQv1DyHDC$8~EX0n9DEJ!%!q>e{ys-tDID+ISKVYLUXd>$bt2r~^k?qzgtRAI$i9Dg%m~`E+IPw;G0D@g+eVId~MY1dxnu5TGBt6i; zr@f2ZC`l2bXvAVc^uut*2E5_BEqXA=95Spa$ykaLa#vtMkrElpD0>?tp8$n%oj?lK zV^AMlf<`CrTONrv-&&9J&|M;_5(+z#uu*b`_|tq6v02E+OsA6pf%Pj3BeVu*XvoIu zibjpm(}KkzFi_Q!s!r6NS7FKUE=KtV@BndMDZ-r_gI{-QBOo zGg*!FzACD7Rt#P(@!rud|!`$@Eb=6m_bOulAh;KGn=I{mrM6)UQ~&%kk&Fiuqk(eAVu#eGF?# zf(<%cy;XH|u;7XaFqq8#zUSVE2Av+#&b;vrRoG&Tvpq+ENia%`ia->a7$Va^c7Xk+ zAp4$+QPdehuC#|Ptx@C!p(snVhG=eZ?I)O+0)vT8kX$zx5+qe)Ep|LlutO5`(#u+! zV}jN2!5K;YM^icvv<6p3SfN9k^mAP7!s@W(PMc?=ijT|Mb{f!awc-$}h@cEuRnV-9 zbeH2rM8J(LykpfhE>z;>8rLWfq=NKBxL7;oB)95>V^sNgww=jbTy7dpjaLDwfcHWt zB6krD@M&|=()iI06EOp|GZLyKwK@f-am4Z3SXV?6KU#=L0(^HUG<%{5LEA226|H!t zHAOOBb8nFn=u|HAAi{|QvpREP>B#EZ%}Z z+%3Y$@h#&GpWQ3VI6=V>#8-DCfI!XvXo#X$~5!Rw2- zHQPk!T@4}=Z6^4+%pTv@UESsnAX!iruv%$q8(J)Qg8+-N9x+&61TY9Yg5>PsZFQBX zr(%MDM%k#8xiXLPA8EFWBruBHk6-C?6{m=cv$8#6e~~=UEn<>UH=tR-0b^WI9#bV{ zpRq2rB9_+UE0c@;CKh7vjW8v1I@zJ{gTw@d3OcI-56$O7fB^sde26>!v83%Don=n! zqS<(L%2F<4h{VYk4}s-pg!=mEi;3mM2Jlf8I}{hRT)(@22WwL+)FgXd9s(6MZpT~_ zjvyMOg;e&@SfzCYEH%3y34CdFO#-Dux>l3#`bDzVmZa*gfz%i24gs%l;0uuiyyB5= zxk4yx0!Wc&v)U9R>GAU$HkjlgC#gj7!W)IFCn!jh^jrSg2JhHU>rj^yTqxT)V|A7bd>jfkW z?=%T1o~ZPOp?})-11D4ny6`|QGm=^{!0cP3(qO4Q;W5fV_;LW;s$9zfJzftr0oEQa zmFtoUnO?=|+ud`|bPy z&O%}%!pujg#|$PeF$7xP$$yA*)g|0vbSk2py@==9d5$h@p82&pr>NqzLsbG7XHzf2~YVj+3Ur+_p?4Z1=NBPryneq^$Xyw#AtRFm+oFe~Y^>cDz5Fvbi)iq3@L zQE2-4rMdf;=T;UL=Z>sRdo4Le7S=iSRLm#HbH3TDIGDi%a4faMCAmg3W612rEE7y0 z!J<0ZVZ1X2FSEc)Ehdl!hZ!cAhBl0~b}-F0H;&cbCx;~84QLe)SUi(tq1O3r+6E-~aE zum?}wgT{T=PX#}~{TI9f+cl{FC6~S`2%g3k^l(V7^nKlR7(AZQ)3b*o*CV^Tc){PI z9XG$?%ol?mjCD`XHD3y@V@=QOdIoK0_o7itPxf47?Ypi=+c+%OUB_$pOrr^?l~v;U z9@gOdtcB&#zMUuKLPz}kSvy^+UI-50*Z2jv5zOV|r|ir_q3{{`)no;}z6zwEsalwMVJ_kW+slVlP? zGJyd`32+kz2ohz0AX5zb0E3JWWWb<7qK+6bN{~^5MvZm|sg0QGRHH zjW{EyQLqgbB(}5$p}ttH=0$2_UjpyYTa_5}y-TUmb&pvjAF}hqb;G-7Sh(f)c7De@4441mxZiNY!-4Z% z{yYnJJ>U5r4!_cH+p8=biSX5i`hr=F@csS&GcR4P;==pot@UY** zK@W#L9Px0Mhh1Ota=G3<$2&YMzij*g4@W#~yVcJ3d$>FN==IX);h=|IA2<0eUawn@ zwe~S^iq-d)H(Psad!4oWzGZg4i144RUGBcb&Nrg{c)M+U#PsjlZh9M=O<(_AmaZ%< zUEfA8kN1m_XIcB+;pG^*(fDm1mS6XDCs{b~pz-@6KM(uvayd`8`(q|o4A}TJyxhWp z`8L9oUo<>&kI9W}u=68-Vd0L~SU9xI&!1@hy0O*!eVVgq9+G;y{_F>n3Qu_I6z&U~ zw@i+>_jaaLF>BIU%u8`F`fb!!L=&Yn?@|)tM{wS9ZU4+PUMI%lXo#1iKb7Ri=Jb&V6XXnq#;)*u)9OrTL z=mA929`ZmZ_CUlb6DNo>i&(9LIC-7#@#Hs;CwccF^4Ix!bRX?;^5qJQ9u6`g^k$gi z$UvM=I+Y=DY&$$ZFG0>DPktezCq&J-o)a}?xb}q%-7MmIz>?xAuk1XH0-0o+$HAN= zOm@nN#M60~!A?DmO6Q2{fli7iJ*vEBT9+r^&_Ovq@0d6QFU8$g#0UL+(y0?66S}A) zp0xRh)mkzlW@Bl{5k{Oy#3#r$;;D>Nr=++}rT)ix;`|{_84p&Bc*1@@m8qqOTrr_3 zKXax%M$(m}L&Ir0pY%&`4$~*&GYyoWWu)aE9WW844r7o$VqX2O6!cnVI=; zf^4=6UA^f;onmbDODGS}nrhOVv8lhPxeS-KrVK7mHlRnbkZIZwb`U0+T1%3r9-!bK ztO)UhRhBqk9CT2MnDWK`g$9yJu=__?_D!zu1*+~#`I zX0vll|5Tj_{iOFYw1Q0=rucc<&zTK7pX7zpjAo|IX~O0y-bX0=1jVC_(WjCSE?tI<- z+1l)nX>950O12?Sr4c5bUe_t^Z9Dm214qd4C_UnuH~0jQxudy9Et08Nl3@&anwOn= znW4r(TFxJ)!J0Vd51b<3)_7KIbHX^!#f*5exhUNawWoz2&~vaZ%wsZRI%BMW$76rO z6rWsAA^A>md#INpYo8seob-^oqqU5@QXcLT>W;?CIrJ17Xqs{F3)nW(>m|w5O(vBk zYY$vFlWxh+n>Q9ObO8&U>P9J!oeO)%&L5z`3mJ~d@+u+u+Q@C^;ZTQmhn$$>Ft*8@ zbP!Lr7PS__)cz(EDUNQ0I3Io|PFgM?&A1ThxL!kXzUDH?Mm3z!6FO5FYDJCnsm;m! zh)+=ai#SU%WAQxSu{iTbWK3t4Rwp7YbI^z@!;~-bliW6VQ?$$$GF&@}Q(l>w+1b)e zJ8@#3S7wh=gdW;i#L161p&EJe8{_Ado>%g}3`K_HfUI0aJ6tLr z#_E&P`BWBNRFO$>MTn=o4tn~bah~=~oV+K_=N#)U!5V{e|2Hx%%Z|(?dq%l3UiB11A4{N4X^^VyyR+gg0 z;*7uNpMU0X1|~HlB2!6gF@TBc85d4U4BSVcb|+qdL+(@;}PhNPB=Tbi`9VP97U`4nNpz z=KN%}zNU<3;}M@cIcs|}tZ%}b!g@XvD?JP9sLx9CxP4%)Ml&lZ6Q6Qpv)OGv!QKg6 z+(huPWun1^DK94*oY#@kSLFS2+f1)Ele!J^=;wgI*goA)fH_2La7b~+gg^Y*pA~=R zI4L@q@F1u%K zrc*{Osq@fPRL}A)mG1T5)VMc2u<+(ko1N}g(UIyqYjdg3y!dq@J(HHU9?@6wA#`$jXXG+98^n}g@ltYm;gFI zC2T1UBVAKo_Ztw{+SHielm1o-_}!%Lc+$Nqvhb|uSz42wk%rRX7cH%6Y;Nk-tywC+ z(k5Fcae1rOt&gJb&jx2%WLAcKCXNCy&7otM*Fn1lasPBJJ}SL z*{wN6)LANbXE|rK^OKz|lcr9f|7vfN4O^Br@#>Sfg->=9%7Fx97K5ut?T04OlvA*{7IA9WZAn>v{|vvpo&!S$;FjsZrJg>{2sU zmdWGCUBRY(mLGcq$LyV)+Noi59(Gu2dQJN@-%Sbdh1pMPt23L=9y#qOJ-C8TMltS# zQ+uj6&LSPYvHR>&u`zjF!cu`rtF4z!B0csT)TWywQRr6=>Eek#o|grI%^vrvu<_w! z>1z{GV?ZCA$;ux4z$xW4ySD{%94#?CLOeOrnqk70UR})jo<1o+9{Uf`P%=)xHhv-p zpYz^5oBF-F#`tDlldtBG%HK?%w3|NcQJ-t(m+C|3Amq(6t*OU1acgY?c8=+jOrt<;N(B)5C38hT|4}n?96&=&r!@d`gFG8j_I>&4%o|=rpQgKc}(PI z`I{Z^lcD0$bAJ;T2OceeiOs_&MTX8U*ho7l?Nnl2EL zUe6tLmzUYwQXGX}gD?N50Un&nJGlB-_(R|NrHWbPJ+eO`l=M zZK#bMsXe92H=NqT$nC!?zJF<WGipe+)>pDQo{7Guzc6z_j1VX*jDToW>(WSb3?WF3DVMjPdL7IeAs4v zp*Bem;9^gTjP_laGtG1CN+-RMSTX`b9j-T|8}4TU*z-rwp1?dKIUesHQQP zS__}yqp4G;rtxa5obsUlX9Y|9hnoE4g|YfS{BXQ8R{vZOnOWy$Wq#XCZ_OuR>Z~Zc zPo6D9GJf(mIE{xI?ic~V$u~@n!~m!CEmNoJ5n+~I42d+;t1Ku8tl?D1a7tgFdwf|u zr^%lrl7=SM(<5n^9Q}pcpSkjFj%|65x~yq!Un_9=Z9=-O=dR43iqJ^X$l4q^o6D|c zy|bR$GWDWa$^jHL?AC>967z<@nrBbe zx}<6@GkKeaB>B|u3;iJ5#QMo&`b+?v_+7=x2#oQ`Q0+#1?57`7UxBAUjAvo4i6iwLX;YUrAyHfhpPSQQCp1in>ropu- zMa$ICR}_O1ZzMkHXqGBK!lY578N5~}h-2?Dou&R7AA6Paq{#zCEBfp{!zSuu`mx&D ztX|V<68fkQ)>I&H($_!r$fJt(cY>1+O?*X(pUR_Uer{bNy*k4rUAWWSw`srY8^b1# z{l&>$D#1x}N$-5lj^%&Wc`e5tHz#58FY42$wQBA?R-Q?!7xSmtlcpVG@>8czpFYE$ zCtH0CwwA8HX^;Dp`b~K_KgC<8P1TJ|vpsQJ5%rPm@9Hi)=V&EdX;S_Qp(fUN$(Y$J zpRp6h-^IZPwY9T&En1?3*eF26D`usRbvmH4EhrAda8VV%N(JZ=&uUnYKxH6%o-R$& zrhl&Dq5lC1>V>)HbKCz^14jPcuK%-I%P)loag6BSwZ2^{JQ^Tc<<5GJ%U|L++R#6# zfptkP`URN$b38A@2P^YV;lFZyCu{~*^t{dlwQdCmvVS3K~Y!lkhFBZb;bhHmz$LGvBYF<8vg$k8v| z*aW>x<+)WM`(L0No>dep6t469m&w1}vuuYcx=+sPR!AA39=&=AooY86#l4>XRO{%) zG8v0KFLwQlPqVzYxPJ2ABYx!nH^TV;CC)$PbSvM-ynf%Zz|#M?RYIa$gz<+ScP0Ah zY|HOngT>cWKjdFJ-uB$0Sf=mf6Fs#dLBKRHR1;0<}d&EHpguTSW-iuFC9Sf(o zA{AaGCjOi6`cHacQ7jjJz7FVv7pko)Tm=vvC4Vha_$imaU7%l>w?Cny)i9{5DUN^M zTNIB959@%=d`401R7f7sD_&~$4Y|IrIKJNTw=NT3bs@784K1<%L@kZkxW8%dF(og&N zmE)OjQlC})HI9EPyi4%|9CxU)*D9`Nl;|2^>^<7?J5^spia+T1nzvc~9_99dd&CR; zDlM=nNioOm8+vC^Y!Qy}=&CE)6A9(GK|7Fnn?*oo0-zvqUd>@wK z*!y1RZ+3jA;{~Pl_ZYwK{!8nh>c)vqlzr62QEu-6QiT0Wz5NUf+4%LKx35?JwUzf; ze}K4NnEdZ@e3RoJIsS&@zjb_%9DVdd>CLKL6cd8c#YEFCD)?4SSj5FL2zmdVKrjdb3`AR*-?{vyTSJ<(45@y4sTz7P-Wn++Z?~T*V>!9S)#}1 zn}0_$tW(YT#(TbI{pUh2-@iZ8eE%VrKl3(Ae|m;X#RFHzOXPDtnD!p>Rs7xWn7w_H zfxh=vYp?(6^?ioQ!&pD$c-C>I?;N*xhZ^q+@!#(FE#j-nioK2*KhcekAnIeI!l;k; zD*asHx3|Dm`}(1^w<`@6f31N5e|^I7ZNjaJf6L|nr{hzOHGfU=_EE*}f1cHM^k@2C zyUND_(SC@JCR7y67v-|%`217ppC+u!a-uVyWBwX-|KFnPJ@P-EWc-`&G5)#E|Gsdi zSZ5i#xKEh6dXHn~zxX@mzs%3DXS?&it?L2uuX24eern~Nb%Y5#TewZpF2`Fne$gII zHFm-EjQ*y}KqA`De8r;uob2uGYS+*8g8bAB5;5N@72|-a;|2U~oiAaE!00alqS^@- zkM{M8j~Kqr+xwS~Hmqq(q8~ZF!tuqwH2!aDcH-B%Fw)<2I?=-#IKa0%zI3!UWl&GYp4YGOlwivIrEJ*MyFNxCS& zJ&Fe=zfw5z+aLb6R*)AdFX|NfrZ%{2Q+RGdhL?yRxLbGnTg8jDazIH~f=oi1;{r%6{uT~15==r_pkXq3YK2HZ!#kDT; z?^0tIy}Hq)KJIh8K;>Vg_?!%rf8f7ruci8k_WFuhwbUQ4^6Mk|=zpParEr_@C9V$) zKQQ{pKlJS@eJ=kGDj)6rgHuf5@!z%j|Av?Ut=ia*zLVWQFV@XSkMLy~F8>Jrlcc-}P;6GiT`bAVO}zNgv#fqz=J+7te#K*a0MC+b zflu*?(pOymcHQjL-VShlnQn~Gzahg5D!5U>)MqYV#ru=rpMLxm`d^^-vt7PICxpGU z_uzj|nEt#HrsxyTw)Xli_wW2as};jKf3LTvOND!d5AyN;F=6VrSs&fz-|!dtuM@wa z1KJl>7ijXYSYY~Wr-8FM9AoxfK0VBaHd|1Hm} z6-$M~{wkmH^=JI|=|M{=e7TqR57G}lUI*0EQ!Cae)MYTyuQYM#P%Ospq4Uh&F~0u% zg|#$4iRGj^9yneupH}P)ts*A0?j5vSzYHN?QA?TTEFHl?`4izqi83Ulx-f!(o)1E|k{qqt$ICP z)@JK{t5~UNF4DzvUs{#x(yCpYu=T-i|1?+9!17|3map>V$F$Iwp8e8%^%PvI6#An$ zm&4>zy%v8^p@ltP>Z#4D#}Z(Y!AS* zSd!Y?T;TK7##An{*LMeO&Fc8(iXgjlYiYxA_@<+luZ{Xj)m$y6Hod29;I$)aN7kOe z)>a+=xU(23Mn)9N%H2^s?P(oPf4aX}=gX+Iw3!wEbR=p0q4Q_%ju`aJV zYqnNwwe=L%J#<|c#s~O>HMFD4QlYJh9IJCT_dN5MXDEb7i>$7EEp09BI`VVcm^R^a zEmE4vvEDV9QbZold?ubK^nD1^g|~f6O4|5@TykuE(xkR?ieF5>#pLk2-c6Vim4RGp z<1J;;(>Q0TV9M9VfII7V)_+KnWG`}8E?d@LmStM6B5kTO-IcZ+)RyWh&K+{dOuaFy zeQ$?Y+GI;d$A+iZ28#{4NRrO-Xe)J7SStIJN0Mt9Z0jp$callyJ6!TXWBxlwr*z0y z$l(LlUngjPuTEtnj%tyfM_Y-W`8fUPzYaqhRjT7oqcZYHQ+IRhVHv;vxT%kB8;vB| zjXG{RrO|*>*2DI;)j}>#(TwSHba2|yG#&JoDbqfw@TP>Rj2T7;YTYmY-~PJsbPfn{gqR0_*nSS9$Ci*3tK>_V(_5TqeL{yY;v_PpNe> zwY_{?A`a0e?Yzcv>m>SXzO()wdlYO98lT$z$JBJSnWGWlAf4m9)nC!t(#kNUmxa}y z$KD88@!P_mNg~z95Ko%dsqz-zoY0 zyqc7^n?adu@0oEIz@zZ@%-FM6zfPpW^q zer){;ZA*QA{ayAFk9ZGDeqVlzbKy_)c>ig;`Jlg;+1^%f`%&A(Sc)h{q^CA?qxbQWb%7-9@{vIOg^u#-2eIcTz{O$*4$3~gFR1n zzFNOKBtKX3ReLCJsq@I^?FYGi`G@uluc{~PEXA9fl{eadRer7XtduOi>(2a!p2&Ak zrblA?v?pY%`lDR%(F5Pc!D+SWwRN?-iVKP#>0GqW?e2$=kMj~qzNzXD|5wlB=Ppl^ z*KgjghAZX8_fVR_TfI=JnX0*-3e^rD{)+Q{?nKrMkL=rR>wf5XN%7FA**A1W>4Fb z=U`EHdwx=EA!C--w+uFz9TKGz@elxu6IKgvrz=Hp4La2)w~ zH6(im#N$|-m3NuW59-`X9r<-iF!{JcVeV(_;av4R{*3Z&7}rl*YLjX$wL{fgkF3pM zs+5TKxi34TzR=G&R<`OhDtZ-D_m%b9M5&rwYpp%D_X+MDxG<%C$1x90n)ybF&-ImC zOp8)DZdMrAer6UXf4rw3+vR2_n6K%6fqiO5&6tfv)^A^U;Du8zJmBx9yl~1BQ=Ukd zMCRzay@7PwtJon$Tl=BbMH$2Fx>?i*i`DhP`l1%5*z!+4RkG>K-p9LJ(*($8wHfTn*J+3u`bpTck#n`6gk_*ip- z{a;OaEWHn{r9Gq4?23B#(&ck~%GTSeI>iwRwGWnL`nb&l?FK;;{<*C&pM1QRh9nW%A#Fya zYF19FP$ktVxB5wIXc;K_YCGipi*@!Q%_|orzRis$wN2{KanPihliJ^<`19K)wH=EK(%wk! z^F{%pBV_tKg*&|n|E{oCcr6WC1YWN&aJL#ymvBtnz#B5mUddAUQXLQ&`M}>6-YooV zm?H3Qg@G5#33G)Pz!bexc&9?rK=83Q=ieh7eD-3l6V?(%A{xXj#rGI2PLj_{#kC}m z=px}h#XexL7@lU=+M}KSBVlwu*ZJ(FS)}+29J4mPN%2!1A9I9_dEp=SHg<|P=PB~p z`=l(Jd!N|r(;-{#_4F^7qLqrjG0nD%g1sf{RR^)R1b&(EH!5@R?_2aoH2oOcTQ%Qc zF-Lfd;<5Jo@ng+?nURRS7}Q^frf z^>MJL2lH$_@U4#D;e0Ubgn?O$r@qRh-PYzG&G4#ucI_H;K6^cpZ|?Qf%?$qC?);hx zw?^@$j(;OuD!$k;n-H;olp8-0dqp=YjJ=}l1zjxr{E>R%udnd;2nV0N8TevU2SoiY zQW*7nwi?n(;WJ^1Zj?OwE=WjwF4R#PiuX>k6E7E56&EKPEU*V0`TgPqyI0W`g+x~g z(|4|t&Cv7ZALLg!uI@deJ;MJL!Xo?+E&-x%Yf%;aaV{#N)z7p3d49SpHasBRfsZ@e z#vm=>CPF{{2>th-V{^Y->&C~PrHYOkEa0n26ggj2*5tFdRW4}mZ3R>Rv@r-w{RjSh zkF^&q`6Ys{|Ks>8g#Q?SdB$h&shVJO?Qv~i;m}A;k;5T-g{dar% z55LCrMfy$_unev@E?5IbIxCr@h9kd(h$Bu2gF|b z9)&)yD7gNhKfnH9ugpsHUO7TlRNUEO_(tJHivHL!d-upc_U^s$FHGOki6(!yaG#=I zcFf*f+QWN|U0^@@a{F%*j`9tw|KrP;;M2dC36JW4eyR%z{KLKecfHHzBL_NW?;H8W z^%qQg3B0fCFXf%116uZetFM{<@ak>C%nv#olV88&B0u)tQlGK+cH29wKQpF5j9;4- z{wg8$<ZUIiKpS`u!xS-|5|8ne@qzXd^DE|0;Fv$rzn2O}|E~7;Gd^eab5~tLqU!kc zRQSD0m#6O*rp}e-Os1E3FzG!u| z+~9w?9iM`L@xw1d-x4&ZkR<$K! zd|s#+bqeiyn~evWW+wWD@LI*@czdF~V|%oB@I4tG-DdWv+7sRHSY{;RT`cU?7NJD6 zZ+su^n|EQrpK?Cezs15azE$^Dzx6h|o_;@R)7;}^E8kR4&)(`D@lJO>^4R}m^6;@Q z_@oEt=@(V_;NVYb*!c8m_t(PNW>33hpp!?e{=Sot%}+ZOzt?fK{NMrc!XL~Z@K4Mi z@NYvn{JSsy+>B3uK^`3t^+$V;`n+$4`R7YMz+iu?_+dZk2j$yH4}Lhqv*rJ3l8@^Z z^#P9hV6SpRc)JdWcgbk$3ll1eZ}|LTTZ^4wenzhgYcUojqo7i4(PPfb@oep0?@ zUyQFyg>(M0j6Zaf`Er)dL0$i(Yqi1>Ai{olVL#elFuPsE0s_EbQi1~N5^V!?nC&}2`eB1A=EDcLuu(ud{ zzv*~?{CBA$xtBT7<%(CL{mH_*MPvg+~8?~Z|EcJ&rl-m8?ERi49DBdf4-WlRe_y8ulmp@)IZ1y+w69WO-o7Yrw6A;Ae&9cC zvi^wBNB+@Xu5|uU8K3qT{8yBg{`Go}2$6mq|2W$V>Fy|AA&fr*vp2n0_;M19wm#GP z`|AuA`y0RBc9Nw(+vR!pVx8hIcYKj>srVZm!>4}+pY+(1rytDt`%8cE$>Y;67v7-s zF@LyMnEH?T_>rgBUio&PkFF42CjK=#pc{qz6>>oARbQ?Uoe)?}b{zg=eC%Vqj`ERy zO_m;hcZI)xKYVNnd-j+9pS71BfB&wgKcasVUZU_n93S6p?dJm%61xCXAAv7&{B`Gp zcZeT&j`qT1?^i8(+H1Q<@rGk<8B6W)=Z<#@^)n!6mOFI1N$1nVPEYmtDn#ZUL=0twnwc!KU3$R zqlNSKw!i+cc$>akBE(yvr3(*O888;=^sE}nP3)hB77V=t&_hu+xygLf-d%9jn8qPJ^ez_Xn* z-M>S^@byYSqCdaT`eW4p$AziSzcF?(vCrBgbqXCKyhNcMBPaT2$*)rEYR9Kazq(j) zrQ`E2vi9{=&kwvsyuiP{*v79{JO3`>h2p=$G5W!wAIw}T@aJA+?}kPBcvnJ~tmJb{ z054WZ9YA304}9V!*50-yu6A__uTnhPAMy(_dGKI{dDnuvz1i*MU5hos@vg-+OYB{b z2Xqbs->NY1J9K@a?VRJ+E3O~3k4tnw)pso(SZeu6O(L#O^w<3QR0>D>Q#5}9>oz3O z)xz5qJInF+URz7g8>7APF3KkH23`NY-n|&sSQPJ8?2FI*@Q?9(q(At~ukl|#zwQ-| z`8DNl2*U`?I zU-7*D?-!2xf9T!g)1QC6+CwG%l1loKEIsc+bO?XJ^Z&W<2I0@N=#L2gfWqK|hbwqN z1+U8RFF#<{$M4s5QUu#f8|GY)`A=#Gury==mIw1PTN`>Jc z>aP^e>yP@3`unlo#n>YJV;#^g;hhS9t;2Uxj&0jzv$SnVUHVcHU|8ylws6?%C~eW<6a);6JSg03L7;X2v6mq*O`*HSEaLBR$Cr{6QtQ?aMCF6U!S`4Ucz)8Ds(x1@BKBhc< z)jsqg>wC>DnKr8Y7m^HAwI_5F=H;!HCYP6k@{(?@^5oc|{dtiu<-nFG-;?PpB)461TalH%?ZRD(Q)cvszQ{K( zZ|)b)Ys^fvMSpda%!9Txh#!!y5impFCbv7+SBj6$yd6~S7CZSk(uKa<5A55f+#FT8 z0p&{`QNFbmjJz-XrMBKJT-!2v!bv(tzN&A+3qz6b9;GKu^_I(3 z+fT?*Pmvexm-6R0;tI_zr^){msRjh8J?)Z5Q}`^HBKQv}3_h6h2S%Q{2zl0VXuk_dEMgrP|1VBRe^e1m6vRHS9|*%6 zcKg{^0{`tgAilA;PGRiR+26i{Z|MPqOlp2pfqe`3D(ZXvGi+V_XwQ%G42vJ-Vc&BI-qOh7|Q=P=Py0g@?W30w$Gqj@lnU@ zbHI1Ma(vi@mfsIN{RzU9?_TG#Pa#kL{mae%^f7wLfQJa)aJ%vj+_fx;6*Jr({D-~azbeMx)MxH*>O17ww}8r02XyZ_woaR`o8!OH#Ij-cntdGi#Wosjm_2&>69+Y9@O zI)q~#hxSK#V*F#@=~DPQAnF4Od#O+Iiu#0)eZha`8_oamT<%4}lt*q$#J;QziXG#a zeHPdo`z*jKGyFl}&B7x-K>e-S|6<|ubwJpUzjOPS3y1xbcMx3D9})dwo5C9sQr{OI zQ9Sy?^;!_?hCjgsShwv{G+(#v5sr0R?88N2AN~M`KdKo2p+Ee0_Zn-TI-Q7pQ0o+n zeNga`&-n{7KKgovLm%loGd}wa&=>m*!1rf(s%{>U5C5?)-w^(k`wRI&;YiOnwC)h^ z44s4c2I%^hv2TE0QrG-aIOay!-yyl&es!_2^8KaNpPF$Zu1EMUzaAl9Ca&6ou1AzV zu1C9uZJnKOUPHefw(@B?JkbF+O26!#tOHs&+w5sKSWNt+={v{Mv#+QWFUq%Gc&%`J zbC7QgE|sqM#vuFw;ovuJGJ9S((K0yw>2|%0^3%Szixusi>vg{{=OC`vyA4bJ%PV7<5$1oivH!|hko`gv8OinEq(E3F-4cRSO{kP$niji z+dr%NQu-Uczi_?YC>+;s_Id9Tj{ZL+`BLczT>kUIYEs4Jl7ZNV1de@3H@w^W-%nhg z>t8;efx9LD0uqZD?jwkdozqY{?6qe&G^W(#vbYU2Bb_Xe(U->zpVMP^$ng@!8_GAf`9No+rFery}z6w zjQ+oM{q+AqVd@aNSq)7tD8A(REm55M8`S~vp3ee>JDq>cZmX{g9J8;dTl`NtCjC4e zqdK53yL{aLu+Ini_dkjJzSi+pN<1Da>-+U{@|4Ne9eVs7r&vg7+;SGx4?zsK;HXjas;9rZEW3ESmtKUpy zo$^-6H(cL4g|{mHO~=ppgVo3Bj^8ZYulNtVe!nBUML75`{XbUMs`f;m6)qL~fWhJp zVd^*J*|*du+~$1ni0sYr0_7E$eNwca_qja#cEEESvknPvIQ~=RuUG!$75)9TX|_&t zjO&AsKZAd{>_I-tTa|~uT=Kzxt@Qm`<$1l%LF~)YqlV_btQU%33ctnq=T5hE$di-? z0{1D*@uCcW`e0k<_4!Kh1WQL*`cye z@h`YN*9+4=FLgfpz@hKUF8{TsD8IjbeaC5Xf;}IdY#FkThw(P{`79T12%qQqRrg)} zsq*ZTLf<1gAl6B5Qg}&1x;6_BD89>a<0$jb7u~+?Gq%jVj; z^$R>b7@y~ux(duUDyh!{+#lclj)2l)1Jrhc(yP5)@A}wR(V_FyA;kDc{NRN2ja7|5 zy^7!N`1X@+ojT?(?7P997;o5jvr0Jj-SACC`0-7}Q-yg(_8Qp$oiEJ%Atw`%b!)J}~wppWBZ=!hXKd_>kmRd-^THJ>yJRvam8#!JoTLM4l zxmwqh>=lxM&T~A)V6vxO@(st>GfVN@9{d~jocDZNM?b{n_qVTu^6!vr!{tvt&)VB= z$GyVz=eXWnD!g9!m(K54XzTEA(sM>=j^k(#_vk?&?fb%siCqkwZ|mHT8!UPy-%wn) zMTssG?p7@3+k9iPA*}5siB7z*mY&yLXRtV1ct~*$=!e4iCho`BXR$|VuTEU;ThfJp zpk?eg1K2k=PrQ8J9OHfTNA@+qk9`g7o4`Km00MJ;&N1U-;Ps1aUHc5TAG}HFa=bIc ze50@wj{ILN+$B7q1L7N()W=&B(({>@*}jlY_wRoQ)Be8YeD)cFW1k`WHt25;I3K(? z!?jn~y8fr?CV+qNNA90a;joW=8*7AP-v;tsYOlHcJmHYXpMApN&%a?swYw8_%!7w@P1*AI|VgSKIaC z8D76&zPX!Y`fuP%){WN>&h>+H{YU+kwTDO#9#mdAo}1L34X z&;0Y!501A7oZAD=?YTvmwjKF{@2}u)w{N=6AEF~soBryWbVQ9)YZ?;=8xz|#?6fo6 z>1<3a8xxN}j$!0vB2D6q6cQZMJ4hgRjwABvurs>)9aXCxHGA}^+UNnbYY(X1sG+}T zyO!}`P_1IH7%{=nu}R;D!5>?7urA2DS(oDIV_k4qxLlAIFwIl5T57 z-@fdmtWn;`k99X}3_Gza$JO<~NY|R>w?}q$2yd635goha2mBfN!H;wuk3I3kR>^G9 z@v!7}3a?dj8Pvh|epae}bAF_we7XOqzZ_GJ$dCGsbo=uI=|T_fC(?yK!!PJTE->ZG zaikll=-VLNt#qXh>Jz)?64x=T@^>kukDMBme#p31mZeUnRQxb%EuHm0{3O|_kzc>` zAsTiKRxozw{ArS9JaB4lY1r7U@w@&~#nIbR+Ip#msk&g3KC0M!9cQYppd~u+`6xj2 zbsg(;=oU25FZ6eVj=Ib9jSb2j_X=Qq6PUHnyM&*u0|K`yZQ$OSX;4V>JNSGfV}U|V z5ffb_{#M1#a?Cd~wh4d0*u|Ul&>dSkGQ7Bg`A$gi-!J)D@_@#@M8`c{_DcRi_X^Ki zH9ctF+kux>@UjfE7Ensl4W=%w1#~K|Y!b1y(4$!Ri?xwn;W@@GPSB(a`CA6PydOhn7;b^B&>xG zOV@l)4{j))=o|G@cU1+{9c5xh-c%&3N-~ybg3Fgw_-1L%(HwIx%n*r zjpBp9QcvQ=I^j~$n;lo*N#TJ_@lF~rK!pjxb z9PjU&E~Foje4d{69qCz1D234pfyq0^>nnIihWEEOg7I4}95;S<3(wI3J(cvx=i@)) zYow=sXuqR6Ag%{J3V)T5)z`4%QD4;GmJGjF126Xdtqur%oeD$WwWr$J<#Q5O*9zfv zil6Hk`$?a-KkUuhAMGKxAK!-k>^)c|OrFqlmAFfxsx1*~ap-@6V}7rZ{&T(8Klzu! zdH(3i^Y0PP^UwW9dbwm=`dO9qD=X=-H|(c=X)n3{MHwIcYlUKW z+&=sj_EEmw!g=`~6^`<=*Q6m#9YO3hS*-BG32Cp-MTTR(2HqfEVAjSugy+ac2z&Y! z=Ju!vO?zmc1Hz*^AodzjUsrf~_@!|0!IUR3{i7iq{e$_?j@sCKi1yZK8EbE>_4Wv> znd=pQ5OO`91`w#o)IG^%je_q~FIQRcb;XHlb{`U1v74nlA ziTH-aJ&LtC=9>l&DIVW6;QEC9`Sl5VB$f#NkYYK1y>Rfce^5BLe~oZ%|2E;={t@9Q z|ANxiwjR+rh`oT1D%2yUM9g=%KE`~9-`DIBKF!z#?WbMwXg{A>YwhhHrkVi!B^jT+ zXT!p8bN$G73g_~3GkNU6KVc8)@o%L6(0i=CPCZ;FMeH?LsxaScK>fw|#r1A5!(4CG zrN>=wM}$XpKxe;S_dl{V=9kFxtcfy1Po@1Vl3ecp#lk99qI=J=>vz63-z84uPygR3 zoTtBEIMP3;3qh;!$5c-c^@%^DKH=X!L+xWzahi?zBT;l-~7I1L-_5=0|Kv97?`#DUkl?i z=&7_HxpbUA@Mrjg`%7@C1G;6i+4H!;q<=v1yna^*NBy!_=278TYhwP#^{UU)gQrz+ zXNLD>KlK;-sm~taygsR~u>Yx~UtCGQBuoFkFIw3z(K)F44I}pQ&eHi|*$lB41$*9} zkiI=4V@kyzbju zQ_|C3^8C>k>0kd{n~!T4NW}9z`1$iZ>>Ev7wZ-G?`z+_UKdSfB`?}w5C~b^a@YiN| zU*)I$KdH|)9T4Ls z{*Lhyyeh-&rR4u!w-^t^-4csb~pZxU^iEc+24_kwBfw<9d7VsyhFg(<4yZL@7HbH{Y!zelTw>T<=XWB8=W z`O7mtjb%uY-!AV+sc<0&Pf#}ayKhyRK410O`Cc`YrYFJM62l2Nk zrrXp+{Qm5%k_~(KX2Tlcvz(9pW?~sz@18;WA;+!csRrCJ)*q%-Xq$6zV~Rk+Is9g z>X-aB;rIsCvDyT(S@N1DB|2T0_7nbwzfkt%{9kAM??1Oz+#`FwX2}cip!5gk8$9&` z$G*X{OZ-;hUr8tQonG}{#s9)!!uMA&{tEt&B!7qSvs|8UhIA_)-wffKDGlK(oex%$ zakxOr zi53Z84O7J4pB{zu0jT;-6)^27=g-YBdvD-9kW$+>RXQ?U-HX%yGVPsF`aLeczr8S@ z)m{(U=W$8{jV`t8(^&?Kb3b71jW!N3zotBG327Zwe9He^$9xlp@rQ51Fh(5Y=Lb^? zoiw^!Z%G!7%ZtX(i(y?528-dLVt7L_+*XtlNI#LMM(Px)Mtohl)OpsmSr5k!4%XlI zw~rw7Y^vyCy*k&kvw|P4;LyW5IAd|C1AEq1@RkZjZ!X`ebkUC$ZIZj1%XlKk1iR`} z!t?Ty6MFO*sX}2TT&R)$s-!916HmO~(+_!A7LkH|2=v)59XqvO0Kew`K~at)PDnk3 zo*jF~_Gb)fpT!34v*?lx?U#KI+l5<|J8gAXeD*2ieB@|DkaX7TZS{Jwrrww~sWGjk zQEwR}qgpGD5TjlUrmaN!Ac_ppGXAk#*-M>o=)cC4WR|wBrT+8=cj_wPQfl&drTc{I zIuF4gRG9Nu3J0HepW$EP^6wPxS6tmN(I(+FieH-XAFlAH$(G>1Nn>xnQXb~=pVoC8 zyjlk|X`0=8&vO1-ga>v0IWR@T!W$IE^Elq!#*goIdEVV#E39EM5%v!&7WV&d<<}68 zJqggkny)PY8%+7nQ#|s=-T~pTw`$*wsta9Wn(OQEcM3=Pm3n@=Ug@uQ{XGA{er$$# zS8ko;4>4%p%oZ*kSKr;{evP!6rY7RuN5;>?9KS{L!-nE}r32#m%Nm7IpX`6YKXYJ; zs^28${*v=T-c%}{+t(=^_VK)=SNL8X5cVxmnA_Jc z9QM6JgaD$W_|XWH1d#`9Y%x)$s-5uD7A1J1upl{a7UosM~a zihuD5w7+ji^Sn|nANRbH_7ml&J;Tr2Gv&$K^E}~b&+kzFM18DKnAgWj;i!-Q z?)qK+X7fk>{J&fI#q+-_-(u}OuF|U<|C!gvu!O0PC%nFScW$ZT@va>2nu6n9Q`Y}> z37@Yt5ar!1oR{}e;VAE}XWISYH%+|Y-9W~(4>{)D>Umju-mUHx{*(@g=UHnNkLOwF z>(u#NUn!jHYY2xu=vyM3>)R;&|CK)41NKFGpuX1#=j~^$aI_!%w@Enc<@&K%IQJj* znU}XiI4`fdL^FN$oALN>i}-&^d1((}5Bio0=l;7X)5rAmteK9rUPnh zwr8RF`r`dM&ov3+`uMQIz)K}xN>{u~e@Wf;za5^WP5z-wp7g)YF!QHJh3|EF@M9Uq z-=%O~-cI2tZ}rfi7(G}Or-#y#*W8NY^LtIap z8wDS{D8u)jW8-PQp1DxzB0u=(&-wRce15ZKn)J=__KLl0GXBk{S$oOHml5%!|8xE4 z`B#*O=QZFq$w0?`&H8UVcVN8l)A zRf^~KtrQOX82<)^^YM@Jt=0iCzbF;P_3`u4-zhx1MSnzmJAnFp(CvZ0Kse_&GCup4 zOW~_r9{+U-=k}34>|_0v`il7%*H7A0TtBDWF8|1u6I~y8x#EFYALm)w3Z;QqAKxQ> zzCPZs^Ra&YtM8h>M-dh+(Ls9*%zDW#;q5vg5P4e&60nt9|3d5f2{v$B;`!?AKu^vi$SmFAZ-_Utsu$|H%bf4-|ic4v2S$8wy_o5V8JI=zpw#B))L)!Fw{y`T_M3>j(IASUCL2`Udz) z9T4*59rEze7yLKqLF6pSo#Ev>VX3{_9>1voe`keH+X?mBsB{N3Mf z;mDu%c)xJ8NBp~8Wefj4pz?v2NGF886$*2G^uN%@yR!Ii#LJ65z8#Y51Bbq+4`@A7 zZAq8iMDvB$3m@Z{-z?Z99Pi73yQDkEgVG1~EQ{@WpK*iIa}4OY`bs@_?^3)&2hZ6z z3FrKVp1Ze+$HDXZZasIW&yDEl7Y@CwZ=i$gM}Zz;;(=M;fFF8TM*(w?FY6{b4!t`n z`R}UW-NM+j72VRqdPH6x^yc=@l-w~ojJ#tzk}E}2W?N!R1`$j3+d{0BKP7(}I*MzF zr7>E64kr%roVB4af6hufi07<4cUmJH&z&|pexJ@kJcsR7_!4hd;7u83Ufd~sgAR!M z81x^OklMYji%S*HpOY^a#=j8r=9?7OT|f7!=$`{qv{8{#;ad&?XR+ZP5*8>+2$qjO&Z?I!WZ#g7WJVl$H{|p`30Fg?`e^Ku?~pz zlrQR&4Gi!{y%Doc@sKd*An>gUbG$(I2j)KF*D7n=M=($C)VLb+bnYXV*Tj7V^1b!( z@`J*;e7|tWv#!yt{9|2X**P|kYv>%rKCu-FW8WBj>a(E(f_+o9|Wnl}exA=V+*F&NFx}y<2#>(mBtbXe|t2Zj5b|E-Ix|HZl%n7ng*Qw49Y;9pnpG}#~NxzAWA z{#7~$@r~Bq3bnmE5qOq(IquIe>F*Ja^t{LSuU4`-z&Ua{I5Emv&gPLyBzb4 z=k?-0$J0|j>L``;+U57f z$Nu26&I0~`%UAJTud()UoAbGEqr9Vz@z7Q>Be`7uF5$TTAfMx^f2$aOQh&LB@!ucA zD>FXN!8(PnaQk`hr&l=M3+hot;*Sm;&~GoZ_B`bBgKOlV)IZ-H>` z-^IeYf0qb{f6x6(dyaPNWStc89?2SohbB}Myca|JiuYnZD$Mw|nMxKdDD8UiNJ1vR zQ}K|8-zoXvgK1BJc@Bj=I-Q8?>3YRFGQ1_j$kSd+=kwk__MM+$@(;}QmiCojKkpZg z>*v+t&y_uakzX$y@?h?(0wWI&d7k@V{|X(@ZJ{g#r?>zDSF*RM<%SHH`Jr6v*M-JoK5{Zqfe=egW0;rzKAzF(~ag1=s2&fg#$ ze6IiGAMKInbc4e2obK@NS^J9Tij)U_ULNd;@|+_1t-_^z0Ac?&g}MDB!eKx9>Cd_T z9m2W(dxUfSj|u1c3+0vTC!XtHQPID$qJLFI|4kMBn}l=yn}tLFD=)O`)rWKr;(AAY zxC zKJo*){|L-)MYG50MA!G5L+!cGr@VZ8lXJd!@lDPSJ(uYbzS`ya<|OU$8?pi7IW~BE zLc&VFQt?QC%F}J1@ZGMzikC>XTgRxUui}-S{u`dYipjrJ+Q`2{&uKbj+k^v5AsBz< z_%Z3q@m%>M$6GVZb1B+SJQu>ghK{h8_Y!)AU+MPo9s}(se~)26INoDuJ;I)weN%Zr z&(V$adW9dFlwbkBOZEo;IO&5Q-zY_XrTDr09ToYzghQU^T;!iW=VH8w^1#2p!rxfo z4@lp*^um$;t*6^_-aq&9uM-|o`a2~9Z4}<3@Mh`lJdspo>!(SVL_?Mv>{bHGw@4)$LURPa#cIpJ^x^Zc?+X*qZf zI#uBdb&S!q&FFQ_*l08MgJ$gRX6%7xOaq|PzbkA_abiX@70e4@q1~!zoYKrF{ViGt z^;1fNGx$4V=clIm`1F*({F|^w=xRrIzYOkn_*sAcX zT7m_8dFzU6C`-iNWAJK&1$%efg?WwvvG=%C{5b~G-s5iJc;?3(Z?1SZIG<;llvzzP z5p%jlijfDzGs`6k=OkovzGaH%{N)+{vwDWGMfft8|Blv<(f4u3>@`FFn~qsqMqkXa z*t)Is$4G8D{<{FUud!2BU7k_UP4u3B`P33Ko zPjn7qFJ`yG{M%V_N%I=TGtyz|C=d0wT{y2l#>A*U(l>-7J^s?EasDcW!(ShrZRNjL=b&Rto5TE)M4|E3VZPHO5yPDzMiqsKjzCOh-YjKh4GB-b~WZc;krK)<(V7h&!4%`zIN61 zN5nI?L51(N={_r32Ycu)pyT4ZI9K`Q6DbX^mfr zN&kDFLruHL?Cp2^j~5;k{~a#RGoCi_KHwPr^o7vB^;I^W>Ctr}JxeDFXZVj_&eGc^-2DDeJ&G@`s5jxTv80l1_-=GVPM+ZR^e!G z+>>rcu!TQ%54%I*dlRy~DEBBH_WVThi==yl>)&60-=Do7RR1BrRh}QusD>5qa18$@ z#e>f?-a+Ab#>-yYAz|HGCF1(RwIjwS>?>8a+~1wT;cx646wdv*QFxB2OM7dkDIWQu zU;mr>!D}+i8qH?me2oVGkLrMs$Dd&zn7jj%zDxW(J?$mZ|L7f7-nd6Weq%*`eI^f| z{+H`3ghLaYD;oBzZbRE06j`j(Ev(5(}f8)R0-^h;YfGCfOIIcX@ca(?Uz1l4t;}_-QT9KEJ`C#~S zUwi+jDSceuZ$3?HjFSJ1&Oyv?mI%MyV6p36_U^)gItL-oUb|erE*$dM&-i>plD6@y zR6OkG88YpKa}e*EEmU|&LiW2(4aG~xl#lk1mv6Cfl<$`}+V$;Y6D`5SPZnvu5#PRh zx^Sm#Kg0FCRq~Wi#YptnCv3dJCg|9Y>G~l4!3K*{m42u2(z=~s4T1WJH3TsIDaSpM z56pPo5FT}Xd}|JUzshjgGKSIDBOK{@#$5=naC!DNKBn~fGi~-p#WU@VYFyyo>wx%n z&nn%_#okBsEf&u8^$Lf+X`eUWf5yuTUMW3+so#f%^ZKQ3qJF8b0pYy9Rte9+7!iB3 z*9gbnZ1i>Le6El76Z-ge+FIfK+i5C7^ZLp4nf@5pQ}W*=oaet;IP&Lr(3S}QRtMDi zWgDNq;YwSyaEJME|G#=Ka4< zc$CBf`rcv3rGfW2e2unP=8mre(n$GFL8eWzrVt#Ee4>L&Es1UxUawfbH~l8zm@iQucM0e9@sRMS4rqVvlQkO3 zcT1ACcT2hyU+tK^xIK!$&Hb^z@r?Xv-#2)A?%$Uyewbs@Z&1AM`nccOC_E?Q&lNA{ z&l3(l-+E&FImgp;ze#=N_nU3P@l2Ha$0fqUE?<53h5J$XaX-qprS}Nu-sc4SptU;hZ)*z;;;7gS@u5Ub3 z?`s)*rp`0>4dTDg_3@0pU+wu6$MET2!RK2=gTiWNiO|=hvYeR7uT}bxhrh6r-}*{^ z{0>u|-%yqxYYdDh$7lI9D*3I+^5dERuw=iXJRoqd;(_OBvb0e6Th8a(KRt>saLl)V z7~eiFoe=U1lz+&>2M3?}D0PhLfXI*b8TtJ{^3>Nct{*-)=RcP5k)JQwTz-#m$XB27 z^SfaSm7Z$~ggx_hi~>Yp_<@n9z2x%uXME)0hdjTNL;uQuCuhCzB|0FU>B5g^y8JF0 z?d{UUwft8Khd$N_whG5H|0+(u%cHb;ev~Kj;~DTG;dllNW_-+XoAd|9zHZ^L5BZ@? zo^J#72&-EsVz2pT#h$G?hWHlHLkiDINMn~U*R!wafEGEP?ee=cQQ0Bh8z&l{^rd)_ z{^RG`Uh>}@>>=K1N=xctC* zesd+C=ZF5t5B)uv{#TUtyK1lZ3c{XM;)gx#jqjBH*c;E@_D#aExBav$HNHze+RyJ^ zr}`BCBKZKiOMJ$^+YA=)2UQR? zNe@3ye^188Kln5JKkdWTA6Cdl=x|~3kNGTo>MQ4O%lIdX|ETaM>-r-)U6}FuVfRmu z@IvW+kFkr%9p~-yb)p>=ysMI4Y74#tvqIs^WFN$L zU>K_}bH7{wDvBs zME3}{D|V3M-Hx#VLVieLF26=Nmj{RZ6&fTq3a`<40)e+H49va5EaCj#p%jjL2cG4l zD}VM+edXm@C>-TMenUl`{B!x?On!g)naO<-?nKRBwz{w1_=6g zm|}`iVhJSBDNNfDgA5upJp>qW3Ij$NUh0dw<_&t!J(Ete<=B zwfCg(%J+82_a(W{4o<^w;?Vgl@&ad)*|?9rf%eMP-z+KoS$GSV|GCzOOYLtwjy&wE zfAweo_6H&NUVjvhdwuoICHd_yE%85RX^CHZjB=UFV=ElxVSabQ*`C@v?ElN?I|cuB z?Nn_qrYG8;?c4N5`*y8hBi!cD8Gk?L9RDC3@!OwR9=SgmgQGwBcJB@U-Vc@f8*8EJ zTh*b@@(6vthi`m%Yn*27E_U?o8 zT7u=bjYDVrn>pwB&2Oa7wcge6hd6XTd$&BIzw_DcK{&#HyJzqEpHBJJ|6w?<)m(sM zt>#~ofAgF3zX8tqxBlk*Z-R6Fx4@Bp``-~b^55Go?Iq?mrpNIomq#0p^8WJ8Wjz1< z<4}UT>Xx#W{`(dh&b7jR{C}ljV}Hl<9RCy?@%Qg4<)5DwvL$79Gv4j0!MtiC(HccdVbTnR%rgC{u#gN zi};)JhjV;AaKxv4yhFYt$<;@c3;MLjc{r!<0vze<%)k1Fk>~hLU&ODyx5L@qhvBS$ z1`hqkpWCnX-};c{Z8(QFzack0eQ-|CW;oKL-15%yi6l4v18~-FdP2WzsT<+EmTG&Q z<{?dlp~OGQwfVi{awDN^;Z>YtKKli( z&2OY%|J&j4fA`1A{9~|&*Z*|#uf8cb>pPX?+OG@F_FD;ueO=3@$}X&B%YBLMUkBmn zU*+A2wf_k?(r@{ngu6L(-hZs;9QPlN2NQ4}560m<9@syIKI3!kDB`z$jlt2rUPIcXCbJDx`O*g_qR3GPM0`844K^C5+Dc=icx%wZeXPok#@VAohPjbIQypp-_ zM2-J{wfrq#)0fM48V>t>yYheZ)5Gw0UB!R6eU*6x)j0j1hr&h7{#x+Y=jeF?z?1$$n?$2+4Tl{-|lCR-9U^+fB)%aKlN{a3pV{({%_^ulwA(*`^3Sn-K<4_Uc1pAQ67Fb z!uVdxp>yqRn6$>)o8OU;Usc2{xu5tlFC)I-=DQVe=(;`_LEe7?EncaUrQ zi&+j`=iVxx6^>xbcvg4=?D+fI8eX}!&vMs;vRqq*-1jkd!ME4)@!7HE5zmgt;R)mu zCI;vG%Gx8|PnIp8%#(>7uV&yFuYMD@FMc<6(|P}F{g3b`T8t}&iU&w=RAKM zf`5ZU=laA1=P1w4`Lgyg{;-ebVR?pq-D|x9xouGA-fGL|#>9PzT|eFjNBpiA&%t+7 z2D(mG-zk32`p$RoGU5vPb#&a?1GSCw@9OU6>W3=(cXwyFzOiy2{*Q2tnHy(#%O}Ds zH~uU?o#gsI*TI`fPlW&RA1>=755%D*X!lM6guPzGA-!U#D zf9A*f6Zx^f(q6g0(Vo%Y_+8{)cuP^&tUnFGQQz&qhT-lif66bE_VeBRrgJ^q`mwMc zjv~urYa=c1$6NPf@1O6-E04W|e#dezyuA9CXFAxwLlbh>$M?dqK5qUt5H{y;0FL}! zGg-#Zx1dv}{cR6nU;As*lk=-RBEJvZMSl*u3zte<~^^cnvbIdt~d)}`5ocn|dMB9He;m2XdS`(MLH|GVyv(*OK6Wu$ZOYm4-- zrKEB1zNd`u|E;b!e0fLNJNPae9j>=s#=5UIRCtQ(V8c(tIs862hd-G7t8YH>hX{X~ zw2bhZ?x)C~{qx^9#5xG}8ss{Ek7Epu_|-Sj!8v_~??-GStaiI0xIl>`QZfX~R^j#&!PPIlt4r0euWZjqB8ZEB4Yo5gocW>?!AU z<9dh$${mA;xz**mg52G< z2|N$ScgNpIe>?!kcB-%r1})YbevsTX-XPg;R|6Z`|0 z^B?ZlVaw-yjqhLcU2DtxvDLqO(dRn&Y-0DK&%iy^zdXTp=2MBkf!zKm=FfhY-25Kq z&^i9JInN3>_l_&KOmyxY-@*Ay4YAHd_+4Copt5_%r@791$N6dDeq|PYM`60D#+|5a z9nhKIQ=D`Doj(VgKj$ksfA(#ey+6*px`VfLu=B6*@ArXL(>FwU+J5+HQT^?QAH$(D zy`!8Xee&+aruPUO`sLLrz0ag@r(m{lHqQEO|G1>G_1pfjyNH|kwsIZusc#0(`rG&q zb}zB>tJoW?|B)n@jW7H+=}Y!7eM_-Nq)+>tLmu{VzSl$iAL7t;eiz;P)ywY`bK|UE z+Hbb9^!kjqCB>;EVm{$=lstzEeRBB!1Rdi_!oTaPqEPO^Hkns-u>DJxZ%TZO z@V1{Hy|U>0>-9YEfInBT^>x^9bN*H3cat|II^-2cI`>;qo2T{~%}U z?`&nCH%)Q<$;v)o*uiyvzOo;_t;*f&JI{6A>)V4pVz2K!52iLFcb#9ijm~78YleZw zJ^yuOZ~3!p{*<3ta#8*^9!w2k%jMO-yf5)j6Mo=3cwLV$I(a7Xc6cLse^izG9q@yc zaeOEIXOXQU+((+wtoK)bd*$DQH*meD@}I-n?AevCT2|Wk%9_6$;GM{5W{tZI-p$oB zD!ZR`AJ;U?#!bVgxr+Jwe}&J%&nn_({$+j2{ZAXt{g3T2+Nb@G_U`7;*?(=}oWqa6 zIs7=B!`oj)c>AlP9r9yI{^je-c>WfC)A?@c81?s21)J|1kHYQB4}CIa2}gUn4)(k2 z_wk#~`Q(1M-B4Mtl})ow|5Kc^|7DbITOrQ%SULRreP-9O?U9<;U0ZRo=&S$PK?0j_~?d9{&Fayo9{Hv&N@6-O8&e1=+|B@!Yu>bPI@CNv0jql>$Z!LuXKSe$UPgnUD;FEB)fAxF66aMAXi7)kh zW-GcTsy_Qm+ryE{-Ve@j9ruHdfBmHIPV%h#ImUbM&yH1A{|p@Ct@<3FLZ8p4^gq#r zF8hyM{|bHI?%OSXzuB-~M~BY)*=f$xmA(J5zQ_FB^ed0_yT9XvT>W1QPjLOK{HF8o zV6G%RcNJ{DAH5Hb_*{>+@1h%Toa^6ht{lU3%G;bnK5%WhKU|>@cd2ictl{?@eg_=k z^*^2Doosx{!~er*9Q$C?sQZ3+j`Nf8r*r-J5a+!9JOju2^IrTPB)<<<|Ju*-Fzn}g z^eT9!%H`c1d^)lE>@Px}-#Y3dzGy$r7klA6UtABz{jc-AF*y1&=X*QhJm0hbiuz;! zNR*5E$7Q4^_m4er=(B${Ki!1U*?xOG^PA3ZC2izvpP=(wEmNFd-B4l6E7)(VXs@?b zx!-QFy$sdxH^G+m_9}Nj_8|PG%Jv5*;FnakKR5}$ta8s!l=}79%BF`VwGhAGepw4^ zGoA69-iY7$CgF&05XH*bhS0b%ct2OS7Hq;_;5vst14nrCyOFSwU)L*EAtlidDe0*?OU4*Va5A9W@F;k@58yyZ0BXzNq{9<=52XbzqA)AGsnQ~S&+#JRqBhVxe% zYPI|pjGVs(V}FvvUqBw=)j!c8X9~O^cRfsde52~OzF5C9KqxJ@0vMX)lp}c?O0!OYp4%dZe0qt zf3$pGNf@2wyPEU84UrbOkL$-&*8d3C;a}dF*z(*3M|sL~9egse<$DfZQscLNXwPmA z-LLQINI)))E+zxm3d(DZ4)NZ)b{H3rix8u$3hk-ypD@_k&))Hwexm%8Ko ztDj(hsO@20k~^Od`IFE$0Y`iPOZ3UM8J+J28-IQ`cs(5H^Y3suUd7+x^6$W%gx^xb z|2g{C&>v6@8)tf5zlrp^|8io<;{BI$#IJl1+vNS3a>#%5-tsMjr&s&E=xw|kO-#?K z@!iY2@29!`Iy!Y*@bCEWnu4tfcm@2Z%Ddn;{L?l4zXi9j$F?f}eRv$+Rr$Zd8{sEb zc0Ysb1IsI4>i*L9Hc{p7FB#_g&KjS*J+b@$4#9c<9bLwv{dYZt&HL}1Psjbq&D>Ae zKfA|G=YGtya96?ReU}5sVm@ek2a&~m)Anq7a(kYFqdj|nFaXE>f%D4^=ns8^Pbu^J zM=Zq?&h|Qid6%L*0TY1^y^jUu*ea62Aj`+P_rAQa< zZ=ZtPvd{*)|J+~t$NtLO;YogfL*;*f?T>cr8RvS?F3uwj5$_L{^|rWQRDLGOW$Q=y zSD*DU>)V>-+ROCi@;CiqFY~_%&gHWij{I+Gm$*(D2zTpq%KYRX3pV4$ey+2A%O~`| z2>;suYz=RG%Sm63Zv`Cj`93&VTJ%2nS~%K+`_DGO59QE#|G$xQzW?uoP%2?yb@r}M9)aLm7K&)PfMv-LsyqB%$Bj^}+ORAfBAwK{)iAUQDtmz1F{+-f=k6 z>wZVubKdXR4~IU}>-e41I|=9XZijPvEz3x+=^@FB(z7O|$NX=Ev%XDm=rh0P;mEJ{ za4wSdPr`6M?zC*Yi(lW?R*`I!#6^)2Murxy z*Sv3j`NjTf=Pz-;3%|RFoBcyRUwojl?bY@a?bY<|hjV_M?{ruHkH=WnU)z+<_;+xQ z_`QGG2Z#NX+dqZe{e{Qj*k5RT*54do8;reQ99{$h5>#iyO zzwn!^VRA__8t4A8F0LL~`FYc2|M|_8kK!K_FMJzL|Eu8e|NF?7!#7m_%C$wvUoltBOh$9(S> z$ovfaV3qsrQ|qf~()le_`^VT%<^Jb$moxvqqR2mU5dHA`EBp7wR&srJ5x3l5=icMk zUnj3kZ1}C*>qL0dHo!4k!~4FT_M#ay&TsAQB0cY{@%gQ|HN>C49oNa;zl7XxwH<;# zfDWDCYLl`wH%QjpVynePgeQI zH(u6^SKnRl_k4aojx0aFw?5of{da!5YvW7Gx8bYu*?y3X}!=QFmKn9n%hn1f@yb^ba7=lSaqIL2T750IDe|LV=m zSKwVWKG$D|;cbM`{l!m|{rvuIY@Orb407wNPJO=r8v1_sCrf|wqK6i__BhOCw#N({ z_R#-PIQ+|7NlRwuU%{5&K{(sb`rVBVo$|9Ca@%v3`z^g3-u4`FpGWngC!UAN>l6Dt zY8oD@_VRhu2>d1v-CaYJKk@AmaQg4T?;`)i7ygxxb;vitS#JN5!>@!x?(;Z#dx@^~ zXY_}rmtt(3`+ZNMFZKu9Uyj4kUoKr?O_;{O=@@~Xf2-T{19Wy4$l!@u`$tI+kK zs?YgQ7uRwB=JR{&S3JM}5}Df!f2`{Jx4zHz0O6Msc5Hcx@B{D#E?L%Voc6Il3j2Hv zIbC$?iYo7IV-K#wo|ZR1Eh_IG7&VRC)GqyftPgau`M%8t&hfsD^?4KA=FnN+wBKw)th?V+ z?AP`9^1~L`^juTf_lY(W-@`a`K93vbdR@WRH8;~HV3$pGu6G^gTAS-!?~*4gKOa8I z^&OR6@0jQM#>&n7pKwv%eO|C0er1(Aep&xx{8B!ak=hescS@z2^37`^@dP2hQ!c7yhb|;VxDGSMht) zf1k%6hvRvC=kpz(ryoLYo6_mu`jh>e{wPoVuSXvKZ4dk5$iM3m2jHmhzVCGc{%vfo zbAEqHIfu^nV0(@Bz@K1i*xz*CuTFB_TEm-POt`4M?}8)0*7tL8)OXW&9?t2z07v>P zAIl@kNBQ5SW$0nJ_?B)4DM>G>ZHnyk4rtg;wa~KmB0u+T1)xOb8CXbW^(}VJ2*_jHja0-mT+Ezxvx@n zdxB%S&6%UUrqu?UV=3oV6YciWiB@~nOpD}n9hmqY6kNxV-O`1c)f(dWB_d|3AKYyF zTjO}jRIet67ScT$1=ob_Lx8(%qB$`|QyszJ6|Fx1Yx`fLy^)$zey@LPlI$!sKoe?d z>oTwSkDPF^qK0bSUhJc=_4b=eU-YXD(azu@uH#D^@F%#A z@Nall={s*}ilFG*L=r-ueeWpTuHpZX_)fxcZ)*I*WF!3FPb1p}KT!R9@3IrVv$Fn= zCI9N*h^$@Zjzycf&STLyyp}k1jz#ihWyhi&a2|`M;24WeJg0;`Sp7S;*;j==?R5yw z_BsNGy-eQ<(%VL-&bga&$C$hMY-R!;DdMK@C5lCT(MmY_BH#7g1m|}>N8#wZd)s9! z%)C9x?|F7v`;TV@`nNp8zkSsyIQLbj;cgC{_pUa@7z_39*pdDB!QuZ>e>ZPEdcuDG z-Mj%f{%+n2UQo*8bw-Bs@8+4m{CD#X!Y7+rU!Ij5fTO(Ji+31)8;9=y{;@Lm`h3Bb z`9H>Wz#`pS-FJGhRq%)MZ%37hwVS(bTiZzVii!@KskuS0J7LasjRf7Z7h&iY2- z@UK4a1+)B2lAE7?;*R_{*R?)Gcv<@e+di$&ZGO|qRDng@pX9Aygy+cAve7F&Ea<^x&H0n!vCk=s*0{jd8t@ICZk^ zA=tUgd3c>doc)>U&HdSFINGEAk!uf;{s*SGSAz50awDAQmP2r!TW*2#+|u%k{>6K( zHKZf%wR{(U5Plcw*7df_y;b;^$M`*1|2yIAe>%zaZ~nu-?du4f+t)lC?aOD)C*XM2 zEVr>oumxJ9)NfTMf zuWNa$;cZo)_UKD;?O}UEZQ~rTH*yu@wR=4&vW2~omWSn+%VQTDf5OdN#93aTC|E_vH=n5PUHDA~w_ccW7+yPp|TOV9W1KRj$5eTxWgCL*EAh+vBrp_)ox&ug|P}KjCfvZ|2Y$ z-w4+cpL_Xw_&uIQxVLaK9D4zmKB4^Gni%i=_GKUP7jfvcM<2&5htBY}j|i{-eQ@?K zhyPRP*Z)htga2^Gr+spKwyg-Sf7@5~ezNP&my0K-mUQas(zm(%JD4G`e%O?_0PXEv=xrOGc@)X`Zvle>Z9_R z4!P|&YdPs6rho$nT} z=KPU{%Dct#+bjES@c`F*D*JBn5ZByxHO_a7_j9$f>hs;=eK6C8#`$is`F%!Z-z`4O z^^J)yB({C7MOU;p-#s3JpIG(#?y>#zvub$%R?l7-vp4QqcpukySNWe@(`vQ3j(7F` z7G4d1i89ssw|`b~zNLoWL->vGoI>1ZV9R^Hq4KwXwsW2HI|=9fPQf|9_TQ0T^J95O zezgA>9QHT;Tj5B*`E`8D`5lELzwU)xk4n@u&b^SUxypMX*TS(E()sBcIOdl>i+}Ss zQSD*)(T?!uFNe3jNBHJlNqDA)cQ55MocB_mgyVkJXVLbL`C0TSIG#oOw}TunKF)7C z@7KFHTP8YrgmY%olX<*@O@Ee8b@0v(-ksR>q5ZIRQfK@-xek5ae;tJnR=NI*6MemL+AZ~_TSbJ z_hM^H{}JC-{_L7^|1ePH?oHT1*hS&t2tW1{W&XbBp(VguR+js{sDHBd%WVFFt)G@> zuAkZ?>ZkT^_O9`p&h?8P&IfD#cRhkA7RH;-y>!}l3-WB=VL03OAe`-M`DXhrC+@JX zldr>%1OwBIZ`b;?~I$npzG?)rpPira+7`L5y-t{yDd>iLzzd!JB# zxViFy%7c~nSH6E;ng4Lx+c@tp`_X-8<)6p@0Q`aK-@n~60mt9&>AAZ+=lKqejPu)j zZPNeu1)FEbBk)%$tIzeAtWOSo&H62VBY)n{w&8p~OO_YzXDz>eIG0}^oXhVxoXhVV zoXgL)7v<&p&}O)eAD!)eFPy_4hI4q!C&GLG?)pLa_x@RXbQg84D|eUi?TLiZxmVKq zw7#M8EsUke9#z@&INr1?yZ$)=$NjweY#*V|Z)t3TbNHMepXFH}<5`~T&8Og4Z&u$D z(i{5pKVkauqceX8;heui%8R(=dYa`C>uIi+ZHHf2!^`uDpYmJe4OwsPk8XyCxW1*b z^>Y|`uAk#@)X$~(pM?FsjqZ2vXS{=7Mw)a#hTQV`{v>Z93;8QHl>41G7Vj)*0^Rh7SYBj2{?`t_ClTNlT;wv2Rs```XP?q{6e?uGOG*7C^nTRG;p z#;5;?Pkpwh&?nE(*9AKtK7~By!-ki0_#@aN{40099`e_|pv<2?M4US1*3Xa|pZ3q; z&wh*aHTM(5pYI1&5P!ZO@LNT*O>BI7cm?Y%@Fy#qo_;veWBkJ@zq0oOIXyeCT%6v$ zaLE0;u4mCbTJ`&PToHnILUklyUy`W*iKJFzX&OSjTE z{huR!;lK0UI_3WDl#m-=9~}DR^NIDp3(eWT^)vim!Ml9Zr03nFL8t#gl9c@q!RpRyWci(Q7yIvaMKly*~uI5#()_X~VPJ78=FX!iN ze*cI4W?`-KTO?iaj2(0j(-G>_zkcA9DWLU*u(HM9pSAXIlS|a9DX&N z!<(NR|0o>cZ@Q7XPWjF9o9@HUq&~v2-tnWzFTl15o#nfqbCj<l{SL~NW%;2bw|t0l zk$qRf*}m5IY+utG_I<}&O8GyU-*lFz_R0Ro;P7vJo8erZJK=~=`MwUhkfC3ggV ze9f=%9fxy#XW)oW|7Vkb@3+>#`F_j%=ld<=3w_?7&%^Jo@p*r2U5Wc8pMMX)`T2Jr zd|mbL-sp{7^O&M>AH%=*GgnmZZBxIvj`nE!=HQ$@`@5Vz*Kc$B*1$P^_AQaVOWAvn zl!QJ1HRWab=kl`tM)>>JmHsT>-yA}ICx^~&)y!~ykAQQ1W{&f=hRS{++k4!mO;71L#X=oWs{8GbwG(ElH&%k#Ti72=dna}N1CfW2@Zhfetc z&LO|-mhx?o;O~LQk$;b#amsBkA(yRhnYSl4{Ibh0hL;a_u;XXwSH5M*VqV33KIA`& z{4^Z%2jh2bDB?H#B=h6&|MT!X>1msIoc`tT{|Fk7< z{+&PDU*-D+`RyD!?-w?4-qTRIUl`{4*_EBo@8WtTI(3)&R_ipsNBKA(TuOPze9-#` z`>&YK`+Q^=j`4F(Wo@SOeqsyq`GU>;#2lRCH-CA4c?6F5jc*C@M|?hSS%t3ryv6d( z&s%KYRFlSOuTieDz2t1KNqA4=n{^M;yOZn4&!Zku_`Ox$2TybT!OGr`9pXCM*YeN# zTMFm=*?&d;d|strrX7tlzk_h(*XJ|Z?^#v;kKciRu78=|bSsH}D`%E98h0CV`(tm* zb=u4PWP9y{v%U7h*6H=do$-e{tm%;{I!4B#-Ve+>ImnahS={3ALjae<;#fdAlKil z?BCWq#`Q31)VUsdobwASJ3m^(b<989Z#o9Y_~w4oaX9ABehcnA9OM5qyqvs#lizfH zt7C$*bz0~Bl4+f7sO(QA$ijY3=TFwRJb$u0V*cd(VGdrxp>zIVee5pSte2lka_4_7 z(v#;`eQ@N@`N|M{Zw>GI_AvaI%Eq^b@iNEfT5ori8-634!*7Bkyyf4A-za~dHx0t^ ze97>5Srp#!EW-QkkFD@?mhvCYZ)w;+e_!HXe|^c{OnqRWzB9k77fm(BM0Fb+O(FcF4DP$X%bv z;jItdCHiLnaGPrno#oxnIoo#w9QO5oau{C0q0>Hc*r!vjeU;DZ8FxR1I7{Ahe{vj- z{^U~f9`X}%?J>&SEazt{9Qm>T+7CznrT=4BFZO>N4*%AF=Q~mVKl7hTeLszjbk@Hy z&QbsTHiB`-ep~a`hG!e!tfM0zO7iC03W<%+`WW%~tyQmMeD-;z_g4>Aea3$jj`)pl z8EK37+)wMXm)Jksq;JW^^fmD(R^I^j34N9qO@5&~Eq~iXF8@9_%HRF88{uzo==5*> z$o@CM;othd1763WGrn`2S2R@qwvc00l&AM^E8uNaZu#{jx$R>WOtu@Rd~=6 z6U2X-^Y1lO>~)6gY%lwdu$SRYZ-j63!=eB0(0300gR1YoYs>zJ&s5eP7m$ZNwO8x% zi}o`AZ8-KP5B_<{|FwkCxu0o>^AQ2}$?MDbyS!lYw|e(-eP{LWw*yZl*1zSE{cne} zf5*e%JB*+7ytL{w`~aN8Pr>2e_~sMq-~Gbb|0JCK&n0$$`WnJp#ya3;34$RfP^wYA5Gs(B>Zap==AS+9sZ4f5RUkjYrl{i-tjHMZ<5LHiyLj+%ficP`@uecwSUjg zUkBiKRR4pVhd5>{`~21Pf3mXQf-!vl7R(O#wkq%ZmZ{H+wePE{{81ar-?D#tW#z-< zKjc0?pNAP{8|U-$CFFO4-*o!l0*8P3Ob3r)kC6L3*l%&XmauIOy0=A+s<7Ztv&b2x z@)|Yg8yeP=zoWKsmp!%oe%Vu>TKvDip6?2Neg3`gu~q)qzbo>`{#^QYbJ$vEKkPUZ_0)cN2<|T8))?d5DLB?a?3Yf% z(JvX^ejtb61V?z~;~nyeB!2|@r%8)#U)Oxoo9ld^b{5`N#Latn?vejeW&g(26xaE0 zTy2666Nk=u{07c3kAFA*55nI=9(3-5JI2|zq;p)c;>5V}QT%U!pHTJL&y2v)&)kRi zo$$>Zx=yxT9zr(TNC`*3(~qt{uKw+pCgI#KxsN~kr7sX}FC6yuo3cK~d36mhpFkem z+b;I_YK_l%+%(rQk8>T~b{*^R%FlGj&nLO_RO60$s`HA~a2r25-y^nPyq81ga~tc^ z+R9J4x$tD==fk61-%;7;G}`mV%Ia^CpSH?yzBg49$O8!Y!%P)eggjW|Grg!-NU!t60XVmxjc~Ld-}~DFk8tSJKg2oo{}X%y{^OPW zhx0w;9^%UHA@{*iK9-mDEA!^Wrq^*er*{et`QNEKb`db3E>AR z|L4{GXb;!vvpq)Pu*bLi293?4h|9NzC&6$aDB}DZJmLlDAj?|3vr!{M!a~kGs9}&oOSBp5YFCj?0lA z_pM^mMf+B5FS9DcHTzyU=Y6e1aLBzcIMBh4KOwh$Ps45e=nfO{3~ZmE^Sxx}QC}+9 zjBnmIwiDYPGmj^^`*i2wyifNyoYQ+0o~`=KkNf7bycZ7nmw%<$V}db9XMNKiQGe~9 zEdSg;nZD?s>`x}(+@DOs(Vw{Pc;K=!m*?kZJa#x{$j zt&MNyk?|@*|Y@fzYS;qjz=Nazx6Fx`)`7?{q0}F{=Uboed0Z4d4FQ< zaTd<@&^}?WW}h|by^}*HTfV`rL+pgVp%7*$qc}e6RN~9Pzo%a1h?cp));4 zIEUQ+eIAbV7~dH<$9ERa@oC?P&vlPA5Tti%CGTTKXd%nmmL2b9PxXfF@&Cc zpD_%_eTMs5&0p+mUGWoz&-0tk`<$KV%lA2!N50RQhG&cSW}m6)`($PHw=Q3-Uk?30 zOUHN|{>$qBM&jQ=fA9-S$`8Irc@U2GC}roLnJwSUN9h}ajejE?`FlJ4*#Q3Usqr~~ zw>)7sd*$zJ*o9Mn>d+{4^gZPVY!0F%dI;VFz9O*TE8{nM20XV16 z{v^_;zTI%vXZ;O*=Ewdx{JZXMeRvqZ>F!@w_B}jMu<2iBxQ_niQuSpXd89}A2{@}(H>H&CuX6jh6L3z?TH?;>>4kH8oKNTUj1fMkM~?K|M?98S+`kWU zeTrk2L#KQb{WU;ZIk6_rTWY_#0}(do%iR%oMWBb@1$wV_%23s{}0=z>Yl*;x$^I%Om(-w2RMI|I-&DB zYL-v_j+%AigSE4KO-`u~$_CY$=8@6y}*l67EVl4B=pFVHgr(nmY6$Kl64sjj& z{F}8?@Ydvi8V>))cLvV!orNPl^WP?HgJ34MOIZnJW9=!{>^@%JVFUqYYr zsWA@S!(UPS(rg;{eee!scx&9cUn=e8zUtrkjQPv+ncZ;AXB@vy!!ces-&jr9=nuWW zS_5}C+DrSHgrhuNf183ws@(XF!a2TUaKxwn3vkxoqP#=D>FI(aJ?h&6XMH1Z*0&SR z`gXzHH9h`~Q`_r7`YfIM)b0BoU9g$&S--OWHXQn$A6qtge%#ZM{#9_qH$eLJALZT2 z=HLD%r*}Sux4$_H=lKif3w>3 zPQZ~~c`C8{9BhxV&tU@_D%YdyvsK?9Y}k{PyI|Anb5Wi0QO+j?oZrbA=6qX2=Y%Hib*um3jr$^Kh#_AiHj~|}?0r_9l{J0Oik8AU&b06^(XC6m4&V9uDxVo+K zpIlS!zaLyub&)T-~-pcN?-T;5F zviqzDVVXtbO#gN`((gX@NtkBPIKK-t1wW(msz+ff_+^zh!SnD>SN`{CzZIk}+fUB+ zv+vnc)35yo;B3E*aJJttob9&*&i2z@*?v3WY`^1hw%-Z(-?ROek-ls{IooeFyeHZ3 z|LgiUM||0S*2jO(_WSo%|BiLo&-(Z;+0XuLg0lTq{n<3~h5qc}0Q!7}u6yKnmgh^3 zLArlUe>Y0_T;Jqe-|V0E6m{i26PRwlam{-sT<7*X4d?cI2+r--_3hk#9Zz!mT?$A0 z^*s~k(=5X@&i6_-!_TVR+5c%j=NH+2d*M7D?1r=bmXN+|zs8jl|N^LAKI0oCZ1`8-rpqqsGraN~UXJjetNyp8`1`KDsL$|n z4lhS|*E`k_Hr6}j{>0w@Z-Mju`T)F@H0s>{GwiwYp_lV~glld~8|Qc1FL1Rm|3}_J z{?;OH>AxrW{}gQ9$nq^6a?9^q$xU0x?|DkOfB*3sU-KOyfKfD zdpVns$9p;NLp}sQwaVQOXZa9q<6idaQXctl;t*sZeCNJv*|soSg10_{=UrSsjy&ov z`>FC?+vjV1r%1p3(Q_-`cWs%kex~uwbI8}0_loT^bl$%m;T-pK+WROR_U(NB=6)}d zw6NdH`{7>rUJjk_^-!f3?w`CLnkFv$K%MtPd%5l|*z$hf{w3ef+kU<6)p>t@0FLn9 z&(Fj8{(RXL7w^yYKLlt06L9uFll;5h;de8{GU(b9U{v-V8Opk3Rr)MP`=~0f!7s<76$Stn{IP7V8SwEw^ zluvZXCzD)z9fY&J4#3%7hv1yP!*Im!e%0gfdpLBi7o6a{ts&Ok+vRy#-Vf6v?_aHQ z(`SF1)8E#9Nxq>&K9J-uyT9}|AFTcz53Fy|A8J4AS5E&KIMRQ^OUn50^s9>k)3d%K zzTOnyTPPgsPrN7hQR?Fk_?;zq)86;Oxjk5)qP|-HkHV2(>;D-z*Z|A$NVq_7?G3 z-b3)V>fiK?Cb{WxJdE`CUd$By2i3p*_aq$sx8Zlfq2KVk;0WKem&+I1!|^igVS0z* zNU!=1!dc%TxVy&hdp}FD$M02Ezy0mKmF@4B!=c~xs!edLS3P(W-z~uJHqxkj?nC(- zxSab0obtv#RW1*69sa)zYu~$5_yb(`HK9xRanhUpJ6?o;^_}dHoBoii-?@3_;lze_ z|4-;Q{Ub{*#&7s(p8rL7{f}IE(Z6z^Cx*Q7pICio;mD7C9DTvpKKruP1bN-ep_BJ< z4*npGaTE5q5*@nxVB7ya=+Nn3dH9!YUzu%BnYSl?9{&5u|Jyi1-wN`d{W~58{}+l@>SIPgW4*$!^OZMM}v;RIg^qXG4lM(6tk-o+D zlm9LD(|@*~ob4xP`^njU*OR}#WIyH0lD*`)#M*B!`Oo&V{zU$?-yt~L<1n1%=trLQw>$jzz~9Qh<5lQCL1#OT{+IHbPW_g5 z)_*$rH$6U&4*llG@gwph4<`2S5-87qm%#l2_6a)wPQkv!uDA3PAH~!-zZ-9QZ>j8h z{1Df9{l)Pj)?fV2iT4+=e&YK04&*Cq_-iRU=L2^a_04+LR%Edr<988{p*6arTVuP&h>8y&i1lBXMN5mL!b3+9FF?e+1`}TCAsbI z2psLt`DH(8$@5F^*J6J8q&D+mINvW#!EwLj{^z~$&(VkI+)up>dpxRO^S+4vX}hxf z2lvBYs;vGcq$lgwep!DHob_v;tl##W^|we%=y$$7052gh+YLv2YYBe{9;)HhZ+#89={XAL^c;gDJ%(R#`Qq^B;0Uk23yDpy_Kx(* z-oFH!e(zUu`n~^)^ef-eAsd#Tn`)M{2eua?zh!GdB3gpnB~y99>A1k z(RzUM%WXy6d}n0@URT-mBy)>i^1Btd|k~!ODK8eF}O0 zPWxdv)>mC`)n36TzmM?>&iCie|Kt8#|GSfa*PoV?zNr7+zpsbGzTUrYg7f{m>uZr8 z@25AAgt(u!K5T(=eHekGKDd8l9R3D}PXEq_vi}J<{CmHcG>36^282q9Vy!o5lRDp&1>HYfLU&q;V&3Epyj#Qq_#kIchS z|Fz#t3a`EA;O-h;`N2p zx4iTGejLv8d*hG!z3JT#M|!pI(j^z|>-=g5@|e$Co@4g8?wD@|6woZTNCiM>fidZ8_xCRC>;4wpY1>EI}V3F?LAG~3VX{- z$bYc?BTaHqdtVJld*6IZSr0!^)8lxuiR)-jJ|7x})JJTp^Lfz`&hfm+_H`Uy zQsuTkb$4^<-iiM+oL|sT>A#oaH}^-&;7FhPR>4`{YB=i|Xvd`bFzq10)`QkYIrGm})(`ny+WRZTK?+(E6eAnmS+H0uB=kxC! z@S8YvKL3`tH-w$w^IX5Kvf;Z38{xH&?Kj(J01o@S9RI_xY0^1=PO6ycVi=+{+Dwd{(T;7 z{fYd3z?R5r@^w@sR!reuEd0tBTbADYv ziTs)$=LZqq_?*8*eCB5oj{N+|HD!E@{?z^wlV9vF;q`Fz$M&CF;oN`9x&O58?%~im z{_Nr${ipkRRc9o=ihkx}Sf*S4zP5*Z4+hh?p`J03zy~?MO-2MN#e>eW~*gw)Mw@7cW`}ci*(NCPZXWUEv zvG-WPmd|?!xPE74`{zNfbAPoNCfdf?Uv1|q_g8!2++Ur7qrbYJ`Y{6k1$of<{U+Oc ze81_B=@_)fbWNZ88#Z$t?ZM~aV{o+B-78Cf{%b{DGd}J{9^-}m`3mA9n~n2%XBYgK z%J$c`_ej6}^#I&mN^H!edpk;Zz=ZA`W!z)pU-}Rast9&o){P%|{?;-p-`1vV)ebm>SzFs(| zZwSumn}BorX5dKQ9Pw>}|EcQ#$8BYP(wlfS*TK$@EsvNVKjN;ko^~5~(tR(ypYy(k znE%0txL$d6`9VIB_=T`({aOwGQ?T{>)1*n~{+TWCA93h@9=Y}T=PJJi-plpFin#Ub z@Ijbr*|-PbHRyItNB0rf@_0hxeTl8l$KhO`Pry;1egE|g+-|f{muRo&Ve6#s2Y#fi z&poGLGanqj;$nH&p0>c0)VTj9u$>9Kzg{oYSlp7yc2d(hVhzpCp0{1AOP{L)5R@~i(yzxpii(5F47 zlU#c!kNi15W=LOP`$y}4v@grk^60MdS$`(D&h=*!j{2iM?H~Hxe|Z4zuIYFE_aGeW z!FM5VBfGxJUH|RjI@W*PpSd2+`!k2(E_CSJU#UFrue3cyc-yo6U9@NOXL;uQO~H{r z(`$d1)4L0f^qQW%a8A#DIMVYn3VI)$_lq7#;r|Btb~yIincpLDq}ThUHRNk6Wu*HA z^BHx2v7vH*+sE~6<#l(I`>Efq{@t%Pjx5q|c^!gtc^!tMyj_uf2QWZ0|le?CpB|5FG3AelKMbei(<&{z&__8)~)g zLhktULFOW5=_>!lBsc#d-|#)8AHKc%H$K_Gb-Xr)M_S;tX5AgP#Q3{(dmYXW)?Qf0Vpu z-rvD1Nne)xJSp?B4qiq2vV5$Ak0kyX;`jdNWi@@KcjBtW>D>*7zF$Co4&I#dv+U}{ z@`LEh@-0bz58<8f|8$D4>miHdTMI{g@529zWn~S@Af|8i!x#JShr_@96;rr{{>t{V z1Dfsr#Fv;R2&w;O7;{*dse;CFK9>~DK0-{^1u8oBqj-z?(R1^6s{ z2W6nsUaPs@N*Z+P?}OV775#GPH@)sJi}Y$=_g_VRRy+&+@Le^%`fpKR!hg>#W&DW# zNP9ZoXM6U;Vb6!WwTvgTRiF2JyO3x59)h!d&%=?P2d2vWDu17;jjrpeKEKbjhU@RD z{4xAHeqT|!w~alx{wg|kj$a$#Jbn$pF@9Y~dI#Z;Kd$)q`&C15{(jX29QxG1y@MU! zL+*HW2#)+Z|FOR%*^SeF*3WD|$D^>H_WHMsH(y)H{!zmJTCGoxFY24E@hQJRUCDCq zFSC4Chur=w%Uz$%;hmp{-0u|~hp#4#?h72&?}hxcA8ZBn_tlM*cH#c8#7m!0_Rq%m zt>jVaW3ca+yMOTyE-MONv4Z!};i%ur-7gvPhLeBwO~av2KG?zgmR^*vK)#gz?29$N z>tXx5xc@MG-*;T}-w%(#e_#E-5FUpgRrC9mN0j@;7gYPWpKT|yTdIHGPq%%1w)*$| z^l7gDqO$9$&VTcIq@33y55pg<{?%`N4*h!w-w)4KxzGQG;rYrV#AjK(CWSxR5#IWg z!&~1Xyw9_ilDB8q@TPYe9O?CWmh%gyeT{Sdb_E>kx7Xr-IUMV!KHu8`Q*9fke(!HW zzxuYrS)cuL=yUzo`xB~Vnqvza!bTM4(w?{EGK z{QbxeBmYzCxUQ2s_1%Vl=U)eC!@5rP`Z(wV!y@|qf7Cr@2_Su+=T zDQ#3IyS^K2e$T_9&+%{se=#0@@lMJgj{5UD3U31b0CDPEpPS+w>vL1c<@>AL@nR#K z$BW%?j2Bmp)4#$bqjA^4C%7V8jr-h_xToOi$pu^e$d@BqTIG-b;WED6NWIqeKeeRw zX_bGBicJ^Sd}CDk%L%^`eo(+oz?)SINyl$IKQ*}^87=4=lMq;oaY~F;XME7hiz6m=O4}| z^8CZ{iTQx_$^JOkry)4%({-eG6wdRHt#F=y?1V#KZ@a7)Wwv~Swf{UE`E~wr6b}3Q zJxTlH7!S3t{cpCf{rPN@yYl>JvO{iL3;F6DWq!DVICSp6TFH4`L*@Q@ly!zuM5Aq{H*`E{3hXCeq(ShKj&|`{C2>({C2@%Ps?u_ z&gHikj`DjA<*&Wt`=|Gl@bmBkO>WBfpU=T`OO0#ROW^lZZq`e%=eEk$hc=w+Ll2zm zLq8np>us0k51DO`!PbYBaM;iK;P~2I<8wbwFX_qqakjuQ9$sp{z4ngr)bUt*7@-wB?t zY;m%s4-sQ0%M@Y*W(eR})ftZxbqeUr#H!JDf8cUFE~WuGq|K;B>3_0zL(cjack zFPzs;mFM--W%zZ>(7o){WvtEXr^}H?_*vpVhri!Q`g=O$Yv3$5uMyt$SI39E{%YPn z&!KD9Pq~ityS{9Hlh>E0l7HXd-wEgU_iay~De9W_$v&=g|7rgk{ipro5FG8>{&51% z{o@QA{iFSv{b}ycTErLqnd=GKtBoI>{gw83Pr+t=S9@%$eDeEB`g8hrAdmE^Z%B+eSnqAp!~8My*k=)c`B zdH~*5g0~zGEZaOD%)>WUx%-)%k3Es!bn0J${jz@VZ$rQ94f1D;_m=AojyHc%`FhfC z`Se%*G1&3vd6gaS4#Ii-JOs!1X?ksMIlY!=q}TEF7#!oP`o<}rtZxDiefmENhkx^X z7>@iJeku0P;g`V?Ui*%~k$>$gXZyO|l+(K%j`SLz@6$$nj=!s5s(Is-Z%lIUPq!e6 z`&0j(g?zqvZz*^F6mswXN8r5PVE=hr^>6r%ly8K;173~&ZX%7k=KWAO-p9NPx&7a# zu$#{COR-mk_wQ*OLVx~y8pn{oqj+zgPx-uIwz7XW@HqU*%Kp8KmBjs*iGBYyv+W`H zZNz^b`z){iP0#+TFQ!L(^pn4^hjKa6YkucxLy=$Qhsj&W?}zx1+_K+`h>M|$Lw9lVt}XvmFUj`;1L`cakplRh~2Cu4B#PjI>#IPk38Ot!;dNAWj8JK>1W@xgn^oS$=Wo`mCj#@%mYeh9w(r3$RRlXo`}yMPQp~9#`(PY zG#t;HpH2AHOIxkqui-bfOWDQyeCB^GA#?uMz&ZajaHLmzS|4)$yNEmT@B2x^Fx_riqqQ076=aV_V2jQIG zIXLIn`DV`VaX9DK=eIe(?bLoAB)=QrNRROk!a4pSILAK<=lC5@bNtR*Vh~+iK+25nU(W%5QjC7%w|n|H^at%bXXS^L|Ut z_gnT~4>Z!UK6e4Wv$FSB%kdxgPjX-4+kce#D1M{AzMlAok>Aas>*Q;0F7MCWOB_1& z9ZUKg-|es3jkMKz3jUQ(R{zh3&%k$7cCLIHzOl07!wUL`7#}+CkGK0i|R`~Ai9 z@Q+va{h$l*3#-15GCsLK;GI?Ocy%1kM7Pn7&hR zq}TQ(hkx7SQo=|1+y0lq-8KFCcfBV2AM5aM{S5!=+uI@Em*m#(({Q`$*T3rnIsTQf z`t%d`HP!n+KW+c9cafcNSo-qT#6!S#{Ny?LSopdA)_4622vpsreygH(`0-2vb?xT= z#s78u)~EF1Z_C9#|J$+<@5SH7F7exXJvWZT)$|Q5_zPJ&&v3o!x+iOcXU5NcWbw)6 zx9iJqGdJA)&wiV@LH&9KJP;! zeeRp=A+5h!)9bj{&vlHG_fxrcz@H_JI{okF9RA&RaRlC4<@!Ghhkxsn9QDb0zyh#O&iX9R(C0o#%Olpk zwEtQ-+kZVA_SgUB;oTSaf$CrT%VB@HFR}B89ysO^md7L<`L%rA7Z>F#x30d(Z(v^2hHqI~B5d*t zhkf)vn*5vIc{tLm|1QFYf8*Z*NBqCQSaX8%d<12nll!^OZ2QXWyf?G+h|JnQv(I@l zyH1tab=@T^2PF99o*vCMviYw2OsU= zwU1crf4+m)^6Vq)+ugxVdPBbE<)tmYx>V2BT|?Z*bG@hXk0ZA&zpt`?$8Lse$3&gq zVV?6``E~g3;`(PBY5BW%Ejaskybb?;SH2hSs{ZA^#J`TdjqtWAH@)_kIla^Ho+>xJ zd*Mj0>DdkE^c;dCJ?3X$V&gvmM|#ZPVK~w&JDvyY|6uZOdV6WlkzV7sKaTiK{}`Op zKLPJa>7Rrn{ibgtoYT7_vFX_fM|xz(^I+3=0*?I1ClencJzZBY+pF>W9-`wj%e{^J z6!PWpTPy3|`}Xj!e07K1{wm8|7tG;1<=d0o`*`K~K7KbG_wmMm0nYl*!J)sI-;vfl zo~?vqJahc&hx7O~40m(rl#g-F@^Lui&3zi&=Fr{0uFMA>DA;_rU^(^S|6%WKz~n5d z{LxM_NhaS3M2NylivcDv43kL+0YPT+J(7?(bK1s@|&Vw`Zc>yU)GPbKfVO zGpEj}Q>RXSo%(p|HS^M~FVJ)|&!m34L3j1L0=UtS@~#2y$~yqul}Eaf$8!uvfPYBR z=eeuLfgci_`Jq4Q=I3ePCO_1N^JrI})xeEDl)nMED}M{{Ln2?D0|0)KlOD%LH$B$J z(}m9T?gH+n$MMgkNBh!WNeVyb*-rxR5}fb-JpufOg7ZD=XMjH_IPVdo|M)V&`5xe5 z;O={XtWV|~3*+-W6%(KK?*Q)FpZ<)oKlP_SR+Bz>N{9s}Jyhwb8w--hxq@mC{0=_WqUX&(ih zYt?*0obl(vJ|_O9h);eKzW{tK=%_~OA%3BQ^PD%=$?wIFPl!|gW1zY6=})=xn}ECW zxo>Z9>ce$%mp|jssn3vuzX|v;ho9wr0RERLZ|-vwclWs;2X5Abu0S5{2mYYS4f@5! z*k=a*Il+%d-W4-_d24~Y^0opu@_5dj{;zxP-Nk9YX3&lO{uTO@ZtTJQRvnz@?71#$ z&e`+5u{P-btmw~mX7nv z@5NXG`_qPe*grlH@blb?;phD6aqye@(;=kShx&F2>Ifh9-}j(=P5({&u}SbF4xQ!Q zG&?G9;=K-jKjaO~LI0qWOZ*?;cLBddaN6sB;I6%R&cfL1d*ELU|38f~cBqJJlx-lGUUVg;t=r9X;k4=2j~3pPT;1#jiPft z_CokW5`Qx`v@QgGlf?h_8oY;w`Oz<>yl-G<4*UE9Wx|K|;AbH3trDN~!;5`7aYN^K z7nUG%=DQ0_e=cm|rk?@br2l@I5I+_d7V_UxQ6IH~wRwoA{*nJiTm$^;g7Z5L4*>t3 z!_T{Q3_tDPhB{&7GyX7eH~u}q-S~%roA}hHh&J~LNB(Z$hEDk_PV?nI1iCA~33ONf z6Ha{Ub8o=^K)_!EZqlRu7bboCbpSW{qdqq}IQefu<#x;Szzcl-M+5vx@EduI-?G$? z-v`{#ncf2q&iZ@mnNj^*d_KmLsqn9)K9hdLp>uvS4BMiLsb}XI=r8csWe!fd!LJ1U z3gGWVv*AO0H=x1KMqTU!z7jt^lvf0F<5z$iex`p9aFhNh_zyE4etfFHZvlLpq(?gW zUHWYf{Wj3=0FElH9`fIZzg+(Nfg5>D{}JFOed0$P{656L2KYAo_=Gs~*9P6({PhAi z`HQ3PcIe7pz>U2qpYlw4)TbM`t6w$1?{sjc$N7%YhdAj5XL(%@+~`M~>+c4qJ~sk4 z`Vc?t;FQPtzbh|+`eowB(VHAP}lG2liX=}$X!;z{V|^3$G%zx`dBz7TQv zw17VY`rD>yoceP8#qeL4)bGKV`4{KwoYuu1hc7!>8%CsrpI&8ZhEVM8~s?Gjr1@Q>W55ee{&}v}@H4#w z4o-XS#{9&!=P+<%Ps-zb$H-Ipfq!oF;rwM>qr_PJ` z!|yyXKiAKR@d~IlnRVh3MZ_qg;`Mdf4B!;V-DH zo|gb0#$P81PCDDKq4xs66F8Do59u}hW$3R0{y1d-m<8~H~-=lK0s4*jS@|0(G7f8b`Qhx)ew zH}RYPL66_3IrKh0p)UcQ>zglf=zP!2q<;?R9Pd{+bdFDk zz6taS@UtB{-%B#|D?z^pIF{Yi!}7n&p;thE0{A%&ecYkH3G`FZf3r>TVf-b)jr@0m z&i!oTACung(Ek%#^f8D21JF5su#NMf{AV0G{g>4kKh|op zqPGDz`khci`v-3P3C8C=WrogsfVU!U4Q+-G?-{%T(D*N0->d=uH~jeUoar5aw<-+p zBY^(_{O!hH4Eve*Jdg4e=uIM@>z{M+x4Zty{=uwA@m%e_;J;k>^Ox&$oZ}d?`0yT* zXFxOeko3G%&yVJ4a)S4SB+&lcdqOy$ckc<|{EBP%d~RH$`-d^qNrfZ53qgNE()$2# z`XfIU{0qSE0{(g7|0VFFz<&;#@}Yi7$Ts@%-sPu3H|OSgPPhmY_x9R8!mhS_=P5F*M{xRUUi9B_01M2S~;pe@~hhd+~ z@Z-bszaMl{{*<49ZH@f(=b}7-cPehIlS4k=L+V2uKIG^58N*L`H^N^s@>o7cft&K- z+S^mWZ_?3K`cFIjl)o1Km61>TEDr2*40XfUhxT&uI~jjobngS}+b}Att#1KN{q6zX z=*Rjp2Heyaw#OsD-S+qxa8n**Nbeco|A{i@!}ixU*KdE_z)ksZJ@_zi)BdP0*O$#b z71ZZ`=x_94dl&<5+5_9?)4)ypB)(*Rgfo5{a1;MV&^G{g+t(GqjXe5qTcNk{-}s&& z@n@JBJfz=&y5!P{yYxp;mkgcnT@wGUj;`M8B<}J*0b3b<`rq{TUH|)O;KqMr`b$us z4L@=2uNj=_5qHxgZqj?%30U7nU44tx_bPDC=WZ69`MnRg;ir7|@2-5}u6*Jy|5DUn z!_W8~&isJ-5qIMgH}Sdu*Npn??*Fv`f4kW43c#hn9~7MXf2)CiPH?8jd)(agx1v58 zT$LwqlOFBeg8Js#dj)XU-uD4_;}dt|--7z*#=i}?8~;Y&ZhYbz~5jXOf zer<8YzvY!v5>Ehshse(We;W8*f|Gysb0U7~OWc)D+?9XfNfAHe9|-WnCr5P3Bksy0 zZsf7P-nk^gDQ__*J8pi7yYY#e_$>dWnEbfq{{-l6`5y!Rpe`P@pS}?Mru@0Sv;nmD z3!VO12mUtx72iW!0UX;J>f!i&4gNCY0p9~6{vJ(M=ZS8>->$sdfE#&ykL4(E^BxQL zCzFu6$&U6!H7e z|IWrZ!AI=}gZ`jK6RSaAjK1;Rf^$Ea>#;u;d?V=h1OF}J@ZtU{*JD=;PI<(Qyb#}h zzNQz!!)FlkIA8mfM%8=0Tu=I$;Iz+S;I4h>pSkwA4Y;un^Zx*FH~(Y6PZxQ759$H@ z?Y;-~B*qK#9u&_b9RvRlg`fI!K4*d3Z3=sDbQVe9tCdf$@Z{treA;O0yp)S_D%wK?alMV#@;Ny4ZuzL(Oz4C z8+$Q772s}us=$$~dYGSwfSddH5z+HQ-0PfnW2;A6<{`e!n|4s74{`X!rVy{*dI8Xj)^6bD zyrG(}19$bg1GuZt6Tn@467X+aeL8>}eOTWP05|oG_BjIFwa=5lUHhzn|Kr-H7r3iW zH*i;<+km_J+y~s%=V{6wEr`} zUHjAj`k9n3?Y|WMk!$}p;I91-0C)3S0q*Aa0pLb|)(84)Zhn_wJ=)}#>FoyYrk4S3 z(qntQ6S&)6?*eYxBm4jRfOm=hwBIwpP5QLoG2pKK7QYjQZ(|?Uzbk;d`QHuP&HtUiP5R9L7;rcLT+BB4pCakPMC!SDsZP1;W<6p^Gf2!9 z`T~p^uy1n(5MwCiT|mqbgvcLN41JaEa>^No*=C>2J&`B8;yD)vK! zF3mJ??Ae(rWVwVt`>g(>ch|066mT~lhP1C*rLN$+9S`wY{14Ac4HECVOaFl(TRlev z!mUwHQs7wv+Xe0t#dht|0k3Y;Fl*@0gMXGq5UPcG&~(*v)s(7&65XyR-yjCQRI}N2 z#$6~QKIqQXgDRw+3k0Icss}@jda@$t`+~0#c-EGx`fJt+NddN_d-to}o4xGryD!^y_pWR2>;1}0zjAl)SMJ`K9^iBB*3Uok2+hA?!&d&c>)JQo zaKjD1xciN7d}H%Xug5dv+Ihi~exCD8Jv6nc>Cn_GmPSw0p=ooM&bofe)G3Fiop8pY zDTii&gTI*wX$G7HIETL}Q?5%+Z$7jTVf;N$eyxBV)0 zt?9aFrzMyp{e0l=yT9>)yBA%12z6%Z>FeIhG@Ggr($thE(UN>dN ziP!bco;T&XkIVq)Pi8K_jQ4j_nx?+C2@KC(yz_=BZKw^+9XEI2YcbQOzHSQo%-Y{f zx%TyQpWB{!`0xwXzJX zyq9$-c*CbPOdRd_yRV-4h`h!m%{gxitY9H45G;r+G z8V{lItOpA#TiefVU9Ho_e%ENZbk1-gof)v5DGybw2x=bWi%f zjW79@u5YIP^}S#0F8cg$=gQBNNa zTi~fq*K+>1@%8OmztfZ!*jotfzwolK9XoHU1)@e>Z5iFXLna zkJ0afuWS8`AG+?>8rT10t{K#idw!}Zx>n%+#~^=)0{I1A@`%UGw?25b#!b6l6XgH< zYcxHnV&T5GS7_Y$)gQf9qo?G;aE#i#s)L#-*GGGxEVJ;a)riCdoca9h)aAtuj%a)aO=0VerhU#uz%vq{dkQ1o(lNay-3rIAJB2B z#?Mr-@V@;|v^+C!{Qc>gZt`=|3w?ZLfZuSgrknI<4`|%f|Btn4-1HA!(mqUmx-rlv z`E6|};|C>w=;JLyH{)c7&<$Sugp6;^;!gzlS<>HZmi*5+MeAq!lk5c=PYQiOhsI6+ zb1xTn@R<7X<{?eTvWI%kS*dZ8-z}GD-1P5f@6fpEU*NC}CkINYk!-S3C?tndrNOL- zQlR#F(=)rF&fnX0KAjNn&t!Gt_4!@o9YKPEhci?_*)iibb(B-_PK0~((B<@bG@;g7yg_e8Z;9bUUt z+wbMyTJ%oR4}VsBN+y2aAGJOIW78frBy|jFPsPxyv$dQLt?K(M<9DpndKmh+(4XCK z_De}`dvY#;)vsfYj{ot${&F9~AN`?EueE6U)^}|EYtpMh{F=o7@E3maAEbBR=EqO) za5A1necw1hSiRk+Cr{M$+Lu<{M0)oj(^C+`dXbcOqk4Z>>a+2G&Add%#sY%GZ&a_V zpV#&^uw$_?P}_SpBdo~9fV7wCBJ{J{k;Bfa~e&ga4(>H6NN z-WvI}t1A1bQrcZsxoNc5ZeTN^vx>M6HyXlXr zoQ{4*(-V(Kdo}PRoe!gzg=g#dD^B|AA1J?gu^s^pee4CAKJDcHd4Tl9ptg^pCr{V( zSO3-9_LDrG_32|%H2t)`m;90RzT15LJD#WM7k~T850O6hUEPlQ#JbdIs8bFV*rs^}?Tje?ob}_nT{<`BWSq!}u(b@uAI(BWC^K`8plV z)%gE5iQgUgWqm>XYF5juR(1V4qnuhpsV09ROit7Nk6w5C%Ed~9S8eGeNuT$Y2 zH+3i&^WV4}^m$U?QGw5x13(Z}>-znKz^4R0E%2DYrqeXv zT!E(wTr9AW{4HPB@wx@>7T70nNMKRm0f9FNtO{%-f9@aIE8vWZz;S_Fuwu{WK7nHb zlL@{4dRX95fr>fizb8g!s?etdJ}vN=z^1&W&lR{>;8KC73XBo0f|gcw{1pOM3%pR^ z27y}z_6p1hyh30j`8A>6CGcK>_X`{o_^`l71&#|mBCwJCg^P4QzC>VBV2i*ufolbJ z2<#TPMPMWO;|KLP`=r350-q6>xLVVj1uhhr6u3lS^`pA~seMtytN-@M<4iN`cOLzk z9v8<1hV)R+JFe5^H!g7TA&rj-yzsRezeeC~0$20UJD&RjJd|JS(E6Hrih(BFtOFYu z#-9vdDE{Z8GB0ZrJn@wFN4m{?OJGr8RbcJc;6lGmX!Hehrl*jzit!1ZLQ!{p_}#P z!-CfYj!8P!&zFLE^51klNIan75`k?3w+MXr6Pj*dZ-a0{zftIS3atHJ*Q2q+di*Wj z*wscAO#OcJHM$)g=HWFb+|b9R9U0ufh0+dd0!_FQg8zzhw10KiYz+hT$P@_zVo`M*d`Q!z?}i9~Styz!rI-q#|%k;M_Tyf49Ip1s)Z6;ap9>LEvKo zm&%6HY%s)tHuAF1U`B2&*NJmat$07{7!+73%upkTE2nF05{9e%uUvGA`5;)VHJ_-!qBiNK`57J+R7 z*9zC*SLXqy-4Ht3aqZw_=*)88oayJ#~(gh<69)$(8K)Q$PZQGsjbrR-s6Nz zR%`y_g@=XzE`bjSJR)%X0xhqt!-r1^{mC^t{QC1XH2k-`MB{e~H1Ycev>#QwUBg86 z9k(%`#{V&}Hb>jZ;32H?vJWR-b-u>O1%~_~K6auX-_VP*b$It&4UaB}=et+dAFBGW zqSe1o;u(33VE5Z}`(JpQhGRjzg_8eA->T_G&foIVay)vLuKx7?`{yrd`gAWeLT>t^ zrt8^!6mI@{>m>ALkLma`OoRZwZIbvOn?%2Fe?`j|?>>-@cZMd3KlB|PUzb{4bQ_>& z-+FzNfySQ3F2;T)pGF_;a|*?5zKoUX z{=$KCvIny1%sJ_i%sIoU(R_L+Tbeym$Q)O!SuL6DzU=U_S+g_Q;;g~Ka4J98S||;k zbKsov!SbwqZLO=%ZEc%1wDN+?j@9X_w_kmAZfh>LyEwe{(!q7>Hx}3L+kNS(Onz^^ zttXRudC$u-m%eDz%PyMTKbjlP%sN{EsFJ-1Dw;s#qL>@bmM$7hOVIkwJN9hc-nnk; z#tj#>N!aEcojccWxhPc{S+m*(?dZ8^IF}ziU;{dLZdU zW%uRExkCP;^H#R6%nqy>XdhU$c5NorcK$&2y!OoMmF@khw$%A6*POSeZS~q!sR1W$ zB{!12sJ*Ry&Dm||o!x$Z@5)sdtUCXK_Ej%;c#yr^KrWlPs8Slu&i-xt`jxL=k}M?- zty|c6(ve?CsYak`&dUirEb9a&Jj6}7foA^GaNjuCPfp&XTZn;^#W!>V>*iU3e8Xqt z8)(7}G;$2xKtpeo9}~~;8Q6&5$TcvGZ^8|XO6LEbzaHbu=6J3@Tf?W%@!_2f!b83g zA8Qcri3Z_e{H9i|#|nWV-QZg%p&PzNa9HBs*g(!b68=a7dLy|e{OBa{7K*(u4D4>= zUlD{~BlsObxZyuu_?X1Mlb6HbG4P)0K7J&?n`ZcQ6YnpDZ6f!IK>iJa-zV_VfIeBe z#~SdjkPop=7T?f!H{icT!XIuxH}U^e`1B<5l0mr{`CEhV0|9RM3|#$k?YTU3xrPS+ zQ{nh=##fi|p}rlj{8M>(-*ND-6~119!vb#z;@=hEMvsRZgd6&w3ZD$*HN8ydW2wMU z-UbQJG@u*)>Lhf-XW$*e|8RqN<8nSv&n|F&=;zuaHU8-%f6zEyc~s9myc`3M&JDhk z8{o~sdC;+d{$Bz9A@S3V-~62*y&q52p0V+V7ye48um8up>Oatb89)1919{E=t?7C+ zNhGcd_}BbM(~W=rmVmw?pzjRuzYqBD3h>22`pE$A4(z=mpx+X_XYxNmdHo{5R|n_Q zUl7>qp};tFJUZ>0(%{=O#X6y1b^BYyU-2YC{C%vn` z)it0)_MH+zctZTs4%ttu&Xg14$H^D^u{Ir%Ytl2&=+h`&BhT>H=@rOrMDGsrJDEJg zKbd|;j^%4$C&Op;3-mVejlIS%)$Pf^#75ndSUm8@jbCf_mF#|v$O--CkbgYbA2R;7 zfhJvphw0SGYmlyy^Ox#l^!Q8V{iX4Z9YQ%FZt`1arv`R!B-hBX^dP=Tx5J#LllRF? zcp|`!920KpO`Uz+zT_|X`~P1j(#HF9*NK*i?UxIDk-!xK)uBrK-75Gw0^0-z4xxfo~T07J)YjJS^~U1>P+1tpaZm_;&(t75FxRw+Xym;M)cMy}&yJzC++Y z2z;l&n!tAne7C^&2)t9^dj-Bv;QIyMCGZ0R?-uw$f%gdfM}Z#__)h}w75HI+|19ud z1l}j`BLY7v@M8k+7x=FNKQ8d!1U?|}69WHT;3ox+34BoCrv!dl;6nocL*QowepcYa z0{>Ise+m4Yz()jrUf}-`_yvKF3jCtLFA4mzz{doBMc`Kjeof#JfnOK+4T0Yj__)At z3H-Le?+6?h_+5eD6Zqc(pAh(cfj#3`r{KPc zrrGlro^axc&pGMjvl)g9HJX~HlXv#)IdkWpulc4;_AMg@_l*k(e% z*>mS!tN5lh&0cWAiHlD<>E!30`d80a?H`h$3B-eO?%cVm%`&%mkmRhncyBIN<*@rT7=c{@$MFq{AIgY9*MCEw;^qJG9AR|hb>CLm}&Reix;lf3{lb=R~k(lZ%YM7KT+DYXODV-&8 znOQ!~&CRn{sxX?AMS>vccd-srs+j*elsu-xl%`IDZDwpzVVXllo-=n|kLA-!B73uN z?WX_0;%O6Ri*x$)oDS0wQ8k#A3d6Jom=9QS=1jS-niY*@#GsjnG#{&m$_eYs8zim@ z)11wJD`}VF+HI;m4wuqdU%kO*oI>)FCZC!A1W7_?J-tbH)d^(u_|kr9?g zeLl=EmJur+a|`>wUB{i)1a-l)U=ifq!?45@RAtrP=AnI@@JY?54c*kF^m$nGu^KSD z$i@8mUsYk+ShN$L$5mY9mYLN#ne(I$W4}QbW^eW{R2Y+po?mKtI)g}v_I`$8Dr*#| zif#6^Y1EkwScM^LbLK2y7(&2-ZUh!xxNzZViVyNB3iV2A41sCnIah@tKr4q@ z)jaDZDy~kMh9z;M;-fMuZ>r{K^2%2mpLt1aJ%A@1jN$s(s5B7u$4UOdzeT; z3SH&*UL_AnzP*3=pPJ>m0iBQMp@2D_V z7uEzyojvDA3{yC35IW;Uix%vmTb1a42oK}3Q zsx_f);h8*vm01c&1shN&z-<2mye(k+pz`;-8-5x1**s!B{Zo;*+0u>Zzk5 zPggZ|#`71v&ZNN_qxzhMC%s$An~t7A4YMaKdHxw^evV<&nr6*|*-u*XSIgQ~o_pTR z87dpiv**FNIPs(<&pqY&$z>{xB{_QmVlP^}_~a$)7>1rx)k>tn{&Xk9&?Bny(WY;H zxec2!YtDj2bXQI;=`gl@srfTz9FQ)HR~oF#7k@rblnG4;b$r?>$a*a9J&{(D??R! zGcmZSLRz$_Sy=?`5dA2Y}I5 z)q{4qLF7pdVuv*I5*^p(m49qiVM-sZ6hwFHxVA>}kDU@%#zxgjUM_sBR?IOg;ZPKp zhQ>2}MqY){NbG{x;m=?2*E&pP)>N7685TS?%(MjP^7) zqepp^VXWTD1lm~NQG6VeSvpK%-u$0PT$MTvkLPDm7=rOY&M!<@RGL%yO&dHCqH@#p z48srtF`{u((;rM+!wTxNDojPy5owuOjyU$lu(Fs%yU#+D#M-#brsIjg$z?Eq9bdbg&H(}{v|3dqQYFX9=}yG(KC*T`ZyNbl34Jn zVUcb8PW)=X-<3#IF{!BG?>_u$7vVdF{0P7)fG?by7=I`DhNmWy2(R()tME7ZE(9Hu z;VLGQ)rax-e@;n^V}W4o7JO&??||d)j+;SyE5ZS5m|WIAhj7r7E07*OUe$+>74#j$ z#0<3LAEqS6DC2tQ^d8863HZ-OI6vrc{?tVE1jIr3IDW|v$UPNwERt3aO-=N@0b#)V z{tNNnjJWuXzZ>~^J^se8?~S0J2w9NV_gegoU+t}scL;p=Re6U3z9*Qt6mt3F-?;s@ zieD0G^x>C;UVZr07#FYuA9EOgCF}#dT7|6T;C&Hv!otZo7f(I|8G8`+@8G`+@o96w zaV#(i= zQ=5Z)A*=&%9C*ik&=w%Q9W1bzwNV+)}#{vO9Kc>}`nOAI0GcKqIrur~q19@XbU z&&TmwjkNG#tK^Fz58*Z3EZz4e$bAQ7fZm5i^D4@}2EH2p9>=fa&EUr(c@hih$qNu4 z-&;w7zwdUWbtU-P5$~G_!@_$X_^S9YYYiXl=z9Xcw<8XIwR1uLJHV3>|HV^rNE zMxCHr$9F-8E(!2;K;{@=75ro1ul_fFpp7Gq1oGGS5%AuN--qxw%CPT)_~Gy5osjiW z{QWWf{jd1(?|(x)LgM#>4%mk>Oui4{`1RqJd_Vq1_&DW#96!jevHykK8hH>e`AN_j zb{~HKg5M{A|1*9c1|6`E;qL{cEY_z7@Pn*zhC`nk|EAu6HNYBWQcwIn4mb{(ebBQ8 zeQS`BgsgGGy8s!6e2yb5iS%mJ6KV8;mSj4#0rQSuAMhk-HNZaVhWed^u6_6=kwy}_ z*7zfh`9NOBX-nu?{Sxf^DD014AJR&E9rpho@GpYK-~Ry)nD{(?k0AUDfL{h=IQ||( z*ckp!5C>0{KgdcT&KTvA7d#2@R{5KbHZu+F0Cl(nX^+jEl1Kn1p8@_O{6Oo24vFU@ z{Kvq52)zKuSs$7a5Ar)^pzRQU3gM`8HN+bu&kqo<3GpGb4{!{>D(J~?fae%~h&PV( z$BCovRgq>N(y4tLJdl-y{3Pg!mm(g1iH-Pez~6+M@Vf-R&A=Jfg}=Ap2UrEI3R)Gk z#Ckyd_yON4=vBb6lhMzdgmGvI`rPNB?c?tbe4uIkH=thw-U4)*3MkM0a?imLfz_Wa zR+MK1U-Dy(uNAmk-~oZR3A|t6ktxqn@s9|8m&kk6$Q778s^xAGSQJ>5dmU=#{s@7I zpJ@K(pKEx-uQW_bc!$8Mz#E>?^qSyf0>=d==d=MBhGv#%>1w92cXb zA~at%ONX3kOp895PoMf9b>Qt9PkvAszM*05bu)w`9^~?sY$=ahz*GIX*6oFj<#ei; zO?aV~m2aDMq1AbV`a)vHz-I~qE6DTd7vhhH%P^x4z+p?9RLZ%$g zv@4JIkwyx2!cDkNeL_*GOlJL1HoZ67K#%RCBU*(}gD%=?AeGMQL>lmI$K9N*UFCIn zHEXXgK~Z*QQ<=+BFlHr&xFJL>Qzm*)D!V6JF|nGrNMFo zYFBTnKQd{$INI8k&sB1GYwv2u)C@0{3h8XQyrWpj74lByBn@WD9$1I_=X_C_LJq?G zutJ#$_+dl)(dg=fbLF0Fz&V($Z0p*vGbS@sqo8z)h_6`LcBM6!!(hWoqj|nE$5#iD z2UjhZvN50PAI@&*>Ww7FO4wegbmg~XQ^hEEMog+w7|EquTb6g_E34XBr3xj-Saoc> zkieSNhOfS0g9wniX7vQxN%C51q#bVzObrjJthcr$(j&$GLgrvSeLdcQOhI2swH1uz zpgT08))!z>=_?KUNOmN9)o5yX&%RV?7~NtRUY}qW>r>d{nj{p_uWWUsFs`u|)J_-j z`&v6Ig&ZsvSB$)1xOHQ(Fg$#DszHrVEIaT*YhwZIuyA$!STGFl|DYHIV^?zB4NfB3Z+){e?xJ8Zu8j#jrD6;?ucF1NbX3gSZ>{(-M=laFIGeh zaD(|>#qPrX_IkAx2i`BQ4D}XzhH?Wj>L`|$ldZkGXhIBU><5z6zNK7c(dyGMpBjZ(3VO0woS;^pR1I!6})IaQrMT>lq;1RmxJnV zcV^KIX7g!y^?MuIO@t0iAWpLc33A%evb<-1u3ScC(jFl!s_Mu@r4(wG9nOwKcAZG- zMvpVDXp5tjp5a1eqOxjPZVP2uE37$j(%ZAy3^KE;m`S-lVvu&2C8ppwnjW`Jy;W6- zjU&a%!5yUyumUDfkuvddRP{KnDAK;5*?x2d6VzRF>zi3a8|fR`OQqgGPcPAlTfa5K zvR1UQiREeIG~huWfdUG;>9|^iY1PoS+~829JC)C+8%Q(Vk}8hCY+9(U=xQv=mKqt& zQL0gsAI%RzA@-1zIN@O9c7tvW-;^rDC!aVcA%C3jIFWoz=q64;ddR|P1;wB&Mz!F^ zHi$M{$Pa>w0rt|-TzcQlQqYX!M%c)E-0i%qZX*#D3_3OgQ(=xR-F$oK5%>F#PvWZ4HEp2U7 z$d$S>2O1>n`4a20!-f45GVWA9$3%R#!3nT~M1O!FH3NODUJ(t;Z1@ z9nmGbQ4~cB3n-DW2?#~>ymjKVF)#tCC+USvl*>XL|O>%|$K0S@7Fhh+8*u6K&0KICL;osU4ZfoPzqynEk?0RYFLJ2Dvty?#StBMVyyG~Oq69)dAJDxOPDq}Vg-CRTh2S93y9HA=t(nShLy>K;D7?#P>sBHa|dR*AL3)uw(|0!4J(c_wWFX z*0})3Qg~ficMcDBZtRJou=pc;wJaYgOK6^6PQtDQ7_ zlZDh6J2k?PmMY ziwjsfuVhEifSm?~4wGfEdB?WS-Q7EPtncaKR*%V39o14&nOBXLE9=!9B#Law>1=M; zA}n8YA(6V+WVOVWap3Znz)XxHEbpo=C^-z z!0K=EACxkUWO)X$d6vRPm61VWs{{t|XqyscW=dEj_hRTS(FUP^+!q9;xy8cBmZ@d= z;MQEZ!f7;obCW(oN0Dv#jCw813D?|NE>F4aBBT(t6Ps3pjQAp`6czUC4MS`yh9xkF z$3vt+dW??EfW16z;Ix)99M^Ou-|v+NdAYIIxahm|wx{xLjCIsd8f5@0WW`a;(%}NY z-C*-+ERHTmw2f*6)=Ai2$ZsxKgVd2X9;lR3mK@WY##+ z?*|7~r-zm2=>?-J1L!BWX7iO&R5h%S%i-TyW_G$edU}Ug>uq4B5F3n6KejGrafsJl-91f#q}|o&N2p7jsj|7 z&rD&A4YS-@g4d4eg=_?Q6byw}nkvUKU}Ghxg$6PEu?mqXyX%NXW~zui(+nyy1X?w7 zl|od5iqNEjF+P{x=VVrert$~V7)uHxoLkx0iiC|w)B$+3CLtw({=E%hW#PG%O@&f7 z)35}!Vl;rGLMHCOaG~I6SKgl5ZfUtPDx8C1ixYD)8-RO(BP!&iaHN1!cFQ1P10}2x zx#8m4*7>oe$ctpf-37k|v-oVraS}_bt#psYU5*W>8m`-!J7D9B7OUFp^bpFL)pZoC zqF{K~f)2efh%X9rDKm{(jg?tPS4V{$@<$WVI@$YO z&iep1uhV-2k48efT{n7oAdeLuRQ8fS*N}+q@sfMn2KWa z8PQ^b25ne5JCgE+a{Rk2TgnX_+@=nx7>%$Gm(O4;jt5sv71Y-F^OJ%B?vSV+N= z!r{sHTkKZlc8jIhRbcDdd3te(vun~4rkZn z90vvhcgll`q^qOrfchG!c5QPh;x9*W*f8S`w7PYl#taIL7UE>j9CtL9A?#<0i=8(PLFXRAK7W!;__0^`U}pIVn{9lu0J)t-zROqhF>r zk0{^D(8e1~_vZ3Z{Ys^;8pU$Vh~#&Y5;7Yks5*3CJHn(?{q zTUG20*nzT1WU`sjbOqxK`jYjfY{nV;;FzR`OUlqVh@=`>=CK*}#w! zxc*#yw87|cHm_H^f<{f{f9oo3xf-Ox?!of73h2#qBM~lTe`7YUBlCo?He#l;A2r@a z?;joByDn8K<+7LoWiRK6eM_VDeS0&jY7Ku~;Xs3fG2S8=7NxwEiK5J)y&)6JVf{D} ztK>y3#SM)re2lt1rSy*ca5M;5+j3+@U#UvT=E+h``B{ny=o!vAOZl{c5rRS7>0#?6 z>BA+361uIZJ6BhJ^FqZfP+FCXWOG<45w9-FKd)om~Bqi7%5lQ4?Q3@-qTodlukDYxhHi{~) z1Bxexh+!3rdR$0Abd-=9bQ*3baEZ-p7_JT~du(Z5GDbtB!na65CG~VqrHx9G#eT~~ zv3KRmb(u5?&;%h}4d-;wu`gMOb}d}3F@L73)=+Qn6a;2QrOJAq${E2*Xyow0?T-l^ zOm73%<%QDT&V8xeFnvZRb9SEPFXUn&%!;zyOpSHCHHR~yCBCO+`c(AW_3R+l2d1eu zmU!TiT#eBjJJ9Rl9prgJ(Fo(Rk~&&$0vg8&YWHM}tx-c7Ow-epw4AohKV0p>Izb~CZz`@24pn3>>2PUvod6E_vIuB1t+t18&;qBmF#oc_ z*nGi;U$)H#sOEr`LEWk+s!FIgwCs*(j8DVGt6=EHTdbzeTS>t#55jk1W~eGV9jU0# zK+H`h`6v{7+E}OG*xq#<8lfk$=_9XJnhnh5{mtr#P~L0?ckVgktgPzBZ41#3JeNr6 zq2kC&nQwKbGVU?uI-b1mNZFh?hik$(IK8GLHB1@rI)TY5?q*Z=xK{@+?atpMTO z7gIWQ(V||JO|R52qPv{pt+u)Zh2K5S$NqP{jhBttj0PGg(qemg95F!=%2Hhq) zRantV4YRk*mNw$>l#^s{DTfZS)QZ(YH`t%yaj7bpwj)Tq94iccRdG~RRZJt(>Cur< zyttKx&zC|!(CcoH!{P|W@tCN$g4a68ffiE>dPi31W+(iM z(LTZk9L2TK2lP!Jfmu5ytiNnVLO*NW6pd$Xkx zw03V%5^rFk16F4&un&%XqNq8Kz{4Kc!@2nSgQ%fa7#uKCRN$7vFjk!S(iHlm5qNW! zi+gDsa{DIeLb~*VsyEtaMn{VDF#K*x?W_f-RqSvkV>oBLF+CiO$(C3`{Z*?CJpIO5 z*XDxbsnpr0)s&+$WOQ08h7lc9RCe+7u&A7ZQ1aaxrR%P$nYxul{j#apF0rnm8YUgt z76;d6u=9^byAP#=MO<&)#ic>|NU;?YGaHw~nR-c6Vk-_y^%GS2ar3)@CpB0aYqs6q^kRJQkYmbdlT*s8kA8@#rh(O=ju&$rR=4S(EOD8_sBE1aVEUn*7u;b4Icm<>Q{kgMqL*C~Jo{2127FV{UI^5}*?s zsi)`5*0r-@2GiQkkl@UXV#`DoHr@Qj6=oC0ZM8Y+jip{1b^WrFeqbsuo;x&gBN7Vh zm{A^~wdrLGMHj&T{>k;8Z5wJ+Zzn@gXvA2}At?doWYCYVgP=uVwjYem~B2 zXa~sggNMj9MCEQI4gtwCpz>tTn1)~!=~brVsO9~3WRzq{=&cAMxfw+RPAUKVMxKx zLK#hE$H1<-U5+R2b(0^QVN7Gsumb_lyGCf@IlqUJa2*0Wm!8{ ziG~`yQj&?Pz+fqRFwoY@XG^C5REer%wNw-VxPdBB+Pf{|}` zF=8-HDfJtL;&5U^TIJMhmGzEqFnx@1jj1BuYJ&@)E&=fd+0cy!FXmo2kn8&WG;f{5 zjhcw1*I*VA!&l1g%T2gVYkRuTp^6d4b=}F6%;tyDWz~7hG4j|5caG-OOnUSBxEP_Q zlElli8{oufuZUJ+ z&0LRTp86zXU5^PxaepHgj`M>&Nm6!BEJw9R4Z?NxRZrw`AeQ;UgpBL7R?WJ|YPYd2 z`TE5G&r8?Fh7;))n5i|Q6~_lB*+45#99pxwoQ`%`&$8C0!UQ3bK{o zCmGAOX*e~AQvkX0MsGcGRBexW2|2L?CDnMn&D$W3c(Oh z1F1^kkYjCtd9t$_Y;#8gwR#(Ubp`9ySYu&ZD|FVNc5J618uF~fX6LrNx-`(I`{vag zs+^<%CSuXW9NNLlWN;WWRzBXb3AHHZB6m)oiF6F@6YKieU>XB=zS}vn4GjVYY=}?H zfT1;TjPX`@s&udi4KqE|>-H@0*EvXOl{qWt6fRiIbC=<~CIZ!*6}mbn$6EyCv0*c= zprvA2OvT+39rp}|SViVNIVKhckvPS+s)xQVEx+*6FLa{>wblx2&~p&g)Ux6l~UEXpe}=Kj!4v zRph>d|-PGd`aXZSd(Fs4c8pMoNp01uYBlpvZz8><@S%sibF|C;Iq?Lt{Z{P zx`SQ`aI)nS)`jc-;c`Vx%uKF~VnImDSY|IN(^x6R{pkBY^*$`A? z8xaK>5yPQgRj$HF_Hs|27aC+%zk5}7>pPJh1Dw;jiRwN&m?uPM<3fUFhjhI1=iHDd zJ*mH)pmtsw&X1+th$uDA*6S4xs1iv92RXJaQ4zP{aF(;d$h^ba1$CAI-nmD#G0|_Z z47?K48CEiR?_SwE3~giTG#Od9^aeR0gG1sxMV_eS|gxx!iXVYLc3e4rvCd!qH8_!TiUhBFOr;h7sx2vR*gT)}m;t3c_gV!OWlnsK0 zIsqYUf{V`ELeu)dm*pc9My0wjNv9r4MMCf(o^Z$jGqt3Dz)7l=y2 zm5!i}=v7&D=Z1E9yfKzegG5p+8;b>JqnFi=?-p%K9o*$#YT-?OgU-a6rUy0Cq3Dw{ zs(Uc!%iNmna0Xr?%Cc0(HIt*bGoy4cJjU(BQ*F1N&g?s0J(`s@s?HScC%eZXk#RLy z2@lDG>ddv;G^i&bq>$E=YaGnO8xo!V(Q-#~)XB*8mDzu9VQY3@c34e&tisX41U!DH zVMXDt6FqDN^cG~6WhF@}>P7+6K)f=hPC?IX;&5HUe|6o9sZ3=P@<^=39wjm`Nv>N& z^Ef3lK`htwSQZ=1>Z;p56wV63pZrR|j6IzY0*Fsd|POlgJ1d zSNtw1+T3ClLlG-Iy~QMEPojhebDf;4gnA2#(dLi^5LGI2`|DH;(bY*DQ9a3T zppjTc)2~~4YWoc8#f_-+jdZ7PuFqK{K^2J4fYD0d7vLnShfQ?Jm1t0HS#Cl{T$kAd z_D6w;r9+uKakgBJ4b$*sF0-u1Xa1qHfLnz5*s>`V_Pc7c!8uREfDEPI=XYGr=q#_;*|f3#XxO<`;5!~JNp-oSY3KF;6OV`I)VD7h z2xUy_v>A<`2U)#Ki2U@CpcP_#hwKFWSZ>Q>FQF2>X3TX-Ea_!284NB5lf4B^?J2Tu z=~sd3-maT~v%dG0KLqP6NfnvGbWM$A?`wjocfrJ%B^wQG-xsa(pPS;l26$hlj%opd?sw|Gn?4!34v z6$qJPBu{&s8ZBZ13^Ui_WR&l5wN4xZ01u#yL{Vlqa@QslMY{&N& ziKB+R0`6y91%_UaaAL_g?Y_t!@p>L6-Zj{OPwKGi=*Q`zA$5hasWI>$Egi0t8oh8s znN=%~r4%q=vk;fzU@Z5JN|0h^7_L(zk^BuE2^e$jx6b07{zGI(5@VeNj8d zysXj%|28w$b2vbmLbSqy_otlph~|rY+UWS3M^_LU1u2fQ=LJLgp1AvPvF^Lgji_&k zgssJQjk*X}5XUYxy+_ws8xb9TF0D@0J5?8l+TibFdWT!vu^Nrz{J5bhCQ7tcGg#=R zAT=CXMmKO*7^+^P>~y~fDD0NdAPQyy@v=aOj}pyU-6Yn)2j70U1c@(-2*>J zU)f^A)Mf1$qHuq`b5FhL81$HmsrKY<861UTlJ`YN&RB^TeQ^2~gqMp+c?lunEvDB8U6G>PvOZ_r z_Z8S9|PiM4xYhF&FM2gSnnt+@vdSK z5z@Ee!us6AERND%)CpqYKA9M~CNp{$EE>`MaCg2UMuJm-nb43*FtmiQKr<8;3=)5R z8RmV6tz1LzY>&jwWaG%?@U<#*eLVIO`9gdtJbdpDn&Lgn=v}N-`5+S4F{3=Qb7?)- znijQ{Y<$^E4R4l!Dlc)PRAm8GU6gAX**}yrI7!&erfGv!w~YCB<3{Ahx^F zUIPWZnly;%<*<9yOzvRp8dx`4j{137V(1yoIJb()f`T6ie+QR=IlJ*DAW{nD+;H*R1JZ+qR}HHE?bwJ<#6YzpDM*^Uoh>%bbsY{cF-~ZSCpI>ec5Cw70K3_x%2~ zYqFVv)#qm0SEbI)q_S8k^nIa8mJEYEsXr<1{}al4j_s(v;W%H|6HW0@?t|`v6{;9- zzKZ%G6R^{LaYIiGIa>H#(maP}_5=mUg*$@b)A&bz1>yr6^cMz-FSl6u4`HWdp~^NFncOirbyCUI1JN zc*OEzI*KOhiWNoeSTnfp-F5n)k@a}|dm1W`@7AW=(@%XA^&~jz}PW?(YdOLUT(&Y~NPT0LviIL=l z*2RdD#>;_bB=iJ%;SoFUu`U{NvY536nfGJq1wpF=Pn*XCv%y5-;F`my_Zt+dqr(8LtwBuW4IJ z=8B*&GcHb*5IGv`!z-p(BXJ*ub1@?7j%|kM0Bv&8Xgl)<%_d4?Crs*buz`WWsULHV z5xg=Y(B2QpSG^ z$tB_K3jeyHB5(0kZyi}B)R2zix(YAubo-&K9;NzVzV^I%z01uPH+W##yW@+6<-Z|q zrL&;7V=VzDa;B+h)L5)H);3izm*+JMgS;ca##c@koGCvbym&sk%Eb9F5(AwD9ri>~ zeM9=&yc1an*z5(ExeFS$OEWf1S=qMp_XT3*& zPsQHA36l_S*cdG6zA$Rna1$}=M7@~Cqd^H@;DonZh`g-W5=KW!k3!wYfX>^Qe0x4A zW>D#h^DY^5=JY+G2M2CZ3^AJR#So*cxoPb|n(#}ltv%Xcnm$`BP3_bM8o6;J zdZbi5Jzg&re^2-(5sOHSq|$a|2NXwYMB%;fQEvS3V5E0aVyr#zu=VSXQB`fsGKs8W z&b@HX5fjxm)qplaL-hSUL9MW~Y$ha)-~*#JgX$wSk%dSL6vMdfZIB8c&lOpeRk;)I zqS4`q#+N~yKa8x4)?qGS!WymBX>hmOg>FT}c#7ji?;%%D*JgYGbkl}WP6#^Hi5lnlrefi+ zfL9B$^a$vBu%C>Qx@<$w4vWFBLjgs{IdgfEd6e3+!0QfX)p|tpJVrIf`5wNC7xrmR z@5`Myn+Ru=!Nv4$eDy^gO%F=b=fc)WRH&?Z7~lN!)86Q>Mn9_qu8FdLOIwUQy#4sv zO@IZO$P71PG6CBQz21!$STJV$)GnS)QTYTJ*CsY3XfEiV+zu6cXs&lAgAryIR}}(IdR&((n6hOX1T~g)}ZRmXoHIu9eeKV?IZz($yk)L$Zy= zJEARODhXP$f3>CR*IZ5&;5K*@U>!)~(g5hkt~~A<*9)EviXnAW;|r#Xg9y~^5^$AKvPhx-Ju1+G5wZF7Ul%rRqv^>TgS0;}F?;rLIDs8@8C z$+3+;SIV-wMR%Kj$>Vl>QyL4tf1Y|PlA`9Hp`VUvB8oX%&9((!ps}iYC%y&?0m@b7 zJ)?Q&%n~mduN(5!FkwZq>~Ma^;+T7tvpaQ}s;`jYKKZDLVdjsMnl`)#$1(oYlh^P< zkk=m7W*Qqi*z?fr#y0B8a(vi;A4$VOhe$o8yp*TS5oZioYT-qdJ^rdF1_I7*&}l`3 zu(LBz;)rX-goI#_b;;Vbi;LMvBEuUC4CJwgILIYXb`v%gFSNk{)97CLXsF@Rd;N9u zIDMQQQD0`o1t{oxHaVZz1w~wyNQz8ftu`utig(v8YrRT+lid`aOEKSTkE7u`6IiX= znjMJ7U^l8J@5~JjMRa(Wmu>6hSA(q{QBcolk#}%79VB;KOIdFKfqTnoF!J1HMIcoh z+K4+cgv%YxA>7bav65HEhDN*cu7qeW*A0!fblp(*EK-z@^J7z68K3Eu@wr#W2Elc4ksd-+@AP^NNJ!LD5dxe zGE%&TeC24pJ8z-$f;w*NHu`rL#ot}rX2cG2VGFz{cU@D_a+R*ZJbbyxzd~>^hcEvX z%IDxuoIS=H*93d;zsHy<^yCJ+IVp8MP_{pX4=XxHZmeRiwU9!r{gF@uTVXpn8n3{% z3B#DPxsDL{i8u@ty{CnFE63Z-AVGP58BkqAC5r?N6imBI4_by^PQa)T4UizvRfmtb zIZD|Lbk4t})VmWsG3ubWW7R~sW=8?y*5_`kYMrR4!RA>gbs2_AT*Y%s-!BhtxO$V# zdU8)Tjctdh6x3-)2u5O7u}m&YNm>OPikV?Ki{+ny87Lgk@Qv75zJdK2r)UvTtxVbk z|SZ1PEGPygL=i=;| zc-r4t15xZkz*N(@0V|^H@fWZZ!B<5Ed7qh8A)X4l0?WCws5Er2x_8`a>#+u*-txU> zR7a*GiR_6qq09qZ5g|5^mR8Ezbku7b-WCFP5zB)^Im;pna%hOeV-eREgfG`~PH1EC z*bcT+>5C6U3;#~2I=P=BISx!a|_BnBE@CdaC^;_+Aaa3z4UFy5Xk z4X*P}=%LZOMBMVy74GP}EEsE40^VoZnBqu^U*d@7aFB{S)4h2%-j%?&TJ$_H%7Df> z{|mbXmp|(5+|X6lVs2>UoVcNpZ=#wVS0^ec5byj*DTN|rNX6;&Y@kg{cnVgKrC_F4 zFH#+e^v*!42^`D8U$$aB%j4shRvbGSN1tb;KS!=ibGL`1Uh8eB3yosaA?U z?d8AD)MyiJGwvEh|7GLi{F6N^hMSnO2P&O->$(A%wcVSRKv4uOYu$+bSa$<&4>@^K zx=Y<)5IG`v6+n~tzxSqOF^v&?H0sd=SMT**l8uBjVsS4{rdOiP4~FrDf2%eFuvXjC zy&*g7)Y+nX!5~bB)f)D9Zz_uTB5&G>9932^>i1*=H?9S*_ndU(YHT%5x2 zKE9qF-k#2Gj|(B|M*A^T@h(EXLp0%8Fm8$C>(LU?QEEb24JO^_B?1kw*4c?~#5qR- z>v?bt{P=l}JLQqo!Tu}{XKdwGcvQW-wWQRUn~Wmi|cJB5-0g)S7DG&C#$3WXNRQbG%*w9u9oN;ha&N(;2~ z-yhJH7AU{(_snwV-gn=7vI+f=&p%GC-n}zt&di)SbLPyMGc)8uIbhwPNyDf7>XIl9 z%FQ`)PYy#QtjE|)1Br@!j2$4A)F|oo5wgU#OP_NqsC*NFL}E3z5_+C@$K@ATxh(^kikaMy3)Ia58`!D7xVJT*Ax^VtW8|Mrd%M zNG3hxO6{ZPA;`q0mzyL{5xw&RBhX29rRFUX%U~|Wpu}?XokQ(nJs<8YzWx5x#*ZXd z>z!FSStgMUP|xF@!$e2O$J;P#x8w`HkgEl~nVO)YnvT)CCh@5)Qxcs{-=KtPpj27> zYo^%2cO|o6KdO=bK#iz22Z`^gLw>r9T9Vv#rI$)_^pOOlc5cSAiTGH@CUNo|S0*z2 zDraNuNdjdX(JucS02dtWU2zc8W?(xK>bfhC&~637{{X$ z3Lgpxfbo-w>X{Bs@|N~xmGI(8aCSk4<^XQah*yUpsb~_Efvs05srnwo(M0L;TSuZ} zwj3>@NrjX~uGf@mnd~P`u)~H8qi568dkFzHInKjcUUACwoqFK{8WBggWQkJGs4&^W zfdzYTYXD6c$riUs>uYfeV>yHznosX=@{{q@-Ngw%nWJ9~ezlp+usLy=S~`fE^lmm+ z+iXN89q!zb`JC&>E}<|F=5ELGo8$0oB{!1PM#RXunUmFNO!^Zc&%ULP0zTsPBq^Ub zTFejR9A&qMTGXMGYlEZ^-vG{IU3txrC=r=SO)3w$J|H*M=ouUfl)8!9PnbS4vo0n> zS3f>u;i@kvMsQphmsF)baRz%m3QxL9YLFp&N{|iD^Tv}nEcW8oq|tF4>X9(5=?+cY z48YduQ@!TIbkE~H2xE<*``tq@u; z2Rj$lU25*uNe(~@EY+nkZ9}F4(Xwf-5KtSMVKN&xBBxP4$`Ow2j|7fL?G=@lH0rO& zSS@cI!!(&q*qz5RNpJ~#gyJxhNO_5}^4#;7l5jar%tqFqTWX4k8A;~Q21yJHFV8GX zbRko035Tuw7zZkR9P(Gqd>E*j-cpQ-;d}+RwdnKdFm`!bazltrN6CZZ-idm04MPu3 zhwjq8_E}osxlvFlaV9@cWjnt<{D$h)p z&XhnS%Bv7}b?nL5%lsl7*n`=HSAcX}>MlP&YUJ3hjnif9*_m_=aiS=^)}=9C3xJ7W zE)`6ClMHwTfWA+-SuP1wV^r87Pi5Yfqe;VYfmV9wG4g+A{_a?)Nr9^Svfb26)u_>N z0GGD}?YF^!Dh^R;6j{N2kH__if4b1FhG`T~N;wZ}9LpUMxv`p8v70P6mQ!x&>kVU5 zH+rTErP~BWqmG-4;6N28D{^m8E|A^bira^`u+}XX;(k!vLnh zlD)$v^e}^n3_b^{D7C+by$-@iLcnlB-565>=U_0E(Y;GggzEBgH0LT^Goq*CGj+|w zB6S-{uLl}9ndE3W$aP9r*gQ13qn<`<{R}xSW(p)E1@M7zj zk8#3#PWc}_IfWDJ7!KD}e+gMkV*{E5uKGGKyV#~fF};^_7aTAajt}giTg74cR^!g2 zL~_=}Wa@cxYGKdfe62dKorN7nxh!4dOu`&2PI~s$4>Swc&1mX5>>bl?PG&(+jZ)a* z@xqU%7Z400(kO*!0Rgf;>W6|hN4OA~A~4G^km4hzr7uT%iI$<}ijw;D!?=I*WMv$i znOvDMkWP*1d5~@>-?OAH63z*59m!41rRqj$O!Li*1uj5Hdp8y!|}lO4759HDQPwF1Cy2)*aQKcCTT#GxU6Zg=ACt#$s;*CITInb9Abx7CKwCJ z=DHWVdLc!pH8&|`6QHETO@IZfB zJ+hkDV_HHqw#d!sHt>0N*LY!=xq)yqGWF0aa zlPoW0V-knuY)s;_oQ>JM$?;8HRKme^Q3+Ye6!R9hSK#@5EXv9&QZ zwl?OCt&OR%wJ~pOZA^`=jd^2hV`^+|%o{_EsWH@;8bgh#G1QnELyf61)R-DWjj1uz zm>NTksWH@;8ru?TOv*0ThGJw}W8!RUOq^|viL(^CuHPI36@o;l`i4wmoCY*UA6H(Gt3=D^eh z>?HfP47;WVUMfA927!LthZ5Gp860T7$+3D`!Ed>SBaP0&Ss7>hxDxAm)QLltvkp0c zM(5{8&*i}El5jUmv+ZDUn`C-j8*YE6F#(=CQDdPR6bSk5<89BdueGdWmbAC2Fh!mj?}9KTx3FW_F4PG4p&;U_3{x#H)TYa(aNteAh4eem}22n8;#`%HfnH-Kkn^ysKl2}){Ugonq_)d z5FX~`@bF`Vi`nzTTvpB|Z`S0S~ zfKFio%~!SN$bPai0STHiinD;8iJty(Nt5~qFgYUlf$6`6$Pa272mm^dIULslD$je?A{6r}AWfi$7I z!6YhM6*)Q9Be)y^V1b10u28mPV(P7rSEa*#XkY}FcPDN{p8OOe zqZ80so2UWIS~xSoSh%E#)6w6IEaIKj03$r$k7_KblqpFzl5EaTF($&zF8n0REPz=x z7u7P&`w7;gw@UQU7V$|Y+0wNvg#}2J4n8Arls^a`T~TZk^l2#Q!Q%4f2aOy@L$k8+`*Rl0j?P)5w z0ik-fGJkjiXY4p`{ztYYPM zD(QhdQK&iAv#Yx*G9cO5lnCnj?M}WqpD56Uyeqz;6Y4EY_7c{B&1lC7I?|=S(af$0 zvfiYlXFZ2InHdUcUbsRytqQYMEGSP_v5%G*j=~*d6qh<+ zR&lb5W2-?>94N=g8SH_d{v!M#Io zcki3Ax!rwi!Q9V%;9kk(WAi4QAmF05Y{FdFeGP58-b=P~^YwnZ?OS(x3Ab+9vE56# zecLwAFfqTd>4dj|c(f+ldmTyj;m7V%h~$_rrF!Jh#{zm$4paT1`%tkRheAT8mX;l# z<8a%oIz63odB&8aF3bquRC)Q~8SnV%*@pP(&$I~aok+lFwwo<6zu9#Dx3r!g zAPwjTNE`YA(u{t7_ z+jgX@wPn-wJ2rc!5W)>@zJ6%yro_;}u$^0X?%cj9gKzte9XqyUsl0XDwxOXct#@qR zg!E~Yo3{>a*$f0}q+7P{9NM~VC`F|WO>F~rVl@3q%ARV3<>(b##GdU@BOHxJ`c7)@rzuiy<(&5x)g-OtHM-&Mg zp=Bd=J6$?B7u+A4J@C|Bc}aM3Q=S)=hc|soUIOghkq1kQcbe2VeCy$Ro(ygbNS$E- z#=|`PP?a7*byIOfYRiEUlm7iZ!3hfT(fOI}LnkoyF5VfW?uwyyWKZKT7n(b|avGKT z&~r-{l)8FTb}-=rPb+|Acup7;{$WX+z6`{Hf))!?Nvs@w;UeXW-O7ak9LF)b&xOg; z{(%f)Zakqkmn1N>L7qUr6D83WQG;5WjU8gJ>lSlUm-H+oSSr=5(KWrg@%R`PamGLO zVjjoa)ZI);d5EREk-7+g;=m4Bh7q+Y5t02HX*xcN>pgfNoK|5CG91h}jhl=b+|`#H>6VkQGCyC%;y2M@gFQc7 z5&JhvBqs>6;Vd8KWOWh8TI6P}Em!nuhpifpJaB8PTsM)N)|(ga4w>9Z zmjliPALcq#V?7LwGdxRUFAB>lHQ+%Aad84a@O$swUXSD$x((dZaXT>lc^Y7t zo8lfleOE<-;kGTe+di(lnzNXgo~n&)Y#uwHG=Z2kK95a6jIU-B2%Ie=r%Gbk<5U$F z_cZ~9kwm+GHi3Z$kj9iC@_kQ-xrdXBd!%6kQeS)eQYP^}ikn7j=}12@md(7|g#2Xt zQZarS?bq5kexcf`um}Am7(Y{4K5Ug5B-_txgz~EkMF6`3Tj9{_xU%Omw{dW~>jEfl zFYa3cU}JhXT&ZgN6m<}d8!7>*t9?GEdcMkqGiq3KA{aInfl(WfaofBb1uLz6nYiHw zor7(2cp|XaYGR1CEAsstcVi{co)=8$DPz;I7L4hN2aJl(eD5zU3Ha~|Xdb5q@0xxbq z#x^>GP6r%-DK-^=nMP7Z7^f?Dq72X@Qb1f$%LXK=;O8Ql0g8cjg&_kEY_bUE0K2y$ zXBKmtU+okJW{I?%*S}G>v^mh+WSmNedzv|kVpM%9Oh587tIoN+z&9y`P0*zoz7ghQ z*i-Ju;W(NpTnXKvg2obYo4fP0W;a($ZM~vBzE489+#zqax)y_jmkjq!FWhcYz$5z1 z5>t44iv^vgjje%4HJdqGTsZj0sRDlYBLS20ySDkUE`J`MN!M|G+AJk*7&z)lrKC>7 z$z6n|8C`;Toxtz2F3y)ZF3`(hK!|C4MY3`W+RmwCSfaUkbS~iq0iqVw_fyZl*0H!B ziWBNN3y=tE;azF^G)(`-S#0Jw-!kE930$tNMdbOHi#hf^ zu`gYa^Df5YGYIU$X>Mmu=LOG>`E%!0XGn`Qiqn;IeYs7R1(eeY^FbT8$%V5EtXQ}M zDP7k7jTeqjv?_L!q?xtu;f*>;)KWR~N5cWUg(%hf)St5LF|(LyNzse4Q1qspUFh4G zCM3pv;rsJqoh<6HQ&ZEh`_1;1crRWS1V#1GFH&A9kNdRz?yK-v^Dpj{nv%`SZJ`OZ6SQj~O3 zO>RG%YyA%|OP@vZtI!IUhpdt6l`b4R`)z)4(q;4TwJzNG;ToXTsyWSaCm#)FkqM^O z1wH=`;L#yXKgUxSR@O$1GY#>*cZYrZ4KgY8J(UQH;6$F?!g+cOPuyw zo5}U5oUru|%auWUc$LTu&b}BpGXpvMVMNzh7`;=Y^g&=sx1Vw%MY?jBDApBjcASBqV_lJ#n$|BAwbU2^MFW#c(Lj06)Tc)>#O?ncomM-D&LUq)xSscP< zI0p$G2nWQZfu;N$T^*Q&40{1^Il&nn^iVqdWC!K7AkXufgq7Pg6(~OAKIVA~-pDB& zgzkc-ac^Ea1ol=O^EzBR2+x;eJjUFj@-j)M@FI@VCB~(|Ikk(^;}V9G*K_c+ijwo! z8>Op^gD#axkF_gsV46ONGrQ(1U<&fqAUn#yL9jf$eCQuv^SH$W$5M^WX0kF{!I2C5 z*=|02CS6XrY5R}_*ixkYBTf9lT4xL5X>#p&JW4pt|(;K2b2HV53>IaQm&r53x-$-aVZF2={> zQO1;B3zIBxT?HV&=-;$k+@XBvO!ZL=c(`n?Twf29t^N0nb+A?2yovR57!bSw z_v<=voSOyur@E5fE^29_0sNk|OGJ5nND7Ij%x=F`Q=2ssrh_{McOh%8bLG|Jg-Dq3 zlu+>_IGjjiYABMSL`E=M2c2dgHu_=rXex#m!yJHMIyE&WZZkH;$y#M}e(Y3YAJgZ- zZr+|KCW}+E3ov}8hdE7~R2F+iXLn=mO2nh9-tk%ahIX3_IE%BVym7%mxD>eJIwfwQ zlX%b=FBh=>lysrt+7US8C7q{1g|==}$ju{Tu5D zYZVUDy>X2bHbNvH$R_#NcjwsjBKhecw&l;dh>@w8x#`OOD%@EtthOsrZ`5lHHk>*q ze5gdBv|+Mp;Ho->p=3Z5m2}W?M!4N#lEyfLVA&Zq8=Su?&Z*dClhDn#fRH z{49;8Vq>8w=fa{l9UVL4Z6xKDgDeMt{6+m?SeSD^&L>(eg%526^H)i)v;i?=xy4YZR(xnd^b5NVyZ3IrEbKZU%2DDS4 zjmvr=>Tar02_%HKJ2=vmPGs>63^ShRnof5dqXM?($W1*P2CVO=&5JjUfW@t!=7s_5 zX_^2ScfxFh`SxkekqLWk{UAp*6Xy{*lW`Wnm?%it*~+w*qNovO?p|-zRiyBMzoTvf zmjesv7e%j!O`o%2qK@N#;7RU$B&X z(Ge6~y427BhrI(BveC`r4)b7l+fRY;;OMz(;-rSIY1ZE@42F+G^tH9$W~cvAjY6Vm z`=cMAO=}mOY!dFC*4fxImQ4N_B3U1ql~`apg6$(`xg7g9io8mhJS_AXj!l|9bt%pE z8jb*Rxsa_X<*$}tR$9qQj>Y3iv!ta{5L#xYMk{z`9!o^J5vsCzp}HU*mKM8?qGDD{ z;nYJG4uP)VuEa$8@UqQ@JwnGh;(+z0b^TpXjVpeldf5CyXBP`;HtI%a2Y|Vi=oDMG z*n!(d34D4`=1j~$rz3PdQ-c+oQuQa-loMr;tZuTCB&W#W$W^*WnI~}kKu5WE1u5U90=F|wGnQ_|SO%L8W5aTqY zJKG~Kb^$^!B?xpPh;fR;oERMUGCJW7ZcB3*C(W6v^27}nM5Q;)6%2u}=A1vJtfaV* zHs5qcdTvoC@z@ha=k;|?sqVJ#nTvI-H(Wzixd+xj&e(&>>JA#C1qEZPHWKADyj=Zj zusCkWP}_y4Mi>`b-w)~(n>-Ms+8i-QeA}udX#L^Rg{FI!3--Cs1tQl5;OQY}V)hKS zqGpLOOv$9Ry1KZW#v(J;cAv|TPAVx!pcwRLIMSj6X|>Pg>KZT!NzcO)%Y!XUM)ve? zq%ceNxw`5Y)hs7Qx=U)Wip6bo1lP%qom#c`TV?Q+ioCcE{qNsA^^ zUReKeGXKKB2>!UXmppK)&z!d87_%NhFt>&Yi+T74zA0<8ve?k81xI4^t69f>^ZJSnr?FuchXJ#(l2p2$KgAnFzy~UAv zJ&bs9Yv|3D`N@Z~sPj00cH!YfNY5PM@rR?{t{0rdI^fvC0Egae7^hbY*!K;)k{BVI z0brpE%a?k+p$Q%=`HY=9TB%_rsx>x!an|`ex0x!zsUL$mJd?NVy#2Nzcb8wbbnu~; z$z;}b+F+UK!*Fw(>69l^n-6^dlO_3|{tpz)bWU@4ZZjJ54gegRHaqQEDNF&S8FhRe z2EEkMAX2VlfY`-0tt^?f$#=iK9X1jwi7``_wss8SIj?Cx-3e zko_AmHNYANPUA?Q5b3haft)wzz$R440TPo&Gb}Oyo`0vbS<%qYr-v7BGl7lO)%Lb3 z7&;h1l(Rj+HG`8?8UC}VJ(5Wk%t+O&s<4?=#}=v9!jN4DnDtFI8Nr1@TTuP>U6OdP zCH>(^lyNq-h`B0-O__ByfxWE-7o~;=i*9ia*Q9FaV{3}jI#^u>8q%Cl-Yj-=ec?=6 zw;47EMEY=jO3ZDvX>Mczwoi;=a=c(3Tz+TbIWp-+)Y3>>D;Zl?6_3emZzG&jZ|f4& zbT>{Q{0!@)f~EW!PK>-&`Z}}%kRYv#Hx)+p^r^_QUdgP*S(DmYD$0dQ6K-u5hbvxu zq?wcho3rr~$SX3k3?)Dgwb(+AEX>o;smCqu$kzo#Q^01U&t$e? z=3HeBKr2)#t<>0hKsS>txXDbeHs%$^H;>+F-V-5evomtReu8B4a%9WHk&zZf7B$%2 zp?1~Jgs{Fsu!LHUSW`8ao)+hBhI0aa*?5dy4bv;__>xS8Zo3^EpUmg*ak~W;OKuBD z+bM8Q<=o!UF;1c9r^YL2DOZsFqhrXr1{ot0S5Ex)3;+8G`YQ zJC7nfQ7kDQx&^#+Eok~s_BqW0i5!p<@GR`{Sz5R3mp;nYe$D8U+3e>8CMx*P0gqHF zJTXAC+9b%JDT0K z9v2Ty8iwSvR-p}6PT68c$N0x6$q3~%G zQX_?}$kFOn9g#|;{qm$b5Xf~?3W)&w&BF0Z-luBf@0rLUtr25LXEkf5r?3ZyZ)1xK zH7sXg`vkuPv3}JmkAy;dOL8>Hu#i4_c>V~SbE}wfFzpnal)1Bq@1(sx+CTZm`mMy_ zMoxfi7=ZWFoxBMx6^ORT1}vaCGGS=&IndQ`jjr}q4I{;722bZ1iGo{#4%~dq`x=2i zQDq#KUsH+KBzbtTWXG|ECB^!EK}wmER*vC8lFl;T*1^&%;v1Q{I1=u;)3bvTkJT$F0KauzZ|gR>(LkxgvH&xQeTc732P?!@Ih z;dE>jsEj9{{TmZhzLc&H-#;~9TgXp1VWW=MFh`a8Ej-J08+nx(eG=n$D;;lzl6)Oq zgu97>p2vHB)pdCj%oDKdxGfq+mk=Z{k6=I^KD=Q7UjI8SxxBEUY?uuFl9pR(Es3ZL z9(y|4XS5!kM<$Y=yu6@7>M%M$_)WsI_!CNEk$wEwvv|WR@xv|Z@ch%Q=uOADU^KcZ zGTuzrssr_B2U4^ILKlnQwrcJa%masy9zJ|b158%ut5s?9k?P{S9RNrhn$R>%LMaBNFm3NzG&kyLzp4&Ikh;8;}i)7C2D@5#z!n7udfVpPbD;fDonWduIAM;()359XH^bl7s$n{m%GbgvQKfCEaw5z|G*<`> z;!*}SiOs_;2V)|s9o||0Ipk!v=iyGR#1@o_!yXKPjW|^~9|I0;9(~q19Cqqlqg%ph zPHB*FOl3Ol$@{Jj;uZJX>L2tS@fr&>Ya#nYwUnNs@hN zsbhGorOWMLm1K0u>-(v`J*VIiX)aFM@c2HBIQgd5m3+bayI{W(OGjNP2$odcC~$)u z>j(DBePJ#|D(=Z>{>t<%=H~Bw7}$sQ?-f-rKc2I87y?|R-2Ia_z=?r65nEh#@)iMH z0x_=T!HRJ3R!x?g0>-)eVztOcOnNz~v|%qDQJJ4VR9T=U0Lr{k6Ved<8|4^W+zKhmAqc0j2SUG0`+pf>S0%bx2{ZpqwRj^AQkveyb*^D`zmNt3%C{ z8JoW;6l0`Gpd8h6LxR_kHV+Brs8w1v_6;98c69h~UFIGVP&IwJttmwULUQX&>|8Q0 zOHF8r$rZf@ZK{{qVK5o&Qe9~O-T=lh;XC|dnTKrwE7YuB3CIW+;XxynrC;`MFl%}A zfiZ~k7Z%G~0pSvUp)loX4S8xC&?;oV!Lg3`hi0){x>*71|ebb|0q5RwUSL zjQWiv8*tzSEE7oMhfys~G;CciDN|iw65uzsRmPCgw1~IVm;@$?5tgDmtfiVtx*PFR zIt@EFonB2wM0F4%OoOgJ|CNwT0mJe2^^W*o2^k#zzIpM#kW z3Sn|C3b%Cc!N&asgBDzj1DXwj2B7Ywlr&;9o6>l@G6bvgoi{ZO-uU(z3cXeS_!>9__-PhSgy@|5QV9nNre2_=>|+nv61} zdd23Y71-7{I%%mh2alqO`HH18KlQl4MEk{)YC`ajc<(w~g7xdPW{Szmg7)6lIT9JH zIk@UkcGH<^G8C7xVD@s-grq7Y>|woKk742t=g92V0Q+_NH7mOIC>1H4WP$(f!K#P4l9DWWg;m`Dm>A& z{Hitp+1dzuf@Modrtf94&X!yl3MmdW}=etq(*{8l(`IWLQQ1DF^gF- z-9oi`a1+Xz~Ag*U6nE>1az-&VEn@;D!%}im(_$)VKdx7KCBdn>< zawe!A2u$zPS!VBs2|K>bjX$%7A?7fTB&duhBMmZejsQ3+9n*Nd|34p)p3ywnCqF$1 zuz-ntbv8e-8R;C9>`ZA5IyybI#U^+8lBxW{tTE?W|som zG}kJLx}_<|N!X)L!|p|6S*AA3|z(`23$*3Yxg2fJ?6-71XfNAhv1xG*(H?|4zCtD?kbxBH`DFm zy_R{%^l)LZVMF>f6+io}H5L0MZZ9rQzC_-q;$=v)AvoJ~0d-(m2GAjKFF z;<)Ie6!sD@~yq{cSjEib@AV5@bluGWV0t5<7W=Tjsh^TSl6 zCb*VVB)u>L0-0?E=h4`8N$dG9moXi?CCB;*!_teLa|uo{VTu#wHH{J%wAeLwvSDgg zmW3RiJwscDOVAWJmGPp@qpo~#;hM!^a~lS57yv{-I!mo~SaF<=%Tx`%7E+u&-0O*< zr75sD;xvaqv1Ev933V%u%J)vO$|F0f26P8u^_hnaqA5lY7zgAu1>vHw7W+-X1d~j_ z#xwY^bR;LUXH-V0o+EWFkfrkcJUl|0=F59ar6uan&oxh2J^2h?*I~Pu(e=GO!e*~= z2FnD_e-dj+(^46$xzS^79(97(?X_zzpB-4!Jh_O72G^dlHcL^~2kh=mJ%h4wRcNk2 zeO5x@-_sPkwC}K+D>Q|bgAJAltDB(_usy1-X?CXKjc{O6yXc)iW_k=f!WZZC;Xf?} zkq0aEY$}M%K!bZKIrv%&QnmtFC}U4bgH6@s#0kl>u5|>|N?OyTd63d@`{eMu`3#Z; zN?;Sy$W~9=8xP%wScg_QDAe<^zP8VDljM!DISYAsZlSipJNiyAcsb|U`5&fCW$fZM z11v+BLtZjlT1?c1pP#Prr7P`M&VT0t)0J5IQ(D;){>+D% z(XNsZYzBXJA|$iVY~ZdlIFpsjmb=BwovE^sELMzF#Cg4v5+TsE<`Zd|TQzE6EkKBc zigpVys?fH2>0-=`p7V^toS|}zAJAc9(oDlo;Q)}_!Y($9kzw8>8W3#eIP&2dj~s_< z`Y9X^!L!M2?%GFLkLu~{^*k%T1So)>IOaz$W=6)`S^$5-O17}+B4Fo&$-u@N`wML^ z`_cCkF?ieU>7-^%kz-!OB9Lst(HUdPn@({iJq|rS6MeeYrzyfoV>)GBF%uhWP6xc% zRVsrdJzDQT&ZE=CSS(}IY7!C=f}ChAwy%pePPQMJxbkMkXxrml-` zT2Smc%g+Y=#}`-mWSP>Z?%+g0XB2{%lLLyy@MPAf&@T>R3nYxnNq}sP$dHD^%kFb| z(-};fs?%pGII1H@yB{0H0p~-X!ka-L>)DX?SOHICrh9@r^FLpCN*!pBV&J6AXyu7}@{=+$eVOY~C zgt?JZa9cQ`@I^xo9q$O zWOmQTqfPeX-(*~1kxN3-#^GF7&CKG9UU=6FI*Eb0CdJ*kiq#Wu@{iR1u0z@ zkk9!l2^WyX`3`F5lSNwg=F8RkqwvzH5|2!A{%k1MXSDk%S7h@%7Wy~pg>AQ+GM!7t z(Udy{n*x~S{-!W`J75}w-tAI6b8Jb$)vFAUUpr z^*}OS?Mpc?)&tdfG}MD&gst-#B~*hZuX6%T05zsMCs0(F$HCZLk}7@2yOX;szs}Lcl9t z;U6X%i1@XEi?Q6E8!kXPszygzISaz56nRb?8wCr&lGXQ(bV9~qnkEBAN)d0Fs!c86 z0C*jt*OsL`bpgh6M-UvJ6-R~RwNdW#*L86yb8DI(YjA2Z)CSDvUsoKDlsHL;l*`ZY z7I-aL9N5@#1boC}bA)c5Pg1s^wK;QeK&Ao{@L$Jq0-4ao+{%i3)L|Zvk^w(LzbQjR zeeRDy9KwN1fOKs=#sjx!#}DG%Ixn~-j zCoS_HlSR1$FmcaIokzA$Un_wVtaKt?opb~RbOC4R>I`2w7m+TZoKSFZ3MW9P!{v~3 z3Af@ypJkASk`oQmLBq9OIDuToBAf%}2qx#e>Nq#(*)nUTX0kdxIy*T~ou3@Ma}agZ zXNk&2>ino9^J5FsL4I7t9{QLcZ7#iN5IJALklp~X+)9z3&Ya-YAfbufj?FAn=6nNr zLsr5};4t$IE)tF$F@qwGi=j-_yO`jy=?zPsaK<HJ)Q;FXa(rdTaQRD#YeFjoxe) zuZ%(9&gmd1uhZvl8ijRy7TAdcrUZTVtVS|lo!gC5yXe1<`&?=U5kiNN1V^|S)bpdb zCT`cv$teUTaJWGl+fZ-Ws#5_kqHwdX4L~%)>=&f)0`5k~@z_c6M6cKcsy>cgb7E?) z1{hpl>ILA~xgaPvc?UYq81jAhvLHAI*!%E& zA2?0`{s8h@&T!!WHo{+q@NWXgG@e)E`5xk!{`08Yrw~64_+6`m;OFtY9C6=3{)0%{ zh2OgYL)aDgy%_Ny!ozR=yB+bCZoh*%T#xeYMf%HukMZ}TEW1|)!TnyDEBIc6@H;@? z5#;d;NcUM&_miN_6Oqptp06UDIQWnJpx^TUz7BNwIG&dSHz9gWez)QGYwJ-jl;@Lp z|0bS4B^{B^pPTj}PmzbnS4`{k(SH~ihV$Q-frtI&g~0J~)PZ52MSUj?J^8)f)TIEJ zZFqiQ=*Kwz`zC1g43CC7^anq9r^)MGrVb2WjrUK0#(#m|6U1fy{Rwb9fX9B@-#O6i z%^uuVq-ES=L7U6gCh#`_u47FQY{v6+JkQ7T6_n|E)ae1d{|O$8^I!4)zmV7OfNyLV zf7ze-%YMwh%YL&Ld5q(EDW2cJ^EY_nbwMzI=jnJ}gy)FqS8v1n2E6n8dwBm_JPhOa z`iu4N&?P~z&%86QS-kW2BWP2`5svY9+taX75HWTd}kS0Hoo(pEicRZ0l?k-Sjaj& zjAPmU4F%x)b(aRgy_Z2IAn&{TP!~M+0PY?5eKx{>7x72%6cDx%&rL}86ogOW_shUb z8ju#G(|;nq1F&xaF4Fg(@%t5gGavqA`+XE?DYHor)|bD`o4-uQ^h`UC-(SGP^d+QW zdgjO9Yt1*y#qu*f%lQfXGM@P`Z{lQG8Ae$03+u#ihOyo(55K=^exHuEV0-xOW82Ih zx0cdYU423DdegRS59aCf5NT%lhjIQt6iLcN*=uFJji;Qqa@fjs${g15iO7@n8N+WL zpRq2))2jSzf6EWV_iy-Sd6||xWqB>Hd_L_6@0VA~349;8R=4xzhJOf0oXmsxncrc= zeI9U(D*@?euL*)LJthc_0;^q5|2Kt zr>(Qa!QXKY#)gyr_C5Q{KE?hC3PW;@9Wxf5bO=k#WRFT>Q2Fvb@B+8OJtW zcC~)D{o{c7X8gsV)r-AvhGqYK2=UDK-|=f@D`EV;L7dM8&okda{Mz~u&X(1-r{7;} zUmjChcMEKcq~rl!G3X}{jXWyv%JUr>_5NnvESHm`^*03)5V6{U-mh^=k-;; zFI)KR@2xp``Y^9V{MG2Eei+}`4t^MUpKU;XBR~0Z>=Wb#_J1p5IVO@<$&2I>w$aZH z=ydM|Us)a_9*(`FE9=Vfje5lukQYqD@j2VBKg>ArVy~{`3Fgf*aLm0>o?u;?@dbI) z=Z!|PnX;7hdlSk;+HuUH{Iq%m%Q=QH>JX$2Win+f!>Qv)JnF$;`|ob_d%pYqjo;K2 zC{I{#s|ztt#@V?Y^)lwewjiz87L2D1<1cy3>Jo^Ou=COXNPEjKEI;$7EM@&zXVQcE z6ZIrpSIWetv=hh8^BFUJd1+-`qjqB5?K~aTc4HdHOwx<-q!-6ZzO&!6%*1EqKkLcz zaa^=%YNlUo!>?bS@8g?&W*Gg)|2Mc;n;*o@Copxxwt}-xL z4O#%wJVvl5j4m!zafT>PHpA`dKhZ4N*xceEo)*Xr)QQpgne9X81AAh6YIgC?^Gb2* zENXi`DF$lIDmbsNAs4gY_|(FZs*s;%N!j4mv6-o{LAFG#MJ3E$X|y$V)h?-AHU%wQ zxOB#(X2`bNA9GyO&1b#J^R3u5j@+~D7*ChG~A>P0})q=h*iM~379Dp7+ zy(E^*rX8)#=yc~()-fDuyEr$ff6gmglM#md5y%S4h17T{q%sR6T;UkBizUq) z!uDtLyTpQ3aGx9wEI&QSKdstt>=X{}8QqDy0>=lb?TA-~=Lu}E%u^e1&(HR$TEpO%I=-BDz8BUDXmLN|~jn+;z(y?t*pTeSh zb#i{RMW33fU>SIRJ6ox= z7&~UiCR*NXQH(b zG&Q)!w8&|4>}+)jq$H&<(oN!^M)+KfwxX@LD7MU*XCJnZ^Jt{$DV$W*9M=-W8xSoK zY77VU&rY@wadL@w^L_!jJlV(~;X2|RTv3-ImgWQq?A4&fU7xj>>5_#&xQf!28-fE(O z%X2F;b1e#ZmY1BKfQHkYqn9)$$Rwb}h@hvqEiyYh(|X*m!L<=(Keq&ZN?N{omS@Im z)ujyE)FfICFY{2k&Na^ujC115%;*W8$+nby&0JJWsY_9|4g3-q36RfRtSq*WFX9v3 zqDtqMG!3XNoSuN%+A2R>J-{pPn`bEv+p;-q$6r`%Agrv65p=3*`*Y* zwRD!O8yewL1ze&MhogR5&1DT?Ad_26xdgDa=8pr=M<-g)4X1GKY);uTaQNgLqPiqK znxv)NX^s=N+uS7rOIX@=bzjLdTU)4coW#EbFw6kPrstOiID@-nmH=r)`4S-K7dB~m zvIJO+$xDV^n6|w;k3z|CUzwnFORSlV8Ac}5wL#t+ncr>(K>y@}@CFht0obLMd?;5i z0dF#_EGfQqo@1ffNA6HzND468N4GT&@)Ojnn71ZZ6JN6$ydi;o8RCqLRd zA9p8@&u!3gF{ER&!x=V4gLxNkV1Pq@W9c9OjkQTHhX%7h3n3e-@@r#3rWUFVCLtCA zUhY#fjpjQRr~-F&EF@KCa7R~uhOSbBt!p;XvQUJWKi6QD))uPil7QO`d2+N?**-L= zfAY(&_dpGrtx&lW3(FnTa(_TR8Ve&UC=Etm$Fpo0aATv^G20pkTiFz}1RBK7m4-@< z0cmVYFaV7uSW=kN74BNhufBBYmc7spFW8@eyC(B7+5BYrW9ydr%H)aWiw(AlO$Rnd zdfczd&2oeMlV1SK5DfvwX0XhO8+&tk#iV`~@sG})YfLd$qLb)eV+-gx{K-e^U?*{N zBFx5coM>V`&O+A)n=I>@b>cx9h#Rl}Nb_<`Xj~tQ$ow`_^(`njdo3BRS>a@<+b((M zlhEcl-^8e4VV;$$gHbQ?TRXGb-nx)WSzD*3H#kw9hgi+8i~uxNwY~Hw<|oFsZryr) z6FjJFla?1;&#KN=re-IqO|V!HS;1cl++=mWT5VQ8hp{nHr>cV!HT<8SpX Got8f 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

&2> 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 z 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

A>;YM4naeR%+H-rHlmHTr#VVBU8 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⁣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 z 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

~;-@6^Dc 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%0DGc(BziPYv!OO7 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

5mvAd(`6 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

0XqbB1?#r9XwXDu8vyw@!!gi266Ac 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

@%&<5%-~yjBbD#1 zd40Fr^R|1R?LX}Kr}B32h#jq<(9Gi^kXOth3_Wk7>okC*2B-3vA6Xqv<%NQt%G*GO z&{KIqIi7!K-fV-7?Q|4Y;=FCy?fK=r6_jkPoHq*1dj8#c+gkPA7EDgmF=4fI-;=i; zyA0d#J$do2d-4Ju?#U}omha8Ew1L3>YLg&#cs zUS5MH%e{HH0E*Ood9yLwv`Y+`#;C2^;6ddsQ*tg+A1_@%g6CKBN(R5*4jgfef(~4G z9S^GJS(!F})@tAn-F1%Y7|W}9!+~8Vno#WD{dxUl_vZ~Cr~C7E7!>q=UcA=L`}0En~~W)ad!Oyy_&2*s@)lj#O{LxD=xDFfY^d8+qgk7*Qk7zrpuwT>g>` zCWdA-ft087$~<*CZ(ELdY);^TfGStkY&)H|s=WA5=Tk5K(|McJdpym2fpeW^3a14B zVJd{2&Zi9fbUtO+r}IW>D_fDq`3PSYRk@kBy-ZsnaU^dD7jZ>f$&jxmm&Pd4%o{6G zGtW%Y^!C)iN}R{C6{_7Q9Ukj`rq_e@PrxjtDQ+XTP?)lGf0ndLfFKg9vc}XPC zAZ8eH>b)ljfEv3Rc$H#B@8apT6elBlw_#bwdAq9TD!m5@#8R;4| zvJ--@pUXS#o&XAU_pK9ImtU$FS7Ymq6x?ye2xIWMywX-_WY47=UruZ#DN{MCM`U3> zt%r6lZ*3_r=khk2@8>=LrMx81m-1pkGkM!`%#O>fmqN?dl6E+gm((mN#t4{k%-*Hm$cp%erRM3LNO?mG8w? z;%4H}YRbQnEL^z;zE=x5tK{eNwv=DVTVbR;;zs2rb2jgGR`XWBJfb*K8nN+g*c_f^ zrP11`kq*lyN86(|99?br{5o4$x42F_ukKeD3wuAWq)`Wr zx^C(P85My#CjzuD)sgyn1638Ar+uz4d>>xX2ux;{#Ym2Z$}CEK?|$AU_)}cCnOa0D z_VY+&rnA(PXQIz))yMBO?Uv7ISJ87ECi6r;Zv(^Ut)EY;!SwT4B8;@Vu1G&Viy(`B zUNtgxp}Ckkfc?C=Z2vrt(*DzvtK@Ayzm&I?JXtdP6n+8=>*uXOa=Y>Mwe>p5^s3oa z)?YQZ%8H}pI^)}t*sMJ|bRVKU+Hu5E*5lHd@yMga)mB z9Wl3N$q|LMm9^T{Svx~|klD57>YH)dbuITP=hrQ)v&D7e>plOsd5N<7Z2t+TnV-+N z+3tg$|9V~?MQ^yxg}mzR7YYT>ymekm^p0c{YlPcbIAVqWSMUGr`32ARP62ISPKH+W zY*!65b0+X;96gTEWJPSBz}(i%_I%dWy{gN#Zt-kvvmIT)q(*6xTRl@?>p}pRyw$V4 zFj%&%ZY9q)AMx01Iq3PfdDiz4RBrQZ7xE`t?*4W+>~>GX?(j%ic>uBf4i6K;yg!NG z6hPRWo{eos5ZS#~4#*xoHAxj^&vvGHQOX|vf~v(+_Vg;to`R#xUb>q6Z%@uz|J$SB z)9wSFf47I9+pZ&*sY9NBk7qlO2k-G*cC0Ct#J|ULWuhxq12AR@yT`Lhc`O?Lk2v%2;BJb9Z~ z9ax|6^t8VIeV)tFGKuYb1`KnM-R=rD(<(mWE$1$dh4em81$yPl=R)x3qb2+-J)6PE zxx`8!0}CcU`CEJb1DUR(ODKhMeolHcv_{IuHJp>(o5CmV8^k!RGBupYZ@Y$+tbpyDBP2$)UZ^S|qX zvF+WD;wGcZ!ych9`wkERP>@$l!($aWoV`;1)6-w<`ra3gd*q9QnxDVg_pi8l_n6=R zE06i;7ta5fhhOskgYYCKg6B_o=)lv#1krF>YfxyiUL=AE&l*xWCp?<~g6+%l^&`)A z?X`o4?Ks70kQjcf%k7agNYOLLDC=>?Jj?%Jt$*lz!}ANCZQW_R_WXYs`Fg@6c%7FyIo3oUA)MJ=?Tr6-GyX^HOU zxM_>+;&|u@Vbd0STrxOgPB*8+!0ZNROiwBpV!}9dngN)AnQ*}c7hDA2cOOfoZgtwL zckg}oy+^)xf6n>Nch1q`dHw<}TvX{g@s>9X7jBq$-}oVkRIzkkI^%s)c)|OIt$XG@ zFr3-cA&|-w=(TKK#a+Jbz*ZnqfpI$eRQW1gL)y@qEEK_T^De4hgM^l>k2VJGWK*Vr zz|fZ;!kdP(w~PzzMSlKAhK=x8l>zgSVWu~gGg9}o_@29gn^~&yO@h&evs0it z2^VqipT4oKM9kcksKvO_g@ccCd{w%15}tY zcMdCVt3K_0bcp+YezA_pjUQ8etC5pz5e9 zf#v%e)z@x^R1FTYb6~8zYau!w7=h-)EpNK@=@OTnyvM!PJ!JIHQTP|Le~Hn*Zu}b* zuD7pabiMy?(f@aqn;Pz9jJ;uCxNMGbZq7XJP*~9Ksd?O&9~h9)nB^D>3>-s`j6Z&3 zldI5;yDsV}1%YeWdQsaU1MiWc&P`$NEj*3knK$=V`hJCbVT)S?@fOJ!B~n-pH?>#i zt~1?}Zc)`T_{fB5ia;W{gG&BeM&9HGmjhS46cz&kCI9}VnUFUzEc2!nAaDA1sA)%{ zWO5o@^)EA)4GQ7}zGGsCyu+s$4;N|dQ0dA&4SaVI**jTf19Z1A1Q3+`iQ)7$^NQwTviynR^c{&cXWZe=w)4!T zAS872Jrk}%Ca|CxvMlV|4x!#jOA+I8U?=11035#`ZH81U8mTM!u49f6(SBlVD!C7)so2 z!DBr@;WhCIQgc?7VQ^r${}f7X{5>?{laK zmo!X-T)A0Kz{`~yC$&2fG!6_P*HeZ$d5JSg{niS44NRzXK#4iO8jAs^1E~`aO{}no z93jR7$J3jJGv{$>TT{kZy+RgHSkf##a~_xPNSjsACqTg%tEfD6-*^1xGUmDibr>$9><6G=_p_KVnD9-1gt*=i9l0p>4 zXg`XP_z-Uyt`$9}QWF)D@0K>yG653?Es=(;jn3_hIqehFXEv~LjXnkXV{da0lm+FT zgOd9$vxIquGfbUpw1n^6)82q4WuTVh>UD{jwHZ0jb?fOEA*{Z|Op@+Sjeo^Eox6yO zbSPqZD@#3(>#m6|ZfFoml0ezh8#AZOlof8mLo?YT@-b&j@>P)eE`wqXQsWesE_-~L z+2iYUN*koLKfa=CFFYsfQlCo1Fv1Xd9?5Tv_o$p_jIiO%#rvdc63#CD6Cf; z^8@|$;W|d^izB>l$XNT+Bd&7(3a*H>R*?AU(bKs>e+2PP8O#Z!f$+LpTZhi98n?EE z&7h(Q>w(Ge2q$yllKrty1&=W^4xQuOXugz_Gb?3ZjF2wfx#?x%>}mn9Jk^lw6L7RP z+-OiRmEMd}QG8v}OYH6ZNnq z&&uKiPd5{NB5KnFn7tWU<@xi_PA~<&hi;vN+ z$U`r=pG59NUZ;apnGUVZ6k4e+qwNh+e5S+cJQPzUo^GgdoLZ(_`uuXb=Dbmvi7t7_9?hw- zd366M21m!LRE{-{VeeS$7`u~kgWx!Y>WDDqf`_U=fQT$S5fmL2a_PZ^)n*GtC89$! zViE-(E#WY1X++Ee!YMqWah~K&P{VA+grYVQXeRcV>td9|B*|lK!Q+w`_O4r7a z>+FPl(^ky9DB6i~#vL^@B(~3!SP+R7&Kk&PH;PY( z#!Z;JIu}PlTw6v_LD?SwLrz8))tkXF7L2gQRnM)@bYhQ48j0Y_H7W_0t}s6C-5uO( zc@6=}QF!UOiB114->s2yyD!nGk(0#YJ5i+KQ#-cH>8Y@~ z<$bE>HK#Gqc#Va(#}!ZxbX5NC8>W&}9vE5?f@Kd3jBJCFRLU2%8IYAp<$9T! z_=nq1pTRISN=dX~sHzA2F=hUks)rh_z`|K_NiF~n+;7v$tSfpP^)h=D;#3JAP{dP= zw!H{S(QI737>Ga`&#f)&1g^N#Aj?)}6@~vE(Y=7@9vVRy)Tzd6L`^fZjO3)dJI>c^ z##t878dKrED5}ZGU-}p(izy|3#V|EVg-JCZN+M!LHZWA6Y;ix}nh~j=hi^DaVVs(z z^h;XQ;!6%NY(dO6Ag>s}q`KkqU4@9(nlFq9SZFREY(xIt8 zomW)Y*JOBT7)l;~Xd&$S(8PwqGBWb9NR`s+OAvHX*LMz|ddGC?v2H|n z!N(?P{jt+<9~%Q7lkF%~l|Sq;^+MGca`=e}pafM{>{0ieIoeJ@6|ChOdtBV0CtM}Q z$@0Wx!G2(%bmb6SgF}15h zIa-NIxqe-qAQ$;YIK_aDDC8Ms+fPt>x9o5O66T8CR2b^ z*QU}*d|+Tyby)#&TxuQXnW+C39Gde1wO=9;A8YGG0XU6^^CT#>3TX zIxvfB*@$@ED^bD_F{4R2Kyf!|FAPr;$|!5&W)4_n$#^Wd9be>CdX=xvlf(HlPC?^= zV9L)pqf{d@_#w@c#sfLtADRN5eQ1K2KXj8`XSv)OO-x(2aj)s2%bjSD8m2I!G|^4> z(&(p`&M1yTrj)_J>BsqXU00#V^y;gol(y$-b(^MVY0O`Fqve`*IuqT}pWjT(@f&NJ!YFkifWlyvhl^T2U0aqse83CT^XaMcmVz zUM{;sflE#WsLIg0Yv^m0+ck_aM;M-b*Ay%wj8e*%L!GvrRKECrQa63M)=aj!7<7~9 zC&{|mHFRF8^;7#46-VyP?xzOSQ;TVo(%m$A>3$k5>5hCShfWH)X}gcvS`{XQc8cjz z8kI~ngTh*I4c&Ee9r&+PLHc)2>i1^TfxC@T$>lNyM|*MSGC>9tC;b)HP+S{0^%!|+ zzPpCQJ(d}#O&8btYbgDGkE)_B?HU^LUD-91GL;OfnL1O^O)`?QQC)Ajp?vt{D1*kT zy`AY~jK{_H^4k!uyTP+BPi?leCi(eDeW%C!I4&=qTh`Q zC2hSFr?lc@^2pR|>W0coHMy<~ z{RMO#vl6M0jphla^%#G&7gH0%k|Gz&yIM8crRz9_ZPGKe*3=E7*j`+{N3n_PxJSO{ zIL<`cbpzv9>U=&?AR;%UNwxKfo7fZ)G$6cq_8n3C)Ke2xT zi<8Tfs?ATdPNICO?LKAhWZ|TFpUDV+VS{TGc@jro+#~bD_y=2lwilTC(j(x@r=KKz}a2O#LuWD>seGXRFKq39V1*EpE-<9=SZds3q%K= zg(?xHI22`0e`aAIe-&r~Y?zB}F(wvJrTjIK?Ab6!Tw5fWP`zPL>??(Ym_}PMOyi9N z+KFz0bmXM5$0$09VtJ^YQdonVl1}rLHjG?D$D=Efsu$9C7#t^E%BWwMFJVELJQsn~ z)-c$X+n_`2viv^YQvTRlB$pLN}Sx6IFkot{7wnJ?BGp-^(}A5P$f&$-(3~ zhl|eSsEw2*W<7Vni<+sSs?a8MJM!d@BiedC;#4e-!f;YOr})uv{pqr;3!7vS^dmxT zCk%|UAQVUh>A9hxzpp~kH}6YRUbruvDZ0tmL6PJ#L7Km$%tM3i#g&y}>-DlyI|BwtmT# zf@|jW9pvP{`^$sJ{Brdef)nPoS6y#tEuuQtKIq$aeQ%ieHwSHhQ@Kdf91O0Fz-K#$#7v)rK{KYn{VAlQ5K612Y`A1NzmWMCG);EVxKp*(9s9` znhUyGd8e-(mijfn8x@JK$?ajGYq+HUeOp->%bu~x#Tf7MC#lZe;$k|E-(9e`nNfs6PE2->7-t7;fHEuspXEWHqn8 zaYhn7r{;|#>gR6#4PO`G)^7;))jXY=9zeh@B;z+GuPmLb__Qj0V`%vF;_dS-7d??C zU393a&#*~-?i5P~hM^-@-$?XiE-ICb2O^|5RVoqMaVZA+)T9d363F!J(+Wl|P@lWZ zzK@~i;kPEUHF~sL?o*7JQj7_x;SVz7HDizc#2|q|h7JYahTFF`G6g&mLqd+lO6)VD z*>jkhq;=)g)kwDZmJ|^+lJfN}N0=6euyk9exJH7k1h)h$%6nfc&9`oIb-*4a74;|L z`l3e3!Lb`?zETG@9n=W4gc$a>#5d=j$O}UK!uYgslWo#rs0}X#c2sD0wAg z&!QidfqBZ@ck*`0$1pikcHL-`SmCPe7&-(H6*OZ^_UPV`iTg!CyckC*UX3GrWY0AX z7b5n;4?r@7s#@`#ZdHm1hUK$VQFMv@9_T4J=U&sSB9nP5d z4~Fv_IuNt}2e(iS3}N1g^AzMU< z{*H5yxZHP!fowhB8LE;d{=0!(-0%4caIxiKpQCias71}lk}>dFIYs$8O$`Dtbh*&M!}rjfo4LMA&c1TQnbt#bV@TOk-m6zBfro z`r|UHwS2zA?`>7<_&VouPyY{Y7skV_ZGJiPersZM{?>5*hH5vtrTx}$hsXbEICmA- z?ix$n1pk+bV8X+B^ZvKtJc-G!bius;V>ovSm$w;o-__0&=TVUk$N%Kc-=V$TR68%J z;-B1h^M4QS$I=D!W(GK#T~Qcli_p> z7dEI^_+UC+_6#D2Dw`742IPuTE%R{pJcgcfU@#3c+YePP?TFq%u7P`4CMir1t@JoGT)w4Zvt2zm;S0h&-ZWJ{4*WWY%h_~_6>aY6D< zGuDcs8!INv11{eYgQ)z<&daEa#i!&6hc1ia^=qUCy?&PZEe(@Q^E0CpTZP8GDPN63 zG&Owe`TFy1O(eIOVd&3&%;WS5h@t+6uI$mLW8WVf^v@?q8Io}<$6JTD$*Q@C0R$bR zK*X+27DhWdjyk5nEIKDB8^i>#pg?%G6Q9ROXY-4{jaarmyCjGblF0 zjc-7-aLiC&&3H#0X5_XIlZ3P8#GDMKp~Pe{{4E2rotX0<3$5ZYFhjHSP>kipoxr)P zt9dp1Q%*6%(G!%JuW!-$YaS`P7+CT^xL5GPfJ0eBiE2(ykpWn96Vy;r*pjTF%$Mr2 znP=$;)bK?~nnmV5>P{+PV3jva^F%5KVM#s|DZ`EEUfiBh2!HEl{4i19$ws#p?6TB zyzL%K(oA$ehK1gYYRb2t z+{vb*cq^8b2*7P_rrczW#O|{j=DjVs=iGJNq)$v(yNHdj;T;JcXV2l{UAT0v@5mY) zh>QIWzZX}3I)j{jsoUd2-5#&HJ<)cgL_yLM$d4}jb788e6ck3`72^p=b1@T$}E#>TfVhEU)=%Cg~ zOp<6Sz8vquGy(^;AXQ6;{8(N`s;*dW7-#84tx2(-IJ0OywK&O`?>ZgzT>_c|PXrvgYi@%cxvI7)(b0TwB;}ml zz|}2=0C$dfKcQ?IdJ|y4G1Bz=zItY9ealn8ZLYkRz?7^yIf@iHoawz=q&%IEC~}gR zK1FUw6Mycjw(00U8u}w`neUnSyIIcmUPNS_z{@kCnEV{6o4#i#a5UGr3XC<--U|o# zp{Ac2ZZ|!}4iIH05KvY!B#x@Sc~$N~CF7DB5qT%)b)5qWyS&eLr!Mb1KAqS+b&u2e z14F@CoMyB*6%#0v2HsBe5>k)Vb#};jUUGqNP$!dbj|yLh6h#H2o@0;ONi_zNJap-W zi#pK4Sf;^^m;>#Rs8N^;2=MhHVWu!6onk_eFXzu_vZykIVlM_U4wP@B&OtkmmlEnr z_bTLnSl<~>KQkwP9Mq}|*4T3htQhq5xOpEM`W#XVugoE^=c5(RCJ-bj;p}oS zND!J+Q6T+y*Bl_w3}q4+n`oH9$S>2UTbUkO2)S*$h7orf=WFz*a^y4~=~s=ZBP}c# zSSv>zy97*=Ez&SLDd*?WPYqMLfIzSd!c``>p_OW5mN+>gzRTQBj(-mOjwOhPjKxq8DCBpqS_-j9$+K zwrKUj66L5`h&p2EPnfo~0_3A%`{@m3P55)^Z-iU^+!&AG_O{Vi`t%tvtexCuxt{z7 z>RK&g9xXblGCN0&*q;pDcq0aa4nKaNT03fIhmtPyHMYg06p?CX6(zB+mH%Tbd-trnS=CP-Ptuk8#JAZD<=IUg75s&A|!HWO#bHkk5Qa)CUVU+5m z#dk8cx2bgWxQEm;-He)~hrHa>k4UBGn*4JTmwHj7MdaeXLja5>ku&$uXVjlutV8}k zvy^{99@g(PbSU`=%d1jGZTl^t9B0NBN*sguFpe2TC;^4}WHYIo2b__=*Ns}o7q(ia ze&-(H$-1MOQ-@2IQ>dl(Q@W#Es+vj0O8LTsIib6%HHf|KIi}Shj-j^0FAPITRL?1@ zWg}>>Wsjh6qGh+&W+FMictBz<9&nPl9fVq@MS%UduFgmNJfaVsafN%ZJbGM4E*RY;+ns;1CL zO;Wm)kpE35l{;zrIrl!UGAfX4LVJ=doGMTw<{wrds^^4}8IkI_VU`S1M%&N1O^i?q zLu_O@!s;i(W@|1SUl|No~i!wLZa00000005{;000000003100000004LaG~9XE z9@F9f@nefn%ZPm+dn=Z)?+jHWieqmY(i2PVj3mVFpp>L^Y)KFt#J&wmgO+2hTI$%h z`Z?Ap%0yfH^1Hrye;)t5uJ>o=zTL~@&huPXo@d%{W9Bl0O>z8S^MC&Z*~#Vv_AI*- z>GmY-r8}8UGD~-gcG;XtXX!oNOLrRGZaeS)JsjhALSwPm72V$0k3#bs^bV`hSgbVL ztox~7`^hZB@C9a>Ww#@pcENI2EOx_o543w>FPjl`@oP*Y(d&L&8Mb3L+hdkt2f7`G zjUI1#G>^O4irv@P%5odJ(EXNM(or^B&{_IbdHzubSxTYjf{indTuoHU_CG9 z`OqwY#iD2y!?YxZrO+;oVZasXxDwh`u$5VMtFy+vYAe|GRgX0_FfkE(NUWF z>F%QWxQ-`bH5u&`^p{|BDOOXlmgWjN%H~Si1?;cF<{GT0VR0kc+p&BU+s9-^`!?ox z(7cc33{0~6koE)qi*BX+h%P?HAl;{Q`58vp^mLYCCS8AyUUpy5<(HVh#^QTye?&j~ z{Ig!?Fef&H&<@7<6YLj6yAW1G&@6`CGFUE))pD{#yD~=EuR_J zjY$Nnk6=ar&+hyA`Cr#Lzw4gsy3PH4>}y}2a>~qZ?Als0{j>M)e$u^T$u*xRbu9Z^ z&h*;f)STC;=Z+UXK9h3k^7SK|I}Vu~m$3UvpJp)$yG9Hfc;CA%@o~{hg;J-zvoUt_ zicrG*Ud7*k=~2%)8QQ%sJ3c9PZhWXw@f*uhOHbNcD7DmAS6*K`V_!o4jGo7*y*)O6 zg)^mFcG%x@SoVi6Ce_RHP<}O+r4hdv=3XI=(>K%q>F=!-`bPWHU9pJ;l73w zPL@k;Fyr2NtHIPKEz{4x^QhLUf}T-RZuVUJta78b@6R#YJcOSI@OMxx}%h7s_wUzdz~Rg`@`AZZuC_GHvnxQFSM6 zw0>E?p<=Il#k#btw0K~zqu=)ZbNAhBr>c8KPxyT1;0kAtCC$E=82>cylhYl?j=wRm z{?P#mF_(iwmoLay?@F%Y34^DdINEY@j-=N^bI0T^U2I>UwgX?rE*DwLdDDN zUtW6h)8d=<_xSPUZjF9Ve(=VP-j!|~OD%b3UF-cdJqHKBUw8e)ghA7i*Z-c}adPYA z)WG^$?`$kop+v1!yI1wAy?=X-t?Q}|96!9%z{x!yv|QV3WA(IV>vvv#Wo_BLt!vFZ zzV|}$Ua^aICXGCE=-*q{?|qP3@W1?N4W~XBzP6j$dS2{_BZ1i8ZWnD;t>v>fxBYhi zg|?H*!@|Jgh$;!*H%53RKNJ5x04#?U$i@^ZsGUGf13Yc&#KcB_b+QybmW58D|VNd ze{|2k1E;;1)aa!(#eSREuVT+(d7{@$!SwY_s=u)9n&*#cCo88O`nP@E&WEo3*{wos zv#~igpSU{u&A}HEE>&rjynS+&)jePPq(raJWA|^IcK`TaO@Ar-e(h!3Uf6x3W7?M) z$2zvz?~gq-q{pa|Q->ubUK+jip>||k{hb3|IsA60Oa7GCLWxIa#aBFXV!)Y{gc1om zW42zjVrM4p`Rv`b?Ppc$IVYj$*2g6hk`ph!eErDB>8G1+Y}meJkJS7}VngT3?DoV= z>iI{Z-5ZWie`lyxH?H)1iIerwZ{_U&a@{i1uY4HOpw`a)PY1@o7+NspLBW2<-X2?Z zVe{g>>MS^V;{9bK&vb6mEbdy}4Nni!masQ9@Y zp*UB{EAwA!x-<9IcdJ&JvA1w~&d#&e&zqN`2QPjWUn!;Nl^(BM|E^PXdFz`rJF~v& zqooIzrLO;~`NJRkZLHO_#G6|`erbHn=@lymo?bmWev#EUW6|-8?NbkJf1&iS;BHU; z#GP}t>3_U1b%!iZuWXmI_*%*wp(XLUK#t{#{5H%R=qZK zU8xCsx6i+{yMCidIg(0^+q)~Z;7_^JVrE<{oSwL6z#9V-ze!mZ{kiMHcMf%2`}N}M z9af|)o8RllDrpDGKbdrWZ`1VJ`$BI#e0g`Rj)P`)FMjE-&niyarVmOwS9;Bkq$fqs z7V7x;_$)^%#K(WuCp-BnX==H6O2@6??2uFPEZqZRtM}q>ajA>Pf117hi&ej!`n3MEv3r*9jrr|C z{IG13@+ED{{oCG-@9*o8HzQHso`2i_QagW{(PDVbRiA{m=UWj!cKOt8N#D*$8=d;c z%;uMNS~s3cFSEy$G(7jYW}(EJZR;M46z|e#M#hki4Ze)4)#k+B57L)@bFBNQJl7Jd z9(-7I>la0DeA02}jJ@aPpWoXfXRWf!pFKZ2rs2vXef#xY{;1%?XWgIVcofmu>s;{lJzem37E6>fU)v0^Ajhkw2J6~*D zH$AmLT7lv@OEo?BSMjl5r5){fYuv#eTPi(F3!N{$ra{#MBZh2!R&;Bjj?>$EonBg#L?Ajrdpk+waz%vrbldrp23qv>b4k}XL0YLZw#vPcEuIfS0%rc*z=dd zivlN4_S?|7;)NPpe=aaGF3r28cK2ELjtq!9-(=Cb;|IIeTAWeO`eWkFGIx_7RUfpv zXQd~jH|^;5G)G#ur0Mf}KX9ehpLVHjtC`(L6<)Nu>Y+;|>b|z=SkGA}^TpqLwN~=% zy)Dmn`?c$;%=^ry4LvK(jybQ-OddP?=J|bBOHVtoz2&0&p;=w$RZo31w)?$8(R|## znRWh5`7h6)M(^G!k+XlF6HoK4-MOcAvGZ2fK38`39o9&1bguKpr)A!}4B%_UR#!!@OIt7Uk@L8x0C)y;kTzhS(2WyZ*ci}k9yS1 zTXJ&T<`q{myft#In0v8%{OIx{`p;PYN!*NOPddh5@EoYIWc|$D8P9L3xV%oDdT~oz zZCTyp!tv;vmMi^^dMl1U+&8&H-|iKsp8u`CnJ2zpp^a;wd54|o>`i=W+2RQ&i`=bt z@KU>sn3R-$(P;9wKU}DGAZD9!p+nDaC!PGUW9P|N5~h_t8{PV^;xdLEf7+(ss-DAR z&*ln^C_ek}OzX)9{g&=~oPTTIq&DeGcHgaEEVlcI64yFdzkGf2TI#`vOE*0jo0{@> zm%0W2D|4gKuC5PfUg=X|-?JX~8x8!$?7Ay)i~=Fo^S8C~b)JF(e({kJBYN{(yXe(Lf5dGe>|UCXQ~YHgU3 z)*^k<@-ENSD{*>x%8yAuggWM0b1#&5?_vD5S5B4ep4x8k^pmwxAD7y_x#N@Uza?}W zGP8NHde%kH+DScwaS8R3?kE2_@n%f>ZQXa&JKG@i=Zi;jPkUsPo%n0_1}{&25=txk zq;YDE^xng3beXX?q14u%p5|jq4Qlhv>K>zCPDpOJ_-Jy2@q@=szS%0~*shoxXX5K+ zOZlo_@6WS!=`!I+`Ma}|=8sz(-@(dg5%b)s4&CS6J2{}ls^d35-gLTWr6VuIR~&g| zNUtG7c0KJgaPZ#0Yi&wSPtPbY@aDeO#eVBQtn9-_Nu#w#Q;zKJS7v`q+KcgD6i!(k z8uRjw8qbU)8~eT3G_FyzVaHaCZu`rGCn>2r#$8-fyw|;#(^@{O+hymMZ6A(3aq0c* ze>S;OWnNih@t4i_6})n(=k>jU&AL>nRU_j`p{ZvsExGsefnh{Q2~@#_UgDsry3XZMplLsobLW)Sh$p7T%P2U#wmLVqmL+oX z-|ckfkiX{0;V&%gpZZ>Gr?}23pH{kdE&cT)_oBxzF3r5ztI~?=y@!{(9CxL6#f>q8 z|K9#_-7CF=ZTs{ed?{h&v@KTL!cJHGC8KYUeqOv|&X4gYQrs(I>JIMEyyA}h)eglR zDgDQK^lyszJl%6M`W`Cn?CPG|UrKpowWwI~O7EYR-Z_-Zb08-A zdslkT`@GkXl_RGVNFMcJrBeuB{JIgiF-1>LCU{zXAicXcPwekiS6Ec3wn?GCT;tK8!7#wx5)Mzj^8Lbf91%j z>;L?^J}vq2!nBl_HA6O~{M+g5LHCiF*P9m`pYzzm zhp#rTJwGFPVYAA+$HngmX1$|06tm{tO(`Sd>b4wee0=u&iA(OgCrYiIcgeN&o5oGg zv>f{S<)X=R=59*kZ)cCoZs@_E&c*g5%dR}R|@OJcl;KlS7 zwW=N1{_6gzb3^lXtnJWe$jZ2hgL}@mNwN=x-Lw6tE;m2MwWiou-<$1CJo-#W8RojUCNAq+OgGzq`C#t z^7L!HC%$m4iqY5PB4>xkwAmeB_hEJGae?S-Li1(|j;&ghr})u#hn5-9|KocPI(80R zX%bUqU!TIO4i;ankIYjmarw6VH$IGs-T!yq!^wH$KP}p)|ElA22lkqG^Wzy6cf{Vi z7r$)mmLV%oKT5rM^mA**rR^gc4b0eoRf{R`&RAE4Gi6$B%lw)tWq0(|_w~9dTbHf7 z-fP{`VYhmv&feem{=T=eA9*jP*K6ai_nOtG?9tfXl^0K|)_miJqluYEG#Z_i_WI!S zPjjv~oE(3>eV+wQHzq#nUM_ke#HKu{6MLxZ!sk+3mgqe%t=+~W59=O?nf~eUm=3{* z4f3?Db@|_+gD%yN>2>nN$p`;t9~k@2nx!pcEB^b%xa++~SJ^gq$MvHLN`?k@{APN)MJlTH31Alk@M6Y;gU`*0OPn8!vjT&W19z3!c7G zHFd^*fBmf=9A8r5*uJitFI#Ev415}hn|Jv{^M`l(-ES5XyQlodnAkqIdR6~wbLPuP z^UaCY?P{A6dycNT?-Q%dZhz%@TY3zw*fg%q>LWWk{xSK=nCnl+UD=Rc#{9SO+A_Ny z=Wd_p&d`5{=a21iJLja@7dsX2J@-naz^Pk3=Ka-R>+rJI3R+{Pr0x8tS;w*CPVP*4 zTI5FG)Vrxi-?>w#Y24Gvo1g9dH{XNIFR#Wx;;%i1 z$5+ySt~P0DkLpG4EKFVZ+Ub3pcl9ZK{nXwu4Pt8T`>guUbrR0$kL$GG?RjrYrNtTE z4cAsbsC4XHgDG_i)Y@14w+8i7i}yVItYGGMGSm9C^Ye|&|Mw~LTbj>nx1Tvbk}C?? zwdhA(>YJXDD1v({ihKBQDcn;gcUI7w^{1x2g8Oj~{swNS{PXgGnt1qC=~4MMxT~Dq zJK|nEBsE%JJc9f1p(DOPlzcEtHSJH_a`+8gf8Cycj7J=vFM8ZE`#qiP^T|A{nI7p}AZtVpul5$M zb+LOh+=XX-QuL3HqMl95qfN-}&LR%4HaN@kYJnNz#j`%DXvUd`+9YPjz3)_B0-18~FPlW^1FEAX(xH{)8+KL4Y*+u?uVUWebo zb%*D8PSzW6_)ECq@HcSN;q{cyk$K9Wn$`~2XW8f97uV+6^Iv9p9?ko_xJ#4A99+vS zUL9YJo6m{AfN!PW?dU(5<=Hh?dgh%=)8tQ0yPoCwweSb!vRtkLO}kIt_(PKFyv-5) zf3iidjPD%&B7Oi@J#XNa!yDnL4*v)bJNy$o-Qi#2-{aB$ne~{7uXXrhJml~-c)v7R zubTg_xZmNY@h=>H0}nX-xg4@@Qyg9b4>~*+pYQN@al_%A@b4Y|DIRk8Wc(+GFUC!W zZ^REc{2*>Q{5+oO@OyaJ;rVjP{-itn6+Ghb+W3DCe;?QWv>(Twcy5Oe$6t*tnswep zZ;x4zX?Qt@FV6BjnmO5>l~ehR_^%G%pXGTq-z9rK6>sbC%US-M=4IS3@?;I8{g>s> zYvx-rPxXEyPxK8+HZA(Wy5f@7v=UjKT?>>EU(OAsGOlR_RW$3lK3<-2)dySsANh~} zk9_|u&!YvhyH!Qj^GJNxWV_GE^1NEu;fwHgm+blfWqCeLcleL^l(upoQ-kly^8A|N z@ZWILD6gVf&lmp>zxRK5&ghLIo0ea5_7u+YoLav^Wo`YLZ^N=_IkZR}`|+xt<=M6W z&dPavg3oG#A37(l%Gx=64h)_I?&AHkdjIx2Zs01Pj)!m$v&t5|4l?`0xQSQ5jY4uI>iE03R#;r+ zyWu8okx#&bFG}7mPues*R74;geO=6aEK~X7_Wm8XuY|ao|5-eMtMxunJ&t^dys}=? zk*|kaxKE~|b;aE;%eY>A6t3ecpNNMXz5&-tvaaasS>_`JH_M9a@}!-|-LD8l@C@8l zPC%{Kl~2~?#*M6YO{D8DpQ%i_tfbnb((vhZ(m99;!^9{tt1pia?P3Fx(d_?#Jh~ z+(-Ta?y4$z6E9hS`Qu)$(|Wk8rsUOit>d0r;ubvgx;-TpKt<1+?c(8@I z8aJm)=HqT99{rzL4-f9az4Uj&{jDYMCqD%bD<{7a_qAnQ{CAcAfN|wXdyGdu6!771 zL|?Wt_s!d0z@p~^+!ZGtU_PVpAnvDUC9ZW6Q2TIDnja%$$#@ zi|dU0F7ECwuKGX6Lp{U;@}#ZAJ-q}B{1k5W7Vxp&7hdFe^|O0J+&@6vVm@7P?xgnt!3_+pWxb8so)1%)b(DO%zxA{4VaEB5ts* zuDChX-tz?>nJ%u*lUcYYXzy8rTeHR0^}ZkXC5r3J^KU$~fIR+0^?xgF@_PMJF`xpTWJjPW}mQ;A&m&=r{B- z&o|G{(jOxKE*{3i_yFA8DtSNioTz$shfzk>T6UK_V? zlb&XHaG&(3CT0W#HB!d)~smDdGk_X?Pgd@rcSFmV5wz zhMTw-FH%zWM>`^Uji(CAj|%AI8{#^y^1AY4k`I#~gL`=a3E=Z_6F2ZJs^>U8%;$jW z`AtBbS7&iQ?&p2lH9VXuc_01RqyJ$k>wa=Z+)sZ&+&C-XCI2QK#>04H+&m}w0RAEF z{lo5kRUUV7{~wN9Vf(lXaMxerLHbwY2JXgxR{gk(*Zo7P|FZO`efSG^r;A7ANxO-= zt_pbR&r@3V&4>GOH*Vspzb5XwCOskY@2WiR#y`ZvxR3b^#yvNf4?Z3D-xM(MwJOho zT=-7hds{%w|0Ev5)jY4``oEG_$16`6*$01yxXJv>;-35BZh6w`;lBR_0_5A_7Ouwa zj|Uz|-ba3t%Hyg(5sy4%K%Rb3{zxFm>)=t<|5RM3KOGM{JWur7ZkgAM_nG8fo zxSR8>KJL#U1FH99?eIu$af9o05FRWb9;Sc1>M1B5k|%90?k+5#j{7P+{Gzx)&n7%j zL|pa%it9zi)%(Nf?_JAUulbU=+W$MatGL}?a7$jtqg$2rsI0t%8{+Ey=TzmD#9e%No$9G9;ANisaSK=L zINJ^eW?9uq4Ibj>!X_16?a#c zyn*|16Swdwc(8`#z4%<*!h^i-tibg;_IxsK;6C}VwhNEc6Yy|eoxapM_io`9^Aye%<~;w>nnK= z{sHcBcn@61)$98R+}}@nbb4ms79PactDgRnkKm_qU*=!Hh&}>Ye`?wz)r0G-w`c`f zuV*0hmnW?jt`8Pa=UY2G@Ts_;p3m{fXW|Cq&c=g7#eMiXJdB(8Z@3Xp5B>LXZ-Tg+ ze2I!Oe;rrzc?-9ON#3HTC2kBCSLbtY+&xk}O#Vw;8;vvWB0P+%_gCxi$d{5g$^VLn z#)+%rcn*Mg5qK3 zIRn?f5m)nEjYn{m--%nZ?D>uDHp#&v5rVaf^Ar`UdM=B(B!m689|; z573igu?UkTTLkbH=78>ybP;wJgFxP`0!zPN9lecZ7s@9xUVa^QR5&KQ69b zuY0Nf)8Zj|#^PG4xF27rdTI?{&%h>1l$8lt=%&SLUNL?tW~~PsD?`>R*Y6 zaZ75ny{i9-^my@$cmxk}K4h;V^A9|eyiUF%9>&%8?Hl68^Ri*;b*dBY&M6*YKL_Bh zyaJ{Sqm96={NgU=GaC=TKptO(8wJG!^!$Xo3yVjX|7G0uqIej8DVF1fYxLJsUc}zt z8~11a#mnd;M9*~GU0htJ=O;W+!k$mXJuj1I{`c@;DRB*Vd1Ri!GU6uVzK;9Kin|%N zDemVDk^g!5gbsMPyyQLP2ji{^;s*T_@DT1LZ{U%N^vIL88FyC_2+?yCw{V^7_aEF- zP4ZsyT2)!EAJ_3xxP^xpw>loEB@iUv3U}2O_cQZ6;#wD+{?mA*tGGIjPjI7$cz}Gx z>at#UFL6trv^YGH`4^R=4 z-xrT0h@1E%JoJUQy1rK8-r?eEU3>5_?%{m+2X~EsEe9{Nh$#l97< zE$cGBriXdf!aY-QdOpOB>GYEyiU($hd+Gm1_0JUdkx#~5L2oP5?Axo>M;Lr#ZB@q+`oi=#;u0?mWr$U@Y~9liwEe@achORub>o-#@!pm4f>OD z)8UtKeUs!vSCGFdk$d_Tc_Q_Hj?+t`u=U$MFUp zI3gbXVZW?L&ib-Hf#c#{ygY7Z{@_gX5y<*e)9T^gQ{q9qBW~ep-#%CQ(~?*FHWPQH zGA`@dfcwsfN9aGUdd||r`@QR`=P#V~=4>GA3SSWS$dgtIcU=}x_l>u3f4aE(zE(#( zkoki`(T9)u48|>7ou6N;{+p6l^IwH)x9DM>KjXgJjEf(`^*iF~eEtUy+!HsM&tu%1 zA+F|AtRctuzTG{z`JcFY-D!mzk8t|?sh-E;L3|4CdLpjovkbSC%ZIfe@nAMN(bVhX zLEMx116I+8mG!5lUB3Z+U9MNivu{;!Z+UyqySV=~ zadq5#;GqiS`M%ItJX}d!9d`patB4z#JbuOXSn&}42k!ESoA`gYg=?(q#l{@3YV_bW z@jy*+HUD?zI}>&-?IBRDqlz3B%g!_>WQoQAI3fP#ly`12JUKL_X161{t?_y zJ{H#-O5VU5<67nq`b8fq-vReKd>|fn_?Nhk8?)Nh*?8a`>G!bS)p+P#@d)$z6*roS ztNl5J>+gws$=_CaT%-T_w`CuU=8{+YSpxU95Lefo2RB=ZN9bvbhgypV8FvWoZG)4a zgIhlFF!`TVPg`*d{|67W6Zg}T^Bs=k2jX7*Ros*L1DMf=pPr_;fg9xe;oc6C58+?o zk&fc3Cxq*9_WUontCKzdJ08H*x^CgV&XNx@&%E!-y27|RUT-MxB6;N>D(@=JwrYcM zPfu|*?hIV(MNf7ac$M-#;$ik-hwASu9>7oGdVliF{{ikDAg;!BHumYhH)KN@AK~}|4i}*`6A6^ zUD{B)*T4;29p5&%CtmU-Q=i9xgpD z#?A2_*VhPfbzPLejZyabRK~rd#r=%i1P|eE`a9s(81m1_C-hZ4rNf zH(v6}zgKxYLVi1LPLRCLe2(JoN%o#gxPhztVFvE{O7iM_%h_D^&G)sq+Rrk$K2_Yu zd@AE1+`_$hV46MO8n*20MyMKfm4j+tr=G*gAaMR&SaNh!Z z{zp9Q@ME}tp*?>I*A|KE%>MzdJN$)~vJWO6A^$2K`qti42X`$Nw>T~>@bFUme7fR( zL)_&2{~Y%$7gyKmSGaG5xQqFGkL$R)j!fMAPV(x$@dxf-B_5#XKRkk~>*(cHvJal` zC9ktCFCP3s+)Gb8+`|2MAKbe}^6GqxS9x6Jr>Oi|$(xM30M|A!ANtqgI3Y55YZn z^nYeOCgK6yVEzkn_hso(uL~RS$Q5xfJtpqCYWEYk-{DvA5bmKzYb*N}#>04N+`MLA zR~{&QTrC2rtf;|8v?&&yT*w&Vjj{>+7NoAD zakwk<7x+XUKJs%_Pfl@f)<-pMJ#OFud_V5aC3yo+$4xwpXa7LfYvh)E1TTdL^N2?; zwX8=~<$1+*@~!X)uJS#U=aamT{21JuUtArpxp>Io>u~oAk`Kz0c1Yz53#j+Q>9|!? zJixgB;l5(xF4mR%L)i!YC2^g63Eafh*P9iUzf4}9G%xOU1N3)L{)%{*`#>LDD=)70 zXC&^!UF5&Q^$L;?G0#P~t0K<0A>4djJV4JcxVMtHIu9+?A0uwj|2OWbEFQ$~s($5+ zo9!dnPhaLQn2J8aS${@<8xZdC*vGA;@>T8L1ou}HSLc;ad3A9Y{XOsiuI{U!s{UG% z_seCejl<2ljLZJa!^8E(4f@xp{s!V+*1JvhG!zfxDY)Sk_Z5|*Fdq3x+)w^Cu6H2M zJfCYX`x(mo1zgdG%9p_1UBuP-?7=-<#l5Vn8SdBVk?Ck%@G!2}2J= z>7jocvO z?7_8BcK-_x;X!(y;NH>paZ7ZR{Rxg050kHh`vZ25!+l?hTjYo1?s4|~B3v6Uu9N=} z*Ksd?3^$asKbP_FMCtL7&k-l{_e>HG;IHE$T*uquuFPLd7k!vne`?wg+``p;euDC^ z?fGx;;8gp3zQe<~PX8v{J5BO_{16_(eez-L9Ink0aI+7$arYc?5B?1I%@bGmpBFx6 zf98v;eR~BDIJ_oq;Re^mySRU$^r-oF#>2RmbtT~LMUq!O3D+I|Ep9k`v+8&FF4h07 zz5k->cX+N&vJZyCi{fG2;(ga^c*v0c5c^OY*O!ay?0+lV{7zi$&u6%2rFfYAnU1?w ziJN)k0|stw5RZ^gQvD(EAifj#C5ead-*7EiJdFQ?hjI0K@feR}{sPA6L-iN#Ec+JN zBpzUY%H!Hk;%@e*KJNZmoR@j6CGPu0JWS8WxM!ERku|!e4ZG>J=9TpEV&oip$h`^R6zk4-re;Pk(7#KaSH=3%5>)|NpPQxa*|2 zNxq}XpR)IVihECst9|$q_oa%5>6wdr&WZ<^=MQ)YSNpJC_5UGxHJ>B6_NRD+p7VGF zck}+_7Vf$rd5e6ZuCi}oTw|WKmH#7oE;G%C2d;{%eeRD(@F4wDRQ?+Clqb!={kH|w z*HcNjd6zsr2k=nlFAj}9%&b47zyDeFWQYgwhj;{6>&@Ry)@$CEyg~j|T>np8&A&b# z!QJeSj=LV(=aYb2xayyZ`yWYO?c01jjC<%`t@@ux-iL3)^{4c3f3t8)%bB$zo#Xx| z?#UspdLH9}oZ=z&p@c5`w!xQtN!#l_X@*BsSTihg=Rc(|;%I$pv|E_D~U&hwd%MpMqJ0+s2<#vT|UqaH>=q5LvVMjxZ39lxW^+Nrhgvpsw%GDNBvLb ztBafDf59WT4?l@}Ye?RgT|RIN57rV7kqAJ-!JZxxb{Dl z#|?ZZ?*3Hr8prWBPZjqt?qb!0hvmcCCfqX%p#QM) zIpS*EFz%lxuCBXhcpy<+&8JL1*&o+@afA8Pz(aT_hkW22Twfyj2>FhhM2_s89a zxLchkxObU&fczZXbol>Nez`sWi^}6+`crV@JIR~$U&Zy6;_Cb?++X&=w_4mw{yjX1 z`|*Le_Pyjocn}Zas%IA-!Gq+l>Q_pcK-=hFU`OmVe8qj3K&arORiA+GHc53_GccoA24lSLbaKZsGyPJ&b#g zlc(o09y%dz;MoUpz5Fh&=2KSrNqhcXJaS6hWZXDBbXr`^a}@4Q6<70Ih#R=Nj()~H zXYBo_@d&Q+ck#ekd%pN!S(o>mecXDuiL3ed!~=iW^Izjynz(vBU5SUzi~BgA532kH zaX0=q?!F}MVgGXsVgE0StNkg9TX=+hZit)dl2`Nj0QX-L_dYM5&>Iik5?9A}g7S#n z7b?F^KjS9h`oB2yKZv{TimUmb$Ah?s`^LYxnIU;EJ^7+1Oy=Kb$odC3qGNJeYh`fj zslC58?t3O~($gMyWy_T{bLFE|Pj+!5>!X@B8}~ma9>TxF-Ot;7v+BXajGKaoa@xne zi2HMktNZN}+?QWGbLp9n5}$HDydbXb1NCsDfViLhhq%i{UTU?#F|STTSI( zlYEf*H^+k&#Wn65{guBdZqhRa_f?_?{|*o1YX7(6M&>_E6Md+C2&0^~QbG#9jDETzB{a+>d+7ug62UIxdHlSGV{7g`0SQ zo(w$t&qim7+J~Z_vo72qUmXwDl)Ty>AFkCB50D>(2XGVr3isBw=fA^ET&?R@y;*TJI3tY9VfN ze;9`cTZ^lCF2l7p;$g=9RrTW<_p#H;KV)3ya|^fHi>u?Cb2!JPgSf@MmBvGv|8Q0G zVP^fQX*F?wC-Qg)+}l|^$hc#1tBbhW=M{LMt9Y26-MHRO+`up3>Kl+=JkJQ3zn5=J zs;@h$;zkeYQTzD;?&>KXpl2i=#4V1?EL`tv@7aJ`xK7Uz+|y6;CVm}{;Of6OWg98; zcMXz!kbE)Rz}0ybgPVgTudc7A%7=)1>FI-Oe*1jJs61|Qyk_CS&m^zj@BL5Zij&7hjBHZe^vfl=EFSm zjgj?67K?l7FN=GYh2p*2wXGlJ+pByZjle+u4VRo3hs0G zKX?##G5<%nv0Qor^t;E(KDbwihw*oD?K^QlJ^=UQYP~b@fWz10K|DZD3hr8IU)K%X zheyc25dFlg-v_?RKL1$U#J%L(;M!`*hwy%Q2>0S+@QB0b^219(MQ=-1UQf+@EnT?#`N(ru~lV z4!?y59G-Watk-b(Yq;rfFCKPyCtO=2^HlRmz}>i!O(yz{>R)TmuT}jH->>@DNnZ8* zjT`IjJx^4>!;6oX^@bf@9oIJ4ds^dehxf<54xfPQ4qu7~9KIDd9DWivaUaJwg1bWY zdFGoS>+<00{H%cMj(lT0;PB44;qYO&>F`;2*x~DNEy+I51GwAa7jUn`pW?d1OH7pY z1{_`kHyqvuHyu6z594Z|C*q!D`}_^uhX*(=+i(k4J*RN@M(I(08}~ar|0G$L>F|oU zYm>dF39jRQ=FiJ1r=Q`bln?K|9Sh#zuxCg(D`*0Utbh4~V zcX$Kb@9;i&0CzK=k+`ufS5~unpE(V8|AI5_VwK0e_%1x`$X~?uozkQ7PgRe@i%pSr zg>jw!w{Wj1J?gl(z=OC&{$pJK)jsY3+`!d(N8s)~k`K`HwaViLz6AH~mAvvKJdB6Q z@50S}l2^y^9B$$2Jh_g04oF_DH~&{$rw%WRTX=|ZJt}`tdc631xash|xOT`s?r7ZS z@aeeW@TGVJ_cQJWTu+gH<-2gp;c2+{u;g`mZs7*5_9xHRvOf{rO};qpIwCy*yfPld zRZkNW=cx3A=ozK*xEBxN?qiZyo{a0b8uu_B!u?#Q=T*;f>G9M55DzLR|MFDX z2kke>>*VXKlzJjOj| zB(J{DP-dE}D|k*^?OO~U#skmE06ttlFL`x;)^X3@;$G(S3GR3JWIW{XMR>&F8&v-V zd;byD@9=Y~-{H4aKkj0GwCNn*i>wPTfLoWuJ*=yo%3l@_k#B&9(#6&Nur2PnCa(5p zAntegB-Mkv8FvwGIXoGU;0AdM4_>#={|0X20rC%V?+yDri_Vb!3E&p_H*w!h$t$mm zyKjlR$v4Bjco6S_TeyKw#{CiL3E@js|7~%D{ojh4|Ki!@6At70J#imB7x0k7AL3eu zJzr?1?1RtYHE{zEFrSvV`#*cnK-}-}3Al;t%<~7;^FVr(AHo9;zk-KxwcfnZ4bS|# z*z?dnpGtTDHyHOl-2F)MUc4`^JNz@;z;*5$<8keo^jP%F#Vy>MQ$Da7cje5T1t$5Q zRUTLO$&x5>39GS;SX?69?ARgJl}Ah<8J0t4mS!)UY&0>aBm^;=+EPr)R$E!9z@I9quhHV36OT`f)G*C+;pIc^CdK z9(Y4Mg6Eti`{sYso-c_9a5wo_+;HR@;~`up-v)P8l77`Q1oz+}@>B3IuJ-dgm5-60 z0Qqfr2v_SpgPXYOiQulv(xW`jY}p4LH@N@2ifbOphZ(mP9(H&O+^lNPcg2lrb{~od zs@r`EuGg^pV%%HP?i+D;ExRAYwc6ql=6@cK;OhLpr~EC+E6+bi_9s$D+|Bh;4tLeF zdtKa9-|p>jUjw@j!2J#FJ`N8yvil-DucOPed}^}Z|a z#b3q)P3>L-H=EhL4X!n}`vBG7!tN7Qe@nYBQ~j;P)p@%ScfD`-y||9MIqoM_zr!!$ zhQlA@CLX4z$UNB}qqU5y`YYfj?jm0Yw;cXH9(H(7JmT01IoGXe0cB!*2Vp~J8pa=uHMg& z!F?UX{p4rhW}LXXuD{2%PV{qJe#Tw6I?sQ>4M*O>LymkpZsF>a)UMZP1h4Uln_55!## zABDReo``#JHJ^33&*6J;zoRFN2ORzw4?4W`686F2HSmzbo8zX#yW$qE=06mV;A;OT z;_grE`!*lByFU|mkw1)ka5sJx_u+m#`!ZRViF@&qxHi;2 zZXG;``^a~}!?@}hfxF|SNBJCF$8~!Chnu+CpMALRbLmm@zpC;MFSK0NxQTLt&y zs=pns4YRM;j|cHUHks(xxNEpQzZN%e7wbBThj0^rfcr<-*HvbP%s-4< z*2VeX2X{}k=SSiO?xSZa9#KxuQrtV8e)7NIKHR|5R1a?AH}TL6=~2h)86KD^uD-8Z zWVP&r>l<;^{~8{`)qiKHi+kqS^B?0D?qxoGRR3JbtMA*4$G!8!eQF=@V4}GCx^J86 zpD%8bKc(^u#RH5R!Ci~Q!+75BWxWyHix3-vak9mb{z!bi;#7?4E#! zmWr$OPR6xm_WUW_y<9xVxE21#d5f#RFZwwiTqSvf{4w0KT3q8icmE(gp8tuvbI2zo z;J)?tp3`^)SLaWKHPRCZN#0@~hU30uM-Lvsy=p#dna_`s_b~q&xQ@H=UU&dE@KLyX zvwhreaT8bloA3y(`k!AX^KosFo)GxL%Zxf%W-3mxVjG{tNwlTa9$n6JqN{&=VbxsaO(*D zOFYOt^C!tZ_)gf}jfZ~|cRwfn9$Y&uZZd8o+&m}FuV2?%7U?;^he_uy(>zp9>#l2?8T_gxlOKR%j{dv7uy*7X1n{VVQeJ_V9x-y(O! zefaCR_nx?m{jZ1n?u)DM$G(pT9*9Q|Q`Vyo?s+J#_F*g@d?X$wzYO<37FX-tf@@Fh zenj;=6IVYE_!n+HpC_wX{ha%4Je*5h%|GWxuE)IM>gRS#;l2Xm>i4z2ft!WJ4fdxN zt{0_;{d^lYiivAEWx+n>rRb-pFYYQU?!(8Z{#V3Jd=Bm|FCO5yuT}l8i(BM>!TpuQ z{rCwyT$wz_u&&*>`L?*9*Wc5)r#a4gFXINzUmw)&<9b{2 z+<$WYDEnr8C~ng83LgB(p09;#apGZ)R~#PhB<{w?seD&)o&Fzi9arc1@3_%J@@n6n zDDO!R`|sW?^Vj-`d+Be2d+{JX2)A&PeI9`a2S|^)-Y4Vkf#NRm2JRUouCd;Y%7@_W zv#IES$y#r3h`5$4|t_kAg@<&uHB zDW4*4FrUxxh{MO@!LKB*j{71!G*#TBXAAD1Cazwm4&!0mOFoRdr%PVl&+p@w!(Bhg zJ_Ke+K1|Q+xIUBla9o<;?%DSKPPm1;=oyNKadqDquX^T6k2>EH@epp(^Aql$XP@U@ z+?U8a$^VVJ=G$HSnd{f#FX6!jlJ{`_cyM!(xH`{U;l9P<5w5RpxOcgDfb(a(>RBPK z*0lr=d?)TE{}XPkq=)nE58S;@+{bx)3->4E>_hIYvR)GpkS~RMf0DeKPZeDISzKMe zEpXRX^31abZfz3}GwwJ%v|U`S>pPX-A+C=57F_>@etJ&e?w#T;j>}ct^Q(9W&$dn0 z8{RGM%P&PmaF0cv`Bzl=8{+Ex+@bO}?S2CH-4b^*pLEDpC?OS!+#C7J`0(ak$yhrT=?z<~);Q^J;5Lf#%Tlsx^&nngP zpSaq$pYZSlafA6-c;KOU7*E6XN8;+ZU%@?(#l4(w+Ap#{{-@$PUIMqYyjjhB*{M~= zgL%Z&xXn~gUU7r@bjDrz#DjP|Zr~yOYuuM#@-E!KbzH}{;U*rzf5$^FNRNeI#RCPz zRgbol`wXtm!tKtadjW-f}1ajo6Kjp>M0_w);kvu;sK7!8rA=j zNk~cJYEWjgp0N;rF%h>ymsyrSce+>_pmAvvizsh352Kha>UXC8lhqJi#nz)?e7P`Ee+_*6S3^5r0bd2T>(xI5 zU%yfGmk`c@zeW1IPvFcY-%w9`g5EJHI1*1M&I@`07o<*T6pwzVr&= z>)>Cu_J23D^L_B?SB8Ak-=RLfO1QQEVDQ|lL;c5r54u(u+9Xy9}ehNH#gXk9!-~SC>03Qc`HFyKO0sdC-b?`3ud%&mPxY>{m@DG9) ze_wbJ{C4nVa2uX`eNfVK4cz+sNbvDL5IeSg7y%!6lkjoaKLB0?xBgxSz6@SKd8>l2 zy;(Ku> z@aabi&mlaAt^Uslx9#CG!B=y_Z8>R!=N>J50CrvqUU-b~2>kVyKUVk>!gGtYulPTL z7au43YsjxpgXgw|cD@0=0zMA=n?Hg?uiJc(3=fGDl7ruTUad6&8Bz=~jE_@Ys9sxdmt?=cGL@)*(RfJDN|0=5wZtKe|cp(=3 z4coqf=c>Z(xZ>Bq#}`8TuLWPW9CqFY9yLUN74dx^`0Dk-2N2(nfv-JZcoE^h4LsKc zzn2Iupos7~K;s3%yRiR6@QoXVH^2{oPrp#OEkD!N&aa31F92VEQOI8pUVMr00>blt z@a}I5?;`yF0v^3w_%iq%;LG4v|DyjZ@yh*<=&wTmQQ+&~R)0JA^i86_1pO<)H^8la z1-$VJ(Jw;(IpC|{R{uA_$A4G!r=kB=@MZ8K()kwfjaQ0(g!=Mf%U>Oa^9$hJ*9aeg z{qz1o(qRdF75t&##n*~{1AG*G6?_`?;wX6TX3<}V{yJ3&Zma@MZ8dgr^SPc)RG^ z^m!flI`}g5KL*}i3GHwBD9YhGgik~NvEW^Bn_v6EmlSV-FI$fIz7l-pov;u7Zt#IW z7M=tDGW`JaaNp9bE&Mff=UJp;aatMFB%!*5vq zKNG$T{#NkZyM^0u{tfsBcYGw|2Km%twhz6@Rj9|Ye3?}G0JZ~P6y z34SejSMihJOW;e$m*;@z{#NYRdCg0~$3G~11@_+vz5#CAr4`HnUi6n?|GnT#9}!+e zdVU0a{U3x+!~X5y$zR}}v)c^vEKP4Oe(>)^}KFN1eKE_PPI+u-A$5S{~nHTX36H26EfSHYLS{|>zPNrWH#6X46> zOQ;v01uxtd#_N0F2Dlw3JOg}v9q~oJp9GISD|`+8S{Hon z^TKVuzZ`u03&NLR=Pg$MOVGbi65=nd{)TYd?)?+^^w))NAl*I>Ui^meY4C4@uYlWg zXq!GM>681m=&z#uJOq6GPT|Y2vkkoa9q5BU8GQV^!iyOH906ZCZ>!O?cCG_2oG;vl ze*rvqf$+%IYs>E;d>#JY2p(N1d zBUXR2=-cxTp8;RKZ)oQ~zy}6|cVYj+f06WG0^dM<9}3>Rzv$b1|5@v`bOqlB-5zYKi!aUuUh@a~Xsn{FQl-%$MP;L}eG z^&j{tNryGXcY=>UN%RY-7f%Im3?n=bk$9Z|FI+C%re_U2cUZVh&tJ0kj|jKr?YAvI zDtra${3h@X9O$t8J>bj7M89xf3D5rpUn_-n{vEtq7QO`g-v%Fu!BI}`^Jz(+W$t77<|1Z+{Wuu)=oos7y3T}A7~1<>9*}(C7c5- z;p5Oh0$ywjFMzkeyB*=SKEB%OpAw#f{@cJCr-e@=eLeub20j3O8~8f-D)_g-m(Pfu z74ZAsCgCrh6>h^n2)=ZK@KuCom(_nxsK4LpKUcV&FJA+`(iLvkAFAN%{|ok!zo)>L ze@*xr>hG_CH(o4!3E_V=c=QtCHXYspJ^*gVMSl%mSQ7mR@%ohIzY+2~E&om7)6l( zm(CLhp9bG}o$xMr^luWL#_tJVgZ*vb<8J^*yFCs*@FwB5{V#(T-wyo;ilG;P=l)7~ z1OC1feChqdqlbz9rz~F=zKZZ%^zW!gpAl~3H3q)^Z^CUkEP+R#3;9dIb6*f{)ARSh z*TARY??=E3w~Kxe{QKZt@CfmG^k*fU-7kv%0Q3)mFM->1u7FQ}DGbj`zz4o8dwU z`aBtY=|{phz)RrW^Y3j8*z)si@a205Uqk->7I@>H!q>sy241{Kcmv^C17F=D+{X7S z;2ZZ9J`Fotz9``@-VgSXZUykd{e`c={v>#GvG5hN=PmG+hYPp)_!{usBZLpY-#@eV zA1ORS`h48-oN&9I@LllYV?+B-_>zQw6}$lZ`@lCIC;CP3Iq>l(2)E_@SHagTM||H1 zKK;bd-!-cbZtZ-<>OV>JSCO9g`?7>H_p`!n`VWD3^TKlo=U(vTONHBUdkMTSBHWgT zF8IKh@KxA(E%@4Y;VX#Od%(Mw3Ag9)KWX{6@MVPmysseqyM^0uJ`{X>kMIHL|2%jR z+}gPcd;`1-{RVhr0^vdUUu^ka;kI7<3HbPa;nw~q!PmiUxxEv7<*A~-3V$E@Rf$*Q za@c{tKMy`|Sa<>D{Au9hlfrGeYJo3J3AgG0Qt;wc!fiQ!o8{LCUxL3M248<#$nOAe zTpRNHeNDn2T^I5(@TF%8UxEG0!N;eek93#@UjttQ?|?6tM85$$F9IJZ!#?!i0KN)t z>&30$#Y$-BAFO^14m-Dl7iNV|!`~l(FU^Jg0e46`Y|Mvz2)y{LkpCk1%E^!)2On4r z`2u*O7V=*KU#o}w72t*IL;iN~rDn+g8hoQA+}5Mpz@xVCF4E!K;N6b!BGTETX+HCd5hJ5PN@GutN&c#McDZg_!{^U z_`ugC{L{}9{pcbQJkj!B6W&1h4}h=TD17MwqCai*Uj=>G|7EKW-UWX%|^;=979-wiuxpTGG% z;n80Rx9!GTegOVn;db6};zz;@?-SmIo%^46p4m@a`D@`eoqrL0{BMNkkj^K;r#}LH zw0nOKzVR_|q|fmAV!!)o;kLc~UGU;(gxmWvn=TOjwa-Hz=}-q>zFqh#@^=k<`pd%C zp}*@MVrTrT!fpDz((*e(J3j=Ez9GD5%hiQqr}$mrD<}_Ff=AyIz7GCu@OAJ8`0rXf z-xvJ>@OOhxgWL4K4SYlCpMOsYPxJ$^W9{d_8;b7+Uk6`?zq8=oABORI33%a0!ma*0 zz}FQ2C-6peA7k0-e-C`%ypTWgUK0Kl@Kxg~qR$-)Z=5gsHXRnhqYFa*r{GJ9Z@Eb9 z^pAiyz>6qX*MYCzQ}nygKLtL1FX6U-e*t*3N%%PI zyvFKp7QT$~yaK+yRd^2iAGUVxBYXh$>l@$$4-&qC@Z5J3%E`sTZM}O8_}W9jq5l-{ z<%bGi0lyNw_%Pu`@HwjwZpVjR%O5TJHvBIKUww@5CB*CX*8by!kHh{g;7j1v-@gZ6 z2VXD2kCq{_<8~UqCI>*cy3Ji8p8Qz@Qv*uU$gdi3b*~; z53K$!;a%8y+!mDcCx>*`FYWAfWH`g9ef=8Rp7Z_5dCHF zw}Y>OuYmuhwf~EvKY;Lm0=zp84*jo#FM-?qy=W`y;~vr9KsrAJd|cexnNiBKVTxF9hFEcHU_1tMI(X z@XgWqZ%a4_5zdbrzA5T%7TyK_8hErN+OUioX@S zsQ7!prxpJg__9iee+9o;@!P>y6#s_dTcew=d`!gu&}>BK-%rZnElU4^;Nz;EKHTul z(d|0Fz*klN{sQ=#;>Qf%6b)P`>2KSOis4(Mr6~!g zamBv_UR3-c58(8n_EzyB@P^{U;9bS{8BXmL(#MwbtDwKWB=NH4Dh7{!Bjh)L=M;Y_ z_^R@E8GKFgcY=>AJMTAqQ#Aez@wfZL$o%^ZctO>R{{$~8zUhI|-mY#HJIi7wdW7MW zp32`#!Mlp@1z%SDD)3dsPlB&2{#?VUUaNBQQp?dVT!e7G9{du;{}eo@_=gPN65Xll z(QSrP`TtEx2b;fNhkovB!VB;>dXUt|X~iE19(_UdZ8#qfev#t4z`Lsb*>Cu!D5uil z8pAh78>;=B1;11A4tP$*>qgjLzMq8CHt4Uk{Qe<-E9{IbJAYyLmS{l5>!Z+*&~Dpw z_&4y26#qK-fa1}`Qm-#j{J!8h#UBAasQ8l%-x6J-!ugBPFDU(E;JXyBfR8JFgW;Q^ zMmFBCEm$-i5n-%$1R1BP#ncByv$ZLuLQV;45le z@dNO;DE&uWBI#LF;dzSTTcfus{Ymh*Dc&%AOVoYbqfGc3KV$wAb)o-urT=QfsU3S` z&L}R4dh{pY-8TsDg0F#(t9<`Fcv1218BXQ=fntZ2mCV2UJ%r=CH9Dx$`4Qkn#q)-5 zj;>MZGY&rfPhx)n72_)KX%(Jlfj1O?9(Y&r-vnP${P)3^6~EPRDu=4w_z?J@;R$XH$q+QS3x;owx~koN9_(DB z^5tdLzT$5IpI7{^!Ix1EZ9D(Z;2SFZUj}a|JNI~)q(gT@@_kui5k1)Ot*()nyZut|ajduG;P0!!yMOs8LoRx$c<>g(X`MvX_rEfHYZP52 z;TeRTPZ&<~2#ilG|1x-2@gIV(D*nJnN;zCn<>86owGsjtBh=r_ZM7f2ndZ zW;m^zyndHk@U!jl7ESK--d_~vL;mGgtp ze<$>9eS9YP^t_})1dp5Gf28z(753Ma{a1lUFO!6{<#PpgmR0-kw}x+ucB%aO6zr_3 zbh`t5P4V*|#p$y-T37sH@M$%UdV=9wqtB{z+XH^P;#1&vs`Rgb|FKG+Q{d60q^Iro zUtsv=XkLZqwT4qWqtfA4YiAnya=ui64})K%?B5PPp!j#eFH!uykCt@XQ0ewFhEsd{ z9pvM^#NQ#yzaiX?AGRC5HOeXb`wXY@d?DGTn@H2{E3cil@nH!NlKX3TvD5v_n z!{Ezrll0s`yFF((we$B9ektty3V2uXR~x=1`hW`mn+@L@eP6}*&%q<~Q?~y8BkV+9 z5r1vJ{O{1ehtmHhcvq#vg-?+5%qctf2On4bvEb8+?=*aCbfdC=4E!P$o*MX{sq)_i zf4Abl3BIK4zY+W<#cwfuOBC&s`9k-(k}-b^{r{uve-1pVNIks>`TI@q?$d?e1NHZ! zL8-rguIxM%y!$lKkDxyczE!2e<%VyL&Zu^*2K@o0|9r!@L~E-2ybS!~ivI!ZJW$#B zbMR%AZvO-xpT)AODv<>3~UJ`V<8 zRs4yD(>zhN!+XJ}6~7jCKA`Nh4X1un?OVOba4K(VU*MJCtM>}y`}>B|_)YnH3wZQf zqHo*b4}#|uUk4vo{F~s@zbv$@i*I@r5m2S5iPWxOczENJqz3 zXu~&0xfe#ALPq2*r*?Z3|OtzcPhSR>4^7qTIAAL#e+x$AOfc#bb!G=?9M!H=D4|W(%>rpD5kAbf#em(fQ z;=c~Qq4>?<(Tl@yzRz$eRI@qY$iQal=w^0}<|5crDXli;h0Hx1tu<+e&V zZ$$pS9DMa6;d{aV5BU1U!Ur(E{VaHQi|}89{-#k5CzZni;oku-7*69Bl`s1Z-x@t! zjaTQuFH+_3e;d9f%6(Pr+jM@D<*Gh@5PVSaFM$^n-#o_QKR>$VOL9?Oe2JpRgMVD{ z-Qe9jM1K(Rodv&B>AxKOk}rq${{noM;@<$jM)AjPmvEj@ya;}i;$84t6#paekDvD- z6Y_E7?>}3v^uGgMxLv|;(?7pM!n5%y;kMm)CU{ZlzZCpVrT=d5hSI+SJovj1%Gg3^B{__*T#2EL)} z-2XE1ci@X*`acys`igK{Zl4ccRQCS_d|L7U0B!E-A7|6=Vc{YO4U!n30IGr$WfeSQ~wRq1~kd`>~APO3m&b9VG>-|HuD=*v~2bqu>R_&w@{@@V^PX z`yH|0MgD#Zd|cVt{)^&o^xaVZdEnzHCq>wKCwN!se;<5FrSmRoptybR-b>o6b+lKD z;6)XlH-bm^7yT|44%Wd}l>K|`M!KnT`xx+>RXhJw@HNF7;CCwi+t&Vuq>t?{ZUH~2 z_@}@divJM2tMcoSdnEkJith&Rs`ROYFDZT#_?k+e_gec({|@jK#V?+a@N6hMKMy{D z{?Ya$3*f6N{5M&y?7ts;P4Vx7uPeT7FT$hvB>1$dN6!Xd*Wm$=zAE{cLwSA|_(fkA zz6*Q}eBd*}Z9no^@SNgX_DMJkivKM5xZ+2xzACq;z>7-%<>1qbzYDyf_`h2FD!(q+ zFX7y!{M`oLRd%ihUsC+};LD1?9(+~h%lp7@{7*^GgGlEufag@c-1C5hb6oMqfln*G z8@#LdGY#JwO)toLrrl?+LI1`(B|Hs;=MTY`m7Tu_Use2ThHr^>sd4F@;NyyKKFIOf z5*<{05WJ}PcJONy9|xaS{Au9xiZ2+xHF~d_AKd``hSL8H@H2|P61=PUAAsMe_`ATD z6#qN$n-pI+d~;NINzUYmt#=n3;&j^@buquN{1Wh-nvYy+IIT}AI}_kV#h(T{k5zUS z4X1lLn;&Juv-(geD9<*W&hM#t<;$SItm5@1*dI{yqxTzrel+l}QV#7n{G;IOs=WOt zc=R>VmsEEm%O%QA0X(PpQOmy|c5HgigBKKkG5E6T*WLy`sO*0Td|cW2thKN7 ze*|7s`j5F>;S@hge%0~amB9#pH}<@;9bT4418Jf zkAd$}>F|APM}>3fu!Lt-*{OoBEB-pew?@m?O1rlOMp4snTJOEL_;@q;uYj+qb-Y)={xwK9xxE`je*}II zd=u<^2z>cM8BeYu9o7x!LpI_s4N=X%uR?!Z<;xGjqv*b(i2uFtsHDTP%CBgyo}a5n z%}%XdU5xYX_)I%0FE(cCm9r!wNx8JJa4c>|rMNX;YRyB?DxHc?w9dBL@nWl8DxW;j zI$dp-=c88Ko;xvDE=P0atDDt!yr8*CSn~Jq$gbqa$o3t{ zkL|;rli|XM=V+ub=D8XxT;@63HGG-xZpY{@&*A9E&K;i19ox5$?r>?)s?If<_1Po! z+JXAj%~GR5;h(ENnUiL=+GtUHn{6M&wTg2an*@w&<$9%Bo4fQ`t$Hm_={s|_9k=qs zkrK4eHsal_R@`jo3w>n$+>P{cH`+%w)Xi8^HNIDF0vsrJp0zWB}0MqKW z=DAWb;tG>PqiHmjptMa_+x9n0i}6&wenqJ{7e_M-b*`z^8{+7(v!f&V(e1l-jP9JN z$gdqE+jmuVj_jmgJI3;(@l2t-V|Hh$Fta_b>|!0FV`F18!=-qvvLhaeXSWwXcgC~) zFD}SGp*v@V8WH`EP|~u%{Ff+&gskqmY{xFPN56I@cIa0*k#Pt{DOfYJ+edbcjFn@j$-k1LzJXDpV}B%Nxzt zaowggd~!a%J|9H#IE{T47wa{)6lJR%i|2MX=UP3aho-3ZIg{l^Cx56`ZC6VR+;0V( zMrq}^)jHZ}SL-z|lh{qAUL{wd{`_ewH*74#b8-9dp}oiQRJaNmVPb342$2_w@Y>%Q4)k|lRazIvTsD4g0v6_UA2fd|*ITL>xo4K^He4@VCC{Z}! zTb`yJ(l%tN()MYt$DOt}gW`4o2l@!*7$cfn#y0(%XEo*;hO% zq1YjXEfvV}T(jP31pk6ghjmZqn zu6l)qibpFxr@JoXt^ASr^x>=q&j<&HNVbid7n+eTEKskp5KlH1vdWyVPObgb z)%N`5@!50$v-Kty$$Wq1MyEZwP;cJ_O{!$4r|NfE(Zs61-+SW)T6O5JQ!zUIe5I&U zl9)Um>0zr=;{_m2X71bj779Nh{j}L%YEcK(!#?s;>t{8n{p{07rN0L#0rgIsVrGkIN_HN>NJVxh$Wf;J|8w zS{GVESe$9K>(pfQGbYgq!%7!~Or#*`#6)<-}S?4ChcW8JnRrS2s&!Eh?|G z^(1H%KkDvU)Q8Xvjt7g`qKS@IYlHFQF`7fvE-y73*V3{&wUv!HFE+1BEZN>VK11D5 zy?!!(tmDl>v!wY-JR3Jp(^7Os)9IT@6o>o!m*t*WASX&?;A7i9HV9~_J*y#l39|>$RJVC0 z85~+{HA=N@dFlv{(>}=VW?U;x%y()hr|SDlorShDd`?YW45*24ju+{NmUn7_hWV*< zs3k9z&BWhkiX%#sr*2%djyGsYET)MT?Tb;d^~xGmVUEv%qlb52Q#^KbV$#$uYd0lz zK`&LF)oHaS%-k$-?8J+ulQGqmWcJHHTD0Oh>{KjC0Tl;!<#hN5Z9nkT>a5b^eZnRi ztu$%Q61dn~ZN}v!&*;Y~g~~j$3kMRN(8LoFIXm)o_OAeC6xUwSajQ4+MlAzC{s(pF-XM|-78lDsL2*=%&4rNsNr zw42F-a7H;W-C40(tHsT$k^s1Upa~urI`bh`>EwjG^_h0Uw4aL%&)G@Rt_Ai-lquSA zrnyWl$;=KFW(Ft9E-12iE8C{DC}-v&cEn(FE9M#Nq%1TW1?SpGc2_Di_HJb=G#02- z8#kDlTAMR8^RBeABn=uhw5b`ZmQR%yoKJ?9YG=z-f9s1pPzgn}*bq~LniL9SfqQwU zXU6lhwEk?vFuPE%dn3AfW!8zPzu=xI)yaX6j`Wi37)wb8hq#g-tWv<|Xa|vJD&=}J z3291xn)mu$Py)xaMBc2HTYEY*GifI=864uBmnl1&+?MBk7H5HFlu7P)O53kYtQ@qa z3|c|AW0JN~Z*wl}b5?zND5TWeLEUj);hPG7nGF_)*tir+hh{otXUg#j8f7KPWV+L2 z`#N-VDBRl)U3RDqkF^w)XPB;p#jD`Ew0m0wnJZ6KYe_d}p;?_c zQm2Kwq@xXFlO#D(r(FSBc5?wvY4niGsQ{ZMjb?n1i_}mS3mL?d^f1ZBFXBs>? zag5I7u&303hPsNY?nOzHzDiavOHGsU)Kv%hPvb;h+@SFso%^w=1!z_%EIU2(blM7b zDyL@-*H0xG-Hc~>2*E?eMW1uCQIX_wPTgpig*N$U7t{LGLr!~dvI2B2MQ)Ouj_-%8 z+*)q}31`Fpdh>M2>j-8#3ny{Ji#8w3i7#h1LpIqgAFVAU#oR@MYa(xL?V;^oXTV9h zUiO#BDqg+G9edin>7A^3Sp>B)bbe6o&`j3kf7sSK4PMjcnkx$f*1$}ug8Xs*dJ(5k z`?CyAPmai*B-xxRD*AI%b=W#wY9$RFd39idhLK5)H04uT6zAS!s?<{q(D+Csos&dh z9EZ(8B5cyox74D>FKPA@A+;JbT8^n;OrG{T4c4IA*(@z=%NyS(skaS$wo+P&;HI&s zJXn>ZzOC7w;6lDgWAvn~&~zn((%8{a=Qky18kX54?eCaf=4NX*nWIS8I*r7O-YP1+ z&!tG`0Bz}+tvB~kfM6= zh!hTcLr|-Kbka9*yw+*O6~$7-_Jg4w^$F-7LvH5#AwstsLJFM+xaGhQ(*=;GZnRh* z7aTCDM*~dBU5CpwifU86uO&6hDXHlnao*c9`9U3l*Gf@V?zfhc!ZI1R9d-Ws(3F{E z@RAZGWn^$@wtB`?P~PkEx>#Res#%?zi<@~GSNb^YPv^?!w@H>U&v8Qiz$7#Y$z1s` zH3@rZlfrXuQOa&0813c4_cL)Jm9}VXZdXpH;^rb1hhWu6Lgq>GsP|$bSq98dq}EY~ zE-*xL9Y`(rlW5NzN5dqaP6W}{wTNWw@5b&pK$ZXKR<)&_^>%Cy&QcK^*7jaRN)+)Eson4%$Li;fP_$sOC^ zW~x)=uD0gyx_-y3^7XeVI#?v-tIw>BD zWT#1PoVo=)^!D%sEv3x;(E%!>Wv_#`hIp8elm}`xXabaOY3Ir^DWNfoH<1fys*rjv zRA>WtNo47Y1NE%rg}C%XRitzf>LNE+-p{@Co;fv9;<+7_S1%cu%<{qQ)221`EbI+d zTxp)hzmGTtb|@PvHussRDHfv%DkLj)pU~xiaTW zdM1aaj3%`v50b<&Wt+~sG^yio6;}0YRHe0ssnQc?sZDS}%(T>uPgUvcl1+e29Ud&6 z+frOxpc$rW=rZk5`%yX8shO_yz{Fi~Ve0Y~bcU#ZKsjl}+@xP^GXs&;DCtDxiPV95 zX~8Tm`O7$&7HLjeZ=N+RD^H%-VgKOLLLYbZ{gu?figy?e96d1M90@qQ@9-6e4j-Cw zI5UK_3V5hOYhW&!`l~l7LZ{*%$A#&a&V(+KqU;ybiEz7sT2{W7Ql@KCwJ=Gj{t2T7 zj{7QA^tG6`BD`2>aWJ;0gH_6SxaO9YQ*VKaxW7c}F3I{zT9s;)3&+fy^~j;Yp$4sZ znYvE>FM`ous#;mIUOq`KsoO656(hs&QE!kZ^LD*3*C=t*zn50yWNDcVb5=~yDpI%x znncyi?0e=2q``DF<(8WQFV;38;MRnxw>TK8r%dzu!vXJ{Yf6C%>%L&KOf<}@n4?7Fpl&k&8q3LC{b%D#x&vLgIB#3Xk(|p0##@B})^6&dZdSa4#|1(=GoTE8&A%>a(hHMN^(cbBj4 z(Eg@#VdVa7gF@A!u&{5fPLsWEBm*JJ3$}0U(E)z*!J<&245pGp`R+w4 z6znPSz0xFbR!TW?AnxI^Qf<+qb&^%wd5C8-CAya3wJyBf7}OaHbmK(p34tDkdbZ=O zh*5CJX@Gc(yiWJtY}oBm8D%F2W~MWnbR{N_>x=Q#y{QV3Y{_wfa~|-IqqE#sJLC$H z>Sj>1$OvtBCbht+Ltq+*v@zX|z?#7-n9iaR9;PL=U=#tD)O2wPPtqfFc7)CkwSu+v zP=1&lOV#QTSXM}jI8m}Cs+IR@Vy`IJTAB_$q=?VCNcx8Bq%`f|v0tz^z}+OEIZZ@&F1+@GTo`(| zboO|-ofr&YRBiD_AgW+^5?M+!HO4M*`sLZvObyjNnW-kUWl7g{Z6*XE;{gV(fYO%H z?r^Wev%xyOU8gFj=TcW}PsHi(jM539xp=Ze=c?#-e~(zw%JHFaxze*n!UO(kTN$eG z01ZQ>yP}X`-t67z4LnIeUzE(51DRe&_X2EEW~y$CxMUE=T>PjM+wSoce{SvzT!790Ldh+n!e zf|wWBoaNbunWpfeKU(bJ>xpz{)Zd||W}HLFaWKcf%mRjUuBFnOr<$bD1l?Y2^T0A# zEz*{JB^70@N^5~+ZNWSA&XG0EwpmRKJ)#lLF>?&)K%Fj%wduAG;&$~O7ptVC9#xQEMsDQH>JQU^mAtiB1 z&7NqJGD{76&7MDWgwmPFSSUX|v!^p_uhQ5&GB9j75|k|9QWHvxkbCJK949k91JIf` z_W`UKUrx=tsS|Ym&jqeVV-+$$lX5!9RMx!_Nzmm4T_+szGFNgC0?@QGYJm(QoW<3C z+atR6zu{EQH|tzVto+{4iJ%`;2e3NdOSK6DW)AaexQAkvwExg_O0zVNIuou+8N};Y z-XS!Psd~>N(&F(6z6I%w^6GPoMvX}&bws(QLQ5~9Bm)-y-8qvSHzn(K>=v9#tB1!4 zIrFHgsnnC16K(o=o1Ro!=%~00p!{qF?KXKmnRULL2JMG^hg0+H8^sx|ZBqOwH;Qpn zpzZ`coKVMe)!C%*7*wgAs(PCr=DrQJPpAC3mw{Z$!fuhqZhQH9 zj*FYoYsS=5Cl!XL{_c=)Qv9+QJ;T5`a-_OojvDKe&4WWHOo(}y<)24OI8T7W5QQ@H zCXfqlhD_C&M1zaCx%^E>Nh`*SBr4nh(Q6`JI<)6$fUj)L(t2#trP zF3bs1j*Y-1PpE5<(lyCv1l}rOrQVY$=d|(}deoY)cNXaCWow?QbttN~cF)jCS}`ey zl*#6-{VC+Rc7le9JZj)h zm3pq$yfN1dCfQDfh6yA#&9RsDPF#tz#H|i3SJWy8T*S#2+Otl6ms)4ZE)C6T$t?*l z7r*>==ZI33)h0``azfGxxCk{Xv?N^QisZ1VY%~B$IwwQasp7ftD7#TPnR3L zw%j`S`WEc(}a_=hStCLfYRE9U1;=L;QeDbrIx^YMbe3VeXhFwcAYOLOx3 z(CnU0E2--kBu;iJ-eE@!2}4N7F6mICxBhBDQe22o0k%hOUHDj$+A7l-&lP%LRoMeK z)Uo?pr}FS2tqe5j_C?q=Q26Hjp)pSVB<0+KWB!I0jX@5`_0)azut}0QCILCIU6?6F z=^SJ^7z-^Pqhlg;RQ=Fir$!q5AWz_wYAE#}HF{%VzTT#JK~lnv#H?2^o`i}s7LHqa zWP1a>k;F$87Lw^rxzw7ag}oC8X#a~3H?%uRM?o^WRgx{3OX~ue3>kHyAS1pYX}d^p zV5-hftk9`GY62#8QzHs!TX_G??q36FBm)HD6z#u+ywd6fCi(k zCElMTDpi4cIT|-Qe$wRlNPK!9!(?P!Y1SKw3ODPYb-Y79eEvbYXzvOjLvPe( zI}^$lX9z5SvmD zuMMYFD;Gralxq=91cRO|#H!)T5GFldhA;`6?-#$^OFe=MNg$gmpXL{;s6z8SKHAJq z!f4hfREVI8LmvTT)f zZM{{_VXIN4%90h1q_`~7ZF#4`Ka@#oqVy^U|IXG*(t?*tchjafwHn^rk8`uMh3$Ns zo23Rb{AJ80X>Bx=S8RhHmbGO?D(cZm)nL-_NhEZU%&cZO2PbIVf|}FhH?`2FUzwm0 zP(rUDhuIRZQ#`?1lZOt_?fU(DJ2d2;qvzP@Sv>Cn1*2kiBX-5W1Ls7^f+Kaacj2N*lQ=G%($6?*x`PU>J*9~%2C6lowGZkAoGUb?)b(rRAD%G{ zKd;dz4rw7Jd@|v(;&^pj!u^a2yQr=7f6%fR&S zE(VqQA(}ZPC5#Fm6>PI~PGewmaZmPToQn*NsngiJNk;RYRyc9?1mQBVCy+&7GbqdQ zmZutyH~HM2Klx!P4@=ZKEX~E+)aRBO%$@6i@(jrv-7jXCrhTlVwSBt}>^^kF+2Bj> zbRwOvPNo_GyeD+1Mmq`gKlGXdEsq87mq3Fa@uVxy&ZbE-TIb_^RtJL>>bbi5Nsl44 zPIPM3WF>*`)ufs_Q+u6B8ZfouW76K4%e_|-a8epD($~S$W%d;phYc6~N?eUNZ-+7nOLsIRCp%G3PZKaVW-?Z44*Vp_KNrm3s39kSq zvSyu+5?>K}tJ=O%5g)70%_l7yjmNJ#yxTl5OpS#Z=vl*}g!Bt)n#FE+d{RInv# zy21xjeCRE+%HuhcX2E7M*nLS!l7SA{;t?p7R2O=)u1wsY@K&lZuNH`Lr%4wwS}~1x zlrsIKnt!ww1|m~$_H-qTtr-+M4?1$ggA6)kww@#$N$vDt=&2_NZW+@9NStZf4tYee zrg^AWJBbC);F#5J-hwxai~iP-gXMZ7Y4waXzSw1!16({D4)#k8E%Oawb$i(t(CIbr zxMw0cVHUDNA2K`*Jd~n=Rn{ay1)F<0&Ym!?A_~#ag(h|m@;bHXws>hX5pc4Y&^lEb z<10{I;7whpKoeVD!Qr-aHkrY-=4rrtGIYtYn&ga|qzp>@b#UNjW+I{0eaH+U`lI|7--8t>HmFb{>S+P$1@@Y~- zeLCtA#;0SMG}${a1(jd!Yg20SRKe*tOO*ah+TMXBkh*i`)M?p0ZGa7j>+Ghlt)BYGSS~QWvPjdWDuy!YylB)-|+Z zZba}Q&)wnqL0`-TF6bNNZF$;@r0XI{J#O%ON8Yt`cGfsan_u)Uvh7uv@d2m+&}e`W$*adi}I3nqBQScM)6?q;+VY?5^wFWuF&IXJ_K8sa?K;mq(M)aJxj; zwCuALbWh12ckxhwHyX`UOC2RQGCs>wsbopE(aWghAq_Ll#+(;j7!Aa!5g3$sZBsiX zKjjtD!@;hoHA~-G^2XHiI2FZ#N;L6a{+Pf}9mw#DI}LtmKT8%&ZQ+$k5`LyH%NFm^ zWN<2tn)3E8k4<-*v0yJfw(CqKZn*93pNA7v zDYU~Rhgqsp){Il8xcCH4FyNLmg^mk~TjjN;-*@ zC}~*IBJZINBc$(E&{}oeyrMJ{FSIzD%uFZguAmh>#zbk(s~U(Xzak_z)PqvaGhu#+ z!Q}I{Jpc64UP;6Gw6Sg~cr(u({chfIagMcgKaB}8gkX<1v2C9>y|z}m#{LV$MMOU!uw4I%mwTVoH)44tVk7$$0kuFfkU}DO58i;;hYAf>eQI=lV(zUUO8zu zkT{0Z{Beq_A^kYw@1giQW;@me2omnx>e74A2ruYFdTOW?$h!n|GaVoW>q%2&oE(#<%tEiBd!W8pqE`lK6CqQ~+Y8jGd6)5A zZ0Kzxk!D4ega;M!vJjsjGXtBVkX6U2YbPcdXF$yP5kLid44H5Dchlv>_c0j-CD=3U^-M$Q-Wina5Se;6S>)|!lec>!{Y z+e5uX5^!gP_Os2{Q{CliNkdEnHe<`Fn^>S3Kg~}dbLmQ#0AB;m2$d2Z{`Iz$=s6wg z*^Tij85gAdatX-GSN&2jl&hS{vSQ*k87`D%>1B2-;tt_48p=m03$!K^UiA;Las%Ia zGp=_`J!z__uq-Gk%{Gxd74%>=&_KPWMN66oCV27uC~fmC(h^*fMOvbQJyUH@beb*t znwCjY=gzznEjAs)1c%q*j(V>M0CV^QY(mQGdOoF)o9}zMp%1y@ubqZ#gY2{wUR|Tc zzgnip*XeMzB#FPOpAyn**}>ss&oLi2?&TJ;WJ=;2X5l&Pia2pjt7tUjp|~a;hWX%j zh)z{nW;5LE-khbBn62-d_nwVq`F>hBq}Qoi{?l>Hse@?I=N))_os1H+K;=1$gG)xI zsQmDrbA2%w1|?Xxrm5+G^1;*;egshLr7@?ZA4OC_wr@4^J0di|41G3Oc%oOGQGn6uQA?KRaLy(ixpgl@bli ztO{>rQ9c|a%WDTn9E z=}#gq@;8QQ#gq=Cn6Hq)w9I=>9Endm8>CcfHcMwCTq&fjTAmxR&Thj~xnOO>84lU; zdIU*Mv^Y@CI;i)%A^Y9VJEwsll8uu2t|m1D8re^E2BMTb_+XWNGk$Jy;pDHA$P;Do zDuCHB4^-?3$3Sy3M$UsNbM(QO9(iP~v4%A!pG-OEN_mpue5^+HGF`0bVmh4#pfh-f zcw@i8FHyR1;|wcZcb4s48Hk!XkcVe<6GUW1I<+<-Z>70_n2m4QKjC_VtrTaTZ(cb& z{9}^uXEqP<5_oSVzGvS@Ji%Yh>mxtLH?I1~!;jFXf{5iz7sXk6o@#+oMC!avluCU! zeRtd3=-{oaUs3JYBs}T^41u_avY!ivmw6J3-LyIwhiqFy;u z7)xg^CTLg9$AEiSq=Qh$#0oFEIhR3onsmp&!we;kqu_}{Q_yXmB@Pes5&4vB94}7Z~vSZiS==QP9 z93I`VYiHrI?0nuix^rxJm(Fc!r+AX+t?qz$QzsDDPEb=9Oe}e1VeYVp1(9k!rg0&s zK71}DC4R>!L~`dnWVEwDGwR91A*DCCd5;v|3rrf#kSEjokSEI%Ay3vOLY^#4ggjZ5 z2zjzV6Y^wr#w|r$m4wl;B6nqU$U2O&>EI60A@nmYPZD%IWRpC-4IVKwst#wW`;V%5 z>cNw02~QqW^H`SM@G-SS*?UTjrrX|4zDj3ymJXaH-5G=6(hrr*)CWOb0+29x1KWQ9 zN>cO$cUPt6;*PNs)a7>0M8PXXJOB?S+ z>h1T)*OBMdyP-x#gUKt`PW3&?%WCq2g zv_O}KXoM6B>aC0>+FVmVL8YTK%V(F{XG1s1-f_~b(i3Er6RQ2@ryw+=FNo3l=P~+9 z^0vGhHqu>f_ciqNLxjm)-wcOw@&)#^OC#j_NA4r+X&vu#>sq*IJ}J&8IBD;b-&Lde z(a+8%uSjHlE!>y8M%zqX!jyC}UW^V!-pG&}t5E1|ItSS-FNcP@$YIy|`K_HA;?RXK zGq4T~SejP$!kBhKHQbc9xk4Wql}lPo4i!x4<6;+LnHVTzG9FN^1I>%lZ5^*7ga*yH zAw=XdqmH;CziK|i`*WcsFKN7#w|Z10c(lR|zsqntnOW<+YIv-XaGXm^VjwBA*t~F$22Bo#ysy z6RGITW!stOJ%F?sc|v`XZ^Wd9X5u?ZC4!b%TJ;V+D%eAjRv2VaH*LfJ^kG^`<2-&4 zD-{WP%Z@+Jk`|bIVV%YvZZG>wX^olh7oA{^+-f&7lNjVY=%bkvvL$)(P{hXMaPQi+9YN3OHWky6v# zf(|OGEWB~FZMW1%L!LNHR-w{1=&~%$UE&I@?$6ihwaY%nj&v49tFIEB%gdJ2dAG%E ziJURqcMka#{>pzkA{4s){0><^FJ#ZoeA+iNp7crvC+xQTT~_QJXlJWuxSfW%Q`|p5 z{bQF{>YqhU4+EP1exmT0I@8K?KNsQe!6Ea9Sh2$p$PTrvR<&goU+oU-;Lsl0CE_s= zb-00qH&BmLSop9c*FNh)a=~t~W@#8(R^XZf-v;}c)GlAb&S=>n(-q5T0l}pYyQ43U znI+|Id2SWV_aS=7kIN@?dPwCqt8pKig)_jTbbD-Des5hCum^|aH|<#POGtr^FuDp% zk1NRMsr!nDt!v)2qnDQH#tifY9H1St0MPK-_f)ia-z3l?kg3Hm2^%~&gQkKt(4c_q zm4{sTaC>W>`-yB}z0pr*KFxqou~E8lTcrn^vrJl1+F&9{%$e}Igu~v#w*0X$%N%bC z_tV44uHar0VRX>9V*-x7R9%ER);}So?pk6`q(W7+#nH$BQTrfSW|2^rz z9{dEu%N5L2m!Dh`Sd;zYPaE3Jvp;4{YH?8wdX2p7Lh6WLS0*`Yv}@BTw{y?VDQ{c*xDw~+EyIP}bG^`IMgGS%#=WMDeCcUHzD08> zecyCfey_PvbBu4)^x%hT7-9!w3_DN$qIP?_FcNxr@h85C@%Gn)b@flj4b`F@0 zj-(mg?^im(PZ~#CtLC0i7z#RV)QSzFXYXd|`9`ZdI7D-veZ2l-Cm2~0dd!I5bFiWr zdhg7*NeI8)c7uW@96ZK%YK9#0K&M746)j%-@{)`%^3Kr^7>P-rc%N@inlI>B zv_KCJhQxE;Q*ewvTR>yqbRHQ&T%j<={N;435z{*R!WDGawi$Z~?NOTISlv1KBG>+Q zz2w*oJuc|~rUPM%rS{(H9ItR$hx9xI9dn)Mg#ua+vvhW`z0d!#-~X}4|8b4`(LCE> z@Ag;E#1$`OKK7!4z({%4Hd5gsBRbrccwQ}b7HDcmOOnOa+mEk7>HlNJAh3ZZ0x}`{-aHok2B?kd4GdskVnU zPOfKz&erjo`AuVlq||^p9eNlyaC4|tttk_GP)CbDOWi<0l=fJ6dWAd zM;mDLKQkpg2ACw3~a-OJ|bUj(WRo~2Nl}n$G$V=g$}3W6(xF{&ybz1jwx||b~dFH|JORH4d@`t#FW64Z%%Ko4aKF(ApI<5N1Q|2v)DaTrCXeIR1CH#n0()q9@+5G6uqaM06zaF>yFg@ z@w0mNgc@x&@!_`pboPuwPG^_tsI!&P>x+~Cw4%%pQ-o073IwAy9Z}tuzdTNkv3of5 z)Dr}Dj20inWOLMY(7^`yFuPEi%bP6;I%Z8$Cvb~#SZA{i+~s5#xSR%7cB$9uIJbKF z)+(6AR{O(gAEmQ<)YsEtyd+gpLepqjr_^fH_EzZ$t?+ap{iLzj6vga{di^9ni|o>q z+9DR2WmH*^wK7vw7iq+q`N_PkitX-lGeDBypWm7!dWZjM-$=OJnh>as*uGh z&70WEY{_x%%NNd4*^%A(l-phqI&DwPsviO(Wn)jzagR=z_NX1910Rt7M9v>qu?4S$LbRV6vI3MHXj z7hKQ;@$z~YjD@&H!)tRu$VvFj4e7hz;+A@|%(%JL_Rw%v^$|l>64V_L*~>YdQFfxDeeD9lbb_EAax|#e zj)ryHVZUTKn5sTbLOVQO;yQeY2QgvK;A9zT&tWx->o{`N|nNwA!Ab*BDDB`D&6Ct z%bN@F#A1U3mnlk&-fpM=4xonOq* z`a`*$=cZIM9xKzO1-?v7i9@?yTEWaQ`AH3bYYGO<6DKr&&v3@ORw-Ll4tXUh7Sf)q07(op%d>)7<>$*^wA{x0H-Tn+7hk2RT62|N~3mRe7-ITw!QT=I7FQ;KR2(x zkm3wvXxeL+ea)##kYUDXpcJRPTabZ$ikq#_LfU7V-Gz78QZD83?6gbaCLAMurNcd? zZtpuo#gvP*OX^_cYSUz!W(QP8%_;mWz3dF)laqeN4-RpAxnqplLE0K)X(|D{ytX;W zdg)ST^Qt99Bhm0Zv^z^FZ%%PX=q-e2D?C-ULv%mfs)pCM8bb3`6`Xsbu z=+#27NCAvb^qNS^hSb==qe?NWusx>uR)&Z2oSYtkNL> z4wq4uKc%NJ)ciR`@~2a~;YsN}27QB`u0^+~;u%d=%KHI2wtr%Dlpg%iQjTr89Y~EY z8Jz2YxThNyt$3EkD(nlr99OD9FgU~>n`Pfgx@n(yhAD{w^i`C2s=j-swYPMZ&O4is z%8xvYLUJ}PHJ?_Yw?GnGrI}V}oKDUW^E7DmM~9deo;rE-h)^4@<8N${Dr(pe@{^oq(dq}NNn+kW!$DG8dW3=f9K}V(QSF!_S+?f zc(h_8&E3e<(9*X5vfkM5FHIm4hlwXP07A@OHGdq( z=-Xc@Lp&^Dhje0wONPrMjA#wyPaV(zZ(_bvqqFI(W(G6nFH?I^pOOjNwbylMK(vd- zPpoZpxFw=l4vqO+z4T~ryqYDms|v z&pO$&qWM*2a40B#w##sXT$2(vm{u`J97c3>pT5ZDRIeSrE<@X=;-Ff;bQTAc<L%9H@%w;RfYg33S1yW#kq{E6YGat_;JH%jz53w$(+eq;r85+CsXgI}bPVFs%peMhSHV@C__nYTz zoQptqIc+D#3s>Rs*K8dcAMf8AzR(lc;GrUo`J7|(s^a7tP?j!H0gX!>T|6cx(6nm0#%px<`#R+9? zoGtKh&#AoMk~JRS!(C*Sb!dHw9q~Yf7906bkBSj) zT({-Tke7j(U70z1_{+~>QsXS5SvLJ;o@}E3nkJI|OZFDnBmQk>*fa}p${yP>2<6Qf3yf(gi4X^dm^dcp=SM`V*%C#`I{s-g zYSu^whmgd{F+0`>F!D`t`nsF3qsaoJ>@yNis^5EB3QW$NQRGVXdqVxbvaEpY(sEd+ z{F?P{7qkW~M9=bf$0VfuQ_4U8-fz~wC66Y(zl9qo^5=r23e8|-hb}QjBVKwjsWwHU zEYAzN3QV2&j7P|Y*?3M|(qDx$bPO*bVY-^YFSe8D(fT{bXR*y&CJS`_C2$<%Dimd3 zJ5aNG=I|C3`V&qs-E6rm5!v==Bz!*kV?JC0kM^xQwhj( z2|`85^=0h6YZ>g0RHJe|@1q@U(t>$hNycU5f!npBXwW;RG^@UAT4n?N+^VI8L-h2W zxlPMEZ+#t<=j$|ED^^d@m!bWBt!uw+}J+MLNs>~@R6RTOe+vp;tF~>+V6CDjD z%$ao3cnve`*sQCk%o+=OXxUwBV$s2!`g~T4UUe~}zck9!bqij}$x&m2_Lb~X7&qm? zAS*OIICQ8+dq35RbI?~=4#)B+g$7L>>xc4PS|dA;*8T-1sCPI1O~@DZlp%BWok|G& zGwY{)&Czms%^a~jr`FZ;JQ(b&MlXDjxhwcO2Q3%%RW-Y3cR}S!b81^D(h(7JuS#JR zd3pP|Zz%Bea$g<3{y}XbI*h)myc9t(ms^H?HBIyn@l1wiC3hhncTra&bQhHo++Nx= z*y)U=f<{||orWBsJZDAmbWMlcx1wO#i{7O5Z=>i`)LIw>hidc<&c#NXPa@Jm=1@d; z>dgsxR1h2$$~I1}S!Z1LX^7@E%Z4i5V_(ntQ^9mM}1z3!VX|K0I6OKttL zMQ0n$sHS?B_o{S-rZnx#tSgJMzeLqKQ%v1iGpW;=D)js?o#;2aRQ;^*?$bHccx5v? z7}Z)kTfn;%*%CV8U$UZnY(lO|m5j5pU6Wa9`?JLz)yifj4B4kU05Fgp1lpPY@#M)& zETbG8cGgr(V-r3eu*rDN{B~_si;wR04Mv7W-+&ljU{M9d^!j~0qXKQdnvm_D4pjDa zos#zrD4j{k_J+5)_%1&Sk($$08x?T)_l)dGu~Gc8iMhM$>|uRS@nxKV_Zg* zOSD*LZdjOA40=K)5Zmo>n%Yz{T#NYN)Zr`SQe38MbCi>Avu0U_tapN$r9=~D<(?Nm zYwgmRK0^b_)kzwB)@V{6`pt_!*%I?DGHW`BXo}~BkY+T7P2(=)^&+BUK7q#--k%9e*;G%*jN$zy`jBKs!X3$knSnUc$+T=LsCrq+(^#9d7 zGmG~>&A9(r8K<^Vewuy%W3tcN*!pR%{g25t*=GD{hW(Gpuwc{or}_3jCg1E9{7G{VS!=WA8BjV9=?;H|?$xOYJ_*)WA#;a98Ie$M>= z53rd_0=za#XMFiVKiY&dVKi?_kTASO( zb!dK1r`O%>_I7seH#bev%;q(X)BVutcx+iww2>vPWarUee-8ixBxT8RXF81uf=`hE zAK(FC4k&Sd_TPXd+AXrJouzT7b@z+BfcJH3 zhj~zmb@&D~k@9svW;nDWLBWit7%4}Pg=AeL7PMgiFLmf`}?A^;dJbIJ| zm2CgpA9d3to8qWH&f!T6L^kl8UJs=lj&hHJ1lOTIYscbH8pxBV^e+EG&K$xAaA9;Z z{}LuOS6b|1m#nAz=|wynb20AispwhhuB1`V&D*g92ER)>8%46Cj{m06PVp zu9rEGK0P1ckMWrP+aJP%OV|y-+@dm_q~JWb?i)Da6m}#gLy}n~a+X<;oO3r#;h>Fu z(ryf1mY+C76|c)(s=KcjgK>oKu_q~_dsDL|W>0OHUT%w`-@utBlC85+25a-Rb!q9% z2`#}o5!~RkIVSU*PSjcr-+GcohH*Xdyd3)DJ@?P9Sqz!4ef-cLDY~$?uJ`2qtFNYH z`VCu}8`#)&+CYetq`JA8W{mW(Sr@l1h9#2kat>m~e@Tm4v{9gTa8s?yh#%L~^(j5? z!h<}YfxOs*H#@EkLdeWn?GqzHH)+E!d4NwO1iVTF=(_v{gm4(-N3JW2)91yGph10Y zOk@l@mW}j-fNzDA$`ebra{Ajpx#TcEpkxOX;Kk!2dIBk;lEf=gu3(~~B-EcQR)QdE zd`eT?U}$__Kui)6AnXI50OQ~xa_HH55a;oK2*fpvtbn@zl@XDyD$)m*YW|aaE^8ie zgA3=#%VZ95ftMX2oKYABODSK=Fk*-v;ulH3YKg9MgCO;=2J!o3dNw`3iYVt--=-H4 z@xI96c&Wf}yi_M=lqSaBmwgfuu1^7rK!f)VcpEkF0P(aP zG%S&!x}PQ$tYy}4!eE5DdWL$nAd7>KA3zNN`JIf2i6}xmPifX5h|P#)Ms61{a2Hti zD$@%7fiXN*K>P=O!S(%2UO;i(Trq@kV*IW?5slV}-74mSk`K^!Eh%p?-g$K$5t$PB zAnKLt&^Syf#u z02T^y0aQNU-yDRHC3OQY-V&{0386k5t8N>8;*?HqSSbakyvoLr^34TDF(}m`D^9j; zI!%G^1iVfqEzX2N!SbLS~y-3Nudcp*Q{nB1k?QxEf4%%WL;{D2BiXV;hK z$G0*44n0#a7T5(amN5NXA13t{CEZ(?{chjnw0`+3P3yao{4OeU;0E~=5VsvVY)>&T zswRqZTd%Y0uh-WzpMYMCDz=N}e!pNmn)fsIm#S00oMMUFMO4uQN{1A~sDe0=l2LlmPO0T$x z0!V&{B_|&pJ4c@DGm6{i9K$Z=ARE^_q56FM;6EFow>V+!a;hI*+Z!D3h!_uuU$$Ag zKZ0EmX+P3(h_)s60kQ(&Vp^a`qd~s5SZUH8i_o%sy|_JV_L8j`Vul_Q;w3f#kCs8` z2O7@{E@`u+39^KNkZA3tq{Zq9*ui%t^75hp*xW$518UqF4oh5v9W5F`j%GY9mKVnb z;M+fKlgBie3j`qb1DIe_*B0eDNAa|#^AFhpYSgFF)dF@nv_1PEWvU6Bl+!48$ukp zWmWH+M!vg)T#5N}Rl@HU9uP#?d`_3!OrtGD4ejB+uF;lQebcrblH8Yr&wO)tfyExF zb8ROI>UI$LAX^)N2L*iC4LqgfR#X!z!DrPzLkL>@nog+ZK1d$hS!KktNZhrvLh&^% z(xvTCGB;iWdIOerEpXnunPWJMKB1N750b zZz!ERGI_p&l(f8vjOM`Io*!v06B_I@=rrS{OfmE#{gYv>8^{6<;R~EuA`Am80fO!# zg0B`wW0S1Sq%cIdh3VxQU_pJyV&|37+}yU);u%=6z-0_FZ#U0h(*)ubzyaZ(MV+u4;ESIee%yrLlUo}YzwT;bO z2jrfHNwQi1<0MI!7?JZ>{(Cx|Dq7Me3j|D)`540Boc{zcma;N|kg}A(V#J4**%MC5 zEldc9{SzT?85^_AFu-oN@QPNh{KwDRbHH8UJtAZsm1y~49Iq{qRXd}p+^(@4V?jbL z+T1$F4N(hYq?5Yx)kL;+G{T5r>^bUEM{9c;*iB5rl8aZ7vLcPNcpN1-L0YvOgJ#(* za8~0fiza!%(#a?ZAiP@iPwhVvk>JhxDIh^oVCNYue(DBmif@ZE5Ip zBLxPk{{W7*ZG(*hO2z5&c~-(-t)I+9P06r;fDJ=&jR-3OzvG^QSV$g$#0GhNj01Pi zNOal>#1uJp(iUJ0a(dd28J`m2TCRwyL1K|QnsSczxY*u3RPth&I{37~8RhlzA3sL1 zb+$84-51jufmd+2s`Q+Ega*A0^lSpZ_LX8%dmD+Vd#vLkIn5%%(r{?HdRhRdB-)~K z#O=ctmnzR#yat=sFo{>7ZtL0Ahd8;KsjRX>LA-rkFLAw!y`fP#UtS~kOB9YL%;&1^ zXUI$Fm<+G-eOI{yUP2+aa-LRgMMqTlM&wG<^|ey*bUUWy<@Tj}kVMSV0zCeYa|Vj2 zEMgJwGXlPkP%(6IKtUfQI9%jlyIKAAA~EpHkpZ7x_Iwgao{D=&msnyv1bmdTOG}$( z3M_BQ8i7whsN_uX8|zQHs>acdkTBAljdxRUH#-*kc0+3k`Hde6P>!}N3X9+n->Y%< zSU_WpuMEW8f#mOyeF|KYt_VQz1b4S903(FJ?Nad}Aotl%o(WtofYvt92y4Qqzpb`d zy|f-rmyVYgMHX~E=AHPJ)hH}U$mmW`vHj7pgirkCrV(!Z{if06PSb*R%V`vM(JA3u z_+9`Oy(^PK7$?5cBp(S!n>QYVINIPKlu&CABm4&S*LE^JZzK5Yvy=b+(MgF8cXxVm zjzpJ>wO#rZ-|xkA^w=r3+tgl?lsl1EmEP*^#%YY*_x7ZQ*XyES#TZB86cZ~%+FW$< z<({WUyPoduF~!6Mhpx^i3$D}HWXE@+QWA1Pu_7()Gf@{up4%#Zm_ZV$+%kAq7b%Y7}}2j<-iaM~?G?G)I%?pqD<{hfCB8~%Rng#XAY+~s1Ug#;oX z*WufeQet2JT|0d;!?99eQ1|0V%Q%$(fIX$Y@Z5Yl1;af4z!BuKT7B!+mU7s*(B7&^vaa3pc#5t?^>~V2gYEHT z6#-wrKfEci_4s)H!arU8gM&5P7dxl7p{f3NdP z(_k$1{wXn*`he*%mc_oQGM0AVv^gy8{wXw;$LMq#%V2zJjpcCoG&?9KTJ!IjatG(p zKmA6N@0*G}iQ~B{S|NHZDeJx;9Ru?oMte=k27AKbA$Q|)IFvTDDaTaArNBFQh+F3{ z`(tgk;}@8-grO&&HIs}Gd{;cAdm9FR1m3BGTHty>&#A9qS+Xbn!F4J3=QB``{fQ1P z9Qvwx-P4MJ($nV?N;uX9+@Uz&$H4&EVe$tVE79+Qfzi}-q9de4-ZX*hHkg=;f2N`?SgCsp7r5~u z$F$}1wo*B8=arXXL*}?+ zWizZJ{-)-3*#KBXcyCv?8W^c}Y=^#AXG;}pR$fQ22`xt`K zb@LI_jSKIgYkPX4cB(bRqqWlb@fDEGY3M1!Y?#14fY)Lj-PArW$Vx3sRjnSHu&GG- z{c5WAb$yxQE!8ilV>_AyQt3FeX7D95O+IrV+*Rl?Yxkx%9K^jsnLQ`_MZaF&%V4H0 z!|kT|t{=|IirKIWOkciYzfk_QXlmou#=Nm)dVlMtCLY70X|mO%ozW7nK5(kuxhJvI zkwDs(WYkXg)!hpMDNmb;YFk`f8#B`O?ivb+}$OjG&$@(|%D&0I$DbYhNxTN)# zLCfGVR}|rlmzjpVnNN$hzyzvSKrY^xtfp&y`esluP!mT-6CxZ Date: Wed, 19 Aug 2026 13:29:51 +0800 Subject: [PATCH 27/33] fix(ebpf): restore ARG TARGETARCH in the ebpf-builder stage Buildx injects TARGETARCH only into stages that declare it; without the ARG the -target flag was empty and bpf2go failed with 'unsupported target'. --- components/execd/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/components/execd/Dockerfile b/components/execd/Dockerfile index da9849386..e630448f3 100644 --- a/components/execd/Dockerfile +++ b/components/execd/Dockerfile @@ -112,6 +112,7 @@ FROM golang:1.25.9 AS ebpf-builder ARG VERSION=dev ARG GIT_COMMIT=unknown ARG BUILD_TIME=unknown +ARG TARGETARCH RUN apt-get update && apt-get install -y --no-install-recommends clang WORKDIR /build COPY components/internal/go.mod components/internal/go.sum ./components/internal/ From 2b741f55b599b3117465e2087f88cfbe09f5ded8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 13:34:18 +0800 Subject: [PATCH 28/33] fix(ebpf): add types referenced by bpf_helper_defs.h prototypes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The vendored libbpf helper declarations reference __wsum/__s32/__s64/ struct __sk_buff, previously supplied by vmlinux.h — declare them in audit_types.h. --- components/execd/pkg/ebpf/prog/audit_types.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/components/execd/pkg/ebpf/prog/audit_types.h b/components/execd/pkg/ebpf/prog/audit_types.h index 6add2e839..9190c5157 100644 --- a/components/execd/pkg/ebpf/prog/audit_types.h +++ b/components/execd/pkg/ebpf/prog/audit_types.h @@ -30,8 +30,14 @@ typedef unsigned char __u8; typedef unsigned int __u32; typedef unsigned long long __u64; typedef unsigned short __u16; +typedef int __s32; +typedef long long __s64; typedef __u32 __be32; typedef __u16 __be16; +typedef __u32 __wsum; + +/* Forward declarations used by bpf_helper_defs.h helper prototypes. */ +struct __sk_buff; struct task_struct { void *real_parent; From 6872e0dfb3150490c2ac7466be25bf07d5e09e82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 13:46:15 +0800 Subject: [PATCH 29/33] fix(ebpf): pt_regs uses rdi (not di) and add uint*_t + ringbuf map type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit bpf_tracing.h's non-__VMLINUX_H__ path reads PT_REGS_PARM1 as (x)->rdi on x86-64 — the vmlinux.h-era definition used di, which the minimal header inherited. Also declare uint32_t/uint64_t/uint16_t and BPF_MAP_TYPE_RINGBUF that vmlinux.h used to provide. --- components/execd/pkg/ebpf/prog/audit_types.h | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/components/execd/pkg/ebpf/prog/audit_types.h b/components/execd/pkg/ebpf/prog/audit_types.h index 9190c5157..483d6049f 100644 --- a/components/execd/pkg/ebpf/prog/audit_types.h +++ b/components/execd/pkg/ebpf/prog/audit_types.h @@ -36,9 +36,16 @@ typedef __u32 __be32; typedef __u16 __be16; typedef __u32 __wsum; +typedef __u32 uint32_t; +typedef __u64 uint64_t; +typedef __u16 uint16_t; + /* Forward declarations used by bpf_helper_defs.h helper prototypes. */ struct __sk_buff; +/* Map type used by the events ring buffer (bpf_helpers.h). */ +#define BPF_MAP_TYPE_RINGBUF 27 + struct task_struct { void *real_parent; unsigned int pid; @@ -111,11 +118,11 @@ struct pt_regs { struct user_pt_regs user_regs; }; #else -/* x86-64: PT_REGS_PARM1(x) = (x)->di — pt_regs is the flat register file */ +/* x86-64: PT_REGS_PARM1(x) = (x)->rdi (bpf_tracing.h, non-__VMLINUX_H__ path) */ struct pt_regs { __u64 r15, r14, r13, r12, bp, bx, r11, r10; - __u64 r9, r8, ax, cx, dx, si, di, orig_ax, ip; - __u64 cs, flags, sp, ss; + __u64 r9, r8, rax, rcx, rdx, rsi, rdi, orig_rax, rip; + __u64 cs, eflags, rsp, ss; }; #endif From 884b00ce28da66a1828f43669b454bb76887ff2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 13:59:12 +0800 Subject: [PATCH 30/33] =?UTF-8?q?fix(ebpf):=20review=20feedback=20?= =?UTF-8?q?=E2=80=94=20degraded=20state,=20strict=20smoke=20assertions,=20?= =?UTF-8?q?k8s=20matcher?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - audit.go: report the eBPF layer as 'degraded' (spec contract: configured but a prerequisite is missing) when some hooks fail to load/attach, while keeping the working hooks auditing; previously partial coverage reported 'active', which SDK clients could mistake for full auditing - smoke: 'degraded' with 'hooks not active' continues (exec+connect still asserted), 'unsupported' fails; privilege events are now mandatory — su reliably fires commit_creds, so zero means the hook is broken - detect-changes: route test_execd_k8s_restart_recycle_e2e.py to the kubernetes-mini-e2e matcher (it only runs under the k8s nightly) --- .github/workflows/detect-changes.yml | 1 + components/execd/pkg/ebpf/audit.go | 7 ++++-- scripts/execd-ebpf-smoke.sh | 34 +++++++++++++++------------- 3 files changed, 24 insertions(+), 18 deletions(-) diff --git a/.github/workflows/detect-changes.yml b/.github/workflows/detect-changes.yml index 029816a60..1405a7042 100644 --- a/.github/workflows/detect-changes.yml +++ b/.github/workflows/detect-changes.yml @@ -79,6 +79,7 @@ jobs: path === "scripts/python-k8s-execd-init-e2e.sh" || path === "tests/python/tests/test_execd_init_e2e.py" || path === "tests/python/tests/test_execd_hardening_e2e.py" || + path === "tests/python/tests/test_execd_k8s_restart_recycle_e2e.py" || path === "server/opensandbox_server/examples/e2e.batchsandbox-template.yaml" || path.startsWith("components/execd/") || path.startsWith("kubernetes/charts/"), diff --git a/components/execd/pkg/ebpf/audit.go b/components/execd/pkg/ebpf/audit.go index 12fe373b6..32c4a6b2b 100644 --- a/components/execd/pkg/ebpf/audit.go +++ b/components/execd/pkg/ebpf/audit.go @@ -136,8 +136,11 @@ func Init(cfg *isolation.EbpfConfig, sandboxID string) (state, message string) { msg := fmt.Sprintf("eBPF observation active (cgroup %d, audit file %s)", cgroupID, observer.logger.Filename) if len(missing) > 0 { // Fail-open per layer: hooks the kernel could not load/attach are - // skipped, the remaining ones keep auditing. - msg += fmt.Sprintf("; hooks not active: %v", missing) + // skipped, the remaining ones keep auditing — but report the layer + // as degraded (spec: "configured but a prerequisite is missing") + // so callers do not mistake partial coverage for fully active + // auditing. + return "degraded", msg + fmt.Sprintf("; hooks not active: %v", missing) } return "active", msg } diff --git a/scripts/execd-ebpf-smoke.sh b/scripts/execd-ebpf-smoke.sh index 5529f3a9b..948f6c10f 100755 --- a/scripts/execd-ebpf-smoke.sh +++ b/scripts/execd-ebpf-smoke.sh @@ -136,18 +136,20 @@ message = ebpf.get("message", "") print(f"ebpf state: {state}") if message: print(f"ebpf message: {message}") -# Fail-open: "degraded/unsupported" still boots execd, but no hooks attached -# — nothing will be written. The smoke must see active. A per-hook degrade -# (e.g. the commit_creds kprobe failing on a given kernel) keeps the state -# active and reports the missing hooks in the message; the audit assertions -# below then still require exec+connect events. -if state != "active": - print(f"FAIL: ebpf state = {state}, want active (hooks did not attach)", file=sys.stderr) +# "unsupported" (no BTF/caps) still boots execd, but no hooks attach — +# nothing will be written. "degraded" means some hooks are down but the +# rest keep auditing; "active" means full exec/connect/privilege coverage. +if state == "unsupported": + print("FAIL: ebpf state = unsupported (hooks did not attach)", file=sys.stderr) sys.exit(1) -if "hooks not active" in message: - # Partial hook degrade: keep the smoke running (exec+connect must still - # flow), but flag the container-log dump below. +if state == "degraded" and "hooks not active" in message: + # Partial hook degrade (e.g. commit_creds kprobe failing on a given + # kernel): keep the smoke running — exec+connect must still flow and + # be asserted below — but flag the container-log dump. sys.exit(2) +if state != "active": + print(f"FAIL: unexpected ebpf state = {state}", file=sys.stderr) + sys.exit(1) PY report_rc=$? set -e @@ -189,12 +191,12 @@ for want in ("exec", "connect"): print(f"FAIL: no {want} events", file=sys.stderr) ok = False if kinds["privilege"] == 0: - # The hook attach is validated by state=active (or the per-hook degrade - # reported in the message); the event itself needs a setuid transition, - # which is harder to provoke reliably in a bare busybox container — - # warn, do not fail. - print("WARN: no privilege events (setuid transition not provoked)") + # `su` (or any setuid transition) reliably fires commit_creds; a zero + # count means the privilege hook attached but events are broken, which + # the smoke exists to catch — fail, not warn. + print("FAIL: no privilege events (commit_creds hook not producing)", file=sys.stderr) + ok = False sys.exit(0 if ok else 1) PY -echo "PASS: execd-ebpf smoke (state=active, exec+connect events decoded)" +echo "PASS: execd-ebpf smoke (state=active, exec+connect+privilege events decoded)" From 52d8f90e0724dbd0297b43ff18bc9a8f43e341aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 14:03:22 +0800 Subject: [PATCH 31/33] docs(osep-0018): mark R-c/R-j implemented, update status header + R-h R-c: kernel-5.10 eBPF validation landed via the execd-ebpf smoke on both CI legs; documents the root cause found (arm64 pt_regs relocations in the committed bytecode, issue #1563) and the per-TARGETARCH bytecode fix. R-j: JSONL audit e2e implemented (smoke asserts exec/connect/privilege events; privilege=0 is a hard failure). Status header now lists only R-e, R-g and R-f as remaining. --- oseps/0018-execd-as-sandbox-init.md | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/oseps/0018-execd-as-sandbox-init.md b/oseps/0018-execd-as-sandbox-init.md index 59b0ab7c9..f9dbe76dd 100644 --- a/oseps/0018-execd-as-sandbox-init.md +++ b/oseps/0018-execd-as-sandbox-init.md @@ -36,16 +36,19 @@ status: implementing ## Implementation Status -> Updated 2026-08-18. Status: **implementing** — the phased rollout below is -> implemented on branch `feat/execd-init-mode` (Phases 1–5 plus the server -> switch); remaining items are kernel-5.10 empirical validation (smoke -> script ready), the eBPF audit e2e, and the default-on rollout (see -> the Remaining work table below). R-a (trusted stop channel) declined -> 2026-08-18 — the `kill 1` SIGTERM contract is kept as-is. R-i -> (server-path hardening e2e, docker bridge) landed in PR #1554; R-q -> (custom seccomp/caps e2e), R-s (EXECD_INIT drift pin), R-l(b) (K8s -> Restart recycle e2e), R-m (default-off + sustained fork-heavy) and R-u -> (runtime-initiated stop e2e) landed in the init/hardening e2e suites. +> Updated 2026-08-19. Status: **implementing** — the phased rollout below is +> implemented (Phases 1–5 plus the server switch); remaining items are the +> execd-ebpf server-side selection (R-e), the `OPENSANDBOX_ID` reserved-env +> override (R-g) and the default-on rollout (R-f, operator decision). R-a +> (trusted stop channel) declined 2026-08-18 — the `kill 1` SIGTERM +> contract is kept as-is. R-i (server-path hardening e2e, docker bridge) +> landed in PR #1554; R-q (custom seccomp/caps e2e), R-s (EXECD_INIT drift +> pin), R-l(b) (K8s Restart recycle e2e), R-m (default-off + sustained +> fork-heavy) and R-u (runtime-initiated stop e2e) landed in the +> init/hardening e2e suites; R-c (kernel-5.10 eBPF validation) and R-j +> (eBPF JSONL audit e2e) landed via the execd-ebpf smoke + per-arch +> bytecode fix (issue #1563) — both CI legs now emit exec/connect/privilege +> events. | Phase | Scope | Status | |---|---|---| @@ -82,14 +85,14 @@ status: implementing |---|---|---| | R-a | Trusted out-of-band stop channel (§3, R2) | **Declined follow-up.** Decision (2026-08-18): keep the current `kill 1` SIGTERM contract — in-namespace SIGTERM stops the sandbox exactly as in the pre-OSEP era (accepted exposure; no regression), and `kill -9 1` stays inert via the PID 1 signal shield, which is the property R2 is really about. No stop endpoint, no credential channel: the K8s Restart recycle keeps `DefaultRestartCommand = ["kill", "1"]` (`restart_default.go` comment stays accurate under the kept semantics). External (out-of-namespace) runtime SIGTERM still forwards to the entrypoint for graceful shutdown (§2/Open question 2). R2 is downgraded from a must-have to a documented non-goal for this revision | | R-b | Pool pod-level PID 1 | **Declined follow-up.** Pool sandboxes run execd as task-level subreaper (Phase 5): the per-child floor holds without PID 1; the lost signal shield is no regression (pool exposure equals the pre-OSEP era; task-executor owns pod reaping). Operators wanting full PID 1 configure the Pool template command manually (`bootstrap.sh` + keepalive + `EXECD_INIT=1`); server auto-injection out of scope | -| R-c | Kernel-5.10 eBPF empirical validation | Open. The 5.10–5.15 exec-hook fallback (inline `filename[1024]`, `__data_loc` argv) is derived from the tracepoint definition, not boot-tested; worst case the hook degrades (fail-open). Needs a real 5.10 node with BTF + `CAP_BPF` | +| R-c | Kernel-5.10 eBPF empirical validation | **Implemented.** `scripts/execd-ebpf-smoke.sh` runs in CI on the self-hosted (5.10) runner and the GitHub-hosted runner. It surfaced a real bug (issue #1563): the committed `audit_bpfel.o` embedded arm64 `pt_regs` relocations (`BPF_KPROBE` expands to `user_pt_regs[0:0:0]` = `regs[0]`), so the `commit_creds` kprobe poisoned on x86_64 — both legs showed `hooks not active: [privilege]` with zero events. Root cause fixed by regenerating the CO-RE bytecode per `TARGETARCH` at image build time from a minimal `prog/audit_types.h` (no vmlinux.h needed; members resolved by name against the target kernel BTF). After the fix both legs report `state: active` with `exec=13 connect=2 privilege=2` (GitHub-hosted) and `exec=9 connect=2 privilege=2` (5.10) — the 5.10 inline-`filename[1024]` fallback and the `commit_creds` kprobe are both empirically validated | | R-d | Cross-language SDK e2e | **Declined follow-up.** Python covers the init-mode/hardening surface (docker-bridge + k8s nightly: PID 1, reaping, kill-9 inert, `/proc/1/environ` denial, capabilities endpoint). The execd-init surface is server-config-driven, so a passing Python suite exercises the same server → sandbox → execd path every SDK talks to; the remaining per-language value (SDK transport of the `hardening` model) is low. Cancel cross-language init-mode e2e | | R-e | `execd-ebpf` server-side selection | **Deferred.** The default image ships both binaries (`/execd` + `/execd-ebpf`); choosing which runs (`EXECD` env, `runtime.execd_binary`) is not wired into the server or the Docker/K8s distribution paths. Tracked in `components/execd/README.md` "Known issue / TODO" | | R-f | Default-on rollout | `runtime.execd_run_as_init` and `[hardening] enabled` default `false` by design; flip after N releases of validation (owner decision), record in release notes | | R-g | `OPENSANDBOX_ID` reserved-env override (Codex round 7) | **Deferred.** Docker env builder appends `OPENSANDBOX_ID` after user env (pre-existing pattern); harden reserved-key filtering first if a duplicate-key spoofing path is demonstrated | -| R-h | CI flake observation | PauseResume v1.32.2 (only) timed out at 900s on "commit/push fails with invalid registry" (Kubernetes CI); unrelated to this branch's recent commits — re-run to confirm flake | +| R-h | CI flake observation | PauseResume "commit/push fails with invalid registry" timed out at 900s again on v1.30.4/v1.21.1 in the latest run (2026-08-19); the rest of the PauseResume matrix passes and the failing spec is unrelated to execd-init changes — confirmed flake, re-run to verify | | R-i | Server-path hardening e2e (Python) | **Implemented (docker bridge + k8s)** — `tests/python/tests/test_execd_hardening_e2e.py` + `scripts/python-execd-hardening-e2e.sh` + CI job `python-execd-hardening-e2e` (PR #1554), extended to the Kubernetes path in the execd-init k8s nightly. **Docker**: the hardened isolation TOML (`components/execd/configs/isolation.hardened.toml`) is injected into every sandbox via a config-level bind mount + `EXECD_ISOLATION_CONFIG` (`[docker] sandbox_env`); the workspace bind additionally exercises the launcher's mount expansion. **Kubernetes** (no server config change): the TOML travels in a ConfigMap (`opensandbox-e2e-execd-isolation`) mounted by the e2e `batchsandbox_template_file` (added `execd-isolation` volume + mount, `optional: true`, merged by the existing template-extras path), the test points `EXECD_ISOLATION_CONFIG` at it per request env, and the workspace PVC is mounted at `/mnt/workspace-exec` via request volumes so the Landlock bind-mount expansion is still exercised. k8s root-cause note: the e2e PVC's hostPath PV used to live under the kind node's `/tmp`, which is a **noexec tmpfs** — every PVC mount was therefore non-executable (writes/reads fine, exec EACCES regardless of Landlock, pod spec and CR were always correct); the e2e harness now places the PV on the node rootfs (`/var/opensandbox-e2e`, `scripts/common/kubernetes-e2e.sh`). The entrypoint dump goes to `/workspace` (writable in both runtimes) and is read back via the SDK files API on k8s. Covers: reduced caps/seccomp/NNP + env strip on entrypoint and `/command`, Landlock (`/tmp` writable, `/etc/passwd` read-only, workspace mount write+exec; skipped when the kernel reports `unsupported`, per §6 fail-open), capabilities endpoint layer states, and the missing-`CAP_SETPCAP` degradation (phase 2, docker only — k8s degradation still open: the k8s container ceiling caps are not tuned in the e2e) | -| R-j | eBPF JSONL audit e2e | **Open.** No container/e2e test runs the `execd-ebpf` variant with `[ebpf] enabled` and asserts exec/connect/privilege events land in the rotating audit file; only event-decoding unit tests exist — the `commit_creds` privilege hook has never been validated on a real kernel (ties into R-c/R-e) | +| R-j | eBPF JSONL audit e2e | **Implemented.** The execd-ebpf bare-container smoke (`scripts/execd-ebpf-smoke.sh`, wired into the execd `smoke` CI job on both self-hosted and GitHub-hosted runners) runs the `execd-ebpf` variant with `[ebpf] enabled`, generates exec/connect/privilege events via `docker exec` in the sandbox cgroup, and asserts they land in the rotating JSONL audit file with the right envelope. Both legs now produce all three event kinds (see R-c) — the `commit_creds` privilege hook is validated on real kernels. The smoke fails on `unsupported` (no BTF/caps), treats partial hook loss as `degraded` while still asserting exec+connect, and requires privilege events (a zero count is a hard failure) | | R-k | Python e2e signal-forwarding breadth | **Implemented** — `test_application_signals_forwarded_to_entrypoint` now sends HUP/USR1/USR2/WINCH to PID 1 and asserts every trap marker fires in the entrypoint (SIGTERM graceful shutdown covered by `tests/init_container.sh`) | | R-l | K8s init-mode e2e depth | **Implemented.** The k8s nightly runs the Python init suite with two k8s-path adaptations (`test_entrypoint_exit_code_propagates` skips — BatchSandbox does not surface the container exit code; the `kill 1` pin asserts execd becomes unreachable instead of a lifecycle transition). Added: `test_execd_k8s_restart_recycle_e2e.py` (k8s nightly) — a Pool whose pod template runs execd as PID 1 (`bootstrap.sh` + `EXECD_INIT=1` + `EXECD=/execd` + keepalive) with the Restart recycle strategy; releasing the BatchSandbox pod-execs `kill 1`, execd forwards SIGTERM and exits, the kubelet restarts the container (restartCount increases), the pod survives and execd is PID 1 again — the `restart_default.go` "contract compatible" comment is now verified e2e. The Pool + `EXECD_INIT` subreaper report case (R-b) remains declined with the Pool path | | R-m | Default-off assertion + sustained fork-heavy | **Implemented.** `TestHardeningDefaultOffE2E` (hardening e2e, docker phase 5): plain server (no isolation TOML, `execd_run_as_init = false`) asserts the endpoint reports `init_mode: none`, `signal_shield: false`, every layer `disabled` with a message, and the workload is unaffected (ceiling caps, Seccomp=0, NoNewPrivs=0). `test_sustained_fork_heavy_mix_keeps_process_table_bounded` (init e2e, both runtimes) sustains ~30s of interleaved `/command` churn + background sleepers and asserts a bounded, zombie-free process table throughout | From 1e9907c0196061aaea681643c3f91f0cc814fc39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 14:04:12 +0800 Subject: [PATCH 32/33] docs(osep-0018): slim the implementation status to remaining items --- oseps/0018-execd-as-sandbox-init.md | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/oseps/0018-execd-as-sandbox-init.md b/oseps/0018-execd-as-sandbox-init.md index f9dbe76dd..b19f1ff9e 100644 --- a/oseps/0018-execd-as-sandbox-init.md +++ b/oseps/0018-execd-as-sandbox-init.md @@ -36,19 +36,12 @@ status: implementing ## Implementation Status -> Updated 2026-08-19. Status: **implementing** — the phased rollout below is -> implemented (Phases 1–5 plus the server switch); remaining items are the -> execd-ebpf server-side selection (R-e), the `OPENSANDBOX_ID` reserved-env -> override (R-g) and the default-on rollout (R-f, operator decision). R-a -> (trusted stop channel) declined 2026-08-18 — the `kill 1` SIGTERM -> contract is kept as-is. R-i (server-path hardening e2e, docker bridge) -> landed in PR #1554; R-q (custom seccomp/caps e2e), R-s (EXECD_INIT drift -> pin), R-l(b) (K8s Restart recycle e2e), R-m (default-off + sustained -> fork-heavy) and R-u (runtime-initiated stop e2e) landed in the -> init/hardening e2e suites; R-c (kernel-5.10 eBPF validation) and R-j -> (eBPF JSONL audit e2e) landed via the execd-ebpf smoke + per-arch -> bytecode fix (issue #1563) — both CI legs now emit exec/connect/privilege -> events. +> Updated 2026-08-19. Status: **implementing**. Phases 1–5 + server switch + +> all test/validation items done. **Remaining:** +> +> - **R-e** — `execd-ebpf` server-side selection not wired (`components/execd/README.md` Known issue) +> - **R-g** — `OPENSANDBOX_ID` reserved-env override (deferred, low) +> - **R-f** — default-on rollout (operator decision) | Phase | Scope | Status | |---|---|---| From 0f3797ff392f1eddc702cb57f9d96dbd6a3dbbff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E7=84=B6?= Date: Wed, 19 Aug 2026 14:06:11 +0800 Subject: [PATCH 33/33] docs(osep-0018): drop the all-green phase table and resolved-question detail The Implementation Status section now leads with the three remaining items (R-e/R-g/R-f), summarizes completed phases and declined items in one paragraph, and condenses the open-question resolutions to a sentence. The Remaining work table stays as the per-item record. --- oseps/0018-execd-as-sandbox-init.md | 54 +++++++++-------------------- 1 file changed, 17 insertions(+), 37 deletions(-) diff --git a/oseps/0018-execd-as-sandbox-init.md b/oseps/0018-execd-as-sandbox-init.md index b19f1ff9e..a3ca7b452 100644 --- a/oseps/0018-execd-as-sandbox-init.md +++ b/oseps/0018-execd-as-sandbox-init.md @@ -43,34 +43,23 @@ status: implementing > - **R-g** — `OPENSANDBOX_ID` reserved-env override (deferred, low) > - **R-f** — default-on rollout (operator decision) -| Phase | Scope | Status | -|---|---|---| -| 1 | execd `--init` mode: single reaper (only wait4 caller), managedProcess abstraction replacing `Cmd.Wait` on every launch path, signal forwarding (TERM/HUP/USR1/USR2/WINCH), entrypoint-owned container lifecycle, subreaper fallback, `PR_SET_DUMPABLE`, `bootstrap.sh` `EXECD_INIT` exec branch, hardening endpoint reporting | ✅ implemented | -| 2 | Pre-exec floor (`[hardening] enabled`): `opensandbox-launcher` native helper (env strip → KEEPCAPS → bounding trim → no_new_privs → identity drop → ambient caps → seccomp last → execve), `[seccomp] deny` reuse with `execve` reserved, `keep_capabilities`; fail-open per layer | ✅ implemented | -| 3 | Landlock (`[landlock] enabled`): allowlist policy (system paths + `/proc/self` + device files + `/tmp`/`/run`/`allowed_writable` + extras), ABI probe v1–v4 with access-bit trimming; ABI < 1 → `unsupported` | ✅ implemented | -| 4 | eBPF observation (`[ebpf] enabled`, `execd-ebpf` variant): exec/connect/privilege hooks (CO-RE), sandbox cgroup filter, rotating JSONL audit file; kernel ≥5.10 with BTF | ✅ implemented | -| 5 | Pool taskTemplate: with `execd_run_as_init`, tasks are no longer backgrounded — execd becomes the task process-tree root (subreaper + exit-code propagation); `kill 1` recycle contract confirmed compatible under current SIGTERM semantics | ✅ implemented (task level) | -| — | Server switch `runtime.execd_run_as_init` injects `EXECD_INIT=1` across Docker / K8s Batch/Agent / Pool paths — resolves Open Question 1 | ✅ implemented | - -**Open implementation questions — resolution:** - -1. **Single enable switch** — resolved: the server sets `EXECD_INIT` from the - single `runtime.execd_run_as_init` config (default `false`); `bootstrap.sh` - passes `--init` iff `EXECD_INIT` is truthy, so topology and flag stay in - lockstep by construction. -2. **External SIGTERM forwarding** — implemented: SIGTERM is forwarded to the - entrypoint and execd exits with the workload's status. Distinguishing - external vs in-namespace SIGTERM (the §3 trusted-stop mechanism) is still - open: today an in-namespace `kill 1` also stops the sandbox (same as the - pre-OSEP bootstrap behavior) — tracked as remaining work. -3. **Managed-process abstraction** — implemented (reaper delivers - `WaitStatus`; per-call-site pipes/teardown are owned by the abstraction). -4. **Landlock device files** — resolved: `null/zero/full/random/urandom/tty` - writable + `/dev/pts` subtree for the controlling terminal. -5. **Landlock `/proc/self` for descendants** — resolved by accepting the - limitation: only the initial workload keeps `/proc/self` access; forked - descendants get EACCES on their own procfs (documented in - `docs/components/execd.md`). +Completed: Phase 1 (execd `--init` mode: single reaper, managedProcess, +signal forwarding, entrypoint-owned lifecycle, subreaper fallback, +`PR_SET_DUMPABLE`, `bootstrap.sh` `EXECD_INIT`), Phase 2 (pre-exec floor via +`opensandbox-launcher`), Phase 3 (Landlock), Phase 4 (eBPF observation), +Phase 5 (Pool taskTemplate, task-level subreaper), server switch +`runtime.execd_run_as_init` — plus all remaining-work items below marked +Implemented. Declined/cancelled: R-a (trusted stop channel; `kill 1` +SIGTERM contract kept), R-b (pool pod PID 1), R-d (cross-language e2e), +R-p (`/code` e2e). + +**Open implementation questions — resolution:** all resolved during +implementation — single `runtime.execd_run_as_init` switch drives both +`EXECD_INIT` and the floor; external SIGTERM is forwarded to the entrypoint +(§3's in-namespace distinction is moot now that R-a is declined); the +managed-process abstraction owns pipes/teardown; Landlock device files and +the `/proc/self`-for-descendants limitation are documented in +`docs/components/execd.md`. **Remaining work** (status 2026-08-18, PR #1474 + #1546 + #1554): @@ -98,15 +87,6 @@ status: implementing | R-t | Reaper sweep backstop (lost/coalesced SIGCHLD) | **Implemented** — `TestReaperSweepBackstop` (`initmode_linux_test.go`): the reaper's `signal.Notify` subscription stays registered (blocking the Go runtime's auto-reap) while the run loop is severed from it, so only the sweep ticker can reap an exiting child; asserts the child is drained within the ticker budget | | R-u | Runtime-initiated container stop (external SIGTERM) at SDK/e2e level | **Implemented.** `test_runtime_stop_forwards_sigterm_and_propagates_exit_code` (init e2e, docker bridge): creates a sandbox whose entrypoint traps TERM (marker + exit 7), locates the container via the `opensandbox.io/id` label, `docker stop`s it, and asserts the sandbox ends `Failed` with "exited with code 7" while the marker in the exited container's layer proves the entrypoint received SIGTERM — the runtime-stop graceful-shutdown path at SDK level, complementing `init_container.sh` | -Closed this round (2026-08-18): R-q (custom `[seccomp] deny` + `keep_capabilities` e2e, docker phase 3 + k8s ConfigMap key) and R-s (EXECD_INIT↔TOML drift pin, docker phase 4) landed in the hardening e2e; the `_hardening_report` cache is now per-sandbox so multiple classes share one pytest invocation on k8s safely. - -Closed this round (2026-08-12): CI green for all execd-init jobs; `/proc/1/environ` -e2e assertion (`test_workload_cannot_read_execd_environ`); hardening report -degrades honestly when hardening is on without init topology; launcher aborts on -failed identity drop; bundled-image Jupyter log relocated under `/tmp`; -generated eBPF bindings gated behind `ebpf &&` tags; `runtime.execd_run_as_init` -documented in `server/configuration.md`. - ## Summary

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 V5~E&=rfIsiM+kJICLA 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 z%0D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 V5~E&=rfIsiM+kJICLA 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 z%0D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

Tf76GY%_O+G|w*@p#G_g7 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